diff --git a/.github/workflows/continuous-integration-test.yml b/.github/workflows/continuous-integration-test.yml index 35cb9400..0c0913b2 100644 --- a/.github/workflows/continuous-integration-test.yml +++ b/.github/workflows/continuous-integration-test.yml @@ -21,7 +21,7 @@ jobs: node-version: '16' - name: Docker compose up - run: docker-compose up -d + run: docker compose up -d - name: Set up Python 3.9 uses: actions/setup-python@v5 diff --git a/INSTALL.rst b/INSTALL.rst index 8ac48ad5..1ba7b833 100644 --- a/INSTALL.rst +++ b/INSTALL.rst @@ -21,12 +21,12 @@ You need to install `poetry`, it will handle the virtual environment creation fo in order to sandbox the Python environment, as well as manage the dependency installation, among other things. -Start all dependent services using docker-compose (this will start PostgreSQL, +Start all dependent services using docker compose (this will start PostgreSQL, Elasticsearch 6, RabbitMQ and Redis): .. code-block:: console - $ docker-compose up -d + $ docker compose up -d .. note:: @@ -114,7 +114,7 @@ You can use simulate a full production environment using the .. code-block:: console $ docker build --rm -t rero-mef-base:latest -f Dockerfile.base . - $ docker-compose -f docker-compose.full.yml up -d + $ docker compose -f docker-compose.full.yml up -d In addition to the normal ``docker-compose.yml``, this one will start: diff --git a/classes.md b/classes.md deleted file mode 100644 index 22c63228..00000000 --- a/classes.md +++ /dev/null @@ -1,240 +0,0 @@ -https://mermaid.live - -```mermaid -classDiagram -class ReroMefRecord{ - minter - fetcher - provider - object_type = 'rec' - name - type = None - flush_indexes(cls) - create(cls, data, id_=None, delete_pid=False, dbcommit=False, reindex=False, md5=False, **kwargs) - create_or_update(cls, data, id_=None, delete_pid=True, dbcommit=False,reindex=False, test_md5=False) - delete(self, force=False, dbcommit=False, delindex=False) - update(self, data, dbcommit=False, reindex=False) - update_if_md5_changed(self, data, dbcommit=False, reindex=False) - replace(self, data, dbcommit=False, reindex=False) - dbcommit(self, reindex=False, forceindex=False) - reindex(self, forceindex=False) - get_record_by_pid(cls, pid, with_deleted=False) - get_pid_by_id(cls, id_) - get_persistent_identifier(cls, id_) - _get_all(cls, with_deleted=False) - get_all_pids(cls, with_deleted=False, limit=100000) - get_all_ids(cls, with_deleted=False, limit=100000) - get_all_records(cls, with_deleted=False, limit=100000) - count(cls, with_deleted=False) - index_all(cls) - index_ids(cls, ids) - get_indexer_class(cls) - delete_from_index(self) - pid(self) - persistent_identifier(self) - get_metadata_identifier_names(cls) - deleted(self) -} - -class EntityMefRecord{ - minter = None - fetcher = None - provider = None - name = '' - model_cls = None - viaf_cls = None - search = None - mef_type = '' - get_mef(cls, agent_pid, agent_name, pid_only=False) - get_all_pids_without_agents_and_viaf(cls) - get_all_pids_without_viaf(cls) - get_multiple_missing_pids(cls, record_types=None, verbose=False) - get_updated(cls, data) - delete_ref(self, record, dbcommit=False, reindex=False) -} - -class AgentMefRecord{ - minter = mef_id_minter - fetcher = mef_id_fetcher - provider = MefProvider - name = 'mef' - model_cls = AgentMefMetadata - search = AgentMefSearch - mef_type = 'AGENTS' - get_all_missing_viaf_pids(cls, verbose=False) - add_information(self, resolve=False, sources=False) - get_latest(cls, pid_type, pid) -} - -class ConceptMefRecord{ - minter = mef_id_minter - fetcher = mef_id_fetcher - provider = MefProvider - name = 'mef' - model_cls = ConceptMefMetadata - search = ConceptMefSearch - mef_type = 'CONCEPTS' - entities = ['idref', 'rero'] - add_information(self, resolve=False, sources=False) - get_latest(cls, pid_type, pid) -} - -class PlaceMefRecord{ - minter = mef_id_minter - fetcher = mef_id_fetcher - provider = MefProvider - name = 'mef' - model_cls = PlaceMefMetadata - search = PlaceMefSearch - mef_type = 'PLACES' - entities = ['idref'] - add_information(self, resolve=False, sources=False) - get_latest(cls, pid_type, pid) -} - -class AgentViafRecord{ - minter = viaf_id_minter - fetcher = viaf_id_fetcher - provider = ViafProvider - name = 'viaf' - model_cls = ViafMetadata - search = AgentViafSearch - replace(self, data, dbcommit=False, reindex=False) - get_online_record(cls, viaf_source_code, pid, format=None) - get_viaf(cls, agent) - delete(self, dbcommit=False, delindex=False) - get_agents_records(self) - get_missing_agent_pids(cls, agent, verbose=False) - get_pids_with_multiple_viaf(cls, record_types=None, verbose=False) -} - -class AgentRecord{ - name = None - create(cls, data, id_=None, delete_pid=False, dbcommit=False, reindex=True, md5=True, **kwargs) - delete(self, force=False, dbcommit=False, delindex=False) - create_or_update_mef(self, dbcommit=False, reindex=False) - get_online_record(cls, id, debug=False) - reindex(self, forceindex=False) -} - -class ConceptRecord{ - name = None - create(cls, data, id_=None, delete_pid=False, dbcommit=False, reindex=True, md5=True, **kwargs) - delete(self, force=False, dbcommit=False, delindex=False) - create_or_update_mef(self, dbcommit=False, reindex=False) - get_online_record(cls, id, debug=False) - reindex(self, forceindex=False) -} - -class PlaceRecord{ - name = None - create(cls, data, id_=None, delete_pid=False, dbcommit=False, reindex=True, md5=True, **kwargs) - delete(self, force=False, dbcommit=False, delindex=False) - create_or_update_mef(self, dbcommit=False, reindex=False) - get_online_record(cls, id, debug=False) - reindex(self, forceindex=False) -} - -class ConceptIdrefRecord { - minter = idref_id_minter - fetcher = idref_id_fetcher - provider = ConceptIdrefProvider - name = 'idref' - viaf_source_code = 'RAMEAU' - pid_type = 'concept_idref_pid' - model_cls = ConceptIdrefMetadata - search = ConceptIdrefSearch - get_online_record(cls, id, debug=False) -} - -class ConceptReroRecord { - minter = rero_id_minter - fetcher = rero_id_fetcher - provider = ConceptReroProvider - name = 'rero' - viaf_source_code = 'RAMEAU' - pid_type = 'concept_rero_pid' - model_cls = ConceptReroMetadata - search = ConceptReroSearch - get_online_record(cls, id, debug=False) -} - -class AgentGndRecord{ - minter = gnd_id_minter - fetcher = gnd_id_fetcher - provider = AgentGndProvider - name = 'gnd' - viaf_pid_name = 'gnd_pid' - viaf_source_code = 'DNB' - model_cls = AgentGndMetadata - search = AgentGndSearch - get_online_record(cls, id, debug=False) -} - -class AgentIdrefRecord{ - minter = idref_id_minter - fetcher = idref_id_fetcher - provider = AgentIdrefProvider - name = 'idref' - viaf_source_code = 'SUDOC' - viaf_pid_name = 'idref_pid' - model_cls = AgentIdrefMetadata - search = AgentIdrefSearch - get_online_record(cls, id, debug=False) -} - -class AgentReroRecord{ - minter = rero_id_minter - fetcher = rero_id_fetcher - provider = AgentReroProvider - name = 'rero' - viaf_source_code = 'RERO' - viaf_pid_name = 'rero_pid' - model_cls = AgentReroMetadata - search = AgentReroSearch - get_online_record(cls, id, debug=False) -} - -class PlaceIdrefRecord { - minter = idref_id_minter - fetcher = idref_id_fetcher - provider = PlaceIdrefProvider - name = 'idref' - viaf_source_code = 'RAMEAU' - pid_type = 'place_idref_pid' - model_cls = PlaceIdrefMetadata - search = PlaceIdrefSearch - get_online_record(cls, id, debug=False) -} - -class PlaceGndRecord { - minter = gnd_id_minter - fetcher = gnd_id_fetcher - provider = PlaceGndProvider - name = 'idref' - viaf_source_code = 'RAMEAU' - pid_type = 'place_gnd_pid' - model_cls = PlaceGndMetadata - search = PlaceGndSearch - get_online_record(cls, id, debug=False) - -EntityMefRecord --|> ReroMefRecord -ReroMefRecord --|> AgentMefRecord -ReroMefRecord --|> ConceptMefRecord -ReroMefRecord --|> PlaceMefRecord - -ReroMefRecord --|> AgentViafRecord - -ReroMefRecord --|> AgentRecord -AgentRecord --|> AgentGndRecord -AgentRecord --|> AgentIdrefRecord -AgentRecord --|> AgentReroRecord - -ReroMefRecord --|> ConceptRecord -ConceptRecord --|> ConceptIdrefRecord -ConceptRecord --|> ConceptReroRecord - -ReroMefRecord --|> PlaceRecord -PlaceRecord --|> PlaceIdrefRecord -PlaceRecord --|> PlaceGndRecord -``` \ No newline at end of file diff --git a/data/aggnd.json b/data/aggnd.json index 1714a85f..fa4c108b 100644 --- a/data/aggnd.json +++ b/data/aggnd.json @@ -4,7 +4,6 @@ "pid": "000018953", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1895-8", "identifiedBy": [ { "type": "uri", @@ -20,7 +19,6 @@ "pid": "00002676X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2676-1", "identifiedBy": [ { "type": "uri", @@ -36,7 +34,6 @@ "pid": "000089540", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/8954-0", "identifiedBy": [ { "type": "uri", @@ -78,7 +75,6 @@ "pid": "000115460", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/11546-0", "identifiedBy": [ { "type": "uri", @@ -95,7 +91,6 @@ "pid": "000125121", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/12512-X", "identifiedBy": [ { "type": "uri", @@ -111,7 +106,6 @@ "pid": "000132764", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/13276-7", "identifiedBy": [ { "type": "uri", @@ -134,7 +128,6 @@ "pid": "000139076", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/13907-5", "identifiedBy": [ { "type": "uri", @@ -183,7 +176,6 @@ "pid": "000140899", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/14089-2", "identifiedBy": [ { "type": "uri", @@ -210,7 +202,6 @@ "pid": "00014388X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/14388-1", "identifiedBy": [ { "type": "uri", @@ -239,7 +230,6 @@ "pid": "000151408", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/15140-3", "identifiedBy": [ { "type": "uri", @@ -262,7 +252,6 @@ "pid": "000161632", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16163-9", "identifiedBy": [ { "type": "uri", @@ -285,7 +274,6 @@ "pid": "000163791", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16379-X", "identifiedBy": [ { "type": "uri", @@ -302,7 +290,6 @@ "pid": "000167088", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16708-3", "identifiedBy": [ { "type": "uri", @@ -318,7 +305,6 @@ "pid": "000175978", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/17597-3", "identifiedBy": [ { "type": "uri", @@ -345,7 +331,6 @@ "pid": "000178020", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/17802-0", "identifiedBy": [ { "type": "uri", @@ -362,7 +347,6 @@ "pid": "000193364", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/19336-7", "identifiedBy": [ { "type": "uri", @@ -386,7 +370,6 @@ "pid": "000250422", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/25042-9", "identifiedBy": [ { "type": "uri", @@ -403,7 +386,6 @@ "pid": "000269905", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/26990-6", "identifiedBy": [ { "type": "uri", @@ -428,7 +410,6 @@ "pid": "00037959X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/37959-1", "identifiedBy": [ { "type": "uri", @@ -453,7 +434,6 @@ "pid": "000390003", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/39000-8", "identifiedBy": [ { "type": "uri", @@ -482,7 +462,6 @@ "pid": "000409928", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/40992-3", "identifiedBy": [ { "type": "uri", @@ -505,7 +484,6 @@ "pid": "000425729", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/42572-2", "identifiedBy": [ { "type": "uri", @@ -532,7 +510,6 @@ "pid": "000438049", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/43804-2", "identifiedBy": [ { "type": "uri", @@ -556,7 +533,6 @@ "pid": "000441678", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/44167-3", "identifiedBy": [ { "type": "uri", @@ -584,7 +560,6 @@ "pid": "00045561X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/45561-1", "identifiedBy": [ { "type": "uri", @@ -601,7 +576,6 @@ "pid": "000549568", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/54956-3", "identifiedBy": [ { "type": "uri", @@ -618,7 +592,6 @@ "pid": "000555851", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/55585-X", "identifiedBy": [ { "type": "uri", @@ -659,7 +632,6 @@ "pid": "000602140", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/60214-0", "identifiedBy": [ { "type": "uri", @@ -691,7 +663,6 @@ "pid": "000613258", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/61325-3", "identifiedBy": [ { "type": "uri", @@ -715,7 +686,6 @@ "pid": "000613665", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/61366-6", "identifiedBy": [ { "type": "uri", @@ -731,7 +701,6 @@ "pid": "000662348", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/66234-3", "identifiedBy": [ { "type": "uri", @@ -755,7 +724,6 @@ "pid": "000666394", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/66639-7", "identifiedBy": [ { "type": "uri", @@ -778,7 +746,6 @@ "pid": "000746568", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/74656-3", "identifiedBy": [ { "type": "uri", @@ -796,7 +763,6 @@ "pid": "00074669X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/74669-1", "identifiedBy": [ { "type": "uri", @@ -820,7 +786,6 @@ "pid": "000749915", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/74991-6", "identifiedBy": [ { "type": "uri", @@ -843,7 +808,6 @@ "pid": "000821829", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/82182-2", "identifiedBy": [ { "type": "uri", @@ -866,7 +830,6 @@ "pid": "000827673", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/82767-8", "identifiedBy": [ { "type": "uri", @@ -886,7 +849,6 @@ "pid": "000837318", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/83731-3", "identifiedBy": [ { "type": "uri", @@ -919,7 +881,6 @@ "pid": "000842362", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/84236-9", "identifiedBy": [ { "type": "uri", @@ -956,7 +917,6 @@ "pid": "000844470", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/84447-0", "identifiedBy": [ { "type": "uri", @@ -973,7 +933,6 @@ "pid": "000903515", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/90351-6", "identifiedBy": [ { "type": "uri", @@ -1000,7 +959,6 @@ "pid": "000907820", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/90782-0", "identifiedBy": [ { "type": "uri", @@ -1024,7 +982,6 @@ "pid": "001106767", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/110676-4", "identifiedBy": [ { "type": "uri", @@ -1041,7 +998,6 @@ "pid": "001116371", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/111637-X", "identifiedBy": [ { "type": "uri", @@ -1064,7 +1020,6 @@ "pid": "00112207X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/112207-1", "identifiedBy": [ { "type": "uri", @@ -1093,7 +1048,6 @@ "pid": "001148028", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/114802-3", "identifiedBy": [ { "type": "uri", @@ -1118,7 +1072,6 @@ "pid": "001156373", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/115637-8", "identifiedBy": [ { "type": "uri", @@ -1134,7 +1087,6 @@ "pid": "001170325", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/117032-6", "identifiedBy": [ { "type": "uri", @@ -1163,7 +1115,6 @@ "pid": "001183834", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/118383-7", "identifiedBy": [ { "type": "uri", @@ -1186,7 +1137,6 @@ "pid": "001187813", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/118781-8", "identifiedBy": [ { "type": "uri", @@ -1202,7 +1152,6 @@ "pid": "001192396", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/119239-5", "identifiedBy": [ { "type": "uri", @@ -1225,7 +1174,6 @@ "pid": "001226355", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/122635-6", "identifiedBy": [ { "type": "uri", @@ -1288,7 +1236,6 @@ "pid": "00122722X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/122722-1", "identifiedBy": [ { "type": "uri", @@ -1305,7 +1252,6 @@ "pid": "001247697", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/124769-4", "identifiedBy": [ { "type": "uri", @@ -1327,7 +1273,6 @@ "pid": "001277936", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/127793-5", "identifiedBy": [ { "type": "uri", @@ -1349,7 +1294,6 @@ "pid": "001279858", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/127985-3", "identifiedBy": [ { "type": "uri", @@ -1373,7 +1317,6 @@ "pid": "001282891", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/128289-X", "identifiedBy": [ { "type": "uri", @@ -1389,7 +1332,6 @@ "pid": "001284150", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/128415-0", "identifiedBy": [ { "type": "uri", @@ -1406,7 +1348,6 @@ "pid": "001299662", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/129966-9", "identifiedBy": [ { "type": "uri", @@ -1433,7 +1374,6 @@ "pid": "001303317", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/130331-4", "identifiedBy": [ { "type": "uri", @@ -1455,7 +1395,6 @@ "pid": "001306634", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/130663-7", "identifiedBy": [ { "type": "uri", @@ -1477,7 +1416,6 @@ "pid": "001330578", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/133057-3", "identifiedBy": [ { "type": "uri", @@ -1494,7 +1432,6 @@ "pid": "001371924", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/137192-7", "identifiedBy": [ { "type": "uri", @@ -1516,7 +1453,6 @@ "pid": "001376136", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/137613-5", "identifiedBy": [ { "type": "uri", @@ -1538,7 +1474,6 @@ "pid": "001378600", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/137860-0", "identifiedBy": [ { "type": "uri", @@ -1554,7 +1489,6 @@ "pid": "001381504", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/138150-7", "identifiedBy": [ { "type": "uri", @@ -1586,7 +1520,6 @@ "pid": "001434756", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/143475-5", "identifiedBy": [ { "type": "uri", @@ -1610,7 +1543,6 @@ "pid": "001436872", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/143687-9", "identifiedBy": [ { "type": "uri", @@ -1650,7 +1582,6 @@ "pid": "001453459", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/145345-2", "identifiedBy": [ { "type": "uri", @@ -1682,7 +1613,6 @@ "pid": "001457101", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/145710-X", "identifiedBy": [ { "type": "uri", @@ -1698,7 +1628,6 @@ "pid": "002004526", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/200452-5", "identifiedBy": [ { "type": "uri", @@ -1720,7 +1649,6 @@ "pid": "002102536", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/210253-5", "identifiedBy": [ { "type": "uri", @@ -1736,7 +1664,6 @@ "pid": "00210637X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/210637-1", "identifiedBy": [ { "type": "uri", @@ -1778,7 +1705,6 @@ "pid": "002111748", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/211174-3", "identifiedBy": [ { "type": "uri", @@ -1803,7 +1729,6 @@ "pid": "002128683", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/212868-8", "identifiedBy": [ { "type": "uri", @@ -1825,7 +1750,6 @@ "pid": "002148323", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/214832-8", "identifiedBy": [ { "type": "uri", @@ -1850,7 +1774,6 @@ "pid": "002149176", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/214917-5", "identifiedBy": [ { "type": "uri", @@ -1867,7 +1790,6 @@ "pid": "002150492", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/215049-9", "identifiedBy": [ { "type": "uri", @@ -1883,7 +1805,6 @@ "pid": "002153912", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/215391-9", "identifiedBy": [ { "type": "uri", @@ -1907,7 +1828,6 @@ "pid": "002156954", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/215695-7", "identifiedBy": [ { "type": "uri", @@ -1930,7 +1850,6 @@ "pid": "002171260", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/217126-0", "identifiedBy": [ { "type": "uri", @@ -1949,7 +1868,6 @@ "pid": "002210819", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/221081-2", "identifiedBy": [ { "type": "uri", @@ -1977,7 +1895,6 @@ "pid": "00221153X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/221153-1", "identifiedBy": [ { "type": "uri", @@ -2003,7 +1920,6 @@ "pid": "00221167X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/221167-1", "identifiedBy": [ { "type": "uri", @@ -2028,7 +1944,6 @@ "pid": "002215942", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/221594-9", "identifiedBy": [ { "type": "uri", @@ -2051,7 +1966,6 @@ "pid": "002356368", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/235636-3", "identifiedBy": [ { "type": "uri", @@ -2084,7 +1998,6 @@ "pid": "00236266X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/236266-1", "identifiedBy": [ { "type": "uri", @@ -2109,7 +2022,6 @@ "pid": "002362880", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/236288-0", "identifiedBy": [ { "type": "uri", @@ -2131,7 +2043,6 @@ "pid": "002407612", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/240761-9", "identifiedBy": [ { "type": "uri", @@ -2147,7 +2058,6 @@ "pid": "002411083", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/241108-8", "identifiedBy": [ { "type": "uri", @@ -2175,7 +2085,6 @@ "pid": "002413957", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/241395-4", "identifiedBy": [ { "type": "uri", @@ -2192,7 +2101,6 @@ "pid": "002447797", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/244779-4", "identifiedBy": [ { "type": "uri", @@ -2215,7 +2123,6 @@ "pid": "002461102", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/246110-9", "identifiedBy": [ { "type": "uri", @@ -2232,7 +2139,6 @@ "pid": "002476738", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/247673-3", "identifiedBy": [ { "type": "uri", @@ -2248,7 +2154,6 @@ "pid": "002529041", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/252904-X", "identifiedBy": [ { "type": "uri", @@ -2271,7 +2176,6 @@ "pid": "002530937", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/253093-4", "identifiedBy": [ { "type": "uri", @@ -2298,7 +2202,6 @@ "pid": "002531844", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/253184-7", "identifiedBy": [ { "type": "uri", @@ -2320,7 +2223,6 @@ "pid": "002537966", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/253796-5", "identifiedBy": [ { "type": "uri", @@ -2347,7 +2249,6 @@ "pid": "002546329", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/254632-2", "identifiedBy": [ { "type": "uri", @@ -2370,7 +2271,6 @@ "pid": "002602555", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/260255-6", "identifiedBy": [ { "type": "uri", @@ -2430,7 +2330,6 @@ "pid": "002606232", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/260623-9", "identifiedBy": [ { "type": "uri", @@ -2453,7 +2352,6 @@ "pid": "00260955X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/260955-1", "identifiedBy": [ { "type": "uri", @@ -2471,7 +2369,6 @@ "pid": "002610922", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/261092-9", "identifiedBy": [ { "type": "uri", @@ -2502,7 +2399,6 @@ "pid": "002624508", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/262450-3", "identifiedBy": [ { "type": "uri", @@ -2531,7 +2427,6 @@ "pid": "002627019", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/262701-2", "identifiedBy": [ { "type": "uri", @@ -2553,7 +2448,6 @@ "pid": "002740990", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/274099-0", "identifiedBy": [ { "type": "uri", @@ -2576,7 +2470,6 @@ "pid": "002744759", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/274475-2", "identifiedBy": [ { "type": "uri", @@ -2604,7 +2497,6 @@ "pid": "002746387", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/274638-4", "identifiedBy": [ { "type": "uri", @@ -2623,7 +2515,6 @@ "pid": "00274659X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/274659-1", "identifiedBy": [ { "type": "uri", @@ -2650,7 +2541,6 @@ "pid": "00275486X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/275486-1", "identifiedBy": [ { "type": "uri", @@ -2677,7 +2567,6 @@ "pid": "002765187", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/276518-4", "identifiedBy": [ { "type": "uri", @@ -2702,7 +2591,6 @@ "pid": "00278064X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/278064-1", "identifiedBy": [ { "type": "uri", @@ -2728,7 +2616,6 @@ "pid": "002785684", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/278568-7", "identifiedBy": [ { "type": "uri", @@ -2752,7 +2639,6 @@ "pid": "002804077", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/280407-4", "identifiedBy": [ { "type": "uri", @@ -2774,7 +2660,6 @@ "pid": "002903296", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/290329-5", "identifiedBy": [ { "type": "uri", @@ -2791,7 +2676,6 @@ "pid": "002910934", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/291093-7", "identifiedBy": [ { "type": "uri", @@ -2814,7 +2698,6 @@ "pid": "003006816", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/300681-5", "identifiedBy": [ { "type": "uri", @@ -2838,7 +2721,6 @@ "pid": "003016617", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/301661-4", "identifiedBy": [ { "type": "uri", @@ -2854,7 +2736,6 @@ "pid": "003051986", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/305198-5", "identifiedBy": [ { "type": "uri", @@ -2878,7 +2759,6 @@ "pid": "003063976", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/306397-5", "identifiedBy": [ { "type": "uri", @@ -2895,7 +2775,6 @@ "pid": "003071316", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/307131-5", "identifiedBy": [ { "type": "uri", @@ -2918,7 +2797,6 @@ "pid": "003078434", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/307843-7", "identifiedBy": [ { "type": "uri", @@ -2935,7 +2813,6 @@ "pid": "003082725", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/308272-6", "identifiedBy": [ { "type": "uri", @@ -2959,7 +2836,6 @@ "pid": "003202720", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/320272-0", "identifiedBy": [ { "type": "uri", @@ -2978,7 +2854,6 @@ "pid": "003500950", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/350095-0", "identifiedBy": [ { "type": "uri", @@ -3001,7 +2876,6 @@ "pid": "003700526", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/370052-5", "identifiedBy": [ { "type": "uri", @@ -3017,7 +2891,6 @@ "pid": "00370064X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/370064-1", "identifiedBy": [ { "type": "uri", @@ -3033,7 +2906,6 @@ "pid": "003806596", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/380659-5", "identifiedBy": [ { "type": "uri", @@ -3056,7 +2928,6 @@ "pid": "003811840", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/381184-0", "identifiedBy": [ { "type": "uri", @@ -3072,7 +2943,6 @@ "pid": "00381307X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/381307-1", "identifiedBy": [ { "type": "uri", @@ -3095,7 +2965,6 @@ "pid": "004008294", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1001205-9", "identifiedBy": [ { "type": "uri", @@ -3120,7 +2989,6 @@ "pid": "004029763", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1005218-5", "identifiedBy": [ { "type": "uri", @@ -3149,7 +3017,6 @@ "pid": "004036239", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1006503-9", "identifiedBy": [ { "type": "uri", @@ -3165,7 +3032,6 @@ "pid": "004037073", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1006637-8", "identifiedBy": [ { "type": "uri", @@ -3193,7 +3059,6 @@ "pid": "004056264", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1010061-1", "identifiedBy": [ { "type": "uri", @@ -3217,7 +3082,6 @@ "pid": "00406397X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1011228-5", "identifiedBy": [ { "type": "uri", @@ -3254,7 +3118,6 @@ "pid": "004083687", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1015042-0", "identifiedBy": [ { "type": "uri", @@ -3279,7 +3142,6 @@ "pid": "004084233", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1015121-7", "identifiedBy": [ { "type": "uri", @@ -3321,7 +3183,6 @@ "pid": "00408487X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1015223-4", "identifiedBy": [ { "type": "uri", @@ -3338,7 +3199,6 @@ "pid": "004088212", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1015722-0", "identifiedBy": [ { "type": "uri", @@ -3362,7 +3222,6 @@ "pid": "004089049", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1015866-2", "identifiedBy": [ { "type": "uri", @@ -3379,7 +3238,6 @@ "pid": "00409753X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1017327-4", "identifiedBy": [ { "type": "uri", @@ -3401,7 +3259,6 @@ "pid": "004106059", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1018585-9", "identifiedBy": [ { "type": "uri", @@ -3467,7 +3324,6 @@ "pid": "004110404", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1019161-6", "identifiedBy": [ { "type": "uri", @@ -3490,7 +3346,6 @@ "pid": "004112148", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1019393-5", "identifiedBy": [ { "type": "uri", @@ -3507,7 +3362,6 @@ "pid": "004115996", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1019898-2", "identifiedBy": [ { "type": "uri", @@ -3544,7 +3398,6 @@ "pid": "004119983", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1020415-5", "identifiedBy": [ { "type": "uri", @@ -3561,7 +3414,6 @@ "pid": "004123158", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1020923-2", "identifiedBy": [ { "type": "uri", @@ -3584,7 +3436,6 @@ "pid": "004127900", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1021600-5", "identifiedBy": [ { "type": "uri", @@ -3600,7 +3451,6 @@ "pid": "00414631X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1024138-3", "identifiedBy": [ { "type": "uri", @@ -3626,7 +3476,6 @@ "pid": "004149289", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1024542-X", "identifiedBy": [ { "type": "uri", @@ -3642,7 +3491,6 @@ "pid": "004150988", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1024764-6", "identifiedBy": [ { "type": "uri", @@ -3673,7 +3521,6 @@ "pid": "004151917", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1024891-2", "identifiedBy": [ { "type": "uri", @@ -3696,7 +3543,6 @@ "pid": "004159837", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1025948-X", "identifiedBy": [ { "type": "uri", @@ -3720,7 +3566,6 @@ "pid": "004171004", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1027530-7", "identifiedBy": [ { "type": "uri", @@ -3738,7 +3583,6 @@ "pid": "00418484X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1029441-7", "identifiedBy": [ { "type": "uri", @@ -3761,7 +3605,6 @@ "pid": "004191811", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1030330-3", "identifiedBy": [ { "type": "uri", @@ -3783,7 +3626,6 @@ "pid": "004196287", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1030914-7", "identifiedBy": [ { "type": "uri", @@ -3800,7 +3642,6 @@ "pid": "004220765", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1034917-0", "identifiedBy": [ { "type": "uri", @@ -3817,7 +3658,6 @@ "pid": "004232933", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1038516-2", "identifiedBy": [ { "type": "uri", @@ -3842,7 +3682,6 @@ "pid": "004247280", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1040834-4", "identifiedBy": [ { "type": "uri", @@ -3866,7 +3705,6 @@ "pid": "004263707", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1043401-X", "identifiedBy": [ { "type": "uri", @@ -3889,7 +3727,6 @@ "pid": "004265718", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1043701-0", "identifiedBy": [ { "type": "uri", @@ -3912,7 +3749,6 @@ "pid": "004270525", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1044614-X", "identifiedBy": [ { "type": "uri", @@ -3929,7 +3765,6 @@ "pid": "004285565", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1046847-X", "identifiedBy": [ { "type": "uri", @@ -3951,7 +3786,6 @@ "pid": "004288637", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1047266-6", "identifiedBy": [ { "type": "uri", @@ -3967,7 +3801,6 @@ "pid": "004290674", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1047552-7", "identifiedBy": [ { "type": "uri", @@ -3994,7 +3827,6 @@ "pid": "004315669", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1051598-7", "identifiedBy": [ { "type": "uri", @@ -4017,7 +3849,6 @@ "pid": "004340183", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1055671-0", "identifiedBy": [ { "type": "uri", @@ -4042,7 +3873,6 @@ "pid": "004358554", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1080204-6", "identifiedBy": [ { "type": "uri", @@ -4059,7 +3889,6 @@ "pid": "004361342", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1080678-7", "identifiedBy": [ { "type": "uri", @@ -4076,7 +3905,6 @@ "pid": "004363779", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1081063-8", "identifiedBy": [ { "type": "uri", @@ -4101,7 +3929,6 @@ "pid": "004379802", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1083529-5", "identifiedBy": [ { "type": "uri", @@ -4124,7 +3951,6 @@ "pid": "004384865", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1084393-0", "identifiedBy": [ { "type": "uri", @@ -4152,7 +3978,6 @@ "pid": "004394828", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086195-6", "identifiedBy": [ { "type": "uri", @@ -4175,7 +4000,6 @@ "pid": "004401875", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1087602-9", "identifiedBy": [ { "type": "uri", @@ -4192,7 +4016,6 @@ "pid": "004406583", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1088537-7", "identifiedBy": [ { "type": "uri", @@ -4215,7 +4038,6 @@ "pid": "004407156", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1088644-8", "identifiedBy": [ { "type": "uri", @@ -4238,7 +4060,6 @@ "pid": "00442204X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1091315-4", "identifiedBy": [ { "type": "uri", @@ -4261,7 +4082,6 @@ "pid": "004427734", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1092231-3", "identifiedBy": [ { "type": "uri", @@ -4311,7 +4131,6 @@ "pid": "004444507", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1095223-8", "identifiedBy": [ { "type": "uri", @@ -4334,7 +4153,6 @@ "pid": "004453379", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1096957-3", "identifiedBy": [ { "type": "uri", @@ -4351,7 +4169,6 @@ "pid": "004462572", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1098955-9", "identifiedBy": [ { "type": "uri", @@ -4378,7 +4195,6 @@ "pid": "004475771", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1212331-6", "identifiedBy": [ { "type": "uri", @@ -4404,7 +4220,6 @@ "pid": "004479319", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1212696-2", "identifiedBy": [ { "type": "uri", @@ -4431,7 +4246,6 @@ "pid": "004507673", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1215688-7", "identifiedBy": [ { "type": "uri", @@ -4454,7 +4268,6 @@ "pid": "004522176", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1217246-7", "identifiedBy": [ { "type": "uri", @@ -4476,7 +4289,6 @@ "pid": "004534972", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1218585-1", "identifiedBy": [ { "type": "uri", @@ -4499,7 +4311,6 @@ "pid": "004535642", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1218657-0", "identifiedBy": [ { "type": "uri", @@ -4516,7 +4327,6 @@ "pid": "004544617", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1219614-9", "identifiedBy": [ { "type": "uri", @@ -4539,7 +4349,6 @@ "pid": "004554159", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1220634-9", "identifiedBy": [ { "type": "uri", @@ -4561,7 +4370,6 @@ "pid": "004556208", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1220848-6", "identifiedBy": [ { "type": "uri", @@ -4588,7 +4396,6 @@ "pid": "004559444", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1221205-2", "identifiedBy": [ { "type": "uri", @@ -4605,7 +4412,6 @@ "pid": "004570359", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1222375-X", "identifiedBy": [ { "type": "uri", @@ -4622,7 +4428,6 @@ "pid": "004612876", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2000322-5", "identifiedBy": [ { "type": "uri", @@ -4638,7 +4443,6 @@ "pid": "004652851", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2004951-1", "identifiedBy": [ { "type": "uri", @@ -4660,7 +4464,6 @@ "pid": "004656253", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2005334-4", "identifiedBy": [ { "type": "uri", @@ -4677,7 +4480,6 @@ "pid": "004674316", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2007529-7", "identifiedBy": [ { "type": "uri", @@ -4701,7 +4503,6 @@ "pid": "004680596", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2008269-1", "identifiedBy": [ { "type": "uri", @@ -4735,7 +4536,6 @@ "pid": "004685873", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2008874-7", "identifiedBy": [ { "type": "uri", @@ -4770,7 +4570,6 @@ "pid": "004687280", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2009039-0", "identifiedBy": [ { "type": "uri", @@ -4787,7 +4586,6 @@ "pid": "004708083", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2011373-0", "identifiedBy": [ { "type": "uri", @@ -4804,7 +4602,6 @@ "pid": "004726642", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2013564-6", "identifiedBy": [ { "type": "uri", @@ -4833,7 +4630,6 @@ "pid": "00473985X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2015204-8", "identifiedBy": [ { "type": "uri", @@ -4862,7 +4658,6 @@ "pid": "004746333", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2015966-3", "identifiedBy": [ { "type": "uri", @@ -4878,7 +4673,6 @@ "pid": "004753194", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2016768-4", "identifiedBy": [ { "type": "uri", @@ -4910,7 +4704,6 @@ "pid": "004772350", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2019043-8", "identifiedBy": [ { "type": "uri", @@ -4937,7 +4730,6 @@ "pid": "00480435X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2022843-0", "identifiedBy": [ { "type": "uri", @@ -4964,7 +4756,6 @@ "pid": "004812476", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2023839-3", "identifiedBy": [ { "type": "uri", @@ -4991,7 +4782,6 @@ "pid": "004815483", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2024202-5", "identifiedBy": [ { "type": "uri", @@ -5019,7 +4809,6 @@ "pid": "004837541", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2026881-6", "identifiedBy": [ { "type": "uri", @@ -5044,7 +4833,6 @@ "pid": "004867645", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2030398-1", "identifiedBy": [ { "type": "uri", @@ -5073,7 +4861,6 @@ "pid": "004868250", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2030461-4", "identifiedBy": [ { "type": "uri", @@ -5096,7 +4883,6 @@ "pid": "004888324", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2032739-0", "identifiedBy": [ { "type": "uri", @@ -5119,7 +4905,6 @@ "pid": "004890868", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2033029-7", "identifiedBy": [ { "type": "uri", @@ -5143,7 +4928,6 @@ "pid": "004895002", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2033479-5", "identifiedBy": [ { "type": "uri", @@ -5167,7 +4951,6 @@ "pid": "00490110X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2034222-6", "identifiedBy": [ { "type": "uri", @@ -5195,7 +4978,6 @@ "pid": "004904508", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2034611-6", "identifiedBy": [ { "type": "uri", @@ -5220,7 +5002,6 @@ "pid": "004921445", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2036596-2", "identifiedBy": [ { "type": "uri", @@ -5236,7 +5017,6 @@ "pid": "004930118", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2037653-4", "identifiedBy": [ { "type": "uri", @@ -5253,7 +5033,6 @@ "pid": "00495081X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2040211-9", "identifiedBy": [ { "type": "uri", @@ -5269,7 +5048,6 @@ "pid": "004954599", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2040677-0", "identifiedBy": [ { "type": "uri", @@ -5299,7 +5077,6 @@ "pid": "004984242", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2044447-3", "identifiedBy": [ { "type": "uri", @@ -5318,7 +5095,6 @@ "pid": "004995732", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2045930-0", "identifiedBy": [ { "type": "uri", @@ -5347,7 +5123,6 @@ "pid": "005029902", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/502990-9", "identifiedBy": [ { "type": "uri", @@ -5378,7 +5153,6 @@ "pid": "005034523", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/503452-8", "identifiedBy": [ { "type": "uri", @@ -5394,7 +5168,6 @@ "pid": "005053625", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/505362-6", "identifiedBy": [ { "type": "uri", @@ -5430,7 +5203,6 @@ "pid": "00505656X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/505656-1", "identifiedBy": [ { "type": "uri", @@ -5473,7 +5245,6 @@ "pid": "005059054", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/505905-7", "identifiedBy": [ { "type": "uri", @@ -5490,7 +5261,6 @@ "pid": "005073189", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/507318-2", "identifiedBy": [ { "type": "uri", @@ -5521,7 +5291,6 @@ "pid": "005095344", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/509534-7", "identifiedBy": [ { "type": "uri", @@ -5543,7 +5312,6 @@ "pid": "00509657X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/509657-1", "identifiedBy": [ { "type": "uri", @@ -5565,7 +5333,6 @@ "pid": "005124972", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/512497-9", "identifiedBy": [ { "type": "uri", @@ -5589,7 +5356,6 @@ "pid": "006002579", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/600257-2", "identifiedBy": [ { "type": "uri", @@ -5623,7 +5389,6 @@ "pid": "006007295", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/600729-6", "identifiedBy": [ { "type": "uri", @@ -5645,7 +5410,6 @@ "pid": "006010008", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/601000-3", "identifiedBy": [ { "type": "uri", @@ -5661,7 +5425,6 @@ "pid": "006058825", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/605882-6", "identifiedBy": [ { "type": "uri", @@ -5686,7 +5449,6 @@ "pid": "006216722", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/621672-9", "identifiedBy": [ { "type": "uri", @@ -5703,7 +5465,6 @@ "pid": "006226663", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/622666-8", "identifiedBy": [ { "type": "uri", @@ -5720,7 +5481,6 @@ "pid": "006234224", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/623422-7", "identifiedBy": [ { "type": "uri", @@ -5744,7 +5504,6 @@ "pid": "006237754", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/623775-7", "identifiedBy": [ { "type": "uri", @@ -5761,7 +5520,6 @@ "pid": "006243282", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/624328-9", "identifiedBy": [ { "type": "uri", @@ -5777,7 +5535,6 @@ "pid": "006674410", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/667441-0", "identifiedBy": [ { "type": "uri", @@ -5796,7 +5553,6 @@ "pid": "006684378", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/668437-3", "identifiedBy": [ { "type": "uri", @@ -5813,7 +5569,6 @@ "pid": "006688977", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/668897-4", "identifiedBy": [ { "type": "uri", @@ -5842,7 +5597,6 @@ "pid": "006693911", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/669391-X", "identifiedBy": [ { "type": "uri", @@ -5865,7 +5619,6 @@ "pid": "006699618", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/669961-3", "identifiedBy": [ { "type": "uri", @@ -5891,7 +5644,6 @@ "pid": "006705847", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/670584-4", "identifiedBy": [ { "type": "uri", @@ -5907,7 +5659,6 @@ "pid": "007015089", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2047921-9", "identifiedBy": [ { "type": "uri", @@ -5932,7 +5683,6 @@ "pid": "007030150", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2049688-6", "identifiedBy": [ { "type": "uri", @@ -5948,7 +5698,6 @@ "pid": "007031394", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2049825-1", "identifiedBy": [ { "type": "uri", @@ -5970,7 +5719,6 @@ "pid": "007032641", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2049965-6", "identifiedBy": [ { "type": "uri", @@ -5993,7 +5741,6 @@ "pid": "007059981", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2053225-8", "identifiedBy": [ { "type": "uri", @@ -6016,7 +5763,6 @@ "pid": "007060637", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2053302-0", "identifiedBy": [ { "type": "uri", @@ -6033,7 +5779,6 @@ "pid": "007061757", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2053423-1", "identifiedBy": [ { "type": "uri", @@ -6058,7 +5803,6 @@ "pid": "007097123", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2057530-0", "identifiedBy": [ { "type": "uri", @@ -6075,7 +5819,6 @@ "pid": "007100434", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2057906-8", "identifiedBy": [ { "type": "uri", @@ -6099,7 +5842,6 @@ "pid": "007104456", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2058376-X", "identifiedBy": [ { "type": "uri", @@ -6124,7 +5866,6 @@ "pid": "007104804", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2058413-1", "identifiedBy": [ { "type": "uri", @@ -6141,7 +5882,6 @@ "pid": "007119666", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2060458-0", "identifiedBy": [ { "type": "uri", @@ -6166,7 +5906,6 @@ "pid": "007172125", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2066576-3", "identifiedBy": [ { "type": "uri", @@ -6183,7 +5922,6 @@ "pid": "007207409", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2070791-5", "identifiedBy": [ { "type": "uri", @@ -6206,7 +5944,6 @@ "pid": "007209320", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2070997-3", "identifiedBy": [ { "type": "uri", @@ -6222,7 +5959,6 @@ "pid": "007210019", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2071078-1", "identifiedBy": [ { "type": "uri", @@ -6253,7 +5989,6 @@ "pid": "007221010", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2072276-X", "identifiedBy": [ { "type": "uri", @@ -6276,7 +6011,6 @@ "pid": "007229003", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2073117-6", "identifiedBy": [ { "type": "uri", @@ -6292,7 +6026,6 @@ "pid": "007233000", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2073541-8", "identifiedBy": [ { "type": "uri", @@ -6322,7 +6055,6 @@ "pid": "007251920", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2075556-9", "identifiedBy": [ { "type": "uri", @@ -6341,7 +6073,6 @@ "pid": "007262329", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2076650-6", "identifiedBy": [ { "type": "uri", @@ -6357,7 +6088,6 @@ "pid": "007269358", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2077396-1", "identifiedBy": [ { "type": "uri", @@ -6386,7 +6116,6 @@ "pid": "007284659", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2079005-3", "identifiedBy": [ { "type": "uri", @@ -6403,7 +6132,6 @@ "pid": "007305117", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2081135-4", "identifiedBy": [ { "type": "uri", @@ -6426,7 +6154,6 @@ "pid": "007309600", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2081602-9", "identifiedBy": [ { "type": "uri", @@ -6443,7 +6170,6 @@ "pid": "007310005", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2081644-3", "identifiedBy": [ { "type": "uri", @@ -6484,7 +6210,6 @@ "pid": "00731566X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2082225-X", "identifiedBy": [ { "type": "uri", @@ -6511,7 +6236,6 @@ "pid": "007318413", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2082506-7", "identifiedBy": [ { "type": "uri", @@ -6540,7 +6264,6 @@ "pid": "007319126", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2082578-X", "identifiedBy": [ { "type": "uri", @@ -6574,7 +6297,6 @@ "pid": "007322062", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2082881-0", "identifiedBy": [ { "type": "uri", @@ -6591,7 +6313,6 @@ "pid": "007353189", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2086168-0", "identifiedBy": [ { "type": "uri", @@ -6608,7 +6329,6 @@ "pid": "007365950", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2087514-9", "identifiedBy": [ { "type": "uri", @@ -6633,7 +6353,6 @@ "pid": "007366701", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2087592-7", "identifiedBy": [ { "type": "uri", @@ -6656,7 +6375,6 @@ "pid": "007378238", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2088784-X", "identifiedBy": [ { "type": "uri", @@ -6694,7 +6412,6 @@ "pid": "007386133", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2089597-5", "identifiedBy": [ { "type": "uri", @@ -6717,7 +6434,6 @@ "pid": "007391765", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2090173-2", "identifiedBy": [ { "type": "uri", @@ -6746,7 +6462,6 @@ "pid": "007396848", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2090692-4", "identifiedBy": [ { "type": "uri", @@ -6763,7 +6478,6 @@ "pid": "007405995", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2091641-3", "identifiedBy": [ { "type": "uri", @@ -6788,7 +6502,6 @@ "pid": "007412193", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2092284-X", "identifiedBy": [ { "type": "uri", @@ -6813,7 +6526,6 @@ "pid": "007420501", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2093132-3", "identifiedBy": [ { "type": "uri", @@ -6830,7 +6542,6 @@ "pid": "007426321", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2093728-3", "identifiedBy": [ { "type": "uri", @@ -6849,7 +6560,6 @@ "pid": "007439210", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2095054-8", "identifiedBy": [ { "type": "uri", @@ -6868,7 +6578,6 @@ "pid": "007444788", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2095645-9", "identifiedBy": [ { "type": "uri", @@ -6895,7 +6604,6 @@ "pid": "007453523", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2096571-0", "identifiedBy": [ { "type": "uri", @@ -6918,7 +6626,6 @@ "pid": "007473338", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2098730-4", "identifiedBy": [ { "type": "uri", @@ -6959,7 +6666,6 @@ "pid": "007495684", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2101084-5", "identifiedBy": [ { "type": "uri", @@ -6976,7 +6682,6 @@ "pid": "007543204", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2106300-X", "identifiedBy": [ { "type": "uri", @@ -6992,7 +6697,6 @@ "pid": "007547692", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2106802-1", "identifiedBy": [ { "type": "uri", @@ -7019,7 +6723,6 @@ "pid": "007550278", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2107096-9", "identifiedBy": [ { "type": "uri", @@ -7044,7 +6747,6 @@ "pid": "007553684", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2107465-3", "identifiedBy": [ { "type": "uri", @@ -7061,7 +6763,6 @@ "pid": "007555245", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2107628-5", "identifiedBy": [ { "type": "uri", @@ -7077,7 +6778,6 @@ "pid": "007571054", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2109339-8", "identifiedBy": [ { "type": "uri", @@ -7102,7 +6802,6 @@ "pid": "007575882", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2109841-4", "identifiedBy": [ { "type": "uri", @@ -7118,7 +6817,6 @@ "pid": "007590172", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2111321-X", "identifiedBy": [ { "type": "uri", @@ -7141,7 +6839,6 @@ "pid": "00760453X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2112812-1", "identifiedBy": [ { "type": "uri", @@ -7176,7 +6873,6 @@ "pid": "007605285", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2112891-1", "identifiedBy": [ { "type": "uri", @@ -7207,7 +6903,6 @@ "pid": "007620756", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2114524-6", "identifiedBy": [ { "type": "uri", @@ -7234,7 +6929,6 @@ "pid": "007631731", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2115666-9", "identifiedBy": [ { "type": "uri", @@ -7250,7 +6944,6 @@ "pid": "007642423", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2116792-8", "identifiedBy": [ { "type": "uri", @@ -7277,7 +6970,6 @@ "pid": "007646895", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2117267-5", "identifiedBy": [ { "type": "uri", @@ -7304,7 +6996,6 @@ "pid": "007675844", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2120327-1", "identifiedBy": [ { "type": "uri", @@ -7327,7 +7018,6 @@ "pid": "007676174", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2120360-X", "identifiedBy": [ { "type": "uri", @@ -7349,7 +7039,6 @@ "pid": "007690495", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2121867-5", "identifiedBy": [ { "type": "uri", @@ -7366,7 +7055,6 @@ "pid": "007736851", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2126742-X", "identifiedBy": [ { "type": "uri", @@ -7395,7 +7083,6 @@ "pid": "007744862", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2127593-2", "identifiedBy": [ { "type": "uri", @@ -7412,7 +7099,6 @@ "pid": "007762321", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2129442-2", "identifiedBy": [ { "type": "uri", @@ -7437,7 +7123,6 @@ "pid": "007765908", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2129855-5", "identifiedBy": [ { "type": "uri", @@ -7460,7 +7145,6 @@ "pid": "007776500", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2130979-6", "identifiedBy": [ { "type": "uri", @@ -7485,7 +7169,6 @@ "pid": "007777639", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2131097-X", "identifiedBy": [ { "type": "uri", @@ -7503,7 +7186,6 @@ "pid": "007781113", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2131467-6", "identifiedBy": [ { "type": "uri", @@ -7532,7 +7214,6 @@ "pid": "007783574", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2131727-6", "identifiedBy": [ { "type": "uri", @@ -7549,7 +7230,6 @@ "pid": "007792948", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2132705-1", "identifiedBy": [ { "type": "uri", @@ -7565,7 +7245,6 @@ "pid": "007793731", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2132788-9", "identifiedBy": [ { "type": "uri", @@ -7588,7 +7267,6 @@ "pid": "007796811", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2133113-3", "identifiedBy": [ { "type": "uri", @@ -7605,7 +7283,6 @@ "pid": "00779827X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2133269-1", "identifiedBy": [ { "type": "uri", @@ -7628,7 +7305,6 @@ "pid": "008030286", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/803028-5", "identifiedBy": [ { "type": "uri", @@ -7655,7 +7331,6 @@ "pid": "008036985", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/803698-6", "identifiedBy": [ { "type": "uri", @@ -7678,7 +7353,6 @@ "pid": "008055262", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/805526-9", "identifiedBy": [ { "type": "uri", @@ -7694,7 +7368,6 @@ "pid": "008059365", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/805936-6", "identifiedBy": [ { "type": "uri", @@ -7719,7 +7392,6 @@ "pid": "008094217", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/809421-4", "identifiedBy": [ { "type": "uri", @@ -7742,7 +7414,6 @@ "pid": "008095086", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/809508-5", "identifiedBy": [ { "type": "uri", @@ -7765,7 +7436,6 @@ "pid": "008112282", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/811228-9", "identifiedBy": [ { "type": "uri", @@ -7782,7 +7452,6 @@ "pid": "008119198", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/811919-3", "identifiedBy": [ { "type": "uri", @@ -7807,7 +7476,6 @@ "pid": "008122830", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/812283-0", "identifiedBy": [ { "type": "uri", @@ -7824,7 +7492,6 @@ "pid": "008140111", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/814011-X", "identifiedBy": [ { "type": "uri", @@ -7841,7 +7508,6 @@ "pid": "008147841", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/814784-X", "identifiedBy": [ { "type": "uri", @@ -7864,7 +7530,6 @@ "pid": "008151733", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/815173-8", "identifiedBy": [ { "type": "uri", @@ -7881,7 +7546,6 @@ "pid": "008157103", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/815710-8", "identifiedBy": [ { "type": "uri", @@ -7903,7 +7567,6 @@ "pid": "008165068", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/816506-3", "identifiedBy": [ { "type": "uri", @@ -7920,7 +7583,6 @@ "pid": "008169446", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/816944-5", "identifiedBy": [ { "type": "uri", @@ -7937,7 +7599,6 @@ "pid": "008169691", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/816969-X", "identifiedBy": [ { "type": "uri", @@ -7954,7 +7615,6 @@ "pid": "008183147", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/818314-4", "identifiedBy": [ { "type": "uri", @@ -7977,7 +7637,6 @@ "pid": "008183171", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/818317-X", "identifiedBy": [ { "type": "uri", @@ -7994,7 +7653,6 @@ "pid": "008186596", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/818659-5", "identifiedBy": [ { "type": "uri", @@ -8011,7 +7669,6 @@ "pid": "030010462", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/3001046-9", "identifiedBy": [ { "type": "uri", @@ -8038,7 +7695,6 @@ "pid": "030011213", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/3001121-8", "identifiedBy": [ { "type": "uri", @@ -8067,7 +7723,6 @@ "pid": "030028841", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/3002884-X", "identifiedBy": [ { "type": "uri", @@ -8089,7 +7744,6 @@ "pid": "03003891X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/3003891-1", "identifiedBy": [ { "type": "uri", @@ -8123,7 +7777,6 @@ "pid": "03005205X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/3005205-1", "identifiedBy": [ { "type": "uri", @@ -8146,7 +7799,6 @@ "pid": "030052912", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/3005291-9", "identifiedBy": [ { "type": "uri", @@ -8175,7 +7827,6 @@ "pid": "030072409", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/3007240-2", "identifiedBy": [ { "type": "uri", @@ -8191,7 +7842,6 @@ "pid": "030078768", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/3007876-3", "identifiedBy": [ { "type": "uri", @@ -8208,7 +7858,6 @@ "pid": "030081297", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/3008129-4", "identifiedBy": [ { "type": "uri", @@ -8234,7 +7883,6 @@ "pid": "030120926", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/3012092-5", "identifiedBy": [ { "type": "uri", @@ -8261,7 +7909,6 @@ "pid": "03012199X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/3012199-1", "identifiedBy": [ { "type": "uri", @@ -8277,7 +7924,6 @@ "pid": "03012929X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/3012929-1", "identifiedBy": [ { "type": "uri", @@ -8293,7 +7939,6 @@ "pid": "030132053", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/3013205-8", "identifiedBy": [ { "type": "uri", @@ -8310,7 +7955,6 @@ "pid": "030135567", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/3013556-4", "identifiedBy": [ { "type": "uri", @@ -8327,7 +7971,6 @@ "pid": "030146690", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/3014669-0", "identifiedBy": [ { "type": "uri", @@ -8344,7 +7987,6 @@ "pid": "030152089", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/3015208-2", "identifiedBy": [ { "type": "uri", @@ -8361,7 +8003,6 @@ "pid": "030153727", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/3015372-4", "identifiedBy": [ { "type": "uri", @@ -8397,7 +8038,6 @@ "pid": "030168910", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/3016891-0", "identifiedBy": [ { "type": "uri", @@ -8420,7 +8060,6 @@ "pid": "030183251", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/3018325-X", "identifiedBy": [ { "type": "uri", @@ -8446,7 +8085,6 @@ "pid": "041027752", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/4102775-9", "identifiedBy": [ { "type": "uri", @@ -8466,7 +8104,6 @@ "pid": "041297423", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/4129742-8", "identifiedBy": [ { "type": "uri", @@ -8486,7 +8123,6 @@ "pid": "042249627", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/4224962-4", "identifiedBy": [ { "type": "uri", @@ -8512,7 +8148,6 @@ "pid": "042260264", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/4226026-7", "identifiedBy": [ { "type": "uri", @@ -8532,7 +8167,6 @@ "pid": "042968097", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/4296809-4", "identifiedBy": [ { "type": "uri", @@ -8555,7 +8189,6 @@ "pid": "050000462", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5000046-9", "identifiedBy": [ { "type": "uri", @@ -8578,7 +8211,6 @@ "pid": "05000736X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5000736-1", "identifiedBy": [ { "type": "uri", @@ -8598,7 +8230,6 @@ "pid": "05001692X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5001692-1", "identifiedBy": [ { "type": "uri", @@ -8615,7 +8246,6 @@ "pid": "050031937", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5003193-4", "identifiedBy": [ { "type": "uri", @@ -8631,7 +8261,6 @@ "pid": "050047043", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5004704-8", "identifiedBy": [ { "type": "uri", @@ -8660,7 +8289,6 @@ "pid": "050053396", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5005339-5", "identifiedBy": [ { "type": "uri", @@ -8676,7 +8304,6 @@ "pid": "05005967X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5005967-1", "identifiedBy": [ { "type": "uri", @@ -8692,7 +8319,6 @@ "pid": "050070606", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5007060-5", "identifiedBy": [ { "type": "uri", @@ -8717,7 +8343,6 @@ "pid": "050096672", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5009667-9", "identifiedBy": [ { "type": "uri", @@ -8751,7 +8376,6 @@ "pid": "05009808X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5009808-1", "identifiedBy": [ { "type": "uri", @@ -8774,7 +8398,6 @@ "pid": "050105884", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5010588-7", "identifiedBy": [ { "type": "uri", @@ -8801,7 +8424,6 @@ "pid": "050122916", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5012291-5", "identifiedBy": [ { "type": "uri", @@ -8826,7 +8448,6 @@ "pid": "050132229", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5013222-2", "identifiedBy": [ { "type": "uri", @@ -8854,7 +8475,6 @@ "pid": "050145363", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5014536-8", "identifiedBy": [ { "type": "uri", @@ -8877,7 +8497,6 @@ "pid": "050155032", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5015503-9", "identifiedBy": [ { "type": "uri", @@ -8893,7 +8512,6 @@ "pid": "050161261", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5016126-X", "identifiedBy": [ { "type": "uri", @@ -8909,7 +8527,6 @@ "pid": "050168436", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5016843-5", "identifiedBy": [ { "type": "uri", @@ -8931,7 +8548,6 @@ "pid": "050171607", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5017160-4", "identifiedBy": [ { "type": "uri", @@ -8965,7 +8581,6 @@ "pid": "050184318", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5018431-3", "identifiedBy": [ { "type": "uri", @@ -8988,7 +8603,6 @@ "pid": "050186736", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5018673-5", "identifiedBy": [ { "type": "uri", @@ -9015,7 +8629,6 @@ "pid": "05018685X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5018685-1", "identifiedBy": [ { "type": "uri", @@ -9042,7 +8655,6 @@ "pid": "050187023", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5018702-8", "identifiedBy": [ { "type": "uri", @@ -9059,7 +8671,6 @@ "pid": "050230611", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5023061-X", "identifiedBy": [ { "type": "uri", @@ -9082,7 +8693,6 @@ "pid": "050247840", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5024784-0", "identifiedBy": [ { "type": "uri", @@ -9099,7 +8709,6 @@ "pid": "050257722", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5025772-9", "identifiedBy": [ { "type": "uri", @@ -9125,7 +8734,6 @@ "pid": "050269704", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5026970-7", "identifiedBy": [ { "type": "uri", @@ -9155,7 +8763,6 @@ "pid": "050270850", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5027085-0", "identifiedBy": [ { "type": "uri", @@ -9171,7 +8778,6 @@ "pid": "050279831", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5027983-X", "identifiedBy": [ { "type": "uri", @@ -9187,7 +8793,6 @@ "pid": "050284185", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5028418-6", "identifiedBy": [ { "type": "uri", @@ -9204,7 +8809,6 @@ "pid": "050284673", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5028467-8", "identifiedBy": [ { "type": "uri", @@ -9227,7 +8831,6 @@ "pid": "050329820", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5032982-0", "identifiedBy": [ { "type": "uri", @@ -9255,7 +8858,6 @@ "pid": "050353233", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5035323-8", "identifiedBy": [ { "type": "uri", @@ -9278,7 +8880,6 @@ "pid": "050361031", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5036103-X", "identifiedBy": [ { "type": "uri", @@ -9334,7 +8935,6 @@ "pid": "05037107X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5037107-1", "identifiedBy": [ { "type": "uri", @@ -9351,7 +8951,6 @@ "pid": "050376756", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5037675-5", "identifiedBy": [ { "type": "uri", @@ -9379,7 +8978,6 @@ "pid": "050379712", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5037971-9", "identifiedBy": [ { "type": "uri", @@ -9402,7 +9000,6 @@ "pid": "050410814", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5041081-7", "identifiedBy": [ { "type": "uri", @@ -9429,7 +9026,6 @@ "pid": "050411071", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5041107-X", "identifiedBy": [ { "type": "uri", @@ -9446,7 +9042,6 @@ "pid": "050417444", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5041744-7", "identifiedBy": [ { "type": "uri", @@ -9469,7 +9064,6 @@ "pid": "050425773", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5042577-8", "identifiedBy": [ { "type": "uri", @@ -9496,7 +9090,6 @@ "pid": "050430726", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5043072-5", "identifiedBy": [ { "type": "uri", @@ -9518,7 +9111,6 @@ "pid": "050433504", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5043350-7", "identifiedBy": [ { "type": "uri", @@ -9541,7 +9133,6 @@ "pid": "050436708", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5043670-3", "identifiedBy": [ { "type": "uri", @@ -9564,7 +9155,6 @@ "pid": "05043795X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5043795-1", "identifiedBy": [ { "type": "uri", @@ -9581,7 +9171,6 @@ "pid": "050439464", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5043946-7", "identifiedBy": [ { "type": "uri", @@ -9598,7 +9187,6 @@ "pid": "050445197", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5044519-4", "identifiedBy": [ { "type": "uri", @@ -9615,7 +9203,6 @@ "pid": "050447904", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5044790-7", "identifiedBy": [ { "type": "uri", @@ -9638,7 +9225,6 @@ "pid": "050458140", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5045814-0", "identifiedBy": [ { "type": "uri", @@ -9665,7 +9251,6 @@ "pid": "050465546", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5046554-5", "identifiedBy": [ { "type": "uri", @@ -9688,7 +9273,6 @@ "pid": "05048589X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5048589-1", "identifiedBy": [ { "type": "uri", @@ -9720,7 +9304,6 @@ "pid": "050494570", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5049457-0", "identifiedBy": [ { "type": "uri", @@ -9743,7 +9326,6 @@ "pid": "050495747", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5049574-4", "identifiedBy": [ { "type": "uri", @@ -9770,7 +9352,6 @@ "pid": "050502298", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5050229-3", "identifiedBy": [ { "type": "uri", @@ -9793,7 +9374,6 @@ "pid": "050504274", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5050427-7", "identifiedBy": [ { "type": "uri", @@ -9824,7 +9404,6 @@ "pid": "050516736", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5051673-5", "identifiedBy": [ { "type": "uri", @@ -9849,7 +9428,6 @@ "pid": "050519514", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5051951-7", "identifiedBy": [ { "type": "uri", @@ -9876,7 +9454,6 @@ "pid": "05052920X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5052920-1", "identifiedBy": [ { "type": "uri", @@ -9898,7 +9475,6 @@ "pid": "050539876", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5053987-5", "identifiedBy": [ { "type": "uri", @@ -9915,7 +9491,6 @@ "pid": "050544942", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5054494-9", "identifiedBy": [ { "type": "uri", @@ -9931,7 +9506,6 @@ "pid": "050545183", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5054518-8", "identifiedBy": [ { "type": "uri", @@ -9953,7 +9527,6 @@ "pid": "050551205", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5055120-6", "identifiedBy": [ { "type": "uri", @@ -9969,7 +9542,6 @@ "pid": "050577395", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5057739-6", "identifiedBy": [ { "type": "uri", @@ -9996,7 +9568,6 @@ "pid": "050588907", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5058890-4", "identifiedBy": [ { "type": "uri", @@ -10012,7 +9583,6 @@ "pid": "050620746", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5062074-5", "identifiedBy": [ { "type": "uri", @@ -10029,7 +9599,6 @@ "pid": "050629069", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5062906-2", "identifiedBy": [ { "type": "uri", @@ -10054,7 +9623,6 @@ "pid": "05063223X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5063223-1", "identifiedBy": [ { "type": "uri", @@ -10071,7 +9639,6 @@ "pid": "050639412", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5063941-9", "identifiedBy": [ { "type": "uri", @@ -10096,7 +9663,6 @@ "pid": "050710885", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5071088-6", "identifiedBy": [ { "type": "uri", @@ -10122,7 +9688,6 @@ "pid": "050717510", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5071751-0", "identifiedBy": [ { "type": "uri", @@ -10147,7 +9712,6 @@ "pid": "050721607", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5072160-4", "identifiedBy": [ { "type": "uri", @@ -10163,7 +9727,6 @@ "pid": "050726064", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5072606-7", "identifiedBy": [ { "type": "uri", @@ -10179,7 +9742,6 @@ "pid": "050738151", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5073815-X", "identifiedBy": [ { "type": "uri", @@ -10202,7 +9764,6 @@ "pid": "050739875", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5073987-6", "identifiedBy": [ { "type": "uri", @@ -10225,7 +9786,6 @@ "pid": "050753762", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5075376-9", "identifiedBy": [ { "type": "uri", @@ -10241,7 +9801,6 @@ "pid": "050778250", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5077825-0", "identifiedBy": [ { "type": "uri", @@ -10266,7 +9825,6 @@ "pid": "050780328", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5078032-3", "identifiedBy": [ { "type": "uri", @@ -10288,7 +9846,6 @@ "pid": "050784005", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5078400-6", "identifiedBy": [ { "type": "uri", @@ -10311,7 +9868,6 @@ "pid": "050786954", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5078695-7", "identifiedBy": [ { "type": "uri", @@ -10335,7 +9891,6 @@ "pid": "050788434", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5078843-7", "identifiedBy": [ { "type": "uri", @@ -10360,7 +9915,6 @@ "pid": "050805800", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5080580-0", "identifiedBy": [ { "type": "uri", @@ -10382,7 +9936,6 @@ "pid": "050846043", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5084604-8", "identifiedBy": [ { "type": "uri", @@ -10404,7 +9957,6 @@ "pid": "050876902", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5087690-9", "identifiedBy": [ { "type": "uri", @@ -10431,7 +9983,6 @@ "pid": "050880667", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5088066-4", "identifiedBy": [ { "type": "uri", @@ -10454,7 +10005,6 @@ "pid": "050881922", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5088192-9", "identifiedBy": [ { "type": "uri", @@ -10477,7 +10027,6 @@ "pid": "050895877", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5089587-4", "identifiedBy": [ { "type": "uri", @@ -10500,7 +10049,6 @@ "pid": "050917633", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5091763-8", "identifiedBy": [ { "type": "uri", @@ -10517,7 +10065,6 @@ "pid": "050917889", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5091788-2", "identifiedBy": [ { "type": "uri", @@ -10544,7 +10091,6 @@ "pid": "050925520", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5092552-0", "identifiedBy": [ { "type": "uri", @@ -10566,7 +10112,6 @@ "pid": "050927078", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5092707-3", "identifiedBy": [ { "type": "uri", @@ -10588,7 +10133,6 @@ "pid": "050943618", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5094361-3", "identifiedBy": [ { "type": "uri", @@ -10612,7 +10156,6 @@ "pid": "051115913", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16117351-2", "identifiedBy": [ { "type": "uri", @@ -10628,7 +10171,6 @@ "pid": "051171538", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16122067-8", "identifiedBy": [ { "type": "uri", @@ -10645,7 +10187,6 @@ "pid": "051251930", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16128971-X", "identifiedBy": [ { "type": "uri", @@ -10661,7 +10202,6 @@ "pid": "051253801", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16129109-0", "identifiedBy": [ { "type": "uri", @@ -10686,7 +10226,6 @@ "pid": "051264129", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16129997-0", "identifiedBy": [ { "type": "uri", @@ -10712,7 +10251,6 @@ "pid": "051266717", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16130216-6", "identifiedBy": [ { "type": "uri", @@ -10734,7 +10272,6 @@ "pid": "051367386", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16138650-7", "identifiedBy": [ { "type": "uri", @@ -10751,7 +10288,6 @@ "pid": "051381079", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16139773-6", "identifiedBy": [ { "type": "uri", @@ -10767,7 +10303,6 @@ "pid": "051518449", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16150720-7", "identifiedBy": [ { "type": "uri", @@ -10783,7 +10318,6 @@ "pid": "055005284", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16183938-1", "identifiedBy": [ { "type": "uri", @@ -10810,7 +10344,6 @@ "pid": "055085849", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16191570-X", "identifiedBy": [ { "type": "uri", @@ -10826,7 +10359,6 @@ "pid": "055114938", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16194327-5", "identifiedBy": [ { "type": "uri", @@ -10849,7 +10381,6 @@ "pid": "055142524", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16196978-1", "identifiedBy": [ { "type": "uri", @@ -10872,7 +10403,6 @@ "pid": "055146201", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16197332-2", "identifiedBy": [ { "type": "uri", @@ -10888,7 +10418,6 @@ "pid": "055154050", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16198080-6", "identifiedBy": [ { "type": "uri", @@ -10911,7 +10440,6 @@ "pid": "055201873", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16202635-3", "identifiedBy": [ { "type": "uri", @@ -10934,7 +10462,6 @@ "pid": "055244025", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16206697-1", "identifiedBy": [ { "type": "uri", @@ -10950,7 +10477,6 @@ "pid": "05533556X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16215472-0", "identifiedBy": [ { "type": "uri", @@ -10983,7 +10509,6 @@ "pid": "055380700", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16219886-3", "identifiedBy": [ { "type": "uri", @@ -11006,7 +10531,6 @@ "pid": "055449271", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16226569-4", "identifiedBy": [ { "type": "uri", @@ -11028,7 +10552,6 @@ "pid": "055518788", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16233347-X", "identifiedBy": [ { "type": "uri", @@ -11044,7 +10567,6 @@ "pid": "055521460", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16233603-2", "identifiedBy": [ { "type": "uri", @@ -11061,7 +10583,6 @@ "pid": "055526195", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16234065-5", "identifiedBy": [ { "type": "uri", @@ -11083,7 +10604,6 @@ "pid": "055529771", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16234410-7", "identifiedBy": [ { "type": "uri", @@ -11099,7 +10619,6 @@ "pid": "055578861", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16239184-5", "identifiedBy": [ { "type": "uri", @@ -11121,7 +10640,6 @@ "pid": "055593917", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16240644-7", "identifiedBy": [ { "type": "uri", @@ -11138,7 +10656,6 @@ "pid": "055597793", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16241026-8", "identifiedBy": [ { "type": "uri", @@ -11161,7 +10678,6 @@ "pid": "055608205", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16242045-6", "identifiedBy": [ { "type": "uri", @@ -11183,7 +10699,6 @@ "pid": "055656595", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16246761-8", "identifiedBy": [ { "type": "uri", @@ -11207,7 +10722,6 @@ "pid": "055663354", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16247413-1", "identifiedBy": [ { "type": "uri", @@ -11233,7 +10747,6 @@ "pid": "055689159", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16249918-8", "identifiedBy": [ { "type": "uri", @@ -11256,7 +10769,6 @@ "pid": "055718086", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16252700-7", "identifiedBy": [ { "type": "uri", @@ -11278,7 +10790,6 @@ "pid": "05573782X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16254610-5", "identifiedBy": [ { "type": "uri", @@ -11294,7 +10805,6 @@ "pid": "055774520", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16258145-2", "identifiedBy": [ { "type": "uri", @@ -11321,7 +10831,6 @@ "pid": "055798837", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16260490-7", "identifiedBy": [ { "type": "uri", @@ -11338,7 +10847,6 @@ "pid": "055823866", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16262933-3", "identifiedBy": [ { "type": "uri", @@ -11364,7 +10872,6 @@ "pid": "055837417", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16264288-X", "identifiedBy": [ { "type": "uri", @@ -11380,7 +10887,6 @@ "pid": "055842941", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16264841-8", "identifiedBy": [ { "type": "uri", @@ -11396,7 +10902,6 @@ "pid": "055872891", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16267836-8", "identifiedBy": [ { "type": "uri", @@ -11413,7 +10918,6 @@ "pid": "055899781", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16270525-6", "identifiedBy": [ { "type": "uri", @@ -11430,7 +10934,6 @@ "pid": "055949002", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16275447-4", "identifiedBy": [ { "type": "uri", @@ -11447,7 +10950,6 @@ "pid": "055952283", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16275775-X", "identifiedBy": [ { "type": "uri", @@ -11463,7 +10965,6 @@ "pid": "056024045", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16282952-8", "identifiedBy": [ { "type": "uri", @@ -11479,7 +10980,6 @@ "pid": "056088612", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16289409-0", "identifiedBy": [ { "type": "uri", @@ -11495,7 +10995,6 @@ "pid": "056119054", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16292453-7", "identifiedBy": [ { "type": "uri", @@ -11511,7 +11010,6 @@ "pid": "056140010", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16294549-8", "identifiedBy": [ { "type": "uri", @@ -11548,7 +11046,6 @@ "pid": "056141645", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16294712-4", "identifiedBy": [ { "type": "uri", @@ -11564,7 +11061,6 @@ "pid": "056169302", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16297478-4", "identifiedBy": [ { "type": "uri", @@ -11580,7 +11076,6 @@ "pid": "056281544", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16308703-9", "identifiedBy": [ { "type": "uri", @@ -11606,7 +11101,6 @@ "pid": "056310099", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16311558-8", "identifiedBy": [ { "type": "uri", @@ -11628,7 +11122,6 @@ "pid": "05634371X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16314920-3", "identifiedBy": [ { "type": "uri", @@ -11651,7 +11144,6 @@ "pid": "1000024091", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16055219-9", "identifiedBy": [ { "type": "uri", @@ -11668,7 +11160,6 @@ "pid": "1000226778", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6113983-X", "identifiedBy": [ { "type": "uri", @@ -11690,7 +11181,6 @@ "pid": "1000228320", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6113942-7", "identifiedBy": [ { "type": "uri", @@ -11713,7 +11203,6 @@ "pid": "1000295257", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16056448-7", "identifiedBy": [ { "type": "uri", @@ -11738,7 +11227,6 @@ "pid": "1000465780", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/7692524-9", "identifiedBy": [ { "type": "uri", @@ -11766,7 +11254,6 @@ "pid": "1000582329", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6114797-7", "identifiedBy": [ { "type": "uri", @@ -11782,7 +11269,6 @@ "pid": "1000592979", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6117212-1", "identifiedBy": [ { "type": "uri", @@ -11805,7 +11291,6 @@ "pid": "1000594521", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6117140-2", "identifiedBy": [ { "type": "uri", @@ -11832,7 +11317,6 @@ "pid": "1000601153", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6117583-3", "identifiedBy": [ { "type": "uri", @@ -11849,7 +11333,6 @@ "pid": "1000610896", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6115833-1", "identifiedBy": [ { "type": "uri", @@ -11876,7 +11359,6 @@ "pid": "1000681815", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16058421-8", "identifiedBy": [ { "type": "uri", @@ -11893,7 +11375,6 @@ "pid": "100068944", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/100068944", "identifiedBy": [ { "type": "uri", @@ -11950,7 +11431,6 @@ "pid": "1000698777", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6118729-X", "identifiedBy": [ { "type": "uri", @@ -11976,7 +11456,6 @@ "pid": "1000836290", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16059085-1", "identifiedBy": [ { "type": "uri", @@ -11993,7 +11472,6 @@ "pid": "1000990958", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/7695570-9", "identifiedBy": [ { "type": "uri", @@ -12013,7 +11491,6 @@ "pid": "1001088646", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16060301-8", "identifiedBy": [ { "type": "uri", @@ -12039,7 +11516,6 @@ "pid": "1001206770", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16060901-X", "identifiedBy": [ { "type": "uri", @@ -12056,7 +11532,6 @@ "pid": "1001284402", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16061267-6", "identifiedBy": [ { "type": "uri", @@ -12078,7 +11553,6 @@ "pid": "1001334272", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16061468-5", "identifiedBy": [ { "type": "uri", @@ -12098,7 +11572,6 @@ "pid": "1001567501", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16062315-7", "identifiedBy": [ { "type": "uri", @@ -12115,7 +11588,6 @@ "pid": "100167328X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16062671-7", "identifiedBy": [ { "type": "uri", @@ -12132,7 +11604,6 @@ "pid": "1001827562", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6121646-X", "identifiedBy": [ { "type": "uri", @@ -12155,7 +11626,6 @@ "pid": "1001848063", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6123023-6", "identifiedBy": [ { "type": "uri", @@ -12191,7 +11661,6 @@ "pid": "1001985265", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16063792-2", "identifiedBy": [ { "type": "uri", @@ -12216,7 +11685,6 @@ "pid": "1002133998", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16064384-3", "identifiedBy": [ { "type": "uri", @@ -12233,7 +11701,6 @@ "pid": "1002374588", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16065137-2", "identifiedBy": [ { "type": "uri", @@ -12258,7 +11725,6 @@ "pid": "1002731305", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16066236-9", "identifiedBy": [ { "type": "uri", @@ -12283,7 +11749,6 @@ "pid": "1003000274", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16067371-9", "identifiedBy": [ { "type": "uri", @@ -12308,7 +11773,6 @@ "pid": "1003122329", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16067920-5", "identifiedBy": [ { "type": "uri", @@ -12325,7 +11789,6 @@ "pid": "1003145523", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16068076-1", "identifiedBy": [ { "type": "uri", @@ -12347,7 +11810,6 @@ "md5": "59484d7b4c7afb726a7c2ca9db85f552", "pid": "100316042", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/100316042", "identifiedBy": [ { "type": "uri", @@ -12375,7 +11837,6 @@ "pid": "1003218784", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16068388-9", "identifiedBy": [ { "type": "uri", @@ -12405,7 +11866,6 @@ "pid": "1003329063", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16068860-7", "identifiedBy": [ { "type": "uri", @@ -12428,7 +11888,6 @@ "md5": "713da0b94aa83412bb8ac7ea2c8414c8", "pid": "100349471", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/100349471", "identifiedBy": [ { "type": "uri", @@ -12480,7 +11939,6 @@ "pid": "1003824153", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16071408-4", "identifiedBy": [ { "type": "uri", @@ -12504,7 +11962,6 @@ "pid": "1003837840", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16071469-2", "identifiedBy": [ { "type": "uri", @@ -12521,7 +11978,6 @@ "pid": "1004014589", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16072082-5", "identifiedBy": [ { "type": "uri", @@ -12551,7 +12007,6 @@ "pid": "1004316267", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16073239-6", "identifiedBy": [ { "type": "uri", @@ -12574,7 +12029,6 @@ "pid": "1004386486", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16073577-4", "identifiedBy": [ { "type": "uri", @@ -12608,7 +12062,6 @@ "pid": "100438713X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16073588-9", "identifiedBy": [ { "type": "uri", @@ -12636,7 +12089,6 @@ "pid": "1004477503", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/3074228-6", "identifiedBy": [ { "type": "uri", @@ -12653,7 +12105,6 @@ "pid": "1004482531", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6123852-1", "identifiedBy": [ { "type": "uri", @@ -12676,7 +12127,6 @@ "pid": "1004487096", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6124720-0", "identifiedBy": [ { "type": "uri", @@ -12700,7 +12150,6 @@ "pid": "1004490674", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6124890-3", "identifiedBy": [ { "type": "uri", @@ -12723,7 +12172,6 @@ "pid": "1004494807", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6127131-7", "identifiedBy": [ { "type": "uri", @@ -12746,7 +12194,6 @@ "pid": "1004497415", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6127264-4", "identifiedBy": [ { "type": "uri", @@ -12763,7 +12210,6 @@ "pid": "1004503423", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6146155-6", "identifiedBy": [ { "type": "uri", @@ -12782,7 +12228,6 @@ "pid": "1004520778", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6146673-6", "identifiedBy": [ { "type": "uri", @@ -12818,7 +12263,6 @@ "pid": "1004537549", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6142734-2", "identifiedBy": [ { "type": "uri", @@ -12847,7 +12291,6 @@ "pid": "1004552424", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6141774-9", "identifiedBy": [ { "type": "uri", @@ -12864,7 +12307,6 @@ "pid": "100455706X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6132170-9", "identifiedBy": [ { "type": "uri", @@ -12887,7 +12329,6 @@ "pid": "1004578172", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6131941-7", "identifiedBy": [ { "type": "uri", @@ -12904,7 +12345,6 @@ "pid": "1004580428", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6131920-X", "identifiedBy": [ { "type": "uri", @@ -12931,7 +12371,6 @@ "pid": "1004597800", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6141569-8", "identifiedBy": [ { "type": "uri", @@ -12950,7 +12389,6 @@ "pid": "1004602456", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6128467-1", "identifiedBy": [ { "type": "uri", @@ -12976,7 +12414,6 @@ "pid": "1004610041", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6144342-6", "identifiedBy": [ { "type": "uri", @@ -12999,7 +12436,6 @@ "pid": "1004623488", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6139991-7", "identifiedBy": [ { "type": "uri", @@ -13026,7 +12462,6 @@ "pid": "1004659237", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6133997-0", "identifiedBy": [ { "type": "uri", @@ -13062,7 +12497,6 @@ "pid": "1004691408", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6138287-5", "identifiedBy": [ { "type": "uri", @@ -13087,7 +12521,6 @@ "pid": "1004696000", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6135448-X", "identifiedBy": [ { "type": "uri", @@ -13110,7 +12543,6 @@ "pid": "1004996152", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16075367-3", "identifiedBy": [ { "type": "uri", @@ -13127,7 +12559,6 @@ "pid": "1005138168", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16075717-4", "identifiedBy": [ { "type": "uri", @@ -13149,7 +12580,6 @@ "pid": "1005381364", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16076532-8", "identifiedBy": [ { "type": "uri", @@ -13166,7 +12596,6 @@ "pid": "1005446873", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16076761-1", "identifiedBy": [ { "type": "uri", @@ -13188,7 +12617,6 @@ "pid": "1006191062", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16079544-8", "identifiedBy": [ { "type": "uri", @@ -13206,7 +12634,6 @@ "pid": "1006414401", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16080261-1", "identifiedBy": [ { "type": "uri", @@ -13223,7 +12650,6 @@ "pid": "1006687815", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16081287-2", "identifiedBy": [ { "type": "uri", @@ -13248,7 +12674,6 @@ "pid": "1006928111", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16082078-9", "identifiedBy": [ { "type": "uri", @@ -13264,7 +12689,6 @@ "pid": "1007180692", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16083102-7", "identifiedBy": [ { "type": "uri", @@ -13287,7 +12711,6 @@ "pid": "1007242396", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16083465-X", "identifiedBy": [ { "type": "uri", @@ -13303,7 +12726,6 @@ "pid": "1007432802", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16084847-7", "identifiedBy": [ { "type": "uri", @@ -13337,7 +12759,6 @@ "pid": "1007693789", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16086154-8", "identifiedBy": [ { "type": "uri", @@ -13353,7 +12774,6 @@ "pid": "1007769319", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16086664-9", "identifiedBy": [ { "type": "uri", @@ -13379,7 +12799,6 @@ "pid": "1007863307", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16087288-1", "identifiedBy": [ { "type": "uri", @@ -13396,7 +12815,6 @@ "pid": "1008172537", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16089004-4", "identifiedBy": [ { "type": "uri", @@ -13420,7 +12838,6 @@ "pid": "1008311308", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16090061-X", "identifiedBy": [ { "type": "uri", @@ -13437,7 +12854,6 @@ "pid": "1008358118", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16090366-X", "identifiedBy": [ { "type": "uri", @@ -13464,7 +12880,6 @@ "pid": "1008359025", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16090378-6", "identifiedBy": [ { "type": "uri", @@ -13489,7 +12904,6 @@ "pid": "1008374040", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16090448-1", "identifiedBy": [ { "type": "uri", @@ -13506,7 +12920,6 @@ "pid": "1008509957", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16091086-9", "identifiedBy": [ { "type": "uri", @@ -13529,7 +12942,6 @@ "pid": "1008705683", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16091913-7", "identifiedBy": [ { "type": "uri", @@ -13546,7 +12958,6 @@ "pid": "1008850411", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16092671-3", "identifiedBy": [ { "type": "uri", @@ -13562,7 +12973,6 @@ "pid": "1008982075", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16093263-4", "identifiedBy": [ { "type": "uri", @@ -13578,7 +12988,6 @@ "pid": "1009099981", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16093920-3", "identifiedBy": [ { "type": "uri", @@ -13605,7 +13014,6 @@ "pid": "1009237543", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16094709-1", "identifiedBy": [ { "type": "uri", @@ -13625,7 +13033,6 @@ "pid": "1009363581", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16095580-4", "identifiedBy": [ { "type": "uri", @@ -13642,7 +13049,6 @@ "pid": "1009625977", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16097576-1", "identifiedBy": [ { "type": "uri", @@ -13665,7 +13071,6 @@ "type": "bf:Person", "gender": "male", "qualifier": "von Wasserburg", - "identifier": "http://d-nb.info/gnd/100963315", "identifiedBy": [ { "type": "uri", @@ -13689,7 +13094,6 @@ "pid": "1009786741", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16098676-X", "identifiedBy": [ { "type": "uri", @@ -13706,7 +13110,6 @@ "pid": "1010306146", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16102695-3", "identifiedBy": [ { "type": "uri", @@ -13739,7 +13142,6 @@ "pid": "1010326945", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16102857-3", "identifiedBy": [ { "type": "uri", @@ -13765,7 +13167,6 @@ "pid": "101054389X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16104309-4", "identifiedBy": [ { "type": "uri", @@ -13790,7 +13191,6 @@ "pid": "1010664034", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16105153-4", "identifiedBy": [ { "type": "uri", @@ -13817,7 +13217,6 @@ "pid": "1010670174", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16105173-X", "identifiedBy": [ { "type": "uri", @@ -13840,7 +13239,6 @@ "pid": "1010696092", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16105377-4", "identifiedBy": [ { "type": "uri", @@ -13865,7 +13263,6 @@ "pid": "1010769979", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16105952-1", "identifiedBy": [ { "type": "uri", @@ -13882,7 +13279,6 @@ "pid": "1010987895", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16151659-2", "identifiedBy": [ { "type": "uri", @@ -13907,7 +13303,6 @@ "pid": "1011029162", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16152084-4", "identifiedBy": [ { "type": "uri", @@ -13923,7 +13318,6 @@ "pid": "1011038692", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16152180-0", "identifiedBy": [ { "type": "uri", @@ -13946,7 +13340,6 @@ "pid": "1011064766", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16152476-X", "identifiedBy": [ { "type": "uri", @@ -13963,7 +13356,6 @@ "pid": "1011072602", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16152499-0", "identifiedBy": [ { "type": "uri", @@ -13979,7 +13371,6 @@ "md5": "161f8f67761da858c769dab56ab13a4e", "pid": "1011184176", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1011184176", "identifiedBy": [ { "type": "uri", @@ -13995,7 +13386,6 @@ "md5": "a553a4ddbca854cdef523448600703e8", "pid": "1011184672", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1011184672", "identifiedBy": [ { "type": "uri", @@ -14018,7 +13408,6 @@ "pid": "1011196735", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16153549-5", "identifiedBy": [ { "type": "uri", @@ -14041,7 +13430,6 @@ "pid": "1011276259", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1011276259", "identifiedBy": [ { "type": "uri", @@ -14059,7 +13447,6 @@ "md5": "caae60e199b7e33958b3948c01f6c926", "pid": "1011311550", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1011311550", "identifiedBy": [ { "type": "uri", @@ -14079,7 +13466,6 @@ "pid": "1011400707", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1011400707", "identifiedBy": [ { "type": "uri", @@ -14098,7 +13484,6 @@ "md5": "a9fd370aca46c1590403d47bf58368d5", "pid": "1011449145", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1011449145", "identifiedBy": [ { "type": "uri", @@ -14116,7 +13501,6 @@ "pid": "1011453215", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1011453215", "identifiedBy": [ { "type": "uri", @@ -14142,7 +13526,6 @@ "md5": "0e594609d5108171da37eddafecf06dd", "pid": "1011475596", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1011475596", "identifiedBy": [ { "type": "uri", @@ -14160,7 +13543,6 @@ "pid": "1011506084", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16155338-2", "identifiedBy": [ { "type": "uri", @@ -14185,7 +13567,6 @@ "pid": "1011618362", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1011618362", "identifiedBy": [ { "type": "uri", @@ -14212,7 +13593,6 @@ "md5": "b3fb92f8e47026b30758dfde965349df", "pid": "1011673835", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1011673835", "identifiedBy": [ { "type": "uri", @@ -14236,7 +13616,6 @@ "pid": "1011705486", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1011705486", "identifiedBy": [ { "type": "uri", @@ -14260,7 +13639,6 @@ "md5": "5c51db62fe2e0ac69c56cab1722419da", "pid": "1011709368", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1011709368", "identifiedBy": [ { "type": "uri", @@ -14283,7 +13661,6 @@ "pid": "1011744619", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16156304-1", "identifiedBy": [ { "type": "uri", @@ -14305,7 +13682,6 @@ "md5": "aed730585c62d910c9a2e2fc013be324", "pid": "1011762676", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1011762676", "identifiedBy": [ { "type": "uri", @@ -14337,7 +13713,6 @@ "pid": "1011811669", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16156677-7", "identifiedBy": [ { "type": "uri", @@ -14363,7 +13738,6 @@ "md5": "d3d17461e22d64d2ce5aa5055384b0d2", "pid": "1011875829", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1011875829", "identifiedBy": [ { "type": "uri", @@ -14381,7 +13755,6 @@ "pid": "1011887444", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16157033-1", "identifiedBy": [ { "type": "uri", @@ -14400,7 +13773,6 @@ "pid": "1011898012", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1011898012", "identifiedBy": [ { "type": "uri", @@ -14418,7 +13790,6 @@ "pid": "1011967472", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16157425-7", "identifiedBy": [ { "type": "uri", @@ -14434,7 +13805,6 @@ "md5": "03ae4803ecc2315cdb60ebf117c1447b", "pid": "1012126404", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1012126404", "identifiedBy": [ { "type": "uri", @@ -14453,7 +13823,6 @@ "pid": "1012244741", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16158656-9", "identifiedBy": [ { "type": "uri", @@ -14478,7 +13847,6 @@ "pid": "1012247554", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1012247554", "identifiedBy": [ { "type": "uri", @@ -14505,7 +13873,6 @@ "pid": "1012247589", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16158693-4", "identifiedBy": [ { "type": "uri", @@ -14528,7 +13895,6 @@ "pid": "1012247627", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1012247627", "identifiedBy": [ { "type": "uri", @@ -14557,7 +13923,6 @@ "md5": "24a578f73887ce58576a6b240f19e5f3", "pid": "1012262367", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1012262367", "identifiedBy": [ { "type": "uri", @@ -14579,7 +13944,6 @@ "pid": "1012277151", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1012277151", "identifiedBy": [ { "type": "uri", @@ -14609,7 +13973,6 @@ "pid": "1012289915", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1012289915", "identifiedBy": [ { "type": "uri", @@ -14627,7 +13990,6 @@ "md5": "0533e52e8b58aea323ad142c2b355048", "pid": "1012299805", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1012299805", "identifiedBy": [ { "type": "uri", @@ -14657,7 +14019,6 @@ "pid": "1012301389", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1012301389", "identifiedBy": [ { "type": "uri", @@ -14679,7 +14040,6 @@ "pid": "1012304973", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1012304973", "identifiedBy": [ { "type": "uri", @@ -14700,7 +14060,6 @@ "md5": "4092d65cabbcd3b7851143fc12726c1a", "pid": "1012336026", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1012336026", "identifiedBy": [ { "type": "uri", @@ -14724,7 +14083,6 @@ "md5": "6d17dddb2cf247225fff03965619dd59", "pid": "101234472X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/101234472X", "identifiedBy": [ { "type": "uri", @@ -14747,7 +14105,6 @@ "md5": "e28c024ae4731cc7e6c650680c5cd84a", "pid": "1012370755", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1012370755", "identifiedBy": [ { "type": "uri", @@ -14768,7 +14125,6 @@ "md5": "a5449a291bf7744afb4c9040bc9c282b", "pid": "1012371964", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1012371964", "identifiedBy": [ { "type": "uri", @@ -14790,7 +14146,6 @@ "pid": "1012374548", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1012374548", "identifiedBy": [ { "type": "uri", @@ -14812,7 +14167,6 @@ "pid": "1012379574", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1012379574", "identifiedBy": [ { "type": "uri", @@ -14830,7 +14184,6 @@ "md5": "c9f4af24621bf3fe93268b17bd0627a3", "pid": "1012394212", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1012394212", "identifiedBy": [ { "type": "uri", @@ -14851,7 +14204,6 @@ "md5": "8333d0bcf63d381680bb4274e3f555af", "pid": "101239705X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/101239705X", "identifiedBy": [ { "type": "uri", @@ -14872,7 +14224,6 @@ "md5": "b0dd630ef05639e5d6d93b0e9fa12ee3", "pid": "1012398897", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1012398897", "identifiedBy": [ { "type": "uri", @@ -14893,7 +14244,6 @@ "pid": "1012399737", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1012399737", "identifiedBy": [ { "type": "uri", @@ -14911,7 +14261,6 @@ "md5": "04b49b3775b632f3bc7f3c163da6bb1a", "pid": "1012410234", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1012410234", "identifiedBy": [ { "type": "uri", @@ -14934,7 +14283,6 @@ "type": "bf:Person", "gender": "male", "qualifier": "von Greifenstein", - "identifier": "http://d-nb.info/gnd/1012413934", "identifiedBy": [ { "type": "uri", @@ -14968,7 +14316,6 @@ "pid": "1012484076", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16159419-0", "identifiedBy": [ { "type": "uri", @@ -14991,7 +14338,6 @@ "pid": "1012546772", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1012546772", "identifiedBy": [ { "type": "uri", @@ -15008,7 +14354,6 @@ "md5": "a03ab42d3d829bf2707a7f1c9c8ef681", "pid": "1012559114", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1012559114", "identifiedBy": [ { "type": "uri", @@ -15030,7 +14375,6 @@ "pid": "1012580350", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1012580350", "identifiedBy": [ { "type": "uri", @@ -15047,7 +14391,6 @@ "md5": "102f41dc4693577e3777c6a3ff4b36cb", "pid": "1012659720", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1012659720", "identifiedBy": [ { "type": "uri", @@ -15062,7 +14405,6 @@ "md5": "5605bc672d81951a5ba95d342274f195", "pid": "1012670813", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1012670813", "identifiedBy": [ { "type": "uri", @@ -15079,7 +14421,6 @@ "md5": "fd57022bffcd7da84e6c820d630473b7", "pid": "1012703487", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1012703487", "identifiedBy": [ { "type": "uri", @@ -15100,7 +14441,6 @@ "md5": "792f987b28e1463344b69151c84a2bb6", "pid": "1012706826", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1012706826", "identifiedBy": [ { "type": "uri", @@ -15121,7 +14461,6 @@ "pid": "1012770982", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1012770982", "identifiedBy": [ { "type": "uri", @@ -15140,7 +14479,6 @@ "pid": "1012781593", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1012781593", "identifiedBy": [ { "type": "uri", @@ -15167,7 +14505,6 @@ "md5": "597b8b8d18e4bbb34b39a8670a52bc75", "pid": "1012785815", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1012785815", "identifiedBy": [ { "type": "uri", @@ -15189,7 +14526,6 @@ "pid": "1012795519", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1012795519", "identifiedBy": [ { "type": "uri", @@ -15211,7 +14547,6 @@ "pid": "1012797198", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1012797198", "identifiedBy": [ { "type": "uri", @@ -15229,7 +14564,6 @@ "pid": "1012805433", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1012805433", "identifiedBy": [ { "type": "uri", @@ -15250,7 +14584,6 @@ "md5": "f02b58eb30cb6113680eaec38a129d66", "pid": "1012879887", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1012879887", "identifiedBy": [ { "type": "uri", @@ -15273,7 +14606,6 @@ "md5": "e5bf9a4f6d6b357e2b46c226efe7fa91", "pid": "1012883744", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1012883744", "identifiedBy": [ { "type": "uri", @@ -15294,7 +14626,6 @@ "pid": "1012992349", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1012992349", "identifiedBy": [ { "type": "uri", @@ -15314,7 +14645,6 @@ "md5": "478398dc461acbcbd25d0739b608c229", "pid": "1013119495", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1013119495", "identifiedBy": [ { "type": "uri", @@ -15331,7 +14661,6 @@ "pid": "1013122089", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16162581-2", "identifiedBy": [ { "type": "uri", @@ -15354,7 +14683,6 @@ "pid": "101314953X", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/101314953X", "identifiedBy": [ { "type": "uri", @@ -15373,7 +14701,6 @@ "type": "bf:Person", "gender": "female", "qualifier": "Wu\u0308rttemberg, Ko\u0308nigin", - "identifier": "http://d-nb.info/gnd/1013171349", "identifiedBy": [ { "type": "uri", @@ -15410,7 +14737,6 @@ "md5": "80f8df041b75f487c323a016a668790b", "pid": "1013251334", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1013251334", "identifiedBy": [ { "type": "uri", @@ -15429,7 +14755,6 @@ "md5": "6ea7f847cc01cea9a468359426e1426d", "pid": "1013340728", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1013340728", "identifiedBy": [ { "type": "uri", @@ -15448,7 +14773,6 @@ "md5": "c57561ade0ebab8116688614d2e200e0", "pid": "1013349806", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1013349806", "identifiedBy": [ { "type": "uri", @@ -15463,7 +14787,6 @@ "md5": "bcf283e6b07cf9e743c8f6de4b6febe8", "pid": "1013363299", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1013363299", "identifiedBy": [ { "type": "uri", @@ -15479,7 +14802,6 @@ "md5": "e03dad26865589a0d2cfca5742a6d24f", "pid": "1013479785", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1013479785", "identifiedBy": [ { "type": "uri", @@ -15497,7 +14819,6 @@ "pid": "1013536878", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16164544-6", "identifiedBy": [ { "type": "uri", @@ -15519,7 +14840,6 @@ "md5": "a4a3aa5f2e372d41834e0e68803ce70a", "pid": "1013590554", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1013590554", "identifiedBy": [ { "type": "uri", @@ -15540,7 +14860,6 @@ "language": [ "fre" ], - "identifier": "http://d-nb.info/gnd/1013628063", "identifiedBy": [ { "type": "uri", @@ -15562,7 +14881,6 @@ "pid": "1013814339", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1013814339", "identifiedBy": [ { "type": "uri", @@ -15581,7 +14899,6 @@ "pid": "1013871383", "type": "bf:Person", "qualifier": "Familie", - "identifier": "http://d-nb.info/gnd/1013871383", "identifiedBy": [ { "type": "uri", @@ -15600,7 +14917,6 @@ "md5": "a72d8ad05a59b0605f3daf9e8379edcb", "pid": "1013878353", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1013878353", "identifiedBy": [ { "type": "uri", @@ -15625,7 +14941,6 @@ "md5": "cedbb81f6427fe297af5f189b0678f65", "pid": "1013882156", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1013882156", "identifiedBy": [ { "type": "uri", @@ -15644,7 +14959,6 @@ "md5": "ce76d6c838fb664c1aaf04820777bc9c", "pid": "1014065240", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1014065240", "identifiedBy": [ { "type": "uri", @@ -15686,7 +15000,6 @@ "md5": "e112cd50a9cd747beeed577b77b3917d", "pid": "1014089158", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1014089158", "identifiedBy": [ { "type": "uri", @@ -15702,7 +15015,6 @@ "md5": "69976eed278629a7f9d8262147372375", "pid": "1014092191", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1014092191", "identifiedBy": [ { "type": "uri", @@ -15723,7 +15035,6 @@ "pid": "1014136539", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1014136539", "identifiedBy": [ { "type": "uri", @@ -15739,7 +15050,6 @@ "md5": "836a9646ff898f75145bc155b3fa772c", "pid": "1014143454", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1014143454", "identifiedBy": [ { "type": "uri", @@ -15757,7 +15067,6 @@ "md5": "7ffd62686ca1805cf16df729f112201b", "pid": "1014223768", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1014223768", "identifiedBy": [ { "type": "uri", @@ -15776,7 +15085,6 @@ "pid": "101425762X", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/101425762X", "identifiedBy": [ { "type": "uri", @@ -15794,7 +15102,6 @@ "md5": "785064ab4ebd7cba3e3efd9df34085f0", "pid": "1014290287", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1014290287", "identifiedBy": [ { "type": "uri", @@ -15813,7 +15120,6 @@ "md5": "959cce2fd42388f34623ac89987a9443", "pid": "1014396158", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1014396158", "identifiedBy": [ { "type": "uri", @@ -15834,7 +15140,6 @@ "md5": "a494a944c09df07264499d3f49857a96", "pid": "1014396824", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1014396824", "identifiedBy": [ { "type": "uri", @@ -15854,7 +15159,6 @@ "pid": "101440391X", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/101440391X", "identifiedBy": [ { "type": "uri", @@ -15875,7 +15179,6 @@ "pid": "1014449278", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16168902-4", "identifiedBy": [ { "type": "uri", @@ -15895,7 +15198,6 @@ "language": [ "ger" ], - "identifier": "http://d-nb.info/gnd/1014449677", "identifiedBy": [ { "type": "uri", @@ -15910,7 +15212,6 @@ "md5": "585febb4e9d5d808a9863e2728177514", "pid": "1014548012", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1014548012", "identifiedBy": [ { "type": "uri", @@ -15932,7 +15233,6 @@ "pid": "1014626358", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16169743-4", "identifiedBy": [ { "type": "uri", @@ -15949,7 +15249,6 @@ "pid": "1014638895", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1014638895", "identifiedBy": [ { "type": "uri", @@ -15971,7 +15270,6 @@ "pid": "1014661951", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16171064-5", "identifiedBy": [ { "type": "uri", @@ -15994,7 +15292,6 @@ "pid": "1014671604", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16172029-8", "identifiedBy": [ { "type": "uri", @@ -16016,7 +15313,6 @@ "pid": "1014677610", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16172630-6", "identifiedBy": [ { "type": "uri", @@ -16038,7 +15334,6 @@ "pid": "1014681685", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16173037-1", "identifiedBy": [ { "type": "uri", @@ -16061,7 +15356,6 @@ "pid": "1014683998", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16173268-9", "identifiedBy": [ { "type": "uri", @@ -16086,7 +15380,6 @@ "pid": "1014696348", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16174503-9", "identifiedBy": [ { "type": "uri", @@ -16103,7 +15396,6 @@ "pid": "1014702739", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16175142-8", "identifiedBy": [ { "type": "uri", @@ -16126,7 +15418,6 @@ "pid": "1014714222", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16176291-8", "identifiedBy": [ { "type": "uri", @@ -16156,7 +15447,6 @@ "pid": "1014733642", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16178233-4", "identifiedBy": [ { "type": "uri", @@ -16179,7 +15469,6 @@ "pid": "1014745357", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16179404-X", "identifiedBy": [ { "type": "uri", @@ -16202,7 +15491,6 @@ "pid": "101476677X", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/101476677X", "identifiedBy": [ { "type": "uri", @@ -16228,7 +15516,6 @@ "md5": "ebb5330bd7e04b00682859b07e00140b", "pid": "101477635X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/101477635X", "identifiedBy": [ { "type": "uri", @@ -16247,7 +15534,6 @@ "md5": "a1ec219840401d91bd1174bc20a8ea39", "pid": "1014803217", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1014803217", "identifiedBy": [ { "type": "uri", @@ -16267,7 +15553,6 @@ "pid": "1014837839", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1014837839", "identifiedBy": [ { "type": "uri", @@ -16286,7 +15571,6 @@ "pid": "1014841011", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1014841011", "identifiedBy": [ { "type": "uri", @@ -16303,7 +15587,6 @@ "pid": "1014954320", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1014954320", "identifiedBy": [ { "type": "uri", @@ -16328,7 +15611,6 @@ "md5": "037e082060213bf7b637606c47377d31", "pid": "1015098495", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1015098495", "identifiedBy": [ { "type": "uri", @@ -16346,7 +15628,6 @@ "pid": "1015101003", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1015101003", "identifiedBy": [ { "type": "uri", @@ -16375,7 +15656,6 @@ "md5": "4f3af0b310437582f1379b76b5251aca", "pid": "101514859X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/101514859X", "identifiedBy": [ { "type": "uri", @@ -16400,7 +15680,6 @@ "md5": "86adfd76d9e1f5295776b1a88ab00f5e", "pid": "1015165990", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1015165990", "identifiedBy": [ { "type": "uri", @@ -16417,7 +15696,6 @@ "pid": "1015193862", "type": "bf:Person", "qualifier": "Maharaj", - "identifier": "http://d-nb.info/gnd/1015193862", "identifiedBy": [ { "type": "uri", @@ -16439,7 +15717,6 @@ "md5": "64afeb65fed826b51f61f13a0d979436", "pid": "1015243762", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1015243762", "identifiedBy": [ { "type": "uri", @@ -16465,7 +15742,6 @@ "md5": "de4d160d51491b890da92878dcc5ab0a", "pid": "1015331386", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1015331386", "identifiedBy": [ { "type": "uri", @@ -16483,7 +15759,6 @@ "pid": "1015348394", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1015348394", "identifiedBy": [ { "type": "uri", @@ -16500,7 +15775,6 @@ "pid": "1015354157", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16182271-X", "identifiedBy": [ { "type": "uri", @@ -16520,7 +15794,6 @@ "pid": "1015371035", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16182356-7", "identifiedBy": [ { "type": "uri", @@ -16540,7 +15813,6 @@ "md5": "a79d2f7a7886810ec7eae2c7f3b7952d", "pid": "1015412998", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1015412998", "identifiedBy": [ { "type": "uri", @@ -16565,7 +15837,6 @@ "md5": "490956026d3f1e3b1990754f30eab0ec", "pid": "1015428967", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1015428967", "identifiedBy": [ { "type": "uri", @@ -16590,7 +15861,6 @@ "pid": "1015448186", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16182717-2", "identifiedBy": [ { "type": "uri", @@ -16611,7 +15881,6 @@ "pid": "1015448305", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1015448305", "identifiedBy": [ { "type": "uri", @@ -16630,7 +15899,6 @@ "md5": "eb454e7d98f9607650771e8a05cb8a13", "pid": "1015457789", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1015457789", "identifiedBy": [ { "type": "uri", @@ -16647,7 +15915,6 @@ "pid": "1015645631", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16324382-7", "identifiedBy": [ { "type": "uri", @@ -16669,7 +15936,6 @@ "md5": "5ead886f9acd18a0afb319ac055f46d3", "pid": "1015750427", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1015750427", "identifiedBy": [ { "type": "uri", @@ -16686,7 +15952,6 @@ "md5": "fb927c0c51569e6ae14aaa5e2bf69c4c", "pid": "1015752756", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1015752756", "identifiedBy": [ { "type": "uri", @@ -16704,7 +15969,6 @@ "md5": "431db7e4772c03b5aeb47f94ed57c640", "pid": "1015778275", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1015778275", "identifiedBy": [ { "type": "uri", @@ -16722,7 +15986,6 @@ "md5": "812f678596678c125fb8527ce6a5e3df", "pid": "1015799485", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1015799485", "identifiedBy": [ { "type": "uri", @@ -16748,7 +16011,6 @@ "md5": "2bf5847a7238cb2353d2d9234a0c826b", "pid": "1016006969", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1016006969", "identifiedBy": [ { "type": "uri", @@ -16766,7 +16028,6 @@ "md5": "5ba9acf623bb336cb3ad002a4fe1840e", "pid": "1016159560", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1016159560", "identifiedBy": [ { "type": "uri", @@ -16793,7 +16054,6 @@ "md5": "e49182613d8bbb4bc2e661216a2dd014", "pid": "1016626150", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1016626150", "identifiedBy": [ { "type": "uri", @@ -16810,7 +16070,6 @@ "pid": "1016763387", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1016763387", "identifiedBy": [ { "type": "uri", @@ -16828,7 +16087,6 @@ "md5": "5418f85a3d40eb86c64ad7bef9692b82", "pid": "1016951426", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1016951426", "identifiedBy": [ { "type": "uri", @@ -16853,7 +16111,6 @@ "md5": "23442922336c479db156f0bff82254c3", "pid": "1016975198", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1016975198", "identifiedBy": [ { "type": "uri", @@ -16881,7 +16138,6 @@ "md5": "222715d4e6fb61c2dd0f57c98972c85f", "pid": "1017107246", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1017107246", "identifiedBy": [ { "type": "uri", @@ -16901,7 +16157,6 @@ "pid": "1017352712", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16330897-4", "identifiedBy": [ { "type": "uri", @@ -16932,7 +16187,6 @@ "language": [ "lat" ], - "identifier": "http://d-nb.info/gnd/1017628769", "identifiedBy": [ { "type": "uri", @@ -16947,7 +16201,6 @@ "md5": "0c6b9b5f16234f73c1bea596cae6980b", "pid": "1017668051", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1017668051", "identifiedBy": [ { "type": "uri", @@ -16968,7 +16221,6 @@ "pid": "1017696241", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1017696241", "identifiedBy": [ { "type": "uri", @@ -16986,7 +16238,6 @@ "pid": "1018180087", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16333720-2", "identifiedBy": [ { "type": "uri", @@ -17009,7 +16260,6 @@ "md5": "71d4ed70233fcf3bf5f817b2bae25b82", "pid": "1018299807", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1018299807", "identifiedBy": [ { "type": "uri", @@ -17026,7 +16276,6 @@ "pid": "1018900772", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16336522-2", "identifiedBy": [ { "type": "uri", @@ -17048,7 +16297,6 @@ "md5": "d2327fc4c94dc60cd7bb5ec6febdea3b", "pid": "1019086750", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1019086750", "identifiedBy": [ { "type": "uri", @@ -17066,7 +16314,6 @@ "md5": "f22e60dfa8ac727441a81155fae281d5", "pid": "1019500344", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1019500344", "identifiedBy": [ { "type": "uri", @@ -17085,7 +16332,6 @@ "pid": "1020150378", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1020150378", "identifiedBy": [ { "type": "uri", @@ -17112,7 +16358,6 @@ "pid": "102047033X", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/102047033X", "identifiedBy": [ { "type": "uri", @@ -17163,7 +16408,6 @@ "pid": "1020473932", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/7857480-8", "identifiedBy": [ { "type": "uri", @@ -17189,7 +16433,6 @@ "pid": "1020513020", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1020513020", "identifiedBy": [ { "type": "uri", @@ -17209,7 +16452,6 @@ "pid": "1020751282", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16343525-X", "identifiedBy": [ { "type": "uri", @@ -17231,7 +16473,6 @@ "md5": "f80f05f4b3f5dd2fc6951ac6739be28f", "pid": "102248435", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/102248435", "identifiedBy": [ { "type": "uri", @@ -17253,7 +16494,6 @@ "pid": "1023582090", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1023582090", "identifiedBy": [ { "type": "uri", @@ -17280,7 +16520,6 @@ "pid": "1023649187", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1023649187", "identifiedBy": [ { "type": "uri", @@ -17298,7 +16537,6 @@ "pid": "102402868", "type": "bf:Person", "qualifier": "Samius", - "identifier": "http://d-nb.info/gnd/102402868", "identifiedBy": [ { "type": "uri", @@ -17327,7 +16565,6 @@ "md5": "ed58a95ce86ab6fbee025ebc1c0b4acc", "pid": "102503214", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/102503214", "identifiedBy": [ { "type": "uri", @@ -17349,7 +16586,6 @@ "pid": "1025074823", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1025074823", "identifiedBy": [ { "type": "uri", @@ -17366,7 +16602,6 @@ "md5": "773a10ba687332e3cb4331af16fbff10", "pid": "1025297636", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1025297636", "identifiedBy": [ { "type": "uri", @@ -17384,7 +16619,6 @@ "pid": "1026199441", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1026199441", "identifiedBy": [ { "type": "uri", @@ -17411,7 +16645,6 @@ "pid": "1026316790", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1026316790", "identifiedBy": [ { "type": "uri", @@ -17428,7 +16661,6 @@ "pid": "1026448301", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1026448301", "identifiedBy": [ { "type": "uri", @@ -17448,7 +16680,6 @@ "md5": "fdd6896075f1243207c19f41547aaf7c", "pid": "1027019080", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1027019080", "identifiedBy": [ { "type": "uri", @@ -17472,7 +16703,6 @@ "pid": "1027019781", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1027019781", "identifiedBy": [ { "type": "uri", @@ -17510,7 +16740,6 @@ "md5": "75a990838003db58fa7f3427d7a48193", "pid": "1027170250", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1027170250", "identifiedBy": [ { "type": "uri", @@ -17529,7 +16758,6 @@ "pid": "1027359981", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1027359981", "identifiedBy": [ { "type": "uri", @@ -17554,7 +16782,6 @@ "pid": "1027463770", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1027463770", "identifiedBy": [ { "type": "uri", @@ -17575,7 +16802,6 @@ "md5": "741e5801753a12614137b55f06d5ad6d", "pid": "1027567835", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1027567835", "identifiedBy": [ { "type": "uri", @@ -17596,7 +16822,6 @@ "pid": "1028398166", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1028398166", "identifiedBy": [ { "type": "uri", @@ -17616,7 +16841,6 @@ "md5": "5ac30a23a276a6b8def2cba540cc3856", "pid": "1028665504", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1028665504", "identifiedBy": [ { "type": "uri", @@ -17633,7 +16857,6 @@ "md5": "ca0f3e6cb11ae9a81e7b9013c941d97e", "pid": "102892113", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/102892113", "identifiedBy": [ { "type": "uri", @@ -17663,7 +16886,6 @@ "pid": "1029917442", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1029917442", "identifiedBy": [ { "type": "uri", @@ -17682,7 +16904,6 @@ "pid": "1030495416", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1030495416", "identifiedBy": [ { "type": "uri", @@ -17700,7 +16921,6 @@ "pid": "1031215441", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1031215441", "identifiedBy": [ { "type": "uri", @@ -17722,7 +16942,6 @@ "md5": "8d83b0e26034e8bafcc7ec48758549c9", "pid": "103129928", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/103129928", "identifiedBy": [ { "type": "uri", @@ -17740,7 +16959,6 @@ "pid": "1031494286", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1031494286", "identifiedBy": [ { "type": "uri", @@ -17761,7 +16979,6 @@ "pid": "103163357X", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/103163357X", "identifiedBy": [ { "type": "uri", @@ -17779,7 +16996,6 @@ "pid": "1032029374", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1032029374", "identifiedBy": [ { "type": "uri", @@ -17799,7 +17015,6 @@ "md5": "8532b8cb7977175868e5c6a3f87a68e1", "pid": "1032305649", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1032305649", "identifiedBy": [ { "type": "uri", @@ -17827,7 +17042,6 @@ "pid": "1032456213", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1032456213", "identifiedBy": [ { "type": "uri", @@ -17852,7 +17066,6 @@ "pid": "1032675357", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1032675357", "identifiedBy": [ { "type": "uri", @@ -17870,7 +17083,6 @@ "md5": "dd187b0dcc393f8f431ed8ec0c9581fd", "pid": "1033120790", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1033120790", "identifiedBy": [ { "type": "uri", @@ -17896,7 +17108,6 @@ "md5": "b0b1cd7e9f06d0b9c8fe4f47d4b66550", "pid": "1033471542", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1033471542", "identifiedBy": [ { "type": "uri", @@ -17913,7 +17124,6 @@ "pid": "1033570451", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1033570451", "identifiedBy": [ { "type": "uri", @@ -17942,7 +17152,6 @@ "md5": "d7eee74da5c9c5ceaf34c46aeb15bbd5", "pid": "1034236164", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1034236164", "identifiedBy": [ { "type": "uri", @@ -17960,7 +17169,6 @@ "pid": "1034635476", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1034635476", "identifiedBy": [ { "type": "uri", @@ -17983,7 +17191,6 @@ "md5": "592c2b783c60c06a97feca2efe16351c", "pid": "103473262", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/103473262", "identifiedBy": [ { "type": "uri", @@ -18009,7 +17216,6 @@ "pid": "1035018888", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1035018888", "identifiedBy": [ { "type": "uri", @@ -18029,7 +17235,6 @@ "md5": "999b7c9d647118a02652220bde3280b8", "pid": "1035444666", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1035444666", "identifiedBy": [ { "type": "uri", @@ -18054,7 +17259,6 @@ "md5": "4d4eb00117bc2b0e1b4fb18a9a1ebc90", "pid": "1035621460", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1035621460", "identifiedBy": [ { "type": "uri", @@ -18076,7 +17280,6 @@ "pid": "1035656221", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1035656221", "identifiedBy": [ { "type": "uri", @@ -18106,7 +17309,6 @@ "pid": "1035688298", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1035688298", "identifiedBy": [ { "type": "uri", @@ -18130,7 +17332,6 @@ "pid": "1036111024", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1036111024", "identifiedBy": [ { "type": "uri", @@ -18158,7 +17359,6 @@ "md5": "a21351da0f21cf28b06e044602ef16da", "pid": "103624163", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/103624163", "identifiedBy": [ { "type": "uri", @@ -18187,7 +17387,6 @@ "pid": "1036550141", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1036550141", "identifiedBy": [ { "type": "uri", @@ -18217,7 +17416,6 @@ "md5": "ee7ecef5784b24f16e3503ac696e3d80", "pid": "1037547543", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1037547543", "identifiedBy": [ { "type": "uri", @@ -18245,7 +17443,6 @@ "pid": "1037748980", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1037748980", "identifiedBy": [ { "type": "uri", @@ -18266,7 +17463,6 @@ "language": [ "rus" ], - "identifier": "http://d-nb.info/gnd/1037788141", "identifiedBy": [ { "type": "uri", @@ -18292,7 +17488,6 @@ "md5": "816170e0778561a9b9ea5d8f5f5f2afc", "pid": "103807349", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/103807349", "identifiedBy": [ { "type": "uri", @@ -18310,7 +17505,6 @@ "md5": "0753b0ba06cce52b30f44b375200321b", "pid": "103843914", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/103843914", "identifiedBy": [ { "type": "uri", @@ -18333,7 +17527,6 @@ "md5": "1b3b32af18229207c7c6372c761441ea", "pid": "1038798124", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1038798124", "identifiedBy": [ { "type": "uri", @@ -18351,7 +17544,6 @@ "pid": "103899138", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/103899138", "identifiedBy": [ { "type": "uri", @@ -18384,7 +17576,6 @@ "md5": "65a4566c5608a51da59eed2e33cbd6d2", "pid": "104057386", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/104057386", "identifiedBy": [ { "type": "uri", @@ -18411,7 +17602,6 @@ "pid": "1041364962", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1041364962", "identifiedBy": [ { "type": "uri", @@ -18440,7 +17630,6 @@ "pid": "1041494114", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1041494114", "identifiedBy": [ { "type": "uri", @@ -18457,7 +17646,6 @@ "pid": "1041505701", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1041505701", "identifiedBy": [ { "type": "uri", @@ -18482,7 +17670,6 @@ "pid": "1042050643", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1042050643", "identifiedBy": [ { "type": "uri", @@ -18499,7 +17686,6 @@ "md5": "4ce4c2fa8a9443bc384107d7a34db77b", "pid": "104240636", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/104240636", "identifiedBy": [ { "type": "uri", @@ -18516,7 +17702,6 @@ "md5": "81640506b2ba0e4de0f7509a283ae7e3", "pid": "1043162917", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1043162917", "identifiedBy": [ { "type": "uri", @@ -18541,7 +17726,6 @@ "pid": "1043761047", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1043761047", "identifiedBy": [ { "type": "uri", @@ -18574,7 +17758,6 @@ "pid": "1043881336", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1043881336", "identifiedBy": [ { "type": "uri", @@ -18602,7 +17785,6 @@ "language": [ "eng" ], - "identifier": "http://d-nb.info/gnd/1044044519", "identifiedBy": [ { "type": "uri", @@ -18618,7 +17800,6 @@ "md5": "113948a75adba7e91a30dc7bb54ae763", "pid": "1044246936", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1044246936", "identifiedBy": [ { "type": "uri", @@ -18638,7 +17819,6 @@ "md5": "8ef81864bc362c5d2e83a7f512cee43c", "pid": "1044369329", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1044369329", "identifiedBy": [ { "type": "uri", @@ -18662,7 +17842,6 @@ "pid": "1046083678", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1046083678", "identifiedBy": [ { "type": "uri", @@ -18684,7 +17863,6 @@ "pid": "1046664522", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1046664522", "identifiedBy": [ { "type": "uri", @@ -18721,7 +17899,6 @@ "pid": "1047508257", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1047508257", "identifiedBy": [ { "type": "uri", @@ -18738,7 +17915,6 @@ "pid": "1047811014", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1047811014", "identifiedBy": [ { "type": "uri", @@ -18763,7 +17939,6 @@ "md5": "b6ce9fdf2b676c972655217184f24ace", "pid": "1048228142", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1048228142", "identifiedBy": [ { "type": "uri", @@ -18782,7 +17957,6 @@ "md5": "a6093d9480f64e276d43d899a6db78d1", "pid": "1048657442", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1048657442", "identifiedBy": [ { "type": "uri", @@ -18799,7 +17973,6 @@ "md5": "17d732a2fb0145dc681d757640e19937", "pid": "104999227X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/104999227X", "identifiedBy": [ { "type": "uri", @@ -18825,7 +17998,6 @@ "pid": "1050328639", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1050328639", "identifiedBy": [ { "type": "uri", @@ -18845,7 +18017,6 @@ "pid": "1050869354", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1050869354", "identifiedBy": [ { "type": "uri", @@ -18877,7 +18048,6 @@ "pid": "1051111412", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1051111412", "identifiedBy": [ { "type": "uri", @@ -18907,7 +18077,6 @@ "md5": "181822571c21b3c8132971c8838f56ed", "pid": "1051286786", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1051286786", "identifiedBy": [ { "type": "uri", @@ -18935,7 +18104,6 @@ "md5": "3b02b4a3447306c002adf01b5edebb53", "pid": "1051412552", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1051412552", "identifiedBy": [ { "type": "uri", @@ -18967,7 +18135,6 @@ "pid": "1051657490", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1051657490", "identifiedBy": [ { "type": "uri", @@ -18984,7 +18151,6 @@ "pid": "1051682878", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1051682878", "identifiedBy": [ { "type": "uri", @@ -19010,7 +18176,6 @@ "language": [ "rus" ], - "identifier": "http://d-nb.info/gnd/1051697891", "identifiedBy": [ { "type": "uri", @@ -19038,7 +18203,6 @@ "md5": "9d6c7aff735992e7a98f1eecaddeedfe", "pid": "1051918510", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1051918510", "identifiedBy": [ { "type": "uri", @@ -19062,7 +18226,6 @@ "pid": "1052619274", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1052619274", "identifiedBy": [ { "type": "uri", @@ -19095,7 +18258,6 @@ "pid": "1052636209", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1052636209", "identifiedBy": [ { "type": "uri", @@ -19121,7 +18283,6 @@ "pid": "1053241011", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1053241011", "identifiedBy": [ { "type": "uri", @@ -19142,7 +18303,6 @@ "pid": "1054143951", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1054143951", "identifiedBy": [ { "type": "uri", @@ -19167,7 +18327,6 @@ "pid": "1055067094", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1055067094", "identifiedBy": [ { "type": "uri", @@ -19194,7 +18353,6 @@ "md5": "f78c778a304333dbfe09c73179c27296", "pid": "1055101608", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1055101608", "identifiedBy": [ { "type": "uri", @@ -19214,7 +18372,6 @@ "md5": "c8a4bc7645206f583cf7ecea12b348a6", "pid": "1055200525", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1055200525", "identifiedBy": [ { "type": "uri", @@ -19231,7 +18388,6 @@ "md5": "7166370cfe3eeb77cfb3be65d6a2cae7", "pid": "1055211292", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1055211292", "identifiedBy": [ { "type": "uri", @@ -19249,7 +18405,6 @@ "md5": "28e58c783c049cf248d293546d48a84f", "pid": "1055348328", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1055348328", "identifiedBy": [ { "type": "uri", @@ -19283,7 +18438,6 @@ "pid": "1055490760", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1055490760", "identifiedBy": [ { "type": "uri", @@ -19312,7 +18466,6 @@ "md5": "b60021b4d909fa0f44d7aee1c664ee9e", "pid": "105550835X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/105550835X", "identifiedBy": [ { "type": "uri", @@ -19328,7 +18481,6 @@ "md5": "ab3d59c35de0cfa9ca367e7b3e133fc8", "pid": "1055540210", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1055540210", "identifiedBy": [ { "type": "uri", @@ -19356,7 +18508,6 @@ "md5": "fc587038602e771aa53be1124834096d", "pid": "1055644334", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1055644334", "identifiedBy": [ { "type": "uri", @@ -19380,7 +18531,6 @@ "pid": "1055753001", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1055753001", "identifiedBy": [ { "type": "uri", @@ -19408,7 +18558,6 @@ "md5": "26a651b400adb22ce42692c2cca74872", "pid": "1055794662", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1055794662", "identifiedBy": [ { "type": "uri", @@ -19434,7 +18583,6 @@ "pid": "1055795316", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1055795316", "identifiedBy": [ { "type": "uri", @@ -19479,7 +18627,6 @@ "md5": "1d70b789fdd996d07255a3a96ec56992", "pid": "105597377X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/105597377X", "identifiedBy": [ { "type": "uri", @@ -19505,7 +18652,6 @@ "language": [ "ita" ], - "identifier": "http://d-nb.info/gnd/1056074779", "identifiedBy": [ { "type": "uri", @@ -19525,7 +18671,6 @@ "md5": "3f7ba425f22f1f731d79072dfe31d97d", "pid": "1056091770", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1056091770", "identifiedBy": [ { "type": "uri", @@ -19549,7 +18694,6 @@ "md5": "f96e491db2cc66d8cfaa5c34d3b99d05", "pid": "1056123087", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1056123087", "identifiedBy": [ { "type": "uri", @@ -19574,7 +18718,6 @@ "pid": "1056148799", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1056148799", "identifiedBy": [ { "type": "uri", @@ -19604,7 +18747,6 @@ "md5": "569798e29dcd773214484c1e2127b0d1", "pid": "1056159278", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1056159278", "identifiedBy": [ { "type": "uri", @@ -19635,7 +18777,6 @@ "md5": "207addc78bf1fce0e8fcd28e1d140785", "pid": "1056220570", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1056220570", "identifiedBy": [ { "type": "uri", @@ -19654,7 +18795,6 @@ "md5": "29aec5cbc0ad1cb981034f5b031282a1", "pid": "1056241462", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1056241462", "identifiedBy": [ { "type": "uri", @@ -19673,7 +18813,6 @@ "md5": "9eaa8ecfd80473887351dcaf3cc7c40a", "pid": "1056400331", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1056400331", "identifiedBy": [ { "type": "uri", @@ -19692,7 +18831,6 @@ "md5": "6566782ce58a13f3aa8466f3a1fe07d9", "pid": "1056497572", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1056497572", "identifiedBy": [ { "type": "uri", @@ -19711,7 +18849,6 @@ "md5": "702a3183e20fb7cabde02d8242efd919", "pid": "1056601809", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1056601809", "identifiedBy": [ { "type": "uri", @@ -19736,7 +18873,6 @@ "md5": "fe9eb6c3a8283558c6ddd2d04b825494", "pid": "1056604328", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1056604328", "identifiedBy": [ { "type": "uri", @@ -19763,7 +18899,6 @@ "md5": "f07c64848e8760fa64dc5cd50222f9e6", "pid": "1056646438", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1056646438", "identifiedBy": [ { "type": "uri", @@ -19782,7 +18917,6 @@ "md5": "d125712e3809df83d4a616438c2938b4", "pid": "1056682051", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1056682051", "identifiedBy": [ { "type": "uri", @@ -19807,7 +18941,6 @@ "md5": "758a076473c01e0991f42e95770fa456", "pid": "1057324841", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1057324841", "identifiedBy": [ { "type": "uri", @@ -19840,7 +18973,6 @@ "md5": "b53f31383199c99cdebd8369cbae2aae", "pid": "1057520837", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1057520837", "identifiedBy": [ { "type": "uri", @@ -19861,7 +18993,6 @@ "md5": "dc9e96e4e122e9e00933bee5977413ad", "pid": "1057605336", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1057605336", "identifiedBy": [ { "type": "uri", @@ -19880,7 +19011,6 @@ "md5": "ffc9bc24156460e54dc8b657646d958c", "pid": "1057630616", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1057630616", "identifiedBy": [ { "type": "uri", @@ -19900,7 +19030,6 @@ "pid": "1058848518", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1058848518", "identifiedBy": [ { "type": "uri", @@ -19918,7 +19047,6 @@ "pid": "1059467119", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1059467119", "identifiedBy": [ { "type": "uri", @@ -19945,7 +19073,6 @@ "md5": "1a1317255edcf821d90fed48f1c77163", "pid": "1060270773", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1060270773", "identifiedBy": [ { "type": "uri", @@ -19970,7 +19097,6 @@ "language": [ "chi" ], - "identifier": "http://d-nb.info/gnd/1060675595", "identifiedBy": [ { "type": "uri", @@ -20002,7 +19128,6 @@ "language": [ "eng" ], - "identifier": "http://d-nb.info/gnd/106068375X", "identifiedBy": [ { "type": "uri", @@ -20018,7 +19143,6 @@ "md5": "05a5e289237488cbfc3b9aabaea3857f", "pid": "1060757729", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1060757729", "identifiedBy": [ { "type": "uri", @@ -20040,7 +19164,6 @@ "pid": "1061268225", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1061268225", "identifiedBy": [ { "type": "uri", @@ -20056,7 +19179,6 @@ "pid": "1061330117", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1061330117", "identifiedBy": [ { "type": "uri", @@ -20074,7 +19196,6 @@ "pid": "106136769X", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/106136769X", "identifiedBy": [ { "type": "uri", @@ -20090,7 +19211,6 @@ "pid": "1061395804", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1061395804", "identifiedBy": [ { "type": "uri", @@ -20107,7 +19227,6 @@ "pid": "1061433706", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1061433706", "identifiedBy": [ { "type": "uri", @@ -20123,7 +19242,6 @@ "pid": "1061583368", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1061583368", "identifiedBy": [ { "type": "uri", @@ -20139,7 +19257,6 @@ "pid": "1061592588", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1061592588", "identifiedBy": [ { "type": "uri", @@ -20155,7 +19272,6 @@ "pid": "1061744094", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1061744094", "identifiedBy": [ { "type": "uri", @@ -20178,7 +19294,6 @@ "pid": "1061835065", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1061835065", "identifiedBy": [ { "type": "uri", @@ -20194,7 +19309,6 @@ "pid": "1061837513", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1061837513", "identifiedBy": [ { "type": "uri", @@ -20210,7 +19324,6 @@ "pid": "1061999920", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1061999920", "identifiedBy": [ { "type": "uri", @@ -20226,7 +19339,6 @@ "pid": "1062371135", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1062371135", "identifiedBy": [ { "type": "uri", @@ -20242,7 +19354,6 @@ "pid": "106243756X", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/106243756X", "identifiedBy": [ { "type": "uri", @@ -20259,7 +19370,6 @@ "md5": "7dcd46e02b8968f6afe8bcf16fa8421d", "pid": "1062692519", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1062692519", "identifiedBy": [ { "type": "uri", @@ -20281,7 +19391,6 @@ "md5": "9ec4f5adc4b460052b62b4587c10d0d3", "pid": "1063310490", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1063310490", "identifiedBy": [ { "type": "uri", @@ -20309,7 +19418,6 @@ "md5": "2fb460fd570651c84312ee5db89b4519", "pid": "1063319633", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1063319633", "identifiedBy": [ { "type": "uri", @@ -20328,7 +19436,6 @@ "pid": "1063814340", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1063814340", "identifiedBy": [ { "type": "uri", @@ -20349,7 +19456,6 @@ "md5": "c59bf8d4281a275c510b67a8aee6ce6f", "pid": "1064701922", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1064701922", "identifiedBy": [ { "type": "uri", @@ -20385,7 +19491,6 @@ "pid": "1064724876", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1064724876", "identifiedBy": [ { "type": "uri", @@ -20405,7 +19510,6 @@ "pid": "1064912958", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1064912958", "identifiedBy": [ { "type": "uri", @@ -20428,7 +19532,6 @@ "pid": "1065743769", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1065743769", "identifiedBy": [ { "type": "uri", @@ -20452,7 +19555,6 @@ "pid": "1065866356", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1065866356", "identifiedBy": [ { "type": "uri", @@ -20474,7 +19576,6 @@ "pid": "1067106146", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1067106146", "identifiedBy": [ { "type": "uri", @@ -20499,7 +19600,6 @@ "md5": "6e4d74e5a9b18afa5099c100d3749963", "pid": "1067168370", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1067168370", "identifiedBy": [ { "type": "uri", @@ -20521,7 +19621,6 @@ "pid": "1067217495", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1067217495", "identifiedBy": [ { "type": "uri", @@ -20551,7 +19650,6 @@ "md5": "beb41144d8e56fe44a267a8fed425ae5", "pid": "1067908366", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1067908366", "identifiedBy": [ { "type": "uri", @@ -20572,7 +19670,6 @@ "md5": "a43e782ac49761ba65df8ef8804ee14d", "pid": "1067912916", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1067912916", "identifiedBy": [ { "type": "uri", @@ -20604,7 +19701,6 @@ "pid": "1068089962", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1068089962", "identifiedBy": [ { "type": "uri", @@ -20624,7 +19720,6 @@ "md5": "2e53c797c1c50fc0a3dc51a65d809cc7", "pid": "1071439871", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1071439871", "identifiedBy": [ { "type": "uri", @@ -20650,7 +19745,6 @@ "md5": "81f144cd64d5618f421b3cdc2453c36b", "pid": "1072585936", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1072585936", "identifiedBy": [ { "type": "uri", @@ -20670,7 +19764,6 @@ "md5": "a31e811d41991ee4dcd374ff980f0b87", "pid": "107289806", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/107289806", "identifiedBy": [ { "type": "uri", @@ -20691,7 +19784,6 @@ "pid": "1072904977", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1072904977", "identifiedBy": [ { "type": "uri", @@ -20714,7 +19806,6 @@ "pid": "1072916436", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1072916436", "identifiedBy": [ { "type": "uri", @@ -20735,7 +19826,6 @@ "pid": "1072932296", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1072932296", "identifiedBy": [ { "type": "uri", @@ -20759,7 +19849,6 @@ "pid": "1072961296", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1072961296", "identifiedBy": [ { "type": "uri", @@ -20781,7 +19870,6 @@ "pid": "1073022544", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1073022544", "identifiedBy": [ { "type": "uri", @@ -20802,7 +19890,6 @@ "pid": "1073026825", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1073026825", "identifiedBy": [ { "type": "uri", @@ -20823,7 +19910,6 @@ "pid": "1073045927", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1073045927", "identifiedBy": [ { "type": "uri", @@ -20844,7 +19930,6 @@ "pid": "1073087123", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1073087123", "identifiedBy": [ { "type": "uri", @@ -20867,7 +19952,6 @@ "pid": "107371876X", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/107371876X", "identifiedBy": [ { "type": "uri", @@ -20895,7 +19979,6 @@ "md5": "5602da526789011da6de4662881e8aa0", "pid": "107441148X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/107441148X", "identifiedBy": [ { "type": "uri", @@ -20918,7 +20001,6 @@ "md5": "5d46f71001ae6c90c728182da83d21a6", "pid": "107495839X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/107495839X", "identifiedBy": [ { "type": "uri", @@ -20940,7 +20022,6 @@ "pid": "1076838170", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1076838170", "identifiedBy": [ { "type": "uri", @@ -20965,7 +20046,6 @@ "pid": "1076933726", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1076933726", "identifiedBy": [ { "type": "uri", @@ -20981,7 +20061,6 @@ "pid": "1077345259", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1077345259", "identifiedBy": [ { "type": "uri", @@ -21003,7 +20082,6 @@ "md5": "bb714f4b5d47f90c7ffb07222cb3109f", "pid": "107738338X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/107738338X", "identifiedBy": [ { "type": "uri", @@ -21020,7 +20098,6 @@ "pid": "1077501706", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1077501706", "identifiedBy": [ { "type": "uri", @@ -21036,7 +20113,6 @@ "md5": "89cc86567d49afaee698ce7b0257264c", "pid": "1077608101", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1077608101", "identifiedBy": [ { "type": "uri", @@ -21057,7 +20133,6 @@ "pid": "1077612869", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1077612869", "identifiedBy": [ { "type": "uri", @@ -21084,7 +20159,6 @@ "md5": "d11decdcaf560cdf53a3b29fc13b110e", "pid": "1077631081", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1077631081", "identifiedBy": [ { "type": "uri", @@ -21100,7 +20174,6 @@ "pid": "1077666799", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1077666799", "identifiedBy": [ { "type": "uri", @@ -21121,7 +20194,6 @@ "md5": "38260a44cf0c4ebbe0125f72b2ad4b06", "pid": "1077833237", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1077833237", "identifiedBy": [ { "type": "uri", @@ -21146,7 +20218,6 @@ "pid": "1077873468", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1077873468", "identifiedBy": [ { "type": "uri", @@ -21169,7 +20240,6 @@ "pid": "1077979355", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1077979355", "identifiedBy": [ { "type": "uri", @@ -21185,7 +20255,6 @@ "pid": "1078040133", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1078040133", "identifiedBy": [ { "type": "uri", @@ -21205,7 +20274,6 @@ "pid": "107808355X", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/107808355X", "identifiedBy": [ { "type": "uri", @@ -21225,7 +20293,6 @@ "pid": "107817864X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/107817864X", "identifiedBy": [ { "type": "uri", @@ -21250,7 +20317,6 @@ "pid": "1078249024", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1078249024", "identifiedBy": [ { "type": "uri", @@ -21274,7 +20340,6 @@ "md5": "1af8d642f3305467f48f1633e91199cc", "pid": "1078758360", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1078758360", "identifiedBy": [ { "type": "uri", @@ -21293,7 +20358,6 @@ "md5": "283e97b628b38a749a320459ff11a236", "pid": "107916894", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/107916894", "identifiedBy": [ { "type": "uri", @@ -21314,7 +20378,6 @@ "md5": "ca1b24726444844b128abe171592578e", "pid": "1079291768", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1079291768", "identifiedBy": [ { "type": "uri", @@ -21339,7 +20402,6 @@ "pid": "1079304231", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1079304231", "identifiedBy": [ { "type": "uri", @@ -21363,7 +20425,6 @@ "pid": "1079330836", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1079330836", "identifiedBy": [ { "type": "uri", @@ -21388,7 +20449,6 @@ "pid": "1079330844", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1079330844", "identifiedBy": [ { "type": "uri", @@ -21415,7 +20475,6 @@ "pid": "1079390413", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1079390413", "identifiedBy": [ { "type": "uri", @@ -21433,7 +20492,6 @@ "pid": "1079392009", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1079392009", "identifiedBy": [ { "type": "uri", @@ -21451,7 +20509,6 @@ "pid": "1079423273", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1079423273", "identifiedBy": [ { "type": "uri", @@ -21478,7 +20535,6 @@ "pid": "1079471162", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1079471162", "identifiedBy": [ { "type": "uri", @@ -21500,7 +20556,6 @@ "pid": "1079507582", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1079507582", "identifiedBy": [ { "type": "uri", @@ -21522,7 +20577,6 @@ "md5": "0c7919cd04bdf4c6deb8ba53b0b306b1", "pid": "107956215X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/107956215X", "identifiedBy": [ { "type": "uri", @@ -21548,7 +20602,6 @@ "pid": "1079687157", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1079687157", "identifiedBy": [ { "type": "uri", @@ -21569,7 +20622,6 @@ "pid": "1079732772", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1079732772", "identifiedBy": [ { "type": "uri", @@ -21590,7 +20642,6 @@ "pid": "1079981993", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1079981993", "identifiedBy": [ { "type": "uri", @@ -21613,7 +20664,6 @@ "pid": "1079982175", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1079982175", "identifiedBy": [ { "type": "uri", @@ -21631,7 +20681,6 @@ "pid": "1080093648", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1080093648", "identifiedBy": [ { "type": "uri", @@ -21653,7 +20702,6 @@ "pid": "1080488448", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1080488448", "identifiedBy": [ { "type": "uri", @@ -21675,7 +20723,6 @@ "pid": "1080490868", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1080490868", "identifiedBy": [ { "type": "uri", @@ -21699,7 +20746,6 @@ "pid": "108049450", "type": "bf:Person", "qualifier": "Freiherr von", - "identifier": "http://d-nb.info/gnd/108049450", "identifiedBy": [ { "type": "uri", @@ -21728,7 +20774,6 @@ "pid": "1080869417", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1080869417", "identifiedBy": [ { "type": "uri", @@ -21759,7 +20804,6 @@ "pid": "1081028270", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1081028270", "identifiedBy": [ { "type": "uri", @@ -21777,7 +20821,6 @@ "pid": "1081399880", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1081399880", "identifiedBy": [ { "type": "uri", @@ -21797,7 +20840,6 @@ "pid": "1081429097", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1081429097", "identifiedBy": [ { "type": "uri", @@ -21828,7 +20870,6 @@ "pid": "1081450452", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1081450452", "identifiedBy": [ { "type": "uri", @@ -21852,7 +20893,6 @@ "pid": "1081489529", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1081489529", "identifiedBy": [ { "type": "uri", @@ -21874,7 +20914,6 @@ "pid": "1081556625", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1081556625", "identifiedBy": [ { "type": "uri", @@ -21901,7 +20940,6 @@ "pid": "1081654597", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1081654597", "identifiedBy": [ { "type": "uri", @@ -21919,7 +20957,6 @@ "pid": "1081687118", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1081687118", "identifiedBy": [ { "type": "uri", @@ -21947,7 +20984,6 @@ "pid": "1081988355", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1081988355", "identifiedBy": [ { "type": "uri", @@ -21975,7 +21011,6 @@ "pid": "1082002127", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1082002127", "identifiedBy": [ { "type": "uri", @@ -22011,7 +21046,6 @@ "pid": "1082006580", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1082006580", "identifiedBy": [ { "type": "uri", @@ -22028,7 +21062,6 @@ "pid": "1082007447", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1082007447", "identifiedBy": [ { "type": "uri", @@ -22045,7 +21078,6 @@ "pid": "108231563X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/108231563X", "identifiedBy": [ { "type": "uri", @@ -22062,7 +21094,6 @@ "pid": "1082319058", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1082319058", "identifiedBy": [ { "type": "uri", @@ -22079,7 +21110,6 @@ "pid": "1082383880", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1082383880", "identifiedBy": [ { "type": "uri", @@ -22102,7 +21132,6 @@ "pid": "1082387401", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1082387401", "identifiedBy": [ { "type": "uri", @@ -22125,7 +21154,6 @@ "pid": "1082523097", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1082523097", "identifiedBy": [ { "type": "uri", @@ -22145,7 +21173,6 @@ "language": [ "ger" ], - "identifier": "http://d-nb.info/gnd/1084363704", "identifiedBy": [ { "type": "uri", @@ -22162,7 +21189,6 @@ "pid": "108451836", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/108451836", "identifiedBy": [ { "type": "uri", @@ -22189,7 +21215,6 @@ "pid": "1085208036", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1085208036", "identifiedBy": [ { "type": "uri", @@ -22214,7 +21239,6 @@ "pid": "1085704564", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1085704564", "identifiedBy": [ { "type": "uri", @@ -22230,7 +21254,6 @@ "pid": "1085733416", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1085733416", "identifiedBy": [ { "type": "uri", @@ -22246,7 +21269,6 @@ "pid": "1085772225", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1085772225", "identifiedBy": [ { "type": "uri", @@ -22262,7 +21284,6 @@ "pid": "1085773566", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1085773566", "identifiedBy": [ { "type": "uri", @@ -22288,7 +21309,6 @@ "pid": "1085805433", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1085805433", "identifiedBy": [ { "type": "uri", @@ -22304,7 +21324,6 @@ "pid": "1085806677", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1085806677", "identifiedBy": [ { "type": "uri", @@ -22327,7 +21346,6 @@ "pid": "1085808254", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1085808254", "identifiedBy": [ { "type": "uri", @@ -22344,7 +21362,6 @@ "pid": "1085822613", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1085822613", "identifiedBy": [ { "type": "uri", @@ -22371,7 +21388,6 @@ "pid": "1085824861", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1085824861", "identifiedBy": [ { "type": "uri", @@ -22387,7 +21403,6 @@ "pid": "1085825302", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1085825302", "identifiedBy": [ { "type": "uri", @@ -22403,7 +21418,6 @@ "pid": "1085827739", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1085827739", "identifiedBy": [ { "type": "uri", @@ -22419,7 +21433,6 @@ "pid": "1085836894", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1085836894", "identifiedBy": [ { "type": "uri", @@ -22435,7 +21448,6 @@ "pid": "108585440X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/108585440X", "identifiedBy": [ { "type": "uri", @@ -22457,7 +21469,6 @@ "pid": "1085905519", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1085905519", "identifiedBy": [ { "type": "uri", @@ -22473,7 +21484,6 @@ "pid": "1085909603", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1085909603", "identifiedBy": [ { "type": "uri", @@ -22497,7 +21507,6 @@ "pid": "1085909808", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1085909808", "identifiedBy": [ { "type": "uri", @@ -22521,7 +21530,6 @@ "pid": "1085934519", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1085934519", "identifiedBy": [ { "type": "uri", @@ -22543,7 +21551,6 @@ "pid": "1085989879", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1085989879", "identifiedBy": [ { "type": "uri", @@ -22565,7 +21572,6 @@ "pid": "1086006615", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086006615", "identifiedBy": [ { "type": "uri", @@ -22581,7 +21587,6 @@ "pid": "1086024044", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086024044", "identifiedBy": [ { "type": "uri", @@ -22597,7 +21602,6 @@ "pid": "1086025474", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086025474", "identifiedBy": [ { "type": "uri", @@ -22622,7 +21626,6 @@ "pid": "1086047532", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086047532", "identifiedBy": [ { "type": "uri", @@ -22638,7 +21641,6 @@ "pid": "1086062159", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086062159", "identifiedBy": [ { "type": "uri", @@ -22654,7 +21656,6 @@ "pid": "1086067371", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086067371", "identifiedBy": [ { "type": "uri", @@ -22679,7 +21680,6 @@ "pid": "1086070178", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086070178", "identifiedBy": [ { "type": "uri", @@ -22695,7 +21695,6 @@ "pid": "1086074602", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086074602", "identifiedBy": [ { "type": "uri", @@ -22717,7 +21716,6 @@ "pid": "1086075218", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086075218", "identifiedBy": [ { "type": "uri", @@ -22733,7 +21731,6 @@ "pid": "1086080513", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086080513", "identifiedBy": [ { "type": "uri", @@ -22755,7 +21752,6 @@ "pid": "1086080750", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086080750", "identifiedBy": [ { "type": "uri", @@ -22779,7 +21775,6 @@ "pid": "1086082427", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086082427", "identifiedBy": [ { "type": "uri", @@ -22803,7 +21798,6 @@ "pid": "1086092775", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086092775", "identifiedBy": [ { "type": "uri", @@ -22819,7 +21813,6 @@ "pid": "1086143264", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086143264", "identifiedBy": [ { "type": "uri", @@ -22842,7 +21835,6 @@ "pid": "1086144686", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086144686", "identifiedBy": [ { "type": "uri", @@ -22859,7 +21851,6 @@ "pid": "1086144902", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086144902", "identifiedBy": [ { "type": "uri", @@ -22882,7 +21873,6 @@ "pid": "1086182871", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086182871", "identifiedBy": [ { "type": "uri", @@ -22899,7 +21889,6 @@ "pid": "1086186427", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086186427", "identifiedBy": [ { "type": "uri", @@ -22916,7 +21905,6 @@ "pid": "1086202244", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086202244", "identifiedBy": [ { "type": "uri", @@ -22939,7 +21927,6 @@ "pid": "1086206991", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086206991", "identifiedBy": [ { "type": "uri", @@ -22963,7 +21950,6 @@ "pid": "1086215982", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086215982", "identifiedBy": [ { "type": "uri", @@ -22989,7 +21975,6 @@ "pid": "1086230493", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086230493", "identifiedBy": [ { "type": "uri", @@ -23013,7 +21998,6 @@ "pid": "1086235894", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086235894", "identifiedBy": [ { "type": "uri", @@ -23035,7 +22019,6 @@ "pid": "1086271440", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086271440", "identifiedBy": [ { "type": "uri", @@ -23052,7 +22035,6 @@ "pid": "1086272587", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086272587", "identifiedBy": [ { "type": "uri", @@ -23100,7 +22082,6 @@ "pid": "1086274636", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086274636", "identifiedBy": [ { "type": "uri", @@ -23116,7 +22097,6 @@ "pid": "1086281020", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086281020", "identifiedBy": [ { "type": "uri", @@ -23140,7 +22120,6 @@ "pid": "1086292391", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086292391", "identifiedBy": [ { "type": "uri", @@ -23162,7 +22141,6 @@ "pid": "1086300475", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086300475", "identifiedBy": [ { "type": "uri", @@ -23178,7 +22156,6 @@ "pid": "1086314646", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086314646", "identifiedBy": [ { "type": "uri", @@ -23208,7 +22185,6 @@ "pid": "1086340043", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086340043", "identifiedBy": [ { "type": "uri", @@ -23230,7 +22206,6 @@ "pid": "1086373170", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086373170", "identifiedBy": [ { "type": "uri", @@ -23253,7 +22228,6 @@ "pid": "1086413520", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086413520", "identifiedBy": [ { "type": "uri", @@ -23274,7 +22248,6 @@ "pid": "1086431685", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086431685", "identifiedBy": [ { "type": "uri", @@ -23302,7 +22275,6 @@ "pid": "1086431855", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086431855", "identifiedBy": [ { "type": "uri", @@ -23325,7 +22297,6 @@ "pid": "1086433114", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086433114", "identifiedBy": [ { "type": "uri", @@ -23347,7 +22318,6 @@ "pid": "1086434900", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086434900", "identifiedBy": [ { "type": "uri", @@ -23369,7 +22339,6 @@ "pid": "1086437500", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086437500", "identifiedBy": [ { "type": "uri", @@ -23388,7 +22357,6 @@ "pid": "1086443640", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086443640", "identifiedBy": [ { "type": "uri", @@ -23404,7 +22372,6 @@ "pid": "1086444361", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086444361", "identifiedBy": [ { "type": "uri", @@ -23432,7 +22399,6 @@ "pid": "1086469747", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086469747", "identifiedBy": [ { "type": "uri", @@ -23449,7 +22415,6 @@ "pid": "1086480686", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086480686", "identifiedBy": [ { "type": "uri", @@ -23466,7 +22431,6 @@ "pid": "108649282X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/108649282X", "identifiedBy": [ { "type": "uri", @@ -23485,7 +22449,6 @@ "pid": "1086503910", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086503910", "identifiedBy": [ { "type": "uri", @@ -23512,7 +22475,6 @@ "pid": "1086511239", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086511239", "identifiedBy": [ { "type": "uri", @@ -23534,7 +22496,6 @@ "pid": "1086545605", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086545605", "identifiedBy": [ { "type": "uri", @@ -23558,7 +22519,6 @@ "pid": "1086545869", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086545869", "identifiedBy": [ { "type": "uri", @@ -23577,7 +22537,6 @@ "pid": "1086572882", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086572882", "identifiedBy": [ { "type": "uri", @@ -23598,7 +22557,6 @@ "pid": "1086591453", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086591453", "identifiedBy": [ { "type": "uri", @@ -23620,7 +22578,6 @@ "pid": "1086599594", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086599594", "identifiedBy": [ { "type": "uri", @@ -23641,7 +22598,6 @@ "pid": "1086646843", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086646843", "identifiedBy": [ { "type": "uri", @@ -23663,7 +22619,6 @@ "pid": "1086671775", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086671775", "identifiedBy": [ { "type": "uri", @@ -23688,7 +22643,6 @@ "pid": "1086700902", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086700902", "identifiedBy": [ { "type": "uri", @@ -23711,7 +22665,6 @@ "pid": "1086728939", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086728939", "identifiedBy": [ { "type": "uri", @@ -23727,7 +22680,6 @@ "pid": "1086730003", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086730003", "identifiedBy": [ { "type": "uri", @@ -23743,7 +22695,6 @@ "pid": "1086746554", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086746554", "identifiedBy": [ { "type": "uri", @@ -23765,7 +22716,6 @@ "pid": "1086766326", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086766326", "identifiedBy": [ { "type": "uri", @@ -23781,7 +22731,6 @@ "pid": "1086780884", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086780884", "identifiedBy": [ { "type": "uri", @@ -23805,7 +22754,6 @@ "pid": "1086783476", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086783476", "identifiedBy": [ { "type": "uri", @@ -23821,7 +22769,6 @@ "pid": "1086783492", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086783492", "identifiedBy": [ { "type": "uri", @@ -23837,7 +22784,6 @@ "pid": "1086814347", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086814347", "identifiedBy": [ { "type": "uri", @@ -23861,7 +22807,6 @@ "pid": "1086828542", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086828542", "identifiedBy": [ { "type": "uri", @@ -23877,7 +22822,6 @@ "pid": "1086839668", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086839668", "identifiedBy": [ { "type": "uri", @@ -23899,7 +22843,6 @@ "pid": "1086844092", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086844092", "identifiedBy": [ { "type": "uri", @@ -23915,7 +22858,6 @@ "pid": "108685604X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/108685604X", "identifiedBy": [ { "type": "uri", @@ -23931,7 +22873,6 @@ "pid": "1086971531", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1086971531", "identifiedBy": [ { "type": "uri", @@ -23954,7 +22895,6 @@ "pid": "1087157226", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1087157226", "identifiedBy": [ { "type": "uri", @@ -23988,7 +22928,6 @@ "pid": "1087161088", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1087161088", "identifiedBy": [ { "type": "uri", @@ -24004,7 +22943,6 @@ "pid": "1087202949", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1087202949", "identifiedBy": [ { "type": "uri", @@ -24020,7 +22958,6 @@ "pid": "1087258685", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1087258685", "identifiedBy": [ { "type": "uri", @@ -24036,7 +22973,6 @@ "pid": "1087265827", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1087265827", "identifiedBy": [ { "type": "uri", @@ -24060,7 +22996,6 @@ "pid": "1087266157", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1087266157", "identifiedBy": [ { "type": "uri", @@ -24084,7 +23019,6 @@ "pid": "1087273897", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1087273897", "identifiedBy": [ { "type": "uri", @@ -24132,7 +23066,6 @@ "pid": "1087296900", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1087296900", "identifiedBy": [ { "type": "uri", @@ -24155,7 +23088,6 @@ "pid": "1087307619", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1087307619", "identifiedBy": [ { "type": "uri", @@ -24177,7 +23109,6 @@ "pid": "1087316928", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1087316928", "identifiedBy": [ { "type": "uri", @@ -24199,7 +23130,6 @@ "pid": "1087324378", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1087324378", "identifiedBy": [ { "type": "uri", @@ -24221,7 +23151,6 @@ "pid": "1087327822", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1087327822", "identifiedBy": [ { "type": "uri", @@ -24244,7 +23173,6 @@ "pid": "1087335108", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1087335108", "identifiedBy": [ { "type": "uri", @@ -24266,7 +23194,6 @@ "pid": "1087354226", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1087354226", "identifiedBy": [ { "type": "uri", @@ -24296,7 +23223,6 @@ "pid": "1087364086", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1087364086", "identifiedBy": [ { "type": "uri", @@ -24320,7 +23246,6 @@ "pid": "1087368367", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1087368367", "identifiedBy": [ { "type": "uri", @@ -24344,7 +23269,6 @@ "pid": "1087381363", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1087381363", "identifiedBy": [ { "type": "uri", @@ -24378,7 +23302,6 @@ "pid": "1087450594", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1087450594", "identifiedBy": [ { "type": "uri", @@ -24394,7 +23317,6 @@ "pid": "1087461731", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1087461731", "identifiedBy": [ { "type": "uri", @@ -24410,7 +23332,6 @@ "pid": "1087515092", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1087515092", "identifiedBy": [ { "type": "uri", @@ -24445,7 +23366,6 @@ "pid": "1087538092", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1087538092", "identifiedBy": [ { "type": "uri", @@ -24464,7 +23384,6 @@ "pid": "1087545471", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1087545471", "identifiedBy": [ { "type": "uri", @@ -24480,7 +23399,6 @@ "pid": "108756171X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/108756171X", "identifiedBy": [ { "type": "uri", @@ -24496,7 +23414,6 @@ "pid": "1087563429", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1087563429", "identifiedBy": [ { "type": "uri", @@ -24520,7 +23437,6 @@ "pid": "1087600936", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1087600936", "identifiedBy": [ { "type": "uri", @@ -24536,7 +23452,6 @@ "pid": "1087603781", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1087603781", "identifiedBy": [ { "type": "uri", @@ -24552,7 +23467,6 @@ "pid": "1088444008", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1088444008", "identifiedBy": [ { "type": "uri", @@ -24571,7 +23485,6 @@ "md5": "39fdf904eec8ef8cf7e1b93bed2f9a1d", "pid": "1088579485", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1088579485", "identifiedBy": [ { "type": "uri", @@ -24598,7 +23511,6 @@ "pid": "1088801498", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1088801498", "identifiedBy": [ { "type": "uri", @@ -24615,7 +23527,6 @@ "md5": "48e4ca6bfbbd1c9d1f225214b5f70c85", "pid": "1089143001", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1089143001", "identifiedBy": [ { "type": "uri", @@ -24637,7 +23548,6 @@ "md5": "aae8981007b4d6bab012167dc978e624", "pid": "1089160305", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1089160305", "identifiedBy": [ { "type": "uri", @@ -24667,7 +23577,6 @@ "md5": "d1fc56fac60a8a0c605eb6d87863e95b", "pid": "1089227736", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1089227736", "identifiedBy": [ { "type": "uri", @@ -24686,7 +23595,6 @@ "md5": "7e7872e0d942e87aa5c8657cc7d01339", "pid": "1089267177", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1089267177", "identifiedBy": [ { "type": "uri", @@ -24710,7 +23618,6 @@ "md5": "599b339731a60a4e686824f95ea6d0a2", "pid": "1089282826", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1089282826", "identifiedBy": [ { "type": "uri", @@ -24736,7 +23643,6 @@ "pid": "1089334826", "type": "bf:Person", "qualifier": "Gra\u0308zist in Oxford", - "identifier": "http://d-nb.info/gnd/1089334826", "identifiedBy": [ { "type": "uri", @@ -24758,7 +23664,6 @@ "md5": "1fd516813eff1eb22bf9709fb3cc6ef0", "pid": "1089339771", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1089339771", "identifiedBy": [ { "type": "uri", @@ -24785,7 +23690,6 @@ "md5": "147933c3f86368bee93bfd1b36e0e76f", "pid": "1089387830", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1089387830", "identifiedBy": [ { "type": "uri", @@ -24804,7 +23708,6 @@ "md5": "6684bf5d51c24fd05c34ced58f0102fa", "pid": "1089390971", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1089390971", "identifiedBy": [ { "type": "uri", @@ -24823,7 +23726,6 @@ "md5": "59696d45705b3c430a51e919fb9c18bc", "pid": "1089392907", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1089392907", "identifiedBy": [ { "type": "uri", @@ -24841,7 +23743,6 @@ "pid": "1089443617", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1089443617", "identifiedBy": [ { "type": "uri", @@ -24861,7 +23762,6 @@ "md5": "cac4b7fad969f4a9ec037a64cfa3cbe2", "pid": "1089455437", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1089455437", "identifiedBy": [ { "type": "uri", @@ -24887,7 +23787,6 @@ "md5": "6a1a036498873bc2a7f23f16aade61d3", "pid": "1089460732", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1089460732", "identifiedBy": [ { "type": "uri", @@ -24909,7 +23808,6 @@ "md5": "3ac5c5344af10dd82fc9bb155ac8fb30", "pid": "1089477015", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1089477015", "identifiedBy": [ { "type": "uri", @@ -24937,7 +23835,6 @@ "md5": "d23ad5fc87ceb2ee5f7a7253a3aea608", "pid": "1089511663", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1089511663", "identifiedBy": [ { "type": "uri", @@ -24961,7 +23858,6 @@ "md5": "4f6ca89b6c32c72b6c1b20cfd9862baa", "pid": "108951431X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/108951431X", "identifiedBy": [ { "type": "uri", @@ -24981,7 +23877,6 @@ "md5": "f3e177653852099e3ebf5671a564ad27", "pid": "1089572670", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1089572670", "identifiedBy": [ { "type": "uri", @@ -25009,7 +23904,6 @@ "md5": "ff0dae57799eab6cb0da441de1d97b4f", "pid": "1089574282", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1089574282", "identifiedBy": [ { "type": "uri", @@ -25029,7 +23923,6 @@ "md5": "9592d0b2b42a48b37dfa8f1ff0089703", "pid": "1089580274", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1089580274", "identifiedBy": [ { "type": "uri", @@ -25050,7 +23943,6 @@ "md5": "40d50d58ff2b9164cf554bc9ad4f722e", "pid": "1089589018", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1089589018", "identifiedBy": [ { "type": "uri", @@ -25075,7 +23967,6 @@ "md5": "10680cdef541d8cc0bfd63fae2433a26", "pid": "1089604890", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1089604890", "identifiedBy": [ { "type": "uri", @@ -25101,7 +23992,6 @@ "md5": "d218c2a087cf782b4e2d52034486f244", "pid": "1089638353", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1089638353", "identifiedBy": [ { "type": "uri", @@ -25124,7 +24014,6 @@ "md5": "0178531652235cba4a4f74f7ee5066c7", "pid": "1089642393", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1089642393", "identifiedBy": [ { "type": "uri", @@ -25148,7 +24037,6 @@ "md5": "0b43a788115e25b1909d1880325e382a", "pid": "1089664281", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1089664281", "identifiedBy": [ { "type": "uri", @@ -25173,7 +24061,6 @@ "md5": "3b41a66150473d904994b7f09a250cca", "pid": "1089664389", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1089664389", "identifiedBy": [ { "type": "uri", @@ -25198,7 +24085,6 @@ "md5": "554eb9dfe602784cf5540813fc71fc21", "pid": "1089666802", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1089666802", "identifiedBy": [ { "type": "uri", @@ -25216,7 +24102,6 @@ "md5": "f7f7a26393b29f074b8f54226d758edb", "pid": "1089669003", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1089669003", "identifiedBy": [ { "type": "uri", @@ -25236,7 +24121,6 @@ "md5": "a49840417b7ca1c6017e75f1d11b77fa", "pid": "1089693907", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1089693907", "identifiedBy": [ { "type": "uri", @@ -25287,7 +24171,6 @@ "md5": "f50f1f4b2b2c0f7707fe9047c976501a", "pid": "1089702655", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1089702655", "identifiedBy": [ { "type": "uri", @@ -25318,7 +24201,6 @@ "md5": "fd8639726a961e9ed13273ac2af37c0c", "pid": "1089766106", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1089766106", "identifiedBy": [ { "type": "uri", @@ -25335,7 +24217,6 @@ "md5": "ba7d715ed3dfb9f476c0517536759c01", "pid": "1089790732", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1089790732", "identifiedBy": [ { "type": "uri", @@ -25362,7 +24243,6 @@ "md5": "eb3f1b468fafa5cdbde3630543577574", "pid": "1089841035", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1089841035", "identifiedBy": [ { "type": "uri", @@ -25384,7 +24264,6 @@ "md5": "1116e601098b0db4c0f4477ca7b49859", "pid": "1089904703", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1089904703", "identifiedBy": [ { "type": "uri", @@ -25405,7 +24284,6 @@ "pid": "1090478615", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1090478615", "identifiedBy": [ { "type": "uri", @@ -25429,7 +24307,6 @@ "pid": "1090479816", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1090479816", "identifiedBy": [ { "type": "uri", @@ -25454,7 +24331,6 @@ "pid": "1090697538", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1090697538", "identifiedBy": [ { "type": "uri", @@ -25478,7 +24354,6 @@ "pid": "1090699522", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1090699522", "identifiedBy": [ { "type": "uri", @@ -25500,7 +24375,6 @@ "pid": "1090752598", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1090752598", "identifiedBy": [ { "type": "uri", @@ -25526,7 +24400,6 @@ "pid": "1090809786", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1090809786", "identifiedBy": [ { "type": "uri", @@ -25544,7 +24417,6 @@ "pid": "1091183546", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1091183546", "identifiedBy": [ { "type": "uri", @@ -25560,7 +24432,6 @@ "pid": "109123471X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/109123471X", "identifiedBy": [ { "type": "uri", @@ -25576,7 +24447,6 @@ "pid": "1091235007", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1091235007", "identifiedBy": [ { "type": "uri", @@ -25598,7 +24468,6 @@ "pid": "1091238898", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1091238898", "identifiedBy": [ { "type": "uri", @@ -25614,7 +24483,6 @@ "pid": "1091451982", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1091451982", "identifiedBy": [ { "type": "uri", @@ -25636,7 +24504,6 @@ "pid": "1091613443", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1091613443", "identifiedBy": [ { "type": "uri", @@ -25662,7 +24529,6 @@ "pid": "1091651787", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1091651787", "identifiedBy": [ { "type": "uri", @@ -25678,7 +24544,6 @@ "pid": "1091678340", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1091678340", "identifiedBy": [ { "type": "uri", @@ -25694,7 +24559,6 @@ "pid": "1091697396", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1091697396", "identifiedBy": [ { "type": "uri", @@ -25710,7 +24574,6 @@ "pid": "1091697620", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1091697620", "identifiedBy": [ { "type": "uri", @@ -25726,7 +24589,6 @@ "pid": "1091698856", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1091698856", "identifiedBy": [ { "type": "uri", @@ -25742,7 +24604,6 @@ "pid": "1091702292", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1091702292", "identifiedBy": [ { "type": "uri", @@ -25758,7 +24619,6 @@ "pid": "109172251X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/109172251X", "identifiedBy": [ { "type": "uri", @@ -25780,7 +24640,6 @@ "pid": "109177918X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/109177918X", "identifiedBy": [ { "type": "uri", @@ -25804,7 +24663,6 @@ "pid": "1091785813", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1091785813", "identifiedBy": [ { "type": "uri", @@ -25820,7 +24678,6 @@ "pid": "1091786100", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1091786100", "identifiedBy": [ { "type": "uri", @@ -25836,7 +24693,6 @@ "pid": "1091792305", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1091792305", "identifiedBy": [ { "type": "uri", @@ -25862,7 +24718,6 @@ "pid": "109179331X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/109179331X", "identifiedBy": [ { "type": "uri", @@ -25886,7 +24741,6 @@ "pid": "1091822417", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1091822417", "identifiedBy": [ { "type": "uri", @@ -25902,7 +24756,6 @@ "pid": "1091849781", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1091849781", "identifiedBy": [ { "type": "uri", @@ -25924,7 +24777,6 @@ "pid": "1091883599", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1091883599", "identifiedBy": [ { "type": "uri", @@ -25946,7 +24798,6 @@ "pid": "1091897085", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1091897085", "identifiedBy": [ { "type": "uri", @@ -25974,7 +24825,6 @@ "pid": "1091907730", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1091907730", "identifiedBy": [ { "type": "uri", @@ -26002,7 +24852,6 @@ "pid": "1091936803", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1091936803", "identifiedBy": [ { "type": "uri", @@ -26036,7 +24885,6 @@ "pid": "1091959382", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1091959382", "identifiedBy": [ { "type": "uri", @@ -26070,7 +24918,6 @@ "pid": "1092040889", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1092040889", "identifiedBy": [ { "type": "uri", @@ -26086,7 +24933,6 @@ "pid": "109206639X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/109206639X", "identifiedBy": [ { "type": "uri", @@ -26120,7 +24966,6 @@ "pid": "1092274499", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1092274499", "identifiedBy": [ { "type": "uri", @@ -26136,7 +24981,6 @@ "pid": "109229578X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/109229578X", "identifiedBy": [ { "type": "uri", @@ -26159,7 +25003,6 @@ "pid": "1092297278", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1092297278", "identifiedBy": [ { "type": "uri", @@ -26187,7 +25030,6 @@ "pid": "1092349839", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1092349839", "identifiedBy": [ { "type": "uri", @@ -26209,7 +25051,6 @@ "pid": "1092417966", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1092417966", "identifiedBy": [ { "type": "uri", @@ -26225,7 +25066,6 @@ "pid": "1092457992", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1092457992", "identifiedBy": [ { "type": "uri", @@ -26251,7 +25091,6 @@ "pid": "1092493239", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1092493239", "identifiedBy": [ { "type": "uri", @@ -26267,7 +25106,6 @@ "pid": "1092495266", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1092495266", "identifiedBy": [ { "type": "uri", @@ -26289,7 +25127,6 @@ "pid": "1092508333", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1092508333", "identifiedBy": [ { "type": "uri", @@ -26313,7 +25150,6 @@ "pid": "1092524398", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1092524398", "identifiedBy": [ { "type": "uri", @@ -26329,7 +25165,6 @@ "pid": "1092551271", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1092551271", "identifiedBy": [ { "type": "uri", @@ -26345,7 +25180,6 @@ "pid": "1093232943", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1093232943", "identifiedBy": [ { "type": "uri", @@ -26360,7 +25194,6 @@ "md5": "6d34095626589b45c8d18edd59797f79", "pid": "1095512498", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1095512498", "identifiedBy": [ { "type": "uri", @@ -26381,7 +25214,6 @@ "language": [ "ger" ], - "identifier": "http://d-nb.info/gnd/1095673300", "identifiedBy": [ { "type": "uri", @@ -26411,7 +25243,6 @@ "pid": "1095685007", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1095685007", "identifiedBy": [ { "type": "uri", @@ -26436,7 +25267,6 @@ "md5": "772f9df2b4802d4c2a72832a78e29f76", "pid": "1095792091", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1095792091", "identifiedBy": [ { "type": "uri", @@ -26453,7 +25283,6 @@ "pid": "1095794957", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1095794957", "identifiedBy": [ { "type": "uri", @@ -26468,7 +25297,6 @@ "md5": "fefad15089d017db270ebd27af753085", "pid": "109579762X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/109579762X", "identifiedBy": [ { "type": "uri", @@ -26493,7 +25321,6 @@ "md5": "63896fb2f729313bf8702e08914ea43e", "pid": "1096172224", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1096172224", "identifiedBy": [ { "type": "uri", @@ -26522,7 +25349,6 @@ "pid": "1096247151", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1096247151", "identifiedBy": [ { "type": "uri", @@ -26540,7 +25366,6 @@ "pid": "1096338572", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1096338572", "identifiedBy": [ { "type": "uri", @@ -26557,7 +25382,6 @@ "pid": "1096509253", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1096509253", "identifiedBy": [ { "type": "uri", @@ -26580,7 +25404,6 @@ "md5": "02a77ed82934703375b1f1d71f38e81d", "pid": "1097290735", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1097290735", "identifiedBy": [ { "type": "uri", @@ -26597,7 +25420,6 @@ "md5": "ca45e580b007e90f08b403e5ba5928ec", "pid": "1097642550", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1097642550", "identifiedBy": [ { "type": "uri", @@ -26622,7 +25444,6 @@ "pid": "1097758591", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1097758591", "identifiedBy": [ { "type": "uri", @@ -26648,7 +25469,6 @@ "md5": "423bdbff6dcc26a15b434d2ce5732648", "pid": "109790715", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/109790715", "identifiedBy": [ { "type": "uri", @@ -26670,7 +25490,6 @@ "pid": "1098168984", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1098168984", "identifiedBy": [ { "type": "uri", @@ -26700,7 +25519,6 @@ "pid": "1098212460", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1098212460", "identifiedBy": [ { "type": "uri", @@ -26723,7 +25541,6 @@ "pid": "109946577X", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/109946577X", "identifiedBy": [ { "type": "uri", @@ -26740,7 +25557,6 @@ "md5": "b84b22574c8952454e4febfc2c3a179a", "pid": "1099467756", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1099467756", "identifiedBy": [ { "type": "uri", @@ -26761,7 +25577,6 @@ "pid": "1099730872", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1099730872", "identifiedBy": [ { "type": "uri", @@ -26786,7 +25601,6 @@ "pid": "1099924197", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1099924197", "identifiedBy": [ { "type": "uri", @@ -26803,7 +25617,6 @@ "md5": "89184fe231ff4a079332ff1c3c7b0703", "pid": "1100173900", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1100173900", "identifiedBy": [ { "type": "uri", @@ -26824,7 +25637,6 @@ "pid": "1100326294", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1100326294", "identifiedBy": [ { "type": "uri", @@ -26841,7 +25653,6 @@ "pid": "1100545808", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1100545808", "identifiedBy": [ { "type": "uri", @@ -26862,7 +25673,6 @@ "pid": "1100546359", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1100546359", "identifiedBy": [ { "type": "uri", @@ -26878,7 +25688,6 @@ "pid": "1100694404", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1100694404", "identifiedBy": [ { "type": "uri", @@ -26900,7 +25709,6 @@ "pid": "1101362081", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1101362081", "identifiedBy": [ { "type": "uri", @@ -26927,7 +25735,6 @@ "pid": "1101364238", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1101364238", "identifiedBy": [ { "type": "uri", @@ -26951,7 +25758,6 @@ "pid": "1101375183", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1101375183", "identifiedBy": [ { "type": "uri", @@ -26968,7 +25774,6 @@ "pid": "1101470003", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1101470003", "identifiedBy": [ { "type": "uri", @@ -26985,7 +25790,6 @@ "pid": "1102164240", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1102164240", "identifiedBy": [ { "type": "uri", @@ -27008,7 +25812,6 @@ "pid": "1102224820", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1102224820", "identifiedBy": [ { "type": "uri", @@ -27025,7 +25828,6 @@ "md5": "29d9ebccd8084a341e551013155ba890", "pid": "110234979", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/110234979", "identifiedBy": [ { "type": "uri", @@ -27052,7 +25854,6 @@ "pid": "1102950661", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1102950661", "identifiedBy": [ { "type": "uri", @@ -27070,7 +25871,6 @@ "pid": "1103145347", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1103145347", "identifiedBy": [ { "type": "uri", @@ -27090,7 +25890,6 @@ "pid": "1103471996", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1103471996", "identifiedBy": [ { "type": "uri", @@ -27114,7 +25913,6 @@ "md5": "07170ada4a765f7a237b6a06f570b97a", "pid": "1103491768", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1103491768", "identifiedBy": [ { "type": "uri", @@ -27131,7 +25929,6 @@ "md5": "8c3199d0ec0b3b3b40aa90c3c4c4f08b", "pid": "1103855794", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1103855794", "identifiedBy": [ { "type": "uri", @@ -27149,7 +25946,6 @@ "pid": "1104130424", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1104130424", "identifiedBy": [ { "type": "uri", @@ -27171,7 +25967,6 @@ "pid": "1104279754", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1104279754", "identifiedBy": [ { "type": "uri", @@ -27203,7 +25998,6 @@ "md5": "2de26e0ad112573abc9bd9ccee0e19f3", "pid": "1104394499", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1104394499", "identifiedBy": [ { "type": "uri", @@ -27223,7 +26017,6 @@ "pid": "1104971259", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1104971259", "identifiedBy": [ { "type": "uri", @@ -27254,7 +26047,6 @@ "pid": "1105435075", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1105435075", "identifiedBy": [ { "type": "uri", @@ -27276,7 +26068,6 @@ "md5": "d9dc8fca0002523eb1b73023c7711e91", "pid": "1106144244", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1106144244", "identifiedBy": [ { "type": "uri", @@ -27301,7 +26092,6 @@ "md5": "55647752c9612f4eb54e3ff37043b523", "pid": "1106568257", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1106568257", "identifiedBy": [ { "type": "uri", @@ -27331,7 +26121,6 @@ "pid": "110674057", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/110674057", "identifiedBy": [ { "type": "uri", @@ -27357,7 +26146,6 @@ "pid": "1107220025", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1107220025", "identifiedBy": [ { "type": "uri", @@ -27373,7 +26161,6 @@ "md5": "71b49b42f87390276d7bbf170d184223", "pid": "1108588271", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1108588271", "identifiedBy": [ { "type": "uri", @@ -27392,7 +26179,6 @@ "md5": "bb56723c545c2bd153c3db664767e6ef", "pid": "1109102283", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1109102283", "identifiedBy": [ { "type": "uri", @@ -27422,7 +26208,6 @@ "pid": "1109796900", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1109796900", "identifiedBy": [ { "type": "uri", @@ -27447,7 +26232,6 @@ "md5": "9e50eaed60038a1b2d45baa2b11de1e5", "pid": "1109931689", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1109931689", "identifiedBy": [ { "type": "uri", @@ -27471,7 +26255,6 @@ "pid": "1110040970", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1110040970", "identifiedBy": [ { "type": "uri", @@ -27496,7 +26279,6 @@ "pid": "1111133735", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1111133735", "identifiedBy": [ { "type": "uri", @@ -27522,7 +26304,6 @@ "pid": "1111902321", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1111902321", "identifiedBy": [ { "type": "uri", @@ -27547,7 +26328,6 @@ "md5": "fc838a0823fb2475cf494b1c563cd402", "pid": "1112571647", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1112571647", "identifiedBy": [ { "type": "uri", @@ -27566,7 +26346,6 @@ "md5": "7d1eb8e099471d80fc9bd7bf6056e56b", "pid": "111263638", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/111263638", "identifiedBy": [ { "type": "uri", @@ -27593,7 +26372,6 @@ "md5": "8faf591672d18bd249a9fbd5d33aba7f", "pid": "1112747885", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1112747885", "identifiedBy": [ { "type": "uri", @@ -27614,7 +26392,6 @@ "pid": "111303002X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/111303002X", "identifiedBy": [ { "type": "uri", @@ -27630,7 +26407,6 @@ "md5": "d15924dfc77f7d910e387e66ef450a46", "pid": "1113214309", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1113214309", "identifiedBy": [ { "type": "uri", @@ -27652,7 +26428,6 @@ "pid": "1114419125", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1114419125", "identifiedBy": [ { "type": "uri", @@ -27671,7 +26446,6 @@ "md5": "87b121fd71ccf83c9b57718413a58f25", "pid": "1114601357", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1114601357", "identifiedBy": [ { "type": "uri", @@ -27689,7 +26463,6 @@ "pid": "1114680176", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1114680176", "identifiedBy": [ { "type": "uri", @@ -27709,7 +26482,6 @@ "pid": "111476518X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/111476518X", "identifiedBy": [ { "type": "uri", @@ -27733,7 +26505,6 @@ "pid": "1114895288", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1114895288", "identifiedBy": [ { "type": "uri", @@ -27753,7 +26524,6 @@ "md5": "068de9884e211e97f983ac3008f69a22", "pid": "1114895318", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1114895318", "identifiedBy": [ { "type": "uri", @@ -27769,7 +26539,6 @@ "md5": "c763bdc21014c1c15a6b490cbb2e93e3", "pid": "1115670395", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1115670395", "identifiedBy": [ { "type": "uri", @@ -27786,7 +26555,6 @@ "pid": "1116350033", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1116350033", "identifiedBy": [ { "type": "uri", @@ -27808,7 +26576,6 @@ "md5": "50032c05deed4c4d1299567f01ade286", "pid": "1116493586", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1116493586", "identifiedBy": [ { "type": "uri", @@ -27824,7 +26591,6 @@ "md5": "22cbb9251e9dc305fb178c1e57c5f38d", "pid": "1116967383", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1116967383", "identifiedBy": [ { "type": "uri", @@ -27845,7 +26611,6 @@ "md5": "b9ac857ea3c4ab95c41c9cffe0fe8492", "pid": "1116977273", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1116977273", "identifiedBy": [ { "type": "uri", @@ -27868,7 +26633,6 @@ "md5": "6c3677be67acfe2831ae9edac4bd4ec6", "pid": "1116983575", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1116983575", "identifiedBy": [ { "type": "uri", @@ -27890,7 +26654,6 @@ "pid": "111715677X", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/111715677X", "identifiedBy": [ { "type": "uri", @@ -27917,7 +26680,6 @@ "md5": "fe61b0984f59d79a8dead84a5fa0061e", "pid": "111716151X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/111716151X", "identifiedBy": [ { "type": "uri", @@ -27934,7 +26696,6 @@ "pid": "1117731855", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1117731855", "identifiedBy": [ { "type": "uri", @@ -27953,7 +26714,6 @@ "md5": "301d098d7a9811072e68a28b789ec3bc", "pid": "111783946X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/111783946X", "identifiedBy": [ { "type": "uri", @@ -27980,7 +26740,6 @@ "md5": "2319b27ce54860e949bf1cc64c5659ab", "pid": "111787238", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/111787238", "identifiedBy": [ { "type": "uri", @@ -27998,7 +26757,6 @@ "pid": "1119264243", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1119264243", "identifiedBy": [ { "type": "uri", @@ -28023,7 +26781,6 @@ "md5": "d4bab95764359108ea6f36605b5f153a", "pid": "1120447089", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1120447089", "identifiedBy": [ { "type": "uri", @@ -28041,7 +26798,6 @@ "pid": "1120533260", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1120533260", "identifiedBy": [ { "type": "uri", @@ -28057,7 +26813,6 @@ "pid": "1120533929", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1120533929", "identifiedBy": [ { "type": "uri", @@ -28079,7 +26834,6 @@ "md5": "40b452ce047923dc829df66f79a7ce75", "pid": "1120736277", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1120736277", "identifiedBy": [ { "type": "uri", @@ -28099,7 +26853,6 @@ "pid": "1120815401", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1120815401", "identifiedBy": [ { "type": "uri", @@ -28125,7 +26878,6 @@ "pid": "1121320910", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1121320910", "identifiedBy": [ { "type": "uri", @@ -28161,7 +26913,6 @@ "pid": "1121540562", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1121540562", "identifiedBy": [ { "type": "uri", @@ -28191,7 +26942,6 @@ "pid": "1122052537", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1122052537", "identifiedBy": [ { "type": "uri", @@ -28218,7 +26968,6 @@ "md5": "ddc07d3af6e738ab7d1b1bbc530ee137", "pid": "1122056257", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1122056257", "identifiedBy": [ { "type": "uri", @@ -28242,7 +26991,6 @@ "md5": "e2252656b263cdb550bd462cff4a7692", "pid": "1122060041", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1122060041", "identifiedBy": [ { "type": "uri", @@ -28262,7 +27010,6 @@ "pid": "1122486812", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1122486812", "identifiedBy": [ { "type": "uri", @@ -28280,7 +27027,6 @@ "pid": "1122489684", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1122489684", "identifiedBy": [ { "type": "uri", @@ -28303,7 +27049,6 @@ "pid": "1122490267", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1122490267", "identifiedBy": [ { "type": "uri", @@ -28331,7 +27076,6 @@ "pid": "1123156344", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1123156344", "identifiedBy": [ { "type": "uri", @@ -28357,7 +27101,6 @@ "pid": "1123162263", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1123162263", "identifiedBy": [ { "type": "uri", @@ -28383,7 +27126,6 @@ "md5": "e15664edd9dfab9df6096b3b142d9b8c", "pid": "1123172706", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1123172706", "identifiedBy": [ { "type": "uri", @@ -28409,7 +27151,6 @@ "md5": "db4ea4d0a99cd9c03bf4aeaf317bc28d", "pid": "1123512752", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1123512752", "identifiedBy": [ { "type": "uri", @@ -28434,7 +27175,6 @@ "md5": "df318ea2f3d0a369243a43f1e5ad799e", "pid": "1123752990", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1123752990", "identifiedBy": [ { "type": "uri", @@ -28451,7 +27191,6 @@ "pid": "112427748X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/112427748X", "identifiedBy": [ { "type": "uri", @@ -28466,7 +27205,6 @@ "md5": "2a9831d195a8ef2665a6f859f664efc6", "pid": "1125914920", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1125914920", "identifiedBy": [ { "type": "uri", @@ -28491,7 +27229,6 @@ "md5": "a73b523f6daeab64f56da971a4a4d1bb", "pid": "1126056839", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1126056839", "identifiedBy": [ { "type": "uri", @@ -28511,7 +27248,6 @@ "pid": "1126065013", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1126065013", "identifiedBy": [ { "type": "uri", @@ -28537,7 +27273,6 @@ "pid": "1126071935", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1126071935", "identifiedBy": [ { "type": "uri", @@ -28558,7 +27293,6 @@ "md5": "0361f412a1f190f090d5a4a2b07afa77", "pid": "1127773151", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1127773151", "identifiedBy": [ { "type": "uri", @@ -28579,7 +27313,6 @@ "md5": "3a5e3b3a5388e0006b7294c45272b6eb", "pid": "1129898709", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1129898709", "identifiedBy": [ { "type": "uri", @@ -28600,7 +27333,6 @@ "pid": "1129905373", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1129905373", "identifiedBy": [ { "type": "uri", @@ -28619,7 +27351,6 @@ "md5": "3e6734fd79890b0509b45097b3170608", "pid": "1130192466", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1130192466", "identifiedBy": [ { "type": "uri", @@ -28645,7 +27376,6 @@ "pid": "1130814122", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1130814122", "identifiedBy": [ { "type": "uri", @@ -28668,7 +27398,6 @@ "pid": "1130817318", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1130817318", "identifiedBy": [ { "type": "uri", @@ -28690,7 +27419,6 @@ "pid": "1131175786", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1131175786", "identifiedBy": [ { "type": "uri", @@ -28710,7 +27438,6 @@ "pid": "1131199715", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1131199715", "identifiedBy": [ { "type": "uri", @@ -28731,7 +27458,6 @@ "pid": "113126262X", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/113126262X", "identifiedBy": [ { "type": "uri", @@ -28759,7 +27485,6 @@ "pid": "1131276868", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1131276868", "identifiedBy": [ { "type": "uri", @@ -28785,7 +27510,6 @@ "language": [ "ger" ], - "identifier": "http://d-nb.info/gnd/1131574338", "identifiedBy": [ { "type": "uri", @@ -28802,7 +27526,6 @@ "pid": "1131715187", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1131715187", "identifiedBy": [ { "type": "uri", @@ -28826,7 +27549,6 @@ "md5": "44cfb6828785267c46b6926db33ebfd4", "pid": "1132157781", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1132157781", "identifiedBy": [ { "type": "uri", @@ -28843,7 +27565,6 @@ "pid": "1132540623", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1132540623", "identifiedBy": [ { "type": "uri", @@ -28867,7 +27588,6 @@ "pid": "113454228", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/113454228", "identifiedBy": [ { "type": "uri", @@ -28893,7 +27613,6 @@ "pid": "1135284865", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1135284865", "identifiedBy": [ { "type": "uri", @@ -28917,7 +27636,6 @@ "pid": "1135632049", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1135632049", "identifiedBy": [ { "type": "uri", @@ -28946,7 +27664,6 @@ "pid": "1135754381", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1135754381", "identifiedBy": [ { "type": "uri", @@ -28970,7 +27687,6 @@ "pid": "1136441034", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1136441034", "identifiedBy": [ { "type": "uri", @@ -28986,7 +27702,6 @@ "pid": "113660216X", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/113660216X", "identifiedBy": [ { "type": "uri", @@ -29007,7 +27722,6 @@ "md5": "4849faafbbcb110c200c3294d8430554", "pid": "1137394390", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1137394390", "identifiedBy": [ { "type": "uri", @@ -29026,7 +27740,6 @@ "pid": "1137496746", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1137496746", "identifiedBy": [ { "type": "uri", @@ -29050,7 +27763,6 @@ "pid": "1137635371", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1137635371", "identifiedBy": [ { "type": "uri", @@ -29076,7 +27788,6 @@ "pid": "1137723467", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1137723467", "identifiedBy": [ { "type": "uri", @@ -29099,7 +27810,6 @@ "pid": "1137735988", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1137735988", "identifiedBy": [ { "type": "uri", @@ -29128,7 +27838,6 @@ "pid": "1137839392", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1137839392", "identifiedBy": [ { "type": "uri", @@ -29159,7 +27868,6 @@ "pid": "1137872462", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1137872462", "identifiedBy": [ { "type": "uri", @@ -29179,7 +27887,6 @@ "pid": "1137888660", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1137888660", "identifiedBy": [ { "type": "uri", @@ -29197,7 +27904,6 @@ "pid": "1138059102", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1138059102", "identifiedBy": [ { "type": "uri", @@ -29228,7 +27934,6 @@ "pid": "1138213659", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1138213659", "identifiedBy": [ { "type": "uri", @@ -29244,7 +27949,6 @@ "md5": "ad8fa1e0e6fbde35aa5f41b0cdfd42d8", "pid": "113918055X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/113918055X", "identifiedBy": [ { "type": "uri", @@ -29262,7 +27966,6 @@ "pid": "1139311719", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1139311719", "identifiedBy": [ { "type": "uri", @@ -29289,7 +27992,6 @@ "pid": "1139400851", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1139400851", "identifiedBy": [ { "type": "uri", @@ -29306,7 +28008,6 @@ "md5": "cb609aed6c21356abdf4cfd3cc16d7da", "pid": "1139404660", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1139404660", "identifiedBy": [ { "type": "uri", @@ -29338,7 +28039,6 @@ "pid": "1139496387", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1139496387", "identifiedBy": [ { "type": "uri", @@ -29355,7 +28055,6 @@ "pid": "1139509292", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1139509292", "identifiedBy": [ { "type": "uri", @@ -29373,7 +28072,6 @@ "pid": "1139789902", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1139789902", "identifiedBy": [ { "type": "uri", @@ -29400,7 +28098,6 @@ "md5": "99cf6ad22bcc08c9659db50e92b0e76f", "pid": "113997981", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/113997981", "identifiedBy": [ { "type": "uri", @@ -29426,7 +28123,6 @@ "pid": "1140050974", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1140050974", "identifiedBy": [ { "type": "uri", @@ -29447,7 +28143,6 @@ "pid": "1140075810", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1140075810", "identifiedBy": [ { "type": "uri", @@ -29466,7 +28161,6 @@ "md5": "99c7607bcce76fb207aef28b12dc2203", "pid": "1140159526", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1140159526", "identifiedBy": [ { "type": "uri", @@ -29492,7 +28186,6 @@ "md5": "62a8d96738213282e8ed06e3e5be2343", "pid": "1140439618", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1140439618", "identifiedBy": [ { "type": "uri", @@ -29509,7 +28202,6 @@ "md5": "de96cf7ab5f42e0edd0b911d245c719c", "pid": "114054635X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/114054635X", "identifiedBy": [ { "type": "uri", @@ -29526,7 +28218,6 @@ "md5": "3b159570a62793389ad9997cc0738419", "pid": "1140557696", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1140557696", "identifiedBy": [ { "type": "uri", @@ -29549,7 +28240,6 @@ "md5": "ff2471e8091ba537c3938739efbb91c3", "pid": "1140620959", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1140620959", "identifiedBy": [ { "type": "uri", @@ -29570,7 +28260,6 @@ "pid": "1141185997", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1141185997", "identifiedBy": [ { "type": "uri", @@ -29589,7 +28278,6 @@ "md5": "58a895f89cddedec497584fc41dcdb1c", "pid": "1141203960", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1141203960", "identifiedBy": [ { "type": "uri", @@ -29608,7 +28296,6 @@ "md5": "01a4c74f21ad12ba95dada06da379532", "pid": "1141331683", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1141331683", "identifiedBy": [ { "type": "uri", @@ -29624,7 +28311,6 @@ "md5": "b9c26dfaf50633172a8d40ecb851fb20", "pid": "1141410621", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1141410621", "identifiedBy": [ { "type": "uri", @@ -29652,7 +28338,6 @@ "pid": "1141815214", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1141815214", "identifiedBy": [ { "type": "uri", @@ -29669,7 +28354,6 @@ "pid": "1142191087", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1142191087", "identifiedBy": [ { "type": "uri", @@ -29691,7 +28375,6 @@ "md5": "daac91667109446443ec7de73fa9f6e9", "pid": "11425172X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/11425172X", "identifiedBy": [ { "type": "uri", @@ -29715,7 +28398,6 @@ "pid": "1142566420", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1142566420", "identifiedBy": [ { "type": "uri", @@ -29740,7 +28422,6 @@ "pid": "1143061578", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1143061578", "identifiedBy": [ { "type": "uri", @@ -29762,7 +28443,6 @@ "pid": "1143241045", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1143241045", "identifiedBy": [ { "type": "uri", @@ -29779,7 +28459,6 @@ "pid": "1143266722", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1143266722", "identifiedBy": [ { "type": "uri", @@ -29804,7 +28483,6 @@ "pid": "1143567234", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1143567234", "identifiedBy": [ { "type": "uri", @@ -29820,7 +28498,6 @@ "md5": "44ae1b3cbaa17b169e5d532d9b9118ad", "pid": "1143635876", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1143635876", "identifiedBy": [ { "type": "uri", @@ -29837,7 +28514,6 @@ "pid": "1144273307", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1144273307", "identifiedBy": [ { "type": "uri", @@ -29857,7 +28533,6 @@ "pid": "1144301130", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1144301130", "identifiedBy": [ { "type": "uri", @@ -29874,7 +28549,6 @@ "pid": "1144669049", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1144669049", "identifiedBy": [ { "type": "uri", @@ -29901,7 +28575,6 @@ "md5": "b4b6feb45ec3b7116b80c708d68e1f18", "pid": "1145344372", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1145344372", "identifiedBy": [ { "type": "uri", @@ -29917,7 +28590,6 @@ "md5": "66a27d95f654d26f149f79b1c5e8fd6e", "pid": "1145352111", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1145352111", "identifiedBy": [ { "type": "uri", @@ -29933,7 +28605,6 @@ "md5": "6a3564316909f36a696194de7c9e8d9b", "pid": "114535601X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/114535601X", "identifiedBy": [ { "type": "uri", @@ -29961,7 +28632,6 @@ "md5": "2ef37fda3acda4d2a8ad65fd38d74d53", "pid": "1145375154", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1145375154", "identifiedBy": [ { "type": "uri", @@ -29977,7 +28647,6 @@ "md5": "11b7f24155f9146e43d1cced328286a1", "pid": "1145390439", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1145390439", "identifiedBy": [ { "type": "uri", @@ -29993,7 +28662,6 @@ "md5": "a31a3560c1a6757f2dcdf66fa8150e54", "pid": "1145399924", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1145399924", "identifiedBy": [ { "type": "uri", @@ -30009,7 +28677,6 @@ "md5": "c8742f6f6bee39e6bbb579046a81843d", "pid": "1145435904", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1145435904", "identifiedBy": [ { "type": "uri", @@ -30031,7 +28698,6 @@ "md5": "cd9a69e9e725e3e62b5e2bddd859d22d", "pid": "114546193X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/114546193X", "identifiedBy": [ { "type": "uri", @@ -30047,7 +28713,6 @@ "md5": "d0a990cde5719265965902b8131d513b", "pid": "1145475299", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1145475299", "identifiedBy": [ { "type": "uri", @@ -30068,7 +28733,6 @@ "pid": "1145486533", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1145486533", "identifiedBy": [ { "type": "uri", @@ -30094,7 +28758,6 @@ "md5": "6bfd022e5146f8b9d156afac9f815a1e", "pid": "1145519989", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1145519989", "identifiedBy": [ { "type": "uri", @@ -30110,7 +28773,6 @@ "md5": "a53458b0d3aa531e8c81c4b77733dbd2", "pid": "1145537650", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1145537650", "identifiedBy": [ { "type": "uri", @@ -30132,7 +28794,6 @@ "md5": "436cce1bd5772bd7c5390e731fd8d13b", "pid": "1145563104", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1145563104", "identifiedBy": [ { "type": "uri", @@ -30148,7 +28809,6 @@ "md5": "c93e1d3059e0f890e43fe569312c7b12", "pid": "1145741851", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1145741851", "identifiedBy": [ { "type": "uri", @@ -30166,7 +28826,6 @@ "md5": "f43df22e4496f33aa5aa86e766239a7f", "pid": "1145791662", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1145791662", "identifiedBy": [ { "type": "uri", @@ -30182,7 +28841,6 @@ "md5": "1b5ab28f5935e86718ab4faddebb554b", "pid": "1145807690", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1145807690", "identifiedBy": [ { "type": "uri", @@ -30213,7 +28871,6 @@ "md5": "ae352af8b57621a445331ddcdff98f2b", "pid": "1145825796", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1145825796", "identifiedBy": [ { "type": "uri", @@ -30229,7 +28886,6 @@ "md5": "218469d4720493f29d1b6fa6816675a4", "pid": "1145880231", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1145880231", "identifiedBy": [ { "type": "uri", @@ -30245,7 +28901,6 @@ "md5": "51e7c15d42ed5d27406e207183193f4c", "pid": "1145891209", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1145891209", "identifiedBy": [ { "type": "uri", @@ -30261,7 +28916,6 @@ "md5": "c3d90d0893274997d9dd7ecfd07c95fd", "pid": "1145931103", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1145931103", "identifiedBy": [ { "type": "uri", @@ -30284,7 +28938,6 @@ "pid": "1145959857", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1145959857", "identifiedBy": [ { "type": "uri", @@ -30302,7 +28955,6 @@ "pid": "1146015976", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1146015976", "identifiedBy": [ { "type": "uri", @@ -30319,7 +28971,6 @@ "md5": "1aa904b2789a1fd2ae8f3c6ab64889fe", "pid": "114606151X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/114606151X", "identifiedBy": [ { "type": "uri", @@ -30335,7 +28986,6 @@ "md5": "ffeb5012c093c4fa7cb8e2cdd972ce0f", "pid": "1146063067", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1146063067", "identifiedBy": [ { "type": "uri", @@ -30360,7 +29010,6 @@ "md5": "204ec1ac0fefefadc3b5e1daa37efb05", "pid": "1146079567", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1146079567", "identifiedBy": [ { "type": "uri", @@ -30383,7 +29032,6 @@ "pid": "1146080271", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1146080271", "identifiedBy": [ { "type": "uri", @@ -30403,7 +29051,6 @@ "md5": "99709b713b27c2bccbff342cd62915cc", "pid": "1146220359", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1146220359", "identifiedBy": [ { "type": "uri", @@ -30419,7 +29066,6 @@ "md5": "b63f96d198c903fe8f4dcadccf63a0a3", "pid": "1146337116", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1146337116", "identifiedBy": [ { "type": "uri", @@ -30446,7 +29092,6 @@ "md5": "4ee1597c7facc9807c08373985e13f96", "pid": "1146355181", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1146355181", "identifiedBy": [ { "type": "uri", @@ -30462,7 +29107,6 @@ "md5": "46dbf8e7abeca4e2da41f0e8e0d6e0b5", "pid": "1146397208", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1146397208", "identifiedBy": [ { "type": "uri", @@ -30480,7 +29124,6 @@ "md5": "75a836168b88ae2ff5b351b78d15fe10", "pid": "1146403054", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1146403054", "identifiedBy": [ { "type": "uri", @@ -30497,7 +29140,6 @@ "md5": "d71d6c90353c207a3b32b7368d14d9a9", "pid": "1146418345", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1146418345", "identifiedBy": [ { "type": "uri", @@ -30515,7 +29157,6 @@ "md5": "331333811c25573dd8af8fe8e0f1f710", "pid": "1146538235", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1146538235", "identifiedBy": [ { "type": "uri", @@ -30534,7 +29175,6 @@ "md5": "cfd09f49eaa8baee90716f784651267b", "pid": "1146539045", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1146539045", "identifiedBy": [ { "type": "uri", @@ -30559,7 +29199,6 @@ "md5": "5cb8f3424b85f99e3077f7f49a0382e6", "pid": "1146539355", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1146539355", "identifiedBy": [ { "type": "uri", @@ -30578,7 +29217,6 @@ "md5": "c208e58dc4b07006ff06d7aed95bfb30", "pid": "1146540825", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1146540825", "identifiedBy": [ { "type": "uri", @@ -30594,7 +29232,6 @@ "md5": "1c497bc90bd02dfbbd3369775c2599c9", "pid": "1146583117", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1146583117", "identifiedBy": [ { "type": "uri", @@ -30619,7 +29256,6 @@ "md5": "c3f79193b15ec6ea49fa5705c35b0478", "pid": "1146702809", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1146702809", "identifiedBy": [ { "type": "uri", @@ -30637,7 +29273,6 @@ "md5": "195dc5832b388cbbb0ba5a34a68c9fac", "pid": "1146703015", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1146703015", "identifiedBy": [ { "type": "uri", @@ -30653,7 +29288,6 @@ "md5": "c1db78e0101fcc9eb0c4790b02039a18", "pid": "1146715056", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1146715056", "identifiedBy": [ { "type": "uri", @@ -30669,7 +29303,6 @@ "md5": "0f45d2d19f2d32710cb7aaeefc7f3df1", "pid": "1146716346", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1146716346", "identifiedBy": [ { "type": "uri", @@ -30685,7 +29318,6 @@ "md5": "6c39e8d74b88575b3c8557c2f0ca56bc", "pid": "1146716648", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1146716648", "identifiedBy": [ { "type": "uri", @@ -30701,7 +29333,6 @@ "md5": "0e9234c92a59c92074af957b12d4805e", "pid": "1146776039", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1146776039", "identifiedBy": [ { "type": "uri", @@ -30717,7 +29348,6 @@ "md5": "64d7f14ccd18310ed54b6dd41cfdbb4d", "pid": "1146781075", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1146781075", "identifiedBy": [ { "type": "uri", @@ -30733,7 +29363,6 @@ "md5": "ee2551d8e0e6a3251a1a4c15c08e6d6f", "pid": "1146794703", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1146794703", "identifiedBy": [ { "type": "uri", @@ -30749,7 +29378,6 @@ "md5": "2d21a63ff22d120c8d836494c222ceb2", "pid": "1146797974", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1146797974", "identifiedBy": [ { "type": "uri", @@ -30767,7 +29395,6 @@ "md5": "829050c2a81e8fe7b5f3bf52ea385aa6", "pid": "1146820763", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1146820763", "identifiedBy": [ { "type": "uri", @@ -30783,7 +29410,6 @@ "md5": "6db5d69ab422a4900b8340a2a63a3cf7", "pid": "1146911882", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1146911882", "identifiedBy": [ { "type": "uri", @@ -30799,7 +29425,6 @@ "md5": "cf353adafc577f431a2e068d518e11a9", "pid": "1146958730", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1146958730", "identifiedBy": [ { "type": "uri", @@ -30815,7 +29440,6 @@ "md5": "7a967021f781f70cc165d8dc7c4dae84", "pid": "1146987935", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1146987935", "identifiedBy": [ { "type": "uri", @@ -30833,7 +29457,6 @@ "md5": "c479580b00126e639870c0c17ef27068", "pid": "1147003505", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1147003505", "identifiedBy": [ { "type": "uri", @@ -30858,7 +29481,6 @@ "md5": "1cbda4559ab46c0e7f20513f28626f79", "pid": "1147011087", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1147011087", "identifiedBy": [ { "type": "uri", @@ -30873,7 +29495,6 @@ "md5": "4ed63128e2ffc74cddde7242bca53c56", "pid": "1147058938", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1147058938", "identifiedBy": [ { "type": "uri", @@ -30889,7 +29510,6 @@ "md5": "eb128fdf03b3c8a66157eff6926b5e41", "pid": "1147073120", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1147073120", "identifiedBy": [ { "type": "uri", @@ -30905,7 +29525,6 @@ "md5": "beaba0fa105759f2f28935d9318eea6e", "pid": "1147082367", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1147082367", "identifiedBy": [ { "type": "uri", @@ -30921,7 +29540,6 @@ "md5": "090cfa99aa2d264f6692a00f1b7c4bae", "pid": "1147083045", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1147083045", "identifiedBy": [ { "type": "uri", @@ -30937,7 +29555,6 @@ "md5": "b353bb1e1da0d77cbe46340d19a2ee37", "pid": "1147127794", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1147127794", "identifiedBy": [ { "type": "uri", @@ -30963,7 +29580,6 @@ "md5": "a2ed643aa47742d1a9542d5b17584016", "pid": "1147132976", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1147132976", "identifiedBy": [ { "type": "uri", @@ -30983,7 +29599,6 @@ "pid": "1147141754", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1147141754", "identifiedBy": [ { "type": "uri", @@ -31008,7 +29623,6 @@ "md5": "c53914b8603403ed753b27fe51fd976b", "pid": "1147150567", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1147150567", "identifiedBy": [ { "type": "uri", @@ -31024,7 +29638,6 @@ "md5": "ba1f86555ac342c861a480076078e467", "pid": "1147173680", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1147173680", "identifiedBy": [ { "type": "uri", @@ -31048,7 +29661,6 @@ "md5": "286ea39f48436899ee2ded6101074932", "pid": "114720117X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/114720117X", "identifiedBy": [ { "type": "uri", @@ -31066,7 +29678,6 @@ "md5": "fb8becdec7acb4d0685e0dc1cc501d04", "pid": "1147319049", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1147319049", "identifiedBy": [ { "type": "uri", @@ -31083,7 +29694,6 @@ "pid": "1147429472", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1147429472", "identifiedBy": [ { "type": "uri", @@ -31104,7 +29714,6 @@ "pid": "1147614709", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1147614709", "identifiedBy": [ { "type": "uri", @@ -31124,7 +29733,6 @@ "md5": "9abad9a815166cc8647dfff18baa8184", "pid": "1147649642", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1147649642", "identifiedBy": [ { "type": "uri", @@ -31149,7 +29757,6 @@ "pid": "1147777713", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1147777713", "identifiedBy": [ { "type": "uri", @@ -31178,7 +29785,6 @@ "pid": "1148121404", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1148121404", "identifiedBy": [ { "type": "uri", @@ -31201,7 +29807,6 @@ "pid": "1148473181", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1148473181", "identifiedBy": [ { "type": "uri", @@ -31229,7 +29834,6 @@ "pid": "1148667989", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1148667989", "identifiedBy": [ { "type": "uri", @@ -31256,7 +29860,6 @@ "md5": "299d44f4a120b6f3f7ae2cbc283fec01", "pid": "1148992316", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1148992316", "identifiedBy": [ { "type": "uri", @@ -31282,7 +29885,6 @@ "pid": "1149000910", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1149000910", "identifiedBy": [ { "type": "uri", @@ -31299,7 +29901,6 @@ "pid": "1149077050", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1149077050", "identifiedBy": [ { "type": "uri", @@ -31322,7 +29923,6 @@ "md5": "3638639abd4b5aa7090b691d1876f798", "pid": "1149382090", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1149382090", "identifiedBy": [ { "type": "uri", @@ -31345,7 +29945,6 @@ "pid": "115024397X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/115024397X", "identifiedBy": [ { "type": "uri", @@ -31367,7 +29966,6 @@ "md5": "90f6a724286ce6f402410d59087b3a14", "pid": "1150721626", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1150721626", "identifiedBy": [ { "type": "uri", @@ -31392,7 +29990,6 @@ "md5": "a984f8f28280b00d913b6f4f737bddd9", "pid": "1150789433", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1150789433", "identifiedBy": [ { "type": "uri", @@ -31410,7 +30007,6 @@ "pid": "1150803541", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1150803541", "identifiedBy": [ { "type": "uri", @@ -31438,7 +30034,6 @@ "pid": "1151079529", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1151079529", "identifiedBy": [ { "type": "uri", @@ -31460,7 +30055,6 @@ "pid": "1151380040", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1151380040", "identifiedBy": [ { "type": "uri", @@ -31485,7 +30079,6 @@ "pid": "115168127X", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/115168127X", "identifiedBy": [ { "type": "uri", @@ -31508,7 +30101,6 @@ "pid": "1151834149", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1151834149", "identifiedBy": [ { "type": "uri", @@ -31530,7 +30122,6 @@ "md5": "9b3149d98187a51caee5b87853149b3c", "pid": "115189203", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/115189203", "identifiedBy": [ { "type": "uri", @@ -31561,7 +30152,6 @@ "pid": "115228987X", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/115228987X", "identifiedBy": [ { "type": "uri", @@ -31578,7 +30168,6 @@ "md5": "648c1a6af4ed2078b1e70967f0e186b8", "pid": "1153014750", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1153014750", "identifiedBy": [ { "type": "uri", @@ -31606,7 +30195,6 @@ "pid": "1153069881", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1153069881", "identifiedBy": [ { "type": "uri", @@ -31622,7 +30210,6 @@ "pid": "1153169363", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1153169363", "identifiedBy": [ { "type": "uri", @@ -31640,7 +30227,6 @@ "pid": "115355996X", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/115355996X", "identifiedBy": [ { "type": "uri", @@ -31668,7 +30254,6 @@ "language": [ "ger" ], - "identifier": "http://d-nb.info/gnd/1153565455", "identifiedBy": [ { "type": "uri", @@ -31700,7 +30285,6 @@ "pid": "1153744600", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1153744600", "identifiedBy": [ { "type": "uri", @@ -31726,7 +30310,6 @@ "pid": "1153781506", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1153781506", "identifiedBy": [ { "type": "uri", @@ -31750,7 +30333,6 @@ "mon", "ger" ], - "identifier": "http://d-nb.info/gnd/115378197", "identifiedBy": [ { "type": "uri", @@ -31794,7 +30376,6 @@ "pid": "1154802817", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1154802817", "identifiedBy": [ { "type": "uri", @@ -31816,7 +30397,6 @@ "md5": "b4073cd2de27d712ad872b33027dbca3", "pid": "115493069", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/115493069", "identifiedBy": [ { "type": "uri", @@ -31832,7 +30412,6 @@ "pid": "115497328X", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/115497328X", "identifiedBy": [ { "type": "uri", @@ -31852,7 +30431,6 @@ "pid": "115503256X", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/115503256X", "identifiedBy": [ { "type": "uri", @@ -31872,7 +30450,6 @@ "pid": "1155263766", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1155263766", "identifiedBy": [ { "type": "uri", @@ -31890,7 +30467,6 @@ "pid": "1155422481", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1155422481", "identifiedBy": [ { "type": "uri", @@ -31909,7 +30485,6 @@ "md5": "5ec09b418c9e0e876f65566d808ce39b", "pid": "1155539176", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1155539176", "identifiedBy": [ { "type": "uri", @@ -31939,7 +30514,6 @@ "pid": "1155539249", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1155539249", "identifiedBy": [ { "type": "uri", @@ -31959,7 +30533,6 @@ "pid": "115620451", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/115620451", "identifiedBy": [ { "type": "uri", @@ -31982,7 +30555,6 @@ "md5": "0895c9b2a381d6ab949d03681b55d272", "pid": "1156292166", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1156292166", "identifiedBy": [ { "type": "uri", @@ -32002,7 +30574,6 @@ "language": [ "ger" ], - "identifier": "http://d-nb.info/gnd/1156433290", "identifiedBy": [ { "type": "uri", @@ -32030,7 +30601,6 @@ "pid": "1156493242", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1156493242", "identifiedBy": [ { "type": "uri", @@ -32052,7 +30622,6 @@ "md5": "4077bd7ca281aafda86e17a4e6646e3c", "pid": "1156540917", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1156540917", "identifiedBy": [ { "type": "uri", @@ -32068,7 +30637,6 @@ "md5": "e7d63944a2a29f9ebcd0629f7a8fd0e7", "pid": "1157052185", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1157052185", "identifiedBy": [ { "type": "uri", @@ -32089,7 +30657,6 @@ "md5": "c9d8265d287d3a7e72c053289430f2de", "pid": "1157216900", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1157216900", "identifiedBy": [ { "type": "uri", @@ -32118,7 +30685,6 @@ "md5": "56c4028790601ea5f720848310a5508f", "pid": "1157217559", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1157217559", "identifiedBy": [ { "type": "uri", @@ -32139,7 +30705,6 @@ "md5": "bfb75ca034bfc0d1313c9732c5b32d20", "pid": "1157230466", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1157230466", "identifiedBy": [ { "type": "uri", @@ -32165,7 +30730,6 @@ "md5": "1081a31373340e49c8ba702430f5c635", "pid": "1157269680", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1157269680", "identifiedBy": [ { "type": "uri", @@ -32186,7 +30750,6 @@ "md5": "b108e6e3d79e95a2381f44f9d9dcc899", "pid": "1157288723", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1157288723", "identifiedBy": [ { "type": "uri", @@ -32207,7 +30770,6 @@ "md5": "64d4e68bac02bcaf670260ee8d6ec720", "pid": "1157297676", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1157297676", "identifiedBy": [ { "type": "uri", @@ -32228,7 +30790,6 @@ "md5": "794a6b8fee3fd3102dbc5239f2be5254", "pid": "1157335101", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1157335101", "identifiedBy": [ { "type": "uri", @@ -32249,7 +30810,6 @@ "md5": "56db6ccb92e8457fe416deffda34e7eb", "pid": "1157423981", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1157423981", "identifiedBy": [ { "type": "uri", @@ -32270,7 +30830,6 @@ "md5": "9b481989860df3f16853eb5a8422aaa0", "pid": "1157447694", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1157447694", "identifiedBy": [ { "type": "uri", @@ -32291,7 +30850,6 @@ "md5": "452e798171b32be7365de5c8010b73a7", "pid": "1157452159", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1157452159", "identifiedBy": [ { "type": "uri", @@ -32312,7 +30870,6 @@ "md5": "82f2591a835e32966f60bb7c4278aca5", "pid": "1157594042", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1157594042", "identifiedBy": [ { "type": "uri", @@ -32327,7 +30884,6 @@ "md5": "76bb65a1700cba5e80428a914a1d8c88", "pid": "1157599087", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1157599087", "identifiedBy": [ { "type": "uri", @@ -32354,7 +30910,6 @@ "md5": "f72fbb1d9b6b9f1c34e73a0ef3eb0b12", "pid": "1157628680", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1157628680", "identifiedBy": [ { "type": "uri", @@ -32375,7 +30930,6 @@ "md5": "6bcdf96f12a42af065e83da04f8107ba", "pid": "1157697208", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1157697208", "identifiedBy": [ { "type": "uri", @@ -32396,7 +30950,6 @@ "md5": "ef915ba8a6d4a96cd84d2b2ed104330e", "pid": "1157709702", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1157709702", "identifiedBy": [ { "type": "uri", @@ -32411,7 +30964,6 @@ "md5": "5632e6954c5f2283aa06c4561f6d615f", "pid": "1157711162", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1157711162", "identifiedBy": [ { "type": "uri", @@ -32426,7 +30978,6 @@ "md5": "2586a690549a1e5db88fe98e3b483c22", "pid": "115775633", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/115775633", "identifiedBy": [ { "type": "uri", @@ -32445,7 +30996,6 @@ "md5": "14b7297f4ea2c960daa02bafcb62243c", "pid": "1157756964", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1157756964", "identifiedBy": [ { "type": "uri", @@ -32468,7 +31018,6 @@ "md5": "e47cff7f4f3f27228941011e17c3e825", "pid": "1157761518", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1157761518", "identifiedBy": [ { "type": "uri", @@ -32489,7 +31038,6 @@ "md5": "92d6a218644e11ac29f3f0a59647634c", "pid": "1157778321", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1157778321", "identifiedBy": [ { "type": "uri", @@ -32504,7 +31052,6 @@ "md5": "2fcdb69b4a23de4e5dd32dfdd0b240bc", "pid": "1157861202", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1157861202", "identifiedBy": [ { "type": "uri", @@ -32530,7 +31077,6 @@ "md5": "3cf79553b560498b8be01f0601c8fd97", "pid": "1157879837", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1157879837", "identifiedBy": [ { "type": "uri", @@ -32551,7 +31097,6 @@ "md5": "155cb24363887f67d86dc0dbf624d6ee", "pid": "1157907849", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1157907849", "identifiedBy": [ { "type": "uri", @@ -32566,7 +31111,6 @@ "md5": "65a6a1fdd4cdb4bf16ea8efc9d7b1f54", "pid": "1157912311", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1157912311", "identifiedBy": [ { "type": "uri", @@ -32581,7 +31125,6 @@ "md5": "3ab3e7731cdcf24387cdde811274cd88", "pid": "1158006497", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1158006497", "identifiedBy": [ { "type": "uri", @@ -32602,7 +31145,6 @@ "md5": "390a73cd7c93ffd0429343b66fd2b204", "pid": "1158027060", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1158027060", "identifiedBy": [ { "type": "uri", @@ -32623,7 +31165,6 @@ "md5": "487752deec1f3dc2687bc1de9e6e09ff", "pid": "1158052057", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1158052057", "identifiedBy": [ { "type": "uri", @@ -32648,7 +31189,6 @@ "md5": "03c5410521ca3a057a93430679b9a55c", "pid": "1158100892", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1158100892", "identifiedBy": [ { "type": "uri", @@ -32691,7 +31231,6 @@ "md5": "a038aaaa6de25bde813d6a401df95276", "pid": "1158101988", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1158101988", "identifiedBy": [ { "type": "uri", @@ -32712,7 +31251,6 @@ "md5": "9fb491ce603026c0f39d6414111fb790", "pid": "1158158408", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1158158408", "identifiedBy": [ { "type": "uri", @@ -32733,7 +31271,6 @@ "md5": "d4a3c3c376fbbce48a779366196c0512", "pid": "1158200374", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1158200374", "identifiedBy": [ { "type": "uri", @@ -32754,7 +31291,6 @@ "md5": "e7a67d8afac82e3de77a9fd688a6a26c", "pid": "1158249543", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1158249543", "identifiedBy": [ { "type": "uri", @@ -32783,7 +31319,6 @@ "md5": "01de6e94f5774a67a54bcdbcb1169739", "pid": "115829106X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/115829106X", "identifiedBy": [ { "type": "uri", @@ -32805,7 +31340,6 @@ "pid": "115830324", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/115830324", "identifiedBy": [ { "type": "uri", @@ -32828,7 +31362,6 @@ "md5": "80790a9581a50809f6f4c1c3d7d8dc1a", "pid": "115832599", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/115832599", "identifiedBy": [ { "type": "uri", @@ -32847,7 +31380,6 @@ "md5": "1e24068b9d5d9a54c1010767a80732a2", "pid": "115836346X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/115836346X", "identifiedBy": [ { "type": "uri", @@ -32868,7 +31400,6 @@ "md5": "59446a8a0e43154bc2d56ddb1b149a7b", "pid": "1158367546", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1158367546", "identifiedBy": [ { "type": "uri", @@ -32891,7 +31422,6 @@ "md5": "be4d73f753e9ccf2444efba94fe619d3", "pid": "1158376529", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1158376529", "identifiedBy": [ { "type": "uri", @@ -32914,7 +31444,6 @@ "md5": "c7785af957155695883ea2730dd8a15e", "pid": "1158381719", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1158381719", "identifiedBy": [ { "type": "uri", @@ -32935,7 +31464,6 @@ "md5": "61535a62888d159f9f7584aff32a1806", "pid": "1158387253", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1158387253", "identifiedBy": [ { "type": "uri", @@ -32958,7 +31486,6 @@ "md5": "54d3057db05c51d2c37de97828359409", "pid": "1158419481", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1158419481", "identifiedBy": [ { "type": "uri", @@ -32992,7 +31519,6 @@ "md5": "1c947f26227223d4d7f46aba66904cfa", "pid": "1158422814", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1158422814", "identifiedBy": [ { "type": "uri", @@ -33016,7 +31542,6 @@ "md5": "6086e74c5a50fd6007e530b430864dca", "pid": "1158446462", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1158446462", "identifiedBy": [ { "type": "uri", @@ -33037,7 +31562,6 @@ "md5": "7233d864b4b252e92e0a18835728731b", "pid": "1158464681", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1158464681", "identifiedBy": [ { "type": "uri", @@ -33064,7 +31588,6 @@ "md5": "67b33a9e1f2855ff14f670ca5078639a", "pid": "1158546564", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1158546564", "identifiedBy": [ { "type": "uri", @@ -33085,7 +31608,6 @@ "md5": "c388a32f5d50c1a9811431d68946d53f", "pid": "115855365X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/115855365X", "identifiedBy": [ { "type": "uri", @@ -33110,7 +31632,6 @@ "md5": "9c7012394e3789210c0f4bacab668f93", "pid": "1158555156", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1158555156", "identifiedBy": [ { "type": "uri", @@ -33133,7 +31654,6 @@ "md5": "1a5429f8e3aaaabdbc49f04622a775d5", "pid": "115855882", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/115855882", "identifiedBy": [ { "type": "uri", @@ -33150,7 +31670,6 @@ "pid": "1158559259", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1158559259", "identifiedBy": [ { "type": "uri", @@ -33175,7 +31694,6 @@ "md5": "a55645d50047b2f847fd4570a86bfc49", "pid": "1158570945", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1158570945", "identifiedBy": [ { "type": "uri", @@ -33200,7 +31718,6 @@ "md5": "1b42756d2dd0a118c3a4298142a36d8b", "pid": "1158574614", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1158574614", "identifiedBy": [ { "type": "uri", @@ -33223,7 +31740,6 @@ "md5": "533329b40391f1c7e249b52b797b05de", "pid": "1158577125", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1158577125", "identifiedBy": [ { "type": "uri", @@ -33247,7 +31763,6 @@ "pid": "1158624107", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1158624107", "identifiedBy": [ { "type": "uri", @@ -33265,7 +31780,6 @@ "md5": "b89a66ed3c2f2ab34b845d39311810fa", "pid": "1158716125", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1158716125", "identifiedBy": [ { "type": "uri", @@ -33286,7 +31800,6 @@ "md5": "d20d35a4b0eb847fec80820515099acc", "pid": "1158723458", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1158723458", "identifiedBy": [ { "type": "uri", @@ -33309,7 +31822,6 @@ "md5": "d9117d4bdc4d8623ada86a2b63257e67", "pid": "1158741308", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1158741308", "identifiedBy": [ { "type": "uri", @@ -33330,7 +31842,6 @@ "md5": "5bdcc45ad346ea65c1056d9c0e9f7b5d", "pid": "1158818726", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1158818726", "identifiedBy": [ { "type": "uri", @@ -33351,7 +31862,6 @@ "md5": "052db05ec5e87962b5efd20b7870dfde", "pid": "1158837534", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1158837534", "identifiedBy": [ { "type": "uri", @@ -33372,7 +31882,6 @@ "md5": "b59e813578b7ff5565a2c0bf7adc418a", "pid": "1158866127", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1158866127", "identifiedBy": [ { "type": "uri", @@ -33395,7 +31904,6 @@ "md5": "a6d8fcc2b8b4f993783bda87a28bb720", "pid": "1158918763", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1158918763", "identifiedBy": [ { "type": "uri", @@ -33420,7 +31928,6 @@ "md5": "f7f7f77a7f45ed8d5e854012a75c20dd", "pid": "1158920237", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1158920237", "identifiedBy": [ { "type": "uri", @@ -33441,7 +31948,6 @@ "md5": "8abf1028c00fe822340b9924e6487a1e", "pid": "1158922892", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1158922892", "identifiedBy": [ { "type": "uri", @@ -33462,7 +31968,6 @@ "md5": "549303dff7e5060166deed542179d43e", "pid": "1158941145", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1158941145", "identifiedBy": [ { "type": "uri", @@ -33483,7 +31988,6 @@ "md5": "177c338ba80039af26130736724da2c8", "pid": "1158944675", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1158944675", "identifiedBy": [ { "type": "uri", @@ -33506,7 +32010,6 @@ "md5": "48eaf93e816ae2fe2e145a0c70360ab3", "pid": "1158955235", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1158955235", "identifiedBy": [ { "type": "uri", @@ -33527,7 +32030,6 @@ "md5": "a7c93e8d53c20106cdab252d42ac1c0e", "pid": "1158971117", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1158971117", "identifiedBy": [ { "type": "uri", @@ -33548,7 +32050,6 @@ "md5": "9058c177f66c8a1474beb16d9610e4a0", "pid": "1159026750", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1159026750", "identifiedBy": [ { "type": "uri", @@ -33569,7 +32070,6 @@ "md5": "7b9874dfab459002121e125531d375be", "pid": "1159034591", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1159034591", "identifiedBy": [ { "type": "uri", @@ -33596,7 +32096,6 @@ "md5": "5e53d549b04b8be481279d8787485b37", "pid": "1159046239", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1159046239", "identifiedBy": [ { "type": "uri", @@ -33617,7 +32116,6 @@ "md5": "3f4c6214f04fcaff65ad00aa54d2911f", "pid": "1159064911", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1159064911", "identifiedBy": [ { "type": "uri", @@ -33638,7 +32136,6 @@ "md5": "2bd877610cda263544344563c089f992", "pid": "1159071373", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1159071373", "identifiedBy": [ { "type": "uri", @@ -33661,7 +32158,6 @@ "md5": "d23cee290e1380c5e8b4d7bfcf691bdd", "pid": "1159073880", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1159073880", "identifiedBy": [ { "type": "uri", @@ -33682,7 +32178,6 @@ "md5": "563127c3a6c95c8e7a607b8699e87ff6", "pid": "1159080593", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1159080593", "identifiedBy": [ { "type": "uri", @@ -33705,7 +32200,6 @@ "md5": "d8cc8b98168f5fbbd2c1296e8f196761", "pid": "1159104611", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1159104611", "identifiedBy": [ { "type": "uri", @@ -33728,7 +32222,6 @@ "md5": "9f14bd8ffc2ed31ece5744dece28f963", "pid": "1159119422", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1159119422", "identifiedBy": [ { "type": "uri", @@ -33749,7 +32242,6 @@ "md5": "cc2bb5bae541764a3e64cfa4293c2805", "pid": "1159135630", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1159135630", "identifiedBy": [ { "type": "uri", @@ -33770,7 +32262,6 @@ "md5": "031b3a3c18d2cce91908271f1a82bfb2", "pid": "1159138117", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1159138117", "identifiedBy": [ { "type": "uri", @@ -33791,7 +32282,6 @@ "md5": "f9b5eca1457bdeada537fa5664b9c749", "pid": "1159153183", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1159153183", "identifiedBy": [ { "type": "uri", @@ -33812,7 +32302,6 @@ "md5": "0dd4caaafa7f8f00985fe362d59d2200", "pid": "1159167451", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1159167451", "identifiedBy": [ { "type": "uri", @@ -33835,7 +32324,6 @@ "md5": "b27fea947c5962d19b6321e726a78372", "pid": "1159213550", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1159213550", "identifiedBy": [ { "type": "uri", @@ -33858,7 +32346,6 @@ "md5": "54bb1f4f056b5d5e042968fe39aca10d", "pid": "115921719X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/115921719X", "identifiedBy": [ { "type": "uri", @@ -33881,7 +32368,6 @@ "md5": "e25eda472c84d399af7b39db777b196f", "pid": "1159260079", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1159260079", "identifiedBy": [ { "type": "uri", @@ -33904,7 +32390,6 @@ "md5": "1add469559840b207228e281cb51a4e8", "pid": "1159260931", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1159260931", "identifiedBy": [ { "type": "uri", @@ -33925,7 +32410,6 @@ "md5": "5e7d00667dba54941e9deca62649d429", "pid": "1159261407", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1159261407", "identifiedBy": [ { "type": "uri", @@ -33950,7 +32434,6 @@ "language": [ "fre" ], - "identifier": "http://d-nb.info/gnd/1159283095", "identifiedBy": [ { "type": "uri", @@ -33975,7 +32458,6 @@ "md5": "bd3f153ef6b42a465886b0273e9b1f0e", "pid": "1159284946", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1159284946", "identifiedBy": [ { "type": "uri", @@ -34004,7 +32486,6 @@ "md5": "6c51d417e47a862a7a097e46e23b51db", "pid": "1159288259", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1159288259", "identifiedBy": [ { "type": "uri", @@ -34027,7 +32508,6 @@ "md5": "8703f92a6585651d24432de706cc0962", "pid": "1159531471", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1159531471", "identifiedBy": [ { "type": "uri", @@ -34044,7 +32524,6 @@ "pid": "1159712689", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1159712689", "identifiedBy": [ { "type": "uri", @@ -34061,7 +32540,6 @@ "pid": "1160106576", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1160106576", "identifiedBy": [ { "type": "uri", @@ -34078,7 +32556,6 @@ "pid": "1160217254", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1160217254", "identifiedBy": [ { "type": "uri", @@ -34105,7 +32582,6 @@ "pid": "1160325189", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1160325189", "identifiedBy": [ { "type": "uri", @@ -34123,7 +32599,6 @@ "pid": "116037202", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/116037202", "identifiedBy": [ { "type": "uri", @@ -34140,7 +32615,6 @@ "pid": "116075899", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/116075899", "identifiedBy": [ { "type": "uri", @@ -34167,7 +32641,6 @@ "pid": "1160946140", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1160946140", "identifiedBy": [ { "type": "uri", @@ -34184,7 +32657,6 @@ "pid": "116102932X", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/116102932X", "identifiedBy": [ { "type": "uri", @@ -34208,7 +32680,6 @@ "pid": "116120444", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/116120444", "identifiedBy": [ { "type": "uri", @@ -34227,7 +32698,6 @@ "md5": "12efeae73342dc82be9e006a9ea79d0a", "pid": "116144131X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/116144131X", "identifiedBy": [ { "type": "uri", @@ -34245,7 +32715,6 @@ "pid": "116189673", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/116189673", "identifiedBy": [ { "type": "uri", @@ -34267,7 +32736,6 @@ "pid": "1162523271", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1162523271", "identifiedBy": [ { "type": "uri", @@ -34293,7 +32761,6 @@ "pid": "1162968664", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1162968664", "identifiedBy": [ { "type": "uri", @@ -34311,7 +32778,6 @@ "pid": "1163054186", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1163054186", "identifiedBy": [ { "type": "uri", @@ -34337,7 +32803,6 @@ "pid": "1163061921", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1163061921", "identifiedBy": [ { "type": "uri", @@ -34369,7 +32834,6 @@ "pid": "116311054X", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/116311054X", "identifiedBy": [ { "type": "uri", @@ -34390,7 +32854,6 @@ "pid": "116348747", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/116348747", "identifiedBy": [ { "type": "uri", @@ -34409,7 +32872,6 @@ "pid": "116361816", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/116361816", "identifiedBy": [ { "type": "uri", @@ -34436,7 +32898,6 @@ "pid": "1163622265", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1163622265", "identifiedBy": [ { "type": "uri", @@ -34457,7 +32918,6 @@ "pid": "1163767662", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1163767662", "identifiedBy": [ { "type": "uri", @@ -34473,7 +32933,6 @@ "pid": "116385103", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/116385103", "identifiedBy": [ { "type": "uri", @@ -34493,7 +32952,6 @@ "pid": "116397451X", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/116397451X", "identifiedBy": [ { "type": "uri", @@ -34520,7 +32978,6 @@ "pid": "1164191497", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1164191497", "identifiedBy": [ { "type": "uri", @@ -34551,7 +33008,6 @@ "pid": "1164263269", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1164263269", "identifiedBy": [ { "type": "uri", @@ -34573,7 +33029,6 @@ "pid": "116439394", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/116439394", "identifiedBy": [ { "type": "uri", @@ -34602,7 +33057,6 @@ "pid": "116442743", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/116442743", "identifiedBy": [ { "type": "uri", @@ -34634,7 +33088,6 @@ "md5": "d2524383a758db903eff3d3a4d13d654", "pid": "1164502875", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1164502875", "identifiedBy": [ { "type": "uri", @@ -34650,7 +33103,6 @@ "md5": "db6ed7a24cb64f11fcdf99e9c6e98360", "pid": "1164710923", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1164710923", "identifiedBy": [ { "type": "uri", @@ -34667,7 +33119,6 @@ "pid": "11647839X", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/11647839X", "identifiedBy": [ { "type": "uri", @@ -34687,7 +33138,6 @@ "pid": "116481536", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/116481536", "identifiedBy": [ { "type": "uri", @@ -34719,7 +33169,6 @@ "pid": "116493011", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/116493011", "identifiedBy": [ { "type": "uri", @@ -34737,7 +33186,6 @@ "md5": "5938b09e265a142201fbf1acd7ab6bf6", "pid": "1164996517", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1164996517", "identifiedBy": [ { "type": "uri", @@ -34757,7 +33205,6 @@ "md5": "6cef7a99998936da03d3de7ed7ee223c", "pid": "1165187388", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1165187388", "identifiedBy": [ { "type": "uri", @@ -34782,7 +33229,6 @@ "md5": "74dd3ac645398bac2b92b5f658eb4442", "pid": "1165269503", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1165269503", "identifiedBy": [ { "type": "uri", @@ -34805,7 +33251,6 @@ "pid": "1165531615", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1165531615", "identifiedBy": [ { "type": "uri", @@ -34842,7 +33287,6 @@ "pid": "1165547821", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1165547821", "identifiedBy": [ { "type": "uri", @@ -34862,7 +33306,6 @@ "pid": "1165583534", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1165583534", "identifiedBy": [ { "type": "uri", @@ -34881,7 +33324,6 @@ "pid": "1165585391", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1165585391", "identifiedBy": [ { "type": "uri", @@ -34916,7 +33358,6 @@ "pid": "116582782", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/116582782", "identifiedBy": [ { "type": "uri", @@ -34941,7 +33382,6 @@ "language": [ "ger" ], - "identifier": "http://d-nb.info/gnd/116600233", "identifiedBy": [ { "type": "uri", @@ -34971,7 +33411,6 @@ "pid": "116601795", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/116601795", "identifiedBy": [ { "type": "uri", @@ -34988,7 +33427,6 @@ "pid": "1166105709", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1166105709", "identifiedBy": [ { "type": "uri", @@ -35005,7 +33443,6 @@ "pid": "1166156494", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1166156494", "identifiedBy": [ { "type": "uri", @@ -35023,7 +33460,6 @@ "pid": "116629673", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/116629673", "identifiedBy": [ { "type": "uri", @@ -35040,7 +33476,6 @@ "pid": "116679875", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/116679875", "identifiedBy": [ { "type": "uri", @@ -35064,7 +33499,6 @@ "pid": "1166857204", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1166857204", "identifiedBy": [ { "type": "uri", @@ -35081,7 +33515,6 @@ "md5": "69fec5559fc29427f5d1fdbe511ba941", "pid": "1166992330", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1166992330", "identifiedBy": [ { "type": "uri", @@ -35097,7 +33530,6 @@ "pid": "11671848X", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/11671848X", "identifiedBy": [ { "type": "uri", @@ -35116,7 +33548,6 @@ "pid": "116736410", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/116736410", "identifiedBy": [ { "type": "uri", @@ -35144,7 +33575,6 @@ "pid": "116755776", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/116755776", "identifiedBy": [ { "type": "uri", @@ -35164,7 +33594,6 @@ "pid": "1168165466", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1168165466", "identifiedBy": [ { "type": "uri", @@ -35189,7 +33618,6 @@ "pid": "1168177111", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1168177111", "identifiedBy": [ { "type": "uri", @@ -35218,7 +33646,6 @@ "pid": "116830565", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/116830565", "identifiedBy": [ { "type": "uri", @@ -35235,7 +33662,6 @@ "pid": "11683188X", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/11683188X", "identifiedBy": [ { "type": "uri", @@ -35257,7 +33683,6 @@ "md5": "1f0a9032c48259f9cd6dff7fcfc710e7", "pid": "116864366X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/116864366X", "identifiedBy": [ { "type": "uri", @@ -35277,7 +33702,6 @@ "pid": "1168683211", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1168683211", "identifiedBy": [ { "type": "uri", @@ -35302,7 +33726,6 @@ "pid": "116903953", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/116903953", "identifiedBy": [ { "type": "uri", @@ -35329,7 +33752,6 @@ "pid": "1169048099", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1169048099", "identifiedBy": [ { "type": "uri", @@ -35353,7 +33775,6 @@ "pid": "1169139434", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1169139434", "identifiedBy": [ { "type": "uri", @@ -35375,7 +33796,6 @@ "pid": "1169173837", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1169173837", "identifiedBy": [ { "type": "uri", @@ -35395,7 +33815,6 @@ "pid": "1169226531", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1169226531", "identifiedBy": [ { "type": "uri", @@ -35413,7 +33832,6 @@ "pid": "116934565", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/116934565", "identifiedBy": [ { "type": "uri", @@ -35430,7 +33848,6 @@ "pid": "116986700", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/116986700", "identifiedBy": [ { "type": "uri", @@ -35450,7 +33867,6 @@ "pid": "116991992", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/116991992", "identifiedBy": [ { "type": "uri", @@ -35482,7 +33898,6 @@ "pid": "1169953743", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1169953743", "identifiedBy": [ { "type": "uri", @@ -35503,7 +33918,6 @@ "md5": "38971ccf8126b5f40b09333db78f5b6e", "pid": "1169969305", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1169969305", "identifiedBy": [ { "type": "uri", @@ -35526,7 +33940,6 @@ "md5": "d7e80e2472400cfb49e1c8f5017c1f63", "pid": "1170278353", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1170278353", "identifiedBy": [ { "type": "uri", @@ -35541,7 +33954,6 @@ "md5": "376905cd3dff313fe280c4a4b00cddd1", "pid": "1170426131", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1170426131", "identifiedBy": [ { "type": "uri", @@ -35572,7 +33984,6 @@ "pid": "1170451594", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1170451594", "identifiedBy": [ { "type": "uri", @@ -35593,7 +34004,6 @@ "pid": "117054437", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/117054437", "identifiedBy": [ { "type": "uri", @@ -35609,7 +34019,6 @@ "md5": "1d00f6a6650f6ed466d1d4e075a3caa2", "pid": "1170618367", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1170618367", "identifiedBy": [ { "type": "uri", @@ -35630,7 +34039,6 @@ "pid": "1170737064", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1170737064", "identifiedBy": [ { "type": "uri", @@ -35646,7 +34054,6 @@ "md5": "60fd5da4eb76d3bc90e2b3a797e4681a", "pid": "1170837611", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1170837611", "identifiedBy": [ { "type": "uri", @@ -35666,7 +34073,6 @@ "pid": "1171152183", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1171152183", "identifiedBy": [ { "type": "uri", @@ -35686,7 +34092,6 @@ "pid": "117125184X", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/117125184X", "identifiedBy": [ { "type": "uri", @@ -35703,7 +34108,6 @@ "pid": "117143553", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/117143553", "identifiedBy": [ { "type": "uri", @@ -35733,7 +34137,6 @@ "language": [ "ger" ], - "identifier": "http://d-nb.info/gnd/117155608", "identifiedBy": [ { "type": "uri", @@ -35755,7 +34158,6 @@ "pid": "1171765010", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1171765010", "identifiedBy": [ { "type": "uri", @@ -35772,7 +34174,6 @@ "pid": "117186430", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/117186430", "identifiedBy": [ { "type": "uri", @@ -35802,7 +34203,6 @@ "pid": "1172001731", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1172001731", "identifiedBy": [ { "type": "uri", @@ -35819,7 +34219,6 @@ "pid": "1172048657", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1172048657", "identifiedBy": [ { "type": "uri", @@ -35852,7 +34251,6 @@ "pid": "1172083541", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1172083541", "identifiedBy": [ { "type": "uri", @@ -35877,7 +34275,6 @@ "md5": "63b931b883e73d3632ae021555ae66f1", "pid": "1172106339", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1172106339", "identifiedBy": [ { "type": "uri", @@ -35900,7 +34297,6 @@ "md5": "8d01c53937169b3f407943ca62151706", "pid": "1172300755", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1172300755", "identifiedBy": [ { "type": "uri", @@ -35928,7 +34324,6 @@ "pid": "117233218", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/117233218", "identifiedBy": [ { "type": "uri", @@ -35948,7 +34343,6 @@ "pid": "117249580", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/117249580", "identifiedBy": [ { "type": "uri", @@ -35973,7 +34367,6 @@ "pid": "1173303146", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1173303146", "identifiedBy": [ { "type": "uri", @@ -35993,7 +34386,6 @@ "md5": "9a3cb0fc8c39b69306cc0f1593e8da82", "pid": "1173330542", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1173330542", "identifiedBy": [ { "type": "uri", @@ -36009,7 +34401,6 @@ "pid": "117352896", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/117352896", "identifiedBy": [ { "type": "uri", @@ -36026,7 +34417,6 @@ "pid": "117471178", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/117471178", "identifiedBy": [ { "type": "uri", @@ -36043,7 +34433,6 @@ "pid": "117480797", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/117480797", "identifiedBy": [ { "type": "uri", @@ -36060,7 +34449,6 @@ "pid": "117490555", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/117490555", "identifiedBy": [ { "type": "uri", @@ -36079,7 +34467,6 @@ "pid": "1175036641", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1175036641", "identifiedBy": [ { "type": "uri", @@ -36096,7 +34483,6 @@ "pid": "1175119865", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1175119865", "identifiedBy": [ { "type": "uri", @@ -36115,7 +34501,6 @@ "pid": "117520705", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/117520705", "identifiedBy": [ { "type": "uri", @@ -36148,7 +34533,6 @@ "pid": "1175431435", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1175431435", "identifiedBy": [ { "type": "uri", @@ -36171,7 +34555,6 @@ "pid": "117546720", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/117546720", "identifiedBy": [ { "type": "uri", @@ -36190,7 +34573,6 @@ "pid": "1175643521", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1175643521", "identifiedBy": [ { "type": "uri", @@ -36212,7 +34594,6 @@ "md5": "68761cf294da564c4e0e4f73ebcb1521", "pid": "1175653861", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1175653861", "identifiedBy": [ { "type": "uri", @@ -36233,7 +34614,6 @@ "pid": "1176124900", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1176124900", "identifiedBy": [ { "type": "uri", @@ -36249,7 +34629,6 @@ "md5": "907d711eab16bf31e5b6ba51a09a4ca6", "pid": "1176219189", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1176219189", "identifiedBy": [ { "type": "uri", @@ -36270,7 +34649,6 @@ "pid": "1176442988", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1176442988", "identifiedBy": [ { "type": "uri", @@ -36292,7 +34670,6 @@ "pid": "117655570", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/117655570", "identifiedBy": [ { "type": "uri", @@ -36314,7 +34691,6 @@ "pid": "1176847597", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1176847597", "identifiedBy": [ { "type": "uri", @@ -36342,7 +34718,6 @@ "pid": "117701408", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/117701408", "identifiedBy": [ { "type": "uri", @@ -36362,7 +34737,6 @@ "pid": "1177093979", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1177093979", "identifiedBy": [ { "type": "uri", @@ -36383,7 +34757,6 @@ "pid": "117725293", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/117725293", "identifiedBy": [ { "type": "uri", @@ -36405,7 +34778,6 @@ "pid": "1177717379", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1177717379", "identifiedBy": [ { "type": "uri", @@ -36428,7 +34800,6 @@ "md5": "ff38273e843048be2862a94daf5de025", "pid": "1177904713", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1177904713", "identifiedBy": [ { "type": "uri", @@ -36448,7 +34819,6 @@ "pid": "1178017486", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1178017486", "identifiedBy": [ { "type": "uri", @@ -36471,7 +34841,6 @@ "pid": "1178023370", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1178023370", "identifiedBy": [ { "type": "uri", @@ -36487,7 +34856,6 @@ "md5": "9f0f0be057dbc90fb9f1f70a0603b2fa", "pid": "1178350002", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1178350002", "identifiedBy": [ { "type": "uri", @@ -36504,7 +34872,6 @@ "pid": "1178484009", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1178484009", "identifiedBy": [ { "type": "uri", @@ -36531,7 +34898,6 @@ "pid": "1178833925", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1178833925", "identifiedBy": [ { "type": "uri", @@ -36557,7 +34923,6 @@ "md5": "3fca4f393f48ad5a1b14bab2792acc56", "pid": "1179197992", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1179197992", "identifiedBy": [ { "type": "uri", @@ -36586,7 +34951,6 @@ "md5": "001c7ad222d8de37a612585a05131f78", "pid": "1179207440", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1179207440", "identifiedBy": [ { "type": "uri", @@ -36612,7 +34976,6 @@ "pid": "117948682X", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/117948682X", "identifiedBy": [ { "type": "uri", @@ -36630,7 +34993,6 @@ "pid": "117971041X", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/117971041X", "identifiedBy": [ { "type": "uri", @@ -36652,7 +35014,6 @@ "pid": "1179785266", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1179785266", "identifiedBy": [ { "type": "uri", @@ -36674,7 +35035,6 @@ "pid": "1180539567", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1180539567", "identifiedBy": [ { "type": "uri", @@ -36692,7 +35052,6 @@ "pid": "118068544X", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/118068544X", "identifiedBy": [ { "type": "uri", @@ -36716,7 +35075,6 @@ "language": [ "ger" ], - "identifier": "http://d-nb.info/gnd/118108093", "identifiedBy": [ { "type": "uri", @@ -36733,7 +35091,6 @@ "md5": "213a9ca4ff674211d0395daece60bf0d", "pid": "1181153034", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1181153034", "identifiedBy": [ { "type": "uri", @@ -36750,7 +35107,6 @@ "pid": "1182338917", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1182338917", "identifiedBy": [ { "type": "uri", @@ -36771,7 +35127,6 @@ "pid": "118247957X", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/118247957X", "identifiedBy": [ { "type": "uri", @@ -36788,7 +35143,6 @@ "md5": "3911b9c4faaf58e952ed484b5df29e17", "pid": "1183057687", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1183057687", "identifiedBy": [ { "type": "uri", @@ -36805,7 +35159,6 @@ "pid": "1183836740", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1183836740", "identifiedBy": [ { "type": "uri", @@ -36831,7 +35184,6 @@ "md5": "66dcdb07ba668aad70ba3d1f27b37699", "pid": "1184599297", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1184599297", "identifiedBy": [ { "type": "uri", @@ -36858,7 +35210,6 @@ "md5": "6563bde6ca42e94b2398514cb4e61d19", "pid": "1184634262", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1184634262", "identifiedBy": [ { "type": "uri", @@ -36874,7 +35225,6 @@ "md5": "f89c39e576c264604715aa214c704957", "pid": "1184827516", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1184827516", "identifiedBy": [ { "type": "uri", @@ -36898,7 +35248,6 @@ "md5": "c052af8abd2ce39cbb866d3af1e244e5", "pid": "1185183302", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1185183302", "identifiedBy": [ { "type": "uri", @@ -36915,7 +35264,6 @@ "pid": "1185191275", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1185191275", "identifiedBy": [ { "type": "uri", @@ -36933,7 +35281,6 @@ "pid": "118531867", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/118531867", "identifiedBy": [ { "type": "uri", @@ -36982,7 +35329,6 @@ "pid": "118544291X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/118544291X", "identifiedBy": [ { "type": "uri", @@ -37010,7 +35356,6 @@ "pid": "1185450025", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1185450025", "identifiedBy": [ { "type": "uri", @@ -37030,7 +35375,6 @@ "pid": "118553615", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/118553615", "identifiedBy": [ { "type": "uri", @@ -37091,7 +35435,6 @@ "md5": "e26b30f229cda736d2aafac41e8e888b", "pid": "118561693", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/118561693", "identifiedBy": [ { "type": "uri", @@ -37113,7 +35456,6 @@ "md5": "4987a65f4b99e4824041336482d490ad", "pid": "1186072571", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1186072571", "identifiedBy": [ { "type": "uri", @@ -37129,7 +35471,6 @@ "md5": "4a8757afef07186367ff99c1eeb2591e", "pid": "118608619X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/118608619X", "identifiedBy": [ { "type": "uri", @@ -37145,7 +35486,6 @@ "md5": "568c5ab158987f25c4fc5b278f81753d", "pid": "118684264", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/118684264", "identifiedBy": [ { "type": "uri", @@ -37173,7 +35513,6 @@ "pid": "1187151726", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1187151726", "identifiedBy": [ { "type": "uri", @@ -37192,7 +35531,6 @@ "md5": "29bf59cae3bb60ee27cdb47bda467abb", "pid": "118716328", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/118716328", "identifiedBy": [ { "type": "uri", @@ -37221,7 +35559,6 @@ "pid": "1187368121", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1187368121", "identifiedBy": [ { "type": "uri", @@ -37239,7 +35576,6 @@ "pid": "1187537691", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1187537691", "identifiedBy": [ { "type": "uri", @@ -37257,7 +35593,6 @@ "pid": "1187670472", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1187670472", "identifiedBy": [ { "type": "uri", @@ -37274,7 +35609,6 @@ "md5": "38953e75787166ec8b169cdfb84441a5", "pid": "1187679194", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1187679194", "identifiedBy": [ { "type": "uri", @@ -37303,7 +35637,6 @@ "pid": "1187985945", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1187985945", "identifiedBy": [ { "type": "uri", @@ -37340,7 +35673,6 @@ "pid": "118818805", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/118818805", "identifiedBy": [ { "type": "uri", @@ -37381,7 +35713,6 @@ "md5": "5ca32740623ff335625631e58a4f99ed", "pid": "118842218", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/118842218", "identifiedBy": [ { "type": "uri", @@ -37403,7 +35734,6 @@ "pid": "1188483552", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1188483552", "identifiedBy": [ { "type": "uri", @@ -37427,7 +35757,6 @@ "pid": "118857703", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/118857703", "identifiedBy": [ { "type": "uri", @@ -37452,7 +35781,6 @@ "pid": "1188583360", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1188583360", "identifiedBy": [ { "type": "uri", @@ -37481,7 +35809,6 @@ "pid": "118865900", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/118865900", "identifiedBy": [ { "type": "uri", @@ -37508,7 +35835,6 @@ "pid": "118873768", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/118873768", "identifiedBy": [ { "type": "uri", @@ -37534,7 +35860,6 @@ "md5": "dcbed3e2f3d4501b3f9a0a005f520b80", "pid": "1188747894", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1188747894", "identifiedBy": [ { "type": "uri", @@ -37552,7 +35877,6 @@ "md5": "dad46facbc9f583a43673b4d2d5acfce", "pid": "118908642", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/118908642", "identifiedBy": [ { "type": "uri", @@ -37571,7 +35895,6 @@ "pid": "1189098970", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1189098970", "identifiedBy": [ { "type": "uri", @@ -37592,7 +35915,6 @@ "md5": "b19dfd127cfddf41ff46f04f0a2c8c8f", "pid": "118914634", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/118914634", "identifiedBy": [ { "type": "uri", @@ -37620,7 +35942,6 @@ "md5": "fdf41c04437d54ed282e3de332af1694", "pid": "1189236710", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1189236710", "identifiedBy": [ { "type": "uri", @@ -37651,7 +35972,6 @@ "pid": "1189274361", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1189274361", "identifiedBy": [ { "type": "uri", @@ -37674,7 +35994,6 @@ "pid": "118960032", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/118960032", "identifiedBy": [ { "type": "uri", @@ -37702,7 +36021,6 @@ "pid": "118960308X", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/118960308X", "identifiedBy": [ { "type": "uri", @@ -37719,7 +36037,6 @@ "md5": "031327927ec80ff83762254a0291ab2d", "pid": "118995316", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/118995316", "identifiedBy": [ { "type": "uri", @@ -37746,7 +36063,6 @@ "pid": "1190043440", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1190043440", "identifiedBy": [ { "type": "uri", @@ -37763,7 +36079,6 @@ "md5": "00f0928cd5fa5470f31e272de68c2c30", "pid": "119007460", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/119007460", "identifiedBy": [ { "type": "uri", @@ -37825,7 +36140,6 @@ "pid": "119009307", "type": "bf:Person", "qualifier": "Deira, Ko\u0308nig", - "identifier": "http://d-nb.info/gnd/119009307", "identifiedBy": [ { "type": "uri", @@ -37842,7 +36156,6 @@ "md5": "4d8e1873c701db3d3bc25ccc20767607", "pid": "1190205149", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1190205149", "identifiedBy": [ { "type": "uri", @@ -37862,7 +36175,6 @@ "md5": "4e4cd0c543dcfad553a88f57a6b32a8a", "pid": "119022826", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/119022826", "identifiedBy": [ { "type": "uri", @@ -37882,7 +36194,6 @@ "md5": "362bb24e0d5ce6dcedff7029294f12a5", "pid": "119033437", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/119033437", "identifiedBy": [ { "type": "uri", @@ -37902,7 +36213,6 @@ "md5": "81d483d26fad4d0421abd0d1c98b128f", "pid": "1190386577", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1190386577", "identifiedBy": [ { "type": "uri", @@ -37927,7 +36237,6 @@ "pid": "1190392402", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1190392402", "identifiedBy": [ { "type": "uri", @@ -37943,7 +36252,6 @@ "md5": "7a3b56cb8fcd9f1b46d27310204e6174", "pid": "11904241X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/11904241X", "identifiedBy": [ { "type": "uri", @@ -37974,7 +36282,6 @@ "pid": "1190664518", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1190664518", "identifiedBy": [ { "type": "uri", @@ -37996,7 +36303,6 @@ "md5": "4ca7a77a44f6976aa821613856064235", "pid": "1190675692", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1190675692", "identifiedBy": [ { "type": "uri", @@ -38012,7 +36318,6 @@ "md5": "9b802b0a1ac89e521233d720ca3fca13", "pid": "119077671", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/119077671", "identifiedBy": [ { "type": "uri", @@ -38032,7 +36337,6 @@ "md5": "1a20cfddf3a1bb19f9720bfa3298fae2", "pid": "1190845555", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1190845555", "identifiedBy": [ { "type": "uri", @@ -38051,7 +36355,6 @@ "pid": "1190905671", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1190905671", "identifiedBy": [ { "type": "uri", @@ -38067,7 +36370,6 @@ "pid": "119090943X", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/119090943X", "identifiedBy": [ { "type": "uri", @@ -38089,7 +36391,6 @@ "md5": "01e7c98e5437acbc7fee17628a848d08", "pid": "119136228", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/119136228", "identifiedBy": [ { "type": "uri", @@ -38115,7 +36416,6 @@ "md5": "6bafa6fe22757698942cc53d74bdda34", "pid": "119161796", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/119161796", "identifiedBy": [ { "type": "uri", @@ -38143,7 +36443,6 @@ "pid": "1191853187", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1191853187", "identifiedBy": [ { "type": "uri", @@ -38160,7 +36459,6 @@ "pid": "119219816", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/119219816", "identifiedBy": [ { "type": "uri", @@ -38181,7 +36479,6 @@ "pid": "1192403959", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1192403959", "identifiedBy": [ { "type": "uri", @@ -38209,7 +36506,6 @@ "md5": "87b1cd018e9a9834c19b808d4c9c1ba9", "pid": "1192518470", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1192518470", "identifiedBy": [ { "type": "uri", @@ -38237,7 +36533,6 @@ "pid": "119255537", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/119255537", "identifiedBy": [ { "type": "uri", @@ -38263,7 +36558,6 @@ "md5": "9a542df2c2621cdd24018df9c9292e2f", "pid": "1192852273", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1192852273", "identifiedBy": [ { "type": "uri", @@ -38287,7 +36581,6 @@ "pid": "1192950399", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1192950399", "identifiedBy": [ { "type": "uri", @@ -38305,7 +36598,6 @@ "pid": "1193659566", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1193659566", "identifiedBy": [ { "type": "uri", @@ -38322,7 +36614,6 @@ "pid": "1193660688", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1193660688", "identifiedBy": [ { "type": "uri", @@ -38344,7 +36635,6 @@ "md5": "0cab0de1579c5d56b9a33d3e2d553b67", "pid": "1193684374", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1193684374", "identifiedBy": [ { "type": "uri", @@ -38362,7 +36652,6 @@ "pid": "1193701163", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1193701163", "identifiedBy": [ { "type": "uri", @@ -38391,7 +36680,6 @@ "pid": "119380439", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/119380439", "identifiedBy": [ { "type": "uri", @@ -38418,7 +36706,6 @@ "md5": "29a7e912adc66dabd88e817de382bebb", "pid": "119411679", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/119411679", "identifiedBy": [ { "type": "uri", @@ -38440,7 +36727,6 @@ "pid": "1194409997", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1194409997", "identifiedBy": [ { "type": "uri", @@ -38466,7 +36752,6 @@ "pid": "119443988", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/119443988", "identifiedBy": [ { "type": "uri", @@ -38492,7 +36777,6 @@ "md5": "eca5fc5aa8a03253fe4629eb103af81e", "pid": "119464942", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/119464942", "identifiedBy": [ { "type": "uri", @@ -38527,7 +36811,6 @@ "md5": "48dbf945d3e7d40349ebf236b55ff266", "pid": "1194663192", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1194663192", "identifiedBy": [ { "type": "uri", @@ -38558,7 +36841,6 @@ "language": [ "ita" ], - "identifier": "http://d-nb.info/gnd/11947428X", "identifiedBy": [ { "type": "uri", @@ -38579,7 +36861,6 @@ "md5": "21fdd81bcac6a6596e32e4e0b6ec0cc0", "pid": "119499363", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/119499363", "identifiedBy": [ { "type": "uri", @@ -38601,7 +36882,6 @@ "md5": "c0e06b859603d4ab4f25d5d2d6729843", "pid": "119508516", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/119508516", "identifiedBy": [ { "type": "uri", @@ -38622,7 +36902,6 @@ "language": [ "yid" ], - "identifier": "http://d-nb.info/gnd/119537087", "identifiedBy": [ { "type": "uri", @@ -38691,7 +36970,6 @@ "pid": "119552914", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/119552914", "identifiedBy": [ { "type": "uri", @@ -38709,7 +36987,6 @@ "md5": "a64d7d39f8b6bebd5944e1ea102ab3e6", "pid": "119559382", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/119559382", "identifiedBy": [ { "type": "uri", @@ -38731,7 +37008,6 @@ "pid": "1195625049", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1195625049", "identifiedBy": [ { "type": "uri", @@ -38749,7 +37025,6 @@ "pid": "1195806868", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1195806868", "identifiedBy": [ { "type": "uri", @@ -38771,7 +37046,6 @@ "pid": "1196648964", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1196648964", "identifiedBy": [ { "type": "uri", @@ -38797,7 +37071,6 @@ "md5": "6a100ee1f57e4d1fcaa292eba2eeff0f", "pid": "119724952", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/119724952", "identifiedBy": [ { "type": "uri", @@ -38815,7 +37088,6 @@ "md5": "7eb89b82a893b3c889d28a02b825b0c7", "pid": "1197312137", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1197312137", "identifiedBy": [ { "type": "uri", @@ -38832,7 +37104,6 @@ "md5": "251fb0fdb038f374697d6f5c39c2f626", "pid": "1197337660", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1197337660", "identifiedBy": [ { "type": "uri", @@ -38854,7 +37125,6 @@ "md5": "909abf531fd58d659843c7fd0535533a", "pid": "1197621814", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1197621814", "identifiedBy": [ { "type": "uri", @@ -38870,7 +37140,6 @@ "md5": "ce2176c814233a2e39e7ff9fe6d42a52", "pid": "1197715096", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1197715096", "identifiedBy": [ { "type": "uri", @@ -38895,7 +37164,6 @@ "pid": "1197826912", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1197826912", "identifiedBy": [ { "type": "uri", @@ -38911,7 +37179,6 @@ "md5": "cbabdb2000e206e60d627199226bdaf5", "pid": "11982387X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/11982387X", "identifiedBy": [ { "type": "uri", @@ -38935,7 +37202,6 @@ "md5": "1ef30dc338ff7bc1bf524620eef412dd", "pid": "1198439084", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1198439084", "identifiedBy": [ { "type": "uri", @@ -38959,7 +37225,6 @@ "md5": "60185d4283c215301a56af55c5b09713", "pid": "11987251X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/11987251X", "identifiedBy": [ { "type": "uri", @@ -38978,7 +37243,6 @@ "pid": "1199011495", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1199011495", "identifiedBy": [ { "type": "uri", @@ -39005,7 +37269,6 @@ "pid": "1199119393", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1199119393", "identifiedBy": [ { "type": "uri", @@ -39032,7 +37295,6 @@ "pid": "1199276545", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1199276545", "identifiedBy": [ { "type": "uri", @@ -39064,7 +37326,6 @@ "pid": "1199967009", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1199967009", "identifiedBy": [ { "type": "uri", @@ -39089,7 +37350,6 @@ "pid": "1200376331", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1200376331", "identifiedBy": [ { "type": "uri", @@ -39108,7 +37368,6 @@ "md5": "0c5f1232a3e74cee6ede2b647c5c8460", "pid": "1200558375", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1200558375", "identifiedBy": [ { "type": "uri", @@ -39126,7 +37385,6 @@ "pid": "120095785", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/120095785", "identifiedBy": [ { "type": "uri", @@ -39156,7 +37414,6 @@ "pid": "1201178835", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1201178835", "identifiedBy": [ { "type": "uri", @@ -39183,7 +37440,6 @@ "pid": "120175118", "type": "bf:Person", "qualifier": "Papa", - "identifier": "http://d-nb.info/gnd/120175118", "numeration": "VIII.", "identifiedBy": [ { @@ -39215,7 +37471,6 @@ "pid": "120175533", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/120175533", "identifiedBy": [ { "type": "uri", @@ -39234,7 +37489,6 @@ "pid": "1201779243", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1201779243", "identifiedBy": [ { "type": "uri", @@ -39264,7 +37518,6 @@ "pid": "1201917980", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1201917980", "identifiedBy": [ { "type": "uri", @@ -39286,7 +37539,6 @@ "md5": "197f8282dfd23c285e724de7914119e7", "pid": "120249561", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/120249561", "identifiedBy": [ { "type": "uri", @@ -39332,7 +37584,6 @@ "pid": "120268081X", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/120268081X", "identifiedBy": [ { "type": "uri", @@ -39347,7 +37598,6 @@ "md5": "7233351fca10a89943d4d97555fdc8ea", "pid": "120284952", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/120284952", "identifiedBy": [ { "type": "uri", @@ -39373,7 +37623,6 @@ "md5": "adb177b05a5b280c521c81b35a86d65a", "pid": "1202884679", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1202884679", "identifiedBy": [ { "type": "uri", @@ -39398,7 +37647,6 @@ "md5": "d40ebd75ede1eb03725217eb84c02350", "pid": "12031603X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/12031603X", "identifiedBy": [ { "type": "uri", @@ -39415,7 +37663,6 @@ "md5": "5fe45415f9f273151d38d21cac0f357b", "pid": "120343525", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/120343525", "identifiedBy": [ { "type": "uri", @@ -39434,7 +37681,6 @@ "md5": "abd517ae24b0566c2128f3b0a6d16e69", "pid": "120355973", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/120355973", "identifiedBy": [ { "type": "uri", @@ -39454,7 +37700,6 @@ "pid": "1203576099", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1203576099", "identifiedBy": [ { "type": "uri", @@ -39477,7 +37722,6 @@ "pid": "1203731949", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1203731949", "identifiedBy": [ { "type": "uri", @@ -39509,7 +37753,6 @@ "pid": "1204063087", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1204063087", "identifiedBy": [ { "type": "uri", @@ -39543,7 +37786,6 @@ "pid": "120415693X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/120415693X", "identifiedBy": [ { "type": "uri", @@ -39567,7 +37809,6 @@ "md5": "738c8b32986d24def3f475d5f4bfca0d", "pid": "1204462666", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1204462666", "identifiedBy": [ { "type": "uri", @@ -39587,7 +37828,6 @@ "md5": "73df5630d52a9c344528ac6b9300602e", "pid": "120473801", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/120473801", "identifiedBy": [ { "type": "uri", @@ -39615,7 +37855,6 @@ "md5": "00d795de7bfb047228c515a0c5c11466", "pid": "1204866740", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1204866740", "identifiedBy": [ { "type": "uri", @@ -39633,7 +37872,6 @@ "pid": "1204875901", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1204875901", "identifiedBy": [ { "type": "uri", @@ -39657,7 +37895,6 @@ "md5": "c05f36b8c36dec42f4911c86bc3c59c0", "pid": "120498464", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/120498464", "identifiedBy": [ { "type": "uri", @@ -39677,7 +37914,6 @@ "pid": "120539544X", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/120539544X", "identifiedBy": [ { "type": "uri", @@ -39700,7 +37936,6 @@ "md5": "7e231c068298071367a51d1719761585", "pid": "120543125", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/120543125", "identifiedBy": [ { "type": "uri", @@ -39729,7 +37964,6 @@ "pid": "120554682", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/120554682", "identifiedBy": [ { "type": "uri", @@ -39754,7 +37988,6 @@ "eng", "ger" ], - "identifier": "http://d-nb.info/gnd/1205764232", "identifiedBy": [ { "type": "uri", @@ -39770,7 +38003,6 @@ "pid": "1205836233", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1205836233", "identifiedBy": [ { "type": "uri", @@ -39794,7 +38026,6 @@ "md5": "bdcd00870934efbe6da94ad6976c2dd0", "pid": "120596067", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/120596067", "identifiedBy": [ { "type": "uri", @@ -39820,7 +38051,6 @@ "md5": "b153f529bdb8eafc8b0456404592f61d", "pid": "1206199024", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1206199024", "identifiedBy": [ { "type": "uri", @@ -39845,7 +38075,6 @@ "pid": "1206214643", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1206214643", "identifiedBy": [ { "type": "uri", @@ -39871,7 +38100,6 @@ "pid": "1206297964", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1206297964", "identifiedBy": [ { "type": "uri", @@ -39886,7 +38114,6 @@ "md5": "bb253f408a759b771878285609f401f0", "pid": "120661144", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/120661144", "identifiedBy": [ { "type": "uri", @@ -39908,7 +38135,6 @@ "pid": "1206889632", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1206889632", "identifiedBy": [ { "type": "uri", @@ -39926,7 +38152,6 @@ "pid": "1206932619", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1206932619", "identifiedBy": [ { "type": "uri", @@ -39963,7 +38188,6 @@ "pid": "120704463", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/120704463", "identifiedBy": [ { "type": "uri", @@ -39984,7 +38208,6 @@ "md5": "c7b17a1f3084cc82081d15228b972281", "pid": "1207293849", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1207293849", "identifiedBy": [ { "type": "uri", @@ -40008,7 +38231,6 @@ "pid": "1207338478", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1207338478", "identifiedBy": [ { "type": "uri", @@ -40030,7 +38252,6 @@ "pid": "1207445045", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1207445045", "identifiedBy": [ { "type": "uri", @@ -40048,7 +38269,6 @@ "pid": "1207474568", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1207474568", "identifiedBy": [ { "type": "uri", @@ -40071,7 +38291,6 @@ "md5": "f96f34f7ae82824b8049c654802edf31", "pid": "120756455", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/120756455", "identifiedBy": [ { "type": "uri", @@ -40112,7 +38331,6 @@ "md5": "19398d332c4abab01ea1b5e2a51688c9", "pid": "120759241", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/120759241", "identifiedBy": [ { "type": "uri", @@ -40132,7 +38350,6 @@ "pid": "120824261X", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/120824261X", "identifiedBy": [ { "type": "uri", @@ -40148,7 +38365,6 @@ "md5": "bcf639a370142f220462167588efd8f9", "pid": "1208406337", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1208406337", "identifiedBy": [ { "type": "uri", @@ -40166,7 +38382,6 @@ "pid": "1208648632", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1208648632", "identifiedBy": [ { "type": "uri", @@ -40185,7 +38400,6 @@ "md5": "e401b8146dc2ee07f1a493738598f9ca", "pid": "1208728474", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1208728474", "identifiedBy": [ { "type": "uri", @@ -40213,7 +38427,6 @@ "md5": "03f3dd2ede7ce8f7ab92bed00099985b", "pid": "1208923765", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1208923765", "identifiedBy": [ { "type": "uri", @@ -40233,7 +38446,6 @@ "pid": "1209087162", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1209087162", "identifiedBy": [ { "type": "uri", @@ -40263,7 +38475,6 @@ "md5": "d66bbd1bf4ad5f2b69d192a39171fb18", "pid": "120917661", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/120917661", "identifiedBy": [ { "type": "uri", @@ -40282,7 +38493,6 @@ "md5": "511ee0181ecc6e3f5cab44fece6a30ab", "pid": "1209584417", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1209584417", "identifiedBy": [ { "type": "uri", @@ -40307,7 +38517,6 @@ "pid": "1209711753", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1209711753", "identifiedBy": [ { "type": "uri", @@ -40330,7 +38539,6 @@ "md5": "f0f06e001c7c3a91b50580fab15efaca", "pid": "120981238", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/120981238", "identifiedBy": [ { "type": "uri", @@ -40349,7 +38557,6 @@ "md5": "905c611b993698de12db44af05346dce", "pid": "1209907445", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1209907445", "identifiedBy": [ { "type": "uri", @@ -40366,7 +38573,6 @@ "pid": "1209954184", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1209954184", "identifiedBy": [ { "type": "uri", @@ -40383,7 +38589,6 @@ "pid": "1209976218", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1209976218", "identifiedBy": [ { "type": "uri", @@ -40403,7 +38608,6 @@ "pid": "121017206", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/121017206", "identifiedBy": [ { "type": "uri", @@ -40435,7 +38639,6 @@ "pid": "121042413", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/121042413", "identifiedBy": [ { "type": "uri", @@ -40461,7 +38664,6 @@ "md5": "0ace56716bddb0030ca8793a751f0f79", "pid": "121068439", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/121068439", "identifiedBy": [ { "type": "uri", @@ -40480,7 +38682,6 @@ "md5": "34b661b1880cd2fa9710c9ac4fe87616", "pid": "1210872188", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1210872188", "identifiedBy": [ { "type": "uri", @@ -40508,7 +38709,6 @@ "pid": "1210955601", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1210955601", "identifiedBy": [ { "type": "uri", @@ -40532,7 +38732,6 @@ "pid": "1210962721", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1210962721", "identifiedBy": [ { "type": "uri", @@ -40572,7 +38771,6 @@ "pid": "1211035360", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1211035360", "identifiedBy": [ { "type": "uri", @@ -40595,7 +38793,6 @@ "pid": "1211358380", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1211358380", "identifiedBy": [ { "type": "uri", @@ -40612,7 +38809,6 @@ "pid": "1211576035", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1211576035", "identifiedBy": [ { "type": "uri", @@ -40639,7 +38835,6 @@ "md5": "7ae5f4172f3e1e3e7810415488a322b7", "pid": "121163393", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/121163393", "identifiedBy": [ { "type": "uri", @@ -40667,7 +38862,6 @@ "pid": "1211685918", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1211685918", "identifiedBy": [ { "type": "uri", @@ -40687,7 +38881,6 @@ "pid": "1211707628", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1211707628", "identifiedBy": [ { "type": "uri", @@ -40709,7 +38902,6 @@ "pid": "1211767892", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1211767892", "identifiedBy": [ { "type": "uri", @@ -40731,7 +38923,6 @@ "pid": "1211775216", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1211775216", "identifiedBy": [ { "type": "uri", @@ -40750,7 +38941,6 @@ "pid": "1212074939", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1212074939", "identifiedBy": [ { "type": "uri", @@ -40767,7 +38957,6 @@ "pid": "1212115716", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1212115716", "identifiedBy": [ { "type": "uri", @@ -40786,7 +38975,6 @@ "md5": "c606884b9aaa847881e977ed0f9c749e", "pid": "1212533003", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1212533003", "identifiedBy": [ { "type": "uri", @@ -40802,7 +38990,6 @@ "md5": "040c2c55035b5bb3e5f5381a575d5613", "pid": "1212537750", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1212537750", "identifiedBy": [ { "type": "uri", @@ -40826,7 +39013,6 @@ "pid": "121259927", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/121259927", "identifiedBy": [ { "type": "uri", @@ -40861,7 +39047,6 @@ "pid": "1212602552", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1212602552", "identifiedBy": [ { "type": "uri", @@ -40883,7 +39068,6 @@ "pid": "1213248760", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1213248760", "identifiedBy": [ { "type": "uri", @@ -40902,7 +39086,6 @@ "pid": "1213263360", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1213263360", "identifiedBy": [ { "type": "uri", @@ -40919,7 +39102,6 @@ "pid": "1213396700", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1213396700", "identifiedBy": [ { "type": "uri", @@ -40935,7 +39117,6 @@ "md5": "198e252d06a4f3184c3f718b11421676", "pid": "1213491738", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1213491738", "identifiedBy": [ { "type": "uri", @@ -40962,7 +39143,6 @@ "pid": "121376621", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/121376621", "identifiedBy": [ { "type": "uri", @@ -40991,7 +39171,6 @@ "pid": "121432467", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/121432467", "identifiedBy": [ { "type": "uri", @@ -41020,7 +39199,6 @@ "pid": "121455637", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/121455637", "identifiedBy": [ { "type": "uri", @@ -41041,7 +39219,6 @@ "pid": "1215224869", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1215224869", "identifiedBy": [ { "type": "uri", @@ -41063,7 +39240,6 @@ "pid": "1215239556", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1215239556", "identifiedBy": [ { "type": "uri", @@ -41078,7 +39254,6 @@ "md5": "0f40feacbbaee5c3566c59ab8a5de917", "pid": "121552756", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/121552756", "identifiedBy": [ { "type": "uri", @@ -41103,7 +39278,6 @@ "md5": "8b2fad236442ff170653b5ef2599cd62", "pid": "1215719418", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1215719418", "identifiedBy": [ { "type": "uri", @@ -41127,7 +39301,6 @@ "md5": "6478a664d565ebac2ba373c3a858fb8f", "pid": "1216057184", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1216057184", "identifiedBy": [ { "type": "uri", @@ -41150,7 +39323,6 @@ "pid": "1216511039", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1216511039", "identifiedBy": [ { "type": "uri", @@ -41175,7 +39347,6 @@ "md5": "a2a806e1891800c43627d5d2a819c998", "pid": "12167410X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/12167410X", "identifiedBy": [ { "type": "uri", @@ -41195,7 +39366,6 @@ "pid": "1217064974", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1217064974", "identifiedBy": [ { "type": "uri", @@ -41213,7 +39383,6 @@ "md5": "8c4dc4173ae37b4deaad4c67e7056a54", "pid": "121710696", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/121710696", "identifiedBy": [ { "type": "uri", @@ -41240,7 +39409,6 @@ "pid": "12172249X", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/12172249X", "identifiedBy": [ { "type": "uri", @@ -41260,7 +39428,6 @@ "md5": "8d56783126d0cba2ca8ee5ab412ed450", "pid": "12173692X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/12173692X", "identifiedBy": [ { "type": "uri", @@ -41280,7 +39447,6 @@ "pid": "121808173", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/121808173", "identifiedBy": [ { "type": "uri", @@ -41305,7 +39471,6 @@ "md5": "fdf7951c32f75a4852c1cb6e2bc7bc3a", "pid": "1218087730", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1218087730", "identifiedBy": [ { "type": "uri", @@ -41333,7 +39498,6 @@ "pid": "1218187433", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1218187433", "identifiedBy": [ { "type": "uri", @@ -41354,7 +39518,6 @@ "pid": "1218379219", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1218379219", "identifiedBy": [ { "type": "uri", @@ -41385,7 +39548,6 @@ "md5": "202b25427113bfd83463df9624e6f43f", "pid": "1218472189", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1218472189", "identifiedBy": [ { "type": "uri", @@ -41404,7 +39566,6 @@ "md5": "113077cb83e3761ddf156acdc2556b21", "pid": "121855775", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/121855775", "identifiedBy": [ { "type": "uri", @@ -41424,7 +39585,6 @@ "md5": "216a6bee00725efcddf609374bb6c4cd", "pid": "1218603739", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1218603739", "identifiedBy": [ { "type": "uri", @@ -41440,7 +39600,6 @@ "pid": "1218605995", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1218605995", "identifiedBy": [ { "type": "uri", @@ -41456,7 +39615,6 @@ "pid": "1218696680", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1218696680", "identifiedBy": [ { "type": "uri", @@ -41475,7 +39633,6 @@ "md5": "baf5651a0be235b3436a59b80a5e8ef3", "pid": "1219001767", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1219001767", "identifiedBy": [ { "type": "uri", @@ -41492,7 +39649,6 @@ "pid": "1219020982", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1219020982", "identifiedBy": [ { "type": "uri", @@ -41513,7 +39669,6 @@ "pid": "121953823X", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/121953823X", "identifiedBy": [ { "type": "uri", @@ -41530,7 +39685,6 @@ "pid": "1219543527", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1219543527", "identifiedBy": [ { "type": "uri", @@ -41552,7 +39706,6 @@ "md5": "6487851d4807467f9e376fb3d955fbf8", "pid": "121978338", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/121978338", "identifiedBy": [ { "type": "uri", @@ -41579,7 +39732,6 @@ "md5": "bd4309121f03bf0f11260ab77e627acb", "pid": "1219884790", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1219884790", "identifiedBy": [ { "type": "uri", @@ -41600,7 +39752,6 @@ "pid": "1219946478", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1219946478", "identifiedBy": [ { "type": "uri", @@ -41616,7 +39767,6 @@ "pid": "1220237183", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1220237183", "identifiedBy": [ { "type": "uri", @@ -41645,7 +39795,6 @@ "language": [ "eng" ], - "identifier": "http://d-nb.info/gnd/1220523410", "identifiedBy": [ { "type": "uri", @@ -41670,7 +39819,6 @@ "md5": "ceb602d1b8e7a9fce0e4c2d67f0d9fc5", "pid": "1220644811", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1220644811", "identifiedBy": [ { "type": "uri", @@ -41687,7 +39835,6 @@ "pid": "1220778273", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1220778273", "identifiedBy": [ { "type": "uri", @@ -41712,7 +39859,6 @@ "pid": "1221205536", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1221205536", "identifiedBy": [ { "type": "uri", @@ -41733,7 +39879,6 @@ "pid": "1221416952", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1221416952", "identifiedBy": [ { "type": "uri", @@ -41751,7 +39896,6 @@ "pid": "1221561332", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1221561332", "identifiedBy": [ { "type": "uri", @@ -41779,7 +39923,6 @@ "pid": "1221637401", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1221637401", "identifiedBy": [ { "type": "uri", @@ -41802,7 +39945,6 @@ "pid": "1221643304", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1221643304", "identifiedBy": [ { "type": "uri", @@ -41819,7 +39961,6 @@ "md5": "ce5639936038a7e830f5908870f21e6a", "pid": "1221680293", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1221680293", "identifiedBy": [ { "type": "uri", @@ -41836,7 +39977,6 @@ "md5": "1160a6a9a6051f749ff5d857cb30a2e0", "pid": "1221818635", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1221818635", "identifiedBy": [ { "type": "uri", @@ -41855,7 +39995,6 @@ "md5": "4cb85bd7cfcb4f321d8fa486856c9765", "pid": "1221985515", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1221985515", "identifiedBy": [ { "type": "uri", @@ -41880,7 +40019,6 @@ "pid": "122214459X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/122214459X", "identifiedBy": [ { "type": "uri", @@ -41901,7 +40039,6 @@ "md5": "a61c5a4bd7c417af3be0114878743c69", "pid": "122244958", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/122244958", "identifiedBy": [ { "type": "uri", @@ -41928,7 +40065,6 @@ "pid": "1222466716", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1222466716", "identifiedBy": [ { "type": "uri", @@ -41944,7 +40080,6 @@ "pid": "1222736330", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1222736330", "identifiedBy": [ { "type": "uri", @@ -41962,7 +40097,6 @@ "pid": "122307364", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/122307364", "identifiedBy": [ { "type": "uri", @@ -41980,7 +40114,6 @@ "pid": "1223515273", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1223515273", "identifiedBy": [ { "type": "uri", @@ -42006,7 +40139,6 @@ "md5": "6042fdc8b86467347d52dfd5c5551bb5", "pid": "1223549372", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1223549372", "identifiedBy": [ { "type": "uri", @@ -42021,7 +40153,6 @@ "md5": "abb7322d918871d2249799b95441752f", "pid": "122397274", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/122397274", "identifiedBy": [ { "type": "uri", @@ -42037,7 +40168,6 @@ "md5": "8a838ef452bb125a36e151c335f0b314", "pid": "122416600", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/122416600", "identifiedBy": [ { "type": "uri", @@ -42057,7 +40187,6 @@ "pid": "1224690672", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1224690672", "identifiedBy": [ { "type": "uri", @@ -42083,7 +40212,6 @@ "md5": "8571417c3e7ef76bdc73329b7f2a4be4", "pid": "1225165792", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1225165792", "identifiedBy": [ { "type": "uri", @@ -42115,7 +40243,6 @@ "pid": "1225314704", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1225314704", "identifiedBy": [ { "type": "uri", @@ -42140,7 +40267,6 @@ "pid": "1225318955", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1225318955", "identifiedBy": [ { "type": "uri", @@ -42166,7 +40292,6 @@ "pid": "1225369967", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1225369967", "identifiedBy": [ { "type": "uri", @@ -42188,7 +40313,6 @@ "md5": "10a0aab0dfa7b43e6c8e12976ad2acc7", "pid": "1225371562", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1225371562", "identifiedBy": [ { "type": "uri", @@ -42213,7 +40337,6 @@ "md5": "50cf21f7791f83107c0f5c8cd2a2b388", "pid": "122546016", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/122546016", "identifiedBy": [ { "type": "uri", @@ -42240,7 +40363,6 @@ "pid": "1225499038", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1225499038", "identifiedBy": [ { "type": "uri", @@ -42276,7 +40398,6 @@ "pid": "1225750350", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1225750350", "identifiedBy": [ { "type": "uri", @@ -42295,7 +40416,6 @@ "pid": "1225880351", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1225880351", "identifiedBy": [ { "type": "uri", @@ -42312,7 +40432,6 @@ "pid": "1226111009", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1226111009", "identifiedBy": [ { "type": "uri", @@ -42332,7 +40451,6 @@ "md5": "9b34000745b31f5d7d356d7cad110b26", "pid": "122616243", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/122616243", "identifiedBy": [ { "type": "uri", @@ -42352,7 +40470,6 @@ "pid": "1226168973", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1226168973", "identifiedBy": [ { "type": "uri", @@ -42379,7 +40496,6 @@ "pid": "1226343031", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1226343031", "identifiedBy": [ { "type": "uri", @@ -42398,7 +40514,6 @@ "md5": "842dbffe0001f5a351855a780c03a244", "pid": "1227063229", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1227063229", "identifiedBy": [ { "type": "uri", @@ -42416,7 +40531,6 @@ "pid": "122765052", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/122765052", "identifiedBy": [ { "type": "uri", @@ -42437,7 +40551,6 @@ "pid": "122787900", "type": "bf:Person", "qualifier": "Familie", - "identifier": "http://d-nb.info/gnd/122787900", "identifiedBy": [ { "type": "uri", @@ -42457,7 +40570,6 @@ "pid": "1228480222", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1228480222", "identifiedBy": [ { "type": "uri", @@ -42474,7 +40586,6 @@ "pid": "1228546541", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1228546541", "identifiedBy": [ { "type": "uri", @@ -42504,7 +40615,6 @@ "pid": "1228854041", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1228854041", "identifiedBy": [ { "type": "uri", @@ -42520,7 +40630,6 @@ "pid": "1228866244", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1228866244", "identifiedBy": [ { "type": "uri", @@ -42541,7 +40650,6 @@ "pid": "122919455X", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/122919455X", "identifiedBy": [ { "type": "uri", @@ -42561,7 +40669,6 @@ "pid": "122987870X", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/122987870X", "identifiedBy": [ { "type": "uri", @@ -42580,7 +40687,6 @@ "pid": "1230449663", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1230449663", "identifiedBy": [ { "type": "uri", @@ -42597,7 +40703,6 @@ "pid": "1230581847", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1230581847", "identifiedBy": [ { "type": "uri", @@ -42636,7 +40741,6 @@ "pid": "1230588736", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1230588736", "identifiedBy": [ { "type": "uri", @@ -42653,7 +40757,6 @@ "pid": "1230589619", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1230589619", "identifiedBy": [ { "type": "uri", @@ -42672,7 +40775,6 @@ "md5": "d38fc1e582ee5056d26f248ef933be26", "pid": "12307374X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/12307374X", "identifiedBy": [ { "type": "uri", @@ -42690,7 +40792,6 @@ "pid": "123090598", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/123090598", "identifiedBy": [ { "type": "uri", @@ -42707,7 +40808,6 @@ "md5": "f8e138ac0519907b5afa4e36bb3940c2", "pid": "1231012749", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1231012749", "identifiedBy": [ { "type": "uri", @@ -42735,7 +40835,6 @@ "md5": "fafe24b3de3086bcf09ea1e6618a5b8d", "pid": "1231084758", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1231084758", "identifiedBy": [ { "type": "uri", @@ -42753,7 +40852,6 @@ "pid": "123171770X", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/123171770X", "identifiedBy": [ { "type": "uri", @@ -42769,7 +40867,6 @@ "pid": "1232328308", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1232328308", "identifiedBy": [ { "type": "uri", @@ -42794,7 +40891,6 @@ "pid": "1232437530", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1232437530", "identifiedBy": [ { "type": "uri", @@ -42820,7 +40916,6 @@ "pid": "1232542377", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1232542377", "identifiedBy": [ { "type": "uri", @@ -42846,7 +40941,6 @@ "pid": "123269021X", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/123269021X", "identifiedBy": [ { "type": "uri", @@ -42862,7 +40956,6 @@ "md5": "216e7b96701f68cfe90ff099ea87c118", "pid": "123314348", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/123314348", "identifiedBy": [ { "type": "uri", @@ -42893,7 +40986,6 @@ "pid": "1233743082", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1233743082", "identifiedBy": [ { "type": "uri", @@ -42922,7 +41014,6 @@ "pid": "1233756877", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1233756877", "identifiedBy": [ { "type": "uri", @@ -42945,7 +41036,6 @@ "pid": "1233766767", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1233766767", "identifiedBy": [ { "type": "uri", @@ -42972,7 +41062,6 @@ "pid": "1233797700", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1233797700", "identifiedBy": [ { "type": "uri", @@ -42993,7 +41082,6 @@ "pid": "1234157845", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1234157845", "identifiedBy": [ { "type": "uri", @@ -43009,7 +41097,6 @@ "md5": "14f1435e1e122ecb944055fdb0eb065d", "pid": "1234276402", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1234276402", "identifiedBy": [ { "type": "uri", @@ -43032,7 +41119,6 @@ "pid": "1234416433", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1234416433", "identifiedBy": [ { "type": "uri", @@ -43052,7 +41138,6 @@ "language": [ "eng" ], - "identifier": "http://d-nb.info/gnd/123444578", "identifiedBy": [ { "type": "uri", @@ -43086,7 +41171,6 @@ "pid": "1235024172", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1235024172", "identifiedBy": [ { "type": "uri", @@ -43106,7 +41190,6 @@ "pid": "1235035301", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1235035301", "identifiedBy": [ { "type": "uri", @@ -43124,7 +41207,6 @@ "md5": "8093c1f9285b414712c98db961944eda", "pid": "123508193", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/123508193", "identifiedBy": [ { "type": "uri", @@ -43140,7 +41222,6 @@ "md5": "c2e19223bcfac88c898dc32b5905ee66", "pid": "123522315", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/123522315", "identifiedBy": [ { "type": "uri", @@ -43159,7 +41240,6 @@ "md5": "4b4807d650cfb72c9815de3feadb3924", "pid": "1235245071", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1235245071", "identifiedBy": [ { "type": "uri", @@ -43177,7 +41257,6 @@ "pid": "1235577384", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1235577384", "identifiedBy": [ { "type": "uri", @@ -43194,7 +41273,6 @@ "pid": "123571693", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/123571693", "identifiedBy": [ { "type": "uri", @@ -43221,7 +41299,6 @@ "md5": "d990510dd3d79ecb3538e66779a5d491", "pid": "123572817X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/123572817X", "identifiedBy": [ { "type": "uri", @@ -43252,7 +41329,6 @@ "pid": "1235805395", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1235805395", "identifiedBy": [ { "type": "uri", @@ -43272,7 +41348,6 @@ "pid": "1235864014", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1235864014", "identifiedBy": [ { "type": "uri", @@ -43296,7 +41371,6 @@ "pid": "1236151380", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1236151380", "identifiedBy": [ { "type": "uri", @@ -43316,7 +41390,6 @@ "language": [ "eng" ], - "identifier": "http://d-nb.info/gnd/123617286", "identifiedBy": [ { "type": "uri", @@ -43344,7 +41417,6 @@ "md5": "83e5b986c11a2836f728cceb7f19b48c", "pid": "123644372", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/123644372", "identifiedBy": [ { "type": "uri", @@ -43379,7 +41451,6 @@ "md5": "cf03828fed5a1067622829ddf8e00595", "pid": "1236649613", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1236649613", "identifiedBy": [ { "type": "uri", @@ -43408,7 +41479,6 @@ "md5": "bd904f640a3a5c7c053160b99527dcff", "pid": "123673208", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/123673208", "identifiedBy": [ { "type": "uri", @@ -43440,7 +41510,6 @@ "pid": "123686719X", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/123686719X", "identifiedBy": [ { "type": "uri", @@ -43456,7 +41525,6 @@ "pid": "1236915291", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1236915291", "identifiedBy": [ { "type": "uri", @@ -43480,7 +41548,6 @@ "md5": "b510dab08033d170281f044200d0b73d", "pid": "1237119766", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1237119766", "identifiedBy": [ { "type": "uri", @@ -43496,7 +41563,6 @@ "md5": "df18e0802a4289c0f96d2a2acbe263b2", "pid": "123718376", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/123718376", "identifiedBy": [ { "type": "uri", @@ -43523,7 +41589,6 @@ "pid": "1237506611", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1237506611", "identifiedBy": [ { "type": "uri", @@ -43539,7 +41604,6 @@ "md5": "57cc1f4339affb8fb832d108e076cbd1", "pid": "123768624", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/123768624", "identifiedBy": [ { "type": "uri", @@ -43559,7 +41623,6 @@ "pid": "1238027237", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1238027237", "identifiedBy": [ { "type": "uri", @@ -43576,7 +41639,6 @@ "md5": "ee2ba6a63eb826ac8d862ed99d277f70", "pid": "1238037844", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1238037844", "identifiedBy": [ { "type": "uri", @@ -43592,7 +41654,6 @@ "pid": "1238039944", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1238039944", "identifiedBy": [ { "type": "uri", @@ -43612,7 +41673,6 @@ "pid": "123806305", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/123806305", "identifiedBy": [ { "type": "uri", @@ -43636,7 +41696,6 @@ "pid": "1238167659", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1238167659", "identifiedBy": [ { "type": "uri", @@ -43654,7 +41713,6 @@ "pid": "123952425", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/123952425", "identifiedBy": [ { "type": "uri", @@ -43688,7 +41746,6 @@ "md5": "cc3e167883f06fc05764ba6011041ea3", "pid": "123954940", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/123954940", "identifiedBy": [ { "type": "uri", @@ -43709,7 +41766,6 @@ "pid": "1239691408", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1239691408", "identifiedBy": [ { "type": "uri", @@ -43737,7 +41793,6 @@ "md5": "dfc4b40e050d6034d61aad9e88cadfd3", "pid": "1240158319", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1240158319", "identifiedBy": [ { "type": "uri", @@ -43755,7 +41810,6 @@ "md5": "f5366ae5d4b1a9691ddc784344c14ee8", "pid": "124025064", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/124025064", "identifiedBy": [ { "type": "uri", @@ -43776,7 +41830,6 @@ "md5": "d19971d0ddb71df70290ef154a2a6456", "pid": "12402890X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/12402890X", "identifiedBy": [ { "type": "uri", @@ -43804,7 +41857,6 @@ "pid": "1240323492", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1240323492", "identifiedBy": [ { "type": "uri", @@ -43823,7 +41875,6 @@ "pid": "1240334206", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1240334206", "identifiedBy": [ { "type": "uri", @@ -43841,7 +41892,6 @@ "md5": "22e6457df42815dd34ea48849ca747e0", "pid": "124045790", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/124045790", "identifiedBy": [ { "type": "uri", @@ -43867,7 +41917,6 @@ "pid": "1240634323", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1240634323", "identifiedBy": [ { "type": "uri", @@ -43887,7 +41936,6 @@ "pid": "1240922175", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1240922175", "identifiedBy": [ { "type": "uri", @@ -43905,7 +41953,6 @@ "pid": "1241124949", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1241124949", "identifiedBy": [ { "type": "uri", @@ -43932,7 +41979,6 @@ "pid": "1241190755", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1241190755", "identifiedBy": [ { "type": "uri", @@ -43959,7 +42005,6 @@ "pid": "1241191921", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1241191921", "identifiedBy": [ { "type": "uri", @@ -43977,7 +42022,6 @@ "pid": "1241199418", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1241199418", "identifiedBy": [ { "type": "uri", @@ -43996,7 +42040,6 @@ "md5": "772e77ff4e2fae1813e9fa266d2bc5f9", "pid": "124206018", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/124206018", "identifiedBy": [ { "type": "uri", @@ -44023,7 +42066,6 @@ "md5": "4d8e1e7bd6f4cab82da81b23b2aa9f2d", "pid": "1242496343", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1242496343", "identifiedBy": [ { "type": "uri", @@ -44040,7 +42082,6 @@ "pid": "124250076", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/124250076", "identifiedBy": [ { "type": "uri", @@ -44087,7 +42128,6 @@ "md5": "0f3cbf6ec1f6e13e7360efe771be24a0", "pid": "124257070", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/124257070", "identifiedBy": [ { "type": "uri", @@ -44106,7 +42146,6 @@ "md5": "c6f69488ec4bda6de1633336df98ad2b", "pid": "124257151", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/124257151", "identifiedBy": [ { "type": "uri", @@ -44123,7 +42162,6 @@ "md5": "6b304bb286ea94786bcf9e1738bec25f", "pid": "124268512X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/124268512X", "identifiedBy": [ { "type": "uri", @@ -44147,7 +42185,6 @@ "md5": "4c8005fcc684ec9d15ade1233e067df5", "pid": "124271057", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/124271057", "identifiedBy": [ { "type": "uri", @@ -44167,7 +42204,6 @@ "md5": "fef56cdf1e5dc3052d9e5733b61cc6a1", "pid": "124284299", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/124284299", "identifiedBy": [ { "type": "uri", @@ -44208,7 +42244,6 @@ "pid": "1243013648", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1243013648", "identifiedBy": [ { "type": "uri", @@ -44229,7 +42264,6 @@ "pid": "124311861X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/124311861X", "identifiedBy": [ { "type": "uri", @@ -44251,7 +42285,6 @@ "pid": "124326764X", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/124326764X", "identifiedBy": [ { "type": "uri", @@ -44279,7 +42312,6 @@ "pid": "1243598751", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1243598751", "identifiedBy": [ { "type": "uri", @@ -44298,7 +42330,6 @@ "md5": "b17d2e6ad8b1ad079223e28fcc134c08", "pid": "124384196", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/124384196", "identifiedBy": [ { "type": "uri", @@ -44321,7 +42352,6 @@ "type": "bf:Person", "gender": "male", "qualifier": "de", - "identifier": "http://d-nb.info/gnd/1243856505", "identifiedBy": [ { "type": "uri", @@ -44338,7 +42368,6 @@ "md5": "ec8c4f2006629046ec9aa052fe375f0a", "pid": "12438644X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/12438644X", "identifiedBy": [ { "type": "uri", @@ -44354,7 +42383,6 @@ "md5": "38e637a45234be4cf4f862e1fe50109e", "pid": "1243882166", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1243882166", "identifiedBy": [ { "type": "uri", @@ -44369,7 +42397,6 @@ "md5": "99cbd002ad842e8dfcb3ff5c2b5d8b3a", "pid": "1243929332", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1243929332", "identifiedBy": [ { "type": "uri", @@ -44384,7 +42411,6 @@ "md5": "9632a06e882959e34e8360ea54f52328", "pid": "1243929464", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1243929464", "identifiedBy": [ { "type": "uri", @@ -44400,7 +42426,6 @@ "md5": "ae2d2556af4c9d06a43afad1123732f9", "pid": "124396488X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/124396488X", "identifiedBy": [ { "type": "uri", @@ -44419,7 +42444,6 @@ "md5": "b24deca1eddb16446754a94d8e71849b", "pid": "1243973145", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1243973145", "identifiedBy": [ { "type": "uri", @@ -44437,7 +42461,6 @@ "pid": "1244179469", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1244179469", "identifiedBy": [ { "type": "uri", @@ -44459,7 +42482,6 @@ "pid": "124423256", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/124423256", "identifiedBy": [ { "type": "uri", @@ -44481,7 +42503,6 @@ "pid": "124457711", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/124457711", "identifiedBy": [ { "type": "uri", @@ -44508,7 +42529,6 @@ "pid": "1244862096", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1244862096", "identifiedBy": [ { "type": "uri", @@ -44526,7 +42546,6 @@ "pid": "1244880027", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1244880027", "identifiedBy": [ { "type": "uri", @@ -44543,7 +42562,6 @@ "pid": "1245339214", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1245339214", "identifiedBy": [ { "type": "uri", @@ -44570,7 +42588,6 @@ "pid": "1245458760", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1245458760", "identifiedBy": [ { "type": "uri", @@ -44596,7 +42613,6 @@ "pid": "124566025X", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/124566025X", "identifiedBy": [ { "type": "uri", @@ -44625,7 +42641,6 @@ "pid": "1245874098", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1245874098", "identifiedBy": [ { "type": "uri", @@ -44641,7 +42656,6 @@ "md5": "20548c01858a29b0344735764f8cfef2", "pid": "124603106", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/124603106", "identifiedBy": [ { "type": "uri", @@ -44677,7 +42691,6 @@ "pid": "1246058642", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1246058642", "identifiedBy": [ { "type": "uri", @@ -44695,7 +42708,6 @@ "pid": "12465164X", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/12465164X", "identifiedBy": [ { "type": "uri", @@ -44732,7 +42744,6 @@ "pid": "124686583", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/124686583", "identifiedBy": [ { "type": "uri", @@ -44759,7 +42770,6 @@ "md5": "82413db746d6974085a4a5a73b9d592f", "pid": "124691560X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/124691560X", "identifiedBy": [ { "type": "uri", @@ -44778,7 +42788,6 @@ "pid": "124715311", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/124715311", "identifiedBy": [ { "type": "uri", @@ -44804,7 +42813,6 @@ "md5": "811d24ff3169df3a56b00052ddfbcca4", "pid": "124717764", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/124717764", "identifiedBy": [ { "type": "uri", @@ -44829,7 +42837,6 @@ "pid": "12473409X", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/12473409X", "identifiedBy": [ { "type": "uri", @@ -44868,7 +42875,6 @@ "md5": "ddd78ca045e8f05f9ceb2f2b3a498af0", "pid": "1247579077", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1247579077", "identifiedBy": [ { "type": "uri", @@ -44885,7 +42891,6 @@ "pid": "1247672352", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1247672352", "identifiedBy": [ { "type": "uri", @@ -44902,7 +42907,6 @@ "pid": "1248272013", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1248272013", "identifiedBy": [ { "type": "uri", @@ -44918,7 +42922,6 @@ "pid": "1248663217", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1248663217", "identifiedBy": [ { "type": "uri", @@ -44935,7 +42938,6 @@ "pid": "1248783271", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1248783271", "identifiedBy": [ { "type": "uri", @@ -44958,7 +42960,6 @@ "pid": "1249217156", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1249217156", "identifiedBy": [ { "type": "uri", @@ -44977,7 +42978,6 @@ "md5": "f0f55e11f86c86311e675cd8f6e817be", "pid": "124922511", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/124922511", "identifiedBy": [ { "type": "uri", @@ -45002,7 +43002,6 @@ "md5": "c4dfb36fc74f103ad2cee8dddc6906c9", "pid": "1249513502", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1249513502", "identifiedBy": [ { "type": "uri", @@ -45028,7 +43027,6 @@ "md5": "b81bca47785f52c546c09fd4b436cf21", "pid": "124962793", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/124962793", "identifiedBy": [ { "type": "uri", @@ -45047,7 +43045,6 @@ "md5": "7629fe37e4198e8d38368c2ca6747a38", "pid": "124969178", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/124969178", "identifiedBy": [ { "type": "uri", @@ -45074,7 +43071,6 @@ "pid": "1249776090", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1249776090", "identifiedBy": [ { "type": "uri", @@ -45090,7 +43086,6 @@ "md5": "40ab39316275676f1747bdded1b5cd8d", "pid": "1249789494", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1249789494", "identifiedBy": [ { "type": "uri", @@ -45110,7 +43105,6 @@ "pid": "1249795362", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1249795362", "identifiedBy": [ { "type": "uri", @@ -45131,7 +43125,6 @@ "pid": "124995136", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/124995136", "identifiedBy": [ { "type": "uri", @@ -45165,7 +43158,6 @@ "md5": "2babfd507bc7ac6ad49dc63ac4acdcbd", "pid": "125013981", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/125013981", "identifiedBy": [ { "type": "uri", @@ -45180,7 +43172,6 @@ "md5": "aa031dddfc9c00d156e093b5d5c4e23d", "pid": "1250280184", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1250280184", "identifiedBy": [ { "type": "uri", @@ -45196,7 +43187,6 @@ "md5": "fb1826af8f302b205ff080f37d45c334", "pid": "125037988", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/125037988", "identifiedBy": [ { "type": "uri", @@ -45214,7 +43204,6 @@ "pid": "125077683X", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/125077683X", "identifiedBy": [ { "type": "uri", @@ -45239,7 +43228,6 @@ "pid": "125085685X", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/125085685X", "identifiedBy": [ { "type": "uri", @@ -45267,7 +43255,6 @@ "language": [ "eng" ], - "identifier": "http://d-nb.info/gnd/1251284507", "identifiedBy": [ { "type": "uri", @@ -45295,7 +43282,6 @@ "pid": "125158103X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/125158103X", "identifiedBy": [ { "type": "uri", @@ -45325,7 +43311,6 @@ "pid": "1251903606", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1251903606", "identifiedBy": [ { "type": "uri", @@ -45341,7 +43326,6 @@ "pid": "125190419X", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/125190419X", "identifiedBy": [ { "type": "uri", @@ -45361,7 +43345,6 @@ "md5": "c6f694dc16df84a88980da6ec40fc3ac", "pid": "125224524", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/125224524", "identifiedBy": [ { "type": "uri", @@ -45380,7 +43363,6 @@ "pid": "1252339607", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1252339607", "identifiedBy": [ { "type": "uri", @@ -45406,7 +43388,6 @@ "pid": "1253016488", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1253016488", "identifiedBy": [ { "type": "uri", @@ -45423,7 +43404,6 @@ "pid": "1253049424", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1253049424", "identifiedBy": [ { "type": "uri", @@ -45440,7 +43420,6 @@ "pid": "1253266913", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1253266913", "identifiedBy": [ { "type": "uri", @@ -45457,7 +43436,6 @@ "pid": "1253317887", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1253317887", "identifiedBy": [ { "type": "uri", @@ -45473,7 +43451,6 @@ "md5": "1188a1bfdc76ea404b504796fca42d82", "pid": "12533396X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/12533396X", "identifiedBy": [ { "type": "uri", @@ -45496,7 +43473,6 @@ "pid": "1253501106", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1253501106", "identifiedBy": [ { "type": "uri", @@ -45526,7 +43502,6 @@ "md5": "18d97609d6bbe2c7139420e9b6436439", "pid": "1253803536", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1253803536", "identifiedBy": [ { "type": "uri", @@ -45544,7 +43519,6 @@ "pid": "1253954518", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1253954518", "identifiedBy": [ { "type": "uri", @@ -45567,7 +43541,6 @@ "pid": "125407466X", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/125407466X", "identifiedBy": [ { "type": "uri", @@ -45587,7 +43560,6 @@ "pid": "125448554", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/125448554", "identifiedBy": [ { "type": "uri", @@ -45607,7 +43579,6 @@ "md5": "e0661a4dec0394ea074e1475e5c0d54b", "pid": "1254513582", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1254513582", "identifiedBy": [ { "type": "uri", @@ -45629,7 +43600,6 @@ "pid": "1254551980", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1254551980", "identifiedBy": [ { "type": "uri", @@ -45651,7 +43621,6 @@ "md5": "d38d9a66a42b9a32f3c8dc7dcfb00b2d", "pid": "1254730559", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1254730559", "identifiedBy": [ { "type": "uri", @@ -45671,7 +43640,6 @@ "pid": "1255052740", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1255052740", "identifiedBy": [ { "type": "uri", @@ -45697,7 +43665,6 @@ "pid": "125522732X", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/125522732X", "identifiedBy": [ { "type": "uri", @@ -45723,7 +43690,6 @@ "pid": "1255253967", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1255253967", "identifiedBy": [ { "type": "uri", @@ -45748,7 +43714,6 @@ "md5": "7093fec84d52c3e2b57e8ad57fe867b1", "pid": "125525869", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/125525869", "identifiedBy": [ { "type": "uri", @@ -45763,7 +43728,6 @@ "md5": "39f17b8b9c5e1270e7a1da04fdad42c9", "pid": "125527683", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/125527683", "identifiedBy": [ { "type": "uri", @@ -45779,7 +43743,6 @@ "pid": "125606193X", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/125606193X", "identifiedBy": [ { "type": "uri", @@ -45800,7 +43763,6 @@ "pid": "1256298980", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1256298980", "identifiedBy": [ { "type": "uri", @@ -45824,7 +43786,6 @@ "md5": "67aaf3dec68f178c2c45147a18d86106", "pid": "1256639974", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1256639974", "identifiedBy": [ { "type": "uri", @@ -45844,7 +43805,6 @@ "md5": "8cffb586506e4bbfbaa1d7441be52aed", "pid": "125666632", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/125666632", "identifiedBy": [ { "type": "uri", @@ -45859,7 +43819,6 @@ "md5": "15297f1b4f59e1d5d6c45a3a324c301a", "pid": "125668465", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/125668465", "identifiedBy": [ { "type": "uri", @@ -45875,7 +43834,6 @@ "pid": "125675658X", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/125675658X", "identifiedBy": [ { "type": "uri", @@ -45901,7 +43859,6 @@ "pid": "1257269704", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1257269704", "identifiedBy": [ { "type": "uri", @@ -45921,7 +43878,6 @@ "pid": "1257796259", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1257796259", "identifiedBy": [ { "type": "uri", @@ -45944,7 +43900,6 @@ "pid": "1257837826", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1257837826", "identifiedBy": [ { "type": "uri", @@ -45969,7 +43924,6 @@ "md5": "591e0393c01f1432e148ea6c085fd630", "pid": "1257931253", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1257931253", "identifiedBy": [ { "type": "uri", @@ -45986,7 +43940,6 @@ "pid": "1258741997", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1258741997", "identifiedBy": [ { "type": "uri", @@ -46003,7 +43956,6 @@ "pid": "1258782901", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1258782901", "identifiedBy": [ { "type": "uri", @@ -46028,7 +43980,6 @@ "pid": "1258808196", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1258808196", "identifiedBy": [ { "type": "uri", @@ -46044,7 +43995,6 @@ "md5": "56f41e2c97d63b499bd6916ec0603559", "pid": "125881336X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/125881336X", "identifiedBy": [ { "type": "uri", @@ -46075,7 +44025,6 @@ "eng", "art" ], - "identifier": "http://d-nb.info/gnd/125904568", "identifiedBy": [ { "type": "uri", @@ -46102,7 +44051,6 @@ "md5": "3952c1e39759aaf3be2c117b55e54a7e", "pid": "1259359026", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1259359026", "identifiedBy": [ { "type": "uri", @@ -46120,7 +44068,6 @@ "pid": "1259480860", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1259480860", "identifiedBy": [ { "type": "uri", @@ -46137,7 +44084,6 @@ "pid": "1259906620", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1259906620", "identifiedBy": [ { "type": "uri", @@ -46169,7 +44115,6 @@ "pid": "1259930696", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1259930696", "identifiedBy": [ { "type": "uri", @@ -46187,7 +44132,6 @@ "pid": "1260402541", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1260402541", "identifiedBy": [ { "type": "uri", @@ -46214,7 +44158,6 @@ "md5": "2f80236ae97ff1a4e92e13bf62593b4f", "pid": "126093148", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/126093148", "identifiedBy": [ { "type": "uri", @@ -46229,7 +44172,6 @@ "md5": "b606000a6996564696dd450154f8d909", "pid": "126098190", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/126098190", "identifiedBy": [ { "type": "uri", @@ -46245,7 +44187,6 @@ "pid": "1260994147", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1260994147", "identifiedBy": [ { "type": "uri", @@ -46265,7 +44206,6 @@ "pid": "1261058550", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1261058550", "identifiedBy": [ { "type": "uri", @@ -46288,7 +44228,6 @@ "pid": "1261250842", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1261250842", "identifiedBy": [ { "type": "uri", @@ -46305,7 +44244,6 @@ "pid": "1261260147", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1261260147", "identifiedBy": [ { "type": "uri", @@ -46326,7 +44264,6 @@ "pid": "1261307364", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1261307364", "identifiedBy": [ { "type": "uri", @@ -46346,7 +44283,6 @@ "pid": "126144060", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/126144060", "identifiedBy": [ { "type": "uri", @@ -46364,7 +44300,6 @@ "md5": "c04fb3fd7fbb35f28bd5a1efdd50185b", "pid": "1261766156", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1261766156", "identifiedBy": [ { "type": "uri", @@ -46380,7 +44315,6 @@ "pid": "1261941136", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1261941136", "identifiedBy": [ { "type": "uri", @@ -46417,7 +44351,6 @@ "md5": "fff4109fb38994c0924b5429264f7a5c", "pid": "1262106486", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1262106486", "identifiedBy": [ { "type": "uri", @@ -46439,7 +44372,6 @@ "md5": "833888c5252b6d94fc81b4c72aea95c5", "pid": "126221804", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/126221804", "identifiedBy": [ { "type": "uri", @@ -46455,7 +44387,6 @@ "pid": "1262395305", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1262395305", "identifiedBy": [ { "type": "uri", @@ -46473,7 +44404,6 @@ "pid": "1262411238", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1262411238", "identifiedBy": [ { "type": "uri", @@ -46495,7 +44425,6 @@ "md5": "749ee467178dd10f644acd1bd0dc887e", "pid": "1262517281", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1262517281", "identifiedBy": [ { "type": "uri", @@ -46521,7 +44450,6 @@ "md5": "94b6666d0f2cb153e9fdfdaecd9042ce", "pid": "12625639X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/12625639X", "identifiedBy": [ { "type": "uri", @@ -46536,7 +44464,6 @@ "md5": "6255cc6b2bf7a8aeb490099e9d878884", "pid": "1262993016", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1262993016", "identifiedBy": [ { "type": "uri", @@ -46566,7 +44493,6 @@ "chi", "eng" ], - "identifier": "http://d-nb.info/gnd/1263532683", "identifiedBy": [ { "type": "uri", @@ -46585,7 +44511,6 @@ "md5": "c4e08e436598563ef1b343ebd7ad4d63", "pid": "1264061994", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1264061994", "identifiedBy": [ { "type": "uri", @@ -46612,7 +44537,6 @@ "pid": "1264067003", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1264067003", "identifiedBy": [ { "type": "uri", @@ -46632,7 +44556,6 @@ "md5": "c02d5a52273f59d5d34f15e04c828042", "pid": "126431582", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/126431582", "identifiedBy": [ { "type": "uri", @@ -46648,7 +44571,6 @@ "pid": "1265029369", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1265029369", "identifiedBy": [ { "type": "uri", @@ -46665,7 +44587,6 @@ "pid": "126590249", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/126590249", "identifiedBy": [ { "type": "uri", @@ -46708,7 +44629,6 @@ "md5": "4a43db19f82443f9ba598dc084551123", "pid": "126645590", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/126645590", "identifiedBy": [ { "type": "uri", @@ -46723,7 +44643,6 @@ "md5": "58409091f569eea9d498f7a166ad8dcb", "pid": "126652902", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/126652902", "identifiedBy": [ { "type": "uri", @@ -46739,7 +44658,6 @@ "pid": "126811846X", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/126811846X", "identifiedBy": [ { "type": "uri", @@ -46756,7 +44674,6 @@ "pid": "1268485969", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1268485969", "identifiedBy": [ { "type": "uri", @@ -46773,7 +44690,6 @@ "md5": "f6544fa2039fced2f2418800122426ae", "pid": "12688790X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/12688790X", "identifiedBy": [ { "type": "uri", @@ -46792,7 +44708,6 @@ "pid": "127018360", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/127018360", "identifiedBy": [ { "type": "uri", @@ -46824,7 +44739,6 @@ "pid": "1270306960", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/1270306960", "identifiedBy": [ { "type": "uri", @@ -46844,7 +44758,6 @@ "md5": "80b308b0ba33ad2af1acc156ddfee636", "pid": "1270526294", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1270526294", "identifiedBy": [ { "type": "uri", @@ -46861,7 +44774,6 @@ "md5": "8183a26593cd1f29b47a4a7910fea95a", "pid": "127202048", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/127202048", "identifiedBy": [ { "type": "uri", @@ -46878,7 +44790,6 @@ "type": "bf:Person", "gender": "female", "qualifier": "Gra\u0308fin von", - "identifier": "http://d-nb.info/gnd/127205233", "identifiedBy": [ { "type": "uri", @@ -46908,7 +44819,6 @@ "md5": "771a5c12e67adf05ecf160c5fa75eabc", "pid": "127283447", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/127283447", "identifiedBy": [ { "type": "uri", @@ -46924,7 +44834,6 @@ "md5": "17eabd71c4200ba1eda0dafe6f5c0b12", "pid": "127307427", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/127307427", "identifiedBy": [ { "type": "uri", @@ -46939,7 +44848,6 @@ "md5": "e5acc4dadd1dc8c3382dcae2d7fb6ce5", "pid": "1273775546", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1273775546", "identifiedBy": [ { "type": "uri", @@ -46962,7 +44870,6 @@ "md5": "098ed1a58d6be429dbc184fcb33b8cca", "pid": "127398538", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/127398538", "identifiedBy": [ { "type": "uri", @@ -46977,7 +44884,6 @@ "md5": "7117cd73312e1c7eebcfacd986bc7fa0", "pid": "12742508X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/12742508X", "identifiedBy": [ { "type": "uri", @@ -46993,7 +44899,6 @@ "pid": "127465680X", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/127465680X", "identifiedBy": [ { "type": "uri", @@ -47010,7 +44915,6 @@ "md5": "600e17631513765c03b018450c5556ed", "pid": "12747692X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/12747692X", "identifiedBy": [ { "type": "uri", @@ -47025,7 +44929,6 @@ "md5": "d9c27d06aecac8d01dbd87a0a1d66c25", "pid": "127496491", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/127496491", "identifiedBy": [ { "type": "uri", @@ -47040,7 +44943,6 @@ "md5": "6f6793935dfd64659c6b6c5f44a8c8ed", "pid": "127707255", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/127707255", "identifiedBy": [ { "type": "uri", @@ -47055,7 +44957,6 @@ "md5": "1b475949f2e858cb6ec374f1f7455c54", "pid": "127714049", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/127714049", "identifiedBy": [ { "type": "uri", @@ -47070,7 +44971,6 @@ "md5": "62152574148520f70947686f0834057a", "pid": "12771961X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/12771961X", "identifiedBy": [ { "type": "uri", @@ -47092,7 +44992,6 @@ "pid": "127772553", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/127772553", "identifiedBy": [ { "type": "uri", @@ -47114,7 +45013,6 @@ "md5": "e34c46e7d796223c7f889c019a2c196b", "pid": "127836160", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/127836160", "identifiedBy": [ { "type": "uri", @@ -47130,7 +45028,6 @@ "pid": "1278368817", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/1278368817", "identifiedBy": [ { "type": "uri", @@ -47147,7 +45044,6 @@ "md5": "ce4ed435bb6bfd34d6b11c0c1f9fed90", "pid": "127845925", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/127845925", "identifiedBy": [ { "type": "uri", @@ -47162,7 +45058,6 @@ "md5": "babfa0aa8c28843ddd047b98d613a16b", "pid": "127857214", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/127857214", "identifiedBy": [ { "type": "uri", @@ -47178,7 +45073,6 @@ "md5": "e1f8c974ce8602ec7bf2941b5ac02b2c", "pid": "12786959X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/12786959X", "identifiedBy": [ { "type": "uri", @@ -47202,7 +45096,6 @@ "md5": "47e768dcea50c98f8e95e7abe37da7a6", "pid": "128016736", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/128016736", "identifiedBy": [ { "type": "uri", @@ -47223,7 +45116,6 @@ "md5": "dc5553e80ec0fd7e93378bba260811a4", "pid": "128174889", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/128174889", "identifiedBy": [ { "type": "uri", @@ -47238,7 +45130,6 @@ "md5": "f1b4a2a61a421c72b9371d940cb1656e", "pid": "128190094", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/128190094", "identifiedBy": [ { "type": "uri", @@ -47253,7 +45144,6 @@ "md5": "952cb70021c1d46a9e968ff6de2ca4da", "pid": "128202432", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/128202432", "identifiedBy": [ { "type": "uri", @@ -47268,7 +45158,6 @@ "md5": "62a2a75d7228de1adc84679bb4e9f2a3", "pid": "128244224", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/128244224", "identifiedBy": [ { "type": "uri", @@ -47283,7 +45172,6 @@ "md5": "9af7bae0c519f387c93580ef7d04611e", "pid": "128275022", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/128275022", "identifiedBy": [ { "type": "uri", @@ -47301,7 +45189,6 @@ "md5": "322200bb59e3d05d429853d3a9b7ded4", "pid": "128320419", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/128320419", "identifiedBy": [ { "type": "uri", @@ -47316,7 +45203,6 @@ "md5": "e9d25d58f57e280601c015ab0a8cfc68", "pid": "12833794X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/12833794X", "identifiedBy": [ { "type": "uri", @@ -47337,7 +45223,6 @@ "md5": "6fd0d7df8621a9851a2c45ccc0c8b2ab", "pid": "128346280", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/128346280", "identifiedBy": [ { "type": "uri", @@ -47352,7 +45237,6 @@ "md5": "4dcad631b7a4ac5c760db57e33d33b76", "pid": "12837196X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/12837196X", "identifiedBy": [ { "type": "uri", @@ -47378,7 +45262,6 @@ "md5": "f2500a993bde660ee9200e2d2605fc2c", "pid": "128387602", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/128387602", "identifiedBy": [ { "type": "uri", @@ -47397,7 +45280,6 @@ "md5": "29731b47896adc5938a45d52a7ec9008", "pid": "128430613", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/128430613", "identifiedBy": [ { "type": "uri", @@ -47415,7 +45297,6 @@ "md5": "9ad7ecfdf705eca9163bd5a871d087f3", "pid": "128437979", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/128437979", "identifiedBy": [ { "type": "uri", @@ -47440,7 +45321,6 @@ "pid": "128438185", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/128438185", "identifiedBy": [ { "type": "uri", @@ -47463,7 +45343,6 @@ "md5": "093ccf913a682a90182b2b5ab6d12293", "pid": "12849915X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/12849915X", "identifiedBy": [ { "type": "uri", @@ -47490,7 +45369,6 @@ "md5": "2188aaa462e452f631ad026eb108550e", "pid": "128564520", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/128564520", "identifiedBy": [ { "type": "uri", @@ -47510,7 +45388,6 @@ "pid": "128568763", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/128568763", "identifiedBy": [ { "type": "uri", @@ -47530,7 +45407,6 @@ "md5": "8b2e7f2882c2c61f3fa295b35fffc372", "pid": "128630450", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/128630450", "identifiedBy": [ { "type": "uri", @@ -47554,7 +45430,6 @@ "md5": "52f4980b421954389a1914fbbd719b99", "pid": "12864852X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/12864852X", "identifiedBy": [ { "type": "uri", @@ -47572,7 +45447,6 @@ "pid": "128669993", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/128669993", "identifiedBy": [ { "type": "uri", @@ -47599,7 +45473,6 @@ "md5": "377b3f7acaedc7b302b92e54fc96df12", "pid": "128807954", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/128807954", "identifiedBy": [ { "type": "uri", @@ -47618,7 +45491,6 @@ "md5": "4e8273b15c1c677605fda7e4719edaf5", "pid": "128852690", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/128852690", "identifiedBy": [ { "type": "uri", @@ -47637,7 +45509,6 @@ "md5": "76a970233d0c83231e09965ed437520e", "pid": "128887249", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/128887249", "identifiedBy": [ { "type": "uri", @@ -47665,7 +45536,6 @@ "md5": "6048360d9556cbd611e523ef2d5a5ffa", "pid": "128948426", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/128948426", "identifiedBy": [ { "type": "uri", @@ -47686,7 +45556,6 @@ "md5": "2c0626af9376849b750db21697f176ec", "pid": "128970790", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/128970790", "identifiedBy": [ { "type": "uri", @@ -47707,7 +45576,6 @@ "md5": "fc4d3701900dee6eb9b0a84451d07c78", "pid": "128979852", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/128979852", "identifiedBy": [ { "type": "uri", @@ -47742,7 +45610,6 @@ "md5": "1c23ff7a3151260f6cc648bd37a205d6", "pid": "129020893", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/129020893", "identifiedBy": [ { "type": "uri", @@ -47761,7 +45628,6 @@ "md5": "e07cd3dc0534c418fc2c417cb989ae0e", "pid": "129048267", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/129048267", "identifiedBy": [ { "type": "uri", @@ -47791,7 +45657,6 @@ "md5": "6b79abec9be5acab1979f06acdf71302", "pid": "129097632", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/129097632", "identifiedBy": [ { "type": "uri", @@ -47812,7 +45677,6 @@ "md5": "4a51401631c517a5b95b953793daff38", "pid": "129154105", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/129154105", "identifiedBy": [ { "type": "uri", @@ -47832,7 +45696,6 @@ "md5": "b34070fbf45b3dc927ddd545ded15e2c", "pid": "129227838", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/129227838", "identifiedBy": [ { "type": "uri", @@ -47851,7 +45714,6 @@ "pid": "129388084", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/129388084", "identifiedBy": [ { "type": "uri", @@ -47877,7 +45739,6 @@ "md5": "94c9dd1d80094b9624c2cce8725d3816", "pid": "129446904", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/129446904", "identifiedBy": [ { "type": "uri", @@ -47903,7 +45764,6 @@ "md5": "2a8c59cac48acf091368f797c888143e", "pid": "129475351", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/129475351", "identifiedBy": [ { "type": "uri", @@ -47921,7 +45781,6 @@ "pid": "129504971", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/129504971", "identifiedBy": [ { "type": "uri", @@ -47947,7 +45806,6 @@ "md5": "49e20af033fc2de9c0d3dc638fc018ac", "pid": "129520896", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/129520896", "identifiedBy": [ { "type": "uri", @@ -47971,7 +45829,6 @@ "pid": "129599646", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/129599646", "identifiedBy": [ { "type": "uri", @@ -48003,7 +45860,6 @@ "pid": "129608610", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/129608610", "identifiedBy": [ { "type": "uri", @@ -48026,7 +45882,6 @@ "md5": "2688209c61c8b3bb81b9396c530fa3bb", "pid": "129639109", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/129639109", "identifiedBy": [ { "type": "uri", @@ -48045,7 +45900,6 @@ "md5": "bd34ee0096bc500a4bfe29354305d143", "pid": "129685828", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/129685828", "identifiedBy": [ { "type": "uri", @@ -48064,7 +45918,6 @@ "md5": "d8bb19c076ed5e19aa08d3d28d4b3223", "pid": "129727482", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/129727482", "identifiedBy": [ { "type": "uri", @@ -48115,7 +45968,6 @@ "pid": "129803332", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/129803332", "identifiedBy": [ { "type": "uri", @@ -48144,7 +45996,6 @@ "md5": "c56a64a425ab0fa369f88da958174faf", "pid": "12981752X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/12981752X", "identifiedBy": [ { "type": "uri", @@ -48165,7 +46016,6 @@ "md5": "ca651de6ab5ec5478bd9aaa8b18af540", "pid": "129828866", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/129828866", "identifiedBy": [ { "type": "uri", @@ -48201,7 +46051,6 @@ "md5": "99d326237bcb814ea2f3bce570041c94", "pid": "129855863", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/129855863", "identifiedBy": [ { "type": "uri", @@ -48218,7 +46067,6 @@ "md5": "cb82f16512697f4203ba64c706282c81", "pid": "12988782X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/12988782X", "identifiedBy": [ { "type": "uri", @@ -48244,7 +46092,6 @@ "md5": "206576c01c9165677f6e13a27f1ecb4c", "pid": "129888796", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/129888796", "identifiedBy": [ { "type": "uri", @@ -48270,7 +46117,6 @@ "md5": "6649fe34aee5fbd126064fcba70fcb64", "pid": "130000388", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/130000388", "identifiedBy": [ { "type": "uri", @@ -48295,7 +46141,6 @@ "md5": "bcb558f0a02b3ef616d7475a6b2ed033", "pid": "130016985", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/130016985", "identifiedBy": [ { "type": "uri", @@ -48315,7 +46160,6 @@ "md5": "550d8d18c430fe76d89d73d4fd590da3", "pid": "130020001", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/130020001", "identifiedBy": [ { "type": "uri", @@ -48345,7 +46189,6 @@ "pid": "130124648", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/130124648", "identifiedBy": [ { "type": "uri", @@ -48377,7 +46220,6 @@ "pid": "130141623", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/130141623", "identifiedBy": [ { "type": "uri", @@ -48397,7 +46239,6 @@ "md5": "dc1e87773db9e49185d948530077d408", "pid": "13022622X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/13022622X", "identifiedBy": [ { "type": "uri", @@ -48424,7 +46265,6 @@ "md5": "2e8db5594d26363aff8a36feac263e80", "pid": "130250473", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/130250473", "identifiedBy": [ { "type": "uri", @@ -48443,7 +46283,6 @@ "md5": "884f4c60f4313101269ce82fb9328e45", "pid": "130374520", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/130374520", "identifiedBy": [ { "type": "uri", @@ -48462,7 +46301,6 @@ "md5": "666ed95efbbb76a6a5ff4647ed68bbc9", "pid": "130502642", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/130502642", "identifiedBy": [ { "type": "uri", @@ -48487,7 +46325,6 @@ "md5": "ce817c76900b3188320d112ad8a3c331", "pid": "130556939", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/130556939", "identifiedBy": [ { "type": "uri", @@ -48506,7 +46343,6 @@ "md5": "5c7551b9e40e65175dda4d4e1b19241d", "pid": "130582883", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/130582883", "identifiedBy": [ { "type": "uri", @@ -48524,7 +46360,6 @@ "md5": "634e8774382c419833dc6bafc6efa16c", "pid": "130677299", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/130677299", "identifiedBy": [ { "type": "uri", @@ -48551,7 +46386,6 @@ "pid": "130859842", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/130859842", "identifiedBy": [ { "type": "uri", @@ -48575,7 +46409,6 @@ "md5": "aabdacd44df6d692aa81bb778daa6c3d", "pid": "130860557", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/130860557", "identifiedBy": [ { "type": "uri", @@ -48594,7 +46427,6 @@ "md5": "e3ac4e120a607a9d53a95a9057125a29", "pid": "131284703", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/131284703", "identifiedBy": [ { "type": "uri", @@ -48610,7 +46442,6 @@ "md5": "7c88fea36139ad96acfc076227a3848e", "pid": "131443704", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/131443704", "identifiedBy": [ { "type": "uri", @@ -48633,7 +46464,6 @@ "md5": "2651045fe412e42e295bad7779629805", "pid": "131514059", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/131514059", "identifiedBy": [ { "type": "uri", @@ -48652,7 +46482,6 @@ "md5": "1ec458700afa388d1ef7e2c809e979a7", "pid": "131564692", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/131564692", "identifiedBy": [ { "type": "uri", @@ -48677,7 +46506,6 @@ "md5": "bd11ec6cba6a3bbc32b7e77cf4004e8d", "pid": "131638653", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/131638653", "identifiedBy": [ { "type": "uri", @@ -48698,7 +46526,6 @@ "md5": "24a494bcc56cb0faa382d61fb26255fc", "pid": "131675907", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/131675907", "identifiedBy": [ { "type": "uri", @@ -48725,7 +46552,6 @@ "md5": "4104d19fce5e2354fa9250d3eb518c4f", "pid": "131709550", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/131709550", "identifiedBy": [ { "type": "uri", @@ -48743,7 +46569,6 @@ "md5": "f5939c76fa9b79aa28164bfc78b6658b", "pid": "131738631", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/131738631", "identifiedBy": [ { "type": "uri", @@ -48763,7 +46588,6 @@ "pid": "13178918X", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/13178918X", "identifiedBy": [ { "type": "uri", @@ -48790,7 +46614,6 @@ "pid": "131792350", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/131792350", "identifiedBy": [ { "type": "uri", @@ -48810,7 +46633,6 @@ "md5": "d4b1d2821db9668d940798155f618cf8", "pid": "131812378", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/131812378", "identifiedBy": [ { "type": "uri", @@ -48831,7 +46653,6 @@ "md5": "8a7c9b49327a359ede2f3b6ee360aee8", "pid": "13184248X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/13184248X", "identifiedBy": [ { "type": "uri", @@ -48852,7 +46673,6 @@ "md5": "2e9df62ce5bcf97d695977ad15e543ba", "pid": "131856839", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/131856839", "identifiedBy": [ { "type": "uri", @@ -48871,7 +46691,6 @@ "md5": "7438feb677d2a64335f62e8c3876e2ef", "pid": "131896873", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/131896873", "identifiedBy": [ { "type": "uri", @@ -48899,7 +46718,6 @@ "pid": "131898922", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/131898922", "identifiedBy": [ { "type": "uri", @@ -48923,7 +46741,6 @@ "pid": "131915401", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/131915401", "identifiedBy": [ { "type": "uri", @@ -48951,7 +46768,6 @@ "pid": "131930915", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/131930915", "identifiedBy": [ { "type": "uri", @@ -48977,7 +46793,6 @@ "md5": "b69a59925a1afa25a2f3ae418f943e5c", "pid": "132104784", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/132104784", "identifiedBy": [ { "type": "uri", @@ -49006,7 +46821,6 @@ "pid": "132266741", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/132266741", "identifiedBy": [ { "type": "uri", @@ -49037,7 +46851,6 @@ "md5": "e8120911f6eaa1335b8164069c427c60", "pid": "132272105", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/132272105", "identifiedBy": [ { "type": "uri", @@ -49056,7 +46869,6 @@ "md5": "6295373727e623f616c9cbbebbc1470f", "pid": "132327147", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/132327147", "identifiedBy": [ { "type": "uri", @@ -49076,7 +46888,6 @@ "pid": "132373963", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/132373963", "identifiedBy": [ { "type": "uri", @@ -49112,7 +46923,6 @@ "pid": "13246781X", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/13246781X", "identifiedBy": [ { "type": "uri", @@ -49131,7 +46941,6 @@ "md5": "7e83fc9edb08275ca31766096d206126", "pid": "132490846", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/132490846", "identifiedBy": [ { "type": "uri", @@ -49147,7 +46956,6 @@ "md5": "c6e34614b2776fd356a033d243c485f6", "pid": "132503980", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/132503980", "identifiedBy": [ { "type": "uri", @@ -49169,7 +46977,6 @@ "md5": "7afcedb3cdf0e3bbc0892f2713bf0d6a", "pid": "132526808", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/132526808", "identifiedBy": [ { "type": "uri", @@ -49209,7 +47016,6 @@ "md5": "8c9e10511b480252693324bcf26026d7", "pid": "132658941", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/132658941", "identifiedBy": [ { "type": "uri", @@ -49228,7 +47034,6 @@ "pid": "132695405", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/132695405", "identifiedBy": [ { "type": "uri", @@ -49253,7 +47058,6 @@ "pid": "132790912", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/132790912", "identifiedBy": [ { "type": "uri", @@ -49281,7 +47085,6 @@ "md5": "d505e0d1b433786b2f1e26443c6660b3", "pid": "132825198", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/132825198", "identifiedBy": [ { "type": "uri", @@ -49298,7 +47101,6 @@ "pid": "132828944", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/132828944", "identifiedBy": [ { "type": "uri", @@ -49326,7 +47128,6 @@ "md5": "f294b15f0d5fdfac18d7a0940f6dfd28", "pid": "132832860", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/132832860", "identifiedBy": [ { "type": "uri", @@ -49344,7 +47145,6 @@ "pid": "132857022", "type": "bf:Person", "qualifier": "Familie", - "identifier": "http://d-nb.info/gnd/132857022", "identifiedBy": [ { "type": "uri", @@ -49369,7 +47169,6 @@ "md5": "7bc51b112bb4c60680b41f884a816be5", "pid": "132989719", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/132989719", "identifiedBy": [ { "type": "uri", @@ -49396,7 +47195,6 @@ "md5": "774957e9739cd84aea25c29d771943d8", "pid": "13299495X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/13299495X", "identifiedBy": [ { "type": "uri", @@ -49424,7 +47222,6 @@ "md5": "980d5609b785bea806e53cd5c9af285b", "pid": "132999102", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/132999102", "identifiedBy": [ { "type": "uri", @@ -49473,7 +47270,6 @@ "md5": "d2ac385a6b7201832c67785c83e0deab", "pid": "133046567", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/133046567", "identifiedBy": [ { "type": "uri", @@ -49489,7 +47285,6 @@ "md5": "6090bf4d4c2c41d40c1ef41f63fbc629", "pid": "133056996", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/133056996", "identifiedBy": [ { "type": "uri", @@ -49510,7 +47305,6 @@ "md5": "74e1c5b000ccbdc8a6a0786e3c31d1cb", "pid": "13308325X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/13308325X", "identifiedBy": [ { "type": "uri", @@ -49538,7 +47332,6 @@ "md5": "be05cb0d8f8962a4a2a46c3ed5fc950b", "pid": "133092852", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/133092852", "identifiedBy": [ { "type": "uri", @@ -49555,7 +47348,6 @@ "pid": "133104567", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/133104567", "identifiedBy": [ { "type": "uri", @@ -49588,7 +47380,6 @@ "md5": "5994b2f1a63796adf827f3c6ac5d3af3", "pid": "13311189X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/13311189X", "identifiedBy": [ { "type": "uri", @@ -49604,7 +47395,6 @@ "pid": "133130886", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/133130886", "identifiedBy": [ { "type": "uri", @@ -49621,7 +47411,6 @@ "md5": "65d6b645a6044f1929cb4952dd7424f4", "pid": "133245187", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/133245187", "identifiedBy": [ { "type": "uri", @@ -49650,7 +47439,6 @@ "pid": "133255344", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/133255344", "identifiedBy": [ { "type": "uri", @@ -49670,7 +47458,6 @@ "pid": "133273407", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/133273407", "identifiedBy": [ { "type": "uri", @@ -49691,7 +47478,6 @@ "pid": "133315681", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/133315681", "identifiedBy": [ { "type": "uri", @@ -49708,7 +47494,6 @@ "md5": "3e59fd34ab8d2b69303a0e48b038e9b4", "pid": "133362817", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/133362817", "identifiedBy": [ { "type": "uri", @@ -49727,7 +47512,6 @@ "md5": "6acde6dd286918c2fc80b205e0368f94", "pid": "133396223", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/133396223", "identifiedBy": [ { "type": "uri", @@ -49742,7 +47526,6 @@ "md5": "d745b2481c15711a0c8ac3ee33fa192a", "pid": "133487342", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/133487342", "identifiedBy": [ { "type": "uri", @@ -49762,7 +47545,6 @@ "pid": "13350171X", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/13350171X", "identifiedBy": [ { "type": "uri", @@ -49790,7 +47572,6 @@ "pid": "13355757X", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/13355757X", "identifiedBy": [ { "type": "uri", @@ -49819,7 +47600,6 @@ "md5": "b688ffe2c988b026b16e225b1cb16c90", "pid": "133592316", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/133592316", "identifiedBy": [ { "type": "uri", @@ -49847,7 +47627,6 @@ "md5": "8e7eddc61149a0b8ad2f959ec7a9dce1", "pid": "133685624", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/133685624", "identifiedBy": [ { "type": "uri", @@ -49875,7 +47654,6 @@ "md5": "33eb3b731159179cee025de71aa03eae", "pid": "133715671", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/133715671", "identifiedBy": [ { "type": "uri", @@ -49902,7 +47680,6 @@ "md5": "fe83e855bdbc46cf8be6a31e4c307b34", "pid": "133748294", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/133748294", "identifiedBy": [ { "type": "uri", @@ -49918,7 +47695,6 @@ "pid": "133767183", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/133767183", "identifiedBy": [ { "type": "uri", @@ -49938,7 +47714,6 @@ "md5": "75d0653948862373c2b5617dab7ff992", "pid": "133999912", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/133999912", "identifiedBy": [ { "type": "uri", @@ -49970,7 +47745,6 @@ "pid": "134089316", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/134089316", "identifiedBy": [ { "type": "uri", @@ -50013,7 +47787,6 @@ "md5": "9cc7fd9856154d43afaa71d45c65e6a2", "pid": "134092147", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/134092147", "identifiedBy": [ { "type": "uri", @@ -50029,7 +47802,6 @@ "md5": "15cc895a9b86ced79f9385065ceea57b", "pid": "13416492X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/13416492X", "identifiedBy": [ { "type": "uri", @@ -50047,7 +47819,6 @@ "md5": "f0eed3ceab6b7b99dd1d09e7d10195e0", "pid": "134204603", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/134204603", "identifiedBy": [ { "type": "uri", @@ -50066,7 +47837,6 @@ "md5": "5243ac3a8e60fe2f27b898303d07af95", "pid": "134274458", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/134274458", "identifiedBy": [ { "type": "uri", @@ -50084,7 +47854,6 @@ "md5": "aea7c275b5ceb530b2a8fc40a41b4ba0", "pid": "134311086", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/134311086", "identifiedBy": [ { "type": "uri", @@ -50102,7 +47871,6 @@ "pid": "134321707", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/134321707", "identifiedBy": [ { "type": "uri", @@ -50127,7 +47895,6 @@ "md5": "192af80399c6cfb329926d6ce2636bb2", "pid": "134449002", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/134449002", "identifiedBy": [ { "type": "uri", @@ -50142,7 +47909,6 @@ "md5": "bd9e5b4de279f8b4e7ca3bb089f1a690", "pid": "134454901", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/134454901", "identifiedBy": [ { "type": "uri", @@ -50161,7 +47927,6 @@ "language": [ "ger" ], - "identifier": "http://d-nb.info/gnd/134538099", "identifiedBy": [ { "type": "uri", @@ -50194,7 +47959,6 @@ "pid": "134550412", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/134550412", "identifiedBy": [ { "type": "uri", @@ -50211,7 +47975,6 @@ "pid": "134563166", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/134563166", "identifiedBy": [ { "type": "uri", @@ -50232,7 +47995,6 @@ "md5": "8ed90a90ac49420a003a57f4ac8de26f", "pid": "134574079", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/134574079", "identifiedBy": [ { "type": "uri", @@ -50254,7 +48016,6 @@ "pid": "134583337", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/134583337", "identifiedBy": [ { "type": "uri", @@ -50269,7 +48030,6 @@ "md5": "8f165042fc5a42a9e0c7f0334495ba1e", "pid": "134588959", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/134588959", "identifiedBy": [ { "type": "uri", @@ -50291,7 +48051,6 @@ "pid": "134590481", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/134590481", "identifiedBy": [ { "type": "uri", @@ -50309,7 +48068,6 @@ "pid": "134591968", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/134591968", "identifiedBy": [ { "type": "uri", @@ -50348,7 +48106,6 @@ "pid": "134619102", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/134619102", "identifiedBy": [ { "type": "uri", @@ -50365,7 +48122,6 @@ "md5": "d568107131797d5608072f9acc5c8695", "pid": "134623487", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/134623487", "identifiedBy": [ { "type": "uri", @@ -50381,7 +48137,6 @@ "pid": "134624149", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/134624149", "identifiedBy": [ { "type": "uri", @@ -50401,7 +48156,6 @@ "pid": "134678478", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/134678478", "identifiedBy": [ { "type": "uri", @@ -50425,7 +48179,6 @@ "md5": "6a489b10edb4718a43d12df51301fa8d", "pid": "13468706X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/13468706X", "identifiedBy": [ { "type": "uri", @@ -50456,7 +48209,6 @@ "pid": "134694031", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/134694031", "identifiedBy": [ { "type": "uri", @@ -50478,7 +48230,6 @@ "pid": "134781821", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/134781821", "identifiedBy": [ { "type": "uri", @@ -50509,7 +48260,6 @@ "pid": "134802993", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/134802993", "identifiedBy": [ { "type": "uri", @@ -50534,7 +48284,6 @@ "pid": "134805313", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/134805313", "identifiedBy": [ { "type": "uri", @@ -50554,7 +48303,6 @@ "md5": "581d47cd1798645df2c97da8b1405931", "pid": "134872223", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/134872223", "identifiedBy": [ { "type": "uri", @@ -50570,7 +48318,6 @@ "pid": "135012864", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/135012864", "identifiedBy": [ { "type": "uri", @@ -50594,7 +48341,6 @@ "pid": "135074800", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/135074800", "identifiedBy": [ { "type": "uri", @@ -50619,7 +48365,6 @@ "pid": "135203449", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/135203449", "identifiedBy": [ { "type": "uri", @@ -50645,7 +48390,6 @@ "pid": "135226082", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/135226082", "identifiedBy": [ { "type": "uri", @@ -50667,7 +48411,6 @@ "pid": "135270103", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/135270103", "identifiedBy": [ { "type": "uri", @@ -50686,7 +48429,6 @@ "pid": "135270413", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/135270413", "identifiedBy": [ { "type": "uri", @@ -50713,7 +48455,6 @@ "pid": "135374774", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/135374774", "identifiedBy": [ { "type": "uri", @@ -50730,7 +48471,6 @@ "pid": "135580986", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/135580986", "identifiedBy": [ { "type": "uri", @@ -50754,7 +48494,6 @@ "md5": "8c28fdc1920b8426d0fa739ad505769d", "pid": "135626498", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/135626498", "identifiedBy": [ { "type": "uri", @@ -50775,7 +48514,6 @@ "md5": "82de1a80b6cc38cbd64ec516c12e58af", "pid": "135627095", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/135627095", "identifiedBy": [ { "type": "uri", @@ -50795,7 +48533,6 @@ "pid": "135661234", "type": "bf:Person", "qualifier": "Blaubirer", - "identifier": "http://d-nb.info/gnd/135661234", "identifiedBy": [ { "type": "uri", @@ -50821,7 +48558,6 @@ "md5": "7c157a71c4e737ff75cd5e74c08fe04b", "pid": "135757452", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/135757452", "identifiedBy": [ { "type": "uri", @@ -50846,7 +48582,6 @@ "pid": "13579000X", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/13579000X", "identifiedBy": [ { "type": "uri", @@ -50880,7 +48615,6 @@ "pid": "135835321", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/135835321", "identifiedBy": [ { "type": "uri", @@ -50906,7 +48640,6 @@ "md5": "20da26c082474f99dd317a7d48c2a7b1", "pid": "135958245", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/135958245", "identifiedBy": [ { "type": "uri", @@ -50925,7 +48658,6 @@ "md5": "fb5d29f63309722817ce4ef877627a95", "pid": "135961602", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/135961602", "identifiedBy": [ { "type": "uri", @@ -50953,7 +48685,6 @@ "pid": "135973368", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/135973368", "identifiedBy": [ { "type": "uri", @@ -51012,7 +48743,6 @@ "md5": "49844c5f5a814f3a6731bd42fadf63c0", "pid": "136148808", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/136148808", "identifiedBy": [ { "type": "uri", @@ -51036,7 +48766,6 @@ "md5": "ed1bf6127311a6adb39789870e88c17d", "pid": "136205275", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/136205275", "identifiedBy": [ { "type": "uri", @@ -51065,7 +48794,6 @@ "pid": "136380638", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/136380638", "identifiedBy": [ { "type": "uri", @@ -51086,7 +48814,6 @@ "pid": "136417582", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/136417582", "identifiedBy": [ { "type": "uri", @@ -51118,7 +48845,6 @@ "pid": "136444075", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/136444075", "identifiedBy": [ { "type": "uri", @@ -51146,7 +48872,6 @@ "md5": "0e950ee47ecfeed7b94679cb21ec0e71", "pid": "13685849X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/13685849X", "identifiedBy": [ { "type": "uri", @@ -51176,7 +48901,6 @@ "md5": "1d306ba53f95649637fd96eb5d8e7547", "pid": "136999271", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/136999271", "identifiedBy": [ { "type": "uri", @@ -51195,7 +48919,6 @@ "md5": "602ddf5494e5fd2f05e114ff2fd7989d", "pid": "13707543X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/13707543X", "identifiedBy": [ { "type": "uri", @@ -51222,7 +48945,6 @@ "md5": "1b1a2449e0c5b2c832d1e589fe768c8e", "pid": "137111223", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/137111223", "identifiedBy": [ { "type": "uri", @@ -51246,7 +48968,6 @@ "pid": "137241348", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/137241348", "identifiedBy": [ { "type": "uri", @@ -51272,7 +48993,6 @@ "md5": "b17012fe4cd8f1ea8ab88cf37668858d", "pid": "137308914", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/137308914", "identifiedBy": [ { "type": "uri", @@ -51304,7 +49024,6 @@ "md5": "e2322ad3e61e0f600131d3efcdfb7202", "pid": "137500750", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/137500750", "identifiedBy": [ { "type": "uri", @@ -51324,7 +49043,6 @@ "pid": "137858825", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/137858825", "identifiedBy": [ { "type": "uri", @@ -51352,7 +49070,6 @@ "language": [ "ger" ], - "identifier": "http://d-nb.info/gnd/138127948", "identifiedBy": [ { "type": "uri", @@ -51368,7 +49085,6 @@ "pid": "138374732", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/138374732", "identifiedBy": [ { "type": "uri", @@ -51394,7 +49110,6 @@ "pid": "138598010", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/138598010", "identifiedBy": [ { "type": "uri", @@ -51428,7 +49143,6 @@ "md5": "f651e35604b77789ca2352c1195b64f1", "pid": "13902185X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/13902185X", "identifiedBy": [ { "type": "uri", @@ -51444,7 +49158,6 @@ "md5": "76cb2d9983541a5438cc68fdee95bbee", "pid": "139094342", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/139094342", "identifiedBy": [ { "type": "uri", @@ -51464,7 +49177,6 @@ "md5": "c801d518fcbd7cc73c6e45eed9d1ee89", "pid": "139117091", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/139117091", "identifiedBy": [ { "type": "uri", @@ -51480,7 +49192,6 @@ "md5": "915c6bc0704938a3cb9b99db2ee55d53", "pid": "139120629", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/139120629", "identifiedBy": [ { "type": "uri", @@ -51510,7 +49221,6 @@ "md5": "104a8856d44090d1ef71426f1aad403d", "pid": "139128557", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/139128557", "identifiedBy": [ { "type": "uri", @@ -51537,7 +49247,6 @@ "pid": "139134816", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/139134816", "identifiedBy": [ { "type": "uri", @@ -51557,7 +49266,6 @@ "pid": "139173544", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/139173544", "identifiedBy": [ { "type": "uri", @@ -51577,7 +49285,6 @@ "md5": "a891bab1cc0fdd08128934a28e8fc6d6", "pid": "139180060", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/139180060", "identifiedBy": [ { "type": "uri", @@ -51609,7 +49316,6 @@ "md5": "933be624e7c473f7d7ae63d72dcfa9d3", "pid": "139196269", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/139196269", "identifiedBy": [ { "type": "uri", @@ -51629,7 +49335,6 @@ "pid": "139204105", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/139204105", "identifiedBy": [ { "type": "uri", @@ -51648,7 +49353,6 @@ "md5": "a88ee7fd90d7634dadc0d33618d5406c", "pid": "139209204", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/139209204", "identifiedBy": [ { "type": "uri", @@ -51664,7 +49368,6 @@ "md5": "93f9562f2e95d602a5748bff13c1603f", "pid": "139268456", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/139268456", "identifiedBy": [ { "type": "uri", @@ -51680,7 +49383,6 @@ "md5": "ccb609661513e6e0605e58d47e07033a", "pid": "139284575", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/139284575", "identifiedBy": [ { "type": "uri", @@ -51711,7 +49413,6 @@ "pid": "139286160", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/139286160", "identifiedBy": [ { "type": "uri", @@ -51731,7 +49432,6 @@ "md5": "919e452abaa21d6d5a7d8e77becf7060", "pid": "139289690", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/139289690", "identifiedBy": [ { "type": "uri", @@ -51757,7 +49457,6 @@ "pid": "139310991", "type": "bf:Person", "qualifier": "Anhalt-Bernburg, Fu\u0308rst", - "identifier": "http://d-nb.info/gnd/139310991", "numeration": "V.", "identifiedBy": [ { @@ -51778,7 +49477,6 @@ "md5": "b3e4ac88a5341e997d588a124a35ea46", "pid": "139317783", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/139317783", "identifiedBy": [ { "type": "uri", @@ -51797,7 +49495,6 @@ "md5": "17c89209a00f4b08219f7df749c30416", "pid": "139334114", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/139334114", "identifiedBy": [ { "type": "uri", @@ -51816,7 +49513,6 @@ "pid": "139350101", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/139350101", "identifiedBy": [ { "type": "uri", @@ -51841,7 +49537,6 @@ "md5": "89f2e9d2335c9b7398f98972df2b3fb7", "pid": "139361405", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/139361405", "identifiedBy": [ { "type": "uri", @@ -51857,7 +49552,6 @@ "md5": "84b73ea2d38803df2725a22b1a2968fa", "pid": "139376119", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/139376119", "identifiedBy": [ { "type": "uri", @@ -51880,7 +49574,6 @@ "pid": "139380027", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/139380027", "identifiedBy": [ { "type": "uri", @@ -51906,7 +49599,6 @@ "md5": "1d607d70a5a4a1c93e2637cb24319977", "pid": "13938233X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/13938233X", "identifiedBy": [ { "type": "uri", @@ -51927,7 +49619,6 @@ "md5": "38907540ebdb2925ff9aceaa65bc8205", "pid": "139383050", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/139383050", "identifiedBy": [ { "type": "uri", @@ -51943,7 +49634,6 @@ "md5": "8b07f6402f43e1db086e0ba58c1e800a", "pid": "139418598", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/139418598", "identifiedBy": [ { "type": "uri", @@ -51963,7 +49653,6 @@ "pid": "139422102", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/139422102", "identifiedBy": [ { "type": "uri", @@ -51989,7 +49678,6 @@ "md5": "4455ad2f0c4c69a17bc8c8723c641342", "pid": "139422161", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/139422161", "identifiedBy": [ { "type": "uri", @@ -52008,7 +49696,6 @@ "md5": "218615e369e6c2aae38eb044418e90d9", "pid": "13943237X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/13943237X", "identifiedBy": [ { "type": "uri", @@ -52031,7 +49718,6 @@ "md5": "b99e2d8c4e6f01e46f364e0cf36b6d50", "pid": "139480056", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/139480056", "identifiedBy": [ { "type": "uri", @@ -52054,7 +49740,6 @@ "pid": "139503072", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/139503072", "identifiedBy": [ { "type": "uri", @@ -52072,7 +49757,6 @@ "md5": "3f65a78f23ecf6d83b1917c7f1055930", "pid": "139512950", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/139512950", "identifiedBy": [ { "type": "uri", @@ -52094,7 +49778,6 @@ "pid": "139535489", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/139535489", "identifiedBy": [ { "type": "uri", @@ -52114,7 +49797,6 @@ "md5": "e2b0596ccc38a12c2e2f10b2d677bae9", "pid": "139542043", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/139542043", "identifiedBy": [ { "type": "uri", @@ -52131,7 +49813,6 @@ "md5": "94c292b2b557d2e8d1de1bf188ae5434", "pid": "13954402X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/13954402X", "identifiedBy": [ { "type": "uri", @@ -52148,7 +49829,6 @@ "md5": "9cda1b2c7761cacd07154154752facff", "pid": "139546979", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/139546979", "identifiedBy": [ { "type": "uri", @@ -52172,7 +49852,6 @@ "md5": "b5abb71018192f4d66c2eff5aa42d927", "pid": "139612483", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/139612483", "identifiedBy": [ { "type": "uri", @@ -52193,7 +49872,6 @@ "pid": "139621156", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/139621156", "identifiedBy": [ { "type": "uri", @@ -52230,7 +49908,6 @@ "md5": "392b51887dee11624b53299978fedebe", "pid": "139621652", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/139621652", "identifiedBy": [ { "type": "uri", @@ -52251,7 +49928,6 @@ "pid": "139622675", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/139622675", "identifiedBy": [ { "type": "uri", @@ -52271,7 +49947,6 @@ "md5": "1894dd7b2a7a423e797fe35e99874497", "pid": "139626417", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/139626417", "identifiedBy": [ { "type": "uri", @@ -52295,7 +49970,6 @@ "pid": "13962693X", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/13962693X", "identifiedBy": [ { "type": "uri", @@ -52316,7 +49990,6 @@ "pid": "139630147", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/139630147", "identifiedBy": [ { "type": "uri", @@ -52333,7 +50006,6 @@ "md5": "420361d915c83dcae756183a8ddeeb05", "pid": "139649263", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/139649263", "identifiedBy": [ { "type": "uri", @@ -52353,7 +50025,6 @@ "pid": "139654526", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/139654526", "identifiedBy": [ { "type": "uri", @@ -52380,7 +50051,6 @@ "md5": "529d9a6a9a2576dcf8e4e3e7b79962f2", "pid": "139655395", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/139655395", "identifiedBy": [ { "type": "uri", @@ -52406,7 +50076,6 @@ "md5": "f3196cbe8197329dd55ef762feb8b6e6", "pid": "139659382", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/139659382", "identifiedBy": [ { "type": "uri", @@ -52426,7 +50095,6 @@ "pid": "139668136", "type": "bf:Person", "qualifier": "Familie", - "identifier": "http://d-nb.info/gnd/139668136", "identifiedBy": [ { "type": "uri", @@ -52450,7 +50118,6 @@ "jpn", "chi" ], - "identifier": "http://d-nb.info/gnd/139695125", "identifiedBy": [ { "type": "uri", @@ -52469,7 +50136,6 @@ "md5": "1e42045a791a7151cebf92b2e8e4dd60", "pid": "139705104", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/139705104", "identifiedBy": [ { "type": "uri", @@ -52489,7 +50155,6 @@ "pid": "139708162", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/139708162", "identifiedBy": [ { "type": "uri", @@ -52511,7 +50176,6 @@ "pid": "139708669", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/139708669", "identifiedBy": [ { "type": "uri", @@ -52539,7 +50203,6 @@ "pid": "139708952", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/139708952", "identifiedBy": [ { "type": "uri", @@ -52560,7 +50223,6 @@ "md5": "02c0e748ae7ecbbdf664362a7dc021c2", "pid": "13971166X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/13971166X", "identifiedBy": [ { "type": "uri", @@ -52578,7 +50240,6 @@ "pid": "139717676", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/139717676", "identifiedBy": [ { "type": "uri", @@ -52595,7 +50256,6 @@ "pid": "139733256", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/139733256", "identifiedBy": [ { "type": "uri", @@ -52615,7 +50275,6 @@ "pid": "13976674X", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/13976674X", "identifiedBy": [ { "type": "uri", @@ -52641,7 +50300,6 @@ "md5": "9eb2c1d98f5ad87c15d16d7fa9b442f7", "pid": "139769366", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/139769366", "identifiedBy": [ { "type": "uri", @@ -52667,7 +50325,6 @@ "pid": "139774807", "type": "bf:Person", "qualifier": "Familie", - "identifier": "http://d-nb.info/gnd/139774807", "identifiedBy": [ { "type": "uri", @@ -52687,7 +50344,6 @@ "md5": "93c381befacb1e89229d345d0d4a9481", "pid": "139794204", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/139794204", "identifiedBy": [ { "type": "uri", @@ -52704,7 +50360,6 @@ "md5": "ec90b34c15db63dd1fba766266c08271", "pid": "139796282", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/139796282", "identifiedBy": [ { "type": "uri", @@ -52722,7 +50377,6 @@ "md5": "e570975ea1d5559d47dccaed0e0a78f5", "pid": "139822542", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/139822542", "identifiedBy": [ { "type": "uri", @@ -52749,7 +50403,6 @@ "pid": "13983043X", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/13983043X", "identifiedBy": [ { "type": "uri", @@ -52767,7 +50420,6 @@ "md5": "d3514db1448decbd1a8e33057e4ff80f", "pid": "139856072", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/139856072", "identifiedBy": [ { "type": "uri", @@ -52784,7 +50436,6 @@ "md5": "c04c91584c2c6fb7c8c0d37600d08666", "pid": "139863915", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/139863915", "identifiedBy": [ { "type": "uri", @@ -52805,7 +50456,6 @@ "md5": "58da08267d6019bb16be14dcb69d9a81", "pid": "139875484", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/139875484", "identifiedBy": [ { "type": "uri", @@ -52831,7 +50481,6 @@ "pid": "139879994", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/139879994", "identifiedBy": [ { "type": "uri", @@ -52854,7 +50503,6 @@ "md5": "3a2670910ecc8ebd21b03421d1b0ecf0", "pid": "139889345", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/139889345", "identifiedBy": [ { "type": "uri", @@ -52880,7 +50528,6 @@ "md5": "ae7671999fb0dbd9972003304630a852", "pid": "139894535", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/139894535", "identifiedBy": [ { "type": "uri", @@ -52906,7 +50553,6 @@ "md5": "617f75f05347c9107f94869b2fd28121", "pid": "139894977", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/139894977", "identifiedBy": [ { "type": "uri", @@ -52922,7 +50568,6 @@ "pid": "139925988", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/139925988", "identifiedBy": [ { "type": "uri", @@ -52955,7 +50600,6 @@ "md5": "1ffc4d5b6f81d3d84809fa0c5d61500b", "pid": "139939415", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/139939415", "identifiedBy": [ { "type": "uri", @@ -52975,7 +50619,6 @@ "md5": "148fd1cc621b19a0c602c9259e659076", "pid": "139942920", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/139942920", "identifiedBy": [ { "type": "uri", @@ -52994,7 +50637,6 @@ "md5": "cf4df0de9fd96ca97b6b43ef0fc82f06", "pid": "139946144", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/139946144", "identifiedBy": [ { "type": "uri", @@ -53023,7 +50665,6 @@ "md5": "93ff47964d2710f2d00a974bf0f3a030", "pid": "139952179", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/139952179", "identifiedBy": [ { "type": "uri", @@ -53049,7 +50690,6 @@ "md5": "4b58734e7eec9a5484fd15a812caf0d5", "pid": "139961968", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/139961968", "identifiedBy": [ { "type": "uri", @@ -53077,7 +50717,6 @@ "md5": "edc2b73eed0c414c28475972c312c98c", "pid": "139974199", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/139974199", "identifiedBy": [ { "type": "uri", @@ -53095,7 +50734,6 @@ "md5": "6146374d76309d24b0e45c1b2876c79f", "pid": "14006253X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/14006253X", "identifiedBy": [ { "type": "uri", @@ -53115,7 +50753,6 @@ "md5": "1d40843faefedae4941e639e169071a6", "pid": "140091319", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/140091319", "identifiedBy": [ { "type": "uri", @@ -53141,7 +50778,6 @@ "md5": "190419df0326fc737b1542323f0dc89c", "pid": "140093427", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/140093427", "identifiedBy": [ { "type": "uri", @@ -53173,7 +50809,6 @@ "md5": "5ea669e4aa65c979df17a0ab8dfef8c6", "pid": "14010657X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/14010657X", "identifiedBy": [ { "type": "uri", @@ -53194,7 +50829,6 @@ "pid": "140129510", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/140129510", "identifiedBy": [ { "type": "uri", @@ -53218,7 +50852,6 @@ "pid": "140132872", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/140132872", "identifiedBy": [ { "type": "uri", @@ -53237,7 +50870,6 @@ "md5": "6df6e4c97d25719d1b40d1f97f7b6325", "pid": "140142622", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/140142622", "identifiedBy": [ { "type": "uri", @@ -53263,7 +50895,6 @@ "md5": "3d3423b2e9c85027c813af307be0967a", "pid": "14016815X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/14016815X", "identifiedBy": [ { "type": "uri", @@ -53282,7 +50913,6 @@ "md5": "3e3fdecc0e73dbbf9639ec04f6671121", "pid": "140169016", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/140169016", "identifiedBy": [ { "type": "uri", @@ -53301,7 +50931,6 @@ "pid": "140234381", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/140234381", "identifiedBy": [ { "type": "uri", @@ -53321,7 +50950,6 @@ "md5": "fd967bac22f0a944345f50c8fcbfbc5e", "pid": "140306412", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/140306412", "identifiedBy": [ { "type": "uri", @@ -53341,7 +50969,6 @@ "md5": "1df71f66e4dab096157b5d222f0f3803", "pid": "140322140", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/140322140", "identifiedBy": [ { "type": "uri", @@ -53365,7 +50992,6 @@ "language": [ "per" ], - "identifier": "http://d-nb.info/gnd/140322213", "identifiedBy": [ { "type": "uri", @@ -53388,7 +51014,6 @@ "md5": "140fcefc0840bd691a770f3d0b36eaa7", "pid": "140327126", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/140327126", "identifiedBy": [ { "type": "uri", @@ -53411,7 +51036,6 @@ "md5": "5d816b05d257dba072b1a723886b8071", "pid": "140327606", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/140327606", "identifiedBy": [ { "type": "uri", @@ -53438,7 +51062,6 @@ "pid": "140330720", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/140330720", "identifiedBy": [ { "type": "uri", @@ -53463,7 +51086,6 @@ "md5": "451e0d8d1cf93d3d1913a3974c991fa4", "pid": "140338683", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/140338683", "identifiedBy": [ { "type": "uri", @@ -53483,7 +51105,6 @@ "md5": "bdaaa18671956246a1c74b108d17fac8", "pid": "140345884", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/140345884", "identifiedBy": [ { "type": "uri", @@ -53504,7 +51125,6 @@ "pid": "140416919", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/140416919", "identifiedBy": [ { "type": "uri", @@ -53522,7 +51142,6 @@ "md5": "926bd6c8b05257f216be5b00985ce4e3", "pid": "140419799", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/140419799", "identifiedBy": [ { "type": "uri", @@ -53541,7 +51160,6 @@ "md5": "a92049cbcad00451daf72a9e59c247e3", "pid": "140424873", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/140424873", "identifiedBy": [ { "type": "uri", @@ -53558,7 +51176,6 @@ "md5": "83563b10f9deb2054d4f09ee499d5ae0", "pid": "14043917X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/14043917X", "identifiedBy": [ { "type": "uri", @@ -53586,7 +51203,6 @@ "pid": "140458123", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/140458123", "identifiedBy": [ { "type": "uri", @@ -53606,7 +51222,6 @@ "md5": "a73bd0b0456770371911c2c8bb80d9d5", "pid": "14046090X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/14046090X", "identifiedBy": [ { "type": "uri", @@ -53626,7 +51241,6 @@ "pid": "140469923", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/140469923", "identifiedBy": [ { "type": "uri", @@ -53650,7 +51264,6 @@ "pid": "140489096", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/140489096", "identifiedBy": [ { "type": "uri", @@ -53682,7 +51295,6 @@ "md5": "b94df094ecb0ae95c8b39e0b2236b3bc", "pid": "140490841", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/140490841", "identifiedBy": [ { "type": "uri", @@ -53702,7 +51314,6 @@ "md5": "a75cfc6dfc868ee8120a118e17609b2e", "pid": "140499024", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/140499024", "identifiedBy": [ { "type": "uri", @@ -53722,7 +51333,6 @@ "pid": "140500634", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/140500634", "identifiedBy": [ { "type": "uri", @@ -53754,7 +51364,6 @@ "md5": "39c23764c9b06011b5b81cf780984dd7", "pid": "140540830", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/140540830", "identifiedBy": [ { "type": "uri", @@ -53769,7 +51378,6 @@ "md5": "3606dc5b48f3bf5e73a240ce876d5d1a", "pid": "140543503", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/140543503", "identifiedBy": [ { "type": "uri", @@ -53793,7 +51401,6 @@ "md5": "e0bdba063a6dee8eab102b862c49c393", "pid": "14055260X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/14055260X", "identifiedBy": [ { "type": "uri", @@ -53816,7 +51423,6 @@ "md5": "ac932d7add017cfac8c30262f5022cc7", "pid": "140553533", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/140553533", "identifiedBy": [ { "type": "uri", @@ -53837,7 +51443,6 @@ "md5": "7e054ad622c982e58fa8b15935aba22b", "pid": "140564306", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/140564306", "identifiedBy": [ { "type": "uri", @@ -53863,7 +51468,6 @@ "md5": "6ceb9180af2edf6f355ed9d69161ebf6", "pid": "140580204", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/140580204", "identifiedBy": [ { "type": "uri", @@ -53882,7 +51486,6 @@ "md5": "8b453b8c57cd15419ea9866a00482545", "pid": "140595716", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/140595716", "identifiedBy": [ { "type": "uri", @@ -53900,7 +51503,6 @@ "pid": "140605304", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/140605304", "identifiedBy": [ { "type": "uri", @@ -53921,7 +51523,6 @@ "pid": "140623388", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/140623388", "identifiedBy": [ { "type": "uri", @@ -53937,7 +51538,6 @@ "pid": "140655387", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/140655387", "identifiedBy": [ { "type": "uri", @@ -53966,7 +51566,6 @@ "md5": "ac7f0d90738902b3bc20b8af320e959c", "pid": "140665927", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/140665927", "identifiedBy": [ { "type": "uri", @@ -53993,7 +51592,6 @@ "md5": "6277d7680d38c666767848928c5fc818", "pid": "140671153", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/140671153", "identifiedBy": [ { "type": "uri", @@ -54009,7 +51607,6 @@ "md5": "d46e90ce9f823230f80040a3b5a0ae36", "pid": "140699562", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/140699562", "identifiedBy": [ { "type": "uri", @@ -54031,7 +51628,6 @@ "md5": "8b08f8a26e524ea35f019596457a366b", "pid": "140703063", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/140703063", "identifiedBy": [ { "type": "uri", @@ -54049,7 +51645,6 @@ "md5": "dac355c95fcbd48525ca67c59875de1c", "pid": "140707921", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/140707921", "identifiedBy": [ { "type": "uri", @@ -54066,7 +51661,6 @@ "pid": "140723269", "type": "bf:Person", "qualifier": "Crespi", - "identifier": "http://d-nb.info/gnd/140723269", "identifiedBy": [ { "type": "uri", @@ -54094,7 +51688,6 @@ "md5": "56a983b23b39b2d21d2527c2968903b8", "pid": "140724656", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/140724656", "identifiedBy": [ { "type": "uri", @@ -54119,7 +51712,6 @@ "md5": "2e9e5dd7e2b6f642c67917293ab54c87", "pid": "140749195", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/140749195", "identifiedBy": [ { "type": "uri", @@ -54143,7 +51735,6 @@ "jpn", "eng" ], - "identifier": "http://d-nb.info/gnd/140749861", "identifiedBy": [ { "type": "uri", @@ -54169,7 +51760,6 @@ "md5": "dcbf22d8d19494ce62516243630faffc", "pid": "140751149", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/140751149", "identifiedBy": [ { "type": "uri", @@ -54186,7 +51776,6 @@ "md5": "5b2e4d1857c0a13f215a264c7b63f5e2", "pid": "140764143", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/140764143", "identifiedBy": [ { "type": "uri", @@ -54207,7 +51796,6 @@ "language": [ "dan" ], - "identifier": "http://d-nb.info/gnd/140781498", "identifiedBy": [ { "type": "uri", @@ -54235,7 +51823,6 @@ "pid": "140791434", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/140791434", "identifiedBy": [ { "type": "uri", @@ -54268,7 +51855,6 @@ "md5": "30a2b627d39a92c28035eaadbb0b017d", "pid": "140807268", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/140807268", "identifiedBy": [ { "type": "uri", @@ -54285,7 +51871,6 @@ "pid": "140808337", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/140808337", "identifiedBy": [ { "type": "uri", @@ -54317,7 +51902,6 @@ "md5": "64644bbd76cd7d68ff14d0bab296fda8", "pid": "140818197", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/140818197", "identifiedBy": [ { "type": "uri", @@ -54335,7 +51919,6 @@ "pid": "140835822", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/140835822", "identifiedBy": [ { "type": "uri", @@ -54353,7 +51936,6 @@ "pid": "140848363", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/140848363", "identifiedBy": [ { "type": "uri", @@ -54379,7 +51961,6 @@ "pid": "140849963", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/140849963", "identifiedBy": [ { "type": "uri", @@ -54395,7 +51976,6 @@ "md5": "bce291a2fc407ec2b928c53f42ce0585", "pid": "14085200X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/14085200X", "identifiedBy": [ { "type": "uri", @@ -54424,7 +52004,6 @@ "pid": "14085603X", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/14085603X", "identifiedBy": [ { "type": "uri", @@ -54451,7 +52030,6 @@ "pid": "140890335", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/140890335", "identifiedBy": [ { "type": "uri", @@ -54472,7 +52050,6 @@ "pid": "140891420", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/140891420", "identifiedBy": [ { "type": "uri", @@ -54499,7 +52076,6 @@ "pid": "140897933", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/140897933", "identifiedBy": [ { "type": "uri", @@ -54523,7 +52099,6 @@ "md5": "2131a3ad12a74c51cf4888a8fe187f24", "pid": "140930531", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/140930531", "identifiedBy": [ { "type": "uri", @@ -54540,7 +52115,6 @@ "md5": "069dbe4e4a4bb25841901bf369882f75", "pid": "140948317", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/140948317", "identifiedBy": [ { "type": "uri", @@ -54558,7 +52132,6 @@ "pid": "140952012", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/140952012", "identifiedBy": [ { "type": "uri", @@ -54577,7 +52150,6 @@ "md5": "9161eca785d5d0f5ba35692e2facc490", "pid": "140952985", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/140952985", "identifiedBy": [ { "type": "uri", @@ -54600,7 +52172,6 @@ "md5": "9a38bf6d36208f55e7685cf8d1aea87a", "pid": "140960597", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/140960597", "identifiedBy": [ { "type": "uri", @@ -54623,7 +52194,6 @@ "md5": "8cc6f38a455450a0a218b5bebd3cc91a", "pid": "140974571", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/140974571", "identifiedBy": [ { "type": "uri", @@ -54639,7 +52209,6 @@ "md5": "80037885c02deb1102b94138d009e0cc", "pid": "14098643X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/14098643X", "identifiedBy": [ { "type": "uri", @@ -54658,7 +52227,6 @@ "md5": "7c4a6f9c5d5cab45133b971c11c03328", "pid": "140996524", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/140996524", "identifiedBy": [ { "type": "uri", @@ -54686,7 +52254,6 @@ "md5": "62e3f511385880a1783e4658dd561e6a", "pid": "141011491", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/141011491", "identifiedBy": [ { "type": "uri", @@ -54712,7 +52279,6 @@ "pid": "141030771", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/141030771", "identifiedBy": [ { "type": "uri", @@ -54742,7 +52308,6 @@ "md5": "e21807c82e14768e8938dc2bdb7fb027", "pid": "141129271", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/141129271", "identifiedBy": [ { "type": "uri", @@ -54769,7 +52334,6 @@ "pid": "141136618", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/141136618", "identifiedBy": [ { "type": "uri", @@ -54784,7 +52348,6 @@ "md5": "a640d1a763848faeb303d6c42dc0245b", "pid": "141153067", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/141153067", "identifiedBy": [ { "type": "uri", @@ -54802,7 +52365,6 @@ "md5": "16823f6a9d6aeb8068bcaaa0180a1974", "pid": "141169818", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/141169818", "identifiedBy": [ { "type": "uri", @@ -54825,7 +52387,6 @@ "pid": "141184531", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/141184531", "identifiedBy": [ { "type": "uri", @@ -54846,7 +52407,6 @@ "pid": "141195428", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/141195428", "identifiedBy": [ { "type": "uri", @@ -54889,7 +52449,6 @@ "md5": "0432790a3c6a3b7dd4588deb732824bb", "pid": "141208740", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/141208740", "identifiedBy": [ { "type": "uri", @@ -54905,7 +52464,6 @@ "md5": "33c87e114a1b833d0714bd51b5bab1fa", "pid": "141222042", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/141222042", "identifiedBy": [ { "type": "uri", @@ -54939,7 +52497,6 @@ "pid": "141231742", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/141231742", "identifiedBy": [ { "type": "uri", @@ -54963,7 +52520,6 @@ "md5": "28dacfb8d6b6845ad8d875b5fdd5fec0", "pid": "141248408", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/141248408", "identifiedBy": [ { "type": "uri", @@ -54983,7 +52539,6 @@ "pid": "141327588", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/141327588", "identifiedBy": [ { "type": "uri", @@ -55020,7 +52575,6 @@ "md5": "2da9b911fe78d59730009015308680a6", "pid": "141339942", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/141339942", "identifiedBy": [ { "type": "uri", @@ -55049,7 +52603,6 @@ "pid": "141354240", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/141354240", "identifiedBy": [ { "type": "uri", @@ -55070,7 +52623,6 @@ "pid": "141363193", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/141363193", "identifiedBy": [ { "type": "uri", @@ -55102,7 +52654,6 @@ "pid": "141373741", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/141373741", "identifiedBy": [ { "type": "uri", @@ -55125,7 +52676,6 @@ "pid": "141395362", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/141395362", "identifiedBy": [ { "type": "uri", @@ -55157,7 +52707,6 @@ "md5": "b5fec17e4375d1a334c2239f8adcfcb1", "pid": "141454679", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/141454679", "identifiedBy": [ { "type": "uri", @@ -55185,7 +52734,6 @@ "md5": "a0ec2bd0c89059046fb67c28525d684c", "pid": "141463740", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/141463740", "identifiedBy": [ { "type": "uri", @@ -55202,7 +52750,6 @@ "md5": "fc6d5fd008a7455d0dd2704b4d2b9710", "pid": "141475366", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/141475366", "identifiedBy": [ { "type": "uri", @@ -55220,7 +52767,6 @@ "md5": "b01cb6ae593949369a4ed4c7535ab67e", "pid": "14151289X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/14151289X", "identifiedBy": [ { "type": "uri", @@ -55248,7 +52794,6 @@ "pid": "141518707", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/141518707", "identifiedBy": [ { "type": "uri", @@ -55265,7 +52810,6 @@ "md5": "a2448fa6366dce8199a60be0ddb62abf", "pid": "141531142", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/141531142", "identifiedBy": [ { "type": "uri", @@ -55284,7 +52828,6 @@ "md5": "6666dae86e357c42827dde7c9339684a", "pid": "141546891", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/141546891", "identifiedBy": [ { "type": "uri", @@ -55303,7 +52846,6 @@ "md5": "c01572e5a4756fc4e6903d70f2236cd6", "pid": "141569344", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/141569344", "identifiedBy": [ { "type": "uri", @@ -55330,7 +52872,6 @@ "pid": "141630531", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/141630531", "identifiedBy": [ { "type": "uri", @@ -55350,7 +52891,6 @@ "md5": "aa6e9af17cf3e91d5f94eb20fc3ab6ec", "pid": "141639490", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/141639490", "identifiedBy": [ { "type": "uri", @@ -55370,7 +52910,6 @@ "pid": "141657278", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/141657278", "identifiedBy": [ { "type": "uri", @@ -55407,7 +52946,6 @@ "md5": "9f0339fffb374ff9650ac8cbb5774ae1", "pid": "14167220X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/14167220X", "identifiedBy": [ { "type": "uri", @@ -55423,7 +52961,6 @@ "md5": "e1fa92645c10580d863d1cafe6734029", "pid": "141675330", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/141675330", "identifiedBy": [ { "type": "uri", @@ -55443,7 +52980,6 @@ "md5": "8e5b9f1469856ea13c4c2e07fb0a485d", "pid": "141707151", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/141707151", "identifiedBy": [ { "type": "uri", @@ -55462,7 +52998,6 @@ "md5": "ddd6d0f2dd5dc8dfea8e07e7f7a36ba3", "pid": "141709499", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/141709499", "identifiedBy": [ { "type": "uri", @@ -55479,7 +53014,6 @@ "pid": "141752025", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/141752025", "identifiedBy": [ { "type": "uri", @@ -55499,7 +53033,6 @@ "md5": "051035fd5efae112af4f8efb18e4aae2", "pid": "141780940", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/141780940", "identifiedBy": [ { "type": "uri", @@ -55527,7 +53060,6 @@ "md5": "47eebad912fec8168f59e899606fa8da", "pid": "141801689", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/141801689", "identifiedBy": [ { "type": "uri", @@ -55545,7 +53077,6 @@ "md5": "ff0d63e5824ef8023d558e6ac1fd5498", "pid": "141820209", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/141820209", "identifiedBy": [ { "type": "uri", @@ -55570,7 +53101,6 @@ "md5": "f30d642cb541a5a5667d16738ce2ebc9", "pid": "141833475", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/141833475", "identifiedBy": [ { "type": "uri", @@ -55588,7 +53118,6 @@ "md5": "afeb4aaf71151015ddb3775249722012", "pid": "141839422", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/141839422", "identifiedBy": [ { "type": "uri", @@ -55607,7 +53136,6 @@ "pid": "141851910", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/141851910", "identifiedBy": [ { "type": "uri", @@ -55629,7 +53157,6 @@ "md5": "f1e0745a402d7ee27f5508190a78a65b", "pid": "141864893", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/141864893", "identifiedBy": [ { "type": "uri", @@ -55645,7 +53172,6 @@ "md5": "e38365cb3213b0c0aa60f3316684245b", "pid": "141874325", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/141874325", "identifiedBy": [ { "type": "uri", @@ -55661,7 +53187,6 @@ "md5": "41e0c142f26dee0d199e1e772fcfa9cb", "pid": "141919558", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/141919558", "identifiedBy": [ { "type": "uri", @@ -55677,7 +53202,6 @@ "pid": "141944447", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/141944447", "identifiedBy": [ { "type": "uri", @@ -55695,7 +53219,6 @@ "md5": "ed1abbb9f6b0ba8398bf6ab21ea5465a", "pid": "14194479X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/14194479X", "identifiedBy": [ { "type": "uri", @@ -55710,7 +53233,6 @@ "md5": "4f5538e205be4e0a2e0adf6de69d9c3e", "pid": "141961406", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/141961406", "identifiedBy": [ { "type": "uri", @@ -55725,7 +53247,6 @@ "md5": "a0466a062dbe9b6874634056762284b0", "pid": "141969016", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/141969016", "identifiedBy": [ { "type": "uri", @@ -55743,7 +53264,6 @@ "pid": "141980516", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/141980516", "identifiedBy": [ { "type": "uri", @@ -55769,7 +53289,6 @@ "md5": "6540f76feeb04c89c389ae5cf96d6e29", "pid": "14198970X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/14198970X", "identifiedBy": [ { "type": "uri", @@ -55795,7 +53314,6 @@ "md5": "2520917364f79e00ffbe0bf6c5be0d13", "pid": "141990600", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/141990600", "identifiedBy": [ { "type": "uri", @@ -55820,7 +53338,6 @@ "md5": "f2084473ab77ad48d64338c7b8eb0f50", "pid": "142004634", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/142004634", "identifiedBy": [ { "type": "uri", @@ -55875,7 +53392,6 @@ "pid": "142042544", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/142042544", "identifiedBy": [ { "type": "uri", @@ -55894,7 +53410,6 @@ "pid": "142047465", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/142047465", "identifiedBy": [ { "type": "uri", @@ -55912,7 +53427,6 @@ "md5": "34e1594de23588614b20bf77164df601", "pid": "142047678", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/142047678", "identifiedBy": [ { "type": "uri", @@ -55937,7 +53451,6 @@ "md5": "83855cae3d9256ff5af5ce65cf47d813", "pid": "142098256", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/142098256", "identifiedBy": [ { "type": "uri", @@ -55961,7 +53474,6 @@ "md5": "a3f425884e40ffce3af1fab2345c0d75", "pid": "142138894", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/142138894", "identifiedBy": [ { "type": "uri", @@ -55979,7 +53491,6 @@ "pid": "142174610", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/142174610", "identifiedBy": [ { "type": "uri", @@ -56006,7 +53517,6 @@ "pid": "142191663", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/142191663", "identifiedBy": [ { "type": "uri", @@ -56026,7 +53536,6 @@ "pid": "142206725", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/142206725", "identifiedBy": [ { "type": "uri", @@ -56045,7 +53554,6 @@ "md5": "bf4ccc78ff16e14b457c1f16ce90ad56", "pid": "142208035", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/142208035", "identifiedBy": [ { "type": "uri", @@ -56069,7 +53577,6 @@ "md5": "664a56496ce0f1e6b3f7b2c2dd6db1ea", "pid": "142211117", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/142211117", "identifiedBy": [ { "type": "uri", @@ -56095,7 +53602,6 @@ "md5": "16b98f6d79139417f6009bc360f052fc", "pid": "142218685", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/142218685", "identifiedBy": [ { "type": "uri", @@ -56120,7 +53626,6 @@ "pid": "142233307", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/142233307", "identifiedBy": [ { "type": "uri", @@ -56148,7 +53653,6 @@ "pid": "142248010", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/142248010", "identifiedBy": [ { "type": "uri", @@ -56175,7 +53679,6 @@ "md5": "fd1a99180701c4d41adf8a1640439a05", "pid": "142254193", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/142254193", "identifiedBy": [ { "type": "uri", @@ -56193,7 +53696,6 @@ "pid": "142291684", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/142291684", "identifiedBy": [ { "type": "uri", @@ -56219,7 +53721,6 @@ "pid": "142310778", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/142310778", "identifiedBy": [ { "type": "uri", @@ -56239,7 +53740,6 @@ "pid": "142328588", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/142328588", "identifiedBy": [ { "type": "uri", @@ -56276,7 +53776,6 @@ "md5": "b6ac4cb1b64b98acc2c1b71f7d850ab9", "pid": "142468614", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/142468614", "identifiedBy": [ { "type": "uri", @@ -56302,7 +53801,6 @@ "md5": "a5dd31af865a534363660443de3f608f", "pid": "14250923X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/14250923X", "identifiedBy": [ { "type": "uri", @@ -56320,7 +53818,6 @@ "md5": "4e0bab3301b83037e4e1cd43649e1707", "pid": "142514926", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/142514926", "identifiedBy": [ { "type": "uri", @@ -56341,7 +53838,6 @@ "pid": "142554197", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/142554197", "identifiedBy": [ { "type": "uri", @@ -56372,7 +53868,6 @@ "md5": "822aea4251df51225e5a031dd9d2086b", "pid": "142619930", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/142619930", "identifiedBy": [ { "type": "uri", @@ -56396,7 +53891,6 @@ "pid": "142643742", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/142643742", "identifiedBy": [ { "type": "uri", @@ -56412,7 +53906,6 @@ "md5": "e1978d3209fe85bcdfdfa1c75d79519b", "pid": "142693634", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/142693634", "identifiedBy": [ { "type": "uri", @@ -56445,7 +53938,6 @@ "language": [ "spa" ], - "identifier": "http://d-nb.info/gnd/142697354", "identifiedBy": [ { "type": "uri", @@ -56463,7 +53955,6 @@ "md5": "88951d44101624beeb7b837a368ef125", "pid": "142717126", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/142717126", "identifiedBy": [ { "type": "uri", @@ -56489,7 +53980,6 @@ "md5": "25bf3b5f4820f03d68c74fcfc8578c1a", "pid": "142751464", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/142751464", "identifiedBy": [ { "type": "uri", @@ -56508,7 +53998,6 @@ "md5": "70099b91bab7a41e63ad95b7ded65cab", "pid": "14275210X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/14275210X", "identifiedBy": [ { "type": "uri", @@ -56525,7 +54014,6 @@ "md5": "b9068f35c77b9092cf2cd0389b241fe3", "pid": "142757640", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/142757640", "identifiedBy": [ { "type": "uri", @@ -56548,7 +54036,6 @@ "md5": "5816d632a30eebf7a65605374341e848", "pid": "142767549", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/142767549", "identifiedBy": [ { "type": "uri", @@ -56574,7 +54061,6 @@ "md5": "1a50c7f1ac6eff99db06b9375f5dca02", "pid": "142782629", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/142782629", "identifiedBy": [ { "type": "uri", @@ -56594,7 +54080,6 @@ "pid": "142784338", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/142784338", "identifiedBy": [ { "type": "uri", @@ -56614,7 +54099,6 @@ "pid": "142806943", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/142806943", "identifiedBy": [ { "type": "uri", @@ -56642,7 +54126,6 @@ "md5": "beb75ad2731c72683fe0638fc58d04b3", "pid": "142837431", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/142837431", "identifiedBy": [ { "type": "uri", @@ -56669,7 +54152,6 @@ "md5": "ca2175be706346a789b3dbe949e2df54", "pid": "142874906", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/142874906", "identifiedBy": [ { "type": "uri", @@ -56692,7 +54174,6 @@ "pid": "142877174", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/142877174", "identifiedBy": [ { "type": "uri", @@ -56708,7 +54189,6 @@ "pid": "142881430", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/142881430", "identifiedBy": [ { "type": "uri", @@ -56729,7 +54209,6 @@ "md5": "af7275670090d7224b20be571cba7c41", "pid": "142894745", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/142894745", "identifiedBy": [ { "type": "uri", @@ -56750,7 +54229,6 @@ "pid": "142899615", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/142899615", "identifiedBy": [ { "type": "uri", @@ -56771,7 +54249,6 @@ "md5": "163377b505b38d6d45709d8b12d82fba", "pid": "142910406", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/142910406", "identifiedBy": [ { "type": "uri", @@ -56792,7 +54269,6 @@ "pid": "142915637", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/142915637", "identifiedBy": [ { "type": "uri", @@ -56822,7 +54298,6 @@ "pid": "142944548", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/142944548", "identifiedBy": [ { "type": "uri", @@ -56841,7 +54316,6 @@ "md5": "df66ea2fb1dbb96559c2749c9d8afa92", "pid": "142979597", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/142979597", "identifiedBy": [ { "type": "uri", @@ -56857,7 +54331,6 @@ "md5": "47bdf28819df0c5bdf17f0a87fa4eb51", "pid": "14299670X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/14299670X", "identifiedBy": [ { "type": "uri", @@ -56873,7 +54346,6 @@ "md5": "f691a76724570548a2b563903c2585d6", "pid": "143008900", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/143008900", "identifiedBy": [ { "type": "uri", @@ -56892,7 +54364,6 @@ "md5": "96b714e19246d55a355670c6065e6ce6", "pid": "143059424", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/143059424", "identifiedBy": [ { "type": "uri", @@ -56916,7 +54387,6 @@ "md5": "15476718d8ed25f9920bd7a42600c381", "pid": "143063324", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/143063324", "identifiedBy": [ { "type": "uri", @@ -56935,7 +54405,6 @@ "pid": "143068547", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/143068547", "identifiedBy": [ { "type": "uri", @@ -56955,7 +54424,6 @@ "md5": "dfb666fe485572a1ae1efde6ab4261b8", "pid": "143107291", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/143107291", "identifiedBy": [ { "type": "uri", @@ -56972,7 +54440,6 @@ "md5": "9cb4d72464882b38400d48dc28ffb054", "pid": "143130706", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/143130706", "identifiedBy": [ { "type": "uri", @@ -56993,7 +54460,6 @@ "md5": "044686259722e4ed76a1b7e7fc367a80", "pid": "143138901", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/143138901", "identifiedBy": [ { "type": "uri", @@ -57013,7 +54479,6 @@ "md5": "9dc9f8e2ab784c45362be5e7d1523f01", "pid": "143152807", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/143152807", "identifiedBy": [ { "type": "uri", @@ -57030,7 +54495,6 @@ "md5": "c9e27710f674e62d0a3233528cf56e90", "pid": "143164406", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/143164406", "identifiedBy": [ { "type": "uri", @@ -57047,7 +54511,6 @@ "pid": "143170899", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/143170899", "identifiedBy": [ { "type": "uri", @@ -57072,7 +54535,6 @@ "md5": "c7846bca7c4f87b0a9ff7c9d3e84286d", "pid": "143182846", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/143182846", "identifiedBy": [ { "type": "uri", @@ -57123,7 +54585,6 @@ "md5": "a630d308b10c2487b07e2646cbfb3a8c", "pid": "143199897", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/143199897", "identifiedBy": [ { "type": "uri", @@ -57143,7 +54604,6 @@ "md5": "9dff676dc549c929d98690f59aee6571", "pid": "14320212X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/14320212X", "identifiedBy": [ { "type": "uri", @@ -57161,7 +54621,6 @@ "md5": "6267ea761999fe8555e065e453db8ae0", "pid": "143203576", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/143203576", "identifiedBy": [ { "type": "uri", @@ -57178,7 +54637,6 @@ "md5": "05cdae32545da5379aca365f48768be0", "pid": "143204718", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/143204718", "identifiedBy": [ { "type": "uri", @@ -57203,7 +54661,6 @@ "md5": "4764f6b6cde8e72df0fc51d5267aa435", "pid": "143231499", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/143231499", "identifiedBy": [ { "type": "uri", @@ -57223,7 +54680,6 @@ "pid": "14326589X", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/14326589X", "identifiedBy": [ { "type": "uri", @@ -57243,7 +54699,6 @@ "md5": "6b23176b2fe76e46fa24cbcfb6c29734", "pid": "14327810X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/14327810X", "identifiedBy": [ { "type": "uri", @@ -57261,7 +54716,6 @@ "md5": "fe4ec355e1191328979375b5bd1f8818", "pid": "143326694", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/143326694", "identifiedBy": [ { "type": "uri", @@ -57281,7 +54735,6 @@ "pid": "143341847", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/143341847", "identifiedBy": [ { "type": "uri", @@ -57316,7 +54769,6 @@ "md5": "d91189f1973557e3be64e8a48cc84dbc", "pid": "14334739X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/14334739X", "identifiedBy": [ { "type": "uri", @@ -57342,7 +54794,6 @@ "md5": "075ca3ef36d1efc2b49849ecd1e119ea", "pid": "143349791", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/143349791", "identifiedBy": [ { "type": "uri", @@ -57369,7 +54820,6 @@ "md5": "16da59510e75468af0ef2f654483aa15", "pid": "143350285", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/143350285", "identifiedBy": [ { "type": "uri", @@ -57385,7 +54835,6 @@ "md5": "618767c6985d6396b32beb21e74bdfcd", "pid": "143366254", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/143366254", "identifiedBy": [ { "type": "uri", @@ -57401,7 +54850,6 @@ "md5": "583cf8516a4d6f3bb426bcd02ea4c6d9", "pid": "143371193", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/143371193", "identifiedBy": [ { "type": "uri", @@ -57418,7 +54866,6 @@ "md5": "080e8b0aafee0649e17d49221ec442a9", "pid": "143380583", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/143380583", "identifiedBy": [ { "type": "uri", @@ -57447,7 +54894,6 @@ "pid": "143441450", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/143441450", "identifiedBy": [ { "type": "uri", @@ -57474,7 +54920,6 @@ "md5": "5b5f6fc1bdd18b7dbe028ce3e8ff2de4", "pid": "143443011", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/143443011", "identifiedBy": [ { "type": "uri", @@ -57496,7 +54941,6 @@ "md5": "ca68cd04e3446fdebc0c325e95607ccf", "pid": "143454781", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/143454781", "identifiedBy": [ { "type": "uri", @@ -57524,7 +54968,6 @@ "md5": "14c304cd2f415ddbe6fd2750bc15e58b", "pid": "143464000", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/143464000", "identifiedBy": [ { "type": "uri", @@ -57544,7 +54987,6 @@ "pid": "143465147", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/143465147", "identifiedBy": [ { "type": "uri", @@ -57571,7 +55013,6 @@ "pid": "143505165", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/143505165", "identifiedBy": [ { "type": "uri", @@ -57591,7 +55032,6 @@ "pid": "143511327", "type": "bf:Person", "qualifier": "Familie", - "identifier": "http://d-nb.info/gnd/143511327", "identifiedBy": [ { "type": "uri", @@ -57609,7 +55049,6 @@ "md5": "c92ab37c8e41b9c5f9573e60df6d7564", "pid": "143513796", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/143513796", "identifiedBy": [ { "type": "uri", @@ -57629,7 +55068,6 @@ "pid": "143530879", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/143530879", "identifiedBy": [ { "type": "uri", @@ -57649,7 +55087,6 @@ "md5": "58a023ffd8eff1d346a90cb83613f73b", "pid": "143531468", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/143531468", "identifiedBy": [ { "type": "uri", @@ -57667,7 +55104,6 @@ "md5": "1c7b083fcb7e4bb0d9a70084a4b0611f", "pid": "143560794", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/143560794", "identifiedBy": [ { "type": "uri", @@ -57689,7 +55125,6 @@ "md5": "31dbdea6c2a4f72b8d4b2631285764c1", "pid": "143583883", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/143583883", "identifiedBy": [ { "type": "uri", @@ -57706,7 +55141,6 @@ "md5": "40a5124955abd76e10a5935482950b00", "pid": "143606336", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/143606336", "identifiedBy": [ { "type": "uri", @@ -57728,7 +55162,6 @@ "md5": "38d275579c9b7d0d2d7f274015271b20", "pid": "143612972", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/143612972", "identifiedBy": [ { "type": "uri", @@ -57744,7 +55177,6 @@ "md5": "10ea638510153028eb495c7f19ddb234", "pid": "143626655", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/143626655", "identifiedBy": [ { "type": "uri", @@ -57760,7 +55192,6 @@ "md5": "1519623ec04001a2a9ea5978e13e0f31", "pid": "143641174", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/143641174", "identifiedBy": [ { "type": "uri", @@ -57776,7 +55207,6 @@ "md5": "65942247ba9bd313717c1db5ac142037", "pid": "143661779", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/143661779", "identifiedBy": [ { "type": "uri", @@ -57801,7 +55231,6 @@ "pid": "143679783", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/143679783", "identifiedBy": [ { "type": "uri", @@ -57828,7 +55257,6 @@ "md5": "9d4570ff50bc836eeaa63d26cdeb05d6", "pid": "14369877X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/14369877X", "identifiedBy": [ { "type": "uri", @@ -57850,7 +55278,6 @@ "language": [ "ger" ], - "identifier": "http://d-nb.info/gnd/143700545", "identifiedBy": [ { "type": "uri", @@ -57870,7 +55297,6 @@ "md5": "55cdc7584919f21aa46d31cc8707ae52", "pid": "143720244", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/143720244", "identifiedBy": [ { "type": "uri", @@ -57885,7 +55311,6 @@ "md5": "efcaf15f998adf8631b276a025f71e99", "pid": "143739050", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/143739050", "identifiedBy": [ { "type": "uri", @@ -57901,7 +55326,6 @@ "md5": "75fb07ecdcef340306d4840aaea9ec47", "pid": "143747835", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/143747835", "identifiedBy": [ { "type": "uri", @@ -57920,7 +55344,6 @@ "md5": "b5937e95ab06231c7784db2138e74c83", "pid": "143755498", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/143755498", "identifiedBy": [ { "type": "uri", @@ -57936,7 +55359,6 @@ "md5": "0afb4973c6e546d9a6f7f006373a96af", "pid": "14382399X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/14382399X", "identifiedBy": [ { "type": "uri", @@ -57956,7 +55378,6 @@ "md5": "379faa697d26fdb500286f2419a6f8b1", "pid": "143849107", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/143849107", "identifiedBy": [ { "type": "uri", @@ -57978,7 +55399,6 @@ "md5": "c458fd2ea9c7eae394878c6d0dadce59", "pid": "143873601", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/143873601", "identifiedBy": [ { "type": "uri", @@ -57999,7 +55419,6 @@ "pid": "143905856", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/143905856", "identifiedBy": [ { "type": "uri", @@ -58029,7 +55448,6 @@ "pid": "143916629", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/143916629", "identifiedBy": [ { "type": "uri", @@ -58052,7 +55470,6 @@ "md5": "42bb144de736b226621600fbd885012e", "pid": "143917889", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/143917889", "identifiedBy": [ { "type": "uri", @@ -58086,7 +55503,6 @@ "md5": "54324aa492e00b0cbda96837f783d17d", "pid": "143929496", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/143929496", "identifiedBy": [ { "type": "uri", @@ -58113,7 +55529,6 @@ "pid": "143934821", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/143934821", "identifiedBy": [ { "type": "uri", @@ -58134,7 +55549,6 @@ "pid": "143941844", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/143941844", "identifiedBy": [ { "type": "uri", @@ -58151,7 +55565,6 @@ "md5": "88fcd0e298f1ee234612596be5c0dff7", "pid": "143985418", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/143985418", "identifiedBy": [ { "type": "uri", @@ -58170,7 +55583,6 @@ "md5": "0fb4fb80ff8c44b8a5520c9087a5a004", "pid": "144017229", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/144017229", "identifiedBy": [ { "type": "uri", @@ -58187,7 +55599,6 @@ "pid": "144040182", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/144040182", "identifiedBy": [ { "type": "uri", @@ -58204,7 +55615,6 @@ "md5": "bdcce0e2349b5d792094dd7c958d6cb4", "pid": "156719029", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/156719029", "identifiedBy": [ { "type": "uri", @@ -58219,7 +55629,6 @@ "md5": "6bf7e7820a94991509f48737c888c50b", "pid": "158403487", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/158403487", "identifiedBy": [ { "type": "uri", @@ -58248,7 +55657,6 @@ "md5": "fa54531ff729d950d86107d41e1e0a99", "pid": "16110522X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/16110522X", "identifiedBy": [ { "type": "uri", @@ -58266,7 +55674,6 @@ "md5": "54fdcb7ff5c6a7b819140b9bf05646d8", "pid": "170056937", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/170056937", "identifiedBy": [ { "type": "uri", @@ -58294,7 +55701,6 @@ "md5": "b67e129fcd9ab747f21d4be08536ee37", "pid": "170064344", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/170064344", "identifiedBy": [ { "type": "uri", @@ -58315,7 +55721,6 @@ "md5": "bc9113b2b1289696d394cd8272a807b5", "pid": "17014514X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/17014514X", "identifiedBy": [ { "type": "uri", @@ -58350,7 +55755,6 @@ "pid": "170154297", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/170154297", "identifiedBy": [ { "type": "uri", @@ -58383,7 +55787,6 @@ "pid": "17017252X", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/17017252X", "identifiedBy": [ { "type": "uri", @@ -58411,7 +55814,6 @@ "md5": "3bc7ee9721484097137f8fb94a387270", "pid": "170229955", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/170229955", "identifiedBy": [ { "type": "uri", @@ -58430,7 +55832,6 @@ "pid": "170238873", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/170238873", "identifiedBy": [ { "type": "uri", @@ -58464,7 +55865,6 @@ "md5": "f19067e187cf0301e93f6f9b0acc101f", "pid": "17027926X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/17027926X", "identifiedBy": [ { "type": "uri", @@ -58495,7 +55895,6 @@ "md5": "154c3626ad70276530fff79aaed8ce36", "pid": "170299597", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/170299597", "identifiedBy": [ { "type": "uri", @@ -58513,7 +55912,6 @@ "md5": "d736464bdbd8a8ad398ffa042ecafc56", "pid": "170311295", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/170311295", "identifiedBy": [ { "type": "uri", @@ -58531,7 +55929,6 @@ "md5": "11e42b640f68b4a983db33e8afe38d18", "pid": "170322122", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/170322122", "identifiedBy": [ { "type": "uri", @@ -58549,7 +55946,6 @@ "md5": "058a567d50d5a8a6588ec5fe2d1ca648", "pid": "170395839", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/170395839", "identifiedBy": [ { "type": "uri", @@ -58567,7 +55963,6 @@ "md5": "e9e44699b4b32865e5b49e27c5029071", "pid": "170402584", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/170402584", "identifiedBy": [ { "type": "uri", @@ -58586,7 +55981,6 @@ "pid": "170410633", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/170410633", "identifiedBy": [ { "type": "uri", @@ -58608,7 +56002,6 @@ "md5": "f16156b420a64464ed35bff49992094a", "pid": "170454428", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/170454428", "identifiedBy": [ { "type": "uri", @@ -58632,7 +56025,6 @@ "md5": "a24307cae64d2e3c72ea081f18c9a406", "pid": "170502708", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/170502708", "identifiedBy": [ { "type": "uri", @@ -58650,7 +56042,6 @@ "md5": "373ade11eeb2e2b3fcce12b9dfe21be2", "pid": "170594211", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/170594211", "identifiedBy": [ { "type": "uri", @@ -58669,7 +56060,6 @@ "md5": "4bcb9c1cf746b5f049d38d0ec2a2b7c2", "pid": "170661393", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/170661393", "identifiedBy": [ { "type": "uri", @@ -58695,7 +56085,6 @@ "pid": "170678253", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/170678253", "identifiedBy": [ { "type": "uri", @@ -58718,7 +56107,6 @@ "pid": "170725383", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/170725383", "identifiedBy": [ { "type": "uri", @@ -58741,7 +56129,6 @@ "md5": "7ac58861822b62def3f7c1a067d3a1e4", "pid": "170813010", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/170813010", "identifiedBy": [ { "type": "uri", @@ -58760,7 +56147,6 @@ "md5": "92b7823d0a88bc242cbc4a0945f9d174", "pid": "170877965", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/170877965", "identifiedBy": [ { "type": "uri", @@ -58784,7 +56170,6 @@ "md5": "0e9ff836988c8b0cef1008b4fffffc8c", "pid": "170952320", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/170952320", "identifiedBy": [ { "type": "uri", @@ -58802,7 +56187,6 @@ "md5": "b5bfd98399357ac1facdb823ff98ec39", "pid": "170971325", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/170971325", "identifiedBy": [ { "type": "uri", @@ -58826,7 +56210,6 @@ "md5": "f9b08c464508038de5318aa2628841f2", "pid": "170996085", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/170996085", "identifiedBy": [ { "type": "uri", @@ -58847,7 +56230,6 @@ "md5": "550558e4665b311ea0e4d256043a392c", "pid": "171052412", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/171052412", "identifiedBy": [ { "type": "uri", @@ -58878,7 +56260,6 @@ "md5": "eb1a01cdf4674bbc9c7985db67917c6f", "pid": "171082079", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/171082079", "identifiedBy": [ { "type": "uri", @@ -58896,7 +56277,6 @@ "md5": "f770f990183ffd4ea0dc02661a9fc012", "pid": "171115058", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/171115058", "identifiedBy": [ { "type": "uri", @@ -58928,7 +56308,6 @@ "md5": "1fff4c77d99b7e66d220072a25777370", "pid": "171217772", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/171217772", "identifiedBy": [ { "type": "uri", @@ -58954,7 +56333,6 @@ "md5": "89dc48260e5b90d36beeb25dbc2f7391", "pid": "171283899", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/171283899", "identifiedBy": [ { "type": "uri", @@ -58980,7 +56358,6 @@ "md5": "eeebae05d9d56cb53f063769dff5da8f", "pid": "171302605", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/171302605", "identifiedBy": [ { "type": "uri", @@ -59006,7 +56383,6 @@ "md5": "3baf410ca441b9c2ebf30f67cfd9aaa5", "pid": "171346424", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/171346424", "identifiedBy": [ { "type": "uri", @@ -59024,7 +56400,6 @@ "md5": "3ae4652be2a007987f2535c147fadc3f", "pid": "171367421", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/171367421", "identifiedBy": [ { "type": "uri", @@ -59043,7 +56418,6 @@ "md5": "c2135cc769e4ed63395fbb2522059bb7", "pid": "171541545", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/171541545", "identifiedBy": [ { "type": "uri", @@ -59069,7 +56443,6 @@ "md5": "5da1bbe64237593e5ddbbdb99faa8b0a", "pid": "171555430", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/171555430", "identifiedBy": [ { "type": "uri", @@ -59087,7 +56460,6 @@ "md5": "426d04bc8080eb32f1feafc6c18055f1", "pid": "171629353", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/171629353", "identifiedBy": [ { "type": "uri", @@ -59103,7 +56475,6 @@ "md5": "864cf09effef91a03e58063d89e27f3b", "pid": "171634667", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/171634667", "identifiedBy": [ { "type": "uri", @@ -59126,7 +56497,6 @@ "md5": "6eeaa9d4e926f4483608bb680c2cba29", "pid": "171707788", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/171707788", "identifiedBy": [ { "type": "uri", @@ -59144,7 +56514,6 @@ "md5": "6338c59901eb6ac26a7e573b9398e268", "pid": "171735099", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/171735099", "identifiedBy": [ { "type": "uri", @@ -59162,7 +56531,6 @@ "md5": "37e4852378fd1de76440930f7b98ca31", "pid": "171781082", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/171781082", "identifiedBy": [ { "type": "uri", @@ -59186,7 +56554,6 @@ "md5": "364f85a9c0464dd6ee1bf6c4cc01b3bb", "pid": "171827872", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/171827872", "identifiedBy": [ { "type": "uri", @@ -59210,7 +56577,6 @@ "md5": "6d85779ee2d83921b917290b783c3d29", "pid": "17187935X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/17187935X", "identifiedBy": [ { "type": "uri", @@ -59238,7 +56604,6 @@ "md5": "07e84eec384183d8445986c8420dafd8", "pid": "171899660", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/171899660", "identifiedBy": [ { "type": "uri", @@ -59262,7 +56627,6 @@ "md5": "127a99bba5ba6563665643b509ef083f", "pid": "17205821X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/17205821X", "identifiedBy": [ { "type": "uri", @@ -59284,7 +56648,6 @@ "md5": "26b64e31df91ec467ac6564ec71dd75b", "pid": "172099331", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/172099331", "identifiedBy": [ { "type": "uri", @@ -59302,7 +56665,6 @@ "md5": "a8a8aa5988410d86196741d904162d32", "pid": "172140013", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/172140013", "identifiedBy": [ { "type": "uri", @@ -59319,7 +56681,6 @@ "pid": "172141788", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/172141788", "identifiedBy": [ { "type": "uri", @@ -59343,7 +56704,6 @@ "md5": "a54e3ff07d3975bf939290874a92256f", "pid": "172206790", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/172206790", "identifiedBy": [ { "type": "uri", @@ -59376,7 +56736,6 @@ "md5": "ba15eea079240bfc60e574ade1dbf025", "pid": "172224314", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/172224314", "identifiedBy": [ { "type": "uri", @@ -59392,7 +56751,6 @@ "md5": "7a00368bdabd96668a71bba3bdef3804", "pid": "172252938", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/172252938", "identifiedBy": [ { "type": "uri", @@ -59408,7 +56766,6 @@ "md5": "d4e74af3159c6884685549f9301a0eae", "pid": "172263840", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/172263840", "identifiedBy": [ { "type": "uri", @@ -59440,7 +56797,6 @@ "md5": "911b38e9da14b8f178f8cf000428e5a3", "pid": "172265258", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/172265258", "identifiedBy": [ { "type": "uri", @@ -59464,7 +56820,6 @@ "md5": "5cb66f2ea01cc0678c90e63af6974697", "pid": "172316480", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/172316480", "identifiedBy": [ { "type": "uri", @@ -59490,7 +56845,6 @@ "md5": "ca6bc87d5ac3ff38c3d3391d8b496039", "pid": "172325749", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/172325749", "identifiedBy": [ { "type": "uri", @@ -59516,7 +56870,6 @@ "md5": "50d86560db357d7f474d20b333fd6f52", "pid": "172335450", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/172335450", "identifiedBy": [ { "type": "uri", @@ -59545,7 +56898,6 @@ "md5": "d7d3608528524033e3562102d7f4d83f", "pid": "172435498", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/172435498", "identifiedBy": [ { "type": "uri", @@ -59568,7 +56920,6 @@ "md5": "e4c709537bb2b4f6c2bebbbf4ddd7109", "pid": "172448611", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/172448611", "identifiedBy": [ { "type": "uri", @@ -59597,7 +56948,6 @@ "md5": "11795d3c37aac0d8d1ea477c3f0577e8", "pid": "17248491X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/17248491X", "identifiedBy": [ { "type": "uri", @@ -59622,7 +56972,6 @@ "md5": "077972c7a033ed97873c62fdc4338e0a", "pid": "172560462", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/172560462", "identifiedBy": [ { "type": "uri", @@ -59648,7 +56997,6 @@ "md5": "e4e8deb3ea8d7b02b673691d24a7cfde", "pid": "172650003", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/172650003", "identifiedBy": [ { "type": "uri", @@ -59671,7 +57019,6 @@ "md5": "a189547794f07dfddf9af9b7f23073ec", "pid": "172664128", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/172664128", "identifiedBy": [ { "type": "uri", @@ -59687,7 +57034,6 @@ "md5": "ef6b33e09682a0d0af1a9d699d6b1029", "pid": "172677335", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/172677335", "identifiedBy": [ { "type": "uri", @@ -59712,7 +57058,6 @@ "pid": "172710073", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/172710073", "identifiedBy": [ { "type": "uri", @@ -59736,7 +57081,6 @@ "md5": "7e7c0d433ec57ada1175f2aa00d65e80", "pid": "172712866", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/172712866", "identifiedBy": [ { "type": "uri", @@ -59752,7 +57096,6 @@ "md5": "7f8ff2ef288052c974eb9af28b6ef7a8", "pid": "17273889X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/17273889X", "identifiedBy": [ { "type": "uri", @@ -59774,7 +57117,6 @@ "md5": "25df2cae725551fc39edbb68245014bf", "pid": "172741912", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/172741912", "identifiedBy": [ { "type": "uri", @@ -59792,7 +57134,6 @@ "md5": "0b1772673f0578dcd22fb192e000bf4a", "pid": "172821657", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/172821657", "identifiedBy": [ { "type": "uri", @@ -59808,7 +57149,6 @@ "md5": "1601e54ad83f27873e17f00ee974d249", "pid": "172937051", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/172937051", "identifiedBy": [ { "type": "uri", @@ -59824,7 +57164,6 @@ "md5": "6e6cf758ba4ff2076f6d08938fe4d902", "pid": "172939755", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/172939755", "identifiedBy": [ { "type": "uri", @@ -59840,7 +57179,6 @@ "md5": "eb6828dc932295fbc0080b033884ff2d", "pid": "172953804", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/172953804", "identifiedBy": [ { "type": "uri", @@ -59866,7 +57204,6 @@ "md5": "f97723091d38ab8d71e6613db3c2313a", "pid": "173016383", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/173016383", "identifiedBy": [ { "type": "uri", @@ -59887,7 +57224,6 @@ "md5": "5834f36e6f5a53d3b4a589af6af646d6", "pid": "173047165", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/173047165", "identifiedBy": [ { "type": "uri", @@ -59905,7 +57241,6 @@ "md5": "fa2e030c1efe61844f09cc322854b7a1", "pid": "173079466", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/173079466", "identifiedBy": [ { "type": "uri", @@ -59921,7 +57256,6 @@ "md5": "bfc709c0d123f35cf2f6ff8d3b3dc641", "pid": "173093086", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/173093086", "identifiedBy": [ { "type": "uri", @@ -59939,7 +57273,6 @@ "md5": "d89e1465d97347a3d5dac4124e4997b9", "pid": "173112110", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/173112110", "identifiedBy": [ { "type": "uri", @@ -59967,7 +57300,6 @@ "pid": "173120016", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/173120016", "identifiedBy": [ { "type": "uri", @@ -59988,7 +57320,6 @@ "md5": "76773f70417ff982ca9353e19dd4dc2a", "pid": "173162061", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/173162061", "identifiedBy": [ { "type": "uri", @@ -60007,7 +57338,6 @@ "pid": "17326851X", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/17326851X", "identifiedBy": [ { "type": "uri", @@ -60036,7 +57366,6 @@ "md5": "ba66869515a531c2d98f8685098d555a", "pid": "173287387", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/173287387", "identifiedBy": [ { "type": "uri", @@ -60058,7 +57387,6 @@ "md5": "80ec0d3b2eb0c3fb40b81f1e2065110c", "pid": "173311660", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/173311660", "identifiedBy": [ { "type": "uri", @@ -60080,7 +57408,6 @@ "md5": "e2c8c009d2e8f3f7c5dba42c003a53fe", "pid": "173395627", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/173395627", "identifiedBy": [ { "type": "uri", @@ -60105,7 +57432,6 @@ "md5": "1d0a2b84b3272bf350694c4a5f8bf93f", "pid": "17344511X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/17344511X", "identifiedBy": [ { "type": "uri", @@ -60120,7 +57446,6 @@ "md5": "175c38d75f827096e79027a92fd47613", "pid": "173457258", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/173457258", "identifiedBy": [ { "type": "uri", @@ -60148,7 +57473,6 @@ "md5": "9a11c7fad72e1a74c128404bc37c03ec", "pid": "173606091", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/173606091", "identifiedBy": [ { "type": "uri", @@ -60164,7 +57488,6 @@ "md5": "32c9cc739b3c501dfa002879147118d1", "pid": "17361860X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/17361860X", "identifiedBy": [ { "type": "uri", @@ -60199,7 +57522,6 @@ "pid": "173628257", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/173628257", "identifiedBy": [ { "type": "uri", @@ -60216,7 +57538,6 @@ "md5": "be95622d014b5884aa6257d6255c9129", "pid": "173635385", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/173635385", "identifiedBy": [ { "type": "uri", @@ -60234,7 +57555,6 @@ "md5": "ffb79f75875a461fe937d02a485da413", "pid": "173674534", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/173674534", "identifiedBy": [ { "type": "uri", @@ -60252,7 +57572,6 @@ "md5": "ef84e95f92d3a1c7f2c3a9c6d11ebcdb", "pid": "173748856", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/173748856", "identifiedBy": [ { "type": "uri", @@ -60268,7 +57587,6 @@ "md5": "702a1ffc4a67510f30478d1705202263", "pid": "173756638", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/173756638", "identifiedBy": [ { "type": "uri", @@ -60283,7 +57601,6 @@ "md5": "94e0e367af7a8f833b868e3d1e3ef3bf", "pid": "173770401", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/173770401", "identifiedBy": [ { "type": "uri", @@ -60303,7 +57620,6 @@ "pid": "173774148", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/173774148", "identifiedBy": [ { "type": "uri", @@ -60327,7 +57643,6 @@ "pid": "173774776", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/173774776", "identifiedBy": [ { "type": "uri", @@ -60359,7 +57674,6 @@ "md5": "627cd49eb20d10e4149f97eb5ced33a3", "pid": "173808085", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/173808085", "identifiedBy": [ { "type": "uri", @@ -60376,7 +57690,6 @@ "pid": "173843034", "type": "bf:Person", "gender": "female", - "identifier": "http://d-nb.info/gnd/173843034", "identifiedBy": [ { "type": "uri", @@ -60402,7 +57715,6 @@ "md5": "fc0fd342f2e54e00b92aabd3388a89f1", "pid": "173888135", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/173888135", "identifiedBy": [ { "type": "uri", @@ -60418,7 +57730,6 @@ "md5": "6ce541ce98746c507dd6d16365dd6359", "pid": "173977669", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/173977669", "identifiedBy": [ { "type": "uri", @@ -60434,7 +57745,6 @@ "md5": "d73a3fca07cab99a9af3931b58a3108d", "pid": "174095139", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/174095139", "identifiedBy": [ { "type": "uri", @@ -60450,7 +57760,6 @@ "md5": "643ba88a30ed8975af4f4d8ac8f1ad77", "pid": "174168616", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/174168616", "identifiedBy": [ { "type": "uri", @@ -60468,7 +57777,6 @@ "md5": "3ef3778d3ffae46ea69c25b08f35b02e", "pid": "17420275X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/17420275X", "identifiedBy": [ { "type": "uri", @@ -60484,7 +57792,6 @@ "md5": "6403d0930e5f42c0f08ce06b50406ce2", "pid": "17422138X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/17422138X", "identifiedBy": [ { "type": "uri", @@ -60499,7 +57806,6 @@ "md5": "d19266bae13e483898eb76419392a0c7", "pid": "174376391", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/174376391", "identifiedBy": [ { "type": "uri", @@ -60515,7 +57821,6 @@ "pid": "178767875", "type": "bf:Person", "gender": "male", - "identifier": "http://d-nb.info/gnd/178767875", "identifiedBy": [ { "type": "uri", @@ -60543,7 +57848,6 @@ "md5": "dc7f9493ed8b4bfd27062c011168397b", "pid": "189437065", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/189437065", "identifiedBy": [ { "type": "uri", @@ -60568,7 +57872,6 @@ "pid": "199160554", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/7779640-8", "identifiedBy": [ { "type": "uri", @@ -60591,7 +57894,6 @@ "pid": "320025594", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10277515-1", "identifiedBy": [ { "type": "uri", @@ -60615,7 +57917,6 @@ "pid": "320038580", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10278785-2", "identifiedBy": [ { "type": "uri", @@ -60631,7 +57932,6 @@ "pid": "320040992", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10279023-1", "identifiedBy": [ { "type": "uri", @@ -60661,7 +57961,6 @@ "pid": "320067661", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10281592-6", "identifiedBy": [ { "type": "uri", @@ -60683,7 +57982,6 @@ "pid": "320070522", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10281873-3", "identifiedBy": [ { "type": "uri", @@ -60705,7 +58003,6 @@ "pid": "320074129", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10282229-3", "identifiedBy": [ { "type": "uri", @@ -60721,7 +58018,6 @@ "pid": "320080242", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10282823-4", "identifiedBy": [ { "type": "uri", @@ -60737,7 +58033,6 @@ "pid": "320080366", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10282835-0", "identifiedBy": [ { "type": "uri", @@ -60753,7 +58048,6 @@ "pid": "320093549", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10284119-6", "identifiedBy": [ { "type": "uri", @@ -60775,7 +58069,6 @@ "pid": "320111881", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10285909-7", "identifiedBy": [ { "type": "uri", @@ -60798,7 +58091,6 @@ "pid": "320153746", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10290003-6", "identifiedBy": [ { "type": "uri", @@ -60824,7 +58116,6 @@ "pid": "320168328", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10291427-8", "identifiedBy": [ { "type": "uri", @@ -60847,7 +58138,6 @@ "pid": "320188760", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10293430-7", "identifiedBy": [ { "type": "uri", @@ -60863,7 +58153,6 @@ "pid": "320196321", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10294168-3", "identifiedBy": [ { "type": "uri", @@ -60880,7 +58169,6 @@ "pid": "320202593", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10294771-5", "identifiedBy": [ { "type": "uri", @@ -60902,7 +58190,6 @@ "pid": "320218694", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10296322-8", "identifiedBy": [ { "type": "uri", @@ -60928,7 +58215,6 @@ "pid": "320234975", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10297918-2", "identifiedBy": [ { "type": "uri", @@ -60944,7 +58230,6 @@ "pid": "320236706", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10298082-2", "identifiedBy": [ { "type": "uri", @@ -60966,7 +58251,6 @@ "pid": "320290239", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10303308-7", "identifiedBy": [ { "type": "uri", @@ -60982,7 +58266,6 @@ "pid": "320292746", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10303551-5", "identifiedBy": [ { "type": "uri", @@ -60998,7 +58281,6 @@ "pid": "320319008", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10306118-6", "identifiedBy": [ { "type": "uri", @@ -61014,7 +58296,6 @@ "pid": "320328074", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10306996-3", "identifiedBy": [ { "type": "uri", @@ -61030,7 +58311,6 @@ "pid": "32032964X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10307151-9", "identifiedBy": [ { "type": "uri", @@ -61053,7 +58333,6 @@ "pid": "320334988", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10307673-6", "identifiedBy": [ { "type": "uri", @@ -61080,7 +58359,6 @@ "pid": "320354202", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10309560-3", "identifiedBy": [ { "type": "uri", @@ -61096,7 +58374,6 @@ "pid": "320364879", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10310600-5", "identifiedBy": [ { "type": "uri", @@ -61112,7 +58389,6 @@ "pid": "320366510", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10310762-9", "identifiedBy": [ { "type": "uri", @@ -61128,7 +58404,6 @@ "pid": "320368173", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10310927-4", "identifiedBy": [ { "type": "uri", @@ -61154,7 +58429,6 @@ "pid": "320388387", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10312911-X", "identifiedBy": [ { "type": "uri", @@ -61170,7 +58444,6 @@ "pid": "320390268", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10313099-8", "identifiedBy": [ { "type": "uri", @@ -61186,7 +58459,6 @@ "pid": "320393690", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10313439-6", "identifiedBy": [ { "type": "uri", @@ -61202,7 +58474,6 @@ "pid": "320406407", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10314681-7", "identifiedBy": [ { "type": "uri", @@ -61218,7 +58489,6 @@ "pid": "320412733", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10315305-6", "identifiedBy": [ { "type": "uri", @@ -61240,7 +58510,6 @@ "pid": "320418448", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10315867-4", "identifiedBy": [ { "type": "uri", @@ -61256,7 +58525,6 @@ "pid": "320422739", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10316289-6", "identifiedBy": [ { "type": "uri", @@ -61281,7 +58549,6 @@ "pid": "32043706X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10317685-8", "identifiedBy": [ { "type": "uri", @@ -61307,7 +58574,6 @@ "pid": "320461394", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10320030-7", "identifiedBy": [ { "type": "uri", @@ -61326,7 +58592,6 @@ "pid": "320475891", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10321430-6", "identifiedBy": [ { "type": "uri", @@ -61350,7 +58615,6 @@ "pid": "320488063", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10322601-1", "identifiedBy": [ { "type": "uri", @@ -61370,7 +58634,6 @@ "pid": "32048906X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10322698-9", "identifiedBy": [ { "type": "uri", @@ -61389,7 +58652,6 @@ "pid": "320497070", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10323470-6", "identifiedBy": [ { "type": "uri", @@ -61409,7 +58671,6 @@ "pid": "320506037", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10324330-6", "identifiedBy": [ { "type": "uri", @@ -61426,7 +58687,6 @@ "pid": "320515206", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10325213-7", "identifiedBy": [ { "type": "uri", @@ -61445,7 +58705,6 @@ "pid": "320532836", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10326914-9", "identifiedBy": [ { "type": "uri", @@ -61467,7 +58726,6 @@ "pid": "320542173", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10327816-3", "identifiedBy": [ { "type": "uri", @@ -61483,7 +58741,6 @@ "pid": "320562425", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10329774-1", "identifiedBy": [ { "type": "uri", @@ -61507,7 +58764,6 @@ "pid": "320577880", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10331277-8", "identifiedBy": [ { "type": "uri", @@ -61526,7 +58782,6 @@ "pid": "320577929", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10331281-X", "identifiedBy": [ { "type": "uri", @@ -61542,7 +58797,6 @@ "pid": "320579751", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10331458-1", "identifiedBy": [ { "type": "uri", @@ -61559,7 +58813,6 @@ "pid": "320584739", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10331942-6", "identifiedBy": [ { "type": "uri", @@ -61575,7 +58828,6 @@ "pid": "320618439", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10335206-5", "identifiedBy": [ { "type": "uri", @@ -61591,7 +58843,6 @@ "pid": "320631176", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10336440-7", "identifiedBy": [ { "type": "uri", @@ -61615,7 +58866,6 @@ "pid": "320642461", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10337517-X", "identifiedBy": [ { "type": "uri", @@ -61641,7 +58891,6 @@ "pid": "32064779X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10338021-8", "identifiedBy": [ { "type": "uri", @@ -61667,7 +58916,6 @@ "pid": "320648877", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10338120-X", "identifiedBy": [ { "type": "uri", @@ -61685,7 +58933,6 @@ "pid": "320655458", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10338750-X", "identifiedBy": [ { "type": "uri", @@ -61705,7 +58952,6 @@ "pid": "320663817", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10339558-1", "identifiedBy": [ { "type": "uri", @@ -61722,7 +58968,6 @@ "pid": "320680169", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10341146-X", "identifiedBy": [ { "type": "uri", @@ -61751,7 +58996,6 @@ "pid": "320694577", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10342476-3", "identifiedBy": [ { "type": "uri", @@ -61768,7 +59012,6 @@ "pid": "940254522", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5095284-5", "identifiedBy": [ { "type": "uri", @@ -61800,7 +59043,6 @@ "pid": "940263920", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/3018974-3", "identifiedBy": [ { "type": "uri", @@ -61825,7 +59067,6 @@ "pid": "94027115X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5096106-8", "identifiedBy": [ { "type": "uri", @@ -61842,7 +59083,6 @@ "pid": "94037238X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5097761-1", "identifiedBy": [ { "type": "uri", @@ -61873,7 +59113,6 @@ "pid": "940374412", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5097960-7", "identifiedBy": [ { "type": "uri", @@ -61889,7 +59128,6 @@ "pid": "940433729", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5098759-8", "identifiedBy": [ { "type": "uri", @@ -61906,7 +59144,6 @@ "pid": "940439611", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5099331-8", "identifiedBy": [ { "type": "uri", @@ -61933,7 +59170,6 @@ "pid": "940547880", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5100092-1", "identifiedBy": [ { "type": "uri", @@ -61956,7 +59192,6 @@ "pid": "940552337", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1301063-3", "identifiedBy": [ { "type": "uri", @@ -61973,7 +59208,6 @@ "pid": "940717395", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5101445-2", "identifiedBy": [ { "type": "uri", @@ -61989,7 +59223,6 @@ "pid": "940975262", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5104089-X", "identifiedBy": [ { "type": "uri", @@ -62012,7 +59245,6 @@ "pid": "940977877", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5104334-8", "identifiedBy": [ { "type": "uri", @@ -62035,7 +59267,6 @@ "pid": "940981769", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5104645-3", "identifiedBy": [ { "type": "uri", @@ -62051,7 +59282,6 @@ "pid": "940982315", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5104697-0", "identifiedBy": [ { "type": "uri", @@ -62074,7 +59304,6 @@ "pid": "941017893", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5105001-8", "identifiedBy": [ { "type": "uri", @@ -62096,7 +59325,6 @@ "pid": "941089150", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5105210-6", "identifiedBy": [ { "type": "uri", @@ -62119,7 +59347,6 @@ "pid": "941275590", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5106167-3", "identifiedBy": [ { "type": "uri", @@ -62136,7 +59363,6 @@ "pid": "941281973", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5106772-9", "identifiedBy": [ { "type": "uri", @@ -62152,7 +59378,6 @@ "pid": "941346447", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5107295-6", "identifiedBy": [ { "type": "uri", @@ -62177,7 +59402,6 @@ "pid": "941637379", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5108177-5", "identifiedBy": [ { "type": "uri", @@ -62204,7 +59428,6 @@ "pid": "941671380", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5109269-4", "identifiedBy": [ { "type": "uri", @@ -62226,7 +59449,6 @@ "pid": "94192582X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5109741-2", "identifiedBy": [ { "type": "uri", @@ -62243,7 +59465,6 @@ "pid": "941943933", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5110816-1", "identifiedBy": [ { "type": "uri", @@ -62260,7 +59481,6 @@ "pid": "941953912", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2139291-2", "identifiedBy": [ { "type": "uri", @@ -62277,7 +59497,6 @@ "pid": "942048636", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1227394-6", "identifiedBy": [ { "type": "uri", @@ -62300,7 +59519,6 @@ "pid": "94205086X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1227928-6", "identifiedBy": [ { "type": "uri", @@ -62326,7 +59544,6 @@ "pid": "942050878", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1227930-4", "identifiedBy": [ { "type": "uri", @@ -62352,7 +59569,6 @@ "pid": "942070747", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2139670-X", "identifiedBy": [ { "type": "uri", @@ -62382,7 +59598,6 @@ "pid": "942199448", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2140079-9", "identifiedBy": [ { "type": "uri", @@ -62404,7 +59619,6 @@ "pid": "942320220", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2140465-3", "identifiedBy": [ { "type": "uri", @@ -62426,7 +59640,6 @@ "pid": "942384849", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1600168-0", "identifiedBy": [ { "type": "uri", @@ -62455,7 +59668,6 @@ "pid": "94242283X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5113093-2", "identifiedBy": [ { "type": "uri", @@ -62478,7 +59690,6 @@ "pid": "942428595", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5113662-4", "identifiedBy": [ { "type": "uri", @@ -62495,7 +59706,6 @@ "pid": "942565762", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5114650-2", "identifiedBy": [ { "type": "uri", @@ -62512,7 +59722,6 @@ "pid": "942662024", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5116117-5", "identifiedBy": [ { "type": "uri", @@ -62537,7 +59746,6 @@ "pid": "942856015", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5116674-4", "identifiedBy": [ { "type": "uri", @@ -62554,7 +59762,6 @@ "pid": "942894871", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1228559-6", "identifiedBy": [ { "type": "uri", @@ -62581,7 +59788,6 @@ "pid": "942904168", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5116819-4", "identifiedBy": [ { "type": "uri", @@ -62598,7 +59804,6 @@ "pid": "942915232", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5117828-X", "identifiedBy": [ { "type": "uri", @@ -62620,7 +59825,6 @@ "pid": "942918584", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5118135-6", "identifiedBy": [ { "type": "uri", @@ -62642,7 +59846,6 @@ "pid": "942954297", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2142121-3", "identifiedBy": [ { "type": "uri", @@ -62667,7 +59870,6 @@ "pid": "942982096", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2142235-7", "identifiedBy": [ { "type": "uri", @@ -62694,7 +59896,6 @@ "pid": "943645956", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5119088-6", "identifiedBy": [ { "type": "uri", @@ -62711,7 +59912,6 @@ "pid": "943646448", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5119137-4", "identifiedBy": [ { "type": "uri", @@ -62737,7 +59937,6 @@ "pid": "943654904", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1700380-5", "identifiedBy": [ { "type": "uri", @@ -62764,7 +59963,6 @@ "pid": "943708826", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5120661-4", "identifiedBy": [ { "type": "uri", @@ -62789,7 +59987,6 @@ "pid": "943780411", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5121444-1", "identifiedBy": [ { "type": "uri", @@ -62819,7 +60016,6 @@ "pid": "943780489", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5121450-7", "identifiedBy": [ { "type": "uri", @@ -62835,7 +60031,6 @@ "pid": "943895758", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1227825-7", "identifiedBy": [ { "type": "uri", @@ -62857,7 +60052,6 @@ "pid": "943900069", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1229787-2", "identifiedBy": [ { "type": "uri", @@ -62879,7 +60073,6 @@ "pid": "943913152", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/3024590-4", "identifiedBy": [ { "type": "uri", @@ -62906,7 +60099,6 @@ "pid": "943915236", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5121991-8", "identifiedBy": [ { "type": "uri", @@ -62943,7 +60135,6 @@ "pid": "944068960", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1228915-2", "identifiedBy": [ { "type": "uri", @@ -62971,7 +60162,6 @@ "pid": "944075738", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1700551-6", "identifiedBy": [ { "type": "uri", @@ -62988,7 +60178,6 @@ "pid": "944081274", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5124584-X", "identifiedBy": [ { "type": "uri", @@ -63005,7 +60194,6 @@ "pid": "944087809", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5125194-2", "identifiedBy": [ { "type": "uri", @@ -63025,7 +60213,6 @@ "pid": "944148816", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5126005-0", "identifiedBy": [ { "type": "uri", @@ -63052,7 +60239,6 @@ "pid": "944150284", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5126149-2", "identifiedBy": [ { "type": "uri", @@ -63075,7 +60261,6 @@ "pid": "944150381", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5126157-1", "identifiedBy": [ { "type": "uri", @@ -63098,7 +60283,6 @@ "pid": "944150993", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5126210-1", "identifiedBy": [ { "type": "uri", @@ -63121,7 +60305,6 @@ "pid": "944155383", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5126592-8", "identifiedBy": [ { "type": "uri", @@ -63153,7 +60336,6 @@ "pid": "944191908", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1301716-0", "identifiedBy": [ { "type": "uri", @@ -63170,7 +60352,6 @@ "pid": "94419558X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/3025455-3", "identifiedBy": [ { "type": "uri", @@ -63192,7 +60373,6 @@ "pid": "944242898", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2146601-4", "identifiedBy": [ { "type": "uri", @@ -63209,7 +60389,6 @@ "pid": "944290604", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5127848-0", "identifiedBy": [ { "type": "uri", @@ -63225,7 +60404,6 @@ "pid": "944393020", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/3026008-5", "identifiedBy": [ { "type": "uri", @@ -63268,7 +60446,6 @@ "pid": "944405312", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5129329-8", "identifiedBy": [ { "type": "uri", @@ -63284,7 +60461,6 @@ "pid": "944548059", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5129567-2", "identifiedBy": [ { "type": "uri", @@ -63301,7 +60477,6 @@ "pid": "944640206", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2147793-0", "identifiedBy": [ { "type": "uri", @@ -63318,7 +60493,6 @@ "pid": "944694845", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5129995-1", "identifiedBy": [ { "type": "uri", @@ -63335,7 +60509,6 @@ "pid": "944695167", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5130025-4", "identifiedBy": [ { "type": "uri", @@ -63358,7 +60531,6 @@ "pid": "944797199", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5130855-1", "identifiedBy": [ { "type": "uri", @@ -63385,7 +60557,6 @@ "pid": "944825028", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1230429-3", "identifiedBy": [ { "type": "uri", @@ -63402,7 +60573,6 @@ "pid": "944923313", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5132947-5", "identifiedBy": [ { "type": "uri", @@ -63428,7 +60598,6 @@ "pid": "944929052", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5133476-8", "identifiedBy": [ { "type": "uri", @@ -63445,7 +60614,6 @@ "pid": "944929710", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5133540-2", "identifiedBy": [ { "type": "uri", @@ -63470,7 +60638,6 @@ "pid": "944941710", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5134669-2", "identifiedBy": [ { "type": "uri", @@ -63487,7 +60654,6 @@ "pid": "94495068X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5135494-9", "identifiedBy": [ { "type": "uri", @@ -63514,7 +60680,6 @@ "pid": "944951910", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5135611-9", "identifiedBy": [ { "type": "uri", @@ -63537,7 +60702,6 @@ "pid": "944952976", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5135709-4", "identifiedBy": [ { "type": "uri", @@ -63560,7 +60724,6 @@ "pid": "944953395", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5135745-8", "identifiedBy": [ { "type": "uri", @@ -63576,7 +60739,6 @@ "pid": "944963749", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5136698-8", "identifiedBy": [ { "type": "uri", @@ -63608,7 +60770,6 @@ "pid": "944971318", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5137431-6", "identifiedBy": [ { "type": "uri", @@ -63631,7 +60792,6 @@ "pid": "944978177", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5138100-X", "identifiedBy": [ { "type": "uri", @@ -63657,7 +60817,6 @@ "pid": "945028067", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2148867-8", "identifiedBy": [ { "type": "uri", @@ -63686,7 +60845,6 @@ "pid": "94504206X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5140558-1", "identifiedBy": [ { "type": "uri", @@ -63703,7 +60861,6 @@ "pid": "945045972", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5140923-9", "identifiedBy": [ { "type": "uri", @@ -63728,7 +60885,6 @@ "pid": "945048653", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5141172-6", "identifiedBy": [ { "type": "uri", @@ -63751,7 +60907,6 @@ "pid": "945073232", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5143540-8", "identifiedBy": [ { "type": "uri", @@ -63768,7 +60923,6 @@ "pid": "945074212", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5143635-8", "identifiedBy": [ { "type": "uri", @@ -63791,7 +60945,6 @@ "pid": "945079893", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5144189-5", "identifiedBy": [ { "type": "uri", @@ -63808,7 +60961,6 @@ "pid": "945102313", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5146410-X", "identifiedBy": [ { "type": "uri", @@ -63825,7 +60977,6 @@ "pid": "945104138", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5146592-9", "identifiedBy": [ { "type": "uri", @@ -63842,7 +60993,6 @@ "pid": "945107129", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5146891-8", "identifiedBy": [ { "type": "uri", @@ -63870,7 +61020,6 @@ "pid": "94510877X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5147056-1", "identifiedBy": [ { "type": "uri", @@ -63886,7 +61035,6 @@ "pid": "945118805", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5148059-1", "identifiedBy": [ { "type": "uri", @@ -63911,7 +61059,6 @@ "pid": "945462891", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2150083-6", "identifiedBy": [ { "type": "uri", @@ -63939,7 +61086,6 @@ "pid": "945492308", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5149734-7", "identifiedBy": [ { "type": "uri", @@ -63971,7 +61117,6 @@ "pid": "945504853", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2150184-1", "identifiedBy": [ { "type": "uri", @@ -63994,7 +61139,6 @@ "pid": "945555059", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5151056-X", "identifiedBy": [ { "type": "uri", @@ -64019,7 +61163,6 @@ "pid": "945628889", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5151715-2", "identifiedBy": [ { "type": "uri", @@ -64044,7 +61187,6 @@ "pid": "945633696", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5152169-6", "identifiedBy": [ { "type": "uri", @@ -64067,7 +61209,6 @@ "pid": "945708300", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5152870-8", "identifiedBy": [ { "type": "uri", @@ -64083,7 +61224,6 @@ "pid": "945710097", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5153047-8", "identifiedBy": [ { "type": "uri", @@ -64110,7 +61250,6 @@ "pid": "945763395", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5154603-6", "identifiedBy": [ { "type": "uri", @@ -64133,7 +61272,6 @@ "pid": "945817428", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5155622-4", "identifiedBy": [ { "type": "uri", @@ -64149,7 +61287,6 @@ "pid": "945951590", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1232700-1", "identifiedBy": [ { "type": "uri", @@ -64166,7 +61303,6 @@ "pid": "946180822", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2152159-1", "identifiedBy": [ { "type": "uri", @@ -64188,7 +61324,6 @@ "pid": "946246734", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5159519-9", "identifiedBy": [ { "type": "uri", @@ -64205,7 +61340,6 @@ "pid": "946481911", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5161842-4", "identifiedBy": [ { "type": "uri", @@ -64230,7 +61364,6 @@ "pid": "946487537", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2153139-0", "identifiedBy": [ { "type": "uri", @@ -64247,7 +61380,6 @@ "pid": "946515468", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2153260-6", "identifiedBy": [ { "type": "uri", @@ -64270,7 +61402,6 @@ "pid": "946592039", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1233422-4", "identifiedBy": [ { "type": "uri", @@ -64293,7 +61424,6 @@ "pid": "946595259", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1600884-4", "identifiedBy": [ { "type": "uri", @@ -64320,7 +61450,6 @@ "pid": "946597189", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1700884-0", "identifiedBy": [ { "type": "uri", @@ -64336,7 +61465,6 @@ "pid": "946686203", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5162807-7", "identifiedBy": [ { "type": "uri", @@ -64353,7 +61481,6 @@ "pid": "946688397", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5163025-4", "identifiedBy": [ { "type": "uri", @@ -64370,7 +61497,6 @@ "pid": "946691215", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5163304-8", "identifiedBy": [ { "type": "uri", @@ -64397,7 +61523,6 @@ "pid": "94673271X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2153851-7", "identifiedBy": [ { "type": "uri", @@ -64420,7 +61545,6 @@ "pid": "946741077", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5164017-X", "identifiedBy": [ { "type": "uri", @@ -64447,7 +61571,6 @@ "pid": "94687400X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5164689-4", "identifiedBy": [ { "type": "uri", @@ -64466,7 +61589,6 @@ "pid": "946875715", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5164859-3", "identifiedBy": [ { "type": "uri", @@ -64483,7 +61605,6 @@ "pid": "946923477", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5165694-2", "identifiedBy": [ { "type": "uri", @@ -64509,7 +61630,6 @@ "pid": "947105735", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5166469-0", "identifiedBy": [ { "type": "uri", @@ -64529,7 +61649,6 @@ "pid": "947202900", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2155212-5", "identifiedBy": [ { "type": "uri", @@ -64562,7 +61681,6 @@ "pid": "947434348", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5169350-1", "identifiedBy": [ { "type": "uri", @@ -64594,7 +61712,6 @@ "pid": "947711708", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2156552-1", "identifiedBy": [ { "type": "uri", @@ -64611,7 +61728,6 @@ "pid": "94772530X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5172059-0", "identifiedBy": [ { "type": "uri", @@ -64636,7 +61752,6 @@ "pid": "947731687", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5172657-9", "identifiedBy": [ { "type": "uri", @@ -64661,7 +61776,6 @@ "pid": "947742956", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5173669-X", "identifiedBy": [ { "type": "uri", @@ -64677,7 +61791,6 @@ "pid": "947854517", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5174826-5", "identifiedBy": [ { "type": "uri", @@ -64702,7 +61815,6 @@ "pid": "947854789", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5174851-4", "identifiedBy": [ { "type": "uri", @@ -64725,7 +61837,6 @@ "pid": "947862765", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5175596-8", "identifiedBy": [ { "type": "uri", @@ -64748,7 +61859,6 @@ "pid": "948041838", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2157474-1", "identifiedBy": [ { "type": "uri", @@ -64791,7 +61901,6 @@ "pid": "94813142X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5176991-8", "identifiedBy": [ { "type": "uri", @@ -64808,7 +61917,6 @@ "pid": "94813514X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5177346-6", "identifiedBy": [ { "type": "uri", @@ -64830,7 +61938,6 @@ "pid": "948139579", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5177770-8", "identifiedBy": [ { "type": "uri", @@ -64853,7 +61960,6 @@ "pid": "94814906X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2157694-4", "identifiedBy": [ { "type": "uri", @@ -64882,7 +61988,6 @@ "pid": "948166894", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5178327-7", "identifiedBy": [ { "type": "uri", @@ -64910,7 +62015,6 @@ "pid": "948240598", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5178731-3", "identifiedBy": [ { "type": "uri", @@ -64927,7 +62031,6 @@ "pid": "948258594", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5179072-5", "identifiedBy": [ { "type": "uri", @@ -64950,7 +62053,6 @@ "pid": "948301236", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1234795-4", "identifiedBy": [ { "type": "uri", @@ -64972,7 +62074,6 @@ "pid": "948314931", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5180218-1", "identifiedBy": [ { "type": "uri", @@ -64996,7 +62097,6 @@ "pid": "948712244", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5181854-1", "identifiedBy": [ { "type": "uri", @@ -65019,7 +62119,6 @@ "pid": "948719370", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5182553-3", "identifiedBy": [ { "type": "uri", @@ -65036,7 +62135,6 @@ "pid": "94872367X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5182975-7", "identifiedBy": [ { "type": "uri", @@ -65075,7 +62173,6 @@ "pid": "948936266", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2159902-6", "identifiedBy": [ { "type": "uri", @@ -65092,7 +62189,6 @@ "pid": "94909613X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5184565-9", "identifiedBy": [ { "type": "uri", @@ -65115,7 +62211,6 @@ "pid": "949101338", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5185055-2", "identifiedBy": [ { "type": "uri", @@ -65151,7 +62246,6 @@ "pid": "949309214", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1601432-7", "identifiedBy": [ { "type": "uri", @@ -65175,7 +62269,6 @@ "pid": "949313874", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5186888-X", "identifiedBy": [ { "type": "uri", @@ -65197,7 +62290,6 @@ "pid": "94933443X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5187089-7", "identifiedBy": [ { "type": "uri", @@ -65223,7 +62315,6 @@ "pid": "949395161", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5188802-6", "identifiedBy": [ { "type": "uri", @@ -65240,7 +62331,6 @@ "pid": "949401560", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2161203-1", "identifiedBy": [ { "type": "uri", @@ -65266,7 +62356,6 @@ "pid": "949474851", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5189684-9", "identifiedBy": [ { "type": "uri", @@ -65289,7 +62378,6 @@ "pid": "949482110", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5190366-0", "identifiedBy": [ { "type": "uri", @@ -65319,7 +62407,6 @@ "pid": "949486779", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5190813-X", "identifiedBy": [ { "type": "uri", @@ -65336,7 +62423,6 @@ "pid": "949496103", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2161403-9", "identifiedBy": [ { "type": "uri", @@ -65365,7 +62451,6 @@ "pid": "949525197", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5191642-3", "identifiedBy": [ { "type": "uri", @@ -65388,7 +62473,6 @@ "pid": "949560820", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2161602-4", "identifiedBy": [ { "type": "uri", @@ -65405,7 +62489,6 @@ "pid": "949650978", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2161864-1", "identifiedBy": [ { "type": "uri", @@ -65428,7 +62511,6 @@ "pid": "949739960", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5191990-4", "identifiedBy": [ { "type": "uri", @@ -65445,7 +62527,6 @@ "pid": "949826758", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5194271-9", "identifiedBy": [ { "type": "uri", @@ -65461,7 +62542,6 @@ "pid": "949828246", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5194416-9", "identifiedBy": [ { "type": "uri", @@ -65478,7 +62558,6 @@ "pid": "949857378", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5195079-0", "identifiedBy": [ { "type": "uri", @@ -65502,7 +62581,6 @@ "pid": "950041297", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1236182-3", "identifiedBy": [ { "type": "uri", @@ -65519,7 +62597,6 @@ "pid": "950042544", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1601589-7", "identifiedBy": [ { "type": "uri", @@ -65535,7 +62612,6 @@ "pid": "950148148", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5196830-7", "identifiedBy": [ { "type": "uri", @@ -65561,7 +62637,6 @@ "pid": "950207535", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5197634-1", "identifiedBy": [ { "type": "uri", @@ -65583,7 +62658,6 @@ "pid": "950239623", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2163296-0", "identifiedBy": [ { "type": "uri", @@ -65611,7 +62685,6 @@ "pid": "950309788", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2163480-4", "identifiedBy": [ { "type": "uri", @@ -65640,7 +62713,6 @@ "pid": "950323578", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2163518-3", "identifiedBy": [ { "type": "uri", @@ -65660,7 +62732,6 @@ "pid": "950389668", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5199248-6", "identifiedBy": [ { "type": "uri", @@ -65703,7 +62774,6 @@ "pid": "950389781", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5199258-9", "identifiedBy": [ { "type": "uri", @@ -65725,7 +62795,6 @@ "pid": "950614076", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2164206-0", "identifiedBy": [ { "type": "uri", @@ -65742,7 +62811,6 @@ "pid": "950710776", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5200666-9", "identifiedBy": [ { "type": "uri", @@ -65765,7 +62833,6 @@ "pid": "950729205", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5202312-6", "identifiedBy": [ { "type": "uri", @@ -65787,7 +62854,6 @@ "pid": "950740136", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5202800-8", "identifiedBy": [ { "type": "uri", @@ -65821,7 +62887,6 @@ "pid": "950740381", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5202822-7", "identifiedBy": [ { "type": "uri", @@ -65838,7 +62903,6 @@ "pid": "950797855", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5204088-4", "identifiedBy": [ { "type": "uri", @@ -65863,7 +62927,6 @@ "pid": "95080617X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5204889-5", "identifiedBy": [ { "type": "uri", @@ -65888,7 +62951,6 @@ "pid": "950819603", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5205306-4", "identifiedBy": [ { "type": "uri", @@ -65904,7 +62966,6 @@ "pid": "950857696", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5205869-4", "identifiedBy": [ { "type": "uri", @@ -65927,7 +62988,6 @@ "pid": "951162322", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1237621-8", "identifiedBy": [ { "type": "uri", @@ -65949,7 +63009,6 @@ "pid": "951185314", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5212247-5", "identifiedBy": [ { "type": "uri", @@ -65971,7 +63030,6 @@ "pid": "951226029", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5216099-3", "identifiedBy": [ { "type": "uri", @@ -65994,7 +63052,6 @@ "pid": "951229982", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5216479-2", "identifiedBy": [ { "type": "uri", @@ -66017,7 +63074,6 @@ "pid": "95123272X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5216738-0", "identifiedBy": [ { "type": "uri", @@ -66034,7 +63090,6 @@ "pid": "95125023X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5218443-2", "identifiedBy": [ { "type": "uri", @@ -66059,7 +63114,6 @@ "pid": "951301330", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5223423-X", "identifiedBy": [ { "type": "uri", @@ -66075,7 +63129,6 @@ "pid": "951303139", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5223603-1", "identifiedBy": [ { "type": "uri", @@ -66091,7 +63144,6 @@ "pid": "951745956", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5225789-7", "identifiedBy": [ { "type": "uri", @@ -66107,7 +63159,6 @@ "pid": "951762990", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5227391-X", "identifiedBy": [ { "type": "uri", @@ -66129,7 +63180,6 @@ "pid": "951789252", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5229788-3", "identifiedBy": [ { "type": "uri", @@ -66154,7 +63204,6 @@ "pid": "951803328", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5231116-8", "identifiedBy": [ { "type": "uri", @@ -66177,7 +63226,6 @@ "pid": "951803921", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5231175-2", "identifiedBy": [ { "type": "uri", @@ -66194,7 +63242,6 @@ "pid": "951806084", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5231390-6", "identifiedBy": [ { "type": "uri", @@ -66225,7 +63272,6 @@ "pid": "951828673", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5233601-3", "identifiedBy": [ { "type": "uri", @@ -66247,7 +63293,6 @@ "pid": "951838482", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5234543-9", "identifiedBy": [ { "type": "uri", @@ -66270,7 +63315,6 @@ "pid": "951842676", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5234954-8", "identifiedBy": [ { "type": "uri", @@ -66286,7 +63330,6 @@ "pid": "951852043", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5235868-9", "identifiedBy": [ { "type": "uri", @@ -66308,7 +63351,6 @@ "pid": "951854194", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5236074-X", "identifiedBy": [ { "type": "uri", @@ -66335,7 +63377,6 @@ "pid": "951894048", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5239594-7", "identifiedBy": [ { "type": "uri", @@ -66360,7 +63401,6 @@ "pid": "951894692", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5239657-5", "identifiedBy": [ { "type": "uri", @@ -66377,7 +63417,6 @@ "pid": "951913441", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5241403-6", "identifiedBy": [ { "type": "uri", @@ -66393,7 +63432,6 @@ "pid": "951920553", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5242071-1", "identifiedBy": [ { "type": "uri", @@ -66410,7 +63448,6 @@ "pid": "951921258", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5242138-7", "identifiedBy": [ { "type": "uri", @@ -66435,7 +63472,6 @@ "pid": "951945491", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5244437-5", "identifiedBy": [ { "type": "uri", @@ -66468,7 +63504,6 @@ "pid": "951947915", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5244664-5", "identifiedBy": [ { "type": "uri", @@ -66490,7 +63525,6 @@ "pid": "952056763", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2166850-4", "identifiedBy": [ { "type": "uri", @@ -66515,7 +63549,6 @@ "pid": "952070308", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5246577-9", "identifiedBy": [ { "type": "uri", @@ -66545,7 +63578,6 @@ "pid": "952091542", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5246729-6", "identifiedBy": [ { "type": "uri", @@ -66571,7 +63603,6 @@ "pid": "952101173", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5247659-5", "identifiedBy": [ { "type": "uri", @@ -66596,7 +63627,6 @@ "pid": "952199718", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2167217-9", "identifiedBy": [ { "type": "uri", @@ -66631,7 +63661,6 @@ "pid": "952207990", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5249528-0", "identifiedBy": [ { "type": "uri", @@ -66648,7 +63677,6 @@ "pid": "952241684", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5250785-3", "identifiedBy": [ { "type": "uri", @@ -66671,7 +63699,6 @@ "pid": "952265168", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5251181-9", "identifiedBy": [ { "type": "uri", @@ -66694,7 +63721,6 @@ "pid": "952327511", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5251856-5", "identifiedBy": [ { "type": "uri", @@ -66721,7 +63747,6 @@ "pid": "95232752X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5251857-7", "identifiedBy": [ { "type": "uri", @@ -66746,7 +63771,6 @@ "pid": "952354527", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5252576-4", "identifiedBy": [ { "type": "uri", @@ -66763,7 +63787,6 @@ "pid": "952354969", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5252618-5", "identifiedBy": [ { "type": "uri", @@ -66787,7 +63810,6 @@ "pid": "952358492", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5252952-6", "identifiedBy": [ { "type": "uri", @@ -66814,7 +63836,6 @@ "pid": "952379546", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5253289-6", "identifiedBy": [ { "type": "uri", @@ -66831,7 +63852,6 @@ "pid": "952419351", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5254323-7", "identifiedBy": [ { "type": "uri", @@ -66847,7 +63867,6 @@ "pid": "952481464", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5256766-7", "identifiedBy": [ { "type": "uri", @@ -66873,7 +63892,6 @@ "pid": "952489546", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5257535-4", "identifiedBy": [ { "type": "uri", @@ -66890,7 +63908,6 @@ "pid": "952503980", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5258889-0", "identifiedBy": [ { "type": "uri", @@ -66907,7 +63924,6 @@ "pid": "95250538X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5259026-4", "identifiedBy": [ { "type": "uri", @@ -66930,7 +63946,6 @@ "pid": "952510995", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5259554-7", "identifiedBy": [ { "type": "uri", @@ -66950,7 +63965,6 @@ "pid": "95251592X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5260009-9", "identifiedBy": [ { "type": "uri", @@ -66967,7 +63981,6 @@ "pid": "952534924", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5261821-3", "identifiedBy": [ { "type": "uri", @@ -66992,7 +64005,6 @@ "pid": "952540428", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5262338-5", "identifiedBy": [ { "type": "uri", @@ -67014,7 +64026,6 @@ "pid": "952541084", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5262401-8", "identifiedBy": [ { "type": "uri", @@ -67037,7 +64048,6 @@ "pid": "952542811", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5262560-6", "identifiedBy": [ { "type": "uri", @@ -67062,7 +64072,6 @@ "pid": "952543141", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5262591-6", "identifiedBy": [ { "type": "uri", @@ -67079,7 +64088,6 @@ "pid": "952571315", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5263174-6", "identifiedBy": [ { "type": "uri", @@ -67104,7 +64112,6 @@ "pid": "952607549", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5264176-4", "identifiedBy": [ { "type": "uri", @@ -67129,7 +64136,6 @@ "pid": "952616270", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5265042-X", "identifiedBy": [ { "type": "uri", @@ -67154,7 +64160,6 @@ "pid": "952753294", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5265271-3", "identifiedBy": [ { "type": "uri", @@ -67174,7 +64179,6 @@ "pid": "952753537", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5265294-4", "identifiedBy": [ { "type": "uri", @@ -67201,7 +64205,6 @@ "pid": "952754606", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5265393-6", "identifiedBy": [ { "type": "uri", @@ -67224,7 +64227,6 @@ "pid": "952918838", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5265996-3", "identifiedBy": [ { "type": "uri", @@ -67247,7 +64249,6 @@ "pid": "952923793", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5266470-3", "identifiedBy": [ { "type": "uri", @@ -67267,7 +64268,6 @@ "pid": "953095746", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5268204-3", "identifiedBy": [ { "type": "uri", @@ -67284,7 +64284,6 @@ "pid": "95311886X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/4492025-8", "identifiedBy": [ { "type": "uri", @@ -67314,7 +64313,6 @@ "pid": "95315971X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5268871-9", "identifiedBy": [ { "type": "uri", @@ -67331,7 +64329,6 @@ "pid": "953324559", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1238716-2", "identifiedBy": [ { "type": "uri", @@ -67363,7 +64360,6 @@ "pid": "953324974", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1402505-X", "identifiedBy": [ { "type": "uri", @@ -67380,7 +64376,6 @@ "pid": "953476359", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5271305-2", "identifiedBy": [ { "type": "uri", @@ -67418,7 +64413,6 @@ "pid": "953477061", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5271371-4", "identifiedBy": [ { "type": "uri", @@ -67456,7 +64450,6 @@ "pid": "953483401", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5271962-5", "identifiedBy": [ { "type": "uri", @@ -67473,7 +64466,6 @@ "pid": "953537013", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5272709-9", "identifiedBy": [ { "type": "uri", @@ -67500,7 +64492,6 @@ "pid": "95360795X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5273344-0", "identifiedBy": [ { "type": "uri", @@ -67517,7 +64508,6 @@ "pid": "953608573", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5273406-7", "identifiedBy": [ { "type": "uri", @@ -67540,7 +64530,6 @@ "pid": "95364474X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5276879-X", "identifiedBy": [ { "type": "uri", @@ -67563,7 +64552,6 @@ "pid": "953644820", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5276887-9", "identifiedBy": [ { "type": "uri", @@ -67579,7 +64567,6 @@ "pid": "953669033", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5279242-0", "identifiedBy": [ { "type": "uri", @@ -67603,7 +64590,6 @@ "pid": "953777839", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5279858-6", "identifiedBy": [ { "type": "uri", @@ -67629,7 +64615,6 @@ "pid": "953979687", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5280916-X", "identifiedBy": [ { "type": "uri", @@ -67646,7 +64631,6 @@ "pid": "953980545", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5280998-5", "identifiedBy": [ { "type": "uri", @@ -67671,7 +64655,6 @@ "pid": "954069773", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2171463-0", "identifiedBy": [ { "type": "uri", @@ -67690,7 +64673,6 @@ "pid": "954132491", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5284476-6", "identifiedBy": [ { "type": "uri", @@ -67706,7 +64688,6 @@ "pid": "954184165", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1238042-8", "identifiedBy": [ { "type": "uri", @@ -67730,7 +64711,6 @@ "pid": "954255011", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2171972-X", "identifiedBy": [ { "type": "uri", @@ -67756,7 +64736,6 @@ "pid": "954328426", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2172197-X", "identifiedBy": [ { "type": "uri", @@ -67778,7 +64757,6 @@ "pid": "954330803", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5286274-4", "identifiedBy": [ { "type": "uri", @@ -67794,7 +64772,6 @@ "pid": "954352610", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5286693-2", "identifiedBy": [ { "type": "uri", @@ -67819,7 +64796,6 @@ "pid": "954405250", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5287976-8", "identifiedBy": [ { "type": "uri", @@ -67843,7 +64819,6 @@ "pid": "954405986", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5288049-7", "identifiedBy": [ { "type": "uri", @@ -67867,7 +64842,6 @@ "pid": "954495098", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5289544-0", "identifiedBy": [ { "type": "uri", @@ -67894,7 +64868,6 @@ "pid": "954534530", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5290198-1", "identifiedBy": [ { "type": "uri", @@ -67922,7 +64895,6 @@ "pid": "954535286", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5290267-5", "identifiedBy": [ { "type": "uri", @@ -67945,7 +64917,6 @@ "pid": "95454157X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5290835-5", "identifiedBy": [ { "type": "uri", @@ -67968,7 +64939,6 @@ "pid": "954552873", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5291905-5", "identifiedBy": [ { "type": "uri", @@ -67984,7 +64954,6 @@ "pid": "954559592", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5292555-9", "identifiedBy": [ { "type": "uri", @@ -68007,7 +64976,6 @@ "pid": "954569601", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5293545-0", "identifiedBy": [ { "type": "uri", @@ -68023,7 +64991,6 @@ "pid": "954571398", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5293720-3", "identifiedBy": [ { "type": "uri", @@ -68040,7 +65007,6 @@ "pid": "954574354", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5294001-9", "identifiedBy": [ { "type": "uri", @@ -68056,7 +65022,6 @@ "pid": "954587693", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5295271-X", "identifiedBy": [ { "type": "uri", @@ -68080,7 +65045,6 @@ "pid": "954589262", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5295421-3", "identifiedBy": [ { "type": "uri", @@ -68103,7 +65067,6 @@ "pid": "954590848", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5295565-5", "identifiedBy": [ { "type": "uri", @@ -68130,7 +65093,6 @@ "pid": "954619595", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5296447-4", "identifiedBy": [ { "type": "uri", @@ -68154,7 +65116,6 @@ "pid": "954621131", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5296598-3", "identifiedBy": [ { "type": "uri", @@ -68171,7 +65132,6 @@ "pid": "954862805", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5297510-1", "identifiedBy": [ { "type": "uri", @@ -68194,7 +65154,6 @@ "pid": "954863127", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5297542-3", "identifiedBy": [ { "type": "uri", @@ -68216,7 +65175,6 @@ "pid": "954876539", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2173378-8", "identifiedBy": [ { "type": "uri", @@ -68233,7 +65191,6 @@ "pid": "954882571", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2173391-0", "identifiedBy": [ { "type": "uri", @@ -68255,7 +65212,6 @@ "pid": "95500778X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2173747-2", "identifiedBy": [ { "type": "uri", @@ -68272,7 +65228,6 @@ "pid": "955030080", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/3027010-8", "identifiedBy": [ { "type": "uri", @@ -68289,7 +65244,6 @@ "pid": "955046475", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/3029301-7", "identifiedBy": [ { "type": "uri", @@ -68306,7 +65260,6 @@ "pid": "955064813", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/3031735-6", "identifiedBy": [ { "type": "uri", @@ -68323,7 +65276,6 @@ "pid": "955092523", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/3035272-1", "identifiedBy": [ { "type": "uri", @@ -68346,7 +65298,6 @@ "pid": "95511182X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/3037663-4", "identifiedBy": [ { "type": "uri", @@ -68381,7 +65332,6 @@ "pid": "95511201X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/3037687-7", "identifiedBy": [ { "type": "uri", @@ -68404,7 +65354,6 @@ "pid": "955116635", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/3038222-1", "identifiedBy": [ { "type": "uri", @@ -68421,7 +65370,6 @@ "pid": "955119413", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5298436-9", "identifiedBy": [ { "type": "uri", @@ -68446,7 +65394,6 @@ "pid": "955121647", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5298662-7", "identifiedBy": [ { "type": "uri", @@ -68463,7 +65410,6 @@ "pid": "955190908", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/3039299-8", "identifiedBy": [ { "type": "uri", @@ -68490,7 +65436,6 @@ "pid": "955382378", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5302736-X", "identifiedBy": [ { "type": "uri", @@ -68520,7 +65465,6 @@ "pid": "955401976", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5304597-X", "identifiedBy": [ { "type": "uri", @@ -68539,7 +65483,6 @@ "pid": "955431425", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5306471-9", "identifiedBy": [ { "type": "uri", @@ -68565,7 +65508,6 @@ "pid": "955432774", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5306609-1", "identifiedBy": [ { "type": "uri", @@ -68594,7 +65536,6 @@ "pid": "955611423", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5309493-1", "identifiedBy": [ { "type": "uri", @@ -68617,7 +65558,6 @@ "pid": "955736374", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/3040044-2", "identifiedBy": [ { "type": "uri", @@ -68641,7 +65581,6 @@ "pid": "955740223", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5310488-2", "identifiedBy": [ { "type": "uri", @@ -68664,7 +65603,6 @@ "pid": "955746256", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5311071-7", "identifiedBy": [ { "type": "uri", @@ -68680,7 +65618,6 @@ "pid": "955966566", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2175772-0", "identifiedBy": [ { "type": "uri", @@ -68703,7 +65640,6 @@ "pid": "956291279", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2176771-3", "identifiedBy": [ { "type": "uri", @@ -68726,7 +65662,6 @@ "pid": "956483542", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1240434-2", "identifiedBy": [ { "type": "uri", @@ -68760,7 +65695,6 @@ "pid": "956528775", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5314705-4", "identifiedBy": [ { "type": "uri", @@ -68777,7 +65711,6 @@ "pid": "956529445", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5314770-4", "identifiedBy": [ { "type": "uri", @@ -68802,7 +65735,6 @@ "pid": "956539564", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5315764-3", "identifiedBy": [ { "type": "uri", @@ -68824,7 +65756,6 @@ "pid": "956546927", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5316500-7", "identifiedBy": [ { "type": "uri", @@ -68841,7 +65772,6 @@ "pid": "956548660", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5316676-0", "identifiedBy": [ { "type": "uri", @@ -68858,7 +65788,6 @@ "pid": "956555225", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5317337-5", "identifiedBy": [ { "type": "uri", @@ -68885,7 +65814,6 @@ "pid": "956579760", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5317586-4", "identifiedBy": [ { "type": "uri", @@ -68901,7 +65829,6 @@ "pid": "956627536", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2177680-5", "identifiedBy": [ { "type": "uri", @@ -68926,7 +65853,6 @@ "pid": "956749232", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5318634-5", "identifiedBy": [ { "type": "uri", @@ -68960,7 +65886,6 @@ "pid": "95679615X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5320605-8", "identifiedBy": [ { "type": "uri", @@ -68977,7 +65902,6 @@ "pid": "956827195", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1602387-0", "identifiedBy": [ { "type": "uri", @@ -69000,7 +65924,6 @@ "pid": "956831044", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5321386-5", "identifiedBy": [ { "type": "uri", @@ -69032,7 +65955,6 @@ "pid": "956917054", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5324690-1", "identifiedBy": [ { "type": "uri", @@ -69055,7 +65977,6 @@ "pid": "956976999", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5326222-0", "identifiedBy": [ { "type": "uri", @@ -69072,7 +65993,6 @@ "pid": "956990223", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5327437-4", "identifiedBy": [ { "type": "uri", @@ -69095,7 +66015,6 @@ "pid": "956994679", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5327839-2", "identifiedBy": [ { "type": "uri", @@ -69112,7 +66031,6 @@ "pid": "957023235", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5330561-9", "identifiedBy": [ { "type": "uri", @@ -69137,7 +66055,6 @@ "pid": "957059590", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1240043-9", "identifiedBy": [ { "type": "uri", @@ -69160,7 +66077,6 @@ "pid": "957060149", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1240915-7", "identifiedBy": [ { "type": "uri", @@ -69188,7 +66104,6 @@ "pid": "957075405", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5332088-8", "identifiedBy": [ { "type": "uri", @@ -69215,7 +66130,6 @@ "pid": "957106408", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5332309-9", "identifiedBy": [ { "type": "uri", @@ -69238,7 +66152,6 @@ "pid": "957164599", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5333199-0", "identifiedBy": [ { "type": "uri", @@ -69267,7 +66180,6 @@ "pid": "957177879", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5334479-0", "identifiedBy": [ { "type": "uri", @@ -69294,7 +66206,6 @@ "pid": "95717926X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5334610-5", "identifiedBy": [ { "type": "uri", @@ -69311,7 +66222,6 @@ "pid": "957186185", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5335244-0", "identifiedBy": [ { "type": "uri", @@ -69334,7 +66244,6 @@ "pid": "957223242", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1240334-9", "identifiedBy": [ { "type": "uri", @@ -69354,7 +66263,6 @@ "pid": "957263511", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/3041900-1", "identifiedBy": [ { "type": "uri", @@ -69371,7 +66279,6 @@ "pid": "957268688", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5335890-9", "identifiedBy": [ { "type": "uri", @@ -69396,7 +66303,6 @@ "pid": "957348924", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1702995-8", "identifiedBy": [ { "type": "uri", @@ -69424,7 +66330,6 @@ "pid": "957354096", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5336653-0", "identifiedBy": [ { "type": "uri", @@ -69441,7 +66346,6 @@ "pid": "957365993", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5337811-8", "identifiedBy": [ { "type": "uri", @@ -69466,7 +66370,6 @@ "pid": "957382332", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2179155-7", "identifiedBy": [ { "type": "uri", @@ -69489,7 +66392,6 @@ "pid": "957433158", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5337966-4", "identifiedBy": [ { "type": "uri", @@ -69512,7 +66414,6 @@ "pid": "95746214X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5338341-2", "identifiedBy": [ { "type": "uri", @@ -69538,7 +66439,6 @@ "pid": "957467303", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5338838-0", "identifiedBy": [ { "type": "uri", @@ -69555,7 +66455,6 @@ "pid": "957488548", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5340894-9", "identifiedBy": [ { "type": "uri", @@ -69572,7 +66471,6 @@ "pid": "957490186", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5341052-X", "identifiedBy": [ { "type": "uri", @@ -69594,7 +66492,6 @@ "pid": "957496729", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5341692-2", "identifiedBy": [ { "type": "uri", @@ -69617,7 +66514,6 @@ "pid": "957503083", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5342328-8", "identifiedBy": [ { "type": "uri", @@ -69634,7 +66530,6 @@ "pid": "957506880", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5342708-7", "identifiedBy": [ { "type": "uri", @@ -69659,7 +66554,6 @@ "pid": "957853408", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/3042508-6", "identifiedBy": [ { "type": "uri", @@ -69684,7 +66578,6 @@ "pid": "957923031", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1240114-6", "identifiedBy": [ { "type": "uri", @@ -69707,7 +66600,6 @@ "pid": "95792755X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5344577-6", "identifiedBy": [ { "type": "uri", @@ -69724,7 +66616,6 @@ "pid": "957929331", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5344751-7", "identifiedBy": [ { "type": "uri", @@ -69741,7 +66632,6 @@ "pid": "957935625", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5345357-8", "identifiedBy": [ { "type": "uri", @@ -69770,7 +66660,6 @@ "pid": "957935900", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5345383-9", "identifiedBy": [ { "type": "uri", @@ -69793,7 +66682,6 @@ "pid": "95794988X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5346758-9", "identifiedBy": [ { "type": "uri", @@ -69816,7 +66704,6 @@ "pid": "957954522", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5347220-2", "identifiedBy": [ { "type": "uri", @@ -69841,7 +66728,6 @@ "pid": "95795624X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5347390-5", "identifiedBy": [ { "type": "uri", @@ -69864,7 +66750,6 @@ "pid": "957957114", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5347477-6", "identifiedBy": [ { "type": "uri", @@ -69887,7 +66772,6 @@ "pid": "957962703", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5348037-5", "identifiedBy": [ { "type": "uri", @@ -69903,7 +66787,6 @@ "pid": "957973497", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5349117-8", "identifiedBy": [ { "type": "uri", @@ -69920,7 +66803,6 @@ "pid": "95797728X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5349496-9", "identifiedBy": [ { "type": "uri", @@ -69949,7 +66831,6 @@ "pid": "958006873", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2180573-8", "identifiedBy": [ { "type": "uri", @@ -69966,7 +66847,6 @@ "pid": "958094160", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5351954-1", "identifiedBy": [ { "type": "uri", @@ -69984,7 +66864,6 @@ "pid": "958490139", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/2182000-4", "identifiedBy": [ { "type": "uri", @@ -70001,7 +66880,6 @@ "pid": "95858012X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10000050-2", "identifiedBy": [ { "type": "uri", @@ -70026,7 +66904,6 @@ "pid": "958686424", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2182538-5", "identifiedBy": [ { "type": "uri", @@ -70049,7 +66926,6 @@ "pid": "958779147", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10002272-8", "identifiedBy": [ { "type": "uri", @@ -70072,7 +66948,6 @@ "pid": "958942900", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/3042873-7", "identifiedBy": [ { "type": "uri", @@ -70099,7 +66974,6 @@ "pid": "958945861", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/3043183-9", "identifiedBy": [ { "type": "uri", @@ -70122,7 +66996,6 @@ "pid": "959006028", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2183529-9", "identifiedBy": [ { "type": "uri", @@ -70177,7 +67050,6 @@ "pid": "959176918", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2184021-0", "identifiedBy": [ { "type": "uri", @@ -70202,7 +67074,6 @@ "pid": "959194975", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10003852-9", "identifiedBy": [ { "type": "uri", @@ -70233,7 +67104,6 @@ "pid": "959280944", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10004718-X", "identifiedBy": [ { "type": "uri", @@ -70263,7 +67133,6 @@ "pid": "959307338", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10004207-7", "identifiedBy": [ { "type": "uri", @@ -70285,7 +67154,6 @@ "pid": "95933727X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10004564-9", "identifiedBy": [ { "type": "uri", @@ -70324,7 +67192,6 @@ "pid": "959433953", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10005076-1", "identifiedBy": [ { "type": "uri", @@ -70341,7 +67208,6 @@ "pid": "959524215", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10006445-0", "identifiedBy": [ { "type": "uri", @@ -70357,7 +67223,6 @@ "pid": "959547916", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10006715-3", "identifiedBy": [ { "type": "uri", @@ -70383,7 +67248,6 @@ "pid": "959585605", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10007235-5", "identifiedBy": [ { "type": "uri", @@ -70406,7 +67270,6 @@ "pid": "959713697", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10007827-8", "identifiedBy": [ { "type": "uri", @@ -70422,7 +67285,6 @@ "pid": "959734708", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10008370-5", "identifiedBy": [ { "type": "uri", @@ -70439,7 +67301,6 @@ "pid": "959910808", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10009733-9", "identifiedBy": [ { "type": "uri", @@ -70456,7 +67317,6 @@ "pid": "960094873", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10010715-1", "identifiedBy": [ { "type": "uri", @@ -70482,7 +67342,6 @@ "pid": "960193812", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/3046562-X", "identifiedBy": [ { "type": "uri", @@ -70505,7 +67364,6 @@ "pid": "960331077", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5500582-2", "identifiedBy": [ { "type": "uri", @@ -70522,7 +67380,6 @@ "pid": "960331166", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5500591-3", "identifiedBy": [ { "type": "uri", @@ -70539,7 +67396,6 @@ "pid": "960373527", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10013218-2", "identifiedBy": [ { "type": "uri", @@ -70562,7 +67418,6 @@ "pid": "960554440", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1242268-X", "identifiedBy": [ { "type": "uri", @@ -70589,7 +67444,6 @@ "pid": "96055646X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1242636-2", "identifiedBy": [ { "type": "uri", @@ -70618,7 +67472,6 @@ "pid": "96056814X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1703416-4", "identifiedBy": [ { "type": "uri", @@ -70656,7 +67509,6 @@ "pid": "960574298", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1800893-8", "identifiedBy": [ { "type": "uri", @@ -70673,7 +67525,6 @@ "pid": "960693785", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10014331-3", "identifiedBy": [ { "type": "uri", @@ -70696,7 +67547,6 @@ "pid": "960722157", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10015714-2", "identifiedBy": [ { "type": "uri", @@ -70719,7 +67569,6 @@ "pid": "960794093", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5503164-X", "identifiedBy": [ { "type": "uri", @@ -70744,7 +67593,6 @@ "pid": "960796878", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5503436-6", "identifiedBy": [ { "type": "uri", @@ -70761,7 +67609,6 @@ "pid": "960807128", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5504419-0", "identifiedBy": [ { "type": "uri", @@ -70778,7 +67625,6 @@ "pid": "960812989", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5504967-9", "identifiedBy": [ { "type": "uri", @@ -70803,7 +67649,6 @@ "pid": "960819177", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5505579-5", "identifiedBy": [ { "type": "uri", @@ -70821,7 +67666,6 @@ "pid": "960819541", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5505617-9", "identifiedBy": [ { "type": "uri", @@ -70844,7 +67688,6 @@ "pid": "960823271", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5505987-9", "identifiedBy": [ { "type": "uri", @@ -70861,7 +67704,6 @@ "pid": "960928995", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/3047504-1", "identifiedBy": [ { "type": "uri", @@ -70883,7 +67725,6 @@ "pid": "961071435", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5507545-9", "identifiedBy": [ { "type": "uri", @@ -70900,7 +67741,6 @@ "pid": "96107177X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5507579-4", "identifiedBy": [ { "type": "uri", @@ -70917,7 +67757,6 @@ "pid": "961077816", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5508188-5", "identifiedBy": [ { "type": "uri", @@ -70937,7 +67776,6 @@ "pid": "961083387", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5508769-3", "identifiedBy": [ { "type": "uri", @@ -70960,7 +67798,6 @@ "pid": "961086882", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5509092-8", "identifiedBy": [ { "type": "uri", @@ -70992,7 +67829,6 @@ "pid": "961106565", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5511131-2", "identifiedBy": [ { "type": "uri", @@ -71009,7 +67845,6 @@ "pid": "961106646", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5511139-7", "identifiedBy": [ { "type": "uri", @@ -71035,7 +67870,6 @@ "pid": "961106840", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5511159-2", "identifiedBy": [ { "type": "uri", @@ -71062,7 +67896,6 @@ "pid": "961293950", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5511755-7", "identifiedBy": [ { "type": "uri", @@ -71085,7 +67918,6 @@ "pid": "961300515", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5512358-2", "identifiedBy": [ { "type": "uri", @@ -71118,7 +67950,6 @@ "pid": "961328495", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5515026-3", "identifiedBy": [ { "type": "uri", @@ -71153,7 +67984,6 @@ "pid": "961329653", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5515142-5", "identifiedBy": [ { "type": "uri", @@ -71170,7 +68000,6 @@ "pid": "961333065", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5515474-8", "identifiedBy": [ { "type": "uri", @@ -71193,7 +68022,6 @@ "pid": "961337893", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5515942-4", "identifiedBy": [ { "type": "uri", @@ -71212,7 +68040,6 @@ "pid": "961342153", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10017516-8", "identifiedBy": [ { "type": "uri", @@ -71228,7 +68055,6 @@ "pid": "961397047", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1244781-X", "identifiedBy": [ { "type": "uri", @@ -71251,7 +68077,6 @@ "pid": "961400803", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10018102-8", "identifiedBy": [ { "type": "uri", @@ -71274,7 +68099,6 @@ "pid": "961589809", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10018660-9", "identifiedBy": [ { "type": "uri", @@ -71295,7 +68119,6 @@ "pid": "961631171", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/4637897-2", "identifiedBy": [ { "type": "uri", @@ -71334,7 +68157,6 @@ "pid": "961636270", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5517299-4", "identifiedBy": [ { "type": "uri", @@ -71357,7 +68179,6 @@ "pid": "961646969", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5518293-8", "identifiedBy": [ { "type": "uri", @@ -71373,7 +68194,6 @@ "pid": "961652276", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5518815-1", "identifiedBy": [ { "type": "uri", @@ -71390,7 +68210,6 @@ "pid": "961659645", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5519553-2", "identifiedBy": [ { "type": "uri", @@ -71407,7 +68226,6 @@ "pid": "961729155", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10022194-4", "identifiedBy": [ { "type": "uri", @@ -71423,7 +68241,6 @@ "pid": "961784334", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5520557-4", "identifiedBy": [ { "type": "uri", @@ -71440,7 +68257,6 @@ "pid": "961792426", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5521367-4", "identifiedBy": [ { "type": "uri", @@ -71457,7 +68273,6 @@ "pid": "961797568", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5521876-3", "identifiedBy": [ { "type": "uri", @@ -71479,7 +68294,6 @@ "pid": "961798025", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5521922-6", "identifiedBy": [ { "type": "uri", @@ -71496,7 +68310,6 @@ "pid": "962037141", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5523011-8", "identifiedBy": [ { "type": "uri", @@ -71513,7 +68326,6 @@ "pid": "962243477", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1245804-1", "identifiedBy": [ { "type": "uri", @@ -71530,7 +68342,6 @@ "pid": "962251968", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1704727-4", "identifiedBy": [ { "type": "uri", @@ -71578,7 +68389,6 @@ "pid": "96233359X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6025876-7", "identifiedBy": [ { "type": "uri", @@ -71594,7 +68404,6 @@ "pid": "962390097", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10026614-9", "identifiedBy": [ { "type": "uri", @@ -71625,7 +68434,6 @@ "pid": "962446440", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6008987-8", "identifiedBy": [ { "type": "uri", @@ -71648,7 +68456,6 @@ "pid": "962450170", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6009422-9", "identifiedBy": [ { "type": "uri", @@ -71673,7 +68480,6 @@ "pid": "962470929", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6011800-3", "identifiedBy": [ { "type": "uri", @@ -71696,7 +68502,6 @@ "pid": "96247357X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6012122-1", "identifiedBy": [ { "type": "uri", @@ -71721,7 +68526,6 @@ "pid": "962498726", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6015028-2", "identifiedBy": [ { "type": "uri", @@ -71748,7 +68552,6 @@ "pid": "962506168", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6015903-0", "identifiedBy": [ { "type": "uri", @@ -71771,7 +68574,6 @@ "pid": "96251716X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6017228-9", "identifiedBy": [ { "type": "uri", @@ -71796,7 +68598,6 @@ "pid": "96252736X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6018450-4", "identifiedBy": [ { "type": "uri", @@ -71813,7 +68614,6 @@ "pid": "962530328", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6018803-0", "identifiedBy": [ { "type": "uri", @@ -71837,7 +68637,6 @@ "pid": "962533300", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6019141-7", "identifiedBy": [ { "type": "uri", @@ -71854,7 +68653,6 @@ "pid": "962540196", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6019952-0", "identifiedBy": [ { "type": "uri", @@ -71879,7 +68677,6 @@ "pid": "962545295", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6020536-2", "identifiedBy": [ { "type": "uri", @@ -71902,7 +68699,6 @@ "pid": "962552380", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6021330-9", "identifiedBy": [ { "type": "uri", @@ -71925,7 +68721,6 @@ "pid": "962552569", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6021351-6", "identifiedBy": [ { "type": "uri", @@ -71942,7 +68737,6 @@ "pid": "962557110", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6021874-5", "identifiedBy": [ { "type": "uri", @@ -71967,7 +68761,6 @@ "pid": "962558931", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6022082-X", "identifiedBy": [ { "type": "uri", @@ -71984,7 +68777,6 @@ "pid": "962559512", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6022144-6", "identifiedBy": [ { "type": "uri", @@ -72001,7 +68793,6 @@ "pid": "962562688", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6022508-7", "identifiedBy": [ { "type": "uri", @@ -72026,7 +68817,6 @@ "pid": "962582697", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6024760-5", "identifiedBy": [ { "type": "uri", @@ -72042,7 +68832,6 @@ "pid": "962587087", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6025240-6", "identifiedBy": [ { "type": "uri", @@ -72059,7 +68848,6 @@ "pid": "962615838", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6028376-2", "identifiedBy": [ { "type": "uri", @@ -72091,7 +68879,6 @@ "pid": "962626554", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6029523-5", "identifiedBy": [ { "type": "uri", @@ -72108,7 +68895,6 @@ "pid": "96263025X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6029918-6", "identifiedBy": [ { "type": "uri", @@ -72124,7 +68910,6 @@ "pid": "962632058", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6030117-X", "identifiedBy": [ { "type": "uri", @@ -72141,7 +68926,6 @@ "pid": "962637289", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6030677-4", "identifiedBy": [ { "type": "uri", @@ -72165,7 +68949,6 @@ "pid": "962660914", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6033155-0", "identifiedBy": [ { "type": "uri", @@ -72182,7 +68965,6 @@ "pid": "96266734X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6033818-0", "identifiedBy": [ { "type": "uri", @@ -72205,7 +68987,6 @@ "pid": "962668389", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6033931-7", "identifiedBy": [ { "type": "uri", @@ -72236,7 +69017,6 @@ "pid": "962669881", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6034085-X", "identifiedBy": [ { "type": "uri", @@ -72253,7 +69033,6 @@ "pid": "962941042", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5525499-8", "identifiedBy": [ { "type": "uri", @@ -72276,7 +69055,6 @@ "pid": "962948918", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5526323-9", "identifiedBy": [ { "type": "uri", @@ -72292,7 +69070,6 @@ "pid": "96303409X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10029337-2", "identifiedBy": [ { "type": "uri", @@ -72321,7 +69098,6 @@ "pid": "963066536", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/3050483-1", "identifiedBy": [ { "type": "uri", @@ -72348,7 +69124,6 @@ "pid": "963134205", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10030065-0", "identifiedBy": [ { "type": "uri", @@ -72371,7 +69146,6 @@ "pid": "963138812", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1705168-X", "identifiedBy": [ { "type": "uri", @@ -72393,7 +69167,6 @@ "pid": "963139460", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1705229-4", "identifiedBy": [ { "type": "uri", @@ -72418,7 +69191,6 @@ "pid": "963225332", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5528883-2", "identifiedBy": [ { "type": "uri", @@ -72442,7 +69214,6 @@ "pid": "963233599", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5529704-3", "identifiedBy": [ { "type": "uri", @@ -72467,7 +69238,6 @@ "pid": "963261959", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10031162-3", "identifiedBy": [ { "type": "uri", @@ -72484,7 +69254,6 @@ "pid": "963262246", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10031214-7", "identifiedBy": [ { "type": "uri", @@ -72501,7 +69270,6 @@ "pid": "963262513", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10031252-4", "identifiedBy": [ { "type": "uri", @@ -72526,7 +69294,6 @@ "pid": "963299433", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/414062-X", "identifiedBy": [ { "type": "uri", @@ -72543,7 +69310,6 @@ "pid": "963317040", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/402401-1", "identifiedBy": [ { "type": "uri", @@ -72567,7 +69333,6 @@ "pid": "963320343", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/413808-9", "identifiedBy": [ { "type": "uri", @@ -72596,7 +69361,6 @@ "pid": "963327666", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/415273-6", "identifiedBy": [ { "type": "uri", @@ -72615,7 +69379,6 @@ "pid": "963329812", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/406562-1", "identifiedBy": [ { "type": "uri", @@ -72644,7 +69407,6 @@ "pid": "963342177", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/408131-6", "identifiedBy": [ { "type": "uri", @@ -72661,7 +69423,6 @@ "pid": "963342231", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/414537-9", "identifiedBy": [ { "type": "uri", @@ -72688,7 +69449,6 @@ "pid": "963348442", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/405158-0", "identifiedBy": [ { "type": "uri", @@ -72711,7 +69471,6 @@ "pid": "963366785", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/404464-2", "identifiedBy": [ { "type": "uri", @@ -72737,7 +69496,6 @@ "pid": "963367781", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/406407-0", "identifiedBy": [ { "type": "uri", @@ -72754,7 +69512,6 @@ "pid": "963388673", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/405225-0", "identifiedBy": [ { "type": "uri", @@ -72771,7 +69528,6 @@ "pid": "963410849", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/411496-6", "identifiedBy": [ { "type": "uri", @@ -72787,7 +69543,6 @@ "pid": "963529137", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5530204-X", "identifiedBy": [ { "type": "uri", @@ -72810,7 +69565,6 @@ "pid": "963600346", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10032613-4", "identifiedBy": [ { "type": "uri", @@ -72828,7 +69582,6 @@ "pid": "96365778X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10032790-4", "identifiedBy": [ { "type": "uri", @@ -72857,7 +69610,6 @@ "pid": "963822977", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5531007-2", "identifiedBy": [ { "type": "uri", @@ -72874,7 +69626,6 @@ "pid": "963823388", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5531050-3", "identifiedBy": [ { "type": "uri", @@ -72891,7 +69642,6 @@ "pid": "963837532", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10033656-5", "identifiedBy": [ { "type": "uri", @@ -72916,7 +69666,6 @@ "pid": "963859803", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1404176-5", "identifiedBy": [ { "type": "uri", @@ -72945,7 +69694,6 @@ "pid": "963859811", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1404177-7", "identifiedBy": [ { "type": "uri", @@ -72968,7 +69716,6 @@ "pid": "964213427", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/4681506-5", "identifiedBy": [ { "type": "uri", @@ -73004,7 +69751,6 @@ "pid": "964214407", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/4681519-3", "identifiedBy": [ { "type": "uri", @@ -73038,7 +69784,6 @@ "pid": "964225581", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10036735-5", "identifiedBy": [ { "type": "uri", @@ -73058,7 +69803,6 @@ "pid": "964319020", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/3051823-4", "identifiedBy": [ { "type": "uri", @@ -73076,7 +69820,6 @@ "pid": "964322153", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1246477-6", "identifiedBy": [ { "type": "uri", @@ -73103,7 +69846,6 @@ "pid": "964379473", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10037697-6", "identifiedBy": [ { "type": "uri", @@ -73126,7 +69868,6 @@ "pid": "964421984", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10038153-4", "identifiedBy": [ { "type": "uri", @@ -73143,7 +69884,6 @@ "pid": "964495376", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10038373-7", "identifiedBy": [ { "type": "uri", @@ -73165,7 +69905,6 @@ "pid": "964501090", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5534045-3", "identifiedBy": [ { "type": "uri", @@ -73181,7 +69920,6 @@ "pid": "964564491", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10039245-3", "identifiedBy": [ { "type": "uri", @@ -73206,7 +69944,6 @@ "pid": "964647222", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10039630-6", "identifiedBy": [ { "type": "uri", @@ -73229,7 +69966,6 @@ "pid": "964653613", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5534534-7", "identifiedBy": [ { "type": "uri", @@ -73253,7 +69989,6 @@ "pid": "964715619", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10040298-7", "identifiedBy": [ { "type": "uri", @@ -73276,7 +70011,6 @@ "pid": "964855380", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5535962-0", "identifiedBy": [ { "type": "uri", @@ -73306,7 +70040,6 @@ "pid": "964861135", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5536511-5", "identifiedBy": [ { "type": "uri", @@ -73329,7 +70062,6 @@ "pid": "96503545X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10042695-5", "identifiedBy": [ { "type": "uri", @@ -73346,7 +70078,6 @@ "pid": "965091961", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10043225-6", "identifiedBy": [ { "type": "uri", @@ -73371,7 +70102,6 @@ "pid": "965120449", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10043197-5", "identifiedBy": [ { "type": "uri", @@ -73388,7 +70118,6 @@ "pid": "965135217", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5537472-4", "identifiedBy": [ { "type": "uri", @@ -73411,7 +70140,6 @@ "pid": "965175251", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10043402-2", "identifiedBy": [ { "type": "uri", @@ -73434,7 +70162,6 @@ "pid": "965321827", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10044190-7", "identifiedBy": [ { "type": "uri", @@ -73452,7 +70179,6 @@ "pid": "965330842", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5538475-4", "identifiedBy": [ { "type": "uri", @@ -73474,7 +70200,6 @@ "pid": "965868915", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10048532-7", "identifiedBy": [ { "type": "uri", @@ -73501,7 +70226,6 @@ "pid": "966048636", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10049287-3", "identifiedBy": [ { "type": "uri", @@ -73523,7 +70247,6 @@ "pid": "966525892", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10051778-X", "identifiedBy": [ { "type": "uri", @@ -73546,7 +70269,6 @@ "pid": "966552997", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10051541-1", "identifiedBy": [ { "type": "uri", @@ -73569,7 +70291,6 @@ "pid": "966574982", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10052076-5", "identifiedBy": [ { "type": "uri", @@ -73592,7 +70313,6 @@ "pid": "967972817", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10058535-8", "identifiedBy": [ { "type": "uri", @@ -73615,7 +70335,6 @@ "pid": "968070191", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10044883-5", "identifiedBy": [ { "type": "uri", @@ -73640,7 +70359,6 @@ "pid": "968095615", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10045348-X", "identifiedBy": [ { "type": "uri", @@ -73660,7 +70378,6 @@ "pid": "968111521", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10048155-3", "identifiedBy": [ { "type": "uri", @@ -73683,7 +70400,6 @@ "pid": "968131786", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1246711-X", "identifiedBy": [ { "type": "uri", @@ -73710,7 +70426,6 @@ "pid": "968149766", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10053208-1", "identifiedBy": [ { "type": "uri", @@ -73733,7 +70448,6 @@ "pid": "96815252X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10053684-0", "identifiedBy": [ { "type": "uri", @@ -73758,7 +70472,6 @@ "pid": "968164811", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5539390-1", "identifiedBy": [ { "type": "uri", @@ -73780,7 +70493,6 @@ "pid": "968168221", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5539752-9", "identifiedBy": [ { "type": "uri", @@ -73808,7 +70520,6 @@ "pid": "968179002", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1706700-5", "identifiedBy": [ { "type": "uri", @@ -73827,7 +70538,6 @@ "pid": "96818734X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/3055416-0", "identifiedBy": [ { "type": "uri", @@ -73844,7 +70554,6 @@ "pid": "968195938", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10054576-2", "identifiedBy": [ { "type": "uri", @@ -73867,7 +70576,6 @@ "pid": "968196349", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10054618-3", "identifiedBy": [ { "type": "uri", @@ -73890,7 +70598,6 @@ "pid": "968265642", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10056952-3", "identifiedBy": [ { "type": "uri", @@ -73916,7 +70623,6 @@ "pid": "968285988", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5547176-6", "identifiedBy": [ { "type": "uri", @@ -73933,7 +70639,6 @@ "pid": "968290981", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5547695-8", "identifiedBy": [ { "type": "uri", @@ -73950,7 +70655,6 @@ "pid": "968305768", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10058124-9", "identifiedBy": [ { "type": "uri", @@ -73967,7 +70671,6 @@ "pid": "968777449", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10063432-1", "identifiedBy": [ { "type": "uri", @@ -73995,7 +70698,6 @@ "pid": "968883982", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10064248-2", "identifiedBy": [ { "type": "uri", @@ -74012,7 +70714,6 @@ "pid": "968989454", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10060285-X", "identifiedBy": [ { "type": "uri", @@ -74040,7 +70741,6 @@ "pid": "968989640", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10060321-X", "identifiedBy": [ { "type": "uri", @@ -74068,7 +70768,6 @@ "pid": "969011911", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5548899-7", "identifiedBy": [ { "type": "uri", @@ -74115,7 +70814,6 @@ "pid": "969012055", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5548914-X", "identifiedBy": [ { "type": "uri", @@ -74132,7 +70830,6 @@ "pid": "969012462", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5548956-4", "identifiedBy": [ { "type": "uri", @@ -74149,7 +70846,6 @@ "pid": "969026927", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10062900-3", "identifiedBy": [ { "type": "uri", @@ -74173,7 +70869,6 @@ "pid": "969033788", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10064035-7", "identifiedBy": [ { "type": "uri", @@ -74190,7 +70885,6 @@ "pid": "969045859", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5550073-0", "identifiedBy": [ { "type": "uri", @@ -74216,7 +70910,6 @@ "pid": "969048009", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5550300-7", "identifiedBy": [ { "type": "uri", @@ -74239,7 +70932,6 @@ "pid": "969051492", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5550663-X", "identifiedBy": [ { "type": "uri", @@ -74269,7 +70961,6 @@ "pid": "969056370", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5551173-9", "identifiedBy": [ { "type": "uri", @@ -74292,7 +70983,6 @@ "pid": "969521367", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/3056843-2", "identifiedBy": [ { "type": "uri", @@ -74309,7 +70999,6 @@ "pid": "969522304", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10064566-5", "identifiedBy": [ { "type": "uri", @@ -74334,7 +71023,6 @@ "pid": "96954135X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10067483-5", "identifiedBy": [ { "type": "uri", @@ -74363,7 +71051,6 @@ "pid": "96954457X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/3056947-3", "identifiedBy": [ { "type": "uri", @@ -74380,7 +71067,6 @@ "pid": "969559933", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10068298-4", "identifiedBy": [ { "type": "uri", @@ -74405,7 +71091,6 @@ "pid": "96999463X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10068786-6", "identifiedBy": [ { "type": "uri", @@ -74432,7 +71117,6 @@ "pid": "97001418X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10069983-2", "identifiedBy": [ { "type": "uri", @@ -74457,7 +71141,6 @@ "pid": "970052987", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10071807-3", "identifiedBy": [ { "type": "uri", @@ -74474,7 +71157,6 @@ "pid": "970275323", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10070394-X", "identifiedBy": [ { "type": "uri", @@ -74497,7 +71179,6 @@ "pid": "970287798", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10071403-1", "identifiedBy": [ { "type": "uri", @@ -74520,7 +71201,6 @@ "pid": "970302339", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5553833-2", "identifiedBy": [ { "type": "uri", @@ -74537,7 +71217,6 @@ "pid": "97030482X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5554093-4", "identifiedBy": [ { "type": "uri", @@ -74560,7 +71239,6 @@ "pid": "970399340", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10074015-7", "identifiedBy": [ { "type": "uri", @@ -74585,7 +71263,6 @@ "pid": "970821794", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10076293-1", "identifiedBy": [ { "type": "uri", @@ -74608,7 +71285,6 @@ "pid": "971124272", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1304934-3", "identifiedBy": [ { "type": "uri", @@ -74625,7 +71301,6 @@ "pid": "971124728", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1707370-4", "identifiedBy": [ { "type": "uri", @@ -74642,7 +71317,6 @@ "pid": "971140162", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10077364-3", "identifiedBy": [ { "type": "uri", @@ -74664,7 +71338,6 @@ "pid": "971140642", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10077458-1", "identifiedBy": [ { "type": "uri", @@ -74681,7 +71354,6 @@ "pid": "971146853", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5556728-9", "identifiedBy": [ { "type": "uri", @@ -74698,7 +71370,6 @@ "pid": "971628246", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10081106-1", "identifiedBy": [ { "type": "uri", @@ -74715,7 +71386,6 @@ "pid": "971687315", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/4785432-7", "identifiedBy": [ { "type": "uri", @@ -74740,7 +71410,6 @@ "pid": "971792496", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10082667-2", "identifiedBy": [ { "type": "uri", @@ -74763,7 +71432,6 @@ "pid": "971798311", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10082759-7", "identifiedBy": [ { "type": "uri", @@ -74789,7 +71457,6 @@ "pid": "97198364X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10084656-7", "identifiedBy": [ { "type": "uri", @@ -74812,7 +71479,6 @@ "pid": "972482830", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10089247-4", "identifiedBy": [ { "type": "uri", @@ -74835,7 +71501,6 @@ "pid": "972926496", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10088548-2", "identifiedBy": [ { "type": "uri", @@ -74860,7 +71525,6 @@ "pid": "972927743", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/3058816-9", "identifiedBy": [ { "type": "uri", @@ -74876,7 +71540,6 @@ "pid": "972947191", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10082432-8", "identifiedBy": [ { "type": "uri", @@ -74893,7 +71556,6 @@ "pid": "972955372", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10080217-5", "identifiedBy": [ { "type": "uri", @@ -74916,7 +71578,6 @@ "pid": "972969608", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10080550-4", "identifiedBy": [ { "type": "uri", @@ -74939,7 +71600,6 @@ "pid": "972975128", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/3059549-6", "identifiedBy": [ { "type": "uri", @@ -74956,7 +71616,6 @@ "pid": "972990437", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5558642-9", "identifiedBy": [ { "type": "uri", @@ -74979,7 +71638,6 @@ "pid": "973004010", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5559211-9", "identifiedBy": [ { "type": "uri", @@ -75001,7 +71659,6 @@ "pid": "973016515", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10088119-1", "identifiedBy": [ { "type": "uri", @@ -75026,7 +71683,6 @@ "pid": "973017856", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5560024-4", "identifiedBy": [ { "type": "uri", @@ -75050,7 +71706,6 @@ "pid": "973277645", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10094153-9", "identifiedBy": [ { "type": "uri", @@ -75072,7 +71727,6 @@ "pid": "97372076X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5554958-5", "identifiedBy": [ { "type": "uri", @@ -75089,7 +71743,6 @@ "pid": "973728558", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10090067-7", "identifiedBy": [ { "type": "uri", @@ -75114,7 +71767,6 @@ "pid": "973729619", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/3059672-5", "identifiedBy": [ { "type": "uri", @@ -75134,7 +71786,6 @@ "pid": "973743220", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10090790-8", "identifiedBy": [ { "type": "uri", @@ -75159,7 +71810,6 @@ "pid": "973753544", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6501227-6", "identifiedBy": [ { "type": "uri", @@ -75185,7 +71835,6 @@ "pid": "973763361", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10091450-0", "identifiedBy": [ { "type": "uri", @@ -75208,7 +71857,6 @@ "pid": "973769998", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6034765-X", "identifiedBy": [ { "type": "uri", @@ -75233,7 +71881,6 @@ "pid": "973778318", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6035091-X", "identifiedBy": [ { "type": "uri", @@ -75257,7 +71904,6 @@ "pid": "97378637X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5562668-3", "identifiedBy": [ { "type": "uri", @@ -75273,7 +71919,6 @@ "pid": "973790636", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6502345-6", "identifiedBy": [ { "type": "uri", @@ -75298,7 +71943,6 @@ "pid": "973818522", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/3060228-2", "identifiedBy": [ { "type": "uri", @@ -75315,7 +71959,6 @@ "pid": "973819987", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/3060397-3", "identifiedBy": [ { "type": "uri", @@ -75332,7 +71975,6 @@ "pid": "973828269", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10095103-X", "identifiedBy": [ { "type": "uri", @@ -75349,7 +71991,6 @@ "pid": "973832231", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6036511-0", "identifiedBy": [ { "type": "uri", @@ -75366,7 +72007,6 @@ "pid": "973847476", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6037258-8", "identifiedBy": [ { "type": "uri", @@ -75382,7 +72022,6 @@ "pid": "973854790", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5564053-9", "identifiedBy": [ { "type": "uri", @@ -75405,7 +72044,6 @@ "pid": "973987278", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6503698-0", "identifiedBy": [ { "type": "uri", @@ -75427,7 +72065,6 @@ "pid": "973999527", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6038009-3", "identifiedBy": [ { "type": "uri", @@ -75450,7 +72087,6 @@ "pid": "974085812", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10099079-4", "identifiedBy": [ { "type": "uri", @@ -75474,7 +72110,6 @@ "pid": "974127469", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/3060901-X", "identifiedBy": [ { "type": "uri", @@ -75497,7 +72132,6 @@ "pid": "974169722", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10099660-7", "identifiedBy": [ { "type": "uri", @@ -75530,7 +72164,6 @@ "pid": "974334650", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5564564-1", "identifiedBy": [ { "type": "uri", @@ -75546,7 +72179,6 @@ "pid": "974336076", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5564717-0", "identifiedBy": [ { "type": "uri", @@ -75575,7 +72207,6 @@ "pid": "974346063", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10100416-3", "identifiedBy": [ { "type": "uri", @@ -75595,7 +72226,6 @@ "pid": "974357685", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10101091-6", "identifiedBy": [ { "type": "uri", @@ -75618,7 +72248,6 @@ "pid": "974385492", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10101355-3", "identifiedBy": [ { "type": "uri", @@ -75641,7 +72270,6 @@ "pid": "974428345", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5565638-9", "identifiedBy": [ { "type": "uri", @@ -75658,7 +72286,6 @@ "pid": "974489530", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6504567-1", "identifiedBy": [ { "type": "uri", @@ -75675,7 +72302,6 @@ "pid": "974648884", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10102400-9", "identifiedBy": [ { "type": "uri", @@ -75698,7 +72324,6 @@ "pid": "974981990", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6505086-1", "identifiedBy": [ { "type": "uri", @@ -75715,7 +72340,6 @@ "pid": "975310844", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10106568-1", "identifiedBy": [ { "type": "uri", @@ -75732,7 +72356,6 @@ "pid": "975409239", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6041577-0", "identifiedBy": [ { "type": "uri", @@ -75755,7 +72378,6 @@ "pid": "975409255", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6041579-4", "identifiedBy": [ { "type": "uri", @@ -75772,7 +72394,6 @@ "pid": "975411659", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6041817-5", "identifiedBy": [ { "type": "uri", @@ -75789,7 +72410,6 @@ "pid": "97542890X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5566968-2", "identifiedBy": [ { "type": "uri", @@ -75812,7 +72432,6 @@ "pid": "975483935", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6042391-2", "identifiedBy": [ { "type": "uri", @@ -75829,7 +72448,6 @@ "pid": "975497278", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10107593-5", "identifiedBy": [ { "type": "uri", @@ -75852,7 +72470,6 @@ "pid": "975537016", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/3061691-8", "identifiedBy": [ { "type": "uri", @@ -75869,7 +72486,6 @@ "pid": "975540289", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6505893-8", "identifiedBy": [ { "type": "uri", @@ -75885,7 +72501,6 @@ "pid": "97554134X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5567163-9", "identifiedBy": [ { "type": "uri", @@ -75910,7 +72525,6 @@ "pid": "975543644", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5567393-4", "identifiedBy": [ { "type": "uri", @@ -75936,7 +72550,6 @@ "pid": "975561243", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10107936-9", "identifiedBy": [ { "type": "uri", @@ -75963,7 +72576,6 @@ "pid": "975774719", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10109223-4", "identifiedBy": [ { "type": "uri", @@ -75980,7 +72592,6 @@ "pid": "975895346", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5568081-1", "identifiedBy": [ { "type": "uri", @@ -76002,7 +72613,6 @@ "pid": "976006332", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10110917-9", "identifiedBy": [ { "type": "uri", @@ -76027,7 +72637,6 @@ "pid": "976206323", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10112942-7", "identifiedBy": [ { "type": "uri", @@ -76044,7 +72653,6 @@ "pid": "976264293", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10113329-7", "identifiedBy": [ { "type": "uri", @@ -76067,7 +72675,6 @@ "pid": "976322293", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10113943-3", "identifiedBy": [ { "type": "uri", @@ -76092,7 +72699,6 @@ "pid": "976362473", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10114334-5", "identifiedBy": [ { "type": "uri", @@ -76109,7 +72715,6 @@ "pid": "97638230X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10114527-5", "identifiedBy": [ { "type": "uri", @@ -76138,7 +72743,6 @@ "pid": "976430975", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10114991-8", "identifiedBy": [ { "type": "uri", @@ -76160,7 +72764,6 @@ "pid": "976606380", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10116768-4", "identifiedBy": [ { "type": "uri", @@ -76191,7 +72794,6 @@ "pid": "976645815", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6045104-X", "identifiedBy": [ { "type": "uri", @@ -76220,7 +72822,6 @@ "pid": "97664830X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6045528-7", "identifiedBy": [ { "type": "uri", @@ -76243,7 +72844,6 @@ "pid": "976660970", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/3062366-2", "identifiedBy": [ { "type": "uri", @@ -76263,7 +72863,6 @@ "pid": "976760681", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10117933-9", "identifiedBy": [ { "type": "uri", @@ -76286,7 +72885,6 @@ "pid": "976796694", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10118276-4", "identifiedBy": [ { "type": "uri", @@ -76308,7 +72906,6 @@ "pid": "976913445", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6046532-3", "identifiedBy": [ { "type": "uri", @@ -76325,7 +72922,6 @@ "pid": "97693681X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10119433-X", "identifiedBy": [ { "type": "uri", @@ -76342,7 +72938,6 @@ "pid": "97694247X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10119485-7", "identifiedBy": [ { "type": "uri", @@ -76359,7 +72954,6 @@ "pid": "977057763", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6507713-1", "identifiedBy": [ { "type": "uri", @@ -76375,7 +72969,6 @@ "pid": "977094332", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10120516-8", "identifiedBy": [ { "type": "uri", @@ -76398,7 +72991,6 @@ "pid": "977270866", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10121673-7", "identifiedBy": [ { "type": "uri", @@ -76415,7 +73007,6 @@ "pid": "977320545", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6047238-8", "identifiedBy": [ { "type": "uri", @@ -76440,7 +73031,6 @@ "pid": "977327523", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5570815-8", "identifiedBy": [ { "type": "uri", @@ -76457,7 +73047,6 @@ "pid": "977330281", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/5571091-8", "identifiedBy": [ { "type": "uri", @@ -76480,7 +73069,6 @@ "pid": "977508102", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10122049-2", "identifiedBy": [ { "type": "uri", @@ -76496,7 +73084,6 @@ "pid": "977725022", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6047942-5", "identifiedBy": [ { "type": "uri", @@ -76514,7 +73101,6 @@ "pid": "977939359", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10123682-7", "identifiedBy": [ { "type": "uri", @@ -76537,7 +73123,6 @@ "pid": "977998827", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10123962-2", "identifiedBy": [ { "type": "uri", @@ -76554,7 +73139,6 @@ "pid": "978057414", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6048231-X", "identifiedBy": [ { "type": "uri", @@ -76577,7 +73161,6 @@ "pid": "978237064", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6049331-8", "identifiedBy": [ { "type": "uri", @@ -76600,7 +73183,6 @@ "pid": "97824723X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10125411-8", "identifiedBy": [ { "type": "uri", @@ -76627,7 +73209,6 @@ "pid": "978328582", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6049931-X", "identifiedBy": [ { "type": "uri", @@ -76643,7 +73224,6 @@ "pid": "978329953", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6050087-6", "identifiedBy": [ { "type": "uri", @@ -76660,7 +73240,6 @@ "pid": "978348168", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10126085-4", "identifiedBy": [ { "type": "uri", @@ -76681,7 +73260,6 @@ "pid": "978367316", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10126236-X", "identifiedBy": [ { "type": "uri", @@ -76704,7 +73282,6 @@ "pid": "97845992X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10126833-6", "identifiedBy": [ { "type": "uri", @@ -76728,7 +73305,6 @@ "pid": "978499298", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10127100-1", "identifiedBy": [ { "type": "uri", @@ -76750,7 +73326,6 @@ "pid": "978581717", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10127812-3", "identifiedBy": [ { "type": "uri", @@ -76773,7 +73348,6 @@ "pid": "978978862", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10132298-7", "identifiedBy": [ { "type": "uri", @@ -76789,7 +73363,6 @@ "pid": "978983149", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/3063359-X", "identifiedBy": [ { "type": "uri", @@ -76812,7 +73385,6 @@ "pid": "979116791", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6052413-3", "identifiedBy": [ { "type": "uri", @@ -76829,7 +73401,6 @@ "pid": "979117453", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6052482-0", "identifiedBy": [ { "type": "uri", @@ -76846,7 +73417,6 @@ "pid": "979150949", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6509771-3", "identifiedBy": [ { "type": "uri", @@ -76869,7 +73439,6 @@ "pid": "979243440", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10134047-3", "identifiedBy": [ { "type": "uri", @@ -76886,7 +73455,6 @@ "pid": "979248566", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10134086-2", "identifiedBy": [ { "type": "uri", @@ -76917,7 +73485,6 @@ "pid": "979300649", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6509942-4", "identifiedBy": [ { "type": "uri", @@ -76934,7 +73501,6 @@ "pid": "97935272X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10134696-7", "identifiedBy": [ { "type": "uri", @@ -76957,7 +73523,6 @@ "pid": "979530083", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10135751-5", "identifiedBy": [ { "type": "uri", @@ -76980,7 +73545,6 @@ "pid": "979571839", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6053641-X", "identifiedBy": [ { "type": "uri", @@ -77003,7 +73567,6 @@ "pid": "979582407", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/3063656-5", "identifiedBy": [ { "type": "uri", @@ -77020,7 +73583,6 @@ "pid": "979721474", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10136752-1", "identifiedBy": [ { "type": "uri", @@ -77049,7 +73611,6 @@ "pid": "979910978", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6054776-5", "identifiedBy": [ { "type": "uri", @@ -77065,7 +73626,6 @@ "pid": "980047277", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10139096-8", "identifiedBy": [ { "type": "uri", @@ -77081,7 +73641,6 @@ "pid": "980202078", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6055638-9", "identifiedBy": [ { "type": "uri", @@ -77104,7 +73663,6 @@ "pid": "98022540X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10140247-8", "identifiedBy": [ { "type": "uri", @@ -77121,7 +73679,6 @@ "pid": "980348749", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6511095-X", "identifiedBy": [ { "type": "uri", @@ -77144,7 +73701,6 @@ "pid": "980351189", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/3064016-7", "identifiedBy": [ { "type": "uri", @@ -77161,7 +73717,6 @@ "pid": "980351952", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/3064096-9", "identifiedBy": [ { "type": "uri", @@ -77187,7 +73742,6 @@ "pid": "980433401", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10141761-5", "identifiedBy": [ { "type": "uri", @@ -77203,7 +73757,6 @@ "pid": "980446775", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10141860-7", "identifiedBy": [ { "type": "uri", @@ -77220,7 +73773,6 @@ "pid": "980496705", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10142193-X", "identifiedBy": [ { "type": "uri", @@ -77236,7 +73788,6 @@ "pid": "980499607", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10142240-4", "identifiedBy": [ { "type": "uri", @@ -77259,7 +73810,6 @@ "pid": "980601851", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10142953-8", "identifiedBy": [ { "type": "uri", @@ -77275,7 +73825,6 @@ "pid": "980793017", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10144796-6", "identifiedBy": [ { "type": "uri", @@ -77329,7 +73878,6 @@ "pid": "981031390", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6058091-4", "identifiedBy": [ { "type": "uri", @@ -77354,7 +73902,6 @@ "pid": "981339794", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10148645-5", "identifiedBy": [ { "type": "uri", @@ -77377,7 +73924,6 @@ "pid": "981426387", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10149238-8", "identifiedBy": [ { "type": "uri", @@ -77394,7 +73940,6 @@ "pid": "981607705", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10150687-9", "identifiedBy": [ { "type": "uri", @@ -77419,7 +73964,6 @@ "pid": "981642551", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10150926-1", "identifiedBy": [ { "type": "uri", @@ -77439,7 +73983,6 @@ "pid": "981663753", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10151063-9", "identifiedBy": [ { "type": "uri", @@ -77462,7 +74005,6 @@ "pid": "981823866", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10152515-1", "identifiedBy": [ { "type": "uri", @@ -77484,7 +74026,6 @@ "pid": "981883427", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6060089-5", "identifiedBy": [ { "type": "uri", @@ -77520,7 +74061,6 @@ "pid": "98195314X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10153383-4", "identifiedBy": [ { "type": "uri", @@ -77543,7 +74083,6 @@ "pid": "981996833", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6060233-8", "identifiedBy": [ { "type": "uri", @@ -77560,7 +74099,6 @@ "pid": "98208823X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6513311-0", "identifiedBy": [ { "type": "uri", @@ -77583,7 +74121,6 @@ "pid": "982492855", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10156973-7", "identifiedBy": [ { "type": "uri", @@ -77600,7 +74137,6 @@ "pid": "982514050", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10157263-3", "identifiedBy": [ { "type": "uri", @@ -77617,7 +74153,6 @@ "pid": "982653166", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10158210-9", "identifiedBy": [ { "type": "uri", @@ -77640,7 +74175,6 @@ "pid": "982910592", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10159969-9", "identifiedBy": [ { "type": "uri", @@ -77668,7 +74202,6 @@ "pid": "982913656", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10160020-3", "identifiedBy": [ { "type": "uri", @@ -77685,7 +74218,6 @@ "pid": "982939477", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10160218-2", "identifiedBy": [ { "type": "uri", @@ -77702,7 +74234,6 @@ "pid": "982961308", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6061967-3", "identifiedBy": [ { "type": "uri", @@ -77729,7 +74260,6 @@ "pid": "982994818", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10160599-7", "identifiedBy": [ { "type": "uri", @@ -77746,7 +74276,6 @@ "pid": "983050538", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10160979-6", "identifiedBy": [ { "type": "uri", @@ -77763,7 +74292,6 @@ "pid": "983491550", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6514887-3", "identifiedBy": [ { "type": "uri", @@ -77786,7 +74314,6 @@ "pid": "983615543", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6515052-1", "identifiedBy": [ { "type": "uri", @@ -77809,7 +74336,6 @@ "pid": "983662215", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10165334-7", "identifiedBy": [ { "type": "uri", @@ -77834,7 +74360,6 @@ "pid": "98379314X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10166262-2", "identifiedBy": [ { "type": "uri", @@ -77860,7 +74385,6 @@ "pid": "983910138", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10167372-3", "identifiedBy": [ { "type": "uri", @@ -77877,7 +74401,6 @@ "pid": "984022686", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10168143-4", "identifiedBy": [ { "type": "uri", @@ -77902,7 +74425,6 @@ "pid": "984092862", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10168794-1", "identifiedBy": [ { "type": "uri", @@ -77925,7 +74447,6 @@ "pid": "984302190", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6515675-4", "identifiedBy": [ { "type": "uri", @@ -77942,7 +74463,6 @@ "pid": "984368728", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10170361-2", "identifiedBy": [ { "type": "uri", @@ -77959,7 +74479,6 @@ "pid": "984403922", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6515733-3", "identifiedBy": [ { "type": "uri", @@ -77984,7 +74503,6 @@ "pid": "984432779", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10170713-7", "identifiedBy": [ { "type": "uri", @@ -78011,7 +74529,6 @@ "pid": "984443711", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10170785-X", "identifiedBy": [ { "type": "uri", @@ -78045,7 +74562,6 @@ "pid": "984455655", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10170907-9", "identifiedBy": [ { "type": "uri", @@ -78073,7 +74589,6 @@ "pid": "984645454", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10172100-6", "identifiedBy": [ { "type": "uri", @@ -78090,7 +74605,6 @@ "pid": "984649220", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10172173-0", "identifiedBy": [ { "type": "uri", @@ -78115,7 +74629,6 @@ "pid": "984661956", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10172239-4", "identifiedBy": [ { "type": "uri", @@ -78137,7 +74650,6 @@ "pid": "984695303", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10172573-5", "identifiedBy": [ { "type": "uri", @@ -78160,7 +74672,6 @@ "pid": "984725180", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6065436-3", "identifiedBy": [ { "type": "uri", @@ -78178,7 +74689,6 @@ "pid": "98474309X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10173071-8", "identifiedBy": [ { "type": "uri", @@ -78195,7 +74705,6 @@ "pid": "984864059", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10173888-2", "identifiedBy": [ { "type": "uri", @@ -78222,7 +74731,6 @@ "pid": "984972498", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10174879-6", "identifiedBy": [ { "type": "uri", @@ -78254,7 +74762,6 @@ "pid": "98510421X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10176181-8", "identifiedBy": [ { "type": "uri", @@ -78270,7 +74777,6 @@ "pid": "985110783", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10176230-6", "identifiedBy": [ { "type": "uri", @@ -78290,7 +74796,6 @@ "pid": "985307358", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6066559-2", "identifiedBy": [ { "type": "uri", @@ -78313,7 +74818,6 @@ "pid": "985554134", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6067120-8", "identifiedBy": [ { "type": "uri", @@ -78330,7 +74834,6 @@ "pid": "985729414", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10181313-2", "identifiedBy": [ { "type": "uri", @@ -78346,7 +74849,6 @@ "pid": "985808721", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6517421-5", "identifiedBy": [ { "type": "uri", @@ -78369,7 +74871,6 @@ "pid": "985947179", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/3067590-X", "identifiedBy": [ { "type": "uri", @@ -78389,7 +74890,6 @@ "pid": "986023647", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6517679-0", "identifiedBy": [ { "type": "uri", @@ -78414,7 +74914,6 @@ "pid": "986065692", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10184188-7", "identifiedBy": [ { "type": "uri", @@ -78441,7 +74940,6 @@ "pid": "986091332", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10184459-1", "identifiedBy": [ { "type": "uri", @@ -78458,7 +74956,6 @@ "pid": "986092274", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10184466-9", "identifiedBy": [ { "type": "uri", @@ -78475,7 +74972,6 @@ "pid": "986429740", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10187002-4", "identifiedBy": [ { "type": "uri", @@ -78491,7 +74987,6 @@ "pid": "986445649", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6068346-6", "identifiedBy": [ { "type": "uri", @@ -78507,7 +75002,6 @@ "pid": "986571148", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10187896-5", "identifiedBy": [ { "type": "uri", @@ -78523,7 +75017,6 @@ "pid": "986759805", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10189089-8", "identifiedBy": [ { "type": "uri", @@ -78548,7 +75041,6 @@ "pid": "986792829", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10189363-2", "identifiedBy": [ { "type": "uri", @@ -78571,7 +75063,6 @@ "pid": "986836400", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10189573-2", "identifiedBy": [ { "type": "uri", @@ -78601,7 +75092,6 @@ "pid": "98702115X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10190664-X", "identifiedBy": [ { "type": "uri", @@ -78624,7 +75114,6 @@ "pid": "987073982", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10190958-5", "identifiedBy": [ { "type": "uri", @@ -78647,7 +75136,6 @@ "pid": "987392964", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/3068414-6", "identifiedBy": [ { "type": "uri", @@ -78669,7 +75157,6 @@ "pid": "987450816", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10194018-X", "identifiedBy": [ { "type": "uri", @@ -78686,7 +75173,6 @@ "pid": "987500465", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10194399-4", "identifiedBy": [ { "type": "uri", @@ -78703,7 +75189,6 @@ "pid": "987545191", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6070191-2", "identifiedBy": [ { "type": "uri", @@ -78726,7 +75211,6 @@ "pid": "987612816", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10195317-3", "identifiedBy": [ { "type": "uri", @@ -78749,7 +75233,6 @@ "pid": "987631365", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6070395-7", "identifiedBy": [ { "type": "uri", @@ -78772,7 +75255,6 @@ "pid": "987875418", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10197500-4", "identifiedBy": [ { "type": "uri", @@ -78803,7 +75285,6 @@ "pid": "987960148", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6519920-0", "identifiedBy": [ { "type": "uri", @@ -78825,7 +75306,6 @@ "pid": "988152819", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10199847-8", "identifiedBy": [ { "type": "uri", @@ -78842,7 +75322,6 @@ "pid": "988280450", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10201037-7", "identifiedBy": [ { "type": "uri", @@ -78867,7 +75346,6 @@ "pid": "988400162", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10201877-7", "identifiedBy": [ { "type": "uri", @@ -78883,7 +75361,6 @@ "pid": "988430940", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10202132-6", "identifiedBy": [ { "type": "uri", @@ -78900,7 +75377,6 @@ "pid": "98843802X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10202216-1", "identifiedBy": [ { "type": "uri", @@ -78929,7 +75405,6 @@ "pid": "988589125", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10203028-5", "identifiedBy": [ { "type": "uri", @@ -78946,7 +75421,6 @@ "pid": "989064859", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10344947-4", "identifiedBy": [ { "type": "uri", @@ -78971,7 +75445,6 @@ "pid": "989146731", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10345663-6", "identifiedBy": [ { "type": "uri", @@ -78990,7 +75463,6 @@ "pid": "989224333", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10346382-3", "identifiedBy": [ { "type": "uri", @@ -79007,7 +75479,6 @@ "pid": "98940434X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6521091-8", "identifiedBy": [ { "type": "uri", @@ -79030,7 +75501,6 @@ "pid": "989409015", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10347980-6", "identifiedBy": [ { "type": "uri", @@ -79047,7 +75517,6 @@ "pid": "989440583", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/3069630-6", "identifiedBy": [ { "type": "uri", @@ -79074,7 +75543,6 @@ "pid": "989523926", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10348807-8", "identifiedBy": [ { "type": "uri", @@ -79091,7 +75559,6 @@ "pid": "989560279", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6072801-2", "identifiedBy": [ { "type": "uri", @@ -79114,7 +75581,6 @@ "pid": "989655059", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10349931-3", "identifiedBy": [ { "type": "uri", @@ -79141,7 +75607,6 @@ "pid": "989690350", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10350284-1", "identifiedBy": [ { "type": "uri", @@ -79164,7 +75629,6 @@ "pid": "989782115", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10351076-X", "identifiedBy": [ { "type": "uri", @@ -79181,7 +75645,6 @@ "pid": "989838420", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6072971-5", "identifiedBy": [ { "type": "uri", @@ -79198,7 +75661,6 @@ "pid": "989943828", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10352515-4", "identifiedBy": [ { "type": "uri", @@ -79215,7 +75677,6 @@ "pid": "990095320", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10353681-4", "identifiedBy": [ { "type": "uri", @@ -79231,7 +75692,6 @@ "pid": "990184269", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10354509-8", "identifiedBy": [ { "type": "uri", @@ -79256,7 +75716,6 @@ "pid": "990280616", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10355679-5", "identifiedBy": [ { "type": "uri", @@ -79276,7 +75735,6 @@ "pid": "990285375", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6073491-7", "identifiedBy": [ { "type": "uri", @@ -79302,7 +75760,6 @@ "pid": "990285650", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6073481-4", "identifiedBy": [ { "type": "uri", @@ -79325,7 +75782,6 @@ "pid": "990303160", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10355872-X", "identifiedBy": [ { "type": "uri", @@ -79341,7 +75797,6 @@ "pid": "990335763", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10356239-4", "identifiedBy": [ { "type": "uri", @@ -79361,7 +75816,6 @@ "pid": "990348059", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10356362-3", "identifiedBy": [ { "type": "uri", @@ -79384,7 +75838,6 @@ "pid": "990387844", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6073770-0", "identifiedBy": [ { "type": "uri", @@ -79401,7 +75854,6 @@ "pid": "990398455", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10356785-9", "identifiedBy": [ { "type": "uri", @@ -79421,7 +75873,6 @@ "pid": "990407624", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10356849-9", "identifiedBy": [ { "type": "uri", @@ -79438,7 +75889,6 @@ "pid": "990531325", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10357707-5", "identifiedBy": [ { "type": "uri", @@ -79461,7 +75911,6 @@ "pid": "990665801", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10358708-1", "identifiedBy": [ { "type": "uri", @@ -79485,7 +75934,6 @@ "pid": "990683869", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/7628383-5", "identifiedBy": [ { "type": "uri", @@ -79515,7 +75963,6 @@ "pid": "990766160", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10359475-9", "identifiedBy": [ { "type": "uri", @@ -79538,7 +75985,6 @@ "pid": "990827321", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10359921-6", "identifiedBy": [ { "type": "uri", @@ -79563,7 +76009,6 @@ "pid": "990889203", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/7630771-2", "identifiedBy": [ { "type": "uri", @@ -79583,7 +76028,6 @@ "pid": "99109087X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10361905-7", "identifiedBy": [ { "type": "uri", @@ -79606,7 +76050,6 @@ "pid": "991108337", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10362072-2", "identifiedBy": [ { "type": "uri", @@ -79622,7 +76065,6 @@ "pid": "991145429", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10362433-8", "identifiedBy": [ { "type": "uri", @@ -79639,7 +76081,6 @@ "pid": "991195000", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/10362857-5", "identifiedBy": [ { "type": "uri", @@ -79662,7 +76103,6 @@ "pid": "991211103", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10362998-1", "identifiedBy": [ { "type": "uri", @@ -79687,7 +76127,6 @@ "pid": "991510011", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10364912-8", "identifiedBy": [ { "type": "uri", @@ -79713,7 +76152,6 @@ "pid": "991533445", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/3071018-2", "identifiedBy": [ { "type": "uri", @@ -79730,7 +76168,6 @@ "pid": "992031486", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10368272-7", "identifiedBy": [ { "type": "uri", @@ -79756,7 +76193,6 @@ "pid": "992385903", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10370439-5", "identifiedBy": [ { "type": "uri", @@ -79773,7 +76209,6 @@ "pid": "992448972", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/3071366-3", "identifiedBy": [ { "type": "uri", @@ -79793,7 +76228,6 @@ "pid": "992654173", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/10372254-3", "identifiedBy": [ { "type": "uri", @@ -79820,7 +76254,6 @@ "pid": "992787858", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16000783-5", "identifiedBy": [ { "type": "uri", @@ -79837,7 +76270,6 @@ "pid": "992788137", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16000793-8", "identifiedBy": [ { "type": "uri", @@ -79854,7 +76286,6 @@ "pid": "992810159", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16000876-1", "identifiedBy": [ { "type": "uri", @@ -79879,7 +76310,6 @@ "pid": "992947588", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16001871-7", "identifiedBy": [ { "type": "uri", @@ -79899,7 +76329,6 @@ "pid": "993072542", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16002694-5", "identifiedBy": [ { "type": "uri", @@ -79924,7 +76353,6 @@ "pid": "993585043", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16005840-5", "identifiedBy": [ { "type": "uri", @@ -79948,7 +76376,6 @@ "pid": "994152868", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6077448-4", "identifiedBy": [ { "type": "uri", @@ -79971,7 +76398,6 @@ "pid": "994333080", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16009488-4", "identifiedBy": [ { "type": "uri", @@ -79994,7 +76420,6 @@ "pid": "994528647", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6525818-6", "identifiedBy": [ { "type": "uri", @@ -80011,7 +76436,6 @@ "pid": "994603320", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16011197-3", "identifiedBy": [ { "type": "uri", @@ -80040,7 +76464,6 @@ "pid": "994861915", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16013164-9", "identifiedBy": [ { "type": "uri", @@ -80064,7 +76487,6 @@ "pid": "994895232", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16013351-8", "identifiedBy": [ { "type": "uri", @@ -80087,7 +76509,6 @@ "pid": "995009384", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16013971-5", "identifiedBy": [ { "type": "uri", @@ -80104,7 +76525,6 @@ "pid": "995549060", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16016375-4", "identifiedBy": [ { "type": "uri", @@ -80131,7 +76551,6 @@ "pid": "995590958", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16016660-3", "identifiedBy": [ { "type": "uri", @@ -80148,7 +76567,6 @@ "pid": "995597928", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16016683-4", "identifiedBy": [ { "type": "uri", @@ -80172,7 +76590,6 @@ "pid": "995606250", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6526631-6", "identifiedBy": [ { "type": "uri", @@ -80188,7 +76605,6 @@ "pid": "995661391", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16016980-X", "identifiedBy": [ { "type": "uri", @@ -80213,7 +76629,6 @@ "pid": "996104801", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6083733-0", "identifiedBy": [ { "type": "uri", @@ -80230,7 +76645,6 @@ "pid": "996109269", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6081305-2", "identifiedBy": [ { "type": "uri", @@ -80253,7 +76667,6 @@ "pid": "996113045", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6083372-5", "identifiedBy": [ { "type": "uri", @@ -80270,7 +76683,6 @@ "pid": "996118780", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6080851-2", "identifiedBy": [ { "type": "uri", @@ -80287,7 +76699,6 @@ "pid": "996123768", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6082800-6", "identifiedBy": [ { "type": "uri", @@ -80304,7 +76715,6 @@ "pid": "996129952", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6082680-0", "identifiedBy": [ { "type": "uri", @@ -80327,7 +76737,6 @@ "pid": "996134492", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6082226-0", "identifiedBy": [ { "type": "uri", @@ -80358,7 +76767,6 @@ "pid": "996142762", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6079951-1", "identifiedBy": [ { "type": "uri", @@ -80375,7 +76783,6 @@ "pid": "996150994", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6079139-1", "identifiedBy": [ { "type": "uri", @@ -80398,7 +76805,6 @@ "pid": "996151265", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6079112-3", "identifiedBy": [ { "type": "uri", @@ -80415,7 +76821,6 @@ "pid": "996312811", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6088934-2", "identifiedBy": [ { "type": "uri", @@ -80431,7 +76836,6 @@ "pid": "996312919", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6088924-X", "identifiedBy": [ { "type": "uri", @@ -80447,7 +76851,6 @@ "pid": "996322809", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6088434-4", "identifiedBy": [ { "type": "uri", @@ -80471,7 +76874,6 @@ "pid": "996334920", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6087221-4", "identifiedBy": [ { "type": "uri", @@ -80494,7 +76896,6 @@ "pid": "996335323", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6087181-7", "identifiedBy": [ { "type": "uri", @@ -80511,7 +76912,6 @@ "pid": "996335846", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6087129-5", "identifiedBy": [ { "type": "uri", @@ -80536,7 +76936,6 @@ "pid": "996336109", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6087103-9", "identifiedBy": [ { "type": "uri", @@ -80561,7 +76960,6 @@ "pid": "996346562", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6084058-4", "identifiedBy": [ { "type": "uri", @@ -80578,7 +76976,6 @@ "pid": "996348980", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6089388-6", "identifiedBy": [ { "type": "uri", @@ -80595,7 +76992,6 @@ "pid": "996450793", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6093765-8", "identifiedBy": [ { "type": "uri", @@ -80612,7 +77008,6 @@ "pid": "996450904", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6093754-3", "identifiedBy": [ { "type": "uri", @@ -80639,7 +77034,6 @@ "pid": "996455116", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6091832-9", "identifiedBy": [ { "type": "uri", @@ -80664,7 +77058,6 @@ "pid": "996459715", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6094874-7", "identifiedBy": [ { "type": "uri", @@ -80687,7 +77080,6 @@ "pid": "996459855", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6094860-7", "identifiedBy": [ { "type": "uri", @@ -80712,7 +77104,6 @@ "pid": "996464190", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6091424-5", "identifiedBy": [ { "type": "uri", @@ -80729,7 +77120,6 @@ "pid": "996469915", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6094355-5", "identifiedBy": [ { "type": "uri", @@ -80752,7 +77142,6 @@ "pid": "996474080", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6090937-7", "identifiedBy": [ { "type": "uri", @@ -80777,7 +77166,6 @@ "pid": "996484280", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6092922-4", "identifiedBy": [ { "type": "uri", @@ -80800,7 +77188,6 @@ "pid": "996494138", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6089935-9", "identifiedBy": [ { "type": "uri", @@ -80826,7 +77213,6 @@ "pid": "996595066", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16020995-X", "identifiedBy": [ { "type": "uri", @@ -80853,7 +77239,6 @@ "pid": "996755519", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6097165-4", "identifiedBy": [ { "type": "uri", @@ -80870,7 +77255,6 @@ "pid": "996765980", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16021723-4", "identifiedBy": [ { "type": "uri", @@ -80916,7 +77300,6 @@ "pid": "996797343", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16021882-2", "identifiedBy": [ { "type": "uri", @@ -80932,7 +77315,6 @@ "pid": "996885226", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6097906-9", "identifiedBy": [ { "type": "uri", @@ -80951,7 +77333,6 @@ "pid": "996895701", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6098847-2", "identifiedBy": [ { "type": "uri", @@ -80967,7 +77348,6 @@ "pid": "996895876", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6098830-7", "identifiedBy": [ { "type": "uri", @@ -80990,7 +77370,6 @@ "pid": "996901248", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6098302-4", "identifiedBy": [ { "type": "uri", @@ -81013,7 +77392,6 @@ "pid": "997040386", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6527478-7", "identifiedBy": [ { "type": "uri", @@ -81039,7 +77417,6 @@ "pid": "997187581", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6100624-5", "identifiedBy": [ { "type": "uri", @@ -81056,7 +77433,6 @@ "pid": "997192240", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6100903-9", "identifiedBy": [ { "type": "uri", @@ -81083,7 +77459,6 @@ "pid": "997206845", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6102952-X", "identifiedBy": [ { "type": "uri", @@ -81114,7 +77489,6 @@ "pid": "997478748", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16024811-5", "identifiedBy": [ { "type": "uri", @@ -81140,7 +77514,6 @@ "pid": "99770392X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16025860-1", "identifiedBy": [ { "type": "uri", @@ -81157,7 +77530,6 @@ "pid": "997809213", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/3073149-5", "identifiedBy": [ { "type": "uri", @@ -81180,7 +77552,6 @@ "pid": "99781926X", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16026503-4", "identifiedBy": [ { "type": "uri", @@ -81203,7 +77574,6 @@ "pid": "997997117", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6528107-X", "identifiedBy": [ { "type": "uri", @@ -81220,7 +77590,6 @@ "pid": "997998881", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6105033-7", "identifiedBy": [ { "type": "uri", @@ -81236,7 +77605,6 @@ "pid": "998032514", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16027470-9", "identifiedBy": [ { "type": "uri", @@ -81261,7 +77629,6 @@ "pid": "998115606", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16028518-5", "identifiedBy": [ { "type": "uri", @@ -81277,7 +77644,6 @@ "pid": "998143278", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16031285-1", "identifiedBy": [ { "type": "uri", @@ -81294,7 +77660,6 @@ "pid": "998153915", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16032349-6", "identifiedBy": [ { "type": "uri", @@ -81317,7 +77682,6 @@ "pid": "998167037", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16033661-2", "identifiedBy": [ { "type": "uri", @@ -81354,7 +77718,6 @@ "pid": "998173983", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16034356-2", "identifiedBy": [ { "type": "uri", @@ -81378,7 +77741,6 @@ "pid": "998174807", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16034438-4", "identifiedBy": [ { "type": "uri", @@ -81401,7 +77763,6 @@ "pid": "998198137", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16036771-2", "identifiedBy": [ { "type": "uri", @@ -81418,7 +77779,6 @@ "pid": "998198323", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16036790-6", "identifiedBy": [ { "type": "uri", @@ -81442,7 +77802,6 @@ "pid": "998216801", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16038638-X", "identifiedBy": [ { "type": "uri", @@ -81468,7 +77827,6 @@ "pid": "99821731X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16038689-5", "identifiedBy": [ { "type": "uri", @@ -81494,7 +77852,6 @@ "pid": "998245127", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16041470-2", "identifiedBy": [ { "type": "uri", @@ -81511,7 +77868,6 @@ "pid": "998245518", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16041509-3", "identifiedBy": [ { "type": "uri", @@ -81527,7 +77883,6 @@ "pid": "998251313", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16042089-1", "identifiedBy": [ { "type": "uri", @@ -81543,7 +77898,6 @@ "pid": "998278815", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16044839-6", "identifiedBy": [ { "type": "uri", @@ -81560,7 +77914,6 @@ "pid": "998292125", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16046170-4", "identifiedBy": [ { "type": "uri", @@ -81590,7 +77943,6 @@ "pid": "998331163", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16047162-X", "identifiedBy": [ { "type": "uri", @@ -81606,7 +77958,6 @@ "pid": "998858234", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16049255-5", "identifiedBy": [ { "type": "uri", @@ -81629,7 +77980,6 @@ "pid": "998904635", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16049441-2", "identifiedBy": [ { "type": "uri", @@ -81658,7 +78008,6 @@ "pid": "999064185", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16050131-3", "identifiedBy": [ { "type": "uri", @@ -81678,7 +78027,6 @@ "pid": "999203592", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6528986-9", "identifiedBy": [ { "type": "uri", @@ -81709,7 +78057,6 @@ "pid": "999527061", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6108863-8", "identifiedBy": [ { "type": "uri", @@ -81725,7 +78072,6 @@ "pid": "999533908", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/6110264-7", "identifiedBy": [ { "type": "uri", @@ -81748,7 +78094,6 @@ "pid": "999541161", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/6109454-7", "identifiedBy": [ { "type": "uri", @@ -81764,7 +78109,6 @@ "pid": "999549847", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16052597-4", "identifiedBy": [ { "type": "uri", @@ -81789,7 +78133,6 @@ "pid": "999646869", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16053190-1", "identifiedBy": [ { "type": "uri", @@ -81805,7 +78148,6 @@ "pid": "999780859", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16053855-5", "identifiedBy": [ { "type": "uri", @@ -81826,7 +78168,6 @@ "pid": "999853155", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16054271-6", "identifiedBy": [ { "type": "uri", @@ -81843,7 +78184,6 @@ "pid": "999862243", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16054325-3", "identifiedBy": [ { "type": "uri", @@ -81865,7 +78205,6 @@ "pid": "999871633", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16054384-8", "identifiedBy": [ { "type": "uri", @@ -81884,7 +78223,6 @@ "pid": "999921770", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16054571-7", "identifiedBy": [ { "type": "uri", @@ -81901,7 +78239,6 @@ "pid": "999991361", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/16054990-5", "identifiedBy": [ { "type": "uri", @@ -81913,4 +78250,4 @@ "country_associated": "xxu", "authorized_access_point": "Exhibition Rachel Whiteread, Drawings, 2010 - 2011, Los Angeles, Calif. u.a." } -] \ No newline at end of file +] diff --git a/data/aggnd_metadata.csv b/data/aggnd_metadata.csv index 2d93cd58..6ed62c16 100644 --- a/data/aggnd_metadata.csv +++ b/data/aggnd_metadata.csv @@ -1,3663 +1,3663 @@ -2023-07-08 08:13:33.062184 2023-07-08 08:13:33.062189 41a08512-08b4-4bf6-89c1-e664ae077c00 {"md5": "95230d3d58121a44dcd4b7a7c7977a31", "pid": "000018953", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1895-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1895-8", "source": "GND"}], "preferred_name": "Konferencija po Okolorudnomu Metasomatizmu", "authorized_access_point": "Konferencija po Okolorudnomu Metasomatizmu"} 1 -2023-07-08 08:13:33.177356 2023-07-08 08:13:33.177359 368b1714-6915-44ed-b982-4e141eea7de5 {"md5": "199de2900aadb2f24761ea1813268eb2", "pid": "00002676X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2676-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2676-1", "source": "GND"}], "preferred_name": "Nobel Conference", "authorized_access_point": "Nobel Conference, Gustavus Adolphus College, Saint Peter, Minn."} 1 -2023-07-08 08:13:33.240325 2023-07-08 08:13:33.240329 4fff861a-c34f-4159-9499-b981736bdf84 {"md5": "658f4815c978980d2842bd9d27451116", "pid": "000089540", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/8954-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/8954-0", "source": "GND"}], "variant_name": ["Congrès International de Gérontologie", "Internationaler Kongreß für Gerontologie", "Meždunarodnyj Kongress Gerontologov", "Congres international de gérontologie", "World Congress of Gerontology", "Internationaler Kongress für Gerontologie", "Congress of Gerontology", "International Gerontological Congress", "International Association of Gerontology", "World Congress in Gerontology", "Congress of the International Association of Gerontology"], "preferred_name": "International Congress of Gerontology", "variant_access_point": ["Congrès International de Gérontologie", "Internationaler Kongreß für Gerontologie", "Meždunarodnyj Kongress Gerontologov", "Congres international de gérontologie", "World Congress of Gerontology", "Internationaler Kongress für Gerontologie", "Congress of Gerontology", "International Gerontological Congress", "International Association of Gerontology. Congress", "World Congress in Gerontology", "Congress of the International Association of Gerontology"], "authorized_access_point": "International Congress of Gerontology"} 1 -2023-07-08 08:13:33.309823 2023-07-08 08:13:33.309831 43e698f0-4144-416d-94af-8626a76f1351 {"md5": "b67dbccf2d7b38cfcd069e3f5e6787f2", "pid": "000115460", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/11546-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/11546-0", "source": "GND"}], "preferred_name": "Philosophisch-Theologische Hauslehranstalt", "country_associated": "au", "authorized_access_point": "Philosophisch-Theologische Hauslehranstalt. Mödling"} 1 -2023-07-08 08:13:33.392445 2023-07-08 08:13:33.392457 b38020d6-1f6e-4e08-afe5-7982b2c8be60 {"md5": "7968e5bbeb4a429f0306a1a2f95532f5", "pid": "000125121", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/12512-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12512-X", "source": "GND"}], "preferred_name": "Zonal'naja Konferencija po Fizike Magnitnych Javlenij", "authorized_access_point": "Zonal'naja Konferencija po Fizike Magnitnych Javlenij"} 1 -2023-07-08 08:13:33.486664 2023-07-08 08:13:33.486672 aaef8541-2a89-4c3b-ad9a-30965a1aae13 {"md5": "237318efee34f8ff333a402cbe13e80b", "pid": "000132764", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/13276-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13276-7", "source": "GND"}], "variant_name": ["Facoltà di scienze politiche"], "preferred_name": "Università degli studi di Genova. Facoltà di scienze politiche", "country_associated": "it", "variant_access_point": ["Facoltà di scienze politiche. Università degli studi di Genova"], "authorized_access_point": "Università degli studi di Genova. Facoltà di scienze politiche"} 1 -2023-07-08 08:13:33.591425 2023-07-08 08:13:33.591435 fbc5e496-e93d-466e-a534-34271142e810 {"md5": "3577b07dc3e5f21625a533394c098465", "pid": "000139076", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/13907-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13907-5", "source": "GND"}], "variant_name": ["Commonwealth Treasury", "Australien. Treasurer", "Department of the Treasury", "Treasury", "Treasurer", "Australien. Department of Treasury", "Department of Treasury", "Australien. Treasury", "Treasury Department. Australia", "Australien. Commonwealth Treasury", "Commonwealth Treasury. Australein", "Australien. Finanzministerium"], "preferred_name": "Australien. Department of the Treasury", "country_associated": "at", "variant_access_point": ["Commonwealth Treasury. Australien", "Australien. Treasurer", "Department of the Treasury. Australien", "Treasury. Australien", "Treasurer. Australien", "Australien. Department of Treasury", "Department of Treasury. Australien", "Australien. Treasury", "Treasury Department. Australia", "Australien. Commonwealth Treasury", "Commonwealth Treasury. Australein", "Australien. Finanzministerium. Ehemalige Vorzugsbenennung SWD"], "authorized_access_point": "Australien. Department of the Treasury", "biographical_information": ["\\"Commonwealth Treasury began operations in Melbourne in January 1901, the smallest of the seven Commonwealth departments established with Federation.\\"", "gegr. 1901"]} 1 -2023-07-08 08:13:33.695477 2023-07-08 08:13:33.695489 a9ecd330-81ff-494d-81d3-599e7c975164 {"md5": "03c1d7e6e7fbe51a86fc49cdf0964ded", "pid": "000140899", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/14089-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14089-2", "source": "GND"}], "variant_name": ["Columbia University. African Law Center", "African Law Center", "Columbia University. African Law Center"], "preferred_name": "African Law Center", "country_associated": "xxu", "variant_access_point": ["Columbia University. African Law Center", "African Law Center. New York, NY", "Columbia University. New York, NY. African Law Center"], "authorized_access_point": "African Law Center"} 1 -2023-07-08 08:13:34.71833 2023-07-08 08:13:34.718343 76d64f34-3c16-4ee4-917f-0cf47ba791ac {"md5": "f6b8b8281cf8f302d976d852c1d8fce2", "pid": "00037959X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/37959-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/37959-1", "source": "GND"}], "variant_name": ["Société Mycologique", "SMF"], "preferred_name": "Société Mycologique de France", "country_associated": "fr", "variant_access_point": ["Société Mycologique", "SMF. Abkuerzung"], "authorized_access_point": "Société Mycologique de France"} 1 -2023-07-08 08:13:33.791931 2023-07-08 08:13:33.791941 9bc5b257-92ca-4fe1-8b43-fb9e3e671f01 {"md5": "2435f8574d81d258321cc959066b1bdf", "pid": "00014388X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/14388-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14388-1", "source": "GND"}], "variant_name": ["Univerzitet u Nišu. Pravno-Ekonomski Fakultet", "Pravno-Ekonomski Fakultet", "Pravni Fakultet"], "preferred_name": "Univerzitet u Nišu. Pravni Fakultet", "variant_access_point": ["Univerzitet u Nišu. Pravno-Ekonomski Fakultet", "Pravno-Ekonomski Fakultet. Univerzitet u Nišu", "Pravni Fakultet. Univerzitet u Nišu"], "parallel_access_point": ["Университет у Нишу. Правни Факултет"], "authorized_access_point": "Univerzitet u Nišu. Pravni Fakultet"} 1 -2023-07-08 08:13:33.88612 2023-07-08 08:13:33.88613 e4b76e3e-80c7-4833-a806-0f6dea117740 {"md5": "7a7cfe1b6b5aad023d048715efa784be", "pid": "000151408", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/15140-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/15140-3", "source": "GND"}], "variant_name": ["Deutsche Akademie der Wissenschaften. Klasse für Medizinische Wissenschaften. Sektion für Geschwulstkrankheiten"], "preferred_name": "Deutsche Akademie der Wissenschaften. Sektion für Geschwulstkrankheiten", "variant_access_point": ["Deutsche Akademie der Wissenschaften. Berlin, Ost. Klasse für Medizinische Wissenschaften. Sektion für Geschwulstkrankheiten"], "date_of_establishment": "1951", "authorized_access_point": "Deutsche Akademie der Wissenschaften. Berlin, Ost. Sektion für Geschwulstkrankheiten"} 1 -2023-07-08 08:13:33.983951 2023-07-08 08:13:33.983963 dc772294-d12d-4902-ba85-bdcd5b04472d {"md5": "549de30aa1ea1e36475b822d21e83cff", "pid": "000161632", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16163-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16163-9", "source": "GND"}], "variant_name": ["Universidade de São Paulo. Instituto Oceanográfico"], "preferred_name": "Instituto Oceanográfico", "country_associated": "bl", "variant_access_point": ["Universidade de São Paulo. Instituto Oceanográfico"], "authorized_access_point": "Instituto Oceanográfico. São Paulo"} 1 -2023-07-08 08:13:34.066772 2023-07-08 08:13:34.06678 65142ed3-e3c4-4be8-be99-99126cf33841 {"md5": "610b2fbf8420322a0498e7860a997fa6", "pid": "000163791", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16379-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16379-X", "source": "GND"}], "preferred_name": "Queen Elizabeth Medical Centre", "country_associated": "xxk", "authorized_access_point": "Queen Elizabeth Medical Centre. Birmingham"} 1 -2023-07-08 08:13:34.171335 2023-07-08 08:13:34.171348 8d5221f9-b7c8-4c81-99c7-f7c7ad035547 {"md5": "fb2c84a7b88259e3c4851522862f8986", "pid": "000167088", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16708-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16708-3", "source": "GND"}], "preferred_name": "Seminar für Umweltschutz", "authorized_access_point": "Seminar für Umweltschutz"} 1 -2023-07-08 08:13:34.283567 2023-07-08 08:13:34.28358 82996468-7ad0-4aa3-a5e8-abd379e95054 {"md5": "39d770fc81045f70a75e61f29a57c1cd", "pid": "000175978", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/17597-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/17597-3", "source": "GND"}], "variant_name": ["Auskunftsbureau der Deutschen Bibliotheken", "Öffentliche Wissenschaftliche Bibliothek. Auskunftsbüro der Deutschen Bibliotheken", "Deutsche Staatsbibliothek. Auskunftsbüro der Deutschen Bibliotheken"], "preferred_name": "Auskunftsbüro der Deutschen Bibliotheken", "variant_access_point": ["Auskunftsbureau der Deutschen Bibliotheken", "Öffentliche Wissenschaftliche Bibliothek. Auskunftsbüro der Deutschen Bibliotheken", "Deutsche Staatsbibliothek. Auskunftsbüro der Deutschen Bibliotheken"], "date_of_establishment": "1905", "authorized_access_point": "Auskunftsbüro der Deutschen Bibliotheken"} 1 -2023-07-08 08:13:34.414291 2023-07-08 08:13:34.414294 5b2cc2f4-ab71-48eb-8bc0-8159f472e97f {"md5": "3813aae61d5d0609c11aa1995ea16e86", "pid": "000178020", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/17802-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/17802-0", "source": "GND"}], "preferred_name": "Verband Rheinischer Landwirtschaftlicher Genossenschaften", "country_associated": "gw", "authorized_access_point": "Verband Rheinischer Landwirtschaftlicher Genossenschaften"} 1 -2023-07-08 08:13:34.477217 2023-07-08 08:13:34.477223 d514b0bf-6d5d-4db3-ad63-dfa902d1f469 {"md5": "4225b1954a5dd06487889277bf2fe4e8", "pid": "000193364", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/19336-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/19336-7", "source": "GND"}], "variant_name": ["Obervolta. Ministère du Plan du Développement Rural, de l'Environnement et du Tourisme. Organisme Regional de Développement du Sudouest", "Organisme Regional de Développement du Sudouest"], "preferred_name": "Obervolta. Organisme Regional de Développement du Sudouest", "variant_access_point": ["Obervolta. Ministère du Plan du Développement Rural, de l'Environnement et du Tourisme. Organisme Regional de Développement du Sudouest", "Organisme Regional de Développement du Sudouest. Obervolta"], "authorized_access_point": "Obervolta. Organisme Regional de Développement du Sudouest"} 1 -2023-07-08 08:13:34.540886 2023-07-08 08:13:34.540892 ef7a8d2d-02c7-4937-86fc-b0bb8a9be5bd {"md5": "22dfcebeb1daafd798ce80d25d16c2b7", "pid": "000250422", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/25042-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/25042-9", "source": "GND"}], "preferred_name": "Universität zu Köln. Studentenausschuss", "country_associated": "gw", "authorized_access_point": "Universität zu Köln. Studentenausschuss"} 1 -2023-07-08 08:13:34.629848 2023-07-08 08:13:34.629858 c0c173f8-b6fa-4849-a84c-f7cbe9eb09b7 {"md5": "ec1820b8e14e7282a55b7d91e073ce8f", "pid": "000269905", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/26990-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/26990-6", "source": "GND"}], "variant_name": ["Association for Psychoanalysis", "Association for Psychoanalysis"], "preferred_name": "Philadelphia Association for Psychoanalysis", "country_associated": "xxu", "variant_access_point": ["Association for Psychoanalysis. Philadelphia, Pa.", "Association for Psychoanalysis. Philadelphia, PA"], "authorized_access_point": "Philadelphia Association for Psychoanalysis"} 1 -2023-07-08 08:13:34.805789 2023-07-08 08:13:34.8058 0645750d-1e76-4810-a84e-6f5889dca8b1 {"md5": "6879c632427db007367d92d794984836", "pid": "000390003", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/39000-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/39000-8", "source": "GND"}], "variant_name": ["Stiftung Museum für Hamburgische Geschichte", "Muzeum Historii Hamburga", "Museum of Hamburg History", "Sammlung Hamburgischer Altertümer"], "preferred_name": "Museum für Hamburgische Geschichte", "variant_access_point": ["Stiftung Museum für Hamburgische Geschichte", "Muzeum Historii Hamburga", "Museum of Hamburg History", "Sammlung Hamburgischer Altertümer"], "date_of_establishment": "2016", "authorized_access_point": "Museum für Hamburgische Geschichte"} 1 -2023-07-08 08:13:34.902476 2023-07-08 08:13:34.902488 a11a2b7b-7ed8-492f-a624-d4d4977f8590 {"md5": "b38d558d49f1d3e9004f85527ec61907", "pid": "000409928", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/40992-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/40992-3", "source": "GND"}], "variant_name": ["Catholic Psychological Association"], "preferred_name": "American Catholic Psychological Association", "country_associated": "xxu", "variant_access_point": ["Catholic Psychological Association. USA"], "authorized_access_point": "American Catholic Psychological Association"} 1 -2023-07-08 08:13:34.989741 2023-07-08 08:13:34.989754 8fb67962-3970-496d-ade0-a2ddf459450c {"md5": "65fd0c58ce33a9fa4f61975319dfbf70", "pid": "000425729", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/42572-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/42572-2", "source": "GND"}], "variant_name": ["SAF", "SAF", "S.A.F."], "preferred_name": "Society of American Foresters", "country_associated": "xxu", "variant_access_point": ["SAF. Abkuerzung", "SAF. Society of American Foresters", "S.A.F.. Society of American Foresters"], "authorized_access_point": "Society of American Foresters"} 1 -2023-07-08 08:13:35.088567 2023-07-08 08:13:35.088775 ab1c0863-674f-4dc6-b022-ad19a38d6d4b {"md5": "c3c5068b06210d264fb9a127ee297d26", "pid": "000438049", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/43804-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/43804-2", "source": "GND"}], "variant_name": ["Institut für Militärstrategische Grundlagenforschung"], "preferred_name": "Landesverteidigungsakademie. Institut für Militärstrategische Grundlagenforschung", "country_associated": "au", "date_of_termination": "1975", "variant_access_point": ["Institut für Militärstrategische Grundlagenforschung. Landesverteidigungsakademie"], "authorized_access_point": "Landesverteidigungsakademie. Institut für Militärstrategische Grundlagenforschung"} 1 -2023-07-08 08:13:35.181714 2023-07-08 08:13:35.181729 3e02b56b-d5d0-42b5-a8e2-2b8bd1da47ac {"md5": "d0bb23f7247a0eb047cf7d95356562e9", "pid": "000441678", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/44167-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/44167-3", "source": "GND"}], "variant_name": ["Freie Sozialistische Jugend", "FSJ", "Sozialistische Jugend Deutschlands"], "preferred_name": "Freie Sozialistische Jugend Deutschlands", "date_of_termination": "18.10.1919", "variant_access_point": ["Freie Sozialistische Jugend", "FSJ. Abkuerzung", "Sozialistische Jugend Deutschlands"], "date_of_establishment": "26.10.1918", "authorized_access_point": "Freie Sozialistische Jugend Deutschlands"} 1 -2023-07-08 08:13:35.289713 2023-07-08 08:13:35.289726 9836ae89-050e-4e80-b607-00f0f63d2087 {"md5": "89767478fef1f22ab44e68a2dfc25aab", "pid": "00045561X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/45561-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/45561-1", "source": "GND"}], "preferred_name": "San Francisco Bay Area Women in the Technical Trades", "country_associated": "xxu", "authorized_access_point": "San Francisco Bay Area Women in the Technical Trades"} 1 -2023-07-08 08:13:35.387338 2023-07-08 08:13:35.387349 17dbd017-14c8-413f-b778-2fbc6e6fda6c {"md5": "e5ef55ce78563b411ad49d776d02f138", "pid": "000549568", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/54956-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/54956-3", "source": "GND"}], "preferred_name": "Indian Agricultural Research Institute. Library", "country_associated": "ii", "authorized_access_point": "Indian Agricultural Research Institute. Library"} 1 -2023-07-08 08:13:35.477959 2023-07-08 08:13:35.477969 0e9ee567-47d7-4d87-a79a-078637da61c7 {"md5": "c2b8646d34b64fe8806efdb1fd93c090", "pid": "000555851", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/55585-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/55585-X", "source": "GND"}], "variant_name": ["Polska Akademia Nauk. Komisja Metalurgiczno-Odlewnicza", "Komisja Metalurgiczno-Odlewnicza", "Polska Akademia Nauk. Oddział w Krakowie. Commission of Metallurgy and Foundry", "Polska Akademia Nauk. Komissija Metallurgii i Litejnogo Dela", "Polska Akademia Nauk. Metallurgo-Litejnaja Komissija", "Commission of Metallurgy and Foundry", "Komissija Metallurgii i Litejnogo Dela", "Metallurgo-Litejnaja Komissija", "Polska Akademia Nauk. Oddział w Krakowie. Metallurgo-Litejnaja Komissija", "Polska Akademia Nauk. Oddział w Krakowie. Komissija Metallurgii i Litejnogo Dela"], "preferred_name": "Polska Akademia Nauk. Oddział w Krakowie. Komisja Metalurgiczno-Odlewnicza", "country_associated": "pl", "variant_access_point": ["Polska Akademia Nauk. Komisja Metalurgiczno-Odlewnicza", "Komisja Metalurgiczno-Odlewnicza", "Polska Akademia Nauk. Oddział w Krakowie. Commission of Metallurgy and Foundry", "Polska Akademia Nauk. Komissija Metallurgii i Litejnogo Dela", "Polska Akademia Nauk. Metallurgo-Litejnaja Komissija", "Commission of Metallurgy and Foundry", "Komissija Metallurgii i Litejnogo Dela. Warschau", "Metallurgo-Litejnaja Komissija", "Polska Akademia Nauk. Oddział w Krakowie. Metallurgo-Litejnaja Komissija", "Polska Akademia Nauk. Oddział w Krakowie. Komissija Metallurgii i Litejnogo Dela"], "authorized_access_point": "Polska Akademia Nauk. Oddział w Krakowie. Komisja Metalurgiczno-Odlewnicza"} 1 -2023-07-08 08:13:41.661247 2023-07-08 08:13:41.661263 2170b0a3-13fc-436d-b56d-9c63e5695dea {"md5": "8cef79e945a9c863cfcf8bd4888d0d2a", "pid": "002215942", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/221594-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/221594-9", "source": "GND"}], "variant_name": ["Serviço Sanitario"], "preferred_name": "São Paulo. Serviço Sanitario", "country_associated": "bl", "variant_access_point": ["Serviço Sanitario. São Paulo, Staat"], "authorized_access_point": "São Paulo. Staat. Serviço Sanitario"} 1 -2023-07-08 08:13:35.572163 2023-07-08 08:13:35.572169 707e1246-d514-4caf-a7fc-a87db011b3f1 {"md5": "a88f11f4236d505519d74aabbe2e8aca", "pid": "000602140", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/60214-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/60214-0", "source": "GND"}], "variant_name": ["International Conference on Plasma Science, IEEE", "IEEE International Conference on Plasma Science", "Plasma Science", "ICOPS", "IEEE ICOPS", "ICOPS Conference"], "preferred_name": "International Conference on Plasma Science", "variant_access_point": ["International Conference on Plasma Science, IEEE", "IEEE International Conference on Plasma Science", "Plasma Science. International Conference", "ICOPS. International Conference on Plasma Science", "IEEE ICOPS. Institute of Electrical and Electronics Engineers International Conference on Plasma Science", "ICOPS Conference"], "authorized_access_point": "International Conference on Plasma Science"} 1 -2023-07-08 08:13:35.668529 2023-07-08 08:13:35.668537 87c3711c-1e58-4659-add6-b3b27b3b0d89 {"md5": "2007e82c0fff491882569569aaaf7f70", "pid": "000613258", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/61325-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/61325-3", "source": "GND"}], "variant_name": ["NOC"], "preferred_name": "Nuttall Ornithological Club", "country_associated": "xxu", "variant_access_point": ["NOC. Nuttall Ornithological Club. Abkuerzung"], "date_of_establishment": "1873", "authorized_access_point": "Nuttall Ornithological Club"} 1 -2023-07-08 08:13:35.769304 2023-07-08 08:13:35.769313 4086ceca-0591-43a6-807b-6bd31c236d61 {"md5": "84ccff5edccc98294f9afd1978d6fca2", "pid": "000613665", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/61366-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/61366-6", "source": "GND"}], "preferred_name": "Conference on Rare Earth Research", "authorized_access_point": "Conference on Rare Earth Research"} 1 -2023-07-08 08:13:35.86946 2023-07-08 08:13:35.869466 c4cb15e7-7ba5-4cf5-8702-40f756841a28 {"md5": "0ae1cbaba91fe637a8caf6df93dfb46a", "pid": "000662348", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/66234-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/66234-3", "source": "GND"}], "variant_name": ["Société d'études paléontologiques et palethnographiques de Provence"], "preferred_name": "Société d'Etudes Paléontologiques et Palethnographiques de Provence", "country_associated": "fr", "variant_access_point": ["Société d'études paléontologiques et palethnographiques de Provence"], "date_of_establishment": "1948", "authorized_access_point": "Société d'Etudes Paléontologiques et Palethnographiques de Provence"} 1 -2023-07-08 08:13:35.987952 2023-07-08 08:13:35.987966 d7dcefeb-1d91-4bff-ab47-301a907598af {"md5": "75da66c3291eefb1d2352648f77d0f5b", "pid": "000666394", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/66639-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/66639-7", "source": "GND"}], "variant_name": ["CICIG"], "preferred_name": "International Geophysical Committee. Commissione Italiana", "country_associated": "it", "variant_access_point": ["CICIG. Abkuerzung"], "authorized_access_point": "International Geophysical Committee. Commissione Italiana"} 1 -2023-07-08 08:13:36.116245 2023-07-08 08:13:36.116257 74ff5027-804b-4cc5-8d2f-8d0af7dde79e {"md5": "dfc7a0d495fc697edbd0cf05154b6bac", "pid": "000746568", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/74656-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/74656-3", "source": "GND"}], "preferred_name": "Höhere Bürgerschule", "date_of_termination": "1892", "date_of_establishment": "1889", "authorized_access_point": "Höhere Bürgerschule. Cottbus"} 1 -2023-07-08 08:13:36.229712 2023-07-08 08:13:36.229725 d7cca89a-ca9e-4c0d-8590-a8f9c509866c {"md5": "af849434bad375854de99b930d7ea223", "pid": "00074669X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/74669-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/74669-1", "source": "GND"}], "variant_name": ["Gewerbeverein", "Handwerkerverband"], "preferred_name": "Gewerbeverein und Handwerkerverband", "variant_access_point": ["Gewerbeverein. Mannheim, Gewerbeverein und Handwerkerverband", "Handwerkerverband. Mannheim"], "authorized_access_point": "Gewerbeverein und Handwerkerverband. Mannheim"} 1 -2023-07-08 08:13:36.335218 2023-07-08 08:13:36.335232 061bfd88-f18c-422a-a4fe-1304c552d136 {"md5": "a40dca2fcdb00857fedfd246f16c10df", "pid": "000749915", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/74991-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/74991-6", "source": "GND"}], "variant_name": ["Cancernet"], "preferred_name": "Krebsliteratur-Informationsdienst Cancernet", "country_associated": "gw", "variant_access_point": ["Cancernet. Heidelberg"], "authorized_access_point": "Krebsliteratur-Informationsdienst Cancernet. Heidelberg"} 1 -2023-07-08 08:13:36.458084 2023-07-08 08:13:36.458096 cf30a718-4afd-443d-8b25-39a472372b5d {"md5": "5092769b32a14abfd77f41a49f788f9f", "pid": "000821829", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/82182-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/82182-2", "source": "GND"}], "variant_name": ["Auxiliary Bible Society"], "preferred_name": "Calcutta Auxiliary Bible Society", "country_associated": "ii", "variant_access_point": ["Auxiliary Bible Society. Kalkutta"], "authorized_access_point": "Calcutta Auxiliary Bible Society"} 1 -2023-07-08 08:13:36.570875 2023-07-08 08:13:36.570888 54bd8603-5549-4bbb-af44-3efd6dc8d0da {"md5": "7c633773f8f83e589ac418d981325ffc", "pid": "000827673", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/82767-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/82767-8", "source": "GND"}], "preferred_name": "Technische Hochschule München. Brautechnische Abteilung", "date_of_establishment": "1930,3.Juli", "authorized_access_point": "Technische Hochschule München. Brautechnische Abteilung", "biographical_information": ["Sitz: Weihenstephan"]} 1 -2023-07-08 08:14:25.413224 2023-07-08 08:14:25.413233 b879d546-dba3-4848-b82c-0268aa3ff21c {"md5": "29a88e31b38a55d8d65b8d55a4d7918b", "pid": "055842941", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16264841-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16264841-8", "source": "GND"}], "preferred_name": "Meeting on Adrenergic Mechanisms", "authorized_access_point": "Meeting on Adrenergic Mechanisms. 11, 2003, Porto"} 1 -2023-07-08 08:13:36.708617 2023-07-08 08:13:36.708628 0e9c33f4-923d-4d70-bf76-463a7afd451c {"md5": "f91d441e56437f3491f6c57cd143a825", "pid": "000837318", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/83731-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/83731-3", "source": "GND"}], "variant_name": ["Longman, Green, Longman, Roberts & Green", "Longman and Co.", "Messrs. Longman, Green, Longman, Roberts and Green", "Green, Longman, Roberts and Green, Longman", "Roberts and Green, Longman, Green, Longman"], "preferred_name": "Longman, Green, Longman, Roberts and Green", "country_associated": "xxk", "date_of_termination": "1865", "variant_access_point": ["Longman, Green, Longman, Roberts & Green", "Longman and Co.. London, Longman, Green, Longman, Roberts and Green", "Messrs. Longman, Green, Longman, Roberts and Green. London", "Green, Longman, Roberts and Green, Longman. London", "Roberts and Green, Longman, Green, Longman. London"], "date_of_establishment": "1862", "authorized_access_point": "Longman, Green, Longman, Roberts and Green. London"} 1 -2023-07-08 08:13:36.828499 2023-07-08 08:13:36.828505 49279664-0c7f-46e2-b58e-53b6757b159f {"md5": "8d9f4bcb947962b1c9bad428eab8f06b", "pid": "000842362", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/84236-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/84236-9", "source": "GND"}], "variant_name": ["Türk ve Islâm Sanʹatları Tarihi Enstitüsü", "Ankara Üniversitesi. İlâhiyat Fakültesi. Türk ve Islâm San'atları Tarihi Enstitüsü", "Institute of History of Turkish and Islamic Arts", "Ankara Üniversitesi. Institute of History of Turkish and Islamic Arts", "Ankara Üniversitesi. İlâhiyat Fakültesi. Institute of History of Turkish and Islamic Arts", "Ankara Üniversitesi. Türk ve Islâm Sanʹatları Enstitüsü", "Türk ve Islâm Sanʹatları Enstitüsü", "Ankara Üniversitesi. İlâhiyat Fakültesi. Türk ve Islâm Tarihi Enstitüsü"], "preferred_name": "Ankara Üniversitesi. Türk ve Islâm Sanʹatları Tarihi Enstitüsü", "country_associated": "tu", "variant_access_point": ["Türk ve Islâm Sanʹatları Tarihi Enstitüsü", "Ankara Üniversitesi. İlâhiyat Fakültesi. Türk ve Islâm San'atları Tarihi Enstitüsü", "Institute of History of Turkish and Islamic Arts", "Ankara Üniversitesi. Institute of History of Turkish and Islamic Arts", "Ankara Üniversitesi. İlâhiyat Fakültesi. Institute of History of Turkish and Islamic Arts", "Ankara Üniversitesi. Türk ve Islâm Sanʹatları Enstitüsü", "Türk ve Islâm Sanʹatları Enstitüsü", "Ankara Üniversitesi. İlâhiyat Fakültesi. Türk ve Islâm Tarihi Enstitüsü"], "authorized_access_point": "Ankara Üniversitesi. Türk ve Islâm Sanʹatları Tarihi Enstitüsü"} 1 -2023-07-08 08:13:36.927796 2023-07-08 08:13:36.92781 5782071d-02fb-4c92-a212-26d4a3d4ac4e {"md5": "7162020b3bfb00b8fa10ece1296c4826", "pid": "000844470", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/84447-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/84447-0", "source": "GND"}], "preferred_name": "Evangelische Gemeinde", "country_associated": "au", "authorized_access_point": "Evangelische Gemeinde. Turn"} 1 -2023-07-08 08:13:37.027105 2023-07-08 08:13:37.027115 7af382b3-d250-4473-a68e-26fa95fc3b60 {"md5": "13daee6fe3171c2d584ed0380a84b656", "pid": "000903515", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/90351-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/90351-6", "source": "GND"}], "variant_name": ["Budapesti Műszaki Egyetem. Faculty of Electrical Engineering", "Villamosmérnöki Kar", "Faculty of Electrical Engineering"], "preferred_name": "Budapesti Műszaki Egyetem. Villamosmérnöki Kar", "country_associated": "hu", "variant_access_point": ["Budapesti Műszaki Egyetem. Faculty of Electrical Engineering", "Villamosmérnöki Kar. Budapest", "Faculty of Electrical Engineering. Budapest"], "authorized_access_point": "Budapesti Műszaki Egyetem. Villamosmérnöki Kar"} 1 -2023-07-08 08:13:37.157338 2023-07-08 08:13:37.15735 ee34f08c-d0b3-48fd-a852-8c3906529fd4 {"md5": "a81c77fd9744b86f35aa0ba97c82fea6", "pid": "000907820", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/90782-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/90782-0", "source": "GND"}], "variant_name": ["Geometer-Verein", "Württemb. Geometer-Verein"], "preferred_name": "Württembergischer Geometer-Verein", "variant_access_point": ["Geometer-Verein. Württemberg", "Württemb. Geometer-Verein"], "authorized_access_point": "Württembergischer Geometer-Verein"} 1 -2023-07-08 08:13:37.268297 2023-07-08 08:13:37.271862 a20847d5-c4f8-4d3a-8386-5e5f14124eaf {"md5": "542760bd7c270c493dde3665839fa179", "pid": "001106767", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/110676-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/110676-4", "source": "GND"}], "preferred_name": "United Presbyterian Church in the USA. Department of History", "country_associated": "xxu", "authorized_access_point": "United Presbyterian Church in the USA. Department of History"} 1 -2023-07-08 08:13:37.369186 2023-07-08 08:13:37.369201 69164848-7b13-42f8-9665-9b2733029ea3 {"md5": "6982cab6137c49b1edff77ccbfe3e034", "pid": "001116371", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/111637-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/111637-X", "source": "GND"}], "variant_name": ["Kredit-Verein"], "preferred_name": "Credit-Verein", "date_of_termination": "1879", "variant_access_point": ["Kredit-Verein. Altona"], "authorized_access_point": "Credit-Verein. Altona"} 1 -2023-07-08 08:13:37.483293 2023-07-08 08:13:37.483306 30e5020a-0592-4bdb-ade8-8ea732398e13 {"md5": "2cb0351fa1cc6adb1b699edfc015bb5c", "pid": "00112207X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/112207-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/112207-1", "source": "GND"}], "variant_name": ["PIMA", "PIMA", "P.I.M.A.", "American Pulp and Paper Mill Superintendents Association"], "preferred_name": "Paper Industry Management Association", "country_associated": "xxu", "variant_access_point": ["PIMA. Abkuerzung", "PIMA. Paper Industry Management Association", "P.I.M.A.", "American Pulp and Paper Mill Superintendents Association"], "authorized_access_point": "Paper Industry Management Association"} 1 -2023-07-08 08:16:33.200743 2023-07-08 08:16:33.200752 872812c1-edcb-4d5d-92cb-92cb7b3d37a9 {"md5": "b7bb3316000a7b777d880e34f28a2224", "pid": "123686719X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/123686719X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/123686719X", "source": "GND"}], "preferred_name": "Baron, Werner", "authorized_access_point": "Baron, Werner"} 1 -2023-07-08 08:13:37.600327 2023-07-08 08:13:37.600342 ef0f181f-e989-4ce9-8eca-a6a6c6d00d53 {"md5": "ae79e383ae8584861d1390e20987b3ae", "pid": "001148028", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/114802-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/114802-3", "source": "GND"}], "variant_name": ["Occupational Safety and Health Review Commission", "OSAHRC"], "preferred_name": "USA. Occupational Safety and Health Review Commission", "country_associated": "xxu", "variant_access_point": ["Occupational Safety and Health Review Commission. USA", "OSAHRC. Abkuerzung"], "authorized_access_point": "USA. Occupational Safety and Health Review Commission"} 1 -2023-07-08 08:13:37.701633 2023-07-08 08:13:37.701636 cc5af25a-f92b-46bf-a56d-c38d27234d83 {"md5": "41727055458b73ddda4a0ecff2bd0c9b", "pid": "001156373", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/115637-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/115637-8", "source": "GND"}], "preferred_name": "Reichspostdirektion", "authorized_access_point": "Reichspostdirektion. Potsdam"} 1 -2023-07-08 08:13:37.787727 2023-07-08 08:13:37.787751 f177ed24-fa19-4371-a6cb-595a99addc75 {"md5": "7a21f3054c2d73312006b0e507437fea", "pid": "001170325", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/117032-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/117032-6", "source": "GND"}], "variant_name": ["Library", "Būhār Library", "Būhār Library", "Imperial Library"], "preferred_name": "Imperial Library", "country_associated": "ii", "variant_access_point": ["Library. Kalkutta", "Būhār Library. Kalkutta", "Būhār Library", "Imperial Library. Ehemalige Vorzugsbenennung SWD"], "authorized_access_point": "Imperial Library. Kalkutta"} 1 -2023-07-08 08:13:37.884299 2023-07-08 08:13:37.884312 42b9f8b5-7949-41c1-b662-bf81a0365630 {"md5": "c634602120ed39d227457d7d05193939", "pid": "001183834", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/118383-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/118383-7", "source": "GND"}], "variant_name": ["Auswanderer-Mission"], "preferred_name": "Auswanderermission", "variant_access_point": ["Auswanderer-Mission. Bremen"], "date_of_establishment": "1918", "authorized_access_point": "Auswanderermission. Bremen"} 1 -2023-07-08 08:13:37.981045 2023-07-08 08:13:37.981059 84d97d2a-8daf-47ba-bebf-37cd4465267e {"md5": "9b39c20080a2bfb7aa5af6b041794769", "pid": "001187813", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/118781-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/118781-8", "source": "GND"}], "preferred_name": "Verein zur Förderung der Heimatforschung und des Heimatmuseums für die Prignitz in Heiligengrabe", "authorized_access_point": "Verein zur Förderung der Heimatforschung und des Heimatmuseums für die Prignitz in Heiligengrabe"} 1 -2023-07-08 08:13:38.086555 2023-07-08 08:13:38.086561 b7ebfb36-98b9-4e88-874a-735b35ac1857 {"md5": "ac20007dca9990bdc7a05a67ae057bee", "pid": "001192396", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/119239-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/119239-5", "source": "GND"}], "variant_name": ["Golf Union"], "preferred_name": "British Golf Union", "country_associated": "xxk", "variant_access_point": ["Golf Union. Großbritannien"], "authorized_access_point": "British Golf Union"} 1 -2023-07-08 08:13:38.193382 2023-07-08 08:13:38.193388 56dec152-929a-4967-8ddc-84f4859eeca4 {"md5": "32a0830e990c66b4aab533db0ba8c335", "pid": "001226355", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/122635-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/122635-6", "source": "GND"}], "variant_name": ["Igazságügyminisztérium", "Ungarn. Ministry of Justice", "Ministry of Justice", "Ungarn. Igazságügyminisztérium", "Igazságügyi Minisztérium", "Ungarn. Justizministerium", "Justizministerium", "Ungarn. Igazságügyi Minisztérium. Hauptabteilung für Wissenschaft und Information", "Ungarn. Igazságügyministerium", "Magyar Királyi Igazságügyministerium", "Királyi Igazságügyministerium", "Igazságügyministerium", "Magyar Királyi Igazságügyminisztérium", "Királyi Igazságügyminisztérium", "Ungarn. Igazságügyi Minisztérium. Jogi Informatikai Főosztály", "Ungarn. Igazságügyi Minisztérium. Tudományos és Tájékoztatási Főosztály", "Ungarn. Igazságügyi Minisztérium. Törvényelökészítő Főosztály", "Kir. Igazságügyminiszterium", "M. Kir. Igazságügyminiszterium", "Königlich Ungarisches Justizministerium", "Königliches Ungarisches Justizministerium"], "preferred_name": "Ungarn. Igazságügyi Minisztérium", "country_associated": "hu", "variant_access_point": ["Igazságügyminisztérium. Ungarn", "Ungarn. Ministry of Justice", "Ministry of Justice. Ungarn", "Ungarn. Igazságügyminisztérium", "Igazságügyi Minisztérium. Ungarn", "Ungarn. Justizministerium. Ehemalige Vorzugsbenennung SWD", "Justizministerium. Ungarn", "Ungarn. Igazságügyi Minisztérium. Hauptabteilung für Wissenschaft und Information", "Ungarn. Igazságügyministerium", "Magyar Királyi Igazságügyministerium", "Királyi Igazságügyministerium. Ungarn", "Igazságügyministerium. Ungarn", "Magyar Királyi Igazságügyminisztérium", "Királyi Igazságügyminisztérium. Ungarn", "Ungarn. Igazságügyi Minisztérium. Jogi Informatikai Főosztály", "Ungarn. Igazságügyi Minisztérium. Tudományos és Tájékoztatási Főosztály", "Ungarn. Igazságügyi Minisztérium. Törvényelökészítő Főosztály", "Kir. Igazságügyminiszterium. Ungarn", "M. Kir. Igazságügyminiszterium", "Königlich Ungarisches Justizministerium", "Königliches Ungarisches Justizministerium"], "authorized_access_point": "Ungarn. Igazságügyi Minisztérium"} 1 -2023-07-08 08:13:38.305395 2023-07-08 08:13:38.305409 1d952ec0-9e73-44a6-8d58-720253ddb053 {"md5": "9acc69293bfdfdb5fad9e1ef596e8e9b", "pid": "00122722X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/122722-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/122722-1", "source": "GND"}], "preferred_name": "Société Académique des Sciences, Arts, Belles-Lettres, Agriculture et Industrie", "country_associated": "fr", "authorized_access_point": "Société Académique des Sciences, Arts, Belles-Lettres, Agriculture et Industrie. Saint-Quentin"} 1 -2023-07-08 08:13:38.41461 2023-07-08 08:13:38.414615 7fa1cc99-0a6e-4097-a2ae-34671cd16a42 {"md5": "43384e94b5dbedff115c099a4826fc1f", "pid": "001247697", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/124769-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124769-4", "source": "GND"}], "variant_name": ["Secretaría de Estado de Fomento, Obras Públicas y Riego"], "preferred_name": "Dominikanische Republik. Secretaría de Fomento, Obras Públicas y Riego", "variant_access_point": ["Secretaría de Estado de Fomento, Obras Públicas y Riego. Dominikanische Republik"], "authorized_access_point": "Dominikanische Republik. Secretaría de Fomento, Obras Públicas y Riego"} 1 -2023-07-08 08:13:38.525262 2023-07-08 08:13:38.525274 12e9c0dd-5a08-4c3a-b183-99571d426af4 {"md5": "37000712dca8467ba5a6a08873200fbd", "pid": "001277936", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/127793-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/127793-5", "source": "GND"}], "variant_name": ["Völkerbund. Financial Organisation"], "preferred_name": "Financial Organisation", "variant_access_point": ["Völkerbund. Financial Organisation"], "authorized_access_point": "Financial Organisation"} 1 -2023-07-08 08:13:48.438825 2023-07-08 08:13:48.438835 5b3d7265-3e6c-4cc2-acd9-643dfe0b4d08 {"md5": "760c47f75d21b4cc25bf1a35f6de9fa6", "pid": "004112148", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1019393-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1019393-5", "source": "GND"}], "preferred_name": "Institute of Public Administration", "country_associated": "xxu", "authorized_access_point": "Institute of Public Administration. New York, NY"} 1 -2023-07-08 08:13:38.624908 2023-07-08 08:13:38.624917 f6db1ed6-205d-42f7-849c-e95478af245f {"md5": "758cd10cc18ec79313b0d8bfa45929b4", "pid": "001279858", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/127985-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/127985-3", "source": "GND"}], "variant_name": ["Bureau of Industrial Alcohol"], "preferred_name": "USA. Bureau of Industrial Alcohol", "country_associated": "xxu", "variant_access_point": ["Bureau of Industrial Alcohol. USA"], "date_of_establishment": "1930", "authorized_access_point": "USA. Bureau of Industrial Alcohol"} 1 -2023-07-08 08:13:38.731796 2023-07-08 08:13:38.731808 9efb59df-b391-4256-beae-a18d07667b95 {"md5": "c41de4f3532ed7dd60ee7641f4e0d17e", "pid": "001282891", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/128289-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128289-X", "source": "GND"}], "preferred_name": "Elsinore Conference", "authorized_access_point": "Elsinore Conference"} 1 -2023-07-08 08:13:38.832811 2023-07-08 08:13:38.83282 cf733921-bc80-4a2c-b7a8-601521b03687 {"md5": "2a66ab546c83bd74648409551a26216b", "pid": "001284150", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/128415-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128415-0", "source": "GND"}], "preferred_name": "Rijksstation voor Zeevisserij", "country_associated": "be", "authorized_access_point": "Rijksstation voor Zeevisserij. Ostende"} 1 -2023-07-08 08:13:38.938993 2023-07-08 08:13:38.939 b7e92def-2b30-4c24-8000-cd1ae6966e2a {"md5": "209a3c31feabd2c646e85f3ed2832d72", "pid": "001299662", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/129966-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129966-9", "source": "GND"}], "variant_name": ["Shizuoka-Daigaku. Faculty of Engineering", "Kōgakubu", "Faculty of Engineering"], "preferred_name": "Shizuoka-Daigaku. Kōgakubu", "country_associated": "ja", "variant_access_point": ["Shizuoka-Daigaku. Faculty of Engineering", "Kōgakubu. Shizuoka", "Faculty of Engineering. Shizuoka"], "authorized_access_point": "Shizuoka-Daigaku. Kōgakubu"} 1 -2023-07-08 08:13:39.050068 2023-07-08 08:13:39.050078 8e413a45-ede0-4579-9949-71d18d42a8d0 {"md5": "ccbf5df2b298f4a9a3210b5fd6f7447d", "pid": "001303317", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/130331-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/130331-4", "source": "GND"}], "variant_name": ["Sympozjum SPD"], "preferred_name": "Sympozjum Symulacja Procesow Dynamicznych", "variant_access_point": ["Sympozjum SPD"], "authorized_access_point": "Sympozjum Symulacja Procesow Dynamicznych"} 1 -2023-07-08 08:13:39.145757 2023-07-08 08:13:39.145769 6d0edb64-7bee-4a94-a4ad-f5a8fca48213 {"md5": "445a59cabbdc24fe7f4ace96e5343c2b", "pid": "001306634", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/130663-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/130663-7", "source": "GND"}], "variant_name": ["Soveščanie po Poljarografičeskomu Analizu"], "preferred_name": "Vsesojuznoe Soveščanie po Poljarografičeskomu Analizu", "variant_access_point": ["Soveščanie po Poljarografičeskomu Analizu"], "authorized_access_point": "Vsesojuznoe Soveščanie po Poljarografičeskomu Analizu"} 1 -2023-07-08 08:13:39.261125 2023-07-08 08:13:39.261135 f2794716-ffaa-4d50-99d3-62c42eec6dee {"md5": "9c2f4c07a8153ffca5c951e4839a5f55", "pid": "001330578", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/133057-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133057-3", "source": "GND"}], "preferred_name": "Oettinger Heimatland e.V.", "country_associated": "gw", "authorized_access_point": "Oettinger Heimatland e.V."} 1 -2023-07-08 08:13:39.373343 2023-07-08 08:13:39.373354 1ea05250-ba8a-44c8-a659-fc11e45787e8 {"md5": "0256e1b5385676def91ce69c771cc0d1", "pid": "001371924", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/137192-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/137192-7", "source": "GND"}], "variant_name": ["Naučno-Techničeskaja Konferencija po Primeneniju Radioaktivnych i Stabil'nych Izotopov i Izlučenij v Narodnom Chozjajstve i Nauke"], "preferred_name": "Vsesojuznaja Naučno-Techničeskaja Konferencija po Primeneniju Radioaktivnych i Stabil'nych Izotopov i Izlučenij v Narodnom Chozjajstve i Nauke", "variant_access_point": ["Naučno-Techničeskaja Konferencija po Primeneniju Radioaktivnych i Stabil'nych Izotopov i Izlučenij v Narodnom Chozjajstve i Nauke"], "authorized_access_point": "Vsesojuznaja Naučno-Techničeskaja Konferencija po Primeneniju Radioaktivnych i Stabil'nych Izotopov i Izlučenij v Narodnom Chozjajstve i Nauke"} 1 -2023-07-08 08:13:39.471579 2023-07-08 08:13:39.471589 5e12630c-fe4c-4643-9156-33a3d7511772 {"md5": "27cd666c29cc8df19d84c06fcbfc0153", "pid": "001376136", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/137613-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/137613-5", "source": "GND"}], "variant_name": ["Staatlicher mathematisch-physikalischer Salon. Forschungsstelle"], "preferred_name": "Staatlicher Mathematisch-Physikalischer Salon. Forschungsstelle", "variant_access_point": ["Staatlicher mathematisch-physikalischer Salon. Dresden. Forschungsstelle"], "authorized_access_point": "Staatlicher Mathematisch-Physikalischer Salon. Dresden. Forschungsstelle"} 1 -2023-07-08 08:13:39.575512 2023-07-08 08:13:39.575521 5d420204-d017-4997-8753-8607455d3b89 {"md5": "09cb13e2bf77092e1011784bf9c778f2", "pid": "001378600", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/137860-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/137860-0", "source": "GND"}], "preferred_name": "Reichsarbeitsgemeinschaft Holz", "authorized_access_point": "Reichsarbeitsgemeinschaft Holz"} 1 -2023-07-08 08:13:40.505735 2023-07-08 08:13:40.505748 e03a9084-52b7-438d-9127-b8d71b646c93 {"md5": "43d6209135dca86bbfc9cce9ae4da32c", "pid": "002111748", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/211174-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/211174-3", "source": "GND"}], "variant_name": ["Amt für Strukturverbesserung", "Moers. Amt für Strukturverbesserung"], "preferred_name": "Landkreis Moers. Amt für Strukturverbesserung", "country_associated": "gw", "variant_access_point": ["Amt für Strukturverbesserung. Landkreis Moers", "Moers. Kreis. Amt für Strukturverbesserung. Alte Ansetzungsform"], "authorized_access_point": "Landkreis Moers. Amt für Strukturverbesserung"} 1 -2023-07-08 08:13:39.671753 2023-07-08 08:13:39.671764 c1066440-cd43-4443-a665-a735fbe6aa53 {"md5": "f7caeeb061e89e9ac16793c8a07bdb89", "pid": "001381504", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/138150-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/138150-7", "source": "GND"}], "variant_name": ["Lithographisches Institut", "Königl. Lith. Institut", "Königl. Lithographisches Institut", "Kngl. lith. Inst."], "preferred_name": "Königliches Lithographisches Institut", "variant_access_point": ["Lithographisches Institut. Berlin", "Königl. Lith. Institut. Berlin", "Königl. Lithographisches Institut. Berlin", "Kngl. lith. Inst."], "date_of_establishment": "1818", "authorized_access_point": "Königliches Lithographisches Institut. Berlin", "biographical_information": ["Sitz: Berlin {1823-1830}"]} 1 -2023-07-08 08:13:39.767701 2023-07-08 08:13:39.767709 c11ab3fd-370c-4d76-a416-692d28318e37 {"md5": "e331c2e79d0e9def28dc258faa375a20", "pid": "001434756", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/143475-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143475-5", "source": "GND"}], "variant_name": ["European Organization for Quality Control. Automobil-Abteilung", "European Organization for Quality Control. Section Automobile"], "preferred_name": "European Organization for Quality Control. Automotive Section", "variant_access_point": ["European Organization for Quality Control. Automobil-Abteilung", "European Organization for Quality Control. Section Automobile"], "authorized_access_point": "European Organization for Quality Control. Automotive Section"} 1 -2023-07-08 08:13:39.895385 2023-07-08 08:13:39.895396 601cc1dd-79f8-45d8-b2a4-656210807918 {"md5": "deae06984ea3a87c49559502364a2dc6", "pid": "001436872", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/143687-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143687-9", "source": "GND"}], "variant_name": ["Institute of Botany", "Zhongguo-Kexueyuan. Zhiwu-Yanjiusuo", "Zhongguo-Kexueyuan. Institute of Botany", "Chih-wu-yen-chiu-so", "Zhi wu yan jiu suo", "中国科学院. 植物研究所", "植物研究所", "植物研究所"], "preferred_name": "Zhiwu-Yanjiusuo", "country_associated": "cc", "variant_access_point": ["Institute of Botany. Zhiwu-Yanjiusuo", "Zhongguo-Kexueyuan. Zhiwu-Yanjiusuo. Peking", "Zhongguo-Kexueyuan. Institute of Botany. Peking", "Chih-wu-yen-chiu-so. Peking", "Zhi wu yan jiu suo. Bei jing", "中国科学院. 北京. 植物研究所", "植物研究所. 北京", "植物研究所. 北京"], "parallel_access_point": ["中國科學院植物研究所"], "authorized_access_point": "Zhiwu-Yanjiusuo. Peking"} 1 -2023-07-08 08:13:39.987146 2023-07-08 08:13:39.987157 6917b768-f10d-4369-a9b9-76b402060577 {"md5": "00cbca4b3cfbe1b427443dc2f256ff23", "pid": "001453459", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/145345-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/145345-2", "source": "GND"}], "variant_name": ["Annual Connector Conference", "Connector Symposium", "Symposium on Electrical and Electronic Connectors", "INTERNEPCON Connector Symposium", "Annual Connector Symposium", "Annual Symposium on Electrical and Electronic Connectors"], "preferred_name": "Connector Conference", "variant_access_point": ["Annual Connector Conference", "Connector Symposium, INTERNEPCON", "Symposium on Electrical and Electronic Connectors", "INTERNEPCON Connector Symposium", "Annual Connector Symposium, Connector Conference", "Annual Symposium on Electrical and Electronic Connectors"], "authorized_access_point": "Connector Conference"} 1 -2023-07-08 08:13:40.084305 2023-07-08 08:13:40.084317 16e3c8b8-3081-4973-8874-7517f9715c43 {"md5": "3c33ae04812f454e9fd31a2d65c0f74a", "pid": "001457101", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/145710-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/145710-X", "source": "GND"}], "preferred_name": "Modern Foreign Language Study", "authorized_access_point": "Modern Foreign Language Study"} 1 -2023-07-08 08:13:40.19342 2023-07-08 08:13:40.193435 32dc1dbb-8908-4f78-9b28-8d2da58625d5 {"md5": "87b50b0db96b797007e4325286f7b125", "pid": "002004526", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/200452-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/200452-5", "source": "GND"}], "variant_name": ["Kongreß für Aktuelle Medizin"], "preferred_name": "Stuttgarter Kongreß für Aktuelle Medizin", "variant_access_point": ["Kongreß für Aktuelle Medizin, Stuttgart"], "authorized_access_point": "Stuttgarter Kongreß für Aktuelle Medizin"} 1 -2023-07-08 08:13:40.307443 2023-07-08 08:13:40.307449 89ae09b0-0d93-4a6c-8615-42c5287730c6 {"md5": "a56008c6e742a7991a1c6af437f9066e", "pid": "002102536", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/210253-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/210253-5", "source": "GND"}], "preferred_name": "Akademischer Turnverein. Altherrenkommission", "authorized_access_point": "Akademischer Turnverein. Berlin. Altherrenkommission"} 1 -2023-07-08 08:13:40.399777 2023-07-08 08:13:40.399791 b4892e2c-d8cf-4c1b-9dc3-9be6ce36e091 {"md5": "e4db138bad47959df16135aaa00319fc", "pid": "00210637X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/210637-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/210637-1", "source": "GND"}], "variant_name": ["Ika-Daigaku", "Kyōto Prefectural Medical University", "Prefectural Medical University", "Kyōto Prefectural University of Medicine", "Prefectural University of Medicine", "Medical University", "University of Medicine", "Kyōto-Furitsu-Ika-Daigaku", "キョウト フリツ イカ ダイガク"], "preferred_name": "Kyōto Furitsu Ika Daigaku", "country_associated": "ja", "variant_access_point": ["Ika-Daigaku. Kyōto, Kyōto-Furitsu-Ika-Daigaku", "Kyōto Prefectural Medical University", "Prefectural Medical University. Kyōto", "Kyōto Prefectural University of Medicine", "Prefectural University of Medicine. Kyōto", "Medical University. Kyōto", "University of Medicine. Kyōto", "Kyōto-Furitsu-Ika-Daigaku", "キョウト フリツ イカ ダイガク"], "parallel_access_point": ["京都府立医科大学"], "authorized_access_point": "Kyōto Furitsu Ika Daigaku"} 1 -2023-07-08 08:14:10.435061 2023-07-08 08:14:10.435074 3f55c9c5-2185-475d-b57d-39ce71dd530d {"md5": "e75d96b9b771fa950568fa2b302deaad", "pid": "008186596", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/818659-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/818659-5", "source": "GND"}], "preferred_name": "International Quantum Electronics Conference, 8", "country_associated": "xxu", "authorized_access_point": "International Quantum Electronics Conference, 8, 1974, San Francisco, Calif."} 1 -2023-07-08 08:13:40.61379 2023-07-08 08:13:40.613799 3f546042-8388-48f2-9bcb-69b51149a451 {"md5": "c5603451bbe9869eb1995d7129a1346c", "pid": "002128683", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/212868-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/212868-8", "source": "GND"}], "variant_name": ["IEEE Applied Magnetics Workshop on Magnetic Recording"], "preferred_name": "Applied Magnetics Workshop on Magnetic Recording", "variant_access_point": ["IEEE Applied Magnetics Workshop on Magnetic Recording"], "authorized_access_point": "Applied Magnetics Workshop on Magnetic Recording"} 1 -2023-07-08 08:13:40.716845 2023-07-08 08:13:40.716854 a148dda2-c6c4-4e3a-94e9-5dd433995194 {"md5": "dc90fdbea3f8f0880b6b9cb10219457b", "pid": "002148323", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/214832-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/214832-8", "source": "GND"}], "variant_name": ["Paediatric Society", "SPS"], "preferred_name": "Singapore Paediatric Society", "country_associated": "si", "variant_access_point": ["Paediatric Society. Singapur", "SPS. Abkuerzung"], "authorized_access_point": "Singapore Paediatric Society"} 1 -2023-07-08 08:13:40.813565 2023-07-08 08:13:40.813577 b7fb5def-f99e-4ff6-8fec-c94d6a613fae {"md5": "063781688bea67b75b3ee327f0249d93", "pid": "002149176", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/214917-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/214917-5", "source": "GND"}], "preferred_name": "North American Gymnastic Union. Normal College", "country_associated": "xxu", "authorized_access_point": "North American Gymnastic Union. Normal College"} 1 -2023-07-08 08:13:40.919093 2023-07-08 08:13:40.919106 7dd45afc-04f7-4901-a8c2-d4da7fd1c685 {"md5": "09539075f72e37fcadef47ff3f44ac48", "pid": "002150492", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/215049-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/215049-9", "source": "GND"}], "preferred_name": "Kreis der Rheinischen Heimatfreunde", "authorized_access_point": "Kreis der Rheinischen Heimatfreunde"} 1 -2023-07-08 08:13:41.034578 2023-07-08 08:13:41.034584 6351e6cf-e230-4413-a51d-cca61a5c9a34 {"md5": "ba7d109d0b825049ae5ec0eac48e075c", "pid": "002153912", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/215391-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/215391-9", "source": "GND"}], "variant_name": ["Workshop on Computer and the Handicapped", "Annual Workshop on Computers and the Handicapped"], "preferred_name": "Workshop on Computers and the Handicapped", "variant_access_point": ["Workshop on Computer and the Handicapped", "Annual Workshop on Computers and the Handicapped"], "authorized_access_point": "Workshop on Computers and the Handicapped"} 1 -2023-07-08 08:13:41.143703 2023-07-08 08:13:41.143714 81e69767-6410-4b38-8b48-58e295e94906 {"md5": "bc6be8c6b8057cbaaada9e5e66ced196", "pid": "002156954", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/215695-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/215695-7", "source": "GND"}], "variant_name": ["Lampe, Bankhaus Hermann"], "preferred_name": "Bankhaus Hermann Lampe", "country_associated": "gw", "variant_access_point": ["Lampe, Bankhaus Hermann. Bielefeld"], "authorized_access_point": "Bankhaus Hermann Lampe. Bielefeld"} 1 -2023-07-08 08:13:41.258992 2023-07-08 08:13:41.259003 1beac0b3-5d89-4522-8d77-c2040f3fa186 {"md5": "8db9f69047b7f3fdbc4e3242d2029722", "pid": "002171260", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/217126-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/217126-0", "source": "GND"}], "preferred_name": "Amalgamated Union of Engineering and Foundry Workers. Foundry Section", "country_associated": "xxk", "date_of_termination": "1970", "date_of_establishment": "1968", "authorized_access_point": "Amalgamated Union of Engineering and Foundry Workers. Foundry Section"} 1 -2023-07-08 08:13:41.349884 2023-07-08 08:13:41.349894 28fdfc10-408d-4da9-884d-cd26dfbde671 {"md5": "08cb6fe1b5681570314d7f17cf5b05e5", "pid": "002210819", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/221081-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/221081-2", "source": "GND"}], "variant_name": ["Venezuela. Ministerio de Educación. Dirección General de Educación Básica y Media Diversificada", "Dirección General de Educación Básica y Media Diversificada"], "preferred_name": "Venezuela. Dirección General de Educación Básica y Media Diversificada", "country_associated": "ve", "variant_access_point": ["Venezuela. Ministerio de Educación. Dirección General de Educación Básica y Media Diversificada", "Dirección General de Educación Básica y Media Diversificada. Venezuela"], "authorized_access_point": "Venezuela. Dirección General de Educación Básica y Media Diversificada", "biographical_information": ["Sitz: Caracas"]} 1 -2023-07-08 08:13:41.435282 2023-07-08 08:13:41.435293 5e71a519-a94e-45b4-b970-a6a7a85620de {"md5": "30c5210a1b5267114162bbf557abefef", "pid": "00221153X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/221153-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/221153-1", "source": "GND"}], "variant_name": ["Confédération des Educateurs Américains", "Confederación de Educadores Americanos", "CEA"], "preferred_name": "Confederation of American Educators", "variant_access_point": ["Confédération des Educateurs Américains", "Confederación de Educadores Americanos", "CEA. Abkuerzung"], "authorized_access_point": "Confederation of American Educators"} 1 -2023-07-08 08:13:41.547917 2023-07-08 08:13:41.547931 b6953f32-390a-4994-8a1c-3c63cd156107 {"md5": "744412f6587e486df047bd767fe39eae", "pid": "00221167X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/221167-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/221167-1", "source": "GND"}], "variant_name": ["Dirección Nacional de Programación Presupuestaria", "Argentinien. Secretaría de Hacienda. Dirección Nacional de Programación Presupuestaria"], "preferred_name": "Argentinien. Dirección Nacional de Programación Presupuestaria", "country_associated": "ag", "variant_access_point": ["Dirección Nacional de Programación Presupuestaria. Argentinien", "Argentinien. Secretaría de Hacienda. Dirección Nacional de Programación Presupuestaria"], "authorized_access_point": "Argentinien. Dirección Nacional de Programación Presupuestaria"} 1 -2023-07-08 08:13:41.769836 2023-07-08 08:13:41.769844 7ebd0074-0da0-4c18-af98-a95ccdeb07e4 {"md5": "b43aaa876e3f8dadd1cf2520ddc5db25", "pid": "002356368", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/235636-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/235636-3", "source": "GND"}], "variant_name": ["Zen Symposium", "International Zen Symposium", "Kyoto International Zen Symposium", "Kyoto Zen Symposium", "Zen Symposium", "International Zen Symposium"], "preferred_name": "International Symposium for Religious Philosophy", "country_associated": "ja", "variant_access_point": ["Zen Symposium, Kyōto", "International Zen Symposium, Kyōto", "Kyoto International Zen Symposium", "Kyoto Zen Symposium", "Zen Symposium. Kyoto", "International Zen Symposium. Kyoto"], "authorized_access_point": "International Symposium for Religious Philosophy"} 1 -2023-07-08 08:13:41.867671 2023-07-08 08:13:41.867679 7228b015-03e0-441d-9f4f-c514a900bed6 {"md5": "44dc14b36e64c9761d99eff08e41c085", "pid": "00236266X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/236266-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/236266-1", "source": "GND"}], "variant_name": ["Gewerbschule"], "preferred_name": "Gewerbeschule", "variant_access_point": ["Gewerbschule. Heidelberg"], "authorized_access_point": "Gewerbeschule. Heidelberg", "biographical_information": ["Gegr. 1828"]} 1 -2023-07-08 08:13:41.967093 2023-07-08 08:13:41.967103 8584915d-88ed-43b2-9cab-ac75e88a3b34 {"md5": "7ce171d5f3fcadc6b39b71ea40ac810f", "pid": "002362880", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/236288-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/236288-0", "source": "GND"}], "variant_name": ["Heidelberger Reichsfestspiele"], "preferred_name": "Reichsfestspiele Heidelberg", "variant_access_point": ["Heidelberger Reichsfestspiele"], "authorized_access_point": "Reichsfestspiele Heidelberg"} 1 -2023-07-08 08:13:42.069302 2023-07-08 08:13:42.069312 7ff6e73e-79ad-4cf6-837d-f939395f295b {"md5": "d6bb403163bc7bdd48089db20a5d7a62", "pid": "002407612", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/240761-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/240761-9", "source": "GND"}], "preferred_name": "Institute in Technical and Organizational Communication", "authorized_access_point": "Institute in Technical and Organizational Communication"} 1 -2023-07-08 08:13:42.17686 2023-07-08 08:13:42.17687 0121e5bf-3784-49d5-a26d-c4700a5112bb {"md5": "9fee180aa32e2b2abf79b2698b6a9b44", "pid": "002411083", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/241108-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/241108-8", "source": "GND"}], "variant_name": ["Annual ACM Symposium on Principles of Programming Languages", "ACM Symposium on Principles of Programming Languages", "ACM SIGPLAN-SIGACT Symposium on Principles of Programming Languages", "POPL"], "preferred_name": "Symposium on Principles of Programming Languages", "variant_access_point": ["Annual ACM Symposium on Principles of Programming Languages", "ACM Symposium on Principles of Programming Languages", "ACM SIGPLAN-SIGACT Symposium on Principles of Programming Languages", "POPL"], "authorized_access_point": "Symposium on Principles of Programming Languages"} 1 -2023-07-08 08:13:42.294849 2023-07-08 08:13:42.294859 bc24ef37-e0e5-47df-b2ae-41a5f6afc525 {"md5": "7528e8e705c6a132c8c5eadb5bcd75df", "pid": "002413957", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/241395-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/241395-4", "source": "GND"}], "preferred_name": "Symposium on Computer Applications in Petroleum Exploration", "country_associated": "xxu", "authorized_access_point": "Symposium on Computer Applications in Petroleum Exploration, 1969, Dallas, Tex."} 1 -2023-07-08 08:13:42.417733 2023-07-08 08:13:42.417746 24ab14f1-5bb9-4737-964b-de00fb1ac284 {"md5": "2b57341db4e7097d0f0e1315aebbe4f8", "pid": "002447797", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/244779-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/244779-4", "source": "GND"}], "variant_name": ["ICAP"], "preferred_name": "International Conference on Automobile Pollution", "country_associated": "xxc", "variant_access_point": ["ICAP"], "authorized_access_point": "International Conference on Automobile Pollution, 1972, Toronto"} 1 -2023-07-08 08:13:42.513562 2023-07-08 08:13:42.513574 85d7f626-1df6-45ff-9390-e9872d2c9559 {"md5": "10eb393f6420d2908c802ed552e5e7ad", "pid": "002461102", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/246110-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/246110-9", "source": "GND"}], "preferred_name": "Workshop on Scale Control in Geothermal Energy Extraction Systems", "country_associated": "xxu", "authorized_access_point": "Workshop on Scale Control in Geothermal Energy Extraction Systems, 1977, Los Alamos, NM"} 1 -2023-07-08 08:13:42.608486 2023-07-08 08:13:42.608499 41a75eb8-3a8f-4755-acf2-cd862e96abdd {"md5": "ba5ed0372dd65254c6779af67b4afd73", "pid": "002476738", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/247673-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/247673-3", "source": "GND"}], "preferred_name": "Session on Comparative Epidemiology", "authorized_access_point": "Session on Comparative Epidemiology, 1978, München"} 1 -2023-07-08 08:13:42.697997 2023-07-08 08:13:42.698011 2f44b66e-2a16-471c-b02d-adcf807a332c {"md5": "9ae90a82f37a45646c8c24f676bcea16", "pid": "002529041", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/252904-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/252904-X", "source": "GND"}], "variant_name": ["Computer Center"], "preferred_name": "University of Georgia. Computer Center", "country_associated": "xxu", "variant_access_point": ["Computer Center. University of Georgia"], "authorized_access_point": "University of Georgia. Computer Center"} 1 -2023-07-08 08:13:49.57703 2023-07-08 08:13:49.577044 930c11a6-7daf-47df-aa5e-9ef92e1204b0 {"md5": "c8e422c0afddfd3c5432ad78153a85ec", "pid": "00418484X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1029441-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1029441-7", "source": "GND"}], "variant_name": ["Archaeological Rescue Unit"], "preferred_name": "Kent Archaeological Rescue Unit", "country_associated": "xxk", "variant_access_point": ["Archaeological Rescue Unit. Kent"], "authorized_access_point": "Kent Archaeological Rescue Unit"} 1 -2023-07-08 08:13:42.802261 2023-07-08 08:13:42.802274 23b16821-c41b-4fc3-b3cd-0fcb3cd543bf {"md5": "ff90294d313fa9f1f915a0f116032d72", "pid": "002530937", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/253093-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/253093-4", "source": "GND"}], "variant_name": ["Institut national de la statistique et des études économiques. Observatoire économique de la Bourgogne", "INSEE-OEB", "Institut national de la statistique et des études économiques. Observatoire économique de Bourgogne"], "preferred_name": "Observatoire économique de la Bourgogne", "country_associated": "fr", "variant_access_point": ["Institut national de la statistique et des études économiques. Frankreich. Observatoire économique de la Bourgogne", "INSEE-OEB. Abkuerzung", "Institut national de la statistique et des études économiques. Frankreich. Observatoire économique de Bourgogne"], "authorized_access_point": "Observatoire économique de la Bourgogne"} 1 -2023-07-08 08:13:42.912394 2023-07-08 08:13:42.912408 73f494a4-bb6e-4a77-ac06-625c785d3708 {"md5": "130ca541dd834b71cb8febc58b8a1881", "pid": "002531844", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/253184-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/253184-7", "source": "GND"}], "variant_name": ["Fortbildungsschultag"], "preferred_name": "Deutscher Fortbildungsschultag", "variant_access_point": ["Fortbildungsschultag. Deutsches Reich"], "authorized_access_point": "Deutscher Fortbildungsschultag"} 1 -2023-07-08 08:13:43.026571 2023-07-08 08:13:43.02658 2efda238-571c-4990-b49a-f670cc9a346a {"md5": "203073a427866271d8e1ded939d95633", "pid": "002537966", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/253796-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/253796-5", "source": "GND"}], "variant_name": ["Australian Canned Fruits Board", "Canned Fruits Board"], "preferred_name": "Australien. Canned Fruits Board", "country_associated": "at", "date_of_termination": "1979", "variant_access_point": ["Australian Canned Fruits Board", "Canned Fruits Board. Australien"], "date_of_establishment": "1938", "authorized_access_point": "Australien. Canned Fruits Board"} 1 -2023-07-08 08:13:43.136768 2023-07-08 08:13:43.136776 44b981c8-6c91-49be-95c1-ffa7b0a68390 {"md5": "2a1cbe9ed0b57ae776cb9083a712303e", "pid": "002546329", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/254632-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/254632-2", "source": "GND"}], "variant_name": ["Institut Agricole et des Services de Recherches et d'Expérimentation Agricoles d'Algérie"], "preferred_name": "Institut Agricole d'Algérie", "country_associated": "ae", "variant_access_point": ["Institut Agricole et des Services de Recherches et d'Expérimentation Agricoles d'Algérie. Maison-Carrée"], "authorized_access_point": "Institut Agricole d'Algérie. Maison-Carrée"} 1 -2023-07-08 08:13:43.252791 2023-07-08 08:13:43.2528 c742d45d-d9ad-472f-8673-ba7c4b632dc8 {"md5": "c75508e5aae2756facab745665befa00", "pid": "002602555", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/260255-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/260255-6", "source": "GND"}], "variant_name": ["Universitetet. Botanisk Museum og Botanisk Hage", "Botanisk Hage", "Botanisk Museum", "Bergens Museum. Botanisk Museum og Botanisk Hage", "Bergens Museum. Botanisk Hage", "Botanical Garden", "Hortus Botanicus", "Botanisk Institutt. Botanical Garden", "Botanisk Institutt. Hortus Botanicus", "Botanisk Institutt. Botanisk Hage", "Botanisk Institutt. Botanisk Museum og Botanisk Hage", "Universitetet. Botanical Garden", "Universitetet. Hortus Botanicus", "Bergens Museum. Botanical Garden", "Bergens Museum. Hortus Botanicus", "Botanischer Garten", "Bergens Museum. Botanischer Garten", "Botanisk Institutt. Botanischer Garten", "Universitetet. Botanischer Garten"], "preferred_name": "Botanisk Museum og Botanisk Hage", "country_associated": "no", "date_of_termination": "1996", "variant_access_point": ["Universitetet. Bergen. Botanisk Museum og Botanisk Hage", "Botanisk Hage. Bergen", "Botanisk Museum. Bergen", "Bergens Museum. Botanisk Museum og Botanisk Hage", "Bergens Museum. Botanisk Hage", "Botanical Garden. Bergen", "Hortus Botanicus. Bergen", "Botanisk Institutt. Bergen. Botanical Garden", "Botanisk Institutt. Bergen. Hortus Botanicus", "Botanisk Institutt. Bergen. Botanisk Hage", "Botanisk Institutt. Bergen. Botanisk Museum og Botanisk Hage", "Universitetet. Bergen. Botanical Garden", "Universitetet. Bergen. Hortus Botanicus", "Bergens Museum. Botanical Garden", "Bergens Museum. Hortus Botanicus", "Botanischer Garten. Bergen", "Bergens Museum. Botanischer Garten", "Botanisk Institutt. Bergen. Botanischer Garten", "Universitetet. Bergen. Botanischer Garten"], "authorized_access_point": "Botanisk Museum og Botanisk Hage. Bergen"} 1 -2023-07-08 08:13:43.364178 2023-07-08 08:13:43.364191 6cf04410-7458-4db5-ba04-d3285d7015d1 {"md5": "38cff12782224076698849483591c454", "pid": "002606232", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/260623-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/260623-9", "source": "GND"}], "variant_name": ["Natural History Society"], "preferred_name": "Thirsk Natural History Society", "country_associated": "xxk", "variant_access_point": ["Natural History Society. Thirsk"], "authorized_access_point": "Thirsk Natural History Society"} 1 -2023-07-08 08:13:43.483623 2023-07-08 08:13:43.483631 4a05b7e5-d32a-413f-8041-05bfe0fa6f8b {"md5": "c3620f1ac650193ecf4daf33fdfad721", "pid": "00260955X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/260955-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/260955-1", "source": "GND"}], "preferred_name": "University of Leeds. Botany Department", "country_associated": "xxk", "date_of_termination": "1971", "authorized_access_point": "University of Leeds. Botany Department"} 1 -2023-07-08 08:13:43.60895 2023-07-08 08:13:43.608961 90fb83f1-7b21-4a7e-bc86-2c84c9e9074a {"md5": "95e5bc4a2b1a6dc5ff5323acf7aeca7a", "pid": "002610922", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/261092-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/261092-9", "source": "GND"}], "variant_name": ["Arboretum Michaestiensis", "Staţiunea. Arboretumul", "Staţiunea. Arboretum Michaestiensis", "Staţiunea Experimentală Arges. Arboretumul", "Staţiunea Experimentală Arges. Arboretum Michaestiensis"], "preferred_name": "Arboretumul", "country_associated": "rm", "variant_access_point": ["Arboretum Michaestiensis", "Staţiunea. Piteşti. Arboretumul", "Staţiunea. Piteşti. Arboretum Michaestiensis", "Staţiunea Experimentală Arges. Piteşti. Arboretumul", "Staţiunea Experimentală Arges. Piteşti. Arboretum Michaestiensis"], "authorized_access_point": "Arboretumul. Mihăeşti"} 1 -2023-07-08 08:13:43.728762 2023-07-08 08:13:43.728774 2d28c193-d86e-49ee-b8ba-095bb032c051 {"md5": "87d425c66bc8b484f6c744c6fffcce3d", "pid": "002624508", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/262450-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/262450-3", "source": "GND"}], "variant_name": ["Experimentalfält", "Experimentalfält", "Kungliga Lantbruksakademiens Experiment- och Försöksverksamhet. Experimentalfältet", "Königliche Schwedische Akademie der Landwirtschaft. Experimentalfält"], "preferred_name": "Kungliga Lantbruksakademien. Experimentalfält", "country_associated": "sw", "variant_access_point": ["Experimentalfält. Stockholm", "Experimentalfält", "Kungliga Lantbruksakademiens Experiment- och Försöksverksamhet. Experimentalfältet", "Königliche Schwedische Akademie der Landwirtschaft. Experimentalfält. Ehemalige Vorzugsbenennung SWD"], "authorized_access_point": "Kungliga Lantbruksakademien. Stockholm. Experimentalfält"} 1 -2023-07-08 08:13:43.849307 2023-07-08 08:13:43.849319 86485ee6-8afc-4b82-9581-6f57839c3ad3 {"md5": "bf40da804fc02072a5599624f213a4d1", "pid": "002627019", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/262701-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/262701-2", "source": "GND"}], "variant_name": ["Evangelische Bibel-Gesellschaft für Litauen und Masuren"], "preferred_name": "Evangelische Bibel-Gesellschaft für Littauen und Masuren", "variant_access_point": ["Evangelische Bibel-Gesellschaft für Litauen und Masuren"], "authorized_access_point": "Evangelische Bibel-Gesellschaft für Littauen und Masuren"} 1 -2023-07-08 08:13:43.955409 2023-07-08 08:13:43.955418 5497aae0-d6c8-4cfc-aabc-dd238d38f79e {"md5": "f6302460814c469b47de3932b6acf352", "pid": "002740990", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/274099-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/274099-0", "source": "GND"}], "variant_name": ["Crop Reporting Service"], "preferred_name": "South Carolina Crop Reporting Service", "country_associated": "xxu", "variant_access_point": ["Crop Reporting Service. Clemson, SC"], "authorized_access_point": "South Carolina Crop Reporting Service. Clemson, SC"} 1 -2023-07-08 08:13:44.071023 2023-07-08 08:13:44.071036 d33735f0-7c04-4e64-bdb2-83949ba51362 {"md5": "9294ed962ab91677e24c93b0bfd10e3e", "pid": "002744759", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/274475-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/274475-2", "source": "GND"}], "variant_name": ["Wizara ya Ardhi, Nyumba na Maendeleo Mijini", "Tansania. Ministry of Lands, Housing and Urban Development", "Ministry of Lands, Housing and Urban Development"], "preferred_name": "Tansania. Wizara ya Ardhi, Nyumba na Maendeleo Mijini", "country_associated": "tz", "variant_access_point": ["Wizara ya Ardhi, Nyumba na Maendeleo Mijini. Tansania", "Tansania. Ministry of Lands, Housing and Urban Development", "Ministry of Lands, Housing and Urban Development. Tansania"], "date_of_establishment": "1968", "authorized_access_point": "Tansania. Wizara ya Ardhi, Nyumba na Maendeleo Mijini"} 1 -2023-07-08 08:13:44.19067 2023-07-08 08:13:44.190681 62a405be-51f0-4380-a50e-8c8e7c0f451d {"md5": "726d563d0b7607a18034d01c4e638aba", "pid": "002746387", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/274638-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/274638-4", "source": "GND"}], "preferred_name": "Technischer Überwachungsverein", "country_associated": "gw", "date_of_termination": "1965", "date_of_establishment": "1959", "authorized_access_point": "Technischer Überwachungsverein. Hamburg"} 1 -2023-07-08 08:13:44.300226 2023-07-08 08:13:44.300241 d78eed3d-fba9-4e7a-9327-98f3252fa6e0 {"md5": "58870d3e8e16ee3240ac976c04ec6eae", "pid": "00274659X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/274659-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/274659-1", "source": "GND"}], "variant_name": ["Samhälls- och Rättsvetenskapliga Forskningsråd", "Statens Samhälls- och Rättsvetenskapliga Forskningsråd"], "preferred_name": "Schweden. Samhälls- och Rättsvetenskapliga Forskningsråd", "country_associated": "sw", "date_of_termination": "1958", "variant_access_point": ["Samhälls- och Rättsvetenskapliga Forskningsråd. Schweden", "Statens Samhälls- och Rättsvetenskapliga Forskningsråd. Schweden"], "date_of_establishment": "1953", "authorized_access_point": "Schweden. Samhälls- och Rättsvetenskapliga Forskningsråd"} 1 -2023-07-08 08:13:44.461383 2023-07-08 08:13:44.461392 d50aec6d-ddac-474d-b4ec-cd9a2d0404c9 {"md5": "8fc9dc271df3fa4c40476d15b451ca62", "pid": "00275486X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/275486-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/275486-1", "source": "GND"}], "variant_name": ["National Electricity Board", "Malaya. Electricity Board", "Electricity Board"], "preferred_name": "Malaya. National Electricity Board", "country_associated": "my", "variant_access_point": ["National Electricity Board. Malaya, States of Malaya", "Malaya. States of Malaya. Electricity Board", "Electricity Board. Malaya, States of Malaya"], "authorized_access_point": "Malaya. States of Malaya. National Electricity Board"} 1 -2023-07-08 08:13:44.5604 2023-07-08 08:13:44.560414 31701e5d-520d-4794-a030-e8c653c60591 {"md5": "07ad05187aac329e7d5855698b828347", "pid": "002765187", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/276518-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/276518-4", "source": "GND"}], "variant_name": ["Bancotrans"], "preferred_name": "Banco Comercial Transatlántico", "country_associated": "sp", "date_of_termination": "1993", "variant_access_point": ["Bancotrans. Barcelona"], "date_of_establishment": "1950", "authorized_access_point": "Banco Comercial Transatlántico. Barcelona"} 1 -2023-07-08 08:13:44.683014 2023-07-08 08:13:44.683027 2afe4bf7-d605-4e22-ba28-5b4824c05dd5 {"md5": "a772d1c0ae1470e7cafb78591511bcf1", "pid": "00278064X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/278064-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/278064-1", "source": "GND"}], "variant_name": ["Generalzolldirektion", "Hamburg. Generalzolldirection", "Generalzolldirection"], "preferred_name": "Hamburg. Generalzolldirektion", "variant_access_point": ["Generalzolldirektion. Hamburg", "Hamburg. Generalzolldirection", "Generalzolldirection. Hamburg"], "authorized_access_point": "Hamburg. Generalzolldirektion"} 1 -2023-07-08 08:13:44.789541 2023-07-08 08:13:44.789547 6bafda62-092b-4afd-9348-5ed4aca1b11d {"md5": "2c842b1a956316f49ba06d719548bfd2", "pid": "002785684", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/278568-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/278568-7", "source": "GND"}], "variant_name": ["Institut d'Emission des Etats du Cambodge, du Laos et du Viêt-Nam. Service des Etudes"], "preferred_name": "Service des Etudes", "country_associated": "vm", "variant_access_point": ["Institut d'Emission des Etats du Cambodge, du Laos et du Viêt-Nam. Sài-gòn. Service des Etudes"], "date_of_establishment": "1954", "authorized_access_point": "Service des Etudes. Sài-gòn"} 1 -2023-07-08 08:14:12.96753 2023-07-08 08:14:12.967536 e58764fa-da74-4492-8dd7-9886b0b815f8 {"md5": "d97697ea143d5eff28a5093cf73000e1", "pid": "050053396", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5005339-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5005339-5", "source": "GND"}], "preferred_name": "Domgemeinde", "authorized_access_point": "Domgemeinde. Schwerin"} 1 -2023-07-08 08:13:44.904365 2023-07-08 08:13:44.90438 9d97fba3-123a-4ef5-a0dc-06fe698d5d71 {"md5": "103040ac891d1dd468f8197ba9cb0ab5", "pid": "002804077", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/280407-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/280407-4", "source": "GND"}], "variant_name": ["Frankfurtische Gesellschaft zur Beförderung Nützlicher Künste und Deren Hülfswissenschaften. Verein zur Beförderung des Garten- und Feldbaues"], "preferred_name": "Verein zur Beförderung des Garten- und Feldbaues", "variant_access_point": ["Frankfurtische Gesellschaft zur Beförderung Nützlicher Künste und Deren Hülfswissenschaften. Verein zur Beförderung des Garten- und Feldbaues"], "authorized_access_point": "Verein zur Beförderung des Garten- und Feldbaues. Frankfurt, Main"} 1 -2023-07-08 08:13:45.010164 2023-07-08 08:13:45.010172 713cd6c5-c4be-4e1b-a3d9-3e0732abd05e {"md5": "89aaa612a1e7b76d1bc7c0731b974463", "pid": "002903296", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/290329-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/290329-5", "source": "GND"}], "preferred_name": "Kilde", "country_associated": "no", "authorized_access_point": "Kilde. Voss"} 1 -2023-07-08 08:13:45.119097 2023-07-08 08:13:45.119105 c51c4894-dbef-483a-b579-708e727b853d {"md5": "be4ac301e83b7e1128a79e1196c9480e", "pid": "002910934", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/291093-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/291093-7", "source": "GND"}], "variant_name": ["Norges Tekniske Høgskole. Division of Construction Engineering"], "preferred_name": "Norges Tekniske Høgskole. Avdeling for Maskinkonstruksjon", "country_associated": "no", "variant_access_point": ["Norges Tekniske Høgskole. Division of Construction Engineering"], "authorized_access_point": "Norges Tekniske Høgskole. Avdeling for Maskinkonstruksjon"} 1 -2023-07-08 08:13:45.236492 2023-07-08 08:13:45.236506 88feb1d7-c254-4207-9038-6a1b37b2d932 {"md5": "9ca4f045e80ba8cd7aabf28560f65e25", "pid": "003006816", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/300681-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/300681-5", "source": "GND"}], "variant_name": ["Versehrten-Sportfest", "Versehrten-Sportfest"], "preferred_name": "Cannstatter Versehrten-Sportfest", "variant_access_point": ["Versehrten-Sportfest, Stuttgart- Bad Cannstatt", "Versehrten-Sportfest, Cannstatt"], "authorized_access_point": "Cannstatter Versehrten-Sportfest"} 1 -2023-07-08 08:13:45.342098 2023-07-08 08:13:45.342108 28725c86-a955-42e8-9cbb-c05b005bc578 {"md5": "76db1cd5518baeca972292d214103f5c", "pid": "003016617", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/301661-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/301661-4", "source": "GND"}], "preferred_name": "Linguistic Typology Symposium", "authorized_access_point": "Linguistic Typology Symposium"} 1 -2023-07-08 08:13:45.450067 2023-07-08 08:13:45.450082 758a0a90-eb6b-44a0-9f83-7dc7937815e4 {"md5": "156e9141e9c74ddfcdd94497f39362af", "pid": "003051986", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/305198-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/305198-5", "source": "GND"}], "variant_name": ["Cyclodextrins", "CD"], "preferred_name": "International Symposium on Cyclodextrins", "variant_access_point": ["Cyclodextrins. Symposium", "CD. Cyclodextrins, Symposium"], "authorized_access_point": "International Symposium on Cyclodextrins"} 1 -2023-07-08 08:13:45.566068 2023-07-08 08:13:45.566081 5e348fab-929f-4dd3-9f09-dc09d77d14f9 {"md5": "e29c368f50b2723a6db3a627a59d02bd", "pid": "003063976", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/306397-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/306397-5", "source": "GND"}], "preferred_name": "Metallgesellschaft. Chemisches Laboratorium", "country_associated": "gw", "authorized_access_point": "Metallgesellschaft. Chemisches Laboratorium"} 1 -2023-07-08 08:13:45.704066 2023-07-08 08:13:45.704075 208450c8-c874-416f-8791-3f7f9e0d8090 {"md5": "b019aceb9ad0ea526a6e11b37d13701d", "pid": "003071316", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/307131-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/307131-5", "source": "GND"}], "variant_name": ["NES"], "preferred_name": "Numerical Engineering Society", "country_associated": "xxk", "variant_access_point": ["NES. Abkuerzung"], "authorized_access_point": "Numerical Engineering Society"} 1 -2023-07-08 08:13:45.822647 2023-07-08 08:13:45.822653 dd5f3079-96be-46f9-a612-69637a9191b2 {"md5": "67d3d9192e47f36dadf0d5f2f54d1234", "pid": "003078434", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/307843-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/307843-7", "source": "GND"}], "preferred_name": "Fulmer Research Laboratories", "country_associated": "xxk", "authorized_access_point": "Fulmer Research Laboratories. Slough"} 1 -2023-07-08 08:13:45.927817 2023-07-08 08:13:45.927827 93b83ca3-dcbb-45a6-82b4-4c72e3cc9bb8 {"md5": "3932cb3b4fec3039fccde7151187370c", "pid": "003082725", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/308272-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/308272-6", "source": "GND"}], "variant_name": ["Reid Gas Conditioning Conference", "Annual Laurance Reid Gas Conditioning Conference"], "preferred_name": "Laurance Reid Gas Conditioning Conference", "variant_access_point": ["Reid Gas Conditioning Conference", "Annual Laurance Reid Gas Conditioning Conference"], "authorized_access_point": "Laurance Reid Gas Conditioning Conference"} 1 -2023-07-08 08:13:46.03759 2023-07-08 08:13:46.037602 18b368b7-62f6-453d-b982-e9636662c15c {"md5": "6bfae2816b41ee16e3a5aa7e27ad783b", "pid": "003202720", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/320272-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/320272-0", "source": "GND"}], "preferred_name": "Rewe-Südwest-Lebensmittel-Grosshandel eG", "country_associated": "gw", "date_of_termination": "1988", "date_of_establishment": "1977", "authorized_access_point": "Rewe-Südwest-Lebensmittel-Grosshandel eG. Pirmasens"} 1 -2023-07-08 08:13:46.161267 2023-07-08 08:13:46.16131 795f7468-7af7-453c-8dd2-e64a8b1d07b4 {"md5": "15087b1a254e127dfb5de4c5d3712dca", "pid": "003500950", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/350095-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/350095-0", "source": "GND"}], "variant_name": ["Symposium on Animal, Plant and Microbial Toxins"], "preferred_name": "American Symposium on Animal, Plant and Microbial Toxins", "country_associated": "xxu", "variant_access_point": ["Symposium on Animal, Plant and Microbial Toxins, USA"], "authorized_access_point": "American Symposium on Animal, Plant and Microbial Toxins"} 1 -2023-07-08 08:13:46.269104 2023-07-08 08:13:46.269112 82a215bb-a9f6-4627-9151-bc4987383300 {"md5": "e9182687ea73c7c908a315f16e1b6be1", "pid": "003700526", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/370052-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/370052-5", "source": "GND"}], "preferred_name": "Arbeiter-Turn- und -Sportbund. Kreis Nordwestdeutschland, Bremen, Oldenburg, Hannover. Fußballspielvereinigung", "authorized_access_point": "Arbeiter-Turn- und -Sportbund. Kreis Nordwestdeutschland, Bremen, Oldenburg, Hannover. Fußballspielvereinigung"} 1 -2023-07-08 08:13:46.406158 2023-07-08 08:13:46.406171 ced525e9-115c-415c-b08e-a89502e04394 {"md5": "51359621bee44c025bbaec1b92c14a15", "pid": "00370064X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/370064-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/370064-1", "source": "GND"}], "preferred_name": "Geschichtsfest", "authorized_access_point": "Geschichtsfest"} 1 -2023-07-08 08:13:46.499326 2023-07-08 08:13:46.49934 8d4af806-f78f-4d60-b271-de2ba11e3bf1 {"md5": "61a23ac818dd6d7f5d1ca3c3af03f3c0", "pid": "003806596", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/380659-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/380659-5", "source": "GND"}], "variant_name": ["Aboriginal Affairs Board"], "preferred_name": "South Australia. Aboriginal Affairs Board", "country_associated": "at", "variant_access_point": ["Aboriginal Affairs Board. South Australia"], "authorized_access_point": "South Australia. Aboriginal Affairs Board"} 1 -2023-07-08 08:13:46.602381 2023-07-08 08:13:46.602396 097e79be-e893-45f1-9a54-1c21877b841d {"md5": "64d89194f501e35d79b213e71d48af60", "pid": "003811840", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/381184-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/381184-0", "source": "GND"}], "preferred_name": "Belgrad. Reon, 3", "authorized_access_point": "Belgrad. Reon, 3"} 1 -2023-07-08 08:13:46.735258 2023-07-08 08:13:46.735269 5d8e7ea3-a78e-4c08-b129-fb04b6d5634d {"md5": "7a2ff9e0f953ba1ef37e4d6ff2f65123", "pid": "00381307X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/381307-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/381307-1", "source": "GND"}], "variant_name": ["Ministry of Local Government"], "preferred_name": "Eastern Nigeria. Ministry of Local Government", "country_associated": "nr", "variant_access_point": ["Ministry of Local Government. Eastern Nigeria"], "authorized_access_point": "Eastern Nigeria. Ministry of Local Government"} 1 -2023-07-08 08:13:46.854863 2023-07-08 08:13:46.854875 3de4d197-07ef-4708-8214-1b12d9d5e4d4 {"md5": "9e4b4f2909c7491dd99ae0475090299b", "pid": "004008294", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1001205-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1001205-9", "source": "GND"}], "variant_name": ["AUT"], "preferred_name": "Association of University Teachers", "country_associated": "xxk", "date_of_termination": "01.06.2006", "variant_access_point": ["AUT. Abkuerzung"], "date_of_establishment": "28.06.1919", "authorized_access_point": "Association of University Teachers"} 1 -2023-07-08 08:13:47.03397 2023-07-08 08:13:47.03398 2463f6b5-029c-4722-b5e4-4e4ec3c86e71 {"md5": "8384866a2ae1dda31a1443b7b6af2929", "pid": "004029763", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1005218-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1005218-5", "source": "GND"}], "variant_name": ["Magyar Szocialista Munkáspárt. Párttörténeti Intézet", "Magyar Szocialista Munkáspárt. Institut für Parteigeschichte", "Institut Istorii Partii", "Institut für Parteigeschichte"], "preferred_name": "Párttörténeti Intézet", "country_associated": "hu", "variant_access_point": ["Magyar Szocialista Munkáspárt. Párttörténeti Intézet", "Magyar Szocialista Munkáspárt. Institut für Parteigeschichte", "Institut Istorii Partii. Budapest", "Institut für Parteigeschichte. Budapest"], "authorized_access_point": "Párttörténeti Intézet. Budapest"} 1 -2023-07-08 08:13:47.180879 2023-07-08 08:13:47.180885 503ef057-4bb8-4557-be76-4b8bf93b37cd {"md5": "c8784e2a3e6120c0e63c85f7ed68a5fa", "pid": "004036239", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1006503-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1006503-9", "source": "GND"}], "preferred_name": "Nordic Meeting on Medical and Biological Engineering, 1", "authorized_access_point": "Nordic Meeting on Medical and Biological Engineering, 1, 1970, Otaniemi"} 1 -2023-07-08 08:13:47.285861 2023-07-08 08:13:47.285874 9fd749ae-4729-419e-b261-30de2fd0a1e1 {"md5": "fa892aa3cc5584b3c5ab472a91d22ce6", "pid": "004037073", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1006637-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1006637-8", "source": "GND"}], "variant_name": ["Landwirtschaftskammer", "Landwirtschaftskammer", "LKSH"], "preferred_name": "Landwirtschaftskammer Schleswig-Holstein", "country_associated": "gw", "variant_access_point": ["Landwirtschaftskammer. Kiel", "Landwirtschaftskammer. Rendsburg", "LKSH. Abkuerzung"], "date_of_establishment": "1953", "authorized_access_point": "Landwirtschaftskammer Schleswig-Holstein"} 1 -2023-07-08 08:13:47.394299 2023-07-08 08:13:47.394315 67edf26b-a623-48fa-b740-bcdc804fbf35 {"md5": "60a4b8f595725f6b19c973aa2ed56c64", "pid": "004056264", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1010061-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1010061-1", "source": "GND"}], "variant_name": ["SNSP"], "preferred_name": "Società napoletana di storia patria", "country_associated": "it", "variant_access_point": ["SNSP. Abkuerzung"], "date_of_establishment": "1945", "authorized_access_point": "Società napoletana di storia patria"} 1 -2023-07-08 08:13:47.500839 2023-07-08 08:13:47.500848 23c145eb-8390-49b7-91d3-a1b4204eab52 {"md5": "a91a9cdf3b95d097f173001a89395339", "pid": "00406397X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1011228-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1011228-5", "source": "GND"}], "variant_name": ["Universität Salerno", "Università di Salerno", "University of Salerno", "Università degli Studi", "Università", "Università degli studi di Salerno", "Univ. Salerno", "Università degli studi"], "preferred_name": "Università degli studi di Salerno", "country_associated": "it", "variant_access_point": ["Universität Salerno. Ehemalige Vorzugsbenennung SWD", "Università di Salerno", "University of Salerno", "Università degli Studi. Salerno", "Università. Salerno", "Università degli studi di Salerno. Benevento", "Univ. Salerno", "Università degli studi. Salerno"], "authorized_access_point": "Università degli studi di Salerno"} 1 -2023-07-08 08:13:47.607733 2023-07-08 08:13:47.607749 834d694b-c8bb-4a0f-a492-7bc5e8c1c0cc {"md5": "c2dee1117b719f26c092c848d7da62d1", "pid": "004083687", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1015042-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1015042-0", "source": "GND"}], "variant_name": ["Institutes in Pastoral Psychology", "Institute in Pastoral Psychology"], "preferred_name": "Institute of Pastoral Psychology", "country_associated": "xxu", "variant_access_point": ["Institutes in Pastoral Psychology. New York, NY", "Institute in Pastoral Psychology. New York, NY"], "authorized_access_point": "Institute of Pastoral Psychology. New York, NY"} 1 -2023-07-08 08:13:47.72456 2023-07-08 08:13:47.72457 5527ee7d-ea0e-4bf9-9592-45a7009e416e {"md5": "adebc98e6866a881fad4ad05ba864b80", "pid": "004084233", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1015121-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1015121-7", "source": "GND"}], "variant_name": ["Association Internationale des Études Byzantines", "Diethnes Henōsis Byzantinōn Spudōn", "Societas Internationalis Studiis Byzantinis Provehendis Destinata", "Association Internationale des Etudes Byzantines", "International Byzantine Association", "AIEB", "Association for Byzantine Studies", "Diethnēs henōsis Byzantinōn spudōn", "Henōsis Byzantinōn spudōn", "Societas internationalis studiis Byzantinis provehendis destinata", "Association internationale des études byzantines"], "preferred_name": "International Association for Byzantine Studies", "variant_access_point": ["Association Internationale des Études Byzantines", "Diethnes Henōsis Byzantinōn Spudōn", "Societas Internationalis Studiis Byzantinis Provehendis Destinata", "Association Internationale des Etudes Byzantines", "International Byzantine Association", "AIEB. Association internationale des études byzantines", "Association for Byzantine Studies", "Diethnēs henōsis Byzantinōn spudōn", "Henōsis Byzantinōn spudōn", "Societas internationalis studiis Byzantinis provehendis destinata", "Association internationale des études byzantines"], "authorized_access_point": "International Association for Byzantine Studies"} 1 -2023-07-08 08:13:47.836889 2023-07-08 08:13:47.836905 8d5c7d02-57d9-43de-a218-1241fb56610d {"md5": "61cda1f160ae0ba1df928bef4da0be25", "pid": "00408487X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1015223-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1015223-4", "source": "GND"}], "preferred_name": "Essen. Tiefbauamt", "country_associated": "gw", "authorized_access_point": "Essen. Tiefbauamt"} 1 -2023-07-08 08:13:47.936719 2023-07-08 08:13:47.936728 8af91caa-e3b8-4231-a129-8cb3b3346545 {"md5": "e8851d83844c6cc4bbf93cd6e587f714", "pid": "004088212", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1015722-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1015722-0", "source": "GND"}], "variant_name": ["Ministerstvo Kultury", "MK ČSR"], "preferred_name": "Česká SR. Ministerstvo Kultury", "variant_access_point": ["Ministerstvo Kultury. Česká SR", "MK ČSR. Abkuerzung"], "authorized_access_point": "Česká SR. Ministerstvo Kultury"} 1 -2023-07-08 08:13:48.04529 2023-07-08 08:13:48.045299 02880ac0-69b9-441f-92db-5c9d31d5c759 {"md5": "b18c667b482fff4cc84dea2f05dff71b", "pid": "004089049", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1015866-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1015866-2", "source": "GND"}], "preferred_name": "Colloque d'Histoire Sociale", "country_associated": "fr", "authorized_access_point": "Colloque d'Histoire Sociale, 1970, Besançon"} 1 -2023-07-08 08:13:48.136283 2023-07-08 08:13:48.136291 32dd32b7-a450-474a-bf31-b8a7162e3a4e {"md5": "a4865000bc2493d82b9f98726eafb1e8", "pid": "00409753X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1017327-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1017327-4", "source": "GND"}], "variant_name": ["Stendhal-Club"], "preferred_name": "Stendhal Club", "variant_access_point": ["Stendhal-Club"], "authorized_access_point": "Stendhal Club"} 1 -2023-07-08 08:13:48.231731 2023-07-08 08:13:48.231742 3fa0fc4c-ebfe-44b3-b975-5d0490e33ee7 {"md5": "f909bbf591adf1a648e7149ea95c994d", "pid": "004106059", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1018585-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1018585-9", "source": "GND"}], "variant_name": ["Ordo Fratrum Beatae Mariae Virginis de Monte Carmelo", "OCarm", "Ordo Fratrum Beatissimae Virginis Mariae de Monte Carmelo", "Orden da la Bienaventurada Virgen Maria del Monte Carmelo", "Orden der Beschuhten Karmeliten", "Orden der Brüder der allerseligsten Jungfrau Maria vom Berge Karmel", "Ordo Fratrum Carmelitarum", "Ordo Carmelitarum", "Ordo B. V. Mariae de Monte Carmelo", "Ordo Fratrum Carmelitarum Antiquae Observantiae", "Ordo Fratrum Carmelitarum Calceatorum", "OCC", "Beschuhte Karmeliten", "Karmeliterorden", "Karmelitenorden", "Ordo Fratrum B. V. Mariae de Monte Carmelo", "Ordo Fratrum B. V. M. de Monte Carmelo", "Orden de la Bienaventurada Virgen Maria del Monte Carmelo", "O.Fr.B.M.V.d.M.C.", "Karmeliter", "Carmeliter"], "preferred_name": "Karmeliten", "variant_access_point": ["Ordo Fratrum Beatae Mariae Virginis de Monte Carmelo", "OCarm. Abkuerzung", "Ordo Fratrum Beatissimae Virginis Mariae de Monte Carmelo", "Orden da la Bienaventurada Virgen Maria del Monte Carmelo", "Orden der Beschuhten Karmeliten", "Orden der Brüder der allerseligsten Jungfrau Maria vom Berge Karmel", "Ordo Fratrum Carmelitarum", "Ordo Carmelitarum", "Ordo B. V. Mariae de Monte Carmelo", "Ordo Fratrum Carmelitarum Antiquae Observantiae", "Ordo Fratrum Carmelitarum Calceatorum", "OCC", "Beschuhte Karmeliten", "Karmeliterorden", "Karmelitenorden", "Ordo Fratrum B. V. Mariae de Monte Carmelo", "Ordo Fratrum B. V. M. de Monte Carmelo", "Orden de la Bienaventurada Virgen Maria del Monte Carmelo", "O.Fr.B.M.V.d.M.C.", "Karmeliter", "Carmeliter"], "date_of_establishment": "ca. 12./13. Jh.", "authorized_access_point": "Karmeliten", "biographical_information": ["Im 12. Jahrhundert gegründeter katholischer Orden; 1593 spalteten sich die Unbeschuhten Karmeliten davon ab."]} 1 -2023-07-08 08:13:48.342737 2023-07-08 08:13:48.342749 58cba6b1-5382-4fb5-be54-4ee5b35b94cf {"md5": "0b58368bd6f0a886b4b8d16466cf8967", "pid": "004110404", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1019161-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1019161-6", "source": "GND"}], "variant_name": ["Mädchengymnasium Hof"], "preferred_name": "Städtisches Mädchengymnasium Hof", "country_associated": "gw", "variant_access_point": ["Mädchengymnasium Hof"], "authorized_access_point": "Städtisches Mädchengymnasium Hof"} 1 -2023-07-08 08:13:48.528326 2023-07-08 08:13:48.528337 a7a935a6-cdb9-469b-b5d2-724e8adb380d {"md5": "fef463364340423636b1e9f9d4708026", "pid": "004115996", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1019898-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1019898-2", "source": "GND"}], "variant_name": ["Centre de Recherche sur l'Éducation Spécialisée et de l'Adaptation Scolaire", "CRESAS", "Institut national de recherche pédagogique. Centre de recherche de l'éducation spécialisée et de l'adaptation scolaire", "Unité \\"Centre de recherche sur l'éducation spécialisée l'adaptation scolaire\\"", "C.R.E.S.A.S.", "Institut national de recherche et de documentation pédagogiques. Centre de recherche de l'éducation spécialisée et de l'adaptation scolaire", "Institut national de recherche pédagogique. Département \\"Politiques, pratiques et acteurs de l'éducation. Centre de recherche de l'éducation spécialisée et de l'adaptation scolaire", "Centre de recherche sur l'éducation spécialisée et de l'adaptation scolaire"], "preferred_name": "Centre de recherche de l'éducation spécialisée et de l'adaptation scolaire", "country_associated": "fr", "variant_access_point": ["Centre de Recherche sur l'Éducation Spécialisée et de l'Adaptation Scolaire. Paris", "CRESAS. Abkuerzung", "Institut national de recherche pédagogique. Paris. Centre de recherche de l'éducation spécialisée et de l'adaptation scolaire", "Unité \\"Centre de recherche sur l'éducation spécialisée l'adaptation scolaire\\"", "C.R.E.S.A.S.. Abkuerzung", "Institut national de recherche et de documentation pédagogiques. Paris. Centre de recherche de l'éducation spécialisée et de l'adaptation scolaire", "Institut national de recherche pédagogique. Paris. Département \\"Politiques, pratiques et acteurs de l'éducation. Centre de recherche de l'éducation spécialisée et de l'adaptation scolaire", "Centre de recherche sur l'éducation spécialisée et de l'adaptation scolaire"], "authorized_access_point": "Centre de recherche de l'éducation spécialisée et de l'adaptation scolaire. Paris"} 1 -2023-07-08 08:13:48.626425 2023-07-08 08:13:48.626435 9111d7b0-935d-4b1b-8c97-49d32a100e6a {"md5": "f5d824a3a3dfa0e97c8d7ee9ffe2b8b4", "pid": "004119983", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1020415-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1020415-5", "source": "GND"}], "preferred_name": "University of Hawaii. Asian and Pacific Languages Department", "country_associated": "xxu", "authorized_access_point": "University of Hawaii. Asian and Pacific Languages Department"} 1 -2023-07-08 08:13:48.730598 2023-07-08 08:13:48.730609 bef713e4-bbce-40e5-87f8-690a1cf5bc26 {"md5": "2bced4b8cbee1665237de454c35e6fcd", "pid": "004123158", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1020923-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1020923-2", "source": "GND"}], "variant_name": ["Department of History"], "preferred_name": "Johns Hopkins University. Department of History", "country_associated": "xxu", "variant_access_point": ["Department of History. Johns Hopkins University"], "authorized_access_point": "Johns Hopkins University. Department of History"} 1 -2023-07-08 08:13:48.837161 2023-07-08 08:13:48.83717 92f41086-82d0-4165-80aa-acde562e2298 {"md5": "88de67b6278b76dde1ca46900fe94cf6", "pid": "004127900", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1021600-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1021600-5", "source": "GND"}], "preferred_name": "Campagna di Rilevamento dei Beni Artistici e Culturali dell'Appennino", "authorized_access_point": "Campagna di Rilevamento dei Beni Artistici e Culturali dell'Appennino"} 1 -2023-07-08 08:13:48.934656 2023-07-08 08:13:48.934668 91e366ce-300a-4e12-bfed-f731fc9745a9 {"md5": "8ded9d13b611de85cec1fb84fc9f0c3d", "pid": "00414631X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1024138-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1024138-3", "source": "GND"}], "variant_name": ["Institute for Scientific and Technical Documentation and Information", "Institut za Naučno Tehničku Dokumentaciju i Informacije", "INTDI"], "preferred_name": "Institut za Naučno-Tehničku Dokumentaciju i Informacije", "variant_access_point": ["Institute for Scientific and Technical Documentation and Information. Belgrad", "Institut za Naučno Tehničku Dokumentaciju i Informacije. Belgrad", "INTDI. Abkuerzung"], "authorized_access_point": "Institut za Naučno-Tehničku Dokumentaciju i Informacije. Belgrad"} 1 -2023-07-08 08:13:49.037751 2023-07-08 08:13:49.037764 ff035c53-69ff-4c80-a70f-230945e130df {"md5": "464296657d3d3695f6374b45db27b298", "pid": "004149289", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1024542-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1024542-X", "source": "GND"}], "preferred_name": "Grémio Nacional dos Editores e Livreiros", "authorized_access_point": "Grémio Nacional dos Editores e Livreiros"} 1 -2023-07-08 08:13:49.142367 2023-07-08 08:13:49.142383 de4f265d-0a56-4b14-983d-bb8fffe65bc3 {"md5": "29cfa1b3ba6ea42e4d1758f329c3bad2", "pid": "004150988", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1024764-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1024764-6", "source": "GND"}], "variant_name": ["Fluminense Federal University", "UFF", "Universidade Federal Fluminense", "UFF", "Univ. Federal Fluminense"], "preferred_name": "Universidade Federal Fluminense", "country_associated": "bl", "variant_access_point": ["Fluminense Federal University", "UFF. Abkuerzung", "Universidade Federal Fluminense. Rio de Janeiro", "UFF. Universidade Federal Fluminense ; Rio de Janeiro", "Univ. Federal Fluminense. Rio de Janeiro"], "authorized_access_point": "Universidade Federal Fluminense"} 1 -2023-07-08 08:13:49.261366 2023-07-08 08:13:49.261369 b1477026-d738-47fa-947a-87ed050b6b3d {"md5": "ad5b10cd186859a42f2ca8aba3318c2c", "pid": "004151917", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1024891-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1024891-2", "source": "GND"}], "variant_name": ["Deutsche Stadtentwicklungs- und Kreditgesellschaft. Stadt- und Regionalforschung"], "preferred_name": "Deutsche Stadtentwicklungs- und Kreditgesellschaft. Abteilung Stadt- und Regionalforschung", "country_associated": "gw", "variant_access_point": ["Deutsche Stadtentwicklungs- und Kreditgesellschaft. Frankfurt, Main. Stadt- und Regionalforschung"], "authorized_access_point": "Deutsche Stadtentwicklungs- und Kreditgesellschaft. Frankfurt, Main. Abteilung Stadt- und Regionalforschung"} 1 -2023-07-08 08:13:49.366531 2023-07-08 08:13:49.36654 89a0f22d-afad-4275-bb30-b1ed8775f773 {"md5": "41a3a181bb994dc04db2ee5beba2d13d", "pid": "004159837", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1025948-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1025948-X", "source": "GND"}], "variant_name": ["ARPFMC", "ARPFMC"], "preferred_name": "Association de Recherches sur la Poésie Française Moderne et Contemporaine", "variant_access_point": ["ARPFMC", "ARPFMC. Association de Recherches sur la Poésie Française Moderne et Contemporaine"], "authorized_access_point": "Association de Recherches sur la Poésie Française Moderne et Contemporaine"} 1 -2023-07-08 08:13:49.47357 2023-07-08 08:13:49.473584 a8a50d1c-a765-45ce-a294-125c089d714a {"md5": "33fd727a877f64d97596d34a7a228cdd", "pid": "004171004", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1027530-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1027530-7", "source": "GND"}], "preferred_name": "Buddhistisches Seminar", "country_associated": "gw", "date_of_establishment": "1948", "authorized_access_point": "Buddhistisches Seminar. Hamburg"} 1 -2023-07-08 08:13:49.700829 2023-07-08 08:13:49.700838 a043d558-bb44-4182-b3d2-d968458f0f81 {"md5": "39e848c09e6bc3d9d84c83e9101525dc", "pid": "004191811", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1030330-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1030330-3", "source": "GND"}], "variant_name": ["Konferencija po taksonomii bakterij"], "preferred_name": "Conference on the Taxonomy of Bacteria", "variant_access_point": ["Konferencija po taksonomii bakterij, 1969, Brünn"], "authorized_access_point": "Conference on the Taxonomy of Bacteria, 1969, Brünn"} 1 -2023-07-08 08:13:49.812841 2023-07-08 08:13:49.812854 4965ca20-78c8-4fcc-bbfd-f52ed7df6f34 {"md5": "b780ea88183e8d0f757c96f34094623f", "pid": "004196287", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1030914-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1030914-7", "source": "GND"}], "preferred_name": "Symposium on the Theory of Scheduling and Its Applications", "country_associated": "xxu", "authorized_access_point": "Symposium on the Theory of Scheduling and Its Applications, 1972, Raleigh, NC"} 1 -2023-07-08 08:13:49.917742 2023-07-08 08:13:49.917753 e95d13dc-75e0-4797-b689-80f20d0af1e2 {"md5": "aaa6de4fe0ae1674a1fbfcc4e7b832f9", "pid": "004220765", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1034917-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1034917-0", "source": "GND"}], "preferred_name": "Oaxaca Coast Project", "country_associated": "mx", "authorized_access_point": "Oaxaca Coast Project"} 1 -2023-07-08 08:13:50.047602 2023-07-08 08:13:50.047611 b695d719-8bf4-4dce-af91-c77d48b0d31f {"md5": "15060fee6283bd024c0736a8781bd7a9", "pid": "004232933", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1038516-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1038516-2", "source": "GND"}], "variant_name": ["Ritterschaft", "Verband der Baltischen Ritterschaften. Estländische Ritterschaft"], "preferred_name": "Estländische Ritterschaft", "country_associated": "er", "variant_access_point": ["Ritterschaft. Estland", "Verband der Baltischen Ritterschaften. Estländische Ritterschaft"], "authorized_access_point": "Estländische Ritterschaft"} 1 -2023-07-08 08:13:50.167567 2023-07-08 08:13:50.167577 815d3d35-0d68-40cf-85c7-1c25751195a4 {"md5": "4b03de6ca28d49c5eba19e36ed76dac9", "pid": "004247280", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1040834-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1040834-4", "source": "GND"}], "variant_name": ["WHB"], "preferred_name": "Waldviertler Heimatbund", "country_associated": "au", "variant_access_point": ["WHB. Abkuerzung"], "date_of_establishment": "09.09.1951", "authorized_access_point": "Waldviertler Heimatbund"} 1 -2023-07-08 08:13:50.276968 2023-07-08 08:13:50.276981 24f7fa0a-d5b8-409a-a73f-bcddaf867883 {"md5": "14fcef1e8e615b2adef0e372b20dee0a", "pid": "004263707", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1043401-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1043401-X", "source": "GND"}], "variant_name": ["Freie Universität Berlin. Fachbereich 12"], "preferred_name": "Freie Universität Berlin. Fachbereich Erziehungswissenschaften", "country_associated": "gw", "variant_access_point": ["Freie Universität Berlin. Fachbereich 12. Fachbereich Erziehungswissenschaften"], "authorized_access_point": "Freie Universität Berlin. Fachbereich Erziehungswissenschaften"} 1 -2023-07-08 08:13:50.392384 2023-07-08 08:13:50.392396 96ad9bb5-1fc1-4c2a-81db-d74b67d17f2b {"md5": "7583cc9d495cca17ab314a8b15328bd7", "pid": "004265718", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1043701-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1043701-0", "source": "GND"}], "variant_name": ["Gesellschaft für Medizinische Tumortherapie"], "preferred_name": "Deutsche Gesellschaft für Medizinische Tumortherapie", "country_associated": "gw", "variant_access_point": ["Gesellschaft für Medizinische Tumortherapie. Deutschland, Bundesrepublik"], "authorized_access_point": "Deutsche Gesellschaft für Medizinische Tumortherapie"} 1 -2023-07-08 08:13:50.492654 2023-07-08 08:13:50.492667 382b602b-17f9-4efb-a4f7-1fa8933eb526 {"md5": "579b8a02794dfefac0b4eca139279ae2", "pid": "004270525", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1044614-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1044614-X", "source": "GND"}], "preferred_name": "Ostbayernschau", "country_associated": "gw", "authorized_access_point": "Ostbayernschau"} 1 -2023-07-08 08:13:50.609718 2023-07-08 08:13:50.609726 9036389e-e9f1-4e33-a1be-ce0852651b16 {"md5": "331f19a60f00e43967808c6ec636762c", "pid": "004285565", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1046847-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1046847-X", "source": "GND"}], "variant_name": ["Interdiözesaner Fonds"], "preferred_name": "Interdiözesaner Katechetischer Fonds", "variant_access_point": ["Interdiözesaner Fonds"], "authorized_access_point": "Interdiözesaner Katechetischer Fonds"} 1 -2023-07-08 08:13:50.735731 2023-07-08 08:13:50.735744 d3b299e2-c7cc-4374-8cd8-4de15e7f4174 {"md5": "e4b324449073097092168cf772a0a393", "pid": "004288637", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1047266-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1047266-6", "source": "GND"}], "preferred_name": "Arbeitsgemeinschaft für Sozialwissenschaftliche Publizistik", "authorized_access_point": "Arbeitsgemeinschaft für Sozialwissenschaftliche Publizistik"} 1 -2023-07-08 08:13:50.852356 2023-07-08 08:13:50.852366 7dbd75c7-3ad6-4e67-9498-63a84ca6f6b8 {"md5": "f3ab0cc8298ebb3aecae98607e4d27d9", "pid": "004290674", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1047552-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1047552-7", "source": "GND"}], "variant_name": ["Institute of Archaeology", "Institute of Archaeology", "UCLA Institute of Archaeology"], "preferred_name": "University of California Los Angeles. Institute of Archaeology", "country_associated": "xxu", "variant_access_point": ["Institute of Archaeology. University of California Los Angeles", "Institute of Archaeology. Los Angeles, Calif.", "UCLA Institute of Archaeology"], "authorized_access_point": "University of California Los Angeles. Institute of Archaeology"} 1 -2023-07-08 08:13:50.979856 2023-07-08 08:13:50.979862 e3db6bb0-4252-4b99-9347-018ce3cf0999 {"md5": "60c6d8a7a91c5a8ddfb7ccaa8b8daf3d", "pid": "004315669", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1051598-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1051598-7", "source": "GND"}], "variant_name": ["Institute of Archaeology"], "preferred_name": "Australian Institute of Archaeology", "country_associated": "at", "variant_access_point": ["Institute of Archaeology. Melbourne"], "authorized_access_point": "Australian Institute of Archaeology. Melbourne"} 1 -2023-07-08 08:13:51.097537 2023-07-08 08:13:51.097543 30d694de-7ebd-4508-acfe-f4cc69ead03e {"md5": "602fef0caea6f9814954573a7eb2c677", "pid": "004340183", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1055671-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1055671-0", "source": "GND"}], "variant_name": ["Institute of Technology", "FIT"], "preferred_name": "Footscray Institute of Technology", "country_associated": "at", "variant_access_point": ["Institute of Technology. Footscray, Victoria", "FIT. Abkuerzung"], "authorized_access_point": "Footscray Institute of Technology"} 1 -2023-07-08 08:13:51.221654 2023-07-08 08:13:51.22166 d2b1e5d7-c570-48d9-a784-8a1b0513401b {"md5": "5fcbc42bf1dd4818e15717464ae05619", "pid": "004358554", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1080204-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1080204-6", "source": "GND"}], "preferred_name": "Staatliche Realschule Kaufbeuren", "country_associated": "gw", "authorized_access_point": "Staatliche Realschule Kaufbeuren"} 1 -2023-07-08 08:13:51.377054 2023-07-08 08:13:51.377059 55cd1dd9-0e64-4d9a-92bc-af80eb51523d {"md5": "b5cf56e88fcd39d3a32ab0c07632904c", "pid": "004361342", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1080678-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1080678-7", "source": "GND"}], "preferred_name": "Dēmokratikon Metōpon Eparchias Argyrokastru gia tēn Hellēnike Meionotēta", "country_associated": "gr", "authorized_access_point": "Dēmokratikon Metōpon Eparchias Argyrokastru gia tēn Hellēnike Meionotēta"} 1 -2023-07-08 08:13:51.487833 2023-07-08 08:13:51.487844 92dddefa-f212-42ef-a726-5a4fe868c83b {"md5": "be2ea2c2c38dd48bbebe76dc0c7bfdb7", "pid": "004363779", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1081063-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081063-8", "source": "GND"}], "variant_name": ["USA. House of Representatives. Committee on the Judiciary. Subcommittee on Immigration, Refugees and International Law", "Subcommittee on Immigration, Refugees and International Law"], "preferred_name": "USA. Subcommittee on Immigration, Refugees and International Law", "country_associated": "xxu", "variant_access_point": ["USA. House of Representatives. Committee on the Judiciary. Subcommittee on Immigration, Refugees and International Law", "Subcommittee on Immigration, Refugees and International Law. USA"], "authorized_access_point": "USA. Subcommittee on Immigration, Refugees and International Law"} 1 -2023-07-08 08:13:51.593031 2023-07-08 08:13:51.593044 d73ab158-5c95-4ec3-9ae6-f6320c2896c9 {"md5": "97dfa64b4ba10995277c1f08448bb151", "pid": "004379802", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1083529-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1083529-5", "source": "GND"}], "variant_name": ["Sint-Pieterscollege"], "preferred_name": "College Sint-Pieter", "country_associated": "be", "variant_access_point": ["Sint-Pieterscollege. Blankenberge"], "authorized_access_point": "College Sint-Pieter. Blankenberge"} 1 -2023-07-08 08:13:51.706572 2023-07-08 08:13:51.706584 7dc2d73b-dc98-467e-8adb-32d52dda3326 {"md5": "bcd1a051bc1367faac6f306b5d166c99", "pid": "004384865", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1084393-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1084393-0", "source": "GND"}], "variant_name": ["ICMA"], "preferred_name": "Institute of Cost and Management Accountants", "country_associated": "xxk", "date_of_termination": "1986", "variant_access_point": ["ICMA. Abkuerzung"], "date_of_establishment": "1972", "authorized_access_point": "Institute of Cost and Management Accountants", "biographical_information": ["Sitz: London"]} 1 -2023-07-08 08:13:51.826041 2023-07-08 08:13:51.82605 fcbe1db1-7e1d-4e4f-afe8-98436fbafffc {"md5": "b60ef2c3f680049df9c117dfd1e80e76", "pid": "004394828", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086195-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086195-6", "source": "GND"}], "variant_name": ["Center for Judaic Studies"], "preferred_name": "University of Denver. Center for Judaic Studies", "country_associated": "xxu", "variant_access_point": ["Center for Judaic Studies. Denver, Colo."], "authorized_access_point": "University of Denver. Center for Judaic Studies"} 1 -2023-07-08 08:13:51.949699 2023-07-08 08:13:51.949704 532840e9-6e3e-493f-b083-5df17aded008 {"md5": "a0bf2ba0fbafad68d0a792c20fbdf61e", "pid": "004401875", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1087602-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087602-9", "source": "GND"}], "preferred_name": "Workshop on Vitamin D, 5", "country_associated": "xxu", "authorized_access_point": "Workshop on Vitamin D, 5, 1982, Williamsburg, Va."} 1 -2023-07-08 08:13:52.045341 2023-07-08 08:13:52.045352 77b33e24-da8c-41c5-bc44-246aacd8e268 {"md5": "31d7f44a1dd9efba9656333836544166", "pid": "004406583", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1088537-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1088537-7", "source": "GND"}], "variant_name": ["Gynecological Society"], "preferred_name": "Chicago Gynecological Society", "country_associated": "xxu", "variant_access_point": ["Gynecological Society. Chicago, Ill."], "authorized_access_point": "Chicago Gynecological Society"} 1 -2023-07-08 08:13:58.280976 2023-07-08 08:13:58.280988 5c6b9df1-758a-49d6-b37c-2128bbc49458 {"md5": "87f73b6f3f432e4f4169bc077c5eaacf", "pid": "005095344", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/509534-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/509534-7", "source": "GND"}], "variant_name": ["WAEC"], "preferred_name": "West African Examinations Council", "variant_access_point": ["WAEC. Abkuerzung"], "authorized_access_point": "West African Examinations Council"} 1 -2023-07-08 08:13:52.143053 2023-07-08 08:13:52.143069 58051348-663b-4248-baab-af83f39285e0 {"md5": "b18586c30ee361b50e5c0ea98974f91b", "pid": "004407156", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1088644-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1088644-8", "source": "GND"}], "variant_name": ["Konserthusstiftelse"], "preferred_name": "Stockholms Konserthusstiftelse", "country_associated": "sw", "variant_access_point": ["Konserthusstiftelse. Stockholm"], "authorized_access_point": "Stockholms Konserthusstiftelse"} 1 -2023-07-08 08:13:52.258699 2023-07-08 08:13:52.258712 eec5fe64-dd7c-4922-a072-91249ee7c262 {"md5": "669d646319e94317c1ca784411537952", "pid": "00442204X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1091315-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1091315-4", "source": "GND"}], "variant_name": ["Centre for Jain Studies"], "preferred_name": "University of Rajasthan. Centre for Jain Studies", "country_associated": "ii", "variant_access_point": ["Centre for Jain Studies. Jaipur"], "authorized_access_point": "University of Rajasthan. Centre for Jain Studies"} 1 -2023-07-08 08:13:52.358908 2023-07-08 08:13:52.358917 398d0134-0302-4f7d-8721-69141f6a495e {"md5": "4423dd1b602de460b5ec09f0afb45c37", "pid": "004427734", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1092231-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1092231-3", "source": "GND"}], "variant_name": ["Soprintendenza per i Beni Artistici e Storici di Firenze e Pistoia. Opificio delle Pietre Dure e Laboratori di Restauro", "Opificio delle Pietre Dure", "Soprintendenza per i Beni Artistici e Storici di Firenze e Pistoia. Opificio delle Pietre Dure", "Soprintendenza Speciale per il Polo Museale Fiorentino. Opificio delle Pietre Dure e Laboratori di Restauro", "Restoration Laboratory", "OPD", "Opificio delle Pietre Dure", "Galleria dei Lavori", "Opificio delle Pietre Dure e Laboratori di Restauro", "Italien. Ministero per i Beni Culturali e Ambientali. Opificio delle pietre dure", "Opificio delle pietre dure e laboratori di restauro di Firenze", "O.P.D.", "Opificio delle Pietre Dure e Laboratori di Restauro"], "preferred_name": "Opificio delle Pietre Dure e Laboratori di Restauro", "country_associated": "it", "variant_access_point": ["Soprintendenza per i Beni Artistici e Storici di Firenze e Pistoia. Opificio delle Pietre Dure e Laboratori di Restauro", "Opificio delle Pietre Dure. Florenz", "Soprintendenza per i Beni Artistici e Storici di Firenze e Pistoia. Opificio delle Pietre Dure", "Soprintendenza Speciale per il Polo Museale Fiorentino. Opificio delle Pietre Dure e Laboratori di Restauro", "Restoration Laboratory. Florenz", "OPD. Abkuerzung", "Opificio delle Pietre Dure", "Galleria dei Lavori", "Opificio delle Pietre Dure e Laboratori di Restauro. Ehemalige Vorzugsbenennung SWD", "Italien. Ministero per i Beni Culturali e Ambientali. Opificio delle pietre dure", "Opificio delle pietre dure e laboratori di restauro di Firenze", "O.P.D.. Abkuerzung", "Opificio delle Pietre Dure e Laboratori di Restauro. Firenze"], "authorized_access_point": "Opificio delle Pietre Dure e Laboratori di Restauro. Florenz", "biographical_information": ["Werkstatt für Kunsthandwerk u. Inkrustationsarbeiten 1588 als Galleria dei Lavori in den Uffizien gegründet, Ende 19. Jh. auf Restaurierung verlegt, aktueller Name seit 1975"]} 1 -2023-07-08 08:13:52.493991 2023-07-08 08:13:52.49401 4b5e5a78-2012-41de-959e-238c69bed8ae {"md5": "3d421d13d3a7c565d7be53167d954640", "pid": "004444507", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1095223-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1095223-8", "source": "GND"}], "variant_name": ["Beirat für Literarischen Jugendschutz"], "preferred_name": "Bastei-Verlag Gustav H. Lübbe. Beirat für Literarischen Jugendschutz", "country_associated": "gw", "variant_access_point": ["Beirat für Literarischen Jugendschutz. Bergisch Gladbach"], "authorized_access_point": "Bastei-Verlag Gustav H. Lübbe. Bergisch Gladbach. Beirat für Literarischen Jugendschutz"} 1 -2023-07-08 08:13:52.613457 2023-07-08 08:13:52.613468 d8f6e1f4-4e47-455f-b70d-29a8c804eeb9 {"md5": "662a8a778a470171076bbeb88fcbb6ac", "pid": "004453379", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1096957-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1096957-3", "source": "GND"}], "preferred_name": "Symposium zur Geschichte von Millstatt und Kärnten", "country_associated": "au", "authorized_access_point": "Symposium zur Geschichte von Millstatt und Kärnten, 1984, Millstatt"} 1 -2023-07-08 08:13:52.721386 2023-07-08 08:13:52.721396 f68f2ad7-21e4-429c-aaa6-5b11dac1776e {"md5": "21c0ad5ef2ad48d62ad9133ebba91e14", "pid": "004462572", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1098955-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1098955-9", "source": "GND"}], "variant_name": ["German Japanese Congress of Angiology, 3", "German-Japanese Congress of Angiology, 3", "Nichi-Doku-gōdō-myakukagaku-kaigi, 3"], "preferred_name": "Deutsch-Japanischer Kongreß für Angiologie, 3", "country_associated": "gw", "variant_access_point": ["German Japanese Congress of Angiology, 3, 1984, Heidelberg", "German-Japanese Congress of Angiology, 3, 1984, Heidelberg", "Nichi-Doku-gōdō-myakukagaku-kaigi, 3, 1984, Heidelberg"], "authorized_access_point": "Deutsch-Japanischer Kongreß für Angiologie, 3, 1984, Heidelberg"} 1 -2023-07-08 08:13:52.814898 2023-07-08 08:13:52.814908 e3a6969d-3212-4ac3-89a2-bc69519145dd {"md5": "1dfc784726d52e21433446a3ee7936e8", "pid": "004475771", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1212331-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1212331-6", "source": "GND"}], "variant_name": ["Centro Amalfitano"], "preferred_name": "Centro di Cultura e Storia Amalfitana", "country_associated": "it", "variant_access_point": ["Centro Amalfitano"], "authorized_access_point": "Centro di Cultura e Storia Amalfitana", "biographical_information": ["Sitz: Amalfi"]} 1 -2023-07-08 08:13:52.915517 2023-07-08 08:13:52.915529 ae3f4a96-3227-46fe-8e34-5773aae9d0cd {"md5": "7d3b8f97ab50fe6a525e0dc567ea3f2b", "pid": "004479319", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1212696-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1212696-2", "source": "GND"}], "variant_name": ["Diana", "Schützenverein Diana", "Diana Neuhausen 1957"], "preferred_name": "Schützenverein Diana Neuhausen 1957", "country_associated": "gw", "variant_access_point": ["Diana. Neuhausen, Priesendorf", "Schützenverein Diana. Neuhausen, Priesendorf", "Diana Neuhausen 1957"], "authorized_access_point": "Schützenverein Diana Neuhausen 1957"} 1 -2023-07-08 08:13:53.035345 2023-07-08 08:13:53.035358 1aa800e6-a3ea-4348-9759-e5eb82f385b1 {"md5": "eb6bdee8734cb3fb9c52dce297c7b8bb", "pid": "004507673", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1215688-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1215688-7", "source": "GND"}], "variant_name": ["Meždunarodnaja Konferencija A. I. Solženicyn i Ego Tvorčestvo"], "preferred_name": "Konferencija A. I. Solženicyn i Ego Tvorčestvo", "country_associated": "xxu", "variant_access_point": ["Meždunarodnaja Konferencija A. I. Solženicyn i Ego Tvorčestvo, 1988, New York, NY"], "authorized_access_point": "Konferencija A. I. Solženicyn i Ego Tvorčestvo, 1988, New York, NY"} 1 -2023-07-08 08:15:10.67174 2023-07-08 08:15:10.671745 8dc7d413-d18f-4623-910a-68530b584f27 {"md5": "e02982eaddc7966192c49cffba385364", "pid": "1086070178", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086070178", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086070178", "source": "GND"}], "preferred_name": "Chór Harcerski", "authorized_access_point": "Chór Harcerski"} 1 -2023-07-08 08:13:53.174004 2023-07-08 08:13:53.17402 2cc8d165-76c7-4c32-9fdc-ba0c8b2da45e {"md5": "d73811fda84f632d14d1d2ae3449e5cd", "pid": "004522176", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1217246-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1217246-7", "source": "GND"}], "variant_name": ["Möbeldesign-Kontakte, 1"], "preferred_name": "Nürnberger Möbeldesign-Kontakte, 1", "variant_access_point": ["Möbeldesign-Kontakte, 1, 1989, Nürnberg"], "authorized_access_point": "Nürnberger Möbeldesign-Kontakte, 1, 1989, Nürnberg"} 1 -2023-07-08 08:13:53.275431 2023-07-08 08:13:53.275444 3f057366-3f2d-4a86-8349-5179c3c11a7a {"md5": "2750a49d0f37819feb92271dee3bbfde", "pid": "004534972", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1218585-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1218585-1", "source": "GND"}], "variant_name": ["International Conference on Materials and Mechanisms of Superconductivity - High-Temperature Superconductors, 2"], "preferred_name": "International Conference on Materials and Mechanisms of Superconductivity - High Temperature Superconductors, 2", "country_associated": "xxu", "variant_access_point": ["International Conference on Materials and Mechanisms of Superconductivity - High-Temperature Superconductors, 2, 1989, Stanford, Calif."], "authorized_access_point": "International Conference on Materials and Mechanisms of Superconductivity - High Temperature Superconductors, 2, 1989, Stanford, Calif."} 1 -2023-07-08 08:13:53.369157 2023-07-08 08:13:53.369166 73bc362b-377f-47d2-abcc-2c7eea3bf467 {"md5": "e05b54d76396eb66c4a4d1bae8402d2e", "pid": "004535642", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1218657-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1218657-0", "source": "GND"}], "preferred_name": "Symposium Trinkwassernotversorgung", "country_associated": "au", "authorized_access_point": "Symposium Trinkwassernotversorgung, 1989, Wien"} 1 -2023-07-08 08:13:53.470729 2023-07-08 08:13:53.470737 8899bbd0-2387-48e0-a66d-95b5c875a74b {"md5": "16fa969e2a8b557ee32c9a995ab09ef1", "pid": "004544617", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1219614-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1219614-9", "source": "GND"}], "variant_name": ["Materials Science Committee"], "preferred_name": "Institute of Metals. Materials Science Committee", "country_associated": "xxk", "variant_access_point": ["Materials Science Committee. Institute of Metals"], "authorized_access_point": "Institute of Metals. Materials Science Committee"} 1 -2023-07-08 08:13:53.579757 2023-07-08 08:13:53.579771 3b059156-11d5-46f7-9b9c-3c52080c617e {"md5": "21669534a9fa266c1eaadcc7d38c6c5b", "pid": "004554159", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1220634-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1220634-9", "source": "GND"}], "variant_name": ["EWSL, 2"], "preferred_name": "European Working Session on Learning, 2", "variant_access_point": ["EWSL, 2, 1987, Bled"], "authorized_access_point": "European Working Session on Learning, 2, 1987, Bled"} 1 -2023-07-08 08:13:53.693428 2023-07-08 08:13:53.693434 aedbb846-4ebe-4eba-928a-4b4fa6267b6a {"md5": "71366b28a8fb4481fafd3965c3a04666", "pid": "004556208", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1220848-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1220848-6", "source": "GND"}], "variant_name": ["Sportkegelclub \\"Links Vorbei\\" Bad Rodach", "Sportkegelklub \\"Links Vorbei\\" Bad Rodach", "Links Vorbei"], "preferred_name": "SKC \\"Links Vorbei\\" Bad Rodach", "country_associated": "gw", "variant_access_point": ["Sportkegelclub \\"Links Vorbei\\" Bad Rodach", "Sportkegelklub \\"Links Vorbei\\" Bad Rodach", "Links Vorbei"], "authorized_access_point": "SKC \\"Links Vorbei\\" Bad Rodach"} 1 -2023-07-08 08:13:53.792224 2023-07-08 08:13:53.792235 f52d9a00-107c-491b-88c8-1f6f37655a1e {"md5": "90954049ac5d75ecb3864d7f444205f2", "pid": "004559444", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1221205-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1221205-2", "source": "GND"}], "preferred_name": "Kazı Sonuçları Toplantısı, 9", "country_associated": "tu", "authorized_access_point": "Kazı Sonuçları Toplantısı, 9, 1987, Ankara"} 1 -2023-07-08 08:13:53.917969 2023-07-08 08:13:53.917981 394c559b-f4ff-473e-b6e6-13658f46a474 {"md5": "86a34cfc5f6ab0fe0e455e5b50ac3116", "pid": "004570359", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1222375-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1222375-X", "source": "GND"}], "preferred_name": "World Congress on Reading, 12", "country_associated": "at", "authorized_access_point": "World Congress on Reading, 12, 1988, Gold Coast, Queensland"} 1 -2023-07-08 08:13:54.051641 2023-07-08 08:13:54.051655 65bb7f30-8c31-4136-9014-173d47e5aedf {"md5": "b9427e5389fbd1124dd2627ccf98a539", "pid": "004612876", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2000322-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2000322-5", "source": "GND"}], "preferred_name": "Degerlocher Arbeitskreis", "authorized_access_point": "Degerlocher Arbeitskreis"} 1 -2023-07-08 08:13:54.159224 2023-07-08 08:13:54.159232 0e8b4a4d-0481-4c65-9dce-72a8bd083087 {"md5": "6c2327af91c96d6306e408a53649dc3e", "pid": "004652851", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2004951-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2004951-1", "source": "GND"}], "variant_name": ["Akademie der Pädagogischen Wissenschaften der DDR. Arbeitsstelle Westdeutsche Pädagogik"], "preferred_name": "Arbeitsstelle Westdeutsche Pädagogik", "variant_access_point": ["Akademie der Pädagogischen Wissenschaften der DDR. Arbeitsstelle Westdeutsche Pädagogik"], "authorized_access_point": "Arbeitsstelle Westdeutsche Pädagogik"} 1 -2023-07-08 08:13:54.277028 2023-07-08 08:13:54.277037 4799f38d-f0aa-4822-83c1-d639bba0a3b1 {"md5": "7063afd8cd12e54de219a10c4fdc16a8", "pid": "004656253", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2005334-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2005334-4", "source": "GND"}], "preferred_name": "Ausstellung Deutsche Graphik der Letzten Hundert Jahre aus der Sammlung Karl August Reiser Bonn", "country_associated": "gw", "authorized_access_point": "Ausstellung Deutsche Graphik der Letzten Hundert Jahre aus der Sammlung Karl August Reiser Bonn, 1968"} 1 -2023-07-08 08:13:54.393571 2023-07-08 08:13:54.393577 7491860e-b158-4d35-a692-67e5fa292ae7 {"md5": "c1e98186710c5b9a5b3da92ab1224347", "pid": "004674316", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2007529-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2007529-7", "source": "GND"}], "variant_name": ["Fachausschuss Flugeigenschaften", "Deutsche Gesellschaft für Luft- und Raumfahrt. Fachausschuss"], "preferred_name": "Deutsche Gesellschaft für Luft- und Raumfahrt. Fachausschuss Flugeigenschaften", "variant_access_point": ["Fachausschuss Flugeigenschaften", "Deutsche Gesellschaft für Luft- und Raumfahrt. Fachausschuss. 4 2"], "authorized_access_point": "Deutsche Gesellschaft für Luft- und Raumfahrt. Fachausschuss Flugeigenschaften"} 1 -2023-07-08 08:13:54.494776 2023-07-08 08:13:54.494779 7680d00a-d482-486d-8a91-9130a9eb27bd {"md5": "19cc3cce746382a47ca06f1b389d2fa9", "pid": "004680596", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2008269-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2008269-1", "source": "GND"}], "variant_name": ["DFV", "Familienverband", "Familienverband", "Familienverband", "DFV"], "preferred_name": "Deutscher Familienverband", "country_associated": "gw", "variant_access_point": ["DFV. Abkuerzung", "Familienverband", "Familienverband. Deutschland, Bundesrepublik", "Familienverband. Deutschland", "DFV. Deutscher Familienverband"], "authorized_access_point": "Deutscher Familienverband", "biographical_information": ["Sitz: bis 2001,Juli Bonn; ab 2001,Aug. Berlin"]} 1 -2023-07-08 08:13:54.61044 2023-07-08 08:13:54.610452 06c784af-5d26-48ff-8885-d6119f424f87 {"md5": "dee6ffd19f47ab67c201a98190a5f159", "pid": "004685873", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2008874-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2008874-7", "source": "GND"}], "variant_name": ["Jugendherbergswerk", "Hauptverband für Jugendwandern und Jugendherbergen", "Hauptverband für Jugendwandern und Jugendherbergen e.V.", "Deutsches Jugendherbergswerk für Jugendwandern und Jugendherbergen", "Jugendherbergswerk für Jugendwandern und Jugendherbergen", "Jugendherbergswerk", "DJH"], "preferred_name": "Deutsches Jugendherbergswerk", "country_associated": "gw", "variant_access_point": ["Jugendherbergswerk. Deutschland, Bundesrepublik", "Hauptverband für Jugendwandern und Jugendherbergen", "Hauptverband für Jugendwandern und Jugendherbergen e.V.", "Deutsches Jugendherbergswerk für Jugendwandern und Jugendherbergen", "Jugendherbergswerk für Jugendwandern und Jugendherbergen. Deutschland", "Jugendherbergswerk. Deutschland", "DJH. Abkuerzung"], "authorized_access_point": "Deutsches Jugendherbergswerk"} 1 -2023-07-08 08:13:54.729329 2023-07-08 08:13:54.729337 6d2cbdf6-4f7a-4553-9d00-ca0be884106f {"md5": "0f981ab1671a7db09c9fbdbc36b67ac0", "pid": "004687280", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2009039-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2009039-0", "source": "GND"}], "preferred_name": "Drehbühne Duisburg", "country_associated": "gw", "authorized_access_point": "Drehbühne Duisburg"} 1 -2023-07-08 08:13:54.851931 2023-07-08 08:13:54.851943 fffd937d-da1a-4c6a-900d-9ab05a931dea {"md5": "3f0112507bbf2c00b5164bbdde010a30", "pid": "004708083", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2011373-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2011373-0", "source": "GND"}], "preferred_name": "Heinen-Verlag", "country_associated": "gw", "authorized_access_point": "Heinen-Verlag. Köln"} 1 -2023-07-08 08:13:54.97105 2023-07-08 08:13:54.971061 54077ccf-144f-4653-bf47-8e5ad8d01863 {"md5": "02c43953282f82e64b5890e66d945003", "pid": "004726642", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2013564-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2013564-6", "source": "GND"}], "variant_name": ["Abteilung Organisation", "Organisationsabteilung", "IG Metall-Abteilung Organisation", "IGM Abteilung Organisation"], "preferred_name": "IG Metall. Abteilung Organisation", "country_associated": "gw", "variant_access_point": ["Abteilung Organisation", "Organisationsabteilung", "IG Metall-Abteilung Organisation", "IGM Abteilung Organisation"], "authorized_access_point": "IG Metall. Deutschland, Bundesrepublik. Abteilung Organisation"} 1 -2023-07-08 08:13:55.07692 2023-07-08 08:13:55.076933 1d364c2c-c4d1-48ec-8e8f-1877fcdd0b41 {"md5": "76ba0d733ae9615a3acab9a049ab291b", "pid": "00473985X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2015204-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2015204-8", "source": "GND"}], "variant_name": ["Benediktinerkollegium", "Obwaldner Kantonsschule", "Kantonsschule", "Kollegium"], "preferred_name": "Kantonsschule Obwalden", "country_associated": "sz", "variant_access_point": ["Benediktinerkollegium. Sarnen", "Obwaldner Kantonsschule", "Kantonsschule. Sarnen", "Kollegium. Sarnen"], "authorized_access_point": "Kantonsschule Obwalden"} 1 -2023-07-08 08:13:55.191609 2023-07-08 08:13:55.191629 a4ca3022-130f-4e52-9766-cfb7b5bee157 {"md5": "eb0edb36f1b23ebd3beefd91d4587a62", "pid": "004746333", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2015966-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2015966-3", "source": "GND"}], "preferred_name": "Konferenz Die Lehrer im Antifaschistischen Widerstandskampf der Europäischen Völker 1933 - 1945", "authorized_access_point": "Konferenz Die Lehrer im Antifaschistischen Widerstandskampf der Europäischen Völker 1933 - 1945, 1965, Potsdam"} 1 -2023-07-08 08:13:55.294334 2023-07-08 08:13:55.294345 724ba52a-28b7-4bd0-a9ef-56a72424204f {"md5": "b2c56f48e39f09b0d1e5ac5923340c59", "pid": "004753194", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2016768-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2016768-4", "source": "GND"}], "variant_name": ["Kunstverein Ludwigshafen a. Rh.", "Kunstverein Ludwigshafen am Rhein e.V.", "Kunstverein", "Kunstverein Ludwigshafen am Rhein", "Ludwigshafener Kunstverein"], "preferred_name": "Kunstverein Ludwigshafen", "country_associated": "gw", "variant_access_point": ["Kunstverein Ludwigshafen a. Rh.", "Kunstverein Ludwigshafen am Rhein e.V.. Unveraenderte Form", "Kunstverein. Ludwigshafen, Rhein", "Kunstverein Ludwigshafen am Rhein", "Ludwigshafener Kunstverein"], "date_of_establishment": "1928", "authorized_access_point": "Kunstverein Ludwigshafen"} 1 -2023-07-08 08:13:55.396188 2023-07-08 08:13:55.396206 1b3dab46-9141-4c8a-bf8e-86fb53e53142 {"md5": "91339e34a6ab16ad2c4201d01b2133e1", "pid": "004772350", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2019043-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2019043-8", "source": "GND"}], "variant_name": ["Universitätsbund", "Philipps-Universität Marburg. Marburger Universitätsbund", "Marburger Universitätsbund e.V."], "preferred_name": "Marburger Universitätsbund", "country_associated": "gw", "variant_access_point": ["Universitätsbund. Marburg", "Philipps-Universität Marburg. Marburger Universitätsbund", "Marburger Universitätsbund e.V.. Unveraenderte Form"], "authorized_access_point": "Marburger Universitätsbund"} 1 -2023-07-08 08:13:55.500177 2023-07-08 08:13:55.50019 9621fc21-6aa7-4992-b190-a57e91f93d74 {"md5": "d2f5742bd46bf4024d7f84a0d20e1d87", "pid": "00480435X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2022843-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2022843-0", "source": "GND"}], "variant_name": ["Gustav-Lübcke-Museum", "Lübcke-Museum", "Gustav Lübcke Museum Hamm"], "preferred_name": "Städtisches Gustav-Lübcke-Museum", "country_associated": "gw", "variant_access_point": ["Gustav-Lübcke-Museum", "Lübcke-Museum", "Gustav Lübcke Museum Hamm"], "authorized_access_point": "Städtisches Gustav-Lübcke-Museum"} 1 -2023-07-08 08:13:55.623979 2023-07-08 08:13:55.623993 e912a849-c75d-40f5-ab22-e85714cdf032 {"md5": "77c9b82840383a1a8ffd0056aaee118c", "pid": "004812476", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2023839-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2023839-3", "source": "GND"}], "variant_name": ["Technische Hochschule Hannover. Institut für Photogrammetrie und Ingenieurvermessungen", "Institut für Photogrammetrie und Ingenieurvermessungen", "Technische Hochschule Hannover. Lehrstuhl für Photogrammetrie"], "preferred_name": "Technische Hochschule Hannover. Lehrstuhl und Institut für Photogrammetrie und Ingenieurvermessungen", "country_associated": "gw", "variant_access_point": ["Technische Hochschule Hannover. Institut für Photogrammetrie und Ingenieurvermessungen", "Institut für Photogrammetrie und Ingenieurvermessungen. Hannover, Technische Hochschule", "Technische Hochschule Hannover. Lehrstuhl für Photogrammetrie"], "authorized_access_point": "Technische Hochschule Hannover. Lehrstuhl und Institut für Photogrammetrie und Ingenieurvermessungen"} 1 -2023-07-08 08:13:55.750444 2023-07-08 08:13:55.750453 5000bb51-21c8-4b36-bfba-8a8213ad7460 {"md5": "09f756624499d78966890b9bb98fece1", "pid": "004815483", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2024202-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2024202-5", "source": "GND"}], "variant_name": ["Universität Erlangen-Nürnberg. Juristische Fakultät", "Juristische Fakultät"], "preferred_name": "Friedrich-Alexander-Universität Erlangen-Nürnberg. Juristische Fakultät", "country_associated": "gw", "variant_access_point": ["Universität Erlangen-Nürnberg. Juristische Fakultät", "Juristische Fakultät. Erlangen; Nürnberg"], "authorized_access_point": "Friedrich-Alexander-Universität Erlangen-Nürnberg. Juristische Fakultät", "biographical_information": ["aufgegangen in der \\"Rechts- und Wirtschaftswissenschaftlichen Fakultät\\" (ab 1. Okt. 2007)"]} 1 -2023-07-08 08:13:55.867148 2023-07-08 08:13:55.86716 cddb390d-d5c1-4051-87ae-8644b10e52c6 {"md5": "5b1880ddf6ae7235b9a5ae20c7c5174d", "pid": "004837541", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2026881-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2026881-6", "source": "GND"}], "variant_name": ["Pferdestammbuch e.V.", "Züchtervereinigung Westfälisches Pferdestammbuch"], "preferred_name": "Westfälisches Pferdestammbuch e.V.", "country_associated": "gw", "variant_access_point": ["Pferdestammbuch e.V.. Westfalen", "Züchtervereinigung Westfälisches Pferdestammbuch"], "authorized_access_point": "Westfälisches Pferdestammbuch e.V."} 1 -2023-07-08 08:13:55.981551 2023-07-08 08:13:55.981561 272c8c49-934e-49f4-a470-460067099328 {"md5": "99b54938941d4e9d5c1487785f486765", "pid": "004867645", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2030398-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2030398-1", "source": "GND"}], "variant_name": ["Audio-Visions-Zentrale", "Institut der Deutschen Wirtschaft Köln. AV-Zentrale", "AV-Zentrale", "AVZ"], "preferred_name": "Institut der Deutschen Wirtschaft Köln. Audio-Visions-Zentrale", "country_associated": "gw", "variant_access_point": ["Audio-Visions-Zentrale. Institut der Deutschen Wirtschaft Köln", "Institut der Deutschen Wirtschaft Köln. AV-Zentrale", "AV-Zentrale. Institut der Deutschen Wirtschaft Köln", "AVZ. Abkuerzung"], "authorized_access_point": "Institut der Deutschen Wirtschaft Köln. Audio-Visions-Zentrale"} 1 -2023-07-08 08:13:56.094997 2023-07-08 08:13:56.095009 1eeaae55-838d-4370-b54e-fc06633bbcf6 {"md5": "2170f65156af835bc1c4d4a8b5320399", "pid": "004868250", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2030461-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2030461-4", "source": "GND"}], "variant_name": ["Handwerks- und Gewerbeausstellung, 4"], "preferred_name": "Badische Handwerks- und Gewerbeausstellung, 4", "country_associated": "gw", "variant_access_point": ["Handwerks- und Gewerbeausstellung, 4, 1971, Freiburg im Breisgau"], "authorized_access_point": "Badische Handwerks- und Gewerbeausstellung, 4, 1971, Freiburg im Breisgau"} 1 -2023-07-08 08:13:56.210639 2023-07-08 08:13:56.210652 cb6794e6-daea-474a-a66f-bd1ae5b5340a {"md5": "2d20b422049d4383732bc2810cb238bc", "pid": "004888324", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2032739-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2032739-0", "source": "GND"}], "variant_name": ["Kollegium der Hauptpastoren"], "preferred_name": "Evangelisch-Lutherische Kirche im Hamburgischen Staate. Kollegium der Hauptpastoren", "country_associated": "gw", "variant_access_point": ["Kollegium der Hauptpastoren. Evangelisch-Lutherische Kirche im Hamburgischen Staate"], "authorized_access_point": "Evangelisch-Lutherische Kirche im Hamburgischen Staate. Kollegium der Hauptpastoren"} 1 -2023-07-08 08:14:31.311572 2023-07-08 08:14:31.311586 65342ec0-daa2-4031-8a55-cea6504b1a14 {"md5": "4aa0a06f4cba76fe838c7aaf66971395", "pid": "1004497415", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6127264-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6127264-4", "source": "GND"}], "preferred_name": "Orchestra Ensemble Kanazawa", "country_associated": "ja", "authorized_access_point": "Orchestra Ensemble Kanazawa"} 1 -2023-07-08 08:13:56.327076 2023-07-08 08:13:56.327089 1b66bd76-d254-42c0-96b0-cdc30d9c54df {"md5": "9b0fed20cabe832c81a3e8d560738af5", "pid": "004890868", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2033029-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2033029-7", "source": "GND"}], "variant_name": ["Studentengeschichtliche Vereinigung des CC", "Studentengeschichtliche Vereinigung des Coburger Convents"], "preferred_name": "Coburger Convent. Studentengeschichtliche Vereinigung", "variant_access_point": ["Studentengeschichtliche Vereinigung des CC", "Studentengeschichtliche Vereinigung des Coburger Convents"], "authorized_access_point": "Coburger Convent. Studentengeschichtliche Vereinigung"} 1 -2023-07-08 08:13:56.439646 2023-07-08 08:13:56.43966 6e83c6df-587b-410e-9875-a3492e91ac41 {"md5": "5f8fe4eb5a42610deb27c58363023d80", "pid": "004895002", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2033479-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2033479-5", "source": "GND"}], "variant_name": ["Hanse-Merkur-Versicherungen"], "preferred_name": "Hanse-Merkur-Lebensversicherung a.G.", "country_associated": "gw", "date_of_termination": "1973", "variant_access_point": ["Hanse-Merkur-Versicherungen. Nürnberg"], "authorized_access_point": "Hanse-Merkur-Lebensversicherung a.G.. Nürnberg"} 1 -2023-07-08 08:13:56.570831 2023-07-08 08:13:56.570843 b977b19f-c297-4484-848d-1a432612afe4 {"md5": "dde0a4f679a080fc30f4c56ddaa9647e", "pid": "00490110X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2034222-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2034222-6", "source": "GND"}], "variant_name": ["Geschichts- und Altertumsverein Göppingen e.V.", "Geschichts- und Altertumsverein der Stadt Göppingen", "GAV"], "preferred_name": "Geschichts- und Altertumsverein Göppingen", "country_associated": "gw", "variant_access_point": ["Geschichts- und Altertumsverein Göppingen e.V.. Unveraenderte Form", "Geschichts- und Altertumsverein der Stadt Göppingen", "GAV. Abkuerzung"], "date_of_establishment": "1925", "authorized_access_point": "Geschichts- und Altertumsverein Göppingen"} 1 -2023-07-08 08:13:56.698619 2023-07-08 08:13:56.698633 168eb079-bee3-4767-87b2-b372e1313cc4 {"md5": "8f72ee40f7a8e07026487dab196e9a1a", "pid": "004904508", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2034611-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2034611-6", "source": "GND"}], "variant_name": ["NGS", "Numismatische Gesellschaft Speyer e.V."], "preferred_name": "Numismatische Gesellschaft Speyer", "country_associated": "gw", "variant_access_point": ["NGS. Abkuerzung", "Numismatische Gesellschaft Speyer e.V.. Unveraenderte Form"], "authorized_access_point": "Numismatische Gesellschaft Speyer"} 1 -2023-07-08 08:13:56.798011 2023-07-08 08:13:56.798025 42c1bd15-5d2a-44e1-ad19-62e0d378ddb1 {"md5": "3fb37c00e9b78bcb10c291336b4e8e32", "pid": "004921445", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2036596-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2036596-2", "source": "GND"}], "preferred_name": "Wissenschaftliches Symposium Mittel und Wege zur Lösung von Problemen der Gesellschaftlichen Entwicklung aus Verschiedener Weltanschaulicher Sicht", "authorized_access_point": "Wissenschaftliches Symposium Mittel und Wege zur Lösung von Problemen der Gesellschaftlichen Entwicklung aus Verschiedener Weltanschaulicher Sicht, 1973, Moskau"} 1 -2023-07-08 08:13:56.908602 2023-07-08 08:13:56.908616 8d7bf837-0099-484a-83bc-ce2f50a55bb0 {"md5": "f843fe81c263901a997aa8b7cb09c300", "pid": "004930118", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2037653-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2037653-4", "source": "GND"}], "preferred_name": "Tutorentagung zur Vorbereitung der Praktischen Fortbildung von 15 Verwaltungsbeamten aus Indonesien in Landkreisen Niedersachsens", "country_associated": "gw", "authorized_access_point": "Tutorentagung zur Vorbereitung der Praktischen Fortbildung von 15 Verwaltungsbeamten aus Indonesien in Landkreisen Niedersachsens, 1974, Berlin, West"} 1 -2023-07-08 08:13:57.018436 2023-07-08 08:13:57.018449 8ba9eb41-f259-49a1-8985-f977dff28058 {"md5": "89d585882d13eff920bcb43e42e3423c", "pid": "00495081X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2040211-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2040211-9", "source": "GND"}], "preferred_name": "Deutsches Institut für Normung. Ausschuss Normenpraxis. Ad-Hoc-Gruppe Form- und Lagetoleranzen", "authorized_access_point": "Deutsches Institut für Normung. Ausschuss Normenpraxis. Ad-Hoc-Gruppe Form- und Lagetoleranzen"} 1 -2023-07-08 08:13:57.135839 2023-07-08 08:13:57.135856 e7eae7d9-6c12-496d-97e9-13adff888f56 {"md5": "ad9cc698d81cf2978de800aa51a99e42", "pid": "004954599", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2040677-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2040677-0", "source": "GND"}], "variant_name": ["Freiherr-von-Ickstatt-Schule, Staatliche Realschule Ingolstadt I", "Freiherr-von-Ickstatt-Schule, Staatliche Realschule Ingolstadt, 1", "Freiherr-von-Ickstatt-Schule, Staatliche Realschule für Knaben", "Freiherr-von-Ickstatt-Realschule"], "preferred_name": "Freiherr-von-Ickstatt-Schule", "country_associated": "gw", "variant_access_point": ["Freiherr-von-Ickstatt-Schule, Staatliche Realschule Ingolstadt I", "Freiherr-von-Ickstatt-Schule, Staatliche Realschule Ingolstadt, 1", "Freiherr-von-Ickstatt-Schule, Staatliche Realschule für Knaben", "Freiherr-von-Ickstatt-Realschule"], "date_of_establishment": "1968", "authorized_access_point": "Freiherr-von-Ickstatt-Schule"} 1 -2023-07-08 08:13:57.25582 2023-07-08 08:13:57.255838 8b248bfe-92b4-4113-a0ed-ac6ecd3fe1e3 {"md5": "67c9e0d046b92fbe1aea130f6398197f", "pid": "004984242", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2044447-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2044447-3", "source": "GND"}], "preferred_name": "Bezirkssparkasse", "country_associated": "gw", "date_of_termination": "30.06.1999", "date_of_establishment": "14.08.1975", "authorized_access_point": "Bezirkssparkasse. Graben-Neudorf"} 1 -2023-07-08 08:13:59.710262 2023-07-08 08:13:59.710269 3f6090ef-3226-49fe-a9d9-97bcbc8762c3 {"md5": "02cbb08aa21d4bb160f6f98e120f865b", "pid": "006674410", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/667441-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/667441-0", "source": "GND"}], "preferred_name": "Workshop on Feminism and Law", "authorized_access_point": "Workshop on Feminism and Law, 1983", "biographical_information": ["Ort n. erm."]} 1 -2023-07-08 08:13:57.38594 2023-07-08 08:13:57.385951 dbde8861-6723-4fac-a722-be6fb91bc6ad {"md5": "fd29417c01f8ce8d2cb4caee91b45c09", "pid": "004995732", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2045930-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2045930-0", "source": "GND"}], "variant_name": ["Kanton Bern. Service de Statistique", "Service de Statistique", "Amt für Statistik", "Bern. Amt für Statistik"], "preferred_name": "Kanton Bern. Amt für Statistik", "country_associated": "sz", "variant_access_point": ["Kanton Bern. Service de Statistique", "Service de Statistique. Bern, Kanton", "Amt für Statistik. Bern, Kanton", "Bern. Kanton. Amt für Statistik. Alte Ansetzungsform"], "authorized_access_point": "Kanton Bern. Amt für Statistik"} 1 -2023-07-08 08:13:57.529693 2023-07-08 08:13:57.529707 7a743911-8d25-423f-b843-f6e094bb8288 {"md5": "bf52355ca7ee762d4e5e1ac7751a9a43", "pid": "005029902", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/502990-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/502990-9", "source": "GND"}], "variant_name": ["Malaysia. Geological Survey", "Malaysia. Kementerian Tanah dan Galian. Geological Survey", "Geological Survey"], "preferred_name": "Geological Survey of Malaysia", "country_associated": "my", "date_of_termination": "1968", "variant_access_point": ["Malaysia. Geological Survey. - 1968", "Malaysia. Kementerian Tanah dan Galian. Geological Survey", "Geological Survey. Malaysia"], "authorized_access_point": "Geological Survey of Malaysia", "biographical_information": ["erst ab 1968 malay. Name vh., bis dahin engl. Name offiziell !"]} 1 -2023-07-08 08:13:57.642047 2023-07-08 08:13:57.642061 3b64f7f7-8e4f-4192-bd1b-2ac9bd6d25e1 {"md5": "9304f3adc3d9bebfe8df606b090680cb", "pid": "005034523", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/503452-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/503452-8", "source": "GND"}], "preferred_name": "Congreso Latinoamericano de Entomologia", "authorized_access_point": "Congreso Latinoamericano de Entomologia"} 1 -2023-07-08 08:13:57.790161 2023-07-08 08:13:57.790175 78568e27-e548-41f3-bb1d-3e403a975770 {"md5": "58364df53128953e6015e8885f929b81", "pid": "005053625", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/505362-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/505362-6", "source": "GND"}], "variant_name": ["Akademija Nauk Ėstonskoj SSR. Institut Ėksperimentalʹnoj Biologii", "Institutum Biologiae Experimentalis", "Experimentaalbioloogia Instituut", "Akademija Nauk Ėstonskoj SSR. Institutum Biologiae Experimentalis", "Akademija Nauk Ėstonskoj SSR. Experimentaalbioloogia Instituut", "Institut für Experimentelle Biologie", "Akademija Nauk Ėstonskoj SSR. Institut für Experimentelle Biologie", "Naučnyj Sovet po Problemam Genetiki i Selekcii. Institut Ėksperimentalʹnoj Biologii"], "preferred_name": "Institut Ėksperimentalʹnoj Biologii", "variant_access_point": ["Akademija Nauk Ėstonskoj SSR. Institut Ėksperimentalʹnoj Biologii", "Institutum Biologiae Experimentalis. Tallinn", "Experimentaalbioloogia Instituut. Tallinn", "Akademija Nauk Ėstonskoj SSR. Institutum Biologiae Experimentalis", "Akademija Nauk Ėstonskoj SSR. Experimentaalbioloogia Instituut", "Institut für Experimentelle Biologie. Tallinn", "Akademija Nauk Ėstonskoj SSR. Institut für Experimentelle Biologie", "Naučnyj Sovet po Problemam Genetiki i Selekcii. Akademija Nauk Ėstonskoj SSR. Institut Ėksperimentalʹnoj Biologii"], "authorized_access_point": "Institut Ėksperimentalʹnoj Biologii. Tallinn"} 1 -2023-07-08 08:13:57.895157 2023-07-08 08:13:57.895256 f8cece2d-57de-4a81-8be1-b111acdd58fb {"md5": "afeb662083137cfbebd764b963b90cc8", "pid": "00505656X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/505656-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/505656-1", "source": "GND"}], "variant_name": ["Akademija Nauk Kazachskoj SSR. Alma-Atinskij Botaničeskij Sad", "Glavnyj Botaničeskij Sad", "Botaničeskij Sad", "Hortus Botanicus Centralis", "Hortus Botanicus Principalis", "Main Botanical Garden", "Akademija Nauk Kazachskoj SSR. Glavnyj Botaničeskij Sad", "Akademija Nauk Kazachskoj SSR. Botaničeskij Sad", "Akademija Nauk Kazachskoj SSR. Hortus Botanicus Centralis", "Akademija Nauk Kazachskoj SSR. Hortus Botanicus Principalis", "Akademija Nauk Kazachskoj SSR. Main Botanical Garden"], "preferred_name": "Alma-Atinskij Botaničeskij Sad", "date_of_termination": "1963", "variant_access_point": ["Akademija Nauk Kazachskoj SSR. Alma-Atinskij Botaničeskij Sad", "Glavnyj Botaničeskij Sad. Alma-Ata, -1963", "Botaničeskij Sad. Alma-Ata, -1963", "Hortus Botanicus Centralis. Alma-Ata", "Hortus Botanicus Principalis. Alma-Ata, -1963", "Main Botanical Garden. Alma-Ata", "Akademija Nauk Kazachskoj SSR. Glavnyj Botaničeskij Sad. -1963", "Akademija Nauk Kazachskoj SSR. Botaničeskij Sad. -1963", "Akademija Nauk Kazachskoj SSR. Hortus Botanicus Centralis", "Akademija Nauk Kazachskoj SSR. Hortus Botanicus Principalis. -1963", "Akademija Nauk Kazachskoj SSR. Main Botanical Garden"], "authorized_access_point": "Alma-Atinskij Botaničeskij Sad"} 1 -2023-07-08 08:13:58.030035 2023-07-08 08:13:58.03005 b471745d-514b-483c-aaae-141e8a927b7d {"md5": "2935794c36987eec5f419252e576952a", "pid": "005059054", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/505905-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/505905-7", "source": "GND"}], "preferred_name": "Sociedad Geográfica de Cuba", "country_associated": "cu", "authorized_access_point": "Sociedad Geográfica de Cuba"} 1 -2023-07-08 08:13:58.15341 2023-07-08 08:13:58.153423 62dbdd76-e3ca-45fb-a4bd-ed9cb392e464 {"md5": "6c854f856c5112adc56992d23b0970dc", "pid": "005073189", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/507318-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/507318-2", "source": "GND"}], "variant_name": ["Onsen-Kiko-Butsuri-Gakkai", "Japanese Association of Physical Medicine, Balneology and Climatology", "Association of Physical Medicine, Balneology and Climatology", "Japanese Balneo-Climatological Association", "Balneo-Climatological Association"], "preferred_name": "Nihon-Onsen-Kiko-Butsuri-Gakkai", "country_associated": "ja", "variant_access_point": ["Onsen-Kiko-Butsuri-Gakkai. Japan", "Japanese Association of Physical Medicine, Balneology and Climatology", "Association of Physical Medicine, Balneology and Climatology. Japan", "Japanese Balneo-Climatological Association", "Balneo-Climatological Association. Japan"], "authorized_access_point": "Nihon-Onsen-Kiko-Butsuri-Gakkai"} 1 -2023-07-08 08:13:58.411874 2023-07-08 08:13:58.411885 e2f66cab-e47f-4c9b-b395-54acf606ed44 {"md5": "a3690661ac175584078e3a5a79404c6d", "pid": "00509657X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/509657-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/509657-1", "source": "GND"}], "variant_name": ["International Symposium on Coelenterate Biology"], "preferred_name": "International Coelenterate Conference", "variant_access_point": ["International Symposium on Coelenterate Biology"], "authorized_access_point": "International Coelenterate Conference"} 1 -2023-07-08 08:13:58.538334 2023-07-08 08:13:58.538348 bd92f602-c94b-45b7-96c5-d768087be26f {"md5": "862b2b81cffe24eb1d426efae335e2c0", "pid": "005124972", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/512497-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/512497-9", "source": "GND"}], "variant_name": ["Gymnasium in Wiesbaden", "Staatliches Gymnasium zu Wiesbaden"], "preferred_name": "Staatliches Gymnasium in Wiesbaden", "variant_access_point": ["Gymnasium in Wiesbaden", "Staatliches Gymnasium zu Wiesbaden"], "authorized_access_point": "Staatliches Gymnasium in Wiesbaden"} 1 -2023-07-08 08:13:58.664653 2023-07-08 08:13:58.664663 c28e38fc-7683-454a-9d5c-8d85d4832e4e {"md5": "9d6ccb05a6945509cbb0f2bbdcd1f748", "pid": "006002579", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/600257-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/600257-2", "source": "GND"}], "variant_name": ["International Symposium on Boron Chemistry", "Boron Chemistry", "International Meeting on Boron Compounds", "Boron Compounds", "International Meeting on Boron Chemistry", "Conférence Internationale sur les Composés de Bore", "International Conference on the Chemistry of Boron"], "preferred_name": "IMEBORON", "variant_access_point": ["International Symposium on Boron Chemistry", "Boron Chemistry. meeting", "International Meeting on Boron Compounds", "Boron Compounds. meeting", "International Meeting on Boron Chemistry", "Conférence Internationale sur les Composés de Bore", "International Conference on the Chemistry of Boron"], "authorized_access_point": "IMEBORON"} 1 -2023-07-08 08:13:58.800449 2023-07-08 08:13:58.80046 ffd780bd-1fb7-4a2f-a602-565a0cfd2f8a {"md5": "bfc9d833a34734eb6e6f3e7ce3cb2756", "pid": "006007295", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/600729-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/600729-6", "source": "GND"}], "variant_name": ["Shakespeare Conference"], "preferred_name": "Ohio Shakespeare Conference", "variant_access_point": ["Shakespeare Conference, Ohio"], "authorized_access_point": "Ohio Shakespeare Conference"} 1 -2023-07-08 08:13:58.908747 2023-07-08 08:13:58.908762 21c94cc4-b875-45c7-9dd6-44a0e7bba74c {"md5": "b7b46f5db2e7e777d4b106632c07c9cd", "pid": "006010008", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/601000-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/601000-3", "source": "GND"}], "preferred_name": "Realschule", "authorized_access_point": "Realschule. Schönberg, Mecklenburg"} 1 -2023-07-08 08:13:59.036916 2023-07-08 08:13:59.036929 3d2d59e0-a19f-4a36-af93-daca4eb44812 {"md5": "3c0c6b007f3f7f582d196c0bee7efd5f", "pid": "006058825", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/605882-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/605882-6", "source": "GND"}], "variant_name": ["Ministère des Droits de la Femme"], "preferred_name": "Frankreich. Ministère des Droits de la Femme", "country_associated": "fr", "date_of_termination": "1986", "variant_access_point": ["Ministère des Droits de la Femme. Frankreich"], "date_of_establishment": "1981", "authorized_access_point": "Frankreich. Ministère des Droits de la Femme"} 1 -2023-07-08 08:13:59.142353 2023-07-08 08:13:59.142369 a6dec42f-8417-4d36-b46c-0d6fd691eaab {"md5": "73ccc59e84bdaa9a8fec2db12f6bec4e", "pid": "006216722", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/621672-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/621672-9", "source": "GND"}], "preferred_name": "Convegno di Studi su Lucio Mastronardi", "country_associated": "it", "authorized_access_point": "Convegno di Studi su Lucio Mastronardi, 1981, Vigevano"} 1 -2023-07-08 08:13:59.282388 2023-07-08 08:13:59.282394 4c928a17-821d-456a-862f-5d08b8374573 {"md5": "8e8cac150e677ddfc0a07ea591c2c441", "pid": "006226663", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/622666-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/622666-8", "source": "GND"}], "preferred_name": "Hydrocarbon Processing Symposium", "country_associated": "xxu", "authorized_access_point": "Hydrocarbon Processing Symposium, 1986, New Orleans, La."} 1 -2023-07-08 08:13:59.391337 2023-07-08 08:13:59.391351 a7729a92-4511-4b11-993c-af6eeb004db7 {"md5": "c37336c93cfb337d79a73c774196a1c2", "pid": "006234224", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/623422-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/623422-7", "source": "GND"}], "variant_name": ["International Congress on Chemical and Biological Aspects of Vitamin B6 Catalysis", "Congress on Chemical and Biological Aspects of Vitamin B6 Catalysis, International"], "preferred_name": "International Congress on Chemical and Biological Aspects of Vitamin B 6 Catalysis", "variant_access_point": ["International Congress on Chemical and Biological Aspects of Vitamin B6 Catalysis", "Congress on Chemical and Biological Aspects of Vitamin B6 Catalysis, International"], "authorized_access_point": "International Congress on Chemical and Biological Aspects of Vitamin B 6 Catalysis"} 1 -2023-07-08 08:13:59.494533 2023-07-08 08:13:59.494536 9dbf85e0-402e-45b0-895e-2aab700694f9 {"md5": "396fa4c10288bdf14d58bf4515154376", "pid": "006237754", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/623775-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/623775-7", "source": "GND"}], "preferred_name": "Symposium Freizeit und Umwelt", "country_associated": "gw", "authorized_access_point": "Symposium Freizeit und Umwelt, 1985, Gießen"} 1 -2023-07-08 08:13:59.610616 2023-07-08 08:13:59.610629 d1851c42-045a-4e72-9103-95cab4eb022a {"md5": "178f3f53f80e2a919867d8dca74c68b8", "pid": "006243282", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/624328-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/624328-9", "source": "GND"}], "preferred_name": "Bibliothekswissenschaftliches Kolloquium", "authorized_access_point": "Bibliothekswissenschaftliches Kolloquium"} 1 -2023-07-08 08:13:59.836385 2023-07-08 08:13:59.836392 c6508f7b-ea1f-4e93-8057-6bbf7bc244d5 {"md5": "a3465e19ce2fa4e321d7243571d994c9", "pid": "006684378", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/668437-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/668437-3", "source": "GND"}], "preferred_name": "Symposium über das Neue UNCITRAL-Kaufrecht und Seine Unterschiede zum Geltenden österreichischen Recht", "country_associated": "au", "authorized_access_point": "Symposium über das Neue UNCITRAL-Kaufrecht und Seine Unterschiede zum Geltenden österreichischen Recht, 1983, Baden, Niederösterreich"} 1 -2023-07-08 08:13:59.945543 2023-07-08 08:13:59.945551 a9a08af2-45ce-44ca-ae20-e1fb421ff9cc {"md5": "8cb42d1481e574544b77a125baae6762", "pid": "006688977", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/668897-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/668897-4", "source": "GND"}], "variant_name": ["INA", "Institut national de la communication audiovisuelle", "Frankreich. Institut national de la communication audiovisuelle"], "preferred_name": "Institut national de la communication audiovisuelle", "country_associated": "fr", "date_of_termination": "30.09.1986", "variant_access_point": ["INA. Abkuerzung", "Institut national de la communication audiovisuelle. Frankreich", "Frankreich. Institut national de la communication audiovisuelle"], "date_of_establishment": "29.07.1982", "authorized_access_point": "Institut national de la communication audiovisuelle. Bry-sur-Marne"} 1 -2023-07-08 08:14:00.075336 2023-07-08 08:14:00.075342 e69e3935-6a23-4ce8-8998-0648c4da5d5b {"md5": "f00d8ec148b56d90a0e8499ddc1ab929", "pid": "006693911", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/669391-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/669391-X", "source": "GND"}], "variant_name": ["Ausstellung Schleswig-Holsteinischer Künstler, 16"], "preferred_name": "Ausstellung Malerei und Plastik, 16", "country_associated": "gw", "variant_access_point": ["Ausstellung Schleswig-Holsteinischer Künstler, 16, 1986, Plön"], "authorized_access_point": "Ausstellung Malerei und Plastik, 16, 1986, Plön"} 1 -2023-07-08 08:14:00.196959 2023-07-08 08:14:00.196964 8e0ad752-e551-46cb-97da-81aee2a2a4e3 {"md5": "268de0afaca07604bdb330c7584f511f", "pid": "006699618", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/669961-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/669961-3", "source": "GND"}], "variant_name": ["IAM"], "preferred_name": "International Association for Mentoring", "variant_access_point": ["IAM. Abkuerzung"], "date_of_establishment": "1986", "authorized_access_point": "International Association for Mentoring", "biographical_information": ["Sitz: Vancouver"]} 1 -2023-07-08 08:14:00.299857 2023-07-08 08:14:00.299866 cdc519cd-8a62-4e04-9470-fac9dc15649b {"md5": "e4dea27d30bb93466998b18435194ed6", "pid": "006705847", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/670584-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/670584-4", "source": "GND"}], "preferred_name": "Ausstellung Trompeten, Flöten und Schalmeien", "authorized_access_point": "Ausstellung Trompeten, Flöten und Schalmeien, 1986, Herne"} 1 -2023-07-08 08:14:00.424317 2023-07-08 08:14:00.424328 219482b8-93c3-4b09-9fdf-af6d1944fadc {"md5": "53b15e93d94acd0cecb8a1b8fbdae2a9", "pid": "007015089", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2047921-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2047921-9", "source": "GND"}], "variant_name": ["Arbeitskreis Atom", "Arbeitskreis Atom im Bund für Umweltschutz e.V. Tübingen"], "preferred_name": "Bund für Umweltschutz e.V. Tübingen. Arbeitskreis Atom", "country_associated": "gw", "variant_access_point": ["Arbeitskreis Atom. Bund für Umweltschutz e.V. Tübingen", "Arbeitskreis Atom im Bund für Umweltschutz e.V. Tübingen. Unveraenderte Form"], "authorized_access_point": "Bund für Umweltschutz e.V. Tübingen. Arbeitskreis Atom"} 1 -2023-07-08 08:14:00.544056 2023-07-08 08:14:00.544072 57a9f09d-d9a8-4a61-ae35-9deb552d4949 {"md5": "85516d857af4b6e85ca6a32593537003", "pid": "007030150", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2049688-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2049688-6", "source": "GND"}], "preferred_name": "Hochschule für Verkehrswesen Friedrich List. Sektion Marxismus-Leninismus", "authorized_access_point": "Hochschule für Verkehrswesen Friedrich List. Sektion Marxismus-Leninismus"} 1 -2023-07-08 08:14:00.658751 2023-07-08 08:14:00.658761 1a9b8cbb-b01d-4d59-a1fc-dbc9444a61eb {"md5": "acc99e2fd6737f7127f82f6e52e06e40", "pid": "007031394", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2049825-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2049825-1", "source": "GND"}], "variant_name": ["KAP"], "preferred_name": "Kooperative Abteilung Pflanzenproduktion", "variant_access_point": ["KAP. Abkuerzung"], "authorized_access_point": "Kooperative Abteilung Pflanzenproduktion. Dargun"} 1 -2023-07-08 08:14:00.91067 2023-07-08 08:14:00.910677 5db444d0-680b-4d68-a5fd-057d46c05dbc {"md5": "8828375f7dc9b6b34cb23ee664e1b9fc", "pid": "007032641", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2049965-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2049965-6", "source": "GND"}], "variant_name": ["Institut für Philosophie"], "preferred_name": "Ruhr-Universität Bochum. Institut für Philosophie", "country_associated": "gw", "variant_access_point": ["Institut für Philosophie. Bochum"], "authorized_access_point": "Ruhr-Universität Bochum. Institut für Philosophie"} 1 -2023-07-08 08:14:01.037601 2023-07-08 08:14:01.037613 158e96d3-fc2f-4fc4-b0dc-8fb45c18d8ed {"md5": "f989587b49848343e55a9f009a191351", "pid": "007059981", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2053225-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2053225-8", "source": "GND"}], "variant_name": ["Verwaltungsgemeinschaft Grub am Forst"], "preferred_name": "Verwaltungsgemeinschaft Grub a. Forst", "country_associated": "gw", "variant_access_point": ["Verwaltungsgemeinschaft Grub am Forst. Unveraenderte Form"], "authorized_access_point": "Verwaltungsgemeinschaft Grub a. Forst"} 1 -2023-07-08 08:14:01.157367 2023-07-08 08:14:01.157381 328528ee-2fb6-4da4-9f36-b1efce83b770 {"md5": "960a03a5c48fb6c5c46839321537f67f", "pid": "007060637", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2053302-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2053302-0", "source": "GND"}], "preferred_name": "Polizei-Landesmeisterschaften im Polizei-Fünfkampf und Faustball", "country_associated": "gw", "authorized_access_point": "Polizei-Landesmeisterschaften im Polizei-Fünfkampf und Faustball, 1957, Linnich"} 1 -2023-07-08 08:14:01.286592 2023-07-08 08:14:01.286604 a3d76b91-4a82-4387-a4c4-13905f4ef664 {"md5": "07f5eaa31ec9563b97687974b98aec57", "pid": "007061757", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2053423-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2053423-1", "source": "GND"}], "variant_name": ["Thomson-CSF GmbH. Division Semiconducteurs", "Thomson-CSF GmbH. Bauelemente"], "preferred_name": "Thomson-CSF GmbH. Bereich Halbleiter SESCOSEM", "country_associated": "gw", "variant_access_point": ["Thomson-CSF GmbH. München. Division Semiconducteurs", "Thomson-CSF GmbH. München. Bauelemente"], "authorized_access_point": "Thomson-CSF GmbH. München. Bereich Halbleiter SESCOSEM"} 1 -2023-07-08 08:14:01.41014 2023-07-08 08:14:01.410148 f659b653-d003-4507-97e1-add54ea5b703 {"md5": "ab8737225de481e842c5ac25d700fc87", "pid": "007097123", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2057530-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2057530-0", "source": "GND"}], "preferred_name": "Kreishandwerkerschaft", "country_associated": "gw", "authorized_access_point": "Kreishandwerkerschaft. Warendorf"} 1 -2023-07-08 08:14:01.504796 2023-07-08 08:14:01.504804 d2b7a2da-a656-4c25-9cb9-645e73f9dcab {"md5": "d21501ac1458661ba84b6d0e968e5e96", "pid": "007100434", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2057906-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2057906-8", "source": "GND"}], "variant_name": ["Glashütten-Actien-Gesellschaft", "Rheinische Glashütten-Actien-Gesellschaft"], "preferred_name": "Rheinische Glashütten-Actien-Gesellschaft", "variant_access_point": ["Glashütten-Actien-Gesellschaft. Ehrenfeld", "Rheinische Glashütten-Actien-Gesellschaft. Ehemalige Vorzugsbenennung SWD"], "authorized_access_point": "Rheinische Glashütten-Actien-Gesellschaft. Ehrenfeld"} 1 -2023-07-08 08:14:01.623026 2023-07-08 08:14:01.62304 61b72f61-5fca-4801-98d5-6b23be57011a {"md5": "95688a4e373a97d9e06cbc2b20aa6a2a", "pid": "007104456", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2058376-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2058376-X", "source": "GND"}], "variant_name": ["Jungsozialisten in der SPD Hessen-Nord", "Jungsozialisten in der SPD Bezirk Hessen-Nord"], "preferred_name": "Sozialdemokratische Partei Deutschlands. Arbeitsgemeinschaft der Jungsozialisten. Bezirk Hessen-Nord", "country_associated": "gw", "variant_access_point": ["Jungsozialisten in der SPD Hessen-Nord", "Jungsozialisten in der SPD Bezirk Hessen-Nord"], "authorized_access_point": "Sozialdemokratische Partei Deutschlands. Arbeitsgemeinschaft der Jungsozialisten. Bezirk Hessen-Nord"} 1 -2023-07-08 08:14:01.740821 2023-07-08 08:14:01.74083 46c1797e-6962-4f4c-bec5-94c6c230aa0b {"md5": "e5477997a630f3174a148a7de6649d6c", "pid": "007104804", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2058413-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2058413-1", "source": "GND"}], "preferred_name": "Arbeitskreis Stadtzeitung", "country_associated": "gw", "authorized_access_point": "Arbeitskreis Stadtzeitung. Filderstadt"} 1 -2023-07-08 08:14:01.849582 2023-07-08 08:14:01.849595 02a0008f-e6ed-4f76-af5d-be6ea27e18f8 {"md5": "7a74c004f000b86401cad7bf4df8224f", "pid": "007119666", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2060458-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2060458-0", "source": "GND"}], "variant_name": ["Vereinigung Besorgter Wissenschaftler", "UCS"], "preferred_name": "Union of Concerned Scientists", "country_associated": "xxu", "variant_access_point": ["Vereinigung Besorgter Wissenschaftler", "UCS. Abkuerzung"], "authorized_access_point": "Union of Concerned Scientists"} 1 -2023-07-08 08:14:01.966558 2023-07-08 08:14:01.966564 b0acb3f2-ac20-45a3-afbc-129bec32f678 {"md5": "eec0b71101e39679c1566e6a74316880", "pid": "007172125", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2066576-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2066576-3", "source": "GND"}], "preferred_name": "Ausstellung Der Deutsche PEN-Club im Exil 1933 - 1948", "country_associated": "gw", "authorized_access_point": "Ausstellung Der Deutsche PEN-Club im Exil 1933 - 1948, 1980 - 1981, Frankfurt, Main"} 1 -2023-07-08 08:14:02.08686 2023-07-08 08:14:02.086871 1f6acc89-7926-4243-8c1f-3002880352cd {"md5": "99a2167ba168665577d3f725b94d5344", "pid": "007207409", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2070791-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2070791-5", "source": "GND"}], "variant_name": ["Interdisziplinäres Symposium Morbus Crohn, Kolorektale Chirurgie, Colitis Ulcerosa"], "preferred_name": "Interdisziplinäres Symposium Morbus Crohn, Kolorektale Chirurgie, Colitis Ulcerosa", "country_associated": "gw", "variant_access_point": ["Interdisziplinäres Symposium Morbus Crohn, Kolorektale Chirurgie, Colitis Ulcerosa, 1981, Planegg"], "authorized_access_point": "Interdisziplinäres Symposium Morbus Crohn, Kolorektale Chirurgie, Colitis Ulcerosa, 1981, Martinsried"} 1 -2023-07-08 08:14:02.201656 2023-07-08 08:14:02.20167 dd5817c8-3d1a-4c5a-a9c9-2747aee2e494 {"md5": "91b6b55c73825a66c0d6a45eed1ffadb", "pid": "007209320", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2070997-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2070997-3", "source": "GND"}], "preferred_name": "Hochheimer Markt, 494", "authorized_access_point": "Hochheimer Markt, 494, 1977"} 1 -2023-07-08 08:14:08.396323 2023-07-08 08:14:08.39633 6cf57637-6124-4641-b662-2f09561ea65a {"md5": "7824e9fbcfae579a02ea96fbf7e92541", "pid": "007783574", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2131727-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2131727-6", "source": "GND"}], "preferred_name": "Kreishandwerkerschaft", "country_associated": "gw", "authorized_access_point": "Kreishandwerkerschaft. Cottbus"} 1 -2023-07-08 08:14:02.325678 2023-07-08 08:14:02.325688 66443cbd-dace-4280-8bc8-4c95cc3e9910 {"md5": "a091d599b611f3c2285cbc707a41be04", "pid": "007210019", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2071078-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2071078-1", "source": "GND"}], "variant_name": ["Morus-Gesellschaft", "Association Amici Thomae Mori, German section", "Amici Thomae Mori. Deutsche Sektion", "Amici Thomae Mori. German section"], "preferred_name": "Thomas-Morus-Gesellschaft", "country_associated": "gw", "date_of_termination": "2000", "variant_access_point": ["Morus-Gesellschaft", "Association Amici Thomae Mori, German section. Unveraenderte Form", "Amici Thomae Mori. Deutsche Sektion", "Amici Thomae Mori. German section"], "date_of_establishment": "1980", "authorized_access_point": "Thomas-Morus-Gesellschaft"} 1 -2023-07-08 08:14:02.441539 2023-07-08 08:14:02.441545 b1749d78-a63d-432f-a3fe-e013db9c87d4 {"md5": "b130118f8fc4087e99af068b1bb04ec6", "pid": "007221010", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2072276-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2072276-X", "source": "GND"}], "variant_name": ["Duerr Anlagenbau gmbh. Produktbereich Umwelttechnik"], "preferred_name": "Dürr-Anlagenbau GmbH. Produktbereich Umwelttechnik", "country_associated": "gw", "variant_access_point": ["Duerr Anlagenbau gmbh. Stuttgart. Produktbereich Umwelttechnik"], "authorized_access_point": "Dürr-Anlagenbau GmbH. Stuttgart. Produktbereich Umwelttechnik"} 1 -2023-07-08 08:14:02.54754 2023-07-08 08:14:02.547552 2117521c-a960-4ae2-8d14-e0089230b7c3 {"md5": "6660d02496a6e66753a78126708f4b3b", "pid": "007229003", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2073117-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2073117-6", "source": "GND"}], "preferred_name": "Autorengemeinschaft Hochbau", "authorized_access_point": "Autorengemeinschaft Hochbau"} 1 -2023-07-08 08:14:02.680429 2023-07-08 08:14:02.680434 1a5aeba8-11d4-4c5d-8916-0429bb474ce8 {"md5": "17abf7b45dd3f98c2b3f373480846ed9", "pid": "007233000", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2073541-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2073541-8", "source": "GND"}], "variant_name": ["International Social Security Association. Internationale Sektion für die Verhütung von Arbeitsunfällen und Berufskrankheiten in der Chemischen Industrie", "International Social Security Association. Comité International pour la Prévention des Risques et des Maladies Professionnelles dans l'Industrie Chimique", "International Social Security Association. Comité Internacional para la Prevencion de Riesgos Profesionales en la Industria Quimica", "International Social Security Association. Sezione Internazionale per la Prevenzione dei Rischi Professionali nell'Industria Chimica"], "preferred_name": "International Social Security Association. International Section for the Prevention of Occupational Accidents and Diseases in the Chemical Industry", "date_of_termination": "1989", "variant_access_point": ["International Social Security Association. Internationale Sektion für die Verhütung von Arbeitsunfällen und Berufskrankheiten in der Chemischen Industrie. International Section for the Prevention of Occupational Accidents and Diseases in the Chemical Industry", "International Social Security Association. Comité International pour la Prévention des Risques et des Maladies Professionnelles dans l'Industrie Chimique", "International Social Security Association. Comité Internacional para la Prevencion de Riesgos Profesionales en la Industria Quimica", "International Social Security Association. Sezione Internazionale per la Prevenzione dei Rischi Professionali nell'Industria Chimica. 1980 - 1989"], "date_of_establishment": "1980", "authorized_access_point": "International Social Security Association. International Section for the Prevention of Occupational Accidents and Diseases in the Chemical Industry"} 1 -2023-07-08 08:14:02.791822 2023-07-08 08:14:02.791835 27f8f1e7-a667-4d0d-92d1-3bbac9f3fd99 {"md5": "148d61f8caffb4fb650a95c8c9f1b233", "pid": "007251920", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2075556-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2075556-9", "source": "GND"}], "preferred_name": "Daimler-Benz-Aktiengesellschaft. Öffentlichkeitsarbeit, Wirtschafts- und Verkehrspolitik", "authorized_access_point": "Daimler-Benz-Aktiengesellschaft. Öffentlichkeitsarbeit, Wirtschafts- und Verkehrspolitik", "biographical_information": ["telM CIP"]} 1 -2023-07-08 08:14:02.90425 2023-07-08 08:14:02.904263 8893bf9e-e34b-4610-914b-87b5525de476 {"md5": "579d5664e718bc34709c06f3fe327e61", "pid": "007262329", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2076650-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2076650-6", "source": "GND"}], "preferred_name": "Wortwerkstatt", "authorized_access_point": "Wortwerkstatt"} 1 -2023-07-08 08:14:03.037798 2023-07-08 08:14:03.037804 4c3bab31-1a9d-430f-be21-c0e87029c8ad {"md5": "5e22abc51f7e4f9215bd767e9d50aa9e", "pid": "007269358", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2077396-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2077396-1", "source": "GND"}], "variant_name": ["Internationales Paneuropa-Bildungswerk", "Action de formation paneurope internationale", "International Paneuropa Educational Organisation", "Paneuropa Educational Organisation"], "preferred_name": "Paneuropa-Bildungswerk", "variant_access_point": ["Internationales Paneuropa-Bildungswerk", "Action de formation paneurope internationale", "International Paneuropa Educational Organisation", "Paneuropa Educational Organisation"], "date_of_establishment": "1975", "authorized_access_point": "Paneuropa-Bildungswerk"} 1 -2023-07-08 08:14:03.168749 2023-07-08 08:14:03.168762 2386836f-6b5c-48f9-80fd-35bf8a87d8b7 {"md5": "1b3492f4b6547bf9262dbfcd86e602fc", "pid": "007284659", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2079005-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2079005-3", "source": "GND"}], "preferred_name": "Tagung Wirtschaftsinformatik an Kaufmännischen Schulen", "country_associated": "gw", "authorized_access_point": "Tagung Wirtschaftsinformatik an Kaufmännischen Schulen, 1983, Göttingen"} 1 -2023-07-08 08:14:03.270842 2023-07-08 08:14:03.27467 01a59873-c44d-4916-8498-92988d3e868f {"md5": "0eb75c39d6b99ba56c7619cb6f801e3b", "pid": "007305117", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2081135-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2081135-4", "source": "GND"}], "variant_name": ["Kunststoff-Kolloquium, 8"], "preferred_name": "Darmstädter Kunststoff-Kolloquium, 8", "country_associated": "gw", "variant_access_point": ["Kunststoff-Kolloquium, 8, 1982, Darmstadt"], "authorized_access_point": "Darmstädter Kunststoff-Kolloquium, 8, 1982, Darmstadt"} 1 -2023-07-08 08:14:03.403226 2023-07-08 08:14:03.403239 c57f4813-742c-4a87-b9b4-996808d31fbc {"md5": "42b8eacb3735f5c1fdbcb3242666c34c", "pid": "007309600", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2081602-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2081602-9", "source": "GND"}], "preferred_name": "Kongress Wasser", "country_associated": "gw", "authorized_access_point": "Kongress Wasser, 1985, Berlin, West"} 1 -2023-07-08 08:17:11.751864 2023-07-08 08:17:11.751872 135cf313-fd27-42fd-81bb-55d55883f633 {"md5": "6d7bd031117deb95cee4e63e4cb1bf46", "pid": "141136618", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141136618", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141136618", "source": "GND"}], "preferred_name": "Xu, Xiaoqing", "authorized_access_point": "Xu, Xiaoqing"} 1 -2023-07-08 08:14:03.4998 2023-07-08 08:14:03.499834 75c5ca69-91cd-4b0d-84b7-d80a8e0378e2 {"md5": "3646c568e45ca512e9511ea2b33f3c90", "pid": "007310005", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2081644-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2081644-3", "source": "GND"}], "variant_name": ["Literaturbüro NW", "Düsseldorfer Literaturbüro", "Literaturbüro", "Düsseldorfer Literaturbüro NW", "Literarurbüro NW", "Literaturbüro NRW", "Literaturbüro Nordrhein-Westfalen e.V.", "Literaturbüro NW"], "preferred_name": "Literaturbüro Nordrhein-Westfalen", "country_associated": "gw", "variant_access_point": ["Literaturbüro NW", "Düsseldorfer Literaturbüro", "Literaturbüro. Düsseldorf", "Düsseldorfer Literaturbüro NW", "Literarurbüro NW", "Literaturbüro NRW. Düsseldorf", "Literaturbüro Nordrhein-Westfalen e.V.. Düsseldorf", "Literaturbüro NW. Düsseldorf"], "date_of_establishment": "1980", "authorized_access_point": "Literaturbüro Nordrhein-Westfalen", "biographical_information": ["Gegründet 1980 vom Land NRW, mit festem Sitz in Düsseldorf"]} 1 -2023-07-08 08:14:03.631666 2023-07-08 08:14:03.63168 80f31a61-52ef-4a27-9567-30f5a34f7e7e {"md5": "96d3ca21faef56ae11864bfe78b222e1", "pid": "00731566X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2082225-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2082225-X", "source": "GND"}], "variant_name": ["Spiritualistisch-Christlicher Orden", "Der Spiritualistisch-Christliche Orden"], "preferred_name": "Ordem Espiritualista Christã", "variant_access_point": ["Spiritualistisch-Christlicher Orden", "Der Spiritualistisch-Christliche Orden"], "authorized_access_point": "Ordem Espiritualista Christã", "biographical_information": ["ausserkirchliche brasilian. Bewegung"]} 1 -2023-07-08 08:14:03.751108 2023-07-08 08:14:03.75112 589db99c-41e4-4b0b-8271-573cd8b4a5db {"md5": "21d0b7e109fe0b1ad6424c6ed639c62c", "pid": "007318413", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2082506-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2082506-7", "source": "GND"}], "variant_name": ["Wohnungswirtschaftliches Institut", "MaWok", "Arbeitsgemeinschaft für Wohnungswesen, Kreditwirtschaft und Raumplanung", "MaWoK"], "preferred_name": "Mannheimer Arbeitsgemeinschaft für Wohnungswesen, Kreditwirtschaft und Raumplanung", "country_associated": "gw", "variant_access_point": ["Wohnungswirtschaftliches Institut. Mannheim", "MaWok. Abkuerzung", "Arbeitsgemeinschaft für Wohnungswesen, Kreditwirtschaft und Raumplanung. Mannheim", "MaWoK. Mannheimer Arbeitsgemeinschaft für Wohnungswesen, Kreditwirtschaft und Raumplanung"], "authorized_access_point": "Mannheimer Arbeitsgemeinschaft für Wohnungswesen, Kreditwirtschaft und Raumplanung"} 1 -2023-07-08 08:14:03.868652 2023-07-08 08:14:03.868668 78556bb9-e36d-4040-a060-077cc9c489a4 {"md5": "156c5497371e21c2639b5166193a8ee8", "pid": "007319126", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2082578-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2082578-X", "source": "GND"}], "variant_name": ["Verein der Heimatfreunde", "Verein der Heimatfreunde", "Verein der Heimatfreunde Eschweiler-Kinzweiler 1959", "Verein der Heimatfreunde Neunzehnhundertneunundfünfzig", "Verein der Heimatfreunde 1959"], "preferred_name": "Verein der Heimatfreunde Kinzweiler 1959", "country_associated": "gw", "variant_access_point": ["Verein der Heimatfreunde. Kinzweiler", "Verein der Heimatfreunde. Eschweiler-Kinzweiler", "Verein der Heimatfreunde Eschweiler-Kinzweiler 1959", "Verein der Heimatfreunde Neunzehnhundertneunundfünfzig", "Verein der Heimatfreunde 1959. Ehemalige Vorzugsbenennung SWD"], "authorized_access_point": "Verein der Heimatfreunde Kinzweiler 1959", "biographical_information": ["e.V."]} 1 -2023-07-08 08:14:03.981282 2023-07-08 08:14:03.981294 a6682ba3-6875-4f49-b882-b9bd33529f1a {"md5": "26b72d7455dba332203ba2169872f86c", "pid": "007322062", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2082881-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2082881-0", "source": "GND"}], "preferred_name": "Phlebologie-Expertengespräch", "country_associated": "au", "authorized_access_point": "Phlebologie-Expertengespräch, 1984, Wien"} 1 -2023-07-08 08:14:04.128869 2023-07-08 08:14:04.128879 bb9369db-7932-4c73-b813-316b4f25ffbd {"md5": "962603f04e4d4fea72aad0a6df3193f0", "pid": "007353189", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2086168-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2086168-0", "source": "GND"}], "preferred_name": "Niederrhein-Tagung, 2", "country_associated": "ne", "authorized_access_point": "Niederrhein-Tagung, 2, 1982, Nimwegen"} 1 -2023-07-08 08:14:04.243308 2023-07-08 08:14:04.243319 bf74b43b-1ee2-475f-b93a-5e86df53e8d4 {"md5": "9c78fe187c75f11ae65e20d1f4bc0aae", "pid": "007365950", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2087514-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2087514-9", "source": "GND"}], "variant_name": ["GEHE-Aktiengesellschaft"], "preferred_name": "Gehe AG", "country_associated": "gw", "date_of_termination": "2003", "variant_access_point": ["GEHE-Aktiengesellschaft"], "date_of_establishment": "1981", "authorized_access_point": "Gehe AG"} 1 -2023-07-08 08:14:04.359047 2023-07-08 08:14:04.359059 185edec2-2021-44c3-bd84-004aa84e7d11 {"md5": "571bc36dbb7e2ddfe4911c74d7566db8", "pid": "007366701", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2087592-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2087592-7", "source": "GND"}], "variant_name": ["Sonderforschungsbereich Information und die Koordination Wirtschaftlicher Aktivitäten. Projektbereich"], "preferred_name": "Sonderforschungsbereich Information und die Koordination Wirtschaftlicher Aktivitäten. Projektbereich Variable und Informationsabhängige Strukturen", "country_associated": "gw", "variant_access_point": ["Sonderforschungsbereich Information und die Koordination Wirtschaftlicher Aktivitäten. Bonn. Projektbereich. B"], "authorized_access_point": "Sonderforschungsbereich Information und die Koordination Wirtschaftlicher Aktivitäten. Bonn. Projektbereich Variable und Informationsabhängige Strukturen"} 1 -2023-07-08 08:14:08.487106 2023-07-08 08:14:08.487113 86056b2e-e3a7-47a0-8d51-c99c557bc7c6 {"md5": "38aca500f177cb9476753b98b80f405e", "pid": "007792948", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2132705-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2132705-1", "source": "GND"}], "preferred_name": "Fest der Jugendchöre der DDR, 4", "authorized_access_point": "Fest der Jugendchöre der DDR, 4, 1986, Schwerin"} 1 -2023-07-08 08:14:04.473849 2023-07-08 08:14:04.473855 daaf3a22-4e97-488b-a659-74734703662c {"md5": "79fd80b343f359de51cbda84529c6e4e", "pid": "007378238", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2088784-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2088784-X", "source": "GND"}], "variant_name": ["Wiener Popper-Symposium", "Symposium aus Anlaß des Achtzigsten Geburtstages von Karl R. Popper", "Vídeňske Popperovské Sympozium", "Symposium Popper", "Simpozionul Organizat cu Ocazia Aniversarii a 80 de Ani de Viata a Lui Karl R. Popper", "Symposium Popper", "Popper"], "preferred_name": "Popper-Symposium", "country_associated": "au", "variant_access_point": ["Wiener Popper-Symposium, 1983, Wien", "Symposium aus Anlaß des Achtzigsten Geburtstages von Karl R. Popper, 1983, Wien", "Vídeňske Popperovské Sympozium, 1983, Wien", "Symposium Popper, 1983, Wien", "Simpozionul Organizat cu Ocazia Aniversarii a 80 de Ani de Viata a Lui Karl R. Popper, 1983, Wien", "Symposium Popper, 1983, Vienne", "Popper, 1983, Vienne"], "authorized_access_point": "Popper-Symposium, 1983, Wien", "biographical_information": ["Keine Dublette zu IDN 006630677 und 006466893; anderer Veranst."]} 1 -2023-07-08 08:14:04.59374 2023-07-08 08:14:04.593751 42ebb445-4261-45b5-9c55-827917d2336c {"md5": "eebf0ef22c994cf0bf2741fa6111c1ea", "pid": "007386133", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2089597-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2089597-5", "source": "GND"}], "variant_name": ["LIM, 3"], "preferred_name": "International Conference on Lasers in Manufacturing, 3", "country_associated": "fr", "variant_access_point": ["LIM, 3, 1986, Paris. IFS (Conferences) Ltd., Kempston"], "authorized_access_point": "International Conference on Lasers in Manufacturing, 3, 1986, Paris. IFS (Conferences) Ltd., Kempston"} 1 -2023-07-08 08:14:04.716897 2023-07-08 08:14:04.71691 1f38113c-9fe4-44f9-80bf-c36261ee99fd {"md5": "adbe9857f67f0bac8e09279c1d21d3e3", "pid": "007391765", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2090173-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2090173-2", "source": "GND"}], "variant_name": ["Symposium on Ultrasound in Biology and Medicine, 7", "Conference on Ultrasonics in Biology and Medicine, 7", "Symposium on Ultrasound in Biology and Medicine: UBIOMED VII--Eisenach, GDR, November 1986"], "preferred_name": "UBIOMED, 7", "variant_access_point": ["Symposium on Ultrasound in Biology and Medicine, 7, 1986, Eisenach", "Conference on Ultrasonics in Biology and Medicine, 7, 1986, Eisenach", "Symposium on Ultrasound in Biology and Medicine: UBIOMED VII--Eisenach, GDR, November 1986"], "authorized_access_point": "UBIOMED, 7, 1986, Eisenach", "biographical_information": ["Info: UBIOMED VI--Jablonna, Poland, September 1983"]} 1 -2023-07-08 08:14:04.837461 2023-07-08 08:14:04.837473 32009335-e063-4c62-a57c-1f7d9616e705 {"md5": "0ac109c86d67146460efcddd84b4565d", "pid": "007396848", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2090692-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2090692-4", "source": "GND"}], "preferred_name": "Evangelischer Krankenhaus-Kongress", "country_associated": "gw", "authorized_access_point": "Evangelischer Krankenhaus-Kongress, 1983, Fellbach"} 1 -2023-07-08 08:14:04.936268 2023-07-08 08:14:04.936279 1440fadf-dc06-48aa-8422-2d7ebfc12292 {"md5": "afaae1076f3ae8724129ed7e3c8537ca", "pid": "007405995", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2091641-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2091641-3", "source": "GND"}], "variant_name": ["Hochschule Sankt Gallen für Wirtschafts- und Sozialwissenschaften. Institut für Politikwissenschaft", "Universität St. Gallen. Institut für Politikwissenschaft"], "preferred_name": "Institut für Politikwissenschaft", "country_associated": "sz", "variant_access_point": ["Hochschule Sankt Gallen für Wirtschafts- und Sozialwissenschaften. Institut für Politikwissenschaft", "Universität St. Gallen. Institut für Politikwissenschaft"], "authorized_access_point": "Institut für Politikwissenschaft. Sankt Gallen"} 1 -2023-07-08 08:14:05.073072 2023-07-08 08:14:05.073079 1451daa6-4e87-4f55-b339-b3f04af9171c {"md5": "25e1d26bdf0a0da3bf1c6e3627994ca6", "pid": "007412193", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2092284-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2092284-X", "source": "GND"}], "variant_name": ["International Symposium Ultrafast Phenomena in Spectroscopy, 2"], "preferred_name": "UPS, 2", "variant_access_point": ["International Symposium Ultrafast Phenomena in Spectroscopy, 2, 1980, Friedrichroda"], "authorized_access_point": "UPS, 2, 1980, Friedrichroda", "biographical_information": ["Initiale tritt hervor"]} 1 -2023-07-08 08:14:05.164147 2023-07-08 08:14:05.16416 04aaac54-790c-4b3e-b499-72bb97f945e8 {"md5": "7c739a75619c97aefe798811e9013d2e", "pid": "007420501", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2093132-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2093132-3", "source": "GND"}], "preferred_name": "Heimat- und Trachtenverein", "country_associated": "gw", "authorized_access_point": "Heimat- und Trachtenverein. Thierhaupten"} 1 -2023-07-08 08:14:05.278127 2023-07-08 08:14:05.278138 f75b0bf0-3bf6-4546-9bac-1d015c7f3302 {"md5": "87ae3a9ccc62322693438e31a0e86885", "pid": "007426321", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2093728-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2093728-3", "source": "GND"}], "preferred_name": "Kreis zur Förderung des Instituts für Genossenschaftswesen der Universität Hamburg", "authorized_access_point": "Kreis zur Förderung des Instituts für Genossenschaftswesen der Universität Hamburg", "biographical_information": ["e.V., CIP"]} 1 -2023-07-08 08:14:05.387743 2023-07-08 08:14:05.387756 515290a4-818b-4e02-a02c-fcc55dc6c410 {"md5": "bb9ef304f26b0a5cd0f03d887720775a", "pid": "007439210", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2095054-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2095054-8", "source": "GND"}], "preferred_name": "Alt-Brigensis", "authorized_access_point": "Alt-Brigensis", "biographical_information": ["Studentenverbindung, Brig, Kanton Wallis"]} 1 -2023-07-08 08:14:05.488569 2023-07-08 08:14:05.488578 32cf1710-e238-4f41-9e03-d1a9bc5b8785 {"md5": "1965d319500ac9ad527029665a0251f6", "pid": "007444788", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2095645-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2095645-9", "source": "GND"}], "variant_name": ["Evangelische Kirchengemeinde", "Evangelische Kirche", "Evangelische Kirche"], "preferred_name": "Evangelische Kirchengemeinde", "country_associated": "gw", "variant_access_point": ["Evangelische Kirchengemeinde. Sooden-Allendorf-Oberrieden", "Evangelische Kirche. Oberrieden, Sooden-Allendorf", "Evangelische Kirche. Sooden-Allendorf-Oberrieden"], "authorized_access_point": "Evangelische Kirchengemeinde. Oberrieden, Sooden-Allendorf"} 1 -2023-07-08 08:14:05.588605 2023-07-08 08:14:05.588618 fc96f1d1-2579-46de-af30-e5ed9a2861f5 {"md5": "c098b54ef76261da33985cbc6fb32ea1", "pid": "007453523", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2096571-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2096571-0", "source": "GND"}], "variant_name": ["Bibliothek für Internationale Schwule Zeitschriften"], "preferred_name": "Bibliothek für Internationale Schwule Zeitschriften", "country_associated": "gw", "variant_access_point": ["Bibliothek für Internationale Schwule Zeitschriften. Ehemalige Vorzugsbenennung SWD"], "authorized_access_point": "Bibliothek für Internationale Schwule Zeitschriften. Nürnberg"} 1 -2023-07-08 08:14:05.687447 2023-07-08 08:14:05.687455 8b9916ac-357f-42bc-9362-a47977220901 {"md5": "5156f2158a691e8c49e931058393eda4", "pid": "007473338", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2098730-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2098730-4", "source": "GND"}], "variant_name": ["KZ-Gedenkstätte", "KZ-Gedenkstätte Oberer Kuhberg", "Dokumentationszentrum Oberer Kuhberg", "Dokumentationszentrum Oberer Kuhberg Ulm, KZ-Gedenkstätte", "DZOK", "KZ-Gedenkstätte", "Dokumentationszentrum Oberer Kuhberg - KZ-Gedenkstätte", "Dokumentationszentrum Oberer Kuhberg Ulm e.V.", "Verein Dokumentationszentrum Oberer Kuhberg", "Verein Dokumentationszentrum Oberer Kuhberg - KZ Gedenkstätte"], "preferred_name": "Dokumentationszentrum Oberer Kuhberg Ulm e.V. - KZ-Gedenkstätte", "country_associated": "gw", "variant_access_point": ["KZ-Gedenkstätte. Ulm", "KZ-Gedenkstätte Oberer Kuhberg. Ulm", "Dokumentationszentrum Oberer Kuhberg. Ulm", "Dokumentationszentrum Oberer Kuhberg Ulm, KZ-Gedenkstätte", "DZOK. Abkuerzung", "KZ-Gedenkstätte", "Dokumentationszentrum Oberer Kuhberg - KZ-Gedenkstätte. Ehemalige Vorzugsbenennung SWD", "Dokumentationszentrum Oberer Kuhberg Ulm e.V.", "Verein Dokumentationszentrum Oberer Kuhberg. Ulm", "Verein Dokumentationszentrum Oberer Kuhberg - KZ Gedenkstätte. Ulm"], "authorized_access_point": "Dokumentationszentrum Oberer Kuhberg Ulm e.V. - KZ-Gedenkstätte"} 1 -2023-07-08 08:14:05.822712 2023-07-08 08:14:05.822718 f1cb0929-e5f4-4683-bb00-ebe42817f4b7 {"md5": "f7281f577afd6e60e4b354aab8bf6486", "pid": "007495684", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2101084-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2101084-5", "source": "GND"}], "preferred_name": "Stadtsparkasse", "country_associated": "gw", "authorized_access_point": "Stadtsparkasse. Burscheid, Rheinisch-Bergischer Kreis"} 1 -2023-07-08 08:14:05.942925 2023-07-08 08:14:05.942937 23921189-b7c7-4920-a866-d0d27b115e90 {"md5": "b130fb2c590a9c9faaa0f122391c1196", "pid": "007543204", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2106300-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2106300-X", "source": "GND"}], "preferred_name": "Ausstellung William Gear, Arbeiten aus dem Atelier des Künstlers 1946 - 1986, Ölbilder und Arbeiten auf Papier, Druckgraphik", "authorized_access_point": "Ausstellung William Gear, Arbeiten aus dem Atelier des Künstlers 1946 - 1986, Ölbilder und Arbeiten auf Papier, Druckgraphik, 1988 - 1989, München"} 1 -2023-07-08 08:14:06.075762 2023-07-08 08:14:06.075781 8ba7d60e-8336-46be-aafb-071ee2da069d {"md5": "f93c892d545a854ad65bedbe8580f7cb", "pid": "007547692", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2106802-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2106802-1", "source": "GND"}], "variant_name": ["Collapsing New Buildings"], "preferred_name": "Einstürzende Neubauten", "country_associated": "gw", "variant_access_point": ["Collapsing New Buildings. Musikgruppe"], "date_of_establishment": "1980", "authorized_access_point": "Einstürzende Neubauten. Musikgruppe", "biographical_information": ["Industrial-/Experimental-/Dark-Ambient-Band (Blixa Bargeld, N. U. Unruh ...)"]} 1 -2023-07-08 08:14:06.212825 2023-07-08 08:14:06.212831 983927c8-4901-42a8-9d07-b0bd196b3d7c {"md5": "92d647341f4ea5cc1bd9968a6575870a", "pid": "007550278", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2107096-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2107096-9", "source": "GND"}], "variant_name": ["Freiwillige Feuerwehr", "Freiwillige Feuerwehr"], "preferred_name": "Freiwillige Feuerwehr. Abteilung", "country_associated": "gw", "variant_access_point": ["Freiwillige Feuerwehr. Immendingen-Hattingen", "Freiwillige Feuerwehr. Hattingen, Immendingen"], "authorized_access_point": "Freiwillige Feuerwehr. Immendingen. Abteilung. Hattingen, Immendingen"} 1 -2023-07-08 08:14:06.334349 2023-07-08 08:14:06.334359 18d16ec0-c7e1-4657-b684-9b25b6484e0b {"md5": "cda8f54e4e4fc8bf5e6040541e9df21a", "pid": "007553684", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2107465-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2107465-3", "source": "GND"}], "preferred_name": "Kolloquium aus Anlass des Hundertsten Geburtstages von Jean Monnet", "country_associated": "be", "authorized_access_point": "Kolloquium aus Anlass des Hundertsten Geburtstages von Jean Monnet, 1988, Brüssel"} 1 -2023-07-08 08:14:06.457218 2023-07-08 08:14:06.457223 748817cf-7034-4e9b-8a4d-49f6f00c84a7 {"md5": "e76a9c4436a19f931dd7a7e6642e6626", "pid": "007555245", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2107628-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2107628-5", "source": "GND"}], "preferred_name": "Fachtagung Rechnerintegration in Logistik und Produktion - Einfluss auf Bewusstseinsbildung von Arbeitern und Arbeiterinnen", "authorized_access_point": "Fachtagung Rechnerintegration in Logistik und Produktion - Einfluss auf Bewusstseinsbildung von Arbeitern und Arbeiterinnen, 1987, Ludwigshafen am Rhein"} 1 -2023-07-08 08:14:06.584853 2023-07-08 08:14:06.584864 810f45c8-5692-4eb8-bfac-b2e446ea68a0 {"md5": "35fa3fb6b9f3e68e71ca5a572ef6d114", "pid": "007571054", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2109339-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2109339-8", "source": "GND"}], "variant_name": ["Katholisches Blindenwerk", "DKBW"], "preferred_name": "Deutsches Katholisches Blindenwerk", "country_associated": "gw", "variant_access_point": ["Katholisches Blindenwerk. Deutschland, Bundesrepublik", "DKBW. Abkuerzung"], "authorized_access_point": "Deutsches Katholisches Blindenwerk"} 1 -2023-07-08 08:14:06.731304 2023-07-08 08:14:06.731313 918cdaf7-569f-4880-a4e6-1605db2244e4 {"md5": "1a531aff495d0724794dd26c049daf07", "pid": "007575882", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2109841-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2109841-4", "source": "GND"}], "preferred_name": "Symposium zu Fragen des Musikinstrumentenbaus, 8", "authorized_access_point": "Symposium zu Fragen des Musikinstrumentenbaus, 8, 1987, Blankenburg (Harz)"} 1 -2023-07-08 08:14:06.819444 2023-07-08 08:14:06.819447 6ee0b654-c04a-41e6-9932-c235a23f0a4d {"md5": "203a15bbc4cb88e76edf4a9ea62cc9fc", "pid": "007590172", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2111321-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2111321-X", "source": "GND"}], "variant_name": ["Lions-Klub"], "preferred_name": "Lions-Club", "country_associated": "gw", "variant_access_point": ["Lions-Klub. Speyer"], "authorized_access_point": "Lions-Club. Speyer"} 1 -2023-07-08 08:14:06.945492 2023-07-08 08:14:06.945496 aa35b9a4-689e-4155-9868-6e8c822ecf42 {"md5": "af5d88875e332e16deaf28b1a92c57e0", "pid": "00760453X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2112812-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2112812-1", "source": "GND"}], "variant_name": ["Braunschweig. Dezernat für Jugend, Soziales und Gesundheit. Projekt Jugendhilfeplanung", "Projekt Jugendhilfeplanung", "Braunschweig. Jugendhilfeplanung", "Braunschweig. Dezernat für Jugend, Soziales und Gesundheit. Jugendhilfeplanung", "Planungsteam Jugendhilfeplanung", "Braunschweig. Planungsteam Jugendhilfeplanung", "Braunschweig. Dezernat für Jugend, Soziales und Gesundheit. Planungsteam Jugendhilfeplanung"], "preferred_name": "Braunschweig. Projekt Jugendhilfeplanung", "country_associated": "gw", "variant_access_point": ["Braunschweig. Dezernat für Jugend, Soziales und Gesundheit. Projekt Jugendhilfeplanung", "Projekt Jugendhilfeplanung. Braunschweig", "Braunschweig. Jugendhilfeplanung. Projekt Jugendhilfeplanung", "Braunschweig. Dezernat für Jugend, Soziales und Gesundheit. Jugendhilfeplanung", "Planungsteam Jugendhilfeplanung. Braunschweig", "Braunschweig. Planungsteam Jugendhilfeplanung", "Braunschweig. Dezernat für Jugend, Soziales und Gesundheit. Planungsteam Jugendhilfeplanung"], "authorized_access_point": "Braunschweig. Projekt Jugendhilfeplanung"} 1 -2023-07-08 08:14:07.057399 2023-07-08 08:14:07.057404 d60920b9-659b-43b4-a437-ee9d86c8e35d {"md5": "bcc2083f11aaa0964c06a004d0876dab", "pid": "007605285", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2112891-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2112891-1", "source": "GND"}], "variant_name": ["Harzklub. Zweigverein Hohegeiß", "Harzklub-Zweigverein Hohegeiß e.V.", "Harzklub Hohegeiß"], "preferred_name": "Harzklub-Zweigverein Hohegeiß", "country_associated": "gw", "variant_access_point": ["Harzklub. Zweigverein Hohegeiß", "Harzklub-Zweigverein Hohegeiß e.V.. Unveraenderte Form", "Harzklub Hohegeiß"], "date_of_establishment": "06.01.1889", "authorized_access_point": "Harzklub-Zweigverein Hohegeiß", "biographical_information": ["e.V. seit 1978"]} 1 -2023-07-08 08:14:07.135251 2023-07-08 08:14:07.135254 7e1b181d-d067-462d-816e-7d701b781dc2 {"md5": "8288344295c3da146298abf287edcf77", "pid": "007620756", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2114524-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2114524-6", "source": "GND"}], "variant_name": ["Kommission für Quellen und Forschungen", "Kommission Quellen und Forschungen", "Kommission \\"Quellen und Forschungen\\""], "preferred_name": "Kommission für Quellen und Forschungen zur Geschichte und Landeskunde von Basel-Landschaft", "country_associated": "sz", "variant_access_point": ["Kommission für Quellen und Forschungen", "Kommission Quellen und Forschungen", "Kommission \\"Quellen und Forschungen\\". Basel-Landschaft"], "authorized_access_point": "Kommission für Quellen und Forschungen zur Geschichte und Landeskunde von Basel-Landschaft"} 1 -2023-07-08 08:14:07.217801 2023-07-08 08:14:07.217805 3957baf7-1c7c-461e-b926-10aec0f0eb12 {"md5": "9a6612aa3857e92d5a074024be84cd91", "pid": "007631731", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2115666-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2115666-9", "source": "GND"}], "preferred_name": "Ausstellung Einsiedeln und die Südostbahn", "authorized_access_point": "Ausstellung Einsiedeln und die Südostbahn, 1990 - 1991"} 1 -2023-07-08 08:14:07.31166 2023-07-08 08:14:07.311667 1f8eab39-0f2f-451a-939a-ce8c2c555e95 {"md5": "2b7e744ef21d65057c60a24eaeb28dfa", "pid": "007642423", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2116792-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2116792-8", "source": "GND"}], "variant_name": ["Gesellschaft für Kommunikative Strategie", "Punkt GmbH", "Punkt, Gesellschaft für Kommunikative Strategien"], "preferred_name": "Punkt, Gesellschaft für Kommunikative Strategie", "country_associated": "gw", "variant_access_point": ["Gesellschaft für Kommunikative Strategie. Hamburg", "Punkt GmbH. Hamburg", "Punkt, Gesellschaft für Kommunikative Strategien. Hamburg"], "authorized_access_point": "Punkt, Gesellschaft für Kommunikative Strategie. Hamburg"} 1 -2023-07-08 08:14:07.422792 2023-07-08 08:14:07.422797 83d38ba0-f922-4779-955a-573b94932853 {"md5": "3228c5aeb060e7659d04926cda2fdc3b", "pid": "007646895", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2117267-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2117267-5", "source": "GND"}], "variant_name": ["Archäologische Sammlungen", "Archäologische Sammlungen", "Württembergisches Landesmuseum. Archäologische Sammlungen"], "preferred_name": "Württembergisches Landesmuseum. Archäologische Sammlungen", "country_associated": "gw", "variant_access_point": ["Archäologische Sammlungen. Stuttgart", "Archäologische Sammlungen. Württembergisches Landesmuseum, Stuttgart", "Württembergisches Landesmuseum. Archäologische Sammlungen"], "authorized_access_point": "Württembergisches Landesmuseum. Stuttgart. Archäologische Sammlungen"} 1 -2023-07-08 08:14:07.5182 2023-07-08 08:14:07.518206 88d8c43d-0b75-4230-bfaf-7bd04bdc708d {"md5": "102decc748f3f6f43b4dac49c605a2b5", "pid": "007675844", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2120327-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2120327-1", "source": "GND"}], "variant_name": ["Prognos. Arbeitsbereich \\"Medien und Kommunikation\\""], "preferred_name": "Prognos AG. Arbeitsbereich Medien und Kommunikation", "country_associated": "sz", "variant_access_point": ["Prognos. Arbeitsbereich \\"Medien und Kommunikation\\""], "authorized_access_point": "Prognos AG. Arbeitsbereich Medien und Kommunikation"} 1 -2023-07-08 08:14:07.603738 2023-07-08 08:14:07.603743 e4f1f8f5-7adb-411d-af28-9de0eecf11d2 {"md5": "59c3b1a6419b3f6cb63a0bae7363292e", "pid": "007676174", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2120360-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2120360-X", "source": "GND"}], "variant_name": ["AIDS-Tage, 2"], "preferred_name": "Münchner AIDS-Tage, 2", "variant_access_point": ["AIDS-Tage, 2, 1991, München"], "authorized_access_point": "Münchner AIDS-Tage, 2, 1991, München"} 1 -2023-07-08 08:14:07.693056 2023-07-08 08:14:07.693061 fbdf4f96-d070-4171-969a-f5608f04b0d9 {"md5": "5863ce501c76f5e307fc9ce7b2f713e4", "pid": "007690495", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2121867-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2121867-5", "source": "GND"}], "preferred_name": "Technische Universität Chemnitz. Fachbereich Mathematik", "country_associated": "gw", "authorized_access_point": "Technische Universität Chemnitz. Fachbereich Mathematik"} 1 -2023-07-08 08:14:07.774272 2023-07-08 08:14:07.774281 306c834e-b76a-4a6c-885a-0201ac2a9f86 {"md5": "6373ae2673b9aa2c01e535af09d746e5", "pid": "007736851", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2126742-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2126742-X", "source": "GND"}], "variant_name": ["Swisscable, association de câblocommunication", "Verband für Kabelkommunikation", "Association de câblocommunikation"], "preferred_name": "Swisscable, Verband für Kabelkommunikation", "country_associated": "sz", "date_of_termination": "XX.XX.1998", "variant_access_point": ["Swisscable, association de câblocommunication", "Verband für Kabelkommunikation", "Association de câblocommunikation"], "date_of_establishment": "12.11.1992", "authorized_access_point": "Swisscable, Verband für Kabelkommunikation"} 1 -2023-07-08 08:14:07.861144 2023-07-08 08:14:07.861148 2415ef32-61e0-445f-a2ca-ce7e5b692356 {"md5": "ccab5cec596db020d8eebe1b41bd6e89", "pid": "007744862", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2127593-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2127593-2", "source": "GND"}], "preferred_name": "Verwaltungsgemeinschaft Gefell", "country_associated": "gw", "authorized_access_point": "Verwaltungsgemeinschaft Gefell"} 1 -2023-07-08 08:14:07.946306 2023-07-08 08:14:07.946312 6c77e5e2-ae52-4f10-817b-9618ca2271e4 {"md5": "8e1bfaea129fe45089545f5673c645c6", "pid": "007762321", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2129442-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2129442-2", "source": "GND"}], "variant_name": ["Staatliche Berufsschule", "Berufsschule mit Berufsaufbauschule"], "preferred_name": "Staatliche Berufsschule mit Berufsaufbauschule", "country_associated": "gw", "variant_access_point": ["Staatliche Berufsschule. Sulzbach-Rosenberg, 1", "Berufsschule mit Berufsaufbauschule. Sulzbach-Rosenberg, Staatliche Berufsschule mit Berufsaufbauschule"], "authorized_access_point": "Staatliche Berufsschule mit Berufsaufbauschule. Sulzbach-Rosenberg"} 1 -2023-07-08 08:14:08.020031 2023-07-08 08:14:08.020035 4f7afcd6-aa84-41fe-93cd-b0270c45f60f {"md5": "6acaaab9ab99bc1d5ee7b574420ec200", "pid": "007765908", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2129855-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2129855-5", "source": "GND"}], "variant_name": ["Universitäts-Gespräch, 5"], "preferred_name": "Bremer Universitäts-Gespräch, 5", "country_associated": "gw", "variant_access_point": ["Universitäts-Gespräch, 5, 1992, Bremen"], "authorized_access_point": "Bremer Universitäts-Gespräch, 5, 1992, Bremen"} 1 -2023-07-08 08:14:08.101203 2023-07-08 08:14:08.10121 65009afb-4ba6-4f0e-b1ec-ae75d025af94 {"md5": "0166d58f2d6f6b6fe3d41e22a80ee04d", "pid": "007776500", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2130979-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2130979-6", "source": "GND"}], "variant_name": ["Gratz College. Holocaust Oral History Archive", "Gratz College. Holocaust Oral History Archive"], "preferred_name": "Holocaust Oral History Archive", "country_associated": "xxu", "variant_access_point": ["Gratz College. Philadelphia, Pa.. Holocaust Oral History Archive", "Gratz College. Philadelphia, PA. Holocaust Oral History Archive"], "authorized_access_point": "Holocaust Oral History Archive. Philadelphia, Pa."} 1 -2023-07-08 08:14:08.185708 2023-07-08 08:14:08.185716 1b1d77ee-2145-4ffc-8f91-c2ce3fe1a994 {"md5": "bdceefbda3f4eab7fd4b2fcdd225226c", "pid": "007777639", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2131097-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2131097-X", "source": "GND"}], "preferred_name": "Freie Akademie Gitanjali", "country_associated": "gw", "date_of_establishment": "1991", "authorized_access_point": "Freie Akademie Gitanjali. Duisburg"} 1 -2023-07-08 08:14:08.286646 2023-07-08 08:14:08.286655 ba922c4c-f28d-496d-b0e9-d89f3a289888 {"md5": "ce087f4cd182eca5edb1fd20112041b5", "pid": "007781113", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2131467-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2131467-6", "source": "GND"}], "variant_name": ["Rom. Bauverwaltung", "Stadtrömische Bauverwaltung", "Bauverwaltung", "Cura Operum Publicorum"], "preferred_name": "Rom. Cura Operum Publicorum", "country_associated": "it", "variant_access_point": ["Rom. Bauverwaltung", "Stadtrömische Bauverwaltung. Rom", "Bauverwaltung. Rom", "Cura Operum Publicorum. Rom"], "authorized_access_point": "Rom. Cura Operum Publicorum"} 1 -2023-07-08 08:14:08.569538 2023-07-08 08:14:08.569547 267bf48a-247c-4d7e-9c79-935cdac39642 {"md5": "a99bfb286293e57241fda796eb7a2b54", "pid": "007793731", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2132788-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2132788-9", "source": "GND"}], "variant_name": ["Büro für Stadtplanung und Architektur Dipl. Ing. G. Knopp"], "preferred_name": "Büro für Architektur und Stadtplanung Dipl. Ing. Gerhard Knopp", "country_associated": "gw", "variant_access_point": ["Büro für Stadtplanung und Architektur Dipl. Ing. G. Knopp"], "authorized_access_point": "Büro für Architektur und Stadtplanung Dipl. Ing. Gerhard Knopp"} 1 -2023-07-08 08:14:08.660781 2023-07-08 08:14:08.660788 92b92614-ccc9-46ce-831d-a6d1c82918d7 {"md5": "38d0480b5cae6f67513b4425c8a432d0", "pid": "007796811", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2133113-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2133113-3", "source": "GND"}], "preferred_name": "Children's Cancer Association of Japan", "country_associated": "ja", "authorized_access_point": "Children's Cancer Association of Japan"} 1 -2023-07-08 08:14:08.747664 2023-07-08 08:14:08.747669 713c9ff5-bd5d-40d4-a952-8483ad713dbe {"md5": "94458cba5597f4be18289a69a27e56c0", "pid": "00779827X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2133269-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2133269-1", "source": "GND"}], "variant_name": ["Sammer, Bildarchiv"], "preferred_name": "Bildarchiv Sammer", "country_associated": "gw", "variant_access_point": ["Sammer, Bildarchiv. Neuenkirchen (Heidekreis)"], "authorized_access_point": "Bildarchiv Sammer. Neuenkirchen (Heidekreis)"} 1 -2023-07-08 08:14:08.846133 2023-07-08 08:14:08.846138 4f182e1c-585a-4b3b-9ee0-22a62bc92cc1 {"md5": "73b8bc98d9663c16c12b92a23a1145c9", "pid": "008030286", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/803028-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/803028-5", "source": "GND"}], "variant_name": ["Herring Investigation Committee", "Canada. Atlantic Herring Investigation Committee", "Canada. Herring Investigation Committee"], "preferred_name": "Atlantic Herring Investigation Committee", "country_associated": "xxc", "variant_access_point": ["Herring Investigation Committee", "Canada. Atlantic Herring Investigation Committee", "Canada. Herring Investigation Committee"], "authorized_access_point": "Atlantic Herring Investigation Committee"} 1 -2023-07-08 08:14:08.939204 2023-07-08 08:14:08.939212 3f283805-4d38-4bc3-b0cb-4417e410d85d {"md5": "6e0270722812189ac317b47ed8de5bf0", "pid": "008036985", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/803698-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/803698-6", "source": "GND"}], "variant_name": ["Symposium on Quantitative Biology, 48"], "preferred_name": "Cold Spring Harbor Symposium on Quantitative Biology, 48", "country_associated": "xxu", "variant_access_point": ["Symposium on Quantitative Biology, 48, 1983, Cold Spring Harbor, NY"], "authorized_access_point": "Cold Spring Harbor Symposium on Quantitative Biology, 48, 1983, Cold Spring Harbor, NY"} 1 -2023-07-08 08:14:09.020638 2023-07-08 08:14:09.020649 15824a23-e978-4ac2-82de-7700abc71f52 {"md5": "d6e45be6c9fdeec7ebfbc33ab6ac3bcd", "pid": "008055262", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/805526-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/805526-9", "source": "GND"}], "preferred_name": "Conference Algebra and Logic, 4", "authorized_access_point": "Conference Algebra and Logic, 4, 1984, Zagreb"} 1 -2023-07-08 08:14:09.141509 2023-07-08 08:14:09.141521 c50aa896-a7ac-448a-b6da-634b1a0205a0 {"md5": "38156ec1b8091e3adab3cff0f697a0b7", "pid": "008059365", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/805936-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/805936-6", "source": "GND"}], "variant_name": ["American Society of Civil Engineers. Underground Technology Research Council. Technical Committee on Tunnel Lining Design", "Technical Committee on Tunnel Lining Design"], "preferred_name": "American Society of Civil Engineers. Technical Committee on Tunnel Lining Design", "country_associated": "xxu", "variant_access_point": ["American Society of Civil Engineers. Underground Technology Research Council. Technical Committee on Tunnel Lining Design", "Technical Committee on Tunnel Lining Design. American Society of Civil Engineers"], "authorized_access_point": "American Society of Civil Engineers. Technical Committee on Tunnel Lining Design"} 1 -2023-07-08 08:14:09.225959 2023-07-08 08:14:09.225974 29fadb9a-9def-4988-ad64-b29899ae9ae3 {"md5": "727900e946634bb6d6b3be3e13c5e4d7", "pid": "008094217", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/809421-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/809421-4", "source": "GND"}], "variant_name": ["Erasmus Universiteit Rotterdam. Juridisch Instituut"], "preferred_name": "Juridisch Instituut", "country_associated": "ne", "variant_access_point": ["Erasmus Universiteit Rotterdam. Juridisch Instituut"], "authorized_access_point": "Juridisch Instituut. Rotterdam"} 1 -2023-07-08 08:14:09.319105 2023-07-08 08:14:09.319114 2f4d5edc-c5b5-4418-89c1-18fd7dd9cf70 {"md5": "a43bc5f64406a093a77014a43047263d", "pid": "008095086", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/809508-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/809508-5", "source": "GND"}], "variant_name": ["Kloster Gnadenthal. Klosterarchiv"], "preferred_name": "Klosterarchiv Gnadenthal", "country_associated": "gw", "variant_access_point": ["Kloster Gnadenthal. Ingolstadt. Klosterarchiv"], "authorized_access_point": "Klosterarchiv Gnadenthal. Ingolstadt"} 1 -2023-07-08 08:14:09.403097 2023-07-08 08:14:09.403104 d89e9945-9bc2-442f-b2e9-76a3a7ccb76b {"md5": "37e4065a8de661e80ab3d78b6a0c5ed8", "pid": "008112282", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/811228-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/811228-9", "source": "GND"}], "preferred_name": "Musée du Livre", "country_associated": "be", "authorized_access_point": "Musée du Livre. Antwerpen"} 1 -2023-07-08 08:14:09.491192 2023-07-08 08:14:09.491202 8df4c725-577f-41d5-8196-5c52e2062fa3 {"md5": "f3757b7acea68150bb6ae63207dd0bd5", "pid": "008119198", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/811919-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/811919-3", "source": "GND"}], "variant_name": ["Saiva Siddhanta Works Publishing Society", "Teṉṉintiya Caiva-Cittānta Nūrpatippuk Kaḻakam"], "preferred_name": "South India Saiva Siddhanta Works Publishing Society", "country_associated": "ii", "variant_access_point": ["Saiva Siddhanta Works Publishing Society. Indien", "Teṉṉintiya Caiva-Cittānta Nūrpatippuk Kaḻakam"], "authorized_access_point": "South India Saiva Siddhanta Works Publishing Society"} 1 -2023-07-08 08:14:09.576823 2023-07-08 08:14:09.576827 c51e94e6-f2b6-43d7-bcce-303e85c9dd06 {"md5": "67f26690d1587c02fd66d4555e20c6f9", "pid": "008122830", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/812283-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/812283-0", "source": "GND"}], "preferred_name": "Scandinavian Conference on Gastroenterology, 21", "country_associated": "fi", "authorized_access_point": "Scandinavian Conference on Gastroenterology, 21, 1988, Turku"} 1 -2023-07-08 08:14:09.664104 2023-07-08 08:14:09.66411 0e2e62bb-7645-4705-aee1-388cc9922543 {"md5": "d629c7989b2be201a3e63a56359bfa84", "pid": "008140111", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/814011-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/814011-X", "source": "GND"}], "preferred_name": "Symposium on Tense and Aspect", "country_associated": "xxu", "authorized_access_point": "Symposium on Tense and Aspect, 1979, Los Angeles, Calif."} 1 -2023-07-08 08:14:09.768071 2023-07-08 08:14:09.768078 12040965-b87d-473d-bc38-0c29e7344385 {"md5": "775727a74de6b27e15acc3f8fff60393", "pid": "008147841", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/814784-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/814784-X", "source": "GND"}], "variant_name": ["Tagung Finanz-Marketing im Zeichen der Informationstechniken"], "preferred_name": "Tagung Finanz-Marketing im Zeichen der Informationstechniken", "country_associated": "gw", "variant_access_point": ["Tagung Finanz-Marketing im Zeichen der Informationstechniken, 1987, Günzburg"], "authorized_access_point": "Tagung Finanz-Marketing im Zeichen der Informationstechniken, 1987, Reisensburg"} 1 -2023-07-08 08:14:09.848548 2023-07-08 08:14:09.848552 6b3b2b62-5314-43a0-b80f-a61df4939e37 {"md5": "9951b5723e29b3b766cb45487ec00e61", "pid": "008151733", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/815173-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/815173-8", "source": "GND"}], "preferred_name": "International Congress of Entomology, 16", "country_associated": "ja", "authorized_access_point": "International Congress of Entomology, 16, 1980, Kyōto"} 1 -2023-07-08 08:14:09.941574 2023-07-08 08:14:09.941578 7477f3d6-85f1-48df-b2ee-45a2ff86b341 {"md5": "9408d5588f23e4f4ea618f7f24703fd6", "pid": "008157103", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/815710-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/815710-8", "source": "GND"}], "variant_name": ["Musikwissenschaftliches Kolloquium, 3"], "preferred_name": "Jenaer Musikwissenschaftliches Kolloquium, 3", "variant_access_point": ["Musikwissenschaftliches Kolloquium, 3, 1986, Jena"], "authorized_access_point": "Jenaer Musikwissenschaftliches Kolloquium, 3, 1986, Jena"} 1 -2023-07-08 08:14:10.042135 2023-07-08 08:14:10.042138 c28b97c8-c1d0-45a6-bdc5-34539bd276ae {"md5": "271ed67f8ea8cec1fcd7fccfae24dd8a", "pid": "008165068", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/816506-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/816506-3", "source": "GND"}], "preferred_name": "International Symposium and Course Simulation", "country_associated": "sz", "authorized_access_point": "International Symposium and Course Simulation, 1975, Zürich"} 1 -2023-07-08 08:14:10.109992 2023-07-08 08:14:10.109995 667bd1a5-d925-4d49-8389-3a3c64787f24 {"md5": "fe5e14bb23c4702eb8e3362fcdf1b62c", "pid": "008169446", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/816944-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/816944-5", "source": "GND"}], "preferred_name": "International Conference on Electron Spectroscopy", "country_associated": "be", "authorized_access_point": "International Conference on Electron Spectroscopy, 1974, Namur"} 1 -2023-07-08 08:14:10.181594 2023-07-08 08:14:10.1816 ef2b300c-b264-491c-9c5b-720de2275eb9 {"md5": "07de9cfc2518f80ac794e5f59ebda9fd", "pid": "008169691", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/816969-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/816969-X", "source": "GND"}], "preferred_name": "Courant Computer Science Symposium, 9", "country_associated": "xxu", "authorized_access_point": "Courant Computer Science Symposium, 9, 1972, New York, NY"} 1 -2023-07-08 08:14:10.265673 2023-07-08 08:14:10.265677 de0bf546-4f9f-4e3b-86ba-2249279ee570 {"md5": "3bde7442411bb94010c4fea2d916b653", "pid": "008183147", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/818314-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/818314-4", "source": "GND"}], "variant_name": ["Nuclear Spectroscopy of Fission Products"], "preferred_name": "Workshop on the Nuclear Spectroscopy of Fission Products", "country_associated": "fr", "variant_access_point": ["Nuclear Spectroscopy of Fission Products, 1979, Grenoble"], "authorized_access_point": "Workshop on the Nuclear Spectroscopy of Fission Products, 1979, Grenoble"} 1 -2023-07-08 08:14:10.359647 2023-07-08 08:14:10.359651 760308a7-8efb-4d22-ae8c-bf207499e9a8 {"md5": "36893e4c99327a835e4826caba6ad5f5", "pid": "008183171", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/818317-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/818317-X", "source": "GND"}], "preferred_name": "Mathematiker-Tagung", "country_associated": "gw", "authorized_access_point": "Mathematiker-Tagung, 1946, Tübingen"} 1 -2023-07-08 08:14:10.506468 2023-07-08 08:14:10.50647 d6896d4f-06bc-48fc-866f-19eae6a9075c {"md5": "3c0bbca59f7254e44d18acc1fa22645d", "pid": "030010462", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/3001046-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3001046-9", "source": "GND"}], "variant_name": ["Fachbereich Rechts- und Wirtschaftswissenschaften", "Johannes Gutenberg-Universität. Fachbereich Rechts- und Wirtschaftswissenschaften", "Johannes Gutenberg-Universität. Fachbereich"], "preferred_name": "Johannes Gutenberg-Universität Mainz. Fachbereich Rechts- und Wirtschaftswissenschaften", "country_associated": "gw", "variant_access_point": ["Fachbereich Rechts- und Wirtschaftswissenschaften. Mainz", "Johannes Gutenberg-Universität. Fachbereich Rechts- und Wirtschaftswissenschaften", "Johannes Gutenberg-Universität. Fachbereich. 03"], "authorized_access_point": "Johannes Gutenberg-Universität Mainz. Fachbereich Rechts- und Wirtschaftswissenschaften"} 1 -2023-07-08 08:14:10.582781 2023-07-08 08:14:10.582786 28527208-80ff-4040-8309-3be28b2b75f1 {"md5": "7878c7d203a1b405c0ae5c6688f9666b", "pid": "030011213", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/3001121-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3001121-8", "source": "GND"}], "variant_name": ["Voss und Co., Lehmann", "Lehmann&Voss&Co. KG", "Lehvoss", "LUV"], "preferred_name": "Lehmann und Voss und Co.", "country_associated": "gw", "variant_access_point": ["Voss und Co., Lehmann. Unveraenderte Form", "Lehmann&Voss&Co. KG. Unveraenderte Form", "Lehvoss. Hamburg", "LUV. Abkuerzung"], "authorized_access_point": "Lehmann und Voss und Co."} 1 -2023-07-08 08:14:10.660742 2023-07-08 08:14:10.660746 32792b09-6188-4b9a-8457-594d5bbe7672 {"md5": "14a18b0e8757af27f2c2ce463bde588e", "pid": "030028841", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/3002884-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3002884-X", "source": "GND"}], "variant_name": ["Bezirksfachausschuß Numismatik"], "preferred_name": "Gesellschaft für Heimatgeschichte. Bezirksvorstand. Bezirksfachausschuß Numismatik", "variant_access_point": ["Bezirksfachausschuß Numismatik. Berlin, Ost, Gesellschaft für Heimatgeschichte"], "authorized_access_point": "Gesellschaft für Heimatgeschichte. Bezirksvorstand. Berlin, Ost. Bezirksfachausschuß Numismatik"} 1 -2023-07-08 08:14:10.730523 2023-07-08 08:14:10.730529 89027fda-99f2-4ad8-86b9-0287e64eaddb {"md5": "2f3ac056650091e12b523f629311aacc", "pid": "03003891X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/3003891-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3003891-1", "source": "GND"}], "variant_name": ["Centre for Health Information", "Kanada. Centre for Health Information", "Kanada. Statistics Canada. Centre for Health Information", "Centre Canadien d'Information sur la Santé", "Kanada. Statistics. Centre d'Information sur la Santé", "Kanada. Centre d'Information sur la Santé"], "preferred_name": "Canadian Centre for Health Information", "country_associated": "xxc", "variant_access_point": ["Centre for Health Information. Ottawa", "Kanada. Centre for Health Information", "Kanada. Statistics Canada. Centre for Health Information", "Centre Canadien d'Information sur la Santé. Ottawa", "Kanada. Statistics. Centre d'Information sur la Santé", "Kanada. Centre d'Information sur la Santé"], "date_of_establishment": "1989", "authorized_access_point": "Canadian Centre for Health Information. Ottawa"} 1 -2023-07-08 08:14:10.799936 2023-07-08 08:14:10.799939 7e14dc7e-a3fd-4038-97e4-883b93a3d5cd {"md5": "7a02bbd3f11368083235710b4e9f53df", "pid": "03005205X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/3005205-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3005205-1", "source": "GND"}], "variant_name": ["Kindergarten Undenheim"], "preferred_name": "Gemeindekindergarten Undenheim", "country_associated": "gw", "variant_access_point": ["Kindergarten Undenheim"], "authorized_access_point": "Gemeindekindergarten Undenheim"} 1 -2023-07-08 08:14:10.877479 2023-07-08 08:14:10.877489 a1c39745-4a5a-4d61-a99d-a00fe88695cf {"md5": "c8c0590a52ec946395c2addb133b18d9", "pid": "030052912", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/3005291-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3005291-9", "source": "GND"}], "variant_name": ["Istituto Universitario Orientale. Dipartimento di Studi del Mondo Classico e del Mediterraneo Antico. Sezione Linguistica", "Istituto universitario orientale. Sezione linguistica", "Istituto universitario orientale. Seminario di studi del mondo classico. Sezione linguistica", "Istituto universitario orientale. Dipartimento di studi del mondo classico e del Mediterraneo antico. Sezione linguistica"], "preferred_name": "Istituto Universitario Orientale. Sezione Linguistica", "country_associated": "it", "variant_access_point": ["Istituto Universitario Orientale. Neapel. Dipartimento di Studi del Mondo Classico e del Mediterraneo Antico. Sezione Linguistica", "Istituto universitario orientale. Napoli. Sezione linguistica", "Istituto universitario orientale. Napoli. Seminario di studi del mondo classico. Sezione linguistica", "Istituto universitario orientale. Napoli. Dipartimento di studi del mondo classico e del Mediterraneo antico. Sezione linguistica"], "authorized_access_point": "Istituto Universitario Orientale. Neapel. Sezione Linguistica"} 1 -2023-07-08 08:14:10.965814 2023-07-08 08:14:10.965817 aa437cf0-03ac-4fbd-8522-a65c6dd25508 {"md5": "42b069357a3ac0e39838b82e48f35335", "pid": "030072409", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/3007240-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3007240-2", "source": "GND"}], "preferred_name": "Gewerbe-Verein für Aachen, Burtscheid und Umgegend", "authorized_access_point": "Gewerbe-Verein für Aachen, Burtscheid und Umgegend"} 1 -2023-07-08 08:14:11.040968 2023-07-08 08:14:11.040972 48121353-e830-4b7c-802c-291c0f6332a3 {"md5": "687408e6f7c990f86b37927ccaf141e0", "pid": "030078768", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/3007876-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3007876-3", "source": "GND"}], "preferred_name": "Colloque de Pragmatique, 4", "country_associated": "sz", "authorized_access_point": "Colloque de Pragmatique, 4, 1989, Genf"} 1 -2023-07-08 08:14:36.667655 2023-07-08 08:14:36.667658 99038357-8ef2-4cbe-a03f-5648795290e3 {"md5": "4ae22ad0b7ad49dabd3acf6b278ff591", "pid": "1010769979", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16105952-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16105952-1", "source": "GND"}], "preferred_name": "Museu da República", "country_associated": "bl", "authorized_access_point": "Museu da República. Brasília"} 1 -2023-07-08 08:14:11.116488 2023-07-08 08:14:11.116491 b15fb0a0-ea5d-419c-be38-4713085a014e {"md5": "d0cd9803e142880172e8f194be0e225c", "pid": "030081297", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/3008129-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3008129-4", "source": "GND"}], "variant_name": ["CWA"], "preferred_name": "Crime Writers' Association", "country_associated": "xxk", "variant_access_point": ["CWA. Abkuerzung"], "authorized_access_point": "Crime Writers' Association", "biographical_information": ["Sitz: London"]} 1 -2023-07-08 08:14:11.186332 2023-07-08 08:14:11.186335 9450cde5-c83e-4dc4-85b8-d4f2c6207c84 {"md5": "e48b5159b118b128585c96c22ae7db51", "pid": "030120926", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/3012092-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3012092-5", "source": "GND"}], "variant_name": ["Internationale Fleischwirtschaftliche Fachmesse", "International Trade Fair for the Meat Industry", "Salon International de l'Industrie et du Commerce de la Viande"], "preferred_name": "IFFA", "country_associated": "gw", "variant_access_point": ["Internationale Fleischwirtschaftliche Fachmesse, 1992, Frankfurt, Main", "International Trade Fair for the Meat Industry, 1992, Frankfurt, Main", "Salon International de l'Industrie et du Commerce de la Viande, 1992, Frankfurt, Main"], "authorized_access_point": "IFFA, 1992, Frankfurt, Main"} 1 -2023-07-08 08:14:11.25343 2023-07-08 08:14:11.253433 ed865deb-3b01-490e-b882-975bd0a8aabf {"md5": "1c8cd0ac37d58830e03a02457072b71b", "pid": "03012199X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/3012199-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3012199-1", "source": "GND"}], "preferred_name": "Workshop zu Problemen des Infektionsschutzes Hospitalisierter Patienten", "authorized_access_point": "Workshop zu Problemen des Infektionsschutzes Hospitalisierter Patienten, 1989, Berlin, Ost"} 1 -2023-07-08 08:14:11.329618 2023-07-08 08:14:11.329623 55ec18af-7da2-400e-bd98-97f8bc69896d {"md5": "2c80561b17f340958adc7c95dc8aeef6", "pid": "03012929X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/3012929-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3012929-1", "source": "GND"}], "preferred_name": "K. Pätsi 60 A. Sünnipäeva Mälestamise Komitee", "authorized_access_point": "K. Pätsi 60 A. Sünnipäeva Mälestamise Komitee"} 1 -2023-07-08 08:14:11.414324 2023-07-08 08:14:11.414328 36085833-9ec2-400b-848b-60c2b39f9159 {"md5": "90e8efeba3b7dd1d06737114d01e1612", "pid": "030132053", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/3013205-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3013205-8", "source": "GND"}], "preferred_name": "Bedford College. Zoology Department", "country_associated": "xxk", "authorized_access_point": "Bedford College. Zoology Department"} 1 -2023-07-08 08:14:11.514746 2023-07-08 08:14:11.514753 4dca5c15-a587-4451-b010-9fde947e2d2a {"md5": "96f0d90e010224a6fb8144b79354a3e9", "pid": "030135567", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/3013556-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3013556-4", "source": "GND"}], "preferred_name": "Environment Law Conference", "country_associated": "xxk", "authorized_access_point": "Environment Law Conference, 1990, Durham"} 1 -2023-07-08 08:14:11.598563 2023-07-08 08:14:11.598568 a8853b99-0d16-400d-b116-60bb1806df4e {"md5": "02d0111e5944a585a941e6c845e7cb47", "pid": "030146690", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/3014669-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3014669-0", "source": "GND"}], "preferred_name": "GOES I-M Operational Satellite Conference", "country_associated": "xxu", "authorized_access_point": "GOES I-M Operational Satellite Conference, 1989, Arlington, Va."} 1 -2023-07-08 08:14:11.693933 2023-07-08 08:14:11.693936 1bffc83e-6100-4cd3-b12b-e41dbfccd2d7 {"md5": "c7dde8991565307ec67c3785a2865f21", "pid": "030152089", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/3015208-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3015208-2", "source": "GND"}], "preferred_name": "International Conference on Approximation Theory", "country_associated": "xxu", "authorized_access_point": "International Conference on Approximation Theory, 1990, Tampa, Fla."} 1 -2023-07-08 08:14:11.77981 2023-07-08 08:14:11.779814 945b3a5d-0044-49cd-825a-32e63bdd738f {"md5": "bd4056f02aa49a78da1607109721406c", "pid": "030153727", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/3015372-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3015372-4", "source": "GND"}], "variant_name": ["Committee on Geostatistics", "Committee on Geostatistics", "IAMG Committee on Geostatistics", "International Association for Mathematical Geology. IAMG Committee on Geostatistics", "International Association for Mathematical Geology. 1984-1989 Committee on Geostatistics", "1984-1989 Committee on Geostatistics", "International Association for Mathematical Geology. 1984-1989 IAMG Committee on Geostatistics", "1984-1989 IAMG Committee on Geostatistics"], "preferred_name": "International Association for Mathematical Geology. Committee on Geostatistics", "variant_access_point": ["Committee on Geostatistics", "Committee on Geostatistics. International Association for Mathematical Geology", "IAMG Committee on Geostatistics. International Association for Mathematical Geology", "International Association for Mathematical Geology. IAMG Committee on Geostatistics", "International Association for Mathematical Geology. 1984-1989 Committee on Geostatistics", "1984-1989 Committee on Geostatistics. International Association for Mathematical Geology", "International Association for Mathematical Geology. 1984-1989 IAMG Committee on Geostatistics", "1984-1989 IAMG Committee on Geostatistics. International Association for Mathematical Geology"], "authorized_access_point": "International Association for Mathematical Geology. Committee on Geostatistics"} 1 -2023-07-08 08:14:11.871353 2023-07-08 08:14:11.871364 dac0b37d-c3a8-4428-956a-acf68185715b {"md5": "12da4c357710a6c27de2e86bd0d119d2", "pid": "030168910", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/3016891-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3016891-0", "source": "GND"}], "variant_name": ["Schuldeputation"], "preferred_name": "Frankfurt am Main. Schuldeputation", "country_associated": "gw", "variant_access_point": ["Schuldeputation. Frankfurt am Main"], "authorized_access_point": "Frankfurt am Main. Schuldeputation"} 1 -2023-07-08 08:14:11.947062 2023-07-08 08:14:11.947066 80c3fee2-e383-46d3-9b3f-9eb4c3514869 {"md5": "201a6412232eb8c125dff7c73d62159c", "pid": "030183251", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/3018325-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3018325-X", "source": "GND"}], "variant_name": ["Gutenberg-Gymnasium", "GG"], "preferred_name": "Gutenberg-Gymnasium Mainz", "country_associated": "gw", "variant_access_point": ["Gutenberg-Gymnasium. Ehemalige Vorzugsbenennung SWD", "GG. Abkuerzung"], "date_of_establishment": "1956", "authorized_access_point": "Gutenberg-Gymnasium Mainz"} 1 -2023-07-08 08:14:12.02774 2023-07-08 08:14:12.027744 0297f7f3-1e55-4881-a9ad-b840b59b395f {"md5": "cf92d54853fe80f8a1ff9f20e231c82c", "pid": "041027752", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/4102775-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4102775-9", "source": "GND"}], "preferred_name": "Syndicat National de la Police Belge", "country_associated": "be", "authorized_access_point": "Syndicat National de la Police Belge", "biographical_information": ["Belg. Polizeigewerksch."]} 1 -2023-07-08 08:14:12.106776 2023-07-08 08:14:12.106789 3bdf2bc8-b54e-427f-87ca-527da887987a {"md5": "fe02e90baaee6a285ffcc691b6f4e3e2", "pid": "041297423", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/4129742-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4129742-8", "source": "GND"}], "preferred_name": "Arbeitsgemeinschaft Erwin von Beckerath", "country_associated": "gw", "authorized_access_point": "Arbeitsgemeinschaft Erwin von Beckerath", "biographical_information": ["gegr.1943"]} 1 -2023-07-08 08:14:12.205352 2023-07-08 08:14:12.205357 e205b8eb-3f7d-45ef-9d2b-db92b9fe439a {"md5": "b5fd026f48489b0d0e6224ce933a611e", "pid": "042249627", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/4224962-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4224962-4", "source": "GND"}], "variant_name": ["Museo Civico di Troia", "Museo Civico"], "preferred_name": "Museo Civico Troia", "country_associated": "it", "variant_access_point": ["Museo Civico di Troia. Unveraenderte Form", "Museo Civico. Troia"], "date_of_establishment": "1981", "authorized_access_point": "Museo Civico Troia"} 1 -2023-07-08 08:14:12.293762 2023-07-08 08:14:12.293766 de300ca4-e07e-405b-81f4-4b37654e1c07 {"md5": "fadb5269ba46baa12231852c24701cb4", "pid": "042260264", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/4226026-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4226026-7", "source": "GND"}], "preferred_name": "Collegium Anthologicum", "country_associated": "gw", "authorized_access_point": "Collegium Anthologicum", "biographical_information": ["Gelehrte Gesellschaft, 17. Jh."]} 1 -2023-07-08 08:14:12.383107 2023-07-08 08:14:12.383113 16170634-2d39-4de5-b326-ad6ec7f3ec61 {"md5": "8ee9aa35bb9802b6ea16c30a70081c4f", "pid": "042968097", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/4296809-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4296809-4", "source": "GND"}], "variant_name": ["MJC"], "preferred_name": "Maison des Jeunes et de la Culture Robert Martin", "country_associated": "fr", "variant_access_point": ["MJC. Abkuerzung"], "authorized_access_point": "Maison des Jeunes et de la Culture Robert Martin"} 1 -2023-07-08 08:14:12.471248 2023-07-08 08:14:12.471252 4b3968d1-4882-4fcb-b824-652c146e36a1 {"md5": "97ff1501560bc66fc04d1a39d2bfda4f", "pid": "050000462", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5000046-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5000046-9", "source": "GND"}], "variant_name": ["Juristentag"], "preferred_name": "Schweizerischer Juristentag", "country_associated": "sz", "variant_access_point": ["Juristentag, 1988, Bern"], "authorized_access_point": "Schweizerischer Juristentag, 1988, Bern"} 1 -2023-07-08 08:14:12.564723 2023-07-08 08:14:12.564728 7e7284c4-ced7-4c70-a1a9-66e9bdf4a5ff {"md5": "c585b93a1f7d68a0b414c9c0dc855192", "pid": "05000736X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5000736-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5000736-1", "source": "GND"}], "preferred_name": "Conference on Measure Theory", "country_associated": "xxu", "authorized_access_point": "Conference on Measure Theory, 1980, De Kalb, Ill.", "biographical_information": ["4ELRAKk"]} 1 -2023-07-08 08:14:12.666125 2023-07-08 08:14:12.666131 5a3c816b-d6a6-4fa7-95f2-87d474491666 {"md5": "9bc9621d6d1125b55eadffc6b6ff5457", "pid": "05001692X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5001692-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5001692-1", "source": "GND"}], "preferred_name": "Conference on Functional Programming Languages and Computer Architecture", "country_associated": "xxu", "authorized_access_point": "Conference on Functional Programming Languages and Computer Architecture, 1981, Wentworth-by-the-Sea; Portsmouth, NH"} 1 -2023-07-08 08:14:12.779807 2023-07-08 08:14:12.779814 8428531b-5760-499c-880f-2c9ffac600e0 {"md5": "d414b4de6287e20a4ca67b4acac2d525", "pid": "050031937", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5003193-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5003193-4", "source": "GND"}], "preferred_name": "al- Mu'tamar li-ʿUlamā' al-Muslimīn, 3", "authorized_access_point": "al- Mu'tamar li-ʿUlamā' al-Muslimīn, 3, 1966, al-Qāhira"} 1 -2023-07-08 08:14:12.877651 2023-07-08 08:14:12.877656 3a4cd8ee-1e71-4e0b-96b4-c0abf18a91b2 {"md5": "74e49e341034ef0a069ebd33b4f2e670", "pid": "050047043", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5004704-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5004704-8", "source": "GND"}], "variant_name": ["Sankt Richard", "St. Richard", "Katholische Pfarrei St. Richard", "Katholische Pfarrei Sankt Richard"], "preferred_name": "Pfarrei Sankt Richard", "country_associated": "gw", "variant_access_point": ["Sankt Richard. Berlin, West", "St. Richard. Berlin, West", "Katholische Pfarrei St. Richard. Berlin, West", "Katholische Pfarrei Sankt Richard. Berlin, West"], "authorized_access_point": "Pfarrei Sankt Richard. Berlin, West"} 1 -2023-07-08 08:14:13.087783 2023-07-08 08:14:13.087792 364a3383-1664-4056-bf80-acb3187b56f0 {"md5": "057bc343087e61b87d5844183f81193b", "pid": "05005967X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5005967-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5005967-1", "source": "GND"}], "preferred_name": "Komunistická Strana Československa. Deutsche Abteilung", "authorized_access_point": "Komunistická Strana Československa. Deutsche Abteilung"} 1 -2023-07-08 08:14:13.164994 2023-07-08 08:14:13.165 855b4d51-4586-47e1-a479-49879527c881 {"md5": "83ba5f8954f902f88529438d668beb94", "pid": "050070606", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5007060-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5007060-5", "source": "GND"}], "variant_name": ["Amt für Statistik und Wahlen"], "preferred_name": "Mannheim. Amt für Statistik und Wahlen", "country_associated": "gw", "date_of_termination": "1989", "variant_access_point": ["Amt für Statistik und Wahlen. Mannheim"], "date_of_establishment": "1989", "authorized_access_point": "Mannheim. Amt für Statistik und Wahlen"} 1 -2023-07-08 08:14:13.268119 2023-07-08 08:14:13.268125 2da81f43-5b98-47c0-9851-353fbeca4611 {"md5": "6523c63051c516aedb370548ddcacd2f", "pid": "050096672", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5009667-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5009667-9", "source": "GND"}], "variant_name": ["East Sibirian Institute of Geology", "Akademija Nauk SSSR. Sibirskoe Otdelenie. Vostočno-Sibirskij Geologičeskij Institut", "Akademija Nauk SSSR. Sibirskoe Otdelenie. East Sibirian Institute of Geology", "Vostočno-Sibirskij geologičeskij institut Sibirskogo otdelenia AN SSSR"], "preferred_name": "Vostočno-Sibirskij geologičeskij institut", "country_associated": "ru", "date_of_termination": "1962", "variant_access_point": ["East Sibirian Institute of Geology", "Akademija Nauk SSSR. Sibirskoe Otdelenie. Vostočno-Sibirskij Geologičeskij Institut", "Akademija Nauk SSSR. Sibirskoe Otdelenie. East Sibirian Institute of Geology", "Vostočno-Sibirskij geologičeskij institut Sibirskogo otdelenia AN SSSR. Unveraenderte Form"], "date_of_establishment": "1957", "parallel_access_point": ["Восточно-Сибирский геологический институт"], "authorized_access_point": "Vostočno-Sibirskij geologičeskij institut"} 1 -2023-07-08 08:14:13.379248 2023-07-08 08:14:13.379254 3ec4e532-b7dd-4131-9606-58b33eeda3c4 {"md5": "dae720f7f5da09063d4d26621a9bfb9b", "pid": "05009808X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5009808-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5009808-1", "source": "GND"}], "variant_name": ["Anglo-American Limited"], "preferred_name": "Rhodesian Anglo-American Limited", "country_associated": "xxk", "variant_access_point": ["Anglo-American Limited. London"], "authorized_access_point": "Rhodesian Anglo-American Limited. London"} 1 -2023-07-08 08:14:13.463074 2023-07-08 08:14:13.463079 5a17fd9c-d623-4596-8213-6d2581c779d9 {"md5": "6297a89094d46f7b144f70df74cc4010", "pid": "050105884", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5010588-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5010588-7", "source": "GND"}], "variant_name": ["Utklekningsanstalt", "Statens Utklekningsanstalten", "Flødevigens Utklekningsanstalt"], "preferred_name": "Statens Utklekningsanstalt", "country_associated": "no", "variant_access_point": ["Utklekningsanstalt. Flødevigen", "Statens Utklekningsanstalten. Flødevigen", "Flødevigens Utklekningsanstalt"], "authorized_access_point": "Statens Utklekningsanstalt. Flødevigen"} 1 -2023-07-08 08:14:13.538102 2023-07-08 08:14:13.538107 ca90d1b7-0099-4bf4-a2da-ad69528cd82b {"md5": "66492c1c9013cde0fba305b5a4c2356e", "pid": "050122916", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5012291-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5012291-5", "source": "GND"}], "variant_name": ["Minimum Wage and Child Labor Department", "North Dakota. Department of Agriculture and Labor. Minimum Wage and Child Labor Department"], "preferred_name": "North Dakota. Minimum Wage and Child Labor Department", "country_associated": "xxu", "variant_access_point": ["Minimum Wage and Child Labor Department. North Dakota", "North Dakota. Department of Agriculture and Labor. Minimum Wage and Child Labor Department"], "authorized_access_point": "North Dakota. Minimum Wage and Child Labor Department"} 1 -2023-07-08 08:14:13.614127 2023-07-08 08:14:13.614138 25ac8074-4b08-43b2-a903-3b198fc744e7 {"md5": "0fe77d4b8019556c515adfff48f466dd", "pid": "050132229", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5013222-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5013222-2", "source": "GND"}], "variant_name": ["PACAM", "Mechanics Pan-American", "PACAM", "Applied Mechanics"], "preferred_name": "Pan-American Congress of Applied Mechanics", "variant_access_point": ["PACAM", "Mechanics Pan-American", "PACAM", "Applied Mechanics"], "authorized_access_point": "Pan-American Congress of Applied Mechanics"} 1 -2023-07-08 08:14:13.721767 2023-07-08 08:14:13.721773 f3b722e2-7bd4-4430-b32f-1da44cad8434 {"md5": "8001b024144f292109234af192cb78cf", "pid": "050145363", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5014536-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5014536-8", "source": "GND"}], "variant_name": ["ICAL"], "preferred_name": "International Combustion Africa Limited", "country_associated": "sa", "variant_access_point": ["ICAL. Abkuerzung"], "authorized_access_point": "International Combustion Africa Limited. Johannesburg"} 1 -2023-07-08 08:14:13.833831 2023-07-08 08:14:13.833842 1b09591b-297e-42f2-9d1d-0515f111b9aa {"md5": "403adea5069fbe18be68ba50ca59ec65", "pid": "050155032", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5015503-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5015503-9", "source": "GND"}], "preferred_name": "International Congress on Chemical Modifiers of Cancer Treatment", "authorized_access_point": "International Congress on Chemical Modifiers of Cancer Treatment"} 1 -2023-07-08 08:14:13.945182 2023-07-08 08:14:13.945192 585ada7d-9131-4471-9d2b-d55e337abe27 {"md5": "b642b04ae80b42cedcf6dfcfd6fd73e4", "pid": "050161261", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5016126-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5016126-X", "source": "GND"}], "preferred_name": "Landwirtschaftliche Fachgespräche", "authorized_access_point": "Landwirtschaftliche Fachgespräche"} 1 -2023-07-08 08:14:14.078022 2023-07-08 08:14:14.078386 e434fb5d-ef63-40c2-9393-654d8043d604 {"md5": "103d9982acc52e58f0bdefee5b3b1601", "pid": "050168436", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5016843-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5016843-5", "source": "GND"}], "variant_name": ["Japan US Workshop on Tritium Technology"], "preferred_name": "Torichūmu-Gijutsu-ni-kansuru-Nichi-Bei-Wākushoppu", "variant_access_point": ["Japan US Workshop on Tritium Technology"], "authorized_access_point": "Torichūmu-Gijutsu-ni-kansuru-Nichi-Bei-Wākushoppu"} 1 -2023-07-08 08:14:14.180103 2023-07-08 08:14:14.180114 17dae820-08c9-44fe-9f39-578b3cf20bd4 {"md5": "d2b8f68b8048c17c82bb3fccbe8ce32a", "pid": "050171607", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5017160-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5017160-4", "source": "GND"}], "variant_name": ["International Liaison Committee", "International Catholic-Jewish Liaison Committee", "Comité International de Liaison entre Juifs et Catholiques", "International Catholic-Jewish Liaison Committee", "ILC"], "preferred_name": "International Catholic Jewish Liaison Committee", "variant_access_point": ["International Liaison Committee", "International Catholic-Jewish Liaison Committee", "Comité International de Liaison entre Juifs et Catholiques", "International Catholic-Jewish Liaison Committee", "ILC. Abkuerzung"], "date_of_establishment": "1970", "authorized_access_point": "International Catholic Jewish Liaison Committee", "biographical_information": ["Verbindungskomitee vom International Jewish Committee on Interreligious Consultations und Repräsentanten des Vatikan für katholisch-jüdische Beziehungen 23.11.1970 in Rom gegründet, arbeitet in jährlichen Treffen zur Versöhnung zwischen der katholischen Kirche und den Juden"]} 1 -2023-07-08 08:14:14.309351 2023-07-08 08:14:14.309364 50447d11-48e2-451e-8d47-f49c0aefce04 {"md5": "5854b794c5cca19952cbda66197f161f", "pid": "050184318", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5018431-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5018431-3", "source": "GND"}], "variant_name": ["Amis du Vieux Pont-Du-Chateau"], "preferred_name": "Association des Amis du Vieux Pont-Du-Chateau", "country_associated": "fr", "variant_access_point": ["Amis du Vieux Pont-Du-Chateau"], "authorized_access_point": "Association des Amis du Vieux Pont-Du-Chateau"} 1 -2023-07-08 08:14:14.411026 2023-07-08 08:14:14.41103 bf1c0414-d147-416a-ab2a-c254f5b8018c {"md5": "546f1eef3608b0bf4396a00ea1c903fe", "pid": "050186736", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5018673-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5018673-5", "source": "GND"}], "variant_name": ["Art Gallery", "Rutgers University Art Gallery", "Rutgers University. University Art Gallery"], "preferred_name": "Rutgers University. Art Gallery", "country_associated": "xxu", "variant_access_point": ["Art Gallery. Rutgers University", "Rutgers University Art Gallery", "Rutgers University. University Art Gallery"], "authorized_access_point": "Rutgers University. Art Gallery"} 1 -2023-07-08 08:14:14.545657 2023-07-08 08:14:14.545663 c412e500-9fe6-4f7f-9196-5d434b140295 {"md5": "ba684a3e3e75c112a76abff72724b280", "pid": "05018685X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5018685-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5018685-1", "source": "GND"}], "variant_name": ["Rooms-Katholiek Kerkgenootschap in Nederland. Secretariaat", "SRKK", "RKK"], "preferred_name": "Rooms-Katholiek Kerkgenootschap in Nederland", "country_associated": "ne", "variant_access_point": ["Rooms-Katholiek Kerkgenootschap in Nederland. Secretariaat", "SRKK. Abkuerzung", "RKK. Abkuerzung"], "authorized_access_point": "Rooms-Katholiek Kerkgenootschap in Nederland"} 1 -2023-07-08 08:14:14.674625 2023-07-08 08:14:14.674631 6105c306-7395-417a-9ad9-ec8f302a3c29 {"md5": "c5df4cc763fbdcf84728c6deed0399bb", "pid": "050187023", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5018702-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5018702-8", "source": "GND"}], "preferred_name": "Vlaams International Centrum", "country_associated": "be", "authorized_access_point": "Vlaams International Centrum. Brüssel"} 1 -2023-07-08 08:14:14.79088 2023-07-08 08:14:14.790893 c2ca0d94-1a3b-4380-bcf9-5f765ea0361f {"md5": "ad7086a9b547846977e308d4de9ad8d5", "pid": "050230611", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5023061-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5023061-X", "source": "GND"}], "variant_name": ["Garvey Publishing Fund"], "preferred_name": "Eva Garvey Publishing Fund", "country_associated": "xxu", "variant_access_point": ["Garvey Publishing Fund"], "authorized_access_point": "Eva Garvey Publishing Fund"} 1 -2023-07-08 08:14:14.899136 2023-07-08 08:14:14.89914 f9b35b5c-653a-4be4-88c9-2a9a4a7f1f5d {"md5": "ba3991156b1176cab9eadcfe75640a25", "pid": "050247840", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5024784-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5024784-0", "source": "GND"}], "preferred_name": "AB Göteborgs Skeppsdockor", "country_associated": "sw", "authorized_access_point": "AB Göteborgs Skeppsdockor"} 1 -2023-07-08 08:14:14.997827 2023-07-08 08:14:14.997841 ce7fccdf-f99d-4078-b078-0c88e992f143 {"md5": "b98183b6a785f4b66cc1724ed8c7c3bc", "pid": "050257722", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5025772-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5025772-9", "source": "GND"}], "variant_name": ["Verlagshaus Röser", "Röser, Fernsprechbuchverlag Rudolf"], "preferred_name": "Fernsprechbuchverlag Rudolf Röser", "country_associated": "gw", "variant_access_point": ["Verlagshaus Röser. Karlsruhe", "Röser, Fernsprechbuchverlag Rudolf. Karlsruhe"], "date_of_establishment": "1965", "authorized_access_point": "Fernsprechbuchverlag Rudolf Röser. Karlsruhe"} 1 -2023-07-08 08:14:15.127873 2023-07-08 08:14:15.127884 701151d2-27b3-4506-849f-da8caf265c66 {"md5": "a9ec0cf7019abef8439c4889cccb781e", "pid": "050269704", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5026970-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5026970-7", "source": "GND"}], "variant_name": ["JLC", "Japan Linear Collider", "JLC", "Workshop JLC", "JLC Workshop"], "preferred_name": "Workshop on Japan Linear Collider", "variant_access_point": ["JLC", "Japan Linear Collider. Workshop", "JLC", "Workshop JLC", "JLC Workshop"], "authorized_access_point": "Workshop on Japan Linear Collider"} 1 -2023-07-08 08:14:15.232996 2023-07-08 08:14:15.233007 613b305f-afb2-429d-a24f-786095d6608b {"md5": "5b7ece0b30e42eb3b60bc18fa5aeca1c", "pid": "050270850", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5027085-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5027085-0", "source": "GND"}], "preferred_name": "Electric Utility Marketing Research Symposium", "authorized_access_point": "Electric Utility Marketing Research Symposium"} 1 -2023-07-08 08:14:15.365511 2023-07-08 08:14:15.365527 4e88a864-66ef-4ae3-a354-991ea997b25f {"md5": "1399cf84445a4b63f956a10b97d71ebc", "pid": "050279831", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5027983-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5027983-X", "source": "GND"}], "preferred_name": "Städtische Höhere Mädchenschule", "authorized_access_point": "Städtische Höhere Mädchenschule. Myslowitz"} 1 -2023-07-08 08:14:15.48966 2023-07-08 08:14:15.489672 892e8453-c5d1-492b-b452-761f8049864d {"md5": "1f886d93002bc2337551371d8ae4950b", "pid": "050284185", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5028418-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5028418-6", "source": "GND"}], "preferred_name": "Gjøvik Historielag", "country_associated": "no", "authorized_access_point": "Gjøvik Historielag"} 1 -2023-07-08 08:14:15.62201 2023-07-08 08:14:15.622022 a6e4c82d-3744-48c3-8e72-4fc1802b5e9c {"md5": "fcb7115df63f60dc208902e58601b01d", "pid": "050284673", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5028467-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5028467-8", "source": "GND"}], "variant_name": ["Khet Mazdoor Union"], "preferred_name": "Bharatiya Khet Mazdoor Union", "country_associated": "ii", "variant_access_point": ["Khet Mazdoor Union. Indien"], "authorized_access_point": "Bharatiya Khet Mazdoor Union"} 1 -2023-07-08 08:14:15.744208 2023-07-08 08:14:15.744219 02063954-0c08-4fa7-b240-644cbfcd8920 {"md5": "cafa46dfcb7b70e96f834e4aca26616d", "pid": "050329820", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5032982-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5032982-0", "source": "GND"}], "variant_name": ["Udvalget til Revision af den Gaeldende Biblioteksafgiftsordning", "Dänemark. Ministeriet for Kulturelle Anliggender. Udvalget til Revision af den Gaeldende Biblioteksafgiftsordning", "Dänemark. Kulturministeriet. Udvalget til Revision af den Gaeldende Biblioteksafgiftsordning"], "preferred_name": "Dänemark. Udvalget til Revision af den Gaeldende Biblioteksafgiftsordning", "country_associated": "dk", "variant_access_point": ["Udvalget til Revision af den Gaeldende Biblioteksafgiftsordning. Dänemark", "Dänemark. Ministeriet for Kulturelle Anliggender. Udvalget til Revision af den Gaeldende Biblioteksafgiftsordning", "Dänemark. Kulturministeriet. Udvalget til Revision af den Gaeldende Biblioteksafgiftsordning"], "date_of_establishment": "XX.11.1986", "authorized_access_point": "Dänemark. Udvalget til Revision af den Gaeldende Biblioteksafgiftsordning"} 1 -2023-07-08 08:14:15.867189 2023-07-08 08:14:15.867205 d0ebcebe-01c2-4955-a0ac-ae6de6546a06 {"md5": "d2cf493db1599ced901f0497576f8d6b", "pid": "050353233", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5035323-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5035323-8", "source": "GND"}], "variant_name": ["Akademisches Orchester der Universität Stuttgart"], "preferred_name": "Universität Stuttgart. Akademisches Orchester", "country_associated": "gw", "variant_access_point": ["Akademisches Orchester der Universität Stuttgart"], "authorized_access_point": "Universität Stuttgart. Akademisches Orchester"} 1 -2023-07-08 08:14:15.976984 2023-07-08 08:14:15.976997 bb809af4-9bc0-431c-bf67-1401e895f943 {"md5": "fce32cea54ab847db64e5797f73eea92", "pid": "050361031", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5036103-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5036103-X", "source": "GND"}], "variant_name": ["Staatsbibliothek zu Berlin - Preußischer Kulturbesitz", "Staatsbibliothek zu Berlin - PK", "Staatsbibliothek Preußischer Kulturbesitz", "Stiftung Preußischer Kulturbesitz. Staatsbibliothek zu Berlin", "Gosudarstvennaja Biblioteka", "Biblioteka Państwowa", "State Library at Berlin", "Stiftung Preußischer Kulturbesitz. Gosudarstvennaja Biblioteka", "SBB-PK", "Stiftung Preußischer Kulturbesitz. State Library at Berlin", "Gosudarstvennaja Biblioteka v Berline - Prusskoe Kulʹturnoe Nasledie", "Biblioteka Państwowa w Berlinie - Dziedzictwo Kultury Pruskiej", "State Library at Berlin - Prussian Cultural Heritage Foundation", "Stabi", "SBB", "Staatsbibliothek", "Berliner Staatsbibliothek"], "preferred_name": "Staatsbibliothek zu Berlin", "country_associated": "gw", "variant_access_point": ["Staatsbibliothek zu Berlin - Preußischer Kulturbesitz", "Staatsbibliothek zu Berlin - PK", "Staatsbibliothek Preußischer Kulturbesitz. 1992-", "Stiftung Preußischer Kulturbesitz. Staatsbibliothek zu Berlin", "Gosudarstvennaja Biblioteka. Berlin", "Biblioteka Państwowa. Berlin", "State Library at Berlin", "Stiftung Preußischer Kulturbesitz. Gosudarstvennaja Biblioteka", "SBB-PK. Abkuerzung", "Stiftung Preußischer Kulturbesitz. State Library at Berlin", "Gosudarstvennaja Biblioteka v Berline - Prusskoe Kulʹturnoe Nasledie", "Biblioteka Państwowa w Berlinie - Dziedzictwo Kultury Pruskiej", "State Library at Berlin - Prussian Cultural Heritage Foundation", "Stabi. Abkuerzung", "SBB. Abkuerzung", "Staatsbibliothek. Berlin", "Berliner Staatsbibliothek"], "date_of_establishment": "01.01.1992", "authorized_access_point": "Staatsbibliothek zu Berlin"} 1 -2023-07-08 08:14:16.113518 2023-07-08 08:14:16.113529 f847f6c2-b62b-4403-a684-0678766a576d {"md5": "7acb47b276a536ea0f2d6604b0a310dc", "pid": "05037107X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5037107-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5037107-1", "source": "GND"}], "preferred_name": "Metallgesellschaft. Zentrallaboratorium", "country_associated": "gw", "authorized_access_point": "Metallgesellschaft. Zentrallaboratorium"} 1 -2023-07-08 08:14:16.235048 2023-07-08 08:14:16.235058 26251db0-c564-49b3-bd73-0a22f1bff1a3 {"md5": "57fb2f707105bd8fdb26994545447d24", "pid": "050376756", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5037675-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5037675-5", "source": "GND"}], "variant_name": ["Obergymnasium in Rudolfswert", "K.K. Obergymnasium in Rudolfswert", "Kais. Kön. Obergymnasium zu Rudolfswert (Novomesto)"], "preferred_name": "Kaiserlich-Königliches Obergymnasium in Rudolfswert", "date_of_termination": "1911", "variant_access_point": ["Obergymnasium in Rudolfswert", "K.K. Obergymnasium in Rudolfswert", "Kais. Kön. Obergymnasium zu Rudolfswert (Novomesto)"], "date_of_establishment": "1878", "authorized_access_point": "Kaiserlich-Königliches Obergymnasium in Rudolfswert"} 1 -2023-07-08 08:14:16.339984 2023-07-08 08:14:16.339997 6b9398f7-b389-4012-9f0f-5e25c3de3e46 {"md5": "7ee4dda7b629b2f0c7a66d1396b209c7", "pid": "050379712", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5037971-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5037971-9", "source": "GND"}], "variant_name": ["CAD"], "preferred_name": "Consulentschap in Algemene Dienst voor de Akkerbouw en de Groenteteelt in de Vollegrond", "country_associated": "ne", "variant_access_point": ["CAD. Abkuerzung"], "authorized_access_point": "Consulentschap in Algemene Dienst voor de Akkerbouw en de Groenteteelt in de Vollegrond. Lelystad"} 1 -2023-07-08 08:14:16.451049 2023-07-08 08:14:16.451063 8d1b1559-e186-47d0-81a9-f2f01c869b94 {"md5": "08b1ad3ef0550f9916e13cfabddb605e", "pid": "050410814", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5041081-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5041081-7", "source": "GND"}], "variant_name": ["National Research Council. Food and Nutrition Board. Committee on Codex Specifications", "Committee on Codex Specifications", "National Research Council. Assembly of Life Sciences. Division of Biological Sciences. Food and Nutrition Board. Committee on Codex Specifications"], "preferred_name": "National Research Council. Committee on Codex Specifications", "country_associated": "xxu", "variant_access_point": ["National Research Council. USA. Food and Nutrition Board. Committee on Codex Specifications", "Committee on Codex Specifications. National Research Council, USA", "National Research Council. USA. Assembly of Life Sciences. Division of Biological Sciences. Food and Nutrition Board. Committee on Codex Specifications"], "authorized_access_point": "National Research Council. USA. Committee on Codex Specifications"} 1 -2023-07-08 08:14:16.54834 2023-07-08 08:14:16.548353 9a400740-d3fd-4abb-8882-eb02ab912b14 {"md5": "d322a50dc627d322c0530da048a5bb7a", "pid": "050411071", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5041107-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5041107-X", "source": "GND"}], "preferred_name": "Seminar for Librarians in the Criminal Justice System, 1", "country_associated": "at", "authorized_access_point": "Seminar for Librarians in the Criminal Justice System, 1, 1977, Canberra"} 1 -2023-07-08 08:14:16.664115 2023-07-08 08:14:16.664121 5f5e4f49-ff37-49d0-86b5-b85ac96004f1 {"md5": "beda06e65840dd14aa34f12d7f8dd2e1", "pid": "050417444", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5041744-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5041744-7", "source": "GND"}], "variant_name": ["Colloque Biomembranes on Water Transepithelial Transport: Mechanisms of Action of Antidiuretic Hormone"], "preferred_name": "Colloque Biomembranes, 3", "country_associated": "fr", "variant_access_point": ["Colloque Biomembranes on Water Transepithelial Transport: Mechanisms of Action of Antidiuretic Hormone, 1988, Paris"], "authorized_access_point": "Colloque Biomembranes, 3, 1988, Paris"} 1 -2023-07-08 08:14:16.781124 2023-07-08 08:14:16.781135 89dba6b7-48b1-4cdb-bdac-d880cb0df112 {"md5": "7e82208c46bdc8de688f536e3a7ffff4", "pid": "050425773", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5042577-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5042577-8", "source": "GND"}], "variant_name": ["Zadužbina Ilije M. Kolarca", "Književna Zadužbina I. M. Kolarca"], "preferred_name": "Zadužbina Ilije Milosavljevića Kolarca", "variant_access_point": ["Zadužbina Ilije M. Kolarca. Ehemalige Vorzugsbenennung SWD", "Književna Zadužbina I. M. Kolarca"], "authorized_access_point": "Zadužbina Ilije Milosavljevića Kolarca", "biographical_information": ["Serb. Kulturstiftung"]} 1 -2023-07-08 08:14:16.883045 2023-07-08 08:14:16.883055 df082e21-dad8-4a97-85f7-babab2139cec {"md5": "c55fc207e60d75d3f1eeb09b6ea710b5", "pid": "050430726", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5043072-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5043072-5", "source": "GND"}], "variant_name": ["Symposium on Solid State Ionics in Japan, 15"], "preferred_name": "Kotai-Ionikusu-Tōronkai, 15", "variant_access_point": ["Symposium on Solid State Ionics in Japan, 15, 1988, Akakura"], "authorized_access_point": "Kotai-Ionikusu-Tōronkai, 15, 1988, Akakura"} 1 -2023-07-08 08:14:16.983776 2023-07-08 08:14:16.983787 22973d56-09b8-4c4f-9797-685ab4ff4da2 {"md5": "a7570e78c7f656dc645afc7ac5bc1b07", "pid": "050433504", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5043350-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5043350-7", "source": "GND"}], "variant_name": ["1989 Meeting on Yeast Cell Biology"], "preferred_name": "Meeting on Yeast Cell Biology", "country_associated": "xxu", "variant_access_point": ["1989 Meeting on Yeast Cell Biology, Cold Spring Harbor, NY"], "authorized_access_point": "Meeting on Yeast Cell Biology, 1989, Cold Spring Harbor, NY"} 1 -2023-07-08 08:14:17.12721 2023-07-08 08:14:17.127222 e08f4665-f16b-4443-aaba-e4aa4f118113 {"md5": "951001f2e2fb02b951206615c9a37a82", "pid": "050436708", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5043670-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5043670-3", "source": "GND"}], "variant_name": ["Vision"], "preferred_name": "Vision", "country_associated": "xxu", "variant_access_point": ["Vision, 1989, Chicago, IL"], "authorized_access_point": "Vision, 1989, Chicago, Ill."} 1 -2023-07-08 08:14:17.255081 2023-07-08 08:14:17.255095 6f069585-95d7-4ceb-946d-9af99ab34af9 {"md5": "a29aa4cc7f55e97847ea508824596442", "pid": "05043795X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5043795-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5043795-1", "source": "GND"}], "preferred_name": "Oak Woods Cemetery", "country_associated": "xxu", "authorized_access_point": "Oak Woods Cemetery. Chicago, Ill."} 1 -2023-07-08 08:14:17.368041 2023-07-08 08:14:17.368055 ca0838ce-559e-4192-8f7c-dd4dac96e27a {"md5": "5db10bb869d5433ef4e118ba44f0aa49", "pid": "050439464", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5043946-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5043946-7", "source": "GND"}], "preferred_name": "International Turner Syndrome Symposium, 1", "country_associated": "xxu", "authorized_access_point": "International Turner Syndrome Symposium, 1, 1988, San Francisco, Calif."} 1 -2023-07-08 08:14:17.477049 2023-07-08 08:14:17.477063 dd61a175-41ff-4264-a084-2bb5d5e72b6b {"md5": "78d4c3f367a90aa60490a23ebf37e9a6", "pid": "050445197", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5044519-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5044519-4", "source": "GND"}], "preferred_name": "Workshop on Languages for Automation", "country_associated": "sp", "authorized_access_point": "Workshop on Languages for Automation, 1985, Palma de Mallorca"} 1 -2023-07-08 08:14:17.602649 2023-07-08 08:14:17.602661 946b5a61-da00-45c2-9b53-0f69507ef51e {"md5": "620064fd2acffee2d2adba4043d6f035", "pid": "050447904", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5044790-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5044790-7", "source": "GND"}], "variant_name": ["Noise and Vibration Conference and Exposition"], "preferred_name": "Noise and Vibration Conference", "country_associated": "xxu", "variant_access_point": ["Noise and Vibration Conference and Exposition, 1989, Traverse City, Mich."], "authorized_access_point": "Noise and Vibration Conference, 1989, Traverse City, Mich."} 1 -2023-07-08 08:14:17.732873 2023-07-08 08:14:17.732878 1ab4a852-47e8-4090-ae44-63e84d6fc755 {"md5": "260b3dacdbfad81b79bb23427af26517", "pid": "050458140", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5045814-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5045814-0", "source": "GND"}], "variant_name": ["Clergé", "Poitou. Ordre du Clergé", "Ordre du Clergé"], "preferred_name": "Poitou. Clergé", "country_associated": "fr", "variant_access_point": ["Clergé. Poitou", "Poitou. Ordre du Clergé", "Ordre du Clergé. Poitou"], "authorized_access_point": "Poitou. Clergé"} 1 -2023-07-08 08:14:17.824479 2023-07-08 08:14:17.824488 8b201c49-ebc2-481b-a988-807bfc1e0704 {"md5": "23b837768e7f092c0b6e8cc0ac370e72", "pid": "050465546", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5046554-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5046554-5", "source": "GND"}], "variant_name": ["Workshop on Nonlinear Dynamics, 4"], "preferred_name": "Florida Workshop on Nonlinear Dynamics, 4", "country_associated": "xxu", "variant_access_point": ["Workshop on Nonlinear Dynamics, 4, 1989, Gainesville, Fla."], "authorized_access_point": "Florida Workshop on Nonlinear Dynamics, 4, 1989, Gainesville, Fla."} 1 -2023-07-08 08:14:17.946728 2023-07-08 08:14:17.946737 8cfd70df-7737-4288-a770-9b2c1bba78d0 {"md5": "27b0abc9b5a1ee4f827d3a10096d5f56", "pid": "05048589X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5048589-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5048589-1", "source": "GND"}], "variant_name": ["Ensemble Wien Berlin", "Ensemble WienBerlin", "EWB"], "preferred_name": "Ensemble Wien-Berlin", "country_associated": "gw", "variant_access_point": ["Ensemble Wien Berlin", "Ensemble WienBerlin", "EWB. Abkuerzung"], "date_of_establishment": "1983", "authorized_access_point": "Ensemble Wien-Berlin", "biographical_information": ["Bläserquintett", "Bläserquintett, Solobläser bei den Wiener und Berliner Philharmonikern"]} 1 -2023-07-08 08:14:18.061232 2023-07-08 08:14:18.061242 4ab95045-21e2-4f22-9ebd-35ee27fcdaf1 {"md5": "a00bcd389916c1a7e84f78b2137c658c", "pid": "050494570", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5049457-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5049457-0", "source": "GND"}], "variant_name": ["Non-Gazetted Officer's Central Union"], "preferred_name": "Telengana Non-Gazetted Officers' Union", "country_associated": "ii", "variant_access_point": ["Non-Gazetted Officer's Central Union. Hyderabad"], "authorized_access_point": "Telengana Non-Gazetted Officers' Union. Hyderabad"} 1 -2023-07-08 08:14:18.177415 2023-07-08 08:14:18.177426 7e52db08-c374-45f2-aa68-2669e7ca20d9 {"md5": "5950f3657f0a1cf68a81133e3291e2d5", "pid": "050495747", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5049574-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5049574-4", "source": "GND"}], "variant_name": ["IEEE International Symposium on Multiple Valued Logic, 20", "International Symposium on Multiple-Valued Logic, 20", "IEEE International Symposium on Multiple-Valued Logic, 20"], "preferred_name": "International Symposium on Multiple Valued Logic, 20", "country_associated": "xxu", "variant_access_point": ["IEEE International Symposium on Multiple Valued Logic, 20, 1990, Charlotte, NC", "International Symposium on Multiple-Valued Logic, 20, 1990, Charlotte, NC", "IEEE International Symposium on Multiple-Valued Logic, 20, 1990, Charlotte, NC"], "authorized_access_point": "International Symposium on Multiple Valued Logic, 20, 1990, Charlotte, NC"} 1 -2023-07-08 08:14:18.300911 2023-07-08 08:14:18.300923 f5e25c9b-3c97-4875-9e1a-f893cb4e939d {"md5": "7247e9a35b6b2a07e71f193f46a8f958", "pid": "050502298", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5050229-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5050229-3", "source": "GND"}], "variant_name": ["Hermannsburger Deutsche Ev.-Luth. Synode Süd-Afrikas"], "preferred_name": "Hermannsburger Deutsch-Evangelisch-Lutherische Synode in Süd-Afrika", "country_associated": "sa", "variant_access_point": ["Hermannsburger Deutsche Ev.-Luth. Synode Süd-Afrikas"], "authorized_access_point": "Hermannsburger Deutsch-Evangelisch-Lutherische Synode in Süd-Afrika"} 1 -2023-07-08 08:14:18.430284 2023-07-08 08:14:18.430297 9c375816-bdb8-4b62-a1ec-63fa8e3e6384 {"md5": "ee38948d4ce7577e267d2b912321588f", "pid": "050504274", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5050427-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5050427-7", "source": "GND"}], "variant_name": ["Universidade do Porto. Faculdade de Letras. Instituto de Cultura Portuguesa", "Universidade do Porto. Instituto de Cultura Portuguesa", "Instituto de Cultura Portuguesa", "Universidade. Instituto de Cultura Portuguesa", "Universidade. Faculdade de Letras. Instituto de Cultura Portuguesa"], "preferred_name": "Instituto de Cultura Portuguesa", "country_associated": "po", "variant_access_point": ["Universidade do Porto. Faculdade de Letras. Instituto de Cultura Portuguesa", "Universidade do Porto. Instituto de Cultura Portuguesa", "Instituto de Cultura Portuguesa. Porto", "Universidade. Porto. Instituto de Cultura Portuguesa", "Universidade. Porto. Faculdade de Letras. Instituto de Cultura Portuguesa"], "authorized_access_point": "Instituto de Cultura Portuguesa. Porto, Portugal"} 1 -2023-07-08 08:14:18.54472 2023-07-08 08:14:18.544724 37364218-fb37-49d3-ae57-23846e9d3a61 {"md5": "1265f8e27fac86a0cf0242c59b6509ee", "pid": "050516736", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5051673-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5051673-5", "source": "GND"}], "variant_name": ["Arnold Rikli Symposium, 1", "Rikli Symposium, 1"], "preferred_name": "International Arnold Rikli Symposium, 1", "country_associated": "sz", "variant_access_point": ["Arnold Rikli Symposium, 1, 1989, Riehen", "Rikli Symposium, 1, 1989, Riehen"], "authorized_access_point": "International Arnold Rikli Symposium, 1, 1989, Riehen"} 1 -2023-07-08 08:14:18.687442 2023-07-08 08:14:18.687455 999cd8ce-ca86-48f8-abbd-adccd557a1e4 {"md5": "786402d655734831ace65f72ba0c5972", "pid": "050519514", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5051951-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5051951-7", "source": "GND"}], "variant_name": ["FFN", "FFN", "Fondation Française de la Nutrition"], "preferred_name": "Fondation Française pour la Nutrition", "country_associated": "fr", "variant_access_point": ["FFN. Abkuerzung", "FFN. Fondation Française pour la Nutrition", "Fondation Française de la Nutrition"], "authorized_access_point": "Fondation Française pour la Nutrition"} 1 -2023-07-08 08:14:18.817156 2023-07-08 08:14:18.817172 12c280cc-4d5a-4b4b-9d72-4b515548af4e {"md5": "119623e18b070c9e1f7b2916837915e7", "pid": "05052920X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5052920-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5052920-1", "source": "GND"}], "variant_name": ["Karnevalsgesellschaft Blumenkörbchen"], "preferred_name": "Carnevalsgesellschaft Blumenkörbchen", "variant_access_point": ["Karnevalsgesellschaft Blumenkörbchen. Köln"], "authorized_access_point": "Carnevalsgesellschaft Blumenkörbchen. Köln"} 1 -2023-07-08 08:14:18.915473 2023-07-08 08:14:18.915484 0495a24e-bc24-4a88-9e15-72021dff7cec {"md5": "f8c619ba6cbd47ea48d84f85d5772b3c", "pid": "050539876", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5053987-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5053987-5", "source": "GND"}], "preferred_name": "Saar-Union, Lebensversicherungs-Aktiengesellschaft", "country_associated": "gw", "authorized_access_point": "Saar-Union, Lebensversicherungs-Aktiengesellschaft. Saarbrücken"} 1 -2023-07-08 08:14:19.044704 2023-07-08 08:14:19.044709 cdeb204a-399b-46dd-a0cf-2a670c1e2665 {"md5": "87d7e3a48fe773322482c48b3577038e", "pid": "050544942", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5054494-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5054494-9", "source": "GND"}], "preferred_name": "Društvo na Bibliotekarite na SR Makedonija", "authorized_access_point": "Društvo na Bibliotekarite na SR Makedonija"} 1 -2023-07-08 08:14:19.14016 2023-07-08 08:14:19.140177 28c40353-ae45-4b44-8183-c77be7e54152 {"md5": "6a0778f9a0f30270e673be34217d1706", "pid": "050545183", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5054518-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5054518-8", "source": "GND"}], "variant_name": ["Tschechische Föderation aller Gewerkschaften"], "preferred_name": "České Federace Všech Odbor°u", "variant_access_point": ["Tschechische Föderation aller Gewerkschaften"], "authorized_access_point": "České Federace Všech Odbor°u"} 1 -2023-07-08 08:14:19.2609 2023-07-08 08:14:19.260905 11af1fc6-b411-4c01-bc63-678618814d7d {"md5": "0a54fa48624ecac55b4d7f08893a4a6d", "pid": "050551205", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5055120-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5055120-6", "source": "GND"}], "preferred_name": "International Symposium on Mathematical Physics", "authorized_access_point": "International Symposium on Mathematical Physics"} 1 -2023-07-08 08:14:19.370336 2023-07-08 08:14:19.370344 8bbd03aa-7ab5-4083-b6b1-64c4f53b963b {"md5": "e70138b28fdcd9fc6d818ad6fcd00235", "pid": "050577395", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5057739-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5057739-6", "source": "GND"}], "variant_name": ["Internationales Seminar Junger Kunsthistoriker, 2", "Séminaire International de Jeunes Historiens de l'Art, 2", "Congrès des Jeunes Historiens de l'Art, 2"], "preferred_name": "Congrès Sculpture", "country_associated": "fr", "variant_access_point": ["Internationales Seminar Junger Kunsthistoriker, 2, 1989, Avignon", "Séminaire International de Jeunes Historiens de l'Art, 2, 1989, Avignon", "Congrès des Jeunes Historiens de l'Art, 2, 1989, Avignon"], "authorized_access_point": "Congrès Sculpture, 1989, Avignon"} 1 -2023-07-08 08:14:19.4946 2023-07-08 08:14:19.494614 18889d9d-886b-4c32-ac6e-030930519132 {"md5": "c573814fcd3047e60fa469212c2f8fea", "pid": "050588907", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5058890-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5058890-4", "source": "GND"}], "preferred_name": "Nordisk Symposium om Nordisk Språkvitskap og Morsmålspedagogikk", "authorized_access_point": "Nordisk Symposium om Nordisk Språkvitskap og Morsmålspedagogikk"} 1 -2023-07-08 08:14:19.627101 2023-07-08 08:14:19.627115 ba1906dd-bb25-4ca9-b6cd-0b9dd82dc11e {"md5": "64fa4b2638be61c65d40b30987de98a9", "pid": "050620746", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5062074-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5062074-5", "source": "GND"}], "preferred_name": "European Workshop on Methane Activation, 2", "country_associated": "ne", "authorized_access_point": "European Workshop on Methane Activation, 2, 1989, Enschede"} 1 -2023-07-08 08:14:19.745702 2023-07-08 08:14:19.745716 40f7ef03-e75e-4e6e-95ed-ac3cc679f4d3 {"md5": "10ccec1a46d8ac2079ff616513db9c7b", "pid": "050629069", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5062906-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5062906-2", "source": "GND"}], "variant_name": ["Biennale von Venedig, 21.", "Biennale Internazionale d'Arte, 21."], "preferred_name": "Biennale di Venezia, 21.", "country_associated": "it", "variant_access_point": ["Biennale von Venedig, 21., 1938, Venedig", "Biennale Internazionale d'Arte, 21., 1938, Venedig"], "authorized_access_point": "Biennale di Venezia, 21., 1938, Venedig"} 1 -2023-07-08 08:14:19.874721 2023-07-08 08:14:19.874726 ae5bcf58-dbdd-470c-aceb-84136df1fdb2 {"md5": "424a31507e9532e485c5f909bcda0bd1", "pid": "05063223X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5063223-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5063223-1", "source": "GND"}], "preferred_name": "Städtische Galerie", "country_associated": "gw", "authorized_access_point": "Städtische Galerie. Dreieich"} 1 -2023-07-08 08:14:19.982786 2023-07-08 08:14:19.982809 8d21336d-7d9a-4b0d-8dcd-5f4d06ab75af {"md5": "e0307813f574fece28a1160cc92916c0", "pid": "050639412", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5063941-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5063941-9", "source": "GND"}], "variant_name": ["Männergesangverein Deutsche Einheit", "Gesangverein Deutsche Einheit"], "preferred_name": "Männergesangverein Deutsche Einheit 1906", "country_associated": "gw", "variant_access_point": ["Männergesangverein Deutsche Einheit. Rheinhausen, Bruchsal", "Gesangverein Deutsche Einheit. Rheinhausen, Bruchsal"], "authorized_access_point": "Männergesangverein Deutsche Einheit 1906. Rheinhausen, Bruchsal"} 1 -2023-07-08 08:14:20.088888 2023-07-08 08:14:20.088901 f9dd3b85-4b99-448c-8c33-ee9aa7b227cb {"md5": "aea2180b373b619629fa46538dc4f2a6", "pid": "050710885", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5071088-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5071088-6", "source": "GND"}], "variant_name": ["National Commission on Agriculture", "Commission on Agriculture", "Pakistan. Ministry of Food and Agriculture. National Commission on Agriculture"], "preferred_name": "Pakistan. National Commission on Agriculture", "variant_access_point": ["National Commission on Agriculture. Pakistan", "Commission on Agriculture. Pakistan", "Pakistan. Ministry of Food and Agriculture. National Commission on Agriculture"], "authorized_access_point": "Pakistan. National Commission on Agriculture"} 1 -2023-07-08 08:14:20.191927 2023-07-08 08:14:20.191941 cf6872c5-38ef-4136-9bdb-1fcca84b5abf {"md5": "cf258a7e7af8e65c4c0961524249e121", "pid": "050717510", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5071751-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5071751-0", "source": "GND"}], "variant_name": ["Büro für Frauenfragen", "Büro für Frauenfragen"], "preferred_name": "Ludwigsburg. Büro für Frauenfragen", "country_associated": "gw", "variant_access_point": ["Büro für Frauenfragen. Ludwigsburg", "Büro für Frauenfragen. Ehemalige Vorzugsbenennung SWD"], "authorized_access_point": "Ludwigsburg. Büro für Frauenfragen"} 1 -2023-07-08 08:14:20.306058 2023-07-08 08:14:20.306064 f7b21d62-5636-4410-9089-ab09165ed841 {"md5": "78a0189d0186e346f649be21cadcdbe5", "pid": "050721607", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5072160-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5072160-4", "source": "GND"}], "preferred_name": "Tagung Evangelischer Juristen, 7", "authorized_access_point": "Tagung Evangelischer Juristen, 7, 1958, Tutzing"} 1 -2023-07-08 08:14:20.42575 2023-07-08 08:14:20.42576 63ad0eac-0f07-46de-b18b-83d646af88cc {"md5": "f74a9ef519900b64afaeca7af7316edd", "pid": "050726064", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5072606-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5072606-7", "source": "GND"}], "preferred_name": "Jornadas Argentinas de Micología", "authorized_access_point": "Jornadas Argentinas de Micología"} 1 -2023-07-08 08:14:20.543467 2023-07-08 08:14:20.543479 233f5e33-8869-403b-afdd-6f6ed5608773 {"md5": "09433c06f9009cf79dde6c390f2feeb5", "pid": "050738151", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5073815-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5073815-X", "source": "GND"}], "variant_name": ["Kulturamt"], "preferred_name": "Landkreis Löbau. Kulturamt", "country_associated": "gw", "variant_access_point": ["Kulturamt. Landkreis Löbau"], "authorized_access_point": "Landkreis Löbau. Kulturamt"} 1 -2023-07-08 08:14:20.677289 2023-07-08 08:14:20.677302 7e9d3382-a30e-40cb-ac62-e1f0f245a623 {"md5": "6e5d6c6a6a69ce96344c19403ce1057e", "pid": "050739875", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5073987-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5073987-6", "source": "GND"}], "variant_name": ["Overseas Labour Consultative Committee"], "preferred_name": "Trades Union Congress. Overseas Labour Consultative Committee", "country_associated": "xxk", "variant_access_point": ["Overseas Labour Consultative Committee"], "authorized_access_point": "Trades Union Congress. Overseas Labour Consultative Committee"} 1 -2023-07-08 08:14:20.812299 2023-07-08 08:14:20.81231 c5c92e0e-cc95-4f64-96c5-600dd1757e42 {"md5": "d52c973a0d296fa38bf412a3a1b27188", "pid": "050753762", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5075376-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5075376-9", "source": "GND"}], "preferred_name": "al- Mu'tamar al-ʿArabī li't-Tadrīb al-Idārī", "authorized_access_point": "al- Mu'tamar al-ʿArabī li't-Tadrīb al-Idārī, 1976, Tūnis"} 1 -2023-07-08 08:14:20.929684 2023-07-08 08:14:20.929701 e5a360a3-82cf-408d-9f1d-60d7119d32ca {"md5": "15bdcf71b798cf5d70d17f59dc6b12a8", "pid": "050778250", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5077825-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5077825-0", "source": "GND"}], "variant_name": ["Congreso sobre \\"La Casa Urbana Hispanorromana\\"", "Casa Urbana Hispanorromana"], "preferred_name": "Congreso sobre La Casa Urbana Hispanorromana", "country_associated": "sp", "variant_access_point": ["Congreso sobre \\"La Casa Urbana Hispanorromana\\", 1988, Zaragoza", "Casa Urbana Hispanorromana, 1988, Zaragoza"], "authorized_access_point": "Congreso sobre La Casa Urbana Hispanorromana, 1988, Zaragoza"} 1 -2023-07-08 08:14:21.034033 2023-07-08 08:14:21.034045 d0050ae8-ee8c-440b-8ed6-a82731c35154 {"md5": "35c8ad5955e3847dd5b617a1c3acb200", "pid": "050780328", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5078032-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5078032-3", "source": "GND"}], "variant_name": ["Symposium zur Präventiven Gesundheitsförderung, 2"], "preferred_name": "Karlsruher Symposium zur Präventiven Gesundheitsförderung, 2", "variant_access_point": ["Symposium zur Präventiven Gesundheitsförderung, 2, 1991, Karlsruhe"], "authorized_access_point": "Karlsruher Symposium zur Präventiven Gesundheitsförderung, 2, 1991"} 1 -2023-07-08 08:14:21.143175 2023-07-08 08:14:21.143186 9e9506af-15bb-430b-bd48-8ea65368f09b {"md5": "45493eae143ef881a88a0cfc0c4c7940", "pid": "050784005", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5078400-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5078400-6", "source": "GND"}], "variant_name": ["Byhistorisk Samling og Arkiv i Høje-Tåstrup Kommune"], "preferred_name": "Byhistorisk Samling og Arkiv i Høje-Taastrup Kommune", "country_associated": "dk", "variant_access_point": ["Byhistorisk Samling og Arkiv i Høje-Tåstrup Kommune"], "authorized_access_point": "Byhistorisk Samling og Arkiv i Høje-Taastrup Kommune"} 1 -2023-07-08 08:14:21.258159 2023-07-08 08:14:21.258171 300416ef-7095-4678-9976-b9aa5f4887e5 {"md5": "47a8463dff43345cc92fbf5e58fd17e0", "pid": "050786954", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5078695-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5078695-7", "source": "GND"}], "variant_name": ["Deutscher Turn- und Sportbund. Bezirk Dresden", "Deutscher Turn- und Sportbund. Bezirksvorstand Dresden"], "preferred_name": "Deutscher Turn- und Sportbund. Bezirksorganisation Dresden", "variant_access_point": ["Deutscher Turn- und Sportbund. Bezirk Dresden", "Deutscher Turn- und Sportbund. Bezirksvorstand Dresden"], "authorized_access_point": "Deutscher Turn- und Sportbund. Bezirksorganisation Dresden"} 1 -2023-07-08 08:14:21.382002 2023-07-08 08:14:21.382015 1f7ef0cd-ac05-4aec-b389-6a53b4e2a394 {"md5": "0dce3073a3af65fef787cf63ca8b2574", "pid": "050788434", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5078843-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5078843-7", "source": "GND"}], "variant_name": ["FFI"], "preferred_name": "Forstliches Forschungsinstitut", "country_associated": "gw", "date_of_termination": "30.06.1992", "variant_access_point": ["FFI. Abkuerzung"], "date_of_establishment": "01.01.1992", "authorized_access_point": "Forstliches Forschungsinstitut. Eberswalde-Finow"} 1 -2023-07-08 08:14:21.490784 2023-07-08 08:14:21.490795 2d48aa7a-3f36-4c35-9559-97df9d0ce9b7 {"md5": "776f5a5ba20c1cf3ab6561eff7428501", "pid": "050805800", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5080580-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5080580-0", "source": "GND"}], "preferred_name": "Wasser- und Bodenverband der Lüchower Landgraben-Niederung", "country_associated": "gw", "date_of_establishment": "1915", "authorized_access_point": "Wasser- und Bodenverband der Lüchower Landgraben-Niederung", "biographical_information": ["Sitz: Lüchow", "Verband zur Wasserregulierung"]} 1 -2023-07-08 08:14:21.609487 2023-07-08 08:14:21.609493 7cb9da17-81d1-4dcb-86dc-e8fe5513ef72 {"md5": "96f0e624a9e1c74e1b290b6daaa33b3f", "pid": "050846043", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5084604-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5084604-8", "source": "GND"}], "variant_name": ["Deutsche Kolonie"], "preferred_name": "Deutsche Colonie", "variant_access_point": ["Deutsche Kolonie. Buenos Aires"], "authorized_access_point": "Deutsche Colonie. Buenos Aires"} 1 -2023-07-08 08:14:21.691314 2023-07-08 08:14:21.691318 3246cab3-8e75-4336-99b7-48b2ab08a679 {"md5": "dad25e089779297394f626730e99fa9c", "pid": "050876902", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5087690-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5087690-9", "source": "GND"}], "variant_name": ["Der Beauftragte für Hauttuberkulose", "Schleswig-Holstein. Beauftragter für Hauttuberkulose", "Beauftragter für Hauttuberkulose"], "preferred_name": "Schleswig-Holstein. Der Beauftragte für Hauttuberkulose", "country_associated": "gw", "variant_access_point": ["Der Beauftragte für Hauttuberkulose. Schleswig-Holstein", "Schleswig-Holstein. Beauftragter für Hauttuberkulose", "Beauftragter für Hauttuberkulose. Schleswig-Holstein"], "authorized_access_point": "Schleswig-Holstein. Der Beauftragte für Hauttuberkulose"} 1 -2023-07-08 08:14:21.762516 2023-07-08 08:14:21.76252 e9e55cd2-ead2-477d-9b12-31202ec9dfb6 {"md5": "541ef9cdea322322e949da8e096754f3", "pid": "050880667", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5088066-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5088066-4", "source": "GND"}], "variant_name": ["Deciduous Tree Fruit Disease Workers"], "preferred_name": "United States Deciduous Tree Fruit Disease Workers", "country_associated": "xxu", "variant_access_point": ["Deciduous Tree Fruit Disease Workers. USA"], "authorized_access_point": "United States Deciduous Tree Fruit Disease Workers"} 1 -2023-07-08 08:14:21.837599 2023-07-08 08:14:21.837603 520e037a-044d-4ea0-ac29-31d2c94e2dae {"md5": "fb9f1f63ada583a3281ed669aefecbd7", "pid": "050881922", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5088192-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5088192-9", "source": "GND"}], "variant_name": ["Aviation Space Education Association. Aerospace Ambassadors"], "preferred_name": "Aerospace Ambassadors", "country_associated": "xxu", "variant_access_point": ["Aviation Space Education Association. Aerospace Ambassadors"], "authorized_access_point": "Aerospace Ambassadors"} 1 -2023-07-08 08:14:21.9093 2023-07-08 08:14:21.909303 84d4df4f-b339-4b4d-9203-918fa669fbfc {"md5": "017eaf90180735b3d60e0e3fce32525e", "pid": "050895877", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5089587-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5089587-4", "source": "GND"}], "variant_name": ["Gottschalk, Verlagsbuchhandlung und Antiquariat"], "preferred_name": "Gisela Gottschalk, Verlagsbuchhandlung und Antiquariat", "country_associated": "gw", "variant_access_point": ["Gottschalk, Verlagsbuchhandlung und Antiquariat. Estenfeld"], "authorized_access_point": "Gisela Gottschalk, Verlagsbuchhandlung und Antiquariat. Estenfeld"} 1 -2023-07-08 08:14:21.980956 2023-07-08 08:14:21.980962 b0dfc22a-4e89-4195-bc26-67a433edfca4 {"md5": "57af47a4a5aba8f017a078fdec293147", "pid": "050917633", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5091763-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5091763-8", "source": "GND"}], "preferred_name": "Gesamtdeutscher Kongreß für Schlafmedizin, 1", "country_associated": "gw", "authorized_access_point": "Gesamtdeutscher Kongreß für Schlafmedizin, 1, 1992, Wildungen"} 1 -2023-07-08 08:14:22.049767 2023-07-08 08:14:22.049769 9d7bd9ee-bbab-4a26-a78f-465cf96f6808 {"md5": "3946bac3e494a55b033dd91e193e5152", "pid": "050917889", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5091788-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5091788-2", "source": "GND"}], "variant_name": ["Mannheimer Zentrum für Europäische Sozialforschung. Europadatenarchiv", "Eurodata", "Mannheimer Zentrum für Europäische Sozialforschung. Eurodata"], "preferred_name": "Europadatenarchiv", "country_associated": "gw", "variant_access_point": ["Mannheimer Zentrum für Europäische Sozialforschung. Europadatenarchiv", "Eurodata. Mannheim, 1989,Nov. - 1992,Dez.", "Mannheimer Zentrum für Europäische Sozialforschung. Eurodata"], "authorized_access_point": "Europadatenarchiv. Mannheim"} 1 -2023-07-08 08:14:22.117354 2023-07-08 08:14:22.117358 5517469e-a4b2-4ae5-8038-05c3cd86af41 {"md5": "799c9ccbb09c9dc79c6a5aebb3bdad2c", "pid": "050925520", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5092552-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5092552-0", "source": "GND"}], "variant_name": ["Savetovanje o Aerosolima"], "preferred_name": "Jugoslovensko Savetovanje o Aerosolima", "variant_access_point": ["Savetovanje o Aerosolima, Jugoslawien"], "authorized_access_point": "Jugoslovensko Savetovanje o Aerosolima"} 1 -2023-07-08 08:14:22.186352 2023-07-08 08:14:22.186355 a4486f17-8a75-4903-83d9-44e2e3472b2e {"md5": "7abe2a3afb837faa180761864131e979", "pid": "050927078", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5092707-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5092707-3", "source": "GND"}], "variant_name": ["Königliches Realgymnasium (in Umwandlung zum Reform-Realgymnasium) in Tilsit"], "preferred_name": "Königliches Realgymnasium in Tilsit", "variant_access_point": ["Königliches Realgymnasium (in Umwandlung zum Reform-Realgymnasium) in Tilsit"], "authorized_access_point": "Königliches Realgymnasium in Tilsit"} 1 -2023-07-08 08:14:22.257916 2023-07-08 08:14:22.257919 d62eb05b-fe18-44b5-b717-aa7ee29df45f {"md5": "4b93420e84dc65dc429a7558a47a5c5c", "pid": "050943618", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5094361-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5094361-3", "source": "GND"}], "variant_name": ["University of Minnesota. Mayo Graduate School of Medicine"], "preferred_name": "Mayo Graduate School of Medicine", "country_associated": "xxu", "variant_access_point": ["University of Minnesota. Mayo Graduate School of Medicine"], "date_of_establishment": "1964", "authorized_access_point": "Mayo Graduate School of Medicine"} 1 -2023-07-08 08:14:22.331012 2023-07-08 08:14:22.331017 80437113-83c6-46c9-802a-2f87f2fa9280 {"md5": "444cf9aadea97f9e79c14552f6351c07", "pid": "051115913", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16117351-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16117351-2", "source": "GND"}], "preferred_name": "Abbaye Cistercienne", "authorized_access_point": "Abbaye Cistercienne. Saint-Benoît-en-Woëvre"} 1 -2023-07-08 08:14:22.414404 2023-07-08 08:14:22.414409 a97d5bba-a2e2-41ae-9fff-11764cdc3f18 {"md5": "9396edf88cbd41afe5ac2d1955a03ba3", "pid": "051171538", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16122067-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16122067-8", "source": "GND"}], "preferred_name": "Commonwealth Law Conference, 5", "country_associated": "xxk", "authorized_access_point": "Commonwealth Law Conference, 5, 1977, Edinburgh"} 1 -2023-07-08 08:14:22.504833 2023-07-08 08:14:22.504841 0834d677-296a-49d0-9ae4-c3de5fffdbc5 {"md5": "7e94d2aa0f04e0e2db5a2ccfc435ec07", "pid": "051251930", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16128971-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16128971-X", "source": "GND"}], "preferred_name": "Ausstellung über den U-Boot-Bunker Valentin in Bremen-Farbe", "authorized_access_point": "Ausstellung über den U-Boot-Bunker Valentin in Bremen-Farbe, 1992"} 1 -2023-07-08 08:14:22.580043 2023-07-08 08:14:22.580047 0935c0e5-5ee3-4d16-be73-7084ad66c895 {"md5": "e6ca6aacb5d2221c645dc325a4e648da", "pid": "051253801", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16129109-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16129109-0", "source": "GND"}], "variant_name": ["Fundación Fondo Editoral Acta Científica", "FUNDAVAC"], "preferred_name": "Fundación Fondo Editoral Acta Científica Venezolana", "country_associated": "ve", "variant_access_point": ["Fundación Fondo Editoral Acta Científica. Venezuela", "FUNDAVAC"], "authorized_access_point": "Fundación Fondo Editoral Acta Científica Venezolana"} 1 -2023-07-08 08:14:22.652993 2023-07-08 08:14:22.653005 c935067e-c9fd-4678-8a8a-71087ba958a1 {"md5": "b74bee84469ac06468b6b57dba127488", "pid": "051264129", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16129997-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16129997-0", "source": "GND"}], "variant_name": ["Bibliothek des Geistlichen Ministeriums zu Greifswald", "Dombibliothek St. Nikolai", "Dombibliothek Sankt Nikolai"], "preferred_name": "Bibliothek des Geistlichen Ministeriums", "variant_access_point": ["Bibliothek des Geistlichen Ministeriums zu Greifswald", "Dombibliothek St. Nikolai. Greifswald", "Dombibliothek Sankt Nikolai. Greifswald"], "authorized_access_point": "Bibliothek des Geistlichen Ministeriums"} 1 -2023-07-08 08:14:22.748358 2023-07-08 08:14:22.748363 3ecc3104-e00b-46ce-9daa-d40cb7e89ab0 {"md5": "f4e394d9bf30dd056a1c5f5141baec54", "pid": "051266717", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16130216-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16130216-6", "source": "GND"}], "variant_name": ["Volunteer Delegates of Ireland"], "preferred_name": "Volunteers of Ireland", "variant_access_point": ["Volunteer Delegates of Ireland"], "authorized_access_point": "Volunteers of Ireland"} 1 -2023-07-08 08:14:22.822308 2023-07-08 08:14:22.82231 b57c476c-275b-4cd1-bcbd-9bd9fbe59b1d {"md5": "f6bbf9357b64cb18673a81fba333ec0f", "pid": "051367386", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16138650-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16138650-7", "source": "GND"}], "preferred_name": "Internationale Konferenz der Mitteleuropäischen Universitätsarchive", "country_associated": "hu", "authorized_access_point": "Internationale Konferenz der Mitteleuropäischen Universitätsarchive, 1999, Budapest"} 1 -2023-07-08 08:14:22.896265 2023-07-08 08:14:22.896269 7f1f01f7-806b-4810-b8ea-c45a72c907bb {"md5": "230bad74a1b34d2830af3adea4bf2684", "pid": "051381079", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16139773-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16139773-6", "source": "GND"}], "preferred_name": "World Tourism Organization. Sustainable Development of Tourism Section", "authorized_access_point": "World Tourism Organization. Sustainable Development of Tourism Section"} 1 -2023-07-08 08:14:22.988774 2023-07-08 08:14:22.988783 76fe2086-73b0-4f63-aac5-34cdc1a3eace {"md5": "bbe8e5a0df9342b27447a9aa8d0a342c", "pid": "051518449", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16150720-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16150720-7", "source": "GND"}], "preferred_name": "DeWitt Clinton High School", "authorized_access_point": "DeWitt Clinton High School. New York"} 1 -2023-07-08 08:14:23.07815 2023-07-08 08:14:23.078154 6042496b-5857-487b-a665-705a537fabb4 {"md5": "6bf981f2be653699c4798ca381eac6b1", "pid": "055005284", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16183938-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16183938-1", "source": "GND"}], "variant_name": ["AKV Römernarren von 1993", "Karnevalsverein Anreppen von 1993", "Karnevalsverein Römernarren von 1993"], "preferred_name": "Anreppener Karnevalsverein Römernarren von 1993", "country_associated": "gw", "variant_access_point": ["AKV Römernarren von 1993", "Karnevalsverein Anreppen von 1993", "Karnevalsverein Römernarren von 1993. Delbrück-Anreppen"], "authorized_access_point": "Anreppener Karnevalsverein Römernarren von 1993"} 1 -2023-07-08 08:14:23.158797 2023-07-08 08:14:23.158806 2c2bae96-43d5-4083-b487-c58db835eaeb {"md5": "893d69102d49ff6f44f3a6ef852866b9", "pid": "055085849", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16191570-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16191570-X", "source": "GND"}], "preferred_name": "Messer-Griesheim-GmbH. Abteilung Sondergase", "authorized_access_point": "Messer-Griesheim-GmbH. Abteilung Sondergase"} 1 -2023-07-08 08:14:23.255049 2023-07-08 08:14:23.255057 c1029a5f-61fb-4d95-818b-ed0e4722112d {"md5": "12fc37f861494ee480f1b94f9396273a", "pid": "055114938", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16194327-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16194327-5", "source": "GND"}], "variant_name": ["RIW"], "preferred_name": "Research Instituut voor de Woningbouw", "country_associated": "ne", "variant_access_point": ["RIW"], "authorized_access_point": "Research Instituut voor de Woningbouw. Delft"} 1 -2023-07-08 08:14:23.33332 2023-07-08 08:14:23.333324 386b1362-dd43-4984-b9df-e0bcc95e57d1 {"md5": "c9abc85faf159324ef6c75759d2fcfea", "pid": "055142524", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16196978-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16196978-1", "source": "GND"}], "variant_name": ["Van Deventer Symposium, 2"], "preferred_name": "Deventer Symposium, 2", "country_associated": "ne", "variant_access_point": ["Van Deventer Symposium, 2, 1988, Nimwegen"], "authorized_access_point": "Deventer Symposium, 2, 1988, Nimwegen"} 1 -2023-07-08 08:14:23.406 2023-07-08 08:14:23.406004 0a2e9319-e9b7-4c2e-b3ac-96bff1292a9c {"md5": "32b62305ddf1a4891cdda0bb90e187c2", "pid": "055146201", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16197332-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16197332-2", "source": "GND"}], "preferred_name": "International Symposium on ESR Dosimetry and Applications, 2", "authorized_access_point": "International Symposium on ESR Dosimetry and Applications, 2, 1988, München"} 1 -2023-07-08 08:14:23.482384 2023-07-08 08:14:23.482389 97a63f22-b98e-4bec-88b7-d923828fe069 {"md5": "720eb7f2a00ff68bf18fc96330121f77", "pid": "055154050", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16198080-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16198080-6", "source": "GND"}], "variant_name": ["Symposium on Comparative Environmental Mutagenesis"], "preferred_name": "National Symposium on Comparative Environmental Mutagenesis", "country_associated": "ii", "variant_access_point": ["Symposium on Comparative Environmental Mutagenesis, 1987, Amritsar"], "authorized_access_point": "National Symposium on Comparative Environmental Mutagenesis, 1987, Amritsar"} 1 -2023-07-08 08:14:23.565327 2023-07-08 08:14:23.565333 cef3d9a8-1baa-449d-af25-287241afc3fc {"md5": "81778c91a4c9db0b483de8e3570ae8ac", "pid": "055201873", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16202635-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16202635-3", "source": "GND"}], "variant_name": ["Joint British-Spanish-Portuguese Rheology Meeting, 1"], "preferred_name": "Joint British Spanish Portuguese Rheology Meeting, 1", "country_associated": "po", "variant_access_point": ["Joint British-Spanish-Portuguese Rheology Meeting, 1, 1989, Alcabideche"], "authorized_access_point": "Joint British Spanish Portuguese Rheology Meeting, 1, 1989, Alcabideche"} 1 -2023-07-08 08:14:23.651438 2023-07-08 08:14:23.651441 84b2f62d-8b99-47b2-ada1-45e9a29d842c {"md5": "d02b28036194b0dbaedebd74226299dc", "pid": "055244025", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16206697-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16206697-1", "source": "GND"}], "preferred_name": "Symposium Tussen Wal en Schip?", "authorized_access_point": "Symposium Tussen Wal en Schip?. 1991, Rotterdam"} 1 -2023-07-08 08:14:24.520172 2023-07-08 08:14:24.520181 a752bcc1-b9aa-4694-9b1f-1b638631362f {"md5": "3a960437606c0a88d597cf01cbebe660", "pid": "055608205", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16242045-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16242045-6", "source": "GND"}], "variant_name": ["Symposium Clinical Nutrition"], "preferred_name": "Simpósio Nutrição Clínica", "variant_access_point": ["Symposium Clinical Nutrition. 1998"], "authorized_access_point": "Simpósio Nutrição Clínica. 1998"} 1 -2023-07-08 08:14:23.72644 2023-07-08 08:14:23.726444 02febef3-08a3-4831-b8af-37f925f52475 {"md5": "25ae8e0036e3f04923a734de7f437e81", "pid": "05533556X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16215472-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16215472-0", "source": "GND"}], "variant_name": ["Conférence International du Tournesol, 11", "Sunflower Conference, 11", "Conferencia Internacional de Girasol, 11", "Tournesol, 11", "Conférence Internationale du Tournesol, 11", "Girasol, 11"], "preferred_name": "International Sunflower Conference, 11", "country_associated": "ag", "variant_access_point": ["Conférence International du Tournesol, 11, 1985, Mar del Plata", "Sunflower Conference, 11, 1985, Mar del Plata", "Conferencia Internacional de Girasol, 11, 1985, Mar del Plata", "Tournesol, 11, 1985, Mar del Plata", "Conférence Internationale du Tournesol, 11, 1985, Mar del Plata", "Girasol, 11, 1985, Mar del Plata"], "authorized_access_point": "International Sunflower Conference, 11, 1985, Mar del Plata"} 1 -2023-07-08 08:14:23.804671 2023-07-08 08:14:23.804674 d850e16e-2f68-4091-b1a2-eba196821ca5 {"md5": "8eb6c497376ff74cbca3410439a7f5ec", "pid": "055380700", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16219886-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16219886-3", "source": "GND"}], "variant_name": ["Universidade Católica Portuguesa, Secção de Lisboa da Faculdade de Filosofia"], "preferred_name": "Universidade Católica Portuguesa. Faculdade de Filosofia. Secção da Lisboa", "country_associated": "po", "variant_access_point": ["Universidade Católica Portuguesa, Secção de Lisboa da Faculdade de Filosofia. Unveraenderte Form"], "authorized_access_point": "Universidade Católica Portuguesa. Faculdade de Filosofia. Secção da Lisboa"} 1 -2023-07-08 08:14:23.88715 2023-07-08 08:14:23.887152 7eb60adf-52d1-4685-91a4-8356cb98079e {"md5": "31e3b7dd69dbf61efeb2b20d798a2a6c", "pid": "055449271", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16226569-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16226569-4", "source": "GND"}], "variant_name": ["Working Group on Family Planning and Sex Education of Young People"], "preferred_name": "World Health Organization. Working Group on Family Planning and Sex Education of Young People", "variant_access_point": ["Working Group on Family Planning and Sex Education of Young People"], "authorized_access_point": "World Health Organization. Working Group on Family Planning and Sex Education of Young People"} 1 -2023-07-08 08:14:23.951183 2023-07-08 08:14:23.951186 b9c896f4-006c-4e29-8e05-122e1bf9969b {"md5": "af45c1419fb91eed182afbc5f2ff5ae5", "pid": "055518788", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16233347-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16233347-X", "source": "GND"}], "preferred_name": "Symposium on the Exploitation of Mammals", "authorized_access_point": "Symposium on the Exploitation of Mammals. 1994, London"} 1 -2023-07-08 08:14:24.020037 2023-07-08 08:14:24.02004 21cc4c57-245c-4d39-87d6-2af68c1c7200 {"md5": "613dca0dba7e20f3afff0adc56330a74", "pid": "055521460", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16233603-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16233603-2", "source": "GND"}], "preferred_name": "National Conference on Asthma and Education, 2", "country_associated": "xxc", "authorized_access_point": "National Conference on Asthma and Education, 2, 1995, Québec"} 1 -2023-07-08 08:14:24.089054 2023-07-08 08:14:24.089059 58d37b93-5473-4ff4-a53b-e793593c0b73 {"md5": "07ad96d2063734e284029118c346e2cf", "pid": "055526195", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16234065-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16234065-5", "source": "GND"}], "variant_name": ["AETS"], "preferred_name": "Agencia de Evaluación de Tecnologías Sanitarias", "variant_access_point": ["AETS"], "authorized_access_point": "Agencia de Evaluación de Tecnologías Sanitarias"} 1 -2023-07-08 08:14:24.1628 2023-07-08 08:14:24.162803 231e5607-1e93-4401-91bc-73177f5f554d {"md5": "a23f0a936f7309d0d55cc08d3ead740a", "pid": "055529771", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16234410-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16234410-7", "source": "GND"}], "preferred_name": "World Congress on Chronic Fatigue Syndrome and Related Disorders", "authorized_access_point": "World Congress on Chronic Fatigue Syndrome and Related Disorders. 1, 1995, Bruxelles"} 1 -2023-07-08 08:14:24.240955 2023-07-08 08:14:24.240964 38e2d553-0dff-4ce7-9aa0-67b14edb5e64 {"md5": "3f102821fa3b936ae4feafa6cccae141", "pid": "055578861", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16239184-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16239184-5", "source": "GND"}], "variant_name": ["Días del Cultura Española"], "preferred_name": "Dni Španělské Kultury", "variant_access_point": ["Días del Cultura Española, 1994, Ostrau"], "authorized_access_point": "Dni Španělské Kultury, 1994, Ostrau"} 1 -2023-07-08 08:14:24.338755 2023-07-08 08:14:24.338767 aee81ea6-3b08-43f1-9938-da537968fab7 {"md5": "391162c35c286b585eb9c8ea7f641f9f", "pid": "055593917", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16240644-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16240644-7", "source": "GND"}], "preferred_name": "Diabetes-Fachkonferenz", "country_associated": "gw", "authorized_access_point": "Diabetes-Fachkonferenz, 1997, Königswinter- Petersberg (Rhein)"} 1 -2023-07-08 08:14:24.436623 2023-07-08 08:14:24.436631 5ac1e82d-5d92-4a93-b55d-bff11f3ff196 {"md5": "e979ce828280711d9a23d7f31937b952", "pid": "055597793", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16241026-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16241026-8", "source": "GND"}], "variant_name": ["Dokumentations- und Bewertungsstelle für Vergiftungen"], "preferred_name": "Bundesinstitut für Gesundheitlichen Verbraucherschutz und Veterinärmedizin. Dokumentations- und Bewertungsstelle für Vergiftungen", "country_associated": "gw", "variant_access_point": ["Dokumentations- und Bewertungsstelle für Vergiftungen"], "authorized_access_point": "Bundesinstitut für Gesundheitlichen Verbraucherschutz und Veterinärmedizin. Dokumentations- und Bewertungsstelle für Vergiftungen"} 1 -2023-07-08 08:14:24.620991 2023-07-08 08:14:24.620994 04e15c3c-3a3c-4a87-804e-66182c99cbea {"md5": "fe72e3595f860622525f6e59c998221e", "pid": "055656595", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16246761-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16246761-8", "source": "GND"}], "variant_name": ["Estonian Board of Fisheries", "Board of Fisheries"], "preferred_name": "National Estonian Board of Fisheries", "variant_access_point": ["Estonian Board of Fisheries", "Board of Fisheries. Estonia"], "authorized_access_point": "National Estonian Board of Fisheries"} 1 -2023-07-08 08:14:24.696314 2023-07-08 08:14:24.696322 aece0678-f701-4e77-ae6b-cca76dcb5981 {"md5": "a8f00c24c6ac3ee422742d410a759ace", "pid": "055663354", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16247413-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16247413-1", "source": "GND"}], "variant_name": ["IFAC IFORS IMACS IFIP Symposium on Large Scale Systems: Theory and Applications", "LSS", "IFAC Symposium on Large Scale Systems: Theory and Applications"], "preferred_name": "Symposium on Large Scale Systems: Theory and Applications", "variant_access_point": ["IFAC IFORS IMACS IFIP Symposium on Large Scale Systems: Theory and Applications. 8, 1998, Rio Patras", "LSS. 8, 1998, Rio Patras", "IFAC Symposium on Large Scale Systems: Theory and Applications. 8, 1998, Rio Patras"], "authorized_access_point": "Symposium on Large Scale Systems: Theory and Applications. 8, 1998, Rio Patras"} 1 -2023-07-08 08:14:24.776318 2023-07-08 08:14:24.776323 7e1bd621-019f-4f45-9487-96fd8564b18c {"md5": "b650eb7f8feb727f6445d67a81ab951e", "pid": "055689159", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16249918-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16249918-8", "source": "GND"}], "variant_name": ["X Ogólnopolski Zjazd Socjologiczny"], "preferred_name": "Ogólnopolski Zjazd Socjologiczny, 10.", "country_associated": "pl", "variant_access_point": ["X Ogólnopolski Zjazd Socjologiczny"], "authorized_access_point": "Ogólnopolski Zjazd Socjologiczny, 10., 1997, Katowice"} 1 -2023-07-08 08:14:24.854377 2023-07-08 08:14:24.854385 e9d0d0a1-9bac-43ee-9214-e65a0aa8e32f {"md5": "3c52a7835aec338bbc4b72802ec6af31", "pid": "055718086", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16252700-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16252700-7", "source": "GND"}], "variant_name": ["IUFRO Working Party"], "preferred_name": "International Union of Forestry Research Organizations. Working Party", "variant_access_point": ["IUFRO Working Party. S 2 04 08"], "authorized_access_point": "International Union of Forestry Research Organizations. Working Party. S 2 04 08"} 1 -2023-07-08 08:14:24.934917 2023-07-08 08:14:24.93492 d74f99ea-6402-4c4e-9d8f-51c70072c209 {"md5": "f9c189777514817591d601fd32a1c128", "pid": "05573782X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16254610-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16254610-5", "source": "GND"}], "preferred_name": "Société Française de Mastologie et d'Imagerie du Sein", "authorized_access_point": "Société Française de Mastologie et d'Imagerie du Sein"} 1 -2023-07-08 08:14:25.036114 2023-07-08 08:14:25.036123 9500327d-f0f2-4300-b9f5-d85d14e68bf5 {"md5": "6d0c9ac683cca0a1fc322c0ed8f82aeb", "pid": "055774520", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16258145-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16258145-2", "source": "GND"}], "variant_name": ["International Organization for Standardization. MEPG", "Moving Picture Experts Group", "MEPG"], "preferred_name": "International Organization for Standardization. Moving Picture Experts Group", "country_associated": "xxu", "variant_access_point": ["International Organization for Standardization. MEPG", "Moving Picture Experts Group", "MEPG"], "authorized_access_point": "International Organization for Standardization. Moving Picture Experts Group"} 1 -2023-07-08 08:14:25.156566 2023-07-08 08:14:25.15657 a7ba0a3a-000f-4e16-9766-f16ce760576e {"md5": "8558d52d5542ac15487c632eb22f7727", "pid": "055798837", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16260490-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16260490-7", "source": "GND"}], "preferred_name": "Conference on Brain Somatic Cross Talk and the Central Control of Metabolism", "country_associated": "fr", "authorized_access_point": "Conference on Brain Somatic Cross Talk and the Central Control of Metabolism, 2002, Paris"} 1 -2023-07-08 08:14:25.231478 2023-07-08 08:14:25.231484 966079b9-b7c1-4017-8e85-1cb37386f1cf {"md5": "bb5eec72817e39388bcf0b1b8e4d7223", "pid": "055823866", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16262933-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16262933-3", "source": "GND"}], "variant_name": ["Conference on Feature Modelling and Advanced Design-for-the-Life-Cycle Systems (FEATS 2001)", "IFIP TC5. WG5.2 & WG5.3 Conference on Feature Modelling and Advanced Design for the Life Cycle Systems (FEATS 2001)", "IFIP TC5. WG5.2 & WG5.3 Conference on Feature Modelling and Advanced Design-for-the-Life-Cycle Systems (FEATS 2001)"], "preferred_name": "Conference on Feature Modelling and Advanced Design for the Life Cycle Systems (FEATS 2001)", "variant_access_point": ["Conference on Feature Modelling and Advanced Design-for-the-Life-Cycle Systems (FEATS 2001). 2003, Valenciennes", "IFIP TC5. WG5.2 & WG5.3 Conference on Feature Modelling and Advanced Design for the Life Cycle Systems (FEATS 2001). 2003, Valenciennes", "IFIP TC5. WG5.2 & WG5.3 Conference on Feature Modelling and Advanced Design-for-the-Life-Cycle Systems (FEATS 2001). 2003, Valenciennes"], "authorized_access_point": "Conference on Feature Modelling and Advanced Design for the Life Cycle Systems (FEATS 2001). 2003, Valenciennes"} 1 -2023-07-08 08:14:25.331257 2023-07-08 08:14:25.331264 b8740636-75bf-42e2-9598-388229cdbe46 {"md5": "82c0cd7a150a06a491f94ddaf054da45", "pid": "055837417", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16264288-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16264288-X", "source": "GND"}], "preferred_name": "Journée Claude Bernard", "authorized_access_point": "Journée Claude Bernard. 2002"} 1 -2023-07-08 08:14:25.50887 2023-07-08 08:14:25.508879 abe9a719-4d28-4cae-a3e0-61ac0420f0d2 {"md5": "cf2147b84937a719aec68363d35f6bf6", "pid": "055872891", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16267836-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16267836-8", "source": "GND"}], "preferred_name": "International Colloquium Industrial Floors, 3", "country_associated": "gw", "authorized_access_point": "International Colloquium Industrial Floors, 3, 1995, Ostfildern"} 1 -2023-07-08 08:14:25.59654 2023-07-08 08:14:25.596546 b97c149c-f219-4a97-a4b5-75378e85b4fd {"md5": "ae41cc8b92c8011ffff29e555e713883", "pid": "055899781", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16270525-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16270525-6", "source": "GND"}], "preferred_name": "Coloquio Internacional de Historia Económica, 1", "country_associated": "sp", "authorized_access_point": "Coloquio Internacional de Historia Económica, 1, 1977, Madrid"} 1 -2023-07-08 08:14:25.680035 2023-07-08 08:14:25.680043 edefd474-30dd-4565-842b-63d72bf1ce95 {"md5": "df271c25bb796c5edfa24e10e14daeaf", "pid": "055949002", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16275447-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16275447-4", "source": "GND"}], "preferred_name": "The Architectural History Foundation", "country_associated": "xxu", "authorized_access_point": "The Architectural History Foundation. New York, NY"} 1 -2023-07-08 08:14:25.768909 2023-07-08 08:14:25.768916 7880e252-3506-4ab7-b6b0-32b5ea565c03 {"md5": "0f99ce81a6579eb37612c917fece69c5", "pid": "055952283", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16275775-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16275775-X", "source": "GND"}], "preferred_name": "Winrock International", "authorized_access_point": "Winrock International"} 1 -2023-07-08 08:14:25.851939 2023-07-08 08:14:25.851944 234fbe68-5070-4593-b226-4dbfbd9fb7a9 {"md5": "b8a44eabc6f2d6556a7fbd30fb3a89b0", "pid": "056024045", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16282952-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16282952-8", "source": "GND"}], "preferred_name": "Conference on Contemporaray Research in the Foundations and Philosophy of Quantum Theory", "authorized_access_point": "Conference on Contemporaray Research in the Foundations and Philosophy of Quantum Theory, 1972, London, Canada"} 1 -2023-07-08 08:14:25.943511 2023-07-08 08:14:25.943518 fb36a89c-133f-4754-a1cb-d1ab6081a45c {"md5": "e0f73ebfd4976428b1ca716f81a00d70", "pid": "056088612", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16289409-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16289409-0", "source": "GND"}], "preferred_name": "Deutsche Architektur- und Kunsthandwerkausstellung", "authorized_access_point": "Deutsche Architektur- und Kunsthandwerkausstellung, 1938, München"} 1 -2023-07-08 08:14:26.041639 2023-07-08 08:14:26.041643 7dc5a94c-9dc7-4aef-ac6a-cd187d453194 {"md5": "8140e07ded4c4bbafde5b3ce45b90663", "pid": "056119054", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16292453-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16292453-7", "source": "GND"}], "preferred_name": "Kierkegaard-Gesellschaft", "authorized_access_point": "Kierkegaard-Gesellschaft. Kopenhagen"} 1 -2023-07-08 08:14:26.134715 2023-07-08 08:14:26.134718 399122dc-227d-419c-9168-e17bb007a5a1 {"md5": "577f22c3c2d6f89353a8a87919cccd75", "pid": "056140010", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16294549-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16294549-8", "source": "GND"}], "variant_name": ["Ellas. Ypourgeio politismou kai episti̲mo̲n", "Hellas. Hypourgeion politismou kai epistēmōn", "Hellas. Hypourgeio politismou kai epistēmōn", "Hellas. Kulturministerium", "Hellas. Ministerium für Kultur", "Hellas. Ministerium für Kultur und Wissenschaft", "Hellas. Ministry of Culture", "Hellenic Ministry of Culture"], "preferred_name": "Hellenic ministry of culture", "country_associated": "gr", "variant_access_point": ["Ellas. Ypourgeio politismou kai episti̲mo̲n", "Hellas. Hypourgeion politismou kai epistēmōn", "Hellas. Hypourgeio politismou kai epistēmōn", "Hellas. Kulturministerium", "Hellas. Ministerium für Kultur", "Hellas. Ministerium für Kultur und Wissenschaft", "Hellas. Ministry of Culture", "Hellenic Ministry of Culture"], "authorized_access_point": "Hellenic ministry of culture"} 1 -2023-07-08 08:14:26.209877 2023-07-08 08:14:26.209884 d9b73950-15d7-4684-9826-09ea91db6d9b {"md5": "bc3f02c3c4118947b1447fef50fe2487", "pid": "056141645", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16294712-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16294712-4", "source": "GND"}], "preferred_name": "American Association for the Advancement of Slavic Studies. Washington Chapter", "authorized_access_point": "American Association for the Advancement of Slavic Studies. Washington Chapter"} 1 -2023-07-08 08:14:26.298904 2023-07-08 08:14:26.29891 93e1addd-74d5-4408-a57c-af91a9f74cfd {"md5": "a946cfcf7d22a6f77e91379d86ee84de", "pid": "056169302", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16297478-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16297478-4", "source": "GND"}], "preferred_name": "International Penal and Penitentiary Congress, 6", "authorized_access_point": "International Penal and Penitentiary Congress, 6, 1900, Brussels"} 1 -2023-07-08 08:14:26.397666 2023-07-08 08:14:26.39767 760aa99b-8ce8-46f7-ad78-35a3ec299dec {"md5": "dbf59f2683d6202244876d211f3c42f9", "pid": "056281544", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16308703-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16308703-9", "source": "GND"}], "variant_name": ["Hybler, Galerie", "Steen Hybler", "Galerie Steen Hybler"], "preferred_name": "Galerie Hybler", "variant_access_point": ["Hybler, Galerie. Kopenhagen", "Steen Hybler. Galerie, Kopenhagen", "Galerie Steen Hybler. Kopenhagen"], "authorized_access_point": "Galerie Hybler. Kopenhagen"} 1 -2023-07-08 08:14:26.48357 2023-07-08 08:14:26.483577 d0593d8b-380f-428c-8ae6-9ac1ad191c91 {"md5": "7659220164ea355d14a072fa0229e93b", "pid": "056310099", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16311558-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16311558-8", "source": "GND"}], "variant_name": ["Corinth-Preis"], "preferred_name": "Lovis-Corinth-Preis", "variant_access_point": ["Corinth-Preis, 1984, Regensburg"], "authorized_access_point": "Lovis-Corinth-Preis, 1984, Regensburg"} 1 -2023-07-08 08:14:26.569224 2023-07-08 08:14:26.56923 07bb2826-458d-46c8-868a-01da944e5a97 {"md5": "e58f18cb6cd0bbf1fd05b5e99cf311a3", "pid": "05634371X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16314920-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16314920-3", "source": "GND"}], "variant_name": ["Taidemuseo Pirkanmaan Aluetaidemuseo"], "preferred_name": "Tampereen Taidemuseo Pirkanmaan Aluetaidemuseo", "country_associated": "fi", "variant_access_point": ["Taidemuseo Pirkanmaan Aluetaidemuseo. Tampere"], "authorized_access_point": "Tampereen Taidemuseo Pirkanmaan Aluetaidemuseo. Tampere"} 1 -2023-07-08 08:14:26.664989 2023-07-08 08:14:26.664993 9fc61cb8-9b04-4a37-ad8e-b12e9c183b8f {"md5": "2da147a3dc06a9ec17b75efa828ffa62", "pid": "1000024091", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16055219-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16055219-9", "source": "GND"}], "preferred_name": "Conselho Nacional de Pesquisas. Diretoria de Planejamento e Gestão", "country_associated": "bl", "authorized_access_point": "Conselho Nacional de Pesquisas. Diretoria de Planejamento e Gestão"} 1 -2023-07-08 08:14:26.759709 2023-07-08 08:14:26.759719 ba75238c-00eb-4e0a-8155-2d137d613114 {"md5": "ecdc0f7fb8f8b066e41e11300fdcc2b3", "pid": "1000226778", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6113983-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6113983-X", "source": "GND"}], "variant_name": ["Radiochemical Conference, 10"], "preferred_name": "Radiochemical Conference, 10", "variant_access_point": ["Radiochemical Conference, 10, 1982, Mariánské Lázně"], "authorized_access_point": "Radiochemical Conference, 10, 1982, Marienbad"} 1 -2023-07-08 08:14:26.867545 2023-07-08 08:14:26.867551 6603b8aa-f6d8-45aa-b1a9-c74114e5b93d {"md5": "222eb071b6bdf1eb4672d25a003ffdca", "pid": "1000228320", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6113942-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6113942-7", "source": "GND"}], "variant_name": ["Galerie La mente e l'immagine"], "preferred_name": "La mente e l'immagine", "country_associated": "it", "variant_access_point": ["Galerie La mente e l'immagine. Rom"], "authorized_access_point": "La mente e l'immagine. Rom"} 1 -2023-07-08 08:14:26.965247 2023-07-08 08:14:26.96525 3b83e3df-36a7-424d-b88c-be9bbe700d99 {"md5": "6d8a9838965622de1bd6f675c598c9fd", "pid": "1000295257", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16056448-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16056448-7", "source": "GND"}], "variant_name": ["Kultur- und Sozialwissenschaftliche Fakultät", "KSF"], "preferred_name": "Universität Luzern. Kultur- und Sozialwissenschaftliche Fakultät", "country_associated": "sz", "variant_access_point": ["Kultur- und Sozialwissenschaftliche Fakultät. Luzern", "KSF. Abkuerzung"], "authorized_access_point": "Universität Luzern. Kultur- und Sozialwissenschaftliche Fakultät"} 1 -2023-07-08 08:14:27.052803 2023-07-08 08:14:27.052809 c2a30dd7-9695-4e7b-befd-e2ff98c42c91 {"md5": "57579cc0aad2e496ade09ab4205f89fc", "pid": "1000465780", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/7692524-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7692524-9", "source": "GND"}], "variant_name": ["Temple Israel", "Temple Adath Israel", "Adath Israel"], "preferred_name": "Congregation Adath Israel", "country_associated": "xxu", "variant_access_point": ["Temple Israel", "Temple Adath Israel", "Adath Israel"], "date_of_establishment": "1854", "authorized_access_point": "Congregation Adath Israel"} 1 -2023-07-08 08:14:27.143624 2023-07-08 08:14:27.143639 5ccdac4a-04cc-4aca-aafa-ac99f40cc846 {"md5": "ab8f92ec5c2ad2a233efe0a5b0a1bb68", "pid": "1000582329", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6114797-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6114797-7", "source": "GND"}], "preferred_name": "Wissenschaftliche Tagung 60 Jahre Sozialistische Energiepolitik", "authorized_access_point": "Wissenschaftliche Tagung 60 Jahre Sozialistische Energiepolitik, 1977, Leipzig"} 1 -2023-07-08 08:14:27.241749 2023-07-08 08:14:27.241757 92c469d8-5db1-4e65-9f94-5d270173f984 {"md5": "2206b410f6faa3440f66671f30afd7fa", "pid": "1000592979", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6117212-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6117212-1", "source": "GND"}], "variant_name": ["Ulusal Kültür Kongresi Demokrasi Kültürü ve Globalleşme"], "preferred_name": "Ulusal Kültür Kongresi, 1", "country_associated": "tu", "variant_access_point": ["Ulusal Kültür Kongresi Demokrasi Kültürü ve Globalleşme, 1997, İmir"], "authorized_access_point": "Ulusal Kültür Kongresi, 1, 1997, Izmir"} 1 -2023-07-08 08:14:27.328575 2023-07-08 08:14:27.328587 9995ffca-855d-4efd-84ac-fdbd68082c17 {"md5": "75ce16ed2bc2b6e00d3952463bb6dafd", "pid": "1000594521", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6117140-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6117140-2", "source": "GND"}], "variant_name": ["Congrès de l'Association Internationale des Professeurs de Philosophie, 7", "Kongress des Internationelen Verbands für Philosophiedozenten, 7", "Kongress Philosophie und Interdisziplinarität, 7"], "preferred_name": "Congrès Philosophie et Interdisciplinarité, 7", "country_associated": "fr", "variant_access_point": ["Congrès de l'Association Internationale des Professeurs de Philosophie, 7, 1977, Sèvres", "Kongress des Internationelen Verbands für Philosophiedozenten, 7, 1977, Sèvres", "Kongress Philosophie und Interdisziplinarität, 7, 1977, Sèvres"], "authorized_access_point": "Congrès Philosophie et Interdisciplinarité, 7, 1977, Sèvres"} 1 -2023-07-08 08:14:27.417137 2023-07-08 08:14:27.417143 da8b2777-82ae-4d91-a05f-51f7f3229b97 {"md5": "a1beec50b9840f7d89bbf56a0dacbd7f", "pid": "1000601153", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6117583-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6117583-3", "source": "GND"}], "preferred_name": "Statusseminar Einflüsse von Umweltchemikalien auf das Klima und biologische Folgewirkungen", "country_associated": "gw", "authorized_access_point": "Statusseminar Einflüsse von Umweltchemikalien auf das Klima und biologische Folgewirkungen, 1978, Neuherberg"} 1 -2023-07-08 08:14:27.498017 2023-07-08 08:14:27.49802 7c77b729-f9ec-4b78-bfdf-ab48f0ab44d9 {"md5": "30280b531bbd8687c6b07945d7bea801", "pid": "1000610896", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6115833-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6115833-1", "source": "GND"}], "variant_name": ["Commerce Technical Advisory Board", "USA. Department of Commerce. Commerce Technical Advisory Board", "CTAB"], "preferred_name": "USA. Commerce Technical Advisory Board", "country_associated": "xxu", "variant_access_point": ["Commerce Technical Advisory Board. USA", "USA. Department of Commerce. Commerce Technical Advisory Board", "CTAB. Abkuerzung"], "authorized_access_point": "USA. Commerce Technical Advisory Board"} 1 -2023-07-08 08:14:27.584313 2023-07-08 08:14:27.584318 f6a1469f-fb4c-488c-98b1-e61d18f7fb0e {"md5": "9a19dd50a83de8ff3d9caf9e92e886ab", "pid": "1000681815", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16058421-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16058421-8", "source": "GND"}], "preferred_name": "Ausstellung Cy Twombly. Photographien, Druckgraphiken, Zeichnungen", "country_associated": "gw", "authorized_access_point": "Ausstellung Cy Twombly. Photographien, Druckgraphiken, Zeichnungen, 2009, Altenburg, Thüringen"} 1 -2023-07-08 08:14:27.759692 2023-07-08 08:14:27.759703 f042ad91-49d3-4f9b-8594-94663bda6fdc {"md5": "442579b84cb7740d030b220a62c13d44", "pid": "1000698777", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6118729-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6118729-X", "source": "GND"}], "variant_name": ["Jugendamt der Stadt Hagen"], "preferred_name": "Hagen. Jugendamt", "country_associated": "gw", "variant_access_point": ["Jugendamt der Stadt Hagen. Unveraenderte Form"], "authorized_access_point": "Hagen. Jugendamt", "biographical_information": ["1997 Zusammenschluss mit dem \\"Sozialamt\\" zum \\"Fachbereich Soziales und Jugend\\""]} 1 -2023-07-08 08:14:27.853022 2023-07-08 08:14:27.853028 7ee1bee3-443a-4b6f-8fd9-b81e9e7eb1d5 {"md5": "fe7c20da60a56384e751eb2f90b6e00b", "pid": "1000836290", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16059085-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16059085-1", "source": "GND"}], "preferred_name": "Umweltschutzverein", "country_associated": "au", "authorized_access_point": "Umweltschutzverein. Brunn am Gebirge"} 1 -2023-07-08 08:14:27.94289 2023-07-08 08:14:27.942971 e5b3c6ad-6c91-4399-b152-bfd46aceb79a {"md5": "cbe893715f9f7bbaee8b693b863badb9", "pid": "1000990958", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/7695570-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7695570-9", "source": "GND"}], "preferred_name": "Internationales Jugend- und Kulturzentrum Kiebitz", "country_associated": "gw", "authorized_access_point": "Internationales Jugend- und Kulturzentrum Kiebitz", "biographical_information": ["Gegründet 1985"]} 1 -2023-07-08 08:14:28.03103 2023-07-08 08:14:28.031035 253ada7d-fb50-421a-aa49-89fd33f72487 {"md5": "9603db96f4d12b3dc7d4951efd0caf36", "pid": "1001088646", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16060301-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16060301-8", "source": "GND"}], "variant_name": ["ZFVB", "Zentralverband der Familiengärten-Vereine"], "preferred_name": "Zentralverband der Familiengärtner-Vereine", "country_associated": "sz", "variant_access_point": ["ZFVB. Zentralverband der Familiengärtner-Vereine Basel", "Zentralverband der Familiengärten-Vereine. Basel"], "date_of_establishment": "1973", "authorized_access_point": "Zentralverband der Familiengärtner-Vereine. Basel"} 1 -2023-07-08 08:14:28.119364 2023-07-08 08:14:28.119368 ed241951-aee9-48b2-b202-f641def5603e {"md5": "1fb4234ba45cf0d0f7d31563101d008f", "pid": "1001206770", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16060901-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16060901-X", "source": "GND"}], "preferred_name": "Ausstellung Farbe Ist Berührung des Auges", "country_associated": "gw", "authorized_access_point": "Ausstellung Farbe Ist Berührung des Auges, 2010, Dachau"} 1 -2023-07-08 08:14:39.507765 2023-07-08 08:14:39.507768 74f1dc4b-9a2d-4127-a334-020e85bdf572 {"md5": "292e5c401c5155878188f6ea664146ea", "pid": "1012289915", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1012289915", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012289915", "source": "GND"}], "date_of_birth": "1565", "date_of_death": "1611", "preferred_name": "Müller, Jakob", "country_associated": "gw", "authorized_access_point": "Müller, Jakob, 1565-1611"} 1 -2023-07-08 08:14:28.21754 2023-07-08 08:14:28.217544 ef5c1e46-d995-42e3-b4e1-8219a2902156 {"md5": "3ed8399850fe5f7574b8da0b49c4fe1d", "pid": "1001284402", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16061267-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16061267-6", "source": "GND"}], "variant_name": ["Kinderfest in Altshausen"], "preferred_name": "Kinderfest Altshausen", "variant_access_point": ["Kinderfest in Altshausen, 1853 - 2009"], "authorized_access_point": "Kinderfest Altshausen, 1853 - 2009"} 1 -2023-07-08 08:14:28.331358 2023-07-08 08:14:28.331363 414c13d9-f5b1-4b5a-8d8a-dd5f4bfc57a0 {"md5": "bc3c76d815fa28f36d33eeef2e9a1263", "pid": "1001334272", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16061468-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16061468-5", "source": "GND"}], "preferred_name": "Katholische Arbeiterbewegung Tirol", "country_associated": "au", "authorized_access_point": "Katholische Arbeiterbewegung Tirol", "biographical_information": ["Vorlage: 1963 - 1964"]} 1 -2023-07-08 08:14:28.417572 2023-07-08 08:14:28.417578 254ce076-9a4a-4739-ae03-51058c2c0410 {"md5": "0855adbb1fe6484e1118f7f78e223ac9", "pid": "1001567501", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16062315-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16062315-7", "source": "GND"}], "preferred_name": "Mps Mobilpress Ltd.. Team Wirtschaftsjournalisten", "country_associated": "gw", "authorized_access_point": "Mps Mobilpress Ltd.. Team Wirtschaftsjournalisten"} 1 -2023-07-08 08:14:28.493213 2023-07-08 08:14:28.493221 baa45dac-9ea8-4b0a-9fb9-fb74caf85294 {"md5": "f30a8f3a6ec2565286c582e486187d5e", "pid": "100167328X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16062671-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16062671-7", "source": "GND"}], "preferred_name": "Ausstellung Hans Otte, Künstlerpublikationen und Partituren", "country_associated": "gw", "authorized_access_point": "Ausstellung Hans Otte, Künstlerpublikationen und Partituren, 2006-2007, Bremen"} 1 -2023-07-08 08:14:28.59513 2023-07-08 08:14:28.595142 7101ad39-a359-48fd-93aa-9e1775e40c77 {"md5": "37a3081072bc435cbddff7a333721bcb", "pid": "1001827562", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6121646-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6121646-X", "source": "GND"}], "variant_name": ["Nacionalʹnyj Techničnyj Universytet Ukrai͏̈ny Kyi͏̈vsʹkyj Politechničnyj Instytut. Instytut Prykladnoho Systemnoho Analizu"], "preferred_name": "Instytut Prykladnoho Systemnoho Analizu", "country_associated": "un", "variant_access_point": ["Nacionalʹnyj Techničnyj Universytet Ukrai͏̈ny Kyi͏̈vsʹkyj Politechničnyj Instytut. Instytut Prykladnoho Systemnoho Analizu"], "authorized_access_point": "Instytut Prykladnoho Systemnoho Analizu. Kiew"} 1 -2023-07-08 08:14:28.686514 2023-07-08 08:14:28.68652 0a171a0c-29f9-477b-96e5-fb441aabe828 {"md5": "425dc7b09e5a65d81e0f84d80058336a", "pid": "1001848063", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6123023-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6123023-6", "source": "GND"}], "variant_name": ["Sportverein Eintracht Oldenburg", "SV Eintracht Oldenburg e.V.", "Turnverein Nadorst", "Nadorster Turnverein", "Turn- und Sportverein Nord zu Oldenburg", "TSV Nord"], "preferred_name": "SV Eintracht Oldenburg", "country_associated": "gw", "variant_access_point": ["Sportverein Eintracht Oldenburg", "SV Eintracht Oldenburg e.V.. Unveraenderte Form", "Turnverein Nadorst", "Nadorster Turnverein", "Turn- und Sportverein Nord zu Oldenburg", "TSV Nord"], "authorized_access_point": "SV Eintracht Oldenburg", "biographical_information": ["Gegr. 1890, letzte Namensänderung 1974"]} 1 -2023-07-08 08:14:28.772229 2023-07-08 08:14:28.772232 fbc59a44-3ec4-49d4-b41e-dca5be04e3ce {"md5": "11ee5822fb24dd1febfc9a8e45e191f5", "pid": "1001985265", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16063792-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16063792-2", "source": "GND"}], "variant_name": ["IUFRO Conference Sustainable Forest Management and Poverty Alleviation: Roles of Traditional Forest-Related Knowledge", "International Conference on Sustainable Forest Management and Poverty Alleviation"], "preferred_name": "Conference Sustainable Forest Management and Poverty Alleviation: Roles of Traditional Forest-Related Knowledge", "country_associated": "cc", "variant_access_point": ["IUFRO Conference Sustainable Forest Management and Poverty Alleviation: Roles of Traditional Forest-Related Knowledge, 2007, Kunming", "International Conference on Sustainable Forest Management and Poverty Alleviation, 2007, Kunming"], "authorized_access_point": "Conference Sustainable Forest Management and Poverty Alleviation: Roles of Traditional Forest-Related Knowledge, 2007, Kunming"} 1 -2023-07-08 08:14:28.845983 2023-07-08 08:14:28.845987 62490d2d-edf6-4ad8-bd67-459264a78a86 {"md5": "5ed98eb77e8d1a3ce86f4402db1bec50", "pid": "1002133998", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16064384-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16064384-3", "source": "GND"}], "preferred_name": "Berlin. Abgeordnetenhaus. Petitionsausschuss", "country_associated": "gw", "authorized_access_point": "Berlin. Abgeordnetenhaus. Petitionsausschuss"} 1 -2023-07-08 08:14:28.915239 2023-07-08 08:14:28.915245 23fd669b-08f5-42b4-83b2-2e7bf72331ef {"md5": "86e24de57f066e2431a7f342a9a637fd", "pid": "1002374588", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16065137-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16065137-2", "source": "GND"}], "variant_name": ["Oberösterreichische Landesausstellung Renaissance und Reformation", "Oö. Landesausstellung"], "preferred_name": "Oberösterreichische Landesausstellung", "country_associated": "au", "variant_access_point": ["Oberösterreichische Landesausstellung Renaissance und Reformation, 2010, Grieskirchen", "Oö. Landesausstellung, 2010, Grieskirchen-Parz"], "authorized_access_point": "Oberösterreichische Landesausstellung, 2010, Grieskirchen"} 1 -2023-07-08 08:14:31.077749 2023-07-08 08:14:31.077761 30bf1c03-5df9-46c5-bc88-a19a18bde505 {"md5": "94d0dd5c393dd78e5fd6ecd020c7fd56", "pid": "1004490674", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6124890-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6124890-3", "source": "GND"}], "variant_name": ["KPC"], "preferred_name": "Kaigo no hana Photographer's Club", "country_associated": "ja", "variant_access_point": ["KPC. Abkuerzung"], "authorized_access_point": "Kaigo no hana Photographer's Club"} 1 -2023-07-08 08:14:29.04532 2023-07-08 08:14:29.045334 97947eda-67a9-4f75-a96e-5abe7808e143 {"md5": "9bbc1f0378b00e9297dc6bc2e9b4ae53", "pid": "1002731305", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16066236-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16066236-9", "source": "GND"}], "variant_name": ["IEEE INFOCOM, 29", "International Conference on Computer Communications, 29"], "preferred_name": "INFOCOM, 29", "country_associated": "xxu", "variant_access_point": ["IEEE INFOCOM, 29, 2010, San Diego, Calif.", "International Conference on Computer Communications, 29, 2010, San Diego, Calif."], "authorized_access_point": "INFOCOM, 29, 2010, San Diego, Calif."} 1 -2023-07-08 08:14:29.169955 2023-07-08 08:14:29.169967 5501fb51-842f-4a2c-8455-973571446516 {"md5": "cc8f4500eab943c37a185031a2a9a1b2", "pid": "1003000274", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16067371-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16067371-9", "source": "GND"}], "variant_name": ["ABGE", "ABGE"], "preferred_name": "Associação Brasileira de Geologia de Engenharia", "country_associated": "bl", "variant_access_point": ["ABGE. Abkuerzung", "ABGE. Associação Brasileira de Geologia de Engenharia"], "authorized_access_point": "Associação Brasileira de Geologia de Engenharia"} 1 -2023-07-08 08:14:29.282724 2023-07-08 08:14:29.28273 a72d4e7c-4707-4b61-ab37-733dccb2d792 {"md5": "960686e90355923cfb7f2b71925ba7d2", "pid": "1003122329", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16067920-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16067920-5", "source": "GND"}], "preferred_name": "Verein für Leibesübungen Sindelfingen 1862. Abt. Radsport", "country_associated": "gw", "authorized_access_point": "Verein für Leibesübungen Sindelfingen 1862. Abt. Radsport"} 1 -2023-07-08 08:14:29.394695 2023-07-08 08:14:29.394701 1a09b0eb-fdb5-437d-9f87-b595f86a6b47 {"md5": "2883a4ab7f90c32444082d14168b6dd0", "pid": "1003145523", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16068076-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16068076-1", "source": "GND"}], "variant_name": ["Hessling, Buchhandlung, Antiquariat"], "preferred_name": "Bruno Hessling, Buchhandlung, Antiquariat", "country_associated": "gw", "variant_access_point": ["Hessling, Buchhandlung, Antiquariat. Berlin, West"], "authorized_access_point": "Bruno Hessling, Buchhandlung, Antiquariat. Berlin, West"} 1 -2023-07-08 08:14:29.48846 2023-07-08 08:14:29.488471 4e8fa575-fd82-4c8c-a61b-b7416590fad0 {"md5": "59484d7b4c7afb726a7c2ca9db85f552", "pid": "100316042", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/100316042", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/100316042", "source": "GND"}], "variant_name": ["Abbé Mesnier"], "date_of_death": "1761", "preferred_name": "Mesnier, ...", "country_associated": "fr", "variant_access_point": ["Abbé Mesnier, -1761"], "authorized_access_point": "Mesnier, ..., -1761", "biographical_information": ["Franz. Priester", "Priester"]} 1 -2023-07-08 08:14:29.592104 2023-07-08 08:14:29.592114 35d05fbc-2c5e-4cbe-b9e5-11a479248282 {"md5": "8b93e062f287827a84ecb4377563887c", "pid": "1003218784", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16068388-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16068388-9", "source": "GND"}], "variant_name": ["Evangelisches Krankenhaus Johannisstift Münster gGmbH", "Evangelisches Johannisstift Münster gGmbH", "EVK Johannisstift Münster", "EVK Münster"], "preferred_name": "Evangelisches Krankenhaus Johannisstift Münster", "country_associated": "gw", "variant_access_point": ["Evangelisches Krankenhaus Johannisstift Münster gGmbH. Unveraenderte Form", "Evangelisches Johannisstift Münster gGmbH", "EVK Johannisstift Münster", "EVK Münster"], "date_of_establishment": "1863", "authorized_access_point": "Evangelisches Krankenhaus Johannisstift Münster"} 1 -2023-07-08 08:14:29.713504 2023-07-08 08:14:29.71351 de6d9e53-aaa6-411d-98c6-c4ac00a1b03d {"md5": "ada540fc78b3e55e0a2a183100dd9e5c", "pid": "1003329063", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16068860-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16068860-7", "source": "GND"}], "variant_name": ["Mariaux-Verlag", "Verlag J. W. Mariaux"], "preferred_name": "J.-W.-Mariaux-Verlag", "variant_access_point": ["Mariaux-Verlag. Köln", "Verlag J. W. Mariaux. Köln"], "authorized_access_point": "J.-W.-Mariaux-Verlag. Köln"} 1 -2023-07-08 08:14:29.84154 2023-07-08 08:14:29.841553 8a72d315-2d15-4652-b9aa-422b83ec9556 {"md5": "713da0b94aa83412bb8ac7ea2c8414c8", "pid": "100349471", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/100349471", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/100349471", "source": "GND"}], "variant_name": ["Gursky, Florian de Gurry", "Gurry Górsky, Florian de", "Górsky, Florian de Gurry", "Gursky, Florian de G.", "Gursky, Florian de", "Gurry Gursky, Florianus de", "Gursky, Florianus de Gurry", "Gurry-Gursky, Florian de", "Gurski, Floryan", "Górski, Floryan", "Gurry Gurski, Floryan", "Gurski, Floryan Gurry", "Gurry Górski, Floryan", "Górski, Floryan Gurry"], "preferred_name": "Gurry Gursky, Florian de", "country_associated": "pl", "variant_access_point": ["Gursky, Florian de Gurry", "Gurry Górsky, Florian de", "Górsky, Florian de Gurry", "Gursky, Florian de G.", "Gursky, Florian de", "Gurry Gursky, Florianus de", "Gursky, Florianus de Gurry", "Gurry-Gursky, Florian de", "Gurski, Floryan", "Górski, Floryan", "Gurry Gurski, Floryan", "Gurski, Floryan Gurry", "Gurry Górski, Floryan", "Górski, Floryan Gurry"], "authorized_access_point": "Gurry Gursky, Florian de", "biographical_information": ["Poln. Publizist"]} 1 -2023-07-08 08:14:31.200556 2023-07-08 08:14:31.200566 bcd6ae55-23e2-4c2d-806d-3e93a18fc5e2 {"md5": "c62e3c49a67d8424ee5e9d4c83cb8095", "pid": "1004494807", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6127131-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6127131-7", "source": "GND"}], "variant_name": ["Seminar on Outer Space Problems"], "preferred_name": "Seminar on Problems of Outer Space", "country_associated": "xxu", "variant_access_point": ["Seminar on Outer Space Problems, 1963, New York, NY"], "authorized_access_point": "Seminar on Problems of Outer Space, 1963, New York, NY"} 1 -2023-07-08 08:14:29.962271 2023-07-08 08:14:29.962282 33e0fd8e-fd7f-403f-8c81-92fef57f6a3b {"md5": "2a03cf02aec4be5ebdebc16b8bf7673a", "pid": "1003824153", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16071408-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16071408-4", "source": "GND"}], "variant_name": ["Weltgesundheitsorganisation. Regional Office for Europe. Working Group on Epidemiological Surveillance of Long-Term Health Effects of Environmental Hazards", "Working Group on Epidemiological Surveillance of Long-Term Health Effects of Environmental Hazards"], "preferred_name": "Weltgesundheitsorganisation. Working Group on Epidemiological Surveillance of Long-Term Health Effects of Environmental Hazards", "variant_access_point": ["Weltgesundheitsorganisation. Regional Office for Europe. Working Group on Epidemiological Surveillance of Long-Term Health Effects of Environmental Hazards", "Working Group on Epidemiological Surveillance of Long-Term Health Effects of Environmental Hazards"], "authorized_access_point": "Weltgesundheitsorganisation. Working Group on Epidemiological Surveillance of Long-Term Health Effects of Environmental Hazards"} 1 -2023-07-08 08:14:30.0867 2023-07-08 08:14:30.086713 b722465b-0f9c-4bcb-b3db-f0d26c325494 {"md5": "693336942d903272842dc32b7520dfba", "pid": "1003837840", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16071469-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16071469-2", "source": "GND"}], "preferred_name": "Ausstellung Luciano Rigolini: What You See", "country_associated": "sz", "authorized_access_point": "Ausstellung Luciano Rigolini: What You See, 2008, Winterthur"} 1 -2023-07-08 08:14:30.195856 2023-07-08 08:14:30.19587 062cbf20-3668-415f-82b8-bdf3ceac306b {"md5": "5a81e81fb6a01535f2c99bed78195e23", "pid": "1004014589", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16072082-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16072082-5", "source": "GND"}], "variant_name": ["Verband Schaffende Arbeitslosenfürsorge", "Verband zur Förderung der Wirtschaftlichen Interessen aller Schaffenden Stände und zur Beseitigung der Arbeitslosigkeit", "Gemeinnütziger Verband zur Förderung der Wirtschaftlichen Interessen aller Schaffenden Stände und zur Beseitigung der Arbeitslosigkeit"], "preferred_name": "Schaffende Arbeitslosenfürsorge", "country_associated": "au", "variant_access_point": ["Verband Schaffende Arbeitslosenfürsorge", "Verband zur Förderung der Wirtschaftlichen Interessen aller Schaffenden Stände und zur Beseitigung der Arbeitslosigkeit", "Gemeinnütziger Verband zur Förderung der Wirtschaftlichen Interessen aller Schaffenden Stände und zur Beseitigung der Arbeitslosigkeit"], "authorized_access_point": "Schaffende Arbeitslosenfürsorge", "biographical_information": ["Vorlage: 1932"]} 1 -2023-07-08 08:14:30.314877 2023-07-08 08:14:30.314891 67ef1f09-4ab4-4105-a983-7e6fb2191ec6 {"md5": "1e189597a6d662b94232d9adc54ba00a", "pid": "1004316267", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16073239-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16073239-6", "source": "GND"}], "variant_name": ["International Conference on Deontic Logic in Computer Science, 10"], "preferred_name": "DEON, 10", "country_associated": "it", "variant_access_point": ["International Conference on Deontic Logic in Computer Science, 10, 2010, Fiesole"], "authorized_access_point": "DEON, 10, 2010, Fiesole"} 1 -2023-07-08 08:14:30.429704 2023-07-08 08:14:30.42971 f0dcc297-4ad6-44a9-8681-32fc1a78b14f {"md5": "d1b55b8eb1bbdc9a6c9dd32070315968", "pid": "1004386486", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16073577-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16073577-4", "source": "GND"}], "variant_name": ["Università degli Studi di Roma La Sapienza. Dipartimento di Lingue, Letterature e Culture Moderne. Sezione di Francesistica", "Università degli Studi di Roma \\"La Sapienza\\". Sezione di Francesistica", "Università degli Studi di Roma \\"La Sapienza\\". Dipartimento di Lingue, Letterature e Culture Moderne. Sezione di Francesistica", "Università degli studi di Roma \\"La Sapienza\\". Sezione di francesistica", "Dipartimento di lingue, letterature e culture moderne. Sezione di francesistica. \\"Sapienza\\" Università di Roma", "Università degli studi di Roma \\"La Sapienza\\". Dipartimento di lingue, letterature e culture moderne. Sezione di francesistica"], "preferred_name": "Università degli Studi di Roma La Sapienza. Sezione di Francesistica", "country_associated": "it", "variant_access_point": ["Università degli Studi di Roma La Sapienza. Dipartimento di Lingue, Letterature e Culture Moderne. Sezione di Francesistica", "Università degli Studi di Roma \\"La Sapienza\\". Sezione di Francesistica", "Università degli Studi di Roma \\"La Sapienza\\". Dipartimento di Lingue, Letterature e Culture Moderne. Sezione di Francesistica", "Università degli studi di Roma \\"La Sapienza\\". Sezione di francesistica", "Dipartimento di lingue, letterature e culture moderne. Sezione di francesistica. \\"Sapienza\\" Università di Roma", "Università degli studi di Roma \\"La Sapienza\\". Dipartimento di lingue, letterature e culture moderne. Sezione di francesistica"], "date_of_establishment": "2006", "authorized_access_point": "Università degli Studi di Roma La Sapienza. Sezione di Francesistica"} 1 -2023-07-08 08:14:30.551089 2023-07-08 08:14:30.551102 827fe038-6c36-456b-9226-7ea7d349718f {"md5": "fbd574e92f4ade09e1202b91bb71ea8d", "pid": "100438713X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16073588-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16073588-9", "source": "GND"}], "variant_name": ["Quatuor à Cordes Mikrokosmos", "Mikrokosmos-Streichquartett", "Mikrokosmos String Quartet"], "preferred_name": "Mikrokosmos Vonósnégyes", "country_associated": "hu", "variant_access_point": ["Quatuor à Cordes Mikrokosmos", "Mikrokosmos-Streichquartett", "Mikrokosmos String Quartet"], "date_of_establishment": "1998", "authorized_access_point": "Mikrokosmos Vonósnégyes"} 1 -2023-07-08 08:14:30.689429 2023-07-08 08:14:30.689437 f9f3023e-c68b-4f73-a926-c02d6035dd80 {"md5": "6c41a5eed3266a4735539ef85fab389c", "pid": "1004477503", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/3074228-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3074228-6", "source": "GND"}], "preferred_name": "Seminario de Lenguas y Epigrafia Antiguas, 18", "country_associated": "sp", "authorized_access_point": "Seminario de Lenguas y Epigrafia Antiguas, 18, 2002, Valencia"} 1 -2023-07-08 08:14:30.824329 2023-07-08 08:14:30.824335 e45c2f17-0705-4a79-ba90-764e46552728 {"md5": "34362168002efe820355c63d6b48696b", "pid": "1004482531", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6123852-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6123852-1", "source": "GND"}], "variant_name": ["Landesveterinär- und Lebensmitteluntersuchungsamt"], "preferred_name": "Sachsen-Anhalt. Landesveterinär- und Lebensmitteluntersuchungsamt", "country_associated": "gw", "variant_access_point": ["Landesveterinär- und Lebensmitteluntersuchungsamt. Sachsen-Anhalt"], "authorized_access_point": "Sachsen-Anhalt. Landesveterinär- und Lebensmitteluntersuchungsamt"} 1 -2023-07-08 08:14:30.95082 2023-07-08 08:14:30.950827 9a0a16f9-f927-47ee-ada7-13d0d7cf7e29 {"md5": "8c4cb2287ac608d0f7fadb8cdf66b89c", "pid": "1004487096", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6124720-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6124720-0", "source": "GND"}], "variant_name": ["Albin Klärig", "Thüringer Marmor- und Alabasterwerk"], "preferred_name": "Albin Klärig, Thüringer Marmor- und Alabasterwerk", "variant_access_point": ["Albin Klärig. Waltershausen", "Thüringer Marmor- und Alabasterwerk. Waltershausen"], "authorized_access_point": "Albin Klärig, Thüringer Marmor- und Alabasterwerk. Waltershausen"} 1 -2023-07-08 08:14:31.459724 2023-07-08 08:14:31.459731 5318bd44-3e98-473f-9fa8-63b0c32c8741 {"md5": "cd3bb7d529356883ccd498fe1938c232", "pid": "1004503423", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6146155-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6146155-6", "source": "GND"}], "preferred_name": "Friedrich Lüderwald Erben", "authorized_access_point": "Friedrich Lüderwald Erben", "biographical_information": ["Sitz: Helmstedt {1696-1697}"]} 1 -2023-07-08 08:14:31.586016 2023-07-08 08:14:31.586029 8810780a-ef0d-49c0-8ab3-611465016e21 {"md5": "d6b7b558f24702fa5673cde312daea41", "pid": "1004520778", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6146673-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6146673-6", "source": "GND"}], "variant_name": ["Stamperia Arcivescovile", "Typographia Archiepiscopalis", "Stampa Archiepiscopale", "Stamperia Archiepiscopale", "Typis Archiepiscopalis", "Impressoria Arcivescovile"], "preferred_name": "Tipografia Arcivescovile", "country_associated": "it", "variant_access_point": ["Stamperia Arcivescovile. Bologna", "Typographia Archiepiscopalis. Bologna", "Stampa Archiepiscopale. Bologna", "Stamperia Archiepiscopale. Bologna", "Typis Archiepiscopalis. Bologna", "Impressoria Arcivescovile. Bologna"], "authorized_access_point": "Tipografia Arcivescovile. Bologna", "biographical_information": ["Sitz: Bologna {ca. 1606-}"]} 1 -2023-07-08 08:14:31.708292 2023-07-08 08:14:31.708299 ad903cb0-2f27-465a-8818-47f37cf61008 {"md5": "cbef26a24cbd8086b964e2f66391f3a5", "pid": "1004537549", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6142734-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6142734-2", "source": "GND"}], "variant_name": ["Kunming Teachers School", "Kʿunming-shihfan-chuankʿê-hsüehhsiao", "Shifan-Zhuanke-Xuexiao", "Teachers School"], "preferred_name": "Kunming-Shifan-Zhuanke-Xuexiao", "country_associated": "cc", "variant_access_point": ["Kunming Teachers School", "Kʿunming-shihfan-chuankʿê-hsüehhsiao", "Shifan-Zhuanke-Xuexiao. Kunming", "Teachers School. Kunming"], "authorized_access_point": "Kunming-Shifan-Zhuanke-Xuexiao"} 1 -2023-07-08 08:14:31.835143 2023-07-08 08:14:31.835156 60149455-0668-4f32-9403-4b25ac2bcb1a {"md5": "a763bb572b9e2a70af9a4dd36c00f051", "pid": "1004552424", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6141774-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6141774-9", "source": "GND"}], "preferred_name": "Institute for Small Scale Industries. Research Department", "country_associated": "ph", "authorized_access_point": "Institute for Small Scale Industries. Quezon. Research Department"} 1 -2023-07-08 08:14:31.94311 2023-07-08 08:14:31.943126 1f4d6f1f-c578-4f21-8843-a8801a17c1a2 {"md5": "a8298cb953b39c4e4afd21e56dd3152a", "pid": "100455706X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6132170-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6132170-9", "source": "GND"}], "variant_name": ["International Solidarity Conference for the Development of the Comoros, 1"], "preferred_name": "Conférence de Solidarité Internationale pour le Développement des Comores, 1", "country_associated": "cq", "variant_access_point": ["International Solidarity Conference for the Development of the Comoros, 1, 1983, Moroni"], "authorized_access_point": "Conférence de Solidarité Internationale pour le Développement des Comores, 1, 1983, Moroni"} 1 -2023-07-08 08:14:32.078636 2023-07-08 08:14:32.078642 7d07df5c-a17d-4c60-8264-2b427e6410b7 {"md5": "c5ac77cd11c3bdf086cd636692bb598b", "pid": "1004578172", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6131941-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6131941-7", "source": "GND"}], "preferred_name": "Crowell and Moring", "country_associated": "xxu", "authorized_access_point": "Crowell and Moring. Washington, DC"} 1 -2023-07-08 08:14:32.211952 2023-07-08 08:14:32.211962 ab5c24b7-6007-4813-adc4-ef49b2a4a7b9 {"md5": "8ca5ed78eaf41309a0cccbd7b17afab1", "pid": "1004580428", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6131920-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6131920-X", "source": "GND"}], "variant_name": ["Intergovernmental Group of Experts on Definitions and Methodology Employed in the UNCTAD Data Base on Trade Measures", "Conference on Trade and Development. Trade and Development Board. Intergovernmental Group of Experts on Definitions and Methodology Employed in the UNCTAD Data Base on Trade Measures"], "preferred_name": "Conference on Trade and Development. Intergovernmental Group of Experts on Definitions and Methodology Employed in the UNCTAD Data Base on Trade Measures", "variant_access_point": ["Intergovernmental Group of Experts on Definitions and Methodology Employed in the UNCTAD Data Base on Trade Measures", "Conference on Trade and Development. Trade and Development Board. Intergovernmental Group of Experts on Definitions and Methodology Employed in the UNCTAD Data Base on Trade Measures"], "authorized_access_point": "Conference on Trade and Development. Intergovernmental Group of Experts on Definitions and Methodology Employed in the UNCTAD Data Base on Trade Measures", "biographical_information": ["ik"]} 1 -2023-07-08 08:14:32.314636 2023-07-08 08:14:32.314966 4ede7d3a-1a55-4e12-9f6a-fa9e416ff9df {"md5": "863ca76d185f75bc495b3a059ad226f7", "pid": "1004597800", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6141569-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6141569-8", "source": "GND"}], "preferred_name": "Industrial Development Organization. Translation Service. Arabic Section", "authorized_access_point": "Industrial Development Organization. Translation Service. Arabic Section", "biographical_information": ["ik"]} 1 -2023-07-08 08:14:32.418323 2023-07-08 08:14:32.418337 19e6bffb-50af-4438-95ee-322949b08983 {"md5": "6b2684906cf28da8077ca12326f73cb1", "pid": "1004602456", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6128467-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6128467-1", "source": "GND"}], "variant_name": ["Working Party on the Effects of Drought Assistance Measures and Policies on Land Degradation"], "preferred_name": "Australien. Working Party on the Effects of Drought Assistance Measures and Policies on Land Degradation", "country_associated": "at", "variant_access_point": ["Working Party on the Effects of Drought Assistance Measures and Policies on Land Degradation. Australien"], "authorized_access_point": "Australien. Working Party on the Effects of Drought Assistance Measures and Policies on Land Degradation", "biographical_information": ["gk"]} 1 -2023-07-08 08:14:32.532059 2023-07-08 08:14:32.532065 4c31d312-5305-4b18-a62d-ec52c79bf5a0 {"md5": "87ac0815fe3ce6561e65cef13db54e44", "pid": "1004610041", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6144342-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6144342-6", "source": "GND"}], "variant_name": ["Faculty of Engineering"], "preferred_name": "University. Faculty of Engineering", "country_associated": "nr", "variant_access_point": ["Faculty of Engineering. Benin City"], "authorized_access_point": "University. Benin City. Faculty of Engineering"} 1 -2023-07-08 08:14:32.642203 2023-07-08 08:14:32.642209 7676daa6-5135-456f-8bbc-8595431d6d3f {"md5": "e94d509027b28ea730980fc73126525e", "pid": "1004623488", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6139991-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6139991-7", "source": "GND"}], "variant_name": ["Gosudarstvennyj Komitet po Ėkonomike", "Komitet po Ėkonomike"], "preferred_name": "Ukrainische SSR. Komitet po Ėkonomike", "variant_access_point": ["Gosudarstvennyj Komitet po Ėkonomike. Ukrainische SSR", "Komitet po Ėkonomike. Ukrainische SSR"], "authorized_access_point": "Ukrainische SSR. Komitet po Ėkonomike", "biographical_information": ["gk"]} 1 -2023-07-08 08:14:32.745069 2023-07-08 08:14:32.74508 f620c9b9-3a6e-499e-8bcd-89deb5cf444d {"md5": "07aac685abd660f693897b959a64b58d", "pid": "1004659237", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6133997-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6133997-0", "source": "GND"}], "variant_name": ["Schitag, Ernst & Young", "Ernst & Young, Schitag", "Schitag, Ernst und Young", "Deutsche Allgemeine Treuhand-Aktiengesellschaft", "Schitag Ernst & Young, Deutsche Allgemeine Treuhand AG, Wirtschaftsprüfungsgesellschaft"], "preferred_name": "Schitag, Ernst & Young, Deutsche Allgemeine Treuhand-Aktiengesellschaft", "country_associated": "gw", "date_of_termination": "1999", "variant_access_point": ["Schitag, Ernst & Young. Firma", "Ernst & Young, Schitag. Firma", "Schitag, Ernst und Young. Firma", "Deutsche Allgemeine Treuhand-Aktiengesellschaft. Schitag, Ernst & Young, Deutsche Allgemeine Treuhand-Aktiengesellschaft", "Schitag Ernst & Young, Deutsche Allgemeine Treuhand AG, Wirtschaftsprüfungsgesellschaft"], "date_of_establishment": "1992", "authorized_access_point": "Schitag, Ernst & Young, Deutsche Allgemeine Treuhand-Aktiengesellschaft", "biographical_information": ["Gründungsjahr von Erscheinungsjahren in Publikationen abgeleitet"]} 1 -2023-07-08 08:14:32.868875 2023-07-08 08:14:32.868889 3f5ecae8-5162-4579-ae3d-ee43a25cd655 {"md5": "be5df512081239add1e7b9d5077fd75c", "pid": "1004691408", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6138287-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6138287-5", "source": "GND"}], "variant_name": ["National Physical Laboratory. Centre for Mathematics and Scientific Computing", "CMSC"], "preferred_name": "Centre for Mathematics and Scientific Computing", "country_associated": "xxk", "variant_access_point": ["National Physical Laboratory. Teddington. Centre for Mathematics and Scientific Computing", "CMSC. Abkuerzung"], "authorized_access_point": "Centre for Mathematics and Scientific Computing. Teddington"} 1 -2023-07-08 08:14:32.976648 2023-07-08 08:14:32.976659 d6358996-2fa3-4baf-9599-5e8df7232545 {"md5": "2f7b0aa18a45cddd4e776f02e465ea17", "pid": "1004696000", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6135448-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6135448-X", "source": "GND"}], "variant_name": ["Evangelische Kirche in Deutschland. Evangelische Kommission für Mittel- und Osteuropa. Fachausschuß Kirchengeschichte"], "preferred_name": "Evangelische Kommission für Mittel- und Osteuropa. Fachausschuß Kirchengeschichte", "country_associated": "gw", "variant_access_point": ["Evangelische Kirche in Deutschland. Evangelische Kommission für Mittel- und Osteuropa. Fachausschuß Kirchengeschichte"], "authorized_access_point": "Evangelische Kommission für Mittel- und Osteuropa. Fachausschuß Kirchengeschichte"} 1 -2023-07-08 08:14:33.101347 2023-07-08 08:14:33.101354 e35f20a9-7080-4b7e-9752-b98060150d07 {"md5": "164f63ba16af09a5f54af7a52bc1bf9a", "pid": "1004996152", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16075367-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16075367-3", "source": "GND"}], "preferred_name": "Imkerverein Südeichsfeld", "date_of_establishment": "1905", "authorized_access_point": "Imkerverein Südeichsfeld. Pfaffschwende"} 1 -2023-07-08 08:14:33.203816 2023-07-08 08:14:33.203827 447358b0-7b02-4c92-bfab-eb7ced07c44a {"md5": "49dd4640958c8fdab41bd34ce79c3a8a", "pid": "1005138168", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16075717-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16075717-4", "source": "GND"}], "variant_name": ["Oberschule für Jungen"], "preferred_name": "Zeppelinschule", "variant_access_point": ["Oberschule für Jungen. Berlin, Zeppelinschule"], "authorized_access_point": "Zeppelinschule. Berlin"} 1 -2023-07-08 08:14:33.302411 2023-07-08 08:14:33.302421 392dcb01-23cf-4d54-9d0f-f69bbfbcdd79 {"md5": "a808f82d216149c3dfe22e9569833d66", "pid": "1005381364", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16076532-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16076532-8", "source": "GND"}], "preferred_name": "Sŭiuz na Bŭlgarskite Advokati", "country_associated": "bu", "authorized_access_point": "Sŭiuz na Bŭlgarskite Advokati"} 1 -2023-07-08 08:14:33.399825 2023-07-08 08:14:33.399839 73b78aa4-73b8-4218-85c0-19d1eef72d30 {"md5": "4ec2e8b1aca7a1c2dd41b293d34b7328", "pid": "1005446873", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16076761-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16076761-1", "source": "GND"}], "variant_name": ["ISOM, 18"], "preferred_name": "International Symposium on Olefin Metathesis and Related Chemistry, 18", "variant_access_point": ["ISOM, 18, 2009, Leipzig"], "authorized_access_point": "International Symposium on Olefin Metathesis and Related Chemistry, 18, 2009, Leipzig"} 1 -2023-07-08 08:14:33.53462 2023-07-08 08:14:33.534631 eb85723d-6b94-4a1e-b1ef-7f09a274f6d6 {"md5": "5ed7360e4848e044f778a6434b86229b", "pid": "1006191062", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16079544-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16079544-8", "source": "GND"}], "preferred_name": "Sønderjydsk Garderforening", "country_associated": "dk", "date_of_establishment": "1920", "authorized_access_point": "Sønderjydsk Garderforening"} 1 -2023-07-08 08:14:33.647376 2023-07-08 08:14:33.647388 baa77cc2-bb30-4ce4-a718-d60bd46481c0 {"md5": "8c7ab1e82dcbc5a87387cfecae638ace", "pid": "1006414401", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16080261-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16080261-1", "source": "GND"}], "preferred_name": "Ausstellung Schlafende Schönheit. Meisterwerke Viktorianischer Malerei aus dem Museo de Arte de Ponce", "country_associated": "au", "authorized_access_point": "Ausstellung Schlafende Schönheit. Meisterwerke Viktorianischer Malerei aus dem Museo de Arte de Ponce, 2010, Wien"} 1 -2023-07-08 08:14:33.751952 2023-07-08 08:14:33.751961 645ebf12-5188-4625-a05b-496afc3dde43 {"md5": "b057bccddfb84d4fe2530563c683f083", "pid": "1006687815", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16081287-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16081287-2", "source": "GND"}], "variant_name": ["Paderborner Workshop Augmented and Virtual Reality in der Produktentstehung, 9", "Workshop Augmented & Virtual Reality in der Produktentstehung, 9"], "preferred_name": "Paderborner Workshop Augmented & Virtual Reality in der Produktentstehung, 9", "country_associated": "gw", "variant_access_point": ["Paderborner Workshop Augmented and Virtual Reality in der Produktentstehung, 9, 2010, Paderborn", "Workshop Augmented & Virtual Reality in der Produktentstehung, 9, 2010, Paderborn"], "authorized_access_point": "Paderborner Workshop Augmented & Virtual Reality in der Produktentstehung, 9, 2010, Paderborn"} 1 -2023-07-08 08:14:33.892593 2023-07-08 08:14:33.892605 1e7059af-ded3-46c8-a63b-09462104eebe {"md5": "aa9f3e53d09c1efd011334f6950861c0", "pid": "1006928111", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16082078-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16082078-9", "source": "GND"}], "preferred_name": "Berlinale Talent Campus, 8.", "authorized_access_point": "Berlinale Talent Campus, 8., 2010, Berlin"} 1 -2023-07-08 08:14:34.028636 2023-07-08 08:14:34.028648 2de46950-b485-48ee-8b30-58cff7d4ebb6 {"md5": "04fce067f9056e10ffebf85f0cacc7ea", "pid": "1007180692", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16083102-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16083102-7", "source": "GND"}], "variant_name": ["Exhibition Dorothee Joachim, True Value"], "preferred_name": "Ausstellung Dorothee Joachim, True Value", "country_associated": "gw", "variant_access_point": ["Exhibition Dorothee Joachim, True Value, 2009 - 2010, Brühl, Köln"], "authorized_access_point": "Ausstellung Dorothee Joachim, True Value, 2009 - 2010, Brühl, Köln"} 1 -2023-07-08 08:14:34.156008 2023-07-08 08:14:34.156014 b37a53a7-619b-4c6f-9331-b3fc523b202e {"md5": "229ce7ee711458decab5c36aee4d6a8b", "pid": "1007242396", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16083465-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16083465-X", "source": "GND"}], "preferred_name": "Ausstellung Felix Müller", "authorized_access_point": "Ausstellung Felix Müller, 2006, Berlin"} 1 -2023-07-08 08:14:34.277033 2023-07-08 08:14:34.277044 8b020e36-2a87-445b-b04e-26a948ac1baf {"md5": "9e0a18b56d3862b0be36b2b39d6a94b9", "pid": "1007432802", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16084847-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16084847-7", "source": "GND"}], "variant_name": ["Avtonomnaja Nekommerčeskaja Organizacija Nezavisimoe Ėkologičesko Rejtingovoe Agentstvo", "ANO NĖRA", "ANO Nezavisimoe Ėkologičeskoe Rejtingovoe Agentstvo", "Independent Ecological Rating Agency", "NĖRA"], "preferred_name": "Nezavisimoe Ėkologičesko Rejtingovoe Agentstvo", "country_associated": "ru", "variant_access_point": ["Avtonomnaja Nekommerčeskaja Organizacija Nezavisimoe Ėkologičesko Rejtingovoe Agentstvo", "ANO NĖRA. Abkuerzung", "ANO Nezavisimoe Ėkologičeskoe Rejtingovoe Agentstvo", "Independent Ecological Rating Agency", "NĖRA. Abkuerzung"], "authorized_access_point": "Nezavisimoe Ėkologičesko Rejtingovoe Agentstvo", "biographical_information": ["Sitz: Moskva"]} 1 -2023-07-08 08:14:34.397928 2023-07-08 08:14:34.397939 a9a55849-f0a7-44b1-8629-2d530cf101a9 {"md5": "2a826aad739aadf27034b16fb8ff0f72", "pid": "1007693789", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16086154-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16086154-8", "source": "GND"}], "preferred_name": "Ausstellung Vorsicht Glas! Zerbrechliche Kunst 700 - 2010", "authorized_access_point": "Ausstellung Vorsicht Glas! Zerbrechliche Kunst 700 - 2010, 2010 - 2011, Berlin"} 1 -2023-07-08 08:14:34.500055 2023-07-08 08:14:34.500061 f2684240-be4f-4c4e-95da-552973f32a31 {"md5": "b06b764c1cb88b2b77f4307c67c37d19", "pid": "1007769319", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16086664-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16086664-9", "source": "GND"}], "variant_name": ["Dakṣinạ Bhāṣā Pustaka Saṃsthe"], "preferred_name": "Southern Languages Book Trust", "country_associated": "ii", "variant_access_point": ["Dakṣinạ Bhāṣā Pustaka Saṃsthe"], "authorized_access_point": "Southern Languages Book Trust", "biographical_information": ["Sitz: Madras"]} 1 -2023-07-08 08:14:34.623875 2023-07-08 08:14:34.623881 39a3c477-a993-4b1c-ac4d-a7d95f7a151e {"md5": "8612a5a3331f5dd66656b5bb613796e0", "pid": "1007863307", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16087288-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16087288-1", "source": "GND"}], "preferred_name": "Bezirksfeuerwehrtag", "country_associated": "gw", "authorized_access_point": "Bezirksfeuerwehrtag, 1967, Kirchhain"} 1 -2023-07-08 08:14:34.758764 2023-07-08 08:14:34.75877 ee2e30c9-c2cd-4fdc-bb79-cbd83ca9ef3d {"md5": "85871af811332104dd89e08d6d575ed3", "pid": "1008172537", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16089004-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16089004-4", "source": "GND"}], "variant_name": ["Jüdische Gemeinde Essen"], "preferred_name": "Jüdische Kultusgemeinde Essen", "country_associated": "gw", "variant_access_point": ["Jüdische Gemeinde Essen"], "date_of_establishment": "1945", "authorized_access_point": "Jüdische Kultusgemeinde Essen"} 1 -2023-07-08 08:14:34.879926 2023-07-08 08:14:34.879937 7109c63b-dbee-4ba4-8f2c-14a1226383e4 {"md5": "6ea161a54ff3f4aab96880bc5435c248", "pid": "1008311308", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16090061-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16090061-X", "source": "GND"}], "preferred_name": "International Symposium on Intensive Care and Emergency Medicine, 30", "country_associated": "be", "authorized_access_point": "International Symposium on Intensive Care and Emergency Medicine, 30, 2010, Brüssel"} 1 -2023-07-08 08:14:35.007076 2023-07-08 08:14:35.007082 2f1f91a2-2c77-4776-afad-6a221c92e29a {"md5": "ceab71985a507083e47205c084bb1948", "pid": "1008358118", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16090366-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16090366-X", "source": "GND"}], "variant_name": ["Comisión de Cultura del Senado de México", "Comisión de Cultura", "Mexiko. Senado. Comisión de Cultura"], "preferred_name": "Mexiko. Comisión de Cultura", "country_associated": "mx", "variant_access_point": ["Comisión de Cultura del Senado de México. Unveraenderte Form", "Comisión de Cultura. Mexiko", "Mexiko. Senado. Comisión de Cultura"], "authorized_access_point": "Mexiko. Comisión de Cultura"} 1 -2023-07-08 08:14:35.118837 2023-07-08 08:14:35.118843 aae29b2e-495c-4c39-a97b-0ebe596198e5 {"md5": "3091952677eb9e71010b8489c31e9cb7", "pid": "1008359025", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16090378-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16090378-6", "source": "GND"}], "variant_name": ["Goldegger Dialoge Gesundheit Ist Lernbar, 29", "Dialoge Gesundheit Ist Lernbar, 29"], "preferred_name": "Goldegger Dialoge, 29", "country_associated": "au", "variant_access_point": ["Goldegger Dialoge Gesundheit Ist Lernbar, 29, 2010, Goldegg", "Dialoge Gesundheit Ist Lernbar, 29, 2010, Goldegg"], "authorized_access_point": "Goldegger Dialoge, 29, 2010, Goldegg"} 1 -2023-07-08 08:14:35.204252 2023-07-08 08:14:35.204254 fd3f7419-25a5-4056-9fda-44a619bc2b66 {"md5": "62da4a1af91a1ed25f3b0acdf5c92833", "pid": "1008374040", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16090448-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16090448-1", "source": "GND"}], "preferred_name": "InfoDental Mitte", "country_associated": "gw", "authorized_access_point": "InfoDental Mitte, 2010, Frankfurt, Main"} 1 -2023-07-08 08:14:35.275835 2023-07-08 08:14:35.275838 e75fb478-c91f-45b5-a2b3-62244e18f493 {"md5": "4db84795cf4c90989316afc71efe6a41", "pid": "1008509957", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16091086-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16091086-9", "source": "GND"}], "variant_name": ["Universidad del Norte. Instituto de Estudios en Educación"], "preferred_name": "Instituto de Estudios en Educación", "country_associated": "ck", "variant_access_point": ["Universidad del Norte. Barranquilla. Instituto de Estudios en Educación"], "authorized_access_point": "Instituto de Estudios en Educación. Barranquilla"} 1 -2023-07-08 08:14:35.349008 2023-07-08 08:14:35.349014 9bfc7001-07fa-4ef1-af85-f4c7a5087ae2 {"md5": "1c09e916c225e9dd3a94e236b6ae340f", "pid": "1008705683", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16091913-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16091913-7", "source": "GND"}], "preferred_name": "Exposição Jorge dos Reis, Typographia", "country_associated": "po", "authorized_access_point": "Exposição Jorge dos Reis, Typographia, 2001, Lissabon"} 1 -2023-07-08 08:14:35.425393 2023-07-08 08:14:35.425396 208c9ef1-25b1-4516-81e5-3633b675da38 {"md5": "c9e5ec53f44c17d8fc2d59dec25b679f", "pid": "1008850411", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16092671-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16092671-3", "source": "GND"}], "preferred_name": "Ausstellung von Werken Bildender Künstlerinnen und Künstler Schleswig-Holsteins, 57", "authorized_access_point": "Ausstellung von Werken Bildender Künstlerinnen und Künstler Schleswig-Holsteins, 57, 2010 - 2011, Kiel"} 1 -2023-07-08 08:14:35.493875 2023-07-08 08:14:35.493879 c52a9e97-0a19-4a67-983c-b27a5a334866 {"md5": "ff6e2b8c675bbb326e08bcee3030cc16", "pid": "1008982075", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16093263-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16093263-4", "source": "GND"}], "preferred_name": "Ausstellung Solinger Künstler", "authorized_access_point": "Ausstellung Solinger Künstler"} 1 -2023-07-08 08:14:35.566738 2023-07-08 08:14:35.566744 cee839ed-ed87-4bef-913c-8117cf81de51 {"md5": "bbac6b276139f89d4296deee9e49d5bc", "pid": "1009099981", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16093920-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16093920-3", "source": "GND"}], "variant_name": ["Foire Internationale d'Art", "Internationale Kunstmesse", "International Art Fair"], "preferred_name": "Europ' Art", "country_associated": "sz", "variant_access_point": ["Foire Internationale d'Art, 1998, Genf", "Internationale Kunstmesse, 1998, Genf", "International Art Fair, 1998, Genf"], "authorized_access_point": "Europ' Art, 1998, Genf"} 1 -2023-07-08 08:14:35.656101 2023-07-08 08:14:35.656105 e997d6a8-0b5e-4966-bcd7-31492fb7bfb7 {"md5": "d4adc8b91d9d9a67e4e47a9e34f64d4c", "pid": "1009237543", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16094709-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16094709-1", "source": "GND"}], "preferred_name": "The Mad French Posse", "country_associated": "fr", "authorized_access_point": "The Mad French Posse", "biographical_information": ["Jongleurgruppe"]} 1 -2023-07-08 08:14:35.743822 2023-07-08 08:14:35.743827 18523724-4a01-4f7c-a617-2ba92d76d726 {"md5": "2e57cbb00d41bdd2af99b71709fba379", "pid": "1009363581", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16095580-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16095580-4", "source": "GND"}], "preferred_name": "Tıp Etiği ve Tıp Hukuku Sempozyumu, 3", "country_associated": "tu", "authorized_access_point": "Tıp Etiği ve Tıp Hukuku Sempozyumu, 3, 2008, Istanbul"} 1 -2023-07-08 08:14:35.8264 2023-07-08 08:14:35.826404 93cda702-6b35-4897-8d85-0ba3e74102e7 {"md5": "ddfb88444d151c9241a25169841a92fd", "pid": "1009625977", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16097576-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16097576-1", "source": "GND"}], "variant_name": ["Jubiläumskongress Fünfzig Jahre Gesellschaft für Freie Publizistik - 50 Jahre Kampf für die Meinungsfreiheit"], "preferred_name": "Jubiläumskongress 50 Jahre Gesellschaft für Freie Publizistik - 50 Jahre Kampf für die Meinungsfreiheit", "variant_access_point": ["Jubiläumskongress Fünfzig Jahre Gesellschaft für Freie Publizistik - 50 Jahre Kampf für die Meinungsfreiheit, 2010, Kirchheim, Wipfra"], "authorized_access_point": "Jubiläumskongress 50 Jahre Gesellschaft für Freie Publizistik - 50 Jahre Kampf für die Meinungsfreiheit, 2010, Kirchheim, Wipfra"} 1 -2023-07-08 08:14:35.942725 2023-07-08 08:14:35.942735 fe30f6d6-655f-41a6-a173-b4e8ca0e9ad8 {"md5": "ab9dc042709f0305653b5435cd820b5a", "pid": "100963315", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "qualifier": "von Wasserburg", "identifier": "http://d-nb.info/gnd/100963315", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/100963315", "source": "GND"}], "variant_name": ["Wasserburg, Thomas von"], "date_of_birth": "ca. 15. Jh.", "preferred_name": "Thomas, von Wasserburg", "country_associated": "gw", "variant_access_point": ["Wasserburg, Thomas von, ca. 15. Jh."], "authorized_access_point": "Thomas, von Wasserburg, ca. 15. Jh."} 1 -2023-07-08 08:14:36.028504 2023-07-08 08:14:36.028514 ee2420b7-289e-4218-9851-7d755c01f82e {"md5": "065642af6ec078b842ef96bfe0a73734", "pid": "1009786741", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16098676-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16098676-X", "source": "GND"}], "preferred_name": "Johndoe", "country_associated": "no", "authorized_access_point": "Johndoe"} 1 -2023-07-08 08:14:36.119149 2023-07-08 08:14:36.119153 7fa1a653-51b1-44f2-aabf-f23b6287af94 {"md5": "c1fdc3a1794f435400e42c7f60fe13b3", "pid": "1010306146", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16102695-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16102695-3", "source": "GND"}], "variant_name": ["Iberoamerikanische Kulturtage Stuttgart, Esslingen, Tübingen", "Iberoamerikanische Kulturtage", "Iberoamerikanische Kulturtage", "Iberoamerikanische Kulturtage", "Iberoamerikanische Kulturtage"], "preferred_name": "Iberoamerikanische Kulturtage", "variant_access_point": ["Iberoamerikanische Kulturtage Stuttgart, Esslingen, Tübingen. 2010", "Iberoamerikanische Kulturtage, 2010, Stuttgart", "Iberoamerikanische Kulturtage, 2010, Esslingen am Neckar", "Iberoamerikanische Kulturtage, 2010, Tübingen", "Iberoamerikanische Kulturtage, 2010"], "authorized_access_point": "Iberoamerikanische Kulturtage, 2010, Stuttgart u.a.", "biographical_information": ["Kulturveranstaltung in Stuttgart, Esslingen u. Tübingen, 24.9.-16.10.2010, veranstaltet vom Arbeitskreis der Lateinamerikanischen Vereine in Kooperation mit dem Kulturamt der Stadt Stuttgart"]} 1 -2023-07-08 08:14:36.203268 2023-07-08 08:14:36.203274 81f1a4ee-2206-4c4a-93cc-3b284448e8b7 {"md5": "3795fa9ecdc8f62a1e60cdf7594d4871", "pid": "1010326945", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16102857-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16102857-3", "source": "GND"}], "variant_name": ["Vorstadtverein Alt-Gründlach", "Verein Alt-Gründlach"], "preferred_name": "Alt-Gründlach", "country_associated": "gw", "variant_access_point": ["Vorstadtverein Alt-Gründlach. Großgründlach", "Verein Alt-Gründlach. Großgründlach"], "date_of_establishment": "1972", "authorized_access_point": "Alt-Gründlach. Großgründlach"} 1 -2023-07-08 08:14:36.304697 2023-07-08 08:14:36.304706 79ee9aae-b62a-4bb1-beee-e2dfc6891f0f {"md5": "b48d0f96c39015ded01ab53ec380bc03", "pid": "101054389X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16104309-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16104309-4", "source": "GND"}], "variant_name": ["Public Institution Tourism Centre", "Betrieb des Öffentlichen Rechtes Tourismuszentrum"], "preferred_name": "Viešoji Istaiga Turizmo Centras", "country_associated": "li", "variant_access_point": ["Public Institution Tourism Centre. Palušé", "Betrieb des Öffentlichen Rechtes Tourismuszentrum. Palušé"], "authorized_access_point": "Viešoji Istaiga Turizmo Centras. Palušé"} 1 -2023-07-08 08:14:36.416501 2023-07-08 08:14:36.416505 f994cb5b-6fd2-4708-9f74-aa18b8d38e2d {"md5": "59a7c0ac0e755fc95ee46d22040011c3", "pid": "1010664034", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16105153-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16105153-4", "source": "GND"}], "variant_name": ["Institute of Complex Medical Engineering", "Institute of Complex Medical Engineering", "ICME"], "preferred_name": "Kagawa Daigaku. Institute of Complex Medical Engineering", "country_associated": "ja", "variant_access_point": ["Institute of Complex Medical Engineering. Kagawa Daigaku", "Institute of Complex Medical Engineering. Takamatsu, Kagawa-Ken", "ICME. Abkuerzung"], "authorized_access_point": "Kagawa Daigaku. Institute of Complex Medical Engineering"} 1 -2023-07-08 08:14:36.509433 2023-07-08 08:14:36.509445 f14b615d-69d5-4952-922c-b1d68a46f8ce {"md5": "cc7da344cce2365deb8db4c4de7d2531", "pid": "1010670174", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16105173-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16105173-X", "source": "GND"}], "variant_name": ["Granger & Co."], "preferred_name": "A. O. Granger & Co.", "country_associated": "xxu", "variant_access_point": ["Granger & Co.. Philadelphia, Pa."], "authorized_access_point": "A. O. Granger & Co.. Philadelphia, Pa."} 1 -2023-07-08 08:14:36.598831 2023-07-08 08:14:36.598835 5395e9aa-552f-4b16-9305-351381e80a74 {"md5": "1e4ce550a4c628bdefdcdbc5c68c8a46", "pid": "1010696092", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16105377-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16105377-4", "source": "GND"}], "variant_name": ["Queensland. Bureau of Sugar Experiment Stations. Division of Pathology", "Division of Pathology"], "preferred_name": "Queensland. Division of Pathology", "country_associated": "at", "variant_access_point": ["Queensland. Bureau of Sugar Experiment Stations. Division of Pathology", "Division of Pathology. Queensland"], "authorized_access_point": "Queensland. Division of Pathology"} 1 -2023-07-08 08:14:36.739542 2023-07-08 08:14:36.739545 49a78a4c-632d-4437-814d-291e26b39810 {"md5": "aadd41df00d4de52b2855d90d6ec2e41", "pid": "1010987895", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16151659-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16151659-2", "source": "GND"}], "variant_name": ["Jusos Neuss", "Neusser Jungsozialistinnen"], "preferred_name": "Sozialdemokratische Partei Deutschlands. Arbeitsgemeinschaft der Jungsozialisten und Jungsozialistinnen. Stadtverband Neuss", "country_associated": "gw", "variant_access_point": ["Jusos Neuss", "Neusser Jungsozialistinnen"], "authorized_access_point": "Sozialdemokratische Partei Deutschlands. Arbeitsgemeinschaft der Jungsozialisten und Jungsozialistinnen. Stadtverband Neuss"} 1 -2023-07-08 08:14:36.820799 2023-07-08 08:14:36.820808 c45a3204-0111-4167-a458-9db9ac8c3fce {"md5": "cb767c9d3ca099e85364cf222e00d144", "pid": "1011029162", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16152084-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16152084-4", "source": "GND"}], "preferred_name": "Internationaler Hörgeräte-Akustiker-Kongress, 48", "authorized_access_point": "Internationaler Hörgeräte-Akustiker-Kongress, 48, 2003, Nürnberg"} 1 -2023-07-08 08:14:36.933783 2023-07-08 08:14:36.933793 8f67a489-8c7e-47ac-9e1c-3b9b04245a99 {"md5": "cd7ff722da64d8f5f87b84668efe5d33", "pid": "1011038692", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16152180-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16152180-0", "source": "GND"}], "variant_name": ["Gleichstellungsbeauftragte"], "preferred_name": "Landkreis Bernkastel-Wittlich. Gleichstellungsbeauftragte", "country_associated": "gw", "variant_access_point": ["Gleichstellungsbeauftragte. Landkreis Bernkastel-Wittlich"], "authorized_access_point": "Landkreis Bernkastel-Wittlich. Gleichstellungsbeauftragte"} 1 -2023-07-08 08:14:37.029028 2023-07-08 08:14:37.029036 4a7545a7-13de-4e88-b65b-15a1b4a86e7f {"md5": "ccd235b01cc70af0b6eb78a1e7868fef", "pid": "1011064766", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16152476-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16152476-X", "source": "GND"}], "preferred_name": "Multidisciplinary International Conference on Qualitative Research in Developing Countries, 1", "country_associated": "pk", "authorized_access_point": "Multidisciplinary International Conference on Qualitative Research in Developing Countries, 1, 2006, Karatschi"} 1 -2023-07-08 08:14:37.108098 2023-07-08 08:14:37.108104 5c85735d-4619-48a5-ba09-116b57a9c458 {"md5": "30434c967379c69263902e15c7266982", "pid": "1011072602", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16152499-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16152499-0", "source": "GND"}], "preferred_name": "Exposición Escrito Está. Poesía Experimental en Espanã (1963 - 1984)", "country_associated": "sp", "authorized_access_point": "Exposición Escrito Está. Poesía Experimental en Espanã (1963 - 1984), 2009 - 2010, Vitoria; Valladolid"} 1 -2023-07-08 08:14:37.181114 2023-07-08 08:14:37.18112 cd92e94d-8b47-4fa3-9aff-78966c0b252e {"md5": "161f8f67761da858c769dab56ab13a4e", "pid": "1011184176", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1011184176", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1011184176", "source": "GND"}], "preferred_name": "Colombo, Margot", "country_associated": "it", "authorized_access_point": "Colombo, Margot"} 1 -2023-07-08 08:14:37.262888 2023-07-08 08:14:37.262893 97131cb8-d195-4c9d-bed0-7e902fad29d2 {"md5": "a553a4ddbca854cdef523448600703e8", "pid": "1011184672", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1011184672", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1011184672", "source": "GND"}], "variant_name": ["Williams, K. E."], "preferred_name": "Williams, Karina E.", "country_associated": "gw", "variant_access_point": ["Williams, K. E."], "authorized_access_point": "Williams, Karina E."} 1 -2023-07-08 08:14:37.340293 2023-07-08 08:14:37.340298 2d74bca4-374d-460c-9075-9983a4e8daf2 {"md5": "34167b9d6a336bc4f1fc2cc3db034c98", "pid": "1011196735", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16153549-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16153549-5", "source": "GND"}], "variant_name": ["AE"], "preferred_name": "Akenerji Elektrik Üretim A. Ş", "country_associated": "tu", "variant_access_point": ["AE. Abkuerzung"], "authorized_access_point": "Akenerji Elektrik Üretim A. Ş. Istanbul"} 1 -2023-07-08 08:14:37.409392 2023-07-08 08:14:37.409395 7861652c-bb4c-431b-9f5c-d72f5107cbd0 {"md5": "6f35bf6c0071c4edd9b74874454d27a9", "pid": "1011276259", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1011276259", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1011276259", "source": "GND"}], "date_of_birth": "1852", "date_of_death": "1924", "preferred_name": "Grueber, Paul", "country_associated": "au", "authorized_access_point": "Grueber, Paul, 1852-1924"} 1 -2023-07-08 08:14:37.47624 2023-07-08 08:14:37.476243 35e28de9-49d2-4ebe-8498-c6874be4d565 {"md5": "caae60e199b7e33958b3948c01f6c926", "pid": "1011311550", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1011311550", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1011311550", "source": "GND"}], "preferred_name": "Rebisant, Günther R.", "country_associated": "au", "authorized_access_point": "Rebisant, Günther R.", "biographical_information": ["Schwerpunkt: Wirtschaftsstrafrecht"]} 1 -2023-07-08 08:14:37.540319 2023-07-08 08:14:37.540323 2e2da42f-bee1-44ff-bf06-3e690ef39983 {"md5": "4378e4203fe6ef18e9279d9db3cd9963", "pid": "1011400707", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1011400707", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1011400707", "source": "GND"}], "date_of_birth": "1981", "preferred_name": "Demirci, Stefanie", "authorized_access_point": "Demirci, Stefanie, 1981-", "biographical_information": ["Diss. Technische Universität München, Fakultät für Informatik"]} 1 -2023-07-08 08:14:37.677977 2023-07-08 08:14:37.67798 d9929056-6a72-413a-a3b2-9d999e5c92ee {"md5": "963f5a62d94799879773a16402f876ec", "pid": "1011453215", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1011453215", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1011453215", "source": "GND"}], "variant_name": ["Freer, Jürgen Sauerland-"], "date_of_birth": "1953", "preferred_name": "Sauerland-Freer, Jürgen", "country_associated": "gw", "variant_access_point": ["Freer, Jürgen Sauerland-, 1953-"], "authorized_access_point": "Sauerland-Freer, Jürgen, 1953-", "biographical_information": ["Leiter des Kulturbüros der Stadt Krefeld"]} 1 -2023-07-08 08:14:37.751662 2023-07-08 08:14:37.751671 f8db2382-73bc-4576-a832-a30a084de607 {"md5": "0e594609d5108171da37eddafecf06dd", "pid": "1011475596", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1011475596", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1011475596", "source": "GND"}], "date_of_birth": "1972", "preferred_name": "Ásgeirsson, Daníel", "country_associated": "sw", "authorized_access_point": "Ásgeirsson, Daníel, 1972-"} 1 -2023-07-08 08:14:37.829828 2023-07-08 08:14:37.829831 02387315-8f0d-4641-ac5e-172ce9f0d0f2 {"md5": "d7e315bc4dd1aad8167b9395aa0a9aac", "pid": "1011506084", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16155338-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16155338-2", "source": "GND"}], "variant_name": ["Verband Deutscher Eisenbahn-Ingenieure. Akademie für Bahnsysteme", "VDEI-Akademie für Bahnsysteme"], "preferred_name": "Akademie für Bahnsysteme", "country_associated": "gw", "variant_access_point": ["Verband Deutscher Eisenbahn-Ingenieure. Akademie für Bahnsysteme", "VDEI-Akademie für Bahnsysteme. Frankfurt, Main"], "authorized_access_point": "Akademie für Bahnsysteme. Frankfurt, Main"} 1 -2023-07-08 08:14:37.915259 2023-07-08 08:14:37.915264 3db850c4-830f-46f1-b6ea-f33215a470de {"md5": "202a97362f146f83252172cfaed5245b", "pid": "1011618362", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1011618362", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1011618362", "source": "GND"}], "variant_name": ["Merz, Ursula Kuttler-"], "date_of_birth": "19.12.1937", "date_of_death": "08.01.2023", "preferred_name": "Kuttler-Merz, Ursula", "country_associated": "gw", "variant_access_point": ["Merz, Ursula Kuttler-, 1937-2023"], "authorized_access_point": "Kuttler-Merz, Ursula, 1937-2023", "biographical_information": ["Stadt- und Kulturlandschaftsführerin"]} 1 -2023-07-08 08:14:38.007078 2023-07-08 08:14:38.007089 0d662435-c19c-4c39-83fa-3f2e031cda3a {"md5": "b3fb92f8e47026b30758dfde965349df", "pid": "1011673835", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1011673835", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1011673835", "source": "GND"}], "variant_name": ["DelValle, Eduardo"], "date_of_birth": "14.09.1951", "preferred_name": "Del Valle, Eduardo", "country_associated": "xxu", "variant_access_point": ["DelValle, Eduardo, 1951-"], "authorized_access_point": "Del Valle, Eduardo, 1951-"} 1 -2023-07-08 08:14:38.08927 2023-07-08 08:14:38.089279 cce1189b-519a-4aed-a99d-8d7d7363eb73 {"md5": "59a1dfe59718e2745256aa7f4f325ea6", "pid": "1011705486", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1011705486", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1011705486", "source": "GND"}], "variant_name": ["Heinz, Josef"], "date_of_birth": "1815", "date_of_death": "1895", "preferred_name": "Heinz, Sebastian", "country_associated": "it", "variant_access_point": ["Heinz, Josef, 1815-1895"], "authorized_access_point": "Heinz, Sebastian, 1815-1895"} 1 -2023-07-08 08:14:38.168249 2023-07-08 08:14:38.168255 bf2fb270-f9f2-4729-9cf2-b7f14ab702ee {"md5": "8f8e290da42633bebee9a0f088f60d81", "pid": "1011744619", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16156304-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16156304-1", "source": "GND"}], "variant_name": ["ESANN, 18"], "preferred_name": "European Symposium on Artificial Neural Networks, 18", "country_associated": "be", "variant_access_point": ["ESANN, 18, 2010, Brügge"], "authorized_access_point": "European Symposium on Artificial Neural Networks, 18, 2010, Brügge"} 1 -2023-07-08 08:14:38.265779 2023-07-08 08:14:38.265784 57194070-a87e-400b-8ca4-105ec725557d {"md5": "aed730585c62d910c9a2e2fc013be324", "pid": "1011762676", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1011762676", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1011762676", "source": "GND"}], "variant_name": ["Im, Sŏng Ho", "임, 성호"], "date_of_birth": "ca. 5.3.1959", "preferred_name": "Im, Sŏng-ho", "country_associated": "ko", "variant_access_point": ["Im, Sŏng Ho, ca. 5.3.1959-", "임, 성호, ca. 5.3.1959-"], "parallel_access_point": ["임성호, ca. 5.3.1959-"], "authorized_access_point": "Im, Sŏng-ho, ca. 5.3.1959-", "biographical_information": ["Politikwissenschaftler, grad. MIT; Prof., Kyŏnghŭi Taehakkyo Chŏngchi Oegyo Hakkwa"]} 1 -2023-07-08 08:14:38.354507 2023-07-08 08:14:38.354516 23b7c6d5-5b8e-4bb5-ae51-a59056a2c5b1 {"md5": "e97a9cd485b3f8546ffcfde5695819f7", "pid": "1011811669", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16156677-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16156677-7", "source": "GND"}], "variant_name": ["TSG von 1884", "TSG", "TSG von Achtzehnhundertvierundachtig"], "preferred_name": "Turn- und Sportgemeinschaft von 1884", "country_associated": "gw", "variant_access_point": ["TSG von 1884. Hohenhausen, Kalletal", "TSG. Hohenhausen, Kalletal", "TSG von Achtzehnhundertvierundachtig. Hohenhausen, Kalletal"], "authorized_access_point": "Turn- und Sportgemeinschaft von 1884. Hohenhausen, Kalletal"} 1 -2023-07-08 08:14:38.438448 2023-07-08 08:14:38.438457 2d6b4c7c-70c9-416e-8d13-d1aa520ea4c7 {"md5": "d3d17461e22d64d2ce5aa5055384b0d2", "pid": "1011875829", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1011875829", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1011875829", "source": "GND"}], "date_of_birth": "1955", "preferred_name": "Brückl, Hans Peter", "country_associated": "au", "authorized_access_point": "Brückl, Hans Peter, 1955-"} 1 -2023-07-08 08:14:38.521974 2023-07-08 08:14:38.521982 353fc30c-c023-48d3-91b6-b86f39644d0c {"md5": "62eb04379a5ccbe7c8896646dfa3d2d7", "pid": "1011887444", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16157033-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16157033-1", "source": "GND"}], "preferred_name": "Encontro Açoriano da Lusofonia, 3", "authorized_access_point": "Encontro Açoriano da Lusofonia, 3, 2008", "biographical_information": ["fand auf der Insel São Miguel statt"]} 1 -2023-07-08 08:14:38.619396 2023-07-08 08:14:38.6194 f1bb437e-34c0-4c8e-87d5-83516b65c99c {"md5": "ff48a45a4dbf7cc68738d7a7a8f07a4b", "pid": "1011898012", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1011898012", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1011898012", "source": "GND"}], "date_of_birth": "1843", "date_of_death": "1909", "preferred_name": "Hofmann, Ottokar", "authorized_access_point": "Hofmann, Ottokar, 1843-1909"} 1 -2023-07-08 08:14:38.694324 2023-07-08 08:14:38.694333 cdd349eb-217a-4fc6-a31d-5822f84ead45 {"md5": "154ced06d62cf3c241f5499b3dbc4774", "pid": "1011967472", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16157425-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16157425-7", "source": "GND"}], "preferred_name": "Förderverein Katharinenkapelle", "country_associated": "gw", "authorized_access_point": "Förderverein Katharinenkapelle. Landau, Pfalz"} 1 -2023-07-08 08:14:38.791287 2023-07-08 08:14:38.791298 727378fe-7203-4a36-a668-80d897c6b8ef {"md5": "03ae4803ecc2315cdb60ebf117c1447b", "pid": "1012126404", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1012126404", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012126404", "source": "GND"}], "preferred_name": "Karaca, Nilüfer", "authorized_access_point": "Karaca, Nilüfer", "biographical_information": ["Diss. Med. Fak., Orthopäd. Univ.-Klinik, Universität Magdeburg"]} 1 -2023-07-08 08:14:38.870366 2023-07-08 08:14:38.87037 dbdb359e-e543-4f17-9452-fa9c680d5009 {"md5": "04688870de1795aa49a7fc3e23f71376", "pid": "1012244741", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16158656-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16158656-9", "source": "GND"}], "variant_name": ["Universitatea din Bacău. Centre de Recherche Chimie Appliquée et Génie des Procedes", "Universitatea din Bacău. Facultatea de Inginerie. Centre de Recherche Chimie Appliquée et Génie des Procedes"], "preferred_name": "Centre de Recherche Chimie Appliquée et Génie des Procedes", "country_associated": "rm", "variant_access_point": ["Universitatea din Bacău. Centre de Recherche Chimie Appliquée et Génie des Procedes", "Universitatea din Bacău. Facultatea de Inginerie. Centre de Recherche Chimie Appliquée et Génie des Procedes"], "authorized_access_point": "Centre de Recherche Chimie Appliquée et Génie des Procedes. Bacău"} 1 -2023-07-08 08:14:38.950278 2023-07-08 08:14:38.950285 4ab13953-7e26-4f98-8acc-6daf971be997 {"md5": "8b1d7c8f0015f70d744dee4bcc3d4cc9", "pid": "1012247554", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1012247554", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012247554", "source": "GND"}], "variant_name": ["Bumiler, Erminia Rosa", "Stiller, Hermine"], "date_of_birth": "03.09.1859", "date_of_death": "04.08.1943", "preferred_name": "Stiller, Erminia Rosa", "country_associated": "gw", "variant_access_point": ["Bumiler, Erminia Rosa, 1859-1943", "Stiller, Hermine, 1859-1943"], "authorized_access_point": "Stiller, Erminia Rosa, 1859-1943"} 1 -2023-07-08 08:14:39.044366 2023-07-08 08:14:39.044375 d1d197e5-88c5-4148-bac8-c2ce3b8c9245 {"md5": "38e612f976701580f1ac2c4f49d87ce3", "pid": "1012247589", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16158693-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16158693-4", "source": "GND"}], "variant_name": ["Schreibwerkstatt"], "preferred_name": "Kempener Schreibwerkstatt", "country_associated": "gw", "variant_access_point": ["Schreibwerkstatt. Kempen"], "authorized_access_point": "Kempener Schreibwerkstatt"} 1 -2023-07-08 08:14:39.138221 2023-07-08 08:14:39.138224 acb817e5-9363-46c6-bf9b-d0c84040e6c0 {"md5": "c1486f2b2819c4289a44d2866cc2958f", "pid": "1012247627", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1012247627", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012247627", "source": "GND"}], "variant_name": ["Ebertsein, Sebastian Eber von", "Eberus ab Eberstein, Sebastianus", "Eberstein, Sebastianus Eberus ab", "Ebervs ab Eberstein, Sebastianvs"], "date_of_birth": "1574", "preferred_name": "Eber von Eberstein, Sebastian", "country_associated": "gw", "variant_access_point": ["Ebertsein, Sebastian Eber von, 1574-", "Eberus ab Eberstein, Sebastianus, 1574-", "Eberstein, Sebastianus Eberus ab, 1574-", "Ebervs ab Eberstein, Sebastianvs, 1574-"], "authorized_access_point": "Eber von Eberstein, Sebastian, 1574-"} 1 -2023-07-08 08:14:39.261857 2023-07-08 08:14:39.261862 7fbd0983-cfa9-4a87-9e6a-743d81b81110 {"md5": "24a578f73887ce58576a6b240f19e5f3", "pid": "1012262367", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1012262367", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012262367", "source": "GND"}], "date_of_birth": "24.08.1815", "date_of_death": "31.03.1874", "preferred_name": "Fecht, Ludwig Wilhelm", "country_associated": "gw", "authorized_access_point": "Fecht, Ludwig Wilhelm, 1815-1874", "biographical_information": ["Jurist, Direktor des Verwaltungshofs"]} 1 -2023-07-08 08:14:39.397262 2023-07-08 08:14:39.397267 efcb95ae-97ab-4d9c-a960-c79a2d4b0beb {"md5": "7d3854171525608f502a4e212a87e62a", "pid": "1012277151", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1012277151", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012277151", "source": "GND"}], "variant_name": ["Kaufmann, Modest", "Modestus"], "date_of_birth": "07.05.1711", "date_of_death": "17.06.1768", "preferred_name": "Kaufmann, Modestus", "country_associated": "gw", "variant_access_point": ["Kaufmann, Modest, 1711-1768", "Modestus, 1711-1768"], "authorized_access_point": "Kaufmann, Modestus, 1711-1768", "biographical_information": ["Abt von Wiblingen"]} 1 -2023-07-08 08:14:39.636186 2023-07-08 08:14:39.636192 d3d4f2cd-e902-40f6-854b-ef3fc8193161 {"md5": "0533e52e8b58aea323ad142c2b355048", "pid": "1012299805", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1012299805", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012299805", "source": "GND"}], "variant_name": ["Sayer, C.", "Sayer, Cosmas"], "date_of_birth": "11.10.1851", "date_of_death": "24.02.1899", "preferred_name": "Sayer, Kosmas", "country_associated": "gw", "variant_access_point": ["Sayer, C., 1851-1899", "Sayer, Cosmas, 1851-1899"], "authorized_access_point": "Sayer, Kosmas, 1851-1899", "biographical_information": ["Ingenieur, Prof."]} 1 -2023-07-08 08:14:39.743053 2023-07-08 08:14:39.743063 3ff20c0c-2679-41a3-960a-e6c0dff83a84 {"md5": "e3f17357a67d48e4ccad740e34327615", "pid": "1012301389", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1012301389", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012301389", "source": "GND"}], "date_of_birth": "14.05.1848", "date_of_death": "10.11.1911", "preferred_name": "Schill, Adolf", "country_associated": "gw", "authorized_access_point": "Schill, Adolf, 1848-1911", "biographical_information": ["Prof. an der Kunstakad. in Düsseldorf. - Architekt, Aquarellmaler, Ornamentzeichner, Kunstgewerbler"]} 1 -2023-07-08 08:14:39.840315 2023-07-08 08:14:39.840326 2ba2d376-d149-4ca9-92d7-789062c8be6f {"md5": "21540129d2484e50330c9885cce54882", "pid": "1012304973", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1012304973", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012304973", "source": "GND"}], "date_of_birth": "15.12.1743", "date_of_death": "06.01.1804", "preferred_name": "Schwab, Karl Philipp", "country_associated": "gw", "authorized_access_point": "Schwab, Karl Philipp, 1743-1804", "biographical_information": ["hohenzollerischer Hof- und Bergrat"]} 1 -2023-07-08 08:14:39.949263 2023-07-08 08:14:39.949273 429b6294-8589-4fcb-9337-59d7aaefb7f6 {"md5": "4092d65cabbcd3b7851143fc12726c1a", "pid": "1012336026", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1012336026", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012336026", "source": "GND"}], "variant_name": ["Aeschlimann-Fahrni, Daniel Johann", "Fahrni, Daniel Johann Aeschlimann-"], "date_of_birth": "1937", "preferred_name": "Aeschlimann, Daniel", "variant_access_point": ["Aeschlimann-Fahrni, Daniel Johann, 1937-", "Fahrni, Daniel Johann Aeschlimann-, 1937-"], "authorized_access_point": "Aeschlimann, Daniel, 1937-"} 1 -2023-07-08 08:14:40.055747 2023-07-08 08:14:40.05575 1d6ab5ac-eacf-4eae-bf82-b28ab70f4745 {"md5": "6d17dddb2cf247225fff03965619dd59", "pid": "101234472X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/101234472X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/101234472X", "source": "GND"}], "date_of_birth": "1979", "preferred_name": "Schwenk, Michael", "country_associated": "gw", "authorized_access_point": "Schwenk, Michael, 1979-", "biographical_information": ["Studium der Sportwissenschaften mit Schwerpunkt Prävention und Rehabilitation an der Universität Heidelberg, 2007 mit der Magister-Prüfung abgeschlossen, 2011 in Sportwissenschaften promoviert", "05/2011 – 05/2012 Wissenschaftlicher Mitarbeiter des AGAPLESION Bethanien-Krankenhauses im Geriatrischen Zentrum, Klinikum der Universität Heidelberg", "seit 01/2016 Nachwuchsgruppenleiter im Netzwerk Alternsforschung an der Universität Heidelberg", "Diss. an der Fakultät für Verhaltens- und Empirische Kulturwissenschaften der Ruprecht-Karls-Universität Heidelberg"]} 1 -2023-07-08 08:14:40.143189 2023-07-08 08:14:40.143192 73b4d3fa-1a55-4723-a9c9-24bf3618e64e {"md5": "e28c024ae4731cc7e6c650680c5cd84a", "pid": "1012370755", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1012370755", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012370755", "source": "GND"}], "date_of_birth": "15.01.1898", "date_of_death": "02.11.1972", "preferred_name": "Wegner, Wilhelm", "country_associated": "gw", "authorized_access_point": "Wegner, Wilhelm, 1898-1972", "biographical_information": ["Prof. für Augenheilkunde in Freiburg"]} 1 -2023-07-08 08:14:40.246247 2023-07-08 08:14:40.246252 296fca61-eed2-40ff-affe-1d631e7c7724 {"md5": "a5449a291bf7744afb4c9040bc9c282b", "pid": "1012371964", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1012371964", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012371964", "source": "GND"}], "date_of_birth": "1502", "date_of_death": "1552", "preferred_name": "Wernlin, Hans", "country_associated": "gw", "authorized_access_point": "Wernlin, Hans, 1502-1552", "biographical_information": ["Gegenschreiber des Schwäbischen Kreises"]} 1 -2023-07-08 08:14:40.338708 2023-07-08 08:14:40.338715 bde70141-5971-40d4-9103-d14836b83697 {"md5": "ec6d49e59990ea55496d626335ff63d5", "pid": "1012374548", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1012374548", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012374548", "source": "GND"}], "date_of_birth": "26.02.1882", "date_of_death": "25.05.1962", "preferred_name": "Zimmerle, Hermann", "country_associated": "gw", "authorized_access_point": "Zimmerle, Hermann, 1882-1962", "biographical_information": ["Landforstmeister"]} 1 -2023-07-08 08:14:40.429969 2023-07-08 08:14:40.429974 66801bd6-49a7-4089-9f02-fd325b616e0c {"md5": "4e1d82605c5a61c3d29e5a1d7aad207f", "pid": "1012379574", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1012379574", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012379574", "source": "GND"}], "date_of_birth": "01.11.1744", "date_of_death": "19.03.1833", "preferred_name": "Hauser, Franz Joseph", "country_associated": "gw", "authorized_access_point": "Hauser, Franz Joseph, 1744-1833"} 1 -2023-07-08 08:14:40.51874 2023-07-08 08:14:40.518746 a0806aca-fc81-4f96-b8b7-8b648ddb9041 {"md5": "c9f4af24621bf3fe93268b17bd0627a3", "pid": "1012394212", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1012394212", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012394212", "source": "GND"}], "date_of_birth": "1876", "date_of_death": "1940", "preferred_name": "Uttendörfer, Bertram", "country_associated": "gw", "authorized_access_point": "Uttendörfer, Bertram, 1876-1940", "biographical_information": ["Direktor der Oberschule der Brüdergemeine in Königsfeld"]} 1 -2023-07-08 08:15:38.062068 2023-07-08 08:15:38.062071 68667b83-78c9-40a4-b69a-edee1987123f {"md5": "febe94b68e7f404be318984e418bcedc", "pid": "1141815214", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1141815214", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1141815214", "source": "GND"}], "preferred_name": "Judt, Paul", "country_associated": "gw", "authorized_access_point": "Judt, Paul"} 1 -2023-07-08 08:14:40.613042 2023-07-08 08:14:40.613051 e99fcc35-e645-4e9b-a607-a2325dbb5b91 {"md5": "8333d0bcf63d381680bb4274e3f555af", "pid": "101239705X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/101239705X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/101239705X", "source": "GND"}], "date_of_birth": "1897", "date_of_death": "1975", "preferred_name": "Zug, Otto", "country_associated": "gw", "authorized_access_point": "Zug, Otto, 1897-1975", "biographical_information": ["Lehrer"]} 1 -2023-07-08 08:14:40.694363 2023-07-08 08:14:40.694368 d4931f52-b9db-422b-a98a-83e02e8e8dc8 {"md5": "b0dd630ef05639e5d6d93b0e9fa12ee3", "pid": "1012398897", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1012398897", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012398897", "source": "GND"}], "date_of_birth": "1903", "preferred_name": "Licht, Hermann", "country_associated": "gw", "authorized_access_point": "Licht, Hermann, 1903-", "biographical_information": ["Arbeiter, Widerstandskämfer"]} 1 -2023-07-08 08:14:40.781758 2023-07-08 08:14:40.781762 0fe04014-4ffa-4e0a-bc96-ac2240c87834 {"md5": "0594bbfea65857a151815739995043fa", "pid": "1012399737", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1012399737", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012399737", "source": "GND"}], "date_of_birth": "19.07.1870", "date_of_death": "XX.XX.1950", "preferred_name": "Kappus, Adolf", "country_associated": "gw", "authorized_access_point": "Kappus, Adolf, 1870-1950"} 1 -2023-07-08 08:14:40.868475 2023-07-08 08:14:40.868481 3a33aacb-5fc3-49b8-8ebc-7353ef110c7e {"md5": "04b49b3775b632f3bc7f3c163da6bb1a", "pid": "1012410234", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1012410234", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012410234", "source": "GND"}], "date_of_birth": "25.06.1894", "date_of_death": "04.07.1963", "preferred_name": "Schuler, Friedrich", "country_associated": "gw", "authorized_access_point": "Schuler, Friedrich, 1894-1963", "biographical_information": ["evang. Pfarrer in Bruchsal (1929-1934)"]} 1 -2023-07-08 08:14:40.961156 2023-07-08 08:14:40.961163 2ec294be-01be-4ac0-9cfe-a63ae39f9194 {"md5": "57fce19472f5389a3ad7325be1c2f4b8", "pid": "1012413934", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "qualifier": "von Greifenstein", "identifier": "http://d-nb.info/gnd/1012413934", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012413934", "source": "GND"}], "variant_name": ["Ludwig, Wirtemberger", "Ludwig, Würtemberger", "Greiffenstein, Ludwig von", "Württemberg, Ludwig von"], "date_of_birth": "XX.XX.1465", "date_of_death": "25.05.1495", "preferred_name": "Ludwig, von Greifenstein", "country_associated": "gw", "variant_access_point": ["Ludwig, Wirtemberger, 1465-1495", "Ludwig, Würtemberger, 1465-1495", "Greiffenstein, Ludwig von, 1465-1495", "Württemberg, Ludwig von, 1465-1495"], "authorized_access_point": "Ludwig, von Greifenstein, 1465-1495", "biographical_information": ["Unehelicher Sohn Graf Eberhards im Bart von Württemberg, ab 1480 Student in Tübingen, 1490 Dr. iur.; erhielt den Titel eines Herrn von Greifenstein"]} 1 -2023-07-08 08:14:41.052719 2023-07-08 08:14:41.052724 2952ffd8-ecb2-4234-89ad-c30eb1b5894c {"md5": "1be07574d88f52febde386359181de51", "pid": "1012484076", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16159419-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16159419-0", "source": "GND"}], "variant_name": ["COORDINATION, 13"], "preferred_name": "International Conference on Coordination Models and Languages, 13", "country_associated": "ic", "variant_access_point": ["COORDINATION, 13, 2011, Reykjavík"], "authorized_access_point": "International Conference on Coordination Models and Languages, 13, 2011, Reykjavík"} 1 -2023-07-08 08:14:41.155181 2023-07-08 08:14:41.155185 f71eed6b-87f0-44e9-8214-50f19f2fe206 {"md5": "9f43a05ea8186058cd9aa53512effb42", "pid": "1012546772", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1012546772", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012546772", "source": "GND"}], "date_of_birth": "1982", "preferred_name": "Piaggio, Constanza", "country_associated": "ag", "authorized_access_point": "Piaggio, Constanza, 1982-"} 1 -2023-07-08 08:14:41.230161 2023-07-08 08:14:41.230168 f9d1cb1e-e6d0-45e7-bd4f-e74b0aac8240 {"md5": "a03ab42d3d829bf2707a7f1c9c8ef681", "pid": "1012559114", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1012559114", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012559114", "source": "GND"}], "date_of_birth": "15.03.1830", "date_of_death": "04.08.1905", "preferred_name": "Maier, Joseph", "country_associated": "gw", "authorized_access_point": "Maier, Joseph, 1830-1905", "biographical_information": ["Vorstand der Gewerbeschule in Konstanz"]} 1 -2023-07-08 08:14:41.31791 2023-07-08 08:14:41.317916 7fa55ea2-4805-48e0-9e6d-48e7cce8b88c {"md5": "d24b9991dd48e2b56dca868fb78939cc", "pid": "1012580350", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1012580350", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012580350", "source": "GND"}], "date_of_birth": "1937", "preferred_name": "Fröhlich, Ursel", "country_associated": "gw", "authorized_access_point": "Fröhlich, Ursel, 1937-"} 1 -2023-07-08 08:14:41.404598 2023-07-08 08:14:41.404607 c8589e8f-07e5-43b0-a9e7-5bfa48619417 {"md5": "102f41dc4693577e3777c6a3ff4b36cb", "pid": "1012659720", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1012659720", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012659720", "source": "GND"}], "preferred_name": "Sonhard, Eiag", "authorized_access_point": "Sonhard, Eiag"} 1 -2023-07-08 08:14:41.487508 2023-07-08 08:14:41.487516 5f982908-b0b8-4473-bf8b-c17f289d3060 {"md5": "5605bc672d81951a5ba95d342274f195", "pid": "1012670813", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1012670813", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012670813", "source": "GND"}], "date_of_birth": "1938", "preferred_name": "Peter, Klaus", "country_associated": "gw", "authorized_access_point": "Peter, Klaus, 1938-"} 1 -2023-07-08 08:14:41.606887 2023-07-08 08:14:41.606898 3e1b40ee-e83d-4412-b5dc-f534c2febf89 {"md5": "fd57022bffcd7da84e6c820d630473b7", "pid": "1012703487", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1012703487", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012703487", "source": "GND"}], "date_of_birth": "1921", "date_of_death": "2006", "preferred_name": "Staedele, Rolf", "country_associated": "gw", "authorized_access_point": "Staedele, Rolf, 1921-2006", "biographical_information": ["Mundartdichter, freier Journalist u. Sachbuchautor"]} 1 -2023-07-08 08:14:41.677245 2023-07-08 08:14:41.677254 109a4dfc-466b-4a33-a064-aa797ea04893 {"md5": "792f987b28e1463344b69151c84a2bb6", "pid": "1012706826", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1012706826", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012706826", "source": "GND"}], "date_of_birth": "14.05.1918", "preferred_name": "Berlin, Willi", "country_associated": "gw", "authorized_access_point": "Berlin, Willi, 1918-", "biographical_information": ["Bauer, Arbeiter"]} 1 -2023-07-08 08:14:41.789283 2023-07-08 08:14:41.789292 898a94d6-a3f1-47cd-be3f-e06c2e6a196b {"md5": "417c17c5a6c0d2a6832c9ee19d6193e9", "pid": "1012770982", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1012770982", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012770982", "source": "GND"}], "date_of_birth": "24.01.1893", "date_of_death": "XX.XX.1995", "preferred_name": "Schrägle, Marie", "country_associated": "gw", "authorized_access_point": "Schrägle, Marie, 1893-1995"} 1 -2023-07-08 08:14:41.873033 2023-07-08 08:14:41.873046 d6ba879b-aba7-4797-9fd7-56abd23e7b5d {"md5": "b9abfc5ab962dfbccfa51a6e885579e8", "pid": "1012781593", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1012781593", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012781593", "source": "GND"}], "variant_name": ["Löw, Jogi"], "date_of_birth": "03.02.1960", "preferred_name": "Löw, Joachim", "country_associated": "gw", "variant_access_point": ["Löw, Jogi, 1960-"], "authorized_access_point": "Löw, Joachim, 1960-", "biographical_information": ["Fußballbundestrainer (2006-)", "Fußballspieler"]} 1 -2023-07-08 08:14:41.981895 2023-07-08 08:14:41.981901 4da488b9-c4bc-430f-8437-1a9c39b7c102 {"md5": "597b8b8d18e4bbb34b39a8670a52bc75", "pid": "1012785815", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1012785815", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012785815", "source": "GND"}], "date_of_birth": "03.04.1802", "date_of_death": "05.05.1860", "preferred_name": "Maus, Josef", "country_associated": "gw", "authorized_access_point": "Maus, Josef, 1802-1860", "biographical_information": ["Färber, Politiker, Gastwirt; Mitglied der Republikaner; wahrscheinlich beteiligt am Heckerzug als Anführer der Tengener Mannschaft."]} 1 -2023-07-08 08:14:42.069676 2023-07-08 08:14:42.069679 6ea82287-14ec-4d68-a51f-022b29de06bf {"md5": "bfebd6058079af8fd7fa651d49f08b56", "pid": "1012795519", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1012795519", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012795519", "source": "GND"}], "date_of_birth": "18.11.1870", "date_of_death": "18.01.1951", "preferred_name": "Schmitthenner, Wilhelm", "country_associated": "gw", "authorized_access_point": "Schmitthenner, Wilhelm, 1870-1951", "biographical_information": ["Evang. Pfarrer"]} 1 -2023-07-08 08:14:42.155747 2023-07-08 08:14:42.155757 449b44b7-a740-4382-af96-050555ed3521 {"md5": "1f3e45bbd0c5ea8b59bcba020a83982e", "pid": "1012797198", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1012797198", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012797198", "source": "GND"}], "date_of_birth": "20.10.1933", "preferred_name": "Wagenbach, Gustav", "country_associated": "gw", "authorized_access_point": "Wagenbach, Gustav, 1933-"} 1 -2023-07-08 08:14:42.234708 2023-07-08 08:14:42.234718 ff77019a-6933-4fb0-a519-c1e96270d37b {"md5": "5ddcb00b9f877eced0caa5d75b8500e2", "pid": "1012805433", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1012805433", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012805433", "source": "GND"}], "date_of_birth": "19.12.1894", "date_of_death": "25.06.1978", "preferred_name": "Mauch, Maria Alberta", "country_associated": "gw", "authorized_access_point": "Mauch, Maria Alberta, 1894-1978", "biographical_information": ["Priorin des Klosters vom Heiligen Grab in Baden-Baden 1962-1978; Leiterin der Klosterschule"]} 1 -2023-07-08 08:14:42.316483 2023-07-08 08:14:42.316488 4332fd59-4f2e-4162-923c-e139664089f9 {"md5": "f02b58eb30cb6113680eaec38a129d66", "pid": "1012879887", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1012879887", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012879887", "source": "GND"}], "variant_name": ["Behera, Harendra Kumar", "Behera, Harendra"], "preferred_name": "Kumar Behera, Harendra", "variant_access_point": ["Behera, Harendra Kumar", "Behera, Harendra"], "authorized_access_point": "Kumar Behera, Harendra"} 1 -2023-07-08 08:14:42.431758 2023-07-08 08:14:42.431765 1ab0d1ef-ea9c-4abe-a4e1-b928805caeeb {"md5": "e5bf9a4f6d6b357e2b46c226efe7fa91", "pid": "1012883744", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1012883744", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012883744", "source": "GND"}], "date_of_birth": "1984", "preferred_name": "Goel, Namita", "country_associated": "ii", "authorized_access_point": "Goel, Namita, 1984-", "biographical_information": ["Diss. Fachbereich Physik, TU Darmstadt"]} 1 -2023-07-08 08:14:42.531523 2023-07-08 08:14:42.531534 8b88efc5-19d7-4402-96e1-55d775c64283 {"md5": "c9c7dbb6debabc5fc7c86aea5e7af0c6", "pid": "1012992349", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1012992349", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012992349", "source": "GND"}], "date_of_death": "23.03.1633", "preferred_name": "Schwancke, Christian", "country_associated": "gw", "authorized_access_point": "Schwancke, Christian, -1633", "biographical_information": ["Mitglied der Räuberbande um Nicol List; wurde in Celle aufs Rad geflochten"]} 1 -2023-07-08 08:14:42.616991 2023-07-08 08:14:42.616998 37a29b92-7057-4eea-bcaf-e7d2c97a89d0 {"md5": "478398dc461acbcbd25d0739b608c229", "pid": "1013119495", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1013119495", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1013119495", "source": "GND"}], "preferred_name": "Harnack, Fritz", "country_associated": "gw", "authorized_access_point": "Harnack, Fritz"} 1 -2023-07-08 08:14:43.61868 2023-07-08 08:14:43.618686 5b4c9d50-7336-4095-b1e3-f2f8c6c3e2b4 {"md5": "e29a218af805fb6a36f3a9e9ef9676a5", "pid": "1013814339", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1013814339", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1013814339", "source": "GND"}], "date_of_birth": "1858", "date_of_death": "1930", "preferred_name": "Komm, Ferdinand", "country_associated": "au", "authorized_access_point": "Komm, Ferdinand, 1858-1930"} 1 -2023-07-08 08:14:42.688581 2023-07-08 08:14:42.688592 b766fe55-3261-4eea-8994-bd15c040cfa5 {"md5": "e8ea2149e0901845afce77a61aa81f83", "pid": "1013122089", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16162581-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16162581-2", "source": "GND"}], "variant_name": ["Mekhon ha-Yetsu ha-Yiśreʾeli. Merkaz ha-Sefer ṿe-ha-Defus"], "preferred_name": "Merkaz ha-Sefer ṿe-ha-Defus", "country_associated": "is", "variant_access_point": ["Mekhon ha-Yetsu ha-Yiśreʾeli. Tel Aviv- Yafo. Merkaz ha-Sefer ṿe-ha-Defus"], "authorized_access_point": "Merkaz ha-Sefer ṿe-ha-Defus. Tel Aviv- Yafo"} 1 -2023-07-08 08:14:42.787293 2023-07-08 08:14:42.787302 7e5aa7d1-75c0-43c2-aa70-e0c7f4159015 {"md5": "6b8e61869d770ac003c17d50bac151c7", "pid": "101314953X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/101314953X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/101314953X", "source": "GND"}], "date_of_birth": "1977", "preferred_name": "Scifo, Marco Maria Giuseppe", "country_associated": "it", "authorized_access_point": "Scifo, Marco Maria Giuseppe, 1977-"} 1 -2023-07-08 08:14:42.867852 2023-07-08 08:14:42.867857 9125ac6a-58b3-4026-a326-41e105fc7b5e {"md5": "cb8a536b1cb06523bc9baf1473016c55", "pid": "1013171349", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "qualifier": "Württemberg, Königin", "identifier": "http://d-nb.info/gnd/1013171349", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1013171349", "source": "GND"}], "variant_name": ["Charlotte, Württemberg, Herzogin", "Charlotte Marie Ida Luise Hermine Mathilde, Württemberg, Königin", "Schaumburg-Lippe, Charlotte von", "Charlotte, Schaumburg-Lippe, Prinzessin", "Charlotte Marie Ida Luise Hermine Mathilde, Schaumburg-Lippe, Prinzessin", "Württemberg, Charlotte Königin von"], "date_of_birth": "10.10.1864", "date_of_death": "16.07.1946", "preferred_name": "Charlotte, Württemberg, Königin", "country_associated": "gw", "variant_access_point": ["Charlotte, Württemberg, Herzogin, 1864-1946", "Charlotte Marie Ida Luise Hermine Mathilde, Württemberg, Königin, 1864-1946", "Schaumburg-Lippe, Charlotte von, 1864-1946", "Charlotte, Schaumburg-Lippe, Prinzessin, 1864-1946", "Charlotte Marie Ida Luise Hermine Mathilde, Schaumburg-Lippe, Prinzessin, 1864-1946", "Württemberg, Charlotte Königin von, 1864-1946"], "authorized_access_point": "Charlotte, Württemberg, Königin, 1864-1946", "biographical_information": ["Tochter von Prinz Wilhelm zu Schaumburg-Lippe; seit 1886 2. Ehefrau von König Wilhelm II. und damit letzte Königin von Württemberg"]} 1 -2023-07-08 08:14:42.958702 2023-07-08 08:14:42.958716 13318a70-fd3c-4876-988d-6df3b85536a0 {"md5": "80f8df041b75f487c323a016a668790b", "pid": "1013251334", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1013251334", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1013251334", "source": "GND"}], "date_of_birth": "1981", "preferred_name": "Aumiller, Verena Nicole", "authorized_access_point": "Aumiller, Verena Nicole, 1981-", "biographical_information": ["Diss. Ludwig-Maximilians-Universität München, Fakultät für Chemie und Pharmazie"]} 1 -2023-07-08 08:14:43.050448 2023-07-08 08:14:43.050454 138ad89e-2693-4f24-91a3-874b2e0b0e17 {"md5": "6ea7f847cc01cea9a468359426e1426d", "pid": "1013340728", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1013340728", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1013340728", "source": "GND"}], "date_of_birth": "1978", "preferred_name": "Arsiray, Nilgün Tülin", "authorized_access_point": "Arsiray, Nilgün Tülin, 1978-", "biographical_information": ["Diss. Universitätsmedizin der Univ. Mainz"]} 1 -2023-07-08 08:14:43.147417 2023-07-08 08:14:43.147422 58ac9c33-a670-4db5-8535-f784338a938b {"md5": "c57561ade0ebab8116688614d2e200e0", "pid": "1013349806", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1013349806", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1013349806", "source": "GND"}], "preferred_name": "Schnier, Hans-Jürgen", "authorized_access_point": "Schnier, Hans-Jürgen"} 1 -2023-07-08 08:14:43.225915 2023-07-08 08:14:43.225928 0103c534-dc9f-4db1-8db1-92c328aa66d5 {"md5": "bcf283e6b07cf9e743c8f6de4b6febe8", "pid": "1013363299", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1013363299", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1013363299", "source": "GND"}], "date_of_birth": "1903", "preferred_name": "Lapeyronnie, Gaston", "authorized_access_point": "Lapeyronnie, Gaston, 1903-"} 1 -2023-07-08 08:14:43.30961 2023-07-08 08:14:43.309619 fee87316-a13b-46f4-837e-ce6e0c21068a {"md5": "e03dad26865589a0d2cfca5742a6d24f", "pid": "1013479785", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1013479785", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1013479785", "source": "GND"}], "date_of_birth": "1982", "preferred_name": "Voskuhl, Jens", "country_associated": "gw", "authorized_access_point": "Voskuhl, Jens, 1982-"} 1 -2023-07-08 08:14:43.380153 2023-07-08 08:14:43.380158 2a8bae08-3db7-4db2-8a15-201e06393f5b {"md5": "b60dc52616581c2d6715d9531b0acac3", "pid": "1013536878", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16164544-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16164544-6", "source": "GND"}], "variant_name": ["WingTai Asia"], "preferred_name": "Wing Tai Holdings Limited", "country_associated": "si", "variant_access_point": ["WingTai Asia. Singapur"], "authorized_access_point": "Wing Tai Holdings Limited. Singapur"} 1 -2023-07-08 08:14:43.462657 2023-07-08 08:14:43.462665 8c6f2aba-1eee-4df4-8d89-8719e5361e56 {"md5": "a4a3aa5f2e372d41834e0e68803ce70a", "pid": "1013590554", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1013590554", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1013590554", "source": "GND"}], "date_of_birth": "1959", "preferred_name": "Saller, Evelyn", "country_associated": "au", "authorized_access_point": "Saller, Evelyn, 1959-"} 1 -2023-07-08 08:14:43.537184 2023-07-08 08:14:43.537193 e9ece258-c077-45d5-afed-00bb33922928 {"md5": "fc93c674513381aa66e6c76717df94f2", "pid": "1013628063", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://d-nb.info/gnd/1013628063", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1013628063", "source": "GND"}], "date_of_birth": "1923", "date_of_death": "2014", "preferred_name": "Spada, Marcel", "country_associated": "fr", "authorized_access_point": "Spada, Marcel, 1923-2014", "biographical_information": ["Französ. Autor"]} 1 -2023-07-08 08:14:43.692752 2023-07-08 08:14:43.69276 fae8ce5a-922b-4247-ad73-5082e82db495 {"md5": "9a2665ada1fc0adc4000e364fb47782b", "pid": "1013871383", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "qualifier": "Familie", "identifier": "http://d-nb.info/gnd/1013871383", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1013871383", "source": "GND"}], "preferred_name": "Böckheler, Familie", "country_associated": "gw", "authorized_access_point": "Böckheler, Familie", "biographical_information": ["Dt. Familie aus Württemberg, Vorfahren des Theodor Gerhardt aus Langenburg, 1890-1966"]} 1 -2023-07-08 08:14:43.777511 2023-07-08 08:14:43.777522 8eb4d237-36f5-41f8-b0ed-f34a05c37e72 {"md5": "a72d8ad05a59b0605f3daf9e8379edcb", "pid": "1013878353", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1013878353", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1013878353", "source": "GND"}], "variant_name": ["Soon, Il Kwon", "Kwon, Soon Il", "Il, Kwon Soon"], "preferred_name": "Soon Il Kwon", "variant_access_point": ["Soon, Il Kwon", "Kwon, Soon Il", "Il, Kwon Soon"], "authorized_access_point": "Soon Il Kwon"} 1 -2023-07-08 08:14:43.848133 2023-07-08 08:14:43.848137 7775c389-56f5-4810-95fc-0a212f40c6b6 {"md5": "cedbb81f6427fe297af5f189b0678f65", "pid": "1013882156", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1013882156", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1013882156", "source": "GND"}], "preferred_name": "Pfeiffer, Georg", "country_associated": "ru", "authorized_access_point": "Pfeiffer, Georg", "biographical_information": ["Prof. Univ. Kiew, Mitglied d. Ukrainischen Akad. d. Wiss."]} 1 -2023-07-08 08:14:43.9322 2023-07-08 08:14:43.932207 cb31a928-f6f3-4ded-a70f-9d2679b94da8 {"md5": "ce76d6c838fb664c1aaf04820777bc9c", "pid": "1014065240", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1014065240", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1014065240", "source": "GND"}], "variant_name": ["Dai, Jieming", "Dai Jieming", "Dai, Jie ming", "Dai Jie ming", "Daijieming", "戴杰铭", "戴, 杰铭", "戴杰銘", "戴, 杰銘"], "date_of_birth": "1973", "preferred_name": "Taylor, Jeremy E.", "country_associated": "xxk", "variant_access_point": ["Dai, Jieming, 1973-", "Dai Jieming, 1973-", "Dai, Jie ming, 1973-", "Dai Jie ming, 1973-", "Daijieming, 1973-", "戴杰铭, 1973-", "戴, 杰铭, 1973-", "戴杰銘, 1973-", "戴, 杰銘, 1973-"], "authorized_access_point": "Taylor, Jeremy E., 1973-", "biographical_information": ["lecturer in Chinese Studies at the School of East Asian Studies, Univ. of Sheffield"]} 1 -2023-07-08 08:14:44.014041 2023-07-08 08:14:44.014044 97584be1-d292-4fac-9e73-e7f5ad57a413 {"md5": "e112cd50a9cd747beeed577b77b3917d", "pid": "1014089158", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1014089158", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1014089158", "source": "GND"}], "date_of_birth": "1977", "preferred_name": "Stephens, Mark B.", "authorized_access_point": "Stephens, Mark B., 1977-"} 1 -2023-07-08 08:14:44.102468 2023-07-08 08:14:44.102477 abcb02e9-8f15-4433-87d8-ee4913b165ac {"md5": "69976eed278629a7f9d8262147372375", "pid": "1014092191", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1014092191", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1014092191", "source": "GND"}], "date_of_birth": "1983", "preferred_name": "Maurer, Odilo", "country_associated": "gw", "authorized_access_point": "Maurer, Odilo, 1983-", "biographical_information": ["Diss. Univ. Regensburg, Medizin. Fak."]} 1 -2023-07-08 08:14:44.182983 2023-07-08 08:14:44.182994 efc8bd6a-0d32-4e23-97ba-3c10eb6c825c {"md5": "9d1e064683da5d66290cca39ab052c4c", "pid": "1014136539", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1014136539", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1014136539", "source": "GND"}], "date_of_birth": "1913", "preferred_name": "Tischmeyer, Heinz", "authorized_access_point": "Tischmeyer, Heinz, 1913-"} 1 -2023-07-08 08:14:44.283227 2023-07-08 08:14:44.283232 22fbe434-10b9-4c55-82ef-335ecab31fe2 {"md5": "836a9646ff898f75145bc155b3fa772c", "pid": "1014143454", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1014143454", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1014143454", "source": "GND"}], "date_of_birth": "1894", "date_of_death": "1978", "preferred_name": "Schreiner, Otto", "country_associated": "gw", "authorized_access_point": "Schreiner, Otto, 1894-1978"} 1 -2023-07-08 08:14:44.369479 2023-07-08 08:14:44.369489 51533b0c-b936-42f7-ba51-adf9d9d1c5e2 {"md5": "7ffd62686ca1805cf16df729f112201b", "pid": "1014223768", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1014223768", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1014223768", "source": "GND"}], "preferred_name": "Frank, Martin L.", "authorized_access_point": "Frank, Martin L.", "biographical_information": ["Laureato in matematica e fisica all'Univ. di Monaco"]} 1 -2023-07-08 08:14:44.464663 2023-07-08 08:14:44.46467 1b8f3ae2-2057-477b-95b1-139e3dbe1501 {"md5": "729da657060516a48016e9f35c362a6d", "pid": "101425762X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/101425762X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/101425762X", "source": "GND"}], "date_of_birth": "27.04.1898", "date_of_death": "15.11.1963", "preferred_name": "Bürger, Gerhard", "country_associated": "gw", "authorized_access_point": "Bürger, Gerhard, 1898-1963"} 1 -2023-07-08 08:14:44.549669 2023-07-08 08:14:44.549674 df46d3eb-bf05-4439-a869-f5adf8dfea72 {"md5": "785064ab4ebd7cba3e3efd9df34085f0", "pid": "1014290287", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1014290287", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1014290287", "source": "GND"}], "date_of_birth": "1971", "preferred_name": "Lemon, Robert", "authorized_access_point": "Lemon, Robert, 1971-", "biographical_information": ["Assistant Professor of German, University of Oklahoma"]} 1 -2023-07-08 08:14:44.640319 2023-07-08 08:14:44.640323 16ca957f-b131-49de-87cd-b9cc9ed5f8cc {"md5": "959cce2fd42388f34623ac89987a9443", "pid": "1014396158", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1014396158", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1014396158", "source": "GND"}], "variant_name": ["Life Science Dot"], "preferred_name": "LSD", "variant_access_point": ["Life Science Dot"], "authorized_access_point": "LSD"} 1 -2023-07-08 08:14:44.717641 2023-07-08 08:14:44.717647 684fa79b-b035-4df2-8c22-65a47332ca03 {"md5": "a494a944c09df07264499d3f49857a96", "pid": "1014396824", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1014396824", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1014396824", "source": "GND"}], "date_of_birth": "1981", "preferred_name": "Kömürcü, Cem", "authorized_access_point": "Kömürcü, Cem, 1981-", "biographical_information": ["Lehrt Philosophie und Literatur an der Universität Heidelberg"]} 1 -2023-07-08 08:14:44.81839 2023-07-08 08:14:44.818397 d1d935a6-5533-463f-ba49-201ca1dba1e3 {"md5": "bcb9b47bd36606823198f4dadaa936d8", "pid": "101440391X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/101440391X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/101440391X", "source": "GND"}], "date_of_birth": "1968", "preferred_name": "Schmitz, Mario", "country_associated": "gw", "authorized_access_point": "Schmitz, Mario, 1968-", "biographical_information": ["Beratungsfeld \\"Financial Operations Improvement\\"; ehemaliger Berater der KPMG-Unternehmensberatung und BearingPoint Management Consulting"]} 1 -2023-07-08 08:14:44.906839 2023-07-08 08:14:44.906847 34670b8b-2182-44fa-a0a9-40daf42f7abc {"md5": "7402c29fac2bec56d9c059abfd290da3", "pid": "1014449278", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16168902-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16168902-4", "source": "GND"}], "preferred_name": "Heimatgeschichtliche Arbeitsgemeinschaft", "country_associated": "gw", "authorized_access_point": "Heimatgeschichtliche Arbeitsgemeinschaft. Oberlind, Sonneberg"} 1 -2023-07-08 08:14:44.981027 2023-07-08 08:14:44.981035 c7797565-cd94-498a-9fb0-9b885e97cb15 {"md5": "6dd4f38861c2d9ef7fe4344d9429fcdf", "pid": "1014449677", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://d-nb.info/gnd/1014449677", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1014449677", "source": "GND"}], "preferred_name": "Muço, Vullnet", "authorized_access_point": "Muço, Vullnet"} 1 -2023-07-08 08:14:45.065401 2023-07-08 08:14:45.065404 f69fae56-cab6-484a-96b7-6e68e149efa2 {"md5": "585febb4e9d5d808a9863e2728177514", "pid": "1014548012", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1014548012", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1014548012", "source": "GND"}], "date_of_birth": "1756", "date_of_death": "1814", "preferred_name": "Schwichow, Friedrich von", "country_associated": "gw", "authorized_access_point": "Schwichow, Friedrich von, 1756-1814", "biographical_information": ["preußischer Stabskapitän"]} 1 -2023-07-08 08:14:45.141221 2023-07-08 08:14:45.141225 214a12e8-9579-4be0-8b0c-ab67910025ad {"md5": "e5a4ab1b8cfc56fac96dd6cb6d9cead8", "pid": "1014626358", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16169743-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16169743-4", "source": "GND"}], "preferred_name": "Fédération des Associations pour l'Étude et la Mise en Valeur du Patrimoine Hospitalier et de la Santé en Alsace", "country_associated": "fr", "authorized_access_point": "Fédération des Associations pour l'Étude et la Mise en Valeur du Patrimoine Hospitalier et de la Santé en Alsace"} 1 -2023-07-08 08:14:45.217622 2023-07-08 08:14:45.217628 f57de366-0b44-4358-8171-4b55e13f92a1 {"md5": "18ae1531dddfc4d03c611c56e3c922d1", "pid": "1014638895", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1014638895", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1014638895", "source": "GND"}], "date_of_birth": "1783", "date_of_death": "19.10.1850", "preferred_name": "Dittrich, Johann Heinrich", "country_associated": "gw", "authorized_access_point": "Dittrich, Johann Heinrich, 1783-1850", "biographical_information": ["aus Fürstenau. - Pastor in Dittersdorf"]} 1 -2023-07-08 08:14:45.311476 2023-07-08 08:14:45.311484 8fc8482f-efe8-4930-aa10-9381708d9f5c {"md5": "cb7cf337285a1d8f272c74b652921896", "pid": "1014661951", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16171064-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16171064-5", "source": "GND"}], "variant_name": ["Feuerwehr Möllersdorf"], "preferred_name": "Freiwillige Feuerwehr Möllersdorf", "country_associated": "au", "variant_access_point": ["Feuerwehr Möllersdorf"], "authorized_access_point": "Freiwillige Feuerwehr Möllersdorf"} 1 -2023-07-08 08:14:45.388629 2023-07-08 08:14:45.388637 b9d6e1e6-8c6c-480c-8943-7dbbda7463c2 {"md5": "13e4dd55355d7a9648d5493236af9cf1", "pid": "1014671604", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16172029-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16172029-8", "source": "GND"}], "variant_name": ["Forschungsgruppe Handball"], "preferred_name": "Deutsche Hochschule für Körperkultur. Forschungsgruppe Handball", "variant_access_point": ["Forschungsgruppe Handball. Leipzig"], "authorized_access_point": "Deutsche Hochschule für Körperkultur. Forschungsgruppe Handball"} 1 -2023-07-08 08:14:45.476078 2023-07-08 08:14:45.476082 23930cd4-69ee-4a8b-9588-060bac66d6e4 {"md5": "625c7b311d886bb65df0abb8333153ed", "pid": "1014677610", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16172630-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16172630-6", "source": "GND"}], "variant_name": ["International Conference on the Formation of Semiconductor Interfaces, 12"], "preferred_name": "ICFSI, 12", "variant_access_point": ["International Conference on the Formation of Semiconductor Interfaces, 12, 2009, Weimar"], "authorized_access_point": "ICFSI, 12, 2009, Weimar"} 1 -2023-07-08 08:14:45.564356 2023-07-08 08:14:45.56436 32e9feb3-5a8f-4f0c-a946-d40d11c68837 {"md5": "321834ed738916c7cf0318d622c41d9c", "pid": "1014681685", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16173037-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16173037-1", "source": "GND"}], "variant_name": ["Conference on Viral Membrane Proteins"], "preferred_name": "Viral Membrane Proteins Meeting", "country_associated": "gw", "variant_access_point": ["Conference on Viral Membrane Proteins, 2008, Heidelberg"], "authorized_access_point": "Viral Membrane Proteins Meeting, 2008, Heidelberg"} 1 -2023-07-08 08:14:45.663634 2023-07-08 08:14:45.663641 f4234683-9b05-4768-b4b4-52bc94d741ce {"md5": "5e074023b0d0a9d0ef9953c9c7272b4c", "pid": "1014683998", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16173268-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16173268-9", "source": "GND"}], "variant_name": ["Biennale de l'Art Africain Comtemporain, 9", "Biennial of African Contemporary Art, 9"], "preferred_name": "Dak'Art, 9", "country_associated": "sg", "variant_access_point": ["Biennale de l'Art Africain Comtemporain, 9, 2010, Dakar", "Biennial of African Contemporary Art, 9, 2010, Dakar"], "authorized_access_point": "Dak'Art, 9, 2010, Dakar"} 1 -2023-07-08 08:14:45.758742 2023-07-08 08:14:45.758753 e8e6eb58-4753-4557-ae4c-4ada3e65b9a0 {"md5": "5b6d92da421d24f05f59393343c6f504", "pid": "1014696348", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16174503-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16174503-9", "source": "GND"}], "preferred_name": "Touristenverein Die Naturfreunde. Ortsgruppe Würmtal", "country_associated": "gw", "authorized_access_point": "Touristenverein Die Naturfreunde. Deutschland, Bundesrepublik. Ortsgruppe Würmtal"} 1 -2023-07-08 08:14:45.842253 2023-07-08 08:14:45.842263 e3ed0a91-bb0b-4dd3-9693-f9c47fd322b8 {"md5": "fa2b91e413ec7812bebb972ed3890f23", "pid": "1014702739", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16175142-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16175142-8", "source": "GND"}], "variant_name": ["Deutsche Rentenversicherung Bund. Referat, 521"], "preferred_name": "Deutsche Rentenversicherung Bund. Referat Statistisches Berichtswesen", "country_associated": "gw", "variant_access_point": ["Deutsche Rentenversicherung Bund. Referat, 521"], "authorized_access_point": "Deutsche Rentenversicherung Bund. Referat Statistisches Berichtswesen"} 1 -2023-07-08 08:14:45.918534 2023-07-08 08:14:45.918539 7ce06a47-1cc3-4402-97fe-6975a621464a {"md5": "73de66272c4c23c4d4d773ab9b46a905", "pid": "1014714222", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16176291-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16176291-8", "source": "GND"}], "variant_name": ["Výstava Překračování Hranic", "Wystawa pt. Przekraczaja̜c Granice", "Künstlerwerkstatt der Euroregion Neiße 2006", "Dílna Výtvarných Umělc°u Euroregionu Nisa 2006", "Warsztaty Artystów Euroregionu Nysa 2006"], "preferred_name": "Ausstellung Grenzgänge", "variant_access_point": ["Výstava Překračování Hranic, 2006 - 2007, Görlitz u.a.", "Wystawa pt. Przekraczaja̜c Granice, 2006 - 2007, Görlitz u.a.", "Künstlerwerkstatt der Euroregion Neiße 2006, 2006 - 2007, Görlitz u.a.", "Dílna Výtvarných Umělc°u Euroregionu Nisa 2006, 2006 - 2007, Görlitz u.a.", "Warsztaty Artystów Euroregionu Nysa 2006, 2006 - 2007, Görlitz u.a."], "authorized_access_point": "Ausstellung Grenzgänge, 2006 - 2007, Görlitz u.a."} 1 -2023-07-08 08:14:46.016929 2023-07-08 08:14:46.016938 f5979cdd-0de8-425d-8686-b37a2fd2d764 {"md5": "339176ed89e9702f0824a6fcb5197cc9", "pid": "1014733642", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16178233-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16178233-4", "source": "GND"}], "variant_name": ["Basie Octet"], "preferred_name": "Count Basie Octet", "country_associated": "xxu", "variant_access_point": ["Basie Octet"], "authorized_access_point": "Count Basie Octet"} 1 -2023-07-08 08:14:46.117337 2023-07-08 08:14:46.117339 03b5101a-5897-4936-b9a4-afd404916376 {"md5": "31913a2543fa7b933771474ac5d24108", "pid": "1014745357", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16179404-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16179404-X", "source": "GND"}], "variant_name": ["ADETEF"], "preferred_name": "Association pour le Développement des Echanges en Technologie Economique et Financière", "country_associated": "fr", "variant_access_point": ["ADETEF. Abkuerzung"], "authorized_access_point": "Association pour le Développement des Echanges en Technologie Economique et Financière"} 1 -2023-07-08 08:14:46.191958 2023-07-08 08:14:46.191962 f9401f31-7685-4e9f-b848-e4dd4a4fdcc6 {"md5": "7a84059253636aebee1003eaa1d7a813", "pid": "101476677X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/101476677X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/101476677X", "source": "GND"}], "variant_name": ["Salau, Mohammed Bashir"], "date_of_birth": "1966", "preferred_name": "Bashir Salau, Mohammed", "country_associated": "nr", "variant_access_point": ["Salau, Mohammed Bashir, 1966-"], "authorized_access_point": "Bashir Salau, Mohammed, 1966-", "biographical_information": ["2019 Associate Professor an der Univ. of Mississippi"]} 1 -2023-07-08 08:14:46.267555 2023-07-08 08:14:46.267561 89f402b1-1031-4330-a837-b3fb99e03ce4 {"md5": "ebb5330bd7e04b00682859b07e00140b", "pid": "101477635X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/101477635X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/101477635X", "source": "GND"}], "date_of_birth": "20.02.1979", "preferred_name": "Pricking, Sebastian", "authorized_access_point": "Pricking, Sebastian, 1979-", "biographical_information": ["Diss. Stuttgart 2011, Fakultät Mathematik und Physik"]} 1 -2023-07-08 08:14:46.3799 2023-07-08 08:14:46.379905 1ce6d550-9fe9-4f2b-901e-65641da2c20d {"md5": "a1ec219840401d91bd1174bc20a8ea39", "pid": "1014803217", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1014803217", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1014803217", "source": "GND"}], "date_of_birth": "1984", "preferred_name": "Vehorn, Mareike", "authorized_access_point": "Vehorn, Mareike, 1984-", "biographical_information": ["Diss. Medizinische Fakultät an der Universität Erlangen-Nürnberg"]} 1 -2023-07-08 08:14:46.464487 2023-07-08 08:14:46.464492 d6dd04ff-e377-420e-b81a-6114239b70da {"md5": "aa338570f2070ec2ccbd9c478e29a0ee", "pid": "1014837839", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1014837839", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1014837839", "source": "GND"}], "preferred_name": "Blume, Samuel Otto Theodor", "authorized_access_point": "Blume, Samuel Otto Theodor", "biographical_information": ["Aus Schlaven in Pommern, Student in Göttingen, Arzt in Hamburg"]} 1 -2023-07-08 08:14:46.548726 2023-07-08 08:14:46.548731 ecf386ee-af05-4f55-9366-ccc134daea84 {"md5": "10e067e88afcdfef6fe54bf55f10203a", "pid": "1014954320", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1014954320", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1014954320", "source": "GND"}], "variant_name": ["Verma, ..."], "preferred_name": "Verma, Punita", "country_associated": "ii", "variant_access_point": ["Verma, ..."], "authorized_access_point": "Verma, Punita", "biographical_information": ["aus Meerut, Indien; Promotion auf dem Gebiet der Schwerionenforschung an der Universität Gießen(Fachbereich Mathematik und Informatik, Physik, Geographie)"]} 1 -2023-07-08 08:14:46.632781 2023-07-08 08:14:46.632787 fbad2fca-b6cb-4dcf-9908-ff0404294904 {"md5": "037e082060213bf7b637606c47377d31", "pid": "1015098495", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1015098495", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1015098495", "source": "GND"}], "date_of_birth": "1979", "preferred_name": "Torun, Ahmet Refah", "country_associated": "tu", "authorized_access_point": "Torun, Ahmet Refah, 1979-"} 1 -2023-07-08 08:14:46.716749 2023-07-08 08:14:46.716754 53641f2b-b857-4611-b297-18b11d64c504 {"md5": "e005145b6159d61cd611ed68e757d2b0", "pid": "1015101003", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1015101003", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1015101003", "source": "GND"}], "variant_name": ["Cörber, Henrich Adrian", "Körber, Heinrich Adrian", "Coerber, Heinrich Adrian"], "preferred_name": "Cörber, Heinrich Adrian", "country_associated": "gw", "variant_access_point": ["Cörber, Henrich Adrian", "Körber, Heinrich Adrian", "Coerber, Heinrich Adrian"], "authorized_access_point": "Cörber, Heinrich Adrian", "biographical_information": ["Student an der Univ. Helmstedt"]} 1 -2023-07-08 08:14:46.82764 2023-07-08 08:14:46.827651 8ef7a7fd-94df-4945-8b27-1ae43b13c4c6 {"md5": "4f3af0b310437582f1379b76b5251aca", "pid": "101514859X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/101514859X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/101514859X", "source": "GND"}], "variant_name": ["Nägli, Silke"], "preferred_name": "Näglein, Silke", "country_associated": "au", "variant_access_point": ["Nägli, Silke"], "authorized_access_point": "Näglein, Silke", "biographical_information": ["Mitarbeiterin der Abt. Vertragspartner Medikamente im Hauptverband der Österreichischen Sozialversicherungsträger"]} 1 -2023-07-08 08:14:46.907789 2023-07-08 08:14:46.907797 08467aac-23c7-490b-9794-f3f2b17c55eb {"md5": "86adfd76d9e1f5295776b1a88ab00f5e", "pid": "1015165990", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1015165990", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1015165990", "source": "GND"}], "date_of_birth": "1977", "preferred_name": "Gettys, Sven-Daniel", "authorized_access_point": "Gettys, Sven-Daniel, 1977-"} 1 -2023-07-08 08:14:46.993215 2023-07-08 08:14:46.993225 b00f3e6a-9cf9-40c5-949e-3b4bce247f62 {"md5": "ac580d44a55452a9b935d281aef4e3ca", "pid": "1015193862", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "qualifier": "Maharaj", "identifier": "http://d-nb.info/gnd/1015193862", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1015193862", "source": "GND"}], "variant_name": ["Satpalji, Maharaj"], "date_of_birth": "1951", "preferred_name": "Satpal, Maharaj", "variant_access_point": ["Satpalji, Maharaj, 1951-"], "authorized_access_point": "Satpal, Maharaj, 1951-"} 1 -2023-07-08 08:14:47.100647 2023-07-08 08:14:47.100653 775051f3-c2ed-4fbe-8711-0e0add33589b {"md5": "64afeb65fed826b51f61f13a0d979436", "pid": "1015243762", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1015243762", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1015243762", "source": "GND"}], "variant_name": ["Wiesegart, Margarete Haaß-", "Haass-Wiesegart, Margarete"], "preferred_name": "Haaß-Wiesegart, Margarete", "variant_access_point": ["Wiesegart, Margarete Haaß-", "Haass-Wiesegart, Margarete"], "authorized_access_point": "Haaß-Wiesegart, Margarete", "biographical_information": ["Mitbegründerin und langjährige Präsidentin der Deutsch-Chinesischen Akademie e. V. für Psychotherapie"]} 1 -2023-07-08 08:14:47.177837 2023-07-08 08:14:47.177842 930a4738-9130-40ae-9199-a45c548d6aae {"md5": "de4d160d51491b890da92878dcc5ab0a", "pid": "1015331386", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1015331386", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1015331386", "source": "GND"}], "date_of_birth": "ca. 19. /20. Jh.", "preferred_name": "Ebbinghaus, Kurt", "country_associated": "gw", "authorized_access_point": "Ebbinghaus, Kurt, ca. 19. /20. Jh."} 1 -2023-07-08 08:14:47.250014 2023-07-08 08:14:47.25002 cf9a1c39-57b1-49f4-a2cf-717e07e7388e {"md5": "5ec742d15021e6e79c7998d6c8ce2a68", "pid": "1015348394", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1015348394", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1015348394", "source": "GND"}], "preferred_name": "Smale, John", "country_associated": "xxk", "authorized_access_point": "Smale, John"} 1 -2023-07-08 08:14:47.326501 2023-07-08 08:14:47.326504 16365859-31f0-4f55-9edc-bcc24895a859 {"md5": "a9390519990b758517f2201cf950c6b6", "pid": "1015354157", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16182271-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16182271-X", "source": "GND"}], "preferred_name": "Sammlung Malou Majerus", "country_associated": "lu", "authorized_access_point": "Sammlung Malou Majerus", "biographical_information": ["Privatsammlung"]} 1 -2023-07-08 08:14:47.40305 2023-07-08 08:14:47.403059 1e903c15-8e03-4189-9ad4-069378033b11 {"md5": "c542aa800aa670e7bcda786cc38518cf", "pid": "1015371035", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16182356-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16182356-7", "source": "GND"}], "preferred_name": "Allmänna Sången", "country_associated": "sw", "date_of_establishment": "1830", "authorized_access_point": "Allmänna Sången. Musikgruppe", "biographical_information": ["Schwed. Universitäts-Chor; seit 1963 gem. Chor"]} 1 -2023-07-08 08:14:47.498027 2023-07-08 08:14:47.498031 cc24ffea-5a99-4188-8e08-f9e84d6e0dc5 {"md5": "a79d2f7a7886810ec7eae2c7f3b7952d", "pid": "1015412998", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1015412998", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1015412998", "source": "GND"}], "variant_name": ["Hunicke, Christophorus ab"], "date_of_birth": "ca. ca. 1620", "preferred_name": "Hunicke, Christoph von", "variant_access_point": ["Hunicke, Christophorus ab, ca. ca. 1620"], "authorized_access_point": "Hunicke, Christoph von, ca. ca. 1620", "biographical_information": ["Domdechant in Magdeburg"]} 1 -2023-07-08 08:14:47.576164 2023-07-08 08:14:47.576167 59c66194-7570-4e26-bf38-755013a7f2a4 {"md5": "490956026d3f1e3b1990754f30eab0ec", "pid": "1015428967", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1015428967", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1015428967", "source": "GND"}], "variant_name": ["Bento da Silva, Iris"], "preferred_name": "Silva, Iris Bento da", "variant_access_point": ["Bento da Silva, Iris"], "authorized_access_point": "Silva, Iris Bento da", "biographical_information": ["Doctorate in Mechanical Engineering from the Univ. of Campinas (UNICAMP), Brazil; Production Manager of Eaton Transmissions in Valinhos, Brazil; assistant professor in the Dept. of Manufacturing Engineering at the Univ. of Campinas"]} 1 -2023-07-08 08:14:47.664458 2023-07-08 08:14:47.664467 f9a36237-6727-4540-a08b-5e01ae27c71a {"md5": "70977889d0125de13bbfe678a1c7325b", "pid": "1015448186", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16182717-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16182717-2", "source": "GND"}], "preferred_name": "Winterpark", "country_associated": "at", "date_of_establishment": "2005", "authorized_access_point": "Winterpark", "biographical_information": ["Electronic-Duo aus Melbourne (Matthew Ridgway, Jordy Hewitt)"]} 1 -2023-07-08 08:14:47.749999 2023-07-08 08:14:47.750004 8deb47be-ce12-44ef-88af-04c9d2ea2fae {"md5": "ee8a14968a00dfb504770534ed2ce41b", "pid": "1015448305", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1015448305", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1015448305", "source": "GND"}], "date_of_birth": "1979", "preferred_name": "Büchner, Nils", "authorized_access_point": "Büchner, Nils, 1979-", "biographical_information": ["Bachelor Tübingen 2011"]} 1 -2023-07-08 08:14:47.838499 2023-07-08 08:14:47.838507 ffb8ff40-218d-4714-a2c8-38420fd35fda {"md5": "eb454e7d98f9607650771e8a05cb8a13", "pid": "1015457789", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1015457789", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1015457789", "source": "GND"}], "preferred_name": "Göth, Karl", "country_associated": "au", "authorized_access_point": "Göth, Karl"} 1 -2023-07-08 08:14:47.932315 2023-07-08 08:14:47.93232 3e4eec25-8f3a-430d-86e2-5cf8f0c4d48c {"md5": "b5b51947f1736c3a0d18524430b0f442", "pid": "1015645631", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16324382-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16324382-7", "source": "GND"}], "variant_name": ["18. Witzenhäuser Konferenz, 2010"], "preferred_name": "Witzenhäuser Konferenz, 18", "country_associated": "gw", "variant_access_point": ["18. Witzenhäuser Konferenz, 2010"], "authorized_access_point": "Witzenhäuser Konferenz, 18, 2010, Witzenhausen"} 1 -2023-07-08 08:14:48.027863 2023-07-08 08:14:48.027867 daa567ac-4792-43b5-9625-06e7c8725ab3 {"md5": "5ead886f9acd18a0afb319ac055f46d3", "pid": "1015750427", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1015750427", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1015750427", "source": "GND"}], "date_of_birth": "1985", "preferred_name": "Schulze, Marcel", "country_associated": "gw", "authorized_access_point": "Schulze, Marcel, 1985-"} 1 -2023-07-08 08:14:48.105572 2023-07-08 08:14:48.105581 39e9c742-ed82-4bf4-be08-0c09ceec98e3 {"md5": "fb927c0c51569e6ae14aaa5e2bf69c4c", "pid": "1015752756", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1015752756", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1015752756", "source": "GND"}], "date_of_birth": "16.08.1895", "date_of_death": "17.08.1984", "preferred_name": "Kerouallan, Yves de", "country_associated": "fr", "authorized_access_point": "Kerouallan, Yves de, 1895-1984"} 1 -2023-07-08 08:14:48.179821 2023-07-08 08:14:48.179825 3f0937a1-c314-4c47-8cc4-318d4444b5b1 {"md5": "431db7e4772c03b5aeb47f94ed57c640", "pid": "1015778275", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1015778275", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1015778275", "source": "GND"}], "preferred_name": "Bálint, Lajos", "authorized_access_point": "Bálint, Lajos", "biographical_information": ["Senior research fellow"]} 1 -2023-07-08 08:14:48.267901 2023-07-08 08:14:48.267906 2276ae77-3a38-4020-af10-164a5738a67e {"md5": "812f678596678c125fb8527ce6a5e3df", "pid": "1015799485", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1015799485", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1015799485", "source": "GND"}], "variant_name": ["Lancaster, Mike A."], "date_of_birth": "1965", "preferred_name": "Lancaster, Mike", "country_associated": "xxk", "variant_access_point": ["Lancaster, Mike A., 1965-"], "authorized_access_point": "Lancaster, Mike, 1965-", "biographical_information": ["freier Autor"]} 1 -2023-07-08 08:14:48.39841 2023-07-08 08:14:48.398414 f818ebc4-df43-419f-9880-bc8423f02747 {"md5": "2bf5847a7238cb2353d2d9234a0c826b", "pid": "1016006969", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1016006969", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1016006969", "source": "GND"}], "preferred_name": "Schütz, Maria", "authorized_access_point": "Schütz, Maria", "biographical_information": ["Diss. Medizinische Fakultät an der Universität München (2011)"]} 1 -2023-07-08 08:14:49.567448 2023-07-08 08:14:49.567455 c018190b-4cee-435d-b137-8d89633790b6 {"md5": "dbdf6e5fc5a24bcaab2202b9f751df9c", "pid": "1018900772", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16336522-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16336522-2", "source": "GND"}], "variant_name": ["Sawston Village College Choir"], "preferred_name": "Sawston Village College. Chamber Choir", "country_associated": "xxk", "variant_access_point": ["Sawston Village College Choir"], "authorized_access_point": "Sawston Village College. Chamber Choir"} 1 -2023-07-08 08:14:48.47594 2023-07-08 08:14:48.475949 5140f2a4-f126-4f36-8df1-c9e47f13625c {"md5": "5ba9acf623bb336cb3ad002a4fe1840e", "pid": "1016159560", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1016159560", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1016159560", "source": "GND"}], "variant_name": ["Sundt, Ana Isabel Larraín", "Larraín, Ana Isabel"], "preferred_name": "Larraín Sundt, Ana Isabel", "country_associated": "cl", "variant_access_point": ["Sundt, Ana Isabel Larraín", "Larraín, Ana Isabel"], "authorized_access_point": "Larraín Sundt, Ana Isabel", "biographical_information": ["Chilen. Hebamme; Prof. für Sozialpsychologie der med. Fak. der Univ. de los Andes; Direktorin der Escuela de Enfermería, Univ. de los Andes"]} 1 -2023-07-08 08:14:48.558723 2023-07-08 08:14:48.558727 4257093a-1a91-4961-ae67-3040543dc0f6 {"md5": "e49182613d8bbb4bc2e661216a2dd014", "pid": "1016626150", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1016626150", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1016626150", "source": "GND"}], "date_of_birth": "1980", "preferred_name": "Lhoťan, Lukáš", "authorized_access_point": "Lhoťan, Lukáš, 1980-"} 1 -2023-07-08 08:14:48.743451 2023-07-08 08:14:48.743462 348145ae-721c-43ea-b7df-7747f65b1a33 {"md5": "5418f85a3d40eb86c64ad7bef9692b82", "pid": "1016951426", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1016951426", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1016951426", "source": "GND"}], "variant_name": ["Rocha Bruno, Adriana"], "preferred_name": "Bruno, Adriana Rocha", "country_associated": "bl", "variant_access_point": ["Rocha Bruno, Adriana"], "authorized_access_point": "Bruno, Adriana Rocha", "biographical_information": ["Brasilian. Pädagogin"]} 1 -2023-07-08 08:14:48.817985 2023-07-08 08:14:48.817991 c345daf0-0e0f-4352-9506-253823184724 {"md5": "23442922336c479db156f0bff82254c3", "pid": "1016975198", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1016975198", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1016975198", "source": "GND"}], "variant_name": ["Berenguer Navarro, José Luis", "Navarro, José Luis Berenguer"], "date_of_birth": "1952", "preferred_name": "Berenguer, José Luis", "country_associated": "sp", "variant_access_point": ["Berenguer Navarro, José Luis, 1952-", "Navarro, José Luis Berenguer, 1952-"], "authorized_access_point": "Berenguer, José Luis, 1952-", "biographical_information": ["Span. Autor"]} 1 -2023-07-08 08:14:48.934585 2023-07-08 08:14:48.934593 011eb002-2e8d-4a81-bd94-2cb222838f27 {"md5": "222715d4e6fb61c2dd0f57c98972c85f", "pid": "1017107246", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1017107246", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1017107246", "source": "GND"}], "date_of_birth": "1978", "preferred_name": "Calorio, Giacomo", "authorized_access_point": "Calorio, Giacomo, 1978-", "biographical_information": ["Promotion Fachgebiet japanische Sprach- und Literaturwissenschaft"]} 1 -2023-07-08 08:14:49.051624 2023-07-08 08:14:49.05163 6ab7e274-0147-472e-b559-ad4fed6bf0bf {"md5": "0eb5823da5b991d2c84eaa6d2c911b62", "pid": "1017352712", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16330897-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16330897-4", "source": "GND"}], "variant_name": ["Pastoe", "UMS Pastoe bv", "UMS-Pastoe"], "preferred_name": "UMS Pastoe", "country_associated": "ne", "variant_access_point": ["Pastoe", "UMS Pastoe bv. Unveraenderte Form", "UMS-Pastoe"], "date_of_establishment": "1955", "authorized_access_point": "UMS Pastoe"} 1 -2023-07-08 08:14:49.138414 2023-07-08 08:14:49.138423 30084772-80e8-45f6-9868-52476f11d580 {"md5": "09c345eeb175315bfc28484f6fa0ebb1", "pid": "1017628769", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["lat"], "identifier": "http://d-nb.info/gnd/1017628769", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1017628769", "source": "GND"}], "preferred_name": "Lenaz, Luciano", "authorized_access_point": "Lenaz, Luciano"} 1 -2023-07-08 08:14:49.222956 2023-07-08 08:14:49.222968 b68b5b77-7982-4ffb-b454-afcb2b08dd6b {"md5": "0c6b9b5f16234f73c1bea596cae6980b", "pid": "1017668051", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1017668051", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1017668051", "source": "GND"}], "date_of_birth": "1950", "preferred_name": "Bodman, Whitney S.", "country_associated": "xxu", "authorized_access_point": "Bodman, Whitney S., 1950-", "biographical_information": ["Associate Professor of Comparative Religion, Austin Presbyterian Theolog. Seminary, Austin, Tex."]} 1 -2023-07-08 08:14:49.318866 2023-07-08 08:14:49.318872 b103f43e-c571-4c7f-963a-e6e88802b186 {"md5": "73b2bb45d16f79c3b3f87bcadbf11cda", "pid": "1017696241", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1017696241", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1017696241", "source": "GND"}], "date_of_birth": "1971", "preferred_name": "Lazarus, Julia", "country_associated": "gw", "authorized_access_point": "Lazarus, Julia, ca. 20./21. Jh."} 1 -2023-07-08 08:14:49.400361 2023-07-08 08:14:49.400368 9ecbb729-f542-4f23-9409-d5f6dba1588c {"md5": "851bf421948864d78d28dd2d9d9b2c28", "pid": "1018180087", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16333720-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16333720-2", "source": "GND"}], "variant_name": ["Bayer Health Care Pharmaceuticals"], "preferred_name": "Bayer HealthCare Pharmaceuticals", "country_associated": "gw", "variant_access_point": ["Bayer Health Care Pharmaceuticals"], "date_of_establishment": "2011", "authorized_access_point": "Bayer HealthCare Pharmaceuticals"} 1 -2023-07-08 08:14:49.480501 2023-07-08 08:14:49.480505 e71585bd-0559-4f32-981a-2e30ad047a70 {"md5": "71d4ed70233fcf3bf5f817b2bae25b82", "pid": "1018299807", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1018299807", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1018299807", "source": "GND"}], "preferred_name": "Lauren, Jillian", "country_associated": "xxu", "authorized_access_point": "Lauren, Jillian"} 1 -2023-07-08 08:14:49.750291 2023-07-08 08:14:49.750298 1c0dbce4-8831-45cc-815c-04190cc220b3 {"md5": "12df56c215b20facab59ad0a542cdeef", "pid": "1020150378", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1020150378", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1020150378", "source": "GND"}], "variant_name": ["Qing, Li", "Qing li"], "preferred_name": "Li, Qing", "variant_access_point": ["Qing, Li", "Qing li"], "authorized_access_point": "Li, Qing", "biographical_information": ["Tätig am Institut d'Economie et Management de la Santé (IEMS) und am Département d'Econométrie et d'Economie Politique (DEEP) an der HEC der Univ. Lausanne, Schweiz"]} 1 -2023-07-08 08:14:49.857512 2023-07-08 08:14:49.85752 8e06c1d6-ac88-4b59-982a-70ce65c5046a {"md5": "2c0f6a8070a0a4055038056028ca1c3c", "pid": "102047033X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/102047033X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/102047033X", "source": "GND"}], "variant_name": ["Gorchakova, Aleksandra Aleksandrovna Santagano-", "Gorčakova, Aleksandra A. Santagano-", "Santagano-Gorčakova, Aleksandra Aleksandrovna", "Gorčakova, Aleksandra Aleksandrovna Santagano-", "Santagano-Gorčakova, Aleksandra", "Gorčakova, Aleksandra Santagano-", "Santagano-Gorchakova, Aleksandra", "Gorchakova, Aleksandra Santagano-", "Santagano-Gorchakova, T. P.", "Gorchakova, T. P. Santagano-", "Gorchakova, A."], "date_of_birth": "1842", "date_of_death": "1913", "preferred_name": "Santagano-Gorčakova, Aleksandra A.", "country_associated": "ru", "variant_access_point": ["Gorchakova, Aleksandra Aleksandrovna Santagano-, 1842-1913", "Gorčakova, Aleksandra A. Santagano-, 1842-1913", "Santagano-Gorčakova, Aleksandra Aleksandrovna, 1842-1913", "Gorčakova, Aleksandra Aleksandrovna Santagano-, 1842-1913", "Santagano-Gorčakova, Aleksandra, 1842-1913", "Gorčakova, Aleksandra Santagano-, 1842-1913", "Santagano-Gorchakova, Aleksandra, 1842-1913", "Gorchakova, Aleksandra Santagano-, 1842-1913", "Santagano-Gorchakova, T. P., 1842-1913", "Gorchakova, T. P. Santagano-, 1842-1913", "Gorchakova, A., 1842-1913"], "parallel_access_point": ["Santagano-Gorchakova, Aleksandra Aleksandrovna, 1842-1913"], "authorized_access_point": "Santagano-Gorčakova, Aleksandra A., 1842-1913", "biographical_information": ["Russ. Sopranistin; Gesangslehrerin; Übersetzerin"]} 1 -2023-07-08 08:14:49.948746 2023-07-08 08:14:49.94875 f382a762-149e-4b33-82a0-c58776e0a304 {"md5": "6d4f493be9133cd95db97a6765ab7a70", "pid": "1020473932", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/7857480-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7857480-8", "source": "GND"}], "variant_name": ["Museo di Casa Romei"], "preferred_name": "Casa Romei", "country_associated": "it", "variant_access_point": ["Museo di Casa Romei"], "authorized_access_point": "Casa Romei. Museum", "biographical_information": ["1956 gegründet"]} 1 -2023-07-08 08:14:50.131132 2023-07-08 08:14:50.13114 37a90994-bbd4-4d36-b91e-7c33a6c3c50c {"md5": "03baf2b7b563421257579800e1d63f42", "pid": "1020751282", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16343525-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16343525-X", "source": "GND"}], "variant_name": ["Thompson's All Stars"], "preferred_name": "Lucky Thompson's All Stars", "country_associated": "xxu", "variant_access_point": ["Thompson's All Stars"], "authorized_access_point": "Lucky Thompson's All Stars"} 1 -2023-07-08 08:14:50.213532 2023-07-08 08:14:50.213537 3be03777-19bb-41f8-90fb-72b04aac2dd4 {"md5": "f80f05f4b3f5dd2fc6951ac6739be28f", "pid": "102248435", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/102248435", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/102248435", "source": "GND"}], "date_of_birth": "1927", "date_of_death": "2008", "preferred_name": "Grabowski, Tadeusz", "country_associated": "pl", "authorized_access_point": "Grabowski, Tadeusz, 1927-2008", "biographical_information": ["Historiker, Spezialgebiete: Staatsgeschichte und Wirtschaftstheorie"]} 1 -2023-07-08 08:14:50.318872 2023-07-08 08:14:50.318875 f7dc52dd-fd85-4239-9155-c015cc7be4f8 {"md5": "df46e55390ceadb490ffe6df17e803ad", "pid": "1023582090", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1023582090", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1023582090", "source": "GND"}], "variant_name": ["Bibard, Charles-Olivier-René", "René, Charles"], "date_of_birth": "06.05.1863", "date_of_death": "15.09.1935", "preferred_name": "Charles-René", "country_associated": "fr", "variant_access_point": ["Bibard, Charles-Olivier-René, 1863-1935", "René, Charles, 1863-1935"], "authorized_access_point": "Charles-René, 1863-1935"} 1 -2023-07-08 08:14:50.432546 2023-07-08 08:14:50.432553 0075f6d5-1fa2-4a74-bef3-f64d53591f28 {"md5": "1d755375dfd1a0e205b1860f5adfdcb2", "pid": "1023649187", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1023649187", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1023649187", "source": "GND"}], "date_of_birth": "1972", "preferred_name": "Gabel, Hubert", "country_associated": "gw", "authorized_access_point": "Gabel, Hubert, 1972-"} 1 -2023-07-08 08:14:50.511887 2023-07-08 08:14:50.511899 85cf50ae-e23c-4843-980f-72a1c77e0ad5 {"md5": "ac6024bcf42471086338de230b31e73b", "pid": "102402868", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "qualifier": "Samius", "identifier": "http://d-nb.info/gnd/102402868", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/102402868", "source": "GND"}], "variant_name": ["Philitas, Epigrammaticus", "Philetas, Samius", "Philetas, Epigrammaticus"], "date_of_birth": "ca. 1.Jh.v.Chr.", "preferred_name": "Philitas, Samius", "variant_access_point": ["Philitas, Epigrammaticus, ca. 1.Jh.v.Chr.", "Philetas, Samius, ca. 1.Jh.v.Chr.", "Philetas, Epigrammaticus, ca. 1.Jh.v.Chr."], "authorized_access_point": "Philitas, Samius, ca. 1.Jh.v.Chr.", "biographical_information": ["AP 6.210; 7.481"]} 1 -2023-07-08 08:14:50.608378 2023-07-08 08:14:50.608386 a03bc6da-842e-4123-af5f-f62a42d91c96 {"md5": "ed58a95ce86ab6fbee025ebc1c0b4acc", "pid": "102503214", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/102503214", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/102503214", "source": "GND"}], "date_of_birth": "1544", "date_of_death": "1605", "preferred_name": "Guijon, Jean", "country_associated": "fr", "authorized_access_point": "Guijon, Jean, 1544-1605", "biographical_information": ["Franz. Geograph, Botaniker"]} 1 -2023-07-08 08:14:50.710852 2023-07-08 08:14:50.710861 20b878b3-f33d-4847-a29b-8d43e90081ff {"md5": "81c70845716dd9bf7b4f992069bb5c64", "pid": "1025074823", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1025074823", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1025074823", "source": "GND"}], "date_of_birth": "1968", "preferred_name": "Griffith, Terri", "country_associated": "xxu", "authorized_access_point": "Griffith, Terri, 1968-"} 1 -2023-07-08 08:14:50.795855 2023-07-08 08:14:50.795862 851ed99b-7173-4b09-b5c0-86b3615b3068 {"md5": "773a10ba687332e3cb4331af16fbff10", "pid": "1025297636", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1025297636", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1025297636", "source": "GND"}], "date_of_birth": "1967", "preferred_name": "Kern, Friederike", "country_associated": "gw", "authorized_access_point": "Kern, Friederike, 1967-"} 1 -2023-07-08 08:14:50.984957 2023-07-08 08:14:50.984964 90809e02-81dd-4f00-bcac-4540f17d1065 {"md5": "c9415e1bddc4a66ddf3b9bcd7066238d", "pid": "1026316790", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1026316790", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1026316790", "source": "GND"}], "preferred_name": "Listova, Natalija Aleksandrovna", "country_associated": "ru", "authorized_access_point": "Listova, Natalija Aleksandrovna"} 1 -2023-07-08 08:14:51.08585 2023-07-08 08:14:51.085855 f2bfd063-7c0e-43ba-9097-3f9bb366007d {"md5": "48883c364c37c3b612ed4d0943df6521", "pid": "1026448301", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1026448301", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1026448301", "source": "GND"}], "date_of_birth": "14.12.1948", "preferred_name": "Andrews, Richard", "country_associated": "xxk", "authorized_access_point": "Andrews, Richard, 1948-", "biographical_information": ["Visiting Professor at New York University's Steinhardt School of Education, Culture and Human Development."]} 1 -2023-07-08 08:14:51.164333 2023-07-08 08:14:51.164341 d9405e20-3a03-4a08-916f-d63b47c4250e {"md5": "fdd6896075f1243207c19f41547aaf7c", "pid": "1027019080", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1027019080", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1027019080", "source": "GND"}], "variant_name": ["Geljnek, Frantissek"], "date_of_birth": "1783", "date_of_death": "1856", "preferred_name": "Jelinek, František", "variant_access_point": ["Geljnek, Frantissek, 1783-1856"], "authorized_access_point": "Jelinek, František, 1783-1856"} 1 -2023-07-08 08:14:51.249603 2023-07-08 08:14:51.249608 64d9d243-c9fd-4004-a0b4-ced82e2dcfef {"md5": "75a990838003db58fa7f3427d7a48193", "pid": "1027170250", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1027170250", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1027170250", "source": "GND"}], "date_of_birth": "1583", "date_of_death": "1661", "preferred_name": "Fevret, Charles", "country_associated": "fr", "authorized_access_point": "Fevret, Charles, 1583-1661"} 1 -2023-07-08 08:14:51.360141 2023-07-08 08:14:51.360155 86370093-92a5-4b00-a718-19541049019c {"md5": "2ea7ce3a46170ddbba5aac18def0cb79", "pid": "1027359981", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1027359981", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1027359981", "source": "GND"}], "variant_name": ["Ardenne, Jo d'"], "preferred_name": "D'Ardenne, Jo", "variant_access_point": ["Ardenne, Jo d'"], "authorized_access_point": "D'Ardenne, Jo", "biographical_information": ["Senior Survey Methodologist"]} 1 -2023-07-08 08:14:51.439338 2023-07-08 08:14:51.439347 7933d5fb-1a73-4bfa-91e0-8a462fb89df9 {"md5": "7e7b6b672e8101485522a30aad5cf1a7", "pid": "1027463770", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1027463770", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1027463770", "source": "GND"}], "date_of_birth": "1731", "date_of_death": "1808", "preferred_name": "Bailey, Jacob", "country_associated": "xxu", "authorized_access_point": "Bailey, Jacob, 1731-1808", "biographical_information": ["Missionary at Pownalborough, Maine; Cornwallis and Annapolis"]} 1 -2023-07-08 08:14:51.540643 2023-07-08 08:14:51.540651 befc21ac-28d8-40f6-91db-e6d6bdd1ab4e {"md5": "741e5801753a12614137b55f06d5ad6d", "pid": "1027567835", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1027567835", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1027567835", "source": "GND"}], "date_of_birth": "1956", "preferred_name": "Koike, Hisako", "country_associated": "ja", "parallel_access_point": ["小池, 寿子, 1956-"], "authorized_access_point": "Koike, Hisako, 1956-"} 1 -2023-07-08 08:14:51.631911 2023-07-08 08:14:51.63192 e9c6946c-cbb9-4a81-ae30-df5df01a1475 {"md5": "72f545dbc99dd4e16977a4bb7af18807", "pid": "1028398166", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1028398166", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1028398166", "source": "GND"}], "date_of_birth": "1955", "preferred_name": "Westphal, Manfred", "country_associated": "gw", "authorized_access_point": "Westphal, Manfred, 1955-", "biographical_information": ["Univ. Hamburg, Medizinische Fak., Universitätsklinikum Hamburg-Eppendorf, Kopf- und Neurozentrum, Ärztlicher Leiter der Klinik und Poliklinik für Neurochirurgie"]} 1 -2023-07-08 08:14:51.807879 2023-07-08 08:14:51.807888 4deee822-185d-4734-873b-6dcf30cfd264 {"md5": "ca0f3e6cb11ae9a81e7b9013c941d97e", "pid": "102892113", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/102892113", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/102892113", "source": "GND"}], "variant_name": ["Obrechtus, Elias", "Obrectus, Elias"], "date_of_birth": "1654", "date_of_death": "16.01.1698", "preferred_name": "Obrecht, Elias", "country_associated": "gw", "variant_access_point": ["Obrechtus, Elias, 1654-1698", "Obrectus, Elias, 1654-1698"], "authorized_access_point": "Obrecht, Elias, 1654-1698", "biographical_information": ["schwedischer Minister; Professor der Beredsamkeit und der Geschichte in Straßburg"]} 1 -2023-07-08 08:14:51.918505 2023-07-08 08:14:51.91851 e2927936-5158-4595-b5ba-d80c424510c5 {"md5": "0d824d091f79fb0331ea61cf86689595", "pid": "1030495416", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1030495416", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1030495416", "source": "GND"}], "date_of_birth": "1966", "preferred_name": "Pinkowski, Heiko", "country_associated": "gw", "authorized_access_point": "Pinkowski, Heiko, 1966-"} 1 -2023-07-08 08:14:52.009692 2023-07-08 08:14:52.009705 d36ae6ea-e276-4630-9ec2-1f00c02045ad {"md5": "7bc014340a41d120b1610fc33d550d17", "pid": "1031215441", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1031215441", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1031215441", "source": "GND"}], "variant_name": ["Nordenskjöld, I."], "preferred_name": "Nordenskjöld, Ivar", "country_associated": "gw", "variant_access_point": ["Nordenskjöld, I."], "authorized_access_point": "Nordenskjöld, Ivar"} 1 -2023-07-08 08:14:52.092216 2023-07-08 08:14:52.092225 fff334f2-d613-47ab-870b-dc78df07ce90 {"md5": "8d83b0e26034e8bafcc7ec48758549c9", "pid": "103129928", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/103129928", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/103129928", "source": "GND"}], "date_of_birth": "1812", "date_of_death": "1871", "preferred_name": "Dain, Charles", "authorized_access_point": "Dain, Charles, 1812-1871"} 1 -2023-07-08 08:14:52.166091 2023-07-08 08:14:52.166097 f5fcc525-f19d-402f-8d8b-cd561720a44e {"md5": "dbea3b1479287fe16e4b7bae5cfe262a", "pid": "103163357X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/103163357X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/103163357X", "source": "GND"}], "date_of_birth": "1960", "preferred_name": "Eickhoff, Matthias", "country_associated": "gw", "authorized_access_point": "Eickhoff, Matthias, 1960-"} 1 -2023-07-08 08:14:52.343162 2023-07-08 08:14:52.343171 709b957c-39cd-4435-89d3-7e6915c12074 {"md5": "0607c92f97b4fba0d8b13366034e8a1b", "pid": "1032456213", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1032456213", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1032456213", "source": "GND"}], "variant_name": ["Hambach, Bettina"], "date_of_birth": "15.10.1923", "date_of_death": "2010", "preferred_name": "Moissi, Bettina", "country_associated": "gw", "variant_access_point": ["Hambach, Bettina, 1923-2010"], "authorized_access_point": "Moissi, Bettina, 1923-2010"} 1 -2023-07-08 08:14:52.445291 2023-07-08 08:14:52.445299 3e626e6e-12b8-4e91-87b8-bb1cb0fa4bd4 {"md5": "1681f5125593e6db672a802e1f385ab7", "pid": "1032675357", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1032675357", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1032675357", "source": "GND"}], "date_of_birth": "03.08.1904", "date_of_death": "02.10.1941", "preferred_name": "Mog, Aribert", "country_associated": "au", "authorized_access_point": "Mog, Aribert, 1904-1941"} 1 -2023-07-08 08:14:52.532293 2023-07-08 08:14:52.532304 aaf6f1b5-9145-46a8-b80a-adc9672597aa {"md5": "dd187b0dcc393f8f431ed8ec0c9581fd", "pid": "1033120790", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1033120790", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1033120790", "source": "GND"}], "variant_name": ["Glasze, G."], "date_of_birth": "1969", "preferred_name": "Glasze, Georg", "country_associated": "gw", "variant_access_point": ["Glasze, G., 1969-"], "authorized_access_point": "Glasze, Georg, 1969-", "biographical_information": ["Inhaber des Lehrstuhls für Kulturgeographie und Orientforschung an der Univ. Erlangen-Nürnberg; Forschungsinteressen u.a.: politische Geographie und geographische Stadtforschung"]} 1 -2023-07-08 08:14:52.62186 2023-07-08 08:14:52.62187 0bd59715-a441-4446-b6f9-226e0e01944d {"md5": "b0b1cd7e9f06d0b9c8fe4f47d4b66550", "pid": "1033471542", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1033471542", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1033471542", "source": "GND"}], "preferred_name": "Sanlı, Kerem Cem", "country_associated": "tu", "authorized_access_point": "Sanlı, Kerem Cem"} 1 -2023-07-08 08:14:52.697822 2023-07-08 08:14:52.697827 61d8094a-eb12-4361-b5f6-d38bcee41d17 {"md5": "bb4ffe048ef4896c7755c03cffef8698", "pid": "1033570451", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1033570451", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1033570451", "source": "GND"}], "variant_name": ["Otmazgin, Nissim Kadosh", "פרופ' ניסים אוטמזגין"], "date_of_birth": "1973", "preferred_name": "Otmazgin, Nissim", "country_associated": "is", "variant_access_point": ["Otmazgin, Nissim Kadosh, 1973-", "פרופ' ניסים אוטמזגין, 1973-"], "authorized_access_point": "Otmazgin, Nissim, 1973-", "biographical_information": ["Mail des Verfassers (06.04.2017) zum 2. Vornamen \\"Kadosh\\": \\"I used it only in one book. Its not an official name - its my mother's maiden name. I did it as a present to my mother.\\"", "Schwerpunkte: Japanese popular culture in Asia, popular culture and regionalization in East and Southeast Asia, Japan-Southeast Asian relations, and cultural industry and cultural policy in Japan and South Korea."]} 1 -2023-07-08 08:14:52.796848 2023-07-08 08:14:52.796853 f5c9294f-7f1f-456d-b86e-c651370ffea2 {"md5": "d7eee74da5c9c5ceaf34c46aeb15bbd5", "pid": "1034236164", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1034236164", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1034236164", "source": "GND"}], "date_of_birth": "1971", "preferred_name": "Wright, Jon", "country_associated": "ie", "authorized_access_point": "Wright, Jon, 1971-"} 1 -2023-07-08 08:14:52.887386 2023-07-08 08:14:52.887394 868e1516-ff7a-4807-b272-fbf95f35547e {"md5": "1964f0cb5a96dffea88ba15c2616ff9e", "pid": "1034635476", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1034635476", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1034635476", "source": "GND"}], "variant_name": ["Gutschera, Karl Robert"], "date_of_birth": "1964", "preferred_name": "Gutschera, K. Robert", "country_associated": "gw", "variant_access_point": ["Gutschera, Karl Robert, 1964-"], "authorized_access_point": "Gutschera, K. Robert, 1964-"} 1 -2023-07-08 08:14:52.976182 2023-07-08 08:14:52.976187 d6d8b594-6d3c-4e39-bcb8-caad80e68fa0 {"md5": "592c2b783c60c06a97feca2efe16351c", "pid": "103473262", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/103473262", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/103473262", "source": "GND"}], "variant_name": ["Akın, Gülten", "Gülten Akın"], "date_of_birth": "1933", "preferred_name": "Cankoçak, Gülten Akın", "country_associated": "tu", "variant_access_point": ["Akın, Gülten, 1933-", "Gülten Akın, 1933-"], "authorized_access_point": "Cankoçak, Gülten Akın, 1933-"} 1 -2023-07-08 08:14:53.061674 2023-07-08 08:14:53.061678 6d092790-01d3-4f43-9bf5-d1c86e0458f5 {"md5": "999b7c9d647118a02652220bde3280b8", "pid": "1035444666", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1035444666", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1035444666", "source": "GND"}], "variant_name": ["Caro, José Manuel Sánchez", "Sánchez-Caro, José Manuel"], "date_of_birth": "1940", "preferred_name": "Sánchez Caro, José Manuel", "country_associated": "sp", "variant_access_point": ["Caro, José Manuel Sánchez, 1940-", "Sánchez-Caro, José Manuel, 1940-"], "authorized_access_point": "Sánchez Caro, José Manuel, 1940-"} 1 -2023-07-08 08:14:53.163173 2023-07-08 08:14:53.16318 bb2340dc-e42f-4fee-8b56-1d924a6f896a {"md5": "4d4eb00117bc2b0e1b4fb18a9a1ebc90", "pid": "1035621460", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1035621460", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1035621460", "source": "GND"}], "date_of_birth": "10.04.1525", "date_of_death": "16.03.1577", "preferred_name": "Krasiński, Franciszek", "country_associated": "pl", "authorized_access_point": "Krasiński, Franciszek, 1525-1577", "biographical_information": ["Poln. Bischof von Krakau; Vizekanzler; königl. Sekretär"]} 1 -2023-07-08 08:14:53.277256 2023-07-08 08:14:53.277262 eef0f155-2dc5-42f0-8019-8d5b0d2cdfa7 {"md5": "70ffe20f42a6d01eab375c7241203e0c", "pid": "1035656221", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1035656221", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1035656221", "source": "GND"}], "variant_name": ["Komiya Kōzō", "小宮曠三"], "date_of_birth": "1917", "date_of_death": "1995", "preferred_name": "Komiya, Kōzō", "country_associated": "ja", "variant_access_point": ["Komiya Kōzō, 1917-1995", "小宮曠三, 1917-1995"], "parallel_access_point": ["小宮, 曠三, 1917-1995"], "authorized_access_point": "Komiya, Kōzō, 1917-1995"} 1 -2023-07-08 08:14:53.384686 2023-07-08 08:14:53.384701 2a4710fc-a4cd-40b0-b306-452892f50066 {"md5": "b35f03f7b30a4e21b324acf8c09a7721", "pid": "1035688298", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1035688298", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1035688298", "source": "GND"}], "variant_name": ["Arranz, José Igor Prieto-", "Prieto Arranz, José Igor"], "preferred_name": "Prieto-Arranz, José Igor", "variant_access_point": ["Arranz, José Igor Prieto-", "Prieto Arranz, José Igor"], "authorized_access_point": "Prieto-Arranz, José Igor"} 1 -2023-07-08 08:14:53.50933 2023-07-08 08:14:53.509341 14fc2d2b-902a-4edb-b1a8-5f4fdf8899a1 {"md5": "8f3cb7f0a8d10091a1527a3b344287f1", "pid": "1036111024", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1036111024", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1036111024", "source": "GND"}], "variant_name": ["Grignion, Charles, der Jüngere", "Grignos, C.", "Grignon, C."], "date_of_birth": "1754", "date_of_death": "1804", "preferred_name": "Grignion, Charles", "country_associated": "xxk", "variant_access_point": ["Grignion, Charles, der Jüngere, 1754-1804", "Grignos, C., 1754-1804", "Grignon, C., 1754-1804"], "authorized_access_point": "Grignion, Charles, 1754-1804"} 1 -2023-07-08 08:14:53.617378 2023-07-08 08:14:53.617389 9319b42e-fd3f-4654-ae4c-e4330b112b37 {"md5": "3f66a406ec5beaec6cb7aa5f283c3015", "pid": "1036550141", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1036550141", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1036550141", "source": "GND"}], "variant_name": ["Facultatea de Administraţie şi Afaceri", "Universitatea din Bucureşti. Faculty of Business and Administration", "Universitatea din Bucureşti. Faculty of Administration and Business", "Faculty of Business and Administration", "Faculty of Administration and Business"], "preferred_name": "Universitatea din Bucureşti. Facultatea de Administraţie şi Afaceri", "country_associated": "rm", "variant_access_point": ["Facultatea de Administraţie şi Afaceri. Universitatea din Bucureşti", "Universitatea din Bucureşti. Faculty of Business and Administration", "Universitatea din Bucureşti. Faculty of Administration and Business", "Faculty of Business and Administration. Universitatea din Bucureşti", "Faculty of Administration and Business. Universitatea din Bucureşti"], "authorized_access_point": "Universitatea din Bucureşti. Facultatea de Administraţie şi Afaceri"} 1 -2023-07-08 08:14:53.73576 2023-07-08 08:14:53.735773 0c1ded71-ad44-4e51-99cb-e4383241232b {"md5": "ee7ecef5784b24f16e3503ac696e3d80", "pid": "1037547543", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1037547543", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1037547543", "source": "GND"}], "variant_name": ["Cavelier, Joannes"], "date_of_birth": "1624", "date_of_death": "1701", "preferred_name": "Cavelier, Jean", "country_associated": "fr", "variant_access_point": ["Cavelier, Joannes, 1624-1701"], "authorized_access_point": "Cavelier, Jean, 1624-1701", "biographical_information": ["Königl. Drucker und Drucker der Univ. zu Caen"]} 1 -2023-07-08 08:14:53.844188 2023-07-08 08:14:53.844199 9c713b65-b58d-4562-9a18-b61528844490 {"md5": "d2d4a7b7a8e8c74ea4ff15bf8cb21193", "pid": "1037748980", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1037748980", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1037748980", "source": "GND"}], "date_of_birth": "1961", "preferred_name": "Chen, Jianshe", "country_associated": "xxk", "authorized_access_point": "Chen, Jianshe, 1961-"} 1 -2023-07-08 08:14:53.950807 2023-07-08 08:14:53.950822 0f45d1ff-8daf-4ef3-9bd5-644171a78af7 {"md5": "687d2fbf78d1302a059cad24cb83222f", "pid": "1037788141", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["rus"], "identifier": "http://d-nb.info/gnd/1037788141", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1037788141", "source": "GND"}], "variant_name": ["Lʹvov, S. V.", "Lʹvov, Sergej", "Lʹvov, Sergej V."], "preferred_name": "Lʹvov, Sergej Vladimirovič", "country_associated": "ru", "variant_access_point": ["Lʹvov, S. V.", "Lʹvov, Sergej", "Lʹvov, Sergej V."], "authorized_access_point": "Lʹvov, Sergej Vladimirovič"} 1 -2023-07-08 08:14:54.078284 2023-07-08 08:14:54.078291 128b897a-e95e-4507-9a23-f4740555e44c {"md5": "816170e0778561a9b9ea5d8f5f5f2afc", "pid": "103807349", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/103807349", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/103807349", "source": "GND"}], "date_of_birth": "1917", "date_of_death": "1985", "preferred_name": "Yardumian, Richard", "country_associated": "xxu", "authorized_access_point": "Yardumian, Richard, 1917-1985"} 1 -2023-07-08 08:14:54.29383 2023-07-08 08:14:54.293842 e0262313-820f-488f-b7a0-596dcb52399d {"md5": "8fa28f3896fdc1a90e8449c97a7f1cca", "pid": "103899138", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/103899138", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/103899138", "source": "GND"}], "variant_name": ["Niessen, Charles", "Pohlhaus-Niessen, Carl", "Niessen, Carl", "Nissen, Charly"], "date_of_birth": "22.08.1923", "date_of_death": "21.02.1990", "preferred_name": "Niessen, Charly", "country_associated": "au", "variant_access_point": ["Niessen, Charles, 1923-1990", "Pohlhaus-Niessen, Carl, 1923-1990", "Niessen, Carl, 1923-1990", "Nissen, Charly, 1923-1990"], "parallel_access_point": ["Niessen, Charly, 1923-1990"], "authorized_access_point": "Niessen, Charly, 1923-1990"} 1 -2023-07-08 08:14:54.386704 2023-07-08 08:14:54.386717 6e210246-4fe7-479b-a7b8-f418967a87c7 {"md5": "65a4566c5608a51da59eed2e33cbd6d2", "pid": "104057386", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/104057386", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/104057386", "source": "GND"}], "variant_name": ["Lang, Matthaeus", "Langius, Matthias"], "preferred_name": "Lang, Matthias", "variant_access_point": ["Lang, Matthaeus", "Langius, Matthias"], "authorized_access_point": "Lang, Matthias", "biographical_information": ["Student der Theologie und Metaphysik in Weingarten"]} 1 -2023-07-08 08:14:54.496223 2023-07-08 08:14:54.496229 41c87436-4469-4414-9149-c5e89c8f51b3 {"md5": "6511a6f218c772d79bb4b708d3a189c0", "pid": "1041364962", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1041364962", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1041364962", "source": "GND"}], "variant_name": ["Norris Nicholson, Heather", "Norris, Heather"], "date_of_birth": "1957", "preferred_name": "Nicholson, Heather Norris", "country_associated": "xxk", "variant_access_point": ["Norris Nicholson, Heather, 1957-", "Norris, Heather, 1957-"], "authorized_access_point": "Nicholson, Heather Norris, 1957-", "biographical_information": ["Seit 2012 Senior Research Fellow, Centre for Visual and Oral History Research, an der University of Huddersfield"]} 1 -2023-07-08 08:14:54.610112 2023-07-08 08:14:54.610126 66f4d67c-c5df-4bc2-ab61-f39921547ffa {"md5": "155618a78151d6711fa37616bcd7a4d2", "pid": "1041494114", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1041494114", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1041494114", "source": "GND"}], "preferred_name": "Vereniging Bijstandsbond", "country_associated": "ne", "authorized_access_point": "Vereniging Bijstandsbond. Amsterdam"} 1 -2023-07-08 08:14:54.789266 2023-07-08 08:14:54.789274 c5da78ff-46f7-4ac2-a399-997e5c5f3ead {"md5": "b7ec7453ce4291914cef592956b4e755", "pid": "1041505701", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1041505701", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1041505701", "source": "GND"}], "variant_name": ["Programa de Población", "Universidad de la República. Facultad de Ciencias Sociales. Programa de Población"], "preferred_name": "Universidad de la República. Programa de Población", "country_associated": "uy", "variant_access_point": ["Programa de Población", "Universidad de la República. Facultad de Ciencias Sociales. Programa de Población"], "authorized_access_point": "Universidad de la República. Programa de Población"} 1 -2023-07-08 08:14:54.858348 2023-07-08 08:14:54.858351 9699770e-f809-44d5-ace9-02d3dedf9da5 {"md5": "d523a3c25c0d07458849da6438c6912f", "pid": "1042050643", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1042050643", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1042050643", "source": "GND"}], "date_of_birth": "1947", "preferred_name": "Pándy, Tamás", "country_associated": "hu", "authorized_access_point": "Pándy, Tamás, 1947-"} 1 -2023-07-08 08:14:54.929609 2023-07-08 08:14:54.929613 95329f24-6a30-473d-89ee-4d7b4f3b5a81 {"md5": "4ce4c2fa8a9443bc384107d7a34db77b", "pid": "104240636", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/104240636", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/104240636", "source": "GND"}], "date_of_birth": "1828", "date_of_death": "1830", "preferred_name": "Dupuy, Pierre", "authorized_access_point": "Dupuy, Pierre, 1828-1830"} 1 -2023-07-08 08:14:54.995914 2023-07-08 08:14:54.995921 f453cf8a-40f8-47ac-88de-8f55ec69d3ae {"md5": "81640506b2ba0e4de0f7509a283ae7e3", "pid": "1043162917", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1043162917", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1043162917", "source": "GND"}], "variant_name": ["Gibaja-Gonzales, Manuel", "Gonzales, Manuel Gibaja"], "preferred_name": "Gibaja Gonzales, Manuel", "country_associated": "pe", "variant_access_point": ["Gibaja-Gonzales, Manuel", "Gonzales, Manuel Gibaja"], "authorized_access_point": "Gibaja Gonzales, Manuel"} 1 -2023-07-08 08:14:55.112145 2023-07-08 08:14:55.112158 8d1aca03-ed12-41ef-8e70-45ed8b2487ba {"md5": "32de86232fd9df661f2d98c789f45178", "pid": "1043761047", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1043761047", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1043761047", "source": "GND"}], "variant_name": ["Vietnam. Bộ tài nguyên và môi trường", "Bộ-Tài-Nguyên-Và-Môi-Trường", "Vietnam. Ministry of Natural Resources and Environment", "Vietnam. Ministerium für Naturressourcen und Umwelt", "Ministry of Natural Resources and Environment", "Ministerium für Naturressourcen und Umwelt"], "preferred_name": "Vietnam. Bộ-Tài-Nguyên-Và-Môi-Trường", "country_associated": "vm", "variant_access_point": ["Vietnam. Bộ tài nguyên và môi trường", "Bộ-Tài-Nguyên-Và-Môi-Trường. Vietnam", "Vietnam. Ministry of Natural Resources and Environment", "Vietnam. Ministerium für Naturressourcen und Umwelt", "Ministry of Natural Resources and Environment. Vietnam", "Ministerium für Naturressourcen und Umwelt. Vietnam"], "authorized_access_point": "Vietnam. Bộ-Tài-Nguyên-Và-Môi-Trường"} 1 -2023-07-08 08:14:55.220517 2023-07-08 08:14:55.220522 1882965c-25c6-4cae-a73a-e839cab84f53 {"md5": "a9ca32ce513187f02434e7ce3beb2c28", "pid": "1043881336", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1043881336", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1043881336", "source": "GND"}], "variant_name": ["Song Su", "Song, Su"], "preferred_name": "Su, Song", "country_associated": "cc", "variant_access_point": ["Song Su", "Song, Su"], "authorized_access_point": "Su, Song"} 1 -2023-07-08 08:14:55.326825 2023-07-08 08:14:55.326837 2b45e715-c00e-4341-8dce-b2421f0a9ff4 {"md5": "113948a75adba7e91a30dc7bb54ae763", "pid": "1044246936", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1044246936", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1044246936", "source": "GND"}], "date_of_birth": "1961", "preferred_name": "Zierl, Andreas", "country_associated": "gw", "authorized_access_point": "Zierl, Andreas, 1961-", "biographical_information": ["Deutscher klassischer Philologe"]} 1 -2023-07-08 08:14:55.439 2023-07-08 08:14:55.439012 d2ae1fb4-3f49-48ad-be7c-0a5c9b31e5ef {"md5": "8ef81864bc362c5d2e83a7f512cee43c", "pid": "1044369329", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1044369329", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1044369329", "source": "GND"}], "variant_name": ["De Vriese, Geert"], "date_of_birth": "1962", "preferred_name": "Vriese, Geert de", "country_associated": "be", "variant_access_point": ["De Vriese, Geert, 1962-"], "authorized_access_point": "Vriese, Geert de, 1962-"} 1 -2023-07-08 08:14:55.544464 2023-07-08 08:14:55.544476 1250fa5e-a3e3-439a-bf61-7a6f540d63f8 {"md5": "b09b5c0c6bbcc98805f0a8cc5ab2994d", "pid": "1046664522", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1046664522", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1046664522", "source": "GND"}], "variant_name": ["Onda Riku", "Kumagai, Nanae", "Kumagai Nanae", "恩田陸", "熊谷, 奈苗", "熊谷奈苗"], "date_of_birth": "25.10.1964", "preferred_name": "Onda, Riku", "country_associated": "ja", "variant_access_point": ["Onda Riku, 1964-", "Kumagai, Nanae, 1964-", "Kumagai Nanae, 1964-", "恩田陸, 1964-", "熊谷, 奈苗, 1964-", "熊谷奈苗, 1964-"], "parallel_access_point": ["恩田, 陸, 1964-"], "authorized_access_point": "Onda, Riku, 1964-"} 1 -2023-07-08 08:14:55.778342 2023-07-08 08:14:55.778353 9bf117a8-992e-4e85-a715-71e170414607 {"md5": "b8e46436dc3316c0f5620194d1a993d0", "pid": "1047811014", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1047811014", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1047811014", "source": "GND"}], "variant_name": ["Âşık Furkanî", "Yıldırım, Turan"], "date_of_birth": "1965", "preferred_name": "Furkanî", "country_associated": "tu", "variant_access_point": ["Âşık Furkanî, 1965-", "Yıldırım, Turan, 1965-"], "authorized_access_point": "Furkanî, 1965-"} 1 -2023-07-08 08:14:56.035372 2023-07-08 08:14:56.035378 211c6abe-fd8e-41e2-b8ce-69c1b0f04271 {"md5": "a6093d9480f64e276d43d899a6db78d1", "pid": "1048657442", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1048657442", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1048657442", "source": "GND"}], "date_of_birth": "1980", "preferred_name": "Antoniuk, Mateusz", "country_associated": "pl", "authorized_access_point": "Antoniuk, Mateusz, 1980-"} 1 -2023-07-08 08:15:04.702286 2023-07-08 08:15:04.702293 07dba729-b417-4d0b-bbbd-eb749ec708ca {"md5": "d11decdcaf560cdf53a3b29fc13b110e", "pid": "1077631081", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1077631081", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1077631081", "source": "GND"}], "preferred_name": "Vaccaro, Didier", "authorized_access_point": "Vaccaro, Didier"} 1 -2023-07-08 08:14:56.173378 2023-07-08 08:14:56.173384 2f9d6132-fec4-4a7a-b865-95af760ef019 {"md5": "bd2f91d8291a0f4aa1be71dbe930c8f2", "pid": "1050328639", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1050328639", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1050328639", "source": "GND"}], "preferred_name": "Adams, Seonaidh", "country_associated": "xxk", "authorized_access_point": "Adams, Seonaidh", "biographical_information": ["Gälisch-Lehrer"]} 1 -2023-07-08 08:14:56.3028 2023-07-08 08:14:56.302823 87220153-baab-4fdf-b1a2-a5aaa8814077 {"md5": "6c4e4c33d1fbfb6cabdb224ea53eafa8", "pid": "1050869354", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1050869354", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1050869354", "source": "GND"}], "variant_name": ["Schrijver, Emile", "Schrijver, Emile G.L."], "date_of_birth": "1962", "preferred_name": "Schrijver, Emile G. L.", "country_associated": "ne", "variant_access_point": ["Schrijver, Emile, 1962-", "Schrijver, Emile G.L., 1962-"], "parallel_access_point": ["שרייבר, אמיל, 1962-"], "authorized_access_point": "Schrijver, Emile G. L., 1962-", "biographical_information": ["Generaldirektor des Joods Cultureel Kwartier (JCK) in Amsterdam"]} 1 -2023-07-08 08:14:56.435713 2023-07-08 08:14:56.435727 5782a63b-8759-4e37-a1f6-620d7f5378f9 {"md5": "a0fc6a50f9e4d54455c3bd7384ef2e3b", "pid": "1051111412", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1051111412", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1051111412", "source": "GND"}], "variant_name": ["Op de Beeck, Johan", "De Beeck, Johan op", "OpdeBeeck, Johan"], "date_of_birth": "1957", "preferred_name": "Beeck, Johan op de", "country_associated": "be", "variant_access_point": ["Op de Beeck, Johan, 1957-", "De Beeck, Johan op, 1957-", "OpdeBeeck, Johan, 1957-"], "authorized_access_point": "Beeck, Johan op de, 1957-", "biographical_information": ["Arbeitet für TV Limburg"]} 1 -2023-07-08 08:14:56.808048 2023-07-08 08:14:56.808054 7d230d7f-3739-4564-97fe-58707255e2d6 {"md5": "2be89b36482b45aba959bbda95bcc840", "pid": "1051657490", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1051657490", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1051657490", "source": "GND"}], "preferred_name": "Instituto Nacional de Colonización", "country_associated": "bo", "authorized_access_point": "Instituto Nacional de Colonización"} 1 -2023-07-08 08:14:56.917933 2023-07-08 08:14:56.917945 c7dfc7e3-80fb-4974-978d-a70c1f7f45c6 {"md5": "2017e25d089a4bad638ee9957f5d0b18", "pid": "1051682878", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1051682878", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1051682878", "source": "GND"}], "variant_name": ["Грибков, Виталий Степанович"], "date_of_birth": "1936", "preferred_name": "Gribkov, Vitalij Stepanovič", "variant_access_point": ["Грибков, Виталий Степанович, 1936-"], "authorized_access_point": "Gribkov, Vitalij Stepanovič, 1936-"} 1 -2023-07-08 08:14:57.054986 2023-07-08 08:14:57.054997 b59f836f-b3f9-4b5c-9d84-f5c76fc7e530 {"md5": "a4b3294b5be4d64f2b80532634b6fbc4", "pid": "1051697891", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["rus"], "identifier": "http://d-nb.info/gnd/1051697891", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1051697891", "source": "GND"}], "variant_name": ["Knjazev, B. V.", "Knjazev, Boris V.", "Князев, Борис Владимирович"], "preferred_name": "Knjazev, Boris Vladimirovič", "variant_access_point": ["Knjazev, B. V.", "Knjazev, Boris V.", "Князев, Борис Владимирович"], "authorized_access_point": "Knjazev, Boris Vladimirovič", "biographical_information": ["Sowjet. Soziologe"]} 1 -2023-07-08 08:14:57.176991 2023-07-08 08:14:57.177 4c6381c1-a02d-421d-8b3c-d562fb5738fb {"md5": "9d6c7aff735992e7a98f1eecaddeedfe", "pid": "1051918510", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1051918510", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1051918510", "source": "GND"}], "variant_name": ["Valtýsson, Helgi"], "date_of_birth": "1877", "date_of_death": "1971", "preferred_name": "Helgi Valtýsson", "variant_access_point": ["Valtýsson, Helgi, 1877-1971"], "authorized_access_point": "Helgi Valtýsson, 1877-1971"} 1 -2023-07-08 08:14:57.280933 2023-07-08 08:14:57.280939 4e71c004-e578-4cab-9be2-833b7560a230 {"md5": "2273c82336d100dc27760dec4c23f7fa", "pid": "1052619274", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1052619274", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1052619274", "source": "GND"}], "variant_name": ["MichaelDavide", "MichaelDavide, Fratel", "Semeraro, Michael Davide", "Michaël Davide, Frère"], "date_of_birth": "1964", "preferred_name": "Semeraro, MichaelDavide", "country_associated": "it", "variant_access_point": ["MichaelDavide, 1964-", "MichaelDavide, Fratel, 1964-", "Semeraro, Michael Davide, 1964-", "Michaël Davide, Frère, 1964-"], "authorized_access_point": "Semeraro, MichaelDavide, 1964-", "biographical_information": ["ital. Benediktinermönch seit 1983"]} 1 -2023-07-08 08:14:56.548942 2023-07-08 10:28:28.000013 6933f481-3851-43d7-b91e-d9bb9d0bd71c {"md5": "181822571c21b3c8132971c8838f56ed", "pid": "1051286786", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1051286786", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1051286786", "source": "GND"}], "variant_name": ["Normann, Reinhard v.", "Von Normann, Reinhard"], "date_of_birth": "1938", "preferred_name": "Normann, Reinhard von", "country_associated": "gw", "variant_access_point": ["Normann, Reinhard v., 1938-", "Von Normann, Reinhard, 1938-"], "authorized_access_point": "Normann, Reinhard von, 1938-", "biographical_information": ["Dipl.-Kaufmann, Verf. von Ratgebern, Sachbüchern und Nachschlagewerken"]} 2 -2023-07-08 08:14:57.39008 2023-07-08 08:14:57.390086 ccc83690-a392-4932-85dc-5daa39f9f89a {"md5": "134d3e2060463d41339905aa42a9e3d6", "pid": "1053241011", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1053241011", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1053241011", "source": "GND"}], "date_of_birth": "11.07.1952", "preferred_name": "Syreeni, Kari", "country_associated": "fi", "authorized_access_point": "Syreeni, Kari, 1952-", "biographical_information": ["Finn. Exeget"]} 1 -2023-07-08 08:14:57.633886 2023-07-08 08:14:57.633893 29962fb5-e678-445e-b43c-c3806f266a5c {"md5": "f31ee029adabffb3ef042911b94d4fec", "pid": "1055067094", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1055067094", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1055067094", "source": "GND"}], "variant_name": ["David, ..."], "date_of_birth": "07.02.1938", "preferred_name": "David, Helga", "country_associated": "au", "variant_access_point": ["David, ..., 1938-"], "authorized_access_point": "David, Helga, 1938-", "biographical_information": ["1981 im Ensemble des Württembergischen Staatstheater Stuttgart", "Internet, Anfänge am Volkstheater Wien, lange in Deutschland tätig, 1981 im Ensemble des Württembergischen Staatstheater Stuttgart"]} 1 -2023-07-08 08:14:57.748122 2023-07-08 08:14:57.748135 d3ad7f3b-9719-4248-9804-0b8b16d015cf {"md5": "f78c778a304333dbfe09c73179c27296", "pid": "1055101608", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1055101608", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1055101608", "source": "GND"}], "date_of_birth": "1826", "date_of_death": "1915", "preferred_name": "Abergavenny, William Nevill of", "authorized_access_point": "Abergavenny, William Nevill of, 1826-1915", "biographical_information": ["Marquess"]} 1 -2023-07-08 08:14:57.986212 2023-07-08 08:14:57.98622 a0de6f40-95c1-49fc-a4f4-0e713c5e9727 {"md5": "7166370cfe3eeb77cfb3be65d6a2cae7", "pid": "1055211292", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1055211292", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1055211292", "source": "GND"}], "preferred_name": "Petmecky, Adelheid", "authorized_access_point": "Petmecky, Adelheid", "biographical_information": ["Dr."]} 1 -2023-07-08 08:14:58.231469 2023-07-08 08:14:58.231482 b357d876-44e0-42fd-8964-80dd79cc113b {"md5": "cbb5ccd8a1b17b9fe8b0e786b966cd67", "pid": "1055490760", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1055490760", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1055490760", "source": "GND"}], "variant_name": ["Collins, Joseph B.", "Collins, J. B."], "date_of_birth": "07.09.1897", "date_of_death": "23.01.1975", "preferred_name": "Collins, Joseph Burns", "country_associated": "xxu", "variant_access_point": ["Collins, Joseph B., 1897-1975", "Collins, J. B., 1897-1975"], "authorized_access_point": "Collins, Joseph Burns, 1897-1975", "biographical_information": ["Promotion an der Universität Baltimore"]} 1 -2023-07-08 08:14:58.353553 2023-07-08 08:14:58.353565 952f91af-9fa6-4bf8-b8dd-ca54df116711 {"md5": "b60021b4d909fa0f44d7aee1c664ee9e", "pid": "105550835X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/105550835X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/105550835X", "source": "GND"}], "date_of_death": "1617", "preferred_name": "Cortesi, Cortese", "authorized_access_point": "Cortesi, Cortese, -1617"} 1 -2023-07-08 08:14:58.484743 2023-07-08 08:14:58.484756 ea0c709f-5fbd-4d96-a7a6-bc8dc955c6b7 {"md5": "ab3d59c35de0cfa9ca367e7b3e133fc8", "pid": "1055540210", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1055540210", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1055540210", "source": "GND"}], "variant_name": ["Hirsch, Georg F.", "Hirsch, Georg. Frid. Andr.", "Hirsch, Georgius Fridericus Andreas"], "preferred_name": "Hirsch, Georg Friedrich Andreas", "variant_access_point": ["Hirsch, Georg F.", "Hirsch, Georg. Frid. Andr.", "Hirsch, Georgius Fridericus Andreas"], "authorized_access_point": "Hirsch, Georg Friedrich Andreas", "biographical_information": ["Phil. Resp. in Altdorf"]} 1 -2023-07-08 08:14:57.502953 2023-07-08 10:27:20.855497 cf722dcd-c55e-4145-ac9c-8be7f67dea42 {"md5": "502ed70c16e98fd8a34a05dde3e3fbb0", "pid": "1054143951", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1054143951", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1054143951", "source": "GND"}], "variant_name": ["Lamberton, Charles"], "date_of_birth": "1876", "date_of_death": "1960", "preferred_name": "Lamberton, C.", "country_associated": "fr", "variant_access_point": ["Lamberton, Charles, 1876-1960"], "authorized_access_point": "Lamberton, C., 1876-1960"} 2 -2023-07-08 08:14:58.58332 2023-07-08 10:31:14.834779 bc58dcb8-e046-4b16-aaca-0f5b061646d5 {"md5": "fc587038602e771aa53be1124834096d", "pid": "1055644334", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1055644334", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1055644334", "source": "GND"}], "variant_name": ["Hutton, David Graham"], "date_of_birth": "1904", "date_of_death": "1988", "preferred_name": "Hutton, Graham", "variant_access_point": ["Hutton, David Graham, 1904-1988"], "authorized_access_point": "Hutton, Graham, 1904-1988"} 2 -2023-07-08 08:14:59.097408 2023-07-08 08:14:59.097423 1f289ce9-f4cb-4f31-9bcc-c939e9b4175e {"md5": "2ebfaa6336674cb81e698b43578d8bfb", "pid": "1056074779", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://d-nb.info/gnd/1056074779", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1056074779", "source": "GND"}], "date_of_birth": "1948", "preferred_name": "Venturelli, Aldo", "country_associated": "it", "authorized_access_point": "Venturelli, Aldo, 1948-", "biographical_information": ["Ab 1979 an der Universität Urbino tätig"]} 1 -2023-07-08 08:14:59.197957 2023-07-08 08:14:59.197969 a51b9b54-0929-427a-8e75-40ed5dc705a1 {"md5": "3f7ba425f22f1f731d79072dfe31d97d", "pid": "1056091770", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1056091770", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1056091770", "source": "GND"}], "variant_name": ["Zîv, Meî̕rā"], "preferred_name": "Ziv, Meira", "variant_access_point": ["Zîv, Meî̕rā"], "authorized_access_point": "Ziv, Meira", "biographical_information": ["Hebrew Univ. of Jersalem, Fac. of Agriculture, Rehovot"]} 1 -2023-07-08 08:14:59.301038 2023-07-08 08:14:59.301052 9e0e61fb-d4f5-462a-85c2-fc327e4adedd {"md5": "f96e491db2cc66d8cfaa5c34d3b99d05", "pid": "1056123087", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1056123087", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1056123087", "source": "GND"}], "variant_name": ["Shore, Lee Ward", "Ward Shore, Lee"], "date_of_birth": "1962", "preferred_name": "Peske, Nancy K.", "variant_access_point": ["Shore, Lee Ward, 1962-", "Ward Shore, Lee, 1962-"], "authorized_access_point": "Peske, Nancy K., 1962-"} 1 -2023-07-08 08:14:59.40983 2023-07-08 08:14:59.409841 789f7865-1087-41b0-9f70-20b0ce993613 {"md5": "9f6e6b1097348bbcdc72248cee419c56", "pid": "1056148799", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1056148799", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1056148799", "source": "GND"}], "variant_name": ["Kurauchi Naoko", "Kurauchi, N.", "倉内直子"], "date_of_birth": "1963", "preferred_name": "Kurauchi, Naoko", "country_associated": "ja", "variant_access_point": ["Kurauchi Naoko, 1963-", "Kurauchi, N., 1963-", "倉内直子, 1963-"], "authorized_access_point": "Kurauchi, Naoko, 1963-", "biographical_information": ["Japanische Komponistin"]} 1 -2023-07-08 08:14:59.515443 2023-07-08 08:14:59.515459 2e746458-df03-4708-9774-134d77de59bd {"md5": "207addc78bf1fce0e8fcd28e1d140785", "pid": "1056220570", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1056220570", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1056220570", "source": "GND"}], "preferred_name": "Letelier, Mario", "country_associated": "xxc", "authorized_access_point": "Letelier, Mario", "biographical_information": ["Ing.,Prof. an der Univ. de Santiago de Chile"]} 1 -2023-07-08 08:14:59.634288 2023-07-08 08:14:59.634301 caf9a2b0-e761-4f04-a9f1-310a1aebf52c {"md5": "29aec5cbc0ad1cb981034f5b031282a1", "pid": "1056241462", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1056241462", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1056241462", "source": "GND"}], "preferred_name": "Roland, Alfredo E.", "country_associated": "ag", "authorized_access_point": "Roland, Alfredo E.", "biographical_information": ["Kunsthistoriker"]} 1 -2023-07-08 08:14:59.747564 2023-07-08 08:14:59.747577 c2e23f4c-447c-4c39-b726-3ccbb4e0721a {"md5": "9eaa8ecfd80473887351dcaf3cc7c40a", "pid": "1056400331", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1056400331", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1056400331", "source": "GND"}], "preferred_name": "Cogotti, Marina", "country_associated": "it", "authorized_access_point": "Cogotti, Marina", "biographical_information": ["Mitarbeiterin der Soprintendenza per i Beni Architettonici e Paesaggistici per le province di Roma, Frosinone, Latina, Rieti e Viterbo, Direttore di Villa d'Este, Tivoli"]} 1 -2023-07-08 08:14:58.72129 2023-07-08 10:28:28.996173 f84d5b7e-227e-4bd3-be52-313960f5041c {"md5": "415539987e5fd28b1997456ad18c45db", "pid": "1055753001", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1055753001", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1055753001", "source": "GND"}], "variant_name": ["Mayer, Arno Joseph"], "date_of_birth": "1926", "preferred_name": "Mayer, Arno J.", "country_associated": "lu", "variant_access_point": ["Mayer, Arno Joseph, 1926-"], "authorized_access_point": "Mayer, Arno J., 1926-", "biographical_information": ["Holocaust-Überlebender (1940 in die USA)", "Princeton University (2008)", "Prof. Emeritus of European History"]} 2 -2023-07-08 08:14:58.858508 2023-07-08 10:30:30.812876 fea28ffb-9c7e-45d5-992c-41b25b0ca2e2 {"md5": "26a651b400adb22ce42692c2cca74872", "pid": "1055794662", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1055794662", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1055794662", "source": "GND"}], "variant_name": ["Baldi, M."], "date_of_birth": "1952", "preferred_name": "Baldi, Marialuisa", "variant_access_point": ["Baldi, M., 1952-"], "authorized_access_point": "Baldi, Marialuisa, 1952-", "biographical_information": ["Prof., Univ. Mailand, Dep. Philos., (2000)"]} 2 -2023-07-08 08:14:59.859697 2023-07-08 08:14:59.859708 04b790f7-5239-47d6-8387-7cdc8d497e05 {"md5": "6566782ce58a13f3aa8466f3a1fe07d9", "pid": "1056497572", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1056497572", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1056497572", "source": "GND"}], "preferred_name": "Jarquín Blandón, Simeón", "country_associated": "nq", "authorized_access_point": "Jarquín Blandón, Simeón", "biographical_information": ["Lokalhistoriker: Verf. von. \\"Jinotega : [recopilación histórica]\\", 1. ed., Managua 1991"]} 1 -2023-07-08 08:15:00.246687 2023-07-08 08:15:00.246694 41c199d6-12ee-4d72-9d36-87dd16c9b293 {"md5": "f07c64848e8760fa64dc5cd50222f9e6", "pid": "1056646438", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1056646438", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1056646438", "source": "GND"}], "preferred_name": "Naranjo Porras, Ana Victoria", "country_associated": "cr", "authorized_access_point": "Naranjo Porras, Ana Victoria", "biographical_information": ["Soziologin?"]} 1 -2023-07-08 08:15:00.353328 2023-07-08 08:15:00.353335 1c2da528-16e9-4164-8368-3e1248c8d027 {"md5": "d125712e3809df83d4a616438c2938b4", "pid": "1056682051", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1056682051", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1056682051", "source": "GND"}], "variant_name": ["Prinz, Manfred F."], "preferred_name": "Prinz, Manfred", "country_associated": "gw", "variant_access_point": ["Prinz, Manfred F."], "authorized_access_point": "Prinz, Manfred", "biographical_information": ["Centro Mundo Lusófono, Institut an der Univ. Köln"]} 1 -2023-07-08 08:15:00.597495 2023-07-08 08:15:00.5975 21fc8821-2a7b-4965-bc20-9d2e688681c6 {"md5": "dc9e96e4e122e9e00933bee5977413ad", "pid": "1057605336", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1057605336", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1057605336", "source": "GND"}], "preferred_name": "Zárate Morán, Roberto", "country_associated": "mx", "authorized_access_point": "Zárate Morán, Roberto", "biographical_information": ["Centro INAH Oaxaca"]} 1 -2023-07-08 08:15:00.73013 2023-07-08 08:15:00.730138 76e21c47-700f-4eba-92fa-3789acf151ea {"md5": "ffc9bc24156460e54dc8b657646d958c", "pid": "1057630616", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1057630616", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1057630616", "source": "GND"}], "preferred_name": "Pérez, Silverio", "country_associated": "pr", "authorized_access_point": "Pérez, Silverio", "biographical_information": ["Puertorikan. Schriftsteller und Fernsehjournalist; Chemieingenieur; Komponist; Librettist"]} 1 -2023-07-08 08:15:00.869399 2023-07-08 08:15:00.869404 90faea58-690c-4366-9898-4318aa5bf845 {"md5": "8953193ebd0aaa8058d92f475e7f1225", "pid": "1058848518", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1058848518", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058848518", "source": "GND"}], "date_of_birth": "1988", "preferred_name": "Casanova, Tiago", "country_associated": "po", "authorized_access_point": "Casanova, Tiago, 1988-"} 1 -2023-07-08 08:15:00.979933 2023-07-08 08:15:00.979938 dedd560d-0b81-4edd-86b3-e93ac89a9f4a {"md5": "ebef60811a137555e95fb4ab22562fcf", "pid": "1059467119", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1059467119", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059467119", "source": "GND"}], "variant_name": ["Fink, Elisabeth", "Heinrich, Ilona Elisabeth", "Fink-Heinrich, Ilona Elisabeth"], "date_of_birth": "1981", "preferred_name": "Fink, Ilona Elisabeth", "country_associated": "au", "variant_access_point": ["Fink, Elisabeth, 1981-", "Heinrich, Ilona Elisabeth, 1981-", "Fink-Heinrich, Ilona Elisabeth, 1981-"], "authorized_access_point": "Fink, Ilona Elisabeth, 1981-"} 1 -2023-07-08 08:15:01.053713 2023-07-08 08:15:01.053718 346e2810-1a9d-4bfa-93f3-9d2fe6c04850 {"md5": "8fdbaeca6e35906a8f8f077fc63d932e", "pid": "1060675595", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["chi"], "identifier": "http://d-nb.info/gnd/1060675595", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060675595", "source": "GND"}], "variant_name": ["Gao Chengyuan", "高,成鸢"], "preferred_name": "Gao, Chengyuan", "country_associated": "cc", "variant_access_point": ["Gao Chengyuan", "高,成鸢"], "parallel_access_point": ["Gao Chengyuan", "高成鸢"], "authorized_access_point": "Gao, Chengyuan"} 1 -2023-07-08 08:15:00.116418 2023-07-08 10:30:35.646969 75d4d677-970b-4550-8fcd-4c030f83a463 {"md5": "fe9eb6c3a8283558c6ddd2d04b825494", "pid": "1056604328", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1056604328", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1056604328", "source": "GND"}], "variant_name": ["Zamora, Juan Guerrero"], "date_of_birth": "1927", "date_of_death": "2002", "preferred_name": "Guerrero Zamora, Juan", "country_associated": "sp", "variant_access_point": ["Zamora, Juan Guerrero, 1927-2002"], "authorized_access_point": "Guerrero Zamora, Juan, 1927-2002", "biographical_information": ["Dichter"]} 2 -2023-07-08 08:15:01.20855 2023-07-08 08:15:01.208553 4872d4f8-0b71-4eca-af22-6018a8255e46 {"md5": "05a5e289237488cbfc3b9aabaea3857f", "pid": "1060757729", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1060757729", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060757729", "source": "GND"}], "variant_name": ["Fernandes de Abreu, Madalena"], "preferred_name": "Abreu, Madalena Fernandes de", "variant_access_point": ["Fernandes de Abreu, Madalena"], "authorized_access_point": "Abreu, Madalena Fernandes de"} 1 -2023-07-08 08:15:01.283202 2023-07-08 08:15:01.283206 8b9587cf-6dbd-4154-8183-d364a239721f {"md5": "fb3d345e466f3b45752270384209c1a5", "pid": "1061330117", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1061330117", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1061330117", "source": "GND"}], "date_of_birth": "1964", "preferred_name": "Mißbach, Silvia", "country_associated": "gw", "authorized_access_point": "Mißbach, Silvia, 1964-"} 1 -2023-07-08 08:15:01.450625 2023-07-08 08:15:01.450628 7bebc5da-b0ca-4b2e-848b-721cb779d369 {"md5": "1a47bd544c4a5f7b34baa096889aeb72", "pid": "1061395804", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1061395804", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1061395804", "source": "GND"}], "date_of_birth": "1953", "preferred_name": "Ifland, Benno", "authorized_access_point": "Ifland, Benno, 1953-"} 1 -2023-07-08 08:15:01.522783 2023-07-08 08:15:01.522793 90460129-4178-4b5f-a594-fee81c99e0e9 {"md5": "77b8a8af5a03e9a6c272725117af8960", "pid": "1061433706", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1061433706", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1061433706", "source": "GND"}], "preferred_name": "Wegener, Eva", "authorized_access_point": "Wegener, Eva"} 1 -2023-07-08 08:15:01.596481 2023-07-08 08:15:01.596485 5326de19-ad9e-4379-9123-1053ec4dec7c {"md5": "122033104ce350bebc4574ecf3a08c38", "pid": "1061583368", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1061583368", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1061583368", "source": "GND"}], "preferred_name": "Eche, Lilian", "authorized_access_point": "Eche, Lilian"} 1 -2023-07-08 08:15:01.672544 2023-07-08 08:15:01.672547 32e7935d-0f46-4095-b7c9-2b7c5e7cc467 {"md5": "0e73126b2858dab628411d9fd9cf625c", "pid": "1061592588", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1061592588", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1061592588", "source": "GND"}], "preferred_name": "Heber, Robert", "authorized_access_point": "Heber, Robert"} 1 -2023-07-08 08:15:01.753148 2023-07-08 08:15:01.753157 4a2350f4-695e-473d-900b-d65461130079 {"md5": "08fc3f50c25c4ed9831a1fbfa6b6b434", "pid": "1061744094", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1061744094", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1061744094", "source": "GND"}], "variant_name": ["Boszat, Ingrid"], "date_of_birth": "ca. 20. Jh.", "preferred_name": "Broszat, Ingrid", "variant_access_point": ["Boszat, Ingrid, ca. 20. Jh."], "authorized_access_point": "Broszat, Ingrid, ca. 20. Jh."} 1 -2023-07-08 08:15:01.855162 2023-07-08 08:15:01.855171 441a935b-ad2d-40c4-bf51-3a8e7490d610 {"md5": "b4e06d11b6bf96e7548f23c03e9d87e5", "pid": "1061835065", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1061835065", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1061835065", "source": "GND"}], "preferred_name": "Ormières, Jean-Luc", "authorized_access_point": "Ormières, Jean-Luc"} 1 -2023-07-08 08:15:01.926399 2023-07-08 08:15:01.926403 9159e40b-ef77-41bc-ada9-dd967d863971 {"md5": "c6dc27a4d4e80b0af177e9133da33805", "pid": "1061837513", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1061837513", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1061837513", "source": "GND"}], "preferred_name": "Kovacevic, Jozo", "authorized_access_point": "Kovacevic, Jozo"} 1 -2023-07-08 08:15:02.005131 2023-07-08 08:15:02.005139 8d7fb13f-3fad-4932-96b1-e22bda747c86 {"md5": "55bfae0a4626c8602cbb12b6492704d6", "pid": "1061999920", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1061999920", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1061999920", "source": "GND"}], "preferred_name": "Bolton, Nick", "authorized_access_point": "Bolton, Nick"} 1 -2023-07-08 08:15:02.092459 2023-07-08 08:15:02.092464 b0bd109c-97af-40ac-a1ec-0db2538e96a1 {"md5": "3022929347ecdf223f3caa85beec2390", "pid": "1062371135", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1062371135", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1062371135", "source": "GND"}], "preferred_name": "Fairley, Wade", "authorized_access_point": "Fairley, Wade"} 1 -2023-07-08 08:15:02.185209 2023-07-08 08:15:02.185213 67eb9a75-2ab0-4cc5-b299-11e52533a7b3 {"md5": "d125d444004d70e5a1afc074dd021061", "pid": "106243756X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/106243756X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/106243756X", "source": "GND"}], "date_of_birth": "27.06.1954", "preferred_name": "Zagaria, Anita", "country_associated": "it", "authorized_access_point": "Zagaria, Anita, 1954-"} 1 -2023-07-08 08:15:01.369427 2023-07-08 10:26:50.156724 193cf75b-cd75-4d74-9380-d4ffc6101c01 {"md5": "dae057569594ac0db5d6c34a259b1abf", "pid": "106136769X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/106136769X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/106136769X", "source": "GND"}], "preferred_name": "Renaud, Christian", "authorized_access_point": "Renaud, Christian"} 2 -2023-07-08 08:15:02.255508 2023-07-08 08:15:02.255516 184d485f-71f3-488f-9645-46c51b0c38e0 {"md5": "7dcd46e02b8968f6afe8bcf16fa8421d", "pid": "1062692519", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1062692519", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1062692519", "source": "GND"}], "variant_name": ["McKee Stapleton, Anne"], "preferred_name": "Stapleton, Anne McKee", "country_associated": "xxu", "variant_access_point": ["McKee Stapleton, Anne"], "authorized_access_point": "Stapleton, Anne McKee"} 1 -2023-07-08 08:15:02.323544 2023-07-08 08:15:02.32355 824c705c-aafe-4e2c-b2aa-d582be86f8d0 {"md5": "9ec4f5adc4b460052b62b4587c10d0d3", "pid": "1063310490", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1063310490", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1063310490", "source": "GND"}], "variant_name": ["Magid, Moisej", "Magid, Michail Šolomovič", "Magid, Michail"], "date_of_birth": "1910", "date_of_death": "1965", "preferred_name": "Magid, Moisej Šolomovič", "country_associated": "ru", "variant_access_point": ["Magid, Moisej, 1910-1965", "Magid, Michail Šolomovič, 1910-1965", "Magid, Michail, 1910-1965"], "authorized_access_point": "Magid, Moisej Šolomovič, 1910-1965"} 1 -2023-07-08 08:15:02.393843 2023-07-08 08:15:02.393846 df4383c3-c87f-44f6-ac36-da62deda7b6a {"md5": "2fb460fd570651c84312ee5db89b4519", "pid": "1063319633", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1063319633", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1063319633", "source": "GND"}], "date_of_birth": "21.04.1845", "date_of_death": "31.10.1904", "preferred_name": "Wanderley, Germano", "country_associated": "au", "authorized_access_point": "Wanderley, Germano, 1845-1904"} 1 -2023-07-08 08:15:02.540444 2023-07-08 08:15:02.540449 f9931720-8ab6-4836-b99e-14dd5fdf7dc5 {"md5": "c59bf8d4281a275c510b67a8aee6ce6f", "pid": "1064701922", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1064701922", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1064701922", "source": "GND"}], "variant_name": ["Zell, Johann D.", "Zell, Johann A.", "Zell, Johann Augustin Daniel", "Zell, Johannes A.", "Zell, Johannes D.", "Zell, Johannes Daniel Augustinus"], "preferred_name": "Zell, Johann Daniel Augustin", "country_associated": "gw", "variant_access_point": ["Zell, Johann D.", "Zell, Johann A.", "Zell, Johann Augustin Daniel", "Zell, Johannes A.", "Zell, Johannes D.", "Zell, Johannes Daniel Augustinus"], "authorized_access_point": "Zell, Johann Daniel Augustin", "biographical_information": ["aus Biberach; Student an der Universität Tübingen"]} 1 -2023-07-08 08:15:02.610065 2023-07-08 08:15:02.610068 90fc1bfd-0cef-464f-9822-3931b4011b10 {"md5": "702fe602f515db2a39726241f51f07b2", "pid": "1064912958", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1064912958", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1064912958", "source": "GND"}], "variant_name": ["Klinkhardt und Biermann"], "preferred_name": "Klinkhardt & Biermann UG", "country_associated": "gw", "variant_access_point": ["Klinkhardt und Biermann"], "authorized_access_point": "Klinkhardt & Biermann UG"} 1 -2023-07-08 08:15:02.680742 2023-07-08 08:15:02.680748 8a5ae141-40d9-4ae8-9684-f08a67e2593f {"md5": "ea1e83246669f6ff613f20694b0870e8", "pid": "1065743769", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1065743769", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1065743769", "source": "GND"}], "variant_name": ["Ciecieląg, Jerzy Janusz"], "date_of_birth": "1971", "preferred_name": "Ciecieląg, Jerzy", "country_associated": "pl", "variant_access_point": ["Ciecieląg, Jerzy Janusz, 1971-"], "authorized_access_point": "Ciecieląg, Jerzy, 1971-"} 1 -2023-07-08 08:15:02.747922 2023-07-08 08:15:02.747927 cab35400-3ed9-4fd1-bbff-5ad3bc23641c {"md5": "8935c0dc292977c746f7b686c47b1454", "pid": "1065866356", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1065866356", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1065866356", "source": "GND"}], "variant_name": ["Heinz-Hubert Cloeren CTV"], "preferred_name": "CTV", "variant_access_point": ["Heinz-Hubert Cloeren CTV"], "authorized_access_point": "CTV"} 1 -2023-07-08 08:15:02.818655 2023-07-08 08:15:02.818659 7a713bb8-ffa4-4490-8c92-2497d05101a4 {"md5": "cd154f63ff7000521dae97f7240d4c09", "pid": "1067106146", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1067106146", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1067106146", "source": "GND"}], "variant_name": ["Hirzel, S."], "preferred_name": "Hirzel, Simon", "country_associated": "gw", "variant_access_point": ["Hirzel, S."], "authorized_access_point": "Hirzel, Simon", "biographical_information": ["seit August 2008 wissenschaftlicher Mitarbeiter am Fraunhofer-Institut für System- und Innovationsforschung ISI im Competence Center Energietechnologien und Energiesysteme (ehemals Energiepolitik und Energiesysteme), Karlsruhe; Diss. RWTH Aachen, Fakultät für Wirtschaftswissenschaften. 2014"]} 1 -2023-07-08 08:15:02.888815 2023-07-08 08:15:02.888822 4ff1b6f9-8148-438b-97e2-87b7935d9c87 {"md5": "6e4d74e5a9b18afa5099c100d3749963", "pid": "1067168370", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1067168370", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1067168370", "source": "GND"}], "variant_name": ["Masel, K. B."], "preferred_name": "Mazel', K. B.", "variant_access_point": ["Masel, K. B."], "authorized_access_point": "Mazel', K. B."} 1 -2023-07-08 08:15:09.368402 2023-07-08 08:15:09.368411 2380a70d-a6f4-4c04-b9c7-5512954b22af {"md5": "565084739be1f1f07ceac0dc20c8fc9d", "pid": "1085825302", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1085825302", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1085825302", "source": "GND"}], "preferred_name": "Centro Cultural/Arte Contemporáneo", "authorized_access_point": "Centro Cultural/Arte Contemporáneo. México"} 1 -2023-07-08 08:15:02.959329 2023-07-08 08:15:02.959332 8f91be19-84af-4a69-9c53-6a08204835ac {"md5": "c7895e8309ff96b1a8d56bcf648af922", "pid": "1067217495", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1067217495", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1067217495", "source": "GND"}], "variant_name": ["O.R.P.A.", "Organización del Pueblo en Armas", "Organización Revolucionaria del Pueblo en Armas", "Organization of the People in Arms"], "preferred_name": "ORPA", "country_associated": "gt", "date_of_termination": "1982", "variant_access_point": ["O.R.P.A.", "Organización del Pueblo en Armas", "Organización Revolucionaria del Pueblo en Armas", "Organization of the People in Arms"], "date_of_establishment": "1979", "authorized_access_point": "ORPA"} 1 -2023-07-08 08:15:03.027586 2023-07-08 08:15:03.027589 7a0d687a-ba96-4e97-bbaa-3cb6c3d76dd3 {"md5": "beb41144d8e56fe44a267a8fed425ae5", "pid": "1067908366", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1067908366", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1067908366", "source": "GND"}], "variant_name": ["Vatsa, Rakesh"], "preferred_name": "Vatsa, Rakeśa", "variant_access_point": ["Vatsa, Rakesh"], "authorized_access_point": "Vatsa, Rakeśa"} 1 -2023-07-08 08:15:03.197558 2023-07-08 08:15:03.197563 c8fa1dd4-961d-44de-824d-a1d935322a37 {"md5": "804fd68fccfc24519735345f3391bd92", "pid": "1068089962", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1068089962", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1068089962", "source": "GND"}], "date_of_birth": "03.12.1952", "preferred_name": "Remmel, Johannes", "country_associated": "gw", "authorized_access_point": "Remmel, Johannes, 1952-", "biographical_information": ["Wissenschaftlicher Mitarbeiter am Institut für Öffentliches Recht der Philipps-Universität Marburg bis 30.9.1980. - Seit 1.10.1980 Richter am Amtsgericht in Marburg"]} 1 -2023-07-08 08:15:03.30509 2023-07-08 08:15:03.305095 3306e557-f3e8-48fb-98dc-57da832d7a79 {"md5": "2e53c797c1c50fc0a3dc51a65d809cc7", "pid": "1071439871", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1071439871", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1071439871", "source": "GND"}], "variant_name": ["Tosi, Mariachiara", "Tosi, Maria-Chiara", "Tosi, M. Chiara"], "preferred_name": "Tosi, Maria Chiara", "country_associated": "it", "variant_access_point": ["Tosi, Mariachiara", "Tosi, Maria-Chiara", "Tosi, M. Chiara"], "authorized_access_point": "Tosi, Maria Chiara"} 1 -2023-07-08 08:15:03.403865 2023-07-08 08:15:03.40387 522db6e5-416c-4024-8ec7-4f5737ee42b1 {"md5": "a31e811d41991ee4dcd374ff980f0b87", "pid": "107289806", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/107289806", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/107289806", "source": "GND"}], "date_of_birth": "1942", "preferred_name": "Sandweg, Rainer", "country_associated": "gw", "authorized_access_point": "Sandweg, Rainer, 1942-", "biographical_information": ["Facharzt für Neurologie und Psychiatrie, Facharzt für psychotherapeutische Medizin, Psychoanalytiker, Lehranalytiker"]} 1 -2023-07-08 08:15:03.474144 2023-07-08 08:15:03.474149 20912cb5-8bc3-40fc-8dd9-6d4e09af8e76 {"md5": "e474406ef3d2359fa27eba8006987429", "pid": "1072904977", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1072904977", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1072904977", "source": "GND"}], "preferred_name": "K. F. Glaesser, Kunstverlag", "country_associated": "gw", "date_of_termination": "1890", "date_of_establishment": "1888", "authorized_access_point": "K. F. Glaesser, Kunstverlag. Stuttgart", "biographical_information": ["Gründung: 01.07.1888", "Neuer Firmenname ab 01.08.1890"]} 1 -2023-07-08 08:15:03.544132 2023-07-08 08:15:03.544135 e1b870b9-4f5e-4adf-8440-bf8ee50f4e4c {"md5": "2e6fbdc6c7954721969a4d58a926eaf4", "pid": "1072916436", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1072916436", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1072916436", "source": "GND"}], "preferred_name": "B. Wepf & Co (vormals Louis Jenke's Buchhandlung)", "country_associated": "sz", "date_of_establishment": "1902", "authorized_access_point": "B. Wepf & Co (vormals Louis Jenke's Buchhandlung). Basel", "biographical_information": ["Kauf: 01.10.1902"]} 1 -2023-07-08 08:15:03.616985 2023-07-08 08:15:03.616996 face0f4a-4ac3-47a6-8bca-565cfd96109e {"md5": "806a61fa79e65e6386182d2aa4db6fd4", "pid": "1072932296", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1072932296", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1072932296", "source": "GND"}], "variant_name": ["Klüger, Langbein und"], "preferred_name": "Langbein & Klüger", "country_associated": "gw", "date_of_termination": "1805", "variant_access_point": ["Klüger, Langbein und. Arnstadt"], "authorized_access_point": "Langbein & Klüger. Arnstadt"} 1 -2023-07-08 08:15:03.690145 2023-07-08 08:15:03.690152 b48852f7-65c9-4c0b-a3f7-7661e7a66b6d {"md5": "9b16dcbf78b87425a8a0ee326e2f8c84", "pid": "1072961296", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1072961296", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1072961296", "source": "GND"}], "preferred_name": "Evangelischer Bücher-Verein in Berlin. Sortimentsbuchhandlung", "country_associated": "gw", "date_of_termination": "17.10.1889", "date_of_establishment": "06.01.1885", "authorized_access_point": "Evangelischer Bücher-Verein in Berlin. Sortimentsbuchhandlung", "biographical_information": ["Geschäftsführer: Tapp, Hermann [-1885-] (Id: p3920) (06.01.1885-). - Quelle: B2171a"]} 1 -2023-07-08 08:15:03.770491 2023-07-08 08:15:03.770494 fa0ce1e2-867f-4c61-bb3a-ddfd689b47cf {"md5": "52e5645b679bf03eb71dbc6334b1143b", "pid": "1073022544", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1073022544", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1073022544", "source": "GND"}], "preferred_name": "Richard Gensel", "country_associated": "gw", "date_of_establishment": "1892", "authorized_access_point": "Richard Gensel. Zschopau", "biographical_information": ["Kauf: 01.01.1892"]} 1 -2023-07-08 08:15:03.856103 2023-07-08 08:15:03.856108 1522702b-5125-4ee9-9b75-476b3bb13e1d {"md5": "29d549c08eb599b793fcb15f3539b691", "pid": "1073026825", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1073026825", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1073026825", "source": "GND"}], "preferred_name": "Max Schleppegrell", "country_associated": "gw", "date_of_establishment": "1943", "authorized_access_point": "Max Schleppegrell. Leipzig", "biographical_information": ["Firmenänderung: 1943 (Verlagsveränderungen im deutschsprachigen Buchhandel 1942-1963)"]} 1 -2023-07-08 08:15:03.938143 2023-07-08 08:15:03.938148 5677ee5a-337a-4fcd-8b81-ac6ac3885aeb {"md5": "191af4f1d724e72468afaaf59db2bc8f", "pid": "1073045927", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1073045927", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1073045927", "source": "GND"}], "preferred_name": "J. P. Setzer'sche Verlags- und Sortiments-Buchhandlung", "country_associated": "gw", "date_of_establishment": "1844", "authorized_access_point": "J. P. Setzer'sche Verlags- und Sortiments-Buchhandlung. Rottweil", "biographical_information": ["Kauf: 10.07.1844"]} 1 -2023-07-08 08:15:04.038237 2023-07-08 08:15:04.038243 192b4fb1-2af5-40ba-b05d-fb203478e0e3 {"md5": "0379a94f3077a98bb20f753f68ad4c4e", "pid": "1073087123", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1073087123", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1073087123", "source": "GND"}], "preferred_name": "Th. van der Smissen", "country_associated": "gw", "date_of_termination": "1855", "date_of_establishment": "1854", "authorized_access_point": "Th. van der Smissen. Flensburg", "biographical_information": ["Gründung: 05.1854 (Adressbuch 1855)", "Verkauf: 31.12.1855"]} 1 -2023-07-08 08:15:04.133607 2023-07-08 08:15:04.133617 360aceb1-e8c1-463c-91f1-485ab6db9e08 {"md5": "b045eaa449f30d0077e25b9de64ba2ec", "pid": "107371876X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/107371876X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/107371876X", "source": "GND"}], "variant_name": ["Bethge, Clemens Wolfgang", "Bethge, Clemens"], "date_of_birth": "1979", "preferred_name": "Bethge, Clemens W.", "country_associated": "gw", "variant_access_point": ["Bethge, Clemens Wolfgang, 1979-", "Bethge, Clemens, 1979-"], "authorized_access_point": "Bethge, Clemens W., 1979-", "biographical_information": ["Diss. Universität Tübingen, Evangelisch-Theologische Fakultät"]} 1 -2023-07-08 08:15:04.205675 2023-07-08 08:15:04.205678 4e876013-3e80-460d-a9df-b8ed701d64f0 {"md5": "5d46f71001ae6c90c728182da83d21a6", "pid": "107495839X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/107495839X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/107495839X", "source": "GND"}], "variant_name": ["Turner, R. J. W."], "preferred_name": "Turner, Robert J. W.", "variant_access_point": ["Turner, R. J. W."], "authorized_access_point": "Turner, Robert J. W."} 1 -2023-07-08 08:15:04.282066 2023-07-08 08:15:04.282077 00a48491-851e-4639-8cb0-d381081d78b1 {"md5": "d233b4e05b9630798350eb3dab1a3c45", "pid": "1076838170", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1076838170", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1076838170", "source": "GND"}], "variant_name": ["Zencker, Johann Christian", "Zancker, Johann Christian"], "preferred_name": "Zäncker, Johann Christian", "country_associated": "gw", "variant_access_point": ["Zencker, Johann Christian", "Zancker, Johann Christian"], "authorized_access_point": "Zäncker, Johann Christian"} 1 -2023-07-08 08:15:04.365283 2023-07-08 08:15:04.365286 cd0ba182-1dab-45b4-b962-c48765292cdb {"md5": "f5dc99c7c4cea9e623de61ea554b2afe", "pid": "1076933726", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1076933726", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1076933726", "source": "GND"}], "preferred_name": "Kapuscinski, Jonas", "authorized_access_point": "Kapuscinski, Jonas"} 1 -2023-07-08 08:15:04.434718 2023-07-08 08:15:04.434722 20ca617a-a36b-4a5f-90c2-e2e7b0327cda {"md5": "0ef24defa48a8053348ea7190a8ebd0d", "pid": "1077345259", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1077345259", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1077345259", "source": "GND"}], "variant_name": ["Direktion der Bereitschaftspolizei Rheinland-Pfalz"], "preferred_name": "Bereitschaftspolizei Rheinland-Pfalz. Direktion", "country_associated": "gw", "variant_access_point": ["Direktion der Bereitschaftspolizei Rheinland-Pfalz"], "authorized_access_point": "Bereitschaftspolizei Rheinland-Pfalz. Direktion"} 1 -2023-07-08 08:15:04.605312 2023-07-08 08:15:04.605317 da01457b-e3bd-4ad5-8639-cf15d366383f {"md5": "b786b877b321f2fdaf68ded381c7adac", "pid": "1077612869", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1077612869", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1077612869", "source": "GND"}], "variant_name": ["Krustala-Xanthu, Sebastē", "Xanthu, Sebastē Krustala-"], "preferred_name": "Xanthu, Sebastē", "country_associated": "gr", "variant_access_point": ["Krustala-Xanthu, Sebastē", "Xanthu, Sebastē Krustala-"], "parallel_access_point": ["Ξάνθου, Σεβαστή"], "authorized_access_point": "Xanthu, Sebastē"} 1 -2023-07-08 08:15:04.786522 2023-07-08 08:15:04.786525 a532d167-49c3-463c-832d-3d915ece8b0b {"md5": "17a72edf716da0cf23690806b8ed8ddb", "pid": "1077666799", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1077666799", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1077666799", "source": "GND"}], "variant_name": ["Fachausschuß Chemische Verfahrenstechnik und Apparatewesen"], "preferred_name": "Kammer der Technik. Fachausschuß Chemische Verfahrenstechnik und Apparatewesen", "variant_access_point": ["Fachausschuß Chemische Verfahrenstechnik und Apparatewesen"], "authorized_access_point": "Kammer der Technik. Fachausschuß Chemische Verfahrenstechnik und Apparatewesen"} 1 -2023-07-08 08:15:04.865201 2023-07-08 08:15:04.865212 a1f9ce86-3d27-4573-974d-ec5e6fa68ab0 {"md5": "38260a44cf0c4ebbe0125f72b2ad4b06", "pid": "1077833237", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1077833237", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1077833237", "source": "GND"}], "variant_name": ["Greenall, Annjo Klungervik", "Klungervik Greenall, Annjo"], "preferred_name": "Greenall, Annjo K.", "country_associated": "no", "variant_access_point": ["Greenall, Annjo Klungervik", "Klungervik Greenall, Annjo"], "authorized_access_point": "Greenall, Annjo K."} 1 -2023-07-08 08:15:05.058844 2023-07-08 08:15:05.058851 b8ad12dd-35fc-4c46-9cff-89835cff24a6 {"md5": "3b9c52e4c390ca09bbe532d00a585dda", "pid": "1077979355", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1077979355", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1077979355", "source": "GND"}], "preferred_name": "Orfanidis, Jordanis", "authorized_access_point": "Orfanidis, Jordanis"} 1 -2023-07-08 08:15:05.153397 2023-07-08 08:15:05.153401 56e7cf4c-9c98-4311-8131-ee4015895c81 {"md5": "efae9475a65cbf0d82054f351430823e", "pid": "1078040133", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1078040133", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1078040133", "source": "GND"}], "preferred_name": "Schütz, Detta Sophie", "country_associated": "gw", "authorized_access_point": "Schütz, Detta Sophie", "biographical_information": ["Dissertation Humanwissenschaftliche Fakultät der Universität Köln 2015; Vertretungsprofessur Inklusive Bildung und Kommunikationsbeeinträchtigungen, Institut für Sonder- und Rehabilitationspädagogik, Universität Oldenburg"]} 1 -2023-07-08 08:15:05.257482 2023-07-08 08:15:05.257489 b4e4ee00-9454-402f-bc37-2eddf2cd8e4a {"md5": "b6e453b9c0d9c4d6fdf5edd19b115241", "pid": "107808355X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/107808355X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/107808355X", "source": "GND"}], "preferred_name": "Oppel, Gottlieb", "country_associated": "gw", "authorized_access_point": "Oppel, Gottlieb", "biographical_information": ["1829 an der Akademie der Bildenden Künste München"]} 1 -2023-07-08 08:15:05.35325 2023-07-08 08:15:05.353255 1c045842-0e42-4229-9ce7-85efef00acdc {"md5": "390450ba62cfc8fd2f2dbf17228be507", "pid": "107817864X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/107817864X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/107817864X", "source": "GND"}], "variant_name": ["Congresso internazionale di Numismatica, 15.", "XV Congresso Internazionale di Numismatica, Taormina, 21 - 25 settembre 2015"], "preferred_name": "International Congress of Numismatics, 15.", "country_associated": "it", "variant_access_point": ["Congresso internazionale di Numismatica, 15., 2015, Taormina", "XV Congresso Internazionale di Numismatica, Taormina, 21 - 25 settembre 2015"], "authorized_access_point": "International Congress of Numismatics, 15., 2015, Taormina"} 1 -2023-07-08 08:15:05.426607 2023-07-08 08:15:05.426609 efeb94ec-392a-45f9-ab6c-3311d45cebaf {"md5": "df5a16105d1289c31e48cd53cb1ac565", "pid": "1078249024", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1078249024", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1078249024", "source": "GND"}], "variant_name": ["Sankt Sebastianus Schützengesellschaft 1881 e.V. Klotten", "Sankt Sebastian Schützengesellschaft 1881 e.V. Klotten"], "preferred_name": "St. Sebastian Schützengesellschaft 1881 e.V. Klotten", "country_associated": "gw", "variant_access_point": ["Sankt Sebastianus Schützengesellschaft 1881 e.V. Klotten", "Sankt Sebastian Schützengesellschaft 1881 e.V. Klotten"], "authorized_access_point": "St. Sebastian Schützengesellschaft 1881 e.V. Klotten"} 1 -2023-07-08 08:15:05.504945 2023-07-08 08:15:05.50495 f4ec5eb6-50d7-4445-b296-7cba9ebc631c {"md5": "1af8d642f3305467f48f1633e91199cc", "pid": "1078758360", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1078758360", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1078758360", "source": "GND"}], "preferred_name": "Dağarslani, Can", "country_associated": "tu", "authorized_access_point": "Dağarslani, Can", "biographical_information": ["Absolventin der Mimar Sinan University of Fine Art, Istanbul, 2006; Studium der Architektur"]} 1 -2023-07-08 08:15:05.595754 2023-07-08 08:15:05.59576 2c90bbe2-bbee-4f85-af39-7302920cf727 {"md5": "283e97b628b38a749a320459ff11a236", "pid": "107916894", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/107916894", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/107916894", "source": "GND"}], "date_of_birth": "1910", "date_of_death": "1975", "preferred_name": "Senft, Albin-Friedrich", "country_associated": "gw", "authorized_access_point": "Senft, Albin-Friedrich, 1910-1975", "biographical_information": ["Dt. Wirtschaftswissenschaftler, Theologe, 1963-75 Direktor des Studienseminars Neuburg a.d. Donau"]} 1 -2023-07-08 08:15:05.691024 2023-07-08 08:15:05.691031 d78b5dad-e633-43e3-826d-347f9e7e6f43 {"md5": "ca1b24726444844b128abe171592578e", "pid": "1079291768", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1079291768", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1079291768", "source": "GND"}], "variant_name": ["Schleicher, Johannes"], "preferred_name": "Schleicher, Johann", "variant_access_point": ["Schleicher, Johannes"], "authorized_access_point": "Schleicher, Johann", "biographical_information": ["Student an der Philosopischen Fakultät der Universität Tübingen; Erlangte 1625 den Grad eines Magisters"]} 1 -2023-07-08 08:15:05.785441 2023-07-08 08:15:05.785446 b7112281-a5c8-40f9-bd31-1938e6838458 {"md5": "39806dfaee1348f4881e4ac8029a3645", "pid": "1079304231", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1079304231", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1079304231", "source": "GND"}], "variant_name": ["Efrussi, Tatiana Aleksandrovna"], "date_of_birth": "1988", "preferred_name": "Efrussi, Tatiana", "country_associated": "ru", "variant_access_point": ["Efrussi, Tatiana Aleksandrovna, 1988-"], "authorized_access_point": "Efrussi, Tatiana, 1988-"} 1 -2023-07-08 08:15:05.873174 2023-07-08 08:15:05.87318 0a758e98-c107-49d6-a38f-9c03affda564 {"md5": "8c67716e28c7b78df03dc32318913f68", "pid": "1079330844", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1079330844", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1079330844", "source": "GND"}], "variant_name": ["Sangyon, Kim", "Kim Sangyong", "Kim, Sang Yong"], "preferred_name": "Kim, Sangyong", "country_associated": "ko", "variant_access_point": ["Sangyon, Kim", "Kim Sangyong", "Kim, Sang Yong"], "authorized_access_point": "Kim, Sangyong"} 1 -2023-07-08 08:15:05.942113 2023-07-08 08:15:05.942117 c7354ef4-671b-4e63-9948-0de7ea385529 {"md5": "f65b0153f00d3d36b8d18567e38c8ecd", "pid": "1079390413", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1079390413", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1079390413", "source": "GND"}], "date_of_birth": "1867", "preferred_name": "Sporrer, Alphons", "country_associated": "gw", "authorized_access_point": "Sporrer, Alphons, 1867-"} 1 -2023-07-08 08:15:06.041246 2023-07-08 08:15:06.041253 a6b1c1d0-bfb5-477d-84f9-11d0c9438c5a {"md5": "2f07191d0ee0e3f425a64d73a52ea374", "pid": "1079392009", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1079392009", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1079392009", "source": "GND"}], "date_of_birth": "1882", "preferred_name": "Ssemiczky, Gustav von", "country_associated": "gw", "authorized_access_point": "Ssemiczky, Gustav von, 1882-"} 1 -2023-07-08 08:15:06.141877 2023-07-08 08:15:06.141883 b854ecca-92f0-416b-a67c-55624f9e66d0 {"md5": "711bb6eea0ca21d8dc7b09f6f5368711", "pid": "1079423273", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1079423273", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1079423273", "source": "GND"}], "variant_name": ["Luspay, Edmund"], "date_of_birth": "1877", "preferred_name": "Luspay, Ödön", "country_associated": "hu", "variant_access_point": ["Luspay, Edmund, 1877-"], "authorized_access_point": "Luspay, Ödön, 1877-", "biographical_information": ["1898 an der Akademie der Bildenden Künste München"]} 1 -2023-07-08 08:15:06.227405 2023-07-08 08:15:06.22741 6ac31446-b134-40a0-822b-7f4cd118c6c5 {"md5": "df165bf5ebc7628bfa1a2a7a3f31b74a", "pid": "1079507582", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1079507582", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1079507582", "source": "GND"}], "variant_name": ["3rd Luxembourg Workshop on Space and Satellite Communication Law"], "preferred_name": "Luxembourg Workshop on Space and Satellite Communication Law, 3.", "country_associated": "lu", "variant_access_point": ["3rd Luxembourg Workshop on Space and Satellite Communication Law"], "authorized_access_point": "Luxembourg Workshop on Space and Satellite Communication Law, 3., 2014, Luxemburg, Stadt"} 1 -2023-07-08 08:15:06.305604 2023-07-08 08:15:06.305608 b787cc4c-0b87-49d2-b0e9-95a369e54e8d {"md5": "0c7919cd04bdf4c6deb8ba53b0b306b1", "pid": "107956215X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/107956215X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/107956215X", "source": "GND"}], "variant_name": ["Fey, Johann Jakob"], "preferred_name": "Fey, Johann Jacob", "country_associated": "gw", "variant_access_point": ["Fey, Johann Jakob"], "authorized_access_point": "Fey, Johann Jacob", "biographical_information": ["Miteigentümer der Lithographischen Anstalt, Druckerei und Buchbinderei \\"Gebrüder Fey\\", die 1874 begründet wurde"]} 1 -2023-07-08 08:15:06.412329 2023-07-08 08:15:06.412336 3505d1da-9b65-4d3a-8206-fcfc3023691d {"md5": "7a462ecd89d56cf9406c24c04dda8fa0", "pid": "1079687157", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1079687157", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1079687157", "source": "GND"}], "date_of_birth": "1988", "preferred_name": "Varlet, Anastasia", "country_associated": "fr", "authorized_access_point": "Varlet, Anastasia, 1988-", "biographical_information": ["Diss. ETH Zürich, 2015"]} 1 -2023-07-08 08:15:06.49659 2023-07-08 08:15:06.496599 6db131f1-0887-49bf-ba93-2233231b1038 {"md5": "2f2a1ac8be2b92490ebb3e233b4860bb", "pid": "1079982175", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1079982175", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1079982175", "source": "GND"}], "date_of_birth": "1976", "preferred_name": "Bruns, Thomas", "country_associated": "gw", "authorized_access_point": "Bruns, Thomas, 1976-"} 1 -2023-07-08 08:15:06.685235 2023-07-08 08:15:06.685243 feb3c5f3-adee-4239-839c-cec7672d85dc {"md5": "edd8e08177028c7a9d08e72bda0fe15e", "pid": "1080488448", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1080488448", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1080488448", "source": "GND"}], "date_of_birth": "14.12.1906", "date_of_death": "25.03.1991", "preferred_name": "Jostes, Paul", "country_associated": "gw", "authorized_access_point": "Jostes, Paul, 1906-1991", "biographical_information": ["Dt. Amtsinspektor aus Finnentrop-Serkenrode (Kreis Olpe, Westfalen)"]} 1 -2023-07-08 08:15:06.77179 2023-07-08 08:15:06.771799 28233248-705a-4c51-9467-a1bd65825a72 {"md5": "a6343b4c20f23e0643532ab36c9f805f", "pid": "1080490868", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1080490868", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1080490868", "source": "GND"}], "variant_name": ["Königswarter'sche Unterrichts- und Studienstiftung"], "preferred_name": "Arthur und Emil Königswarter'sche Unterrichts- und Studienstiftung", "date_of_termination": "1939", "variant_access_point": ["Königswarter'sche Unterrichts- und Studienstiftung"], "date_of_establishment": "1873", "authorized_access_point": "Arthur und Emil Königswarter'sche Unterrichts- und Studienstiftung"} 1 -2023-07-08 08:15:06.851659 2023-07-08 08:15:06.851663 c2329d7a-65e8-40f6-bb74-4880721747f2 {"md5": "8b921e58def4de51df424e320fad10a4", "pid": "108049450", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "qualifier": "Freiherr von", "identifier": "http://d-nb.info/gnd/108049450", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/108049450", "source": "GND"}], "variant_name": ["Zedlitz, Sigismund von", "Zedlitz und Neukirch, Sigismund von", "Neukirch, Sigismund von Zedlitz und"], "date_of_birth": "1838", "date_of_death": "1903", "preferred_name": "Zedlitz und Neukirch, Sigismund, Freiherr von", "country_associated": "pl", "variant_access_point": ["Zedlitz, Sigismund von, 1838-1903", "Zedlitz und Neukirch, Sigismund von, 1838-1903", "Neukirch, Sigismund von Zedlitz und, 1838-1903"], "authorized_access_point": "Zedlitz und Neukirch, Sigismund, Freiherr von, 1838-1903"} 1 -2023-07-08 08:15:06.931366 2023-07-08 08:15:06.931369 fea20509-fb3e-4925-8714-1994e9d15c3f {"md5": "82c339d465f24d9d0e844c52e248dfdf", "pid": "1080869417", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1080869417", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1080869417", "source": "GND"}], "variant_name": ["Li Jianglong", "Jianglong, Li"], "preferred_name": "Li, Jianglong", "country_associated": "cc", "variant_access_point": ["Li Jianglong", "Jianglong, Li"], "authorized_access_point": "Li, Jianglong", "biographical_information": ["Professor, School of Economics and Finance, Xi'an Jiaotong University, Xi'an, Shaanxi, China", "Harvard-China Project, John A. Paulson School of Engineering and Applied Sciences, Harvard University", "School of Management, Huazhong University of Science and Technology", "The School of Economics, China Center for Energy Economics Research, Xiamen University, Fujian, China"]} 1 -2023-07-08 08:15:07.01853 2023-07-08 08:15:07.018539 3f20baba-c730-4dd1-a391-ce93d61cce81 {"md5": "c0e56359dc6e6e7a7938d1e454b2ec8d", "pid": "1081028270", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1081028270", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081028270", "source": "GND"}], "date_of_birth": "1932", "preferred_name": "Burgardt, Albert-Justin", "country_associated": "gw", "authorized_access_point": "Burgardt, Albert-Justin, 1932-"} 1 -2023-07-08 08:15:07.330313 2023-07-08 08:15:07.330321 e4eb2fef-9e95-4094-b683-1c422811d794 {"md5": "b980be79b006d44ea06a0b5f74375e03", "pid": "1081450452", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1081450452", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081450452", "source": "GND"}], "variant_name": ["INAI"], "preferred_name": "Instituto Nacional de Transparencia, Acceso a la Información y Protección de Datos Personales", "country_associated": "mx", "variant_access_point": ["INAI. Abkuerzung"], "date_of_establishment": "2015", "authorized_access_point": "Instituto Nacional de Transparencia, Acceso a la Información y Protección de Datos Personales"} 1 -2023-07-08 08:15:07.414059 2023-07-08 08:15:07.414067 20c17a59-0180-4161-aa94-15bcb21f5837 {"md5": "77cce2c4f6289c7ccb92a645977b7e90", "pid": "1081489529", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1081489529", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081489529", "source": "GND"}], "date_of_birth": "1976", "preferred_name": "Strupp, Julia", "country_associated": "gw", "authorized_access_point": "Strupp, Julia, 1976-", "biographical_information": ["Habil., Med. Fak. d. Univ. zu Köln, 13. September 2021", "Diss., Med. Fak. d. Univ. zu Köln, 30. November 2015"]} 1 -2023-07-08 08:15:09.458452 2023-07-08 10:25:09.638351 a8786898-3fb0-498a-9679-d156c129e6df {"md5": "d4f98501575b25fc303bffec120f36c7", "pid": "1085836894", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1085836894", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1085836894", "source": "GND"}], "preferred_name": "Association por International Servicie", "authorized_access_point": "Association por International Servicie"} 2 -2023-07-08 08:15:07.105314 2023-07-08 10:30:37.29378 dc893117-90ad-4bb7-b130-ad27415c60bf {"md5": "871b57f5cb66d74fb04a040b02b06723", "pid": "1081399880", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1081399880", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081399880", "source": "GND"}], "preferred_name": "Neumann, Marc", "country_associated": "gw", "authorized_access_point": "Neumann, Marc", "biographical_information": ["Stellvertretender Abteilungsleiter Grundsatz, Presse- und Öffentlichkeitsarbeit, Medienpolitik beim Deutschen Gewerkschaftsbund Nordrhein-Westfalen; Lehrauftrag an der Fakultät für Sozialwissenschaft der Ruhr-Universität Bochum"]} 2 -2023-07-08 08:15:07.49827 2023-07-08 08:15:07.498279 b0a4d726-68fe-4526-a8d3-717754dcd28c {"md5": "ae8308a72a4a0b814326380451ae576e", "pid": "1081556625", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1081556625", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081556625", "source": "GND"}], "variant_name": ["Staatl. Beratungsstelle für Volkstümliches Büchereiwesen", "Staatl. Beratungsstelle für die Regierungsbezirke Düsseldorf und Aachen"], "preferred_name": "Staatliche Beratungsstelle für Volkstümliches Büchereiwesen", "variant_access_point": ["Staatl. Beratungsstelle für Volkstümliches Büchereiwesen", "Staatl. Beratungsstelle für die Regierungsbezirke Düsseldorf und Aachen"], "authorized_access_point": "Staatliche Beratungsstelle für Volkstümliches Büchereiwesen", "biographical_information": ["1910 erhielt der Regierungsbezirk Düsseldorf eine Staatliche Beratungsstelle, aber die erste Einrichtung dieser Art wurde zuvor in Dortmund gegründet."]} 1 -2023-07-08 08:15:07.590559 2023-07-08 08:15:07.590568 1a49a38a-9500-491a-827a-05be254378ae {"md5": "42dab22b7a7125f71122da85e336723c", "pid": "1081654597", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1081654597", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081654597", "source": "GND"}], "date_of_birth": "1943", "preferred_name": "Rasenack, Udo", "country_associated": "gw", "authorized_access_point": "Rasenack, Udo, 1943-"} 1 -2023-07-08 08:15:07.678586 2023-07-08 08:15:07.678589 f0342ee7-a4e2-46ea-9087-b39a892fe053 {"md5": "e16527e90c2ece30d3cd1bb860edcd1c", "pid": "1081687118", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1081687118", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081687118", "source": "GND"}], "variant_name": ["Pei, Xu", "Xu Pei"], "preferred_name": "Xu, Pei", "country_associated": "xxu", "variant_access_point": ["Pei, Xu", "Xu Pei"], "authorized_access_point": "Xu, Pei", "biographical_information": ["Raymond J. Harbert College of Business, Aviation and Supply Chain Management Department"]} 1 -2023-07-08 08:15:07.76284 2023-07-08 08:15:07.762847 25183849-1fca-4d25-bb65-964e2a632d71 {"md5": "c8d5e585377ab818d85fcc4f8b753b88", "pid": "1081988355", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1081988355", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081988355", "source": "GND"}], "variant_name": ["Henneberg, Ernst"], "date_of_birth": "1873", "date_of_death": "1941", "preferred_name": "Henneberg, Ernst von", "country_associated": "au", "variant_access_point": ["Henneberg, Ernst, 1873-1941"], "authorized_access_point": "Henneberg, Ernst von, 1873-1941", "biographical_information": ["K. u. k. Offizier"]} 1 -2023-07-08 08:15:07.850746 2023-07-08 08:15:07.850754 62c00aa3-67c3-491e-8f5e-1dba34426381 {"md5": "1a5e8e45779002508c796193f38f7ec3", "pid": "1082002127", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1082002127", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1082002127", "source": "GND"}], "variant_name": ["Tizmoret ha-Erets-Yiśreʾelit", "Tizmoret ha-Ereṣ-Yiśreʾelit", "Palestine Orchestra", "Palestine Symphony Orchestra", "Symphony Orchestra of Eretz Yisrael"], "preferred_name": "Tizmoret ha-Erets-Yiśre'ēlît", "country_associated": "is", "date_of_termination": "1948", "variant_access_point": ["Tizmoret ha-Erets-Yiśreʾelit", "Tizmoret ha-Ereṣ-Yiśreʾelit", "Palestine Orchestra", "Palestine Symphony Orchestra", "Symphony Orchestra of Eretz Yisrael"], "date_of_establishment": "1936", "authorized_access_point": "Tizmoret ha-Erets-Yiśre'ēlît", "biographical_information": ["Das Israel Philharmonic Orchestra ist das führende Sinfonieorchester in Israel; 1936 gegründet von dem polnischen Geiger Bronisław Huberman. Hauptspielstätte des Orchesters ist das Charles Bronfman Auditorium in Tel Aviv."]} 1 -2023-07-08 08:15:07.922927 2023-07-08 08:15:07.922932 01819064-5ec3-4ca3-980b-09fa24514de4 {"md5": "5181792ed6365bfe9ccb0ccea74310d2", "pid": "1082006580", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1082006580", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1082006580", "source": "GND"}], "preferred_name": "International Workshop on 'Minerals Processing and Beneficiation'", "country_associated": "sa", "authorized_access_point": "International Workshop on 'Minerals Processing and Beneficiation', 2012, Johannesburg"} 1 -2023-07-08 08:15:07.998171 2023-07-08 08:15:07.998175 7e4b0303-6e94-432c-8859-9794eca6db4f {"md5": "d3ee723c26bee30841fc4b7dcc9a8979", "pid": "1082007447", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1082007447", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1082007447", "source": "GND"}], "preferred_name": "Bauer, Stefan", "country_associated": "gw", "authorized_access_point": "Bauer, Stefan"} 1 -2023-07-08 08:15:08.081114 2023-07-08 08:15:08.081117 93a44b54-62cc-41f1-98dd-01871292004b {"md5": "6d41a760d5253c8b80e369a82dfed4b1", "pid": "108231563X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/108231563X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/108231563X", "source": "GND"}], "preferred_name": "Arbeitsgruppe Türkische Arbeiter in Münster", "country_associated": "gw", "authorized_access_point": "Arbeitsgruppe Türkische Arbeiter in Münster"} 1 -2023-07-08 08:15:08.174188 2023-07-08 08:15:08.174195 44c7a148-b456-47a2-baab-9afcfee4f3bb {"md5": "cc842c7cc3d033735ffcbc2a6685f9a8", "pid": "1082319058", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1082319058", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1082319058", "source": "GND"}], "preferred_name": "Bustos, Natacha", "country_associated": "sp", "authorized_access_point": "Bustos, Natacha"} 1 -2023-07-08 08:15:08.274445 2023-07-08 08:15:08.27445 75425bc2-220f-45c5-9552-b9c96cfede8a {"md5": "acb7e19c75416ffc51cd67d6825ba3f2", "pid": "1082383880", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1082383880", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1082383880", "source": "GND"}], "variant_name": ["Universitätsklinikum Jena. AG Experimentelle Rheumatologie"], "preferred_name": "Universitätsklinikum Jena. Arbeitsgruppe Experimentelle Rheumatologie", "country_associated": "gw", "variant_access_point": ["Universitätsklinikum Jena. AG Experimentelle Rheumatologie"], "authorized_access_point": "Universitätsklinikum Jena. Arbeitsgruppe Experimentelle Rheumatologie"} 1 -2023-07-08 08:15:08.362426 2023-07-08 08:15:08.362431 6cbc56d1-a2dd-4a64-ad29-75397a61c4a8 {"md5": "19c2278a248e74b9f5f7037924c6e874", "pid": "1082387401", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1082387401", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1082387401", "source": "GND"}], "variant_name": ["Istituto svizzero di Roma. Sede di Milano"], "preferred_name": "Schweizerisches Institut in Rom. Sede di Milano", "country_associated": "it", "variant_access_point": ["Istituto svizzero di Roma. Sede di Milano"], "authorized_access_point": "Schweizerisches Institut in Rom. Sede di Milano"} 1 -2023-07-08 08:15:08.44015 2023-07-08 08:15:08.440155 89dc1ae4-8d66-4081-ad24-00a7ede25b75 {"md5": "8c27b18b2cf93bf2286b59a14d4d41a3", "pid": "1084363704", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://d-nb.info/gnd/1084363704", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1084363704", "source": "GND"}], "preferred_name": "Silberstein, Theresa", "country_associated": "gw", "authorized_access_point": "Silberstein, Theresa"} 1 -2023-07-08 08:15:08.604852 2023-07-08 08:15:08.604856 756032cb-4c16-49ad-9461-aab257cea8a0 {"md5": "0677e44e7fb2ddf6fa6b7bc455f1edb8", "pid": "1085208036", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1085208036", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1085208036", "source": "GND"}], "variant_name": ["Infra, Informationsstelle für Frauen", "Informationsstelle für Frauen"], "preferred_name": "Frauenbefreiungsbewegung. Informationsstelle für Frauen", "country_associated": "sz", "variant_access_point": ["Infra, Informationsstelle für Frauen. Zürich", "Informationsstelle für Frauen. Zürich"], "authorized_access_point": "Frauenbefreiungsbewegung. Zürich. Informationsstelle für Frauen"} 1 -2023-07-08 08:15:08.70503 2023-07-08 08:15:08.705035 8e51eba9-66ae-4c96-b3f2-c1d8a1eb9c00 {"md5": "0698d68cca6dc76220d7653ffe85febc", "pid": "1085704564", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1085704564", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1085704564", "source": "GND"}], "preferred_name": "Environmental and Development Agency Trust", "authorized_access_point": "Environmental and Development Agency Trust. Johannesburg"} 1 -2023-07-08 08:15:08.799257 2023-07-08 08:15:08.799261 3691cf2f-f8fa-45fc-b729-3048912a1161 {"md5": "bd881a36c95f7278cd6e5916c18b76fa", "pid": "1085733416", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1085733416", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1085733416", "source": "GND"}], "preferred_name": "Heimatschutztheater", "authorized_access_point": "Heimatschutztheater. Thun"} 1 -2023-07-08 08:15:08.877055 2023-07-08 08:15:08.877061 b4dfaf9a-f156-4b4c-992d-e0d02a086b5a {"md5": "0ad10c8e6bed6b61d1b2a5365ffa1da2", "pid": "1085772225", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1085772225", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1085772225", "source": "GND"}], "preferred_name": "Ärztinnen und Ärzte für Umweltschutz. Sektion Zürich", "authorized_access_point": "Ärztinnen und Ärzte für Umweltschutz. Sektion Zürich"} 1 -2023-07-08 08:15:08.971815 2023-07-08 08:15:08.97182 9e8eae34-a5cf-4ce8-865a-9a21cd730887 {"md5": "694af2265a701db8f8a4cc058c069bac", "pid": "1085773566", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1085773566", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1085773566", "source": "GND"}], "variant_name": ["Helvetia Maennerchor of New York", "New York, Helvetia Maennerchor", "Maennerchor Helvetia"], "preferred_name": "Helvetia-Männerchor", "variant_access_point": ["Helvetia Maennerchor of New York", "New York, Helvetia Maennerchor", "Maennerchor Helvetia. New York"], "authorized_access_point": "Helvetia-Männerchor. New York"} 1 -2023-07-08 08:15:09.072868 2023-07-08 08:15:09.072872 a1ebf080-cf85-46a5-a5bd-c20ffbfdb1f5 {"md5": "0c9cc48734eb0d9d46f17d55aed28ac7", "pid": "1085805433", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1085805433", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1085805433", "source": "GND"}], "preferred_name": "Modern Critical Theory Group", "authorized_access_point": "Modern Critical Theory Group. Great Britain"} 1 -2023-07-08 08:15:09.17729 2023-07-08 08:15:09.177294 26ec6540-9d79-48c4-a7db-431d460fa64f {"md5": "b925f61efdd432a155d9018a2590bd18", "pid": "1085808254", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1085808254", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1085808254", "source": "GND"}], "preferred_name": "Blaukreuzmusik Ostermundigen", "country_associated": "sz", "authorized_access_point": "Blaukreuzmusik Ostermundigen"} 1 -2023-07-08 08:15:09.270898 2023-07-08 08:15:09.270903 a8982fad-89e5-45a3-945d-43d78cf488ff {"md5": "57044c6df20d1d17e89bbe40e44d72bd", "pid": "1085822613", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1085822613", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1085822613", "source": "GND"}], "variant_name": ["Universitat Autònoma de Barcelona. Area of Research in Studies from Antiquity. Workshop", "Area of Research in Studies from Antiquity. Workshop", "AREA. Workshop"], "preferred_name": "Universidad Autónoma. Area of Research in Studies from Antiquity. Workshop", "country_associated": "sp", "variant_access_point": ["Universitat Autònoma de Barcelona. Area of Research in Studies from Antiquity. Workshop", "Area of Research in Studies from Antiquity. Workshop", "AREA. Area of Research in Studies from Antiquity. Workshop"], "authorized_access_point": "Universidad Autónoma. Barcelona. Area of Research in Studies from Antiquity. Workshop"} 1 -2023-07-08 08:15:09.573719 2023-07-08 08:15:09.573724 4ab9e2a4-96a0-4f7b-9e84-61e5cc354474 {"md5": "4a84aa1525efadfc66e8c8c22ef71bce", "pid": "108585440X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/108585440X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/108585440X", "source": "GND"}], "variant_name": ["Trio Albatros Ensemble"], "preferred_name": "Trio Albatros", "variant_access_point": ["Trio Albatros Ensemble"], "authorized_access_point": "Trio Albatros"} 1 -2023-07-08 08:15:09.664885 2023-07-08 08:15:09.664894 24b391ab-6885-4d6d-aeb6-e943320e8e02 {"md5": "b1cdb7085e42a1ec0a3cf6d32777c6d7", "pid": "1085905519", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1085905519", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1085905519", "source": "GND"}], "preferred_name": "Société philatélique La Colombe", "authorized_access_point": "Société philatélique La Colombe. Saint-Blaise"} 1 -2023-07-08 08:15:09.747554 2023-07-08 08:15:09.747558 a070d909-c143-4aa4-8c8f-7157c1fca065 {"md5": "54abb5c22e73b059db31337a9677532e", "pid": "1085909603", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1085909603", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1085909603", "source": "GND"}], "variant_name": ["Ǧamʿiyyat Ṣadāqat Kāmdan Abū Dīs", "Jamʿīyat Ṣadāqat Kāmdan Abū Dīs"], "preferred_name": "Camden-Abu Dis Friendship Association", "variant_access_point": ["Ǧamʿiyyat Ṣadāqat Kāmdan Abū Dīs", "Jamʿīyat Ṣadāqat Kāmdan Abū Dīs"], "authorized_access_point": "Camden-Abu Dis Friendship Association"} 1 -2023-07-08 08:15:09.826683 2023-07-08 08:15:09.826688 5cc90478-f2c1-4011-b404-3a59a713e4ff {"md5": "00f57139ca7010d7bee77c4f092c5c62", "pid": "1085909808", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1085909808", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1085909808", "source": "GND"}], "variant_name": ["ETN"], "preferred_name": "École technique de Neuchâtel", "country_associated": "sz", "variant_access_point": ["ETN. Abkuerzung"], "date_of_establishment": "1969", "authorized_access_point": "École technique de Neuchâtel"} 1 -2023-07-08 08:15:09.921946 2023-07-08 08:15:09.921952 3cd23540-6ffd-4b36-bf6b-7e17f44cc9c4 {"md5": "67851ebbe196a7828e63adcb298b736f", "pid": "1085934519", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1085934519", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1085934519", "source": "GND"}], "preferred_name": "Color Metal AG", "country_associated": "sz", "date_of_termination": "1983", "date_of_establishment": "1926", "authorized_access_point": "Color Metal AG", "biographical_information": ["Gegr. 1926; das Unternehmen wurde 1983 aufgelöst"]} 1 -2023-07-08 08:15:10.006162 2023-07-08 08:15:10.006167 43860b95-f1b5-43da-8efa-4189307b63a3 {"md5": "d1ba4a4ab47f7e4efb44ed805c367005", "pid": "1085989879", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1085989879", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1085989879", "source": "GND"}], "variant_name": ["JP"], "preferred_name": "Commission Justice et Paix", "variant_access_point": ["JP. Commission Justice et Paix, Bruxelles"], "authorized_access_point": "Commission Justice et Paix. Bruxelles"} 1 -2023-07-08 08:15:10.108622 2023-07-08 08:15:10.108628 d80aea79-dbe1-404f-9803-39ac3b7da579 {"md5": "d17016d37e5001fa5dcd73655d971141", "pid": "1086006615", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086006615", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086006615", "source": "GND"}], "preferred_name": "Single Singers", "authorized_access_point": "Single Singers"} 1 -2023-07-08 08:15:10.198049 2023-07-08 08:15:10.198052 4f1224a6-08c6-4b78-95b7-c73ff670bc50 {"md5": "6a3ee5833d832a7e136c048898b1760e", "pid": "1086024044", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086024044", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086024044", "source": "GND"}], "preferred_name": "International Council on Social Welfare. Regional Symposium", "authorized_access_point": "International Council on Social Welfare. Regional Symposium"} 1 -2023-07-08 08:15:10.274321 2023-07-08 08:15:10.274328 0bbb966b-7618-4275-9806-c17a7dcaa085 {"md5": "26f6b55c4f4980a7b4ea773ea24c95c1", "pid": "1086025474", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086025474", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086025474", "source": "GND"}], "variant_name": ["BZ"], "preferred_name": "Basellandschaftliche Zeitung", "variant_access_point": ["BZ. Basellandschaftliche Zeitung"], "authorized_access_point": "Basellandschaftliche Zeitung. Liestal", "biographical_information": ["Basellandschaftliche Zeitung in Liestal (1832->)"]} 1 -2023-07-08 08:15:10.379726 2023-07-08 08:15:10.379736 842d7b15-780c-4eeb-8c75-9b77262115f6 {"md5": "165976d27bd2552df63fb761e6bf550a", "pid": "1086047532", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086047532", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086047532", "source": "GND"}], "preferred_name": "Polyphony", "authorized_access_point": "Polyphony. Choral ensemble"} 1 -2023-07-08 08:15:10.483194 2023-07-08 08:15:10.483203 3f613cfc-cbfd-4e40-b604-f8bbf214d58f {"md5": "a60d73bb88b5d97fba3667e85671d9f5", "pid": "1086062159", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086062159", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086062159", "source": "GND"}], "preferred_name": "Pool for Modern Music", "authorized_access_point": "Pool for Modern Music. Musikgruppe"} 1 -2023-07-08 08:15:10.572609 2023-07-08 08:15:10.572613 7ad6f2ee-b695-4277-af1c-b0a386987627 {"md5": "4568b31618e44b9cc582d5fb3e816507", "pid": "1086067371", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086067371", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086067371", "source": "GND"}], "variant_name": ["Kanton Bern. Koordinationsstelle für Umweltschutz. Arbeitsgruppe Auflagenvollzug", "Arbeitsgruppe Auflagenvollzug"], "preferred_name": "Kanton Bern. Arbeitsgruppe Auflagenvollzug", "country_associated": "sz", "variant_access_point": ["Kanton Bern. Koordinationsstelle für Umweltschutz. Arbeitsgruppe Auflagenvollzug", "Arbeitsgruppe Auflagenvollzug. Kanton Bern"], "authorized_access_point": "Kanton Bern. Arbeitsgruppe Auflagenvollzug"} 1 -2023-07-08 08:15:10.745872 2023-07-08 08:15:10.74588 4f950b52-f827-4611-9b31-50bc666e17e0 {"md5": "60ee042c4f2de1ce7fd4bd87d8e5d736", "pid": "1086074602", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086074602", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086074602", "source": "GND"}], "variant_name": ["Société agricole du Valais"], "preferred_name": "Landwirtschaftliche Gesellschaft", "variant_access_point": ["Société agricole du Valais"], "authorized_access_point": "Landwirtschaftliche Gesellschaft. Wallis"} 1 -2023-07-08 08:15:10.833893 2023-07-08 08:15:10.833901 dbc5458a-177f-4b56-9df7-d775658023f8 {"md5": "59e99fc1942e771ca17df5bc8b83fcde", "pid": "1086075218", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086075218", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086075218", "source": "GND"}], "preferred_name": "Arbeitsgemeinschaft für experimentelle Triebforschung und Schicksalspsychologie", "authorized_access_point": "Arbeitsgemeinschaft für experimentelle Triebforschung und Schicksalspsychologie. Zürich"} 1 -2023-07-08 08:15:10.923412 2023-07-08 08:15:10.923418 35e9f78c-e55c-4412-bc19-cfb2a4618881 {"md5": "373cffcbb7f4cda24c9d278e08b9b45c", "pid": "1086080513", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086080513", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086080513", "source": "GND"}], "variant_name": ["CBHA. Colóquio"], "preferred_name": "Comité Brasileiro de História da Arte. Colóquio", "variant_access_point": ["CBHA. Comité Brasileiro de História da Arte. Colóquio"], "authorized_access_point": "Comité Brasileiro de História da Arte. Colóquio"} 1 -2023-07-08 08:15:11.021866 2023-07-08 08:15:11.021871 3ec695da-1691-4c53-95dd-0d6b59682f5f {"md5": "307e88b39f41183cc8d895bc229444af", "pid": "1086080750", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086080750", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086080750", "source": "GND"}], "variant_name": ["University of Maine. School of Law. Marine Law Institute", "University of Southern Maine. Center for Research and Advanced Study. Marine Law Institute"], "preferred_name": "Marine Law Institute", "variant_access_point": ["University of Maine. School of Law. Marine Law Institute", "University of Southern Maine. Center for Research and Advanced Study. Marine Law Institute"], "authorized_access_point": "Marine Law Institute"} 1 -2023-07-08 08:15:11.106962 2023-07-08 08:15:11.106969 1d06efae-d915-4818-9596-eb9cbb26bc25 {"md5": "3f8d9464def605e0d110160442afff50", "pid": "1086082427", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086082427", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086082427", "source": "GND"}], "variant_name": ["Shanghai. Council", "Shanghai Municipal Council"], "preferred_name": "Shanghai. Municipal Council", "variant_access_point": ["Shanghai. China : International Settlement. Council", "Shanghai Municipal Council"], "authorized_access_point": "Shanghai. China : International Settlement. Municipal Council"} 1 -2023-07-08 08:15:11.203746 2023-07-08 08:15:11.203754 6c5c2546-d9e0-4115-bdc7-698b9cea3d0b {"md5": "a3f709c3ee4223b46c727710c5ea9f9e", "pid": "1086092775", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086092775", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086092775", "source": "GND"}], "preferred_name": "Jack Kilgore & Co.", "authorized_access_point": "Jack Kilgore & Co."} 1 -2023-07-08 08:15:11.284346 2023-07-08 08:15:11.284349 f845dee1-f800-45b3-b201-dd5aca194c63 {"md5": "77376cadf5bd3910f3c5c5f4ada4cb90", "pid": "1086143264", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086143264", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086143264", "source": "GND"}], "variant_name": ["Assoc. pour la Conservation du Patrimoine Naturel de la Gabrière"], "preferred_name": "Association pour la Conservation du Patrimoine Naturel de la Gabrière", "country_associated": "ii", "variant_access_point": ["Assoc. pour la Conservation du Patrimoine Naturel de la Gabrière"], "authorized_access_point": "Association pour la Conservation du Patrimoine Naturel de la Gabrière"} 1 -2023-07-08 08:15:11.471821 2023-07-08 08:15:11.471826 e5a8c199-c71f-4ab5-9b33-41fa8d29236b {"md5": "f2476986c52f20ba969866e1b0597525", "pid": "1086144902", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086144902", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086144902", "source": "GND"}], "variant_name": ["Pfarrei Sankt Gallus Kriens"], "preferred_name": "Pfarrei St. Gallus Kriens", "country_associated": "sz", "variant_access_point": ["Pfarrei Sankt Gallus Kriens"], "authorized_access_point": "Pfarrei St. Gallus Kriens"} 1 -2023-07-08 08:15:11.560103 2023-07-08 08:15:11.560109 53d7ce91-1100-4567-854f-dca6db14893b {"md5": "054d2a6c009d1b4083a7fe424b397edf", "pid": "1086182871", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086182871", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086182871", "source": "GND"}], "preferred_name": "Ländlerkapelle Bodaguat", "country_associated": "sz", "authorized_access_point": "Ländlerkapelle Bodaguat"} 1 -2023-07-08 08:15:11.651456 2023-07-08 08:15:11.65146 e11228be-79f9-4353-bf4e-7ce6d2cbbe1b {"md5": "6a16b1b3a068634787660e80ddb17b0c", "pid": "1086186427", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086186427", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086186427", "source": "GND"}], "preferred_name": "Verein Berufsbildung Zentralschweiz", "country_associated": "sz", "authorized_access_point": "Verein Berufsbildung Zentralschweiz"} 1 -2023-07-08 08:15:11.742416 2023-07-08 08:15:11.742421 5df634db-51dc-4480-b551-37874b315333 {"md5": "12ef79773cf461e72e775d033f7d92d2", "pid": "1086202244", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086202244", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086202244", "source": "GND"}], "variant_name": ["Central European Office"], "preferred_name": "National Broadcasting Company. Central European Office", "country_associated": "xxu", "variant_access_point": ["Central European Office. National Broadcasting Company"], "authorized_access_point": "National Broadcasting Company. New York, NY. Central European Office"} 1 -2023-07-08 08:15:11.837214 2023-07-08 08:15:11.837218 ff941cd1-c083-4e3d-852e-2a8ac7d27f17 {"md5": "f876fabdba92a8014f00e7ac231b8c47", "pid": "1086206991", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086206991", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086206991", "source": "GND"}], "variant_name": ["Hauptquartier der Roten Armee", "Berlin, Hauptquartier der Roten Armee"], "preferred_name": "Rote Armee", "variant_access_point": ["Hauptquartier der Roten Armee. Berlin", "Berlin, Hauptquartier der Roten Armee"], "authorized_access_point": "Rote Armee. Hauptquartier, Berlin"} 1 -2023-07-08 08:15:11.91873 2023-07-08 08:15:11.918737 58fa45c4-bfc5-4c53-af0e-4c4c9a4d2781 {"md5": "edc1f4201292b981a7f766b32f8ab8fb", "pid": "1086215982", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086215982", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086215982", "source": "GND"}], "variant_name": ["Springer Verlag", "Heidelberg, Axel Springer Verlag", "Heidelberg, Springer Verlag"], "preferred_name": "Axel Springer Verlag", "variant_access_point": ["Springer Verlag. Heidelberg", "Heidelberg, Axel Springer Verlag", "Heidelberg, Springer Verlag"], "authorized_access_point": "Axel Springer Verlag. Heidelberg"} 1 -2023-07-08 08:15:11.990168 2023-07-08 08:15:11.990173 52c231f8-8014-4424-ac6c-5096ef9475ce {"md5": "b2b9f0112b8161d793f9f50d93338b75", "pid": "1086230493", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086230493", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086230493", "source": "GND"}], "variant_name": ["Orte "], "preferred_name": "Orte", "country_associated": "sz", "variant_access_point": ["Orte "], "date_of_establishment": "1975", "authorized_access_point": "Orte. Schweizer Literaturzeitschrift"} 1 -2023-07-08 08:15:12.070801 2023-07-08 08:15:12.070805 eed1d742-208a-424e-8639-f147f9c0e2fe {"md5": "793a280cd84cfe2690a0f0f6c0324f06", "pid": "1086235894", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086235894", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086235894", "source": "GND"}], "variant_name": ["Leeds. University. Dept. of Economics and Commerce"], "preferred_name": "University of Leeds. Dept. of Economics and Commerce", "variant_access_point": ["Leeds. England. University. Dept. of Economics and Commerce"], "authorized_access_point": "University of Leeds. Dept. of Economics and Commerce"} 1 -2023-07-08 08:15:12.172884 2023-07-08 08:15:12.172891 d13ad93a-298c-4965-a2ed-66364ec922a7 {"md5": "6236c815e3317c07b6e6aed515668f21", "pid": "1086271440", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086271440", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086271440", "source": "GND"}], "preferred_name": "J.B. Burg-Gesellschaft", "country_associated": "gw", "authorized_access_point": "J.B. Burg-Gesellschaft. Bad Kissingen"} 1 -2023-07-08 08:15:12.294176 2023-07-08 08:15:12.294181 9944d642-c31c-404c-86de-060effb6b059 {"md5": "0b8551b7bf76420ece026f39876a3096", "pid": "1086272587", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086272587", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086272587", "source": "GND"}], "variant_name": ["Deutsche Wissenschaftliche Gesellschaft für Erdöl, Erdgas und Kohle. DGMK-Projekt 393, Beurteilung von Näherungsgleichungen zur Approximation und Extrapolation von Viskositätsmessungen an Mineralöle", "DGMK-Projekt Beurteilung von Näherungsgleichungen zur Approximation und Extrapolation von Viskositätsmessungen an Mineralölen", "Deutsche Wissenschaftliche Gesellschaft für Erdöl, Erdgas und Kohle. DGMK-Projekt Beurteilung von Näherungsgleichungen zur Approximation und Extrapolation von Viskositätsmessungen an Mineralölen", "DGMK-Project 393, Evaluation of Approximation Equations - Approximation and Extrapolation of Pressure Viscosity Measuring of Mineral Oils", "Deutsche Wissenschaftliche Gesellschaft für Erdöl, Erdgas und Kohle. DGMK-Project 393, Evaluation of Approximation Equations - Approximation and Extrapolation of Pressure Viscosity Measuring of Mineral Oils", "DGMK-Project Evaluation of Approximation Equations - Approximation and Extrapolation of Pressure Viscosity Measuring of Mineral Oils", "Deutsche Wissenschaftliche Gesellschaft für Erdöl, Erdgas und Kohle. DGMK-Project Evaluation of Approximation Equations - Approximation and Extrapolation of Pressure Viscosity Measuring of Mineral Oils", "German Society for Petroleum Sciences and Coal Chemistry. DGMK-Project 393, Evaluation of Approximation Equations - Approximation and Extrapolation of Pressure Viscosity Measuring of Mineral Oils", "German Society for Petroleum Sciences and Coal Chemistry. DGMK-Project Evaluation of Approximation Equations - Approximation and Extrapolation of Pressure Viscosity Measuring of Mineral Oils", "DGMK-Projekt 393", "DGMK-Project 393", "Deutsche Wissenschaftliche Gesellschaft für Erdöl, Erdgas und Kohle. DGMK-Projekt 393", "Deutsche Wissenschaftliche Gesellschaft für Erdöl, Erdgas und Kohle. DGMK-Project 393", "German Society for Petroleum Sciences and Coal Chemistry. DGMK-Project 393"], "preferred_name": "DGMK-Projekt 393, Beurteilung von Näherungsgleichungen zur Approximation und Extrapolation von Viskositätsmessungen an Mineralölen", "variant_access_point": ["Deutsche Wissenschaftliche Gesellschaft für Erdöl, Erdgas und Kohle. DGMK-Projekt 393, Beurteilung von Näherungsgleichungen zur Approximation und Extrapolation von Viskositätsmessungen an Mineralöle", "DGMK-Projekt Beurteilung von Näherungsgleichungen zur Approximation und Extrapolation von Viskositätsmessungen an Mineralölen. Deutschland, Bundesrepublik", "Deutsche Wissenschaftliche Gesellschaft für Erdöl, Erdgas und Kohle. DGMK-Projekt Beurteilung von Näherungsgleichungen zur Approximation und Extrapolation von Viskositätsmessungen an Mineralölen", "DGMK-Project 393, Evaluation of Approximation Equations - Approximation and Extrapolation of Pressure Viscosity Measuring of Mineral Oils. Deutschland, Bundesrepublik", "Deutsche Wissenschaftliche Gesellschaft für Erdöl, Erdgas und Kohle. DGMK-Project 393, Evaluation of Approximation Equations - Approximation and Extrapolation of Pressure Viscosity Measuring of Mineral Oils", "DGMK-Project Evaluation of Approximation Equations - Approximation and Extrapolation of Pressure Viscosity Measuring of Mineral Oils. Deutschland, Bundesrepublik", "Deutsche Wissenschaftliche Gesellschaft für Erdöl, Erdgas und Kohle. DGMK-Project Evaluation of Approximation Equations - Approximation and Extrapolation of Pressure Viscosity Measuring of Mineral Oils", "German Society for Petroleum Sciences and Coal Chemistry. vor 1987. DGMK-Project 393, Evaluation of Approximation Equations - Approximation and Extrapolation of Pressure Viscosity Measuring of Mineral Oils", "German Society for Petroleum Sciences and Coal Chemistry. vor 1987. DGMK-Project Evaluation of Approximation Equations - Approximation and Extrapolation of Pressure Viscosity Measuring of Mineral Oils", "DGMK-Projekt 393. Deutschland, Bundesrepublik", "DGMK-Project 393. Deutschland, Bundesrepublik", "Deutsche Wissenschaftliche Gesellschaft für Erdöl, Erdgas und Kohle. DGMK-Projekt 393", "Deutsche Wissenschaftliche Gesellschaft für Erdöl, Erdgas und Kohle. DGMK-Project 393", "German Society for Petroleum Sciences and Coal Chemistry. vor 1987. DGMK-Project 393"], "authorized_access_point": "DGMK-Projekt 393, Beurteilung von Näherungsgleichungen zur Approximation und Extrapolation von Viskositätsmessungen an Mineralölen. Deutschland, Bundesrepublik"} 1 -2023-07-08 08:15:12.435869 2023-07-08 08:15:12.435874 bc0fefab-ebff-4c26-9919-e460781cc5bd {"md5": "c67efa51043082309261350f83881ce5", "pid": "1086274636", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086274636", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086274636", "source": "GND"}], "preferred_name": "Skillman Foundation", "authorized_access_point": "Skillman Foundation"} 1 -2023-07-08 08:15:12.536117 2023-07-08 08:15:12.536125 01d8fa4e-c09f-446f-a87d-faeb9060dd46 {"md5": "28ae8dd492c458b35619055baa0b30c2", "pid": "1086292391", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086292391", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086292391", "source": "GND"}], "variant_name": ["Birnstiel, Heinrich"], "preferred_name": "Birnstiel", "variant_access_point": ["Birnstiel, Heinrich. Verlag, Erfurt"], "authorized_access_point": "Birnstiel. Verlag, Erfurt"} 1 -2023-07-08 08:15:12.63301 2023-07-08 08:15:12.633018 b23a44b5-eab3-45b8-bce3-83e5dd427b39 {"md5": "240b54d10201226560bd2d18c2bd373e", "pid": "1086300475", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086300475", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086300475", "source": "GND"}], "preferred_name": "Académie du cirque et du music-hall", "authorized_access_point": "Académie du cirque et du music-hall. Paris"} 1 -2023-07-08 08:15:13.590327 2023-07-08 08:15:13.590333 8390239c-675e-49c4-96e8-a61a9e948432 {"md5": "03cb63fabf9ab47cc4a3ef239c45f56b", "pid": "1086444361", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086444361", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086444361", "source": "GND"}], "variant_name": ["Notenbank Ostland"], "preferred_name": "Notenbank im Ostland", "country_associated": "lv", "date_of_termination": "1945", "variant_access_point": ["Notenbank Ostland"], "date_of_establishment": "1942", "authorized_access_point": "Notenbank im Ostland", "biographical_information": ["Gegr. 1942; das Unternehmen wurde 1945 durch die sowjetische Besatzungsmacht aufgelöst"]} 1 -2023-07-08 08:15:12.728207 2023-07-08 08:15:12.728215 b883f5ee-6ba9-4303-b1e6-6bed6fd16448 {"md5": "5db08d5a28d3ddb54db2f91043d6854d", "pid": "1086314646", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086314646", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086314646", "source": "GND"}], "variant_name": ["NHK Puranetto. Kinki Sōshisha", "NHKプラネット. 近畿総支社", "NHKプラネット キンキ"], "preferred_name": "NHK Puranetto Kinki", "country_associated": "ja", "variant_access_point": ["NHK Puranetto. Kinki Sōshisha", "NHKプラネット. 近畿総支社", "NHKプラネット キンキ"], "parallel_access_point": ["NHKプラネット近畿"], "authorized_access_point": "NHK Puranetto Kinki"} 1 -2023-07-08 08:15:12.806535 2023-07-08 08:15:12.806539 450b6e35-59d1-4e5d-a44d-fa9a99fe0930 {"md5": "7b2c27f2d649f026e09e74e99371e6c0", "pid": "1086340043", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086340043", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086340043", "source": "GND"}], "variant_name": ["Controlecomité voor de Elektriciteit en het Gas"], "preferred_name": "Comité de Contrôle de l'Electricité et du Gaz", "variant_access_point": ["Controlecomité voor de Elektriciteit en het Gas. Belgie"], "authorized_access_point": "Comité de Contrôle de l'Electricité et du Gaz. Belgique"} 1 -2023-07-08 08:15:12.890538 2023-07-08 08:15:12.890544 e0c7d72a-6448-4d5c-8611-b832b0cfac02 {"md5": "5577dbe32d45eed30b05b08a2f2a8dd1", "pid": "1086373170", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086373170", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086373170", "source": "GND"}], "variant_name": ["Diputación Provincial de Vizcaya"], "preferred_name": "Vizcaya. Diputación Provincial", "country_associated": "sp", "variant_access_point": ["Diputación Provincial de Vizcaya"], "authorized_access_point": "Vizcaya. Diputación Provincial"} 1 -2023-07-08 08:15:12.972053 2023-07-08 08:15:12.972058 3e46edbd-393b-4153-a648-3727ce3020ba {"md5": "4e395a924f35d52e2c638a69757e4f6e", "pid": "1086413520", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086413520", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086413520", "source": "GND"}], "preferred_name": "Katholischer Filmkreis Zürich", "country_associated": "sz", "date_of_establishment": "1965", "authorized_access_point": "Katholischer Filmkreis Zürich", "biographical_information": ["Früherer Name: Filmkreis Zürich der Katholischen Jugendorganisationen"]} 1 -2023-07-08 08:15:13.055764 2023-07-08 08:15:13.055768 2e9fbf01-00d5-4898-b05c-8badce7fd0c7 {"md5": "52471c09e11e07015370dd350fb0fe12", "pid": "1086431685", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086431685", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086431685", "source": "GND"}], "variant_name": ["Orchestra of Cordoba", "Orchestre de Cordoba", "Orquesta Sinfónica de Córdoba", "Symphony Orchestra of Cordoba"], "preferred_name": "Orquesta de Córdoba", "variant_access_point": ["Orchestra of Cordoba", "Orchestre de Cordoba", "Orquesta Sinfónica de Córdoba", "Symphony Orchestra of Cordoba"], "authorized_access_point": "Orquesta de Córdoba"} 1 -2023-07-08 08:15:13.137591 2023-07-08 08:15:13.137595 39c6d3c3-732d-46ff-a903-320aeb62547d {"md5": "56ce8111dbae1351cddb9205ff5d30d4", "pid": "1086431855", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086431855", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086431855", "source": "GND"}], "variant_name": ["Time Life International. Amsterdam"], "preferred_name": "Time-Life International (Nederland)", "country_associated": "ne", "variant_access_point": ["Time Life International. Amsterdam"], "authorized_access_point": "Time-Life International (Nederland)"} 1 -2023-07-08 08:15:13.222896 2023-07-08 08:15:13.222901 e78c69e3-eaf5-4fad-8efc-f7500cbe30fd {"md5": "6da29b690443978785f89a981ac80f47", "pid": "1086433114", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086433114", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086433114", "source": "GND"}], "variant_name": ["Rechtsschutzabteilung Basel des Schweizerischen Israelitischen Gemeindebundes"], "preferred_name": "Schweizerischer Israelitischer Gemeindebund. Rechtsschutzabteilung", "variant_access_point": ["Rechtsschutzabteilung Basel des Schweizerischen Israelitischen Gemeindebundes"], "authorized_access_point": "Schweizerischer Israelitischer Gemeindebund. Rechtsschutzabteilung"} 1 -2023-07-08 08:15:13.313708 2023-07-08 08:15:13.31372 88446852-2be3-4d24-a00f-a00117f204aa {"md5": "ab99d51ada7b2438a08bdf436379b254", "pid": "1086434900", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086434900", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086434900", "source": "GND"}], "variant_name": ["Galliano Septet"], "preferred_name": "Richard Galliano Septet", "variant_access_point": ["Galliano Septet"], "authorized_access_point": "Richard Galliano Septet"} 1 -2023-07-08 08:15:13.407803 2023-07-08 08:15:13.40781 a622b89d-00a7-47b8-8ccc-cda4ce33c948 {"md5": "01124ba67702f74ea1cc43f12c05892e", "pid": "1086437500", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086437500", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086437500", "source": "GND"}], "preferred_name": "Banque de Crédit et de Dépôt des Pays-Bas", "authorized_access_point": "Banque de Crédit et de Dépôt des Pays-Bas. Amsterdam", "biographical_information": ["Banque de Crédit et de Dépôt des Pays-Bas, Amsterdam (1863-1871); das Unternehmen schloss sich mit der Banque de Paris zur Banque de Paris et des Pays-Bas zusammen"]} 1 -2023-07-08 08:15:13.503437 2023-07-08 08:15:13.503441 566e2295-604d-418c-8972-8c954bfd38b1 {"md5": "f9f64ffe8aed12656d35bca73770d414", "pid": "1086443640", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086443640", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086443640", "source": "GND"}], "preferred_name": "Pratt Adlib Press", "authorized_access_point": "Pratt Adlib Press"} 1 -2023-07-08 08:15:38.843984 2023-07-08 08:15:38.843994 c514a90c-16f6-4ae1-a02b-9e8ae5786db8 {"md5": "0452bec967b3823b431cc9e97c14948b", "pid": "1144301130", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1144301130", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1144301130", "source": "GND"}], "preferred_name": "Steinfeld, Alan", "country_associated": "xxk", "authorized_access_point": "Steinfeld, Alan"} 1 -2023-07-08 08:15:13.672562 2023-07-08 08:15:13.672567 53e90552-3007-4b95-9d49-db5de1631023 {"md5": "a77ad056b279b4a95d6356e9eed26ba6", "pid": "1086469747", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086469747", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086469747", "source": "GND"}], "preferred_name": "Paul Scherrer Fonds", "country_associated": "sz", "authorized_access_point": "Paul Scherrer Fonds"} 1 -2023-07-08 08:15:13.76741 2023-07-08 08:15:13.767418 1f1e0f6c-2416-4c57-af9b-94e2b00b42bd {"md5": "168b6e1b00e8cca7bc24e1d939e5bba4", "pid": "1086480686", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086480686", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086480686", "source": "GND"}], "preferred_name": "Musée du Mont-Repais", "country_associated": "sz", "authorized_access_point": "Musée du Mont-Repais"} 1 -2023-07-08 08:15:13.848457 2023-07-08 08:15:13.848467 9c884a95-3fe9-42d4-a8a3-86fcf2870a45 {"md5": "6b816e96e81074f1660413d86180dccb", "pid": "108649282X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/108649282X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/108649282X", "source": "GND"}], "preferred_name": "Eisenbahner-Baugenossenschaft", "authorized_access_point": "Eisenbahner-Baugenossenschaft. Meiringen", "biographical_information": ["Eisenbahner-Baugenossenschaft, Meiringen (1925->)"]} 1 -2023-07-08 08:15:13.93126 2023-07-08 08:15:13.931264 6b848e5f-fba4-4a36-8cf8-9c3e4d467d60 {"md5": "77f351b24402b7d9f8761f739574158c", "pid": "1086503910", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086503910", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086503910", "source": "GND"}], "variant_name": ["VSU", "Association suisse des magasins d'horlogerie spécialisés", "ASMH"], "preferred_name": "Verband Schweizerischer Uhrenfachgeschäfte", "country_associated": "sz", "variant_access_point": ["VSU. Abkuerzung", "Association suisse des magasins d'horlogerie spécialisés", "ASMH. Abkuerzung"], "authorized_access_point": "Verband Schweizerischer Uhrenfachgeschäfte"} 1 -2023-07-08 08:15:14.035572 2023-07-08 08:15:14.035577 eea32eff-a2da-4a60-a357-27f8d8f95e9c {"md5": "cc6e2fd7ba5d4c5a7a929136936aae0b", "pid": "1086511239", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086511239", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086511239", "source": "GND"}], "variant_name": ["Université de Corti"], "preferred_name": "Université de Corte", "variant_access_point": ["Université de Corti"], "authorized_access_point": "Université de Corte"} 1 -2023-07-08 08:15:14.138977 2023-07-08 08:15:14.138984 bf820983-3539-44d6-86a2-7a177488e580 {"md5": "805a289f624806ca48f6f74f63b589c9", "pid": "1086545605", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086545605", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086545605", "source": "GND"}], "variant_name": ["Genève. Conseil des Théâtres et de la Musique", "CTM"], "preferred_name": "Conseil genevois des Théâtres et de la Musique", "variant_access_point": ["Genève. Kanton. Conseil des Théâtres et de la Musique", "CTM. Conseil des Théâtres et de la Musique"], "authorized_access_point": "Conseil genevois des Théâtres et de la Musique"} 1 -2023-07-08 08:15:14.222135 2023-07-08 08:15:14.222139 dcc63260-b215-4d13-b2bd-c5a890f18845 {"md5": "54dd555dd9ab93c703169b8edcc88cf4", "pid": "1086572882", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086572882", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086572882", "source": "GND"}], "preferred_name": "Schmalspurbahn Frutigen-Adelboden-Lenk", "country_associated": "sz", "date_of_establishment": "1904", "authorized_access_point": "Schmalspurbahn Frutigen-Adelboden-Lenk. Projekt", "biographical_information": ["Schmalspurbahn Frutigen-Adelboden-Lenk (1904) - projektierte schmalspurige Eisenbahn von Frutigen nach Adelboden/Lenk"]} 1 -2023-07-08 08:15:14.307109 2023-07-08 08:15:14.307113 25ceb7ca-9e08-4409-815c-b8eaa26613c1 {"md5": "efedb3963731d60c4eec73b2c221d110", "pid": "1086591453", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086591453", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086591453", "source": "GND"}], "variant_name": ["Railarch"], "preferred_name": "Planergemeinschaft Railarch", "variant_access_point": ["Railarch"], "authorized_access_point": "Planergemeinschaft Railarch. Olten"} 1 -2023-07-08 08:15:14.387839 2023-07-08 08:15:14.387844 60bd9ac5-1090-487f-ae34-ef2be934939b {"md5": "3dec09755d23db56c4945f53a4a7eb44", "pid": "1086599594", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086599594", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086599594", "source": "GND"}], "preferred_name": "Allgemeine Wohnungsbau-Genossenschaft", "country_associated": "sz", "date_of_establishment": "1919", "authorized_access_point": "Allgemeine Wohnungsbau-Genossenschaft", "biographical_information": ["Allgemeine Wohnungsbau-Genossenschaft Lyss (1919-?)"]} 1 -2023-07-08 08:15:14.474607 2023-07-08 08:15:14.474612 63653462-6975-4de3-95f6-dc88067910ee {"md5": "e9f169693650d6d92fc161233a979c59", "pid": "1086646843", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086646843", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086646843", "source": "GND"}], "variant_name": ["American Library Association. Annual Conference"], "preferred_name": "American Library Association. Conference", "variant_access_point": ["American Library Association. Annual Conference"], "authorized_access_point": "American Library Association. Conference"} 1 -2023-07-08 08:15:14.582027 2023-07-08 08:15:14.58203 f55546ec-dfca-4169-8aad-caea616d052f {"md5": "901c3c8305ba04451bef69e6218e6216", "pid": "1086671775", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086671775", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086671775", "source": "GND"}], "variant_name": ["Mieterschutzverband"], "preferred_name": "Mieterschutzverband der Stadt Bern und Umgebung", "country_associated": "sz", "date_of_termination": "1972", "variant_access_point": ["Mieterschutzverband"], "date_of_establishment": "1928", "authorized_access_point": "Mieterschutzverband der Stadt Bern und Umgebung"} 1 -2023-07-08 08:15:14.673338 2023-07-08 08:15:14.673342 3e20c78a-8324-49a2-9765-853e5dda768e {"md5": "a51aa5dda2225e10b3256d96c722881f", "pid": "1086700902", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086700902", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086700902", "source": "GND"}], "variant_name": ["Committee on Utilities"], "preferred_name": "National Research Council. Transportation Research Board. Committee on Utilities", "country_associated": "xxu", "variant_access_point": ["Committee on Utilities. National Research Council, USA. Transportation Research Board"], "authorized_access_point": "National Research Council. USA. Transportation Research Board. Committee on Utilities"} 1 -2023-07-08 08:15:14.768908 2023-07-08 08:15:14.768913 8ac88c78-d57c-4df5-a73e-68d7e616debf {"md5": "d50d183f0565a6d2af80e4489ea025f7", "pid": "1086728939", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086728939", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086728939", "source": "GND"}], "preferred_name": "Centre Le Tram", "authorized_access_point": "Centre Le Tram. Carouge"} 1 -2023-07-08 08:15:14.853833 2023-07-08 08:15:14.853841 7720c71a-016a-4a3b-b2b3-075115d456aa {"md5": "9d005b218d0ef16ccb553aa30c224ce5", "pid": "1086730003", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086730003", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086730003", "source": "GND"}], "preferred_name": "Upravlenie Po Delam Architektury Pri Sovete Ministrov", "authorized_access_point": "Upravlenie Po Delam Architektury Pri Sovete Ministrov. Rsfsr"} 1 -2023-07-08 08:15:14.936179 2023-07-08 08:15:14.936182 e581795e-60cf-468e-99c3-e632b4136ae2 {"md5": "da2a31950903f432887ec530413bb2f1", "pid": "1086746554", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086746554", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086746554", "source": "GND"}], "variant_name": ["Gaudard, Gabriel"], "preferred_name": "Gaudard", "variant_access_point": ["Gaudard, Gabriel. Buchhandlung, Bern"], "authorized_access_point": "Gaudard. Buchhandlung, Bern"} 1 -2023-07-08 08:15:15.009128 2023-07-08 08:15:15.009131 b813c055-4315-4141-b989-7615f493664b {"md5": "de6ccf3f05cc44a32a9b4c87786ed37e", "pid": "1086766326", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086766326", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086766326", "source": "GND"}], "preferred_name": "Società cooperativa di Zurigo", "authorized_access_point": "Società cooperativa di Zurigo"} 1 -2023-07-08 08:15:15.087356 2023-07-08 08:15:15.087364 90d21795-d68c-4751-982f-6e703d2a40ca {"md5": "21ed0c9e399e05907c7f9c654cf6870e", "pid": "1086780884", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086780884", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086780884", "source": "GND"}], "variant_name": ["Organisation Mondiale de la Santé. Comité Régional de l'Europe. Session", "Weltgesundheitsorganisation. Regionalkomitee für Europa. Tagung"], "preferred_name": "World Health Organization. Regional Committee for Europe. Session", "variant_access_point": ["Organisation Mondiale de la Santé. Comité Régional de l'Europe. Session", "Weltgesundheitsorganisation. Regionalkomitee für Europa. Tagung"], "authorized_access_point": "World Health Organization. Regional Committee for Europe. Session"} 1 -2023-07-08 08:15:15.178537 2023-07-08 08:15:15.178545 7d3707a5-36ed-47fa-94f7-5ceb6f7074a0 {"md5": "1885471c0d0f395ff157fde0ed8ad6c8", "pid": "1086783476", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086783476", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086783476", "source": "GND"}], "preferred_name": "Chaozhou shijian sheju", "authorized_access_point": "Chaozhou shijian sheju"} 1 -2023-07-08 08:15:15.383115 2023-07-08 08:15:15.383125 52803307-22fb-470c-821c-893c3b1fb26e {"md5": "50a6b3591d3219d74fa479a1bef3075f", "pid": "1086814347", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086814347", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086814347", "source": "GND"}], "variant_name": ["GRET"], "preferred_name": "Groupe de recherche et d'échanges technologiques", "country_associated": "fr", "variant_access_point": ["GRET. Abkuerzung"], "date_of_establishment": "1976", "authorized_access_point": "Groupe de recherche et d'échanges technologiques"} 1 -2023-07-08 08:15:15.471827 2023-07-08 08:15:15.47183 bec9be51-39ba-43a2-856b-d09850d2c572 {"md5": "659130ff0936f953497c88ec05c1367a", "pid": "1086828542", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086828542", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086828542", "source": "GND"}], "preferred_name": "Kinder- und Jugendhilfegesetz", "authorized_access_point": "Kinder- und Jugendhilfegesetz"} 1 -2023-07-08 08:15:15.557753 2023-07-08 08:15:15.557763 ef105874-7124-429c-8ba3-aeec52eda88d {"md5": "a41e910b508b64b363c80d5d403ed733", "pid": "1086839668", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086839668", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086839668", "source": "GND"}], "variant_name": ["Centro studi naturalistici bresciani"], "preferred_name": "Centro studi naturalistici bresciani", "variant_access_point": ["Centro studi naturalistici bresciani. Italia"], "authorized_access_point": "Centro studi naturalistici bresciani. Brescia"} 1 -2023-07-08 08:15:15.655212 2023-07-08 08:15:15.655217 b424689c-2d22-439d-bc27-5fbefa163370 {"md5": "2332c9bc8f0314bcd516198e708af214", "pid": "1086844092", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086844092", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086844092", "source": "GND"}], "preferred_name": "Istituto Federale delle Casse di Risparmio delle Venezie", "authorized_access_point": "Istituto Federale delle Casse di Risparmio delle Venezie. Italia"} 1 -2023-07-08 08:15:15.760732 2023-07-08 08:15:15.760737 04b2aa27-a6b7-491a-bb75-cd36e87d88be {"md5": "0d2bb37f5864609454a077a31b4363cd", "pid": "108685604X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/108685604X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/108685604X", "source": "GND"}], "preferred_name": "Orts- und Weinbaumuseum Neftenbach", "authorized_access_point": "Orts- und Weinbaumuseum Neftenbach"} 1 -2023-07-08 08:15:15.847339 2023-07-08 08:15:15.847348 d2cfc2aa-0586-4c89-a338-89c5ba96018e {"md5": "1f39c8c14be349e4e9fd5968fed64e00", "pid": "1086971531", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086971531", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086971531", "source": "GND"}], "variant_name": ["Université de Genève. Département d'histoire générale. Unité d'histoire suisse"], "preferred_name": "Université de Genève. Unité d'histoire suisse", "country_associated": "sz", "variant_access_point": ["Université de Genève. Département d'histoire générale. Unité d'histoire suisse"], "authorized_access_point": "Université de Genève. Unité d'histoire suisse"} 1 -2023-07-08 08:15:16.02345 2023-07-08 08:15:16.023455 8c3f3e9c-e12b-487c-830c-3542f0664eae {"md5": "b3252c65e50566e813053b88449dfd8a", "pid": "1087202949", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1087202949", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087202949", "source": "GND"}], "preferred_name": "Cappella Nova Graz", "authorized_access_point": "Cappella Nova Graz"} 1 -2023-07-08 08:15:16.125212 2023-07-08 08:15:16.125219 5a2b8e97-0d54-4ad4-bb7d-88c2b92e2744 {"md5": "2141191040a6efda22d6ac284722a45d", "pid": "1087258685", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1087258685", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087258685", "source": "GND"}], "preferred_name": "Geographical Research Centre", "authorized_access_point": "Geographical Research Centre. Patna"} 1 -2023-07-08 08:15:16.234387 2023-07-08 08:15:16.234395 650021ea-5141-4ce6-ae23-71db5fa2397a {"md5": "842c1e889e5e5afccadfff854e92da60", "pid": "1087265827", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1087265827", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087265827", "source": "GND"}], "variant_name": ["Eötvös Lóránd Tudományegyetem. Bölcsészettudományi Kar. Román Filológiai Tanszék", "Román Filológiai Tanszék"], "preferred_name": "Eötvös Loránd Tudományegyetem. Román Filológiai Tanszék", "variant_access_point": ["Eötvös Lóránd Tudományegyetem. Budapest. Bölcsészettudományi Kar. Román Filológiai Tanszék", "Román Filológiai Tanszék. Budapest"], "authorized_access_point": "Eötvös Loránd Tudományegyetem. Budapest. Román Filológiai Tanszék"} 1 -2023-07-08 08:15:16.324671 2023-07-08 08:15:16.324678 c6667641-e178-42e8-8a55-b30b66dc8eee {"md5": "a0c4b6ace39fc90f9407b88eac48af7f", "pid": "1087266157", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1087266157", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087266157", "source": "GND"}], "variant_name": ["Vysšie Školy Litovskoj SSR", "Vysšie Učebnye Zavedenija Litovskoj SSR"], "preferred_name": "Lietuvos TSR Aukštosios Mokyklos", "variant_access_point": ["Vysšie Školy Litovskoj SSR. Vilnius", "Vysšie Učebnye Zavedenija Litovskoj SSR. Vilnius"], "authorized_access_point": "Lietuvos TSR Aukštosios Mokyklos. Vilnius"} 1 -2023-07-08 08:15:16.417716 2023-07-08 08:15:16.417724 293d76e2-8a08-45e0-abb7-3bf63955cc68 {"md5": "c3b7d2efa722583851785bb6f56a0959", "pid": "1087273897", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1087273897", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087273897", "source": "GND"}], "variant_name": ["Schweiz. Bundesamt für Umwelt, Wald und Landschaft. Gib dem \\"Unkraut\\" eine Chance!", "Suisse. Office Fédéral de l'Environnement, des Forêts et du Paysage. Gib dem \\"Unkraut\\" eine Chance!", "Svizzera. Ufficio Federale dell'Ambiente, delle Foreste e del Paesaggio. Gib dem \\"Unkraut\\" eine Chance!", "Svizra. Uffizi Federal d'Ambient, Guaud e Cuntrada. Gib dem \\"Unkraut\\" eine Chance!", "Schweiz. Office Fédéral de l'Environnement, des Forêts et du Paysage. Gib dem \\"Unkraut\\" eine Chance!", "Schweiz. Ufficio Federale dell'Ambiente, delle Foreste e del Paesaggio. Gib dem \\"Unkraut\\" eine Chance!", "Schweiz. Uffizi Federal d'Ambient, Guaud e Cuntrada. Gib dem \\"Unkraut\\" eine Chance!", "Schweiz. Eidgenössisches Departement des Innern. Bundesamt für Umwelt, Wald und Landschaft. Gib dem \\"Unkraut\\" eine Chance!", "Suisse. Département Fédéral de l'Intérieur. Office Fédéral de l'Environnement, des Forêts et du Paysage. Gib dem \\"Unkraut\\" eine Chance!", "Svizzera. Dipartimento Federale dell'Interno. Ufficio Federale dell'Ambiente, delle Foreste e del Paesaggio. Gib dem \\"Unkraut\\" eine Chance!", "Svizra. Departament Federal da l'Intern. Uffizi Federal d'Ambient, Guaud e Cuntrada. Gib dem \\"Unkraut\\" eine Chance!", "Schweiz. Departament Federal da l'Intern. Uffizi Federal d'Ambient, Guaud e Cuntrada. Gib dem \\"Unkraut\\" eine Chance!", "Schweiz. Dipartimento Federale dell'Interno. Ufficio Federale dell'Ambiente, delle Foreste e del Paesaggio. Gib dem \\"Unkraut\\" eine Chance!", "Schweiz. Département Fédéral de l'Intérieur. Office Fédéral de l'Environnement, des Forêts et du Paysage. Gib dem \\"Unkraut\\" eine Chance!"], "preferred_name": "Gib dem \\"Unkraut\\" eine Chance!", "variant_access_point": ["Schweiz. Bundesamt für Umwelt, Wald und Landschaft. Gib dem \\"Unkraut\\" eine Chance!", "Suisse. Office Fédéral de l'Environnement, des Forêts et du Paysage. Gib dem \\"Unkraut\\" eine Chance!", "Svizzera. Ufficio Federale dell'Ambiente, delle Foreste e del Paesaggio. Gib dem \\"Unkraut\\" eine Chance!", "Svizra. Uffizi Federal d'Ambient, Guaud e Cuntrada. Gib dem \\"Unkraut\\" eine Chance!", "Schweiz. Office Fédéral de l'Environnement, des Forêts et du Paysage. Gib dem \\"Unkraut\\" eine Chance!", "Schweiz. Ufficio Federale dell'Ambiente, delle Foreste e del Paesaggio. Gib dem \\"Unkraut\\" eine Chance!", "Schweiz. Uffizi Federal d'Ambient, Guaud e Cuntrada. Gib dem \\"Unkraut\\" eine Chance!", "Schweiz. Eidgenössisches Departement des Innern. Bundesamt für Umwelt, Wald und Landschaft. Gib dem \\"Unkraut\\" eine Chance!", "Suisse. Département Fédéral de l'Intérieur. Office Fédéral de l'Environnement, des Forêts et du Paysage. Gib dem \\"Unkraut\\" eine Chance!", "Svizzera. Dipartimento Federale dell'Interno. Ufficio Federale dell'Ambiente, delle Foreste e del Paesaggio. Gib dem \\"Unkraut\\" eine Chance!", "Svizra. Departament Federal da l'Intern. Uffizi Federal d'Ambient, Guaud e Cuntrada. Gib dem \\"Unkraut\\" eine Chance!", "Schweiz. Departament Federal da l'Intern. Uffizi Federal d'Ambient, Guaud e Cuntrada. Gib dem \\"Unkraut\\" eine Chance!", "Schweiz. Dipartimento Federale dell'Interno. Ufficio Federale dell'Ambiente, delle Foreste e del Paesaggio. Gib dem \\"Unkraut\\" eine Chance!", "Schweiz. Département Fédéral de l'Intérieur. Office Fédéral de l'Environnement, des Forêts et du Paysage. Gib dem \\"Unkraut\\" eine Chance!"], "authorized_access_point": "Gib dem \\"Unkraut\\" eine Chance!. Schweiz"} 1 -2023-07-08 08:15:16.516588 2023-07-08 08:15:16.516597 a50d6f12-22c9-4c5c-8150-2836b0373bba {"md5": "8622e6ced5a9d77bccf9b826cbc97563", "pid": "1087296900", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1087296900", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087296900", "source": "GND"}], "variant_name": ["Old English Group"], "preferred_name": "Modern Language Association of America. Old English Group", "country_associated": "xxu", "variant_access_point": ["Old English Group. Modern Language Association of America"], "authorized_access_point": "Modern Language Association of America. Old English Group"} 1 -2023-07-08 08:15:16.613833 2023-07-08 08:15:16.613842 41874058-6d14-460c-952c-741a586dbfb7 {"md5": "21f6fe4effa2d849becacc5810dc1360", "pid": "1087307619", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1087307619", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087307619", "source": "GND"}], "variant_name": ["American Congress on Surveying and Mapping. Property Surveys Division"], "preferred_name": "American Congress on Surveying and Mapping. Land Surveys Division", "variant_access_point": ["American Congress on Surveying and Mapping. Property Surveys Division"], "authorized_access_point": "American Congress on Surveying and Mapping. Land Surveys Division"} 1 -2023-07-08 08:15:31.123111 2023-07-08 08:15:31.123123 928141b0-64c4-4f9b-b189-ef216cd21bf2 {"md5": "6c3677be67acfe2831ae9edac4bd4ec6", "pid": "1116983575", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1116983575", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1116983575", "source": "GND"}], "variant_name": ["Aekk, Nickolai"], "preferred_name": "Ekk, Nikolaj", "variant_access_point": ["Aekk, Nickolai"], "authorized_access_point": "Ekk, Nikolaj"} 1 -2023-07-08 08:15:16.725397 2023-07-08 08:15:16.725401 99bbbd18-eb66-433b-8ef9-04a5f716cd71 {"md5": "bbf87f6cc274e3222ac995d121dabed2", "pid": "1087324378", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1087324378", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087324378", "source": "GND"}], "variant_name": ["Cooperative Extension"], "preferred_name": "Northeast Regional Agricultural Engineering Service. Cooperative Extension", "variant_access_point": ["Cooperative Extension. Northeast Regional Agricultural Engineering Service"], "authorized_access_point": "Northeast Regional Agricultural Engineering Service. Cooperative Extension"} 1 -2023-07-08 08:15:16.832771 2023-07-08 08:15:16.832783 fc9e65d1-61e1-4461-8359-6249bb5f345b {"md5": "4176fa061c0930787b851aff47d98f1f", "pid": "1087335108", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1087335108", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087335108", "source": "GND"}], "variant_name": ["Commissione Veneto-Friulana-Giuliana per lo Sci di Fondo Escursionistico"], "preferred_name": "Club Alpino Italiano. Commissione Veneto-Friulana-Giuliana per lo Sci di Fondo Escursionistico", "variant_access_point": ["Commissione Veneto-Friulana-Giuliana per lo Sci di Fondo Escursionistico. Club Alpino Italiano"], "authorized_access_point": "Club Alpino Italiano. Commissione Veneto-Friulana-Giuliana per lo Sci di Fondo Escursionistico"} 1 -2023-07-08 08:15:16.914731 2023-07-08 08:15:16.914742 ceb1f38f-3e53-4f6a-ad66-50aadd67e5fe {"md5": "9dc767cac7d687519facf7ec54b892b4", "pid": "1087354226", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1087354226", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087354226", "source": "GND"}], "variant_name": ["Centre for the Study of Education in Developing Countries", "CESO", "Centrum voor de studie van het onderwijs in ontwikkelingslanden", "CESO", "Centre for the Study of Education in Developing Countries"], "preferred_name": "Centrum voor de Studie van het Onderwijs in Ontwikkelingslanden", "variant_access_point": ["Centre for the Study of Education in Developing Countries. 's-Gravenhage", "CESO. Centrum voor de Studie van het Onderwijs in Ontwikkelingslanden, 's-Gravenhage", "Centrum voor de studie van het onderwijs in ontwikkelingslanden. 's Gravenhage", "CESO. Centrum voor de studie van het onderwijs in ontwikkelingslanden", "Centre for the Study of Education in Developing Countries. The Hague"], "authorized_access_point": "Centrum voor de Studie van het Onderwijs in Ontwikkelingslanden. 's-Gravenhage"} 1 -2023-07-08 08:15:16.994969 2023-07-08 08:15:16.994974 d16a8102-a2cd-4ea5-a8b1-c56e40929e55 {"md5": "1f09ff83812aebe76b443ba27970f9ce", "pid": "1087364086", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1087364086", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087364086", "source": "GND"}], "variant_name": ["Ministerstvo čelljulozno Bumažnoj Promyšlennosti", "Ministerstvo Lesnoj, čelljulozno Bumažnoj Promyšlennosti"], "preferred_name": "Ministerstvo Lesnoj, čelljulozno Bumažnoj I Derevoobrabatyvajuščej Promyšlennosti", "variant_access_point": ["Ministerstvo čelljulozno Bumažnoj Promyšlennosti. Sssr", "Ministerstvo Lesnoj, čelljulozno Bumažnoj Promyšlennosti. Sssr"], "authorized_access_point": "Ministerstvo Lesnoj, čelljulozno Bumažnoj I Derevoobrabatyvajuščej Promyšlennosti. Sssr"} 1 -2023-07-08 08:15:17.071688 2023-07-08 08:15:17.071693 2b8fbfb8-420f-443d-ab77-4dad035eb56c {"md5": "a05846327b790a1998eae3e723b8da60", "pid": "1087368367", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1087368367", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087368367", "source": "GND"}], "variant_name": ["FAO. Global Rinderpest Eradication Programme", "GREP"], "preferred_name": "Global Rinderpest Eradication Programme", "variant_access_point": ["FAO. Global Rinderpest Eradication Programme", "GREP. Global Rinderpest Eradication Programme"], "authorized_access_point": "Global Rinderpest Eradication Programme"} 1 -2023-07-08 08:15:17.239199 2023-07-08 08:15:17.239203 4480dbed-b080-4088-82fa-2a017829cd89 {"md5": "99c76bc0a0e457905e4b15492d3beabe", "pid": "1087450594", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1087450594", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087450594", "source": "GND"}], "preferred_name": "Jan Becher String Quartet", "authorized_access_point": "Jan Becher String Quartet"} 1 -2023-07-08 08:15:17.321723 2023-07-08 08:15:17.321729 2ae41f3a-35c1-4797-968e-53cfee2afad8 {"md5": "b5c4e20e330f49a57ceae10dfbc8d9e9", "pid": "1087461731", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1087461731", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087461731", "source": "GND"}], "preferred_name": "Spiritwood Scribes", "authorized_access_point": "Spiritwood Scribes"} 1 -2023-07-08 08:15:19.615536 2023-07-08 08:15:19.615544 29f6ceb3-c38a-403d-a59a-131ad6056dec {"md5": "9592d0b2b42a48b37dfa8f1ff0089703", "pid": "1089580274", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1089580274", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089580274", "source": "GND"}], "date_of_birth": "1764", "date_of_death": "1844", "preferred_name": "Benker, Leodegar", "country_associated": "sz", "authorized_access_point": "Benker, Leodegar, 1764-1844", "biographical_information": ["Pfarrer; Respondent in Zürich; 1781"]} 1 -2023-07-08 08:15:17.41735 2023-07-08 08:15:17.417358 2a4dacab-9b9b-4d4c-a515-a5ac2d49ddb6 {"md5": "9dd83e38c67251bd17de7a09f7a91c6d", "pid": "1087515092", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1087515092", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087515092", "source": "GND"}], "variant_name": ["Canada. Direction des Ressources Non-Renouvelables du Nord", "Canada. Northern Non-Renewable Resources Branch", "Direction des Ressources Non-Renouvelables du Nord", "Canada. Department of Indian Affairs and Northern Development. Northern Affairs Program. Northern Non-Renewable Resources Branch", "Canada. Department of Indian Affairs and Northern Development. Northern Affairs Program. Direction des Ressources Non-Renouvelables du Nord", "Canada. Ministère des Affaires Indiennes et du Nord Canadien. Programme des Affaires du Nord. Direction des Ressources Non-Renouvelables", "Northern Non-Renewable Resources Branch"], "preferred_name": "Canada. Northern Non-Renewable Resources Branch", "country_associated": "xxc", "variant_access_point": ["Canada. Direction des Ressources Non-Renouvelables du Nord", "Canada. Northern Non-Renewable Resources Branch", "Direction des Ressources Non-Renouvelables du Nord. Canada", "Canada. Department of Indian Affairs and Northern Development. Northern Affairs Program. Northern Non-Renewable Resources Branch", "Canada. Department of Indian Affairs and Northern Development. Northern Affairs Program. Direction des Ressources Non-Renouvelables du Nord", "Canada. Ministère des Affaires Indiennes et du Nord Canadien. Programme des Affaires du Nord. Direction des Ressources Non-Renouvelables", "Northern Non-Renewable Resources Branch. Canada"], "authorized_access_point": "Canada. Northern Non-Renewable Resources Branch"} 1 -2023-07-08 08:15:17.511873 2023-07-08 08:15:17.511881 6284381c-00f0-4a12-8405-380e07176a14 {"md5": "be8c081708025ea64a295417bc0edb16", "pid": "1087538092", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1087538092", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087538092", "source": "GND"}], "preferred_name": "Kulturgemeinschaft der Emigranten in Zürich", "country_associated": "sz", "date_of_termination": "1945", "date_of_establishment": "1941", "authorized_access_point": "Kulturgemeinschaft der Emigranten in Zürich"} 1 -2023-07-08 08:15:17.605459 2023-07-08 08:15:17.605466 ef6028e0-4cb3-49b9-b9d6-bc9fb4510b1b {"md5": "3c28643d4feaed2560528c56aff03605", "pid": "1087545471", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1087545471", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087545471", "source": "GND"}], "preferred_name": "Batsford Bookseller & Publisher", "authorized_access_point": "Batsford Bookseller & Publisher. London"} 1 -2023-07-08 08:15:17.697612 2023-07-08 08:15:17.697617 e19ca09d-b50f-4790-85f9-1870bf97b18a {"md5": "5b60adac4c502391579f431038a72bdd", "pid": "108756171X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/108756171X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/108756171X", "source": "GND"}], "preferred_name": "Conseil des Bois du Nord", "authorized_access_point": "Conseil des Bois du Nord. Stockholm"} 1 -2023-07-08 08:15:17.813904 2023-07-08 08:15:17.813934 70d35d30-a589-4d76-9f91-ff09a0d639ca {"md5": "679826ade09d1083654ef4a2f3c520e6", "pid": "1087563429", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1087563429", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087563429", "source": "GND"}], "variant_name": ["Museo delle Piccole terme traianee", "Palazzo Valentini. Piccole terme traianee"], "preferred_name": "Piccole terme traianee", "variant_access_point": ["Museo delle Piccole terme traianee. Roma", "Palazzo Valentini. Roma. Piccole terme traianee"], "authorized_access_point": "Piccole terme traianee. Roma"} 1 -2023-07-08 08:15:17.904545 2023-07-08 08:15:17.90455 34e12b89-caee-4e80-a821-b4ef5c982865 {"md5": "e008dc55ef195b25846efd65e322c2d6", "pid": "1087600936", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1087600936", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087600936", "source": "GND"}], "preferred_name": "Nationales Propagandabüro für Milch, Butter und Käse", "authorized_access_point": "Nationales Propagandabüro für Milch, Butter und Käse. Paris"} 1 -2023-07-08 08:15:17.98702 2023-07-08 08:15:17.987024 493bb0ed-2062-408d-a02b-3d35f791b0db {"md5": "c7064fca4dfdf96b48fd2b7e087dc670", "pid": "1087603781", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1087603781", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087603781", "source": "GND"}], "preferred_name": "Laboratory Animals Centre Diets Advisory Committee", "authorized_access_point": "Laboratory Animals Centre Diets Advisory Committee"} 1 -2023-07-08 08:15:18.082303 2023-07-08 08:15:18.082309 6f839a6b-859e-4882-b5a4-c25e238745bf {"md5": "69f6aaade156e1298fff81dd84488c14", "pid": "1088444008", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1088444008", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1088444008", "source": "GND"}], "preferred_name": "Meyer, Lia", "country_associated": "gw", "authorized_access_point": "Meyer, Lia", "biographical_information": ["Buchbesitz: Privatbibliothek Lia Meyer"]} 1 -2023-07-08 08:15:18.155043 2023-07-08 08:15:18.155047 224ba2b9-85af-42c1-8547-86a7e603ee8e {"md5": "39fdf904eec8ef8cf7e1b93bed2f9a1d", "pid": "1088579485", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1088579485", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1088579485", "source": "GND"}], "variant_name": ["Risebro, Henrik", "Risebro, Nils H.", "Risebro, N. H."], "preferred_name": "Risebro, Nils Henrik", "country_associated": "no", "variant_access_point": ["Risebro, Henrik", "Risebro, Nils H.", "Risebro, N. H."], "authorized_access_point": "Risebro, Nils Henrik"} 1 -2023-07-08 08:15:18.453406 2023-07-08 08:15:18.453411 6f5a5fe0-9589-4d95-a19b-d111e6d5223b {"md5": "599b339731a60a4e686824f95ea6d0a2", "pid": "1089282826", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1089282826", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089282826", "source": "GND"}], "variant_name": ["Usó, J. L."], "date_of_birth": "20. Jht.", "preferred_name": "Usó, J.-L.", "variant_access_point": ["Usó, J. L., 20. Jht."], "authorized_access_point": "Usó, J.-L., 20. Jht.", "biographical_information": ["Herausgeber, Mathematiker"]} 1 -2023-07-08 08:15:18.546961 2023-07-08 08:15:18.546972 4792cdc9-4722-4c4a-8b44-c19b918c3770 {"md5": "861c0faffe9f36846ef54414e0d31a85", "pid": "1089334826", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "qualifier": "Gräzist in Oxford", "identifier": "http://d-nb.info/gnd/1089334826", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089334826", "source": "GND"}], "variant_name": ["Vitelli, Cornelio, Gräzist in Oxford"], "date_of_birth": "15. Jh.", "preferred_name": "Vitellius, Cornelius, Gräzist in Oxford", "variant_access_point": ["Vitelli, Cornelio, Gräzist in Oxford, 15. Jh."], "authorized_access_point": "Vitellius, Cornelius, Gräzist in Oxford, 15. Jh."} 1 -2023-07-08 08:15:18.720971 2023-07-08 08:15:18.720976 1f0f896d-b809-4971-b1cc-a0430baf89d5 {"md5": "147933c3f86368bee93bfd1b36e0e76f", "pid": "1089387830", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1089387830", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089387830", "source": "GND"}], "date_of_birth": "1936", "preferred_name": "Nicholls, David", "authorized_access_point": "Nicholls, David, 1936-", "biographical_information": ["Historiker, Politologe, Theologe"]} 1 -2023-07-08 08:15:18.817253 2023-07-08 08:15:18.817261 3197aa16-05c1-4990-ab50-ca084ece6bbf {"md5": "6684bf5d51c24fd05c34ced58f0102fa", "pid": "1089390971", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1089390971", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089390971", "source": "GND"}], "date_of_birth": "1967", "preferred_name": "Walter, Hans-Jörg", "authorized_access_point": "Walter, Hans-Jörg, 1967-", "biographical_information": ["Künstler"]} 1 -2023-07-08 08:15:19.025402 2023-07-08 08:15:19.025408 7173da33-8e12-4cb4-a02d-b3f5be68d22a {"md5": "8c4fb85c75a42a588274fafcf743859c", "pid": "1089443617", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1089443617", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089443617", "source": "GND"}], "date_of_birth": "ca. 18. Jh.", "preferred_name": "Bilger, Daniel", "country_associated": "sz", "authorized_access_point": "Bilger, Daniel, ca. 18. Jh.", "biographical_information": ["Stadtpfarrer in Chur"]} 1 -2023-07-08 08:15:19.111839 2023-07-08 08:15:19.111842 dc69c4fb-933e-494c-a1cf-683c98d61aaa {"md5": "cac4b7fad969f4a9ec037a64cfa3cbe2", "pid": "1089455437", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1089455437", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089455437", "source": "GND"}], "variant_name": ["Eberhart, Hans Jacob"], "date_of_birth": "1642", "date_of_death": "1698", "preferred_name": "Eberhard, Hans Jakob", "variant_access_point": ["Eberhart, Hans Jacob, 1642-1698"], "authorized_access_point": "Eberhard, Hans Jakob, 1642-1698", "biographical_information": ["Pfarrer"]} 1 -2023-07-08 08:15:19.339519 2023-07-08 08:15:19.339524 fc0241d1-6b60-4060-a84b-158a9e7c1e94 {"md5": "4f6ca89b6c32c72b6c1b20cfd9862baa", "pid": "108951431X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/108951431X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/108951431X", "source": "GND"}], "date_of_birth": "1916", "date_of_death": "2001", "preferred_name": "Koch, Howard W.", "authorized_access_point": "Koch, Howard W., 1916-2001", "biographical_information": ["Filmproduzent, Filmregisseur"]} 1 -2023-07-08 08:15:19.432333 2023-07-08 08:15:19.432376 91d44984-e776-4855-8aa1-8675c5454b21 {"md5": "f3e177653852099e3ebf5671a564ad27", "pid": "1089572670", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1089572670", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089572670", "source": "GND"}], "variant_name": ["Ulrich, Johann Rudolf", "Ulrich, Rudolf"], "date_of_birth": "1654", "date_of_death": "1701", "preferred_name": "Ulrich, Hans Rudolf", "variant_access_point": ["Ulrich, Johann Rudolf, 1654-1701", "Ulrich, Rudolf, 1654-1701"], "authorized_access_point": "Ulrich, Hans Rudolf, 1654-1701", "biographical_information": ["Pfarrer"]} 1 -2023-07-08 08:15:19.523792 2023-07-08 08:15:19.523796 95ff6439-5edb-4fb5-8c85-32b33f13ed1e {"md5": "ff0dae57799eab6cb0da441de1d97b4f", "pid": "1089574282", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1089574282", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089574282", "source": "GND"}], "date_of_birth": "1883", "date_of_death": "1955", "preferred_name": "Keller-Diethelm, Willy Max", "authorized_access_point": "Keller-Diethelm, Willy Max, 1883-1955", "biographical_information": ["Kaufmann, Schweiz"]} 1 -2023-07-08 08:15:18.908956 2023-07-08 10:31:26.832047 6ade05c2-49de-49bf-89eb-f2f9d7c726be {"md5": "59696d45705b3c430a51e919fb9c18bc", "pid": "1089392907", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1089392907", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089392907", "source": "GND"}], "date_of_birth": "1968", "preferred_name": "Groh, Prisca", "country_associated": "sz", "authorized_access_point": "Groh, Prisca, 1968-"} 2 -2023-07-08 08:15:19.211752 2023-07-08 10:31:38.411315 8b8c3cce-b2ae-4e52-8c8a-4d5a3890aebf {"md5": "6a1a036498873bc2a7f23f16aade61d3", "pid": "1089460732", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1089460732", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089460732", "source": "GND"}], "variant_name": ["Johansson, Thomas"], "date_of_birth": "1943", "preferred_name": "Johansson, Thomas B.", "variant_access_point": ["Johansson, Thomas, 1943-"], "authorized_access_point": "Johansson, Thomas B., 1943-"} 2 -2023-07-08 08:15:19.688304 2023-07-08 08:15:19.688311 c5e28f47-19ce-4443-873f-470716787b46 {"md5": "40d50d58ff2b9164cf554bc9ad4f722e", "pid": "1089589018", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1089589018", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089589018", "source": "GND"}], "variant_name": ["Van den Zande, Martinus"], "date_of_birth": "16. Jht.", "preferred_name": "Zande, Martinus van den", "variant_access_point": ["Van den Zande, Martinus, 16. Jht."], "authorized_access_point": "Zande, Martinus van den, 16. Jht.", "biographical_information": ["Priester"]} 1 -2023-07-08 08:15:19.770713 2023-07-08 08:15:19.770722 59abc51a-3abd-47a9-8b6c-e7095165c6c2 {"md5": "10680cdef541d8cc0bfd63fae2433a26", "pid": "1089604890", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1089604890", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089604890", "source": "GND"}], "variant_name": ["Richter-Homberg, August", "Richter-Homberg, ..."], "preferred_name": "Richter, August", "variant_access_point": ["Richter-Homberg, August", "Richter-Homberg, ..."], "authorized_access_point": "Richter, August", "biographical_information": ["Pädagoge, Mathematiker"]} 1 -2023-07-08 08:15:19.865222 2023-07-08 08:15:19.865233 31c2f362-f18d-4259-80d9-f1ed02fa432e {"md5": "d218c2a087cf782b4e2d52034486f244", "pid": "1089638353", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1089638353", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089638353", "source": "GND"}], "preferred_name": "Wang shi", "country_associated": "cc", "parallel_access_point": ["汪氏", "汪氏"], "authorized_access_point": "Wang shi", "biographical_information": ["Vorname unbekannt"]} 1 -2023-07-08 08:15:19.946502 2023-07-08 08:15:19.94651 889e33a3-3ed5-4722-8f89-2a2fd993610c {"md5": "0178531652235cba4a4f74f7ee5066c7", "pid": "1089642393", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1089642393", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089642393", "source": "GND"}], "variant_name": ["Homem, Luís Manuel Cabrita Pais"], "preferred_name": "Homem, Luís", "variant_access_point": ["Homem, Luís Manuel Cabrita Pais"], "authorized_access_point": "Homem, Luís", "biographical_information": ["Philosoph"]} 1 -2023-07-08 08:15:20.122444 2023-07-08 08:15:20.122446 9818224a-1ade-4cc6-ae89-36179b490645 {"md5": "3b41a66150473d904994b7f09a250cca", "pid": "1089664389", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1089664389", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089664389", "source": "GND"}], "variant_name": ["伊奈, 正人"], "date_of_birth": "1956", "preferred_name": "Ina, Masato", "variant_access_point": ["伊奈, 正人, 1956-"], "authorized_access_point": "Ina, Masato, 1956-", "biographical_information": ["Soziologe"]} 1 -2023-07-08 08:15:20.194722 2023-07-08 08:15:20.194727 380f8c7e-de79-4a62-833a-ec88c2c82940 {"md5": "554eb9dfe602784cf5540813fc71fc21", "pid": "1089666802", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1089666802", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089666802", "source": "GND"}], "preferred_name": "Dake, Mark", "authorized_access_point": "Dake, Mark", "biographical_information": ["Sprecher"]} 1 -2023-07-08 08:15:20.271844 2023-07-08 08:15:20.27185 7dba3d21-bdba-4f62-b632-5ee0ceb2e695 {"md5": "f7f7a26393b29f074b8f54226d758edb", "pid": "1089669003", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1089669003", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089669003", "source": "GND"}], "date_of_birth": "1975", "preferred_name": "Ishida, Hitoshi", "country_associated": "ja", "parallel_access_point": ["石田, 仁, 1975-"], "authorized_access_point": "Ishida, Hitoshi, 1975-"} 1 -2023-07-08 08:15:20.369065 2023-07-08 08:15:20.369073 d326bd70-e6a2-4869-b39e-c48f7e9d4cdf {"md5": "a49840417b7ca1c6017e75f1d11b77fa", "pid": "1089693907", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1089693907", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089693907", "source": "GND"}], "variant_name": ["Zhao, Vincent", "Chiu, Vincent", "Chiu, Man-cheuk", "Chao, Wen-jar", "Zhao, Zhuo", "Zhao Wen Zhou", "Chuk, Vincent Chiu Man", "Chiu, Man Cheuk", "Zhao, Wenzuo Vincent", "Zhao, Wenzhou", "Zhao, Wen Zhou", "赵文卓", "趙文卓", "赵卓"], "date_of_birth": "1972", "preferred_name": "Zhao, Wenzhuo", "variant_access_point": ["Zhao, Vincent, 1972-", "Chiu, Vincent, 1972-", "Chiu, Man-cheuk, 1972-", "Chao, Wen-jar, 1972-", "Zhao, Zhuo, 1972-", "Zhao Wen Zhou, 1972-", "Chuk, Vincent Chiu Man, 1972-", "Chiu, Man Cheuk, 1972-", "Zhao, Wenzuo Vincent, 1972-", "Zhao, Wenzhou, 1972-", "Zhao, Wen Zhou, 1972-", "赵文卓, 1972-", "趙文卓, 1972-", "赵卓, 1972-"], "authorized_access_point": "Zhao, Wenzhuo, 1972-", "biographical_information": ["Schauspieler, Wushu-Kämpfer"]} 1 -2023-07-08 08:15:20.457113 2023-07-08 08:15:20.457117 0428974e-4c55-4a08-8d99-6f1f53d8ef18 {"md5": "f50f1f4b2b2c0f7707fe9047c976501a", "pid": "1089702655", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1089702655", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089702655", "source": "GND"}], "variant_name": ["Rana, Pramode Shamshere J. B.", "Pramode Shamshere Rana", "Rana, Pramode Shamshere", "Rana, Pramode S. J. B."], "date_of_birth": "1932", "preferred_name": "Pramode Shamshere J. B. Rana", "variant_access_point": ["Rana, Pramode Shamshere J. B., 1932-", "Pramode Shamshere Rana, 1932-", "Rana, Pramode Shamshere, 1932-", "Rana, Pramode S. J. B., 1932-"], "authorized_access_point": "Pramode Shamshere J. B. Rana, 1932-", "biographical_information": ["Jurist, Historiker"]} 1 -2023-07-08 08:15:20.531532 2023-07-08 08:15:20.53154 749f8b23-750b-40d5-8dda-daf54a76776a {"md5": "fd8639726a961e9ed13273ac2af37c0c", "pid": "1089766106", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1089766106", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089766106", "source": "GND"}], "date_of_birth": "1593", "date_of_death": "1619", "preferred_name": "Nantermi, Michel'Angelo", "authorized_access_point": "Nantermi, Michel'Angelo, 1593-1619"} 1 -2023-07-08 08:15:20.617942 2023-07-08 08:15:20.618028 b1342355-fe85-4c65-9b68-864831b1b5a2 {"md5": "ba7d715ed3dfb9f476c0517536759c01", "pid": "1089790732", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1089790732", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089790732", "source": "GND"}], "variant_name": ["Stupan, Johann Jakob"], "date_of_birth": "1651", "date_of_death": "16XX", "preferred_name": "Stupanus, Johann Jacob", "country_associated": "sz", "variant_access_point": ["Stupan, Johann Jakob, 1651-16XX"], "authorized_access_point": "Stupanus, Johann Jacob, 1651-16XX", "biographical_information": ["Sohn von Johann Niklaus Stupanus (1630-1672)"]} 1 -2023-07-08 08:15:20.802149 2023-07-08 08:15:20.802158 3869ca07-e19b-4960-9bc9-4376eb001cf5 {"md5": "1116e601098b0db4c0f4477ca7b49859", "pid": "1089904703", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1089904703", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089904703", "source": "GND"}], "date_of_birth": "1868", "date_of_death": "1898", "preferred_name": "Teichmüller, Hans", "authorized_access_point": "Teichmüller, Hans, 1868-1898", "biographical_information": ["geb. 10. Dez. 1868 in Basel, gest. 25.03.1898 in Berlin, Sohn von Gustav Teichmüller (1832-1888) und Lina Teichmüller-Cramer (1844-1894)"]} 1 -2023-07-08 08:15:20.892692 2023-07-08 08:15:20.892698 14765480-deaa-4e11-886b-048279626d26 {"md5": "458c2f35e9202d2308455f1eaf14c1b7", "pid": "1090478615", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1090478615", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1090478615", "source": "GND"}], "variant_name": ["Scuola di Guerra Aerea", "Scuola di Applicazione Aeronautica delle Cascine"], "preferred_name": "Scuola di Applicazione Aeronautica", "variant_access_point": ["Scuola di Guerra Aerea. Firenze", "Scuola di Applicazione Aeronautica delle Cascine. Firenze"], "authorized_access_point": "Scuola di Applicazione Aeronautica. Firenze"} 1 -2023-07-08 08:15:20.986211 2023-07-08 08:15:20.986215 9f648390-ad49-414d-9321-7904a260b21a {"md5": "fa961860dc4535a52a1dffe614e46d29", "pid": "1090479816", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1090479816", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1090479816", "source": "GND"}], "variant_name": ["Policy, Planning and Evaluation Branch", "Canada. Agriculture Canada. Policy, Planning and Evaluation Branch"], "preferred_name": "Canada. Policy, Planning and Evaluation Branch", "country_associated": "xxc", "variant_access_point": ["Policy, Planning and Evaluation Branch. Canada", "Canada. Agriculture Canada. Policy, Planning and Evaluation Branch"], "authorized_access_point": "Canada. Policy, Planning and Evaluation Branch"} 1 -2023-07-08 08:15:21.067779 2023-07-08 08:15:21.067787 b52c532f-76de-4d29-a298-d178ef33d9f3 {"md5": "e550717bfc1b5c0f11a49f6279bd10e4", "pid": "1090697538", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1090697538", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1090697538", "source": "GND"}], "variant_name": ["Lancellotus, Petrus", "Lancelloti, Pietro"], "preferred_name": "Lancellottus", "variant_access_point": ["Lancellotus, Petrus. Offizin, Bergamo", "Lancelloti, Pietro. Offizin, Bergamo"], "authorized_access_point": "Lancellottus. Offizin, Bergamo"} 1 -2023-07-08 08:15:21.158848 2023-07-08 08:15:21.158854 8e3df7b1-75fd-4d61-9adc-cd4466a68f04 {"md5": "bd2a27c01f63a6c3e029924dcfd8e16f", "pid": "1090699522", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1090699522", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1090699522", "source": "GND"}], "variant_name": ["Rosa, Jonas"], "preferred_name": "Rosa", "variant_access_point": ["Rosa, Jonas. Offizin, Heidelberg"], "authorized_access_point": "Rosa. Offizin, Heidelberg"} 1 -2023-07-08 08:15:21.244495 2023-07-08 08:15:21.244505 d398db78-b30e-4aed-9574-f5c805b5b430 {"md5": "1f47ff394ad1c2c4d55044130fa37a9f", "pid": "1090752598", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1090752598", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1090752598", "source": "GND"}], "variant_name": ["Henah, Hanś Yaḳuf", "Hena, Hansh Jakob", "Hanau, Hans Jacob"], "preferred_name": "Henah", "variant_access_point": ["Henah, Hanś Yaḳuf. Offizin, Hanau", "Hena, Hansh Jakob. Offizin, Hanau", "Hanau, Hans Jacob. Offizin, Hanau"], "authorized_access_point": "Henah. Offizin, Hanau"} 1 -2023-07-08 08:15:21.335461 2023-07-08 08:15:21.335469 7d9d5fb2-ee16-40d1-ac92-39784d609cf1 {"md5": "e28d63cdb3e264dbc89fb390c477f757", "pid": "1090809786", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1090809786", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1090809786", "source": "GND"}], "date_of_birth": "1969", "preferred_name": "Gaicher, Heimo", "country_associated": "gw", "authorized_access_point": "Gaicher, Heimo, 1969-"} 1 -2023-07-08 08:15:21.509097 2023-07-08 08:15:21.509102 657a27a1-8d73-4fcc-89ac-397a265e5033 {"md5": "57fd3ad60f0c587459ab0db54e27c76b", "pid": "1091235007", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1091235007", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1091235007", "source": "GND"}], "variant_name": ["Protection Cathodique"], "preferred_name": "Cathodic Protection", "variant_access_point": ["Protection Cathodique, 1986, Halifax"], "authorized_access_point": "Cathodic Protection, 1986, Halifax"} 1 -2023-07-08 08:15:21.597226 2023-07-08 08:15:21.597235 28bdd34e-6320-4d8b-8e98-d7e8aafbb3c2 {"md5": "796f3cd10fa56da974d537d46764dba8", "pid": "1091451982", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1091451982", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1091451982", "source": "GND"}], "variant_name": ["Theory of Singularities"], "preferred_name": "Symposium on the Theory of Singularities", "variant_access_point": ["Theory of Singularities, 1991, Trieste"], "authorized_access_point": "Symposium on the Theory of Singularities, 1991, Trieste"} 1 -2023-07-08 08:15:21.691463 2023-07-08 08:15:21.691469 790b89f6-c6f2-4ddf-bd02-f3ae6239997d {"md5": "a402cf0a994a99fd56a61b35988efc63", "pid": "1091613443", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1091613443", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1091613443", "source": "GND"}], "variant_name": ["Chung-Hwa Conference", "International Conference on Buddhism", "Conference on Buddhism"], "preferred_name": "Chung-Hwa International Conference on Buddhism", "variant_access_point": ["Chung-Hwa Conference", "International Conference on Buddhism. Chung-Hwa International Conference on Buddhism", "Conference on Buddhism. Chung-Hwa International Conference on Buddhism"], "authorized_access_point": "Chung-Hwa International Conference on Buddhism"} 1 -2023-07-08 08:15:21.793582 2023-07-08 08:15:21.793587 2e1328c9-5b87-4359-bc8b-b1ff02ae4df4 {"md5": "c0f14b8f0c1d3363a98fcc2af03fe065", "pid": "1091651787", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1091651787", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1091651787", "source": "GND"}], "preferred_name": "Festival France Cinema", "authorized_access_point": "Festival France Cinema"} 1 -2023-07-08 08:15:21.883333 2023-07-08 08:15:21.883341 2b774fb8-b336-4887-a870-b7f31a9c627a {"md5": "e03827fd76933ddfef9165cfe2ee8921", "pid": "1091678340", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1091678340", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1091678340", "source": "GND"}], "preferred_name": "Kolloquium \\"Sprachskepsis und Sprachmagie\\"", "authorized_access_point": "Kolloquium \\"Sprachskepsis und Sprachmagie\\""} 1 -2023-07-08 08:15:21.959174 2023-07-08 08:15:21.959178 c7e04d6a-76ff-48c9-9b5c-87381d953451 {"md5": "6c3bb0a309e1f7923793bb5985501923", "pid": "1091697396", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1091697396", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1091697396", "source": "GND"}], "preferred_name": "Symposion Innere Schulreform, Lehrer sein heute", "authorized_access_point": "Symposion Innere Schulreform, Lehrer sein heute"} 1 -2023-07-08 08:15:22.118164 2023-07-08 08:15:22.118173 bddfdb23-c4c2-49f9-9d88-4a5f4eecebc2 {"md5": "39c354919171c20cfe78e0ee0a9eff64", "pid": "1091698856", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1091698856", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1091698856", "source": "GND"}], "preferred_name": "Symposium Die Karolinger an der österreichischen Donau", "authorized_access_point": "Symposium Die Karolinger an der österreichischen Donau"} 1 -2023-07-08 08:15:22.197223 2023-07-08 08:15:22.197231 007b6c46-d83c-42e3-92a7-286a6bcd3f64 {"md5": "819faf03c4bff648fb7bc36d3c24c7cb", "pid": "1091702292", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1091702292", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1091702292", "source": "GND"}], "preferred_name": "Symposium on Exploring Brain Functional Anatomy with Positron Tomography", "authorized_access_point": "Symposium on Exploring Brain Functional Anatomy with Positron Tomography"} 1 -2023-07-08 08:15:22.288467 2023-07-08 08:15:22.288472 cca36e15-0d10-4e97-a6bb-47b3f049d7d8 {"md5": "4d46b3deddf6d1c3befd5c1609b632b3", "pid": "109172251X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/109172251X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/109172251X", "source": "GND"}], "variant_name": ["EFS conference"], "preferred_name": "Foundation for European Fiscal Studies", "variant_access_point": ["EFS conference"], "authorized_access_point": "Foundation for European Fiscal Studies. Rotterdam. Conference"} 1 -2023-07-08 08:15:22.376912 2023-07-08 08:15:22.376917 a410e851-db6f-4fc6-9754-eeab803ed08d {"md5": "421a8b8b7f836dd38e74e656efb24e7b", "pid": "109177918X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/109177918X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/109177918X", "source": "GND"}], "variant_name": ["Japan Conference on Discrete and Computation Geometry", "Conference on Discrete and Computation Geometry"], "preferred_name": "JCDCG 2000", "variant_access_point": ["Japan Conference on Discrete and Computation Geometry", "Conference on Discrete and Computation Geometry"], "authorized_access_point": "JCDCG 2000"} 1 -2023-07-08 08:15:22.469613 2023-07-08 08:15:22.469617 bc492a45-0653-40e0-9ceb-da02e5cd62b1 {"md5": "591cdaaff942d7c69799fcbac0baec65", "pid": "1091785813", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1091785813", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1091785813", "source": "GND"}], "preferred_name": "Augsburger Nachsorgesymposium", "authorized_access_point": "Augsburger Nachsorgesymposium"} 1 -2023-07-08 08:15:23.967056 2023-07-08 08:15:23.967059 6bab14c9-7bce-4202-bd0d-283039ab5dfb {"md5": "a5689d79ecd59b4d895fb665a0cc4080", "pid": "1092417966", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1092417966", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1092417966", "source": "GND"}], "preferred_name": "Technical Consultation to Draft a Legally-binding Instrument on Port State Measures to Prevent, Deter and Eliminate Illegal, Unreported and Unregulated Fishing", "authorized_access_point": "Technical Consultation to Draft a Legally-binding Instrument on Port State Measures to Prevent, Deter and Eliminate Illegal, Unreported and Unregulated Fishing"} 1 -2023-07-08 08:15:22.55545 2023-07-08 08:15:22.555458 39680873-46ab-4cb0-97e8-001243db1aeb {"md5": "994dfaea79f771fbd143b5b0b0e53531", "pid": "1091792305", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1091792305", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1091792305", "source": "GND"}], "variant_name": ["Georg-Forster-Symposion", "Internationales Georg Forster-Symposion", "Georg Forster-Symposion, Internationales"], "preferred_name": "Internationales Georg-Forster-Symposion", "variant_access_point": ["Georg-Forster-Symposion", "Internationales Georg Forster-Symposion", "Georg Forster-Symposion, Internationales"], "authorized_access_point": "Internationales Georg-Forster-Symposion"} 1 -2023-07-08 08:15:22.642801 2023-07-08 08:15:22.642807 8912e18f-5960-4ba0-9cd3-4c44b08bd427 {"md5": "c12778ec3e049aca9352359e83e8dfc0", "pid": "109179331X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/109179331X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/109179331X", "source": "GND"}], "variant_name": ["Conference on the Dead Sea Scrolls, Provo International", "International Conference on the Dead Sea Scrolls, Provo"], "preferred_name": "Provo International Conference on the Dead Sea Scrolls", "variant_access_point": ["Conference on the Dead Sea Scrolls, Provo International", "International Conference on the Dead Sea Scrolls, Provo"], "authorized_access_point": "Provo International Conference on the Dead Sea Scrolls"} 1 -2023-07-08 08:15:22.735713 2023-07-08 08:15:22.735722 d97458cb-e4bd-43e1-8b83-ca1212883dde {"md5": "a747dd1cb52d7deed589fd4b9752ee18", "pid": "1091822417", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1091822417", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1091822417", "source": "GND"}], "preferred_name": "NY Art Book Fair", "authorized_access_point": "NY Art Book Fair"} 1 -2023-07-08 08:15:22.826129 2023-07-08 08:15:22.826141 65f2294b-39f0-4fe2-b65a-9e27db955620 {"md5": "909918fbce89961cc0c8636722f91eb4", "pid": "1091849781", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1091849781", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1091849781", "source": "GND"}], "variant_name": ["Woodpecker Symposium"], "preferred_name": "International Woodpecker Symposium", "variant_access_point": ["Woodpecker Symposium. International Woodpecker Symposium"], "authorized_access_point": "International Woodpecker Symposium"} 1 -2023-07-08 08:15:22.91555 2023-07-08 08:15:22.91556 65c8dd12-2b51-46c4-9648-dbdd8f644454 {"md5": "9164146e326e7f27a8fd074724ef1f03", "pid": "1091883599", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1091883599", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1091883599", "source": "GND"}], "variant_name": ["Measurement of Photosynthetic Pigments in Freshwaters and Standardization of Methods [workshop]"], "preferred_name": "Workshop on the Measurement of Photosynthetic Pigments in Freshwaters and Standardization of Methods", "variant_access_point": ["Measurement of Photosynthetic Pigments in Freshwaters and Standardization of Methods [workshop]"], "authorized_access_point": "Workshop on the Measurement of Photosynthetic Pigments in Freshwaters and Standardization of Methods"} 1 -2023-07-08 08:15:23.001891 2023-07-08 08:15:23.001895 1d180fa1-785e-4c66-8c3f-8bd38684cdc4 {"md5": "fbce557fa0ed7c39190f08cde87c6314", "pid": "1091897085", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1091897085", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1091897085", "source": "GND"}], "variant_name": ["Colloquium Spectral Signatures of Objects in Remote Sensing [international]", "Colloque International Signatures Spectrales d'Objets en Teledetection", "Colloque International sur les Signatures Spectrales en Teledetection", "Signatures Spectrales en Teledetection [colloque international]"], "preferred_name": "International Colloquium Spectral Signatures of Objects in Remote Sensing", "variant_access_point": ["Colloquium Spectral Signatures of Objects in Remote Sensing [international]", "Colloque International Signatures Spectrales d'Objets en Teledetection", "Colloque International sur les Signatures Spectrales en Teledetection", "Signatures Spectrales en Teledetection [colloque international]"], "authorized_access_point": "International Colloquium Spectral Signatures of Objects in Remote Sensing"} 1 -2023-07-08 08:15:23.104521 2023-07-08 08:15:23.104527 0d42cc8d-a968-4e9d-9c99-e7ef4cd3129b {"md5": "222ca4f756a26bcc28ce13bc45dcb1e4", "pid": "1091907730", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1091907730", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1091907730", "source": "GND"}], "variant_name": ["Aids/Kaposis Sarcoma [international workshop]", "International Workshop entitled Acquired Immune Deficiency Syndrome - Aids - and Kaposis Sarcoma - Ks", "Acquired Immune Deficiency Syndrome - Aids - and Kaposis Sarcoma - Ks [international workshop]", "Workshop of the European Study Group on Epidemic of Acquired Immune Deficiency Syndrome and Kaposis Sarcoma - Aids/Ks"], "preferred_name": "International Workshop on Aids/Kaposis Sarcoma", "variant_access_point": ["Aids/Kaposis Sarcoma [international workshop]", "International Workshop entitled Acquired Immune Deficiency Syndrome - Aids - and Kaposis Sarcoma - Ks", "Acquired Immune Deficiency Syndrome - Aids - and Kaposis Sarcoma - Ks [international workshop]", "Workshop of the European Study Group on Epidemic of Acquired Immune Deficiency Syndrome and Kaposis Sarcoma - Aids/Ks"], "authorized_access_point": "International Workshop on Aids/Kaposis Sarcoma"} 1 -2023-07-08 08:15:23.21253 2023-07-08 08:15:23.212536 59c1cfce-b163-4491-a121-2491e8daec92 {"md5": "9ffea43f94bf10a19eeb6cb19351f6c5", "pid": "1091936803", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1091936803", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1091936803", "source": "GND"}], "variant_name": ["Annual Powder and Bulk Solids Conference / Exhibition", "Powder & Bulk Solids Conference / Exhibition", "Powder and Bulk Solids Conference / Exhibition", "Powder & Bulk Solids Conference and Exhibition", "Powder and Bulk Solids Conference and Exhibition", "Powder & Bulk Solids Conference", "Powder and Bulk Solids Conference"], "preferred_name": "Annual Powder & Bulk Solids Conference / Exhibition", "variant_access_point": ["Annual Powder and Bulk Solids Conference / Exhibition", "Powder & Bulk Solids Conference / Exhibition", "Powder and Bulk Solids Conference / Exhibition", "Powder & Bulk Solids Conference and Exhibition", "Powder and Bulk Solids Conference and Exhibition", "Powder & Bulk Solids Conference", "Powder and Bulk Solids Conference"], "authorized_access_point": "Annual Powder & Bulk Solids Conference / Exhibition"} 1 -2023-07-08 08:15:23.300464 2023-07-08 08:15:23.300468 cee3b9a0-9042-45f2-a9c7-f8416f8d6170 {"md5": "b96b2fc0e8b3e37bf00f9514da92b53e", "pid": "1091959382", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1091959382", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1091959382", "source": "GND"}], "variant_name": ["Conference on Three-Dimensional Microscopy: Image Acquisition and Processing", "Conference on Multidimensional Spectroscopy: Acquisition, Interpretation, and Automation", "SPIE Conference on Three-Dimensional and Multidimensinal Microscopy: Image Acquisition and Processing", "Conference on Three-Dimensional and Multidimensinal Microscopy: Image Acquisition and Processing", "SPIE Conference on Multidimensional Spectroscopy: Acquisition, Interpretatation and Automation", "Conference on Multidimensional Spectroscopy: Acquisition, Interpretatation and Automation", "Three-dimensional and Multidimensional Microscopy: Image Acquisition Processing"], "preferred_name": "Three-Dimensional Microscopy: Image Acquisition and Processing", "variant_access_point": ["Conference on Three-Dimensional Microscopy: Image Acquisition and Processing", "Conference on Multidimensional Spectroscopy: Acquisition, Interpretation, and Automation", "SPIE Conference on Three-Dimensional and Multidimensinal Microscopy: Image Acquisition and Processing", "Conference on Three-Dimensional and Multidimensinal Microscopy: Image Acquisition and Processing", "SPIE Conference on Multidimensional Spectroscopy: Acquisition, Interpretatation and Automation", "Conference on Multidimensional Spectroscopy: Acquisition, Interpretatation and Automation", "Three-dimensional and Multidimensional Microscopy: Image Acquisition Processing"], "authorized_access_point": "Three-Dimensional Microscopy: Image Acquisition and Processing"} 1 -2023-07-08 08:15:23.403399 2023-07-08 08:15:23.403408 2c5215aa-a84c-48e9-9097-37643876a4f2 {"md5": "7e8b0ca817806b4f06d1b61e7b2514bb", "pid": "1092040889", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1092040889", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1092040889", "source": "GND"}], "preferred_name": "Wagner: le Ring en Images (1994-1995 ; Paris)", "authorized_access_point": "Wagner: le Ring en Images (1994-1995 ; Paris)"} 1 -2023-07-08 08:15:23.478858 2023-07-08 08:15:23.478861 4c72fc30-b0d4-48b0-81ac-9f878a5783a0 {"md5": "66c8c701397ce7171248892075444d43", "pid": "109206639X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/109206639X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/109206639X", "source": "GND"}], "variant_name": ["VisSym", "Joint Eurographics/IEEE TCVG Symposium on Visualization", "Joint Eurographics/IEEE TCVG Symposium", "Joint Visualisation Symposium", "Eurographics/IEEE TCVG Symposium on Visualization", "Eurographics/IEEE TCVG Symposium on Visualisation", "Symposium on Visualization"], "preferred_name": "Joint Eurographics and IEEE TCVG Symposium on Visualization", "variant_access_point": ["VisSym. Joint Eurographics and IEEE TCVG Symposium on Visualization", "Joint Eurographics/IEEE TCVG Symposium on Visualization", "Joint Eurographics/IEEE TCVG Symposium", "Joint Visualisation Symposium", "Eurographics/IEEE TCVG Symposium on Visualization", "Eurographics/IEEE TCVG Symposium on Visualisation", "Symposium on Visualization"], "authorized_access_point": "Joint Eurographics and IEEE TCVG Symposium on Visualization"} 1 -2023-07-08 08:15:23.558573 2023-07-08 08:15:23.55858 3e40a3c7-f2c1-4c68-93c2-dae14b17c7f5 {"md5": "088183549f24a8d4e409d8a1a5ff79df", "pid": "1092274499", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1092274499", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1092274499", "source": "GND"}], "preferred_name": "Symposium on the Influence of the Map User on Map Design", "authorized_access_point": "Symposium on the Influence of the Map User on Map Design"} 1 -2023-07-08 08:15:23.666844 2023-07-08 08:15:23.666853 ea273a8e-b208-4ecd-8631-fd4662c916f4 {"md5": "8c50d13897f74d70385e669b8ce1decc", "pid": "109229578X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/109229578X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/109229578X", "source": "GND"}], "variant_name": ["Two-Day Symposium on Structural Design of Nuclear Power Plant Facilites"], "preferred_name": "Symposium on Structural Design of Nuclear Power Plant Facilities", "country_associated": "xxu", "variant_access_point": ["Two-Day Symposium on Structural Design of Nuclear Power Plant Facilites, 1972, Pittsburgh, Pa."], "authorized_access_point": "Symposium on Structural Design of Nuclear Power Plant Facilities, 1972, Pittsburgh, Pa."} 1 -2023-07-08 08:15:23.772629 2023-07-08 08:15:23.772634 1cbcf004-a574-4f75-9faa-9d6433b60c6b {"md5": "2f1a003d4652060a145bb75bf0624bae", "pid": "1092297278", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1092297278", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1092297278", "source": "GND"}], "variant_name": ["International Conference of the Association for the Promotion of South Asian Archaeology", "Conference of the Association for the Promotion of South Asian Archaeology", "International Conference of South Asian Archaeologists", "Conference of South Asian Archaeologists"], "preferred_name": "Association for the Promotion of South Asian Archaeology in Western Europe", "variant_access_point": ["International Conference of the Association for the Promotion of South Asian Archaeology", "Conference of the Association for the Promotion of South Asian Archaeology", "International Conference of South Asian Archaeologists", "Conference of South Asian Archaeologists"], "authorized_access_point": "Association for the Promotion of South Asian Archaeology in Western Europe. International Conference"} 1 -2023-07-08 08:15:23.881983 2023-07-08 08:15:23.881992 8818d760-bd78-4328-8fa0-c5b707cdce1e {"md5": "1001c872e11e506a9a7b60c08e9822cb", "pid": "1092349839", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1092349839", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1092349839", "source": "GND"}], "variant_name": ["IWMM"], "preferred_name": "International Workshop on Mathematics Mechanization", "variant_access_point": ["IWMM. International Workshop on Mathematics Mechanization"], "authorized_access_point": "International Workshop on Mathematics Mechanization"} 1 -2023-07-08 08:15:24.05196 2023-07-08 08:15:24.051972 063ce6a8-50db-4a68-b54e-52ee9f8d4351 {"md5": "4ad945e3d33629707e32509bfec0ed3a", "pid": "1092493239", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1092493239", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1092493239", "source": "GND"}], "preferred_name": "International Symposium on the Role of Anthropology in 21st Century Development Policy", "authorized_access_point": "International Symposium on the Role of Anthropology in 21st Century Development Policy"} 1 -2023-07-08 08:15:24.14175 2023-07-08 08:15:24.141759 ef1fbb12-6053-4509-887a-a4c72d39cb28 {"md5": "691bc65c597329ce8da28c54d077251f", "pid": "1092495266", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1092495266", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1092495266", "source": "GND"}], "variant_name": ["Congrès annuel de la Société de neurochirurgie de langue française"], "preferred_name": "Société de neurochirurgie de langue française", "variant_access_point": ["Congrès annuel de la Société de neurochirurgie de langue française"], "authorized_access_point": "Société de neurochirurgie de langue française. Congrès annuel"} 1 -2023-07-08 08:15:24.24639 2023-07-08 08:15:24.246399 3c4e1eeb-967a-496e-ad1e-f1890fc90f8c {"md5": "ad41eb98c4e7beab9b1046b0fac7c44c", "pid": "1092508333", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1092508333", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1092508333", "source": "GND"}], "variant_name": ["Participating Institutions Conference, IMA", "IMA Participating Institutions Conference on Singularities"], "preferred_name": "IMA Participating Institutions Conference", "variant_access_point": ["Participating Institutions Conference, IMA", "IMA Participating Institutions Conference on Singularities"], "authorized_access_point": "IMA Participating Institutions Conference"} 1 -2023-07-08 08:15:24.336689 2023-07-08 08:15:24.336693 d4c2cddd-4be4-4655-a7e6-a5690cb54a95 {"md5": "0c33ad8d90a566f7949566123797f830", "pid": "1092524398", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1092524398", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1092524398", "source": "GND"}], "preferred_name": "Symposium on Nonlinear Functional Analysis", "authorized_access_point": "Symposium on Nonlinear Functional Analysis"} 1 -2023-07-08 08:15:24.434918 2023-07-08 08:15:24.434927 9d4cab1c-140c-4642-aab5-d4ecf295e4b5 {"md5": "7b52446a0e91cc7abfc2dd51f70582f7", "pid": "1092551271", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1092551271", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1092551271", "source": "GND"}], "preferred_name": "China Academic Conference on Food Packaging", "authorized_access_point": "China Academic Conference on Food Packaging"} 1 -2023-07-08 08:15:24.508875 2023-07-08 08:15:24.508881 8eeb339d-8836-4be7-a3ab-333192fa60b5 {"md5": "dee57bd47b767f133ff16868977085b4", "pid": "1093232943", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1093232943", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1093232943", "source": "GND"}], "preferred_name": "Andreas, Jürgen", "authorized_access_point": "Andreas, Jürgen"} 1 -2023-07-08 08:15:24.687672 2023-07-08 08:15:24.687681 232fb792-615d-4df1-ab57-db9f2d620ccf {"md5": "20c18b7433828bf9fae2620bb2e86d20", "pid": "1095673300", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://d-nb.info/gnd/1095673300", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1095673300", "source": "GND"}], "variant_name": ["Hügel, Georg Heinrich von", "Hügel, Heinrich von"], "date_of_birth": "07.08.1828", "date_of_death": "02.08.1899", "preferred_name": "Hügel, Heinrich", "country_associated": "gw", "variant_access_point": ["Hügel, Georg Heinrich von, 1828-1899", "Hügel, Heinrich von, 1828-1899"], "authorized_access_point": "Hügel, Heinrich, 1828-1899", "biographical_information": ["Dt. Architekt und Eisenbahnbauunternehmer"]} 1 -2023-07-08 08:15:24.765369 2023-07-08 08:15:24.765376 fd680a3a-9787-43e0-acd0-f2b7fc6291ed {"md5": "44978c08a641c90dca4fc9229c25e03f", "pid": "1095685007", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1095685007", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1095685007", "source": "GND"}], "variant_name": ["Kogler, Dieter Franz", "Kogler, Dieter"], "date_of_birth": "1973", "preferred_name": "Kogler, Dieter F.", "country_associated": "ie", "variant_access_point": ["Kogler, Dieter Franz, 1973-", "Kogler, Dieter, 1973-"], "authorized_access_point": "Kogler, Dieter F., 1973-"} 1 -2023-07-08 08:15:24.856885 2023-07-08 08:15:24.85689 4c0bcd02-b74c-4822-a3a9-c5538235edf0 {"md5": "772f9df2b4802d4c2a72832a78e29f76", "pid": "1095792091", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1095792091", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1095792091", "source": "GND"}], "preferred_name": "Jorgensen, James H.", "country_associated": "xxu", "authorized_access_point": "Jorgensen, James H."} 1 -2023-07-08 08:15:24.962656 2023-07-08 08:15:24.962661 71c8a99f-1c0c-46e9-9dc1-dac47bf18f0d {"md5": "fefad15089d017db270ebd27af753085", "pid": "109579762X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/109579762X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/109579762X", "source": "GND"}], "variant_name": ["Gigli, Sylvester"], "preferred_name": "Gigli, Silvestro", "country_associated": "it", "variant_access_point": ["Gigli, Sylvester"], "authorized_access_point": "Gigli, Silvestro", "biographical_information": ["Dekan in Venedig"]} 1 -2023-07-08 08:15:25.040775 2023-07-08 08:15:25.040789 b5c15970-d413-4936-b3b9-8be15602b1e4 {"md5": "304f42052a577a1ad56bd07ff69d8835", "pid": "1096247151", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1096247151", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1096247151", "source": "GND"}], "date_of_birth": "1962", "preferred_name": "Otto, Petra", "country_associated": "gw", "authorized_access_point": "Otto, Petra, 1962-"} 1 -2023-07-08 08:15:25.140664 2023-07-08 08:15:25.140671 c374f0c0-921e-4cf1-b5cd-af65c5ba8406 {"md5": "9d50943570ef0fc03005b82a4bbac8f7", "pid": "1096338572", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1096338572", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1096338572", "source": "GND"}], "preferred_name": "Westerbeek, Margo", "country_associated": "ne", "authorized_access_point": "Westerbeek, Margo"} 1 -2023-07-08 08:15:25.233083 2023-07-08 08:15:25.233096 96483098-2ba0-455b-9cfa-e38f02fc2470 {"md5": "a14cb02e2fc98fe530b583c696e0aaac", "pid": "1096509253", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1096509253", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1096509253", "source": "GND"}], "variant_name": ["Kilgert, Beate"], "date_of_birth": "1987", "preferred_name": "Blank, Beate", "country_associated": "gw", "variant_access_point": ["Kilgert, Beate, 1987-"], "authorized_access_point": "Blank, Beate, 1987-"} 1 -2023-07-08 08:15:25.317578 2023-07-08 08:15:25.317588 13d7dc3f-309c-4f01-a253-10cda5b039e4 {"md5": "02a77ed82934703375b1f1d71f38e81d", "pid": "1097290735", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1097290735", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1097290735", "source": "GND"}], "date_of_birth": "1950", "preferred_name": "Flamme, Dieter", "country_associated": "gw", "authorized_access_point": "Flamme, Dieter, 1950-"} 1 -2023-07-08 08:15:25.407411 2023-07-08 08:15:25.407416 bf20a7f9-66a5-4554-b9a5-47baf9794a1d {"md5": "ca45e580b007e90f08b403e5ba5928ec", "pid": "1097642550", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1097642550", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1097642550", "source": "GND"}], "variant_name": ["Mazo, R. M.", "Mazo, Robert"], "preferred_name": "Mazo, Robert M.", "country_associated": "xxu", "variant_access_point": ["Mazo, R. M.", "Mazo, Robert"], "authorized_access_point": "Mazo, Robert M."} 1 -2023-07-08 08:15:25.491223 2023-07-08 08:15:25.491229 2f96db98-1a7a-40e2-ae1e-df69b9daae2d {"md5": "91857f670a10a020a0ced4ac8f5d09ee", "pid": "1097758591", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1097758591", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1097758591", "source": "GND"}], "variant_name": ["National Center for Development of Mountain Regions of Kyrgyzstan"], "preferred_name": "Nacionalʹnyj centr razvitija gornych rajonov Kyrgyzkoj Respubliki", "country_associated": "kg", "variant_access_point": ["National Center for Development of Mountain Regions of Kyrgyzstan"], "parallel_access_point": ["Национальный центр развития горных районов Кыргызской Республики", "Национальный центр развития горных районов КР"], "authorized_access_point": "Nacionalʹnyj centr razvitija gornych rajonov Kyrgyzkoj Respubliki"} 1 -2023-07-08 08:15:25.685302 2023-07-08 08:15:25.685311 546917a9-41b6-4526-a16b-13974bac48a7 {"md5": "ce56e423fb243eb838f5faeddfdd4bb2", "pid": "1098212460", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1098212460", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1098212460", "source": "GND"}], "variant_name": ["Cobedix AG"], "preferred_name": "Cobedix", "country_associated": "sz", "variant_access_point": ["Cobedix AG. Unveraenderte Form"], "authorized_access_point": "Cobedix"} 1 -2023-07-08 08:15:25.772628 2023-07-08 08:15:25.772633 8eb7243b-1158-4d79-ab44-4c7d378e76c0 {"md5": "e980d3045c288a04fb503e5b66cb782d", "pid": "109946577X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/109946577X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/109946577X", "source": "GND"}], "date_of_birth": "1974", "preferred_name": "Vida, Ben", "country_associated": "xxu", "authorized_access_point": "Vida, Ben, 1974-"} 1 -2023-07-08 08:15:25.875153 2023-07-08 08:15:25.875158 352a5f96-1be7-4c73-818d-9ff7b55b700b {"md5": "b84b22574c8952454e4febfc2c3a179a", "pid": "1099467756", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1099467756", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1099467756", "source": "GND"}], "date_of_death": "1929", "preferred_name": "Turski, Ryszard", "country_associated": "pl", "authorized_access_point": "Turski, Ryszard, -1929", "biographical_information": ["Forschungsschwerpunkt: Migration, gesellschaftl. Wandel, ländl. Raum"]} 1 -2023-07-08 08:15:25.973785 2023-07-08 08:15:25.973788 d937d0ca-38d2-42ee-b75f-badaafdd1465 {"md5": "c34900e09e10ca5414c9766330574bf7", "pid": "1099730872", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1099730872", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1099730872", "source": "GND"}], "variant_name": ["ADLER Solar Service GmbH", "ADLER Solar"], "preferred_name": "ADLER Solar Services GmbH", "country_associated": "gw", "variant_access_point": ["ADLER Solar Service GmbH", "ADLER Solar"], "authorized_access_point": "ADLER Solar Services GmbH"} 1 -2023-07-08 08:15:26.04891 2023-07-08 08:15:26.048918 9e64e7ae-d602-4cf7-8e5a-012536d2463f {"md5": "0ef9ee1ba5902b2df7932a0ca59f5de1", "pid": "1099924197", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1099924197", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1099924197", "source": "GND"}], "preferred_name": "RP Photonics Consulting GmbH", "country_associated": "gw", "date_of_establishment": "2004", "authorized_access_point": "RP Photonics Consulting GmbH"} 1 -2023-07-08 08:15:26.149113 2023-07-08 08:15:26.149122 596457f7-3684-4b0c-be74-4e777e918d04 {"md5": "89184fe231ff4a079332ff1c3c7b0703", "pid": "1100173900", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1100173900", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1100173900", "source": "GND"}], "date_of_birth": "1984", "preferred_name": "Reusch, Anna M.", "country_associated": "sz", "authorized_access_point": "Reusch, Anna M., 1984-", "biographical_information": ["Vorlage, Diss. ETH Zürich 2016, M.Sc. Marine Geosciences, University of Bremen"]} 1 -2023-07-08 08:15:26.228065 2023-07-08 08:15:26.228076 531df96f-6e73-46a3-b0f8-50fbdb91b78b {"md5": "48528e7430b0bf8bb460c01beb78bb3a", "pid": "1100326294", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1100326294", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1100326294", "source": "GND"}], "preferred_name": "Hal, Simon van", "country_associated": "gw", "authorized_access_point": "Hal, Simon van"} 1 -2023-07-08 08:15:26.315051 2023-07-08 08:15:26.315058 b00557ae-e6ba-4f03-83a8-cb38543af672 {"md5": "0d41856196064bd7933c19d3ba0c3a99", "pid": "1100545808", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1100545808", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1100545808", "source": "GND"}], "date_of_birth": "1965", "preferred_name": "Hucul, Stefan", "country_associated": "gw", "authorized_access_point": "Hucul, Stefan, 1965-", "biographical_information": ["1987-1992 Studium der Rechtswissenschaften in München; Leitender Regierungsdirektor im Bundesamt für das Personalmanagement der Bundeswehr"]} 1 -2023-07-08 08:15:26.420967 2023-07-08 08:15:26.420971 c32733a3-7ca2-452f-a31e-fdb0e200c53e {"md5": "812aa500416df3fc2d90efa20cafbf27", "pid": "1100546359", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1100546359", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1100546359", "source": "GND"}], "preferred_name": "Singer, Melania", "authorized_access_point": "Singer, Melania"} 1 -2023-07-08 08:15:26.510722 2023-07-08 08:15:26.510726 8fe36825-879b-4088-9f9d-7acb7e4960fa {"md5": "bde9d10f3802c41c390bc652edfe8951", "pid": "1100694404", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1100694404", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1100694404", "source": "GND"}], "date_of_birth": "1942", "date_of_death": "2011", "preferred_name": "Liebelin, François", "country_associated": "fr", "authorized_access_point": "Liebelin, François, 1942-2011", "biographical_information": ["formé à l'Ecole Pratique, membre correspondant du Centre de Recherches sur les Economies, les Sociétés, les Arts et les Techniques"]} 1 -2023-07-08 08:15:26.585041 2023-07-08 08:15:26.585045 ddd3ee5f-84cd-4e1d-8380-4c003acdbceb {"md5": "d957c5dbb976fd7a3fb3c5083fa96958", "pid": "1101362081", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1101362081", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1101362081", "source": "GND"}], "variant_name": ["Klimatage, 10.", "Annaberg Climate Days, 10.", "10. Annaberger Klimatage 2016"], "preferred_name": "Annaberger Klimatage, 10.", "country_associated": "gw", "variant_access_point": ["Klimatage, 10., 2016, Annaberg-Buchholz", "Annaberg Climate Days, 10., 2016, Annaberg-Buchholz", "10. Annaberger Klimatage 2016"], "authorized_access_point": "Annaberger Klimatage, 10., 2016, Annaberg-Buchholz"} 1 -2023-07-08 08:15:26.732491 2023-07-08 08:15:26.732498 af8389ba-8ada-4fbc-9dad-3b33db309045 {"md5": "89f6a44b337d1e7fa999b5e61d592ffa", "pid": "1101375183", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1101375183", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1101375183", "source": "GND"}], "preferred_name": "Kurfürst-Balduin-Gymnasium Münstermaifeld. Abiturjahrgang 2016", "country_associated": "gw", "authorized_access_point": "Kurfürst-Balduin-Gymnasium Münstermaifeld. Abiturjahrgang 2016"} 1 -2023-07-08 08:15:26.80021 2023-07-08 08:15:26.800216 8a82ed65-7bed-4d63-b45a-ec2c872560fb {"md5": "d93b343bceb113f9190df31d0a5cab72", "pid": "1101470003", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1101470003", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1101470003", "source": "GND"}], "preferred_name": "Confer, William", "country_associated": "xxu", "authorized_access_point": "Confer, William"} 1 -2023-07-08 08:15:26.880221 2023-07-08 08:15:26.880226 8a114578-9bfb-4244-b54a-68756b0315fa {"md5": "b80dff944f82ecbf81cca794d810fff9", "pid": "1102164240", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1102164240", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1102164240", "source": "GND"}], "variant_name": ["Herberg, Karl Gottfried Friedrich"], "preferred_name": "Herberg, Friedrich", "country_associated": "gw", "variant_access_point": ["Herberg, Karl Gottfried Friedrich"], "authorized_access_point": "Herberg, Friedrich"} 1 -2023-07-08 08:15:26.962573 2023-07-08 08:15:26.962579 33480bb3-4db7-4d3a-b09e-141187bbf80c {"md5": "fee197ccf7524d8257467424d7e496ae", "pid": "1102224820", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1102224820", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1102224820", "source": "GND"}], "preferred_name": "Militärpfarre 4 beim Militärkommando Niederösterreich", "country_associated": "au", "date_of_establishment": "2016", "authorized_access_point": "Militärpfarre 4 beim Militärkommando Niederösterreich. Langenlebarn"} 1 -2023-07-08 08:15:27.048935 2023-07-08 08:15:27.04894 f3b89241-0a24-42c0-b093-0b64be419ee8 {"md5": "29d9ebccd8084a341e551013155ba890", "pid": "110234979", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/110234979", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/110234979", "source": "GND"}], "variant_name": ["Böttcher, A."], "date_of_birth": "1954", "preferred_name": "Böttcher, Albrecht", "country_associated": "gw", "variant_access_point": ["Böttcher, A., 1954-"], "authorized_access_point": "Böttcher, Albrecht, 1954-", "biographical_information": ["Tätig an der Fakultät für Mathematik, TU Chemnitz"]} 1 -2023-07-08 08:15:27.140028 2023-07-08 08:15:27.140032 25acd64b-8dfc-42f0-9947-daaf4d874e59 {"md5": "3de0103b08578b01de78405c17e7687c", "pid": "1102950661", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1102950661", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1102950661", "source": "GND"}], "date_of_birth": "1967", "preferred_name": "Nalbantidou, Lia", "country_associated": "gr", "authorized_access_point": "Nalbantidou, Lia, 1967-"} 1 -2023-07-08 08:15:30.669487 2023-07-08 08:15:30.669499 af6db46c-2576-4320-b783-e0e2c682319f {"md5": "50032c05deed4c4d1299567f01ade286", "pid": "1116493586", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1116493586", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1116493586", "source": "GND"}], "date_of_birth": "1983", "preferred_name": "Avenhaus, Ernst Henning", "authorized_access_point": "Avenhaus, Ernst Henning, 1983-"} 1 -2023-07-08 08:15:27.229813 2023-07-08 08:15:27.229822 a7d739de-23e5-469a-8607-5eb3e2dc3328 {"md5": "f67365a757e55c6956a2af6380793602", "pid": "1103145347", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1103145347", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1103145347", "source": "GND"}], "preferred_name": "Werier, Clifford", "country_associated": "xxu", "authorized_access_point": "Werier, Clifford", "biographical_information": ["Professor of English at Mount Royal University, Canada"]} 1 -2023-07-08 08:15:27.416844 2023-07-08 08:15:27.416853 80acfbe3-dc6c-48e4-991b-ae121c139ad8 {"md5": "07170ada4a765f7a237b6a06f570b97a", "pid": "1103491768", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1103491768", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1103491768", "source": "GND"}], "date_of_birth": "1985", "preferred_name": "Jeger, Silvan", "country_associated": "sz", "authorized_access_point": "Jeger, Silvan, 1985-"} 1 -2023-07-08 08:15:27.509951 2023-07-08 08:15:27.509957 b79a70fb-bb55-4c7e-afb3-a271bed62835 {"md5": "8c3199d0ec0b3b3b40aa90c3c4c4f08b", "pid": "1103855794", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1103855794", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1103855794", "source": "GND"}], "date_of_birth": "1988", "preferred_name": "Reed, Heida", "country_associated": "ic", "authorized_access_point": "Reed, Heida, 1988-"} 1 -2023-07-08 08:15:27.612018 2023-07-08 08:15:27.612024 a4cf59be-c1fe-43a3-bdcb-f82ab8f8d986 {"md5": "56efffb35f4ea81917fc42e9532768e6", "pid": "1104130424", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1104130424", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1104130424", "source": "GND"}], "date_of_birth": "11.04.1908", "date_of_death": "07.09.1993", "preferred_name": "Barnefske, Hermann", "country_associated": "gw", "authorized_access_point": "Barnefske, Hermann, 1908-1993", "biographical_information": ["1947-1966 Abgeordneter im Landtag Nordrhein-Westfalen"]} 1 -2023-07-08 08:15:27.687857 2023-07-08 08:15:27.687862 75867282-d454-4227-89a5-31ab8152f516 {"md5": "2de26e0ad112573abc9bd9ccee0e19f3", "pid": "1104394499", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1104394499", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1104394499", "source": "GND"}], "preferred_name": "Müller, Thorsten G.", "country_associated": "gw", "authorized_access_point": "Müller, Thorsten G.", "biographical_information": ["Diss. 2002, Universität Freiburg, Fakultät für Physik"]} 1 -2023-07-08 08:15:27.796775 2023-07-08 08:15:27.796782 baaac673-e2f0-4a4b-9de3-16ab5c2a024d {"md5": "40b104f56cea9b8a03a38231edefbe37", "pid": "1104971259", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1104971259", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1104971259", "source": "GND"}], "variant_name": ["Ichiki Tsuyuhiko", "市來津由彦", "イチキ, ツユヒコ"], "date_of_birth": "1951", "preferred_name": "Ichiki, Tsuyuhiko", "country_associated": "ja", "variant_access_point": ["Ichiki Tsuyuhiko, 1951-", "市來津由彦, 1951-", "イチキ, ツユヒコ, 1951-"], "parallel_access_point": ["市來, 津由彦, 1951-"], "authorized_access_point": "Ichiki, Tsuyuhiko, 1951-"} 1 -2023-07-08 08:15:27.902204 2023-07-08 08:15:27.902218 c4a6e676-95e8-4da5-8bdd-feb01ac8e809 {"md5": "42924a1541f1256543c0b73cd723eedb", "pid": "1105435075", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1105435075", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1105435075", "source": "GND"}], "variant_name": ["Symposium \\"Nanoscale Electrochemistry\\""], "preferred_name": "Nanoscale Electrochemistry", "country_associated": "xxu", "variant_access_point": ["Symposium \\"Nanoscale Electrochemistry\\", 2015, Phoenix, Ariz."], "authorized_access_point": "Nanoscale Electrochemistry. Veranstaltung, 2015, Phoenix, Ariz."} 1 -2023-07-08 08:15:28.007961 2023-07-08 08:15:28.007972 4b6cea1f-0a2b-4744-b624-ae641961da1c {"md5": "d9dc8fca0002523eb1b73023c7711e91", "pid": "1106144244", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1106144244", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1106144244", "source": "GND"}], "variant_name": ["Čučalov, Sergej V.", "Čučalov, S. V.", "Чучалов, Сергей Владимирович"], "preferred_name": "Čučalov, Sergej Vladimirovič", "variant_access_point": ["Čučalov, Sergej V.", "Čučalov, S. V.", "Чучалов, Сергей Владимирович"], "authorized_access_point": "Čučalov, Sergej Vladimirovič"} 1 -2023-07-08 08:15:28.118436 2023-07-08 08:15:28.118448 d9781785-b898-48f9-89c5-dc53ae77a9a4 {"md5": "55647752c9612f4eb54e3ff37043b523", "pid": "1106568257", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1106568257", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1106568257", "source": "GND"}], "variant_name": ["Khadilkar, S. D.", "Khadilkar, S.D.", "Khadilakara, Sri Da", "Khāḍilakara, Śrī. Dā."], "date_of_birth": "1899", "preferred_name": "Khāḍīlakara, Śrī. Dā.", "country_associated": "ii", "variant_access_point": ["Khadilkar, S. D., 1899-", "Khadilkar, S.D., 1899-", "Khadilakara, Sri Da, 1899-", "Khāḍilakara, Śrī. Dā., 1899-"], "authorized_access_point": "Khāḍīlakara, Śrī. Dā., 1899-"} 1 -2023-07-08 08:15:30.864598 2023-07-08 08:15:30.864602 c1ba70ce-49aa-4ad3-8e8b-58afbb2abd5a {"md5": "22cbb9251e9dc305fb178c1e57c5f38d", "pid": "1116967383", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1116967383", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1116967383", "source": "GND"}], "variant_name": ["Sanders, Elder Oscar"], "preferred_name": "Sanders, Oscar", "variant_access_point": ["Sanders, Elder Oscar"], "authorized_access_point": "Sanders, Oscar"} 1 -2023-07-08 08:15:28.231023 2023-07-08 08:15:28.231036 326b84b3-eae0-4309-a77a-1012901358e2 {"md5": "f1886d1c249072afe1e75f9b9d88431e", "pid": "110674057", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/110674057", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/110674057", "source": "GND"}], "variant_name": ["Giovagnoli, Allessandra"], "preferred_name": "Giovagnoli, Alessandra", "country_associated": "it", "variant_access_point": ["Giovagnoli, Allessandra"], "authorized_access_point": "Giovagnoli, Alessandra", "biographical_information": ["Professorin für Statistik am Dipartimento di Scienze Statistiche der Universität Bologna"]} 1 -2023-07-08 08:15:28.48121 2023-07-08 08:15:28.48122 db4b405a-f2d5-4828-a075-5c949d9924eb {"md5": "71b49b42f87390276d7bbf170d184223", "pid": "1108588271", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1108588271", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1108588271", "source": "GND"}], "date_of_birth": "21.08.1881", "preferred_name": "Heinrich, Bruno", "authorized_access_point": "Heinrich, Bruno, 1881-", "biographical_information": ["1911: am Pathologischen Institut der Königl. Tierärztlichen Hochschule in München"]} 1 -2023-07-08 08:15:28.583987 2023-07-08 08:15:28.583993 41830c10-781b-4633-9d40-672642c06747 {"md5": "bb56723c545c2bd153c3db664767e6ef", "pid": "1109102283", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1109102283", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1109102283", "source": "GND"}], "variant_name": ["Min Yang, Yong", "Yong Min, Yang", "Yang Yong Min"], "preferred_name": "Yang, Yong Min", "country_associated": "cc", "variant_access_point": ["Min Yang, Yong", "Yong Min, Yang", "Yang Yong Min"], "authorized_access_point": "Yang, Yong Min", "biographical_information": ["Laboratory of Science and Technology on Integrated Logistics Support, College of Mechatronics Engineering and Automation"]} 1 -2023-07-08 08:15:28.699158 2023-07-08 08:15:28.699172 eb793761-91d6-4c51-8ed8-3ede4215127f {"md5": "a06c67d0996d05bb8b0bd9f95dba115b", "pid": "1109796900", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1109796900", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1109796900", "source": "GND"}], "variant_name": ["Helmle, Petra Wöbcke-"], "preferred_name": "Wöbcke-Helmle, Petra", "country_associated": "gw", "variant_access_point": ["Helmle, Petra Wöbcke-"], "authorized_access_point": "Wöbcke-Helmle, Petra", "biographical_information": ["Gründerin einer Montessori-Initiative in Hall"]} 1 -2023-07-08 08:15:29.070654 2023-07-08 08:15:29.070666 96767dba-e883-4fcc-8e2e-e67aa1ed57b2 {"md5": "15e0d51e5a610a2aa8c122d5ebba7ef8", "pid": "1111133735", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1111133735", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1111133735", "source": "GND"}], "variant_name": ["L'Association française de recherche sur les livres et les objets culturels de l'enfance", "Afreloce"], "preferred_name": "L' Association française de recherche sur les livres et les objets culturels de l'enfance", "country_associated": "fr", "variant_access_point": ["L'Association française de recherche sur les livres et les objets culturels de l'enfance. Unveraenderte Form", "Afreloce. Abkuerzung"], "date_of_establishment": "2001", "authorized_access_point": "L' Association française de recherche sur les livres et les objets culturels de l'enfance"} 1 -2023-07-08 08:15:29.170175 2023-07-08 08:15:29.170184 9b512849-4418-4e39-b20d-fe976ab75c1b {"md5": "49ef4ad8c7609c6877b8f1508a30bb43", "pid": "1111902321", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1111902321", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1111902321", "source": "GND"}], "variant_name": ["Daland, Hilde Drivenes"], "preferred_name": "Drivenes Daland, Hilde", "country_associated": "no", "variant_access_point": ["Daland, Hilde Drivenes"], "authorized_access_point": "Drivenes Daland, Hilde", "biographical_information": ["Research librarian and research support coordinator at the University of Agder Library, Norway"]} 1 -2023-07-08 08:15:29.278724 2023-07-08 08:15:29.278737 d8bf45dc-85dc-4a23-8e15-550bfcefada4 {"md5": "fc838a0823fb2475cf494b1c563cd402", "pid": "1112571647", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1112571647", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1112571647", "source": "GND"}], "preferred_name": "Schenkel, Sonja", "country_associated": "sz", "authorized_access_point": "Schenkel, Sonja", "biographical_information": ["Lic. phil. I Univ. Zürich, 2006"]} 1 -2023-07-08 08:15:31.00136 2023-07-08 08:15:31.001374 ed63267d-67b9-4865-a27d-088f6e874cb6 {"md5": "b9ac857ea3c4ab95c41c9cffe0fe8492", "pid": "1116977273", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1116977273", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1116977273", "source": "GND"}], "variant_name": ["Noskov, Gennady A.", "Noskov, Guennadi A."], "preferred_name": "Noskov, Gennadij A.", "variant_access_point": ["Noskov, Gennady A.", "Noskov, Guennadi A."], "authorized_access_point": "Noskov, Gennadij A."} 1 -2023-07-08 08:15:28.963061 2023-07-08 10:29:40.666683 74a4af6c-f873-441f-bb38-10f64b0cbdb8 {"md5": "dadb9edc8d54442f53f665a647f16426", "pid": "1110040970", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1110040970", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1110040970", "source": "GND"}], "variant_name": ["Fey, Elizabeth la", "LeFey, Elizabeth"], "preferred_name": "Le Fey, Elizabeth", "country_associated": "xxu", "variant_access_point": ["Fey, Elizabeth la", "LeFey, Elizabeth"], "authorized_access_point": "Le Fey, Elizabeth"} 2 -2023-07-08 08:15:28.363478 2023-07-08 10:30:22.793798 e5d004a2-1844-4d57-83bb-89da2f375765 {"md5": "71358033ac14cd601ed6dfe48956c802", "pid": "1107220025", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1107220025", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1107220025", "source": "GND"}], "preferred_name": "Kühn, S.", "country_associated": "gw", "authorized_access_point": "Kühn, S."} 2 -2023-07-08 08:15:29.508051 2023-07-08 08:15:29.508062 8e50e801-4123-47db-b51d-9bf3eea06ce1 {"md5": "8faf591672d18bd249a9fbd5d33aba7f", "pid": "1112747885", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1112747885", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1112747885", "source": "GND"}], "date_of_birth": "1953", "preferred_name": "Grăjdian, Vasile", "country_associated": "rm", "authorized_access_point": "Grăjdian, Vasile, 1953-", "biographical_information": ["Rumän.-orthodoxer Theologe, Universitätsprofessor und Kirchenmusiker"]} 1 -2023-07-08 08:15:29.609788 2023-07-08 08:15:29.609799 d3630539-dc57-462d-a620-7b3ea3d94bc8 {"md5": "8fba7ce11e8866c2628f92d03ed77279", "pid": "111303002X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/111303002X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/111303002X", "source": "GND"}], "preferred_name": "Institut für Energie- und Umwelttechnik. Bereich Industrielle Gemeinschaftsforschung", "country_associated": "gw", "authorized_access_point": "Institut für Energie- und Umwelttechnik. Bereich Industrielle Gemeinschaftsforschung"} 1 -2023-07-08 08:15:29.730773 2023-07-08 08:15:29.730779 f13c7522-fe13-4685-ba72-95bfa9771e8e {"md5": "d15924dfc77f7d910e387e66ef450a46", "pid": "1113214309", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1113214309", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1113214309", "source": "GND"}], "date_of_birth": "29.11.1907", "date_of_death": "12.08.1962", "preferred_name": "Woodforde, Christopher", "country_associated": "xxk", "authorized_access_point": "Woodforde, Christopher, 1907-1962", "biographical_information": ["Fellow and Chaplain at New College, Oxford 1948-1959, Dean of Wells 1959-1962 (Dekan)"]} 1 -2023-07-08 08:15:29.852053 2023-07-08 08:15:29.852064 dc2d400c-43be-42b4-8c07-8c94f99ee7b2 {"md5": "214bb791fde981f6f128861688af3948", "pid": "1114419125", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1114419125", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1114419125", "source": "GND"}], "preferred_name": "Sørensen, Majken Jul", "country_associated": "dk", "authorized_access_point": "Sørensen, Majken Jul", "biographical_information": ["Honorary Post-Doctoral Research Associate at the University of Wollongong, Australia and Associated Researcher at Karlstad University, Sweden. She has published on nonviolent resistance, social movements, humorous political activism, peaceful societies and female conscientious objectors."]} 1 -2023-07-08 08:15:29.964356 2023-07-08 08:15:29.964363 4a9fd652-7d28-45d7-9b16-9a30c91e87c4 {"md5": "87b121fd71ccf83c9b57718413a58f25", "pid": "1114601357", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1114601357", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1114601357", "source": "GND"}], "date_of_birth": "1976", "preferred_name": "Campbell, Julieann", "country_associated": "ie", "authorized_access_point": "Campbell, Julieann, 1976-"} 1 -2023-07-08 08:15:30.07365 2023-07-08 08:15:30.073659 a964ddbf-ea3e-4221-9cac-5573c66ff925 {"md5": "623e977066bed2dda56a738592316c66", "pid": "1114680176", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1114680176", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1114680176", "source": "GND"}], "preferred_name": "Noe, Elena Ariane", "country_associated": "gw", "authorized_access_point": "Noe, Elena Ariane", "biographical_information": ["Diss. FU Berlin, Fachbereich Veterinärmedizin, 2016"]} 1 -2023-07-08 08:15:30.204408 2023-07-08 08:15:30.20442 c9e05275-7c16-44b7-b6d5-3672abf50983 {"md5": "a635debad72678bc4be2a2d8ad4afaaa", "pid": "1114895288", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1114895288", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1114895288", "source": "GND"}], "date_of_birth": "1940", "preferred_name": "Gardel, Jacques", "country_associated": "sz", "authorized_access_point": "Gardel, Jacques, 1940-", "biographical_information": ["Schweizer Regisseur und Theaterschaffender, in dem französischsprachigen, rätoromanischen Theaterbetrieb der Schweiz tätig."]} 1 -2023-07-08 08:15:30.454516 2023-07-08 08:15:30.454522 7b9019d3-5c9c-46d7-ba3a-a048d63c340b {"md5": "c763bdc21014c1c15a6b490cbb2e93e3", "pid": "1115670395", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1115670395", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1115670395", "source": "GND"}], "preferred_name": "Goossens, Elise", "country_associated": "be", "authorized_access_point": "Goossens, Elise"} 1 -2023-07-08 08:15:30.553441 2023-07-08 08:15:30.553454 b2df5c55-ceda-4671-b0a4-754759c972bb {"md5": "2fbbfe2a9d6d6dfe8c206f3eb7a16522", "pid": "1116350033", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1116350033", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1116350033", "source": "GND"}], "variant_name": ["International Workshop on Clinical-Based Procedures: From Planning to Intervention, 5."], "preferred_name": "CLIP, 5.", "country_associated": "gr", "variant_access_point": ["International Workshop on Clinical-Based Procedures: From Planning to Intervention, 5., 2016, Athen"], "authorized_access_point": "CLIP, 5., 2016, Athen"} 1 -2023-07-08 08:15:30.341186 2023-07-08 10:26:51.058773 8bf083b7-3af6-4fc3-bb5a-1a2403ee906d {"md5": "068de9884e211e97f983ac3008f69a22", "pid": "1114895318", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1114895318", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1114895318", "source": "GND"}], "preferred_name": "Gros, Sabine", "country_associated": "sz", "authorized_access_point": "Gros, Sabine"} 2 -2023-07-08 08:15:31.239264 2023-07-08 08:15:31.239277 0955ebf1-3e1f-493a-a6af-2852fceef20e {"md5": "40804ee1cdfe1b9c6162789cb7e82598", "pid": "111715677X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/111715677X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/111715677X", "source": "GND"}], "variant_name": ["Lesser, Barbara Christina"], "date_of_birth": "26.02.1644", "date_of_death": "09.08.1700", "preferred_name": "Wolff, Barbara Christina", "country_associated": "gw", "variant_access_point": ["Lesser, Barbara Christina, 1644-1700"], "authorized_access_point": "Wolff, Barbara Christina, 1644-1700", "biographical_information": ["Ehefrau des Bürgers und Handwerksmeisters Andreas Wolff in Nordhausen"]} 1 -2023-07-08 08:15:31.378398 2023-07-08 08:15:31.378403 cdaf1133-fc2b-4416-b511-81887870ecbe {"md5": "fe61b0984f59d79a8dead84a5fa0061e", "pid": "111716151X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/111716151X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/111716151X", "source": "GND"}], "preferred_name": "Holke, M.", "country_associated": "gw", "authorized_access_point": "Holke, M."} 1 -2023-07-08 08:15:31.471589 2023-07-08 08:15:31.471598 18a2e35d-9d12-432a-b64f-4678242d45f1 {"md5": "301d098d7a9811072e68a28b789ec3bc", "pid": "111783946X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/111783946X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/111783946X", "source": "GND"}], "variant_name": ["Nam, Sŏk-hyŏng", "남, 석형"], "preferred_name": "Nam, Seog Hyeong", "country_associated": "ko", "variant_access_point": ["Nam, Sŏk-hyŏng", "남, 석형"], "parallel_access_point": ["남석형"], "authorized_access_point": "Nam, Seog Hyeong"} 1 -2023-07-08 08:15:31.739615 2023-07-08 08:15:31.739627 7c864aab-4044-4de5-9f46-5425126d5632 {"md5": "fe17f856f7c2278b0ca1d9bbeb2cc365", "pid": "1119264243", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1119264243", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1119264243", "source": "GND"}], "variant_name": ["Teutscher, Johanna Elisabeth"], "preferred_name": "Richter, Johanna Elisabeth", "country_associated": "gw", "variant_access_point": ["Teutscher, Johanna Elisabeth"], "authorized_access_point": "Richter, Johanna Elisabeth", "biographical_information": ["Schwester von Jonathan Teutscher und Ehefrau des Juristen Johann Tobias Richter"]} 1 -2023-07-08 08:15:31.837357 2023-07-08 08:15:31.837365 bd67a10d-f4a3-4a32-a7c3-ce913645dae0 {"md5": "d4bab95764359108ea6f36605b5f153a", "pid": "1120447089", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1120447089", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1120447089", "source": "GND"}], "date_of_birth": "1987", "preferred_name": "Viola, Francesco", "country_associated": "it", "authorized_access_point": "Viola, Francesco, 1987-"} 1 -2023-07-08 08:15:32.067903 2023-07-08 08:15:32.067912 82964907-be98-471e-82af-3e41d5ddef3c {"md5": "a8d5b28bd75ce8eb862e455a44eebec4", "pid": "1120533929", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1120533929", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1120533929", "source": "GND"}], "variant_name": ["Tiedemann, M. von"], "preferred_name": "Tiedemann, Manfred von", "country_associated": "gw", "variant_access_point": ["Tiedemann, M. von"], "authorized_access_point": "Tiedemann, Manfred von"} 1 -2023-07-08 08:15:32.47171 2023-07-08 08:15:32.47172 5cd71318-ea9d-4c02-8046-0817c2218f6f {"md5": "72af45bfe0e336c7a721880443210c28", "pid": "1121320910", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1121320910", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1121320910", "source": "GND"}], "variant_name": ["Naimpally, S. A.", "Naimpally, Somashekhara Amrith", "Naimpally, Som.", "Naimpally, Somashekhara", "Naimpally, Somashekhara A."], "date_of_birth": "1931", "date_of_death": "2014", "preferred_name": "Naimpally, Somashekhara Amrita", "country_associated": "ii", "variant_access_point": ["Naimpally, S. A., 1931-2014", "Naimpally, Somashekhara Amrith, 1931-2014", "Naimpally, Som., 1931-2014", "Naimpally, Somashekhara, 1931-2014", "Naimpally, Somashekhara A., 1931-2014"], "authorized_access_point": "Naimpally, Somashekhara Amrita, 1931-2014", "biographical_information": ["\\" ... born in 1931 at Bombay has taught at several educational institutions in India and abroad ...\\""]} 1 -2023-07-08 08:15:32.205 2023-07-08 10:26:26.868178 21f98d1a-f608-4040-9c15-6511e8915bf4 {"md5": "40b452ce047923dc829df66f79a7ce75", "pid": "1120736277", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1120736277", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1120736277", "source": "GND"}], "preferred_name": "Mirzaei, Nazli", "country_associated": "ir", "authorized_access_point": "Mirzaei, Nazli", "biographical_information": ["Dissertation, Medizinische Fakultät, Ludwig-Maximilians-Universität München, 2016"]} 2 -2023-07-08 08:15:31.958033 2023-07-08 10:28:20.737598 ef00906c-0a73-4b10-a716-856f38627519 {"md5": "7f89dec65ec7a7062c0ae39d09b922a8", "pid": "1120533260", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1120533260", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1120533260", "source": "GND"}], "preferred_name": "Grellety, Rémi", "authorized_access_point": "Grellety, Rémi"} 2 -2023-07-08 08:15:31.594111 2023-07-08 10:29:05.731397 e0b65a91-8357-49b4-8105-411ccfb7641b {"md5": "2319b27ce54860e949bf1cc64c5659ab", "pid": "111787238", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/111787238", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/111787238", "source": "GND"}], "date_of_birth": "1912", "date_of_death": "2001", "preferred_name": "Simon, George T.", "authorized_access_point": "Simon, George T., 1912-2001"} 2 -2023-07-08 08:15:32.570138 2023-07-08 08:15:32.57015 6a0a237d-b35e-43bd-970a-35f676dbaa47 {"md5": "97762f326159e3769a0d2c8eeaee01d9", "pid": "1121540562", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1121540562", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1121540562", "source": "GND"}], "variant_name": ["Kazem-Bek, M. L.", "Tolstaja, Marija Lʹvovna"], "date_of_birth": "1855", "date_of_death": "1918", "preferred_name": "Kazem-Bek, Marija Lʹvovna", "country_associated": "ru", "variant_access_point": ["Kazem-Bek, M. L., 1855-1918", "Tolstaja, Marija Lʹvovna, 1855-1918"], "authorized_access_point": "Kazem-Bek, Marija Lʹvovna, 1855-1918", "biographical_information": ["Pädagogin und Leiterin des \\"Institut blagorodnych devic\\" (Höhere Mädchenschule) in Moskau und St. Petersburg"]} 1 -2023-07-08 08:15:32.832817 2023-07-08 08:15:32.832828 e0036520-58cc-4a81-abf2-917e554a110f {"md5": "ddc07d3af6e738ab7d1b1bbc530ee137", "pid": "1122056257", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1122056257", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1122056257", "source": "GND"}], "variant_name": ["Jakar, Valeria", "Zhakar, Valeria"], "preferred_name": "Žakar, Valerija", "country_associated": "ru", "variant_access_point": ["Jakar, Valeria", "Zhakar, Valeria"], "authorized_access_point": "Žakar, Valerija"} 1 -2023-07-08 08:15:32.970614 2023-07-08 08:15:32.970626 e3dcb6e3-58bd-427a-88b1-39ad9f4afcf0 {"md5": "e2252656b263cdb550bd462cff4a7692", "pid": "1122060041", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1122060041", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1122060041", "source": "GND"}], "preferred_name": "Dubois, Dominique", "country_associated": "fr", "authorized_access_point": "Dubois, Dominique", "biographical_information": ["Univ. d'Angers"]} 1 -2023-07-08 08:15:33.088673 2023-07-08 08:15:33.088677 ad551a75-e1e9-4e18-9d96-4ef1c621bc1b {"md5": "a25052efd14dffbbe9f65aeb34c59b9b", "pid": "1122486812", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1122486812", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1122486812", "source": "GND"}], "date_of_birth": "ca. 20./21.Jh.", "preferred_name": "Firestein, Cecily Barth", "country_associated": "xxu", "authorized_access_point": "Firestein, Cecily Barth, ca. 20./21.Jh."} 1 -2023-07-08 08:15:33.214229 2023-07-08 08:15:33.21424 2cc73e22-cdc0-48b6-a612-7a49b71ec095 {"md5": "c97681d2f2e7d9366a10c0120f8b809e", "pid": "1122489684", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1122489684", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1122489684", "source": "GND"}], "variant_name": ["30. Werbewirtschaftliche Tagung in Graz, 8.-10. Juni 1983"], "preferred_name": "Werbewirtschaftliche Tagung, 30.", "country_associated": "au", "variant_access_point": ["30. Werbewirtschaftliche Tagung in Graz, 8.-10. Juni 1983"], "authorized_access_point": "Werbewirtschaftliche Tagung, 30., 1983, Graz"} 1 -2023-07-08 08:15:33.318722 2023-07-08 08:15:33.318733 defe64fd-099b-4415-9954-071bfa18e268 {"md5": "87afe73be375c614d13b579665b6be8d", "pid": "1122490267", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1122490267", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1122490267", "source": "GND"}], "variant_name": ["Feldartillerie-Regiment, 51.", "51. Feldartillerie-Regiment", "2. Oberelsässisches Feldartillerie-Regiment Nr. 51"], "preferred_name": "Preußen. Preußische Armee. Feldartillerie-Regiment Nr. 51", "date_of_termination": "1919", "variant_access_point": ["Feldartillerie-Regiment, 51.. Preußen. Preußische Armee", "51. Feldartillerie-Regiment. Preußen. Preußische Armee", "2. Oberelsässisches Feldartillerie-Regiment Nr. 51. Unveraenderte Form"], "date_of_establishment": "1899", "authorized_access_point": "Preußen. Preußische Armee. Feldartillerie-Regiment Nr. 51"} 1 -2023-07-08 08:15:33.459296 2023-07-08 08:15:33.45931 9cbe56f6-6d8b-4fb7-ad3d-98acc921f9b8 {"md5": "f970f00b5a7ad9c0ac6dc2b1270cad6a", "pid": "1123156344", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1123156344", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1123156344", "source": "GND"}], "variant_name": ["Lohale, Prakash A."], "preferred_name": "Lohale, Prakash Anthony", "country_associated": "ii", "variant_access_point": ["Lohale, Prakash A."], "authorized_access_point": "Lohale, Prakash Anthony", "biographical_information": ["M.A. Sociology, M.A. English Literature. - Socius of the Master of the Order for Apostolic Life. He hails from the Province of India but currently lives at Santa Sabina, Rome. - Director of the Office of Ecumenical and Interfaith Affairs, Erzbistum Toronto, ON, Kanada (2018)"]} 1 -2023-07-08 08:15:33.588604 2023-07-08 08:15:33.588612 7f8e6a50-3630-456e-9e48-48176baf7946 {"md5": "c98772e1c21ac284680f4d0ffbe00e88", "pid": "1123162263", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1123162263", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1123162263", "source": "GND"}], "variant_name": ["Lau, Woei Jye"], "date_of_birth": "1983", "preferred_name": "Jye, Lau Woei", "country_associated": "my", "variant_access_point": ["Lau, Woei Jye, 1983-"], "authorized_access_point": "Jye, Lau Woei, 1983-", "biographical_information": ["Currently, senior lecturer at the Faculty of Chemical and Energy Engineering (FCEE) and research fellow at the Advanced Memvrane Technology Research Centre (AMTEC), UTM."]} 1 -2023-07-08 08:15:33.710574 2023-07-08 08:15:33.710585 01b502d6-42da-4651-928e-56e48c17c017 {"md5": "e15664edd9dfab9df6096b3b142d9b8c", "pid": "1123172706", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1123172706", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1123172706", "source": "GND"}], "variant_name": ["Schützle, R."], "date_of_birth": "1979", "preferred_name": "Schützle, Rainer", "country_associated": "gw", "variant_access_point": ["Schützle, R., 1979-"], "authorized_access_point": "Schützle, Rainer, 1979-", "biographical_information": ["Dissertation Universität Stuttgart 2016, Fakultät Luft- und Raumfahrttechnik und Geodäsie"]} 1 -2023-07-08 08:15:33.829202 2023-07-08 08:15:33.829212 1f855d05-3186-402b-a060-ea92bb749ac7 {"md5": "db4ea4d0a99cd9c03bf4aeaf317bc28d", "pid": "1123512752", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1123512752", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1123512752", "source": "GND"}], "variant_name": ["P., J. A."], "preferred_name": "J. A. P.", "country_associated": "gw", "variant_access_point": ["P., J. A."], "authorized_access_point": "J. A. P.", "biographical_information": ["Verfasser eines in Stettin gedruckten Trauergedichtes für Sophie Beate Palthen, gebohrene Coch"]} 1 -2023-07-08 08:15:33.952189 2023-07-08 08:15:33.952198 f63b7fb4-7cf0-401e-9ca7-36cd52722545 {"md5": "df318ea2f3d0a369243a43f1e5ad799e", "pid": "1123752990", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1123752990", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1123752990", "source": "GND"}], "preferred_name": "Prabhakar, Anuparthi John", "country_associated": "ii", "authorized_access_point": "Prabhakar, Anuparthi John"} 1 -2023-07-08 08:15:34.070918 2023-07-08 08:15:34.070927 181fc5e8-ca92-489c-baaf-0c1046023f02 {"md5": "a9260ae3c4278c5fa92cc8769b120d76", "pid": "112427748X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/112427748X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/112427748X", "source": "GND"}], "preferred_name": "Kurt Schild, Münzenhandlung", "authorized_access_point": "Kurt Schild, Münzenhandlung"} 1 -2023-07-08 08:15:34.187729 2023-07-08 08:15:34.187738 c14d6c67-8b4c-408c-8dd3-0ce86c7d85a8 {"md5": "2a9831d195a8ef2665a6f859f664efc6", "pid": "1125914920", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1125914920", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1125914920", "source": "GND"}], "variant_name": ["Goswami, Tulsee Giri"], "preferred_name": "Goswami, Tulsee G.", "country_associated": "ii", "variant_access_point": ["Goswami, Tulsee Giri"], "authorized_access_point": "Goswami, Tulsee G.", "biographical_information": ["Dr. Goswami is form Central University of Rjasthan. Her core area of interest for research is Human Behavior."]} 1 -2023-07-08 08:15:34.307209 2023-07-08 08:15:34.307223 539470e2-cc1e-42ba-bdbe-1f44e0b66c63 {"md5": "a73b523f6daeab64f56da971a4a4d1bb", "pid": "1126056839", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1126056839", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1126056839", "source": "GND"}], "preferred_name": "Scheer, Uwe", "country_associated": "gw", "authorized_access_point": "Scheer, Uwe", "biographical_information": ["studierte Politikwissenschaft an der FAU"]} 1 -2023-07-08 08:15:34.414834 2023-07-08 08:15:34.414849 95798f27-1f62-4445-9d63-7c534f2c81ed {"md5": "cf887a3ca68ca07b003cdde3ff03a653", "pid": "1126065013", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1126065013", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1126065013", "source": "GND"}], "variant_name": ["Institut für Interdisziplinäre Schulforschung", "ISF"], "preferred_name": "Universität Bremen. Institut für Interdisziplinäre Schulforschung", "country_associated": "gw", "date_of_termination": "31.10.2008", "variant_access_point": ["Institut für Interdisziplinäre Schulforschung. Universität Bremen", "ISF. Abkuerzung"], "authorized_access_point": "Universität Bremen. Institut für Interdisziplinäre Schulforschung"} 1 -2023-07-08 08:15:34.512983 2023-07-08 08:15:34.512988 0071e4c5-7fe2-43a2-a409-dda2bbc3a073 {"md5": "0361f412a1f190f090d5a4a2b07afa77", "pid": "1127773151", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1127773151", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1127773151", "source": "GND"}], "date_of_birth": "1875", "date_of_death": "1973", "preferred_name": "Dubus, Hermin", "country_associated": "fr", "authorized_access_point": "Dubus, Hermin, 1875-1973", "biographical_information": ["Auteur de chansons et de saynètes pour les enfants"]} 1 -2023-07-08 08:15:34.589861 2023-07-08 08:15:34.589865 8bd3f92d-8d06-495f-aee3-7874adc46379 {"md5": "3e6734fd79890b0509b45097b3170608", "pid": "1130192466", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1130192466", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1130192466", "source": "GND"}], "variant_name": ["Baylor, Timothy Robert"], "preferred_name": "Baylor, T. Robert", "country_associated": "xxk", "variant_access_point": ["Baylor, Timothy Robert"], "authorized_access_point": "Baylor, T. Robert", "biographical_information": ["Teaching Fellow in Divinity at the University of St. Andrews"]} 1 -2023-07-08 08:15:34.663183 2023-07-08 08:15:34.663189 535469e8-4923-4373-b5da-e6463cd06fd8 {"md5": "a8c9362e347b74d1762a475d888bb545", "pid": "1130814122", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1130814122", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1130814122", "source": "GND"}], "variant_name": ["Hosseinlee, Rasoul"], "preferred_name": "Ḥusainlī, Rasūl", "country_associated": "ir", "variant_access_point": ["Hosseinlee, Rasoul"], "authorized_access_point": "Ḥusainlī, Rasūl"} 1 -2023-07-08 08:15:34.744643 2023-07-08 08:15:34.744646 66971806-7b92-48dd-8044-7a9eaccfe5a8 {"md5": "ac1f34fa5b372fd97600f351af04b299", "pid": "1130817318", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1130817318", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1130817318", "source": "GND"}], "date_of_birth": "17.03.1914", "date_of_death": "25.02.2007", "preferred_name": "Joop, Gerhard", "country_associated": "gw", "authorized_access_point": "Joop, Gerhard, 1914-2007", "biographical_information": ["War langjähriger Chefredakteur der \\"Westermanns Monatshefte\\""]} 1 -2023-07-08 08:15:34.816776 2023-07-08 08:15:34.816779 b405a660-72d8-4e2e-9b8b-b9939c23343e {"md5": "a0783d39523c05798b2d2fea914ca380", "pid": "1131199715", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1131199715", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1131199715", "source": "GND"}], "date_of_birth": "1982", "preferred_name": "Shandilya, Smita", "country_associated": "ii", "authorized_access_point": "Shandilya, Smita, 1982-", "biographical_information": ["Arbeitet am Sagar Institute of Research Technology & Science, India"]} 1 -2023-07-08 08:15:34.883379 2023-07-08 08:15:34.883382 9fdc036f-f509-45e7-9bbe-6f3779467097 {"md5": "c0a8a42987524fe2df1a8aceb09369bb", "pid": "113126262X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/113126262X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/113126262X", "source": "GND"}], "variant_name": ["Silva, Helena Vaz", "Vaz Silva, Helena", "Vaz da Silva, Helena"], "date_of_birth": "1966", "preferred_name": "Silva, Helena Vaz da", "country_associated": "po", "variant_access_point": ["Silva, Helena Vaz, 1966-", "Vaz Silva, Helena, 1966-", "Vaz da Silva, Helena, 1966-"], "authorized_access_point": "Silva, Helena Vaz da, 1966-"} 1 -2023-07-08 08:15:34.954267 2023-07-08 08:15:34.95427 2d375f5d-091b-461e-bb66-dd9a6ed9ddb0 {"md5": "1aca9159cf1102301ec59f5856e360e1", "pid": "1131276868", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1131276868", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1131276868", "source": "GND"}], "variant_name": ["Wehrbezirkskommando Stade"], "preferred_name": "Deutsches Reich. Wehrmacht. Wehrbezirkskommando Stade", "date_of_termination": "1945", "variant_access_point": ["Wehrbezirkskommando Stade"], "authorized_access_point": "Deutsches Reich. Wehrmacht. Wehrbezirkskommando Stade"} 1 -2023-07-08 08:15:35.036225 2023-07-08 08:15:35.036229 9f68fa6c-22d2-4d34-9af9-17fdd4ea4d0f {"md5": "1c056eab9000e4f16d9bac3da696e0b5", "pid": "1131574338", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://d-nb.info/gnd/1131574338", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1131574338", "source": "GND"}], "preferred_name": "Jousjärvi, Reija", "country_associated": "fi", "authorized_access_point": "Jousjärvi, Reija"} 1 -2023-07-08 08:15:35.103021 2023-07-08 08:15:35.103025 31b88b90-deba-474f-bea3-3b2b83dd2d30 {"md5": "e5abb4ae7d7b0eb40e47dfad65ba9ffb", "pid": "1131715187", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1131715187", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1131715187", "source": "GND"}], "variant_name": ["Lamm, Marianna"], "date_of_birth": "28.04.1789", "date_of_death": "06.05.1851", "preferred_name": "Mockel, Marianna", "country_associated": "gw", "variant_access_point": ["Lamm, Marianna, 1789-1851"], "authorized_access_point": "Mockel, Marianna, 1789-1851"} 1 -2023-07-08 08:15:35.1726 2023-07-08 08:15:35.172604 94045179-b845-467d-9e60-f21a9cf09a5d {"md5": "44cfb6828785267c46b6926db33ebfd4", "pid": "1132157781", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1132157781", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1132157781", "source": "GND"}], "preferred_name": "Grundei, Sophia", "country_associated": "gw", "authorized_access_point": "Grundei, Sophia"} 1 -2023-07-08 08:15:35.243153 2023-07-08 08:15:35.243157 579e4cc9-de64-4550-96b4-73d89996874a {"md5": "b17ef591b7c724a06e17834d66127187", "pid": "1132540623", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1132540623", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1132540623", "source": "GND"}], "variant_name": ["Desai, Armaity Sapur"], "date_of_birth": "1934", "preferred_name": "Desai, Armaity S.", "country_associated": "ii", "variant_access_point": ["Desai, Armaity Sapur, 1934-"], "authorized_access_point": "Desai, Armaity S., 1934-"} 1 -2023-07-08 08:15:35.3269 2023-07-08 08:15:35.326905 f4ca84d3-2d52-4a96-853b-cbca7de9f112 {"md5": "307bc4ed5023134972562fd265d0fec4", "pid": "113454228", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/113454228", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/113454228", "source": "GND"}], "variant_name": ["Druba, Bernd Brandes-", "Brandes, Bernd"], "date_of_birth": "1960", "preferred_name": "Brandes-Druba, Bernd", "country_associated": "gw", "variant_access_point": ["Druba, Bernd Brandes-, 1960-", "Brandes, Bernd, 1960-"], "authorized_access_point": "Brandes-Druba, Bernd, 1960-"} 1 -2023-07-08 08:15:35.418171 2023-07-08 08:15:35.418179 dcbb3963-9d25-48e4-b98a-18fcc2f33706 {"md5": "de6ac32b7effb8cb16824b4098860bfd", "pid": "1135284865", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1135284865", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1135284865", "source": "GND"}], "variant_name": ["Fachschaft Soziologie, Politologie, Sozialkunde"], "preferred_name": "Universität Regensburg. Fachschaft Soziologie, Politologie, Sozialkunde", "country_associated": "gw", "variant_access_point": ["Fachschaft Soziologie, Politologie, Sozialkunde. Universität Regensburg"], "date_of_establishment": "ca. 1970er Jahre", "authorized_access_point": "Universität Regensburg. Fachschaft Soziologie, Politologie, Sozialkunde"} 1 -2023-07-08 08:15:35.528438 2023-07-08 08:15:35.528445 5b0d5c67-2ce0-4fe7-975c-bc9bd7fd8d7e {"md5": "6c063827fc49845d79dc979ceb27e009", "pid": "1135632049", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1135632049", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1135632049", "source": "GND"}], "variant_name": ["Marazopulos, Chr.", "Marazopulos, Ch."], "date_of_birth": "1954", "preferred_name": "Marazopulos, Chrēstos", "country_associated": "gr", "variant_access_point": ["Marazopulos, Chr., 1954-", "Marazopulos, Ch., 1954-"], "parallel_access_point": ["Μαραζόπουλος, Χρήστος, 1954-"], "authorized_access_point": "Marazopulos, Chrēstos, 1954-"} 1 -2023-07-08 08:15:35.764602 2023-07-08 08:15:35.764608 e113c867-90cb-43e3-b706-a0c74ab02ebc {"md5": "79c0b325670f21db72e719d2d966ed0f", "pid": "1136441034", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1136441034", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1136441034", "source": "GND"}], "preferred_name": "Nordergraaf, Marijke", "authorized_access_point": "Nordergraaf, Marijke"} 1 -2023-07-08 08:15:35.86011 2023-07-08 08:15:35.860119 34b52b1f-4afb-45fe-8beb-249a7fb3e2d5 {"md5": "fa5f79b07d7ef1f3d74f8d2fd807550a", "pid": "113660216X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/113660216X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/113660216X", "source": "GND"}], "date_of_birth": "11.10.1898", "date_of_death": "14.07.1970", "preferred_name": "Wopperer, Anton", "country_associated": "gw", "authorized_access_point": "Wopperer, Anton, 1898-1970", "biographical_information": ["Geschäftsführender Direktor des Deutschen Caritasverbandes Freiburg"]} 1 -2023-07-08 08:15:35.953855 2023-07-08 08:15:35.953863 f2ba6183-445e-494a-a00c-805f331c48d4 {"md5": "4849faafbbcb110c200c3294d8430554", "pid": "1137394390", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1137394390", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1137394390", "source": "GND"}], "preferred_name": "Meyer, Emily Dorothee", "authorized_access_point": "Meyer, Emily Dorothee", "biographical_information": ["Dissertation 2017, Albert-Ludwigs-Universität Freiburg i. Br., Medizinische Fakultät"]} 1 -2023-07-08 08:15:36.033826 2023-07-08 08:15:36.033835 43c67df5-8b82-43ce-bb32-72e91ddc34ef {"md5": "f9fba29aed9d493e147f8bbdcca5bfb0", "pid": "1137496746", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1137496746", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1137496746", "source": "GND"}], "variant_name": ["Schreiner, Anne Rita"], "date_of_birth": "1988", "preferred_name": "Schreiner, Anne", "country_associated": "gw", "variant_access_point": ["Schreiner, Anne Rita, 1988-"], "authorized_access_point": "Schreiner, Anne, 1988-"} 1 -2023-07-08 08:15:36.113492 2023-07-08 08:15:36.113496 2d766d98-ab02-47f5-a91d-fe2ccdca305d {"md5": "ec446d3d71123153d0db5c5c6c20af8f", "pid": "1137635371", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1137635371", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1137635371", "source": "GND"}], "variant_name": ["Sobreira Lopes, Rita"], "preferred_name": "Lopes, Rita Sobreira", "country_associated": "bl", "variant_access_point": ["Sobreira Lopes, Rita"], "authorized_access_point": "Lopes, Rita Sobreira", "biographical_information": ["PhD, Psychology, University of London ; Full prof. in developmental psychology"]} 1 -2023-07-08 08:15:36.205143 2023-07-08 08:15:36.205153 3dd78525-368f-4c16-84c3-7c778f43a025 {"md5": "9eb9f60631c67575e3b129591e531cb1", "pid": "1137723467", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1137723467", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1137723467", "source": "GND"}], "variant_name": ["Zarten, ... von"], "preferred_name": "Kirchbach, ... von", "country_associated": "gw", "variant_access_point": ["Zarten, ... von"], "authorized_access_point": "Kirchbach, ... von"} 1 -2023-07-08 08:15:36.309325 2023-07-08 08:15:36.309337 49d98052-644c-4b9f-944e-d637e80e2740 {"md5": "481603b5476e4f4671365e413f2aede0", "pid": "1137735988", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1137735988", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1137735988", "source": "GND"}], "variant_name": ["Legros Georges, Danielle", "Georges, Danielle"], "date_of_birth": "1964", "preferred_name": "Georges, Danielle Legros", "country_associated": "xxu", "variant_access_point": ["Legros Georges, Danielle, 1964-", "Georges, Danielle, 1964-"], "authorized_access_point": "Georges, Danielle Legros, 1964-", "biographical_information": ["Professor in the Creative Arts in Learning Division of Lesley University, Cambridge, MA"]} 1 -2023-07-08 08:15:36.392053 2023-07-08 08:15:36.392057 67b7201e-dbb3-4d20-8081-3fd4ff20f12a {"md5": "346d7f6d58434de282e0e2b63119b00d", "pid": "1137839392", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1137839392", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1137839392", "source": "GND"}], "variant_name": ["Chomutnikov, Chongor P.", "Chomutnikov, Ch. P.", "Хомутников, Хонгор Петрович"], "date_of_birth": "ca. 20./21. Jh.", "preferred_name": "Chomutnikov, Chongor Petrovič", "country_associated": "ru", "variant_access_point": ["Chomutnikov, Chongor P., ca. 20./21. Jh.", "Chomutnikov, Ch. P., ca. 20./21. Jh.", "Хомутников, Хонгор Петрович, ca. 20./21. Jh."], "authorized_access_point": "Chomutnikov, Chongor Petrovič, ca. 20./21. Jh.", "biographical_information": ["Internet, weitere Angaben, http://www.elista.org/socium/v_kalmykii_prezentovali_knigu_o_podvigah_110_okkd/"]} 1 -2023-07-08 08:15:36.478082 2023-07-08 08:15:36.478088 2361a5a2-a8c8-4b7a-b38b-1d85d7337ee5 {"md5": "1ba9aa7af23bc99df5a649b875d37bbc", "pid": "1137872462", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1137872462", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1137872462", "source": "GND"}], "preferred_name": "Wegmüller, David", "country_associated": "gw", "authorized_access_point": "Wegmüller, David", "biographical_information": ["Gesundheits- und Krankenpfleger mit sozialpsychiatrischer Zusatzausbildung, Pflegemanagement BA, Abteilungsleitung in der Psychiatrie"]} 1 -2023-07-08 08:15:36.548322 2023-07-08 08:15:36.548328 b5222de9-f143-430e-bffa-3b7bc2fdb066 {"md5": "076b478cf9d659612083950d93ca6f9e", "pid": "1137888660", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1137888660", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1137888660", "source": "GND"}], "date_of_birth": "1947", "preferred_name": "Braunschweig-Ullmann, Renate", "country_associated": "gw", "authorized_access_point": "Braunschweig-Ullmann, Renate, 1947-"} 1 -2023-07-08 08:15:36.615212 2023-07-08 08:15:36.615215 4cdbd90e-7e5d-4575-9b4c-0c1f2d40bfbe {"md5": "b21b65173b3d596ca261e9620d9a9db0", "pid": "1138213659", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1138213659", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1138213659", "source": "GND"}], "preferred_name": "Grueber, Abraham Christoph", "country_associated": "gw", "authorized_access_point": "Grueber, Abraham Christoph"} 1 -2023-07-08 08:15:36.683368 2023-07-08 08:15:36.68337 e58f0192-61e2-40f3-bdae-8d536989765f {"md5": "ad8fa1e0e6fbde35aa5f41b0cdfd42d8", "pid": "113918055X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/113918055X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/113918055X", "source": "GND"}], "date_of_birth": "1989", "preferred_name": "Schwärsky, Benjamin", "country_associated": "gw", "authorized_access_point": "Schwärsky, Benjamin, 1989-"} 1 -2023-07-08 08:15:36.75409 2023-07-08 08:15:36.754093 436420df-1c0d-4004-a05d-d9dc7e81970f {"md5": "56f23e0f0971a51f8779b195ee47374c", "pid": "1139311719", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1139311719", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1139311719", "source": "GND"}], "variant_name": ["Ingólfsdóttir, Auður H."], "date_of_birth": "1970", "preferred_name": "Auður H. Ingólfsdóttir", "country_associated": "ic", "variant_access_point": ["Ingólfsdóttir, Auður H., 1970-"], "authorized_access_point": "Auður H. Ingólfsdóttir, 1970-", "biographical_information": ["BA (International studies, University of Washington, Seattle), post graduate diploma (Professional journalism, University of Iceland), MA (International relations, Fletcher School of Law and Diplomacy, Tufts University, Boston), PhD (Universität Lappland, Rovaniemi, 2016), Assistant Professor an der Universität Bifröst (Island)"]} 1 -2023-07-08 08:15:36.930005 2023-07-08 08:15:36.93001 a00219ff-d386-4082-94ef-762d97f04500 {"md5": "cb609aed6c21356abdf4cfd3cc16d7da", "pid": "1139404660", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1139404660", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1139404660", "source": "GND"}], "variant_name": ["Nikolić Lakatos, Ruža", "Lakatos, Ruža Nikolić-", "Nikolic-Lakatos, Ruzsa"], "date_of_birth": "1945", "date_of_death": "2022", "preferred_name": "Nikolić-Lakatos, Ruža", "country_associated": "au", "variant_access_point": ["Nikolić Lakatos, Ruža, 1945-2022", "Lakatos, Ruža Nikolić-, 1945-2022", "Nikolic-Lakatos, Ruzsa, 1945-2022"], "authorized_access_point": "Nikolić-Lakatos, Ruža, 1945-2022", "biographical_information": ["Österr. Roma-Sängerin; Mitbegründerin der Vienna Gipsy Music School"]} 1 -2023-07-08 08:15:37.004678 2023-07-08 08:15:37.004682 c389148f-6a0d-40e5-a8ad-7b19b275d926 {"md5": "b875fc61e26cddfcef066ef2e5bd482d", "pid": "1139496387", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1139496387", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1139496387", "source": "GND"}], "preferred_name": "Sinding, Knut", "country_associated": "dk", "authorized_access_point": "Sinding, Knut"} 1 -2023-07-08 08:15:37.081555 2023-07-08 08:15:37.08156 0a557f6a-b799-449c-a5bf-ca2573f6fc42 {"md5": "d68416b81bed34c6e2537a971981d0f5", "pid": "1139509292", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1139509292", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1139509292", "source": "GND"}], "date_of_birth": "1979", "preferred_name": "Nerlich, Alexander", "country_associated": "gw", "authorized_access_point": "Nerlich, Alexander, 1979-"} 1 -2023-07-08 08:15:37.182032 2023-07-08 08:15:37.182035 44c8e0f2-cd96-4b99-aa3b-78e0329b07e6 {"md5": "40dca0d57cea77d3d428f04c8000e65b", "pid": "1139789902", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1139789902", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1139789902", "source": "GND"}], "variant_name": ["Mignaburu-Berho, Magdalena E.", "Berho, Magdalena E. Mignaburu", "Mignaburu, Magdalena"], "date_of_birth": "1955", "preferred_name": "Mignaburu Berho, Magdalena E.", "country_associated": "ag", "variant_access_point": ["Mignaburu-Berho, Magdalena E., 1955-", "Berho, Magdalena E. Mignaburu, 1955-", "Mignaburu, Magdalena, 1955-"], "authorized_access_point": "Mignaburu Berho, Magdalena E., 1955-"} 1 -2023-07-08 08:15:37.279912 2023-07-08 08:15:37.279918 dfc3cb69-a9de-4eda-ae28-388f1a4165a9 {"md5": "99cf6ad22bcc08c9659db50e92b0e76f", "pid": "113997981", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/113997981", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/113997981", "source": "GND"}], "variant_name": ["Schick, Friederike"], "date_of_birth": "1960", "preferred_name": "Schick, Friedrike", "variant_access_point": ["Schick, Friederike, 1960-"], "authorized_access_point": "Schick, Friedrike, 1960-", "biographical_information": ["Professorin am Philosophischen Semiar der Universität Tübingen"]} 1 -2023-07-08 08:15:37.37365 2023-07-08 08:15:37.373662 e4351e23-89ad-4945-b5c6-a65b38feebe4 {"md5": "dd9fa253012f0c8cf157a7cce4e21ad9", "pid": "1140050974", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1140050974", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1140050974", "source": "GND"}], "date_of_birth": "1970", "preferred_name": "Messerle, Anke", "country_associated": "gw", "authorized_access_point": "Messerle, Anke, 1970-", "biographical_information": ["Sozialrechtsberaterin in einer Reha-Klinik, Trainerin, Moderatorin und Mediatorin"]} 1 -2023-07-08 08:15:37.463278 2023-07-08 08:15:37.463282 f2af9c46-37a2-4a4c-97e4-1b48933953eb {"md5": "99c7607bcce76fb207aef28b12dc2203", "pid": "1140159526", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1140159526", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1140159526", "source": "GND"}], "variant_name": ["Granado Castro, Gabriel", "Castro, Gabriel Granado-", "Castro, Gabriel Granado"], "preferred_name": "Granado-Castro, Gabriel", "country_associated": "sp", "variant_access_point": ["Granado Castro, Gabriel", "Castro, Gabriel Granado-", "Castro, Gabriel Granado"], "authorized_access_point": "Granado-Castro, Gabriel"} 1 -2023-07-08 08:15:37.535961 2023-07-08 08:15:37.535968 9873c0ca-d74f-426f-a444-364af7da1243 {"md5": "de96cf7ab5f42e0edd0b911d245c719c", "pid": "114054635X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/114054635X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/114054635X", "source": "GND"}], "date_of_birth": "1984", "preferred_name": "Soo, Anneli", "country_associated": "er", "authorized_access_point": "Soo, Anneli, 1984-"} 1 -2023-07-08 08:15:37.610722 2023-07-08 08:15:37.610727 6c2ca018-1578-44b7-9244-0091e8e142bf {"md5": "ff2471e8091ba537c3938739efbb91c3", "pid": "1140620959", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1140620959", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1140620959", "source": "GND"}], "date_of_birth": "1951", "preferred_name": "Rumpeltes, Raimund", "country_associated": "gw", "authorized_access_point": "Rumpeltes, Raimund, 1951-", "biographical_information": ["Ausbildungstätigkeit am Institut für Psychoanalyse Heidelberg"]} 1 -2023-07-08 08:15:37.704483 2023-07-08 08:15:37.704491 186e9708-5b25-4c38-b424-471028bd611c {"md5": "bc58d88e13214e35b088ebe879d6c738", "pid": "1141185997", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1141185997", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1141185997", "source": "GND"}], "preferred_name": "Brückner, Lara", "country_associated": "gw", "authorized_access_point": "Brückner, Lara", "biographical_information": ["Ehemals tätig am Institut für Kommunikationswissenschaft an der Universität Hohenheim"]} 1 -2023-07-08 08:15:37.792609 2023-07-08 08:15:37.792618 40c96191-da9a-4c05-bdb8-6f2bd4ef0637 {"md5": "58a895f89cddedec497584fc41dcdb1c", "pid": "1141203960", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1141203960", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1141203960", "source": "GND"}], "preferred_name": "Geetha, V.", "country_associated": "ii", "authorized_access_point": "Geetha, V.", "biographical_information": ["Assistant Professor, Mannar Thirumalai Naicker College, Madurai, India"]} 1 -2023-07-08 08:15:37.881383 2023-07-08 08:15:37.881386 b58f46d2-9202-4e9f-802b-5de57b100562 {"md5": "01a4c74f21ad12ba95dada06da379532", "pid": "1141331683", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1141331683", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1141331683", "source": "GND"}], "preferred_name": "Pascual Planchuelo, Víctor Carlos", "country_associated": "sp", "authorized_access_point": "Pascual Planchuelo, Víctor Carlos"} 1 -2023-07-08 08:15:37.993303 2023-07-08 08:15:37.993311 f68c0f5c-7b2b-459d-8e52-c5345d9932f5 {"md5": "b9c26dfaf50633172a8d40ecb851fb20", "pid": "1141410621", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1141410621", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1141410621", "source": "GND"}], "variant_name": ["Geng Hongyan", "Hongyan, Geng"], "preferred_name": "Geng, Hongyan", "country_associated": "cc", "variant_access_point": ["Geng Hongyan", "Hongyan, Geng"], "authorized_access_point": "Geng, Hongyan", "biographical_information": ["School of Management, Xiʹan Jiaotong University, China"]} 1 -2023-07-08 08:15:38.134933 2023-07-08 08:15:38.134945 329b5329-93a5-4e38-8e18-8ba859cf2726 {"md5": "67cf4c85870adb55d64c937281b04c4c", "pid": "1142191087", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1142191087", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1142191087", "source": "GND"}], "variant_name": ["Atelierausstellung des Ateliers Tom Munsteiner, 11."], "preferred_name": "Atelier Tom Munsteiner, 11.", "country_associated": "gw", "variant_access_point": ["Atelierausstellung des Ateliers Tom Munsteiner, 11., 2017, Stipshausen"], "authorized_access_point": "Atelier Tom Munsteiner. Atelierausstellung, 11., 2017, Stipshausen"} 1 -2023-07-08 08:15:38.346002 2023-07-08 08:15:38.346008 16278b50-08c5-4ab3-ac29-85380803509b {"md5": "1e0270732da781026afd45d6df94ff87", "pid": "1142566420", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1142566420", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1142566420", "source": "GND"}], "variant_name": ["Dominick A. Conde"], "preferred_name": "Conde, Dominick A.", "variant_access_point": ["Dominick A. Conde"], "authorized_access_point": "Conde, Dominick A.", "biographical_information": ["Laywer Litigation - Intellectual Property"]} 1 -2023-07-08 08:15:38.432941 2023-07-08 08:15:38.432954 d4c55d41-0a74-475c-a90a-0722b5586a51 {"md5": "ab48d8e4642e5c43f6bf803579ea5d84", "pid": "1143061578", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1143061578", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1143061578", "source": "GND"}], "date_of_birth": "1917", "date_of_death": "2009", "preferred_name": "Malkin, Borys", "country_associated": "pl", "authorized_access_point": "Malkin, Borys, 1917-2009", "biographical_information": ["* 20. November 1917 in Wizebsk; † 12. August 2009 in Warschau; Anthropologe, Entomologe und Herpetologe"]} 1 -2023-07-08 08:15:38.507466 2023-07-08 08:15:38.507469 576c7b22-7430-4b0a-a441-6dbd7f813468 {"md5": "b7a71f2bc74e690dfc7b3de1622df6a7", "pid": "1143241045", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1143241045", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1143241045", "source": "GND"}], "preferred_name": "Brookes, James", "country_associated": "xxk", "authorized_access_point": "Brookes, James"} 1 -2023-07-08 08:15:38.587302 2023-07-08 08:15:38.587309 d7e96843-2bed-48ba-8c5c-3727641f540e {"md5": "83254fa7630a2426a09a078f0ae719d3", "pid": "1143266722", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1143266722", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1143266722", "source": "GND"}], "variant_name": ["Richter, Regina"], "date_of_birth": "12.01.1954", "date_of_death": "22.10.2017", "preferred_name": "Gorjewa, Regina", "country_associated": "gw", "variant_access_point": ["Richter, Regina, 1954-2017"], "authorized_access_point": "Gorjewa, Regina, 1954-2017"} 1 -2023-07-08 08:15:38.660665 2023-07-08 08:15:38.660673 b31387a4-2665-406a-8de3-3ffa87d3b25f {"md5": "0ba02a50a84e0d2fefed125d7aa98ecd", "pid": "1143567234", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1143567234", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1143567234", "source": "GND"}], "preferred_name": "Davids, Barbara", "country_associated": "gw", "authorized_access_point": "Davids, Barbara"} 1 -2023-07-08 08:15:38.753192 2023-07-08 08:15:38.7532 0c16f53d-ebd7-4437-9c74-e5844d6e272c {"md5": "a07c1eef4749d252cdbb47db8ba87853", "pid": "1144273307", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1144273307", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1144273307", "source": "GND"}], "preferred_name": "Chang, Mira", "country_associated": "gw", "authorized_access_point": "Chang, Mira", "biographical_information": ["Studierte Internationales Wirtschaftsrecht in Erlangen, Nürnberg und Montevideo (Uruguay), mit weiteren Stationen in La Paz (Bolivien), Quito (Ecuador) und Brüssel"]} 1 -2023-07-08 08:15:38.943457 2023-07-08 08:15:38.943462 a865d0a2-54e7-4747-8067-559a60eecad1 {"md5": "f1cd9fa2eb95e588173f98b2a87ba3a3", "pid": "1144669049", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1144669049", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1144669049", "source": "GND"}], "variant_name": ["Arnhold, Anna-Maria"], "date_of_birth": "1918", "date_of_death": "2017", "preferred_name": "Kellen, Anna-Maria", "country_associated": "xxu", "variant_access_point": ["Arnhold, Anna-Maria, 1918-2017"], "authorized_access_point": "Kellen, Anna-Maria, 1918-2017", "biographical_information": ["amerikanische Philanthropin, Tochter des Bankiers Hans Arnhold (1888-1966), Emigration in die USA"]} 1 -2023-07-08 08:15:39.032618 2023-07-08 08:15:39.032623 c11cbf17-f39a-43af-9ab5-bd3c39bdc935 {"md5": "b4b6feb45ec3b7116b80c708d68e1f18", "pid": "1145344372", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1145344372", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1145344372", "source": "GND"}], "date_of_birth": "1945", "preferred_name": "Albuschkat, Harald", "authorized_access_point": "Albuschkat, Harald, 1945-"} 1 -2023-07-08 08:15:39.125738 2023-07-08 08:15:39.125745 0ee7c467-0b2e-45ec-8b32-5b204687dd0b {"md5": "66a27d95f654d26f149f79b1c5e8fd6e", "pid": "1145352111", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1145352111", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1145352111", "source": "GND"}], "date_of_birth": "1941", "preferred_name": "Batzer, Eberhard", "authorized_access_point": "Batzer, Eberhard, 1941-"} 1 -2023-07-08 08:15:39.44512 2023-07-08 08:15:39.445124 2cfb5df2-b50c-4603-ad7f-931db9750493 {"md5": "11b7f24155f9146e43d1cced328286a1", "pid": "1145390439", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1145390439", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1145390439", "source": "GND"}], "date_of_birth": "1936", "preferred_name": "Froehner, Klaus", "authorized_access_point": "Froehner, Klaus, 1936-"} 1 -2023-07-08 08:15:39.644325 2023-07-08 08:15:39.64433 ff8c7080-2476-41ea-87ca-3f7936ba8287 {"md5": "c8742f6f6bee39e6bbb579046a81843d", "pid": "1145435904", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1145435904", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1145435904", "source": "GND"}], "variant_name": ["Keller, Robert Friedrich"], "date_of_birth": "1937", "preferred_name": "Keller, Robert F.", "variant_access_point": ["Keller, Robert Friedrich, 1937-"], "authorized_access_point": "Keller, Robert F., 1937-"} 1 -2023-07-08 08:15:39.737456 2023-07-08 08:15:39.737464 86df95df-347e-4f3d-b5df-5ad91707f261 {"md5": "cd9a69e9e725e3e62b5e2bddd859d22d", "pid": "114546193X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/114546193X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/114546193X", "source": "GND"}], "date_of_birth": "1939", "preferred_name": "Littich, Manfred", "authorized_access_point": "Littich, Manfred, 1939-"} 1 -2023-07-08 08:15:39.814198 2023-07-08 08:15:39.814204 8612c0b1-2eb0-41d6-90ac-78ad61428e42 {"md5": "13653ab090bf9a996bffa03a1fb4cd6b", "pid": "1145486533", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1145486533", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1145486533", "source": "GND"}], "variant_name": ["Nöldeke, Alexander"], "date_of_birth": "1890", "preferred_name": "Noeldeke, Alexander", "country_associated": "gw", "variant_access_point": ["Nöldeke, Alexander, 1890-"], "authorized_access_point": "Noeldeke, Alexander, 1890-", "biographical_information": ["(geb. in Karlsruhe i.B.)"]} 1 -2023-07-08 08:15:40.006388 2023-07-08 08:15:40.006394 ba986693-03cf-401e-847c-89feb141c77e {"md5": "a53458b0d3aa531e8c81c4b77733dbd2", "pid": "1145537650", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1145537650", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1145537650", "source": "GND"}], "variant_name": ["Sommermann, Erhard Friedrich"], "date_of_birth": "1938", "preferred_name": "Sommermann, Friedrich", "variant_access_point": ["Sommermann, Erhard Friedrich, 1938-"], "authorized_access_point": "Sommermann, Friedrich, 1938-"} 1 -2023-07-08 08:15:40.078572 2023-07-08 08:15:40.078578 3e4b6511-739e-4202-bff3-4e5053b0c0d9 {"md5": "436cce1bd5772bd7c5390e731fd8d13b", "pid": "1145563104", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1145563104", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1145563104", "source": "GND"}], "date_of_birth": "1949", "preferred_name": "Wengeler, Heinz", "authorized_access_point": "Wengeler, Heinz, 1949-"} 1 -2023-07-08 08:15:39.906586 2023-07-08 10:28:47.896974 5f26bd30-3156-4544-abe5-a5c1cf14c2e7 {"md5": "6bfd022e5146f8b9d156afac9f815a1e", "pid": "1145519989", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1145519989", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1145519989", "source": "GND"}], "date_of_birth": "1929", "preferred_name": "Schick, Frederic", "authorized_access_point": "Schick, Frederic, 1929-"} 2 -2023-07-08 08:15:39.547701 2023-07-08 10:30:41.091536 ced37c1f-08ef-4fc8-b83e-a0fdc302be46 {"md5": "a31a3560c1a6757f2dcdf66fa8150e54", "pid": "1145399924", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1145399924", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1145399924", "source": "GND"}], "date_of_birth": "1947", "preferred_name": "Graf, Arnim", "authorized_access_point": "Graf, Arnim, 1947-"} 2 -2023-07-08 08:15:40.161035 2023-07-08 08:15:40.161041 b5456290-91bc-4be7-9ace-2e30f379768c {"md5": "c93e1d3059e0f890e43fe569312c7b12", "pid": "1145741851", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1145741851", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1145741851", "source": "GND"}], "preferred_name": "Wilmink, Willem", "authorized_access_point": "Wilmink, Willem", "biographical_information": ["Schriftsteller"]} 1 -2023-07-08 08:15:40.251189 2023-07-08 08:15:40.2512 424ae179-9840-454b-8e33-21473ffdbf4c {"md5": "f43df22e4496f33aa5aa86e766239a7f", "pid": "1145791662", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1145791662", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1145791662", "source": "GND"}], "date_of_birth": "1946", "preferred_name": "Deàk, Katalin", "authorized_access_point": "Deàk, Katalin, 1946-"} 1 -2023-07-08 08:15:40.344282 2023-07-08 08:15:40.344286 03633af6-a35d-4981-b32f-e6180f01bcfc {"md5": "1b5ab28f5935e86718ab4faddebb554b", "pid": "1145807690", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1145807690", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1145807690", "source": "GND"}], "variant_name": ["Kiselev, Kuz'ma Venediktovič", "Kiselev, K. V.", "Kiselev, Kuz'ma Venediktovich", "Киселев, Кузьма Венедиктович"], "date_of_birth": "1903", "preferred_name": "Kiselev, Kuz'ma V.", "variant_access_point": ["Kiselev, Kuz'ma Venediktovič, 1903-", "Kiselev, K. V., 1903-", "Kiselev, Kuz'ma Venediktovich, 1903-", "Киселев, Кузьма Венедиктович, 1903-"], "parallel_access_point": ["Киселев, Кузьма Венедиктович, 1903-"], "authorized_access_point": "Kiselev, Kuz'ma V., 1903-"} 1 -2023-07-08 08:15:40.444709 2023-07-08 08:15:40.444713 d6b5ed13-a6d6-408a-aaae-5bcfbde786d8 {"md5": "ae352af8b57621a445331ddcdff98f2b", "pid": "1145825796", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1145825796", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1145825796", "source": "GND"}], "date_of_birth": "1938", "preferred_name": "Meents, Dietlind", "authorized_access_point": "Meents, Dietlind, 1938-"} 1 -2023-07-08 08:15:40.634123 2023-07-08 08:15:40.634131 4ce4d8db-482b-4a3e-ae22-7bbccb974c72 {"md5": "51e7c15d42ed5d27406e207183193f4c", "pid": "1145891209", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1145891209", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1145891209", "source": "GND"}], "date_of_birth": "1959", "preferred_name": "Plasa, Carl", "authorized_access_point": "Plasa, Carl, 1959-"} 1 -2023-07-08 08:15:40.842505 2023-07-08 08:15:40.842509 a60dfb5e-9fdd-4a0d-81a8-ea1116c0a021 {"md5": "89e9271b8c27680fad1165bb9e35a1fe", "pid": "1145959857", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1145959857", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1145959857", "source": "GND"}], "date_of_birth": "1888", "preferred_name": "Bendfeldt, Franz", "country_associated": "gw", "authorized_access_point": "Bendfeldt, Franz, 1888-"} 1 -2023-07-08 08:15:41.04571 2023-07-08 08:15:41.045718 f3140475-185e-4d4a-bcda-0324f1f42aec {"md5": "1aa904b2789a1fd2ae8f3c6ab64889fe", "pid": "114606151X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/114606151X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/114606151X", "source": "GND"}], "date_of_birth": "1934", "preferred_name": "Bergsma, Jurrit", "authorized_access_point": "Bergsma, Jurrit, 1934-"} 1 -2023-07-08 08:15:41.138675 2023-07-08 08:15:41.138677 d704f19b-3a53-4f5f-9d8a-d06cbbcd17f3 {"md5": "ffeb5012c093c4fa7cb8e2cdd972ce0f", "pid": "1146063067", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1146063067", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146063067", "source": "GND"}], "variant_name": ["Mokashi, J. B."], "date_of_birth": "1912", "preferred_name": "Mokashi, Jayaram Balkrishna", "variant_access_point": ["Mokashi, J. B., 1912-"], "parallel_access_point": ["Mokashi, J. B., 1912-"], "authorized_access_point": "Mokashi, Jayaram Balkrishna, 1912-"} 1 -2023-07-08 08:15:41.229088 2023-07-08 08:15:41.229093 3851ff9c-f55c-4f71-96f8-a7986fbe343e {"md5": "204ec1ac0fefefadc3b5e1daa37efb05", "pid": "1146079567", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1146079567", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146079567", "source": "GND"}], "variant_name": ["Raschdorf, Eveline"], "date_of_birth": "1950", "preferred_name": "Raschdorf, Evelin", "variant_access_point": ["Raschdorf, Eveline, 1950-"], "authorized_access_point": "Raschdorf, Evelin, 1950-"} 1 -2023-07-08 08:15:41.316283 2023-07-08 08:15:41.316287 dbdbfdb8-f0bd-43b3-b916-27ab104d3eae {"md5": "46375c3dba1ba9e49eb6b0e22251e6b3", "pid": "1146080271", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1146080271", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146080271", "source": "GND"}], "date_of_birth": "11.08.1874", "date_of_death": "XX.XX.19XX", "preferred_name": "Hercher, Ludwig", "authorized_access_point": "Hercher, Ludwig, 1874-", "biographical_information": ["Oberbaurat in Düsseldorf"]} 1 -2023-07-08 08:15:40.53432 2023-07-08 10:26:56.350967 552ee475-120e-4d5c-b94a-3193b8513485 {"md5": "218469d4720493f29d1b6fa6816675a4", "pid": "1145880231", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1145880231", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1145880231", "source": "GND"}], "date_of_birth": "1947", "preferred_name": "Tirichter, Monika", "authorized_access_point": "Tirichter, Monika, 1947-"} 2 -2023-07-08 08:15:40.935157 2023-07-08 10:30:07.22502 0c2deb9a-f35c-4851-9dc4-19d8345484dd {"md5": "11acf29dc49c499b15015817ee3a0960", "pid": "1146015976", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1146015976", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146015976", "source": "GND"}], "date_of_birth": "1888", "preferred_name": "Hohenberger, Adam", "country_associated": "gw", "authorized_access_point": "Hohenberger, Adam, 1888-"} 2 -2023-07-08 08:15:41.41119 2023-07-08 08:15:41.411194 a73b5b2a-e6f4-44d7-a227-b6695257c846 {"md5": "99709b713b27c2bccbff342cd62915cc", "pid": "1146220359", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1146220359", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146220359", "source": "GND"}], "date_of_birth": "1937", "preferred_name": "Khalil, Essam", "authorized_access_point": "Khalil, Essam, 1937-"} 1 -2023-07-08 08:15:41.694178 2023-07-08 08:15:41.694185 b3449cd6-1f0f-45b0-bfc8-46f3a0409a5a {"md5": "46dbf8e7abeca4e2da41f0e8e0d6e0b5", "pid": "1146397208", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1146397208", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146397208", "source": "GND"}], "preferred_name": "Florentz, Didier", "authorized_access_point": "Florentz, Didier", "biographical_information": ["franz. Colorist"]} 1 -2023-07-08 08:15:41.781634 2023-07-08 08:15:41.78164 d5be6aa4-4e99-457e-9442-06665deaca81 {"md5": "75a836168b88ae2ff5b351b78d15fe10", "pid": "1146403054", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1146403054", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146403054", "source": "GND"}], "date_of_birth": "1962", "preferred_name": "Hoppe, Albrecht", "country_associated": "gw", "authorized_access_point": "Hoppe, Albrecht, 1962-"} 1 -2023-07-08 08:15:41.871886 2023-07-08 08:15:41.87189 50c5d1b7-c82d-4288-a6f3-2b41f87833d4 {"md5": "d71d6c90353c207a3b32b7368d14d9a9", "pid": "1146418345", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1146418345", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146418345", "source": "GND"}], "preferred_name": "Deshpande, Kusum", "authorized_access_point": "Deshpande, Kusum", "biographical_information": ["editorial board of Maitri, the Hindu monthly, closely associated with Achary Vinoba Bhave"]} 1 -2023-07-08 08:15:41.953936 2023-07-08 08:15:41.95394 3e8ff7e0-ab36-4124-a7b2-e5b8c0285267 {"md5": "331333811c25573dd8af8fe8e0f1f710", "pid": "1146538235", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1146538235", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146538235", "source": "GND"}], "preferred_name": "Selig, Joachim", "authorized_access_point": "Selig, Joachim", "biographical_information": ["Wirtschaftswissenschaftler", "Ulm, Universität: Fak. für Mathematik und Wirtschaftswissenschaften / Abt. Optimierung und Operations Research (Diplomarbeit 2003)"]} 1 -2023-07-08 08:15:42.043946 2023-07-08 08:15:42.04395 a3785bd3-2f17-4cc8-a9f2-902c2ee0be8e {"md5": "cfd09f49eaa8baee90716f784651267b", "pid": "1146539045", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1146539045", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146539045", "source": "GND"}], "variant_name": ["Padmanabhan, S."], "date_of_birth": "1940", "preferred_name": "Padmanabhan, Sundararajan", "variant_access_point": ["Padmanabhan, S., 1940-"], "authorized_access_point": "Padmanabhan, Sundararajan, 1940-", "biographical_information": ["General; Former Chief of the Army Staff, India"]} 1 -2023-07-08 08:15:42.251629 2023-07-08 08:15:42.251632 174c3f1b-5a3b-45fa-abf0-66778ae94035 {"md5": "c208e58dc4b07006ff06d7aed95bfb30", "pid": "1146540825", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1146540825", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146540825", "source": "GND"}], "date_of_birth": "1939", "preferred_name": "Magerl, Wolfram", "authorized_access_point": "Magerl, Wolfram, 1939-"} 1 -2023-07-08 08:15:42.332948 2023-07-08 10:25:32.676846 b9878c7f-20d7-4cc6-83ef-b38ac28573ec {"md5": "1c497bc90bd02dfbbd3369775c2599c9", "pid": "1146583117", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1146583117", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146583117", "source": "GND"}], "variant_name": ["Bessonova, A. M.", "Bessonova, Anastasija Michajlovna"], "date_of_birth": "1917", "date_of_death": "2001", "preferred_name": "Bessonova, Anastasija M.", "variant_access_point": ["Bessonova, A. M., 1917-2001", "Bessonova, Anastasija Michajlovna, 1917-2001"], "authorized_access_point": "Bessonova, Anastasija M., 1917-2001"} 2 -2023-07-08 08:15:42.163812 2023-07-08 10:26:53.340661 5a29583b-c737-4057-b687-101c49dd8a1e {"md5": "5cb8f3424b85f99e3077f7f49a0382e6", "pid": "1146539355", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1146539355", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146539355", "source": "GND"}], "preferred_name": "Breidbach, Michael", "authorized_access_point": "Breidbach, Michael", "biographical_information": ["Physiker", "geb. in Leverkusen, Diss. Köln 2004"]} 2 -2023-07-08 08:15:41.597514 2023-07-08 10:28:43.304474 0519dc8b-b1cc-43a7-bb0f-e9fc377af01b {"md5": "4ee1597c7facc9807c08373985e13f96", "pid": "1146355181", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1146355181", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146355181", "source": "GND"}], "date_of_birth": "1943", "preferred_name": "Berger, Michael L.", "authorized_access_point": "Berger, Michael L., 1943-"} 2 -2023-07-08 08:15:42.429089 2023-07-08 10:29:10.168698 07f65cab-1ac3-423c-a6c9-6b0259d3a126 {"md5": "c3f79193b15ec6ea49fa5705c35b0478", "pid": "1146702809", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1146702809", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146702809", "source": "GND"}], "preferred_name": "Noe, Julie", "authorized_access_point": "Noe, Julie", "biographical_information": ["Zeichenlehrerin der Frauenarbeitsschule in Karlsruhe"]} 2 -2023-07-08 08:15:42.608142 2023-07-08 08:15:42.608151 9d3f45e2-aaa6-4339-be71-b2737a5573d8 {"md5": "c1db78e0101fcc9eb0c4790b02039a18", "pid": "1146715056", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1146715056", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146715056", "source": "GND"}], "date_of_birth": "1932", "preferred_name": "Röhlig, Siegfried", "authorized_access_point": "Röhlig, Siegfried, 1932-"} 1 -2023-07-08 08:15:42.684222 2023-07-08 08:15:42.684231 ec58b7e4-a10e-43be-80cc-343ffffbf2fa {"md5": "0f45d2d19f2d32710cb7aaeefc7f3df1", "pid": "1146716346", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1146716346", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146716346", "source": "GND"}], "date_of_birth": "1914", "preferred_name": "Petermann, Robert", "authorized_access_point": "Petermann, Robert, 1914-"} 1 -2023-07-08 08:15:42.759697 2023-07-08 08:15:42.759702 5f403def-8299-40a4-8f12-ed7a756872d2 {"md5": "6c39e8d74b88575b3c8557c2f0ca56bc", "pid": "1146716648", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1146716648", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146716648", "source": "GND"}], "date_of_birth": "1939", "preferred_name": "Hennies, Traute", "authorized_access_point": "Hennies, Traute, 1939-"} 1 -2023-07-08 08:15:42.845329 2023-07-08 08:15:42.845333 050ec2ef-fbfe-4929-8b89-78682b64e445 {"md5": "0e9234c92a59c92074af957b12d4805e", "pid": "1146776039", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1146776039", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146776039", "source": "GND"}], "date_of_birth": "Esq.", "preferred_name": "Lidwill, George", "authorized_access_point": "Lidwill, George, Esq.-"} 1 -2023-07-08 08:15:42.925417 2023-07-08 08:15:42.925422 7ac35ef6-9ed2-4241-aaa0-6b94e95f830a {"md5": "64d7f14ccd18310ed54b6dd41cfdbb4d", "pid": "1146781075", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1146781075", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146781075", "source": "GND"}], "date_of_birth": "1934", "preferred_name": "Iseke, Horst-Werner", "authorized_access_point": "Iseke, Horst-Werner, 1934-"} 1 -2023-07-08 08:15:43.116449 2023-07-08 08:15:43.116455 1502812e-ce86-4d47-864d-63bdb938898d {"md5": "2d21a63ff22d120c8d836494c222ceb2", "pid": "1146797974", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1146797974", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146797974", "source": "GND"}], "preferred_name": "Gayer, Siegmund", "authorized_access_point": "Gayer, Siegmund", "biographical_information": ["Gymnasialassistent"]} 1 -2023-07-08 08:15:43.215107 2023-07-08 08:15:43.215113 f17ac137-e063-4d27-8d45-8c57f9fd3383 {"md5": "829050c2a81e8fe7b5f3bf52ea385aa6", "pid": "1146820763", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1146820763", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146820763", "source": "GND"}], "date_of_birth": "1927", "preferred_name": "Paulsen, Günter", "authorized_access_point": "Paulsen, Günter, 1927-"} 1 -2023-07-08 08:15:43.324382 2023-07-08 08:15:43.324387 2b790562-b531-4c74-9ab2-11e7cf25f45f {"md5": "6db5d69ab422a4900b8340a2a63a3cf7", "pid": "1146911882", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1146911882", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146911882", "source": "GND"}], "date_of_birth": "1914", "preferred_name": "Bijoux, Rober", "authorized_access_point": "Bijoux, Rober, 1914-"} 1 -2023-07-08 08:15:43.503797 2023-07-08 08:15:43.503805 75b672f7-98b4-46a3-9f81-3935740c752b {"md5": "c479580b00126e639870c0c17ef27068", "pid": "1147003505", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1147003505", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1147003505", "source": "GND"}], "variant_name": ["Oberle, M."], "preferred_name": "Oberle, Markus", "country_associated": "gw", "variant_access_point": ["Oberle, M."], "authorized_access_point": "Oberle, Markus", "biographical_information": ["Diplomand, Hochschule Offenburg 2007"]} 1 -2023-07-08 08:15:43.584338 2023-07-08 08:15:43.584342 6e3b2e4a-7757-40d2-8166-c86dde058253 {"md5": "1cbda4559ab46c0e7f20513f28626f79", "pid": "1147011087", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1147011087", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1147011087", "source": "GND"}], "preferred_name": "Hofmeyer, N. G.", "authorized_access_point": "Hofmeyer, N. G."} 1 -2023-07-08 08:15:43.662167 2023-07-08 08:15:43.662172 bd7445e5-0828-490f-844b-7ef298d70c52 {"md5": "4ed63128e2ffc74cddde7242bca53c56", "pid": "1147058938", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1147058938", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1147058938", "source": "GND"}], "date_of_birth": "1896", "preferred_name": "Hill, Benjamin Harvey", "authorized_access_point": "Hill, Benjamin Harvey, 1896-"} 1 -2023-07-08 08:15:43.762191 2023-07-08 08:15:43.762197 f973257f-aa18-48ea-b2ac-e23c959dc87f {"md5": "eb128fdf03b3c8a66157eff6926b5e41", "pid": "1147073120", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1147073120", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1147073120", "source": "GND"}], "date_of_birth": "1908", "preferred_name": "Deburge, Albert-François", "authorized_access_point": "Deburge, Albert-François, 1908-"} 1 -2023-07-08 08:15:43.407617 2023-07-08 10:31:43.586562 22d38a48-35dc-4132-8eb2-10ee5aa53bbd {"md5": "7a967021f781f70cc165d8dc7c4dae84", "pid": "1146987935", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1146987935", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146987935", "source": "GND"}], "preferred_name": "Biermann, Vera", "authorized_access_point": "Biermann, Vera", "biographical_information": ["Diss. 2006, TU Berlin"]} 2 -2023-07-08 08:15:43.858814 2023-07-08 08:15:43.858823 6636fd96-741c-48d9-806b-0c7c2e9f4e14 {"md5": "beaba0fa105759f2f28935d9318eea6e", "pid": "1147082367", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1147082367", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1147082367", "source": "GND"}], "date_of_birth": "1901", "preferred_name": "Kovacs, Georges", "authorized_access_point": "Kovacs, Georges, 1901-"} 1 -2023-07-08 08:15:43.948072 2023-07-08 08:15:43.948078 6b34e425-b5c6-4f82-b046-294d42388f38 {"md5": "090cfa99aa2d264f6692a00f1b7c4bae", "pid": "1147083045", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1147083045", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1147083045", "source": "GND"}], "date_of_birth": "1904", "preferred_name": "Lichtenberg, Dolphy", "authorized_access_point": "Lichtenberg, Dolphy, 1904-"} 1 -2023-07-08 08:15:44.131398 2023-07-08 08:15:44.131403 4b6d6888-264f-4b7d-b543-1944c36aedc0 {"md5": "a2ed643aa47742d1a9542d5b17584016", "pid": "1147132976", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1147132976", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1147132976", "source": "GND"}], "date_of_birth": "1980", "preferred_name": "Rangel, Ulrike", "authorized_access_point": "Rangel, Ulrike, 1980-", "biographical_information": ["Dipl.-Psychologin; Diss. Sozialwiss., Univ. Mannheim, 2009"]} 1 -2023-07-08 08:15:44.314534 2023-07-08 08:15:44.31454 0d2e4d27-19f9-4a96-b71a-0f8f82eccf25 {"md5": "c53914b8603403ed753b27fe51fd976b", "pid": "1147150567", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1147150567", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1147150567", "source": "GND"}], "preferred_name": "Jafferali, Rafaël", "country_associated": "be", "authorized_access_point": "Jafferali, Rafaël"} 1 -2023-07-08 08:15:44.396786 2023-07-08 08:15:44.396798 8d49aa7d-9da5-405b-9679-08c417fc518c {"md5": "ba1f86555ac342c861a480076078e467", "pid": "1147173680", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1147173680", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1147173680", "source": "GND"}], "variant_name": ["McInnes, Jim"], "preferred_name": "MacInnes, Jim", "variant_access_point": ["McInnes, Jim"], "authorized_access_point": "MacInnes, Jim", "biographical_information": ["Teaching assistant, School of Theology and School of Mission and Ministry, Laidlaw College (2010)"]} 1 -2023-07-08 08:15:44.47717 2023-07-08 08:15:44.477176 d46a708b-efa9-4769-8d4e-b776cbfb6330 {"md5": "286ea39f48436899ee2ded6101074932", "pid": "114720117X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/114720117X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/114720117X", "source": "GND"}], "preferred_name": "White, John R.", "authorized_access_point": "White, John R.", "biographical_information": ["Associate professor in the Department of Philosophy, Franciscan University of Steubenville, Ohio"]} 1 -2023-07-08 08:15:44.563797 2023-07-08 08:15:44.563802 c5b61f2e-79c7-40ed-9be9-985a16908acb {"md5": "fb8becdec7acb4d0685e0dc1cc501d04", "pid": "1147319049", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1147319049", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1147319049", "source": "GND"}], "preferred_name": "Gberie, Lansana", "country_associated": "et", "authorized_access_point": "Gberie, Lansana"} 1 -2023-07-08 08:15:44.660925 2023-07-08 08:15:44.660928 f27b0a67-6cfa-457b-9bc9-335fa01cd455 {"md5": "be3485f0ba66dd5a32b18f2201b144c6", "pid": "1147429472", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1147429472", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1147429472", "source": "GND"}], "preferred_name": "Krüger, Oliver", "country_associated": "gw", "authorized_access_point": "Krüger, Oliver", "biographical_information": ["Promotion 2016, Universität Hamburg, Fachbereich Philosophie", "arbeitet als wiss. Mitarbeiter für Ethik und Sozialwissenschaften an der Medical School Hamburg"]} 1 -2023-07-08 08:15:44.737398 2023-07-08 08:15:44.737406 3ca7bb4b-3ff6-4bee-9270-28164609d408 {"md5": "a55fda7ae9226eb7eb1d7d9753ddb331", "pid": "1147614709", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1147614709", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1147614709", "source": "GND"}], "date_of_birth": "1975", "preferred_name": "Zenker, Thomas", "country_associated": "gw", "authorized_access_point": "Zenker, Thomas, 1975-", "biographical_information": ["seit 2015 Oberbürgermeister von Zittau"]} 1 -2023-07-08 08:15:44.83699 2023-07-08 08:15:44.837003 4c9a872b-8e0b-48d3-ac5d-67ecba2beb29 {"md5": "9abad9a815166cc8647dfff18baa8184", "pid": "1147649642", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1147649642", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1147649642", "source": "GND"}], "variant_name": ["Feng, Wang", "Wang Feng"], "preferred_name": "Wang, Feng", "country_associated": "cc", "variant_access_point": ["Feng, Wang", "Wang Feng"], "authorized_access_point": "Wang, Feng"} 1 -2023-07-08 08:15:44.045367 2023-07-08 10:27:32.801268 2f8fa215-c386-4632-9aa9-c02d9dc80265 {"md5": "b353bb1e1da0d77cbe46340d19a2ee37", "pid": "1147127794", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1147127794", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1147127794", "source": "GND"}], "variant_name": ["Nārāyaṇadeva, Gajapati", "Nārāyaṇa"], "preferred_name": "Nārāyaṇadeva", "variant_access_point": ["Nārāyaṇadeva, Gajapati", "Nārāyaṇa"], "authorized_access_point": "Nārāyaṇadeva", "biographical_information": ["King Gajapati Nārāyaṇadeva of Parlakimidi in Orissa; learnt music from Kaviratna Puruṣottama and the result of his study is embodied in his work Saṅgītanārāyaṇa"]} 2 -2023-07-08 08:15:44.920675 2023-07-08 08:15:44.920684 d59255a8-cbc1-44c6-9e55-9e9219b383ab {"md5": "3c542e1d58fe125d6931aecd6be27255", "pid": "1147777713", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1147777713", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1147777713", "source": "GND"}], "variant_name": ["Allbrecht, Lillie Vanderveer", "Albrecht, Lillie", "Albrecht, Lilli V."], "date_of_birth": "02.01.1894", "date_of_death": "04.10.1985", "preferred_name": "Albrecht, Lilli Vanderveer", "country_associated": "xxu", "variant_access_point": ["Allbrecht, Lillie Vanderveer, 1894-1985", "Albrecht, Lillie, 1894-1985", "Albrecht, Lilli V., 1894-1985"], "authorized_access_point": "Albrecht, Lilli Vanderveer, 1894-1985"} 1 -2023-07-08 08:15:45.187502 2023-07-08 08:15:45.187514 5108eac5-d010-4b5b-bcd9-33a954161db2 {"md5": "299d44f4a120b6f3f7ae2cbc283fec01", "pid": "1148992316", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1148992316", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1148992316", "source": "GND"}], "variant_name": ["Abdulkarim Abdullah Almamary"], "preferred_name": "Almamary, Abdulkraim Abdullah", "country_associated": "my", "variant_access_point": ["Abdulkarim Abdullah Almamary"], "authorized_access_point": "Almamary, Abdulkraim Abdullah", "biographical_information": ["Department of Business Administration, Open University Malaysia, Kuala Lumpur, Malaysia"]} 1 -2023-07-08 08:15:45.27586 2023-07-08 08:15:45.275864 ad85e7d4-a408-4e50-9039-608e3ca54928 {"md5": "e4ebdfb605112bf61ed0760d7d0639fb", "pid": "1149000910", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1149000910", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1149000910", "source": "GND"}], "preferred_name": "Frankfurt-Höchst. Bürgeramt", "country_associated": "gw", "authorized_access_point": "Frankfurt-Höchst. Bürgeramt"} 1 -2023-07-08 08:15:45.37104 2023-07-08 08:15:45.371049 9dee0662-80c2-4c99-9864-f754c7e6b4e2 {"md5": "6d9885be64c35168c80ce8daeed96482", "pid": "1149077050", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1149077050", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1149077050", "source": "GND"}], "variant_name": ["Moisy, Fritz Gandenberger von"], "date_of_birth": "14.07.1891", "preferred_name": "Gandenberger von Moisy, Fritz", "country_associated": "gw", "variant_access_point": ["Moisy, Fritz Gandenberger von, 1891-"], "authorized_access_point": "Gandenberger von Moisy, Fritz, 1891-"} 1 -2023-07-08 08:15:45.464394 2023-07-08 08:15:45.464401 415c4f39-a0d5-46da-a5d7-37349a3ae271 {"md5": "3638639abd4b5aa7090b691d1876f798", "pid": "1149382090", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1149382090", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1149382090", "source": "GND"}], "variant_name": ["Brix Jacobsen, Louise"], "preferred_name": "Jacobsen, Louise Brix", "country_associated": "dk", "variant_access_point": ["Brix Jacobsen, Louise"], "authorized_access_point": "Jacobsen, Louise Brix"} 1 -2023-07-08 08:15:45.549373 2023-07-08 08:15:45.549376 24c056d1-b465-4773-acbc-ba632907277e {"md5": "c53f99865a34adec35ee888f4341fc4a", "pid": "115024397X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/115024397X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/115024397X", "source": "GND"}], "variant_name": ["Bau Hazzat"], "preferred_name": "BauHazzat", "country_associated": "io", "variant_access_point": ["Bau Hazzat"], "authorized_access_point": "BauHazzat"} 1 -2023-07-08 08:15:45.629786 2023-07-08 08:15:45.629793 4e5f7743-b2de-4d98-99c7-292a8db65e6e {"md5": "90f6a724286ce6f402410d59087b3a14", "pid": "1150721626", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1150721626", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1150721626", "source": "GND"}], "variant_name": ["Nusbaum, Bernhard"], "preferred_name": "Nusbaum, Bernhardus", "country_associated": "gw", "variant_access_point": ["Nusbaum, Bernhard"], "authorized_access_point": "Nusbaum, Bernhardus", "biographical_information": ["Buchbesitz theologisches Konvolut 1529"]} 1 -2023-07-08 08:15:45.721687 2023-07-08 08:15:45.721692 87de241f-de71-4916-9cd7-f808ea044ca0 {"md5": "a984f8f28280b00d913b6f4f737bddd9", "pid": "1150789433", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1150789433", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1150789433", "source": "GND"}], "date_of_birth": "1965", "preferred_name": "Polley, Martin", "country_associated": "xxk", "authorized_access_point": "Polley, Martin, 1965-"} 1 -2023-07-08 08:15:45.790973 2023-07-08 08:15:45.790977 bd0033e8-9455-453e-83a0-a4f27675e6aa {"md5": "f4d1914c7630692b4e9bda94e9654412", "pid": "1150803541", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1150803541", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1150803541", "source": "GND"}], "variant_name": ["Börkur Sigthórsson", "SigÞórsson, Börkur", "Sigthórsson, Börkur"], "date_of_birth": "1978", "preferred_name": "Börkur SigÞórsson", "country_associated": "ic", "variant_access_point": ["Börkur Sigthórsson, 1978-", "SigÞórsson, Börkur, 1978-", "Sigthórsson, Börkur, 1978-"], "authorized_access_point": "Börkur SigÞórsson, 1978-"} 1 -2023-07-08 08:15:45.875347 2023-07-08 08:15:45.875352 5bdb018a-52f3-4f21-b93f-cc7d01ab6ee8 {"md5": "609345fb83beafd7b76b9b2a75181f2f", "pid": "1151079529", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1151079529", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1151079529", "source": "GND"}], "variant_name": ["FFF"], "preferred_name": "Freiwirtschaftliche Arbeitspartei", "variant_access_point": ["FFF. Abkuerzung"], "authorized_access_point": "Freiwirtschaftliche Arbeitspartei"} 1 -2023-07-08 08:15:45.960932 2023-07-08 08:15:45.960936 55e2fb49-d1d0-47f0-a4f6-0178a1dd50b6 {"md5": "5ed60215343cb1000ab8349d68a4dfdc", "pid": "1151380040", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1151380040", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1151380040", "source": "GND"}], "variant_name": ["Sültenfuß, Hansi"], "date_of_birth": "12.10.1926", "date_of_death": "25.01.2018", "preferred_name": "Sültenfuß, Hans-Peter", "country_associated": "gw", "variant_access_point": ["Sültenfuß, Hansi, 1926-2018"], "authorized_access_point": "Sültenfuß, Hans-Peter, 1926-2018"} 1 -2023-07-08 08:15:46.054594 2023-07-08 08:15:46.054602 ff2989a4-5e70-46b5-a562-b880f5d441f8 {"md5": "d3a51df62d5a6742d38b5ca11b2047a3", "pid": "115168127X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/115168127X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/115168127X", "source": "GND"}], "variant_name": ["Mann, Christiane"], "preferred_name": "Wurdel, Christiane", "country_associated": "gw", "variant_access_point": ["Mann, Christiane"], "authorized_access_point": "Wurdel, Christiane"} 1 -2023-07-08 08:15:46.16332 2023-07-08 08:15:46.163326 84b72376-6585-482b-b6b3-215c5a7e4f31 {"md5": "a055060c6d5489700b356ea8500b07bc", "pid": "1151834149", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1151834149", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1151834149", "source": "GND"}], "variant_name": ["S., Jason"], "date_of_birth": "ca. 20. Jh.", "preferred_name": "Jason S.", "variant_access_point": ["S., Jason, ca. 20. Jh."], "authorized_access_point": "Jason S., ca. 20. Jh."} 1 -2023-07-08 08:15:46.243348 2023-07-08 08:15:46.243353 c6d321e1-7d82-472d-b667-8f0ce9b185f8 {"md5": "9b3149d98187a51caee5b87853149b3c", "pid": "115189203", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/115189203", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/115189203", "source": "GND"}], "variant_name": ["Gänzl, Kurt Friedrich", "Gänzl, Kurt-Friedrich", "Gallas, Brian Roy"], "date_of_birth": "1946", "preferred_name": "Gänzl, Kurt", "country_associated": "xxk", "variant_access_point": ["Gänzl, Kurt Friedrich, 1946-", "Gänzl, Kurt-Friedrich, 1946-", "Gallas, Brian Roy, 1946-"], "authorized_access_point": "Gänzl, Kurt, 1946-", "biographical_information": ["Engl. Musikwissenschaftler neuseeländischer Herkunft"]} 1 -2023-07-08 08:15:46.323876 2023-07-08 08:15:46.323881 b554aa29-0e8f-45ec-9a95-02176899e743 {"md5": "9ef90198280b88805312e62bc0b2c895", "pid": "115228987X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/115228987X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/115228987X", "source": "GND"}], "date_of_birth": "ca. 20./21.Jh.", "preferred_name": "Asheuer, Susanne", "country_associated": "gw", "authorized_access_point": "Asheuer, Susanne, ca. 20./21.Jh."} 1 -2023-07-08 08:15:46.408276 2023-07-08 08:15:46.408283 84746343-9427-4cae-a499-71c7924897d9 {"md5": "648c1a6af4ed2078b1e70967f0e186b8", "pid": "1153014750", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1153014750", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1153014750", "source": "GND"}], "variant_name": ["Fabro, Johanne", "Fabrius, Johannus"], "preferred_name": "Faber, Johannes", "country_associated": "gw", "variant_access_point": ["Fabro, Johanne", "Fabrius, Johannus"], "authorized_access_point": "Faber, Johannes", "biographical_information": ["Respondent in Jena"]} 1 -2023-07-08 08:15:46.49514 2023-07-08 08:15:46.495144 3fbd0aa8-f5ee-4c47-8583-bff90884d85d {"md5": "47b5a7631ecb96280c7dec5406521e33", "pid": "1153069881", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1153069881", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1153069881", "source": "GND"}], "preferred_name": "Hagelstein, Nils", "authorized_access_point": "Hagelstein, Nils"} 1 -2023-07-08 08:15:46.562352 2023-07-08 08:15:46.562356 c2bbc41b-5b61-43d1-af59-0221e37fd875 {"md5": "7f2e027027af53b256d456d89f9f04f4", "pid": "1153169363", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1153169363", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1153169363", "source": "GND"}], "preferred_name": "Sims Reed Gallery", "country_associated": "xxk", "date_of_establishment": "1995", "authorized_access_point": "Sims Reed Gallery"} 1 -2023-07-08 08:15:46.649087 2023-07-08 08:15:46.649095 6a19f11a-7148-4ed0-8fdf-3f729661cbf1 {"md5": "4742f2e52d2154d14af617db44ae85cb", "pid": "1153565455", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://d-nb.info/gnd/1153565455", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1153565455", "source": "GND"}], "variant_name": ["Lallemant, Theodor Avé-", "Avé-Lallemant, Th.", "Avé-Lallemant, Johann Theodor Friedrich"], "date_of_birth": "02.02.1806", "date_of_death": "09.11.1890", "preferred_name": "Avé-Lallemant, Theodor", "country_associated": "gw", "variant_access_point": ["Lallemant, Theodor Avé-, 1806-1890", "Avé-Lallemant, Th., 1806-1890", "Avé-Lallemant, Johann Theodor Friedrich, 1806-1890"], "authorized_access_point": "Avé-Lallemant, Theodor, 1806-1890", "biographical_information": ["Vorstandsmitglied der Philharmonischen Gesellschaft Hamburg"]} 1 -2023-07-08 08:15:46.743451 2023-07-08 08:15:46.743456 b37b17dc-4cd1-464b-a09c-bbb4dffc1fa1 {"md5": "d5b51eacea26251a25a55b4cea980efb", "pid": "1153781506", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1153781506", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1153781506", "source": "GND"}], "preferred_name": "Haselmayr, Andrea", "country_associated": "au", "authorized_access_point": "Haselmayr, Andrea", "biographical_information": ["aufgewachsen im Waldviertel"]} 1 -2023-07-08 08:15:46.821339 2023-07-08 08:15:46.82135 ad4dcba3-1e43-4fb6-93a5-47bc044e69cc {"md5": "1f7f7804e258dc0d4ae892c9ae1c6c68", "pid": "115378197", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["mon", "ger"], "identifier": "http://d-nb.info/gnd/115378197", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/115378197", "source": "GND"}], "variant_name": ["Molor-Erdene, Sanjaadorj", "Molor-Erdene, Sanzhaadorzhijn", "Molor-Ėrdėnė, Sanzhaadorzhiĭn", "Erdene, Sanjaadorj Molor-", "Molor-Ėrdėne, S.", "Molor-Erdene, S.", "Mulur-Ardani, Sx.", "Молор-Эрдэнэ, С."], "date_of_birth": "1962", "preferred_name": "Molor-Ėrdėne, Sanžaadoržijn", "country_associated": "mp", "variant_access_point": ["Molor-Erdene, Sanjaadorj, 1962-", "Molor-Erdene, Sanzhaadorzhijn, 1962-", "Molor-Ėrdėnė, Sanzhaadorzhiĭn, 1962-", "Erdene, Sanjaadorj Molor-, 1962-", "Molor-Ėrdėne, S., 1962-", "Molor-Erdene, S., 1962-", "Mulur-Ardani, Sx., 1962-", "Молор-Эрдэнэ, С., 1962-"], "parallel_access_point": ["Молор-Эрдэнэ, Санжаадоржийн, 1962-"], "authorized_access_point": "Molor-Ėrdėne, Sanžaadoržijn, 1962-", "biographical_information": ["1. Diss. Fak. Maschinenwesen, TU Dresden, 2. Diss. Ludwig-Maximilians-Universität München, Fakultät für Philosophie, Wissenschaftstheorie und Religionswissenschaft; Mongole"]} 1 -2023-07-08 08:15:46.908425 2023-07-08 08:15:46.908429 c4a34828-e3a7-4215-9537-81bd58f626ae {"md5": "5474a5b7469a596aba05647aca4f2505", "pid": "1154802817", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1154802817", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1154802817", "source": "GND"}], "variant_name": ["Fischer, Jan Benedikt"], "preferred_name": "Fischer, Jan-Benedikt", "country_associated": "gw", "variant_access_point": ["Fischer, Jan Benedikt"], "authorized_access_point": "Fischer, Jan-Benedikt"} 1 -2023-07-08 08:15:47.010422 2023-07-08 08:15:47.010427 094ac50b-3155-42d9-8efb-04438479f9f7 {"md5": "b4073cd2de27d712ad872b33027dbca3", "pid": "115493069", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/115493069", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/115493069", "source": "GND"}], "preferred_name": "Nakhla, Fayek", "authorized_access_point": "Nakhla, Fayek"} 1 -2023-07-08 08:15:47.079458 2023-07-08 08:15:47.079461 4ef38fdd-7033-4258-989c-2880561ae150 {"md5": "80c8fe8d73d2bc3a5e5103adb3efd7ae", "pid": "115497328X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/115497328X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/115497328X", "source": "GND"}], "preferred_name": "Durfee, Brian Lee", "country_associated": "xxu", "authorized_access_point": "Durfee, Brian Lee", "biographical_information": ["in Alaska und Utah aufgewachsen"]} 1 -2023-07-08 08:15:47.155033 2023-07-08 08:15:47.155037 aa00f04e-9b59-40fb-b730-e9d926658ef0 {"md5": "302fec16fa777e39b43a9ade33e98f90", "pid": "115503256X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/115503256X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/115503256X", "source": "GND"}], "preferred_name": "Ermis-Krohs, Selmin", "country_associated": "gw", "authorized_access_point": "Ermis-Krohs, Selmin", "biographical_information": ["Themen: Nähen, Schreiben, Fotografie"]} 1 -2023-07-08 08:15:47.22191 2023-07-08 08:15:47.221913 db98d614-7b14-48a4-8b15-ccb59c5250a9 {"md5": "b96b18f22c4c381a091f8196cad2049c", "pid": "1155263766", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1155263766", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1155263766", "source": "GND"}], "date_of_birth": "ca. 20./21.Jh.", "preferred_name": "Koenen, Annemie", "country_associated": "ne", "authorized_access_point": "Koenen, Annemie, ca. 20./21.Jh."} 1 -2023-07-08 08:15:47.287483 2023-07-08 08:15:47.287486 6e4ffa53-3355-4b68-ad4b-e072f2a23a50 {"md5": "f7d3786eb61368b38e42bb8a3b8887f2", "pid": "1155422481", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1155422481", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1155422481", "source": "GND"}], "preferred_name": "Michels, Inga", "country_associated": "gw", "authorized_access_point": "Michels, Inga", "biographical_information": ["Tätig am Friedrich-Loeffler-Institut, Institut für molekulare Pathogenese."]} 1 -2023-07-08 08:15:47.367954 2023-07-08 08:15:47.367963 890c8465-50e6-4ad4-84cf-d0a6e0734ea1 {"md5": "5ec09b418c9e0e876f65566d808ce39b", "pid": "1155539176", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1155539176", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1155539176", "source": "GND"}], "variant_name": ["Chu Mei Chin", "Chin Chu, Mei", "Mei Chin, Chu"], "preferred_name": "Chu, Mei Chin", "country_associated": "cc", "variant_access_point": ["Chu Mei Chin", "Chin Chu, Mei", "Mei Chin, Chu"], "authorized_access_point": "Chu, Mei Chin", "biographical_information": ["Department of International Business, Southern Taiwan University of Science and Technology"]} 1 -2023-07-08 08:15:47.472227 2023-07-08 08:15:47.472231 0a1bef2d-7f05-406a-9f4c-f4356c246cba {"md5": "41ab797ad9f614cb17de69ffdbc4a533", "pid": "1155539249", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1155539249", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1155539249", "source": "GND"}], "preferred_name": "Rigolot, Irénée", "country_associated": "fr", "authorized_access_point": "Rigolot, Irénée", "biographical_information": ["Moine cistercien de l'abbaye de Timadeuc"]} 1 -2023-07-08 08:15:47.544942 2023-07-08 08:15:47.544944 d7ac5ffc-e5fb-40d9-9dbe-a8a027da5f9b {"md5": "c308b5fe5f7dd1942fd1b185b99db71c", "pid": "115620451", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/115620451", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/115620451", "source": "GND"}], "date_of_birth": "1959", "preferred_name": "Ikeda, Yukihiro", "country_associated": "ja", "parallel_access_point": ["池田, 幸弘, 1959-"], "authorized_access_point": "Ikeda, Yukihiro, 1959-", "biographical_information": ["Als Prof. tätig an der Keio Univ., Faculty of Economics; 1994 Dissertation an der Universität Hohenheim"]} 1 -2023-07-08 08:15:47.621581 2023-07-08 08:15:47.621584 b92c30f6-2843-44f0-957f-cffacdc2fdea {"md5": "0895c9b2a381d6ab949d03681b55d272", "pid": "1156292166", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1156292166", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1156292166", "source": "GND"}], "preferred_name": "Kozlov, Oleksii", "country_associated": "un", "authorized_access_point": "Kozlov, Oleksii"} 1 -2023-07-08 08:15:47.686184 2023-07-08 08:15:47.686187 f16fa4fb-5999-43d9-b3e9-41e92574cb5f {"md5": "b9182bf3fcdd4849d2d5efb96e4cd0c5", "pid": "1156433290", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://d-nb.info/gnd/1156433290", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1156433290", "source": "GND"}], "variant_name": ["Sellinger, Friedrich"], "date_of_birth": "02.08.1912", "date_of_death": "10.03.2002", "preferred_name": "Sellinger, Bonifaz", "country_associated": "au", "variant_access_point": ["Sellinger, Friedrich, 1912-2002"], "authorized_access_point": "Sellinger, Bonifaz, 1912-2002", "biographical_information": ["Abt des Wiener Schottenstifts"]} 1 -2023-07-08 08:15:47.758261 2023-07-08 08:15:47.758268 d074cc12-8299-41f8-89a2-0a6d692c76aa {"md5": "45fcbc7a49387bdd0cd978bbc43f98f5", "pid": "1156493242", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1156493242", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1156493242", "source": "GND"}], "variant_name": ["Rojahn, Veronika Arendt-"], "preferred_name": "Arendt-Rojahn, Veronika", "country_associated": "gw", "variant_access_point": ["Rojahn, Veronika Arendt-"], "authorized_access_point": "Arendt-Rojahn, Veronika"} 1 -2023-07-08 08:15:47.826133 2023-07-08 08:15:47.826137 c03f2c11-9fa5-4c80-af18-fa7771da28b6 {"md5": "4077bd7ca281aafda86e17a4e6646e3c", "pid": "1156540917", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1156540917", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1156540917", "source": "GND"}], "preferred_name": "Scherzer, Manuel", "country_associated": "gw", "authorized_access_point": "Scherzer, Manuel"} 1 -2023-07-08 08:15:47.898738 2023-07-08 08:15:47.898741 9910c80d-5581-4094-b29c-c0057b79ec31 {"md5": "e7d63944a2a29f9ebcd0629f7a8fd0e7", "pid": "1157052185", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1157052185", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157052185", "source": "GND"}], "variant_name": ["Wagner, Ellen"], "preferred_name": "Friedemann, Ellen", "variant_access_point": ["Wagner, Ellen"], "authorized_access_point": "Friedemann, Ellen"} 1 -2023-07-08 08:15:47.991125 2023-07-08 08:15:47.991129 de6fe16f-4d10-4ce6-8102-b1082a288ee3 {"md5": "c9d8265d287d3a7e72c053289430f2de", "pid": "1157216900", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1157216900", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157216900", "source": "GND"}], "variant_name": ["Díaz de Durana-Ortíz de Urbina, José R.", "Durana Ortíz de Urbina, José R.", "Durana-Ortíz de Urbina, José R", "Ortíz de Urbina, José R.", "Urbina, José R."], "preferred_name": "Díaz de Durana Ortíz de Urbina, José R.", "variant_access_point": ["Díaz de Durana-Ortíz de Urbina, José R.", "Durana Ortíz de Urbina, José R.", "Durana-Ortíz de Urbina, José R", "Ortíz de Urbina, José R.", "Urbina, José R."], "authorized_access_point": "Díaz de Durana Ortíz de Urbina, José R."} 1 -2023-07-08 08:15:48.063793 2023-07-08 08:15:48.063796 dc68d5b2-94c3-4bbc-b893-9963b01fcecd {"md5": "56c4028790601ea5f720848310a5508f", "pid": "1157217559", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1157217559", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157217559", "source": "GND"}], "variant_name": ["Teubner, Eva"], "preferred_name": "Krobs, Eva", "variant_access_point": ["Teubner, Eva"], "authorized_access_point": "Krobs, Eva"} 1 -2023-07-08 08:15:48.228347 2023-07-08 08:15:48.228352 0b5f6608-5de4-4586-8549-edcb2c05e719 {"md5": "1081a31373340e49c8ba702430f5c635", "pid": "1157269680", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1157269680", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157269680", "source": "GND"}], "variant_name": ["Hauswaldt, Bernd M.-"], "preferred_name": "Michaelis-Hauswaldt, Bernd", "variant_access_point": ["Hauswaldt, Bernd M.-"], "authorized_access_point": "Michaelis-Hauswaldt, Bernd"} 1 -2023-07-08 08:15:48.325318 2023-07-08 08:15:48.325323 5af94b1b-1350-4f11-90be-098d1576bd88 {"md5": "b108e6e3d79e95a2381f44f9d9dcc899", "pid": "1157288723", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1157288723", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157288723", "source": "GND"}], "variant_name": ["Maresch, Alois K.-"], "preferred_name": "Kastner-Maresch, Alois", "variant_access_point": ["Maresch, Alois K.-"], "authorized_access_point": "Kastner-Maresch, Alois"} 1 -2023-07-08 08:15:48.485568 2023-07-08 08:15:48.485571 a3efcdb0-d204-468c-b8cc-5bcffff4dd34 {"md5": "794a6b8fee3fd3102dbc5239f2be5254", "pid": "1157335101", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1157335101", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157335101", "source": "GND"}], "variant_name": ["Blom, Paulus W."], "preferred_name": "Blom, Paul W.", "variant_access_point": ["Blom, Paulus W."], "authorized_access_point": "Blom, Paul W."} 1 -2023-07-08 08:15:48.141495 2023-07-08 10:31:15.751273 08999dd6-e303-4e21-8129-fefd46df70f7 {"md5": "bfb75ca034bfc0d1313c9732c5b32d20", "pid": "1157230466", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1157230466", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157230466", "source": "GND"}], "variant_name": ["Schneider, Ilse R.-"], "date_of_birth": "25.04.1891", "date_of_death": "06.02.1990", "preferred_name": "Rosenthal-Schneider, Ilse", "variant_access_point": ["Schneider, Ilse R.-, 1891-1990"], "authorized_access_point": "Rosenthal-Schneider, Ilse, 1891-1990", "biographical_information": ["Studium der Philosophie und Naturwissenschaften (mit Unterbrechungen) von 1909-1920, Promotion in Philosophie Universtät Berlin 1934, unter anderem als Publizistin und Wissenschftasjournalistin tätig, 1938 Emigration über London nach Australien, dort u.a. Mitarbeiterin an der Universität Sydney"]} 2 -2023-07-08 08:15:48.554827 2023-07-08 08:15:48.55483 1b5561ba-9115-4df5-b5d4-1fcf93d0f2bf {"md5": "56db6ccb92e8457fe416deffda34e7eb", "pid": "1157423981", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1157423981", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157423981", "source": "GND"}], "variant_name": ["Ahn, Sung-Ho J."], "preferred_name": "An, Sŏng-ho J.", "variant_access_point": ["Ahn, Sung-Ho J."], "authorized_access_point": "An, Sŏng-ho J."} 1 -2023-07-08 08:15:48.627257 2023-07-08 08:15:48.627263 452465fd-183b-4dd4-8ff0-e23c1934f9eb {"md5": "9b481989860df3f16853eb5a8422aaa0", "pid": "1157447694", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1157447694", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157447694", "source": "GND"}], "variant_name": ["Louise Hunt Steinle, Pamela"], "preferred_name": "Steinle, Pamela Louise Hunt", "variant_access_point": ["Louise Hunt Steinle, Pamela"], "authorized_access_point": "Steinle, Pamela Louise Hunt"} 1 -2023-07-08 08:15:48.697428 2023-07-08 08:15:48.697432 1120a968-22f2-4e2d-95c9-52053a8e2eb4 {"md5": "452e798171b32be7365de5c8010b73a7", "pid": "1157452159", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1157452159", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157452159", "source": "GND"}], "variant_name": ["Kim, Choung Ki"], "preferred_name": "Kim, Chŏng-gi", "variant_access_point": ["Kim, Choung Ki"], "authorized_access_point": "Kim, Chŏng-gi"} 1 -2023-07-08 08:15:48.770697 2023-07-08 08:15:48.770702 132ef20b-903a-4915-bbf5-cca841904ffb {"md5": "82f2591a835e32966f60bb7c4278aca5", "pid": "1157594042", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1157594042", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157594042", "source": "GND"}], "preferred_name": "Lejeune, ...", "authorized_access_point": "Lejeune, ..."} 1 -2023-07-08 08:15:48.838975 2023-07-08 08:15:48.838979 9a1f555f-6d11-44db-991a-5892648ceaec {"md5": "76bb65a1700cba5e80428a914a1d8c88", "pid": "1157599087", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1157599087", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157599087", "source": "GND"}], "variant_name": ["Belostenec, Ivan", "Belostenec, Joannes", "Bėllosztėne͏̈cz, Joannes", "Bėloszténe͏̈cz, Joannes"], "preferred_name": "Bėloszténe͏̈cz, Ivan", "variant_access_point": ["Belostenec, Ivan", "Belostenec, Joannes", "Bėllosztėne͏̈cz, Joannes", "Bėloszténe͏̈cz, Joannes"], "authorized_access_point": "Bėloszténe͏̈cz, Ivan"} 1 -2023-07-08 08:15:48.989053 2023-07-08 08:15:48.989056 dabe4bb0-c131-4f20-ac82-a4e614aace77 {"md5": "6bcdf96f12a42af065e83da04f8107ba", "pid": "1157697208", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1157697208", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157697208", "source": "GND"}], "variant_name": ["Molino, ..."], "preferred_name": "Molin, Giovanni", "variant_access_point": ["Molino, ..."], "authorized_access_point": "Molin, Giovanni"} 1 -2023-07-08 08:15:49.060572 2023-07-08 08:15:49.060575 1b1839c6-4f4f-4df7-8e4b-2a6fe3f69ac8 {"md5": "ef915ba8a6d4a96cd84d2b2ed104330e", "pid": "1157709702", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1157709702", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157709702", "source": "GND"}], "preferred_name": "Ribiers, Spiritus de", "authorized_access_point": "Ribiers, Spiritus de"} 1 -2023-07-08 08:15:49.141842 2023-07-08 08:15:49.141849 3649a9f8-1537-48a5-a270-6b2cf638e1ea {"md5": "5632e6954c5f2283aa06c4561f6d615f", "pid": "1157711162", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1157711162", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157711162", "source": "GND"}], "preferred_name": "Kreissmann, Johann Christian", "authorized_access_point": "Kreissmann, Johann Christian"} 1 -2023-07-08 08:15:49.221066 2023-07-08 08:15:49.221071 e3d3769c-afb0-4420-992e-f2ced8d4fed6 {"md5": "2586a690549a1e5db88fe98e3b483c22", "pid": "115775633", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/115775633", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/115775633", "source": "GND"}], "date_of_birth": "um 1847", "preferred_name": "Castan, G.", "authorized_access_point": "Castan, G., um 1847", "biographical_information": ["Respondent in Straßburg"]} 1 -2023-07-08 08:15:49.317493 2023-07-08 08:15:49.317498 56d146a9-d50e-4366-b93a-ac4dbb48aecb {"md5": "14b7297f4ea2c960daa02bafcb62243c", "pid": "1157756964", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1157756964", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157756964", "source": "GND"}], "variant_name": ["Simoni, Luiz Vicente", "Simoni, Luiz Vicente de"], "preferred_name": "De-Simoni, Luiz Vicente", "variant_access_point": ["Simoni, Luiz Vicente", "Simoni, Luiz Vicente de"], "authorized_access_point": "De-Simoni, Luiz Vicente"} 1 -2023-07-08 08:15:49.394906 2023-07-08 08:15:49.394912 e744e4a8-671b-4645-89d9-9bf3a558b43a {"md5": "e47cff7f4f3f27228941011e17c3e825", "pid": "1157761518", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1157761518", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157761518", "source": "GND"}], "variant_name": ["Thurn, Wilhelm"], "preferred_name": "Thurn, Wilhelm Friedrich", "variant_access_point": ["Thurn, Wilhelm"], "authorized_access_point": "Thurn, Wilhelm Friedrich"} 1 -2023-07-08 08:15:49.487236 2023-07-08 08:15:49.487244 f343b385-47af-46a0-9ff2-a6198a131421 {"md5": "92d6a218644e11ac29f3f0a59647634c", "pid": "1157778321", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1157778321", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157778321", "source": "GND"}], "preferred_name": "Dittrich, August Heinrich", "authorized_access_point": "Dittrich, August Heinrich"} 1 -2023-07-08 08:15:49.686192 2023-07-08 08:15:49.6862 ae44ddf6-2f36-4741-a561-64ae818cea8b {"md5": "3cf79553b560498b8be01f0601c8fd97", "pid": "1157879837", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1157879837", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157879837", "source": "GND"}], "variant_name": ["Hamilton John R."], "preferred_name": "Hamilton, Jno R.", "variant_access_point": ["Hamilton John R."], "authorized_access_point": "Hamilton, Jno R."} 1 -2023-07-08 08:15:49.780717 2023-07-08 08:15:49.780723 6d7184a3-3ce6-4856-aa88-6b0baaa601da {"md5": "155cb24363887f67d86dc0dbf624d6ee", "pid": "1157907849", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1157907849", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157907849", "source": "GND"}], "preferred_name": "Olivier, Jean Baptiste", "authorized_access_point": "Olivier, Jean Baptiste"} 1 -2023-07-08 08:15:49.859993 2023-07-08 08:15:49.860002 b5bafc41-21ec-47d2-a97a-5a8135c5a8c4 {"md5": "65a6a1fdd4cdb4bf16ea8efc9d7b1f54", "pid": "1157912311", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1157912311", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157912311", "source": "GND"}], "preferred_name": "Bezobrazov, Petr", "authorized_access_point": "Bezobrazov, Petr"} 1 -2023-07-08 08:15:49.947179 2023-07-08 08:15:49.947185 89faefbd-bc9b-4cb3-bfe2-049e25f73865 {"md5": "3ab3e7731cdcf24387cdde811274cd88", "pid": "1158006497", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1158006497", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158006497", "source": "GND"}], "variant_name": ["Gvaramadze, Lili"], "preferred_name": "Gvaramaje, Lili L.", "variant_access_point": ["Gvaramadze, Lili"], "authorized_access_point": "Gvaramaje, Lili L."} 1 -2023-07-08 08:15:50.037498 2023-07-08 08:15:50.037502 7ce376dd-3efd-4987-90c5-74e86a02836b {"md5": "390a73cd7c93ffd0429343b66fd2b204", "pid": "1158027060", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1158027060", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158027060", "source": "GND"}], "variant_name": ["Bregadze, G. V."], "preferred_name": "Bregaje, G.", "variant_access_point": ["Bregadze, G. V."], "authorized_access_point": "Bregaje, G."} 1 -2023-07-08 08:15:50.152729 2023-07-08 08:15:50.152737 7836ecb3-9886-435b-bff8-cef8f0be9a4e {"md5": "487752deec1f3dc2687bc1de9e6e09ff", "pid": "1158052057", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1158052057", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158052057", "source": "GND"}], "variant_name": ["Glazer, Myron", "Peretz Glazer, Myron", "Peretz-Glazer, Myron"], "preferred_name": "Glazer, Myron P.", "variant_access_point": ["Glazer, Myron", "Peretz Glazer, Myron", "Peretz-Glazer, Myron"], "authorized_access_point": "Glazer, Myron P."} 1 -2023-07-08 08:15:50.258167 2023-07-08 08:15:50.258175 f59bf112-afcc-45d9-8cff-9dfb959d4c5f {"md5": "03c5410521ca3a057a93430679b9a55c", "pid": "1158100892", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1158100892", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158100892", "source": "GND"}], "variant_name": ["Mustafajev, Ǵamal M.", "Mustafaev, Džamal M.", "Mustafajev, Ǧamal M.", "Mustafaev, Džamal", "Mustafayev, Jamal", "Mustafayev, C. M.", "Mustafayev, Camal Mehdi oğlu", "Mustafaev, Dzhamal Mekhti ogly", "Mustafai̐ev, Jamal Meḣdi oghlu", "Мустафаев, Джамал Мехти оглы"], "preferred_name": "Mustafayev, Camal", "country_associated": "aj", "variant_access_point": ["Mustafajev, Ǵamal M.", "Mustafaev, Džamal M.", "Mustafajev, Ǧamal M.", "Mustafaev, Džamal", "Mustafayev, Jamal", "Mustafayev, C. M.", "Mustafayev, Camal Mehdi oğlu", "Mustafaev, Dzhamal Mekhti ogly", "Mustafai̐ev, Jamal Meḣdi oghlu", "Мустафаев, Джамал Мехти оглы"], "parallel_access_point": ["Mustafaev, Dzh. M."], "authorized_access_point": "Mustafayev, Camal"} 1 -2023-07-08 08:15:50.34962 2023-07-08 08:15:50.349624 dff3c3d9-4acc-44e1-b10f-08771d8e2808 {"md5": "a038aaaa6de25bde813d6a401df95276", "pid": "1158101988", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1158101988", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158101988", "source": "GND"}], "variant_name": ["Tárnoky, Ilona R.-"], "preferred_name": "Reinert-Tárnoky, Ilona", "variant_access_point": ["Tárnoky, Ilona R.-"], "authorized_access_point": "Reinert-Tárnoky, Ilona"} 1 -2023-07-08 08:15:50.430874 2023-07-08 08:15:50.430878 e2437356-05b5-46af-8508-6bd2d04e6afa {"md5": "9fb491ce603026c0f39d6414111fb790", "pid": "1158158408", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1158158408", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158158408", "source": "GND"}], "variant_name": ["Amelio, Carlo d'"], "preferred_name": "D'Amelio, Carlo", "variant_access_point": ["Amelio, Carlo d'"], "authorized_access_point": "D'Amelio, Carlo"} 1 -2023-07-08 08:15:50.500708 2023-07-08 08:15:50.500714 8ac39697-ee5e-42c8-a38a-48ecb6c20b7b {"md5": "d4a3c3c376fbbce48a779366196c0512", "pid": "1158200374", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1158200374", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158200374", "source": "GND"}], "variant_name": ["Los, Jan"], "preferred_name": "Los, Jan H.", "variant_access_point": ["Los, Jan"], "authorized_access_point": "Los, Jan H."} 1 -2023-07-08 08:15:50.568063 2023-07-08 08:15:50.568066 4a0d6322-9a98-4909-b39b-4225db27f65d {"md5": "01de6e94f5774a67a54bcdbcb1169739", "pid": "115829106X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/115829106X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/115829106X", "source": "GND"}], "variant_name": ["Gromov, Gennadij Nikolaevič"], "preferred_name": "Gromov, Gennadij N.", "variant_access_point": ["Gromov, Gennadij Nikolaevič"], "authorized_access_point": "Gromov, Gennadij N."} 1 -2023-07-08 08:15:50.643036 2023-07-08 08:15:50.643047 a8c77343-2bdc-4e93-b83b-98ccc347aae0 {"md5": "80790a9581a50809f6f4c1c3d7d8dc1a", "pid": "115832599", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/115832599", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/115832599", "source": "GND"}], "date_of_birth": "1965", "preferred_name": "Olschinka, Ernst Georg", "authorized_access_point": "Olschinka, Ernst Georg, 1965-", "biographical_information": ["Diss. Medizinische Fakultät"]} 1 -2023-07-08 08:15:50.843582 2023-07-08 08:15:50.843587 5ea46e29-f5af-45ea-a691-2e0c1c848fe9 {"md5": "59446a8a0e43154bc2d56ddb1b149a7b", "pid": "1158367546", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1158367546", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158367546", "source": "GND"}], "variant_name": ["ElYahfoufi, Najwa", "Yaḥfūfī, Naǧwa al-"], "preferred_name": "Yahfoufi, Najwa el-", "variant_access_point": ["ElYahfoufi, Najwa", "Yaḥfūfī, Naǧwa al-"], "authorized_access_point": "Yahfoufi, Najwa el-"} 1 -2023-07-08 08:15:50.930632 2023-07-08 08:15:50.930638 5e2c685f-3d1c-44e2-8ad0-6389a7e99a20 {"md5": "c7785af957155695883ea2730dd8a15e", "pid": "1158381719", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1158381719", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158381719", "source": "GND"}], "variant_name": ["Bajramov, Tofik Gulam ogly"], "preferred_name": "Bajram, Tofig", "variant_access_point": ["Bajramov, Tofik Gulam ogly"], "authorized_access_point": "Bajram, Tofig"} 1 -2023-07-08 08:15:51.125233 2023-07-08 08:15:51.125237 6903e401-86b6-4e64-85c9-cbdf9eb2b7c3 {"md5": "54d3057db05c51d2c37de97828359409", "pid": "1158419481", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1158419481", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158419481", "source": "GND"}], "variant_name": ["Baguenier Desormeaux-Breguet, Marie", "Baguenier Desormeaux, Marie", "Baguenier-Desormeaux, Marie", "Baguenier-Desormeaux-Breguet, Marie", "Breguet, Marie Baguenier Desormeaux-", "Desormeaux, Marie Baguenier", "Desormeaux-Breguet, Marie Baguenier"], "preferred_name": "Breguet, Marie", "country_associated": "fr", "variant_access_point": ["Baguenier Desormeaux-Breguet, Marie", "Baguenier Desormeaux, Marie", "Baguenier-Desormeaux, Marie", "Baguenier-Desormeaux-Breguet, Marie", "Breguet, Marie Baguenier Desormeaux-", "Desormeaux, Marie Baguenier", "Desormeaux-Breguet, Marie Baguenier"], "authorized_access_point": "Breguet, Marie"} 1 -2023-07-08 08:15:51.329229 2023-07-08 08:15:51.329235 cede0893-c57d-41d4-bb07-8df7668f412d {"md5": "6086e74c5a50fd6007e530b430864dca", "pid": "1158446462", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1158446462", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158446462", "source": "GND"}], "variant_name": ["Černyj, Igor' Vital'evič"], "preferred_name": "Černyj, Igor' V.", "variant_access_point": ["Černyj, Igor' Vital'evič"], "authorized_access_point": "Černyj, Igor' V."} 1 -2023-07-08 08:15:51.425792 2023-07-08 08:15:51.425797 f48fd7be-0f40-4ab0-a831-ef1c2ae3f5fb {"md5": "7233d864b4b252e92e0a18835728731b", "pid": "1158464681", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1158464681", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158464681", "source": "GND"}], "variant_name": ["Adel'gejm, Evgenij Georgievič", "Adelʹgejm, Evgenij G.", "Adelʹgejm, Evgenij Georgievič", "Adelʹhejm, Jevhen Heorhijovyč"], "preferred_name": "Adelʹhejm, Jevhen H.", "variant_access_point": ["Adel'gejm, Evgenij Georgievič", "Adelʹgejm, Evgenij G.", "Adelʹgejm, Evgenij Georgievič", "Adelʹhejm, Jevhen Heorhijovyč"], "authorized_access_point": "Adelʹhejm, Jevhen H."} 1 -2023-07-08 08:15:51.530652 2023-07-08 08:15:51.530658 df524d0e-f2af-4c80-8b90-a4c231fc3cd0 {"md5": "67b33a9e1f2855ff14f670ca5078639a", "pid": "1158546564", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1158546564", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158546564", "source": "GND"}], "variant_name": ["Alikhanov, A. I."], "preferred_name": "Alichanov, Abram Isaakovič", "variant_access_point": ["Alikhanov, A. I."], "authorized_access_point": "Alichanov, Abram Isaakovič"} 1 -2023-07-08 08:15:51.616632 2023-07-08 08:15:51.61664 e865ed06-f8a1-4469-b131-4b759dc14872 {"md5": "9c7012394e3789210c0f4bacab668f93", "pid": "1158555156", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1158555156", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158555156", "source": "GND"}], "variant_name": ["Cakot, Ioannes", "Cakot, Johann"], "preferred_name": "Cakot, Johannes", "variant_access_point": ["Cakot, Ioannes", "Cakot, Johann"], "authorized_access_point": "Cakot, Johannes"} 1 -2023-07-08 08:15:51.028412 2023-07-08 10:25:16.727269 6f79afed-aac7-49cd-9b73-c2b514559194 {"md5": "61535a62888d159f9f7584aff32a1806", "pid": "1158387253", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1158387253", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158387253", "source": "GND"}], "variant_name": ["Lapšin, Viktor", "Lapšin, Viktor Michajlovič"], "preferred_name": "Lapšin, Viktor M.", "variant_access_point": ["Lapšin, Viktor", "Lapšin, Viktor Michajlovič"], "authorized_access_point": "Lapšin, Viktor M."} 2 -2023-07-08 08:15:51.22873 2023-07-08 10:29:11.02151 7edbafe0-d1aa-47fe-a49d-849cf18999f5 {"md5": "1c947f26227223d4d7f46aba66904cfa", "pid": "1158422814", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1158422814", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158422814", "source": "GND"}], "variant_name": ["Blackley, David Charles"], "preferred_name": "Blackley, David C.", "variant_access_point": ["Blackley, David Charles"], "authorized_access_point": "Blackley, David C.", "biographical_information": ["Formerly reader in Polymer Science and Technology, Polytechnic of North London"]} 2 -2023-07-08 08:15:51.710893 2023-07-08 08:15:51.7109 9b7a9b9d-efb5-4a57-ad44-584d44ea60c1 {"md5": "1a5429f8e3aaaabdbc49f04622a775d5", "pid": "115855882", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/115855882", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/115855882", "source": "GND"}], "date_of_birth": "1964", "preferred_name": "Göben, Jens", "authorized_access_point": "Göben, Jens, 1964-"} 1 -2023-07-08 08:15:51.924982 2023-07-08 08:15:51.92499 a5c26905-d002-4396-954b-140ebb5e5bea {"md5": "a55645d50047b2f847fd4570a86bfc49", "pid": "1158570945", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1158570945", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158570945", "source": "GND"}], "variant_name": ["Belliveau, Anne McMullen", "MacMullen Belliveau, Anne", "McMullen Belliveau, Anne"], "preferred_name": "Belliveau, Anne MacMullen", "variant_access_point": ["Belliveau, Anne McMullen", "MacMullen Belliveau, Anne", "McMullen Belliveau, Anne"], "authorized_access_point": "Belliveau, Anne MacMullen"} 1 -2023-07-08 08:15:52.011178 2023-07-08 08:15:52.011181 5cd17986-79bd-427e-8529-5b65566b007d {"md5": "1b42756d2dd0a118c3a4298142a36d8b", "pid": "1158574614", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1158574614", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158574614", "source": "GND"}], "variant_name": ["Chernyshova, Nina Vasylivna", "Černyšova, Nina Vasylivna"], "preferred_name": "Černyšova, Nina V.", "variant_access_point": ["Chernyshova, Nina Vasylivna", "Černyšova, Nina Vasylivna"], "authorized_access_point": "Černyšova, Nina V."} 1 -2023-07-08 08:15:52.102469 2023-07-08 08:15:52.102478 0d7c93a1-2f11-463c-b0b9-465b615a35dc {"md5": "dcded253fce238b97c9d0bfa65f0733f", "pid": "1158624107", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1158624107", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158624107", "source": "GND"}], "date_of_birth": "1939", "date_of_death": "2023", "preferred_name": "Schäfer, Richard", "country_associated": "sz", "authorized_access_point": "Schäfer, Richard, 1939-2023"} 1 -2023-07-08 08:15:52.198654 2023-07-08 08:15:52.19866 f6ac234c-0fca-4428-8ce1-47aa3fb363fc {"md5": "b89a66ed3c2f2ab34b845d39311810fa", "pid": "1158716125", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1158716125", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158716125", "source": "GND"}], "variant_name": ["Rabinowich, Nahum"], "preferred_name": "Rabinovič, Naum", "variant_access_point": ["Rabinowich, Nahum"], "authorized_access_point": "Rabinovič, Naum"} 1 -2023-07-08 08:15:52.294428 2023-07-08 08:15:52.294439 400ee9f2-fcb8-4a74-831d-f888c88b9f94 {"md5": "d20d35a4b0eb847fec80820515099acc", "pid": "1158723458", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1158723458", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158723458", "source": "GND"}], "variant_name": ["Verde, Thomas A.", "Verde, Tom"], "preferred_name": "Verde, Thomas Aquinas", "variant_access_point": ["Verde, Thomas A.", "Verde, Tom"], "authorized_access_point": "Verde, Thomas Aquinas"} 1 -2023-07-08 08:15:52.397502 2023-07-08 08:15:52.397507 067767d7-33fc-4278-b1e0-503e5b02f8a7 {"md5": "d9117d4bdc4d8623ada86a2b63257e67", "pid": "1158741308", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1158741308", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158741308", "source": "GND"}], "variant_name": ["Ḥāmid Faraǧ"], "preferred_name": "Faraǧ, Ḥāmid", "variant_access_point": ["Ḥāmid Faraǧ"], "authorized_access_point": "Faraǧ, Ḥāmid"} 1 -2023-07-08 08:15:52.476827 2023-07-08 08:15:52.476833 2d0cd85f-a400-49f8-811a-3c7508a832ca {"md5": "5bdcc45ad346ea65c1056d9c0e9f7b5d", "pid": "1158818726", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1158818726", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158818726", "source": "GND"}], "variant_name": ["Miller, Bernadette Helga Maria"], "preferred_name": "Grumser, Bernadette", "variant_access_point": ["Miller, Bernadette Helga Maria"], "authorized_access_point": "Grumser, Bernadette"} 1 -2023-07-08 08:15:52.579244 2023-07-08 08:15:52.579253 273adffa-6dc4-4af1-b9e9-b495967f5026 {"md5": "b59e813578b7ff5565a2c0bf7adc418a", "pid": "1158866127", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1158866127", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158866127", "source": "GND"}], "variant_name": ["Andersen, Anton Rask", "Rask-Andersen, Anton"], "preferred_name": "Rask Andersen, Anton", "variant_access_point": ["Andersen, Anton Rask", "Rask-Andersen, Anton"], "authorized_access_point": "Rask Andersen, Anton"} 1 -2023-07-08 08:15:52.670408 2023-07-08 08:15:52.670411 c6fa9380-9518-4188-b4b0-715d0903e0db {"md5": "f7f7f77a7f45ed8d5e854012a75c20dd", "pid": "1158920237", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1158920237", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158920237", "source": "GND"}], "variant_name": ["Le Palmec, Jean"], "preferred_name": "LePalmec, Jean", "variant_access_point": ["Le Palmec, Jean"], "authorized_access_point": "LePalmec, Jean"} 1 -2023-07-08 08:15:52.744631 2023-07-08 08:15:52.744638 71c08834-280c-4bcb-90e6-0d81218569d5 {"md5": "8abf1028c00fe822340b9924e6487a1e", "pid": "1158922892", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1158922892", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158922892", "source": "GND"}], "variant_name": ["Muḥammad ʿAbdalʿazīz Marzūq"], "preferred_name": "Marzūq, Muḥammad ʿAbdalʿazīz", "variant_access_point": ["Muḥammad ʿAbdalʿazīz Marzūq"], "authorized_access_point": "Marzūq, Muḥammad ʿAbdalʿazīz"} 1 -2023-07-08 08:15:52.813815 2023-07-08 08:15:52.813819 c19d5b4c-cadc-46d6-b76d-173b728ac39f {"md5": "549303dff7e5060166deed542179d43e", "pid": "1158941145", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1158941145", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158941145", "source": "GND"}], "variant_name": ["Wischer, Detlef"], "preferred_name": "Wischer, Detlev", "variant_access_point": ["Wischer, Detlef"], "authorized_access_point": "Wischer, Detlev"} 1 -2023-07-08 08:15:52.902782 2023-07-08 08:15:52.902792 a0307ab7-bdd4-42fe-b03d-f44209b625cc {"md5": "177c338ba80039af26130736724da2c8", "pid": "1158944675", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1158944675", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158944675", "source": "GND"}], "variant_name": ["Glasov, Ju.", "Glazov, Jurij Jakovlevič"], "preferred_name": "Glazov, Jurij Ja.", "variant_access_point": ["Glasov, Ju.", "Glazov, Jurij Jakovlevič"], "authorized_access_point": "Glazov, Jurij Ja."} 1 -2023-07-08 08:15:52.980855 2023-07-08 08:15:52.98086 28af0bad-7573-4ac1-a547-fae30ed29de2 {"md5": "a7c93e8d53c20106cdab252d42ac1c0e", "pid": "1158971117", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1158971117", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158971117", "source": "GND"}], "variant_name": ["ʿAbāda, ʿAbdalfattāḥ"], "preferred_name": "ʿAbdalfattāḥ ʿIbāda", "variant_access_point": ["ʿAbāda, ʿAbdalfattāḥ"], "authorized_access_point": "ʿAbdalfattāḥ ʿIbāda"} 1 -2023-07-08 08:15:53.069264 2023-07-08 08:15:53.069269 3e4ee25b-c123-4aeb-816d-1fb6ef43b3e7 {"md5": "9058c177f66c8a1474beb16d9610e4a0", "pid": "1159026750", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1159026750", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159026750", "source": "GND"}], "variant_name": ["Lohman, A. F. de Savornin"], "preferred_name": "Savornin Lohman, Alexander Frederik", "variant_access_point": ["Lohman, A. F. de Savornin"], "authorized_access_point": "Savornin Lohman, Alexander Frederik"} 1 -2023-07-08 08:15:53.165853 2023-07-08 08:15:53.165862 0eaf0648-ae16-412c-a60a-5e083bde7304 {"md5": "7b9874dfab459002121e125531d375be", "pid": "1159034591", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1159034591", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159034591", "source": "GND"}], "variant_name": ["Argenteau, Mercy", "Argenteau, Rose Ctesse de Mercy", "Avaray, Rose Mise d'", "Montglyon, Mercy Argenteau Princesse de"], "preferred_name": "Mercy Argenteau, Rose", "variant_access_point": ["Argenteau, Mercy", "Argenteau, Rose Ctesse de Mercy", "Avaray, Rose Mise d'", "Montglyon, Mercy Argenteau Princesse de"], "authorized_access_point": "Mercy Argenteau, Rose"} 1 -2023-07-08 08:15:53.382612 2023-07-08 08:15:53.382616 64ea40ba-b521-41cf-a913-cb6f1f50b426 {"md5": "3f4c6214f04fcaff65ad00aa54d2911f", "pid": "1159064911", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1159064911", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159064911", "source": "GND"}], "variant_name": ["Petříková, Anna Brtníková"], "preferred_name": "Brtníková-Petříková, Anna", "variant_access_point": ["Petříková, Anna Brtníková"], "authorized_access_point": "Brtníková-Petříková, Anna"} 1 -2023-07-08 08:15:53.460395 2023-07-08 08:15:53.460401 23cdc237-2192-478d-85d9-cc48e1ebe986 {"md5": "2bd877610cda263544344563c089f992", "pid": "1159071373", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1159071373", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159071373", "source": "GND"}], "variant_name": ["Bernal, Ruth Delfina Saldaña", "Saldaña, Ruth Delfina"], "preferred_name": "Saldaña Bernal, Ruth Delfina", "variant_access_point": ["Bernal, Ruth Delfina Saldaña", "Saldaña, Ruth Delfina"], "authorized_access_point": "Saldaña Bernal, Ruth Delfina"} 1 -2023-07-08 08:15:53.559686 2023-07-08 08:15:53.559691 a313f6fa-66c5-416f-92b3-7d0d6a273442 {"md5": "d23cee290e1380c5e8b4d7bfcf691bdd", "pid": "1159073880", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1159073880", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159073880", "source": "GND"}], "variant_name": ["Durieu, Louis"], "preferred_name": "Blum, Eugène", "variant_access_point": ["Durieu, Louis"], "authorized_access_point": "Blum, Eugène"} 1 -2023-07-08 08:15:53.660872 2023-07-08 08:15:53.660879 01545de1-9ee1-4031-b4a0-72799f9a072d {"md5": "563127c3a6c95c8e7a607b8699e87ff6", "pid": "1159080593", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1159080593", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159080593", "source": "GND"}], "variant_name": ["Alvarez de Villanueva, Francisco", "Villanueva, Francisco Alvarez de"], "preferred_name": "Álvarez de Villanueva, Francisco", "variant_access_point": ["Alvarez de Villanueva, Francisco", "Villanueva, Francisco Alvarez de"], "authorized_access_point": "Álvarez de Villanueva, Francisco"} 1 -2023-07-08 08:15:53.749547 2023-07-08 08:15:53.749551 b93dbd5d-b44b-49ad-b646-1e8720ac7e4a {"md5": "d8cc8b98168f5fbbd2c1296e8f196761", "pid": "1159104611", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1159104611", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159104611", "source": "GND"}], "variant_name": ["Wielisław", "Skrodzki-Wielisław, Eugeniusz"], "preferred_name": "Skrodzki, Eugeniusz", "variant_access_point": ["Wielisław", "Skrodzki-Wielisław, Eugeniusz"], "authorized_access_point": "Skrodzki, Eugeniusz"} 1 -2023-07-08 08:15:53.845417 2023-07-08 08:15:53.845421 b7a35e38-1c89-4a1a-9a30-4e31427aa9f3 {"md5": "9f14bd8ffc2ed31ece5744dece28f963", "pid": "1159119422", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1159119422", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159119422", "source": "GND"}], "variant_name": ["ʿAbd-al-Qādir ad-Danā"], "preferred_name": "Danā, ʿAbd-al-Qādir ad-", "variant_access_point": ["ʿAbd-al-Qādir ad-Danā"], "authorized_access_point": "Danā, ʿAbd-al-Qādir ad-"} 1 -2023-07-08 08:15:53.934437 2023-07-08 08:15:53.934441 20a0b3b9-27b6-4b5f-a5a6-183a26383366 {"md5": "cc2bb5bae541764a3e64cfa4293c2805", "pid": "1159135630", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1159135630", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159135630", "source": "GND"}], "variant_name": ["Holland, Friedrich-Wilhelm"], "preferred_name": "Holland, Friedrich Wilhelm", "variant_access_point": ["Holland, Friedrich-Wilhelm"], "authorized_access_point": "Holland, Friedrich Wilhelm"} 1 -2023-07-08 08:15:54.028768 2023-07-08 08:15:54.028776 0ecf0c4f-c975-4a7c-aa1f-eee39f86b2a7 {"md5": "031b3a3c18d2cce91908271f1a82bfb2", "pid": "1159138117", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1159138117", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159138117", "source": "GND"}], "variant_name": ["Rancasi, Armandi Johannis Buttilierii"], "preferred_name": "Buttilierius, Armand Johannes", "variant_access_point": ["Rancasi, Armandi Johannis Buttilierii"], "authorized_access_point": "Buttilierius, Armand Johannes"} 1 -2023-07-08 08:15:54.113969 2023-07-08 08:15:54.113974 59772481-b7fd-4adf-964f-126902a49c5b {"md5": "f9b5eca1457bdeada537fa5664b9c749", "pid": "1159153183", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1159153183", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159153183", "source": "GND"}], "variant_name": ["Du Fou, Raoul"], "preferred_name": "DuFou, Raoul", "variant_access_point": ["Du Fou, Raoul"], "authorized_access_point": "DuFou, Raoul"} 1 -2023-07-08 08:15:54.205615 2023-07-08 08:15:54.205618 95eb445e-209a-4779-a609-2d83bdfabd92 {"md5": "0dd4caaafa7f8f00985fe362d59d2200", "pid": "1159167451", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1159167451", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159167451", "source": "GND"}], "variant_name": ["Koehn, Natalja", "Kohn, Natalija"], "preferred_name": "Kʹon, Natalija", "variant_access_point": ["Koehn, Natalja", "Kohn, Natalija"], "authorized_access_point": "Kʹon, Natalija"} 1 -2023-07-08 08:15:54.295318 2023-07-08 08:15:54.295325 8032ef75-b7d8-49b3-8b74-b3c13aed7af7 {"md5": "b27fea947c5962d19b6321e726a78372", "pid": "1159213550", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1159213550", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159213550", "source": "GND"}], "variant_name": ["Maksimova, Vera", "Maksimova, Vera Anatolʹevna"], "preferred_name": "Maksimova, Vera A.", "variant_access_point": ["Maksimova, Vera", "Maksimova, Vera Anatolʹevna"], "authorized_access_point": "Maksimova, Vera A."} 1 -2023-07-08 08:15:54.369628 2023-07-08 08:15:54.369637 5a7765d8-fc0b-4ab2-9e2e-36d6e2d90fa8 {"md5": "54bb1f4f056b5d5e042968fe39aca10d", "pid": "115921719X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/115921719X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/115921719X", "source": "GND"}], "variant_name": ["Ovsienko, Valentin Ermolaevich", "Ovsienko, Valentin Ermolaevič"], "preferred_name": "Ovsienko, Valentin E.", "variant_access_point": ["Ovsienko, Valentin Ermolaevich", "Ovsienko, Valentin Ermolaevič"], "authorized_access_point": "Ovsienko, Valentin E."} 1 -2023-07-08 08:15:54.463863 2023-07-08 08:15:54.463876 ded92fbf-bfaa-4b49-9b1b-816c00d8a42b {"md5": "e25eda472c84d399af7b39db777b196f", "pid": "1159260079", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1159260079", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159260079", "source": "GND"}], "variant_name": ["Sari'en, Sri", "Sri, Sari'en"], "preferred_name": "Sri Sari'en", "variant_access_point": ["Sari'en, Sri", "Sri, Sari'en"], "authorized_access_point": "Sri Sari'en"} 1 -2023-07-08 08:15:54.575394 2023-07-08 08:15:54.575408 25f58b31-9634-4517-a2fe-55af3a667ec5 {"md5": "1add469559840b207228e281cb51a4e8", "pid": "1159260931", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1159260931", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159260931", "source": "GND"}], "variant_name": ["Mošnjaga, Elena Viktorovna"], "preferred_name": "Mošnjaga, Elena V.", "variant_access_point": ["Mošnjaga, Elena Viktorovna"], "authorized_access_point": "Mošnjaga, Elena V."} 1 -2023-07-08 08:15:54.677831 2023-07-08 08:15:54.677843 dc6a24be-9476-4769-9958-c1ef900fa00d {"md5": "5e7d00667dba54941e9deca62649d429", "pid": "1159261407", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1159261407", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159261407", "source": "GND"}], "variant_name": ["Iščenko, Iryna Mykolai͏̈vna"], "preferred_name": "Iščenko, Iryna M.", "variant_access_point": ["Iščenko, Iryna Mykolai͏̈vna"], "authorized_access_point": "Iščenko, Iryna M."} 1 -2023-07-08 08:15:54.954647 2023-07-08 08:15:54.95466 a2509c51-05b1-4b0d-b67d-c10fd06b3c3a {"md5": "6c51d417e47a862a7a097e46e23b51db", "pid": "1159288259", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1159288259", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159288259", "source": "GND"}], "variant_name": ["Orlova, Izidora T.", "Orlova, Izidora Tomaševna"], "preferred_name": "Orlova, Izida", "variant_access_point": ["Orlova, Izidora T.", "Orlova, Izidora Tomaševna"], "authorized_access_point": "Orlova, Izida"} 1 -2023-07-08 08:15:55.064591 2023-07-08 08:15:55.064608 c3077237-9e44-4789-8c3e-6957347d4d3a {"md5": "8703f92a6585651d24432de706cc0962", "pid": "1159531471", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1159531471", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159531471", "source": "GND"}], "preferred_name": "Kretzschmar, René", "country_associated": "gw", "authorized_access_point": "Kretzschmar, René"} 1 -2023-07-08 08:15:55.179974 2023-07-08 08:15:55.179978 6b4b846e-6658-4ebb-b230-4eeb2dae6286 {"md5": "d9665b647673be66999390f424894736", "pid": "1159712689", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1159712689", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159712689", "source": "GND"}], "preferred_name": "Lui, Janina", "country_associated": "gw", "authorized_access_point": "Lui, Janina"} 1 -2023-07-08 08:15:55.295058 2023-07-08 08:15:55.295064 41a611fd-a3e0-4c96-acee-0fdcdfd4fedd {"md5": "ecbe0467f28a0abac63bb5a56ca4c444", "pid": "1160106576", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1160106576", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1160106576", "source": "GND"}], "preferred_name": "Wehmeyer, Ludwig", "country_associated": "gw", "authorized_access_point": "Wehmeyer, Ludwig"} 1 -2023-07-08 08:15:55.417102 2023-07-08 08:15:55.417115 3167a427-9e73-4ebb-9c6a-106d04d0ecd4 {"md5": "b82b784e6de7933d5ca0fd7ed4958195", "pid": "1160217254", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1160217254", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1160217254", "source": "GND"}], "variant_name": ["Pazajew, Wiktor Iwanowitsch", "Пацаев, Виктор Иванович"], "date_of_birth": "10.06.1933", "date_of_death": "30.06.1971", "preferred_name": "Pacaev, Viktor Ivanovič", "country_associated": "ru", "variant_access_point": ["Pazajew, Wiktor Iwanowitsch, 1933-1971", "Пацаев, Виктор Иванович, 1933-1971"], "authorized_access_point": "Pacaev, Viktor Ivanovič, 1933-1971"} 1 -2023-07-08 08:15:55.543212 2023-07-08 08:15:55.543227 a030ae9e-85ac-402e-88cd-65fdea0d234b {"md5": "90c1d6bb3bf7c6729eaf08f997bcd3da", "pid": "1160325189", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1160325189", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1160325189", "source": "GND"}], "date_of_birth": "1901", "preferred_name": "Schintz, Wilhelm", "country_associated": "gw", "authorized_access_point": "Schintz, Wilhelm, 1901-"} 1 -2023-07-08 08:15:55.679609 2023-07-08 08:15:55.67962 033fa69a-9938-48a0-81f7-0b90d3fe38d5 {"md5": "4512e4e942785f602010768430029a74", "pid": "116037202", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/116037202", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116037202", "source": "GND"}], "preferred_name": "Bässler, Ralf", "country_associated": "gw", "authorized_access_point": "Bässler, Ralf"} 1 -2023-07-08 08:15:55.791548 2023-07-08 08:15:55.791554 86d987e7-1faa-4841-a2bb-6592c742f5f5 {"md5": "e0e8a25a88de005752c76a0a6b05867a", "pid": "116075899", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/116075899", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116075899", "source": "GND"}], "variant_name": ["Baruch, Löb Jakob", "Baruch, Jacob"], "date_of_birth": "24.10.1763", "date_of_death": "19.04.1827", "preferred_name": "Baruch, Jakob", "country_associated": "gw", "variant_access_point": ["Baruch, Löb Jakob, 1763-1827", "Baruch, Jacob, 1763-1827"], "authorized_access_point": "Baruch, Jakob, 1763-1827"} 1 -2023-07-08 08:15:55.89192 2023-07-08 08:15:55.891932 37d90986-bfdc-4e60-8779-04f3deb09e48 {"md5": "f24bd38ba6face3732524ebcd69169b1", "pid": "1160946140", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1160946140", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1160946140", "source": "GND"}], "preferred_name": "Stedennetwerk G40", "country_associated": "ne", "authorized_access_point": "Stedennetwerk G40"} 1 -2023-07-08 08:15:55.996462 2023-07-08 08:15:55.996473 581fd9d5-29a5-412b-8182-40d2347b087f {"md5": "3d2242af98d8ac5496acfd7acbe9c493", "pid": "116102932X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/116102932X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116102932X", "source": "GND"}], "variant_name": ["Kayibanda, A."], "date_of_birth": "1976", "preferred_name": "Kayibanda, Alice", "country_associated": "rw", "variant_access_point": ["Kayibanda, A., 1976-"], "authorized_access_point": "Kayibanda, Alice, 1976-"} 1 -2023-07-08 08:15:56.097682 2023-07-08 08:15:56.097696 f967be46-a43c-4f45-ad58-a27a4f4b44bd {"md5": "7004448c29b57e2007ad8c9d57535e6f", "pid": "116120444", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/116120444", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116120444", "source": "GND"}], "preferred_name": "Benetti, Jacopo", "country_associated": "it", "authorized_access_point": "Benetti, Jacopo", "biographical_information": ["Rom; Bologna (Wirkungsort)"]} 1 -2023-07-08 08:15:56.329482 2023-07-08 08:15:56.329494 7c07e88c-aca4-4430-9e9c-18d60f0cb512 {"md5": "0a4a5c1238f1ba325dd29b29e96a7e19", "pid": "116189673", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/116189673", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116189673", "source": "GND"}], "date_of_birth": "1878", "date_of_death": "1960", "preferred_name": "Pippel, Otto", "country_associated": "pl", "authorized_access_point": "Pippel, Otto, 1878-1960", "biographical_information": ["Poln. Maler, lebte in Deutschland"]} 1 -2023-07-08 08:15:56.426226 2023-07-08 08:15:56.426236 239adb23-e47b-491e-bdee-723b8e626ded {"md5": "57772e82846aeafd51066e89eba7845d", "pid": "1162968664", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1162968664", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1162968664", "source": "GND"}], "date_of_birth": "1954", "preferred_name": "Hein, Dieter", "country_associated": "gw", "authorized_access_point": "Hein, Dieter, 1954-"} 1 -2023-07-08 08:15:57.638191 2023-07-08 08:15:57.638201 df4f723a-0a0a-42c8-8a2e-1b2904edf3f1 {"md5": "d2524383a758db903eff3d3a4d13d654", "pid": "1164502875", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1164502875", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1164502875", "source": "GND"}], "preferred_name": "Mateos, Mariano", "country_associated": "sp", "authorized_access_point": "Mateos, Mariano"} 1 -2023-07-08 08:15:56.534553 2023-07-08 08:15:56.534566 76f7acc6-5dab-4274-a135-554bdbb0a532 {"md5": "2833c5e6f447fb9391b024c0e5d07c82", "pid": "1163054186", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1163054186", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1163054186", "source": "GND"}], "variant_name": ["Gaya, Joana-Albq Cercós i", "Cercós, Joana-Alba"], "date_of_birth": "1972", "preferred_name": "Cercós i Gaya, Joana-Alba", "country_associated": "sp", "variant_access_point": ["Gaya, Joana-Albq Cercós i, 1972-", "Cercós, Joana-Alba, 1972-"], "authorized_access_point": "Cercós i Gaya, Joana-Alba, 1972-"} 1 -2023-07-08 08:15:56.648144 2023-07-08 08:15:56.648155 d302fd1a-1752-4702-b6e8-2eb72db09ad1 {"md5": "ef820d1bca834555c835c07d76e860a1", "pid": "1163061921", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1163061921", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1163061921", "source": "GND"}], "variant_name": ["Kranich, Johannes Engelbertus", "Kranich, Johannes Engelbert", "Kranich, Johann Engelhard", "Kranich, Joh. Engelhardus"], "preferred_name": "Kranich, Johann Engelbert", "country_associated": "gw", "variant_access_point": ["Kranich, Johannes Engelbertus", "Kranich, Johannes Engelbert", "Kranich, Johann Engelhard", "Kranich, Joh. Engelhardus"], "authorized_access_point": "Kranich, Johann Engelbert", "biographical_information": ["Student in Marburg"]} 1 -2023-07-08 08:15:56.745618 2023-07-08 08:15:56.745631 a08963ff-54fa-43e0-9856-457dde53fc44 {"md5": "5ddc9d53bc4a83bc67e7996e07525cd4", "pid": "116311054X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/116311054X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116311054X", "source": "GND"}], "date_of_birth": "1956", "preferred_name": "Condello, Angela", "country_associated": "it", "authorized_access_point": "Condello, Angela, 1956-", "biographical_information": ["Insegna Filosofia all'Universita di Torino, dove e vicerettore e presidente del Laboartorio di Ontologia"]} 1 -2023-07-08 08:15:56.859245 2023-07-08 08:15:56.859257 80998f95-7ed2-4731-9623-d17b14d89dad {"md5": "adac53d6a92e259c75747480a31c8da4", "pid": "1163622265", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1163622265", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1163622265", "source": "GND"}], "date_of_birth": "1964", "preferred_name": "Schellhorn, Anne", "country_associated": "gw", "authorized_access_point": "Schellhorn, Anne, 1964-", "biographical_information": ["Arbeitsschwerpunkte: Behandlung hirnorganisch bedingter Verhaltensstörungen, soziales Kompetenztraining für Menschen mit erworbener Hirnschädigung"]} 1 -2023-07-08 08:15:56.979557 2023-07-08 08:15:56.979568 51ec42dd-508d-4d40-a1a5-de336a014c0d {"md5": "8882d23f903dc523fc225dee61ed7cc8", "pid": "1163767662", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1163767662", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1163767662", "source": "GND"}], "preferred_name": "Feldmann, Niels", "authorized_access_point": "Feldmann, Niels"} 1 -2023-07-08 08:15:57.093157 2023-07-08 08:15:57.093171 238b60e5-f3ae-4dcb-8bd1-969467e62e8b {"md5": "1860ead9fd7cbbe87ed27be6d6060ece", "pid": "116385103", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/116385103", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116385103", "source": "GND"}], "preferred_name": "Brackmann, Ursula", "country_associated": "gw", "authorized_access_point": "Brackmann, Ursula", "biographical_information": ["Geschäftsführerin des Verbands deutscher Schriftsteller (1975-1985)"]} 1 -2023-07-08 08:15:57.199276 2023-07-08 08:15:57.19929 f628846e-95a2-4ced-b6e0-14e60c8bbcbe {"md5": "a3948d32f894a4469b5c8caaeeb98d33", "pid": "1164191497", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1164191497", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1164191497", "source": "GND"}], "variant_name": ["Szaszkiewicz, Michal", "Shaskevich, Michael", "Šašković, Mihailo", "Šaškijević, Mihailo", "Šaškević, Mihailo"], "date_of_birth": "1929", "preferred_name": "Šaškijević, Mihailo", "variant_access_point": ["Szaszkiewicz, Michal, 1929-", "Shaskevich, Michael, 1929-", "Šašković, Mihailo, 1929-", "Šaškijević, Mihailo, 1929-", "Šaškević, Mihailo, 1929-"], "authorized_access_point": "Šaškijević, Mihailo, 1929-"} 1 -2023-07-08 08:15:57.303361 2023-07-08 08:15:57.303375 c9fa44a5-cbd1-4205-8292-74c29deca388 {"md5": "c3dfb02bc5160480003bcdc33ebedd6e", "pid": "1164263269", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1164263269", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1164263269", "source": "GND"}], "date_of_birth": "06.07.1904", "date_of_death": "24.12.1980", "preferred_name": "Dettmar, Kurt", "country_associated": "gw", "authorized_access_point": "Dettmar, Kurt, 1904-1980", "biographical_information": ["Dt. Pfarrer in Wadersloh (Kreis Warendorf, Westfalen), geboren in Ferraz, Südbrasilien"]} 1 -2023-07-08 08:15:57.425897 2023-07-08 08:15:57.425913 89a5dec6-7f4f-4d07-9046-52893d88c729 {"md5": "9bc90bf9c37329167c13ce4f6bf1490f", "pid": "116439394", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/116439394", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116439394", "source": "GND"}], "variant_name": ["Rolf, Mathilde Feldern-", "Feldern Rolf, Mathilde"], "date_of_birth": "1810", "preferred_name": "Feldern-Rolf, Mathilde", "country_associated": "gw", "variant_access_point": ["Rolf, Mathilde Feldern-, 1810-", "Feldern Rolf, Mathilde, 1810-"], "authorized_access_point": "Feldern-Rolf, Mathilde, 1810-", "biographical_information": ["Wien; Stampfen (Wirkungsort)"]} 1 -2023-07-08 08:15:57.527826 2023-07-08 08:15:57.527834 966fab5e-1d5d-4903-922f-51756fccf5ba {"md5": "748d19876cff4465a1101ed140bf2a98", "pid": "116442743", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/116442743", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116442743", "source": "GND"}], "variant_name": ["Cancellieri, Francesco Girolamo", "Cancellieri, François", "Cancellieri, Francisco"], "date_of_birth": "10.10.1751", "date_of_death": "29.12.1826", "preferred_name": "Cancellieri, Francesco", "country_associated": "it", "variant_access_point": ["Cancellieri, Francesco Girolamo, 1751-1826", "Cancellieri, François, 1751-1826", "Cancellieri, Francisco, 1751-1826"], "authorized_access_point": "Cancellieri, Francesco, 1751-1826", "biographical_information": ["Italien. Bibliothekar, Archäologe, Literat", "Historiker, Bibliothekar"]} 1 -2023-07-08 08:15:57.892945 2023-07-08 08:15:57.892957 9e5651cf-1dc5-4cc3-b26f-57d77be37606 {"md5": "cfd1d0fa82c2c77d3dc9ec511e83a9a6", "pid": "11647839X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/11647839X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/11647839X", "source": "GND"}], "preferred_name": "Enge, Max", "country_associated": "gw", "authorized_access_point": "Enge, Max", "biographical_information": ["Freiburg/Br. (Wirkungsort)"]} 1 -2023-07-08 08:15:58.000953 2023-07-08 08:15:58.000964 46b042b1-55cc-4d9c-b406-ba453ce8565e {"md5": "4c59680edfe31ffd98b710dcffcca221", "pid": "116481536", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/116481536", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116481536", "source": "GND"}], "variant_name": ["Breithaupt, Max Maximilian Friedrich Karl", "Breithaupt, Maximilianus", "Breithaupt, Maximilian"], "date_of_birth": "06.08.1888", "date_of_death": "12.12.1965", "preferred_name": "Breithaupt, Max", "country_associated": "gw", "variant_access_point": ["Breithaupt, Max Maximilian Friedrich Karl, 1888-1965", "Breithaupt, Maximilianus, 1888-1965", "Breithaupt, Maximilian, 1888-1965"], "authorized_access_point": "Breithaupt, Max, 1888-1965", "biographical_information": ["Heidelberg, Univ., Diss., 1913"]} 1 -2023-07-08 08:15:58.112986 2023-07-08 08:15:58.112998 11eea90e-b128-43a9-aef1-c6949d64d868 {"md5": "d96a99759bd7f73419ea8d99ae3582f2", "pid": "116493011", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/116493011", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116493011", "source": "GND"}], "date_of_birth": "1879", "date_of_death": "1961", "preferred_name": "Chavance, René", "country_associated": "fr", "authorized_access_point": "Chavance, René, 1879-1961"} 1 -2023-07-08 08:15:58.212943 2023-07-08 08:15:58.212956 180bb1ce-a2a9-450f-a39c-33845ccab446 {"md5": "6cef7a99998936da03d3de7ed7ee223c", "pid": "1165187388", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1165187388", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1165187388", "source": "GND"}], "variant_name": ["Malik, Randa Abdel"], "preferred_name": "Abdel Malik, Randa", "country_associated": "gw", "variant_access_point": ["Malik, Randa Abdel"], "authorized_access_point": "Abdel Malik, Randa", "biographical_information": ["Diss. Fachbereich Biochemie, Chemie und Pharmazie an der Univ. Frankfurt am Main (2018)"]} 1 -2023-07-08 08:15:58.33065 2023-07-08 08:15:58.330661 9a9b8f54-6fa9-46f5-99b9-bb79496df6b7 {"md5": "74dd3ac645398bac2b92b5f658eb4442", "pid": "1165269503", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1165269503", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1165269503", "source": "GND"}], "variant_name": ["Birch, Suzanne E. Pilaar"], "preferred_name": "Pilaar Birch, Suzanne E.", "country_associated": "xxu", "variant_access_point": ["Birch, Suzanne E. Pilaar"], "authorized_access_point": "Pilaar Birch, Suzanne E."} 1 -2023-07-08 08:15:58.433095 2023-07-08 08:15:58.433106 1a52c843-b954-4756-bd9a-33ce7fff8b6a {"md5": "ea27123a794b8e544f429e72c81825ac", "pid": "1165531615", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1165531615", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1165531615", "source": "GND"}], "variant_name": ["A. Entsch Theater-Agentur und Bühnen-Manuscripten Debit Berlin", "A. Entsch Theater-Agentur und Bühnen-Manuskript Debit Berlin", "A. Entsch Theater-Agentur und Bühnen-Manuskripten Debit Berlin", "Theater-Agentur und Bühnen-Manuscripten Debit A. Entsch", "Theater-Agentur A. Entsch", "Theateragentur von A. Entsch, A. Heinrich's Nachfolger Berlin", "Theater-Agentur von A. Entsch"], "preferred_name": "A. Entsch Theater-Agentur und Bühnen-Manuscript Debit Berlin", "variant_access_point": ["A. Entsch Theater-Agentur und Bühnen-Manuscripten Debit Berlin", "A. Entsch Theater-Agentur und Bühnen-Manuskript Debit Berlin", "A. Entsch Theater-Agentur und Bühnen-Manuskripten Debit Berlin", "Theater-Agentur und Bühnen-Manuscripten Debit A. Entsch", "Theater-Agentur A. Entsch", "Theateragentur von A. Entsch, A. Heinrich's Nachfolger Berlin", "Theater-Agentur von A. Entsch"], "authorized_access_point": "A. Entsch Theater-Agentur und Bühnen-Manuscript Debit Berlin", "biographical_information": ["ovaler Stempel mit Aufdruck: A. Entsch Theater-Agentur und Bühnen-Manuscript Debit Berlin, N.W. Mittel-Strasse 25. ; Stempel \\"Theateragentur von A. Entsch, ... Heinrichs Nachfolger Berlin\\""]} 1 -2023-07-08 08:15:59.929035 2023-07-08 08:15:59.929046 9c903b22-1154-40d6-90d3-76acf22e4751 {"md5": "7cca1125bd27145bedf54fc3c846ce8b", "pid": "116736410", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/116736410", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116736410", "source": "GND"}], "variant_name": ["Heringa, Elizaśzoon, Jouke of Jodocus"], "date_of_birth": "1765", "date_of_death": "1840", "preferred_name": "Heringa, Elizaśzoon", "country_associated": "ne", "variant_access_point": ["Heringa, Elizaśzoon, Jouke of Jodocus, 1765-1840"], "authorized_access_point": "Heringa, Elizaśzoon, 1765-1840", "biographical_information": ["Professor"]} 1 -2023-07-08 08:15:57.777672 2023-07-08 10:30:14.05618 dff4bc10-c70d-4e38-93f4-7946f1459312 {"md5": "db6ed7a24cb64f11fcdf99e9c6e98360", "pid": "1164710923", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1164710923", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1164710923", "source": "GND"}], "preferred_name": "Gelbhaus, Tea", "country_associated": "sz", "authorized_access_point": "Gelbhaus, Tea"} 2 -2023-07-08 08:15:58.650456 2023-07-08 10:30:43.810543 3e5cd9d2-cb24-497e-86bc-f9479747f217 {"md5": "7a3a91c4b9abb3ceb6c4d4917b01adba", "pid": "1165583534", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1165583534", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1165583534", "source": "GND"}], "date_of_birth": "08.04.1923", "date_of_death": "10.08.2018", "preferred_name": "Ludwig, Hilde", "country_associated": "gw", "authorized_access_point": "Ludwig, Hilde, 1923-2018"} 2 -2023-07-08 08:15:58.771666 2023-07-08 08:15:58.771681 6941ff80-2ff1-4279-ab47-944ffb3082fd {"md5": "a6386a87f323bb801f6d473a02a03aed", "pid": "1165585391", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1165585391", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1165585391", "source": "GND"}], "variant_name": ["Konviktorium", "Konviktorium der Universität Helmstedt", "Fürstliches Convictorium", "Das königliche und herzogliche Convictorium", "Königliches und herzogliches Convictorium"], "preferred_name": "Academia Julia. Konviktorium", "date_of_termination": "1808", "variant_access_point": ["Konviktorium. Helmstedt", "Konviktorium der Universität Helmstedt", "Fürstliches Convictorium. Helmstedt", "Das königliche und herzogliche Convictorium. Helmstedt", "Königliches und herzogliches Convictorium. Helmstedt"], "date_of_establishment": "ca. 1584", "authorized_access_point": "Academia Julia. Konviktorium", "biographical_information": ["Universitäre Einrichtung zur Versorgung von Studenten des Herzogtums Braunschweig-Lüneburg (später nur der Fürstentums Wolfenbüttel und zugehörige Gebiete)"]} 1 -2023-07-08 08:15:58.878579 2023-07-08 08:15:58.878589 a0b49e4a-00fe-4092-b4fb-201e47c9c731 {"md5": "720b11174ceebcc889f066b4b50be921", "pid": "116582782", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/116582782", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116582782", "source": "GND"}], "date_of_birth": "02.02.1854", "date_of_death": "XX.XX.1922", "preferred_name": "Roe͏̈ll, Paul von", "country_associated": "gw", "authorized_access_point": "Roe͏̈ll, Paul von, 1854-1922", "biographical_information": ["Zunächst Offizier, 1883-86 Amtmann in Diez, dann Polizeirat in Ostpreußen, ab 1893 Landrat in Meseritz und 1894-1901 in Pleschen, später in Berlin journalistisch tätig. - Herausgeber der Zeitungen \\"Die deutsche, volkswirthschaftliche Correspondenz\\" und \\"Neue politische Correspondenz\\""]} 1 -2023-07-08 08:15:58.977665 2023-07-08 08:15:58.977675 c1848a7d-8e6c-45e8-af51-413cccdbecd9 {"md5": "df6cd197c4823db65ec2a71a24fd8e75", "pid": "116600233", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://d-nb.info/gnd/116600233", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116600233", "source": "GND"}], "variant_name": ["Kuh, Oskar", "Cuh, Oskar"], "date_of_birth": "1858", "date_of_death": "1930", "preferred_name": "Kuh, Oscar", "country_associated": "gw", "variant_access_point": ["Kuh, Oskar, 1858-1930", "Cuh, Oskar, 1858-1930"], "authorized_access_point": "Kuh, Oscar, 1858-1930", "biographical_information": ["Zeitungsbesitzer; Vorsitzender des Verbandes der deutschen Journalisten in Böhmen"]} 1 -2023-07-08 08:15:59.076876 2023-07-08 08:15:59.076885 d53430b8-598c-44fd-acf0-23f4f65b6f41 {"md5": "56f901d8fb67f55c252c2ddb61769697", "pid": "116601795", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/116601795", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116601795", "source": "GND"}], "preferred_name": "Fleischhacker, Ludowika", "country_associated": "gw", "authorized_access_point": "Fleischhacker, Ludowika"} 1 -2023-07-08 08:15:59.188961 2023-07-08 08:15:59.188972 b6491fca-ab18-4bed-8f30-0de863e76318 {"md5": "8cd42bf07afeb7f643fffec374f44938", "pid": "1166105709", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1166105709", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1166105709", "source": "GND"}], "preferred_name": "Stirrup", "country_associated": "xxu", "authorized_access_point": "Stirrup. Musikgruppe"} 1 -2023-07-08 08:15:59.289448 2023-07-08 08:15:59.289461 d7961f56-d95c-4cd6-8b79-4c8de5a940c3 {"md5": "26a2ceefaeacf3fff0bd104c02b1178d", "pid": "1166156494", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1166156494", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1166156494", "source": "GND"}], "date_of_birth": "1978", "preferred_name": "Göktas, Elvan", "country_associated": "sz", "authorized_access_point": "Göktas, Elvan, 1978-"} 1 -2023-07-08 08:15:59.390603 2023-07-08 08:15:59.390617 8fd6cae9-4fb3-43b1-8f34-04c3c94cf358 {"md5": "75673c67403d19583010083993c3709e", "pid": "116629673", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/116629673", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116629673", "source": "GND"}], "preferred_name": "Cohn, Lisa", "country_associated": "gw", "authorized_access_point": "Cohn, Lisa"} 1 -2023-07-08 08:15:59.48594 2023-07-08 08:15:59.485954 994c54d1-4d82-464c-8677-495ffcf7eaac {"md5": "85c6430b10344f1bf795a498cafbd1cf", "pid": "116679875", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/116679875", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116679875", "source": "GND"}], "variant_name": ["Mahlow, Georg"], "date_of_birth": "1857", "preferred_name": "Mahlow, Georg Heinrich", "country_associated": "gw", "variant_access_point": ["Mahlow, Georg, 1857-"], "authorized_access_point": "Mahlow, Georg Heinrich, 1857-"} 1 -2023-07-08 08:15:59.602786 2023-07-08 08:15:59.602798 3d025540-13ca-4220-9647-76388604a898 {"md5": "fa2cfa2e6c487420cc65bf1646dcb13c", "pid": "1166857204", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1166857204", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1166857204", "source": "GND"}], "date_of_birth": "1980", "preferred_name": "Darné, Txell", "country_associated": "sp", "authorized_access_point": "Darné, Txell, 1980-"} 1 -2023-07-08 08:15:59.698836 2023-07-08 08:15:59.698847 fc273e80-be3d-4dff-b86d-bf3d67418f16 {"md5": "69fec5559fc29427f5d1fdbe511ba941", "pid": "1166992330", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1166992330", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1166992330", "source": "GND"}], "preferred_name": "Durner, Tracey", "authorized_access_point": "Durner, Tracey"} 1 -2023-07-08 08:15:59.809534 2023-07-08 08:15:59.809548 665728e6-5a25-40fd-b5a5-24d724969123 {"md5": "ef0ef4a1b1f0ebd388db91b65141d406", "pid": "11671848X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/11671848X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/11671848X", "source": "GND"}], "date_of_birth": "1794", "date_of_death": "1865", "preferred_name": "Franque, Johann Benedikt", "country_associated": "gw", "authorized_access_point": "Franque, Johann Benedikt, 1794-1865"} 1 -2023-07-08 08:16:00.036849 2023-07-08 08:16:00.036862 dbba3ee3-1825-44be-92c3-2107d11a8e70 {"md5": "3136c342e76e020f5758aa50818a5f15", "pid": "116755776", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/116755776", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116755776", "source": "GND"}], "preferred_name": "Goldschmidt, Adele", "country_associated": "gw", "authorized_access_point": "Goldschmidt, Adele", "biographical_information": ["Gattin des Juristen Levin Goldschmidt"]} 1 -2023-07-08 08:16:00.142148 2023-07-08 08:16:00.14216 1133060c-04bb-4e4e-a8b9-e52de3228028 {"md5": "941c84af09a0c6718f02d2526111d29c", "pid": "1168165466", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1168165466", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1168165466", "source": "GND"}], "variant_name": ["Junior Ulu, Avataeao"], "preferred_name": "Ulu, Avataeao Junior", "variant_access_point": ["Junior Ulu, Avataeao"], "authorized_access_point": "Ulu, Avataeao Junior", "biographical_information": ["has worked in the wider Pacific region since 2002"]} 1 -2023-07-08 08:16:00.238241 2023-07-08 08:16:00.238304 d06af9e0-a76d-41ee-8b44-3b9f57f36d43 {"md5": "3c35f49dcfa7d398736c9e48f29802d4", "pid": "1168177111", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1168177111", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1168177111", "source": "GND"}], "variant_name": ["Huch, Frieda Stein-", "Huch, Frieda", "Stein, Frieda"], "date_of_birth": "28.02.1852", "date_of_death": "16.11.1952", "preferred_name": "Stein-Huch, Frieda", "country_associated": "gw", "variant_access_point": ["Huch, Frieda Stein-, 1876-1952", "Huch, Frieda, 1876-1952", "Stein, Frieda, 1876-1952"], "authorized_access_point": "Stein-Huch, Frieda, 1876-1952"} 1 -2023-07-08 08:16:00.466822 2023-07-08 08:16:00.466838 1ab203f3-8320-4b11-a231-56766203fc25 {"md5": "5f40515be32bfc055fb0e9958417c90c", "pid": "11683188X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/11683188X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/11683188X", "source": "GND"}], "variant_name": ["Phroelychius, Thomas"], "preferred_name": "Frolichius, Thomas", "country_associated": "gw", "variant_access_point": ["Phroelychius, Thomas"], "authorized_access_point": "Frolichius, Thomas"} 1 -2023-07-08 08:16:00.577163 2023-07-08 08:16:00.577177 c5978933-6d1b-45a9-9197-08ec07645509 {"md5": "1f0a9032c48259f9cd6dff7fcfc710e7", "pid": "116864366X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/116864366X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116864366X", "source": "GND"}], "preferred_name": "Finter, Nicoletta", "country_associated": "gw", "authorized_access_point": "Finter, Nicoletta", "biographical_information": ["Dissertation an der Universität zu Köln in 2018"]} 1 -2023-07-08 08:16:00.709293 2023-07-08 08:16:00.709309 81da7f5b-5f74-45cf-94d6-8722cf0a0a05 {"md5": "367499e1492814a2d2626e3e8666e714", "pid": "1168683211", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1168683211", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1168683211", "source": "GND"}], "variant_name": ["PTC, 12.", "12th Pipeline Technology Conference"], "preferred_name": "Pipeline Technology Conference, 12.", "country_associated": "gw", "variant_access_point": ["PTC. Veranstaltung, 12., 2017, Berlin", "12th Pipeline Technology Conference"], "authorized_access_point": "Pipeline Technology Conference, 12., 2017, Berlin"} 1 -2023-07-08 08:16:00.867772 2023-07-08 08:16:00.867779 81bfc8d2-9968-4377-a344-41bfd977d440 {"md5": "addacb825e9884345e4a3fbd6307b871", "pid": "116903953", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/116903953", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116903953", "source": "GND"}], "variant_name": ["Hirsch, Christophor. Frider.", "Hirsch, Christoph Friedrich"], "date_of_birth": "1778", "date_of_death": "1850", "preferred_name": "Hirsch, Christoph Friedrich von", "country_associated": "gw", "variant_access_point": ["Hirsch, Christophor. Frider., 1778-1850", "Hirsch, Christoph Friedrich, 1778-1850"], "authorized_access_point": "Hirsch, Christoph Friedrich von, 1778-1850"} 1 -2023-07-08 08:16:01.007236 2023-07-08 08:16:01.007248 c04143b4-5fd5-47e9-8517-04d19b5b6f74 {"md5": "916009758445d808dbb98ffe5cfffa87", "pid": "1169048099", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1169048099", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1169048099", "source": "GND"}], "variant_name": ["Labrador, Javier"], "date_of_birth": "ca. 20. Jh.", "preferred_name": "Deulofeu Labrador, Javier", "country_associated": "cu", "variant_access_point": ["Labrador, Javier, ca. 20. Jh."], "authorized_access_point": "Deulofeu Labrador, Javier, ca. 20. Jh."} 1 -2023-07-08 08:16:01.133151 2023-07-08 08:16:01.133162 d854bff4-7039-4d15-bfe4-18760cb09780 {"md5": "c480de7bd9c65a28353ad7ae147d71bc", "pid": "1169139434", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1169139434", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1169139434", "source": "GND"}], "date_of_birth": "1801", "date_of_death": "1864", "preferred_name": "Maresch, Ludwig", "country_associated": "gw", "authorized_access_point": "Maresch, Ludwig, 1801-1864", "biographical_information": ["preußischer Generalmajor"]} 1 -2023-07-08 08:16:01.278501 2023-07-08 08:16:01.278513 0adf70fb-1d3e-4bde-8af7-89f61eab16f3 {"md5": "e70787eea1ec76f5e1df26bd94d7df38", "pid": "1169226531", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1169226531", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1169226531", "source": "GND"}], "date_of_birth": "1953", "preferred_name": "Miguel, Jerónimo", "country_associated": "sp", "authorized_access_point": "Miguel, Jerónimo, 1953-"} 1 -2023-07-08 08:16:01.411065 2023-07-08 08:16:01.411077 3cae188c-db1a-4330-bf0c-68d2e9630d07 {"md5": "24dd621b1fb9b091b21f53ca9de2a69b", "pid": "116934565", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/116934565", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116934565", "source": "GND"}], "preferred_name": "Hofbauer, Rudolf", "country_associated": "gw", "authorized_access_point": "Hofbauer, Rudolf"} 1 -2023-07-08 08:16:01.541331 2023-07-08 08:16:01.541335 cee8677e-f8ec-43a3-86cf-8244424603e4 {"md5": "06dcb879eeaa0a37798a64c1a3011c1d", "pid": "116986700", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/116986700", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116986700", "source": "GND"}], "preferred_name": "Lidmann, Sara", "country_associated": "dk", "authorized_access_point": "Lidmann, Sara", "biographical_information": ["Missenträsk (Wirkungsort)"]} 1 -2023-07-08 08:16:01.635191 2023-07-08 08:16:01.635205 6e6e3c72-2e71-4792-8408-27712853c607 {"md5": "38971ccf8126b5f40b09333db78f5b6e", "pid": "1169969305", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1169969305", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1169969305", "source": "GND"}], "variant_name": ["Maheswari Viswanathan, Uma"], "date_of_birth": "13.08.1986", "preferred_name": "Viswanathan, Uma Maheswari", "country_associated": "ii", "variant_access_point": ["Maheswari Viswanathan, Uma, 1986-"], "authorized_access_point": "Viswanathan, Uma Maheswari, 1986-"} 1 -2023-07-08 08:16:01.744263 2023-07-08 08:16:01.744277 83e0a544-a219-47cb-9ba3-cadb81990058 {"md5": "d7e80e2472400cfb49e1c8f5017c1f63", "pid": "1170278353", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1170278353", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1170278353", "source": "GND"}], "preferred_name": "Clark, M.", "authorized_access_point": "Clark, M."} 1 -2023-07-08 08:16:01.860113 2023-07-08 08:16:01.860124 5a251ad7-3f56-410f-a887-90b4c586694c {"md5": "376905cd3dff313fe280c4a4b00cddd1", "pid": "1170426131", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1170426131", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1170426131", "source": "GND"}], "variant_name": ["Zheng Wenhui", "郑, 文辉"], "preferred_name": "Zheng, Wenhui", "country_associated": "cc", "variant_access_point": ["Zheng Wenhui", "郑, 文辉"], "parallel_access_point": ["郑文辉"], "authorized_access_point": "Zheng, Wenhui", "biographical_information": ["früher außerordentlicher Professor an der Zhongshan University"]} 1 -2023-07-08 08:16:01.974863 2023-07-08 08:16:01.974878 43f699cc-df39-4443-b815-d89043ad6891 {"md5": "405059d64ee41e3d3a687bea0c4a344a", "pid": "1170451594", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1170451594", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1170451594", "source": "GND"}], "date_of_birth": "1990", "preferred_name": "Kingston, Cheryl", "country_associated": "gw", "authorized_access_point": "Kingston, Cheryl, 1990-", "biographical_information": ["in Nordrhein-Westfalen geboren"]} 1 -2023-07-08 08:16:02.091809 2023-07-08 08:16:02.091821 9f3dfea5-4938-4aff-952c-48089328f564 {"md5": "24d592bef62ea2dd203bb12178c6318b", "pid": "117054437", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/117054437", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/117054437", "source": "GND"}], "preferred_name": "Hug, Nanette", "country_associated": "gw", "authorized_access_point": "Hug, Nanette"} 1 -2023-07-08 08:16:02.216636 2023-07-08 08:16:02.216652 3aa4c3c0-67b3-4f8f-9fc0-27b4c6ac1333 {"md5": "1d00f6a6650f6ed466d1d4e075a3caa2", "pid": "1170618367", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1170618367", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1170618367", "source": "GND"}], "date_of_birth": "1988", "preferred_name": "Meyer, Bettina", "country_associated": "sz", "authorized_access_point": "Meyer, Bettina, 1988-", "biographical_information": ["Diss. ETH Zürich 2017, Institut für Atmosphäre und Klima"]} 1 -2023-07-08 08:16:02.321118 2023-07-08 08:16:02.321132 8de3f77e-20f8-4213-91c3-47cd5a809d57 {"md5": "60fd5da4eb76d3bc90e2b3a797e4681a", "pid": "1170837611", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1170837611", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1170837611", "source": "GND"}], "preferred_name": "Bindel, Carina", "country_associated": "gw", "authorized_access_point": "Bindel, Carina", "biographical_information": ["Bachelorarbeit, Eberhard Karls Universität Tübingen, 2018"]} 1 -2023-07-08 08:16:02.428992 2023-07-08 08:16:02.429001 e0ce2318-456e-435f-96a0-21ff902a76bf {"md5": "565011ca7a95e3c2f6a9eec47c1fc501", "pid": "1171152183", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1171152183", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1171152183", "source": "GND"}], "preferred_name": "Krausz, Barbara", "country_associated": "hu", "authorized_access_point": "Krausz, Barbara", "biographical_information": ["Dissertation Universität Stuttgart 2018, Fakultät Konstruktions-, Produktions- und Fahrzeugtechnik"]} 1 -2023-07-08 08:16:02.660011 2023-07-08 08:16:02.660019 b5b0b3fa-fa71-4d6c-a171-9fe0f944f761 {"md5": "cf0d61d0322e3b85a0a5c38827834e73", "pid": "1171765010", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1171765010", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1171765010", "source": "GND"}], "preferred_name": "La religion au XXIe siècle", "country_associated": "fr", "authorized_access_point": "La religion au XXIe siècle. Veranstaltung, 2016, Marseille"} 1 -2023-07-08 08:16:02.792071 2023-07-08 08:16:02.792083 26ac50fd-5169-43b7-a250-034edef66029 {"md5": "9c4df3790eed16aa9c60dd98a45789c0", "pid": "1172001731", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1172001731", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1172001731", "source": "GND"}], "preferred_name": "Weppelmann, Stéphanie", "country_associated": "gw", "authorized_access_point": "Weppelmann, Stéphanie"} 1 -2023-07-08 08:16:02.911223 2023-07-08 08:16:02.911236 48b82c9f-d809-42b1-b20a-bb50a5d310e0 {"md5": "a3915da356b485aae1ed330928749de8", "pid": "1172048657", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1172048657", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1172048657", "source": "GND"}], "variant_name": ["ThIMEDOP", "Thüringer Innovationszentrum für Medzintechnik-Lösungen", "Thüringer Innovationszentrum für Medzintechnik", "Innovationszentrum Medzintechnik"], "preferred_name": "Thüringer Innovationszentrum für Medzintechnik-Lösungen (Diagnose, Therapie, Optimierung durch optische Lösungen)", "country_associated": "gw", "variant_access_point": ["ThIMEDOP. Abkuerzung", "Thüringer Innovationszentrum für Medzintechnik-Lösungen", "Thüringer Innovationszentrum für Medzintechnik", "Innovationszentrum Medzintechnik. Jena"], "date_of_establishment": "2018", "authorized_access_point": "Thüringer Innovationszentrum für Medzintechnik-Lösungen (Diagnose, Therapie, Optimierung durch optische Lösungen)", "biographical_information": ["Innovations- und Forschungszentrum des Universitätsklinikums Jena, der Technischen Universität Ilmenau und des Leibniz-Instituts für Photonische Technologien Jena"]} 1 -2023-07-08 08:16:03.03969 2023-07-08 08:16:03.039704 7dd816b5-51c1-4b3e-9270-55ff9e1b0dc9 {"md5": "cb8232b8dc8c97ce4f5e6ca2b0dbd789", "pid": "1172083541", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1172083541", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1172083541", "source": "GND"}], "variant_name": ["Boss, Daniela"], "preferred_name": "Boß, Daniela", "country_associated": "gw", "variant_access_point": ["Boss, Daniela"], "authorized_access_point": "Boß, Daniela", "biographical_information": ["Masterarbeit 2014 Universität Bayreuth. - Seit 06/2015 wissenschaftliche Mitarbeiterin in der Abteilung Stadt- und Regionalentwicklung am Geographischen Institut der Universität Bayreuth"]} 1 -2023-07-08 08:16:03.151433 2023-07-08 08:16:03.151442 6120fe26-25c2-4f28-a53a-d171fc860bfc {"md5": "63b931b883e73d3632ae021555ae66f1", "pid": "1172106339", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1172106339", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1172106339", "source": "GND"}], "variant_name": ["Templeton, Ian Campbell"], "date_of_birth": "1929", "preferred_name": "Templeton, Ian", "country_associated": "nz", "variant_access_point": ["Templeton, Ian Campbell, 1929-"], "authorized_access_point": "Templeton, Ian, 1929-"} 1 -2023-07-08 08:16:03.261201 2023-07-08 08:16:03.261209 f391cea1-aab5-41ea-b555-d01bac4e9a0d {"md5": "91428ab6db322b4e3c53a333e73e5e83", "pid": "117233218", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/117233218", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/117233218", "source": "GND"}], "preferred_name": "Sternberg, Natalie", "country_associated": "gw", "authorized_access_point": "Sternberg, Natalie", "biographical_information": ["Baronesse"]} 1 -2023-07-08 08:16:03.374563 2023-07-08 08:16:03.374572 10bf6893-4008-41de-ad4f-2eea21f15a0c {"md5": "9a3cb0fc8c39b69306cc0f1593e8da82", "pid": "1173330542", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1173330542", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1173330542", "source": "GND"}], "preferred_name": "Cileček, Filip", "authorized_access_point": "Cileček, Filip"} 1 -2023-07-08 08:16:03.472345 2023-07-08 08:16:03.472354 c1f0553f-d0b0-401e-a251-1f0b27ddf668 {"md5": "bebff49eba6faae37c5e88e0574b5c23", "pid": "117352896", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/117352896", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/117352896", "source": "GND"}], "preferred_name": "Stuart, Maria", "country_associated": "gw", "authorized_access_point": "Stuart, Maria"} 1 -2023-07-08 08:16:03.708867 2023-07-08 08:16:03.708879 ba4cb9fa-bd26-4414-a114-17bc50ac342d {"md5": "6559b33f78e28c8e35e8ff045f578748", "pid": "117480797", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/117480797", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/117480797", "source": "GND"}], "preferred_name": "Spangenberg, Friedrich", "country_associated": "gw", "authorized_access_point": "Spangenberg, Friedrich"} 1 -2023-07-08 08:16:03.829604 2023-07-08 08:16:03.829617 0bee5695-77c3-4beb-990a-18a3c18e70a9 {"md5": "977aa938234d66be3aba47104ff88da7", "pid": "1175119865", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1175119865", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1175119865", "source": "GND"}], "date_of_birth": "1790", "date_of_death": "1840", "preferred_name": "Agazzini, Michele", "country_associated": "it", "authorized_access_point": "Agazzini, Michele, 1790-1840"} 1 -2023-07-08 08:16:03.949851 2023-07-08 08:16:03.949854 3054582e-cf21-4b16-be9f-448c5fd0bba1 {"md5": "6c4f3810d58d274d2ed8903999af5d29", "pid": "117520705", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/117520705", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/117520705", "source": "GND"}], "variant_name": ["Herrmann, I.", "Germann, I.", "Herrmann, J."], "date_of_birth": "29.07.1870", "date_of_death": "22.05.1945", "preferred_name": "Herrmann, Immanuel", "country_associated": "gw", "variant_access_point": ["Herrmann, I., 1870-1945", "Germann, I., 1870-1945", "Herrmann, J., 1870-1945"], "authorized_access_point": "Herrmann, Immanuel, 1870-1945", "biographical_information": ["Württembergischer Kriegsminister", "Elektrotechniker"]} 1 -2023-07-08 08:16:04.079636 2023-07-08 08:16:04.079643 bb1dd234-e868-4529-98e6-0fa0d22cfd42 {"md5": "ed49a23d8a8dc3f50d2046f8e65e30fc", "pid": "1175431435", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1175431435", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1175431435", "source": "GND"}], "variant_name": ["Vito, Antonio de"], "preferred_name": "De Vito, Antonio", "country_associated": "gw", "variant_access_point": ["Vito, Antonio de"], "authorized_access_point": "De Vito, Antonio"} 1 -2023-07-08 08:16:04.210304 2023-07-08 08:16:04.210315 fd63378a-09ce-450b-a59a-d335a4c41492 {"md5": "dcc2855ef59d60578219344c1e24dd30", "pid": "117546720", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/117546720", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/117546720", "source": "GND"}], "date_of_birth": "1801", "date_of_death": "1869", "preferred_name": "Hussian, Raphael Ferdinand", "country_associated": "au", "authorized_access_point": "Hussian, Raphael Ferdinand, 1801-1869"} 1 -2023-07-08 08:16:04.331651 2023-07-08 08:16:04.331661 38c04f81-3a14-4d23-ad79-1d8117c94c7b {"md5": "f9d1b645fae41f77ee0cef680047c9ea", "pid": "1175643521", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1175643521", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1175643521", "source": "GND"}], "variant_name": ["Bibliotheek van het Zeeuwsch Genootschap der Wetenschappen"], "preferred_name": "Koninklijk Zeeuwsch Genootschap der Wetenschappen. Bibliotheek", "country_associated": "ne", "variant_access_point": ["Bibliotheek van het Zeeuwsch Genootschap der Wetenschappen"], "authorized_access_point": "Koninklijk Zeeuwsch Genootschap der Wetenschappen. Bibliotheek"} 1 -2023-07-08 08:16:04.443533 2023-07-08 08:16:04.443537 d5d1b50d-81d2-4cab-b90d-1b5ae4da8f53 {"md5": "68761cf294da564c4e0e4f73ebcb1521", "pid": "1175653861", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1175653861", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1175653861", "source": "GND"}], "date_of_birth": "1947", "preferred_name": "Klar, Willi", "country_associated": "gw", "authorized_access_point": "Klar, Willi, 1947-", "biographical_information": ["Gründung einer Reiseagentur"]} 1 -2023-07-08 08:16:04.565032 2023-07-08 08:16:04.565043 fd4060c0-f352-4aa2-b086-655dddcac2a7 {"md5": "55c0965b4a4323f4f02a227dca1d4552", "pid": "1176124900", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1176124900", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1176124900", "source": "GND"}], "preferred_name": "Slovenský národný korpus", "country_associated": "xo", "authorized_access_point": "Slovenský národný korpus. Projekt"} 1 -2023-07-08 08:16:04.665257 2023-07-08 08:16:04.665268 6417e02c-7deb-4501-9c1e-ea1498342457 {"md5": "868c5eef846de96a054d215d3016afe7", "pid": "1176442988", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1176442988", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1176442988", "source": "GND"}], "variant_name": ["Hammad, A."], "preferred_name": "Hammad, Ahmed", "variant_access_point": ["Hammad, A."], "authorized_access_point": "Hammad, Ahmed"} 1 -2023-07-08 08:16:04.772551 2023-07-08 08:16:04.772563 d445b7a0-a667-42dd-ac84-806ca3d2144c {"md5": "70d8ec51293a48cf04f56ebbc80780e3", "pid": "117655570", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/117655570", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/117655570", "source": "GND"}], "date_of_birth": "1779", "date_of_death": "1818", "preferred_name": "Ségur, Octave Henri Gabriel de", "country_associated": "fr", "authorized_access_point": "Ségur, Octave Henri Gabriel de, 1779-1818", "biographical_information": ["Comte"]} 1 -2023-07-08 08:16:05.021885 2023-07-08 08:16:05.0219 9bd76082-011e-4ef0-9065-cf43a52cbc16 {"md5": "72dd5db4472f64f3683d9177775909e0", "pid": "117701408", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/117701408", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/117701408", "source": "GND"}], "preferred_name": "Engelhard, Hermann", "country_associated": "gw", "authorized_access_point": "Engelhard, Hermann", "biographical_information": ["Verwandter von M. Fürbringer"]} 1 -2023-07-08 08:16:05.147204 2023-07-08 08:16:05.147214 aae9147a-9c7f-4ed2-a4e1-c8c7184237ca {"md5": "6a7a0f4c8c233da25060e6583dfe8d82", "pid": "1177093979", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1177093979", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1177093979", "source": "GND"}], "date_of_birth": "1976", "preferred_name": "Zenger, Roland", "country_associated": "sz", "authorized_access_point": "Zenger, Roland, 1976-", "biographical_information": ["Berner Grafiker"]} 1 -2023-07-08 08:16:05.40564 2023-07-08 08:16:05.405653 fb0b351b-1d31-4245-8e8e-d50d02599cfe {"md5": "ff38273e843048be2862a94daf5de025", "pid": "1177904713", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1177904713", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1177904713", "source": "GND"}], "preferred_name": "Balmes, Hans-Otto", "country_associated": "gw", "authorized_access_point": "Balmes, Hans-Otto", "biographical_information": ["Polizeipräsident (Polizeipräsidium Ludwigshafen)"]} 1 -2023-07-08 08:16:05.256878 2023-07-08 10:28:50.699953 a0cd6c0a-816c-46e2-b1f8-ea3272946c22 {"md5": "0ad0b60df7389991e15d25bd0d6736e1", "pid": "117725293", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/117725293", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/117725293", "source": "GND"}], "date_of_birth": "1917", "date_of_death": "1996", "preferred_name": "Shanks, Daniel", "country_associated": "xxu", "authorized_access_point": "Shanks, Daniel, 1917-1996", "biographical_information": ["Amerikan. Mathematiker; Professor"]} 2 -2023-07-08 08:16:05.515369 2023-07-08 08:16:05.515381 2d9eff80-c977-4e93-a78c-4dbe7257be90 {"md5": "92708cae843efe34b7b067ad955b7768", "pid": "1178023370", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1178023370", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1178023370", "source": "GND"}], "preferred_name": "Raffaello, Anna", "country_associated": "it", "authorized_access_point": "Raffaello, Anna"} 1 -2023-07-08 08:16:05.645839 2023-07-08 08:16:05.645853 9795a501-ccdf-4e2f-941a-0f1aaf19261a {"md5": "9f0f0be057dbc90fb9f1f70a0603b2fa", "pid": "1178350002", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1178350002", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1178350002", "source": "GND"}], "preferred_name": "Aboubacar, Ouédraogo", "country_associated": "uv", "authorized_access_point": "Aboubacar, Ouédraogo"} 1 -2023-07-08 08:16:05.761889 2023-07-08 08:16:05.761902 5440630f-7f7a-44ff-9d3f-6711cbfc681e {"md5": "d6ad2039c269d384e119a696b5deca7f", "pid": "1178484009", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1178484009", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1178484009", "source": "GND"}], "variant_name": ["Einspritzung und Kraftstoffe, 11.", "Injection and Fuels, 11.", "11. Fachtagung \\"Einspritzung und Kraftstoffe\\""], "preferred_name": "Tagung Einspritzung und Kraftstoffe, 11.", "country_associated": "gw", "variant_access_point": ["Einspritzung und Kraftstoffe. Veranstaltung, 11., 2018, Berlin", "Injection and Fuels. Veranstaltung, 11., 2018, Berlin", "11. Fachtagung \\"Einspritzung und Kraftstoffe\\""], "authorized_access_point": "Tagung Einspritzung und Kraftstoffe, 11., 2018, Berlin"} 1 -2023-07-08 08:16:05.887311 2023-07-08 08:16:05.887322 8f48b727-3edb-4950-ad57-0b8053eeda15 {"md5": "2b49d40c2fa5164579ba05ef0f67ad2b", "pid": "1178833925", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1178833925", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1178833925", "source": "GND"}], "variant_name": ["Chang Chu Kuing", "Chang, Chu-Kuing", "Kuing, Chang Chu"], "preferred_name": "Chang, Chu Kuing", "country_associated": "cc", "variant_access_point": ["Chang Chu Kuing", "Chang, Chu-Kuing", "Kuing, Chang Chu"], "authorized_access_point": "Chang, Chu Kuing"} 1 -2023-07-08 08:16:06.020002 2023-07-08 08:16:06.020022 3370ff4f-0f42-4e0a-b3c1-3e47cf3e2dbf {"md5": "3fca4f393f48ad5a1b14bab2792acc56", "pid": "1179197992", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1179197992", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1179197992", "source": "GND"}], "variant_name": ["Gorskij, N. N. Beljakov-", "Beljakov-Gorskij, N.", "Горский, Н. Н. Беляков-"], "preferred_name": "Beljakov-Gorskij, N. N.", "country_associated": "ru", "variant_access_point": ["Gorskij, N. N. Beljakov-", "Beljakov-Gorskij, N.", "Горский, Н. Н. Беляков-"], "parallel_access_point": ["Беляков-Горский, Н. Н."], "authorized_access_point": "Beljakov-Gorskij, N. N."} 1 -2023-07-08 08:16:06.145379 2023-07-08 08:16:06.145391 38009a68-7666-410c-b0c9-aec60328cd87 {"md5": "001c7ad222d8de37a612585a05131f78", "pid": "1179207440", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1179207440", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1179207440", "source": "GND"}], "variant_name": ["Newman, Jacob", "Newman, Yacov"], "date_of_birth": "1914", "preferred_name": "Newman, J.", "country_associated": "sa", "variant_access_point": ["Newman, Jacob, 1914-", "Newman, Yacov, 1914-"], "authorized_access_point": "Newman, J., 1914-"} 1 -2023-07-08 08:16:06.249837 2023-07-08 08:16:06.249854 c5755a73-b509-4eeb-8d26-be9f757d3274 {"md5": "6bf046c2b7045ed296b0f677e143b15b", "pid": "117971041X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/117971041X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/117971041X", "source": "GND"}], "date_of_birth": "1699", "date_of_death": "1758", "preferred_name": "Pinckney, Charles Cotesworth", "country_associated": "xxk", "authorized_access_point": "Pinckney, Charles Cotesworth, 1699-1758", "biographical_information": ["Richter in south Carolina"]} 1 -2023-07-08 08:16:06.377959 2023-07-08 08:16:06.377969 e8dc5465-6f63-4e09-a850-8db8bc5ad06d {"md5": "32deb04d5a665d11dcbfcff1b8ef94ae", "pid": "1179785266", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1179785266", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1179785266", "source": "GND"}], "date_of_birth": "09.03.1776", "date_of_death": "01.08.1866", "preferred_name": "Whitman, Ezekiel", "country_associated": "xxu", "authorized_access_point": "Whitman, Ezekiel, 1776-1866", "biographical_information": ["Zwischen 1809 und 1821 merfach Vertreter im US-Repräsentantenhaus für Maine. 1821-1822 Vertreter im US-Repräsentantenhaus für Maine."]} 1 -2023-07-08 08:16:06.488072 2023-07-08 08:16:06.488079 8c3d0e44-a071-4daa-98ce-5be2b7d45382 {"md5": "970d0d5ffcbd1008294ff8d86672389a", "pid": "1180539567", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1180539567", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1180539567", "source": "GND"}], "date_of_birth": "ca. 19. Jh.", "preferred_name": "Débouche, J.", "country_associated": "fr", "authorized_access_point": "Débouche, J., ca. 19. Jh."} 1 -2023-07-08 08:16:06.58648 2023-07-08 08:16:06.586498 6005170f-bcbf-49f3-a4f8-27727d67387f {"md5": "76231b116242ea6e71f393cf5b31476e", "pid": "118068544X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/118068544X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/118068544X", "source": "GND"}], "date_of_birth": "ca. 20./21. Jh.", "preferred_name": "Burzel, Jürgen Achim", "country_associated": "gw", "authorized_access_point": "Burzel, Jürgen Achim, ca. 20./21. Jh.", "biographical_information": ["Briefpartner von Medirslav Blgnik"]} 1 -2023-07-08 08:16:06.681868 2023-07-08 08:16:06.681878 28a0990d-bc02-4ff4-ac9f-e83d5795050d {"md5": "3dd7c2ce3b0f4ec408e9a697ebc770ac", "pid": "118108093", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://d-nb.info/gnd/118108093", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/118108093", "source": "GND"}], "date_of_birth": "1943", "preferred_name": "Ohler, Wolfgang", "country_associated": "gw", "authorized_access_point": "Ohler, Wolfgang, 1943-"} 1 -2023-07-08 08:16:06.789326 2023-07-08 08:16:06.789336 07655744-b398-4af3-b096-55f256979517 {"md5": "213a9ca4ff674211d0395daece60bf0d", "pid": "1181153034", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1181153034", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1181153034", "source": "GND"}], "preferred_name": "Roche, Catherine", "country_associated": "fr", "authorized_access_point": "Roche, Catherine"} 1 -2023-07-08 08:16:06.901097 2023-07-08 08:16:06.901108 94e73c99-3e27-4f7f-9864-e9e8133bfdf4 {"md5": "d5b0f6dedd44a7e9133a70282b97d039", "pid": "1182338917", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1182338917", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1182338917", "source": "GND"}], "date_of_birth": "1990", "preferred_name": "Mirgorod, Philip", "country_associated": "gw", "authorized_access_point": "Mirgorod, Philip, 1990-", "biographical_information": ["Dissertation Westfälische Wilhelms-Universität Münster 2019"]} 1 -2023-07-08 08:16:07.008769 2023-07-08 08:16:07.008781 39f6c09b-d705-4637-b4cb-359154eba8fa {"md5": "864c24599d690ce116a277fd132aaf32", "pid": "118247957X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/118247957X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/118247957X", "source": "GND"}], "date_of_birth": "1944", "preferred_name": "Lienert, Markus", "country_associated": "sz", "authorized_access_point": "Lienert, Markus, 1944-"} 1 -2023-07-08 08:16:07.280111 2023-07-08 08:16:07.280122 3077372d-65a3-4b6d-bc3a-7815788e89ab {"md5": "b7eb78e9013cc1891d213421e5afa1da", "pid": "1183836740", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1183836740", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1183836740", "source": "GND"}], "variant_name": ["Mpampēs o Epikureios"], "date_of_birth": "1955", "preferred_name": "Patzoglu, Mpampēs", "country_associated": "gr", "variant_access_point": ["Mpampēs o Epikureios, 1955-"], "parallel_access_point": ["Πατζόγλου, Μπάμπης, 1955-"], "authorized_access_point": "Patzoglu, Mpampēs, 1955-"} 1 -2023-07-08 08:16:07.393024 2023-07-08 08:16:07.393037 b64799f8-4072-4a2b-a05e-4a7e1ecbea5c {"md5": "66dcdb07ba668aad70ba3d1f27b37699", "pid": "1184599297", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1184599297", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1184599297", "source": "GND"}], "variant_name": ["Chu, Xin Cheng", "Cheng Chu Xin"], "preferred_name": "Cheng, Chu Xin", "country_associated": "xxu", "variant_access_point": ["Chu, Xin Cheng", "Cheng Chu Xin"], "authorized_access_point": "Cheng, Chu Xin", "biographical_information": ["Cate School, Carpinteria, California, USA"]} 1 -2023-07-08 08:16:07.501418 2023-07-08 08:16:07.501428 66564ab2-0701-4d1b-a08c-48b54ecff0cc {"md5": "c052af8abd2ce39cbb866d3af1e244e5", "pid": "1185183302", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1185183302", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1185183302", "source": "GND"}], "preferred_name": "Gorczyńska, Maria", "country_associated": "pl", "authorized_access_point": "Gorczyńska, Maria"} 1 -2023-07-08 08:16:07.617003 2023-07-08 08:16:07.617016 938f95cc-b08b-430a-a0a0-ae4013294bcb {"md5": "00d076a5630021c55a8e57b65828715f", "pid": "1185191275", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1185191275", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1185191275", "source": "GND"}], "date_of_birth": "1940", "preferred_name": "Benfenati, Bruno", "country_associated": "it", "authorized_access_point": "Benfenati, Bruno, 1940-"} 1 -2023-07-08 08:16:07.728726 2023-07-08 08:16:07.728742 f57ff0f8-a749-48a2-b99f-4a43d5984cbc {"md5": "3b140936c240cf6606ed79ef3d49dc5c", "pid": "118531867", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/118531867", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/118531867", "source": "GND"}], "variant_name": ["Johannes, Falkenberg", "Jean, Falkenberg", "Johannes, de Falkaberge", "Johannes, de Falckenberch", "Johannes, de Falckenberg", "Johannes, Falkenberg Pomeranus", "Johannes, Pomeranus", "Jan, Falkenberg", "Joannes, a Falchenberga", "Iohannes, Falkenberg Pomeranus", "Falkenberg, Jan"], "date_of_birth": "1364", "date_of_death": "1429", "preferred_name": "Falkenberg, Johannes", "country_associated": "gw", "variant_access_point": ["Johannes, Falkenberg, 1364-1429", "Jean, Falkenberg, 1364-1429", "Johannes, de Falkaberge, 1364-1429", "Johannes, de Falckenberch, 1364-1429", "Johannes, de Falckenberg, 1364-1429", "Johannes, Falkenberg Pomeranus, 1364-1429", "Johannes, Pomeranus, 1364-1429", "Jan, Falkenberg, 1364-1429", "Joannes, a Falchenberga, 1364-1429", "Iohannes, Falkenberg Pomeranus, 1364-1429", "Falkenberg, Jan, 1364-1429"], "authorized_access_point": "Falkenberg, Johannes, 1364-1429", "biographical_information": ["OP; De mundi monarchia; Satira; Liber de doctrina potestatis pape et imperatoris; Tractatus in renuntiatione papae", "Theologe; Dominikaner u.a. in Prag, Krakau, Thorn und Magdeburg"]} 1 -2023-07-08 08:16:07.838088 2023-07-08 08:16:07.838102 2e39b436-7c3d-46d5-bed6-dc544c2cea1b {"md5": "71def28669bd2c15b3b7c7764edac896", "pid": "118544291X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/118544291X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/118544291X", "source": "GND"}], "variant_name": ["Convento de San Francisco"], "preferred_name": "Kloster San Francisco Vitoria-Gasteiz", "country_associated": "sp", "date_of_termination": "1930", "variant_access_point": ["Convento de San Francisco. Vitoria-Gasteiz"], "date_of_establishment": "1214", "authorized_access_point": "Kloster San Francisco Vitoria-Gasteiz", "biographical_information": ["1214 gegründetes Franziskanerkloster, 1930 abgerissen, einige Ruinenreste der Magdalenen-Kapelle im ehemaligen Innenhof erhalten"]} 1 -2023-07-08 08:16:09.040733 2023-07-08 08:16:09.040745 38c69509-7855-42f5-ba47-cfceb6d59984 {"md5": "19488709f4cd6e7d75a21e4bbdfbe51a", "pid": "1187670472", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1187670472", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1187670472", "source": "GND"}], "date_of_birth": "26.01.1975", "preferred_name": "Stentzel, Ulrike", "country_associated": "gw", "authorized_access_point": "Stentzel, Ulrike, 1975-"} 1 -2023-07-08 08:16:07.942793 2023-07-08 08:16:07.942802 2449d189-0fee-4d7a-a0b6-4d71807d3403 {"md5": "ac6a0572788143e55a44161e53ea361b", "pid": "1185450025", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1185450025", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1185450025", "source": "GND"}], "preferred_name": "Selle, Franziska Annette", "country_associated": "gw", "authorized_access_point": "Selle, Franziska Annette", "biographical_information": ["Promotion 2019 der medizinischen Fakultät der Friedrich-Alexander-Universität Erlangen-Nürnberg"]} 1 -2023-07-08 08:16:08.078056 2023-07-08 08:16:08.078067 d058932e-24a5-4d41-bcee-cc48ac6ed08b {"md5": "34e8a94b08421e5c610e7720839a4b34", "pid": "118553615", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/118553615", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/118553615", "source": "GND"}], "variant_name": ["Horkhaimeri, Mak̕s", "Horkheimer, M.", "Ma ke si Huo ke hai mo", "Makesi-Huokehaimo", "Hôrqheimer, M.", "Chorkchajmer, Maks", "Hūrkhāymir, Māks", "Chorkchai͏̈mer, Max", "Horkhajmer, Maks", "Huokehaimo, Makesi", "Horkheimers, Makss", "Regius, Heinrich", "马克斯・霍克海默", "霍克海默, 马克斯", "הורקהיימר, מקס", "ホルクハイマー・マックス"], "date_of_birth": "14.02.1895", "date_of_death": "07.07.1973", "preferred_name": "Horkheimer, Max", "country_associated": "gw", "variant_access_point": ["Horkhaimeri, Mak̕s, 1895-1973", "Horkheimer, M., 1895-1973", "Ma ke si Huo ke hai mo, 1895-1973", "Makesi-Huokehaimo, 1895-1973", "Hôrqheimer, M., 1895-1973", "Chorkchajmer, Maks, 1895-1973", "Hūrkhāymir, Māks, 1895-1973", "Chorkchai͏̈mer, Max, 1895-1973", "Horkhajmer, Maks, 1895-1973", "Huokehaimo, Makesi, 1895-1973", "Horkheimers, Makss, 1895-1973", "Regius, Heinrich, 1895-1973", "马克斯・霍克海默, 1895-1973", "霍克海默, 马克斯, 1895-1973", "הורקהיימר, מקס, 1895-1973", "ホルクハイマー・マックス, 1895-1973"], "parallel_access_point": ["Horkheimer, Max, 1895-1973", "ホルクハイマー, マックス, 1895-1973"], "authorized_access_point": "Horkheimer, Max, 1895-1973", "biographical_information": ["Remigration nach Deutschland (Bundesrepublik Deutschland)"]} 1 -2023-07-08 08:16:08.207396 2023-07-08 08:16:08.207411 9ea546f2-4f6e-4b2e-acb6-a2b57b0a1cb5 {"md5": "e26b30f229cda736d2aafac41e8e888b", "pid": "118561693", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/118561693", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/118561693", "source": "GND"}], "date_of_birth": "1918", "date_of_death": "2002", "preferred_name": "Kessler, Herbert", "country_associated": "gw", "authorized_access_point": "Kessler, Herbert, 1918-2002", "biographical_information": ["Dt. Jurist und Philosoph; Promotion Universität München; Begründer der Humboldt-Gesellschaft und der Sokratischen Gesellschaft; Verfasser von Romanen, Lyrik und etlichen philosophischen Arbeiten z.B. zur Wertephilosophie, Esoterik, Symbolik", "Philosoph"]} 1 -2023-07-08 08:16:08.32427 2023-07-08 08:16:08.324279 50083ed8-aa4e-4e0e-877d-0f70db5b7a5e {"md5": "4987a65f4b99e4824041336482d490ad", "pid": "1186072571", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1186072571", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1186072571", "source": "GND"}], "preferred_name": "Babel, Isarn", "country_associated": "gw", "authorized_access_point": "Babel, Isarn"} 1 -2023-07-08 08:16:08.442398 2023-07-08 08:16:08.442404 28bb3ac6-0d9f-4587-8561-9180766c0ce0 {"md5": "568c5ab158987f25c4fc5b278f81753d", "pid": "118684264", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/118684264", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/118684264", "source": "GND"}], "variant_name": ["Foster, John"], "date_of_birth": "1740", "date_of_death": "1828", "preferred_name": "Oriel, John Foster", "country_associated": "ie", "variant_access_point": ["Foster, John, 1740-1828"], "authorized_access_point": "Oriel, John Foster, 1740-1828", "biographical_information": ["Irischer Politiker"]} 1 -2023-07-08 08:16:08.538903 2023-07-08 08:16:08.538911 fc3452f9-e3c8-4230-8cb1-43b953f510e3 {"md5": "28cb163b11d0bf1d01b21b5f613fb485", "pid": "1187151726", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1187151726", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1187151726", "source": "GND"}], "preferred_name": "Marling, Tino Martin", "country_associated": "gw", "authorized_access_point": "Marling, Tino Martin", "biographical_information": ["Dipl. Ing., war nach seinem Maschinenbaustudium an der Universität Kaiserslautern mehr als 30 Jahre im Maschinen und Anlagenbau der Energiebranche bei namhaften Herstellern als Versuchsingenieur Projektingenieur Verkaufsleiter und Produkt Manager tätig"]} 1 -2023-07-08 08:16:08.678713 2023-07-08 08:16:08.678719 24f79288-8f8c-4742-b897-998625bc6d58 {"md5": "29bf59cae3bb60ee27cdb47bda467abb", "pid": "118716328", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/118716328", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/118716328", "source": "GND"}], "variant_name": ["Pavón, Francisco García", "García-Pavón, Francisco", "García-Pavó, Francisco"], "date_of_birth": "1919", "date_of_death": "1989", "preferred_name": "García Pavón, Francisco", "country_associated": "sp", "variant_access_point": ["Pavón, Francisco García, 1919-1989", "García-Pavón, Francisco, 1919-1989", "García-Pavó, Francisco, 1919-1989"], "authorized_access_point": "García Pavón, Francisco, 1919-1989"} 1 -2023-07-08 08:16:08.942879 2023-07-08 08:16:08.94289 f36dc50b-c4a2-4f17-9520-282f278426d4 {"md5": "cbc225e7e4b67a89a72348b6d4bcef78", "pid": "1187537691", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1187537691", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1187537691", "source": "GND"}], "preferred_name": "agentur Literatur Gudrun Hebel", "country_associated": "gw", "date_of_establishment": "1998", "authorized_access_point": "agentur Literatur Gudrun Hebel"} 1 -2023-07-08 08:16:09.138026 2023-07-08 08:16:09.138037 dac32cff-169e-45da-85fc-260da9b13fd0 {"md5": "38953e75787166ec8b169cdfb84441a5", "pid": "1187679194", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1187679194", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1187679194", "source": "GND"}], "variant_name": ["Sagami Yoshikazu", "佐上善和"], "date_of_birth": "1946", "preferred_name": "Sagami, Yoshikazu", "country_associated": "ja", "variant_access_point": ["Sagami Yoshikazu, 1946-", "佐上善和, 1946-"], "parallel_access_point": ["佐上, 善和, 1946-"], "authorized_access_point": "Sagami, Yoshikazu, 1946-"} 1 -2023-07-08 08:16:09.239223 2023-07-08 08:16:09.239234 63d059fd-6f8e-440d-b048-f8104f0396b7 {"md5": "5d3fe228e92ffc07b92b6bc1775547cb", "pid": "1187985945", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1187985945", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1187985945", "source": "GND"}], "variant_name": ["Nihon Hidankyō", "Nihon-Hidankyō", "Japan Confederation of A- and H-Bomb Sufferers Organizations", "Japanische Föderation der Atombombenopfer-Gesellschaften", "日本被団協", "ニホン ゲンスイバク ヒガイシャ ダンタイ キョウギカイ"], "preferred_name": "Nihon Gensuibaku Higaisha Dantai Kyōgikai", "country_associated": "ja", "variant_access_point": ["Nihon Hidankyō", "Nihon-Hidankyō", "Japan Confederation of A- and H-Bomb Sufferers Organizations", "Japanische Föderation der Atombombenopfer-Gesellschaften", "日本被団協", "ニホン ゲンスイバク ヒガイシャ ダンタイ キョウギカイ"], "date_of_establishment": "1956", "parallel_access_point": ["日本原水爆被害者団体協議会"], "authorized_access_point": "Nihon Gensuibaku Higaisha Dantai Kyōgikai"} 1 -2023-07-08 08:16:09.444458 2023-07-08 08:16:09.444468 cc93dd6d-cbd4-4f13-a8e9-ec044582942d {"md5": "5ca32740623ff335625631e58a4f99ed", "pid": "118842218", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/118842218", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/118842218", "source": "GND"}], "date_of_birth": "1899", "date_of_death": "1952", "preferred_name": "Sieler, Maria", "country_associated": "au", "authorized_access_point": "Sieler, Maria, 1899-1952", "biographical_information": ["\\"Mystikerin\\" aus d. Steiermark m. Privatoffenbarungen"]} 1 -2023-07-08 08:16:09.551535 2023-07-08 08:16:09.551546 c23fe28f-5afa-4449-b9ea-d38994c08e6c {"md5": "ebb6f8fed7955a6c793b98657263d258", "pid": "1188483552", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1188483552", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1188483552", "source": "GND"}], "variant_name": ["Maier, Horand I."], "date_of_birth": "1973", "preferred_name": "Maier, Horand Ingo", "country_associated": "au", "variant_access_point": ["Maier, Horand I., 1973-"], "authorized_access_point": "Maier, Horand Ingo, 1973-"} 1 -2023-07-08 08:16:09.671498 2023-07-08 08:16:09.671512 7c502edd-71e2-4d18-9b24-2ff5bdbfe840 {"md5": "95aac4420f965db412f9544f21e5bda1", "pid": "1188583360", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1188583360", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1188583360", "source": "GND"}], "variant_name": ["Chodkiewicz, Kazimierz Stanisław"], "date_of_birth": "17.10.1892", "date_of_death": "16.05.1980", "preferred_name": "Chodkiewicz, Kazimierz", "country_associated": "pl", "variant_access_point": ["Chodkiewicz, Kazimierz Stanisław, 1892-1980"], "authorized_access_point": "Chodkiewicz, Kazimierz, 1892-1980", "biographical_information": ["Aktivist Britische Theosophische Gesellschaft; Oberst, Kriegsteilnehmer Lwów 1939", "Studium der klassischen Sprachen, Philosophie und Pädagogik an Franziskanischer Universität Lemberg"]} 1 -2023-07-08 08:16:09.930822 2023-07-08 08:16:09.930836 04c25657-a644-4b0d-af95-199d6580890f {"md5": "d611fe62d40fa79f80e3515b85ea6a18", "pid": "118873768", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/118873768", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/118873768", "source": "GND"}], "variant_name": ["Meisenheimer, W."], "date_of_birth": "25.02.1933", "preferred_name": "Meisenheimer, Wolfgang", "country_associated": "gw", "variant_access_point": ["Meisenheimer, W., 1933-"], "authorized_access_point": "Meisenheimer, Wolfgang, 1933-", "biographical_information": ["Dissertation, Technische Hochschule Aachen, 1964"]} 1 -2023-07-08 08:16:10.052346 2023-07-08 08:16:10.05236 33a45b86-ed74-4268-85e6-e8dc27fff111 {"md5": "dcbed3e2f3d4501b3f9a0a005f520b80", "pid": "1188747894", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1188747894", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1188747894", "source": "GND"}], "date_of_birth": "1903", "date_of_death": "1975", "preferred_name": "Talamona, Carlo", "country_associated": "it", "authorized_access_point": "Talamona, Carlo, 1903-1975"} 1 -2023-07-08 08:16:09.809119 2023-07-08 10:27:10.735071 f92a1020-d296-4fb6-b833-1a20a2e98580 {"md5": "42fd98689c7af679c5c35b4400651fa3", "pid": "118865900", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/118865900", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/118865900", "source": "GND"}], "variant_name": ["Levy, Hermann", "Levi, H."], "date_of_birth": "07.11.1839", "date_of_death": "13.05.1900", "preferred_name": "Levi, Hermann", "country_associated": "gw", "variant_access_point": ["Levy, Hermann, 1839-1900", "Levi, H., 1839-1900"], "authorized_access_point": "Levi, Hermann, 1839-1900"} 2 -2023-07-08 08:16:10.177884 2023-07-08 08:16:10.177895 a06ffccf-0766-432f-a19e-3cab3f40c107 {"md5": "dad46facbc9f583a43673b4d2d5acfce", "pid": "118908642", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/118908642", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/118908642", "source": "GND"}], "preferred_name": "Palacio, Carlos", "authorized_access_point": "Palacio, Carlos", "biographical_information": ["20.Jh."]} 1 -2023-07-08 08:16:10.313054 2023-07-08 08:16:10.31306 5546b0d9-84b1-422f-a2de-b44623d03784 {"md5": "a2b022a7a5c79bc54951490d48b919b3", "pid": "1189098970", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1189098970", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1189098970", "source": "GND"}], "variant_name": ["Fujisawa, Chiemi Nishimiya-"], "preferred_name": "Nishimiya-Fujisawa, Chiemi", "variant_access_point": ["Fujisawa, Chiemi Nishimiya-"], "authorized_access_point": "Nishimiya-Fujisawa, Chiemi"} 1 -2023-07-08 08:16:10.433479 2023-07-08 08:16:10.43349 d6e08adb-6e24-4382-a7e2-561affffdf3e {"md5": "b19dfd127cfddf41ff46f04f0a2c8c8f", "pid": "118914634", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/118914634", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/118914634", "source": "GND"}], "variant_name": ["Kunz, Werner Friedrich"], "date_of_birth": "1896", "date_of_death": "1981", "preferred_name": "Kunz, Werner F.", "country_associated": "sz", "variant_access_point": ["Kunz, Werner Friedrich, 1896-1981"], "authorized_access_point": "Kunz, Werner F., 1896-1981", "biographical_information": ["Schweiz. Bildhauer", "Künstler"]} 1 -2023-07-08 08:16:10.549688 2023-07-08 08:16:10.549704 5f281eef-c69d-4316-bb38-42154f6f5bc8 {"md5": "03a2de067a27addb003bb4aa8292ea3e", "pid": "1189274361", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1189274361", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1189274361", "source": "GND"}], "variant_name": ["De Loecker, Jean-Paul"], "preferred_name": "Loecker, Jean-Paul de", "country_associated": "be", "variant_access_point": ["De Loecker, Jean-Paul"], "authorized_access_point": "Loecker, Jean-Paul de"} 1 -2023-07-08 08:16:10.668757 2023-07-08 08:16:10.668768 6f2f1698-f90d-49d3-82c8-6668600052dd {"md5": "844d5d1a6d4904030cdcf7b5f7a45c66", "pid": "118960032", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/118960032", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/118960032", "source": "GND"}], "variant_name": ["Jacoby, Richard"], "date_of_birth": "11.09.1929", "date_of_death": "09.07.2017", "preferred_name": "Jakoby, Richard", "country_associated": "gw", "variant_access_point": ["Jacoby, Richard, 1929-2017"], "authorized_access_point": "Jakoby, Richard, 1929-2017", "biographical_information": ["Gründungspräsident der Hochschule für Musik und Theater Hannover"]} 1 -2023-07-08 08:16:10.774811 2023-07-08 08:16:10.774824 5b9cf338-0dc2-4930-8e6f-86d139533696 {"md5": "08b6c1d6f24f39a0b3da2728c3ac891a", "pid": "118960308X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/118960308X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/118960308X", "source": "GND"}], "date_of_birth": "ca. 20. Jh.", "preferred_name": "Mallabey, Cedric", "country_associated": "xxk", "authorized_access_point": "Mallabey, Cedric, ca. 20. Jh."} 1 -2023-07-08 08:16:11.262336 2023-07-08 08:16:11.262347 0a5c70d5-f5fc-4e56-930e-13730871541a {"md5": "a206519551771f58a9866dfa89a9ca4f", "pid": "119009307", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "qualifier": "Deira, König", "identifier": "http://d-nb.info/gnd/119009307", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/119009307", "source": "GND"}], "date_of_death": "588", "preferred_name": "Aelle, Deira, König", "country_associated": "xxk", "authorized_access_point": "Aelle, Deira, König, -588"} 1 -2023-07-08 08:16:11.394924 2023-07-08 08:16:11.39493 1563c130-f847-41fd-bec1-28c099291a8b {"md5": "4d8e1873c701db3d3bc25ccc20767607", "pid": "1190205149", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1190205149", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1190205149", "source": "GND"}], "date_of_birth": "ca. 19/20. Jh.", "preferred_name": "Simson, Herman Ed. von", "country_associated": "gw", "authorized_access_point": "Simson, Herman Ed. von, ca. 19/20. Jh.", "biographical_information": ["Kaiserlischer Legationssekretär"]} 1 -2023-07-08 08:16:11.008 2023-07-08 10:28:20.270851 55c2ac81-28ea-400e-9bcb-5253f5b18a5d {"md5": "5ab328edf035caa4016aabec7a2347a8", "pid": "1190043440", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1190043440", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1190043440", "source": "GND"}], "date_of_birth": "1984", "preferred_name": "Lovec, Marko", "country_associated": "xv", "authorized_access_point": "Lovec, Marko, 1984-"} 2 -2023-07-08 08:16:11.489722 2023-07-08 08:16:11.489735 163e0784-4f25-4262-99bf-86aced471153 {"md5": "4e4cd0c543dcfad553a88f57a6b32a8a", "pid": "119022826", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/119022826", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/119022826", "source": "GND"}], "date_of_birth": "ca. um 1550 v.Chr.", "preferred_name": "Amenemhēt", "country_associated": "ua", "authorized_access_point": "Amenemhēt, ca. um 1550 v.Chr.", "biographical_information": ["Ägypt. Fürst u. Führer d. königl. Siegels"]} 1 -2023-07-08 08:16:11.748544 2023-07-08 08:16:11.748757 dbd1f1de-7076-4a29-b665-53e096aec15d {"md5": "6d26ce2af727501d0c5dace86bbec930", "pid": "1190392402", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1190392402", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1190392402", "source": "GND"}], "preferred_name": "Howard, Deborah", "country_associated": "xxu", "authorized_access_point": "Howard, Deborah"} 1 -2023-07-08 08:16:12.000587 2023-07-08 08:16:12.000597 029feac3-47e8-4e6d-a8ea-171bb2ee91d6 {"md5": "ec003bb7103a05f47e94f2fb2f0ae8d3", "pid": "1190664518", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1190664518", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1190664518", "source": "GND"}], "variant_name": ["Phan, Phuong"], "preferred_name": "Gorr, Phuong", "country_associated": "gw", "variant_access_point": ["Phan, Phuong"], "authorized_access_point": "Gorr, Phuong"} 1 -2023-07-08 08:16:12.095053 2023-07-08 08:16:12.095064 92a7b676-8fc4-4389-b8e7-1e20789b830c {"md5": "4ca7a77a44f6976aa821613856064235", "pid": "1190675692", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1190675692", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1190675692", "source": "GND"}], "preferred_name": "Malkinson, Agnes", "country_associated": "xxc", "authorized_access_point": "Malkinson, Agnes"} 1 -2023-07-08 08:16:12.220835 2023-07-08 08:16:12.220848 c36670b9-739d-4597-842c-3c9e1e1e2ffe {"md5": "9b802b0a1ac89e521233d720ca3fca13", "pid": "119077671", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/119077671", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/119077671", "source": "GND"}], "date_of_birth": "1933", "date_of_death": "1998", "preferred_name": "Pavlović, Živojin", "authorized_access_point": "Pavlović, Živojin, 1933-1998", "biographical_information": ["Jugoslaw. Filmregisseur und Schriftsteller"]} 1 -2023-07-08 08:16:12.341933 2023-07-08 08:16:12.341948 f395fe3b-3637-4c65-9af1-87987465e620 {"md5": "1a20cfddf3a1bb19f9720bfa3298fae2", "pid": "1190845555", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1190845555", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1190845555", "source": "GND"}], "date_of_birth": "06.09.1915", "date_of_death": "13.02.2008", "preferred_name": "Thomas, Andrea", "country_associated": "xxu", "authorized_access_point": "Thomas, Andrea, 1915-2008"} 1 -2023-07-08 08:16:12.462239 2023-07-08 08:16:12.462247 8e4aa8bb-452b-4627-87a4-eba6209a2e5a {"md5": "b62c9e105aa2625b9b1bde7e45b3e5fa", "pid": "1190905671", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1190905671", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1190905671", "source": "GND"}], "preferred_name": "Schreiter, Danny", "authorized_access_point": "Schreiter, Danny"} 1 -2023-07-08 08:16:12.582578 2023-07-08 08:16:12.582593 075b1e1b-55ee-4df8-8480-3dba1fc4dd6c {"md5": "3f3010d59986927f185e8fe19d770505", "pid": "119090943X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/119090943X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/119090943X", "source": "GND"}], "variant_name": ["Moran, Sarah J."], "preferred_name": "Moran, Sarah Joan", "country_associated": "ne", "variant_access_point": ["Moran, Sarah J."], "authorized_access_point": "Moran, Sarah Joan"} 1 -2023-07-08 08:16:12.699524 2023-07-08 08:16:12.699535 065ebd88-baf0-42bf-8357-379be5e07092 {"md5": "01e7c98e5437acbc7fee17628a848d08", "pid": "119136228", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/119136228", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/119136228", "source": "GND"}], "variant_name": ["Ball, Jessie", "DuPont, Jessie B."], "date_of_birth": "1884", "date_of_death": "1970", "preferred_name": "Du Pont, Jessie B.", "country_associated": "xxu", "variant_access_point": ["Ball, Jessie, 1884-1970", "DuPont, Jessie B., 1884-1970"], "authorized_access_point": "Du Pont, Jessie B., 1884-1970"} 1 -2023-07-08 08:16:12.809752 2023-07-08 08:16:12.809764 e2da9924-e224-474b-be8e-654cfef565d6 {"md5": "6bafa6fe22757698942cc53d74bdda34", "pid": "119161796", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/119161796", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/119161796", "source": "GND"}], "variant_name": ["Rollier, Mario Alberto"], "date_of_birth": "1909", "date_of_death": "1980", "preferred_name": "Rollier, Mario A.", "country_associated": "it", "variant_access_point": ["Rollier, Mario Alberto, 1909-1980"], "authorized_access_point": "Rollier, Mario A., 1909-1980", "biographical_information": ["Ital. Waldenseer, Politiker"]} 1 -2023-07-08 08:16:12.919533 2023-07-08 08:16:12.919546 45876b36-7a98-4dc2-89f4-ed42814d08c3 {"md5": "a623c52d282b3a573b4f1eb33aa0161e", "pid": "1191853187", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1191853187", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1191853187", "source": "GND"}], "preferred_name": "Rand, Emily", "country_associated": "xxk", "authorized_access_point": "Rand, Emily"} 1 -2023-07-08 08:16:13.288134 2023-07-08 08:16:13.288145 43889571-0df5-459e-a4d0-b9e2cec5ad59 {"md5": "87b1cd018e9a9834c19b808d4c9c1ba9", "pid": "1192518470", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1192518470", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1192518470", "source": "GND"}], "variant_name": ["Xinghuo, Zhang", "Zhang Xinghuo"], "preferred_name": "Zhang, Xinghuo", "country_associated": "cc", "variant_access_point": ["Xinghuo, Zhang", "Zhang Xinghuo"], "authorized_access_point": "Zhang, Xinghuo", "biographical_information": ["Department of Orthopedics, Beijing Luhe Hospital Affiliated to Capital Medical University, Beijing, China"]} 1 -2023-07-08 08:16:13.41502 2023-07-08 08:16:13.415025 effb20c4-3521-4a93-8f3c-e01dca6b9990 {"md5": "4a3723ad731dc5d9b87d8a752228a6d8", "pid": "1192950399", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1192950399", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1192950399", "source": "GND"}], "date_of_birth": "1943", "preferred_name": "Park, Heather", "country_associated": "xxk", "authorized_access_point": "Park, Heather, 1943-"} 1 -2023-07-08 08:16:13.516439 2023-07-08 08:16:13.516449 ded7746d-9e2c-4db3-8869-5525ef33c3bd {"md5": "7f77a24ebb74ae15c875b47a9ccc5c32", "pid": "1193659566", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1193659566", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1193659566", "source": "GND"}], "preferred_name": "Montesinos, Jesús", "country_associated": "sp", "authorized_access_point": "Montesinos, Jesús"} 1 -2023-07-08 08:16:13.642071 2023-07-08 08:16:13.642084 0a1f4738-6627-4e5f-b0ee-eee263d74ac5 {"md5": "736bdc2a887e6392b97b970c753e183a", "pid": "1193660688", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1193660688", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1193660688", "source": "GND"}], "variant_name": ["Colloqium entitled Classical Traditions in Latin American History"], "preferred_name": "Classical Traditions in Latin American History", "country_associated": "xxk", "variant_access_point": ["Colloqium entitled Classical Traditions in Latin American History, 2016, London"], "authorized_access_point": "Classical Traditions in Latin American History. Veranstaltung, 2016, London"} 1 -2023-07-08 08:16:13.777488 2023-07-08 08:16:13.777503 10769f4b-9805-42cb-8df9-db69f6fde0fe {"md5": "0cab0de1579c5d56b9a33d3e2d553b67", "pid": "1193684374", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1193684374", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1193684374", "source": "GND"}], "date_of_birth": "1947", "preferred_name": "Baur, Hans", "country_associated": "sz", "authorized_access_point": "Baur, Hans, 1947-"} 1 -2023-07-08 08:16:13.902311 2023-07-08 08:16:13.902326 75836595-1822-4254-9129-d9daa0a3fecb {"md5": "ca403bff625663ab4dcfe456decc08b2", "pid": "1193701163", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1193701163", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1193701163", "source": "GND"}], "variant_name": ["Gravely, William B.", "Gravely, William Bernard"], "date_of_birth": "1939", "preferred_name": "Gravely, William", "country_associated": "xxu", "variant_access_point": ["Gravely, William B., 1939-", "Gravely, William Bernard, 1939-"], "authorized_access_point": "Gravely, William, 1939-", "biographical_information": ["William B. Gravely is professor emeritus at the University of Denver. He is the author of Gilbert Haven, Methodist Abolitionist, as well as numerous articles on religion and social change."]} 1 -2023-07-08 08:16:14.008591 2023-07-08 08:16:14.008603 d8bb5c91-dd20-41cb-9971-8594732a2f50 {"md5": "67ad83e7fddd771931827263a7e3ab0d", "pid": "119380439", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/119380439", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/119380439", "source": "GND"}], "variant_name": ["Garzetti, Albinus"], "date_of_birth": "1914", "date_of_death": "1998", "preferred_name": "Garzetti, Albino", "country_associated": "it", "variant_access_point": ["Garzetti, Albinus, 1914-1998"], "authorized_access_point": "Garzetti, Albino, 1914-1998", "biographical_information": ["Ital. Historiker"]} 1 -2023-07-08 08:16:14.11336 2023-07-08 08:16:14.113372 80f09329-9860-4457-b382-b9e16369bbfc {"md5": "29a7e912adc66dabd88e817de382bebb", "pid": "119411679", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/119411679", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/119411679", "source": "GND"}], "date_of_birth": "1851", "date_of_death": "1932", "preferred_name": "Booth, Joseph", "country_associated": "xxk", "authorized_access_point": "Booth, Joseph, 1851-1932", "biographical_information": ["Brit. Missionar"]} 1 -2023-07-08 08:16:13.045473 2023-07-08 10:30:10.289911 1a57dafa-ce17-4f09-bcdd-c3ebce758071 {"md5": "8e3e05fa352941d1d58ce24df73968fc", "pid": "119219816", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/119219816", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/119219816", "source": "GND"}], "date_of_birth": "1957", "preferred_name": "Bowes, David", "country_associated": "xxu", "authorized_access_point": "Bowes, David, 1957-", "biographical_information": ["Amerikan. Maler"]} 2 -2023-07-08 08:16:14.236929 2023-07-08 08:16:14.236945 eaae0fe0-65ff-4058-94ca-6f87ff88aae5 {"md5": "83ff27ca937675a04b8fe411b7ea78cb", "pid": "1194409997", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1194409997", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1194409997", "source": "GND"}], "variant_name": ["Haddad Tóvolli, Marina"], "preferred_name": "Tóvolli, Marina Haddad", "country_associated": "bl", "variant_access_point": ["Haddad Tóvolli, Marina"], "authorized_access_point": "Tóvolli, Marina Haddad", "biographical_information": ["Research Assistant at Dirur/Ipea, Brazil"]} 1 -2023-07-08 08:16:14.345201 2023-07-08 08:16:14.345215 1ec104f6-2c92-4f75-a26c-4956a306ec9e {"md5": "48dbf945d3e7d40349ebf236b55ff266", "pid": "1194663192", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1194663192", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1194663192", "source": "GND"}], "variant_name": ["Michniak-Kohn, Bozena B.", "Kohn, Bozena Michniak-"], "preferred_name": "Michniak-Kohn, Bozena", "country_associated": "xxu", "variant_access_point": ["Michniak-Kohn, Bozena B.", "Kohn, Bozena Michniak-"], "authorized_access_point": "Michniak-Kohn, Bozena", "biographical_information": ["The State University of New Jersey"]} 1 -2023-07-08 08:16:14.575902 2023-07-08 08:16:14.575909 57d25378-99e7-43cd-9964-1ff112d1ec5b {"md5": "c0e06b859603d4ab4f25d5d2d6729843", "pid": "119508516", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/119508516", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/119508516", "source": "GND"}], "date_of_birth": "1938", "preferred_name": "Diodato, Baldo", "country_associated": "it", "authorized_access_point": "Diodato, Baldo, 1938-"} 1 -2023-07-08 08:16:14.678422 2023-07-08 08:16:14.678428 2024111b-41b5-41f0-b12f-f1cff91ddce3 {"md5": "4417f502b4086bcac5310425f6fa8350", "pid": "119537087", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["yid"], "identifier": "http://d-nb.info/gnd/119537087", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/119537087", "source": "GND"}], "variant_name": ["Grosman, Moisheh", "Grosman, M.", "Grosman, Moyshe", "Grosman, Moiše", "Grosman, Mojše", "Grosman, Mojsze", "Grosman, Moše", "Grosman, Mose", "Grossman, Moshe", "Grossman, Mosche", "Grossman, Moishe", "Grossman, Moses", "Grôsman, Moše", "Grossmann, Moses", "Grim, F.", "Grim, P.", "Godlman", "גראסמאן, משה", "גרוסמן, משה", "גרים, פ."], "date_of_birth": "1904", "date_of_death": "1961", "preferred_name": "Grosman, Mosheh", "country_associated": "is", "variant_access_point": ["Grosman, Moisheh, 1904-1961", "Grosman, M., 1904-1961", "Grosman, Moyshe, 1904-1961", "Grosman, Moiše, 1904-1961", "Grosman, Mojše, 1904-1961", "Grosman, Mojsze, 1904-1961", "Grosman, Moše, 1904-1961", "Grosman, Mose, 1904-1961", "Grossman, Moshe, 1904-1961", "Grossman, Mosche, 1904-1961", "Grossman, Moishe, 1904-1961", "Grossman, Moses, 1904-1961", "Grôsman, Moše, 1904-1961", "Grossmann, Moses, 1904-1961", "Grim, F., 1904-1961", "Grim, P., 1904-1961", "Godlman, 1904-1961", "גראסמאן, משה, 1904-1961", "גרוסמן, משה, 1904-1961", "גרים, פ., 1904-1961"], "parallel_access_point": ["גרוסמאן, משה, 1904-1961"], "authorized_access_point": "Grosman, Mosheh, 1904-1961", "biographical_information": ["Kindheit und Jugend teilweise in Warschau; Mitglied der zionistischen Arbeiterjugend \\"Yugend\\"; publizierte seine Bücher und literarischen Zeitschriftenbeiträge überwiegend auf Jiddisch und teillweise unter Pseudonym; lebte nach Aufenthalten in der Sowjetunion, Schweden, Frankreich und in den USA seit 1950 in Israel."]} 1 -2023-07-08 08:16:14.780376 2023-07-08 08:16:14.780387 a296199c-907d-46fb-95e1-7ea13b72f379 {"md5": "a64d7d39f8b6bebd5944e1ea102ab3e6", "pid": "119559382", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/119559382", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/119559382", "source": "GND"}], "date_of_birth": "1818", "date_of_death": "1878", "preferred_name": "Hammer, Adam", "country_associated": "gw", "authorized_access_point": "Hammer, Adam, 1818-1878", "biographical_information": ["Dt. Revolutionär, Arzt wanderte 1848 nach Amerika aus"]} 1 -2023-07-08 08:16:14.881298 2023-07-08 08:16:14.88131 d825ba80-2720-4aca-a56e-320ca64ee3c5 {"md5": "7c983179f96ed43c71e6fecf944e4bac", "pid": "1195806868", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1195806868", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1195806868", "source": "GND"}], "date_of_birth": "1898", "date_of_death": "1947", "preferred_name": "Szych, Jan", "country_associated": "pl", "authorized_access_point": "Szych, Jan, 1898-1947", "biographical_information": ["Herausgeber der religiösen Zeitschrift \\"Miesięcznik Diecezjalny Łucki\\""]} 1 -2023-07-08 08:16:14.992785 2023-07-08 08:16:14.9928 0ba614f4-6737-41c0-98a8-1c93f6732cec {"md5": "eab08f08e81740375e2e12720f808e25", "pid": "1196648964", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1196648964", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1196648964", "source": "GND"}], "variant_name": ["Paleotti, Ridolfo"], "date_of_death": "1619", "preferred_name": "Paleotti, Rodolfo", "country_associated": "it", "variant_access_point": ["Paleotti, Ridolfo, -1619"], "authorized_access_point": "Paleotti, Rodolfo, -1619", "biographical_information": ["Bischof von Imola 1611-1619"]} 1 -2023-07-08 08:16:15.108471 2023-07-08 08:16:15.108483 63d524ea-5011-4e2b-99e1-a4bd80211363 {"md5": "6a100ee1f57e4d1fcaa292eba2eeff0f", "pid": "119724952", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/119724952", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/119724952", "source": "GND"}], "preferred_name": "Junius, Nikolaus", "authorized_access_point": "Junius, Nikolaus", "biographical_information": ["Beitr. im VD-16"]} 1 -2023-07-08 08:16:15.218812 2023-07-08 08:16:15.218826 a2f20e0a-b58d-40de-8102-ac3f1c62eaf5 {"md5": "7eb89b82a893b3c889d28a02b825b0c7", "pid": "1197312137", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1197312137", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1197312137", "source": "GND"}], "date_of_birth": "1940", "preferred_name": "Vegt, Caroline van der", "country_associated": "ne", "authorized_access_point": "Vegt, Caroline van der, 1940-"} 1 -2023-07-08 08:16:15.330192 2023-07-08 08:16:15.330203 5abd28fb-87a0-43af-b08b-a830742ab5f7 {"md5": "251fb0fdb038f374697d6f5c39c2f626", "pid": "1197337660", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1197337660", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1197337660", "source": "GND"}], "variant_name": ["Archibong, Udy"], "preferred_name": "Archibong, Uduak", "country_associated": "xxk", "variant_access_point": ["Archibong, Udy"], "authorized_access_point": "Archibong, Uduak"} 1 -2023-07-08 08:16:15.444571 2023-07-08 08:16:15.444584 dd10732d-bd29-4410-b1bf-ccd2f7f5a005 {"md5": "909abf531fd58d659843c7fd0535533a", "pid": "1197621814", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1197621814", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1197621814", "source": "GND"}], "preferred_name": "Demisch, Dominik", "country_associated": "gw", "authorized_access_point": "Demisch, Dominik"} 1 -2023-07-08 08:16:15.554693 2023-07-08 08:16:15.554706 b0637b62-ee04-4580-b002-a9dd72eea796 {"md5": "ce2176c814233a2e39e7ff9fe6d42a52", "pid": "1197715096", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1197715096", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1197715096", "source": "GND"}], "variant_name": ["Senlin, Miao", "Miao Senlin"], "preferred_name": "Miao, Senlin", "country_associated": "cc", "variant_access_point": ["Senlin, Miao", "Miao Senlin"], "authorized_access_point": "Miao, Senlin"} 1 -2023-07-08 08:16:15.912582 2023-07-08 08:16:15.912597 48af3e94-6c6a-4c31-9e34-d158ed5735de {"md5": "60185d4283c215301a56af55c5b09713", "pid": "11987251X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/11987251X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/11987251X", "source": "GND"}], "preferred_name": "Wirth, Andreas", "authorized_access_point": "Wirth, Andreas", "biographical_information": ["Beitr. im VD-16"]} 1 -2023-07-08 08:16:16.045197 2023-07-08 08:16:16.045208 3d27d578-32be-4cb0-93e3-e4df71617ed4 {"md5": "ea4af6953f558d9017ffcd7de9c2dffc", "pid": "1199119393", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1199119393", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1199119393", "source": "GND"}], "variant_name": ["IEEE International Microwave Biomedical Conference", "IMBioC", "The IEEE MTT-S 2019 International Microwave Biomedical Conference (IMBioC 2019)"], "preferred_name": "IEEE MTT-S International Microwave Biomedical Conference", "country_associated": "cc", "variant_access_point": ["IEEE International Microwave Biomedical Conference, 2019, Nanjing", "IMBioC, 2019, Nanjing", "The IEEE MTT-S 2019 International Microwave Biomedical Conference (IMBioC 2019)"], "authorized_access_point": "IEEE MTT-S International Microwave Biomedical Conference, 2019, Nanjing"} 1 -2023-07-08 08:16:16.159633 2023-07-08 08:16:16.159644 50bc92c2-88a2-4fd4-9709-35a61877556e {"md5": "9e772e8cfbd754e5256583456b40e4af", "pid": "1199276545", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1199276545", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1199276545", "source": "GND"}], "variant_name": ["Osthoff, Hans Werner", "Osthoff, H. W.", "Osthoff, Hans W."], "date_of_birth": "11.02.1911", "date_of_death": "03.01.2006", "preferred_name": "Osthoff, Hans-Werner", "country_associated": "gw", "variant_access_point": ["Osthoff, Hans Werner, 1911-2006", "Osthoff, H. W., 1911-2006", "Osthoff, Hans W., 1911-2006"], "authorized_access_point": "Osthoff, Hans-Werner, 1911-2006", "biographical_information": ["Promovierte 1936 an der Universität Greifswald. - Justitiar im Auswärtigen Amt. - Anwalt in Berlin. - Lehrbeauftragter an der Universität München. - Seit 1970 Honorarprofessor an der Universität des Saarlandes"]} 1 -2023-07-08 08:16:16.376632 2023-07-08 08:16:16.376642 07a2d2e5-2b45-4568-b501-dd62b0bcabd6 {"md5": "aab199e5a29b5a03e37f4011269ddaa8", "pid": "1200376331", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1200376331", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1200376331", "source": "GND"}], "preferred_name": "Spata, Valentina", "country_associated": "it", "authorized_access_point": "Spata, Valentina", "biographical_information": ["Wirkungsdaten nach dem BVB"]} 1 -2023-07-08 08:16:16.495273 2023-07-08 08:16:16.495284 a9d2052f-79f9-4a6f-9b6e-28d47f97351d {"md5": "0c5f1232a3e74cee6ede2b647c5c8460", "pid": "1200558375", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1200558375", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1200558375", "source": "GND"}], "date_of_birth": "1970", "preferred_name": "Hà, Nhân", "country_associated": "vm", "authorized_access_point": "Hà, Nhân, 1970-"} 1 -2023-07-08 08:16:20.741855 2023-07-08 10:27:21.394824 a4524ab7-66cc-4dd5-9446-0e03afb610e3 {"md5": "d66bbd1bf4ad5f2b69d192a39171fb18", "pid": "120917661", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/120917661", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120917661", "source": "GND"}], "date_of_birth": "1960", "preferred_name": "Jakob, Gerd", "authorized_access_point": "Jakob, Gerd, 1960-", "biographical_information": ["Diss. Fachbereich Elektrotechnik"]} 2 -2023-07-08 08:16:15.786865 2023-07-08 10:31:40.832487 463ba71b-7361-41ca-a8f1-9d1f4d6a0e72 {"md5": "1ef30dc338ff7bc1bf524620eef412dd", "pid": "1198439084", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1198439084", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1198439084", "source": "GND"}], "variant_name": ["Taylor, Duncan Burnett"], "date_of_birth": "07.10.1912", "date_of_death": "XX.06.1982", "preferred_name": "Taylor, Duncan", "country_associated": "xxk", "variant_access_point": ["Taylor, Duncan Burnett, 1912-1982"], "authorized_access_point": "Taylor, Duncan, 1912-1982"} 2 -2023-07-08 08:16:16.604417 2023-07-08 08:16:16.604428 aebb2a2b-8ff0-4c77-8bdd-8cba7ec6396c {"md5": "4948d49f57485f674aa521a7c316e996", "pid": "120095785", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/120095785", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120095785", "source": "GND"}], "variant_name": ["Holmes Cooper, Alice"], "date_of_birth": "07.09.1955", "preferred_name": "Cooper, Alice Holmes", "country_associated": "xxu", "variant_access_point": ["Holmes Cooper, Alice, 1955-"], "parallel_access_point": ["Cooper, Alice Holmes, 1955-"], "authorized_access_point": "Cooper, Alice Holmes, 1955-", "biographical_information": ["Assistant Professor of Government, University of Virginia"]} 1 -2023-07-08 08:16:16.704523 2023-07-08 08:16:16.704532 e6862599-e216-49ce-bf09-6b115aeee630 {"md5": "7133141a3d5c8a77e91a36fa133ae416", "pid": "1201178835", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1201178835", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1201178835", "source": "GND"}], "variant_name": ["طرزي، محمد"], "date_of_birth": "1983", "preferred_name": "Ṭarzī, Muḥammad", "country_associated": "le", "variant_access_point": ["طرزي، محمد, 1983-"], "parallel_access_point": ["طرزي, محمد, 1983-"], "authorized_access_point": "Ṭarzī, Muḥammad, 1983-"} 1 -2023-07-08 08:16:16.80797 2023-07-08 08:16:16.80798 37509fe2-5c6f-43fe-bb97-2ee6e9172469 {"md5": "53faef38d1aae83ef55d2527d6d421bf", "pid": "120175118", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "qualifier": "Papa", "identifier": "http://d-nb.info/gnd/120175118", "numeration": "VIII.", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120175118", "source": "GND"}], "variant_name": ["Léon, VIII., Pape", "Leone, VIII., Papa", "Leo, VIII., Papst"], "date_of_death": "965", "preferred_name": "Leo, VIII., Papa", "country_associated": "it", "variant_access_point": ["Léon, VIII., Pape, -965", "Leone, VIII., Papa, -965", "Leo, VIII., Papst, -965"], "authorized_access_point": "Leo, VIII., Papa, -965", "biographical_information": ["Wahl zum Papst (963 n. Chr.), nach der Vertreibung von Papst Johannes XII. durch Kaiser Otto I. Wurde dann ebenso vertrieben und durch Benedikt V. ersetzt (Mai 964 n. Chr.). Nach erzwungener Abdankung von Benedikt V. (Juni 964 n. Chr.) quasi wiedereingesetzt mit zweiter Amtszeit bis zum Tode 965 n. Chr. ; Gilt allgemein als legaler Papst, wird jedoch in einzelnen Fällen aufgrund der 2x politisch erzwungenen Einsetzungen, bei gleichzeitigen Absetzungen amtierender Päpste, als Gegenpast angesehen, z.B.: Migne, Patrologia Latina, bezeichnet Leo VIII. als Gegenpapst."]} 1 -2023-07-08 08:16:16.946514 2023-07-08 08:16:16.94652 1ff672ae-4f56-453c-91df-5cf28ddf0b67 {"md5": "418c1342cf9360c3e251b068e83df2ba", "pid": "120175533", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/120175533", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120175533", "source": "GND"}], "date_of_birth": "31.08.1964", "date_of_death": "05.08.2002", "preferred_name": "Strom, Swet-Patrik", "country_associated": "gw", "authorized_access_point": "Strom, Swet-Patrik, 1964-2002"} 1 -2023-07-08 08:16:17.009222 2023-07-08 08:16:17.009225 1a8d1a1f-429f-437c-8932-12404f204bac {"md5": "d1df598aec8765b5056357bb095861b1", "pid": "1201779243", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1201779243", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1201779243", "source": "GND"}], "variant_name": ["Ufer, Jörg", "Ufer, Jörg R.", "Dr. Nordschleife"], "preferred_name": "Ufer, Jörg-Richard", "country_associated": "gw", "variant_access_point": ["Ufer, Jörg", "Ufer, Jörg R.", "Dr. Nordschleife"], "authorized_access_point": "Ufer, Jörg-Richard", "biographical_information": ["Schreibt Bücher über die Autorennen am Nürburgring"]} 1 -2023-07-08 08:16:17.073732 2023-07-08 08:16:17.073735 88cd77dd-9647-48a7-8bdf-6505aeba22f0 {"md5": "cc385f7c1febc9519e6361d6515ede52", "pid": "1201917980", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1201917980", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1201917980", "source": "GND"}], "variant_name": ["Konferencja \\"Dynamika Gwar Słowiańskich w XXI Wieku w Kontekście Dziedzictwa Narodowego i Kulturowego\\""], "preferred_name": "Dynamika Gwar Słowiańskich w XXI Wieku w Kontekście Dziedzictwa Narodowego i Kulturowego", "country_associated": "pl", "variant_access_point": ["Konferencja \\"Dynamika Gwar Słowiańskich w XXI Wieku w Kontekście Dziedzictwa Narodowego i Kulturowego\\", 2015, Warschau"], "authorized_access_point": "Dynamika Gwar Słowiańskich w XXI Wieku w Kontekście Dziedzictwa Narodowego i Kulturowego. Veranstaltung, 2015, Warschau"} 1 -2023-07-08 08:16:17.183294 2023-07-08 08:16:17.183305 8aa242b3-68d4-4887-894e-c32da4c694cc {"md5": "197f8282dfd23c285e724de7914119e7", "pid": "120249561", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/120249561", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120249561", "source": "GND"}], "variant_name": ["Ambikātanayadatta", "Ambikatanaya Datta", "Datta, Ambikatanaya", "Bendre, Dattatreya Ramachandra", "Bēṃdre, Da. Rā.", "Bendere, Dattatreya Ramachandra", "Bendre, Dattatraya Ramachandra", "Dattātreya Rāmachandra Bendre", "Bendre, Ramchandra Dattatreya", "Bendre, Dattatreya Ramchandra"], "date_of_birth": "1896", "date_of_death": "1981", "preferred_name": "Bendre, Dattātreya Rāmacandra", "country_associated": "ii", "variant_access_point": ["Ambikātanayadatta, 1896-1981", "Ambikatanaya Datta, 1896-1981", "Datta, Ambikatanaya, 1896-1981", "Bendre, Dattatreya Ramachandra, 1896-1981", "Bēṃdre, Da. Rā., 1896-1981", "Bendere, Dattatreya Ramachandra, 1896-1981", "Bendre, Dattatraya Ramachandra, 1896-1981", "Dattātreya Rāmachandra Bendre, 1896-1981", "Bendre, Ramchandra Dattatreya, 1896-1981", "Bendre, Dattatreya Ramchandra, 1896-1981"], "authorized_access_point": "Bendre, Dattātreya Rāmacandra, 1896-1981", "biographical_information": ["Kannada-Dichter"]} 1 -2023-07-08 08:16:27.81127 2023-07-08 08:16:27.811275 109f5f77-124a-4bdf-941b-07d5eaab4c2b {"md5": "c0b4871eb2b6264fb8c7627bddef10a6", "pid": "122307364", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/122307364", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/122307364", "source": "GND"}], "date_of_birth": "31.08.1967", "preferred_name": "Oppel, Kenneth", "country_associated": "xxc", "authorized_access_point": "Oppel, Kenneth, 1967-"} 1 -2023-07-08 08:16:17.407918 2023-07-08 08:16:17.407926 5468217c-cd17-42d9-b1f1-f54fd5518f97 {"md5": "7233351fca10a89943d4d97555fdc8ea", "pid": "120284952", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/120284952", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120284952", "source": "GND"}], "variant_name": ["Dierich, Johannes Urban"], "date_of_birth": "1651", "date_of_death": "1691", "preferred_name": "Dierich, Johann Urban", "variant_access_point": ["Dierich, Johannes Urban, 1651-1691"], "authorized_access_point": "Dierich, Johann Urban, 1651-1691", "biographical_information": ["Handelsmann in Leipzig"]} 1 -2023-07-08 08:16:17.505881 2023-07-08 08:16:17.505889 7ece1c42-4f2d-459d-941d-659f7a0d5754 {"md5": "adb177b05a5b280c521c81b35a86d65a", "pid": "1202884679", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1202884679", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1202884679", "source": "GND"}], "variant_name": ["Taşabat, Semra Erpolat"], "preferred_name": "Erpolat Taşabat, Semra", "country_associated": "tu", "variant_access_point": ["Taşabat, Semra Erpolat"], "authorized_access_point": "Erpolat Taşabat, Semra", "biographical_information": ["Mimar Sinan University, Istanbul, Türkei"]} 1 -2023-07-08 08:16:17.608722 2023-07-08 08:16:17.608728 80678245-4b8e-4d0e-bc0e-8ecc604d989a {"md5": "5fe45415f9f273151d38d21cac0f357b", "pid": "120343525", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/120343525", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120343525", "source": "GND"}], "date_of_birth": "1968", "preferred_name": "Holtmann, Bernhard", "authorized_access_point": "Holtmann, Bernhard, 1968-", "biographical_information": ["Diss. Inst. für pharmazeutische Chemie"]} 1 -2023-07-08 08:16:17.713637 2023-07-08 08:16:17.713646 469d5078-c41a-466e-92bc-6a5f8f664dd6 {"md5": "abd517ae24b0566c2128f3b0a6d16e69", "pid": "120355973", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/120355973", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120355973", "source": "GND"}], "date_of_birth": "1969", "preferred_name": "Thoma, Ulrike", "authorized_access_point": "Thoma, Ulrike, 1969-", "biographical_information": ["Diss. Fachbereich Experimentalphysik"]} 1 -2023-07-08 08:16:17.810288 2023-07-08 08:16:17.810297 106895ce-f12c-44b1-a5e4-cbb0790e726d {"md5": "9908cc8ac5e56425081ca57e3ef5828d", "pid": "1203576099", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1203576099", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1203576099", "source": "GND"}], "variant_name": ["Surfacedesign"], "preferred_name": "Surfacedesign, Inc.", "country_associated": "xxu", "variant_access_point": ["Surfacedesign"], "authorized_access_point": "Surfacedesign, Inc."} 1 -2023-07-08 08:16:18.028784 2023-07-08 08:16:18.028795 1f50714c-d3de-4f41-9f21-33a58d73890c {"md5": "35b1de97023fa7bb9e415bf268e72f1f", "pid": "1204063087", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1204063087", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1204063087", "source": "GND"}], "variant_name": ["Yu, Sŭng-hyŏn", "유, 승현", "劉, 承炫"], "preferred_name": "Yu, Seung hyeon", "country_associated": "ko", "variant_access_point": ["Yu, Sŭng-hyŏn", "유, 승현", "劉, 承炫"], "parallel_access_point": ["劉承炫", "유승현"], "authorized_access_point": "Yu, Seung hyeon", "biographical_information": ["경희대학교 비교문화연구소 교수"]} 1 -2023-07-08 08:16:18.138781 2023-07-08 08:16:18.138793 e41b10a1-a86f-4861-a6a9-8aed3d5dd363 {"md5": "738c8b32986d24def3f475d5f4bfca0d", "pid": "1204462666", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1204462666", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1204462666", "source": "GND"}], "date_of_birth": "1937", "preferred_name": "Kikuchi, Yoshio", "country_associated": "ja", "parallel_access_point": ["菊池, 威雄, 1937-"], "authorized_access_point": "Kikuchi, Yoshio, 1937-"} 1 -2023-07-08 08:16:18.254823 2023-07-08 08:16:18.254837 5fdeaccf-67d1-4ecf-b70d-ed76f1ce2e97 {"md5": "73df5630d52a9c344528ac6b9300602e", "pid": "120473801", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/120473801", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120473801", "source": "GND"}], "variant_name": ["Renner, Heinricus", "Renner, Henricus", "Rennerus, Heinricus"], "preferred_name": "Renner, Heinrich", "variant_access_point": ["Renner, Heinricus", "Renner, Henricus", "Rennerus, Heinricus"], "authorized_access_point": "Renner, Heinrich", "biographical_information": ["Respondent in Jena"]} 1 -2023-07-08 08:16:18.359322 2023-07-08 08:16:18.35933 3f2230d6-8863-439c-a66d-fe5bd7327073 {"md5": "00d795de7bfb047228c515a0c5c11466", "pid": "1204866740", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1204866740", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1204866740", "source": "GND"}], "date_of_birth": "1950", "preferred_name": "Condé, Mohamed", "country_associated": "gv", "authorized_access_point": "Condé, Mohamed, 1950-"} 1 -2023-07-08 08:16:20.861181 2023-07-08 08:16:20.861191 c2403ef0-8f72-4f17-8609-cd5a46181b44 {"md5": "511ee0181ecc6e3f5cab44fece6a30ab", "pid": "1209584417", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1209584417", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1209584417", "source": "GND"}], "variant_name": ["Gmelin, Charlotte"], "date_of_birth": "1816", "date_of_death": "1900", "preferred_name": "Bruns, Charlotte", "country_associated": "gw", "variant_access_point": ["Gmelin, Charlotte, 1816-1900"], "authorized_access_point": "Bruns, Charlotte, 1816-1900"} 1 -2023-07-08 08:16:18.457114 2023-07-08 08:16:18.457123 0ef6e8ab-e565-40ca-becd-72452dd8cfc0 {"md5": "e90be7dfe8afe60736638f006e3b4b77", "pid": "1204875901", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1204875901", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1204875901", "source": "GND"}], "variant_name": ["Nationale Plattform Zukunft der Mobilität. Arbeitsgruppe 2 - Alternative Antriebe und Kraftstoffe für nachhaltige Mobilität", "Nationale Plattform Zukunft der Mobilität. AG 2"], "preferred_name": "Nationale Plattform Zukunft der Mobilität. AG 2 - Alternative Antriebe und Kraftstoffe für Nachhaltige Mobilität", "country_associated": "gw", "variant_access_point": ["Nationale Plattform Zukunft der Mobilität. Arbeitsgruppe 2 - Alternative Antriebe und Kraftstoffe für nachhaltige Mobilität", "Nationale Plattform Zukunft der Mobilität. AG 2"], "authorized_access_point": "Nationale Plattform Zukunft der Mobilität. AG 2 - Alternative Antriebe und Kraftstoffe für Nachhaltige Mobilität"} 1 -2023-07-08 08:16:18.558477 2023-07-08 08:16:18.558486 5587183e-1caa-40ca-a70d-c815c243fc52 {"md5": "7e231c068298071367a51d1719761585", "pid": "120543125", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/120543125", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120543125", "source": "GND"}], "variant_name": ["Richter, Thomas Jakob", "Richter, Thomas"], "date_of_birth": "1955", "preferred_name": "Richter, Thomas J.", "country_associated": "gw", "variant_access_point": ["Richter, Thomas Jakob, 1955-", "Richter, Thomas, 1955-"], "parallel_access_point": ["Richter, Thomas J., 1955-"], "authorized_access_point": "Richter, Thomas J., 1955-"} 1 -2023-07-08 08:16:18.773804 2023-07-08 08:16:18.773812 3b6ec578-00e8-422a-a05a-11a5a9ffcda1 {"md5": "a5b3d5849d6349397976897084fb287c", "pid": "1205764232", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["eng", "ger"], "identifier": "http://d-nb.info/gnd/1205764232", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1205764232", "source": "GND"}], "preferred_name": "Rouyer, Constanze", "authorized_access_point": "Rouyer, Constanze"} 1 -2023-07-08 08:16:18.904037 2023-07-08 08:16:18.90405 3b4184d7-157e-4378-b523-576629c59197 {"md5": "629eeca1244addc6bb6e73c1bdc31d29", "pid": "1205836233", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1205836233", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1205836233", "source": "GND"}], "variant_name": ["Chiwoon, Cho", "Cho Chiwoon"], "preferred_name": "Cho, Chiwoon", "country_associated": "ko", "variant_access_point": ["Chiwoon, Cho", "Cho Chiwoon"], "authorized_access_point": "Cho, Chiwoon"} 1 -2023-07-08 08:16:19.011475 2023-07-08 08:16:19.011483 79a86282-1410-4898-844a-807d8dc6c492 {"md5": "bdcd00870934efbe6da94ad6976c2dd0", "pid": "120596067", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/120596067", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120596067", "source": "GND"}], "variant_name": ["Hartmann, Christoph Dietrich Johann David Joachim"], "date_of_birth": "1762", "date_of_death": "1840", "preferred_name": "Hartmann, Johann Dietrich", "variant_access_point": ["Hartmann, Christoph Dietrich Johann David Joachim, 1762-1840"], "authorized_access_point": "Hartmann, Johann Dietrich, 1762-1840", "biographical_information": ["Sohn des Rostocker Theologen Joachim Hartmann; Prediger und Dichter"]} 1 -2023-07-08 08:16:19.124803 2023-07-08 08:16:19.124815 1db5f721-b790-4443-a3ad-66de30fc7cb5 {"md5": "b153f529bdb8eafc8b0456404592f61d", "pid": "1206199024", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1206199024", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1206199024", "source": "GND"}], "variant_name": ["Coovert, John Calvin"], "date_of_birth": "1862", "date_of_death": "1937", "preferred_name": "Coovert, J. C.", "country_associated": "xxu", "variant_access_point": ["Coovert, John Calvin, 1862-1937"], "authorized_access_point": "Coovert, J. C., 1862-1937"} 1 -2023-07-08 08:16:19.225751 2023-07-08 08:16:19.225763 e9625ce2-b85d-4c3c-88c3-a9d656420af8 {"md5": "04b06907c1a9635e983f6a533e5b942f", "pid": "1206214643", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1206214643", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1206214643", "source": "GND"}], "variant_name": ["Muzeul de Artă", "Muzeul de Artă din Piatra-Neamţ"], "preferred_name": "Muzeul de Artă Piatra-Neamţ", "country_associated": "rm", "variant_access_point": ["Muzeul de Artă. Piatra-Neamţ", "Muzeul de Artă din Piatra-Neamţ"], "date_of_establishment": "XX.XX.1964", "authorized_access_point": "Muzeul de Artă Piatra-Neamţ"} 1 -2023-07-08 08:16:19.325638 2023-07-08 08:16:19.325648 9c517fc7-85cf-4e8e-958d-76736191076f {"md5": "b4eff24ab3680be7bc90dcb6784445bc", "pid": "1206297964", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1206297964", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1206297964", "source": "GND"}], "preferred_name": "Farkas, Áron", "authorized_access_point": "Farkas, Áron"} 1 -2023-07-08 08:16:19.452395 2023-07-08 08:16:19.452423 6b61b250-bbe9-461f-88ae-05c5a03efd1b {"md5": "023cb821fdad1b73f75791819e6592e2", "pid": "1206889632", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1206889632", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1206889632", "source": "GND"}], "date_of_birth": "ca. 20./21. Jahrhundert", "preferred_name": "Kidawara, Yutaka", "country_associated": "ja", "authorized_access_point": "Kidawara, Yutaka, ca. 20./21. Jahrhundert"} 1 -2023-07-08 08:16:25.411414 2023-07-08 08:16:25.411419 45509d20-9966-4cb1-b58d-842e14e1278c {"md5": "202b25427113bfd83463df9624e6f43f", "pid": "1218472189", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1218472189", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1218472189", "source": "GND"}], "preferred_name": "Hayfield, Nikki", "country_associated": "xxk", "authorized_access_point": "Hayfield, Nikki", "biographical_information": ["UWE Bristol, senior lecturer in social psychology"]} 1 -2023-07-08 08:16:19.547499 2023-07-08 08:16:19.547511 4102eebc-4a2c-42b3-82a0-c886881e026d {"md5": "5d6694eab28b266626dfe832d2ebf588", "pid": "1206932619", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1206932619", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1206932619", "source": "GND"}], "variant_name": ["Lin, Lian kun", "Lin Liankun", "Lin Lian kun", "林, 連昆", "林, 连昆"], "date_of_birth": "1931", "date_of_death": "2009", "preferred_name": "Lin, Liankun", "country_associated": "cc", "variant_access_point": ["Lin, Lian kun, 1931-2009", "Lin Liankun, 1931-2009", "Lin Lian kun, 1931-2009", "林, 連昆, 1931-2009", "林, 连昆, 1931-2009"], "parallel_access_point": ["林連昆, 1931-2009", "林连昆, 1931-2009"], "authorized_access_point": "Lin, Liankun, 1931-2009"} 1 -2023-07-08 08:16:19.658442 2023-07-08 08:16:19.658507 ca34944d-452d-43d6-96d6-b462fe948e74 {"md5": "6dedc00c02d16777e8209965d8454d70", "pid": "120704463", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/120704463", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120704463", "source": "GND"}], "date_of_birth": "01.03.1939", "date_of_death": "21.06.2018", "preferred_name": "Wickop, Hanne", "country_associated": "gw", "authorized_access_point": "Wickop, Hanne, 1939-2018", "biographical_information": ["Schriftstellerin"]} 1 -2023-07-08 08:16:19.770599 2023-07-08 08:16:19.770611 f8df2d94-8463-4b92-b0fc-61e7826b7748 {"md5": "c7b17a1f3084cc82081d15228b972281", "pid": "1207293849", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1207293849", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1207293849", "source": "GND"}], "variant_name": ["Nogueira Garcez, Marcos"], "date_of_birth": "1919", "preferred_name": "Garcez, Marcos Nogueira", "country_associated": "bl", "variant_access_point": ["Nogueira Garcez, Marcos, 1919-"], "authorized_access_point": "Garcez, Marcos Nogueira, 1919-"} 1 -2023-07-08 08:16:19.896902 2023-07-08 08:16:19.896914 d87af4ff-dd18-44cd-bc38-687ff3cc4e42 {"md5": "a7293c7d4b1aee9f3be172115ca2db65", "pid": "1207338478", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1207338478", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1207338478", "source": "GND"}], "variant_name": ["Szántó, Erika"], "preferred_name": "Szanto, Erika", "variant_access_point": ["Szántó, Erika"], "authorized_access_point": "Szanto, Erika"} 1 -2023-07-08 08:16:20.007699 2023-07-08 08:16:20.007709 118a4903-8093-4a11-915e-180049b890ff {"md5": "533804772c2929a6d324e9b86c138aac", "pid": "1207445045", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1207445045", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1207445045", "source": "GND"}], "date_of_birth": "1893", "preferred_name": "Hafner, Ludwig", "country_associated": "gw", "authorized_access_point": "Hafner, Ludwig, 1893-"} 1 -2023-07-08 08:16:20.113277 2023-07-08 08:16:20.113287 09b4108d-0a66-4538-8c64-f73cf9991afc {"md5": "4a5160a201ccc31800f8f9b3478cce7b", "pid": "120824261X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/120824261X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120824261X", "source": "GND"}], "preferred_name": "Luft, Christopher", "country_associated": "gw", "authorized_access_point": "Luft, Christopher"} 1 -2023-07-08 08:16:20.219815 2023-07-08 08:16:20.219831 a6f06e0d-ac51-4947-ac05-4c424bac39bb {"md5": "bcf639a370142f220462167588efd8f9", "pid": "1208406337", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1208406337", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1208406337", "source": "GND"}], "date_of_birth": "17.04.1944", "preferred_name": "Edwards, Olwen", "country_associated": "xxk", "authorized_access_point": "Edwards, Olwen, 1944-"} 1 -2023-07-08 08:16:20.320899 2023-07-08 08:16:20.320909 ad9ff471-bbd0-40ab-9037-5c724b570e3b {"md5": "ad71e7213d0a1099ee2989c3517837fc", "pid": "1208648632", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1208648632", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1208648632", "source": "GND"}], "preferred_name": "Alqadi, Amjad", "country_associated": "sz", "authorized_access_point": "Alqadi, Amjad", "biographical_information": ["Dissertation Université de Genève, 2017"]} 1 -2023-07-08 08:16:20.413731 2023-07-08 08:16:20.414111 2b436f1c-14ec-4202-9cf7-122c00fa8c59 {"md5": "e401b8146dc2ee07f1a493738598f9ca", "pid": "1208728474", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1208728474", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1208728474", "source": "GND"}], "variant_name": ["Amin, Sultan Muhammad", "Krueng Raba Nasution"], "date_of_birth": "1904", "preferred_name": "Amin, SM", "country_associated": "io", "variant_access_point": ["Amin, Sultan Muhammad, 1904-", "Krueng Raba Nasution, 1904-"], "authorized_access_point": "Amin, SM, 1904-", "biographical_information": ["Krueng Raba Nasution ist der Spitzname"]} 1 -2023-07-08 08:16:20.512831 2023-07-08 08:16:20.512842 5806c2b1-4f98-4b7c-ab0e-dbe0785ed9c0 {"md5": "03f3dd2ede7ce8f7ab92bed00099985b", "pid": "1208923765", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1208923765", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1208923765", "source": "GND"}], "preferred_name": "Fray, Nicolas", "country_associated": "fr", "authorized_access_point": "Fray, Nicolas", "biographical_information": ["Université Paris Est Créteil et Université Paris Diderot, Institut Pierre Simon Laplace, Créteil"]} 1 -2023-07-08 08:16:20.623753 2023-07-08 08:16:20.623763 00ed4e04-f192-401a-ae6a-8969c02b75ea {"md5": "b8d81cb3069adbbf79a15a43663f0e51", "pid": "1209087162", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1209087162", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1209087162", "source": "GND"}], "variant_name": ["Xyritakēs, Dēmētrēs A.", "Xyritakēs, Dēmētrios", "Xyritakēs, Dēmētrios A."], "date_of_birth": "1946", "preferred_name": "Xyritakēs, Dēmētrēs", "country_associated": "gr", "variant_access_point": ["Xyritakēs, Dēmētrēs A., 1946-", "Xyritakēs, Dēmētrios, 1946-", "Xyritakēs, Dēmētrios A., 1946-"], "parallel_access_point": ["Ξυριτάκης, Δημήτρης, 1946-"], "authorized_access_point": "Xyritakēs, Dēmētrēs, 1946-"} 1 -2023-07-08 08:16:20.959028 2023-07-08 08:16:20.959037 69a71128-dcce-4ef8-8cb0-8f9210e88c59 {"md5": "08da63b1da20c942247a12e81c4acad8", "pid": "1209711753", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1209711753", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1209711753", "source": "GND"}], "variant_name": ["Cerdas, Gerardo González-"], "date_of_birth": "1986", "preferred_name": "González-Cerdas, Gerardo", "country_associated": "cr", "variant_access_point": ["Cerdas, Gerardo González-, 1986-"], "authorized_access_point": "González-Cerdas, Gerardo, 1986-"} 1 -2023-07-08 08:16:21.076634 2023-07-08 08:16:21.076646 61def7f2-84d5-4e04-9430-8a55c28743e7 {"md5": "905c611b993698de12db44af05346dce", "pid": "1209907445", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1209907445", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1209907445", "source": "GND"}], "preferred_name": "Murphy, Neil", "country_associated": "fr", "authorized_access_point": "Murphy, Neil"} 1 -2023-07-08 08:16:21.194519 2023-07-08 08:16:21.194525 92d781bd-d4b1-4acd-8046-401253cadf99 {"md5": "d84a9256a2a495055b025d5a37782b8d", "pid": "1209954184", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1209954184", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1209954184", "source": "GND"}], "preferred_name": "Richardson, Ian", "country_associated": "xxk", "authorized_access_point": "Richardson, Ian"} 1 -2023-07-08 08:16:21.299223 2023-07-08 08:16:21.299235 31ef0ec6-0c8d-4707-bf27-ba4b44283048 {"md5": "b22ffce8c933cb8ca67c1c5f5a4e79c4", "pid": "1209976218", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1209976218", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1209976218", "source": "GND"}], "date_of_birth": "ca. 20. Jahrhundert", "preferred_name": "Friedländer, Walter", "authorized_access_point": "Friedländer, Walter, ca. 20. Jahrhundert", "biographical_information": ["Büchersammlung mit Eigentumsvermerk: \\"Aus der russischen Bücherei Walter Friedländers\\" und Nummer"]} 1 -2023-07-08 08:16:21.399937 2023-07-08 08:16:21.399949 32147a8b-a556-458e-90c3-c24108305a95 {"md5": "ad6bb53b37c1eecc59d213b6260d9dbd", "pid": "121017206", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/121017206", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/121017206", "source": "GND"}], "variant_name": ["Kossmann, E. H.", "Kossmann, Ernst Heinrich", "Kossman, Ernst H."], "date_of_birth": "1922", "date_of_death": "2003", "preferred_name": "Kossmann, Ernst H.", "country_associated": "ne", "variant_access_point": ["Kossmann, E. H., 1922-2003", "Kossmann, Ernst Heinrich, 1922-2003", "Kossman, Ernst H., 1922-2003"], "authorized_access_point": "Kossmann, Ernst H., 1922-2003", "biographical_information": ["Niederländ. Historiker"]} 1 -2023-07-08 08:16:21.508001 2023-07-08 08:16:21.508012 14ce4d0c-9317-4f7f-b529-b26b31b7da05 {"md5": "4c435ad138f3f4718621eea25364c456", "pid": "121042413", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/121042413", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/121042413", "source": "GND"}], "variant_name": ["Berg, Stefan"], "date_of_birth": "1959", "preferred_name": "Berg, Stephan", "country_associated": "gw", "variant_access_point": ["Berg, Stefan, 1959-"], "authorized_access_point": "Berg, Stephan, 1959-", "biographical_information": ["1990-2000 Leiter des Kunstvereins Freiburg; 2001-2008 Direktor des Kunstvereins Hannover; seit April 2008 Direktor des Kunstmuseums Bonn; Honorarprofessor an der Hochschule für Bildende Künste in Braunschweig; Veröffentlichungen zur Kunst der Gegenwart"]} 1 -2023-07-08 08:16:21.610903 2023-07-08 08:16:21.610914 a92ede33-4ef9-44f4-8f6c-6dbc30a93d81 {"md5": "0ace56716bddb0030ca8793a751f0f79", "pid": "121068439", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/121068439", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/121068439", "source": "GND"}], "date_of_birth": "1963", "preferred_name": "Füg, Torsten", "authorized_access_point": "Füg, Torsten, 1963-", "biographical_information": ["Studium Mathematik, Physik, Volkswirtschaft"]} 1 -2023-07-08 08:16:21.718056 2023-07-08 08:16:21.718067 15d65b21-8ab2-4982-aa9a-754d8b41d3c8 {"md5": "34b661b1880cd2fa9710c9ac4fe87616", "pid": "1210872188", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1210872188", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1210872188", "source": "GND"}], "variant_name": ["Maire, Daphné Gaudry-", "Maire, Daphné"], "preferred_name": "Gaudry-Maire, Daphné", "country_associated": "sz", "variant_access_point": ["Maire, Daphné Gaudry-", "Maire, Daphné"], "authorized_access_point": "Gaudry-Maire, Daphné", "biographical_information": ["Dissertation Université de Genève, 2006"]} 1 -2023-07-08 08:16:21.844146 2023-07-08 08:16:21.844152 7c1b74e9-541f-4e3b-b6b6-85ccf5a0d1db {"md5": "50d3af390ef514956e307d9b3ef151f1", "pid": "1210955601", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1210955601", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1210955601", "source": "GND"}], "variant_name": ["Bràina, Cristiano Becciu-"], "date_of_birth": "1974", "preferred_name": "Becciu-Bràina, Cristiano", "country_associated": "it", "variant_access_point": ["Bràina, Cristiano Becciu-, 1974-"], "authorized_access_point": "Becciu-Bràina, Cristiano, 1974-"} 1 -2023-07-08 08:16:23.279033 2023-07-08 08:16:23.279039 f28f44da-d39d-462e-97ce-51862170b25d {"md5": "040c2c55035b5bb3e5f5381a575d5613", "pid": "1212537750", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1212537750", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1212537750", "source": "GND"}], "variant_name": ["Zuschlag, Eckhard Fritz"], "date_of_birth": "1933", "preferred_name": "Zuschlag, Eckhard", "country_associated": "gw", "variant_access_point": ["Zuschlag, Eckhard Fritz, 1933-"], "authorized_access_point": "Zuschlag, Eckhard, 1933-"} 1 -2023-07-08 08:16:24.326758 2023-07-08 08:16:24.32677 c1303b07-7408-4d59-9469-26b33c71cb76 {"md5": "0f40feacbbaee5c3566c59ab8a5de917", "pid": "121552756", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/121552756", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/121552756", "source": "GND"}], "variant_name": ["Hercher, Christiane"], "date_of_birth": "1968", "preferred_name": "Horack, Christiane", "variant_access_point": ["Hercher, Christiane, 1968-"], "authorized_access_point": "Horack, Christiane, 1968-", "biographical_information": ["Ärztin, Abt. Anästhesiologie"]} 1 -2023-07-08 08:16:21.961571 2023-07-08 08:16:21.961583 2a40a4db-15ff-45a7-9eb2-9751bcd3d43a {"md5": "a3587e34e21aa97674f16101f2f7ee86", "pid": "1210962721", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1210962721", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1210962721", "source": "GND"}], "variant_name": ["Liu Ruishao", "Liu rui shao", "Lau, Johnny Y.S.", "Johnny Y.S. Lau", "Lau, Y.S. Johnny", "夫子"], "date_of_birth": "1954", "preferred_name": "Liu, Ruishao", "variant_access_point": ["Liu Ruishao, 1954-", "Liu rui shao, 1954-", "Lau, Johnny Y.S., 1954-", "Johnny Y.S. Lau, 1954-", "Lau, Y.S. Johnny, 1954-", "夫子, 1954-"], "parallel_access_point": ["劉銳紹, 1954-", "刘锐绍, 1954-"], "authorized_access_point": "Liu, Ruishao, 1954-", "biographical_information": ["\\"劉銳紹(英文名Mr. Johnny Y.S. Lau,外號「夫子」)中國事務問題專家,自1972年開始從事新聞工作,甫開始即任香港文匯報駐北京辦事處主任至1989年(因六四事件與程翔、社長李子誦一起離開親北京的香港《文匯報》,當時程翔是副總編輯,而劉銳紹是駐北京特派員。他也是當時唯一被北京市市長陳希同點名的境外記者)、後與李子誦和程翔創辦《當代》雜誌並任副總編輯(1991年~1995年2月20日)。曾為香港新城電台《發展新大陸》、現為商業一台星期天早上《政好星期天》節目主持人,並先後擔任香港有線電視中港事務顧問,加拿大中文電台評論員等。專欄著作包括:《蘋果日報》劉銳紹專欄、《經濟日報》中港政情專欄、《東方日報》中港筆通,及《星島日報》、《明報》、《新報》中港評論專欄等等。\\" (香港民風大典)"]} 1 -2023-07-08 08:16:22.09335 2023-07-08 08:16:22.093365 fdc23cc0-b73d-4462-8bea-1f577749b6bb {"md5": "1b8ce473e7fd5c12b826811da89bf268", "pid": "1211035360", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1211035360", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1211035360", "source": "GND"}], "variant_name": ["Jofre, Santiago Wortman"], "preferred_name": "Wortman Jofre, Santiago", "country_associated": "ag", "variant_access_point": ["Jofre, Santiago Wortman"], "authorized_access_point": "Wortman Jofre, Santiago"} 1 -2023-07-08 08:16:22.345394 2023-07-08 08:16:22.345405 613e784b-3e1e-48a7-8ff6-3b9da28d4d87 {"md5": "7ae5f4172f3e1e3e7810415488a322b7", "pid": "121163393", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/121163393", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/121163393", "source": "GND"}], "variant_name": ["Donato, Francesco Saverio"], "date_of_birth": "1734", "date_of_death": "1796", "preferred_name": "Lillo, Saverio", "country_associated": "it", "variant_access_point": ["Donato, Francesco Saverio, 1734-1796"], "authorized_access_point": "Lillo, Saverio, 1734-1796", "biographical_information": ["Ital. Maler"]} 1 -2023-07-08 08:16:22.467475 2023-07-08 08:16:22.467481 ea7c492f-277a-475e-b059-c42774d2c0b7 {"md5": "fa97bd7bc4eba6b0e3a115d6943b56d1", "pid": "1211685918", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1211685918", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1211685918", "source": "GND"}], "preferred_name": "Baur, Guillaume Bastien", "country_associated": "sz", "authorized_access_point": "Baur, Guillaume Bastien", "biographical_information": ["Dissertation Ecole polytechnique fédérale de Lausanne, 2015"]} 1 -2023-07-08 08:16:22.594649 2023-07-08 08:16:22.594661 d89a18b2-fc66-44c7-970a-b74fc876632f {"md5": "6778082ebcd84f684d00bafcf221b597", "pid": "1211707628", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1211707628", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1211707628", "source": "GND"}], "date_of_birth": "1885", "date_of_death": "1964", "preferred_name": "Wulffius, Kurt Michael Iwar", "country_associated": "ru", "authorized_access_point": "Wulffius, Kurt Michael Iwar, 1885-1964", "biographical_information": ["stud. Dorpat; Arzt in Riga;"]} 1 -2023-07-08 08:16:22.728007 2023-07-08 08:16:22.728012 82228130-9958-4a47-bc5a-2422d2451621 {"md5": "becd74b098e391c22eb2b3f20c06fc9f", "pid": "1211767892", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1211767892", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1211767892", "source": "GND"}], "variant_name": ["VEB Bau-Union Küste, Oberbauleitung Seehaus und Oranienburg"], "preferred_name": "Bau-Union Küste. Oberbauleitung Seehaus und Oranienburg", "variant_access_point": ["VEB Bau-Union Küste, Oberbauleitung Seehaus und Oranienburg. Unveraenderte Form"], "authorized_access_point": "Bau-Union Küste. Oberbauleitung Seehaus und Oranienburg"} 1 -2023-07-08 08:16:23.034364 2023-07-08 08:16:23.034376 e2b6dcca-faff-4c7d-a557-5de3764ff052 {"md5": "08ac6e49799b82d8ec6161f5fd74cac7", "pid": "1212074939", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1212074939", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1212074939", "source": "GND"}], "preferred_name": "Barrès, Frankline", "country_associated": "fr", "authorized_access_point": "Barrès, Frankline"} 1 -2023-07-08 08:16:23.167357 2023-07-08 08:16:23.167369 b8acd19f-33a1-421a-9eb3-5c12d85f4a2b {"md5": "c606884b9aaa847881e977ed0f9c749e", "pid": "1212533003", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1212533003", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1212533003", "source": "GND"}], "preferred_name": "Díaz Cardona, Francia Elena", "country_associated": "mx", "authorized_access_point": "Díaz Cardona, Francia Elena"} 1 -2023-07-08 08:16:23.362435 2023-07-08 08:16:23.362438 6cba5060-6b96-4220-9849-411c1237b68b {"md5": "4b31fbb483b5019aa8daed4af084811d", "pid": "121259927", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/121259927", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/121259927", "source": "GND"}], "variant_name": ["Barkmann, Udo", "Barkmann, U. B.", "Удо Б. Баркманн"], "date_of_birth": "1955", "preferred_name": "Barkmann, Udo B.", "country_associated": "gw", "variant_access_point": ["Barkmann, Udo, 1955-", "Barkmann, U. B., 1955-", "Удо Б. Баркманн, 1955-"], "parallel_access_point": ["Баркманн, Удо Б., 1955-", "Баркман, Удо Б., 1955-"], "authorized_access_point": "Barkmann, Udo B., 1955-", "biographical_information": ["Studium der Mongolistik, Geschichte und Mandschuristik, Promotion 1984; Mongolei-Experte und Autor"]} 1 -2023-07-08 08:16:23.506002 2023-07-08 08:16:23.506006 ce9a632d-ab98-4788-a764-45cb1e2da62c {"md5": "93f2aaadc214ef21d2131f3add52d245", "pid": "1213248760", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1213248760", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1213248760", "source": "GND"}], "date_of_birth": "1936", "date_of_death": "2012", "preferred_name": "Bär, Horst", "country_associated": "gw", "authorized_access_point": "Bär, Horst, 1936-2012"} 1 -2023-07-08 08:16:23.57507 2023-07-08 08:16:23.575076 5ed63d3f-b6cf-45dd-8efb-06a9ced0bef2 {"md5": "3b8c2e6a3b602c70fd4d3e8e74aeb89e", "pid": "1213263360", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1213263360", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1213263360", "source": "GND"}], "preferred_name": "Julian, Pierre", "country_associated": "fr", "authorized_access_point": "Julian, Pierre"} 1 -2023-07-08 08:16:23.64919 2023-07-08 08:16:23.649199 6989bc60-ede9-4507-8cb7-bcf1bd52ca69 {"md5": "a09d8c636492675210c6480a8a82f013", "pid": "1213396700", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1213396700", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1213396700", "source": "GND"}], "preferred_name": "Armenteros, Manuel", "country_associated": "sp", "authorized_access_point": "Armenteros, Manuel"} 1 -2023-07-08 08:16:23.746569 2023-07-08 08:16:23.746574 0630d8b5-881d-4834-8126-7b8ab7d3ea5e {"md5": "198e252d06a4f3184c3f718b11421676", "pid": "1213491738", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1213491738", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1213491738", "source": "GND"}], "variant_name": ["Ramlee, Shah Iskandar Fahmie", "Fahmie Ramlee, Shah Iskandar", "Iskandar Fahmie Ramlee, Shah"], "preferred_name": "Shah Iskandar Fahmie Ramlee", "country_associated": "my", "variant_access_point": ["Ramlee, Shah Iskandar Fahmie", "Fahmie Ramlee, Shah Iskandar", "Iskandar Fahmie Ramlee, Shah"], "authorized_access_point": "Shah Iskandar Fahmie Ramlee"} 1 -2023-07-08 08:16:23.838721 2023-07-08 08:16:23.838729 65b71c38-ca56-40ef-a8c6-a8117a81d1aa {"md5": "8934bf699804f0ff01d1fca01cfb5f40", "pid": "121376621", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/121376621", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/121376621", "source": "GND"}], "variant_name": ["LeBlanc, Thomas", "Blanc, Thomas le"], "date_of_birth": "1951", "preferred_name": "Le Blanc, Thomas", "country_associated": "gw", "variant_access_point": ["LeBlanc, Thomas, 1951-", "Blanc, Thomas le, 1951-"], "parallel_access_point": ["Le Blanc, Thomas, 1951-"], "authorized_access_point": "Le Blanc, Thomas, 1951-"} 1 -2023-07-08 08:16:23.944022 2023-07-08 08:16:23.944027 f142de6e-9f2c-4f2d-8de7-3116c61d46fd {"md5": "913ce4f39bceedb46ec13d45d36149c2", "pid": "121432467", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/121432467", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/121432467", "source": "GND"}], "variant_name": ["Pfaler, Ernst", "Pfahler, Ernst", "Pfahlern, Ernestus von"], "date_of_birth": "1588", "date_of_death": "1650", "preferred_name": "Pfahlern, Ernst von", "country_associated": "gw", "variant_access_point": ["Pfaler, Ernst, 1588-1650", "Pfahler, Ernst, 1588-1650", "Pfahlern, Ernestus von, 1588-1650"], "authorized_access_point": "Pfahlern, Ernst von, 1588-1650"} 1 -2023-07-08 08:16:24.050163 2023-07-08 08:16:24.050171 7ab0abc4-aed2-4a97-9594-88657e952e42 {"md5": "a9d29db100bc7e824bd1b75cf5ee1486", "pid": "121455637", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/121455637", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/121455637", "source": "GND"}], "date_of_birth": "1959", "preferred_name": "Ganß, Ingrid", "country_associated": "gw", "authorized_access_point": "Ganß, Ingrid, 1959-", "biographical_information": ["schreibt historische Romane"]} 1 -2023-07-08 08:16:24.141788 2023-07-08 08:16:24.141797 d7786a4b-cdec-4aac-963a-c95f1c1a2a69 {"md5": "4605b7b69c8338bce63051a187e81ddf", "pid": "1215224869", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1215224869", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1215224869", "source": "GND"}], "date_of_birth": "XXXX", "date_of_death": "1918", "preferred_name": "Bouillon, Charles Otto", "country_associated": "gw", "authorized_access_point": "Bouillon, Charles Otto, XXXX-1918", "biographical_information": ["1911 Empfänger der Fidicin-Medaille des Vereins für die Geschichte Berlins"]} 1 -2023-07-08 08:16:24.24011 2023-07-08 08:16:24.240119 bf978634-c47f-4654-bd59-0ed3c9911308 {"md5": "5e066b5ad25e12f73410d87440587e20", "pid": "1215239556", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1215239556", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1215239556", "source": "GND"}], "preferred_name": "Wlasow, Renata", "authorized_access_point": "Wlasow, Renata"} 1 -2023-07-08 08:16:24.433078 2023-07-08 08:16:24.433087 24905009-dd3c-44de-9ff5-8f2932e32c12 {"md5": "8b2fad236442ff170653b5ef2599cd62", "pid": "1215719418", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1215719418", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1215719418", "source": "GND"}], "variant_name": ["Scheiz, Matthias Josef"], "date_of_birth": "1754", "date_of_death": "1800", "preferred_name": "Scheiz, Robert", "country_associated": "sz", "variant_access_point": ["Scheiz, Matthias Josef, 1754-1800"], "authorized_access_point": "Scheiz, Robert, 1754-1800"} 1 -2023-07-08 08:16:24.521123 2023-07-08 08:16:24.521131 38e8132e-866f-4840-98e8-f9095bdb277b {"md5": "6478a664d565ebac2ba373c3a858fb8f", "pid": "1216057184", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1216057184", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1216057184", "source": "GND"}], "variant_name": ["Meara, Graeme O'"], "preferred_name": "O'Meara, Graeme", "country_associated": "ie", "variant_access_point": ["Meara, Graeme O'"], "authorized_access_point": "O'Meara, Graeme"} 1 -2023-07-08 08:16:24.712305 2023-07-08 08:16:24.71231 0787ecc0-4375-4f47-a330-7dc1a376cad6 {"md5": "a2a806e1891800c43627d5d2a819c998", "pid": "12167410X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/12167410X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12167410X", "source": "GND"}], "date_of_birth": "1958", "preferred_name": "Rusconi, Maria", "authorized_access_point": "Rusconi, Maria, 1958-", "biographical_information": ["Sekretärin, Autorin"]} 1 -2023-07-08 08:16:24.807732 2023-07-08 08:16:24.807738 5d9688dc-9422-4184-9d60-f4f72df75d72 {"md5": "69ad3278c57d8b22dfcc63eb10160345", "pid": "1217064974", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1217064974", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1217064974", "source": "GND"}], "date_of_birth": "1820", "date_of_death": "1882", "preferred_name": "Bremen, Julius Bernhard von", "country_associated": "ru", "authorized_access_point": "Bremen, Julius Bernhard von, 1820-1882"} 1 -2023-07-08 08:16:25.021439 2023-07-08 08:16:25.021444 f0133e5e-2243-4380-a537-5ab68fcdc035 {"md5": "8bd964768253620146a5ce670ebb167b", "pid": "12172249X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/12172249X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12172249X", "source": "GND"}], "date_of_birth": "1947", "preferred_name": "Bartsch, Kurt", "country_associated": "au", "authorized_access_point": "Bartsch, Kurt, 1947-", "biographical_information": ["Graz, Univ., Diss., 1972; Österreich. Professor für neuere dt. Literatur an d. Univ. Graz"]} 1 -2023-07-08 08:16:25.12485 2023-07-08 08:16:25.124855 71925256-dc8b-49ea-b8aa-40e904d15882 {"md5": "8d56783126d0cba2ca8ee5ab412ed450", "pid": "12173692X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/12173692X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12173692X", "source": "GND"}], "date_of_birth": "1966", "preferred_name": "Schulenberg, Ulf", "authorized_access_point": "Schulenberg, Ulf, 1966-", "biographical_information": ["CIP-Diss. Fachbereich Sprach- und Literaturwissenschaften"]} 1 -2023-07-08 08:16:25.215433 2023-07-08 08:16:25.215436 5a5754e6-9feb-47ef-a019-228b7d9bf524 {"md5": "fdf7951c32f75a4852c1cb6e2bc7bc3a", "pid": "1218087730", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1218087730", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1218087730", "source": "GND"}], "variant_name": ["Möhärrämova, Dilä", "Chajretdinova, Dilja Fagimovna", "Mucharrjamova, Dilja"], "date_of_birth": "1981", "preferred_name": "Häjretdinova, Dilä Fäẖim kyzy", "country_associated": "ru", "variant_access_point": ["Möhärrämova, Dilä, 1981-", "Chajretdinova, Dilja Fagimovna, 1981-", "Mucharrjamova, Dilja, 1981-"], "authorized_access_point": "Häjretdinova, Dilä Fäẖim kyzy, 1981-"} 1 -2023-07-08 08:16:25.318124 2023-07-08 08:16:25.318138 609d1bdb-5c7f-43c9-af4c-2d90177d95cb {"md5": "840164f2666b27cc967ef44ca5fb403f", "pid": "1218379219", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1218379219", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1218379219", "source": "GND"}], "variant_name": ["Regionalʹnyj obščestvennyj fond im. V.T. Kozlova", "Региональный общественный фонд им. В. Т. Козлова", "Региональный общ. Фонд сод .Разв. и Под. Культуры и иск. им. В.Т.КО"], "preferred_name": "Regional'nyj obščestvennyj fond sodejstvija razvitiju i podderžke kul'tury i iskusstva imeni V. T. Kozlova", "country_associated": "ru", "date_of_termination": "01.04.2008", "variant_access_point": ["Regionalʹnyj obščestvennyj fond im. V.T. Kozlova. Unveraenderte Form", "Региональный общественный фонд им. В. Т. Козлова", "Региональный общ. Фонд сод .Разв. и Под. Культуры и иск. им. В.Т.КО"], "date_of_establishment": "01.04.1997", "parallel_access_point": ["Региональный общественный фонд содействия развитию и поддержке культуры и искусства имени В. Т. Козлова"], "authorized_access_point": "Regional'nyj obščestvennyj fond sodejstvija razvitiju i podderžke kul'tury i iskusstva imeni V. T. Kozlova"} 1 -2023-07-08 08:16:25.504543 2023-07-08 08:16:25.504551 90a935df-369e-4378-a6ef-581dee0c35aa {"md5": "113077cb83e3761ddf156acdc2556b21", "pid": "121855775", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/121855775", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/121855775", "source": "GND"}], "date_of_birth": "1943", "preferred_name": "Clemens, Nancy", "country_associated": "xxu", "authorized_access_point": "Clemens, Nancy, 1943-", "biographical_information": ["Amerikan. Massagetherapeutin, Heilerin"]} 1 -2023-07-08 08:16:25.711305 2023-07-08 08:16:25.71131 cc7e2967-88af-4f51-b1ce-3ec1634b41e7 {"md5": "9a6c0686f8ce02d342ab3f13dba65cb5", "pid": "1218605995", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1218605995", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1218605995", "source": "GND"}], "preferred_name": "Ayerbe Fiala, Sofia", "authorized_access_point": "Ayerbe Fiala, Sofia"} 1 -2023-07-08 08:16:25.812835 2023-07-08 08:16:25.81284 9ed22059-ec5f-4242-86eb-773e384ce80b {"md5": "684edce74e94b7c029ec0eab51c59a41", "pid": "1218696680", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1218696680", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1218696680", "source": "GND"}], "preferred_name": "Winkler, Michael", "country_associated": "gw", "authorized_access_point": "Winkler, Michael", "biographical_information": ["Mitbegründer der Stadtreformer und der Werkstatt für Gemeindeaufbau"]} 1 -2023-07-08 08:16:25.912417 2023-07-08 08:16:25.912421 662684e5-c674-46e9-aa78-1a0f048ffddb {"md5": "baf5651a0be235b3436a59b80a5e8ef3", "pid": "1219001767", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1219001767", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1219001767", "source": "GND"}], "preferred_name": "Wang, Li", "country_associated": "cc", "authorized_access_point": "Wang, Li"} 1 -2023-07-08 08:16:26.01221 2023-07-08 08:16:26.012215 d1fdcfc4-858f-4537-b52e-2dc3e16886cf {"md5": "78a506e4871f9ded15abc7ab82e0fb60", "pid": "1219020982", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1219020982", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1219020982", "source": "GND"}], "date_of_birth": "1952", "preferred_name": "Salis, Marianne von", "country_associated": "gw", "authorized_access_point": "Salis, Marianne von, 1952-", "biographical_information": ["lebt in Norddeutschland"]} 1 -2023-07-08 08:16:26.109167 2023-07-08 08:16:26.109172 ae10cbe8-510f-4aca-a3fa-776b5c1791ee {"md5": "6eb68d3204bac64866727eae2dbab324", "pid": "121953823X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/121953823X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/121953823X", "source": "GND"}], "preferred_name": "Zweck, Erich", "country_associated": "gw", "authorized_access_point": "Zweck, Erich"} 1 -2023-07-08 08:16:26.209943 2023-07-08 08:16:26.209948 adc78b8f-6bb9-4434-aae1-fe9b96439c81 {"md5": "3e79a729a601269e2ae34c68b839a220", "pid": "1219543527", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1219543527", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1219543527", "source": "GND"}], "variant_name": ["Short Course Sum of Squares: Theory and Applications"], "preferred_name": "AMS Short Course Sum of Squares: Theory and Applications", "country_associated": "xxu", "variant_access_point": ["Short Course Sum of Squares: Theory and Applications, 2019, Baltimore, Maryland"], "authorized_access_point": "AMS Short Course Sum of Squares: Theory and Applications, 2019, Baltimore, Maryland"} 1 -2023-07-08 08:16:26.294204 2023-07-08 08:16:26.294208 4aa6d3e1-5696-4a24-bcb3-fe3df4b69bc5 {"md5": "6487851d4807467f9e376fb3d955fbf8", "pid": "121978338", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/121978338", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/121978338", "source": "GND"}], "variant_name": ["Omojo Oguche, Esther"], "date_of_birth": "ca. 1965", "date_of_death": "ca. 1998", "preferred_name": "Oguche, Esther Omojo", "country_associated": "nr", "variant_access_point": ["Omojo Oguche, Esther, ca. 1965-ca. 1998"], "authorized_access_point": "Oguche, Esther Omojo, ca. 1965-ca. 1998", "biographical_information": ["Nigerian. Evangelistin"]} 1 -2023-07-08 08:16:26.394938 2023-07-08 08:16:26.394943 c16081e1-bdd4-4b79-8fa1-43ac3b608cb7 {"md5": "bd4309121f03bf0f11260ab77e627acb", "pid": "1219884790", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1219884790", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1219884790", "source": "GND"}], "date_of_birth": "1980", "preferred_name": "Borge, Jessica", "country_associated": "xxk", "authorized_access_point": "Borge, Jessica, 1980-", "biographical_information": ["Digital scholarship manager at Kings College London, Archive & research collections; Visiting Fellow in Digital humanities, School of Advanced Study, Univ. of London (Stand 2020)"]} 1 -2023-07-08 08:16:26.485658 2023-07-08 08:16:26.485666 35514310-3ea5-4be8-89d0-efa60862d04e {"md5": "252a0f6fa43c1279c8aec0874fba6805", "pid": "1219946478", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1219946478", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1219946478", "source": "GND"}], "preferred_name": "Brettschneider, Florian", "authorized_access_point": "Brettschneider, Florian"} 1 -2023-07-08 08:16:26.576118 2023-07-08 08:16:26.576125 f47a242b-4fb3-45f6-92d3-bd59accb200a {"md5": "0fca5215384c783d29f18d736f7a97bc", "pid": "1220523410", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://d-nb.info/gnd/1220523410", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1220523410", "source": "GND"}], "variant_name": ["Fischer, Ken"], "preferred_name": "Fischer, Kenneth C.", "country_associated": "xxu", "variant_access_point": ["Fischer, Ken"], "authorized_access_point": "Fischer, Kenneth C.", "biographical_information": ["President of the University Musical Society of the University of Michigan (UMS)"]} 1 -2023-07-08 08:16:26.677031 2023-07-08 08:16:26.677038 32f2af1a-6f8d-48f0-9fd6-365084b7200c {"md5": "e0c5d98bedbff7b9e8ec5be19ed533ac", "pid": "1220778273", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1220778273", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1220778273", "source": "GND"}], "variant_name": ["Salas Bahamón, Luz Magdalena", "Salas, Luz"], "preferred_name": "Salas, Luz Magdalena", "country_associated": "ck", "variant_access_point": ["Salas Bahamón, Luz Magdalena", "Salas, Luz"], "authorized_access_point": "Salas, Luz Magdalena"} 1 -2023-07-08 08:16:26.770435 2023-07-08 08:16:26.770438 802ac8d8-c003-4984-9aa9-376b099832c7 {"md5": "85e8190e9ac7402466d9a9d76f600794", "pid": "1221205536", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1221205536", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1221205536", "source": "GND"}], "date_of_birth": "1921", "preferred_name": "Chenevier, Paul", "country_associated": "fr", "authorized_access_point": "Chenevier, Paul, 1921-", "biographical_information": ["Kriegsgefangener von 1942-1945 im Lager STALAG IX A Ziegenhain; Zwangsarbeit in Siegen und Netphen-Deuz"]} 1 -2023-07-08 08:16:26.863304 2023-07-08 08:16:26.863312 4f00bf4a-2324-43ae-ae87-43b3398395e9 {"md5": "e49ade568c45ddcf999cfe7a791a2de6", "pid": "1221416952", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1221416952", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1221416952", "source": "GND"}], "date_of_birth": "1940", "preferred_name": "Dost, Jörg", "country_associated": "gw", "authorized_access_point": "Dost, Jörg, 1940-"} 1 -2023-07-08 08:16:26.946679 2023-07-08 08:16:26.946685 8bb26bbe-78f2-4c98-868e-eda18a09858e {"md5": "7854033cd19bd4b2eef654c3d30b9985", "pid": "1221561332", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1221561332", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1221561332", "source": "GND"}], "variant_name": ["Kershaw, Paul J. E.", "Kershaw, P. J. E."], "preferred_name": "Kershaw, Paul", "country_associated": "xxk", "variant_access_point": ["Kershaw, Paul J. E.", "Kershaw, P. J. E."], "authorized_access_point": "Kershaw, Paul", "biographical_information": ["BA (Hons), Medieval and Modern History, King's College, University of London, 1989; MPhil, Medieval History, Jesus College, University of Cambridge, 1991; PhD, King's College, University of London, 1999"]} 1 -2023-07-08 08:16:27.043898 2023-07-08 08:16:27.043902 bf0174a1-41cf-4fb3-acb9-b6c39531c056 {"md5": "f0d16f55881bf3356b6eab72f968d878", "pid": "1221637401", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1221637401", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1221637401", "source": "GND"}], "variant_name": ["Ameli, A."], "preferred_name": "Ameli, Amir", "country_associated": "xxu", "variant_access_point": ["Ameli, A."], "authorized_access_point": "Ameli, Amir"} 1 -2023-07-08 08:16:27.144094 2023-07-08 08:16:27.144099 3aae7543-e7f2-494b-917c-140c7e0f5a04 {"md5": "c7036816267fd05b16759ffebff0fc00", "pid": "1221643304", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1221643304", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1221643304", "source": "GND"}], "date_of_birth": "ca. 20./21.Jh.", "preferred_name": "Carter, Jamison", "country_associated": "xxu", "authorized_access_point": "Carter, Jamison, ca. 20./21.Jh."} 1 -2023-07-08 08:16:27.234441 2023-07-08 08:16:27.234444 cf37fd68-5a60-4b47-902f-46e4ab933463 {"md5": "ce5639936038a7e830f5908870f21e6a", "pid": "1221680293", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1221680293", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1221680293", "source": "GND"}], "date_of_birth": "ca. 20./21. Jh.", "preferred_name": "Karriqi, Skënder", "country_associated": "aa", "authorized_access_point": "Karriqi, Skënder, ca. 20./21. Jh."} 1 -2023-07-08 08:16:27.325251 2023-07-08 08:16:27.325259 ef05f16f-ac39-4a69-833a-89fdb7722649 {"md5": "1160a6a9a6051f749ff5d857cb30a2e0", "pid": "1221818635", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1221818635", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1221818635", "source": "GND"}], "preferred_name": "Seida, Kimberly", "country_associated": "xxc", "authorized_access_point": "Seida, Kimberly", "biographical_information": ["Doktorandin an der McGill University, B.A. University of British Columbia 2010"]} 1 -2023-07-08 08:16:27.624908 2023-07-08 08:16:27.624914 c5b5b338-3938-40ce-988f-069da8d26119 {"md5": "9feb11cc4b255e05af0e143b10b300ca", "pid": "1222466716", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1222466716", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1222466716", "source": "GND"}], "preferred_name": "Wetters, Sascha", "authorized_access_point": "Wetters, Sascha"} 1 -2023-07-08 08:16:27.719627 2023-07-08 10:28:56.83342 b56fd31e-11dc-4167-9f2f-bc7f22161130 {"md5": "8bd74a9a4611e6788a5face0ecadfff9", "pid": "1222736330", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1222736330", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1222736330", "source": "GND"}], "date_of_birth": "1897", "preferred_name": "Haug, Gustav", "country_associated": "gw", "authorized_access_point": "Haug, Gustav, 1897-"} 2 -2023-07-08 08:16:27.411383 2023-07-08 10:30:53.951566 2face5d3-8f83-44e1-8251-80fbb1e1a40d {"md5": "509bfa3156708d5f28e938c027aee5bf", "pid": "122214459X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/122214459X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/122214459X", "source": "GND"}], "variant_name": ["ISQS, 26."], "preferred_name": "International Conference on Integrable Systems and Quantum Symmetries, 26.", "variant_access_point": ["ISQS, 26., 2019, Prag"], "authorized_access_point": "International Conference on Integrable Systems and Quantum Symmetries, 26., 2019, Prag"} 2 -2023-07-08 08:16:27.902795 2023-07-08 08:16:27.902804 6b1c8288-7070-4881-9dcb-3f76a1321bdd {"md5": "4fc71a4d9dbf207f7deb03f5eac58ba4", "pid": "1223515273", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1223515273", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1223515273", "source": "GND"}], "variant_name": ["Ev. Kirchengemeinde Castrop-Rauxel-Nord"], "preferred_name": "Evangelische Kirchengemeinde Castrop-Rauxel-Nord", "country_associated": "gw", "variant_access_point": ["Ev. Kirchengemeinde Castrop-Rauxel-Nord"], "date_of_establishment": "01.01.2020", "authorized_access_point": "Evangelische Kirchengemeinde Castrop-Rauxel-Nord", "biographical_information": ["Entstand zum 1. Januar 2020 durch Fusion der Evangelischen Friedenskirchengemeinde Castrop-Rauxel mit der Evangelischen Kirchengemeinde Habinghorst"]} 1 -2023-07-08 08:16:27.995755 2023-07-08 08:16:27.995761 a20fe207-4fea-4d21-87d8-949e42867c28 {"md5": "6042fdc8b86467347d52dfd5c5551bb5", "pid": "1223549372", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1223549372", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1223549372", "source": "GND"}], "preferred_name": "Mehchy, Zaki", "authorized_access_point": "Mehchy, Zaki"} 1 -2023-07-08 08:16:28.088077 2023-07-08 08:16:28.088085 ff77bcdc-62d8-4c5c-adb6-ed93a88377d3 {"md5": "abb7322d918871d2249799b95441752f", "pid": "122397274", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/122397274", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/122397274", "source": "GND"}], "preferred_name": "Schwartz, Leslie", "country_associated": "xxu", "authorized_access_point": "Schwartz, Leslie"} 1 -2023-07-08 08:16:28.170341 2023-07-08 08:16:28.170344 21fd55ed-97e7-45dc-ac40-a49b3708a1d6 {"md5": "8a838ef452bb125a36e151c335f0b314", "pid": "122416600", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/122416600", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/122416600", "source": "GND"}], "date_of_birth": "1958", "preferred_name": "Boßbach, Christel", "authorized_access_point": "Boßbach, Christel, 1958-", "biographical_information": ["Rundfunkredakteurin u. Journalistin"]} 1 -2023-07-08 08:16:28.267694 2023-07-08 08:16:28.2677 7e4f40ad-c04a-4622-88e1-3cb09a3f6461 {"md5": "8048a03609287e32dc06630d3db8a733", "pid": "1224690672", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1224690672", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1224690672", "source": "GND"}], "variant_name": ["Annual Student Archaeology Conference, 3.", "CASA, 3.", "New frontiers in archaeology"], "preferred_name": "Cambridge Annual Student Archaeology Conference, 3.", "country_associated": "xxk", "variant_access_point": ["Annual Student Archaeology Conference, 3., 2019, Cambridge", "CASA, 3., 2019, Cambridge", "New frontiers in archaeology. Veranstaltung, 2019, Cambridge"], "authorized_access_point": "Cambridge Annual Student Archaeology Conference, 3., 2019, Cambridge"} 1 -2023-07-08 08:16:28.349172 2023-07-08 08:16:28.34918 4ad5fd76-1a30-4a9e-b392-583e8261bdb4 {"md5": "8571417c3e7ef76bdc73329b7f2a4be4", "pid": "1225165792", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1225165792", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1225165792", "source": "GND"}], "variant_name": ["Jungkuntz, Theodore Robert", "Jungkuntz, Theodore", "Jungkuntz, Ted"], "date_of_birth": "06.02.1932", "date_of_death": "08.06.2020", "preferred_name": "Jungkuntz, Theodore R.", "country_associated": "xxu", "variant_access_point": ["Jungkuntz, Theodore Robert, 1932-2020", "Jungkuntz, Theodore, 1932-2020", "Jungkuntz, Ted, 1932-2020"], "authorized_access_point": "Jungkuntz, Theodore R., 1932-2020", "biographical_information": ["amerikan. lutherischer Theologe, Pfarrer der Lutheran Church Missouri Synod zunächst 1963-1966 in Concordia, Miss., seit 1983 in Ann Arbor Michigan; 1966-1983 Associate Professor of Theology an der Valparaiso University (Valparaiso, In); 1969-1972 Direktor des Reutlingen Study Center der Valparaiso University"]} 1 -2023-07-08 08:16:28.442771 2023-07-08 08:16:28.442776 87c4e6d1-2961-4bfc-bcfc-050e4f991d83 {"md5": "fa4178a19649554c86f39f257e214a73", "pid": "1225314704", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1225314704", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1225314704", "source": "GND"}], "variant_name": ["ICERE, 6."], "preferred_name": "International Conference on Environment and Renewable Energy, 6.", "variant_access_point": ["ICERE, 6., 2020, Online"], "authorized_access_point": "International Conference on Environment and Renewable Energy, 6., 2020, Online", "biographical_information": ["Aufgrund der COVID-19-Pandemie als Online-Konferenz abgehalten (ursprünglicher Veranstaltungsort: Hanoi, Vietnam)"]} 1 -2023-07-08 08:16:28.534178 2023-07-08 08:16:28.534187 3cc2c8cd-63f6-4941-8129-3b97402ae668 {"md5": "f01e9b1b8c8e729ada6e03fcdd96d5d1", "pid": "1225318955", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1225318955", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1225318955", "source": "GND"}], "variant_name": ["Besmar Nieves, Joel R.", "Nieves, Joel R. Besmar"], "date_of_birth": "1968", "preferred_name": "Besmar, Joel", "country_associated": "cu", "variant_access_point": ["Besmar Nieves, Joel R., 1968-", "Nieves, Joel R. Besmar, 1968-"], "authorized_access_point": "Besmar, Joel, 1968-"} 1 -2023-07-08 08:16:28.627196 2023-07-08 08:16:28.627202 02dc99e8-ca1b-490d-8943-7e925689f1a0 {"md5": "9b0c7c0e8a6499aef49edf98a1bbaf56", "pid": "1225369967", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1225369967", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1225369967", "source": "GND"}], "variant_name": ["Amt für Straßen- und Verkehrswesen"], "preferred_name": "Bad Arolsen. Amt für Straßen- und Verkehrswesen", "country_associated": "gw", "variant_access_point": ["Amt für Straßen- und Verkehrswesen. Bad Arolsen"], "authorized_access_point": "Bad Arolsen. Amt für Straßen- und Verkehrswesen"} 1 -2023-07-08 08:16:28.716674 2023-07-08 08:16:28.716683 0ca4135a-b8d0-41f7-a9f7-d6c54942ac3e {"md5": "10a0aab0dfa7b43e6c8e12976ad2acc7", "pid": "1225371562", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1225371562", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1225371562", "source": "GND"}], "variant_name": ["郑, 裕庭"], "preferred_name": "Zheng, Yuting", "country_associated": "cc", "variant_access_point": ["郑, 裕庭"], "parallel_access_point": ["郑裕庭"], "authorized_access_point": "Zheng, Yuting"} 1 -2023-07-08 08:16:28.811414 2023-07-08 08:16:28.811419 97cc8d55-fceb-4ef3-8793-04e1b24a8ecf {"md5": "50cf21f7791f83107c0f5c8cd2a2b388", "pid": "122546016", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/122546016", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/122546016", "source": "GND"}], "variant_name": ["Hein, Malte Probst-"], "date_of_birth": "1970", "preferred_name": "Probst-Hein, Malte", "country_associated": "gw", "variant_access_point": ["Hein, Malte Probst-, 1970-"], "authorized_access_point": "Probst-Hein, Malte, 1970-", "biographical_information": ["Diss. Fachbereich Maschinenbau"]} 1 -2023-07-08 08:16:28.907227 2023-07-08 08:16:28.907236 d5abf0e8-78f2-422d-896a-d8e1e3772a44 {"md5": "75e3f5383884cdc9c4a70afa576c6db4", "pid": "1225499038", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1225499038", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1225499038", "source": "GND"}], "variant_name": ["Surachat Phētlīlā", "Phētlīlā, Surachat", "Nō̜m Wisētsing", "สุรฉัตร เพชรลีลา", "อภิชาติ เพชรลีลา", "นอม วิเศษสิงห์"], "preferred_name": "ʻAphichāt Phetlīlā", "country_associated": "th", "variant_access_point": ["Surachat Phētlīlā", "Phētlīlā, Surachat", "Nō̜m Wisētsing", "สุรฉัตร เพชรลีลา", "อภิชาติ เพชรลีลา", "นอม วิเศษสิงห์"], "parallel_access_point": ["อภิชาติ เพชรลีลา"], "authorized_access_point": "ʻAphichāt Phetlīlā"} 1 -2023-07-08 08:16:29.141551 2023-07-08 08:16:29.141555 d2c2b9da-d3d3-40e5-a3bb-1df986d71431 {"md5": "edeb4364ca71141266fa681528935816", "pid": "1225880351", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1225880351", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1225880351", "source": "GND"}], "preferred_name": "Labazova, Olga", "country_associated": "ru", "authorized_access_point": "Labazova, Olga"} 1 -2023-07-08 08:16:29.234935 2023-07-08 08:16:29.234938 fd19cb87-a333-47a1-8c95-3b24b51e6845 {"md5": "f3231c77cad9cf1fbf71789b40fe922e", "pid": "1226168973", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1226168973", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1226168973", "source": "GND"}], "variant_name": ["Myocardial Pathology Segmentation, 1.", "Challenge Myocardial Pathology Segmentation, 1."], "preferred_name": "MyoPS, 1.", "variant_access_point": ["Myocardial Pathology Segmentation, 1., 2020, Online", "Challenge Myocardial Pathology Segmentation, 1., 2020, Online"], "authorized_access_point": "MyoPS, 1., 2020, Online", "biographical_information": ["Aufgrund der Covid-19 Pandemie fand der Kongress online statt und nicht in Lima"]} 1 -2023-07-08 08:16:29.32374 2023-07-08 08:16:29.323745 356aa7bd-7310-4e4b-a372-d5021078563b {"md5": "b0a5f506dfb7d5960352ddf0dea2bcea", "pid": "1226343031", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1226343031", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1226343031", "source": "GND"}], "preferred_name": "Steiner, Leon Amadeus", "country_associated": "gw", "authorized_access_point": "Steiner, Leon Amadeus", "biographical_information": ["Berlin, Univ.-Medizin, Diss., 2020"]} 1 -2023-07-08 08:16:29.430149 2023-07-08 08:16:29.430154 e43ca9cb-cee6-4a91-aa13-85f0b87c2bac {"md5": "8f42a64ff3de51c36ac68cd9dbb2b572", "pid": "122765052", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/122765052", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/122765052", "source": "GND"}], "date_of_birth": "1964", "preferred_name": "Lynch, Stephen", "country_associated": "xxk", "authorized_access_point": "Lynch, Stephen, 1964-", "biographical_information": ["Tätig an der School of Computing, Mathematics and Digital Technology, Manchester Metropolitan University, Manchester, UK"]} 1 -2023-07-08 08:16:29.5259 2023-07-08 08:16:29.525905 fb9be1e2-643c-4c3a-9139-7e35185a92bb {"md5": "522924985048fce788a95c3e93d0eb11", "pid": "122787900", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "qualifier": "Familie", "identifier": "http://d-nb.info/gnd/122787900", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/122787900", "source": "GND"}], "preferred_name": "Zanthier, Familie", "country_associated": "gw", "authorized_access_point": "Zanthier, Familie", "biographical_information": ["Familie aus Schmachtenberg "]} 1 -2023-07-08 08:16:29.618381 2023-07-08 08:16:29.61839 4a9b2ebb-3f95-4a31-bb6e-8854f787c9e8 {"md5": "5b61af5a9f7d57e48f3e82b5bf87964d", "pid": "1228480222", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1228480222", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1228480222", "source": "GND"}], "date_of_birth": "1997", "preferred_name": "Rösgen, Vanessa", "authorized_access_point": "Rösgen, Vanessa, 1997-"} 1 -2023-07-08 08:16:29.827392 2023-07-08 08:16:29.827398 54e98a84-0dc8-46e9-9532-ba4a541bc874 {"md5": "f78c155da272a712708e51f7f7f0c6a9", "pid": "1228854041", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1228854041", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1228854041", "source": "GND"}], "preferred_name": "Frizell, Genevieve", "authorized_access_point": "Frizell, Genevieve"} 1 -2023-07-08 08:16:29.926786 2023-07-08 08:16:29.926792 433f3f3e-07b8-4e4a-a6cb-3ccff6eaa946 {"md5": "57faa31825e35a70fd5595e9bedff6e9", "pid": "1228866244", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1228866244", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1228866244", "source": "GND"}], "date_of_birth": "19XX", "preferred_name": "Pawollek, Christian", "country_associated": "gw", "authorized_access_point": "Pawollek, Christian, 19XX-", "biographical_information": ["Promovierte 2018 an der Universität Trier"]} 1 -2023-07-08 08:16:30.033406 2023-07-08 08:16:30.033415 2f7d15b2-279b-4c10-aaf6-d10a72c77d6e {"md5": "98458e8a98672497bdceaf1247ca12fd", "pid": "122919455X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/122919455X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/122919455X", "source": "GND"}], "preferred_name": "Reitberger, Thomas", "country_associated": "gw", "authorized_access_point": "Reitberger, Thomas", "biographical_information": ["Diss. Technische Fakultät der Univ. Erlangen-Nürnberg"]} 1 -2023-07-08 08:16:30.130916 2023-07-08 08:16:30.130925 24e74d0a-4a02-4b11-9b5f-b5a670c507ff {"md5": "1791a0f7ca243179fb9f503bc09e27a3", "pid": "122987870X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/122987870X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/122987870X", "source": "GND"}], "date_of_birth": "1783", "date_of_death": "1806", "preferred_name": "Falk, Friedrich Gottlieb", "country_associated": "ru", "authorized_access_point": "Falk, Friedrich Gottlieb, 1783-1806"} 1 -2023-07-08 08:16:30.242503 2023-07-08 08:16:30.242508 8253c754-88f8-4d8e-897a-76344ddc56f2 {"md5": "e64041a6743a484f3d8a6860e5d9f638", "pid": "1230449663", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1230449663", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1230449663", "source": "GND"}], "preferred_name": "PENZISBETTINI", "country_associated": "sz", "authorized_access_point": "PENZISBETTINI"} 1 -2023-07-08 08:16:30.325841 2023-07-08 08:16:30.325846 1ceada3b-52e9-4850-ba35-6d7acfd16fa2 {"md5": "adc6b11970e000e6aae608a2c42d9ffd", "pid": "1230581847", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1230581847", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1230581847", "source": "GND"}], "variant_name": ["Niigatashi-Rekishi-Hakubutsukan", "Niigata-City-History-Museum", "Minatopia Museum", "Minatopia Niigata City History Museum", "ニイガタシ レキシ ハクブツカン", "みなとぴあ", "ミナトピア"], "preferred_name": "Niigatashi Rekishi Hakubutsukan", "country_associated": "ja", "variant_access_point": ["Niigatashi-Rekishi-Hakubutsukan", "Niigata-City-History-Museum", "Minatopia Museum", "Minatopia Niigata City History Museum", "ニイガタシ レキシ ハクブツカン", "みなとぴあ", "ミナトピア"], "date_of_establishment": "27.03.2004", "parallel_access_point": ["新潟市歴史博物館"], "authorized_access_point": "Niigatashi Rekishi Hakubutsukan"} 1 -2023-07-08 08:16:30.425844 2023-07-08 08:16:30.425851 9c0408f1-3d73-473a-8756-26a21af34f86 {"md5": "a312b3ea26c8e3bb5ef064676754ded9", "pid": "1230588736", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1230588736", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1230588736", "source": "GND"}], "preferred_name": "Gmür, Oscar", "country_associated": "it", "authorized_access_point": "Gmür, Oscar"} 1 -2023-07-08 08:16:30.520671 2023-07-08 08:16:30.520679 f1d3aaf6-2643-426a-8d4f-5e7b8b8ff987 {"md5": "49ad162f50aa91b6135ac46bfc02b48b", "pid": "1230589619", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1230589619", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1230589619", "source": "GND"}], "preferred_name": "Malekshahi, Azim", "country_associated": "gw", "authorized_access_point": "Malekshahi, Azim", "biographical_information": ["Promotion Universität Tübingen, Mathematisch-Naturwissenschaftliche Fakultät"]} 1 -2023-07-08 08:16:30.759714 2023-07-08 08:16:30.75972 94c977b2-0ec4-48b5-b57b-ed23fdbc7592 {"md5": "f8e138ac0519907b5afa4e36bb3940c2", "pid": "1231012749", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1231012749", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1231012749", "source": "GND"}], "variant_name": ["Harrah, William F.", "Harrah, William Fisk", "Harrah, Bill"], "date_of_birth": "1911", "date_of_death": "1978", "preferred_name": "Harrah, William", "country_associated": "xxu", "variant_access_point": ["Harrah, William F., 1911-1978", "Harrah, William Fisk, 1911-1978", "Harrah, Bill, 1911-1978"], "authorized_access_point": "Harrah, William, 1911-1978"} 1 -2023-07-08 08:16:30.859566 2023-07-08 08:16:30.859572 b3c827c2-7f3a-4af3-b1ef-0ec77790bd9c {"md5": "fafe24b3de3086bcf09ea1e6618a5b8d", "pid": "1231084758", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1231084758", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1231084758", "source": "GND"}], "date_of_birth": "1978", "preferred_name": "Tremblay, Jean-Philippe", "country_associated": "xxc", "authorized_access_point": "Tremblay, Jean-Philippe, 1978-"} 1 -2023-07-08 08:16:30.960142 2023-07-08 08:16:30.960147 52d638ec-ce60-48ed-9bf4-50d1979fce78 {"md5": "e0603d77f91cb8a535cb7d0140c70de4", "pid": "123171770X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/123171770X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/123171770X", "source": "GND"}], "preferred_name": "Weinstein, Israel", "authorized_access_point": "Weinstein, Israel"} 1 -2023-07-08 08:16:30.622308 2023-07-08 10:27:50.147517 0d19b80f-b8b6-4b53-812e-5ee09226ff15 {"md5": "6c56733902e07709e94f1d713b6760ca", "pid": "123090598", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/123090598", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/123090598", "source": "GND"}], "date_of_birth": "1942", "preferred_name": "Nievergelt, Dieter", "country_associated": "sz", "authorized_access_point": "Nievergelt, Dieter, 1942-"} 2 -2023-07-08 08:16:31.059725 2023-07-08 08:16:31.05973 82750559-203c-4776-a71e-f4dcc9ef3731 {"md5": "dbab92c3951cfd309ff71ee08cba76bc", "pid": "1232328308", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1232328308", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1232328308", "source": "GND"}], "variant_name": ["Stabsstelle für Kulturfragen"], "preferred_name": "Liechtenstein. Stabsstelle für Kulturfragen", "country_associated": "lh", "date_of_termination": "2012", "variant_access_point": ["Stabsstelle für Kulturfragen. Liechtenstein"], "date_of_establishment": "1999", "authorized_access_point": "Liechtenstein. Stabsstelle für Kulturfragen"} 1 -2023-07-08 08:16:31.159188 2023-07-08 08:16:31.159194 c65c29c0-816e-49ab-9338-8ce6a8d2eb6c {"md5": "8d3bf801880c956540cf0d205e80af92", "pid": "1232437530", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1232437530", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1232437530", "source": "GND"}], "variant_name": ["Mette Juul, Tilde"], "preferred_name": "Juul, Tilde Mette", "country_associated": "dk", "variant_access_point": ["Mette Juul, Tilde"], "authorized_access_point": "Juul, Tilde Mette", "biographical_information": ["Børne- og Undervisningsministeriet, København, Specialkonsulent"]} 1 -2023-07-08 08:16:31.244073 2023-07-08 08:16:31.244077 dad76645-d6eb-4892-9b7c-49154771f46f {"md5": "975beec406e25d09bb5c4d9419d70678", "pid": "1232542377", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1232542377", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1232542377", "source": "GND"}], "variant_name": ["Druckerei Dörfler", "Dörfler, Druckerei"], "preferred_name": "Druckerei Dörfler", "country_associated": "gw", "variant_access_point": ["Druckerei Dörfler. Fürth/Bayern", "Dörfler, Druckerei"], "date_of_establishment": "1955", "authorized_access_point": "Druckerei Dörfler"} 1 -2023-07-08 08:16:31.320234 2023-07-08 08:16:31.320243 4cf91a61-280b-4a58-8dcb-e286d76171ac {"md5": "b32d52c06634c66f0041ed6f7567422a", "pid": "123269021X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/123269021X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/123269021X", "source": "GND"}], "preferred_name": "Tambouratzis, George", "country_associated": "gr", "authorized_access_point": "Tambouratzis, George"} 1 -2023-07-08 08:16:31.419004 2023-07-08 08:16:31.419013 48b414e9-b0f6-4de8-be2b-46f61045508a {"md5": "216e7b96701f68cfe90ff099ea87c118", "pid": "123314348", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/123314348", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/123314348", "source": "GND"}], "variant_name": ["Bădiliţă, Cristian", "Badilita, Christian", "Pomicultor"], "date_of_birth": "1968", "preferred_name": "Badiliţa, Cristian", "country_associated": "rm", "variant_access_point": ["Bădiliţă, Cristian, 1968-", "Badilita, Christian, 1968-", "Pomicultor, 1968-"], "authorized_access_point": "Badiliţa, Cristian, 1968-", "biographical_information": ["Docteur de l'Univ. Paris-IV Sorbonne"]} 1 -2023-07-08 08:16:31.51245 2023-07-08 08:16:31.512455 5e716924-9a2c-4916-80c3-a62574a3716c {"md5": "ff696b3f8d8b41856cbdadbab98f1b0e", "pid": "1233766767", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1233766767", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1233766767", "source": "GND"}], "variant_name": ["Ḥājj, Laylá", "الحاج، ليلى"], "preferred_name": "Ḥāǧǧ, Lailā al-", "variant_access_point": ["Ḥājj, Laylá", "الحاج، ليلى"], "parallel_access_point": ["الحاج, ليلى"], "authorized_access_point": "Ḥāǧǧ, Lailā al-"} 1 -2023-07-08 08:16:31.602891 2023-07-08 08:16:31.602899 834ee624-c446-484c-a8b7-f423a5abca62 {"md5": "b401c54b40fe2695c6207a966e4ad88c", "pid": "1233797700", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1233797700", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1233797700", "source": "GND"}], "date_of_birth": "1979", "preferred_name": "Osterwalder, Pascale", "country_associated": "sz", "authorized_access_point": "Osterwalder, Pascale, 1979-", "biographical_information": ["Schweizer Illustratorin, Animationskünstlerin und Visuelle Gestalterin; lebt seit 2008 in Wien"]} 1 -2023-07-08 08:16:31.694949 2023-07-08 08:16:31.694954 98aea9da-c934-4704-ada8-7592503c35fb {"md5": "9349931c033de7cab844a3e15f2046d7", "pid": "1234157845", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1234157845", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1234157845", "source": "GND"}], "preferred_name": "Molloy, Hannah", "country_associated": "xxk", "authorized_access_point": "Molloy, Hannah"} 1 -2023-07-08 08:16:31.783503 2023-07-08 08:16:31.783508 6f001e2b-86c8-489a-a327-822e522d14c6 {"md5": "14f1435e1e122ecb944055fdb0eb065d", "pid": "1234276402", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1234276402", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1234276402", "source": "GND"}], "variant_name": ["Fisher, W. E."], "preferred_name": "Fisher, Waldo E.", "country_associated": "xxu", "variant_access_point": ["Fisher, W. E."], "authorized_access_point": "Fisher, Waldo E."} 1 -2023-07-08 08:16:31.864088 2023-07-08 08:16:31.864093 c57c1ed0-f223-4d98-bf99-5a3e084f140b {"md5": "77322cd8e64a99ecf9bed401d7308df2", "pid": "1234416433", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1234416433", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1234416433", "source": "GND"}], "preferred_name": "Marbach, Gertrud", "country_associated": "gw", "authorized_access_point": "Marbach, Gertrud"} 1 -2023-07-08 08:16:31.959023 2023-07-08 08:16:31.959028 4005adb0-6ba4-454a-b011-c3fa413074c9 {"md5": "e428693735e2f2618c580604d147c90a", "pid": "123444578", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://d-nb.info/gnd/123444578", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/123444578", "source": "GND"}], "variant_name": ["Geshe Michael Roach", "Roach, Geshe Michael", "Roach, Michael Philip"], "date_of_birth": "1952", "preferred_name": "Roach, Michael", "country_associated": "xxu", "variant_access_point": ["Geshe Michael Roach, 1952-", "Roach, Geshe Michael, 1952-", "Roach, Michael Philip, 1952-"], "parallel_access_point": ["Roach, Michael, 1952-"], "authorized_access_point": "Roach, Michael, 1952-", "biographical_information": ["Amerikanischer buddhistischer Mönch"]} 1 -2023-07-08 08:16:32.159684 2023-07-08 08:16:32.15969 936a93dd-0724-48c9-8c53-fd2879b9a9ce {"md5": "da237599dabf282390bf813ac8111d8b", "pid": "1235035301", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1235035301", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1235035301", "source": "GND"}], "preferred_name": "Forgács, Robert", "authorized_access_point": "Forgács, Robert", "biographical_information": ["Ph.D. 1997, University of New South Wales; musicologist and Neo-Latinist"]} 1 -2023-07-08 08:16:32.258864 2023-07-08 08:16:32.258869 b7c06116-935f-43f3-8ad1-5b5c5e729816 {"md5": "8093c1f9285b414712c98db961944eda", "pid": "123508193", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/123508193", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/123508193", "source": "GND"}], "date_of_birth": "1961", "preferred_name": "Rasche, Klemens", "authorized_access_point": "Rasche, Klemens, 1961-"} 1 -2023-07-08 08:16:32.368744 2023-07-08 08:16:32.368752 3e38e61d-0ed5-4592-8f63-fd0041a99473 {"md5": "c2e19223bcfac88c898dc32b5905ee66", "pid": "123522315", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/123522315", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/123522315", "source": "GND"}], "date_of_birth": "1975", "preferred_name": "Haller, Sven Andreas", "authorized_access_point": "Haller, Sven Andreas, 1975-", "biographical_information": ["Diss. Medizinische Fakultät"]} 1 -2023-07-08 08:16:32.470268 2023-07-08 08:16:32.470277 15a8e0d6-8307-4681-97a6-c1851ee63637 {"md5": "732beca667bf6485f3fc146805db1b08", "pid": "1235577384", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1235577384", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1235577384", "source": "GND"}], "preferred_name": "Calendriers d'Europe et d'Asie", "country_associated": "fr", "authorized_access_point": "Calendriers d'Europe et d'Asie. Veranstaltung, 2017, Paris"} 1 -2023-07-08 08:16:32.560175 2023-07-08 08:16:32.560181 acd92317-3403-41ea-ad8d-4216ede1cf2d {"md5": "d990510dd3d79ecb3538e66779a5d491", "pid": "123572817X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/123572817X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/123572817X", "source": "GND"}], "variant_name": ["Ch'oe, Chang-ho", "崔, 章浩", "최, 장호"], "preferred_name": "Choe, Jang ho", "country_associated": "ko", "variant_access_point": ["Ch'oe, Chang-ho", "崔, 章浩", "최, 장호"], "parallel_access_point": ["崔章浩", "최장호"], "authorized_access_point": "Choe, Jang ho"} 1 -2023-07-08 08:16:32.646278 2023-07-08 08:16:32.646283 980f981d-059c-46e9-b8c5-3d8f437a8bb5 {"md5": "ce71b0874f68cc6a4142aff4476d768f", "pid": "1235805395", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1235805395", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1235805395", "source": "GND"}], "preferred_name": "Stokowski, Alexander", "country_associated": "gw", "authorized_access_point": "Stokowski, Alexander", "biographical_information": ["Pfarrer im Kirchenbezirk Löbau-Zittau (Projektstelle zur Begleitung des Strukturwandels in der Lausitz) und Gemeindepfarrer in der Versöhnungskirchengemeinde Görlitz"]} 1 -2023-07-08 08:16:32.742489 2023-07-08 08:16:32.742494 1195cca2-96d2-48e0-88d5-a3b348a3ae95 {"md5": "edce063249a4bce9cab6c3c3094455b8", "pid": "1235864014", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1235864014", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1235864014", "source": "GND"}], "variant_name": ["Veiga, Diego Sande"], "date_of_birth": "1981", "preferred_name": "Sande Veiga, Diego", "country_associated": "sp", "variant_access_point": ["Veiga, Diego Sande, 1981-"], "authorized_access_point": "Sande Veiga, Diego, 1981-"} 1 -2023-07-08 08:16:32.817173 2023-07-08 08:16:32.817178 b2910499-0204-4ea0-a889-5f2ea7cf38b5 {"md5": "61383e5a2b8c7137a879bf8f0d397673", "pid": "1236151380", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1236151380", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1236151380", "source": "GND"}], "preferred_name": "Sachs, Sebastian", "country_associated": "gw", "authorized_access_point": "Sachs, Sebastian"} 1 -2023-07-08 08:16:32.910275 2023-07-08 08:16:32.910281 8702d2ce-478d-4cd0-a3b9-1bf41c992f02 {"md5": "eed27354a34c51db23a14d3547f6ea2d", "pid": "123617286", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://d-nb.info/gnd/123617286", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/123617286", "source": "GND"}], "variant_name": ["Choate, Joseph", "Choate, Joseph H.", "Hodges Choate, Joseph"], "date_of_birth": "24.01.1832", "date_of_death": "14.05.1917", "preferred_name": "Choate, Joseph Hodges", "country_associated": "xxu", "variant_access_point": ["Choate, Joseph, 1832-1917", "Choate, Joseph H., 1832-1917", "Hodges Choate, Joseph, 1832-1917"], "authorized_access_point": "Choate, Joseph Hodges, 1832-1917"} 1 -2023-07-08 08:16:33.013532 2023-07-08 08:16:33.013537 462c212f-6e61-40e1-9687-d55d8f46ea07 {"md5": "83e5b986c11a2836f728cceb7f19b48c", "pid": "123644372", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/123644372", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/123644372", "source": "GND"}], "variant_name": ["Nesterova, Natalʹja Igorevna", "Nesterova, Natalʹja", "Nesterova, Natalia Igorevna", "Nesterova, Natalya"], "date_of_birth": "1944", "preferred_name": "Nesterova, Natalʹja I.", "country_associated": "ru", "variant_access_point": ["Nesterova, Natalʹja Igorevna, 1944-", "Nesterova, Natalʹja, 1944-", "Nesterova, Natalia Igorevna, 1944-", "Nesterova, Natalya, 1944-"], "parallel_access_point": ["Nesterova, Natalʹi︠a︡, 1944-"], "authorized_access_point": "Nesterova, Natalʹja I., 1944-", "biographical_information": ["Russ. Malerin"]} 1 -2023-07-08 08:16:33.106742 2023-07-08 08:16:33.106746 cd1ae668-4563-4426-84da-9e32d1d69dbe {"md5": "cf03828fed5a1067622829ddf8e00595", "pid": "1236649613", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1236649613", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1236649613", "source": "GND"}], "variant_name": ["Guo, P.", "Guo Peixiang", "Peixiang, Guo"], "preferred_name": "Guo, Peixiang", "country_associated": "cc", "variant_access_point": ["Guo, P.", "Guo Peixiang", "Peixiang, Guo"], "authorized_access_point": "Guo, Peixiang", "biographical_information": ["School of Agricultural Economics and Rural Development, Renmin University of China, Beijing, China"]} 1 -2023-07-08 08:16:33.282176 2023-07-08 08:16:33.282178 eed0012c-6ada-4eee-bada-e3293599de93 {"md5": "8b5241c23138887af42b7ef3c832f925", "pid": "1236915291", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1236915291", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1236915291", "source": "GND"}], "variant_name": ["Ziyan, Huang", "Huang Ziyan"], "preferred_name": "Huang, Ziyan", "country_associated": "xxu", "variant_access_point": ["Ziyan, Huang", "Huang Ziyan"], "authorized_access_point": "Huang, Ziyan"} 1 -2023-07-08 08:16:33.361593 2023-07-08 08:16:33.361601 3c58f5ae-fb95-461e-b1a1-4dc4a6f83682 {"md5": "b510dab08033d170281f044200d0b73d", "pid": "1237119766", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1237119766", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1237119766", "source": "GND"}], "preferred_name": "Günay, Arkın", "country_associated": "tu", "authorized_access_point": "Günay, Arkın"} 1 -2023-07-08 08:16:33.443142 2023-07-08 08:16:33.443147 f81bf189-9d58-4fa0-8847-ac6147c2e916 {"md5": "df18e0802a4289c0f96d2a2acbe263b2", "pid": "123718376", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/123718376", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/123718376", "source": "GND"}], "variant_name": ["Welcker, Johann Friedrich Christoph"], "date_of_birth": "12.02.1770", "date_of_death": "29.04.1841", "preferred_name": "Welcker, Johann Christoph Friedrich", "variant_access_point": ["Welcker, Johann Friedrich Christoph, 1770-1841"], "authorized_access_point": "Welcker, Johann Christoph Friedrich, 1770-1841", "biographical_information": ["Pfarrer, Rektor, Inspektor"]} 1 -2023-07-08 08:16:33.525159 2023-07-08 08:16:33.525164 d2111e4d-bd51-45af-90bd-507ecd58c5f3 {"md5": "e89de82a436ebcbd776d3fb59c34b4cf", "pid": "1237506611", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1237506611", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1237506611", "source": "GND"}], "preferred_name": "May, Yvonne", "country_associated": "gw", "authorized_access_point": "May, Yvonne"} 1 -2023-07-08 08:16:33.625404 2023-07-08 08:16:33.62541 a3f9aa28-5e68-48c7-b81a-9f79126694dc {"md5": "57cc1f4339affb8fb832d108e076cbd1", "pid": "123768624", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/123768624", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/123768624", "source": "GND"}], "date_of_birth": "1965", "preferred_name": "Grossmann, Stefan", "authorized_access_point": "Grossmann, Stefan, 1965-", "biographical_information": ["Dr. rer. pol.; Wirtschaftswissenschaftler im Bildungscontrolling"]} 1 -2023-07-08 08:16:33.719032 2023-07-08 08:16:33.719043 2914cf71-eb6f-4dd7-8cd8-04dfebc31363 {"md5": "ee2ba6a63eb826ac8d862ed99d277f70", "pid": "1238037844", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1238037844", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1238037844", "source": "GND"}], "preferred_name": "Goertz, Hans-Jürgen", "authorized_access_point": "Goertz, Hans-Jürgen"} 1 -2023-07-08 08:16:33.828461 2023-07-08 08:16:33.828467 f78ff166-8f48-4e0d-8159-03e8cc52701d {"md5": "3d1147b65c50594bd48c74bb2949678b", "pid": "1238039944", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1238039944", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1238039944", "source": "GND"}], "preferred_name": "Sonata a Tre", "date_of_establishment": "1992", "authorized_access_point": "Sonata a Tre", "biographical_information": ["Mitglieder: Emil Drápela (Klarinette, künstlerischer Leiter), Marie Gajdošová (Violine) und Dana Drápelová (Klavier)"]} 1 -2023-07-08 08:16:33.94385 2023-07-08 08:16:33.943856 dcf61b6b-5d32-4a00-93ed-313abb2148e8 {"md5": "07dd633b01ed4282ca010366a895daec", "pid": "123806305", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/123806305", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/123806305", "source": "GND"}], "date_of_birth": "1961", "preferred_name": "Leitner, Hans", "country_associated": "gw", "parallel_access_point": ["Leitner, Hans, 1961-"], "authorized_access_point": "Leitner, Hans, 1961-", "biographical_information": ["u.a. Orgelsachverständiger; DMA: Domorganist in München"]} 1 -2023-07-08 08:16:34.051226 2023-07-08 08:16:34.051233 18f0c6f9-8625-437c-ba72-29b6e313625b {"md5": "7232365137d159ba1aead9728dd06162", "pid": "1238167659", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1238167659", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1238167659", "source": "GND"}], "date_of_birth": "1984", "preferred_name": "Steiner, Kirsten", "country_associated": "gw", "authorized_access_point": "Steiner, Kirsten, 1984-"} 1 -2023-07-08 08:16:34.146867 2023-07-08 08:16:34.146872 e25b3883-be1f-4e5b-af00-685cd18ebde0 {"md5": "2d1277331501659b14edd482401691db", "pid": "1239691408", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1239691408", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1239691408", "source": "GND"}], "variant_name": ["Leibniz-Institut für Verbundwerkstoffe GmbH", "IVW"], "preferred_name": "Leibniz-Institut für Verbundwerkstoffe", "country_associated": "gw", "variant_access_point": ["Leibniz-Institut für Verbundwerkstoffe GmbH. Unveraenderte Form", "IVW. Abkuerzung"], "date_of_establishment": "01.01.2021", "authorized_access_point": "Leibniz-Institut für Verbundwerkstoffe", "biographical_information": ["Das Leibniz-Institut für Verbundwerkstoffe (IVW) ist eine gemeinnützige Forschungseinrichtung des Landes Rheinland-Pfalz und der Technischen Universität Kaiserslautern.Als Mitglied der Leibniz-Gemeinschaft erhält das Institut institutionelle Zuwendungen gemäß AV-WGL zur gemeinsamen finanziellen Förderung von Einrichtungen durch Bund und Länder (Bundesanteil 50%, Anteil des Landes Rheinland-Pfalz und der Ländergesamtheit 50%)."]} 1 -2023-07-08 08:16:34.241199 2023-07-08 08:16:34.241205 1dab3bb1-a9ac-48fd-a404-cb2ace1f8066 {"md5": "dfc4b40e050d6034d61aad9e88cadfd3", "pid": "1240158319", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1240158319", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1240158319", "source": "GND"}], "preferred_name": "Fröhlich, Ludwig", "authorized_access_point": "Fröhlich, Ludwig", "biographical_information": ["Zusammenstellender von: Altenburger Liederkranz"]} 1 -2023-07-08 08:16:34.322984 2023-07-08 08:16:34.322993 c1dc1738-2353-48dc-a21c-709ed006b1a0 {"md5": "f5366ae5d4b1a9691ddc784344c14ee8", "pid": "124025064", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/124025064", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124025064", "source": "GND"}], "date_of_birth": "1893", "date_of_death": "1972", "preferred_name": "Trapp, Otto", "country_associated": "gw", "authorized_access_point": "Trapp, Otto, 1893-1972", "biographical_information": ["Dt. Zahnarzt"]} 1 -2023-07-08 08:16:34.52049 2023-07-08 08:16:34.520498 8c05856b-68b8-4685-9872-cfd7389cb996 {"md5": "fad4d5a9e3d1a959eeb0e219bce07a76", "pid": "1240323492", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1240323492", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1240323492", "source": "GND"}], "date_of_birth": "1709", "date_of_death": "1769", "preferred_name": "Voigt, Gottlieb Wilhelm", "country_associated": "gw", "authorized_access_point": "Voigt, Gottlieb Wilhelm, 1709-1769"} 1 -2023-07-08 08:16:34.61294 2023-07-08 08:16:34.612945 4982717b-4417-49fa-b09d-02fcffa2b7cc {"md5": "7c7fb2b51c06b1a6937ca025db58fc02", "pid": "1240334206", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1240334206", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1240334206", "source": "GND"}], "date_of_birth": "1719", "date_of_death": "1789", "preferred_name": "Fries, Johann Georg", "country_associated": "gw", "authorized_access_point": "Fries, Johann Georg, 1719-1789"} 1 -2023-07-08 08:16:34.713293 2023-07-08 08:16:34.713299 bf10491d-ba9f-4dc7-9004-f10f8cd3088a {"md5": "22e6457df42815dd34ea48849ca747e0", "pid": "124045790", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/124045790", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124045790", "source": "GND"}], "variant_name": ["Oldermann, Bernhardus"], "preferred_name": "Oldermann, Bernhard", "country_associated": "gw", "variant_access_point": ["Oldermann, Bernhardus"], "authorized_access_point": "Oldermann, Bernhard", "biographical_information": ["immatrikulierte sich 1674 in Kiel und 1680 in Rostock und war von 1698-1726 Prediger in Arnæs"]} 1 -2023-07-08 08:16:34.806618 2023-07-08 08:16:34.806627 dfa23155-d67c-41c5-8cea-c6705d42b62c {"md5": "53742241c4509e8eb3ba2f58ab7e6d5d", "pid": "1240634323", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1240634323", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1240634323", "source": "GND"}], "preferred_name": "Hirsiger, Marcel", "country_associated": "sz", "authorized_access_point": "Hirsiger, Marcel", "biographical_information": ["Dozent an der Hochschule für Wirtschaft, Fachhochschule Nordwestschweiz"]} 1 -2023-07-08 08:16:34.893525 2023-07-08 08:16:34.893532 3b1cc593-88f1-4a57-bb87-a8585c9d428f {"md5": "c199674a8245cdf499e94745678440a7", "pid": "1240922175", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1240922175", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1240922175", "source": "GND"}], "preferred_name": "Arbeitskreis für freie Erziehung e.V.", "country_associated": "gw", "date_of_establishment": "1981", "authorized_access_point": "Arbeitskreis für freie Erziehung e.V."} 1 -2023-07-08 08:16:34.98411 2023-07-08 08:16:34.984118 15853dd4-f01c-4442-ae2f-10fb4298f779 {"md5": "ac237e7dda054053c513566bf820ef1d", "pid": "1241124949", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1241124949", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1241124949", "source": "GND"}], "variant_name": ["Internationaler Exlibris-Kongress, 21.", "XXI. Internationaler Exlibris-Kongress", "21. Internationaler Exlibris-Kongress"], "preferred_name": "International Exlibris Congress, 21.", "country_associated": "ne", "variant_access_point": ["Internationaler Exlibris-Kongress, 21., 1986, Utrecht", "XXI. Internationaler Exlibris-Kongress, 1986, Utrecht", "21. Internationaler Exlibris-Kongress, 1986, Utrecht"], "authorized_access_point": "International Exlibris Congress, 21., 1986, Utrecht"} 1 -2023-07-08 08:16:35.17873 2023-07-08 08:16:35.178736 ffaaf84c-034d-4ff3-92fb-c12ceb80a488 {"md5": "0141897033acbc564f0ab3382c611381", "pid": "1241191921", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1241191921", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1241191921", "source": "GND"}], "date_of_birth": "ca. 20./21. Jh.", "preferred_name": "Strunz, Franz", "country_associated": "gw", "authorized_access_point": "Strunz, Franz, ca. 20./21. Jh."} 1 -2023-07-08 08:16:35.2782 2023-07-08 08:16:35.278206 ae18a2ac-8fa6-4856-b9b0-c409e87afdf5 {"md5": "28c3319abe8633044b0e4988dfd3fe67", "pid": "1241199418", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1241199418", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1241199418", "source": "GND"}], "preferred_name": "Wladimir-Kusnezow-Chor", "country_associated": "ru", "authorized_access_point": "Wladimir-Kusnezow-Chor", "biographical_information": ["Männerchor, Repertoire: Russische Volkslieder, Kosakenlieder"]} 1 -2023-07-08 08:16:35.077171 2023-07-08 10:31:01.030457 c19ced50-70e2-4a6d-b50d-8dbbf1406cdd {"md5": "14206e9449f7a72a803861f8b1b3bfcb", "pid": "1241190755", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1241190755", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1241190755", "source": "GND"}], "variant_name": ["Jihyeon Kim", "Jihyeon, Kim", "Kim Jihyeon"], "preferred_name": "Kim, Jihyeon", "country_associated": "xxu", "variant_access_point": ["Jihyeon Kim", "Jihyeon, Kim", "Kim Jihyeon"], "authorized_access_point": "Kim, Jihyeon"} 2 -2023-07-08 08:16:35.462994 2023-07-08 08:16:35.462999 1240ac15-7034-49f9-b25a-eef86243fdb5 {"md5": "0e6d6032e6a58aa1b4333fff100cef9b", "pid": "124250076", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/124250076", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124250076", "source": "GND"}], "variant_name": ["Helwich, Georgius", "Hellwich, Georgius", "Hellwich, Georg", "Helwig, Georgius", "Helwichius, Georgius", "Helwig, Georg", "Hellwichius, Georgius", "Helwichus, Georg", "Helvichius, Georgius", "GHM", "G.H.M."], "date_of_birth": "21.07.1588", "date_of_death": "05.12.1632", "preferred_name": "Helwich, Georg", "country_associated": "gw", "variant_access_point": ["Helwich, Georgius, 1588-1632", "Hellwich, Georgius, 1588-1632", "Hellwich, Georg, 1588-1632", "Helwig, Georgius, 1588-1632", "Helwichius, Georgius, 1588-1632", "Helwig, Georg, 1588-1632", "Hellwichius, Georgius, 1588-1632", "Helwichus, Georg, 1588-1632", "Helvichius, Georgius, 1588-1632", "GHM, 1588-1632", "G.H.M., 1588-1632"], "authorized_access_point": "Helwich, Georg, 1588-1632", "biographical_information": ["Vikar des hohen Domstifts zu Mainz"]} 1 -2023-07-08 08:16:35.552186 2023-07-08 08:16:35.552195 df43d82a-29be-4ea9-bcad-b4a079d3caa4 {"md5": "0f3cbf6ec1f6e13e7360efe771be24a0", "pid": "124257070", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/124257070", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124257070", "source": "GND"}], "date_of_birth": "1968", "preferred_name": "Fiehn, Dietmar", "authorized_access_point": "Fiehn, Dietmar, 1968-", "biographical_information": ["Informatiker"]} 1 -2023-07-08 08:16:35.643201 2023-07-08 08:16:35.643208 f62b70b1-0321-4756-a52b-78d2f4e18eed {"md5": "c6f69488ec4bda6de1633336df98ad2b", "pid": "124257151", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/124257151", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124257151", "source": "GND"}], "date_of_birth": "1852", "preferred_name": "Navarra, Gerolamo", "country_associated": "it", "authorized_access_point": "Navarra, Gerolamo, 1852-"} 1 -2023-07-08 08:16:35.752563 2023-07-08 08:16:35.752572 6ae48acd-55ab-4769-86b8-12e7846f6ffe {"md5": "6b304bb286ea94786bcf9e1738bec25f", "pid": "124268512X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/124268512X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124268512X", "source": "GND"}], "variant_name": ["Yating, Li", "Li Yating"], "preferred_name": "Li, Yating", "country_associated": "cc", "variant_access_point": ["Yating, Li", "Li Yating"], "authorized_access_point": "Li, Yating"} 1 -2023-07-08 08:16:35.930703 2023-07-08 08:16:35.930712 4e0842d4-6b5d-47c1-9975-2923f28da075 {"md5": "fef56cdf1e5dc3052d9e5733b61cc6a1", "pid": "124284299", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/124284299", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124284299", "source": "GND"}], "variant_name": ["Mannoury d'Ectot, Marquise", "Mannoury d'Ectot, H. Nicolas le Blanc, Marquise", "Coeur-Brûlant, Vicomtesse de", "Nicolas le Blanc, H.", "Mannoury d'Ectot, Henri de", "Manoury, ... de", "Hugo, Viktor"], "preferred_name": "Mannoury d'Ectot, H. de", "country_associated": "fr", "variant_access_point": ["Mannoury d'Ectot, Marquise", "Mannoury d'Ectot, H. Nicolas le Blanc, Marquise", "Coeur-Brûlant, Vicomtesse de", "Nicolas le Blanc, H.", "Mannoury d'Ectot, Henri de", "Manoury, ... de", "Hugo, Viktor"], "parallel_access_point": ["Mannoury d'Ectot"], "authorized_access_point": "Mannoury d'Ectot, H. de", "biographical_information": ["mutmaßl. Verf. des Romans \\"Les cousines de la colonelle\\", der früher Guy de Maupassant zugeschrieben wurde"]} 1 -2023-07-08 08:16:36.026352 2023-07-08 08:16:36.026357 6bad30c4-d5ab-422f-a956-1037fdb3ce18 {"md5": "66155f4424eac581bd5f9b5fa9532b5e", "pid": "1243013648", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1243013648", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1243013648", "source": "GND"}], "date_of_birth": "1985", "preferred_name": "Keshmirian, Anita", "country_associated": "ir", "authorized_access_point": "Keshmirian, Anita, 1985-", "biographical_information": ["Dissertation, Graduate School of Systemic Neurosciences (GSN), Ludwig-Maximilians-Universität München, 2021"]} 1 -2023-07-08 08:16:36.152751 2023-07-08 08:16:36.152759 125e1f48-434f-45ee-b994-e1de5f8f325b {"md5": "e69812e1caca77c790739a107d3b2794", "pid": "124311861X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/124311861X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124311861X", "source": "GND"}], "variant_name": ["PERC"], "preferred_name": "Physics Education Research Conference", "variant_access_point": ["PERC, 2020, Online"], "authorized_access_point": "Physics Education Research Conference, 2020, Online"} 1 -2023-07-08 08:16:36.242407 2023-07-08 08:16:36.242413 45569ebc-e77d-4e6e-aef9-30d9c85ac327 {"md5": "78be0c387c5b2ac1e87a07cc75b075c0", "pid": "124326764X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/124326764X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124326764X", "source": "GND"}], "variant_name": ["Rößle, Ludwig Gottfried Carl"], "date_of_birth": "01.06.1765", "date_of_death": "20.04.1840", "preferred_name": "Rößle, Gottfried Carl", "country_associated": "gw", "variant_access_point": ["Rößle, Ludwig Gottfried Carl, 1765-1840"], "authorized_access_point": "Rößle, Gottfried Carl, 1765-1840", "biographical_information": ["aus Öhringen; Jurastudent in Tübingen; Hofrat"]} 1 -2023-07-08 08:16:35.36725 2023-07-08 10:28:18.012857 00bed35c-b9aa-4025-856f-fddb7761657d {"md5": "4d8e1e7bd6f4cab82da81b23b2aa9f2d", "pid": "1242496343", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1242496343", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1242496343", "source": "GND"}], "preferred_name": "Mir, Mark Stephen", "country_associated": "xxu", "authorized_access_point": "Mir, Mark Stephen"} 2 -2023-07-08 08:16:36.430445 2023-07-08 08:16:36.43045 f7ec81fe-062d-4c4d-a5b9-9217d8f3b54d {"md5": "039afa12a8cb483c1cd71b32e816fd52", "pid": "1243856505", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "qualifier": "de", "identifier": "http://d-nb.info/gnd/1243856505", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1243856505", "source": "GND"}], "date_of_birth": "ca. 1706", "date_of_death": "25.04.1760", "preferred_name": "Marteville, Ludvig, de", "authorized_access_point": "Marteville, Ludvig, de, 1706-1760"} 1 -2023-07-08 08:16:36.517097 2023-07-08 08:16:36.517106 2d6153a2-283b-4ef1-a3a2-cfe44b4132cd {"md5": "ec8c4f2006629046ec9aa052fe375f0a", "pid": "12438644X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/12438644X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12438644X", "source": "GND"}], "date_of_birth": "1955", "preferred_name": "Heinzel, Matthias", "authorized_access_point": "Heinzel, Matthias, 1955-"} 1 -2023-07-08 08:16:36.608566 2023-07-08 08:16:36.608572 51e2e537-6663-4ac0-9fab-9ec763935c02 {"md5": "38e637a45234be4cf4f862e1fe50109e", "pid": "1243882166", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1243882166", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1243882166", "source": "GND"}], "preferred_name": "Boityere, Charles", "authorized_access_point": "Boityere, Charles"} 1 -2023-07-08 08:16:36.699709 2023-07-08 08:16:36.699716 8493cbcc-b95a-4c30-8674-a3c54fe379bb {"md5": "99cbd002ad842e8dfcb3ff5c2b5d8b3a", "pid": "1243929332", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1243929332", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1243929332", "source": "GND"}], "preferred_name": "Jänsch, ...", "authorized_access_point": "Jänsch, ..."} 1 -2023-07-08 08:16:36.792126 2023-07-08 08:16:36.792132 2bf4cb1c-8828-480f-8083-c810aca035e0 {"md5": "9632a06e882959e34e8360ea54f52328", "pid": "1243929464", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1243929464", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1243929464", "source": "GND"}], "date_of_birth": "1788", "preferred_name": "Freyse, Johann Friedrich", "authorized_access_point": "Freyse, Johann Friedrich, 1788-"} 1 -2023-07-08 08:16:36.887025 2023-07-08 08:16:36.887033 7b82bbf5-0cbd-4e8e-85fd-a73510cd148d {"md5": "b24deca1eddb16446754a94d8e71849b", "pid": "1243973145", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1243973145", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1243973145", "source": "GND"}], "date_of_birth": "1554", "date_of_death": "12.01.1623", "preferred_name": "Renner, Georg", "authorized_access_point": "Renner, Georg, 1554-1623"} 1 -2023-07-08 08:16:36.990998 2023-07-08 08:16:36.991002 420fd64e-900f-4c6e-bfe4-da85e578c935 {"md5": "7fc87bcf0f12ccf18e392280a23a1a6f", "pid": "1244179469", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1244179469", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1244179469", "source": "GND"}], "date_of_birth": "1879", "date_of_death": "1922", "preferred_name": "Hofmeister, Otto", "country_associated": "gw", "authorized_access_point": "Hofmeister, Otto, 1879-1922", "biographical_information": ["Leiter eines optischen Betriebs"]} 1 -2023-07-08 08:16:37.085744 2023-07-08 08:16:37.085752 fc61d2b1-c853-4e4e-bd35-20a5de451873 {"md5": "25067f870d1789401dcb01866a336e38", "pid": "124423256", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/124423256", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124423256", "source": "GND"}], "date_of_birth": "12.11.1943", "date_of_death": "01.02.2009", "preferred_name": "Salter, Richard", "country_associated": "xxk", "authorized_access_point": "Salter, Richard, 1943-2009", "biographical_information": ["Brit. Opern- und Konzertsänger"]} 1 -2023-07-08 08:16:37.168507 2023-07-08 08:16:37.16851 24cdd3fc-fc17-47de-866a-9d0c15101204 {"md5": "aae954ecee8a82cc58aaf42f740306df", "pid": "124457711", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/124457711", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124457711", "source": "GND"}], "variant_name": ["Pichler, Meinrad G."], "date_of_birth": "1947", "preferred_name": "Pichler, Meinrad", "country_associated": "au", "variant_access_point": ["Pichler, Meinrad G., 1947-"], "authorized_access_point": "Pichler, Meinrad, 1947-", "biographical_information": ["Veröffentlichungen zur neueren Geschichte Vorarlbergs"]} 1 -2023-07-08 08:16:37.382266 2023-07-08 08:16:37.382268 e7f22000-5108-4c51-9513-aa1a572cb9ad {"md5": "7b6ede7178eee2c3e64ad9009fcd8587", "pid": "1245339214", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1245339214", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1245339214", "source": "GND"}], "variant_name": ["Dēmuleas, P."], "date_of_birth": "ca. 20./21. Jh.", "preferred_name": "Dēmuleas, Panagiōtēs", "country_associated": "gr", "variant_access_point": ["Dēmuleas, P., ca. 20./21. Jh."], "parallel_access_point": ["Δημουλέας, Παναγιώτης, ca. 20./21. Jh."], "authorized_access_point": "Dēmuleas, Panagiōtēs, ca. 20./21. Jh."} 1 -2023-07-08 08:16:42.676368 2023-07-08 08:16:42.676375 dde7d70a-90f5-42df-a897-9d69b7e451c3 {"md5": "3952c1e39759aaf3be2c117b55e54a7e", "pid": "1259359026", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1259359026", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1259359026", "source": "GND"}], "date_of_birth": "1960", "preferred_name": "Mallet, Thierry", "country_associated": "fr", "authorized_access_point": "Mallet, Thierry, 1960-"} 1 -2023-07-08 08:16:36.323594 2023-07-08 10:27:59.981963 b0817366-fca0-484a-b4d6-38adcb4d4ce7 {"md5": "b17d2e6ad8b1ad079223e28fcc134c08", "pid": "124384196", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/124384196", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124384196", "source": "GND"}], "date_of_birth": "1917", "date_of_death": "1995", "preferred_name": "Holtrop, Jan", "country_associated": "ne", "authorized_access_point": "Holtrop, Jan, 1917-1995", "biographical_information": ["Niederländ. Maler"]} 2 -2023-07-08 08:16:37.475801 2023-07-08 08:16:37.475808 4b252f4f-9078-48c4-9f37-41af6e71bd3a {"md5": "4123442b566f750088e38f3adc6ee445", "pid": "1245458760", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1245458760", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1245458760", "source": "GND"}], "variant_name": ["Melior, Alexander"], "preferred_name": "Melior, Alexandrus", "country_associated": "gw", "variant_access_point": ["Melior, Alexander"], "authorized_access_point": "Melior, Alexandrus", "biographical_information": ["Benediktinermönch in St. Maximin zu Trier, Professor an der Theologischen Fakultät zu Trier"]} 1 -2023-07-08 08:16:37.677182 2023-07-08 08:16:37.677188 8900369a-0eed-4f21-890e-14ebdaa49017 {"md5": "20548c01858a29b0344735764f8cfef2", "pid": "124603106", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/124603106", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124603106", "source": "GND"}], "variant_name": ["Schwartz, Baruch J.", "Švarc, Baruch", "Shvarts, Barukh", "Shvarts, Barukh Yaàkov", "Švarc, Baruch Dž."], "preferred_name": "Shṿarts, Barukh Yaʿaḳov", "variant_access_point": ["Schwartz, Baruch J.", "Švarc, Baruch", "Shvarts, Barukh", "Shvarts, Barukh Yaàkov", "Švarc, Baruch Dž."], "parallel_access_point": ["שורץ, ברוך יעקב"], "authorized_access_point": "Shṿarts, Barukh Yaʿaḳov", "biographical_information": ["Jüd. Theologe"]} 1 -2023-07-08 08:16:37.774896 2023-07-08 08:16:37.774902 71988645-7e84-479a-b7bb-073f6ab04eb9 {"md5": "90abc24981626fbc9a451052a10f68e3", "pid": "1246058642", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1246058642", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1246058642", "source": "GND"}], "date_of_birth": "1964", "preferred_name": "Bukowski, Andrzej", "country_associated": "pl", "authorized_access_point": "Bukowski, Andrzej, 1964-"} 1 -2023-07-08 08:16:37.852664 2023-07-08 08:16:37.852672 c6eb2081-e7dd-411e-a915-d6d47b192e46 {"md5": "9aaa5f332b9e8e0d1f5e4ab65a38088b", "pid": "124686583", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/124686583", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124686583", "source": "GND"}], "variant_name": ["Beste, August Friedrich Wilhelm"], "date_of_birth": "1817", "date_of_death": "1889", "preferred_name": "Beste, Wilhelm", "country_associated": "gw", "variant_access_point": ["Beste, August Friedrich Wilhelm, 1817-1889"], "authorized_access_point": "Beste, Wilhelm, 1817-1889", "biographical_information": ["Dt. Theologe, Pastor an der Hauptkirche zu Wolfenbüttel"]} 1 -2023-07-08 08:16:37.945555 2023-07-08 08:16:37.945561 1a000806-2457-403f-b008-b184c60b7483 {"md5": "82413db746d6974085a4a5a73b9d592f", "pid": "124691560X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/124691560X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124691560X", "source": "GND"}], "date_of_birth": "31.10.1877", "date_of_death": "15.07.1940", "preferred_name": "Hellström, Anders", "country_associated": "sw", "authorized_access_point": "Hellström, Anders, 1877-1940"} 1 -2023-07-08 08:16:38.164353 2023-07-08 08:16:38.164361 d5cdc0af-ad4d-46e3-83c9-252a2b8b28e2 {"md5": "811d24ff3169df3a56b00052ddfbcca4", "pid": "124717764", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/124717764", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124717764", "source": "GND"}], "variant_name": ["Wolf, Joachim"], "preferred_name": "Wolff, Joachim", "variant_access_point": ["Wolf, Joachim"], "authorized_access_point": "Wolff, Joachim", "biographical_information": ["Dt. Jurist; Respondent an der Univ. Wittenberg"]} 1 -2023-07-08 08:16:38.25925 2023-07-08 08:16:38.259258 28e14274-3509-4c35-814c-39c7bfed7387 {"md5": "ddd78ca045e8f05f9ceb2f2b3a498af0", "pid": "1247579077", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1247579077", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1247579077", "source": "GND"}], "preferred_name": "Lauterbach, Johann Friedrich von", "country_associated": "gw", "authorized_access_point": "Lauterbach, Johann Friedrich von"} 1 -2023-07-08 08:16:38.345351 2023-07-08 08:16:38.345355 3de9a723-7ffc-4e85-9db7-9d30fb54f930 {"md5": "c0717d96b48118f2910b985e7268b288", "pid": "1248663217", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1248663217", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1248663217", "source": "GND"}], "preferred_name": "RWTH Aachen. Lehr- und Forschungsgebiet für Geologie - Endogene Dynamik", "country_associated": "gw", "authorized_access_point": "RWTH Aachen. Lehr- und Forschungsgebiet für Geologie - Endogene Dynamik"} 1 -2023-07-08 08:16:38.433057 2023-07-08 08:16:38.433199 791a80ca-f38d-44b0-9297-26d199a33437 {"md5": "813b9e89ec6766168aa81f9cf5bebc4e", "pid": "1248783271", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1248783271", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1248783271", "source": "GND"}], "variant_name": ["Fuchs, Armin"], "preferred_name": "Fuchs, Armin H.", "country_associated": "gw", "variant_access_point": ["Fuchs, Armin"], "authorized_access_point": "Fuchs, Armin H."} 1 -2023-07-08 08:16:38.045129 2023-07-08 10:28:31.032483 23c31492-b95d-4037-b464-ed14ea6af385 {"md5": "b82140f77b60fdb06a5ffcee55efd883", "pid": "124715311", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/124715311", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124715311", "source": "GND"}], "variant_name": ["Kaplan, R. B."], "date_of_birth": "20.09.1929", "preferred_name": "Kaplan, Robert B.", "country_associated": "xxu", "variant_access_point": ["Kaplan, R. B., 1929-"], "authorized_access_point": "Kaplan, Robert B., 1929-", "biographical_information": ["Amerikan. Linguist"]} 2 -2023-07-08 08:16:38.524886 2023-07-08 08:16:38.524892 5ec8d026-f0f1-44d1-a578-3e8efb11bfec {"md5": "f0f55e11f86c86311e675cd8f6e817be", "pid": "124922511", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/124922511", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124922511", "source": "GND"}], "variant_name": ["Mikeska, Thomas Hermann"], "date_of_birth": "1969", "preferred_name": "Mikeska, Thomas", "variant_access_point": ["Mikeska, Thomas Hermann, 1969-"], "authorized_access_point": "Mikeska, Thomas, 1969-", "biographical_information": ["Diss. Fachbereich Biochemie; Chemiker"]} 1 -2023-07-08 08:16:38.610794 2023-07-08 08:16:38.6108 a63bf535-d63d-4062-b90b-374036eefb8c {"md5": "c4dfb36fc74f103ad2cee8dddc6906c9", "pid": "1249513502", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1249513502", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1249513502", "source": "GND"}], "variant_name": ["Albinus, Elisabetha Barbara", "Albinusin, Elisabetha Barbara"], "date_of_birth": "1696", "date_of_death": "11.01.1725", "preferred_name": "Killinger, Elisabetha Barbara", "country_associated": "gw", "variant_access_point": ["Albinus, Elisabetha Barbara, 1696-1725", "Albinusin, Elisabetha Barbara, 1696-1725"], "authorized_access_point": "Killinger, Elisabetha Barbara, 1696-1725"} 1 -2023-07-08 08:16:38.695626 2023-07-08 08:16:38.695629 86ff7de5-be99-4007-ae5b-88f223fdeee1 {"md5": "b81bca47785f52c546c09fd4b436cf21", "pid": "124962793", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/124962793", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124962793", "source": "GND"}], "date_of_birth": "1973", "preferred_name": "Lengemann, Janka", "authorized_access_point": "Lengemann, Janka, 1973-", "biographical_information": ["Medizinerin"]} 1 -2023-07-08 08:16:38.76634 2023-07-08 08:16:38.76635 fc3a6483-2393-4391-8f15-453056f2bcac {"md5": "7629fe37e4198e8d38368c2ca6747a38", "pid": "124969178", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/124969178", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124969178", "source": "GND"}], "variant_name": ["De Lemos, Rogério"], "date_of_birth": "1961", "preferred_name": "Lemos, Rogério de", "country_associated": "xxk", "variant_access_point": ["De Lemos, Rogério, 1961-"], "authorized_access_point": "Lemos, Rogério de, 1961-", "biographical_information": ["Informatiker"]} 1 -2023-07-08 08:16:38.843697 2023-07-08 08:16:38.843701 1b852568-ecc0-407e-aec0-a6e3a77a179e {"md5": "d3bd8026b81d88a7c4cedf9fc6aaaf38", "pid": "1249776090", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1249776090", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1249776090", "source": "GND"}], "preferred_name": "Huri, Gazi", "country_associated": "tu", "authorized_access_point": "Huri, Gazi"} 1 -2023-07-08 08:16:38.956993 2023-07-08 08:16:38.956998 b69c28e0-ad2c-488b-aad1-5ce41d560d94 {"md5": "40ab39316275676f1747bdded1b5cd8d", "pid": "1249789494", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1249789494", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1249789494", "source": "GND"}], "preferred_name": "Leschinski, Anastasia", "country_associated": "gw", "authorized_access_point": "Leschinski, Anastasia", "biographical_information": ["Diss. Medizinische Hochschule Hannover"]} 1 -2023-07-08 08:16:39.047798 2023-07-08 08:16:39.047802 965678c5-03ba-498c-8372-1bc252d70959 {"md5": "1ef9bf10c9938109e931970b4077618c", "pid": "1249795362", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1249795362", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1249795362", "source": "GND"}], "date_of_birth": "1996", "preferred_name": "Seifert, Rebecca Maria", "country_associated": "gw", "authorized_access_point": "Seifert, Rebecca Maria, 1996-", "biographical_information": ["Promotion Westfälische Wilhelms-Universität Münster 2021"]} 1 -2023-07-08 08:16:39.136135 2023-07-08 08:16:39.136143 c5ca5775-8be7-40bb-819e-95301e6d465f {"md5": "5226b481628637dc0da06eaede95599b", "pid": "124995136", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/124995136", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124995136", "source": "GND"}], "variant_name": ["McEachern, Claire Elizabeth", "Mc Eachern, Claire Elizabeth", "MacEachern, Claire Elizabeth"], "date_of_birth": "1963", "preferred_name": "McEachern, Claire", "country_associated": "xxu", "variant_access_point": ["McEachern, Claire Elizabeth, 1963-", "Mc Eachern, Claire Elizabeth, 1963-", "MacEachern, Claire Elizabeth, 1963-"], "parallel_access_point": ["McEachern, Claire Elizabeth, 1963-"], "authorized_access_point": "McEachern, Claire, 1963-", "biographical_information": ["Amerikan. Literaturwissenschaftlerin an der Univ. of California, Los Angeles", "Anglistin, USA"]} 1 -2023-07-08 08:16:39.230651 2023-07-08 08:16:39.230655 ce6f2d03-3f91-4f2a-8351-0ecf9ac73c02 {"md5": "2babfd507bc7ac6ad49dc63ac4acdcbd", "pid": "125013981", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/125013981", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/125013981", "source": "GND"}], "preferred_name": "Haarmeyer, Joseph", "authorized_access_point": "Haarmeyer, Joseph"} 1 -2023-07-08 08:16:39.315831 2023-07-08 08:16:39.315841 f9d7c1f2-22a8-4c4a-b7ea-81069f14d322 {"md5": "aa031dddfc9c00d156e093b5d5c4e23d", "pid": "1250280184", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1250280184", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1250280184", "source": "GND"}], "preferred_name": "Agrawal, Sunil", "country_associated": "ii", "authorized_access_point": "Agrawal, Sunil"} 1 -2023-07-08 08:16:39.519711 2023-07-08 08:16:39.51972 3e6762bf-8e50-40a6-98d9-cc5fc00adab8 {"md5": "be4a33120811d147cf94084c30c06728", "pid": "125077683X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/125077683X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/125077683X", "source": "GND"}], "variant_name": ["Wentao, Ren", "Ren Wentao"], "preferred_name": "Ren, Wentao", "country_associated": "cc", "variant_access_point": ["Wentao, Ren", "Ren Wentao"], "authorized_access_point": "Ren, Wentao"} 1 -2023-07-08 08:16:39.613222 2023-07-08 08:16:39.613228 66a858b7-7a4d-4117-8a6a-37202871b303 {"md5": "d40877640d8b05b43c67ec74a16be4f1", "pid": "125085685X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/125085685X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/125085685X", "source": "GND"}], "variant_name": ["Lattermann, Dorchen"], "date_of_birth": "1923", "date_of_death": "2003", "preferred_name": "Lattermann, Dore", "country_associated": "gw", "variant_access_point": ["Lattermann, Dorchen, 1923-2003"], "authorized_access_point": "Lattermann, Dore, 1923-2003"} 1 -2023-07-08 08:16:39.798009 2023-07-08 08:16:39.798012 066e2332-8c5e-4b06-bd20-e470865668d9 {"md5": "23a7cb3f65af0ef3096205348d86893e", "pid": "125158103X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/125158103X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/125158103X", "source": "GND"}], "variant_name": ["British Sundial Society", "The British Sundial Society", "BSS", "Sundial Society"], "preferred_name": "The British Sundial Society", "country_associated": "xxk", "variant_access_point": ["British Sundial Society", "The British Sundial Society. Unveraenderte Form", "BSS. Abkuerzung", "Sundial Society. Großbritannien"], "date_of_establishment": "1989", "authorized_access_point": "The British Sundial Society"} 1 -2023-07-08 08:16:39.886528 2023-07-08 08:16:39.886535 0d6c3f9f-0566-4c1f-af61-f11ee581d2e1 {"md5": "e9fc114ee10f85e6a24466dba660dfff", "pid": "125190419X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/125190419X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/125190419X", "source": "GND"}], "date_of_birth": "1964", "preferred_name": "Fuchs, Sybille", "country_associated": "gw", "authorized_access_point": "Fuchs, Sybille, 1964-", "biographical_information": ["2022 am Staatlichen Bauamt München 2 tätig; Hobby-Schauspielerin"]} 1 -2023-07-08 08:16:39.975774 2023-07-08 08:16:39.975781 06f24711-d978-4e75-a882-3dcf6dde9878 {"md5": "c6f694dc16df84a88980da6ec40fc3ac", "pid": "125224524", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/125224524", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/125224524", "source": "GND"}], "date_of_birth": "1934", "date_of_death": "2017", "preferred_name": "Imhof, Urs", "country_associated": "sz", "authorized_access_point": "Imhof, Urs, 1934-2017"} 1 -2023-07-08 08:16:40.172123 2023-07-08 08:16:40.172126 23643b19-5cda-40f6-b701-9e458edfde1f {"md5": "64e0bd12fbb5a952749c1d610b5593d7", "pid": "1253016488", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1253016488", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1253016488", "source": "GND"}], "preferred_name": "Kamer All Stars", "country_associated": "cm", "authorized_access_point": "Kamer All Stars"} 1 -2023-07-08 08:16:40.264368 2023-07-08 08:16:40.264375 65a3f32b-a191-4625-b9f3-9d5b08a75619 {"md5": "f565bc2c39893e80f253812aef567888", "pid": "1253049424", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1253049424", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1253049424", "source": "GND"}], "preferred_name": "Doyle, Alister", "country_associated": "xxu", "authorized_access_point": "Doyle, Alister"} 1 -2023-07-08 08:16:40.343273 2023-07-08 08:16:40.343278 ead7120d-f8aa-46c4-a081-934e0a2bb625 {"md5": "fe2df9a8906111c078296ec402d64eeb", "pid": "1253317887", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1253317887", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1253317887", "source": "GND"}], "date_of_birth": "07.11.1995", "preferred_name": "Xander, Tom", "authorized_access_point": "Xander, Tom, 1995-"} 1 -2023-07-08 08:16:40.443087 2023-07-08 08:16:40.443093 228c964f-7b67-4416-8de8-c87b85b981db {"md5": "1188a1bfdc76ea404b504796fca42d82", "pid": "12533396X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/12533396X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12533396X", "source": "GND"}], "variant_name": ["Kusel, Wilhelm Eduard Johann Friedrich"], "date_of_birth": "1894", "preferred_name": "Kusel, Wilhelm", "variant_access_point": ["Kusel, Wilhelm Eduard Johann Friedrich, 1894-"], "authorized_access_point": "Kusel, Wilhelm, 1894-"} 1 -2023-07-08 08:16:40.539575 2023-07-08 08:16:40.539585 94c78aa2-e98f-4a35-b9ce-87f9badf4d9e {"md5": "18d97609d6bbe2c7139420e9b6436439", "pid": "1253803536", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1253803536", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1253803536", "source": "GND"}], "date_of_birth": "ca. 20./21. Jh.", "preferred_name": "Sheme, Selman", "country_associated": "aa", "authorized_access_point": "Sheme, Selman, ca. 20./21. Jh."} 1 -2023-07-08 08:16:42.763267 2023-07-08 08:16:42.763272 d17ec393-b000-46dc-9552-09cfd873f2fb {"md5": "b709bccc685e955fa17f99991371ee44", "pid": "1259480860", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1259480860", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1259480860", "source": "GND"}], "preferred_name": "Schieren, Gisela", "country_associated": "gw", "authorized_access_point": "Schieren, Gisela"} 1 -2023-07-08 08:16:40.637883 2023-07-08 08:16:40.637891 210c48ac-d901-4cec-adae-87b5bbb274d6 {"md5": "2f25b89ae9ce32a5994ed5c8f3ba0b8b", "pid": "1253954518", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1253954518", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1253954518", "source": "GND"}], "variant_name": ["Cognition and the Book. Typologies of Formal Organisation of Knowledge in the Printed Book of the Early Modern Period"], "preferred_name": "Formale Erkenntnissteuerung im Buchdruck der Frühen Neuzeit", "country_associated": "gw", "variant_access_point": ["Cognition and the Book. Typologies of Formal Organisation of Knowledge in the Printed Book of the Early Modern Period. Veranstaltung, 2002, Berlin"], "authorized_access_point": "Formale Erkenntnissteuerung im Buchdruck der Frühen Neuzeit. Veranstaltung, 2002, Berlin"} 1 -2023-07-08 08:16:40.744464 2023-07-08 08:16:40.744467 98d7dad3-5f17-4f0a-a72b-973ad8fdc91c {"md5": "511b46e1f8edac2a29f3401647879eca", "pid": "125407466X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/125407466X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/125407466X", "source": "GND"}], "preferred_name": "Fu, Victoria", "country_associated": "xxu", "authorized_access_point": "Fu, Victoria", "biographical_information": ["Master-Abschluss in Nanotechnologie; arbeitet im Hautpflegelabor von L'Oreal"]} 1 -2023-07-08 08:16:40.828021 2023-07-08 08:16:40.828026 479158e1-d2d3-4121-8201-abb060678326 {"md5": "53d551c24bcb935bad8789721ebbfff6", "pid": "125448554", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/125448554", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/125448554", "source": "GND"}], "date_of_birth": "08.12.1910", "preferred_name": "Schmersow, Herbert", "country_associated": "gw", "authorized_access_point": "Schmersow, Herbert, 1910-", "biographical_information": ["studierte zunächst neuere Sprachen, um den Lehrberuf zu ergreifen, wechselte dann zur technischen Physik"]} 1 -2023-07-08 08:16:40.928647 2023-07-08 08:16:40.928656 d8b5cf5e-dd2d-447c-a901-631173f2b93c {"md5": "e0661a4dec0394ea074e1475e5c0d54b", "pid": "1254513582", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1254513582", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1254513582", "source": "GND"}], "date_of_birth": "07.10.1861", "date_of_death": "25.01.1951", "preferred_name": "Ranke, Karl", "country_associated": "gw", "authorized_access_point": "Ranke, Karl, 1861-1951", "biographical_information": ["1886 Promotion an der Med. Fac. der Königl. Julius-Maximilians-Universität zu Würzburg"]} 1 -2023-07-08 08:16:41.035563 2023-07-08 08:16:41.035575 56bcf332-880e-43bc-81f8-afa43850ac79 {"md5": "931c9b196512d010d15614adba3e8081", "pid": "1254551980", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1254551980", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1254551980", "source": "GND"}], "variant_name": ["Sokol, Kathy A."], "preferred_name": "Sokol, Kathy Arlyn", "country_associated": "xxk", "variant_access_point": ["Sokol, Kathy A."], "authorized_access_point": "Sokol, Kathy Arlyn"} 1 -2023-07-08 08:16:41.127116 2023-07-08 08:16:41.127122 f5e9a831-25fb-4ed0-b231-8d4b9e423dc4 {"md5": "d38d9a66a42b9a32f3c8dc7dcfb00b2d", "pid": "1254730559", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1254730559", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1254730559", "source": "GND"}], "preferred_name": "Meisl, Clemens-Josef", "country_associated": "au", "authorized_access_point": "Meisl, Clemens-Josef", "biographical_information": ["Fachhochschule Wiener Neustadt, Masterarbeit, 2021"]} 1 -2023-07-08 08:16:41.211307 2023-07-08 08:16:41.211311 7332138e-7611-4920-8e36-1242290133ee {"md5": "3d0930f8f4a3233278b47ccebd4cbee9", "pid": "125522732X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/125522732X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/125522732X", "source": "GND"}], "variant_name": ["Orłowski, Tomasz", "Orłowski, Tomasz H."], "date_of_birth": "1956", "preferred_name": "Orłowski, Tomasz Hubert", "country_associated": "pl", "variant_access_point": ["Orłowski, Tomasz, 1956-", "Orłowski, Tomasz H., 1956-"], "authorized_access_point": "Orłowski, Tomasz Hubert, 1956-"} 1 -2023-07-08 08:16:41.291564 2023-07-08 08:16:41.29157 0334219d-6e55-4f71-90a9-47eabdb127aa {"md5": "282f8bbd035888f264b7e39c85aff4db", "pid": "1255253967", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1255253967", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1255253967", "source": "GND"}], "variant_name": ["Planchette, Arielle Louise"], "preferred_name": "Planchette, Arielle", "country_associated": "xxk", "variant_access_point": ["Planchette, Arielle Louise"], "authorized_access_point": "Planchette, Arielle", "biographical_information": ["Dissertation École polytechnique fédérale de Lausanne, 2022"]} 1 -2023-07-08 08:16:41.393551 2023-07-08 08:16:41.393555 832d1b5a-26d0-4dde-9bf4-7467b03d232c {"md5": "7093fec84d52c3e2b57e8ad57fe867b1", "pid": "125525869", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/125525869", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/125525869", "source": "GND"}], "preferred_name": "Teubern, Ernst Freiherr von", "authorized_access_point": "Teubern, Ernst Freiherr von"} 1 -2023-07-08 08:16:41.477587 2023-07-08 08:16:41.477592 9f004e9b-84fd-42c3-b13d-750aee85627f {"md5": "39f17b8b9c5e1270e7a1da04fdad42c9", "pid": "125527683", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/125527683", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/125527683", "source": "GND"}], "preferred_name": "Neuhäuser, Paul", "authorized_access_point": "Neuhäuser, Paul"} 1 -2023-07-08 08:16:41.562545 2023-07-08 08:16:41.562549 6a1c14f9-d853-43bd-90d8-7f1eb56c1868 {"md5": "a6d1393fb2cf83d9abed284cf5253326", "pid": "1256298980", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1256298980", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1256298980", "source": "GND"}], "variant_name": ["Siwei, Zhao", "Zhao Siwei"], "preferred_name": "Zhao, Siwei", "country_associated": "cc", "variant_access_point": ["Siwei, Zhao", "Zhao Siwei"], "authorized_access_point": "Zhao, Siwei"} 1 -2023-07-08 08:16:41.662293 2023-07-08 08:16:41.662299 8b0b1dc4-121a-4f01-9d2c-2b1068a77516 {"md5": "67aaf3dec68f178c2c45147a18d86106", "pid": "1256639974", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1256639974", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1256639974", "source": "GND"}], "date_of_birth": "1965", "preferred_name": "Dawe, Jonathan", "country_associated": "xxu", "authorized_access_point": "Dawe, Jonathan, 1965-", "biographical_information": ["member of the Music Theory and Analysis, Graduate Studies, and Doctoral faculty departments at The Juilliard School"]} 1 -2023-07-08 08:16:41.754211 2023-07-08 08:16:41.75422 94862cad-313e-4ef6-8f7b-1d772fb53ab3 {"md5": "4c0f3b2c32da706f4b31f747822ee1cb", "pid": "125675658X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/125675658X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/125675658X", "source": "GND"}], "variant_name": ["Fürchtenicht, Jana S. C.", "Fürchtenicht, Jana Sophia Carlotta"], "date_of_birth": "1988", "preferred_name": "Fürchtenicht, Jana", "country_associated": "gw", "variant_access_point": ["Fürchtenicht, Jana S. C., 1988-", "Fürchtenicht, Jana Sophia Carlotta, 1988-"], "authorized_access_point": "Fürchtenicht, Jana, 1988-"} 1 -2023-07-08 08:16:41.837462 2023-07-08 08:16:41.837466 c6f64f7d-7761-4123-8b04-1704809275c1 {"md5": "1b3e77da9f2f0d5f29a00002ea40d985", "pid": "1257269704", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1257269704", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1257269704", "source": "GND"}], "preferred_name": "Wells, Hayley", "country_associated": "xxk", "authorized_access_point": "Wells, Hayley", "biographical_information": ["MA in Children’s Book Illustration from Cambridge School of Art"]} 1 -2023-07-08 08:16:41.929241 2023-07-08 08:16:41.929244 c3cb7b54-d000-41c0-8246-ceb449386514 {"md5": "cfee79f217e9e1efb954501ba5024d34", "pid": "1257796259", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1257796259", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1257796259", "source": "GND"}], "variant_name": ["Advanced Environmental, Chemical, and Biological Sensing Technologies XII"], "preferred_name": "Advanced Environmental, Chemical, and Biological Sensing Technologies", "country_associated": "xxu", "variant_access_point": ["Advanced Environmental, Chemical, and Biological Sensing Technologies XII"], "authorized_access_point": "Advanced Environmental, Chemical, and Biological Sensing Technologies. Veranstaltung, 2015, Baltimore, Md."} 1 -2023-07-08 08:16:42.016147 2023-07-08 08:16:42.016155 44df1457-7fd5-4ac5-a31b-0330f115342b {"md5": "7f06caa64d63309b315733ed3b738d02", "pid": "1257837826", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1257837826", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1257837826", "source": "GND"}], "variant_name": ["Hannah, James"], "preferred_name": "Hanna, James", "country_associated": "xxk", "variant_access_point": ["Hannah, James"], "authorized_access_point": "Hanna, James", "biographical_information": ["1786 Kapitän auf der Schnau \\"Sea Otter\\""]} 1 -2023-07-08 08:16:42.112313 2023-07-08 08:16:42.112316 974fa2dc-a7d4-4f00-8b5a-89bddb73c92b {"md5": "591e0393c01f1432e148ea6c085fd630", "pid": "1257931253", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1257931253", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1257931253", "source": "GND"}], "preferred_name": "Schmid, Anna Antonia", "country_associated": "gw", "authorized_access_point": "Schmid, Anna Antonia"} 1 -2023-07-08 08:16:42.212326 2023-07-08 08:16:42.212336 6daacd5a-c387-4615-a2f4-4ae4b29b26a8 {"md5": "44f2ebb36a43c289e400120c55012de1", "pid": "1258741997", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1258741997", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1258741997", "source": "GND"}], "preferred_name": "Balbino, Michelle Lucas Cardoso", "country_associated": "bl", "authorized_access_point": "Balbino, Michelle Lucas Cardoso"} 1 -2023-07-08 08:16:42.415131 2023-07-08 08:16:42.415139 121df6b4-3077-4492-a5ab-b7a415f2871f {"md5": "000aca250927658f8ba4e44ba58031d6", "pid": "1258808196", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1258808196", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1258808196", "source": "GND"}], "preferred_name": "Engelke, Wilfried", "country_associated": "xxu", "authorized_access_point": "Engelke, Wilfried"} 1 -2023-07-08 08:16:42.494788 2023-07-08 08:16:42.494791 d5489079-e0c8-4e47-a375-123bec75dbe0 {"md5": "56f41e2c97d63b499bd6916ec0603559", "pid": "125881336X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/125881336X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/125881336X", "source": "GND"}], "variant_name": ["Liang, B.", "Liang Bingqian", "Bingqian, Liang"], "preferred_name": "Liang, Bingqian", "country_associated": "cc", "variant_access_point": ["Liang, B.", "Liang Bingqian", "Bingqian, Liang"], "authorized_access_point": "Liang, Bingqian"} 1 -2023-07-08 08:16:42.586159 2023-07-08 08:16:42.58617 719544ce-9d4a-4ddf-a048-b98aa61550ca {"md5": "9d67172e577542e009980a4e8b2864d0", "pid": "125904568", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["eng", "art"], "identifier": "http://d-nb.info/gnd/125904568", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/125904568", "source": "GND"}], "variant_name": ["Andrews, S. P."], "date_of_birth": "22.03.1812", "date_of_death": "21.05.1886", "preferred_name": "Andrews, Stephen Pearl", "country_associated": "xxu", "variant_access_point": ["Andrews, S. P., 1812-1886"], "authorized_access_point": "Andrews, Stephen Pearl, 1812-1886", "biographical_information": ["erfand die Plansprache Alwato u. propagierte Pitman Shorthand Writing"]} 1 -2023-07-08 08:16:42.846049 2023-07-08 08:16:42.846054 ad51dba7-56f7-4682-a3c7-12196d5ec90e {"md5": "2d059e710edca6a4a776550dbc2e3ebc", "pid": "1259906620", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1259906620", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1259906620", "source": "GND"}], "variant_name": ["ʻAlam, Sardār ʻAlam", "علم, سردار علم"], "preferred_name": "ʿAlam, Sardār ʿAlam", "country_associated": "af", "variant_access_point": ["ʻAlam, Sardār ʻAlam", "علم, سردار علم"], "parallel_access_point": ["ʻAlam, Sardār ʻAlam", "علم, سردار علم"], "authorized_access_point": "ʿAlam, Sardār ʿAlam", "biographical_information": ["Afghanischer Historiker"]} 1 -2023-07-08 08:16:42.942374 2023-07-08 08:16:42.942378 d462df8a-37ad-4327-8ea3-483c091d7bef {"md5": "ea319fda95037f6478524abc384fe392", "pid": "1260402541", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1260402541", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1260402541", "source": "GND"}], "variant_name": ["Ščerbakov, Dmitrij", "Ščerbakov, D. A."], "preferred_name": "Ščerbakov, Dmitrij Andreevič", "country_associated": "ru", "variant_access_point": ["Ščerbakov, Dmitrij", "Ščerbakov, D. A."], "parallel_access_point": ["Щербаков, Дмитрий Андреевич"], "authorized_access_point": "Ščerbakov, Dmitrij Andreevič"} 1 -2023-07-08 08:16:43.032976 2023-07-08 08:16:43.032987 3c34d034-2e17-4bd6-9c0c-694c4f2f406d {"md5": "2f80236ae97ff1a4e92e13bf62593b4f", "pid": "126093148", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/126093148", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/126093148", "source": "GND"}], "preferred_name": "Anlauft, Fritz", "authorized_access_point": "Anlauft, Fritz"} 1 -2023-07-08 08:16:43.128786 2023-07-08 08:16:43.128792 1b520923-fabb-4b74-846f-f737b3375532 {"md5": "b606000a6996564696dd450154f8d909", "pid": "126098190", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/126098190", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/126098190", "source": "GND"}], "preferred_name": "Bodewig, Josef", "authorized_access_point": "Bodewig, Josef"} 1 -2023-07-08 08:16:43.231605 2023-07-08 08:16:43.231614 2315e92b-4a17-4258-b114-832d60f5c078 {"md5": "df2b57d53ed578db550950a12652ed37", "pid": "1260994147", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1260994147", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1260994147", "source": "GND"}], "preferred_name": "Feuardent, René", "country_associated": "sz", "authorized_access_point": "Feuardent, René", "biographical_information": ["Promotion an der Universität Genf"]} 1 -2023-07-08 08:16:43.426674 2023-07-08 08:16:43.426681 3f303b92-4f20-4729-b72c-c2e832364248 {"md5": "4bb44dbd471a4bf589ec18204db77d8e", "pid": "1261260147", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1261260147", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1261260147", "source": "GND"}], "date_of_birth": "1996", "preferred_name": "Schreier, Andrea", "country_associated": "au", "authorized_access_point": "Schreier, Andrea, 1996-", "biographical_information": ["Dissertation, Ludwig-Maximilians-Universität München, 2022"]} 1 -2023-07-08 08:16:43.521963 2023-07-08 08:16:43.521971 0e705a51-0ef5-4833-8c32-9c9778d17cda {"md5": "705e3ee7b44f45d02b2a95b73c7ff23f", "pid": "1261307364", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1261307364", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1261307364", "source": "GND"}], "preferred_name": "Currivean, Keith A.", "country_associated": "xxu", "authorized_access_point": "Currivean, Keith A.", "biographical_information": ["graduate of Southfield Christian School, Wheaton College, Eastern Michigan University ... ; degrees in music, theology, ..."]} 1 -2023-07-08 08:16:43.620321 2023-07-08 08:16:43.62033 5cfa65ae-0493-455f-8585-a56504ed2c1d {"md5": "6535cd5ba9f1beaf9334641fe2281851", "pid": "126144060", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/126144060", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/126144060", "source": "GND"}], "date_of_birth": "08.05.1910", "date_of_death": "18.02.1998", "preferred_name": "Atorf, Walter", "country_associated": "gw", "authorized_access_point": "Atorf, Walter, 1910-1998"} 1 -2023-07-08 08:16:43.318284 2023-07-08 10:24:52.79119 0b7e1882-9202-44e7-93c7-914ae2b78193 {"md5": "76fd0aa84e34a30ec7b32d8f9edd42cb", "pid": "1261058550", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1261058550", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1261058550", "source": "GND"}], "variant_name": ["Willmann, Tim Alexander"], "preferred_name": "Willmann, Tim", "country_associated": "gw", "variant_access_point": ["Willmann, Tim Alexander"], "authorized_access_point": "Willmann, Tim"} 2 -2023-07-08 08:16:43.710589 2023-07-08 10:31:03.832464 fa0fd88b-b183-4d63-91c5-9bfc4d5b49a6 {"md5": "c04fb3fd7fbb35f28bd5a1efdd50185b", "pid": "1261766156", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1261766156", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1261766156", "source": "GND"}], "preferred_name": "Veidt, Robin", "authorized_access_point": "Veidt, Robin"} 2 -2023-07-08 08:16:43.911648 2023-07-08 08:16:43.911651 fa249f0e-6365-405a-bf89-3b000b82b0ea {"md5": "fff4109fb38994c0924b5429264f7a5c", "pid": "1262106486", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1262106486", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1262106486", "source": "GND"}], "variant_name": ["Moreira, Ramon Missias-"], "preferred_name": "Missias-Moreira, Ramon", "country_associated": "bl", "variant_access_point": ["Moreira, Ramon Missias-"], "authorized_access_point": "Missias-Moreira, Ramon"} 1 -2023-07-08 08:16:44.012728 2023-07-08 08:16:44.012731 86f9600f-ced8-4fa5-a2da-08b5129f8cce {"md5": "833888c5252b6d94fc81b4c72aea95c5", "pid": "126221804", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/126221804", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/126221804", "source": "GND"}], "preferred_name": "Coppens, Armand", "authorized_access_point": "Coppens, Armand"} 1 -2023-07-08 08:16:44.106337 2023-07-08 08:16:44.106346 15cebd09-32a6-423f-b122-1c393e9c793a {"md5": "85a57552815814165c461f39ff511a9a", "pid": "1262395305", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1262395305", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1262395305", "source": "GND"}], "date_of_birth": "1936", "preferred_name": "Springinsfeld, Karl", "country_associated": "au", "authorized_access_point": "Springinsfeld, Karl, 1936-"} 1 -2023-07-08 08:16:44.195031 2023-07-08 08:16:44.19504 3907519b-5158-4d51-9ced-668bcae69ad2 {"md5": "3a38c7f6deacc6ceda43fdbbb505a655", "pid": "1262411238", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1262411238", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1262411238", "source": "GND"}], "variant_name": ["International Conference on Swarm Intelligence, 13."], "preferred_name": "ICSI, 13.", "country_associated": "cc", "variant_access_point": ["International Conference on Swarm Intelligence, 13., 2022, Xi'an; Online"], "authorized_access_point": "ICSI, 13., 2022, Xi'an; Online"} 1 -2023-07-08 08:16:44.27962 2023-07-08 08:16:44.279625 a4f37bd6-5577-4f41-83ba-7e5051b40194 {"md5": "749ee467178dd10f644acd1bd0dc887e", "pid": "1262517281", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1262517281", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1262517281", "source": "GND"}], "variant_name": ["Zhang, K.", "Zhang Keren", "Keren, Zhang"], "preferred_name": "Zhang, Keren", "country_associated": "cc", "variant_access_point": ["Zhang, K.", "Zhang Keren", "Keren, Zhang"], "authorized_access_point": "Zhang, Keren"} 1 -2023-07-08 08:16:44.356559 2023-07-08 08:16:44.356563 4c453aed-4cc6-4633-8897-f4fc45ac803a {"md5": "94b6666d0f2cb153e9fdfdaecd9042ce", "pid": "12625639X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/12625639X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12625639X", "source": "GND"}], "preferred_name": "Backhaus, Emil", "authorized_access_point": "Backhaus, Emil"} 1 -2023-07-08 08:16:44.644098 2023-07-08 08:16:44.644104 dc33744f-ea5d-471d-ad68-ca01b2264ac8 {"md5": "c4e08e436598563ef1b343ebd7ad4d63", "pid": "1264061994", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1264061994", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1264061994", "source": "GND"}], "variant_name": ["Vej, L.", "Vej Lju", "Lju, Vej"], "preferred_name": "Vej, Lju", "country_associated": "ru", "variant_access_point": ["Vej, L.", "Vej Lju", "Lju, Vej"], "authorized_access_point": "Vej, Lju"} 1 -2023-07-08 08:16:44.830501 2023-07-08 08:16:44.830505 81f0eb05-c324-456b-862e-43bcd296a0da {"md5": "c02d5a52273f59d5d34f15e04c828042", "pid": "126431582", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/126431582", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/126431582", "source": "GND"}], "preferred_name": "Moravce, Emanuela", "authorized_access_point": "Moravce, Emanuela"} 1 -2023-07-08 08:16:44.928626 2023-07-08 08:16:44.928632 8719fbfa-aa08-40b0-a60f-8ad8e1154d31 {"md5": "96ea67a606470fe3fd9f255338fc2115", "pid": "1265029369", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1265029369", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1265029369", "source": "GND"}], "preferred_name": "Bunt, Steffi", "country_associated": "gw", "authorized_access_point": "Bunt, Steffi"} 1 -2023-07-08 08:16:44.735029 2023-07-08 10:27:51.066605 ee3b49f1-c927-4309-988c-cddb9db82054 {"md5": "a775b3e2d4695ebc29352eaeb8ad39b3", "pid": "1264067003", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1264067003", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1264067003", "source": "GND"}], "date_of_birth": "1971", "preferred_name": "Cervantes, Pere", "country_associated": "sp", "authorized_access_point": "Cervantes, Pere, 1971-", "biographical_information": ["Studium der Rechtswissenschaften, als Soldat für die UN im Kosovo und die Europäische Union in Bosnien-Herzegowina tätig, wurde für seine Werke vielfach ausgezeichnet"]} 2 -2023-07-08 08:16:44.543253 2023-07-08 10:31:04.345 aa36bf15-a395-4db7-8ccb-021da4a69dcb {"md5": "a8d65764f858f7f7647b1f8571d90e5c", "pid": "1263532683", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["chi", "eng"], "identifier": "http://d-nb.info/gnd/1263532683", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1263532683", "source": "GND"}], "preferred_name": "Chen, Siran", "country_associated": "cc", "authorized_access_point": "Chen, Siran", "biographical_information": ["gnd3"]} 2 -2023-07-08 08:16:45.025921 2023-07-08 08:16:45.025927 069d35f6-be4f-4306-87d5-10fb318bd4de {"md5": "d3e278fbad01c54f505b3208ceea5b98", "pid": "126590249", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/126590249", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/126590249", "source": "GND"}], "variant_name": ["Nazarevskij, A. A.", "Nazarevskiĭ, Aleksandr Adrianovich", "Nazarevskij, Aleksandr Adrianovič", "Nazarevskij, Aleksandr A.", "Nazarevsʹkyj, O.A.", "Nazarevskii, Aleksandr Adrianovich", "Nazarevsʹkyi, O.A.", "Nazarevskij, A.A.", "Nazarevsʹkyj, Oleksandr Adrianovyč"], "date_of_birth": "1887", "date_of_death": "1977", "preferred_name": "Nazarevʹskyj, Oleksandr A.", "country_associated": "ru", "variant_access_point": ["Nazarevskij, A. A., 1877-1977", "Nazarevskiĭ, Aleksandr Adrianovich, 1877-1977", "Nazarevskij, Aleksandr Adrianovič, 1877-1977", "Nazarevskij, Aleksandr A., 1877-1977", "Nazarevsʹkyj, O.A., 1877-1977", "Nazarevskii, Aleksandr Adrianovich, 1877-1977", "Nazarevsʹkyi, O.A., 1877-1977", "Nazarevskij, A.A., 1877-1977", "Nazarevsʹkyj, Oleksandr Adrianovyč, 1877-1977"], "parallel_access_point": ["Nazarevsʹkyi, O. A., 1877-1977"], "authorized_access_point": "Nazarevʹskyj, Oleksandr A., 1877-1977"} 1 -2023-07-08 08:16:45.122788 2023-07-08 08:16:45.122794 0fff434b-d4a5-44d4-ab0d-3cf05dc2035e {"md5": "4a43db19f82443f9ba598dc084551123", "pid": "126645590", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/126645590", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/126645590", "source": "GND"}], "preferred_name": "Olschwang, Irene", "authorized_access_point": "Olschwang, Irene"} 1 -2023-07-08 08:16:45.220203 2023-07-08 08:16:45.220206 92cfc291-5267-48a6-bd29-b446df76e30e {"md5": "58409091f569eea9d498f7a166ad8dcb", "pid": "126652902", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/126652902", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/126652902", "source": "GND"}], "preferred_name": "Mohr, Johann Georg", "authorized_access_point": "Mohr, Johann Georg"} 1 -2023-07-08 08:16:45.308287 2023-07-08 08:16:45.308293 a29442de-9e31-4e68-9837-ed465b6b56ba {"md5": "08a610d051c162603c0096fc917aa07c", "pid": "127018360", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/127018360", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/127018360", "source": "GND"}], "variant_name": ["Hanser, Richard F.", "Hanser, Richard Frederick", "Hanser, Richard Frederik"], "date_of_birth": "15.12.1909", "date_of_death": "XX.12.1981", "preferred_name": "Hanser, Richard", "country_associated": "xxu", "variant_access_point": ["Hanser, Richard F., 1909-1981", "Hanser, Richard Frederick, 1909-1981", "Hanser, Richard Frederik, 1909-1981"], "authorized_access_point": "Hanser, Richard, 1909-1981", "biographical_information": ["Während des Zweiten Weltkriegs Spezialist für psychologische Kriegsführung; publizierte insbes. zur Geschichte des Nationalsozialismus; auch Autor von Dokumentarfilmen"]} 1 -2023-07-08 08:16:45.397194 2023-07-08 08:16:45.397199 31ac590a-06db-4aec-b760-0228f9ba03a1 {"md5": "8183a26593cd1f29b47a4a7910fea95a", "pid": "127202048", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/127202048", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/127202048", "source": "GND"}], "preferred_name": "Imrie, Alex", "authorized_access_point": "Imrie, Alex"} 1 -2023-07-08 08:16:45.796825 2023-07-08 08:16:45.796831 5db1a731-eec6-4a98-bff2-9c553a723f46 {"md5": "098ed1a58d6be429dbc184fcb33b8cca", "pid": "127398538", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/127398538", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/127398538", "source": "GND"}], "preferred_name": "Turowski, Karl", "authorized_access_point": "Turowski, Karl"} 1 -2023-07-08 08:16:45.968501 2023-07-08 08:16:45.968509 2e372b20-920b-4c06-ac60-7167dac3900d {"md5": "d9c27d06aecac8d01dbd87a0a1d66c25", "pid": "127496491", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/127496491", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/127496491", "source": "GND"}], "preferred_name": "Hecht, Gust.", "authorized_access_point": "Hecht, Gust."} 1 -2023-07-08 08:16:46.058068 2023-07-08 08:16:46.058072 d11bb334-bb44-485a-8d1f-f69e48129364 {"md5": "6f6793935dfd64659c6b6c5f44a8c8ed", "pid": "127707255", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/127707255", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/127707255", "source": "GND"}], "preferred_name": "Daugavietis, Pēteris", "authorized_access_point": "Daugavietis, Pēteris"} 1 -2023-07-08 08:16:45.699848 2023-07-08 10:25:38.258251 a496d539-2fe7-45cc-9b0f-cb73229433a7 {"md5": "17eabd71c4200ba1eda0dafe6f5c0b12", "pid": "127307427", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/127307427", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/127307427", "source": "GND"}], "preferred_name": "Henriot, Jean-Claude", "authorized_access_point": "Henriot, Jean-Claude"} 2 -2023-07-08 08:16:45.876652 2023-07-08 10:28:38.424212 6f045b95-8075-4bac-ba51-37c4f4e397d8 {"md5": "7117cd73312e1c7eebcfacd986bc7fa0", "pid": "12742508X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/12742508X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12742508X", "source": "GND"}], "preferred_name": "Bogsrud, Thorvald", "authorized_access_point": "Bogsrud, Thorvald"} 2 -2023-07-08 08:16:46.154773 2023-07-08 08:16:46.154782 e67ccc7c-5ffc-4103-902a-f596475548bf {"md5": "62152574148520f70947686f0834057a", "pid": "12771961X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/12771961X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12771961X", "source": "GND"}], "variant_name": ["LeHeux, Johan Willem Mirlaas"], "preferred_name": "Le Heux, Johan Willem Mirlaas", "variant_access_point": ["LeHeux, Johan Willem Mirlaas"], "authorized_access_point": "Le Heux, Johan Willem Mirlaas"} 1 -2023-07-08 08:16:46.246056 2023-07-08 08:16:46.24607 10ccbdcc-9121-4d67-99cc-b8f919420aa9 {"md5": "a4f71e12cf79d1a06ba70dcaf7ccd3b0", "pid": "127772553", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/127772553", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/127772553", "source": "GND"}], "variant_name": ["Knippenberg, Josef"], "preferred_name": "Knippenberg, J.", "country_associated": "gw", "variant_access_point": ["Knippenberg, Josef"], "authorized_access_point": "Knippenberg, J."} 1 -2023-07-08 08:16:46.325783 2023-07-08 08:16:46.325788 03913fe4-896d-4468-b89b-b8d6974e444b {"md5": "e34c46e7d796223c7f889c019a2c196b", "pid": "127836160", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/127836160", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/127836160", "source": "GND"}], "preferred_name": "Nessler, Carl", "authorized_access_point": "Nessler, Carl"} 1 -2023-07-08 08:16:46.418217 2023-07-08 08:16:46.418226 15ca60b7-45cd-4a15-8b26-49d445448264 {"md5": "ce4ed435bb6bfd34d6b11c0c1f9fed90", "pid": "127845925", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/127845925", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/127845925", "source": "GND"}], "preferred_name": "Siemens, Martin", "authorized_access_point": "Siemens, Martin"} 1 -2023-07-08 08:16:46.525795 2023-07-08 08:16:46.5258 e70523f7-297d-43fc-a428-56eb8e278357 {"md5": "e1f8c974ce8602ec7bf2941b5ac02b2c", "pid": "12786959X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/12786959X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12786959X", "source": "GND"}], "variant_name": ["Krasny von Ergen, Arnold"], "date_of_birth": "07.01.1869", "date_of_death": "19.03.1937", "preferred_name": "Krasny, Arnold", "country_associated": "au", "variant_access_point": ["Krasny von Ergen, Arnold, 1869-1937"], "authorized_access_point": "Krasny, Arnold, 1869-1937"} 1 -2023-07-08 08:16:46.630792 2023-07-08 08:16:46.630797 ddeb2cbc-9a7c-4243-ad54-8c15e935405f {"md5": "47e768dcea50c98f8e95e7abe37da7a6", "pid": "128016736", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/128016736", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128016736", "source": "GND"}], "variant_name": ["Stephen, A. M."], "preferred_name": "Stephen, Alexander Maitland", "variant_access_point": ["Stephen, A. M."], "authorized_access_point": "Stephen, Alexander Maitland"} 1 -2023-07-08 08:16:46.725489 2023-07-08 08:16:46.725497 53e83f7b-e5e6-403f-bf24-916a945559ef {"md5": "f1b4a2a61a421c72b9371d940cb1656e", "pid": "128190094", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/128190094", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128190094", "source": "GND"}], "preferred_name": "Lohniský, Karel", "authorized_access_point": "Lohniský, Karel"} 1 -2023-07-08 08:16:46.821395 2023-07-08 08:16:46.821404 9f95814d-fc7e-4022-8637-d17e0a91649a {"md5": "952cb70021c1d46a9e968ff6de2ca4da", "pid": "128202432", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/128202432", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128202432", "source": "GND"}], "preferred_name": "Roško, Pavel", "authorized_access_point": "Roško, Pavel"} 1 -2023-07-08 08:16:47.109552 2023-07-08 08:16:47.109558 f317172e-7976-482b-a091-1b15d36f2e9b {"md5": "322200bb59e3d05d429853d3a9b7ded4", "pid": "128320419", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/128320419", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128320419", "source": "GND"}], "preferred_name": "Charvet, Pierre Alexandre", "authorized_access_point": "Charvet, Pierre Alexandre"} 1 -2023-07-08 08:16:47.295804 2023-07-08 08:16:47.295809 40abc087-fd90-411e-8962-e7c2913889ca {"md5": "6fd0d7df8621a9851a2c45ccc0c8b2ab", "pid": "128346280", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/128346280", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128346280", "source": "GND"}], "preferred_name": "Bühmann, Wilhelm", "authorized_access_point": "Bühmann, Wilhelm"} 1 -2023-07-08 08:16:47.377823 2023-07-08 08:16:47.377828 b9da4aa2-41aa-40ed-8bde-032140fdc370 {"md5": "f2500a993bde660ee9200e2d2605fc2c", "pid": "128387602", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/128387602", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128387602", "source": "GND"}], "date_of_birth": "1975", "preferred_name": "Deuschle, Karen", "authorized_access_point": "Deuschle, Karen, 1975-", "biographical_information": ["Diss. Biologie"]} 1 -2023-07-08 08:16:47.008532 2023-07-08 10:26:48.189078 52dc3911-e0e7-49d0-b301-55fa681e3087 {"md5": "9af7bae0c519f387c93580ef7d04611e", "pid": "128275022", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/128275022", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128275022", "source": "GND"}], "preferred_name": "Reckling, Karl-Heinz", "authorized_access_point": "Reckling, Karl-Heinz", "biographical_information": ["stellv. Stadtbezirksschulrat für Polytechnik und Berufsbildung"]} 2 -2023-07-08 08:16:47.199403 2023-07-08 10:27:04.328556 7188cb45-957c-4bae-96db-08b034bef7b8 {"md5": "e9d25d58f57e280601c015ab0a8cfc68", "pid": "12833794X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/12833794X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12833794X", "source": "GND"}], "variant_name": ["Erman, E."], "preferred_name": "Erman, Elise", "variant_access_point": ["Erman, E."], "authorized_access_point": "Erman, Elise"} 2 -2023-07-08 08:16:47.470361 2023-07-08 08:16:47.470374 81d9f312-bcbd-4eba-9150-0426e0144a05 {"md5": "29731b47896adc5938a45d52a7ec9008", "pid": "128430613", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/128430613", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128430613", "source": "GND"}], "preferred_name": "Skog, Johannes Petrus", "authorized_access_point": "Skog, Johannes Petrus", "biographical_information": ["Respondent in Åbo"]} 1 -2023-07-08 08:16:47.561855 2023-07-08 08:16:47.56186 648f0ae6-e075-4b23-9079-0c97d52e5510 {"md5": "9ad7ecfdf705eca9163bd5a871d087f3", "pid": "128437979", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/128437979", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128437979", "source": "GND"}], "variant_name": ["Pardee Winchester, Sarah"], "date_of_birth": "1837", "date_of_death": "1922", "preferred_name": "Winchester, Sarah Pardee", "country_associated": "xxu", "variant_access_point": ["Pardee Winchester, Sarah, 1837-1922"], "authorized_access_point": "Winchester, Sarah Pardee, 1837-1922"} 1 -2023-07-08 08:16:47.646006 2023-07-08 08:16:47.646015 bfee301c-9fdb-4b9f-9788-0b68acde995c {"md5": "093ccf913a682a90182b2b5ab6d12293", "pid": "12849915X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/12849915X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12849915X", "source": "GND"}], "variant_name": ["Lichter, Eduard Nikolaus"], "date_of_birth": "XX.XX.1920", "date_of_death": "28.12.2009", "preferred_name": "Lichter, Eduard", "country_associated": "gw", "variant_access_point": ["Lichter, Eduard Nikolaus, 1920-2009"], "authorized_access_point": "Lichter, Eduard, 1920-2009", "biographical_information": ["Ehrenbürger von Welschbillig"]} 1 -2023-07-08 08:16:47.846938 2023-07-08 08:16:47.846943 181eb3f2-a9d4-485a-8841-94ec2f323ef1 {"md5": "03c728c1da3825ee12a8d0bb1ee6303c", "pid": "128568763", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/128568763", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128568763", "source": "GND"}], "date_of_birth": "1968", "preferred_name": "Hauenschild, Katrin", "country_associated": "gw", "authorized_access_point": "Hauenschild, Katrin, 1968-", "biographical_information": ["Professorin für Grundschuldidaktik und Sachunterricht an der Universität Hildesheim; Forschungsschwerpunkte: Grundschuldidaktik, Sachunterricht, Umweltbildung, Bildung für nachhaltige Entwicklung, inter-/transkulturelle Bildung, Lehr-Lernforschung, Kindheitsforschung"]} 1 -2023-07-08 08:16:48.052741 2023-07-08 08:16:48.05275 ff2712d1-a128-45bf-8e75-d9c6dd4f1596 {"md5": "0cb782a0d84979dcd7d34bfb4fd50c18", "pid": "128669993", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/128669993", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128669993", "source": "GND"}], "variant_name": ["Joschko, Sabine Bohnet-"], "date_of_birth": "1964", "preferred_name": "Bohnet-Joschko, Sabine", "country_associated": "gw", "variant_access_point": ["Joschko, Sabine Bohnet-, 1964-"], "authorized_access_point": "Bohnet-Joschko, Sabine, 1964-", "biographical_information": ["Professorin an der Universität Witten-Herdecke, Walcker Stiftungsprofessur für Management und Innovation im Gesundheitswesen", "Diss. Fachbereich Wirtschaftspolitik und Konjunkturforschung, Schwerpunkt Umweltkommunikation und politische Ökonomie des Umweltschutzes; Leiterin der Forschungsgruppe Nachhaltigkeit, Univ. Witten/Herdecke"]} 1 -2023-07-08 08:16:48.143593 2023-07-08 08:16:48.1436 94f3f552-3d60-4b24-b845-363deb3e2dc6 {"md5": "377b3f7acaedc7b302b92e54fc96df12", "pid": "128807954", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/128807954", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128807954", "source": "GND"}], "date_of_birth": "1971", "preferred_name": "Dreeskornfeld, Lars", "authorized_access_point": "Dreeskornfeld, Lars, 1971-", "biographical_information": ["Dipl.-Ing. Elektro- und Informationstechnik"]} 1 -2023-07-08 08:16:48.345897 2023-07-08 08:16:48.345902 12e3d8fc-2100-4af5-a455-9744f9028dc8 {"md5": "76a970233d0c83231e09965ed437520e", "pid": "128887249", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/128887249", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128887249", "source": "GND"}], "variant_name": ["Jin-Ah Ahn", "Ahn, Jin-Ah"], "date_of_birth": "1969", "preferred_name": "An, Chin-a", "country_associated": "ko", "variant_access_point": ["Jin-Ah Ahn, 1969-", "Ahn, Jin-Ah, 1969-"], "authorized_access_point": "An, Chin-a, 1969-", "biographical_information": ["Korean. Komponistin"]} 1 -2023-07-08 08:16:48.444469 2023-07-08 08:16:48.444475 112c22ee-f612-4dd6-bc72-ba726508a949 {"md5": "6048360d9556cbd611e523ef2d5a5ffa", "pid": "128948426", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/128948426", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128948426", "source": "GND"}], "date_of_birth": "1880", "date_of_death": "1940", "preferred_name": "Lie, Jonas", "country_associated": "xxu", "authorized_access_point": "Lie, Jonas, 1880-1940", "biographical_information": ["Amerik. Maler, norweg. Herkunft"]} 1 -2023-07-08 08:16:47.937498 2023-07-08 10:28:57.346045 b192c6ec-14b5-4ab3-9651-a2539050099c {"md5": "8b2e7f2882c2c61f3fa295b35fffc372", "pid": "128630450", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/128630450", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128630450", "source": "GND"}], "variant_name": ["Bundschuchius, Martinus"], "preferred_name": "Bundschuch, Martin", "variant_access_point": ["Bundschuchius, Martinus"], "authorized_access_point": "Bundschuch, Martin", "biographical_information": ["aus Weimar; Respondent an der Univ. Jena"]} 2 -2023-07-08 08:16:48.232994 2023-07-08 10:28:58.113227 67b16eae-fa9f-4443-aa15-0b495c8de525 {"md5": "4e8273b15c1c677605fda7e4719edaf5", "pid": "128852690", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/128852690", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128852690", "source": "GND"}], "date_of_birth": "1975", "preferred_name": "Riegel, Stephanie", "authorized_access_point": "Riegel, Stephanie, 1975-", "biographical_information": ["Diss. Fachbereich Medizin"]} 2 -2023-07-08 08:16:48.534481 2023-07-08 08:16:48.534492 bd57dd28-f9a3-4362-96d9-48cca62575ca {"md5": "2c0626af9376849b750db21697f176ec", "pid": "128970790", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/128970790", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128970790", "source": "GND"}], "date_of_birth": "1941", "date_of_death": "2002", "preferred_name": "Ansorg, Peter", "country_associated": "gw", "authorized_access_point": "Ansorg, Peter, 1941-2002", "biographical_information": ["Dt. Chirurg, Hochschullehrer"]} 1 -2023-07-08 08:16:48.724792 2023-07-08 08:16:48.724797 bb05b8ee-81ba-4252-99e4-735e1c325900 {"md5": "1c23ff7a3151260f6cc648bd37a205d6", "pid": "129020893", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/129020893", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129020893", "source": "GND"}], "date_of_birth": "1974", "preferred_name": "Höllermann, Stefan", "authorized_access_point": "Höllermann, Stefan, 1974-", "biographical_information": ["Diss. Fachbereich Wirtschaftswissenschaften"]} 1 -2023-07-08 08:16:48.89212 2023-07-08 08:16:48.892125 a1e72182-8439-443a-ad25-f6987aa72d48 {"md5": "6b79abec9be5acab1979f06acdf71302", "pid": "129097632", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/129097632", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129097632", "source": "GND"}], "date_of_birth": "1856", "date_of_death": "1934", "preferred_name": "Barnett, Jackson", "country_associated": "xxu", "authorized_access_point": "Barnett, Jackson, 1856-1934", "biographical_information": ["Angehöriger der Creek, reich geworden durch Ölfunde auf seinem Land"]} 1 -2023-07-08 08:16:48.978144 2023-07-08 08:16:48.978148 2392ff0d-3f7b-478a-818c-64cbd8061cbf {"md5": "4a51401631c517a5b95b953793daff38", "pid": "129154105", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/129154105", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129154105", "source": "GND"}], "date_of_birth": "1937", "preferred_name": "Borsodi, Ferenc", "country_associated": "hu", "authorized_access_point": "Borsodi, Ferenc, 1937-", "biographical_information": ["Ungar.-österr. Künstler"]} 1 -2023-07-08 08:16:49.062748 2023-07-08 08:16:49.062754 e87f399e-ec3b-4302-aae4-94392952d4f0 {"md5": "b34070fbf45b3dc927ddd545ded15e2c", "pid": "129227838", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/129227838", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129227838", "source": "GND"}], "preferred_name": "Geyer, Ludwig", "authorized_access_point": "Geyer, Ludwig", "biographical_information": ["Philologe"]} 1 -2023-07-08 08:16:49.146926 2023-07-08 08:16:49.146935 de9b4402-0d25-4041-80c9-17d4da1f1378 {"md5": "94c9dd1d80094b9624c2cce8725d3816", "pid": "129446904", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/129446904", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129446904", "source": "GND"}], "variant_name": ["Xueli, Liu", "Xueli Liu"], "preferred_name": "Liu, Xueli", "variant_access_point": ["Xueli, Liu", "Xueli Liu"], "authorized_access_point": "Liu, Xueli", "biographical_information": ["Tätig an der University of California, Los Angeles, CA"]} 1 -2023-07-08 08:16:49.240448 2023-07-08 08:16:49.240452 2bd2a333-e7cb-49d9-b077-739f52623650 {"md5": "2a8c59cac48acf091368f797c888143e", "pid": "129475351", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/129475351", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129475351", "source": "GND"}], "date_of_birth": "1780", "preferred_name": "Kanzler, Josepha", "country_associated": "gw", "authorized_access_point": "Kanzler, Josepha, 1780-"} 1 -2023-07-08 08:16:49.320614 2023-07-08 08:16:49.320617 37fa0f37-d2a2-44f3-8308-ccec8013292b {"md5": "e9ffd5155e034300c7e1d48b999398f9", "pid": "129504971", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/129504971", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129504971", "source": "GND"}], "variant_name": ["Eisemann, Josephus", "Eisemann, Iosephvs"], "preferred_name": "Eisemann, Joseph", "variant_access_point": ["Eisemann, Josephus", "Eisemann, Iosephvs"], "authorized_access_point": "Eisemann, Joseph", "biographical_information": ["Aus Oberlauda; 1796 in Würzburg Diss."]} 1 -2023-07-08 08:16:48.808689 2023-07-08 10:29:00.487303 688956c1-33d8-4b77-b0a1-c33cd90f4bd7 {"md5": "e07cd3dc0534c418fc2c417cb989ae0e", "pid": "129048267", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/129048267", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129048267", "source": "GND"}], "variant_name": ["Johannes Franciscus, Pascalicus", "Pasqualigo, Giovanni Francesco", "Giovanni Francesco, Pasqualigo"], "date_of_birth": "ca. 15. Jh.", "preferred_name": "Pascalicus, Johannes Franciscus", "country_associated": "it", "variant_access_point": ["Johannes Franciscus, Pascalicus, ca. 15. Jh.", "Pasqualigo, Giovanni Francesco, ca. 15. Jh.", "Giovanni Francesco, Pasqualigo, ca. 15. Jh."], "authorized_access_point": "Pascalicus, Johannes Franciscus, ca. 15. Jh.", "biographical_information": ["aus Venedig; Italien. Dozent für Kirchenrecht in Padua"]} 2 -2023-07-08 08:16:49.411437 2023-07-08 10:29:09.20077 cc5d5597-a3f1-47f2-a54c-d242b33f39da {"md5": "49e20af033fc2de9c0d3dc638fc018ac", "pid": "129520896", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/129520896", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129520896", "source": "GND"}], "date_of_birth": "1926", "preferred_name": "Ap'rikean, Karpis", "country_associated": "ai", "parallel_access_point": ["Aprikian, Garbis, 1926-"], "authorized_access_point": "Ap'rikean, Karpis, 1926-", "biographical_information": ["Armen. Komponist und Chorleiter in Paris"]} 2 -2023-07-08 08:16:49.633271 2023-07-08 08:16:49.633274 cdf4c93b-4671-44b1-90d4-6c3a951fa121 {"md5": "2688209c61c8b3bb81b9396c530fa3bb", "pid": "129639109", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/129639109", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129639109", "source": "GND"}], "date_of_birth": "1975", "preferred_name": "Adam, Katja", "authorized_access_point": "Adam, Katja, 1975-", "biographical_information": ["Diss. Fachbereich Humanmedizin"]} 1 -2023-07-08 08:16:49.737961 2023-07-08 08:16:49.737969 0435c07d-b004-48b8-ad05-893e900ec891 {"md5": "bd34ee0096bc500a4bfe29354305d143", "pid": "129685828", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/129685828", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129685828", "source": "GND"}], "date_of_birth": "1970", "preferred_name": "Hachmöller, Christoph Gerhard", "authorized_access_point": "Hachmöller, Christoph Gerhard, 1970-", "biographical_information": ["Diss. Medizinische Fakultät"]} 1 -2023-07-08 08:16:49.846351 2023-07-08 08:16:49.846356 1b097ec5-6a6f-4975-bb98-9b8f0cded3aa {"md5": "d8bb19c076ed5e19aa08d3d28d4b3223", "pid": "129727482", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/129727482", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129727482", "source": "GND"}], "variant_name": ["Langenschmidt, Georg", "Langschmied, Georg", "Langschmid, Georg", "Langschmidt, Georgius", "Langscheidt, Georg", "Langkschmit, Georgius", "Langkschmit, Georg", "Langkschmiet, Georgius", "Langkschmiet, Georg", "Lanksmiet, Georg", "Lanksmiet, Georgius", "Lanckschmidt, Georgius", "Langschmidius, Georgius", "G. L."], "preferred_name": "Langschmidt, Georg", "variant_access_point": ["Langenschmidt, Georg", "Langschmied, Georg", "Langschmid, Georg", "Langschmidt, Georgius", "Langscheidt, Georg", "Langkschmit, Georgius", "Langkschmit, Georg", "Langkschmiet, Georgius", "Langkschmiet, Georg", "Lanksmiet, Georg", "Lanksmiet, Georgius", "Lanckschmidt, Georgius", "Langschmidius, Georgius", "G. L."], "authorized_access_point": "Langschmidt, Georg", "biographical_information": ["Dt. ev. Theologe; Prof. phil. extraord. in Rostock; herzogl.-bischöfl. Hofprediger in Verden; 1623 Pastor in Warmsen"]} 1 -2023-07-08 08:16:49.935782 2023-07-08 08:16:49.935792 752bee28-b407-4fed-86ed-cf88cd300c14 {"md5": "0e5591f4a5838b7938e22220c98adc07", "pid": "129803332", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/129803332", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129803332", "source": "GND"}], "variant_name": ["Safa, Haidar"], "date_of_birth": "1961", "preferred_name": "Ṣafā, Ḥaidar", "country_associated": "le", "variant_access_point": ["Safa, Haidar, 1961-"], "parallel_access_point": ["صفا، حيدر،, 1961-"], "authorized_access_point": "Ṣafā, Ḥaidar, 1961-", "biographical_information": ["Libanes. Maschinenbauingenieur, Deutschlehrer"]} 1 -2023-07-08 08:16:50.234272 2023-07-08 08:16:50.234281 fabcd964-cfa0-4f73-bd0d-5b9ef205dd49 {"md5": "99d326237bcb814ea2f3bce570041c94", "pid": "129855863", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/129855863", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129855863", "source": "GND"}], "date_of_birth": "1938", "preferred_name": "Reeckmann, Sigrid", "country_associated": "gw", "authorized_access_point": "Reeckmann, Sigrid, 1938-"} 1 -2023-07-08 08:16:50.322965 2023-07-08 08:16:50.32297 398dc1b4-fb2c-4cd7-bed5-a279ec2d155f {"md5": "cb82f16512697f4203ba64c706282c81", "pid": "12988782X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/12988782X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12988782X", "source": "GND"}], "variant_name": ["Feldman, Howard"], "date_of_birth": "ca. um 1940", "preferred_name": "Feldman, Howard A.", "country_associated": "xxu", "variant_access_point": ["Feldman, Howard, ca. um 1940-"], "authorized_access_point": "Feldman, Howard A., ca. um 1940-", "biographical_information": ["Amerikan. Kunstsammler, u.a. Kunstgewerbe, Volkskunst"]} 1 -2023-07-08 08:16:59.531908 2023-07-08 08:16:59.531923 759b44ba-03c3-4ab0-a2ef-b158dc5f623a {"md5": "556e2561d4a07aabcb20f3101c24fb2f", "pid": "135270103", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/135270103", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/135270103", "source": "GND"}], "preferred_name": "Kluge, Daniel", "authorized_access_point": "Kluge, Daniel", "biographical_information": ["Funktion: Knabenalt"]} 1 -2023-07-08 08:16:50.1278 2023-07-08 10:29:50.474604 95771262-955d-4df6-8255-15fe0a1a633a {"md5": "ca651de6ab5ec5478bd9aaa8b18af540", "pid": "129828866", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/129828866", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129828866", "source": "GND"}], "variant_name": ["Friedman, William F.", "Friedman, Wolfe Frederic", "Friedmann, Wolfe Frederic", "Friedmann, William Frederick", "Friedman, William"], "date_of_birth": "1891", "date_of_death": "1969", "preferred_name": "Friedman, William Frederick", "country_associated": "xxu", "variant_access_point": ["Friedman, William F., 1891-1969", "Friedman, Wolfe Frederic, 1891-1969", "Friedmann, Wolfe Frederic, 1891-1969", "Friedmann, William Frederick, 1891-1969", "Friedman, William, 1891-1969"], "authorized_access_point": "Friedman, William Frederick, 1891-1969", "biographical_information": ["Im Jahre 1896 änderte sich sein Name von Wolfe Frederic Friedman in William Frederick Friedman, da sein Vater amerikanischer Staatsbürger wurde", "Kryptologe, USA"]} 2 -2023-07-08 08:16:50.412871 2023-07-08 08:16:50.412876 4e0960b9-4e57-4364-8c12-218c8f109495 {"md5": "206576c01c9165677f6e13a27f1ecb4c", "pid": "129888796", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/129888796", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129888796", "source": "GND"}], "variant_name": ["Krishen Khanna"], "date_of_birth": "1925", "preferred_name": "Khanna, Krishen", "country_associated": "ii", "variant_access_point": ["Krishen Khanna, 1925-"], "authorized_access_point": "Khanna, Krishen, 1925-", "biographical_information": ["Ind. Maler u. Literaturwiss.; born in 1925 in Lyallpur, Punjab; was a Rudyard Kipling scholar in England; grad. in English lit. fr. Govt. Coll., Lahore; a painter"]} 1 -2023-07-08 08:16:50.509478 2023-07-08 08:16:50.509486 56e1575b-038f-4003-9aa8-feb1eddadccc {"md5": "6649fe34aee5fbd126064fcba70fcb64", "pid": "130000388", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/130000388", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/130000388", "source": "GND"}], "variant_name": ["Batzer, Anja"], "date_of_birth": "1965", "preferred_name": "Bickelhaupt, Anja", "variant_access_point": ["Batzer, Anja, 1965-"], "authorized_access_point": "Bickelhaupt, Anja, 1965-", "biographical_information": ["Ärztin"]} 1 -2023-07-08 08:16:50.600587 2023-07-08 08:16:50.600595 891fc5ff-d9e2-40f0-8978-7a6e967bbecb {"md5": "bcb558f0a02b3ef616d7475a6b2ed033", "pid": "130016985", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/130016985", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/130016985", "source": "GND"}], "date_of_birth": "1917", "preferred_name": "Nüesch, Johanna", "country_associated": "sz", "authorized_access_point": "Nüesch, Johanna, 1917-", "biographical_information": ["Schweizer Bibliothekarin, politisch-christlich engagiert"]} 1 -2023-07-08 08:16:50.693272 2023-07-08 08:16:50.693279 bf7f8b02-83dc-4569-b3a8-458e74cea7b6 {"md5": "550d8d18c430fe76d89d73d4fd590da3", "pid": "130020001", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/130020001", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/130020001", "source": "GND"}], "variant_name": ["Rogers, Martha", "Rogers, Martha Elizabeth"], "date_of_birth": "1914", "date_of_death": "1994", "preferred_name": "Rogers, Martha E.", "country_associated": "xxu", "variant_access_point": ["Rogers, Martha, 1914-1994", "Rogers, Martha Elizabeth, 1914-1994"], "authorized_access_point": "Rogers, Martha E., 1914-1994", "biographical_information": ["Amerikan. Krankenpflegerin u. Ärztin, Prof. an d. Univ. New York"]} 1 -2023-07-08 08:16:50.854316 2023-07-08 08:16:50.854319 d7e94c74-325b-4324-abda-50e90131a20f {"md5": "bbb5d77724c4cb7a53a4f0384c0a93b9", "pid": "130141623", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/130141623", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/130141623", "source": "GND"}], "date_of_birth": "1958", "preferred_name": "Hajatpour, Reza", "country_associated": "ir", "authorized_access_point": "Hajatpour, Reza, 1958-", "biographical_information": ["geb. im Nordiran; Iranist; Professor am Lehrstuhl für Islamisch-Religiöse Studien an der Univ. Erlangen-Nürnberg"]} 1 -2023-07-08 08:16:50.930285 2023-07-08 08:16:50.930289 c59b9dba-b948-486d-87d7-e3682a986368 {"md5": "dc1e87773db9e49185d948530077d408", "pid": "13022622X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/13022622X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13022622X", "source": "GND"}], "variant_name": ["Rottenhofer, Maria Helena", "Tetzel, Maria Helena"], "date_of_birth": "1672", "preferred_name": "Rottenhoffer, Maria Helena", "variant_access_point": ["Rottenhofer, Maria Helena, 1672", "Tetzel, Maria Helena, 1672"], "authorized_access_point": "Rottenhoffer, Maria Helena, 1672", "biographical_information": ["aus Nürnberg; Ehefrau des Christoph Nikolaus Rottenhoffer; Tochter des Philipp Jacob Tetzel"]} 1 -2023-07-08 08:16:51.02592 2023-07-08 08:16:51.025926 ceb9d031-780c-4cc2-8ce1-4e33e4a964f2 {"md5": "2e8db5594d26363aff8a36feac263e80", "pid": "130250473", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/130250473", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/130250473", "source": "GND"}], "date_of_birth": "1975", "preferred_name": "Suciu, Dan Michael", "authorized_access_point": "Suciu, Dan Michael, 1975-", "biographical_information": ["Diss. Fakultät für Klinische Medizin; aus Neumark, Rumänien"]} 1 -2023-07-08 08:16:51.116872 2023-07-08 08:16:51.116876 c23e04bd-c608-49a7-aeb1-973ec91fe10f {"md5": "884f4c60f4313101269ce82fb9328e45", "pid": "130374520", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/130374520", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/130374520", "source": "GND"}], "date_of_birth": "1973", "preferred_name": "Wollert, Christiane", "authorized_access_point": "Wollert, Christiane, 1973-", "biographical_information": ["Diss. Fachbereich Innere Medizin"]} 1 -2023-07-08 08:16:51.212525 2023-07-08 08:16:51.212528 8e8e2507-f21f-47b7-91e8-5d18f3d4c1b2 {"md5": "666ed95efbbb76a6a5ff4647ed68bbc9", "pid": "130502642", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/130502642", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/130502642", "source": "GND"}], "variant_name": ["Lerch, S."], "date_of_birth": "1977", "preferred_name": "Lerch, Sven", "variant_access_point": ["Lerch, S., 1977-"], "authorized_access_point": "Lerch, Sven, 1977-", "biographical_information": ["Humanmediziner"]} 1 -2023-07-08 08:16:51.305531 2023-07-08 08:16:51.305537 e394564f-ffd6-43ad-9c97-d33ca53ae8ef {"md5": "5c7551b9e40e65175dda4d4e1b19241d", "pid": "130582883", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/130582883", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/130582883", "source": "GND"}], "preferred_name": "Nolte, Kristina", "authorized_access_point": "Nolte, Kristina", "biographical_information": ["Dr., Kommunikationswissenschaftlerin, Journalistin, Agenturchefin"]} 1 -2023-07-08 08:16:51.611904 2023-07-08 08:16:51.611908 30f6d5b6-080f-4361-a120-6789b5240d1d {"md5": "aabdacd44df6d692aa81bb778daa6c3d", "pid": "130860557", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/130860557", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/130860557", "source": "GND"}], "date_of_birth": "1973", "preferred_name": "Rothfuss, Christian", "authorized_access_point": "Rothfuss, Christian, 1973-", "biographical_information": ["Diss. Wirtschaftswissenschaftliche Fakultät, Universität Würzburg"]} 1 -2023-07-08 08:16:51.698829 2023-07-08 08:16:51.698832 cacf72da-75a8-49d4-9cbe-84c65be80ab2 {"md5": "e3ac4e120a607a9d53a95a9057125a29", "pid": "131284703", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/131284703", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/131284703", "source": "GND"}], "date_of_birth": "1946", "preferred_name": "Raich, Rita", "authorized_access_point": "Raich, Rita, 1946-"} 1 -2023-07-08 08:16:51.808599 2023-07-08 08:16:51.808604 47e288eb-1a5e-48e5-85b8-07e043bb0b1f {"md5": "7c88fea36139ad96acfc076227a3848e", "pid": "131443704", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/131443704", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/131443704", "source": "GND"}], "variant_name": ["Lanes, Scott F."], "date_of_birth": "ca. 20./21. Jh.", "preferred_name": "Lanes, Scott", "country_associated": "xxu", "variant_access_point": ["Lanes, Scott F., ca. 20./21. Jh."], "authorized_access_point": "Lanes, Scott, ca. 20./21. Jh."} 1 -2023-07-08 08:16:51.882188 2023-07-08 08:16:51.88219 dc49d858-8247-4367-93f4-e1a1f5170d01 {"md5": "1ec458700afa388d1ef7e2c809e979a7", "pid": "131564692", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/131564692", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/131564692", "source": "GND"}], "variant_name": ["Flohr, Haike"], "date_of_birth": "1971", "preferred_name": "Gröhn, Haike", "variant_access_point": ["Flohr, Haike, 1971-"], "authorized_access_point": "Gröhn, Haike, 1971-", "biographical_information": ["Ärztin"]} 1 -2023-07-08 08:16:51.960651 2023-07-08 08:16:51.960657 a401d19a-5f28-4a2d-8155-516a78d8b13d {"md5": "bd11ec6cba6a3bbc32b7e77cf4004e8d", "pid": "131638653", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/131638653", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/131638653", "source": "GND"}], "date_of_birth": "1857", "date_of_death": "1930", "preferred_name": "Gutmann, Max von", "country_associated": "au", "authorized_access_point": "Gutmann, Max von, 1857-1930", "biographical_information": ["Österr. Industrieller; Adeliger in Ostrau"]} 1 -2023-07-08 08:16:52.062869 2023-07-08 08:16:52.062875 22f93ad2-22f1-4dd3-b0ea-d54b3dffbf50 {"md5": "24a494bcc56cb0faa382d61fb26255fc", "pid": "131675907", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/131675907", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/131675907", "source": "GND"}], "variant_name": ["Avalos-Trigueros, Carolina", "Avalos, Carolina"], "preferred_name": "Avalos Trigueros, Carolina", "country_associated": "es", "variant_access_point": ["Avalos-Trigueros, Carolina", "Avalos, Carolina"], "authorized_access_point": "Avalos Trigueros, Carolina", "biographical_information": ["Salvadorian. Soziologin"]} 1 -2023-07-08 08:16:52.269001 2023-07-08 08:16:52.269004 a808d52c-d9c2-4be6-ab63-8ccf3f8cd5dc {"md5": "0a50bb1594a48368011e18e7be2e73ef", "pid": "13178918X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/13178918X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13178918X", "source": "GND"}], "variant_name": ["Selle, Bettina"], "date_of_birth": "1964", "preferred_name": "Schneider, Bettina", "country_associated": "gw", "variant_access_point": ["Selle, Bettina, 1964-"], "authorized_access_point": "Schneider, Bettina, 1964-", "biographical_information": ["Promotion 1992; tätig am Institut für Rechnungs- und Prüfungswesen der Universität Göttingen; Fachhochschule Aachen; Univ. Stuttgart"]} 1 -2023-07-08 08:16:52.352679 2023-07-08 08:16:52.352687 6af93d82-a7fb-417f-a7e4-c2f2af598092 {"md5": "bbde74a8b1174e9c47a9563fd1039134", "pid": "131792350", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/131792350", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/131792350", "source": "GND"}], "date_of_birth": "1961", "preferred_name": "Mishra, Omprakash", "country_associated": "ii", "authorized_access_point": "Mishra, Omprakash, 1961-", "biographical_information": ["Ind. Politologe. Professor of International Relations, Jadavpur University, Kolkata. Pro-Vice Chancellor of IGNOU, the largest University of the world, 23 July 2007-22 July 2010."]} 1 -2023-07-08 08:16:51.508213 2023-07-08 10:26:49.55775 5e932a3a-d5fd-4de4-8e39-40b5416c003e {"md5": "2b625614a66290da219f9997c9b51f70", "pid": "130859842", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/130859842", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/130859842", "source": "GND"}], "variant_name": ["Fischer, Maximilian"], "date_of_birth": "07.06.1929", "date_of_death": "15.06.2019", "preferred_name": "Fischer, Max", "country_associated": "au", "variant_access_point": ["Fischer, Maximilian, 1929-2019"], "authorized_access_point": "Fischer, Max, 1929-2019"} 2 -2023-07-08 08:16:52.171734 2023-07-08 10:29:26.852393 13ef4087-f2bf-4d1f-acef-5739dde73d35 {"md5": "4104d19fce5e2354fa9250d3eb518c4f", "pid": "131709550", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/131709550", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/131709550", "source": "GND"}], "preferred_name": "Khnell, Andreas", "authorized_access_point": "Khnell, Andreas", "biographical_information": ["Tenorist"]} 2 -2023-07-08 08:16:52.442573 2023-07-08 08:16:52.442579 35ca5745-ad6c-44b9-8151-f7a1a7d793be {"md5": "8a7c9b49327a359ede2f3b6ee360aee8", "pid": "13184248X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/13184248X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13184248X", "source": "GND"}], "date_of_birth": "1894", "date_of_death": "1915", "preferred_name": "Lugli, Aldo", "country_associated": "it", "authorized_access_point": "Lugli, Aldo, 1894-1915", "biographical_information": ["Ital. Maler"]} 1 -2023-07-08 08:16:52.535951 2023-07-08 08:16:52.535956 ed4e207c-d5ae-4576-89b0-6a871a1cb338 {"md5": "2e9df62ce5bcf97d695977ad15e543ba", "pid": "131856839", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/131856839", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/131856839", "source": "GND"}], "date_of_birth": "ca. um 1638", "preferred_name": "Päbl, Georg", "authorized_access_point": "Päbl, Georg, ca. um 1638", "biographical_information": ["Sänger"]} 1 -2023-07-08 08:16:52.617326 2023-07-08 08:16:52.617336 4df3fc1d-9d7a-4870-854d-744fa38aa581 {"md5": "7438feb677d2a64335f62e8c3876e2ef", "pid": "131896873", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/131896873", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/131896873", "source": "GND"}], "variant_name": ["Folayan Osagie, Iyunolu", "Osagie, Iyunolu"], "date_of_birth": "1960", "preferred_name": "Osagie, Iyunolu Folayan", "variant_access_point": ["Folayan Osagie, Iyunolu, 1960-", "Osagie, Iyunolu, 1960-"], "authorized_access_point": "Osagie, Iyunolu Folayan, 1960-", "biographical_information": ["Associate Professor of English, Pennsylvania State Univ."]} 1 -2023-07-08 08:16:52.817515 2023-07-08 08:16:52.817518 065a7f5c-e50a-459d-adcc-be34f5891e94 {"md5": "0200f5bea790cb36786f85e7c05f77ae", "pid": "131930915", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/131930915", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/131930915", "source": "GND"}], "variant_name": ["Meyer, G."], "date_of_birth": "01.06.1949", "preferred_name": "Meyer, Gerd", "country_associated": "gw", "variant_access_point": ["Meyer, G., 1949-"], "parallel_access_point": ["Meyer, G., 1949-"], "authorized_access_point": "Meyer, Gerd, 1949-"} 1 -2023-07-08 08:16:52.898724 2023-07-08 08:16:52.898741 fb543e24-5118-4fda-a53c-86be887697e8 {"md5": "b69a59925a1afa25a2f3ae418f943e5c", "pid": "132104784", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/132104784", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/132104784", "source": "GND"}], "variant_name": ["Morales, M. M.", "Morales, Martín"], "date_of_birth": "1953", "preferred_name": "Morales, Martín María", "country_associated": "ag", "variant_access_point": ["Morales, M. M., 1953-", "Morales, Martín, 1953-"], "authorized_access_point": "Morales, Martín María, 1953-", "biographical_information": ["argent. Jesuit, Direktor des Institutum Historicum Societatis Iesu, Rom"]} 1 -2023-07-08 08:16:53.000341 2023-07-08 08:16:53.000349 d1997025-d8d8-4c54-9837-62f588377227 {"md5": "44a8d39a58d8d74458a9b9686996c1df", "pid": "132266741", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/132266741", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/132266741", "source": "GND"}], "variant_name": ["Ittersum, Martine Julia van", "VanIttersum, Martine Julia", "Ittersum, Martine J. van", "Van Ittersum, Martine J."], "date_of_birth": "1968", "preferred_name": "Van Ittersum, Martine Julia", "variant_access_point": ["Ittersum, Martine Julia van, 1968-", "VanIttersum, Martine Julia, 1968-", "Ittersum, Martine J. van, 1968-", "Van Ittersum, Martine J., 1968-"], "parallel_access_point": ["Van Ittersum, Martine Julia, 1968-"], "authorized_access_point": "Van Ittersum, Martine Julia, 1968-"} 1 -2023-07-08 08:16:53.200047 2023-07-08 10:29:31.843532 f684f191-fb2a-4cfc-92ce-3c6ae0578764 {"md5": "f4ccca5553aa2c331909382cecbda34e", "pid": "132373963", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/132373963", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/132373963", "source": "GND"}], "variant_name": ["Schultze, Otto Christoff", "Schultz, Otto Christoph", "Schultz, Otto Christoff", "Schulze, Otto Christoph", "Schulz, Otto Christoph"], "date_of_birth": "1658", "date_of_death": "05.10.1728", "preferred_name": "Schultze, Otto Christoph", "country_associated": "gw", "variant_access_point": ["Schultze, Otto Christoff, 1658-1728", "Schultz, Otto Christoph, 1658-1728", "Schultz, Otto Christoff, 1658-1728", "Schulze, Otto Christoph, 1658-1728", "Schulz, Otto Christoph, 1658-1728"], "authorized_access_point": "Schultze, Otto Christoph, 1658-1728", "biographical_information": ["Königl.-Großbritannischer Legationsrat; Kurfürstl.-Braunschweigischer Drost; Erb- und Gerichtsherr in Molsdorf (bei Erfurt), Dornheim und Ollendorf; in Molsdorf begraben"]} 2 -2023-07-08 08:16:53.290404 2023-07-08 08:16:53.290409 130c1e36-79ad-4dc8-b6e6-b6259f25dc6f {"md5": "3af87cc488676b190170ae7f1a67d45d", "pid": "13246781X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/13246781X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13246781X", "source": "GND"}], "date_of_birth": "19.11.1950", "preferred_name": "Tophoven, Klaus", "authorized_access_point": "Tophoven, Klaus, 1950-", "biographical_information": ["Diss. Philosophische Fakultät, Univ. Münster (Westfalen)"]} 1 -2023-07-08 08:16:53.358519 2023-07-08 08:16:53.358523 7f300467-0e9e-4a12-9a45-2a4cef1c0c78 {"md5": "7e83fc9edb08275ca31766096d206126", "pid": "132490846", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/132490846", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/132490846", "source": "GND"}], "preferred_name": "Peters, Christian", "country_associated": "gw", "authorized_access_point": "Peters, Christian"} 1 -2023-07-08 08:16:53.474099 2023-07-08 08:16:53.474115 25a4a6ad-1fee-4fda-9fbe-ad9ce4933641 {"md5": "7afcedb3cdf0e3bbc0892f2713bf0d6a", "pid": "132526808", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/132526808", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/132526808", "source": "GND"}], "variant_name": ["Crucius, Philipp", "La Croce, Philipp de", "LaCroce, Philipp de", "Croce, Philipp de la", "La Cruce, Philipp de", "LaCruce, Philipp de", "Cruce, Philipp de la", "La Crucis, Philipp de", "LaCrucis, Philipp de", "Crucis, Philipp de la"], "preferred_name": "Crucis, Philipp", "country_associated": "gw", "variant_access_point": ["Crucius, Philipp", "La Croce, Philipp de", "LaCroce, Philipp de", "Croce, Philipp de la", "La Cruce, Philipp de", "LaCruce, Philipp de", "Cruce, Philipp de la", "La Crucis, Philipp de", "LaCrucis, Philipp de", "Crucis, Philipp de la"], "authorized_access_point": "Crucis, Philipp"} 1 -2023-07-08 08:16:53.596887 2023-07-08 08:16:53.5969 5c785742-bd77-41ae-b929-4f0a2b5bdcd8 {"md5": "8c9e10511b480252693324bcf26026d7", "pid": "132658941", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/132658941", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/132658941", "source": "GND"}], "date_of_birth": "1875", "date_of_death": "1945", "preferred_name": "Verazzi, Serafino", "country_associated": "it", "authorized_access_point": "Verazzi, Serafino, 1875-1945"} 1 -2023-07-08 08:16:53.716085 2023-07-08 08:16:53.716099 45c4307d-e933-4a02-bbc5-e3bcbe3d11d1 {"md5": "f0bc3861edce31f57cc48cbfb8edfb2f", "pid": "132695405", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/132695405", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/132695405", "source": "GND"}], "variant_name": ["Stollen, Maria"], "preferred_name": "Wuniker, Maria", "variant_access_point": ["Stollen, Maria"], "authorized_access_point": "Wuniker, Maria", "biographical_information": ["aus Torgau"]} 1 -2023-07-08 08:16:53.834783 2023-07-08 08:16:53.834796 8bd77506-9d3c-4c01-ae2b-aefe23bd01a0 {"md5": "d4b0cca89ee9547ecb9bcc70656ebd0b", "pid": "132790912", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/132790912", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/132790912", "source": "GND"}], "variant_name": ["Wunderlich, Johannes Georgius", "Wunderlich, Ioannes Georgius"], "date_of_birth": "1734", "date_of_death": "1802", "preferred_name": "Wunderlich, Johann Georg", "variant_access_point": ["Wunderlich, Johannes Georgius, 1734-1802", "Wunderlich, Ioannes Georgius, 1734-1802"], "authorized_access_point": "Wunderlich, Johann Georg, 1734-1802", "biographical_information": ["Superintendent; Pfarrer und Heimatforscher in Wunsiedel"]} 1 -2023-07-08 08:16:54.059883 2023-07-08 08:16:54.059894 97b6e77f-3233-46bb-b89d-f7d1d17bdf53 {"md5": "341cbd97245d815c898ff6831bace058", "pid": "132828944", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/132828944", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/132828944", "source": "GND"}], "variant_name": ["Zirckel, Joannes Casparus", "Zirckel, Ioannes Casparus", "Zirckel, Johannes Caspar"], "preferred_name": "Zirckel, Johann Caspar", "variant_access_point": ["Zirckel, Joannes Casparus", "Zirckel, Ioannes Casparus", "Zirckel, Johannes Caspar"], "authorized_access_point": "Zirckel, Johann Caspar", "biographical_information": ["aus Haßfurt; 1694 Respondent (Theol.) in Würzburg"]} 1 -2023-07-08 08:16:54.169894 2023-07-08 08:16:54.169899 3bb4e4db-20e0-4914-894c-fb62344e4d6b {"md5": "f294b15f0d5fdfac18d7a0940f6dfd28", "pid": "132832860", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/132832860", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/132832860", "source": "GND"}], "date_of_birth": "1975", "preferred_name": "Knoll, Hartmut", "country_associated": "gw", "authorized_access_point": "Knoll, Hartmut, 1975-"} 1 -2023-07-08 08:16:54.268598 2023-07-08 08:16:54.268612 3aa9b4ba-63cf-4b6e-a3a6-1838a46193e0 {"md5": "2d9c2cade9e6887cad05e884c5b6560f", "pid": "132857022", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "qualifier": "Familie", "identifier": "http://d-nb.info/gnd/132857022", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/132857022", "source": "GND"}], "variant_name": ["Cieroccy, Familie"], "preferred_name": "Cierocki, Familie", "country_associated": "pl", "variant_access_point": ["Cieroccy, Familie"], "authorized_access_point": "Cierocki, Familie", "biographical_information": ["Poln. Familie"]} 1 -2023-07-08 08:16:54.392564 2023-07-08 08:16:54.392569 fb854860-cd85-455c-95bc-19b81f98bb7d {"md5": "7bc51b112bb4c60680b41f884a816be5", "pid": "132989719", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/132989719", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/132989719", "source": "GND"}], "variant_name": ["Cohen, Simon", "Kohen, Shimon"], "date_of_birth": "ca. Rishon LeZion", "preferred_name": "Cohen, Shimon", "variant_access_point": ["Cohen, Simon, 1937-", "Kohen, Shimon, 1937-"], "authorized_access_point": "Cohen, Shimon, 1937-", "biographical_information": ["israel. Komponist, Pianist, Dirigent, Arrangeur"]} 1 -2023-07-08 08:16:54.495689 2023-07-08 08:16:54.495704 15a5a4f9-670b-4225-b4f8-54dfe0699aad {"md5": "774957e9739cd84aea25c29d771943d8", "pid": "13299495X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/13299495X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13299495X", "source": "GND"}], "variant_name": ["Otto, Bettina", "Otto, Bettina Jellouschek-"], "date_of_birth": "1956", "preferred_name": "Jellouschek-Otto, Bettina", "country_associated": "gw", "variant_access_point": ["Otto, Bettina, 1956-", "Otto, Bettina Jellouschek-, 1956-"], "authorized_access_point": "Jellouschek-Otto, Bettina, 1956-", "biographical_information": ["Germanistin, psycholog. Beraterin"]} 1 -2023-07-08 08:16:54.630202 2023-07-08 08:16:54.630208 462562a7-5e41-4b1c-aedd-d494cf07b467 {"md5": "980d5609b785bea806e53cd5c9af285b", "pid": "132999102", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/132999102", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/132999102", "source": "GND"}], "variant_name": ["Komissarževskij, Viktor Grigorevič", "Komissarževskij, Viktor Grigor'evič", "Komissarževskij, V. G.", "Komissarževskij, V.G.", "Komissarževskij, Viktor", "Komissarževskij, V.", "Komissarzhevskiĭ, Viktor G.", "Komissarzhevskiĭ, Viktor Grigorevich", "Komissarzhevskiĭ, V. G.", "Komissarzhevskiĭ, V.G.", "Komissarzhevskiĭ, Viktor", "Komissarzhevskiĭ, V.", "Komissarjevski, V."], "date_of_birth": "1912", "preferred_name": "Komissarževskij, Viktor G.", "variant_access_point": ["Komissarževskij, Viktor Grigorevič, 1912-", "Komissarževskij, Viktor Grigor'evič, 1912-", "Komissarževskij, V. G., 1912-", "Komissarževskij, V.G., 1912-", "Komissarževskij, Viktor, 1912-", "Komissarževskij, V., 1912-", "Komissarzhevskiĭ, Viktor G., 1912-", "Komissarzhevskiĭ, Viktor Grigorevich, 1912-", "Komissarzhevskiĭ, V. G., 1912-", "Komissarzhevskiĭ, V.G., 1912-", "Komissarzhevskiĭ, Viktor, 1912-", "Komissarzhevskiĭ, V., 1912-", "Komissarjevski, V., 1912-"], "authorized_access_point": "Komissarževskij, Viktor G., 1912-", "biographical_information": ["Russ. Theaterwissenschaftler"]} 1 -2023-07-08 08:16:54.861588 2023-07-08 08:16:54.861602 ff4d8f1f-2f33-476a-abc6-cdf0aaf826c0 {"md5": "6090bf4d4c2c41d40c1ef41f63fbc629", "pid": "133056996", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/133056996", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133056996", "source": "GND"}], "variant_name": ["Bergeron, N."], "preferred_name": "Bergeron, Nicolas", "variant_access_point": ["Bergeron, N."], "authorized_access_point": "Bergeron, Nicolas"} 1 -2023-07-08 08:16:54.979214 2023-07-08 08:16:54.979234 9f1d0669-13bf-4049-a362-5a4db6ade492 {"md5": "74e1c5b000ccbdc8a6a0786e3c31d1cb", "pid": "13308325X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/13308325X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13308325X", "source": "GND"}], "variant_name": ["Kückmann, Theresa I.", "Zahn, Theresa I."], "date_of_birth": "1980", "preferred_name": "Kückmann, Theresa Irene", "country_associated": "xxu", "variant_access_point": ["Kückmann, Theresa I., 1980-", "Zahn, Theresa I., 1980-"], "authorized_access_point": "Kückmann, Theresa Irene, 1980-", "biographical_information": ["Diss. Fachbereich Biochemie, Chemie und Pharmazie, Universität Frankfurt a.M."]} 1 -2023-07-08 08:16:55.106663 2023-07-08 08:16:55.106674 f541aeeb-0f6c-4f67-a33b-1e3ef0408e82 {"md5": "be05cb0d8f8962a4a2a46c3ed5fc950b", "pid": "133092852", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/133092852", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133092852", "source": "GND"}], "date_of_birth": "1974", "preferred_name": "Krauß, Gunnar", "authorized_access_point": "Krauß, Gunnar, 1974-"} 1 -2023-07-08 08:16:55.24221 2023-07-08 08:16:55.242224 f6566c5a-5df9-4c38-a9ed-82c281f48906 {"md5": "a35af56678b45810d1d2a349e12563ee", "pid": "133104567", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/133104567", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133104567", "source": "GND"}], "variant_name": ["Behr, Diederich", "Behr, Theodoricus", "Behre, Diederich", "Behren, Diederich"], "date_of_birth": "04.12.1575", "date_of_death": "02.12.1632", "preferred_name": "Behr, Dietrich", "country_associated": "gw", "variant_access_point": ["Behr, Diederich, 1575-1632", "Behr, Theodoricus, 1575-1632", "Behre, Diederich, 1575-1632", "Behren, Diederich, 1575-1632"], "authorized_access_point": "Behr, Dietrich, 1575-1632", "biographical_information": ["Fürstl. Braunschw. und Lüneb. Geheimer Kammerrat; Drost in Hoya"]} 1 -2023-07-08 08:16:55.467164 2023-07-08 08:16:55.467172 13278d51-5967-452d-af41-9287b4c713d5 {"md5": "89c3fbcb18d4975de806bfcc30eb3eb6", "pid": "133130886", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/133130886", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133130886", "source": "GND"}], "date_of_birth": "1977", "preferred_name": "Quaas, Sebastian", "country_associated": "gw", "authorized_access_point": "Quaas, Sebastian, 1977-"} 1 -2023-07-08 08:16:55.586858 2023-07-08 08:16:55.586871 e372e887-4326-4b12-b5c8-01fd3819eb78 {"md5": "65d6b645a6044f1929cb4952dd7424f4", "pid": "133245187", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/133245187", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133245187", "source": "GND"}], "variant_name": ["Schouten, Matthijs", "Schouten, M.G.C."], "date_of_birth": "1952", "preferred_name": "Schouten, Matthijs G. C.", "country_associated": "ne", "variant_access_point": ["Schouten, Matthijs, 1952-", "Schouten, M.G.C., 1952-"], "authorized_access_point": "Schouten, Matthijs G. C., 1952-", "biographical_information": ["Bijzonder hoogleraar oecologie van het natuurherstel, Landbouwuniversiteit Wageningen, senior medewerker landschapsecologie en vegetatiekunde bij Staatsbosbheer"]} 1 -2023-07-08 08:16:55.349039 2023-07-08 10:29:52.749286 d27305ea-4dd0-44b3-be3b-826253a5a351 {"md5": "5994b2f1a63796adf827f3c6ac5d3af3", "pid": "13311189X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/13311189X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13311189X", "source": "GND"}], "preferred_name": "Schlossarek, Othmar", "authorized_access_point": "Schlossarek, Othmar"} 2 -2023-07-08 08:16:55.702115 2023-07-08 08:16:55.702126 1e327287-be41-4edb-a70d-b820f947509b {"md5": "275e8727ba9bf25f7a2a47207f462db8", "pid": "133255344", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/133255344", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133255344", "source": "GND"}], "date_of_birth": "07.03.1926", "preferred_name": "Kelly, Robert E.", "parallel_access_point": ["Kelly, Robert E., 1926-"], "authorized_access_point": "Kelly, Robert E., 1926-"} 1 -2023-07-08 08:16:55.79864 2023-07-08 08:16:55.798653 316c22c2-b4ef-4f12-a81b-b7a47c6324ed {"md5": "9a255eb4b2da6dbdc53dfae860cf7e0b", "pid": "133273407", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/133273407", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133273407", "source": "GND"}], "date_of_birth": "21.02.1966", "preferred_name": "Bulthaupt, Axel", "country_associated": "gw", "authorized_access_point": "Bulthaupt, Axel, 1966-", "biographical_information": ["Fernsehreporter, Kinderbuchautor"]} 1 -2023-07-08 08:16:56.020087 2023-07-08 08:16:56.020099 70613d65-7ed8-4e16-83a0-d5c698ed6b2d {"md5": "6acde6dd286918c2fc80b205e0368f94", "pid": "133396223", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/133396223", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133396223", "source": "GND"}], "preferred_name": "Kronaus, Christina", "authorized_access_point": "Kronaus, Christina"} 1 -2023-07-08 08:16:56.121291 2023-07-08 08:16:56.121306 d431009c-f5ad-4e23-bcc5-9aa37d8701cc {"md5": "d745b2481c15711a0c8ac3ee33fa192a", "pid": "133487342", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/133487342", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133487342", "source": "GND"}], "preferred_name": "O'Brien, Kathleen", "country_associated": "xxu", "authorized_access_point": "O'Brien, Kathleen", "biographical_information": ["Schriftstellerin, ursprünglich Fernsehkritikerin, lebt in den USA"]} 1 -2023-07-08 08:16:56.225725 2023-07-08 08:16:56.225737 a6eea227-6687-4d52-9224-beef8bac4b6d {"md5": "3053062c5ac6e3a873a1a0b77d59eed8", "pid": "13350171X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/13350171X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13350171X", "source": "GND"}], "variant_name": ["Hummel, Johannes"], "date_of_birth": "19.10.1893", "date_of_death": "XX.XX.1966", "preferred_name": "Hummel, Hans", "country_associated": "gw", "variant_access_point": ["Hummel, Johannes, 1893-1966"], "authorized_access_point": "Hummel, Hans, 1893-1966", "biographical_information": ["Generalsekretär des Landwirtschaftlichen Hauptverbandes für Württemberg und Hohenzollern, nach 1933 Prokurist, dann Direktor der Vereinigten Krankenversicherungs AG Berlin, 1949 Mitbegründer und Hauptgeschäftsführer des Dt. Bauernverbandes, Generalsekretär des Zentralausschusses der Deutschen Landwirtschaft, Großes Verdienstkreuz der Bundesrepublik"]} 1 -2023-07-08 08:16:56.346704 2023-07-08 08:16:56.346715 0db12d07-965e-434a-bebc-883fd8d975f6 {"md5": "8e7eddc61149a0b8ad2f959ec7a9dce1", "pid": "133685624", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/133685624", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133685624", "source": "GND"}], "variant_name": ["Porre, James de", "De Porre, James", "Revshark Deporre, James", "DePorre, James L."], "preferred_name": "DePorre, James", "country_associated": "xxu", "variant_access_point": ["Porre, James de", "De Porre, James", "Revshark Deporre, James", "DePorre, James L."], "authorized_access_point": "DePorre, James"} 1 -2023-07-08 08:16:56.460324 2023-07-08 08:16:56.460334 e2055f16-e900-47a9-8f74-c02a7ea7e5b4 {"md5": "33eb3b731159179cee025de71aa03eae", "pid": "133715671", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/133715671", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133715671", "source": "GND"}], "variant_name": ["Bäsch, Lorenz", "Basch, Lorenz", "Bausch, Lorenz"], "date_of_death": "1580", "preferred_name": "Baisch, Lorenz", "country_associated": "gw", "variant_access_point": ["Bäsch, Lorenz, -1580", "Basch, Lorenz, -1580", "Bausch, Lorenz, -1580"], "authorized_access_point": "Baisch, Lorenz, -1580"} 1 -2023-07-08 08:16:56.566464 2023-07-08 08:16:56.566479 9ae6ca43-670b-4f0a-be27-11936daa09f5 {"md5": "fe83e855bdbc46cf8be6a31e4c307b34", "pid": "133748294", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/133748294", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133748294", "source": "GND"}], "preferred_name": "Scharf, Roman", "authorized_access_point": "Scharf, Roman"} 1 -2023-07-08 08:16:56.686527 2023-07-08 08:16:56.686533 727d63b4-4267-4c47-9365-da6968728594 {"md5": "fe13e1c984981fd4ac35d107ba151ada", "pid": "134089316", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/134089316", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134089316", "source": "GND"}], "variant_name": ["Cissarz, Johannes", "Cissarz, Johannes Joseph Vincenz", "Cissarz, Johann V.", "Cissarz, Johann Vinzenz", "Cissarz, J. V.", "Cissarz, I. V.", "Cissarz", "J. V. C.", "JVC"], "date_of_birth": "22.01.1873", "date_of_death": "22.12.1942", "preferred_name": "Cissarz, Johann Vincenz", "country_associated": "gw", "variant_access_point": ["Cissarz, Johannes, 1873-1942", "Cissarz, Johannes Joseph Vincenz, 1873-1942", "Cissarz, Johann V., 1873-1942", "Cissarz, Johann Vinzenz, 1873-1942", "Cissarz, J. V., 1873-1942", "Cissarz, I. V., 1873-1942", "Cissarz, 1873-1942", "J. V. C., 1873-1942", "JVC, 1873-1942"], "parallel_access_point": ["Cissarz, J. V., 1873-1942"], "authorized_access_point": "Cissarz, Johann Vincenz, 1873-1942"} 1 -2023-07-08 08:16:56.808866 2023-07-08 08:16:56.808879 7bb74352-9f7d-4820-9fa0-587d9a6b00b4 {"md5": "9cc7fd9856154d43afaa71d45c65e6a2", "pid": "134092147", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/134092147", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134092147", "source": "GND"}], "preferred_name": "Vantard, Amélie", "country_associated": "fr", "authorized_access_point": "Vantard, Amélie"} 1 -2023-07-08 08:16:56.934377 2023-07-08 08:16:56.934392 b7253c39-9bdc-47ee-81eb-088869e52847 {"md5": "15cc895a9b86ced79f9385065ceea57b", "pid": "13416492X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/13416492X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13416492X", "source": "GND"}], "preferred_name": "Kirchmayer, Dieter", "authorized_access_point": "Kirchmayer, Dieter", "biographical_information": ["Wiener Neustadt, Fachhochschul-Studiengang Präzisions-, System- und Informationstechnik, Dipl.-Arb., 2001"]} 1 -2023-07-08 08:16:57.034348 2023-07-08 08:16:57.034361 fa7520de-8001-42d3-b3fc-e005c7c4cfa9 {"md5": "f0eed3ceab6b7b99dd1d09e7d10195e0", "pid": "134204603", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/134204603", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134204603", "source": "GND"}], "date_of_birth": "1971", "preferred_name": "Bisseleua, Daghela Hervé Bertin", "authorized_access_point": "Bisseleua, Daghela Hervé Bertin, 1971-", "biographical_information": ["Diss. Fakultät für Agrarwissenschaften, Georg-August-Universität Göttingen"]} 1 -2023-07-08 08:16:57.150228 2023-07-08 08:16:57.150237 be66ae98-69a3-4742-a329-d78bf8a674cf {"md5": "aea7c275b5ceb530b2a8fc40a41b4ba0", "pid": "134311086", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/134311086", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134311086", "source": "GND"}], "date_of_birth": "1938", "preferred_name": "Adcock, Eddie", "country_associated": "xxu", "authorized_access_point": "Adcock, Eddie, 1938-"} 1 -2023-07-08 08:16:57.381377 2023-07-08 08:16:57.381392 c2b9143d-1792-4b86-87d1-0b0cfe6bccd7 {"md5": "192af80399c6cfb329926d6ce2636bb2", "pid": "134449002", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/134449002", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134449002", "source": "GND"}], "preferred_name": "Ludes, Peter", "authorized_access_point": "Ludes, Peter"} 1 -2023-07-08 08:16:57.512011 2023-07-08 08:16:57.512021 bf88dc1b-e9a7-4b98-b1b6-ec1f7387f7c5 {"md5": "bd9e5b4de279f8b4e7ca3bb089f1a690", "pid": "134454901", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/134454901", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134454901", "source": "GND"}], "preferred_name": "Marcinkowska, Barbara", "authorized_access_point": "Marcinkowska, Barbara"} 1 -2023-07-08 08:16:57.626367 2023-07-08 08:16:57.626377 708da89d-92ac-4608-87f4-c64bba0381be {"md5": "ceb3c406aaa44d35737b6e58cd959e66", "pid": "134538099", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://d-nb.info/gnd/134538099", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134538099", "source": "GND"}], "variant_name": ["Theimer, Thorsten Uwe", "Theimer, Thorsten U.", "Theimer, Thorsten", "Theimer, Th. Uwe"], "date_of_birth": "09.07.1944", "preferred_name": "Theimer, Uwe", "country_associated": "au", "variant_access_point": ["Theimer, Thorsten Uwe, 1944-", "Theimer, Thorsten U., 1944-", "Theimer, Thorsten, 1944-", "Theimer, Th. Uwe, 1944-"], "authorized_access_point": "Theimer, Uwe, 1944-", "biographical_information": ["österr. Dirigent, Musiker ; Professor am Institut für Gesang und Musiktheater an der Universität für Musik und darstellende Kunst Wien"]} 1 -2023-07-08 08:16:57.751599 2023-07-08 08:16:57.751606 23c33bbe-ac61-4fec-a68d-c6a01928a378 {"md5": "8ed90a90ac49420a003a57f4ac8de26f", "pid": "134574079", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/134574079", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134574079", "source": "GND"}], "date_of_birth": "1715", "date_of_death": "1783", "preferred_name": "Nares, James", "country_associated": "xxk", "authorized_access_point": "Nares, James, 1715-1783", "biographical_information": ["Brit. Komponist und Organist"]} 1 -2023-07-08 08:16:57.872563 2023-07-08 08:16:57.872572 656a745f-c2ab-4b62-8795-fcb7da3e2e44 {"md5": "b9afc15e70fc4115990f99c7a06933b9", "pid": "134583337", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/134583337", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134583337", "source": "GND"}], "preferred_name": "Burian, Peter", "authorized_access_point": "Burian, Peter"} 1 -2023-07-08 08:16:57.96815 2023-07-08 08:16:57.968159 7073922b-dccb-40c0-a9df-a8bd74412405 {"md5": "8f165042fc5a42a9e0c7f0334495ba1e", "pid": "134588959", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/134588959", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134588959", "source": "GND"}], "variant_name": ["Norum, John T."], "preferred_name": "Norum, John", "variant_access_point": ["Norum, John T."], "authorized_access_point": "Norum, John"} 1 -2023-07-08 08:16:58.081889 2023-07-08 08:16:58.081901 edf5f0f2-8b32-48ea-8957-9f995313b50e {"md5": "b291ce2921281e68996329a6778a36c6", "pid": "134590481", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/134590481", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134590481", "source": "GND"}], "date_of_birth": "1954", "preferred_name": "Mazé, Philippe", "country_associated": "fr", "authorized_access_point": "Mazé, Philippe, 1954-"} 1 -2023-07-08 08:16:59.662471 2023-07-08 08:16:59.662475 677ed71a-a352-41b6-a0bf-415cd6f6526b {"md5": "39e4cb0507eeedb070f735f94a683b05", "pid": "135270413", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/135270413", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/135270413", "source": "GND"}], "variant_name": ["Le Fleming, Orlando", "Fleming, Orlando le"], "preferred_name": "LeFleming, Orlando", "variant_access_point": ["Le Fleming, Orlando", "Fleming, Orlando le"], "authorized_access_point": "LeFleming, Orlando", "biographical_information": ["Brit. Jazzmusiker"]} 1 -2023-07-08 08:16:58.196783 2023-07-08 08:16:58.196795 5bf09e81-ae08-45f7-9543-7305677c3867 {"md5": "e97fc486040db721b0604e5a4e328c29", "pid": "134591968", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/134591968", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134591968", "source": "GND"}], "variant_name": ["Gielgud, John, Sir", "Gielgud, Arthur John", "Gilguds, Džons", "Gilgud, Džon", "Гилгуд, Джон", "Гилгуд, Џон"], "date_of_birth": "14.04.1904", "date_of_death": "21.05.2000", "preferred_name": "Gielgud, John", "country_associated": "xxk", "variant_access_point": ["Gielgud, John, Sir, 1904-2000", "Gielgud, Arthur John, 1904-2000", "Gilguds, Džons, 1904-2000", "Gilgud, Džon, 1904-2000", "Гилгуд, Джон, 1904-2000", "Гилгуд, Џон, 1904-2000"], "authorized_access_point": "Gielgud, John, 1904-2000", "biographical_information": ["Funktion: Sprecher", "Theaterdebut 1921, geadelt 1957"]} 1 -2023-07-08 08:16:58.317944 2023-07-08 08:16:58.317949 4325a09e-8fa7-4855-887c-df39709241c2 {"md5": "d568107131797d5608072f9acc5c8695", "pid": "134623487", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/134623487", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134623487", "source": "GND"}], "preferred_name": "Powell, Alan", "authorized_access_point": "Powell, Alan"} 1 -2023-07-08 08:16:58.421518 2023-07-08 08:16:58.421529 e5584030-f15a-40b9-9c5c-26847c9080b4 {"md5": "c1f8de8f5c70b5b7b93cd9ade94e0a46", "pid": "134678478", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/134678478", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134678478", "source": "GND"}], "variant_name": ["Kraeutler, Walter"], "preferred_name": "Kräutler, Walter", "variant_access_point": ["Kraeutler, Walter"], "parallel_access_point": ["Kraeutler, Walter"], "authorized_access_point": "Kräutler, Walter"} 1 -2023-07-08 08:16:58.535458 2023-07-08 08:16:58.535471 df415fa9-40c0-4791-baf7-bb34670b4312 {"md5": "6a489b10edb4718a43d12df51301fa8d", "pid": "13468706X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/13468706X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13468706X", "source": "GND"}], "variant_name": ["Smith, Lawrence L.", "Leighton-Smith, Lawrence", "Leighton Smith, Lawrence"], "date_of_birth": "1936", "preferred_name": "Smith, Lawrence Leighton", "country_associated": "xxu", "variant_access_point": ["Smith, Lawrence L., 1936-", "Leighton-Smith, Lawrence, 1936-", "Leighton Smith, Lawrence, 1936-"], "authorized_access_point": "Smith, Lawrence Leighton, 1936-", "biographical_information": ["Amerikan. Dirigent u. Pianist"]} 1 -2023-07-08 08:16:58.685863 2023-07-08 08:16:58.685866 c8f0522d-86ad-4700-8eb1-4a311464659a {"md5": "6cf86c6c6cebb69fa0039d0a17624bee", "pid": "134694031", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/134694031", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134694031", "source": "GND"}], "date_of_birth": "22.03.1939", "date_of_death": "06.12.1996", "preferred_name": "Westi, Kurt", "country_associated": "dk", "authorized_access_point": "Westi, Kurt, 1939-1996", "biographical_information": ["Dänischer Tenor"]} 1 -2023-07-08 08:16:58.803027 2023-07-08 08:16:58.80304 55b52273-89d5-447c-92b7-23d7fc927e7e {"md5": "bb68257b2c4ad7bbbb41010008603364", "pid": "134802993", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/134802993", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134802993", "source": "GND"}], "variant_name": ["Peterson, Wayne T."], "date_of_birth": "1927", "date_of_death": "2021", "preferred_name": "Peterson, Wayne", "country_associated": "xxu", "variant_access_point": ["Peterson, Wayne T., 1927-2021"], "authorized_access_point": "Peterson, Wayne, 1927-2021"} 1 -2023-07-08 08:16:58.920841 2023-07-08 08:16:58.920853 3da46d3c-ad8b-4695-a84b-fda0caf18e53 {"md5": "730debae83986fc8f0a60992816ff2c1", "pid": "134805313", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/134805313", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134805313", "source": "GND"}], "date_of_birth": "30.01.1912", "date_of_death": "XX.XX.1976", "preferred_name": "Peyron, Joseph", "authorized_access_point": "Peyron, Joseph, 1912-1976", "biographical_information": ["Franzose"]} 1 -2023-07-08 08:16:59.038807 2023-07-08 08:16:59.038813 01e1ec07-dfbf-4cf8-8692-8cb1a2ae2051 {"md5": "581d47cd1798645df2c97da8b1405931", "pid": "134872223", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/134872223", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134872223", "source": "GND"}], "preferred_name": "Davies, Myra", "authorized_access_point": "Davies, Myra"} 1 -2023-07-08 08:16:59.156794 2023-07-08 08:16:59.156804 bbe9b7bc-0794-416d-8dd5-5ad17d1889e2 {"md5": "3aa143eb598f50170857d0ceb050390b", "pid": "135012864", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/135012864", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/135012864", "source": "GND"}], "variant_name": ["Müller, Rena C.", "Charnin Müller, Rena"], "preferred_name": "Müller, Rena Charnin", "variant_access_point": ["Müller, Rena C.", "Charnin Müller, Rena"], "authorized_access_point": "Müller, Rena Charnin"} 1 -2023-07-08 08:16:59.300531 2023-07-08 08:16:59.300542 332455e3-7e56-4b52-8d52-c5ed462be801 {"md5": "c779bf7d307300608d760eb023705b66", "pid": "135074800", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/135074800", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/135074800", "source": "GND"}], "variant_name": ["Taylor, Edgar Kendall"], "date_of_birth": "27.07.1905", "date_of_death": "05.12.1999", "preferred_name": "Taylor, Kendall", "country_associated": "xxk", "variant_access_point": ["Taylor, Edgar Kendall, 1905-1999"], "authorized_access_point": "Taylor, Kendall, 1905-1999"} 1 -2023-07-08 08:16:59.412703 2023-07-08 08:16:59.412716 b877d3b9-bcf6-4288-88b1-39f13724e2b9 {"md5": "b64b906932415eafa79f46ba15ceb6fa", "pid": "135203449", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/135203449", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/135203449", "source": "GND"}], "variant_name": ["Viklicky, Emil"], "date_of_birth": "23.11.1948", "preferred_name": "Viklický, Emil", "variant_access_point": ["Viklicky, Emil, 1948-"], "authorized_access_point": "Viklický, Emil, 1948-", "biographical_information": ["Tschech. Jazzpianist"]} 1 -2023-07-08 08:16:59.772505 2023-07-08 08:16:59.772516 8894538f-6d8a-4863-b761-4d93cad596a3 {"md5": "d63fb63f532e5b03bc5bda7cb009b0e7", "pid": "135374774", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/135374774", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/135374774", "source": "GND"}], "date_of_birth": "1939", "preferred_name": "Steidle, Peter", "authorized_access_point": "Steidle, Peter, 1939-"} 1 -2023-07-08 08:16:59.890722 2023-07-08 08:16:59.890736 1f32e1db-42aa-4141-8a2b-d3bf169a5458 {"md5": "9101c8d27e711f22249962503d1784e0", "pid": "135580986", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/135580986", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/135580986", "source": "GND"}], "variant_name": ["Kropiński, Jósef"], "date_of_birth": "28.12.1913", "date_of_death": "08.10.1970", "preferred_name": "Kropiński, Józef", "country_associated": "pl", "variant_access_point": ["Kropiński, Jósef, 1913-1970"], "authorized_access_point": "Kropiński, Józef, 1913-1970"} 1 -2023-07-08 08:16:59.999563 2023-07-08 08:16:59.999577 84f8d8ed-805a-493f-a553-d1fc7b2c6c49 {"md5": "8c28fdc1920b8426d0fa739ad505769d", "pid": "135626498", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/135626498", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/135626498", "source": "GND"}], "variant_name": ["Mauro, Francesco Marchese di Polvica di"], "preferred_name": "Polvica, Francesco di Mauro di", "variant_access_point": ["Mauro, Francesco Marchese di Polvica di"], "authorized_access_point": "Polvica, Francesco di Mauro di"} 1 -2023-07-08 08:17:00.115882 2023-07-08 08:17:00.115896 4cee2d3a-03a1-4276-bfd4-4f64521be435 {"md5": "82de1a80b6cc38cbd64ec516c12e58af", "pid": "135627095", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/135627095", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/135627095", "source": "GND"}], "date_of_birth": "1977", "preferred_name": "Moldenhauer, Karsten", "authorized_access_point": "Moldenhauer, Karsten, 1977-", "biographical_information": ["Diss. Gottfried Wilhelm Leibniz Universität Hannover, Fakultät für Mathematik und Physik"]} 1 -2023-07-08 08:17:00.238329 2023-07-08 08:17:00.23834 81664d30-b54b-45ad-a6cf-f619ff8e7758 {"md5": "d06fa311d94d384f57b5e1700ee20df2", "pid": "135661234", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "qualifier": "Blaubirer", "identifier": "http://d-nb.info/gnd/135661234", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/135661234", "source": "GND"}], "variant_name": ["Blaubirer, Johann", "Johann, Plaubirer"], "date_of_birth": "ca. ", "date_of_death": "15. Jh.", "preferred_name": "Johann, Blaubirer", "country_associated": "gw", "variant_access_point": ["Blaubirer, Johann, ca. -15. Jh.", "Johann, Plaubirer, ca. -15. Jh."], "authorized_access_point": "Johann, Blaubirer, ca. -15. Jh."} 1 -2023-07-08 08:17:00.470563 2023-07-08 08:17:00.470582 49bbe585-eb44-4762-83e1-959a11ba2f55 {"md5": "5507a9faafba93f449e8a5b97631e842", "pid": "13579000X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/13579000X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13579000X", "source": "GND"}], "variant_name": ["Kantiréa, Maria", "Kantirea, M.", "Kantērea, M."], "date_of_birth": "1970", "preferred_name": "Kantērea, Maria", "country_associated": "gr", "variant_access_point": ["Kantiréa, Maria, 1970-", "Kantirea, M., 1970-", "Kantērea, M., 1970-"], "parallel_access_point": ["Καντηρέα, Μαρία, 1970-"], "authorized_access_point": "Kantērea, Maria, 1970-", "biographical_information": ["Historikerin, hat in Frankreich studiert"]} 1 -2023-07-08 08:17:00.578874 2023-07-08 08:17:00.578887 8a9117d6-3474-42ec-8b61-e7b968de338a {"md5": "ed35acd289052911c0fb85d2e638f28e", "pid": "135835321", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/135835321", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/135835321", "source": "GND"}], "variant_name": ["Bednarek, Monika A."], "date_of_birth": "1977", "preferred_name": "Bednarek, Monika", "country_associated": "gw", "variant_access_point": ["Bednarek, Monika A., 1977-"], "authorized_access_point": "Bednarek, Monika, 1977-", "biographical_information": ["associate professor at the Department of Linguistics, University of Sydney; PhD at the University of Augsburg, Germany, in 2005; post-doctoral research at the University of Sydney (2006-2008) and the University of Technology, Sydney (2008-2009)"]} 1 -2023-07-08 08:17:00.708967 2023-07-08 08:17:00.708973 06d5a0b0-a253-4d77-a250-1d3a69e3fcb1 {"md5": "20da26c082474f99dd317a7d48c2a7b1", "pid": "135958245", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/135958245", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/135958245", "source": "GND"}], "preferred_name": "Frémaux, Benjamin", "country_associated": "fr", "authorized_access_point": "Frémaux, Benjamin", "biographical_information": ["Diplom École Polytechnique, Ingenieur, Corps de Mines"]} 1 -2023-07-08 08:17:02.075904 2023-07-08 08:17:02.075915 98cb287a-12ab-433c-b788-e6d88dafdee0 {"md5": "7f575b4dc19b665d36fd3dbb48b1b399", "pid": "138374732", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/138374732", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/138374732", "source": "GND"}], "variant_name": ["Macdonald, Robert Maclauchlan"], "date_of_birth": "1874", "preferred_name": "Macdonald, Robert M.", "variant_access_point": ["Macdonald, Robert Maclauchlan, 1874-"], "parallel_access_point": ["Macdonald, Robert M., 1874-"], "authorized_access_point": "Macdonald, Robert M., 1874-"} 1 -2023-07-08 08:17:00.351428 2023-07-08 10:30:09.498819 f4501741-8c5a-4535-93c0-864bd816886d {"md5": "7c157a71c4e737ff75cd5e74c08fe04b", "pid": "135757452", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/135757452", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/135757452", "source": "GND"}], "variant_name": ["Puig Gonzalez, Hélios"], "preferred_name": "Gonzalez, Hélios Puig", "variant_access_point": ["Puig Gonzalez, Hélios"], "authorized_access_point": "Gonzalez, Hélios Puig", "biographical_information": ["Tätig an der UFRGS"]} 2 -2023-07-08 08:17:00.985685 2023-07-08 08:17:00.98569 f76279c3-41d8-43e0-9925-0b5eba2cd1cf {"md5": "632d7906171e2f1ab1ddc0e69b198051", "pid": "135973368", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/135973368", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/135973368", "source": "GND"}], "variant_name": ["Prejs, Aleksandr Germanovič", "Prejs, Aleksandr", "Prejs, Alexander", "Prejs, A.", "Preis, Alexander G.", "Preis, Alexander", "Preĭs, Aleksandr Germanovich", "Preĭs, Aleksandr", "Preis, Aleksandr", "Preis, Alexandre", "Preĭs, A. G.", "Preis, A. G.", "Preis, A.", "Preiss, Alexander", "Preiss, A.", "Preys, Alexander", "Preys, Alexandre"], "date_of_birth": "1905", "date_of_death": "1942", "preferred_name": "Prejs, Aleksandr G.", "country_associated": "ru", "variant_access_point": ["Prejs, Aleksandr Germanovič, 1905-1942", "Prejs, Aleksandr, 1905-1942", "Prejs, Alexander, 1905-1942", "Prejs, A., 1905-1942", "Preis, Alexander G., 1905-1942", "Preis, Alexander, 1905-1942", "Preĭs, Aleksandr Germanovich, 1905-1942", "Preĭs, Aleksandr, 1905-1942", "Preis, Aleksandr, 1905-1942", "Preis, Alexandre, 1905-1942", "Preĭs, A. G., 1905-1942", "Preis, A. G., 1905-1942", "Preis, A., 1905-1942", "Preiss, Alexander, 1905-1942", "Preiss, A., 1905-1942", "Preys, Alexander, 1905-1942", "Preys, Alexandre, 1905-1942"], "parallel_access_point": ["Preĭs, A., 1905-1942"], "authorized_access_point": "Prejs, Aleksandr G., 1905-1942"} 1 -2023-07-08 08:17:01.089896 2023-07-08 08:17:01.089905 ce691fb9-5f7a-446d-aaad-8df4ba40205b {"md5": "49844c5f5a814f3a6731bd42fadf63c0", "pid": "136148808", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/136148808", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/136148808", "source": "GND"}], "variant_name": ["Chandler, Caroline Auguste"], "date_of_birth": "07.12.1906", "date_of_death": "18.12.1979", "preferred_name": "Chandler, Caroline A.", "country_associated": "xxu", "variant_access_point": ["Chandler, Caroline Auguste, 1906-1979"], "authorized_access_point": "Chandler, Caroline A., 1906-1979"} 1 -2023-07-08 08:17:01.207435 2023-07-08 08:17:01.207441 791a8b97-0609-4b26-bb54-a76bfa2bd18a {"md5": "ed1bf6127311a6adb39789870e88c17d", "pid": "136205275", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/136205275", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/136205275", "source": "GND"}], "variant_name": ["Kroiss, H.", "Kroiß, H."], "date_of_birth": "1944", "preferred_name": "Kroiss, Helmut", "country_associated": "au", "variant_access_point": ["Kroiss, H., 1944-", "Kroiß, H., 1944-"], "authorized_access_point": "Kroiss, Helmut, 1944-", "biographical_information": ["Vorstand am Institut für Wassergüte, Ressourcenmanagement und Abfallwirtschaft der Techn. Univ. Wien"]} 1 -2023-07-08 08:17:01.583643 2023-07-08 08:17:01.583654 7bfdc5f9-e73b-49f4-83e3-c137342097a7 {"md5": "1d306ba53f95649637fd96eb5d8e7547", "pid": "136999271", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/136999271", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/136999271", "source": "GND"}], "date_of_birth": "1981", "preferred_name": "Walter, Hanna", "authorized_access_point": "Walter, Hanna, 1981-", "biographical_information": ["Diss. Medizinische Fakultät der Univ. Tübingen"]} 1 -2023-07-08 08:17:01.720767 2023-07-08 08:17:01.720781 faab66c3-e3b3-44c5-a657-c0b93c2ddf68 {"md5": "1b1a2449e0c5b2c832d1e589fe768c8e", "pid": "137111223", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/137111223", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/137111223", "source": "GND"}], "variant_name": ["Woyna, Benedictus"], "date_of_death": "1615", "preferred_name": "Wojna, Benedyct", "country_associated": "pl", "variant_access_point": ["Woyna, Benedictus, -1615"], "authorized_access_point": "Wojna, Benedyct, -1615"} 1 -2023-07-08 08:17:01.831251 2023-07-08 08:17:01.831262 791d7b87-6d43-4b70-a430-0299099431c8 {"md5": "bbd1c08ccbbc02c1c97f0575aa571f58", "pid": "137241348", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/137241348", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/137241348", "source": "GND"}], "variant_name": ["Briese, V."], "date_of_birth": "25.06.1951", "preferred_name": "Briese, Volker", "country_associated": "gw", "variant_access_point": ["Briese, V., 1951-"], "authorized_access_point": "Briese, Volker, 1951-", "biographical_information": ["Professor für Gynäkologie an der Universitätsfrauenklinik und Poliklinik am Klinikum Südstadt Rostock"]} 1 -2023-07-08 08:17:01.942322 2023-07-08 08:17:01.942336 c230335a-a35a-4f3f-be75-023d4fe4e644 {"md5": "e2322ad3e61e0f600131d3efcdfb7202", "pid": "137500750", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/137500750", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/137500750", "source": "GND"}], "preferred_name": "Allen, John", "country_associated": "sa", "authorized_access_point": "Allen, John", "biographical_information": ["südafrikanischer Journalist, ehem. Präsident der südafrikanischen Journalistengesellschaft"]} 1 -2023-07-08 08:17:01.454388 2023-07-08 10:30:31.79728 c5025ddc-a7ad-4598-8e76-1e90f36ca0e7 {"md5": "3eb0094c74efdf15c26e710eaa4599a5", "pid": "136444075", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/136444075", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/136444075", "source": "GND"}], "variant_name": ["Lornell, Christopher", "Lornell, Chris"], "date_of_birth": "1953", "preferred_name": "Lornell, Kip", "country_associated": "xxu", "variant_access_point": ["Lornell, Christopher, 1953-", "Lornell, Chris, 1953-"], "authorized_access_point": "Lornell, Kip, 1953-", "biographical_information": ["Seit 1992 an der George Washington University"]} 2 -2023-07-08 08:17:02.197719 2023-07-08 08:17:02.197729 f2919f14-161a-4408-a8f2-736cb974aa7c {"md5": "ea676ef76111a988f738160450675402", "pid": "138598010", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/138598010", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/138598010", "source": "GND"}], "variant_name": ["Duparc, Marie-Alexandre", "Duparc", "Du Parc, Marie-Alexandre", "Du Parc, Marie Alexandre", "Duparq, Marie-Alexandre", "Du Parc"], "date_of_birth": "1760", "date_of_death": "1829", "preferred_name": "Duparc, Marie Alexandre", "country_associated": "fr", "variant_access_point": ["Duparc, Marie-Alexandre, 1760-1829", "Duparc, 1760-1829", "Du Parc, Marie-Alexandre, 1760-1829", "Du Parc, Marie Alexandre, 1760-1829", "Duparq, Marie-Alexandre, 1760-1829", "Du Parc, 1760-1829"], "authorized_access_point": "Duparc, Marie Alexandre, 1760-1829"} 1 -2023-07-08 08:17:02.600713 2023-07-08 08:17:02.600717 a0b62155-8e4b-45d2-8236-95318d26b735 {"md5": "915c6bc0704938a3cb9b99db2ee55d53", "pid": "139120629", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139120629", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139120629", "source": "GND"}], "variant_name": ["Sela, Shulamit"], "date_of_birth": "1946", "date_of_death": "2003", "preferred_name": "Selaʿ, Shulamit", "country_associated": "is", "variant_access_point": ["Sela, Shulamit, 1946-2003"], "parallel_access_point": ["סלע, שולמית, 1946-2003"], "authorized_access_point": "Selaʿ, Shulamit, 1946-2003", "biographical_information": ["Hebr. Literaturwissenschaftlerin und Sprachlehrerin; Forschungen in jüdisch-arabischer Literatur"]} 1 -2023-07-08 08:17:02.759813 2023-07-08 08:17:02.75982 923f5d57-11e1-4895-90b9-dc6017827cb7 {"md5": "4b0cb7b24d5e3230e425fcd9d8e0c10d", "pid": "139134816", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139134816", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139134816", "source": "GND"}], "preferred_name": "Reich, Friedrich Wilhelm", "country_associated": "gw", "authorized_access_point": "Reich, Friedrich Wilhelm", "biographical_information": ["Bekehrter Jude"]} 1 -2023-07-08 08:17:02.844425 2023-07-08 08:17:02.844428 6d0e4e7e-623a-4bf1-9b75-efe6125b30bb {"md5": "a891bab1cc0fdd08128934a28e8fc6d6", "pid": "139180060", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139180060", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139180060", "source": "GND"}], "variant_name": ["Romanjuk, Ivan Mironovič", "Romanjuk, Ivan", "Romanjuk, Ivan M.", "Romanjuk, I. M."], "date_of_birth": "1962", "preferred_name": "Romanjuk, Ivan Myronovyč", "country_associated": "un", "variant_access_point": ["Romanjuk, Ivan Mironovič, 1962-", "Romanjuk, Ivan, 1962-", "Romanjuk, Ivan M., 1962-", "Romanjuk, I. M., 1962-"], "authorized_access_point": "Romanjuk, Ivan Myronovyč, 1962-", "biographical_information": ["Internet, Ukrain. Historiker, http://www.vspu.edu.ua/faculty/histor/history_ukr_tich.php"]} 1 -2023-07-08 08:17:02.914053 2023-07-08 08:17:02.914055 a4cd2a8e-5d00-481d-93b3-b8fe48cc7950 {"md5": "933be624e7c473f7d7ae63d72dcfa9d3", "pid": "139196269", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139196269", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139196269", "source": "GND"}], "date_of_birth": "1963", "preferred_name": "Oldorff, Sven", "authorized_access_point": "Oldorff, Sven, 1963-", "biographical_information": ["Dresden, Techn. Univ., Fak. Forst-, Geo- und Hydrowiss., Diplomarbeit, 1990"]} 1 -2023-07-08 08:17:03.053367 2023-07-08 08:17:03.05337 43dd1b80-3c7b-44fa-9b1a-db710154cb56 {"md5": "ccb609661513e6e0605e58d47e07033a", "pid": "139284575", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139284575", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139284575", "source": "GND"}], "variant_name": ["Roth, Conrad", "Rothe, Konrad", "Rothe, Conrad"], "date_of_death": "1637", "preferred_name": "Roth, Konrad", "country_associated": "gw", "variant_access_point": ["Roth, Conrad, -1637", "Rothe, Konrad, -1637", "Rothe, Conrad, -1637"], "authorized_access_point": "Roth, Konrad, -1637", "biographical_information": ["Ratskonsulent; Ratsadvokat in Augsburg"]} 1 -2023-07-08 08:17:03.120049 2023-07-08 08:17:03.120057 6dc7e1e5-b4be-4b59-b8ad-f361a2622518 {"md5": "919e452abaa21d6d5a7d8e77becf7060", "pid": "139289690", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139289690", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139289690", "source": "GND"}], "variant_name": ["Albero, Claudio dall'"], "date_of_birth": "ca. Anfang 21. Jh.", "preferred_name": "Dall'Albero, Claudio", "variant_access_point": ["Albero, Claudio dall', ca. Anfang 21. Jh."], "authorized_access_point": "Dall'Albero, Claudio, ca. Anfang 21. Jh.", "biographical_information": ["Hrsg. der Massenzio-Gesamtausgabe"]} 1 -2023-07-08 08:17:02.978854 2023-07-08 10:23:54.612807 fa6944c4-9409-463e-acbe-1d8f9e393d2f {"md5": "93f9562f2e95d602a5748bff13c1603f", "pid": "139268456", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139268456", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139268456", "source": "GND"}], "date_of_birth": "1955", "preferred_name": "Stuart, George Edwin", "authorized_access_point": "Stuart, George Edwin, 1955-"} 2 -2023-07-08 08:17:02.319472 2023-07-08 10:28:11.658691 b70556d0-d756-42a8-b140-6588e97ee8cb {"md5": "f651e35604b77789ca2352c1195b64f1", "pid": "13902185X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/13902185X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13902185X", "source": "GND"}], "preferred_name": "Priftis, Kostas N.", "country_associated": "gr", "authorized_access_point": "Priftis, Kostas N."} 2 -2023-07-08 08:17:03.187064 2023-07-08 08:17:03.187067 c1e5996b-07a1-4626-bf81-d058f5a530a3 {"md5": "834ff4bf9482dc4d58d89b66be714d70", "pid": "139310991", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "qualifier": "Anhalt-Bernburg, Fürst", "identifier": "http://d-nb.info/gnd/139310991", "numeration": "V.", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139310991", "source": "GND"}], "date_of_death": "1410", "preferred_name": "Bernhard, V., Anhalt-Bernburg, Fürst", "country_associated": "gw", "authorized_access_point": "Bernhard, V., Anhalt-Bernburg, Fürst, -1410", "biographical_information": ["Fürst von Anhalt-Bernburg"]} 1 -2023-07-08 08:17:03.559971 2023-07-08 08:17:03.559976 7b650193-a815-4970-89f1-fb7ebcc2ae04 {"md5": "89f2e9d2335c9b7398f98972df2b3fb7", "pid": "139361405", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139361405", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139361405", "source": "GND"}], "date_of_birth": "1954", "preferred_name": "Gaeremynck, Veerle", "authorized_access_point": "Gaeremynck, Veerle, 1954-"} 1 -2023-07-08 08:17:03.822547 2023-07-08 08:17:03.822551 f1516d65-208e-4563-8fc5-f8c45f145c58 {"md5": "8b07f6402f43e1db086e0ba58c1e800a", "pid": "139418598", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139418598", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139418598", "source": "GND"}], "preferred_name": "Wang, Chonggang", "country_associated": "cc", "authorized_access_point": "Wang, Chonggang", "biographical_information": ["NEC Laboratories America, Princeton, NJ"]} 1 -2023-07-08 08:17:04.124544 2023-07-08 08:17:04.12455 070b0319-2ed8-458f-a064-d3d8c6bb19e0 {"md5": "218615e369e6c2aae38eb044418e90d9", "pid": "13943237X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/13943237X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13943237X", "source": "GND"}], "variant_name": ["Sköld, Beatrice Christensen"], "date_of_birth": "1941", "preferred_name": "Christensen Sköld, Beatrice", "country_associated": "sw", "variant_access_point": ["Sköld, Beatrice Christensen, 1941-"], "authorized_access_point": "Christensen Sköld, Beatrice, 1941-"} 1 -2023-07-08 08:17:04.210848 2023-07-08 08:17:04.210854 1c949661-1154-46cf-b6b1-502dfcec9fe2 {"md5": "1f3a427852d6cb94591aaf574022274d", "pid": "139503072", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139503072", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139503072", "source": "GND"}], "date_of_birth": "1864", "date_of_death": "1926", "preferred_name": "Klingatsch, Adolf", "country_associated": "au", "authorized_access_point": "Klingatsch, Adolf, 1864-1926"} 1 -2023-07-08 08:17:03.376125 2023-07-08 10:23:56.856873 cd92dcf1-328d-4dad-a873-81b246f6298a {"md5": "17c89209a00f4b08219f7df749c30416", "pid": "139334114", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139334114", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139334114", "source": "GND"}], "preferred_name": "Khattab, Ahmed Aziz", "authorized_access_point": "Khattab, Ahmed Aziz", "biographical_information": ["aus Kairo - Ägypten; Habilitation an der Medizinischen Fakultät der Universität Kiel"]} 2 -2023-07-08 08:17:03.627685 2023-07-08 10:24:06.401145 0cafabb1-cac7-4f20-9dd1-33603a57230a {"md5": "d43cf67ea59cda30f5e2a17d7d0318e6", "pid": "139380027", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139380027", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139380027", "source": "GND"}], "variant_name": ["Henschel, G. A. L.", "Henschelius, G. A."], "date_of_birth": "1806", "date_of_death": "1852", "preferred_name": "Henschel, G. A. Louis", "country_associated": "gw", "variant_access_point": ["Henschel, G. A. L., 1806-1852", "Henschelius, G. A., 1806-1852"], "authorized_access_point": "Henschel, G. A. Louis, 1806-1852"} 2 -2023-07-08 08:17:03.485563 2023-07-08 10:24:18.408171 0c8f1998-0f5b-452a-9a97-60fd72a45fe9 {"md5": "62b782f77544f87072abc9494a17db2e", "pid": "139350101", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139350101", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139350101", "source": "GND"}], "variant_name": ["Rodius, Henemannus"], "preferred_name": "Rode, Henemann", "country_associated": "gw", "variant_access_point": ["Rodius, Henemannus"], "authorized_access_point": "Rode, Henemann", "biographical_information": ["Verfasser eines Panegyrikons"]} 2 -2023-07-08 08:17:03.712772 2023-07-08 10:24:19.803889 44a04e1a-798d-4bf1-92b6-1a86f97244a9 {"md5": "38907540ebdb2925ff9aceaa65bc8205", "pid": "139383050", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139383050", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139383050", "source": "GND"}], "preferred_name": "Kloth, Andreas", "country_associated": "gw", "authorized_access_point": "Kloth, Andreas"} 2 -2023-07-08 08:17:03.911168 2023-07-08 10:24:23.547238 d70598e6-d375-44be-bd5b-27345502673d {"md5": "9b511a505618303230e7eba11c64f0f1", "pid": "139422102", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139422102", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139422102", "source": "GND"}], "variant_name": ["Georgoulas, Stratos"], "date_of_birth": "20./21. Jh.", "preferred_name": "Geōrgulas, Stratos", "country_associated": "gr", "variant_access_point": ["Georgoulas, Stratos, 20./21. Jh."], "parallel_access_point": ["Γεωργούλας, Στράτος, 20./21. Jh."], "authorized_access_point": "Geōrgulas, Stratos, 20./21. Jh."} 2 -2023-07-08 08:17:04.027495 2023-07-08 10:31:35.18324 0da6d215-ff34-4818-9e71-4265ee18cd6c {"md5": "4455ad2f0c4c69a17bc8c8723c641342", "pid": "139422161", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139422161", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139422161", "source": "GND"}], "date_of_birth": "1947", "preferred_name": "Munslow, Alun", "authorized_access_point": "Munslow, Alun, 1947-", "biographical_information": ["Prof an der Univ. of Staffordshire"]} 2 -2023-07-08 08:17:04.311225 2023-07-08 08:17:04.311231 7c3e01c0-0f46-41f0-af27-77862963fee1 {"md5": "3f65a78f23ecf6d83b1917c7f1055930", "pid": "139512950", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139512950", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139512950", "source": "GND"}], "date_of_birth": "1859", "date_of_death": "1935", "preferred_name": "Ruhstrat, Franz", "country_associated": "gw", "authorized_access_point": "Ruhstrat, Franz, 1859-1935", "biographical_information": ["oldenburgischer Staatsminister"]} 1 -2023-07-08 08:17:05.344179 2023-07-08 08:17:05.344183 3fe2e25e-a2e1-4765-ab6d-f2b4edf91fc3 {"md5": "f3196cbe8197329dd55ef762feb8b6e6", "pid": "139659382", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139659382", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139659382", "source": "GND"}], "date_of_birth": "1959", "preferred_name": "Bär, Frank", "authorized_access_point": "Bär, Frank, 1959-", "biographical_information": ["Dresden, Techn. Univ., Fak. Forst-, Geo- und Hydrowiss., Diss, 2009"]} 1 -2023-07-08 08:17:06.576825 2023-07-08 08:17:06.576832 cf0ce2e6-968f-4746-b383-45b802ddec08 {"md5": "617f75f05347c9107f94869b2fd28121", "pid": "139894977", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139894977", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139894977", "source": "GND"}], "preferred_name": "Leunen, Nico", "authorized_access_point": "Leunen, Nico"} 1 -2023-07-08 08:17:04.508801 2023-07-08 10:24:29.058322 88374916-d9d8-4345-a05e-7f618fa20aa5 {"md5": "94c292b2b557d2e8d1de1bf188ae5434", "pid": "13954402X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/13954402X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13954402X", "source": "GND"}], "date_of_birth": "1977", "preferred_name": "Nowak, Jacek", "country_associated": "pl", "authorized_access_point": "Nowak, Jacek, 1977-"} 2 -2023-07-08 08:17:04.617371 2023-07-08 10:24:29.485348 3a9263d0-afde-435a-aba1-c06ffce2d0c3 {"md5": "9cda1b2c7761cacd07154154752facff", "pid": "139546979", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139546979", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139546979", "source": "GND"}], "variant_name": ["Kelley, Carolyn"], "preferred_name": "Kelley, Carolyn J.", "variant_access_point": ["Kelley, Carolyn"], "authorized_access_point": "Kelley, Carolyn J.", "biographical_information": ["Professor, Department of Educational Leadership & Policy Analysis, University of Wisconsin-Madison"]} 2 -2023-07-08 08:17:04.707009 2023-07-08 10:24:30.255952 0e41a595-ecc8-4207-8a4c-86d875fd1cb0 {"md5": "b5abb71018192f4d66c2eff5aa42d927", "pid": "139612483", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139612483", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139612483", "source": "GND"}], "date_of_birth": "1965", "preferred_name": "Merkel, Beate", "country_associated": "gw", "authorized_access_point": "Merkel, Beate, 1965-", "biographical_information": ["Diss. Fachbereich Medizin"]} 2 -2023-07-08 08:17:04.81337 2023-07-08 10:24:32.777913 9479ae93-e1ef-404f-b710-179140fab50e {"md5": "1894dd7b2a7a423e797fe35e99874497", "pid": "139626417", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139626417", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139626417", "source": "GND"}], "date_of_birth": "1968", "preferred_name": "Bernheimer, Andrew", "country_associated": "xxu", "parallel_access_point": ["Bernheimer, Andrew, 1968-"], "authorized_access_point": "Bernheimer, Andrew, 1968-", "biographical_information": ["US-Amerikan. Architekt"]} 2 -2023-07-08 08:17:04.927027 2023-07-08 10:24:34.453814 8f9acdb9-2bac-4f25-9508-60557ddafd55 {"md5": "a0d7daed4cc2050d4da1034506be68f2", "pid": "139630147", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139630147", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139630147", "source": "GND"}], "date_of_birth": "1979", "preferred_name": "Dubbini, Rachele", "country_associated": "it", "authorized_access_point": "Dubbini, Rachele, 1979-"} 2 -2023-07-08 08:17:05.026611 2023-07-08 10:25:19.049014 475a364c-94b9-4709-9e75-188847515c79 {"md5": "420361d915c83dcae756183a8ddeeb05", "pid": "139649263", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139649263", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139649263", "source": "GND"}], "date_of_birth": "1936", "preferred_name": "Goeßler, Jürgen", "authorized_access_point": "Goeßler, Jürgen, 1936-", "biographical_information": ["Dresden, Techn. Univ., Fak. Bau-, Wasser- und Forstwesen, Diplomarbeit, 1978"]} 2 -2023-07-08 08:17:05.238697 2023-07-08 10:25:20.511556 c984dac4-6b06-4e05-9b18-934ae735df9f {"md5": "529d9a6a9a2576dcf8e4e3e7b79962f2", "pid": "139655395", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139655395", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139655395", "source": "GND"}], "variant_name": ["Dong, Ling Han", "Dong Ling Han"], "preferred_name": "Han, Dong Ling", "variant_access_point": ["Dong, Ling Han", "Dong Ling Han"], "authorized_access_point": "Han, Dong Ling", "biographical_information": ["Tätig am Dep. of Industrial and Systems Engineering, National Univ. of Singapore"]} 2 -2023-07-08 08:17:05.42991 2023-07-08 08:17:05.429915 f4acdddd-c06f-4b3a-98a3-9fc759ec2f5c {"md5": "75b57579d28b611c048abc7607b94c45", "pid": "139695125", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["jpn", "chi"], "identifier": "http://d-nb.info/gnd/139695125", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139695125", "source": "GND"}], "preferred_name": "Nakajima, Shō", "country_associated": "ja", "authorized_access_point": "Nakajima, Shō", "biographical_information": ["Japan. Mongolist"]} 1 -2023-07-08 08:17:05.615238 2023-07-08 08:17:05.615241 d00a2fa0-d868-495e-8f4f-b9ad1e4d4e3a {"md5": "a8f9be0653953dfeb5fbbbf1a676151f", "pid": "139733256", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139733256", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139733256", "source": "GND"}], "preferred_name": "Fritz, Martin", "country_associated": "gw", "authorized_access_point": "Fritz, Martin", "biographical_information": ["Promotion an der Ludwig-Maximilians-Univ. München (1990)"]} 1 -2023-07-08 08:17:05.80863 2023-07-08 08:17:05.808637 63a7301d-bc86-449a-9cce-012dd8fb7964 {"md5": "e6d4e2bf2632763bd9f117539ef08764", "pid": "139774807", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "qualifier": "Familie", "identifier": "http://d-nb.info/gnd/139774807", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139774807", "source": "GND"}], "date_of_birth": "ca. 13. Jh.", "preferred_name": "Gützkow, Familie", "country_associated": "gw", "authorized_access_point": "Gützkow, Familie, ca. 13. Jh.-", "biographical_information": ["Grafen von Gützkow; pommersches Grafengeschlecht"]} 1 -2023-07-08 08:17:06.087599 2023-07-08 08:17:06.087812 e5c26af3-9e82-45b5-bbef-50ccd9ee7129 {"md5": "e570975ea1d5559d47dccaed0e0a78f5", "pid": "139822542", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139822542", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139822542", "source": "GND"}], "variant_name": ["Summerer, Carolin"], "date_of_birth": "1982", "preferred_name": "Hinkmann, Carolin", "country_associated": "gw", "variant_access_point": ["Summerer, Carolin, 1982-"], "authorized_access_point": "Hinkmann, Carolin, 1982-", "biographical_information": ["Diss. Medizinische Fakaltät an der Universität Erlangen-Nürnberg"]} 1 -2023-07-08 08:17:06.38125 2023-07-08 08:17:06.381258 24d166b3-5da0-4d4a-9520-fa1efd36d37a {"md5": "b54c28c2cfc04166162ca113fab4e53c", "pid": "139879994", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139879994", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139879994", "source": "GND"}], "variant_name": ["Schuster, Kristin"], "date_of_birth": "ca. 20. Jh.", "preferred_name": "Horstmann, Kristin", "country_associated": "gw", "variant_access_point": ["Schuster, Kristin, ca. 20. Jh."], "authorized_access_point": "Horstmann, Kristin, ca. 20. Jh."} 1 -2023-07-08 08:17:05.696331 2023-07-08 10:25:25.314084 7c735628-6666-406c-88d7-58098e0bda3b {"md5": "9eb2c1d98f5ad87c15d16d7fa9b442f7", "pid": "139769366", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139769366", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139769366", "source": "GND"}], "variant_name": ["Abraham, Ernst A."], "date_of_birth": "1906", "preferred_name": "Abraham, Ernst August", "variant_access_point": ["Abraham, Ernst A., 1906-"], "authorized_access_point": "Abraham, Ernst August, 1906-", "biographical_information": ["Dipl.-Volkswirt"]} 2 -2023-07-08 08:17:05.899509 2023-07-08 10:25:25.88314 818cafe5-08de-4f11-8131-55ccb2399b96 {"md5": "93c381befacb1e89229d345d0d4a9481", "pid": "139794204", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139794204", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139794204", "source": "GND"}], "date_of_birth": "1949", "preferred_name": "Hansen, Svein Bendik", "country_associated": "no", "authorized_access_point": "Hansen, Svein Bendik, 1949-"} 2 -2023-07-08 08:17:05.985565 2023-07-08 10:25:26.399129 e4e0c8bd-04b3-4e9a-a064-adc7b00f54a5 {"md5": "ec90b34c15db63dd1fba766266c08271", "pid": "139796282", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139796282", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139796282", "source": "GND"}], "preferred_name": "Cappello, Silvia", "authorized_access_point": "Cappello, Silvia", "biographical_information": ["PhD in English studies"]} 2 -2023-07-08 08:17:06.164458 2023-07-08 10:25:26.825624 fa46cb9d-8dcc-4c08-afd1-1c02cdd96381 {"md5": "016e12fbd7dca7078045555f4302b5b8", "pid": "13983043X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/13983043X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13983043X", "source": "GND"}], "date_of_birth": "19.11.1926", "date_of_death": "08.02.2000", "preferred_name": "Ritsch, Felicitas", "country_associated": "gw", "authorized_access_point": "Ritsch, Felicitas, 1926-2000"} 2 -2023-07-08 08:17:06.287399 2023-07-08 10:25:27.807196 7190c21a-85d8-476a-bea9-1b9df74983fb {"md5": "d3514db1448decbd1a8e33057e4ff80f", "pid": "139856072", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139856072", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139856072", "source": "GND"}], "date_of_birth": "1973", "preferred_name": "Popp, Julius", "country_associated": "gw", "authorized_access_point": "Popp, Julius, 1973-"} 2 -2023-07-08 08:17:06.475158 2023-07-08 10:25:30.99824 f7b507a2-c8ca-44a3-b9b8-664c54c5b025 {"md5": "3a2670910ecc8ebd21b03421d1b0ecf0", "pid": "139889345", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139889345", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139889345", "source": "GND"}], "variant_name": ["Fraser, Helen Beatrice", "Fraser, Helen B."], "preferred_name": "Fraser, Helen", "variant_access_point": ["Fraser, Helen Beatrice", "Fraser, Helen B."], "authorized_access_point": "Fraser, Helen", "biographical_information": ["Schwerpunkte u.a. Phonetik, Phonologie, Psycholinguistik, Geschichte und Philosophie der Linguistik, Englisch in Australien"]} 2 -2023-07-08 08:17:06.655347 2023-07-08 08:17:06.655351 04148a20-7da3-4fee-90cc-57cd166c8104 {"md5": "ad34e499bc1ba81123dcfa11632c7d30", "pid": "139925988", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139925988", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139925988", "source": "GND"}], "variant_name": ["Milne, Herbert John Mansfield", "Mansfield Milne, Herbert John", "Milne, Herbert J. M.", "Milne, Herbert J."], "date_of_birth": "1888", "date_of_death": "1965", "preferred_name": "Milne, H. J. M.", "country_associated": "xxk", "variant_access_point": ["Milne, Herbert John Mansfield, 1888-1965", "Mansfield Milne, Herbert John, 1888-1965", "Milne, Herbert J. M., 1888-1965", "Milne, Herbert J., 1888-1965"], "authorized_access_point": "Milne, H. J. M., 1888-1965", "biographical_information": ["Kurator in der Manuskriptabteilung des British Museum"]} 1 -2023-07-08 08:17:06.74794 2023-07-08 08:17:06.747949 54cd6d30-e30a-4fac-8329-6e2645825490 {"md5": "1ffc4d5b6f81d3d84809fa0c5d61500b", "pid": "139939415", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139939415", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139939415", "source": "GND"}], "date_of_birth": "1975", "preferred_name": "Wilzeck, Andreas", "country_associated": "gw", "authorized_access_point": "Wilzeck, Andreas, 1975-", "biographical_information": ["Diss. Fakultät Elektrotechnik und Informatik an der Universität Hannover"]} 1 -2023-07-08 08:17:07.205108 2023-07-08 08:17:07.205111 8266ea21-d5bb-462d-b53e-6f440ab2cae0 {"md5": "6146374d76309d24b0e45c1b2876c79f", "pid": "14006253X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/14006253X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14006253X", "source": "GND"}], "date_of_birth": "1965", "preferred_name": "Kanda, Yutsuki", "country_associated": "ja", "parallel_access_point": ["神田, 由築, 1965-"], "authorized_access_point": "Kanda, Yutsuki, 1965-"} 1 -2023-07-08 08:17:07.424144 2023-07-08 08:17:07.424149 e1d29cb4-c335-4ffb-a12c-2d0e322dac45 {"md5": "190419df0326fc737b1542323f0dc89c", "pid": "140093427", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140093427", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140093427", "source": "GND"}], "variant_name": ["González Giovine, María C.", "González Giovine, María", "González G., María Carmen", "González, María Carmen"], "date_of_birth": "19.10.1929", "preferred_name": "González Giovine, María Carmen", "country_associated": "py", "variant_access_point": ["González Giovine, María C., 1929-", "González Giovine, María, 1929-", "González G., María Carmen, 1929-", "González, María Carmen, 1929-"], "authorized_access_point": "González Giovine, María Carmen, 1929-", "biographical_information": ["Paraguay. Schriftstellerin u. Laiin"]} 1 -2023-07-08 08:17:06.932581 2023-07-08 10:25:49.275235 854eebef-547f-4d99-b149-3bbe9105053a {"md5": "93ff47964d2710f2d00a974bf0f3a030", "pid": "139952179", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139952179", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139952179", "source": "GND"}], "variant_name": ["Hoang, Tri"], "date_of_birth": "20.01.1977", "preferred_name": "Hoang, Minh Tri", "country_associated": "gw", "variant_access_point": ["Hoang, Tri, 1977-"], "authorized_access_point": "Hoang, Minh Tri, 1977-", "biographical_information": ["Diss. Fachbereich Biochemie, Chemie und Pharmazie"]} 2 -2023-07-08 08:17:07.030247 2023-07-08 10:25:50.153596 10139f46-340d-4fd7-8079-b3f980a88c80 {"md5": "4b58734e7eec9a5484fd15a812caf0d5", "pid": "139961968", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139961968", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139961968", "source": "GND"}], "variant_name": ["De León, Facundo Ponce", "León, Facundo Ponce de"], "date_of_birth": "1978", "preferred_name": "Ponce de León, Facundo", "country_associated": "uy", "variant_access_point": ["De León, Facundo Ponce, 1978-", "León, Facundo Ponce de, 1978-"], "authorized_access_point": "Ponce de León, Facundo, 1978-", "biographical_information": ["Uruguay. Philosoph, Kommunikationswissenschaftler, Journalist"]} 2 -2023-07-08 08:17:07.117805 2023-07-08 10:25:50.616068 3835989b-c84b-4810-a138-1276d183dc8d {"md5": "edc2b73eed0c414c28475972c312c98c", "pid": "139974199", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139974199", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139974199", "source": "GND"}], "preferred_name": "Brunner, Dominik", "authorized_access_point": "Brunner, Dominik", "biographical_information": ["Diss. Stuttgart 2009, Fakultät Konstruktions-, Produktions- und Fahrzeugtechnik"]} 2 -2023-07-08 08:17:07.310843 2023-07-08 10:25:51.957397 1bbd8cab-2ef6-484e-8492-9a95c6ff4f73 {"md5": "1d40843faefedae4941e639e169071a6", "pid": "140091319", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140091319", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140091319", "source": "GND"}], "variant_name": ["Göbel, Christof Stefan"], "date_of_birth": "1966", "preferred_name": "Göbel, Christof", "country_associated": "gw", "variant_access_point": ["Göbel, Christof Stefan, 1966-"], "authorized_access_point": "Göbel, Christof, 1966-", "biographical_information": ["Aachen, Techn. Hochsch., Doktor der Ingenieurwiss., 2002"]} 2 -2023-07-08 08:17:07.525699 2023-07-08 10:25:54.172862 56bc610c-9b69-4cef-ad8d-a2a633b3cecd {"md5": "68819c8751521b16db3740484d37b558", "pid": "140129510", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140129510", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140129510", "source": "GND"}], "variant_name": ["Matsen, Brad"], "date_of_birth": "1944", "preferred_name": "Matsen, Bradford", "country_associated": "xxu", "variant_access_point": ["Matsen, Brad, 1944-"], "authorized_access_point": "Matsen, Bradford, 1944-"} 2 -2023-07-08 08:17:07.619053 2023-07-08 08:17:07.619056 22122054-3101-4706-90a5-55246383f350 {"md5": "cd32ba9965a39e04a6c6312db9ec3e1d", "pid": "140132872", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140132872", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140132872", "source": "GND"}], "preferred_name": "Schöftner, Sandra", "country_associated": "au", "authorized_access_point": "Schöftner, Sandra", "biographical_information": ["Sankt Pölten, Fachhochschul-Diplomstudiengang Medienmanagement, Dipl.-Arb., 2009"]} 1 -2023-07-08 08:17:07.690238 2023-07-08 08:17:07.690243 4bb2b588-9811-4a71-a4a5-ce2bb8e15bd0 {"md5": "3e3fdecc0e73dbbf9639ec04f6671121", "pid": "140169016", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140169016", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140169016", "source": "GND"}], "preferred_name": "Harrison, Roger", "authorized_access_point": "Harrison, Roger", "biographical_information": ["Tätig bei Proctor & Gamble; tätig am Dep. of Industrial Administration, Yale Univ."]} 1 -2023-07-08 08:17:07.777464 2023-07-08 08:17:07.777469 7d2984e7-5cdc-4ea4-b523-38b47746e221 {"md5": "95261606017444d8c3e34e1af6d5cdf5", "pid": "140234381", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140234381", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140234381", "source": "GND"}], "date_of_birth": "1955", "preferred_name": "Schöneich, Martin", "country_associated": "gw", "authorized_access_point": "Schöneich, Martin, 1955-", "biographical_information": ["Dt. Bildhauer"]} 1 -2023-07-08 08:17:07.958861 2023-07-08 08:17:07.958865 5f5f85fb-97c0-4bdb-8fc8-2b31816f2668 {"md5": "1df71f66e4dab096157b5d222f0f3803", "pid": "140322140", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140322140", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140322140", "source": "GND"}], "date_of_birth": "10.07.1965", "preferred_name": "Schmiedel, Erwin", "country_associated": "au", "authorized_access_point": "Schmiedel, Erwin, 1965-", "biographical_information": ["Österr. Bariton und Schriftsteller"]} 1 -2023-07-08 08:17:08.153115 2023-07-08 08:17:08.153123 c52e0cf0-fcae-4b2b-a6c5-3ded260c0d5d {"md5": "140fcefc0840bd691a770f3d0b36eaa7", "pid": "140327126", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140327126", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140327126", "source": "GND"}], "variant_name": ["Zander, J."], "date_of_birth": "1937", "preferred_name": "Zander, Jan", "country_associated": "gw", "variant_access_point": ["Zander, J., 1937-"], "authorized_access_point": "Zander, Jan, 1937-"} 1 -2023-07-08 08:17:08.348795 2023-07-08 08:17:08.348798 347d5a10-ce0e-4b92-9e9e-b9e1c273496b {"md5": "bdaaa18671956246a1c74b108d17fac8", "pid": "140345884", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140345884", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140345884", "source": "GND"}], "date_of_birth": "14.04.1969", "preferred_name": "Kirchmann, Helmut", "country_associated": "gw", "authorized_access_point": "Kirchmann, Helmut, 1969-", "biographical_information": ["Diss. Fachbereich Sozial- und Verhaltenswissenschaften"]} 1 -2023-07-08 08:17:08.531919 2023-07-08 08:17:08.531921 a1353dc9-f1d2-45e4-80a2-2547e4e52328 {"md5": "926bd6c8b05257f216be5b00985ce4e3", "pid": "140419799", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140419799", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140419799", "source": "GND"}], "date_of_birth": "1955", "preferred_name": "Amendt, Christiane", "authorized_access_point": "Amendt, Christiane, 1955-", "biographical_information": ["Grund- und Hauptschullehrerin; Tätigkeit in der Förderung von LRS-Kindern"]} 1 -2023-07-08 08:17:08.618127 2023-07-08 08:17:08.618131 3d0d6faa-9fb6-4b60-81b3-13c0bd67dd94 {"md5": "83563b10f9deb2054d4f09ee499d5ae0", "pid": "14043917X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/14043917X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14043917X", "source": "GND"}], "variant_name": ["Graaf, Arnaud Corneille Gerold André Claude de", "Graaf, A. C. G. A. C. de"], "date_of_birth": "1966", "preferred_name": "Graaf, Arnaud de", "variant_access_point": ["Graaf, Arnaud Corneille Gerold André Claude de, 1966-", "Graaf, A. C. G. A. C. de, 1966-"], "authorized_access_point": "Graaf, Arnaud de, 1966-", "biographical_information": ["niederländ. Jurist"]} 1 -2023-07-08 08:17:08.240219 2023-07-08 10:26:07.5514 34119968-bc5c-45dd-8a98-ca931c0784ff {"md5": "451e0d8d1cf93d3d1913a3974c991fa4", "pid": "140338683", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140338683", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140338683", "source": "GND"}], "date_of_birth": "ca. um 1800", "preferred_name": "Rousset, S.", "country_associated": "fr", "authorized_access_point": "Rousset, S., ca. um 1800", "biographical_information": ["Franz. Jurist"]} 2 -2023-07-08 08:17:08.439918 2023-07-08 10:27:28.179266 c8bdcc1b-2660-43f7-a830-0614e38f2e06 {"md5": "91d27aad983d4b7d8d7be2ce0a1792a6", "pid": "140416919", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140416919", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140416919", "source": "GND"}], "preferred_name": "Kern, Alexander", "authorized_access_point": "Kern, Alexander", "biographical_information": ["Magister, tätig am Institut für Unternehmensführung, WU Wien; Schwerpunkte: Unternehmensführung, Controlling und Beratung"]} 2 -2023-07-08 08:17:08.6965 2023-07-08 08:17:08.696507 29b4d5a3-e160-4ed7-9e89-62e84941d5b1 {"md5": "abb5e1afde5cd73ee6caffc43156dfbe", "pid": "140458123", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140458123", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140458123", "source": "GND"}], "date_of_birth": "15.08.1938", "preferred_name": "Mills, David", "country_associated": "xxk", "parallel_access_point": ["Mills, David $d1938-, 1938-"], "authorized_access_point": "Mills, David, 1938-"} 1 -2023-07-08 08:17:08.88925 2023-07-08 08:17:08.889259 a65476c6-9874-4655-83b1-3eb9a86f698b {"md5": "b94df094ecb0ae95c8b39e0b2236b3bc", "pid": "140490841", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140490841", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140490841", "source": "GND"}], "date_of_birth": "1975", "preferred_name": "Burdinski, Michael", "authorized_access_point": "Burdinski, Michael, 1975-", "biographical_information": ["Fachanwalt für Bau- und Architektenrecht", "hat am 20.02.2009 an d. Univ. Mannheim promoviert"]} 1 -2023-07-08 08:17:09.061488 2023-07-08 08:17:09.061495 75c783d1-b49a-4403-b1a7-459ac67e12be {"md5": "39c23764c9b06011b5b81cf780984dd7", "pid": "140540830", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140540830", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140540830", "source": "GND"}], "preferred_name": "Große, C.", "authorized_access_point": "Große, C."} 1 -2023-07-08 08:17:09.153053 2023-07-08 08:17:09.153063 348c5e83-361a-4f8e-a0ff-812644b80e79 {"md5": "8b453b8c57cd15419ea9866a00482545", "pid": "140595716", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140595716", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140595716", "source": "GND"}], "date_of_birth": "1943", "preferred_name": "Morozzi, Cristina", "country_associated": "it", "authorized_access_point": "Morozzi, Cristina, 1943-"} 1 -2023-07-08 08:17:09.241148 2023-07-08 08:17:09.241155 f18723f4-0bfe-4da2-8593-bdb372fc951d {"md5": "282a8c50a26eedf7a86abce92fabfd66", "pid": "140605304", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140605304", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140605304", "source": "GND"}], "date_of_birth": "ca. 20./21. Jh.", "preferred_name": "Deppisch, Nico", "country_associated": "gw", "authorized_access_point": "Deppisch, Nico, ca. 20./21. Jh.", "biographical_information": ["E-Bassist"]} 1 -2023-07-08 08:17:09.332692 2023-07-08 08:17:09.332695 2898c3f5-be7f-4b37-9d06-4c2bfb3ed512 {"md5": "ec8e3c037c2dd0cd871c82396fb7432d", "pid": "140655387", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140655387", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140655387", "source": "GND"}], "variant_name": ["Jacobs, Johannes", "Magnus, Jac. Johs. Carl"], "date_of_birth": "19.08.1812", "date_of_death": "XX.XX.1879", "preferred_name": "Magnus, Jacob Johannes Carl", "country_associated": "dk", "variant_access_point": ["Jacobs, Johannes, 1812-1879", "Magnus, Jac. Johs. Carl, 1812-1879"], "parallel_access_point": ["Magnus, Jacob Johannes Carl, 1812-1879"], "authorized_access_point": "Magnus, Jacob Johannes Carl, 1812-1879"} 1 -2023-07-08 08:17:09.402089 2023-07-08 08:17:09.402092 975dc82c-591e-436e-9e0a-555aeeaf549f {"md5": "ac7f0d90738902b3bc20b8af320e959c", "pid": "140665927", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140665927", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140665927", "source": "GND"}], "variant_name": ["Meining, Wong", "Meiling Wong"], "preferred_name": "Wong, Meiling", "country_associated": "cc", "variant_access_point": ["Meining, Wong", "Meiling Wong"], "authorized_access_point": "Wong, Meiling", "biographical_information": ["Tätig am Dep. of Industrial Engineering and Management, National Chinyi Univ. of Technology, Taipin, Taiwan; tätig am Dep. of Industrial Engineering and Enterprise Information, Tunghai Univ., Taichung, China"]} 1 -2023-07-08 08:17:09.544008 2023-07-08 08:17:09.544014 70abfa7a-59eb-41d5-9a09-ed03390a4dbb {"md5": "8b08f8a26e524ea35f019596457a366b", "pid": "140703063", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140703063", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140703063", "source": "GND"}], "preferred_name": "Krings, Fabian", "authorized_access_point": "Krings, Fabian", "biographical_information": ["Leitet seit 2010 den German Desk bei DLA Pieper in Wien"]} 1 -2023-07-08 08:17:09.610535 2023-07-08 08:17:09.610538 d60b594c-b598-48be-8dd4-e94d895c2fdc {"md5": "dac355c95fcbd48525ca67c59875de1c", "pid": "140707921", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140707921", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140707921", "source": "GND"}], "date_of_birth": "04.06.1970", "preferred_name": "Wulf, Detlef", "authorized_access_point": "Wulf, Detlef, 1970-"} 1 -2023-07-08 08:17:08.971602 2023-07-08 10:27:38.026445 f77f70f8-0a0a-46f6-a9e5-d34be71c1ef2 {"md5": "a75cfc6dfc868ee8120a118e17609b2e", "pid": "140499024", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140499024", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140499024", "source": "GND"}], "date_of_birth": "1980", "preferred_name": "Marković, Ana", "authorized_access_point": "Marković, Ana, 1980-", "biographical_information": ["Diss. Fachbereich Verfahrenstechnik"]} 2 -2023-07-08 08:17:09.470607 2023-07-08 10:27:55.596591 58763d8c-2cb8-407f-a530-02e71a7f2ac0 {"md5": "d46e90ce9f823230f80040a3b5a0ae36", "pid": "140699562", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140699562", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140699562", "source": "GND"}], "variant_name": ["Klemp, Wilhelm Rudolf"], "date_of_birth": "1908", "preferred_name": "Klemp, Wilhelm", "variant_access_point": ["Klemp, Wilhelm Rudolf, 1908-"], "authorized_access_point": "Klemp, Wilhelm, 1908-"} 2 -2023-07-08 08:17:09.846774 2023-07-08 08:17:09.846777 ff644228-3385-4f24-ba3b-ec0d52f5d335 {"md5": "006b96ae86f311a35f48695df43fe9ad", "pid": "140781498", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["dan"], "identifier": "http://d-nb.info/gnd/140781498", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140781498", "source": "GND"}], "variant_name": ["Kvist, Ellen Østergaard"], "date_of_birth": "02.01.1915", "date_of_death": "19.11.2011", "preferred_name": "Buttenschøn, Ellen", "country_associated": "dk", "variant_access_point": ["Kvist, Ellen Østergaard, 1915-2011"], "authorized_access_point": "Buttenschøn, Ellen, 1915-2011", "biographical_information": ["Bibliothekarin, Literaturkritikerin, Schriftstellerin"]} 1 -2023-07-08 08:17:09.933069 2023-07-08 08:17:09.933077 70977ed9-76f8-4bed-90da-12890af98449 {"md5": "66481838327ad3e88bd1defab1308e96", "pid": "140791434", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140791434", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140791434", "source": "GND"}], "variant_name": ["Helbing, K.", "Helbing, Kurt Wilhelm", "Helbing, K. W.", "Helbing, Kurt W."], "date_of_birth": "20.10.1939", "date_of_death": "26.02.2022", "preferred_name": "Helbing, Kurt", "country_associated": "gw", "variant_access_point": ["Helbing, K., 1939-2022", "Helbing, Kurt Wilhelm, 1939-2022", "Helbing, K. W., 1939-2022", "Helbing, Kurt W., 1939-2022"], "authorized_access_point": "Helbing, Kurt, 1939-2022", "biographical_information": ["Hochschuldozent und Professor für Betriebsanlagen an der Ingenieurhochschule / Technischen Hochschule Wismar (1972-92), Professor für Fabriksysteme und Materialflusstechnik an der Fakultät für Maschinenbau und Schiffstechnik an der Universität Rostock (1992-2005)"]} 1 -2023-07-08 08:17:10.136004 2023-07-08 08:17:10.136012 3d9d11a3-a5be-455f-89e3-75fb07eb08e3 {"md5": "64644bbd76cd7d68ff14d0bab296fda8", "pid": "140818197", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140818197", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140818197", "source": "GND"}], "date_of_birth": "1954", "preferred_name": "Latzke, Maria E.", "country_associated": "gw", "authorized_access_point": "Latzke, Maria E., 1954-"} 1 -2023-07-08 08:17:10.566708 2023-07-08 08:17:10.566718 c143136f-e132-4035-a057-d644b5b58749 {"md5": "c3d96d868dda2aab468d22e0945c4828", "pid": "140890335", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140890335", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140890335", "source": "GND"}], "preferred_name": "Riedmann, Heinz", "country_associated": "gw", "authorized_access_point": "Riedmann, Heinz", "biographical_information": ["Dirigent, Chorleiter der Pfarrei Hl. Familie München, 20. / 21. Jh.", "Organist"]} 1 -2023-07-08 08:17:09.768956 2023-07-08 10:27:57.07874 73de0911-2c9e-4448-86ae-a73ebe9d9986 {"md5": "56a983b23b39b2d21d2527c2968903b8", "pid": "140724656", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140724656", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140724656", "source": "GND"}], "variant_name": ["Flórez, José Gabriel Aguirre"], "preferred_name": "Aguirre Flórez, José Gabriel", "country_associated": "ck", "variant_access_point": ["Flórez, José Gabriel Aguirre"], "authorized_access_point": "Aguirre Flórez, José Gabriel", "biographical_information": ["Kolumbian. Wirtschaftsprüfer und Finanzexperte"]} 2 -2023-07-08 08:17:10.025845 2023-07-08 10:28:00.474979 df0df52f-0302-4b5a-9659-7fe11af5d80e {"md5": "30a2b627d39a92c28035eaadbb0b017d", "pid": "140807268", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140807268", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140807268", "source": "GND"}], "preferred_name": "Pietrantozzi, Franco", "country_associated": "it", "authorized_access_point": "Pietrantozzi, Franco"} 2 -2023-07-08 08:17:10.233031 2023-07-08 10:28:01.598796 f9f60cff-8f7b-4613-b322-792cd88bf46e {"md5": "455a6d568f763372fd9b73647ddaf255", "pid": "140835822", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140835822", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140835822", "source": "GND"}], "date_of_birth": "1976", "preferred_name": "Sinclair, Alexia", "country_associated": "at", "authorized_access_point": "Sinclair, Alexia, 1976-"} 2 -2023-07-08 08:17:10.343078 2023-07-08 10:28:02.147156 abbc22e9-b597-47ac-b4df-014c468b2e60 {"md5": "67080a485fff49f2862c4b94427a8e91", "pid": "140848363", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140848363", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140848363", "source": "GND"}], "variant_name": ["Stock, Elfriede Gertrud Renate", "Zastrow, Elfriede Gertrud Renate"], "date_of_birth": "28.04.1928", "preferred_name": "Stock, Renate", "country_associated": "gw", "variant_access_point": ["Stock, Elfriede Gertrud Renate, 1928-", "Zastrow, Elfriede Gertrud Renate, 1928-"], "authorized_access_point": "Stock, Renate, 1928-"} 2 -2023-07-08 08:17:10.46104 2023-07-08 10:28:02.590371 98400b05-58d7-4cff-a946-d3f035d798da {"md5": "7edbf9619ccf8a55608a984e8a97c3b7", "pid": "140849963", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140849963", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140849963", "source": "GND"}], "preferred_name": "Margariti, Myrsini", "country_associated": "gr", "authorized_access_point": "Margariti, Myrsini"} 2 -2023-07-08 08:17:10.654645 2023-07-08 10:28:05.277077 d88f98b5-033b-4310-ab7c-6fd3a4912442 {"md5": "2f13081d0302487f51c324a16600ff3a", "pid": "140891420", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140891420", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140891420", "source": "GND"}], "variant_name": ["Superchumbo"], "date_of_birth": "1970", "preferred_name": "Stephan, Tom", "country_associated": "xxu", "variant_access_point": ["Superchumbo, 1970-"], "authorized_access_point": "Stephan, Tom, 1970-", "biographical_information": ["Amerikan. Progressive House-Musiker; Gründer des Musiklabels \\"Superchumbo\\""]} 2 -2023-07-08 08:17:10.892579 2023-07-08 08:17:10.892583 f113e232-842b-46e8-abf6-f5e3d7ddb19d {"md5": "069dbe4e4a4bb25841901bf369882f75", "pid": "140948317", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140948317", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140948317", "source": "GND"}], "date_of_birth": "1994", "preferred_name": "Dowling, Kevin", "country_associated": "at", "authorized_access_point": "Dowling, Kevin, 1994"} 1 -2023-07-08 08:17:10.961778 2023-07-08 08:17:10.961783 b01688a2-fe51-4a83-beb6-f7ae90224ff7 {"md5": "eca034df051bcd459848cadaf5d9f973", "pid": "140952012", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140952012", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140952012", "source": "GND"}], "preferred_name": "Mine, Yuko", "country_associated": "ja", "authorized_access_point": "Mine, Yuko", "biographical_information": ["geb. in Nagasaki, lebt seit 2000 in Deutschland, seit 2005 Dozentin an der Hochschule für Musik und Theater Rostock"]} 1 -2023-07-08 08:17:11.058458 2023-07-08 08:17:11.058463 8656f574-c4fa-4c1a-a74f-1179ab40a268 {"md5": "9161eca785d5d0f5ba35692e2facc490", "pid": "140952985", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140952985", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140952985", "source": "GND"}], "variant_name": ["Schmid, Christa"], "date_of_birth": "15.03.1939", "preferred_name": "Sturm, Christa", "country_associated": "gw", "variant_access_point": ["Schmid, Christa, 1939-"], "authorized_access_point": "Sturm, Christa, 1939-"} 1 -2023-07-08 08:17:11.145032 2023-07-08 08:17:11.145035 96d0d1bf-b238-4aca-b59e-04c0e6f8d267 {"md5": "9a38bf6d36208f55e7685cf8d1aea87a", "pid": "140960597", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140960597", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140960597", "source": "GND"}], "variant_name": ["Szentklaray, Janos"], "date_of_birth": "19.03.1935", "preferred_name": "Szentkláray, János", "country_associated": "hu", "variant_access_point": ["Szentklaray, Janos, 1935-"], "authorized_access_point": "Szentkláray, János, 1935-"} 1 -2023-07-08 08:17:11.237008 2023-07-08 08:17:11.237011 16015cea-418c-489d-943b-cb15b6ad4d7f {"md5": "8cc6f38a455450a0a218b5bebd3cc91a", "pid": "140974571", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140974571", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140974571", "source": "GND"}], "preferred_name": "Hauptmann, Susanne", "country_associated": "gw", "authorized_access_point": "Hauptmann, Susanne"} 1 -2023-07-08 08:17:11.331904 2023-07-08 08:17:11.331912 8b2baba1-cda7-40b2-ba10-dbfcd3a2d941 {"md5": "80037885c02deb1102b94138d009e0cc", "pid": "14098643X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/14098643X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14098643X", "source": "GND"}], "preferred_name": "Nigst, Johann Michael", "country_associated": "gw", "authorized_access_point": "Nigst, Johann Michael", "biographical_information": ["Respondent in München"]} 1 -2023-07-08 08:17:11.412434 2023-07-08 08:17:11.412439 c715271f-9a7e-4d09-b08f-9f29d321fc47 {"md5": "7c4a6f9c5d5cab45133b971c11c03328", "pid": "140996524", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140996524", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140996524", "source": "GND"}], "variant_name": ["Moraes Filho, José de Aguiar", "Agiuar Moraes Filho, José de"], "date_of_birth": "1966", "preferred_name": "Filho, José de Agiuar Moraes", "country_associated": "bl", "variant_access_point": ["Moraes Filho, José de Aguiar, 1966-", "Agiuar Moraes Filho, José de, 1966-"], "authorized_access_point": "Filho, José de Agiuar Moraes, 1966-", "biographical_information": ["Diss. Technische Universität Kaiserslautern, Fachbereich Informatik"]} 1 -2023-07-08 08:17:11.499832 2023-07-08 08:17:11.49984 cc43e234-8bbf-4fd8-a78d-427ce0c553f1 {"md5": "62e3f511385880a1783e4658dd561e6a", "pid": "141011491", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141011491", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141011491", "source": "GND"}], "variant_name": ["Alexander, R."], "preferred_name": "Alexander, Rudolph", "country_associated": "gw", "variant_access_point": ["Alexander, R."], "authorized_access_point": "Alexander, Rudolph", "biographical_information": ["Kreisphysikus"]} 1 -2023-07-08 08:17:11.570254 2023-07-08 08:17:11.570258 146ef390-55a5-4695-ac5d-02bd327f17d4 {"md5": "d2f3a7dd68b02b685c38fa38cfa92a15", "pid": "141030771", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141030771", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141030771", "source": "GND"}], "variant_name": ["Weiss, Christof"], "date_of_birth": "16.07.1986", "preferred_name": "Weiß, Christof", "country_associated": "gw", "variant_access_point": ["Weiss, Christof, 1986-"], "parallel_access_point": ["Weiss, Christof, 1986-"], "authorized_access_point": "Weiß, Christof, 1986-", "biographical_information": ["Deutscher Komponist", "Diss. Technische Universität Ilmenau, Fachgebiet Elektronische Medientechnik"]} 1 -2023-07-08 08:17:11.658109 2023-07-08 08:17:11.658113 bc9f24f8-6ced-415c-9123-62904ff564c5 {"md5": "e21807c82e14768e8938dc2bdb7fb027", "pid": "141129271", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141129271", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141129271", "source": "GND"}], "variant_name": ["Nguyen, Thu Huong", "Nguyen Thu Huong"], "preferred_name": "Huong, Nguyen Thu", "variant_access_point": ["Nguyen, Thu Huong", "Nguyen Thu Huong"], "authorized_access_point": "Huong, Nguyen Thu", "biographical_information": ["Tätig an der School of Knowledge Science, Japan Advanced Inst. of Science and Technology"]} 1 -2023-07-08 08:17:11.843761 2023-07-08 08:17:11.843771 03b54282-0133-4032-b63b-03a6e6acf9ce {"md5": "a640d1a763848faeb303d6c42dc0245b", "pid": "141153067", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141153067", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141153067", "source": "GND"}], "preferred_name": "Palme, Thomas", "authorized_access_point": "Palme, Thomas", "biographical_information": ["Univ. Mannheim, Lst. für Allgemeine Betriebswirtschaftslehre und Controlling, Diplomarbeit, 2008"]} 1 -2023-07-08 08:17:11.92823 2023-07-08 08:17:11.928235 879e6660-aa16-4760-a8d7-6f547c9121e2 {"md5": "16823f6a9d6aeb8068bcaaa0180a1974", "pid": "141169818", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141169818", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141169818", "source": "GND"}], "variant_name": ["Boberg, Regina Sophia"], "preferred_name": "Hasselquist, Regina Sophia", "country_associated": "sw", "variant_access_point": ["Boberg, Regina Sophia"], "authorized_access_point": "Hasselquist, Regina Sophia"} 1 -2023-07-08 08:17:12.015202 2023-07-08 08:17:12.01521 941bd385-678d-4777-98a8-eba34f5948c1 {"md5": "e40324184de2d19a1bb9efe7e936b143", "pid": "141195428", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141195428", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141195428", "source": "GND"}], "variant_name": ["Eskirch, Pierre", "Escricheus, Pierre", "Eskrichius, Pierre", "Cruzy, Pierre", "Vase, Pierre du", "DuVase, Pierre", "Cruche, Pierre", "Vase, Pierre", "Krug, Pierre"], "date_of_birth": "1530", "date_of_death": "1590", "preferred_name": "Eskrich, Pierre", "country_associated": "fr", "variant_access_point": ["Eskirch, Pierre, 1530-1590", "Escricheus, Pierre, 1530-1590", "Eskrichius, Pierre, 1530-1590", "Cruzy, Pierre, 1530-1590", "Vase, Pierre du, 1530-1590", "DuVase, Pierre, 1530-1590", "Cruche, Pierre, 1530-1590", "Vase, Pierre, 1530-1590", "Krug, Pierre, 1530-1590"], "authorized_access_point": "Eskrich, Pierre, 1530-1590", "biographical_information": ["In Genf u. Lyon als Holzschneider tätig"]} 1 -2023-07-08 08:17:12.109014 2023-07-08 08:17:12.109021 473a3861-1386-456b-9a1f-06a669c697ad {"md5": "33c87e114a1b833d0714bd51b5bab1fa", "pid": "141222042", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141222042", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141222042", "source": "GND"}], "variant_name": ["Bruckmann, Ernst Ludwig", "Bruckmannus, Ernestus Ludovicus", "Brückmannus, Ernestus Ludovicus", "Bruckmannus, E. L."], "date_of_birth": "1730", "date_of_death": "1757", "preferred_name": "Brückmann, Ernst Ludwig", "country_associated": "gw", "variant_access_point": ["Bruckmann, Ernst Ludwig, 1730-1757", "Bruckmannus, Ernestus Ludovicus, 1730-1757", "Brückmannus, Ernestus Ludovicus, 1730-1757", "Bruckmannus, E. L., 1730-1757"], "authorized_access_point": "Brückmann, Ernst Ludwig, 1730-1757", "biographical_information": ["aus Wolfenbüttel, Medizinischer Respondent in Helmstedt und Jena, 1751 Arzt in Helmstedt, 1753 Arzt in Wolfenbüttel"]} 1 -2023-07-08 08:17:12.215795 2023-07-08 08:17:12.215799 72701e1d-9f52-4254-97ca-73e2f2c912db {"md5": "7720bb9e75a7ad0f6d736d4261229e4f", "pid": "141231742", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141231742", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141231742", "source": "GND"}], "variant_name": ["Wießner, Oskar Wolfgang"], "date_of_birth": "03.02.1931", "date_of_death": "13.05.2021", "preferred_name": "Wießner, Wolfgang", "country_associated": "gw", "variant_access_point": ["Wießner, Oskar Wolfgang, 1931-2021"], "authorized_access_point": "Wießner, Wolfgang, 1931-2021"} 1 -2023-07-08 08:17:12.328331 2023-07-08 08:17:12.328336 5a3db500-6d5b-45be-840d-88b822b85780 {"md5": "28dacfb8d6b6845ad8d875b5fdd5fec0", "pid": "141248408", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141248408", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141248408", "source": "GND"}], "date_of_death": "1628", "preferred_name": "Peccius, Bernardinus", "authorized_access_point": "Peccius, Bernardinus, -1628", "biographical_information": ["italienischer Jesuit, Missionar, Märtyrer"]} 1 -2023-07-08 08:17:12.436318 2023-07-08 08:17:12.436327 a7ae096a-739e-49a0-943c-1ed25a756ea7 {"md5": "80ed3c975ff2ba3dc8123d1463760503", "pid": "141327588", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141327588", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141327588", "source": "GND"}], "variant_name": ["Žalinskij, Alʹfred Ėrnestovič", "Žalinskij, A. E..", "Žalinskij, A.", "Żalinski, Alfred", "Жалинский, А. Э."], "date_of_birth": "1932", "preferred_name": "Žalinskij, Alʹfred Ė.", "country_associated": "ru", "variant_access_point": ["Žalinskij, Alʹfred Ėrnestovič, 1932-", "Žalinskij, A. E.., 1932-", "Žalinskij, A., 1932-", "Żalinski, Alfred, 1932-", "Жалинский, А. Э., 1932-"], "parallel_access_point": ["Жалинский, Альфред Э., 1932-"], "authorized_access_point": "Žalinskij, Alʹfred Ė., 1932-", "biographical_information": ["Sowjet. Jurist"]} 1 -2023-07-08 08:17:12.528618 2023-07-08 08:17:12.528624 c731105c-dfa4-4906-a4fc-ea6c6b8c9881 {"md5": "2da9b911fe78d59730009015308680a6", "pid": "141339942", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141339942", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141339942", "source": "GND"}], "variant_name": ["Tietz, Horst Dieter", "Dieter-Tietz, Horst", "Tietz, H. D.", "Tietz, ..."], "preferred_name": "Tietz, Horst-Dieter", "country_associated": "gw", "variant_access_point": ["Tietz, Horst Dieter", "Dieter-Tietz, Horst", "Tietz, H. D.", "Tietz, ..."], "authorized_access_point": "Tietz, Horst-Dieter"} 1 -2023-07-08 08:17:12.610536 2023-07-08 08:17:12.610541 ae21f9a3-88e4-4c58-8637-34d2622f7fd9 {"md5": "c8e0eccf9308e4eff3f98504b6039b59", "pid": "141354240", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141354240", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141354240", "source": "GND"}], "date_of_birth": "1971", "preferred_name": "Zvirgzds, Ilmārs", "country_associated": "lv", "authorized_access_point": "Zvirgzds, Ilmārs, 1971-", "biographical_information": ["Mitglied der Latvian Writer's Association"]} 1 -2023-07-08 08:17:14.608024 2023-07-08 08:17:14.608028 18715bf9-18ac-4595-a8af-9587927229d8 {"md5": "f30d642cb541a5a5667d16738ce2ebc9", "pid": "141833475", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141833475", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141833475", "source": "GND"}], "preferred_name": "Riedl, Andreas", "authorized_access_point": "Riedl, Andreas", "biographical_information": ["Tätig bei der Profund GmbH, Würzburg"]} 1 -2023-07-08 08:17:12.692219 2023-07-08 08:17:12.692229 7906579c-0495-4b7b-b851-b9ab33b0c4af {"md5": "546669d8bc42dc0899b549a8db4aa4eb", "pid": "141363193", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141363193", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141363193", "source": "GND"}], "variant_name": ["Jäger, Friedrich Konrad", "Jäger, Friederich Conrad", "Jegre, Friedrich Conrad"], "date_of_birth": "24.12.1647", "date_of_death": "22.04.1676", "preferred_name": "Jäger, Friedrich Conrad", "country_associated": "gw", "variant_access_point": ["Jäger, Friedrich Konrad, 1647-1676", "Jäger, Friederich Conrad, 1647-1676", "Jegre, Friedrich Conrad, 1647-1676"], "authorized_access_point": "Jäger, Friedrich Conrad, 1647-1676", "biographical_information": ["Kaufmann in Leipzig"]} 1 -2023-07-08 08:17:12.780442 2023-07-08 08:17:12.780447 b63bc0a6-2d6e-40a6-bb86-c83403405a0f {"md5": "c306d2e1d613f7e54195896ef2c8a29f", "pid": "141373741", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141373741", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141373741", "source": "GND"}], "variant_name": ["Bläschke, Thomas"], "preferred_name": "Blaeschke, Thomas", "country_associated": "gw", "variant_access_point": ["Bläschke, Thomas"], "authorized_access_point": "Blaeschke, Thomas"} 1 -2023-07-08 08:17:12.850677 2023-07-08 08:17:12.85068 e296dc91-4012-430b-be3e-47a7b2968a35 {"md5": "a0b2ba28338ee2a60ce4c0da6cd4f9e7", "pid": "141395362", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141395362", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141395362", "source": "GND"}], "variant_name": ["Yongchuan Bao", "Yongchuan, Bao", "Bao, Yongchuan Kevin", "Bao, Kevin"], "preferred_name": "Bao, Yongchuan", "country_associated": "xxu", "variant_access_point": ["Yongchuan Bao", "Yongchuan, Bao", "Bao, Yongchuan Kevin", "Bao, Kevin"], "authorized_access_point": "Bao, Yongchuan", "biographical_information": ["College of Business Administration, University of Alabama in Huntsville, Huntsville, USA", "Sawyer Business School, Suffolk Univ., Boston, Mass., USA"]} 1 -2023-07-08 08:17:12.933551 2023-07-08 08:17:12.933559 22e48e84-8e8e-430e-8d71-2500d18eddf5 {"md5": "b5fec17e4375d1a334c2239f8adcfcb1", "pid": "141454679", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141454679", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141454679", "source": "GND"}], "variant_name": ["Torales, Susana R.", "Torales, Susana"], "date_of_birth": "25.06.1970", "preferred_name": "Torales, Susana Rita", "country_associated": "ag", "variant_access_point": ["Torales, Susana R., 1970-", "Torales, Susana, 1970-"], "authorized_access_point": "Torales, Susana Rita, 1970-", "biographical_information": ["Argentin. Übersetzerin (Portug.) u. Schriftstellerin"]} 1 -2023-07-08 08:17:13.009054 2023-07-08 08:17:13.00906 3afb944a-87f6-4a6e-8087-12bcf0d17c8b {"md5": "a0ec2bd0c89059046fb67c28525d684c", "pid": "141463740", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141463740", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141463740", "source": "GND"}], "date_of_birth": "1975", "preferred_name": "Mariotti, Emanuele", "country_associated": "it", "authorized_access_point": "Mariotti, Emanuele, 1975-"} 1 -2023-07-08 08:17:13.103664 2023-07-08 08:17:13.103669 10124fc6-115a-469f-8757-653136ab65ec {"md5": "fc6d5fd008a7455d0dd2704b4d2b9710", "pid": "141475366", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141475366", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141475366", "source": "GND"}], "preferred_name": "Stone, Robert W.", "authorized_access_point": "Stone, Robert W.", "biographical_information": ["Tätig an der Univ. of Idaho"]} 1 -2023-07-08 08:17:13.193816 2023-07-08 08:17:13.193822 49b1f4b3-a978-4360-8cd1-c3419b7d5a56 {"md5": "b01cb6ae593949369a4ed4c7535ab67e", "pid": "14151289X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/14151289X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14151289X", "source": "GND"}], "variant_name": ["Diest, Pieter van", "Diest, P. van"], "date_of_birth": "19. Jh.", "preferred_name": "Diest, Pieter Hendrik van", "variant_access_point": ["Diest, Pieter van, 19. Jh.", "Diest, P. van, 19. Jh."], "authorized_access_point": "Diest, Pieter Hendrik van, 19. Jh.", "biographical_information": ["Niederländischer Ingenieur"]} 1 -2023-07-08 08:17:13.296031 2023-07-08 08:17:13.29604 99994f56-d238-4921-a1d6-1a6d11cdc962 {"md5": "c1ae58c4507c1bd7a76c4356897f1c53", "pid": "141518707", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141518707", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141518707", "source": "GND"}], "date_of_birth": "1937", "preferred_name": "Boer, Ingo", "country_associated": "pl", "authorized_access_point": "Boer, Ingo, 1937-"} 1 -2023-07-08 08:17:13.393991 2023-07-08 08:17:13.393995 4ef7e0a4-54bb-414c-8b1f-d84cb99e30c7 {"md5": "a2448fa6366dce8199a60be0ddb62abf", "pid": "141531142", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141531142", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141531142", "source": "GND"}], "date_of_birth": "1979", "preferred_name": "Brucke, Martin", "authorized_access_point": "Brucke, Martin, 1979-", "biographical_information": ["Diss. Fakultät Architektur, Bauingenieurwesen und Umweltwissenschaften der Techn. Univ. Braunschweig"]} 1 -2023-07-08 08:17:13.477268 2023-07-08 08:17:13.477273 34ea425d-2fbe-4077-963d-a00f3cec3da9 {"md5": "6666dae86e357c42827dde7c9339684a", "pid": "141546891", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141546891", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141546891", "source": "GND"}], "date_of_birth": "28.05.1977", "preferred_name": "Peters, Stefanie", "authorized_access_point": "Peters, Stefanie, 1977-", "biographical_information": ["Diss. Technische Universität Kaiserslautern, Fachbereich Elektrotechnik und Informationstechnik"]} 1 -2023-07-08 08:17:13.563636 2023-07-08 08:17:13.563641 2379b30f-eb06-420f-a0fc-1d40c1ded330 {"md5": "c01572e5a4756fc4e6903d70f2236cd6", "pid": "141569344", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141569344", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141569344", "source": "GND"}], "variant_name": ["Escobar, Orlando Horacio Sotolongo"], "date_of_birth": "1955", "preferred_name": "Sotolongo Escobar, Orlando Horacio", "country_associated": "cu", "variant_access_point": ["Escobar, Orlando Horacio Sotolongo, 1955-"], "authorized_access_point": "Sotolongo Escobar, Orlando Horacio, 1955-", "biographical_information": ["Kuban. Agraringenieur"]} 1 -2023-07-08 08:17:13.652299 2023-07-08 08:17:13.652307 9be9d827-fedd-4ffd-a091-01cdc1a1732a {"md5": "9bc6bbcf4baf54a1067b0968dc7d2c6b", "pid": "141630531", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141630531", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141630531", "source": "GND"}], "date_of_birth": "1956", "preferred_name": "Yuan, Lili", "country_associated": "cc", "authorized_access_point": "Yuan, Lili, 1956-", "biographical_information": ["lebt seit 1992 in Deutschland, gründete 2001 ein Atelier in Krefeld, Nordrhein-Westfalen"]} 1 -2023-07-08 08:17:13.743029 2023-07-08 08:17:13.743034 5b5cc5b1-66e6-4070-ae3a-eff2f74061f3 {"md5": "aa6e9af17cf3e91d5f94eb20fc3ab6ec", "pid": "141639490", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141639490", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141639490", "source": "GND"}], "date_of_birth": "1949", "preferred_name": "Sano, Yuji", "authorized_access_point": "Sano, Yuji, 1949-", "biographical_information": ["Lebt in Tokyo, führt Seminare zu biblischen und schintoistischen Theorien"]} 1 -2023-07-08 08:17:13.84469 2023-07-08 08:17:13.844694 1605348f-25d2-4591-bd78-1eed5075b29a {"md5": "de0fb670ae4e3157f4fb25af34836d26", "pid": "141657278", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141657278", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141657278", "source": "GND"}], "variant_name": ["Watteville, Johannes Michael von", "Wattenwyl, Johannes von", "Watteville, Johannes, Baron von", "Langguth, Johannes Michael", "Langguth, Johannes", "Langguth, Johann Michael"], "date_of_birth": "18.10.1718", "date_of_death": "11.10.1788", "preferred_name": "Watteville, Johannes von", "country_associated": "gw", "variant_access_point": ["Watteville, Johannes Michael von, 1718-1788", "Wattenwyl, Johannes von, 1718-1788", "Watteville, Johannes, Baron von, 1718-1788", "Langguth, Johannes Michael, 1718-1788", "Langguth, Johannes, 1718-1788", "Langguth, Johann Michael, 1718-1788"], "authorized_access_point": "Watteville, Johannes von, 1718-1788", "biographical_information": ["1735-1738 Theologiestudium in Jena; Lehrer und Erzieher des Sohns von Nicolaus Ludwig von Zinzendorf; 1739 in Marienborn; Pastor der Evangelischen Brüdergemeine in Herrnhaag bei Büdingen und in Herrnhut, ab 1742 Coepiscopus Zinzendorfs, unternahm Visitationreisen nach England, Nordamerika, den Kanarischen Inseln und Grönland; Sohn des gleichnam. Oberpfarrers von Walschleben; Namensänderung nach Adoption; verheiratet mit Benigna Justine von Zinzendorf"]} 1 -2023-07-08 08:17:13.948673 2023-07-08 08:17:13.948695 e1d47b91-ccff-45d1-8af4-dec4a43a953a {"md5": "9f0339fffb374ff9650ac8cbb5774ae1", "pid": "14167220X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/14167220X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14167220X", "source": "GND"}], "date_of_birth": "19.11.1950", "preferred_name": "Dubberstein, Peter", "authorized_access_point": "Dubberstein, Peter, 1950-"} 1 -2023-07-08 08:17:14.059372 2023-07-08 08:17:14.059378 d765586b-ea21-4ff2-be0b-2639beefa709 {"md5": "e1fa92645c10580d863d1cafe6734029", "pid": "141675330", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141675330", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141675330", "source": "GND"}], "date_of_birth": "1981", "preferred_name": "Hatzelhoffer, Lena", "country_associated": "gw", "authorized_access_point": "Hatzelhoffer, Lena, 1981-", "biographical_information": ["Magister-Geographin, arbeitet seit 2009 als Wiss. Mitarbeiterin in der Arbeitsgruppe Stadt- und Regionalforschung am Geographischen Institut der Universität Bonn"]} 1 -2023-07-08 08:17:14.144769 2023-07-08 08:17:14.144773 83093589-ecb1-4ef2-a685-eb74c1670791 {"md5": "8e5b9f1469856ea13c4c2e07fb0a485d", "pid": "141707151", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141707151", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141707151", "source": "GND"}], "date_of_birth": "1983", "preferred_name": "Nistal, Markus", "authorized_access_point": "Nistal, Markus, 1983-", "biographical_information": ["Diss. Universität Würzburg, Medizinische Fakultät"]} 1 -2023-07-08 08:17:14.231596 2023-07-08 08:17:14.231599 f5c12636-b123-4e72-8812-6efb769a3f56 {"md5": "ddd6d0f2dd5dc8dfea8e07e7f7a36ba3", "pid": "141709499", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141709499", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141709499", "source": "GND"}], "date_of_birth": "1969", "preferred_name": "Denkinger, Sandra Nicole", "authorized_access_point": "Denkinger, Sandra Nicole, 1969-"} 1 -2023-07-08 08:17:14.325186 2023-07-08 08:17:14.32519 b42dcc17-58ec-4199-b8d5-b3a83aa61173 {"md5": "5c596b9cdd131467ebb733be456bdb4c", "pid": "141752025", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141752025", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141752025", "source": "GND"}], "date_of_birth": "21.03.1858", "date_of_death": "24.02.1927", "preferred_name": "Barthel, Wilhelm", "authorized_access_point": "Barthel, Wilhelm, 1858-1927", "biographical_information": ["Vorsitzender des Verbands sächsischer Konsumvereine."]} 1 -2023-07-08 08:17:14.411884 2023-07-08 08:17:14.411889 046db179-2b90-4d06-b762-1b997d7b37b9 {"md5": "051035fd5efae112af4f8efb18e4aae2", "pid": "141780940", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141780940", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141780940", "source": "GND"}], "variant_name": ["Briceño, Yoana Monsalve", "Monsalve-Briceño, Yoana", "Monsalve, Yoana"], "preferred_name": "Monsalve Briceño, Yoana", "variant_access_point": ["Briceño, Yoana Monsalve", "Monsalve-Briceño, Yoana", "Monsalve, Yoana"], "authorized_access_point": "Monsalve Briceño, Yoana", "biographical_information": ["Tätig an der Escuela de Criminología, Universidad de los Andes, Mérida, Venezuela"]} 1 -2023-07-08 08:17:14.510696 2023-07-08 08:17:14.510703 fee8c726-0af6-47e7-a133-71c89b0cb24f {"md5": "ff0d63e5824ef8023d558e6ac1fd5498", "pid": "141820209", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141820209", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141820209", "source": "GND"}], "variant_name": ["Zinck, A."], "preferred_name": "Zinck, Alexandra", "country_associated": "gw", "variant_access_point": ["Zinck, A."], "authorized_access_point": "Zinck, Alexandra", "biographical_information": ["Lehrstuhl für Philosophie des Geistes, Institut für Philosophie, Fakultät für Philosophie und Erziehungswissenschaft, Ruhr-Universität Bochum"]} 1 -2023-07-08 08:17:14.679563 2023-07-08 08:17:14.679568 b30d1a01-fe9c-4439-85cb-1504784da448 {"md5": "afeb4aaf71151015ddb3775249722012", "pid": "141839422", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141839422", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141839422", "source": "GND"}], "preferred_name": "Freese, Walter", "authorized_access_point": "Freese, Walter", "biographical_information": ["Tätig an der Univ. Göttingen; GfK Fernsehforschung, Nürnberg; TNS Emnid Medienforschung, Bielefeld"]} 1 -2023-07-08 08:17:14.765092 2023-07-08 08:17:14.765095 fd7e6dfb-0b1a-4716-8ee7-dfaa565027e0 {"md5": "1418f6d27f9b6cd2777a0cee2244f0be", "pid": "141851910", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141851910", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141851910", "source": "GND"}], "variant_name": ["MacAvoy, Mark"], "preferred_name": "McAvoy, Mark", "country_associated": "ir", "variant_access_point": ["MacAvoy, Mark"], "authorized_access_point": "McAvoy, Mark"} 1 -2023-07-08 08:17:14.833802 2023-07-08 08:17:14.833805 f9a8c10a-588d-4ef5-bfd3-be5edec50dc6 {"md5": "f1e0745a402d7ee27f5508190a78a65b", "pid": "141864893", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141864893", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141864893", "source": "GND"}], "preferred_name": "Illenberger, ...", "country_associated": "gw", "authorized_access_point": "Illenberger, ..."} 1 -2023-07-08 08:17:14.91423 2023-07-08 08:17:14.914235 abae1af2-abc6-402f-bb74-f7b3e3ec5853 {"md5": "e38365cb3213b0c0aa60f3316684245b", "pid": "141874325", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141874325", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141874325", "source": "GND"}], "preferred_name": "Buff, Christoph", "country_associated": "sz", "authorized_access_point": "Buff, Christoph"} 1 -2023-07-08 08:17:14.992109 2023-07-08 08:17:14.992114 d200cb16-51e4-4137-9226-b021fe272ae0 {"md5": "41e0c142f26dee0d199e1e772fcfa9cb", "pid": "141919558", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141919558", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141919558", "source": "GND"}], "preferred_name": "Stadali, Reinhard", "authorized_access_point": "Stadali, Reinhard"} 1 -2023-07-08 08:17:15.078115 2023-07-08 08:17:15.07812 4d4733b1-4252-4c6a-bb91-3e8bc923ff55 {"md5": "14788681f7a4b1f9d753e9fe9f7c4882", "pid": "141944447", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141944447", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141944447", "source": "GND"}], "preferred_name": "Ṣādiq, Fidāʾ", "parallel_access_point": ["صادق, فداء"], "authorized_access_point": "Ṣādiq, Fidāʾ"} 1 -2023-07-08 08:17:15.159163 2023-07-08 08:17:15.159171 a5389bc6-3bbe-4ba8-b201-e85b5968aa64 {"md5": "ed1abbb9f6b0ba8398bf6ab21ea5465a", "pid": "14194479X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/14194479X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14194479X", "source": "GND"}], "preferred_name": "Kiljala, Päivi", "authorized_access_point": "Kiljala, Päivi"} 1 -2023-07-08 08:17:15.234509 2023-07-08 08:17:15.234524 93403f72-4c5e-483e-b894-e33122bc28c9 {"md5": "4f5538e205be4e0a2e0adf6de69d9c3e", "pid": "141961406", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141961406", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141961406", "source": "GND"}], "preferred_name": "Teupe, Ursula", "authorized_access_point": "Teupe, Ursula"} 1 -2023-07-08 08:17:15.313768 2023-07-08 08:17:15.313773 e94f16b1-12ee-44c6-a0e6-ab48f9c0a2f9 {"md5": "a0466a062dbe9b6874634056762284b0", "pid": "141969016", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141969016", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141969016", "source": "GND"}], "date_of_birth": "1964", "preferred_name": "Szivatz, Christian", "country_associated": "au", "authorized_access_point": "Szivatz, Christian, 1964-"} 1 -2023-07-08 08:17:15.415293 2023-07-08 08:17:15.415298 48cb26dc-6f23-49fc-8046-3a74daab5d5c {"md5": "043cef13a84bf811141e5e02a92b6dc1", "pid": "141980516", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141980516", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141980516", "source": "GND"}], "variant_name": ["Häring, Cristina Kathrin"], "date_of_birth": "19.08.1983", "preferred_name": "Häring, Cristina", "country_associated": "gw", "variant_access_point": ["Häring, Cristina Kathrin, 1983-"], "authorized_access_point": "Häring, Cristina, 1983-", "biographical_information": ["Diss. Medizinische Fakultät der Univ. Regensburg 2010"]} 1 -2023-07-08 08:17:15.513933 2023-07-08 08:17:15.513938 120e3fb7-5ceb-43b1-9ca8-9e054799f721 {"md5": "6540f76feeb04c89c389ae5cf96d6e29", "pid": "14198970X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/14198970X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14198970X", "source": "GND"}], "variant_name": ["Abdur Rahman, Rafique", "Abdur Rahman, Rafiq"], "preferred_name": "ʿAbd-ar-Raḥmān, Rafīq", "variant_access_point": ["Abdur Rahman, Rafique", "Abdur Rahman, Rafiq"], "parallel_access_point": ["عبد الرحمن, رفيق"], "authorized_access_point": "ʿAbd-ar-Raḥmān, Rafīq"} 1 -2023-07-08 08:17:15.596087 2023-07-08 08:17:15.596092 cf6bf8fa-17ba-4f74-a5f2-d1ef8eba6be0 {"md5": "2520917364f79e00ffbe0bf6c5be0d13", "pid": "141990600", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141990600", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141990600", "source": "GND"}], "variant_name": ["L.Lida.T.", "L. Lida. T."], "date_of_birth": "1961", "preferred_name": "Tarakhovsky, Lida", "country_associated": "un", "variant_access_point": ["L.Lida.T., 1961-", "L. Lida. T., 1961-"], "authorized_access_point": "Tarakhovsky, Lida, 1961-"} 1 -2023-07-08 08:17:16.771526 2023-07-08 08:17:16.771535 8f599f38-a220-4ca9-a256-2f2eca47cf90 {"md5": "16b98f6d79139417f6009bc360f052fc", "pid": "142218685", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/142218685", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142218685", "source": "GND"}], "variant_name": ["Achmedov, A. I."], "preferred_name": "Achmedov, Abdulgafar", "variant_access_point": ["Achmedov, A. I."], "authorized_access_point": "Achmedov, Abdulgafar", "biographical_information": ["Kandidat ėkon nauk, tätig als Prezident Respublikanskogo Obščestva Družby, Kulʹturnych i Ėkonomičeskich Svjazej Dagestana s Azerbajdžanom"]} 1 -2023-07-08 08:17:15.675239 2023-07-08 08:17:15.675246 1439139a-ac21-45bf-94d3-914f0891fc9c {"md5": "f2084473ab77ad48d64338c7b8eb0f50", "pid": "142004634", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/142004634", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142004634", "source": "GND"}], "variant_name": ["Naval Kishor", "Newal Kishor", "Naval Kishur", "Nawal Kišūr", "Nawal-Kišūr", "Nawal Kišor", "Naval Kišor", "Neval Kishor", "Nawal Kishawr", "Naval Kishawr", "Nūl Kišūr", "Nūlkišūr", "Nul Kishore", "Nul Kishur", "Nulkishur", "Nulkishore"], "preferred_name": "Neval-Kishor", "variant_access_point": ["Naval Kishor", "Newal Kishor", "Naval Kishur", "Nawal Kišūr", "Nawal-Kišūr", "Nawal Kišor", "Naval Kišor", "Neval Kishor", "Nawal Kishawr", "Naval Kishawr", "Nūl Kišūr", "Nūlkišūr", "Nul Kishore", "Nul Kishur", "Nulkishur", "Nulkishore"], "parallel_access_point": ["نولکشور"], "authorized_access_point": "Neval-Kishor"} 1 -2023-07-08 08:17:15.776913 2023-07-08 08:17:15.776919 6c036eb4-6497-432b-be7d-03abfc3caffa {"md5": "c77eb256be4eebd681aaa72e7ea1a9bb", "pid": "142042544", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/142042544", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142042544", "source": "GND"}], "date_of_birth": "1700", "date_of_death": "01.01.1717", "preferred_name": "Eisenreich, Georg Leopold", "country_associated": "au", "authorized_access_point": "Eisenreich, Georg Leopold, 1700-1717"} 1 -2023-07-08 08:17:15.867278 2023-07-08 08:17:15.867295 0dbf67d9-0980-44bd-b528-36e0e11e8210 {"md5": "0b62f50ad981f2527672ef81c04d31ef", "pid": "142047465", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/142047465", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142047465", "source": "GND"}], "date_of_birth": "1893", "date_of_death": "1923", "preferred_name": "Worsing, Elith", "country_associated": "dk", "authorized_access_point": "Worsing, Elith, 1893-1923"} 1 -2023-07-08 08:17:15.957607 2023-07-08 08:17:15.957613 de3dcb82-7e92-4f82-9c35-2ef5192a2f8f {"md5": "34e1594de23588614b20bf77164df601", "pid": "142047678", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/142047678", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142047678", "source": "GND"}], "variant_name": ["Cochia, Sophia Elisabetha"], "date_of_birth": "ca. 1727", "preferred_name": "Cochius, Sophia Elisabeth", "variant_access_point": ["Cochia, Sophia Elisabetha, ca. 1727"], "authorized_access_point": "Cochius, Sophia Elisabeth, ca. 1727", "biographical_information": ["Ehefrau von Gottfried Christian Cochius"]} 1 -2023-07-08 08:17:16.052292 2023-07-08 08:17:16.0523 c92ff15b-4d1d-4112-8b3d-086e477abf51 {"md5": "83855cae3d9256ff5af5ce65cf47d813", "pid": "142098256", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/142098256", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142098256", "source": "GND"}], "variant_name": ["Alves Brene, Paulo Rogério"], "preferred_name": "Brene, Paulo Rogério Alves", "variant_access_point": ["Alves Brene, Paulo Rogério"], "authorized_access_point": "Brene, Paulo Rogério Alves", "biographical_information": ["Tätig an der Universidade Estadual de Londrina, Departamento de Economia"]} 1 -2023-07-08 08:17:16.158689 2023-07-08 08:17:16.158694 87666121-15b8-4836-a2ee-6a9540945f5d {"md5": "a3f425884e40ffce3af1fab2345c0d75", "pid": "142138894", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/142138894", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142138894", "source": "GND"}], "date_of_birth": "1978", "preferred_name": "Brechtel, Christian", "country_associated": "gw", "authorized_access_point": "Brechtel, Christian, 1978-"} 1 -2023-07-08 08:17:16.258867 2023-07-08 08:17:16.258873 0e5d2540-ec31-47e3-8a8b-2f9bd5ccb775 {"md5": "c240dbcecf6b5f34e8c9a5f90d487bf0", "pid": "142174610", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/142174610", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142174610", "source": "GND"}], "variant_name": ["Kullmann, Wilhelm"], "date_of_birth": "1940", "preferred_name": "Kullmann, Willi", "country_associated": "gw", "variant_access_point": ["Kullmann, Wilhelm, 1940-"], "authorized_access_point": "Kullmann, Willi, 1940-", "biographical_information": ["Promotion Universität zu Köln 1975"]} 1 -2023-07-08 08:17:16.359694 2023-07-08 08:17:16.359705 b8693b36-d49a-4b28-82a3-f46e2f21bc6c {"md5": "70acb6327851aac6dd59408a2121a7e3", "pid": "142191663", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/142191663", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142191663", "source": "GND"}], "preferred_name": "Osborne, Paul", "country_associated": "xxu", "authorized_access_point": "Osborne, Paul", "biographical_information": ["Drehbuchautor, Produzent, Regisseur"]} 1 -2023-07-08 08:17:16.441067 2023-07-08 08:17:16.441073 3b8dbfe2-0f52-46fa-9a99-f3451eb92d6e {"md5": "8d1e82804f34b32de651109c94bdf724", "pid": "142206725", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/142206725", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142206725", "source": "GND"}], "preferred_name": "Bender, ...", "country_associated": "gw", "authorized_access_point": "Bender, ...", "biographical_information": ["Gastauftritt 1818 der Gebrüder Bender, erste Klarinettisten Sr. Majestät, des Kaisers von Rußland"]} 1 -2023-07-08 08:17:16.540516 2023-07-08 08:17:16.540524 05ce5ba8-f9b0-4958-a41a-e921bcb21ff5 {"md5": "bf4ccc78ff16e14b457c1f16ce90ad56", "pid": "142208035", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/142208035", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142208035", "source": "GND"}], "variant_name": ["Samoylov, D. V."], "preferred_name": "Samojlov, D. V.", "variant_access_point": ["Samoylov, D. V."], "authorized_access_point": "Samojlov, D. V.", "biographical_information": ["Student 1 Kursa Magistratury Meždunarodnogo Instituta Ėkonomiki i Finsnov Gosudarstvennogo Univ. - Vysšej Školy Ėkonomiki"]} 1 -2023-07-08 08:17:16.659361 2023-07-08 08:17:16.659367 e810601c-16dc-4407-8bd9-e6dbcb5237ba {"md5": "664a56496ce0f1e6b3f7b2c2dd6db1ea", "pid": "142211117", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/142211117", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142211117", "source": "GND"}], "variant_name": ["Chuanpeng, Lian", "Chuanpeng Lian"], "preferred_name": "Lian, Chuanpeng", "variant_access_point": ["Chuanpeng, Lian", "Chuanpeng Lian"], "authorized_access_point": "Lian, Chuanpeng", "biographical_information": ["Tätig at School of Public Policy and Administration, Xian Jiaotong Univ., China"]} 1 -2023-07-08 08:17:16.870847 2023-07-08 08:17:16.870856 993705c6-2566-4ff7-a6c7-bac47ddc303a {"md5": "f93454b8ae5040a2e17f66bc08d6e34d", "pid": "142233307", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/142233307", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142233307", "source": "GND"}], "variant_name": ["Krumm, S."], "date_of_birth": "1968", "preferred_name": "Krumm, Silvia", "country_associated": "gw", "variant_access_point": ["Krumm, S., 1968-"], "authorized_access_point": "Krumm, Silvia, 1968-", "biographical_information": ["seit 2013 Vertretungsprofessur Gemeindepsychiatrie, Rehabilitation, Beratung am Fachbereich Sozialwesen der Hochschule Fulda", "Habilitation (2019) an der Medizinischen Fakultät der Universität Ulm. Lehrbefugnis für das Fach Experimentelle Psychiatrie, Schwerpunkt Sozialpsychiatrie"]} 1 -2023-07-08 08:17:16.977128 2023-07-08 08:17:16.977136 af6b06ff-7667-42ad-89cc-dadbac11c02d {"md5": "f874b6176cd51680bba081595af6c6ea", "pid": "142248010", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/142248010", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142248010", "source": "GND"}], "variant_name": ["Knyphausen, Dodo zu Innhausen und"], "date_of_birth": "06.07.1877", "date_of_death": "07.09.1967", "preferred_name": "Innhausen und Knyphausen, Dodo zu", "country_associated": "gw", "variant_access_point": ["Knyphausen, Dodo zu Innhausen und, 1877-1967"], "authorized_access_point": "Innhausen und Knyphausen, Dodo zu, 1877-1967", "biographical_information": ["Rittergutsbesitzer"]} 1 -2023-07-08 08:17:17.076719 2023-07-08 08:17:17.076726 917e5ac8-3de6-417d-8d8d-7a4cc6f77c8d {"md5": "fd1a99180701c4d41adf8a1640439a05", "pid": "142254193", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/142254193", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142254193", "source": "GND"}], "date_of_birth": "20./21. Jh", "preferred_name": "Husmann, Maria", "country_associated": "gw", "authorized_access_point": "Husmann, Maria, 20./21. Jh"} 1 -2023-07-08 08:17:17.182327 2023-07-08 08:17:17.182333 a7a53132-a17e-4b8c-bd36-6b2464227680 {"md5": "97c917652b6218037aa6b78613f2dfbf", "pid": "142291684", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/142291684", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142291684", "source": "GND"}], "variant_name": ["Perschbecher, Guilielmus"], "preferred_name": "Perschbecher, Wilhelm", "country_associated": "gw", "variant_access_point": ["Perschbecher, Guilielmus"], "authorized_access_point": "Perschbecher, Wilhelm", "biographical_information": ["1748 Respondent in Rinteln"]} 1 -2023-07-08 08:17:17.273846 2023-07-08 08:17:17.273852 fbe8dfee-c828-4655-9160-331d3f07ca70 {"md5": "b411d7182231dfec5dff1d41787921e6", "pid": "142310778", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/142310778", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142310778", "source": "GND"}], "preferred_name": "Voigt, Friedrich", "country_associated": "gw", "authorized_access_point": "Voigt, Friedrich", "biographical_information": ["aus Aga im Voigtland; Kalenderschreiber, \\"der Sternkunst und Politices Beflissen\\""]} 1 -2023-07-08 08:17:17.391186 2023-07-08 08:17:17.391191 c6f36cc2-c5c7-46b4-8e2d-ef464b692121 {"md5": "57876740928cfddc118441add2d4fa5b", "pid": "142328588", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/142328588", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142328588", "source": "GND"}], "variant_name": ["Westhoven, Hermann Werner Engelbert de", "Westhoven, Hermannus Wernerus Engelbertus de", "Westhof, Hermann Werner Engelbert von", "Westhoff, Hermann Werner Engelbert von", "Westhoven, Hermann Werner Engelbert", "Hermophilus"], "date_of_birth": "11.09.1685", "date_of_death": "03.08.1732", "preferred_name": "Westhoven, Hermann Werner Engelbert von", "country_associated": "gw", "variant_access_point": ["Westhoven, Hermann Werner Engelbert de, 1685-1735", "Westhoven, Hermannus Wernerus Engelbertus de, 1685-1735", "Westhof, Hermann Werner Engelbert von, 1685-1735", "Westhoff, Hermann Werner Engelbert von, 1685-1735", "Westhoven, Hermann Werner Engelbert, 1685-1735", "Hermophilus, 1685-1735"], "authorized_access_point": "Westhoven, Hermann Werner Engelbert von, 1685-1735", "biographical_information": ["Dt. Mediziner: bis 1705 Schüler am Gymnasium Gotha; Student in Leiden und Harderwijk; Mitglied der Leopoldina; 1721 dritter Bürgermeister in Hamm; Sohn des Arztes Rüdiger von Westhoven (gest. 1727)"]} 1 -2023-07-08 08:17:17.496967 2023-07-08 08:17:17.496975 22886a9c-0460-4916-b337-0d04365b2350 {"md5": "b6ac4cb1b64b98acc2c1b71f7d850ab9", "pid": "142468614", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/142468614", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142468614", "source": "GND"}], "variant_name": ["Schellhase, Karl Wilhelm"], "date_of_birth": "1906", "date_of_death": "1944", "preferred_name": "Schellhase, Karl", "variant_access_point": ["Schellhase, Karl Wilhelm, 1906-1944"], "authorized_access_point": "Schellhase, Karl, 1906-1944", "biographical_information": ["Lehrer in Concepción (Chile)"]} 1 -2023-07-08 08:17:17.625978 2023-07-08 08:17:17.625985 e50a542e-d7ed-4445-849b-40e4fbf48acb {"md5": "a5dd31af865a534363660443de3f608f", "pid": "14250923X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/14250923X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14250923X", "source": "GND"}], "preferred_name": "Rambach, Günther", "authorized_access_point": "Rambach, Günther", "biographical_information": ["pensionierter Lehrer für Deutsch, Geschichte und Sozialkunde"]} 1 -2023-07-08 08:17:17.731978 2023-07-08 08:17:17.731981 ecc1ba18-a03a-466b-899b-71313f6c7da2 {"md5": "311e4717007bed5a3447133b1b6263f4", "pid": "142554197", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/142554197", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142554197", "source": "GND"}], "variant_name": ["Lilienthal, Philipp P.", "Lilienthal, Peter Philipp", "Lilienthalius, Philippus Petrus", "Lilienthal, Philippus Petrus"], "preferred_name": "Lilienthal, Philipp Peter", "country_associated": "gw", "variant_access_point": ["Lilienthal, Philipp P.", "Lilienthal, Peter Philipp", "Lilienthalius, Philippus Petrus", "Lilienthal, Philippus Petrus"], "authorized_access_point": "Lilienthal, Philipp Peter", "biographical_information": ["1736 Praeses in Greifswald, Conrektor"]} 1 -2023-07-08 08:17:21.895984 2023-07-08 08:17:21.89599 50b363a4-4fed-4936-ac77-051f38f7a168 {"md5": "618767c6985d6396b32beb21e74bdfcd", "pid": "143366254", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143366254", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143366254", "source": "GND"}], "date_of_birth": "01.06.1979", "preferred_name": "Vothknecht, Marc", "authorized_access_point": "Vothknecht, Marc, 1979-"} 1 -2023-07-08 08:17:17.827279 2023-07-08 08:17:17.827284 9506b8b5-a8b0-485b-b08a-52b2bb950582 {"md5": "822aea4251df51225e5a031dd9d2086b", "pid": "142619930", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/142619930", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142619930", "source": "GND"}], "variant_name": ["Xinwei, Zheng", "Xinwei Zheng"], "preferred_name": "Zheng, Xinwei", "variant_access_point": ["Xinwei, Zheng", "Xinwei Zheng"], "authorized_access_point": "Zheng, Xinwei"} 1 -2023-07-08 08:17:17.91395 2023-07-08 08:17:17.913956 bb8a1747-28ee-4b89-89a0-06c2a2a21245 {"md5": "cc6954579e59d27b687f769fd4d1f418", "pid": "142643742", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/142643742", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142643742", "source": "GND"}], "preferred_name": "Berger, Martin", "country_associated": "gw", "authorized_access_point": "Berger, Martin"} 1 -2023-07-08 08:17:18.008423 2023-07-08 08:17:18.008428 c5023cc6-b4c7-4b29-8c5b-a325cf3cfccc {"md5": "e1978d3209fe85bcdfdfa1c75d79519b", "pid": "142693634", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/142693634", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142693634", "source": "GND"}], "variant_name": ["Scarth, Harry Mingden", "Scarth, Harry Mengden", "Scarth, Harry M.", "British Resident, A"], "date_of_birth": "1814", "date_of_death": "1890", "preferred_name": "Scarth, John", "country_associated": "cc", "variant_access_point": ["Scarth, Harry Mingden, 1814-1890", "Scarth, Harry Mengden, 1814-1890", "Scarth, Harry M., 1814-1890", "British Resident, A, 1814-1890"], "authorized_access_point": "Scarth, John, 1814-1890"} 1 -2023-07-08 08:17:18.112711 2023-07-08 08:17:18.112717 683e78ff-c2f9-45c0-96e5-05ab2f98c505 {"md5": "718d8abf9503c3b64975b201510325b4", "pid": "142697354", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://d-nb.info/gnd/142697354", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142697354", "source": "GND"}], "date_of_birth": "1882", "date_of_death": "1929", "preferred_name": "Reventós, Ramón", "country_associated": "sp", "authorized_access_point": "Reventós, Ramón, 1882-1929"} 1 -2023-07-08 08:17:18.200649 2023-07-08 08:17:18.200657 ac971e55-2461-49a7-8ab3-058c82830815 {"md5": "88951d44101624beeb7b837a368ef125", "pid": "142717126", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/142717126", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142717126", "source": "GND"}], "variant_name": ["Petkova, Radina Vesselinova"], "date_of_birth": "1977", "preferred_name": "Petkova, Radina V.", "country_associated": "bu", "variant_access_point": ["Petkova, Radina Vesselinova, 1977-"], "authorized_access_point": "Petkova, Radina V., 1977-", "biographical_information": ["Diss. Fachbereich Medizin"]} 1 -2023-07-08 08:17:18.291705 2023-07-08 08:17:18.29171 c9cee7d1-dd16-4f57-adff-11b31460f03b {"md5": "25bf3b5f4820f03d68c74fcfc8578c1a", "pid": "142751464", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/142751464", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142751464", "source": "GND"}], "preferred_name": "Morrea, Nello", "country_associated": "it", "authorized_access_point": "Morrea, Nello", "biographical_information": ["Preposito Generale Chierici Regolari Minori"]} 1 -2023-07-08 08:17:18.383771 2023-07-08 08:17:18.383774 6543debd-05b6-4a46-83a5-1cb69675f4ba {"md5": "b9068f35c77b9092cf2cd0389b241fe3", "pid": "142757640", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/142757640", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142757640", "source": "GND"}], "variant_name": ["Scheidel, Martina Gießen-"], "date_of_birth": "1967", "preferred_name": "Gießen-Scheidel, Martina", "country_associated": "gw", "variant_access_point": ["Scheidel, Martina Gießen-, 1967-"], "authorized_access_point": "Gießen-Scheidel, Martina, 1967-"} 1 -2023-07-08 08:17:18.461073 2023-07-08 08:17:18.461079 c5a472cb-83ad-4c28-8031-c112a0566b3e {"md5": "5816d632a30eebf7a65605374341e848", "pid": "142767549", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/142767549", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142767549", "source": "GND"}], "variant_name": ["Ning, Hsieh", "Ning Hsieh"], "preferred_name": "Hsieh, Ning", "variant_access_point": ["Ning, Hsieh", "Ning Hsieh"], "authorized_access_point": "Hsieh, Ning", "biographical_information": ["Tätig an der National Tsing Hua Univ."]} 1 -2023-07-08 08:17:18.543746 2023-07-08 08:17:18.543752 30b65d32-a92e-4abf-8793-ffcf14bc389a {"md5": "1a50c7f1ac6eff99db06b9375f5dca02", "pid": "142782629", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/142782629", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142782629", "source": "GND"}], "preferred_name": "Markelis, Daiva", "country_associated": "xxu", "authorized_access_point": "Markelis, Daiva", "biographical_information": ["associate professor of English at Eastern, Illinois University"]} 1 -2023-07-08 08:17:18.648332 2023-07-08 08:17:18.648335 1fb81f4a-48b5-4412-ad4d-d86cf54f8420 {"md5": "ed3a874947ddde79bb4d49d40d036a48", "pid": "142784338", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/142784338", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142784338", "source": "GND"}], "preferred_name": "Haidn-Tschalova, Veronika", "country_associated": "gw", "authorized_access_point": "Haidn-Tschalova, Veronika", "biographical_information": ["Mitglied der Deutschen Nationalmannschaft im Bogenschießen"]} 1 -2023-07-08 08:17:18.745727 2023-07-08 08:17:18.745732 b77f09f1-c9de-4a9b-bd89-0acf85a32fc1 {"md5": "57a480c18df61a028ac1ca140b477bbd", "pid": "142806943", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/142806943", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142806943", "source": "GND"}], "variant_name": ["Baumhauer, Michael P.", "Baumhauer, M. P.", "Baumhauer, Mich. Paul."], "date_of_birth": "1744", "date_of_death": "1811", "preferred_name": "Baumhauer, Michael Paul", "country_associated": "gw", "variant_access_point": ["Baumhauer, Michael P., 1744-1811", "Baumhauer, M. P., 1744-1811", "Baumhauer, Mich. Paul., 1744-1811"], "authorized_access_point": "Baumhauer, Michael Paul, 1744-1811"} 1 -2023-07-08 08:17:18.834825 2023-07-08 08:17:18.83483 33a95d87-39f3-47f9-80ff-1e52c6d2d64e {"md5": "beb75ad2731c72683fe0638fc58d04b3", "pid": "142837431", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/142837431", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142837431", "source": "GND"}], "variant_name": ["Schoene, Daniel", "Schöne, D."], "preferred_name": "Schöne, Daniel", "country_associated": "gw", "variant_access_point": ["Schoene, Daniel", "Schöne, D."], "authorized_access_point": "Schöne, Daniel", "biographical_information": ["tätig im Inst. für Sportwiss. und Sport an der Univ. Erlangen-Nürnberg"]} 1 -2023-07-08 08:17:18.913071 2023-07-08 08:17:18.913076 a5e675c6-d42e-4aa4-b03c-3f7e2f17d2cd {"md5": "ca2175be706346a789b3dbe949e2df54", "pid": "142874906", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/142874906", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142874906", "source": "GND"}], "variant_name": ["Morato, Antonio Jiménez"], "preferred_name": "Jiménez Morato, Antonio", "country_associated": "sp", "variant_access_point": ["Morato, Antonio Jiménez"], "authorized_access_point": "Jiménez Morato, Antonio"} 1 -2023-07-08 08:17:19.005174 2023-07-08 08:17:19.005183 7b6c7ccf-531d-499a-bde1-6030a770d459 {"md5": "88b395b49dca7a3bad9f3f9efe22017a", "pid": "142877174", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/142877174", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142877174", "source": "GND"}], "preferred_name": "Roussel, Daniel", "authorized_access_point": "Roussel, Daniel"} 1 -2023-07-08 08:17:19.083449 2023-07-08 08:17:19.083452 7781f1a6-ca01-4ac0-9154-bffee8ea9267 {"md5": "0ed1fb357d9f49dfc0958fb9e0e9115e", "pid": "142881430", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/142881430", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142881430", "source": "GND"}], "date_of_birth": "05.07.1947", "date_of_death": "06.08.2019", "preferred_name": "Pelizäus, Rainer", "country_associated": "gw", "authorized_access_point": "Pelizäus, Rainer, 1947-2019", "biographical_information": ["Geschäftsführender Gesellschafter der COMPPAS GmbH"]} 1 -2023-07-08 08:17:19.157232 2023-07-08 08:17:19.157236 9d481505-db8b-4797-8b89-3f28e4c93a1a {"md5": "af7275670090d7224b20be571cba7c41", "pid": "142894745", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/142894745", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142894745", "source": "GND"}], "date_of_birth": "1976", "preferred_name": "Mendes, Marcelo", "country_associated": "bl", "authorized_access_point": "Mendes, Marcelo, 1976-", "biographical_information": ["Brasilian. Journalist, Literaturwissenschaftler, Schriftsteller"]} 1 -2023-07-08 08:17:19.24842 2023-07-08 08:17:19.248424 2a2a8d6d-978a-4be9-a9fe-348ef64610b4 {"md5": "819916ec197073e08ecb7eccf496c1b9", "pid": "142899615", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/142899615", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142899615", "source": "GND"}], "date_of_birth": "1895", "date_of_death": "1945", "preferred_name": "Ruff, Konrad", "country_associated": "gw", "authorized_access_point": "Ruff, Konrad, 1895-1945", "biographical_information": ["Teilnahme am Zweiten Weltkrieg, seit 1945 vermisst"]} 1 -2023-07-08 08:17:19.356689 2023-07-08 08:17:19.356694 e9c67bce-4088-43a1-a25f-da81256be034 {"md5": "163377b505b38d6d45709d8b12d82fba", "pid": "142910406", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/142910406", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142910406", "source": "GND"}], "date_of_birth": "1974", "preferred_name": "Müller, Steve", "country_associated": "lu", "authorized_access_point": "Müller, Steve, 1974-", "biographical_information": ["Mitarbeiter bei RTL"]} 1 -2023-07-08 08:17:19.454436 2023-07-08 08:17:19.454446 44c1e15a-82cd-44cd-acca-e2397cbe82d8 {"md5": "aa3edcab65d61b4f294f3117b2adb8f0", "pid": "142915637", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/142915637", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142915637", "source": "GND"}], "variant_name": ["Polchow, Johannes David", "Pölchow, J. D."], "date_of_birth": "1732", "date_of_death": "1801", "preferred_name": "Polchow, Johann David", "country_associated": "gw", "variant_access_point": ["Polchow, Johannes David, 1732-1801", "Pölchow, J. D., 1732-1801"], "authorized_access_point": "Polchow, Johann David, 1732-1801", "biographical_information": ["Prediger zu Genin, Landschulreformer"]} 1 -2023-07-08 08:17:19.561286 2023-07-08 08:17:19.561291 0d9dc358-061b-4cea-9a9d-081ab80d2393 {"md5": "7f5adc652f8deb9802eee45f1e56eafb", "pid": "142944548", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/142944548", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142944548", "source": "GND"}], "preferred_name": "Wagner, Otto", "country_associated": "gw", "authorized_access_point": "Wagner, Otto", "biographical_information": ["Musikverlag Hofmeister, Musiklektor; DMA: Funktion: Mitarb."]} 1 -2023-07-08 08:17:19.667639 2023-07-08 08:17:19.667648 e3f3925c-7d9a-490a-bed7-4254d5ed1ad7 {"md5": "df66ea2fb1dbb96559c2749c9d8afa92", "pid": "142979597", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/142979597", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142979597", "source": "GND"}], "preferred_name": "Plass, Jonas", "country_associated": "gw", "authorized_access_point": "Plass, Jonas"} 1 -2023-07-08 08:17:19.766232 2023-07-08 08:17:19.766241 d0a7040f-324c-4e3e-886f-b521da690516 {"md5": "47bdf28819df0c5bdf17f0a87fa4eb51", "pid": "14299670X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/14299670X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14299670X", "source": "GND"}], "date_of_birth": "23.07.1965", "preferred_name": "Mínguez, Elvira", "authorized_access_point": "Mínguez, Elvira, 1965-"} 1 -2023-07-08 08:17:19.862281 2023-07-08 08:17:19.862286 6e662392-ad96-401d-ab3c-ac9c0c1a7d99 {"md5": "f691a76724570548a2b563903c2585d6", "pid": "143008900", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143008900", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143008900", "source": "GND"}], "preferred_name": "Mühler, E.", "country_associated": "gw", "authorized_access_point": "Mühler, E.", "biographical_information": ["Dt. Übersetzer und Librettist"]} 1 -2023-07-08 08:17:19.951548 2023-07-08 08:17:19.951556 666306f7-3be9-4a96-9ef0-e9b91a278bfe {"md5": "96b714e19246d55a355670c6065e6ce6", "pid": "143059424", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143059424", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143059424", "source": "GND"}], "variant_name": ["Paetzmann, Erika Rosemarie"], "date_of_birth": "21.05.1921", "date_of_death": "01.05.1977", "preferred_name": "Paetzmann, Erika", "country_associated": "gw", "variant_access_point": ["Paetzmann, Erika Rosemarie, 1921-1977"], "authorized_access_point": "Paetzmann, Erika, 1921-1977"} 1 -2023-07-08 08:17:20.046101 2023-07-08 08:17:20.046107 4f57fdd9-f911-4e67-877d-6a661948b146 {"md5": "15476718d8ed25f9920bd7a42600c381", "pid": "143063324", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143063324", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143063324", "source": "GND"}], "preferred_name": "Jones, Michael", "authorized_access_point": "Jones, Michael", "biographical_information": ["Tätig bei der Royal Mail Group"]} 1 -2023-07-08 08:17:20.132402 2023-07-08 08:17:20.132405 e88f3d88-23f6-44e5-bce8-3bbabf05577a {"md5": "c9873f0b4fa99c9947534917ab8dd626", "pid": "143068547", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143068547", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143068547", "source": "GND"}], "date_of_birth": "1976", "preferred_name": "Stenger, Matthias", "country_associated": "gw", "authorized_access_point": "Stenger, Matthias, 1976-", "biographical_information": ["Diss. Universität Tübingen, Philosophische Fakultät, Geschichte"]} 1 -2023-07-08 08:17:20.213086 2023-07-08 08:17:20.213091 94330426-e870-49b5-aca1-fa4db39e9e5d {"md5": "dfb666fe485572a1ae1efde6ab4261b8", "pid": "143107291", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143107291", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143107291", "source": "GND"}], "date_of_birth": "ca. 20. Jhd.", "preferred_name": "Wiesemes, Wolfgang", "country_associated": "gw", "authorized_access_point": "Wiesemes, Wolfgang, ca. 20. Jhd."} 1 -2023-07-08 08:17:20.409912 2023-07-08 08:17:20.409919 f671e92b-1c0d-462d-af28-1e90e73809df {"md5": "044686259722e4ed76a1b7e7fc367a80", "pid": "143138901", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143138901", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143138901", "source": "GND"}], "date_of_birth": "ca. 20./21. Jh.", "preferred_name": "Mayerhofer, Lisa", "country_associated": "gw", "authorized_access_point": "Mayerhofer, Lisa, ca. 20./21. Jh.", "biographical_information": ["Dt. Bildhauerin, lebt und arbeitet in Berlin"]} 1 -2023-07-08 08:17:20.506339 2023-07-08 08:17:20.506343 d8a91e3a-a2a2-45b9-a069-bdad9758d493 {"md5": "9dc9f8e2ab784c45362be5e7d1523f01", "pid": "143152807", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143152807", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143152807", "source": "GND"}], "date_of_birth": "1729", "preferred_name": "Menzele, Nicola", "country_associated": "it", "authorized_access_point": "Menzele, Nicola, 1729-"} 1 -2023-07-08 08:17:20.579887 2023-07-08 08:17:20.579892 39c3fc42-b0fc-4ab0-a2ea-69ff4db2b9b8 {"md5": "c9e27710f674e62d0a3233528cf56e90", "pid": "143164406", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143164406", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143164406", "source": "GND"}], "preferred_name": "Trapp, Robert", "country_associated": "xxu", "authorized_access_point": "Trapp, Robert"} 1 -2023-07-08 08:17:20.646234 2023-07-08 08:17:20.646237 8ada2fd8-0e6c-4316-9396-34cce27b8be3 {"md5": "d8bef215be4d30480ef453360b22eb5f", "pid": "143170899", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143170899", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143170899", "source": "GND"}], "variant_name": ["Kapp, S.", "Rückert, Sigrun"], "date_of_birth": "1976", "preferred_name": "Kapp, Sigrun", "country_associated": "gw", "variant_access_point": ["Kapp, S., 1976-", "Rückert, Sigrun, 1976-"], "authorized_access_point": "Kapp, Sigrun, 1976-"} 1 -2023-07-08 08:17:20.722869 2023-07-08 08:17:20.722877 881d2040-5a93-4831-9366-d6f09286a63c {"md5": "c7846bca7c4f87b0a9ff7c9d3e84286d", "pid": "143182846", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143182846", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143182846", "source": "GND"}], "variant_name": ["Conerding, Henricus Dietericus", "Conerding, Heinrich Dieterich", "Conerding, Henrich Dietrich", "Conerding, Henrich Dieterich", "Conerding, Henricus Dietrich", "Conerding, Henricus Dieterich", "Konerding, Heinrich Dietrich", "Konerding, Heinrich Dieterich", "Konerding, Henrich Dietrich", "Konerding, Henrich Dieterich", "Konerding, Henricus Dietrich", "Konerding, Henricus Dietericus", "Conerding, Heinrich Theodorus", "Conerding, Henricus Theodorus"], "preferred_name": "Conerding, Heinrich Dietrich", "country_associated": "gw", "variant_access_point": ["Conerding, Henricus Dietericus", "Conerding, Heinrich Dieterich", "Conerding, Henrich Dietrich", "Conerding, Henrich Dieterich", "Conerding, Henricus Dietrich", "Conerding, Henricus Dieterich", "Konerding, Heinrich Dietrich", "Konerding, Heinrich Dieterich", "Konerding, Henrich Dietrich", "Konerding, Henrich Dieterich", "Konerding, Henricus Dietrich", "Konerding, Henricus Dietericus", "Conerding, Heinrich Theodorus", "Conerding, Henricus Theodorus"], "authorized_access_point": "Conerding, Heinrich Dietrich", "biographical_information": ["Braunschw.-Lüneburg. Hofbeamter; Studium in Helmstedt"]} 1 -2023-07-08 08:17:20.817024 2023-07-08 08:17:20.817034 996d24b6-d654-40a1-9e4b-1ec8ed7f9935 {"md5": "a630d308b10c2487b07e2646cbfb3a8c", "pid": "143199897", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143199897", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143199897", "source": "GND"}], "date_of_birth": "1983", "preferred_name": "Gehl, Janina", "country_associated": "gw", "authorized_access_point": "Gehl, Janina, 1983-", "biographical_information": ["Diss. Universität Kiel, Medizinische Fakultät"]} 1 -2023-07-08 08:17:20.887947 2023-07-08 08:17:20.88795 69988dd8-aabf-4997-9983-f7b23a3bf776 {"md5": "9dff676dc549c929d98690f59aee6571", "pid": "14320212X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/14320212X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14320212X", "source": "GND"}], "preferred_name": "Reinwolle, Christian Immanuel", "authorized_access_point": "Reinwolle, Christian Immanuel", "biographical_information": ["Accise Bedienter in Berlin"]} 1 -2023-07-08 08:17:20.961269 2023-07-08 08:17:20.961275 7cbb66ba-b63a-4e54-89ba-df9e628fbcfb {"md5": "6267ea761999fe8555e065e453db8ae0", "pid": "143203576", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143203576", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143203576", "source": "GND"}], "date_of_birth": "1981", "preferred_name": "Heimburger, Robert", "country_associated": "gw", "authorized_access_point": "Heimburger, Robert, 1981-"} 1 -2023-07-08 08:17:21.059532 2023-07-08 08:17:21.059537 55c5e8d6-c2e4-4384-b67c-51de40a82616 {"md5": "05cdae32545da5379aca365f48768be0", "pid": "143204718", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143204718", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143204718", "source": "GND"}], "variant_name": ["Sedun, Yanina"], "date_of_birth": "1974", "preferred_name": "Martius, Yanina", "variant_access_point": ["Sedun, Yanina, 1974-"], "authorized_access_point": "Martius, Yanina, 1974-", "biographical_information": ["Diss. Universität Tübingen, Medizinische Fakultät"]} 1 -2023-07-08 08:17:21.142307 2023-07-08 08:17:21.142313 fe9d69e1-6fb9-463c-a292-c06a0d49dd42 {"md5": "4764f6b6cde8e72df0fc51d5267aa435", "pid": "143231499", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143231499", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143231499", "source": "GND"}], "preferred_name": "Edelmann, A.", "country_associated": "gw", "authorized_access_point": "Edelmann, A.", "biographical_information": ["Dt. Librettist"]} 1 -2023-07-08 08:17:21.225138 2023-07-08 08:17:21.225145 2baf4e29-cba0-4a19-8557-87764633e741 {"md5": "e4a2aba9ddb7c99529854a7e374e78cc", "pid": "14326589X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/14326589X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14326589X", "source": "GND"}], "date_of_birth": "26.12.1978", "preferred_name": "Zhou, Yiqun", "country_associated": "cc", "authorized_access_point": "Zhou, Yiqun, 1971-", "biographical_information": ["Ass. Prof., Department of East Asian Languages and Cultures, Stanford Univ."]} 1 -2023-07-08 08:17:21.338921 2023-07-08 08:17:21.33893 d2a31d12-3454-4afc-8f89-112c5a80df37 {"md5": "6b23176b2fe76e46fa24cbcfb6c29734", "pid": "14327810X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/14327810X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14327810X", "source": "GND"}], "preferred_name": "Beuing, Claudia", "authorized_access_point": "Beuing, Claudia", "biographical_information": ["Diss. Tierärztliche Hochschule Hannover (2010)"]} 1 -2023-07-08 08:17:21.427011 2023-07-08 08:17:21.427017 58804af2-98d2-495b-a5cb-2e3b51e919ae {"md5": "fe4ec355e1191328979375b5bd1f8818", "pid": "143326694", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143326694", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143326694", "source": "GND"}], "date_of_birth": "1985", "preferred_name": "Hollstein, Anne", "authorized_access_point": "Hollstein, Anne, 1985-", "biographical_information": ["Dresden, Techn. Univ., Fak. Forst-, Geo- u. Hydrowiss., Bachelorarbeit, 2010"]} 1 -2023-07-08 08:17:21.526575 2023-07-08 08:17:21.526581 265a265d-a46e-4b3c-99a4-7d6936803ac7 {"md5": "4a93575f9be34dabfeb809e75548b255", "pid": "143341847", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143341847", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143341847", "source": "GND"}], "variant_name": ["Kuchlein, Johannes", "Kuchlinus, Johannes", "Kuchlinus, Joannes", "Cuchlinus, Johannes", "Küchlin, Johannes"], "date_of_birth": "1546", "date_of_death": "1606", "preferred_name": "Küchlein, Johann", "country_associated": "gw", "variant_access_point": ["Kuchlein, Johannes, 1546-1606", "Kuchlinus, Johannes, 1546-1606", "Kuchlinus, Joannes, 1546-1606", "Cuchlinus, Johannes, 1546-1606", "Küchlin, Johannes, 1546-1606"], "authorized_access_point": "Küchlein, Johann, 1546-1606", "biographical_information": ["In der Wetterau geboren; erster Prediger der reformierten Kirche von Amsterdam nach der Reformation; 1578 Regent des Theologischen Kollegs in Leiden"]} 1 -2023-07-08 08:17:21.616785 2023-07-08 08:17:21.616794 6e3715fe-99c7-43ee-8d79-1c990d0c9f5a {"md5": "d91189f1973557e3be64e8a48cc84dbc", "pid": "14334739X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/14334739X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14334739X", "source": "GND"}], "variant_name": ["Homan, Carine"], "date_of_birth": "1981", "preferred_name": "Homan, Carine Dorianne", "country_associated": "ne", "variant_access_point": ["Homan, Carine, 1981-"], "authorized_access_point": "Homan, Carine Dorianne, 1981-", "biographical_information": ["Diss. Fachbereich Geowissenschaften / Geographie, Univ. Frankfurt a.M."]} 1 -2023-07-08 08:17:21.695236 2023-07-08 08:17:21.695242 f7b6de46-ada1-4ae2-944a-6ce489fdfd68 {"md5": "075ca3ef36d1efc2b49849ecd1e119ea", "pid": "143349791", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143349791", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143349791", "source": "GND"}], "variant_name": ["Jachontova, N. S.", "Jachontova, Natalija Sergeevna", "Jachontova, Natalʹja S."], "date_of_birth": "1955", "preferred_name": "Jachontova, Natalija S.", "country_associated": "ru", "variant_access_point": ["Jachontova, N. S., 1955-", "Jachontova, Natalija Sergeevna, 1955-", "Jachontova, Natalʹja S., 1955-"], "authorized_access_point": "Jachontova, Natalija S., 1955-"} 1 -2023-07-08 08:17:21.799702 2023-07-08 08:17:21.799712 d906818e-7167-4d19-8833-e8dbecad8da2 {"md5": "16da59510e75468af0ef2f654483aa15", "pid": "143350285", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143350285", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143350285", "source": "GND"}], "preferred_name": "Zarba, Charlotte", "country_associated": "gw", "authorized_access_point": "Zarba, Charlotte"} 1 -2023-07-08 08:17:22.091429 2023-07-08 08:17:22.091438 a15f1582-c7a8-4ccc-a832-b640aff08a56 {"md5": "080e8b0aafee0649e17d49221ec442a9", "pid": "143380583", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143380583", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143380583", "source": "GND"}], "variant_name": ["Bagirov, Fikret Ėjubovič", "Bagirov, Fikret", "Bagirov, F. Ė.", "Bagirov, F."], "preferred_name": "Bagirov, Fikret Ė.", "country_associated": "ru", "variant_access_point": ["Bagirov, Fikret Ėjubovič", "Bagirov, Fikret", "Bagirov, F. Ė.", "Bagirov, F."], "authorized_access_point": "Bagirov, Fikret Ė."} 1 -2023-07-08 08:17:22.178134 2023-07-08 08:17:22.17814 5326839c-3d10-4c94-b951-1bed92d7aa3c {"md5": "9f6b4c65c6911e301b8dffbb0dd6dafc", "pid": "143441450", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143441450", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143441450", "source": "GND"}], "variant_name": ["Wentzel, Johanna E.", "Hörnig, Johanna Eleonore", "Hörnig, Johanna E.", "Hörnig, ..."], "preferred_name": "Wentzel, Johanna Eleonore", "variant_access_point": ["Wentzel, Johanna E.", "Hörnig, Johanna Eleonore", "Hörnig, Johanna E.", "Hörnig, ..."], "authorized_access_point": "Wentzel, Johanna Eleonore"} 1 -2023-07-08 08:17:22.267131 2023-07-08 08:17:22.267134 39651fcb-8b68-4734-8c7f-aa050f7621de {"md5": "5b5f6fc1bdd18b7dbe028ce3e8ff2de4", "pid": "143443011", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143443011", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143443011", "source": "GND"}], "variant_name": ["Lindner, Paul"], "preferred_name": "Linder, Paul", "country_associated": "gw", "variant_access_point": ["Lindner, Paul"], "authorized_access_point": "Linder, Paul"} 1 -2023-07-08 08:17:22.430844 2023-07-08 08:17:22.430847 4803e9e7-09a4-4941-90e7-359009e89d9a {"md5": "a0763c9c4180a17819dde208625300dd", "pid": "143465147", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143465147", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143465147", "source": "GND"}], "variant_name": ["Franck, P."], "preferred_name": "Franck, Philip", "country_associated": "gw", "variant_access_point": ["Franck, P."], "authorized_access_point": "Franck, Philip", "biographical_information": ["Mitentwickler des Konzeptes der Lean Administration dür die Bereiche Dienstleistung und Verwaltung", "Gruppenleiter Consulting, Generali Deutschland Holding AG, Köln"]} 1 -2023-07-08 08:17:22.518645 2023-07-08 08:17:22.518652 83858226-ad7d-4114-8d0a-8b19921e5fae {"md5": "ae0aed3106638acdee571638565a12f5", "pid": "143505165", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143505165", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143505165", "source": "GND"}], "preferred_name": "Sharma, Sarika", "country_associated": "ii", "authorized_access_point": "Sharma, Sarika", "biographical_information": ["Diss. Universität Heidelberg, Fakultät für Biowissenschaften, Deutsches Krebsforschungszentrum (2010)"]} 1 -2023-07-08 08:17:22.607866 2023-07-08 08:17:22.607872 b64fd3db-1547-48e2-8c15-6644f9b0527e {"md5": "b7c380713fe7eb93aaf07378ffbfe48e", "pid": "143511327", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "qualifier": "Familie", "identifier": "http://d-nb.info/gnd/143511327", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143511327", "source": "GND"}], "preferred_name": "Keck, Familie", "authorized_access_point": "Keck, Familie", "biographical_information": ["Familie aus Südmähren"]} 1 -2023-07-08 08:17:22.812973 2023-07-08 08:17:22.812978 34247111-04ec-4866-9772-904a92ba1067 {"md5": "ef28b9ce62ba66ad8d48d0f6886ada0d", "pid": "143530879", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143530879", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143530879", "source": "GND"}], "date_of_birth": "1929", "preferred_name": "Bleinroth, Heinz-Christel", "country_associated": "gw", "authorized_access_point": "Bleinroth, Heinz-Christel, 1929-", "biographical_information": ["Heidelberg, Univ., Diss., 1962"]} 1 -2023-07-08 08:17:22.904432 2023-07-08 08:17:22.90444 6ae4190d-808c-40e9-926e-59073779b720 {"md5": "58a023ffd8eff1d346a90cb83613f73b", "pid": "143531468", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143531468", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143531468", "source": "GND"}], "date_of_birth": "10.07.1934", "date_of_death": "08.02.1967", "preferred_name": "Schütze, Hans Joachim", "country_associated": "gw", "authorized_access_point": "Schütze, Hans Joachim, 1934-1967"} 1 -2023-07-08 08:17:22.993983 2023-07-08 08:17:22.993992 39100a3f-523d-4d3d-a952-eee865b45e2f {"md5": "1c7b083fcb7e4bb0d9a70084a4b0611f", "pid": "143560794", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143560794", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143560794", "source": "GND"}], "variant_name": ["Voigt, Theodorus"], "date_of_birth": "09.02.1861", "preferred_name": "Voigt, Theodor", "variant_access_point": ["Voigt, Theodorus, 1861-"], "authorized_access_point": "Voigt, Theodor, 1861-"} 1 -2023-07-08 08:17:23.083908 2023-07-08 08:17:23.083918 29779d7b-e3ce-4b5f-baa1-1d11e97272b0 {"md5": "31dbdea6c2a4f72b8d4b2631285764c1", "pid": "143583883", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143583883", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143583883", "source": "GND"}], "date_of_birth": "1991", "preferred_name": "Jantscher, Jasmin", "country_associated": "au", "authorized_access_point": "Jantscher, Jasmin, 1991-"} 1 -2023-07-08 08:17:22.334224 2023-07-08 10:28:07.6436 c1d22a33-0dec-4b1e-9e36-cee1a1427d5a {"md5": "14c304cd2f415ddbe6fd2750bc15e58b", "pid": "143464000", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143464000", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143464000", "source": "GND"}], "date_of_birth": "02.12.1939", "preferred_name": "McNeely, Patricia G.", "authorized_access_point": "McNeely, Patricia G., 1939-", "biographical_information": ["lehrte am College of Journalism and Mass Communication at the University of South Carolina"]} 2 -2023-07-08 08:17:23.173309 2023-07-08 08:17:23.173318 0fcf77fb-13c2-47c5-ba50-cc89f1f99c0e {"md5": "40a5124955abd76e10a5935482950b00", "pid": "143606336", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143606336", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143606336", "source": "GND"}], "variant_name": ["Singer, Robert"], "preferred_name": "Singer, Robert Jisrael", "country_associated": "au", "variant_access_point": ["Singer, Robert"], "authorized_access_point": "Singer, Robert Jisrael"} 1 -2023-07-08 08:17:23.264728 2023-07-08 08:17:23.264733 f5e2ab1a-1329-4c70-a0ed-f65b4d00df9b {"md5": "38d275579c9b7d0d2d7f274015271b20", "pid": "143612972", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143612972", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143612972", "source": "GND"}], "preferred_name": "Mentgen, Anna Milena", "country_associated": "gw", "authorized_access_point": "Mentgen, Anna Milena"} 1 -2023-07-08 08:17:23.345577 2023-07-08 08:17:23.345583 65026e68-4bd2-4be2-9c45-17112c8d91c9 {"md5": "10ea638510153028eb495c7f19ddb234", "pid": "143626655", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143626655", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143626655", "source": "GND"}], "preferred_name": "Pritzel, Stefanie", "country_associated": "gw", "authorized_access_point": "Pritzel, Stefanie"} 1 -2023-07-08 08:17:23.432364 2023-07-08 08:17:23.432373 184bc7f8-0b79-4508-a10e-e7dcf88b2ad9 {"md5": "1519623ec04001a2a9ea5978e13e0f31", "pid": "143641174", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143641174", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143641174", "source": "GND"}], "date_of_birth": "1970", "preferred_name": "Kraft, Robert", "authorized_access_point": "Kraft, Robert, 1970-"} 1 -2023-07-08 08:17:23.526195 2023-07-08 08:17:23.526201 24f73a5f-ba40-4917-8ae9-0425dbb557e3 {"md5": "65942247ba9bd313717c1db5ac142037", "pid": "143661779", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143661779", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143661779", "source": "GND"}], "variant_name": ["Schindler, Fridericus Wilhelmus"], "preferred_name": "Schindler, Friedrich Wilhelm", "variant_access_point": ["Schindler, Fridericus Wilhelmus"], "authorized_access_point": "Schindler, Friedrich Wilhelm", "biographical_information": ["Phil. Stud."]} 1 -2023-07-08 08:17:23.629398 2023-07-08 08:17:23.629407 fd4b74f7-817a-4db4-bc23-2540e1e4dbac {"md5": "8049cf8bbc4d52f66aeab4a19ea09fd3", "pid": "143679783", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143679783", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143679783", "source": "GND"}], "variant_name": ["Leimberg, Ingeborg"], "date_of_birth": "02.12.1926", "date_of_death": "12.07.2018", "preferred_name": "Leimberg, Inge", "country_associated": "gw", "variant_access_point": ["Leimberg, Ingeborg, 1926-2018"], "authorized_access_point": "Leimberg, Inge, 1926-2018", "biographical_information": ["Dissertation 1961 (Universität Köln), Habilitation 1968 (Universität Bonn)"]} 1 -2023-07-08 08:17:23.711533 2023-07-08 08:17:23.711538 5f6fd992-3842-4374-bf78-2c044a751b3b {"md5": "9d4570ff50bc836eeaa63d26cdeb05d6", "pid": "14369877X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/14369877X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14369877X", "source": "GND"}], "preferred_name": "Schnell, Susanne", "authorized_access_point": "Schnell, Susanne", "biographical_information": ["Diss. Universität Freiburg im Breisgau"]} 1 -2023-07-08 08:17:23.811199 2023-07-08 08:17:23.811204 0978820a-57be-4243-b369-9e06c2f4aeb3 {"md5": "787a1bd813fe59dc90e7c9c14e1ad9d9", "pid": "143700545", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://d-nb.info/gnd/143700545", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143700545", "source": "GND"}], "date_of_birth": "1964", "preferred_name": "Jany, Bernhard", "country_associated": "au", "authorized_access_point": "Jany, Bernhard, 1964-", "biographical_information": ["Studium der Völkerkunde an der Universität Wien; 1993-2002 Leiter des Referates Öffentlichkeitsarbeit und 2003-2008 Leiter der Abteilung Öffentlichkeitsarbeit, Presse- und Medienservice im Generalsekretariat beim Österreichischen Roten Kreuz; auch tätig beim Mund- und Fußmalende Künstler Verlag Österreich in Wien"]} 1 -2023-07-08 08:17:23.908433 2023-07-08 08:17:23.90844 e02a50fc-db59-49d4-a122-7a03ded76d0a {"md5": "55cdc7584919f21aa46d31cc8707ae52", "pid": "143720244", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143720244", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143720244", "source": "GND"}], "preferred_name": "Whisnant, Rebecca", "authorized_access_point": "Whisnant, Rebecca"} 1 -2023-07-08 08:17:23.999604 2023-07-08 08:17:23.999612 9401bc3a-605b-4a80-b376-1acdad8a8343 {"md5": "efcaf15f998adf8631b276a025f71e99", "pid": "143739050", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143739050", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143739050", "source": "GND"}], "preferred_name": "Johag, Stefan", "country_associated": "gw", "authorized_access_point": "Johag, Stefan"} 1 -2023-07-08 08:17:24.1038 2023-07-08 08:17:24.10381 812cfea4-f34d-47f8-b39d-7894ddef960b {"md5": "75fb07ecdcef340306d4840aaea9ec47", "pid": "143747835", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143747835", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143747835", "source": "GND"}], "date_of_birth": "1981", "preferred_name": "Gutbrod, Raphael", "authorized_access_point": "Gutbrod, Raphael, 1981-", "biographical_information": ["Diss. Universität Tübingen, Mathematisch-Naturwissenschaftliche Fakultät, Chemie"]} 1 -2023-07-08 08:17:24.176569 2023-07-08 08:17:24.176576 4cbfc5b7-fee1-4c64-901a-cf6f626ba96d {"md5": "b5937e95ab06231c7784db2138e74c83", "pid": "143755498", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143755498", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143755498", "source": "GND"}], "date_of_birth": "25.08.1981", "preferred_name": "Roye, Anja", "authorized_access_point": "Roye, Anja, 1981-"} 1 -2023-07-08 08:17:24.266926 2023-07-08 08:17:24.266929 43a3b22d-48f2-4c4b-863c-b8a7fcf3c135 {"md5": "0afb4973c6e546d9a6f7f006373a96af", "pid": "14382399X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/14382399X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14382399X", "source": "GND"}], "date_of_birth": "1964", "preferred_name": "Jeske, Klaudia", "country_associated": "gw", "authorized_access_point": "Jeske, Klaudia, 1964-", "biographical_information": ["Freie Prosa-Autorin"]} 1 -2023-07-08 08:17:24.354032 2023-07-08 08:17:24.35404 daaca093-489f-4e0b-b7a9-edb272636090 {"md5": "379faa697d26fdb500286f2419a6f8b1", "pid": "143849107", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143849107", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143849107", "source": "GND"}], "variant_name": ["Rhein, Tonja"], "date_of_birth": "15.03.1975", "preferred_name": "Weber, Tonja", "variant_access_point": ["Rhein, Tonja, 1975-"], "authorized_access_point": "Weber, Tonja, 1975-"} 1 -2023-07-08 08:17:24.444742 2023-07-08 08:17:24.444747 2e8043a3-fcfc-465a-bbe7-2e9bfedc3e9f {"md5": "c458fd2ea9c7eae394878c6d0dadce59", "pid": "143873601", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143873601", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143873601", "source": "GND"}], "date_of_birth": "1910", "preferred_name": "Peter, Rudolf", "country_associated": "gw", "authorized_access_point": "Peter, Rudolf, 1910-", "biographical_information": ["Heidelberg, Univ., Diss., 1938"]} 1 -2023-07-08 08:17:24.547247 2023-07-08 08:17:24.547251 b04a7224-a805-48b5-878b-354f9091b853 {"md5": "dabd2ee7f14670fcb94e6f2669524d07", "pid": "143905856", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143905856", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143905856", "source": "GND"}], "variant_name": ["Schmidt, Dietrich Wilhelm", "Schmidius, Didericus Wilhelmus", "Schmidt, Diedericus Wilhelmus"], "preferred_name": "Schmid, Dietrich Wilhelm", "country_associated": "gw", "variant_access_point": ["Schmidt, Dietrich Wilhelm", "Schmidius, Didericus Wilhelmus", "Schmidt, Diedericus Wilhelmus"], "authorized_access_point": "Schmid, Dietrich Wilhelm", "biographical_information": ["Medizinstudent in Göttingen"]} 1 -2023-07-08 08:17:24.639747 2023-07-08 08:17:24.639753 55bc3b89-aec4-42ab-84e4-b3826301b8db {"md5": "5440d4d426b565ac742e082ae6eaad27", "pid": "143916629", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143916629", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143916629", "source": "GND"}], "variant_name": ["Ansorge, Sara"], "date_of_birth": "1574", "date_of_death": "10.04.1633", "preferred_name": "Bartsch, Sara", "variant_access_point": ["Ansorge, Sara, 1574-1633"], "authorized_access_point": "Bartsch, Sara, 1574-1633"} 1 -2023-07-08 08:17:24.713964 2023-07-08 08:17:24.713972 9ebc3769-ce89-4d38-8da6-2b904cc69116 {"md5": "42bb144de736b226621600fbd885012e", "pid": "143917889", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143917889", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143917889", "source": "GND"}], "variant_name": ["Wolf, Joannes Godofredus", "Wolf, Johannes Godofredus", "Wolfius, Joannes Godofredus", "Wolfius, Johannes Godofredus", "Wolfius, Johannes Gottofredus", "Wolff, Johann Gottfried"], "preferred_name": "Wolf, Johann Gottfried", "variant_access_point": ["Wolf, Joannes Godofredus", "Wolf, Johannes Godofredus", "Wolfius, Joannes Godofredus", "Wolfius, Johannes Godofredus", "Wolfius, Johannes Gottofredus", "Wolff, Johann Gottfried"], "authorized_access_point": "Wolf, Johann Gottfried", "biographical_information": ["Aus Eschenbach (Eschenbaco-Noricus]; Med. Respondent in Altdorf"]} 1 -2023-07-08 08:17:24.806762 2023-07-08 08:17:24.806771 86687c8e-3cc5-45df-97b0-d01e029e48e9 {"md5": "54324aa492e00b0cbda96837f783d17d", "pid": "143929496", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143929496", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143929496", "source": "GND"}], "variant_name": ["Sanders, Cornelis E."], "date_of_birth": "1921", "preferred_name": "Sanders, Cornelis", "country_associated": "ne", "variant_access_point": ["Sanders, Cornelis E., 1921-"], "parallel_access_point": ["Sanders, C., 1921-"], "authorized_access_point": "Sanders, Cornelis, 1921-"} 1 -2023-07-08 08:17:24.898444 2023-07-08 08:17:24.898452 dd6a7edc-1d53-4a57-b835-320c92129f10 {"md5": "6a5d91ef1349975c9cee36f30d5f7777", "pid": "143934821", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143934821", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143934821", "source": "GND"}], "date_of_birth": "1957", "preferred_name": "Voss, Ursula", "country_associated": "gw", "authorized_access_point": "Voss, Ursula, 1957-", "biographical_information": ["Promotion in Experimenteller Psychologie an der University of Southern Mississippi in Hattiesburg, MS, USA, Habilitation in Psychologie an der J. W. Goethe-Universität Frankfurt am Main"]} 1 -2023-07-08 08:17:24.982583 2023-07-08 08:17:24.982591 1a587e57-2fbd-40c3-acf2-da588fdd8105 {"md5": "deb13c839295d005806905d5c95e06c0", "pid": "143941844", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143941844", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143941844", "source": "GND"}], "date_of_birth": "1972", "preferred_name": "Stephens, John", "country_associated": "xxu", "authorized_access_point": "Stephens, John, 1972-"} 1 -2023-07-08 08:17:25.076466 2023-07-08 08:17:25.07647 e073a9ea-11a6-4e82-8133-41a2747d80f9 {"md5": "88fcd0e298f1ee234612596be5c0dff7", "pid": "143985418", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143985418", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143985418", "source": "GND"}], "preferred_name": "Porras, Eloy", "country_associated": "ve", "authorized_access_point": "Porras, Eloy", "biographical_information": ["Venezolan. Journalist; lehrt seit 1970 Journalismus an der Univ. Católica Andrés Bello"]} 1 -2023-07-08 08:17:25.175819 2023-07-08 08:17:25.175823 5deb45b1-bb9c-4b53-a172-b39a49bccc0f {"md5": "0fb4fb80ff8c44b8a5520c9087a5a004", "pid": "144017229", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/144017229", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/144017229", "source": "GND"}], "preferred_name": "Kruk, Liedeke", "country_associated": "ne", "authorized_access_point": "Kruk, Liedeke"} 1 -2023-07-08 08:17:25.256378 2023-07-08 08:17:25.256383 e5ee9e84-7729-4df0-9e62-a5e4ab606a08 {"md5": "03425c365aee82fb30673aa0c8fe5fd8", "pid": "144040182", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/144040182", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/144040182", "source": "GND"}], "date_of_birth": "ca. 20. Jh.", "preferred_name": "Arkapaw, Adam", "country_associated": "at", "authorized_access_point": "Arkapaw, Adam, ca. 20. Jh."} 1 -2023-07-08 08:17:25.38719 2023-07-08 08:17:25.387194 dae9444d-3968-40d9-9750-3b1d54f02db8 {"md5": "6bf7e7820a94991509f48737c888c50b", "pid": "158403487", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/158403487", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/158403487", "source": "GND"}], "variant_name": ["Karbunes, Nikos", "Karbunēs, N."], "date_of_birth": "1880", "date_of_death": "1947", "preferred_name": "Karbunēs, Nikos", "country_associated": "gr", "variant_access_point": ["Karbunes, Nikos, 1880-1947", "Karbunēs, N., 1880-1947"], "authorized_access_point": "Karbunēs, Nikos, 1880-1947", "biographical_information": ["Griech. Prosaist und Übersetzer"]} 1 -2023-07-08 08:17:25.482514 2023-07-08 08:17:25.482523 f6177e60-8f00-480c-ae00-3ee5a0896d60 {"md5": "54fdcb7ff5c6a7b819140b9bf05646d8", "pid": "170056937", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/170056937", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/170056937", "source": "GND"}], "variant_name": ["DeRosa, Dean Arthur", "Rosa, Dean Arthur de", "DeRosa, D. A."], "preferred_name": "DeRosa, Dean A.", "variant_access_point": ["DeRosa, Dean Arthur", "Rosa, Dean Arthur de", "DeRosa, D. A."], "authorized_access_point": "DeRosa, Dean A.", "biographical_information": ["Tätig bei der ADR Internat. Ltd., Falls Church, Virginia, USA; Tätig in der Asian Development Bank; Tätig beim IMF, Research Dep.; Tätig in der Trade and Macroeconomics Div., Internat. Food Policy Research Inst., Washington, DC"]} 1 -2023-07-08 08:17:25.677658 2023-07-08 08:17:25.677666 8438e7dd-5f45-45a4-8811-b404b9dc1d50 {"md5": "cb7c6c552a2aa1307cd11c944811ee5b", "pid": "17017252X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/17017252X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/17017252X", "source": "GND"}], "variant_name": ["Perry, M."], "date_of_birth": "1956", "preferred_name": "Perry, Martin", "variant_access_point": ["Perry, M., 1956-"], "authorized_access_point": "Perry, Martin, 1956-", "biographical_information": ["Dep. of Management and Enterprise Development, College of Business, Massey Univ., Wellington", "Dep. of Geography, Nat. Univ. of Singapore", "Dep. of Labour, Wellington", "New Zealand Centre for SME Research, Massey Univ."]} 1 -2023-07-08 08:17:25.778711 2023-07-08 08:17:25.778716 97400643-75db-45d5-b704-0808726ba988 {"md5": "3bc7ee9721484097137f8fb94a387270", "pid": "170229955", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/170229955", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/170229955", "source": "GND"}], "preferred_name": "Bienkowski, Mishka", "authorized_access_point": "Bienkowski, Mishka", "biographical_information": ["Research fellow in the Centre for the Study of Public Policy at the Univ. of Strathclyde (1986)"]} 1 -2023-07-08 08:17:25.873531 2023-07-08 08:17:25.873535 647a520a-7148-4672-a5b5-16df5e812931 {"md5": "922655571f226292f3647fcc268a654c", "pid": "170238873", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/170238873", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/170238873", "source": "GND"}], "variant_name": ["Ricketts, M.", "Ricketts, M. J.", "Ricketts, Martin J."], "date_of_birth": "1948", "preferred_name": "Ricketts, Martin", "country_associated": "xxk", "variant_access_point": ["Ricketts, M., 1948-", "Ricketts, M. J., 1948-", "Ricketts, Martin J., 1948-"], "parallel_access_point": ["Ricketts, Martin J., 1948-"], "authorized_access_point": "Ricketts, Martin, 1948-", "biographical_information": ["Dean, School of Humanities, Univ. of Buckingham, UK", "Professor of Economic Organisation at the University of Buckingham; graduated from the Univ. of Newcastle Upon Tyne (1970) and has a DPhil from the Univ. of York (1980)."]} 1 -2023-07-08 08:17:30.347928 2023-07-08 08:17:30.347933 c51a0df2-d757-41bf-8798-70c94c5886c1 {"md5": "7e7c0d433ec57ada1175f2aa00d65e80", "pid": "172712866", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/172712866", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172712866", "source": "GND"}], "date_of_birth": "1965", "preferred_name": "Klupsch, Martin", "authorized_access_point": "Klupsch, Martin, 1965-"} 1 -2023-07-08 08:17:25.57766 2023-07-08 10:31:35.938607 fb00143b-155f-4e5d-84d4-c6ee2d41fe19 {"md5": "bc9113b2b1289696d394cd8272a807b5", "pid": "17014514X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/17014514X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/17014514X", "source": "GND"}], "variant_name": ["Schipper, Leon J.", "Schipper, Leon Jay", "Schipper, Lee", "Schipper, L. J.", "Schipper, L."], "date_of_birth": "07.04.1947", "date_of_death": "16.08.2011", "preferred_name": "Schipper, Lee J.", "variant_access_point": ["Schipper, Leon J., 1947-2011", "Schipper, Leon Jay, 1947-2011", "Schipper, Lee, 1947-2011", "Schipper, L. J., 1947-2011", "Schipper, L., 1947-2011"], "authorized_access_point": "Schipper, Lee J., 1947-2011", "biographical_information": ["Tätig an der Global Metropolitan Studies, Univ. of California, Berkeley, CA, USA; tätig am Lawrence Berkeley Laboratory, Univ. of California, Berkeley, CA, USA; tätig für VVS Teknika Förening in Stockholm, Sweden; tätig für die Internat. Energy Agency, Paris"]} 2 -2023-07-08 08:17:26.062022 2023-07-08 08:17:26.062031 f94e3c93-8864-4620-ac69-41c535af4eea {"md5": "154c3626ad70276530fff79aaed8ce36", "pid": "170299597", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/170299597", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/170299597", "source": "GND"}], "preferred_name": "Apicella, Vincenzo", "authorized_access_point": "Apicella, Vincenzo", "biographical_information": ["SVIMEZ, Assoc. for Industrial Development in Southern Italy (1996)"]} 1 -2023-07-08 08:17:26.156949 2023-07-08 08:17:26.156956 0bfbf8d1-3475-4c0c-b775-8f60c94b6756 {"md5": "d736464bdbd8a8ad398ffa042ecafc56", "pid": "170311295", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/170311295", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/170311295", "source": "GND"}], "preferred_name": "Robertson, Gilbert C.", "authorized_access_point": "Robertson, Gilbert C.", "biographical_information": ["Lecturer in legal studies, School of Management, Deakin Univ. (1987)"]} 1 -2023-07-08 08:17:26.257437 2023-07-08 08:17:26.257441 e000094e-e362-47af-8de5-55a3754036c9 {"md5": "11e42b640f68b4a983db33e8afe38d18", "pid": "170322122", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/170322122", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/170322122", "source": "GND"}], "preferred_name": "Bencze, Lajos", "authorized_access_point": "Bencze, Lajos", "biographical_information": ["prof. ing., CSc. (1985)"]} 1 -2023-07-08 08:17:26.346416 2023-07-08 08:17:26.346422 5af3bf5b-7106-44be-8a2c-d0bb4b7e118e {"md5": "058a567d50d5a8a6588ec5fe2d1ca648", "pid": "170395839", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/170395839", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/170395839", "source": "GND"}], "preferred_name": "Saunier, Richard E.", "authorized_access_point": "Saunier, Richard E.", "biographical_information": ["Environmental specialist for Latin America region (1981)"]} 1 -2023-07-08 08:17:26.44002 2023-07-08 08:17:26.440029 b99eb2f7-0841-4f91-8afd-72d6f52cd4cf {"md5": "e9e44699b4b32865e5b49e27c5029071", "pid": "170402584", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/170402584", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/170402584", "source": "GND"}], "preferred_name": "Kelly, J. E.", "authorized_access_point": "Kelly, J. E.", "biographical_information": ["Chief examiner of the Chartered Inst. of Bankers in Practice of Banking 1 (1987)"]} 1 -2023-07-08 08:17:26.538108 2023-07-08 08:17:26.538112 9bad8931-8d8d-4a3a-a974-c276aea7ed0c {"md5": "3d3801d0be307b1b3444e8f001de020d", "pid": "170410633", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/170410633", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/170410633", "source": "GND"}], "variant_name": ["Kraevska, Anna"], "preferred_name": "Krajewska, Anna", "country_associated": "pl", "variant_access_point": ["Kraevska, Anna"], "authorized_access_point": "Krajewska, Anna"} 1 -2023-07-08 08:17:26.62101 2023-07-08 08:17:26.621014 8df77bcd-a972-4d5c-be98-5e3ca7197474 {"md5": "f16156b420a64464ed35bff49992094a", "pid": "170454428", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/170454428", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/170454428", "source": "GND"}], "variant_name": ["Taylor, Jon G."], "preferred_name": "Taylor, Jon Gregory", "variant_access_point": ["Taylor, Jon G."], "authorized_access_point": "Taylor, Jon Gregory", "biographical_information": ["Chicago Corporation (1985); Commonwealth Funds Management (1998)"]} 1 -2023-07-08 08:17:26.700991 2023-07-08 08:17:26.700994 5156126a-bcb4-4b49-a3c7-f835a01a9ea2 {"md5": "a24307cae64d2e3c72ea081f18c9a406", "pid": "170502708", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/170502708", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/170502708", "source": "GND"}], "preferred_name": "Aggefors, Kerstin", "authorized_access_point": "Aggefors, Kerstin", "biographical_information": ["Statens Industriverk (1987)"]} 1 -2023-07-08 08:17:26.772188 2023-07-08 08:17:26.772194 0fbff605-9a59-4532-8a84-5313b76f6a07 {"md5": "b85123ae11126fa9983796952cd94b20", "pid": "170678253", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/170678253", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/170678253", "source": "GND"}], "variant_name": ["Stojanov, V."], "preferred_name": "Stojanov, Veselin", "country_associated": "bu", "variant_access_point": ["Stojanov, V."], "authorized_access_point": "Stojanov, Veselin"} 1 -2023-07-08 08:17:26.84432 2023-07-08 08:17:26.844325 f2547d49-8a88-4f6f-a71a-ff8a0591ed7f {"md5": "2a1acc7a72421fb1485c476ce1c8edfa", "pid": "170725383", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/170725383", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/170725383", "source": "GND"}], "variant_name": ["Chenoweth, Florence Alletta"], "date_of_birth": "1945", "preferred_name": "Chenoweth, Florence A.", "country_associated": "lb", "variant_access_point": ["Chenoweth, Florence Alletta, 1945-"], "authorized_access_point": "Chenoweth, Florence A., 1945-"} 1 -2023-07-08 08:17:26.912637 2023-07-08 08:17:26.912643 6c4aa7bc-70d0-4d40-87c6-60afc7f5be3a {"md5": "7ac58861822b62def3f7c1a067d3a1e4", "pid": "170813010", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/170813010", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/170813010", "source": "GND"}], "date_of_birth": "1943", "preferred_name": "Ramahatra, Olivier", "authorized_access_point": "Ramahatra, Olivier, 1943-", "biographical_information": ["Dipl.-Ing., Univ. d'Antananarivo (1989)"]} 1 -2023-07-08 08:17:26.982106 2023-07-08 08:17:26.982111 8ff2629d-b039-4256-be47-49d2d8a5dcb4 {"md5": "92b7823d0a88bc242cbc4a0945f9d174", "pid": "170877965", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/170877965", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/170877965", "source": "GND"}], "variant_name": ["Oliveira, Antônio Moisés de"], "preferred_name": "Oliveira, Antônio M. de", "variant_access_point": ["Oliveira, Antônio Moisés de"], "authorized_access_point": "Oliveira, Antônio M. de", "biographical_information": ["Eng.-Agr., Viçosa, MG, Brasil (1989)"]} 1 -2023-07-08 08:17:27.051162 2023-07-08 08:17:27.051165 b8c182ec-d01d-4d97-9fd9-d7a85b209633 {"md5": "0e9ff836988c8b0cef1008b4fffffc8c", "pid": "170952320", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/170952320", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/170952320", "source": "GND"}], "preferred_name": "Rommel, Wolrad", "authorized_access_point": "Rommel, Wolrad", "biographical_information": ["Dr., wiss. Inst. für Kommunikationsdienste GmbH (1992)"]} 1 -2023-07-08 08:17:27.265436 2023-07-08 08:17:27.26544 9ecbbc12-9094-45e0-bdbc-2ddc1f7dc2a6 {"md5": "eb1a01cdf4674bbc9c7985db67917c6f", "pid": "171082079", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/171082079", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/171082079", "source": "GND"}], "preferred_name": "Wada, Yoshiyuki", "authorized_access_point": "Wada, Yoshiyuki", "biographical_information": ["Faculty of Economics, Osaka Univ. (1991)"]} 1 -2023-07-08 08:17:27.354269 2023-07-08 08:17:27.354278 8649d0c7-1a4a-4480-ab03-e8bfc2e0a008 {"md5": "1fff4c77d99b7e66d220072a25777370", "pid": "171217772", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/171217772", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/171217772", "source": "GND"}], "variant_name": ["Zausaev, Vadim Konstantinovič", "Zausaev, V. K."], "preferred_name": "Zausaev, Vadim K.", "variant_access_point": ["Zausaev, Vadim Konstantinovič", "Zausaev, V. K."], "authorized_access_point": "Zausaev, Vadim K.", "biographical_information": ["Tätig am Institute of Market Research, Khabarovsk, Russia (director)"]} 1 -2023-07-08 08:17:27.444075 2023-07-08 08:17:27.444082 ee84228b-d5a5-4873-bbd7-ad3929a6ac0c {"md5": "89dc48260e5b90d36beeb25dbc2f7391", "pid": "171283899", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/171283899", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/171283899", "source": "GND"}], "variant_name": ["Chowdhury, Rukhsana Akhter", "Akhter Chowdhury, Rukhsana"], "preferred_name": "Chowdhury, Rukhsana A.", "variant_access_point": ["Chowdhury, Rukhsana Akhter", "Akhter Chowdhury, Rukhsana"], "authorized_access_point": "Chowdhury, Rukhsana A.", "biographical_information": ["Ramgarh Degree College, Khagrachari (1991)"]} 1 -2023-07-08 08:17:27.544228 2023-07-08 08:17:27.544233 dc1447ba-bb25-4e72-8166-2892a20fdb07 {"md5": "eeebae05d9d56cb53f063769dff5da8f", "pid": "171302605", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/171302605", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/171302605", "source": "GND"}], "variant_name": ["Xinghe Wang", "Xinghe, Wang"], "preferred_name": "Wang, Xinghe", "variant_access_point": ["Xinghe Wang", "Xinghe, Wang"], "authorized_access_point": "Wang, Xinghe", "biographical_information": ["Univ. of Missouri, Columbia, MO, USA (1994)"]} 1 -2023-07-08 08:17:27.633476 2023-07-08 08:17:27.63348 52cf6c40-a770-4d81-9f24-5ace226955ff {"md5": "3baf410ca441b9c2ebf30f67cfd9aaa5", "pid": "171346424", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/171346424", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/171346424", "source": "GND"}], "preferred_name": "Sigl, Eduard", "authorized_access_point": "Sigl, Eduard", "biographical_information": ["Dr., Inst. für Organistions- und Wirtschaftspsychologie, Univ. München (1994)"]} 1 -2023-07-08 08:17:27.712834 2023-07-08 08:17:27.712839 6dc84181-d1cf-4b54-aaa7-52034ff6c14a {"md5": "3ae4652be2a007987f2535c147fadc3f", "pid": "171367421", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/171367421", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/171367421", "source": "GND"}], "preferred_name": "O'Connell, Maurice", "country_associated": "ie", "authorized_access_point": "O'Connell, Maurice", "biographical_information": ["Central Bank of Ireland (1994)"]} 1 -2023-07-08 08:17:27.800715 2023-07-08 08:17:27.800724 070cab89-34c3-441b-9b55-f6ddb5286850 {"md5": "c2135cc769e4ed63395fbb2522059bb7", "pid": "171541545", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/171541545", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/171541545", "source": "GND"}], "variant_name": ["Encarnación, Omar Guillermo"], "date_of_birth": "1962", "preferred_name": "Encarnación, Omar G.", "country_associated": "xxu", "variant_access_point": ["Encarnación, Omar Guillermo, 1962-"], "authorized_access_point": "Encarnación, Omar G., 1962-", "biographical_information": ["Assistent Professor am Sarah Lawrence College (1996)"]} 1 -2023-07-08 08:17:27.890974 2023-07-08 08:17:27.890979 985eeef9-96a3-4398-89b4-8925b61c6cc9 {"md5": "5da1bbe64237593e5ddbbdb99faa8b0a", "pid": "171555430", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/171555430", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/171555430", "source": "GND"}], "preferred_name": "Cherry, Steven", "authorized_access_point": "Cherry, Steven", "biographical_information": ["Tätig an der Univ. of East Anglia, Norwich, UK (1997)"]} 1 -2023-07-08 08:17:27.971669 2023-07-08 08:17:27.971678 1209809b-d40c-4ab5-9a67-f5fbfa23969a {"md5": "426d04bc8080eb32f1feafc6c18055f1", "pid": "171629353", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/171629353", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/171629353", "source": "GND"}], "preferred_name": "Thum, Oliver", "country_associated": "ru", "authorized_access_point": "Thum, Oliver"} 1 -2023-07-08 08:17:28.062811 2023-07-08 08:17:28.062818 69a28e8e-2865-4530-a119-769fde57b27a {"md5": "864cf09effef91a03e58063d89e27f3b", "pid": "171634667", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/171634667", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/171634667", "source": "GND"}], "variant_name": ["Abellán, Aurelio Cebrián", "Cebrián-Abellán, Aurelio"], "preferred_name": "Cebrián Abellán, Aurelio", "variant_access_point": ["Abellán, Aurelio Cebrián", "Cebrián-Abellán, Aurelio"], "authorized_access_point": "Cebrián Abellán, Aurelio"} 1 -2023-07-08 08:17:28.150304 2023-07-08 08:17:28.150307 3d77b35c-2805-4e2a-9c21-5924c6be635b {"md5": "6eeaa9d4e926f4483608bb680c2cba29", "pid": "171707788", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/171707788", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/171707788", "source": "GND"}], "preferred_name": "Houtman, Irene", "authorized_access_point": "Houtman, Irene", "biographical_information": ["NIA TNO, Amsterdam (1997)"]} 1 -2023-07-08 08:17:28.252426 2023-07-08 08:17:28.252431 adfa7bec-eace-4049-87af-b771931c269c {"md5": "6338c59901eb6ac26a7e573b9398e268", "pid": "171735099", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/171735099", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/171735099", "source": "GND"}], "preferred_name": "Hottinger, Olaf", "authorized_access_point": "Hottinger, Olaf", "biographical_information": ["Univ. Heidelberg (1998)"]} 1 -2023-07-08 08:17:28.352028 2023-07-08 08:17:28.352036 b36f61f4-7f5f-4582-8688-07d0259e788a {"md5": "37e4852378fd1de76440930f7b98ca31", "pid": "171781082", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/171781082", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/171781082", "source": "GND"}], "variant_name": ["Bongenaar, A."], "preferred_name": "Bongenaar, Arne", "variant_access_point": ["Bongenaar, A."], "authorized_access_point": "Bongenaar, Arne", "biographical_information": ["Schiphol Internat. (1998)"]} 1 -2023-07-08 08:17:28.459901 2023-07-08 08:17:28.459907 c103d9f5-3aaa-4406-8d90-2f096ec7c097 {"md5": "364f85a9c0464dd6ee1bf6c4cc01b3bb", "pid": "171827872", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/171827872", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/171827872", "source": "GND"}], "variant_name": ["Kornish, Laura Joyce"], "preferred_name": "Kornish, Laura J.", "variant_access_point": ["Kornish, Laura Joyce"], "authorized_access_point": "Kornish, Laura J.", "biographical_information": ["Tätig an d. The Fuqua School of Business, Duke Univ., Durham, NC; Leeds School of Business, Univ. of Colorade, Boulder"]} 1 -2023-07-08 08:17:28.561462 2023-07-08 08:17:28.561468 407f7f8b-1975-474b-8bfd-3f5dc13aac10 {"md5": "6d85779ee2d83921b917290b783c3d29", "pid": "17187935X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/17187935X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/17187935X", "source": "GND"}], "variant_name": ["Čebotareva, N.", "Chebotareva, N.", "Chebotareva, N. A."], "preferred_name": "Čebotareva, N. A.", "variant_access_point": ["Čebotareva, N.", "Chebotareva, N.", "Chebotareva, N. A."], "authorized_access_point": "Čebotareva, N. A.", "biographical_information": ["Economic Expert Group of the Russian Federation Ministry of Finance"]} 1 -2023-07-08 08:17:28.645242 2023-07-08 08:17:28.645247 7a16252e-c61b-4948-a5fc-86fd1f428970 {"md5": "07e84eec384183d8445986c8420dafd8", "pid": "171899660", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/171899660", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/171899660", "source": "GND"}], "variant_name": ["Durieu, J."], "preferred_name": "Durieu, Jacques", "variant_access_point": ["Durieu, J."], "authorized_access_point": "Durieu, Jacques", "biographical_information": ["Tätig an der Univ. of Saint-Etienne, Saint-Etienne, France ; Univ. of Grenoble 2"]} 1 -2023-07-08 08:17:28.736197 2023-07-08 08:17:28.736201 9950e9bc-05b5-4e82-b350-a9211fed7e14 {"md5": "127a99bba5ba6563665643b509ef083f", "pid": "17205821X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/17205821X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/17205821X", "source": "GND"}], "variant_name": ["Lanneau Eaker, Helen"], "date_of_birth": "1922", "preferred_name": "Eaker, Helen L.", "variant_access_point": ["Lanneau Eaker, Helen, 1922-"], "authorized_access_point": "Eaker, Helen L., 1922-"} 1 -2023-07-08 08:17:29.046924 2023-07-08 08:17:29.046929 833ab4b6-5aae-4466-90b0-cac6d9baa025 {"md5": "a54e3ff07d3975bf939290874a92256f", "pid": "172206790", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/172206790", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172206790", "source": "GND"}], "variant_name": ["Kim Il-Su", "Il-su, Kim", "김, 일수"], "date_of_birth": "26.08.1946", "preferred_name": "Kim, Il-Su", "country_associated": "ko", "variant_access_point": ["Kim Il-Su, 1946-", "Il-su, Kim, 1946-", "김, 일수, 1946-"], "parallel_access_point": ["김일수, 1946-"], "authorized_access_point": "Kim, Il-Su, 1946-", "biographical_information": ["Diss. jur. München"]} 1 -2023-07-08 08:17:29.149152 2023-07-08 08:17:29.149156 c162825c-b451-498b-a815-775e846bb7d2 {"md5": "ba15eea079240bfc60e574ade1dbf025", "pid": "172224314", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/172224314", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172224314", "source": "GND"}], "date_of_birth": "1960", "preferred_name": "Lewen, Bernd", "authorized_access_point": "Lewen, Bernd, 1960-"} 1 -2023-07-08 08:17:28.821152 2023-07-08 10:29:26.25389 cbaf385a-e65b-45d7-871f-03409c8497c4 {"md5": "a8a8aa5988410d86196741d904162d32", "pid": "172140013", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/172140013", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172140013", "source": "GND"}], "date_of_birth": "1936", "preferred_name": "Hocks, Richard A.", "authorized_access_point": "Hocks, Richard A., 1936-"} 2 -2023-07-08 08:17:29.336272 2023-07-08 08:17:29.336281 2288b037-16f2-4e91-9e30-629d7b61c4f6 {"md5": "d4e74af3159c6884685549f9301a0eae", "pid": "172263840", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/172263840", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172263840", "source": "GND"}], "variant_name": ["Morgan, Karl Ziegler", "Ziegler Morgan, Karl", "Morgan, K.Z."], "date_of_birth": "1908", "date_of_death": "1999", "preferred_name": "Morgan, Karl Z.", "country_associated": "xxu", "variant_access_point": ["Morgan, Karl Ziegler, 1908-1999", "Ziegler Morgan, Karl, 1908-1999", "Morgan, K.Z., 1908-1999"], "authorized_access_point": "Morgan, Karl Z., 1908-1999", "biographical_information": ["Physiker", "Vollständiger Vorname: Karl Ziegler"]} 1 -2023-07-08 08:17:29.42011 2023-07-08 08:17:29.420119 9e40474d-516e-4061-ab4f-e22947aadea8 {"md5": "ca6bc87d5ac3ff38c3d3391d8b496039", "pid": "172325749", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/172325749", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172325749", "source": "GND"}], "variant_name": ["Rath, Ingo"], "date_of_birth": "1964", "preferred_name": "Rath, Ingo W.", "variant_access_point": ["Rath, Ingo, 1964-"], "authorized_access_point": "Rath, Ingo W., 1964-", "biographical_information": ["österr. Philosoph", "Philosoph"]} 1 -2023-07-08 08:17:29.510957 2023-07-08 08:17:29.510963 61725cf7-6385-4f77-9542-f26bfd3c31f0 {"md5": "50d86560db357d7f474d20b333fd6f52", "pid": "172335450", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/172335450", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172335450", "source": "GND"}], "variant_name": ["Brosell, Helmut", "Brosell, Helmut Rohlfing-", "Rohlfing, Helmut"], "date_of_birth": "1946", "preferred_name": "Rohlfing-Brosell, Helmut", "variant_access_point": ["Brosell, Helmut, 1946-", "Brosell, Helmut Rohlfing-, 1946-", "Rohlfing, Helmut, 1946-"], "authorized_access_point": "Rohlfing-Brosell, Helmut, 1946-", "biographical_information": ["Informatiker"]} 1 -2023-07-08 08:17:29.777216 2023-07-08 08:17:29.777222 a0b39fef-5602-485e-be15-c92393c1bb66 {"md5": "11795d3c37aac0d8d1ea477c3f0577e8", "pid": "17248491X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/17248491X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/17248491X", "source": "GND"}], "variant_name": ["Galan, L. de", "De Galan, Leo"], "date_of_birth": "1937", "preferred_name": "Galan, Leo de", "country_associated": "ne", "variant_access_point": ["Galan, L. de, 1937-", "De Galan, Leo, 1937-"], "authorized_access_point": "Galan, Leo de, 1937-"} 1 -2023-07-08 08:17:29.878645 2023-07-08 08:17:29.878651 fcbd8ac6-abb4-46a7-babc-4dfa5e1236f9 {"md5": "077972c7a033ed97873c62fdc4338e0a", "pid": "172560462", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/172560462", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172560462", "source": "GND"}], "variant_name": ["Hütter, Reinhard L."], "date_of_birth": "1958", "preferred_name": "Hütter, Reinhard", "country_associated": "xxu", "variant_access_point": ["Hütter, Reinhard L., 1958-"], "authorized_access_point": "Hütter, Reinhard, 1958-", "biographical_information": ["Ev. Theologe"]} 1 -2023-07-08 08:17:29.977621 2023-07-08 08:17:29.977627 a366eaae-afe2-44f2-932e-063355d6bc62 {"md5": "e4e8deb3ea8d7b02b673691d24a7cfde", "pid": "172650003", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/172650003", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172650003", "source": "GND"}], "variant_name": ["Richterich, Lukas E."], "date_of_birth": "1956", "preferred_name": "Richterich, Lukas", "country_associated": "sz", "variant_access_point": ["Richterich, Lukas E., 1956-"], "authorized_access_point": "Richterich, Lukas, 1956-"} 1 -2023-07-08 08:17:30.079501 2023-07-08 08:17:30.079507 a18de5b5-d777-4a14-b932-f298510d9c74 {"md5": "a189547794f07dfddf9af9b7f23073ec", "pid": "172664128", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/172664128", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172664128", "source": "GND"}], "date_of_birth": "1961", "preferred_name": "Feldmann, Thomas", "authorized_access_point": "Feldmann, Thomas, 1961-"} 1 -2023-07-08 08:17:30.171158 2023-07-08 08:17:30.171168 08869372-e015-4230-b52b-19248e09cbb5 {"md5": "ef6b33e09682a0d0af1a9d699d6b1029", "pid": "172677335", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/172677335", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172677335", "source": "GND"}], "variant_name": ["Felten, Ellen S.-", "Schmitz, Ellen"], "date_of_birth": "1960", "preferred_name": "Schmitz-Felten, Ellen", "variant_access_point": ["Felten, Ellen S.-, 1960-", "Schmitz, Ellen, 1960-"], "authorized_access_point": "Schmitz-Felten, Ellen, 1960-"} 1 -2023-07-08 08:17:30.255064 2023-07-08 08:17:30.255068 a2e933ab-de45-4a2d-a267-eef1af389519 {"md5": "fd896d53e41e90f53ec0c0c54fa10ab5", "pid": "172710073", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/172710073", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172710073", "source": "GND"}], "variant_name": ["Ackermann, Iris M.", "Ackermann, Iris Maria"], "date_of_birth": "1967", "preferred_name": "Ackermann, Iris", "variant_access_point": ["Ackermann, Iris M., 1967-", "Ackermann, Iris Maria, 1967-"], "authorized_access_point": "Ackermann, Iris, 1967-"} 1 -2023-07-08 08:17:29.680916 2023-07-08 10:31:10.375493 965bd367-c11f-477c-9d9a-d93d8a7404bc {"md5": "e4c709537bb2b4f6c2bebbbf4ddd7109", "pid": "172448611", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/172448611", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172448611", "source": "GND"}], "variant_name": ["Westbrook, Jack Hall", "Westbrook, J. H.", "Westbrook, J.H."], "date_of_birth": "1924", "preferred_name": "Westbrook, Jack H.", "variant_access_point": ["Westbrook, Jack Hall, 1924-", "Westbrook, J. H., 1924-", "Westbrook, J.H., 1924-"], "authorized_access_point": "Westbrook, Jack H., 1924-", "biographical_information": ["Physikometallurge"]} 2 -2023-07-08 08:17:30.430049 2023-07-08 08:17:30.430054 489a3232-503a-47ad-b6ed-481d2ddbb859 {"md5": "7f8ff2ef288052c974eb9af28b6ef7a8", "pid": "17273889X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/17273889X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/17273889X", "source": "GND"}], "variant_name": ["Mehl, Klaus W."], "date_of_birth": "1956", "preferred_name": "Mehl, Klaus Wilhelm", "variant_access_point": ["Mehl, Klaus W., 1956-"], "authorized_access_point": "Mehl, Klaus Wilhelm, 1956-"} 1 -2023-07-08 08:17:30.51235 2023-07-08 08:17:30.512357 6a0cf630-b52c-4ee1-a660-3248c2a30491 {"md5": "25df2cae725551fc39edbb68245014bf", "pid": "172741912", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/172741912", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172741912", "source": "GND"}], "preferred_name": "Isenbart, Wilhelm", "authorized_access_point": "Isenbart, Wilhelm", "biographical_information": ["Kaiserl. Geh. Regierungsrat"]} 1 -2023-07-08 08:17:30.581535 2023-07-08 08:17:30.581539 4665fc78-e795-4871-a9e8-415d0c935222 {"md5": "0b1772673f0578dcd22fb192e000bf4a", "pid": "172821657", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/172821657", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172821657", "source": "GND"}], "date_of_birth": "1889", "preferred_name": "Blatz, Heinrich", "authorized_access_point": "Blatz, Heinrich, 1889-"} 1 -2023-07-08 08:17:30.65739 2023-07-08 08:17:30.657394 7b797e23-48bb-441c-ba55-3b2c38607036 {"md5": "1601e54ad83f27873e17f00ee974d249", "pid": "172937051", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/172937051", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172937051", "source": "GND"}], "date_of_birth": "1946", "preferred_name": "Hezbri, Najia", "authorized_access_point": "Hezbri, Najia, 1946-"} 1 -2023-07-08 08:17:30.803629 2023-07-08 08:17:30.803636 befdf9f3-d721-4a5c-9897-769a6ee40680 {"md5": "6e6cf758ba4ff2076f6d08938fe4d902", "pid": "172939755", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/172939755", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172939755", "source": "GND"}], "date_of_birth": "1884", "preferred_name": "Schiebel, Karl", "authorized_access_point": "Schiebel, Karl, 1884-"} 1 -2023-07-08 08:17:30.894852 2023-07-08 08:17:30.894857 68ddfd1a-965c-458e-bd03-dcea3edc6da6 {"md5": "eb6828dc932295fbc0080b033884ff2d", "pid": "172953804", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/172953804", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172953804", "source": "GND"}], "variant_name": ["Gómez-Retamal, Eugenio", "Retamal, Eugenio Gómez", "Gómez, Eugenio"], "date_of_birth": "1961", "preferred_name": "Gómez Retamal, Eugenio", "variant_access_point": ["Gómez-Retamal, Eugenio, 1961-", "Retamal, Eugenio Gómez, 1961-", "Gómez, Eugenio, 1961-"], "authorized_access_point": "Gómez Retamal, Eugenio, 1961-"} 1 -2023-07-08 08:17:30.976764 2023-07-08 08:17:30.976769 9169a7f2-e576-4dc6-925f-3a075c293215 {"md5": "f97723091d38ab8d71e6613db3c2313a", "pid": "173016383", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/173016383", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173016383", "source": "GND"}], "variant_name": ["Knocha, Simone"], "preferred_name": "Williams, Simone", "variant_access_point": ["Knocha, Simone"], "authorized_access_point": "Williams, Simone"} 1 -2023-07-08 08:17:31.060204 2023-07-08 08:17:31.060212 094dc090-4979-4d58-bbc4-c462477591a5 {"md5": "fa2e030c1efe61844f09cc322854b7a1", "pid": "173079466", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/173079466", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173079466", "source": "GND"}], "date_of_birth": "1920", "preferred_name": "Blackadar, Alfred K.", "authorized_access_point": "Blackadar, Alfred K., 1920-"} 1 -2023-07-08 08:17:31.132852 2023-07-08 08:17:31.13286 f3dbe770-84d0-41f1-b1a6-8128d9ab0da9 {"md5": "bfc709c0d123f35cf2f6ff8d3b3dc641", "pid": "173093086", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/173093086", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173093086", "source": "GND"}], "preferred_name": "Neugebauer, Bernhard", "authorized_access_point": "Neugebauer, Bernhard", "biographical_information": ["dt. Dipl.-Ing. (elektr. Energietechnik)"]} 1 -2023-07-08 08:17:31.21506 2023-07-08 08:17:31.215064 325a6e64-e06b-4e20-aba0-4d73e0704fc8 {"md5": "d89e1465d97347a3d5dac4124e4997b9", "pid": "173112110", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/173112110", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173112110", "source": "GND"}], "variant_name": ["Arends, Gerrit Jan", "Arends, G. J."], "date_of_birth": "1953", "preferred_name": "Arends, Gerrit J.", "variant_access_point": ["Arends, Gerrit Jan, 1953-", "Arends, G. J., 1953-"], "authorized_access_point": "Arends, Gerrit J., 1953-", "biographical_information": ["niederländ. Ingenieur"]} 1 -2023-07-08 08:17:31.363224 2023-07-08 08:17:31.363227 ca4b4a22-b137-4d7e-a708-a05313496816 {"md5": "76773f70417ff982ca9353e19dd4dc2a", "pid": "173162061", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/173162061", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173162061", "source": "GND"}], "preferred_name": "Kaschell, Petra", "authorized_access_point": "Kaschell, Petra", "biographical_information": ["Dipl.-Ing. (Kartographie)"]} 1 -2023-07-08 08:17:31.513249 2023-07-08 08:17:31.513252 8672c41a-3d73-49de-9da3-29344e407815 {"md5": "ba66869515a531c2d98f8685098d555a", "pid": "173287387", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/173287387", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173287387", "source": "GND"}], "variant_name": ["Lukasse, L. J. S."], "date_of_birth": "1971", "preferred_name": "Lukasse, Leo", "variant_access_point": ["Lukasse, L. J. S., 1971-"], "authorized_access_point": "Lukasse, Leo, 1971-"} 1 -2023-07-08 08:17:31.669941 2023-07-08 08:17:31.669945 9c71e49e-1672-4a55-91e0-8ecf00fe97d8 {"md5": "e2c8c009d2e8f3f7c5dba42c003a53fe", "pid": "173395627", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/173395627", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173395627", "source": "GND"}], "variant_name": ["Zeller, Thomas Louis", "Zeller, Thomas L."], "date_of_birth": "1955", "preferred_name": "Zeller, Thomas", "country_associated": "xxu", "variant_access_point": ["Zeller, Thomas Louis, 1955-", "Zeller, Thomas L., 1955-"], "authorized_access_point": "Zeller, Thomas, 1955-"} 1 -2023-07-08 08:17:31.74339 2023-07-08 08:17:31.743395 a5dca4a0-ea37-4513-89f0-5d8e81323eb4 {"md5": "1d0a2b84b3272bf350694c4a5f8bf93f", "pid": "17344511X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/17344511X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/17344511X", "source": "GND"}], "preferred_name": "Bauer-Behrschmidt, Gabriela", "authorized_access_point": "Bauer-Behrschmidt, Gabriela"} 1 -2023-07-08 08:17:31.813505 2023-07-08 08:17:31.813508 5d876a2d-11f7-4590-baa5-97c60e257d45 {"md5": "9a11c7fad72e1a74c128404bc37c03ec", "pid": "173606091", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/173606091", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173606091", "source": "GND"}], "date_of_birth": "1972", "preferred_name": "Camurati, Maurizio", "authorized_access_point": "Camurati, Maurizio, 1972-"} 1 -2023-07-08 08:17:31.881866 2023-07-08 08:17:31.881869 d829fe74-8a5f-4a0d-a16c-a2165d0585b3 {"md5": "32c9cc739b3c501dfa002879147118d1", "pid": "17361860X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/17361860X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/17361860X", "source": "GND"}], "variant_name": ["Van den Bossche, Bart", "Den Bossche, Bart van [Wirkl. Name]", "Bossche, Bart van den [Wirkl. Name]", "VanDenBossche, Bart", "Bossche, Bart van den"], "date_of_birth": "1968", "preferred_name": "Koubaa, Bart", "variant_access_point": ["Van den Bossche, Bart, 1968-", "Den Bossche, Bart van [Wirkl. Name], 1968-", "Bossche, Bart van den [Wirkl. Name], 1968-", "VanDenBossche, Bart, 1968-", "Bossche, Bart van den, 1968-"], "authorized_access_point": "Koubaa, Bart, 1968-", "biographical_information": ["belg. Schriftsteller, Arabist, Musiker", "Fotograf, Schriftsteller"]} 1 -2023-07-08 08:17:31.95029 2023-07-08 08:17:31.950293 6f10476a-1c52-418d-b2a6-0825e11167da {"md5": "fb1ef18f1fef43ff1dfd6d1da6180af8", "pid": "173628257", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/173628257", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173628257", "source": "GND"}], "date_of_birth": "1955", "preferred_name": "Vadi, Maaja", "country_associated": "er", "authorized_access_point": "Vadi, Maaja, 1955-"} 1 -2023-07-08 08:17:32.024785 2023-07-08 08:17:32.02479 cf5f61a5-81eb-477f-9b87-d21905b8bb83 {"md5": "be95622d014b5884aa6257d6255c9129", "pid": "173635385", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/173635385", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173635385", "source": "GND"}], "preferred_name": "Walters, James B.", "authorized_access_point": "Walters, James B.", "biographical_information": ["Degree in Public Health Administration"]} 1 -2023-07-08 08:17:32.094833 2023-07-08 08:17:32.094836 dcad83c0-0f3e-4dfa-8620-1a599d0c0d12 {"md5": "ffb79f75875a461fe937d02a485da413", "pid": "173674534", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/173674534", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173674534", "source": "GND"}], "preferred_name": "Katz, Howard", "authorized_access_point": "Katz, Howard", "biographical_information": ["amerik. Computerspezialist"]} 1 -2023-07-08 08:17:32.163925 2023-07-08 08:17:32.163928 db0f2ca3-b392-4091-aefb-508decf1ae95 {"md5": "ef84e95f92d3a1c7f2c3a9c6d11ebcdb", "pid": "173748856", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/173748856", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173748856", "source": "GND"}], "date_of_birth": "1973", "preferred_name": "Işık, Toprak", "authorized_access_point": "Işık, Toprak, 1973-"} 1 -2023-07-08 08:17:32.230167 2023-07-08 08:17:32.23017 d5e4416c-0d98-4167-91ae-a97602fdc000 {"md5": "702a1ffc4a67510f30478d1705202263", "pid": "173756638", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/173756638", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173756638", "source": "GND"}], "preferred_name": "Burrowes, Brian", "authorized_access_point": "Burrowes, Brian"} 1 -2023-07-08 08:17:32.301825 2023-07-08 08:17:32.301828 baa22a19-4c0e-4592-92ea-f1c05b229342 {"md5": "94e0e367af7a8f833b868e3d1e3ef3bf", "pid": "173770401", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/173770401", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173770401", "source": "GND"}], "date_of_birth": "1967", "preferred_name": "Elourfi, Abdelkrim Mohammed Amer", "authorized_access_point": "Elourfi, Abdelkrim Mohammed Amer, 1967-", "biographical_information": ["Studium der Biologie"]} 1 -2023-07-08 08:17:36.880875 2023-07-08 08:17:36.88088 91ffe0c8-e032-42b4-9c2f-b4d6a4a3ffe7 {"md5": "36bb1e65ef18e953719d13fafa17102a", "pid": "320461394", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10320030-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10320030-7", "source": "GND"}], "preferred_name": "Mindlab", "authorized_access_point": "Mindlab", "biographical_information": ["MM 98 +; LoC-NA oo"]} 1 -2023-07-08 08:17:32.374624 2023-07-08 08:17:32.374628 9f18951d-ad25-49f6-8d60-2f6c3c167b3a {"md5": "89dc53fcf8d55e9a80a8436484f148d1", "pid": "173774148", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/173774148", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173774148", "source": "GND"}], "variant_name": ["Giphart, Karin Ellen"], "date_of_birth": "1968", "preferred_name": "Giphart, Karin", "country_associated": "ne", "variant_access_point": ["Giphart, Karin Ellen, 1968-"], "authorized_access_point": "Giphart, Karin, 1968-"} 1 -2023-07-08 08:17:32.466761 2023-07-08 08:17:32.466775 e23bfd57-ee3f-44ba-8361-8ae72139e8cc {"md5": "396442bdefaad0f1ca4cf26a623f563f", "pid": "173774776", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/173774776", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173774776", "source": "GND"}], "variant_name": ["Chen-Lin, Xiaoqing Diana", "Chen, Diana Xiao Qing", "Chen, Xiaoqing Diana", "Ch'en, Hsiao-ch'ing Diana"], "date_of_birth": "1963", "preferred_name": "Lin, Xiaoqing Diana", "country_associated": "cc", "variant_access_point": ["Chen-Lin, Xiaoqing Diana, 1963-", "Chen, Diana Xiao Qing, 1963-", "Chen, Xiaoqing Diana, 1963-", "Ch'en, Hsiao-ch'ing Diana, 1963-"], "authorized_access_point": "Lin, Xiaoqing Diana, 1963-", "biographical_information": ["Associate Professor of History, Indiana University Northwest. At IU Northwest since 1994. Education: Ph.D. in History, University of Chicago; M.A. in History, University of Chicago; B.A. in English, Beijing Foreign Studies University"]} 1 -2023-07-08 08:17:32.545373 2023-07-08 08:17:32.545377 280f8218-c20a-469a-b2ab-a7a029d812a1 {"md5": "627cd49eb20d10e4149f97eb5ced33a3", "pid": "173808085", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/173808085", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173808085", "source": "GND"}], "date_of_birth": "1947", "preferred_name": "Silverman, Jay", "authorized_access_point": "Silverman, Jay, 1947-"} 1 -2023-07-08 08:17:32.620978 2023-07-08 08:17:32.620985 ba6cc0d2-9260-44e0-ab37-1ef99788adc7 {"md5": "1ccc6789b2011ebb8963bec7ae9d9d74", "pid": "173843034", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/173843034", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173843034", "source": "GND"}], "variant_name": ["Morrison, Margaret Catherine", "Morrison, Margaret C."], "date_of_birth": "1954", "date_of_death": "2021", "preferred_name": "Morrison, Margaret", "country_associated": "xxc", "variant_access_point": ["Morrison, Margaret Catherine, 1954-2021", "Morrison, Margaret C., 1954-2021"], "authorized_access_point": "Morrison, Margaret, 1954-2021"} 1 -2023-07-08 08:17:32.707867 2023-07-08 08:17:32.707871 7d7d529b-5ada-44bf-8c0c-6f1b82b5dbca {"md5": "fc0fd342f2e54e00b92aabd3388a89f1", "pid": "173888135", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/173888135", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173888135", "source": "GND"}], "date_of_birth": "1960", "preferred_name": "Wessem, Jurriaan van", "authorized_access_point": "Wessem, Jurriaan van, 1960-"} 1 -2023-07-08 08:17:32.803348 2023-07-08 08:17:32.803356 5d3a0682-b921-42c7-a5c8-118f6e3c2187 {"md5": "6ce541ce98746c507dd6d16365dd6359", "pid": "173977669", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/173977669", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173977669", "source": "GND"}], "date_of_birth": "1965", "preferred_name": "Tasa, Gunnar", "authorized_access_point": "Tasa, Gunnar, 1965-"} 1 -2023-07-08 08:17:32.893284 2023-07-08 08:17:32.893289 b292a831-7ef4-41ee-b882-b7baaa2ad58e {"md5": "d73a3fca07cab99a9af3931b58a3108d", "pid": "174095139", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/174095139", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/174095139", "source": "GND"}], "date_of_birth": "1910", "preferred_name": "Meyer, Johannes", "authorized_access_point": "Meyer, Johannes, 1910-"} 1 -2023-07-08 08:17:32.979086 2023-07-08 08:17:32.979092 ac5cc782-5536-4705-b536-cd82c38658ca {"md5": "643ba88a30ed8975af4f4d8ac8f1ad77", "pid": "174168616", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/174168616", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/174168616", "source": "GND"}], "preferred_name": "Knoll, Michael", "authorized_access_point": "Knoll, Michael", "biographical_information": ["PND-Online 00. 21.1.1994"]} 1 -2023-07-08 08:17:33.0756 2023-07-08 08:17:33.075604 234e44b7-b653-484b-b7c1-543f327c1368 {"md5": "3ef3778d3ffae46ea69c25b08f35b02e", "pid": "17420275X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/17420275X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/17420275X", "source": "GND"}], "date_of_birth": "1906", "preferred_name": "Dye, Charlie", "authorized_access_point": "Dye, Charlie, 1906-"} 1 -2023-07-08 08:17:33.161081 2023-07-08 08:17:33.161084 b8cb6847-91c1-4da3-a60c-7d5b0a2dd18d {"md5": "6403d0930e5f42c0f08ce06b50406ce2", "pid": "17422138X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/17422138X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/17422138X", "source": "GND"}], "preferred_name": "Hirmer, Irmgard", "authorized_access_point": "Hirmer, Irmgard"} 1 -2023-07-08 08:17:33.244953 2023-07-08 08:17:33.244957 f9e8db3b-8606-4a9c-9599-44132e9e092d {"md5": "d19266bae13e483898eb76419392a0c7", "pid": "174376391", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/174376391", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/174376391", "source": "GND"}], "preferred_name": "Sobek", "authorized_access_point": "Sobek"} 1 -2023-07-08 08:17:33.45287 2023-07-08 08:17:33.452879 9344cb7f-3335-4b62-935e-d9e9b33236f8 {"md5": "dc7f9493ed8b4bfd27062c011168397b", "pid": "189437065", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/189437065", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/189437065", "source": "GND"}], "variant_name": ["Wameling, Iris Busch-"], "preferred_name": "Busch-Wameling, Iris", "variant_access_point": ["Wameling, Iris Busch-"], "authorized_access_point": "Busch-Wameling, Iris", "biographical_information": ["keine Angaben zur Person bei der maschinellen Übernahme vorhanden"]} 1 -2023-07-08 08:17:33.552283 2023-07-08 08:17:33.552292 4251b634-a29f-4453-9f7e-9c48a3115724 {"md5": "4c445f8cf3dbdb6eb94456bf5749b3cb", "pid": "199160554", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/7779640-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7779640-8", "source": "GND"}], "variant_name": ["Lutherische Gemeinde"], "preferred_name": "Evangelisch-Lutherische Gemeinde", "country_associated": "gw", "variant_access_point": ["Lutherische Gemeinde"], "authorized_access_point": "Evangelisch-Lutherische Gemeinde"} 1 -2023-07-08 08:17:33.65321 2023-07-08 08:17:33.653214 1bd341ee-d336-47e2-85bb-5edf74b749f9 {"md5": "4c9b72ac9db2a785841269d0657c3dee", "pid": "320025594", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10277515-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10277515-1", "source": "GND"}], "variant_name": ["Keane and John Faulkner", "Faulkner, Dolores Keane and John"], "preferred_name": "Dolores Keane and John Faulkner", "variant_access_point": ["Keane and John Faulkner", "Faulkner, Dolores Keane and John"], "authorized_access_point": "Dolores Keane and John Faulkner"} 1 -2023-07-08 08:17:33.737368 2023-07-08 08:17:33.737376 d996a421-64c8-468e-929a-b80144dafa9f {"md5": "e4659aec8734496590a654877ddbac27", "pid": "320038580", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10278785-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10278785-2", "source": "GND"}], "preferred_name": "Edelzwicker", "authorized_access_point": "Edelzwicker"} 1 -2023-07-08 08:17:33.842113 2023-07-08 08:17:33.842118 93a20199-5655-4fcc-bb6d-7fbed112838c {"md5": "3dc5c1c552da30b82011d51fff359a99", "pid": "320040992", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10279023-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10279023-1", "source": "GND"}], "variant_name": ["Morty and the Racing Cars", "Morty & the Racing Cars"], "preferred_name": "Racing Cars", "country_associated": "xxk", "date_of_termination": "2010", "variant_access_point": ["Morty and the Racing Cars. Musikgruppe", "Morty & the Racing Cars. Musikgruppe"], "date_of_establishment": "1973", "authorized_access_point": "Racing Cars. Musikgruppe", "biographical_information": ["Popband"]} 1 -2023-07-08 08:17:33.934147 2023-07-08 08:17:33.934156 65102053-d068-447b-9338-e957664b86a3 {"md5": "f24457288c4b196da653178137ddf95f", "pid": "320067661", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10281592-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10281592-6", "source": "GND"}], "variant_name": ["Rice Unit"], "preferred_name": "Tony Rice Unit", "variant_access_point": ["Rice Unit"], "authorized_access_point": "Tony Rice Unit"} 1 -2023-07-08 08:17:34.040597 2023-07-08 08:17:34.040607 d88c42b4-5f43-4883-a4a3-b2d1743b4de6 {"md5": "cb1da29494459371a363c4f16993085f", "pid": "320070522", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10281873-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10281873-3", "source": "GND"}], "variant_name": ["Molton and the Truth Band"], "preferred_name": "Flora Molton and the Truth Band", "variant_access_point": ["Molton and the Truth Band"], "authorized_access_point": "Flora Molton and the Truth Band"} 1 -2023-07-08 08:17:34.151551 2023-07-08 08:17:34.15156 655974af-da8a-4737-b8c0-e9aa158825ce {"md5": "e6c4c3fb0288d767a1b10f09268b5624", "pid": "320074129", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10282229-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10282229-3", "source": "GND"}], "preferred_name": "Ted und Jo", "authorized_access_point": "Ted und Jo"} 1 -2023-07-08 08:17:34.23392 2023-07-08 08:17:34.233929 2a21256e-0487-4a21-844c-82535dc39a24 {"md5": "5bb29c091a8f93eb35c58ba2c31f2cd2", "pid": "320080242", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10282823-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10282823-4", "source": "GND"}], "preferred_name": "Greisinger Sänger", "authorized_access_point": "Greisinger Sänger"} 1 -2023-07-08 08:17:34.3124 2023-07-08 08:17:34.312405 937aae1e-37b2-4300-8e42-1a187347ea9c {"md5": "1c8a97236df8cece746d8afc2bc66341", "pid": "320080366", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10282835-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10282835-0", "source": "GND"}], "preferred_name": "Jens-Dieter un Sien Skipper", "authorized_access_point": "Jens-Dieter un Sien Skipper"} 1 -2023-07-08 08:17:34.395798 2023-07-08 08:17:34.395803 6ec72579-b714-4e19-8ae7-d174765e31b9 {"md5": "4ed3e0894fd53600d77788f091b2be06", "pid": "320093549", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10284119-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10284119-6", "source": "GND"}], "variant_name": ["Tilbrook, Difford and"], "preferred_name": "Difford and Tilbrook", "variant_access_point": ["Tilbrook, Difford and"], "authorized_access_point": "Difford and Tilbrook"} 1 -2023-07-08 08:17:34.475716 2023-07-08 08:17:34.475722 a1d769b2-3134-4b53-b1c2-0e1ec809c0ee {"md5": "3b5565fb03661867bea0982644ec320d", "pid": "320111881", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10285909-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10285909-7", "source": "GND"}], "variant_name": ["Die Brückenbauer"], "preferred_name": "Brückenbauer", "country_associated": "gw", "variant_access_point": ["Die Brückenbauer. Unveraenderte Form"], "authorized_access_point": "Brückenbauer"} 1 -2023-07-08 08:17:34.577594 2023-07-08 08:17:34.5776 753c3adb-0e7c-4678-a715-ae83977b4f0e {"md5": "7436fa14c69eafa82bfeeaa6c9b34046", "pid": "320153746", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10290003-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10290003-6", "source": "GND"}], "variant_name": ["Reger-Duo"], "preferred_name": "Max-Reger-Duo", "country_associated": "gw", "variant_access_point": ["Reger-Duo. Leipzig"], "authorized_access_point": "Max-Reger-Duo. Leipzig", "biographical_information": ["Kammermusikalisches Duo (Ulrich Urban und Hans-Georg Jaroslawski)"]} 1 -2023-07-08 08:17:34.662468 2023-07-08 08:17:34.662471 3d0cdaa6-decf-4a17-9210-af42f9c9f6ab {"md5": "b29e11a2282050c88610197fb7cde604", "pid": "320168328", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10291427-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10291427-8", "source": "GND"}], "variant_name": ["Biedermeier Ensemble Wien"], "preferred_name": "Biedermeier-Ensemble", "country_associated": "au", "variant_access_point": ["Biedermeier Ensemble Wien"], "authorized_access_point": "Biedermeier-Ensemble"} 1 -2023-07-08 08:17:34.738998 2023-07-08 08:17:34.739002 3e3dd6e4-4208-4020-a8ee-b3abe6c1c525 {"md5": "5859931a2af6d7b97e553ed811572863", "pid": "320188760", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10293430-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10293430-7", "source": "GND"}], "preferred_name": "Invisible Army", "authorized_access_point": "Invisible Army"} 1 -2023-07-08 08:17:34.839005 2023-07-08 08:17:34.839012 8a8d7559-a06b-4d25-ac71-1c22e79820de {"md5": "e2cac31d1a7d2757ee7ec358964fd7f7", "pid": "320196321", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10294168-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10294168-3", "source": "GND"}], "preferred_name": "Jubilate-Chor", "country_associated": "gw", "authorized_access_point": "Jubilate-Chor. Wetzlar"} 1 -2023-07-08 08:17:34.928866 2023-07-08 08:17:34.928874 e2843269-780e-4c41-b0ce-f47c302d87a2 {"md5": "8e67e48b2876750b0e3179f0f4d7d9fa", "pid": "320202593", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10294771-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10294771-5", "source": "GND"}], "variant_name": ["Koppelberg's Wolffen"], "preferred_name": "Wolffen", "variant_access_point": ["Koppelberg's Wolffen"], "authorized_access_point": "Wolffen"} 1 -2023-07-08 08:17:35.008586 2023-07-08 08:17:35.008591 b55b3746-7657-4657-a79a-a72a65046794 {"md5": "a8a4db6f435f07c5fee6b6c356b6a33a", "pid": "320218694", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10296322-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10296322-8", "source": "GND"}], "variant_name": ["Baker and Band", "Ginger Baker Band", "Baker Band"], "preferred_name": "Ginger Baker and Band", "variant_access_point": ["Baker and Band", "Ginger Baker Band", "Baker Band"], "authorized_access_point": "Ginger Baker and Band"} 1 -2023-07-08 08:17:35.092707 2023-07-08 08:17:35.092713 d595d583-d1a9-45bf-a26d-2ba8b7e154db {"md5": "7507a7bb866747bfeaa8404d8478b4a4", "pid": "320234975", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10297918-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10297918-2", "source": "GND"}], "preferred_name": "Orion", "authorized_access_point": "Orion"} 1 -2023-07-08 08:17:35.177455 2023-07-08 08:17:35.177459 aa4a9424-ff4d-49dd-82fd-c6d96700fc20 {"md5": "6fe9d632b035110914bd84c36ec44051", "pid": "320236706", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10298082-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10298082-2", "source": "GND"}], "variant_name": ["Cuba Sextet"], "preferred_name": "Joe Cuba Sextet", "variant_access_point": ["Cuba Sextet"], "authorized_access_point": "Joe Cuba Sextet"} 1 -2023-07-08 08:17:35.245209 2023-07-08 08:17:35.245212 9269a4ad-3821-4d62-8360-d20c7d996542 {"md5": "fcc6ab6ac4f46b2f6e6b2afe6bf9d397", "pid": "320290239", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10303308-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10303308-7", "source": "GND"}], "preferred_name": "Kammerchor Carl von Ossietzky", "authorized_access_point": "Kammerchor Carl von Ossietzky. Berlin"} 1 -2023-07-08 08:17:35.321219 2023-07-08 08:17:35.321228 d555eefe-bf58-4e17-90cf-380c65768265 {"md5": "9ef6402d14cf661302936faacdc8d074", "pid": "320292746", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10303551-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10303551-5", "source": "GND"}], "preferred_name": "Tangerine Roof", "authorized_access_point": "Tangerine Roof"} 1 -2023-07-08 08:17:35.412512 2023-07-08 08:17:35.412519 f24cc8f2-d205-4242-aae5-e9d51a3f5d89 {"md5": "cf48203d7c4e74569209f97be04ae30e", "pid": "320319008", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10306118-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10306118-6", "source": "GND"}], "preferred_name": "Blue Up", "authorized_access_point": "Blue Up"} 1 -2023-07-08 08:17:35.49828 2023-07-08 08:17:35.498283 377ef229-92fe-445d-961f-8de0e1566e92 {"md5": "900d18ea44c49591a8578ac1c5008760", "pid": "320328074", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10306996-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10306996-3", "source": "GND"}], "preferred_name": "Never Left", "authorized_access_point": "Never Left"} 1 -2023-07-08 08:17:35.643949 2023-07-08 08:17:35.643952 16416c7d-c761-4a56-a43f-443a322cd601 {"md5": "f3055afd53cfdc2cf2d6061283e6da2a", "pid": "32032964X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10307151-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10307151-9", "source": "GND"}], "variant_name": ["MGV"], "preferred_name": "Männergesangverein", "country_associated": "au", "variant_access_point": ["MGV. Oberperfuss"], "authorized_access_point": "Männergesangverein. Oberperfuss"} 1 -2023-07-08 08:17:35.721073 2023-07-08 08:17:35.721077 b23dce66-529d-4d91-b569-bf3b908beb86 {"md5": "824ddd2db948ee96ef974bee6cbac81b", "pid": "320334988", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10307673-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10307673-6", "source": "GND"}], "variant_name": ["The Frozen Autumn"], "preferred_name": "The Frozen Autumn", "country_associated": "it", "variant_access_point": ["The Frozen Autumn. Unveraenderte Form"], "date_of_establishment": "1993", "authorized_access_point": "The Frozen Autumn. Musikgruppe", "biographical_information": ["Dark-Wave-Band, gegründet von Diego Merletto"]} 1 -2023-07-08 08:17:35.786457 2023-07-08 08:17:35.78646 6c2ce0b8-3809-4107-82d1-527ac7c0e77b {"md5": "6c06a42d80e60fb896cb77a7eea93c5e", "pid": "320354202", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10309560-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10309560-3", "source": "GND"}], "preferred_name": "Subsurfing", "authorized_access_point": "Subsurfing"} 1 -2023-07-08 08:17:35.858988 2023-07-08 08:17:35.858994 4cb14de0-3dce-4bc9-92c1-bc565b15bdca {"md5": "6eda7898fe26da81b64954bf0b57c89f", "pid": "320364879", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10310600-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10310600-5", "source": "GND"}], "preferred_name": "Latex", "authorized_access_point": "Latex"} 1 -2023-07-08 08:17:35.955532 2023-07-08 08:17:35.955539 5f629f52-2795-4e52-b301-1d7d05f888ab {"md5": "322a8de87597a5b1a40bf566d3c2b213", "pid": "320366510", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10310762-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10310762-9", "source": "GND"}], "preferred_name": "Captain Concho", "authorized_access_point": "Captain Concho"} 1 -2023-07-08 08:17:36.041981 2023-07-08 08:17:36.041987 76d98429-5e4f-42aa-9260-b4ac896f973e {"md5": "a516f2452cb6940b9769914d3691ee60", "pid": "320368173", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10310927-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10310927-4", "source": "GND"}], "variant_name": ["Meurkens Sambajazz Quartet", "Hendrik Meurkens Quartet", "Meurkens Quartet"], "preferred_name": "Hendrik Meurkens Sambajazz Quartet", "variant_access_point": ["Meurkens Sambajazz Quartet", "Hendrik Meurkens Quartet", "Meurkens Quartet"], "authorized_access_point": "Hendrik Meurkens Sambajazz Quartet"} 1 -2023-07-08 08:17:36.135343 2023-07-08 08:17:36.135373 a88ca0d3-9565-46b1-bc87-b3658b0ce515 {"md5": "67b194dfaa871c6a910ee69a8e890728", "pid": "320388387", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10312911-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10312911-X", "source": "GND"}], "preferred_name": "Con Colour", "authorized_access_point": "Con Colour"} 1 -2023-07-08 08:17:36.208188 2023-07-08 08:17:36.208194 8fa8c36a-eaee-42de-a1ea-2f43e0d42bfb {"md5": "c8ca8d585aa85779d62b86728d5b8d0f", "pid": "320390268", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10313099-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10313099-8", "source": "GND"}], "preferred_name": "Detune", "authorized_access_point": "Detune"} 1 -2023-07-08 08:17:36.303243 2023-07-08 08:17:36.303246 049c8b2c-9c41-47f5-84da-cf064d92b9d4 {"md5": "31798c3791bd1f7b6221dc4d841c3d0d", "pid": "320393690", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10313439-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10313439-6", "source": "GND"}], "preferred_name": "Rütmikud", "authorized_access_point": "Rütmikud"} 1 -2023-07-08 08:17:36.390775 2023-07-08 08:17:36.390784 070fb338-f74d-4c38-a89e-2bc3983b40bb {"md5": "02a2ed7a4471ba8937d5f51f54802597", "pid": "320406407", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10314681-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10314681-7", "source": "GND"}], "preferred_name": "Sort Vokter", "authorized_access_point": "Sort Vokter"} 1 -2023-07-08 08:17:36.494887 2023-07-08 08:17:36.494891 cb614855-befb-4992-b2d3-5883cd9451cf {"md5": "23b7e124a03fbb9e2dd18575736113d4", "pid": "320412733", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10315305-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10315305-6", "source": "GND"}], "variant_name": ["Schall, Collegium Musicum Joachim"], "preferred_name": "Collegium Musicum Joachim Schall", "variant_access_point": ["Schall, Collegium Musicum Joachim"], "authorized_access_point": "Collegium Musicum Joachim Schall"} 1 -2023-07-08 08:17:36.584613 2023-07-08 08:17:36.584615 3346ab2e-46e5-43ba-a187-aacccde37192 {"md5": "5049b6da61c031852716b2350f539590", "pid": "320418448", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10315867-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10315867-4", "source": "GND"}], "preferred_name": "Mystic Karma", "authorized_access_point": "Mystic Karma"} 1 -2023-07-08 08:17:36.675642 2023-07-08 08:17:36.675649 2e623a0b-7650-4a09-87c2-5f3df577531b {"md5": "272d3aea1d4873aa9225ad1ca7e21069", "pid": "320422739", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10316289-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10316289-6", "source": "GND"}], "variant_name": ["Divertimento Ensemble", "Divertimento Ensemble"], "preferred_name": "Divertimento Ensemble", "country_associated": "it", "variant_access_point": ["Divertimento Ensemble", "Divertimento Ensemble. Milano"], "authorized_access_point": "Divertimento Ensemble. Mailand"} 1 -2023-07-08 08:17:36.791658 2023-07-08 08:17:36.791663 2657676a-7eac-4a16-99d1-36321fe4d4a7 {"md5": "2987dc3d72242dc588049dd10016252b", "pid": "32043706X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10317685-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10317685-8", "source": "GND"}], "variant_name": ["Angelin Tytöt", "Mädchen aus Angeli", "Filles d'Angeli"], "preferred_name": "Girls of Angeli", "variant_access_point": ["Angelin Tytöt", "Mädchen aus Angeli", "Filles d'Angeli"], "authorized_access_point": "Girls of Angeli"} 1 -2023-07-08 08:17:36.98062 2023-07-08 08:17:36.980626 d52b15a0-5c7e-4fbf-a0cd-08296d0c6077 {"md5": "a3f1d616f3a07e5062c7cb85d3e40003", "pid": "320475891", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10321430-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10321430-6", "source": "GND"}], "variant_name": ["Gesangsformation Fermate"], "preferred_name": "Fermate", "country_associated": "gw", "variant_access_point": ["Gesangsformation Fermate"], "date_of_establishment": "1989", "authorized_access_point": "Fermate"} 1 -2023-07-08 08:17:37.075136 2023-07-08 08:17:37.075142 c3c08d1b-155f-4758-bf80-808e4b003105 {"md5": "23989812787672e79fefa97c451e3a78", "pid": "320488063", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10322601-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10322601-1", "source": "GND"}], "preferred_name": "Slick Sixty", "country_associated": "xxk", "authorized_access_point": "Slick Sixty", "biographical_information": ["jpc (Internet); MM 33/99 S.98 +. - Londoner Trio"]} 1 -2023-07-08 08:17:37.162302 2023-07-08 08:17:37.162305 3b28040b-7064-4cee-80fa-8c238dbf1fc0 {"md5": "d146851c63b886b3a40ef8a5297d8ccf", "pid": "32048906X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10322698-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10322698-9", "source": "GND"}], "preferred_name": "Celtic Cross", "authorized_access_point": "Celtic Cross", "biographical_information": ["jpc (Internet)+"]} 1 -2023-07-08 08:17:37.236149 2023-07-08 08:17:37.236158 b28035d1-f359-4a51-8660-0784eecfce9f {"md5": "c3c5463dbe6daf92b3df8f182fabb320", "pid": "320497070", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10323470-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10323470-6", "source": "GND"}], "preferred_name": "Rosi und die Knallerbsen", "country_associated": "gw", "authorized_access_point": "Rosi und die Knallerbsen", "biographical_information": ["GKE 2/2000; MM 99; jpc 2000: oo"]} 1 -2023-07-08 08:17:37.327169 2023-07-08 08:17:37.327177 241256ff-cf11-4849-95b9-091dba8f2c49 {"md5": "58194c16e7fca4e1d277dc0730f6162a", "pid": "320506037", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10324330-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10324330-6", "source": "GND"}], "preferred_name": "Temple City High School", "country_associated": "xxu", "authorized_access_point": "Temple City High School"} 1 -2023-07-08 08:17:37.42311 2023-07-08 08:17:37.423201 81fc9630-29eb-4dbe-8ddf-e5bfa34c9c3d {"md5": "3509b0a5f7772fed43a2c94bd3460894", "pid": "320515206", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10325213-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10325213-7", "source": "GND"}], "preferred_name": "Groove-Polizei", "authorized_access_point": "Groove-Polizei", "biographical_information": ["GKE 7/2000+"]} 1 -2023-07-08 08:17:37.524852 2023-07-08 08:17:37.524857 e7784016-c117-492f-bc09-cf9e9d0ab0e6 {"md5": "54039061a744c55ad4ef5a4e4b951f7c", "pid": "320532836", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10326914-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10326914-9", "source": "GND"}], "variant_name": ["Schwarz, Orchestra Otto M."], "preferred_name": "Orchestra Otto M. Schwarz", "variant_access_point": ["Schwarz, Orchestra Otto M."], "authorized_access_point": "Orchestra Otto M. Schwarz"} 1 -2023-07-08 08:17:37.626416 2023-07-08 08:17:37.626421 9ced48ea-41f0-4f4c-842d-b7dc55f34324 {"md5": "a37987a57ee7a4d0488d5e2f1ebd52e8", "pid": "320542173", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10327816-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10327816-3", "source": "GND"}], "preferred_name": "Aunt Worm", "authorized_access_point": "Aunt Worm"} 1 -2023-07-08 08:17:37.694972 2023-07-08 08:17:37.694975 e309a622-c1e4-42a5-bc73-f8588cf54821 {"md5": "6877f556c42e7a9df03da3ec76f735bd", "pid": "320562425", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10329774-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10329774-1", "source": "GND"}], "variant_name": ["Seven for Four", "744"], "preferred_name": "7 for 4", "variant_access_point": ["Seven for Four", "744"], "authorized_access_point": "7 for 4"} 1 -2023-07-08 08:17:37.782749 2023-07-08 08:17:37.78276 52762dbe-c0b2-4461-8ce5-547a891e20a6 {"md5": "50c718a83eadef48fa2bed603df7dde6", "pid": "320577880", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10331277-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10331277-8", "source": "GND"}], "preferred_name": "Romantica", "authorized_access_point": "Romantica. Duo", "biographical_information": ["Mitglieder: ein Herr, eine Dame. - Ortssitz: Markt Rettenbach"]} 1 -2023-07-08 08:17:37.864731 2023-07-08 08:17:37.864736 d6da88d0-c677-41ee-87b8-8044c8949c16 {"md5": "5d8437df41abad2aa5655c21ffcb6b93", "pid": "320577929", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10331281-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10331281-X", "source": "GND"}], "preferred_name": "International Pony", "authorized_access_point": "International Pony"} 1 -2023-07-08 08:17:37.954106 2023-07-08 08:17:37.954114 406b61a5-c78e-4b92-b28a-a4650e92701e {"md5": "60b29bbd5b8bc11afbf66f5b8bf371ce", "pid": "320579751", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10331458-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10331458-1", "source": "GND"}], "preferred_name": "Disco Jovial", "country_associated": "gw", "authorized_access_point": "Disco Jovial"} 1 -2023-07-08 08:17:38.042158 2023-07-08 08:17:38.042164 682a1cb0-7a5e-445c-9bf8-334415d4775c {"md5": "77e9032832ef0d2a2f82c396ff6b043d", "pid": "320584739", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10331942-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10331942-6", "source": "GND"}], "preferred_name": "Domino Kings", "authorized_access_point": "Domino Kings"} 1 -2023-07-08 08:17:38.130056 2023-07-08 08:17:38.130062 b507e11c-08fd-49de-832a-cdf9c9276c01 {"md5": "12ddcfba8ce4283727cd65d5c112d810", "pid": "320618439", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10335206-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10335206-5", "source": "GND"}], "preferred_name": "Painted Air", "authorized_access_point": "Painted Air"} 1 -2023-07-08 08:17:38.199238 2023-07-08 08:17:38.199241 fca8af4e-ff9b-452b-8b93-a321607c5a27 {"md5": "b2338d2c4b22f493570a9020f34f2080", "pid": "320631176", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10336440-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10336440-7", "source": "GND"}], "variant_name": ["The Moon Invaders"], "preferred_name": "Moon Invaders", "country_associated": "be", "variant_access_point": ["The Moon Invaders. Unveraenderte Form"], "date_of_establishment": "2001", "authorized_access_point": "Moon Invaders"} 1 -2023-07-08 08:17:38.280459 2023-07-08 08:17:38.280465 cec458ba-897c-43ac-9e2d-a3cdbf96220a {"md5": "738d466307ffa24a71a75cba02f5ea22", "pid": "320642461", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10337517-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10337517-X", "source": "GND"}], "variant_name": ["Hif and Zanga"], "preferred_name": "Hif & Zanga", "country_associated": "gw", "variant_access_point": ["Hif and Zanga"], "authorized_access_point": "Hif & Zanga", "biographical_information": ["Afro-Band um \\"Hif\\" (Anga Belowi) aus Stuttgart"]} 1 -2023-07-08 08:17:38.376703 2023-07-08 08:17:38.37671 2c1d4c0b-c572-458e-9c50-4eb279bbc758 {"md5": "886ce5a88e5ee57ff5d40ce7d95fd89e", "pid": "32064779X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10338021-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10338021-8", "source": "GND"}], "variant_name": ["Naqqara & Salsabil"], "preferred_name": "Naqqara-Salsabil", "country_associated": "gw", "variant_access_point": ["Naqqara & Salsabil"], "authorized_access_point": "Naqqara-Salsabil", "biographical_information": ["Berliner Percussionsensemble"]} 1 -2023-07-08 08:17:38.457365 2023-07-08 08:17:38.45737 35d6ea9d-dea3-4917-b30c-94ad37a3c086 {"md5": "9a5c26283e83c1b7cc26201aaa097f66", "pid": "320648877", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10338120-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10338120-X", "source": "GND"}], "preferred_name": "New Tango Orquesta", "country_associated": "sw", "date_of_establishment": "1995", "authorized_access_point": "New Tango Orquesta"} 1 -2023-07-08 08:17:38.555638 2023-07-08 08:17:38.555643 284dd46a-5515-4cbd-ac3a-7facf9e9fd34 {"md5": "008a2f55bbbf139fc92cdd9b7a0c2806", "pid": "320655458", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10338750-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10338750-X", "source": "GND"}], "preferred_name": "Otti und die Alpenfrieden", "country_associated": "it", "authorized_access_point": "Otti und die Alpenfrieden", "biographical_information": ["Von Othmar Fischnaller in der Nachfolge der Alpenfrieden gegr. Gruppe aus Meransen"]} 1 -2023-07-08 08:17:38.644197 2023-07-08 08:17:38.644202 297943e1-2c60-4f6b-a8bf-cef8c46acd79 {"md5": "49113de050e00d61a4fc4d08ac499f28", "pid": "320663817", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10339558-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10339558-1", "source": "GND"}], "preferred_name": "Hoamstanzer", "country_associated": "it", "authorized_access_point": "Hoamstanzer"} 1 -2023-07-08 08:17:38.726674 2023-07-08 08:17:38.726679 2d310bdb-e1e4-48b6-b8f2-fbc24c7924d2 {"md5": "c104c8da7ba589c29298e4933b18577e", "pid": "320680169", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10341146-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10341146-X", "source": "GND"}], "variant_name": ["New Orleans Opera Orchestra", "Orchester der New Orleans Opera", "Orchestra dell'Opera House", "Orchestra of the New Orleans Opera House"], "preferred_name": "New Orleans Opera. Orchestra", "country_associated": "xxu", "variant_access_point": ["New Orleans Opera Orchestra", "Orchester der New Orleans Opera", "Orchestra dell'Opera House. New Orleans", "Orchestra of the New Orleans Opera House"], "authorized_access_point": "New Orleans Opera. Orchestra"} 1 -2023-07-08 08:17:38.832364 2023-07-08 08:17:38.832368 f146a989-3809-44a3-a9b5-2c8e39b2bdc5 {"md5": "0ed19a680013f3ea0d6f5afcb03aa53a", "pid": "320694577", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10342476-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10342476-3", "source": "GND"}], "preferred_name": "Fonojet", "country_associated": "gw", "authorized_access_point": "Fonojet"} 1 -2023-07-08 08:17:38.919062 2023-07-08 08:17:38.919085 980b3150-f48e-4234-9ae2-681c832f4dcd {"md5": "d2cb1b544e9637bc4e7c99be97b1c502", "pid": "940254522", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5095284-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5095284-5", "source": "GND"}], "variant_name": ["Non-Governmental Organizations Division", "Kanada. International Development Agency. Direction des Organisations Non Gouvernementales", "ONG", "Direction des Organisations Non Gouvernementales", "NGO"], "preferred_name": "Kanada. International Development Agency. Non-Governmental Organizations Division", "country_associated": "xxc", "variant_access_point": ["Non-Governmental Organizations Division. Kanada", "Kanada. International Development Agency. Direction des Organisations Non Gouvernementales", "ONG. Abkuerzung", "Direction des Organisations Non Gouvernementales. Kanada", "NGO. Abkuerzung"], "date_of_establishment": "1968", "authorized_access_point": "Kanada. International Development Agency. Non-Governmental Organizations Division"} 1 -2023-07-08 08:17:39.011444 2023-07-08 08:17:39.011449 1cb29d10-b7fa-40ac-886d-c7d81913b7e5 {"md5": "d0c2c32176b12f707ad059fff027c3a0", "pid": "940263920", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/3018974-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3018974-3", "source": "GND"}], "variant_name": ["Sonderschule", "Elisabethenschule"], "preferred_name": "Schule für Geistigbehinderte", "country_associated": "gw", "variant_access_point": ["Sonderschule. Sprendlingen", "Elisabethenschule. Sprendlingen"], "authorized_access_point": "Schule für Geistigbehinderte. Sprendlingen"} 1 -2023-07-08 08:17:39.106711 2023-07-08 08:17:39.106716 53512bca-2b7f-4291-bd7d-0dfcb128ac8f {"md5": "918d0647a868d653a43d91cf36622e24", "pid": "94027115X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5096106-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5096106-8", "source": "GND"}], "preferred_name": "Ausstellung Serge Brignoni", "country_associated": "sz", "authorized_access_point": "Ausstellung Serge Brignoni, 1993, Basel"} 1 -2023-07-08 08:17:39.196604 2023-07-08 08:17:39.19661 c2baad33-af04-4503-89d6-cc502463b7f7 {"md5": "9d78d1df6c26409512d17b153f4eea37", "pid": "94037238X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5097761-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5097761-1", "source": "GND"}], "variant_name": ["School of Economics and Finance", "Curtin University of Technology. School of Economics and Finance", "School of Economics & Finance", "Curtin Business School. Economics & Finance", "Curtin University. School of Economics and Finance"], "preferred_name": "Curtin Business School. School of Economics and Finance", "country_associated": "at", "variant_access_point": ["School of Economics and Finance. Perth, Western Australia", "Curtin University of Technology. School of Economics and Finance", "School of Economics & Finance. Perth, Western Australia", "Curtin Business School. Economics & Finance", "Curtin University. School of Economics and Finance"], "authorized_access_point": "Curtin Business School. School of Economics and Finance"} 1 -2023-07-08 08:17:39.293603 2023-07-08 08:17:39.293609 097ef2d5-2c31-4809-a657-687cf97de425 {"md5": "bca2dd630e7df244735230531b9c2c34", "pid": "940374412", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5097960-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5097960-7", "source": "GND"}], "preferred_name": "Seminario sul Regime et la Conservazione dei Litorali", "authorized_access_point": "Seminario sul Regime et la Conservazione dei Litorali"} 1 -2023-07-08 08:17:39.391897 2023-07-08 08:17:39.391902 d9185431-719f-49ca-acf7-350e511b68a6 {"md5": "6ca2835bea93d38d1a4db8009ca5c279", "pid": "940433729", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5098759-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5098759-8", "source": "GND"}], "preferred_name": "International Symposium on Neurobehavioral Methods and Effects in Occupational and Environmental Health, 4", "country_associated": "ja", "authorized_access_point": "International Symposium on Neurobehavioral Methods and Effects in Occupational and Environmental Health, 4, 1991, Tokio"} 1 -2023-07-08 08:17:39.482726 2023-07-08 08:17:39.482733 ec2876b2-932a-4a5f-86cb-d757b3a5870b {"md5": "9e384463ffa2681a2072e40f66dbfafd", "pid": "940439611", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5099331-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5099331-8", "source": "GND"}], "variant_name": ["International Conference on Meson Nucleus Interactions", "Meson-Nucleus Interactions Conference", "International Conference on Meson-Nucleus Interactions"], "preferred_name": "Meson Nucleus Interactions Conference", "country_associated": "pl", "variant_access_point": ["International Conference on Meson Nucleus Interactions, 1993, Krakau", "Meson-Nucleus Interactions Conference, 1993, Krakau", "International Conference on Meson-Nucleus Interactions, 1993, Krakau"], "authorized_access_point": "Meson Nucleus Interactions Conference, 1993, Krakau"} 1 -2023-07-08 08:17:39.578763 2023-07-08 08:17:39.57877 b3dc2bbe-2718-4a90-b55b-7941f7694ca4 {"md5": "192bcdbaa5dd6baae20c3a33d7d729f0", "pid": "940547880", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5100092-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5100092-1", "source": "GND"}], "variant_name": ["VEB Energiekombinat"], "preferred_name": "Energiekombinat", "date_of_termination": "28.06.90", "variant_access_point": ["VEB Energiekombinat. Karl-Marx-Stadt"], "authorized_access_point": "Energiekombinat. Karl-Marx-Stadt"} 1 -2023-07-08 08:17:39.664722 2023-07-08 08:17:39.664725 2d36b4e0-b0e2-47e3-8bf0-bfed459a5aaf {"md5": "41c735090235d7d764873ec0129e99dc", "pid": "940552337", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1301063-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1301063-3", "source": "GND"}], "preferred_name": "Infratest GmbH und Co. KG. Epidemiologie und Gesundheitsforschung", "country_associated": "gw", "authorized_access_point": "Infratest GmbH und Co. KG. München. Epidemiologie und Gesundheitsforschung"} 1 -2023-07-08 08:17:39.748781 2023-07-08 08:17:39.748789 758d3326-14c9-40b5-bc7a-715f9c90d24e {"md5": "5b3974073a30224871f48c4813899f0b", "pid": "940717395", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5101445-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5101445-2", "source": "GND"}], "preferred_name": "Katholische Schulorganisation der Diözese Limburg", "authorized_access_point": "Katholische Schulorganisation der Diözese Limburg"} 1 -2023-07-08 08:17:39.842386 2023-07-08 08:17:39.842392 1b4f35dd-7d6e-488e-a061-cf85005b53ca {"md5": "31f3b8b0df72e4d445fbfd16617a864d", "pid": "940975262", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5104089-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5104089-X", "source": "GND"}], "variant_name": ["Conference dedicated to the Centennial of Anna Akhmatova"], "preferred_name": "Dartmouth Conference dedicated to the Centennial of Anna Akhmatova", "country_associated": "xxu", "variant_access_point": ["Conference dedicated to the Centennial of Anna Akhmatova, 1989, Hanover, NH"], "authorized_access_point": "Dartmouth Conference dedicated to the Centennial of Anna Akhmatova, 1989, Hanover, NH"} 1 -2023-07-08 08:17:39.941914 2023-07-08 08:17:39.941919 7cde3807-42bf-4b96-b2fd-abd23cd7ff00 {"md5": "0ed00758c61a71f8348a28c0cec0892f", "pid": "940977877", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5104334-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5104334-8", "source": "GND"}], "variant_name": ["Ökumenisches Gespräch"], "preferred_name": "Amsterdamer Ökumenisches Gespräch", "country_associated": "ne", "variant_access_point": ["Ökumenisches Gespräch, 1948, Amsterdam"], "authorized_access_point": "Amsterdamer Ökumenisches Gespräch, 1948"} 1 -2023-07-08 08:17:40.02799 2023-07-08 08:17:40.027995 844e916c-1f79-4696-aec3-f4fcef99d83f {"md5": "4f15684baac3d76b6ab8f07843c0e5ab", "pid": "940981769", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5104645-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5104645-3", "source": "GND"}], "preferred_name": "Entwicklerforum Programmierbare Logikbausteine, 2", "authorized_access_point": "Entwicklerforum Programmierbare Logikbausteine, 2, 1989, München"} 1 -2023-07-08 08:17:40.113835 2023-07-08 08:17:40.113839 5a005cc3-c4f5-41f7-ba91-e965358f2051 {"md5": "245887eff618db119b18a4f1b8b30318", "pid": "940982315", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5104697-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5104697-0", "source": "GND"}], "variant_name": ["ABCS"], "preferred_name": "Association of British Council Scholars", "country_associated": "ii", "variant_access_point": ["ABCS. Abkuerzung"], "authorized_access_point": "Association of British Council Scholars"} 1 -2023-07-08 08:17:40.196477 2023-07-08 08:17:40.19648 7282f5b4-58c5-421b-b537-5e1491c0b687 {"md5": "028faee42aaf5cc192c676013cdcd1d3", "pid": "941017893", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5105001-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5105001-8", "source": "GND"}], "variant_name": ["Städtische Theater. Theater Oben"], "preferred_name": "Theater Oben", "variant_access_point": ["Städtische Theater. Karl-Marx-Stadt. Theater Oben"], "authorized_access_point": "Theater Oben. Karl-Marx-Stadt"} 1 -2023-07-08 08:17:40.296397 2023-07-08 08:17:40.296401 d3fe77ff-43b3-45ee-b28f-7bc3283d4955 {"md5": "44f108e2419f0e65b23f187d2651abbd", "pid": "941089150", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5105210-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5105210-6", "source": "GND"}], "variant_name": ["Policía"], "preferred_name": "Venezuela. Policía", "country_associated": "ve", "variant_access_point": ["Policía. Venezuela, Distrito Federal"], "authorized_access_point": "Venezuela. Distrito Federal. Policía"} 1 -2023-07-08 08:17:40.389793 2023-07-08 08:17:40.389797 64879803-5af3-4433-9030-ff7072700c06 {"md5": "a664ee5b3cf2a77d066ddfcbf0494a79", "pid": "941275590", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5106167-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5106167-3", "source": "GND"}], "preferred_name": "Exhibition Prints and Related Drawings by the Carracci Family", "country_associated": "xxu", "authorized_access_point": "Exhibition Prints and Related Drawings by the Carracci Family, 1979, Washington, DC"} 1 -2023-07-08 08:17:40.4769 2023-07-08 08:17:40.476906 7b6a8b5b-58b9-4f23-8c8a-542bdd073004 {"md5": "2787b82dd67ac67b27025964bc869f41", "pid": "941281973", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5106772-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5106772-9", "source": "GND"}], "preferred_name": "Ausstellung Fliegende Bauten", "authorized_access_point": "Ausstellung Fliegende Bauten, 1993, Stuttgart"} 1 -2023-07-08 08:17:40.555228 2023-07-08 08:17:40.555236 75e451d2-a22b-48f4-9476-79e1f777d5b3 {"md5": "92fea89fd3664a12b136e68433cf6464", "pid": "941346447", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5107295-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5107295-6", "source": "GND"}], "variant_name": ["Sugar Technologists Association", "PHILSUTECH"], "preferred_name": "Philippine Sugar Technologists Association", "country_associated": "ph", "variant_access_point": ["Sugar Technologists Association. Philippinen", "PHILSUTECH. Abkuerzung"], "authorized_access_point": "Philippine Sugar Technologists Association"} 1 -2023-07-08 08:17:40.645582 2023-07-08 08:17:40.645589 51c4b79c-a9ba-4837-8a25-5520b271b85a {"md5": "675113a37b537fabe193bd5490a982f7", "pid": "941637379", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5108177-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5108177-5", "source": "GND"}], "variant_name": ["DIMACS Workshop on Expander Graphs", "Expander Graphs Workshop", "Expander Graphs"], "preferred_name": "Workshop on Expander Graphs", "country_associated": "xxu", "variant_access_point": ["DIMACS Workshop on Expander Graphs, 1992, Princeton, NJ", "Expander Graphs Workshop, 1992, Princeton, NJ", "Expander Graphs, 1992, Princeton, NJ"], "authorized_access_point": "Workshop on Expander Graphs, 1992, Princeton, NJ"} 1 -2023-07-08 08:17:40.740067 2023-07-08 08:17:40.740079 2f4542ed-bcd6-41c8-892c-a6c17ac51d0b {"md5": "ceaafd420b1b94b24db4884bcb85cdef", "pid": "941671380", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5109269-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5109269-4", "source": "GND"}], "variant_name": ["Verband der Deutschen Buchdrucker. Gau Bayern. Mitgliedschaft Nürnberg"], "preferred_name": "Verband der Deutschen Buchdrucker. Mitgliedschaft Nürnberg", "variant_access_point": ["Verband der Deutschen Buchdrucker. Gau Bayern. Mitgliedschaft Nürnberg"], "authorized_access_point": "Verband der Deutschen Buchdrucker. Mitgliedschaft Nürnberg"} 1 -2023-07-08 08:17:40.838008 2023-07-08 08:17:40.838017 74e62427-17c4-43a0-85db-de86c1f091a3 {"md5": "4a480c882c401638e0ec0567908431a1", "pid": "94192582X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5109741-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5109741-2", "source": "GND"}], "preferred_name": "Associazione Toscana Gallerie d'Arte Moderna", "country_associated": "it", "authorized_access_point": "Associazione Toscana Gallerie d'Arte Moderna"} 1 -2023-07-08 08:17:40.940948 2023-07-08 08:17:40.940957 ae6b292c-635b-4bae-b7b9-fddc6cfa4e33 {"md5": "651c0e86f671f7a52412291231506648", "pid": "941943933", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5110816-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5110816-1", "source": "GND"}], "preferred_name": "Kassenärztliche Vereinigung Mecklenburg-Vorpommern", "country_associated": "gw", "authorized_access_point": "Kassenärztliche Vereinigung Mecklenburg-Vorpommern"} 1 -2023-07-08 08:17:41.059158 2023-07-08 08:17:41.059165 6c43c897-9047-4f18-b330-dc333d7ce71f {"md5": "21d60966ff32df45837aa08f3d8d1bb9", "pid": "941953912", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2139291-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2139291-2", "source": "GND"}], "preferred_name": "Arbeitsgruppe Endoprothetik", "country_associated": "gw", "authorized_access_point": "Arbeitsgruppe Endoprothetik"} 1 -2023-07-08 08:17:41.141218 2023-07-08 08:17:41.141224 814994c8-2e27-4feb-8998-34156d7163aa {"md5": "b3bfe7e08ebd6e1f65bda5e3d15296a1", "pid": "942048636", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1227394-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1227394-6", "source": "GND"}], "variant_name": ["Diethnes Synedrio Neograeca Medii Aevi, 2"], "preferred_name": "Congresso Internazionale Neograeca Medii Aevi, 2", "country_associated": "it", "variant_access_point": ["Diethnes Synedrio Neograeca Medii Aevi, 2, 1991, Venedig"], "authorized_access_point": "Congresso Internazionale Neograeca Medii Aevi, 2, 1991, Venedig"} 1 -2023-07-08 08:17:41.213111 2023-07-08 08:17:41.213114 76958ecf-9e15-40ca-950f-6c6d45fc37f7 {"md5": "0bf5cb6a8f4840016a10d98517ac8868", "pid": "94205086X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1227928-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1227928-6", "source": "GND"}], "variant_name": ["Creberg"], "preferred_name": "Credito Bergamasco", "country_associated": "it", "variant_access_point": ["Creberg"], "authorized_access_point": "Credito Bergamasco", "biographical_information": ["Genossenschaftbank 1.6.1891 in Bergamo gegründet, seit 1.7.2007 Teil der Bankengruppe Banco Popolare"]} 1 -2023-07-08 08:17:41.284314 2023-07-08 08:17:41.284317 886b3c75-2fc8-4203-91bf-3f3f0aa1e49b {"md5": "b4fa6cb1ca3aef3a44b2d0e9a942d5ee", "pid": "942050878", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1227930-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1227930-4", "source": "GND"}], "variant_name": ["International Food Legume Research Conference on Pea, Lentil, Faba Bean, Chickpea, and Grasspea", "IFLRC, 2", "International Food Legume Research Conference on Pea, Lentil, Faba Bean, Chickpea, and Grasspea"], "preferred_name": "International Food Legume Research Conference, 2", "variant_access_point": ["International Food Legume Research Conference on Pea, Lentil, Faba Bean, Chickpea, and Grasspea, 1992, al-Qāhira", "IFLRC, 2, 1992, al-Qāhira", "International Food Legume Research Conference on Pea, Lentil, Faba Bean, Chickpea, and Grasspea, 1992, Cairo"], "authorized_access_point": "International Food Legume Research Conference, 2, 1992, al-Qāhira"} 1 -2023-07-08 08:17:41.354099 2023-07-08 08:17:41.354102 1ed14f0e-5366-46f2-a53b-b51dbcf67706 {"md5": "cd0d0c609d488696a7bea892be3fc027", "pid": "942070747", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2139670-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2139670-X", "source": "GND"}], "variant_name": ["Osterwald, Druckerei H.", "Osterwald", "Druckerei H. Osterwald"], "preferred_name": "Druckerei H. Osterwald", "variant_access_point": ["Osterwald, Druckerei H.. Hannover", "Osterwald. Hannover", "Druckerei H. Osterwald. Firma"], "date_of_establishment": "1863", "authorized_access_point": "Druckerei H. Osterwald. Hannover", "biographical_information": ["betrieb auch eine Buchbinderei"]} 1 -2023-07-08 08:17:41.427852 2023-07-08 08:17:41.427858 b1950686-3da0-4729-872c-2da0645eec3a {"md5": "9eb2d717583239a254bebae31065b8ee", "pid": "942199448", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2140079-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2140079-9", "source": "GND"}], "variant_name": ["Ausstellung East of Eden"], "preferred_name": "Ausstellung East of Eden", "variant_access_point": ["Ausstellung East of Eden, 1994, Dessau"], "authorized_access_point": "Ausstellung East of Eden, 1994, Mosigkau"} 1 -2023-07-08 08:17:41.505562 2023-07-08 08:17:41.505565 ae2ece0e-d272-4719-8e2c-5eab251c0c5a {"md5": "713bc7632fb0391977e093df10e31ad5", "pid": "942320220", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2140465-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2140465-3", "source": "GND"}], "variant_name": ["Dnevi Kulture Zvezne Republike Nemčije"], "preferred_name": "Kulturtage der Bundesrepublik Deutschland", "variant_access_point": ["Dnevi Kulture Zvezne Republike Nemčije, 1981, Ljubljana"], "authorized_access_point": "Kulturtage der Bundesrepublik Deutschland, 1981, Ljubljana"} 1 -2023-07-08 08:17:41.57413 2023-07-08 08:17:41.574136 da554047-2f5f-4be9-8d82-ca0205a58056 {"md5": "1b4f64b22340bd9e60cb5678557f5c0d", "pid": "942384849", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1600168-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1600168-0", "source": "GND"}], "variant_name": ["Schützenverein Waldeslust", "Schützenverein", "Schützenverein Waldeslust. Roding", "Schützenverein Waldeslust Roding"], "preferred_name": "Schützenverein Waldeslust", "country_associated": "gw", "variant_access_point": ["Schützenverein Waldeslust. Roding", "Schützenverein. Roding-Bahnhof", "Schützenverein Waldeslust. Roding. Bahnhof", "Schützenverein Waldeslust Roding. Roding, Bahnhof. Ehemalige Vorzugsbenennung SWD"], "authorized_access_point": "Schützenverein Waldeslust. Roding-Bahnhof"} 1 -2023-07-08 08:17:41.647354 2023-07-08 08:17:41.64736 415b5e3b-9d61-46ac-a67d-0fbb517cc3a0 {"md5": "509fd2f2ae69f923e706825a68e46899", "pid": "94242283X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5113093-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5113093-2", "source": "GND"}], "variant_name": ["Symposion über Blutgerinnung, 12"], "preferred_name": "Hamburger Symposion über Blutgerinnung, 12", "country_associated": "gw", "variant_access_point": ["Symposion über Blutgerinnung, 12, 1969, Hamburg"], "authorized_access_point": "Hamburger Symposion über Blutgerinnung, 12, 1969, Hamburg"} 1 -2023-07-08 08:17:41.717478 2023-07-08 08:17:41.717481 86267db7-ac70-43a5-92cf-1b515d054bf8 {"md5": "42ca4ccddde61e1e2ca59c992c8a95b8", "pid": "942428595", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5113662-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5113662-4", "source": "GND"}], "preferred_name": "International Symposium on Human Chlamydial Infections, 7", "country_associated": "xxc", "authorized_access_point": "International Symposium on Human Chlamydial Infections, 7, 1990, Harrison Hot Springs, British Columbia"} 1 -2023-07-08 08:17:41.792943 2023-07-08 08:17:41.792948 837cadaf-502b-4165-ac39-8ed927f3de88 {"md5": "ce25ac610826562718113a6fae425264", "pid": "942565762", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5114650-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5114650-2", "source": "GND"}], "preferred_name": "Envirocell", "country_associated": "xxk", "authorized_access_point": "Envirocell. Ashtead"} 1 -2023-07-08 08:17:41.860962 2023-07-08 08:17:41.860968 4026c486-a00a-4cd2-aa2f-31a775fdfcf8 {"md5": "c3912c63e53e7923f4aece1cafc9cf7d", "pid": "942662024", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5116117-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5116117-5", "source": "GND"}], "variant_name": ["Kunsthaus C. Küppers", "Küppers, Kunsthaus C."], "preferred_name": "C. Küppers GmbH", "country_associated": "gw", "variant_access_point": ["Kunsthaus C. Küppers", "Küppers, Kunsthaus C."], "authorized_access_point": "C. Küppers GmbH"} 1 -2023-07-08 08:17:41.931005 2023-07-08 08:17:41.931008 7542eced-f8f8-4312-bec0-a57fd8186ad1 {"md5": "5dd5b128c6d6cf0ff1d7c5bfd403b358", "pid": "942856015", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5116674-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5116674-4", "source": "GND"}], "preferred_name": "Arbeitsgemeinschaft Bonner Künstler", "country_associated": "gw", "authorized_access_point": "Arbeitsgemeinschaft Bonner Künstler"} 1 -2023-07-08 08:17:42.000544 2023-07-08 08:17:42.000547 4c53fb1f-dac9-4e36-97dc-b4b64dc6c867 {"md5": "208eff1a07e3fb3af467f7d7cf6cc58f", "pid": "942894871", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1228559-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1228559-6", "source": "GND"}], "variant_name": ["Freiwillige Feuerwehr", "Freiwillige Feuerwehr. Dieberg", "Freiwillige Feuerwehr Dieberg"], "preferred_name": "Freiwillige Feuerwehr", "country_associated": "gw", "variant_access_point": ["Freiwillige Feuerwehr. Walderbach-Dieberg", "Freiwillige Feuerwehr. Dieberg. Walderbach", "Freiwillige Feuerwehr Dieberg. Ehemalige Vorzugsbenennung SWD"], "authorized_access_point": "Freiwillige Feuerwehr. Dieberg, Walderbach"} 1 -2023-07-08 08:17:42.083801 2023-07-08 08:17:42.083804 aad453b1-bd45-4233-81f7-d3d6da6becb4 {"md5": "b8c65d4ea21b0a1b8739c0eb7e706130", "pid": "942904168", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5116819-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5116819-4", "source": "GND"}], "preferred_name": "Bundes-Turn- und Sportfest", "date_of_establishment": "1930", "authorized_access_point": "Bundes-Turn- und Sportfest, Tschechoslowakei"} 1 -2023-07-08 08:17:42.153642 2023-07-08 08:17:42.153645 a6aec3dc-3c1b-46e8-8228-77b1d54a3844 {"md5": "23f65305f14bb4360dd1910c30d00035", "pid": "942915232", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5117828-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5117828-X", "source": "GND"}], "variant_name": ["Seminari Annuali di Letterature Francofone"], "preferred_name": "Seminari di Letterature Francofone", "variant_access_point": ["Seminari Annuali di Letterature Francofone"], "authorized_access_point": "Seminari di Letterature Francofone"} 1 -2023-07-08 08:17:42.227189 2023-07-08 08:17:42.227195 9b756eaa-5ac2-4ed1-b9b3-8f91dbffb05a {"md5": "2af20ac42210e140f91786f29a94a8e2", "pid": "942918584", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5118135-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5118135-6", "source": "GND"}], "variant_name": ["Landschaftsverein Elbetal"], "preferred_name": "Deutscher Heimatbund. Landschaftsverein Elbetal", "variant_access_point": ["Landschaftsverein Elbetal"], "authorized_access_point": "Deutscher Heimatbund. Landschaftsverein Elbetal"} 1 -2023-07-08 08:17:42.298625 2023-07-08 08:17:42.298631 a0837d6e-ee25-4197-bb26-cf7b11e63dc7 {"md5": "e4c9698f49431679191bef43779ee671", "pid": "942954297", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2142121-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2142121-3", "source": "GND"}], "variant_name": ["Engel-Presse Walter Stähle", "Stähle, Ernst-Engel-Presse Walter"], "preferred_name": "Ernst-Engel-Presse Walter Stähle", "country_associated": "gw", "variant_access_point": ["Engel-Presse Walter Stähle. Meersburg", "Stähle, Ernst-Engel-Presse Walter. Meersburg"], "authorized_access_point": "Ernst-Engel-Presse Walter Stähle. Meersburg"} 1 -2023-07-08 08:17:42.372301 2023-07-08 08:17:42.372305 57e42155-3e6b-4001-9851-c2d7efbeb463 {"md5": "ecdb98416c8efee1a1a0ea4dafa185ef", "pid": "942982096", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2142235-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2142235-7", "source": "GND"}], "variant_name": ["MGV Concordia 1876 Schifferstadt", "MGV Concordia Schifferstadt", "Männergesangverein Concordia Schifferstadt"], "preferred_name": "Männergesangverein Concordia 1876 Schifferstadt", "country_associated": "gw", "variant_access_point": ["MGV Concordia 1876 Schifferstadt", "MGV Concordia Schifferstadt", "Männergesangverein Concordia Schifferstadt"], "authorized_access_point": "Männergesangverein Concordia 1876 Schifferstadt"} 1 -2023-07-08 08:17:42.469642 2023-07-08 08:17:42.469646 ffd85c08-4a2e-4556-a713-a72cb07a6016 {"md5": "1fa7c0b2f5d5465162dd803d97d461e4", "pid": "943645956", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5119088-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5119088-6", "source": "GND"}], "preferred_name": "Windthorst-Bund. Ortsgruppe", "date_of_termination": "1904", "authorized_access_point": "Windthorst-Bund. Ortsgruppe. Köln-Ehrenfeld"} 1 -2023-07-08 08:17:44.886208 2023-07-08 08:17:44.886221 2e7f7a39-54e3-45a2-8b50-3196ac7e799d {"md5": "57aefc1c1a69ef6e9816f46969d26b04", "pid": "944797199", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5130855-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5130855-1", "source": "GND"}], "variant_name": ["Landwirtschaftskammer für die Provinz Ostpreußen. Viehversicherungsverband", "Viehversicherungsverband der Landwirtschaftskammer für die Provinz Ostpreußen"], "preferred_name": "Viehversicherungsverband", "variant_access_point": ["Landwirtschaftskammer für die Provinz Ostpreußen. Viehversicherungsverband", "Viehversicherungsverband der Landwirtschaftskammer für die Provinz Ostpreußen"], "authorized_access_point": "Viehversicherungsverband", "biographical_information": ["Sitz: Königsberg"]} 1 -2023-07-08 08:17:42.53799 2023-07-08 08:17:42.537994 2e4120fb-7e4d-455a-b22c-03228caef2ad {"md5": "997ff341b85b88010fba5f8ef8d04ffd", "pid": "943646448", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5119137-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5119137-4", "source": "GND"}], "variant_name": ["Ministerium für Ackerbau, Handel und Öffentliche Arbeiten", "Deutsches Reich. Minister für Ackerbau, Handel und Öffentliche Arbeiten", "Minister für Ackerbau, Handel und Öffentliche Arbeiten"], "preferred_name": "Deutsches Reich. Ministerium für Ackerbau, Handel und Öffentliche Arbeiten", "variant_access_point": ["Ministerium für Ackerbau, Handel und Öffentliche Arbeiten. Deutsches Reich", "Deutsches Reich. Minister für Ackerbau, Handel und Öffentliche Arbeiten", "Minister für Ackerbau, Handel und Öffentliche Arbeiten. Deutsches Reich"], "authorized_access_point": "Deutsches Reich. Ministerium für Ackerbau, Handel und Öffentliche Arbeiten"} 1 -2023-07-08 08:17:42.616257 2023-07-08 08:17:42.61626 ae6c9614-0af7-4ea9-90b0-172915b6c35d {"md5": "68a01075837a3b3afdb9732f2a356f0f", "pid": "943654904", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1700380-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1700380-5", "source": "GND"}], "variant_name": ["CSU", "CSU-Ortsverband Kirchheim", "Christlich-Soziale Union in Bayern. Ortsverband Kirchheim"], "preferred_name": "Christlich-Soziale Union in Bayern. Ortsverband", "country_associated": "gw", "variant_access_point": ["CSU. Kirchheim, Würzburg", "CSU-Ortsverband Kirchheim", "Christlich-Soziale Union in Bayern. Ortsverband Kirchheim. Ehemalige Vorzugsbenennung SWD"], "authorized_access_point": "Christlich-Soziale Union in Bayern. Ortsverband. Kirchheim, Würzburg"} 1 -2023-07-08 08:17:42.696206 2023-07-08 08:17:42.696209 d1a94b5d-1255-40ec-9c78-6726521bc07f {"md5": "d46ec845b1e50529e4582fa23ae7b754", "pid": "943708826", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5120661-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5120661-4", "source": "GND"}], "variant_name": ["Diócesis. Capitular de la Catedral", "Capitular de la Catedral"], "preferred_name": "Diócesis", "country_associated": "sp", "variant_access_point": ["Diócesis. Calahorra. Capitular de la Catedral. Diócesis, Calahorra", "Capitular de la Catedral. Diócesis, Calahorra"], "authorized_access_point": "Diócesis. Calahorra"} 1 -2023-07-08 08:17:42.771117 2023-07-08 08:17:42.771121 ab07f321-94da-4f13-bc41-b66e656f1803 {"md5": "ffb56b020cc308ddf4c49a619496b6da", "pid": "943780411", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5121444-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5121444-1", "source": "GND"}], "variant_name": ["Sociedad Panamericana de Diálisis y Trasplantes", "SPDT", "Sociedad Pan Americana de Diálisis y Transplante", "PSDT"], "preferred_name": "Pan-American Society for Dialysis and Transplantation", "date_of_termination": "1999", "variant_access_point": ["Sociedad Panamericana de Diálisis y Trasplantes", "SPDT. Abkuerzung", "Sociedad Pan Americana de Diálisis y Transplante", "PSDT. Abkuerzung"], "date_of_establishment": "1987", "authorized_access_point": "Pan-American Society for Dialysis and Transplantation"} 1 -2023-07-08 08:17:42.839038 2023-07-08 08:17:42.839041 79f9e610-42db-4c42-b3cd-c3a042b3f402 {"md5": "d7df121c182cf072abbd5281ce107ce8", "pid": "943780489", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5121450-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5121450-7", "source": "GND"}], "preferred_name": "Zentrale Arbeitstagung zur Marxistisch-Leninistischen Weiterbildung", "authorized_access_point": "Zentrale Arbeitstagung zur Marxistisch-Leninistischen Weiterbildung"} 1 -2023-07-08 08:17:42.906148 2023-07-08 08:17:42.906152 fddb7103-2f5f-4e7d-94ca-58b68b621b59 {"md5": "b6001c56aa07a1dad8d7d3669e81918c", "pid": "943895758", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1227825-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1227825-7", "source": "GND"}], "variant_name": ["Verein zur Förderung des Fremdenverkehrs in Nürnberg"], "preferred_name": "Verein zur Förderung des Fremdenverkehrs in Nürnberg und Umgebung", "variant_access_point": ["Verein zur Förderung des Fremdenverkehrs in Nürnberg"], "authorized_access_point": "Verein zur Förderung des Fremdenverkehrs in Nürnberg und Umgebung"} 1 -2023-07-08 08:17:42.97031 2023-07-08 08:17:42.970314 05e8b705-bd5d-460d-ab87-8ddeafd44547 {"md5": "78d1ccf50ce28a9be11c7cc47955ca5a", "pid": "943900069", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1229787-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1229787-2", "source": "GND"}], "variant_name": ["NAPE"], "preferred_name": "National Association for Primary Education", "variant_access_point": ["NAPE. Abkuerzung"], "authorized_access_point": "National Association for Primary Education"} 1 -2023-07-08 08:17:43.045632 2023-07-08 08:17:43.045638 040c00ef-f961-4d24-a2a3-84daa8227e5a {"md5": "1881e7455f356da80987ca1960f805c3", "pid": "943913152", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/3024590-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3024590-4", "source": "GND"}], "variant_name": ["Institute of Economic Geography and Space Organization", "Uniwersytet Łódzki. Instytut Geografii Ekonomicznej i Organizacji Przestrzeni", "Uniwersytet Łódzki. Institute of Economic Geography and Space Organization"], "preferred_name": "Instytut Geografii Ekonomicznej i Organizacji Przestrzeni", "country_associated": "pl", "variant_access_point": ["Institute of Economic Geography and Space Organization. Lodz", "Uniwersytet Łódzki. Instytut Geografii Ekonomicznej i Organizacji Przestrzeni", "Uniwersytet Łódzki. Institute of Economic Geography and Space Organization"], "authorized_access_point": "Instytut Geografii Ekonomicznej i Organizacji Przestrzeni. Lodz"} 1 -2023-07-08 08:17:44.971566 2023-07-08 08:17:44.971578 c6f8ca7d-57a2-4a4f-b292-6d23566d04dc {"md5": "1500311abcb4ee0cb2dfb73013d94e72", "pid": "944825028", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1230429-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1230429-3", "source": "GND"}], "preferred_name": "Observatorio Sismológico Vicente Inglada", "country_associated": "sp", "authorized_access_point": "Observatorio Sismológico Vicente Inglada. Alicante"} 1 -2023-07-08 08:17:43.143031 2023-07-08 08:17:43.143038 7ec0247c-42ed-41e7-b267-5bcddb572559 {"md5": "c354a6d7ddcf66f978fad7e62b1c231b", "pid": "943915236", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5121991-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5121991-8", "source": "GND"}], "variant_name": ["1993 Års Vallagskommitté", "Schweden. Justitiedepartementet. 1993 Års Vallagskommitté", "Schweden. Nittonhundrånittiotre Års Vallagskommitté", "Nittonhundrånittiotre Års Vallagskommitté", "Schweden. Justitiedepartementet. Nittonhundrånittiotre Års Vallagskommitté", "Schweden. Vallagskommitté", "Vallagskommitté", "Schweden. Justitiedepartementet. Vallagskommitté"], "preferred_name": "Schweden. 1993 Års Vallagskommitté", "country_associated": "sw", "variant_access_point": ["1993 Års Vallagskommitté. Schweden", "Schweden. Justitiedepartementet. 1993 Års Vallagskommitté", "Schweden. Nittonhundrånittiotre Års Vallagskommitté", "Nittonhundrånittiotre Års Vallagskommitté. Schweden", "Schweden. Justitiedepartementet. Nittonhundrånittiotre Års Vallagskommitté", "Schweden. Vallagskommitté", "Vallagskommitté. Schweden", "Schweden. Justitiedepartementet. Vallagskommitté"], "authorized_access_point": "Schweden. 1993 Års Vallagskommitté"} 1 -2023-07-08 08:17:43.237026 2023-07-08 08:17:43.237028 3d08c693-037a-4bff-8e06-5fc8248080aa {"md5": "c8af4d9ec2640552ae7065dc7074756f", "pid": "944068960", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1228915-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1228915-2", "source": "GND"}], "variant_name": ["Réunion des Jurys et Comités des Expositions Universelles", "CFEE"], "preferred_name": "Comité Français des Expositions à l'Etranger", "variant_access_point": ["Réunion des Jurys et Comités des Expositions Universelles", "CFEE. Abkuerzung"], "date_of_establishment": "1895", "authorized_access_point": "Comité Français des Expositions à l'Etranger", "biographical_information": ["Sitz: Paris"]} 1 -2023-07-08 08:17:43.333698 2023-07-08 08:17:43.333709 7b2c5769-4141-4ad5-b2d9-89ab04a2f8d4 {"md5": "15d0662d4d10d0c77adab61cc64138f1", "pid": "944075738", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1700551-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1700551-6", "source": "GND"}], "preferred_name": "Tage der Alten Musik", "country_associated": "gw", "authorized_access_point": "Tage der Alten Musik, 1988, Würzburg"} 1 -2023-07-08 08:17:43.439037 2023-07-08 08:17:43.439044 78a1cd84-80be-4d7f-b0b5-2f30e4bfc90d {"md5": "cf7eebb77439241a166c5a6bc538db1f", "pid": "944081274", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5124584-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5124584-X", "source": "GND"}], "preferred_name": "Academia Nocturna Jovenes", "country_associated": "sp", "authorized_access_point": "Academia Nocturna Jovenes. Madrid"} 1 -2023-07-08 08:17:43.529918 2023-07-08 08:17:43.529923 47d2bd38-b312-453d-9cde-ebd40e3c94ef {"md5": "cd8fd16e8b9d480e468421d0cb03c555", "pid": "944087809", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5125194-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5125194-2", "source": "GND"}], "preferred_name": "Marokko-Minen-Syndikat", "country_associated": "mr", "authorized_access_point": "Marokko-Minen-Syndikat", "biographical_information": ["Marokk. Name n. erm."]} 1 -2023-07-08 08:17:43.616659 2023-07-08 08:17:43.616668 75bad8ff-c74d-4c95-8ae2-40ba9e2c8d66 {"md5": "c0527fdbda45d2e357d48994362f2448", "pid": "944148816", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5126005-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5126005-0", "source": "GND"}], "variant_name": ["Hochmeistergemeinde Halensee", "Hochmeister-Kirchengemeinde Halensee", "Evangelische Hochmeisterkirche Halensee"], "preferred_name": "Evangelische Hochmeister-Kirchengemeinde Halensee", "country_associated": "gw", "variant_access_point": ["Hochmeistergemeinde Halensee", "Hochmeister-Kirchengemeinde Halensee", "Evangelische Hochmeisterkirche Halensee"], "authorized_access_point": "Evangelische Hochmeister-Kirchengemeinde Halensee"} 1 -2023-07-08 08:17:43.70147 2023-07-08 08:17:43.701478 76c90be9-4403-463d-aab0-f31adbcc4cbe {"md5": "6efcee521a6b37610efec4438fa5e0c5", "pid": "944150284", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5126149-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5126149-2", "source": "GND"}], "variant_name": ["International Conference on Hot Isostatic Pressing, 1"], "preferred_name": "HIP, 1", "country_associated": "sw", "variant_access_point": ["International Conference on Hot Isostatic Pressing, 1, 1987, Luleå"], "authorized_access_point": "HIP, 1, 1987, Luleå"} 1 -2023-07-08 08:17:43.796029 2023-07-08 08:17:43.796034 285e3dcd-3c01-4d69-8eb1-1cf297a3ac06 {"md5": "b6fdc2cafb4eefabaf409ee1979318b4", "pid": "944150381", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5126157-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5126157-1", "source": "GND"}], "variant_name": ["Kafedra Dorevoljucionnoj Otečestvennoj Istorii"], "preferred_name": "Samarskij Gosudarstvennyj Universitet. Kafedra Dorevoljucionnoj Otečestvennoj Istorii", "country_associated": "ru", "variant_access_point": ["Kafedra Dorevoljucionnoj Otečestvennoj Istorii. Samara"], "authorized_access_point": "Samarskij Gosudarstvennyj Universitet. Kafedra Dorevoljucionnoj Otečestvennoj Istorii"} 1 -2023-07-08 08:17:43.891458 2023-07-08 08:17:43.891463 d4a203b1-2cbe-4c90-84de-6565e6fc7c88 {"md5": "2c5b98a676aa0bae66df57b158d90827", "pid": "944150993", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5126210-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5126210-1", "source": "GND"}], "variant_name": ["ACC, 13"], "preferred_name": "American Control Conference, 13", "country_associated": "xxu", "variant_access_point": ["ACC, 13, 1994, Baltimore, Md."], "authorized_access_point": "American Control Conference, 13, 1994, Baltimore, Md."} 1 -2023-07-08 08:17:46.552343 2023-07-08 08:17:46.552351 3c68a788-64e9-4603-bce0-8ce8c354b447 {"md5": "392ebbb32b03de08ff8bc0064f0ca979", "pid": "945073232", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5143540-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5143540-8", "source": "GND"}], "preferred_name": "Seminar on Parallel Programming Systems", "country_associated": "ja", "authorized_access_point": "Seminar on Parallel Programming Systems, 1992, Tokio"} 1 -2023-07-08 08:17:43.982183 2023-07-08 08:17:43.982187 eb05132a-7bf1-402e-8094-c6a626eb6187 {"md5": "d900f71de19c4157ceba777ca1b7c375", "pid": "944155383", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5126592-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5126592-8", "source": "GND"}], "variant_name": ["ERB", "ERB", "Network of Experimental and Representative Basins", "Euromediterranean Network of ERB", "Euromediterranean Network of Experimental and Representative Basins", "ERB"], "preferred_name": "European Network of Experimental and Representative Basins", "variant_access_point": ["ERB. Abkuerzung", "ERB. European Network of Experimental and Representative Basins", "Network of Experimental and Representative Basins", "Euromediterranean Network of ERB", "Euromediterranean Network of Experimental and Representative Basins", "ERB. Euromediterranean Network of Experimental and Representative Basins"], "authorized_access_point": "European Network of Experimental and Representative Basins"} 1 -2023-07-08 08:17:44.066981 2023-07-08 08:17:44.066992 f5c1957f-d796-416a-9e30-c1e01036f87a {"md5": "63d477feb2a78bcab7b3c5e75b592a78", "pid": "944191908", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1301716-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1301716-0", "source": "GND"}], "preferred_name": "Journées d'Endocrinologie et de Nutrition", "country_associated": "fr", "authorized_access_point": "Journées d'Endocrinologie et de Nutrition, 1970, Paris"} 1 -2023-07-08 08:17:44.161109 2023-07-08 08:17:44.161115 f0f514ff-16f0-4f4c-ba38-e018deaa2dec {"md5": "49c293d9e481a0fee586d325f2246aec", "pid": "94419558X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/3025455-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3025455-3", "source": "GND"}], "variant_name": ["NUREC"], "preferred_name": "Network on Urban Research in the European Community", "variant_access_point": ["NUREC. Abkuerzung"], "authorized_access_point": "Network on Urban Research in the European Community"} 1 -2023-07-08 08:17:44.234989 2023-07-08 08:17:44.234994 36cc3713-1c53-4e92-8b77-09479c4cca12 {"md5": "7c5aaeea34e4a441fd3551d39393b839", "pid": "944242898", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2146601-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2146601-4", "source": "GND"}], "preferred_name": "Ausstellung Klaus Bertelsmann", "country_associated": "gw", "authorized_access_point": "Ausstellung Klaus Bertelsmann, 1961, Lüneburg"} 1 -2023-07-08 08:17:44.322693 2023-07-08 08:17:44.322701 7bf02196-3695-4ef7-8eb0-d73717b64b10 {"md5": "d68f822c29cc34ef5e0685aa2a64911f", "pid": "944290604", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5127848-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5127848-0", "source": "GND"}], "preferred_name": "Einheitskurzschrift-Verein", "authorized_access_point": "Einheitskurzschrift-Verein. Saarbrücken"} 1 -2023-07-08 08:17:44.395832 2023-07-08 08:17:44.395836 b8a980cc-7616-4818-94d3-d1f4c8fc1b6e {"md5": "fa424ab5803790fdebbc8716da5fa996", "pid": "944393020", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/3026008-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3026008-5", "source": "GND"}], "variant_name": ["Sonderforschungsbereich, 179", "Technische Universität Braunschweig. Sonderforschungsbereich Wasser- und Stoffdynamik in Agrar-Ökosystemen", "Technische Universität Braunschweig. Sonderforschungsbereich 179", "Special Collaborative Program Water and Matter Dynamics in Agro-Ecosystems", "Technische Universität Braunschweig. Special Collaborative Program Water and Matter Dynamics in Agro-Ecosystems", "Technische Universität Braunschweig. Special Collaborative Program 179", "Deutsche Forschungsgemeinschaft. Collaborative Research Program 179 \\"Water and Matter Dynamics in Agroecosystems\\"", "Deutsche Forschungsgemeinschaft. Sonderforschungsbereich Wasser- und Stoffdynamik in Agrar-Oekosystemen", "Deutsche Forschungsgemeinschaft. SFB, 179", "Deutsche Forschungsgemeinschaft. Sonderforschungsbereich 179", "Collaborative Research Program 179 \\"Water and Matter Dynamics in Agroecosystems\\", Technical University Braunschweig"], "preferred_name": "Sonderforschungsbereich Wasser- und Stoffdynamik in Agrar-Ökosystemen", "country_associated": "gw", "variant_access_point": ["Sonderforschungsbereich, 179", "Technische Universität Braunschweig. Sonderforschungsbereich Wasser- und Stoffdynamik in Agrar-Ökosystemen", "Technische Universität Braunschweig. Sonderforschungsbereich 179", "Special Collaborative Program Water and Matter Dynamics in Agro-Ecosystems", "Technische Universität Braunschweig. Special Collaborative Program Water and Matter Dynamics in Agro-Ecosystems", "Technische Universität Braunschweig. Special Collaborative Program 179", "Deutsche Forschungsgemeinschaft. Collaborative Research Program 179 \\"Water and Matter Dynamics in Agroecosystems\\"", "Deutsche Forschungsgemeinschaft. Sonderforschungsbereich Wasser- und Stoffdynamik in Agrar-Oekosystemen", "Deutsche Forschungsgemeinschaft. SFB, 179", "Deutsche Forschungsgemeinschaft. Sonderforschungsbereich 179", "Collaborative Research Program 179 \\"Water and Matter Dynamics in Agroecosystems\\", Technical University Braunschweig. Unveraenderte Form"], "authorized_access_point": "Sonderforschungsbereich Wasser- und Stoffdynamik in Agrar-Ökosystemen"} 1 -2023-07-08 08:17:44.487893 2023-07-08 08:17:44.487902 94ee6371-4b73-4bf7-9a6c-0acec1ea2bbb {"md5": "796182e84b3899f92d51768348fe36a6", "pid": "944405312", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5129329-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5129329-8", "source": "GND"}], "preferred_name": "Philosophisch-Theosophischer Verlag", "authorized_access_point": "Philosophisch-Theosophischer Verlag. Berlin"} 1 -2023-07-08 08:17:44.56261 2023-07-08 08:17:44.562614 43dbfa1e-d1c7-44e1-bea6-c5f570aee23f {"md5": "3c2290e958df6f077dccb46c5814ad52", "pid": "944548059", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5129567-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5129567-2", "source": "GND"}], "preferred_name": "Station Experimentale d'Aviculture", "country_associated": "fr", "authorized_access_point": "Station Experimentale d'Aviculture. Ploufragan"} 1 -2023-07-08 08:17:44.648605 2023-07-08 08:17:44.648614 d047bb48-10e4-46b4-ab62-caae907a1747 {"md5": "22ac6b766fe49000d7a69b5d65b61f05", "pid": "944640206", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2147793-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2147793-0", "source": "GND"}], "preferred_name": "Deutsche Telekom AG. Niederlassung Cottbus", "country_associated": "gw", "authorized_access_point": "Deutsche Telekom AG. Niederlassung Cottbus"} 1 -2023-07-08 08:17:44.727717 2023-07-08 08:17:44.727724 6f10c7ec-e073-45f5-aa0d-f0e82524cbc4 {"md5": "cde494547521e34ca76858b7f17f2bab", "pid": "944694845", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5129995-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5129995-1", "source": "GND"}], "preferred_name": "Symposium and Workshop: The Employability of South African BA Graduates", "country_associated": "sa", "authorized_access_point": "Symposium and Workshop: The Employability of South African BA Graduates, 1993, Pretoria"} 1 -2023-07-08 08:17:44.811687 2023-07-08 08:17:44.81169 77a0e87c-d7e1-486f-b5fe-e8747d06f296 {"md5": "1701d39ec258379bd33a238995b0010d", "pid": "944695167", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5130025-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5130025-4", "source": "GND"}], "variant_name": ["Giornata di Studi Bizantini sul Tèma Problemi di Ecdotica e Esegesi di Testi Bizantini e Grecomedievali"], "preferred_name": "Giornata di Studi Bizantini, 2", "country_associated": "it", "variant_access_point": ["Giornata di Studi Bizantini sul Tèma Problemi di Ecdotica e Esegesi di Testi Bizantini e Grecomedievali, 1992, Salerno"], "authorized_access_point": "Giornata di Studi Bizantini, 2, 1992, Salerno"} 1 -2023-07-08 08:17:45.0631 2023-07-08 08:17:45.063105 947cbe9b-a56e-459b-ac31-589595117795 {"md5": "9dad1f40bea2b099d850c36dca65cf03", "pid": "944923313", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5132947-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5132947-5", "source": "GND"}], "variant_name": ["Akademija Nauk SSSR. Sibirskoe Otdelenie. Institut Gidrodinamiki", "Akademija Nauk SSSR. Institut Gidrodinamiki"], "preferred_name": "Institut Gidrodinamiki", "date_of_termination": "XX.XX.1980", "variant_access_point": ["Akademija Nauk SSSR. Sibirskoe Otdelenie. Institut Gidrodinamiki", "Akademija Nauk SSSR. Institut Gidrodinamiki"], "date_of_establishment": "07.06.1957", "authorized_access_point": "Institut Gidrodinamiki. Nowosibirsk"} 1 -2023-07-08 08:17:45.15986 2023-07-08 08:17:45.159866 c318b56e-66f2-4b73-bc72-0b813e80c8bf {"md5": "ba71d173138d0183932924a1a442b735", "pid": "944929052", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5133476-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5133476-8", "source": "GND"}], "preferred_name": "European Symposium on Biomaterials, 4", "country_associated": "it", "authorized_access_point": "European Symposium on Biomaterials, 4, 1991, Siena"} 1 -2023-07-08 08:17:45.239035 2023-07-08 08:17:45.239039 c7e45689-3a87-4936-b739-bb2c3fbce4ad {"md5": "4a62bb8af56e613a17df9098c36fb712", "pid": "944929710", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5133540-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5133540-2", "source": "GND"}], "variant_name": ["Colloquium on \\"Automotive Sensors\\"", "Automotive Sensors"], "preferred_name": "Colloquium on Automotive Sensors", "country_associated": "xxk", "variant_access_point": ["Colloquium on \\"Automotive Sensors\\", 1992, Solihull", "Automotive Sensors, 1992, Solihull"], "authorized_access_point": "Colloquium on Automotive Sensors, 1992, Solihull"} 1 -2023-07-08 08:17:45.331376 2023-07-08 08:17:45.331381 4dc57dfa-9b2a-4277-bd0c-28d7a111d669 {"md5": "8c80a16f23d0ce1eb20d9aca0fb25585", "pid": "944941710", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5134669-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5134669-2", "source": "GND"}], "preferred_name": "International Conference on Veterinary Medicines in Europe, 2", "country_associated": "be", "authorized_access_point": "International Conference on Veterinary Medicines in Europe, 2, 1993, Brüssel"} 1 -2023-07-08 08:17:45.427871 2023-07-08 08:17:45.427878 f48d5bd5-7543-4a02-92bc-2944d311c0ec {"md5": "611c6a17700c088168c0107fa3bec7a3", "pid": "94495068X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5135494-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5135494-9", "source": "GND"}], "variant_name": ["REAC TS International Conference The Medical Basis for Radiation Accident Preparedness", "International Conference on the Medical Basis for Radiation Accident Preparedness", "Medical Basis for Radiation Accident Preparedness"], "preferred_name": "International Conference The Medical Basis for Radiation Accident Preparedness", "country_associated": "xxu", "variant_access_point": ["REAC TS International Conference The Medical Basis for Radiation Accident Preparedness, 1979, Oak Ridge, Tenn.", "International Conference on the Medical Basis for Radiation Accident Preparedness, 1979, Oak Ridge, TN", "Medical Basis for Radiation Accident Preparedness, 1979, Oak Ridge, TN"], "authorized_access_point": "International Conference The Medical Basis for Radiation Accident Preparedness, 1979, Oak Ridge, Tenn."} 1 -2023-07-08 08:17:45.52228 2023-07-08 08:17:45.522285 4e21e5ca-92cd-41c0-b4ab-ae9c09abf992 {"md5": "2c5381d58e536b8e3df8b082608e2360", "pid": "944951910", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5135611-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5135611-9", "source": "GND"}], "variant_name": ["Fuji Conference, 19"], "preferred_name": "International Conference on Business History, 19", "country_associated": "ja", "variant_access_point": ["Fuji Conference, 19, 1992, Fuji, Shizuoka-ken"], "authorized_access_point": "International Conference on Business History, 19, 1992, Fuji, Shizuoka-ken"} 1 -2023-07-08 08:17:45.632213 2023-07-08 08:17:45.632221 d395f261-eaed-4430-9c27-d28c0a7e0739 {"md5": "502f63631a0a901200179cb925e22166", "pid": "944952976", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5135709-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5135709-4", "source": "GND"}], "variant_name": ["ORACLE-Anwenderkonferenz, 4"], "preferred_name": "Deutsche ORACLE-Anwenderkonferenz, 4", "country_associated": "gw", "variant_access_point": ["ORACLE-Anwenderkonferenz, 4, 1991, Hamburg"], "authorized_access_point": "Deutsche ORACLE-Anwenderkonferenz, 4, 1991, Hamburg"} 1 -2023-07-08 08:17:45.766458 2023-07-08 08:17:45.766466 7863d9d1-d1e9-4119-bcea-15a1b70aa0a9 {"md5": "8be7df2d14035f8e25565c5ba3e7b517", "pid": "944953395", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5135745-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5135745-8", "source": "GND"}], "preferred_name": "Škola-Seminar po Kompleksam Programm Matematičeskoj Fiziki", "authorized_access_point": "Škola-Seminar po Kompleksam Programm Matematičeskoj Fiziki, 1988, Abakan"} 1 -2023-07-08 08:17:46.668212 2023-07-08 08:17:46.668223 ebb70a55-1f74-4a28-b6cf-532781b98e83 {"md5": "48a706a3a6a894dfbf15efa7e363f96c", "pid": "945074212", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5143635-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5143635-8", "source": "GND"}], "variant_name": ["Soveščanie po Utilizacii Zološlakovych Otchodov"], "preferred_name": "Vsesojuznoe Soveščanie po Utilizacii Zološlakovych Otchodov", "country_associated": "ru", "variant_access_point": ["Soveščanie po Utilizacii Zološlakovych Otchodov, 1990, Sotschi-Dagomys"], "authorized_access_point": "Vsesojuznoe Soveščanie po Utilizacii Zološlakovych Otchodov, 1990, Sotschi-Dagomys"} 1 -2023-07-08 08:17:46.794508 2023-07-08 08:17:46.794512 eda08ded-9bbb-446f-9f69-80bb2bde3cd3 {"md5": "f9334b5449ae9b5b6b2be021540b5200", "pid": "945079893", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5144189-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5144189-5", "source": "GND"}], "preferred_name": "Conference Changes in Scholarly Communication Patterns: Australia and the Electronic Library", "country_associated": "at", "authorized_access_point": "Conference Changes in Scholarly Communication Patterns: Australia and the Electronic Library, 1993, Canberra"} 1 -2023-07-08 08:17:45.863999 2023-07-08 08:17:45.864004 d5386d1b-d0c5-4f7c-943b-2a58a3091676 {"md5": "9724ad418dcd451172b5131f906cf8fc", "pid": "944963749", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5136698-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5136698-8", "source": "GND"}], "variant_name": ["Naučno-Praktičeskaja Konferencija po Šlakoščeločnym Vjažuščim Materialam, 3", "All-Union Scientific and Practical Conference on Alkali-Slag Binding Agents, 3", "All-Union Scientific and Practical Conference on Alkali Slag Binding Agents, 3", "Scientific and Practical Conference on Alkali-Slag Binding Agents, 3", "Scientific and Practical Conference on Alkali Slag Binding Agents, 3", "Wissenschaftlich-Technische Unionstagung über Alkalischlackenbindemittel, 3"], "preferred_name": "Vsesojuznaja Naučno-Praktičeskaja Konferencija po Šlakoščeločnym Vjažuščim Materialam, 3", "variant_access_point": ["Naučno-Praktičeskaja Konferencija po Šlakoščeločnym Vjažuščim Materialam, 3, 1989, Kiew", "All-Union Scientific and Practical Conference on Alkali-Slag Binding Agents, 3, 1989, Kiew", "All-Union Scientific and Practical Conference on Alkali Slag Binding Agents, 3, 1989, Kiew", "Scientific and Practical Conference on Alkali-Slag Binding Agents, 3, 1989, Kiew", "Scientific and Practical Conference on Alkali Slag Binding Agents, 3, 1989, Kiew", "Wissenschaftlich-Technische Unionstagung über Alkalischlackenbindemittel, 3, 1989, Kiew"], "authorized_access_point": "Vsesojuznaja Naučno-Praktičeskaja Konferencija po Šlakoščeločnym Vjažuščim Materialam, 3, 1989, Kiew"} 1 -2023-07-08 08:17:45.971852 2023-07-08 08:17:45.971855 583e56fe-d315-4659-acf9-a3dcd6295387 {"md5": "2366efe50b90b1a2e04211db7b091312", "pid": "944971318", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5137431-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5137431-6", "source": "GND"}], "variant_name": ["Annual Conference on Software Engineering Environments, 3"], "preferred_name": "Conference on Software Engineering Environments, 3", "country_associated": "xxk", "variant_access_point": ["Annual Conference on Software Engineering Environments, 3, 1987, Keele"], "authorized_access_point": "Conference on Software Engineering Environments, 3, 1987, Keele"} 1 -2023-07-08 08:17:46.074438 2023-07-08 08:17:46.074442 aaeb385a-da84-4bbf-abd5-57bc5d7311d8 {"md5": "7b4e36118812da0e35fb1809d0f39ea1", "pid": "944978177", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5138100-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5138100-X", "source": "GND"}], "variant_name": ["Soveščanie po Chimii Neorganičeskich Gidridov", "All-Union Conference on the Chemistry of the Inorganic Hydrides", "Conference on the Chemistry of the Inorganic Hydrides"], "preferred_name": "Vsesojuznoe Soveščanie po Chimii Neorganičeskich Gidridov", "variant_access_point": ["Soveščanie po Chimii Neorganičeskich Gidridov, 1987, Duschanbe", "All-Union Conference on the Chemistry of the Inorganic Hydrides, 1987, Duschanbe", "Conference on the Chemistry of the Inorganic Hydrides, 1987, Duschanbe"], "authorized_access_point": "Vsesojuznoe Soveščanie po Chimii Neorganičeskich Gidridov, 1987, Duschanbe"} 1 -2023-07-08 08:17:46.158528 2023-07-08 08:17:46.158532 1b19c457-02d8-4904-8750-2b14cc9669a5 {"md5": "c3b30435a7d9063caa916f0aa464265c", "pid": "945028067", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2148867-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2148867-8", "source": "GND"}], "variant_name": ["Konferenz International Congress on Intellectual Property Rights for Specialized Information, Knowledge and New Technologies", "Intellectual Property Rights for Specialized Information, Knowledge and New Technologies", "International Congress on Intellectual Property Rights for Specialized Information, Knowledge and New Technologies", "KnowRight Conference"], "preferred_name": "KnowRight", "country_associated": "au", "variant_access_point": ["Konferenz International Congress on Intellectual Property Rights for Specialized Information, Knowledge and New Technologies, 1995, Wien", "Intellectual Property Rights for Specialized Information, Knowledge and New Technologies, 1995, Wien", "International Congress on Intellectual Property Rights for Specialized Information, Knowledge and New Technologies, 1995, Wien", "KnowRight Conference, 1995, Wien"], "authorized_access_point": "KnowRight, 1995, Wien"} 1 -2023-07-08 08:17:46.244133 2023-07-08 08:17:46.244139 9d1836e0-9358-4956-9ce1-f504921effc2 {"md5": "f021ee92256ef48d51ef4e2db3301602", "pid": "94504206X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5140558-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5140558-1", "source": "GND"}], "preferred_name": "International Seminar Economy and Society in the Transformation of the World", "country_associated": "sp", "authorized_access_point": "International Seminar Economy and Society in the Transformation of the World, 1980, Madrid"} 1 -2023-07-08 08:17:46.362366 2023-07-08 08:17:46.362372 008068c8-f6f5-460f-a898-9cc3f60d7ccb {"md5": "09a205cd3d82c5a306b0993633c8f667", "pid": "945045972", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5140923-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5140923-9", "source": "GND"}], "variant_name": ["Loge Lessing zum Flammenden Stern", "Freimaurerloge, 700"], "preferred_name": "Freimaurerloge Lessing zum Flammenden Stern", "variant_access_point": ["Loge Lessing zum Flammenden Stern. München", "Freimaurerloge, 700"], "date_of_establishment": "1924", "authorized_access_point": "Freimaurerloge Lessing zum Flammenden Stern. München"} 1 -2023-07-08 08:17:46.4532 2023-07-08 08:17:46.453209 38ea7bab-56a1-4aa0-b367-cf155db6a1ae {"md5": "0e41b67cddd07e5a3395a02fb68bfbe7", "pid": "945048653", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5141172-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5141172-6", "source": "GND"}], "variant_name": ["Japan-China Bilateral Conference on Molten Salt Chemistry and Technology, 4"], "preferred_name": "Japan China Bilateral Conference on Molten Salt Chemistry and Technology, 4", "country_associated": "ja", "variant_access_point": ["Japan-China Bilateral Conference on Molten Salt Chemistry and Technology, 4, 1992, Kyōto"], "authorized_access_point": "Japan China Bilateral Conference on Molten Salt Chemistry and Technology, 4, 1992, Kyōto"} 1 -2023-07-08 08:18:21.371018 2023-07-08 08:18:21.371022 b1788bf3-605a-4ded-b203-864d1a954e51 {"md5": "4c565d2393d3c9a6edd8270f7ae136cb", "pid": "963261959", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10031162-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10031162-3", "source": "GND"}], "preferred_name": "Rosenbergschule", "country_associated": "gw", "authorized_access_point": "Rosenbergschule"} 1 -2023-07-08 08:17:46.894807 2023-07-08 08:17:46.894812 2b9b0bd6-b672-4969-a762-94ed0547921b {"md5": "101182770eba233bdb82cacba15abacf", "pid": "945102313", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5146410-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5146410-X", "source": "GND"}], "preferred_name": "Electronic Materials Conference", "country_associated": "xxu", "authorized_access_point": "Electronic Materials Conference, 1994, Boulder, Colo."} 1 -2023-07-08 08:17:46.982042 2023-07-08 08:17:46.982048 8668858f-2bf4-4fb9-94a7-beec0b0065b6 {"md5": "a15cf19d4ef240dbebdf2fd3b3a57bba", "pid": "945104138", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5146592-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5146592-9", "source": "GND"}], "preferred_name": "Feed Manufacturers Conference, 27", "country_associated": "xxk", "authorized_access_point": "Feed Manufacturers Conference, 27, 1993, Nottingham"} 1 -2023-07-08 08:17:47.074676 2023-07-08 08:17:47.07468 4e51fad3-9234-4a5a-acd3-e70ac96e5930 {"md5": "efbee713975d33c7dee3810095b4c09f", "pid": "945107129", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5146891-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5146891-8", "source": "GND"}], "variant_name": ["Timber Export Development Board", "GTEDB"], "preferred_name": "Ghana Timber Export Development Board", "country_associated": "gh", "variant_access_point": ["Timber Export Development Board. Ghana", "GTEDB. Abkuerzung"], "authorized_access_point": "Ghana Timber Export Development Board", "biographical_information": ["keine übergeordn. Kö. ermittelt"]} 1 -2023-07-08 08:17:47.147159 2023-07-08 08:17:47.147163 b7ad312f-3eb2-49a3-9230-d6da414e8325 {"md5": "8b3dfac551274d7f5cb1f762cc186c16", "pid": "94510877X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5147056-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5147056-1", "source": "GND"}], "preferred_name": "Sicherheitsfachtagung Krankenhaus, 21", "authorized_access_point": "Sicherheitsfachtagung Krankenhaus, 21, 1994, Hannover"} 1 -2023-07-08 08:17:47.250166 2023-07-08 08:17:47.250179 1bfb0cdb-e13b-45d9-8dc0-7ea69c9965b4 {"md5": "ed81e8086d3c5e7a665cfbbcd4d67632", "pid": "945118805", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5148059-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5148059-1", "source": "GND"}], "variant_name": ["International Conference Bridges on the Danube", "International Conference on Bridges on the Danube, Vienna - Bratislava - Budapest, Sept. 1992"], "preferred_name": "International Conference on Bridges across the Danube", "country_associated": "au", "variant_access_point": ["International Conference Bridges on the Danube, 1992, Wien u.a.", "International Conference on Bridges on the Danube, Vienna - Bratislava - Budapest, Sept. 1992"], "authorized_access_point": "International Conference on Bridges across the Danube, 1992, Wien u.a."} 1 -2023-07-08 08:17:47.352675 2023-07-08 08:17:47.352679 62675c3d-1857-4764-9b99-a9be5fcbdf5f {"md5": "bcfb72ce6d4045546527fa8c13434350", "pid": "945462891", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2150083-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2150083-6", "source": "GND"}], "variant_name": ["Verein der Dänischen Fischmehl- und Fischölindustrie", "Association of Fish Meal and Fish Oil Manufacturers in Denmark"], "preferred_name": "Foreningen for Danmarks Fiskemel- og Fiskeolieindustri", "country_associated": "dk", "variant_access_point": ["Verein der Dänischen Fischmehl- und Fischölindustrie", "Association of Fish Meal and Fish Oil Manufacturers in Denmark"], "authorized_access_point": "Foreningen for Danmarks Fiskemel- og Fiskeolieindustri", "biographical_information": ["Sitz: København"]} 1 -2023-07-08 08:17:47.45412 2023-07-08 08:17:47.454129 759ea9b4-f454-40ca-9f1b-26ed97253fc5 {"md5": "b9e1a14f640a789c274caa94cb207f0c", "pid": "945492308", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5149734-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5149734-7", "source": "GND"}], "variant_name": ["Eureka Audiovisuel", "Audiovisuelles Eureka", "Eureka Audiovisioo", "Audiovizualnaja Evrika"], "preferred_name": "Eureka Audiovisual", "variant_access_point": ["Eureka Audiovisuel", "Audiovisuelles Eureka", "Eureka Audiovisioo", "Audiovizualnaja Evrika"], "date_of_establishment": "1989", "authorized_access_point": "Eureka Audiovisual", "biographical_information": ["Sitz: Brüssel"]} 1 -2023-07-08 08:17:47.554018 2023-07-08 08:17:47.554029 58ac2446-aba9-4b89-94e4-b9d5e826070c {"md5": "9e28a14b7444892a6e98b9356d7f58ab", "pid": "945504853", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2150184-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2150184-1", "source": "GND"}], "variant_name": ["IDF Consultation on Central and Eastern European Dairying, 3"], "preferred_name": "Consultation on Central and Eastern European Dairying, 3", "country_associated": "pl", "variant_access_point": ["IDF Consultation on Central and Eastern European Dairying, 3, 1994, Warschau"], "authorized_access_point": "Consultation on Central and Eastern European Dairying, 3, 1994, Warschau"} 1 -2023-07-08 08:17:47.663649 2023-07-08 08:17:47.663656 d0901636-047d-45c6-bf18-e2be439579e1 {"md5": "8167f98e33c8ff2b4f0bd77e7dad3dd7", "pid": "945555059", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5151056-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5151056-X", "source": "GND"}], "variant_name": ["International Symposium on Electrets, 8", "IEEE International Symposium on Electrets, 8"], "preferred_name": "ISE, 8", "country_associated": "fr", "variant_access_point": ["International Symposium on Electrets, 8, 1994, Paris", "IEEE International Symposium on Electrets, 8, 1994, Paris"], "authorized_access_point": "ISE, 8, 1994, Paris"} 1 -2023-07-08 08:17:47.744413 2023-07-08 08:17:47.744417 3202bfe6-8d17-4d85-8070-79298fe05db6 {"md5": "831af6386df0518711687e30a92968ea", "pid": "945628889", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5151715-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5151715-2", "source": "GND"}], "variant_name": ["Colloque National de Magnetisme", "Magnetisme"], "preferred_name": "Colloque National de Magnetisme", "country_associated": "fr", "variant_access_point": ["Colloque National de Magnetisme, 1957, Strasbourg", "Magnetisme, 1957, Strasbourg"], "authorized_access_point": "Colloque National de Magnetisme, 1957, Straßburg"} 1 -2023-07-08 08:17:47.817198 2023-07-08 08:17:47.817207 762db0d3-a10b-43e5-8762-8d4fb8c1723a {"md5": "20c1e462d280ede7e13b8d323cc00234", "pid": "945633696", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5152169-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5152169-6", "source": "GND"}], "variant_name": ["Verkehrsamt"], "preferred_name": "Kirchheim. Verkehrsamt", "country_associated": "gw", "variant_access_point": ["Verkehrsamt. Kirchheim unter Teck"], "authorized_access_point": "Kirchheim. Teck. Verkehrsamt"} 1 -2023-07-08 08:17:47.911097 2023-07-08 08:17:47.911104 fddf8178-4e4a-4c04-a2ad-138eb9670228 {"md5": "5de8f213ebebdaa8d777e20d0d698082", "pid": "945708300", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5152870-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5152870-8", "source": "GND"}], "preferred_name": "Jugendbund für Entschiedenes Christentum. Rhein-Main-Verband", "authorized_access_point": "Jugendbund für Entschiedenes Christentum. Rhein-Main-Verband"} 1 -2023-07-08 08:17:47.995901 2023-07-08 08:17:47.995905 9c083d9e-59ec-4b9d-8a24-937ac6540443 {"md5": "e32df4676664d09607a16983506aa737", "pid": "945710097", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5153047-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5153047-8", "source": "GND"}], "variant_name": ["Ensemble Vocal Audite Nova de Paris", "Chorale Audite Nova de Paris", "Audite Nova"], "preferred_name": "Ensemble Vocal Audite Nova", "country_associated": "fr", "variant_access_point": ["Ensemble Vocal Audite Nova de Paris", "Chorale Audite Nova de Paris", "Audite Nova"], "authorized_access_point": "Ensemble Vocal Audite Nova"} 1 -2023-07-08 08:17:48.074635 2023-07-08 08:17:48.074639 22710eda-9b16-4644-98bf-cf018161629e {"md5": "f20af280e15480a2a6641a9d03c6dc9f", "pid": "945763395", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5154603-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5154603-6", "source": "GND"}], "variant_name": ["Doesburg Archive"], "preferred_name": "Theo van Doesburg Archive", "country_associated": "ne", "variant_access_point": ["Doesburg Archive. Den Haag"], "authorized_access_point": "Theo van Doesburg Archive. Den Haag"} 1 -2023-07-08 08:17:48.164261 2023-07-08 08:17:48.164268 ff086d0b-d641-459b-8ad4-9963c466e6c2 {"md5": "8dd5ab5c0c65bd4eebbcd8c685458b44", "pid": "945817428", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5155622-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5155622-4", "source": "GND"}], "preferred_name": "Zwecksparverband für Eigenheime", "authorized_access_point": "Zwecksparverband für Eigenheime. Aachen"} 1 -2023-07-08 08:17:48.253042 2023-07-08 08:17:48.253047 4c968b4e-227f-421e-ad66-d2ce63b9c858 {"md5": "b587da0e6acdbc6899f920958e0fb777", "pid": "945951590", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1232700-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1232700-1", "source": "GND"}], "preferred_name": "Study Week Science for Development in a Solidarity Framework", "country_associated": "it", "authorized_access_point": "Study Week Science for Development in a Solidarity Framework, 1989, Rom"} 1 -2023-07-08 08:17:48.34791 2023-07-08 08:17:48.347916 bf5ab8cc-94ac-4368-befc-24ad3608f054 {"md5": "3bd125ec9717b102ebac1dca9cd41194", "pid": "946180822", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2152159-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2152159-1", "source": "GND"}], "variant_name": ["Exhibition Marlene Dumas, Models"], "preferred_name": "Ausstellung Marlene Dumas, Models", "variant_access_point": ["Exhibition Marlene Dumas, Models, 1995 - 1996, Salzburg u.a."], "authorized_access_point": "Ausstellung Marlene Dumas, Models, 1995 - 1996, Salzburg u.a."} 1 -2023-07-08 08:17:48.443327 2023-07-08 08:17:48.443332 ca20e96b-d945-4be2-b301-bc778aa47e71 {"md5": "63dd3cdb734e7fc0f4d907e3f2c30302", "pid": "946246734", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5159519-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5159519-9", "source": "GND"}], "preferred_name": "Victoria and Albert Museum. Conservation Department", "country_associated": "xxk", "authorized_access_point": "Victoria and Albert Museum. Conservation Department"} 1 -2023-07-08 08:17:48.534405 2023-07-08 08:17:48.534414 62381ceb-ea8d-4b98-bb74-9aaf7980f10d {"md5": "3fcf0287cf9f37c307322d3c45a550f8", "pid": "946481911", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5161842-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5161842-4", "source": "GND"}], "variant_name": ["Université Nancy 2. Centre d'Information et de Documentation Le Monde Grec Antique et Ses Zones de Contact", "Centre d'information et de documentation \\"Le monde grec antique et ses zones de contact\\""], "preferred_name": "Centre d'Information et de Documentation Le Monde Grec Antique et Ses Zones de Contact", "country_associated": "fr", "variant_access_point": ["Université Nancy 2. Centre d'Information et de Documentation Le Monde Grec Antique et Ses Zones de Contact", "Centre d'information et de documentation \\"Le monde grec antique et ses zones de contact\\". Nancy"], "authorized_access_point": "Centre d'Information et de Documentation Le Monde Grec Antique et Ses Zones de Contact"} 1 -2023-07-08 08:17:48.621671 2023-07-08 08:17:48.621677 f729122b-aa7c-4384-a62b-3b927f9c9927 {"md5": "8fdeac5f5c5442f59dc112a5a5feeed8", "pid": "946487537", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2153139-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2153139-0", "source": "GND"}], "preferred_name": "Archigram Archives", "country_associated": "xxk", "authorized_access_point": "Archigram Archives. London"} 1 -2023-07-08 08:17:48.706162 2023-07-08 08:17:48.706506 a2cdf9dd-f21a-4600-98cc-876343342111 {"md5": "dc3241e8d8bad856af5b8f8c7cf6be71", "pid": "946515468", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2153260-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2153260-6", "source": "GND"}], "variant_name": ["Marketing-Tag, 10"], "preferred_name": "Deutscher Marketing-Tag, 10", "country_associated": "gw", "variant_access_point": ["Marketing-Tag, 10, 1982, Saarbrücken. Deutsche Marketing-Vereinigung"], "authorized_access_point": "Deutscher Marketing-Tag, 10, 1982, Saarbrücken"} 1 -2023-07-08 08:17:48.79713 2023-07-08 08:17:48.797135 4043043b-de33-40e3-a241-05f7f6578375 {"md5": "31e49b8d3f7e6796c895a083ee29cb45", "pid": "946592039", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1233422-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1233422-4", "source": "GND"}], "variant_name": ["Down Syndrome Research Conference"], "preferred_name": "International Down Syndrome Research Conference", "country_associated": "xxu", "variant_access_point": ["Down Syndrome Research Conference, 1994, Charleston, SC"], "authorized_access_point": "International Down Syndrome Research Conference, 1994, Charleston, SC"} 1 -2023-07-08 08:17:48.888548 2023-07-08 08:17:48.888556 3ddeb28c-f588-43ba-bf56-64dfcfd49be5 {"md5": "293ca6a75163634b16bea9b3ae6d2abc", "pid": "946595259", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1600884-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1600884-4", "source": "GND"}], "variant_name": ["WCCE, 6", "IFIP World Conference on Computers in Education, 6", "World Conference on Computers in Education, Liberating the Learner"], "preferred_name": "World Conference on Computers in Education, 6", "country_associated": "xxk", "variant_access_point": ["WCCE, 6, 1995, Birmingham", "IFIP World Conference on Computers in Education, 6, 1995, Birmingham", "World Conference on Computers in Education, Liberating the Learner, 1995, Birmingham"], "authorized_access_point": "World Conference on Computers in Education, 6, 1995, Birmingham"} 1 -2023-07-08 08:17:48.980302 2023-07-08 08:17:48.980308 be0fa4b8-6089-4d04-aa59-5b58a038e543 {"md5": "637a2d49c10dc81f5aad8e7f4c4002dd", "pid": "946597189", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1700884-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1700884-0", "source": "GND"}], "preferred_name": "Syndicat d'Agglomération Nouvelle du Val Maubuée", "authorized_access_point": "Syndicat d'Agglomération Nouvelle du Val Maubuée"} 1 -2023-07-08 08:17:49.077418 2023-07-08 08:17:49.077425 d05b292f-4d46-4ba5-9435-1413ab3463b1 {"md5": "6720a5cab941f06ad433f5934b929e96", "pid": "946686203", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5162807-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5162807-7", "source": "GND"}], "preferred_name": "International Workshop on Relativistic Aspects of Nuclear Physics, 3", "country_associated": "bl", "authorized_access_point": "International Workshop on Relativistic Aspects of Nuclear Physics, 3, 1993, Rio de Janeiro"} 1 -2023-07-08 08:17:49.161884 2023-07-08 08:17:49.161887 79964e6d-0848-4a9c-a7ea-cc11117f9bd5 {"md5": "bdc8727cb9846d39de51cc2a1ed3f657", "pid": "946688397", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5163025-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5163025-4", "source": "GND"}], "preferred_name": "International Symposium on Adenosine", "country_associated": "xxu", "authorized_access_point": "International Symposium on Adenosine, 1982, Charlottesville, Va."} 1 -2023-07-08 08:17:49.234019 2023-07-08 08:17:49.234022 f913ef00-c6a6-4761-af3c-e0e3d773c692 {"md5": "9bf1ca7f1d175eaccb59465c854de57a", "pid": "946691215", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5163304-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5163304-8", "source": "GND"}], "variant_name": ["Kommission für das Pestalozzistübchen in Zürich", "Kommission für das Pestalozzi-Stübchen", "Schweizerische Permanente Schulausstellung. Kommission für das Pestalozzistübchen"], "preferred_name": "Kommission für das Pestalozzistübchen", "country_associated": "sz", "variant_access_point": ["Kommission für das Pestalozzistübchen in Zürich. Unveraenderte Form", "Kommission für das Pestalozzi-Stübchen", "Schweizerische Permanente Schulausstellung. Zürich. Kommission für das Pestalozzistübchen"], "authorized_access_point": "Kommission für das Pestalozzistübchen"} 1 -2023-07-08 08:17:49.304267 2023-07-08 08:17:49.304271 12a35866-fab6-47a4-be2e-a243b407da1a {"md5": "13e79d4d4b6696627771270f3ca149e1", "pid": "94673271X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2153851-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2153851-7", "source": "GND"}], "variant_name": ["Wüstenrot-Versicherungs-AG"], "preferred_name": "Wüstenrot-Versicherungs-Aktiengesellschaft", "country_associated": "au", "variant_access_point": ["Wüstenrot-Versicherungs-AG. Salzburg"], "authorized_access_point": "Wüstenrot-Versicherungs-Aktiengesellschaft. Salzburg"} 1 -2023-07-08 08:17:49.375279 2023-07-08 08:17:49.375284 bb44bc79-33f6-4227-bbf6-e3327eb7db50 {"md5": "3cb0f345de6130488ab2a43df0ba87ee", "pid": "946741077", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5164017-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5164017-X", "source": "GND"}], "variant_name": ["Technical University", "Universitatea Tehnică din Cluj-Napoca", "Technical University of Cluj-Napoca"], "preferred_name": "Universitatea Tehnică", "country_associated": "rm", "variant_access_point": ["Technical University. Klausenburg", "Universitatea Tehnică din Cluj-Napoca", "Technical University of Cluj-Napoca"], "authorized_access_point": "Universitatea Tehnică. Klausenburg"} 1 -2023-07-08 08:17:49.451109 2023-07-08 08:17:49.451113 8310831d-3ac9-432d-80fe-de1367d7bb5c {"md5": "92b3447f1600f413511232eccb608d1b", "pid": "94687400X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5164689-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5164689-4", "source": "GND"}], "preferred_name": "Sangamon State University", "country_associated": "xxu", "date_of_termination": "1995", "date_of_establishment": "1969", "authorized_access_point": "Sangamon State University"} 1 -2023-07-08 08:17:49.520786 2023-07-08 08:17:49.520789 087086ed-751c-4325-8303-aef0321843c6 {"md5": "3b690338bd1db9e65b23a0ef7df2c830", "pid": "946875715", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5164859-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5164859-3", "source": "GND"}], "preferred_name": "Workshop on AIDS", "country_associated": "tz", "authorized_access_point": "Workshop on AIDS, 1989, Sengerema"} 1 -2023-07-08 08:17:49.604436 2023-07-08 08:17:49.60444 37829e3a-ca37-4548-876e-951484cbf54e {"md5": "67fd3cdbb3947a6380e24b2b28aff0f9", "pid": "946923477", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5165694-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5165694-2", "source": "GND"}], "variant_name": ["Sächsische Industrie-Schule", "Industrie-Schule"], "preferred_name": "Königlich Sächsische Industrie-Schule", "date_of_termination": "23.06.1903", "variant_access_point": ["Sächsische Industrie-Schule. Plauen", "Industrie-Schule. Plauen"], "date_of_establishment": "XX.XX.1892", "authorized_access_point": "Königlich Sächsische Industrie-Schule. Plauen"} 1 -2023-07-08 08:17:49.683441 2023-07-08 08:17:49.683445 9df95180-d5bb-49fe-a5f7-5dfb2191e943 {"md5": "3c92ee516fe078b2b90ea3367ec79708", "pid": "947105735", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5166469-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5166469-0", "source": "GND"}], "preferred_name": "Deutscher Gewerkschaftsbund. Kreis Emsland", "country_associated": "gw", "authorized_access_point": "Deutscher Gewerkschaftsbund. Deutschland, Bundesrepublik. Kreis Emsland", "biographical_information": ["Sitz: Lingen (Ems) ; ab 1981 ehem. Landkreis Meppen dem DGB-Kreis Aschendorf-Hümmling zugeordnet"]} 1 -2023-07-08 08:17:49.750789 2023-07-08 08:17:49.750792 2d5d8da1-0895-44e7-9623-575d7c22744d {"md5": "091b58d549e4ed808cc96c7a42f5f448", "pid": "947202900", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2155212-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2155212-5", "source": "GND"}], "variant_name": ["International Hans Wolfgang Nürnberg Memorial Symposium on \\"Metal Compounds in Environment and Life\\", 6", "Metal Compounds in Environment and Life, 6", "International Conference on \\"Metal Compounds in Environment and Life\\", 6", "International Symposium on \\"Metal Compounds in Environment and Life\\", 6", "International IAEAC-Conference on \\"Metal Compounds in Environment and Life\\", 6", "Hans Wolfgang Nürnberg Memorial Symposium on \\"Metal Compounds in Environment and Life\\", 6"], "preferred_name": "International Hans Wolfgang Nürnberg Memorial Symposium on Metal Compounds in Environment and Life, 6", "country_associated": "gw", "variant_access_point": ["International Hans Wolfgang Nürnberg Memorial Symposium on \\"Metal Compounds in Environment and Life\\", 6, 1995, Jülich", "Metal Compounds in Environment and Life, 6, 1995, Jülich", "International Conference on \\"Metal Compounds in Environment and Life\\", 6, 1995, Jülich", "International Symposium on \\"Metal Compounds in Environment and Life\\", 6, 1995, Jülich", "International IAEAC-Conference on \\"Metal Compounds in Environment and Life\\", 6, 1995, Jülich", "Hans Wolfgang Nürnberg Memorial Symposium on \\"Metal Compounds in Environment and Life\\", 6, 1995, Jülich"], "authorized_access_point": "International Hans Wolfgang Nürnberg Memorial Symposium on Metal Compounds in Environment and Life, 6, 1995, Jülich"} 1 -2023-07-08 08:17:49.825007 2023-07-08 08:17:49.825011 39a6ba65-902b-41ff-8008-5b4c3b3a5e98 {"md5": "c539041e22a8d4f6fd188b4c931ed69d", "pid": "947434348", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5169350-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5169350-1", "source": "GND"}], "variant_name": ["Japanese Geotechnical Society", "JGS", "JSSMFE", "Geotechnical Society"], "preferred_name": "Jiban Kōgakkai", "country_associated": "ja", "variant_access_point": ["Japanese Geotechnical Society", "JGS. Abkuerzung", "JSSMFE. Abkuerzung", "Geotechnical Society. Japan"], "parallel_access_point": ["地盤工学会"], "authorized_access_point": "Jiban Kōgakkai"} 1 -2023-07-08 08:17:49.913638 2023-07-08 08:17:49.913641 eea5183a-e1f0-4b1f-847e-096842991012 {"md5": "5ee9d5ca084b71f524bac9dae2e95caa", "pid": "947711708", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2156552-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2156552-1", "source": "GND"}], "preferred_name": "Französische Woche", "country_associated": "gw", "authorized_access_point": "Französische Woche, 1979, Saarbrücken"} 1 -2023-07-08 08:17:50.002261 2023-07-08 08:17:50.002264 ddea7bc9-f98f-4365-931c-d803f66d5f64 {"md5": "ee57fb90a3b1a9418870c2ec0d48fa41", "pid": "94772530X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5172059-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5172059-0", "source": "GND"}], "variant_name": ["Underprissättningsutredningen", "Schweden. Näringsdepartementet. Underprissättningsutredningen"], "preferred_name": "Schweden. Underprissättningsutredningen", "country_associated": "sw", "variant_access_point": ["Underprissättningsutredningen. Schweden", "Schweden. Näringsdepartementet. Underprissättningsutredningen"], "authorized_access_point": "Schweden. Underprissättningsutredningen"} 1 -2023-07-08 08:17:50.096499 2023-07-08 08:17:50.096505 bf8ca68d-11ad-4149-a18e-90c8e4fd0a57 {"md5": "dcfdf2c7cee5712a145b9e6101c7aac8", "pid": "947731687", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5172657-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5172657-9", "source": "GND"}], "variant_name": ["Kalkınma Vakfı", "Er-Vak"], "preferred_name": "Erzurum Kalkınma Vakfı", "country_associated": "tu", "variant_access_point": ["Kalkınma Vakfı. Erzurum", "Er-Vak"], "authorized_access_point": "Erzurum Kalkınma Vakfı"} 1 -2023-07-08 08:17:50.184381 2023-07-08 08:17:50.184385 c0f21d89-01b0-46d9-8272-29509c023c6c {"md5": "582c221d797f4b5d612d4f5f9c296b20", "pid": "947742956", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5173669-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5173669-X", "source": "GND"}], "preferred_name": "Millennium of Christianity in Ukraine Conferences", "authorized_access_point": "Millennium of Christianity in Ukraine Conferences, 1986 - 1987"} 1 -2023-07-08 08:17:50.27177 2023-07-08 08:17:50.271773 2b7de839-326f-496d-8dd0-a0f8bbe63954 {"md5": "f42ea5695fb8d5494a4b515da5ec3695", "pid": "947854517", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5174826-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5174826-5", "source": "GND"}], "variant_name": ["Choir of Saint Martin", "Saint Martin Choir"], "preferred_name": "Sint-Maartenkoor", "country_associated": "be", "variant_access_point": ["Choir of Saint Martin. Hasselt, Albertkanal", "Saint Martin Choir. Hasselt, Albertkanal"], "authorized_access_point": "Sint-Maartenkoor. Hasselt, Albertkanal"} 1 -2023-07-08 08:17:50.36123 2023-07-08 08:17:50.361234 4b779d13-60ea-469c-a72f-1ecd014f7776 {"md5": "7a4e4c55cfee8c94dc3eb9ba625bbed3", "pid": "947854789", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5174851-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5174851-4", "source": "GND"}], "variant_name": ["Arbeitsgemeinschaft für Vollwertige Ernährung in der Gemeinschaftsverpflegung"], "preferred_name": "Stuttgarter Arbeitsgemeinschaft für Vollwertige Ernährung in der Gemeinschaftsverpflegung", "country_associated": "gw", "variant_access_point": ["Arbeitsgemeinschaft für Vollwertige Ernährung in der Gemeinschaftsverpflegung. Stuttgart"], "authorized_access_point": "Stuttgarter Arbeitsgemeinschaft für Vollwertige Ernährung in der Gemeinschaftsverpflegung"} 1 -2023-07-08 08:17:50.451054 2023-07-08 08:17:50.451059 98b5d3cd-2aee-4579-a81c-49b925e82424 {"md5": "073bafadaab2a617f8a6589fdfc13207", "pid": "947862765", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5175596-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5175596-8", "source": "GND"}], "variant_name": ["Tomo Mano Namelio Bibliotekėlė"], "preferred_name": "Tomo Mano Namelio Bibliotekėlė", "country_associated": "li", "variant_access_point": ["Tomo Mano Namelio Bibliotekėlė. Neringa"], "authorized_access_point": "Tomo Mano Namelio Bibliotekėlė. Nida"} 1 -2023-07-08 08:17:50.547946 2023-07-08 08:17:50.547952 141857fe-f5b5-4c62-a45d-0b554391069b {"md5": "5a884c265e7fb89d6732617c8aabcfae", "pid": "948041838", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2157474-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2157474-1", "source": "GND"}], "variant_name": ["VfB", "Verein für Bewegungsspiele", "VfB", "VfB 1946", "Verein für Bewegungsspiele Neunzehnhundertsechsundsechzig", "VfB 1946", "Verein für Bewegungsspiele Neunzehnhundertsechsundsechzig", "Verein für Bewegungsspiele e.V. Jagstheim 1946", "VfB 1946 Jagstheim", "VfB Jagstheim", "Verein für Bewegungsspiele Jagstheim"], "preferred_name": "Verein für Bewegungsspiele", "country_associated": "gw", "variant_access_point": ["VfB. Jagstheim, Crailsheim", "Verein für Bewegungsspiele. Crailsheim-Jagstheim", "VfB. Crailsheim-Jagstheim", "VfB 1946. Jagstheim, Crailsheim", "Verein für Bewegungsspiele Neunzehnhundertsechsundsechzig. Jagstheim, Crailsheim", "VfB 1946. Crailsheim", "Verein für Bewegungsspiele Neunzehnhundertsechsundsechzig. Crailsheim", "Verein für Bewegungsspiele e.V. Jagstheim 1946", "VfB 1946 Jagstheim", "VfB Jagstheim", "Verein für Bewegungsspiele Jagstheim. Ehemalige Vorzugsbenennung SWD"], "authorized_access_point": "Verein für Bewegungsspiele. Jagstheim, Crailsheim"} 1 -2023-07-08 08:17:50.624261 2023-07-08 08:17:50.624274 24dc64ed-46f3-4c31-9be7-b95e19d2cb9d {"md5": "96c788412a34a9ee83148c6522038101", "pid": "94813142X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5176991-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5176991-8", "source": "GND"}], "preferred_name": "Symposium Interactions between the Auditory and Mauthner Cell Systems", "country_associated": "xxc", "authorized_access_point": "Symposium Interactions between the Auditory and Mauthner Cell Systems, 1992, Montréal"} 1 -2023-07-08 08:17:50.716267 2023-07-08 08:17:50.716274 74073726-b6d0-4228-9460-e7189e75e35f {"md5": "ff306f3f9a41e002f35eeeff7ee5ec0c", "pid": "94813514X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5177346-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5177346-6", "source": "GND"}], "variant_name": ["Fachtagung Netzregelung, Regelungs- und Optimierungskonzepte für den Koordinierten Kraftwerks- und Netzbetrieb"], "preferred_name": "Fachtagung Netzregelung, 3", "variant_access_point": ["Fachtagung Netzregelung, Regelungs- und Optimierungskonzepte für den Koordinierten Kraftwerks- und Netzbetrieb, 1996, Berlin"], "authorized_access_point": "Fachtagung Netzregelung, 3, 1996, Berlin"} 1 -2023-07-08 08:17:50.814354 2023-07-08 08:17:50.814366 26bd1b1f-8464-49e6-a697-e4e737ec790a {"md5": "08b3a776e713f02e86384bcc897499f3", "pid": "948139579", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5177770-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5177770-8", "source": "GND"}], "variant_name": ["International Symposium on Chemical Reaction Engineering, 14"], "preferred_name": "ISCRE, 14", "country_associated": "be", "variant_access_point": ["International Symposium on Chemical Reaction Engineering, 14, 1996, Brügge"], "authorized_access_point": "ISCRE, 14, 1996, Brügge"} 1 -2023-07-08 08:17:50.91831 2023-07-08 08:17:50.918316 1ea97738-9f42-49a9-bb59-cc4511059258 {"md5": "766108071e294a9e325773d7e2afda3e", "pid": "94814906X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2157694-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2157694-4", "source": "GND"}], "variant_name": ["Erwin-Riesch-Symposium, 7", "Riesch-Symposium, 7", "Westerland Conference, 7", "Westerland Conference (Westerländer Gespräch) to the Memory of Professor Dr. Med. Erich Witzleb (1924 - 1991)"], "preferred_name": "Westerländer Gespräch, 7", "country_associated": "gw", "variant_access_point": ["Erwin-Riesch-Symposium, 7, 1992, Westerland", "Riesch-Symposium, 7, 1992, Westerland. Erwin-Riesch-Stiftung zur Förderung der Wissenschaftlichen Forschung", "Westerland Conference, 7, 1992, Westerland", "Westerland Conference (Westerländer Gespräch) to the Memory of Professor Dr. Med. Erich Witzleb (1924 - 1991), 1992, Westerland"], "authorized_access_point": "Westerländer Gespräch, 7, 1992, Westerland"} 1 -2023-07-08 08:17:51.016759 2023-07-08 08:17:51.016763 b51ef4bf-49ee-4519-858c-b4663f2c7ce0 {"md5": "384b2a49fb49b2d699ae239000b0cc4c", "pid": "948166894", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5178327-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5178327-7", "source": "GND"}], "variant_name": ["Landesbehörde Sachsen", "Landesbehörde der Volkspolizei Sachsen", "Deutschland. Volkspolizei. Landesbehörde Sachsen. Abteilung K", "Deutschland. Volkspolizei. Landesbehörde Sachsen. Dezernat F"], "preferred_name": "Deutschland. Volkspolizei. Landesbehörde Sachsen", "variant_access_point": ["Landesbehörde Sachsen. Deutschland, DDR, Volkspolizei", "Landesbehörde der Volkspolizei Sachsen. Deutschland, DDR", "Deutschland. DDR. Volkspolizei. Landesbehörde Sachsen. Abteilung K", "Deutschland. DDR. Volkspolizei. Landesbehörde Sachsen. Dezernat F"], "authorized_access_point": "Deutschland. DDR. Volkspolizei. Landesbehörde Sachsen"} 1 -2023-07-08 08:17:51.097478 2023-07-08 08:17:51.097482 29de4505-bffc-41e3-a384-e57dc162390e {"md5": "be6d79497ae8ccf3b01ac5d5dcb6163a", "pid": "948240598", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5178731-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5178731-3", "source": "GND"}], "preferred_name": "Düngerexport-Gesellschaft", "date_of_establishment": "1890", "authorized_access_point": "Düngerexport-Gesellschaft. Dresden"} 1 -2023-07-08 08:17:51.185437 2023-07-08 08:17:51.18544 9b6cdc40-9c8a-4c4a-9f9d-588931270e53 {"md5": "39754ba22ebdc7aaa6ed51fb1e6e25e7", "pid": "948258594", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5179072-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5179072-5", "source": "GND"}], "variant_name": ["Wassertechnisches Seminar, 9"], "preferred_name": "Mülheimer Wassertechnisches Seminar, 9", "country_associated": "gw", "variant_access_point": ["Wassertechnisches Seminar, 9, 1995, Mülheim an der Ruhr"], "authorized_access_point": "Mülheimer Wassertechnisches Seminar, 9, 1995, Mülheim an der Ruhr"} 1 -2023-07-08 08:17:51.289792 2023-07-08 08:17:51.289801 60589e1d-e190-4f03-b012-dcabc48ab68b {"md5": "fc6b6ff178116c40c7bf29aa5eddc529", "pid": "948301236", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1234795-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1234795-4", "source": "GND"}], "variant_name": ["Kunst- und Antiquitätenmesse, 39"], "preferred_name": "Deutsche Kunst- und Antiquitätenmesse, 39", "variant_access_point": ["Kunst- und Antiquitätenmesse, 39, 1994, München"], "authorized_access_point": "Deutsche Kunst- und Antiquitätenmesse, 39, 1994, München"} 1 -2023-07-08 08:17:51.378802 2023-07-08 08:17:51.378812 c43b45f3-3c63-4de4-9d8c-4dd1365b4ef0 {"md5": "ed276cd8fc41a96f228c116497281fd0", "pid": "948314931", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5180218-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5180218-1", "source": "GND"}], "variant_name": ["Genesungsheim Augustusbad bei Radeberg für Männer und Frauen", "Heimstätte für Männliche und Weibliche Genesende"], "preferred_name": "Genesungsheim Augustusbad", "variant_access_point": ["Genesungsheim Augustusbad bei Radeberg für Männer und Frauen. Liegau", "Heimstätte für Männliche und Weibliche Genesende. Liegau"], "authorized_access_point": "Genesungsheim Augustusbad. Liegau"} 1 -2023-07-08 08:17:51.482397 2023-07-08 08:17:51.482403 e4044d1c-9fc2-4a37-a773-644488d3e5ea {"md5": "4b91a5ca34f7fa98894e201470171c34", "pid": "948712244", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5181854-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5181854-1", "source": "GND"}], "variant_name": ["Deutscher Gewerkschaftsbund. Landesbezirk Bayern. Kreis Kelheim"], "preferred_name": "Deutscher Gewerkschaftsbund. Kreis Kelheim", "country_associated": "gw", "variant_access_point": ["Deutscher Gewerkschaftsbund. Landesbezirk Bayern. Kreis Kelheim"], "authorized_access_point": "Deutscher Gewerkschaftsbund. Kreis Kelheim"} 1 -2023-07-08 08:17:51.580161 2023-07-08 08:17:51.580172 faba0141-a6f7-4d9b-8057-79ddbbf57860 {"md5": "b445c114fc742c67c63bb12eece12b27", "pid": "948719370", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5182553-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5182553-3", "source": "GND"}], "preferred_name": "Print Council of America", "country_associated": "xxu", "authorized_access_point": "Print Council of America"} 1 -2023-07-08 08:17:51.675766 2023-07-08 08:17:51.675771 93398f72-0d5f-4cbc-94cc-f62ed6d15984 {"md5": "831ff7643aff9a1c07faf2be02c00dd7", "pid": "94872367X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5182975-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5182975-7", "source": "GND"}], "variant_name": ["Convento del Monte dei Cappuccini. Biblioteca Provinciale", "Biblioteca del Monte dei Cappuccini", "Biblioteca del Monte dei Cappuccini", "Biblioteca Monte Cappuccini", "Biblioteca Monte Capuccini. Turin", "Santa Maria al Monte. Kloster. Bibliothek", "Santa Maria al Monte. Klosterbibliothek", "Biblioteca Provinciale del Monte dei Cappuccini", "Biblioteca del Monte dei Cappuccini"], "preferred_name": "Biblioteca Provinciale del Monte dei Cappuccini", "country_associated": "it", "variant_access_point": ["Convento del Monte dei Cappuccini. Turin. Biblioteca Provinciale", "Biblioteca del Monte dei Cappuccini. Turin", "Biblioteca del Monte dei Cappuccini", "Biblioteca Monte Cappuccini", "Biblioteca Monte Capuccini. Turin", "Santa Maria al Monte. Kloster. Bibliothek", "Santa Maria al Monte. Klosterbibliothek", "Biblioteca Provinciale del Monte dei Cappuccini. Ehemalige Vorzugsbenennung SWD", "Biblioteca del Monte dei Cappuccini. Torino"], "authorized_access_point": "Biblioteca Provinciale del Monte dei Cappuccini. Turin"} 1 -2023-07-08 08:17:51.771461 2023-07-08 08:17:51.77147 ad2558ff-4590-4bf2-9255-b4041d05376c {"md5": "68045b50301f222d03cc69a738efc85e", "pid": "948936266", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2159902-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2159902-6", "source": "GND"}], "preferred_name": "Seminar Öko-Lobbying: Wie Anliegen von Europäischer Dimension Entstehen und Durchgesetzt Werden", "country_associated": "au", "authorized_access_point": "Seminar Öko-Lobbying: Wie Anliegen von Europäischer Dimension Entstehen und Durchgesetzt Werden, 1995, Wien"} 1 -2023-07-08 08:17:51.865832 2023-07-08 08:17:51.865836 1cdffff7-5eaa-4d2d-b206-9dca095f888e {"md5": "802d3e9f63c285b047e1b2a3eea72e61", "pid": "94909613X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5184565-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5184565-9", "source": "GND"}], "variant_name": ["Session Organized at 40th Anniversary of the Department of Geomorphology and Hydrology of Mountains and Uplands IGiPZ PAN"], "preferred_name": "Sesja Naukowa w 40-Lecie Zakładu Geomorfologii i Hydrologii Gór i Wyżyn IGiPZ PAN", "country_associated": "pl", "variant_access_point": ["Session Organized at 40th Anniversary of the Department of Geomorphology and Hydrology of Mountains and Uplands IGiPZ PAN, 1993, Krakau"], "authorized_access_point": "Sesja Naukowa w 40-Lecie Zakładu Geomorfologii i Hydrologii Gór i Wyżyn IGiPZ PAN, 1993, Krakau"} 1 -2023-07-08 08:17:51.949628 2023-07-08 08:17:51.949634 f86ddfe3-8f52-466e-b68f-365b6435ead7 {"md5": "7568c9ba697caf64390c47a4def78376", "pid": "949101338", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5185055-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5185055-2", "source": "GND"}], "variant_name": ["Regionala markvårdsenheten", "Styrelsen för internationell utveckling. Regional Soil Conservation Unit", "Regional Soil Conservation Unit", "RSCU", "SIDA's Regionala markvårdsenheten", "SIDA's Regional Soil Conservation Unit"], "preferred_name": "Styrelsen för internationell utveckling. Regionala markvårdsenheten", "country_associated": "sw", "variant_access_point": ["Regionala markvårdsenheten. Styrelsen för internationell utveckling", "Styrelsen för internationell utveckling. Regional Soil Conservation Unit", "Regional Soil Conservation Unit. Styrelsen för internationell utveckling", "RSCU. Abkuerzung", "SIDA's Regionala markvårdsenheten", "SIDA's Regional Soil Conservation Unit"], "authorized_access_point": "Styrelsen för internationell utveckling. Regionala markvårdsenheten", "biographical_information": ["Sitz: Nairobi"]} 1 -2023-07-08 08:17:52.025674 2023-07-08 08:17:52.025679 d4f9e270-a237-47b0-b331-b2cb32cfff05 {"md5": "9038e3990d41fa35c9213790e2aa41c6", "pid": "949309214", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1601432-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1601432-7", "source": "GND"}], "variant_name": ["Symposium Highlights of Gastroenterology in the Netherlands, 10", "Annual Gastroenterology Symposium Highlights of Gastroenterology in the Netherlands, 10"], "preferred_name": "Gastroenterology Symposium Highlights of Gastroenterology in the Netherlands, 10", "variant_access_point": ["Symposium Highlights of Gastroenterology in the Netherlands, 10, 1995", "Annual Gastroenterology Symposium Highlights of Gastroenterology in the Netherlands, 10, 1995"], "authorized_access_point": "Gastroenterology Symposium Highlights of Gastroenterology in the Netherlands, 10, 1995"} 1 -2023-07-08 08:17:52.115046 2023-07-08 08:17:52.115051 bc75cf64-af58-4c1e-9a0f-e9fc8af10cf7 {"md5": "e3e83150d7ff7a27505a33ff445ce3c2", "pid": "949313874", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5186888-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5186888-X", "source": "GND"}], "variant_name": ["SED-BPO des VEB Energieversorgung Neubrandenburg"], "preferred_name": "Sozialistische Einheitspartei Deutschlands. Betriebsparteiorganisation des VEB Energieversorgung Neubrandenburg", "variant_access_point": ["SED-BPO des VEB Energieversorgung Neubrandenburg"], "authorized_access_point": "Sozialistische Einheitspartei Deutschlands. Betriebsparteiorganisation des VEB Energieversorgung Neubrandenburg"} 1 -2023-07-08 08:17:52.18831 2023-07-08 08:17:52.188313 cfdd4910-7423-46bb-ae99-2d254dbf0700 {"md5": "d61644118b5e9a5e94b248e918f629a9", "pid": "94933443X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5187089-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5187089-7", "source": "GND"}], "variant_name": ["Realschule zu Krefeld (In Umwandlung zur Oberrealschule)", "Realschule (In Umwandlung zur Oberrealschule)"], "preferred_name": "Realschule zu Crefeld (In Umwandlung zur Oberrealschule)", "date_of_termination": "1893", "variant_access_point": ["Realschule zu Krefeld (In Umwandlung zur Oberrealschule)", "Realschule (In Umwandlung zur Oberrealschule). Krefeld"], "date_of_establishment": "1892", "authorized_access_point": "Realschule zu Crefeld (In Umwandlung zur Oberrealschule)"} 1 -2023-07-08 08:17:52.293633 2023-07-08 08:17:52.293641 239d1c59-b8c6-48bb-a0f6-4d3fa637078d {"md5": "0d17733ef71c7e053e54f430842743e6", "pid": "949395161", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5188802-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5188802-6", "source": "GND"}], "preferred_name": "Deutsche Gesellschaft für Post- und Telekommunikationsgeschichte. Regionalbereich West", "country_associated": "gw", "authorized_access_point": "Deutsche Gesellschaft für Post- und Telekommunikationsgeschichte. Regionalbereich West"} 1 -2023-07-08 08:17:52.363569 2023-07-08 08:17:52.363576 7b6fbf22-7b39-4b0a-9426-28bf97086531 {"md5": "603eff4f661cc9356e87bc696e68833e", "pid": "949401560", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2161203-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2161203-1", "source": "GND"}], "variant_name": ["Eutonie-Gesellschaft Gerda Alexander"], "preferred_name": "Deutsche Eutonie-Gesellschaft Gerda Alexander", "country_associated": "gw", "variant_access_point": ["Eutonie-Gesellschaft Gerda Alexander. Deutschland"], "authorized_access_point": "Deutsche Eutonie-Gesellschaft Gerda Alexander", "biographical_information": ["e.V."]} 1 -2023-07-08 08:17:52.454814 2023-07-08 08:17:52.454821 d17a7c3a-bd4c-4fea-bac1-875f29a2d04c {"md5": "cec8b83bdecfe3d5a306137c80436028", "pid": "949474851", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5189684-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5189684-9", "source": "GND"}], "variant_name": ["Arquivo Histórico"], "preferred_name": "Santa Casa da Misericórdia. Arquivo Histórico", "country_associated": "po", "variant_access_point": ["Arquivo Histórico. Santa Casa da Misericórdia, Lissabon"], "authorized_access_point": "Santa Casa da Misericórdia. Lissabon. Arquivo Histórico"} 1 -2023-07-08 08:17:52.551667 2023-07-08 08:17:52.551671 68453557-1525-4d22-8ff1-8d8f3d1c5043 {"md5": "95fc9e6de08156de33cd3e609254a6d3", "pid": "949482110", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5190366-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5190366-0", "source": "GND"}], "variant_name": ["Landesfeuerwehrschule", "Baden-Württemberg. Landesfeuerwehrschule", "LFS BW", "LFS"], "preferred_name": "Landesfeuerwehrschule Baden-Württemberg", "country_associated": "gw", "variant_access_point": ["Landesfeuerwehrschule. Baden-Württemberg", "Baden-Württemberg. Landesfeuerwehrschule", "LFS BW. Abkuerzung", "LFS. Abkuerzung"], "date_of_establishment": "1952", "authorized_access_point": "Landesfeuerwehrschule Baden-Württemberg"} 1 -2023-07-08 08:17:57.85205 2023-07-08 08:17:57.852055 e0413cf3-26a2-4e0c-8d5e-91c8481f14f4 {"md5": "6e481952803eb57a5833279316b14976", "pid": "952207990", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5249528-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5249528-0", "source": "GND"}], "preferred_name": "International Panel Workshop", "country_associated": "xxu", "authorized_access_point": "International Panel Workshop, 1962, College Park, Md."} 1 -2023-07-08 08:17:52.628597 2023-07-08 08:17:52.628606 db13f643-a79f-446b-9506-acadd09ff188 {"md5": "0493542ee4f1bb9f80912a49941ce459", "pid": "949486779", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5190813-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5190813-X", "source": "GND"}], "preferred_name": "Journées Internationales d'Information sur les Aliments d'Allaitement pour Veaux", "country_associated": "fr", "authorized_access_point": "Journées Internationales d'Information sur les Aliments d'Allaitement pour Veaux, 1967, Paris"} 1 -2023-07-08 08:17:52.701972 2023-07-08 08:17:52.701976 6a4cee4d-1986-494b-8134-06eb48cba2ff {"md5": "020c8b0628c8509273e9153c657ebe85", "pid": "949496103", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2161403-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2161403-9", "source": "GND"}], "variant_name": ["Gesellschaft für Intermediale Kunst und Kommunikation", "TyPophOto"], "preferred_name": "TyPophOto, Gesellschaft für Intermediale Kunst und Kommunikation", "country_associated": "gw", "variant_access_point": ["Gesellschaft für Intermediale Kunst und Kommunikation", "TyPophOto. Abkuerzung"], "date_of_establishment": "9.1993", "authorized_access_point": "TyPophOto, Gesellschaft für Intermediale Kunst und Kommunikation", "biographical_information": ["e.V."]} 1 -2023-07-08 08:17:52.77366 2023-07-08 08:17:52.773668 8a566d4b-c5d0-4a68-9236-ed5abe3f4c95 {"md5": "ee969279c8ff2d4db024e37f63aedc6e", "pid": "949525197", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5191642-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5191642-3", "source": "GND"}], "variant_name": ["Institute of Pathology. Medical Museum"], "preferred_name": "Medical Museum", "country_associated": "xxu", "variant_access_point": ["Institute of Pathology. Washington, DC. Medical Museum"], "authorized_access_point": "Medical Museum. Washington, DC"} 1 -2023-07-08 08:17:52.865027 2023-07-08 08:17:52.865032 0d6227d5-c777-436f-9985-af7113444b48 {"md5": "5655200ccd76ae69ab2ea82e9c60b721", "pid": "949560820", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2161602-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2161602-4", "source": "GND"}], "preferred_name": "Tourismusverband", "country_associated": "au", "authorized_access_point": "Tourismusverband. Vöcklabruck"} 1 -2023-07-08 08:17:52.952491 2023-07-08 08:17:52.952497 2e11e0da-1500-4645-b124-b6b59687cf49 {"md5": "e78434eb7de28c8bf2fd9f5b33675b83", "pid": "949650978", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2161864-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2161864-1", "source": "GND"}], "variant_name": ["Kommission Geotechnik"], "preferred_name": "Schweizerischer Ingenieur- und Architekten-Verein. Kommission Geotechnik", "country_associated": "sz", "variant_access_point": ["Kommission Geotechnik"], "authorized_access_point": "Schweizerischer Ingenieur- und Architekten-Verein. Kommission Geotechnik"} 1 -2023-07-08 08:17:53.027253 2023-07-08 08:17:53.02726 2284ee4f-6987-4c3e-bcb1-ccc9e571887f {"md5": "949c24818035d406be2d7a4927f9ab97", "pid": "949739960", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5191990-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5191990-4", "source": "GND"}], "preferred_name": "Meeting Caring for the Next Generation", "country_associated": "it", "authorized_access_point": "Meeting Caring for the Next Generation, 1995, Sorrent"} 1 -2023-07-08 08:17:53.113421 2023-07-08 08:17:53.113432 0a24a432-119f-45cf-a46b-a2f37f9649b3 {"md5": "b9ce6f1bb4823581c60087667b8203b5", "pid": "949826758", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5194271-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5194271-9", "source": "GND"}], "preferred_name": "Jugendarbeitskreis DDR - Israel", "authorized_access_point": "Jugendarbeitskreis DDR - Israel"} 1 -2023-07-08 08:17:53.216567 2023-07-08 08:17:53.216574 6ee5a83d-3163-479c-9e73-cd9983410fbc {"md5": "4e7e711cdb5a9f030a8ba848ca43e17b", "pid": "949828246", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5194416-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5194416-9", "source": "GND"}], "preferred_name": "Theology Symposium", "country_associated": "xxu", "authorized_access_point": "Theology Symposium, 1967, Chicago, Ill."} 1 -2023-07-08 08:17:53.308401 2023-07-08 08:17:53.30841 444a1bce-4a5b-46fa-9302-64d079c2a632 {"md5": "82adc3654ba744aa7da035a2778b29a3", "pid": "949857378", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5195079-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5195079-0", "source": "GND"}], "variant_name": ["Zentrales Forschungsinstitut für Arbeit. Bibliothek", "Zentralinstitut für Arbeitsschutz. Bibliothek"], "preferred_name": "Bibliothek des Zentralen Forschungsinstituts für Arbeit und des Zentralinstituts für Arbeitsschutz", "variant_access_point": ["Zentrales Forschungsinstitut für Arbeit. Dresden. Bibliothek", "Zentralinstitut für Arbeitsschutz. Dresden. Bibliothek"], "authorized_access_point": "Bibliothek des Zentralen Forschungsinstituts für Arbeit und des Zentralinstituts für Arbeitsschutz. Dresden"} 1 -2023-07-08 08:17:53.411719 2023-07-08 08:17:53.411723 c80deb3f-aa60-4182-b148-d080552d965f {"md5": "a794c07cab1dbba76540d4a0190590ed", "pid": "950041297", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1236182-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1236182-3", "source": "GND"}], "preferred_name": "International Colloquium on Differential Geometry, 7", "country_associated": "sp", "authorized_access_point": "International Colloquium on Differential Geometry, 7, 1994, Santiago de Compostela"} 1 -2023-07-08 08:17:53.510858 2023-07-08 08:17:53.510867 154623a2-0bdd-45de-a330-c26c138f3048 {"md5": "2771bc4abad18873f8ed1193f3393656", "pid": "950042544", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1601589-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1601589-7", "source": "GND"}], "preferred_name": "Zborovanje Slovenskih Geografov, 17", "authorized_access_point": "Zborovanje Slovenskih Geografov, 17, 1996, Ptuj"} 1 -2023-07-08 08:17:53.582101 2023-07-08 08:17:53.582107 e60adceb-b928-41ff-b33a-8fd02a547e62 {"md5": "a8e189c95229108aee38be454462036e", "pid": "950148148", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5196830-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5196830-7", "source": "GND"}], "variant_name": ["Lehnert und Landrock", "Landrock, Lehnert &"], "preferred_name": "Lehnert & Landrock", "country_associated": "ua", "variant_access_point": ["Lehnert und Landrock. al-Qāhira", "Landrock, Lehnert &. al-Qāhira"], "date_of_establishment": "1923", "authorized_access_point": "Lehnert & Landrock. al-Qāhira"} 1 -2023-07-08 08:17:53.668843 2023-07-08 08:17:53.668847 7baf3ec5-7d4f-4029-8005-4ade808e607c {"md5": "6f303c1454ab0b20b81455bcdbc5bb94", "pid": "950207535", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5197634-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5197634-1", "source": "GND"}], "variant_name": ["SED-Kreisleitung im MTS-Bereich Wittstock"], "preferred_name": "Sozialistische Einheitspartei Deutschlands. Kreisparteiorganisation im MTS-Bereich Wittstock", "variant_access_point": ["SED-Kreisleitung im MTS-Bereich Wittstock"], "authorized_access_point": "Sozialistische Einheitspartei Deutschlands. Kreisparteiorganisation im MTS-Bereich Wittstock"} 1 -2023-07-08 08:17:53.742952 2023-07-08 08:17:53.742957 c9fb4e7c-e23a-4008-9a6d-f3584f013c56 {"md5": "0c0ab3bd4e221e47e1c3b3ed78f5219e", "pid": "950239623", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2163296-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2163296-0", "source": "GND"}], "variant_name": ["RV Muldental der Kleingärtner"], "preferred_name": "Regionalverband Muldental der Kleingärtner", "country_associated": "gw", "variant_access_point": ["RV Muldental der Kleingärtner"], "date_of_establishment": "1993", "authorized_access_point": "Regionalverband Muldental der Kleingärtner", "biographical_information": ["Sitz: Wurzen", "1993 gegr."]} 1 -2023-07-08 08:17:53.832629 2023-07-08 08:17:53.832635 68467c8d-2044-40fc-84a7-bf87f220c0e3 {"md5": "10116c9338982a9d4db502d95f203e39", "pid": "950309788", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2163480-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2163480-4", "source": "GND"}], "variant_name": ["Magyarországi Németek Általános Művelődési Központja", "MNÁMK", "Magyarországi Németek Általános Mœuvelœodési Központja", "Ungarndeutsches Bildungszentrum"], "preferred_name": "Ungarndeutsches Bildungszentrum", "country_associated": "hu", "variant_access_point": ["Magyarországi Németek Általános Művelődési Központja. Baja", "MNÁMK. Abkuerzung", "Magyarországi Németek Általános Mœuvelœodési Központja", "Ungarndeutsches Bildungszentrum. Ehemalige Vorzugsbenennung SWD"], "authorized_access_point": "Ungarndeutsches Bildungszentrum. Baja"} 1 -2023-07-08 08:17:53.932233 2023-07-08 08:17:53.932237 df77df47-8115-4335-9070-d144b3cdeb50 {"md5": "32de344dce8d482c3a3d2ab9b63cadd6", "pid": "950323578", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2163518-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2163518-3", "source": "GND"}], "preferred_name": "Kolpingsfamilie", "country_associated": "gw", "authorized_access_point": "Kolpingsfamilie. Burladingen", "biographical_information": ["Gegr. 1947"]} 1 -2023-07-08 08:17:54.021388 2023-07-08 08:17:54.021391 18be6aa2-afd3-4e65-b38f-3f27060625e3 {"md5": "2c90e08b9f8da908b062138e98f4c46d", "pid": "950389668", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5199248-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5199248-6", "source": "GND"}], "variant_name": ["Dopravni Fakulta Jana Pernera", "Univerzita Pardubice. Jan Perner Faculty of Transport", "Univerzita Pardubice. Perner Faculty of Transport", "Jan Perner Faculty of Transport", "Perner Faculty of Transport", "Univerzita Pardubice. Jan Perner Transport Faculty", "Univerzita Pardubice. Perner Transport Faculty", "Jan Perner Transport Faculty", "Perner Transport Faculty", "DFJP", "Univerzita. Dopravní fakulta Jana Pernera"], "preferred_name": "Univerzita Pardubice. Dopravni Fakulta Jana Pernera", "variant_access_point": ["Dopravni Fakulta Jana Pernera. Pardubice", "Univerzita Pardubice. Jan Perner Faculty of Transport", "Univerzita Pardubice. Perner Faculty of Transport", "Jan Perner Faculty of Transport. Pardubice", "Perner Faculty of Transport. Pardubice", "Univerzita Pardubice. Jan Perner Transport Faculty", "Univerzita Pardubice. Perner Transport Faculty", "Jan Perner Transport Faculty. Pardubice", "Perner Transport Faculty. Pardubice", "DFJP. Abkuerzung", "Univerzita. Pardubice. Dopravní fakulta Jana Pernera"], "date_of_establishment": "1993", "authorized_access_point": "Univerzita Pardubice. Dopravni Fakulta Jana Pernera"} 1 -2023-07-08 08:17:54.113881 2023-07-08 08:17:54.113893 a9c19522-3cab-4969-9cfe-608a3211604f {"md5": "9fd40e4b9f2cb103f53af053920b1c31", "pid": "950389781", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5199258-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5199258-9", "source": "GND"}], "variant_name": ["Angiologischer Fortbildungstag, 3"], "preferred_name": "Kasseler Angiologischer Fortbildungstag, 3", "variant_access_point": ["Angiologischer Fortbildungstag, 3, 1982, Kassel"], "authorized_access_point": "Kasseler Angiologischer Fortbildungstag, 3, 1982"} 1 -2023-07-08 08:17:54.207148 2023-07-08 08:17:54.207156 e0cefdec-26fb-4350-96af-ee7f47e40d38 {"md5": "10a8d834fcd218d9821011f4c740edd3", "pid": "950614076", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2164206-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2164206-0", "source": "GND"}], "preferred_name": "Evangelische Fachhochschule Berlin. Studiengang Pflege, Pflegemanagement", "country_associated": "gw", "authorized_access_point": "Evangelische Fachhochschule Berlin. Studiengang Pflege, Pflegemanagement"} 1 -2023-07-08 08:17:54.277709 2023-07-08 08:17:54.277712 70ac777b-ac5a-4de2-bdeb-e544acf9b1f8 {"md5": "2b81eeeecb959f32bfb9fe9e8a8e67f8", "pid": "950710776", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5200666-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5200666-9", "source": "GND"}], "variant_name": ["CRSR"], "preferred_name": "Centro Ricerche Socio-Religiose", "country_associated": "it", "variant_access_point": ["CRSR. Abkuerzung"], "authorized_access_point": "Centro Ricerche Socio-Religiose. Padua"} 1 -2023-07-08 08:17:54.380697 2023-07-08 08:17:54.380702 f20760ba-877f-42a9-b52f-93a3ed8ff319 {"md5": "bb14659d096c05386783f02a3da70b2a", "pid": "950729205", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5202312-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5202312-6", "source": "GND"}], "variant_name": ["Naučno-Techničeska Konferencija s Meždunarodno Učastie po Černa Metalurgija"], "preferred_name": "Nacionalna Naučno-Techničeska Konferencija s Meždunarodno Učastie po Černa Metalurgija", "variant_access_point": ["Naučno-Techničeska Konferencija s Meždunarodno Učastie po Černa Metalurgija"], "authorized_access_point": "Nacionalna Naučno-Techničeska Konferencija s Meždunarodno Učastie po Černa Metalurgija"} 1 -2023-07-08 08:17:54.478741 2023-07-08 08:17:54.47875 77d8c46f-fdce-4ae2-8081-5e681912e157 {"md5": "b0202f40fe111f3d397aeb9e102ad04a", "pid": "950740136", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5202800-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5202800-8", "source": "GND"}], "variant_name": ["Japan. Generalkonsulat", "Sōryōjikan", "Japanisches Generalkonsulat", "Hamburugu-Nihon-Sōryōjikan", "Nihon-Sōryōjikan"], "preferred_name": "Japan. Sōryōjikan", "country_associated": "ja", "variant_access_point": ["Japan. Generalkonsulat. Hamburg", "Sōryōjikan. Japan, Hamburg", "Japanisches Generalkonsulat. Hamburg", "Hamburugu-Nihon-Sōryōjikan", "Nihon-Sōryōjikan. Hamburg"], "authorized_access_point": "Japan. Sōryōjikan. Hamburg", "biographical_information": ["2013 wurde das Generalkonsulat zum Konsulat herabgestuft; ca. 2015 wurde das Generalkonsulat neu errichtet."]} 1 -2023-07-08 08:17:54.565668 2023-07-08 08:17:54.565674 067579ba-8d4d-467d-a574-1e8db1eee835 {"md5": "ff7c1dd4eea5ad1c8199beecc9a3cbcf", "pid": "950740381", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5202822-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5202822-7", "source": "GND"}], "preferred_name": "Schacht- und Tunnelbau-Kolloquium", "country_associated": "gw", "authorized_access_point": "Schacht- und Tunnelbau-Kolloquium, 1981, Düsseldorf"} 1 -2023-07-08 08:17:54.656249 2023-07-08 08:17:54.656257 f1f63ede-127e-4e6f-a11b-9dcc22ad7999 {"md5": "2d2684c5dfded86884e21ebf2994b733", "pid": "950797855", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5204088-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5204088-4", "source": "GND"}], "variant_name": ["Symposion Die Burgenforschung und Ihre Probleme: Ergrabung - Konservierung - Restaurierung", "Tagung Burgen: Ergrabung - Konservierung - Restaurierung"], "preferred_name": "Symposion Die Burgenforschung und Ihre Probleme", "country_associated": "au", "variant_access_point": ["Symposion Die Burgenforschung und Ihre Probleme: Ergrabung - Konservierung - Restaurierung, 1992, Krems an der Donau", "Tagung Burgen: Ergrabung - Konservierung - Restaurierung, 1992, Krems an der Donau"], "authorized_access_point": "Symposion Die Burgenforschung und Ihre Probleme, 1992, Krems an der Donau"} 1 -2023-07-08 08:17:54.732299 2023-07-08 08:17:54.732304 19403080-d1d3-40d4-af00-f6d9d8e2eeaf {"md5": "72553e2b33355c415ccce551e7aa8b1f", "pid": "95080617X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5204889-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5204889-5", "source": "GND"}], "variant_name": ["Musei del Comune", "Firenze. Musei del Comune"], "preferred_name": "Musei del Comune", "country_associated": "it", "variant_access_point": ["Musei del Comune. Firenze", "Firenze. Musei del Comune"], "authorized_access_point": "Musei del Comune. Florenz"} 1 -2023-07-08 08:17:54.82296 2023-07-08 08:17:54.822967 ab761939-a8b3-4b9b-8506-43ec1943fa56 {"md5": "6aeb7e69acf2c0fe916da9404072c3da", "pid": "950819603", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5205306-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5205306-4", "source": "GND"}], "preferred_name": "Verein Ehem. Offiziere des Füsilier-Regiments Königin Viktoria von Schweden (Pomm.) Nr. 34", "authorized_access_point": "Verein Ehem. Offiziere des Füsilier-Regiments Königin Viktoria von Schweden (Pomm.) Nr. 34"} 1 -2023-07-08 08:17:54.916026 2023-07-08 08:17:54.916031 4c6daeb8-1934-492e-82eb-4297ab1b90e0 {"md5": "29f5d82a56c3bb9c390ff060694cb51c", "pid": "950857696", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5205869-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5205869-4", "source": "GND"}], "variant_name": ["Art Museum"], "preferred_name": "Boise Art Museum", "country_associated": "xxu", "variant_access_point": ["Art Museum. Boise, Idaho"], "authorized_access_point": "Boise Art Museum"} 1 -2023-07-08 08:17:55.011485 2023-07-08 08:17:55.011493 fc09b87f-e3e4-4517-99dc-0bbc963eadaf {"md5": "878f1c996ce14233e332c80d24d6391a", "pid": "951162322", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1237621-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1237621-8", "source": "GND"}], "variant_name": ["Arbeitskreis Maritime Messelektronik"], "preferred_name": "Symposium Maritime Elektronik, 2", "variant_access_point": ["Arbeitskreis Maritime Messelektronik, Rostock"], "authorized_access_point": "Symposium Maritime Elektronik, 2, 1977, Rostock. Arbeitskreis Maritime Messelektronik"} 1 -2023-07-08 08:17:55.136727 2023-07-08 08:17:55.136736 6507ed03-acaf-474e-9e1f-f4c0461d9db9 {"md5": "17ba3ce47b6235ff1d1f0a4f05f2558f", "pid": "951185314", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5212247-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5212247-5", "source": "GND"}], "variant_name": ["Working Group for the International Study of the Pollution of the North Sea and Its Effects on Living Resources and Their Exploitation"], "preferred_name": "International Council for the Exploration of the Sea. Working Group for the International Study of the Pollution of the North Sea and Its Effects on Living Resources and Their Exploitation", "variant_access_point": ["Working Group for the International Study of the Pollution of the North Sea and Its Effects on Living Resources and Their Exploitation"], "authorized_access_point": "International Council for the Exploration of the Sea. Working Group for the International Study of the Pollution of the North Sea and Its Effects on Living Resources and Their Exploitation"} 1 -2023-07-08 08:17:55.231995 2023-07-08 08:17:55.232 387ab389-85c4-4c2e-8c30-db5ca5ddc81e {"md5": "b7358b103aa5312c8ae9bdc57701fbd4", "pid": "951226029", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5216099-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5216099-3", "source": "GND"}], "variant_name": ["Nyelvosztályának Bizottság"], "preferred_name": "Magyar Tudományos Akademia. Nyelvosztályának Bizottság", "country_associated": "hu", "variant_access_point": ["Nyelvosztályának Bizottság. Magyar Tudományos Akademia"], "authorized_access_point": "Magyar Tudományos Akademia. Nyelvosztályának Bizottság"} 1 -2023-07-08 08:17:55.316386 2023-07-08 08:17:55.316393 dd70ad96-65fd-45d2-a4d4-74024b171a02 {"md5": "24a104b28bc6bbefc7ffcd60e942958b", "pid": "951229982", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5216479-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5216479-2", "source": "GND"}], "variant_name": ["EDIS"], "preferred_name": "Equipo de Investigación Sociológica", "country_associated": "sp", "variant_access_point": ["EDIS. Abkuerzung"], "authorized_access_point": "Equipo de Investigación Sociológica"} 1 -2023-07-08 08:17:55.383167 2023-07-08 08:17:55.383173 857cf81a-a21b-4f48-89a6-4f9342039fb1 {"md5": "bbc8de271bbf2239024d358e44867e37", "pid": "95123272X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5216738-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5216738-0", "source": "GND"}], "preferred_name": "Bibliothèque Municipale", "country_associated": "fr", "authorized_access_point": "Bibliothèque Municipale. Epinal"} 1 -2023-07-08 08:17:55.456539 2023-07-08 08:17:55.456545 535509c9-e08d-400b-9904-d03b48e600da {"md5": "d9771289b92e8aff4ccca160985c2107", "pid": "95125023X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5218443-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5218443-2", "source": "GND"}], "variant_name": ["Symposium on Reliability of Nuclear Power Plants", "Reliability of Nuclear Power Plants"], "preferred_name": "Symposium on the Reliability of Nuclear Power Plants", "country_associated": "au", "variant_access_point": ["Symposium on Reliability of Nuclear Power Plants, 1975, Innsbruck", "Reliability of Nuclear Power Plants, 1975, Innsbruck"], "authorized_access_point": "Symposium on the Reliability of Nuclear Power Plants, 1975, Innsbruck"} 1 -2023-07-08 08:17:55.541588 2023-07-08 08:17:55.541596 987715e3-fdee-454d-a205-eb6fb7fe619a {"md5": "4d60b34af937f319e347fb4e553b3cd1", "pid": "951301330", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5223423-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5223423-X", "source": "GND"}], "preferred_name": "International Conference on Micro-, Electro-, Opto-, Mechanical Systems and Components, 4", "authorized_access_point": "International Conference on Micro-, Electro-, Opto-, Mechanical Systems and Components, 4, 1994, Berlin"} 1 -2023-07-08 08:17:55.633006 2023-07-08 08:17:55.633012 3ef102b5-b959-41cc-b116-679ed2b47e12 {"md5": "35b61bc6e8ee5cdfad920e7192fcdcf8", "pid": "951303139", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5223603-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5223603-1", "source": "GND"}], "preferred_name": "Associació d'Amics i Vei͏̈ns de Cererols", "authorized_access_point": "Associació d'Amics i Vei͏̈ns de Cererols"} 1 -2023-07-08 08:17:55.747528 2023-07-08 08:17:55.747532 413dd38d-b2da-4139-b357-756214657d30 {"md5": "d9e9faa1f48121e48a78d4fe2cfb8c97", "pid": "951745956", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5225789-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5225789-7", "source": "GND"}], "preferred_name": "Hanbury Workshop", "authorized_access_point": "Hanbury Workshop, 1994"} 1 -2023-07-08 08:17:55.839234 2023-07-08 08:17:55.839242 7d93b27b-c8cf-4bea-87ed-144db6345ee7 {"md5": "bdccce926c9a9544e1a9b44bcdce9581", "pid": "951762990", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5227391-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5227391-X", "source": "GND"}], "variant_name": ["Russian-Swedish Symposium on Physico-Chemical Biology, 5"], "preferred_name": "Rossijsko-Švedskij Simpozium po Fiziko-Chimičeskoj Biologii, 5", "variant_access_point": ["Russian-Swedish Symposium on Physico-Chemical Biology, 5, 1992, Moskau"], "authorized_access_point": "Rossijsko-Švedskij Simpozium po Fiziko-Chimičeskoj Biologii, 5, 1992, Moskau"} 1 -2023-07-08 08:17:55.931666 2023-07-08 08:17:55.931671 1ee6c23a-87e2-45a4-8758-c014f12c5147 {"md5": "fd206448f7cf7c51b9d27254dfabeb48", "pid": "951789252", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5229788-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5229788-3", "source": "GND"}], "variant_name": ["Bildungsökonomischer Ausschuß", "Gesellschaft für Wirtschafts- und Sozialwissenschaften. Bildungsökonomischer Ausschuss"], "preferred_name": "Gesellschaft für Wirtschafts- und Sozialwissenschaften. Bildungsökonomischer Ausschuß", "country_associated": "gw", "variant_access_point": ["Bildungsökonomischer Ausschuß. Gesellschaft für Wirtschafts- und Sozialwissenschaften", "Gesellschaft für Wirtschafts- und Sozialwissenschaften. Bildungsökonomischer Ausschuss"], "authorized_access_point": "Gesellschaft für Wirtschafts- und Sozialwissenschaften. Bildungsökonomischer Ausschuß"} 1 -2023-07-08 08:17:56.017584 2023-07-08 08:17:56.017589 f01215d3-a562-47df-b074-d600782d8958 {"md5": "19a4cdfec094d007aa978e6f040aad4a", "pid": "951803328", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5231116-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5231116-8", "source": "GND"}], "variant_name": ["Amnesty for Women"], "preferred_name": "Amnesty for Women. Städtegruppe", "country_associated": "gw", "variant_access_point": ["Amnesty for Women. Hamburg"], "authorized_access_point": "Amnesty for Women. Städtegruppe. Hamburg"} 1 -2023-07-08 08:17:56.105624 2023-07-08 08:17:56.105631 2a5e3cad-41e6-4a03-bd03-bb9e8ae23862 {"md5": "147186b5ecf8dff3a63401ae6227a704", "pid": "951803921", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5231175-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5231175-2", "source": "GND"}], "preferred_name": "International Workshop A Future of Telework", "country_associated": "ne", "authorized_access_point": "International Workshop A Future of Telework, 1994, Delft"} 1 -2023-07-08 08:17:56.186962 2023-07-08 08:17:56.186965 4fd94835-5dfe-48dd-8e8a-45157260fb7a {"md5": "6741f913bd5ddc1dda96ff4ff8b0a6d0", "pid": "951806084", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5231390-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5231390-6", "source": "GND"}], "variant_name": ["Nordiske Geoteknikermøde, 11", "Nordic Geotechnical Meeting, 11", "Nordiske Geoteknikermøde, 11", "Geoteknikermøde, 11", "NGM, 11"], "preferred_name": "NGM, 11", "country_associated": "dk", "variant_access_point": ["Nordiske Geoteknikermøde, 11, 1992, Ålborg", "Nordic Geotechnical Meeting, 11, 1992, Ålborg", "Nordiske Geoteknikermøde, 11, 1992, Aalborg", "Geoteknikermøde, 11, 1992, Aalborg", "NGM, 11, 1992, Aalborg"], "authorized_access_point": "NGM, 11, 1992, Ålborg"} 1 -2023-07-08 08:17:56.262689 2023-07-08 08:17:56.262694 e785f4c3-33be-455e-b17f-eba420046952 {"md5": "14f5f9e8193a85e75a49993d09a0aa31", "pid": "951828673", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5233601-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5233601-3", "source": "GND"}], "variant_name": ["ITG-Fachtagung Vakuumelektronik und Displays"], "preferred_name": "Fachtagung Vakuumelektronik und Displays", "variant_access_point": ["ITG-Fachtagung Vakuumelektronik und Displays, 1995, Garmisch-Partenkirchen"], "authorized_access_point": "Fachtagung Vakuumelektronik und Displays, 1995, Garmisch-Partenkirchen"} 1 -2023-07-08 08:17:56.355635 2023-07-08 08:17:56.355647 c31a63ed-e08a-4637-b58f-c5c754c6d2e8 {"md5": "09d7919388f03a5aa5d38fb47557b352", "pid": "951838482", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5234543-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5234543-9", "source": "GND"}], "variant_name": ["LSAF"], "preferred_name": "Lembaga Studi Agama dan Filsafat", "country_associated": "io", "variant_access_point": ["LSAF. Abkuerzung"], "authorized_access_point": "Lembaga Studi Agama dan Filsafat"} 1 -2023-07-08 08:17:56.450024 2023-07-08 08:17:56.450031 f83b7cc1-4116-4be1-9b22-efd4902e187d {"md5": "c13dea632395254543da173f7d155f37", "pid": "951842676", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5234954-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5234954-8", "source": "GND"}], "preferred_name": "Arbeitsgemeinschaft für Pharmazeutische Verfahrenstechnik. Fachgruppe Feste Arzneiformen", "authorized_access_point": "Arbeitsgemeinschaft für Pharmazeutische Verfahrenstechnik. Fachgruppe Feste Arzneiformen"} 1 -2023-07-08 08:17:56.526548 2023-07-08 08:17:56.526557 d8d308c3-3e17-42aa-8e4b-e791238e682c {"md5": "37121d2709ee06a2a8fbb5c15d3d5637", "pid": "951852043", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5235868-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5235868-9", "source": "GND"}], "variant_name": ["Naučnaja Konferencija Struktura i Svojstva Kristalličeskich Amorfnych Materialov"], "preferred_name": "Vserossijskaja Naučnaja Konferencija Struktura i Svojstva Kristalličeskich Amorfnych Materialov", "variant_access_point": ["Naučnaja Konferencija Struktura i Svojstva Kristalličeskich Amorfnych Materialov, 1996, Nižnij Novgorod"], "authorized_access_point": "Vserossijskaja Naučnaja Konferencija Struktura i Svojstva Kristalličeskich Amorfnych Materialov, 1996, Nižnij Novgorod"} 1 -2023-07-08 08:17:56.617526 2023-07-08 08:17:56.61753 f0e57ec5-1fc4-484d-976c-cedede4bc82d {"md5": "3745400608cb1cd581df3e580a28243c", "pid": "951854194", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5236074-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5236074-X", "source": "GND"}], "variant_name": ["IEE Colloquium on Optical Free Space Communication Links", "Colloquium on \\"Optical Free Space Communication Links\\"", "Optical Free Space Communication Links"], "preferred_name": "Colloquium on Optical Free Space Communication Links", "country_associated": "xxk", "variant_access_point": ["IEE Colloquium on Optical Free Space Communication Links, 1996, London", "Colloquium on \\"Optical Free Space Communication Links\\", 1996, London", "Optical Free Space Communication Links, 1996, London"], "authorized_access_point": "Colloquium on Optical Free Space Communication Links, 1996, London"} 1 -2023-07-08 08:17:56.7024 2023-07-08 08:17:56.702403 3f5971f1-f9e3-47b9-ae70-730a1f3fbba1 {"md5": "e5f691768b7709ec6c8c433a3f3a843f", "pid": "951894048", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5239594-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5239594-7", "source": "GND"}], "variant_name": ["Annual WERC Technology Development Conference, 4", "WERC Technology Development Conference, 4"], "preferred_name": "Technology Development Conference, 4", "country_associated": "xxu", "variant_access_point": ["Annual WERC Technology Development Conference, 4, 1994, Las Cruces, NM", "WERC Technology Development Conference, 4, 1994, Las Cruces, NM"], "authorized_access_point": "Technology Development Conference, 4, 1994, Las Cruces, NM"} 1 -2023-07-08 08:17:56.811773 2023-07-08 08:17:56.811781 074fe66d-9b65-4a9d-bbfd-590ec311c080 {"md5": "6b3f5e62ebf38c383a1c1dc6a8e6b385", "pid": "951894692", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5239657-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5239657-5", "source": "GND"}], "preferred_name": "Conference on Fire and Forest Meteorology, 11", "country_associated": "xxu", "authorized_access_point": "Conference on Fire and Forest Meteorology, 11, 1991, Missoula, Mont."} 1 -2023-07-08 08:17:56.908165 2023-07-08 08:17:56.908174 22bfcc98-5793-4b72-b576-dd5721434cd9 {"md5": "743ad09b7ed0edbe6372174c7a55d9e8", "pid": "951913441", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5241403-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5241403-6", "source": "GND"}], "preferred_name": "Carl-August-Gedächtnis-Ausstellung", "authorized_access_point": "Carl-August-Gedächtnis-Ausstellung, 1928, Weimar"} 1 -2023-07-08 08:17:56.993113 2023-07-08 08:17:56.993123 0e67bace-0318-405b-94e2-5bac0e1a8d58 {"md5": "6cff486854ebbb16f8d0ebedd204b65b", "pid": "951920553", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5242071-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5242071-1", "source": "GND"}], "preferred_name": "Congreso Internacional sobre Valle-Inclán, 1", "country_associated": "sp", "authorized_access_point": "Congreso Internacional sobre Valle-Inclán, 1, 1992, Bellaterra"} 1 -2023-07-08 08:17:57.089085 2023-07-08 08:17:57.089093 1c85ab29-6736-4467-9c59-ef561a0100c9 {"md5": "2bd5889d5345f32a4e5a409616ca83eb", "pid": "951921258", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5242138-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5242138-7", "source": "GND"}], "variant_name": ["SOCHIGE", "SOCHIGE"], "preferred_name": "Sociedad Chilena de Geotecnia", "country_associated": "cl", "variant_access_point": ["SOCHIGE. Abkuerzung", "SOCHIGE. Sociedad Chilena de Geotecnia"], "authorized_access_point": "Sociedad Chilena de Geotecnia"} 1 -2023-07-08 08:17:57.193186 2023-07-08 08:17:57.193191 82c0e87d-2c85-4113-888f-6ec548f6b79d {"md5": "ec1c631c455aa24b5f71b863a3e48e10", "pid": "951945491", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5244437-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5244437-5", "source": "GND"}], "variant_name": ["Landesverband Niedersachsen", "Lebenshilfe für Geistig Behinderte Niedersachsen", "Lebenshilfe Niedersachsen"], "preferred_name": "Bundesvereinigung Lebenshilfe für Geistig Behinderte. Landesverband Niedersachsen", "country_associated": "gw", "date_of_termination": "XX.XX.1996", "variant_access_point": ["Landesverband Niedersachsen", "Lebenshilfe für Geistig Behinderte Niedersachsen", "Lebenshilfe Niedersachsen"], "date_of_establishment": "14.05.1968", "authorized_access_point": "Bundesvereinigung Lebenshilfe für Geistig Behinderte. Landesverband Niedersachsen", "biographical_information": ["1968 Umbenennung der übergeordneten Körperschaft.", "1996 Umbenennung der übergeordneten Körperschaft."]} 1 -2023-07-08 08:17:57.292975 2023-07-08 08:17:57.292988 ec20ff5c-78a4-475f-b772-4fed83084ab8 {"md5": "9098eb4ac97d3a3fe6f46ebb59c0d0b3", "pid": "951947915", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5244664-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5244664-5", "source": "GND"}], "variant_name": ["Palast der Jugend"], "preferred_name": "Vystavočnyj Zal Dvorca Molode͏̈ži", "variant_access_point": ["Palast der Jugend. Leningrad"], "authorized_access_point": "Vystavočnyj Zal Dvorca Molode͏̈ži. Leningrad"} 1 -2023-07-08 08:17:57.368025 2023-07-08 08:17:57.368029 d6986341-cfce-4622-91e7-faa07b9c9964 {"md5": "0e88717069939084068830c45cf2bc90", "pid": "952056763", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2166850-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2166850-4", "source": "GND"}], "variant_name": ["Professur Statistik und Freie Berufe", "Universität Lüneburg. Fachbereich Wirtschafts- und Sozialwissenschaften. Professur Statistik und Freie Berufe"], "preferred_name": "Forschungsinstitut Freie Berufe. Professur Statistik und Freie Berufe", "country_associated": "gw", "variant_access_point": ["Professur Statistik und Freie Berufe. Lüneburg", "Universität Lüneburg. Fachbereich Wirtschafts- und Sozialwissenschaften. Professur Statistik und Freie Berufe"], "authorized_access_point": "Forschungsinstitut Freie Berufe. Professur Statistik und Freie Berufe"} 1 -2023-07-08 08:17:57.462183 2023-07-08 08:17:57.462188 68df79b5-ba51-403c-83b7-10beec75c7da {"md5": "8dab6479078857c4cd7f722598a18ecf", "pid": "952070308", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5246577-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5246577-9", "source": "GND"}], "variant_name": ["THW Gronau", "Technisches Hilfswerk Gronau", "Bundesanstalt Technisches Hilfswerk Gronau"], "preferred_name": "Bundesanstalt Technisches Hilfswerk. Ortsverband Gronau", "country_associated": "gw", "variant_access_point": ["THW Gronau", "Technisches Hilfswerk Gronau", "Bundesanstalt Technisches Hilfswerk Gronau"], "authorized_access_point": "Bundesanstalt Technisches Hilfswerk. Ortsverband Gronau", "biographical_information": ["Gegr. 1955"]} 1 -2023-07-08 08:17:57.566452 2023-07-08 08:17:57.566458 4ff76600-e702-4745-88c1-f58f486bae27 {"md5": "38604993aea3ec8dc3d703eba1be5df8", "pid": "952091542", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5246729-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5246729-6", "source": "GND"}], "variant_name": ["SDS"], "preferred_name": "Sudetendeutscher Sängerbund", "country_associated": "gw", "variant_access_point": ["SDS"], "authorized_access_point": "Sudetendeutscher Sängerbund", "biographical_information": ["Sitz: Kitzingen"]} 1 -2023-07-08 08:17:57.65575 2023-07-08 08:17:57.655759 edb2e5f1-31d4-498e-93d1-0c78e00bfba3 {"md5": "4fbb0a60d31f77f9373ae7edc4594435", "pid": "952101173", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5247659-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5247659-5", "source": "GND"}], "variant_name": ["Conference of the European Constitutional Courts, 10", "Conférence des Cours Constitutionnelles Européennes, 10"], "preferred_name": "Konferenz der Europäischen Verfassungsgerichte, 10", "country_associated": "hu", "variant_access_point": ["Conference of the European Constitutional Courts, 10, 1996, Budapest", "Conférence des Cours Constitutionnelles Européennes, 10, 1996, Budapest"], "authorized_access_point": "Konferenz der Europäischen Verfassungsgerichte, 10, 1996, Budapest"} 1 -2023-07-08 08:17:57.750783 2023-07-08 08:17:57.750791 91994b72-3536-471e-b044-673d3ca86790 {"md5": "ad844af990ff52517339c3f14225801e", "pid": "952199718", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2167217-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2167217-9", "source": "GND"}], "variant_name": ["EBS", "Mouvement européen Suisse", "Mouvement européen en Suisse", "Movimento europeo Svizzera", "Movimento europeo svizzero"], "preferred_name": "Europäische Bewegung Schweiz", "country_associated": "sz", "variant_access_point": ["EBS. Abkuerzung", "Mouvement européen Suisse", "Mouvement européen en Suisse", "Movimento europeo Svizzera", "Movimento europeo svizzero"], "date_of_establishment": "08.05.2021", "authorized_access_point": "Europäische Bewegung Schweiz", "biographical_information": ["Sitz am Domizil der Geschäftsstelle. Parteipolitisch unabhängiger Verein mit diversen Sektionen und regionalen Gruppen in der Schweiz. Von 27.03.1998 bis 07.05.2021verwendete der Verein die bevorzugte Namensform \\"Neue Europäische Bewegung Schweiz\\""]} 1 -2023-07-08 08:18:30.180631 2023-07-08 08:18:30.180645 a68571e8-45ce-4b38-895e-bfb54a3a7e4e {"md5": "83d609be28dd1ba2143a7fda9b9a8dc0", "pid": "970302339", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5553833-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5553833-2", "source": "GND"}], "preferred_name": "Weihnachtsausstellung", "country_associated": "sz", "authorized_access_point": "Weihnachtsausstellung, 1978, Thun"} 1 -2023-07-08 08:17:57.953288 2023-07-08 08:17:57.953294 9311c87f-540a-4080-97f3-d8681701c2df {"md5": "faccece4c816be9bc8e4f7cec3e53a9b", "pid": "952241684", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5250785-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5250785-3", "source": "GND"}], "variant_name": ["Economic Development Division"], "preferred_name": "USA. Economic Research Service. Economic Development Division", "country_associated": "xxu", "variant_access_point": ["Economic Development Division. USA, Economic Research Service"], "authorized_access_point": "USA. Economic Research Service. Economic Development Division"} 1 -2023-07-08 08:17:58.058464 2023-07-08 08:17:58.058473 1338b92e-245c-4f37-b9c8-f3653e64e8e9 {"md5": "43f06d8b9bef46fcc9715767e99775e4", "pid": "952265168", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5251181-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5251181-9", "source": "GND"}], "variant_name": ["Nationale Havenraad"], "preferred_name": "Niederlande. Nationale Havenraad", "country_associated": "ne", "variant_access_point": ["Nationale Havenraad. Niederlande"], "authorized_access_point": "Niederlande. Nationale Havenraad"} 1 -2023-07-08 08:17:58.152551 2023-07-08 08:17:58.152555 1049e3bd-bd76-4aee-8768-04059fd5166e {"md5": "9b27f70260a957c5d901f1e555305540", "pid": "952327511", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5251856-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5251856-5", "source": "GND"}], "variant_name": ["SED-PO des VEB Landbaukombinats Rostock", "SED-Parteiorganisation des VEB Landbaukombinats Rostock"], "preferred_name": "Sozialistische Einheitspartei Deutschlands. Parteiorganisation des VEB Landbaukombinats Rostock", "variant_access_point": ["SED-PO des VEB Landbaukombinats Rostock", "SED-Parteiorganisation des VEB Landbaukombinats Rostock"], "authorized_access_point": "Sozialistische Einheitspartei Deutschlands. Parteiorganisation des VEB Landbaukombinats Rostock", "biographical_information": ["Sitz: Wismar"]} 1 -2023-07-08 08:17:58.243594 2023-07-08 08:17:58.243622 28a32c86-02bf-4f3b-a8af-c37f8694f74c {"md5": "1af2b1811fec06a6c3314b6ab0e037ef", "pid": "95232752X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5251857-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5251857-7", "source": "GND"}], "variant_name": ["ICI", "ICT"], "preferred_name": "Institut Català de Tecnologia", "country_associated": "sp", "variant_access_point": ["ICI. Abkuerzung", "ICT. Institut Català de Tecnologia, Barcelona"], "authorized_access_point": "Institut Català de Tecnologia. Barcelona"} 1 -2023-07-08 08:17:58.341601 2023-07-08 08:17:58.341605 7addda76-a4b3-4f65-b34e-b60f04fff192 {"md5": "1f3dd66d617e99cec10157d0e9b5c9e1", "pid": "952354527", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5252576-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5252576-4", "source": "GND"}], "preferred_name": "Centro di Studi Storici della Chiesa", "country_associated": "it", "authorized_access_point": "Centro di Studi Storici della Chiesa. Bari"} 1 -2023-07-08 08:17:58.417881 2023-07-08 08:17:58.417885 548360d0-600a-4f0c-9460-0e5dbeb3a862 {"md5": "e745991872b1101da4078c9473ec6e89", "pid": "952354969", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5252618-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5252618-5", "source": "GND"}], "variant_name": ["Volksbank Dresden eG"], "preferred_name": "Volksbank Dresden", "country_associated": "gw", "variant_access_point": ["Volksbank Dresden eG. Unveraenderte Form"], "date_of_establishment": "1997", "authorized_access_point": "Volksbank Dresden"} 1 -2023-07-08 08:17:58.491015 2023-07-08 08:17:58.491024 b846fd24-b87b-4064-a9e4-70cd8d9d89f2 {"md5": "21c9ea9333afab502799e31fdec87aee", "pid": "952358492", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5252952-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5252952-6", "source": "GND"}], "variant_name": ["TSO"], "preferred_name": "Stationery Office", "country_associated": "xxk", "variant_access_point": ["TSO. Abkuerzung"], "date_of_establishment": "1996", "authorized_access_point": "Stationery Office. London", "biographical_information": ["Ltd; das Office wurde 1996 privatisiert"]} 1 -2023-07-08 08:17:58.564388 2023-07-08 08:17:58.564392 16bd3ed5-9b0e-4a8f-9dc2-c58fc25c0e29 {"md5": "fa4073b29f0e3fa74aa9d5f78edaeac2", "pid": "952379546", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5253289-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5253289-6", "source": "GND"}], "preferred_name": "Jugendbildungsstätte Don Bosco", "country_associated": "gw", "authorized_access_point": "Jugendbildungsstätte Don Bosco. Jünkerath"} 1 -2023-07-08 08:17:58.648643 2023-07-08 08:17:58.648648 7acdc7e6-b089-4225-9f56-7c04654fa293 {"md5": "9a5f4afb50cc0a0362b8921b1b6c806b", "pid": "952419351", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5254323-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5254323-7", "source": "GND"}], "preferred_name": "Rationalisierungskonferenz, 4", "authorized_access_point": "Rationalisierungskonferenz, 4, 1980, Dresden"} 1 -2023-07-08 08:17:58.732514 2023-07-08 08:17:58.73252 84965e92-36d0-481c-a383-4897350a2314 {"md5": "10c40348a6a72fe7cd334641a5401a0d", "pid": "952481464", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5256766-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5256766-7", "source": "GND"}], "variant_name": ["Brinckmann Gesellschaft", "JBG"], "preferred_name": "Justus Brinckmann Gesellschaft", "date_of_termination": "1933", "variant_access_point": ["Brinckmann Gesellschaft. 1921-1933", "JBG. Abkuerzung"], "date_of_establishment": "1921", "authorized_access_point": "Justus Brinckmann Gesellschaft. 1921-1933"} 1 -2023-07-08 08:17:58.83002 2023-07-08 08:17:58.830026 180343d5-ae72-4d89-8fb5-e80928bd0bb6 {"md5": "5b4cd78fda733f9b196e4f65be39c85e", "pid": "952489546", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5257535-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5257535-4", "source": "GND"}], "preferred_name": "ZM Communications GmbH", "country_associated": "gw", "authorized_access_point": "ZM Communications GmbH. Nürnberg"} 1 -2023-07-08 08:17:58.931259 2023-07-08 08:17:58.931267 1d8b4375-c497-4322-b75d-90060ec8e20d {"md5": "e93c4cb311041fd3b3971354ca2b70e5", "pid": "952503980", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5258889-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5258889-0", "source": "GND"}], "preferred_name": "Symposium Die Neuen Oberflächen der Leiterplatte", "country_associated": "gw", "authorized_access_point": "Symposium Die Neuen Oberflächen der Leiterplatte, 1997, Waiblingen"} 1 -2023-07-08 08:17:59.03148 2023-07-08 08:17:59.031486 04bf4af9-9f5d-4462-9fe3-40416da68996 {"md5": "baa90e4880ba993efec7d66d397d16c4", "pid": "95250538X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5259026-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5259026-4", "source": "GND"}], "variant_name": ["Twente Workshop on Graphs and Combinatorial Optimization, 5"], "preferred_name": "Workshop on Graphs and Combinatorial Optimization, 5", "country_associated": "ne", "variant_access_point": ["Twente Workshop on Graphs and Combinatorial Optimization, 5, 1997, Enschede"], "authorized_access_point": "Workshop on Graphs and Combinatorial Optimization, 5, 1997, Enschede"} 1 -2023-07-08 08:17:59.123231 2023-07-08 08:17:59.123238 07922e52-e869-4896-b2d0-0864d50d0302 {"md5": "7d225a64aa591cf1f43a889baa55ae29", "pid": "952510995", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5259554-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5259554-7", "source": "GND"}], "preferred_name": "Arts Council of Great Britain. Welsh Committee", "country_associated": "xxk", "authorized_access_point": "Arts Council of Great Britain. Welsh Committee", "biographical_information": ["Sitz: Cardiff"]} 1 -2023-07-08 08:17:59.198711 2023-07-08 08:17:59.198717 90dbd9a1-1b7f-439e-b1fe-658d59cf8d99 {"md5": "b19f0504ed9a6efa30763a546862f44e", "pid": "95251592X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5260009-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5260009-9", "source": "GND"}], "preferred_name": "International Conference on Bioengineering, Chemical Engineering and Mechatronics", "country_associated": "fi", "authorized_access_point": "International Conference on Bioengineering, Chemical Engineering and Mechatronics, 1996, Espoo"} 1 -2023-07-08 08:17:59.2717 2023-07-08 08:17:59.271709 daeacdf1-e795-4641-9c0e-34bda6d654a1 {"md5": "3dfdcc656bb23f90530ac2956836075a", "pid": "952534924", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5261821-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5261821-3", "source": "GND"}], "variant_name": ["Galerie Laeubli", "Läubli, Galerie"], "preferred_name": "Galerie Läubli", "country_associated": "sz", "variant_access_point": ["Galerie Laeubli. Zürich", "Läubli, Galerie. Zürich"], "authorized_access_point": "Galerie Läubli. Zürich"} 1 -2023-07-08 08:17:59.362603 2023-07-08 08:17:59.362615 dffeb313-bdf3-4212-8888-c95dabfa62d8 {"md5": "5fb5dfa193dd8cd89138b65bb195371b", "pid": "952540428", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5262338-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5262338-5", "source": "GND"}], "variant_name": ["XV. Seminár Elektrotechnikov, Projektantov a Revíznych Technikov Elektrických Zariadení : Trenčín, 28. júna 1994"], "preferred_name": "Seminár elektrotechnikov, projektantov a revíznych technikov elektrických zariadení, 15.", "variant_access_point": ["XV. Seminár Elektrotechnikov, Projektantov a Revíznych Technikov Elektrických Zariadení : Trenčín, 28. júna 1994"], "authorized_access_point": "Seminár elektrotechnikov, projektantov a revíznych technikov elektrických zariadení, 15., 1994, Trenčín"} 1 -2023-07-08 08:17:59.450908 2023-07-08 08:17:59.450913 233e0427-c3cf-4697-b02b-4b957f0e18f6 {"md5": "cac1219b881ead15a21b7e9e9a72c74e", "pid": "952541084", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5262401-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5262401-8", "source": "GND"}], "variant_name": ["BASF-Aktiengesellschaft. Ammoniaklaboratorium"], "preferred_name": "Ammoniaklaboratorium", "country_associated": "gw", "variant_access_point": ["BASF-Aktiengesellschaft. Ammoniaklaboratorium"], "authorized_access_point": "Ammoniaklaboratorium"} 1 -2023-07-08 08:17:59.536562 2023-07-08 08:17:59.536568 b52f9f82-8385-4781-9387-df602aefa9c4 {"md5": "7542b0bf73e2ef65734ac76b957e3d31", "pid": "952542811", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5262560-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5262560-6", "source": "GND"}], "variant_name": ["Sugar Authority", "KSA"], "preferred_name": "Kenia. Sugar Authority", "country_associated": "ke", "variant_access_point": ["Sugar Authority. Kenia", "KSA. Abkuerzung"], "authorized_access_point": "Kenia. Sugar Authority"} 1 -2023-07-08 08:17:59.638582 2023-07-08 08:17:59.638591 72963cc4-1c68-4714-ae1b-5c6c1b30517c {"md5": "e2b4782c71444350a89907219d57d10c", "pid": "952543141", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5262591-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5262591-6", "source": "GND"}], "preferred_name": "Congrès des Notaires de France, 92", "country_associated": "fr", "authorized_access_point": "Congrès des Notaires de France, 92, 1996, Deauville"} 1 -2023-07-08 08:17:59.730317 2023-07-08 08:17:59.730322 1ccaba0e-3d32-4f62-9e41-8de19b808baf {"md5": "b54a984d25b5d34a838d77e6f1ec7b69", "pid": "952571315", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5263174-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5263174-6", "source": "GND"}], "variant_name": ["IB", "Brucknerfest"], "preferred_name": "Internationales Brucknerfest", "country_associated": "au", "variant_access_point": ["IB, 1995, Linz", "Brucknerfest, 1995, Linz"], "authorized_access_point": "Internationales Brucknerfest, 1995, Linz"} 1 -2023-07-08 08:18:03.324714 2023-07-08 08:18:03.324723 0f877bef-feb6-430c-8842-2deda30b6c98 {"md5": "5befc89d58e063129ef9263607a2eb0f", "pid": "954552873", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5291905-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5291905-5", "source": "GND"}], "preferred_name": "Versuchs- und Entwicklungsstelle des Straßenwesens. Fachgruppe Straßenverkehrstechnik", "authorized_access_point": "Versuchs- und Entwicklungsstelle des Straßenwesens. Berlin, Ost. Fachgruppe Straßenverkehrstechnik"} 1 -2023-07-08 08:17:59.83087 2023-07-08 08:17:59.830879 f5e048bf-4938-492d-87ce-4c7edd2b0650 {"md5": "b348b42064f63be88cd5f92004598eda", "pid": "952607549", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5264176-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5264176-4", "source": "GND"}], "variant_name": ["Dipartimento per gli Affari Sociali", "Italien. Ministro per la Famiglia e la Solidarietà Sociale. Dipartimento per gli Affari Sociali"], "preferred_name": "Italien. Dipartimento per gli Affari Sociali", "country_associated": "it", "variant_access_point": ["Dipartimento per gli Affari Sociali. Italien", "Italien. Ministro per la Famiglia e la Solidarietà Sociale. Dipartimento per gli Affari Sociali"], "authorized_access_point": "Italien. Dipartimento per gli Affari Sociali"} 1 -2023-07-08 08:17:59.932063 2023-07-08 08:17:59.932068 c7ad03b7-3a15-495c-8519-24e053f60cc0 {"md5": "606376eb286540bf4dcbb767845bbde6", "pid": "952616270", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5265042-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5265042-X", "source": "GND"}], "variant_name": ["Instituto Nacional de Investigaciones Agrícolas. Centro de Investigaciones Agropecuarias de la Chontalpa", "CIEACH"], "preferred_name": "Centro de Investigaciones y Extensión Agropecuarias de la Chontalpa", "country_associated": "mx", "variant_access_point": ["Instituto Nacional de Investigaciones Agrícolas. México. Centro de Investigaciones Agropecuarias de la Chontalpa", "CIEACH. Abkuerzung"], "authorized_access_point": "Centro de Investigaciones y Extensión Agropecuarias de la Chontalpa. México"} 1 -2023-07-08 08:18:00.023445 2023-07-08 08:18:00.023448 2ed3bdf3-5889-498c-8d06-1edac38377bb {"md5": "11ba322298aa831e7a3e52c23e85846e", "pid": "952753294", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5265271-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5265271-3", "source": "GND"}], "preferred_name": "Manufaktur", "country_associated": "gw", "authorized_access_point": "Manufaktur. Georgenthal/Thür. Wald", "biographical_information": ["Sitz: Gotha"]} 1 -2023-07-08 08:18:00.112863 2023-07-08 08:18:00.112874 9264bc9c-0ae4-4407-a0ea-74b877a720dd {"md5": "ea6705c54a5113c08d8bfa439f470321", "pid": "952753537", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5265294-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5265294-4", "source": "GND"}], "variant_name": ["MGV Hoffmannscher Liederkranz Spandau 1859", "Hoffmannscher Liederkranz", "Hoffmannscher Liederkranz"], "preferred_name": "Männergesangverein Hoffmannscher Liederkranz Spandau 1859", "country_associated": "gw", "variant_access_point": ["MGV Hoffmannscher Liederkranz Spandau 1859", "Hoffmannscher Liederkranz. Spandau", "Hoffmannscher Liederkranz. Berlin, West"], "authorized_access_point": "Männergesangverein Hoffmannscher Liederkranz Spandau 1859"} 1 -2023-07-08 08:18:00.198725 2023-07-08 08:18:00.198731 25d2acc7-2eaa-4627-9e21-6d0477e80092 {"md5": "b1741aa57b18af4bd37bc6b6739d4ee9", "pid": "952754606", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5265393-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5265393-6", "source": "GND"}], "variant_name": ["JENC, 8"], "preferred_name": "Joint European Networking Conference, 8", "country_associated": "xxk", "variant_access_point": ["JENC, 8, 1997, Edinburgh"], "authorized_access_point": "Joint European Networking Conference, 8, 1997, Edinburgh"} 1 -2023-07-08 08:18:00.274392 2023-07-08 08:18:00.274395 fc5fc5c9-ff4f-487b-b2fa-2fdfb7fc5820 {"md5": "5c4898055f2d48ec756e8d0eeda13889", "pid": "952918838", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5265996-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5265996-3", "source": "GND"}], "variant_name": ["ICF, 1"], "preferred_name": "International Conference on Ferrites, 1", "country_associated": "ja", "variant_access_point": ["ICF, 1, 1970, Kyōto"], "authorized_access_point": "International Conference on Ferrites, 1, 1970, Kyōto"} 1 -2023-07-08 08:18:00.367428 2023-07-08 08:18:00.367434 a753f50a-8823-4412-8dc6-9a101e339c8f {"md5": "e86609380b0395bbc6db474ad49a1f6a", "pid": "952923793", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5266470-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5266470-3", "source": "GND"}], "preferred_name": "Schloß Aulendorf GmbH", "country_associated": "gw", "authorized_access_point": "Schloß Aulendorf GmbH", "biographical_information": ["gegründet 1989 als Auffanggesellschaft durch das Land Baden-Württemberg"]} 1 -2023-07-08 08:18:00.451483 2023-07-08 08:18:00.451488 5e78e529-3ef3-4f7d-a240-2a7b88a6a099 {"md5": "aa97316415a83740cac5a84a08008e81", "pid": "953095746", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5268204-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5268204-3", "source": "GND"}], "preferred_name": "Pro Regenwald", "country_associated": "gw", "authorized_access_point": "Pro Regenwald"} 1 -2023-07-08 08:18:00.543987 2023-07-08 08:18:00.543997 a4c1740c-907f-4f68-9761-652682f29315 {"md5": "9fa6afcc3400ac4bda65ca0abc82aed7", "pid": "95311886X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/4492025-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4492025-8", "source": "GND"}], "variant_name": ["Städtisches Gymnasium", "Staatliches Gymnasium", "Königliches Gymnasium"], "preferred_name": "Anno-Gymnasium", "country_associated": "gw", "variant_access_point": ["Städtisches Gymnasium", "Staatliches Gymnasium", "Königliches Gymnasium"], "authorized_access_point": "Anno-Gymnasium", "biographical_information": ["gegr. 1597"]} 1 -2023-07-08 08:18:00.634373 2023-07-08 08:18:00.634378 3c922ca1-6b1a-481a-b8de-bd079fddba6c {"md5": "ab6676523c7ee5e4273751fc1a8a925d", "pid": "95315971X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5268871-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5268871-9", "source": "GND"}], "preferred_name": "Schwimm- und Sportverein Ulm 1846. Schwimmabteilung", "country_associated": "gw", "authorized_access_point": "Schwimm- und Sportverein Ulm 1846. Schwimmabteilung"} 1 -2023-07-08 08:18:00.725789 2023-07-08 08:18:00.7258 a4fb23cf-e70e-448d-b765-c1c09acac608 {"md5": "7320e4ea4129f03ad12cdf5e45a3beb5", "pid": "953324559", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1238716-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1238716-2", "source": "GND"}], "variant_name": ["St. Bruno", "Sankt Bruno", "Pfarrei Sankt Bruno", "Sankt Bruno"], "preferred_name": "Pfarrei St. Bruno", "country_associated": "gw", "variant_access_point": ["St. Bruno. Niederwerrn", "Sankt Bruno. Niederwerrn", "Pfarrei Sankt Bruno. Niederwerrn", "Sankt Bruno. Niederwerrn . Ehemalige Vorzugsbenennung SWD"], "authorized_access_point": "Pfarrei St. Bruno. Niederwerrn", "biographical_information": ["Kath. Kirchengemeinde"]} 1 -2023-07-08 08:18:00.893752 2023-07-08 08:18:00.893759 d4ff6067-08ea-4144-a5d9-9ebd46287bbf {"md5": "28b73fbc46b2eabb39ec3b6df702d74e", "pid": "953324974", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1402505-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1402505-X", "source": "GND"}], "preferred_name": "Progress in Electromagnetics Research Symposium", "country_associated": "xxu", "authorized_access_point": "Progress in Electromagnetics Research Symposium, 1991, Boston, Mass."} 1 -2023-07-08 08:18:00.998467 2023-07-08 08:18:00.998474 8483d36d-17de-4448-8159-166586c9c350 {"md5": "e35c4161ef969ccb6a1946e266e8e27b", "pid": "953476359", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5271305-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5271305-2", "source": "GND"}], "variant_name": ["Rektorat Polskiej Misji Katolickiej w Niemczech", "Polnische Katholische Mission in Deutschland", "Deutsche Bischofskonferenz für die polnischsprachige Seelsorge in Deutschland", "DBK für die polnischsprachige Seelsorge in Deutschland", "Delegatur der Deutschen Bischofskonferenz für die polnischsprachige Seelsorge in Deutschland", "Delegatur der DBK für die polnischsprachige Seelsorge in Deutschland", "PMK"], "preferred_name": "Polska Misja Katolicka w Niemczech", "country_associated": "gw", "variant_access_point": ["Rektorat Polskiej Misji Katolickiej w Niemczech", "Polnische Katholische Mission in Deutschland", "Deutsche Bischofskonferenz für die polnischsprachige Seelsorge in Deutschland", "DBK für die polnischsprachige Seelsorge in Deutschland", "Delegatur der Deutschen Bischofskonferenz für die polnischsprachige Seelsorge in Deutschland", "Delegatur der DBK für die polnischsprachige Seelsorge in Deutschland", "PMK. Abkuerzung"], "authorized_access_point": "Polska Misja Katolicka w Niemczech", "biographical_information": ["Sitz: anfangs Würzburg, später Hannover"]} 1 -2023-07-08 08:18:01.099854 2023-07-08 08:18:01.099861 69e6ba6e-5c9a-45b9-b576-2a7fac4cd2fa {"md5": "336e611e92019123c626d7dfcad0c44a", "pid": "953477061", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5271371-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5271371-4", "source": "GND"}], "variant_name": ["Leibniz-Gemeinschaft", "Leibniz Association", "Wissenschaftsgemeinschaft Gottfried Wilhelm Leibniz. Senat", "WGL", "Wissenschaftsgemeinschaft Gottfried Wilhelm Leibniz e.V."], "preferred_name": "Wissenschaftsgemeinschaft Gottfried Wilhelm Leibniz", "country_associated": "gw", "variant_access_point": ["Leibniz-Gemeinschaft", "Leibniz Association", "Wissenschaftsgemeinschaft Gottfried Wilhelm Leibniz. Senat", "WGL. Abkuerzung", "Wissenschaftsgemeinschaft Gottfried Wilhelm Leibniz e.V.. Unveraenderte Form"], "date_of_establishment": "31.03.1997", "parallel_access_point": ["Leibniz-Gemeinschaft"], "authorized_access_point": "Wissenschaftsgemeinschaft Gottfried Wilhelm Leibniz", "biographical_information": ["Hauptsitz/Verwaltungssitz: Bonn, Sitz des Vereins: Berlin; verbindet knapp 100 eigenständige Forschungseinrichtungen"]} 1 -2023-07-08 08:18:01.1983 2023-07-08 08:18:01.198307 6b0ff124-cbd5-48bd-9787-2c5574b0205c {"md5": "1805a8174eb68b7143afdcbe7b54f088", "pid": "953483401", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5271962-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5271962-5", "source": "GND"}], "preferred_name": "Düsseldorfer Bläserquintett", "country_associated": "gw", "authorized_access_point": "Düsseldorfer Bläserquintett"} 1 -2023-07-08 08:18:01.294001 2023-07-08 08:18:01.294006 0ee4718f-2659-4b1a-ac67-6b186f715f50 {"md5": "42afa9b0b8c627adf67e9bfe83278838", "pid": "953537013", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5272709-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5272709-9", "source": "GND"}], "variant_name": ["Technology Forecast Roundtable for Innovation, 1", "Table Ronde sur les Prévisions Technologiques, 1", "Inaugural Technology Forecast Roundtable"], "preferred_name": "Inaugural Technology Forecast Round Table", "country_associated": "xxc", "variant_access_point": ["Technology Forecast Roundtable for Innovation, 1, 1996, Ottawa", "Table Ronde sur les Prévisions Technologiques, 1, 1996, Ottawa", "Inaugural Technology Forecast Roundtable, 1996, Ottawa"], "authorized_access_point": "Inaugural Technology Forecast Round Table, 1996, Ottawa"} 1 -2023-07-08 08:18:01.401329 2023-07-08 08:18:01.401338 eecc1f20-2258-443b-9921-a420f5551c11 {"md5": "da73245d4b12b5443cfb3bf49f31b28a", "pid": "95360795X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5273344-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5273344-0", "source": "GND"}], "preferred_name": "Workshop on Health Education about Drugs (Medicines), 1", "country_associated": "sp", "authorized_access_point": "Workshop on Health Education about Drugs (Medicines), 1, 1988, Madrid"} 1 -2023-07-08 08:18:01.507986 2023-07-08 08:18:01.507995 595563cf-fd08-49e3-88b5-9c170708a78d {"md5": "b4c35b39340be6d34aedf16e50947cae", "pid": "953608573", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5273406-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5273406-7", "source": "GND"}], "variant_name": ["Aerospace Sciences Meeting and Exhibit, 35"], "preferred_name": "Aerospace Sciences Meeting, 35", "country_associated": "xxu", "variant_access_point": ["Aerospace Sciences Meeting and Exhibit, 35, 1997, Reno, Nev."], "authorized_access_point": "Aerospace Sciences Meeting, 35, 1997, Reno, Nev."} 1 -2023-07-08 08:18:13.100269 2023-07-08 08:18:13.100271 14e6cbcb-d9a5-4a16-b3ff-afb1b8e53ebf {"md5": "7781351853bb58dae416b3c3f45e18e2", "pid": "959910808", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10009733-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10009733-9", "source": "GND"}], "preferred_name": "Naturheilkunde Eutritzsch e.V.", "country_associated": "gw", "authorized_access_point": "Naturheilkunde Eutritzsch e.V."} 1 -2023-07-08 08:18:01.604916 2023-07-08 08:18:01.604924 8150eddc-94b6-4d0d-906b-78c0e5a1d54a {"md5": "d83e6c7fa3e24edcb4a5f33c54e1a104", "pid": "95364474X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5276879-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5276879-X", "source": "GND"}], "variant_name": ["Amt für Wirtschaftsförderung und Regionalplanung"], "preferred_name": "Landkreis Aschersleben-Staßfurt. Amt für Wirtschaftsförderung und Regionalplanung", "country_associated": "gw", "variant_access_point": ["Amt für Wirtschaftsförderung und Regionalplanung. Landkreis Aschersleben-Staßfurt"], "authorized_access_point": "Landkreis Aschersleben-Staßfurt. Amt für Wirtschaftsförderung und Regionalplanung"} 1 -2023-07-08 08:18:01.691674 2023-07-08 08:18:01.691681 82c62ae6-484b-4108-9efd-df736c74e763 {"md5": "2c45e2bd9d394d5434cd7defefb7bd6e", "pid": "953644820", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5276887-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5276887-9", "source": "GND"}], "preferred_name": "Society of Plastics Engineers. Plastics Analysis Division", "authorized_access_point": "Society of Plastics Engineers. Plastics Analysis Division"} 1 -2023-07-08 08:18:01.765115 2023-07-08 08:18:01.76512 f33c6502-a5c6-4a79-ab99-52f06067cd09 {"md5": "9ec1635343aaf033c427427aab1cc44c", "pid": "953669033", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5279242-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5279242-0", "source": "GND"}], "variant_name": ["ICWS", "Stichting International Centre of Water Studies"], "preferred_name": "International Centre of Water Studies", "variant_access_point": ["ICWS. Abkuerzung", "Stichting International Centre of Water Studies"], "authorized_access_point": "International Centre of Water Studies"} 1 -2023-07-08 08:18:01.864527 2023-07-08 08:18:01.864535 84b5fb1a-0977-4bf4-bc63-5fb98ffb13e2 {"md5": "61f630f926a7b10a932829885f2f1fe0", "pid": "953777839", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5279858-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5279858-6", "source": "GND"}], "variant_name": ["Bettfedernfabrik Straus und Cie.", "Straus & Cie.", "Straus und Cie."], "preferred_name": "Bettfedernfabrik Straus & Cie.", "variant_access_point": ["Bettfedernfabrik Straus und Cie.", "Straus & Cie.", "Straus und Cie."], "authorized_access_point": "Bettfedernfabrik Straus & Cie."} 1 -2023-07-08 08:18:01.947021 2023-07-08 08:18:01.947028 f8c27ddd-cfd1-4509-88ec-59e57951590e {"md5": "4cc9e9272fcb41609ccb358466a6393b", "pid": "953979687", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5280916-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5280916-X", "source": "GND"}], "preferred_name": "Société d'Emulation des Côtes-D'Armor", "country_associated": "fr", "authorized_access_point": "Société d'Emulation des Côtes-D'Armor"} 1 -2023-07-08 08:18:02.040874 2023-07-08 08:18:02.040882 32b683f6-e174-493f-bfbe-db475a594f55 {"md5": "a6ba7b6658b63521377cf1ad1b942f50", "pid": "953980545", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5280998-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5280998-5", "source": "GND"}], "variant_name": ["DKP-Ortsgruppe", "DKP"], "preferred_name": "Deutsche Kommunistische Partei. Ortsgruppe", "country_associated": "gw", "variant_access_point": ["DKP-Ortsgruppe. Rünthe", "DKP. Rünthe"], "authorized_access_point": "Deutsche Kommunistische Partei. Ortsgruppe. Rünthe"} 1 -2023-07-08 08:18:02.138723 2023-07-08 08:18:02.13873 1d51c781-657a-48a9-8ff3-c9c427022434 {"md5": "9bb68f5419090e376b6bf70dc83bc447", "pid": "954069773", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2171463-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2171463-0", "source": "GND"}], "preferred_name": "Lafarge-Perlmooser AG", "country_associated": "au", "date_of_termination": "24.08.2006", "date_of_establishment": "XX.XX.1997", "authorized_access_point": "Lafarge-Perlmooser AG"} 1 -2023-07-08 08:18:02.230102 2023-07-08 08:18:02.230107 12d3d210-eaf7-43cb-9c7d-8ec5005ba60c {"md5": "aa854876dbbe4ecc98c6210271136fa5", "pid": "954132491", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5284476-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5284476-6", "source": "GND"}], "preferred_name": "Mecklenburgischer Thierschutz-Verein. Abteilung", "authorized_access_point": "Mecklenburgischer Thierschutz-Verein. Abteilung. Parchim"} 1 -2023-07-08 08:18:02.320999 2023-07-08 08:18:02.321002 a92bbf77-5c47-4b01-9859-10a81c2d9f0c {"md5": "c4b723f6b42fa67e752ef668475f95d7", "pid": "954184165", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1238042-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1238042-8", "source": "GND"}], "variant_name": ["Bischöfliches Knabenseminar St. Joseph", "Bischöfliches Knabenseminar Sankt Joseph"], "preferred_name": "Bischöfliches Knabenseminar Sankt Joseph", "variant_access_point": ["Bischöfliches Knabenseminar St. Joseph. Dillingen a.d. Donau", "Bischöfliches Knabenseminar Sankt Joseph. Ehemalige Vorzugsbenennung SWD"], "authorized_access_point": "Bischöfliches Knabenseminar Sankt Joseph. Dillingen a.d. Donau"} 1 -2023-07-08 08:18:02.41274 2023-07-08 08:18:02.412753 dc50abfe-0734-49a6-8362-c838ef29840b {"md5": "1ab08068c5cabb101b98b221ff6e18fc", "pid": "954255011", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2171972-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2171972-X", "source": "GND"}], "variant_name": ["Humboldt-Universität zu Berlin. Institut für Kultur- und Kunstwissenschaften. Musikwissenschaftliches Seminar", "Musikwissenschaftliches Seminar"], "preferred_name": "Humboldt-Universität zu Berlin. Musikwissenschaftliches Seminar", "country_associated": "gw", "variant_access_point": ["Humboldt-Universität zu Berlin. Institut für Kultur- und Kunstwissenschaften. Musikwissenschaftliches Seminar", "Musikwissenschaftliches Seminar. Berlin"], "date_of_establishment": "ca. Wintersemester 1996/1997 bis 2008", "authorized_access_point": "Humboldt-Universität zu Berlin. Musikwissenschaftliches Seminar"} 1 -2023-07-08 08:18:02.501023 2023-07-08 08:18:02.501029 0487c403-dcce-47f3-95f4-f29f25a1fca1 {"md5": "04ceb8c21e8ac644e9bb111b2b7a55b3", "pid": "954328426", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2172197-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2172197-X", "source": "GND"}], "variant_name": ["German-Chinese Joint Seminar on Recent Developments in Coastal Engineering, 1"], "preferred_name": "German Chinese Joint Seminar on Recent Developments in Coastal Engineering, 1", "variant_access_point": ["German-Chinese Joint Seminar on Recent Developments in Coastal Engineering, 1, 1997, Hasenwinkel, Bibow"], "authorized_access_point": "German Chinese Joint Seminar on Recent Developments in Coastal Engineering, 1, 1997, Hasenwinkel, Bibow"} 1 -2023-07-08 08:18:02.585145 2023-07-08 08:18:02.585151 4fa2eb8f-95b7-4ecd-bc0d-cc077e08235c {"md5": "4092b4bc5902a91ff474e8161131990d", "pid": "954330803", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5286274-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5286274-4", "source": "GND"}], "preferred_name": "Deutscher Frauenverein für Krankenpflege in den Kolonien. Landesverein Bayern", "authorized_access_point": "Deutscher Frauenverein für Krankenpflege in den Kolonien. Landesverein Bayern"} 1 -2023-07-08 08:18:02.685929 2023-07-08 08:18:02.685935 5139e01e-b642-4164-94e8-a39e9c1f5739 {"md5": "89d5ca0c1d9941f5321e92fcfeb605e1", "pid": "954352610", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5286693-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5286693-2", "source": "GND"}], "variant_name": ["Türkei. Maliye Bakanlığı. Bütçe ve Mali Kontrol Genel Müdürlüğü", "Bütçe ve Mali Kontrol Genel Müdürlüğü"], "preferred_name": "Türkei. Bütçe ve Mali Kontrol Genel Müdürlüğü", "country_associated": "tu", "variant_access_point": ["Türkei. Maliye Bakanlığı. Bütçe ve Mali Kontrol Genel Müdürlüğü", "Bütçe ve Mali Kontrol Genel Müdürlüğü. Türkei"], "authorized_access_point": "Türkei. Bütçe ve Mali Kontrol Genel Müdürlüğü"} 1 -2023-07-08 08:18:02.76452 2023-07-08 08:18:02.764529 3c8bef84-c21a-4bc5-9941-d1d4e2ed9a0c {"md5": "b4d46e4831d3a8e172169c5dfa000b10", "pid": "954405250", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5287976-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5287976-8", "source": "GND"}], "variant_name": ["Großherzogliches Justizministerium", "Justizministerium"], "preferred_name": "Mecklenburg. Justizministerium", "variant_access_point": ["Großherzogliches Justizministerium. Mecklenburg", "Justizministerium. Mecklenburg"], "authorized_access_point": "Mecklenburg. Justizministerium"} 1 -2023-07-08 08:18:02.865744 2023-07-08 08:18:02.865751 f614ea36-2de5-46e8-a89f-609f2313723f {"md5": "01b035e326dce41561d4f9eff97881da", "pid": "954405986", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5288049-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5288049-7", "source": "GND"}], "variant_name": ["Preußen. Ministerium für Volkswohlfahrt. Landesbeirat für Jugendpflege, Jugendbewegung und Leibesübungen", "Landesbeirat für Jugendpflege, Jugendbewegung un Leibesübungen"], "preferred_name": "Preußen. Landesbeirat für Jugendpflege, Jugendbewegung und Leibesübungen", "variant_access_point": ["Preußen. Ministerium für Volkswohlfahrt. Landesbeirat für Jugendpflege, Jugendbewegung und Leibesübungen", "Landesbeirat für Jugendpflege, Jugendbewegung un Leibesübungen. Preußen"], "authorized_access_point": "Preußen. Landesbeirat für Jugendpflege, Jugendbewegung und Leibesübungen"} 1 -2023-07-08 08:18:02.957989 2023-07-08 08:18:02.958 309da2ba-7eaa-42d1-b3af-225322aa8df9 {"md5": "4ab5a6cc8db03b91749603cc48e39b81", "pid": "954495098", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5289544-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5289544-0", "source": "GND"}], "variant_name": ["Universidade de Coimbra. Faculdade de Direito. Centro de Direito do Ordenamento, do Urbanismo e do Ambiente", "Universidade de Coimbra. Centro de Estudos de Direito do Ordenamento, do Urbanismo e do Ambiente", "CEDOUA"], "preferred_name": "Centro de Estudos de Direito do Ordenamento, do Urbanismo e do Ambiente", "country_associated": "po", "variant_access_point": ["Universidade de Coimbra. Faculdade de Direito. Centro de Direito do Ordenamento, do Urbanismo e do Ambiente", "Universidade de Coimbra. Centro de Estudos de Direito do Ordenamento, do Urbanismo e do Ambiente", "CEDOUA. Abkuerzung"], "authorized_access_point": "Centro de Estudos de Direito do Ordenamento, do Urbanismo e do Ambiente"} 1 -2023-07-08 08:18:03.048085 2023-07-08 08:18:03.04809 ef0110ec-4b50-44df-8950-72342b3c0589 {"md5": "cfd4d9ad1a8e55977a14042bc2dadc67", "pid": "954534530", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5290198-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5290198-1", "source": "GND"}], "variant_name": ["Düsseldorfer Wohnungsgenossenschaft eG", "Wohnungsgenossenschaft", "DWG"], "preferred_name": "Düsseldorfer Wohnungsgenossenschaft", "country_associated": "gw", "variant_access_point": ["Düsseldorfer Wohnungsgenossenschaft eG. Unveraenderte Form", "Wohnungsgenossenschaft. Düsseldorf", "DWG. Abkuerzung"], "date_of_establishment": "1898", "authorized_access_point": "Düsseldorfer Wohnungsgenossenschaft"} 1 -2023-07-08 08:18:03.14884 2023-07-08 08:18:03.148848 1271cc28-e906-464a-b51d-33675e44303a {"md5": "029014936db1163acd4423e284700618", "pid": "954535286", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5290267-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5290267-5", "source": "GND"}], "variant_name": ["Ki"], "preferred_name": "Freundeskreis Mit Kindern Wachsen", "country_associated": "gw", "variant_access_point": ["Ki. Abkuerzung"], "authorized_access_point": "Freundeskreis Mit Kindern Wachsen"} 1 -2023-07-08 08:18:03.235841 2023-07-08 08:18:03.235847 a498c42f-e9dc-414c-ad34-76a84c2de2ec {"md5": "5830bf8c37bb1ba3c385b23e37e52ecb", "pid": "95454157X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5290835-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5290835-5", "source": "GND"}], "variant_name": ["SMLTA"], "preferred_name": "Symposium on MAGLEV Train Application in China", "country_associated": "cc", "variant_access_point": ["SMLTA, 1997, Hangzhou"], "authorized_access_point": "Symposium on MAGLEV Train Application in China, 1997, Hangzhou"} 1 -2023-07-08 08:18:03.429118 2023-07-08 08:18:03.429123 a17ab813-be48-4f35-b7ca-0ed446b990af {"md5": "963da3de79c69c0c3b3b26473fad94f7", "pid": "954559592", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5292555-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5292555-9", "source": "GND"}], "variant_name": ["VÖK-Neurologieseminar, 3"], "preferred_name": "Neurologieseminar, 3", "country_associated": "au", "variant_access_point": ["VÖK-Neurologieseminar, 3, 1997, Villach"], "authorized_access_point": "Neurologieseminar, 3, 1997, Villach"} 1 -2023-07-08 08:18:03.501065 2023-07-08 08:18:03.50107 248606af-dbf2-4fe9-a403-07cc41a744c0 {"md5": "6b38b9b1c3860eb84dcd6dad23a537f3", "pid": "954569601", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5293545-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5293545-0", "source": "GND"}], "preferred_name": "Meždunarodnaja Konferencija po Teorii Oboloček i Plastin, 16", "authorized_access_point": "Meždunarodnaja Konferencija po Teorii Oboloček i Plastin, 16, 1993, Nižnij Novgorod"} 1 -2023-07-08 08:18:03.59931 2023-07-08 08:18:03.599316 9f4d170f-c0c7-4626-85e6-095fad1f25e7 {"md5": "60deff5fb7578a346788bdc1651b1fbc", "pid": "954571398", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5293720-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5293720-3", "source": "GND"}], "preferred_name": "Journées de la Recherche Cunicole en France, 5", "country_associated": "fr", "authorized_access_point": "Journées de la Recherche Cunicole en France, 5, 1990, Paris"} 1 -2023-07-08 08:18:03.69528 2023-07-08 08:18:03.695289 b3a6ab80-479e-4957-bb9b-a2ea5826e26c {"md5": "a55687a47c63e378349f732683d651be", "pid": "954574354", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5294001-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5294001-9", "source": "GND"}], "preferred_name": "Pferdefachtagung, 3", "authorized_access_point": "Pferdefachtagung, 3, 1992, Augsburg"} 1 -2023-07-08 08:18:03.809831 2023-07-08 08:18:03.80984 f146addd-959b-4f44-99b1-8421322fc533 {"md5": "61a5a131309e2d85050064a61f50df60", "pid": "954587693", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5295271-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5295271-X", "source": "GND"}], "variant_name": ["Meždunarodnyj Seminar po Problemam Fiziki Vysokich Ėnergij i Kvantovoj Teorii Polja, 5", "Meždunarodnyj Seminar Problemy Fiziki Vysokich Ėnergij i Kvantovoj Teorii Polja, 5"], "preferred_name": "International Seminar on High Energy Physics and Quantum Field Theory, 5", "variant_access_point": ["Meždunarodnyj Seminar po Problemam Fiziki Vysokich Ėnergij i Kvantovoj Teorii Polja, 5, 1982, Protvino", "Meždunarodnyj Seminar Problemy Fiziki Vysokich Ėnergij i Kvantovoj Teorii Polja, 5, 1982, Protvino"], "authorized_access_point": "International Seminar on High Energy Physics and Quantum Field Theory, 5, 1982, Protvino"} 1 -2023-07-08 08:18:03.898916 2023-07-08 08:18:03.898922 86b5d1c3-e57b-4a99-a30f-cdca6e1c8057 {"md5": "5c43b4779c3fe800842bf2672ecedddc", "pid": "954589262", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5295421-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5295421-3", "source": "GND"}], "variant_name": ["Politechnika Świe̜tokrzyska. Instytut Transportu"], "preferred_name": "Instytut Transportu", "country_associated": "pl", "variant_access_point": ["Politechnika Świe̜tokrzyska. Kielce. Instytut Transportu"], "authorized_access_point": "Instytut Transportu. Kielce"} 1 -2023-07-08 08:18:03.9909 2023-07-08 08:18:03.990909 d33590fa-5092-4772-88be-2e4b4c3a4477 {"md5": "718f7b751c50c84e855a7fd9b3057b69", "pid": "954590848", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5295565-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5295565-5", "source": "GND"}], "variant_name": ["International Workshop on Optimal Performance of Civil Infrastructure Systems", "Optimal Performance of Civil Infrastructure Systems", "NSF/ASCE Workshop on Optimal Performance of Civil Infrastructure Systems"], "preferred_name": "International Workshop on Optimal Performance of Civil Infrastructure Systems", "country_associated": "xxu", "variant_access_point": ["International Workshop on Optimal Performance of Civil Infrastructure Systems, 1997, Portland, OR", "Optimal Performance of Civil Infrastructure Systems, 1997, Portland, OR", "NSF/ASCE Workshop on Optimal Performance of Civil Infrastructure Systems, 1997, Portland, OR"], "authorized_access_point": "International Workshop on Optimal Performance of Civil Infrastructure Systems, 1997, Portland, Or."} 1 -2023-07-08 08:18:04.097549 2023-07-08 08:18:04.097558 4f3f1907-91c0-419d-a6b0-fc986c82a6ee {"md5": "8b3f1d609a6e4919a145eb5c4e27bdd1", "pid": "954619595", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5296447-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5296447-4", "source": "GND"}], "variant_name": ["Landesausschuß für Kriegsinvalidenfürsorge", "Württembergischer Landesausschuß für Kriegsinvalidenfürsorge"], "preferred_name": "Württemberg. Landesausschuß für Kriegsinvalidenfürsorge", "variant_access_point": ["Landesausschuß für Kriegsinvalidenfürsorge. Württemberg", "Württembergischer Landesausschuß für Kriegsinvalidenfürsorge"], "authorized_access_point": "Württemberg. Landesausschuß für Kriegsinvalidenfürsorge"} 1 -2023-07-08 08:18:04.186866 2023-07-08 08:18:04.186874 e52baf68-6434-475f-9c6c-30d307f0b6d0 {"md5": "ddce04608e735bb4f096f2ae8be817c4", "pid": "954621131", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5296598-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5296598-3", "source": "GND"}], "preferred_name": "Konferenz über die Menschliche Schilddrüse, 5", "country_associated": "gw", "authorized_access_point": "Konferenz über die Menschliche Schilddrüse, 5, 1981, Homburg, Saar"} 1 -2023-07-08 08:18:04.259152 2023-07-08 08:18:04.259155 9952232a-c5bb-4cad-b1e8-ffdff295e9d0 {"md5": "fadbda881aba17718f8062b1d6d0ed30", "pid": "954862805", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5297510-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5297510-1", "source": "GND"}], "variant_name": ["BR"], "preferred_name": "Bread Research Institute of Australia", "country_associated": "at", "variant_access_point": ["BR. Abkuerzung"], "authorized_access_point": "Bread Research Institute of Australia. North Ryde"} 1 -2023-07-08 08:18:04.340765 2023-07-08 08:18:04.340774 49c11ab8-05ea-4904-a813-7bf90b5775b4 {"md5": "cfbd38133f356615de437d2e032906c1", "pid": "954863127", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5297542-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5297542-3", "source": "GND"}], "preferred_name": "Deutscher Gewerkschaftsbund. Kreis Region Düren-Euskirchen", "country_associated": "gw", "date_of_termination": "XX.XX.2001", "date_of_establishment": "25.10.1994", "authorized_access_point": "Deutscher Gewerkschaftsbund. Kreis Region Düren-Euskirchen", "biographical_information": ["Sitz: Düren"]} 1 -2023-07-08 08:18:04.445815 2023-07-08 08:18:04.44582 b76a27fe-8cc1-4b1b-8f54-f7189236592c {"md5": "c34a343fd16d3b825e3533549d859af3", "pid": "954876539", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2173378-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2173378-8", "source": "GND"}], "preferred_name": "Tagung für Konditorei-Technologie, 3", "country_associated": "gw", "authorized_access_point": "Tagung für Konditorei-Technologie, 3, 1997, Detmold"} 1 -2023-07-08 08:18:04.565795 2023-07-08 08:18:04.5658 f7e1ffa3-ed98-495c-89d2-f23627aa2dd0 {"md5": "9549896f905095b550dff709b7e29e89", "pid": "954882571", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2173391-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2173391-0", "source": "GND"}], "variant_name": ["Round-Table-Gespräch The New Labour Government in Great Britain: Assessment of the First 100 Days"], "preferred_name": "Round-Table-Gespräch Die Neue Labour-Regierung in Großbritannien: Zwischenbilanz der Ersten Hundert Tage", "variant_access_point": ["Round-Table-Gespräch The New Labour Government in Great Britain: Assessment of the First 100 Days, 1997, Berlin"], "authorized_access_point": "Round-Table-Gespräch Die Neue Labour-Regierung in Großbritannien: Zwischenbilanz der Ersten Hundert Tage, 1997, Berlin"} 1 -2023-07-08 08:18:04.664435 2023-07-08 08:18:04.664438 50583e64-639f-48f1-a6de-1b97ca41da14 {"md5": "bf40e4b6daf70a4c9c14b450c6bfa697", "pid": "95500778X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2173747-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2173747-2", "source": "GND"}], "preferred_name": "Akademie für Sozialmedizin", "country_associated": "gw", "authorized_access_point": "Akademie für Sozialmedizin. Bochum"} 1 -2023-07-08 08:18:04.742406 2023-07-08 08:18:04.742415 5c349807-6d53-4b21-a0c6-27896ad33efd {"md5": "6dd9ad51889e5ed138ec08b5b43a5bfe", "pid": "955030080", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/3027010-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3027010-8", "source": "GND"}], "preferred_name": "Conférence d'Experts Gouvernementaux sur l'Emploi de Certaines Armes Conventionnelles, 2", "country_associated": "sz", "authorized_access_point": "Conférence d'Experts Gouvernementaux sur l'Emploi de Certaines Armes Conventionnelles, 2, 1976, Lugano"} 1 -2023-07-08 08:18:04.831871 2023-07-08 08:18:04.831881 86fa75d4-4d5f-4b89-ae09-e9ff2113252f {"md5": "9657b3d374e739bc94fce619647e5d03", "pid": "955046475", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/3029301-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3029301-7", "source": "GND"}], "preferred_name": "Special Technical Session on Electrostatics in Polymer Processing and Charge Monitoring", "country_associated": "xxc", "authorized_access_point": "Special Technical Session on Electrostatics in Polymer Processing and Charge Monitoring, 1993, Toronto"} 1 -2023-07-08 08:18:04.9329 2023-07-08 08:18:04.932908 f1a7a931-ce97-42b4-9563-335798360286 {"md5": "e94ed21f3478214ed7e958baba3510e5", "pid": "955064813", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/3031735-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3031735-6", "source": "GND"}], "preferred_name": "Erfahrungsaustausch Pflanzenschutzmittel und Pflanzenschutzgeräte Herstellende Industrie mit dem Landespflanzenschutzdienst, 29", "country_associated": "gw", "authorized_access_point": "Erfahrungsaustausch Pflanzenschutzmittel und Pflanzenschutzgeräte Herstellende Industrie mit dem Landespflanzenschutzdienst, 29, 1990, Mainz"} 1 -2023-07-08 08:18:05.034022 2023-07-08 08:18:05.034028 d9cc05a5-53ab-446c-8970-628ac6d04680 {"md5": "ec33138a3fa97c14f7f1155bb3406be9", "pid": "955092523", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/3035272-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3035272-1", "source": "GND"}], "variant_name": ["Japan-USA Joint Meeting on Aquaculture, 23"], "preferred_name": "Japan USA Joint Meeting on Aquaculture, 23", "country_associated": "ja", "variant_access_point": ["Japan-USA Joint Meeting on Aquaculture, 23, 1994, Ise, Mie-ken"], "authorized_access_point": "Japan USA Joint Meeting on Aquaculture, 23, 1994, Ise, Mie-ken"} 1 -2023-07-08 08:18:05.120037 2023-07-08 08:18:05.120042 94fcc1ea-5553-450f-8fd6-904046aad760 {"md5": "852ae05ed749e7616b85d3070b8c2fd9", "pid": "95511182X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/3037663-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3037663-4", "source": "GND"}], "variant_name": ["Edmund-Siemers-Stiftung", "Siemers-Stiftung", "Edmund Siemers-Stiftung", "Siemers-Stiftung", "EdmundSiemersStiftung"], "preferred_name": "Edmund Siemers-Stiftung", "country_associated": "gw", "variant_access_point": ["Edmund-Siemers-Stiftung", "Siemers-Stiftung", "Edmund Siemers-Stiftung. Hamburg", "Siemers-Stiftung. Hamburg", "EdmundSiemersStiftung. Hamburg"], "date_of_establishment": "29.11.1995", "authorized_access_point": "Edmund Siemers-Stiftung", "biographical_information": ["Die gemeinnützige Edmund Siemers-Stiftung wurde durch die Destinatäre der ehemaligen Siemers-Stiftung (im Februar 1919 gegr.) errichtet und durch den Hamburger Senat am 13.12.1995 genehmigt"]} 1 -2023-07-08 08:18:05.208833 2023-07-08 08:18:05.208837 467cb6a6-89f3-4c9d-9e1b-89acd15c2250 {"md5": "745ff90a6ad0c6fb840da79c20714577", "pid": "95511201X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/3037687-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3037687-7", "source": "GND"}], "variant_name": ["Tennisklub Lindenau"], "preferred_name": "Tennisclub Lindenau", "country_associated": "gw", "variant_access_point": ["Tennisklub Lindenau. Großauheim"], "authorized_access_point": "Tennisclub Lindenau. Großauheim"} 1 -2023-07-08 08:18:05.307654 2023-07-08 08:18:05.307657 758f77d3-c6a6-4098-8ab4-8502e0e4dbc4 {"md5": "a0a6b811fab410f68e98764f601b8da2", "pid": "955116635", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/3038222-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3038222-1", "source": "GND"}], "preferred_name": "Sudetendeutsche Landsmannschaft in Argentinien", "country_associated": "ag", "authorized_access_point": "Sudetendeutsche Landsmannschaft in Argentinien"} 1 -2023-07-08 08:18:05.401984 2023-07-08 08:18:05.40199 72f0ec79-a7e2-4c20-b6cd-12ae06f14458 {"md5": "918aadd997bb996c1663472b1a517b3b", "pid": "955119413", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5298436-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5298436-9", "source": "GND"}], "variant_name": ["USA. House of Representatives. Committee on the Judiciary. Subcommittee on International Law, Immigration, and Refugees", "Subcommittee on International Law, Immigration, and Refugees"], "preferred_name": "USA. Subcommittee on International Law, Immigration, and Refugees", "country_associated": "xxu", "variant_access_point": ["USA. House of Representatives. Committee on the Judiciary. Subcommittee on International Law, Immigration, and Refugees", "Subcommittee on International Law, Immigration, and Refugees. USA"], "authorized_access_point": "USA. Subcommittee on International Law, Immigration, and Refugees"} 1 -2023-07-08 08:18:05.483197 2023-07-08 08:18:05.483203 cb1c8b1a-4a33-454f-b35a-970058a88a48 {"md5": "211080447e3389ade198632c7949b6d8", "pid": "955121647", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5298662-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5298662-7", "source": "GND"}], "preferred_name": "Arbeitskreis Heimatgeschichte und Brauchtumpflege", "country_associated": "gw", "authorized_access_point": "Arbeitskreis Heimatgeschichte und Brauchtumpflege. Altenkirchen; Weyerbusch"} 1 -2023-07-08 08:18:05.568889 2023-07-08 08:18:05.568892 3c384146-e3ae-4f1b-8034-20968db596fb {"md5": "0df19c6a0bd2f9d3fdfaceabe353190c", "pid": "955190908", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/3039299-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3039299-8", "source": "GND"}], "variant_name": ["Potchefstroom University for Christian Higher Education. Navorsingseenheid vir Fonetiek en Fonologie", "Research Unit for Phonetics and Phonology", "Navorsingseenheid vir Fonetiek en Fonologie"], "preferred_name": "Potchefstroom University for Christian Higher Education. Research Unit for Phonetics and Phonology", "country_associated": "sa", "variant_access_point": ["Potchefstroom University for Christian Higher Education. Navorsingseenheid vir Fonetiek en Fonologie", "Research Unit for Phonetics and Phonology. Potchefstroom", "Navorsingseenheid vir Fonetiek en Fonologie. Potchefstroom"], "authorized_access_point": "Potchefstroom University for Christian Higher Education. Research Unit for Phonetics and Phonology"} 1 -2023-07-08 08:18:05.643008 2023-07-08 08:18:05.643018 0b2003e2-3f4d-478d-9c03-468b81b9f19f {"md5": "436494e56f14fdd32852174f47568b28", "pid": "955382378", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5302736-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5302736-X", "source": "GND"}], "variant_name": ["Jugoslovenski Medjunarodni Simposzij Savremena Proizvodnja I Prerada Mlijeka, 9", "Yugoslav International Symposium on Modern Milk Production and Processing, 9", "Mednarodni Siposzij Sodobna Proizvodnja in Predelava Mleka, 9", "Medjunarodni Simposzij Savremena Proizvodnja I Prerada Mlijeka, 9", "International Symposium on Modern Milk Production and Processing, 9"], "preferred_name": "Jugoslovanski Mednarodni Siposzij Sodobna Proizvodnja in Predelava Mleka, 9", "variant_access_point": ["Jugoslovenski Medjunarodni Simposzij Savremena Proizvodnja I Prerada Mlijeka, 9, 1990, Portorož", "Yugoslav International Symposium on Modern Milk Production and Processing, 9, 1990, Portorož", "Mednarodni Siposzij Sodobna Proizvodnja in Predelava Mleka, 9, 1990, Portorož", "Medjunarodni Simposzij Savremena Proizvodnja I Prerada Mlijeka, 9, 1990, Portorož", "International Symposium on Modern Milk Production and Processing, 9, 1990, Portorož"], "authorized_access_point": "Jugoslovanski Mednarodni Siposzij Sodobna Proizvodnja in Predelava Mleka, 9, 1990, Portorož"} 1 -2023-07-08 08:18:05.743123 2023-07-08 08:18:05.743132 922bf847-d5bf-4eb8-bb47-026738558f74 {"md5": "1f80020ccbb4bca27032ab04031f16f4", "pid": "955401976", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5304597-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5304597-X", "source": "GND"}], "preferred_name": "Alaskan Science Conference, 5", "authorized_access_point": "Alaskan Science Conference, 5, 1954", "biographical_information": ["In der Vorlage kein Ort"]} 1 -2023-07-08 08:18:05.851288 2023-07-08 08:18:05.851294 3f06d3d8-cae0-4e2b-a2bf-0d7f7a9651b4 {"md5": "13a89e7ba1e685f3e1b8e5d64f2cfeb2", "pid": "955431425", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5306471-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5306471-9", "source": "GND"}], "variant_name": ["Deep Water Rice Workshop", "Workshop on Deep-Water Rice", "Deep-Water Rice Workshop"], "preferred_name": "Workshop on Deep Water Rice", "variant_access_point": ["Deep Water Rice Workshop", "Workshop on Deep-Water Rice", "Deep-Water Rice Workshop"], "authorized_access_point": "Workshop on Deep Water Rice"} 1 -2023-07-08 08:18:05.946382 2023-07-08 08:18:05.946391 bac0a307-bfe1-49de-96c9-bbb8bc9fe446 {"md5": "77171bcba82ed1e623722abfb1f5e9fe", "pid": "955432774", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5306609-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5306609-1", "source": "GND"}], "variant_name": ["Partei des Demokratischen Sozialismus. Landesverband Sachsen. AG Senioren", "Partei des Demokratischen Sozialismus. Landesverband Sachsen. Senioren-AG", "Seniorenarbeitsgemeinschaft Sachsen", "SAG'S"], "preferred_name": "Partei des Demokratischen Sozialismus. Landesverband Sachsen. Seniorenarbeitsgemeinschaft", "country_associated": "gw", "variant_access_point": ["Partei des Demokratischen Sozialismus. Landesverband Sachsen. AG Senioren", "Partei des Demokratischen Sozialismus. Landesverband Sachsen. Senioren-AG", "Seniorenarbeitsgemeinschaft Sachsen", "SAG'S. Abkuerzung"], "authorized_access_point": "Partei des Demokratischen Sozialismus. Landesverband Sachsen. Seniorenarbeitsgemeinschaft"} 1 -2023-07-08 08:18:06.038219 2023-07-08 08:18:06.038227 89974242-93e1-4f34-b651-1818dc1df02b {"md5": "5d77b7baad4dc03c2837485e756fa3c8", "pid": "955611423", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5309493-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5309493-1", "source": "GND"}], "variant_name": ["Biersack, Verlag Franz"], "preferred_name": "Verlag Franz Biersack", "country_associated": "gw", "variant_access_point": ["Biersack, Verlag Franz. Magdeburg"], "authorized_access_point": "Verlag Franz Biersack. Magdeburg"} 1 -2023-07-08 08:18:06.126402 2023-07-08 08:18:06.126413 bf279251-4b33-443d-9a5c-760dd6986c22 {"md5": "90a751febd99016593ef10dfab6a4589", "pid": "955736374", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/3040044-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3040044-2", "source": "GND"}], "variant_name": ["Versammlung der Deutschen Philologen und Schulmänner, 2", "Conventus Philologorum Germaniae, 2"], "preferred_name": "Versammlung Deutscher Philologen und Schulmänner, 2", "variant_access_point": ["Versammlung der Deutschen Philologen und Schulmänner, 2, 1839, Mannheim", "Conventus Philologorum Germaniae, 2, 1839, Mannheim"], "authorized_access_point": "Versammlung Deutscher Philologen und Schulmänner, 2, 1839, Mannheim"} 1 -2023-07-08 08:18:06.20997 2023-07-08 08:18:06.209973 5705e4e4-3ca9-4e80-a203-e44c808b0eea {"md5": "c7816ab8f0c8734c581723cfe8552c5b", "pid": "955740223", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5310488-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5310488-2", "source": "GND"}], "variant_name": ["Förderverein zur Erhaltung und Restaurierung der Oberen Kirche Sankt Martin in Tomerdingen"], "preferred_name": "Förderverein zur Erhaltung und Restaurierung der Oberen Kirche St. Martin in Tomerdingen", "country_associated": "gw", "variant_access_point": ["Förderverein zur Erhaltung und Restaurierung der Oberen Kirche Sankt Martin in Tomerdingen"], "authorized_access_point": "Förderverein zur Erhaltung und Restaurierung der Oberen Kirche St. Martin in Tomerdingen"} 1 -2023-07-08 08:18:06.281558 2023-07-08 08:18:06.281561 314e6d64-6f23-437b-bf0b-3b64542a71b8 {"md5": "268d31ac00513b311fc772afe05c16e7", "pid": "955746256", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5311071-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5311071-7", "source": "GND"}], "preferred_name": "Conference on Matrix Methods in Structural Mechanics, 3", "authorized_access_point": "Conference on Matrix Methods in Structural Mechanics, 3, 1971, Wright-Patterson, Ohio"} 1 -2023-07-08 08:18:06.364891 2023-07-08 08:18:06.364899 fe4973dd-03cc-439f-bad9-35ce8d694df8 {"md5": "21210a94d59f96aca1802ca86a568d45", "pid": "955966566", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2175772-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2175772-0", "source": "GND"}], "variant_name": ["VDI-MEG-Kolloquium Agrartechnik"], "preferred_name": "Kolloquium Agrartechnik", "country_associated": "gw", "variant_access_point": ["VDI-MEG-Kolloquium Agrartechnik, 1997, Bonn"], "authorized_access_point": "Kolloquium Agrartechnik, 1997, Bonn"} 1 -2023-07-08 08:18:06.462893 2023-07-08 08:18:06.462902 63ad59c9-a773-4740-94f9-fafd56367dd6 {"md5": "d4a6a4e8b982406b22b9b18fff1e5fe4", "pid": "956291279", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2176771-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2176771-3", "source": "GND"}], "variant_name": ["Anwaltstag, 50"], "preferred_name": "Deutscher Anwaltstag, 50", "country_associated": "gw", "variant_access_point": ["Anwaltstag, 50, 1999, Bonn"], "authorized_access_point": "Deutscher Anwaltstag, 50, 1999, Bonn"} 1 -2023-07-08 08:18:06.575413 2023-07-08 08:18:06.575422 e6088f01-e25c-4d8a-8b37-870414af3150 {"md5": "91e3c02b68dc8d8ad260c216129f7645", "pid": "956483542", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1240434-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1240434-2", "source": "GND"}], "variant_name": ["Winkelmann und Pannhoff GmbH", "Firma Winkelmann + Pannhoff", "W + P", "Fa. Winkelmann + Pannhoff", "W + P GmbH"], "preferred_name": "Winkelmann + Pannhoff GmbH", "country_associated": "gw", "variant_access_point": ["Winkelmann und Pannhoff GmbH", "Firma Winkelmann + Pannhoff", "W + P. Abkuerzung", "Fa. Winkelmann + Pannhoff", "W + P GmbH"], "authorized_access_point": "Winkelmann + Pannhoff GmbH", "biographical_information": ["1898 gegr. Unternehmen der Umformtechnik"]} 1 -2023-07-08 08:18:06.655834 2023-07-08 08:18:06.655844 8bc2a487-0a01-4ecf-a0ff-85175ef9f0b8 {"md5": "eb77544c983e339e182edccf03a1546f", "pid": "956528775", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5314705-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5314705-4", "source": "GND"}], "preferred_name": "Ausstellung Mapplethorpe versus Rodin", "country_associated": "gw", "authorized_access_point": "Ausstellung Mapplethorpe versus Rodin, 1992, Düsseldorf"} 1 -2023-07-08 08:18:06.744377 2023-07-08 08:18:06.744382 b4c2fbbf-c27c-4b69-b9d5-cbcf3ccc1e5c {"md5": "96a49a3cd2732532a33440dd8fcebdcf", "pid": "956529445", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5314770-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5314770-4", "source": "GND"}], "variant_name": ["Leichtathletik-Verband", "BLV"], "preferred_name": "Bremer Leichtathletik-Verband", "country_associated": "gw", "variant_access_point": ["Leichtathletik-Verband. Bremen", "BLV. Abkuerzung"], "authorized_access_point": "Bremer Leichtathletik-Verband"} 1 -2023-07-08 08:18:06.825024 2023-07-08 08:18:06.825028 3c49fef6-ee80-4ce0-88aa-dcfe47edbc56 {"md5": "89e76619100bb39ce46394fe2cd791f1", "pid": "956539564", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5315764-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5315764-3", "source": "GND"}], "variant_name": ["ITVA-Symposium Altlasten, 3"], "preferred_name": "Symposium Altlasten, 3", "variant_access_point": ["ITVA-Symposium Altlasten, 3, 1993, Hannover"], "authorized_access_point": "Symposium Altlasten, 3, 1993, Hannover"} 1 -2023-07-08 08:18:06.900146 2023-07-08 08:18:06.900149 3867fb45-0b44-4fdd-b76c-6531bfb99174 {"md5": "b47e37459453d7f56d23f570a6f68562", "pid": "956546927", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5316500-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5316500-7", "source": "GND"}], "preferred_name": "International Conference on the Engineering of Sport, 2", "country_associated": "xxk", "authorized_access_point": "International Conference on the Engineering of Sport, 2, 1998, Sheffield"} 1 -2023-07-08 08:18:06.975348 2023-07-08 08:18:06.975351 a8655588-8f87-4317-b809-fc2da8e9ac08 {"md5": "fea8895065e05137b91cb96af56b90d1", "pid": "956548660", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5316676-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5316676-0", "source": "GND"}], "preferred_name": "Professional Engineer Review Course, Inc.", "country_associated": "xxu", "authorized_access_point": "Professional Engineer Review Course, Inc.. Northport, NY"} 1 -2023-07-08 08:18:07.044678 2023-07-08 08:18:07.044683 a4999776-c06f-4762-b0b4-f702940c6f2f {"md5": "5ba960cf24d15b8bc8ff6bae7a1877d1", "pid": "956555225", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5317337-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5317337-5", "source": "GND"}], "variant_name": ["Musée d'Art de Daimaru", "Kyōto Daimaru Museum", "Daimaru Museum"], "preferred_name": "Daimaru-Myūjiamu", "country_associated": "ja", "variant_access_point": ["Musée d'Art de Daimaru. Kyōto", "Kyōto Daimaru Museum", "Daimaru Museum. Kyōto"], "authorized_access_point": "Daimaru-Myūjiamu. Kyōto"} 1 -2023-07-08 08:18:07.115565 2023-07-08 08:18:07.115568 38623678-0682-44fe-a745-1715f6c1131a {"md5": "37345000637ae08f60617d0e669d299a", "pid": "956579760", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5317586-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5317586-4", "source": "GND"}], "preferred_name": "Landes-Immobiliar-Brandversicherungs-Anstalt des Königreichs Sachsen", "authorized_access_point": "Landes-Immobiliar-Brandversicherungs-Anstalt des Königreichs Sachsen. Dresden"} 1 -2023-07-08 08:18:07.187553 2023-07-08 08:18:07.187556 7ea2d94c-3e36-44e8-a329-47d2e7e5f735 {"md5": "26f3b6c0c36f3913878fa00e4cb08af9", "pid": "956627536", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2177680-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2177680-5", "source": "GND"}], "variant_name": ["Basel. Polizei- und Militärdepartement. Stabsstelle Katastrophenvorsorge", "Stabsstelle Katastrophenvorsorge"], "preferred_name": "Basel. Stabsstelle Katastrophenvorsorge", "country_associated": "sz", "variant_access_point": ["Basel. Polizei- und Militärdepartement. Stabsstelle Katastrophenvorsorge", "Stabsstelle Katastrophenvorsorge. Basel"], "authorized_access_point": "Basel. Stabsstelle Katastrophenvorsorge"} 1 -2023-07-08 08:18:07.267373 2023-07-08 08:18:07.267377 22ba0be9-8661-41d4-ab16-43629826ef9e {"md5": "dd95fe7696b39efa680bb007d1ed4890", "pid": "956749232", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5318634-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5318634-5", "source": "GND"}], "variant_name": ["Banestyrelsen", "Dänemark. National Railway Agency", "National Railway Agency", "Dänemark. Railway Agency", "Railway Agency", "BS"], "preferred_name": "Dänemark. Banestyrelsen", "country_associated": "dk", "variant_access_point": ["Banestyrelsen. Dänemark", "Dänemark. National Railway Agency", "National Railway Agency. Dänemark", "Dänemark. Railway Agency", "Railway Agency. Dänemark", "BS. Abkuerzung"], "date_of_establishment": "01.01.1997", "authorized_access_point": "Dänemark. Banestyrelsen"} 1 -2023-07-08 08:18:07.335152 2023-07-08 08:18:07.335155 834ea23f-0de8-45f9-9365-79f739450fff {"md5": "d155ba83fbd386499ccfafc632fa22dd", "pid": "95679615X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5320605-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5320605-8", "source": "GND"}], "preferred_name": "Wäller Rockinitiative e.V.", "country_associated": "gw", "authorized_access_point": "Wäller Rockinitiative e.V."} 1 -2023-07-08 08:18:07.425244 2023-07-08 08:18:07.425257 5e0b2b6c-dd9a-4477-a2f7-5c59c9a9e529 {"md5": "1591325513d2415c972e443b8ad6ab4a", "pid": "956827195", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1602387-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1602387-0", "source": "GND"}], "variant_name": ["Umweltschutz-Symposium, 3"], "preferred_name": "Kulmbacher Umweltschutz-Symposium, 3", "country_associated": "gw", "variant_access_point": ["Umweltschutz-Symposium, 3, 1994, Kulmbach"], "authorized_access_point": "Kulmbacher Umweltschutz-Symposium, 3, 1994, Kulmbach"} 1 -2023-07-08 08:18:07.516005 2023-07-08 08:18:07.516012 0354155c-6320-49e9-a54b-7250afeeb519 {"md5": "f5e213fa14f228f704a5f331445293f2", "pid": "956831044", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5321386-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5321386-5", "source": "GND"}], "variant_name": ["Verein für Beförderung der Pferdezucht", "Hannoverscher Verein zur Beförderung der Pferdezucht", "Verein zur Beförderung der Pferdezucht", "Hannoverscher Verein für Pferdezucht", "Verein für Pferdezucht"], "preferred_name": "Hannoverscher Verein für Beförderung der Pferdezucht", "date_of_termination": "1835", "variant_access_point": ["Verein für Beförderung der Pferdezucht. Hannover, Staat", "Hannoverscher Verein zur Beförderung der Pferdezucht", "Verein zur Beförderung der Pferdezucht. Hannover, Staat", "Hannoverscher Verein für Pferdezucht", "Verein für Pferdezucht. Hannover, Staat"], "date_of_establishment": "1834", "authorized_access_point": "Hannoverscher Verein für Beförderung der Pferdezucht"} 1 -2023-07-08 08:18:07.610594 2023-07-08 08:18:07.610607 bf544455-8216-4298-bade-df5118cf7252 {"md5": "2d7ea9a772fe381a480d106724d85e1b", "pid": "956917054", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5324690-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5324690-1", "source": "GND"}], "variant_name": ["Technical Applications Conference"], "preferred_name": "Northcon", "country_associated": "xxu", "variant_access_point": ["Technical Applications Conference, 1998, Seattle, Wash."], "authorized_access_point": "Northcon, 1998, Seattle, Wash."} 1 -2023-07-08 08:18:07.700021 2023-07-08 08:18:07.700028 4eb30f19-6a61-4a9d-9cf1-01f9d85475dd {"md5": "17735885ce8be31f27cbd559a50b3992", "pid": "956976999", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5326222-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5326222-0", "source": "GND"}], "preferred_name": "Symposium Clinical Settings for Selective Alpha-Adrenergic Receptor Inhibition: Rationale and Management Strategies", "country_associated": "xxu", "authorized_access_point": "Symposium Clinical Settings for Selective Alpha-Adrenergic Receptor Inhibition: Rationale and Management Strategies, 1988, Naples, Fla."} 1 -2023-07-08 08:18:07.800833 2023-07-08 08:18:07.800839 98ea91fd-eae4-4afa-bc28-f7dc04b670e1 {"md5": "6a6402d43551639e61031d5b99aca3e4", "pid": "956990223", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5327437-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5327437-4", "source": "GND"}], "variant_name": ["TAPPI Coating Binders Short Course"], "preferred_name": "Coating Binders Short Course", "country_associated": "xxu", "variant_access_point": ["TAPPI Coating Binders Short Course, 1996, Baton Rouge, La."], "authorized_access_point": "Coating Binders Short Course, 1996, Baton Rouge, La."} 1 -2023-07-08 08:18:07.896194 2023-07-08 08:18:07.896202 943b05f9-82b0-4f16-9a43-0c37b97fa32f {"md5": "1daafb9c5ae53f7a5d024a19dbb3ec27", "pid": "956994679", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5327839-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5327839-2", "source": "GND"}], "preferred_name": "Sogwang-Haksul-Charyosa", "country_associated": "ko", "authorized_access_point": "Sogwang-Haksul-Charyosa"} 1 -2023-07-08 08:18:07.986708 2023-07-08 08:18:07.986718 56fc7948-5df8-4d7e-bb63-843f955a5030 {"md5": "6b03947cb0137a35088949874dc32bc8", "pid": "957023235", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5330561-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5330561-9", "source": "GND"}], "variant_name": ["Internationales Wissenschaftliches Studentenkolloquium, 4", "Meždunarodnaja Studenskaja Konferencija, 4"], "preferred_name": "Mie̜dzynarodowe Studenckie Sympozjum Naukowe, 4", "country_associated": "pl", "variant_access_point": ["Internationales Wissenschaftliches Studentenkolloquium, 4, 1980, Zielona Góra", "Meždunarodnaja Studenskaja Konferencija, 4, 1980, Zielona Góra"], "authorized_access_point": "Mie̜dzynarodowe Studenckie Sympozjum Naukowe, 4, 1980, Zielona Góra"} 1 -2023-07-08 08:18:08.082114 2023-07-08 08:18:08.082124 0721a3e4-ee14-439a-935e-aeeca569b6da {"md5": "7732b47929207e9a6d65864302ceaf50", "pid": "957059590", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1240043-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1240043-9", "source": "GND"}], "variant_name": ["Giornate Vimercatesi di Traumatologia dello Sport, 3"], "preferred_name": "Giornate Vimercatesi Internazionali di Traumatologia dello Sport, 3", "country_associated": "it", "variant_access_point": ["Giornate Vimercatesi di Traumatologia dello Sport, 3, 1997, Agrate Brianza"], "authorized_access_point": "Giornate Vimercatesi Internazionali di Traumatologia dello Sport, 3, 1997, Agrate Brianza"} 1 -2023-07-08 08:18:08.17329 2023-07-08 08:18:08.173298 3d539834-da16-4686-9557-68673691eeba {"md5": "99709a8a58de340e694ac3c15f483977", "pid": "957060149", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1240915-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1240915-7", "source": "GND"}], "variant_name": ["Kirchheimer Lateinschule", "Lateinschule Kirchheim unter Teck"], "preferred_name": "Lateinschule", "country_associated": "gw", "variant_access_point": ["Kirchheimer Lateinschule", "Lateinschule Kirchheim unter Teck. Ehemalige Vorzugsbenennung SWD"], "authorized_access_point": "Lateinschule. Kirchheim unter Teck", "biographical_information": ["1249 erstmals erwähnt"]} 1 -2023-07-08 08:18:08.249405 2023-07-08 08:18:08.249413 852a3eef-c0f1-4d14-b71a-244c48c7080e {"md5": "060e9836ab832aa2dda5ad66f634e2eb", "pid": "957075405", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5332088-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5332088-8", "source": "GND"}], "variant_name": ["Bund des Ehem. Kgl. Preuß. Inf.-Regts Großherzog Friedrich Franz II. v. Mecklenburg-Schwerin (4. Brandenburg.) Nr. 24", "Bund I. R. 24", "Bund Infanterie-Regiment 24"], "preferred_name": "Bund des Ehemaligen Königlichen Preußischen Infanterie-Regiments Großherzog Friedrich Franz II. von Mecklenburg-Schwerin (4. Brandenburgisches) Nummer 24", "date_of_termination": "01.10.1938", "variant_access_point": ["Bund des Ehem. Kgl. Preuß. Inf.-Regts Großherzog Friedrich Franz II. v. Mecklenburg-Schwerin (4. Brandenburg.) Nr. 24", "Bund I. R. 24", "Bund Infanterie-Regiment 24"], "authorized_access_point": "Bund des Ehemaligen Königlichen Preußischen Infanterie-Regiments Großherzog Friedrich Franz II. von Mecklenburg-Schwerin (4. Brandenburgisches) Nummer 24"} 1 -2023-07-08 08:18:08.346427 2023-07-08 08:18:08.346436 f55ce3dd-7002-4f31-8221-6b8d30077893 {"md5": "dbcfc624b9f19867b38468239e63be96", "pid": "957106408", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5332309-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5332309-9", "source": "GND"}], "variant_name": ["Consorzio Costa Verde"], "preferred_name": "Consorzio Turistico Costa Verde", "country_associated": "it", "variant_access_point": ["Consorzio Costa Verde. Marina, Castellaneta"], "authorized_access_point": "Consorzio Turistico Costa Verde. Marina, Castellaneta"} 1 -2023-07-08 08:18:08.431588 2023-07-08 08:18:08.431593 bdc19b8c-35ba-4060-b31a-9d7febfded42 {"md5": "d02e81df39d5f65898288dd07c576259", "pid": "957164599", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5333199-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5333199-0", "source": "GND"}], "variant_name": ["LD", "Liberale Demokraten - Die Sozialliberalen"], "preferred_name": "Liberale Demokraten", "country_associated": "gw", "variant_access_point": ["LD. Abkuerzung", "Liberale Demokraten - Die Sozialliberalen. Spaeterer Name"], "date_of_establishment": "28.11.1982", "authorized_access_point": "Liberale Demokraten", "biographical_information": ["\\"1991 erweiterten die Liberalen Demokraten schließlich ihren Parteinamen um den Passus „die Sozialliberalen“, um ihre programmatische Ausrichtung besser nach außen transportieren zu können.\\" - Homepage"]} 1 -2023-07-08 08:18:08.530766 2023-07-08 08:18:08.530771 eb365084-64ed-4acb-b3c9-18de662de5c6 {"md5": "a93d7700e05fb69d67f96188d9b87340", "pid": "957177879", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5334479-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5334479-0", "source": "GND"}], "variant_name": ["Institut für Leibeserziehung", "SWI", "Universität des Saarlandes. Sportwissenschaftliches Institut"], "preferred_name": "Sportwissenschaftliches Institut", "country_associated": "gw", "variant_access_point": ["Institut für Leibeserziehung", "SWI", "Universität des Saarlandes. Sportwissenschaftliches Institut"], "authorized_access_point": "Sportwissenschaftliches Institut. Saarbrücken"} 1 -2023-07-08 08:18:08.616014 2023-07-08 08:18:08.616021 61be3640-b5fa-411e-9d4f-c86ea5578227 {"md5": "0cf487158063732c171765401b0a1a40", "pid": "95717926X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5334610-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5334610-5", "source": "GND"}], "preferred_name": "International Congress for Analytical Psychology, 3", "country_associated": "sz", "authorized_access_point": "International Congress for Analytical Psychology, 3, 1965, Montreux"} 1 -2023-07-08 08:18:08.705366 2023-07-08 08:18:08.705369 f6207106-7eed-477d-bf80-eccd0a5b0fea {"md5": "43cc1107dc0c3fc5aeb3e47e90125cc1", "pid": "957186185", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5335244-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5335244-0", "source": "GND"}], "variant_name": ["Web Design Consortium"], "preferred_name": "Uebu-Dezain-Konsōshiamu", "country_associated": "ja", "variant_access_point": ["Web Design Consortium"], "authorized_access_point": "Uebu-Dezain-Konsōshiamu"} 1 -2023-07-08 08:18:08.807593 2023-07-08 08:18:08.807602 7d264b8d-3b13-45d7-ab1a-c68eb5d6a359 {"md5": "6daf538d108188e452451f5d0360b4fb", "pid": "957223242", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1240334-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1240334-9", "source": "GND"}], "preferred_name": "Istituto Italiano per la Storia delle Imprese", "country_associated": "it", "authorized_access_point": "Istituto Italiano per la Storia delle Imprese", "biographical_information": ["Sitz nicht zu erm."]} 1 -2023-07-08 08:18:08.880112 2023-07-08 08:18:08.880117 b1c2abd2-0160-49ee-90a2-1957ea3333fc {"md5": "881fd29fc3cff663ea2f5b747feaedb0", "pid": "957263511", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/3041900-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3041900-1", "source": "GND"}], "preferred_name": "Journée Régionale d'Etudes", "country_associated": "fr", "authorized_access_point": "Journée Régionale d'Etudes, 1997, Fréjus"} 1 -2023-07-08 08:18:08.958449 2023-07-08 08:18:08.958458 a7c8529c-37f4-41b0-b841-fb09c0191372 {"md5": "7860bf55c273446695b71d16b2301a8b", "pid": "957268688", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5335890-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5335890-9", "source": "GND"}], "variant_name": ["SPD-Ortsverein Hermannstein", "SPD Hermannstein"], "preferred_name": "Sozialdemokratische Partei Deutschlands. Ortsverein Hermannstein", "country_associated": "gw", "variant_access_point": ["SPD-Ortsverein Hermannstein", "SPD Hermannstein"], "authorized_access_point": "Sozialdemokratische Partei Deutschlands. Ortsverein Hermannstein"} 1 -2023-07-08 08:18:09.058795 2023-07-08 08:18:09.058807 cc982271-62fe-401d-aca7-f755ced81e16 {"md5": "61e4a4272dcef23b342ccdb2a8f8c5f8", "pid": "957348924", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1702995-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1702995-8", "source": "GND"}], "variant_name": ["Residenz-Lauf, 11", "Würzburger Residenz-Lauf"], "preferred_name": "Würzburger Residenz-Lauf, 11", "country_associated": "gw", "variant_access_point": ["Residenz-Lauf, 11, 1999, Würzburg", "Würzburger Residenz-Lauf, 1999, Würzburg"], "authorized_access_point": "Würzburger Residenz-Lauf, 11, 1999, Würzburg", "biographical_information": ["jährlich stattfindende Sportveranstaltung"]} 1 -2023-07-08 08:18:09.165999 2023-07-08 08:18:09.166009 a2afb580-54f6-4590-a551-8f89fa24968f {"md5": "39927282c6e9e31cead4fdd4174bba5d", "pid": "957354096", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5336653-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5336653-0", "source": "GND"}], "preferred_name": "Université de Nantes. Département de Littérature Générale et Comparée", "country_associated": "fr", "authorized_access_point": "Université de Nantes. Département de Littérature Générale et Comparée"} 1 -2023-07-08 08:18:09.256512 2023-07-08 08:18:09.256515 4ec22b73-5d27-42b7-96b5-a3f8d3bae93a {"md5": "2f7638e42e551b67f331349b5e49a7a3", "pid": "957365993", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5337811-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5337811-8", "source": "GND"}], "variant_name": ["SPD-Ortsverein Schenefeld", "SPD Schenefeld"], "preferred_name": "Sozialdemokratische Partei Deutschlands. Ortsverein Schenefeld", "country_associated": "gw", "variant_access_point": ["SPD-Ortsverein Schenefeld. Kreis Pinneberg", "SPD Schenefeld. Kreis Pinneberg"], "authorized_access_point": "Sozialdemokratische Partei Deutschlands. Ortsverein Schenefeld. Kreis Pinneberg"} 1 -2023-07-08 08:18:09.33489 2023-07-08 08:18:09.334895 230010b2-4201-473c-9352-158d201f5740 {"md5": "a5dc72a49f3e50120c95c676591b5e91", "pid": "957382332", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2179155-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2179155-7", "source": "GND"}], "variant_name": ["Evangelische Freikirche"], "preferred_name": "Kirche des Nazareners", "country_associated": "gw", "variant_access_point": ["Evangelische Freikirche. Hanau"], "authorized_access_point": "Kirche des Nazareners. Hanau"} 1 -2023-07-08 08:18:09.415713 2023-07-08 08:18:09.415717 a1d0f1ba-6f60-4459-83f2-221b78ccc711 {"md5": "e647a0440151df3658f5308528a3ac57", "pid": "957433158", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5337966-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5337966-4", "source": "GND"}], "variant_name": ["Musée d'Orbigny Bernon"], "preferred_name": "Musée d'Orbigny-Bernon", "country_associated": "fr", "variant_access_point": ["Musée d'Orbigny Bernon. La Rochelle"], "authorized_access_point": "Musée d'Orbigny-Bernon. La Rochelle"} 1 -2023-07-08 08:18:09.506391 2023-07-08 08:18:09.506399 2f7ba752-fc83-4268-97cf-8a4596122fa7 {"md5": "bf1104a1edf1851cc021d8d33d6a70b9", "pid": "95746214X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5338341-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5338341-2", "source": "GND"}], "variant_name": ["Naturwissenschaftlicher Verein Gotha", "Naturwissenschaflicher Verein in Gotha"], "preferred_name": "Naturwissenschaftlicher Verein zu Gotha", "date_of_termination": "1937", "variant_access_point": ["Naturwissenschaftlicher Verein Gotha", "Naturwissenschaflicher Verein in Gotha"], "date_of_establishment": "1875", "authorized_access_point": "Naturwissenschaftlicher Verein zu Gotha"} 1 -2023-07-08 08:18:09.597224 2023-07-08 08:18:09.597229 c734bd0b-ad09-457f-b622-3559c7eeaa50 {"md5": "ffd4307584fbaa15d54ac6703a619b2d", "pid": "957467303", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5338838-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5338838-0", "source": "GND"}], "preferred_name": "Frauenzentrum Paula Panke", "country_associated": "gw", "authorized_access_point": "Frauenzentrum Paula Panke. Berlin"} 1 -2023-07-08 08:18:09.697647 2023-07-08 08:18:09.697651 2f300463-9e62-4d17-8509-267b3136f729 {"md5": "db0e7c73c5edfb858e80fa0cdb483822", "pid": "957488548", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5340894-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5340894-9", "source": "GND"}], "preferred_name": "International Conference on Human Interfaces in Control Rooms, Cockpits and Command Centres", "country_associated": "xxk", "authorized_access_point": "International Conference on Human Interfaces in Control Rooms, Cockpits and Command Centres, 1999, Bath"} 1 -2023-07-08 08:18:09.78539 2023-07-08 08:18:09.785396 1dc570ff-3bce-4b03-922e-95f9d273a64e {"md5": "ea47677641c1c4d15f32a4511d30cab8", "pid": "957490186", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5341052-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5341052-X", "source": "GND"}], "variant_name": ["RWS-Forum Insolvenzrecht"], "preferred_name": "Forum Insolvenzrecht", "variant_access_point": ["RWS-Forum Insolvenzrecht, 1998, Berlin"], "authorized_access_point": "Forum Insolvenzrecht, 1998, Berlin"} 1 -2023-07-08 08:18:09.878501 2023-07-08 08:18:09.87851 3da3f0e4-5cbc-4659-a943-6273c9955861 {"md5": "04be460fccd3aed21763b8e02640bb57", "pid": "957496729", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5341692-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5341692-2", "source": "GND"}], "variant_name": ["Psychotherapiewochen, 48"], "preferred_name": "Lindauer Psychotherapiewochen, 48", "country_associated": "gw", "variant_access_point": ["Psychotherapiewochen, 48, 1998, Lindau (Bodensee)"], "authorized_access_point": "Lindauer Psychotherapiewochen, 48, 1998, Lindau (Bodensee)"} 1 -2023-07-08 08:18:09.969242 2023-07-08 08:18:09.969247 2b882ab1-5c88-43ef-a60f-2d177b3ee47f {"md5": "d7fa0825728843a195141e69da1ede4d", "pid": "957503083", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5342328-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5342328-8", "source": "GND"}], "preferred_name": "International Thermal Conductivity Conference, 16", "country_associated": "xxu", "authorized_access_point": "International Thermal Conductivity Conference, 16, Chicago, Ill."} 1 -2023-07-08 08:18:10.065912 2023-07-08 08:18:10.065917 0340e0d5-f430-4ccc-8bf2-ae1910ba16bf {"md5": "406d3213f7d77d8151e3cc9e62b8c227", "pid": "957506880", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5342708-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5342708-7", "source": "GND"}], "variant_name": ["SPD-Ortsverein Tannenbusch-Dransdorf-Buschdorf", "SPD Tannenbusch-Dransdorf-Buschdorf"], "preferred_name": "Sozialdemokratische Partei Deutschlands. Ortsverein Tannenbusch-Dransdorf-Buschdorf", "country_associated": "gw", "variant_access_point": ["SPD-Ortsverein Tannenbusch-Dransdorf-Buschdorf", "SPD Tannenbusch-Dransdorf-Buschdorf"], "authorized_access_point": "Sozialdemokratische Partei Deutschlands. Ortsverein Tannenbusch-Dransdorf-Buschdorf"} 1 -2023-07-08 08:18:10.161978 2023-07-08 08:18:10.161986 41b8e763-c09c-47c5-944a-64762486d7a8 {"md5": "89c7ce78ae0f3d58a046f6267c5ed0a8", "pid": "957853408", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/3042508-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3042508-6", "source": "GND"}], "variant_name": ["Sportverein 1921 Guntersblum", "SV Guntersblum"], "preferred_name": "SV 1921 Guntersblum", "country_associated": "gw", "variant_access_point": ["Sportverein 1921 Guntersblum", "SV Guntersblum"], "authorized_access_point": "SV 1921 Guntersblum"} 1 -2023-07-08 08:18:10.254294 2023-07-08 08:18:10.254298 20482463-4af3-47f1-b73c-bc7fa75ef996 {"md5": "32a1f0655949cff29c54855566f56657", "pid": "957923031", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1240114-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1240114-6", "source": "GND"}], "variant_name": ["SCSC, 31"], "preferred_name": "Summer Computer Simulation Conference, 31", "country_associated": "xxu", "variant_access_point": ["SCSC, 31, 1999, Chicago, Ill."], "authorized_access_point": "Summer Computer Simulation Conference, 31, 1999, Chicago, Ill."} 1 -2023-07-08 08:18:10.332668 2023-07-08 08:18:10.332671 76b4a085-2028-49f3-840c-3cd950131ab2 {"md5": "4ceec77babcc7fc176a863dd14e2370c", "pid": "95792755X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5344577-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5344577-6", "source": "GND"}], "preferred_name": "Symposium on the Treatment of Parkinson's Disease, 7", "country_associated": "ja", "authorized_access_point": "Symposium on the Treatment of Parkinson's Disease, 7, 1998, Osaka"} 1 -2023-07-08 08:18:10.432485 2023-07-08 08:18:10.432492 0edcc5a0-e024-4c77-a8bd-30350be895a0 {"md5": "bfa808a4279b008fea7651d4e7ba36d4", "pid": "957929331", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5344751-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5344751-7", "source": "GND"}], "preferred_name": "Congrès International de Langue et Littérature du Midi de la France, 1", "country_associated": "fr", "authorized_access_point": "Congrès International de Langue et Littérature du Midi de la France, 1, 1955, Avignon"} 1 -2023-07-08 08:18:10.521003 2023-07-08 08:18:10.521007 9aae1efa-329c-4d94-9c8c-17811a86f76f {"md5": "b724ef3d767a635db82804832082d9f3", "pid": "957935625", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5345357-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5345357-8", "source": "GND"}], "variant_name": ["Internationales Stuttgarter Trickfilm-Festival, 7.", "International Festival of Animated Film, 7.", "Internationales Trickfilm-Festival, 7.", "International Festival of Animated Film Stuttgart, 7."], "preferred_name": "Internationales Trickfilm-Festival Stuttgart, 7.", "country_associated": "gw", "variant_access_point": ["Internationales Stuttgarter Trickfilm-Festival, 7., 1994, Stuttgart", "International Festival of Animated Film, 7., 1994, Stuttgart", "Internationales Trickfilm-Festival, 7., 1994, Stuttgart", "International Festival of Animated Film Stuttgart, 7., 1994, Stuttgart"], "authorized_access_point": "Internationales Trickfilm-Festival Stuttgart, 7., 1994, Stuttgart"} 1 -2023-07-08 08:18:10.603918 2023-07-08 08:18:10.603924 c9d70c22-3f4b-466d-a2b8-fcde2f8b102f {"md5": "5131315b996d9687d1efcbb3dc8246f3", "pid": "957935900", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5345383-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5345383-9", "source": "GND"}], "variant_name": ["Internationale Fotoausstellung, 2"], "preferred_name": "Internationale Merchweiler Fotoausstellung, 2", "country_associated": "gw", "variant_access_point": ["Internationale Fotoausstellung, 2, 1992, Merchweiler"], "authorized_access_point": "Internationale Merchweiler Fotoausstellung, 2, 1992, Merchweiler"} 1 -2023-07-08 08:18:10.702559 2023-07-08 08:18:10.702565 d09ee3d5-fedf-4b48-9b61-726cd2a9b38a {"md5": "16ee4830b58e71f344a67116c087e6ff", "pid": "95794988X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5346758-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5346758-9", "source": "GND"}], "variant_name": ["Freiwillige Feuerwehr"], "preferred_name": "Freiwillige Feuerwehr", "country_associated": "gw", "variant_access_point": ["Freiwillige Feuerwehr. Losheim-Hausbach"], "authorized_access_point": "Freiwillige Feuerwehr. Hausbach, Losheim"} 1 -2023-07-08 08:18:10.778077 2023-07-08 08:18:10.778086 cae8dcaa-a208-4623-ac03-5ed39035d71f {"md5": "f54e75b830a98bf72a25055d09ec08e6", "pid": "957954522", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5347220-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5347220-2", "source": "GND"}], "variant_name": ["Fidelia", "Verein für Gesellige Unterhaltung Fidelia"], "preferred_name": "Fidelia", "country_associated": "gw", "variant_access_point": ["Fidelia. Homburg, Saar", "Verein für Gesellige Unterhaltung Fidelia. Einöd"], "authorized_access_point": "Fidelia. Einöd"} 1 -2023-07-08 08:18:10.868839 2023-07-08 08:18:10.868842 36249a92-e60c-457f-99c2-ffe8be7319ba {"md5": "3f5ae2e72b0b61fe4b6681c8f969e06d", "pid": "95795624X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5347390-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5347390-5", "source": "GND"}], "variant_name": ["Männergesangverein Sängerkreis"], "preferred_name": "Männergesangverein Sängerkreis", "country_associated": "gw", "variant_access_point": ["Männergesangverein Sängerkreis. Beckingen"], "authorized_access_point": "Männergesangverein Sängerkreis. Saarfels"} 1 -2023-07-08 08:18:10.968716 2023-07-08 08:18:10.968721 9812f282-84c9-4477-b41c-5a6d86b13ffe {"md5": "a784834a1ce82170b5f61c5e5742b134", "pid": "957957114", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5347477-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5347477-6", "source": "GND"}], "variant_name": ["Prot. Kirchengemeinde Ensheim"], "preferred_name": "Protestantische Kirchengemeinde Ensheim", "country_associated": "gw", "variant_access_point": ["Prot. Kirchengemeinde Ensheim"], "authorized_access_point": "Protestantische Kirchengemeinde Ensheim"} 1 -2023-07-08 08:18:11.062884 2023-07-08 08:18:11.062895 ed419c0f-6f86-4dad-9775-0eec27642e49 {"md5": "ac3aaf095b373014ba85b0e1725e0c20", "pid": "957962703", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5348037-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5348037-5", "source": "GND"}], "preferred_name": "INTERSCHUL Didacta, 1", "authorized_access_point": "INTERSCHUL Didacta, 1, 1999, Stuttgart"} 1 -2023-07-08 08:18:11.169118 2023-07-08 08:18:11.169122 ae646ed7-9bf9-44e1-b029-b4acc2ac21c5 {"md5": "e9ca7f3d8153c88889665785fad436cf", "pid": "957973497", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5349117-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5349117-8", "source": "GND"}], "preferred_name": "Catholic Family History Society", "country_associated": "xxu", "authorized_access_point": "Catholic Family History Society"} 1 -2023-07-08 08:18:11.250727 2023-07-08 08:18:11.250732 331a70a2-c572-4cf0-94c4-7e4daff47782 {"md5": "9614434f07d41623b81c1bcc79c5f6fc", "pid": "95797728X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5349496-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5349496-9", "source": "GND"}], "variant_name": ["IEEE International Conference on Information Visualization", "International Conference on Computer Visualization & Graphics", "IV", "International Conference on Information Visualisation"], "preferred_name": "International Conference on Information Visualization", "country_associated": "xxk", "variant_access_point": ["IEEE International Conference on Information Visualization, 1999, London", "International Conference on Computer Visualization & Graphics, 1999, London", "IV, 1999, London", "International Conference on Information Visualisation, 1999, London"], "authorized_access_point": "International Conference on Information Visualization, 1999, London"} 1 -2023-07-08 08:18:11.326252 2023-07-08 08:18:11.326255 5f61ce4b-99a1-4a27-b910-d69a3bd0dd46 {"md5": "74c426b708ddd5dced709214191ec1c0", "pid": "958006873", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2180573-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2180573-8", "source": "GND"}], "preferred_name": "Workshop Coaching und Weiterbildung von Agenda-21-Moderatoren", "country_associated": "gw", "authorized_access_point": "Workshop Coaching und Weiterbildung von Agenda-21-Moderatoren, 1998, Dortmund"} 1 -2023-07-08 08:18:11.416182 2023-07-08 08:18:11.416186 3270edca-1b65-4e78-82d3-244c101d7f28 {"md5": "5124d272f6f2e33f61c9b4cab9d37945", "pid": "958094160", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5351954-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5351954-1", "source": "GND"}], "preferred_name": "Frauenchor Cäcilia Gladbach", "country_associated": "gw", "date_of_establishment": "1974", "authorized_access_point": "Frauenchor Cäcilia Gladbach"} 1 -2023-07-08 08:18:11.511876 2023-07-08 08:18:11.511881 89335d20-d3d4-4c60-85a5-f4e9f6210312 {"md5": "8e28bb5de41f4ff98e179fb78f3dd92f", "pid": "958490139", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/2182000-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2182000-4", "source": "GND"}], "preferred_name": "Herbst-Akademie Zeichen der Zeit", "country_associated": "gw", "authorized_access_point": "Herbst-Akademie Zeichen der Zeit, 1995, Goslar"} 1 -2023-07-08 08:18:11.600999 2023-07-08 08:18:11.601002 83c38269-6b14-4936-9677-7bb3bdaa8c7d {"md5": "e60b839691f4c7f3afe2279d28f3cd12", "pid": "95858012X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10000050-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10000050-2", "source": "GND"}], "variant_name": ["AMP", "AMP"], "preferred_name": "Association for Molecular Pathology", "country_associated": "xxu", "variant_access_point": ["AMP. Abkuerzung", "AMP. Association for Molecular Pathology"], "authorized_access_point": "Association for Molecular Pathology"} 1 -2023-07-08 08:18:11.70061 2023-07-08 08:18:11.700616 2c7f72b0-4859-4234-98a1-59141d86b60b {"md5": "7f141bfd2c6b7e733f472515436923d9", "pid": "958686424", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2182538-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2182538-5", "source": "GND"}], "variant_name": ["Mathematische Fakultät"], "preferred_name": "Albert-Ludwigs-Universität Freiburg. Mathematische Fakultät", "country_associated": "gw", "variant_access_point": ["Mathematische Fakultät. Freiburg im Breisgau"], "authorized_access_point": "Albert-Ludwigs-Universität Freiburg. Mathematische Fakultät"} 1 -2023-07-08 08:18:11.855556 2023-07-08 08:18:11.855559 27aa1da3-fb7f-4f43-8e20-581f92549fbb {"md5": "ae99bb89db03718fbe299694f58f3751", "pid": "958942900", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/3042873-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3042873-7", "source": "GND"}], "variant_name": ["Internationale Apostelversammlung", "International Apostles' Meeting", "Internationale Zusammenkunft der Apostel"], "preferred_name": "International Meeting of Apostles", "country_associated": "xxc", "variant_access_point": ["Internationale Apostelversammlung, 1999, Toronto", "International Apostles' Meeting, 1999, Toronto", "Internationale Zusammenkunft der Apostel, 1999, Toronto"], "authorized_access_point": "International Meeting of Apostles, 1999, Toronto"} 1 -2023-07-08 08:18:11.925369 2023-07-08 08:18:11.925382 91fd8475-f74a-4d1b-9e46-f421774d0d3d {"md5": "c9c2037b5fe46a7aab879270695ae857", "pid": "958945861", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/3043183-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3043183-9", "source": "GND"}], "variant_name": ["Towarzystwo Inicjatyw Kulturalnych Im. Cypriana Norwida"], "preferred_name": "Towarzystwo Inicjatyw Kulturalnych Imienia Cypriana Norwida", "country_associated": "pl", "variant_access_point": ["Towarzystwo Inicjatyw Kulturalnych Im. Cypriana Norwida"], "authorized_access_point": "Towarzystwo Inicjatyw Kulturalnych Imienia Cypriana Norwida"} 1 -2023-07-08 08:18:12.018069 2023-07-08 08:18:12.018075 7207d1e6-2376-4afe-ad0a-e029ea2e9451 {"md5": "a6b5f5543d72ecb7e2421cefd84667bb", "pid": "959006028", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2183529-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2183529-9", "source": "GND"}], "variant_name": ["Nadace Bohuslava Martin°u", "Bohuslav-Martin°u-Stiftung", "Martin°u-Stiftung", "Bohuslav Martin°u Foundation", "Martin°u Foundation", "Bohuslav-Martin°u-Foundation", "Bohuslav-Martin°u-Stiftung", "Nadace Bohuslava Martinů", "Bohuslav-Martinů-Stiftung", "Nadace Bohuslava Martinů", "Bohuslav Martinů Foundation", "Bohuslav Martinů Foundation in Prague", "Bohuslav-Martinů-Stiftung", "Bohuslav Martinů Stiftung", "Bohuslav Martinů Stiftung", "Societas martinů"], "preferred_name": "Nadace Bohuslava Martinů", "variant_access_point": ["Nadace Bohuslava Martin°u. Prag", "Bohuslav-Martin°u-Stiftung. Prag", "Martin°u-Stiftung. Prag", "Bohuslav Martin°u Foundation. Prag", "Martin°u Foundation. Prag", "Bohuslav-Martin°u-Foundation", "Bohuslav-Martin°u-Stiftung. Ehemalige Vorzugsbenennung SWD", "Nadace Bohuslava Martinů. Praha", "Bohuslav-Martinů-Stiftung. Praha", "Nadace Bohuslava Martinů", "Bohuslav Martinů Foundation", "Bohuslav Martinů Foundation in Prague", "Bohuslav-Martinů-Stiftung", "Bohuslav Martinů Stiftung", "Bohuslav Martinů Stiftung. Prag", "Societas martinů"], "authorized_access_point": "Nadace Bohuslava Martinů. Prag", "biographical_information": ["1975 gegr."]} 1 -2023-07-08 08:18:12.108907 2023-07-08 08:18:12.108912 cdb868d4-ba23-4d4d-9788-1fc07542a4e9 {"md5": "a83406ad437d7f52167cd7f17c5135d0", "pid": "959176918", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/2184021-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2184021-0", "source": "GND"}], "variant_name": ["Verein für Hochbegabte Kinder", "Österreichischer Verein für hochbegabte Kinder"], "preferred_name": "Österreichischer Verein für Hochbegabte Kinder", "country_associated": "au", "variant_access_point": ["Verein für Hochbegabte Kinder. Österreich", "Österreichischer Verein für hochbegabte Kinder"], "authorized_access_point": "Österreichischer Verein für Hochbegabte Kinder"} 1 -2023-07-08 08:18:12.214992 2023-07-08 08:18:12.214995 5b09159b-8df8-4cea-a753-3d06fe309fe7 {"md5": "5bdc6ef095827d1212b7731694eee484", "pid": "959194975", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10003852-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10003852-9", "source": "GND"}], "variant_name": ["Sozialdemokratische Partei Deutschlands. Ortsverein", "SPD-Ortsverein", "SPD-Ortsverein", "SPD", "SPD"], "preferred_name": "Sozialdemokratische Partei Deutschlands. Ortsverein", "country_associated": "gw", "variant_access_point": ["Sozialdemokratische Partei Deutschlands. Ortsverein. Bochum-Steinkuhl", "SPD-Ortsverein. Steinkuhl", "SPD-Ortsverein. Bochum-Steinkuhl", "SPD. Steinkuhl", "SPD. Bochum-Steinkuhl"], "authorized_access_point": "Sozialdemokratische Partei Deutschlands. Ortsverein. Steinkuhl"} 1 -2023-07-08 08:18:12.297345 2023-07-08 08:18:12.29735 ea39fffb-9792-4b6d-90fd-e11c759cb0d5 {"md5": "1073956f1a15f9561dfa8d0251f13476", "pid": "959280944", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10004718-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10004718-X", "source": "GND"}], "variant_name": ["Nationalparkverwaltung Harz", "Braunschweig. Nationalparkverwaltung Harz"], "preferred_name": "Regierungsbezirk Braunschweig. Nationalparkverwaltung Harz", "country_associated": "gw", "date_of_termination": "31.12.2003", "variant_access_point": ["Nationalparkverwaltung Harz. Braunschweig, Regierungsbezirk", "Braunschweig. Regierungsbezirk. Nationalparkverwaltung Harz. Alte Ansetzungsform"], "date_of_establishment": "01.01.1994", "authorized_access_point": "Regierungsbezirk Braunschweig. Nationalparkverwaltung Harz", "biographical_information": ["Sitz: Sankt Andreasberg"]} 1 -2023-07-08 08:18:12.379369 2023-07-08 08:18:12.379381 faf61522-2c7e-4b22-b9ae-e66bb9394d5e {"md5": "ffb323b8fedca292c239146c1abaccf4", "pid": "959307338", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10004207-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10004207-7", "source": "GND"}], "variant_name": ["Annual Conference on Sanitary Engineering"], "preferred_name": "Conference on Sanitary Engineering", "variant_access_point": ["Annual Conference on Sanitary Engineering"], "authorized_access_point": "Conference on Sanitary Engineering"} 1 -2023-07-08 08:18:12.467765 2023-07-08 08:18:12.467771 808645de-7768-4df3-974b-80ed555e328c {"md5": "961c76428a78ff48609518837b4da050", "pid": "95933727X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10004564-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10004564-9", "source": "GND"}], "variant_name": ["USA. Botschaft", "United States Embassy", "United States Embassy", "Embassy of the United States", "Embassy of the United States", "U.S. Embassy", "U.S. Embassy", "Amerikanische Botschaft", "Amerikanische Botschaft"], "preferred_name": "USA. Embassy", "country_associated": "xxu", "variant_access_point": ["USA. Botschaft. Haiti", "United States Embassy. Haiti", "United States Embassy. Port-au-Prince", "Embassy of the United States. Haiti", "Embassy of the United States. Port-au-Prince", "U.S. Embassy. Haiti", "U.S. Embassy. Port-au-Prince", "Amerikanische Botschaft. Haiti", "Amerikanische Botschaft. Port-au-Prince"], "authorized_access_point": "USA. Embassy. Haiti"} 1 -2023-07-08 08:18:12.556621 2023-07-08 08:18:12.556629 14a618ed-b4f6-4293-9d9d-4d56c33780a9 {"md5": "b5cba57c4afc95d11938608bb5a8febc", "pid": "959433953", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10005076-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10005076-1", "source": "GND"}], "preferred_name": "Progymnasium und Höhere Bürgerschule", "date_of_termination": "1871", "authorized_access_point": "Progymnasium und Höhere Bürgerschule. Bochum"} 1 -2023-07-08 08:18:12.643574 2023-07-08 08:18:12.643582 d68ca76a-a490-438d-8e17-71fa094e2941 {"md5": "10c64c3e0b5d5152af8954f9eb04205c", "pid": "959524215", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10006445-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10006445-0", "source": "GND"}], "preferred_name": "Katholischer Fürsorgeverein Johannesstift", "authorized_access_point": "Katholischer Fürsorgeverein Johannesstift"} 1 -2023-07-08 08:18:12.727138 2023-07-08 08:18:12.727143 d6eb2b8d-7c14-4edf-86c7-ab12e6823188 {"md5": "b74e014928996818db3781fec4f07d73", "pid": "959547916", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10006715-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10006715-3", "source": "GND"}], "variant_name": ["Wehrkreis", "Deutsches Reich. Wehrkreiskommando, 7", "Wehrkreiskommando"], "preferred_name": "Deutsches Reich. Wehrkreis, 7", "variant_access_point": ["Wehrkreis. Deutsches Reich, 7", "Deutsches Reich. Wehrkreiskommando, 7", "Wehrkreiskommando. Deutsches Reich, 7"], "authorized_access_point": "Deutsches Reich. Wehrkreis, 7"} 1 -2023-07-08 08:18:12.818208 2023-07-08 08:18:12.818211 f04ad956-4a6f-4d47-bdf6-97ce7b602500 {"md5": "5716a264e6bf12691b60cf2ae580a3ad", "pid": "959585605", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10007235-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10007235-5", "source": "GND"}], "variant_name": ["Exhibition Eva & Adele. Logo. Mediaplastic, Wings, Lingerie"], "preferred_name": "Ausstellung Eva & Adele. Logo. Mediaplastic, Wings, Lingerie", "country_associated": "gw", "variant_access_point": ["Exhibition Eva & Adele. Logo. Mediaplastic, Wings, Lingerie, 2000 - 2001, Saarbrücken u.a."], "authorized_access_point": "Ausstellung Eva & Adele. Logo. Mediaplastic, Wings, Lingerie, 2000 - 2001, Saarbrücken u.a."} 1 -2023-07-08 08:18:12.902444 2023-07-08 08:18:12.902453 78465a6b-0b0a-49fc-987f-8986748a4e95 {"md5": "fb5b7ae0dbcbecaf68ec5781ed71958d", "pid": "959713697", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10007827-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10007827-8", "source": "GND"}], "preferred_name": "Verein zur Hebung der Leipziger Theaterzustände", "authorized_access_point": "Verein zur Hebung der Leipziger Theaterzustände"} 1 -2023-07-08 08:18:13.016122 2023-07-08 08:18:13.016129 13b5fa3c-d382-40e2-b4b5-18a217cd52d8 {"md5": "c5116f0a6d204ab592b442347270151c", "pid": "959734708", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10008370-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10008370-5", "source": "GND"}], "preferred_name": "Industrie-Design-Tag, 2", "country_associated": "sz", "authorized_access_point": "Industrie-Design-Tag, 2, 2000, Langenthal"} 1 -2023-07-08 08:18:13.188386 2023-07-08 08:18:13.188389 72fadeb8-d6bb-45c1-b578-3b4856a3eeb4 {"md5": "e8b5e23751774e1499acf4868b8e6f37", "pid": "960094873", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10010715-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10010715-1", "source": "GND"}], "variant_name": ["Deposit Insurance Corporation", "NDIC"], "preferred_name": "Nigeria Deposit Insurance Corporation", "country_associated": "nr", "variant_access_point": ["Deposit Insurance Corporation. Nigeria", "NDIC. Abkuerzung"], "date_of_establishment": "1988", "authorized_access_point": "Nigeria Deposit Insurance Corporation"} 1 -2023-07-08 08:18:13.265733 2023-07-08 08:18:13.265739 93d74b14-9bd9-4405-ade4-2fc17353772b {"md5": "d4d04b5397c664290e41778ce31752aa", "pid": "960193812", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/3046562-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3046562-X", "source": "GND"}], "variant_name": ["AG der Beratungs- und Koordinierungsstellen"], "preferred_name": "Arbeitsgemeinschaft der Beratungs- und Koordinierunsstellen", "country_associated": "gw", "variant_access_point": ["AG der Beratungs- und Koordinierungsstellen. Mainz"], "authorized_access_point": "Arbeitsgemeinschaft der Beratungs- und Koordinierunsstellen. Mainz"} 1 -2023-07-08 08:18:13.360047 2023-07-08 08:18:13.360056 23053482-221e-4cda-b513-335ab21bb745 {"md5": "95a976043f1125c4e6b7a7a3c68d4ec7", "pid": "960331077", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5500582-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5500582-2", "source": "GND"}], "preferred_name": "Organisten-Verband Baselland", "country_associated": "sz", "authorized_access_point": "Organisten-Verband Baselland"} 1 -2023-07-08 08:18:13.450015 2023-07-08 08:18:13.450019 8f03ec89-f43b-4783-a478-079387b7c2ac {"md5": "1985ded78310243864c67e074b4e160b", "pid": "960331166", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5500591-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5500591-3", "source": "GND"}], "preferred_name": "Congreso Internacional de Caminería Hispánica, 3", "country_associated": "mx", "authorized_access_point": "Congreso Internacional de Caminería Hispánica, 3, 1996, Morelia"} 1 -2023-07-08 08:18:13.565801 2023-07-08 08:18:13.565808 db4fb231-ffc3-48bf-9b1d-567a6236f386 {"md5": "f197859cd927bff1cfa62b78bbeceaa1", "pid": "960373527", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10013218-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10013218-2", "source": "GND"}], "variant_name": ["SOLARIS"], "preferred_name": "SOLARIS-Sonnenenergie, SolarstromvertriebsgesmbH", "country_associated": "gw", "variant_access_point": ["SOLARIS. Abkuerzung"], "authorized_access_point": "SOLARIS-Sonnenenergie, SolarstromvertriebsgesmbH. Hamburg"} 1 -2023-07-08 08:18:13.664091 2023-07-08 08:18:13.664095 25c72508-5ba0-42c8-96f8-655307be3936 {"md5": "15d3fbed8546962c31e222e25d5f023d", "pid": "960554440", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1242268-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1242268-X", "source": "GND"}], "variant_name": ["Oopperajuhlaorkesteri", "Savonlinna Opera Festival Orchestra", "Opera Festival Orchestra"], "preferred_name": "Savonlinnan Oopperajuhlaorkesteri", "country_associated": "fi", "variant_access_point": ["Oopperajuhlaorkesteri. Savonlinna", "Savonlinna Opera Festival Orchestra", "Opera Festival Orchestra. Savonlinna"], "authorized_access_point": "Savonlinnan Oopperajuhlaorkesteri"} 1 -2023-07-08 08:18:13.746454 2023-07-08 08:18:13.746459 b3688400-9ae2-4c33-841b-0acc1ab4a70b {"md5": "635098f61ce7ae91d2270e7aed62ee5c", "pid": "96055646X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1242636-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1242636-2", "source": "GND"}], "variant_name": ["International Festival Renascence of Belarusian Capella, 3", "Mižnarodny Festyval Adradz̆ėnne Belaruskaj Kapėly", "International Festival Renascence of Belarusian Capella"], "preferred_name": "Mižnarodny Festyval' Adradžėnne Belaruskaj Kapėly, 3", "variant_access_point": ["International Festival Renascence of Belarusian Capella, 3, 1993, Minsk", "Mižnarodny Festyval Adradz̆ėnne Belaruskaj Kapėly, 1993, Minsk", "International Festival Renascence of Belarusian Capella, 1993, Minsk"], "authorized_access_point": "Mižnarodny Festyval' Adradžėnne Belaruskaj Kapėly, 3, 1993, Minsk", "biographical_information": ["Festival für Neue Musik"]} 1 -2023-07-08 08:18:13.863513 2023-07-08 08:18:13.863517 a7b8849c-0cc5-4eb7-b4a0-7c88d16ff572 {"md5": "0b10438e7e3d38626c4f62051550d0b8", "pid": "96056814X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1703416-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1703416-4", "source": "GND"}], "variant_name": ["Athletiksport-Club", "Athletiksport-Klub", "KAC", "Klagenfurter Athletiksport-Klub", "Klagenfurter Athletik-Club", "1. Fußballklub Klagenfurt", "1. Fußball- und Athletiksportklub Klagenfurt"], "preferred_name": "Klagenfurter Athletiksport-Club", "country_associated": "au", "variant_access_point": ["Athletiksport-Club. Klagenfurt", "Athletiksport-Klub. Klagenfurt", "KAC. Abkuerzung", "Klagenfurter Athletiksport-Klub", "Klagenfurter Athletik-Club", "1. Fußballklub Klagenfurt", "1. Fußball- und Athletiksportklub Klagenfurt"], "authorized_access_point": "Klagenfurter Athletiksport-Club", "biographical_information": ["Sportverein, gegr. 1909; unter diesem Namen seit 1920; im Laufe der Zeit 19 Sektionen, 2009: 7 Sektionen"]} 1 -2023-07-08 08:18:13.948114 2023-07-08 08:18:13.948119 b7118cf4-e32b-4230-aad8-b2231cfbda86 {"md5": "0538a5d48875e280f9a3efb02fdcc95b", "pid": "960574298", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1800893-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1800893-8", "source": "GND"}], "preferred_name": "International Conference on Multiphase Production, 7", "country_associated": "fr", "authorized_access_point": "International Conference on Multiphase Production, 7, 1995, Cannes"} 1 -2023-07-08 08:18:14.939946 2023-07-08 08:18:14.93995 f77392e4-ce39-473f-92b6-86afcff65b96 {"md5": "3e88170e82b1948d3f8b3a74c117a434", "pid": "961071435", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5507545-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5507545-9", "source": "GND"}], "preferred_name": "International Conference on Hyperfine Interactions, 11", "country_associated": "sa", "authorized_access_point": "International Conference on Hyperfine Interactions, 11, 1998, Durban"} 1 -2023-07-08 08:18:14.051084 2023-07-08 08:18:14.051089 63da095f-b790-44eb-bab0-02c212bc7799 {"md5": "a1945e65406b1daf0a49a81a82cf03d5", "pid": "960693785", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10014331-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10014331-3", "source": "GND"}], "variant_name": ["Ex Convento del Padiglione S. Maria degli Angeli a Pizzofalcone"], "preferred_name": "Convento di Santa Maria degli Angeli a Pizzofalcone", "country_associated": "it", "variant_access_point": ["Ex Convento del Padiglione S. Maria degli Angeli a Pizzofalcone. Neapel"], "authorized_access_point": "Convento di Santa Maria degli Angeli a Pizzofalcone. Neapel"} 1 -2023-07-08 08:18:14.148242 2023-07-08 08:18:14.148249 73e76437-c94c-4713-84aa-5281a10c3edf {"md5": "0e3b90a9d38391fe69c4cb7b95afcbb4", "pid": "960722157", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10015714-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10015714-2", "source": "GND"}], "variant_name": ["Postwertzeichenausstellung"], "preferred_name": "Rhein-Ruhr-Posta", "country_associated": "gw", "variant_access_point": ["Postwertzeichenausstellung, 2000, Soest"], "authorized_access_point": "Rhein-Ruhr-Posta, 2000, Soest"} 1 -2023-07-08 08:18:14.221708 2023-07-08 08:18:14.221712 dd2d9d5e-f268-41b7-84ae-86c3b377c8de {"md5": "aa2ef7a312529082d0c6904f72fe3946", "pid": "960794093", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5503164-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5503164-X", "source": "GND"}], "variant_name": ["Analitičeskij Centr Strategija", "Gumanitarnyj i politologičeskij centr Strategija"], "preferred_name": "Gumanitarnyj i Politologičeskij Centr Strategija", "country_associated": "ru", "variant_access_point": ["Analitičeskij Centr Strategija. Moskau", "Gumanitarnyj i politologičeskij centr Strategija. Moskva"], "authorized_access_point": "Gumanitarnyj i Politologičeskij Centr Strategija. Moskau"} 1 -2023-07-08 08:18:14.297721 2023-07-08 08:18:14.297727 3b3f0486-b23b-4a3b-9fe1-55f0ae1cc91d {"md5": "04d7d94b50dd5ad22a7b59d5435f9fb2", "pid": "960796878", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5503436-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5503436-6", "source": "GND"}], "preferred_name": "Curso de Atualização Sobre Sistemas de Exploração Transporte Florestal", "country_associated": "bl", "authorized_access_point": "Curso de Atualização Sobre Sistemas de Exploração Transporte Florestal, 1977, Curitiba"} 1 -2023-07-08 08:18:14.397711 2023-07-08 08:18:14.397716 46125b76-b6d7-4b86-9693-13bedbaa76e7 {"md5": "4d67d0ed3302e728a3999047f8ce66b9", "pid": "960807128", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5504419-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5504419-0", "source": "GND"}], "preferred_name": "Tagung Von der Entspannung über Körpererfahrung zu Heil(s)versprechen - Grenzbereiche der Gesundheitsbildung", "country_associated": "gw", "authorized_access_point": "Tagung Von der Entspannung über Körpererfahrung zu Heil(s)versprechen - Grenzbereiche der Gesundheitsbildung, 1993, Leinfelden-Echterdingen"} 1 -2023-07-08 08:18:14.482537 2023-07-08 08:18:14.482543 229fc343-c98e-4287-bd20-ccd23226c7a0 {"md5": "96cb9a85586a21e9c47757ff720f1616", "pid": "960812989", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5504967-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5504967-9", "source": "GND"}], "variant_name": ["Academia Republicii Populare Române. Institutul de Cercetări Economice", "Institutul de cercetări economice al Academiei R.P.R."], "preferred_name": "Institutul de Cercetări Economice", "country_associated": "rm", "variant_access_point": ["Academia Republicii Populare Române. Institutul de Cercetări Economice", "Institutul de cercetări economice al Academiei R.P.R.. Unveraenderte Form"], "authorized_access_point": "Institutul de Cercetări Economice. Bukarest"} 1 -2023-07-08 08:18:14.572721 2023-07-08 08:18:14.572724 407b5c73-f37d-4ee5-96b9-2fa690bf7e02 {"md5": "ea6fa92f009db3127a1cf16dcd18f6cd", "pid": "960819177", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5505579-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5505579-5", "source": "GND"}], "preferred_name": "Ecomuseo della Montagna Pistoiese", "country_associated": "it", "date_of_establishment": "1990", "authorized_access_point": "Ecomuseo della Montagna Pistoiese"} 1 -2023-07-08 08:18:14.648258 2023-07-08 08:18:14.648263 6a90ef05-f1c1-45f8-aab7-656d14024aba {"md5": "fc1d77ab05f24909318c1d2bf8518e9d", "pid": "960819541", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5505617-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5505617-9", "source": "GND"}], "variant_name": ["Ensemble Cantaton"], "preferred_name": "Cantaton", "country_associated": "gw", "variant_access_point": ["Ensemble Cantaton. Erbach, Odenwald"], "authorized_access_point": "Cantaton. Erbach, Odenwald"} 1 -2023-07-08 08:18:14.7444 2023-07-08 08:18:14.74441 8f42a19c-ddb1-418f-827e-16ac8cd0bf35 {"md5": "c9df7df7508ee7fe7300c82eef926244", "pid": "960823271", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5505987-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5505987-9", "source": "GND"}], "preferred_name": "Schaumkunststoff-Tagung, 19", "country_associated": "gw", "authorized_access_point": "Schaumkunststoff-Tagung, 19, 1999, Wiesbaden"} 1 -2023-07-08 08:18:14.833365 2023-07-08 08:18:14.833371 88233f3a-d9a0-407c-b0ed-0aa2093589a2 {"md5": "6b836ba847e332f82d571b0c3e88c261", "pid": "960928995", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/3047504-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3047504-1", "source": "GND"}], "variant_name": ["Fachkonferenz Naturwissenschaftliche Methoden in der Archäologie"], "preferred_name": "Konference Přírodovědecké Metody v Archeologii", "variant_access_point": ["Fachkonferenz Naturwissenschaftliche Methoden in der Archäologie, 1998, Kravsko"], "authorized_access_point": "Konference Přírodovědecké Metody v Archeologii, 1998, Kravsko"} 1 -2023-07-08 08:18:16.743919 2023-07-08 08:18:16.743929 420ea1e4-3122-4018-b42e-f2d2a1459b8c {"md5": "7e7f43c7a605a173ddfdd40ab6ef2f2c", "pid": "961646969", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5518293-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5518293-8", "source": "GND"}], "preferred_name": "Geistliche Woche", "authorized_access_point": "Geistliche Woche, 1983, Mannheim"} 1 -2023-07-08 08:18:15.022928 2023-07-08 08:18:15.022937 e17bbae8-ad06-41c5-93d6-6fcd906c6fde {"md5": "985099459e595d1648b494d336cf16dc", "pid": "96107177X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5507579-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5507579-4", "source": "GND"}], "preferred_name": "Ausstellung Henry Moore", "country_associated": "gw", "authorized_access_point": "Ausstellung Henry Moore, 1960, Hamburg"} 1 -2023-07-08 08:18:15.116305 2023-07-08 08:18:15.116311 c5c0b6fe-dc7c-47f6-8a30-ca37bf9ebfa0 {"md5": "344480867c0771d70dd1645008ee43f7", "pid": "961077816", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5508188-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5508188-5", "source": "GND"}], "preferred_name": "Woodstock Gallery", "country_associated": "xxk", "authorized_access_point": "Woodstock Gallery. London", "biographical_information": ["IDA: 00"]} 1 -2023-07-08 08:18:15.217614 2023-07-08 08:18:15.217618 e8d1f00f-cd7f-4c12-acaf-e01c313ec3ac {"md5": "02e61f86e7a315a2cae8e52907aeaa5a", "pid": "961083387", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5508769-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5508769-3", "source": "GND"}], "variant_name": ["Stinnes-Rheinreedereien"], "preferred_name": "Vereinigte Stinnes-Rheinreedereien", "country_associated": "gw", "variant_access_point": ["Stinnes-Rheinreedereien"], "authorized_access_point": "Vereinigte Stinnes-Rheinreedereien"} 1 -2023-07-08 08:18:15.295321 2023-07-08 08:18:15.295326 3dfff138-f3dd-46de-b48f-fdf407dc2c01 {"md5": "a9d2a71fa12d706fb80aa6d6488a175b", "pid": "961086882", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5509092-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5509092-8", "source": "GND"}], "variant_name": ["Sachsen. Kassen-Billetts-Kommission", "Cassen-Billets-Commission", "Kassen-Billetts-Kommission", "Churfürstlich Sächsische Cassen-Billets-Commission", "Kurfürstlich Sächsische Kassen-Billetts-Kommission", "Churfürstliche Sächsische Cassen-Billets-Commission"], "preferred_name": "Sachsen. Cassen-Billets-Commission", "variant_access_point": ["Sachsen. Kassen-Billetts-Kommission", "Cassen-Billets-Commission. Sachsen", "Kassen-Billetts-Kommission. Sachsen", "Churfürstlich Sächsische Cassen-Billets-Commission", "Kurfürstlich Sächsische Kassen-Billetts-Kommission", "Churfürstliche Sächsische Cassen-Billets-Commission"], "authorized_access_point": "Sachsen. Cassen-Billets-Commission"} 1 -2023-07-08 08:18:15.400215 2023-07-08 08:18:15.400224 f0731174-7c2d-40c8-ac04-23ecf8ed20de {"md5": "cae8b3b3edcd6d7bd52e292a303a2d14", "pid": "961106565", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5511131-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5511131-2", "source": "GND"}], "preferred_name": "Congrès Colonial National, 3", "country_associated": "be", "authorized_access_point": "Congrès Colonial National, 3, 1930, Brüssel"} 1 -2023-07-08 08:18:15.485769 2023-07-08 08:18:15.485772 7775208e-efe1-4bb5-a0e8-f5305507480a {"md5": "88803698ef448a3d8d55b88bd8383d28", "pid": "961106646", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5511139-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5511139-7", "source": "GND"}], "variant_name": ["Die Skeptiker"], "preferred_name": "Die Skeptiker", "variant_access_point": ["Die Skeptiker. Unveraenderte Form"], "date_of_establishment": "2006", "authorized_access_point": "Die Skeptiker. Musikgruppe", "biographical_information": ["Punkband um Sänger Eugen Balanskat"]} 1 -2023-07-08 08:18:15.564004 2023-07-08 08:18:15.564011 84ab6a4a-7128-4056-951e-e960d7fc5f6f {"md5": "078985ac72c66c1fb5e78ac3d29a1dcb", "pid": "961106840", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5511159-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5511159-2", "source": "GND"}], "variant_name": ["Kurt Koch GmbH", "Schnitzschule Kurt Koch GmbH", "Kurt Koch"], "preferred_name": "Schnitzer-Zentrum Koch", "country_associated": "gw", "variant_access_point": ["Kurt Koch GmbH", "Schnitzschule Kurt Koch GmbH", "Kurt Koch. Firma"], "authorized_access_point": "Schnitzer-Zentrum Koch. Eulenbis"} 1 -2023-07-08 08:18:15.653899 2023-07-08 08:18:15.653904 5f2cc4b0-cf18-4442-a6d5-e56d3b3d3263 {"md5": "30e91c1ee2339ad15a786ad438000912", "pid": "961293950", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5511755-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5511755-7", "source": "GND"}], "variant_name": ["German Heritage Society"], "preferred_name": "German Heritage Society", "country_associated": "xxu", "variant_access_point": ["German Heritage Society. Greater Washington, DC"], "authorized_access_point": "German Heritage Society. Washington, DC"} 1 -2023-07-08 08:18:15.748393 2023-07-08 08:18:15.748398 f5190b24-9dcf-4213-b7b3-201a9e5f2110 {"md5": "8b4b1962f315c1db881e155e3cb1790e", "pid": "961300515", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5512358-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5512358-2", "source": "GND"}], "variant_name": ["Arbeitsgruppe Hygiene bei der Biologischen Abfallbehandlung", "Abwassertechnische Vereinigung. Arbeitsgruppe", "ATV-Arbeitsgruppe Hygiene bei der biologischen Abfallbehandlung", "Abwassertechnische Vereinigung. Fachausschuss Behandlung Biogener Abfälle. Arbeitsgruppe Hygiene bei der Biologischen Abfallbehandlung", "Abwassertechnische Vereinigung. Fachausschuss Behandlung biogener Abfälle. Arbeitsgruppe", "ATV-Arbeitsgruppe"], "preferred_name": "Abwassertechnische Vereinigung. Arbeitsgruppe Hygiene bei der Biologischen Abfallbehandlung", "country_associated": "gw", "variant_access_point": ["Arbeitsgruppe Hygiene bei der Biologischen Abfallbehandlung", "Abwassertechnische Vereinigung. Arbeitsgruppe. 3 14 1", "ATV-Arbeitsgruppe Hygiene bei der biologischen Abfallbehandlung", "Abwassertechnische Vereinigung. Fachausschuss Behandlung Biogener Abfälle. Arbeitsgruppe Hygiene bei der Biologischen Abfallbehandlung", "Abwassertechnische Vereinigung. Fachausschuss Behandlung biogener Abfälle. Arbeitsgruppe. 3 14 1", "ATV-Arbeitsgruppe. 3 14 1"], "authorized_access_point": "Abwassertechnische Vereinigung. Arbeitsgruppe Hygiene bei der Biologischen Abfallbehandlung"} 1 -2023-07-08 08:18:15.849089 2023-07-08 08:18:15.849092 8b7b2388-c413-4819-8f1d-56a84c3206fe {"md5": "bb8f59b8a56cbee1d2d2fea4511b3aa3", "pid": "961328495", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5515026-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5515026-3", "source": "GND"}], "variant_name": ["Stadtkirche Sankt Dionys", "Evangelische Stadtkirche Sankt Dionys", "Stadtkirche St. Dionys", "Ev. Stadtkirche Esslingen", "Evangelische Stadtkirche Esslingen", "Evangelische Stadtkirche", "Stadtkirche"], "preferred_name": "Evangelische Stadtkirche St. Dionys", "country_associated": "gw", "variant_access_point": ["Stadtkirche Sankt Dionys. Esslingen am Neckar", "Evangelische Stadtkirche Sankt Dionys. Esslingen am Neckar", "Stadtkirche St. Dionys. Esslingen am Neckar", "Ev. Stadtkirche Esslingen. Unveraenderte Form", "Evangelische Stadtkirche Esslingen. Unveraenderte Form", "Evangelische Stadtkirche. Esslingen am Neckar", "Stadtkirche. Esslingen am Neckar"], "authorized_access_point": "Evangelische Stadtkirche St. Dionys. Esslingen am Neckar"} 1 -2023-07-08 08:18:15.946209 2023-07-08 08:18:15.946217 9cfe5b01-d930-45c9-adda-89f52a1ee9c3 {"md5": "bcebd140144a598869d22b503599e6ac", "pid": "961329653", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5515142-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5515142-5", "source": "GND"}], "preferred_name": "Escola d'Estiu del País Valencia, 2", "country_associated": "sp", "authorized_access_point": "Escola d'Estiu del País Valencia, 2, 1977, Valencia"} 1 -2023-07-08 08:18:16.035026 2023-07-08 08:18:16.035029 bb26bed1-c574-4237-ae2f-488171843aec {"md5": "0028581a04aaae4f4fe7c2eea338c4e3", "pid": "961333065", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5515474-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5515474-8", "source": "GND"}], "variant_name": ["Arid Lands Conference"], "preferred_name": "National Arid Lands Conference", "country_associated": "at", "variant_access_point": ["Arid Lands Conference, 1981, Broken Hill"], "authorized_access_point": "National Arid Lands Conference, 1982, Broken Hill"} 1 -2023-07-08 08:18:16.128253 2023-07-08 08:18:16.128261 ccf01d54-1455-4efc-82c4-74b8e21d7199 {"md5": "779993acd736ad57561362d9bf14e384", "pid": "961337893", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5515942-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5515942-4", "source": "GND"}], "preferred_name": "Demon", "authorized_access_point": "Demon", "biographical_information": ["All Music Guide: Rockgruppe, ohne Nationalitätsang."]} 1 -2023-07-08 08:18:16.218916 2023-07-08 08:18:16.218922 9be18d26-83ae-459a-87b9-67c43f434b0d {"md5": "9e4b540a1e8872c75abf0966cbf93a6f", "pid": "961342153", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10017516-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10017516-8", "source": "GND"}], "preferred_name": "Kaufmännische Fortbildungsschule", "authorized_access_point": "Kaufmännische Fortbildungsschule. Steyr"} 1 -2023-07-08 08:18:16.304799 2023-07-08 08:18:16.304808 86a61c8e-54b1-4788-b187-d183906374e0 {"md5": "284aab318305f4e9c5bf0724140784f9", "pid": "961397047", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1244781-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1244781-X", "source": "GND"}], "variant_name": ["Welt-Bildungs-Forum"], "preferred_name": "World Education Forum", "country_associated": "sg", "variant_access_point": ["Welt-Bildungs-Forum, 2000, Dakar"], "authorized_access_point": "World Education Forum, 2000, Dakar"} 1 -2023-07-08 08:18:16.401098 2023-07-08 08:18:16.401104 de30d831-0535-4354-a7f4-31ac5ae91f18 {"md5": "08962499a72e4c3d12c235cb815cbfdc", "pid": "961400803", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10018102-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10018102-8", "source": "GND"}], "variant_name": ["PDS-Kreisverband"], "preferred_name": "Partei des Demokratischen Sozialismus. Kreisverband", "country_associated": "gw", "variant_access_point": ["PDS-Kreisverband. Torgau; Oschatz"], "authorized_access_point": "Partei des Demokratischen Sozialismus. Kreisverband. Torgau; Oschatz"} 1 -2023-07-08 08:18:16.490011 2023-07-08 08:18:16.490025 936081ca-b6c9-405f-85f8-b64392151c6b {"md5": "5152ab62d9533fc6c0d3e7bdc0a96a0f", "pid": "961589809", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10018660-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10018660-9", "source": "GND"}], "preferred_name": "An Post", "country_associated": "ie", "date_of_establishment": "1984", "authorized_access_point": "An Post. Dublin", "biographical_information": ["Limited company"]} 1 -2023-07-08 08:18:16.582353 2023-07-08 08:18:16.582358 fff9bbbc-2b6a-4ee0-ab6c-c07e2fa6c534 {"md5": "738aab7c5b954b6181048089c03bcee6", "pid": "961631171", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/4637897-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4637897-2", "source": "GND"}], "variant_name": ["Ch'uang-tsao-she", "Schöpferische Gesellschaft", "Creation Society", "Chuangzao-She", "Chuangzaoshe"], "preferred_name": "Chuang zao she", "country_associated": "cc", "date_of_termination": "1929", "variant_access_point": ["Ch'uang-tsao-she", "Schöpferische Gesellschaft", "Creation Society", "Chuangzao-She", "Chuangzaoshe"], "date_of_establishment": "1921", "parallel_access_point": ["創造社. 上海"], "authorized_access_point": "Chuang zao she", "biographical_information": ["Chines. literar. Gesellschaft (1921-1929)"]} 1 -2023-07-08 08:18:16.671386 2023-07-08 08:18:16.671401 0e343b9a-f1aa-4d79-8dc2-ae07e1579ea6 {"md5": "924e8639514b275a9cafa9b0b936b99e", "pid": "961636270", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5517299-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5517299-4", "source": "GND"}], "variant_name": ["Colloque Européen de Micropaléontologie, 14"], "preferred_name": "European Micropaleontological Colloquium Romania, 14", "country_associated": "rm", "variant_access_point": ["Colloque Européen de Micropaléontologie, 14, 1975, Bukarest"], "authorized_access_point": "European Micropaleontological Colloquium Romania, 14, 1975, Bukarest"} 1 -2023-07-08 08:18:16.833924 2023-07-08 08:18:16.833929 7ce228e7-c464-4149-b6ae-013908736719 {"md5": "6ded30c3435d68137b3e8fe835051c08", "pid": "961652276", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5518815-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5518815-1", "source": "GND"}], "preferred_name": "Exhibition of Books, Woodcuts, and Illustrated Leaves Printed between 1455 and 1555", "country_associated": "xxu", "authorized_access_point": "Exhibition of Books, Woodcuts, and Illustrated Leaves Printed between 1455 and 1555, 1998 - 1999, New Brunswick, NJ"} 1 -2023-07-08 08:18:16.923755 2023-07-08 08:18:16.923763 9c2c3aaa-e803-4ac3-ba9c-26b27a9cf93f {"md5": "6a0d11dcaee96378115bf86a50f0cf33", "pid": "961659645", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5519553-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5519553-2", "source": "GND"}], "preferred_name": "Microprocessor Seminar", "country_associated": "xxu", "authorized_access_point": "Microprocessor Seminar, 1984, Palm Springs, Calif."} 1 -2023-07-08 08:18:17.002399 2023-07-08 08:18:17.002405 12d11a7e-9ed0-4808-beed-2aa80233b479 {"md5": "409f512541554303047869e307587432", "pid": "961729155", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10022194-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10022194-4", "source": "GND"}], "preferred_name": "Deutsche Kongresstage der Wohnungswirtschaft", "authorized_access_point": "Deutsche Kongresstage der Wohnungswirtschaft"} 1 -2023-07-08 08:18:17.088903 2023-07-08 08:18:17.088907 bb2c9d44-4022-4b60-87d3-f1c47cb712a7 {"md5": "232a321c21822e769e65d0149e2d9320", "pid": "961784334", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5520557-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5520557-4", "source": "GND"}], "preferred_name": "Comitato Virginia Oldoini Contessa di Castiglione", "country_associated": "it", "authorized_access_point": "Comitato Virginia Oldoini Contessa di Castiglione"} 1 -2023-07-08 08:18:17.176057 2023-07-08 08:18:17.176069 ce425853-e35e-442b-bbe6-dcc22f536d1f {"md5": "d7e988c9e25cac52e590268ed8a469ad", "pid": "961792426", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5521367-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5521367-4", "source": "GND"}], "preferred_name": "Holzenergie-Symposium, 6", "country_associated": "sz", "authorized_access_point": "Holzenergie-Symposium, 6, 2000, Zürich"} 1 -2023-07-08 08:18:17.265874 2023-07-08 08:18:17.26588 6d538267-f938-400a-9f41-53084a5e4bd4 {"md5": "12be573f6afbf3dadbda1a9f10941460", "pid": "961797568", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5521876-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5521876-3", "source": "GND"}], "variant_name": ["Bezirksfachausschuss Schmierungstechnik"], "preferred_name": "Kammer der Technik. Bezirksverband Karl-Marx-Stadt. Bezirksfachausschuss Schmierungstechnik", "variant_access_point": ["Bezirksfachausschuss Schmierungstechnik. Karl-Marx-Stadt"], "authorized_access_point": "Kammer der Technik. Bezirksverband Karl-Marx-Stadt. Bezirksfachausschuss Schmierungstechnik"} 1 -2023-07-08 08:18:17.355529 2023-07-08 08:18:17.355537 6c25e9c7-0dc2-4309-b8f0-f58c828af067 {"md5": "ccc5450d9636ad8921494e709483d33e", "pid": "961798025", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5521922-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5521922-6", "source": "GND"}], "preferred_name": "Exhibition Japan. Towards Totalscape, Contemporary Japanese Architecture, Urban Design and Landscape", "country_associated": "ne", "authorized_access_point": "Exhibition Japan. Towards Totalscape, Contemporary Japanese Architecture, Urban Design and Landscape, 2000 - 2001, Rotterdam"} 1 -2023-07-08 08:18:17.451035 2023-07-08 08:18:17.451041 53d084ef-9966-4112-920c-f78a2efc0005 {"md5": "b3e82d56f7bb3af8dab1fd26d46ad901", "pid": "962037141", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5523011-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5523011-8", "source": "GND"}], "preferred_name": "Markaz Wasāʾil al-Īḍāḥ. Qism al-Iršād az-Zirāʿī", "country_associated": "iq", "authorized_access_point": "Markaz Wasāʾil al-Īḍāḥ. Bagdad. Qism al-Iršād az-Zirāʿī"} 1 -2023-07-08 08:18:17.567602 2023-07-08 08:18:17.567608 9cf9df0a-ccdf-47df-bda7-f19c1a639150 {"md5": "a87243d85fa27ff4a0929c9f1262bed4", "pid": "962243477", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1245804-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1245804-1", "source": "GND"}], "preferred_name": "Musikverein", "country_associated": "gw", "authorized_access_point": "Musikverein. Wittislingen"} 1 -2023-07-08 08:18:17.650113 2023-07-08 08:18:17.650117 67473607-aaff-423e-9e80-e418ce9b2d3f {"md5": "ad6ab3cad05d7b6bed761ee793b9d01f", "pid": "962251968", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1704727-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1704727-4", "source": "GND"}], "variant_name": ["Katholische Kirchengemeinde", "Katholische Gemeinde", "Katholische Pfarrgemeinde", "Pfarrei", "Sankt Johannis", "St. Johannis", "Pfarrei St. Johannis", "Pfarrei Sankt Johannis. Rothenburg ob der Tauber", "Pfarrei Sankt Johannis", "Katholische Kirchengemeinde Rothenburg ob der Tauber", "Kuratie Rothenburg", "Sankt Johannis"], "preferred_name": "Pfarrei Sankt Johannis", "country_associated": "gw", "variant_access_point": ["Katholische Kirchengemeinde. Rothenburg ob der Tauber", "Katholische Gemeinde. Rothenburg ob der Tauber", "Katholische Pfarrgemeinde. Rothenburg ob der Tauber", "Pfarrei. Pfarrei Sankt Johannis, Rothenburg, Tauber", "Sankt Johannis. Rothenburg ob der Tauber", "St. Johannis. Rothenburg ob der Tauber", "Pfarrei St. Johannis. Rothenburg ob der Tauber", "Pfarrei Sankt Johannis. Rothenburg ob der Tauber", "Pfarrei Sankt Johannis", "Katholische Kirchengemeinde Rothenburg ob der Tauber", "Kuratie Rothenburg", "Sankt Johannis. Rothenburg, Tauber . Ehemalige Vorzugsbenennung SWD"], "authorized_access_point": "Pfarrei Sankt Johannis. Rothenburg ob der Tauber", "biographical_information": ["1803 als Kuratie errichtet, ab 1893 Pfarrei"]} 1 -2023-07-08 08:18:17.75188 2023-07-08 08:18:17.751885 1adb9982-ad17-45ab-90cc-2199cbb45b63 {"md5": "0c9b25b5e739fca7f540d2e565de31e7", "pid": "96233359X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6025876-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6025876-7", "source": "GND"}], "preferred_name": "Workshop Intelligente Softwareagenten und Betriebswirtschaftliche Anwendungsszenarien", "authorized_access_point": "Workshop Intelligente Softwareagenten und Betriebswirtschaftliche Anwendungsszenarien, 1999, Ilmenau"} 1 -2023-07-08 08:18:17.841052 2023-07-08 08:18:17.841059 95489e59-5043-406a-a1de-516e94461802 {"md5": "8515b37a1b0a8d1a92baf9aba99e6d38", "pid": "962390097", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10026614-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10026614-9", "source": "GND"}], "variant_name": ["Departamento de Hacienda y Administración Pública", "Baskenland. Gobierno. Departamento de Hacienda y Administración Pública", "Baskenland. Ogasun eta Herri Administrazio Saila", "Baskenland. Gobierno. Ogasun eta Herri Administrazio Saila", "Ogasun eta Herri Administrazio Saila"], "preferred_name": "Baskenland. Departamento de Hacienda y Administración Pública", "country_associated": "sp", "variant_access_point": ["Departamento de Hacienda y Administración Pública. Baskenland, Spanien", "Baskenland. Spanien. Gobierno. Departamento de Hacienda y Administración Pública", "Baskenland. Spanien. Ogasun eta Herri Administrazio Saila", "Baskenland. Spanien. Gobierno. Ogasun eta Herri Administrazio Saila", "Ogasun eta Herri Administrazio Saila. Baskenland, Spanien"], "authorized_access_point": "Baskenland. Spanien. Departamento de Hacienda y Administración Pública"} 1 -2023-07-08 08:18:17.942367 2023-07-08 08:18:17.942376 4b249c65-0e6f-4c0d-b477-bab49389c43a {"md5": "cac20342a9aa6f50ebfeb56190ebe56d", "pid": "962446440", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6008987-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6008987-8", "source": "GND"}], "variant_name": ["Zahnradkonferenz, 2"], "preferred_name": "Fogaskerék Konferencia, 2", "country_associated": "hu", "variant_access_point": ["Zahnradkonferenz, 2, 1969, Budapest"], "authorized_access_point": "Fogaskerék Konferencia, 2, 1969, Budapest"} 1 -2023-07-08 08:18:18.047974 2023-07-08 08:18:18.047982 9549e6fb-2f89-4740-9960-a38a9c827f35 {"md5": "751d81ab86c9f2288fe8de3ebee798a3", "pid": "962450170", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6009422-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6009422-9", "source": "GND"}], "variant_name": ["Symposium pour la Mise au Point d'Industries à Sable Dégré De, 1", "LPPSD Symposium, 1"], "preferred_name": "Symposium on Low Pollution Power Systems Development, 1", "country_associated": "xxu", "variant_access_point": ["Symposium pour la Mise au Point d'Industries à Sable Dégré De, 1, 1973, Ann Arbor, Mich.", "LPPSD Symposium, 1, 1973, Ann Arbor, Mich."], "authorized_access_point": "Symposium on Low Pollution Power Systems Development, 1, 1973, Ann Arbor, Mich."} 1 -2023-07-08 08:18:18.142611 2023-07-08 08:18:18.14262 738e00d2-48f9-4d22-a9d3-b7a4fa107e99 {"md5": "45f28b9ba4a27821df683c5a67edb542", "pid": "962470929", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6011800-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6011800-3", "source": "GND"}], "variant_name": ["ISSC, 3"], "preferred_name": "International Ship Structures Congress, 3", "country_associated": "no", "variant_access_point": ["ISSC, 3, 1967, Oslo"], "authorized_access_point": "International Ship Structures Congress, 3, 1967, Oslo"} 1 -2023-07-08 08:18:18.249285 2023-07-08 08:18:18.249291 2357a8cf-1a93-4ce6-9ac9-6fba3bbfb5f6 {"md5": "4e92137a309a973fd52a6a791b6b762b", "pid": "96247357X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6012122-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6012122-1", "source": "GND"}], "variant_name": ["US Japan Seminar on Earthquake Prediction, 7", "US-Japan Seminar on Earthquake Prediction, 7"], "preferred_name": "Seminar on Earthquake Prediction, 7", "country_associated": "xxu", "variant_access_point": ["US Japan Seminar on Earthquake Prediction, 7, 1988, Morro Bay, Calif.", "US-Japan Seminar on Earthquake Prediction, 7, 1988, Morro Bay, Calif."], "authorized_access_point": "Seminar on Earthquake Prediction, 7, 1988, Morro Bay, Calif."} 1 -2023-07-08 08:18:18.342396 2023-07-08 08:18:18.342405 8ee73108-df0c-4acc-995f-889c3a027f3d {"md5": "2f5bbca50794a1cbef91ff04f6c69fc8", "pid": "962498726", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6015028-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6015028-2", "source": "GND"}], "variant_name": ["Optimization Days Mini-Conference, 5", "OD Mini-Conference, 5", "OD Mini Conference, 5"], "preferred_name": "Optimization Days Mini Conference, 5", "country_associated": "at", "variant_access_point": ["Optimization Days Mini-Conference, 5, 1998, Perth, Western Australia", "OD Mini-Conference, 5, 1998, Perth, Western Australia", "OD Mini Conference, 5, 1998, Perth, Western Australia"], "authorized_access_point": "Optimization Days Mini Conference, 5, 1998, Perth, Western Australia"} 1 -2023-07-08 08:18:18.435526 2023-07-08 08:18:18.435531 21c61e21-8f2d-4975-adca-368e2a51b942 {"md5": "3a6a0ce5ca1444e1081eff85018c0d09", "pid": "962506168", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6015903-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6015903-0", "source": "GND"}], "variant_name": ["IP World Forum"], "preferred_name": "Intellectual Property World Forum", "country_associated": "xxu", "variant_access_point": ["IP World Forum, 1999, Santa Clara, Calif."], "authorized_access_point": "Intellectual Property World Forum, 1999, Santa Clara, Calif."} 1 -2023-07-08 08:18:18.517031 2023-07-08 08:18:18.517036 db571319-25a3-4cd1-a40a-f1a062ed8dd1 {"md5": "4e619b6e929b1baae6c0a28979d89a59", "pid": "96251716X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6017228-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6017228-9", "source": "GND"}], "variant_name": ["Eing Textilveredlung GmbH, Hubert", "Textilveredlung GmbH, Hubert Eing"], "preferred_name": "Hubert Eing Textilveredlung GmbH", "country_associated": "gw", "variant_access_point": ["Eing Textilveredlung GmbH, Hubert. Gescher", "Textilveredlung GmbH, Hubert Eing. Gescher"], "authorized_access_point": "Hubert Eing Textilveredlung GmbH. Gescher"} 1 -2023-07-08 08:18:18.614829 2023-07-08 08:18:18.614835 664d3986-8412-4062-9b02-25da4782a544 {"md5": "e613fe44899933191dba3d686c330d8c", "pid": "96252736X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6018450-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6018450-4", "source": "GND"}], "preferred_name": "IOCARIBE Users and the Global Ocean Observing System (GOOS) Capacity Building Workshop", "country_associated": "cr", "authorized_access_point": "IOCARIBE Users and the Global Ocean Observing System (GOOS) Capacity Building Workshop, 1999, San José, Costa Rica"} 1 -2023-07-08 08:18:18.714713 2023-07-08 08:18:18.714719 441d3dfc-c744-49a2-b1f4-2fd538ee6dd4 {"md5": "2e1b7622b8410238f0cd8c9624fc8e5f", "pid": "962530328", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6018803-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6018803-0", "source": "GND"}], "variant_name": ["Peiner Walzwerk", "Walzwerk"], "preferred_name": "Ilseder Hütte. Abteilung Peiner Walzwerk", "variant_access_point": ["Peiner Walzwerk. Peine", "Walzwerk. Peine"], "authorized_access_point": "Ilseder Hütte. Peine. Abteilung Peiner Walzwerk"} 1 -2023-07-08 08:18:18.791737 2023-07-08 08:18:18.791741 b0094fd6-bea3-4c31-aaef-0f471a76f63b {"md5": "d10b136198b0e0f45e56feb06570a670", "pid": "962533300", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6019141-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6019141-7", "source": "GND"}], "preferred_name": "Stadthalle", "country_associated": "gw", "authorized_access_point": "Stadthalle. Bremerhaven"} 1 -2023-07-08 08:18:18.870584 2023-07-08 08:18:18.870588 6bec7669-71e4-4f2c-9ee5-b00b9d84b681 {"md5": "c046796d771ecab04457986997b80afe", "pid": "962540196", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6019952-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6019952-0", "source": "GND"}], "variant_name": ["USA. Army. Research Laboratory. Vehicle Technology Directorate", "VTD"], "preferred_name": "USA. Army. Vehicle Technology Directorate", "country_associated": "xxu", "variant_access_point": ["USA. Army. Research Laboratory. Vehicle Technology Directorate", "VTD. Abkuerzung"], "authorized_access_point": "USA. Army. Vehicle Technology Directorate"} 1 -2023-07-08 08:18:18.96684 2023-07-08 08:18:18.966848 04c2e848-fd64-41b8-8f5a-64b043a30496 {"md5": "972f363427d0d095e29ec24d714d5330", "pid": "962545295", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6020536-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6020536-2", "source": "GND"}], "variant_name": ["CGS, 10"], "preferred_name": "International Symposium on Capture Gamma-Ray Spectroscopy and Related Topics, 10", "country_associated": "xxu", "variant_access_point": ["CGS, 10, 1999, Santa Fe, NM"], "authorized_access_point": "International Symposium on Capture Gamma-Ray Spectroscopy and Related Topics, 10, 1999, Santa Fe, NM"} 1 -2023-07-08 08:18:19.055814 2023-07-08 08:18:19.055825 edcb4d31-abbf-4c99-90f9-9988269e05b3 {"md5": "138777d41cd6fbf50c51226aff9f8c84", "pid": "962552380", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6021330-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6021330-9", "source": "GND"}], "variant_name": ["OPECE, 9"], "preferred_name": "International Conference Overvoltages in Power - Electronic - and Computer Engineering, 9", "country_associated": "pl", "variant_access_point": ["OPECE, 9, 1998, Hołny Mejera; Kaunas"], "authorized_access_point": "International Conference Overvoltages in Power - Electronic - and Computer Engineering, 9, 1998, Hołny Mejera; Kaunas"} 1 -2023-07-08 08:18:19.143982 2023-07-08 08:18:19.14399 dfa50b72-dbfa-4aa7-9cae-378864b896e5 {"md5": "866951a3f7e7364e4e5d04b841e46f49", "pid": "962552569", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6021351-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6021351-6", "source": "GND"}], "preferred_name": "Siedlungswasserwirtschaftliche Fachexkursion", "country_associated": "sa", "authorized_access_point": "Siedlungswasserwirtschaftliche Fachexkursion, 1982, Kapstadt"} 1 -2023-07-08 08:18:19.231068 2023-07-08 08:18:19.231073 03771f6d-157b-41d4-a893-66d50cbb2d41 {"md5": "af776de869712efdae31049c66b86308", "pid": "962557110", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6021874-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6021874-5", "source": "GND"}], "variant_name": ["International EFC Workshop on Microbial Corrosion, 4", "Workshop on Microbial Corrosion, 4"], "preferred_name": "International Workshop on Microbial Corrosion, 4", "country_associated": "po", "variant_access_point": ["International EFC Workshop on Microbial Corrosion, 4, 1999, Lissabon", "Workshop on Microbial Corrosion, 4, 1999, Lissabon"], "authorized_access_point": "International Workshop on Microbial Corrosion, 4, 1999, Lissabon"} 1 -2023-07-08 08:18:19.308838 2023-07-08 08:18:19.308847 8cd898c6-2787-49b4-8d64-5c1b043a2fd7 {"md5": "e452aac18e317b24cfdef5de7711c670", "pid": "962558931", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6022082-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6022082-X", "source": "GND"}], "preferred_name": "International Symposium on Food Biotechnology", "country_associated": "pl", "authorized_access_point": "International Symposium on Food Biotechnology, 1999, Zakopane"} 1 -2023-07-08 08:18:19.398286 2023-07-08 08:18:19.398293 a5a9e383-0ee8-4b87-a6dd-f91d55d8e784 {"md5": "e21444d8125df0c821f75e504d052784", "pid": "962559512", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6022144-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6022144-6", "source": "GND"}], "preferred_name": "Conference on Optical Fiber Sensors", "country_associated": "xxk", "authorized_access_point": "Conference on Optical Fiber Sensors, 2000, Glasgow"} 1 -2023-07-08 08:18:19.496364 2023-07-08 08:18:19.496369 e39c743d-052e-4c07-8d29-2fcbe6c08728 {"md5": "918365e6c17807d5c38b4a558b99eb43", "pid": "962562688", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6022508-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6022508-7", "source": "GND"}], "variant_name": ["SEAPEX Exploration Conference", "SEAPEX Silver Jubilee Conference"], "preferred_name": "Exploration Conference", "country_associated": "si", "variant_access_point": ["SEAPEX Exploration Conference, 1998, Singapur", "SEAPEX Silver Jubilee Conference, 1998, Singapur"], "authorized_access_point": "Exploration Conference, 1998, Singapur"} 1 -2023-07-08 08:18:19.583581 2023-07-08 08:18:19.583586 b2ec2a21-1bd9-4a88-984b-4a4b4a2d5d23 {"md5": "d33e75a7c6ebd1a3f0053e0305b6e325", "pid": "962582697", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6024760-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6024760-5", "source": "GND"}], "preferred_name": "International Workshop on Strategic Knowledge and Concept Formation, 2", "authorized_access_point": "International Workshop on Strategic Knowledge and Concept Formation, 2, 1999, Takizawa"} 1 -2023-07-08 08:18:19.664309 2023-07-08 08:18:19.664313 89e53ff2-c86d-4d66-8609-7a9ab3e970f9 {"md5": "57d777a099cea2d27c9ce4c18fec5963", "pid": "962587087", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6025240-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6025240-6", "source": "GND"}], "preferred_name": "Experten-Workshop Informatisierung des Lernens und der Kommunikation", "country_associated": "gw", "authorized_access_point": "Experten-Workshop Informatisierung des Lernens und der Kommunikation, 1999, Düsseldorf"} 1 -2023-07-08 08:18:19.765323 2023-07-08 08:18:19.765331 469367d3-bfc9-4e49-a032-af487693b024 {"md5": "d8342c36afa65a409c4e9b1c4714c8fc", "pid": "962615838", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6028376-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6028376-2", "source": "GND"}], "variant_name": ["Latinska Šola", "Ruška Šola", "Šola", "Schule", "School"], "preferred_name": "Ruška Latinska Šola", "date_of_termination": "1760", "variant_access_point": ["Latinska Šola. Ruše", "Ruška Šola", "Šola. Ruše", "Schule. Ruše", "School. Ruše"], "date_of_establishment": "1645", "authorized_access_point": "Ruška Latinska Šola"} 1 -2023-07-08 08:18:19.847405 2023-07-08 08:18:19.847413 27baac04-c873-4651-9d46-1f8e51199691 {"md5": "c576c23e099f82ac7f1745933c3c09b0", "pid": "962626554", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6029523-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6029523-5", "source": "GND"}], "preferred_name": "International Symposium on Free Radicals in Life Science", "country_associated": "ja", "authorized_access_point": "International Symposium on Free Radicals in Life Science, 2000, Tokio"} 1 -2023-07-08 08:18:19.924545 2023-07-08 08:18:19.924554 10c9a683-0f29-4a0a-a56c-b351ea6fc546 {"md5": "46f9047b171f9109a11b4153ba312698", "pid": "96263025X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6029918-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6029918-6", "source": "GND"}], "preferred_name": "Kongreß Embedded Intelligence, 6", "authorized_access_point": "Kongreß Embedded Intelligence, 6, 2001, Nürnberg"} 1 -2023-07-08 08:18:20.009001 2023-07-08 08:18:20.00901 03446c26-dedb-4d55-84c0-b3bf321948c7 {"md5": "e423fd9e690d3cace0a58eccc6a7b748", "pid": "962632058", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6030117-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6030117-X", "source": "GND"}], "preferred_name": "Ausstellung Kinderleben - Kinder Leben Lassen", "country_associated": "gw", "authorized_access_point": "Ausstellung Kinderleben - Kinder Leben Lassen, 1979, Hamburg"} 1 -2023-07-08 08:18:20.097056 2023-07-08 08:18:20.097061 f1f28c77-80ce-4817-bedf-184dd9deb778 {"md5": "6842e465136fe71970bc86c68f76d05f", "pid": "962637289", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6030677-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6030677-4", "source": "GND"}], "variant_name": ["Verschönerungsverein", "Verein zur Verschönerung"], "preferred_name": "Verein zur Verschönerung von Memel und Umgegend und zur Hebung des Fremdenverkehrs", "variant_access_point": ["Verschönerungsverein. Memel", "Verein zur Verschönerung. Memel"], "authorized_access_point": "Verein zur Verschönerung von Memel und Umgegend und zur Hebung des Fremdenverkehrs"} 1 -2023-07-08 08:18:20.188099 2023-07-08 08:18:20.188108 1ab60ec2-ea89-4613-aa3f-66f17d8559c7 {"md5": "73034e1712432b1ce90078ea2b9bf152", "pid": "962660914", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6033155-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6033155-0", "source": "GND"}], "preferred_name": "Kolloquium Das Französische Deutschlandbild im Europa des 17. und 18. Jahrhunderts", "country_associated": "gw", "authorized_access_point": "Kolloquium Das Französische Deutschlandbild im Europa des 17. und 18. Jahrhunderts, 1999, Marburg"} 1 -2023-07-08 08:18:20.26836 2023-07-08 08:18:20.268366 d936e336-e2ab-4a92-9680-f6ff4e74f375 {"md5": "6723996056def4307c163cc7fa931ba8", "pid": "96266734X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6033818-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6033818-0", "source": "GND"}], "variant_name": ["MMNT"], "preferred_name": "Konferencija Primenenie Matematičeskogo Modelirovanija dlja Rešenija Zadač v Nauke i Technike", "country_associated": "ru", "variant_access_point": ["MMNT, 1996, Ischewsk"], "authorized_access_point": "Konferencija Primenenie Matematičeskogo Modelirovanija dlja Rešenija Zadač v Nauke i Technike, 1996, Ischewsk"} 1 -2023-07-08 08:18:20.365218 2023-07-08 08:18:20.365224 9e643add-2015-4b06-b563-f4fef5fd62db {"md5": "3601b3f9b26cf7b531e10bf76f9fe597", "pid": "962668389", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6033931-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6033931-7", "source": "GND"}], "variant_name": ["Centre de Recherche VALIBEL", "Université catholique de Louvain. Département d'Etudes Romanes. Centre de Recherche VALIBEL", "Centre de Recherche sur les Variétés Linguistiques du Français en Belgique", "Université catholique de Louvain. Département d'Etudes Romanes. Centre de Recherche sur les Variétés Linguistiques du Français en Belgique", "VALIBEL"], "preferred_name": "Centre de Recherche sur les Variétés Linguistiques du Français en Belgique", "country_associated": "be", "variant_access_point": ["Centre de Recherche VALIBEL. Louvain-la-Neuve", "Université catholique de Louvain. Département d'Etudes Romanes. Centre de Recherche VALIBEL", "Centre de Recherche sur les Variétés Linguistiques du Français en Belgique. Ottignies-Louvain-la-Neuve", "Université catholique de Louvain. Département d'Etudes Romanes. Centre de Recherche sur les Variétés Linguistiques du Français en Belgique", "VALIBEL. Abkuerzung"], "authorized_access_point": "Centre de Recherche sur les Variétés Linguistiques du Français en Belgique. Louvain-la-Neuve"} 1 -2023-07-08 08:18:20.45583 2023-07-08 08:18:20.455836 99ea0c48-131d-4753-a93a-199ca6cee8f8 {"md5": "896bf0d5fa531aed978392dff8e8ae34", "pid": "962669881", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6034085-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6034085-X", "source": "GND"}], "preferred_name": "Colloque Le Yémen dans la Péninsule Arabique", "country_associated": "gw", "authorized_access_point": "Colloque Le Yémen dans la Péninsule Arabique, 1997, Hamburg"} 1 -2023-07-08 08:18:20.564433 2023-07-08 08:18:20.564438 51940111-69b0-4d16-a772-20b66ff32cd2 {"md5": "14dc7e4662c39a1e33fcef3a1e8542ec", "pid": "962941042", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5525499-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5525499-8", "source": "GND"}], "variant_name": ["Computer Conference"], "preferred_name": "National Computer Conference", "country_associated": "xxu", "variant_access_point": ["Computer Conference, 1982, Houston, Tex."], "authorized_access_point": "National Computer Conference, 1982, Houston, Tex."} 1 -2023-07-08 08:18:20.660121 2023-07-08 08:18:20.66013 822a39a0-a19c-4b9e-afba-3e815ca90b66 {"md5": "15700654441da149594f9459a2bdb9c7", "pid": "962948918", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5526323-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5526323-9", "source": "GND"}], "preferred_name": "Tanglewood String Symposium", "authorized_access_point": "Tanglewood String Symposium. 1964"} 1 -2023-07-08 08:18:20.740081 2023-07-08 08:18:20.740084 ec5e348a-d496-4daa-961a-667504263520 {"md5": "cb1c87be54366c16c3aee233a0749f8a", "pid": "96303409X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10029337-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10029337-2", "source": "GND"}], "variant_name": ["Museum Junkerhaus", "Junkerhaus"], "preferred_name": "Museum Junkerhaus Lemgo", "country_associated": "gw", "variant_access_point": ["Museum Junkerhaus", "Junkerhaus. Körperschaft"], "date_of_establishment": "2004", "authorized_access_point": "Museum Junkerhaus Lemgo", "biographical_information": ["Zum Museum gehören das eigentliche \\"Junkerhaus\\" und ein neues Museumsgebäude (mit Foyer und Ausstellungshalle, eröffnet 2004)"]} 1 -2023-07-08 08:18:20.815354 2023-07-08 08:18:20.815358 052684d7-1db3-4c06-87e1-46dc69517fa1 {"md5": "59d7b75a839a65fbb84154c69eb0e2a8", "pid": "963066536", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/3050483-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3050483-1", "source": "GND"}], "variant_name": ["International Symposium on the Mechanics of Hearing, 7", "Symposium Recent Developments in Auditory Mechanics, 7", "Conference on Recent Developments in Auditory Mechanics, 7"], "preferred_name": "International Symposium on Recent Developments in Auditory Mechanics", "country_associated": "ja", "variant_access_point": ["International Symposium on the Mechanics of Hearing, 7, 1999, Sendai", "Symposium Recent Developments in Auditory Mechanics, 7, 1999, Sendai", "Conference on Recent Developments in Auditory Mechanics, 7, 1999, Sendai"], "authorized_access_point": "International Symposium on Recent Developments in Auditory Mechanics, 1999, Sendai"} 1 -2023-07-08 08:18:20.905167 2023-07-08 08:18:20.905174 4f6f8fbf-e652-492c-a43e-631084247e42 {"md5": "900ed2e01d6e6db1440fb02e1f1302af", "pid": "963134205", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10030065-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10030065-0", "source": "GND"}], "variant_name": ["Europa-Union Deutschland. KV Rhein-Lahn"], "preferred_name": "Europa-Union Deutschland. Kreisverband Rhein-Lahn", "country_associated": "gw", "variant_access_point": ["Europa-Union Deutschland. KV Rhein-Lahn"], "authorized_access_point": "Europa-Union Deutschland. Kreisverband Rhein-Lahn"} 1 -2023-07-08 08:18:20.997128 2023-07-08 08:18:20.997137 4ba82f6b-016a-46a2-adfd-1592bdac7158 {"md5": "667322ceb43a8a5c0cd53c3d8acd4a77", "pid": "963138812", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1705168-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1705168-X", "source": "GND"}], "variant_name": ["International Symposium Evolution and Morphogenesis"], "preferred_name": "International Symposium on Evolution and Morphogenesis", "variant_access_point": ["International Symposium Evolution and Morphogenesis, 1984, Plzeň"], "authorized_access_point": "International Symposium on Evolution and Morphogenesis, 1984, Pilsen"} 1 -2023-07-08 08:18:21.091979 2023-07-08 08:18:21.091988 d69390af-ddf1-4206-ac20-37fa62d0d36d {"md5": "9f892aacc7e2ebce12499776e7f48d42", "pid": "963139460", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1705229-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1705229-4", "source": "GND"}], "variant_name": ["Meeting on Orders and their Applications", "Orders and their Applications"], "preferred_name": "Conference on Orders and Their Applications", "country_associated": "gw", "variant_access_point": ["Meeting on Orders and their Applications, 1984, Oberwolfach", "Orders and their Applications, 1984, Oberwolfach"], "authorized_access_point": "Conference on Orders and Their Applications, 1984, Oberwolfach"} 1 -2023-07-08 08:18:21.185153 2023-07-08 08:18:21.185164 f4936f98-7c3c-4250-b168-5194847e2227 {"md5": "67eee18fa6a01d881e28bc513562c10c", "pid": "963225332", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5528883-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5528883-2", "source": "GND"}], "variant_name": ["All-Union Conference on Radiation Chemistry, 1", "Soveščanie po Radiacionnoj Chimii, 1"], "preferred_name": "Vsesojuznoe Soveščanie po Radiacionnoj Chimii, 1", "variant_access_point": ["All-Union Conference on Radiation Chemistry, 1, 1957, Moskau", "Soveščanie po Radiacionnoj Chimii, 1, 1957, Moskau"], "authorized_access_point": "Vsesojuznoe Soveščanie po Radiacionnoj Chimii, 1, 1957, Moskau"} 1 -2023-07-08 08:18:21.276052 2023-07-08 08:18:21.276061 80ec02d4-66a7-4861-bacb-6bfa341d4056 {"md5": "927e11888881397adede4685efe54cb6", "pid": "963233599", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5529704-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5529704-3", "source": "GND"}], "variant_name": ["Eisenbau Bleichert KG", "Bleichert KG, Neusser Eisenbau"], "preferred_name": "Neusser Eisenbau Bleichert KG", "country_associated": "gw", "variant_access_point": ["Eisenbau Bleichert KG. Neuss", "Bleichert KG, Neusser Eisenbau"], "authorized_access_point": "Neusser Eisenbau Bleichert KG"} 1 -2023-07-08 08:18:21.450123 2023-07-08 08:18:21.450127 69f9a4c3-0fa7-4b05-ab1d-a74a64b3c176 {"md5": "4db437e80a4601ab17ff78f4d54196a7", "pid": "963262246", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10031214-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10031214-7", "source": "GND"}], "preferred_name": "Malteser-Hilfdienst. Kreis Göppingen", "country_associated": "gw", "authorized_access_point": "Malteser-Hilfdienst. Kreis Göppingen"} 1 -2023-07-08 08:18:21.546845 2023-07-08 08:18:21.546853 35c5b7af-6e00-4026-a372-3f101546a221 {"md5": "5b7ab8939a1fda727a0868923908216b", "pid": "963262513", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10031252-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10031252-4", "source": "GND"}], "variant_name": ["DKRT", "Krankenhausrechtstag"], "preferred_name": "Deutscher Krankenhausrechtstag", "country_associated": "gw", "variant_access_point": ["DKRT, 2000, Frankfurt, Main", "Krankenhausrechtstag, 2000, Frankfurt, Main"], "authorized_access_point": "Deutscher Krankenhausrechtstag, 2000, Frankfurt, Main"} 1 -2023-07-08 08:18:21.64929 2023-07-08 08:18:21.649294 17ea932b-e916-4ab6-a3b9-c813cafec940 {"md5": "aca061ca87cb41c2d80ebc1ac8b529c6", "pid": "963299433", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/414062-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/414062-X", "source": "GND"}], "preferred_name": "Symposion Bildung und Erziehung in einem Vereinten Europa", "country_associated": "gr", "authorized_access_point": "Symposion Bildung und Erziehung in einem Vereinten Europa, 1990, Kolymbari"} 1 -2023-07-08 08:18:21.728079 2023-07-08 08:18:21.728084 543029c8-85bb-44e5-855e-8477d1aff207 {"md5": "0fd764678ee041ae382890c40b1b8f7b", "pid": "963317040", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/402401-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/402401-1", "source": "GND"}], "variant_name": ["K.K. Staatsrealschule", "Staatsrealschule"], "preferred_name": "Kaiserlich-Königliche Staatsrealschule", "variant_access_point": ["K.K. Staatsrealschule. Pola", "Staatsrealschule. Pola"], "authorized_access_point": "Kaiserlich-Königliche Staatsrealschule. Pola"} 1 -2023-07-08 08:18:21.811246 2023-07-08 08:18:21.811257 81a36576-705d-4c36-986f-b30c04aaefd3 {"md5": "375d0dc02137b1b350075bf9dbefcee3", "pid": "963320343", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/413808-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/413808-9", "source": "GND"}], "variant_name": ["Bildungshaus Schloß Seggau", "Bildungshaus Schloß Seggau", "Katholisches Bildungshaus", "Kath. Bildungshaus"], "preferred_name": "Bildungshaus Schloß Seggau", "country_associated": "au", "variant_access_point": ["Bildungshaus Schloß Seggau", "Bildungshaus Schloß Seggau", "Katholisches Bildungshaus. Seggauberg", "Kath. Bildungshaus. Seggauberg"], "authorized_access_point": "Bildungshaus Schloß Seggau"} 1 -2023-07-08 08:18:21.914557 2023-07-08 08:18:21.914568 e49ca35d-ea1e-4628-bc17-b6d4d1921eac {"md5": "444c4527f49364a7bb33d6ce3d2f4e3d", "pid": "963327666", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/415273-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/415273-6", "source": "GND"}], "preferred_name": "Opel Austria GmbH", "country_associated": "au", "date_of_termination": "2000", "date_of_establishment": "1994", "authorized_access_point": "Opel Austria GmbH. Wien"} 1 -2023-07-08 08:18:22.014818 2023-07-08 08:18:22.014824 3da8147f-d9db-4e0d-b568-df27f42e7101 {"md5": "a36e680d085cd89044188a293f9db060", "pid": "963329812", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/406562-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/406562-1", "source": "GND"}], "variant_name": ["Pfarre. Pfarramt", "Pfarramt", "Römisch-Katholisches Pfarramt", "Röm.-Kath. Pfarramt"], "preferred_name": "Pfarre", "country_associated": "au", "variant_access_point": ["Pfarre. Mariahof. Pfarramt", "Pfarramt. Pfarre, Mariahof", "Römisch-Katholisches Pfarramt. Pfarre, Mariahof", "Röm.-Kath. Pfarramt. Pfarre, Mariahof"], "authorized_access_point": "Pfarre. Mariahof"} 1 -2023-07-08 08:18:22.115479 2023-07-08 08:18:22.115483 767cf9d0-7d09-405a-bfd6-004721345dca {"md5": "f2a95dbc94e7d2232d54c2464549e435", "pid": "963342177", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/408131-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/408131-6", "source": "GND"}], "preferred_name": "Verein zur Führung von Wohngemeinschaften", "country_associated": "au", "authorized_access_point": "Verein zur Führung von Wohngemeinschaften"} 1 -2023-07-08 08:18:22.215624 2023-07-08 08:18:22.215629 d147f6d8-385a-4b4f-80f3-bda631681787 {"md5": "c9b11fc5965b5b23a3d8143d7f2b5c0e", "pid": "963342231", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/414537-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/414537-9", "source": "GND"}], "variant_name": ["ÖVP-Gemeindeparteileitung", "ÖVP", "ÖVP-Gemeindeparteileitung Alberndorf"], "preferred_name": "Österreichische Volkspartei. Gemeindeparteileitung", "country_associated": "au", "variant_access_point": ["ÖVP-Gemeindeparteileitung. Alberndorf, Riedmark", "ÖVP. Alberndorf, Riedmark", "ÖVP-Gemeindeparteileitung Alberndorf"], "authorized_access_point": "Österreichische Volkspartei. Gemeindeparteileitung. Alberndorf, Riedmark"} 1 -2023-07-08 08:18:22.298402 2023-07-08 08:18:22.298406 df451fbb-1e67-460a-a42a-1ce304c0f2c9 {"md5": "61df3fd1261c00959362db17bb226f3f", "pid": "963348442", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/405158-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/405158-0", "source": "GND"}], "variant_name": ["ESG"], "preferred_name": "Evangelische Studentengemeinde in Österreich", "country_associated": "au", "variant_access_point": ["ESG. Abkuerzung"], "authorized_access_point": "Evangelische Studentengemeinde in Österreich"} 1 -2023-07-08 08:18:23.411149 2023-07-08 08:18:23.411158 66e4daa1-3227-4358-8969-536c447dadb8 {"md5": "a7320969326711c2622d1d6f8cbe5459", "pid": "963859811", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1404177-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1404177-7", "source": "GND"}], "variant_name": ["Dairy Conference"], "preferred_name": "National Dairy Conference", "country_associated": "ie", "variant_access_point": ["Dairy Conference, 1999, Limerick"], "authorized_access_point": "National Dairy Conference, 1999, Limerick"} 1 -2023-07-08 08:18:22.405315 2023-07-08 08:18:22.405324 e91c6c0e-9209-465a-a666-ea9e9d23923f {"md5": "be702c69430be3868a2faf2e12dbb437", "pid": "963366785", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/404464-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/404464-2", "source": "GND"}], "variant_name": ["Kammer der Gewerblichen Wirtschaft für Oberösterreich. Betriebsgründungsservice", "Betriebsgründungsservice der Handelskammer Oberösterreich", "BGS"], "preferred_name": "Kammer der Gewerblichen Wirtschaft für Oberösterreich. Referat Betriebsgründungsservice", "variant_access_point": ["Kammer der Gewerblichen Wirtschaft für Oberösterreich. Betriebsgründungsservice", "Betriebsgründungsservice der Handelskammer Oberösterreich", "BGS. Abkuerzung"], "authorized_access_point": "Kammer der Gewerblichen Wirtschaft für Oberösterreich. Referat Betriebsgründungsservice"} 1 -2023-07-08 08:18:22.49148 2023-07-08 08:18:22.491488 30b9160f-cbab-4b73-a8aa-b86168a02819 {"md5": "c7113ccbd7b970a608f40e7360c40ad0", "pid": "963367781", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/406407-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/406407-0", "source": "GND"}], "preferred_name": "Sparkasse", "country_associated": "au", "authorized_access_point": "Sparkasse. Kufstein"} 1 -2023-07-08 08:18:22.577414 2023-07-08 08:18:22.577418 b4f5c394-a10e-4b4e-b723-bf345a064d81 {"md5": "0388b2fd77381c3609241398ccecabb7", "pid": "963388673", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/405225-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/405225-0", "source": "GND"}], "preferred_name": "Kulturverein für Ödenburg und Umgebung", "country_associated": "gw", "authorized_access_point": "Kulturverein für Ödenburg und Umgebung"} 1 -2023-07-08 08:18:22.683535 2023-07-08 08:18:22.683545 b6dd513c-41d3-4570-95a1-932ffc81d231 {"md5": "685e6333989b36d0e4ae7f7a6b91632f", "pid": "963410849", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/411496-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/411496-6", "source": "GND"}], "preferred_name": "Wirtschaftssymposium", "authorized_access_point": "Wirtschaftssymposium, 1990, Salzburg"} 1 -2023-07-08 08:18:22.766773 2023-07-08 08:18:22.766779 0121df35-e5f6-4c51-8fc6-f428058ed6c6 {"md5": "09087875c4e56d7369096df774c9eca4", "pid": "963529137", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5530204-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5530204-X", "source": "GND"}], "variant_name": ["Agendabüro"], "preferred_name": "Kaiserslautern. Amt für Umwelt. Agendabüro", "country_associated": "gw", "variant_access_point": ["Agendabüro. Kaiserslautern"], "authorized_access_point": "Kaiserslautern. Amt für Umwelt. Agendabüro"} 1 -2023-07-08 08:18:22.866734 2023-07-08 08:18:22.866745 416a47d4-dc3e-402c-9f5d-7d7afb188c79 {"md5": "eb8adc74b9cfede5f2a4c4ca8d7cf705", "pid": "963600346", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10032613-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10032613-4", "source": "GND"}], "preferred_name": "Armada - Werke Ludwig Michael", "country_associated": "sz", "date_of_establishment": "1987", "authorized_access_point": "Armada - Werke Ludwig Michael. Basel"} 1 -2023-07-08 08:18:22.96679 2023-07-08 08:18:22.966797 00078892-aa9d-42e4-abb2-52544e6b3c0d {"md5": "f019c82999fd4158e5c80b5afe3d1858", "pid": "96365778X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10032790-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10032790-4", "source": "GND"}], "variant_name": ["SPVS", "SPVS", "S.P.V.S.", "Society for Practising Veterinary Surgeons"], "preferred_name": "Society of Practising Veterinary Surgeons", "country_associated": "xxk", "variant_access_point": ["SPVS. Abkuerzung", "SPVS. Society of Practising Veterinary Surgeons", "S.P.V.S.. Society of Practising Veterinary Surgeons", "Society for Practising Veterinary Surgeons"], "authorized_access_point": "Society of Practising Veterinary Surgeons"} 1 -2023-07-08 08:18:23.060364 2023-07-08 08:18:23.060372 b0282d61-bb71-43f2-b845-f133b53ec207 {"md5": "7ed3838733e1c504b020c08d624b79ef", "pid": "963822977", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5531007-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5531007-2", "source": "GND"}], "preferred_name": "Congresso Nacional e Internacional de Parapsicologia e Medicina, 1", "country_associated": "bl", "authorized_access_point": "Congresso Nacional e Internacional de Parapsicologia e Medicina, 1, 1976, São Paulo"} 1 -2023-07-08 08:18:23.166424 2023-07-08 08:18:23.166428 ec06e7d7-085b-4d93-bc08-fe03a85ffeb3 {"md5": "117b381438cdfe6ad64ae106e1f6375b", "pid": "963823388", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5531050-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5531050-3", "source": "GND"}], "preferred_name": "Editions du Centre Paul Hymans", "country_associated": "be", "authorized_access_point": "Editions du Centre Paul Hymans. Brüssel"} 1 -2023-07-08 08:18:23.245348 2023-07-08 08:18:23.245352 e62afedd-92a1-4503-872e-bef2492f5cda {"md5": "45798473d001a8f50243188ee9f3bad7", "pid": "963837532", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10033656-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10033656-5", "source": "GND"}], "variant_name": ["Arbeitskreis Sicherheit & Rettung", "AKSR"], "preferred_name": "Verband der Deutschen Höhlen- und Karstforscher. Arbeitskreis Sicherheit & Rettung", "country_associated": "gw", "variant_access_point": ["Arbeitskreis Sicherheit & Rettung", "AKSR. Abkuerzung"], "authorized_access_point": "Verband der Deutschen Höhlen- und Karstforscher. Arbeitskreis Sicherheit & Rettung"} 1 -2023-07-08 08:18:23.319573 2023-07-08 08:18:23.319579 3a002d77-4837-4129-8075-047a7b86083a {"md5": "182ef1034515ed7287a1c30313d58271", "pid": "963859803", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1404176-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1404176-5", "source": "GND"}], "variant_name": ["Garrett, R. und Sohn", "Richard Garrett & Sons", "R. Garrett et fils", "Richard Garrett et fils"], "preferred_name": "R. Garrett und Sohn", "country_associated": "xxk", "variant_access_point": ["Garrett, R. und Sohn. Saxmundham", "Richard Garrett & Sons. Saxmundham", "R. Garrett et fils. Saxmundham", "Richard Garrett et fils. Saxmundham"], "authorized_access_point": "R. Garrett und Sohn. Saxmundham"} 1 -2023-07-08 08:18:23.512707 2023-07-08 08:18:23.512716 060804bb-1ed4-4b5a-b958-954c0781c79f {"md5": "5aa7708a32af2c8260bb8e494e17db61", "pid": "964213427", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/4681506-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4681506-5", "source": "GND"}], "variant_name": ["Deutsche Sozialisten SP Cleveland, Ohio", "German Socialists SP Cleveland, Ohio", "Vereinigte Deutsche Sozialisten Clevelands", "Sozialistische Partei der Vereinigten Staaten von Amerika. Deutsche Sozialisten Cleveland, Ohio", "Sozialistische Arbeiter-Partei Amerikas. Sektion Cleveland, Ohio", "Verein der Sozialisten Cleveland, Ohio"], "preferred_name": "Deutsche Sozialisten Cleveland, Ohio", "country_associated": "xxu", "variant_access_point": ["Deutsche Sozialisten SP Cleveland, Ohio", "German Socialists SP Cleveland, Ohio", "Vereinigte Deutsche Sozialisten Clevelands", "Sozialistische Partei der Vereinigten Staaten von Amerika. Deutsche Sozialisten Cleveland, Ohio", "Sozialistische Arbeiter-Partei Amerikas. Sektion Cleveland, Ohio", "Verein der Sozialisten Cleveland, Ohio"], "authorized_access_point": "Deutsche Sozialisten Cleveland, Ohio", "biographical_information": ["Lokale Sektion der Sozialist. Partei der Vereinigten Staaten von Amerika, übewiegend deutschstämmige Mitglieder"]} 1 -2023-07-08 08:18:23.586642 2023-07-08 08:18:23.586652 61bb7b13-3816-4cdc-8fc3-8504e284f018 {"md5": "381338f59429dc33a67723f05b6bd852", "pid": "964214407", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/4681519-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4681519-3", "source": "GND"}], "variant_name": ["Hermandad de la Penas de San Vicente", "Hermandad de las Penas de San Vicente. Sevilla", "Hermandad de las Penas", "Hermandad y Cofradía de Nazarenos de Nuestro Padre Jesús de las Penas y María Santísima de los Dolores", "Penas de San Vicente"], "preferred_name": "Hermandad de Nuestro Padre Jesús de las Penas y María Santísima de los Dolores", "country_associated": "sp", "variant_access_point": ["Hermandad de la Penas de San Vicente", "Hermandad de las Penas de San Vicente. Sevilla", "Hermandad de las Penas", "Hermandad y Cofradía de Nazarenos de Nuestro Padre Jesús de las Penas y María Santísima de los Dolores", "Penas de San Vicente"], "authorized_access_point": "Hermandad de Nuestro Padre Jesús de las Penas y María Santísima de los Dolores", "biographical_information": ["Gegr. 1875 in d. Pfarrkirche San Vicente Mártir"]} 1 -2023-07-08 08:18:23.686628 2023-07-08 08:18:23.686634 5d6a5018-0ba8-4122-a625-bc5142bff05b {"md5": "2976a0609c715c982de8e33b8c5413f6", "pid": "964225581", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10036735-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10036735-5", "source": "GND"}], "preferred_name": "Sportgemeinde Bettringen 1885. Fußballabteilung", "country_associated": "gw", "authorized_access_point": "Sportgemeinde Bettringen 1885. Fußballabteilung", "biographical_information": ["gegr. 1926"]} 1 -2023-07-08 08:18:23.76625 2023-07-08 08:18:23.766255 78e4db9b-41ca-4429-85af-f0318b5c7403 {"md5": "8979dc6da7f15ea7a46572d8f7327486", "pid": "964319020", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/3051823-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3051823-4", "source": "GND"}], "preferred_name": "Aktiengesellschaft zur Erbauung Billiger Wohnungen", "country_associated": "gw", "date_of_establishment": "1897", "authorized_access_point": "Aktiengesellschaft zur Erbauung Billiger Wohnungen. Worms"} 1 -2023-07-08 08:18:23.862445 2023-07-08 08:18:23.862454 49f4eee2-cd1e-4753-a5a4-9915ec6aa4dd {"md5": "72c076736a63cefe19c698f7dbb4bb31", "pid": "964322153", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1246477-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1246477-6", "source": "GND"}], "variant_name": ["Šiauliu̜ Valstybinis Kamerinis Choras Polifonija", "Šiauliai State Chamber Choir", "State Chamber Choir"], "preferred_name": "Polifonija", "country_associated": "li", "variant_access_point": ["Šiauliu̜ Valstybinis Kamerinis Choras Polifonija", "Šiauliai State Chamber Choir", "State Chamber Choir. Šiauliai"], "authorized_access_point": "Polifonija. Šiauliai"} 1 -2023-07-08 08:18:23.950978 2023-07-08 08:18:23.950983 40b73ffa-5f62-4b18-bef9-b4970860e911 {"md5": "41bc34ec023edb532c6d0e86db7c5c08", "pid": "964379473", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10037697-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10037697-6", "source": "GND"}], "variant_name": ["Komisja Prehistorii Karpat"], "preferred_name": "Polska Akademia Umieje̜tności. Komisja Prehistorii Karpat", "country_associated": "pl", "variant_access_point": ["Komisja Prehistorii Karpat. Krakau"], "authorized_access_point": "Polska Akademia Umieje̜tności. Krakau. Komisja Prehistorii Karpat"} 1 -2023-07-08 08:18:24.048393 2023-07-08 08:18:24.048401 d6eb10b4-7a3a-4da4-8cb2-141f3e533f6a {"md5": "170a8ea00aaf8edd28cca481a96717fc", "pid": "964421984", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10038153-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10038153-4", "source": "GND"}], "preferred_name": "Symposion Terminologie und Recht", "country_associated": "gw", "authorized_access_point": "Symposion Terminologie und Recht, 2000, Köln"} 1 -2023-07-08 08:18:24.123729 2023-07-08 08:18:24.123737 50f0c4a8-3bc6-48ff-b14a-8e460920f5b7 {"md5": "8372720b92fafb87ef6cc9ffe5c4e793", "pid": "964495376", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10038373-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10038373-7", "source": "GND"}], "variant_name": ["DFV-Städteforum"], "preferred_name": "Städteforum", "variant_access_point": ["DFV-Städteforum, 1997, Hannover"], "authorized_access_point": "Städteforum, 1997, Hannover"} 1 -2023-07-08 08:18:24.214496 2023-07-08 08:18:24.2145 2d92d1d2-fc53-43e8-a075-ba7397f9ba75 {"md5": "a6d4a69e9a01c6003c5948a4ba692568", "pid": "964501090", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5534045-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5534045-3", "source": "GND"}], "preferred_name": "West-Ost-Schau Deutscher Grafik, 2", "authorized_access_point": "West-Ost-Schau Deutscher Grafik, 2, 1957, Rudolstadt"} 1 -2023-07-08 08:18:24.294211 2023-07-08 08:18:24.294215 2576d166-39a2-45bf-a9d1-092a480b3e16 {"md5": "4cb63d5e7f47c3d1757a7d7f7b637f7f", "pid": "964564491", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10039245-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10039245-3", "source": "GND"}], "variant_name": ["Tübinger Wahrnehmungskonferenz, 5", "Wahrnehmungskonferenz, 5"], "preferred_name": "TWK, 5", "country_associated": "gw", "variant_access_point": ["Tübinger Wahrnehmungskonferenz, 5, 2002, Tübingen", "Wahrnehmungskonferenz, 5, 2002, Tübingen"], "authorized_access_point": "TWK, 5, 2002, Tübingen"} 1 -2023-07-08 08:18:24.381393 2023-07-08 08:18:24.381397 e6085e10-3a47-420c-b7b9-faec63d9adec {"md5": "ad0f21d2fef56ad9010f456e2629e1c4", "pid": "964647222", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10039630-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10039630-6", "source": "GND"}], "variant_name": ["IADC SPE Drilling Conference"], "preferred_name": "Drilling Conference", "country_associated": "xxu", "variant_access_point": ["IADC SPE Drilling Conference, 1990, Houston, Tex."], "authorized_access_point": "Drilling Conference, 1990, Houston, Tex."} 1 -2023-07-08 08:18:24.470145 2023-07-08 08:18:24.470148 8613c249-b307-43a8-99d1-f7a9abab1698 {"md5": "490089a6edd7627def943543bf9bb49d", "pid": "964653613", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5534534-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5534534-7", "source": "GND"}], "variant_name": ["Consejo de la Crónica de la Ciudad de México"], "preferred_name": "Mexiko. Consejo de la Crónica de la Ciudad de México", "country_associated": "mx", "variant_access_point": ["Consejo de la Crónica de la Ciudad de México"], "date_of_establishment": "1987", "authorized_access_point": "Mexiko. Stadt. Consejo de la Crónica de la Ciudad de México"} 1 -2023-07-08 08:18:24.564344 2023-07-08 08:18:24.56435 89be7fe0-9696-4ef4-a8d3-e171c33c03fb {"md5": "32d138f1740f58b10762b70a4de788b7", "pid": "964715619", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10040298-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10040298-7", "source": "GND"}], "variant_name": ["Institute for Urban School Improvement"], "preferred_name": "National Institute for Urban School Improvement", "country_associated": "xxu", "variant_access_point": ["Institute for Urban School Improvement. Newton, Mass."], "authorized_access_point": "National Institute for Urban School Improvement. Newton, Mass."} 1 -2023-07-08 08:18:24.65904 2023-07-08 08:18:24.659049 4442ffd0-a521-4045-ac32-0174a6a246b4 {"md5": "a5577eac847f1671c5b7a88843954c16", "pid": "964855380", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5535962-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5535962-0", "source": "GND"}], "variant_name": ["AAMB", "AAMB", "Association des amis de Marius Borgeaud", "AAMB"], "preferred_name": "Association des Amis de Marius Borgeaud", "country_associated": "fr", "variant_access_point": ["AAMB. Abkuerzung", "AAMB. Association des Amis de Marius Borgeaud", "Association des amis de Marius Borgeaud", "AAMB. Association des amis de Marius Borgeaud"], "date_of_establishment": "1993", "authorized_access_point": "Association des Amis de Marius Borgeaud"} 1 -2023-07-08 08:18:24.746031 2023-07-08 08:18:24.746035 e22bbc68-a8b9-4ab9-b50f-9e976605ec22 {"md5": "9d22681b40fa290a4dd90153b724c761", "pid": "964861135", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5536511-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5536511-5", "source": "GND"}], "variant_name": ["Computational Fluid Dynamics Committee"], "preferred_name": "American Society of Mechanical Engineers. Computational Fluid Dynamics Committee", "country_associated": "xxu", "variant_access_point": ["Computational Fluid Dynamics Committee"], "authorized_access_point": "American Society of Mechanical Engineers. Computational Fluid Dynamics Committee"} 1 -2023-07-08 08:18:24.844701 2023-07-08 08:18:24.844709 45b93224-2cf6-4183-9b75-1d70589d0818 {"md5": "ecec0808f20f3679f1177785eeef3c1f", "pid": "96503545X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10042695-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10042695-5", "source": "GND"}], "preferred_name": "Ausstellung Die Vielen Gesichter des Robert Crumb", "country_associated": "au", "authorized_access_point": "Ausstellung Die Vielen Gesichter des Robert Crumb, 2002 - 2003, Krems an der Donau"} 1 -2023-07-08 08:18:24.949972 2023-07-08 08:18:24.94998 b087db54-efc5-4cd1-8db6-4bce0d06608c {"md5": "59ef32e9059638d4f957f38badfd3233", "pid": "965091961", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10043225-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10043225-6", "source": "GND"}], "variant_name": ["Bureau for Academic Mobility", "BAMO"], "preferred_name": "Büro für Akademische Mobilität", "country_associated": "au", "variant_access_point": ["Bureau for Academic Mobility. Wien", "BAMO. Abkuerzung"], "authorized_access_point": "Büro für Akademische Mobilität. Wien"} 1 -2023-07-08 08:18:25.034603 2023-07-08 08:18:25.034608 229d27b7-231b-4a53-8e57-3cdecd515e12 {"md5": "7ea393c8b9befcb1f88ee0980b8c96fd", "pid": "965120449", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10043197-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10043197-5", "source": "GND"}], "preferred_name": "Jardín Zoologico", "country_associated": "cl", "authorized_access_point": "Jardín Zoologico. Chillán Viejo"} 1 -2023-07-08 08:18:25.120981 2023-07-08 08:18:25.120984 3606661b-897f-400d-a3c8-2dca38656467 {"md5": "9c3c5cf6485ca813a7f527003c77e61e", "pid": "965135217", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5537472-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5537472-4", "source": "GND"}], "variant_name": ["Symposium on Silastic Vaginal Devices"], "preferred_name": "Brook Lodge Symposium on Silastic Vaginal Devices", "country_associated": "xxu", "variant_access_point": ["Symposium on Silastic Vaginal Devices, 1976, Augusta, Mich."], "authorized_access_point": "Brook Lodge Symposium on Silastic Vaginal Devices, 1976, Augusta, Mich."} 1 -2023-07-08 08:18:25.218471 2023-07-08 08:18:25.218476 c141b46f-be14-4d56-8434-e92699428406 {"md5": "fc806b2ebb1531eaabf84974312cfb28", "pid": "965175251", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10043402-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10043402-2", "source": "GND"}], "variant_name": ["Biblioteca Nacional. Centro Nacional de Documentación Científica, Técnica y Económica"], "preferred_name": "Centro Nacional de Documentación Científica, Técnica y Económica", "country_associated": "uy", "variant_access_point": ["Biblioteca Nacional. Montevideo. Centro Nacional de Documentación Científica, Técnica y Económica"], "authorized_access_point": "Centro Nacional de Documentación Científica, Técnica y Económica. Montevideo"} 1 -2023-07-08 08:18:25.310855 2023-07-08 08:18:25.31086 309ec9e5-5685-45c6-a61e-e676e54f7097 {"md5": "f806951e43e77ec55706859051ffec2a", "pid": "965321827", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10044190-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10044190-7", "source": "GND"}], "preferred_name": "Musée des Alpilles", "country_associated": "fr", "date_of_establishment": "1919", "authorized_access_point": "Musée des Alpilles. Saint-Rémy-de-Provence"} 1 -2023-07-08 08:18:25.380052 2023-07-08 08:18:25.380056 fa72d658-0309-4c55-942f-5d0059abd097 {"md5": "0bc3d2caf74f4cc36e5dbfd14459c07c", "pid": "965330842", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5538475-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5538475-4", "source": "GND"}], "variant_name": ["European Space Research Organization. Division des Affaires Juridiques, contractuelles et Internationales"], "preferred_name": "European Space Research Organization. Legal, Contractual and International Affairs Division", "variant_access_point": ["European Space Research Organization. Division des Affaires Juridiques, contractuelles et Internationales"], "authorized_access_point": "European Space Research Organization. Legal, Contractual and International Affairs Division"} 1 -2023-07-08 08:18:25.453328 2023-07-08 08:18:25.453334 4b8a8a93-2781-43da-83fb-151be29dad74 {"md5": "8f997c59fb99816b937cc3663f00361e", "pid": "965868915", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10048532-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10048532-7", "source": "GND"}], "variant_name": ["Stadtwerke Lutherstadt Wittenberg"], "preferred_name": "Stadtwerke", "country_associated": "gw", "variant_access_point": ["Stadtwerke Lutherstadt Wittenberg"], "date_of_establishment": "1991", "authorized_access_point": "Stadtwerke. Wittenberg", "biographical_information": ["GmbH"]} 1 -2023-07-08 08:18:25.54478 2023-07-08 08:18:25.544787 d6038ba2-4d2c-44f7-9ba2-e609b190a7ef {"md5": "37bddaa1615b9ec4d373edff2df4475a", "pid": "966048636", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10049287-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10049287-3", "source": "GND"}], "variant_name": ["Moses-Retrospektive"], "preferred_name": "Stefan-Moses-Retrospektive", "variant_access_point": ["Moses-Retrospektive, 2002 - 2005, München u.a."], "authorized_access_point": "Stefan-Moses-Retrospektive, 2002 - 2005, München u.a."} 1 -2023-07-08 08:18:25.638427 2023-07-08 08:18:25.638436 e4ffa96e-1aeb-4403-86ef-b8e1f07a123b {"md5": "66295c823428d817b5740e40ff3aeddb", "pid": "966525892", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10051778-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10051778-X", "source": "GND"}], "variant_name": ["Subregional Meeting of National Coordinators for Laboratory Containment of Wild Polioviruses"], "preferred_name": "Subregional Meeting of National Coordinators for Laboratory Containment of Wild Polioviruses", "country_associated": "au", "variant_access_point": ["Subregional Meeting of National Coordinators for Laboratory Containment of Wild Polioviruses, 2001, Vienna"], "authorized_access_point": "Subregional Meeting of National Coordinators for Laboratory Containment of Wild Polioviruses, 2001, Wien"} 1 -2023-07-08 08:18:25.741028 2023-07-08 08:18:25.741032 e3fafd24-32de-43db-b71c-b5eb5c77b721 {"md5": "2c5c186c414533fc7d8f2fa619739de1", "pid": "966552997", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10051541-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10051541-1", "source": "GND"}], "variant_name": ["Staatliche Akademie der Bildenden Künste Stuttgart. Studiengang Industrie-Design"], "preferred_name": "Staatliche Akademie der Bildenden Künste Stuttgart. Studiengang Industrial Design", "country_associated": "gw", "variant_access_point": ["Staatliche Akademie der Bildenden Künste Stuttgart. Studiengang Industrie-Design"], "authorized_access_point": "Staatliche Akademie der Bildenden Künste Stuttgart. Studiengang Industrial Design"} 1 -2023-07-08 08:18:25.846783 2023-07-08 08:18:25.846787 4ec6738e-f422-4d59-b0da-a508d9cf4aec {"md5": "f30e11351361942fac941576bc4ce76b", "pid": "966574982", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10052076-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10052076-5", "source": "GND"}], "variant_name": ["Gregori Bezzola - Ordnung Exhibition"], "preferred_name": "Ausstellung Gregori Bezzola - Ordnung", "country_associated": "sz", "variant_access_point": ["Gregori Bezzola - Ordnung Exhibition, 2001, Chur"], "authorized_access_point": "Ausstellung Gregori Bezzola - Ordnung, 2001, Chur"} 1 -2023-07-08 08:18:25.955321 2023-07-08 08:18:25.955329 baf760f7-febf-4653-b09f-b385cfeb273f {"md5": "66621b5b6748da463af093eae55e6c77", "pid": "967972817", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10058535-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10058535-8", "source": "GND"}], "variant_name": ["Hochschule für Angewandte Wissenschaften Hamburg. Fachbereich Bibliothek und Information. Studiengang Mediendokumentation"], "preferred_name": "Hochschule für Angewandte Wissenschaften Hamburg. Studiengang Mediendokumentation", "country_associated": "gw", "variant_access_point": ["Hochschule für Angewandte Wissenschaften Hamburg. Fachbereich Bibliothek und Information. Studiengang Mediendokumentation"], "authorized_access_point": "Hochschule für Angewandte Wissenschaften Hamburg. Studiengang Mediendokumentation"} 1 -2023-07-08 08:18:26.026643 2023-07-08 08:18:26.026647 a0ee90a2-aede-4069-8a8e-7e81516bba42 {"md5": "9548908e53abcc6f38e60e87b11a91c5", "pid": "968070191", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10044883-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10044883-5", "source": "GND"}], "variant_name": ["KDD, 7", "ACM SIGKDD International Conference on Knowledge Discovery and Data Mining, 7"], "preferred_name": "International Conference on Knowledge Discovery and Data Mining, 7", "country_associated": "xxu", "variant_access_point": ["KDD, 7, 2001, San Francisco, Calif.", "ACM SIGKDD International Conference on Knowledge Discovery and Data Mining, 7, 2001, San Francisco, Calif."], "authorized_access_point": "International Conference on Knowledge Discovery and Data Mining, 7, 2001, San Francisco, Calif."} 1 -2023-07-08 08:18:26.132281 2023-07-08 08:18:26.132287 ab41910b-3001-4c11-862d-dd0c377f1623 {"md5": "c08ee94a66032c9b12c7e564a74179af", "pid": "968095615", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10045348-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10045348-X", "source": "GND"}], "preferred_name": "Verein zur Förderung Germanischer Einwanderung", "country_associated": "ag", "authorized_access_point": "Verein zur Förderung Germanischer Einwanderung", "biographical_information": ["Sitz: Buenos Airos"]} 1 -2023-07-08 08:18:26.232055 2023-07-08 08:18:26.232062 f53529e5-7d70-4544-95ea-d03662205674 {"md5": "d125b7aee7f4918197f6f0f39705ba17", "pid": "968111521", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10048155-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10048155-3", "source": "GND"}], "variant_name": ["Arbeiter- und Soldatenrat, Borkum"], "preferred_name": "Borkum. Arbeiter- und Soldatenrat", "country_associated": "gw", "variant_access_point": ["Arbeiter- und Soldatenrat, Borkum"], "authorized_access_point": "Borkum. Arbeiter- und Soldatenrat"} 1 -2023-07-08 08:18:26.305209 2023-07-08 08:18:26.305213 3fb82df5-16dc-4ef7-bb69-c5d247cecfbe {"md5": "ad8553b7d0661d4dff4d204147ee430f", "pid": "968131786", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1246711-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1246711-X", "source": "GND"}], "variant_name": ["PGPB", "Primorskaja Gosudarstvennaja Publičnaja Biblioteka Im. A. M. Gor'kogo"], "preferred_name": "Primorskaja Gosudarstvennaja Publičnaja Biblioteka Im. A. M. Gor'kogo", "country_associated": "ru", "date_of_termination": "2011", "variant_access_point": ["PGPB", "Primorskaja Gosudarstvennaja Publičnaja Biblioteka Im. A. M. Gor'kogo. Ehemalige Vorzugsbenennung SWD"], "date_of_establishment": "1991", "authorized_access_point": "Primorskaja Gosudarstvennaja Publičnaja Biblioteka Im. A. M. Gor'kogo. Wladiwostok"} 1 -2023-07-08 08:18:26.382351 2023-07-08 08:18:26.382357 c8aaa684-968d-4af5-8035-260ed2f6365c {"md5": "e0bcacdcb1d74d2c11cb31c00da4e5fc", "pid": "968149766", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10053208-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10053208-1", "source": "GND"}], "variant_name": ["Fachhochschule Bonn-Rhein-Sieg. Fachbereich, 4"], "preferred_name": "Fachhochschule Bonn-Rhein-Sieg. Fachbereich Wirtschaft", "country_associated": "gw", "variant_access_point": ["Fachhochschule Bonn-Rhein-Sieg. Fachbereich, 4"], "authorized_access_point": "Fachhochschule Bonn-Rhein-Sieg. Fachbereich Wirtschaft. Rheinbach"} 1 -2023-07-08 08:18:26.484117 2023-07-08 08:18:26.48412 fbca5ecb-db54-45a0-b57f-6bd3246f14f1 {"md5": "d1097925ba6f016c10cf30d6369f48ec", "pid": "96815252X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10053684-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10053684-0", "source": "GND"}], "variant_name": ["Tagesförderstätte Mittelhof", "Bundesvereinigung Lebenshilfe für Menschen mit Geistiger Behinderung. Landesverband Rheinland-Pfalz. Tagesförderstätte Mittelhof"], "preferred_name": "Bundesvereinigung Lebenshilfe für Menschen mit Geistiger Behinderung. Tagesförderstätte Mittelhof", "country_associated": "gw", "variant_access_point": ["Tagesförderstätte Mittelhof", "Bundesvereinigung Lebenshilfe für Menschen mit Geistiger Behinderung. Landesverband Rheinland-Pfalz. Tagesförderstätte Mittelhof"], "authorized_access_point": "Bundesvereinigung Lebenshilfe für Menschen mit Geistiger Behinderung. Tagesförderstätte Mittelhof"} 1 -2023-07-08 08:18:26.561434 2023-07-08 08:18:26.561445 8f719870-af44-4a67-b940-c252129e5d70 {"md5": "b731da0772f25007fb23886ac507d9f9", "pid": "968164811", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5539390-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5539390-1", "source": "GND"}], "variant_name": ["QCDWork"], "preferred_name": "International Workshop on Quantum Chromodynamics", "variant_access_point": ["QCDWork, 2001, Martina Franca"], "authorized_access_point": "International Workshop on Quantum Chromodynamics, 2001, Martina Franca"} 1 -2023-07-08 08:18:26.652045 2023-07-08 08:18:26.65205 5d4a027f-e054-45f5-af29-a9970172accc {"md5": "efab07a2de95c076b88ee46f8ea4cdd6", "pid": "968168221", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5539752-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5539752-9", "source": "GND"}], "variant_name": ["The Carter Family"], "preferred_name": "Carter Family", "country_associated": "xxu", "date_of_termination": "1943", "variant_access_point": ["The Carter Family. Unveraenderte Form"], "date_of_establishment": "1926", "authorized_access_point": "Carter Family", "biographical_information": ["Country-Gruppe um Alvin Pleasant Delaney Carter"]} 1 -2023-07-08 08:18:26.747164 2023-07-08 08:18:26.74717 8b369140-d2aa-4b11-b478-66ec06dd8494 {"md5": "e067ca07c9f31b0dd4cb74c3249de407", "pid": "968179002", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1706700-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1706700-5", "source": "GND"}], "preferred_name": "Magyar Kereskedelmi Kamara. Arbeitsgruppe Bundesrepublik Deutschland", "authorized_access_point": "Magyar Kereskedelmi Kamara. Arbeitsgruppe Bundesrepublik Deutschland", "biographical_information": ["Ungar. Namensform nicht zu ermitteln"]} 1 -2023-07-08 08:18:26.827111 2023-07-08 08:18:26.827115 eced8334-4d19-417f-88c2-79f31a523469 {"md5": "95590d691572653646228192efebe9ec", "pid": "96818734X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/3055416-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3055416-0", "source": "GND"}], "preferred_name": "Ausstellung Momentbild", "country_associated": "gw", "authorized_access_point": "Ausstellung Momentbild, 1982, Hannover"} 1 -2023-07-08 08:18:26.924745 2023-07-08 08:18:26.924751 73b6867a-6e20-4b68-b361-20bfe4bc9b3d {"md5": "c49532a6a660dfdb6e17aeb28521d7d4", "pid": "968195938", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10054576-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10054576-2", "source": "GND"}], "variant_name": ["Landesausstellung Das Zeitalter Kaiser Franz Josephs, 1-2"], "preferred_name": "Niederösterreichische Landesausstellung Das Zeitalter Kaiser Franz Josephs, 1-2", "country_associated": "au", "variant_access_point": ["Landesausstellung Das Zeitalter Kaiser Franz Josephs, 1-2, 1984-1987, Grafenegg"], "authorized_access_point": "Niederösterreichische Landesausstellung Das Zeitalter Kaiser Franz Josephs, 1-2, 1984-1987, Grafenegg"} 1 -2023-07-08 08:18:27.025133 2023-07-08 08:18:27.025138 44463ab3-8752-436e-a28b-a8455a0b155c {"md5": "ad86a9a89d193c80f097a15412fcd769", "pid": "968196349", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10054618-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10054618-3", "source": "GND"}], "variant_name": ["Turnverein Friesen"], "preferred_name": "Turnverein Friesen", "country_associated": "au", "variant_access_point": ["Turnverein Friesen. Wien"], "authorized_access_point": "Turnverein Friesen. Hernals"} 1 -2023-07-08 08:18:27.113454 2023-07-08 08:18:27.113464 02e55c86-43a9-4802-99fa-fd92336e8ffb {"md5": "19be13d591d9438072f8c91370d263d5", "pid": "968265642", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10056952-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10056952-3", "source": "GND"}], "variant_name": ["Neue Bandeisenvereinigung"], "preferred_name": "Bandeisenvereinigung", "variant_access_point": ["Neue Bandeisenvereinigung"], "date_of_establishment": "07.08.1925", "authorized_access_point": "Bandeisenvereinigung", "biographical_information": ["Sitz: Düsseldorf; 1938 Beitritt d. österr. Bandeisenhersteller"]} 1 -2023-07-08 08:18:27.255432 2023-07-08 08:18:27.255442 23a8ea67-56e1-4b9d-9053-6063414af0a5 {"md5": "927b11d586564b30071ed163e45a316e", "pid": "968285988", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5547176-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5547176-6", "source": "GND"}], "preferred_name": "Mostra Ugo Malvano (1878 - 1952) - un Pittore fra Torino e Parigi", "country_associated": "it", "authorized_access_point": "Mostra Ugo Malvano (1878 - 1952) - un Pittore fra Torino e Parigi, 2002, Cherasco"} 1 -2023-07-08 08:18:27.385941 2023-07-08 08:18:27.385955 200f8336-2c5d-474c-97ca-bae1f6cf9666 {"md5": "a6838041bdc7d34b746e37584c68b3f8", "pid": "968290981", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5547695-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5547695-8", "source": "GND"}], "preferred_name": "Ortenauer Turngau", "country_associated": "gw", "authorized_access_point": "Ortenauer Turngau"} 1 -2023-07-08 08:18:27.496132 2023-07-08 08:18:27.496144 d1d17765-b0b1-4535-94cc-6ab9f321b519 {"md5": "186b04e314d26a05391e6d495ef7fed8", "pid": "968305768", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10058124-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10058124-9", "source": "GND"}], "preferred_name": "Landwirtschaftliche Schule Lokstedt", "country_associated": "gw", "authorized_access_point": "Landwirtschaftliche Schule Lokstedt"} 1 -2023-07-08 08:18:27.629797 2023-07-08 08:18:27.629803 1de8d187-f48d-44b4-aee2-cdaa61815a4f {"md5": "d15e553889e8e53560a5cde9aab88199", "pid": "968777449", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10063432-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10063432-1", "source": "GND"}], "variant_name": ["Berufsberatung", "Bundesanstalt für Arbeit. Arbeitsamt Ludwigsburg. Abteilung Berufsberatung"], "preferred_name": "Bundesanstalt für Arbeit. Arbeitsamt Ludwigsburg. Berufsberatung", "country_associated": "gw", "variant_access_point": ["Berufsberatung. Ludwigsburg", "Bundesanstalt für Arbeit. Arbeitsamt Ludwigsburg. Abteilung Berufsberatung"], "authorized_access_point": "Bundesanstalt für Arbeit. Arbeitsamt Ludwigsburg. Berufsberatung", "biographical_information": ["Abteilung nur kurzfristige Bezeichnung"]} 1 -2023-07-08 08:18:27.733846 2023-07-08 08:18:27.73386 1b379b1d-3cf8-4b6f-85ae-2838c992e7c0 {"md5": "9833db0cd56d05a08f3a380eebab8777", "pid": "968883982", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10064248-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10064248-2", "source": "GND"}], "preferred_name": "Geschichtswerkstatt Ulmer Weststadt", "country_associated": "gw", "authorized_access_point": "Geschichtswerkstatt Ulmer Weststadt"} 1 -2023-07-08 08:18:27.830693 2023-07-08 08:18:27.830708 9b086675-3a14-4ec7-a2eb-1ec53c76db41 {"md5": "856f73e21dd0b0fa9d667fda86e2aea9", "pid": "968989454", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10060285-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10060285-X", "source": "GND"}], "variant_name": ["Kurhaus Bad Boll GmbH. Rehaklinik", "Rehaklinik", "Kurhaus Bad Boll"], "preferred_name": "Rehaklinik Bad Boll", "country_associated": "gw", "variant_access_point": ["Kurhaus Bad Boll GmbH. Rehaklinik", "Rehaklinik. Kurhaus Bad Boll GmbH", "Kurhaus Bad Boll"], "date_of_establishment": "1999", "authorized_access_point": "Rehaklinik Bad Boll"} 1 -2023-07-08 08:18:27.958284 2023-07-08 08:18:27.95829 37f607de-759c-44a9-a485-695cb894dd60 {"md5": "7445a34a06fee131383a2afc274fa86c", "pid": "968989640", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10060321-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10060321-X", "source": "GND"}], "variant_name": ["Elektroprivreda Srbije", "EPS", "Javnog Preduzeća Elektroprivreda Srbije", "JP EPS"], "preferred_name": "JP Elektroprivreda Srbije", "variant_access_point": ["Elektroprivreda Srbije. Belgrad", "EPS. Abkuerzung", "Javnog Preduzeća Elektroprivreda Srbije. Belgrad", "JP EPS. Abkuerzung"], "authorized_access_point": "JP Elektroprivreda Srbije. Belgrad"} 1 -2023-07-08 08:18:28.07714 2023-07-08 08:18:28.077157 f9b01a7a-afea-44e9-ab81-225e1fc23d5a {"md5": "7f404da8e470bf5ac38ab5febd593161", "pid": "969011911", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5548899-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5548899-7", "source": "GND"}], "variant_name": ["Steimel mit seinem Organum-Tanzorchester", "Organum-Tanzorchester Adolf Steimel", "Adolf Steimel m. S. Organum-Tanzorchester", "Steimel m. S. Organum-Tanzorchester", "Adolf Steimel mit Seinem Tanzorchester", "Steimel mit Seinem Tanzorchester", "Adolf-Steimel-Tanzorchester", "Steimel-Tanzorchester", "Adolf Steimel und Sein Organum-Tanzorchester", "Steimel und Sein Organum-Tanzorchester", "Orchester Adolf Steimel", "Steimel, Orchester Adolf"], "preferred_name": "Adolf Steimel mit Seinem Organum-Tanzorchester", "variant_access_point": ["Steimel mit seinem Organum-Tanzorchester", "Organum-Tanzorchester Adolf Steimel", "Adolf Steimel m. S. Organum-Tanzorchester", "Steimel m. S. Organum-Tanzorchester", "Adolf Steimel mit Seinem Tanzorchester", "Steimel mit Seinem Tanzorchester", "Adolf-Steimel-Tanzorchester", "Steimel-Tanzorchester", "Adolf Steimel und Sein Organum-Tanzorchester", "Steimel und Sein Organum-Tanzorchester", "Orchester Adolf Steimel", "Steimel, Orchester Adolf"], "authorized_access_point": "Adolf Steimel mit Seinem Organum-Tanzorchester", "biographical_information": ["Ort n. erm."]} 1 -2023-07-08 08:18:28.173525 2023-07-08 08:18:28.173535 b5afb86a-b20f-41b9-9695-e6d99f281512 {"md5": "c9a1c20c9d2ff1a51b66b4e389e471c3", "pid": "969012055", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5548914-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5548914-X", "source": "GND"}], "preferred_name": "Exhibition The Nature of Still Life. From Manet to the Present Day", "country_associated": "it", "authorized_access_point": "Exhibition The Nature of Still Life. From Manet to the Present Day, 2001 - 2002, Bologna"} 1 -2023-07-08 08:18:28.283074 2023-07-08 08:18:28.283086 2317b200-9770-459a-9519-38cebebd79b6 {"md5": "841b00daaa7645a159fa7a5f9257e1b3", "pid": "969012462", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5548956-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5548956-4", "source": "GND"}], "preferred_name": "Exhibition Battle of the Nudes: Pollaiuolo's Renaissance Masterpiece", "country_associated": "xxu", "authorized_access_point": "Exhibition Battle of the Nudes: Pollaiuolo's Renaissance Masterpiece, 2002, Cleveland, Ohio"} 1 -2023-07-08 08:18:28.412618 2023-07-08 08:18:28.41263 aea2ccf7-8c74-43d0-ab60-08f8138d4824 {"md5": "fbda2fe892a557dabbd7e6ced05f556c", "pid": "969026927", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10062900-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10062900-3", "source": "GND"}], "variant_name": ["Blasorchester Adenau"], "preferred_name": "Blasorchester Stadt Adenau", "date_of_termination": "2010", "variant_access_point": ["Blasorchester Adenau"], "date_of_establishment": "1903", "authorized_access_point": "Blasorchester Stadt Adenau"} 1 -2023-07-08 08:18:28.504983 2023-07-08 08:18:28.505 476c1f22-3f32-400b-a1e8-9d66c14eeb8b {"md5": "c9e3495f2ccd0ff1b52b2f0469393771", "pid": "969033788", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10064035-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10064035-7", "source": "GND"}], "preferred_name": "Colloque International Victor Hugo, Ivan Tourguéniev et les Droits de l'Homme", "country_associated": "fr", "authorized_access_point": "Colloque International Victor Hugo, Ivan Tourguéniev et les Droits de l'Homme, 2002, Paris; Bougival"} 1 -2023-07-08 08:18:28.611546 2023-07-08 08:18:28.611556 0a8061cd-8fad-41d6-8d66-138eec98e658 {"md5": "4cee3460d9ba7d9455cac6e9d2d35891", "pid": "969045859", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5550073-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5550073-0", "source": "GND"}], "variant_name": ["Li Geng-Komitee"], "preferred_name": "Li-Geng-Komitee", "country_associated": "gw", "variant_access_point": ["Li Geng-Komitee"], "authorized_access_point": "Li-Geng-Komitee", "biographical_information": ["Förderverein für den Künstler Li Geng"]} 1 -2023-07-08 08:18:28.727511 2023-07-08 08:18:28.727516 31ea06a7-49d7-43ce-8887-f799eb9f14ba {"md5": "c98fb8cd2c5945d33359cade945a7efa", "pid": "969048009", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5550300-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5550300-7", "source": "GND"}], "variant_name": ["International Association of Legal Science. Finnish Branch"], "preferred_name": "International Association of Legal Science. Finnish National Committee", "country_associated": "fi", "variant_access_point": ["International Association of Legal Science. Finnish Branch"], "authorized_access_point": "International Association of Legal Science. Finnish National Committee"} 1 -2023-07-08 08:18:28.830751 2023-07-08 08:18:28.830765 dde48af1-283e-4dd1-8cb9-77329fe3f618 {"md5": "41f99141a2257d033f43a23880362273", "pid": "969051492", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5550663-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5550663-X", "source": "GND"}], "variant_name": ["Bezirksmusikschule", "Konservatorium Schwerin", "Musikschule Johann Wilhelm Hertel", "Bezirksmusikschule Schwerin", "Konservatorium Schwerin, Musikschule Johann Wilhelm Hertel"], "preferred_name": "Konservatorium", "variant_access_point": ["Bezirksmusikschule. Schwerin", "Konservatorium Schwerin", "Musikschule Johann Wilhelm Hertel", "Bezirksmusikschule Schwerin", "Konservatorium Schwerin, Musikschule Johann Wilhelm Hertel. Ehemalige Vorzugsbenennung SWD"], "authorized_access_point": "Konservatorium. Schwerin"} 1 -2023-07-08 08:18:28.962898 2023-07-08 08:18:28.962904 f52a1f66-6d70-4c31-89a4-3f467f3ea759 {"md5": "c3c9db283bc73f8a186955661586ddbe", "pid": "969056370", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5551173-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5551173-9", "source": "GND"}], "variant_name": ["ISIR, 8"], "preferred_name": "International Symposium on Interventional Radiology & New Vascular Imaging, 8", "country_associated": "ja", "variant_access_point": ["ISIR, 8, 2002, Tokio"], "authorized_access_point": "International Symposium on Interventional Radiology & New Vascular Imaging, 8, 2002, Tokio"} 1 -2023-07-08 08:18:29.064315 2023-07-08 08:18:29.064326 8a33a7dc-7872-4a83-9fc1-f3d693e06a43 {"md5": "f044f15b582754e17217f0cd0774a87a", "pid": "969521367", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/3056843-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3056843-2", "source": "GND"}], "preferred_name": "Ausstellung Raimund Abraham", "country_associated": "gw", "authorized_access_point": "Ausstellung Raimund Abraham, 1983, Berlin, West"} 1 -2023-07-08 08:18:29.16264 2023-07-08 08:18:29.162646 9ccd4d9a-8a2d-4ff5-8d98-eb8618f2e72e {"md5": "98a38b2050635e6abbd59640acd77f6c", "pid": "969522304", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10064566-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10064566-5", "source": "GND"}], "variant_name": ["Jusos in der SPD Wiesbaden", "Jusos Wiesbaden"], "preferred_name": "Sozialdemokratische Partei Deutschlands. Arbeitsgemeinschaft der Jungsozialisten und Jungsozialistinnen. Unterbezirk Wiesbaden", "country_associated": "gw", "variant_access_point": ["Jusos in der SPD Wiesbaden", "Jusos Wiesbaden"], "authorized_access_point": "Sozialdemokratische Partei Deutschlands. Arbeitsgemeinschaft der Jungsozialisten und Jungsozialistinnen. Unterbezirk Wiesbaden"} 1 -2023-07-08 08:18:29.26333 2023-07-08 08:18:29.263342 61a7e5c4-90cc-4de0-815a-7f6fbe8d35aa {"md5": "1006d9d9d50e7a497f24b0f6606eab65", "pid": "96954135X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10067483-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10067483-5", "source": "GND"}], "variant_name": ["Faculty of Agriculture", "Manitoba Agricultural College", "MAC", "M.A.C."], "preferred_name": "University of Manitoba. Faculty of Agriculture", "country_associated": "xxc", "variant_access_point": ["Faculty of Agriculture. University of Manitoba", "Manitoba Agricultural College", "MAC. Abkuerzung", "M.A.C.. Abkuerzung"], "authorized_access_point": "University of Manitoba. Faculty of Agriculture"} 1 -2023-07-08 08:18:29.38537 2023-07-08 08:18:29.385376 3deacadd-b061-4adb-a115-79263a666876 {"md5": "a438147c981bab7386f43f3014f1bf2c", "pid": "96954457X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/3056947-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3056947-3", "source": "GND"}], "preferred_name": "Hessiale", "country_associated": "gw", "authorized_access_point": "Hessiale, 2002, Gießen"} 1 -2023-07-08 08:18:29.482852 2023-07-08 08:18:29.482862 933005f9-d155-48ec-bebb-cf4cce8d296c {"md5": "785167ddb11297240b2ddcc957e05b3b", "pid": "969559933", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10068298-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10068298-4", "source": "GND"}], "variant_name": ["IEEE International Conference on Intelligent Transportation Systems, 5", "ITSC, 5"], "preferred_name": "International Conference on Intelligent Transportation Systems, 5", "country_associated": "si", "variant_access_point": ["IEEE International Conference on Intelligent Transportation Systems, 5, 2002, Singapur", "ITSC, 5, 2002, Singapur"], "authorized_access_point": "International Conference on Intelligent Transportation Systems, 5, 2002, Singapur"} 1 -2023-07-08 08:18:29.596582 2023-07-08 08:18:29.596596 179473f5-9e36-4439-b468-95cdae68ac1a {"md5": "44d99dd2483b5345ec71b78c6f01d377", "pid": "96999463X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10068786-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10068786-6", "source": "GND"}], "variant_name": ["Handwerksbau-Aktiengesellschaft", "Westfälische Handwerksbau AG", "Handwerksbau AG"], "preferred_name": "Westfälische Handwerksbau-Aktiengesellschaft", "variant_access_point": ["Handwerksbau-Aktiengesellschaft. Dortmund", "Westfälische Handwerksbau AG. Dortmund", "Handwerksbau AG. Dortmund"], "date_of_establishment": "1936", "authorized_access_point": "Westfälische Handwerksbau-Aktiengesellschaft. Dortmund"} 1 -2023-07-08 08:18:29.705148 2023-07-08 08:18:29.705152 abb1b3f9-a1e6-471d-889c-35dd44db6915 {"md5": "19cb8bc6733b334e4f9cdaefb8ef5a18", "pid": "97001418X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10069983-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10069983-2", "source": "GND"}], "variant_name": ["WRC", "Weltfunkkonferenz"], "preferred_name": "World Radiocommunication Conference", "country_associated": "sz", "variant_access_point": ["WRC, 2003, Genf", "Weltfunkkonferenz, 2003, Genf"], "authorized_access_point": "World Radiocommunication Conference, 2003, Genf"} 1 -2023-07-08 08:18:29.815937 2023-07-08 08:18:29.815952 0e3412f5-509d-40aa-ae9d-129ca2944937 {"md5": "4170799247c85900c1395d90ea35b334", "pid": "970052987", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10071807-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10071807-3", "source": "GND"}], "preferred_name": "Landesinnungsverband des Maler- und Lackiererhandwerks Thüringen", "country_associated": "gw", "authorized_access_point": "Landesinnungsverband des Maler- und Lackiererhandwerks Thüringen"} 1 -2023-07-08 08:18:29.938093 2023-07-08 08:18:29.938107 08a89779-380e-4256-8533-de4d573c7f19 {"md5": "2cffd99411ec5d5ce933b25699cb6197", "pid": "970275323", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10070394-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10070394-X", "source": "GND"}], "variant_name": ["Komitee für die Restaurierung der Rosenkranzkapelle"], "preferred_name": "Comitato per il Restauro della Cappella del Rosario", "country_associated": "it", "variant_access_point": ["Komitee für die Restaurierung der Rosenkranzkapelle. Venedig"], "authorized_access_point": "Comitato per il Restauro della Cappella del Rosario. Venedig"} 1 -2023-07-08 08:18:30.077017 2023-07-08 08:18:30.077029 12ef9e29-aed6-45c2-a765-e67a009be583 {"md5": "384f0cfdd3fc43d4e8b0c1dae94a34f7", "pid": "970287798", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10071403-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10071403-1", "source": "GND"}], "variant_name": ["Universitatea Babeş-Bolyai. Faculty of Mathematics and Computer Science. Department of Applied Mathematics"], "preferred_name": "Universitatea Babeş-Bolyai. Department of Applied Mathematics", "country_associated": "rm", "variant_access_point": ["Universitatea Babeş-Bolyai. Faculty of Mathematics and Computer Science. Department of Applied Mathematics"], "authorized_access_point": "Universitatea Babeş-Bolyai. Department of Applied Mathematics"} 1 -2023-07-08 08:18:30.285052 2023-07-08 08:18:30.285061 457a041a-9e52-4b46-a2c9-a8b25595035e {"md5": "a625472acad86714aa3826bd38edca36", "pid": "97030482X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5554093-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5554093-4", "source": "GND"}], "variant_name": ["Hotel Restaurant Adler GmbH & Co. KG"], "preferred_name": "Hotel Restaurant Adler", "country_associated": "gw", "variant_access_point": ["Hotel Restaurant Adler GmbH & Co. KG. Unveraenderte Form"], "authorized_access_point": "Hotel Restaurant Adler. Pfullendorf"} 1 -2023-07-08 08:18:30.380165 2023-07-08 08:18:30.380174 d063a4d4-f168-46d1-8546-4cfa02686b1c {"md5": "390e950a9b9bfb9461122eb8771fc5b6", "pid": "970399340", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10074015-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10074015-7", "source": "GND"}], "variant_name": ["Vereinigter Sozialistischer Jugendverband Spaniens", "VSJV"], "preferred_name": "Federación Nacional de Juventudes Socialistas de Espana", "country_associated": "sp", "variant_access_point": ["Vereinigter Sozialistischer Jugendverband Spaniens", "VSJV. Abkuerzung"], "authorized_access_point": "Federación Nacional de Juventudes Socialistas de Espana"} 1 -2023-07-08 08:18:30.492656 2023-07-08 08:18:30.492672 2586ed39-a44b-47b0-8d99-f2b0c549f3a6 {"md5": "1e4e482e516518b12307e46382627ddd", "pid": "970821794", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10076293-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10076293-1", "source": "GND"}], "variant_name": ["PY!"], "preferred_name": "Protect Yourself!", "country_associated": "gw", "variant_access_point": ["PY!. Abkuerzung"], "authorized_access_point": "Protect Yourself!. Luhe-Wildenau"} 1 -2023-07-08 08:18:30.587359 2023-07-08 08:18:30.587369 8023048b-988d-4637-854f-4db9f092bbcc {"md5": "fb66820b098c9fe344ef83137eaafd5f", "pid": "971124272", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1304934-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1304934-3", "source": "GND"}], "preferred_name": "International Conference on Emergency Medicine, 8", "country_associated": "xxu", "authorized_access_point": "International Conference on Emergency Medicine, 8, 2000, Boston, Mass."} 1 -2023-07-08 08:18:30.688238 2023-07-08 08:18:30.688249 86beb9bd-0f65-4a15-ba29-596626e1e46f {"md5": "9774a1b7343ca3588fd949918d59e0c4", "pid": "971124728", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1707370-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1707370-4", "source": "GND"}], "preferred_name": "Festspiele", "country_associated": "gw", "authorized_access_point": "Festspiele, 1988, Röttingen, Landkreis Würzburg"} 1 -2023-07-08 08:18:30.789902 2023-07-08 08:18:30.789913 9b5874cf-622c-4209-8fa9-db6a7b09acff {"md5": "87ab729f5cb9fd1dab69ad0b6d13f560", "pid": "971140162", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10077364-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10077364-3", "source": "GND"}], "variant_name": ["ERF"], "preferred_name": "European Union Road Federation", "variant_access_point": ["ERF. Abkuerzung"], "authorized_access_point": "European Union Road Federation"} 1 -2023-07-08 08:18:30.917676 2023-07-08 08:18:30.917692 3890fa93-0e23-4be0-b1cd-8ad6d237b41d {"md5": "e79e22892420bebd8fea2d778d611af5", "pid": "971140642", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10077458-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10077458-1", "source": "GND"}], "preferred_name": "Associazione Culturale La Valigia delle Indie", "country_associated": "it", "authorized_access_point": "Associazione Culturale La Valigia delle Indie"} 1 -2023-07-08 08:18:31.028956 2023-07-08 08:18:31.028965 0dd69cf0-2cfe-4722-b3f4-e9a69f5e91e8 {"md5": "d8a99ca2132b6b436ea60ff7ede95ce9", "pid": "971146853", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5556728-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5556728-9", "source": "GND"}], "preferred_name": "Exhibition Anna Gaskell: Half Life", "country_associated": "xxu", "authorized_access_point": "Exhibition Anna Gaskell: Half Life, 2002 - 2003, Houston, Tex."} 1 -2023-07-08 08:18:31.133218 2023-07-08 08:18:31.133229 a75e2085-2ec6-4d2f-8450-448a05530cd4 {"md5": "97bb587097c2ad89a59daec13026e4d9", "pid": "971628246", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10081106-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10081106-1", "source": "GND"}], "preferred_name": "Kulturlandschaftstag, 3", "country_associated": "gw", "authorized_access_point": "Kulturlandschaftstag, 3, 2004, Landshut"} 1 -2023-07-08 08:18:31.244564 2023-07-08 08:18:31.244576 ab8c3f4b-b3eb-4b0f-90fd-df84584585cc {"md5": "6adab21a60f550f8f821d9b0e46c2d7d", "pid": "971687315", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/4785432-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4785432-7", "source": "GND"}], "variant_name": ["John Ciardullo", "Ciardullo, John"], "preferred_name": "John Ciardullo Associates", "country_associated": "xxu", "variant_access_point": ["John Ciardullo. Firma", "Ciardullo, John. Firma"], "authorized_access_point": "John Ciardullo Associates"} 1 -2023-07-08 08:18:31.340921 2023-07-08 08:18:31.340934 c8d64e65-b8b9-4daa-8e02-af7b981d9c7d {"md5": "2d484f342b53b138b8bee5edfe1a199a", "pid": "971792496", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10082667-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10082667-2", "source": "GND"}], "variant_name": ["International Conference on Software Reuse, 8"], "preferred_name": "ICSR, 8", "country_associated": "sp", "variant_access_point": ["International Conference on Software Reuse, 8, 2004, Madrid"], "authorized_access_point": "ICSR, 8, 2004, Madrid"} 1 -2023-07-08 08:18:35.901756 2023-07-08 08:18:35.901768 44d74c09-7328-43a5-978a-f36538b023f2 {"md5": "12e640da0d6a155a3d5de58448a0eaa0", "pid": "974428345", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5565638-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5565638-9", "source": "GND"}], "preferred_name": "European Workshop on the Preparation of the Census Fieldwork", "country_associated": "it", "authorized_access_point": "European Workshop on the Preparation of the Census Fieldwork, 1999, Rom"} 1 -2023-07-08 08:18:31.466306 2023-07-08 08:18:31.466315 8744eafe-d4a1-4581-9a9e-957a7706a107 {"md5": "438c2441eb02f7098c0872bcae59eaa3", "pid": "971798311", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10082759-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10082759-7", "source": "GND"}], "variant_name": ["Forstgenossenschaft"], "preferred_name": "Wennigsen-Argestorfer Forstgenossenschaft", "country_associated": "gw", "variant_access_point": ["Forstgenossenschaft. Argestorf"], "authorized_access_point": "Wennigsen-Argestorfer Forstgenossenschaft", "biographical_information": ["1754 gegründet"]} 1 -2023-07-08 08:18:31.576266 2023-07-08 08:18:31.576278 9452c256-4d4d-4590-8f98-3368a8de6478 {"md5": "f4c06155f86d6747a376acf600e79265", "pid": "97198364X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10084656-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10084656-7", "source": "GND"}], "variant_name": ["Symposium für Praktische Onkologie, 28"], "preferred_name": "Oberstaufener Symposium für Praktische Onkologie, 28", "country_associated": "gw", "variant_access_point": ["Symposium für Praktische Onkologie, 28, 2003, Oberstaufen"], "authorized_access_point": "Oberstaufener Symposium für Praktische Onkologie, 28, 2003, Oberstaufen"} 1 -2023-07-08 08:18:31.685883 2023-07-08 08:18:31.685899 ebc63a5c-6b84-45b3-8249-450eb65f2a85 {"md5": "1191f2f295f301e261775483f11cd7c8", "pid": "972482830", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10089247-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10089247-4", "source": "GND"}], "variant_name": ["Obir-Tropfsteinhöhlen-Errichtungs- und Betriebsges.m.b.H."], "preferred_name": "Obir-Tropfsteinhöhlen-Errichtungs- und Betriebsgesellschaft", "country_associated": "au", "variant_access_point": ["Obir-Tropfsteinhöhlen-Errichtungs- und Betriebsges.m.b.H.. Unveraenderte Form"], "authorized_access_point": "Obir-Tropfsteinhöhlen-Errichtungs- und Betriebsgesellschaft. Eisenkappel-Vellach- Bad Eisenkappel"} 1 -2023-07-08 08:18:31.789797 2023-07-08 08:18:31.789806 5301b923-5857-4158-abb4-d5dcda6d757d {"md5": "ca15d8b0ee68081a3e4a7f4b3d18da9c", "pid": "972926496", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10088548-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10088548-2", "source": "GND"}], "variant_name": ["Institut für Regionalentwicklung und Strukturplanung. Abteilung Siedlungsstrukturelle Entwicklung. Forschungsgruppe Revitalisierung Historischer Stadtkerne in den Neuen Ländern", "Forschungsgruppe Revitalisierung Historischer Stadtkerne in den Neuen Ländern"], "preferred_name": "Institut für Regionalentwicklung und Strukturplanung. Forschungsgruppe Revitalisierung Historischer Stadtkerne in den Neuen Ländern", "country_associated": "gw", "variant_access_point": ["Institut für Regionalentwicklung und Strukturplanung. Abteilung Siedlungsstrukturelle Entwicklung. Forschungsgruppe Revitalisierung Historischer Stadtkerne in den Neuen Ländern", "Forschungsgruppe Revitalisierung Historischer Stadtkerne in den Neuen Ländern"], "authorized_access_point": "Institut für Regionalentwicklung und Strukturplanung. Forschungsgruppe Revitalisierung Historischer Stadtkerne in den Neuen Ländern"} 1 -2023-07-08 08:18:31.881722 2023-07-08 08:18:31.88173 94e0db1a-a878-4119-8733-ec05a86a7bac {"md5": "c249ad74acb486eda7786505a05be346", "pid": "972927743", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/3058816-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3058816-9", "source": "GND"}], "preferred_name": "Ausstellung Jiří Kolář und Seine Poetische Bildwelt", "authorized_access_point": "Ausstellung Jiří Kolář und Seine Poetische Bildwelt, 1997, Český Krumlov"} 1 -2023-07-08 08:18:32.011893 2023-07-08 08:18:32.011902 13686e02-05a6-4232-81a4-64f0477b911d {"md5": "01627a96a2060ead9329d4005cca2dd7", "pid": "972947191", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10082432-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10082432-8", "source": "GND"}], "preferred_name": "Biennale dell'Arte Orafa, 2", "country_associated": "it", "authorized_access_point": "Biennale dell'Arte Orafa, 2, 1981, Rom"} 1 -2023-07-08 08:18:32.109016 2023-07-08 08:18:32.109063 8ffe06ab-713e-47d9-a0c4-ba7dd9572911 {"md5": "70c17d2fb2d0ba8dbd9827caf2270f36", "pid": "972955372", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10080217-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10080217-5", "source": "GND"}], "variant_name": ["Amt für Stadtentwicklung, Wirtschaftsförderung und Statistik"], "preferred_name": "Dessau. Amt für Stadtentwicklung, Wirtschaftsförderung und Statistik", "country_associated": "gw", "variant_access_point": ["Amt für Stadtentwicklung, Wirtschaftsförderung und Statistik. Dessau"], "authorized_access_point": "Dessau. Amt für Stadtentwicklung, Wirtschaftsförderung und Statistik"} 1 -2023-07-08 08:18:32.209793 2023-07-08 08:18:32.2098 d643e190-fc7e-4f9c-8caa-0cf775b7fb03 {"md5": "cbad83b7c886bb56d415389a5f151c12", "pid": "972969608", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10080550-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10080550-4", "source": "GND"}], "variant_name": ["SOMMA"], "preferred_name": "International Symposium on Magnetic Materials and Applications", "country_associated": "ko", "variant_access_point": ["SOMMA, 2003, Daejeon"], "authorized_access_point": "International Symposium on Magnetic Materials and Applications, 2003, Daejeon"} 1 -2023-07-08 08:18:32.308641 2023-07-08 08:18:32.308652 59ccb6ec-4bb6-415e-b199-1ac33f42f317 {"md5": "aa952b1e933bec0e2fbef434125e47a4", "pid": "972975128", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/3059549-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3059549-6", "source": "GND"}], "preferred_name": "Semaines Sociales de France, 78", "country_associated": "fr", "authorized_access_point": "Semaines Sociales de France, 78, 2003, Paris"} 1 -2023-07-08 08:18:32.420764 2023-07-08 08:18:32.420777 fcddcfc9-ce59-4fe9-8556-8bd71e0a4e3e {"md5": "3faa3ba847267ae35a47f1903e85d579", "pid": "972990437", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5558642-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5558642-9", "source": "GND"}], "variant_name": ["Anglo Japanese Seminar on Liquid Crystals, 2"], "preferred_name": "Anglo-Japanese Seminar on Liquid Crystals, 2", "country_associated": "xxk", "variant_access_point": ["Anglo Japanese Seminar on Liquid Crystals, 2, 2001, York"], "authorized_access_point": "Anglo-Japanese Seminar on Liquid Crystals, 2, 2001, York"} 1 -2023-07-08 08:18:32.529715 2023-07-08 08:18:32.529726 55d838eb-530c-4283-9310-5dcf2aa46635 {"md5": "65c8a65f93eb4587b8d088386ca9be94", "pid": "973004010", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5559211-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5559211-9", "source": "GND"}], "variant_name": ["Konference deset Let Euroregionu - Neisse - Nisa - Nysa"], "preferred_name": "Konference 10 Let Euroregionu - Neisse - Nisa - Nysa", "variant_access_point": ["Konference deset Let Euroregionu - Neisse - Nisa - Nysa, 2001, Liberec"], "authorized_access_point": "Konference 10 Let Euroregionu - Neisse - Nisa - Nysa, 2001, Liberec"} 1 -2023-07-08 08:18:32.640005 2023-07-08 08:18:32.640019 a593f2e1-1d3d-46fe-8017-1cc90914e8da {"md5": "c01e4bc487eb70b9543f719a91f6a965", "pid": "973016515", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10088119-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10088119-1", "source": "GND"}], "variant_name": ["International Colloquium on Refractories, 23", "Colloque International sur les Réfractaires, 23"], "preferred_name": "Internationales Feuerfest-Kolloquium, 23", "country_associated": "gw", "variant_access_point": ["International Colloquium on Refractories, 23, 1980, Aachen", "Colloque International sur les Réfractaires, 23, 1980, Aachen"], "authorized_access_point": "Internationales Feuerfest-Kolloquium, 23, 1980, Aachen"} 1 -2023-07-08 08:18:32.780854 2023-07-08 08:18:32.780866 f120309a-e9d6-4c21-bf23-032bd812e2c7 {"md5": "42d6b2018729bc2e7c7641c564580f49", "pid": "973017856", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5560024-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5560024-4", "source": "GND"}], "variant_name": ["SEAL"], "preferred_name": "Society for Effective Affective Learning", "country_associated": "xxk", "variant_access_point": ["SEAL. Abkuerzung"], "date_of_establishment": "1983", "authorized_access_point": "Society for Effective Affective Learning"} 1 -2023-07-08 08:18:32.890329 2023-07-08 08:18:32.89034 f2d25119-cd20-4163-ade6-b68923cc439c {"md5": "c40fb0fcf4e6e3dc0a818b25b05bc8c8", "pid": "973277645", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10094153-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10094153-9", "source": "GND"}], "variant_name": ["Gedenkkolloquium anläßlich des Hundertsten Geburtstages von Wilhelm Abel"], "preferred_name": "Gedenkkolloquium anläßlich des 100. Geburtstages von Wilhelm Abel", "variant_access_point": ["Gedenkkolloquium anläßlich des Hundertsten Geburtstages von Wilhelm Abel, 2004, Leipzig"], "authorized_access_point": "Gedenkkolloquium anläßlich des 100. Geburtstages von Wilhelm Abel, 2004, Leipzig"} 1 -2023-07-08 08:18:33.006238 2023-07-08 08:18:33.006244 79c07f62-3858-4881-990c-60cf4a7e6895 {"md5": "420b4f31ed5b67a1be5ce5841d1907b2", "pid": "97372076X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5554958-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5554958-5", "source": "GND"}], "preferred_name": "Conference on the Sun in the Service of Man", "country_associated": "xxu", "authorized_access_point": "Conference on the Sun in the Service of Man, 1951, Boston, Mass."} 1 -2023-07-08 08:18:33.114901 2023-07-08 08:18:33.114907 5fcd5b4f-4a31-4c8d-a19c-3e94a8157471 {"md5": "2611d6561e663759e844831e44c01b7b", "pid": "973728558", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10090067-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10090067-7", "source": "GND"}], "variant_name": ["Internationale Transportarbeiter-Föderation. Oficina Regional para America Latina"], "preferred_name": "Internationale Transportarbeiter-Föderation. Regional Office for Latin America", "variant_access_point": ["Internationale Transportarbeiter-Föderation. Oficina Regional para America Latina"], "authorized_access_point": "Internationale Transportarbeiter-Föderation. Regional Office for Latin America", "biographical_information": ["Sitz: Mexico"]} 1 -2023-07-08 08:18:33.229366 2023-07-08 08:18:33.229376 9135a67a-bbd1-41d4-9f76-512cb6677fc1 {"md5": "4272e61a8a504a889631be7fd4bc22be", "pid": "973729619", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/3059672-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3059672-5", "source": "GND"}], "preferred_name": "Nordostdeutsche Künstler-Einung", "country_associated": "gw", "authorized_access_point": "Nordostdeutsche Künstler-Einung", "biographical_information": ["e.V. Sitz: Lüneburg"]} 1 -2023-07-08 08:18:33.332448 2023-07-08 08:18:33.332458 13a12dd6-fbe5-4dad-a3e4-05f136055c04 {"md5": "1ee3269c8b18f2932d960f808b6d9e55", "pid": "973743220", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10090790-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10090790-8", "source": "GND"}], "variant_name": ["PACT, 13", "Parallel Architecture and Compilation Techniques Conference, 13"], "preferred_name": "International Conference on Parallel Architectures and Compilation Techniques, 13", "country_associated": "fr", "variant_access_point": ["PACT, 13, 2004, Juan-les-Pins", "Parallel Architecture and Compilation Techniques Conference, 13, 2004, Juan-les-Pins"], "authorized_access_point": "International Conference on Parallel Architectures and Compilation Techniques, 13, 2004, Juan-les-Pins"} 1 -2023-07-08 08:18:33.442512 2023-07-08 08:18:33.442524 dc975d0f-f1ff-407d-82c0-7e3191add577 {"md5": "e1ac890124201c5d2a8f7f691ed69584", "pid": "973753544", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6501227-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6501227-6", "source": "GND"}], "variant_name": ["Hilversum, Pas Op"], "preferred_name": "Stichting Hilversum, Pas Op", "country_associated": "ne", "variant_access_point": ["Hilversum, Pas Op"], "authorized_access_point": "Stichting Hilversum, Pas Op", "biographical_information": ["1981 gegr. Stiftung für den Erhalt von Baudenkmälern in Hilversum"]} 1 -2023-07-08 08:18:35.660629 2023-07-08 08:18:35.660639 84ef10ef-21d0-4f0b-b4a2-d28de4d83ba4 {"md5": "7f696e62beae01e3eb049f1f42b1b549", "pid": "974357685", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10101091-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10101091-6", "source": "GND"}], "variant_name": ["International Conference on Database Systems for Advanced Applications, 10"], "preferred_name": "DASFAA, 10", "country_associated": "cc", "variant_access_point": ["International Conference on Database Systems for Advanced Applications, 10, 2005, Peking"], "authorized_access_point": "DASFAA, 10, 2005, Peking"} 1 -2023-07-08 08:18:33.571798 2023-07-08 08:18:33.57181 a2544b38-0083-491f-a045-d4ab441d10d2 {"md5": "1f65c7d904d10fcc89a6535c5d864441", "pid": "973763361", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10091450-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10091450-0", "source": "GND"}], "variant_name": ["Allergiesymposium für Kinderärztinnen und Kinderärzte, 21"], "preferred_name": "Allergie-Symposium für Kinderärztinnen und Kinderärzte, 21", "country_associated": "gw", "variant_access_point": ["Allergiesymposium für Kinderärztinnen und Kinderärzte, 21, 2003, Schleswig"], "authorized_access_point": "Allergie-Symposium für Kinderärztinnen und Kinderärzte, 21, 2003, Schleswig"} 1 -2023-07-08 08:18:33.695609 2023-07-08 08:18:33.695619 8dac6b88-49d7-470c-9545-33a285ca02d0 {"md5": "a49e79fe016604e0ef3e4e0993f0f0df", "pid": "973769998", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6034765-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6034765-X", "source": "GND"}], "variant_name": ["Kongress zum Täter-Opfer-Ausgleich, 4", "Bremer TOA-Kongress, 4"], "preferred_name": "Bremer Kongress zum Täter-Opfer-Ausgleich, 4", "country_associated": "gw", "variant_access_point": ["Kongress zum Täter-Opfer-Ausgleich, 4, 2004, Bremen", "Bremer TOA-Kongress, 4, 2004, Bremen"], "authorized_access_point": "Bremer Kongress zum Täter-Opfer-Ausgleich, 4, 2004, Bremen"} 1 -2023-07-08 08:18:33.807377 2023-07-08 08:18:33.807399 1494b8ae-461d-4c10-b820-d4e55989c704 {"md5": "fdb5d596fde1959ebbb80c81951f1899", "pid": "973778318", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6035091-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6035091-X", "source": "GND"}], "variant_name": ["ISSCG, 12", "ISSCG-12, Akademie Berlin, Schmockwitz, Germany, 1 - 7 August 2004"], "preferred_name": "International Summer School of Crystal Growth, 12", "variant_access_point": ["ISSCG, 12, 2004, Berlin", "ISSCG-12, Akademie Berlin, Schmockwitz, Germany, 1 - 7 August 2004"], "authorized_access_point": "International Summer School of Crystal Growth, 12, 2004, Berlin"} 1 -2023-07-08 08:18:33.911524 2023-07-08 08:18:33.911538 4c56f20b-87df-4536-bdb4-bbb907cc8c45 {"md5": "7cfea207f922d949abeb03a3b3caa27f", "pid": "97378637X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5562668-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5562668-3", "source": "GND"}], "preferred_name": "Verschönerungsverein", "authorized_access_point": "Verschönerungsverein. Bad Bergzabern"} 1 -2023-07-08 08:18:34.013517 2023-07-08 08:18:34.013531 9c89ee8d-f710-4cfd-8a75-fefcdd07e702 {"md5": "508ed40f5a88050aa9d61795b716fa58", "pid": "973790636", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6502345-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6502345-6", "source": "GND"}], "variant_name": ["Workshop on Environmental Status, Issues and Techno-Economic Alternatives for Eco-Friendly Development in South Gujarat", "Seminar on Environmental Crisis and Eco-Friendly Techno-Economic Alternatives"], "preferred_name": "National Seminar on Environmental Crisis and Eco-Friendly Techno-Economic Alternatives", "country_associated": "ii", "variant_access_point": ["Workshop on Environmental Status, Issues and Techno-Economic Alternatives for Eco-Friendly Development in South Gujarat, 2000, Surat", "Seminar on Environmental Crisis and Eco-Friendly Techno-Economic Alternatives, 2000, Surat"], "authorized_access_point": "National Seminar on Environmental Crisis and Eco-Friendly Techno-Economic Alternatives, 2000, Surat"} 1 -2023-07-08 08:18:34.12204 2023-07-08 08:18:34.122045 b86b57ba-a7a4-430b-b0e3-11dfc7b9cff4 {"md5": "c0ea9c795ffdaae27582347d1e7e45dd", "pid": "973818522", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/3060228-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3060228-2", "source": "GND"}], "preferred_name": "Sannah Brothers Band", "country_associated": "gh", "authorized_access_point": "Sannah Brothers Band"} 1 -2023-07-08 08:18:34.246532 2023-07-08 08:18:34.246544 9f3b1eca-3c0f-496d-9443-14c5a2b76562 {"md5": "76420bbcac1ee922f1e2a34cbe7ebcbe", "pid": "973819987", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/3060397-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3060397-3", "source": "GND"}], "preferred_name": "Simposio Internazionale sull'Arte Georgiana, 1", "country_associated": "it", "authorized_access_point": "Simposio Internazionale sull'Arte Georgiana, 1, 1974, Bergamo"} 1 -2023-07-08 08:18:34.372105 2023-07-08 08:18:34.372119 17b09677-3ddb-4887-9655-f01fb8be8dc0 {"md5": "4111b49030a96987073e3ee157ef5ade", "pid": "973828269", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10095103-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10095103-X", "source": "GND"}], "preferred_name": "Giornata di Studio Evoluzione dei Mezzi di Difesa Fitosanitaria", "country_associated": "it", "authorized_access_point": "Giornata di Studio Evoluzione dei Mezzi di Difesa Fitosanitaria, 2003, Florenz"} 1 -2023-07-08 08:18:34.473462 2023-07-08 08:18:34.473473 4adce4fd-fdc5-495d-800f-1c5d03ff0c09 {"md5": "2f5e4a5fd7d6e2f60cc612568d189775", "pid": "973832231", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6036511-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6036511-0", "source": "GND"}], "preferred_name": "Jakob Ochs Gartenbau", "country_associated": "gw", "authorized_access_point": "Jakob Ochs Gartenbau. Hamburg"} 1 -2023-07-08 08:18:34.577363 2023-07-08 08:18:34.577378 f69c2244-79d0-4afb-b666-b78b16e39d12 {"md5": "efe1fa7705efff202299b3bb61628c90", "pid": "973847476", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6037258-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6037258-8", "source": "GND"}], "preferred_name": "Meždunarodnaja Delovaja Vstreča Diagnostika, 11", "authorized_access_point": "Meždunarodnaja Delovaja Vstreča Diagnostika, 11, 2001, Tūnis"} 1 -2023-07-08 08:18:35.783082 2023-07-08 08:18:35.783095 ab934cdd-7343-46c2-aea6-1cd52a624230 {"md5": "f74aa19c7cb26b99c35c2f0f6366d028", "pid": "974385492", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10101355-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10101355-3", "source": "GND"}], "variant_name": ["Peterburgskij Dialog, 1"], "preferred_name": "Petersburger Dialog, 1", "country_associated": "ru", "variant_access_point": ["Peterburgskij Dialog, 1, 2001, Sankt Petersburg"], "authorized_access_point": "Petersburger Dialog, 1, 2001, Sankt Petersburg"} 1 -2023-07-08 08:18:34.695694 2023-07-08 08:18:34.695705 17a4548b-bd46-420e-b96b-17cbe5714957 {"md5": "14b510abb64f0bb0d53b88ab627c18f2", "pid": "973854790", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5564053-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5564053-9", "source": "GND"}], "variant_name": ["ICM Satellite Conference on Nonlinear Evolution Equations and Dynamical Systems"], "preferred_name": "Satellite Conference on Nonlinear Evolution Equations and Dynamical Systems", "country_associated": "cc", "variant_access_point": ["ICM Satellite Conference on Nonlinear Evolution Equations and Dynamical Systems, 2002, Huang Shan"], "authorized_access_point": "Satellite Conference on Nonlinear Evolution Equations and Dynamical Systems, 2002, Huang Shan"} 1 -2023-07-08 08:18:34.805733 2023-07-08 08:18:34.805748 321aecbd-6b63-4e09-934f-e0b3049998e4 {"md5": "27de1df8b5d005465ca5690ef1b00b8c", "pid": "973987278", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6503698-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6503698-0", "source": "GND"}], "variant_name": ["ISEB, 16"], "preferred_name": "International Symposium on Environmental Biogeochemistry, 16", "variant_access_point": ["ISEB, 16, 2003, Oraise"], "authorized_access_point": "International Symposium on Environmental Biogeochemistry, 16, 2003, Oraise"} 1 -2023-07-08 08:18:34.916932 2023-07-08 08:18:34.916944 19bb9975-9244-473e-8135-691b248c4805 {"md5": "9b46b4c02e649d0594cf99d41d6bd063", "pid": "973999527", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6038009-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6038009-3", "source": "GND"}], "variant_name": ["ISTC, 3"], "preferred_name": "International Conference on Semiconductor Technology, 3", "country_associated": "cc", "variant_access_point": ["ISTC, 3, 2004, Schanghai"], "authorized_access_point": "International Conference on Semiconductor Technology, 3, 2004, Schanghai"} 1 -2023-07-08 08:18:35.010025 2023-07-08 08:18:35.010035 a1db3b76-8af8-49ea-ba91-7cc9fb601a02 {"md5": "714a121e7121e35012ced7fcbf84ad30", "pid": "974085812", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10099079-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10099079-4", "source": "GND"}], "variant_name": ["Filmtage, 1", "Tage des Internationalen Religiösen Films, 1"], "preferred_name": "Friedberger Filmtage, 1", "variant_access_point": ["Filmtage, 1, 1974 - 6, 1979", "Tage des Internationalen Religiösen Films, 1, 1974 - 6, 1979"], "authorized_access_point": "Friedberger Filmtage, 1, 1974 - 6, 1979"} 1 -2023-07-08 08:18:35.132708 2023-07-08 08:18:35.132721 81f21cf9-8f5f-4f96-b56a-c68cc06c952e {"md5": "8e91b5a951e0e5c4ccb234c5bf0a4f74", "pid": "974127469", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/3060901-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3060901-X", "source": "GND"}], "variant_name": ["Versicherungstag, 22"], "preferred_name": "Münsterischer Versicherungstag, 22", "country_associated": "gw", "variant_access_point": ["Versicherungstag, 22, 2004, Münster (Westf). Forschungsstelle für Versicherungswesen, Münster, Westfalen"], "authorized_access_point": "Münsterischer Versicherungstag, 22, 2004, Münster (Westf)"} 1 -2023-07-08 08:18:35.259708 2023-07-08 08:18:35.259714 2c4d06bd-b6b4-43c8-ba71-37f93f8b3ebd {"md5": "9276bbb629ad07096cd4c5b5b3e5e47b", "pid": "974169722", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10099660-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10099660-7", "source": "GND"}], "variant_name": ["Sozialdemokratische Partei Deutschlands Eimsbüttel", "SPD-Kreis Eimsbüttel", "SPD Eimsbüttel", "Sozialdemokratische Partei Deutschlands. Kreis Hamburg-Eimsbüttel", "SPD-Kreis Hamburg-Eimsbüttel", "SPD Hamburg-Eimsbüttel"], "preferred_name": "Sozialdemokratische Partei Deutschlands. Kreis Eimsbüttel", "country_associated": "gw", "variant_access_point": ["Sozialdemokratische Partei Deutschlands Eimsbüttel", "SPD-Kreis Eimsbüttel", "SPD Eimsbüttel", "Sozialdemokratische Partei Deutschlands. Kreis Hamburg-Eimsbüttel", "SPD-Kreis Hamburg-Eimsbüttel", "SPD Hamburg-Eimsbüttel"], "authorized_access_point": "Sozialdemokratische Partei Deutschlands. Kreis Eimsbüttel"} 1 -2023-07-08 08:18:35.352987 2023-07-08 08:18:35.352999 e1b214f1-d565-409f-b08e-108fb5755506 {"md5": "cadfc3121996abe72a76def835e9872e", "pid": "974334650", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5564564-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5564564-1", "source": "GND"}], "preferred_name": "Moritzburg-Festival, 12", "authorized_access_point": "Moritzburg-Festival, 12, 2004, Moritzburg"} 1 -2023-07-08 08:18:35.449004 2023-07-08 08:18:35.449015 90bf3201-b304-459f-9bdd-f715715dd984 {"md5": "4814917fb31fffe61199c1539d14e06c", "pid": "974336076", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5564717-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5564717-0", "source": "GND"}], "variant_name": ["Royal Postgraduate Medical School. Institute of Obstetrics and Gynaecology", "Institute of Obstetrics and Gynaecology", "Institute of Obstetrics and Gynaecology", "British Postgraduate Medical Federation. Institute of Obstetrics and Gynaecology"], "preferred_name": "University of London. Institute of Obstetrics and Gynaecology", "country_associated": "xxk", "variant_access_point": ["Royal Postgraduate Medical School. London. Institute of Obstetrics and Gynaecology", "Institute of Obstetrics and Gynaecology. London", "Institute of Obstetrics and Gynaecology. University of London", "British Postgraduate Medical Federation. Institute of Obstetrics and Gynaecology"], "authorized_access_point": "University of London. Institute of Obstetrics and Gynaecology"} 1 -2023-07-08 08:18:35.55933 2023-07-08 08:18:35.559344 7670e347-14e1-4a1b-afce-c48d02464f72 {"md5": "64fb12c50752e1374b3e3c9bcd2bfac5", "pid": "974346063", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10100416-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10100416-3", "source": "GND"}], "preferred_name": "Comitato Ricerche Storiche Medicinesi", "country_associated": "it", "authorized_access_point": "Comitato Ricerche Storiche Medicinesi", "biographical_information": ["Sitz: Medicina"]} 1 -2023-07-08 08:18:36.027744 2023-07-08 08:18:36.02775 f129589f-5104-4903-8a46-2466fdccee27 {"md5": "003ecd186dfe8e8f168f81cc3457e900", "pid": "974489530", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6504567-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6504567-1", "source": "GND"}], "preferred_name": "Symposium Innovative Cancer Therapy for Tomorrow, 22", "country_associated": "xxu", "authorized_access_point": "Symposium Innovative Cancer Therapy for Tomorrow, 22, 2004, New York, NY"} 1 -2023-07-08 08:18:36.127608 2023-07-08 08:18:36.127617 4424e92a-8e35-43b0-b2b1-2138d5c78bd9 {"md5": "1acaa706e220b7c2235d5805585993f4", "pid": "974648884", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10102400-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10102400-9", "source": "GND"}], "variant_name": ["Internationale Fachmesse für Büro, Computer, Telecom"], "preferred_name": "Ifabo", "country_associated": "au", "variant_access_point": ["Internationale Fachmesse für Büro, Computer, Telecom, 1995, Wien"], "authorized_access_point": "Ifabo, 1995, Wien"} 1 -2023-07-08 08:18:36.243648 2023-07-08 08:18:36.243662 c9f558cf-939f-4431-98d8-010c6f831b2e {"md5": "7a5b929cbbec29e822ac864a51cd7fec", "pid": "974981990", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6505086-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6505086-1", "source": "GND"}], "preferred_name": "Assisi Software", "country_associated": "gw", "authorized_access_point": "Assisi Software. Hohen Neuendorf"} 1 -2023-07-08 08:18:36.369045 2023-07-08 08:18:36.369057 3f54114d-33f1-4d07-8052-6de20055b9b6 {"md5": "56bb0bb7dc584e1c96af94af871b3039", "pid": "975310844", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10106568-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10106568-1", "source": "GND"}], "preferred_name": "Falchi Arte Moderna", "country_associated": "it", "authorized_access_point": "Falchi Arte Moderna. Mailand"} 1 -2023-07-08 08:18:36.495349 2023-07-08 08:18:36.49536 36a792a6-0d9c-4444-ad02-7440ae63d3db {"md5": "ec3cb9384ae99aea6a4064f42b7a497b", "pid": "975409239", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6041577-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6041577-0", "source": "GND"}], "variant_name": ["Universität Halle-Wittenberg. Fachbereich Ingenieurwissenschaften. Institut für Bioengineering"], "preferred_name": "Institut für Bioengineering", "country_associated": "gw", "variant_access_point": ["Universität Halle-Wittenberg. Fachbereich Ingenieurwissenschaften. Institut für Bioengineering"], "authorized_access_point": "Institut für Bioengineering. Halle (Saale)"} 1 -2023-07-08 08:18:36.605157 2023-07-08 08:18:36.60517 7db3d4f2-9f74-4b8c-8731-44ef27516b58 {"md5": "0591a6159535e6d65b2a23a1c3d3e629", "pid": "975409255", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6041579-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6041579-4", "source": "GND"}], "preferred_name": "Ausstellung Therefore Beautiful", "country_associated": "gw", "authorized_access_point": "Ausstellung Therefore Beautiful, 2005, Kraichtal"} 1 -2023-07-08 08:18:36.731227 2023-07-08 08:18:36.731237 6d5509a2-328b-4ee3-ab12-85554eeeb094 {"md5": "bc793e256cbf0080994eebda325785c4", "pid": "975411659", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6041817-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6041817-5", "source": "GND"}], "preferred_name": "Encontro Nacional Estudos Populacionais", "country_associated": "bl", "authorized_access_point": "Encontro Nacional Estudos Populacionais, 1984, São Paulo"} 1 -2023-07-08 08:18:36.838701 2023-07-08 08:18:36.838714 cc372fc8-293b-4364-999a-cc5317948c58 {"md5": "9be58bfb7317aeb8aa9733f48ca9b120", "pid": "97542890X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5566968-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5566968-2", "source": "GND"}], "variant_name": ["Thrower Symposium The Future of Tort Reform"], "preferred_name": "Randolph W. Thrower Symposium The Future of Tort Reform", "country_associated": "xxu", "variant_access_point": ["Thrower Symposium The Future of Tort Reform, 2004, Atlanta, Ga."], "authorized_access_point": "Randolph W. Thrower Symposium The Future of Tort Reform, 2004, Atlanta, Ga."} 1 -2023-07-08 08:18:36.979974 2023-07-08 08:18:36.979983 e27e29b5-08c2-46eb-b04f-9cf7c0e45613 {"md5": "132db97a4473cefcbde4417fd7a52fcc", "pid": "975483935", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6042391-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6042391-2", "source": "GND"}], "preferred_name": "Ausstellung René Magritte. Der Schlüssel der Träume", "country_associated": "sz", "authorized_access_point": "Ausstellung René Magritte. Der Schlüssel der Träume, 2005, Riehen ; Wien"} 1 -2023-07-08 08:18:37.107059 2023-07-08 08:18:37.107068 6f59f92d-70f2-4873-9477-f6e9541654be {"md5": "03ba0fd1a4dd89ed18c785b1c75b51d9", "pid": "975497278", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10107593-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10107593-5", "source": "GND"}], "variant_name": ["MGV Cäcilia"], "preferred_name": "Männergesangverein Cäcilia", "variant_access_point": ["MGV Cäcilia. Bruchhausen, Neuwied"], "date_of_establishment": "1905", "authorized_access_point": "Männergesangverein Cäcilia. Bruchhausen, Neuwied"} 1 -2023-07-08 08:18:37.21 2023-07-08 08:18:37.210011 b4c94c85-b15d-49e1-adc1-4bb45f7db9c4 {"md5": "0435f0cdce74340742fed78f3d911e03", "pid": "975537016", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/3061691-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3061691-8", "source": "GND"}], "preferred_name": "Hochstift-Marathon, 3", "country_associated": "gw", "authorized_access_point": "Hochstift-Marathon, 3, 1996, Fulda"} 1 -2023-07-08 08:18:37.300668 2023-07-08 08:18:37.300681 b824ede8-71f1-48b0-b1eb-d84b65c35e21 {"md5": "937bd204a14c8a79b38ec187a00a208c", "pid": "975540289", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6505893-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6505893-8", "source": "GND"}], "preferred_name": "Allgemeine Versammlung der Berg- und Hüttenmänner, 1", "authorized_access_point": "Allgemeine Versammlung der Berg- und Hüttenmänner, 1, 1858 - 3, 1863"} 1 -2023-07-08 08:18:37.399739 2023-07-08 08:18:37.399746 a21263e9-2482-4e1c-9114-367989145f3a {"md5": "ae274f838d8f64c99ad17e2aa3272d93", "pid": "97554134X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5567163-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5567163-9", "source": "GND"}], "variant_name": ["Conference on the Application of Density Functional Theory to Chemistry and Physics, 10", "International Conference on the Applications of Density Functional Theory to Chemistry and Physics, 10"], "preferred_name": "International Conference on the Application of Density Functional Theory to Chemistry and Physics, 10", "country_associated": "be", "variant_access_point": ["Conference on the Application of Density Functional Theory to Chemistry and Physics, 10, 2003, Brüssel", "International Conference on the Applications of Density Functional Theory to Chemistry and Physics, 10, 2003, Brüssel"], "authorized_access_point": "International Conference on the Application of Density Functional Theory to Chemistry and Physics, 10, 2003, Brüssel"} 1 -2023-07-08 08:18:37.528723 2023-07-08 08:18:37.528732 b36dfd39-9847-4dc3-9cb8-f0c900924679 {"md5": "3a72752baaa05dc718a870688672a139", "pid": "975543644", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5567393-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5567393-4", "source": "GND"}], "variant_name": ["Sängerknaben"], "preferred_name": "Wiltener Sängerknaben", "country_associated": "au", "variant_access_point": ["Sängerknaben. Wiltener Sängerknaben"], "authorized_access_point": "Wiltener Sängerknaben", "biographical_information": ["Anfänge reichen zurück bis ins 13. Jahrhundert"]} 1 -2023-07-08 08:18:37.641605 2023-07-08 08:18:37.641616 78cfe979-ca2f-44ee-ba2c-19b75b71fc98 {"md5": "328e229cae2034ae5cf3cc4c09c390e1", "pid": "975561243", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10107936-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10107936-9", "source": "GND"}], "variant_name": ["International Symposium The Transformation of the City Space on the Background of Political Economic Changes in Central Europe, 4", "International Symposium The Transformation of the City Space on the Background of Political-Economic Changes in Central Europe, 4", "International Symposium The Transformation of the City Space on the Background of Political-Economic Changes in Central Europe, 4"], "preferred_name": "International Symposium The Transformation of the City Space on the Background of Political Economic Changes in Central Europe, 4", "country_associated": "pl", "variant_access_point": ["International Symposium The Transformation of the City Space on the Background of Political Economic Changes in Central Europe, 4, 2002, Cracow", "International Symposium The Transformation of the City Space on the Background of Political-Economic Changes in Central Europe, 4, 2002, Krakau", "International Symposium The Transformation of the City Space on the Background of Political-Economic Changes in Central Europe, 4, 2002, Cracow"], "authorized_access_point": "International Symposium The Transformation of the City Space on the Background of Political Economic Changes in Central Europe, 4, 2002, Krakau"} 1 -2023-07-08 08:18:37.759157 2023-07-08 08:18:37.759168 86d867d9-4dca-4fed-9535-ccb4459dec3a {"md5": "98001fc1eb08b4645b627679fe495942", "pid": "975774719", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10109223-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10109223-4", "source": "GND"}], "preferred_name": "Modern Language Association of America. Middle English Division", "country_associated": "xxu", "authorized_access_point": "Modern Language Association of America. Middle English Division"} 1 -2023-07-08 08:18:37.88008 2023-07-08 08:18:37.88009 c2e7d1df-6c16-4cb8-9c5b-38857f6b7354 {"md5": "5a7e964ee14583cf011c7849fb367156", "pid": "975895346", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5568081-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5568081-1", "source": "GND"}], "variant_name": ["International Symposium Innovations in Wine Technology, 4"], "preferred_name": "Internationales Symposium Innovationen in der Kellerwirtschaft, 4", "variant_access_point": ["International Symposium Innovations in Wine Technology, 4, 1995, Stuttgart"], "authorized_access_point": "Internationales Symposium Innovationen in der Kellerwirtschaft, 4, 1995, Stuttgart"} 1 -2023-07-08 08:18:37.977603 2023-07-08 08:18:37.977611 9a479639-4977-40d8-9b4f-46a0b6f1d6dc {"md5": "ff741b8b39d9f62f6d3da991ec7d76d9", "pid": "976006332", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10110917-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10110917-9", "source": "GND"}], "variant_name": ["SPÖ-Ortsorganisation", "SPÖ Bad Pirawarth - Kollnbrunn"], "preferred_name": "Sozialdemokratische Partei Österreichs. Ortsorganisation", "country_associated": "au", "variant_access_point": ["SPÖ-Ortsorganisation. Bad Pirawarth- Kollnbrunn", "SPÖ Bad Pirawarth - Kollnbrunn. Unveraenderte Form"], "authorized_access_point": "Sozialdemokratische Partei Österreichs. Ortsorganisation. Bad Pirawarth- Kollnbrunn"} 1 -2023-07-08 08:18:38.083503 2023-07-08 08:18:38.083515 7bc4186c-3922-471f-b928-919054678d3f {"md5": "75a4dd9c1b19c16688587a3ce57be145", "pid": "976206323", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10112942-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10112942-7", "source": "GND"}], "preferred_name": "Interdisziplinäres Symposion Sicherheit und Dynamik in der Mitte Europas, Österreichs Rolle aus der Sicht der Nachbarn", "country_associated": "au", "authorized_access_point": "Interdisziplinäres Symposion Sicherheit und Dynamik in der Mitte Europas, Österreichs Rolle aus der Sicht der Nachbarn, 1996, Wien"} 1 -2023-07-08 08:18:38.196727 2023-07-08 08:18:38.196738 42d7219c-329a-475d-94e5-cfcaba84c0b5 {"md5": "3346f0db6f8ac5038e0eb3f5b87d22f4", "pid": "976264293", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10113329-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10113329-7", "source": "GND"}], "variant_name": ["Verein Frauenhaus Amstetten"], "preferred_name": "Frauenhaus Amstetten", "country_associated": "au", "variant_access_point": ["Verein Frauenhaus Amstetten"], "authorized_access_point": "Frauenhaus Amstetten"} 1 -2023-07-08 08:16:45.585871 2023-07-08 10:25:01.716376 210be2f2-0b28-47fd-b6a8-cfab00380a47 {"md5": "771a5c12e67adf05ecf160c5fa75eabc", "pid": "127283447", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/127283447", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/127283447", "source": "GND"}], "date_of_birth": "1926", "preferred_name": "Zbierski, Andrzej", "authorized_access_point": "Zbierski, Andrzej, 1926-"} 2 -2023-07-08 08:18:38.303763 2023-07-08 08:18:38.303769 2577cbbd-8d0c-4bf4-8521-4cf14d252784 {"md5": "9a3acce246b434bcbd6223fee36a9a94", "pid": "976322293", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10113943-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10113943-3", "source": "GND"}], "variant_name": ["Handelsgesellschaft für Historische Wertpapiere GmbH", "Handelsgesellschaft für historische Wertpapiere KG"], "preferred_name": "Handelsgesellschaft für Historische Wertpapiere", "country_associated": "au", "variant_access_point": ["Handelsgesellschaft für Historische Wertpapiere GmbH. Unveraenderte Form", "Handelsgesellschaft für historische Wertpapiere KG. Unveraenderte Form"], "authorized_access_point": "Handelsgesellschaft für Historische Wertpapiere"} 1 -2023-07-08 08:18:38.409171 2023-07-08 08:18:38.409175 c5b58759-3aba-4057-9345-48c5ea6832b4 {"md5": "6011e1ee1814b652b4da331a2d8c9aed", "pid": "976362473", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10114334-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10114334-5", "source": "GND"}], "preferred_name": "RECOMB Satellite Workshop on Comparative Genomics", "country_associated": "ie", "authorized_access_point": "RECOMB Satellite Workshop on Comparative Genomics, 2005, Dublin"} 1 -2023-07-08 08:18:38.518766 2023-07-08 08:18:38.518776 e4b7b7df-1ec5-4566-a414-fdadffdf5179 {"md5": "4353d0ce15272e262243aa9a8fdc2df3", "pid": "97638230X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10114527-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10114527-5", "source": "GND"}], "variant_name": ["Dialogue des Peuples et des Cultures: les Acteurs du Dialogue", "Dialogue between Peoples and Cultures", "Dialogue des Peuples et des Cultures", "Meeting Dialogue between Peoples and Cultures"], "preferred_name": "Dialogue between Peoples and Cultures: Actors in the Dialogue", "country_associated": "be", "variant_access_point": ["Dialogue des Peuples et des Cultures: les Acteurs du Dialogue, 2004, Brüssel", "Dialogue between Peoples and Cultures, 2004, Brüssel", "Dialogue des Peuples et des Cultures, 2004, Brüssel", "Meeting Dialogue between Peoples and Cultures, 2004, Brüssel"], "authorized_access_point": "Dialogue between Peoples and Cultures: Actors in the Dialogue, 2004, Brüssel"} 1 -2023-07-08 08:18:38.637363 2023-07-08 08:18:38.637383 2b13571f-7529-45d0-bb20-c3314ff082cf {"md5": "03c42c3a47a2c5f995a9feac4f76ed12", "pid": "976430975", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10114991-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10114991-8", "source": "GND"}], "variant_name": ["Gebetsbund. Abteilung"], "preferred_name": "Gebetsbund. Abtheilung", "variant_access_point": ["Gebetsbund. Abteilung. Berlin"], "authorized_access_point": "Gebetsbund. Abtheilung. Berlin"} 1 -2023-07-08 08:18:38.741373 2023-07-08 08:18:38.741386 a59afc1e-e136-493c-85d8-01720134e160 {"md5": "8992f87ba96a0074d511b31cc54eaaf5", "pid": "976606380", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10116768-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10116768-4", "source": "GND"}], "variant_name": ["Uniwersytet Jagielloński w Krakowie. Geographical Information Systems Laboratory", "Uniwersytet Jagielloński w Krakowie. Instytut Geografii i Gospodarki Przestrzennej. Geographical Information Systems Laboratory", "Uniwersytet Jagielloński w Krakowie. Instytut Geografii i Gospodarki Przestrzennej. Zakład Systemów Informacji Geograficznej"], "preferred_name": "Uniwersytet Jagielloński w Krakowie. Zakład Systemów Informacji Geograficznej", "country_associated": "pl", "date_of_termination": "2007", "variant_access_point": ["Uniwersytet Jagielloński w Krakowie. Geographical Information Systems Laboratory", "Uniwersytet Jagielloński w Krakowie. Instytut Geografii i Gospodarki Przestrzennej. Geographical Information Systems Laboratory", "Uniwersytet Jagielloński w Krakowie. Instytut Geografii i Gospodarki Przestrzennej. Zakład Systemów Informacji Geograficznej"], "authorized_access_point": "Uniwersytet Jagielloński w Krakowie. Zakład Systemów Informacji Geograficznej", "biographical_information": ["Zakład Systemów Informacji Geograficznej, Kartografii i Teledetekcji (Zakład GISKiT) został założony w Instytucie Geografii i Gospodarki Przestrzennej Uniwersytetu Jagiellońskiego 1 lipca 2007 roku. Zakład GISKiT powstał z połączenia działających wcześniej w IGiGP zakładów: Systemów Informacji Geograficznej (GIS) oraz Kartografii i Teledetekcji. - Homepage der Nachfolge-Einrichtung am 14.09.2015 http://www.gis.geo.uj.edu.pl/"]} 1 -2023-07-08 08:18:38.852344 2023-07-08 08:18:38.852358 dcce54ff-abab-4392-b838-72275290a320 {"md5": "b2de83924cf438c87970b6e7e3a88da2", "pid": "976645815", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6045104-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6045104-X", "source": "GND"}], "variant_name": ["Internationale Fachmesse für Thermoprozesstechnik, 8", "International Trade Fair for Thermo-Process Technology, 8", "Internationale Fachmesse Thermprocess, 8", "International Trade Fair Thermprocess, 8"], "preferred_name": "Thermprocess, 8", "country_associated": "gw", "variant_access_point": ["Internationale Fachmesse für Thermoprozesstechnik, 8, 2003, Düsseldorf", "International Trade Fair for Thermo-Process Technology, 8, 2003, Düsseldorf", "Internationale Fachmesse Thermprocess, 8, 2003, Düsseldorf", "International Trade Fair Thermprocess, 8, 2003, Düsseldorf"], "authorized_access_point": "Thermprocess, 8, 2003, Düsseldorf"} 1 -2023-07-08 08:18:38.970527 2023-07-08 08:18:38.970572 35537094-06d0-4aaf-8aec-ec1b84405b09 {"md5": "b1a85fc2d819921b70b557977f7b5d7b", "pid": "97664830X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6045528-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6045528-7", "source": "GND"}], "variant_name": ["ESCAR Conference"], "preferred_name": "ESCAR-Tagung", "country_associated": "gw", "variant_access_point": ["ESCAR Conference, 2003, Köln"], "authorized_access_point": "ESCAR-Tagung, 2003, Köln"} 1 -2023-07-08 08:18:39.086712 2023-07-08 08:18:39.086725 9b6d39ea-180f-4d13-8c82-7ee9ecf44a25 {"md5": "d9a6bd2adf00f5b47d41c5c3eaa2aa00", "pid": "976660970", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/3062366-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3062366-2", "source": "GND"}], "preferred_name": "Arbeitskreis Straßenbauabfälle Rheinland-Pfalz", "country_associated": "gw", "authorized_access_point": "Arbeitskreis Straßenbauabfälle Rheinland-Pfalz", "biographical_information": ["Mitglieder aus verschiedenen Organisationen"]} 1 -2023-07-08 08:18:39.188857 2023-07-08 08:18:39.188866 4a6ec7df-bc75-4224-a367-1fdab5e12448 {"md5": "c67d066179855b4a28327580daa9eaab", "pid": "976760681", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10117933-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10117933-9", "source": "GND"}], "variant_name": ["Exposition Claude Viallat - Peintures Récentes & Objets"], "preferred_name": "Exposition Claude Viallat - Peintures Récentes et Objets", "country_associated": "fr", "variant_access_point": ["Exposition Claude Viallat - Peintures Récentes & Objets, 2005, Toulon"], "authorized_access_point": "Exposition Claude Viallat - Peintures Récentes et Objets, 2005, Toulon"} 1 -2023-07-08 08:18:39.276185 2023-07-08 08:18:39.276195 843a50e8-766a-409e-8f64-be5e40805e85 {"md5": "3b6bba9d59d864ff3efb788bee3778ec", "pid": "976796694", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10118276-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10118276-4", "source": "GND"}], "variant_name": ["Symposium on Stochastic Algorithms, Foundations and Applications, 3"], "preferred_name": "SAGA, 3", "variant_access_point": ["Symposium on Stochastic Algorithms, Foundations and Applications, 3, 2005, Moskau"], "authorized_access_point": "SAGA, 3, 2005, Moskau"} 1 -2023-07-08 08:18:39.378155 2023-07-08 08:18:39.378164 a3238412-c48b-4a70-8271-7c7c9c870ef8 {"md5": "0b5eeec106eacf4369630531776fbe12", "pid": "976913445", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6046532-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6046532-3", "source": "GND"}], "preferred_name": "Konferencja Naukowo-Techniczna Polski Przemysł i Zapleczne Naprawcze Transportu Kolejowego w Warunkach Konkurencji na Europejskim Rynku Kolejowym", "country_associated": "pl", "authorized_access_point": "Konferencja Naukowo-Techniczna Polski Przemysł i Zapleczne Naprawcze Transportu Kolejowego w Warunkach Konkurencji na Europejskim Rynku Kolejowym, 2004, Zakopane"} 1 -2023-07-08 08:18:39.48059 2023-07-08 08:18:39.4806 a303a5a1-7dbf-4f94-b287-9111dbba6265 {"md5": "ccdb1b0c40c54875ab1d2b0923d480a8", "pid": "97693681X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10119433-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10119433-X", "source": "GND"}], "preferred_name": "Seminar In the Place of the Public Sphere", "country_associated": "dk", "authorized_access_point": "Seminar In the Place of the Public Sphere, 2002, Odense"} 1 -2023-07-08 08:18:39.588357 2023-07-08 08:18:39.588363 bea33ac0-3104-4cbc-b98a-79ef839678ea {"md5": "dca857dd624c12278aaf9ef8b4932b71", "pid": "97694247X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10119485-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10119485-7", "source": "GND"}], "preferred_name": "Interessengemeinschaft Piestinger Wirtschaft", "country_associated": "au", "authorized_access_point": "Interessengemeinschaft Piestinger Wirtschaft"} 1 -2023-07-08 08:18:39.687409 2023-07-08 08:18:39.68742 72c8ccbd-3ddf-46f5-b1e4-b588a48b5b5f {"md5": "3cc7379cd7ab7cccf190a295bdfd186e", "pid": "977057763", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6507713-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6507713-1", "source": "GND"}], "preferred_name": "International Workshop on Psychogenic Movement Disorders", "authorized_access_point": "International Workshop on Psychogenic Movement Disorders, 2003"} 1 -2023-07-08 08:18:39.793597 2023-07-08 08:18:39.793608 e5fd23e8-7c2c-420d-b6d0-fd36453d39ec {"md5": "108b4f695bd4f929ae3f4850244184f4", "pid": "977094332", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10120516-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10120516-8", "source": "GND"}], "variant_name": ["Kolledž Kulʹtury i Iskusstv"], "preferred_name": "Marijskij Respublikanskij Kolledž Kulʹtury i Iskusstv", "country_associated": "ru", "variant_access_point": ["Kolledž Kulʹtury i Iskusstv. Joschkar-Ola"], "authorized_access_point": "Marijskij Respublikanskij Kolledž Kulʹtury i Iskusstv. Joschkar-Ola"} 1 -2023-07-08 08:18:39.910532 2023-07-08 08:18:39.910543 5623e8fb-20c6-4aee-a388-4808a6c537d6 {"md5": "409c4f191265b468e287c793e51d093f", "pid": "977270866", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10121673-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10121673-7", "source": "GND"}], "preferred_name": "Sozialdemokratische Partei Deutschlands. Kreis. Abteilung, 3", "country_associated": "gw", "authorized_access_point": "Sozialdemokratische Partei Deutschlands. Kreis. Schöneberg, Berlin. Abteilung, 3"} 1 -2023-07-08 08:18:40.045285 2023-07-08 08:18:40.045301 73ebcbc6-24a8-40bc-b8a1-ff72d7dd1989 {"md5": "d838b37ce09d8de8da23186f87b8cc04", "pid": "977320545", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6047238-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6047238-8", "source": "GND"}], "variant_name": ["International Conference on Software Engineering Research, Management and Applications, 3", "ACIS International Conference on Software Engineering Research, Management and Applications, 3"], "preferred_name": "SERA, 3", "country_associated": "xxu", "variant_access_point": ["International Conference on Software Engineering Research, Management and Applications, 3, 2005, Mount Pleasant, Mich.", "ACIS International Conference on Software Engineering Research, Management and Applications, 3, 2005, Mount Pleasant, Mich."], "authorized_access_point": "SERA, 3, 2005, Mount Pleasant, Mich."} 1 -2023-07-08 08:18:40.145374 2023-07-08 08:18:40.145386 75996615-f326-4b68-89e2-17b96708f9e8 {"md5": "faf3b5361f7afe970e115f6ce7e131ba", "pid": "977327523", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/5570815-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5570815-8", "source": "GND"}], "preferred_name": "F-Chart Software", "country_associated": "xxu", "authorized_access_point": "F-Chart Software. Madison, Wis."} 1 -2023-07-08 08:18:47.213718 2023-07-08 08:18:47.21373 fa75a2d7-9662-4d89-83a1-f31e2f4a9c6e {"md5": "ed427ee6c0a5836c5aea6319062dfee2", "pid": "983491550", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6514887-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6514887-3", "source": "GND"}], "variant_name": ["DTB"], "preferred_name": "Dialog Textil-Bekleidung", "country_associated": "gw", "variant_access_point": ["DTB. Abkuerzung"], "authorized_access_point": "Dialog Textil-Bekleidung. Heimstetten"} 1 -2023-07-08 08:18:40.263693 2023-07-08 08:18:40.263702 52977f12-68c7-4606-b6bc-c326fada896a {"md5": "4147bbd32cd7cb9f4bbfc9842bc3480d", "pid": "977330281", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/5571091-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5571091-8", "source": "GND"}], "variant_name": ["International Film Festival, 39"], "preferred_name": "Thessaloniki International Film Festival, 39", "country_associated": "gr", "variant_access_point": ["International Film Festival, 39, 1998, Thessaloniki"], "authorized_access_point": "Thessaloniki International Film Festival, 39, 1998, Thessaloniki"} 1 -2023-07-08 08:18:40.377064 2023-07-08 08:18:40.377073 30c5f0f1-5f1f-482d-940c-799b41478c54 {"md5": "5efdd9de6a444f395dbcadd231afc4d0", "pid": "977508102", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10122049-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10122049-2", "source": "GND"}], "preferred_name": "Themenforum Aviäre Influenza - Hintergründe, Informationen und Perspektiven", "authorized_access_point": "Themenforum Aviäre Influenza - Hintergründe, Informationen und Perspektiven, 2005, Hannover"} 1 -2023-07-08 08:18:40.492086 2023-07-08 08:18:40.49209 a1a3f58f-de89-414d-8a97-fc1c48eb5b7c {"md5": "1d072ed77067af7247c42ed799cf698d", "pid": "977725022", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6047942-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6047942-5", "source": "GND"}], "preferred_name": "Hanse-Compagnie", "country_associated": "gw", "date_of_establishment": "1995", "authorized_access_point": "Hanse-Compagnie. Hamburg"} 1 -2023-07-08 08:18:40.612255 2023-07-08 08:18:40.612266 fd15e547-53d7-4935-8942-6804775c6dcf {"md5": "0e4907337d08782942656691d003f70b", "pid": "977939359", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10123682-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10123682-7", "source": "GND"}], "variant_name": ["Studienseminar"], "preferred_name": "Studienseminar für Lehrämter an Schulen", "country_associated": "gw", "variant_access_point": ["Studienseminar. Hamm (Westf)"], "authorized_access_point": "Studienseminar für Lehrämter an Schulen. Hamm (Westf)"} 1 -2023-07-08 08:18:40.738393 2023-07-08 08:18:40.738407 84e7c929-351f-4e47-aeaf-b54c4524c524 {"md5": "01990f957fd94b4838ebdf9704c913a3", "pid": "977998827", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10123962-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10123962-2", "source": "GND"}], "preferred_name": "Round Table on Transport Economics, 25", "country_associated": "fr", "authorized_access_point": "Round Table on Transport Economics, 25, 1974, Paris"} 1 -2023-07-08 08:18:40.844052 2023-07-08 08:18:40.844062 9ad26cbe-0faa-4e99-8b39-620a3890d58b {"md5": "d07ee708cd33e2eae6afc111ff89e7bf", "pid": "978057414", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6048231-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6048231-X", "source": "GND"}], "variant_name": ["Konferencja Naukowo-Techniczna Metrologia w Technikach Wytwarzania, 11"], "preferred_name": "Krajowa Konferencja Naukowo-Techniczna Metrologia w Technikach Wytwarzania, 11", "country_associated": "pl", "variant_access_point": ["Konferencja Naukowo-Techniczna Metrologia w Technikach Wytwarzania, 11, 2005, Lublin"], "authorized_access_point": "Krajowa Konferencja Naukowo-Techniczna Metrologia w Technikach Wytwarzania, 11, 2005, Lublin"} 1 -2023-07-08 08:18:40.960659 2023-07-08 08:18:40.960671 828c5ebc-9bee-40c4-9977-1247f130dd9b {"md5": "e196a54dd4bf32cb15b1038542047940", "pid": "978237064", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6049331-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6049331-8", "source": "GND"}], "variant_name": ["BV"], "preferred_name": "Bürgerverein", "country_associated": "gw", "variant_access_point": ["BV. Jever"], "authorized_access_point": "Bürgerverein. Jever"} 1 -2023-07-08 08:18:41.071552 2023-07-08 08:18:41.071561 f4782544-be7d-4641-bb61-a2a2d89c3b64 {"md5": "1d91287ac274740f997982742e60eb73", "pid": "97824723X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10125411-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10125411-8", "source": "GND"}], "variant_name": ["Holstein-Verband", "DHV", "Deutscher Holstein-Verband e.V."], "preferred_name": "Deutscher Holstein-Verband", "country_associated": "gw", "variant_access_point": ["Holstein-Verband. Deutschland", "DHV. Abkuerzung", "Deutscher Holstein-Verband e.V.. Unveraenderte Form"], "authorized_access_point": "Deutscher Holstein-Verband"} 1 -2023-07-08 08:18:41.178368 2023-07-08 08:18:41.178374 ce217c8f-212c-4b20-b4ef-c3504a0ddb51 {"md5": "8009681aca5903a1c3e442aa6b575ba8", "pid": "978328582", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6049931-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6049931-X", "source": "GND"}], "preferred_name": "European Coatings Conference The Power of Ink-Jet Materials, 3", "authorized_access_point": "European Coatings Conference The Power of Ink-Jet Materials, 3, 2005, Berlin"} 1 -2023-07-08 08:18:41.281472 2023-07-08 08:18:41.281481 7df450c1-4d7e-4a61-9d85-cf30eb28bd5c {"md5": "dd92f4bea685963d3d600cba478a3101", "pid": "978329953", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6050087-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6050087-6", "source": "GND"}], "preferred_name": "Rocking Highlanders", "country_associated": "xxu", "authorized_access_point": "Rocking Highlanders"} 1 -2023-07-08 08:18:41.387674 2023-07-08 08:18:41.387683 54994a40-025c-4bf8-94dc-d68235d257e8 {"md5": "bd691d145c42186bf7a3a4f8601b430c", "pid": "978348168", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10126085-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10126085-4", "source": "GND"}], "preferred_name": "Autorengruppe Scriptum", "country_associated": "gw", "date_of_establishment": "1998", "authorized_access_point": "Autorengruppe Scriptum", "biographical_information": ["Teilnehmer aus verschied. Generationen aktuell (2005): Dieter Bahr, Bollendorf; Monika Borsch, Wittlich; Maria Bernhardt, Daun; Jutta Federkeil, Bergweiler; Dominik Heintzen, Neuerburg; Margarethe Krieger, Enkirch; Marita Schlax, Wittlich; Helmuth Schleder, Hillesheim; hervorgegangen aus Teilnehmern der Seminarreihe \\"Worte aus der Stille\\" von Rüdiger Heins im Kloster Himmerod"]} 1 -2023-07-08 08:18:41.483793 2023-07-08 08:18:41.483806 7fa2b85e-5210-476b-8370-49925bb7b853 {"md5": "fa22a2d9081cd14bed2117685dccaa6d", "pid": "978367316", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10126236-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10126236-X", "source": "GND"}], "variant_name": ["Traveling Exhibition The Quiet Landscapes of William B. Post"], "preferred_name": "Exhibition The Quiet Landscapes of William B. Post", "country_associated": "xxu", "variant_access_point": ["Traveling Exhibition The Quiet Landscapes of William B. Post, 2005 - 2007, Minneapolis, Minn. u.a."], "authorized_access_point": "Exhibition The Quiet Landscapes of William B. Post, 2005 - 2007, Minneapolis, Minn. u.a."} 1 -2023-07-08 08:18:41.589467 2023-07-08 08:18:41.589482 f1adf934-4a9b-46f0-a907-b48ab201f82e {"md5": "67949869fee6b4ce1b5daf80a5ac1efa", "pid": "97845992X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10126833-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10126833-6", "source": "GND"}], "variant_name": ["Konference Simts Gadu Kopā ar Vili Lāci", "Conference A Hundred Years Together with Vilis Lācis"], "preferred_name": "Konference 100 Gadu Kopā ar Vili Lāci", "variant_access_point": ["Konference Simts Gadu Kopā ar Vili Lāci, 2004, Rīga", "Conference A Hundred Years Together with Vilis Lācis, 2004, Rīga"], "authorized_access_point": "Konference 100 Gadu Kopā ar Vili Lāci, 2004, Rīga"} 1 -2023-07-08 08:18:41.712184 2023-07-08 08:18:41.712194 b7224a98-2dbe-45f2-81bc-d6da905e0d6d {"md5": "e5ef7250f4b42c733db6960e12cbd573", "pid": "978499298", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10127100-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10127100-1", "source": "GND"}], "variant_name": ["Karlsruher Kongress Kinder Bewegen, 1"], "preferred_name": "Kongress Kinder Bewegen, 1", "variant_access_point": ["Karlsruher Kongress Kinder Bewegen, 1, 2004, Karlsruhe"], "authorized_access_point": "Kongress Kinder Bewegen, 1, 2004, Karlsruhe"} 1 -2023-07-08 08:18:41.810863 2023-07-08 08:18:41.810874 f6f78409-f2d2-496e-837a-e0bbe8b13900 {"md5": "4d5784413cfdab8f06a1eb2a81fdb761", "pid": "978581717", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10127812-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10127812-3", "source": "GND"}], "variant_name": ["Timebandits Films"], "preferred_name": "Timebandits Films GmbH", "country_associated": "gw", "variant_access_point": ["Timebandits Films. Potsdam"], "authorized_access_point": "Timebandits Films GmbH. Potsdam"} 1 -2023-07-08 08:18:41.946753 2023-07-08 08:18:41.94676 cc080156-5eda-4ec9-8c3a-410b1d9acf73 {"md5": "32c98b4c641aa9bb3075cbe502f3a202", "pid": "978978862", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10132298-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10132298-7", "source": "GND"}], "preferred_name": "Institut für Denkmalpflege der DDR. Arbeitsstelle", "authorized_access_point": "Institut für Denkmalpflege der DDR. Berlin, Ost. Arbeitsstelle. Halle (Saale)"} 1 -2023-07-08 08:18:42.03948 2023-07-08 08:18:42.039491 ef19dc0d-58b0-4d70-ac2e-a8cc85787fea {"md5": "1b1948846d40a5a8fe228cc70f67f52e", "pid": "978983149", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/3063359-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3063359-X", "source": "GND"}], "variant_name": ["Scientific Conference Africa: Societies, Culture, Languages"], "preferred_name": "Naučnaja Konferencija Afrika: Obščestva, Kul'tury, Jazyki", "country_associated": "ru", "variant_access_point": ["Scientific Conference Africa: Societies, Culture, Languages, 2003, Sankt Petersburg"], "authorized_access_point": "Naučnaja Konferencija Afrika: Obščestva, Kul'tury, Jazyki, 2003, Sankt Petersburg"} 1 -2023-07-08 08:18:42.147011 2023-07-08 08:18:42.147022 4176a281-058f-4620-9f8a-6d3aa5036039 {"md5": "319ada9eafaa4f9c81873b8463d7f741", "pid": "979116791", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6052413-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6052413-3", "source": "GND"}], "preferred_name": "Workshop on the Foundation of Middleware Technologies", "country_associated": "xxu", "authorized_access_point": "Workshop on the Foundation of Middleware Technologies, 2002, Irvine, Calif."} 1 -2023-07-08 08:18:42.282719 2023-07-08 08:18:42.282724 9072d3ec-d844-46be-ad8b-6cb9aa3cc9e8 {"md5": "a59b6e9472d091463b185959c0c46b87", "pid": "979117453", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6052482-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6052482-0", "source": "GND"}], "preferred_name": "Archiving Conference, 2", "country_associated": "xxu", "authorized_access_point": "Archiving Conference, 2, 2005, Washington, DC"} 1 -2023-07-08 08:18:42.409728 2023-07-08 08:18:42.409737 78937fe3-a31e-43da-bf88-b858981aff62 {"md5": "f3dee8b42e1b338bfc27b65783a5be5e", "pid": "979150949", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6509771-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6509771-3", "source": "GND"}], "variant_name": ["Falk Symposium on Colitis: Diagnosis and Therapeutic Strategies"], "preferred_name": "Falk Symposium, 147", "country_associated": "xxk", "variant_access_point": ["Falk Symposium on Colitis: Diagnosis and Therapeutic Strategies, 2005, Birmingham"], "authorized_access_point": "Falk Symposium, 147, 2005, Birmingham"} 1 -2023-07-08 08:18:42.517574 2023-07-08 08:18:42.517587 323e558f-d733-4f7c-808f-e281945fe004 {"md5": "0e066b33829ebd19e3d2aad19ac3e41e", "pid": "979243440", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10134047-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10134047-3", "source": "GND"}], "preferred_name": "Ausstellung Max Ackermann - vom Gegenstand zur Abstraktion - die Jahre am Bodensee", "country_associated": "gw", "authorized_access_point": "Ausstellung Max Ackermann - vom Gegenstand zur Abstraktion - die Jahre am Bodensee, 2004, Konstanz"} 1 -2023-07-08 08:18:52.505348 2023-07-08 08:18:52.505366 e6d97d2c-397e-44ab-b8b4-e703e6cbc5d8 {"md5": "e877280a93a05eb5874202d60f3ade84", "pid": "988152819", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10199847-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10199847-8", "source": "GND"}], "preferred_name": "Exhibition Karen Kilimnik", "country_associated": "xxu", "authorized_access_point": "Exhibition Karen Kilimnik, 2007 - 2008, Philadelphia, Pa. u.a."} 1 -2023-07-08 08:18:42.641632 2023-07-08 08:18:42.64164 fd8adf28-9bb8-4e38-a1ca-ed0d86e7e29a {"md5": "b838f073a81b887bd185e042eebd1421", "pid": "979248566", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10134086-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10134086-2", "source": "GND"}], "variant_name": ["Institut für Elektrotechnik und Informationstechnik", "Universität Paderborn. Fakultät für Elektrotechnik, Informatik und Mathematik. Institut für Elektrotechnik und Informationstechnik", "Universität Paderborn. Fakultät für Elektrotechnik, Informatik und Mathematik. Department of Electrical Engineering", "Universität Paderborn. Department of Electrical Engineering", "Department of Electrical Engineering"], "preferred_name": "Universität Paderborn. Institut für Elektrotechnik und Informationstechnik", "country_associated": "gw", "variant_access_point": ["Institut für Elektrotechnik und Informationstechnik. Paderborn", "Universität Paderborn. Fakultät für Elektrotechnik, Informatik und Mathematik. Institut für Elektrotechnik und Informationstechnik", "Universität Paderborn. Fakultät für Elektrotechnik, Informatik und Mathematik. Department of Electrical Engineering", "Universität Paderborn. Department of Electrical Engineering", "Department of Electrical Engineering. Paderborn"], "authorized_access_point": "Universität Paderborn. Institut für Elektrotechnik und Informationstechnik"} 1 -2023-07-08 08:18:42.765539 2023-07-08 08:18:42.765552 fdf9b63a-1916-445b-9687-aa010db03bc8 {"md5": "972245bf9d8216a0be8b2f27b45dbaa3", "pid": "979300649", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6509942-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6509942-4", "source": "GND"}], "preferred_name": "Exhibition Fashion in Colors", "country_associated": "xxu", "authorized_access_point": "Exhibition Fashion in Colors, 2005 - 2006, New York, NY"} 1 -2023-07-08 08:18:42.880433 2023-07-08 08:18:42.880444 2a77823b-ef09-4f46-87bb-e0134c7990b8 {"md5": "56886b926dd978b80d510da0c90c68fa", "pid": "97935272X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10134696-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10134696-7", "source": "GND"}], "variant_name": ["Cairn"], "preferred_name": "Cairn Energy Plc", "country_associated": "xxk", "variant_access_point": ["Cairn. Edinburgh"], "authorized_access_point": "Cairn Energy Plc. Edinburgh"} 1 -2023-07-08 08:18:42.984453 2023-07-08 08:18:42.984467 15e4800f-a0bd-4c0e-92ac-3d6c10cb6173 {"md5": "91c18d404d69a969d27d4f10e4df2793", "pid": "979530083", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10135751-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10135751-5", "source": "GND"}], "variant_name": ["Fondazione Casa di Oriani"], "preferred_name": "Ente Casa di Oriani", "country_associated": "it", "variant_access_point": ["Fondazione Casa di Oriani. Ravenna"], "authorized_access_point": "Ente Casa di Oriani. Ravenna"} 1 -2023-07-08 08:18:43.136758 2023-07-08 08:18:43.136769 6073d6a5-15ee-4b34-8d60-8e4c1404ae8a {"md5": "3f69423687b1e0a17aad61f466656d0d", "pid": "979571839", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6053641-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6053641-X", "source": "GND"}], "variant_name": ["CEAS-KATnet Conference on Key Aerodynamic Technologies"], "preferred_name": "Conference on Key Aerodynamic Technologies", "country_associated": "gw", "variant_access_point": ["CEAS-KATnet Conference on Key Aerodynamic Technologies, 2005, Bremen"], "authorized_access_point": "Conference on Key Aerodynamic Technologies, 2005, Bremen"} 1 -2023-07-08 08:18:43.256523 2023-07-08 08:18:43.256537 ac844a63-6228-4982-a79b-7a3dfa738319 {"md5": "032e3b908c4a07aafe5c681c352526b1", "pid": "979582407", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/3063656-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3063656-5", "source": "GND"}], "preferred_name": "Weinbrennerei Scharlachberg", "country_associated": "gw", "authorized_access_point": "Weinbrennerei Scharlachberg. Bingen"} 1 -2023-07-08 08:18:43.403581 2023-07-08 08:18:43.403586 33dae6f1-78ac-4f14-b13e-4db25694be2c {"md5": "687fa4f9a91bc37c556e1b89c1c7a4d5", "pid": "979721474", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10136752-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10136752-1", "source": "GND"}], "variant_name": ["Internationale Fachausstellung für das Hotel-, Gaststättengewerbe und Konditorenhandwerk, 23", "International Trade Fair for the Hotel, Catering and Confectionery Trades, 23", "Salon Professionell International de l'Hôtellerie, de la Restauration et de la Pâtisserie, 23", "Fiera Internazionale Specializzata nell'Industria Alberghiera e Gastronomica e nell'Arte Dolciaria, 23"], "preferred_name": "Intergastra, 23", "country_associated": "gw", "variant_access_point": ["Internationale Fachausstellung für das Hotel-, Gaststättengewerbe und Konditorenhandwerk, 23, 2006, Stuttgart", "International Trade Fair for the Hotel, Catering and Confectionery Trades, 23, 2006, Stuttgart", "Salon Professionell International de l'Hôtellerie, de la Restauration et de la Pâtisserie, 23, 2006, Stuttgart", "Fiera Internazionale Specializzata nell'Industria Alberghiera e Gastronomica e nell'Arte Dolciaria, 23, 2006, Stuttgart"], "authorized_access_point": "Intergastra, 23, 2006, Stuttgart"} 1 -2023-07-08 08:18:43.51331 2023-07-08 08:18:43.513316 2355c86a-0787-4f32-9212-11604998be97 {"md5": "26b400873a6dcb28cb568023c673275d", "pid": "979910978", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6054776-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6054776-5", "source": "GND"}], "preferred_name": "International Technical Automotive Conference", "authorized_access_point": "International Technical Automotive Conference, 2005, Dresden"} 1 -2023-07-08 08:18:43.625163 2023-07-08 08:18:43.625177 6871a606-6cfb-4aac-b346-43566f73d1a6 {"md5": "ba28935faa8fa9708b87201a07dd67cf", "pid": "980047277", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10139096-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10139096-8", "source": "GND"}], "preferred_name": "Arbeitsgemeinschaft für Heimatpflege in Stadt- und Landkreis Liegnitz", "authorized_access_point": "Arbeitsgemeinschaft für Heimatpflege in Stadt- und Landkreis Liegnitz"} 1 -2023-07-08 08:18:43.76253 2023-07-08 08:18:43.762537 cfee74ea-bbcf-4a95-b45d-4f50ae56969c {"md5": "137355198eeffb31640160e2b02d24ca", "pid": "980202078", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6055638-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6055638-9", "source": "GND"}], "variant_name": ["International Symposium on Recent Advances in Ceramic-Matrix Composites and Geopolymers"], "preferred_name": "International Symposium on Recent Advances in Ceramic Matrix Composites and Geopolymers", "country_associated": "xxu", "variant_access_point": ["International Symposium on Recent Advances in Ceramic-Matrix Composites and Geopolymers, 2005, Baltimore, Md."], "authorized_access_point": "International Symposium on Recent Advances in Ceramic Matrix Composites and Geopolymers, 2005, Baltimore, Md."} 1 -2023-07-08 08:18:43.87237 2023-07-08 08:18:43.872385 8773977d-9492-4550-a9f1-74f04db2e29a {"md5": "676fe6d7a1fc5ff649d1948f68cb566b", "pid": "98022540X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10140247-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10140247-8", "source": "GND"}], "preferred_name": "Bund Deutscher Baumschulen. Landesverband Weser-Ems", "country_associated": "gw", "authorized_access_point": "Bund Deutscher Baumschulen. Landesverband Weser-Ems"} 1 -2023-07-08 08:18:43.990456 2023-07-08 08:18:43.990465 d65586d4-3d9b-46d9-bfbc-3573c2185ff7 {"md5": "3d356a444465e1aac0754e6061127718", "pid": "980348749", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6511095-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6511095-X", "source": "GND"}], "variant_name": ["HealthGrid 2006 Conference, 4"], "preferred_name": "HealthGrid Conference, 4", "country_associated": "sp", "variant_access_point": ["HealthGrid 2006 Conference, 4, 2006, Valencia"], "authorized_access_point": "HealthGrid Conference, 4, 2006, Valencia"} 1 -2023-07-08 08:18:44.094584 2023-07-08 08:18:44.094597 c4ca34fd-ec0d-4333-94e6-28a874f1eeb1 {"md5": "1e1f828bb46e680e29f65d0d41747ce1", "pid": "980351189", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/3064016-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3064016-7", "source": "GND"}], "preferred_name": "Ausstellung: Bo Bonfils, Per Arnoldi", "country_associated": "gw", "authorized_access_point": "Ausstellung: Bo Bonfils, Per Arnoldi, 1989, Essen"} 1 -2023-07-08 08:18:44.216447 2023-07-08 08:18:44.216461 8690acdd-6c5e-43f9-841f-9e04894856dd {"md5": "bb41ac0c9a6151b4dc3a1ebfa007ef0f", "pid": "980351952", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/3064096-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3064096-9", "source": "GND"}], "variant_name": ["DLF", "Délégation à la langue française"], "preferred_name": "Conférence intercantonale de l'instruction publique de la Suisse romande et du Tessin. Délégation à la langue française", "country_associated": "sz", "variant_access_point": ["DLF. Abkuerzung", "Délégation à la langue française"], "date_of_establishment": "2007", "authorized_access_point": "Conférence intercantonale de l'instruction publique de la Suisse romande et du Tessin. Délégation à la langue française"} 1 -2023-07-08 08:18:44.339021 2023-07-08 08:18:44.339033 84320ad7-417a-4ba2-8acf-abaf596ef3c9 {"md5": "49bc3a090cbaef9544ed1734fee4639f", "pid": "980433401", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10141761-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10141761-5", "source": "GND"}], "preferred_name": "Foire", "authorized_access_point": "Foire, 1958, Belgrad"} 1 -2023-07-08 08:18:44.44816 2023-07-08 08:18:44.448174 3578d483-4a7b-4cc3-8477-3872594a0259 {"md5": "ab53e9e3836c0a6e45d62a9b8b5cee4d", "pid": "980446775", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10141860-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10141860-7", "source": "GND"}], "preferred_name": "Ausstellung Marie Raymond - Yves Klein", "country_associated": "gw", "authorized_access_point": "Ausstellung Marie Raymond - Yves Klein, 2006, Koblenz"} 1 -2023-07-08 08:18:44.580198 2023-07-08 08:18:44.58021 5da77795-51ec-4ca0-8c0c-706bbcbd64b7 {"md5": "1aead0d54802c61d9281a40e02aa52a4", "pid": "980496705", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10142193-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10142193-X", "source": "GND"}], "preferred_name": "Konzert- und Gastspieldirektion", "authorized_access_point": "Konzert- und Gastspieldirektion. Gera"} 1 -2023-07-08 08:18:44.681214 2023-07-08 08:18:44.681224 b3a0f942-e337-4b5a-a27a-5a76a158fdf9 {"md5": "654213f6f0c7958292b75aa7f8bb3025", "pid": "980499607", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10142240-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10142240-4", "source": "GND"}], "variant_name": ["Turnerschaft Achtzehnhundertfünfundneunzig"], "preferred_name": "Turnerschaft 1895", "country_associated": "gw", "variant_access_point": ["Turnerschaft Achtzehnhundertfünfundneunzig. Ober-Roden"], "authorized_access_point": "Turnerschaft 1895. Ober-Roden"} 1 -2023-07-08 08:18:44.796462 2023-07-08 08:18:44.796475 35cdb56e-60fb-4996-9fa2-c4e09c3cfcb6 {"md5": "133f51a6a2b02166007e7fc92384b70c", "pid": "980601851", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10142953-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10142953-8", "source": "GND"}], "preferred_name": "Verein für Geologie", "authorized_access_point": "Verein für Geologie. Saalfeld/Saale"} 1 -2023-07-08 08:18:46.879949 2023-07-08 08:18:46.87996 949da7c9-c5f4-4dd1-aaa3-648b0e827adf {"md5": "877ade34692c661d7a6d9c45fe8680d0", "pid": "982961308", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6061967-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6061967-3", "source": "GND"}], "variant_name": ["Industrieverband für Bausysteme im Metallleichtbau e.V.", "IFBS"], "preferred_name": "Industrieverband für Bausysteme im Metallleichtbau", "country_associated": "gw", "date_of_termination": "05.05.2011", "variant_access_point": ["Industrieverband für Bausysteme im Metallleichtbau e.V.. Unveraenderte Form", "IFBS. Abkuerzung"], "date_of_establishment": "12.04.2005", "authorized_access_point": "Industrieverband für Bausysteme im Metallleichtbau"} 1 -2023-07-08 08:18:44.896462 2023-07-08 08:18:44.896472 532ecf92-1b56-41cb-bcb9-68cdd5b2d597 {"md5": "58bc7bbe9fa4872899f534ed56911950", "pid": "980793017", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10144796-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10144796-6", "source": "GND"}], "variant_name": ["Alonso-Balaguer i Arquitectos Asociados", "Alonso Balaguer i Arquitectes Associats", "Alonso-Balaguer y Arquitectos Asociados", "Alonso Balaguer i Arquitectes Associats", "Alonso, Luis", "Balaguer, Sergio", "Alonso Balaguer y Arquitectos Asociados", "Alonso, Balaguer i Arquitectes Associats", "ABAA", "Alonso, Balaguer y Arquitectos Asociados", "Alonso i Balaguer Arquitectes", "Alonso & Balaguer", "Alonso y Balaguer", "Alonso y Balaguer Arquitectos Asociados", "Alonso Balaguer"], "preferred_name": "Alonso Balaguer i Arquitectos Asociados", "country_associated": "sp", "variant_access_point": ["Alonso-Balaguer i Arquitectos Asociados. Barcelona", "Alonso Balaguer i Arquitectes Associats. Barcelona", "Alonso-Balaguer y Arquitectos Asociados", "Alonso Balaguer i Arquitectes Associats", "Alonso, Luis. Firma", "Balaguer, Sergio. Firma", "Alonso Balaguer y Arquitectos Asociados. Ehemalige Vorzugsbenennung SWD", "Alonso, Balaguer i Arquitectes Associats. Barcelona", "ABAA. Alonso, Balaguer i Arquitectes Associats, Barcelona", "Alonso, Balaguer y Arquitectos Asociados. Barcelona", "Alonso i Balaguer Arquitectes. Barcelona", "Alonso & Balaguer. Barcelona", "Alonso y Balaguer. Barcelona", "Alonso y Balaguer Arquitectos Asociados. Barcelona", "Alonso Balaguer. Barcelona"], "authorized_access_point": "Alonso Balaguer i Arquitectos Asociados. Barcelona", "biographical_information": ["Architekturbüro begründet von Luis Alonso und Sergi Balaguer; weitere Büros in Madrid, Granada und Dubai"]} 1 -2023-07-08 08:18:44.992065 2023-07-08 08:18:44.992076 4c3948bc-f2e7-4b20-bf98-589acc927893 {"md5": "db1e0288751ad9411c1f85f1ef238f8b", "pid": "981031390", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6058091-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6058091-4", "source": "GND"}], "variant_name": ["International Meeting on Boron Chemistry, 12", "International Conference on Boron Chemistry, 12"], "preferred_name": "IMEBORON, 12", "country_associated": "ja", "variant_access_point": ["International Meeting on Boron Chemistry, 12, 2005, Sendai", "International Conference on Boron Chemistry, 12, 2005, Sendai"], "authorized_access_point": "IMEBORON, 12, 2005, Sendai"} 1 -2023-07-08 08:18:45.114401 2023-07-08 08:18:45.114417 a886b350-4009-4a8b-bee0-743d2435b0c3 {"md5": "9d165ce09b7ffac6fe7494a41d2c6f54", "pid": "981339794", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10148645-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10148645-5", "source": "GND"}], "variant_name": ["ECIC, 17"], "preferred_name": "European Chemistry at Interfaces Conference, 17", "country_associated": "xxk", "variant_access_point": ["ECIC, 17, 2005, Loughborough"], "authorized_access_point": "European Chemistry at Interfaces Conference, 17, 2005, Loughborough"} 1 -2023-07-08 08:18:45.229669 2023-07-08 08:18:45.229681 aa74b7fd-21d5-4e7b-a203-6f7cd552f608 {"md5": "559c7076516104b77aefa673dfdf3c7e", "pid": "981426387", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10149238-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10149238-8", "source": "GND"}], "preferred_name": "Tendence Lifestyle", "country_associated": "gw", "authorized_access_point": "Tendence Lifestyle, 2006, Frankfurt am Main"} 1 -2023-07-08 08:18:45.33929 2023-07-08 08:18:45.339304 443b8162-dd4e-409e-b4ab-7df7cf92f0ea {"md5": "9c10b6460d9c213be74e40030fb1bfdf", "pid": "981607705", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10150687-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10150687-9", "source": "GND"}], "variant_name": ["Stadt Saazer Hopfenbauverein in Saaz"], "preferred_name": "Stadt Saazer Hopfenbauverein", "variant_access_point": ["Stadt Saazer Hopfenbauverein in Saaz. Unveraenderte Form"], "authorized_access_point": "Stadt Saazer Hopfenbauverein", "biographical_information": ["Die Ortsangabe ist lt. Statut Bestandteil des Namens"]} 1 -2023-07-08 08:18:45.457159 2023-07-08 08:18:45.457172 6a9ba425-04c9-4d45-8b0f-fb7a8e4fe73c {"md5": "1de76719969fda16edc0891b8c7a3010", "pid": "981642551", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10150926-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10150926-1", "source": "GND"}], "preferred_name": "Witnessing of God's Love Foundation", "country_associated": "ne", "authorized_access_point": "Witnessing of God's Love Foundation", "biographical_information": ["Sitz: Eindhoven"]} 1 -2023-07-08 08:18:45.565436 2023-07-08 08:18:45.565452 fa4b057f-029a-41bd-a6bd-9f2ba167e760 {"md5": "74a83b4275d1035c03b1ad791f119fd7", "pid": "981663753", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10151063-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10151063-9", "source": "GND"}], "variant_name": ["TSC"], "preferred_name": "Texas Southmost College", "country_associated": "xxu", "variant_access_point": ["TSC. Abkuerzung"], "authorized_access_point": "Texas Southmost College. Brownsville, Tex."} 1 -2023-07-08 08:18:45.671094 2023-07-08 08:18:45.671106 365c7435-3a43-4ed0-84eb-9f958c13f684 {"md5": "ddc9079c16b90e568565fdfe31995985", "pid": "981823866", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10152515-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10152515-1", "source": "GND"}], "variant_name": ["Cecilienschule Verbunden mit Studienanstalt Realgymnasialer Richtung"], "preferred_name": "Cecilienschule Verbunden mit Studienanstalt Realgymnasialer Richtung", "variant_access_point": ["Cecilienschule Verbunden mit Studienanstalt Realgymnasialer Richtung. Berlin-Wilmersdorf"], "authorized_access_point": "Cecilienschule Verbunden mit Studienanstalt Realgymnasialer Richtung. Wilmersdorf"} 1 -2023-07-08 08:18:46.995601 2023-07-08 08:18:46.995612 b8f79e4a-a8f1-4dd2-a26b-ca86d510a2da {"md5": "5fd98fb9b522f01044853763a6bb285a", "pid": "982994818", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10160599-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10160599-7", "source": "GND"}], "preferred_name": "Fachtagung Technische Kunststoffe - Leistungspotenziale und Trends", "country_associated": "gw", "authorized_access_point": "Fachtagung Technische Kunststoffe - Leistungspotenziale und Trends, 2006, Würzburg"} 1 -2023-07-08 08:18:45.791367 2023-07-08 08:18:45.791381 dc4ee3ca-c7af-418a-911a-8962a40a738e {"md5": "438b3084b3cdcfa349da0974b25ec85c", "pid": "981883427", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6060089-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6060089-5", "source": "GND"}], "variant_name": ["Brandenburg. Hoff-Raths Canzley", "Hoch-Fürstlich Brandenburgische Hoff-Raths Canzley", "Hochfürstlich Brandenburgische Hofrats-Kanzlei", "Brandenburg. Canzley", "Brandenburg. Kanzlei", "Fürstliche Canzley", "Fürstliche Kanzlei", "Brandenburg. Hofrats-Kanzlei"], "preferred_name": "Brandenburg. Hofrats-Kanzlei", "variant_access_point": ["Brandenburg. Hoff-Raths Canzley", "Hoch-Fürstlich Brandenburgische Hoff-Raths Canzley", "Hochfürstlich Brandenburgische Hofrats-Kanzlei", "Brandenburg. Canzley", "Brandenburg. Kanzlei", "Fürstliche Canzley. Brandenburg", "Fürstliche Kanzlei. Brandenburg", "Brandenburg. Staat. Hofrats-Kanzlei. Alte Ansetzungsform"], "authorized_access_point": "Brandenburg. Hofrats-Kanzlei"} 1 -2023-07-08 08:18:45.889095 2023-07-08 08:18:45.889109 1152316e-0e7f-4e1b-8b59-973d0c335801 {"md5": "9a23d77b83d8e16f57cf57e1132f6209", "pid": "98195314X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10153383-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10153383-4", "source": "GND"}], "variant_name": ["Herschel Society"], "preferred_name": "William Herschel Society", "country_associated": "xxk", "variant_access_point": ["Herschel Society"], "authorized_access_point": "William Herschel Society"} 1 -2023-07-08 08:18:46.040987 2023-07-08 08:18:46.040992 9148b0d9-1946-4fdc-a3da-3633ef7027f4 {"md5": "7b5d0fb0856c3ecf02f3213fbe195e95", "pid": "981996833", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6060233-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6060233-8", "source": "GND"}], "preferred_name": "Freiwillige Feuerwehr", "country_associated": "gw", "authorized_access_point": "Freiwillige Feuerwehr. Brietlingen"} 1 -2023-07-08 08:18:46.155767 2023-07-08 08:18:46.15578 f9982210-daf4-4865-97c1-ad11fd9113d6 {"md5": "154ddb6189b3e8ccfb52878449ce06ce", "pid": "98208823X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6513311-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6513311-0", "source": "GND"}], "variant_name": ["FAS"], "preferred_name": "Fédération Française des Associations d'Actionnaires Salariés et Anciens Salariés", "country_associated": "fr", "variant_access_point": ["FAS. Abkuerzung"], "authorized_access_point": "Fédération Française des Associations d'Actionnaires Salariés et Anciens Salariés"} 1 -2023-07-08 08:18:46.259476 2023-07-08 08:18:46.259492 5d00e795-2373-4518-bc98-6519b40d6635 {"md5": "27cd6308ff5c02b2113bb33d31053f53", "pid": "982492855", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10156973-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10156973-7", "source": "GND"}], "preferred_name": "BBV", "country_associated": "gw", "authorized_access_point": "BBV. Hagen"} 1 -2023-07-08 08:18:46.362748 2023-07-08 08:18:46.362758 d352ada8-0405-4a37-a4ff-000e682988d9 {"md5": "65965748388efdeae82415db203f43a5", "pid": "982514050", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10157263-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10157263-3", "source": "GND"}], "preferred_name": "Tag der Brandenburgischen Orts- und Landesgeschichte, 1", "country_associated": "gw", "authorized_access_point": "Tag der Brandenburgischen Orts- und Landesgeschichte, 1, 2005, Potsdam"} 1 -2023-07-08 08:18:46.462705 2023-07-08 08:18:46.462718 87da13ae-1ed3-4189-a2b0-50fb3be528ce {"md5": "4e64420fd1f49238b99e35b23f67824c", "pid": "982653166", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10158210-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10158210-9", "source": "GND"}], "variant_name": ["JGSG"], "preferred_name": "Japangast Study Group", "country_associated": "ja", "variant_access_point": ["JGSG. Abkuerzung"], "authorized_access_point": "Japangast Study Group"} 1 -2023-07-08 08:18:46.564545 2023-07-08 08:18:46.564559 755ad454-c03c-431d-a1d7-1ff4ab6b8716 {"md5": "848d6208a4919520ccd01bd9105239db", "pid": "982910592", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10159969-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10159969-9", "source": "GND"}], "variant_name": ["Hàn-bǎo-zhǔ-Shang-hǎi-lián-luō-chū", "Hanbao-zhu-Shanghai-lianluochu"], "preferred_name": "Hamburg Liaison Office", "country_associated": "gw", "variant_access_point": ["Hàn-bǎo-zhǔ-Shang-hǎi-lián-luō-chū", "Hanbao-zhu-Shanghai-lianluochu"], "authorized_access_point": "Hamburg Liaison Office. Schanghai", "biographical_information": ["\\"Das Hamburg Liaison Office Shanghai ist die offizielle Vertretung der Freien und Hansestadt Hamburg in China.\\""]} 1 -2023-07-08 08:18:46.681718 2023-07-08 08:18:46.681729 7acea586-8e6e-4d98-a3b5-da890d30ec88 {"md5": "1722bf8da1f682167c1b462773336965", "pid": "982913656", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10160020-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10160020-3", "source": "GND"}], "preferred_name": "Fachtagungen Holzbau", "country_associated": "gw", "authorized_access_point": "Fachtagungen Holzbau, 2006, Leinfelden-Echterdingen"} 1 -2023-07-08 08:18:46.765459 2023-07-08 08:18:46.765471 6058e43c-37bc-4ddb-9ad2-7118876e2106 {"md5": "11a705c48a05f94752cb1a8fa078ee4b", "pid": "982939477", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10160218-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10160218-2", "source": "GND"}], "preferred_name": "Seminario Hacia una Mayor Eficacia de las Resoluciones Judiciales en la Unión Europea en Materia Patrimonial, 1", "country_associated": "sp", "authorized_access_point": "Seminario Hacia una Mayor Eficacia de las Resoluciones Judiciales en la Unión Europea en Materia Patrimonial, 1, 2005, Sevilla"} 1 -2023-07-08 08:18:47.099301 2023-07-08 08:18:47.099316 19fee9f8-a8a0-4cae-a412-0023dee7fb21 {"md5": "7f0f8e54892d14a4b31b81f1a44d63a2", "pid": "983050538", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10160979-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10160979-6", "source": "GND"}], "preferred_name": "Wasserversorgungsverband Kappel-Grafenhausen-Rust", "country_associated": "gw", "authorized_access_point": "Wasserversorgungsverband Kappel-Grafenhausen-Rust"} 1 -2023-07-08 08:18:47.322673 2023-07-08 08:18:47.322685 fa3805c6-cf87-436b-8f6c-17b78b33229f {"md5": "8a3c6208beb937f8728bde23fa7c3637", "pid": "983615543", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6515052-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6515052-1", "source": "GND"}], "variant_name": ["Medicine Meets Virtual Reality Conference, 15"], "preferred_name": "MMVR, 15", "country_associated": "xxu", "variant_access_point": ["Medicine Meets Virtual Reality Conference, 15, 2007, Long Beach, Calif."], "authorized_access_point": "MMVR, 15, 2007, Long Beach, Calif."} 1 -2023-07-08 08:18:47.432798 2023-07-08 08:18:47.432801 aed1fbad-88db-4946-8bb2-ff7dfefdf738 {"md5": "7f0fcaac96f5ab6133bfb47ba6082924", "pid": "983662215", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10165334-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10165334-7", "source": "GND"}], "variant_name": ["Studiengang AV-Medienwissenschaft", "Hochschule für Film und Fernsehen \\"Konrad Wolf\\". AV-Medienwissenschaft"], "preferred_name": "Hochschule für Film und Fernsehen \\"Konrad Wolf\\". Studiengang AV-Medienwissenschaft", "country_associated": "gw", "variant_access_point": ["Studiengang AV-Medienwissenschaft", "Hochschule für Film und Fernsehen \\"Konrad Wolf\\". AV-Medienwissenschaft"], "authorized_access_point": "Hochschule für Film und Fernsehen \\"Konrad Wolf\\". Studiengang AV-Medienwissenschaft"} 1 -2023-07-08 08:18:47.528358 2023-07-08 08:18:47.528374 91442bf1-f416-4099-9909-46dd7bf0a88f {"md5": "0b08132fd6ace2419e33269f69a0605d", "pid": "98379314X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10166262-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10166262-2", "source": "GND"}], "variant_name": ["SPD-Ortsverein Aspach-Kirchberg", "SPD Aspach-Kirchberg"], "preferred_name": "Sozialdemokratische Partei Deutschlands. Ortsverein Aspach-Kirchberg", "country_associated": "gw", "variant_access_point": ["SPD-Ortsverein Aspach-Kirchberg", "SPD Aspach-Kirchberg"], "date_of_establishment": "1985", "authorized_access_point": "Sozialdemokratische Partei Deutschlands. Ortsverein Aspach-Kirchberg"} 1 -2023-07-08 08:18:47.662247 2023-07-08 08:18:47.66226 e624585d-cd04-4d52-a7c3-683989e1864a {"md5": "b8efb7dc14c49962e1ec8a3be2d34df4", "pid": "983910138", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10167372-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10167372-3", "source": "GND"}], "preferred_name": "Ausstellung Steffen Junghans - Fotografien", "country_associated": "gw", "authorized_access_point": "Ausstellung Steffen Junghans - Fotografien, 2006 - 2007, Goch"} 1 -2023-07-08 08:18:47.766991 2023-07-08 08:18:47.767001 02fc7af0-3fff-4c35-8724-ef022f9cd647 {"md5": "372afdabf4efde0f3e104a5683c0591d", "pid": "984022686", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10168143-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10168143-4", "source": "GND"}], "variant_name": ["International Workshop on Underwater Networks, 1", "Workshop on Underwater Networks, 1"], "preferred_name": "WUWNet, 1", "country_associated": "xxu", "variant_access_point": ["International Workshop on Underwater Networks, 1, 2006, Los Angeles, Calif.", "Workshop on Underwater Networks, 1, 2006, Los Angeles, Calif."], "authorized_access_point": "WUWNet, 1, 2006, Los Angeles, Calif."} 1 -2023-07-08 08:18:47.885448 2023-07-08 08:18:47.885452 71d84b3e-cc52-4546-afd3-109400e683e6 {"md5": "f2b15843a0edef42444a173e614cc6c9", "pid": "984092862", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10168794-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10168794-1", "source": "GND"}], "variant_name": ["Festival für Zeitgenössische Videokunst, 11"], "preferred_name": "Videonale, 11", "country_associated": "gw", "variant_access_point": ["Festival für Zeitgenössische Videokunst, 11, 2007, Bonn"], "authorized_access_point": "Videonale, 11, 2007, Bonn"} 1 -2023-07-08 08:18:47.982246 2023-07-08 08:18:47.982254 48999f0d-8c04-4c29-85cc-aeead90dab92 {"md5": "2e9976852417f57ac0a401e8a80ce99c", "pid": "984302190", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6515675-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6515675-4", "source": "GND"}], "preferred_name": "International Gemological Symposium, 4", "country_associated": "xxu", "authorized_access_point": "International Gemological Symposium, 4, 2006, San Diego, Calif."} 1 -2023-07-08 08:18:48.072977 2023-07-08 08:18:48.072987 1f3c8c0f-8f25-4799-9afb-37f1a8b5abdd {"md5": "5c2da121af8ca45ced12b8165ce2757c", "pid": "984368728", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10170361-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10170361-2", "source": "GND"}], "preferred_name": "King Sejong Memorial Society", "country_associated": "ko", "authorized_access_point": "King Sejong Memorial Society"} 1 -2023-07-08 08:18:48.167286 2023-07-08 08:18:48.167299 28ea2f80-f682-4c1e-b2fc-b5d706f75367 {"md5": "94f55a6b68cfd4208929b15e65833165", "pid": "984403922", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6515733-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6515733-3", "source": "GND"}], "variant_name": ["Forschungsgesellschaft für Strassen- und Verkehrswesen. Arbeitsausschuss Theoretische Grundlagen des Straßenverkehrs. Arbeitskreis Mikroskopische Verkehrsflusssimulationsmodelle", "Arbeitskreis Mikroskopische Verkehrsflusssimulationsmodelle"], "preferred_name": "Forschungsgesellschaft für Strassen- und Verkehrswesen. Arbeitskreis Mikroskopische Verkehrsflusssimulationsmodelle", "country_associated": "gw", "variant_access_point": ["Forschungsgesellschaft für Strassen- und Verkehrswesen. Arbeitsausschuss Theoretische Grundlagen des Straßenverkehrs. Arbeitskreis Mikroskopische Verkehrsflusssimulationsmodelle", "Arbeitskreis Mikroskopische Verkehrsflusssimulationsmodelle"], "authorized_access_point": "Forschungsgesellschaft für Strassen- und Verkehrswesen. Arbeitskreis Mikroskopische Verkehrsflusssimulationsmodelle"} 1 -2023-07-08 08:18:54.92103 2023-07-08 08:18:54.921037 b726e195-0146-496a-ba96-ff6596e9f324 {"md5": "24e44b61348a745a72045ce06be5a398", "pid": "990280616", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10355679-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10355679-5", "source": "GND"}], "preferred_name": "Högre Folkskola", "country_associated": "sw", "authorized_access_point": "Högre Folkskola. Kungsbacka", "biographical_information": ["BSB-QK-Konversion; noch nicht redigiert."]} 1 -2023-07-08 08:18:48.270552 2023-07-08 08:18:48.270571 78e709ba-d0ee-427e-a1dc-d004aa9e9f9d {"md5": "0645261b25dac39e523079ff9497280c", "pid": "984432779", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10170713-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10170713-7", "source": "GND"}], "variant_name": ["Abteilung für Ur- und Frühgeschichtliche Bodendenkmalpflege", "Abteilung für Bodendenkmalpflege"], "preferred_name": "Niedersächsisches Landesmuseum Hannover. Abteilung für Ur- und Frühgeschichtliche Bodendenkmalpflege", "country_associated": "gw", "date_of_termination": "1964", "variant_access_point": ["Abteilung für Ur- und Frühgeschichtliche Bodendenkmalpflege", "Abteilung für Bodendenkmalpflege"], "date_of_establishment": "1961", "authorized_access_point": "Niedersächsisches Landesmuseum Hannover. Abteilung für Ur- und Frühgeschichtliche Bodendenkmalpflege"} 1 -2023-07-08 08:18:48.393622 2023-07-08 08:18:48.393633 6b1f6ed6-7ed4-4b1b-8f8b-41f135b4e43f {"md5": "afd441145cdcae32d8e1433dcfbcff7e", "pid": "984443711", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10170785-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10170785-X", "source": "GND"}], "variant_name": ["Maryland Province of the Society of Jesus", "Jesuiten. Provincia Marylandiae", "Provincia Marylandiae Societatis Jesu", "Jesuiten. Provinz Maryland"], "preferred_name": "Jesuiten. Maryland Province", "country_associated": "xxu", "date_of_termination": "31.07.2020", "variant_access_point": ["Maryland Province of the Society of Jesus", "Jesuiten. Provincia Marylandiae", "Provincia Marylandiae Societatis Jesu", "Jesuiten. Provinz Maryland"], "date_of_establishment": "XX.XX.1943", "authorized_access_point": "Jesuiten. Maryland Province", "biographical_information": ["Jesuiten-Provinz 1833 gegründet, 1879 New York von der New York-Canada Mission angeschlossen, 1943 New York Province abgetrennt, Sitz Towson. 2020 wurden die USA Northeast Provinces und die Maryland Province unter neu gegründeten USA East Province of the Society of Jesus fusioniert."]} 1 -2023-07-08 08:18:48.499526 2023-07-08 08:18:48.499536 73ebedc8-4078-4f05-9db4-83b88b5e8a77 {"md5": "55dda7616845a45e10b6fc69c87a2fd8", "pid": "984455655", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10170907-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10170907-9", "source": "GND"}], "variant_name": ["Landesanstalt für Umwelt, Messungen und Naturschutz Baden-Württemberg. Referat Fließgewässer, Integrierter Gewässerschutz. Projektgruppe WRRL", "Projektgruppe WRRL"], "preferred_name": "Landesanstalt für Umwelt, Messungen und Naturschutz Baden-Württemberg. Projektgruppe WRRL", "country_associated": "gw", "variant_access_point": ["Landesanstalt für Umwelt, Messungen und Naturschutz Baden-Württemberg. Referat Fließgewässer, Integrierter Gewässerschutz. Projektgruppe WRRL", "Projektgruppe WRRL"], "authorized_access_point": "Landesanstalt für Umwelt, Messungen und Naturschutz Baden-Württemberg. Projektgruppe WRRL", "biographical_information": ["WRRL: Wasserrahmenrichtlinie"]} 1 -2023-07-08 08:18:48.634813 2023-07-08 08:18:48.634823 541fb298-56bb-4ca8-89ae-4c771c457a59 {"md5": "3b9ab35a27afda3e2a822aa017cb6dfd", "pid": "984645454", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10172100-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10172100-6", "source": "GND"}], "preferred_name": "Symposium zur Strukturberichterstattung", "country_associated": "gw", "authorized_access_point": "Symposium zur Strukturberichterstattung, 1984, Frankfurt, Main"} 1 -2023-07-08 08:18:48.722835 2023-07-08 08:18:48.722843 2ce4aaeb-575e-42ad-9d8d-cdb7871710f2 {"md5": "24d8314772724a71f81b051655877945", "pid": "984649220", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10172173-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10172173-0", "source": "GND"}], "variant_name": ["SPD-Kreisverband Ostalb", "SPD Ostalbkreis"], "preferred_name": "Sozialdemokratische Partei Deutschlands. Kreisverband Ostalb", "country_associated": "gw", "variant_access_point": ["SPD-Kreisverband Ostalb", "SPD Ostalbkreis"], "authorized_access_point": "Sozialdemokratische Partei Deutschlands. Kreisverband Ostalb"} 1 -2023-07-08 08:18:48.819417 2023-07-08 08:18:48.819426 bbfa624d-48ad-4a14-aa6d-25e9d9a0ad12 {"md5": "b55f4983d4f7a44e4d126c0498b352e2", "pid": "984661956", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10172239-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10172239-4", "source": "GND"}], "variant_name": ["Fortbildungs-Lehrgang in Bad Nauheim, 6"], "preferred_name": "Fortbildungslehrgang in Bad Nauheim, 6", "variant_access_point": ["Fortbildungs-Lehrgang in Bad Nauheim, 6, 1929, Bad Nauheim"], "authorized_access_point": "Fortbildungslehrgang in Bad Nauheim, 6, 1929, Bad Nauheim"} 1 -2023-07-08 08:18:48.914903 2023-07-08 08:18:48.914909 49f65abb-061e-46a1-83f0-c6089ac39717 {"md5": "7f1fde32cc5a7cbcb494ab2da2b3e6af", "pid": "984695303", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10172573-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10172573-5", "source": "GND"}], "variant_name": ["CPS"], "preferred_name": "Centro Promozioni e Servizi", "country_associated": "it", "variant_access_point": ["CPS. Abkuerzung"], "authorized_access_point": "Centro Promozioni e Servizi. Arezzo"} 1 -2023-07-08 08:18:49.021668 2023-07-08 08:18:49.021681 893d594f-acb3-435d-b34f-32149de7ec7d {"md5": "428caa9a3d345670d7fd1c8cc8e997d1", "pid": "984725180", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6065436-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6065436-3", "source": "GND"}], "preferred_name": "Vereinsbank in Hamburg. Filiale Cuxhaven", "country_associated": "gw", "date_of_establishment": "1897", "authorized_access_point": "Vereinsbank in Hamburg. Filiale Cuxhaven"} 1 -2023-07-08 08:18:49.152704 2023-07-08 08:18:49.152717 ecb2dcb5-5d0a-4022-b29b-719d61700e48 {"md5": "a95b4c846ca409984e49b30579e22720", "pid": "98474309X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10173071-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10173071-8", "source": "GND"}], "preferred_name": "Exhibition Think with the Senses - Feel with the Mind: Art in the Present Tense", "country_associated": "it", "authorized_access_point": "Exhibition Think with the Senses - Feel with the Mind: Art in the Present Tense, 2007, Venedig"} 1 -2023-07-08 08:18:49.26707 2023-07-08 08:18:49.267083 7d28a826-fc55-474f-aff4-f51badd0df25 {"md5": "8139eff79973fe23313222165feacd60", "pid": "984864059", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10173888-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10173888-2", "source": "GND"}], "variant_name": ["Politechnika Łódzka. Faculty of Electrical, Electronic, Computer and Control Engineering", "Wydział Elektrotechniki, Elektroniki, Informatyki i Automatyki", "Faculty of Electrical, Electronic, Computer and Control Engineering"], "preferred_name": "Politechnika Łódzka. Wydział Elektrotechniki, Elektroniki, Informatyki i Automatyki", "country_associated": "pl", "variant_access_point": ["Politechnika Łódzka. Faculty of Electrical, Electronic, Computer and Control Engineering", "Wydział Elektrotechniki, Elektroniki, Informatyki i Automatyki", "Faculty of Electrical, Electronic, Computer and Control Engineering"], "authorized_access_point": "Politechnika Łódzka. Wydział Elektrotechniki, Elektroniki, Informatyki i Automatyki"} 1 -2023-07-08 08:18:49.388386 2023-07-08 08:18:49.38839 47e5a129-9156-46e4-b871-e13bcd821bab {"md5": "7836c5a80c3473ccd351e20f730a8f69", "pid": "984972498", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10174879-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10174879-6", "source": "GND"}], "variant_name": ["Regionalmuseum", "Regionalmuseum BFH", "Regionalmuseum im Schloss", "Regionalmuseum im Schloß Bad Frankenhausen", "Regionalmuseum im Schloss zu Bad Frankenhausen"], "preferred_name": "Regionalmuseum Bad Frankenhausen", "country_associated": "gw", "variant_access_point": ["Regionalmuseum. Bad Frankenhausen (Kyffhäuser)", "Regionalmuseum BFH", "Regionalmuseum im Schloss", "Regionalmuseum im Schloß Bad Frankenhausen", "Regionalmuseum im Schloss zu Bad Frankenhausen"], "date_of_establishment": "2006", "authorized_access_point": "Regionalmuseum Bad Frankenhausen"} 1 -2023-07-08 08:18:49.499654 2023-07-08 08:18:49.499663 ab2804ad-6608-4acd-9747-f6dce141f244 {"md5": "a414f9d2aa809fb286d551dc8946cec8", "pid": "98510421X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10176181-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10176181-8", "source": "GND"}], "preferred_name": "Harvard Celtic Colloquium, 16", "authorized_access_point": "Harvard Celtic Colloquium, 16, 1996 - 17, 1997"} 1 -2023-07-08 08:18:49.615437 2023-07-08 08:18:49.615447 f14d6d7f-87c8-4058-84a7-f31dea5caf53 {"md5": "376943525b01d6b876f2d3dec733b3f2", "pid": "985110783", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10176230-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10176230-6", "source": "GND"}], "preferred_name": "Pipeline", "country_associated": "gw", "authorized_access_point": "Pipeline", "biographical_information": ["Duo Tom Hake u. Dermot Hyde. Folkmusik d. brit. Inseln"]} 1 -2023-07-08 08:18:49.731148 2023-07-08 08:18:49.731158 0fd4b3af-9b7b-44ec-862e-c2b30f11a385 {"md5": "9694d07419c133a91dbd1399f4eabd04", "pid": "985307358", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6066559-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6066559-2", "source": "GND"}], "variant_name": ["Ryerson University. Faculty of Engineering, Architecture and Science. Department of Mechanical and Industrial Engineering"], "preferred_name": "Ryerson University. Department of Mechanical and Industrial Engineering", "country_associated": "xxc", "variant_access_point": ["Ryerson University. Faculty of Engineering, Architecture and Science. Department of Mechanical and Industrial Engineering"], "authorized_access_point": "Ryerson University. Department of Mechanical and Industrial Engineering"} 1 -2023-07-08 08:18:49.862895 2023-07-08 08:18:49.862905 afad4934-6aec-4efb-8e5b-67176bfe642c {"md5": "e331cbed6553dcc7956f77e1cf758a81", "pid": "985554134", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6067120-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6067120-8", "source": "GND"}], "preferred_name": "Kystverket", "country_associated": "no", "authorized_access_point": "Kystverket. Ålesund"} 1 -2023-07-08 08:18:49.989126 2023-07-08 08:18:49.989135 679c4b25-b7a5-49ca-90ca-c93cf8b828e7 {"md5": "478a428d7da142ddf8238eee686eee7a", "pid": "985729414", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10181313-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10181313-2", "source": "GND"}], "preferred_name": "Conference on Intersentential Pronominal Reference in Child and Adult Language", "authorized_access_point": "Conference on Intersentential Pronominal Reference in Child and Adult Language, 2006, Berlin"} 1 -2023-07-08 08:18:50.111833 2023-07-08 08:18:50.111845 cc0cd82c-4223-4f62-aaf9-ae1471189610 {"md5": "f3b3d230fac565f825213976e88eb30b", "pid": "985808721", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6517421-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6517421-5", "source": "GND"}], "variant_name": ["Wilhelm-Geissler-Ausstellung"], "preferred_name": "Ausstellung Wilhelm Geissler", "country_associated": "gw", "variant_access_point": ["Wilhelm-Geissler-Ausstellung, 1939, Düsseldorf"], "authorized_access_point": "Ausstellung Wilhelm Geissler, 1939, Düsseldorf"} 1 -2023-07-08 08:18:50.226669 2023-07-08 08:18:50.22668 5f831ac0-ed95-4ecb-853f-6886c529e781 {"md5": "a5a0fe77c912efc1c7ed578c5ed71d58", "pid": "985947179", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/3067590-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3067590-X", "source": "GND"}], "preferred_name": "Quadrolux", "country_associated": "gw", "authorized_access_point": "Quadrolux. Mainz", "biographical_information": ["Image- und Werbefilmfirma"]} 1 -2023-07-08 08:18:51.443119 2023-07-08 08:18:51.443898 a48df0fc-2251-4e13-b86d-51967a97400c {"md5": "43c5f5bf53d0469c2bc2bcde7ff95e9d", "pid": "98702115X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10190664-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10190664-X", "source": "GND"}], "variant_name": ["Conference Behaviour of Pesticides in Air, Soil and Water, 8"], "preferred_name": "AGRO Conference Behaviour of Pesticides in Air, Soil and Water, 8", "country_associated": "gw", "variant_access_point": ["Conference Behaviour of Pesticides in Air, Soil and Water, 8, 2006, Frankfurt, Main"], "authorized_access_point": "AGRO Conference Behaviour of Pesticides in Air, Soil and Water, 8, 2006, Frankfurt, Main"} 1 -2023-07-08 08:18:50.348352 2023-07-08 08:18:50.348365 5983e8dc-df0d-4121-b385-49e2fe47f9e7 {"md5": "8e4fba2a9ded533d8c7ec5d8d50edbf8", "pid": "986023647", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6517679-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6517679-0", "source": "GND"}], "variant_name": ["Forschungsgesellschaft für Straßen- und Verkehrswesen. Arbeitsgruppe Verkehrsplanung. Arbeitskreis Qualitätsmanagement in Verkehrsplanungsprozessen", "Arbeitskreis Qualitätsmanagement in Verkehrsplanungsprozessen"], "preferred_name": "Forschungsgesellschaft für Straßen- und Verkehrswesen. Arbeitskreis Qualitätsmanagement in Verkehrsplanungsprozessen", "country_associated": "gw", "variant_access_point": ["Forschungsgesellschaft für Straßen- und Verkehrswesen. Arbeitsgruppe Verkehrsplanung. Arbeitskreis Qualitätsmanagement in Verkehrsplanungsprozessen", "Arbeitskreis Qualitätsmanagement in Verkehrsplanungsprozessen"], "authorized_access_point": "Forschungsgesellschaft für Straßen- und Verkehrswesen. Arbeitskreis Qualitätsmanagement in Verkehrsplanungsprozessen"} 1 -2023-07-08 08:18:50.478916 2023-07-08 08:18:50.478922 44affe01-f83b-4f7d-9d89-89d8886e78ce {"md5": "5b05c485b3d6eddabd1a0b62a3a0ab2d", "pid": "986065692", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10184188-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10184188-7", "source": "GND"}], "variant_name": ["Jugendwerk der Arbeiterwohlfahrt Kreisverband Grevenbroich", "Arbeiterwohlfahrt Kreisjugendwerk Grevenbroich", "AWO-Kreisjugendwerk Grevenbroich"], "preferred_name": "Kreisjugendwerk der Arbeiterwohlfahrt Grevenbroich", "country_associated": "gw", "variant_access_point": ["Jugendwerk der Arbeiterwohlfahrt Kreisverband Grevenbroich", "Arbeiterwohlfahrt Kreisjugendwerk Grevenbroich", "AWO-Kreisjugendwerk Grevenbroich"], "authorized_access_point": "Kreisjugendwerk der Arbeiterwohlfahrt Grevenbroich"} 1 -2023-07-08 08:18:50.594331 2023-07-08 08:18:50.594341 29bc2e3a-cbe5-47dd-b009-b68597e8f0d3 {"md5": "db4fc068ad349da41cdb34dc198ab44f", "pid": "986091332", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10184459-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10184459-1", "source": "GND"}], "preferred_name": "Verein der Freunde und Förderer des Städtischen Museums Simeonstift Trier", "country_associated": "gw", "authorized_access_point": "Verein der Freunde und Förderer des Städtischen Museums Simeonstift Trier"} 1 -2023-07-08 08:18:50.686906 2023-07-08 08:18:50.686919 81ae4ebc-5553-47ec-8b16-8d3b5aeeeef6 {"md5": "28893e171aff0e5fe32bf33fc8d2716a", "pid": "986092274", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10184466-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10184466-9", "source": "GND"}], "preferred_name": "Kolloquium Ad Parnassum - auf dem Prüfstand. Kunsthistorische und Konservatorische Fragen Rund um ein Berühmtes Bild", "country_associated": "sz", "authorized_access_point": "Kolloquium Ad Parnassum - auf dem Prüfstand. Kunsthistorische und Konservatorische Fragen Rund um ein Berühmtes Bild, 2006, Bern"} 1 -2023-07-08 08:18:50.791275 2023-07-08 08:18:50.791285 b058c2bf-aa4f-4c5c-984d-ed40ce0aec51 {"md5": "3a5dd53f936fefabd884e592fe3276ee", "pid": "986429740", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10187002-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10187002-4", "source": "GND"}], "preferred_name": "Congreso El Laberinto de los Libros: Jorge Luis Borges Frente al Canon Literario", "authorized_access_point": "Congreso El Laberinto de los Libros: Jorge Luis Borges Frente al Canon Literario, 2004, Leipzig"} 1 -2023-07-08 08:18:50.899752 2023-07-08 08:18:50.899759 27a53930-d179-4449-869e-a3760915eaa6 {"md5": "7cd54a978cb2e3ea4370eee6328aae8a", "pid": "986445649", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6068346-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6068346-6", "source": "GND"}], "preferred_name": "Maria Zamora y sus Muchachos", "authorized_access_point": "Maria Zamora y sus Muchachos"} 1 -2023-07-08 08:18:50.992215 2023-07-08 08:18:50.992221 e3d1e2ac-0991-4501-840a-a5943ef63ec5 {"md5": "bf1961e961a24ece20a2c4dfba1e37d2", "pid": "986571148", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10187896-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10187896-5", "source": "GND"}], "preferred_name": "Štencu̇v Grafický Kabinet", "authorized_access_point": "Štencu̇v Grafický Kabinet. Prag"} 1 -2023-07-08 08:18:51.11491 2023-07-08 08:18:51.114924 2bcabb65-ec30-4150-ae62-fbaa99c2ea30 {"md5": "e87bd3e532a5970e76136c16e311ecc1", "pid": "986759805", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10189089-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10189089-8", "source": "GND"}], "variant_name": ["Geschäftsbereich Bürgerdienste, Wahlamt", "Wolfsburg. GB Bürgerdienste, Wahlamt"], "preferred_name": "Wolfsburg. Geschäftsbereich Bürgerdienste, Wahlamt", "country_associated": "gw", "variant_access_point": ["Geschäftsbereich Bürgerdienste, Wahlamt. Wolfsburg", "Wolfsburg. GB Bürgerdienste, Wahlamt"], "authorized_access_point": "Wolfsburg. Geschäftsbereich Bürgerdienste, Wahlamt"} 1 -2023-07-08 08:18:51.228916 2023-07-08 08:18:51.228922 c8bfaea3-56f6-43be-917d-5a1eed55e2a1 {"md5": "6126ba868309cc0067468db5ec9e6f3c", "pid": "986792829", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10189363-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10189363-2", "source": "GND"}], "variant_name": ["Bat-Sheva Seminar, 41"], "preferred_name": "Bat-Sheva Seminar, 41", "country_associated": "is", "variant_access_point": ["Bat-Sheva Seminar, 41, 1982, Kiryat Anavim"], "authorized_access_point": "Bat-Sheva Seminar, 41, 1982, Qiryat' Anavim"} 1 -2023-07-08 08:18:51.324913 2023-07-08 08:18:51.324924 da40f7cc-6d10-4b3e-a480-31d23f5fa53d {"md5": "ebf94e106cf98978952ff84ec8cbbd3d", "pid": "986836400", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10189573-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10189573-2", "source": "GND"}], "variant_name": ["Chorus of the Concertgebouw Orchestra", "Concertgebouw Chorus", "Chor des Concertgebouw Orchestra", "Choir of the Concertgebouw Orchestra"], "preferred_name": "Concertgebouworkest. Koor", "country_associated": "ne", "date_of_termination": "1988", "variant_access_point": ["Chorus of the Concertgebouw Orchestra. Amsterdam", "Concertgebouw Chorus. Amsterdam", "Chor des Concertgebouw Orchestra. Amsterdam", "Choir of the Concertgebouw Orchestra. Amsterdam"], "authorized_access_point": "Concertgebouworkest. Amsterdam. Koor"} 1 -2023-07-08 08:18:51.542323 2023-07-08 08:18:51.542331 eefad5ea-a815-4142-8c17-8037f5d78491 {"md5": "b8c09d5a1add6f684ba00a25dc2a1621", "pid": "987073982", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10190958-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10190958-5", "source": "GND"}], "variant_name": ["International Symposium on Hamiltonian Systems and Celestial Mechanics, 3"], "preferred_name": "HAMSYS, 3", "country_associated": "mx", "variant_access_point": ["International Symposium on Hamiltonian Systems and Celestial Mechanics, 3, 1998, Pátzcuaro"], "authorized_access_point": "HAMSYS, 3, 1998, Pátzcuaro"} 1 -2023-07-08 08:18:51.639871 2023-07-08 08:18:51.639883 3badd1b6-bf53-45fa-a5bd-704193e984c9 {"md5": "7ad29aa665f32b95d5d8fc857907a908", "pid": "987392964", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/3068414-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3068414-6", "source": "GND"}], "variant_name": ["Kabeltagung"], "preferred_name": "Fachkongress Netztechnik", "variant_access_point": ["Kabeltagung, 2007, Erfurt"], "authorized_access_point": "Fachkongress Netztechnik, 2007, Erfurt"} 1 -2023-07-08 08:18:51.744927 2023-07-08 08:18:51.744942 b1d56a92-c11d-4aad-ae9b-a9017279e8a8 {"md5": "fc1bf010f607b46cee26c10edf8801f7", "pid": "987450816", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10194018-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10194018-X", "source": "GND"}], "preferred_name": "Mostra di Grete Stern, Sogni", "country_associated": "it", "authorized_access_point": "Mostra di Grete Stern, Sogni, 2004, Ravello"} 1 -2023-07-08 08:18:51.840941 2023-07-08 08:18:51.840951 d1fcd57c-b2d1-4b68-881f-e9258ec17e33 {"md5": "1762caefb5d761a4c70a78c142aabac2", "pid": "987500465", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10194399-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10194399-4", "source": "GND"}], "preferred_name": "Technische Universität Braunschweig. Fachbereich für Chemie, Pharmazie und Biowissenschaften", "country_associated": "gw", "authorized_access_point": "Technische Universität Braunschweig. Fachbereich für Chemie, Pharmazie und Biowissenschaften"} 1 -2023-07-08 08:18:51.938821 2023-07-08 08:18:51.938829 c7bd4082-dee5-46ed-9dca-bc9c1e68d997 {"md5": "a86642e4aae57a4052c01b4d50d1af46", "pid": "987545191", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6070191-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6070191-2", "source": "GND"}], "variant_name": ["Museu da Universidade Federal do Rio Grande do Sul"], "preferred_name": "Universidade Federal do Rio Grande do Sul. Museu", "country_associated": "bl", "variant_access_point": ["Museu da Universidade Federal do Rio Grande do Sul"], "authorized_access_point": "Universidade Federal do Rio Grande do Sul. Museu"} 1 -2023-07-08 08:18:52.05378 2023-07-08 08:18:52.053793 8287ff6f-1057-44ff-93da-d1c71eb86aae {"md5": "5ffab08309ebd6e68dead515d939fe9b", "pid": "987612816", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10195317-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10195317-3", "source": "GND"}], "variant_name": ["Dipartimento di lingue e letterature dei paesi del Mediterraneo"], "preferred_name": "Università degli studi di Trieste. Dipartimento di lingue e letterature dei paesi del Mediterraneo", "country_associated": "it", "variant_access_point": ["Dipartimento di lingue e letterature dei paesi del Mediterraneo. Università degli studi di Trieste"], "authorized_access_point": "Università degli studi di Trieste. Dipartimento di lingue e letterature dei paesi del Mediterraneo"} 1 -2023-07-08 08:18:52.158201 2023-07-08 08:18:52.158218 af07bdf1-83e2-4233-b157-077613e05144 {"md5": "9bba4e35de2918538554009e17d4ad0a", "pid": "987631365", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6070395-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6070395-7", "source": "GND"}], "variant_name": ["BEL"], "preferred_name": "Baltodano, Echandi y Lara Ltda.", "country_associated": "cr", "variant_access_point": ["BEL. San José, Costa Rica"], "authorized_access_point": "Baltodano, Echandi y Lara Ltda.. San José, Costa Rica"} 1 -2023-07-08 08:18:52.269171 2023-07-08 08:18:52.269184 2187d09f-d506-465b-ab66-5f927ad4c26b {"md5": "cfa9447ca771351fdb0fe5ae0e0c3a75", "pid": "987875418", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10197500-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10197500-4", "source": "GND"}], "variant_name": ["Arbeitsgruppe Einbau, Betrieb, Wartung und Kontrolle von Grundstücksentwässerungsanlagen", "Deutsche Vereinigung für Wasserwirtschaft, Abwasser und Abfall. Fachausschuss Grundstücksentwässerung. Arbeitsgruppe Einbau, Betrieb, Wartung und Kontrolle von Grundstücksentwässerungsanlagen", "Deutsche Vereinigung für Wasserwirtschaft, Abwasser und Abfall. Arbeitsgruppe", "DWA-Arbeitsgruppe Einbau, Betrieb, Wartung und Kontrolle von Grundstücksentwässerungsanlagen", "DWA-Arbeitsgruppe"], "preferred_name": "Deutsche Vereinigung für Wasserwirtschaft, Abwasser und Abfall. Arbeitsgruppe Einbau, Betrieb, Wartung und Kontrolle von Grundstücksentwässerungsanlagen", "country_associated": "gw", "variant_access_point": ["Arbeitsgruppe Einbau, Betrieb, Wartung und Kontrolle von Grundstücksentwässerungsanlagen. Deutsche Vereinigung für Wasserwirtschaft, Abwasser und Abfall", "Deutsche Vereinigung für Wasserwirtschaft, Abwasser und Abfall. Fachausschuss Grundstücksentwässerung. Arbeitsgruppe Einbau, Betrieb, Wartung und Kontrolle von Grundstücksentwässerungsanlagen", "Deutsche Vereinigung für Wasserwirtschaft, Abwasser und Abfall. Arbeitsgruppe. ES 6 2", "DWA-Arbeitsgruppe Einbau, Betrieb, Wartung und Kontrolle von Grundstücksentwässerungsanlagen", "DWA-Arbeitsgruppe. ES 6 2"], "authorized_access_point": "Deutsche Vereinigung für Wasserwirtschaft, Abwasser und Abfall. Arbeitsgruppe Einbau, Betrieb, Wartung und Kontrolle von Grundstücksentwässerungsanlagen"} 1 -2023-07-08 08:18:52.385212 2023-07-08 08:18:52.385219 d7bad958-d4f7-4f8d-8007-8b0bcd60f947 {"md5": "fc9178aa990af1ad67eafb9d8fecb106", "pid": "987960148", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6519920-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6519920-0", "source": "GND"}], "variant_name": ["Reise- und Impfmedizin-Symposium, 7"], "preferred_name": "Symposium Reise- und Impfmedizin, 7", "variant_access_point": ["Reise- und Impfmedizin-Symposium, 7, 2002, Berlin"], "authorized_access_point": "Symposium Reise- und Impfmedizin, 7, 2002, Berlin"} 1 -2023-07-08 08:18:52.640178 2023-07-08 08:18:52.640195 df0f2d05-1958-4ea3-af34-90197736e65a {"md5": "de86c2c5e9cd6cbad3e2d16622f53b9e", "pid": "988280450", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10201037-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10201037-7", "source": "GND"}], "variant_name": ["Provinzial-Säschische Genossenschaft", "Provinzial-Sächsische Genossenschaft des Johanniterordens"], "preferred_name": "Johanniterorden. Provinzial-Sächsische Genossenschaft", "country_associated": "gw", "variant_access_point": ["Provinzial-Säschische Genossenschaft", "Provinzial-Sächsische Genossenschaft des Johanniterordens. Unveraenderte Form"], "authorized_access_point": "Johanniterorden. Provinzial-Sächsische Genossenschaft"} 1 -2023-07-08 08:18:52.75712 2023-07-08 08:18:52.757127 a3068861-c6b9-4a21-9698-0925dcf997aa {"md5": "0214399d6f43a885bd81723d96b32a92", "pid": "988400162", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10201877-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10201877-7", "source": "GND"}], "preferred_name": "Wissenschaftliche Arbeitstagung zu Fragen der Schumann-Forschung, 18", "authorized_access_point": "Wissenschaftliche Arbeitstagung zu Fragen der Schumann-Forschung, 18, 2005, Zwickau"} 1 -2023-07-08 08:18:52.852627 2023-07-08 08:18:52.852638 b9d16b40-eb40-4819-b73d-64f036b86c30 {"md5": "bb493ea4098ee912c0d9b6c09a08dda2", "pid": "988430940", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10202132-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10202132-6", "source": "GND"}], "preferred_name": "Zürcher Festspiele", "country_associated": "sz", "authorized_access_point": "Zürcher Festspiele, 2008, Zürich"} 1 -2023-07-08 08:18:52.962416 2023-07-08 08:18:52.962422 b3eb0db7-0e70-4f97-944a-dbca30202ad4 {"md5": "734b3fe94e4941a0de83c0bc45e8dce6", "pid": "98843802X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10202216-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10202216-1", "source": "GND"}], "variant_name": ["Projektarbeitsgruppe Öffentlich Private Partnerschaften", "Projektarbeitsgruppe ÖPP der SPD-Bundestagsfraktion", "Projektarbeitsgruppe Öffentlich Private Partnerschaften der SPD-Bundestagsfraktion", "Deutschland. Deutscher Bundestag. Fraktion der SPD. Sozialdemokratische Gemeinschaft für Kommunalpolitik in der Bundesrepublik Deutschland. Projektarbeitsgruppe Öffentlich Private Partnerschaften"], "preferred_name": "Deutschland. Deutscher Bundestag. Fraktion der SPD. Projektarbeitsgruppe Öffentlich Private Partnerschaften", "country_associated": "gw", "variant_access_point": ["Projektarbeitsgruppe Öffentlich Private Partnerschaften", "Projektarbeitsgruppe ÖPP der SPD-Bundestagsfraktion", "Projektarbeitsgruppe Öffentlich Private Partnerschaften der SPD-Bundestagsfraktion. Unveraenderte Form", "Deutschland. Deutscher Bundestag. Fraktion der SPD. Sozialdemokratische Gemeinschaft für Kommunalpolitik in der Bundesrepublik Deutschland. Projektarbeitsgruppe Öffentlich Private Partnerschaften"], "authorized_access_point": "Deutschland. Deutscher Bundestag. Fraktion der SPD. Projektarbeitsgruppe Öffentlich Private Partnerschaften"} 1 -2023-07-08 08:18:53.071845 2023-07-08 08:18:53.071853 0f73e1f9-3c89-4c5d-848c-ebb45a5a8fce {"md5": "ee821b9d2dea4ba1bfd7ce04b004ab3e", "pid": "988589125", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10203028-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10203028-5", "source": "GND"}], "preferred_name": "Kult B", "country_associated": "bn", "authorized_access_point": "Kult B. Sarajevo"} 1 -2023-07-08 08:18:53.196647 2023-07-08 08:18:53.196653 8fbc56a2-7455-41e2-a99f-969ab2ec088b {"md5": "5ce327d9d7d144f742a2ad000b566d53", "pid": "989064859", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10344947-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10344947-4", "source": "GND"}], "variant_name": ["Treffpunkt Ohr", "Deutscher Schwerhörigenbund. Treffpunkt Ohr - Verein für Besseres Hören"], "preferred_name": "Treffpunkt Ohr - Verein für Besseres Hören", "variant_access_point": ["Treffpunkt Ohr. Koblenz", "Deutscher Schwerhörigenbund. Treffpunkt Ohr - Verein für Besseres Hören. Koblenz"], "date_of_establishment": "1937", "authorized_access_point": "Treffpunkt Ohr - Verein für Besseres Hören. Koblenz"} 1 -2023-07-08 08:18:53.320496 2023-07-08 08:18:53.320511 952c52f8-e2bc-4b97-8d49-2d5a98ad14a9 {"md5": "99e350532e8243579b6ed05dfee49872", "pid": "989146731", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10345663-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10345663-6", "source": "GND"}], "preferred_name": "Frauenverein zu Neustadt an der Haardt", "authorized_access_point": "Frauenverein zu Neustadt an der Haardt", "biographical_information": ["Vorlage von 1841"]} 1 -2023-07-08 08:18:53.45014 2023-07-08 08:18:53.450146 81060e88-3be9-411c-8fa4-b283505a0a51 {"md5": "93ca184f407e71d934a94451a397ad06", "pid": "989224333", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10346382-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10346382-3", "source": "GND"}], "preferred_name": "Congreso Internacional Ciudades Amuralladas", "country_associated": "sp", "authorized_access_point": "Congreso Internacional Ciudades Amuralladas, 2005, Pamplona"} 1 -2023-07-08 08:18:53.563387 2023-07-08 08:18:53.563399 bd6436da-a40b-4032-af69-c3dbad07eedd {"md5": "e9a7ad4334a9687b0801d880ce6c238e", "pid": "98940434X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6521091-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6521091-8", "source": "GND"}], "variant_name": ["Bauaufsichtsamt"], "preferred_name": "Erlangen. Bauaufsichtsamt", "country_associated": "gw", "variant_access_point": ["Bauaufsichtsamt. Erlangen"], "authorized_access_point": "Erlangen. Bauaufsichtsamt"} 1 -2023-07-08 08:18:53.6855 2023-07-08 08:18:53.685508 ac9ee13c-699f-49e4-86c8-b585591f542a {"md5": "3ee29102901305ab2bcc041c2fcf5b04", "pid": "989409015", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10347980-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10347980-6", "source": "GND"}], "preferred_name": "Ausstellung Michael Krebber, Pubertät in der Lehre", "country_associated": "gw", "authorized_access_point": "Ausstellung Michael Krebber, Pubertät in der Lehre, 2008, Köln"} 1 -2023-07-08 08:18:53.810404 2023-07-08 08:18:53.810419 7ec5282d-133f-407e-9223-00da9193eeed {"md5": "780d3654531faff97e0a1831a1ba1c72", "pid": "989440583", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/3069630-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3069630-6", "source": "GND"}], "variant_name": ["Ev.-Luth. Heimstätte", "Ev.-Luth. Heimstätte", "Evangelisch-Lutherische Heimstätte"], "preferred_name": "Evangelisch-Lutherische Heimstätte", "country_associated": "gw", "variant_access_point": ["Ev.-Luth. Heimstätte. Jeggen", "Ev.-Luth. Heimstätte. Bissendorf-Jeggen", "Evangelisch-Lutherische Heimstätte. Bissendorf-Jeggen"], "authorized_access_point": "Evangelisch-Lutherische Heimstätte. Jeggen"} 1 -2023-07-08 08:18:53.914194 2023-07-08 08:18:53.9142 135ac7c2-4676-49d9-8618-9c1f1181c49f {"md5": "d9ea318b131f15bbc6a240dc6301b09e", "pid": "989523926", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10348807-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10348807-8", "source": "GND"}], "preferred_name": "Agrarpädagogischer Studientag, 1", "country_associated": "au", "authorized_access_point": "Agrarpädagogischer Studientag, 1, 2005, Wien"} 1 -2023-07-08 08:18:54.0128 2023-07-08 08:18:54.012811 a772f15c-43b0-451d-a4e0-de2b9c7d3e55 {"md5": "581a3d7d6feea2110dbbdaa984a74ce2", "pid": "989560279", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6072801-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6072801-2", "source": "GND"}], "variant_name": ["OMEG, 10"], "preferred_name": "International Symposium on Origin of Matter and Evolution of Galaxies, 10", "country_associated": "ja", "variant_access_point": ["OMEG, 10, 2007, Sapporo"], "authorized_access_point": "International Symposium on Origin of Matter and Evolution of Galaxies, 10, 2007, Sapporo"} 1 -2023-07-08 08:18:54.113414 2023-07-08 08:18:54.113427 2b1691a5-d2ad-4041-b680-70e914271c42 {"md5": "2df882d9063ff13d9976c9fb506103c8", "pid": "989655059", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10349931-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10349931-3", "source": "GND"}], "variant_name": ["Exhibition Friederike von Rauch - Negentigdagenrotterdam", "Exhibition Friederike von Rauch - 90daysrotterdam", "Exhibition Friederike von Rauch - Ninetydaysrotterdam"], "preferred_name": "Exhibition Friederike von Rauch - 90dagenrotterdam", "country_associated": "be", "variant_access_point": ["Exhibition Friederike von Rauch - Negentigdagenrotterdam, 2007 - 2008, Brüssel", "Exhibition Friederike von Rauch - 90daysrotterdam, 2007 - 2008, Brüssel", "Exhibition Friederike von Rauch - Ninetydaysrotterdam, 2007 - 2008, Brüssel"], "authorized_access_point": "Exhibition Friederike von Rauch - 90dagenrotterdam, 2007 - 2008, Brüssel"} 1 -2023-07-08 08:18:54.23621 2023-07-08 08:18:54.236217 982eb53b-cd65-4b66-aefd-ead4b8902d21 {"md5": "6ec64ccfa8ff9eb16c266977ed42d6f7", "pid": "989690350", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10350284-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10350284-1", "source": "GND"}], "variant_name": ["Congrès National de Spéléologie, 12."], "preferred_name": "Nationaler Kongress für Höhlenforschung, 12.", "country_associated": "sz", "variant_access_point": ["Congrès National de Spéléologie, 12., 2007, Vallée de Joux"], "authorized_access_point": "Nationaler Kongress für Höhlenforschung, 12., 2007, Vallée de Joux"} 1 -2023-07-08 08:18:54.348475 2023-07-08 08:18:54.348488 db34682d-fc18-42a3-ac1c-8ed76b52383c {"md5": "18491d3d488acd17336d81cb6dfca10c", "pid": "989782115", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10351076-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10351076-X", "source": "GND"}], "preferred_name": "Bottega d'Arte Excelsior", "country_associated": "it", "authorized_access_point": "Bottega d'Arte Excelsior. Marina, Massa"} 1 -2023-07-08 08:18:54.464717 2023-07-08 08:18:54.464723 601020aa-589e-4e34-ab88-25365d93622f {"md5": "fefd53af6a1dfa78cb8e488cc92230a1", "pid": "989838420", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6072971-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6072971-5", "source": "GND"}], "preferred_name": "Motorola GmbH", "country_associated": "gw", "authorized_access_point": "Motorola GmbH. Flensburg"} 1 -2023-07-08 08:18:54.57655 2023-07-08 08:18:54.576557 ed28c048-a59a-4f3d-b652-00eb824391d4 {"md5": "641f4b52231c03ca392d54c9583d6081", "pid": "989943828", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10352515-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10352515-4", "source": "GND"}], "preferred_name": "Exposición Grandes Lamas del Tíbet. El Arte del Retrato en Bronce. Siglos XIII - XIX", "country_associated": "sp", "authorized_access_point": "Exposición Grandes Lamas del Tíbet. El Arte del Retrato en Bronce. Siglos XIII - XIX, 2004 - 2005, Barcelona"} 1 -2023-07-08 08:18:54.69516 2023-07-08 08:18:54.695177 2f3b9901-ff8c-406c-9506-9c658c8dffef {"md5": "dfb14a805de0c28236a3eda8c682d095", "pid": "990095320", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10353681-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10353681-4", "source": "GND"}], "preferred_name": "International Geographical Congress, 31", "authorized_access_point": "International Geographical Congress, 31, 2008, Tūnis"} 1 -2023-07-08 08:18:54.814144 2023-07-08 08:18:54.814158 05213f81-a1fa-4a07-8c72-8a6252f63e0f {"md5": "009dac3779c1e54a5f20d6650153fe80", "pid": "990184269", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10354509-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10354509-8", "source": "GND"}], "variant_name": ["Naučno-Praktičeskij Seminar Problemy Istoriografii i Istočnikovedenija Istorii Rossijskich Nemcev", "Wissenschaftliches Seminar Probleme der Historiographie und der Quellenkunde der Geschichte von Russlanddeutschen"], "preferred_name": "Wissenschaftliches Seminar Probleme der Historiographie und Quelle der Russlanddeutschen Geschichte", "country_associated": "ru", "variant_access_point": ["Naučno-Praktičeskij Seminar Problemy Istoriografii i Istočnikovedenija Istorii Rossijskich Nemcev, 2006, Wolgograd", "Wissenschaftliches Seminar Probleme der Historiographie und der Quellenkunde der Geschichte von Russlanddeutschen, 2006, Wolgograd"], "authorized_access_point": "Wissenschaftliches Seminar Probleme der Historiographie und Quelle der Russlanddeutschen Geschichte, 2006, Wolgograd"} 1 -2023-07-08 08:18:55.03934 2023-07-08 08:18:55.039355 2e0fb52a-e16f-4091-acc5-c8e2a4f65aaa {"md5": "8a7f747d72b3a1b3ab258b5b2314e987", "pid": "990285375", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6073491-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6073491-7", "source": "GND"}], "variant_name": ["Latin American Association of Groundwater Hydrology for Development", "Latin-American Association of Groundwater Hydrology for Development", "ALHSUD"], "preferred_name": "Asociación Latinoamericana de Hidrología Subterránea para el Desarrollo", "variant_access_point": ["Latin American Association of Groundwater Hydrology for Development", "Latin-American Association of Groundwater Hydrology for Development", "ALHSUD. Abkuerzung"], "authorized_access_point": "Asociación Latinoamericana de Hidrología Subterránea para el Desarrollo"} 1 -2023-07-08 08:18:55.16027 2023-07-08 08:18:55.160281 c19d1c81-8137-4347-8998-f486d728cd49 {"md5": "7a03813ec750da7a1502347e8cf8ee3f", "pid": "990285650", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6073481-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6073481-4", "source": "GND"}], "variant_name": ["Scuola Internazionale di Fisica Enrico Fermi, 167"], "preferred_name": "International School of Physics Enrico Fermi, 167", "country_associated": "it", "variant_access_point": ["Scuola Internazionale di Fisica Enrico Fermi, 167, 2007, Varenna"], "authorized_access_point": "International School of Physics Enrico Fermi, 167, 2007, Varenna"} 1 -2023-07-08 08:18:55.303889 2023-07-08 08:18:55.303904 6378c3af-e668-427a-a07e-c4b262094ce8 {"md5": "634ee6ec26053ea9aeb2a121202dab77", "pid": "990303160", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10355872-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10355872-X", "source": "GND"}], "preferred_name": "Maschinenfabrik, Eisengießerei und Mühlenbau-Anstalt von J. C. Ostheim", "authorized_access_point": "Maschinenfabrik, Eisengießerei und Mühlenbau-Anstalt von J. C. Ostheim"} 1 -2023-07-08 08:18:55.423328 2023-07-08 08:18:55.423341 44bcc73b-1388-4d60-93c9-8fbc7347b6c4 {"md5": "6c5c334f39f916805d0e70d8ebe8e46b", "pid": "990335763", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10356239-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10356239-4", "source": "GND"}], "preferred_name": "Samrealskolan och Kommunala Mellanskolan", "country_associated": "sw", "authorized_access_point": "Samrealskolan och Kommunala Mellanskolan. Sunne", "biographical_information": ["BSB-QK-Konversion; noch nicht redigiert."]} 1 -2023-07-08 08:18:55.54927 2023-07-08 08:18:55.549281 c33160f0-1382-4615-b4d4-2724c5eebedf {"md5": "85dd4b840716eb7c9192e471096a1662", "pid": "990348059", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10356362-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10356362-3", "source": "GND"}], "variant_name": ["Exhibition Ronan & Erwan Bouroullec, Étapes"], "preferred_name": "Exposition Ronan & Erwan Bouroullec, Étapes", "country_associated": "fr", "variant_access_point": ["Exhibition Ronan & Erwan Bouroullec, Étapes, 2008 - 2009, Hyères u.a."], "authorized_access_point": "Exposition Ronan & Erwan Bouroullec, Étapes, 2008 - 2009, Hyères u.a."} 1 -2023-07-08 08:18:55.664605 2023-07-08 08:18:55.66461 18701f75-168b-40fd-b97c-80038ea8f191 {"md5": "d313c2aedfe445af14a5906f7c2de0cd", "pid": "990387844", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6073770-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6073770-0", "source": "GND"}], "preferred_name": "Université de Moncton. Département de biologie", "country_associated": "xxc", "authorized_access_point": "Université de Moncton. Département de biologie"} 1 -2023-07-08 08:18:55.782147 2023-07-08 08:18:55.782161 56a38d71-50d6-4acf-a8af-73ad8cf4a9f8 {"md5": "9e5c46cfd16ffe7dbba99689eb9a0e2b", "pid": "990398455", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10356785-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10356785-9", "source": "GND"}], "preferred_name": "Saratoga Springs, NY. State Reservation", "country_associated": "xxu", "authorized_access_point": "Saratoga Springs, NY. State Reservation", "biographical_information": ["BSB-QK-Konversion; noch nicht redigiert."]} 1 -2023-07-08 08:18:55.927164 2023-07-08 08:18:55.927168 66f7a526-6dd1-4752-9b05-9aa342741bcc {"md5": "dce289e81a38437926a5b7492011d626", "pid": "990407624", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10356849-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10356849-9", "source": "GND"}], "preferred_name": "Schulhaus Fuchsrain. Klasse, 5", "country_associated": "sz", "authorized_access_point": "Schulhaus Fuchsrain. Möhlin. Klasse, 5"} 1 -2023-07-08 08:18:56.009319 2023-07-08 08:18:56.009322 451f5817-cfa4-455b-b3d4-c3db9f822ab2 {"md5": "e4f00177da15f81710b2ac1e52ea3141", "pid": "990531325", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10357707-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10357707-5", "source": "GND"}], "variant_name": ["Ausstellungsprojekt Artcase Europe"], "preferred_name": "Ausstellungsprojekt Artcase.Europe", "country_associated": "gw", "variant_access_point": ["Ausstellungsprojekt Artcase Europe, 2007, Hildesheim"], "authorized_access_point": "Ausstellungsprojekt Artcase.Europe, 2007, Hildesheim"} 1 -2023-07-08 08:18:56.093564 2023-07-08 08:18:56.093575 10d7c6e4-4442-4dcd-a107-aaea61d609af {"md5": "99f097b1823c222b89fdf14f3292026b", "pid": "990665801", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10358708-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10358708-1", "source": "GND"}], "variant_name": ["Fanprojekt"], "preferred_name": "Fanprojekt Dresden e.V.", "country_associated": "gw", "variant_access_point": ["Fanprojekt. Dresden"], "date_of_establishment": "2006,März", "authorized_access_point": "Fanprojekt Dresden e.V."} 1 -2023-07-08 08:19:01.090132 2023-07-08 08:19:01.090138 ef79ea7a-1b2e-48b2-98bd-da8a54241863 {"md5": "f9e22f7f0822fcf25515fe42f85d7919", "pid": "996151265", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6079112-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6079112-3", "source": "GND"}], "preferred_name": "AE", "country_associated": "fr", "authorized_access_point": "AE, 2005, Lille"} 1 -2023-07-08 08:18:56.194596 2023-07-08 08:18:56.19461 5661cf73-fabf-4af2-a635-48433e6f759d {"md5": "5f8442781e343a103a79d188b4078700", "pid": "990683869", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/7628383-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7628383-5", "source": "GND"}], "variant_name": ["Aborigines Progressive Association", "AAPA", "APA"], "preferred_name": "Australian Aboriginal Progressive Association", "country_associated": "at", "variant_access_point": ["Aborigines Progressive Association", "AAPA", "APA"], "authorized_access_point": "Australian Aboriginal Progressive Association", "biographical_information": ["Interessenverband für die rechtliche Gleichstellung der Aborigines, gegr. 1924, aufgelöst 1928, wiederbegr. 1937"]} 1 -2023-07-08 08:18:56.436603 2023-07-08 08:18:56.436609 54d4cffe-c262-462f-abf3-d268046708c3 {"md5": "2b2e9b1cbb16f34c7768f4cf45027a8b", "pid": "990827321", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10359921-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10359921-6", "source": "GND"}], "variant_name": ["USA. Committee on Agriculture. Welfare Reform Subcommittee", "Welfare Reform Subcommittee"], "preferred_name": "USA. Welfare Reform Subcommittee", "country_associated": "xxu", "variant_access_point": ["USA. Committee on Agriculture. Welfare Reform Subcommittee", "Welfare Reform Subcommittee. USA"], "authorized_access_point": "USA. Welfare Reform Subcommittee"} 1 -2023-07-08 08:18:56.525345 2023-07-08 08:18:56.525354 164418c9-c853-4655-a311-8edeef16e13d {"md5": "06ddc1e055bf5214a97af7af55d3a69a", "pid": "990889203", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/7630771-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7630771-2", "source": "GND"}], "preferred_name": "Unique Records", "country_associated": "gw", "authorized_access_point": "Unique Records", "biographical_information": ["1988 gegr., Sitz Düsseldorf"]} 1 -2023-07-08 08:18:56.662688 2023-07-08 08:18:56.662702 19b72cba-2bd9-4777-984d-c8a92419968c {"md5": "45822f5106cad3868570cad5c864160b", "pid": "99109087X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10361905-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10361905-7", "source": "GND"}], "variant_name": ["Die Südkurven"], "preferred_name": "Südkurven", "country_associated": "gw", "variant_access_point": ["Die Südkurven. Unveraenderte Form"], "authorized_access_point": "Südkurven"} 1 -2023-07-08 08:18:56.775706 2023-07-08 08:18:56.775717 16d59972-9245-4bdd-a32c-46507131fde7 {"md5": "0fa836f07f7a6da7d71ca954e42a741d", "pid": "991108337", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10362072-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10362072-2", "source": "GND"}], "preferred_name": "Ausstellung Hermann Wolf, Zonenbilder", "authorized_access_point": "Ausstellung Hermann Wolf, Zonenbilder, 2001, Stuttgart"} 1 -2023-07-08 08:18:56.876111 2023-07-08 08:18:56.876127 76e84c5a-4b69-409c-b5dc-b83bb2b66034 {"md5": "16f01dd809eabde6890435ace711b64d", "pid": "991145429", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10362433-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10362433-8", "source": "GND"}], "preferred_name": "Literaturkreis der Deutschen aus Russland. Ortsgruppe", "country_associated": "gw", "authorized_access_point": "Literaturkreis der Deutschen aus Russland. Ortsgruppe. Ratingen"} 1 -2023-07-08 08:18:56.990027 2023-07-08 08:18:56.990042 3c4eddbd-eeda-4b95-860a-a776fab1cfa1 {"md5": "e378aaeaab3b8224c878adab5aecfb64", "pid": "991195000", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10362857-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10362857-5", "source": "GND"}], "variant_name": ["Exposición Dominique Perrault Arquitecto"], "preferred_name": "Exposition Dominique Perrault Architecture", "country_associated": "fr", "variant_access_point": ["Exposición Dominique Perrault Arquitecto, 2008 - 2009, Paris ; Madrid"], "authorized_access_point": "Exposition Dominique Perrault Architecture, 2008 - 2009, Paris ; Madrid"} 1 -2023-07-08 08:18:57.100299 2023-07-08 08:18:57.100312 2c8ee6d9-f946-4277-a865-4d8e36c858da {"md5": "5597f9a258efde85bee4cae3779ff22c", "pid": "991211103", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10362998-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10362998-1", "source": "GND"}], "variant_name": ["BCFM"], "preferred_name": "Broadcast Cable Financial Management Association", "country_associated": "xxu", "date_of_termination": "2008,Juli", "variant_access_point": ["BCFM. Abkuerzung"], "date_of_establishment": "1961,Mai", "authorized_access_point": "Broadcast Cable Financial Management Association"} 1 -2023-07-08 08:18:57.215012 2023-07-08 08:18:57.215028 27c08c25-b8f0-4296-8e3a-8db2cf0ec3f7 {"md5": "432a0e25b949a5acc7f41832f887f3d0", "pid": "991510011", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10364912-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10364912-8", "source": "GND"}], "variant_name": ["Heimatverein Neuzedlisch"], "preferred_name": "Heimatverein Neuzedlisch e.V. 1992", "country_associated": "gw", "variant_access_point": ["Heimatverein Neuzedlisch"], "authorized_access_point": "Heimatverein Neuzedlisch e.V. 1992", "biographical_information": ["Sitz: Illertissen-Jedesheim; Neu Zedlich bzw. Nové Sedliště liegt in der Tschechischen Republik"]} 1 -2023-07-08 08:18:57.387674 2023-07-08 08:18:57.387682 f49d7212-33b8-463e-986a-1f894b332f87 {"md5": "4be63f2ab0958d73ed931dc278810d3a", "pid": "991533445", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/3071018-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3071018-2", "source": "GND"}], "preferred_name": "Museo Archeologico Nazionale", "country_associated": "it", "authorized_access_point": "Museo Archeologico Nazionale. Campli"} 1 -2023-07-08 08:18:57.504714 2023-07-08 08:18:57.504725 ac5f9ba7-7bd4-4523-a921-f9e767885836 {"md5": "a1d779e76bbfb159c3ae6345b1fe8068", "pid": "992031486", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10368272-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10368272-7", "source": "GND"}], "variant_name": ["Two until 4 Grooves"], "preferred_name": "2-4 Grooves", "country_associated": "gw", "variant_access_point": ["Two until 4 Grooves"], "authorized_access_point": "2-4 Grooves", "biographical_information": ["Produzenten-Team (Sascha Mülder und Stephan Drobez)"]} 1 -2023-07-08 08:18:57.632899 2023-07-08 08:18:57.632905 b2355c13-4b62-4731-914c-3174ec5f3db2 {"md5": "3ef738d0976e151f23db184e13d35dca", "pid": "992385903", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10370439-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10370439-5", "source": "GND"}], "preferred_name": "Coastal Plains Regional Commission", "country_associated": "xxu", "authorized_access_point": "Coastal Plains Regional Commission"} 1 -2023-07-08 08:18:57.729774 2023-07-08 08:18:57.729784 8f8d3e6d-a307-4775-9e40-2ca2eb455173 {"md5": "b2afd348205444d01eea914a200fea61", "pid": "992448972", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/3071366-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3071366-3", "source": "GND"}], "preferred_name": "Côté Jardin", "country_associated": "fr", "authorized_access_point": "Côté Jardin", "biographical_information": ["Deutsch-französisches Musik-Duo, bestehend aus Anita Zimmermann u. Jean-Yves Charpentier"]} 1 -2023-07-08 08:18:57.836333 2023-07-08 08:18:57.836347 bfc34ed0-ab12-4009-9331-1f865a46bd2e {"md5": "67134a36af43906b3536f51f6cbcd96b", "pid": "992654173", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10372254-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10372254-3", "source": "GND"}], "variant_name": ["Doktor E. Mertens & Cie.", "E. Mertens & Cie.", "Mertens & Cie."], "preferred_name": "Dr. E. Mertens & Cie.", "country_associated": "gw", "variant_access_point": ["Doktor E. Mertens & Cie.. Berlin", "E. Mertens & Cie.. Berlin", "Mertens & Cie.. Berlin"], "authorized_access_point": "Dr. E. Mertens & Cie.. Berlin"} 1 -2023-07-08 08:18:57.926297 2023-07-08 08:18:57.926303 eadd1446-6d3b-444f-9779-77e26275209a {"md5": "a732e6c30df96b73385cda4364264351", "pid": "992787858", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16000783-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16000783-5", "source": "GND"}], "preferred_name": "Paramount Singers", "country_associated": "xxu", "authorized_access_point": "Paramount Singers"} 1 -2023-07-08 08:18:58.032348 2023-07-08 08:18:58.032354 d8ff6572-5397-4eed-8f26-d8e4620a7354 {"md5": "35bac8222963c725340404c3f59e59aa", "pid": "992788137", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16000793-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16000793-8", "source": "GND"}], "preferred_name": "Texas Northeast Mass Choir", "country_associated": "xxu", "authorized_access_point": "Texas Northeast Mass Choir"} 1 -2023-07-08 08:18:58.151405 2023-07-08 08:18:58.15141 c6110ef1-75b9-42ad-b855-9f2492d39fb8 {"md5": "a3a3c53cd8b358053edbb83a30d0d08b", "pid": "992810159", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16000876-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16000876-1", "source": "GND"}], "variant_name": ["Department of Economic Development", "Maryland Department of economic development"], "preferred_name": "Maryland. Department of Economic Development", "country_associated": "xxu", "variant_access_point": ["Department of Economic Development. Maryland", "Maryland Department of economic development"], "authorized_access_point": "Maryland. Department of Economic Development"} 1 -2023-07-08 08:18:58.270926 2023-07-08 08:18:58.270941 460decaa-6131-47fb-9523-4cf6cd91f1a3 {"md5": "4d563ef0dcc48da0c0ac01965fb7ac6d", "pid": "992947588", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16001871-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16001871-7", "source": "GND"}], "preferred_name": "Sur Tango Argentino", "country_associated": "gw", "authorized_access_point": "Sur Tango Argentino", "biographical_information": ["Duo: Bernardo Machus (Bandoneon), Jorge Aravena (Gesang)"]} 1 -2023-07-08 08:18:58.398948 2023-07-08 08:18:58.398952 e1deb863-2926-44fb-8436-0011cdd6986c {"md5": "b31fa4377f2499e919afe5c3da897db9", "pid": "993072542", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16002694-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16002694-5", "source": "GND"}], "variant_name": ["SPD-Ortsverein", "SPD"], "preferred_name": "Sozialdemokratische Partei Deutschlands. Ortsverein", "country_associated": "gw", "variant_access_point": ["SPD-Ortsverein. Garmisch-Partenkirchen", "SPD. Garmisch-Partenkirchen"], "authorized_access_point": "Sozialdemokratische Partei Deutschlands. Ortsverein. Garmisch-Partenkirchen"} 1 -2023-07-08 08:18:58.512155 2023-07-08 08:18:58.51216 55ac9a04-a764-4add-8fe7-0d863d7d34e0 {"md5": "aba89926d274da8312abbc1693535ff8", "pid": "993585043", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16005840-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16005840-5", "source": "GND"}], "variant_name": ["Esperanto-Grupo Bamberg"], "preferred_name": "Esperanto-Gruppe Bamberg", "country_associated": "gw", "variant_access_point": ["Esperanto-Grupo Bamberg"], "date_of_establishment": "1908", "authorized_access_point": "Esperanto-Gruppe Bamberg"} 1 -2023-07-08 08:18:58.62096 2023-07-08 08:18:58.620973 9c533e3a-df69-4dda-883a-e33678b1628f {"md5": "1f6e9381c529aa69a08e82716ddc6e62", "pid": "994152868", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6077448-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6077448-4", "source": "GND"}], "variant_name": ["German Day"], "preferred_name": "Deutscher Tag", "country_associated": "xxu", "variant_access_point": ["German Day, 1935, New York, NY"], "authorized_access_point": "Deutscher Tag, 1935, New York, NY"} 1 -2023-07-08 08:18:58.731478 2023-07-08 08:18:58.731489 035138b8-1740-43be-bd17-1cfec9d371e0 {"md5": "caffa3ccfe17e2dc7f48373103787b75", "pid": "994333080", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16009488-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16009488-4", "source": "GND"}], "variant_name": ["Microbiology Panel"], "preferred_name": "Campden & Chorleywood Food Research Association. Microbiology Panel", "country_associated": "xxk", "variant_access_point": ["Microbiology Panel. Campden & Chorleywood Food Research Association"], "authorized_access_point": "Campden & Chorleywood Food Research Association. Microbiology Panel"} 1 -2023-07-08 08:18:58.821764 2023-07-08 08:18:58.821777 4d7e921a-f68a-4f78-931c-d268813c3ea5 {"md5": "7cf4497148d578913711df731cb72ef5", "pid": "994528647", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6525818-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6525818-6", "source": "GND"}], "preferred_name": "Expanding the Boundaries of Clinical Practice: Building on Experience with Targeted Therapies Satellite Symposium", "country_associated": "sw", "authorized_access_point": "Expanding the Boundaries of Clinical Practice: Building on Experience with Targeted Therapies Satellite Symposium, 2008, Stockholm"} 1 -2023-07-08 08:18:58.914276 2023-07-08 08:18:58.914289 473bb6e1-34c5-4318-8f20-980321286f22 {"md5": "9ff942bb1c7e3c8442ae9b7e287d1c79", "pid": "994603320", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16011197-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16011197-3", "source": "GND"}], "variant_name": ["Freunde der Völker Rußlands e.V.", "BFdVR"], "preferred_name": "Berliner Freunde der Völker Rußlands e.V.", "country_associated": "gw", "variant_access_point": ["Freunde der Völker Rußlands e.V.. Berlin", "BFdVR. Abkuerzung"], "date_of_establishment": "1992", "authorized_access_point": "Berliner Freunde der Völker Rußlands e.V.", "biographical_information": ["Sitz: Berlin"]} 1 -2023-07-08 08:18:59.012956 2023-07-08 08:18:59.012972 4024efb4-736b-4d75-a545-784e38c62434 {"md5": "c9d7aabd148eedaedcb478ad5e9976f7", "pid": "994861915", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16013164-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16013164-9", "source": "GND"}], "variant_name": ["Yacht-Club"], "preferred_name": "Yachtclub", "country_associated": "gw", "variant_access_point": ["Yacht-Club. Hagenburg"], "date_of_establishment": "1969", "authorized_access_point": "Yachtclub. Hagenburg"} 1 -2023-07-08 08:18:59.129649 2023-07-08 08:18:59.129664 21fcbc09-d1d8-4fb9-aba3-d706606e6172 {"md5": "d5315e7488212c324b1aa7b7ef0ee315", "pid": "994895232", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16013351-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16013351-8", "source": "GND"}], "variant_name": ["Kaolinkapelle Schnaittenbach-Hirschau"], "preferred_name": "Kaolinkapelle", "country_associated": "gw", "variant_access_point": ["Kaolinkapelle Schnaittenbach-Hirschau. Ehemalige Vorzugsbenennung SWD"], "authorized_access_point": "Kaolinkapelle. Schnaittenbach; Hirschau"} 1 -2023-07-08 08:18:59.238757 2023-07-08 08:18:59.238774 a2ecc742-6c5f-43f2-9ac3-7973031b937c {"md5": "5f92fe693c24b772743cdfed9ece58a5", "pid": "995009384", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16013971-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16013971-5", "source": "GND"}], "preferred_name": "Standard Bank Investment Corporation. Planning and Research Division", "country_associated": "sa", "authorized_access_point": "Standard Bank Investment Corporation. Johannesburg. Planning and Research Division"} 1 -2023-07-08 08:18:59.360686 2023-07-08 08:18:59.360692 4391f582-cc4c-4b2c-9bb8-55b83d7520b0 {"md5": "21ab52d9f487f70c9985d4de2ea7f216", "pid": "995549060", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16016375-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16016375-4", "source": "GND"}], "variant_name": ["ChVÖ", "Österreichischer Sängerbund", "Österreichischer Sängerbund"], "preferred_name": "Chorverband Österreich", "country_associated": "au", "variant_access_point": ["ChVÖ. Abkuerzung", "Österreichischer Sängerbund. Ehemalige Vorzugsbenennung SWD", "Österreichischer Sängerbund. Frueherer Name"], "authorized_access_point": "Chorverband Österreich"} 1 -2023-07-08 08:18:59.459997 2023-07-08 08:18:59.460002 398ef167-d08a-4885-a3ae-45cc2d041692 {"md5": "d83ea45f95faae008264568a0184af25", "pid": "995590958", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16016660-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16016660-3", "source": "GND"}], "preferred_name": "Städtische Realschule", "country_associated": "gw", "authorized_access_point": "Städtische Realschule. Oelde"} 1 -2023-07-08 08:18:59.586124 2023-07-08 08:18:59.58613 0827983c-d7a4-433f-a46c-e55660b79d8b {"md5": "7db316ba7375e0016e31da740550fcc2", "pid": "995597928", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16016683-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16016683-4", "source": "GND"}], "variant_name": ["Kiko y Shara"], "preferred_name": "Kiko & Shara", "country_associated": "sp", "variant_access_point": ["Kiko y Shara"], "date_of_establishment": "2005", "authorized_access_point": "Kiko & Shara"} 1 -2023-07-08 08:18:59.704883 2023-07-08 08:18:59.704895 e4ab183a-e297-4fc4-a979-ae37c9344914 {"md5": "efe5191c4238b537374748a578b500df", "pid": "995606250", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6526631-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6526631-6", "source": "GND"}], "preferred_name": "Landesverband der Vaterländischen Frauenvereine im Fürstentum Lippe", "authorized_access_point": "Landesverband der Vaterländischen Frauenvereine im Fürstentum Lippe"} 1 -2023-07-08 08:19:01.202461 2023-07-08 08:19:01.202466 e1454e5f-9a40-404c-990e-75e9127aaa57 {"md5": "2589914ede3694176a844fe5d3931cd8", "pid": "996312811", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6088934-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6088934-2", "source": "GND"}], "preferred_name": "International Symposium on Scheduling", "authorized_access_point": "International Symposium on Scheduling, 2002, Hamanako"} 1 -2023-07-08 08:18:59.83218 2023-07-08 08:18:59.832193 37a0e965-4e30-4373-bed5-73a0df5f392c {"md5": "33d0f227b329077fab3d37fd5216a29a", "pid": "995661391", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16016980-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16016980-X", "source": "GND"}], "variant_name": ["USA. Committee on Banking and Financial Services. Subcommittee on Capital Markets, Securities, and Government Sponsored Enterprises", "Subcommittee on Capital Markets, Securities, and Government Sponsored Enterprises"], "preferred_name": "USA. Subcommittee on Capital Markets, Securities, and Government Sponsored Enterprises", "country_associated": "xxu", "variant_access_point": ["USA. Committee on Banking and Financial Services. Subcommittee on Capital Markets, Securities, and Government Sponsored Enterprises", "Subcommittee on Capital Markets, Securities, and Government Sponsored Enterprises. USA"], "authorized_access_point": "USA. Subcommittee on Capital Markets, Securities, and Government Sponsored Enterprises"} 1 -2023-07-08 08:18:59.951535 2023-07-08 08:18:59.951545 30c8c28c-fca2-4f55-8008-795c81b36393 {"md5": "f5ab65e7fdf874aa27349dfebb2608e0", "pid": "996104801", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6083733-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6083733-0", "source": "GND"}], "preferred_name": "X-Sen-Bunseki-Tōronkai, 35", "country_associated": "ja", "authorized_access_point": "X-Sen-Bunseki-Tōronkai, 35, 1999, Tokio"} 1 -2023-07-08 08:19:00.068117 2023-07-08 08:19:00.068128 a0e8e6c4-39b6-4d5b-88b7-8ec155a84020 {"md5": "bf5652956f22a1b52c60fc010a7dc98d", "pid": "996109269", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6081305-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6081305-2", "source": "GND"}], "variant_name": ["Semana Farmacêutica de Ciência e Tecnologia da FCF-USP, 8"], "preferred_name": "Semana Farmacêutica de Ciência e Tecnologia, 8", "country_associated": "bl", "variant_access_point": ["Semana Farmacêutica de Ciência e Tecnologia da FCF-USP, 8, 2003, São Paulo"], "authorized_access_point": "Semana Farmacêutica de Ciência e Tecnologia, 8, 2003, São Paulo"} 1 -2023-07-08 08:19:00.194751 2023-07-08 08:19:00.194764 2d75e596-658f-4534-ae74-9cfe960edd9c {"md5": "07f62da56613c76718800dc4c3936978", "pid": "996113045", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6083372-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6083372-5", "source": "GND"}], "preferred_name": "International Symposium on Joining and Welding Solution to Industrial Innovation", "country_associated": "ja", "authorized_access_point": "International Symposium on Joining and Welding Solution to Industrial Innovation, 2003, Osaka"} 1 -2023-07-08 08:19:00.313629 2023-07-08 08:19:00.313643 8414834d-347f-44e5-aba1-11a9910dbe88 {"md5": "50bddc9eb295b702a5ad9b8f46231ac1", "pid": "996118780", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6080851-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6080851-2", "source": "GND"}], "preferred_name": "Tagung Menschliche Körper in Bewegung", "country_associated": "gw", "authorized_access_point": "Tagung Menschliche Körper in Bewegung, 2000, Bremen"} 1 -2023-07-08 08:19:00.428794 2023-07-08 08:19:00.428804 18b0ca7e-ba7a-48f6-9a09-073cb50bb0a7 {"md5": "e18eed3959839bda312e23ca1b7e9f70", "pid": "996123768", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6082800-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6082800-6", "source": "GND"}], "preferred_name": "WAL Meß und Regelsysteme GmbH", "country_associated": "gw", "authorized_access_point": "WAL Meß und Regelsysteme GmbH. Oldenburg (Oldenburg)"} 1 -2023-07-08 08:19:00.526228 2023-07-08 08:19:00.526239 12a7339e-ac63-4259-9f35-c8c38dffe176 {"md5": "cde8f38e0297793caf3d2e30b6687d32", "pid": "996129952", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6082680-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6082680-0", "source": "GND"}], "variant_name": ["GKSS-Workshop Reibrührschweißen, 2"], "preferred_name": "Workshop Reibrührschweißen, 2", "country_associated": "gw", "variant_access_point": ["GKSS-Workshop Reibrührschweißen, 2, 2002, Geesthacht"], "authorized_access_point": "Workshop Reibrührschweißen, 2, 2002, Geesthacht"} 1 -2023-07-08 08:19:00.654376 2023-07-08 08:19:00.654389 061f2a39-2b8b-4859-8b86-5e6eb19a7288 {"md5": "16b551e50ce48191255e55b8378c3dfa", "pid": "996134492", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6082226-0", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6082226-0", "source": "GND"}], "variant_name": ["Japan National Conference on Geotechnical Engineering, 37", "National Conference on GE, 37", "National Conference on Geotechnical Engineering, 37", "Conference on GE, 37", "Conference on Geotechnical Engineering, 37"], "preferred_name": "Japan National Conference on GE, 37", "country_associated": "ja", "variant_access_point": ["Japan National Conference on Geotechnical Engineering, 37, 2002, Osaka", "National Conference on GE, 37, 2002, Osaka", "National Conference on Geotechnical Engineering, 37, 2002, Osaka", "Conference on GE, 37, 2002, Osaka", "Conference on Geotechnical Engineering, 37, 2002, Osaka"], "authorized_access_point": "Japan National Conference on GE, 37, 2002, Osaka"} 1 -2023-07-08 08:19:00.789129 2023-07-08 08:19:00.789142 d2c66dea-5ca0-47db-92bd-16484fc300f8 {"md5": "f4d350bce0dcef70a96b8a2f3974b574", "pid": "996142762", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6079951-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6079951-1", "source": "GND"}], "preferred_name": "International Symposium on Concrete Science and Engineering - A Tribute to Arnon Bentur", "country_associated": "xxu", "authorized_access_point": "International Symposium on Concrete Science and Engineering - A Tribute to Arnon Bentur, 2004, Evanston, Ill."} 1 -2023-07-08 08:19:00.964232 2023-07-08 08:19:00.964251 b6c0bf96-e52b-4efa-bc1d-2d7766aeff5f {"md5": "6bb4275d4cb77ff1796f9f811b9761c5", "pid": "996150994", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6079139-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6079139-1", "source": "GND"}], "variant_name": ["International Symposium on Particles, Strings and Cosmology, 10"], "preferred_name": "PASCOS, 10", "country_associated": "xxu", "variant_access_point": ["International Symposium on Particles, Strings and Cosmology, 10, 2004, Boston, Mass."], "authorized_access_point": "PASCOS, 10, 2004, Boston, Mass."} 1 -2023-07-08 08:19:01.301361 2023-07-08 08:19:01.30137 339cb4a9-f784-476f-a273-0d4a458b25ed {"md5": "9ec25546ebac574ecc45eab963f01a01", "pid": "996312919", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6088924-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6088924-X", "source": "GND"}], "preferred_name": "Séminaire International sur les Échinodermes, 6", "authorized_access_point": "Séminaire International sur les Échinodermes, 6, 1988"} 1 -2023-07-08 08:19:01.398897 2023-07-08 08:19:01.398903 1ad77b13-017b-473e-8892-1909ceae2eaf {"md5": "2fb459855c5917d007e29f49c43f0c06", "pid": "996322809", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6088434-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6088434-4", "source": "GND"}], "variant_name": ["International Conference on Management Information Systems Incorporating GIS & Remote Sensing, 3", "MIS, 3"], "preferred_name": "International Conference on Management Information Systems Incorporating GIS and Remote Sensing, 3", "variant_access_point": ["International Conference on Management Information Systems Incorporating GIS & Remote Sensing, 3, 2002", "MIS, 3, 2002"], "authorized_access_point": "International Conference on Management Information Systems Incorporating GIS and Remote Sensing, 3, 2002"} 1 -2023-07-08 08:19:01.503995 2023-07-08 08:19:01.504006 964ceb04-3df4-4886-b83a-6d5adff84e13 {"md5": "1da7916e656b138418966a5a1e41a30a", "pid": "996334920", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6087221-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6087221-4", "source": "GND"}], "variant_name": ["Nutrition Conference for Feed Manufacturers, 63"], "preferred_name": "Cornell Nutrition Conference for Feed Manufacturers, 63", "country_associated": "xxu", "variant_access_point": ["Nutrition Conference for Feed Manufacturers, 63, 2001, Rochester, NY"], "authorized_access_point": "Cornell Nutrition Conference for Feed Manufacturers, 63, 2001, Rochester, NY"} 1 -2023-07-08 08:19:01.616719 2023-07-08 08:19:01.616729 bf5d56c7-3ead-45b4-b2c9-6184dc2f11fd {"md5": "00b1797a947d5b83e9985a63f26dbb18", "pid": "996335323", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6087181-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6087181-7", "source": "GND"}], "preferred_name": "Symposium on the Use of Glass in Buildings", "country_associated": "xxu", "authorized_access_point": "Symposium on the Use of Glass in Buildings, 2002, Pittsburgh, Pa."} 1 -2023-07-08 08:19:01.720867 2023-07-08 08:19:01.720871 6b86087f-ea84-4127-a305-98cfba28c8dd {"md5": "93f018f23c1b505d9b23f77870b8b993", "pid": "996335846", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6087129-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6087129-5", "source": "GND"}], "variant_name": ["AIChE Topical Conference on Green Chemical Engineering", "Green Chemical Engineering Topical Conference"], "preferred_name": "Topical Conference on Green Chemical Engineering", "country_associated": "xxu", "variant_access_point": ["AIChE Topical Conference on Green Chemical Engineering, 2003, New Orleans, La.", "Green Chemical Engineering Topical Conference, 2003, New Orleans, La."], "authorized_access_point": "Topical Conference on Green Chemical Engineering, 2003, New Orleans, La."} 1 -2023-07-08 08:19:01.838335 2023-07-08 08:19:01.838347 d27fa549-7a15-439e-9c8e-9a9341a515b6 {"md5": "c153865b4559a907c2823846b212d379", "pid": "996336109", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6087103-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6087103-9", "source": "GND"}], "variant_name": ["WE-Heraeus Seminar Aspects of Quantum Gravity - From Theory to Experimental Search", "WE-Heraeus Seminar, 271"], "preferred_name": "W.-E.-Heraeus-Seminar, 271", "country_associated": "gw", "variant_access_point": ["WE-Heraeus Seminar Aspects of Quantum Gravity - From Theory to Experimental Search, 2002, Bad Honnef", "WE-Heraeus Seminar, 271, 2002, Bad Honnef"], "authorized_access_point": "W.-E.-Heraeus-Seminar, 271, 2002, Bad Honnef"} 1 -2023-07-08 08:19:01.952573 2023-07-08 08:19:01.952581 18cfa291-365f-4a65-9fe8-a89fd8d0af84 {"md5": "5fff74bd1d609754f9a0e85f27c175a9", "pid": "996346562", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6084058-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6084058-4", "source": "GND"}], "preferred_name": "Design of Efficient Illumination Systems Conference", "country_associated": "xxu", "authorized_access_point": "Design of Efficient Illumination Systems Conference, 2003, San Diego, Calif."} 1 -2023-07-08 08:19:02.072054 2023-07-08 08:19:02.072066 603e6f96-08a7-4e79-9f62-89d453964c88 {"md5": "4fde4a8c08e17b25b30e0edc2dd83f15", "pid": "996348980", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6089388-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6089388-6", "source": "GND"}], "preferred_name": "Hochschule Merseburg. Fachbereich Soziale Arbeit, Medien, Kultur", "country_associated": "gw", "authorized_access_point": "Hochschule Merseburg. Fachbereich Soziale Arbeit, Medien, Kultur"} 1 -2023-07-08 08:19:02.181524 2023-07-08 08:19:02.181537 6075a452-dd4d-4d20-8d67-00d9c7c971a2 {"md5": "f220ae8d8c66075d1deb1e406fd41691", "pid": "996450793", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6093765-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6093765-8", "source": "GND"}], "preferred_name": "Mie̜dzynarodowa Konferencja Naukowa pt. Recent Developments in Multiphase Flow", "country_associated": "pl", "authorized_access_point": "Mie̜dzynarodowa Konferencja Naukowa pt. Recent Developments in Multiphase Flow, 1999, Stawiska"} 1 -2023-07-08 08:19:02.287409 2023-07-08 08:19:02.287416 25c9f80d-8281-4b93-a4f3-7dc4001bc85f {"md5": "5c539b976a1c01b10163104c09e22c05", "pid": "996450904", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6093754-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6093754-3", "source": "GND"}], "variant_name": ["Conférence Internationale sur les Ponts en Arc, 3", "International Arch Bridge Conference, 3", "ARCH, 3"], "preferred_name": "International Arch Bridges Conference, 3", "country_associated": "fr", "variant_access_point": ["Conférence Internationale sur les Ponts en Arc, 3, 2001, Paris", "International Arch Bridge Conference, 3, 2001, Paris", "ARCH, 3, 2001, Paris"], "authorized_access_point": "International Arch Bridges Conference, 3, 2001, Paris"} 1 -2023-07-08 08:19:02.402358 2023-07-08 08:19:02.402372 30384ac9-7c06-44a5-ac9f-c316a5e3ecd9 {"md5": "6feaf6261a12e45453777a14c04fa5de", "pid": "996455116", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6091832-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6091832-9", "source": "GND"}], "variant_name": ["International Workshop on OHAN, FSAN, 10", "OHAN, FSAN, 10"], "preferred_name": "International Workshop on Optical Hybrid Access Networks, Full Service Access Networks, 10", "country_associated": "ja", "variant_access_point": ["International Workshop on OHAN, FSAN, 10, 2001, Yokohama", "OHAN, FSAN, 10, 2001, Yokohama"], "authorized_access_point": "International Workshop on Optical Hybrid Access Networks, Full Service Access Networks, 10, 2001, Yokohama"} 1 -2023-07-08 08:19:02.512406 2023-07-08 08:19:02.51242 ba9643c6-530d-411d-8151-12e2daca7a2b {"md5": "4facb9b61b769b2a68d1c12a738ca679", "pid": "996459715", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6094874-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6094874-7", "source": "GND"}], "variant_name": ["ICBM, 3"], "preferred_name": "International Conference on Barkhausen Noise and Micromagnetic Testing, 3", "country_associated": "fi", "variant_access_point": ["ICBM, 3, 2001, Tampere"], "authorized_access_point": "International Conference on Barkhausen Noise and Micromagnetic Testing, 3, 2001, Tampere"} 1 -2023-07-08 08:19:02.622346 2023-07-08 08:19:02.622349 755f0462-810f-4f03-9a97-075f6599ca1f {"md5": "4227b2744fccad6b8b1be20277a9c770", "pid": "996459855", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6094860-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6094860-7", "source": "GND"}], "variant_name": ["Bundesverband des Deutschen Baustoffhandels. Gesprächskreis Baustoffindustrie. Arbeitsgruppe Marketing, Logistik", "Arbeitsgruppe Marketing, Logistik"], "preferred_name": "Bundesverband des Deutschen Baustoffhandels. Arbeitsgruppe Marketing, Logistik", "country_associated": "gw", "variant_access_point": ["Bundesverband des Deutschen Baustoffhandels. Gesprächskreis Baustoffindustrie. Arbeitsgruppe Marketing, Logistik", "Arbeitsgruppe Marketing, Logistik"], "authorized_access_point": "Bundesverband des Deutschen Baustoffhandels. Arbeitsgruppe Marketing, Logistik"} 1 -2023-07-08 08:19:02.72124 2023-07-08 08:19:02.721252 9e4181e6-df85-4607-b872-013d390eb9f4 {"md5": "a74e4ec07b858796f9797840b57caba1", "pid": "996464190", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6091424-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6091424-5", "source": "GND"}], "preferred_name": "Karyoku-Genshiryoku-Hatsuden-Taikai", "country_associated": "ja", "authorized_access_point": "Karyoku-Genshiryoku-Hatsuden-Taikai, 2000, Yokohama"} 1 -2023-07-08 08:19:02.825138 2023-07-08 08:19:02.82515 29179f76-4461-4765-ac1f-1989d57b79c5 {"md5": "97870262a7af54480db207758119fa6f", "pid": "996469915", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6094355-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6094355-5", "source": "GND"}], "variant_name": ["ECM, 2"], "preferred_name": "International Conference on Environmentally Conscious Manufacturing, 2", "country_associated": "xxu", "variant_access_point": ["ECM, 2, 2001, Newton, Mass."], "authorized_access_point": "International Conference on Environmentally Conscious Manufacturing, 2, 2001, Newton, Mass."} 1 -2023-07-08 08:19:02.954635 2023-07-08 08:19:02.955058 3741016e-f250-420e-a892-71c335de8515 {"md5": "b7f548a0b8c31618840987e4c23e777d", "pid": "996474080", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6090937-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6090937-7", "source": "GND"}], "variant_name": ["Hittman Associates, Inc.", "Hittman Associates"], "preferred_name": "Hittman Associates", "country_associated": "xxu", "variant_access_point": ["Hittman Associates, Inc.. Columbia, MD", "Hittman Associates. Columbia, MD"], "authorized_access_point": "Hittman Associates. Columbia, Md."} 1 -2023-07-08 08:19:03.061924 2023-07-08 08:19:03.061938 77c89150-3f5d-4a0f-92c0-ff806fc98538 {"md5": "ae0e736c4ea48d5c387e84db6445a4a1", "pid": "996484280", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6092922-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6092922-4", "source": "GND"}], "variant_name": ["IISC, 4"], "preferred_name": "Iranian International Statistics Conference, 4", "country_associated": "ir", "variant_access_point": ["IISC, 4, 1998, Teheran"], "authorized_access_point": "Iranian International Statistics Conference, 4, 1998, Teheran"} 1 -2023-07-08 08:19:03.15643 2023-07-08 08:19:03.156432 ec15df11-7937-460d-b5d1-90644c760bd4 {"md5": "860254145f6e5545a75f89e5b88bd007", "pid": "996494138", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6089935-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6089935-9", "source": "GND"}], "variant_name": ["Konference s Mezinárodní Účastí Inženýrská Mechanika", "IM", "Konference IM"], "preferred_name": "Národní Konference s Mezinárodní Účastí Inženýrská Mechanika", "variant_access_point": ["Konference s Mezinárodní Účastí Inženýrská Mechanika, 2002, Svratka", "IM, 2002, Svratka", "Konference IM, 2002, Svratka"], "authorized_access_point": "Národní Konference s Mezinárodní Účastí Inženýrská Mechanika, 2002, Svratka"} 1 -2023-07-08 08:19:03.258984 2023-07-08 08:19:03.258997 4d1847e1-1397-4936-974c-833211e7b289 {"md5": "0cf89a0f6814f1be868d47d953f56751", "pid": "996595066", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16020995-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16020995-X", "source": "GND"}], "variant_name": ["Ausstellung Siebenmal 14", "Exhibition 7 x 14", "Exhibition Seven Times 14"], "preferred_name": "Ausstellung 7 x 14", "country_associated": "gw", "variant_access_point": ["Ausstellung Siebenmal 14, 2009, Baden-Baden", "Exhibition 7 x 14, 2009, Baden-Baden", "Exhibition Seven Times 14, 2009, Baden-Baden"], "authorized_access_point": "Ausstellung 7 x 14, 2009, Baden-Baden"} 1 -2023-07-08 08:19:03.389821 2023-07-08 08:19:03.389833 22cb9a19-9d07-4a4d-9e93-4d8e2cd606c2 {"md5": "ca98a39978d504ceff1c3f960b545d65", "pid": "996755519", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6097165-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6097165-4", "source": "GND"}], "preferred_name": "Under One Sky Conference", "country_associated": "xxk", "authorized_access_point": "Under One Sky Conference, 2001, London"} 1 -2023-07-08 08:19:03.498399 2023-07-08 08:19:03.498405 4c4c57d8-20db-4724-baee-03b1565872d8 {"md5": "8c2832c5a711f14649f6bc96eab4db23", "pid": "996765980", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16021723-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16021723-4", "source": "GND"}], "variant_name": ["Katholisch-Österreichische Studentenverbindung Ostaricia", "KÖStV Ostaricia", "Ostaricia", "Katholisch-Österreichische Studentenverbindung Ostaricia Wien im MKV", "K.Ö.St.V. Ostaricia Wien im MKV", "Katholische Österreichische Studentenverbindung Ostaricia im Mittelschüler-Kartell-Verband", "Mittelschüler-Kartell-Verband der Katholischen Farbentragenden Studentenkorporationen Österreichs. Katholisch-Österreichische Studentenverbindung Ostaricia", "Katholische Österreichische Studentenverbindung Ostaricia (im MKV)", "K.Ö.St.V. Ostaricia Wien", "K.Ö.St.V. Ostaricia"], "preferred_name": "KÖStV Ostaricia Wien im MKV", "country_associated": "au", "variant_access_point": ["Katholisch-Österreichische Studentenverbindung Ostaricia", "KÖStV Ostaricia", "Ostaricia", "Katholisch-Österreichische Studentenverbindung Ostaricia Wien im MKV", "K.Ö.St.V. Ostaricia Wien im MKV", "Katholische Österreichische Studentenverbindung Ostaricia im Mittelschüler-Kartell-Verband", "Mittelschüler-Kartell-Verband der Katholischen Farbentragenden Studentenkorporationen Österreichs. Katholisch-Österreichische Studentenverbindung Ostaricia", "Katholische Österreichische Studentenverbindung Ostaricia (im MKV)", "K.Ö.St.V. Ostaricia Wien", "K.Ö.St.V. Ostaricia"], "date_of_establishment": "22.01.1949", "authorized_access_point": "KÖStV Ostaricia Wien im MKV", "biographical_information": ["1907 als Schülerverbindung \\"Rugia\\" gegründet; nach deren Auflösung wurde die Verbindung \\"Ostmark\\" gegründet, die bei der Wiedergründung 1949 in \\"Ostaricia\\" umbenannt wurde.", "Verein, ZVR-Zahl: 543593492"]} 1 -2023-07-08 08:19:03.592239 2023-07-08 08:19:03.592249 015f7f62-7f19-4716-9a45-7b73cac49f86 {"md5": "50aae839add0d2aca3d261cb008ce8a5", "pid": "996797343", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16021882-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16021882-2", "source": "GND"}], "preferred_name": "Deutschnationale Volkspartei. Akademische Ortsgruppe", "authorized_access_point": "Deutschnationale Volkspartei. Akademische Ortsgruppe. Berlin"} 1 -2023-07-08 08:19:03.706642 2023-07-08 08:19:03.706652 54852001-d74c-4e17-920e-fe18428b261f {"md5": "b402f3a436609ee48a450d0f3bbadb26", "pid": "996885226", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6097906-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6097906-9", "source": "GND"}], "preferred_name": "Vers l'Avenir SA", "country_associated": "be", "date_of_termination": "16.02.1999", "date_of_establishment": "22.12.1922", "authorized_access_point": "Vers l'Avenir SA. Namur"} 1 -2023-07-08 08:19:03.806885 2023-07-08 08:19:03.806897 867e6b07-fc2c-4aa3-bc4c-19464f47dd8c {"md5": "352fc226e14d8f7fa7098e25c39480dd", "pid": "996895701", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6098847-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6098847-2", "source": "GND"}], "preferred_name": "Naučno-Stručno Savetovanje Jugoslovenskih Ekonomista", "authorized_access_point": "Naučno-Stručno Savetovanje Jugoslovenskih Ekonomista, 2000, Miločer"} 1 -2023-07-08 08:19:03.905667 2023-07-08 08:19:03.90568 97e04124-4f77-4537-a99b-1cae83b58055 {"md5": "abc0128776610c199f416e4b37bb82fa", "pid": "996895876", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6098830-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6098830-7", "source": "GND"}], "variant_name": ["ICORGT"], "preferred_name": "International Conference on Operations Research and Game Theory with Economic and Industrial Applications", "country_associated": "ii", "variant_access_point": ["ICORGT, 2000, Chennai"], "authorized_access_point": "International Conference on Operations Research and Game Theory with Economic and Industrial Applications, 2000, Chennai"} 1 -2023-07-08 08:19:04.039064 2023-07-08 08:19:04.039069 8c687e83-e1d9-4fa4-b34b-a1b243f83dad {"md5": "36227bb2ffb8e453272b9821fde922b5", "pid": "996901248", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6098302-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6098302-4", "source": "GND"}], "variant_name": ["Faculty of Administration"], "preferred_name": "University of New Brunswick. Faculty of Administration", "country_associated": "xxc", "variant_access_point": ["Faculty of Administration. University of New Brunswick"], "authorized_access_point": "University of New Brunswick. Faculty of Administration"} 1 -2023-07-08 08:19:04.133764 2023-07-08 08:19:04.13377 fe0230b7-c4af-4d05-82a0-5c37ac62930e {"md5": "9dfbc4af8711622e1fde606a2cf17e65", "pid": "997040386", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6527478-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6527478-7", "source": "GND"}], "variant_name": ["LJC Ost"], "preferred_name": "Leder-Jeans-Club Ost", "country_associated": "gw", "variant_access_point": ["LJC Ost. Abkuerzung"], "authorized_access_point": "Leder-Jeans-Club Ost", "biographical_information": ["Sitz nicht ermittelt"]} 1 -2023-07-08 08:19:04.240361 2023-07-08 08:19:04.240367 08c47726-32d8-4bbb-beca-b4d1777b12b7 {"md5": "4f17de0f68ea25343d38e7346a94c019", "pid": "997187581", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6100624-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6100624-5", "source": "GND"}], "preferred_name": "Symposium in Honour of Ezio Silvestroni and Ida Bianco", "country_associated": "it", "authorized_access_point": "Symposium in Honour of Ezio Silvestroni and Ida Bianco, 1999, Rom"} 1 -2023-07-08 08:19:04.346299 2023-07-08 08:19:04.34631 0973e5c3-5e11-4eb9-8a74-5e22cadecabf {"md5": "6dc214e1b4f288bc6c2a47b3da773cc7", "pid": "997192240", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6100903-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6100903-9", "source": "GND"}], "variant_name": ["Weltbankgruppe. Operations Evaluation Unit of MIGA", "Weltbankgruppe. Operations Evaluation Unit", "OEU"], "preferred_name": "Weltbankgruppe. MIGA Operations Evaluation Unit", "variant_access_point": ["Weltbankgruppe. Operations Evaluation Unit of MIGA", "Weltbankgruppe. Operations Evaluation Unit", "OEU. Abkuerzung"], "date_of_establishment": "2002", "authorized_access_point": "Weltbankgruppe. MIGA Operations Evaluation Unit"} 1 -2023-07-08 08:19:05.71702 2023-07-08 08:19:05.717034 9ac2b5a6-58b7-4bc2-9e60-e0c14c52cd6a {"md5": "f1ba070570f49b6e81f739b2bf4cde2f", "pid": "998167037", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16033661-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16033661-2", "source": "GND"}], "variant_name": ["Association Européenne des Pharmaciens Hôpitaux", "AEPH", "Europäische Vereinigung der Krankenhaus-Apotheker", "EAHP", "Association européene des pharmaciens des hopitaux", "AEPH", "Europäische Vereinigung der Krankenhausapotheker", "EAHP"], "preferred_name": "European Association of Hospital Pharmacists", "variant_access_point": ["Association Européenne des Pharmaciens Hôpitaux", "AEPH. Abkuerzung", "Europäische Vereinigung der Krankenhaus-Apotheker", "EAHP. Abkuerzung", "Association européene des pharmaciens des hopitaux", "AEPH. Association européene des pharmaciens des hopitaux", "Europäische Vereinigung der Krankenhausapotheker", "EAHP. European Association of Hospital Pharmacists"], "date_of_establishment": "1972", "authorized_access_point": "European Association of Hospital Pharmacists"} 1 -2023-07-08 08:19:04.441979 2023-07-08 08:19:04.441989 8fc948de-7265-4f75-968e-af9dace8a5d2 {"md5": "31724718e1b77836e7b2dcd71f4d3bee", "pid": "997206845", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6102952-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6102952-X", "source": "GND"}], "variant_name": ["USA. Public Health Service. Office of Disease Prevention and Health Promotion", "USA. Office of Public Health and Science. Office of Disease Prevention and Health Promotion", "Office of Disease Prevention and Health Promotion", "USA. Department of Health and Human Services. Office of Disease Prevention and Health Promotion", "ODPHP"], "preferred_name": "USA. Office of Disease Prevention and Health Promotion", "country_associated": "xxu", "variant_access_point": ["USA. Public Health Service. Office of Disease Prevention and Health Promotion", "USA. Office of Public Health and Science. Office of Disease Prevention and Health Promotion", "Office of Disease Prevention and Health Promotion. USA", "USA. Department of Health and Human Services. Office of Disease Prevention and Health Promotion", "ODPHP. Abkuerzung"], "authorized_access_point": "USA. Office of Disease Prevention and Health Promotion"} 1 -2023-07-08 08:19:04.545058 2023-07-08 08:19:04.545069 c37e9117-17a2-4c60-9469-d6d21a0031e5 {"md5": "dd18d867e9afd53ffe1f55d2c0b94f28", "pid": "997478748", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16024811-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16024811-5", "source": "GND"}], "variant_name": ["Bammesberger"], "preferred_name": "Bammesberger & Co.", "country_associated": "gw", "variant_access_point": ["Bammesberger. Firma"], "authorized_access_point": "Bammesberger & Co.", "biographical_information": ["Maschinenbaufabrik 1921 in Leonberg gegründet"]} 1 -2023-07-08 08:19:04.65234 2023-07-08 08:19:04.652355 e0e7b839-d60f-4c80-b6e8-6340bd71ae59 {"md5": "918db0633ad677d4e8fa77e974e18bb0", "pid": "99770392X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16025860-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16025860-1", "source": "GND"}], "preferred_name": "Exposition Julio González", "country_associated": "fr", "authorized_access_point": "Exposition Julio González, 2007, Paris"} 1 -2023-07-08 08:19:04.764808 2023-07-08 08:19:04.764824 295b036d-4d08-443d-af3f-eeae90be8d7d {"md5": "21d3ab6881a165b91e965f042422cc89", "pid": "997809213", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/3073149-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3073149-5", "source": "GND"}], "variant_name": ["Table-Ronde de Villefontaine, Isère, 2"], "preferred_name": "Table Ronde de Villefontaine, Isère, 2", "country_associated": "fr", "variant_access_point": ["Table-Ronde de Villefontaine, Isère, 2, 2005, Villefontaine"], "authorized_access_point": "Table Ronde de Villefontaine, Isère, 2, 2005, Villefontaine"} 1 -2023-07-08 08:19:04.878802 2023-07-08 08:19:04.878815 c4f010b0-e4c9-4790-bf05-33a7d3815acb {"md5": "a32022591a2eadf24e6b2ae4237a730d", "pid": "99781926X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16026503-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16026503-4", "source": "GND"}], "variant_name": ["CIE Seminar on Computer Programs for Light and Lighting"], "preferred_name": "Seminar on Computer Programs for Light and Lighting", "country_associated": "au", "variant_access_point": ["CIE Seminar on Computer Programs for Light and Lighting, 1992, Wien"], "authorized_access_point": "Seminar on Computer Programs for Light and Lighting, 1992, Wien"} 1 -2023-07-08 08:19:05.010779 2023-07-08 08:19:05.010836 6a6ecf36-138e-47a8-8755-a604a8299648 {"md5": "51ca64e26f1ee5874232804d04c11c96", "pid": "997997117", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6528107-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6528107-X", "source": "GND"}], "preferred_name": "Ausstellung Peter Philippen - Heute", "country_associated": "gw", "authorized_access_point": "Ausstellung Peter Philippen - Heute, 1994, Gronau (Westf.)"} 1 -2023-07-08 08:19:05.136543 2023-07-08 08:19:05.136549 01a3ebdb-2788-4d38-976e-60ccf5c820e2 {"md5": "ab5e02a5be4ddfe732fcd7699d4130a1", "pid": "997998881", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6105033-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6105033-7", "source": "GND"}], "preferred_name": "Amtliche Lehrerbücherei", "authorized_access_point": "Amtliche Lehrerbücherei. Breslau"} 1 -2023-07-08 08:19:05.251504 2023-07-08 08:19:05.25152 07d04baa-ebc7-41dd-9862-6e37d536beeb {"md5": "cd3b711bdb7ab380e65c67d88a066701", "pid": "998032514", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16027470-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16027470-9", "source": "GND"}], "variant_name": ["SVR", "Schulleitungsverband Rheinland-Pfalz e.V."], "preferred_name": "Schulleitungsverband Rheinland-Pfalz", "country_associated": "gw", "variant_access_point": ["SVR. Abkuerzung", "Schulleitungsverband Rheinland-Pfalz e.V.. Unveraenderte Form"], "authorized_access_point": "Schulleitungsverband Rheinland-Pfalz"} 1 -2023-07-08 08:19:05.362589 2023-07-08 08:19:05.362597 3cc04393-7a4b-4ca4-9299-8558c04f377a {"md5": "a35cf01d4f48e8a1b2e41eb6b83d4999", "pid": "998115606", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16028518-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16028518-5", "source": "GND"}], "preferred_name": "Deutsche Aufbauschule Amberg", "authorized_access_point": "Deutsche Aufbauschule Amberg"} 1 -2023-07-08 08:19:05.474153 2023-07-08 08:19:05.474162 d8f529e7-78e0-4582-bb84-cc0b825ce5e1 {"md5": "a9f98e87bbab33a0a5e9427d3b99c99c", "pid": "998143278", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16031285-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16031285-1", "source": "GND"}], "preferred_name": "Umwelttagung", "country_associated": "gw", "authorized_access_point": "Umwelttagung, 2002, Passau"} 1 -2023-07-08 08:19:05.581919 2023-07-08 08:19:05.581929 a816e06c-3b8a-4bbb-9f09-1a8c5f2ca445 {"md5": "c8b80e17a2613d1827ba5aba5e437a2c", "pid": "998153915", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16032349-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16032349-6", "source": "GND"}], "variant_name": ["Tournes, Libraire"], "preferred_name": "Samuel de Tournes, Libraire", "country_associated": "sz", "variant_access_point": ["Tournes, Libraire. Genf"], "authorized_access_point": "Samuel de Tournes, Libraire. Genf"} 1 -2023-07-08 08:19:05.842892 2023-07-08 08:19:05.842897 f7581427-13d2-4bcc-bb9b-f36068f1f010 {"md5": "286f99c59318ccbb82d28c44010e4c29", "pid": "998173983", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16034356-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16034356-2", "source": "GND"}], "variant_name": ["International Telecommunication Energy Conference, 27", "International Telecommunications Energy Conference, 27"], "preferred_name": "INTELEC, 27", "variant_access_point": ["International Telecommunication Energy Conference, 27, 2005, Berlin", "International Telecommunications Energy Conference, 27, 2005, Berlin"], "authorized_access_point": "INTELEC, 27, 2005, Berlin"} 1 -2023-07-08 08:19:05.946529 2023-07-08 08:19:05.946541 bf567115-f181-42a1-b199-268f138ddd63 {"md5": "ee565f8a236f110631d221eb7e500522", "pid": "998174807", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16034438-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16034438-4", "source": "GND"}], "variant_name": ["Asociación Amigos de Valle"], "preferred_name": "Asociación Amigos de Valle-Inclán", "country_associated": "sp", "variant_access_point": ["Asociación Amigos de Valle"], "authorized_access_point": "Asociación Amigos de Valle-Inclán"} 1 -2023-07-08 08:19:06.068595 2023-07-08 08:19:06.068599 231701b6-4b43-4ba5-955e-a1a9801bcd01 {"md5": "9ea1465143ae5c9c1b1343010956683e", "pid": "998198137", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16036771-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16036771-2", "source": "GND"}], "preferred_name": "Colloque Intitulé Frontières-Frontière", "country_associated": "fr", "authorized_access_point": "Colloque Intitulé Frontières-Frontière, 2004, Bordeaux"} 1 -2023-07-08 08:19:06.234504 2023-07-08 08:19:06.23451 dd001836-afcc-4915-9a3c-06a088f5931a {"md5": "365371e5f5ddb1a8c5f8a2add7c53f73", "pid": "998198323", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16036790-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16036790-6", "source": "GND"}], "variant_name": ["Montessori Landesverbannd Bayern e.V."], "preferred_name": "Montessori-Landesverband Bayern", "country_associated": "gw", "variant_access_point": ["Montessori Landesverbannd Bayern e.V.. Unveraenderte Form"], "date_of_establishment": "1985", "authorized_access_point": "Montessori-Landesverband Bayern"} 1 -2023-07-08 08:19:06.343013 2023-07-08 08:19:06.343018 25a9bf9f-f711-40aa-96bd-cffaf18d1606 {"md5": "5280da7889fabbb92c3e540c990b4f1f", "pid": "998216801", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16038638-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16038638-X", "source": "GND"}], "variant_name": ["International Conference on Japanese Literature, 22"], "preferred_name": "Kokusai-Nihon-Bungaku-Kenkyū-Shūkai, 22", "country_associated": "ja", "variant_access_point": ["International Conference on Japanese Literature, 22, 1998, Tokio"], "parallel_access_point": ["国際日本文学研究集会, 22, 1998, 東京"], "authorized_access_point": "Kokusai-Nihon-Bungaku-Kenkyū-Shūkai, 22, 1998, Tokio"} 1 -2023-07-08 08:19:06.493742 2023-07-08 08:19:06.493752 41dd1281-0dce-4102-8e51-52d79aef8215 {"md5": "004b3706fd009cb49bf41fe83d81e327", "pid": "99821731X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16038689-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16038689-5", "source": "GND"}], "variant_name": ["Actienbrauerei", "Aktien-Brauerei", "Actien-Brauerei"], "preferred_name": "Aktienbrauerei", "variant_access_point": ["Actienbrauerei. Ingolstadt", "Aktien-Brauerei. Ingolstadt", "Actien-Brauerei. Ingolstadt"], "authorized_access_point": "Aktienbrauerei. Ingolstadt"} 1 -2023-07-08 08:19:06.600317 2023-07-08 08:19:06.600328 c1bbca68-6fd3-438f-8fff-c7da7a7b8baa {"md5": "70729ab0273ea40dfedb2b54052876c7", "pid": "998245127", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16041470-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16041470-2", "source": "GND"}], "preferred_name": "Evangelisch-Reformierte Kirchengemeinde", "country_associated": "gw", "authorized_access_point": "Evangelisch-Reformierte Kirchengemeinde. Bunde"} 1 -2023-07-08 08:19:06.703354 2023-07-08 08:19:06.703366 1943a537-7fff-4c77-85bc-d704e0db80ea {"md5": "063ca7fa70022bb05b235bc6c4bfd820", "pid": "998245518", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16041509-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16041509-3", "source": "GND"}], "preferred_name": "Sonnberg-Buam", "authorized_access_point": "Sonnberg-Buam"} 1 -2023-07-08 08:19:06.822586 2023-07-08 08:19:06.822594 613872ec-057e-48aa-a2f6-e87529cbbf53 {"md5": "9a0dc5a6966ae2aba481a9194a5772aa", "pid": "998251313", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16042089-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16042089-1", "source": "GND"}], "preferred_name": "Course of Empire", "authorized_access_point": "Course of Empire"} 1 -2023-07-08 08:19:06.94089 2023-07-08 08:19:06.940902 1ec256b7-4ba8-44d9-bfc6-46088e423748 {"md5": "edf6bf6319519048ae3d455773f597a0", "pid": "998278815", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16044839-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16044839-6", "source": "GND"}], "preferred_name": "Ausstellung Zugluft - Kunst und Kultur in der Innerschweiz 1920 - 1950", "country_associated": "sz", "authorized_access_point": "Ausstellung Zugluft - Kunst und Kultur in der Innerschweiz 1920 - 1950, 2008, Stans"} 1 -2023-07-08 08:19:07.067622 2023-07-08 08:19:07.067627 83c8be4b-2ff3-4e05-974c-1160d65f0174 {"md5": "d9f4b32a75b156267164890c2dc359f3", "pid": "998292125", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16046170-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16046170-4", "source": "GND"}], "variant_name": ["Imagina, 15", "Imagina", "Imagina"], "preferred_name": "Imagina, 15", "country_associated": "mc", "variant_access_point": ["Imagina, 15, 1996, Monaco", "Imagina, 15. 1996, Monte Carlo", "Imagina, 1996, Monte Carlo"], "authorized_access_point": "Imagina, 15, 1996, Monte Carlo", "biographical_information": ["Internationale Fachmesse für Computeranimation"]} 1 -2023-07-08 08:19:07.196462 2023-07-08 08:19:07.196475 d3df9ac4-d55a-49a7-b684-e28df4b12511 {"md5": "ccf21ed50d5f86b34479629256c3d087", "pid": "998331163", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16047162-X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16047162-X", "source": "GND"}], "preferred_name": "Ausstellung Jim Wenders. Journey to Onomichi", "authorized_access_point": "Ausstellung Jim Wenders. Journey to Onomichi, 2009 - 2010, Berlin"} 1 -2023-07-08 08:19:07.303751 2023-07-08 08:19:07.303758 ee6ef1ca-1f87-445f-9b9d-70778eb946b4 {"md5": "273218175bd38f178e202327baa540a2", "pid": "998858234", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16049255-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16049255-5", "source": "GND"}], "variant_name": ["SPD"], "preferred_name": "Sozialdemokratische Partei Deutschlands. Ortsverein", "country_associated": "gw", "variant_access_point": ["SPD. Groß Stöckheim"], "authorized_access_point": "Sozialdemokratische Partei Deutschlands. Ortsverein. Groß Stöckheim"} 1 -2023-07-08 08:19:07.447891 2023-07-08 08:19:07.447894 4ca9de53-dabd-48ff-a1cb-b046f058ff6c {"md5": "75ff39d17357ac617bb21f3b3832a047", "pid": "998904635", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16049441-2", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16049441-2", "source": "GND"}], "variant_name": ["ICA Symposium on Cartography for Central and Eastern Europe, 1", "ICA Symposium on Cartography for CEE, 1", "Symposium on Cartography for CEE, 1", "CEE"], "preferred_name": "Symposium on Cartography for Central and Eastern Europe, 1", "country_associated": "au", "variant_access_point": ["ICA Symposium on Cartography for Central and Eastern Europe, 1, 2009, Wien", "ICA Symposium on Cartography for CEE, 1, 2009, Wien", "Symposium on Cartography for CEE, 1, 2009, Wien", "CEE"], "authorized_access_point": "Symposium on Cartography for Central and Eastern Europe, 1, 2009, Wien"} 1 -2023-07-08 08:19:07.554433 2023-07-08 08:19:07.554439 41b01ece-8932-4232-8fa6-015ec45c1681 {"md5": "473cbcb39dfc29f295270d5d39861b4c", "pid": "999064185", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16050131-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16050131-3", "source": "GND"}], "preferred_name": "TLS, 5", "country_associated": "gw", "authorized_access_point": "TLS, 5, 2009, Fulda", "biographical_information": ["TLS=Terrestrische Laserscanning"]} 1 -2023-07-08 08:19:07.681415 2023-07-08 08:19:07.68142 7fc02bd6-70ef-420d-8012-4001394039eb {"md5": "7645faf89dc44b07e777c0804ebdc70c", "pid": "999203592", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6528986-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6528986-9", "source": "GND"}], "variant_name": ["Institut des sciences du langage et de la communication, Université de Neuchâtel", "Institut des sciences du langage et de la communication", "Université de Neuchâtel. Faculté des lettres et sciences humaines. Institut des sciences du langage et de la communication", "Institut des sciences du langage et de la communication", "Institut des Sciences du Langage et de la Communication"], "preferred_name": "Université de Neuchâtel. Institut des sciences du langage et de la communication", "country_associated": "sz", "variant_access_point": ["Institut des sciences du langage et de la communication, Université de Neuchâtel. Unveraenderte Form", "Institut des sciences du langage et de la communication", "Université de Neuchâtel. Faculté des lettres et sciences humaines. Institut des sciences du langage et de la communication", "Institut des sciences du langage et de la communication. Université de Neuchâtel", "Institut des Sciences du Langage et de la Communication. Neuchâtel"], "authorized_access_point": "Université de Neuchâtel. Institut des sciences du langage et de la communication"} 1 -2023-07-08 08:19:07.809023 2023-07-08 08:19:07.809034 da3cf22a-3a12-4b32-b6b2-3d7393a19a18 {"md5": "c9d50284f7b9d4fa9ffafa9625c944c5", "pid": "999527061", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6108863-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6108863-8", "source": "GND"}], "preferred_name": "Čtenija, Posvjaščennye Razrabotke Naučnogo Nasledija i Razvitiju Idej K. Ė. Ciolkovskogo, 12", "authorized_access_point": "Čtenija, Posvjaščennye Razrabotke Naučnogo Nasledija i Razvitiju Idej K. Ė. Ciolkovskogo, 12, 1977, Kaluga"} 1 -2023-07-08 08:19:07.94725 2023-07-08 08:19:07.947261 17cbac10-c1ac-46f7-a59a-d7e2fe468ca7 {"md5": "c857ee761a1999a1c2ceb14887dfff2c", "pid": "999533908", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/6110264-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6110264-7", "source": "GND"}], "variant_name": ["Louisville Stompers"], "preferred_name": "Clifford Hayes' Louisville Stompers", "country_associated": "xxu", "variant_access_point": ["Louisville Stompers"], "authorized_access_point": "Clifford Hayes' Louisville Stompers"} 1 -2023-07-08 08:19:08.060653 2023-07-08 08:19:08.060662 a9296433-f4d4-4cae-879c-64618c47355d {"md5": "8629aaa610d8d6bd2db39720982a32c4", "pid": "999541161", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/6109454-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6109454-7", "source": "GND"}], "preferred_name": "Vsesojuznyj Simpozium po Ėksperimental'noj Poliploidii u Šelkovicy", "authorized_access_point": "Vsesojuznyj Simpozium po Ėksperimental'noj Poliploidii u Šelkovicy"} 1 -2023-07-08 08:19:08.172729 2023-07-08 08:19:08.172735 e8269f0a-af9d-4dd8-acc8-2f7b90c48ad8 {"md5": "834cd48db67c79896c0385b647bea3d3", "pid": "999549847", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16052597-4", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16052597-4", "source": "GND"}], "variant_name": ["Universidad Nacional Andrés Bello. Facultad de Ciencias Económicas y Administrativas. Centro de Desarrollo", "Universidad Nacional Andrés Bello. Centro de Desarrollo"], "preferred_name": "Centro de Desarrollo", "country_associated": "cl", "variant_access_point": ["Universidad Nacional Andrés Bello. Santiago de Chile. Facultad de Ciencias Económicas y Administrativas. Centro de Desarrollo", "Universidad Nacional Andrés Bello. Santiago de Chile. Centro de Desarrollo"], "authorized_access_point": "Centro de Desarrollo. Santiago de Chile"} 1 -2023-07-08 08:19:08.303274 2023-07-08 08:19:08.303445 c7317900-b502-45e6-a4b1-7e5502bd828f {"md5": "4143e8b1d2199bf7bc8e5df15426c395", "pid": "999646869", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16053190-1", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16053190-1", "source": "GND"}], "preferred_name": "Viribus Unitis, Hilfsverein für Lungenkranke in den Österreichischen Königreichen und Ländern", "authorized_access_point": "Viribus Unitis, Hilfsverein für Lungenkranke in den Österreichischen Königreichen und Ländern"} 1 -2023-07-08 08:19:08.434545 2023-07-08 08:19:08.434551 d2bf53f1-803f-4efd-9157-2b971fbb562b {"md5": "6739446f26065a24ec03c578c6b4dde5", "pid": "999780859", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16053855-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16053855-5", "source": "GND"}], "preferred_name": "Spitzbart", "country_associated": "gw", "date_of_establishment": "2007", "authorized_access_point": "Spitzbart", "biographical_information": ["dt. Rocktrio um Björn Müller"]} 1 -2023-07-08 08:19:08.587735 2023-07-08 08:19:08.587741 128bd1e7-d52f-4645-9ca6-80f62cc92109 {"md5": "85c700518feef60e52ee8389b1266b4a", "pid": "999853155", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16054271-6", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16054271-6", "source": "GND"}], "preferred_name": "Freiwillige Feuerwehr", "date_of_establishment": "1934", "authorized_access_point": "Freiwillige Feuerwehr. Pfalzfeld"} 1 -2023-07-08 08:19:08.72114 2023-07-08 08:19:08.721155 ab1bee1a-72bd-438b-83e3-38928ee4ea4f {"md5": "37d5e50c1337a060c38f8ce6cb26ea39", "pid": "999862243", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16054325-3", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16054325-3", "source": "GND"}], "variant_name": ["Industrie- und Gewerbeschule Neustadt, Herzogtum Coburg"], "preferred_name": "Herzogliche Industrie- und Gewerbeschule Neustadt, Herzogtum Coburg", "variant_access_point": ["Industrie- und Gewerbeschule Neustadt, Herzogtum Coburg"], "authorized_access_point": "Herzogliche Industrie- und Gewerbeschule Neustadt, Herzogtum Coburg"} 1 -2023-07-08 08:19:08.834247 2023-07-08 08:19:08.834259 0c8a9f3a-89a3-49a7-b923-e83ccff0858a {"md5": "d2af3b95f8f8eaf42279bc3899de827d", "pid": "999871633", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/16054384-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16054384-8", "source": "GND"}], "preferred_name": "Großdeutsche Feuerbestattung, Versicherungs-Verein auf Gegenseitigkeit", "authorized_access_point": "Großdeutsche Feuerbestattung, Versicherungs-Verein auf Gegenseitigkeit. Berlin", "biographical_information": ["Vorlage: 1934 - 1939"]} 1 -2023-07-08 08:19:08.944207 2023-07-08 08:19:08.944219 e3a451cb-0bde-4de6-9df8-b4a0e21f7dd1 {"md5": "7f6bca68fee87f03dd151dc0dbc91619", "pid": "999921770", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16054571-7", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16054571-7", "source": "GND"}], "preferred_name": "Convegno San Bernardo di Clairvaux, 3", "country_associated": "it", "authorized_access_point": "Convegno San Bernardo di Clairvaux, 3, 2008, Rom"} 1 -2023-07-08 08:19:09.049798 2023-07-08 08:19:09.049808 3b47dd1a-d0f7-46e5-8b09-5edecef41232 {"md5": "ab8f25a78e7ab577b8f9976c66c11c53", "pid": "999991361", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/16054990-5", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16054990-5", "source": "GND"}], "preferred_name": "Exhibition Rachel Whiteread, Drawings", "country_associated": "xxu", "authorized_access_point": "Exhibition Rachel Whiteread, Drawings, 2010 - 2011, Los Angeles, Calif. u.a."} 1 -2023-07-08 10:21:54.814113 2023-07-08 10:23:45.82527 823d4b44-520d-4805-accc-be9d92190f38 {"md5": "fa2eb04dc03589b0869cdf8fef069c12", "pid": "1086281020", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086281020", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086281020", "source": "GND"}], "variant_name": ["Buxtorf, Johann", "Buxtorf, Johann der Jüngere"], "preferred_name": "Buxtorf", "variant_access_point": ["Buxtorf, Johann. Verlag, Basel", "Buxtorf, Johann der Jüngere. Verlag, Basel"], "authorized_access_point": "Buxtorf. Verlag, Basel"} 2 -2023-07-08 10:21:55.267355 2023-07-08 10:23:49.902306 b5fb144d-9494-417b-9cf8-5c2f32ed5a55 {"md5": "17a1ec238e457e9967b27c3cc09d6cf3", "pid": "136380638", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/136380638", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/136380638", "source": "GND"}], "date_of_birth": "16.09.1935", "preferred_name": "Winter, Bernd", "country_associated": "rm", "authorized_access_point": "Winter, Bernd, 1935-", "biographical_information": ["Promotion an der Universität Erlangen-Nürnberg 1970"]} 2 -2023-07-08 10:21:55.677161 2023-07-08 10:23:50.410424 7fbe6d05-f313-48ab-a5ca-5858d6b30c66 {"md5": "76cb2d9983541a5438cc68fdee95bbee", "pid": "139094342", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139094342", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139094342", "source": "GND"}], "date_of_birth": "1976", "preferred_name": "Kurig, Barbara", "country_associated": "gw", "authorized_access_point": "Kurig, Barbara, 1976-", "biographical_information": ["Diss. Universität Tübingen, Fakultät für Chemie und Pharmazie"]} 2 -2023-07-08 10:22:25.405791 2023-07-08 10:26:46.79065 db7909ea-b74e-4c18-b4fa-285a7f19e45f {"md5": "7800f0aa214ea4b94b39518670c9db6c", "pid": "1085824861", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1085824861", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1085824861", "source": "GND"}], "preferred_name": "SFE Banking Corporation", "authorized_access_point": "SFE Banking Corporation. Luxembourg"} 2 -2023-07-08 10:21:56.633927 2023-07-08 10:23:52.879077 24bb25d9-136f-44ba-8c5c-c64cdd7c0ef0 {"md5": "149c27e95018082c13ef22ec83ef7826", "pid": "139204105", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139204105", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139204105", "source": "GND"}], "date_of_birth": "1971", "preferred_name": "Grinštejn, Nana", "authorized_access_point": "Grinštejn, Nana, 1971-", "biographical_information": ["Russ. Dichterin"]} 2 -2023-07-08 10:21:57.511099 2023-07-08 10:24:01.402743 1c4bbc5f-9832-4020-b48a-41ec40bec258 {"md5": "d23ad5fc87ceb2ee5f7a7253a3aea608", "pid": "1089511663", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1089511663", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089511663", "source": "GND"}], "variant_name": ["Roja, Nicolás"], "preferred_name": "Rojas, Nicolás", "variant_access_point": ["Roja, Nicolás"], "authorized_access_point": "Rojas, Nicolás", "biographical_information": ["Biologe"]} 2 -2023-07-08 10:21:57.936594 2023-07-08 10:24:02.379608 73304b1b-4119-4a82-a920-1ef725e56bef {"md5": "e7a67d8afac82e3de77a9fd688a6a26c", "pid": "1158249543", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1158249543", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158249543", "source": "GND"}], "variant_name": ["LeTohic, Jacqueline", "LeTohic, Jacqueline P.-", "Proust, Jacqueline", "Tohic, Jacqueline P.- le", "Tohic, Jacqueline le"], "preferred_name": "Proust-LeTohic, Jacqueline", "variant_access_point": ["LeTohic, Jacqueline", "LeTohic, Jacqueline P.-", "Proust, Jacqueline", "Tohic, Jacqueline P.- le", "Tohic, Jacqueline le"], "authorized_access_point": "Proust-LeTohic, Jacqueline"} 2 -2023-07-08 10:21:58.397741 2023-07-08 10:24:07.047612 d2af7b2c-8e87-4417-9249-26aa6c520768 {"md5": "36d0017cc30cd43afbf524cce4dadb60", "pid": "137858825", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/137858825", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/137858825", "source": "GND"}], "variant_name": ["Forster, Bill"], "date_of_birth": "1878", "date_of_death": "19XX", "preferred_name": "Breuer, Hermann", "country_associated": "gw", "variant_access_point": ["Forster, Bill, 1878-19XX"], "authorized_access_point": "Breuer, Hermann, 1878-19XX"} 2 -2023-07-08 10:21:58.791879 2023-07-08 10:24:14.58481 03a62d82-2d73-464b-bf90-dc77082d9d6d {"md5": "a404902a0652405e1758f5ed5ec5d0d5", "pid": "134550412", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/134550412", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134550412", "source": "GND"}], "date_of_birth": "19XX", "preferred_name": "Walter, Peter", "authorized_access_point": "Walter, Peter, 19XX-"} 2 -2023-07-08 10:21:59.197709 2023-07-08 10:24:15.104458 0b99cd66-2371-49cb-a64a-d70a4030a7b7 {"md5": "c59a4bae2a96370d9965523ac56d3856", "pid": "134619102", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/134619102", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134619102", "source": "GND"}], "date_of_birth": "1928", "preferred_name": "Zech, Carlferdinand", "country_associated": "gw", "authorized_access_point": "Zech, Carlferdinand, 1928-"} 2 -2023-07-08 10:21:59.610485 2023-07-08 10:24:16.502574 8e2d091b-e046-43ff-acb4-df341b009510 {"md5": "b81cfc8e6b17e3cb7741709d7c43c928", "pid": "134563166", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/134563166", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134563166", "source": "GND"}], "date_of_birth": "10.11.1939", "date_of_death": "01.02.2014", "preferred_name": "Zacher, Peter", "country_associated": "gw", "authorized_access_point": "Zacher, Peter, 1939-2014", "biographical_information": ["Musikkritiker u. Kommunalpolitiker; ab 1960 in Dresden."]} 2 -2023-07-08 10:22:00.022182 2023-07-08 10:24:17.916617 f392a00b-27ae-4d81-ac93-1b3b948cc1e5 {"md5": "ce817c76900b3188320d112ad8a3c331", "pid": "130556939", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/130556939", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/130556939", "source": "GND"}], "date_of_birth": "1968", "preferred_name": "Krüger, Olaf", "authorized_access_point": "Krüger, Olaf, 1968-", "biographical_information": ["Philosoph und Sozialwissenschaftler, Fachgebiet: Wirtschafts- und Verkehrsgeschichte; Dipl.-Kaufmann"]} 2 -2023-07-08 10:22:00.424802 2023-07-08 10:24:18.862518 616fcd82-53e2-4f77-8887-f81da939005e {"md5": "84b73ea2d38803df2725a22b1a2968fa", "pid": "139376119", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139376119", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139376119", "source": "GND"}], "variant_name": ["Nguyen, M. L."], "preferred_name": "Nguyen, Minh-Long", "country_associated": "au", "variant_access_point": ["Nguyen, M. L."], "authorized_access_point": "Nguyen, Minh-Long"} 2 -2023-07-08 10:22:01.920985 2023-07-08 10:24:26.386038 302700cf-e674-41ac-8600-6ff816caf2d2 {"md5": "b99e2d8c4e6f01e46f364e0cf36b6d50", "pid": "139480056", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139480056", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139480056", "source": "GND"}], "variant_name": ["Hillel, F."], "date_of_birth": "1865", "preferred_name": "Hillel, Feivel", "variant_access_point": ["Hillel, F., 1865-"], "authorized_access_point": "Hillel, Feivel, 1865-"} 2 -2023-07-08 10:22:02.839575 2023-07-08 10:24:31.291419 2d8516ee-8e95-455a-b741-d21c789d2520 {"md5": "392b51887dee11624b53299978fedebe", "pid": "139621652", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139621652", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139621652", "source": "GND"}], "date_of_birth": "1973", "preferred_name": "Sohst, Wiebke", "country_associated": "gw", "authorized_access_point": "Sohst, Wiebke, 1973-", "biographical_information": ["ist in der Kundenservice-Steuerung eines großen Unternehmens tätig; lebt im Siebengebirge bei Bonn und auf der Halbinsel Eiderstedt in Nordfriesland"]} 2 -2023-07-08 10:22:03.252606 2023-07-08 10:24:36.259524 c7e8b033-e6dd-4e87-b5ba-fdef9d30929e {"md5": "44ae1b3cbaa17b169e5d532d9b9118ad", "pid": "1143635876", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1143635876", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1143635876", "source": "GND"}], "preferred_name": "Ranganathan, Thiagu", "country_associated": "ii", "authorized_access_point": "Ranganathan, Thiagu"} 2 -2023-07-08 10:22:03.681718 2023-07-08 10:24:37.340681 92df9da7-3c5a-4c0b-8c59-56a80a4a2345 {"md5": "4d7ae26d69c629175d7edccd31696689", "pid": "1104279754", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1104279754", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1104279754", "source": "GND"}], "variant_name": ["Yang Rui", "杨, 蕤", "楊蕤", "楊, 蕤"], "date_of_birth": "1975", "preferred_name": "Yang, Rui", "country_associated": "cc", "variant_access_point": ["Yang Rui, 1975-", "杨, 蕤, 1975-", "楊蕤, 1975-", "楊, 蕤, 1975-"], "parallel_access_point": ["杨蕤, 1975-"], "authorized_access_point": "Yang, Rui, 1975-"} 2 -2023-07-08 10:22:04.410512 2023-07-08 10:24:42.447692 f64f657d-e2dc-4f9f-93f7-042060e367e7 {"md5": "fdaffa629c9aa4de077e560b843276c4", "pid": "1140075810", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1140075810", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1140075810", "source": "GND"}], "preferred_name": "Bayer, Timo", "country_associated": "gw", "authorized_access_point": "Bayer, Timo", "biographical_information": ["Wissenschaftl. Mitarbeiter am DFG-Projekt Richard Kleine, Lehrstuhl für Systemat. Theologie, Institut für Kathol. Theologie, Universität des Saarlandes"]} 2 -2023-07-08 10:22:04.796343 2023-07-08 10:24:42.852909 01ab766a-0d85-4775-9d34-56f28a8a7452 {"md5": "3b159570a62793389ad9997cc0738419", "pid": "1140557696", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1140557696", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1140557696", "source": "GND"}], "variant_name": ["Schimitzek, Friedrich Wilhelm"], "date_of_birth": "12.01.1892", "preferred_name": "Schimitzek, Friedrich", "country_associated": "gw", "variant_access_point": ["Schimitzek, Friedrich Wilhelm, 1892-"], "authorized_access_point": "Schimitzek, Friedrich, 1892-"} 2 -2023-07-08 10:22:05.256759 2023-07-08 10:24:43.405007 92e76df9-b6b9-4337-91e4-7db4e29774c3 {"md5": "54985a33618fd9d1c24d9a955cb37497", "pid": "1117731855", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1117731855", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1117731855", "source": "GND"}], "preferred_name": "Leahy, Tamara", "country_associated": "at", "authorized_access_point": "Leahy, Tamara", "biographical_information": ["Chied of Staff, Military and Defence Studies Program, Australian Command and Staff College ; 2011 BA of Law, Australian National UNiversity"]} 2 -2023-07-08 10:22:31.341296 2023-07-08 10:27:15.597796 332e20dd-c29b-43b4-8031-7d82bc2632e9 {"md5": "937a7aab066b69d002fe321d4177a642", "pid": "126811846X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/126811846X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/126811846X", "source": "GND"}], "preferred_name": "Zalis, Zane", "country_associated": "xxc", "authorized_access_point": "Zalis, Zane"} 2 -2023-07-08 10:22:06.320521 2023-07-08 10:24:49.391154 51b79c89-43f9-42d7-ba65-649b73cd481b {"md5": "8fb971c4e92968815a77aa57f2eb30a0", "pid": "1248272013", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1248272013", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1248272013", "source": "GND"}], "preferred_name": "Lohrengel, Josha", "authorized_access_point": "Lohrengel, Josha"} 2 -2023-07-08 10:22:06.711204 2023-07-08 10:24:50.36779 7703b736-16d3-4d51-ac21-b5f4e6eccc58 {"md5": "7c84639df4fd42c114412602956cc27d", "pid": "1251903606", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1251903606", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1251903606", "source": "GND"}], "preferred_name": "Blust, Luise", "authorized_access_point": "Blust, Luise"} 2 -2023-07-08 10:22:07.08514 2023-07-08 10:24:50.883197 183e4a55-6376-484a-a3dd-9c7393a1884b {"md5": "f3b573b61628cd2995f19779b61b099d", "pid": "1253266913", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1253266913", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1253266913", "source": "GND"}], "preferred_name": "Guerra, Samira", "country_associated": "sz", "authorized_access_point": "Guerra, Samira"} 2 -2023-07-08 10:22:07.895143 2023-07-08 10:24:53.722283 c4be617d-67d4-4dee-85ec-f7d68a78c2f0 {"md5": "bf8fbaa9bb6dbbb9a2834e389f257ddc", "pid": "1268485969", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1268485969", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1268485969", "source": "GND"}], "date_of_birth": "1982", "preferred_name": "Hamann, Alexander", "country_associated": "gw", "authorized_access_point": "Hamann, Alexander, 1982-"} 2 -2023-07-08 10:22:08.283578 2023-07-08 10:24:55.205862 656d8db2-1187-4ac6-b36c-f1651c1cada4 {"md5": "8532b8cb7977175868e5c6a3f87a68e1", "pid": "1032305649", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1032305649", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1032305649", "source": "GND"}], "variant_name": ["Czechowicz, Gabrjel"], "date_of_birth": "02.10.1876", "date_of_death": "22.01.1938", "preferred_name": "Czechowicz, Gabriel", "country_associated": "pl", "variant_access_point": ["Czechowicz, Gabrjel, 1876-1938"], "authorized_access_point": "Czechowicz, Gabriel, 1876-1938", "biographical_information": ["Poln. Jurist; Ökonom; Politiker; von 1926 bis 1928 Finanzminister in Polen"]} 2 -2023-07-08 10:22:08.698994 2023-07-08 10:25:02.176511 186ee62b-da2c-40e2-967b-b156b3b825b2 {"md5": "842dbffe0001f5a351855a780c03a244", "pid": "1227063229", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1227063229", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1227063229", "source": "GND"}], "date_of_birth": "1939", "preferred_name": "Skop, Gizela Maria", "country_associated": "pl", "authorized_access_point": "Skop, Gizela Maria, 1939-"} 2 -2023-07-08 10:22:09.049315 2023-07-08 10:25:03.266073 f642178c-2ebf-4897-9147-9de1e53696d6 {"md5": "cc595013b0e581bacf15764d75911a3a", "pid": "109123471X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/109123471X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/109123471X", "source": "GND"}], "preferred_name": "Recent Advances in the Use of In Vitro Techniques", "authorized_access_point": "Recent Advances in the Use of In Vitro Techniques, 1987, London"} 2 -2023-07-08 10:22:09.492033 2023-07-08 10:25:05.517016 bec7fb42-142e-47eb-b0a5-a18fd709db09 {"md5": "09c1eb888bfe50b64618d8fd8f31dcac", "pid": "1079732772", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1079732772", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1079732772", "source": "GND"}], "date_of_birth": "1878", "preferred_name": "Krennitz, Franz", "country_associated": "gw", "authorized_access_point": "Krennitz, Franz, 1878-", "biographical_information": ["1909 an der Akademie der Bildenden Künste München"]} 2 -2023-07-08 10:22:09.97041 2023-07-08 10:25:08.0378 893efee7-2c9d-4a00-8640-cee823cf47bc {"md5": "45001474f1ffa7d837161f4d6ae633d5", "pid": "1169953743", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1169953743", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1169953743", "source": "GND"}], "date_of_birth": "06.09.1828", "date_of_death": "01.03.1883", "preferred_name": "Schlichter, Christian", "country_associated": "gw", "authorized_access_point": "Schlichter, Christian, 1828-1883", "biographical_information": ["1882-1883 Erster Bürgermeister von Wiesbaden"]} 2 -2023-07-08 10:22:10.332282 2023-07-08 10:25:11.816593 1c5b8b12-7e03-4af9-8c74-0e72958c50fd {"md5": "52f4980b421954389a1914fbbd719b99", "pid": "12864852X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/12864852X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12864852X", "source": "GND"}], "date_of_birth": "1954", "preferred_name": "Schüßlburner, Josef", "country_associated": "gw", "authorized_access_point": "Schüßlburner, Josef, 1954-"} 2 -2023-07-08 10:22:11.12528 2023-07-08 10:25:17.175604 bcba520f-1f40-486d-adb9-df9960ce597b {"md5": "533329b40391f1c7e249b52b797b05de", "pid": "1158577125", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1158577125", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158577125", "source": "GND"}], "variant_name": ["Cao, Xuân Mỹ", "Mỹ, Cao Xuân"], "preferred_name": "Cao-xuân-Mỹ", "variant_access_point": ["Cao, Xuân Mỹ", "Mỹ, Cao Xuân"], "authorized_access_point": "Cao-xuân-Mỹ"} 2 -2023-07-08 10:22:11.489125 2023-07-08 10:25:17.629544 552a42be-ff52-4e69-b588-29d7331ab99f {"md5": "6c3c2eb699c5af927bc442b411ea23d0", "pid": "11947428X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://d-nb.info/gnd/11947428X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/11947428X", "source": "GND"}], "date_of_birth": "22.08.1720", "date_of_death": "09.03.1791", "preferred_name": "Sagramoso, Michele Enrico di", "country_associated": "it", "authorized_access_point": "Sagramoso, Michele Enrico di, 1720-1791", "biographical_information": ["Ital. Adeliger; Malteserritter und Diplomat"]} 2 -2023-07-08 10:22:11.905019 2023-07-08 10:25:20.960412 e1204e02-2660-4794-9a78-2d76be23fdda {"md5": "98163760747e163057a71415dbf6ec31", "pid": "139668136", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "qualifier": "Familie", "identifier": "http://d-nb.info/gnd/139668136", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139668136", "source": "GND"}], "preferred_name": "Watty, Familie", "country_associated": "gw", "authorized_access_point": "Watty, Familie", "biographical_information": ["Hamburger Familie mit Nebenlinien in Rheinland-Westfalen, Mexiko u. d. USA"]} 2 -2023-07-08 10:22:12.350345 2023-07-08 10:25:21.926743 7ed2a51e-e2c8-4859-936b-20b0db0c5ef2 {"md5": "1e42045a791a7151cebf92b2e8e4dd60", "pid": "139705104", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139705104", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139705104", "source": "GND"}], "date_of_birth": "1954", "preferred_name": "Birka, Hubertus", "authorized_access_point": "Birka, Hubertus, 1954-", "biographical_information": ["Dresden, Techn. Univ., Fak. Bau-, Wasser- und Forstwesen, Diplomarbeit, 1976"]} 2 -2023-07-08 10:22:12.766883 2023-07-08 10:25:23.021279 8ce51bb3-92fe-436e-a9ef-96af86a3cc42 {"md5": "02559ff5660b35e97b3c6851f95584ac", "pid": "139708669", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139708669", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139708669", "source": "GND"}], "variant_name": ["Jacob, Adam"], "date_of_birth": "XX.XX.1671", "date_of_death": "20.07.1743", "preferred_name": "Jacobi, Adam", "country_associated": "gw", "variant_access_point": ["Jacob, Adam, 1671-1743"], "authorized_access_point": "Jacobi, Adam, 1671-1743", "biographical_information": ["An Bauarbeiten an Leipziger Kirchen beteiligt, 1733 beim Umbau des Leipziger Rathauses erwähnt"]} 2 -2023-07-08 10:22:13.196088 2023-07-08 10:25:24.284555 3d5899b7-fec6-4880-9efb-519826a61d8a {"md5": "6d48de4a141a4e017f1d12077f22b86c", "pid": "139717676", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139717676", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139717676", "source": "GND"}], "preferred_name": "Lee, Thomas H.", "country_associated": "xxu", "authorized_access_point": "Lee, Thomas H."} 2 -2023-07-08 10:22:13.573245 2023-07-08 10:25:24.813056 695f738b-e5ec-424c-8fb8-46d548f40e3f {"md5": "7b400225fb3f13a823adfa20b03687d9", "pid": "13976674X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/13976674X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13976674X", "source": "GND"}], "variant_name": ["Müller, Ludger Josef"], "date_of_birth": "1910", "preferred_name": "Müller, Ludger", "country_associated": "gw", "variant_access_point": ["Müller, Ludger Josef, 1910-"], "authorized_access_point": "Müller, Ludger, 1910-", "biographical_information": ["Münster, Med. Diss., 1936"]} 2 -2023-07-08 10:22:13.977824 2023-07-08 10:25:28.258544 0925df3c-e72d-4aa6-8023-a5b51d050215 {"md5": "0753b0ba06cce52b30f44b375200321b", "pid": "103843914", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/103843914", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/103843914", "source": "GND"}], "variant_name": ["Laub, Wasa"], "date_of_birth": "1857", "date_of_death": "1911", "preferred_name": "Laub, Váša", "variant_access_point": ["Laub, Wasa, 1857-1911"], "authorized_access_point": "Laub, Váša, 1857-1911"} 2 -2023-07-08 10:22:14.399285 2023-07-08 10:25:29.175576 32d3d331-6572-4a4c-923f-260af8e44990 {"md5": "c04c91584c2c6fb7c8c0d37600d08666", "pid": "139863915", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139863915", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139863915", "source": "GND"}], "date_of_birth": "09.05.1939", "date_of_death": "07.01.2014", "preferred_name": "Lauer, David D.", "country_associated": "gw", "authorized_access_point": "Lauer, David D., 1939-2014", "biographical_information": ["Dt. Bildhauer"]} 2 -2023-07-08 10:22:14.817253 2023-07-08 10:25:30.063246 269c6cb8-200c-4d74-8b7c-1ac9db518bee {"md5": "58da08267d6019bb16be14dcb69d9a81", "pid": "139875484", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139875484", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139875484", "source": "GND"}], "variant_name": ["Yu-Hwa, Huang"], "date_of_birth": "12.02.1979", "preferred_name": "Huang, Yu-Hwa", "variant_access_point": ["Yu-Hwa, Huang, 1979-"], "authorized_access_point": "Huang, Yu-Hwa, 1979-", "biographical_information": ["Diss. Universität Würzburg, Fakultät für Biologie"]} 2 -2023-07-08 10:22:15.663663 2023-07-08 10:25:31.362668 6574bef9-e315-4ffd-a8b1-671e459e2345 {"md5": "ae7671999fb0dbd9972003304630a852", "pid": "139894535", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139894535", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139894535", "source": "GND"}], "variant_name": ["Ebner, Stephan"], "date_of_birth": "1983", "preferred_name": "Ebner, Stephan M.", "country_associated": "gw", "variant_access_point": ["Ebner, Stephan, 1983-"], "authorized_access_point": "Ebner, Stephan M., 1983-", "biographical_information": ["Seelstrang & Partner mbB, München"]} 2 -2023-07-08 10:22:16.066844 2023-07-08 10:25:33.144076 9ec409cd-f875-48d1-91c2-cad0d2fde478 {"md5": "12f31d1814ceb37f0c2f36d009601ce3", "pid": "117125184X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/117125184X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/117125184X", "source": "GND"}], "preferred_name": "Büker, Gundula", "country_associated": "gw", "authorized_access_point": "Büker, Gundula"} 2 -2023-07-08 10:22:17.24028 2023-07-08 10:25:45.719667 a6d1326e-ee4a-4723-b175-8f59133d0708 {"md5": "19c09f618824392663789d3147b5829c", "pid": "1087316928", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1087316928", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087316928", "source": "GND"}], "variant_name": ["Commission Technique"], "preferred_name": "Union Climatique de France. Commission Technique", "variant_access_point": ["Commission Technique. Union Climatique de France"], "authorized_access_point": "Union Climatique de France. Commission Technique"} 2 -2023-07-08 10:22:17.61226 2023-07-08 10:25:47.067068 d7b89d93-c574-4ccc-a8a8-4df6c90ea72c {"md5": "78e64692c36e21b8459224caa0dcac9b", "pid": "1046083678", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1046083678", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1046083678", "source": "GND"}], "date_of_birth": "1843", "date_of_death": "1932", "preferred_name": "Welti, Oswald", "country_associated": "sz", "authorized_access_point": "Welti, Oswald, 1843-1932", "biographical_information": ["Schweizer Drucker und Fotograf"]} 2 -2023-07-08 10:22:17.984113 2023-07-08 10:25:48.83314 13c88a74-c4b2-4054-838c-c381c5e00c50 {"md5": "cf4df0de9fd96ca97b6b43ef0fc82f06", "pid": "139946144", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139946144", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139946144", "source": "GND"}], "variant_name": ["Rüffer, Balthasar, III.", "Rueffer, Balthasar"], "date_of_birth": "23.10.1569", "date_of_death": "12.09.1637", "preferred_name": "Rüffer, Balthasar", "country_associated": "gw", "variant_access_point": ["Rüffer, Balthasar, III., 1569-1637", "Rueffer, Balthasar, 1569-1637"], "authorized_access_point": "Rüffer, Balthasar, 1569-1637", "biographical_information": ["Kaufmann und Ratsherr in Schweinfurt, Reichsvogt"]} 2 -2023-07-08 10:22:18.374569 2023-07-08 10:25:51.120368 3cf8a447-29cd-4678-8117-ba71cbbae385 {"md5": "8e26b6e82a3a4d6c0df6a6c3c1713904", "pid": "1091238898", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1091238898", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1091238898", "source": "GND"}], "preferred_name": "Numerical Simulation of Convection in Electronic Equipment Cooling", "authorized_access_point": "Numerical Simulation of Convection in Electronic Equipment Cooling, 1989, San Francisco, CA"} 2 -2023-07-08 10:22:18.969388 2023-07-08 10:25:51.578064 ae088426-ff13-46fa-a475-4b589d60746a {"md5": "2fb1f91b6f05c8c6ddb68e811a9e7280", "pid": "1091786100", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1091786100", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1091786100", "source": "GND"}], "preferred_name": "Seminari in archeologia dell'architettura", "authorized_access_point": "Seminari in archeologia dell'architettura"} 2 -2023-07-08 10:22:19.462933 2023-07-08 10:25:52.443792 400510bb-1dbe-4241-904a-98986eeadfaf {"md5": "5ea669e4aa65c979df17a0ab8dfef8c6", "pid": "14010657X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/14010657X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14010657X", "source": "GND"}], "date_of_birth": "12.09.1936", "preferred_name": "Rahim, Habib-ur", "country_associated": "ii", "authorized_access_point": "Rahim, Habib-ur, 1936-", "biographical_information": ["lebt in Deutschland"]} 2 -2023-07-08 10:22:19.813888 2023-07-08 10:25:54.769801 e54ba1c8-ee2d-4973-935c-fb2fc17de5df {"md5": "6df6e4c97d25719d1b40d1f97f7b6325", "pid": "140142622", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140142622", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140142622", "source": "GND"}], "variant_name": ["Lapadula, Mario"], "date_of_birth": "07.07.1951", "preferred_name": "Lapadula, Mario H.", "country_associated": "ag", "variant_access_point": ["Lapadula, Mario, 1951-"], "authorized_access_point": "Lapadula, Mario H., 1951-", "biographical_information": ["Argentin. Schriftsteller"]} 2 -2023-07-08 10:22:20.559263 2023-07-08 10:26:00.020803 b428d908-258b-45aa-b22b-0528f3994d07 {"md5": "373ade11eeb2e2b3fcce12b9dfe21be2", "pid": "170594211", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/170594211", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/170594211", "source": "GND"}], "date_of_birth": "1938", "preferred_name": "Palmer, John", "authorized_access_point": "Palmer, John, 1938-", "biographical_information": ["European ed. of \\"The Guardian\\" and Britain's most informed commentator on the European Community (1988)"]} 2 -2023-07-08 10:22:20.970491 2023-07-08 10:26:03.593858 50e3caf9-ed6d-4bcc-bdaa-34a9ae5eb409 {"md5": "3d3423b2e9c85027c813af307be0967a", "pid": "14016815X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/14016815X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14016815X", "source": "GND"}], "date_of_birth": "1982", "preferred_name": "Simon, Corinna Nora", "authorized_access_point": "Simon, Corinna Nora, 1982-", "biographical_information": ["Diss. Fachbereich Medizin, Univ. Marburg"]} 2 -2023-07-08 10:22:21.38381 2023-07-08 10:26:04.550832 2de846a2-18ad-4ce5-a52e-85903947ef6a {"md5": "4cb85bd7cfcb4f321d8fa486856c9765", "pid": "1221985515", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1221985515", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1221985515", "source": "GND"}], "variant_name": ["Di, Wu", "Wu Di"], "preferred_name": "Wu, Di", "country_associated": "cc", "variant_access_point": ["Di, Wu", "Wu Di"], "authorized_access_point": "Wu, Di"} 2 -2023-07-08 10:22:21.756039 2023-07-08 10:26:09.766709 88df3b49-ff14-4559-b30c-c8df312304d9 {"md5": "93b01bfa3dd11cdfbbf56b2599d4e66e", "pid": "1092457992", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1092457992", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1092457992", "source": "GND"}], "variant_name": ["Gesellschaft Deutscher Chemiker", "Gesellschaft für Naturwissenschaftliche Archäologie Archaeometrie", "Deutsche Mineralogische Gesellschaft"], "preferred_name": "Archäometrie und Denkmalpflege (Kongress)", "variant_access_point": ["Gesellschaft Deutscher Chemiker. Arbeitskreis Archäometrie. Jahrestagung", "Gesellschaft für Naturwissenschaftliche Archäologie Archaeometrie. Deutschland. Jahrestagung", "Deutsche Mineralogische Gesellschaft. Arbeitskreis Archäometrie und Denkmalpflege. Jahrestagung"], "authorized_access_point": "Archäometrie und Denkmalpflege (Kongress)"} 2 -2023-07-08 10:22:22.138413 2023-07-08 10:26:13.640387 ff6204dd-13e6-4061-87f5-e29026e640ce {"md5": "2491f945649e9ddbec04e81a8ceb20b8", "pid": "1087327822", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1087327822", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087327822", "source": "GND"}], "variant_name": ["Department of Electrical and Electronic Engineering"], "preferred_name": "Manchester Metropolitan University. Department of Electrical end Electronic Engineering", "country_associated": "xxk", "variant_access_point": ["Department of Electrical and Electronic Engineering. Manchester Metropolitan University"], "authorized_access_point": "Manchester Metropolitan University. Department of Electrical end Electronic Engineering"} 2 -2023-07-08 10:22:22.943793 2023-07-08 10:26:20.664477 8867a55a-301f-45b9-b5fb-5d639c45ff0a {"md5": "ae2d2556af4c9d06a43afad1123732f9", "pid": "124396488X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/124396488X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124396488X", "source": "GND"}], "date_of_death": "1528", "preferred_name": "Wieland, Martin", "authorized_access_point": "Wieland, Martin, -1528", "biographical_information": ["Aus Ulm. 1493 in Tübingen immatrikuliert"]} 2 -2023-07-08 10:22:23.665475 2023-07-08 10:26:22.672104 b85c2b97-f3a5-4566-b67a-c6db75d4fa57 {"md5": "80a1e18d8776e2dc76746a528f94413c", "pid": "1044044519", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://d-nb.info/gnd/1044044519", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1044044519", "source": "GND"}], "preferred_name": "Rose, Adrian P.", "country_associated": "xxk", "authorized_access_point": "Rose, Adrian P."} 2 -2023-07-08 10:22:24.042286 2023-07-08 10:26:25.158512 7b5cbfeb-e6e3-4cd6-bbd6-28f40b8a4990 {"md5": "5834f36e6f5a53d3b4a589af6af646d6", "pid": "173047165", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/173047165", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173047165", "source": "GND"}], "preferred_name": "Tennant, Margaret E.", "authorized_access_point": "Tennant, Margaret E.", "biographical_information": ["kanad. Schriftstellerin"]} 2 -2023-07-08 10:22:24.41084 2023-07-08 10:26:29.985646 59478936-324d-4c71-b974-20901ee6b5af {"md5": "babfa0aa8c28843ddd047b98d613a16b", "pid": "127857214", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/127857214", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/127857214", "source": "GND"}], "date_of_birth": "1896", "preferred_name": "Uloth, Robert", "authorized_access_point": "Uloth, Robert, 1896-"} 2 -2023-07-08 10:22:24.966425 2023-07-08 10:26:41.978074 da3ae9df-237f-4fe4-955c-49f8743fdccd {"md5": "be4d73f753e9ccf2444efba94fe619d3", "pid": "1158376529", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1158376529", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158376529", "source": "GND"}], "variant_name": ["Iskandarian, Alexander H.", "Iskandarjan, Aleksandr G."], "preferred_name": "Iskandarean, Alek'sandr H.", "variant_access_point": ["Iskandarian, Alexander H.", "Iskandarjan, Aleksandr G."], "authorized_access_point": "Iskandarean, Alek'sandr H."} 2 -2023-07-08 10:22:26.83831 2023-07-08 10:26:48.726477 3ba69155-c61a-4c58-bd27-4a032e27f874 {"md5": "3a5e3b3a5388e0006b7294c45272b6eb", "pid": "1129898709", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1129898709", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1129898709", "source": "GND"}], "date_of_birth": "1962", "preferred_name": "Rao, Pratima V.", "country_associated": "xxc", "authorized_access_point": "Rao, Pratima V., 1962-", "biographical_information": ["she holds degrees in economics, sociology, and law"]} 2 -2023-07-08 10:22:27.319957 2023-07-08 10:26:51.999717 327f354d-755c-46ee-b9ed-00f6fc1dc8e3 {"md5": "148922a51dbbc19f061f549b0376d476", "pid": "134781821", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/134781821", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134781821", "source": "GND"}], "variant_name": ["Raid, K."], "date_of_birth": "04.03.1921", "date_of_death": "21.01.2005", "preferred_name": "Raid, Kaljo", "country_associated": "er", "variant_access_point": ["Raid, K., 1921-2005"], "parallel_access_point": ["Raid, Kaljo, 1921-2005"], "authorized_access_point": "Raid, Kaljo, 1921-2005", "biographical_information": ["Pastor der Estnischen Baptistengemeinde in Toronto"]} 2 -2023-07-08 10:22:27.761977 2023-07-08 10:26:54.351851 467a44b6-16d3-42c6-b377-3f052e659f70 {"md5": "2ce8532895d36258ece98e6e665d0b70", "pid": "127465680X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/127465680X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/127465680X", "source": "GND"}], "date_of_birth": "1993", "preferred_name": "Bender, Christian", "country_associated": "gw", "authorized_access_point": "Bender, Christian, 1993-"} 2 -2023-07-08 10:22:29.054577 2023-07-08 10:27:03.327298 b376be1e-b9db-4615-a789-8e9fc87d96c0 {"md5": "a7f75265e25369e3e4fdeb449608fda6", "pid": "117186430", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/117186430", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/117186430", "source": "GND"}], "variant_name": ["Buttersack, Felix Friedrich", "Buttersack, Felix von"], "date_of_birth": "1833", "date_of_death": "1890", "preferred_name": "Buttersack, Felix", "country_associated": "gw", "variant_access_point": ["Buttersack, Felix Friedrich, 1833-1890", "Buttersack, Felix von, 1833-1890"], "authorized_access_point": "Buttersack, Felix, 1833-1890", "biographical_information": ["Tübingen (Wirkungsort)"]} 2 -2023-07-08 10:22:29.721723 2023-07-08 10:27:09.269846 77dc1871-e4e3-40b9-965a-130a90e60d0f {"md5": "3ac5c5344af10dd82fc9bb155ac8fb30", "pid": "1089477015", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1089477015", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089477015", "source": "GND"}], "variant_name": ["Junius Redivivus", "Redivivus, Junius", "Bridges Adams, William"], "date_of_birth": "1797", "date_of_death": "1872", "preferred_name": "Adams, William Bridges", "country_associated": "xxk", "variant_access_point": ["Junius Redivivus, 1797-1872", "Redivivus, Junius, 1797-1872", "Bridges Adams, William, 1797-1872"], "authorized_access_point": "Adams, William Bridges, 1797-1872"} 2 -2023-07-08 10:22:30.105004 2023-07-08 10:27:11.765811 14939fb1-6582-47b2-8dc4-ab1f6a9d790d {"md5": "f8718dc32b11e49d4eab8552b0fcb1a6", "pid": "128438185", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/128438185", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128438185", "source": "GND"}], "variant_name": ["Graichen, Patrick R."], "date_of_birth": "1972", "preferred_name": "Graichen, Patrick", "country_associated": "gw", "variant_access_point": ["Graichen, Patrick R., 1972-"], "authorized_access_point": "Graichen, Patrick, 1972-"} 2 -2023-07-08 10:22:30.94145 2023-07-08 10:27:13.573495 1fe51cd0-2e8c-4456-86fc-e6b45e1e56a2 {"md5": "237135ac311d9f7dd5a9d91f79e9ded7", "pid": "1085806677", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1085806677", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1085806677", "source": "GND"}], "variant_name": ["Facoltà di medicina veterinaria"], "preferred_name": "Università degli studi di Padova. Facoltà di medicina veterinaria", "country_associated": "it", "variant_access_point": ["Facoltà di medicina veterinaria. Università degli studi di Padova"], "authorized_access_point": "Università degli studi di Padova. Facoltà di medicina veterinaria"} 2 -2023-07-08 10:22:32.422832 2023-07-08 10:27:27.68392 2d86fac3-9b68-4d15-8481-b392b596a89a {"md5": "29a3f611930d4a0d5512d983c215ed1a", "pid": "121808173", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/121808173", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/121808173", "source": "GND"}], "variant_name": ["Schönbeck, Johannes"], "preferred_name": "Schönbeck, Johann", "country_associated": "gw", "variant_access_point": ["Schönbeck, Johannes"], "authorized_access_point": "Schönbeck, Johann", "biographical_information": ["Pastor"]} 2 -2023-07-08 10:22:33.070459 2023-07-08 10:27:29.897533 d6938b90-148e-49b4-8901-87be557a07bd {"md5": "247cfbe0b76cd2c70486640e90e69f53", "pid": "1095794957", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1095794957", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1095794957", "source": "GND"}], "preferred_name": "Bols, Mike", "authorized_access_point": "Bols, Mike"} 2 -2023-07-08 10:22:33.703561 2023-07-08 10:27:37.055618 4776066b-9c54-430f-8ee6-f7176a8f9c4b {"md5": "d6183f381ab9e56fb84b04c4ba39875b", "pid": "140469923", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140469923", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140469923", "source": "GND"}], "variant_name": ["Kornek, Christian Michael"], "date_of_birth": "1992", "preferred_name": "Kornek, Christian", "country_associated": "gw", "variant_access_point": ["Kornek, Christian Michael, 1992-"], "authorized_access_point": "Kornek, Christian, 1992-"} 2 -2023-07-08 10:22:34.145832 2023-07-08 10:27:37.583112 168fd426-b6c9-4753-a888-7b389f3ee3f5 {"md5": "dab7b636ccbd32709cc594c35fd02cb9", "pid": "140489096", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140489096", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140489096", "source": "GND"}], "variant_name": ["Hampel, Georg", "Hampel, G.", "Schorsch", "Big Brother George"], "date_of_birth": "1953", "preferred_name": "Hampel, Schorsch", "country_associated": "gw", "variant_access_point": ["Hampel, Georg, 1953-", "Hampel, G., 1953-", "Schorsch, 1953-", "Big Brother George, 1953-"], "authorized_access_point": "Hampel, Schorsch, 1953-", "biographical_information": ["Mundart-Musiker"]} 2 -2023-07-08 10:22:34.596825 2023-07-08 10:27:38.473862 7b4fa244-58d6-4135-aa5b-1cc54796557e {"md5": "47f34a3ed6db9228b769b6a1c3244778", "pid": "140500634", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140500634", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140500634", "source": "GND"}], "variant_name": ["Tabeau, Ewa Maria", "Tabeau, Eva", "Tabeau, E.", "Tabo, Ėva"], "date_of_birth": "26.04.1958", "preferred_name": "Tabeau, Ewa", "country_associated": "pl", "variant_access_point": ["Tabeau, Ewa Maria, 1958-", "Tabeau, Eva, 1958-", "Tabeau, E., 1958-", "Tabo, Ėva, 1958-"], "authorized_access_point": "Tabeau, Ewa, 1958-", "biographical_information": ["Studium der Statistik und Ökonometrie, Warschau; tätig am Netherlands Interdisciplinary Demographic Inst., NIDI, The Hague"]} 2 -2023-07-08 10:22:34.962959 2023-07-08 10:27:39.736013 861053b1-71b6-47c7-b27c-8e61b9d9200a {"md5": "3606dc5b48f3bf5e73a240ce876d5d1a", "pid": "140543503", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140543503", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140543503", "source": "GND"}], "variant_name": ["Bezdieka, Thomas Franz"], "preferred_name": "Bezděka, Tomáš František", "variant_access_point": ["Bezdieka, Thomas Franz"], "authorized_access_point": "Bezděka, Tomáš František", "biographical_information": ["Rats-Syndicus von Hradischtie"]} 2 -2023-07-08 10:22:35.548933 2023-07-08 10:27:40.802259 785e1f74-6e43-443f-9bab-17bb464b8836 {"md5": "e0bdba063a6dee8eab102b862c49c393", "pid": "14055260X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/14055260X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14055260X", "source": "GND"}], "variant_name": ["Schob, Fritz Klaus"], "date_of_birth": "1933", "preferred_name": "Schob, Klaus", "country_associated": "gw", "variant_access_point": ["Schob, Fritz Klaus, 1933-"], "authorized_access_point": "Schob, Klaus, 1933-"} 2 -2023-07-08 10:22:35.906063 2023-07-08 10:27:42.177093 182e324a-e75e-43b5-a13b-5670649e447f {"md5": "7e054ad622c982e58fa8b15935aba22b", "pid": "140564306", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140564306", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140564306", "source": "GND"}], "variant_name": ["Thang, Nguyen", "Nguyen, Thang"], "preferred_name": "Nguyen Thang", "variant_access_point": ["Thang, Nguyen", "Nguyen, Thang"], "authorized_access_point": "Nguyen Thang", "biographical_information": ["Tätig am Centre for Analysis and Forecasting, Vietnam Academy of Social Sciences, Hanoi, Vietnam"]} 2 -2023-07-08 10:22:36.411597 2023-07-08 10:27:42.693568 0fe2fe0f-e920-4a44-a510-98a6fb04314b {"md5": "6ceb9180af2edf6f355ed9d69161ebf6", "pid": "140580204", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140580204", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140580204", "source": "GND"}], "date_of_birth": "1979", "preferred_name": "Gast, Ronald", "authorized_access_point": "Gast, Ronald, 1979-", "biographical_information": ["Diss. Fachbereich Chemie und Pharmazie"]} 2 -2023-07-08 10:22:36.81377 2023-07-08 10:27:43.159856 2c90ee6e-3ce9-4d85-a05f-f90dd48a2626 {"md5": "0ba3e1ea2b7c27f9bdc5180cf9da2d5e", "pid": "140623388", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140623388", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140623388", "source": "GND"}], "preferred_name": "Graham, Harriet", "authorized_access_point": "Graham, Harriet"} 2 -2023-07-08 10:22:38.333526 2023-07-08 10:27:49.298681 c109559a-7f04-41c8-a46f-79b998c7921e {"md5": "aba9866f8cdb285ab248272431507c2b", "pid": "140330720", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140330720", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140330720", "source": "GND"}], "variant_name": ["Oliva Ordóñez, Emilio", "Ordóñez, Emilio Oliva"], "date_of_birth": "1949", "preferred_name": "Oliva, Emilio", "country_associated": "sp", "variant_access_point": ["Oliva Ordóñez, Emilio, 1949-", "Ordóñez, Emilio Oliva, 1949-"], "authorized_access_point": "Oliva, Emilio, 1949-"} 2 -2023-07-08 10:22:38.697891 2023-07-08 10:27:51.517353 4430e696-a40b-4b97-b940-d695fcc02a32 {"md5": "646e8910390cadcd590d4d109e783833", "pid": "123571693", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/123571693", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/123571693", "source": "GND"}], "variant_name": ["Willenberg, Holger Sven"], "date_of_birth": "1969", "preferred_name": "Willenberg, Holger", "country_associated": "gw", "variant_access_point": ["Willenberg, Holger Sven, 1969-"], "authorized_access_point": "Willenberg, Holger, 1969-", "biographical_information": ["Diss. Fachbereich Endokrinologie", "Habil.-Schr. Innere Medizin"]} 2 -2023-07-08 10:22:39.253943 2023-07-08 10:27:55.092942 0282cac1-a3e4-4e31-abda-45ad78360881 {"md5": "6277d7680d38c666767848928c5fc818", "pid": "140671153", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140671153", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140671153", "source": "GND"}], "date_of_birth": "1973", "preferred_name": "Körner, Sarah", "authorized_access_point": "Körner, Sarah, 1973-"} 2 -2023-07-08 10:22:39.852537 2023-07-08 10:27:57.535388 75d25723-cee7-4d16-84d5-cde2cba68b58 {"md5": "2e9e5dd7e2b6f642c67917293ab54c87", "pid": "140749195", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140749195", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140749195", "source": "GND"}], "date_of_birth": "1972", "preferred_name": "Biefeld, Jörg", "authorized_access_point": "Biefeld, Jörg, 1972-", "biographical_information": ["Diss. Fachbereich Sozialwissenschaften, Medien und Sport der Univ. Mainz"]} 2 -2023-07-08 10:22:40.209481 2023-07-08 10:27:57.992709 5336f3fb-8858-422d-b957-510f51c2fab3 {"md5": "dcbf22d8d19494ce62516243630faffc", "pid": "140751149", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140751149", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140751149", "source": "GND"}], "date_of_birth": "1886", "date_of_death": "1953", "preferred_name": "Boecker, Eduard", "authorized_access_point": "Boecker, Eduard, 1886-1953"} 2 -2023-07-08 10:22:40.677302 2023-07-08 10:27:59.193246 15cd40a1-c6c8-4be6-be8f-b7ea65cf063d {"md5": "5b2e4d1857c0a13f215a264c7b63f5e2", "pid": "140764143", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140764143", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140764143", "source": "GND"}], "date_of_birth": "10.02.1938", "preferred_name": "Siegel, Manfred", "country_associated": "gw", "authorized_access_point": "Siegel, Manfred, 1938-"} 2 -2023-07-08 10:22:41.030193 2023-07-08 10:28:01.014155 19400da5-4666-4c89-a927-653b285ffd12 {"md5": "bb110ee155b040520c6c533a8edb3193", "pid": "140808337", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140808337", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140808337", "source": "GND"}], "variant_name": ["Ma Su", "Massu", "Massoud", "马, 苏"], "date_of_birth": "1981", "preferred_name": "Ma, Su", "country_associated": "cc", "variant_access_point": ["Ma Su, 1981-", "Massu, 1981-", "Massoud, 1981-", "马, 苏, 1981-"], "parallel_access_point": ["马苏, 1981-"], "authorized_access_point": "Ma, Su, 1981-"} 2 -2023-07-08 10:22:41.407417 2023-07-08 10:28:06.284786 7f6e01d6-b96d-4177-a8a1-04a9281fd621 {"md5": "2131a3ad12a74c51cf4888a8fe187f24", "pid": "140930531", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140930531", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140930531", "source": "GND"}], "date_of_birth": "ca. Gegenwart", "preferred_name": "Rubendarío", "country_associated": "ve", "authorized_access_point": "Rubendarío, ca. Gegenwart"} 2 -2023-07-08 10:22:41.781388 2023-07-08 10:28:06.937189 c6047ccf-21e8-4d55-af08-a90892c60b39 {"md5": "6563bde6ca42e94b2398514cb4e61d19", "pid": "1184634262", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1184634262", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1184634262", "source": "GND"}], "preferred_name": "Omari, Ehsan", "country_associated": "gw", "authorized_access_point": "Omari, Ehsan"} 2 -2023-07-08 10:22:42.177168 2023-07-08 10:28:08.052822 9504056d-955f-4506-98c8-d93ae55757ef {"md5": "0c0110404e22726870bee3f13ce378be", "pid": "1278368817", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1278368817", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1278368817", "source": "GND"}], "date_of_birth": "1974", "preferred_name": "Polsky, Stephanie", "country_associated": "xxk", "authorized_access_point": "Polsky, Stephanie, 1974-"} 2 -2023-07-08 10:22:42.542792 2023-07-08 10:28:10.683981 b1af2eec-c4ae-453c-afa2-a48bcbf34349 {"md5": "17d732a2fb0145dc681d757640e19937", "pid": "104999227X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/104999227X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/104999227X", "source": "GND"}], "variant_name": ["Lee, Bernon P."], "preferred_name": "Lee, Bernon", "country_associated": "xxu", "variant_access_point": ["Lee, Bernon P."], "authorized_access_point": "Lee, Bernon", "biographical_information": ["Dept. of Biblical and Theological Studies, Bethel Univ., Minn. (2013)"]} 2 -2023-07-08 10:22:43.274977 2023-07-08 10:28:16.190991 05d27e56-82a6-4d39-8688-e2c2f5156912 {"md5": "b233eca58afff0f538bfe651da7cb9b8", "pid": "1218187433", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1218187433", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1218187433", "source": "GND"}], "date_of_birth": "1988", "preferred_name": "Löhdefink, Philipp", "country_associated": "gw", "authorized_access_point": "Löhdefink, Philipp, 1988-", "biographical_information": ["Diss. Technische Universität Ilmenau, Fachgebiet Kleinmaschinen"]} 2 -2023-07-08 10:22:43.86424 2023-07-08 10:28:18.450684 ec4a4be7-a6f6-4456-a92a-d6c57f48858d {"md5": "8cffb586506e4bbfbaa1d7441be52aed", "pid": "125666632", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/125666632", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/125666632", "source": "GND"}], "preferred_name": "Preisler, Peter", "authorized_access_point": "Preisler, Peter"} 2 -2023-07-08 10:22:44.673357 2023-07-08 10:28:35.539255 ceecad04-1372-43b8-9ae0-ca4e56e00bd2 {"md5": "f6544fa2039fced2f2418800122426ae", "pid": "12688790X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/12688790X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12688790X", "source": "GND"}], "date_of_birth": "05.02.1889", "date_of_death": "26.11.1962", "preferred_name": "Péquignot, Eugène", "country_associated": "sz", "authorized_access_point": "Péquignot, Eugène, 1889-1962"} 2 -2023-07-08 10:22:45.081548 2023-07-08 10:28:37.443408 2d2280ca-8c27-43ff-9f96-32f346aba4da {"md5": "7af06787e54bbaf4d0bc5abde422cd49", "pid": "1197826912", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1197826912", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1197826912", "source": "GND"}], "preferred_name": "Vonderfour, C. F.", "country_associated": "gw", "authorized_access_point": "Vonderfour, C. F."} 2 -2023-07-08 10:22:45.461055 2023-07-08 10:28:39.873013 5abf976b-b9b8-42a4-8862-d15430bd0a9a {"md5": "600e17631513765c03b018450c5556ed", "pid": "12747692X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/12747692X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12747692X", "source": "GND"}], "preferred_name": "Rastokin, P.", "authorized_access_point": "Rastokin, P."} 2 -2023-07-08 10:22:45.879239 2023-07-08 10:28:42.822307 da25cc36-9a45-4c84-b521-4c319fbf0577 {"md5": "1b475949f2e858cb6ec374f1f7455c54", "pid": "127714049", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/127714049", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/127714049", "source": "GND"}], "preferred_name": "Schunorth, Hans", "authorized_access_point": "Schunorth, Hans"} 2 -2023-07-08 10:22:46.369305 2023-07-08 10:28:55.5098 a661801a-e916-4d31-babd-2baecf9d697c {"md5": "4dcad631b7a4ac5c760db57e33d33b76", "pid": "12837196X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/12837196X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12837196X", "source": "GND"}], "variant_name": ["Riedel, Nikolaus Walther", "Riedel, Nikolaus W."], "preferred_name": "Riedel, Nicolaus Walther", "variant_access_point": ["Riedel, Nikolaus Walther", "Riedel, Nikolaus W."], "authorized_access_point": "Riedel, Nicolaus Walther", "biographical_information": ["aus Nordhausen; Jurist; Respondent an der Univ. Leipzig"]} 2 -2023-07-08 10:22:46.789442 2023-07-08 10:28:56.379471 79e7e6be-bffe-407e-82c6-9b35949a5a39 {"md5": "0e9cf7fa7123bee814ad0040550cf208", "pid": "1086545869", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086545869", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086545869", "source": "GND"}], "preferred_name": "Krankenunterstützungsverein der Mechanischen Weberei Furth", "authorized_access_point": "Krankenunterstützungsverein der Mechanischen Weberei Furth. Mogelsberg", "biographical_information": ["Krankenunterstützungsverein der Mechanischen Weberei Furth, Mogelsberg (1890-?)"]} 2 -2023-07-08 10:22:47.183648 2023-07-08 10:29:00.898263 5a25f718-17cd-441e-ae92-81f87c55f042 {"md5": "613f1c78524838e5c91336cc3b4d202f", "pid": "1079330836", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1079330836", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1079330836", "source": "GND"}], "variant_name": ["Asia Mission Conference", "Christian Conference of Asia"], "preferred_name": "CCA Assembly", "country_associated": "kn", "variant_access_point": ["Asia Mission Conference, 1994, Seoul", "Christian Conference of Asia. Assembly, 1994, Seoul"], "authorized_access_point": "CCA Assembly, 1994, Seoul"} 2 -2023-07-08 10:22:47.536054 2023-07-08 10:29:09.669829 af800082-2242-4bb2-be92-2724eb88d7f7 {"md5": "62437d08a9b6bce685b6c98ea4aff6ed", "pid": "129608610", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/129608610", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129608610", "source": "GND"}], "variant_name": ["Müller, Friedrich Andreas Wilhelm"], "date_of_birth": "12.06.1861", "preferred_name": "Müller, Fritz", "country_associated": "gw", "variant_access_point": ["Müller, Friedrich Andreas Wilhelm, 1861-"], "authorized_access_point": "Müller, Fritz, 1861-"} 2 -2023-07-08 10:22:48.730925 2023-07-08 10:29:22.581762 8e131795-a7a7-47f6-85af-d950e10621b3 {"md5": "2651045fe412e42e295bad7779629805", "pid": "131514059", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/131514059", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/131514059", "source": "GND"}], "date_of_birth": "1979", "preferred_name": "Kraemer, Rita Elisa Gloria Sophia Felicitad", "authorized_access_point": "Kraemer, Rita Elisa Gloria Sophia Felicitad, 1979-", "biographical_information": ["Diss. Medizinische Fakultät an der Universität Tübingen"]} 2 -2023-07-08 10:22:49.104144 2023-07-08 10:29:28.372544 9dc7222c-44e6-48ec-9997-4962a8ca1baa {"md5": "f5939c76fa9b79aa28164bfc78b6658b", "pid": "131738631", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/131738631", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/131738631", "source": "GND"}], "date_of_birth": "1974", "preferred_name": "Nassiri, Parshasb", "authorized_access_point": "Nassiri, Parshasb, 1974-", "biographical_information": ["Diss. Med. Fak., Poliklinik für Kieferorthopädie; Zahnmediziner"]} 2 -2023-07-08 10:22:49.539251 2023-07-08 10:29:31.299158 4635b55e-2097-489c-84d0-522cfeaf9a67 {"md5": "052db05ec5e87962b5efd20b7870dfde", "pid": "1158837534", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1158837534", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158837534", "source": "GND"}], "variant_name": ["Heinemann, Birgit"], "preferred_name": "Kampff, Birgit", "variant_access_point": ["Heinemann, Birgit"], "authorized_access_point": "Kampff, Birgit"} 2 -2023-07-08 10:22:49.934136 2023-07-08 10:29:41.084119 396ce1aa-e243-4de6-9eb2-a4a15f38dbcd {"md5": "96f62180a998c96e4629288d03f59c31", "pid": "1129905373", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1129905373", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1129905373", "source": "GND"}], "preferred_name": "Petrova, Irina Yurievna", "country_associated": "gw", "authorized_access_point": "Petrova, Irina Yurievna", "biographical_information": ["Diss. Univ. Hamburg 2017"]} 2 -2023-07-08 10:22:51.284108 2023-07-08 10:29:55.649053 adc0eb4c-2031-4ad2-b5d9-8ce0fac25294 {"md5": "473f9010830a0535ddd8850d393a32b0", "pid": "1138059102", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1138059102", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1138059102", "source": "GND"}], "variant_name": ["Miyoshi, Kusujiro", "三好楠二郎"], "preferred_name": "Miyoshi, Kusujirō", "country_associated": "ja", "variant_access_point": ["Miyoshi, Kusujiro", "三好楠二郎"], "parallel_access_point": ["三好, 楠二郎"], "authorized_access_point": "Miyoshi, Kusujirō", "biographical_information": ["Lehrtätigkeit an Colleges und Universitäten seit 1983"]} 2 -2023-07-08 10:22:51.668122 2023-07-08 10:30:08.671073 a2805e1c-212e-4ad2-a931-84732bcaf00f {"md5": "51e657e5614dd830f0d12a10670fcf07", "pid": "1085827739", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1085827739", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1085827739", "source": "GND"}], "preferred_name": "Société belge de médecine tropicale. Joint Meeting", "authorized_access_point": "Société belge de médecine tropicale. Joint Meeting"} 2 -2023-07-08 10:22:52.116356 2023-07-08 10:30:10.928536 be837c39-0a15-4035-aef7-719f48053cba {"md5": "f89c39e576c264604715aa214c704957", "pid": "1184827516", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1184827516", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1184827516", "source": "GND"}], "variant_name": ["Wieland, Max"], "date_of_birth": "24.10.1867", "date_of_death": "09.06.1935", "preferred_name": "Wieland, Max R.", "country_associated": "gw", "variant_access_point": ["Wieland, Max, 1867-1935"], "authorized_access_point": "Wieland, Max R., 1867-1935"} 2 -2023-07-08 10:22:52.571971 2023-07-08 10:30:13.446444 e5e2e59f-af63-47d4-bc40-da19e444f914 {"md5": "c388a32f5d50c1a9811431d68946d53f", "pid": "115855365X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/115855365X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/115855365X", "source": "GND"}], "variant_name": ["Ch'a Pae, Ok-tŏk", "Cha, Ok-deok", "Pae, Ok-tŏk"], "preferred_name": "Ch'a, Ok-tŏk", "variant_access_point": ["Ch'a Pae, Ok-tŏk", "Cha, Ok-deok", "Pae, Ok-tŏk"], "authorized_access_point": "Ch'a, Ok-tŏk"} 2 -2023-07-08 10:22:53.417369 2023-07-08 10:30:33.794936 dc4f6cfd-3192-4852-acfe-c33fcce821a8 {"md5": "48e4ca6bfbbd1c9d1f225214b5f70c85", "pid": "1089143001", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1089143001", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089143001", "source": "GND"}], "variant_name": ["Steinbach, Robert"], "date_of_birth": "1940", "preferred_name": "Steinbach, Robert Hugh", "variant_access_point": ["Steinbach, Robert, 1940-"], "authorized_access_point": "Steinbach, Robert Hugh, 1940-"} 2 -2023-07-08 10:22:53.787374 2023-07-08 10:30:37.779788 6bf276f9-896f-46b3-a94e-3aecc862fd5d {"md5": "c0656a7a0e907dfed645f40e815b561f", "pid": "1082523097", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1082523097", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1082523097", "source": "GND"}], "preferred_name": "Katayama, Koji", "country_associated": "ja", "authorized_access_point": "Katayama, Koji"} 2 -2023-07-08 10:22:54.161032 2023-07-08 10:30:38.925933 45cb0e9b-a8f4-4023-b67e-b3c1090a5639 {"md5": "7744b41a5dd6fb44c37051d001f82ca8", "pid": "1088801498", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1088801498", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1088801498", "source": "GND"}], "date_of_birth": "1993", "preferred_name": "Girardello, Linda", "country_associated": "it", "authorized_access_point": "Girardello, Linda, 1993-"} 2 -2023-07-08 10:22:54.999134 2023-07-08 10:30:45.091147 0149ebf2-c396-4df8-ad04-058ff1476ad2 {"md5": "008fba4ec6a70ba5ca4cd4a5caf0456a", "pid": "1169173837", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1169173837", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1169173837", "source": "GND"}], "preferred_name": "Bachmann, Laura", "country_associated": "gw", "authorized_access_point": "Bachmann, Laura", "biographical_information": ["arbeitet als Projektleiterin beim August Dreesbach Verlag, Studium an der Goethe-Universität Frankfurt am Main"]} 2 -2023-07-08 10:22:55.870368 2023-07-08 10:30:45.995781 33d0895c-a4c5-4bec-9938-d0ea1f256b09 {"md5": "8d01c53937169b3f407943ca62151706", "pid": "1172300755", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1172300755", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1172300755", "source": "GND"}], "variant_name": ["Jing, Zhao", "Zhao Jing"], "preferred_name": "Zhao, Jing", "country_associated": "cc", "variant_access_point": ["Jing, Zhao", "Zhao Jing"], "authorized_access_point": "Zhao, Jing", "biographical_information": ["Business School, Beijing Technology and Business University, China"]} 2 -2023-07-08 10:22:56.58548 2023-07-08 10:30:46.918091 8f617715-e616-4d3c-a97c-6523df5ecfc6 {"md5": "071c7cad67bf96c8e2e189954341abeb", "pid": "1261250842", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1261250842", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1261250842", "source": "GND"}], "preferred_name": "Heard, Wendy", "country_associated": "xxu", "authorized_access_point": "Heard, Wendy"} 2 -2023-07-08 10:22:57.325544 2023-07-08 10:30:47.820432 026361c8-e8c5-41e1-a4e2-6b1e96cecec9 {"md5": "4a8757afef07186367ff99c1eeb2591e", "pid": "118608619X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/118608619X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/118608619X", "source": "GND"}], "date_of_birth": "1978", "preferred_name": "Janšová, Marie", "authorized_access_point": "Janšová, Marie, 1978-"} 2 -2023-07-08 10:22:57.689713 2023-07-08 10:30:48.236672 1067d030-a309-4000-b096-8f45f8fe99ba {"md5": "907d711eab16bf31e5b6ba51a09a4ca6", "pid": "1176219189", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1176219189", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1176219189", "source": "GND"}], "date_of_birth": "1974", "preferred_name": "Watzl, Petra", "country_associated": "gw", "authorized_access_point": "Watzl, Petra, 1974-", "biographical_information": ["Pflegepädagogin am Bildungszentrum des Klinikums Stuttgart"]} 2 -2023-07-08 10:22:58.124435 2023-07-08 10:30:49.764787 f3d84525-b664-4e1e-82e5-866bfe2507e2 {"md5": "fdf41c04437d54ed282e3de332af1694", "pid": "1189236710", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1189236710", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1189236710", "source": "GND"}], "variant_name": ["Cho, Nam-Chŏl", "Jo, Nam-Chŏl", "조, 남철"], "date_of_birth": "1952", "preferred_name": "Jo, Nam cheol", "country_associated": "ko", "variant_access_point": ["Cho, Nam-Chŏl, 1952-", "Jo, Nam-Chŏl, 1952-", "조, 남철, 1952-"], "parallel_access_point": ["조남철, 1952-"], "authorized_access_point": "Jo, Nam cheol, 1952-"} 2 -2023-07-08 10:22:58.520733 2023-07-08 10:30:52.17664 bf0326fa-c67c-4188-8e57-60bd14f18de7 {"md5": "374965b717eb267544f3c1eca901ffe3", "pid": "120415693X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/120415693X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120415693X", "source": "GND"}], "variant_name": ["Heidelberg Institute for Stem Cell Technology and Experimental Medicine", "HI-STEM gGmbH im Deutschen Krebsforschungszentrum DKFZ"], "preferred_name": "HI-STEM gGmbH", "country_associated": "gw", "variant_access_point": ["Heidelberg Institute for Stem Cell Technology and Experimental Medicine", "HI-STEM gGmbH im Deutschen Krebsforschungszentrum DKFZ"], "authorized_access_point": "HI-STEM gGmbH"} 2 -2023-07-08 10:22:58.91756 2023-07-08 10:31:00.084371 e597c8ee-8dd0-400b-aae3-af38bf7f420a {"md5": "b97041ccb3ffe477effd4ad0105cc5e7", "pid": "1233756877", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1233756877", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1233756877", "source": "GND"}], "preferred_name": "Vakhrushova, Daria", "country_associated": "gw", "parallel_access_point": ["וואכרושאווא, דאריע"], "authorized_access_point": "Vakhrushova, Daria", "biographical_information": ["Seit 2016 Promotionsstudium an der Abteilung für Jiddische Kultur, Sprache und Literatur"]} 2 -2023-07-08 10:22:59.26985 2023-07-08 10:31:00.567883 7b485097-2f7b-441b-a9cd-252efb481329 {"md5": "e2979fd7d5bdb776a6356b12b238c9b0", "pid": "1238027237", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1238027237", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1238027237", "source": "GND"}], "date_of_birth": "1969", "preferred_name": "Wolff, Regine", "country_associated": "gw", "authorized_access_point": "Wolff, Regine, 1969-"} 2 -2023-07-08 10:22:59.955738 2023-07-08 10:31:01.461589 6b6c2d82-d49c-4b59-9da2-8e7f42fa4f99 {"md5": "26cca4db841469490e1543b923b759a9", "pid": "1243598751", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1243598751", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1243598751", "source": "GND"}], "preferred_name": "Wang, Jiun-Long", "country_associated": "cc", "authorized_access_point": "Wang, Jiun-Long", "biographical_information": ["tätig am Department of Life Sciences and Agricultural Biotechnology Center, National Chung Hsing University, Taichung 402, Taiwan"]} 2 -2023-07-08 10:23:30.396823 2023-07-08 10:23:30.396838 1b846d39-2e3e-4efd-baf0-0168e35e55fd {"md5": "14e67370aa7249595441acea64c99807", "pid": "116991992", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/116991992", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116991992", "source": "GND"}], "variant_name": ["Ravestein, Emile de Meester de", "Meester de Ravestein, E.", "Ravestein, E. Meester de"], "date_of_birth": "1813", "date_of_death": "1889", "preferred_name": "Meester de Ravestein, Emile de", "country_associated": "be", "variant_access_point": ["Ravestein, Emile de Meester de, 1813-1889", "Meester de Ravestein, E., 1813-1889", "Ravestein, E. Meester de, 1813-1889"], "authorized_access_point": "Meester de Ravestein, Emile de, 1813-1889", "biographical_information": ["Belg. Diplomat und Kunstsammler"]} 1 -2023-07-08 10:21:53.992035 2023-07-08 10:23:31.811398 2ea8cf8b-cfea-42e0-849a-30e1bb18cdbb {"md5": "ce9f9bff6f194da3602bdae8e95768f2", "pid": "1079471162", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1079471162", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1079471162", "source": "GND"}], "date_of_birth": "1877", "date_of_death": "1943", "preferred_name": "Hollaus, Bartholomäus", "country_associated": "gw", "authorized_access_point": "Hollaus, Bartholomäus, 1877-1943", "biographical_information": ["1897 an der Akademie der Bildenden Künste München"]} 2 -2023-07-08 08:15:28.821292 2023-07-08 10:23:32.333629 d1329c31-3915-4760-b6d5-0e74b7cda5a4 {"md5": "9e50eaed60038a1b2d45baa2b11de1e5", "pid": "1109931689", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1109931689", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1109931689", "source": "GND"}], "variant_name": ["Bibik, V. L."], "date_of_birth": "1970", "preferred_name": "Bibik, Vladislav Leonidovič", "country_associated": "ru", "variant_access_point": ["Bibik, V. L., 1970-"], "authorized_access_point": "Bibik, Vladislav Leonidovič, 1970-"} 2 -2023-07-08 10:23:33.174602 2023-07-08 10:23:33.17462 2d719f46-90f6-45a6-bf1d-34678719f115 {"md5": "b53f31383199c99cdebd8369cbae2aae", "pid": "1057520837", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1057520837", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1057520837", "source": "GND"}], "date_of_birth": "1932", "preferred_name": "Cardoso, António", "country_associated": "po", "authorized_access_point": "Cardoso, António, 1932-", "biographical_information": ["Kunsthistoriker", "geb. in Amarante; veröffentl. Lit. zur portug. Kunst u. Architektur."]} 1 -2023-07-08 10:23:47.351673 2023-07-08 10:23:47.351676 6a51296e-0567-4a99-a905-005157cca67d {"md5": "934ce0713b6700b89d6ac09b551182b1", "pid": "135226082", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/135226082", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/135226082", "source": "GND"}], "variant_name": ["Gosling, John"], "preferred_name": "Mekon", "variant_access_point": ["Gosling, John"], "authorized_access_point": "Mekon"} 1 -2023-07-08 10:23:00.79883 2023-07-08 10:31:03.338257 da267368-664e-4b44-93c1-e9a365aff6b3 {"md5": "686f2405dac1ba539f7cb43fc2c5b7df", "pid": "125606193X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/125606193X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/125606193X", "source": "GND"}], "date_of_birth": "1964", "preferred_name": "Cerris, Ada", "country_associated": "sz", "authorized_access_point": "Cerris, Ada, 1964-", "biographical_information": ["schreibt auch Belletristik"]} 2 -2023-07-08 10:23:01.153772 2023-07-08 10:31:04.802643 17aaca9c-c255-4224-91c6-f198775fc5e5 {"md5": "e5acc4dadd1dc8c3382dcae2d7fb6ce5", "pid": "1273775546", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1273775546", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1273775546", "source": "GND"}], "variant_name": ["Xiaoliang, Lang", "Lang Xiaoliang"], "preferred_name": "Lang, Xiaoliang", "variant_access_point": ["Xiaoliang, Lang", "Lang Xiaoliang"], "authorized_access_point": "Lang, Xiaoliang"} 2 -2023-07-08 10:23:01.517642 2023-07-08 10:31:05.866359 747857b0-31c4-4f73-829e-71c6cb9ce39d {"md5": "48eaf93e816ae2fe2e145a0c70360ab3", "pid": "1158955235", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1158955235", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158955235", "source": "GND"}], "variant_name": ["Journel, Michel Marie-Joseph"], "preferred_name": "Journel, Michel Marie Joseph", "variant_access_point": ["Journel, Michel Marie-Joseph"], "authorized_access_point": "Journel, Michel Marie Joseph"} 2 -2023-07-08 10:23:01.93539 2023-07-08 10:31:20.374079 3ee7e3f0-ae19-438c-a77a-c88725e6e9c8 {"md5": "cf353adafc577f431a2e068d518e11a9", "pid": "1146958730", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1146958730", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146958730", "source": "GND"}], "date_of_birth": "1914", "preferred_name": "Grigny, Robert-Georges-Charles-François", "authorized_access_point": "Grigny, Robert-Georges-Charles-François, 1914-"} 2 -2023-07-08 10:23:02.589629 2023-07-08 10:31:32.815498 c6a07c27-20b4-4aa6-bd92-f3ebf300b67b {"md5": "a6d8fcc2b8b4f993783bda87a28bb720", "pid": "1158918763", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1158918763", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158918763", "source": "GND"}], "variant_name": ["Lanker, Martin", "Lanqer, Moše", "Lein, Moše"], "preferred_name": "Lane, Martin", "variant_access_point": ["Lanker, Martin", "Lanqer, Moše", "Lein, Moše"], "authorized_access_point": "Lane, Martin"} 2 -2023-07-08 10:23:03.317604 2023-07-08 10:31:37.56741 e8667408-085c-411b-87b8-553025855fbe {"md5": "4b4807d650cfb72c9815de3feadb3924", "pid": "1235245071", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1235245071", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1235245071", "source": "GND"}], "date_of_birth": "1937", "preferred_name": "Siregar, Ridwan", "country_associated": "io", "authorized_access_point": "Siregar, Ridwan, 1937-"} 2 -2023-07-08 08:14:27.668916 2023-07-08 10:23:37.864014 ed15105b-4c0b-4348-a995-3ada3df5ccd6 {"md5": "997c1cb7d34196dbef7396c85cd747cd", "pid": "100068944", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/100068944", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/100068944", "source": "GND"}], "variant_name": ["Caorsin, Gulielmus", "Caoursin, William", "Caorsin, Guglielmo", "Caorsin, Gulielmo", "Guillaume, Caoursin", "Guilelmus, Caorsin", "William, Caoursin", "Caorsin, Guillaume", "Coarsin, Guillaume", "Coursin, Guillaume", "Coursin, Wilhelm", "Caonersyn, Wylhelm", "Caonersyn, Wilhelm", "Caonersin, Wilhelm", "Guilelmus, Caorsinus"], "date_of_birth": "1430", "date_of_death": "1501", "preferred_name": "Caoursin, Guillaume", "country_associated": "be", "variant_access_point": ["Caorsin, Gulielmus, 1430-1501", "Caoursin, William, 1430-1501", "Caorsin, Guglielmo, 1430-1501", "Caorsin, Gulielmo, 1430-1501", "Guillaume, Caoursin, 1430-1501", "Guilelmus, Caorsin, 1430-1501", "William, Caoursin, 1430-1501", "Caorsin, Guillaume, 1430-1501", "Coarsin, Guillaume, 1430-1501", "Coursin, Guillaume, 1430-1501", "Coursin, Wilhelm, 1430-1501", "Caonersyn, Wylhelm, 1430-1501", "Caonersyn, Wilhelm, 1430-1501", "Caonersin, Wilhelm, 1430-1501", "Guilelmus, Caorsinus, 1430-1501"], "authorized_access_point": "Caoursin, Guillaume, 1430-1501", "biographical_information": ["Rhodiorum historia", "Geschichtsschreiber; Vizekanzler d. Johanniter-Ordens"]} 2 -2023-07-08 08:15:25.575541 2023-07-08 10:23:38.334311 5495163b-1f3c-47bb-8d54-cc54d2eb0d76 {"md5": "423bdbff6dcc26a15b434d2ce5732648", "pid": "109790715", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/109790715", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/109790715", "source": "GND"}], "variant_name": ["François"], "preferred_name": "Doly, Guy", "variant_access_point": ["François"], "authorized_access_point": "Doly, Guy"} 2 -2023-07-08 08:14:58.986755 2023-07-08 10:23:39.006282 bf4f2f05-034f-4374-b0d6-a1069722e3e5 {"md5": "1de9de3b6187b208a686bc7eadf1438a", "pid": "1055795316", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1055795316", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1055795316", "source": "GND"}], "variant_name": ["Halper, Ben-Tsiyon", "Halper, Ben-Sijjon", "Halper, Ben-Ṣiyyôn", "Halper, Benzion", "Halpern, Ben-Ṣijjōn", "Halpern, Ben-Ṣiyyôn", "Halper, B.", "הלפר, ב.", "האלפר, בן-ציון", "הלפר, בן־ציון"], "date_of_birth": "1884", "date_of_death": "1924", "preferred_name": "Halper, Bentsiyon", "country_associated": "li", "variant_access_point": ["Halper, Ben-Tsiyon, 1884-1924", "Halper, Ben-Sijjon, 1884-1924", "Halper, Ben-Ṣiyyôn, 1884-1924", "Halper, Benzion, 1884-1924", "Halpern, Ben-Ṣijjōn, 1884-1924", "Halpern, Ben-Ṣiyyôn, 1884-1924", "Halper, B., 1884-1924", "הלפר, ב., 1884-1924", "האלפר, בן-ציון, 1884-1924", "הלפר, בן־ציון, 1884-1924"], "parallel_access_point": ["הלפר, בנציון, 1884-1924"], "authorized_access_point": "Halper, Bentsiyon, 1884-1924"} 2 -2023-07-08 08:14:48.653365 2023-07-08 10:23:39.533412 6a9d6824-7d5e-4a58-a4aa-acc5c1174b63 {"md5": "3190ac7c0b6e17b65e4495c96c946361", "pid": "1016763387", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1016763387", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1016763387", "source": "GND"}], "date_of_birth": "15.05.1920", "date_of_death": "01.04.2019", "preferred_name": "Krüger, Sabine", "country_associated": "gw", "authorized_access_point": "Krüger, Sabine, 1920-2019"} 2 -2023-07-08 08:16:09.338281 2023-07-08 10:23:40.278232 c188c620-a98c-4953-9d68-138289d6f05c {"md5": "9189497cfb8b1a4b462b0b8e85556bde", "pid": "118818805", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/118818805", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/118818805", "source": "GND"}], "variant_name": ["Richelet, Césare P.", "P. R. A.", "Richelet, Césare-Pierre", "Richelet, César Pierre", "Richelet, Peter", "Richelet, César-Pierre", "Richelet, P.", "Richelet, Pierre César"], "date_of_birth": "1626", "date_of_death": "1698", "preferred_name": "Richelet, Pierre", "country_associated": "fr", "variant_access_point": ["Richelet, Césare P., 1626-1698", "P. R. A., 1626-1698", "Richelet, Césare-Pierre, 1626-1698", "Richelet, César Pierre, 1626-1698", "Richelet, Peter, 1626-1698", "Richelet, César-Pierre, 1626-1698", "Richelet, P., 1626-1698", "Richelet, Pierre César, 1626-1698"], "authorized_access_point": "Richelet, Pierre, 1626-1698", "biographical_information": ["Franz. Linguist und Lexikograph; studierte 3 Jahre Rechtswissenschaft, war jedoch nicht als Anwalt o.ä. tätig"]} 2 -2023-07-08 10:23:41.281064 2023-07-08 10:23:41.281074 3806e1dc-1493-4c68-8dc5-79ddec6ff61f {"md5": "9b34000745b31f5d7d356d7cad110b26", "pid": "122616243", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/122616243", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/122616243", "source": "GND"}], "date_of_birth": "1970", "preferred_name": "Leitner, Marina", "authorized_access_point": "Leitner, Marina, 1970-", "biographical_information": ["Psychologin"]} 1 -2023-07-08 10:23:43.001345 2023-07-08 10:23:43.001348 580351d0-0855-434b-a28b-2911b2457214 {"md5": "ad279036dccf02a251c9db4ca7833b31", "pid": "1159283095", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://d-nb.info/gnd/1159283095", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159283095", "source": "GND"}], "variant_name": ["Lot, Fernan"], "preferred_name": "Lot, Fernand", "country_associated": "fr", "variant_access_point": ["Lot, Fernan"], "authorized_access_point": "Lot, Fernand", "biographical_information": ["Franz. Kindersachbuchautor"]} 1 -2023-07-08 10:23:45.292408 2023-07-08 10:23:45.292417 dd40b190-ed24-41c2-a597-8b8b7cf4267e {"md5": "bd4756d1fff922e5b7f2a4a3b602a3a5", "pid": "1126071935", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1126071935", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1126071935", "source": "GND"}], "variant_name": ["Jacob, Bernard Lortat"], "preferred_name": "Lortat-Jacob, Bernard", "variant_access_point": ["Jacob, Bernard Lortat"], "authorized_access_point": "Lortat-Jacob, Bernard"} 1 -2023-07-08 10:23:46.471067 2023-07-08 10:23:46.471093 f45c8867-a445-41d6-aee5-5c3be3b3c3ff {"md5": "3e59fd34ab8d2b69303a0e48b038e9b4", "pid": "133362817", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/133362817", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133362817", "source": "GND"}], "date_of_birth": "1944", "preferred_name": "Johnson, John", "authorized_access_point": "Johnson, John, 1944-", "biographical_information": ["President of Coach Boxing, Inc."]} 1 -2023-07-08 08:16:57.264549 2023-07-08 10:23:49.4496 173f68c1-01bd-49c9-b456-c33e582609e9 {"md5": "7ed4dd63ef921cc85cf4ddc46d54e9f2", "pid": "134321707", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/134321707", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134321707", "source": "GND"}], "variant_name": ["Ayres, Reginald B.-", "Ayres, Reginald Barrett-"], "date_of_birth": "07.05.1920", "preferred_name": "Barrett-Ayres, Reginald", "country_associated": "xxk", "variant_access_point": ["Ayres, Reginald B.-, 1920-", "Ayres, Reginald Barrett-, 1920-"], "authorized_access_point": "Barrett-Ayres, Reginald, 1920-"} 2 -2023-07-08 08:17:02.467597 2023-07-08 10:23:50.870503 5a5ccc75-558c-4c76-8d9d-775f493cd96a {"md5": "c801d518fcbd7cc73c6e45eed9d1ee89", "pid": "139117091", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139117091", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139117091", "source": "GND"}], "preferred_name": "Hölck, Benjamin", "country_associated": "gw", "authorized_access_point": "Hölck, Benjamin"} 2 -2023-07-08 08:17:02.680077 2023-07-08 10:23:51.757463 ca78b4a6-da15-4ab4-aa65-2892bac993d6 {"md5": "104a8856d44090d1ef71426f1aad403d", "pid": "139128557", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139128557", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139128557", "source": "GND"}], "variant_name": ["小和田哲男"], "date_of_birth": "1944", "preferred_name": "Owada, Tetsuo", "country_associated": "ja", "variant_access_point": ["小和田哲男, 1944-"], "parallel_access_point": ["小和田, 哲男, 1944-"], "authorized_access_point": "Owada, Tetsuo, 1944-"} 2 -2023-07-08 10:21:56.237428 2023-07-08 10:23:52.379126 f359b64c-68b5-4ad5-b520-915932478945 {"md5": "4c0e8cb5b01aacec260fc779725a5822", "pid": "139173544", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139173544", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139173544", "source": "GND"}], "date_of_birth": "1975", "preferred_name": "Feurstein, Christian", "country_associated": "au", "authorized_access_point": "Feurstein, Christian, 1975-", "biographical_information": ["Leiter des Wirtschaftsarchivs Vorarlberg in Feldkirch (ab 2002)"]} 2 -2023-07-08 10:23:53.607486 2023-07-08 10:23:53.607496 173ac78f-cdb1-4aad-adbb-04485a50628e {"md5": "a88ee7fd90d7634dadc0d33618d5406c", "pid": "139209204", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139209204", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139209204", "source": "GND"}], "preferred_name": "Douchy, Hervé", "country_associated": "fr", "authorized_access_point": "Douchy, Hervé"} 1 -2023-07-08 08:15:50.738043 2023-07-08 10:23:54.089253 95a9d5f1-e4f7-44d7-9f9c-947fc6c5f90d {"md5": "1e24068b9d5d9a54c1010767a80732a2", "pid": "115836346X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/115836346X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/115836346X", "source": "GND"}], "variant_name": ["Kuz'minych, Tat'jana Nikolaevna"], "preferred_name": "Kuz'minych, Tat'jana N.", "variant_access_point": ["Kuz'minych, Tat'jana Nikolaevna"], "authorized_access_point": "Kuz'minych, Tat'jana N."} 2 -2023-07-08 10:23:55.569926 2023-07-08 10:23:55.569946 bd2bbeea-3496-477b-b347-6b999bb89127 {"md5": "4fda05af6e7fd411665dcf929a9be86a", "pid": "139286160", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139286160", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139286160", "source": "GND"}], "date_of_birth": "1976", "preferred_name": "Wiese, René", "country_associated": "gw", "authorized_access_point": "Wiese, René, 1976-", "biographical_information": ["Archivoberrat und Dezernatsleiter in der Abteilung Landesarchiv des Landesamtes für Kultur und Denkmalpflege Mecklenburg-Vorpommern in Schwerin, Mitglied der Historischen Kommission für Mecklenburg"]} 1 -2023-07-08 08:17:03.268298 2023-07-08 10:23:56.275616 a21c8ebc-9e47-4a17-bc78-3cb6b431d9e1 {"md5": "b3e4ac88a5341e997d588a124a35ea46", "pid": "139317783", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139317783", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139317783", "source": "GND"}], "date_of_birth": "1961", "preferred_name": "Bludschun, Uwe", "authorized_access_point": "Bludschun, Uwe, 1961-", "biographical_information": ["Dresden, Techn. Univ., Fak. Bau-, Wasser- und Forstwesen, Diplomarbeit, 1988"]} 2 -2023-07-08 08:15:18.629074 2023-07-08 10:23:57.332131 752d4ef3-f932-44b9-ba3d-45eec1091ae1 {"md5": "1fd516813eff1eb22bf9709fb3cc6ef0", "pid": "1089339771", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1089339771", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089339771", "source": "GND"}], "variant_name": ["Appelman, Jaco", "Appelman, Jacob Herre"], "preferred_name": "Appelman, Jaco H.", "variant_access_point": ["Appelman, Jaco", "Appelman, Jacob Herre"], "authorized_access_point": "Appelman, Jaco H.", "biographical_information": ["Wirtschaftswissenschaftler", "Vollständiger Vorname: Jaco Herre"]} 2 -2023-07-08 10:21:57.09593 2023-07-08 10:23:58.26772 36351630-daf9-475a-957d-0816d67879cf {"md5": "fcc8e61d23e6c6bef2fd49f9a882f762", "pid": "1233743082", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1233743082", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1233743082", "source": "GND"}], "variant_name": ["Universität Heidelberg. Universitätsmedizin Mannheim. Institut für Transfusionsmedizin und Immunologie", "Universitätsmedizin Mannheim. Institut für Transfusionsmedizin und Immunologie", "Institut für Transfusionsmedizin und Immunologie", "ITI"], "preferred_name": "Universität Heidelberg. Institut für Transfusionsmedizin und Immunologie", "country_associated": "gw", "variant_access_point": ["Universität Heidelberg. Universitätsmedizin Mannheim. Institut für Transfusionsmedizin und Immunologie", "Universitätsmedizin Mannheim. Institut für Transfusionsmedizin und Immunologie", "Institut für Transfusionsmedizin und Immunologie", "ITI. Abkuerzung"], "authorized_access_point": "Universität Heidelberg. Institut für Transfusionsmedizin und Immunologie"} 2 -2023-07-08 08:17:22.69492 2023-07-08 10:23:59.497009 1ec99fa4-a31c-43d4-9eb6-e520a102a5e8 {"md5": "c92ab37c8e41b9c5f9573e60df6d7564", "pid": "143513796", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143513796", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143513796", "source": "GND"}], "date_of_birth": "1951", "preferred_name": "Redner, Sidney", "authorized_access_point": "Redner, Sidney, 1951-", "biographical_information": ["Professor of physics at Boston University"]} 2 -2023-07-08 10:24:00.499131 2023-07-08 10:24:00.499145 16bb8673-a2fc-4131-8e67-8734dd104ebb {"md5": "569798e29dcd773214484c1e2127b0d1", "pid": "1056159278", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1056159278", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1056159278", "source": "GND"}], "variant_name": ["Giusti, Giovanni", "Giusti, Giambattista", "Giusti, G.B."], "date_of_birth": "1758", "date_of_death": "1829", "preferred_name": "Giusti, Giovanni Battista", "variant_access_point": ["Giusti, Giovanni, 1758-1829", "Giusti, Giambattista, 1758-1829", "Giusti, G.B., 1758-1829"], "authorized_access_point": "Giusti, Giovanni Battista, 1758-1829", "biographical_information": ["ital. Literat und Ingenieur", "Übersetzer"]} 1 -2023-07-08 08:16:53.099677 2023-07-08 10:24:01.789124 453c38b6-f4d1-42a5-85f0-3678f90255a5 {"md5": "6295373727e623f616c9cbbebbc1470f", "pid": "132327147", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/132327147", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/132327147", "source": "GND"}], "preferred_name": "Ruff, Joshua", "country_associated": "xxu", "authorized_access_point": "Ruff, Joshua", "biographical_information": ["Curator at the Long Island Museum of American Art, History and Carriages"]} 2 -2023-07-08 08:14:52.243671 2023-07-08 10:24:03.241658 d0581201-ff64-4a06-a781-096a56dc491e {"md5": "29964c9400c658e0c83735198bf0eaac", "pid": "1032029374", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1032029374", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1032029374", "source": "GND"}], "date_of_birth": "19XX", "preferred_name": "Luard, Honey", "country_associated": "xxk", "authorized_access_point": "Luard, Honey, 19XX-", "biographical_information": ["Head of publications and press at White Cube gallery in London (1992-); BA from the University of Manchester and an MA from the Courtauld Institute"]} 2 -2023-07-08 10:24:05.077965 2023-07-08 10:24:05.077977 b70effe9-8190-4650-a887-5d69f568e6bd {"md5": "a21351da0f21cf28b06e044602ef16da", "pid": "103624163", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/103624163", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/103624163", "source": "GND"}], "variant_name": ["Nāğī, Hilāl", "Nāgī, Hilāl", "Nājī, Hilāl"], "preferred_name": "Nāǧī, Hilāl", "variant_access_point": ["Nāğī, Hilāl", "Nāgī, Hilāl", "Nājī, Hilāl"], "parallel_access_point": ["ناجي, هلال"], "authorized_access_point": "Nāǧī, Hilāl"} 1 -2023-07-08 08:16:42.294972 2023-07-08 10:24:08.0527 0e873f42-71c8-4d9e-a937-5f64d3c85800 {"md5": "b6ceff98c09b2dabee0eeb92c88d2148", "pid": "1258782901", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1258782901", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1258782901", "source": "GND"}], "variant_name": ["4. Generalversammlung des Verbandes der Europäischen Landwirtschaft CEA", "Vierte Generalversammlung des Verbandes der Europäischen Landwirtschaft CEA"], "preferred_name": "Generalversammlung des Verbandes der Europäischen Landwirtschaft CEA, 4", "country_associated": "gw", "variant_access_point": ["4. Generalversammlung des Verbandes der Europäischen Landwirtschaft CEA", "Vierte Generalversammlung des Verbandes der Europäischen Landwirtschaft CEA"], "authorized_access_point": "Generalversammlung des Verbandes der Europäischen Landwirtschaft CEA, 4, 1952, Wiesbaden"} 2 -2023-07-08 08:15:42.520244 2023-07-08 10:24:11.376383 c8738cb7-6378-4f3a-bc05-07044d41ec42 {"md5": "195dc5832b388cbbb0ba5a34a68c9fac", "pid": "1146703015", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1146703015", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146703015", "source": "GND"}], "date_of_birth": "1948", "preferred_name": "Owens, Elizabeth", "authorized_access_point": "Owens, Elizabeth, 1948-"} 2 -2023-07-08 10:24:12.931968 2023-07-08 10:24:12.931974 f2fc8303-f240-47f5-86d7-73beefaf5f0c {"md5": "1103b8d2a78a5702e55bfaad207413d1", "pid": "1035018888", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1035018888", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1035018888", "source": "GND"}], "date_of_birth": "1937", "preferred_name": "Richter, Werner", "country_associated": "gw", "authorized_access_point": "Richter, Werner, 1937-", "biographical_information": ["Diss., Universität Köln, 1969"]} 1 -2023-07-08 08:14:50.884021 2023-07-08 10:24:13.982448 a77e5864-8fc5-4661-b57d-a850e7947af2 {"md5": "92c537f7f31df44e63b8d7fecaf71b85", "pid": "1026199441", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1026199441", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1026199441", "source": "GND"}], "variant_name": ["Joseph, Branden W."], "date_of_birth": "ca. 20. Jh.", "preferred_name": "Joseph, Branden Wayne", "country_associated": "xxu", "variant_access_point": ["Joseph, Branden W., ca. 20. Jh."], "authorized_access_point": "Joseph, Branden Wayne, ca. 20. Jh.", "biographical_information": ["Frank Gallipoli Professor of Modern and Contemporary Art and Director of Art Humanities, Columbia University, New York, Department of Art History and Archaeology (2006-); Ph.D. 1999"]} 2 -2023-07-08 10:24:16.031276 2023-07-08 10:24:16.031286 05045f00-6d6a-4614-b43e-de4911e79b79 {"md5": "c05f36b8c36dec42f4911c86bc3c59c0", "pid": "120498464", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/120498464", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120498464", "source": "GND"}], "date_of_birth": "1953", "preferred_name": "Frisch, Christine", "authorized_access_point": "Frisch, Christine, 1953-", "biographical_information": ["Sonderschul-Pädagogin"]} 1 -2023-07-08 08:16:50.026388 2023-07-08 10:24:17.451167 08babda3-a337-473a-9986-b968105e4f4f {"md5": "c56a64a425ab0fa369f88da958174faf", "pid": "12981752X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/12981752X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12981752X", "source": "GND"}], "date_of_birth": "1943", "date_of_death": "2018", "preferred_name": "Jurjevics, Juris", "country_associated": "xxu", "authorized_access_point": "Jurjevics, Juris, 1943-2018", "biographical_information": ["Amerikan. Verleger; Schriftsteller"]} 2 -2023-07-08 10:24:48.957686 2023-07-08 10:24:48.957689 3febf7b7-29f5-40a0-9c84-505050a9f001 {"md5": "70099b91bab7a41e63ad95b7ded65cab", "pid": "14275210X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/14275210X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14275210X", "source": "GND"}], "date_of_birth": "1952", "preferred_name": "Haas, Jean-François", "country_associated": "sz", "authorized_access_point": "Haas, Jean-François, 1952-"} 1 -2023-07-08 10:22:00.820777 2023-07-08 10:24:19.272317 954b6cf9-8c6c-452f-a5f0-5a121a85961c {"md5": "1d607d70a5a4a1c93e2637cb24319977", "pid": "13938233X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/13938233X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13938233X", "source": "GND"}], "date_of_birth": "14.06.1883", "date_of_death": "24.12.1936", "preferred_name": "Ratte, Ida", "country_associated": "gw", "authorized_access_point": "Ratte, Ida, 1883-1936", "biographical_information": ["Dt. Heimatschriftstellerin in Fredeburg "]} 2 -2023-07-08 10:22:01.248273 2023-07-08 10:24:20.187056 2edfb1b4-e703-4b46-af35-57d5540e6384 {"md5": "7accd94f24bb8e0cc72160eb08e5c224", "pid": "1098168984", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1098168984", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1098168984", "source": "GND"}], "variant_name": ["Lappe, J. H. A.", "Lappe, Johann", "Lappe, Heinrich", "Lappe, August"], "date_of_birth": "ca. 1824", "preferred_name": "Lappe, Johann Heinrich August", "country_associated": "gw", "variant_access_point": ["Lappe, J. H. A., ca. 1824", "Lappe, Johann, ca. 1824", "Lappe, Heinrich, ca. 1824", "Lappe, August, ca. 1824"], "authorized_access_point": "Lappe, Johann Heinrich August, ca. 1824"} 2 -2023-07-08 08:15:26.657091 2023-07-08 10:24:20.685396 8bd1f1e0-9fdc-4780-bbaf-a274ef037374 {"md5": "f8ebf782c559e62fd3a2ec3134c70d56", "pid": "1101364238", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1101364238", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1101364238", "source": "GND"}], "variant_name": ["Schützenbund Lengerich"], "preferred_name": "Lengericher Schützenbund", "country_associated": "gw", "variant_access_point": ["Schützenbund Lengerich"], "date_of_establishment": "1987", "authorized_access_point": "Lengericher Schützenbund"} 2 -2023-07-08 08:15:41.506281 2023-07-08 10:24:21.849267 261ed30b-c7f4-40ec-9732-7cf5d0bccd3a {"md5": "b63f96d198c903fe8f4dcadccf63a0a3", "pid": "1146337116", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1146337116", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146337116", "source": "GND"}], "variant_name": ["Carpentier, Louis-Laurent", "Carpentier, Laurent"], "date_of_birth": "1968", "preferred_name": "Laurent", "variant_access_point": ["Carpentier, Louis-Laurent, 1968-", "Carpentier, Laurent, 1968-"], "authorized_access_point": "Laurent, 1968-", "biographical_information": ["belg. Comiczeichner und Colorist"]} 2 -2023-07-08 08:16:08.77659 2023-07-08 10:24:26.867143 ba3e3023-78b6-48e3-8acb-6d8d09aea955 {"md5": "a15afaa90939f71a075044f0e9df4543", "pid": "1187368121", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1187368121", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1187368121", "source": "GND"}], "date_of_birth": "1970", "preferred_name": "Tóth, Szilárd Tibor", "country_associated": "er", "authorized_access_point": "Tóth, Szilárd Tibor, 1970-"} 2 -2023-07-08 08:17:04.400585 2023-07-08 10:24:27.388433 5ac3ece3-60e0-48a3-b091-d7e9f4ff34d6 {"md5": "64a8452d71197e5204f1f31a19610ba2", "pid": "139535489", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139535489", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139535489", "source": "GND"}], "date_of_birth": "1979", "preferred_name": "Preuß, Anja", "country_associated": "gw", "authorized_access_point": "Preuß, Anja, 1979-", "biographical_information": ["Diss. Fachbereich Pharmazie, Univ. Marburg"]} 2 -2023-07-08 10:24:28.265839 2023-07-08 10:24:28.265853 8de117ed-f75c-4b1d-8154-bd949e7494e6 {"md5": "e2b0596ccc38a12c2e2f10b2d677bae9", "pid": "139542043", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139542043", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139542043", "source": "GND"}], "date_of_birth": "1968", "preferred_name": "Finke, Timo", "country_associated": "gw", "authorized_access_point": "Finke, Timo, 1968-"} 1 -2023-07-08 10:22:02.34878 2023-07-08 10:24:30.852595 9b91c109-8f15-4adf-9642-9a14d5edc230 {"md5": "6c1ebada1f3081f405ae5d498f95c7c8", "pid": "139621156", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139621156", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139621156", "source": "GND"}], "variant_name": ["Salis, Johannes von", "Salis-Samedan, Johann von", "von Salis-Samedan, Johann", "Samedan, Johann von Salis-", "Salis, Gian Travers", "Salis von Samedan, Gian Travers"], "date_of_birth": "30.01.1546", "date_of_death": "16.04.1624", "preferred_name": "Salis, Johann von", "country_associated": "sz", "variant_access_point": ["Salis, Johannes von, 1546-1624", "Salis-Samedan, Johann von, 1546-1624", "von Salis-Samedan, Johann, 1546-1624", "Samedan, Johann von Salis-, 1546-1624", "Salis, Gian Travers, 1546-1624", "Salis von Samedan, Gian Travers, 1546-1624"], "authorized_access_point": "Salis, Johann von, 1546-1624", "biographical_information": ["Montanunternehmer, Grosskaufmann"]} 2 -2023-07-08 10:24:31.910088 2023-07-08 10:24:31.910102 4d2fe7c1-094d-4cc7-94dd-0ae9f7e52d93 {"md5": "5102abc65c4000aa5e9c6500286aeb5b", "pid": "139622675", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139622675", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139622675", "source": "GND"}], "date_of_birth": "1971", "preferred_name": "Schwandt, Michael", "country_associated": "gw", "authorized_access_point": "Schwandt, Michael, 1971-", "biographical_information": ["Publikationen zu kritischer Theorie, Antisemitismus und Gedenkstättenpädagogik"]} 1 -2023-07-08 10:24:33.583752 2023-07-08 10:24:33.583766 20b9eb92-e69c-4977-bf0f-36b0aa3cc2c2 {"md5": "af1d2d5a4dade914d4c19aaae5b9a47d", "pid": "13962693X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/13962693X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13962693X", "source": "GND"}], "date_of_birth": "24.06.1944", "preferred_name": "Goetz, Arturo", "country_associated": "ag", "authorized_access_point": "Goetz, Arturo, 1944-", "biographical_information": ["Argentin. Filmschauspieler"]} 1 -2023-07-08 10:24:35.455714 2023-07-08 10:24:35.455725 919f3897-54fa-4a38-b428-84555d1f5678 {"md5": "a48c8718e79b103a2d2eec9f89f7c070", "pid": "1173303146", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1173303146", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1173303146", "source": "GND"}], "date_of_birth": "1960", "preferred_name": "Lavold, Bente", "country_associated": "no", "authorized_access_point": "Lavold, Bente, 1960-", "biographical_information": ["Mitarbeiterin der norwegischen Nationalbibliothek"]} 1 -2023-07-08 08:14:50.039205 2023-07-08 10:24:38.251219 c6ce2e31-d706-4a8c-92e7-454a4f8c676e {"md5": "da9a874b0a5817c55ab712fe68410b0a", "pid": "1020513020", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1020513020", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1020513020", "source": "GND"}], "preferred_name": "Neaum, Michael", "country_associated": "xxk", "authorized_access_point": "Neaum, Michael", "biographical_information": ["Engl. Arrangeur und Komponist; musikal. Begleiter, 1972-2007 regulärer Begleiter des Cantamus Girl's Choir; Gesangscoach"]} 2 -2023-07-08 08:15:07.222218 2023-07-08 10:24:38.705557 c4a49d73-d4c9-4c1a-a8d3-b96326622ff8 {"md5": "74d5a7ab50eb95d609dea47a14f6f88e", "pid": "1081429097", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1081429097", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081429097", "source": "GND"}], "variant_name": ["Unwirth, Gregorius", "Unwird, Gregor", "Unwird, Gregorius", "Unwirdt, Gregor"], "date_of_birth": "1542", "date_of_death": "1601", "preferred_name": "Unwirth, Gregor", "country_associated": "gw", "variant_access_point": ["Unwirth, Gregorius, 1542-1601", "Unwird, Gregor, 1542-1601", "Unwird, Gregorius, 1542-1601", "Unwirdt, Gregor, 1542-1601"], "authorized_access_point": "Unwirth, Gregor, 1542-1601"} 2 -2023-07-08 08:18:56.302821 2023-07-08 10:24:39.100764 869cccea-19c3-4211-a6c4-ffab4c512469 {"md5": "e79990fe742cb3761254c2ab4b7cf877", "pid": "990766160", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/10359475-9", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10359475-9", "source": "GND"}], "variant_name": ["ESPC, 8"], "preferred_name": "European Space Power Conference, 8", "country_associated": "gw", "variant_access_point": ["ESPC, 8, 2008, Konstanz"], "authorized_access_point": "European Space Power Conference, 8, 2008, Konstanz"} 2 -2023-07-08 10:24:41.451683 2023-07-08 10:24:41.451688 7c950f6f-9334-44e7-825a-1f0f7ce9f1f0 {"md5": "5f42bb195c96e6e22e361986b66a0e4b", "pid": "1177717379", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1177717379", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1177717379", "source": "GND"}], "variant_name": ["Davies, John Michael"], "date_of_birth": "1942", "preferred_name": "Davies, John", "country_associated": "xxk", "variant_access_point": ["Davies, John Michael, 1942-"], "authorized_access_point": "Davies, John, 1942-"} 1 -2023-07-08 08:15:45.004551 2023-07-08 10:24:43.839755 91cd5e5c-1079-4f43-85c7-d2703708f775 {"md5": "d29b8bb99b0d91614b9e7e1c1f137415", "pid": "1148121404", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1148121404", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1148121404", "source": "GND"}], "variant_name": ["Don Ralke & His Orchestra"], "preferred_name": "Don Ralke Orchestra", "country_associated": "xxu", "variant_access_point": ["Don Ralke & His Orchestra"], "authorized_access_point": "Don Ralke Orchestra"} 2 -2023-07-08 10:22:05.679 2023-07-08 10:24:44.422379 ff90167d-4fa6-4b6b-a550-ccdaec8f701f {"md5": "4525d64dc34878ef454c182f41aab4cf", "pid": "1148667989", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1148667989", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1148667989", "source": "GND"}], "variant_name": ["Schriver, Randall", "Schriver, Randy"], "preferred_name": "Schriver, Randall G.", "country_associated": "xxu", "variant_access_point": ["Schriver, Randall", "Schriver, Randy"], "authorized_access_point": "Schriver, Randall G.", "biographical_information": ["Beziehungen Taiwan-USA, Beziehungen USA-Asien, Verteidigungs-/Sicherheitspolitik"]} 2 -2023-07-08 08:15:58.529533 2023-07-08 10:24:45.434508 ce5c5c54-24fc-43f8-aa5a-dd311cf74074 {"md5": "333d573cab836cf4cc30f31954c01361", "pid": "1165547821", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1165547821", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1165547821", "source": "GND"}], "preferred_name": "Beß, Christoph von", "country_associated": "gw", "authorized_access_point": "Beß, Christoph von", "biographical_information": ["aus schlesischem Adel; 1614 im Collegium illustre zu Tübingen"]} 2 -2023-07-08 08:16:43.810783 2023-07-08 10:24:45.972826 2e9e0baf-ba20-4b5e-abb4-35202a1f2638 {"md5": "17232ded2feac9b6e82cc49a252ea8a2", "pid": "1261941136", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1261941136", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1261941136", "source": "GND"}], "variant_name": ["Çerhî, Yaʻkûb", "Yaʻkûb-ı Çerhî, Mevlânâ", "Çerhî, Yaʻkûb, Mevlânâ", "Yakub Çerhi, Mevlana", "Çerhi, Yakub, Mevlana", "Yakub b. Osman b. Mahmud el-Çerhî el-Ğaznevî es-Serrezî", "Yaʻkûb b. Osman b. Mahmûd b. Muhammed b. Mahmûd el-Gaznevî", "Çerhî, Yaʻkûb b. Osman b. Mahmûd b. Muhammed b. Mahmûd el-Gaznevî Serrezî"], "date_of_death": "1447", "preferred_name": "Yaʻkûb-ı Çerhî", "country_associated": "af", "variant_access_point": ["Çerhî, Yaʻkûb, -1447", "Yaʻkûb-ı Çerhî, Mevlânâ, -1447", "Çerhî, Yaʻkûb, Mevlânâ, -1447", "Yakub Çerhi, Mevlana, -1447", "Çerhi, Yakub, Mevlana, -1447", "Yakub b. Osman b. Mahmud el-Çerhî el-Ğaznevî es-Serrezî, -1447", "Yaʻkûb b. Osman b. Mahmûd b. Muhammed b. Mahmûd el-Gaznevî, -1447", "Çerhî, Yaʻkûb b. Osman b. Mahmûd b. Muhammed b. Mahmûd el-Gaznevî Serrezî, -1447"], "authorized_access_point": "Yaʻkûb-ı Çerhî, -1447"} 2 -2023-07-08 10:24:46.795924 2023-07-08 10:24:46.795929 ddd594d2-3aae-4cb2-bfb3-d48830e5168d {"md5": "e8120911f6eaa1335b8164069c427c60", "pid": "132272105", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/132272105", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/132272105", "source": "GND"}], "preferred_name": "Matthews, Gelien", "country_associated": "tr", "authorized_access_point": "Matthews, Gelien", "biographical_information": ["Caribbean Nazarene College, Trinidad and Tobago"]} 1 -2023-07-08 08:16:32.055438 2023-07-08 10:24:48.087789 4f711035-b505-4c68-bf6a-3879e85e466a {"md5": "049e06ca8355766d9de651e38f8a5ea8", "pid": "1235024172", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1235024172", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1235024172", "source": "GND"}], "preferred_name": "Bautsch, Antonia", "country_associated": "gw", "authorized_access_point": "Bautsch, Antonia", "biographical_information": ["Dissertation an der Universität zu Köln im Jahr 2020"]} 2 -2023-07-08 10:24:51.737488 2023-07-08 10:24:51.737499 a5fcf67d-6c6e-4f7f-9265-49d13b35e07c {"md5": "891cb7d4e3d7f431085b4d832baeef17", "pid": "1253501106", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1253501106", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1253501106", "source": "GND"}], "variant_name": ["Qi Chen", "齐, 宸"], "preferred_name": "Qi, Chen", "country_associated": "cc", "variant_access_point": ["Qi Chen", "齐, 宸"], "parallel_access_point": ["齐宸"], "authorized_access_point": "Qi, Chen", "biographical_information": ["Postdoktorandin an der Beijing Institute of Technology Law School und dem Institute of International Dispute Prevention and Resolution (2021)"]} 1 -2023-07-08 10:22:07.499202 2023-07-08 10:24:52.244123 90825ec7-4b6e-4c1c-9ff2-938353a0e5be {"md5": "875266b8699cfe6e2e6622e54ee42b81", "pid": "1255052740", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1255052740", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1255052740", "source": "GND"}], "variant_name": ["Tagung: 75 Jahre Befreiung des Konzentrationslagers Auschwitz - „Die Auseinandersetzung mit der Geschichte ist nie abgeschlossen“"], "preferred_name": "Die Auseinandersetzung mit der Geschichte ist nie abgeschlossen", "country_associated": "gw", "variant_access_point": ["Tagung: 75 Jahre Befreiung des Konzentrationslagers Auschwitz - „Die Auseinandersetzung mit der Geschichte ist nie abgeschlossen“, 2020, Berlin"], "authorized_access_point": "Die Auseinandersetzung mit der Geschichte ist nie abgeschlossen. Veranstaltung, 2020, Berlin", "biographical_information": ["Internetseite, Stand 07.04.2022, https://www.kulturelle-integration.de/termin/tagung-erinnerungskultur/"]} 2 -2023-07-08 08:16:44.444105 2023-07-08 10:24:53.310396 806ed744-69d9-4299-a33b-72ed9a5bb5ce {"md5": "6255cc6b2bf7a8aeb490099e9d878884", "pid": "1262993016", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1262993016", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1262993016", "source": "GND"}], "variant_name": ["Stöven, Inga Hillig-"], "preferred_name": "Hillig-Stöven, Inga", "country_associated": "gw", "variant_access_point": ["Stöven, Inga Hillig-"], "authorized_access_point": "Hillig-Stöven, Inga", "biographical_information": ["Dr., Biologin, Koordinatorin des Projektes \\"Mut wächst - Klimabewusstsein erden\\" im Frauenwerk der Nordkirche, Hauptbereich Generationen und Geschlechter"]} 2 -2023-07-08 10:24:54.68533 2023-07-08 10:24:54.685344 66db7e5c-42c7-4236-b344-d099d3803452 {"md5": "b971aca675620f658d2c77f33f0f6d3a", "pid": "117948682X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/117948682X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/117948682X", "source": "GND"}], "date_of_birth": "1962", "preferred_name": "Sperka, Jerzy", "country_associated": "pl", "authorized_access_point": "Sperka, Jerzy, 1962-"} 1 -2023-07-08 10:24:56.137332 2023-07-08 10:24:56.137345 e306cf5c-9081-4d86-b1a4-34da0a153bf7 {"md5": "74299671ceed0d37fcf7c29fe668862f", "pid": "1247672352", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1247672352", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1247672352", "source": "GND"}], "preferred_name": "Isabella, Giovanni", "country_associated": "it", "authorized_access_point": "Isabella, Giovanni"} 1 -2023-07-08 08:15:02.465451 2023-07-08 10:24:57.0283 62db6f72-a508-46f2-aec9-81cadf61f25d {"md5": "9fd9090f1b8f451b96379f2e9746cd28", "pid": "1063814340", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1063814340", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1063814340", "source": "GND"}], "date_of_birth": "1910", "date_of_death": "1997", "preferred_name": "Bielawski, Józef", "country_associated": "pl", "authorized_access_point": "Bielawski, Józef, 1910-1997", "biographical_information": ["Arabist, Wissenschaftler, Übersetzer Jura Universität Kraków, Orientalistik Ankara, Professor Universität Warszawa, Mitglied Akademie der Wissenschaften Irak"]} 2 -2023-07-08 08:16:02.54005 2023-07-08 10:24:57.953084 eaf02a6c-8d06-467a-9423-c96b0540ad36 {"md5": "83b8f5210e3a4fc8836167cbf108ce73", "pid": "117143553", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/117143553", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/117143553", "source": "GND"}], "variant_name": ["Prus, Marian Morelovski de", "Morelowski, Marian"], "date_of_birth": "02.03.1884", "date_of_death": "25.07.1963", "preferred_name": "Morelovski de Prus, Marian", "country_associated": "pl", "variant_access_point": ["Prus, Marian Morelovski de, 1884-1963", "Morelowski, Marian, 1884-1963"], "authorized_access_point": "Morelovski de Prus, Marian, 1884-1963"} 2 -2023-07-08 08:14:54.17171 2023-07-08 10:24:58.463324 4f8189a9-a299-4d16-b094-442cc0d0a145 {"md5": "1b3b32af18229207c7c6372c761441ea", "pid": "1038798124", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1038798124", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1038798124", "source": "GND"}], "date_of_birth": "1952", "preferred_name": "Madryas, Cezary", "country_associated": "pl", "authorized_access_point": "Madryas, Cezary, 1952-"} 2 -2023-07-08 10:24:59.341806 2023-07-08 10:24:59.341814 fb7a86c6-ef15-4469-8aa0-2e27aa051da1 {"md5": "1e26a7307914d114561206fa11955a52", "pid": "1259930696", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1259930696", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1259930696", "source": "GND"}], "date_of_birth": "1956", "preferred_name": "Długajczyk, Beata", "country_associated": "pl", "authorized_access_point": "Długajczyk, Beata, 1956-"} 1 -2023-07-08 08:14:57.870761 2023-07-08 10:25:00.133061 c9e7c5da-39b1-481d-9233-2d9561a28da1 {"md5": "c8a4bc7645206f583cf7ecea12b348a6", "pid": "1055200525", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1055200525", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1055200525", "source": "GND"}], "date_of_birth": "1777", "date_of_death": "1825", "preferred_name": "Hallager, Laurents", "authorized_access_point": "Hallager, Laurents, 1777-1825"} 2 -2023-07-08 08:16:29.019742 2023-07-08 10:25:00.671755 327ec1f1-b660-4ff4-8171-73d1c5589dcc {"md5": "5d1fa42224616aac57c677cf1827d47f", "pid": "1225750350", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1225750350", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1225750350", "source": "GND"}], "date_of_birth": "1909", "date_of_death": "1986", "preferred_name": "Nowicki, Andrzej", "country_associated": "pl", "authorized_access_point": "Nowicki, Andrzej, 1909-1986"} 2 -2023-07-08 10:25:02.773612 2023-07-08 10:25:02.773622 3f091d56-f4df-436e-a820-56fb9a51cec8 {"md5": "b67e129fcd9ab747f21d4be08536ee37", "pid": "170064344", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/170064344", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/170064344", "source": "GND"}], "variant_name": ["Milanovski, Vlodzimež"], "preferred_name": "Milanowski, Wlodzimierz", "variant_access_point": ["Milanovski, Vlodzimež"], "authorized_access_point": "Milanowski, Wlodzimierz"} 1 -2023-07-08 10:25:04.398572 2023-07-08 10:25:04.398579 17955300-fabf-4223-a063-33a419e025e5 {"md5": "4f1c9b379661f1339cce2af3594cecf7", "pid": "1153744600", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1153744600", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1153744600", "source": "GND"}], "variant_name": ["Kruppé, Jerzy Józef", "Czajka"], "date_of_birth": "1931", "preferred_name": "Kruppé, Jerzy", "country_associated": "pl", "variant_access_point": ["Kruppé, Jerzy Józef, 1931-", "Czajka, 1931-"], "authorized_access_point": "Kruppé, Jerzy, 1931-"} 1 -2023-07-08 08:15:27.308976 2023-07-08 10:25:06.008604 520ad095-587e-4dbb-bdb6-b1e0fa3ca0f0 {"md5": "2a8850d1623a4031afed2d0744d2f63c", "pid": "1103471996", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1103471996", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1103471996", "source": "GND"}], "variant_name": ["Männergesangverein Sängerlust 1859/81 e.V. Frankfurt am Main-Sindlingen", "M.G.V. Sängerlust 1859/81 e.V. Ffm.-Sindlingen"], "preferred_name": "M.G.V. Sängerlust 1859/81 e.V. Frankfurt am Main-Sindlingen", "country_associated": "gw", "variant_access_point": ["Männergesangverein Sängerlust 1859/81 e.V. Frankfurt am Main-Sindlingen", "M.G.V. Sängerlust 1859/81 e.V. Ffm.-Sindlingen"], "authorized_access_point": "M.G.V. Sängerlust 1859/81 e.V. Frankfurt am Main-Sindlingen"} 2 -2023-07-08 08:16:37.270851 2023-07-08 10:25:07.213637 798ee834-b916-48ee-91a2-fbfc35efa352 {"md5": "ce9479bd1b4d238a106fb97394781826", "pid": "1244880027", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1244880027", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1244880027", "source": "GND"}], "preferred_name": "Żabicki, Piotr", "country_associated": "pl", "authorized_access_point": "Żabicki, Piotr"} 2 -2023-07-08 08:14:51.712757 2023-07-08 10:25:10.527921 9acf8c3b-2791-453c-9d39-824a3ebbe6d6 {"md5": "5ac30a23a276a6b8def2cba540cc3856", "pid": "1028665504", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1028665504", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1028665504", "source": "GND"}], "date_of_birth": "08.11.1908", "preferred_name": "Siegmund, Bernhard", "country_associated": "gw", "authorized_access_point": "Siegmund, Bernhard, 1908-"} 2 -2023-07-08 10:25:11.394982 2023-07-08 10:25:11.394994 ed316bb2-fca9-4587-8003-53e707ce8ddc {"md5": "294c6abd87d2f03dd3e14f14ff18f4cf", "pid": "1031494286", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1031494286", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1031494286", "source": "GND"}], "date_of_birth": "1970", "preferred_name": "Nievelstein, Ralf", "country_associated": "gw", "authorized_access_point": "Nievelstein, Ralf, 1970-", "biographical_information": ["illustriert für Verlage, Filmproduktionen und Reklameanstalten"]} 1 -2023-07-08 10:22:10.769941 2023-07-08 10:25:12.305935 afa5348f-fb16-4903-8dc2-6ac7e014d4e0 {"md5": "e6bce2adaade60f5d92904598c89e17f", "pid": "1162523271", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1162523271", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1162523271", "source": "GND"}], "variant_name": ["Natalse Instituut van Argitekte", "NIA"], "preferred_name": "Natal Institute of Architects", "country_associated": "sa", "variant_access_point": ["Natalse Instituut van Argitekte", "NIA. Abkuerzung"], "date_of_establishment": "1991", "authorized_access_point": "Natal Institute of Architects"} 2 -2023-07-08 10:25:12.835091 2023-07-08 10:25:12.835102 97084530-25ae-4988-9f17-0bf90a435f93 {"md5": "bb714f4b5d47f90c7ffb07222cb3109f", "pid": "107738338X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/107738338X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/107738338X", "source": "GND"}], "preferred_name": "Sibears, Daniel M.", "country_associated": "xxu", "authorized_access_point": "Sibears, Daniel M."} 1 -2023-07-08 10:25:14.085516 2023-07-08 10:25:14.085528 e3f549a7-d57b-48dd-b9d5-8e6113863572 {"md5": "c6e34614b2776fd356a033d243c485f6", "pid": "132503980", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/132503980", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/132503980", "source": "GND"}], "variant_name": ["Hancock, D."], "date_of_birth": "1938", "preferred_name": "Hancock, David", "variant_access_point": ["Hancock, D., 1938-"], "authorized_access_point": "Hancock, David, 1938-"} 1 -2023-07-08 08:14:58.098122 2023-07-08 10:25:15.826575 3815f843-ff4c-47e7-8a4b-ad317ee2a1af {"md5": "28e58c783c049cf248d293546d48a84f", "pid": "1055348328", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1055348328", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1055348328", "source": "GND"}], "variant_name": ["Lavoix, Henri Michel", "Lavoix, H.", "Lavoix, Michel Henri", "Lavoix, Henri-Michel"], "date_of_birth": "19.01.1820", "date_of_death": "23.10.1892", "preferred_name": "Lavoix, Henri", "country_associated": "fr", "variant_access_point": ["Lavoix, Henri Michel, 1820-1892", "Lavoix, H., 1820-1892", "Lavoix, Michel Henri, 1820-1892", "Lavoix, Henri-Michel, 1820-1892"], "authorized_access_point": "Lavoix, Henri, 1820-1892", "biographical_information": ["Conservateur au Département des médailles et antiques de la Bibliothèque Nationale, Paris. Critique dramatique et musical à l'\\"Illustration\\" sous le pseudonyme de Savigny"]} 2 -2023-07-08 10:25:18.040684 2023-07-08 10:25:18.040688 ac5e4c03-2b29-4240-b5d5-e5531187a788 {"md5": "19398d332c4abab01ea1b5e2a51688c9", "pid": "120759241", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/120759241", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120759241", "source": "GND"}], "date_of_birth": "1971", "preferred_name": "Busch, Sylvia", "authorized_access_point": "Busch, Sylvia, 1971-", "biographical_information": ["Juristin"]} 1 -2023-07-08 10:25:18.479881 2023-07-08 10:25:18.4799 4f315a79-6299-459b-b5ae-14f4adeba409 {"md5": "506d0dcc2140339460dd483858cfd524", "pid": "134624149", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/134624149", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134624149", "source": "GND"}], "preferred_name": "Wiedemann, Herbert", "country_associated": "gw", "authorized_access_point": "Wiedemann, Herbert", "biographical_information": ["1983 Promotion in Musikpädagogik. 1988-2016 Professor für Musikpädagogik an der Universität der Künste in Berlin"]} 1 -2023-07-08 08:15:18.348591 2023-07-08 10:25:19.459092 c10c15bb-0aee-490b-8578-cf05aac76676 {"md5": "7e7872e0d942e87aa5c8657cc7d01339", "pid": "1089267177", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1089267177", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089267177", "source": "GND"}], "variant_name": ["Schimmel, Nikolaus"], "preferred_name": "Schimmel, Nikolaus W.", "variant_access_point": ["Schimmel, Nikolaus"], "authorized_access_point": "Schimmel, Nikolaus W.", "biographical_information": ["Klavierbauer, Deutschland"]} 2 -2023-07-08 08:17:05.124411 2023-07-08 10:25:20.084595 a81fb66b-719a-4694-9426-57bc4f7adfc3 {"md5": "2206f5a976e1d07e869ddcb56521412e", "pid": "139654526", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139654526", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139654526", "source": "GND"}], "variant_name": ["Mattig, Heinrich von der"], "date_of_birth": "1827", "date_of_death": "07.07.1898", "preferred_name": "Wallmann, Heinrich", "country_associated": "au", "variant_access_point": ["Mattig, Heinrich von der, 1827-1898"], "authorized_access_point": "Wallmann, Heinrich, 1827-1898", "biographical_information": ["Oberösterreichischer Arzt, auch Lyriker und Mundartdichter; 1862: Dr. der Medizin u. Chirurgie, Magister der Geburtshilfe, k.k. Oberfeldarzt, Docent an der k.k. Universität zu Wien, emeritierter Prosector der k.k. med.-chir. Josefs-Akademie"]} 2 -2023-07-08 10:25:22.473734 2023-07-08 10:25:22.473741 d1e3a518-455a-4ad5-80da-bf06d5868726 {"md5": "f4e1a24272f0d79295d4dba7e37f34c1", "pid": "139708162", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139708162", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139708162", "source": "GND"}], "date_of_birth": "21.11.1870", "date_of_death": "07.08.1944", "preferred_name": "Hopf, Friedrich Eugen", "country_associated": "gw", "authorized_access_point": "Hopf, Friedrich Eugen, 1870-1944", "biographical_information": ["dt. Dermatologe und Kommunalpolitiker, eröffnete 1898 eine private Hautklinik in Dresden; 1901-1911 Vorsitzender der Ortsgruppe Dresden des Alldeutschen Verbandes; 1903-1911 Stadtverordneter in Dresden"]} 1 -2023-07-08 08:17:05.518776 2023-07-08 10:25:23.8552 5523f7ae-c0ee-45f3-830f-bd457da80576 {"md5": "02c0e748ae7ecbbdf664362a7dc021c2", "pid": "13971166X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/13971166X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13971166X", "source": "GND"}], "date_of_birth": "1644", "date_of_death": "1691", "preferred_name": "Hinlopen, Gerard", "authorized_access_point": "Hinlopen, Gerard, 1644-1691"} 2 -2023-07-08 10:22:15.240626 2023-07-08 10:25:30.545511 9f86b5c7-9c9f-4153-ad05-d6fe90ea3c05 {"md5": "ed413573b0cd2f72adecf2435675bcc2", "pid": "111476518X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/111476518X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/111476518X", "source": "GND"}], "variant_name": ["Feuerwehr Ismaning"], "preferred_name": "Freiwillige Feuerwehr Ismaning", "country_associated": "gw", "variant_access_point": ["Feuerwehr Ismaning"], "date_of_establishment": "1869", "authorized_access_point": "Freiwillige Feuerwehr Ismaning"} 2 -2023-07-08 08:16:45.486416 2023-07-08 10:25:32.196409 b3f16126-f014-4d1e-8dcd-b7ea4a755e36 {"md5": "5a44a55c10d8fe03f1340bedbbca2d96", "pid": "127205233", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "qualifier": "Gräfin von", "identifier": "http://d-nb.info/gnd/127205233", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/127205233", "source": "GND"}], "variant_name": ["Dürniz, Gertrud von", "Dürniz, Gertrud P.-", "Podewils, Gertrudis", "Podevils-Dürniz, Gertrudis"], "date_of_birth": "16.12.1880", "date_of_death": "23.03.1963", "preferred_name": "Podewils-Dürniz, Gertrud, Gräfin von", "country_associated": "gw", "variant_access_point": ["Dürniz, Gertrud von, 1880-1963", "Dürniz, Gertrud P.-, 1880-1963", "Podewils, Gertrudis, 1880-1963", "Podevils-Dürniz, Gertrudis, 1880-1963"], "authorized_access_point": "Podewils-Dürniz, Gertrud, Gräfin von, 1880-1963"} 2 -2023-07-08 08:15:54.819931 2023-07-08 10:25:34.86621 81d1efba-e72e-4517-8671-4f720ed98cf1 {"md5": "bd3f153ef6b42a465886b0273e9b1f0e", "pid": "1159284946", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1159284946", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159284946", "source": "GND"}], "variant_name": ["Bibiléichvili, Tsissana", "Bibileischwili, Tsisana", "Bibileishvili, Tsisana"], "preferred_name": "Bibileišvili, C̕isana", "country_associated": "gau", "variant_access_point": ["Bibiléichvili, Tsissana", "Bibileischwili, Tsisana", "Bibileishvili, Tsisana"], "parallel_access_point": ["ბიბილეიშვილი, ცისანა"], "authorized_access_point": "Bibileišvili, C̕isana"} 2 -2023-07-08 08:14:55.652546 2023-07-08 10:25:35.657116 b3710fcd-9b4e-44ab-9e55-e28daf4f4fee {"md5": "928681a92979334c8b28eec275445f41", "pid": "1047508257", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1047508257", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1047508257", "source": "GND"}], "preferred_name": "Prapanna, Vandana", "country_associated": "ii", "authorized_access_point": "Prapanna, Vandana"} 2 -2023-07-08 08:16:51.404011 2023-07-08 10:25:39.150911 27e374d5-9c59-4555-a1e3-ad99748a45f0 {"md5": "634e8774382c419833dc6bafc6efa16c", "pid": "130677299", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/130677299", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/130677299", "source": "GND"}], "variant_name": ["Ming-Yuet, Kee"], "date_of_birth": "1952", "preferred_name": "Kee Ming-Yuet", "country_associated": "my", "variant_access_point": ["Ming-Yuet, Kee, 1952-"], "authorized_access_point": "Kee Ming-Yuet, 1952-", "biographical_information": ["Malaysische Sammlerin von Chinesischem Porzellan und Privatdozentin"]} 2 -2023-07-08 10:22:16.791278 2023-07-08 10:25:40.023592 983c7bd3-c8ec-4c3d-8ae1-174e000d1fe2 {"md5": "89cc86567d49afaee698ce7b0257264c", "pid": "1077608101", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1077608101", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1077608101", "source": "GND"}], "date_of_birth": "1956", "preferred_name": "Stöppler, Thomas", "country_associated": "gw", "authorized_access_point": "Stöppler, Thomas, 1956-", "biographical_information": ["Studiendirektor, ist Landesvorsitzender des europaweit größten Fachverbandes im Behindertenbereich: Verband Sonderpädagogik e.V. Baden-Württemberg (vds). Nach langjähriger Tätigkeit als Sonderpädagoge und Schulleiter mit den Förderschwerpunkten Verhalten und Lernen sowie im Lehrerbildungsbereich ist er derzeit Leiter des Staatlichen Seminars für Didaktik und Lehrerbildung, Abteilung Sonderschulen in Stuttgart."]} 2 -2023-07-08 08:15:32.343397 2023-07-08 10:25:40.510221 2d6553cf-7850-410a-aa14-e5a9d0f6b55d {"md5": "8f81060c6984b0d1b405913bf5c5b63f", "pid": "1120815401", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1120815401", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1120815401", "source": "GND"}], "variant_name": ["Stradner, Michael"], "preferred_name": "Stradner, Michael Alexander", "country_associated": "gw", "variant_access_point": ["Stradner, Michael"], "authorized_access_point": "Stradner, Michael Alexander", "biographical_information": ["Promotion an der Rheinisch-Westfälischen Technischen Hochschule Aachen, Fakultät für Wirtschaftswissenschaften, 2016"]} 2 -2023-07-08 08:17:06.836177 2023-07-08 10:25:48.368181 6ea4cef9-a982-466c-aeb8-276c4ad56f70 {"md5": "148fd1cc621b19a0c602c9259e659076", "pid": "139942920", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139942920", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139942920", "source": "GND"}], "date_of_birth": "1978", "preferred_name": "Lehmann, Ingo", "authorized_access_point": "Lehmann, Ingo, 1978-", "biographical_information": ["Freier Autor und Redakteur bei einer Film- und Fernsehproduktionsfirma"]} 2 -2023-07-08 08:15:11.363025 2023-07-08 10:25:52.941877 79aa88bc-cae5-413a-91c9-3af034322650 {"md5": "af44786dc1ecfee7de487f5485ea5eaf", "pid": "1086144686", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086144686", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086144686", "source": "GND"}], "preferred_name": "Ländlertrio Haller-Häller", "country_associated": "sz", "authorized_access_point": "Ländlertrio Haller-Häller"} 2 -2023-07-08 08:15:53.282309 2023-07-08 10:25:53.44641 5b527d9b-1627-4ba6-809a-558a3ab38046 {"md5": "5e53d549b04b8be481279d8787485b37", "pid": "1159046239", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1159046239", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159046239", "source": "GND"}], "variant_name": ["Mönnich, Günther"], "preferred_name": "Mönnich, Günter", "variant_access_point": ["Mönnich, Günther"], "authorized_access_point": "Mönnich, Günter"} 2 -2023-07-08 10:25:55.548894 2023-07-08 10:25:55.548923 3a88ef7c-496a-4815-818b-63ebc51b853a {"md5": "942f6b87beca63b9350d30d332bc745f", "pid": "141184531", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141184531", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141184531", "source": "GND"}], "date_of_birth": "21.07.1966", "preferred_name": "McCarthy, Rebecca Lea", "country_associated": "xxu", "authorized_access_point": "McCarthy, Rebecca Lea, 1966-", "biographical_information": ["Prof. of humanities, Kaplan Univ."]} 1 -2023-07-08 08:15:01.130365 2023-07-08 10:25:56.847706 ff6aae82-6c3d-4d05-9937-dd700b9c959e {"md5": "81a37c8d3d4cf5be6f3ae19e74ea6c0b", "pid": "106068375X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://d-nb.info/gnd/106068375X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/106068375X", "source": "GND"}], "preferred_name": "Stras, Laurie", "country_associated": "xxk", "authorized_access_point": "Stras, Laurie"} 2 -2023-07-08 08:15:44.21438 2023-07-08 10:25:57.90479 f2fdf129-c3f1-4e4e-8795-5ef4515a4a94 {"md5": "4ad0c5dcacb15c81eb19ab234d671acd", "pid": "1147141754", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1147141754", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1147141754", "source": "GND"}], "variant_name": ["Gandhi, Nighat"], "preferred_name": "Gandhi, Nighat M.", "country_associated": "ii", "variant_access_point": ["Gandhi, Nighat"], "authorized_access_point": "Gandhi, Nighat M.", "biographical_information": ["Writer & professional mental health counselor; spent her formative yrs. in Dhaka and Karachi; studied in USA; presently resides in Allahabad & writes for Indian and Pakistani newspapers"]} 2 -2023-07-08 10:22:20.185805 2023-07-08 10:25:58.800672 6241c36b-8031-4b74-af3f-cb5a69cf5402 {"md5": "cdd55e6279eeaeb61333c91359e720c3", "pid": "1027019781", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1027019781", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1027019781", "source": "GND"}], "variant_name": ["Kreminʹ, T. D.", "Kraminʹ, Taras", "Kremenʹ, Taras Dmitrievič", "Kreminʹ, Taras Dmytrovych", "Kremenʹ, Taras Dmitrievich", "Кремінь, Т. Д.", "Кремень, Тарас Дмитриевич"], "date_of_birth": "1978", "preferred_name": "Kreminʹ, Taras Dmytrovyč", "country_associated": "un", "variant_access_point": ["Kreminʹ, T. D., 1978-", "Kraminʹ, Taras, 1978-", "Kremenʹ, Taras Dmitrievič, 1978-", "Kreminʹ, Taras Dmytrovych, 1978-", "Kremenʹ, Taras Dmitrievich, 1978-", "Кремінь, Т. Д., 1978-", "Кремень, Тарас Дмитриевич, 1978-"], "parallel_access_point": ["Кремінь, Тарас Дмитрович, 1978-"], "authorized_access_point": "Kreminʹ, Taras Dmytrovyč, 1978-"} 2 -2023-07-08 08:16:13.161021 2023-07-08 10:26:13.151666 6faabe2f-cc80-466b-9e4f-b3b55dbad4b3 {"md5": "60293de005140a3d697e809e0b9e7900", "pid": "1192403959", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1192403959", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1192403959", "source": "GND"}], "variant_name": ["Maister, David", "Maister, David Hilton"], "date_of_birth": "1947", "preferred_name": "Maister, David H.", "country_associated": "xxk", "variant_access_point": ["Maister, David, 1947-", "Maister, David Hilton, 1947-"], "authorized_access_point": "Maister, David H., 1947-", "biographical_information": ["formerly a Harvard Business School professor, consults to professional service firms worldwide"]} 2 -2023-07-08 08:16:52.704161 2023-07-08 10:26:00.952702 8cc40bf4-cb94-4189-a802-80adc89f7efe {"md5": "8a8ff72e3ef0b8c8b926ea156c998efa", "pid": "131915401", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/131915401", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/131915401", "source": "GND"}], "variant_name": ["Hulme, D."], "date_of_birth": "1952", "preferred_name": "Hulme, David", "country_associated": "xxk", "variant_access_point": ["Hulme, D., 1952-"], "authorized_access_point": "Hulme, David, 1952-", "biographical_information": ["Professor für Entwicklungsstudien an der Universität von Manchester", "Prof. of Development Studies; Inst. for Development Policy and Management, Univ. Manchester, UK; dir., Chronic Poverty Res. Ctr.; BA MA Cambridge, PhD JCU Queensland; res. interests: rural dev. pol. and plan.; poverty reduction strategies; finance for the poor; sociol. of dev.; role of community orgs. and NGOs; evaluation of tech. asst.; environ. mgmt.; public sector reform; country experience: Bangladesh, Belize, Hungary, India, Indonesia, Kenya, Malawi, Malaysia, Mexico, Nepal, Nigeria, Papua New Guinea, Solomon Islands, Sri Lanka, Tanzania, Uganda, Zimbabwe. Soziologe"]} 2 -2023-07-08 08:14:49.650025 2023-07-08 10:26:01.803992 4a48bb22-4318-4b9c-b262-99746d98bc75 {"md5": "d2327fc4c94dc60cd7bb5ec6febdea3b", "pid": "1019086750", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1019086750", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1019086750", "source": "GND"}], "preferred_name": "Scheidt, Petra", "authorized_access_point": "Scheidt, Petra", "biographical_information": ["Diss., Universität Duisburg-Essen"]} 2 -2023-07-08 08:15:18.238056 2023-07-08 10:26:04.089591 746deb63-6119-4609-a156-d3cbca7669a1 {"md5": "d1fc56fac60a8a0c605eb6d87863e95b", "pid": "1089227736", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1089227736", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089227736", "source": "GND"}], "date_of_birth": "20. Jht.", "preferred_name": "Müller-Starck, Gerhard", "authorized_access_point": "Müller-Starck, Gerhard, 20. Jht.", "biographical_information": ["Forstwissenschaftler, Deutschland, Schweiz"]} 2 -2023-07-08 08:17:07.851557 2023-07-08 10:26:04.931014 ab0e698d-6e19-4947-8c31-d850b5a02344 {"md5": "fd967bac22f0a944345f50c8fcbfbc5e", "pid": "140306412", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140306412", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140306412", "source": "GND"}], "date_of_birth": "1956", "preferred_name": "Dragović, Ljubomir", "country_associated": "ci", "authorized_access_point": "Dragović, Ljubomir, 1956-", "biographical_information": ["Kroat. Schriftsteller, geb. in Sonković, lebt in Sonković und Banja Luka"]} 2 -2023-07-08 08:17:08.04512 2023-07-08 10:26:05.403777 50738ab8-4ad3-42bf-a94a-9a212a42dd3d {"md5": "39bd9b86710d3bed5d62c0a61d854137", "pid": "140322213", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["per"], "identifier": "http://d-nb.info/gnd/140322213", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140322213", "source": "GND"}], "variant_name": ["Hayati, A. A."], "date_of_birth": "1974", "preferred_name": "Ḥayātī, ʿAlī-ʿAbās", "country_associated": "ir", "variant_access_point": ["Hayati, A. A., 1974-"], "authorized_access_point": "Ḥayātī, ʿAlī-ʿAbās, 1974-"} 2 -2023-07-08 10:26:06.297309 2023-07-08 10:26:06.297315 3420562f-f76d-4539-8d4f-dddf6a425bb1 {"md5": "bd045862e1b444a664c0761b740a9b64", "pid": "1195625049", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1195625049", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1195625049", "source": "GND"}], "date_of_birth": "1977", "preferred_name": "Galanopoulos, Philippe", "country_associated": "fr", "authorized_access_point": "Galanopoulos, Philippe, 1977-"} 1 -2023-07-08 10:26:07.13806 2023-07-08 10:26:07.138066 9abce8ef-2a0b-4ca0-867c-3807383dc5d4 {"md5": "5d816b05d257dba072b1a723886b8071", "pid": "140327606", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140327606", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140327606", "source": "GND"}], "variant_name": ["Rossignol, Nicolas Mayer-"], "date_of_birth": "1968?", "preferred_name": "Mayer-Rossignol, Nicolas", "country_associated": "fr", "variant_access_point": ["Rossignol, Nicolas Mayer-, 1968?-"], "authorized_access_point": "Mayer-Rossignol, Nicolas, 1968?-", "biographical_information": ["Franz. Ingenieur beim Corps des Mines"]} 1 -2023-07-08 10:26:08.363971 2023-07-08 10:26:08.363984 941c0896-2a31-4183-9c17-7a77ad70f272 {"md5": "e32d313b67884de0001593b243d20c13", "pid": "131898922", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/131898922", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/131898922", "source": "GND"}], "date_of_birth": "1968", "preferred_name": "Moskowitz, Marina", "country_associated": "xxk", "parallel_access_point": ["Moskowitz, Marina, 1968-"], "authorized_access_point": "Moskowitz, Marina, 1968-", "biographical_information": ["Tätig am Department of History, Univ. of Glasgow"]} 1 -2023-07-08 10:26:11.175724 2023-07-08 10:26:11.175731 94cebed8-45fb-4eb7-8789-a392da4725b8 {"md5": "63896fb2f729313bf8702e08914ea43e", "pid": "1096172224", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1096172224", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1096172224", "source": "GND"}], "variant_name": ["Juteau Lee, Danielle", "Lee, Danielle Juteau"], "date_of_birth": "1942", "preferred_name": "Juteau, Danielle", "country_associated": "xxc", "variant_access_point": ["Juteau Lee, Danielle, 1942-", "Lee, Danielle Juteau, 1942-"], "authorized_access_point": "Juteau, Danielle, 1942-", "biographical_information": ["Professeure émérité au Département de sociologie de l'Université de Montréal (2015)"]} 1 -2023-07-08 10:26:12.235867 2023-07-08 10:26:12.235871 4d4da771-6533-4416-b91d-8b04c571ff61 {"md5": "31fc5a84d70504bc2084073f9058e2c7", "pid": "117490555", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/117490555", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/117490555", "source": "GND"}], "date_of_birth": "1845", "date_of_death": "1906", "preferred_name": "Spiess, Bernhard", "country_associated": "gw", "authorized_access_point": "Spiess, Bernhard, 1845-1906"} 1 -2023-07-08 10:27:29.157778 2023-07-08 10:27:29.15779 02f9495b-c2eb-4769-9cf8-efdb94ce5d27 {"md5": "a92049cbcad00451daf72a9e59c247e3", "pid": "140424873", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140424873", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140424873", "source": "GND"}], "date_of_birth": "1972", "preferred_name": "Stampone, Giuseppe", "country_associated": "it", "authorized_access_point": "Stampone, Giuseppe, 1972-"} 1 -2023-07-08 10:26:14.932071 2023-07-08 10:26:14.932078 906bdafe-4343-4078-83a8-f6924e7b15d4 {"md5": "aae8981007b4d6bab012167dc978e624", "pid": "1089160305", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1089160305", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089160305", "source": "GND"}], "variant_name": ["Ruggles, Richard", "Ruggles, Richard Irwin", "Ruggles, Dick"], "date_of_birth": "1923", "date_of_death": "2008", "preferred_name": "Ruggles, Richard I.", "variant_access_point": ["Ruggles, Richard, 1923-2008", "Ruggles, Richard Irwin, 1923-2008", "Ruggles, Dick, 1923-2008"], "authorized_access_point": "Ruggles, Richard I., 1923-2008", "biographical_information": ["Geograph"]} 1 -2023-07-08 08:15:43.00379 2023-07-08 10:26:15.487823 c4e0b2de-64b0-422c-aa23-561cbf5f9e29 {"md5": "ee2551d8e0e6a3251a1a4c15c08e6d6f", "pid": "1146794703", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1146794703", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146794703", "source": "GND"}], "date_of_birth": "1922", "preferred_name": "Fregly, Bert", "authorized_access_point": "Fregly, Bert, 1922-"} 2 -2023-07-08 08:15:22.036934 2023-07-08 10:26:15.909988 a9c23375-9d78-4fa2-8286-5945b050a9ae {"md5": "e1f3d08eb1a3fb02611c33bc07519e1a", "pid": "1091697620", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1091697620", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1091697620", "source": "GND"}], "preferred_name": "Symposion \\"Psychoanalyse im Kontext - soziologische Erkundungen\\"", "authorized_access_point": "Symposion \\"Psychoanalyse im Kontext - soziologische Erkundungen\\""} 2 -2023-07-08 10:26:17.558902 2023-07-08 10:26:17.558905 f8b2676d-14c5-4f96-9aa9-b7cca494f897 {"md5": "2b10a435286695f5b5a2a626e8f1c909", "pid": "1061268225", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1061268225", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1061268225", "source": "GND"}], "preferred_name": "Chiarini, Claude", "authorized_access_point": "Chiarini, Claude"} 1 -2023-07-08 10:26:20.050284 2023-07-08 10:26:20.050293 cc33f4f2-0622-4f6c-a6da-1a2e71d74dc6 {"md5": "8e49fe9fb051306ce36b6ad2ab58c54b", "pid": "1220237183", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1220237183", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1220237183", "source": "GND"}], "variant_name": ["Follpracht-Wietlisbach, Stéphanie"], "preferred_name": "Wietlisbach, Stéphanie", "country_associated": "sz", "variant_access_point": ["Follpracht-Wietlisbach, Stéphanie"], "authorized_access_point": "Wietlisbach, Stéphanie", "biographical_information": ["Urkundsperson des Kantons Schwyz; Promotion an der Universität Zürich 2020"]} 1 -2023-07-08 08:15:15.938071 2023-07-08 10:26:23.138716 8060c16f-3d09-421d-97fa-71ecebb00ede {"md5": "5f8838660d57e82c803d50ee4099b8e6", "pid": "1087161088", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1087161088", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087161088", "source": "GND"}], "preferred_name": "Eresinger Stubnmusi", "authorized_access_point": "Eresinger Stubnmusi"} 2 -2023-07-08 08:16:22.854477 2023-07-08 10:26:24.186701 b7506a01-b36f-4601-8052-365ab920ea5f {"md5": "995804981e70d54f4bb63633b5eba297", "pid": "1211775216", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1211775216", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1211775216", "source": "GND"}], "date_of_birth": "1783", "date_of_death": "1835", "preferred_name": "Potter, Richard", "country_associated": "xxu", "authorized_access_point": "Potter, Richard, 1783-1835"} 2 -2023-07-08 10:26:25.716167 2023-07-08 10:26:25.716182 1cde09b7-5c57-4781-a01f-fc37a7571ff1 {"md5": "8188e6be61b3c95a2fbeff3879f6bc66", "pid": "1079981993", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1079981993", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1079981993", "source": "GND"}], "variant_name": ["Artl, G."], "preferred_name": "Artl, Gerhard", "country_associated": "gw", "variant_access_point": ["Artl, G."], "authorized_access_point": "Artl, Gerhard"} 1 -2023-07-08 08:15:21.425434 2023-07-08 10:26:26.343425 3b90cf62-89a6-4e31-9268-fd44e13d3692 {"md5": "b753eb5234e5e458c5cf305c05f70db4", "pid": "1091183546", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1091183546", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1091183546", "source": "GND"}], "preferred_name": "Architekt Franz Baumgartner", "authorized_access_point": "Architekt Franz Baumgartner, 1986, Klagenfurt"} 2 -2023-07-08 10:26:28.317879 2023-07-08 10:26:28.317884 7b529d6c-326c-41b7-bf89-0adc5f13a20e {"md5": "dd0d9010824f8c46152bb3c2e7d31180", "pid": "123952425", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/123952425", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/123952425", "source": "GND"}], "variant_name": ["Helbich, Wolfgang", "Helbich, Wolfgang Johannes", "Helbich-Lehmkuhl, Wolfgang", "Helbich-Lehmkuhl, Wolfgang J.", "Helbich-Lehmkuhl, Wolfgang Johannes"], "date_of_birth": "1935", "preferred_name": "Helbich, Wolfgang J.", "country_associated": "gw", "variant_access_point": ["Helbich, Wolfgang, 1935-", "Helbich, Wolfgang Johannes, 1935-", "Helbich-Lehmkuhl, Wolfgang, 1935-", "Helbich-Lehmkuhl, Wolfgang J., 1935-", "Helbich-Lehmkuhl, Wolfgang Johannes, 1935-"], "authorized_access_point": "Helbich, Wolfgang J., 1935-", "biographical_information": ["Dt. Historiker; Prof. für Neuere Geschichte mit bes. Berücks. der Geschichte Nordamerikas an der Ruhr-Universität Bochum; Initiator einer Sammlung von Briefen deutscher Auswanderer"]} 1 -2023-07-08 08:15:29.388968 2023-07-08 10:26:28.803118 490b6cce-53f4-48fb-9072-72018d8ddc6f {"md5": "7d1eb8e099471d80fc9bd7bf6056e56b", "pid": "111263638", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/111263638", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/111263638", "source": "GND"}], "variant_name": ["Bārinto, Aguneshu"], "date_of_birth": "23.10.1922", "date_of_death": "24.10.2008", "preferred_name": "Bálint, Ágnes", "country_associated": "hu", "variant_access_point": ["Bārinto, Aguneshu, 1922-2008"], "authorized_access_point": "Bálint, Ágnes, 1922-2008", "biographical_information": ["Ungar. Kinder- und Drehbuchautorin"]} 2 -2023-07-08 08:17:29.60417 2023-07-08 10:26:29.287405 286f5901-8c06-41ac-bf0a-63ad2dc0ca6e {"md5": "d7d3608528524033e3562102d7f4d83f", "pid": "172435498", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/172435498", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172435498", "source": "GND"}], "variant_name": ["Wenke, Heike V.", "Wenke, Heike Vogelsang-"], "preferred_name": "Vogelsang-Wenke, Heike", "variant_access_point": ["Wenke, Heike V.", "Wenke, Heike Vogelsang-"], "authorized_access_point": "Vogelsang-Wenke, Heike"} 2 -2023-07-08 08:15:40.730118 2023-07-08 10:26:30.63128 9de0bb46-d817-4f3c-a2e6-86af45015b7b {"md5": "c3d90d0893274997d9dd7ecfd07c95fd", "pid": "1145931103", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1145931103", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1145931103", "source": "GND"}], "variant_name": ["Blase, Frank"], "date_of_birth": "1963", "preferred_name": "Niermann, Frank", "variant_access_point": ["Blase, Frank, 1963-"], "authorized_access_point": "Niermann, Frank, 1963-"} 2 -2023-07-08 08:17:25.956746 2023-07-08 10:26:32.324359 a54ff775-d8cd-42f8-8624-fa0f12a7e5a5 {"md5": "f19067e187cf0301e93f6f9b0acc101f", "pid": "17027926X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/17027926X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/17027926X", "source": "GND"}], "variant_name": ["Higham, Robin D. S.", "Higham, Robin D.", "Higham, Robin David Stewart"], "date_of_birth": "20.06.1925", "date_of_death": "27.08.2015", "preferred_name": "Higham, Robin", "country_associated": "xxu", "variant_access_point": ["Higham, Robin D. S., 1925-2015", "Higham, Robin D., 1925-2015", "Higham, Robin David Stewart, 1925-2015"], "authorized_access_point": "Higham, Robin, 1925-2015", "biographical_information": ["Luftfahrt- und Militärhistoriker; 1943-1947 Pilot und Flight Sergeant in der Canadian Royal Air Force in Europa und Asien (Burma Road); Studium an der University of New Hampshire, der Harvard University und Claremont Graduate School; 1954-1957 Instructor an der University of Massachusetts; Promotion, Harvard University, 1957; Assistant Professor an der University of North Carolina; ; 1963-1999 Professor of Military History an der Kansas State University; Gründer der Sunflower University Press (1977-2005)"]} 2 -2023-07-08 08:18:11.770942 2023-07-08 10:26:33.958309 fb6b4ce5-b09d-4953-9c6b-004e12c1c825 {"md5": "48a03ad731a131984b4d1844f467934f", "pid": "958779147", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/10002272-8", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10002272-8", "source": "GND"}], "variant_name": ["Design Museum"], "preferred_name": "Thessaloniki Design Museum", "country_associated": "gr", "variant_access_point": ["Design Museum. Thessaloniki"], "authorized_access_point": "Thessaloniki Design Museum"} 2 -2023-07-08 08:16:04.895169 2023-07-08 10:26:34.848467 258bf343-1702-4edb-80c9-57148f12f8ea {"md5": "446ef784fc53f61b504cbbff3fa62fc2", "pid": "1176847597", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1176847597", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1176847597", "source": "GND"}], "variant_name": ["Dick, Benjamin Kerry"], "date_of_birth": "23.11.1955", "date_of_death": "27.03.2017", "preferred_name": "Dick, Beau", "country_associated": "xxc", "variant_access_point": ["Dick, Benjamin Kerry, 1955-2017"], "authorized_access_point": "Dick, Beau, 1955-2017", "biographical_information": ["Kanadischer indigener Maskenschnitzer, Bildhauer, Maler, Galerist und Aktivist"]} 2 -2023-07-08 08:16:17.909972 2023-07-08 10:26:42.489863 6d6b9fbe-8ff6-4c39-8c2f-dd443563f130 {"md5": "d291398310e1dd54b0a94b19dfc1d4f3", "pid": "1203731949", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1203731949", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1203731949", "source": "GND"}], "variant_name": ["Latyševa, Tatʹjana V.", "Latyševa, Tatʹjana", "Latyševa, T. V.", "Latyševa, T.", "Латышева Татьяна Васильевна"], "date_of_birth": "ca. 20./21. Jh.", "preferred_name": "Latyševa, Tatʹjana Vasilʹevna", "country_associated": "ru", "variant_access_point": ["Latyševa, Tatʹjana V., ca. 20./21. Jh.", "Latyševa, Tatʹjana, ca. 20./21. Jh.", "Latyševa, T. V., ca. 20./21. Jh.", "Latyševa, T., ca. 20./21. Jh.", "Латышева Татьяна Васильевна, ca. 20./21. Jh."], "authorized_access_point": "Latyševa, Tatʹjana Vasilʹevna, ca. 20./21. Jh."} 2 -2023-07-08 10:26:43.847674 2023-07-08 10:26:43.84769 1c005712-b442-4159-afa5-7bb7226e6935 {"md5": "fa54531ff729d950d86107d41e1e0a99", "pid": "16110522X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/16110522X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16110522X", "source": "GND"}], "preferred_name": "Reynolds, Catherine", "authorized_access_point": "Reynolds, Catherine", "biographical_information": ["lecturer in the History of Art"]} 1 -2023-07-08 08:16:46.910902 2023-07-08 10:26:45.72317 5a1d6bb4-3dc5-4b85-bfcc-e87b9ae62a23 {"md5": "62a2a75d7228de1adc84679bb4e9f2a3", "pid": "128244224", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/128244224", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128244224", "source": "GND"}], "preferred_name": "Neuhöfer, Paul", "authorized_access_point": "Neuhöfer, Paul"} 2 -2023-07-08 08:14:55.899443 2023-07-08 10:26:46.358402 83573275-ba8b-45e2-b563-89963e7e7ff6 {"md5": "b6ce9fdf2b676c972655217184f24ace", "pid": "1048228142", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1048228142", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1048228142", "source": "GND"}], "preferred_name": "Beaudet, Flavie", "country_associated": "xxc", "authorized_access_point": "Beaudet, Flavie", "biographical_information": ["Maîtrise en sciences pastorales; formatrice et coordonnatrice des stages pastoraux au Centre de Formation en Pastorale et de Spiritualité et également chargée d'enseignement aux facultés de Théologie et des Sciences humaines (2013)"]} 2 -2023-07-08 10:22:25.804579 2023-07-08 10:26:47.29005 a158b8fe-440b-437d-9e62-30fda55ab2b3 {"md5": "bff26db940d193468397ea2eccd30a37", "pid": "116348747", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/116348747", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116348747", "source": "GND"}], "date_of_birth": "09.12.1822", "date_of_death": "09.05.1882", "preferred_name": "Haase, Rudolf", "country_associated": "gw", "authorized_access_point": "Haase, Rudolf, 1822-1882"} 2 -2023-07-08 10:22:26.453784 2023-07-08 10:26:47.755602 41471f61-4cc9-4c84-9012-01871ebde8e0 {"md5": "298f64abc46c1dd3e40260f00dd3a49b", "pid": "116361816", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/116361816", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116361816", "source": "GND"}], "variant_name": ["Haemmerli-Schindler, Theodor", "Schindler, Theodor Haemmerli-"], "date_of_birth": "1883", "date_of_death": "1944", "preferred_name": "Haemmerli, Theodor", "country_associated": "sz", "variant_access_point": ["Haemmerli-Schindler, Theodor, 1883-1944", "Schindler, Theodor Haemmerli-, 1883-1944"], "authorized_access_point": "Haemmerli, Theodor, 1883-1944"} 2 -2023-07-08 08:15:15.266162 2023-07-08 10:26:50.643515 d21c3b25-5b32-4475-b7b5-8a622a44ce03 {"md5": "09c9bd2beed298ffc0454b27ba57faa4", "pid": "1086783492", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1086783492", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086783492", "source": "GND"}], "preferred_name": "Kur- und Verkehrsverein Parpan", "authorized_access_point": "Kur- und Verkehrsverein Parpan"} 2 -2023-07-08 08:16:00.349982 2023-07-08 10:26:52.420556 9ea1a590-8465-40b9-b16a-13ec0db1b7a8 {"md5": "12e540ece5fc07b6da68ed3b00ea15ce", "pid": "116830565", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/116830565", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116830565", "source": "GND"}], "preferred_name": "Greig, David", "country_associated": "xxk", "authorized_access_point": "Greig, David"} 2 -2023-07-08 08:17:20.303455 2023-07-08 10:26:54.834233 7dbb5a59-9e5e-40cc-86a7-441f3aa80bd5 {"md5": "9cb4d72464882b38400d48dc28ffb054", "pid": "143130706", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143130706", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143130706", "source": "GND"}], "variant_name": ["Denef, A."], "preferred_name": "Neve, Alex de", "variant_access_point": ["Denef, A."], "authorized_access_point": "Neve, Alex de"} 2 -2023-07-08 08:14:59.9654 2023-07-08 10:26:58.120386 1e92aca7-607c-48e9-942b-3aaa02811bbb {"md5": "702a3183e20fb7cabde02d8242efd919", "pid": "1056601809", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1056601809", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1056601809", "source": "GND"}], "variant_name": ["Lemus Romero, Samuel Bernardo"], "preferred_name": "Lemus, Samuel Bernardo", "country_associated": "mx", "variant_access_point": ["Lemus Romero, Samuel Bernardo"], "authorized_access_point": "Lemus, Samuel Bernardo", "biographical_information": ["Journalist, Chronist, Dichter"]} 2 -2023-07-08 08:15:48.409989 2023-07-08 10:26:58.60889 a1a86cce-1606-4e4b-af20-16b54e1d176a {"md5": "64d4e68bac02bcaf670260ee8d6ec720", "pid": "1157297676", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1157297676", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157297676", "source": "GND"}], "variant_name": ["Glenn, Lynda D."], "preferred_name": "Dixon Glenn, Lynda", "variant_access_point": ["Glenn, Lynda D."], "authorized_access_point": "Dixon Glenn, Lynda"} 2 -2023-07-08 10:27:00.643641 2023-07-08 10:27:00.643649 0f6704f6-07b9-45e4-89a7-5b6ca1d19268 {"md5": "16918e56703b4cea26a69b195afe5419", "pid": "117155608", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://d-nb.info/gnd/117155608", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/117155608", "source": "GND"}], "date_of_birth": "1860", "date_of_death": "1946", "preferred_name": "Loesch, Ernst", "country_associated": "gw", "authorized_access_point": "Loesch, Ernst, 1860-1946", "biographical_information": ["Dt. Maler und Schriftsteller"]} 1 -2023-07-08 08:16:40.068145 2023-07-08 10:27:01.607877 c2012a60-05bd-4acc-af03-94943f6a9edd {"md5": "d3e2eb6ded27adac6eea5f702d6276ea", "pid": "1252339607", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1252339607", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1252339607", "source": "GND"}], "variant_name": ["Proß, L."], "preferred_name": "Proß, Lukas", "country_associated": "gw", "variant_access_point": ["Proß, L."], "authorized_access_point": "Proß, Lukas", "biographical_information": ["2018: Bachelor (Physik)"]} 2 -2023-07-08 08:16:03.591379 2023-07-08 10:27:06.071798 f5917e20-c2f8-4050-aada-b2a03c7a1de1 {"md5": "2599316f161e59530eb89dc7761089f6", "pid": "117471178", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/117471178", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/117471178", "source": "GND"}], "preferred_name": "Severeanu, George", "country_associated": "rm", "authorized_access_point": "Severeanu, George"} 2 -2023-07-08 10:27:06.870652 2023-07-08 10:27:06.870661 a8f3ccbe-2ac0-445b-a8c7-30ca0229dd79 {"md5": "b5bfd98399357ac1facdb823ff98ec39", "pid": "170971325", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/170971325", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/170971325", "source": "GND"}], "variant_name": ["Parker, Ian"], "preferred_name": "Parker, Ian C.", "variant_access_point": ["Parker, Ian"], "authorized_access_point": "Parker, Ian C.", "biographical_information": ["Tätig an der Univ. of Toronto"]} 1 -2023-07-08 10:27:08.788376 2023-07-08 10:27:08.788384 9efb710b-90db-47bb-af7f-9082262bf9d8 {"md5": "63a1b1c6554eb0cbdd07142ad166cd44", "pid": "120539544X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/120539544X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120539544X", "source": "GND"}], "variant_name": ["Cadwaladr, Margaret I."], "date_of_birth": "1949", "preferred_name": "Cadwaladr, Margaret", "country_associated": "xxc", "variant_access_point": ["Cadwaladr, Margaret I., 1949-"], "authorized_access_point": "Cadwaladr, Margaret, 1949-"} 1 -2023-07-08 08:16:10.88543 2023-07-08 10:27:11.302705 c6e8d3a1-4c66-46ed-a108-1e963ceb336f {"md5": "031327927ec80ff83762254a0291ab2d", "pid": "118995316", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/118995316", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/118995316", "source": "GND"}], "variant_name": ["Sheils Makowski, Brigid"], "date_of_birth": "1937", "preferred_name": "Makowski, Brigid S.", "country_associated": "ie", "variant_access_point": ["Sheils Makowski, Brigid, 1937-"], "authorized_access_point": "Makowski, Brigid S., 1937-", "biographical_information": ["Nordir. Revolutionärin"]} 2 -2023-07-08 10:22:30.521061 2023-07-08 10:27:13.08546 d506f33e-1b9e-427b-9a48-91549b2790eb {"md5": "953af58cf1952f1c8b3221bd15de7b85", "pid": "1087157226", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1087157226", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087157226", "source": "GND"}], "variant_name": ["Nanjing daxue lishixi kaogu zhuanye", "Nanjing University. Faculty of History. Archaeology Department", "Archaeology Department, Faculty of History, Nanjing University", "南京大學. 歷史系. 考古專業", "南京大學歷史系考古專業"], "preferred_name": "Nanjing daxue. lishixi. kaogu zhuanye", "country_associated": "cc", "variant_access_point": ["Nanjing daxue lishixi kaogu zhuanye", "Nanjing University. Faculty of History. Archaeology Department", "Archaeology Department, Faculty of History, Nanjing University", "南京大學. 中國. 歷史系. 考古專業", "南京大學歷史系考古專業"], "parallel_access_point": ["南京大学. 中国. 历史系. 考古专业"], "authorized_access_point": "Nanjing daxue. lishixi. kaogu zhuanye"} 2 -2023-07-08 10:27:14.527116 2023-07-08 10:27:14.527127 481c655d-6cda-4580-a044-f61d7425a4ce {"md5": "ad140ee3f658cf066dc40f9ec3eed640", "pid": "119552914", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/119552914", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/119552914", "source": "GND"}], "date_of_birth": "1875", "date_of_death": "1949", "preferred_name": "Schiavazzi, Piero", "country_associated": "it", "authorized_access_point": "Schiavazzi, Piero, 1875-1949"} 1 -2023-07-08 08:16:15.656476 2023-07-08 10:27:16.054073 75953671-6e16-4906-a438-0d59a8e92151 {"md5": "cbabdb2000e206e60d627199226bdaf5", "pid": "11982387X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/11982387X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/11982387X", "source": "GND"}], "variant_name": ["Schottelius, Johannes"], "preferred_name": "Schottel, Johannes", "variant_access_point": ["Schottelius, Johannes"], "authorized_access_point": "Schottel, Johannes", "biographical_information": ["Beitr. im VD-16"]} 2 -2023-07-08 08:15:04.504942 2023-07-08 10:27:16.615427 219b3f39-5c80-4c2b-9996-fd4dd55f2d1d {"md5": "5e80f447f80227febf63f915fccd45be", "pid": "1077501706", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1077501706", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1077501706", "source": "GND"}], "preferred_name": "Gunnlaugson, Olen", "country_associated": "xxc", "authorized_access_point": "Gunnlaugson, Olen"} 2 -2023-07-08 10:27:17.590798 2023-07-08 10:27:17.590804 0bc7a43e-2978-43ce-bfbb-64c264460b41 {"md5": "f22e60dfa8ac727441a81155fae281d5", "pid": "1019500344", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1019500344", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1019500344", "source": "GND"}], "preferred_name": "Routon, Kenneth", "authorized_access_point": "Routon, Kenneth", "biographical_information": ["Ass. professor of cultural anthropology at the Univ. of New Orleans"]} 1 -2023-07-08 10:27:18.563636 2023-07-08 10:27:18.563649 bc8a5759-5525-4c43-a73f-0c92f38bc64f {"md5": "33a8950e61a2b7100f237ccdf4d2fcb8", "pid": "1178017486", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1178017486", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1178017486", "source": "GND"}], "variant_name": ["Hjarl Petersen, Jane"], "preferred_name": "Petersen, Jane Hjarl", "country_associated": "dk", "variant_access_point": ["Hjarl Petersen, Jane"], "authorized_access_point": "Petersen, Jane Hjarl"} 1 -2023-07-08 10:22:31.767294 2023-07-08 10:27:19.084803 1c0ff1f8-9740-42b1-84e1-15cb603de324 {"md5": "27b518bf423dffe30bd68dd53ca82791", "pid": "1207474568", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1207474568", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1207474568", "source": "GND"}], "variant_name": ["Kuehl, Sheila James"], "date_of_birth": "1941", "preferred_name": "Kuehl, Sheila", "country_associated": "xxu", "variant_access_point": ["Kuehl, Sheila James, 1941-"], "authorized_access_point": "Kuehl, Sheila, 1941-"} 2 -2023-07-08 10:27:19.942257 2023-07-08 10:27:19.942266 1c638617-b1c7-4451-a62c-cc07fa60af33 {"md5": "5602da526789011da6de4662881e8aa0", "pid": "107441148X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/107441148X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/107441148X", "source": "GND"}], "variant_name": ["Diaz, Janet Winecoff", "Winecoff Diaz, Janet"], "preferred_name": "Diaz, Janet", "variant_access_point": ["Diaz, Janet Winecoff", "Winecoff Diaz, Janet"], "authorized_access_point": "Diaz, Janet"} 1 -2023-07-08 10:27:22.222572 2023-07-08 10:27:22.222581 ff13d114-3bff-4168-8306-17d357e25e1a {"md5": "836fb10ec6b8b83f2b041b593a7652db", "pid": "1249217156", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1249217156", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1249217156", "source": "GND"}], "preferred_name": "Douglas, Claire", "country_associated": "xxu", "authorized_access_point": "Douglas, Claire", "biographical_information": ["Psychologue clinicienne et psychanalyste jungienne. - Membre de : C. G. Jung society of Southern California, Los Angeles, Calif., États-Unis (en 1997)."]} 1 -2023-07-08 08:16:18.672028 2023-07-08 10:27:23.958774 ed684c51-dc3f-43a8-aed7-d5a8bf51ab6c {"md5": "29dd38703b4d1b19c39621107e1f42a0", "pid": "120554682", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/120554682", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120554682", "source": "GND"}], "date_of_birth": "1970", "preferred_name": "Lange, Bastian", "country_associated": "gw", "authorized_access_point": "Lange, Bastian, 1970-", "biographical_information": ["tätig am Leibniz-Institut for Regional Geography, Leipzig, Germany; Schwerpunkte: Kreativwirtschaft, Governancefragen, Innovationsprozesse, Raumentwicklung"]} 2 -2023-07-08 10:27:25.233857 2023-07-08 10:27:25.233869 0774bb7b-bb86-4a3d-b9a8-1e87d7d70d5b {"md5": "5cb66f2ea01cc0678c90e63af6974697", "pid": "172316480", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/172316480", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172316480", "source": "GND"}], "variant_name": ["Parker, Gordon Barraclough"], "date_of_birth": "1942", "preferred_name": "Parker, Gordon", "country_associated": "at", "variant_access_point": ["Parker, Gordon Barraclough, 1942-"], "authorized_access_point": "Parker, Gordon, 1942-", "biographical_information": ["Prof. für Psychiatrie"]} 1 -2023-07-08 10:27:33.634781 2023-07-08 10:27:33.634787 516952f2-efe9-44f1-87bc-9c259ed1832c {"md5": "0b9c14d73a4634003adaaa28a4ef9cbf", "pid": "1270306960", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1270306960", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1270306960", "source": "GND"}], "date_of_birth": "1966", "preferred_name": "Fiedrich, Frank", "country_associated": "gw", "authorized_access_point": "Fiedrich, Frank, 1966-", "biographical_information": ["Studium des Wirtschaftsingenieurwesens; Promotion an der TH Karlsruhe; Professor an der Bergischen Universität Wuppertal, Fakultät für Maschinenbau und Sicherheitstechnik.- Forschungsschwerpunkte: Sicheheitstechnik, Katastrophen- und Bevölkerungsschutz.-"]} 1 -2023-07-08 08:17:08.78909 2023-07-08 10:27:34.470591 cfeaf9c5-5e12-4b88-9078-f1f4f5b51d34 {"md5": "a73bd0b0456770371911c2c8bb80d9d5", "pid": "14046090X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/14046090X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14046090X", "source": "GND"}], "date_of_birth": "1981", "preferred_name": "Allermann, Lars", "authorized_access_point": "Allermann, Lars, 1981-", "biographical_information": ["Diss. Technische Universität Kaiserslautern, Fachbereich Mathematik"]} 2 -2023-07-08 10:27:39.276887 2023-07-08 10:27:39.276898 f23fd0bd-dc01-420e-a427-94926ff3c3b3 {"md5": "7bb85e7a99b0907eb3880e66c1645149", "pid": "1226111009", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1226111009", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1226111009", "source": "GND"}], "date_of_birth": "1981", "preferred_name": "Boseckert, Christian", "country_associated": "gw", "authorized_access_point": "Boseckert, Christian, 1981-", "biographical_information": ["2. Vorsitzender der Historischen Gesellschaft Coburg. Seit 2020 Stadtheimatpfleger von Coburg; Dissertation an der Philosophischen Fakultät der Uni Würzburg (2019)"]} 1 -2023-07-08 08:16:27.521329 2023-07-08 10:27:40.200305 749ec89c-aa74-4c67-a4bd-0770751892dd {"md5": "a61c5a4bd7c417af3be0114878743c69", "pid": "122244958", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/122244958", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/122244958", "source": "GND"}], "variant_name": ["Reno, Kym"], "date_of_birth": "1940", "preferred_name": "Tschauder, Gunter", "country_associated": "gw", "variant_access_point": ["Reno, Kym, 1940-"], "authorized_access_point": "Tschauder, Gunter, 1940-", "biographical_information": ["Völklingen (Wirkungsort); Dt. Schriftsteller, Manager sowie Verkaufs- und Managementtrainer"]} 2 -2023-07-08 10:27:41.693862 2023-07-08 10:27:41.693875 abc23e87-9d26-4c75-9288-12f7cfe7977b {"md5": "ac932d7add017cfac8c30262f5022cc7", "pid": "140553533", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140553533", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140553533", "source": "GND"}], "date_of_birth": "1590", "date_of_death": "1655", "preferred_name": "Vernazza, Livia", "country_associated": "it", "authorized_access_point": "Vernazza, Livia, 1590-1655", "biographical_information": ["Ehefrau von Giovanni de' Medici (1567-1621)"]} 1 -2023-07-08 08:14:56.675525 2023-07-08 10:27:44.039809 aa22d259-1548-4ec1-9e84-785cd7a05401 {"md5": "3b02b4a3447306c002adf01b5edebb53", "pid": "1051412552", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1051412552", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1051412552", "source": "GND"}], "variant_name": ["Serventy, Dominic", "Serventy, Dominic L.", "Serventy, D. L."], "date_of_birth": "1904", "date_of_death": "1988", "preferred_name": "Serventy, Dominic Louis", "country_associated": "at", "variant_access_point": ["Serventy, Dominic, 1904-1988", "Serventy, Dominic L., 1904-1988", "Serventy, D. L., 1904-1988"], "authorized_access_point": "Serventy, Dominic Louis, 1904-1988", "biographical_information": ["Vollständiger Vorname: Dominic Louis"]} 2 -2023-07-08 08:16:37.578435 2023-07-08 10:27:46.359043 24737a00-adc2-49c8-a168-bda59e96020e {"md5": "3e817210781d575044ee3512811f7d81", "pid": "124566025X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/124566025X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124566025X", "source": "GND"}], "variant_name": ["Ito, Ayumi", "伊藤歩"], "date_of_birth": "14.04.1980", "preferred_name": "Itō, Ayumi", "country_associated": "ja", "variant_access_point": ["Ito, Ayumi, 1980-", "伊藤歩, 1980-"], "parallel_access_point": ["伊藤, 歩, 1980-"], "authorized_access_point": "Itō, Ayumi, 1980-"} 2 -2023-07-08 08:15:56.207579 2023-07-08 10:27:46.930425 604929a5-e1f3-4723-aabc-00d2d2c88181 {"md5": "12efeae73342dc82be9e006a9ea79d0a", "pid": "116144131X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/116144131X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116144131X", "source": "GND"}], "date_of_birth": "1981", "preferred_name": "Reznick, Graham", "country_associated": "xxu", "authorized_access_point": "Reznick, Graham, 1981-"} 2 -2023-07-08 10:22:37.450066 2023-07-08 10:27:47.390182 0a066385-aace-4a9d-a7ba-a9ecf67bcc41 {"md5": "7ebc804befc7f3b0bfe3dcb124e74da3", "pid": "1245874098", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1245874098", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1245874098", "source": "GND"}], "preferred_name": "Elz, Jutta", "country_associated": "gw", "authorized_access_point": "Elz, Jutta"} 2 -2023-07-08 10:27:48.33173 2023-07-08 10:27:48.331736 96d2734e-6b09-4fe5-b708-05f8b40f1a2e {"md5": "62a8d96738213282e8ed06e3e5be2343", "pid": "1140439618", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1140439618", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1140439618", "source": "GND"}], "date_of_birth": "1982", "preferred_name": "Hinojos, Mario", "country_associated": "mx", "authorized_access_point": "Hinojos, Mario, 1982-"} 1 -2023-07-08 10:22:37.871027 2023-07-08 10:27:48.792783 af3496c2-fc1f-4047-8fc3-7af11a7558f2 {"md5": "d38fc1e582ee5056d26f248ef933be26", "pid": "12307374X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/12307374X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12307374X", "source": "GND"}], "date_of_death": "1580", "preferred_name": "Massa, Baldassare de", "country_associated": "it", "authorized_access_point": "Massa, Baldassare de, -1580"} 2 -2023-07-08 10:27:52.790345 2023-07-08 10:27:52.790356 0374a752-7419-4404-ab31-02c19da0e9aa {"md5": "75d0653948862373c2b5617dab7ff992", "pid": "133999912", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/133999912", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133999912", "source": "GND"}], "variant_name": ["Batissier, L.", "Batissier, Yves Louis Joseph", "Batissier, Yves-Louis-Joseph"], "date_of_birth": "1813", "date_of_death": "1882", "preferred_name": "Batissier, Louis", "country_associated": "fr", "variant_access_point": ["Batissier, L., 1813-1882", "Batissier, Yves Louis Joseph, 1813-1882", "Batissier, Yves-Louis-Joseph, 1813-1882"], "authorized_access_point": "Batissier, Louis, 1813-1882", "biographical_information": ["Inspecteur de monuments historiques de l'Allier. - Chargé de mission en Grèce, Syrie et Asie Mineure. - Vice-consul de France à Suez"]} 1 -2023-07-08 10:27:54.693489 2023-07-08 10:27:54.693492 32a692ef-67ce-4fbb-8db5-05661db6df90 {"md5": "cc3e167883f06fc05764ba6011041ea3", "pid": "123954940", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/123954940", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/123954940", "source": "GND"}], "date_of_birth": "1956", "date_of_death": "1994", "preferred_name": "Rákos, Petr", "authorized_access_point": "Rákos, Petr, 1956-1994", "biographical_information": ["Tschech. Schriftsteller"]} 1 -2023-07-08 08:17:09.67902 2023-07-08 10:27:56.595031 df42cee3-7b29-4b4b-9748-b671f0ce9a24 {"md5": "d4000c08279d01601bcb161a7efc4d2a", "pid": "140723269", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "qualifier": "Crespi", "identifier": "http://d-nb.info/gnd/140723269", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140723269", "source": "GND"}], "variant_name": ["Lleonard, Crespi", "Crespi, Leonardo", "Crespi, Lleonard", "Crespi, Leonart"], "preferred_name": "Leonardo, Crespi", "country_associated": "sp", "variant_access_point": ["Lleonard, Crespi", "Crespi, Leonardo", "Crespi, Lleonard", "Crespi, Leonart"], "authorized_access_point": "Leonardo, Crespi"} 2 -2023-07-08 08:16:35.836235 2023-07-08 10:27:58.77638 089966f0-c3e9-467f-b16b-a77f527b6213 {"md5": "4c8005fcc684ec9d15ade1233e067df5", "pid": "124271057", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/124271057", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124271057", "source": "GND"}], "date_of_birth": "1929", "preferred_name": "Echevarría, Fernando", "country_associated": "po", "authorized_access_point": "Echevarría, Fernando, 1929-", "biographical_information": ["Portug. Lyriker"]} 2 -2023-07-08 10:28:03.483263 2023-07-08 10:28:03.48327 f0fe609f-c778-4f1f-af91-aecffb8b831e {"md5": "bce291a2fc407ec2b928c53f42ce0585", "pid": "14085200X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/14085200X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14085200X", "source": "GND"}], "variant_name": ["Jennex, Murray", "Jennex, Murray Eugene"], "date_of_birth": "1956", "preferred_name": "Jennex, Murray E.", "country_associated": "xxu", "variant_access_point": ["Jennex, Murray, 1956-", "Jennex, Murray Eugene, 1956-"], "authorized_access_point": "Jennex, Murray E., 1956-", "biographical_information": ["Präsident der Foundation for Knowledge Management"]} 1 -2023-07-08 10:28:04.384034 2023-07-08 10:28:04.38404 9c0e8330-2148-4c65-8ec4-0d9734d22112 {"md5": "ba4bd5c2a7e2ddd59b1664cd6a9c0a37", "pid": "14085603X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/14085603X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14085603X", "source": "GND"}], "variant_name": ["Figarova, Sophia", "Figarova, S. R.", "Figarova, S."], "preferred_name": "Figarova, Sophia R.", "country_associated": "aj", "variant_access_point": ["Figarova, Sophia", "Figarova, S. R.", "Figarova, S."], "authorized_access_point": "Figarova, Sophia R."} 1 -2023-07-08 08:17:10.776455 2023-07-08 10:28:05.775011 00703289-7ad0-42a4-b6f6-71e70fd10003 {"md5": "4b6ad0eaa070f97f534574efa2d41e24", "pid": "140897933", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/140897933", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140897933", "source": "GND"}], "variant_name": ["Arctander, Aug."], "date_of_birth": "1818", "date_of_death": "1878", "preferred_name": "Arctander, August Hjeronimus", "country_associated": "sw", "variant_access_point": ["Arctander, Aug., 1818-1878"], "authorized_access_point": "Arctander, August Hjeronimus, 1818-1878"} 2 -2023-07-08 08:16:07.128015 2023-07-08 10:28:08.571276 24dbcc8c-d994-455d-82b5-3987b0f04dda {"md5": "3911b9c4faaf58e952ed484b5df29e17", "pid": "1183057687", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1183057687", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1183057687", "source": "GND"}], "preferred_name": "Meyer, Susanna", "country_associated": "sz", "authorized_access_point": "Meyer, Susanna"} 2 -2023-07-08 08:16:39.411448 2023-07-08 10:28:09.055589 b89a2e15-6153-41ec-8145-08ce285c33fa {"md5": "fb1826af8f302b205ff080f37d45c334", "pid": "125037988", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/125037988", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/125037988", "source": "GND"}], "date_of_birth": "1908", "preferred_name": "Halperin, Natalie", "country_associated": "ru", "authorized_access_point": "Halperin, Natalie, 1908-"} 2 -2023-07-08 08:14:37.607373 2023-07-08 10:28:10.136531 d3151411-fc1d-4b03-95d8-41b93ec6dab8 {"md5": "a9fd370aca46c1590403d47bf58368d5", "pid": "1011449145", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1011449145", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1011449145", "source": "GND"}], "date_of_birth": "1971", "preferred_name": "Kay, Tamara", "country_associated": "xxu", "authorized_access_point": "Kay, Tamara, 1971-"} 2 -2023-07-08 10:22:42.92085 2023-07-08 10:28:12.202755 a5914e27-f7a2-45a0-bd18-03394cfc32a0 {"md5": "47eebad912fec8168f59e899606fa8da", "pid": "141801689", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141801689", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141801689", "source": "GND"}], "preferred_name": "Pārsā, Mānī", "parallel_access_point": ["پارسا, مانى"], "authorized_access_point": "Pārsā, Mānī"} 2 -2023-07-08 08:16:53.9355 2023-07-08 10:29:49.132539 e93dc5c7-64b5-4f31-8b4a-a35b9e112c4b {"md5": "d505e0d1b433786b2f1e26443c6660b3", "pid": "132825198", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/132825198", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/132825198", "source": "GND"}], "preferred_name": "Brocket, Ralph Grover", "country_associated": "xxu", "authorized_access_point": "Brocket, Ralph Grover"} 2 -2023-07-08 10:28:13.124089 2023-07-08 10:28:13.124093 0c56675b-3699-4e21-8058-4e2bda8e7a1e {"md5": "991a32b59147706e3994090de8419fe8", "pid": "1064724876", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1064724876", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1064724876", "source": "GND"}], "preferred_name": "Saul, Matthew", "country_associated": "xxk", "authorized_access_point": "Saul, Matthew", "biographical_information": ["PhD, University of Sheffield, 2009. Post-doctoral research fellow on the European Research Council (ERC) funded MultiRights project, University of Oslo, Norway, February 2013-. Lecturer in law, Durham Universtiy, 2008-2013"]} 1 -2023-07-08 10:28:14.191649 2023-07-08 10:28:14.191652 bfaea4eb-b29e-49c5-9937-13dbcfb212c5 {"md5": "48552eb55b4ae17ceededc48f6f7c8d0", "pid": "1211358380", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1211358380", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1211358380", "source": "GND"}], "preferred_name": "Kölling, Mario", "country_associated": "sp", "authorized_access_point": "Kölling, Mario"} 1 -2023-07-08 08:15:36.828281 2023-07-08 10:28:15.363389 c202b0ad-93c4-4607-b6e8-c6b1f37c56a7 {"md5": "9e0ef639a6331c700ffb8c934f6f9e34", "pid": "1139400851", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1139400851", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1139400851", "source": "GND"}], "date_of_birth": "1966", "preferred_name": "Lapp, Axel", "country_associated": "gw", "authorized_access_point": "Lapp, Axel, 1966-"} 2 -2023-07-08 10:28:17.136074 2023-07-08 10:28:17.136092 60c85ce2-bede-4215-9834-b4571c4d7350 {"md5": "dc5553e80ec0fd7e93378bba260811a4", "pid": "128174889", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/128174889", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128174889", "source": "GND"}], "preferred_name": "Lindblad, Waldemar", "authorized_access_point": "Lindblad, Waldemar"} 1 -2023-07-08 10:28:19.342143 2023-07-08 10:28:19.34217 f4e3798b-970d-482f-b0ed-af561c613c24 {"md5": "15297f1b4f59e1d5d6c45a3a324c301a", "pid": "125668465", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/125668465", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/125668465", "source": "GND"}], "preferred_name": "Kretzschmar, Serge", "authorized_access_point": "Kretzschmar, Serge"} 1 -2023-07-08 08:17:31.286619 2023-07-08 10:28:24.797343 b342e9d2-0456-4dd3-ac2c-1849caf7e7c2 {"md5": "27fabadc884cf02c36db5df0d176e7b5", "pid": "173120016", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/173120016", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173120016", "source": "GND"}], "date_of_birth": "1924", "date_of_death": "2015", "preferred_name": "Hashimoto, Yoshihiko", "country_associated": "ja", "parallel_access_point": ["橋本, 義彦, 1924-2015"], "authorized_access_point": "Hashimoto, Yoshihiko, 1924-2015"} 2 -2023-07-08 10:28:26.035258 2023-07-08 10:28:26.035262 e64b40b5-fb9c-433b-b57e-9ddc15df3fb5 {"md5": "eca5fc5aa8a03253fe4629eb103af81e", "pid": "119464942", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/119464942", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/119464942", "source": "GND"}], "variant_name": ["Solsberi, Garrison E.", "Solsberi, Garrison", "Salisbury, Garrison E.", "Salisbury, Harrison Evans", "Salisbury, Harrison"], "date_of_birth": "14.11.1908", "date_of_death": "05.07.1993", "preferred_name": "Salisbury, Harrison E.", "country_associated": "xxu", "variant_access_point": ["Solsberi, Garrison E., 1908-1993", "Solsberi, Garrison, 1908-1993", "Salisbury, Garrison E., 1908-1993", "Salisbury, Harrison Evans, 1908-1993", "Salisbury, Harrison, 1908-1993"], "authorized_access_point": "Salisbury, Harrison E., 1908-1993", "biographical_information": ["Amerikan. Journalist"]} 1 -2023-07-08 08:16:14.453429 2023-07-08 10:28:26.904797 0995fbf2-f528-47c0-a8c4-751ba5e4c0a3 {"md5": "21fdd81bcac6a6596e32e4e0b6ec0cc0", "pid": "119499363", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/119499363", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/119499363", "source": "GND"}], "date_of_birth": "1914", "date_of_death": "1994", "preferred_name": "Cullen, Gordon", "country_associated": "xxk", "authorized_access_point": "Cullen, Gordon, 1914-1994", "biographical_information": ["Engl. Architekt u. Städtebauer", "Architekt, Grossbritannien"]} 2 -2023-07-08 08:15:39.329462 2023-07-08 10:28:30.012003 2b420908-7ceb-4d70-8c8e-cb8fa5f3ef66 {"md5": "2ef37fda3acda4d2a8ad65fd38d74d53", "pid": "1145375154", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1145375154", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1145375154", "source": "GND"}], "date_of_birth": "1931", "preferred_name": "Echard, William E.", "authorized_access_point": "Echard, William E., 1931-"} 2 -2023-07-08 08:16:50.784054 2023-07-08 10:28:32.127658 55350ffc-b4fe-45b7-97d4-8f757bdd2621 {"md5": "c59074d956f18b71c6b1f1a106c8a1f4", "pid": "130124648", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/130124648", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/130124648", "source": "GND"}], "variant_name": ["Ihori, T."], "date_of_birth": "1952", "preferred_name": "Ihori, Toshihiro", "country_associated": "ja", "variant_access_point": ["Ihori, T., 1952-"], "parallel_access_point": ["井堀, 利宏, 1952-"], "authorized_access_point": "Ihori, Toshihiro, 1952-", "biographical_information": ["National Gradual Institite for Policy Studies, Minato-ku, Tokyo", "Department of Economics, Metropolitan University, Tokyo", "Graduate School of Economics, University of Tokyo"]} 2 -2023-07-08 10:28:33.021344 2023-07-08 10:28:33.021361 3ea3268f-7dfd-4d55-b8c2-e6d69e185b74 {"md5": "1f0fe0d3970611bdb0a9ea66f527f87a", "pid": "12473409X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/12473409X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12473409X", "source": "GND"}], "variant_name": ["Pestieau, Pierre Marie", "Pestieau, P.", "Pestiau, Pierre", "Pestieau, Pierre M.", "Pesteau, Pierre"], "date_of_birth": "10.09.1943", "preferred_name": "Pestieau, Pierre", "country_associated": "be", "variant_access_point": ["Pestieau, Pierre Marie, 1943-", "Pestieau, P., 1943-", "Pestiau, Pierre, 1943-", "Pestieau, Pierre M., 1943-", "Pesteau, Pierre, 1943-"], "parallel_access_point": ["Pestieau, Pierre, 1943-"], "authorized_access_point": "Pestieau, Pierre, 1943-", "biographical_information": ["TSE, Belgien", "Tätig am CREPP, HEC-Management School, University of Liège", "Belgischer Wirtschaftswissenschaftler, auch in den USA und Großbritannien tätig"]} 1 -2023-07-08 08:16:16.258066 2023-07-08 10:28:33.571327 2d265c5a-0e6e-405a-98cd-eab37279d9db {"md5": "cac0cdff0b4d152ebee4c3e31955f0de", "pid": "1199967009", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifier": "http://d-nb.info/gnd/1199967009", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1199967009", "source": "GND"}], "variant_name": ["Türkiye-Ukrayna Karşılaştırmalı Ceza Hukuku Sempozyumu", "Symposium für den Türkisch-Ukrainischen Strafrechtsvergleich"], "preferred_name": "Turkey-Ukraine Comparative Criminal Law Symposium", "country_associated": "tu", "variant_access_point": ["Türkiye-Ukrayna Karşılaştırmalı Ceza Hukuku Sempozyumu, 2011, Istanbul", "Symposium für den Türkisch-Ukrainischen Strafrechtsvergleich, 2011, Istanbul"], "authorized_access_point": "Turkey-Ukraine Comparative Criminal Law Symposium, 2011, Istanbul"} 2 -2023-07-08 10:28:34.327284 2023-07-08 10:28:34.327301 9b2323a6-e598-4d73-8fce-d5b64036ec62 {"md5": "4e0bab3301b83037e4e1cd43649e1707", "pid": "142514926", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/142514926", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142514926", "source": "GND"}], "date_of_birth": "1930", "preferred_name": "Eguchi, Masahiro", "country_associated": "ja", "parallel_access_point": ["江口, 正弘, 1930-"], "authorized_access_point": "Eguchi, Masahiro, 1930-"} 1 -2023-07-08 08:15:00.481472 2023-07-08 10:28:36.062623 45dc0cde-7d6e-4386-b5f2-9c4b5f5129f9 {"md5": "758a076473c01e0991f42e95770fa456", "pid": "1057324841", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1057324841", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1057324841", "source": "GND"}], "variant_name": ["Ballivián Roxas, Vicente de", "Ballivián y Rojas, Vicente de", "Ballivián y Roxas, Vicente de", "Roxas, Vicente de Ballivián y"], "date_of_birth": "1810", "date_of_death": "1891", "preferred_name": "Ballivián Rojas, Vicente de", "country_associated": "bo", "variant_access_point": ["Ballivián Roxas, Vicente de, 1810-1891", "Ballivián y Rojas, Vicente de, 1810-1891", "Ballivián y Roxas, Vicente de, 1810-1891", "Roxas, Vicente de Ballivián y, 1810-1891"], "authorized_access_point": "Ballivián Rojas, Vicente de, 1810-1891", "biographical_information": ["Historiker u. Diplomat"]} 2 -2023-07-08 08:17:33.342797 2023-07-08 10:28:36.971861 7e10f0d1-66a9-4ed3-a7d5-0bfe4e1334b5 {"md5": "7d82efea056eede980fa631f273e130d", "pid": "178767875", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/178767875", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/178767875", "source": "GND"}], "variant_name": ["Luchuanfanglang", "Luchuan, Fanglang"], "date_of_birth": "27.08.1931", "preferred_name": "Togawa, Yoshio", "country_associated": "ja", "variant_access_point": ["Luchuanfanglang, 1931-", "Luchuan, Fanglang, 1931-"], "parallel_access_point": ["戸川, 芳郎, 1931-"], "authorized_access_point": "Togawa, Yoshio, 1931-"} 2 -2023-07-08 10:28:39.273386 2023-07-08 10:28:39.273399 27ae9bb3-d482-46c7-ac4f-8daa34df0028 {"md5": "17a97fad8f52871e42daf765abc337f5", "pid": "115830324", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/115830324", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/115830324", "source": "GND"}], "variant_name": ["Stern, Günther"], "date_of_birth": "1922", "preferred_name": "Stern, Guy", "country_associated": "gw", "variant_access_point": ["Stern, Günther, 1922-"], "authorized_access_point": "Stern, Guy, 1922-"} 1 -2023-07-08 08:15:51.814164 2023-07-08 10:28:40.334849 95042856-7c5a-4acf-bad6-cba6dfbe3e5e {"md5": "0101517cdefb409e0cf7ed42615701e0", "pid": "1158559259", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1158559259", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158559259", "source": "GND"}], "variant_name": ["Otto, Ursula"], "preferred_name": "Schulze, Ursula", "country_associated": "gw", "variant_access_point": ["Otto, Ursula"], "authorized_access_point": "Schulze, Ursula", "biographical_information": ["Diss. med. Marburg 1967"]} 2 -2023-07-08 08:16:55.897715 2023-07-08 10:28:41.262889 b0bf4007-bfcb-4fb0-a8a8-be21a2680dd7 {"md5": "622025a62ec73f53e08ec8b9bc9f27ca", "pid": "133315681", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/133315681", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133315681", "source": "GND"}], "date_of_birth": "1949", "preferred_name": "Aronoff, Mark", "country_associated": "xxu", "authorized_access_point": "Aronoff, Mark, 1949-"} 2 -2023-07-08 08:17:01.333411 2023-07-08 10:28:42.263411 ce73781a-7351-40c8-a883-8b2181f9d4de {"md5": "6d3fd0ce06b7f1ae7b9edd1df7f52c40", "pid": "136417582", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/136417582", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/136417582", "source": "GND"}], "variant_name": ["Brown, Jonathan Mayer", "Brown, Jonathan M."], "date_of_birth": "1939", "preferred_name": "Brown, Jonathan", "country_associated": "xxu", "variant_access_point": ["Brown, Jonathan Mayer, 1939-", "Brown, Jonathan M., 1939-"], "parallel_access_point": ["Brown, Jonathan, 1939-"], "authorized_access_point": "Brown, Jonathan, 1939-", "biographical_information": ["Carroll and Milton Petrie Professor am Institute of Fine Arts, New York University; Forschungsbereiche: History of Spanish art, 1500-1800; colonial Latin American art; history of art collecting"]} 2 -2023-07-08 10:28:44.100282 2023-07-08 10:28:44.100297 5045ec58-ec5c-491e-b2f4-d032ed21fdc2 {"md5": "bdcce0e2349b5d792094dd7c958d6cb4", "pid": "156719029", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/156719029", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/156719029", "source": "GND"}], "preferred_name": "Hurst, R. C.", "authorized_access_point": "Hurst, R. C."} 1 -2023-07-08 10:28:45.150236 2023-07-08 10:28:45.150248 681cb3e4-650d-446f-8107-0224587f03b6 {"md5": "70b3f7a4826b2a7110824990456eec88", "pid": "1199011495", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1199011495", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1199011495", "source": "GND"}], "variant_name": ["Gallahue, David"], "date_of_birth": "1943", "preferred_name": "Gallahue, David L.", "country_associated": "xxu", "variant_access_point": ["Gallahue, David, 1943-"], "authorized_access_point": "Gallahue, David L., 1943-", "biographical_information": ["Über 40 Jahre lang beschäftigte er sich mit den angewandten Aspekten der motorischen Entwicklung und des Erlernens von Bewegungsfähigkeiten bei Kleinkindern und Jugendlichen in körperlichen Aktivitäten und Sportumgebungen"]} 1 -2023-07-08 08:15:38.229689 2023-07-08 10:28:46.050896 fc3392d4-46b3-4df7-8bdc-189b26bf49a4 {"md5": "daac91667109446443ec7de73fa9f6e9", "pid": "11425172X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/11425172X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/11425172X", "source": "GND"}], "variant_name": ["Aiken, Lewis"], "date_of_birth": "1931", "preferred_name": "Aiken, Lewis R.", "country_associated": "xxu", "variant_access_point": ["Aiken, Lewis, 1931-"], "authorized_access_point": "Aiken, Lewis R., 1931-"} 2 -2023-07-08 08:17:31.432643 2023-07-08 10:28:46.931648 5f51a8b5-49e8-45b0-b148-bfb4399d48a5 {"md5": "af5e22e7ea0253f11b1ef2255b0ec97b", "pid": "17326851X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/17326851X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/17326851X", "source": "GND"}], "variant_name": ["清水昭俊"], "date_of_birth": "1942", "preferred_name": "Shimizu, Akitoshi", "country_associated": "ja", "variant_access_point": ["清水昭俊, 1942-"], "parallel_access_point": ["清水, 昭俊, 1942-"], "authorized_access_point": "Shimizu, Akitoshi, 1942-", "biographical_information": ["Japan. Anthropologe"]} 2 -2023-07-08 08:15:39.229247 2023-07-08 10:28:49.792236 4ec2268d-4d95-4252-9241-d5aafa8d0e16 {"md5": "6a3564316909f36a696194de7c9e8d9b", "pid": "114535601X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/114535601X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/114535601X", "source": "GND"}], "variant_name": ["Bhatt, Anil", "Bhatt, Anil H."], "date_of_birth": "1937", "preferred_name": "Bhatt, Anil H.", "country_associated": "ii", "variant_access_point": ["Bhatt, Anil, 1937-", "Bhatt, Anil H., 1937-"], "authorized_access_point": "Bhatt, Anil H., 1937-", "biographical_information": ["Chicago, Univ., Diss."]} 2 -2023-07-08 10:28:51.619949 2023-07-08 10:28:51.619962 ed43a064-5482-400e-b2e6-f82f4d4a92d8 {"md5": "f96f34f7ae82824b8049c654802edf31", "pid": "120756455", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/120756455", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120756455", "source": "GND"}], "variant_name": ["Rotta, julius Karl", "Rotta, J.", "Rotta, J. C.", "Rotta, J.-C.", "Rotta, Julius", "Rotta, Julius Christian", "Rotta, Julius-Christian", "Rotta, Julius Carl"], "date_of_birth": "01.01.1912", "date_of_death": "14.03.2005", "preferred_name": "Rotta, Julius C.", "country_associated": "gw", "variant_access_point": ["Rotta, julius Karl, 1912-2005", "Rotta, J., 1912-2005", "Rotta, J. C., 1912-2005", "Rotta, J.-C., 1912-2005", "Rotta, Julius, 1912-2005", "Rotta, Julius Christian, 1912-2005", "Rotta, Julius-Christian, 1912-2005", "Rotta, Julius Carl, 1912-2005"], "authorized_access_point": "Rotta, Julius C., 1912-2005", "biographical_information": ["Physiker, BRD"]} 1 -2023-07-08 10:28:52.679159 2023-07-08 10:28:52.679171 777862b0-485e-4462-89dc-d885383f63f0 {"md5": "bd904f640a3a5c7c053160b99527dcff", "pid": "123673208", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/123673208", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/123673208", "source": "GND"}], "variant_name": ["Seebohm, Thomas", "Seebohm, William Thomas Mulvany", "Seebohm, Thomas Mulvany"], "date_of_birth": "1934", "date_of_death": "2014", "preferred_name": "Seebohm, Thomas M.", "country_associated": "gw", "variant_access_point": ["Seebohm, Thomas, 1934-2014", "Seebohm, William Thomas Mulvany, 1934-2014", "Seebohm, Thomas Mulvany, 1934-2014"], "authorized_access_point": "Seebohm, Thomas M., 1934-2014", "biographical_information": ["Dt. Hochschullehrer für Philosophie"]} 1 -2023-07-08 10:28:54.142076 2023-07-08 10:28:54.142081 a4a45505-50a7-4303-9439-17fb45e6daf6 {"md5": "028c40152cfe645471788d48a2485549", "pid": "170154297", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/170154297", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/170154297", "source": "GND"}], "variant_name": ["Phạm, Cao Dương", "Cao Dươg, Phạm", "Dương, Phạm C.", "Dương, Phạm Cao"], "date_of_birth": "1937", "preferred_name": "Phạm Cao Dương", "country_associated": "vm", "variant_access_point": ["Phạm, Cao Dương, 1937-", "Cao Dươg, Phạm, 1937-", "Dương, Phạm C., 1937-", "Dương, Phạm Cao, 1937-"], "authorized_access_point": "Phạm Cao Dương, 1937-", "biographical_information": ["lehrt an Universitäten in Südkalifornien"]} 1 -2023-07-08 10:28:54.989545 2023-07-08 10:28:54.989557 2888501b-5778-40cd-92c3-6b29aca11999 {"md5": "6f2a1a7383d9cede558d9b50c00acc02", "pid": "1029917442", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1029917442", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1029917442", "source": "GND"}], "date_of_birth": "06.09.1904", "date_of_death": "04.03.1976", "preferred_name": "Hoijer, Harry", "country_associated": "xxu", "authorized_access_point": "Hoijer, Harry, 1904-1976"} 1 -2023-07-08 08:16:47.744533 2023-07-08 10:28:55.974631 b9dd091e-fafd-4267-a1aa-4d9f8b9616b5 {"md5": "2188aaa462e452f631ad026eb108550e", "pid": "128564520", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/128564520", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128564520", "source": "GND"}], "date_of_birth": "1966", "preferred_name": "Sporleder, Marc", "authorized_access_point": "Sporleder, Marc, 1966-", "biographical_information": ["Agrarwissenschaftler"]} 2 -2023-07-08 08:16:25.597059 2023-07-08 10:28:58.722164 686076e0-b556-4543-84cd-31569989277d {"md5": "216a6bee00725efcddf609374bb6c4cd", "pid": "1218603739", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1218603739", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1218603739", "source": "GND"}], "preferred_name": "Dolleschel, Kurt", "authorized_access_point": "Dolleschel, Kurt"} 2 -2023-07-08 10:22:47.923611 2023-07-08 10:29:20.048655 d2db94e6-efbd-4412-919c-d32d8c55de12 {"md5": "592ae62d2582c848e9ba1068a3cca04f", "pid": "116397451X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/116397451X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116397451X", "source": "GND"}], "variant_name": ["Yang, Wayne"], "date_of_birth": "19XX", "preferred_name": "Yang, K. Wayne", "country_associated": "xxu", "variant_access_point": ["Yang, Wayne, 19XX-"], "authorized_access_point": "Yang, K. Wayne, 19XX-", "biographical_information": ["Studium der Sozial- und Kulturwissenschaften in der Bildung an der University of California, Berkeley; Mitbegründer von \\"The Land Relationship Super Collective\\" und des \\"Avenues Project\\""]} 2 -2023-07-08 10:28:59.58144 2023-07-08 10:28:59.581444 c4864ee4-4825-4ec8-8f41-982fe09af4b4 {"md5": "16884af3ad5798afe753c529eeeaaba5", "pid": "12465164X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/12465164X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12465164X", "source": "GND"}], "variant_name": ["Frager, Ragıp", "Frager, Robert", "Ragip Baba", "Ragip Frager al-Jerrahi al-Halveti", "Ragip al-Jerrahi", "Jerrahi, Ragip al-"], "date_of_birth": "1940", "preferred_name": "Frager, Ragip", "country_associated": "xxu", "variant_access_point": ["Frager, Ragıp, 1940-", "Frager, Robert, 1940-", "Ragip Baba, 1940-", "Ragip Frager al-Jerrahi al-Halveti, 1940-", "Ragip al-Jerrahi, 1940-", "Jerrahi, Ragip al-, 1940-"], "authorized_access_point": "Frager, Ragip, 1940-", "biographical_information": ["Sozialpsychologie und Ṣūfī; Scheich des kalifornischen Zweiges (in Redwood City) des \\"Jerrahi Order of America\\", d.h. des amerikanischen Ablegers des Dscherrahi-Ordens (Zweig des Halveti-Ordens); machte 1961 am Reed College in Portland (Oregon) einen B.A. in Psychologie; 1967 an der Harvard University Promotion zum PhD in Sozialpsychologie; Pionier der transpersonalen Psychologie; entstammt einer jüdischen Familie, trat 1981 zum Islam über"]} 1 -2023-07-08 08:16:48.628217 2023-07-08 10:29:00.033457 49de123e-966f-4bc3-aa01-67b6d0c95bf3 {"md5": "fc4d3701900dee6eb9b0a84451d07c78", "pid": "128979852", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/128979852", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128979852", "source": "GND"}], "variant_name": ["Braccio, Baglioni", "Braccio, dei Baglioni", "Balionius, Braccio", "Braccio, Balionius", "Dei Baglioni, Braccio"], "date_of_birth": "1419", "date_of_death": "1479", "preferred_name": "Baglioni, Braccio", "country_associated": "it", "variant_access_point": ["Braccio, Baglioni, 1419-1479", "Braccio, dei Baglioni, 1419-1479", "Balionius, Braccio, 1419-1479", "Braccio, Balionius, 1419-1479", "Dei Baglioni, Braccio, 1419-1479"], "authorized_access_point": "Baglioni, Braccio, 1419-1479", "biographical_information": ["teilweise zitiert mit Zählung \\"II.\\"; Italien. Condottiere und Staatsmann; führende Persönlichkeit der Stadt und Universität Perugia; Förderer bei der Einführung der Drucktechnik"]} 2 -2023-07-08 10:29:02.836415 2023-07-08 10:29:02.83642 c89bb3f7-1fbb-491f-ba2b-0f98accd81b4 {"md5": "904eec9e31033eab09e2bf43cf1c4ddf", "pid": "139708952", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/139708952", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139708952", "source": "GND"}], "date_of_birth": "25.11.1919", "date_of_death": "09.09.1986", "preferred_name": "Shackleton, Robert", "country_associated": "xxk", "authorized_access_point": "Shackleton, Robert, 1919-1986", "biographical_information": ["Brit. Romanist, Bibliothekar; Bibliothekar am Brasenose College, lehrte 1946-1966 französische Literatur, 1966-1979 Direktor der Bodleian Library, 1979-1986 Marshal Foch Chair of French Literature an der Universität Oxford"]} 1 -2023-07-08 08:17:31.594213 2023-07-08 10:29:11.874543 99ead625-5dc9-4018-8911-339fb65f034d {"md5": "80ec0d3b2eb0c3fb40b81f1e2065110c", "pid": "173311660", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/173311660", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173311660", "source": "GND"}], "variant_name": ["Robinson, J. Michael"], "date_of_birth": "1940", "preferred_name": "Robinson, John Michael", "variant_access_point": ["Robinson, J. Michael, 1940-"], "authorized_access_point": "Robinson, John Michael, 1940-"} 2 -2023-07-08 08:17:28.943396 2023-07-08 10:29:12.875473 58808764-5209-4476-80b6-14a36174ea9d {"md5": "ac86c8f5705c138fdf2348db500b0c85", "pid": "172141788", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/172141788", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172141788", "source": "GND"}], "variant_name": ["Hollander, J."], "date_of_birth": "28.10.1929", "date_of_death": "17.08.2013", "preferred_name": "Hollander, John", "country_associated": "xxc", "variant_access_point": ["Hollander, J., 1929-2013"], "authorized_access_point": "Hollander, John, 1929-2013"} 2 -2023-07-08 10:29:14.342023 2023-07-08 10:29:14.342041 a2bb0b94-a3b4-4c05-8a1c-2686e2ab452e {"md5": "81f144cd64d5618f421b3cdc2453c36b", "pid": "1072585936", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1072585936", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1072585936", "source": "GND"}], "date_of_birth": "1937", "preferred_name": "Benzoni, Gino", "country_associated": "it", "authorized_access_point": "Benzoni, Gino, 1937-", "biographical_information": ["Bis 2000 Professor an der Universität Venedig"]} 1 -2023-07-08 08:17:00.830671 2023-07-08 10:29:15.354711 eceac57e-7a73-415a-ad10-c17fa4dc594f {"md5": "fb5d29f63309722817ce4ef877627a95", "pid": "135961602", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/135961602", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/135961602", "source": "GND"}], "variant_name": ["Tsuda Yukio", "津田幸男"], "date_of_birth": "1950", "preferred_name": "Tsuda, Yukio", "variant_access_point": ["Tsuda Yukio, 1950-", "津田幸男, 1950-"], "parallel_access_point": ["津田, 幸男, 1950-"], "authorized_access_point": "Tsuda, Yukio, 1950-"} 2 -2023-07-08 10:29:16.690157 2023-07-08 10:29:16.690176 0bc5f6a3-c18f-433e-aa0c-d36580d2e1ac {"md5": "26b64e31df91ec467ac6564ec71dd75b", "pid": "172099331", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/172099331", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172099331", "source": "GND"}], "date_of_birth": "1925", "date_of_death": "2015", "preferred_name": "Gleitman, Henry", "country_associated": "gw", "authorized_access_point": "Gleitman, Henry, 1925-2015"} 1 -2023-07-08 10:29:17.603022 2023-07-08 10:29:17.603031 1f7b3c3c-b6db-4035-9c38-f8af449084b8 {"md5": "460abec004273f7c926d8794e0e77ab6", "pid": "1131175786", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1131175786", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1131175786", "source": "GND"}], "preferred_name": "Gabathuler, Chloé", "country_associated": "sz", "authorized_access_point": "Gabathuler, Chloé", "biographical_information": ["\\"enseignante chercheuse en didactique du français et de la littérature\\""]} 1 -2023-07-08 08:17:29.236376 2023-07-08 10:29:18.529182 79e49f51-d6ab-48d3-b398-6be94762e572 {"md5": "7a00368bdabd96668a71bba3bdef3804", "pid": "172252938", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/172252938", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172252938", "source": "GND"}], "date_of_birth": "1951", "preferred_name": "Mavituna, Ferda", "authorized_access_point": "Mavituna, Ferda, 1951-"} 2 -2023-07-08 10:22:48.354014 2023-07-08 10:29:20.686451 3b602203-5932-4b4b-9768-eec758874762 {"md5": "5c51db62fe2e0ac69c56cab1722419da", "pid": "1011709368", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1011709368", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1011709368", "source": "GND"}], "variant_name": ["Myer, William de"], "date_of_birth": "1924", "preferred_name": "DeMyer, William", "variant_access_point": ["Myer, William de, 1924-"], "authorized_access_point": "DeMyer, William, 1924-"} 2 -2023-07-08 10:29:21.965595 2023-07-08 10:29:21.965607 e09369b4-9504-4681-b5b7-ec4157888de0 {"md5": "5a0063113e5a4a24d312f689867abb6a", "pid": "117249580", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/117249580", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/117249580", "source": "GND"}], "variant_name": ["Weiglein, Paul"], "date_of_birth": "26.09.1884", "date_of_death": "19.04.1958", "preferred_name": "Weiglin, Paul", "country_associated": "gw", "variant_access_point": ["Weiglein, Paul, 1884-1958"], "authorized_access_point": "Weiglin, Paul, 1884-1958"} 1 -2023-07-08 10:29:23.629839 2023-07-08 10:29:23.629847 2c382184-e012-4393-b574-34cd4d955a76 {"md5": "0432790a3c6a3b7dd4588deb732824bb", "pid": "141208740", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/141208740", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141208740", "source": "GND"}], "date_of_birth": "1941", "preferred_name": "Ulstrup, Jens", "authorized_access_point": "Ulstrup, Jens, 1941-"} 1 -2023-07-08 08:16:34.418776 2023-07-08 10:29:24.632214 3ec256dc-7ac1-4f42-a480-c6db37da385f {"md5": "d19971d0ddb71df70290ef154a2a6456", "pid": "12402890X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/12402890X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12402890X", "source": "GND"}], "variant_name": ["Jain, Mahendra K."], "date_of_birth": "1938", "date_of_death": "2017", "preferred_name": "Jain, Mahendra Kumar", "country_associated": "ii", "variant_access_point": ["Jain, Mahendra K., 1938-2017"], "authorized_access_point": "Jain, Mahendra Kumar, 1938-2017", "biographical_information": ["Biologe ind. Herkunft"]} 2 -2023-07-08 08:16:24.911658 2023-07-08 10:29:29.22498 7f8967d0-d580-40af-a3b9-f5714d619db8 {"md5": "8c4dc4173ae37b4deaad4c67e7056a54", "pid": "121710696", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/121710696", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/121710696", "source": "GND"}], "variant_name": ["Witte, Siegfried Kurt Helmut", "Witte, S."], "date_of_birth": "1922", "date_of_death": "2012", "preferred_name": "Witte, Siegfried", "country_associated": "gw", "variant_access_point": ["Witte, Siegfried Kurt Helmut, 1922-2012", "Witte, S., 1922-2012"], "authorized_access_point": "Witte, Siegfried, 1922-2012"} 2 -2023-07-08 08:16:49.526433 2023-07-08 10:29:32.794438 485b21a1-2f91-44fd-a8eb-60756d693908 {"md5": "e8373ec60a8048dc0aad7f9b3590ebb0", "pid": "129599646", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/129599646", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129599646", "source": "GND"}], "variant_name": ["MacLaughlin, John A.", "Mc Laughlin, John A.", "McLaughlin, John", "McLaughlin, John Adams", "Adams McLaughlin, John"], "date_of_birth": "1943", "preferred_name": "McLaughlin, John A.", "country_associated": "xxu", "variant_access_point": ["MacLaughlin, John A., 1943-", "Mc Laughlin, John A., 1943-", "McLaughlin, John, 1943-", "McLaughlin, John Adams, 1943-", "Adams McLaughlin, John, 1943-"], "authorized_access_point": "McLaughlin, John A., 1943-"} 2 -2023-07-08 10:29:33.724514 2023-07-08 10:29:33.724528 86655a72-c5dd-47b1-99a0-906931dedad3 {"md5": "ceb602d1b8e7a9fce0e4c2d67f0d9fc5", "pid": "1220644811", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1220644811", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1220644811", "source": "GND"}], "preferred_name": "Slaouti, Omar", "country_associated": "fr", "authorized_access_point": "Slaouti, Omar"} 1 -2023-07-08 08:15:06.580331 2023-07-08 10:29:35.030891 8a88e338-a36e-49e3-810b-167c0c3f055b {"md5": "dbd77c7f049a6a39f39c19bdf0fa3bf4", "pid": "1080093648", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1080093648", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1080093648", "source": "GND"}], "date_of_birth": "19.02.1871", "date_of_death": "29.10.1959", "preferred_name": "Laufer, Paul", "country_associated": "sz", "authorized_access_point": "Laufer, Paul, 1871-1959", "biographical_information": ["1905-1941 Prof. für systematische Theologie in Lausanne, 1941-1945 für praktische Theologie. 1930 Dr. h.c. der Theologie der Universität Lausanne"]} 2 -2023-07-08 10:29:38.832364 2023-07-08 10:29:38.832371 0b19264e-6c40-4b56-b98a-70b85ce95cdc {"md5": "b17012fe4cd8f1ea8ab88cf37668858d", "pid": "137308914", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/137308914", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/137308914", "source": "GND"}], "variant_name": ["Watkins, Peter", "Watkins, P. M.", "Watkins, P.", "Watkins, P.M."], "date_of_birth": "1944", "preferred_name": "Watkins, Peter Maitland", "country_associated": "xxk", "variant_access_point": ["Watkins, Peter, 1944-", "Watkins, P. M., 1944-", "Watkins, P., 1944-", "Watkins, P.M., 1944-"], "authorized_access_point": "Watkins, Peter Maitland, 1944-", "biographical_information": ["Lecturer in Physics"]} 1 -2023-07-08 10:29:41.683215 2023-07-08 10:29:41.683231 f66bac4b-c84d-4af8-b003-7785a8f39c6f {"md5": "f0f06e001c7c3a91b50580fab15efaca", "pid": "120981238", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/120981238", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120981238", "source": "GND"}], "date_of_birth": "1967", "preferred_name": "Hanssen, Christian", "authorized_access_point": "Hanssen, Christian, 1967-", "biographical_information": ["Jurist, Industriekaufmann"]} 1 -2023-07-08 10:29:46.048084 2023-07-08 10:29:46.048096 d67f80b1-5a68-421c-a649-ea68f4e500be {"md5": "f770f990183ffd4ea0dc02661a9fc012", "pid": "171115058", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/171115058", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/171115058", "source": "GND"}], "variant_name": ["Candeal-Haro, Juan C.", "Haro, Juan Carlos Candeal-", "Candeal, Juan Carlos", "Candeal, J. C.", "Candeal, Juan C."], "preferred_name": "Candeal-Haro, Juan Carlos", "variant_access_point": ["Candeal-Haro, Juan C.", "Haro, Juan Carlos Candeal-", "Candeal, Juan Carlos", "Candeal, J. C.", "Candeal, Juan C."], "authorized_access_point": "Candeal-Haro, Juan Carlos", "biographical_information": ["Tätig an der Univ. Zaragoza, Spanien"]} 1 -2023-07-08 10:29:50.965673 2023-07-08 10:29:50.965686 6a723b77-3c69-441f-bf90-98c4e9975743 {"md5": "d7a914db6621c7989b422021807955db", "pid": "1175036641", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1175036641", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1175036641", "source": "GND"}], "preferred_name": "Monkelbaan, Joachim", "country_associated": "ne", "authorized_access_point": "Monkelbaan, Joachim"} 1 -2023-07-08 08:16:54.733577 2023-07-08 10:29:51.84957 7d93f730-d660-45e2-af3e-044247e1226d {"md5": "d2ac385a6b7201832c67785c83e0deab", "pid": "133046567", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/133046567", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133046567", "source": "GND"}], "preferred_name": "Vossa, Hieronymus di", "country_associated": "gw", "authorized_access_point": "Vossa, Hieronymus di"} 2 -2023-07-08 08:15:32.676806 2023-07-08 10:29:53.593726 8722f496-7cac-4660-91eb-9a9c29d68c33 {"md5": "9b7db7167535956c8976f2209661cca5", "pid": "1122052537", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1122052537", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1122052537", "source": "GND"}], "variant_name": ["Smith, Hilrie Shelton", "Smith, H. S.", "Smith, Hilrie Shelton"], "date_of_birth": "1893", "preferred_name": "Smith, H. Shelton", "country_associated": "xxu", "variant_access_point": ["Smith, Hilrie Shelton, 1893-", "Smith, H. S., 1893-", "Smith, Hilrie Shelton, 1893-"], "authorized_access_point": "Smith, H. Shelton, 1893-"} 2 -2023-07-08 10:29:55.098189 2023-07-08 10:29:55.098201 304c49a2-361d-48cb-9fa4-467e670675c8 {"md5": "175c38d75f827096e79027a92fd47613", "pid": "173457258", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/173457258", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173457258", "source": "GND"}], "variant_name": ["McClaskey, Marilyn H.", "MacClaskey, Marilyn Jones", "Jones, Marilyn H.", "Jones MacClaskey, Marilyn"], "date_of_birth": "1947", "preferred_name": "MacClaskey, Marilyn H.", "variant_access_point": ["McClaskey, Marilyn H., 1947-", "MacClaskey, Marilyn Jones, 1947-", "Jones, Marilyn H., 1947-", "Jones MacClaskey, Marilyn, 1947-"], "authorized_access_point": "MacClaskey, Marilyn H., 1947-"} 1 -2023-07-08 10:29:56.453919 2023-07-08 10:29:56.453926 70197bae-4938-4bed-98d0-55e2bc36872d {"md5": "f1dbd55f34aa145ca5ab764c703d5668", "pid": "119255537", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/119255537", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/119255537", "source": "GND"}], "variant_name": ["Taubman, Howard", "Taubman, H. Howard"], "date_of_birth": "1907", "date_of_death": "1996", "preferred_name": "Taubman, Hyman Howard", "country_associated": "xxu", "variant_access_point": ["Taubman, Howard, 1907-1996", "Taubman, H. Howard, 1907-1996"], "authorized_access_point": "Taubman, Hyman Howard, 1907-1996"} 1 -2023-07-08 10:29:57.350618 2023-07-08 10:29:57.35063 c011e033-2ea2-4124-be2a-50de0c9884f8 {"md5": "b688ffe2c988b026b16e225b1cb16c90", "pid": "133592316", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/133592316", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133592316", "source": "GND"}], "variant_name": ["Banks", "Banks, Anthony George"], "date_of_birth": "1950", "preferred_name": "Banks, Tony", "country_associated": "xxk", "variant_access_point": ["Banks, 1950-", "Banks, Anthony George, 1950-"], "parallel_access_point": ["Banks, Tony, 1950-"], "authorized_access_point": "Banks, Tony, 1950-"} 1 -2023-07-08 08:16:23.429948 2023-07-08 10:29:57.846538 9beafae6-801e-4320-9169-e920c721f49c {"md5": "ff02f0d8a0235bf6b1b4106e1079fcb5", "pid": "1212602552", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1212602552", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1212602552", "source": "GND"}], "variant_name": ["Fallah, Belal N."], "preferred_name": "Fallah, Belal", "variant_access_point": ["Fallah, Belal N."], "authorized_access_point": "Fallah, Belal"} 2 -2023-07-08 10:29:58.76927 2023-07-08 10:29:58.769282 2e37b6cd-6bca-4fcc-b186-fa60dcfa88c8 {"md5": "5938b09e265a142201fbf1acd7ab6bf6", "pid": "1164996517", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1164996517", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1164996517", "source": "GND"}], "date_of_birth": "1941", "preferred_name": "Ishiodori, Kōichi", "country_associated": "ja", "parallel_access_point": ["石踊, 紘一, 1941-"], "authorized_access_point": "Ishiodori, Kōichi, 1941-"} 1 -2023-07-08 10:30:04.466296 2023-07-08 10:30:04.466319 4ca270bc-afe7-47b1-9690-e378fb0f34d0 {"md5": "0e950ee47ecfeed7b94679cb21ec0e71", "pid": "13685849X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/13685849X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13685849X", "source": "GND"}], "variant_name": ["Subbarao, Nanjappa Shamanna", "Subbarao, N. S.", "Subbarao, Nanjappa S.", "Subba Rao, N. S.", "Subba Rao, Nanjappa S."], "date_of_birth": "1926", "preferred_name": "Subba Rao, Nanjappa Shamanna", "variant_access_point": ["Subbarao, Nanjappa Shamanna, 1926-", "Subbarao, N. S., 1926-", "Subbarao, Nanjappa S., 1926-", "Subba Rao, N. S., 1926-", "Subba Rao, Nanjappa S., 1926-"], "authorized_access_point": "Subba Rao, Nanjappa Shamanna, 1926-"} 1 -2023-07-08 08:15:03.096583 2023-07-08 10:30:05.457014 da1b0caa-d110-4fec-b846-b5fe22adddfb {"md5": "a43e782ac49761ba65df8ef8804ee14d", "pid": "1067912916", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1067912916", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1067912916", "source": "GND"}], "variant_name": ["Ivanova, L.V.", "Ivanova, Ljudmila Vladimirovna", "Ivanova, Ljudmila V.", "Ivanova, Ljudmila", "Ivanova, L.", "Ivanova, Li︠u︡dmila Vladimirovna"], "preferred_name": "Ivanova, L. V.", "variant_access_point": ["Ivanova, L.V.", "Ivanova, Ljudmila Vladimirovna", "Ivanova, Ljudmila V.", "Ivanova, Ljudmila", "Ivanova, L.", "Ivanova, Li︠u︡dmila Vladimirovna"], "authorized_access_point": "Ivanova, L. V."} 2 -2023-07-08 10:30:06.358346 2023-07-08 10:30:06.358361 f5b273fa-a10c-48b4-9b40-5658fdfb84e5 {"md5": "85ab0f3ea401762e854110b03767bade", "pid": "140749861", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["jpn", "eng"], "identifier": "http://d-nb.info/gnd/140749861", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140749861", "source": "GND"}], "variant_name": ["タケウチ, ジュンイチ"], "date_of_birth": "1941", "preferred_name": "Takeuchi, Jun'ichi", "country_associated": "ja", "variant_access_point": ["タケウチ, ジュンイチ, 1941-"], "parallel_access_point": ["竹内, 順一, 1941-"], "authorized_access_point": "Takeuchi, Jun'ichi, 1941-"} 1 -2023-07-08 10:30:08.22634 2023-07-08 10:30:08.226357 62af5342-56ff-4f55-a938-a0ff114cd682 {"md5": "5243ac3a8e60fe2f27b898303d07af95", "pid": "134274458", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/134274458", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134274458", "source": "GND"}], "preferred_name": "Obi, Ajuruchukwu", "authorized_access_point": "Obi, Ajuruchukwu", "biographical_information": ["Ass. Prof. in the Department of Agricultural Economics and Extension, University of Fort Hare in Alice, South Africa; tätig bei der International Labour Organisation; tätig beim the United Nations Development Programme und den United Nations Volunteers"]} 1 -2023-07-08 10:30:11.866903 2023-07-08 10:30:11.866911 f15fabaf-9786-4674-924c-5edd611072a8 {"md5": "772e77ff4e2fae1813e9fa266d2bc5f9", "pid": "124206018", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/124206018", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124206018", "source": "GND"}], "variant_name": ["Jacobson, Thorkild Peter Rudolph"], "date_of_birth": "1904", "date_of_death": "1993", "preferred_name": "Jacobsen, Thorkild", "country_associated": "dk", "variant_access_point": ["Jacobson, Thorkild Peter Rudolph, 1904-1993"], "authorized_access_point": "Jacobsen, Thorkild, 1904-1993", "biographical_information": ["Dän.-amerikan. Orientalist"]} 1 -2023-07-08 10:30:12.753872 2023-07-08 10:30:12.753884 89b8eb80-6f3e-4d96-94a6-b1f9ee0bd79c {"md5": "d4b1d2821db9668d940798155f618cf8", "pid": "131812378", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/131812378", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/131812378", "source": "GND"}], "date_of_birth": "1939", "date_of_death": "2004", "preferred_name": "Artioli, Umberto", "country_associated": "it", "authorized_access_point": "Artioli, Umberto, 1939-2004", "biographical_information": ["Dozent der Universität Padua; Ital. Theaterwissenschaftler"]} 1 -2023-07-08 10:30:15.132366 2023-07-08 10:30:15.132378 e1c67bb9-6071-4f00-9c37-fef80cf36722 {"md5": "80b308b0ba33ad2af1acc156ddfee636", "pid": "1270526294", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1270526294", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1270526294", "source": "GND"}], "date_of_birth": "28.05.1934", "preferred_name": "Haudry, Jean", "country_associated": "fr", "authorized_access_point": "Haudry, Jean, 1934-"} 1 -2023-07-08 10:30:16.054052 2023-07-08 10:30:16.054057 c3e2d1ca-c107-4a42-8895-4d0592c5b3c3 {"md5": "ca68cd04e3446fdebc0c325e95607ccf", "pid": "143454781", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143454781", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143454781", "source": "GND"}], "variant_name": ["Hull, Richard", "Hull, Richard William"], "date_of_birth": "1940", "preferred_name": "Hull, Richard W.", "country_associated": "xxu", "variant_access_point": ["Hull, Richard, 1940-", "Hull, Richard William, 1940-"], "authorized_access_point": "Hull, Richard W., 1940-", "biographical_information": ["Assoc. Prof. of African History, New York Univ."]} 1 -2023-07-08 10:30:19.252644 2023-07-08 10:30:19.252653 75745ca7-d20d-4f78-b90d-ca8abcf5abd6 {"md5": "3b6d73240b105a71136bd317f1b14afb", "pid": "118857703", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/118857703", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/118857703", "source": "GND"}], "date_of_birth": "15.11.920", "date_of_death": "14.06.1996", "preferred_name": "Bufalino, Gesualdo", "country_associated": "it", "parallel_access_point": ["Bufalino, Gesualdo, 1920-1996"], "authorized_access_point": "Bufalino, Gesualdo, 1920-1996", "biographical_information": ["schrieb Romane, Kurzgeschichten, Theaterstücke, Gedichte, Aphorismen, Essays, Anthologien und verschiedene Texte über Sizilien"]} 1 -2023-07-08 10:30:19.82527 2023-07-08 10:30:19.825283 6559238c-b30e-4fa5-9944-8993aced4b1b {"md5": "1f34b1b52a5fd32538f8cc4ca771bb7a", "pid": "119443988", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/119443988", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/119443988", "source": "GND"}], "variant_name": ["Krüger, R.", "Kuryūgā, Renāte"], "date_of_birth": "23.07.1934", "date_of_death": "27.05.2016", "preferred_name": "Krüger, Renate", "country_associated": "gw", "variant_access_point": ["Krüger, R., 1934-2016", "Kuryūgā, Renāte, 1934-2016"], "authorized_access_point": "Krüger, Renate, 1934-2016"} 1 -2023-07-08 08:15:35.641156 2023-07-08 10:30:32.389295 b5fcfcf1-3de1-49cf-b878-5c3a61a70e5a {"md5": "629db6f3e7c564b6b92dd2da5097f2ec", "pid": "1135754381", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1135754381", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1135754381", "source": "GND"}], "variant_name": ["Markovits, Iulius I. E."], "date_of_birth": "1985", "preferred_name": "Markovits, Ioan Iulius Emilian", "country_associated": "rm", "variant_access_point": ["Markovits, Iulius I. E., 1985-"], "authorized_access_point": "Markovits, Ioan Iulius Emilian, 1985-"} 2 -2023-07-08 10:30:33.204948 2023-07-08 10:30:33.204963 479ecbc1-0f3f-4a6b-bd78-83434670e9a3 {"md5": "fd4997ed7adfaf6c40e94da5831ee1de", "pid": "1014841011", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1014841011", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1014841011", "source": "GND"}], "preferred_name": "Reichelt, Thomas", "country_associated": "gw", "authorized_access_point": "Reichelt, Thomas"} 1 -2023-07-08 10:30:34.625882 2023-07-08 10:30:34.625898 fdd964a2-bb9b-4884-bf55-fc36031a6a6b {"md5": "1a1317255edcf821d90fed48f1c77163", "pid": "1060270773", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1060270773", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060270773", "source": "GND"}], "date_of_birth": "1913", "date_of_death": "1993", "preferred_name": "Laffont, Pierre", "country_associated": "fr", "authorized_access_point": "Laffont, Pierre, 1913-1993", "biographical_information": ["Directeur général de \\"l'Écho d'Oran\\" (1945-1963). - Député d'Oran-campagne, Algérie (1958-1961). - Administrateur des éditions Robert Laffont (1964-1978)"]} 1 -2023-07-08 10:31:29.477873 2023-07-08 10:31:29.477892 48251ef4-f1a1-49d9-8234-0227c1ebd3c1 {"md5": "362bb24e0d5ce6dcedff7029294f12a5", "pid": "119033437", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/119033437", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/119033437", "source": "GND"}], "date_of_birth": "1951", "preferred_name": "Legorjus, Philippe", "country_associated": "fr", "authorized_access_point": "Legorjus, Philippe, 1951-", "biographical_information": ["Franz. Polizist, Kommandeur der GIGN"]} 1 -2023-07-08 08:15:04.964642 2023-07-08 10:30:36.268451 64cfd9bd-9012-4815-b0c8-6d2ea431d344 {"md5": "dfe5fb91ea8345afb2ce86d895a04758", "pid": "1077873468", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1077873468", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1077873468", "source": "GND"}], "variant_name": ["College of Business Administration"], "preferred_name": "Ǧāmiʿat al-Baḥrain. College of Business Administration", "country_associated": "ba", "variant_access_point": ["College of Business Administration. Ǧāmiʿat al-Baḥrain"], "authorized_access_point": "Ǧāmiʿat al-Baḥrain. College of Business Administration"} 2 -2023-07-08 10:30:38.543816 2023-07-08 10:30:38.543827 ef9057b2-f181-497b-9765-554c81418754 {"md5": "9a542df2c2621cdd24018df9c9292e2f", "pid": "1192852273", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1192852273", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1192852273", "source": "GND"}], "variant_name": ["Erling Bardal, Kjell"], "date_of_birth": "1951", "preferred_name": "Bardal, Kjell Erling", "country_associated": "no", "variant_access_point": ["Erling Bardal, Kjell, 1951-"], "authorized_access_point": "Bardal, Kjell Erling, 1951-"} 1 -2023-07-08 08:15:08.511299 2023-07-08 10:30:39.727245 ba8a4abd-703b-4d8d-9fa4-18bc1a105a48 {"md5": "f1292b12404bab4ddb6b896d37aa6e76", "pid": "108451836", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/108451836", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/108451836", "source": "GND"}], "variant_name": ["With, Hans-Joachim de"], "date_of_birth": "21.05.1932", "preferred_name": "With, Hans de", "country_associated": "gw", "variant_access_point": ["With, Hans-Joachim de, 1932-"], "authorized_access_point": "With, Hans de, 1932-", "biographical_information": ["1962 Staatsanwalt, 1966-1969 Landgerichtsrat; 1974-1982 Parl. Staatssekretär beim Bundesminister der Justiz; 1966-1969 Stadtrat, Bamberg"]} 2 -2023-07-08 10:30:40.648908 2023-07-08 10:30:40.648921 4419e2a5-9665-495b-9194-71c6fa74f0ee {"md5": "4cfeb91b45fe31411688c2fbea49b39f", "pid": "1170737064", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1170737064", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1170737064", "source": "GND"}], "preferred_name": "Lynn, Thomas Jay", "country_associated": "xxu", "authorized_access_point": "Lynn, Thomas Jay"} 1 -2023-07-08 10:22:54.615203 2023-07-08 10:30:41.676256 be4d2206-10fa-4a65-b07a-a163131a418f {"md5": "dbf0be9d4cc837562b2baf58754a71f7", "pid": "115355996X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/115355996X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/115355996X", "source": "GND"}], "variant_name": ["Brum Bernardes, Cristiane"], "preferred_name": "Bernardes, Cristiane Brum", "country_associated": "bl", "variant_access_point": ["Brum Bernardes, Cristiane"], "authorized_access_point": "Bernardes, Cristiane Brum", "biographical_information": ["doctoral degree, Ciencia Politica, Cefor/Camara dos Deputados and Iesp/Uerj; master degree, Comunicacao e Informacao, UFRGS; journalist and legislative analist, Camara dos Deputados"]} 2 -2023-07-08 08:15:48.906368 2023-07-08 10:30:43.355608 5fe29983-ac03-4176-8e89-42da6de6decf {"md5": "f72fbb1d9b6b9f1c34e73a0ef3eb0b12", "pid": "1157628680", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1157628680", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157628680", "source": "GND"}], "variant_name": ["Arteta, Antonio"], "preferred_name": "Arteta de Monteseguro, Antonio", "variant_access_point": ["Arteta, Antonio"], "authorized_access_point": "Arteta de Monteseguro, Antonio"} 2 -2023-07-08 08:16:39.698796 2023-07-08 10:30:44.644512 b9e9b79f-4caf-4ae1-9236-559ca383d7bd {"md5": "6803ac8cfa906dc42e2a9183f7c3df87", "pid": "1251284507", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://d-nb.info/gnd/1251284507", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1251284507", "source": "GND"}], "variant_name": ["Hallett, Penelope Hughes-"], "date_of_birth": "1927", "date_of_death": "2010", "preferred_name": "Hughes-Hallett, Penelope", "country_associated": "xxk", "variant_access_point": ["Hallett, Penelope Hughes-, 1927-2010"], "authorized_access_point": "Hughes-Hallett, Penelope, 1927-2010", "biographical_information": ["war Dozentin und später Direktorin an der Open University sowie Schirmherrin des Wordsworth Trust und Trustee der Esmee Fairbairn Foundation"]} 2 -2023-07-08 10:30:49.192258 2023-07-08 10:30:49.192265 500578ad-44a6-4f1a-91b4-d06fd5435b53 {"md5": "3c2ed00cdb0484e4ac6f7ba418904c7c", "pid": "13355757X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/13355757X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13355757X", "source": "GND"}], "variant_name": ["Cloonan, Michèle V."], "date_of_birth": "14.07.1955", "preferred_name": "Cloonan, Michèle Valerie", "country_associated": "xxu", "variant_access_point": ["Cloonan, Michèle V., 1955-"], "parallel_access_point": ["Cloonan, Miche`le Valerie, 1955-"], "authorized_access_point": "Cloonan, Michèle Valerie, 1955-", "biographical_information": ["Dekanin und Professorin an der Graduate School of Library & Information Science, Simmons College, Boston"]} 1 -2023-07-08 08:16:11.61968 2023-07-08 10:30:50.328677 e07d99ab-72cd-420d-aadd-c1f466746e8d {"md5": "81d483d26fad4d0421abd0d1c98b128f", "pid": "1190386577", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1190386577", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1190386577", "source": "GND"}], "variant_name": ["Grawe, Johannes"], "preferred_name": "Grawerus, Johannes", "variant_access_point": ["Grawe, Johannes"], "authorized_access_point": "Grawerus, Johannes", "biographical_information": ["aus Helmstedt"]} 2 -2023-07-08 08:16:17.302649 2023-07-08 10:30:51.281715 25cb8c66-0366-4498-b08d-8925291fcd28 {"md5": "17c2e55eeba85cbbd67c0a0ce42ddb33", "pid": "120268081X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/120268081X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120268081X", "source": "GND"}], "preferred_name": "Angeleis, Gabeli", "authorized_access_point": "Angeleis, Gabeli"} 2 -2023-07-08 10:30:53.386257 2023-07-08 10:30:53.386263 99b79f2f-20cb-4062-96bc-be5176074a9b {"md5": "a0efe693dc46de91560d4a005aa1c05e", "pid": "1212115716", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1212115716", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1212115716", "source": "GND"}], "preferred_name": "Kruedener, Claudia von", "country_associated": "gw", "authorized_access_point": "Kruedener, Claudia von", "biographical_information": ["Doktorandin am Lehrstuhl für Bayerische Geschichte der Universität Bayreuth, beschäftigt sich mit der Fragestellung nach Herrschaftskonzeptionen im frühneuzeitlichen Kurbayern"]} 1 -2023-07-08 08:15:20.704476 2023-07-08 10:30:54.408948 92ebbfb8-7e6d-4748-8721-6ba0ec97ab6d {"md5": "eb3f1b468fafa5cdbde3630543577574", "pid": "1089841035", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1089841035", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089841035", "source": "GND"}], "variant_name": ["al-Mubārakī, Aḥmad Ibn ʿAlī Sayr al-"], "date_of_birth": "Hochschullehrer", "preferred_name": "Sayr al-Mubārakī, Aḥmad Ibn ʿAlī", "variant_access_point": ["al-Mubārakī, Aḥmad Ibn ʿAlī Sayr al-, Hochschullehrer"], "authorized_access_point": "Sayr al-Mubārakī, Aḥmad Ibn ʿAlī, Hochschullehrer"} 2 -2023-07-08 10:30:58.709757 2023-07-08 10:30:58.709764 608fbee0-2188-4a92-855d-e58f17b9f750 {"md5": "1d70b789fdd996d07255a3a96ec56992", "pid": "105597377X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/105597377X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/105597377X", "source": "GND"}], "variant_name": ["Killough, Lucy Winsor"], "date_of_birth": "16.04.1897", "preferred_name": "Killough, Lucy W.", "variant_access_point": ["Killough, Lucy Winsor, 1897-"], "authorized_access_point": "Killough, Lucy W., 1897-"} 1 -2023-07-08 10:23:00.310203 2023-07-08 10:31:02.355068 4f506a29-314a-433c-9c3c-1951a9d75ac4 {"md5": "f4577578c8f4de2ba69a1afcafd4275c", "pid": "1244862096", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1244862096", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1244862096", "source": "GND"}], "date_of_birth": "1952", "preferred_name": "Kim, Jae-Hak", "country_associated": "ko", "authorized_access_point": "Kim, Jae-Hak, 1952-"} 2 -2023-07-08 10:31:07.313269 2023-07-08 10:31:07.313296 61b094b5-2999-4a75-a304-fcdb7f03cd30 {"md5": "602ddf5494e5fd2f05e114ff2fd7989d", "pid": "13707543X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/13707543X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13707543X", "source": "GND"}], "variant_name": ["Estle, T. L.", "Estle, Thomas Leo"], "date_of_birth": "1931", "preferred_name": "Estle, Thomas L.", "variant_access_point": ["Estle, T. L., 1931-", "Estle, Thomas Leo, 1931-"], "authorized_access_point": "Estle, Thomas L., 1931-", "biographical_information": ["Rice Univ., Houston, Texas"]} 1 -2023-07-08 10:31:08.142755 2023-07-08 10:31:08.142769 df29ef43-f6fd-4302-ae05-c74732a76c34 {"md5": "b4df772f89df4158f11d36a1236d2239", "pid": "133767183", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/133767183", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133767183", "source": "GND"}], "date_of_birth": "19.08.1941", "preferred_name": "Novak, David", "country_associated": "xxc", "authorized_access_point": "Novak, David, 1941-", "biographical_information": ["PhD in philosophy, Georgetown University, 1971. Professor of Religion and Philosophy in the University of Toronto, 1997-. Professor of Modern Judaic Studies, University of Virginia, 1989-1996"]} 1 -2023-07-08 08:16:11.130911 2023-07-08 10:31:08.980256 8cfeab83-a5c8-4d63-9ba3-84fd24f41c32 {"md5": "00f0928cd5fa5470f31e272de68c2c30", "pid": "119007460", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/119007460", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/119007460", "source": "GND"}], "variant_name": ["Fang, Hsüan-ling", "Fang, Qiao", "Fang, Ch'iao", "Liang Wenzhao gong", "房玄龄", "房, 玄齡", "房, 玄龄", "房喬", "房, 喬", "房乔", "房, 乔", "房玄齡", "梁文昭公", "房玄龄", "房喬", "房乔"], "date_of_birth": "578", "date_of_death": "648", "preferred_name": "Fang, Xuanling", "country_associated": "cc", "variant_access_point": ["Fang, Hsüan-ling, 578-648", "Fang, Qiao, 578-648", "Fang, Ch'iao, 578-648", "Liang Wenzhao gong, 578-648", "房玄龄, 578-648", "房, 玄齡, 578-648", "房, 玄龄, 578-648", "房喬, 578-648", "房, 喬, 578-648", "房乔, 578-648", "房, 乔, 578-648", "房玄齡, 578-648", "梁文昭公, 578-648", "房玄龄, 578-648", "房喬, 578-648", "房乔, 578-648"], "parallel_access_point": ["房玄齡, 578-648"], "authorized_access_point": "Fang, Xuanling, 578-648", "biographical_information": ["Chines. Historiker u. Staatsmann", "Historiker, Politiker"]} 2 -2023-07-08 08:15:17.155096 2023-07-08 10:31:09.569502 d0f0e270-29de-4052-b959-fc84be5e7005 {"md5": "512c52e2e9adc8db2a9ae718a7305476", "pid": "1087381363", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1087381363", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087381363", "source": "GND"}], "variant_name": ["Teilprojekt Wasserwirtschaft", "Deutschland. Bundesministerium für Bildung, Wissenschaft, Forschung und Technologie. Verbundprojekt BMBF 07SIO09 1. Teilprojekt Wasserwirtschaft", "Verbundprojekt BMBF 07SIO09 1 \\"Möglichkeiten einer Naturnahen Regenwasserbewirtschaftung in Siedlungsgebieten, Untersucht und Demonstriert am Beispiel der Städte Dortmund und Zwickau\\"", "Möglichkeiten einer Naturnahen Regenwasserbewirtschaftung in Siedlungsgebieten, Untersucht und Demonstriert am Beispiel der Städte Dortmund und Zwickau\\"", "Deutschland. Bundesministerium für Bildung, Wissenschaft, Forschung und Technologie. Verbundprojekt BMBF 07SIO09 1", "Verbundprojekt BMBF \\"Möglichkeiten einer Naturnahen Regenwasserbewirtschaftung in Siedlungsgebieten, Untersucht und Demonstriert am Beispiel der Städte Dortmund und Zwickau\\"", "Verbundprojekt BMBF 07SIO09 1"], "preferred_name": "Verbundprojekt BMBF 07SIO09 1. Teilprojekt Wasserwirtschaft", "variant_access_point": ["Teilprojekt Wasserwirtschaft. Verbundprojekt BMBF 07SIO09 1 \\"Möglichkeiten einer Naturnahen Regenwasserbewirtschaftung in Siedlungsgebieten, Untersucht und Demonstriert am Beispiel der Städte Dortmund und Zwickau\\"", "Deutschland. Bundesministerium für Bildung, Wissenschaft, Forschung und Technologie. Verbundprojekt BMBF 07SIO09 1. Teilprojekt Wasserwirtschaft", "Verbundprojekt BMBF 07SIO09 1 \\"Möglichkeiten einer Naturnahen Regenwasserbewirtschaftung in Siedlungsgebieten, Untersucht und Demonstriert am Beispiel der Städte Dortmund und Zwickau\\"", "Möglichkeiten einer Naturnahen Regenwasserbewirtschaftung in Siedlungsgebieten, Untersucht und Demonstriert am Beispiel der Städte Dortmund und Zwickau\\"", "Deutschland. Bundesministerium für Bildung, Wissenschaft, Forschung und Technologie. Verbundprojekt BMBF 07SIO09 1", "Verbundprojekt BMBF \\"Möglichkeiten einer Naturnahen Regenwasserbewirtschaftung in Siedlungsgebieten, Untersucht und Demonstriert am Beispiel der Städte Dortmund und Zwickau\\"", "Verbundprojekt BMBF 07SIO09 1. Deutschland"], "authorized_access_point": "Verbundprojekt BMBF 07SIO09 1. Deutschland. Teilprojekt Wasserwirtschaft"} 2 -2023-07-08 08:15:20.022848 2023-07-08 10:31:10.988119 2ff00ae5-04af-4517-85cb-3bda2be408bc {"md5": "0b43a788115e25b1909d1880325e382a", "pid": "1089664281", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1089664281", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089664281", "source": "GND"}], "variant_name": ["津田, 直則"], "date_of_birth": "1944", "preferred_name": "Tsuda, Naonori", "variant_access_point": ["津田, 直則, 1944-"], "authorized_access_point": "Tsuda, Naonori, 1944-", "biographical_information": ["Wirtschaftswissenschaftler"]} 2 -2023-07-08 08:17:27.118023 2023-07-08 10:31:11.523566 f7da1de5-0e7a-48d0-adcb-0393cd037285 {"md5": "f9b08c464508038de5318aa2628841f2", "pid": "170996085", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/170996085", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/170996085", "source": "GND"}], "variant_name": ["Kondratieva, T. S."], "preferred_name": "Kondratʹeva, T. S.", "variant_access_point": ["Kondratieva, T. S."], "authorized_access_point": "Kondratʹeva, T. S."} 2 -2023-07-08 08:16:29.717794 2023-07-08 10:31:12.765465 3d9b36a5-7678-48c5-aebb-5d7d15b42cf0 {"md5": "fece30a0314a8be3dca5450711bb32c2", "pid": "1228546541", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1228546541", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1228546541", "source": "GND"}], "variant_name": ["Ikemoto, Ito", "小山いと子"], "date_of_birth": "1901", "date_of_death": "1989", "preferred_name": "Koyama, Itoko", "country_associated": "ja", "variant_access_point": ["Ikemoto, Ito, 1901-1989", "小山いと子, 1901-1989"], "authorized_access_point": "Koyama, Itoko, 1901-1989", "biographical_information": ["Koyama Itoko; b. 7/13/Meiji 34; real name: Ikemoto Ito. WhoPlus, viewed on February 6, 2019 |b (小山いと子 = Koyama Itoko; b. 7/13/1901; d. 7/25/1989; novelist)"]} 2 -2023-07-08 10:31:13.960684 2023-07-08 10:31:13.960687 86ea53a1-b4eb-483e-893e-825114acbfc4 {"md5": "4bcb9c1cf746b5f049d38d0ec2a2b7c2", "pid": "170661393", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/170661393", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/170661393", "source": "GND"}], "variant_name": ["Dertouzos, James"], "date_of_birth": "1950", "preferred_name": "Dertouzos, James N.", "variant_access_point": ["Dertouzos, James, 1950-"], "authorized_access_point": "Dertouzos, James N., 1950-", "biographical_information": ["Tätig bei der Rand Corp., Santa Monica, Calif."]} 1 -2023-07-08 10:31:16.532208 2023-07-08 10:31:16.532214 3be3cd12-fef1-4e9a-a8b3-a2f68f10aa9a {"md5": "911b38e9da14b8f178f8cf000428e5a3", "pid": "172265258", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/172265258", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172265258", "source": "GND"}], "variant_name": ["Moulik, Tushar K.", "Moulik, Toushar"], "date_of_birth": "1936", "preferred_name": "Moulik, Tushar Kanti", "variant_access_point": ["Moulik, Tushar K., 1936-", "Moulik, Toushar, 1936-"], "authorized_access_point": "Moulik, Tushar Kanti, 1936-"} 1 -2023-07-08 10:31:19.765277 2023-07-08 10:31:19.765284 a39c6096-bc16-40de-a703-f419d2e5502c {"md5": "d0a990cde5719265965902b8131d513b", "pid": "1145475299", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1145475299", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1145475299", "source": "GND"}], "date_of_birth": "1938", "preferred_name": "Meyer, Armand", "country_associated": "gw", "authorized_access_point": "Meyer, Armand, 1938-", "biographical_information": ["Zürich, Univ., Diss., 1972"]} 1 -2023-07-08 08:15:49.579428 2023-07-08 10:31:21.220473 f25019ce-363c-4901-99dc-be90e6753da4 {"md5": "2fcdb69b4a23de4e5dd32dfdd0b240bc", "pid": "1157861202", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1157861202", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157861202", "source": "GND"}], "variant_name": ["Koler, Johan Jacob", "Koler, Johann Jakob"], "preferred_name": "Koler, Johann J.", "variant_access_point": ["Koler, Johan Jacob", "Koler, Johann Jakob"], "authorized_access_point": "Koler, Johann J.", "biographical_information": ["Leb-Dat.[?]: -; Prediger in der Schweiz und Übersetzer, e1586"]} 2 -2023-07-08 08:16:24.612733 2023-07-08 10:31:22.855775 e67aa0aa-bff5-4c5a-931f-3c87913bdd43 {"md5": "33b51141ef61aba2089c6c59994454b3", "pid": "1216511039", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1216511039", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1216511039", "source": "GND"}], "variant_name": ["De Villaine, Hortense"], "preferred_name": "Villaine, Hortense de", "country_associated": "fr", "variant_access_point": ["De Villaine, Hortense"], "authorized_access_point": "Villaine, Hortense de", "biographical_information": ["She wrote a book on Epiphenomenalism. Her main purpose is to introduce in France some little known British scientists and philosophers such as Huxley, Maudsley, Clifford, Lewes and so on."]} 2 -2023-07-08 10:31:25.701812 2023-07-08 10:31:25.701818 8190b6e3-8f1c-40f0-af00-07bf1da15619 {"md5": "e75d2e71298408be456f5ba67fde7021", "pid": "1052636209", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1052636209", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1052636209", "source": "GND"}], "variant_name": ["Korth, K.", "Korth, Konrad Gustav Johannes"], "date_of_birth": "31.12.1903", "preferred_name": "Korth, Konrad", "country_associated": "gw", "variant_access_point": ["Korth, K., 1903-", "Korth, Konrad Gustav Johannes, 1903-"], "authorized_access_point": "Korth, Konrad, 1903-"} 1 -2023-07-08 08:15:45.095789 2023-07-08 10:31:27.28867 f25952f7-fd6b-4855-95db-3ae6dfa57ab6 {"md5": "44d9328d2724a72a46f4ccb8e032e8bf", "pid": "1148473181", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1148473181", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1148473181", "source": "GND"}], "variant_name": ["Thoorens, E. J."], "date_of_birth": "1883", "date_of_death": "1953", "preferred_name": "Thoorens, Emile", "country_associated": "be", "variant_access_point": ["Thoorens, E. J., 1883-1953"], "authorized_access_point": "Thoorens, Emile, 1883-1953", "biographical_information": ["Zeichner, Grafiker, Lithograph; vierter Sohn des Grafikers Joseph Jean Thoorens (1850-1926); J. J. Thoorens betrieb um 1900 in Paris das Atelier Thoorens, das später vom ältesten Sohn Charles übernommen wurde, Emile arbeitete als Lithograph im väterlichen Betrieb"]} 2 -2023-07-08 08:16:22.194686 2023-07-08 10:31:27.776369 8d52999e-aa17-4795-afca-08d39e10f914 {"md5": "9b97416b420de69bef12744ccb09baf1", "pid": "1211576035", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifier": "http://d-nb.info/gnd/1211576035", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1211576035", "source": "GND"}], "variant_name": ["Altersasyl Sankt Maria Elisabeth"], "preferred_name": "Altersasyl St. Maria Elisabeth", "country_associated": "sz", "date_of_termination": "19XX", "variant_access_point": ["Altersasyl Sankt Maria Elisabeth"], "date_of_establishment": "1897", "authorized_access_point": "Altersasyl St. Maria Elisabeth", "biographical_information": ["Name 2020: Elisabethenheim Bleichenberg"]} 2 -2023-07-08 08:17:21.987966 2023-07-08 10:31:28.564775 68db1f0f-2a9e-450f-ad81-84dddf9c08f6 {"md5": "583cf8516a4d6f3bb426bcd02ea4c6d9", "pid": "143371193", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/143371193", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143371193", "source": "GND"}], "date_of_birth": "1953", "preferred_name": "Steinbrügge, Lieselotte", "country_associated": "gw", "authorized_access_point": "Steinbrügge, Lieselotte, 1953-"} 2 -2023-07-08 10:31:30.52077 2023-07-08 10:31:30.520793 0ddb9809-c2cb-4236-9a92-268f53a49a93 {"md5": "bb253f408a759b771878285609f401f0", "pid": "120661144", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/120661144", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120661144", "source": "GND"}], "date_of_birth": "1942", "date_of_death": "2019", "preferred_name": "Fontaine, Jean-Marc", "country_associated": "fr", "authorized_access_point": "Fontaine, Jean-Marc, 1942-2019", "biographical_information": ["Franz. Mathematiker u. Wirtschaftswiss."]} 1 -2023-07-08 10:31:31.434492 2023-07-08 10:31:31.434503 df4303d6-40dd-4402-8611-4606e9b4f84e {"md5": "567f0f5bca993543e115afa3b25785e4", "pid": "129388084", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/129388084", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129388084", "source": "GND"}], "variant_name": ["Weaving, Rachel V."], "date_of_birth": "16.10.1947", "preferred_name": "Weaving, Rachel", "country_associated": "xxu", "variant_access_point": ["Weaving, Rachel V., 1947-"], "parallel_access_point": ["Weaving, Rachel, 1947-"], "authorized_access_point": "Weaving, Rachel, 1947-"} 1 -2023-07-08 10:31:37.000226 2023-07-08 10:31:37.000234 5f5ddd93-519c-4134-a6ad-015366209061 {"md5": "d40ebd75ede1eb03725217eb84c02350", "pid": "12031603X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/12031603X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12031603X", "source": "GND"}], "date_of_birth": "1959", "preferred_name": "Schönwälder, Karen", "country_associated": "gw", "authorized_access_point": "Schönwälder, Karen, 1959-"} 1 -2023-07-08 08:17:27.189353 2023-07-08 10:31:39.356531 65ab407c-360f-4182-9a0e-d2041fa99e16 {"md5": "550558e4665b311ea0e4d256043a392c", "pid": "171052412", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/171052412", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/171052412", "source": "GND"}], "variant_name": ["Dholakia, Bakulrai H.", "Dholakia, B. H.", "Dholakiyā, Bakula Harṣadarāya", "Dholakia, Bakul Harshadrai"], "date_of_birth": "1947", "preferred_name": "Dholakia, Bakul H.", "variant_access_point": ["Dholakia, Bakulrai H., 1947-", "Dholakia, B. H., 1947-", "Dholakiyā, Bakula Harṣadarāya, 1947-", "Dholakia, Bakul Harshadrai, 1947-"], "authorized_access_point": "Dholakia, Bakul H., 1947-", "biographical_information": ["Prof., Indian Inst. of Management, Ahmedabad"]} 2 -2023-07-08 10:31:39.834119 2023-07-08 10:31:39.834122 18943330-8177-42f3-950f-9ce76fc74afc {"md5": "ffa11bf86ccb68ad21c42806be3cf373", "pid": "138127948", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://d-nb.info/gnd/138127948", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/138127948", "source": "GND"}], "preferred_name": "Simmen, Denise", "authorized_access_point": "Simmen, Denise"} 1 -2023-07-08 08:16:11.861616 2023-07-08 10:31:41.619809 0bee26b0-7e03-4cdf-8b1c-3144e7431121 {"md5": "7a3b56cb8fcd9f1b46d27310204e6174", "pid": "11904241X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/11904241X", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/11904241X", "source": "GND"}], "variant_name": ["Gullveig Alver, Bente", "Gullveig-Alver, Bente", "Alver, Bente G."], "date_of_birth": "1941", "preferred_name": "Alver, Bente Gullveig", "country_associated": "dk", "variant_access_point": ["Gullveig Alver, Bente, 1941-", "Gullveig-Alver, Bente, 1941-", "Alver, Bente G., 1941-"], "authorized_access_point": "Alver, Bente Gullveig, 1941-", "biographical_information": ["dänische Ethnologin, Professorin für Folkloristik an der Universität Bergen"]} 2 -2023-07-08 08:15:24.593592 2023-07-08 10:31:42.657179 9ec17107-7c52-4dfb-924e-c51577785c61 {"md5": "6d34095626589b45c8d18edd59797f79", "pid": "1095512498", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifier": "http://d-nb.info/gnd/1095512498", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1095512498", "source": "GND"}], "date_of_birth": "ca. 20./21. Jh.", "preferred_name": "Bruzauskas, Sonja", "country_associated": "gw", "authorized_access_point": "Bruzauskas, Sonja, ca. 20./21. Jh."} 2 +2024-09-11 09:00:07.102095 2024-09-11 09:00:07.102101 e3369939-9f08-48f2-95a6-05e0c9402d4e {"md5": "e64fa214664468917fb7ac5216482c27", "pid": "000018953", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1895-8", "source": "GND"}], "preferred_name": "Konferencija po Okolorudnomu Metasomatizmu", "authorized_access_point": "Konferencija po Okolorudnomu Metasomatizmu"} 1 +2024-09-11 09:00:07.166616 2024-09-11 09:00:07.166619 4dabbb12-8946-4c70-8ea0-fc14ae9cb855 {"md5": "f64401a505be558c03706201a08422d1", "pid": "00002676X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2676-1", "source": "GND"}], "preferred_name": "Nobel Conference", "authorized_access_point": "Nobel Conference, Gustavus Adolphus College, Saint Peter, Minn."} 1 +2024-09-11 09:00:07.213358 2024-09-11 09:00:07.213361 1f2d6493-42bb-411f-8dce-1df3769a7768 {"md5": "6a74846aab4897f9ade6c252dad68b4d", "pid": "000089540", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/8954-0", "source": "GND"}], "variant_name": ["Congrès International de Gérontologie", "Internationaler Kongreß für Gerontologie", "Meždunarodnyj Kongress Gerontologov", "Congres international de gérontologie", "World Congress of Gerontology", "Internationaler Kongress für Gerontologie", "Congress of Gerontology", "International Gerontological Congress", "International Association of Gerontology", "World Congress in Gerontology", "Congress of the International Association of Gerontology"], "preferred_name": "International Congress of Gerontology", "variant_access_point": ["Congrès International de Gérontologie", "Internationaler Kongreß für Gerontologie", "Meždunarodnyj Kongress Gerontologov", "Congres international de gérontologie", "World Congress of Gerontology", "Internationaler Kongress für Gerontologie", "Congress of Gerontology", "International Gerontological Congress", "International Association of Gerontology. Congress", "World Congress in Gerontology", "Congress of the International Association of Gerontology"], "authorized_access_point": "International Congress of Gerontology"} 1 +2024-09-11 09:00:07.259451 2024-09-11 09:00:07.259455 6e9ebb7a-a94c-4527-a3fc-4de2ea4baafa {"md5": "c12e31a242fe5b1bc48004bdd850c321", "pid": "000115460", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/11546-0", "source": "GND"}], "preferred_name": "Philosophisch-Theologische Hauslehranstalt", "country_associated": "au", "authorized_access_point": "Philosophisch-Theologische Hauslehranstalt. Mödling"} 1 +2024-09-11 09:00:07.322697 2024-09-11 09:00:07.3227 10f91c0f-2b3a-4b35-ae82-23c84ac731f6 {"md5": "90b83a4e5fcd22c5ebaefe785a022a08", "pid": "000125121", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12512-X", "source": "GND"}], "preferred_name": "Zonal'naja Konferencija po Fizike Magnitnych Javlenij", "authorized_access_point": "Zonal'naja Konferencija po Fizike Magnitnych Javlenij"} 1 +2024-09-11 09:00:07.386455 2024-09-11 09:00:07.386458 d2580931-7d29-49fc-9dbb-c19562bafb19 {"md5": "97ceb0c5034bc56b64ae4012bd1c111d", "pid": "000132764", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13276-7", "source": "GND"}], "variant_name": ["Facoltà di scienze politiche"], "preferred_name": "Università degli studi di Genova. Facoltà di scienze politiche", "country_associated": "it", "variant_access_point": ["Facoltà di scienze politiche. Università degli studi di Genova"], "authorized_access_point": "Università degli studi di Genova. Facoltà di scienze politiche"} 1 +2024-09-11 09:00:07.433198 2024-09-11 09:00:07.433202 02c9896c-81bc-4113-bbc7-1064610aa63b {"md5": "fc20bb8d75afe47ed74cc98dd4c5a37f", "pid": "000139076", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13907-5", "source": "GND"}], "variant_name": ["Commonwealth Treasury", "Australien. Treasurer", "Department of the Treasury", "Treasury", "Treasurer", "Australien. Department of Treasury", "Department of Treasury", "Australien. Treasury", "Treasury Department. Australia", "Australien. Commonwealth Treasury", "Commonwealth Treasury. Australein", "Australien. Finanzministerium"], "preferred_name": "Australien. Department of the Treasury", "country_associated": "at", "variant_access_point": ["Commonwealth Treasury. Australien", "Australien. Treasurer", "Department of the Treasury. Australien", "Treasury. Australien", "Treasurer. Australien", "Australien. Department of Treasury", "Department of Treasury. Australien", "Australien. Treasury", "Treasury Department. Australia", "Australien. Commonwealth Treasury", "Commonwealth Treasury. Australein", "Australien. Finanzministerium. Ehemalige Vorzugsbenennung SWD"], "authorized_access_point": "Australien. Department of the Treasury", "biographical_information": ["\\"Commonwealth Treasury began operations in Melbourne in January 1901, the smallest of the seven Commonwealth departments established with Federation.\\"", "gegr. 1901"]} 1 +2024-09-11 09:00:07.482723 2024-09-11 09:00:07.482726 51635452-32ed-4102-ab81-ce1491f240b7 {"md5": "b0da55eb402806ebcb2f4329aec18519", "pid": "000140899", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14089-2", "source": "GND"}], "variant_name": ["Columbia University. African Law Center", "African Law Center", "Columbia University. African Law Center"], "preferred_name": "African Law Center", "country_associated": "xxu", "variant_access_point": ["Columbia University. African Law Center", "African Law Center. New York, NY", "Columbia University. New York, NY. African Law Center"], "authorized_access_point": "African Law Center"} 1 +2024-09-11 09:00:07.531049 2024-09-11 09:00:07.531053 e2861ae5-427f-41db-ab19-611d3d2c04ec {"md5": "f31e35ad1ea6d2af7520e42e698030d0", "pid": "00014388X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14388-1", "source": "GND"}], "variant_name": ["Univerzitet u Nišu. Pravno-Ekonomski Fakultet", "Pravno-Ekonomski Fakultet", "Pravni Fakultet"], "preferred_name": "Univerzitet u Nišu. Pravni Fakultet", "variant_access_point": ["Univerzitet u Nišu. Pravno-Ekonomski Fakultet", "Pravno-Ekonomski Fakultet. Univerzitet u Nišu", "Pravni Fakultet. Univerzitet u Nišu"], "parallel_access_point": ["Университет у Нишу. Правни Факултет"], "authorized_access_point": "Univerzitet u Nišu. Pravni Fakultet"} 1 +2024-09-11 09:00:14.508829 2024-09-11 09:00:14.508834 5b19da35-9ccd-4752-a922-07b4f12cdbbf {"md5": "3206cbd031a857b56a1d7c92fb99b535", "pid": "004088212", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1015722-0", "source": "GND"}], "variant_name": ["Ministerstvo Kultury", "MK ČSR"], "preferred_name": "Česká SR. Ministerstvo Kultury", "variant_access_point": ["Ministerstvo Kultury. Česká SR", "MK ČSR. Abkuerzung"], "authorized_access_point": "Česká SR. Ministerstvo Kultury"} 1 +2024-09-11 09:00:07.581865 2024-09-11 09:00:07.581869 c6deb5b9-d4c3-43c1-8594-2c66fca9809c {"md5": "12bd00cd830ffaaf4e482075c70cb2d4", "pid": "000151408", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/15140-3", "source": "GND"}], "variant_name": ["Deutsche Akademie der Wissenschaften. Klasse für Medizinische Wissenschaften. Sektion für Geschwulstkrankheiten"], "preferred_name": "Deutsche Akademie der Wissenschaften. Sektion für Geschwulstkrankheiten", "variant_access_point": ["Deutsche Akademie der Wissenschaften. Berlin, Ost. Klasse für Medizinische Wissenschaften. Sektion für Geschwulstkrankheiten"], "date_of_establishment": "1951", "authorized_access_point": "Deutsche Akademie der Wissenschaften. Berlin, Ost. Sektion für Geschwulstkrankheiten"} 1 +2024-09-11 09:00:07.629671 2024-09-11 09:00:07.629675 63de79f5-a74d-4b63-9a19-daeb9599dfc9 {"md5": "d26fa6ffb4f800b2dd85f489332745f0", "pid": "000161632", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16163-9", "source": "GND"}], "variant_name": ["Universidade de São Paulo. Instituto Oceanográfico"], "preferred_name": "Instituto Oceanográfico", "country_associated": "bl", "variant_access_point": ["Universidade de São Paulo. Instituto Oceanográfico"], "authorized_access_point": "Instituto Oceanográfico. São Paulo"} 1 +2024-09-11 09:00:07.681013 2024-09-11 09:00:07.681017 9b441455-63ce-4a38-94a6-5ce8af326be9 {"md5": "44938b8a9c0f4199928106a9a2189437", "pid": "000163791", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16379-X", "source": "GND"}], "preferred_name": "Queen Elizabeth Medical Centre", "country_associated": "xxk", "authorized_access_point": "Queen Elizabeth Medical Centre. Birmingham"} 1 +2024-09-11 09:00:07.731747 2024-09-11 09:00:07.731751 30291e16-ee3d-4dc9-a04d-fa80f6bf1321 {"md5": "3736234f5d5ad83bb3cd2464a6b694d4", "pid": "000167088", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16708-3", "source": "GND"}], "preferred_name": "Seminar für Umweltschutz", "authorized_access_point": "Seminar für Umweltschutz"} 1 +2024-09-11 09:00:07.779372 2024-09-11 09:00:07.779377 335d5945-92d6-456c-aac8-ac2ea4ae79c4 {"md5": "fb9cc91faac381154144a22a1384cb7b", "pid": "000175978", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/17597-3", "source": "GND"}], "variant_name": ["Auskunftsbureau der Deutschen Bibliotheken", "Öffentliche Wissenschaftliche Bibliothek. Auskunftsbüro der Deutschen Bibliotheken", "Deutsche Staatsbibliothek. Auskunftsbüro der Deutschen Bibliotheken"], "preferred_name": "Auskunftsbüro der Deutschen Bibliotheken", "variant_access_point": ["Auskunftsbureau der Deutschen Bibliotheken", "Öffentliche Wissenschaftliche Bibliothek. Auskunftsbüro der Deutschen Bibliotheken", "Deutsche Staatsbibliothek. Auskunftsbüro der Deutschen Bibliotheken"], "date_of_establishment": "1905", "authorized_access_point": "Auskunftsbüro der Deutschen Bibliotheken"} 1 +2024-09-11 09:00:07.831646 2024-09-11 09:00:07.831649 59101160-99fe-4d6f-8191-ca5b54613f75 {"md5": "dda72521c04cfb8287de427a31ada2e9", "pid": "000178020", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/17802-0", "source": "GND"}], "preferred_name": "Verband Rheinischer Landwirtschaftlicher Genossenschaften", "country_associated": "gw", "authorized_access_point": "Verband Rheinischer Landwirtschaftlicher Genossenschaften"} 1 +2024-09-11 09:00:07.883334 2024-09-11 09:00:07.883337 c2f0be96-47fd-494b-92fb-436b3d1b145a {"md5": "ec0b4c7d5df2178baf604159d979e403", "pid": "000193364", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/19336-7", "source": "GND"}], "variant_name": ["Obervolta. Ministère du Plan du Développement Rural, de l'Environnement et du Tourisme. Organisme Regional de Développement du Sudouest", "Organisme Regional de Développement du Sudouest"], "preferred_name": "Obervolta. Organisme Regional de Développement du Sudouest", "variant_access_point": ["Obervolta. Ministère du Plan du Développement Rural, de l'Environnement et du Tourisme. Organisme Regional de Développement du Sudouest", "Organisme Regional de Développement du Sudouest. Obervolta"], "authorized_access_point": "Obervolta. Organisme Regional de Développement du Sudouest"} 1 +2024-09-11 09:00:07.936858 2024-09-11 09:00:07.936861 1577ac46-0d51-4d06-aca3-d6f4a4fbb929 {"md5": "e817bb11772f3101ac3a8eac67f6cae9", "pid": "000250422", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/25042-9", "source": "GND"}], "preferred_name": "Universität zu Köln. Studentenausschuss", "country_associated": "gw", "authorized_access_point": "Universität zu Köln. Studentenausschuss"} 1 +2024-09-11 09:00:07.986197 2024-09-11 09:00:07.9862 0666045e-4e3b-4801-bc4c-2ea1ca0d108d {"md5": "4ca7d6ca4a5f6bb040b251fc32983ce5", "pid": "000269905", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/26990-6", "source": "GND"}], "variant_name": ["Association for Psychoanalysis", "Association for Psychoanalysis"], "preferred_name": "Philadelphia Association for Psychoanalysis", "country_associated": "xxu", "variant_access_point": ["Association for Psychoanalysis. Philadelphia, Pa.", "Association for Psychoanalysis. Philadelphia, PA"], "authorized_access_point": "Philadelphia Association for Psychoanalysis"} 1 +2024-09-11 09:00:08.033937 2024-09-11 09:00:08.03394 3f3bfadb-38d6-4575-8954-ba13494431da {"md5": "10d5d5794783bb001d25186a2566b750", "pid": "00037959X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/37959-1", "source": "GND"}], "variant_name": ["Société Mycologique", "SMF"], "preferred_name": "Société Mycologique de France", "country_associated": "fr", "variant_access_point": ["Société Mycologique", "SMF. Abkuerzung"], "authorized_access_point": "Société Mycologique de France"} 1 +2024-09-11 09:00:08.079966 2024-09-11 09:00:08.079968 43dcf16f-876f-4bd0-a45f-ee7e82de4915 {"md5": "fed5a8b4cdb261fbe061056649c990af", "pid": "000390003", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/39000-8", "source": "GND"}], "variant_name": ["Stiftung Museum für Hamburgische Geschichte", "Muzeum Historii Hamburga", "Museum of Hamburg History", "Sammlung Hamburgischer Altertümer"], "preferred_name": "Museum für Hamburgische Geschichte", "variant_access_point": ["Stiftung Museum für Hamburgische Geschichte", "Muzeum Historii Hamburga", "Museum of Hamburg History", "Sammlung Hamburgischer Altertümer"], "date_of_establishment": "2016", "authorized_access_point": "Museum für Hamburgische Geschichte"} 1 +2024-09-11 09:00:08.130405 2024-09-11 09:00:08.130409 fb86ee2a-37cf-4a4e-9083-58467f676246 {"md5": "d58690b595d72c314959cce339de3e09", "pid": "000409928", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/40992-3", "source": "GND"}], "variant_name": ["Catholic Psychological Association"], "preferred_name": "American Catholic Psychological Association", "country_associated": "xxu", "variant_access_point": ["Catholic Psychological Association. USA"], "authorized_access_point": "American Catholic Psychological Association"} 1 +2024-09-11 09:00:08.178999 2024-09-11 09:00:08.179002 0ec8ef6e-fd71-43ca-8c61-172b621c26fc {"md5": "1c5f7398d41d3417ec985448c8a265d1", "pid": "000425729", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/42572-2", "source": "GND"}], "variant_name": ["SAF", "SAF", "S.A.F."], "preferred_name": "Society of American Foresters", "country_associated": "xxu", "variant_access_point": ["SAF. Abkuerzung", "SAF. Society of American Foresters", "S.A.F.. Society of American Foresters"], "authorized_access_point": "Society of American Foresters"} 1 +2024-09-11 09:00:08.227499 2024-09-11 09:00:08.227502 090ae3e3-4d8b-4fb7-a7df-7d0bd03e1e0e {"md5": "9f654980e729f18497ad4e143b9f34a2", "pid": "000438049", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/43804-2", "source": "GND"}], "variant_name": ["Institut für Militärstrategische Grundlagenforschung"], "preferred_name": "Landesverteidigungsakademie. Institut für Militärstrategische Grundlagenforschung", "country_associated": "au", "date_of_termination": "1975", "variant_access_point": ["Institut für Militärstrategische Grundlagenforschung. Landesverteidigungsakademie"], "authorized_access_point": "Landesverteidigungsakademie. Institut für Militärstrategische Grundlagenforschung"} 1 +2024-09-11 09:00:08.274369 2024-09-11 09:00:08.274372 e5b236b4-3a9e-4fff-8d4e-ca5975250a11 {"md5": "fdd06b66d579cc3a18ddd724c0ef1881", "pid": "000441678", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/44167-3", "source": "GND"}], "variant_name": ["Freie Sozialistische Jugend", "FSJ", "Sozialistische Jugend Deutschlands"], "preferred_name": "Freie Sozialistische Jugend Deutschlands", "date_of_termination": "18.10.1919", "variant_access_point": ["Freie Sozialistische Jugend", "FSJ. Abkuerzung", "Sozialistische Jugend Deutschlands"], "date_of_establishment": "26.10.1918", "authorized_access_point": "Freie Sozialistische Jugend Deutschlands"} 1 +2024-09-11 09:00:08.323696 2024-09-11 09:00:08.323698 2db59ab3-16eb-4dd9-807d-5080e281a885 {"md5": "0837f5001a805a966dd7a73636702903", "pid": "00045561X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/45561-1", "source": "GND"}], "preferred_name": "San Francisco Bay Area Women in the Technical Trades", "country_associated": "xxu", "authorized_access_point": "San Francisco Bay Area Women in the Technical Trades"} 1 +2024-09-11 09:00:08.375609 2024-09-11 09:00:08.375613 989b5c2f-9e48-4e43-82a4-703e25ce75a7 {"md5": "e6204add55cc5ea85ba95217f799d16f", "pid": "000549568", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/54956-3", "source": "GND"}], "preferred_name": "Indian Agricultural Research Institute. Library", "country_associated": "ii", "authorized_access_point": "Indian Agricultural Research Institute. Library"} 1 +2024-09-11 09:00:08.430211 2024-09-11 09:00:08.430214 7a4d7fb7-ab06-4d4b-8acf-69bd5fa5fb46 {"md5": "d3aa5a54d8ef2458588447bf6ebd7b3d", "pid": "000555851", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/55585-X", "source": "GND"}], "variant_name": ["Polska Akademia Nauk. Komisja Metalurgiczno-Odlewnicza", "Komisja Metalurgiczno-Odlewnicza", "Polska Akademia Nauk. Oddział w Krakowie. Commission of Metallurgy and Foundry", "Polska Akademia Nauk. Komissija Metallurgii i Litejnogo Dela", "Polska Akademia Nauk. Metallurgo-Litejnaja Komissija", "Commission of Metallurgy and Foundry", "Komissija Metallurgii i Litejnogo Dela", "Metallurgo-Litejnaja Komissija", "Polska Akademia Nauk. Oddział w Krakowie. Metallurgo-Litejnaja Komissija", "Polska Akademia Nauk. Oddział w Krakowie. Komissija Metallurgii i Litejnogo Dela"], "preferred_name": "Polska Akademia Nauk. Oddział w Krakowie. Komisja Metalurgiczno-Odlewnicza", "country_associated": "pl", "variant_access_point": ["Polska Akademia Nauk. Komisja Metalurgiczno-Odlewnicza", "Komisja Metalurgiczno-Odlewnicza", "Polska Akademia Nauk. Oddział w Krakowie. Commission of Metallurgy and Foundry", "Polska Akademia Nauk. Komissija Metallurgii i Litejnogo Dela", "Polska Akademia Nauk. Metallurgo-Litejnaja Komissija", "Commission of Metallurgy and Foundry", "Komissija Metallurgii i Litejnogo Dela. Warschau", "Metallurgo-Litejnaja Komissija", "Polska Akademia Nauk. Oddział w Krakowie. Metallurgo-Litejnaja Komissija", "Polska Akademia Nauk. Oddział w Krakowie. Komissija Metallurgii i Litejnogo Dela"], "authorized_access_point": "Polska Akademia Nauk. Oddział w Krakowie. Komisja Metalurgiczno-Odlewnicza"} 1 +2024-09-11 09:00:08.481919 2024-09-11 09:00:08.481921 874a03e4-2e16-48a5-af13-66ceecbb6193 {"md5": "01fdcb0579a9537db9a5ff3c6e766c9b", "pid": "000602140", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/60214-0", "source": "GND"}], "variant_name": ["International Conference on Plasma Science, IEEE", "IEEE International Conference on Plasma Science", "Plasma Science", "ICOPS", "IEEE ICOPS", "ICOPS Conference"], "preferred_name": "International Conference on Plasma Science", "variant_access_point": ["International Conference on Plasma Science, IEEE", "IEEE International Conference on Plasma Science", "Plasma Science. International Conference", "ICOPS. International Conference on Plasma Science", "IEEE ICOPS. Institute of Electrical and Electronics Engineers International Conference on Plasma Science", "ICOPS Conference"], "authorized_access_point": "International Conference on Plasma Science"} 1 +2024-09-11 09:00:08.539177 2024-09-11 09:00:08.539182 945a410b-27d5-4aeb-b847-458b0de5bea0 {"md5": "2688635bc20f6f9f001858d5d74ad712", "pid": "000613258", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/61325-3", "source": "GND"}], "variant_name": ["NOC"], "preferred_name": "Nuttall Ornithological Club", "country_associated": "xxu", "variant_access_point": ["NOC. Nuttall Ornithological Club. Abkuerzung"], "date_of_establishment": "1873", "authorized_access_point": "Nuttall Ornithological Club"} 1 +2024-09-11 09:00:08.592097 2024-09-11 09:00:08.592101 b8e1e4f5-76ca-4f1b-a50b-544224483e35 {"md5": "83914bbb9b0db1026bb1f07ccfaad35a", "pid": "000613665", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/61366-6", "source": "GND"}], "preferred_name": "Conference on Rare Earth Research", "authorized_access_point": "Conference on Rare Earth Research"} 1 +2024-09-11 09:00:08.645282 2024-09-11 09:00:08.645286 206458db-8178-4142-a85d-75929b448e3f {"md5": "7ae14a3ac1af300836866bc6411af2ea", "pid": "000662348", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/66234-3", "source": "GND"}], "variant_name": ["Société d'études paléontologiques et palethnographiques de Provence"], "preferred_name": "Société d'Etudes Paléontologiques et Palethnographiques de Provence", "country_associated": "fr", "variant_access_point": ["Société d'études paléontologiques et palethnographiques de Provence"], "date_of_establishment": "1948", "authorized_access_point": "Société d'Etudes Paléontologiques et Palethnographiques de Provence"} 1 +2024-09-11 09:00:08.696813 2024-09-11 09:00:08.696817 0a369e4e-51e5-438e-a49e-35e74943210c {"md5": "005b2cc676d0401a73fd5da7ae08532b", "pid": "000666394", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/66639-7", "source": "GND"}], "variant_name": ["CICIG"], "preferred_name": "International Geophysical Committee. Commissione Italiana", "country_associated": "it", "variant_access_point": ["CICIG. Abkuerzung"], "authorized_access_point": "International Geophysical Committee. Commissione Italiana"} 1 +2024-09-11 09:00:08.74526 2024-09-11 09:00:08.745265 0a83be51-63cf-4355-b9e9-2f112295d90f {"md5": "a64d22a035cb8fda8911ae79849ebca3", "pid": "000746568", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/74656-3", "source": "GND"}], "preferred_name": "Höhere Bürgerschule", "date_of_termination": "1892", "date_of_establishment": "1889", "authorized_access_point": "Höhere Bürgerschule. Cottbus"} 1 +2024-09-11 09:00:08.793361 2024-09-11 09:00:08.793365 c517a0be-f8bb-4b32-b9a1-35fe27acbb76 {"md5": "c96446410d59cc064cf5ce0bdfd0ada1", "pid": "00074669X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/74669-1", "source": "GND"}], "variant_name": ["Gewerbeverein", "Handwerkerverband"], "preferred_name": "Gewerbeverein und Handwerkerverband", "variant_access_point": ["Gewerbeverein. Mannheim, Gewerbeverein und Handwerkerverband", "Handwerkerverband. Mannheim"], "authorized_access_point": "Gewerbeverein und Handwerkerverband. Mannheim"} 1 +2024-09-11 09:00:08.84079 2024-09-11 09:00:08.840793 fbb00ca5-27dc-48f1-844c-8750eceb7aa6 {"md5": "15b17880c133682a3d5b60d2cc772059", "pid": "000749915", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/74991-6", "source": "GND"}], "variant_name": ["Cancernet"], "preferred_name": "Krebsliteratur-Informationsdienst Cancernet", "country_associated": "gw", "variant_access_point": ["Cancernet. Heidelberg"], "authorized_access_point": "Krebsliteratur-Informationsdienst Cancernet. Heidelberg"} 1 +2024-09-11 09:00:08.918669 2024-09-11 09:00:08.918673 4387153d-4f4b-490f-a329-6dcdf3c0f524 {"md5": "ae43d092f2bf4eef1ac8e21203d46965", "pid": "000821829", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/82182-2", "source": "GND"}], "variant_name": ["Auxiliary Bible Society"], "preferred_name": "Calcutta Auxiliary Bible Society", "country_associated": "ii", "variant_access_point": ["Auxiliary Bible Society. Kalkutta"], "authorized_access_point": "Calcutta Auxiliary Bible Society"} 1 +2024-09-11 09:00:08.968643 2024-09-11 09:00:08.968645 2d53bad3-6cd7-4925-9631-ca083c34f989 {"md5": "fd03e661e1f448591312cddd158478ac", "pid": "000827673", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/82767-8", "source": "GND"}], "preferred_name": "Technische Hochschule München. Brautechnische Abteilung", "date_of_establishment": "1930,3.Juli", "authorized_access_point": "Technische Hochschule München. Brautechnische Abteilung", "biographical_information": ["Sitz: Weihenstephan"]} 1 +2024-09-11 09:00:09.016768 2024-09-11 09:00:09.016771 d33ec300-159f-4c5a-a09c-8aa112135689 {"md5": "9a46bc219d073afcb384ba0e68552297", "pid": "000837318", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/83731-3", "source": "GND"}], "variant_name": ["Longman, Green, Longman, Roberts & Green", "Longman and Co.", "Messrs. Longman, Green, Longman, Roberts and Green", "Green, Longman, Roberts and Green, Longman", "Roberts and Green, Longman, Green, Longman"], "preferred_name": "Longman, Green, Longman, Roberts and Green", "country_associated": "xxk", "date_of_termination": "1865", "variant_access_point": ["Longman, Green, Longman, Roberts & Green", "Longman and Co.. London, Longman, Green, Longman, Roberts and Green", "Messrs. Longman, Green, Longman, Roberts and Green. London", "Green, Longman, Roberts and Green, Longman. London", "Roberts and Green, Longman, Green, Longman. London"], "date_of_establishment": "1862", "authorized_access_point": "Longman, Green, Longman, Roberts and Green. London"} 1 +2024-09-11 09:00:09.066879 2024-09-11 09:00:09.066883 d0853bb5-e887-4227-a54c-065f03040a6b {"md5": "326490f2b44ec2bb9266b1f49b4d281b", "pid": "000842362", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/84236-9", "source": "GND"}], "variant_name": ["Türk ve Islâm Sanʹatları Tarihi Enstitüsü", "Ankara Üniversitesi. İlâhiyat Fakültesi. Türk ve Islâm San'atları Tarihi Enstitüsü", "Institute of History of Turkish and Islamic Arts", "Ankara Üniversitesi. Institute of History of Turkish and Islamic Arts", "Ankara Üniversitesi. İlâhiyat Fakültesi. Institute of History of Turkish and Islamic Arts", "Ankara Üniversitesi. Türk ve Islâm Sanʹatları Enstitüsü", "Türk ve Islâm Sanʹatları Enstitüsü", "Ankara Üniversitesi. İlâhiyat Fakültesi. Türk ve Islâm Tarihi Enstitüsü"], "preferred_name": "Ankara Üniversitesi. Türk ve Islâm Sanʹatları Tarihi Enstitüsü", "country_associated": "tu", "variant_access_point": ["Türk ve Islâm Sanʹatları Tarihi Enstitüsü", "Ankara Üniversitesi. İlâhiyat Fakültesi. Türk ve Islâm San'atları Tarihi Enstitüsü", "Institute of History of Turkish and Islamic Arts", "Ankara Üniversitesi. Institute of History of Turkish and Islamic Arts", "Ankara Üniversitesi. İlâhiyat Fakültesi. Institute of History of Turkish and Islamic Arts", "Ankara Üniversitesi. Türk ve Islâm Sanʹatları Enstitüsü", "Türk ve Islâm Sanʹatları Enstitüsü", "Ankara Üniversitesi. İlâhiyat Fakültesi. Türk ve Islâm Tarihi Enstitüsü"], "authorized_access_point": "Ankara Üniversitesi. Türk ve Islâm Sanʹatları Tarihi Enstitüsü"} 1 +2024-09-11 09:00:09.116368 2024-09-11 09:00:09.11637 8768f788-7271-4ff1-84e2-bad27747e891 {"md5": "9e8208ad61ea087c4fda991e5f2a1c81", "pid": "000844470", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/84447-0", "source": "GND"}], "preferred_name": "Evangelische Gemeinde", "country_associated": "au", "authorized_access_point": "Evangelische Gemeinde. Turn"} 1 +2024-09-11 09:00:09.164781 2024-09-11 09:00:09.164788 804a5432-12e3-4302-a94d-d02dcb50e185 {"md5": "886ac55711b06565d5fd0baa90a5cd27", "pid": "000903515", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/90351-6", "source": "GND"}], "variant_name": ["Budapesti Műszaki Egyetem. Faculty of Electrical Engineering", "Villamosmérnöki Kar", "Faculty of Electrical Engineering"], "preferred_name": "Budapesti Műszaki Egyetem. Villamosmérnöki Kar", "country_associated": "hu", "variant_access_point": ["Budapesti Műszaki Egyetem. Faculty of Electrical Engineering", "Villamosmérnöki Kar. Budapest", "Faculty of Electrical Engineering. Budapest"], "authorized_access_point": "Budapesti Műszaki Egyetem. Villamosmérnöki Kar"} 1 +2024-09-11 09:00:09.216085 2024-09-11 09:00:09.216087 54220258-d22f-40c8-b4cf-8a0a5d4ca510 {"md5": "302a651304e0fb1fe1ec3f2f629c6e38", "pid": "000907820", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/90782-0", "source": "GND"}], "variant_name": ["Geometer-Verein", "Württemb. Geometer-Verein"], "preferred_name": "Württembergischer Geometer-Verein", "variant_access_point": ["Geometer-Verein. Württemberg", "Württemb. Geometer-Verein"], "authorized_access_point": "Württembergischer Geometer-Verein"} 1 +2024-09-11 09:00:09.269689 2024-09-11 09:00:09.269692 1da24b3c-5bfd-4893-ba48-5f9daa6ee7bb {"md5": "eef4adf72fc92936e8d752473edb7ded", "pid": "001106767", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/110676-4", "source": "GND"}], "preferred_name": "United Presbyterian Church in the USA. Department of History", "country_associated": "xxu", "authorized_access_point": "United Presbyterian Church in the USA. Department of History"} 1 +2024-09-11 09:00:09.321136 2024-09-11 09:00:09.321139 6a30a84f-554a-4697-b7de-98c09e2b4b1e {"md5": "a6f8959a14f3b42e6e88648eb5230931", "pid": "001116371", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/111637-X", "source": "GND"}], "variant_name": ["Kredit-Verein"], "preferred_name": "Credit-Verein", "date_of_termination": "1879", "variant_access_point": ["Kredit-Verein. Altona"], "authorized_access_point": "Credit-Verein. Altona"} 1 +2024-09-11 09:00:09.371066 2024-09-11 09:00:09.371069 46925365-7e1e-4b8a-b5f6-fb90eb42704c {"md5": "21e3ee0a407f8289484d8a147ffe22d2", "pid": "00112207X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/112207-1", "source": "GND"}], "variant_name": ["PIMA", "PIMA", "P.I.M.A.", "American Pulp and Paper Mill Superintendents Association"], "preferred_name": "Paper Industry Management Association", "country_associated": "xxu", "variant_access_point": ["PIMA. Abkuerzung", "PIMA. Paper Industry Management Association", "P.I.M.A.", "American Pulp and Paper Mill Superintendents Association"], "authorized_access_point": "Paper Industry Management Association"} 1 +2024-09-11 09:00:09.418848 2024-09-11 09:00:09.41885 ee78e71c-0614-4814-be4f-2c9200bdc665 {"md5": "d029984082dd18fd4ff9acd5bd358cb1", "pid": "001148028", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/114802-3", "source": "GND"}], "variant_name": ["Occupational Safety and Health Review Commission", "OSAHRC"], "preferred_name": "USA. Occupational Safety and Health Review Commission", "country_associated": "xxu", "variant_access_point": ["Occupational Safety and Health Review Commission. USA", "OSAHRC. Abkuerzung"], "authorized_access_point": "USA. Occupational Safety and Health Review Commission"} 1 +2024-09-11 09:00:09.469184 2024-09-11 09:00:09.469187 3267f390-28ef-4ae4-8a3a-064cea34d91a {"md5": "20688b840cb35bb9b8b014a7d1840623", "pid": "001156373", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/115637-8", "source": "GND"}], "preferred_name": "Reichspostdirektion", "authorized_access_point": "Reichspostdirektion. Potsdam"} 1 +2024-09-11 09:00:09.519225 2024-09-11 09:00:09.519228 c89e16f6-9cd1-409d-875a-90ac583149dc {"md5": "736014cd3bbcafdc31b1e2ce7e44fc86", "pid": "001170325", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/117032-6", "source": "GND"}], "variant_name": ["Library", "Būhār Library", "Būhār Library", "Imperial Library"], "preferred_name": "Imperial Library", "country_associated": "ii", "variant_access_point": ["Library. Kalkutta", "Būhār Library. Kalkutta", "Būhār Library", "Imperial Library. Ehemalige Vorzugsbenennung SWD"], "authorized_access_point": "Imperial Library. Kalkutta"} 1 +2024-09-11 09:00:09.570079 2024-09-11 09:00:09.570083 36ec6391-074e-47b9-b01b-b002cc5628cc {"md5": "6e0e45547c5af703ab11b56266b8c477", "pid": "001183834", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/118383-7", "source": "GND"}], "variant_name": ["Auswanderer-Mission"], "preferred_name": "Auswanderermission", "variant_access_point": ["Auswanderer-Mission. Bremen"], "date_of_establishment": "1918", "authorized_access_point": "Auswanderermission. Bremen"} 1 +2024-09-11 09:00:09.634813 2024-09-11 09:00:09.634816 a9b62e39-54ea-4af2-995c-f63ea40e1559 {"md5": "2bd60a01e01b0d1350557d45430d1aa2", "pid": "001187813", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/118781-8", "source": "GND"}], "preferred_name": "Verein zur Förderung der Heimatforschung und des Heimatmuseums für die Prignitz in Heiligengrabe", "authorized_access_point": "Verein zur Förderung der Heimatforschung und des Heimatmuseums für die Prignitz in Heiligengrabe"} 1 +2024-09-11 09:00:09.684973 2024-09-11 09:00:09.684976 f0ea56f0-a94a-48e7-a50a-7634e04da77e {"md5": "3e31e2b1690ee740123d03780327fef1", "pid": "001192396", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/119239-5", "source": "GND"}], "variant_name": ["Golf Union"], "preferred_name": "British Golf Union", "country_associated": "xxk", "variant_access_point": ["Golf Union. Großbritannien"], "authorized_access_point": "British Golf Union"} 1 +2024-09-11 09:00:11.399396 2024-09-11 09:00:11.399401 1e41355b-692b-49d2-b67f-d204c0c7964c {"md5": "62ce28accd140c87f7d5e0960fe7f651", "pid": "00221153X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/221153-1", "source": "GND"}], "variant_name": ["Confédération des Educateurs Américains", "Confederación de Educadores Americanos", "CEA"], "preferred_name": "Confederation of American Educators", "variant_access_point": ["Confédération des Educateurs Américains", "Confederación de Educadores Americanos", "CEA. Abkuerzung"], "authorized_access_point": "Confederation of American Educators"} 1 +2024-09-11 09:00:09.734756 2024-09-11 09:00:09.73476 3dc3a8c8-7eb5-4628-95a9-7d2ce34620e3 {"md5": "28f1a30a53a57d4d1cbb7db6d4875fd0", "pid": "001226355", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/122635-6", "source": "GND"}], "variant_name": ["Igazságügyminisztérium", "Ungarn. Ministry of Justice", "Ministry of Justice", "Ungarn. Igazságügyminisztérium", "Igazságügyi Minisztérium", "Ungarn. Justizministerium", "Justizministerium", "Ungarn. Igazságügyi Minisztérium. Hauptabteilung für Wissenschaft und Information", "Ungarn. Igazságügyministerium", "Magyar Királyi Igazságügyministerium", "Királyi Igazságügyministerium", "Igazságügyministerium", "Magyar Királyi Igazságügyminisztérium", "Királyi Igazságügyminisztérium", "Ungarn. Igazságügyi Minisztérium. Jogi Informatikai Főosztály", "Ungarn. Igazságügyi Minisztérium. Tudományos és Tájékoztatási Főosztály", "Ungarn. Igazságügyi Minisztérium. Törvényelökészítő Főosztály", "Kir. Igazságügyminiszterium", "M. Kir. Igazságügyminiszterium", "Königlich Ungarisches Justizministerium", "Königliches Ungarisches Justizministerium"], "preferred_name": "Ungarn. Igazságügyi Minisztérium", "country_associated": "hu", "variant_access_point": ["Igazságügyminisztérium. Ungarn", "Ungarn. Ministry of Justice", "Ministry of Justice. Ungarn", "Ungarn. Igazságügyminisztérium", "Igazságügyi Minisztérium. Ungarn", "Ungarn. Justizministerium. Ehemalige Vorzugsbenennung SWD", "Justizministerium. Ungarn", "Ungarn. Igazságügyi Minisztérium. Hauptabteilung für Wissenschaft und Information", "Ungarn. Igazságügyministerium", "Magyar Királyi Igazságügyministerium", "Királyi Igazságügyministerium. Ungarn", "Igazságügyministerium. Ungarn", "Magyar Királyi Igazságügyminisztérium", "Királyi Igazságügyminisztérium. Ungarn", "Ungarn. Igazságügyi Minisztérium. Jogi Informatikai Főosztály", "Ungarn. Igazságügyi Minisztérium. Tudományos és Tájékoztatási Főosztály", "Ungarn. Igazságügyi Minisztérium. Törvényelökészítő Főosztály", "Kir. Igazságügyminiszterium. Ungarn", "M. Kir. Igazságügyminiszterium", "Königlich Ungarisches Justizministerium", "Königliches Ungarisches Justizministerium"], "authorized_access_point": "Ungarn. Igazságügyi Minisztérium"} 1 +2024-09-11 09:00:09.786567 2024-09-11 09:00:09.78657 c5ae41fe-e2ef-4df2-bd4c-5ebd955b1ba7 {"md5": "e39f217c6484c7f17bbedc042bd79fac", "pid": "00122722X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/122722-1", "source": "GND"}], "preferred_name": "Société Académique des Sciences, Arts, Belles-Lettres, Agriculture et Industrie", "country_associated": "fr", "authorized_access_point": "Société Académique des Sciences, Arts, Belles-Lettres, Agriculture et Industrie. Saint-Quentin"} 1 +2024-09-11 09:00:09.835005 2024-09-11 09:00:09.835009 82f39e7f-3922-4c41-b44a-6f45f42fcf6a {"md5": "fab97fc1935dc94410e89e2aad98fa41", "pid": "001247697", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124769-4", "source": "GND"}], "variant_name": ["Secretaría de Estado de Fomento, Obras Públicas y Riego"], "preferred_name": "Dominikanische Republik. Secretaría de Fomento, Obras Públicas y Riego", "variant_access_point": ["Secretaría de Estado de Fomento, Obras Públicas y Riego. Dominikanische Republik"], "authorized_access_point": "Dominikanische Republik. Secretaría de Fomento, Obras Públicas y Riego"} 1 +2024-09-11 09:00:09.886453 2024-09-11 09:00:09.886456 3c7d81ac-f106-4ab0-a86c-3f950aa14cd1 {"md5": "996a3307b796c9ecd8f263ad5a45c14d", "pid": "001277936", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/127793-5", "source": "GND"}], "variant_name": ["Völkerbund. Financial Organisation"], "preferred_name": "Financial Organisation", "variant_access_point": ["Völkerbund. Financial Organisation"], "authorized_access_point": "Financial Organisation"} 1 +2024-09-11 09:00:09.935463 2024-09-11 09:00:09.935465 fe0c712b-dee1-4bda-aa57-6e0e10413354 {"md5": "ee21b0e87ed7f3ebc852b17759aa5bc6", "pid": "001279858", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/127985-3", "source": "GND"}], "variant_name": ["Bureau of Industrial Alcohol"], "preferred_name": "USA. Bureau of Industrial Alcohol", "country_associated": "xxu", "variant_access_point": ["Bureau of Industrial Alcohol. USA"], "date_of_establishment": "1930", "authorized_access_point": "USA. Bureau of Industrial Alcohol"} 1 +2024-09-11 09:00:09.987825 2024-09-11 09:00:09.987828 4f8deb33-d76e-44a3-866f-1a21df481552 {"md5": "345be9393d139bff4db7e02c44791994", "pid": "001282891", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128289-X", "source": "GND"}], "preferred_name": "Elsinore Conference", "authorized_access_point": "Elsinore Conference"} 1 +2024-09-11 09:00:10.041445 2024-09-11 09:00:10.041448 30ea7aa4-8b1a-4a77-8945-442315eee4ff {"md5": "594dad92cc8a8a2d85d30a371ec83f92", "pid": "001284150", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128415-0", "source": "GND"}], "preferred_name": "Rijksstation voor Zeevisserij", "country_associated": "be", "authorized_access_point": "Rijksstation voor Zeevisserij. Ostende"} 1 +2024-09-11 09:00:10.091382 2024-09-11 09:00:10.091386 7902c09b-0e6f-43c8-97de-82128a90722f {"md5": "1785aa1e5e4e4a0edb5069bbf4b23a9a", "pid": "001299662", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129966-9", "source": "GND"}], "variant_name": ["Shizuoka-Daigaku. Faculty of Engineering", "Kōgakubu", "Faculty of Engineering"], "preferred_name": "Shizuoka-Daigaku. Kōgakubu", "country_associated": "ja", "variant_access_point": ["Shizuoka-Daigaku. Faculty of Engineering", "Kōgakubu. Shizuoka", "Faculty of Engineering. Shizuoka"], "authorized_access_point": "Shizuoka-Daigaku. Kōgakubu"} 1 +2024-09-11 09:00:10.153724 2024-09-11 09:00:10.153727 fdcce0ec-9e52-4228-a3c2-0050c2527bd8 {"md5": "7a1564f9771c41251b9edc3f042f05c7", "pid": "001303317", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/130331-4", "source": "GND"}], "variant_name": ["Sympozjum SPD"], "preferred_name": "Sympozjum Symulacja Procesow Dynamicznych", "variant_access_point": ["Sympozjum SPD"], "authorized_access_point": "Sympozjum Symulacja Procesow Dynamicznych"} 1 +2024-09-11 09:00:10.203531 2024-09-11 09:00:10.203534 cf3d8ffe-f2b7-4f69-a153-1493df165761 {"md5": "a4fc214b4353e67d9a39166dc93a9f92", "pid": "001306634", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/130663-7", "source": "GND"}], "variant_name": ["Soveščanie po Poljarografičeskomu Analizu"], "preferred_name": "Vsesojuznoe Soveščanie po Poljarografičeskomu Analizu", "variant_access_point": ["Soveščanie po Poljarografičeskomu Analizu"], "authorized_access_point": "Vsesojuznoe Soveščanie po Poljarografičeskomu Analizu"} 1 +2024-09-11 09:00:10.255631 2024-09-11 09:00:10.255633 2ebd957b-2bc0-4fc7-be53-31b2d63d8b09 {"md5": "42b26b4d47a8059a41a50f7da01688a8", "pid": "001330578", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133057-3", "source": "GND"}], "preferred_name": "Oettinger Heimatland e.V.", "country_associated": "gw", "authorized_access_point": "Oettinger Heimatland e.V."} 1 +2024-09-11 09:00:12.071218 2024-09-11 09:00:12.071221 a8a5eb49-729e-4f1e-a296-027ab52078a2 {"md5": "be3201dabecaba5c09db3f90fcf8158a", "pid": "002529041", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/252904-X", "source": "GND"}], "variant_name": ["Computer Center"], "preferred_name": "University of Georgia. Computer Center", "country_associated": "xxu", "variant_access_point": ["Computer Center. University of Georgia"], "authorized_access_point": "University of Georgia. Computer Center"} 1 +2024-09-11 09:00:10.305743 2024-09-11 09:00:10.305747 8bbe1f5e-3d8d-41fa-89d8-b758460c5806 {"md5": "5aa923428ca1f2144a01446b88558e0c", "pid": "001371924", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/137192-7", "source": "GND"}], "variant_name": ["Naučno-Techničeskaja Konferencija po Primeneniju Radioaktivnych i Stabil'nych Izotopov i Izlučenij v Narodnom Chozjajstve i Nauke"], "preferred_name": "Vsesojuznaja Naučno-Techničeskaja Konferencija po Primeneniju Radioaktivnych i Stabil'nych Izotopov i Izlučenij v Narodnom Chozjajstve i Nauke", "variant_access_point": ["Naučno-Techničeskaja Konferencija po Primeneniju Radioaktivnych i Stabil'nych Izotopov i Izlučenij v Narodnom Chozjajstve i Nauke"], "authorized_access_point": "Vsesojuznaja Naučno-Techničeskaja Konferencija po Primeneniju Radioaktivnych i Stabil'nych Izotopov i Izlučenij v Narodnom Chozjajstve i Nauke"} 1 +2024-09-11 09:00:10.364179 2024-09-11 09:00:10.364184 21b7bca3-b0c2-4452-9777-a19a3e7b9b88 {"md5": "dac010f54bf8045737b3351c96698002", "pid": "001376136", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/137613-5", "source": "GND"}], "variant_name": ["Staatlicher mathematisch-physikalischer Salon. Forschungsstelle"], "preferred_name": "Staatlicher Mathematisch-Physikalischer Salon. Forschungsstelle", "variant_access_point": ["Staatlicher mathematisch-physikalischer Salon. Dresden. Forschungsstelle"], "authorized_access_point": "Staatlicher Mathematisch-Physikalischer Salon. Dresden. Forschungsstelle"} 1 +2024-09-11 09:00:10.420162 2024-09-11 09:00:10.420165 0eda8c2a-8039-4e4c-a5ae-c811ad3d5b45 {"md5": "69fc7550a37df4fb2c2e416d63151fd8", "pid": "001378600", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/137860-0", "source": "GND"}], "preferred_name": "Reichsarbeitsgemeinschaft Holz", "authorized_access_point": "Reichsarbeitsgemeinschaft Holz"} 1 +2024-09-11 09:00:10.469428 2024-09-11 09:00:10.469431 488af74f-a4cf-44f2-99a5-97799d052bb2 {"md5": "0080f8861c37c995bd0bec35d577aa4a", "pid": "001381504", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/138150-7", "source": "GND"}], "variant_name": ["Lithographisches Institut", "Königl. Lith. Institut", "Königl. Lithographisches Institut", "Kngl. lith. Inst."], "preferred_name": "Königliches Lithographisches Institut", "variant_access_point": ["Lithographisches Institut. Berlin", "Königl. Lith. Institut. Berlin", "Königl. Lithographisches Institut. Berlin", "Kngl. lith. Inst."], "date_of_establishment": "1818", "authorized_access_point": "Königliches Lithographisches Institut. Berlin", "biographical_information": ["Sitz: Berlin {1823-1830}"]} 1 +2024-09-11 09:00:10.522706 2024-09-11 09:00:10.522709 f6d02560-e02c-4296-82ec-0c0416af7c96 {"md5": "615f786b1d43722e6fc23aaa42f20947", "pid": "001434756", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143475-5", "source": "GND"}], "variant_name": ["European Organization for Quality Control. Automobil-Abteilung", "European Organization for Quality Control. Section Automobile"], "preferred_name": "European Organization for Quality Control. Automotive Section", "variant_access_point": ["European Organization for Quality Control. Automobil-Abteilung", "European Organization for Quality Control. Section Automobile"], "authorized_access_point": "European Organization for Quality Control. Automotive Section"} 1 +2024-09-11 09:00:10.571828 2024-09-11 09:00:10.571831 d6dcc6fe-f511-424e-8eea-b8e767b85a77 {"md5": "dad0c8bcc1d8c1f8439d319131625a87", "pid": "001436872", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143687-9", "source": "GND"}], "variant_name": ["Institute of Botany", "Zhongguo-Kexueyuan. Zhiwu-Yanjiusuo", "Zhongguo-Kexueyuan. Institute of Botany", "Chih-wu-yen-chiu-so", "Zhi wu yan jiu suo", "中国科学院. 植物研究所", "植物研究所", "植物研究所"], "preferred_name": "Zhiwu-Yanjiusuo", "country_associated": "cc", "variant_access_point": ["Institute of Botany. Zhiwu-Yanjiusuo", "Zhongguo-Kexueyuan. Zhiwu-Yanjiusuo. Peking", "Zhongguo-Kexueyuan. Institute of Botany. Peking", "Chih-wu-yen-chiu-so. Peking", "Zhi wu yan jiu suo. Bei jing", "中国科学院. 北京. 植物研究所", "植物研究所. 北京", "植物研究所. 北京"], "parallel_access_point": ["中國科學院植物研究所"], "authorized_access_point": "Zhiwu-Yanjiusuo. Peking"} 1 +2024-09-11 09:00:10.624988 2024-09-11 09:00:10.624992 c73523db-68e9-457c-8d66-ceae178f1727 {"md5": "f6e234c07af0969d384dae6635ef19b0", "pid": "001453459", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/145345-2", "source": "GND"}], "variant_name": ["Annual Connector Conference", "Connector Symposium", "Symposium on Electrical and Electronic Connectors", "INTERNEPCON Connector Symposium", "Annual Connector Symposium", "Annual Symposium on Electrical and Electronic Connectors"], "preferred_name": "Connector Conference", "variant_access_point": ["Annual Connector Conference", "Connector Symposium, INTERNEPCON", "Symposium on Electrical and Electronic Connectors", "INTERNEPCON Connector Symposium", "Annual Connector Symposium, Connector Conference", "Annual Symposium on Electrical and Electronic Connectors"], "authorized_access_point": "Connector Conference"} 1 +2024-09-11 09:00:10.677049 2024-09-11 09:00:10.677053 89c1dd9b-8bdb-4743-8332-627a24d002f1 {"md5": "fc1154eb583eb0709b973dd881d1a9df", "pid": "001457101", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/145710-X", "source": "GND"}], "preferred_name": "Modern Foreign Language Study", "authorized_access_point": "Modern Foreign Language Study"} 1 +2024-09-11 09:00:10.737444 2024-09-11 09:00:10.737447 0dc1d936-426f-43b3-929c-26746c0bc2ff {"md5": "c5fc7fa0da2b6e98482ec8314e60085b", "pid": "002004526", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/200452-5", "source": "GND"}], "variant_name": ["Kongreß für Aktuelle Medizin"], "preferred_name": "Stuttgarter Kongreß für Aktuelle Medizin", "variant_access_point": ["Kongreß für Aktuelle Medizin, Stuttgart"], "authorized_access_point": "Stuttgarter Kongreß für Aktuelle Medizin"} 1 +2024-09-11 09:00:10.791854 2024-09-11 09:00:10.791858 afbb5c80-9fc9-4075-bb8e-af114ff4c601 {"md5": "2ac9260897acf3cbe548cfa3b3bf6660", "pid": "002102536", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/210253-5", "source": "GND"}], "preferred_name": "Akademischer Turnverein. Altherrenkommission", "authorized_access_point": "Akademischer Turnverein. Berlin. Altherrenkommission"} 1 +2024-09-11 09:00:10.844314 2024-09-11 09:00:10.844317 8f88b8ee-8bfd-4f9c-b440-3a6b9de53316 {"md5": "61ad483403e934c1c67db6ec79f50e30", "pid": "00210637X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/210637-1", "source": "GND"}], "variant_name": ["Ika-Daigaku", "Kyōto Prefectural Medical University", "Prefectural Medical University", "Kyōto Prefectural University of Medicine", "Prefectural University of Medicine", "Medical University", "University of Medicine", "Kyōto-Furitsu-Ika-Daigaku", "キョウト フリツ イカ ダイガク"], "preferred_name": "Kyōto Furitsu Ika Daigaku", "country_associated": "ja", "variant_access_point": ["Ika-Daigaku. Kyōto, Kyōto-Furitsu-Ika-Daigaku", "Kyōto Prefectural Medical University", "Prefectural Medical University. Kyōto", "Kyōto Prefectural University of Medicine", "Prefectural University of Medicine. Kyōto", "Medical University. Kyōto", "University of Medicine. Kyōto", "Kyōto-Furitsu-Ika-Daigaku", "キョウト フリツ イカ ダイガク"], "parallel_access_point": ["京都府立医科大学"], "authorized_access_point": "Kyōto Furitsu Ika Daigaku"} 1 +2024-09-11 09:00:10.897301 2024-09-11 09:00:10.897304 9aea225b-9e8c-407e-b0f9-07eb4ba5dda1 {"md5": "ab5aa69ffc64567d5bad0384c927b387", "pid": "002111748", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/211174-3", "source": "GND"}], "variant_name": ["Amt für Strukturverbesserung", "Moers. Amt für Strukturverbesserung"], "preferred_name": "Landkreis Moers. Amt für Strukturverbesserung", "country_associated": "gw", "variant_access_point": ["Amt für Strukturverbesserung. Landkreis Moers", "Moers. Kreis. Amt für Strukturverbesserung. Alte Ansetzungsform"], "authorized_access_point": "Landkreis Moers. Amt für Strukturverbesserung"} 1 +2024-09-11 09:00:10.946328 2024-09-11 09:00:10.946331 78db8552-d4fd-479c-9b9e-4e31900e29d3 {"md5": "f4ee6100b7a5faabfec579cc2dfe4de8", "pid": "002128683", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/212868-8", "source": "GND"}], "variant_name": ["IEEE Applied Magnetics Workshop on Magnetic Recording"], "preferred_name": "Applied Magnetics Workshop on Magnetic Recording", "variant_access_point": ["IEEE Applied Magnetics Workshop on Magnetic Recording"], "authorized_access_point": "Applied Magnetics Workshop on Magnetic Recording"} 1 +2024-09-11 09:00:10.999999 2024-09-11 09:00:11.000002 6ba06a6e-955b-4452-858a-9e720d505193 {"md5": "b3ce9d19176558438e733e94125f2ed1", "pid": "002148323", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/214832-8", "source": "GND"}], "variant_name": ["Paediatric Society", "SPS"], "preferred_name": "Singapore Paediatric Society", "country_associated": "si", "variant_access_point": ["Paediatric Society. Singapur", "SPS. Abkuerzung"], "authorized_access_point": "Singapore Paediatric Society"} 1 +2024-09-11 09:00:11.049507 2024-09-11 09:00:11.049509 850bace7-6e07-4af7-9b94-5ed7fda95d7e {"md5": "ccdf83eb3fa84f296295711272dccc0b", "pid": "002149176", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/214917-5", "source": "GND"}], "preferred_name": "North American Gymnastic Union. Normal College", "country_associated": "xxu", "authorized_access_point": "North American Gymnastic Union. Normal College"} 1 +2024-09-11 09:00:11.108581 2024-09-11 09:00:11.108584 02be6b71-5400-4a10-88a7-c9fb0fc0bcef {"md5": "a943e5c6a5189ae69a8f58a22522dcd3", "pid": "002150492", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/215049-9", "source": "GND"}], "preferred_name": "Kreis der Rheinischen Heimatfreunde", "authorized_access_point": "Kreis der Rheinischen Heimatfreunde"} 1 +2024-09-11 09:00:11.167429 2024-09-11 09:00:11.167432 cda52bc3-246c-4def-99a4-64f8b56d727f {"md5": "802c14387724b6e357e4d65a2fe31d23", "pid": "002153912", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/215391-9", "source": "GND"}], "variant_name": ["Workshop on Computer and the Handicapped", "Annual Workshop on Computers and the Handicapped"], "preferred_name": "Workshop on Computers and the Handicapped", "variant_access_point": ["Workshop on Computer and the Handicapped", "Annual Workshop on Computers and the Handicapped"], "authorized_access_point": "Workshop on Computers and the Handicapped"} 1 +2024-09-11 09:00:11.222395 2024-09-11 09:00:11.222398 ab1de0be-2d39-4ee0-bf06-9887bac9cd82 {"md5": "28e137bce79a6c5270dea42afc96cced", "pid": "002156954", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/215695-7", "source": "GND"}], "variant_name": ["Lampe, Bankhaus Hermann"], "preferred_name": "Bankhaus Hermann Lampe", "country_associated": "gw", "variant_access_point": ["Lampe, Bankhaus Hermann. Bielefeld"], "authorized_access_point": "Bankhaus Hermann Lampe. Bielefeld"} 1 +2024-09-11 09:00:11.294076 2024-09-11 09:00:11.294081 5c2d81ea-8c10-4d8d-87de-3af553e6f49b {"md5": "e9ef653d5769af40821bb964c3a842a6", "pid": "002171260", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/217126-0", "source": "GND"}], "preferred_name": "Amalgamated Union of Engineering and Foundry Workers. Foundry Section", "country_associated": "xxk", "date_of_termination": "1970", "date_of_establishment": "1968", "authorized_access_point": "Amalgamated Union of Engineering and Foundry Workers. Foundry Section"} 1 +2024-09-11 09:00:11.350209 2024-09-11 09:00:11.350212 685cd817-17a2-48a7-a631-015e9a64d9c8 {"md5": "029e0462484c7ead09ece4dd29a17ca8", "pid": "002210819", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/221081-2", "source": "GND"}], "variant_name": ["Venezuela. Ministerio de Educación. Dirección General de Educación Básica y Media Diversificada", "Dirección General de Educación Básica y Media Diversificada"], "preferred_name": "Venezuela. Dirección General de Educación Básica y Media Diversificada", "country_associated": "ve", "variant_access_point": ["Venezuela. Ministerio de Educación. Dirección General de Educación Básica y Media Diversificada", "Dirección General de Educación Básica y Media Diversificada. Venezuela"], "authorized_access_point": "Venezuela. Dirección General de Educación Básica y Media Diversificada", "biographical_information": ["Sitz: Caracas"]} 1 +2024-09-11 09:00:13.915524 2024-09-11 09:00:13.915527 56ca2835-9dfe-44bc-9821-2b219c7bc947 {"md5": "d94b457a517f3e39d0615c4ae95d6b0e", "pid": "003811840", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/381184-0", "source": "GND"}], "preferred_name": "Belgrad. Reon, 3", "authorized_access_point": "Belgrad. Reon, 3"} 1 +2024-09-11 09:00:11.452771 2024-09-11 09:00:11.452775 2549cc24-68b7-4791-891d-be6919e72749 {"md5": "dec345f2d150fe3e7bf3de622e0f90d1", "pid": "00221167X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/221167-1", "source": "GND"}], "variant_name": ["Dirección Nacional de Programación Presupuestaria", "Argentinien. Secretaría de Hacienda. Dirección Nacional de Programación Presupuestaria"], "preferred_name": "Argentinien. Dirección Nacional de Programación Presupuestaria", "country_associated": "ag", "variant_access_point": ["Dirección Nacional de Programación Presupuestaria. Argentinien", "Argentinien. Secretaría de Hacienda. Dirección Nacional de Programación Presupuestaria"], "authorized_access_point": "Argentinien. Dirección Nacional de Programación Presupuestaria"} 1 +2024-09-11 09:00:11.503637 2024-09-11 09:00:11.50364 1034c872-b1ff-46eb-8f57-84dd9d50935e {"md5": "6f12bb1d074fb546d94a52056a19a956", "pid": "002215942", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/221594-9", "source": "GND"}], "variant_name": ["Serviço Sanitario"], "preferred_name": "São Paulo. Serviço Sanitario", "country_associated": "bl", "variant_access_point": ["Serviço Sanitario. São Paulo, Staat"], "authorized_access_point": "São Paulo. Staat. Serviço Sanitario"} 1 +2024-09-11 09:00:11.554924 2024-09-11 09:00:11.554926 fcfde118-7b41-4e9b-840e-f07ac07e35b2 {"md5": "7d679cc7a7ecfe146fbc33bced8566ec", "pid": "002356368", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/235636-3", "source": "GND"}], "variant_name": ["Zen Symposium", "International Zen Symposium", "Kyoto International Zen Symposium", "Kyoto Zen Symposium", "Zen Symposium", "International Zen Symposium"], "preferred_name": "International Symposium for Religious Philosophy", "country_associated": "ja", "variant_access_point": ["Zen Symposium, Kyōto", "International Zen Symposium, Kyōto", "Kyoto International Zen Symposium", "Kyoto Zen Symposium", "Zen Symposium. Kyoto", "International Zen Symposium. Kyoto"], "authorized_access_point": "International Symposium for Religious Philosophy"} 1 +2024-09-11 09:00:11.605009 2024-09-11 09:00:11.605013 a44ab125-5c31-427e-92f5-d55254cc7840 {"md5": "3ddc1179edbd7915d82964fa3cfff100", "pid": "00236266X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/236266-1", "source": "GND"}], "variant_name": ["Gewerbschule"], "preferred_name": "Gewerbeschule", "variant_access_point": ["Gewerbschule. Heidelberg"], "authorized_access_point": "Gewerbeschule. Heidelberg", "biographical_information": ["Gegr. 1828"]} 1 +2024-09-11 09:00:11.663576 2024-09-11 09:00:11.66358 40f9c7f8-084f-4bf4-be9e-c5b3d3e0a004 {"md5": "29297516b34ed3a5d9f99870c6e953aa", "pid": "002362880", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/236288-0", "source": "GND"}], "variant_name": ["Heidelberger Reichsfestspiele"], "preferred_name": "Reichsfestspiele Heidelberg", "variant_access_point": ["Heidelberger Reichsfestspiele"], "authorized_access_point": "Reichsfestspiele Heidelberg"} 1 +2024-09-11 09:00:11.727734 2024-09-11 09:00:11.727738 ada677ce-d0f2-4540-8cd0-dc92e7a59f96 {"md5": "5632fae82c9f8b169efbd4e98b87d1e0", "pid": "002407612", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/240761-9", "source": "GND"}], "preferred_name": "Institute in Technical and Organizational Communication", "authorized_access_point": "Institute in Technical and Organizational Communication"} 1 +2024-09-11 09:00:11.807809 2024-09-11 09:00:11.807813 bb926e58-7512-44b9-bbe7-623fb1dc4bac {"md5": "48a8b0685fc464224042078887d6ae41", "pid": "002411083", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/241108-8", "source": "GND"}], "variant_name": ["Annual ACM Symposium on Principles of Programming Languages", "ACM Symposium on Principles of Programming Languages", "ACM SIGPLAN-SIGACT Symposium on Principles of Programming Languages", "POPL"], "preferred_name": "Symposium on Principles of Programming Languages", "variant_access_point": ["Annual ACM Symposium on Principles of Programming Languages", "ACM Symposium on Principles of Programming Languages", "ACM SIGPLAN-SIGACT Symposium on Principles of Programming Languages", "POPL"], "authorized_access_point": "Symposium on Principles of Programming Languages"} 1 +2024-09-11 09:00:11.858194 2024-09-11 09:00:11.858197 b886c776-c28c-4427-b13e-c1dbc076e711 {"md5": "3f84252fe774e29a03b8517861dfaf53", "pid": "002413957", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/241395-4", "source": "GND"}], "preferred_name": "Symposium on Computer Applications in Petroleum Exploration", "country_associated": "xxu", "authorized_access_point": "Symposium on Computer Applications in Petroleum Exploration, 1969, Dallas, Tex."} 1 +2024-09-11 09:00:11.908719 2024-09-11 09:00:11.908723 6caf65f2-85cd-4c7e-b98b-429c644218a4 {"md5": "4ca232ff15803551f71036eb724bae07", "pid": "002447797", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/244779-4", "source": "GND"}], "variant_name": ["ICAP"], "preferred_name": "International Conference on Automobile Pollution", "country_associated": "xxc", "variant_access_point": ["ICAP"], "authorized_access_point": "International Conference on Automobile Pollution, 1972, Toronto"} 1 +2024-09-11 09:00:11.957738 2024-09-11 09:00:11.957742 59b0811f-70cc-4f19-ae05-d1d4977f59c3 {"md5": "dac59bcb66ac14f444b68d0c582362a2", "pid": "002461102", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/246110-9", "source": "GND"}], "preferred_name": "Workshop on Scale Control in Geothermal Energy Extraction Systems", "country_associated": "xxu", "authorized_access_point": "Workshop on Scale Control in Geothermal Energy Extraction Systems, 1977, Los Alamos, NM"} 1 +2024-09-11 09:00:12.009842 2024-09-11 09:00:12.009846 7d7c6dbb-0c21-4e9e-9b85-c544afa35760 {"md5": "9a01f76ad6ebeb56c7d3bc3b603c8f40", "pid": "002476738", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/247673-3", "source": "GND"}], "preferred_name": "Session on Comparative Epidemiology", "authorized_access_point": "Session on Comparative Epidemiology, 1978, München"} 1 +2024-09-11 09:00:14.446412 2024-09-11 09:00:14.446417 ff798bd7-d9fa-40df-b143-7a2e0999b457 {"md5": "1f6ae66c636051354a056b18a976ffb1", "pid": "00408487X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1015223-4", "source": "GND"}], "preferred_name": "Essen. Tiefbauamt", "country_associated": "gw", "authorized_access_point": "Essen. Tiefbauamt"} 1 +2024-09-11 09:00:12.130825 2024-09-11 09:00:12.130829 d8ba6172-c37f-4eca-a865-0aa025e500f6 {"md5": "c7f750bb39c1f13b72c71638a0f168f1", "pid": "002530937", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/253093-4", "source": "GND"}], "variant_name": ["Institut national de la statistique et des études économiques. Observatoire économique de la Bourgogne", "INSEE-OEB", "Institut national de la statistique et des études économiques. Observatoire économique de Bourgogne"], "preferred_name": "Observatoire économique de la Bourgogne", "country_associated": "fr", "variant_access_point": ["Institut national de la statistique et des études économiques. Frankreich. Observatoire économique de la Bourgogne", "INSEE-OEB. Abkuerzung", "Institut national de la statistique et des études économiques. Frankreich. Observatoire économique de Bourgogne"], "authorized_access_point": "Observatoire économique de la Bourgogne"} 1 +2024-09-11 09:00:12.19356 2024-09-11 09:00:12.193563 3454aeee-12bf-4592-adab-c45148197fb4 {"md5": "bd96f6dc3fc71250a676ab62548c96e1", "pid": "002531844", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/253184-7", "source": "GND"}], "variant_name": ["Fortbildungsschultag"], "preferred_name": "Deutscher Fortbildungsschultag", "variant_access_point": ["Fortbildungsschultag. Deutsches Reich"], "authorized_access_point": "Deutscher Fortbildungsschultag"} 1 +2024-09-11 09:00:12.244381 2024-09-11 09:00:12.244386 81298c5b-7afc-4389-8970-f0a302eb2f67 {"md5": "6df5194997827691e6848f9353d2c55a", "pid": "002537966", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/253796-5", "source": "GND"}], "variant_name": ["Australian Canned Fruits Board", "Canned Fruits Board"], "preferred_name": "Australien. Canned Fruits Board", "country_associated": "at", "date_of_termination": "1979", "variant_access_point": ["Australian Canned Fruits Board", "Canned Fruits Board. Australien"], "date_of_establishment": "1938", "authorized_access_point": "Australien. Canned Fruits Board"} 1 +2024-09-11 09:00:12.295311 2024-09-11 09:00:12.295315 c6aba248-0f56-4ac5-b030-f395a9c292a9 {"md5": "087ec3dfeb85a832150f8b5d7b49c661", "pid": "002546329", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/254632-2", "source": "GND"}], "variant_name": ["Institut Agricole et des Services de Recherches et d'Expérimentation Agricoles d'Algérie"], "preferred_name": "Institut Agricole d'Algérie", "country_associated": "ae", "variant_access_point": ["Institut Agricole et des Services de Recherches et d'Expérimentation Agricoles d'Algérie. Maison-Carrée"], "authorized_access_point": "Institut Agricole d'Algérie. Maison-Carrée"} 1 +2024-09-11 09:00:12.352005 2024-09-11 09:00:12.352008 b6ad74ec-8e1b-4667-aca3-ee3a7c5981d9 {"md5": "847a9160ff448cefe359ee9fa7469576", "pid": "002602555", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/260255-6", "source": "GND"}], "variant_name": ["Universitetet. Botanisk Museum og Botanisk Hage", "Botanisk Hage", "Botanisk Museum", "Bergens Museum. Botanisk Museum og Botanisk Hage", "Bergens Museum. Botanisk Hage", "Botanical Garden", "Hortus Botanicus", "Botanisk Institutt. Botanical Garden", "Botanisk Institutt. Hortus Botanicus", "Botanisk Institutt. Botanisk Hage", "Botanisk Institutt. Botanisk Museum og Botanisk Hage", "Universitetet. Botanical Garden", "Universitetet. Hortus Botanicus", "Bergens Museum. Botanical Garden", "Bergens Museum. Hortus Botanicus", "Botanischer Garten", "Bergens Museum. Botanischer Garten", "Botanisk Institutt. Botanischer Garten", "Universitetet. Botanischer Garten"], "preferred_name": "Botanisk Museum og Botanisk Hage", "country_associated": "no", "date_of_termination": "1996", "variant_access_point": ["Universitetet. Bergen. Botanisk Museum og Botanisk Hage", "Botanisk Hage. Bergen", "Botanisk Museum. Bergen", "Bergens Museum. Botanisk Museum og Botanisk Hage", "Bergens Museum. Botanisk Hage", "Botanical Garden. Bergen", "Hortus Botanicus. Bergen", "Botanisk Institutt. Bergen. Botanical Garden", "Botanisk Institutt. Bergen. Hortus Botanicus", "Botanisk Institutt. Bergen. Botanisk Hage", "Botanisk Institutt. Bergen. Botanisk Museum og Botanisk Hage", "Universitetet. Bergen. Botanical Garden", "Universitetet. Bergen. Hortus Botanicus", "Bergens Museum. Botanical Garden", "Bergens Museum. Hortus Botanicus", "Botanischer Garten. Bergen", "Bergens Museum. Botanischer Garten", "Botanisk Institutt. Bergen. Botanischer Garten", "Universitetet. Bergen. Botanischer Garten"], "authorized_access_point": "Botanisk Museum og Botanisk Hage. Bergen"} 1 +2024-09-11 09:00:12.409479 2024-09-11 09:00:12.409483 5f045aa0-0be3-43ce-83c9-772e4b5d50dd {"md5": "7e6695428b30a6c5428073f6ac0d00c4", "pid": "002606232", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/260623-9", "source": "GND"}], "variant_name": ["Natural History Society"], "preferred_name": "Thirsk Natural History Society", "country_associated": "xxk", "variant_access_point": ["Natural History Society. Thirsk"], "authorized_access_point": "Thirsk Natural History Society"} 1 +2024-09-11 09:00:12.464366 2024-09-11 09:00:12.464371 0ed939ff-0fb2-4382-9c8f-3ac8df62aa01 {"md5": "1ad1ec0288c36102000123ea2c5efe74", "pid": "00260955X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/260955-1", "source": "GND"}], "preferred_name": "University of Leeds. Botany Department", "country_associated": "xxk", "date_of_termination": "1971", "authorized_access_point": "University of Leeds. Botany Department"} 1 +2024-09-11 09:00:12.516116 2024-09-11 09:00:12.516119 12d228e0-49ad-4565-b944-725a4d8cbed4 {"md5": "d1c055c76ec964ae0702169e6f2d104c", "pid": "002610922", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/261092-9", "source": "GND"}], "variant_name": ["Arboretum Michaestiensis", "Staţiunea. Arboretumul", "Staţiunea. Arboretum Michaestiensis", "Staţiunea Experimentală Arges. Arboretumul", "Staţiunea Experimentală Arges. Arboretum Michaestiensis"], "preferred_name": "Arboretumul", "country_associated": "rm", "variant_access_point": ["Arboretum Michaestiensis", "Staţiunea. Piteşti. Arboretumul", "Staţiunea. Piteşti. Arboretum Michaestiensis", "Staţiunea Experimentală Arges. Piteşti. Arboretumul", "Staţiunea Experimentală Arges. Piteşti. Arboretum Michaestiensis"], "authorized_access_point": "Arboretumul. Mihăeşti"} 1 +2024-09-11 09:00:12.581804 2024-09-11 09:00:12.581807 75b3e0fd-8bd8-49a0-a256-5cd3b0c915df {"md5": "ddd4543312b179c82bba9c91601fb205", "pid": "002624508", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/262450-3", "source": "GND"}], "variant_name": ["Experimentalfält", "Experimentalfält", "Kungliga Lantbruksakademiens Experiment- och Försöksverksamhet. Experimentalfältet", "Königliche Schwedische Akademie der Landwirtschaft. Experimentalfält"], "preferred_name": "Kungliga Lantbruksakademien. Experimentalfält", "country_associated": "sw", "variant_access_point": ["Experimentalfält. Stockholm", "Experimentalfält", "Kungliga Lantbruksakademiens Experiment- och Försöksverksamhet. Experimentalfältet", "Königliche Schwedische Akademie der Landwirtschaft. Experimentalfält. Ehemalige Vorzugsbenennung SWD"], "authorized_access_point": "Kungliga Lantbruksakademien. Stockholm. Experimentalfält"} 1 +2024-09-11 09:00:12.631477 2024-09-11 09:00:12.631481 62c3f789-3a0f-4caf-9a79-3ad2e71e4710 {"md5": "7eea14e73bfeaba11b4d36c4b64d1ab4", "pid": "002627019", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/262701-2", "source": "GND"}], "variant_name": ["Evangelische Bibel-Gesellschaft für Litauen und Masuren"], "preferred_name": "Evangelische Bibel-Gesellschaft für Littauen und Masuren", "variant_access_point": ["Evangelische Bibel-Gesellschaft für Litauen und Masuren"], "authorized_access_point": "Evangelische Bibel-Gesellschaft für Littauen und Masuren"} 1 +2024-09-11 09:00:12.682607 2024-09-11 09:00:12.68261 dcba7eca-9868-40a4-9528-ed0810bda9e0 {"md5": "2f4bce6745d0e621b3190ad36aa31855", "pid": "002740990", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/274099-0", "source": "GND"}], "variant_name": ["Crop Reporting Service"], "preferred_name": "South Carolina Crop Reporting Service", "country_associated": "xxu", "variant_access_point": ["Crop Reporting Service. Clemson, SC"], "authorized_access_point": "South Carolina Crop Reporting Service. Clemson, SC"} 1 +2024-09-11 09:00:12.745002 2024-09-11 09:00:12.745006 ef5f567a-588b-413a-8ed8-2f1d4e559547 {"md5": "fd1d172b2b0d0b9223e4dcd747d0cf47", "pid": "002744759", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/274475-2", "source": "GND"}], "variant_name": ["Wizara ya Ardhi, Nyumba na Maendeleo Mijini", "Tansania. Ministry of Lands, Housing and Urban Development", "Ministry of Lands, Housing and Urban Development"], "preferred_name": "Tansania. Wizara ya Ardhi, Nyumba na Maendeleo Mijini", "country_associated": "tz", "variant_access_point": ["Wizara ya Ardhi, Nyumba na Maendeleo Mijini. Tansania", "Tansania. Ministry of Lands, Housing and Urban Development", "Ministry of Lands, Housing and Urban Development. Tansania"], "date_of_establishment": "1968", "authorized_access_point": "Tansania. Wizara ya Ardhi, Nyumba na Maendeleo Mijini"} 1 +2024-09-11 09:00:12.810999 2024-09-11 09:00:12.811003 9c2c6bea-15cd-48dc-ae36-411348dc408f {"md5": "c1b7d87f46697acf569d921e53ee22fa", "pid": "002746387", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/274638-4", "source": "GND"}], "preferred_name": "Technischer Überwachungsverein", "country_associated": "gw", "date_of_termination": "1965", "date_of_establishment": "1959", "authorized_access_point": "Technischer Überwachungsverein. Hamburg"} 1 +2024-09-11 09:00:12.869969 2024-09-11 09:00:12.869972 2959356e-f6eb-4b4a-aab0-4a2a3e172167 {"md5": "5e385fdea462401197ff205d5d34a203", "pid": "00274659X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/274659-1", "source": "GND"}], "variant_name": ["Samhälls- och Rättsvetenskapliga Forskningsråd", "Statens Samhälls- och Rättsvetenskapliga Forskningsråd"], "preferred_name": "Schweden. Samhälls- och Rättsvetenskapliga Forskningsråd", "country_associated": "sw", "date_of_termination": "1958", "variant_access_point": ["Samhälls- och Rättsvetenskapliga Forskningsråd. Schweden", "Statens Samhälls- och Rättsvetenskapliga Forskningsråd. Schweden"], "date_of_establishment": "1953", "authorized_access_point": "Schweden. Samhälls- och Rättsvetenskapliga Forskningsråd"} 1 +2024-09-11 09:00:12.922974 2024-09-11 09:00:12.922977 32c897e9-ed11-47f4-9c95-6eb3eb4575ff {"md5": "b29f104955305620983857f6f81100ef", "pid": "00275486X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/275486-1", "source": "GND"}], "variant_name": ["National Electricity Board", "Malaya. Electricity Board", "Electricity Board"], "preferred_name": "Malaya. National Electricity Board", "country_associated": "my", "variant_access_point": ["National Electricity Board. Malaya, States of Malaya", "Malaya. States of Malaya. Electricity Board", "Electricity Board. Malaya, States of Malaya"], "authorized_access_point": "Malaya. States of Malaya. National Electricity Board"} 1 +2024-09-11 09:00:12.975574 2024-09-11 09:00:12.975577 4c1c52d7-ab08-44d4-bb88-66b73f07f549 {"md5": "95262764561981f8358643e4c9072ae3", "pid": "002765187", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/276518-4", "source": "GND"}], "variant_name": ["Bancotrans"], "preferred_name": "Banco Comercial Transatlántico", "country_associated": "sp", "date_of_termination": "1993", "variant_access_point": ["Bancotrans. Barcelona"], "date_of_establishment": "1950", "authorized_access_point": "Banco Comercial Transatlántico. Barcelona"} 1 +2024-09-11 09:00:13.029736 2024-09-11 09:00:13.029739 872cd7bd-686f-4d2d-aaba-d999f663cb15 {"md5": "2e3705bc2113766ca7f55c2c7e27f4a9", "pid": "00278064X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/278064-1", "source": "GND"}], "variant_name": ["Generalzolldirektion", "Hamburg. Generalzolldirection", "Generalzolldirection"], "preferred_name": "Hamburg. Generalzolldirektion", "variant_access_point": ["Generalzolldirektion. Hamburg", "Hamburg. Generalzolldirection", "Generalzolldirection. Hamburg"], "authorized_access_point": "Hamburg. Generalzolldirektion"} 1 +2024-09-11 09:00:13.101656 2024-09-11 09:00:13.101658 3eb073e7-fed9-4346-a361-cd27712a9eff {"md5": "4b05b32b30ef285fa7309f6a805e1fec", "pid": "002785684", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/278568-7", "source": "GND"}], "variant_name": ["Institut d'Emission des Etats du Cambodge, du Laos et du Viêt-Nam. Service des Etudes"], "preferred_name": "Service des Etudes", "country_associated": "vm", "variant_access_point": ["Institut d'Emission des Etats du Cambodge, du Laos et du Viêt-Nam. Sài-gòn. Service des Etudes"], "date_of_establishment": "1954", "authorized_access_point": "Service des Etudes. Sài-gòn"} 1 +2024-09-11 09:00:13.150159 2024-09-11 09:00:13.150162 a666e82c-7178-4f6f-893e-3facdd747108 {"md5": "2f421c76988261a90e85fa6a3310eefa", "pid": "002804077", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/280407-4", "source": "GND"}], "variant_name": ["Frankfurtische Gesellschaft zur Beförderung Nützlicher Künste und Deren Hülfswissenschaften. Verein zur Beförderung des Garten- und Feldbaues"], "preferred_name": "Verein zur Beförderung des Garten- und Feldbaues", "variant_access_point": ["Frankfurtische Gesellschaft zur Beförderung Nützlicher Künste und Deren Hülfswissenschaften. Verein zur Beförderung des Garten- und Feldbaues"], "authorized_access_point": "Verein zur Beförderung des Garten- und Feldbaues. Frankfurt, Main"} 1 +2024-09-11 09:00:13.200458 2024-09-11 09:00:13.200462 9f93dc6f-7ea0-45bd-ac8d-39aed4856298 {"md5": "839fd65b56d4f511267c1fec7445d810", "pid": "002903296", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/290329-5", "source": "GND"}], "preferred_name": "Kilde", "country_associated": "no", "authorized_access_point": "Kilde. Voss"} 1 +2024-09-11 09:00:14.563438 2024-09-11 09:00:14.563443 5b95c4a7-69bc-4b9e-8366-f5904fcc6b1d {"md5": "968abc76c95503a114ce64cb20a3a7cf", "pid": "004089049", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1015866-2", "source": "GND"}], "preferred_name": "Colloque d'Histoire Sociale", "country_associated": "fr", "authorized_access_point": "Colloque d'Histoire Sociale, 1970, Besançon"} 1 +2024-09-11 09:00:13.249402 2024-09-11 09:00:13.249405 4c366b7d-0a27-499e-ba33-2b7a6a8665dd {"md5": "a580a3112a6452d7e6216d3d79bd4ee4", "pid": "002910934", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/291093-7", "source": "GND"}], "variant_name": ["Norges Tekniske Høgskole. Division of Construction Engineering"], "preferred_name": "Norges Tekniske Høgskole. Avdeling for Maskinkonstruksjon", "country_associated": "no", "variant_access_point": ["Norges Tekniske Høgskole. Division of Construction Engineering"], "authorized_access_point": "Norges Tekniske Høgskole. Avdeling for Maskinkonstruksjon"} 1 +2024-09-11 09:00:13.299051 2024-09-11 09:00:13.299055 52717bb3-1858-4092-a672-102b9ddd2c39 {"md5": "8c7fa77caf8e73d3392fd64042e00eec", "pid": "003006816", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/300681-5", "source": "GND"}], "variant_name": ["Versehrten-Sportfest", "Versehrten-Sportfest"], "preferred_name": "Cannstatter Versehrten-Sportfest", "variant_access_point": ["Versehrten-Sportfest, Stuttgart- Bad Cannstatt", "Versehrten-Sportfest, Cannstatt"], "authorized_access_point": "Cannstatter Versehrten-Sportfest"} 1 +2024-09-11 09:00:13.348762 2024-09-11 09:00:13.348764 1d354d80-f79d-439a-901e-5a05f911d4fb {"md5": "838373c0a20afdc7810e7c463a75614c", "pid": "003016617", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/301661-4", "source": "GND"}], "preferred_name": "Linguistic Typology Symposium", "authorized_access_point": "Linguistic Typology Symposium"} 1 +2024-09-11 09:00:13.394226 2024-09-11 09:00:13.394229 d3e1bf93-d3dc-40bd-ab6d-68bc2ef684a9 {"md5": "bb8da32bfc92d3dbeed3ae4e5c5bddf2", "pid": "003051986", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/305198-5", "source": "GND"}], "variant_name": ["Cyclodextrins", "CD"], "preferred_name": "International Symposium on Cyclodextrins", "variant_access_point": ["Cyclodextrins. Symposium", "CD. Cyclodextrins, Symposium"], "authorized_access_point": "International Symposium on Cyclodextrins"} 1 +2024-09-11 09:00:13.44277 2024-09-11 09:00:13.442775 4c504f91-c185-42c8-96c4-d2914651e402 {"md5": "77d6575c188955b933c554ca5f0636cd", "pid": "003063976", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/306397-5", "source": "GND"}], "preferred_name": "Metallgesellschaft. Chemisches Laboratorium", "country_associated": "gw", "authorized_access_point": "Metallgesellschaft. Chemisches Laboratorium"} 1 +2024-09-11 09:00:13.493091 2024-09-11 09:00:13.493094 361e960a-3857-40b9-b315-1ad35816d934 {"md5": "8a03d1f78d622914da86d5cf91fd1190", "pid": "003071316", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/307131-5", "source": "GND"}], "variant_name": ["NES"], "preferred_name": "Numerical Engineering Society", "country_associated": "xxk", "variant_access_point": ["NES. Abkuerzung"], "authorized_access_point": "Numerical Engineering Society"} 1 +2024-09-11 09:00:13.541041 2024-09-11 09:00:13.541044 ae46a1cf-f41e-4d9f-9203-3fd72f73a152 {"md5": "17088a6504e76d56288bf5ee82839bdf", "pid": "003078434", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/307843-7", "source": "GND"}], "preferred_name": "Fulmer Research Laboratories", "country_associated": "xxk", "authorized_access_point": "Fulmer Research Laboratories. Slough"} 1 +2024-09-11 09:00:13.590707 2024-09-11 09:00:13.59071 751a423f-7e20-4728-ab43-f9d6761df559 {"md5": "35e68f1b1ee59456361966b60f6012d3", "pid": "003082725", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/308272-6", "source": "GND"}], "variant_name": ["Reid Gas Conditioning Conference", "Annual Laurance Reid Gas Conditioning Conference"], "preferred_name": "Laurance Reid Gas Conditioning Conference", "variant_access_point": ["Reid Gas Conditioning Conference", "Annual Laurance Reid Gas Conditioning Conference"], "authorized_access_point": "Laurance Reid Gas Conditioning Conference"} 1 +2024-09-11 09:00:13.641407 2024-09-11 09:00:13.641411 5f3bc4e1-9a85-45e6-ac7a-bcd2dc0c4b99 {"md5": "384d59a2ec8949dc45eab08bd8d27de1", "pid": "003202720", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/320272-0", "source": "GND"}], "preferred_name": "Rewe-Südwest-Lebensmittel-Grosshandel eG", "country_associated": "gw", "date_of_termination": "1988", "date_of_establishment": "1977", "authorized_access_point": "Rewe-Südwest-Lebensmittel-Grosshandel eG. Pirmasens"} 1 +2024-09-11 09:00:13.699732 2024-09-11 09:00:13.699736 01d16bf7-e5be-4012-b897-03cbbf4435c1 {"md5": "8f0dc5cc235ef3f03624118783e245cf", "pid": "003500950", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/350095-0", "source": "GND"}], "variant_name": ["Symposium on Animal, Plant and Microbial Toxins"], "preferred_name": "American Symposium on Animal, Plant and Microbial Toxins", "country_associated": "xxu", "variant_access_point": ["Symposium on Animal, Plant and Microbial Toxins, USA"], "authorized_access_point": "American Symposium on Animal, Plant and Microbial Toxins"} 1 +2024-09-11 09:00:13.762266 2024-09-11 09:00:13.762269 58c72c79-23c5-42c4-a58b-f402609cb576 {"md5": "be4673be52b3f4ee92c11123d589bb31", "pid": "003700526", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/370052-5", "source": "GND"}], "preferred_name": "Arbeiter-Turn- und -Sportbund. Kreis Nordwestdeutschland, Bremen, Oldenburg, Hannover. Fußballspielvereinigung", "authorized_access_point": "Arbeiter-Turn- und -Sportbund. Kreis Nordwestdeutschland, Bremen, Oldenburg, Hannover. Fußballspielvereinigung"} 1 +2024-09-11 09:00:13.813442 2024-09-11 09:00:13.813447 269f3633-b1b9-44d0-99b5-614ca4625fdf {"md5": "115a45781d9ca5d9f5c83b5c868d5a72", "pid": "00370064X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/370064-1", "source": "GND"}], "preferred_name": "Geschichtsfest", "authorized_access_point": "Geschichtsfest"} 1 +2024-09-11 09:00:13.865239 2024-09-11 09:00:13.865242 c1fe7f5b-8a6e-4447-825a-c659c4c66b21 {"md5": "1858be9ebf32f1461ca1528d942253f1", "pid": "003806596", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/380659-5", "source": "GND"}], "variant_name": ["Aboriginal Affairs Board"], "preferred_name": "South Australia. Aboriginal Affairs Board", "country_associated": "at", "variant_access_point": ["Aboriginal Affairs Board. South Australia"], "authorized_access_point": "South Australia. Aboriginal Affairs Board"} 1 +2024-09-11 09:00:13.965292 2024-09-11 09:00:13.965296 823e407c-ba6a-48a3-bd61-a55d55dec4dc {"md5": "0f9cde57a717034a455471b8dab056cf", "pid": "00381307X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/381307-1", "source": "GND"}], "variant_name": ["Ministry of Local Government"], "preferred_name": "Eastern Nigeria. Ministry of Local Government", "country_associated": "nr", "variant_access_point": ["Ministry of Local Government. Eastern Nigeria"], "authorized_access_point": "Eastern Nigeria. Ministry of Local Government"} 1 +2024-09-11 09:00:14.015905 2024-09-11 09:00:14.015908 51fde689-1349-4baf-97fa-ffb1b92c08a9 {"md5": "a31d43985d59728e3cffce482cfb2979", "pid": "004008294", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1001205-9", "source": "GND"}], "variant_name": ["AUT"], "preferred_name": "Association of University Teachers", "country_associated": "xxk", "date_of_termination": "01.06.2006", "variant_access_point": ["AUT. Abkuerzung"], "date_of_establishment": "28.06.1919", "authorized_access_point": "Association of University Teachers"} 1 +2024-09-11 09:00:14.079768 2024-09-11 09:00:14.079773 7b09b48e-f365-4b66-bbaa-68523bc03cb0 {"md5": "5e69399f03bb5934d3232309dc440137", "pid": "004029763", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1005218-5", "source": "GND"}], "variant_name": ["Magyar Szocialista Munkáspárt. Párttörténeti Intézet", "Magyar Szocialista Munkáspárt. Institut für Parteigeschichte", "Institut Istorii Partii", "Institut für Parteigeschichte"], "preferred_name": "Párttörténeti Intézet", "country_associated": "hu", "variant_access_point": ["Magyar Szocialista Munkáspárt. Párttörténeti Intézet", "Magyar Szocialista Munkáspárt. Institut für Parteigeschichte", "Institut Istorii Partii. Budapest", "Institut für Parteigeschichte. Budapest"], "authorized_access_point": "Párttörténeti Intézet. Budapest"} 1 +2024-09-11 09:00:14.12988 2024-09-11 09:00:14.129884 07d0c9e6-3a42-45a3-862b-ff235601af58 {"md5": "ce13833903e154e7d1bb7f826a461eaa", "pid": "004036239", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1006503-9", "source": "GND"}], "preferred_name": "Nordic Meeting on Medical and Biological Engineering, 1", "authorized_access_point": "Nordic Meeting on Medical and Biological Engineering, 1, 1970, Otaniemi"} 1 +2024-09-11 09:00:14.180061 2024-09-11 09:00:14.180064 27d862fe-00e8-4617-9cc6-43237e234c22 {"md5": "79389a7d3269349cf68a7da1e35f7e2e", "pid": "004037073", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1006637-8", "source": "GND"}], "variant_name": ["Landwirtschaftskammer", "Landwirtschaftskammer", "LKSH"], "preferred_name": "Landwirtschaftskammer Schleswig-Holstein", "country_associated": "gw", "variant_access_point": ["Landwirtschaftskammer. Kiel", "Landwirtschaftskammer. Rendsburg", "LKSH. Abkuerzung"], "date_of_establishment": "1953", "authorized_access_point": "Landwirtschaftskammer Schleswig-Holstein"} 1 +2024-09-11 09:00:14.231466 2024-09-11 09:00:14.23147 efc086e2-cc43-4a95-97d5-281c50e946dc {"md5": "1fe19de971eb7e2bb4b82e19e5d67d63", "pid": "004056264", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1010061-1", "source": "GND"}], "variant_name": ["SNSP"], "preferred_name": "Società napoletana di storia patria", "country_associated": "it", "variant_access_point": ["SNSP. Abkuerzung"], "date_of_establishment": "1945", "authorized_access_point": "Società napoletana di storia patria"} 1 +2024-09-11 09:00:14.282403 2024-09-11 09:00:14.282405 12f73e57-3295-49f1-92a9-3042c3298599 {"md5": "02384d565b3de08ec7e5f42305a5af4d", "pid": "00406397X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1011228-5", "source": "GND"}], "variant_name": ["Universität Salerno", "Università di Salerno", "University of Salerno", "Università degli Studi", "Università", "Università degli studi di Salerno", "Univ. Salerno", "Università degli studi"], "preferred_name": "Università degli studi di Salerno", "country_associated": "it", "variant_access_point": ["Universität Salerno. Ehemalige Vorzugsbenennung SWD", "Università di Salerno", "University of Salerno", "Università degli Studi. Salerno", "Università. Salerno", "Università degli studi di Salerno. Benevento", "Univ. Salerno", "Università degli studi. Salerno"], "authorized_access_point": "Università degli studi di Salerno"} 1 +2024-09-11 09:00:14.342339 2024-09-11 09:00:14.342343 d5a45abc-a5ab-4e51-9e5d-13b36f7880c6 {"md5": "fe423bbae76053f22d3a43115276b370", "pid": "004083687", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1015042-0", "source": "GND"}], "variant_name": ["Institutes in Pastoral Psychology", "Institute in Pastoral Psychology"], "preferred_name": "Institute of Pastoral Psychology", "country_associated": "xxu", "variant_access_point": ["Institutes in Pastoral Psychology. New York, NY", "Institute in Pastoral Psychology. New York, NY"], "authorized_access_point": "Institute of Pastoral Psychology. New York, NY"} 1 +2024-09-11 09:00:14.393506 2024-09-11 09:00:14.393508 f723e81c-a55e-49ba-8e89-5172b71ad8cd {"md5": "ef638e48482aee42c19e947fc4a6709c", "pid": "004084233", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1015121-7", "source": "GND"}], "variant_name": ["Association Internationale des Études Byzantines", "Diethnes Henōsis Byzantinōn Spudōn", "Societas Internationalis Studiis Byzantinis Provehendis Destinata", "Association Internationale des Etudes Byzantines", "International Byzantine Association", "AIEB", "Association for Byzantine Studies", "Diethnēs henōsis Byzantinōn spudōn", "Henōsis Byzantinōn spudōn", "Societas internationalis studiis Byzantinis provehendis destinata", "Association internationale des études byzantines"], "preferred_name": "International Association for Byzantine Studies", "variant_access_point": ["Association Internationale des Études Byzantines", "Diethnes Henōsis Byzantinōn Spudōn", "Societas Internationalis Studiis Byzantinis Provehendis Destinata", "Association Internationale des Etudes Byzantines", "International Byzantine Association", "AIEB. Association internationale des études byzantines", "Association for Byzantine Studies", "Diethnēs henōsis Byzantinōn spudōn", "Henōsis Byzantinōn spudōn", "Societas internationalis studiis Byzantinis provehendis destinata", "Association internationale des études byzantines"], "authorized_access_point": "International Association for Byzantine Studies"} 1 +2024-09-11 09:00:14.614675 2024-09-11 09:00:14.614677 db161301-cc26-4a12-bd57-fac6ed5db476 {"md5": "11708e6bf430c71fb3eef2c48062b7fd", "pid": "00409753X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1017327-4", "source": "GND"}], "variant_name": ["Stendhal-Club"], "preferred_name": "Stendhal Club", "variant_access_point": ["Stendhal-Club"], "authorized_access_point": "Stendhal Club"} 1 +2024-09-11 09:00:14.67064 2024-09-11 09:00:14.670643 6cd18d33-b1ed-4b43-af4f-5a12b165a967 {"md5": "9cca351cfece3afd18ba7f8f27953786", "pid": "004106059", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1018585-9", "source": "GND"}], "variant_name": ["Ordo Fratrum Beatae Mariae Virginis de Monte Carmelo", "OCarm", "Ordo Fratrum Beatissimae Virginis Mariae de Monte Carmelo", "Orden da la Bienaventurada Virgen Maria del Monte Carmelo", "Orden der Beschuhten Karmeliten", "Orden der Brüder der allerseligsten Jungfrau Maria vom Berge Karmel", "Ordo Fratrum Carmelitarum", "Ordo Carmelitarum", "Ordo B. V. Mariae de Monte Carmelo", "Ordo Fratrum Carmelitarum Antiquae Observantiae", "Ordo Fratrum Carmelitarum Calceatorum", "OCC", "Beschuhte Karmeliten", "Karmeliterorden", "Karmelitenorden", "Ordo Fratrum B. V. Mariae de Monte Carmelo", "Ordo Fratrum B. V. M. de Monte Carmelo", "Orden de la Bienaventurada Virgen Maria del Monte Carmelo", "O.Fr.B.M.V.d.M.C.", "Karmeliter", "Carmeliter"], "preferred_name": "Karmeliten", "variant_access_point": ["Ordo Fratrum Beatae Mariae Virginis de Monte Carmelo", "OCarm. Abkuerzung", "Ordo Fratrum Beatissimae Virginis Mariae de Monte Carmelo", "Orden da la Bienaventurada Virgen Maria del Monte Carmelo", "Orden der Beschuhten Karmeliten", "Orden der Brüder der allerseligsten Jungfrau Maria vom Berge Karmel", "Ordo Fratrum Carmelitarum", "Ordo Carmelitarum", "Ordo B. V. Mariae de Monte Carmelo", "Ordo Fratrum Carmelitarum Antiquae Observantiae", "Ordo Fratrum Carmelitarum Calceatorum", "OCC", "Beschuhte Karmeliten", "Karmeliterorden", "Karmelitenorden", "Ordo Fratrum B. V. Mariae de Monte Carmelo", "Ordo Fratrum B. V. M. de Monte Carmelo", "Orden de la Bienaventurada Virgen Maria del Monte Carmelo", "O.Fr.B.M.V.d.M.C.", "Karmeliter", "Carmeliter"], "date_of_establishment": "ca. 12./13. Jh.", "authorized_access_point": "Karmeliten", "biographical_information": ["Im 12. Jahrhundert gegründeter katholischer Orden; 1593 spalteten sich die Unbeschuhten Karmeliten davon ab."]} 1 +2024-09-11 09:00:14.731586 2024-09-11 09:00:14.73159 dafd66df-f134-4a3c-ba09-43528cd1b984 {"md5": "9c85e621d56059ea567f8a7c76ea36b6", "pid": "004110404", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1019161-6", "source": "GND"}], "variant_name": ["Mädchengymnasium Hof"], "preferred_name": "Städtisches Mädchengymnasium Hof", "country_associated": "gw", "variant_access_point": ["Mädchengymnasium Hof"], "authorized_access_point": "Städtisches Mädchengymnasium Hof"} 1 +2024-09-11 09:00:14.780663 2024-09-11 09:00:14.780666 293fec6a-fd78-4441-9a0f-619511d3d86a {"md5": "7d1869659810a679ae460fe7caffbb95", "pid": "004112148", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1019393-5", "source": "GND"}], "preferred_name": "Institute of Public Administration", "country_associated": "xxu", "authorized_access_point": "Institute of Public Administration. New York, NY"} 1 +2024-09-11 09:00:14.831666 2024-09-11 09:00:14.831669 4a871655-5c87-441e-9be0-31c55f812339 {"md5": "8572cde8b277e26ae5bacc878ab72a6a", "pid": "004115996", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1019898-2", "source": "GND"}], "variant_name": ["Centre de Recherche sur l'Éducation Spécialisée et de l'Adaptation Scolaire", "CRESAS", "Institut national de recherche pédagogique. Centre de recherche de l'éducation spécialisée et de l'adaptation scolaire", "Unité \\"Centre de recherche sur l'éducation spécialisée l'adaptation scolaire\\"", "C.R.E.S.A.S.", "Institut national de recherche et de documentation pédagogiques. Centre de recherche de l'éducation spécialisée et de l'adaptation scolaire", "Institut national de recherche pédagogique. Département \\"Politiques, pratiques et acteurs de l'éducation. Centre de recherche de l'éducation spécialisée et de l'adaptation scolaire", "Centre de recherche sur l'éducation spécialisée et de l'adaptation scolaire"], "preferred_name": "Centre de recherche de l'éducation spécialisée et de l'adaptation scolaire", "country_associated": "fr", "variant_access_point": ["Centre de Recherche sur l'Éducation Spécialisée et de l'Adaptation Scolaire. Paris", "CRESAS. Abkuerzung", "Institut national de recherche pédagogique. Paris. Centre de recherche de l'éducation spécialisée et de l'adaptation scolaire", "Unité \\"Centre de recherche sur l'éducation spécialisée l'adaptation scolaire\\"", "C.R.E.S.A.S.. Abkuerzung", "Institut national de recherche et de documentation pédagogiques. Paris. Centre de recherche de l'éducation spécialisée et de l'adaptation scolaire", "Institut national de recherche pédagogique. Paris. Département \\"Politiques, pratiques et acteurs de l'éducation. Centre de recherche de l'éducation spécialisée et de l'adaptation scolaire", "Centre de recherche sur l'éducation spécialisée et de l'adaptation scolaire"], "authorized_access_point": "Centre de recherche de l'éducation spécialisée et de l'adaptation scolaire. Paris"} 1 +2024-09-11 09:00:14.882651 2024-09-11 09:00:14.882654 90298b4b-2496-4880-b6f9-0237388d0b77 {"md5": "639e6b2b34419cd6316c4a40bd49981c", "pid": "004119983", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1020415-5", "source": "GND"}], "preferred_name": "University of Hawaii. Asian and Pacific Languages Department", "country_associated": "xxu", "authorized_access_point": "University of Hawaii. Asian and Pacific Languages Department"} 1 +2024-09-11 09:00:14.936418 2024-09-11 09:00:14.936422 b4718088-78d4-4501-b97e-174aad9e44f6 {"md5": "4ff8461df702171686fdfe4e7c261487", "pid": "004123158", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1020923-2", "source": "GND"}], "variant_name": ["Department of History"], "preferred_name": "Johns Hopkins University. Department of History", "country_associated": "xxu", "variant_access_point": ["Department of History. Johns Hopkins University"], "authorized_access_point": "Johns Hopkins University. Department of History"} 1 +2024-09-11 09:00:14.986589 2024-09-11 09:00:14.986592 a5cac9d7-d4ee-4131-b806-ec1e0fce2506 {"md5": "c29a7fe32ed9764c282c2fd5b17e034f", "pid": "004127900", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1021600-5", "source": "GND"}], "preferred_name": "Campagna di Rilevamento dei Beni Artistici e Culturali dell'Appennino", "authorized_access_point": "Campagna di Rilevamento dei Beni Artistici e Culturali dell'Appennino"} 1 +2024-09-11 09:00:15.037237 2024-09-11 09:00:15.03724 fde65a7e-5801-4302-9fd5-1aa947bc7da9 {"md5": "74a633eb4914d8247afa83179e7b7b4c", "pid": "00414631X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1024138-3", "source": "GND"}], "variant_name": ["Institute for Scientific and Technical Documentation and Information", "Institut za Naučno Tehničku Dokumentaciju i Informacije", "INTDI"], "preferred_name": "Institut za Naučno-Tehničku Dokumentaciju i Informacije", "variant_access_point": ["Institute for Scientific and Technical Documentation and Information. Belgrad", "Institut za Naučno Tehničku Dokumentaciju i Informacije. Belgrad", "INTDI. Abkuerzung"], "authorized_access_point": "Institut za Naučno-Tehničku Dokumentaciju i Informacije. Belgrad"} 1 +2024-09-11 09:00:15.091493 2024-09-11 09:00:15.091496 cbae83b2-7ab1-458b-aa26-482cf9cb5ac2 {"md5": "d54a542a1126c2e310c2538427f5630c", "pid": "004149289", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1024542-X", "source": "GND"}], "preferred_name": "Grémio Nacional dos Editores e Livreiros", "authorized_access_point": "Grémio Nacional dos Editores e Livreiros"} 1 +2024-09-11 09:00:15.155108 2024-09-11 09:00:15.155111 dd684b30-a278-40e5-964c-ff667b9dec88 {"md5": "9a30913e2ca9cac0183d5fce8a6889e5", "pid": "004150988", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1024764-6", "source": "GND"}], "variant_name": ["Fluminense Federal University", "UFF", "Universidade Federal Fluminense", "UFF", "Univ. Federal Fluminense"], "preferred_name": "Universidade Federal Fluminense", "country_associated": "bl", "variant_access_point": ["Fluminense Federal University", "UFF. Abkuerzung", "Universidade Federal Fluminense. Rio de Janeiro", "UFF. Universidade Federal Fluminense ; Rio de Janeiro", "Univ. Federal Fluminense. Rio de Janeiro"], "authorized_access_point": "Universidade Federal Fluminense"} 1 +2024-09-11 09:01:29.399989 2024-09-11 09:01:29.399991 e6f2abb7-e395-45a0-ba5f-934ee402d7d4 {"md5": "df842eedb7d377506e3d82ca34022f81", "pid": "115493069", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/115493069", "source": "GND"}], "preferred_name": "Nakhla, Fayek", "authorized_access_point": "Nakhla, Fayek"} 1 +2024-09-11 09:00:15.213218 2024-09-11 09:00:15.213222 7580ce6b-63d7-42b6-94ed-2283d9a49603 {"md5": "824e9f2c7f1550b372cc927c4af2f259", "pid": "004151917", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1024891-2", "source": "GND"}], "variant_name": ["Deutsche Stadtentwicklungs- und Kreditgesellschaft. Stadt- und Regionalforschung"], "preferred_name": "Deutsche Stadtentwicklungs- und Kreditgesellschaft. Abteilung Stadt- und Regionalforschung", "country_associated": "gw", "variant_access_point": ["Deutsche Stadtentwicklungs- und Kreditgesellschaft. Frankfurt, Main. Stadt- und Regionalforschung"], "authorized_access_point": "Deutsche Stadtentwicklungs- und Kreditgesellschaft. Frankfurt, Main. Abteilung Stadt- und Regionalforschung"} 1 +2024-09-11 09:00:15.264503 2024-09-11 09:00:15.264506 9fdc7a17-fe50-408e-8b94-57dc0f43ddc4 {"md5": "a30e2981c9ca26506ebb6a86dba9e5d5", "pid": "004159837", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1025948-X", "source": "GND"}], "variant_name": ["ARPFMC", "ARPFMC"], "preferred_name": "Association de Recherches sur la Poésie Française Moderne et Contemporaine", "variant_access_point": ["ARPFMC", "ARPFMC. Association de Recherches sur la Poésie Française Moderne et Contemporaine"], "authorized_access_point": "Association de Recherches sur la Poésie Française Moderne et Contemporaine"} 1 +2024-09-11 09:00:15.326273 2024-09-11 09:00:15.326277 9b99cab0-318e-48e7-bfa2-7d9e853a9423 {"md5": "8ca52ba2e1379b016d75b64b5eadfd5f", "pid": "004171004", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1027530-7", "source": "GND"}], "preferred_name": "Buddhistisches Seminar", "country_associated": "gw", "date_of_establishment": "1948", "authorized_access_point": "Buddhistisches Seminar. Hamburg"} 1 +2024-09-11 09:00:15.377417 2024-09-11 09:00:15.377421 cc9b4124-68b6-4943-a9e7-002a75e07844 {"md5": "a58ca33bb2f386190c7432cea580c3a1", "pid": "00418484X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1029441-7", "source": "GND"}], "variant_name": ["Archaeological Rescue Unit"], "preferred_name": "Kent Archaeological Rescue Unit", "country_associated": "xxk", "variant_access_point": ["Archaeological Rescue Unit. Kent"], "authorized_access_point": "Kent Archaeological Rescue Unit"} 1 +2024-09-11 09:00:15.439955 2024-09-11 09:00:15.439957 e950f52f-00c5-4abd-8e4f-f362aee25e16 {"md5": "cd8550dc98d1262aeb07909628e78813", "pid": "004191811", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1030330-3", "source": "GND"}], "variant_name": ["Konferencija po taksonomii bakterij"], "preferred_name": "Conference on the Taxonomy of Bacteria", "variant_access_point": ["Konferencija po taksonomii bakterij, 1969, Brünn"], "authorized_access_point": "Conference on the Taxonomy of Bacteria, 1969, Brünn"} 1 +2024-09-11 09:00:15.491466 2024-09-11 09:00:15.49147 135cea53-d936-415f-aa4c-dd44c496862a {"md5": "05ec6f85c5abf3f3c5be8d507ccb0a41", "pid": "004196287", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1030914-7", "source": "GND"}], "preferred_name": "Symposium on the Theory of Scheduling and Its Applications", "country_associated": "xxu", "authorized_access_point": "Symposium on the Theory of Scheduling and Its Applications, 1972, Raleigh, NC"} 1 +2024-09-11 09:00:15.548466 2024-09-11 09:00:15.548469 fb6950f8-7e7b-4b20-b514-2e00c8461c8a {"md5": "f3dba26e9243854875f771a5681873ce", "pid": "004220765", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1034917-0", "source": "GND"}], "preferred_name": "Oaxaca Coast Project", "country_associated": "mx", "authorized_access_point": "Oaxaca Coast Project"} 1 +2024-09-11 09:00:15.60018 2024-09-11 09:00:15.600183 e833d7ba-ae79-4440-975a-63b177666cc8 {"md5": "9a74819079cb7523e8a5799a37e1ec38", "pid": "004232933", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1038516-2", "source": "GND"}], "variant_name": ["Ritterschaft", "Verband der Baltischen Ritterschaften. Estländische Ritterschaft"], "preferred_name": "Estländische Ritterschaft", "country_associated": "er", "variant_access_point": ["Ritterschaft. Estland", "Verband der Baltischen Ritterschaften. Estländische Ritterschaft"], "authorized_access_point": "Estländische Ritterschaft"} 1 +2024-09-11 09:00:15.665567 2024-09-11 09:00:15.665573 2bf9774e-251a-4aa4-bcc8-75a22cb3058f {"md5": "e5e2b55f4c118eb75b556a5a8bc1b1fb", "pid": "004247280", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1040834-4", "source": "GND"}], "variant_name": ["WHB"], "preferred_name": "Waldviertler Heimatbund", "country_associated": "au", "variant_access_point": ["WHB. Abkuerzung"], "date_of_establishment": "09.09.1951", "authorized_access_point": "Waldviertler Heimatbund"} 1 +2024-09-11 09:00:15.71716 2024-09-11 09:00:15.717162 76f42da5-9bda-4dd8-a339-894e6115ce83 {"md5": "ffa3c6bc3e76bbd11b58d3c15faf6a1b", "pid": "004263707", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1043401-X", "source": "GND"}], "variant_name": ["Freie Universität Berlin. Fachbereich 12"], "preferred_name": "Freie Universität Berlin. Fachbereich Erziehungswissenschaften", "country_associated": "gw", "variant_access_point": ["Freie Universität Berlin. Fachbereich 12. Fachbereich Erziehungswissenschaften"], "authorized_access_point": "Freie Universität Berlin. Fachbereich Erziehungswissenschaften"} 1 +2024-09-11 09:00:15.770358 2024-09-11 09:00:15.770361 e82c0bf7-4772-4aa8-bacd-834b3be0d985 {"md5": "950e5c557b6f624fc57d424079c7e30e", "pid": "004265718", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1043701-0", "source": "GND"}], "variant_name": ["Gesellschaft für Medizinische Tumortherapie"], "preferred_name": "Deutsche Gesellschaft für Medizinische Tumortherapie", "country_associated": "gw", "variant_access_point": ["Gesellschaft für Medizinische Tumortherapie. Deutschland, Bundesrepublik"], "authorized_access_point": "Deutsche Gesellschaft für Medizinische Tumortherapie"} 1 +2024-09-11 09:00:15.823415 2024-09-11 09:00:15.823417 819fd6f4-eec9-418e-81cf-c3235efe2195 {"md5": "7ec8b7b826d538feffbd3fd7c93bccbc", "pid": "004270525", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1044614-X", "source": "GND"}], "preferred_name": "Ostbayernschau", "country_associated": "gw", "authorized_access_point": "Ostbayernschau"} 1 +2024-09-11 09:00:15.899992 2024-09-11 09:00:15.899996 55c23042-68e9-47e8-b6d9-9e33ec1e7638 {"md5": "040152b8dce50bd43f904e4c70dab118", "pid": "004285565", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1046847-X", "source": "GND"}], "variant_name": ["Interdiözesaner Fonds"], "preferred_name": "Interdiözesaner Katechetischer Fonds", "variant_access_point": ["Interdiözesaner Fonds"], "authorized_access_point": "Interdiözesaner Katechetischer Fonds"} 1 +2024-09-11 09:00:15.955744 2024-09-11 09:00:15.955747 86293257-202c-4324-9cb5-6ec782036a97 {"md5": "9c42ed593f31e88fe83c103a64631b89", "pid": "004288637", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1047266-6", "source": "GND"}], "preferred_name": "Arbeitsgemeinschaft für Sozialwissenschaftliche Publizistik", "authorized_access_point": "Arbeitsgemeinschaft für Sozialwissenschaftliche Publizistik"} 1 +2024-09-11 09:00:16.018041 2024-09-11 09:00:16.018044 034b2756-50d6-4350-a281-9bec93269a1d {"md5": "18a61f8ed8f932a61b92325e791af26b", "pid": "004290674", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1047552-7", "source": "GND"}], "variant_name": ["Institute of Archaeology", "Institute of Archaeology", "UCLA Institute of Archaeology"], "preferred_name": "University of California Los Angeles. Institute of Archaeology", "country_associated": "xxu", "variant_access_point": ["Institute of Archaeology. University of California Los Angeles", "Institute of Archaeology. Los Angeles, Calif.", "UCLA Institute of Archaeology"], "authorized_access_point": "University of California Los Angeles. Institute of Archaeology"} 1 +2024-09-11 09:00:16.071762 2024-09-11 09:00:16.071765 9da9df8b-f0f4-401a-9832-2b5070a308b9 {"md5": "f37771764fe475d30a6877add4e05213", "pid": "004315669", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1051598-7", "source": "GND"}], "variant_name": ["Institute of Archaeology"], "preferred_name": "Australian Institute of Archaeology", "country_associated": "at", "variant_access_point": ["Institute of Archaeology. Melbourne"], "authorized_access_point": "Australian Institute of Archaeology. Melbourne"} 1 +2024-09-11 09:00:16.128952 2024-09-11 09:00:16.128955 469d72eb-07aa-4e80-adc4-824c541525bd {"md5": "3cabf5cab64b4a08a6c1b5e6aebaf3ef", "pid": "004340183", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1055671-0", "source": "GND"}], "variant_name": ["Institute of Technology", "FIT"], "preferred_name": "Footscray Institute of Technology", "country_associated": "at", "variant_access_point": ["Institute of Technology. Footscray, Victoria", "FIT. Abkuerzung"], "authorized_access_point": "Footscray Institute of Technology"} 1 +2024-09-11 09:00:16.185012 2024-09-11 09:00:16.185015 2473521f-1e66-488d-8ec7-5df48c620789 {"md5": "0907cdc46cbf52b02946c7e6d53938f8", "pid": "004358554", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1080204-6", "source": "GND"}], "preferred_name": "Staatliche Realschule Kaufbeuren", "country_associated": "gw", "authorized_access_point": "Staatliche Realschule Kaufbeuren"} 1 +2024-09-11 09:00:16.256551 2024-09-11 09:00:16.256554 2f9bad31-0eaf-4b98-8ef3-66480b9448bf {"md5": "2ca048d68e46341c58cbaf380ca1b953", "pid": "004361342", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1080678-7", "source": "GND"}], "preferred_name": "Dēmokratikon Metōpon Eparchias Argyrokastru gia tēn Hellēnike Meionotēta", "country_associated": "gr", "authorized_access_point": "Dēmokratikon Metōpon Eparchias Argyrokastru gia tēn Hellēnike Meionotēta"} 1 +2024-09-11 09:00:16.309947 2024-09-11 09:00:16.309951 0d7cddbc-dffb-4014-8d34-12c3916f23a0 {"md5": "266b59eb168b93dfa5f11cfea6f2679e", "pid": "004363779", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081063-8", "source": "GND"}], "variant_name": ["USA. House of Representatives. Committee on the Judiciary. Subcommittee on Immigration, Refugees and International Law", "Subcommittee on Immigration, Refugees and International Law"], "preferred_name": "USA. Subcommittee on Immigration, Refugees and International Law", "country_associated": "xxu", "variant_access_point": ["USA. House of Representatives. Committee on the Judiciary. Subcommittee on Immigration, Refugees and International Law", "Subcommittee on Immigration, Refugees and International Law. USA"], "authorized_access_point": "USA. Subcommittee on Immigration, Refugees and International Law"} 1 +2024-09-11 09:00:16.375732 2024-09-11 09:00:16.375735 4652ca37-448d-4eb1-93b8-92512fc0b553 {"md5": "7ebd3bbcf63dd4aa5740c0ec8c5c69d4", "pid": "004379802", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1083529-5", "source": "GND"}], "variant_name": ["Sint-Pieterscollege"], "preferred_name": "College Sint-Pieter", "country_associated": "be", "variant_access_point": ["Sint-Pieterscollege. Blankenberge"], "authorized_access_point": "College Sint-Pieter. Blankenberge"} 1 +2024-09-11 09:00:16.425183 2024-09-11 09:00:16.425186 4454f877-a6a9-4706-9337-8c44f7695d47 {"md5": "a4741c096bc0aa4600d4ea669e8d5475", "pid": "004384865", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1084393-0", "source": "GND"}], "variant_name": ["ICMA"], "preferred_name": "Institute of Cost and Management Accountants", "country_associated": "xxk", "date_of_termination": "1986", "variant_access_point": ["ICMA. Abkuerzung"], "date_of_establishment": "1972", "authorized_access_point": "Institute of Cost and Management Accountants", "biographical_information": ["Sitz: London"]} 1 +2024-09-11 09:00:16.479112 2024-09-11 09:00:16.479116 a6abeeba-49fe-4302-8af3-0ca36960911f {"md5": "d385cfe537fc02396a2c3b190897bb9e", "pid": "004394828", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086195-6", "source": "GND"}], "variant_name": ["Center for Judaic Studies"], "preferred_name": "University of Denver. Center for Judaic Studies", "country_associated": "xxu", "variant_access_point": ["Center for Judaic Studies. Denver, Colo."], "authorized_access_point": "University of Denver. Center for Judaic Studies"} 1 +2024-09-11 09:00:16.531186 2024-09-11 09:00:16.531189 27902357-32cf-470b-8bb4-a82249099729 {"md5": "003f4622089ce51efb8c8357cb333319", "pid": "004401875", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087602-9", "source": "GND"}], "preferred_name": "Workshop on Vitamin D, 5", "country_associated": "xxu", "authorized_access_point": "Workshop on Vitamin D, 5, 1982, Williamsburg, Va."} 1 +2024-09-11 09:00:16.585996 2024-09-11 09:00:16.585999 36118254-5224-41a3-a338-37c119d85a6e {"md5": "7a467cb3f7c05667a8a957ddb7c06365", "pid": "004406583", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1088537-7", "source": "GND"}], "variant_name": ["Gynecological Society"], "preferred_name": "Chicago Gynecological Society", "country_associated": "xxu", "variant_access_point": ["Gynecological Society. Chicago, Ill."], "authorized_access_point": "Chicago Gynecological Society"} 1 +2024-09-11 09:00:16.644266 2024-09-11 09:00:16.64427 ab41bb16-43c9-441d-9c80-4629c1b5c0d6 {"md5": "84b47f1ee59f0753f0a4e4871a41e671", "pid": "004407156", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1088644-8", "source": "GND"}], "variant_name": ["Konserthusstiftelse"], "preferred_name": "Stockholms Konserthusstiftelse", "country_associated": "sw", "variant_access_point": ["Konserthusstiftelse. Stockholm"], "authorized_access_point": "Stockholms Konserthusstiftelse"} 1 +2024-09-11 09:00:16.70058 2024-09-11 09:00:16.700585 fc5e3da2-97d5-46db-826d-cf017da9c5e2 {"md5": "78e77191f8cbda089c7579f77c0b80d2", "pid": "00442204X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1091315-4", "source": "GND"}], "variant_name": ["Centre for Jain Studies"], "preferred_name": "University of Rajasthan. Centre for Jain Studies", "country_associated": "ii", "variant_access_point": ["Centre for Jain Studies. Jaipur"], "authorized_access_point": "University of Rajasthan. Centre for Jain Studies"} 1 +2024-09-11 09:00:16.750786 2024-09-11 09:00:16.750789 e8abcd71-4f9f-4ef1-9a2a-2d26d92cffce {"md5": "13c9bf03408c64baab501940efed0d9c", "pid": "004427734", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1092231-3", "source": "GND"}], "variant_name": ["Soprintendenza per i Beni Artistici e Storici di Firenze e Pistoia. Opificio delle Pietre Dure e Laboratori di Restauro", "Opificio delle Pietre Dure", "Soprintendenza per i Beni Artistici e Storici di Firenze e Pistoia. Opificio delle Pietre Dure", "Soprintendenza Speciale per il Polo Museale Fiorentino. Opificio delle Pietre Dure e Laboratori di Restauro", "Restoration Laboratory", "OPD", "Opificio delle Pietre Dure", "Galleria dei Lavori", "Opificio delle Pietre Dure e Laboratori di Restauro", "Italien. Ministero per i Beni Culturali e Ambientali. Opificio delle pietre dure", "Opificio delle pietre dure e laboratori di restauro di Firenze", "O.P.D.", "Opificio delle Pietre Dure e Laboratori di Restauro"], "preferred_name": "Opificio delle Pietre Dure e Laboratori di Restauro", "country_associated": "it", "variant_access_point": ["Soprintendenza per i Beni Artistici e Storici di Firenze e Pistoia. Opificio delle Pietre Dure e Laboratori di Restauro", "Opificio delle Pietre Dure. Florenz", "Soprintendenza per i Beni Artistici e Storici di Firenze e Pistoia. Opificio delle Pietre Dure", "Soprintendenza Speciale per il Polo Museale Fiorentino. Opificio delle Pietre Dure e Laboratori di Restauro", "Restoration Laboratory. Florenz", "OPD. Abkuerzung", "Opificio delle Pietre Dure", "Galleria dei Lavori", "Opificio delle Pietre Dure e Laboratori di Restauro. Ehemalige Vorzugsbenennung SWD", "Italien. Ministero per i Beni Culturali e Ambientali. Opificio delle pietre dure", "Opificio delle pietre dure e laboratori di restauro di Firenze", "O.P.D.. Abkuerzung", "Opificio delle Pietre Dure e Laboratori di Restauro. Firenze"], "authorized_access_point": "Opificio delle Pietre Dure e Laboratori di Restauro. Florenz", "biographical_information": ["Werkstatt für Kunsthandwerk u. Inkrustationsarbeiten 1588 als Galleria dei Lavori in den Uffizien gegründet, Ende 19. Jh. auf Restaurierung verlegt, aktueller Name seit 1975"]} 1 +2024-09-11 09:00:16.802238 2024-09-11 09:00:16.802241 a2d7f8b0-837d-4532-8e38-6c9122f59124 {"md5": "14da5a8abc029617172c93711468ebd7", "pid": "004444507", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1095223-8", "source": "GND"}], "variant_name": ["Beirat für Literarischen Jugendschutz"], "preferred_name": "Bastei-Verlag Gustav H. Lübbe. Beirat für Literarischen Jugendschutz", "country_associated": "gw", "variant_access_point": ["Beirat für Literarischen Jugendschutz. Bergisch Gladbach"], "authorized_access_point": "Bastei-Verlag Gustav H. Lübbe. Bergisch Gladbach. Beirat für Literarischen Jugendschutz"} 1 +2024-09-11 09:00:16.857247 2024-09-11 09:00:16.85725 a19c980a-9c31-4c2a-8808-ee84732db92e {"md5": "f2f7f069bdd529563779908ae7299bf7", "pid": "004453379", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1096957-3", "source": "GND"}], "preferred_name": "Symposium zur Geschichte von Millstatt und Kärnten", "country_associated": "au", "authorized_access_point": "Symposium zur Geschichte von Millstatt und Kärnten, 1984, Millstatt"} 1 +2024-09-11 09:00:16.917308 2024-09-11 09:00:16.917311 757aae6d-301a-4bc0-a507-6c6d483c5a95 {"md5": "057e7b7b591ef7596088d66d394a76ce", "pid": "004462572", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1098955-9", "source": "GND"}], "variant_name": ["German Japanese Congress of Angiology, 3", "German-Japanese Congress of Angiology, 3", "Nichi-Doku-gōdō-myakukagaku-kaigi, 3"], "preferred_name": "Deutsch-Japanischer Kongreß für Angiologie, 3", "country_associated": "gw", "variant_access_point": ["German Japanese Congress of Angiology, 3, 1984, Heidelberg", "German-Japanese Congress of Angiology, 3, 1984, Heidelberg", "Nichi-Doku-gōdō-myakukagaku-kaigi, 3, 1984, Heidelberg"], "authorized_access_point": "Deutsch-Japanischer Kongreß für Angiologie, 3, 1984, Heidelberg"} 1 +2024-09-11 09:00:16.974849 2024-09-11 09:00:16.974851 f6df4d76-59d4-40e3-a524-ebc69dc4755a {"md5": "5a417cce003fa4ed0a3743b5a60cad3d", "pid": "004475771", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1212331-6", "source": "GND"}], "variant_name": ["Centro Amalfitano"], "preferred_name": "Centro di Cultura e Storia Amalfitana", "country_associated": "it", "variant_access_point": ["Centro Amalfitano"], "authorized_access_point": "Centro di Cultura e Storia Amalfitana", "biographical_information": ["Sitz: Amalfi"]} 1 +2024-09-11 09:00:17.035406 2024-09-11 09:00:17.035409 e9b52138-f600-4e45-a88b-f48648c41742 {"md5": "b8f6984756f64e081bfc235bf653c3e3", "pid": "004479319", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1212696-2", "source": "GND"}], "variant_name": ["Diana", "Schützenverein Diana", "Diana Neuhausen 1957"], "preferred_name": "Schützenverein Diana Neuhausen 1957", "country_associated": "gw", "variant_access_point": ["Diana. Neuhausen, Priesendorf", "Schützenverein Diana. Neuhausen, Priesendorf", "Diana Neuhausen 1957"], "authorized_access_point": "Schützenverein Diana Neuhausen 1957"} 1 +2024-09-11 09:00:17.087957 2024-09-11 09:00:17.087961 8260093c-01b0-4ac0-becc-d4ccb0e68685 {"md5": "c654de1b24f2b7cee15294a06dfe9016", "pid": "004507673", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1215688-7", "source": "GND"}], "variant_name": ["Meždunarodnaja Konferencija A. I. Solženicyn i Ego Tvorčestvo"], "preferred_name": "Konferencija A. I. Solženicyn i Ego Tvorčestvo", "country_associated": "xxu", "variant_access_point": ["Meždunarodnaja Konferencija A. I. Solženicyn i Ego Tvorčestvo, 1988, New York, NY"], "authorized_access_point": "Konferencija A. I. Solženicyn i Ego Tvorčestvo, 1988, New York, NY"} 1 +2024-09-11 09:00:27.782065 2024-09-11 09:00:27.782068 3d164a35-26a6-490a-ac7e-11e5dd086abd {"md5": "aea0d02946453f89a361ded822527425", "pid": "050031937", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5003193-4", "source": "GND"}], "preferred_name": "al- Mu'tamar li-ʿUlamā' al-Muslimīn, 3", "authorized_access_point": "al- Mu'tamar li-ʿUlamā' al-Muslimīn, 3, 1966, al-Qāhira"} 1 +2024-09-11 09:00:17.138589 2024-09-11 09:00:17.138592 4ddb9bde-d02f-4409-9c0f-603425c14b28 {"md5": "32d39a96733f5439dee340073fec897c", "pid": "004522176", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1217246-7", "source": "GND"}], "variant_name": ["Möbeldesign-Kontakte, 1"], "preferred_name": "Nürnberger Möbeldesign-Kontakte, 1", "variant_access_point": ["Möbeldesign-Kontakte, 1, 1989, Nürnberg"], "authorized_access_point": "Nürnberger Möbeldesign-Kontakte, 1, 1989, Nürnberg"} 1 +2024-09-11 09:00:17.189216 2024-09-11 09:00:17.189219 9e6f49f8-af9a-4710-ad6d-5f80bf5df8e4 {"md5": "d1d8e8d263b5ca6b9f78a2fd364f2471", "pid": "004534972", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1218585-1", "source": "GND"}], "variant_name": ["International Conference on Materials and Mechanisms of Superconductivity - High-Temperature Superconductors, 2"], "preferred_name": "International Conference on Materials and Mechanisms of Superconductivity - High Temperature Superconductors, 2", "country_associated": "xxu", "variant_access_point": ["International Conference on Materials and Mechanisms of Superconductivity - High-Temperature Superconductors, 2, 1989, Stanford, Calif."], "authorized_access_point": "International Conference on Materials and Mechanisms of Superconductivity - High Temperature Superconductors, 2, 1989, Stanford, Calif."} 1 +2024-09-11 09:00:17.242277 2024-09-11 09:00:17.242281 8d3615b1-5b56-4533-9956-d06e6870a55d {"md5": "737bc6ca33332cb35697725f9659bc81", "pid": "004535642", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1218657-0", "source": "GND"}], "preferred_name": "Symposium Trinkwassernotversorgung", "country_associated": "au", "authorized_access_point": "Symposium Trinkwassernotversorgung, 1989, Wien"} 1 +2024-09-11 09:00:17.309191 2024-09-11 09:00:17.309196 56e4c397-08c8-447d-8d47-1ce93e8ff2aa {"md5": "32c10b6b508cd30697b08ecda9af00b8", "pid": "004544617", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1219614-9", "source": "GND"}], "variant_name": ["Materials Science Committee"], "preferred_name": "Institute of Metals. Materials Science Committee", "country_associated": "xxk", "variant_access_point": ["Materials Science Committee. Institute of Metals"], "authorized_access_point": "Institute of Metals. Materials Science Committee"} 1 +2024-09-11 09:00:17.380381 2024-09-11 09:00:17.380384 22eea59c-3851-4639-8d47-15334c16a81e {"md5": "5b6a435c8e1ebf9dc69a4213705d1205", "pid": "004554159", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1220634-9", "source": "GND"}], "variant_name": ["EWSL, 2"], "preferred_name": "European Working Session on Learning, 2", "variant_access_point": ["EWSL, 2, 1987, Bled"], "authorized_access_point": "European Working Session on Learning, 2, 1987, Bled"} 1 +2024-09-11 09:00:17.452743 2024-09-11 09:00:17.452747 0b82e605-8281-47d9-9e47-2ae30def369a {"md5": "614ca1d360e62fd513d69c21776478c2", "pid": "004556208", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1220848-6", "source": "GND"}], "variant_name": ["Sportkegelclub \\"Links Vorbei\\" Bad Rodach", "Sportkegelklub \\"Links Vorbei\\" Bad Rodach", "Links Vorbei"], "preferred_name": "SKC \\"Links Vorbei\\" Bad Rodach", "country_associated": "gw", "variant_access_point": ["Sportkegelclub \\"Links Vorbei\\" Bad Rodach", "Sportkegelklub \\"Links Vorbei\\" Bad Rodach", "Links Vorbei"], "authorized_access_point": "SKC \\"Links Vorbei\\" Bad Rodach"} 1 +2024-09-11 09:00:17.51227 2024-09-11 09:00:17.512274 d02420ad-19a6-46b1-b241-b75d0ea8a5cc {"md5": "7b89a07cd82cdc78465261ca7f83c58a", "pid": "004559444", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1221205-2", "source": "GND"}], "preferred_name": "Kazı Sonuçları Toplantısı, 9", "country_associated": "tu", "authorized_access_point": "Kazı Sonuçları Toplantısı, 9, 1987, Ankara"} 1 +2024-09-11 09:00:17.576158 2024-09-11 09:00:17.576162 8f1e873a-0a02-4d24-a356-638234d6f4fe {"md5": "71c43fffeccc87ce1f749a6d06683fb2", "pid": "004570359", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1222375-X", "source": "GND"}], "preferred_name": "World Congress on Reading, 12", "country_associated": "at", "authorized_access_point": "World Congress on Reading, 12, 1988, Gold Coast, Queensland"} 1 +2024-09-11 09:00:17.628966 2024-09-11 09:00:17.62897 4ff57d9c-61af-467f-8bdf-fda50816b944 {"md5": "86e508fb078353112a73276ad7382b4e", "pid": "004612876", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2000322-5", "source": "GND"}], "preferred_name": "Degerlocher Arbeitskreis", "authorized_access_point": "Degerlocher Arbeitskreis"} 1 +2024-09-11 09:00:17.68008 2024-09-11 09:00:17.680085 c048a94d-48ee-4cdf-9bb6-ef23fc0a7c77 {"md5": "56a78d455f04c90ad3146976ba81fe6b", "pid": "004652851", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2004951-1", "source": "GND"}], "variant_name": ["Akademie der Pädagogischen Wissenschaften der DDR. Arbeitsstelle Westdeutsche Pädagogik"], "preferred_name": "Arbeitsstelle Westdeutsche Pädagogik", "variant_access_point": ["Akademie der Pädagogischen Wissenschaften der DDR. Arbeitsstelle Westdeutsche Pädagogik"], "authorized_access_point": "Arbeitsstelle Westdeutsche Pädagogik"} 1 +2024-09-11 09:00:17.737288 2024-09-11 09:00:17.737292 989715f5-9366-45a2-823a-afae3f6c5876 {"md5": "132ccf4f1ad98089c5adc266ca4c01bd", "pid": "004656253", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2005334-4", "source": "GND"}], "preferred_name": "Ausstellung Deutsche Graphik der Letzten Hundert Jahre aus der Sammlung Karl August Reiser Bonn", "country_associated": "gw", "authorized_access_point": "Ausstellung Deutsche Graphik der Letzten Hundert Jahre aus der Sammlung Karl August Reiser Bonn, 1968"} 1 +2024-09-11 09:00:17.790674 2024-09-11 09:00:17.790677 0784cc41-7928-4504-bb85-c8cb36dedcbc {"md5": "ea27c3b4c2aa2395112bd1842148a3f5", "pid": "004674316", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2007529-7", "source": "GND"}], "variant_name": ["Fachausschuss Flugeigenschaften", "Deutsche Gesellschaft für Luft- und Raumfahrt. Fachausschuss"], "preferred_name": "Deutsche Gesellschaft für Luft- und Raumfahrt. Fachausschuss Flugeigenschaften", "variant_access_point": ["Fachausschuss Flugeigenschaften", "Deutsche Gesellschaft für Luft- und Raumfahrt. Fachausschuss. 4 2"], "authorized_access_point": "Deutsche Gesellschaft für Luft- und Raumfahrt. Fachausschuss Flugeigenschaften"} 1 +2024-09-11 09:00:17.846715 2024-09-11 09:00:17.846718 a48a4577-938e-4867-bc0a-53a18c64bced {"md5": "dd368f82d2f2be4ad9d62c8032135b05", "pid": "004680596", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2008269-1", "source": "GND"}], "variant_name": ["DFV", "Familienverband", "Familienverband", "Familienverband", "DFV"], "preferred_name": "Deutscher Familienverband", "country_associated": "gw", "variant_access_point": ["DFV. Abkuerzung", "Familienverband", "Familienverband. Deutschland, Bundesrepublik", "Familienverband. Deutschland", "DFV. Deutscher Familienverband"], "authorized_access_point": "Deutscher Familienverband", "biographical_information": ["Sitz: bis 2001,Juli Bonn; ab 2001,Aug. Berlin"]} 1 +2024-09-11 09:00:17.902924 2024-09-11 09:00:17.902927 deb64d7f-7557-4ddd-9716-8e9c99447fb8 {"md5": "4895fbd3ac4b5bcf69a57d45459bd16b", "pid": "004685873", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2008874-7", "source": "GND"}], "variant_name": ["Jugendherbergswerk", "Hauptverband für Jugendwandern und Jugendherbergen", "Hauptverband für Jugendwandern und Jugendherbergen e.V.", "Deutsches Jugendherbergswerk für Jugendwandern und Jugendherbergen", "Jugendherbergswerk für Jugendwandern und Jugendherbergen", "Jugendherbergswerk", "DJH"], "preferred_name": "Deutsches Jugendherbergswerk", "country_associated": "gw", "variant_access_point": ["Jugendherbergswerk. Deutschland, Bundesrepublik", "Hauptverband für Jugendwandern und Jugendherbergen", "Hauptverband für Jugendwandern und Jugendherbergen e.V.", "Deutsches Jugendherbergswerk für Jugendwandern und Jugendherbergen", "Jugendherbergswerk für Jugendwandern und Jugendherbergen. Deutschland", "Jugendherbergswerk. Deutschland", "DJH. Abkuerzung"], "authorized_access_point": "Deutsches Jugendherbergswerk"} 1 +2024-09-11 09:00:17.956377 2024-09-11 09:00:17.95638 750331d9-d0d6-4ff3-8392-67447985b10f {"md5": "4ead2a20de1c62fef0fa8da32063ba27", "pid": "004687280", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2009039-0", "source": "GND"}], "preferred_name": "Drehbühne Duisburg", "country_associated": "gw", "authorized_access_point": "Drehbühne Duisburg"} 1 +2024-09-11 09:00:18.02185 2024-09-11 09:00:18.021853 69a4ac02-1909-44e9-a025-c8d5fb63aaa2 {"md5": "001e7db910d6b023fb2f33fd70e1c8cd", "pid": "004708083", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2011373-0", "source": "GND"}], "preferred_name": "Heinen-Verlag", "country_associated": "gw", "authorized_access_point": "Heinen-Verlag. Köln"} 1 +2024-09-11 09:00:18.081889 2024-09-11 09:00:18.081892 dab67bc5-2ac9-49bb-959d-2c576a8a9849 {"md5": "c7e494a7c77127f8f29bb639c9eb8335", "pid": "004726642", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2013564-6", "source": "GND"}], "variant_name": ["Abteilung Organisation", "Organisationsabteilung", "IG Metall-Abteilung Organisation", "IGM Abteilung Organisation"], "preferred_name": "IG Metall. Abteilung Organisation", "country_associated": "gw", "variant_access_point": ["Abteilung Organisation", "Organisationsabteilung", "IG Metall-Abteilung Organisation", "IGM Abteilung Organisation"], "authorized_access_point": "IG Metall. Deutschland, Bundesrepublik. Abteilung Organisation"} 1 +2024-09-11 09:00:18.143633 2024-09-11 09:00:18.143637 ab71a223-4514-44ad-8103-8091c1d05890 {"md5": "e46f182415d9f0384780e932124d1039", "pid": "00473985X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2015204-8", "source": "GND"}], "variant_name": ["Benediktinerkollegium", "Obwaldner Kantonsschule", "Kantonsschule", "Kollegium"], "preferred_name": "Kantonsschule Obwalden", "country_associated": "sz", "variant_access_point": ["Benediktinerkollegium. Sarnen", "Obwaldner Kantonsschule", "Kantonsschule. Sarnen", "Kollegium. Sarnen"], "authorized_access_point": "Kantonsschule Obwalden"} 1 +2024-09-11 09:00:18.22322 2024-09-11 09:00:18.223224 24ceb143-1cd1-486d-9e8f-5b5550077739 {"md5": "a8c892cb751c922b1856d46750f1ce04", "pid": "004746333", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2015966-3", "source": "GND"}], "preferred_name": "Konferenz Die Lehrer im Antifaschistischen Widerstandskampf der Europäischen Völker 1933 - 1945", "authorized_access_point": "Konferenz Die Lehrer im Antifaschistischen Widerstandskampf der Europäischen Völker 1933 - 1945, 1965, Potsdam"} 1 +2024-09-11 09:00:18.285273 2024-09-11 09:00:18.285275 ec5289da-369e-42a3-b4fd-beac101c191a {"md5": "0a61e9b28f365cb86b4916f76a447b19", "pid": "004753194", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2016768-4", "source": "GND"}], "variant_name": ["Kunstverein Ludwigshafen a. Rh.", "Kunstverein Ludwigshafen am Rhein e.V.", "Kunstverein", "Kunstverein Ludwigshafen am Rhein", "Ludwigshafener Kunstverein"], "preferred_name": "Kunstverein Ludwigshafen", "country_associated": "gw", "variant_access_point": ["Kunstverein Ludwigshafen a. Rh.", "Kunstverein Ludwigshafen am Rhein e.V.. Unveraenderte Form", "Kunstverein. Ludwigshafen, Rhein", "Kunstverein Ludwigshafen am Rhein", "Ludwigshafener Kunstverein"], "date_of_establishment": "1928", "authorized_access_point": "Kunstverein Ludwigshafen"} 1 +2024-09-11 09:00:18.337057 2024-09-11 09:00:18.33706 bf80f576-57f3-4aab-b771-40f2ef58b368 {"md5": "5bcbd04f0faf1d96f436244f085b2f49", "pid": "004772350", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2019043-8", "source": "GND"}], "variant_name": ["Universitätsbund", "Philipps-Universität Marburg. Marburger Universitätsbund", "Marburger Universitätsbund e.V."], "preferred_name": "Marburger Universitätsbund", "country_associated": "gw", "variant_access_point": ["Universitätsbund. Marburg", "Philipps-Universität Marburg. Marburger Universitätsbund", "Marburger Universitätsbund e.V.. Unveraenderte Form"], "authorized_access_point": "Marburger Universitätsbund"} 1 +2024-09-11 09:00:18.392524 2024-09-11 09:00:18.392528 01204ac1-671f-4a2b-9577-031e3f13298e {"md5": "ac85f3104da378a707243a17d03fde96", "pid": "00480435X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2022843-0", "source": "GND"}], "variant_name": ["Gustav-Lübcke-Museum", "Lübcke-Museum", "Gustav Lübcke Museum Hamm"], "preferred_name": "Städtisches Gustav-Lübcke-Museum", "country_associated": "gw", "variant_access_point": ["Gustav-Lübcke-Museum", "Lübcke-Museum", "Gustav Lübcke Museum Hamm"], "authorized_access_point": "Städtisches Gustav-Lübcke-Museum"} 1 +2024-09-11 09:00:18.454621 2024-09-11 09:00:18.454623 19a6798e-eb81-4500-a326-53f5b1d11cd3 {"md5": "329aca87562e6c1faf563028449951c3", "pid": "004812476", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2023839-3", "source": "GND"}], "variant_name": ["Technische Hochschule Hannover. Institut für Photogrammetrie und Ingenieurvermessungen", "Institut für Photogrammetrie und Ingenieurvermessungen", "Technische Hochschule Hannover. Lehrstuhl für Photogrammetrie"], "preferred_name": "Technische Hochschule Hannover. Lehrstuhl und Institut für Photogrammetrie und Ingenieurvermessungen", "country_associated": "gw", "variant_access_point": ["Technische Hochschule Hannover. Institut für Photogrammetrie und Ingenieurvermessungen", "Institut für Photogrammetrie und Ingenieurvermessungen. Hannover, Technische Hochschule", "Technische Hochschule Hannover. Lehrstuhl für Photogrammetrie"], "authorized_access_point": "Technische Hochschule Hannover. Lehrstuhl und Institut für Photogrammetrie und Ingenieurvermessungen"} 1 +2024-09-11 09:00:18.512914 2024-09-11 09:00:18.512918 9573690d-2f82-40bc-a49a-ee581cfae108 {"md5": "075279f091e48a9e598c5468ec15876a", "pid": "004815483", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2024202-5", "source": "GND"}], "variant_name": ["Universität Erlangen-Nürnberg. Juristische Fakultät", "Juristische Fakultät"], "preferred_name": "Friedrich-Alexander-Universität Erlangen-Nürnberg. Juristische Fakultät", "country_associated": "gw", "variant_access_point": ["Universität Erlangen-Nürnberg. Juristische Fakultät", "Juristische Fakultät. Erlangen; Nürnberg"], "authorized_access_point": "Friedrich-Alexander-Universität Erlangen-Nürnberg. Juristische Fakultät", "biographical_information": ["aufgegangen in der \\"Rechts- und Wirtschaftswissenschaftlichen Fakultät\\" (ab 1. Okt. 2007)"]} 1 +2024-09-11 09:00:18.572318 2024-09-11 09:00:18.572322 c247974b-ff45-4144-a0c8-adad527b72c4 {"md5": "ddbb1725cbc2f4f60f030c6f1597b784", "pid": "004837541", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2026881-6", "source": "GND"}], "variant_name": ["Pferdestammbuch e.V.", "Züchtervereinigung Westfälisches Pferdestammbuch"], "preferred_name": "Westfälisches Pferdestammbuch e.V.", "country_associated": "gw", "variant_access_point": ["Pferdestammbuch e.V.. Westfalen", "Züchtervereinigung Westfälisches Pferdestammbuch"], "authorized_access_point": "Westfälisches Pferdestammbuch e.V."} 1 +2024-09-11 09:00:18.637373 2024-09-11 09:00:18.637378 45342626-b1b3-4267-955f-8134518e8d77 {"md5": "ca69bf501d104f78edc249165969aa16", "pid": "004867645", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2030398-1", "source": "GND"}], "variant_name": ["Audio-Visions-Zentrale", "Institut der Deutschen Wirtschaft Köln. AV-Zentrale", "AV-Zentrale", "AVZ"], "preferred_name": "Institut der Deutschen Wirtschaft Köln. Audio-Visions-Zentrale", "country_associated": "gw", "variant_access_point": ["Audio-Visions-Zentrale. Institut der Deutschen Wirtschaft Köln", "Institut der Deutschen Wirtschaft Köln. AV-Zentrale", "AV-Zentrale. Institut der Deutschen Wirtschaft Köln", "AVZ. Abkuerzung"], "authorized_access_point": "Institut der Deutschen Wirtschaft Köln. Audio-Visions-Zentrale"} 1 +2024-09-11 09:00:18.701461 2024-09-11 09:00:18.701464 f19c4a40-bae3-44ae-b5fb-4ad1ae62b877 {"md5": "d7c984f2824a1c9c440891be54188163", "pid": "004868250", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2030461-4", "source": "GND"}], "variant_name": ["Handwerks- und Gewerbeausstellung, 4"], "preferred_name": "Badische Handwerks- und Gewerbeausstellung, 4", "country_associated": "gw", "variant_access_point": ["Handwerks- und Gewerbeausstellung, 4, 1971, Freiburg im Breisgau"], "authorized_access_point": "Badische Handwerks- und Gewerbeausstellung, 4, 1971, Freiburg im Breisgau"} 1 +2024-09-11 09:00:18.766603 2024-09-11 09:00:18.766607 0f68eca3-1288-414d-8491-0ec44333c118 {"md5": "3d762dd1ff5893a9901e895aa771ab26", "pid": "004888324", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2032739-0", "source": "GND"}], "variant_name": ["Kollegium der Hauptpastoren"], "preferred_name": "Evangelisch-Lutherische Kirche im Hamburgischen Staate. Kollegium der Hauptpastoren", "country_associated": "gw", "variant_access_point": ["Kollegium der Hauptpastoren. Evangelisch-Lutherische Kirche im Hamburgischen Staate"], "authorized_access_point": "Evangelisch-Lutherische Kirche im Hamburgischen Staate. Kollegium der Hauptpastoren"} 1 +2024-09-11 09:00:18.839074 2024-09-11 09:00:18.839077 cbe6a103-08f6-4f8c-8cc7-e51798d5536b {"md5": "59ffb95ccaa1df7f372698be60d55fbf", "pid": "004890868", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2033029-7", "source": "GND"}], "variant_name": ["Studentengeschichtliche Vereinigung des CC", "Studentengeschichtliche Vereinigung des Coburger Convents"], "preferred_name": "Coburger Convent. Studentengeschichtliche Vereinigung", "variant_access_point": ["Studentengeschichtliche Vereinigung des CC", "Studentengeschichtliche Vereinigung des Coburger Convents"], "authorized_access_point": "Coburger Convent. Studentengeschichtliche Vereinigung"} 1 +2024-09-11 09:00:18.902233 2024-09-11 09:00:18.902238 3b96ac26-6de4-4820-b7d7-0ddf15ca68fc {"md5": "268150270a6ea1dad8e8b63dc3071855", "pid": "004895002", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2033479-5", "source": "GND"}], "variant_name": ["Hanse-Merkur-Versicherungen"], "preferred_name": "Hanse-Merkur-Lebensversicherung a.G.", "country_associated": "gw", "date_of_termination": "1973", "variant_access_point": ["Hanse-Merkur-Versicherungen. Nürnberg"], "authorized_access_point": "Hanse-Merkur-Lebensversicherung a.G.. Nürnberg"} 1 +2024-09-11 09:00:18.961937 2024-09-11 09:00:18.961941 524f2bdc-c816-4cf6-91e8-0ac5e8d3ae22 {"md5": "ce02e8107f4150514a9139c10db6f090", "pid": "00490110X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2034222-6", "source": "GND"}], "variant_name": ["Geschichts- und Altertumsverein Göppingen e.V.", "Geschichts- und Altertumsverein der Stadt Göppingen", "GAV"], "preferred_name": "Geschichts- und Altertumsverein Göppingen", "country_associated": "gw", "variant_access_point": ["Geschichts- und Altertumsverein Göppingen e.V.. Unveraenderte Form", "Geschichts- und Altertumsverein der Stadt Göppingen", "GAV. Abkuerzung"], "date_of_establishment": "1925", "authorized_access_point": "Geschichts- und Altertumsverein Göppingen"} 1 +2024-09-11 09:00:19.014124 2024-09-11 09:00:19.014128 c60c635f-83b5-4326-95ba-782d33efb9e5 {"md5": "5f76d99abb4605e66d6c840fb18f8c36", "pid": "004904508", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2034611-6", "source": "GND"}], "variant_name": ["NGS", "Numismatische Gesellschaft Speyer e.V."], "preferred_name": "Numismatische Gesellschaft Speyer", "country_associated": "gw", "variant_access_point": ["NGS. Abkuerzung", "Numismatische Gesellschaft Speyer e.V.. Unveraenderte Form"], "authorized_access_point": "Numismatische Gesellschaft Speyer"} 1 +2024-09-11 09:00:19.064186 2024-09-11 09:00:19.064191 e3ee0cdc-8d8d-47d4-ad98-5330517023ca {"md5": "4dad8ab62d2724a5834144101b42ae2c", "pid": "004921445", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2036596-2", "source": "GND"}], "preferred_name": "Wissenschaftliches Symposium Mittel und Wege zur Lösung von Problemen der Gesellschaftlichen Entwicklung aus Verschiedener Weltanschaulicher Sicht", "authorized_access_point": "Wissenschaftliches Symposium Mittel und Wege zur Lösung von Problemen der Gesellschaftlichen Entwicklung aus Verschiedener Weltanschaulicher Sicht, 1973, Moskau"} 1 +2024-09-11 09:00:19.118011 2024-09-11 09:00:19.118016 63c04381-7107-4359-838f-3150f8822ab0 {"md5": "ac35a6a6c92ed5218e89460754f95903", "pid": "004930118", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2037653-4", "source": "GND"}], "preferred_name": "Tutorentagung zur Vorbereitung der Praktischen Fortbildung von 15 Verwaltungsbeamten aus Indonesien in Landkreisen Niedersachsens", "country_associated": "gw", "authorized_access_point": "Tutorentagung zur Vorbereitung der Praktischen Fortbildung von 15 Verwaltungsbeamten aus Indonesien in Landkreisen Niedersachsens, 1974, Berlin, West"} 1 +2024-09-11 09:00:19.172316 2024-09-11 09:00:19.172319 47847408-d561-4b2d-94d4-21e5f326d00f {"md5": "0832ad8f3ee436903f4c2ec0e423cd59", "pid": "00495081X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2040211-9", "source": "GND"}], "preferred_name": "Deutsches Institut für Normung. Ausschuss Normenpraxis. Ad-Hoc-Gruppe Form- und Lagetoleranzen", "authorized_access_point": "Deutsches Institut für Normung. Ausschuss Normenpraxis. Ad-Hoc-Gruppe Form- und Lagetoleranzen"} 1 +2024-09-11 09:00:19.232382 2024-09-11 09:00:19.232387 f4563ba5-54f3-49fe-8a75-4a0157e2e906 {"md5": "d545b3ad462efa08b16b1ece82d82bd2", "pid": "004954599", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2040677-0", "source": "GND"}], "variant_name": ["Freiherr-von-Ickstatt-Schule, Staatliche Realschule Ingolstadt I", "Freiherr-von-Ickstatt-Schule, Staatliche Realschule Ingolstadt, 1", "Freiherr-von-Ickstatt-Schule, Staatliche Realschule für Knaben", "Freiherr-von-Ickstatt-Realschule"], "preferred_name": "Freiherr-von-Ickstatt-Schule", "country_associated": "gw", "variant_access_point": ["Freiherr-von-Ickstatt-Schule, Staatliche Realschule Ingolstadt I", "Freiherr-von-Ickstatt-Schule, Staatliche Realschule Ingolstadt, 1", "Freiherr-von-Ickstatt-Schule, Staatliche Realschule für Knaben", "Freiherr-von-Ickstatt-Realschule"], "date_of_establishment": "1968", "authorized_access_point": "Freiherr-von-Ickstatt-Schule"} 1 +2024-09-11 09:00:19.298623 2024-09-11 09:00:19.298627 f2714007-6b7b-434d-8dcc-f9ee76716f80 {"md5": "688c9f09d68e4eb720c7af5da9152d3c", "pid": "004984242", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2044447-3", "source": "GND"}], "preferred_name": "Bezirkssparkasse", "country_associated": "gw", "date_of_termination": "30.06.1999", "date_of_establishment": "14.08.1975", "authorized_access_point": "Bezirkssparkasse. Graben-Neudorf"} 1 +2024-09-11 09:00:19.351985 2024-09-11 09:00:19.351988 adeab74e-d0fb-4457-a1b7-cca30f4a25f0 {"md5": "d2ad5ec382d544b215653c91e27a9bcf", "pid": "004995732", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2045930-0", "source": "GND"}], "variant_name": ["Kanton Bern. Service de Statistique", "Service de Statistique", "Amt für Statistik", "Bern. Amt für Statistik"], "preferred_name": "Kanton Bern. Amt für Statistik", "country_associated": "sz", "variant_access_point": ["Kanton Bern. Service de Statistique", "Service de Statistique. Bern, Kanton", "Amt für Statistik. Bern, Kanton", "Bern. Kanton. Amt für Statistik. Alte Ansetzungsform"], "authorized_access_point": "Kanton Bern. Amt für Statistik"} 1 +2024-09-11 09:00:19.406017 2024-09-11 09:00:19.406019 0d6343e1-0497-40fd-abd4-ea52e6d9d403 {"md5": "62cba4782b243b943b42e4e824b5082b", "pid": "005029902", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/502990-9", "source": "GND"}], "variant_name": ["Malaysia. Geological Survey", "Malaysia. Kementerian Tanah dan Galian. Geological Survey", "Geological Survey"], "preferred_name": "Geological Survey of Malaysia", "country_associated": "my", "date_of_termination": "1968", "variant_access_point": ["Malaysia. Geological Survey. - 1968", "Malaysia. Kementerian Tanah dan Galian. Geological Survey", "Geological Survey. Malaysia"], "authorized_access_point": "Geological Survey of Malaysia", "biographical_information": ["erst ab 1968 malay. Name vh., bis dahin engl. Name offiziell !"]} 1 +2024-09-11 09:00:19.466459 2024-09-11 09:00:19.466463 336aa533-2820-435f-913e-51b42d61531f {"md5": "d130a3d92b8c766eb0f93ef5a979f3c4", "pid": "005034523", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/503452-8", "source": "GND"}], "preferred_name": "Congreso Latinoamericano de Entomologia", "authorized_access_point": "Congreso Latinoamericano de Entomologia"} 1 +2024-09-11 09:00:19.970174 2024-09-11 09:00:19.970178 f3c5d8fa-f5f3-4631-baf8-a4e9e62342d1 {"md5": "42b85d7e927c3d36b07bfcead367241b", "pid": "006007295", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/600729-6", "source": "GND"}], "variant_name": ["Shakespeare Conference"], "preferred_name": "Ohio Shakespeare Conference", "variant_access_point": ["Shakespeare Conference, Ohio"], "authorized_access_point": "Ohio Shakespeare Conference"} 1 +2024-09-11 09:00:20.026564 2024-09-11 09:00:20.026568 f460077f-5376-46f1-8df5-e8f6e81007c4 {"md5": "656f70e689f31ce902313a8f0c67cab4", "pid": "006010008", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/601000-3", "source": "GND"}], "preferred_name": "Realschule", "authorized_access_point": "Realschule. Schönberg, Mecklenburg"} 1 +2024-09-11 09:00:19.526833 2024-09-11 09:00:19.526836 1bffa83b-209d-464c-83dc-f92114a4e992 {"md5": "25eb439afaa5569043c73e8550912787", "pid": "005053625", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/505362-6", "source": "GND"}], "variant_name": ["Akademija Nauk Ėstonskoj SSR. Institut Ėksperimentalʹnoj Biologii", "Institutum Biologiae Experimentalis", "Experimentaalbioloogia Instituut", "Akademija Nauk Ėstonskoj SSR. Institutum Biologiae Experimentalis", "Akademija Nauk Ėstonskoj SSR. Experimentaalbioloogia Instituut", "Institut für Experimentelle Biologie", "Akademija Nauk Ėstonskoj SSR. Institut für Experimentelle Biologie", "Naučnyj Sovet po Problemam Genetiki i Selekcii. Institut Ėksperimentalʹnoj Biologii"], "preferred_name": "Institut Ėksperimentalʹnoj Biologii", "variant_access_point": ["Akademija Nauk Ėstonskoj SSR. Institut Ėksperimentalʹnoj Biologii", "Institutum Biologiae Experimentalis. Tallinn", "Experimentaalbioloogia Instituut. Tallinn", "Akademija Nauk Ėstonskoj SSR. Institutum Biologiae Experimentalis", "Akademija Nauk Ėstonskoj SSR. Experimentaalbioloogia Instituut", "Institut für Experimentelle Biologie. Tallinn", "Akademija Nauk Ėstonskoj SSR. Institut für Experimentelle Biologie", "Naučnyj Sovet po Problemam Genetiki i Selekcii. Akademija Nauk Ėstonskoj SSR. Institut Ėksperimentalʹnoj Biologii"], "authorized_access_point": "Institut Ėksperimentalʹnoj Biologii. Tallinn"} 1 +2024-09-11 09:00:19.590028 2024-09-11 09:00:19.590031 f7d2f931-52d8-4934-85c5-88165a511d16 {"md5": "8ca555c3bf6915d67520e8ad06efba40", "pid": "00505656X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/505656-1", "source": "GND"}], "variant_name": ["Akademija Nauk Kazachskoj SSR. Alma-Atinskij Botaničeskij Sad", "Glavnyj Botaničeskij Sad", "Botaničeskij Sad", "Hortus Botanicus Centralis", "Hortus Botanicus Principalis", "Main Botanical Garden", "Akademija Nauk Kazachskoj SSR. Glavnyj Botaničeskij Sad", "Akademija Nauk Kazachskoj SSR. Botaničeskij Sad", "Akademija Nauk Kazachskoj SSR. Hortus Botanicus Centralis", "Akademija Nauk Kazachskoj SSR. Hortus Botanicus Principalis", "Akademija Nauk Kazachskoj SSR. Main Botanical Garden"], "preferred_name": "Alma-Atinskij Botaničeskij Sad", "date_of_termination": "1963", "variant_access_point": ["Akademija Nauk Kazachskoj SSR. Alma-Atinskij Botaničeskij Sad", "Glavnyj Botaničeskij Sad. Alma-Ata, -1963", "Botaničeskij Sad. Alma-Ata, -1963", "Hortus Botanicus Centralis. Alma-Ata", "Hortus Botanicus Principalis. Alma-Ata, -1963", "Main Botanical Garden. Alma-Ata", "Akademija Nauk Kazachskoj SSR. Glavnyj Botaničeskij Sad. -1963", "Akademija Nauk Kazachskoj SSR. Botaničeskij Sad. -1963", "Akademija Nauk Kazachskoj SSR. Hortus Botanicus Centralis", "Akademija Nauk Kazachskoj SSR. Hortus Botanicus Principalis. -1963", "Akademija Nauk Kazachskoj SSR. Main Botanical Garden"], "authorized_access_point": "Alma-Atinskij Botaničeskij Sad"} 1 +2024-09-11 09:00:19.645477 2024-09-11 09:00:19.645481 30af4361-c40a-4450-b86c-13f3fea8f983 {"md5": "caa352a8d6c95221fb64450be130d807", "pid": "005059054", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/505905-7", "source": "GND"}], "preferred_name": "Sociedad Geográfica de Cuba", "country_associated": "cu", "authorized_access_point": "Sociedad Geográfica de Cuba"} 1 +2024-09-11 09:00:19.699984 2024-09-11 09:00:19.699989 575bdd9d-f521-4add-acef-576a6c68abfd {"md5": "61dff51e09a4bcba9257c1b3ba1abc8b", "pid": "005073189", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/507318-2", "source": "GND"}], "variant_name": ["Onsen-Kiko-Butsuri-Gakkai", "Japanese Association of Physical Medicine, Balneology and Climatology", "Association of Physical Medicine, Balneology and Climatology", "Japanese Balneo-Climatological Association", "Balneo-Climatological Association"], "preferred_name": "Nihon-Onsen-Kiko-Butsuri-Gakkai", "country_associated": "ja", "variant_access_point": ["Onsen-Kiko-Butsuri-Gakkai. Japan", "Japanese Association of Physical Medicine, Balneology and Climatology", "Association of Physical Medicine, Balneology and Climatology. Japan", "Japanese Balneo-Climatological Association", "Balneo-Climatological Association. Japan"], "authorized_access_point": "Nihon-Onsen-Kiko-Butsuri-Gakkai"} 1 +2024-09-11 09:00:19.748883 2024-09-11 09:00:19.748886 92e4bbf4-a9af-4271-a423-bb12fe702bfa {"md5": "79c3e65db3f7c56e287e3dcc6a9395ae", "pid": "005095344", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/509534-7", "source": "GND"}], "variant_name": ["WAEC"], "preferred_name": "West African Examinations Council", "variant_access_point": ["WAEC. Abkuerzung"], "authorized_access_point": "West African Examinations Council"} 1 +2024-09-11 09:00:19.800659 2024-09-11 09:00:19.800661 a344e3d0-41c2-4cb1-b6d6-3f9de47faae9 {"md5": "241592d2c0f9d2807cc819c0682653cb", "pid": "00509657X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/509657-1", "source": "GND"}], "variant_name": ["International Symposium on Coelenterate Biology"], "preferred_name": "International Coelenterate Conference", "variant_access_point": ["International Symposium on Coelenterate Biology"], "authorized_access_point": "International Coelenterate Conference"} 1 +2024-09-11 09:00:19.853724 2024-09-11 09:00:19.853728 e32550fb-8048-4c4a-8721-1ea06d2090c6 {"md5": "c5ae4427c9779c25ff5333a8be9b9110", "pid": "005124972", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/512497-9", "source": "GND"}], "variant_name": ["Gymnasium in Wiesbaden", "Staatliches Gymnasium zu Wiesbaden"], "preferred_name": "Staatliches Gymnasium in Wiesbaden", "variant_access_point": ["Gymnasium in Wiesbaden", "Staatliches Gymnasium zu Wiesbaden"], "authorized_access_point": "Staatliches Gymnasium in Wiesbaden"} 1 +2024-09-11 09:00:19.915573 2024-09-11 09:00:19.915577 510f34f7-49de-4ba9-bebb-3380dace4768 {"md5": "ca49c41d41968adeab91da8e61ac6d5f", "pid": "006002579", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/600257-2", "source": "GND"}], "variant_name": ["International Symposium on Boron Chemistry", "Boron Chemistry", "International Meeting on Boron Compounds", "Boron Compounds", "International Meeting on Boron Chemistry", "Conférence Internationale sur les Composés de Bore", "International Conference on the Chemistry of Boron"], "preferred_name": "IMEBORON", "variant_access_point": ["International Symposium on Boron Chemistry", "Boron Chemistry. meeting", "International Meeting on Boron Compounds", "Boron Compounds. meeting", "International Meeting on Boron Chemistry", "Conférence Internationale sur les Composés de Bore", "International Conference on the Chemistry of Boron"], "authorized_access_point": "IMEBORON"} 1 +2024-09-11 09:00:20.08098 2024-09-11 09:00:20.080984 f06c9af2-2396-4117-ab6f-b22491e0456b {"md5": "9e92622e325008a23006be8f1e87a6dd", "pid": "006058825", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/605882-6", "source": "GND"}], "variant_name": ["Ministère des Droits de la Femme"], "preferred_name": "Frankreich. Ministère des Droits de la Femme", "country_associated": "fr", "date_of_termination": "1986", "variant_access_point": ["Ministère des Droits de la Femme. Frankreich"], "date_of_establishment": "1981", "authorized_access_point": "Frankreich. Ministère des Droits de la Femme"} 1 +2024-09-11 09:00:20.134149 2024-09-11 09:00:20.134153 8dd9c10f-69b9-4bb1-9270-cf4c9396e145 {"md5": "c0e55d83f1d44c0318d9d18fe59f5796", "pid": "006216722", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/621672-9", "source": "GND"}], "preferred_name": "Convegno di Studi su Lucio Mastronardi", "country_associated": "it", "authorized_access_point": "Convegno di Studi su Lucio Mastronardi, 1981, Vigevano"} 1 +2024-09-11 09:00:20.189752 2024-09-11 09:00:20.189756 45b7d5c5-9667-4dac-bfd8-c42f1cb6544d {"md5": "2d31431d37ba5784d7a35c80dfead296", "pid": "006226663", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/622666-8", "source": "GND"}], "preferred_name": "Hydrocarbon Processing Symposium", "country_associated": "xxu", "authorized_access_point": "Hydrocarbon Processing Symposium, 1986, New Orleans, La."} 1 +2024-09-11 09:00:20.263102 2024-09-11 09:00:20.263115 5b2a9c54-2113-40a5-8759-7f3b2f3220ad {"md5": "9c2003f7114fac8d0a2bafaa48da7954", "pid": "006234224", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/623422-7", "source": "GND"}], "variant_name": ["International Congress on Chemical and Biological Aspects of Vitamin B6 Catalysis", "Congress on Chemical and Biological Aspects of Vitamin B6 Catalysis, International"], "preferred_name": "International Congress on Chemical and Biological Aspects of Vitamin B 6 Catalysis", "variant_access_point": ["International Congress on Chemical and Biological Aspects of Vitamin B6 Catalysis", "Congress on Chemical and Biological Aspects of Vitamin B6 Catalysis, International"], "authorized_access_point": "International Congress on Chemical and Biological Aspects of Vitamin B 6 Catalysis"} 1 +2024-09-11 09:00:20.3279 2024-09-11 09:00:20.327904 2eea04ae-62ec-4cbc-b690-d021aa497d83 {"md5": "eb015d2ed8e87b166f9e1901fa360b49", "pid": "006237754", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/623775-7", "source": "GND"}], "preferred_name": "Symposium Freizeit und Umwelt", "country_associated": "gw", "authorized_access_point": "Symposium Freizeit und Umwelt, 1985, Gießen"} 1 +2024-09-11 09:00:20.381543 2024-09-11 09:00:20.381547 7305f408-571d-486c-9b50-0a65eb8f6d45 {"md5": "4205ac2e67349838c8f0050f7bf13357", "pid": "006243282", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/624328-9", "source": "GND"}], "preferred_name": "Bibliothekswissenschaftliches Kolloquium", "authorized_access_point": "Bibliothekswissenschaftliches Kolloquium"} 1 +2024-09-11 09:00:20.43931 2024-09-11 09:00:20.439313 e3454bb9-17fa-48a0-b359-aac65259aad3 {"md5": "d5d05708ed7bc2e99c246047cc65abad", "pid": "006674410", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/667441-0", "source": "GND"}], "preferred_name": "Workshop on Feminism and Law", "authorized_access_point": "Workshop on Feminism and Law, 1983", "biographical_information": ["Ort n. erm."]} 1 +2024-09-11 09:00:20.504153 2024-09-11 09:00:20.504156 28df9508-9959-40f0-825a-8d99c8960baa {"md5": "000c4037409cc97103504859658a10e6", "pid": "006684378", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/668437-3", "source": "GND"}], "preferred_name": "Symposium über das Neue UNCITRAL-Kaufrecht und Seine Unterschiede zum Geltenden österreichischen Recht", "country_associated": "au", "authorized_access_point": "Symposium über das Neue UNCITRAL-Kaufrecht und Seine Unterschiede zum Geltenden österreichischen Recht, 1983, Baden, Niederösterreich"} 1 +2024-09-11 09:00:20.558107 2024-09-11 09:00:20.55811 6b659b66-5053-422b-bf45-2e35a62e7e89 {"md5": "8463972e01a76e1b228c756379c57e12", "pid": "006688977", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/668897-4", "source": "GND"}], "variant_name": ["INA", "Institut national de la communication audiovisuelle", "Frankreich. Institut national de la communication audiovisuelle"], "preferred_name": "Institut national de la communication audiovisuelle", "country_associated": "fr", "date_of_termination": "30.09.1986", "variant_access_point": ["INA. Abkuerzung", "Institut national de la communication audiovisuelle. Frankreich", "Frankreich. Institut national de la communication audiovisuelle"], "date_of_establishment": "29.07.1982", "authorized_access_point": "Institut national de la communication audiovisuelle. Bry-sur-Marne"} 1 +2024-09-11 09:00:20.613841 2024-09-11 09:00:20.613844 991ea801-57c3-4590-9234-615c1ad4e513 {"md5": "105ce6e65f43bdbc5c8c1b3ad636eef2", "pid": "006693911", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/669391-X", "source": "GND"}], "variant_name": ["Ausstellung Schleswig-Holsteinischer Künstler, 16"], "preferred_name": "Ausstellung Malerei und Plastik, 16", "country_associated": "gw", "variant_access_point": ["Ausstellung Schleswig-Holsteinischer Künstler, 16, 1986, Plön"], "authorized_access_point": "Ausstellung Malerei und Plastik, 16, 1986, Plön"} 1 +2024-09-11 09:00:20.667216 2024-09-11 09:00:20.667219 849f827a-f10b-4785-bcca-1dad18d2337a {"md5": "4767520d828a2dd9519215ab71f78731", "pid": "006699618", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/669961-3", "source": "GND"}], "variant_name": ["IAM"], "preferred_name": "International Association for Mentoring", "variant_access_point": ["IAM. Abkuerzung"], "date_of_establishment": "1986", "authorized_access_point": "International Association for Mentoring", "biographical_information": ["Sitz: Vancouver"]} 1 +2024-09-11 09:00:20.721682 2024-09-11 09:00:20.721685 f039e223-25b4-4e6d-bdb6-7fac427eb9dd {"md5": "fb4a1cc7f0a1d287a81d7b43412e0cf2", "pid": "006705847", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/670584-4", "source": "GND"}], "preferred_name": "Ausstellung Trompeten, Flöten und Schalmeien", "authorized_access_point": "Ausstellung Trompeten, Flöten und Schalmeien, 1986, Herne"} 1 +2024-09-11 09:00:20.818297 2024-09-11 09:00:20.8183 c6e69387-0b7a-4776-ad0e-9b369638a716 {"md5": "13d92fc6a05ea85da43e7f753624b5de", "pid": "007015089", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2047921-9", "source": "GND"}], "variant_name": ["Arbeitskreis Atom", "Arbeitskreis Atom im Bund für Umweltschutz e.V. Tübingen"], "preferred_name": "Bund für Umweltschutz e.V. Tübingen. Arbeitskreis Atom", "country_associated": "gw", "variant_access_point": ["Arbeitskreis Atom. Bund für Umweltschutz e.V. Tübingen", "Arbeitskreis Atom im Bund für Umweltschutz e.V. Tübingen. Unveraenderte Form"], "authorized_access_point": "Bund für Umweltschutz e.V. Tübingen. Arbeitskreis Atom"} 1 +2024-09-11 09:00:20.868019 2024-09-11 09:00:20.868023 bb7c9e67-8a0d-4ad0-8d91-5470c0d742f9 {"md5": "db1ecfc3fb12a9eb49276e2545de5ddd", "pid": "007030150", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2049688-6", "source": "GND"}], "preferred_name": "Hochschule für Verkehrswesen Friedrich List. Sektion Marxismus-Leninismus", "authorized_access_point": "Hochschule für Verkehrswesen Friedrich List. Sektion Marxismus-Leninismus"} 1 +2024-09-11 09:00:20.921366 2024-09-11 09:00:20.92137 d08540bc-8b45-4047-9a2a-4e140350ba14 {"md5": "e61b5be1401b69be3f9bd792f0f8ca50", "pid": "007031394", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2049825-1", "source": "GND"}], "variant_name": ["KAP"], "preferred_name": "Kooperative Abteilung Pflanzenproduktion", "variant_access_point": ["KAP. Abkuerzung"], "authorized_access_point": "Kooperative Abteilung Pflanzenproduktion. Dargun"} 1 +2024-09-11 09:00:20.982607 2024-09-11 09:00:20.98261 648d0749-355d-4e48-adeb-c0236fe7d31b {"md5": "b1f44b2e75741a0f154389f19c17c7a8", "pid": "007032641", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2049965-6", "source": "GND"}], "variant_name": ["Institut für Philosophie"], "preferred_name": "Ruhr-Universität Bochum. Institut für Philosophie", "country_associated": "gw", "variant_access_point": ["Institut für Philosophie. Bochum"], "authorized_access_point": "Ruhr-Universität Bochum. Institut für Philosophie"} 1 +2024-09-11 09:00:21.038901 2024-09-11 09:00:21.038905 b65055a7-03fa-4cc8-85f9-2180a5a15608 {"md5": "fe9f3cb83d4b6e02c0823e1b1efa5754", "pid": "007059981", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2053225-8", "source": "GND"}], "variant_name": ["Verwaltungsgemeinschaft Grub am Forst"], "preferred_name": "Verwaltungsgemeinschaft Grub a. Forst", "country_associated": "gw", "variant_access_point": ["Verwaltungsgemeinschaft Grub am Forst. Unveraenderte Form"], "authorized_access_point": "Verwaltungsgemeinschaft Grub a. Forst"} 1 +2024-09-11 09:00:21.097313 2024-09-11 09:00:21.097316 209b9342-9753-4ea8-97b9-6b607ed50e11 {"md5": "c6c3208dc193cd652097c10c76cd32ac", "pid": "007060637", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2053302-0", "source": "GND"}], "preferred_name": "Polizei-Landesmeisterschaften im Polizei-Fünfkampf und Faustball", "country_associated": "gw", "authorized_access_point": "Polizei-Landesmeisterschaften im Polizei-Fünfkampf und Faustball, 1957, Linnich"} 1 +2024-09-11 09:00:21.152484 2024-09-11 09:00:21.152487 d441bd6a-ca17-4591-9a79-70f1080c8b39 {"md5": "7c2e50be77671a017dadd65cfe127214", "pid": "007061757", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2053423-1", "source": "GND"}], "variant_name": ["Thomson-CSF GmbH. Division Semiconducteurs", "Thomson-CSF GmbH. Bauelemente"], "preferred_name": "Thomson-CSF GmbH. Bereich Halbleiter SESCOSEM", "country_associated": "gw", "variant_access_point": ["Thomson-CSF GmbH. München. Division Semiconducteurs", "Thomson-CSF GmbH. München. Bauelemente"], "authorized_access_point": "Thomson-CSF GmbH. München. Bereich Halbleiter SESCOSEM"} 1 +2024-09-11 09:00:21.207338 2024-09-11 09:00:21.207342 949fd6d2-6e51-478d-9c48-824c89709384 {"md5": "00efb97a035f2e24fb17eea0842fe44d", "pid": "007097123", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2057530-0", "source": "GND"}], "preferred_name": "Kreishandwerkerschaft", "country_associated": "gw", "authorized_access_point": "Kreishandwerkerschaft. Warendorf"} 1 +2024-09-11 09:00:21.262695 2024-09-11 09:00:21.262698 3364c699-b75f-4bbb-b988-d939b457896d {"md5": "385fc0e6d6364bc0e1ef8096331a8b0c", "pid": "007100434", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2057906-8", "source": "GND"}], "variant_name": ["Glashütten-Actien-Gesellschaft", "Rheinische Glashütten-Actien-Gesellschaft"], "preferred_name": "Rheinische Glashütten-Actien-Gesellschaft", "variant_access_point": ["Glashütten-Actien-Gesellschaft. Ehrenfeld", "Rheinische Glashütten-Actien-Gesellschaft. Ehemalige Vorzugsbenennung SWD"], "authorized_access_point": "Rheinische Glashütten-Actien-Gesellschaft. Ehrenfeld"} 1 +2024-09-11 09:00:21.332899 2024-09-11 09:00:21.332902 75f35939-6413-40d4-aeed-799e32d56cb5 {"md5": "5819fbde9d973d9bf66247303711a00d", "pid": "007104456", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2058376-X", "source": "GND"}], "variant_name": ["Jungsozialisten in der SPD Hessen-Nord", "Jungsozialisten in der SPD Bezirk Hessen-Nord"], "preferred_name": "Sozialdemokratische Partei Deutschlands. Arbeitsgemeinschaft der Jungsozialisten. Bezirk Hessen-Nord", "country_associated": "gw", "variant_access_point": ["Jungsozialisten in der SPD Hessen-Nord", "Jungsozialisten in der SPD Bezirk Hessen-Nord"], "authorized_access_point": "Sozialdemokratische Partei Deutschlands. Arbeitsgemeinschaft der Jungsozialisten. Bezirk Hessen-Nord"} 1 +2024-09-11 09:00:21.386314 2024-09-11 09:00:21.386317 796f4c77-5d2e-4fe0-a92e-9911fe249f29 {"md5": "3dc8658b33a6bd451c70399f7c61e763", "pid": "007104804", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2058413-1", "source": "GND"}], "preferred_name": "Arbeitskreis Stadtzeitung", "country_associated": "gw", "authorized_access_point": "Arbeitskreis Stadtzeitung. Filderstadt"} 1 +2024-09-11 09:00:21.44034 2024-09-11 09:00:21.440343 d8636d7d-961a-40c2-8c68-b5de87291fc5 {"md5": "706ff846b3426233345dd04ddcbc378f", "pid": "007119666", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2060458-0", "source": "GND"}], "variant_name": ["Vereinigung Besorgter Wissenschaftler", "UCS"], "preferred_name": "Union of Concerned Scientists", "country_associated": "xxu", "variant_access_point": ["Vereinigung Besorgter Wissenschaftler", "UCS. Abkuerzung"], "authorized_access_point": "Union of Concerned Scientists"} 1 +2024-09-11 09:00:21.494291 2024-09-11 09:00:21.494295 a7e357b5-1ffa-41d0-b928-8c47fb7432de {"md5": "5ced960e7cf02b10bf5f687f8faa2b4a", "pid": "007172125", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2066576-3", "source": "GND"}], "preferred_name": "Ausstellung Der Deutsche PEN-Club im Exil 1933 - 1948", "country_associated": "gw", "authorized_access_point": "Ausstellung Der Deutsche PEN-Club im Exil 1933 - 1948, 1980 - 1981, Frankfurt, Main"} 1 +2024-09-11 09:00:21.546895 2024-09-11 09:00:21.546898 6ea2bf34-1706-4753-95e6-148fa8e942c4 {"md5": "f5b5c399237076d4dc51d6386b929909", "pid": "007207409", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2070791-5", "source": "GND"}], "variant_name": ["Interdisziplinäres Symposium Morbus Crohn, Kolorektale Chirurgie, Colitis Ulcerosa"], "preferred_name": "Interdisziplinäres Symposium Morbus Crohn, Kolorektale Chirurgie, Colitis Ulcerosa", "country_associated": "gw", "variant_access_point": ["Interdisziplinäres Symposium Morbus Crohn, Kolorektale Chirurgie, Colitis Ulcerosa, 1981, Planegg"], "authorized_access_point": "Interdisziplinäres Symposium Morbus Crohn, Kolorektale Chirurgie, Colitis Ulcerosa, 1981, Martinsried"} 1 +2024-09-11 09:00:21.612997 2024-09-11 09:00:21.613001 0b725440-59d4-426b-b2c8-16fbfc404cbb {"md5": "5bac0393766a905cce219fa9d65a3dec", "pid": "007209320", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2070997-3", "source": "GND"}], "preferred_name": "Hochheimer Markt, 494", "authorized_access_point": "Hochheimer Markt, 494, 1977"} 1 +2024-09-11 09:00:21.662808 2024-09-11 09:00:21.662812 a3a62874-d495-4597-ab35-f97e73ab153e {"md5": "62b96338cd7cce0c95adf0b0a21d18a5", "pid": "007210019", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2071078-1", "source": "GND"}], "variant_name": ["Morus-Gesellschaft", "Association Amici Thomae Mori, German section", "Amici Thomae Mori. Deutsche Sektion", "Amici Thomae Mori. German section"], "preferred_name": "Thomas-Morus-Gesellschaft", "country_associated": "gw", "date_of_termination": "2000", "variant_access_point": ["Morus-Gesellschaft", "Association Amici Thomae Mori, German section. Unveraenderte Form", "Amici Thomae Mori. Deutsche Sektion", "Amici Thomae Mori. German section"], "date_of_establishment": "1980", "authorized_access_point": "Thomas-Morus-Gesellschaft"} 1 +2024-09-11 09:00:21.734892 2024-09-11 09:00:21.734897 1ee333bf-46b2-453b-b86e-f32cee7e1ce7 {"md5": "eeb6686ad2035b1e53162699b761506e", "pid": "007221010", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2072276-X", "source": "GND"}], "variant_name": ["Duerr Anlagenbau gmbh. Produktbereich Umwelttechnik"], "preferred_name": "Dürr-Anlagenbau GmbH. Produktbereich Umwelttechnik", "country_associated": "gw", "variant_access_point": ["Duerr Anlagenbau gmbh. Stuttgart. Produktbereich Umwelttechnik"], "authorized_access_point": "Dürr-Anlagenbau GmbH. Stuttgart. Produktbereich Umwelttechnik"} 1 +2024-09-11 09:00:21.805859 2024-09-11 09:00:21.805862 6b3a9226-bc84-4a5c-9d2b-61c3fb814744 {"md5": "40eee52ed4da11503314a970a1f2d720", "pid": "007229003", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2073117-6", "source": "GND"}], "preferred_name": "Autorengemeinschaft Hochbau", "authorized_access_point": "Autorengemeinschaft Hochbau"} 1 +2024-09-11 09:00:21.865124 2024-09-11 09:00:21.865128 c758f3b2-70ac-42f2-a3e1-bbf67109a49a {"md5": "9a39d23020fedb717ffd463d5bf7c8f0", "pid": "007233000", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2073541-8", "source": "GND"}], "variant_name": ["International Social Security Association. Internationale Sektion für die Verhütung von Arbeitsunfällen und Berufskrankheiten in der Chemischen Industrie", "International Social Security Association. Comité International pour la Prévention des Risques et des Maladies Professionnelles dans l'Industrie Chimique", "International Social Security Association. Comité Internacional para la Prevencion de Riesgos Profesionales en la Industria Quimica", "International Social Security Association. Sezione Internazionale per la Prevenzione dei Rischi Professionali nell'Industria Chimica"], "preferred_name": "International Social Security Association. International Section for the Prevention of Occupational Accidents and Diseases in the Chemical Industry", "date_of_termination": "1989", "variant_access_point": ["International Social Security Association. Internationale Sektion für die Verhütung von Arbeitsunfällen und Berufskrankheiten in der Chemischen Industrie. International Section for the Prevention of Occupational Accidents and Diseases in the Chemical Industry", "International Social Security Association. Comité International pour la Prévention des Risques et des Maladies Professionnelles dans l'Industrie Chimique", "International Social Security Association. Comité Internacional para la Prevencion de Riesgos Profesionales en la Industria Quimica", "International Social Security Association. Sezione Internazionale per la Prevenzione dei Rischi Professionali nell'Industria Chimica. 1980 - 1989"], "date_of_establishment": "1980", "authorized_access_point": "International Social Security Association. International Section for the Prevention of Occupational Accidents and Diseases in the Chemical Industry"} 1 +2024-09-11 09:00:21.931416 2024-09-11 09:00:21.93142 1a4c14de-2662-4a88-b323-62eb00475f23 {"md5": "36091972379d0cb974bf3d9d7449448e", "pid": "007251920", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2075556-9", "source": "GND"}], "preferred_name": "Daimler-Benz-Aktiengesellschaft. Öffentlichkeitsarbeit, Wirtschafts- und Verkehrspolitik", "authorized_access_point": "Daimler-Benz-Aktiengesellschaft. Öffentlichkeitsarbeit, Wirtschafts- und Verkehrspolitik", "biographical_information": ["telM CIP"]} 1 +2024-09-11 09:00:21.989919 2024-09-11 09:00:21.989922 37694d8e-aa40-4810-a283-2f06cff47893 {"md5": "daf7cf61d9c1ed5b3990bcd1f5b998bb", "pid": "007262329", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2076650-6", "source": "GND"}], "preferred_name": "Wortwerkstatt", "authorized_access_point": "Wortwerkstatt"} 1 +2024-09-11 09:00:22.056367 2024-09-11 09:00:22.056371 f4363977-4b04-475a-ab16-f86e814f1126 {"md5": "827718c4b41aa463e5c75f20c849bd80", "pid": "007269358", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2077396-1", "source": "GND"}], "variant_name": ["Internationales Paneuropa-Bildungswerk", "Action de formation paneurope internationale", "International Paneuropa Educational Organisation", "Paneuropa Educational Organisation"], "preferred_name": "Paneuropa-Bildungswerk", "variant_access_point": ["Internationales Paneuropa-Bildungswerk", "Action de formation paneurope internationale", "International Paneuropa Educational Organisation", "Paneuropa Educational Organisation"], "date_of_establishment": "1975", "authorized_access_point": "Paneuropa-Bildungswerk"} 1 +2024-09-11 09:00:22.123754 2024-09-11 09:00:22.123757 f9931049-077d-4a32-9420-ca6dda967cb7 {"md5": "77c2a10bb8d19d564d4281b421737a74", "pid": "007284659", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2079005-3", "source": "GND"}], "preferred_name": "Tagung Wirtschaftsinformatik an Kaufmännischen Schulen", "country_associated": "gw", "authorized_access_point": "Tagung Wirtschaftsinformatik an Kaufmännischen Schulen, 1983, Göttingen"} 1 +2024-09-11 09:00:45.600781 2024-09-11 09:00:45.600784 86ab130e-c049-40a7-95a1-0058b51c85fb {"md5": "91b65ea847e7d521248f478240dc2537", "pid": "1013479785", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1013479785", "source": "GND"}], "date_of_birth": "1982", "preferred_name": "Voskuhl, Jens", "country_associated": "gw", "authorized_access_point": "Voskuhl, Jens, 1982-"} 1 +2024-09-11 09:00:22.180504 2024-09-11 09:00:22.180507 5e4d9908-c125-44ce-b284-0895f56b3e6b {"md5": "faf3e643970643d6a6295d4e51cd4dc1", "pid": "007305117", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2081135-4", "source": "GND"}], "variant_name": ["Kunststoff-Kolloquium, 8"], "preferred_name": "Darmstädter Kunststoff-Kolloquium, 8", "country_associated": "gw", "variant_access_point": ["Kunststoff-Kolloquium, 8, 1982, Darmstadt"], "authorized_access_point": "Darmstädter Kunststoff-Kolloquium, 8, 1982, Darmstadt"} 1 +2024-09-11 09:00:22.23963 2024-09-11 09:00:22.239633 7049771b-039d-4765-938a-923d1c0cc51a {"md5": "28ad25fe0e9f6673ec26a92f04d931e8", "pid": "007309600", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2081602-9", "source": "GND"}], "preferred_name": "Kongress Wasser", "country_associated": "gw", "authorized_access_point": "Kongress Wasser, 1985, Berlin, West"} 1 +2024-09-11 09:00:22.295267 2024-09-11 09:00:22.295272 64c047ba-ba6c-4843-8e50-36abfee8fc84 {"md5": "8ebc6d5e5d5af90af9be90d86d795813", "pid": "007310005", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2081644-3", "source": "GND"}], "variant_name": ["Literaturbüro NW", "Düsseldorfer Literaturbüro", "Literaturbüro", "Düsseldorfer Literaturbüro NW", "Literarurbüro NW", "Literaturbüro NRW", "Literaturbüro Nordrhein-Westfalen e.V.", "Literaturbüro NW"], "preferred_name": "Literaturbüro Nordrhein-Westfalen", "country_associated": "gw", "variant_access_point": ["Literaturbüro NW", "Düsseldorfer Literaturbüro", "Literaturbüro. Düsseldorf", "Düsseldorfer Literaturbüro NW", "Literarurbüro NW", "Literaturbüro NRW. Düsseldorf", "Literaturbüro Nordrhein-Westfalen e.V.. Düsseldorf", "Literaturbüro NW. Düsseldorf"], "date_of_establishment": "1980", "authorized_access_point": "Literaturbüro Nordrhein-Westfalen", "biographical_information": ["Gegründet 1980 vom Land NRW, mit festem Sitz in Düsseldorf"]} 1 +2024-09-11 09:00:22.350559 2024-09-11 09:00:22.350562 ebbcea3e-53a9-4f97-9751-06251e1b2508 {"md5": "d490060298bdd634aa641f9c2395fbf9", "pid": "00731566X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2082225-X", "source": "GND"}], "variant_name": ["Spiritualistisch-Christlicher Orden", "Der Spiritualistisch-Christliche Orden"], "preferred_name": "Ordem Espiritualista Christã", "variant_access_point": ["Spiritualistisch-Christlicher Orden", "Der Spiritualistisch-Christliche Orden"], "authorized_access_point": "Ordem Espiritualista Christã", "biographical_information": ["ausserkirchliche brasilian. Bewegung"]} 1 +2024-09-11 09:00:22.402204 2024-09-11 09:00:22.402208 047f54af-570a-4c06-8369-6cf584a330cb {"md5": "b03780a532afa8a885600082d6f328ba", "pid": "007318413", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2082506-7", "source": "GND"}], "variant_name": ["Wohnungswirtschaftliches Institut", "MaWok", "Arbeitsgemeinschaft für Wohnungswesen, Kreditwirtschaft und Raumplanung", "MaWoK"], "preferred_name": "Mannheimer Arbeitsgemeinschaft für Wohnungswesen, Kreditwirtschaft und Raumplanung", "country_associated": "gw", "variant_access_point": ["Wohnungswirtschaftliches Institut. Mannheim", "MaWok. Abkuerzung", "Arbeitsgemeinschaft für Wohnungswesen, Kreditwirtschaft und Raumplanung. Mannheim", "MaWoK. Mannheimer Arbeitsgemeinschaft für Wohnungswesen, Kreditwirtschaft und Raumplanung"], "authorized_access_point": "Mannheimer Arbeitsgemeinschaft für Wohnungswesen, Kreditwirtschaft und Raumplanung"} 1 +2024-09-11 09:00:22.456898 2024-09-11 09:00:22.456902 8b092a2e-e4c5-44ad-a3c5-2a0a27e87830 {"md5": "82eec31f0b7c81f58660563fb45f473d", "pid": "007319126", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2082578-X", "source": "GND"}], "variant_name": ["Verein der Heimatfreunde", "Verein der Heimatfreunde", "Verein der Heimatfreunde Eschweiler-Kinzweiler 1959", "Verein der Heimatfreunde Neunzehnhundertneunundfünfzig", "Verein der Heimatfreunde 1959"], "preferred_name": "Verein der Heimatfreunde Kinzweiler 1959", "country_associated": "gw", "variant_access_point": ["Verein der Heimatfreunde. Kinzweiler", "Verein der Heimatfreunde. Eschweiler-Kinzweiler", "Verein der Heimatfreunde Eschweiler-Kinzweiler 1959", "Verein der Heimatfreunde Neunzehnhundertneunundfünfzig", "Verein der Heimatfreunde 1959. Ehemalige Vorzugsbenennung SWD"], "authorized_access_point": "Verein der Heimatfreunde Kinzweiler 1959", "biographical_information": ["e.V."]} 1 +2024-09-11 09:00:22.510091 2024-09-11 09:00:22.510093 574eb77f-da45-4c5a-b110-f186f77866f6 {"md5": "7b2d2224c8b5a3d2f8943a996d5442e2", "pid": "007322062", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2082881-0", "source": "GND"}], "preferred_name": "Phlebologie-Expertengespräch", "country_associated": "au", "authorized_access_point": "Phlebologie-Expertengespräch, 1984, Wien"} 1 +2024-09-11 09:00:22.561483 2024-09-11 09:00:22.561487 eccc6c82-d982-407f-ab9d-4f000e560a5d {"md5": "097500745404d953edaa7561610c66e0", "pid": "007353189", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2086168-0", "source": "GND"}], "preferred_name": "Niederrhein-Tagung, 2", "country_associated": "ne", "authorized_access_point": "Niederrhein-Tagung, 2, 1982, Nimwegen"} 1 +2024-09-11 09:00:22.615793 2024-09-11 09:00:22.615797 05e6c5be-1a97-409a-8067-364a999f4159 {"md5": "4eb4fe6a68075c1a64b52981e77ee81e", "pid": "007365950", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2087514-9", "source": "GND"}], "variant_name": ["GEHE-Aktiengesellschaft"], "preferred_name": "Gehe AG", "country_associated": "gw", "date_of_termination": "2003", "variant_access_point": ["GEHE-Aktiengesellschaft"], "date_of_establishment": "1981", "authorized_access_point": "Gehe AG"} 1 +2024-09-11 09:00:22.671061 2024-09-11 09:00:22.671065 eccb0f31-4cbf-49de-922c-9c4a62a7fc2f {"md5": "d660fb6053a437ef341e16ac973d12f1", "pid": "007366701", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2087592-7", "source": "GND"}], "variant_name": ["Sonderforschungsbereich Information und die Koordination Wirtschaftlicher Aktivitäten. Projektbereich"], "preferred_name": "Sonderforschungsbereich Information und die Koordination Wirtschaftlicher Aktivitäten. Projektbereich Variable und Informationsabhängige Strukturen", "country_associated": "gw", "variant_access_point": ["Sonderforschungsbereich Information und die Koordination Wirtschaftlicher Aktivitäten. Bonn. Projektbereich. B"], "authorized_access_point": "Sonderforschungsbereich Information und die Koordination Wirtschaftlicher Aktivitäten. Bonn. Projektbereich Variable und Informationsabhängige Strukturen"} 1 +2024-09-11 09:00:22.724762 2024-09-11 09:00:22.724766 c521458a-84a9-4aa2-a340-73ba1b4fbf12 {"md5": "2ff274a049b5d8e192bf4d62aa9cd302", "pid": "007378238", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2088784-X", "source": "GND"}], "variant_name": ["Wiener Popper-Symposium", "Symposium aus Anlaß des Achtzigsten Geburtstages von Karl R. Popper", "Vídeňske Popperovské Sympozium", "Symposium Popper", "Simpozionul Organizat cu Ocazia Aniversarii a 80 de Ani de Viata a Lui Karl R. Popper", "Symposium Popper", "Popper"], "preferred_name": "Popper-Symposium", "country_associated": "au", "variant_access_point": ["Wiener Popper-Symposium, 1983, Wien", "Symposium aus Anlaß des Achtzigsten Geburtstages von Karl R. Popper, 1983, Wien", "Vídeňske Popperovské Sympozium, 1983, Wien", "Symposium Popper, 1983, Wien", "Simpozionul Organizat cu Ocazia Aniversarii a 80 de Ani de Viata a Lui Karl R. Popper, 1983, Wien", "Symposium Popper, 1983, Vienne", "Popper, 1983, Vienne"], "authorized_access_point": "Popper-Symposium, 1983, Wien", "biographical_information": ["Keine Dublette zu IDN 006630677 und 006466893; anderer Veranst."]} 1 +2024-09-11 09:00:22.777618 2024-09-11 09:00:22.777621 ba23a6a9-b1b8-4232-9c74-b834cfc7ac42 {"md5": "b081261cf305fb37176e4b402806c272", "pid": "007386133", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2089597-5", "source": "GND"}], "variant_name": ["LIM, 3"], "preferred_name": "International Conference on Lasers in Manufacturing, 3", "country_associated": "fr", "variant_access_point": ["LIM, 3, 1986, Paris. IFS (Conferences) Ltd., Kempston"], "authorized_access_point": "International Conference on Lasers in Manufacturing, 3, 1986, Paris. IFS (Conferences) Ltd., Kempston"} 1 +2024-09-11 09:00:22.839034 2024-09-11 09:00:22.839037 371a75ea-732f-4c07-84ff-c400fa6df149 {"md5": "4e20722fe2b1d0a4ad8815d95939dd6a", "pid": "007391765", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2090173-2", "source": "GND"}], "variant_name": ["Symposium on Ultrasound in Biology and Medicine, 7", "Conference on Ultrasonics in Biology and Medicine, 7", "Symposium on Ultrasound in Biology and Medicine: UBIOMED VII--Eisenach, GDR, November 1986"], "preferred_name": "UBIOMED, 7", "variant_access_point": ["Symposium on Ultrasound in Biology and Medicine, 7, 1986, Eisenach", "Conference on Ultrasonics in Biology and Medicine, 7, 1986, Eisenach", "Symposium on Ultrasound in Biology and Medicine: UBIOMED VII--Eisenach, GDR, November 1986"], "authorized_access_point": "UBIOMED, 7, 1986, Eisenach", "biographical_information": ["Info: UBIOMED VI--Jablonna, Poland, September 1983"]} 1 +2024-09-11 09:00:22.901978 2024-09-11 09:00:22.90198 515662f0-f6f4-4fc1-b9d6-fa1b8579c3b8 {"md5": "4d024212529c56f6410aeac37e4be491", "pid": "007396848", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2090692-4", "source": "GND"}], "preferred_name": "Evangelischer Krankenhaus-Kongress", "country_associated": "gw", "authorized_access_point": "Evangelischer Krankenhaus-Kongress, 1983, Fellbach"} 1 +2024-09-11 09:00:22.956567 2024-09-11 09:00:22.95657 972dd8d2-6868-4715-9169-dd1398697771 {"md5": "a8b2951f808d93c26687006b2208a720", "pid": "007405995", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2091641-3", "source": "GND"}], "variant_name": ["Hochschule Sankt Gallen für Wirtschafts- und Sozialwissenschaften. Institut für Politikwissenschaft", "Universität St. Gallen. Institut für Politikwissenschaft"], "preferred_name": "Institut für Politikwissenschaft", "country_associated": "sz", "variant_access_point": ["Hochschule Sankt Gallen für Wirtschafts- und Sozialwissenschaften. Institut für Politikwissenschaft", "Universität St. Gallen. Institut für Politikwissenschaft"], "authorized_access_point": "Institut für Politikwissenschaft. Sankt Gallen"} 1 +2024-09-11 09:00:23.023318 2024-09-11 09:00:23.023322 a59ae04f-ce17-4674-93d8-710443f5cb13 {"md5": "95cfd47c15ff9fa85c2d1697f6ca971c", "pid": "007412193", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2092284-X", "source": "GND"}], "variant_name": ["International Symposium Ultrafast Phenomena in Spectroscopy, 2"], "preferred_name": "UPS, 2", "variant_access_point": ["International Symposium Ultrafast Phenomena in Spectroscopy, 2, 1980, Friedrichroda"], "authorized_access_point": "UPS, 2, 1980, Friedrichroda", "biographical_information": ["Initiale tritt hervor"]} 1 +2024-09-11 09:00:23.075954 2024-09-11 09:00:23.075958 1b9a8b0e-4bba-4ac9-8e9f-d331cad958b1 {"md5": "d97a9e6319684a68b8c982e16ad97c43", "pid": "007420501", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2093132-3", "source": "GND"}], "preferred_name": "Heimat- und Trachtenverein", "country_associated": "gw", "authorized_access_point": "Heimat- und Trachtenverein. Thierhaupten"} 1 +2024-09-11 09:00:23.129581 2024-09-11 09:00:23.129583 2068691b-b16a-46d5-8526-31ba31dc6111 {"md5": "75eed608b4fd174b2cee6efbbab25a3d", "pid": "007426321", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2093728-3", "source": "GND"}], "preferred_name": "Kreis zur Förderung des Instituts für Genossenschaftswesen der Universität Hamburg", "authorized_access_point": "Kreis zur Förderung des Instituts für Genossenschaftswesen der Universität Hamburg", "biographical_information": ["e.V., CIP"]} 1 +2024-09-11 09:00:23.207968 2024-09-11 09:00:23.207971 7e9e6c58-6671-4d97-b187-2a64fd3659e4 {"md5": "c3f4c9aae95b946da12c2f7a62e931c7", "pid": "007439210", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2095054-8", "source": "GND"}], "preferred_name": "Alt-Brigensis", "authorized_access_point": "Alt-Brigensis", "biographical_information": ["Studentenverbindung, Brig, Kanton Wallis"]} 1 +2024-09-11 09:00:23.274082 2024-09-11 09:00:23.274085 dc9f2ceb-768f-45bd-a738-03a5d8388bd4 {"md5": "dd86b5df58a0db0baac8c3747dbebb15", "pid": "007444788", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2095645-9", "source": "GND"}], "variant_name": ["Evangelische Kirchengemeinde", "Evangelische Kirche", "Evangelische Kirche"], "preferred_name": "Evangelische Kirchengemeinde", "country_associated": "gw", "variant_access_point": ["Evangelische Kirchengemeinde. Sooden-Allendorf-Oberrieden", "Evangelische Kirche. Oberrieden, Sooden-Allendorf", "Evangelische Kirche. Sooden-Allendorf-Oberrieden"], "authorized_access_point": "Evangelische Kirchengemeinde. Oberrieden, Sooden-Allendorf"} 1 +2024-09-11 09:00:23.339573 2024-09-11 09:00:23.339577 49548d65-f0d8-413a-aee6-76b6300575bb {"md5": "f71b41295917315f445e2d8e657b11d5", "pid": "007453523", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2096571-0", "source": "GND"}], "variant_name": ["Bibliothek für Internationale Schwule Zeitschriften"], "preferred_name": "Bibliothek für Internationale Schwule Zeitschriften", "country_associated": "gw", "variant_access_point": ["Bibliothek für Internationale Schwule Zeitschriften. Ehemalige Vorzugsbenennung SWD"], "authorized_access_point": "Bibliothek für Internationale Schwule Zeitschriften. Nürnberg"} 1 +2024-09-11 09:00:23.397507 2024-09-11 09:00:23.397511 600dfea7-1eee-441c-a09b-4877e87278e1 {"md5": "db9c190e77fa252839bfb7628130cacd", "pid": "007473338", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2098730-4", "source": "GND"}], "variant_name": ["KZ-Gedenkstätte", "KZ-Gedenkstätte Oberer Kuhberg", "Dokumentationszentrum Oberer Kuhberg", "Dokumentationszentrum Oberer Kuhberg Ulm, KZ-Gedenkstätte", "DZOK", "KZ-Gedenkstätte", "Dokumentationszentrum Oberer Kuhberg - KZ-Gedenkstätte", "Dokumentationszentrum Oberer Kuhberg Ulm e.V.", "Verein Dokumentationszentrum Oberer Kuhberg", "Verein Dokumentationszentrum Oberer Kuhberg - KZ Gedenkstätte"], "preferred_name": "Dokumentationszentrum Oberer Kuhberg Ulm e.V. - KZ-Gedenkstätte", "country_associated": "gw", "variant_access_point": ["KZ-Gedenkstätte. Ulm", "KZ-Gedenkstätte Oberer Kuhberg. Ulm", "Dokumentationszentrum Oberer Kuhberg. Ulm", "Dokumentationszentrum Oberer Kuhberg Ulm, KZ-Gedenkstätte", "DZOK. Abkuerzung", "KZ-Gedenkstätte", "Dokumentationszentrum Oberer Kuhberg - KZ-Gedenkstätte. Ehemalige Vorzugsbenennung SWD", "Dokumentationszentrum Oberer Kuhberg Ulm e.V.", "Verein Dokumentationszentrum Oberer Kuhberg. Ulm", "Verein Dokumentationszentrum Oberer Kuhberg - KZ Gedenkstätte. Ulm"], "authorized_access_point": "Dokumentationszentrum Oberer Kuhberg Ulm e.V. - KZ-Gedenkstätte"} 1 +2024-09-11 09:00:23.45147 2024-09-11 09:00:23.451474 4cd8de41-7b72-43d8-9a0c-3e28326c94a0 {"md5": "0dcb91bc1a8c1a0d3a90790c2edfd0b4", "pid": "007495684", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2101084-5", "source": "GND"}], "preferred_name": "Stadtsparkasse", "country_associated": "gw", "authorized_access_point": "Stadtsparkasse. Burscheid, Rheinisch-Bergischer Kreis"} 1 +2024-09-11 09:00:23.504701 2024-09-11 09:00:23.504705 e0b5f95c-4fac-4349-bd69-3ff1945cf684 {"md5": "c1d76221125e65ff0e3f05a10bc58298", "pid": "007543204", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2106300-X", "source": "GND"}], "preferred_name": "Ausstellung William Gear, Arbeiten aus dem Atelier des Künstlers 1946 - 1986, Ölbilder und Arbeiten auf Papier, Druckgraphik", "authorized_access_point": "Ausstellung William Gear, Arbeiten aus dem Atelier des Künstlers 1946 - 1986, Ölbilder und Arbeiten auf Papier, Druckgraphik, 1988 - 1989, München"} 1 +2024-09-11 09:00:23.559401 2024-09-11 09:00:23.559404 b7635620-cf85-4d76-b821-242bba889366 {"md5": "18b9d37b9b2425abdfdc456dbac06d27", "pid": "007547692", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2106802-1", "source": "GND"}], "variant_name": ["Collapsing New Buildings"], "preferred_name": "Einstürzende Neubauten", "country_associated": "gw", "variant_access_point": ["Collapsing New Buildings. Musikgruppe"], "date_of_establishment": "1980", "authorized_access_point": "Einstürzende Neubauten. Musikgruppe", "biographical_information": ["Industrial-/Experimental-/Dark-Ambient-Band (Blixa Bargeld, N. U. Unruh ...)"]} 1 +2024-09-11 09:00:23.612854 2024-09-11 09:00:23.612859 a9573724-75db-4e3e-bea4-f3c73b05b66e {"md5": "0a4a2ac98b87371a6bb1e80436952788", "pid": "007550278", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2107096-9", "source": "GND"}], "variant_name": ["Freiwillige Feuerwehr", "Freiwillige Feuerwehr"], "preferred_name": "Freiwillige Feuerwehr. Abteilung", "country_associated": "gw", "variant_access_point": ["Freiwillige Feuerwehr. Immendingen-Hattingen", "Freiwillige Feuerwehr. Hattingen, Immendingen"], "authorized_access_point": "Freiwillige Feuerwehr. Immendingen. Abteilung. Hattingen, Immendingen"} 1 +2024-09-11 09:00:23.666912 2024-09-11 09:00:23.666915 13d198d2-094e-493b-bb40-74a57e15d4d6 {"md5": "e8cc9a63e1cae815807a38e53187389c", "pid": "007553684", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2107465-3", "source": "GND"}], "preferred_name": "Kolloquium aus Anlass des Hundertsten Geburtstages von Jean Monnet", "country_associated": "be", "authorized_access_point": "Kolloquium aus Anlass des Hundertsten Geburtstages von Jean Monnet, 1988, Brüssel"} 1 +2024-09-11 09:00:23.717362 2024-09-11 09:00:23.717365 894efb00-7713-4028-8551-5464597dc9b8 {"md5": "d4d21a0b4503dcc450c1c20fc11ce5cf", "pid": "007555245", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2107628-5", "source": "GND"}], "preferred_name": "Fachtagung Rechnerintegration in Logistik und Produktion - Einfluss auf Bewusstseinsbildung von Arbeitern und Arbeiterinnen", "authorized_access_point": "Fachtagung Rechnerintegration in Logistik und Produktion - Einfluss auf Bewusstseinsbildung von Arbeitern und Arbeiterinnen, 1987, Ludwigshafen am Rhein"} 1 +2024-09-11 09:00:23.771015 2024-09-11 09:00:23.771018 7908a185-89d4-4b15-a43a-f666e8dfb28d {"md5": "4c3f8ceb09656ff2c83bb74a9b0b2aee", "pid": "007571054", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2109339-8", "source": "GND"}], "variant_name": ["Katholisches Blindenwerk", "DKBW"], "preferred_name": "Deutsches Katholisches Blindenwerk", "country_associated": "gw", "variant_access_point": ["Katholisches Blindenwerk. Deutschland, Bundesrepublik", "DKBW. Abkuerzung"], "authorized_access_point": "Deutsches Katholisches Blindenwerk"} 1 +2024-09-11 09:00:23.824777 2024-09-11 09:00:23.82478 efdf8617-99aa-4bda-acc6-d64ed9d73c1f {"md5": "750f853b7b24adfc6271ffcb7774a274", "pid": "007575882", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2109841-4", "source": "GND"}], "preferred_name": "Symposium zu Fragen des Musikinstrumentenbaus, 8", "authorized_access_point": "Symposium zu Fragen des Musikinstrumentenbaus, 8, 1987, Blankenburg (Harz)"} 1 +2024-09-11 09:00:23.891964 2024-09-11 09:00:23.891968 dabdf246-48de-4403-a1ee-91bc4e10a617 {"md5": "b4847cf9140aad4aaf9848f308832d6f", "pid": "007590172", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2111321-X", "source": "GND"}], "variant_name": ["Lions-Klub"], "preferred_name": "Lions-Club", "country_associated": "gw", "variant_access_point": ["Lions-Klub. Speyer"], "authorized_access_point": "Lions-Club. Speyer"} 1 +2024-09-11 09:00:23.948528 2024-09-11 09:00:23.948531 aba9a75a-9cd2-407d-98d8-2939add7fb13 {"md5": "5a83c3fe447ad90b29779efda4f84f95", "pid": "00760453X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2112812-1", "source": "GND"}], "variant_name": ["Braunschweig. Dezernat für Jugend, Soziales und Gesundheit. Projekt Jugendhilfeplanung", "Projekt Jugendhilfeplanung", "Braunschweig. Jugendhilfeplanung", "Braunschweig. Dezernat für Jugend, Soziales und Gesundheit. Jugendhilfeplanung", "Planungsteam Jugendhilfeplanung", "Braunschweig. Planungsteam Jugendhilfeplanung", "Braunschweig. Dezernat für Jugend, Soziales und Gesundheit. Planungsteam Jugendhilfeplanung"], "preferred_name": "Braunschweig. Projekt Jugendhilfeplanung", "country_associated": "gw", "variant_access_point": ["Braunschweig. Dezernat für Jugend, Soziales und Gesundheit. Projekt Jugendhilfeplanung", "Projekt Jugendhilfeplanung. Braunschweig", "Braunschweig. Jugendhilfeplanung. Projekt Jugendhilfeplanung", "Braunschweig. Dezernat für Jugend, Soziales und Gesundheit. Jugendhilfeplanung", "Planungsteam Jugendhilfeplanung. Braunschweig", "Braunschweig. Planungsteam Jugendhilfeplanung", "Braunschweig. Dezernat für Jugend, Soziales und Gesundheit. Planungsteam Jugendhilfeplanung"], "authorized_access_point": "Braunschweig. Projekt Jugendhilfeplanung"} 1 +2024-09-11 09:00:24.007226 2024-09-11 09:00:24.007229 8949ce61-0e7b-4676-974f-b65db4de5962 {"md5": "467537d66fbb97d5687e2cdcf4f89e72", "pid": "007605285", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2112891-1", "source": "GND"}], "variant_name": ["Harzklub. Zweigverein Hohegeiß", "Harzklub-Zweigverein Hohegeiß e.V.", "Harzklub Hohegeiß"], "preferred_name": "Harzklub-Zweigverein Hohegeiß", "country_associated": "gw", "variant_access_point": ["Harzklub. Zweigverein Hohegeiß", "Harzklub-Zweigverein Hohegeiß e.V.. Unveraenderte Form", "Harzklub Hohegeiß"], "date_of_establishment": "06.01.1889", "authorized_access_point": "Harzklub-Zweigverein Hohegeiß", "biographical_information": ["e.V. seit 1978"]} 1 +2024-09-11 09:00:24.071328 2024-09-11 09:00:24.07133 755b4806-ad18-4ef1-aa1f-3b60bec96af6 {"md5": "234102bc472b65b40e25d04637f1c9eb", "pid": "007620756", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2114524-6", "source": "GND"}], "variant_name": ["Kommission für Quellen und Forschungen", "Kommission Quellen und Forschungen", "Kommission \\"Quellen und Forschungen\\""], "preferred_name": "Kommission für Quellen und Forschungen zur Geschichte und Landeskunde von Basel-Landschaft", "country_associated": "sz", "variant_access_point": ["Kommission für Quellen und Forschungen", "Kommission Quellen und Forschungen", "Kommission \\"Quellen und Forschungen\\". Basel-Landschaft"], "authorized_access_point": "Kommission für Quellen und Forschungen zur Geschichte und Landeskunde von Basel-Landschaft"} 1 +2024-09-11 09:00:24.13468 2024-09-11 09:00:24.134683 d55f4cc3-46b9-4367-9517-20868c906f58 {"md5": "62d373796623ce6a195d78d15aa7d94f", "pid": "007631731", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2115666-9", "source": "GND"}], "preferred_name": "Ausstellung Einsiedeln und die Südostbahn", "authorized_access_point": "Ausstellung Einsiedeln und die Südostbahn, 1990 - 1991"} 1 +2024-09-11 09:00:24.186898 2024-09-11 09:00:24.186901 23e07cf6-410e-4c25-9fed-a09f530e216e {"md5": "e7efd9efa312f21d624dcc9a01b81bb1", "pid": "007642423", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2116792-8", "source": "GND"}], "variant_name": ["Gesellschaft für Kommunikative Strategie", "Punkt GmbH", "Punkt, Gesellschaft für Kommunikative Strategien"], "preferred_name": "Punkt, Gesellschaft für Kommunikative Strategie", "country_associated": "gw", "variant_access_point": ["Gesellschaft für Kommunikative Strategie. Hamburg", "Punkt GmbH. Hamburg", "Punkt, Gesellschaft für Kommunikative Strategien. Hamburg"], "authorized_access_point": "Punkt, Gesellschaft für Kommunikative Strategie. Hamburg"} 1 +2024-09-11 09:00:24.239689 2024-09-11 09:00:24.239692 b9cea0e6-3b5a-44bd-bb76-567854634fe2 {"md5": "217387f71bf35bbbc3c075c688d1b81f", "pid": "007646895", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2117267-5", "source": "GND"}], "variant_name": ["Archäologische Sammlungen", "Archäologische Sammlungen", "Württembergisches Landesmuseum. Archäologische Sammlungen"], "preferred_name": "Württembergisches Landesmuseum. Archäologische Sammlungen", "country_associated": "gw", "variant_access_point": ["Archäologische Sammlungen. Stuttgart", "Archäologische Sammlungen. Württembergisches Landesmuseum, Stuttgart", "Württembergisches Landesmuseum. Archäologische Sammlungen"], "authorized_access_point": "Württembergisches Landesmuseum. Stuttgart. Archäologische Sammlungen"} 1 +2024-09-11 09:00:24.293822 2024-09-11 09:00:24.293826 d2049892-e233-4123-a5a4-c183f9d42b1b {"md5": "02e6a535bce0833bff2450586f922998", "pid": "007675844", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2120327-1", "source": "GND"}], "variant_name": ["Prognos. Arbeitsbereich \\"Medien und Kommunikation\\""], "preferred_name": "Prognos AG. Arbeitsbereich Medien und Kommunikation", "country_associated": "sz", "variant_access_point": ["Prognos. Arbeitsbereich \\"Medien und Kommunikation\\""], "authorized_access_point": "Prognos AG. Arbeitsbereich Medien und Kommunikation"} 1 +2024-09-11 09:00:24.358483 2024-09-11 09:00:24.358487 44b8d0e2-b6d0-4ea5-a015-21d1fbfbb0a7 {"md5": "03d7386652c28c3ef37efee288f42166", "pid": "007676174", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2120360-X", "source": "GND"}], "variant_name": ["AIDS-Tage, 2"], "preferred_name": "Münchner AIDS-Tage, 2", "variant_access_point": ["AIDS-Tage, 2, 1991, München"], "authorized_access_point": "Münchner AIDS-Tage, 2, 1991, München"} 1 +2024-09-11 09:00:24.433693 2024-09-11 09:00:24.433696 d8500efd-7e2e-44dc-ac2c-5b0052360b6c {"md5": "3e192b4392eba26fbc37ee59ce049dd3", "pid": "007690495", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2121867-5", "source": "GND"}], "preferred_name": "Technische Universität Chemnitz. Fachbereich Mathematik", "country_associated": "gw", "authorized_access_point": "Technische Universität Chemnitz. Fachbereich Mathematik"} 1 +2024-09-11 09:00:25.780106 2024-09-11 09:00:25.780109 ae182f7e-b747-4652-8eb1-9c3ea31a863e {"md5": "45c49ced09128b8f901e9d41986f4785", "pid": "008151733", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/815173-8", "source": "GND"}], "preferred_name": "International Congress of Entomology, 16", "country_associated": "ja", "authorized_access_point": "International Congress of Entomology, 16, 1980, Kyōto"} 1 +2024-09-11 09:00:24.482949 2024-09-11 09:00:24.482953 ce9a3c97-5188-4564-8621-61081cd882c8 {"md5": "8eb0883a72ccd42852ee37a3fdd492c4", "pid": "007736851", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2126742-X", "source": "GND"}], "variant_name": ["Swisscable, association de câblocommunication", "Verband für Kabelkommunikation", "Association de câblocommunikation"], "preferred_name": "Swisscable, Verband für Kabelkommunikation", "country_associated": "sz", "date_of_termination": "XX.XX.1998", "variant_access_point": ["Swisscable, association de câblocommunication", "Verband für Kabelkommunikation", "Association de câblocommunikation"], "date_of_establishment": "12.11.1992", "authorized_access_point": "Swisscable, Verband für Kabelkommunikation"} 1 +2024-09-11 09:00:24.535374 2024-09-11 09:00:24.535379 ae8c980a-edd6-431c-bbb1-6fbeee4f8466 {"md5": "05b3004dd4434c5fc3c858da6fd01625", "pid": "007744862", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2127593-2", "source": "GND"}], "preferred_name": "Verwaltungsgemeinschaft Gefell", "country_associated": "gw", "authorized_access_point": "Verwaltungsgemeinschaft Gefell"} 1 +2024-09-11 09:00:24.599082 2024-09-11 09:00:24.599087 76a67035-7876-46f0-96f5-cac4ae7804ad {"md5": "ed054dc8e7d4d9ee774e19df32979406", "pid": "007762321", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2129442-2", "source": "GND"}], "variant_name": ["Staatliche Berufsschule", "Berufsschule mit Berufsaufbauschule"], "preferred_name": "Staatliche Berufsschule mit Berufsaufbauschule", "country_associated": "gw", "variant_access_point": ["Staatliche Berufsschule. Sulzbach-Rosenberg, 1", "Berufsschule mit Berufsaufbauschule. Sulzbach-Rosenberg, Staatliche Berufsschule mit Berufsaufbauschule"], "authorized_access_point": "Staatliche Berufsschule mit Berufsaufbauschule. Sulzbach-Rosenberg"} 1 +2024-09-11 09:00:24.657885 2024-09-11 09:00:24.657888 7ace528a-d2a5-4b1d-9558-2ea115560ad6 {"md5": "6c530063b51c47384c2fa64ea7b4c693", "pid": "007765908", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2129855-5", "source": "GND"}], "variant_name": ["Universitäts-Gespräch, 5"], "preferred_name": "Bremer Universitäts-Gespräch, 5", "country_associated": "gw", "variant_access_point": ["Universitäts-Gespräch, 5, 1992, Bremen"], "authorized_access_point": "Bremer Universitäts-Gespräch, 5, 1992, Bremen"} 1 +2024-09-11 09:00:24.710478 2024-09-11 09:00:24.710482 d8f642fa-a204-47fc-a081-9db112c9618b {"md5": "b324310e950c32c7fbd8d29cfb033c8c", "pid": "007776500", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2130979-6", "source": "GND"}], "variant_name": ["Gratz College. Holocaust Oral History Archive", "Gratz College. Holocaust Oral History Archive"], "preferred_name": "Holocaust Oral History Archive", "country_associated": "xxu", "variant_access_point": ["Gratz College. Philadelphia, Pa.. Holocaust Oral History Archive", "Gratz College. Philadelphia, PA. Holocaust Oral History Archive"], "authorized_access_point": "Holocaust Oral History Archive. Philadelphia, Pa."} 1 +2024-09-11 09:00:24.762642 2024-09-11 09:00:24.762645 4d9362ed-e510-4b15-b5ae-0b159e1a91c7 {"md5": "502e5c99b75ec500feb03beff50d6da4", "pid": "007777639", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2131097-X", "source": "GND"}], "preferred_name": "Freie Akademie Gitanjali", "country_associated": "gw", "date_of_establishment": "1991", "authorized_access_point": "Freie Akademie Gitanjali. Duisburg"} 1 +2024-09-11 09:00:24.82653 2024-09-11 09:00:24.826534 114c3e7e-6d1e-41ba-aa7f-98bd37089c02 {"md5": "6781bb74aea9921777f501a299e35b13", "pid": "007781113", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2131467-6", "source": "GND"}], "variant_name": ["Rom. Bauverwaltung", "Stadtrömische Bauverwaltung", "Bauverwaltung", "Cura Operum Publicorum"], "preferred_name": "Rom. Cura Operum Publicorum", "country_associated": "it", "variant_access_point": ["Rom. Bauverwaltung", "Stadtrömische Bauverwaltung. Rom", "Bauverwaltung. Rom", "Cura Operum Publicorum. Rom"], "authorized_access_point": "Rom. Cura Operum Publicorum"} 1 +2024-09-11 09:00:24.882521 2024-09-11 09:00:24.882525 5d97b65b-65b5-4ee2-bf76-78e87dbb192c {"md5": "354d279f5be00c1067a7b505386c6d6f", "pid": "007783574", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2131727-6", "source": "GND"}], "preferred_name": "Kreishandwerkerschaft", "country_associated": "gw", "authorized_access_point": "Kreishandwerkerschaft. Cottbus"} 1 +2024-09-11 09:00:24.934886 2024-09-11 09:00:24.934889 c67bd5bb-f776-46df-b664-e9d7fd01f060 {"md5": "271e80ef4739c81cb1886f8f69a9eccd", "pid": "007792948", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2132705-1", "source": "GND"}], "preferred_name": "Fest der Jugendchöre der DDR, 4", "authorized_access_point": "Fest der Jugendchöre der DDR, 4, 1986, Schwerin"} 1 +2024-09-11 09:00:24.987844 2024-09-11 09:00:24.987847 589b8acd-1f3d-4873-9457-8fd7e5721e75 {"md5": "fc71c84fcc90244dc7e6af81ec96bc5b", "pid": "007793731", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2132788-9", "source": "GND"}], "variant_name": ["Büro für Stadtplanung und Architektur Dipl. Ing. G. Knopp"], "preferred_name": "Büro für Architektur und Stadtplanung Dipl. Ing. Gerhard Knopp", "country_associated": "gw", "variant_access_point": ["Büro für Stadtplanung und Architektur Dipl. Ing. G. Knopp"], "authorized_access_point": "Büro für Architektur und Stadtplanung Dipl. Ing. Gerhard Knopp"} 1 +2024-09-11 09:00:25.03995 2024-09-11 09:00:25.039953 c24497b8-9da5-47a3-b9ec-e1444fb52d3a {"md5": "04bcd9f902857f76e33763be69a4fd49", "pid": "007796811", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2133113-3", "source": "GND"}], "preferred_name": "Children's Cancer Association of Japan", "country_associated": "ja", "authorized_access_point": "Children's Cancer Association of Japan"} 1 +2024-09-11 09:00:25.091691 2024-09-11 09:00:25.091694 0fea43dc-cbf7-4097-913c-84bfcbbcc30a {"md5": "1ef9f4878c4298c7caea170d8ac7c2f1", "pid": "00779827X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2133269-1", "source": "GND"}], "variant_name": ["Sammer, Bildarchiv"], "preferred_name": "Bildarchiv Sammer", "country_associated": "gw", "variant_access_point": ["Sammer, Bildarchiv. Neuenkirchen (Heidekreis)"], "authorized_access_point": "Bildarchiv Sammer. Neuenkirchen (Heidekreis)"} 1 +2024-09-11 09:00:25.147181 2024-09-11 09:00:25.147185 c97fd13f-32ec-4257-a34f-f0a94d8db68f {"md5": "f61af541f333dd8d0c386d8781bfba01", "pid": "008030286", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/803028-5", "source": "GND"}], "variant_name": ["Herring Investigation Committee", "Canada. Atlantic Herring Investigation Committee", "Canada. Herring Investigation Committee"], "preferred_name": "Atlantic Herring Investigation Committee", "country_associated": "xxc", "variant_access_point": ["Herring Investigation Committee", "Canada. Atlantic Herring Investigation Committee", "Canada. Herring Investigation Committee"], "authorized_access_point": "Atlantic Herring Investigation Committee"} 1 +2024-09-11 09:00:25.199138 2024-09-11 09:00:25.199141 cda9658f-604a-4435-b7c1-5e201347af81 {"md5": "3e7d02af1911120e83ef8331804ce29c", "pid": "008036985", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/803698-6", "source": "GND"}], "variant_name": ["Symposium on Quantitative Biology, 48"], "preferred_name": "Cold Spring Harbor Symposium on Quantitative Biology, 48", "country_associated": "xxu", "variant_access_point": ["Symposium on Quantitative Biology, 48, 1983, Cold Spring Harbor, NY"], "authorized_access_point": "Cold Spring Harbor Symposium on Quantitative Biology, 48, 1983, Cold Spring Harbor, NY"} 1 +2024-09-11 09:00:25.286567 2024-09-11 09:00:25.286569 3cb5768b-a69e-4d77-8107-9a07d57abca7 {"md5": "f850150efce83a96b4fc848a05896ba4", "pid": "008055262", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/805526-9", "source": "GND"}], "preferred_name": "Conference Algebra and Logic, 4", "authorized_access_point": "Conference Algebra and Logic, 4, 1984, Zagreb"} 1 +2024-09-11 09:00:25.336751 2024-09-11 09:00:25.336754 aaf3c942-0487-4658-90f8-bfe8cff182d3 {"md5": "90cc6f4b8a7ba9b8ba16f8fbcd56ee01", "pid": "008059365", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/805936-6", "source": "GND"}], "variant_name": ["American Society of Civil Engineers. Underground Technology Research Council. Technical Committee on Tunnel Lining Design", "Technical Committee on Tunnel Lining Design"], "preferred_name": "American Society of Civil Engineers. Technical Committee on Tunnel Lining Design", "country_associated": "xxu", "variant_access_point": ["American Society of Civil Engineers. Underground Technology Research Council. Technical Committee on Tunnel Lining Design", "Technical Committee on Tunnel Lining Design. American Society of Civil Engineers"], "authorized_access_point": "American Society of Civil Engineers. Technical Committee on Tunnel Lining Design"} 1 +2024-09-11 09:00:25.393317 2024-09-11 09:00:25.39332 beb0f95b-f07a-42e4-937d-c8b8e599360b {"md5": "00eb1b3194aa94c43fbd44f0ba1494da", "pid": "008094217", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/809421-4", "source": "GND"}], "variant_name": ["Erasmus Universiteit Rotterdam. Juridisch Instituut"], "preferred_name": "Juridisch Instituut", "country_associated": "ne", "variant_access_point": ["Erasmus Universiteit Rotterdam. Juridisch Instituut"], "authorized_access_point": "Juridisch Instituut. Rotterdam"} 1 +2024-09-11 09:00:25.445081 2024-09-11 09:00:25.445084 b7144af2-0ccf-4374-868c-2fbf599eced5 {"md5": "ff7d20a5b1aaf10de6d2cde3bddc08fa", "pid": "008095086", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/809508-5", "source": "GND"}], "variant_name": ["Kloster Gnadenthal. Klosterarchiv"], "preferred_name": "Klosterarchiv Gnadenthal", "country_associated": "gw", "variant_access_point": ["Kloster Gnadenthal. Ingolstadt. Klosterarchiv"], "authorized_access_point": "Klosterarchiv Gnadenthal. Ingolstadt"} 1 +2024-09-11 09:00:25.49424 2024-09-11 09:00:25.494245 052b83d0-ad95-43bd-9bfc-fdecdac7e0d5 {"md5": "c0cd424b4c681a267bf885042ba934e1", "pid": "008112282", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/811228-9", "source": "GND"}], "preferred_name": "Musée du Livre", "country_associated": "be", "authorized_access_point": "Musée du Livre. Antwerpen"} 1 +2024-09-11 09:00:25.550291 2024-09-11 09:00:25.550294 122387de-affe-49f3-a4b7-f15fabdf0611 {"md5": "0f8f45f648011e8ecf3246fca3ae0de9", "pid": "008119198", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/811919-3", "source": "GND"}], "variant_name": ["Saiva Siddhanta Works Publishing Society", "Teṉṉintiya Caiva-Cittānta Nūrpatippuk Kaḻakam"], "preferred_name": "South India Saiva Siddhanta Works Publishing Society", "country_associated": "ii", "variant_access_point": ["Saiva Siddhanta Works Publishing Society. Indien", "Teṉṉintiya Caiva-Cittānta Nūrpatippuk Kaḻakam"], "authorized_access_point": "South India Saiva Siddhanta Works Publishing Society"} 1 +2024-09-11 09:00:25.612848 2024-09-11 09:00:25.612851 ef0450fc-6810-4931-b35e-2fd1af839f4b {"md5": "0828da4dec78ce82f8ac73a49630af9c", "pid": "008122830", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/812283-0", "source": "GND"}], "preferred_name": "Scandinavian Conference on Gastroenterology, 21", "country_associated": "fi", "authorized_access_point": "Scandinavian Conference on Gastroenterology, 21, 1988, Turku"} 1 +2024-09-11 09:00:25.668162 2024-09-11 09:00:25.668166 8434fec9-1718-4564-b887-2cfa3ab0aaaf {"md5": "de26c6c5396fbe0d4cef84738a321cbb", "pid": "008140111", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/814011-X", "source": "GND"}], "preferred_name": "Symposium on Tense and Aspect", "country_associated": "xxu", "authorized_access_point": "Symposium on Tense and Aspect, 1979, Los Angeles, Calif."} 1 +2024-09-11 09:00:25.728428 2024-09-11 09:00:25.728432 2abca5ef-530d-4bf7-a5f2-204db5f87db2 {"md5": "0518d3fc9758545e1ffa85a62996e635", "pid": "008147841", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/814784-X", "source": "GND"}], "variant_name": ["Tagung Finanz-Marketing im Zeichen der Informationstechniken"], "preferred_name": "Tagung Finanz-Marketing im Zeichen der Informationstechniken", "country_associated": "gw", "variant_access_point": ["Tagung Finanz-Marketing im Zeichen der Informationstechniken, 1987, Günzburg"], "authorized_access_point": "Tagung Finanz-Marketing im Zeichen der Informationstechniken, 1987, Reisensburg"} 1 +2024-09-11 09:01:24.860064 2024-09-11 09:01:24.860069 c6b0438a-64c9-4b27-9580-a448b504f111 {"md5": "b685341bd3bc023ab7621ba985447de4", "pid": "1145880231", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1145880231", "source": "GND"}], "date_of_birth": "1947", "preferred_name": "Tirichter, Monika", "authorized_access_point": "Tirichter, Monika, 1947-"} 1 +2024-09-11 09:00:25.830141 2024-09-11 09:00:25.830146 87b8b511-530e-4744-8278-268ff65151d3 {"md5": "9ade336b8a10acf50423e1959e68ab25", "pid": "008157103", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/815710-8", "source": "GND"}], "variant_name": ["Musikwissenschaftliches Kolloquium, 3"], "preferred_name": "Jenaer Musikwissenschaftliches Kolloquium, 3", "variant_access_point": ["Musikwissenschaftliches Kolloquium, 3, 1986, Jena"], "authorized_access_point": "Jenaer Musikwissenschaftliches Kolloquium, 3, 1986, Jena"} 1 +2024-09-11 09:00:25.881835 2024-09-11 09:00:25.881839 902279f2-6286-41fd-96a9-8129e494e763 {"md5": "aee1fea91d7ed1d2240c279f795a5465", "pid": "008165068", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/816506-3", "source": "GND"}], "preferred_name": "International Symposium and Course Simulation", "country_associated": "sz", "authorized_access_point": "International Symposium and Course Simulation, 1975, Zürich"} 1 +2024-09-11 09:00:25.933999 2024-09-11 09:00:25.934002 33bc81e6-90f1-446c-8d87-2b3e75f494ba {"md5": "74bcfa5cdf913f3ae7a3be77a80a3b5a", "pid": "008169446", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/816944-5", "source": "GND"}], "preferred_name": "International Conference on Electron Spectroscopy", "country_associated": "be", "authorized_access_point": "International Conference on Electron Spectroscopy, 1974, Namur"} 1 +2024-09-11 09:00:25.987008 2024-09-11 09:00:25.987011 0959d792-c6f7-4993-bd42-2023a424d642 {"md5": "7d4c2831a581738cc7cc721f534b43ae", "pid": "008169691", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/816969-X", "source": "GND"}], "preferred_name": "Courant Computer Science Symposium, 9", "country_associated": "xxu", "authorized_access_point": "Courant Computer Science Symposium, 9, 1972, New York, NY"} 1 +2024-09-11 09:00:26.045259 2024-09-11 09:00:26.045263 12aa726a-161a-4db3-bcaa-de9bdc30d1c2 {"md5": "0726ea6b39a3b36e7ef9e98cf5b785cc", "pid": "008183147", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/818314-4", "source": "GND"}], "variant_name": ["Nuclear Spectroscopy of Fission Products"], "preferred_name": "Workshop on the Nuclear Spectroscopy of Fission Products", "country_associated": "fr", "variant_access_point": ["Nuclear Spectroscopy of Fission Products, 1979, Grenoble"], "authorized_access_point": "Workshop on the Nuclear Spectroscopy of Fission Products, 1979, Grenoble"} 1 +2024-09-11 09:00:26.114801 2024-09-11 09:00:26.114803 cad33845-8918-4ebd-bd9f-6d06ef4271df {"md5": "abbebdc392c0d772d13ff92331a08cc7", "pid": "008183171", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/818317-X", "source": "GND"}], "preferred_name": "Mathematiker-Tagung", "country_associated": "gw", "authorized_access_point": "Mathematiker-Tagung, 1946, Tübingen"} 1 +2024-09-11 09:00:26.168796 2024-09-11 09:00:26.168798 61fc4a61-8d52-4d32-aed3-57ef98e13741 {"md5": "bafa1593e917ec213d5abf1616ae80d6", "pid": "008186596", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/818659-5", "source": "GND"}], "preferred_name": "International Quantum Electronics Conference, 8", "country_associated": "xxu", "authorized_access_point": "International Quantum Electronics Conference, 8, 1974, San Francisco, Calif."} 1 +2024-09-11 09:00:26.222401 2024-09-11 09:00:26.222404 82cd8eef-f3db-4275-9b82-33f23d6da964 {"md5": "dbe4ad61f356c3ce24810d6d3a3ef815", "pid": "030010462", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3001046-9", "source": "GND"}], "variant_name": ["Fachbereich Rechts- und Wirtschaftswissenschaften", "Johannes Gutenberg-Universität. Fachbereich Rechts- und Wirtschaftswissenschaften", "Johannes Gutenberg-Universität. Fachbereich"], "preferred_name": "Johannes Gutenberg-Universität Mainz. Fachbereich Rechts- und Wirtschaftswissenschaften", "country_associated": "gw", "variant_access_point": ["Fachbereich Rechts- und Wirtschaftswissenschaften. Mainz", "Johannes Gutenberg-Universität. Fachbereich Rechts- und Wirtschaftswissenschaften", "Johannes Gutenberg-Universität. Fachbereich. 03"], "authorized_access_point": "Johannes Gutenberg-Universität Mainz. Fachbereich Rechts- und Wirtschaftswissenschaften"} 1 +2024-09-11 09:00:26.276323 2024-09-11 09:00:26.276326 65fc806e-25e5-4acd-84a3-527b4264c284 {"md5": "815fbfb1da6a2001a22d20cac6410365", "pid": "030011213", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3001121-8", "source": "GND"}], "variant_name": ["Voss und Co., Lehmann", "Lehmann&Voss&Co. KG", "Lehvoss", "LUV"], "preferred_name": "Lehmann und Voss und Co.", "country_associated": "gw", "variant_access_point": ["Voss und Co., Lehmann. Unveraenderte Form", "Lehmann&Voss&Co. KG. Unveraenderte Form", "Lehvoss. Hamburg", "LUV. Abkuerzung"], "authorized_access_point": "Lehmann und Voss und Co."} 1 +2024-09-11 09:00:26.335582 2024-09-11 09:00:26.335585 3a9fabdc-e4c9-4a1e-93db-915db1d97809 {"md5": "f85cf1d693c1341649f9b8cbe6e3ecf4", "pid": "030028841", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3002884-X", "source": "GND"}], "variant_name": ["Bezirksfachausschuß Numismatik"], "preferred_name": "Gesellschaft für Heimatgeschichte. Bezirksvorstand. Bezirksfachausschuß Numismatik", "variant_access_point": ["Bezirksfachausschuß Numismatik. Berlin, Ost, Gesellschaft für Heimatgeschichte"], "authorized_access_point": "Gesellschaft für Heimatgeschichte. Bezirksvorstand. Berlin, Ost. Bezirksfachausschuß Numismatik"} 1 +2024-09-11 09:00:26.386294 2024-09-11 09:00:26.386297 ba58cc5a-d3a5-4065-8faa-91c8bb7c4c36 {"md5": "24829b6a8651d3ff02b29a23f7c483ec", "pid": "03003891X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3003891-1", "source": "GND"}], "variant_name": ["Centre for Health Information", "Kanada. Centre for Health Information", "Kanada. Statistics Canada. Centre for Health Information", "Centre Canadien d'Information sur la Santé", "Kanada. Statistics. Centre d'Information sur la Santé", "Kanada. Centre d'Information sur la Santé"], "preferred_name": "Canadian Centre for Health Information", "country_associated": "xxc", "variant_access_point": ["Centre for Health Information. Ottawa", "Kanada. Centre for Health Information", "Kanada. Statistics Canada. Centre for Health Information", "Centre Canadien d'Information sur la Santé. Ottawa", "Kanada. Statistics. Centre d'Information sur la Santé", "Kanada. Centre d'Information sur la Santé"], "date_of_establishment": "1989", "authorized_access_point": "Canadian Centre for Health Information. Ottawa"} 1 +2024-09-11 09:00:26.439868 2024-09-11 09:00:26.439871 e0b1f19d-195d-40aa-8008-325f9a6d1252 {"md5": "b409aa33c825bcbaac4c76603d89dec5", "pid": "03005205X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3005205-1", "source": "GND"}], "variant_name": ["Kindergarten Undenheim"], "preferred_name": "Gemeindekindergarten Undenheim", "country_associated": "gw", "variant_access_point": ["Kindergarten Undenheim"], "authorized_access_point": "Gemeindekindergarten Undenheim"} 1 +2024-09-11 09:00:26.503539 2024-09-11 09:00:26.503543 12fadf5d-f189-4363-a2f9-ec996fe1777a {"md5": "1ee1579b916cd8acc720a7ac7f5a7346", "pid": "030052912", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3005291-9", "source": "GND"}], "variant_name": ["Istituto Universitario Orientale. Dipartimento di Studi del Mondo Classico e del Mediterraneo Antico. Sezione Linguistica", "Istituto universitario orientale. Sezione linguistica", "Istituto universitario orientale. Seminario di studi del mondo classico. Sezione linguistica", "Istituto universitario orientale. Dipartimento di studi del mondo classico e del Mediterraneo antico. Sezione linguistica"], "preferred_name": "Istituto Universitario Orientale. Sezione Linguistica", "country_associated": "it", "variant_access_point": ["Istituto Universitario Orientale. Neapel. Dipartimento di Studi del Mondo Classico e del Mediterraneo Antico. Sezione Linguistica", "Istituto universitario orientale. Napoli. Sezione linguistica", "Istituto universitario orientale. Napoli. Seminario di studi del mondo classico. Sezione linguistica", "Istituto universitario orientale. Napoli. Dipartimento di studi del mondo classico e del Mediterraneo antico. Sezione linguistica"], "authorized_access_point": "Istituto Universitario Orientale. Neapel. Sezione Linguistica"} 1 +2024-09-11 09:00:26.560851 2024-09-11 09:00:26.560856 dca13345-f5ef-44ee-8534-19c4362fb6cb {"md5": "6926f821145f16c13bccee5255f910d5", "pid": "030072409", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3007240-2", "source": "GND"}], "preferred_name": "Gewerbe-Verein für Aachen, Burtscheid und Umgegend", "authorized_access_point": "Gewerbe-Verein für Aachen, Burtscheid und Umgegend"} 1 +2024-09-11 09:00:26.635231 2024-09-11 09:00:26.635234 cbe0e2a3-8fc7-41ff-b20e-22b2f8c38600 {"md5": "22d3c2cb1ed87ae06bd8d95d97dbe8fb", "pid": "030078768", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3007876-3", "source": "GND"}], "preferred_name": "Colloque de Pragmatique, 4", "country_associated": "sz", "authorized_access_point": "Colloque de Pragmatique, 4, 1989, Genf"} 1 +2024-09-11 09:00:26.689936 2024-09-11 09:00:26.689938 22253cb5-dc21-484a-a097-9c6549a3ff05 {"md5": "2064ce73e11daa29120788b50c77d84a", "pid": "030081297", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3008129-4", "source": "GND"}], "variant_name": ["CWA"], "preferred_name": "Crime Writers' Association", "country_associated": "xxk", "variant_access_point": ["CWA. Abkuerzung"], "authorized_access_point": "Crime Writers' Association", "biographical_information": ["Sitz: London"]} 1 +2024-09-11 09:00:26.749367 2024-09-11 09:00:26.74937 6bce2849-9385-43d8-8738-486049b353e9 {"md5": "b54986bb7663a00185236ffb8027183f", "pid": "030120926", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3012092-5", "source": "GND"}], "variant_name": ["Internationale Fleischwirtschaftliche Fachmesse", "International Trade Fair for the Meat Industry", "Salon International de l'Industrie et du Commerce de la Viande"], "preferred_name": "IFFA", "country_associated": "gw", "variant_access_point": ["Internationale Fleischwirtschaftliche Fachmesse, 1992, Frankfurt, Main", "International Trade Fair for the Meat Industry, 1992, Frankfurt, Main", "Salon International de l'Industrie et du Commerce de la Viande, 1992, Frankfurt, Main"], "authorized_access_point": "IFFA, 1992, Frankfurt, Main"} 1 +2024-09-11 09:00:26.798612 2024-09-11 09:00:26.798616 116935b9-d9dc-4e33-b361-287622cdf0ee {"md5": "c2297b9187f78f4ecb94e2210616f44d", "pid": "03012199X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3012199-1", "source": "GND"}], "preferred_name": "Workshop zu Problemen des Infektionsschutzes Hospitalisierter Patienten", "authorized_access_point": "Workshop zu Problemen des Infektionsschutzes Hospitalisierter Patienten, 1989, Berlin, Ost"} 1 +2024-09-11 09:00:26.850363 2024-09-11 09:00:26.850368 4a3dce1d-0f57-4709-b562-920c48622965 {"md5": "11fa097e9d0ca19fbc95ea564a84c4dd", "pid": "03012929X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3012929-1", "source": "GND"}], "preferred_name": "K. Pätsi 60 A. Sünnipäeva Mälestamise Komitee", "authorized_access_point": "K. Pätsi 60 A. Sünnipäeva Mälestamise Komitee"} 1 +2024-09-11 09:00:26.903769 2024-09-11 09:00:26.903771 9d858273-5480-43db-9d9e-10f13ce0dd49 {"md5": "7f8f340127e143a2b9d57f2882041b8c", "pid": "030132053", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3013205-8", "source": "GND"}], "preferred_name": "Bedford College. Zoology Department", "country_associated": "xxk", "authorized_access_point": "Bedford College. Zoology Department"} 1 +2024-09-11 09:00:26.955029 2024-09-11 09:00:26.955031 40a46fbb-67a5-43e2-b726-9fa803a271fb {"md5": "18d4191678b8601813ed59cfa706d3b4", "pid": "030135567", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3013556-4", "source": "GND"}], "preferred_name": "Environment Law Conference", "country_associated": "xxk", "authorized_access_point": "Environment Law Conference, 1990, Durham"} 1 +2024-09-11 09:00:27.007238 2024-09-11 09:00:27.00724 09cedef8-7ab1-4047-82fe-5c210c51a6dd {"md5": "216082291b6183f948196d906bcb22b2", "pid": "030146690", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3014669-0", "source": "GND"}], "preferred_name": "GOES I-M Operational Satellite Conference", "country_associated": "xxu", "authorized_access_point": "GOES I-M Operational Satellite Conference, 1989, Arlington, Va."} 1 +2024-09-11 09:00:27.057656 2024-09-11 09:00:27.057659 33e5c12b-5321-490b-977f-79f2bfaec186 {"md5": "ef8a0415adaa47ba90035534127a517a", "pid": "030152089", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3015208-2", "source": "GND"}], "preferred_name": "International Conference on Approximation Theory", "country_associated": "xxu", "authorized_access_point": "International Conference on Approximation Theory, 1990, Tampa, Fla."} 1 +2024-09-11 09:00:27.111671 2024-09-11 09:00:27.111674 ce349235-f6d0-4bc1-a4e7-4af23d7f96e8 {"md5": "bf4d965b781dffaa8601aaf9507f2598", "pid": "030153727", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3015372-4", "source": "GND"}], "variant_name": ["Committee on Geostatistics", "Committee on Geostatistics", "IAMG Committee on Geostatistics", "International Association for Mathematical Geology. IAMG Committee on Geostatistics", "International Association for Mathematical Geology. 1984-1989 Committee on Geostatistics", "1984-1989 Committee on Geostatistics", "International Association for Mathematical Geology. 1984-1989 IAMG Committee on Geostatistics", "1984-1989 IAMG Committee on Geostatistics"], "preferred_name": "International Association for Mathematical Geology. Committee on Geostatistics", "variant_access_point": ["Committee on Geostatistics", "Committee on Geostatistics. International Association for Mathematical Geology", "IAMG Committee on Geostatistics. International Association for Mathematical Geology", "International Association for Mathematical Geology. IAMG Committee on Geostatistics", "International Association for Mathematical Geology. 1984-1989 Committee on Geostatistics", "1984-1989 Committee on Geostatistics. International Association for Mathematical Geology", "International Association for Mathematical Geology. 1984-1989 IAMG Committee on Geostatistics", "1984-1989 IAMG Committee on Geostatistics. International Association for Mathematical Geology"], "authorized_access_point": "International Association for Mathematical Geology. Committee on Geostatistics"} 1 +2024-09-11 09:00:27.181132 2024-09-11 09:00:27.181137 4004dee6-3012-4927-bdf7-1b514d979a46 {"md5": "a9d59208daba5900eec7ce13d872b75b", "pid": "030168910", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3016891-0", "source": "GND"}], "variant_name": ["Schuldeputation"], "preferred_name": "Frankfurt am Main. Schuldeputation", "country_associated": "gw", "variant_access_point": ["Schuldeputation. Frankfurt am Main"], "authorized_access_point": "Frankfurt am Main. Schuldeputation"} 1 +2024-09-11 09:00:27.237599 2024-09-11 09:00:27.237603 1739ff61-3efa-421d-9d1e-7e23c85d0cb7 {"md5": "874f3e3635aab86b7af5df47ebafcce4", "pid": "030183251", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3018325-X", "source": "GND"}], "variant_name": ["Gutenberg-Gymnasium", "GG"], "preferred_name": "Gutenberg-Gymnasium Mainz", "country_associated": "gw", "variant_access_point": ["Gutenberg-Gymnasium. Ehemalige Vorzugsbenennung SWD", "GG. Abkuerzung"], "date_of_establishment": "1956", "authorized_access_point": "Gutenberg-Gymnasium Mainz"} 1 +2024-09-11 09:00:27.301346 2024-09-11 09:00:27.301349 2c33e795-039f-4f09-bc73-9e1130b561bd {"md5": "ee43ece33673102da8ce0f042301bfeb", "pid": "041027752", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4102775-9", "source": "GND"}], "preferred_name": "Syndicat National de la Police Belge", "country_associated": "be", "authorized_access_point": "Syndicat National de la Police Belge", "biographical_information": ["Belg. Polizeigewerksch."]} 1 +2024-09-11 09:00:27.354361 2024-09-11 09:00:27.354365 71dad545-8b80-4483-af54-dd1755fe1678 {"md5": "555741c8d92a47718e72079413d14be3", "pid": "041297423", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4129742-8", "source": "GND"}], "preferred_name": "Arbeitsgemeinschaft Erwin von Beckerath", "country_associated": "gw", "authorized_access_point": "Arbeitsgemeinschaft Erwin von Beckerath", "biographical_information": ["gegr.1943"]} 1 +2024-09-11 09:00:27.422738 2024-09-11 09:00:27.422741 660337ec-8716-4bbb-9ec7-8bc5aac7f696 {"md5": "c4453f287d2c8ef18a85a0767854201b", "pid": "042249627", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4224962-4", "source": "GND"}], "variant_name": ["Museo Civico di Troia", "Museo Civico"], "preferred_name": "Museo Civico Troia", "country_associated": "it", "variant_access_point": ["Museo Civico di Troia. Unveraenderte Form", "Museo Civico. Troia"], "date_of_establishment": "1981", "authorized_access_point": "Museo Civico Troia"} 1 +2024-09-11 09:00:27.487202 2024-09-11 09:00:27.487205 629da8d8-a403-48bc-96d0-d5820c376111 {"md5": "9e99cc08ec14f317619d5e9050e712cd", "pid": "042260264", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4226026-7", "source": "GND"}], "preferred_name": "Collegium Anthologicum", "country_associated": "gw", "authorized_access_point": "Collegium Anthologicum", "biographical_information": ["Gelehrte Gesellschaft, 17. Jh."]} 1 +2024-09-11 09:00:27.554173 2024-09-11 09:00:27.554177 7fb05e9b-20d3-41ef-adea-ae86afcd67bf {"md5": "5a45a37d5bb5b64bbf65574cec8ed282", "pid": "042968097", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4296809-4", "source": "GND"}], "variant_name": ["MJC"], "preferred_name": "Maison des Jeunes et de la Culture Robert Martin", "country_associated": "fr", "variant_access_point": ["MJC. Abkuerzung"], "authorized_access_point": "Maison des Jeunes et de la Culture Robert Martin"} 1 +2024-09-11 09:00:27.619951 2024-09-11 09:00:27.619954 99e3f313-4877-48dd-b26b-b80c732d1ec3 {"md5": "f31dd785831b0e12a015b2b6e0beec7e", "pid": "050000462", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5000046-9", "source": "GND"}], "variant_name": ["Juristentag"], "preferred_name": "Schweizerischer Juristentag", "country_associated": "sz", "variant_access_point": ["Juristentag, 1988, Bern"], "authorized_access_point": "Schweizerischer Juristentag, 1988, Bern"} 1 +2024-09-11 09:00:27.676616 2024-09-11 09:00:27.676621 202fd096-9562-4306-baf1-a130fc55dd99 {"md5": "1b4317bf9da6ca2958a325ac13111258", "pid": "05000736X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5000736-1", "source": "GND"}], "preferred_name": "Conference on Measure Theory", "country_associated": "xxu", "authorized_access_point": "Conference on Measure Theory, 1980, De Kalb, Ill.", "biographical_information": ["4ELRAKk"]} 1 +2024-09-11 09:00:27.729029 2024-09-11 09:00:27.729032 1d75f7cf-bcd9-4f11-bfec-4ca97d43f3f1 {"md5": "42dbfa5007e7110e85e20321fe708868", "pid": "05001692X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5001692-1", "source": "GND"}], "preferred_name": "Conference on Functional Programming Languages and Computer Architecture", "country_associated": "xxu", "authorized_access_point": "Conference on Functional Programming Languages and Computer Architecture, 1981, Wentworth-by-the-Sea; Portsmouth, NH"} 1 +2024-09-11 09:00:27.835036 2024-09-11 09:00:27.835039 2967e968-a823-4a61-9e2e-9efd8f775685 {"md5": "cd3d8bd9916ca577a99a62e02c8f948b", "pid": "050047043", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5004704-8", "source": "GND"}], "variant_name": ["Sankt Richard", "St. Richard", "Katholische Pfarrei St. Richard", "Katholische Pfarrei Sankt Richard"], "preferred_name": "Pfarrei Sankt Richard", "country_associated": "gw", "variant_access_point": ["Sankt Richard. Berlin, West", "St. Richard. Berlin, West", "Katholische Pfarrei St. Richard. Berlin, West", "Katholische Pfarrei Sankt Richard. Berlin, West"], "authorized_access_point": "Pfarrei Sankt Richard. Berlin, West"} 1 +2024-09-11 09:00:27.900552 2024-09-11 09:00:27.900555 aa6c4cd1-a40a-483e-a95c-6cce8937afee {"md5": "5c53e8372151bfeb3bd108827853feda", "pid": "050053396", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5005339-5", "source": "GND"}], "preferred_name": "Domgemeinde", "authorized_access_point": "Domgemeinde. Schwerin"} 1 +2024-09-11 09:00:27.952177 2024-09-11 09:00:27.95218 7054d139-7f1f-44b7-88f2-8aaecd040262 {"md5": "02a48b7c8c296686e824ab049c2b5c41", "pid": "05005967X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5005967-1", "source": "GND"}], "preferred_name": "Komunistická Strana Československa. Deutsche Abteilung", "authorized_access_point": "Komunistická Strana Československa. Deutsche Abteilung"} 1 +2024-09-11 09:00:28.007978 2024-09-11 09:00:28.007981 2a45bc34-fb27-4c99-91cf-e295a24713d5 {"md5": "b93e6604996a0abe94fa854b36ed4569", "pid": "050070606", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5007060-5", "source": "GND"}], "variant_name": ["Amt für Statistik und Wahlen"], "preferred_name": "Mannheim. Amt für Statistik und Wahlen", "country_associated": "gw", "date_of_termination": "1989", "variant_access_point": ["Amt für Statistik und Wahlen. Mannheim"], "date_of_establishment": "1989", "authorized_access_point": "Mannheim. Amt für Statistik und Wahlen"} 1 +2024-09-11 09:00:28.073095 2024-09-11 09:00:28.073097 dd6dac9c-f685-40d5-8584-7a2ef33d118a {"md5": "0af96f143aae567f9d2f7dc025f397ea", "pid": "050096672", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5009667-9", "source": "GND"}], "variant_name": ["East Sibirian Institute of Geology", "Akademija Nauk SSSR. Sibirskoe Otdelenie. Vostočno-Sibirskij Geologičeskij Institut", "Akademija Nauk SSSR. Sibirskoe Otdelenie. East Sibirian Institute of Geology", "Vostočno-Sibirskij geologičeskij institut Sibirskogo otdelenia AN SSSR"], "preferred_name": "Vostočno-Sibirskij geologičeskij institut", "country_associated": "ru", "date_of_termination": "1962", "variant_access_point": ["East Sibirian Institute of Geology", "Akademija Nauk SSSR. Sibirskoe Otdelenie. Vostočno-Sibirskij Geologičeskij Institut", "Akademija Nauk SSSR. Sibirskoe Otdelenie. East Sibirian Institute of Geology", "Vostočno-Sibirskij geologičeskij institut Sibirskogo otdelenia AN SSSR. Unveraenderte Form"], "date_of_establishment": "1957", "parallel_access_point": ["Восточно-Сибирский геологический институт"], "authorized_access_point": "Vostočno-Sibirskij geologičeskij institut"} 1 +2024-09-11 09:00:28.124355 2024-09-11 09:00:28.124359 715840d0-05be-4d00-93dc-35fdd92a6989 {"md5": "8e4e4fdc73e5ec2c89a7d3016b8ab365", "pid": "05009808X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5009808-1", "source": "GND"}], "variant_name": ["Anglo-American Limited"], "preferred_name": "Rhodesian Anglo-American Limited", "country_associated": "xxk", "variant_access_point": ["Anglo-American Limited. London"], "authorized_access_point": "Rhodesian Anglo-American Limited. London"} 1 +2024-09-11 09:00:28.182499 2024-09-11 09:00:28.182501 4b35eae2-8845-4718-a323-1ec38d37f22c {"md5": "5c08acf4e641074148f7c81935c4c9c7", "pid": "050105884", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5010588-7", "source": "GND"}], "variant_name": ["Utklekningsanstalt", "Statens Utklekningsanstalten", "Flødevigens Utklekningsanstalt"], "preferred_name": "Statens Utklekningsanstalt", "country_associated": "no", "variant_access_point": ["Utklekningsanstalt. Flødevigen", "Statens Utklekningsanstalten. Flødevigen", "Flødevigens Utklekningsanstalt"], "authorized_access_point": "Statens Utklekningsanstalt. Flødevigen"} 1 +2024-09-11 09:00:28.245254 2024-09-11 09:00:28.245258 f75303ec-d37c-46fb-a3c0-3aab06020b2b {"md5": "834bb4d8a8fc6e152918b32ffbee4ae6", "pid": "050122916", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5012291-5", "source": "GND"}], "variant_name": ["Minimum Wage and Child Labor Department", "North Dakota. Department of Agriculture and Labor. Minimum Wage and Child Labor Department"], "preferred_name": "North Dakota. Minimum Wage and Child Labor Department", "country_associated": "xxu", "variant_access_point": ["Minimum Wage and Child Labor Department. North Dakota", "North Dakota. Department of Agriculture and Labor. Minimum Wage and Child Labor Department"], "authorized_access_point": "North Dakota. Minimum Wage and Child Labor Department"} 1 +2024-09-11 09:00:28.301121 2024-09-11 09:00:28.301124 ccee9c88-3ee4-428c-a758-04be63685cb5 {"md5": "1c4256eb5a6077f1b09538dd69840b9c", "pid": "050132229", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5013222-2", "source": "GND"}], "variant_name": ["PACAM", "Mechanics Pan-American", "PACAM", "Applied Mechanics"], "preferred_name": "Pan-American Congress of Applied Mechanics", "variant_access_point": ["PACAM", "Mechanics Pan-American", "PACAM", "Applied Mechanics"], "authorized_access_point": "Pan-American Congress of Applied Mechanics"} 1 +2024-09-11 09:00:28.350687 2024-09-11 09:00:28.350689 2d2c63ea-8a6a-4e8e-a44b-d42e18e7a511 {"md5": "eb7b5d22888418ea4a61d4d802dcfed9", "pid": "050145363", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5014536-8", "source": "GND"}], "variant_name": ["ICAL"], "preferred_name": "International Combustion Africa Limited", "country_associated": "sa", "variant_access_point": ["ICAL. Abkuerzung"], "authorized_access_point": "International Combustion Africa Limited. Johannesburg"} 1 +2024-09-11 09:00:28.403642 2024-09-11 09:00:28.403645 87982216-5bcc-4357-93b7-420baeb00c59 {"md5": "c3f6b616fdb32359bf63dfbc5bd2accd", "pid": "050155032", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5015503-9", "source": "GND"}], "preferred_name": "International Congress on Chemical Modifiers of Cancer Treatment", "authorized_access_point": "International Congress on Chemical Modifiers of Cancer Treatment"} 1 +2024-09-11 09:00:28.45354 2024-09-11 09:00:28.453543 074401ea-d94c-4176-90a7-0f7c7c1b8650 {"md5": "f4bc5c77bd45df247827de81aa13cfd5", "pid": "050161261", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5016126-X", "source": "GND"}], "preferred_name": "Landwirtschaftliche Fachgespräche", "authorized_access_point": "Landwirtschaftliche Fachgespräche"} 1 +2024-09-11 09:00:28.505318 2024-09-11 09:00:28.50532 f5d506d9-356a-40ab-a27f-f473de7a6626 {"md5": "7b3615278f845626f6617cc17cdc11ab", "pid": "050168436", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5016843-5", "source": "GND"}], "variant_name": ["Japan US Workshop on Tritium Technology"], "preferred_name": "Torichūmu-Gijutsu-ni-kansuru-Nichi-Bei-Wākushoppu", "variant_access_point": ["Japan US Workshop on Tritium Technology"], "authorized_access_point": "Torichūmu-Gijutsu-ni-kansuru-Nichi-Bei-Wākushoppu"} 1 +2024-09-11 09:00:28.556331 2024-09-11 09:00:28.556334 49a74431-4636-46a3-b16a-7d767b1be5fd {"md5": "5f81f2fe1cb981f02203e89a3ad00ab3", "pid": "050171607", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5017160-4", "source": "GND"}], "variant_name": ["International Liaison Committee", "International Catholic-Jewish Liaison Committee", "Comité International de Liaison entre Juifs et Catholiques", "International Catholic-Jewish Liaison Committee", "ILC"], "preferred_name": "International Catholic Jewish Liaison Committee", "variant_access_point": ["International Liaison Committee", "International Catholic-Jewish Liaison Committee", "Comité International de Liaison entre Juifs et Catholiques", "International Catholic-Jewish Liaison Committee", "ILC. Abkuerzung"], "date_of_establishment": "1970", "authorized_access_point": "International Catholic Jewish Liaison Committee", "biographical_information": ["Verbindungskomitee vom International Jewish Committee on Interreligious Consultations und Repräsentanten des Vatikan für katholisch-jüdische Beziehungen 23.11.1970 in Rom gegründet, arbeitet in jährlichen Treffen zur Versöhnung zwischen der katholischen Kirche und den Juden"]} 1 +2024-09-11 09:00:28.608404 2024-09-11 09:00:28.608407 4ea929d2-da29-4511-abd8-aaf409bde228 {"md5": "d8b331d8ed6dc09e92e8574d3fd4e476", "pid": "050184318", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5018431-3", "source": "GND"}], "variant_name": ["Amis du Vieux Pont-Du-Chateau"], "preferred_name": "Association des Amis du Vieux Pont-Du-Chateau", "country_associated": "fr", "variant_access_point": ["Amis du Vieux Pont-Du-Chateau"], "authorized_access_point": "Association des Amis du Vieux Pont-Du-Chateau"} 1 +2024-09-11 09:00:28.662864 2024-09-11 09:00:28.662869 7b84cf63-bdf5-4448-996b-f6aa1e63df9d {"md5": "336de154356dd2f6b197d4af3e11b7f9", "pid": "050186736", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5018673-5", "source": "GND"}], "variant_name": ["Art Gallery", "Rutgers University Art Gallery", "Rutgers University. University Art Gallery"], "preferred_name": "Rutgers University. Art Gallery", "country_associated": "xxu", "variant_access_point": ["Art Gallery. Rutgers University", "Rutgers University Art Gallery", "Rutgers University. University Art Gallery"], "authorized_access_point": "Rutgers University. Art Gallery"} 1 +2024-09-11 09:00:28.715721 2024-09-11 09:00:28.715725 099c0e5e-9acb-4668-81a9-ff8d96c90220 {"md5": "99d36076ea7b7b62041f0cb552636eda", "pid": "05018685X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5018685-1", "source": "GND"}], "variant_name": ["Rooms-Katholiek Kerkgenootschap in Nederland. Secretariaat", "SRKK", "RKK"], "preferred_name": "Rooms-Katholiek Kerkgenootschap in Nederland", "country_associated": "ne", "variant_access_point": ["Rooms-Katholiek Kerkgenootschap in Nederland. Secretariaat", "SRKK. Abkuerzung", "RKK. Abkuerzung"], "authorized_access_point": "Rooms-Katholiek Kerkgenootschap in Nederland"} 1 +2024-09-11 09:00:28.768468 2024-09-11 09:00:28.768471 659a9c0b-bdcd-4e65-aa8e-2f12c223ecea {"md5": "9c2d279185f70cf1286036a892ea079b", "pid": "050187023", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5018702-8", "source": "GND"}], "preferred_name": "Vlaams International Centrum", "country_associated": "be", "authorized_access_point": "Vlaams International Centrum. Brüssel"} 1 +2024-09-11 09:00:28.822483 2024-09-11 09:00:28.822487 fed6e4be-5a7c-44ef-baa7-2cb304127867 {"md5": "21c708ed71a76fd43e008fd96236521b", "pid": "050230611", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5023061-X", "source": "GND"}], "variant_name": ["Garvey Publishing Fund"], "preferred_name": "Eva Garvey Publishing Fund", "country_associated": "xxu", "variant_access_point": ["Garvey Publishing Fund"], "authorized_access_point": "Eva Garvey Publishing Fund"} 1 +2024-09-11 09:00:28.875331 2024-09-11 09:00:28.875335 f1509abe-9c44-43e9-bd39-3b6ac6aaa399 {"md5": "3df9c1da959c2c79efb86d9e3ab8a753", "pid": "050247840", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5024784-0", "source": "GND"}], "preferred_name": "AB Göteborgs Skeppsdockor", "country_associated": "sw", "authorized_access_point": "AB Göteborgs Skeppsdockor"} 1 +2024-09-11 09:00:28.940111 2024-09-11 09:00:28.940113 77c1f1bc-9da0-455e-a2bb-60b3981a721b {"md5": "c81bd93d6503a5a095cacc651e550c34", "pid": "050257722", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5025772-9", "source": "GND"}], "variant_name": ["Verlagshaus Röser", "Röser, Fernsprechbuchverlag Rudolf"], "preferred_name": "Fernsprechbuchverlag Rudolf Röser", "country_associated": "gw", "variant_access_point": ["Verlagshaus Röser. Karlsruhe", "Röser, Fernsprechbuchverlag Rudolf. Karlsruhe"], "date_of_establishment": "1965", "authorized_access_point": "Fernsprechbuchverlag Rudolf Röser. Karlsruhe"} 1 +2024-09-11 09:00:28.992822 2024-09-11 09:00:28.992826 a1e85b67-808d-4c4f-a722-1a7e991af1dc {"md5": "e08a5d60c17731834870538899ceaec6", "pid": "050269704", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5026970-7", "source": "GND"}], "variant_name": ["JLC", "Japan Linear Collider", "JLC", "Workshop JLC", "JLC Workshop"], "preferred_name": "Workshop on Japan Linear Collider", "variant_access_point": ["JLC", "Japan Linear Collider. Workshop", "JLC", "Workshop JLC", "JLC Workshop"], "authorized_access_point": "Workshop on Japan Linear Collider"} 1 +2024-09-11 09:00:29.048661 2024-09-11 09:00:29.048664 8168d965-9abb-439d-98af-16b4263d64c6 {"md5": "a7018645f055ea92202c66ddbe171180", "pid": "050270850", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5027085-0", "source": "GND"}], "preferred_name": "Electric Utility Marketing Research Symposium", "authorized_access_point": "Electric Utility Marketing Research Symposium"} 1 +2024-09-11 09:00:29.106741 2024-09-11 09:00:29.106744 9d3294f7-0fdd-4bf7-b124-f78e9aab2a5f {"md5": "949fc135e4e559fe0b3f5085000759be", "pid": "050279831", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5027983-X", "source": "GND"}], "preferred_name": "Städtische Höhere Mädchenschule", "authorized_access_point": "Städtische Höhere Mädchenschule. Myslowitz"} 1 +2024-09-11 09:00:29.161962 2024-09-11 09:00:29.161965 7578d11d-6613-4bed-8516-faa7090cc9ae {"md5": "45981b43af0e205fbcfd3de1124298d2", "pid": "050284185", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5028418-6", "source": "GND"}], "preferred_name": "Gjøvik Historielag", "country_associated": "no", "authorized_access_point": "Gjøvik Historielag"} 1 +2024-09-11 09:00:29.226318 2024-09-11 09:00:29.226322 9c864e5e-93cb-4484-a9af-b4826974f58a {"md5": "cd55b9edc823ca9db04950a7bb658076", "pid": "050284673", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5028467-8", "source": "GND"}], "variant_name": ["Khet Mazdoor Union"], "preferred_name": "Bharatiya Khet Mazdoor Union", "country_associated": "ii", "variant_access_point": ["Khet Mazdoor Union. Indien"], "authorized_access_point": "Bharatiya Khet Mazdoor Union"} 1 +2024-09-11 09:00:29.337418 2024-09-11 09:00:29.337421 d9dd7899-92f7-4c91-890d-ba5059d64a7d {"md5": "9ce26a13c45468358d7786084545cc1b", "pid": "050329820", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5032982-0", "source": "GND"}], "variant_name": ["Udvalget til Revision af den Gaeldende Biblioteksafgiftsordning", "Dänemark. Ministeriet for Kulturelle Anliggender. Udvalget til Revision af den Gaeldende Biblioteksafgiftsordning", "Dänemark. Kulturministeriet. Udvalget til Revision af den Gaeldende Biblioteksafgiftsordning"], "preferred_name": "Dänemark. Udvalget til Revision af den Gaeldende Biblioteksafgiftsordning", "country_associated": "dk", "variant_access_point": ["Udvalget til Revision af den Gaeldende Biblioteksafgiftsordning. Dänemark", "Dänemark. Ministeriet for Kulturelle Anliggender. Udvalget til Revision af den Gaeldende Biblioteksafgiftsordning", "Dänemark. Kulturministeriet. Udvalget til Revision af den Gaeldende Biblioteksafgiftsordning"], "date_of_establishment": "XX.11.1986", "authorized_access_point": "Dänemark. Udvalget til Revision af den Gaeldende Biblioteksafgiftsordning"} 1 +2024-09-11 09:00:29.393034 2024-09-11 09:00:29.393037 acb02337-50eb-43ca-b96b-c7fc73103731 {"md5": "098c53dce40d95968d0076f83dfce395", "pid": "050353233", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5035323-8", "source": "GND"}], "variant_name": ["Akademisches Orchester der Universität Stuttgart"], "preferred_name": "Universität Stuttgart. Akademisches Orchester", "country_associated": "gw", "variant_access_point": ["Akademisches Orchester der Universität Stuttgart"], "authorized_access_point": "Universität Stuttgart. Akademisches Orchester"} 1 +2024-09-11 09:00:29.447225 2024-09-11 09:00:29.447228 1f712f50-1616-48dc-9282-688f1c98875b {"md5": "3f0f356f3ae70b5d4456f728569f8315", "pid": "050361031", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5036103-X", "source": "GND"}], "variant_name": ["Staatsbibliothek zu Berlin - Preußischer Kulturbesitz", "Staatsbibliothek zu Berlin - PK", "Staatsbibliothek Preußischer Kulturbesitz", "Stiftung Preußischer Kulturbesitz. Staatsbibliothek zu Berlin", "Gosudarstvennaja Biblioteka", "Biblioteka Państwowa", "State Library at Berlin", "Stiftung Preußischer Kulturbesitz. Gosudarstvennaja Biblioteka", "SBB-PK", "Stiftung Preußischer Kulturbesitz. State Library at Berlin", "Gosudarstvennaja Biblioteka v Berline - Prusskoe Kulʹturnoe Nasledie", "Biblioteka Państwowa w Berlinie - Dziedzictwo Kultury Pruskiej", "State Library at Berlin - Prussian Cultural Heritage Foundation", "Stabi", "SBB", "Staatsbibliothek", "Berliner Staatsbibliothek"], "preferred_name": "Staatsbibliothek zu Berlin", "country_associated": "gw", "variant_access_point": ["Staatsbibliothek zu Berlin - Preußischer Kulturbesitz", "Staatsbibliothek zu Berlin - PK", "Staatsbibliothek Preußischer Kulturbesitz. 1992-", "Stiftung Preußischer Kulturbesitz. Staatsbibliothek zu Berlin", "Gosudarstvennaja Biblioteka. Berlin", "Biblioteka Państwowa. Berlin", "State Library at Berlin", "Stiftung Preußischer Kulturbesitz. Gosudarstvennaja Biblioteka", "SBB-PK. Abkuerzung", "Stiftung Preußischer Kulturbesitz. State Library at Berlin", "Gosudarstvennaja Biblioteka v Berline - Prusskoe Kulʹturnoe Nasledie", "Biblioteka Państwowa w Berlinie - Dziedzictwo Kultury Pruskiej", "State Library at Berlin - Prussian Cultural Heritage Foundation", "Stabi. Abkuerzung", "SBB. Abkuerzung", "Staatsbibliothek. Berlin", "Berliner Staatsbibliothek"], "date_of_establishment": "01.01.1992", "authorized_access_point": "Staatsbibliothek zu Berlin"} 1 +2024-09-11 09:00:29.511126 2024-09-11 09:00:29.51113 e85a56c0-9787-45ce-ae4d-089c217312bb {"md5": "b745c3c1647dac7e60025903ba8f4f89", "pid": "05037107X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5037107-1", "source": "GND"}], "preferred_name": "Metallgesellschaft. Zentrallaboratorium", "country_associated": "gw", "authorized_access_point": "Metallgesellschaft. Zentrallaboratorium"} 1 +2024-09-11 09:00:29.562953 2024-09-11 09:00:29.562956 50d86725-a53f-4057-991a-7550473fcf2d {"md5": "cb3bca554baced67ecf2b35867cb3dc6", "pid": "050376756", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5037675-5", "source": "GND"}], "variant_name": ["Obergymnasium in Rudolfswert", "K.K. Obergymnasium in Rudolfswert", "Kais. Kön. Obergymnasium zu Rudolfswert (Novomesto)"], "preferred_name": "Kaiserlich-Königliches Obergymnasium in Rudolfswert", "date_of_termination": "1911", "variant_access_point": ["Obergymnasium in Rudolfswert", "K.K. Obergymnasium in Rudolfswert", "Kais. Kön. Obergymnasium zu Rudolfswert (Novomesto)"], "date_of_establishment": "1878", "authorized_access_point": "Kaiserlich-Königliches Obergymnasium in Rudolfswert"} 1 +2024-09-11 09:00:29.615869 2024-09-11 09:00:29.615872 04d8a5f0-6bba-438f-9d70-631c51c1e834 {"md5": "6a47c5c9eadf198c4adf1bbf3b8c4aa6", "pid": "050379712", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5037971-9", "source": "GND"}], "variant_name": ["CAD"], "preferred_name": "Consulentschap in Algemene Dienst voor de Akkerbouw en de Groenteteelt in de Vollegrond", "country_associated": "ne", "variant_access_point": ["CAD. Abkuerzung"], "authorized_access_point": "Consulentschap in Algemene Dienst voor de Akkerbouw en de Groenteteelt in de Vollegrond. Lelystad"} 1 +2024-09-11 09:00:30.279812 2024-09-11 09:00:30.279815 2b31e29b-a902-490c-a355-d028c459b50c {"md5": "704acbe2b469ff7ddb9a852dcd05a513", "pid": "050458140", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5045814-0", "source": "GND"}], "variant_name": ["Clergé", "Poitou. Ordre du Clergé", "Ordre du Clergé"], "preferred_name": "Poitou. Clergé", "country_associated": "fr", "variant_access_point": ["Clergé. Poitou", "Poitou. Ordre du Clergé", "Ordre du Clergé. Poitou"], "authorized_access_point": "Poitou. Clergé"} 1 +2024-09-11 09:00:29.671622 2024-09-11 09:00:29.671625 0dd00875-4d7e-406e-9fdc-b68bb385cb35 {"md5": "19969f65108b370862b993790af422ae", "pid": "050410814", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5041081-7", "source": "GND"}], "variant_name": ["National Research Council. Food and Nutrition Board. Committee on Codex Specifications", "Committee on Codex Specifications", "National Research Council. Assembly of Life Sciences. Division of Biological Sciences. Food and Nutrition Board. Committee on Codex Specifications"], "preferred_name": "National Research Council. Committee on Codex Specifications", "country_associated": "xxu", "variant_access_point": ["National Research Council. USA. Food and Nutrition Board. Committee on Codex Specifications", "Committee on Codex Specifications. National Research Council, USA", "National Research Council. USA. Assembly of Life Sciences. Division of Biological Sciences. Food and Nutrition Board. Committee on Codex Specifications"], "authorized_access_point": "National Research Council. USA. Committee on Codex Specifications"} 1 +2024-09-11 09:00:29.721554 2024-09-11 09:00:29.721557 041e7ad2-5373-41e6-8237-db538c7997a1 {"md5": "eb9133298f781e0300845ada45e2b4e0", "pid": "050411071", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5041107-X", "source": "GND"}], "preferred_name": "Seminar for Librarians in the Criminal Justice System, 1", "country_associated": "at", "authorized_access_point": "Seminar for Librarians in the Criminal Justice System, 1, 1977, Canberra"} 1 +2024-09-11 09:00:29.775908 2024-09-11 09:00:29.775912 77abe59b-d8b2-4faf-b1f2-fb856c7697c8 {"md5": "fe8fd23288b7d2f4c7e501bdb74354cc", "pid": "050417444", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5041744-7", "source": "GND"}], "variant_name": ["Colloque Biomembranes on Water Transepithelial Transport: Mechanisms of Action of Antidiuretic Hormone"], "preferred_name": "Colloque Biomembranes, 3", "country_associated": "fr", "variant_access_point": ["Colloque Biomembranes on Water Transepithelial Transport: Mechanisms of Action of Antidiuretic Hormone, 1988, Paris"], "authorized_access_point": "Colloque Biomembranes, 3, 1988, Paris"} 1 +2024-09-11 09:00:29.827472 2024-09-11 09:00:29.827474 f1502842-1a95-4c17-b3d6-3f2bed4abf21 {"md5": "bd970860faed8e94067a680be7af133c", "pid": "050425773", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5042577-8", "source": "GND"}], "variant_name": ["Zadužbina Ilije M. Kolarca", "Književna Zadužbina I. M. Kolarca"], "preferred_name": "Zadužbina Ilije Milosavljevića Kolarca", "variant_access_point": ["Zadužbina Ilije M. Kolarca. Ehemalige Vorzugsbenennung SWD", "Književna Zadužbina I. M. Kolarca"], "authorized_access_point": "Zadužbina Ilije Milosavljevića Kolarca", "biographical_information": ["Serb. Kulturstiftung"]} 1 +2024-09-11 09:00:29.879786 2024-09-11 09:00:29.879791 5ec97945-b74c-4d62-957c-7e8a0750fe04 {"md5": "80c69f3aaa736692c768e6bbeca5c140", "pid": "050430726", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5043072-5", "source": "GND"}], "variant_name": ["Symposium on Solid State Ionics in Japan, 15"], "preferred_name": "Kotai-Ionikusu-Tōronkai, 15", "variant_access_point": ["Symposium on Solid State Ionics in Japan, 15, 1988, Akakura"], "authorized_access_point": "Kotai-Ionikusu-Tōronkai, 15, 1988, Akakura"} 1 +2024-09-11 09:00:29.932951 2024-09-11 09:00:29.932954 f8289429-d6ca-4eb0-b5fe-9ebe45e78829 {"md5": "6a05173c1d7b604bb18c5c2ce9d1713d", "pid": "050433504", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5043350-7", "source": "GND"}], "variant_name": ["1989 Meeting on Yeast Cell Biology"], "preferred_name": "Meeting on Yeast Cell Biology", "country_associated": "xxu", "variant_access_point": ["1989 Meeting on Yeast Cell Biology, Cold Spring Harbor, NY"], "authorized_access_point": "Meeting on Yeast Cell Biology, 1989, Cold Spring Harbor, NY"} 1 +2024-09-11 09:00:29.992989 2024-09-11 09:00:29.992993 58a44018-7e07-43d3-b1f6-bd764a9562ec {"md5": "300ffa225eab8eef5275bb08009af889", "pid": "050436708", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5043670-3", "source": "GND"}], "variant_name": ["Vision"], "preferred_name": "Vision", "country_associated": "xxu", "variant_access_point": ["Vision, 1989, Chicago, IL"], "authorized_access_point": "Vision, 1989, Chicago, Ill."} 1 +2024-09-11 09:00:30.047486 2024-09-11 09:00:30.047489 83856269-de79-4990-a3f2-b3f67d1bcf86 {"md5": "435b89b09a1b4cee179997810a2c8285", "pid": "05043795X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5043795-1", "source": "GND"}], "preferred_name": "Oak Woods Cemetery", "country_associated": "xxu", "authorized_access_point": "Oak Woods Cemetery. Chicago, Ill."} 1 +2024-09-11 09:00:30.100742 2024-09-11 09:00:30.100745 4560c317-1d37-4fd7-9ecf-97ef5cc1d52c {"md5": "7edf761979704a94689c1a21e1351ca9", "pid": "050439464", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5043946-7", "source": "GND"}], "preferred_name": "International Turner Syndrome Symposium, 1", "country_associated": "xxu", "authorized_access_point": "International Turner Syndrome Symposium, 1, 1988, San Francisco, Calif."} 1 +2024-09-11 09:00:30.156849 2024-09-11 09:00:30.156852 068f3694-7068-4501-a20f-fd771f844b2c {"md5": "240733e690159ae0acfbbafd4d6b6d60", "pid": "050445197", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5044519-4", "source": "GND"}], "preferred_name": "Workshop on Languages for Automation", "country_associated": "sp", "authorized_access_point": "Workshop on Languages for Automation, 1985, Palma de Mallorca"} 1 +2024-09-11 09:00:30.212032 2024-09-11 09:00:30.212036 55c94f25-6d19-49a9-99d7-53e3fd54ed4f {"md5": "91a2ad135448661ebefa43943725fe51", "pid": "050447904", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5044790-7", "source": "GND"}], "variant_name": ["Noise and Vibration Conference and Exposition"], "preferred_name": "Noise and Vibration Conference", "country_associated": "xxu", "variant_access_point": ["Noise and Vibration Conference and Exposition, 1989, Traverse City, Mich."], "authorized_access_point": "Noise and Vibration Conference, 1989, Traverse City, Mich."} 1 +2024-09-11 09:00:31.608668 2024-09-11 09:00:31.608672 4d498cec-d9b7-4316-930e-ccbae4da5b56 {"md5": "4dd49e62b59619c79d3711920eefd16c", "pid": "050726064", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5072606-7", "source": "GND"}], "preferred_name": "Jornadas Argentinas de Micología", "authorized_access_point": "Jornadas Argentinas de Micología"} 1 +2024-09-11 09:00:30.338213 2024-09-11 09:00:30.338217 a969f5e9-ac12-4519-b5db-b3fb1dd7265e {"md5": "f34e7df6ef2a7beab04328fa53f657d8", "pid": "050465546", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5046554-5", "source": "GND"}], "variant_name": ["Workshop on Nonlinear Dynamics, 4"], "preferred_name": "Florida Workshop on Nonlinear Dynamics, 4", "country_associated": "xxu", "variant_access_point": ["Workshop on Nonlinear Dynamics, 4, 1989, Gainesville, Fla."], "authorized_access_point": "Florida Workshop on Nonlinear Dynamics, 4, 1989, Gainesville, Fla."} 1 +2024-09-11 09:00:30.400845 2024-09-11 09:00:30.400848 c4385e6c-52f2-48a9-b777-2ba40ac703a2 {"md5": "5f314cc43aa445b0da6601ba993be324", "pid": "05048589X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5048589-1", "source": "GND"}], "variant_name": ["Ensemble Wien Berlin", "Ensemble WienBerlin", "EWB"], "preferred_name": "Ensemble Wien-Berlin", "country_associated": "gw", "variant_access_point": ["Ensemble Wien Berlin", "Ensemble WienBerlin", "EWB. Abkuerzung"], "date_of_establishment": "1983", "authorized_access_point": "Ensemble Wien-Berlin", "biographical_information": ["Bläserquintett", "Bläserquintett, Solobläser bei den Wiener und Berliner Philharmonikern"]} 1 +2024-09-11 09:00:30.453526 2024-09-11 09:00:30.453529 8acbec23-d03d-4f5a-a8a5-75dcd37113af {"md5": "3cb2dd9ae0741c2497e18bcdff5bcc78", "pid": "050494570", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5049457-0", "source": "GND"}], "variant_name": ["Non-Gazetted Officer's Central Union"], "preferred_name": "Telengana Non-Gazetted Officers' Union", "country_associated": "ii", "variant_access_point": ["Non-Gazetted Officer's Central Union. Hyderabad"], "authorized_access_point": "Telengana Non-Gazetted Officers' Union. Hyderabad"} 1 +2024-09-11 09:00:30.517572 2024-09-11 09:00:30.517575 5e104c1e-5183-4376-b1e6-d66027c10f53 {"md5": "ea9df094de70f9f81d47822e3578dc7a", "pid": "050495747", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5049574-4", "source": "GND"}], "variant_name": ["IEEE International Symposium on Multiple Valued Logic, 20", "International Symposium on Multiple-Valued Logic, 20", "IEEE International Symposium on Multiple-Valued Logic, 20"], "preferred_name": "International Symposium on Multiple Valued Logic, 20", "country_associated": "xxu", "variant_access_point": ["IEEE International Symposium on Multiple Valued Logic, 20, 1990, Charlotte, NC", "International Symposium on Multiple-Valued Logic, 20, 1990, Charlotte, NC", "IEEE International Symposium on Multiple-Valued Logic, 20, 1990, Charlotte, NC"], "authorized_access_point": "International Symposium on Multiple Valued Logic, 20, 1990, Charlotte, NC"} 1 +2024-09-11 09:00:30.57223 2024-09-11 09:00:30.572233 41233737-c905-4251-97a7-516db8f577a1 {"md5": "ff4c49db25cc3971c8479a5b64f1cfcf", "pid": "050502298", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5050229-3", "source": "GND"}], "variant_name": ["Hermannsburger Deutsche Ev.-Luth. Synode Süd-Afrikas"], "preferred_name": "Hermannsburger Deutsch-Evangelisch-Lutherische Synode in Süd-Afrika", "country_associated": "sa", "variant_access_point": ["Hermannsburger Deutsche Ev.-Luth. Synode Süd-Afrikas"], "authorized_access_point": "Hermannsburger Deutsch-Evangelisch-Lutherische Synode in Süd-Afrika"} 1 +2024-09-11 09:00:30.636975 2024-09-11 09:00:30.636977 4760e8f0-7f71-4cf0-a04e-a22da10cc0ee {"md5": "43a301153b021f203d1909683333c3ef", "pid": "050504274", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5050427-7", "source": "GND"}], "variant_name": ["Universidade do Porto. Faculdade de Letras. Instituto de Cultura Portuguesa", "Universidade do Porto. Instituto de Cultura Portuguesa", "Instituto de Cultura Portuguesa", "Universidade. Instituto de Cultura Portuguesa", "Universidade. Faculdade de Letras. Instituto de Cultura Portuguesa"], "preferred_name": "Instituto de Cultura Portuguesa", "country_associated": "po", "variant_access_point": ["Universidade do Porto. Faculdade de Letras. Instituto de Cultura Portuguesa", "Universidade do Porto. Instituto de Cultura Portuguesa", "Instituto de Cultura Portuguesa. Porto", "Universidade. Porto. Instituto de Cultura Portuguesa", "Universidade. Porto. Faculdade de Letras. Instituto de Cultura Portuguesa"], "authorized_access_point": "Instituto de Cultura Portuguesa. Porto, Portugal"} 1 +2024-09-11 09:00:30.688704 2024-09-11 09:00:30.688708 0754dd79-b43a-416f-a4c0-7df2c4cfe64c {"md5": "c324a32556347434ed5ee93589a74f80", "pid": "050516736", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5051673-5", "source": "GND"}], "variant_name": ["Arnold Rikli Symposium, 1", "Rikli Symposium, 1"], "preferred_name": "International Arnold Rikli Symposium, 1", "country_associated": "sz", "variant_access_point": ["Arnold Rikli Symposium, 1, 1989, Riehen", "Rikli Symposium, 1, 1989, Riehen"], "authorized_access_point": "International Arnold Rikli Symposium, 1, 1989, Riehen"} 1 +2024-09-11 09:00:30.745276 2024-09-11 09:00:30.745279 87546f6c-3af3-4486-8c28-546620a05a86 {"md5": "3bfa0ecfb69dbf361046813627a765f8", "pid": "050519514", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5051951-7", "source": "GND"}], "variant_name": ["FFN", "FFN", "Fondation Française de la Nutrition"], "preferred_name": "Fondation Française pour la Nutrition", "country_associated": "fr", "variant_access_point": ["FFN. Abkuerzung", "FFN. Fondation Française pour la Nutrition", "Fondation Française de la Nutrition"], "authorized_access_point": "Fondation Française pour la Nutrition"} 1 +2024-09-11 09:00:30.818517 2024-09-11 09:00:30.81852 1e7599e2-192a-44b4-92c2-1f558ff41e4d {"md5": "075bda8b7ac8f7a71494d1960b24ec5f", "pid": "05052920X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5052920-1", "source": "GND"}], "variant_name": ["Karnevalsgesellschaft Blumenkörbchen"], "preferred_name": "Carnevalsgesellschaft Blumenkörbchen", "variant_access_point": ["Karnevalsgesellschaft Blumenkörbchen. Köln"], "authorized_access_point": "Carnevalsgesellschaft Blumenkörbchen. Köln"} 1 +2024-09-11 09:00:30.87184 2024-09-11 09:00:30.871842 0cadd826-16bb-4930-bf2e-75f36bea36c6 {"md5": "d27a5b8d468597471c8b410b8728b10b", "pid": "050539876", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5053987-5", "source": "GND"}], "preferred_name": "Saar-Union, Lebensversicherungs-Aktiengesellschaft", "country_associated": "gw", "authorized_access_point": "Saar-Union, Lebensversicherungs-Aktiengesellschaft. Saarbrücken"} 1 +2024-09-11 09:00:30.925335 2024-09-11 09:00:30.925337 ee06851a-4742-40d0-9c27-5be5a995579b {"md5": "75aedc60f852f70668a30a0e88e9a6b8", "pid": "050544942", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5054494-9", "source": "GND"}], "preferred_name": "Društvo na Bibliotekarite na SR Makedonija", "authorized_access_point": "Društvo na Bibliotekarite na SR Makedonija"} 1 +2024-09-11 09:00:30.983319 2024-09-11 09:00:30.983322 14ffcf10-b202-46a9-ab96-fa480076ba82 {"md5": "13fac543e7dd08baf24225a8bdbb8f0b", "pid": "050545183", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5054518-8", "source": "GND"}], "variant_name": ["Tschechische Föderation aller Gewerkschaften"], "preferred_name": "České Federace Všech Odbor°u", "variant_access_point": ["Tschechische Föderation aller Gewerkschaften"], "authorized_access_point": "České Federace Všech Odbor°u"} 1 +2024-09-11 09:00:31.039497 2024-09-11 09:00:31.0395 2195bbff-cd59-472e-9ccb-8f4f4e5c9897 {"md5": "1a788dec2c527af920fde9019e554293", "pid": "050551205", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5055120-6", "source": "GND"}], "preferred_name": "International Symposium on Mathematical Physics", "authorized_access_point": "International Symposium on Mathematical Physics"} 1 +2024-09-11 09:00:31.10318 2024-09-11 09:00:31.103183 4fce4173-e274-45c0-b26f-0788a1664cb3 {"md5": "37db8d2aa88dcb011dc3a4b7567f1f22", "pid": "050577395", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5057739-6", "source": "GND"}], "variant_name": ["Internationales Seminar Junger Kunsthistoriker, 2", "Séminaire International de Jeunes Historiens de l'Art, 2", "Congrès des Jeunes Historiens de l'Art, 2"], "preferred_name": "Congrès Sculpture", "country_associated": "fr", "variant_access_point": ["Internationales Seminar Junger Kunsthistoriker, 2, 1989, Avignon", "Séminaire International de Jeunes Historiens de l'Art, 2, 1989, Avignon", "Congrès des Jeunes Historiens de l'Art, 2, 1989, Avignon"], "authorized_access_point": "Congrès Sculpture, 1989, Avignon"} 1 +2024-09-11 09:00:31.157759 2024-09-11 09:00:31.157762 547fc20e-1a50-49b6-9b85-f5187a9e05c0 {"md5": "34e22bc42dfff5db4575e8ee4624a519", "pid": "050588907", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5058890-4", "source": "GND"}], "preferred_name": "Nordisk Symposium om Nordisk Språkvitskap og Morsmålspedagogikk", "authorized_access_point": "Nordisk Symposium om Nordisk Språkvitskap og Morsmålspedagogikk"} 1 +2024-09-11 09:00:31.221168 2024-09-11 09:00:31.221171 511f97c1-9b40-4219-bc1c-666984857745 {"md5": "facebe7f087c9e5777d1d308116d6682", "pid": "050620746", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5062074-5", "source": "GND"}], "preferred_name": "European Workshop on Methane Activation, 2", "country_associated": "ne", "authorized_access_point": "European Workshop on Methane Activation, 2, 1989, Enschede"} 1 +2024-09-11 09:00:31.276397 2024-09-11 09:00:31.276401 b2493eaf-4b26-43a3-be1c-68519d9d8650 {"md5": "9d4d5452409302e12523e94495dec7c3", "pid": "050629069", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5062906-2", "source": "GND"}], "variant_name": ["Biennale von Venedig, 21.", "Biennale Internazionale d'Arte, 21."], "preferred_name": "Biennale di Venezia, 21.", "country_associated": "it", "variant_access_point": ["Biennale von Venedig, 21., 1938, Venedig", "Biennale Internazionale d'Arte, 21., 1938, Venedig"], "authorized_access_point": "Biennale di Venezia, 21., 1938, Venedig"} 1 +2024-09-11 09:00:31.338995 2024-09-11 09:00:31.338998 9a613055-c5a0-4cb2-b0e1-871a1919475c {"md5": "957eebeb3ff531fdd16e3046174ce2b7", "pid": "05063223X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5063223-1", "source": "GND"}], "preferred_name": "Städtische Galerie", "country_associated": "gw", "authorized_access_point": "Städtische Galerie. Dreieich"} 1 +2024-09-11 09:00:31.391839 2024-09-11 09:00:31.391841 c77b3705-3139-400f-ae93-935ef9821f1c {"md5": "6e7895e290972a2cb66d773a1baeab6e", "pid": "050639412", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5063941-9", "source": "GND"}], "variant_name": ["Männergesangverein Deutsche Einheit", "Gesangverein Deutsche Einheit"], "preferred_name": "Männergesangverein Deutsche Einheit 1906", "country_associated": "gw", "variant_access_point": ["Männergesangverein Deutsche Einheit. Rheinhausen, Bruchsal", "Gesangverein Deutsche Einheit. Rheinhausen, Bruchsal"], "authorized_access_point": "Männergesangverein Deutsche Einheit 1906. Rheinhausen, Bruchsal"} 1 +2024-09-11 09:00:31.447103 2024-09-11 09:00:31.447106 fa57f8eb-5c0f-4fe1-8523-2581ac76e6a2 {"md5": "27604f419c57142e6ea3124480bd8abd", "pid": "050710885", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5071088-6", "source": "GND"}], "variant_name": ["National Commission on Agriculture", "Commission on Agriculture", "Pakistan. Ministry of Food and Agriculture. National Commission on Agriculture"], "preferred_name": "Pakistan. National Commission on Agriculture", "variant_access_point": ["National Commission on Agriculture. Pakistan", "Commission on Agriculture. Pakistan", "Pakistan. Ministry of Food and Agriculture. National Commission on Agriculture"], "authorized_access_point": "Pakistan. National Commission on Agriculture"} 1 +2024-09-11 09:00:31.499992 2024-09-11 09:00:31.499995 9bdc4ed1-8fda-4fe5-8c04-34745122f58d {"md5": "88555e726f30ad6a548208a787256f33", "pid": "050717510", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5071751-0", "source": "GND"}], "variant_name": ["Büro für Frauenfragen", "Büro für Frauenfragen"], "preferred_name": "Ludwigsburg. Büro für Frauenfragen", "country_associated": "gw", "variant_access_point": ["Büro für Frauenfragen. Ludwigsburg", "Büro für Frauenfragen. Ehemalige Vorzugsbenennung SWD"], "authorized_access_point": "Ludwigsburg. Büro für Frauenfragen"} 1 +2024-09-11 09:00:31.552546 2024-09-11 09:00:31.552549 ae2ba9e7-7093-4ca9-84dc-bd96c7306c02 {"md5": "edaff53a93535b25acdf458ff67e2a07", "pid": "050721607", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5072160-4", "source": "GND"}], "preferred_name": "Tagung Evangelischer Juristen, 7", "authorized_access_point": "Tagung Evangelischer Juristen, 7, 1958, Tutzing"} 1 +2024-09-11 09:00:31.67127 2024-09-11 09:00:31.671272 4f3dd6fb-0b47-4d03-84b1-9e15ae94d0fb {"md5": "71c80e81b4807747a8efcbdf7317136f", "pid": "050738151", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5073815-X", "source": "GND"}], "variant_name": ["Kulturamt"], "preferred_name": "Landkreis Löbau. Kulturamt", "country_associated": "gw", "variant_access_point": ["Kulturamt. Landkreis Löbau"], "authorized_access_point": "Landkreis Löbau. Kulturamt"} 1 +2024-09-11 09:00:31.760396 2024-09-11 09:00:31.7604 0be4e2c3-46e8-4291-8f91-cd5450e71ed6 {"md5": "6747877462c4e436729443c84733a10d", "pid": "050739875", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5073987-6", "source": "GND"}], "variant_name": ["Overseas Labour Consultative Committee"], "preferred_name": "Trades Union Congress. Overseas Labour Consultative Committee", "country_associated": "xxk", "variant_access_point": ["Overseas Labour Consultative Committee"], "authorized_access_point": "Trades Union Congress. Overseas Labour Consultative Committee"} 1 +2024-09-11 09:00:31.813887 2024-09-11 09:00:31.81389 6a42d16b-8dd4-4ea0-8f1e-ffc96c955389 {"md5": "6d155829991a53c3e0321a760b44e03c", "pid": "050753762", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5075376-9", "source": "GND"}], "preferred_name": "al- Mu'tamar al-ʿArabī li't-Tadrīb al-Idārī", "authorized_access_point": "al- Mu'tamar al-ʿArabī li't-Tadrīb al-Idārī, 1976, Tūnis"} 1 +2024-09-11 09:00:31.878812 2024-09-11 09:00:31.878816 2febf70e-e0a3-4e74-b9eb-e1cf5a1d4224 {"md5": "38f0f222ffd00b01e9fbc766f6f98f7c", "pid": "050778250", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5077825-0", "source": "GND"}], "variant_name": ["Congreso sobre \\"La Casa Urbana Hispanorromana\\"", "Casa Urbana Hispanorromana"], "preferred_name": "Congreso sobre La Casa Urbana Hispanorromana", "country_associated": "sp", "variant_access_point": ["Congreso sobre \\"La Casa Urbana Hispanorromana\\", 1988, Zaragoza", "Casa Urbana Hispanorromana, 1988, Zaragoza"], "authorized_access_point": "Congreso sobre La Casa Urbana Hispanorromana, 1988, Zaragoza"} 1 +2024-09-11 09:00:31.931104 2024-09-11 09:00:31.931108 fae9882a-e638-43cd-be53-e102d4048ff9 {"md5": "586628d9562f302cbb9e3a5d1037c1d6", "pid": "050780328", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5078032-3", "source": "GND"}], "variant_name": ["Symposium zur Präventiven Gesundheitsförderung, 2"], "preferred_name": "Karlsruher Symposium zur Präventiven Gesundheitsförderung, 2", "variant_access_point": ["Symposium zur Präventiven Gesundheitsförderung, 2, 1991, Karlsruhe"], "authorized_access_point": "Karlsruher Symposium zur Präventiven Gesundheitsförderung, 2, 1991"} 1 +2024-09-11 09:00:31.980895 2024-09-11 09:00:31.980899 be915af7-76ee-4de5-b509-1a93dfc769e1 {"md5": "6af75c43b11f828f2cadffaa66146dea", "pid": "050784005", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5078400-6", "source": "GND"}], "variant_name": ["Byhistorisk Samling og Arkiv i Høje-Tåstrup Kommune"], "preferred_name": "Byhistorisk Samling og Arkiv i Høje-Taastrup Kommune", "country_associated": "dk", "variant_access_point": ["Byhistorisk Samling og Arkiv i Høje-Tåstrup Kommune"], "authorized_access_point": "Byhistorisk Samling og Arkiv i Høje-Taastrup Kommune"} 1 +2024-09-11 09:00:32.034279 2024-09-11 09:00:32.034282 90d06eb8-ee11-46f2-aee1-982193a584c1 {"md5": "ddeb516e6de9c7c4a227acf94c90df89", "pid": "050786954", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5078695-7", "source": "GND"}], "variant_name": ["Deutscher Turn- und Sportbund. Bezirk Dresden", "Deutscher Turn- und Sportbund. Bezirksvorstand Dresden"], "preferred_name": "Deutscher Turn- und Sportbund. Bezirksorganisation Dresden", "variant_access_point": ["Deutscher Turn- und Sportbund. Bezirk Dresden", "Deutscher Turn- und Sportbund. Bezirksvorstand Dresden"], "authorized_access_point": "Deutscher Turn- und Sportbund. Bezirksorganisation Dresden"} 1 +2024-09-11 09:00:32.085754 2024-09-11 09:00:32.085757 d3592f97-9b02-4ae8-b869-e22ea7f9b427 {"md5": "74258d2be244e229f60e2721a87b40f8", "pid": "050788434", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5078843-7", "source": "GND"}], "variant_name": ["FFI"], "preferred_name": "Forstliches Forschungsinstitut", "country_associated": "gw", "date_of_termination": "30.06.1992", "variant_access_point": ["FFI. Abkuerzung"], "date_of_establishment": "01.01.1992", "authorized_access_point": "Forstliches Forschungsinstitut. Eberswalde-Finow"} 1 +2024-09-11 09:00:32.135815 2024-09-11 09:00:32.135818 969a2af3-c797-48b9-8548-ebcccd476bb6 {"md5": "db54b5a3ed330405b968e90b6a64eaa9", "pid": "050805800", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5080580-0", "source": "GND"}], "preferred_name": "Wasser- und Bodenverband der Lüchower Landgraben-Niederung", "country_associated": "gw", "date_of_establishment": "1915", "authorized_access_point": "Wasser- und Bodenverband der Lüchower Landgraben-Niederung", "biographical_information": ["Sitz: Lüchow", "Verband zur Wasserregulierung"]} 1 +2024-09-11 09:00:32.187224 2024-09-11 09:00:32.187226 594a8df0-a2fd-43ff-b476-d1a68d499ce6 {"md5": "4eeafbe6953adcb1fde91cba7a201930", "pid": "050846043", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5084604-8", "source": "GND"}], "variant_name": ["Deutsche Kolonie"], "preferred_name": "Deutsche Colonie", "variant_access_point": ["Deutsche Kolonie. Buenos Aires"], "authorized_access_point": "Deutsche Colonie. Buenos Aires"} 1 +2024-09-11 09:00:32.242468 2024-09-11 09:00:32.242472 8fecd586-5ef9-445f-80b6-876ae56efe4c {"md5": "99bc9df6fc3b166a372de4544c642de1", "pid": "050876902", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5087690-9", "source": "GND"}], "variant_name": ["Der Beauftragte für Hauttuberkulose", "Schleswig-Holstein. Beauftragter für Hauttuberkulose", "Beauftragter für Hauttuberkulose"], "preferred_name": "Schleswig-Holstein. Der Beauftragte für Hauttuberkulose", "country_associated": "gw", "variant_access_point": ["Der Beauftragte für Hauttuberkulose. Schleswig-Holstein", "Schleswig-Holstein. Beauftragter für Hauttuberkulose", "Beauftragter für Hauttuberkulose. Schleswig-Holstein"], "authorized_access_point": "Schleswig-Holstein. Der Beauftragte für Hauttuberkulose"} 1 +2024-09-11 09:00:32.301217 2024-09-11 09:00:32.30122 9d3f31f1-7b43-4f0d-9396-4868c5d6577e {"md5": "8fa6e60a11b8dc1fe0a7a01e6e45870b", "pid": "050880667", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5088066-4", "source": "GND"}], "variant_name": ["Deciduous Tree Fruit Disease Workers"], "preferred_name": "United States Deciduous Tree Fruit Disease Workers", "country_associated": "xxu", "variant_access_point": ["Deciduous Tree Fruit Disease Workers. USA"], "authorized_access_point": "United States Deciduous Tree Fruit Disease Workers"} 1 +2024-09-11 09:00:32.352114 2024-09-11 09:00:32.352118 80647e66-9204-4a89-b264-8640807bfda8 {"md5": "927068535bbc7403a09dbe2d0773c4d9", "pid": "050881922", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5088192-9", "source": "GND"}], "variant_name": ["Aviation Space Education Association. Aerospace Ambassadors"], "preferred_name": "Aerospace Ambassadors", "country_associated": "xxu", "variant_access_point": ["Aviation Space Education Association. Aerospace Ambassadors"], "authorized_access_point": "Aerospace Ambassadors"} 1 +2024-09-11 09:00:32.405661 2024-09-11 09:00:32.405664 065a44bb-6e56-4ecd-aa8a-32636af32c77 {"md5": "395c086c11652e309889a84106bdff21", "pid": "050895877", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5089587-4", "source": "GND"}], "variant_name": ["Gottschalk, Verlagsbuchhandlung und Antiquariat"], "preferred_name": "Gisela Gottschalk, Verlagsbuchhandlung und Antiquariat", "country_associated": "gw", "variant_access_point": ["Gottschalk, Verlagsbuchhandlung und Antiquariat. Estenfeld"], "authorized_access_point": "Gisela Gottschalk, Verlagsbuchhandlung und Antiquariat. Estenfeld"} 1 +2024-09-11 09:00:32.467593 2024-09-11 09:00:32.467597 272ebb0c-5e36-42e2-ae36-5e8de6dc8d51 {"md5": "3a82f6854ff29e1645af2a6b42183314", "pid": "050917633", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5091763-8", "source": "GND"}], "preferred_name": "Gesamtdeutscher Kongreß für Schlafmedizin, 1", "country_associated": "gw", "authorized_access_point": "Gesamtdeutscher Kongreß für Schlafmedizin, 1, 1992, Wildungen"} 1 +2024-09-11 09:00:32.518088 2024-09-11 09:00:32.518091 129a24ce-59a9-4172-9320-b1096adedad5 {"md5": "c743ba50cdb79c3e3dd66fc1ee8ebaca", "pid": "050917889", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5091788-2", "source": "GND"}], "variant_name": ["Mannheimer Zentrum für Europäische Sozialforschung. Europadatenarchiv", "Eurodata", "Mannheimer Zentrum für Europäische Sozialforschung. Eurodata"], "preferred_name": "Europadatenarchiv", "country_associated": "gw", "variant_access_point": ["Mannheimer Zentrum für Europäische Sozialforschung. Europadatenarchiv", "Eurodata. Mannheim, 1989,Nov. - 1992,Dez.", "Mannheimer Zentrum für Europäische Sozialforschung. Eurodata"], "authorized_access_point": "Europadatenarchiv. Mannheim"} 1 +2024-09-11 09:00:32.569061 2024-09-11 09:00:32.569063 3eae6d3a-ca33-472b-8f16-facf95022e2b {"md5": "df6da637c3c9656e2b283f26cc5b74fe", "pid": "050925520", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5092552-0", "source": "GND"}], "variant_name": ["Savetovanje o Aerosolima"], "preferred_name": "Jugoslovensko Savetovanje o Aerosolima", "variant_access_point": ["Savetovanje o Aerosolima, Jugoslawien"], "authorized_access_point": "Jugoslovensko Savetovanje o Aerosolima"} 1 +2024-09-11 09:00:32.623082 2024-09-11 09:00:32.623085 08f57d38-16d7-4c48-a244-a42977286ca4 {"md5": "ff510f0e212534816141a7ab776ab5c9", "pid": "050927078", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5092707-3", "source": "GND"}], "variant_name": ["Königliches Realgymnasium (in Umwandlung zum Reform-Realgymnasium) in Tilsit"], "preferred_name": "Königliches Realgymnasium in Tilsit", "variant_access_point": ["Königliches Realgymnasium (in Umwandlung zum Reform-Realgymnasium) in Tilsit"], "authorized_access_point": "Königliches Realgymnasium in Tilsit"} 1 +2024-09-11 09:00:32.675924 2024-09-11 09:00:32.675928 f4b4eebd-a01e-4e79-a65a-86cec3c2ae1f {"md5": "292df18534938f70a2d771c821e924ff", "pid": "050943618", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5094361-3", "source": "GND"}], "variant_name": ["University of Minnesota. Mayo Graduate School of Medicine"], "preferred_name": "Mayo Graduate School of Medicine", "country_associated": "xxu", "variant_access_point": ["University of Minnesota. Mayo Graduate School of Medicine"], "date_of_establishment": "1964", "authorized_access_point": "Mayo Graduate School of Medicine"} 1 +2024-09-11 09:00:32.728684 2024-09-11 09:00:32.728688 870e3061-36e4-4ee1-999a-1f387d807a95 {"md5": "385013adfca4dee1b5596e3b69c75a55", "pid": "051115913", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16117351-2", "source": "GND"}], "preferred_name": "Abbaye Cistercienne", "authorized_access_point": "Abbaye Cistercienne. Saint-Benoît-en-Woëvre"} 1 +2024-09-11 09:00:32.782994 2024-09-11 09:00:32.782997 efed352e-549a-41a8-9ae2-e4497db63678 {"md5": "6db08a66a2a58bb972fcfa283800463a", "pid": "051171538", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16122067-8", "source": "GND"}], "preferred_name": "Commonwealth Law Conference, 5", "country_associated": "xxk", "authorized_access_point": "Commonwealth Law Conference, 5, 1977, Edinburgh"} 1 +2024-09-11 09:00:32.846645 2024-09-11 09:00:32.84665 10e57e8f-e969-4860-93c2-4dc5795b4ae8 {"md5": "123182b2b30f51b6aa399fc8c731ecde", "pid": "051251930", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16128971-X", "source": "GND"}], "preferred_name": "Ausstellung über den U-Boot-Bunker Valentin in Bremen-Farbe", "authorized_access_point": "Ausstellung über den U-Boot-Bunker Valentin in Bremen-Farbe, 1992"} 1 +2024-09-11 09:00:32.912168 2024-09-11 09:00:32.912172 93efea3d-09d2-49c9-924e-9de9b74bedab {"md5": "7e407965157a0f0c3fea97985573462b", "pid": "051253801", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16129109-0", "source": "GND"}], "variant_name": ["Fundación Fondo Editoral Acta Científica", "FUNDAVAC"], "preferred_name": "Fundación Fondo Editoral Acta Científica Venezolana", "country_associated": "ve", "variant_access_point": ["Fundación Fondo Editoral Acta Científica. Venezuela", "FUNDAVAC"], "authorized_access_point": "Fundación Fondo Editoral Acta Científica Venezolana"} 1 +2024-09-11 09:00:32.964529 2024-09-11 09:00:32.964533 7c3bf69a-f5b8-42e1-b5f2-ed1d89a595dc {"md5": "4c11975c19d7bbbe67a456e24e587b08", "pid": "051264129", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16129997-0", "source": "GND"}], "variant_name": ["Bibliothek des Geistlichen Ministeriums zu Greifswald", "Dombibliothek St. Nikolai", "Dombibliothek Sankt Nikolai"], "preferred_name": "Bibliothek des Geistlichen Ministeriums", "variant_access_point": ["Bibliothek des Geistlichen Ministeriums zu Greifswald", "Dombibliothek St. Nikolai. Greifswald", "Dombibliothek Sankt Nikolai. Greifswald"], "authorized_access_point": "Bibliothek des Geistlichen Ministeriums"} 1 +2024-09-11 09:00:33.018059 2024-09-11 09:00:33.018062 252f66a1-866b-47bd-8451-38274d647109 {"md5": "1f170f94cf5e754a7aaaed7194eb03cc", "pid": "051266717", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16130216-6", "source": "GND"}], "variant_name": ["Volunteer Delegates of Ireland"], "preferred_name": "Volunteers of Ireland", "variant_access_point": ["Volunteer Delegates of Ireland"], "authorized_access_point": "Volunteers of Ireland"} 1 +2024-09-11 09:00:33.069551 2024-09-11 09:00:33.069553 e8384838-211b-4a55-94f9-4895726976ee {"md5": "f1cf52098c9556e33d2ba3750f21f600", "pid": "051367386", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16138650-7", "source": "GND"}], "preferred_name": "Internationale Konferenz der Mitteleuropäischen Universitätsarchive", "country_associated": "hu", "authorized_access_point": "Internationale Konferenz der Mitteleuropäischen Universitätsarchive, 1999, Budapest"} 1 +2024-09-11 09:00:33.137997 2024-09-11 09:00:33.138002 11453f0b-4794-46bf-9743-62337d9fd125 {"md5": "c3848c3f9974d1adcff3103c9675de74", "pid": "051381079", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16139773-6", "source": "GND"}], "preferred_name": "World Tourism Organization. Sustainable Development of Tourism Section", "authorized_access_point": "World Tourism Organization. Sustainable Development of Tourism Section"} 1 +2024-09-11 09:00:33.215924 2024-09-11 09:00:33.215927 111d43c8-cca7-4220-b3dd-f2ac903f73ca {"md5": "8adfdfb5b62fc2967f13615716a03e82", "pid": "051518449", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16150720-7", "source": "GND"}], "preferred_name": "DeWitt Clinton High School", "authorized_access_point": "DeWitt Clinton High School. New York"} 1 +2024-09-11 09:00:33.269348 2024-09-11 09:00:33.26935 5b193304-6bf9-4d85-95e4-c010e191077f {"md5": "2419f2e0c21a9b27e5822ef78788604d", "pid": "055005284", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16183938-1", "source": "GND"}], "variant_name": ["AKV Römernarren von 1993", "Karnevalsverein Anreppen von 1993", "Karnevalsverein Römernarren von 1993"], "preferred_name": "Anreppener Karnevalsverein Römernarren von 1993", "country_associated": "gw", "variant_access_point": ["AKV Römernarren von 1993", "Karnevalsverein Anreppen von 1993", "Karnevalsverein Römernarren von 1993. Delbrück-Anreppen"], "authorized_access_point": "Anreppener Karnevalsverein Römernarren von 1993"} 1 +2024-09-11 09:00:33.318491 2024-09-11 09:00:33.318495 ba59a85b-2c1a-4dd4-aa59-857482707772 {"md5": "cd98c4fdd803ad519fa10815b5a78750", "pid": "055085849", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16191570-X", "source": "GND"}], "preferred_name": "Messer-Griesheim-GmbH. Abteilung Sondergase", "authorized_access_point": "Messer-Griesheim-GmbH. Abteilung Sondergase"} 1 +2024-09-11 09:00:33.370791 2024-09-11 09:00:33.370794 b3bf700a-6e59-48b0-b1aa-0d09cc08b641 {"md5": "a724f57c8dc3e2fb03cc6f7c96645a5e", "pid": "055114938", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16194327-5", "source": "GND"}], "variant_name": ["RIW"], "preferred_name": "Research Instituut voor de Woningbouw", "country_associated": "ne", "variant_access_point": ["RIW"], "authorized_access_point": "Research Instituut voor de Woningbouw. Delft"} 1 +2024-09-11 09:00:33.423578 2024-09-11 09:00:33.423581 080324f2-0dd7-4957-a189-4475273ca631 {"md5": "63c9942a2617968ca8fd74fe34d1546a", "pid": "055142524", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16196978-1", "source": "GND"}], "variant_name": ["Van Deventer Symposium, 2"], "preferred_name": "Deventer Symposium, 2", "country_associated": "ne", "variant_access_point": ["Van Deventer Symposium, 2, 1988, Nimwegen"], "authorized_access_point": "Deventer Symposium, 2, 1988, Nimwegen"} 1 +2024-09-11 09:00:33.477412 2024-09-11 09:00:33.477417 f871a81f-1fda-477a-bf76-4feb1d748cd5 {"md5": "697037553ba8f69eb4d04b7017976f51", "pid": "055146201", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16197332-2", "source": "GND"}], "preferred_name": "International Symposium on ESR Dosimetry and Applications, 2", "authorized_access_point": "International Symposium on ESR Dosimetry and Applications, 2, 1988, München"} 1 +2024-09-11 09:00:33.540533 2024-09-11 09:00:33.540535 1b29fe17-40a9-4b93-ae6f-92cdfe292265 {"md5": "bac85b7768d831d0d8ab5f5af50e3bb0", "pid": "055154050", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16198080-6", "source": "GND"}], "variant_name": ["Symposium on Comparative Environmental Mutagenesis"], "preferred_name": "National Symposium on Comparative Environmental Mutagenesis", "country_associated": "ii", "variant_access_point": ["Symposium on Comparative Environmental Mutagenesis, 1987, Amritsar"], "authorized_access_point": "National Symposium on Comparative Environmental Mutagenesis, 1987, Amritsar"} 1 +2024-09-11 09:00:33.594274 2024-09-11 09:00:33.594277 12bc2e46-900a-4efc-98e6-6737d89ce8a3 {"md5": "292ced95efbd034aaef0b4b1e4eafe8f", "pid": "055201873", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16202635-3", "source": "GND"}], "variant_name": ["Joint British-Spanish-Portuguese Rheology Meeting, 1"], "preferred_name": "Joint British Spanish Portuguese Rheology Meeting, 1", "country_associated": "po", "variant_access_point": ["Joint British-Spanish-Portuguese Rheology Meeting, 1, 1989, Alcabideche"], "authorized_access_point": "Joint British Spanish Portuguese Rheology Meeting, 1, 1989, Alcabideche"} 1 +2024-09-11 09:00:33.648956 2024-09-11 09:00:33.64896 189ef4a2-5667-4762-bb9d-c3f02223906a {"md5": "e36495d144d6f1792673d69333b117da", "pid": "055244025", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16206697-1", "source": "GND"}], "preferred_name": "Symposium Tussen Wal en Schip?", "authorized_access_point": "Symposium Tussen Wal en Schip?. 1991, Rotterdam"} 1 +2024-09-11 09:00:33.709142 2024-09-11 09:00:33.709146 5ce6c754-da92-4864-aee2-524bd794038c {"md5": "3813d478ee5987a4c232c25b57ad2e1d", "pid": "05533556X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16215472-0", "source": "GND"}], "variant_name": ["Conférence International du Tournesol, 11", "Sunflower Conference, 11", "Conferencia Internacional de Girasol, 11", "Tournesol, 11", "Conférence Internationale du Tournesol, 11", "Girasol, 11"], "preferred_name": "International Sunflower Conference, 11", "country_associated": "ag", "variant_access_point": ["Conférence International du Tournesol, 11, 1985, Mar del Plata", "Sunflower Conference, 11, 1985, Mar del Plata", "Conferencia Internacional de Girasol, 11, 1985, Mar del Plata", "Tournesol, 11, 1985, Mar del Plata", "Conférence Internationale du Tournesol, 11, 1985, Mar del Plata", "Girasol, 11, 1985, Mar del Plata"], "authorized_access_point": "International Sunflower Conference, 11, 1985, Mar del Plata"} 1 +2024-09-11 09:00:33.761212 2024-09-11 09:00:33.761215 5340034d-45af-4291-b90f-cf5c34976f14 {"md5": "6bcde3296aaec45ed1041ac68960c851", "pid": "055380700", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16219886-3", "source": "GND"}], "variant_name": ["Universidade Católica Portuguesa, Secção de Lisboa da Faculdade de Filosofia"], "preferred_name": "Universidade Católica Portuguesa. Faculdade de Filosofia. Secção da Lisboa", "country_associated": "po", "variant_access_point": ["Universidade Católica Portuguesa, Secção de Lisboa da Faculdade de Filosofia. Unveraenderte Form"], "authorized_access_point": "Universidade Católica Portuguesa. Faculdade de Filosofia. Secção da Lisboa"} 1 +2024-09-11 09:00:33.813485 2024-09-11 09:00:33.813487 1affd554-6e5e-4410-a809-aad8f6baf1f1 {"md5": "ec859a26c17b1796d54c473ea1c1d517", "pid": "055449271", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16226569-4", "source": "GND"}], "variant_name": ["Working Group on Family Planning and Sex Education of Young People"], "preferred_name": "World Health Organization. Working Group on Family Planning and Sex Education of Young People", "variant_access_point": ["Working Group on Family Planning and Sex Education of Young People"], "authorized_access_point": "World Health Organization. Working Group on Family Planning and Sex Education of Young People"} 1 +2024-09-11 09:00:33.866624 2024-09-11 09:00:33.866627 0a03f981-1fb4-48ef-93ed-958d7242f4a1 {"md5": "001cc24fb0e1316a5189cc830a61e520", "pid": "055518788", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16233347-X", "source": "GND"}], "preferred_name": "Symposium on the Exploitation of Mammals", "authorized_access_point": "Symposium on the Exploitation of Mammals. 1994, London"} 1 +2024-09-11 09:00:33.922413 2024-09-11 09:00:33.922416 92af110e-12ca-4e6d-b5e5-f4bf8ed1b9be {"md5": "814d754340722effa68415dcce52e1c9", "pid": "055521460", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16233603-2", "source": "GND"}], "preferred_name": "National Conference on Asthma and Education, 2", "country_associated": "xxc", "authorized_access_point": "National Conference on Asthma and Education, 2, 1995, Québec"} 1 +2024-09-11 09:00:33.982129 2024-09-11 09:00:33.982133 b35975f0-e9a1-4743-b0e3-c0a6fd0f3e42 {"md5": "fe5d0d1ee147c18b0e1d6497bdd5a4f2", "pid": "055526195", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16234065-5", "source": "GND"}], "variant_name": ["AETS"], "preferred_name": "Agencia de Evaluación de Tecnologías Sanitarias", "variant_access_point": ["AETS"], "authorized_access_point": "Agencia de Evaluación de Tecnologías Sanitarias"} 1 +2024-09-11 09:00:34.036773 2024-09-11 09:00:34.036775 a1a81a7e-5266-43ef-8109-973772970381 {"md5": "e868920ba95202de1f3ad02d26be4ea3", "pid": "055529771", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16234410-7", "source": "GND"}], "preferred_name": "World Congress on Chronic Fatigue Syndrome and Related Disorders", "authorized_access_point": "World Congress on Chronic Fatigue Syndrome and Related Disorders. 1, 1995, Bruxelles"} 1 +2024-09-11 09:00:34.088352 2024-09-11 09:00:34.088355 bc57692a-5dc5-44fb-9b41-b4cfd28fdb76 {"md5": "dd7d9fcdb56611ec4d5345346f5ac262", "pid": "055578861", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16239184-5", "source": "GND"}], "variant_name": ["Días del Cultura Española"], "preferred_name": "Dni Španělské Kultury", "variant_access_point": ["Días del Cultura Española, 1994, Ostrau"], "authorized_access_point": "Dni Španělské Kultury, 1994, Ostrau"} 1 +2024-09-11 09:00:34.143225 2024-09-11 09:00:34.143229 0eaadcaa-fc7d-407f-aa3d-9c3f243fb97b {"md5": "823a317ac79a660814c36a21f38005d8", "pid": "055593917", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16240644-7", "source": "GND"}], "preferred_name": "Diabetes-Fachkonferenz", "country_associated": "gw", "authorized_access_point": "Diabetes-Fachkonferenz, 1997, Königswinter- Petersberg (Rhein)"} 1 +2024-09-11 09:00:34.199652 2024-09-11 09:00:34.199655 ec7bb895-5713-491e-a8ca-41746adfcb9c {"md5": "a22073d986e3f26c1d514d3bb707d629", "pid": "055597793", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16241026-8", "source": "GND"}], "variant_name": ["Dokumentations- und Bewertungsstelle für Vergiftungen"], "preferred_name": "Bundesinstitut für Gesundheitlichen Verbraucherschutz und Veterinärmedizin. Dokumentations- und Bewertungsstelle für Vergiftungen", "country_associated": "gw", "variant_access_point": ["Dokumentations- und Bewertungsstelle für Vergiftungen"], "authorized_access_point": "Bundesinstitut für Gesundheitlichen Verbraucherschutz und Veterinärmedizin. Dokumentations- und Bewertungsstelle für Vergiftungen"} 1 +2024-09-11 09:00:34.953193 2024-09-11 09:00:34.953196 0b7f6b7d-6cfb-4f39-b2af-fd60eb58bee9 {"md5": "938f71ec58e9dec82a389153fd5fe562", "pid": "055872891", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16267836-8", "source": "GND"}], "preferred_name": "International Colloquium Industrial Floors, 3", "country_associated": "gw", "authorized_access_point": "International Colloquium Industrial Floors, 3, 1995, Ostfildern"} 1 +2024-09-11 09:00:34.264637 2024-09-11 09:00:34.264641 51572468-4ecc-4eed-bb14-01bb2d3fdf31 {"md5": "a5b9370908f72345cd4e8b55b5bb8d54", "pid": "055608205", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16242045-6", "source": "GND"}], "variant_name": ["Symposium Clinical Nutrition"], "preferred_name": "Simpósio Nutrição Clínica", "variant_access_point": ["Symposium Clinical Nutrition. 1998"], "authorized_access_point": "Simpósio Nutrição Clínica. 1998"} 1 +2024-09-11 09:00:34.319869 2024-09-11 09:00:34.319872 8f68d528-8702-4197-ad36-218417b14e6b {"md5": "39a29b891832ea765bfe9a432968dd8f", "pid": "055656595", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16246761-8", "source": "GND"}], "variant_name": ["Estonian Board of Fisheries", "Board of Fisheries"], "preferred_name": "National Estonian Board of Fisheries", "variant_access_point": ["Estonian Board of Fisheries", "Board of Fisheries. Estonia"], "authorized_access_point": "National Estonian Board of Fisheries"} 1 +2024-09-11 09:00:34.377024 2024-09-11 09:00:34.377028 d1ed0485-2b07-459e-bff4-93955acfc2ee {"md5": "4d555528185539be0f98b1cd399ec646", "pid": "055663354", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16247413-1", "source": "GND"}], "variant_name": ["IFAC IFORS IMACS IFIP Symposium on Large Scale Systems: Theory and Applications", "LSS", "IFAC Symposium on Large Scale Systems: Theory and Applications"], "preferred_name": "Symposium on Large Scale Systems: Theory and Applications", "variant_access_point": ["IFAC IFORS IMACS IFIP Symposium on Large Scale Systems: Theory and Applications. 8, 1998, Rio Patras", "LSS. 8, 1998, Rio Patras", "IFAC Symposium on Large Scale Systems: Theory and Applications. 8, 1998, Rio Patras"], "authorized_access_point": "Symposium on Large Scale Systems: Theory and Applications. 8, 1998, Rio Patras"} 1 +2024-09-11 09:00:34.44528 2024-09-11 09:00:34.445284 5125cd7d-a6c8-494b-a400-c0884cfa5b88 {"md5": "79b433787c62539a809f19c2fe5d7aa6", "pid": "055689159", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16249918-8", "source": "GND"}], "variant_name": ["X Ogólnopolski Zjazd Socjologiczny"], "preferred_name": "Ogólnopolski Zjazd Socjologiczny, 10.", "country_associated": "pl", "variant_access_point": ["X Ogólnopolski Zjazd Socjologiczny"], "authorized_access_point": "Ogólnopolski Zjazd Socjologiczny, 10., 1997, Katowice"} 1 +2024-09-11 09:00:34.499469 2024-09-11 09:00:34.499472 d4d9a439-8a1f-4623-8ce2-b0ba81baf265 {"md5": "1d8bd25444cda2e37d50d21a68bb3962", "pid": "055718086", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16252700-7", "source": "GND"}], "variant_name": ["IUFRO Working Party"], "preferred_name": "International Union of Forestry Research Organizations. Working Party", "variant_access_point": ["IUFRO Working Party. S 2 04 08"], "authorized_access_point": "International Union of Forestry Research Organizations. Working Party. S 2 04 08"} 1 +2024-09-11 09:00:34.562102 2024-09-11 09:00:34.562106 3eb6962c-a5fb-4a58-97a4-ce0f180a1ba2 {"md5": "2f00690b608824d6c981621dc2bed8b6", "pid": "05573782X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16254610-5", "source": "GND"}], "preferred_name": "Société Française de Mastologie et d'Imagerie du Sein", "authorized_access_point": "Société Française de Mastologie et d'Imagerie du Sein"} 1 +2024-09-11 09:00:34.631424 2024-09-11 09:00:34.63143 d3e9551a-4fa1-4f2e-b0c7-bd1d0bb7d753 {"md5": "1427b5d4e3ed08f841508e70c6fbcf47", "pid": "055774520", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16258145-2", "source": "GND"}], "variant_name": ["International Organization for Standardization. MEPG", "Moving Picture Experts Group", "MEPG"], "preferred_name": "International Organization for Standardization. Moving Picture Experts Group", "country_associated": "xxu", "variant_access_point": ["International Organization for Standardization. MEPG", "Moving Picture Experts Group", "MEPG"], "authorized_access_point": "International Organization for Standardization. Moving Picture Experts Group"} 1 +2024-09-11 09:00:34.714252 2024-09-11 09:00:34.714255 91cced0e-ef89-449d-83c9-689fc65be5f2 {"md5": "1ce68d6bd1303040133dfbfe1315f635", "pid": "055798837", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16260490-7", "source": "GND"}], "preferred_name": "Conference on Brain Somatic Cross Talk and the Central Control of Metabolism", "country_associated": "fr", "authorized_access_point": "Conference on Brain Somatic Cross Talk and the Central Control of Metabolism, 2002, Paris"} 1 +2024-09-11 09:00:34.774382 2024-09-11 09:00:34.774386 2eeac1e2-580d-46f8-a5cf-55fa241f55ec {"md5": "109b800c585162f24ba73f7ac14e4ab3", "pid": "055823866", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16262933-3", "source": "GND"}], "variant_name": ["Conference on Feature Modelling and Advanced Design-for-the-Life-Cycle Systems (FEATS 2001)", "IFIP TC5. WG5.2 & WG5.3 Conference on Feature Modelling and Advanced Design for the Life Cycle Systems (FEATS 2001)", "IFIP TC5. WG5.2 & WG5.3 Conference on Feature Modelling and Advanced Design-for-the-Life-Cycle Systems (FEATS 2001)"], "preferred_name": "Conference on Feature Modelling and Advanced Design for the Life Cycle Systems (FEATS 2001)", "variant_access_point": ["Conference on Feature Modelling and Advanced Design-for-the-Life-Cycle Systems (FEATS 2001). 2003, Valenciennes", "IFIP TC5. WG5.2 & WG5.3 Conference on Feature Modelling and Advanced Design for the Life Cycle Systems (FEATS 2001). 2003, Valenciennes", "IFIP TC5. WG5.2 & WG5.3 Conference on Feature Modelling and Advanced Design-for-the-Life-Cycle Systems (FEATS 2001). 2003, Valenciennes"], "authorized_access_point": "Conference on Feature Modelling and Advanced Design for the Life Cycle Systems (FEATS 2001). 2003, Valenciennes"} 1 +2024-09-11 09:00:34.835281 2024-09-11 09:00:34.835285 8325fe25-ad3e-4f3b-a713-f15192326db1 {"md5": "263112484f0ae6cd3a8515a547cda008", "pid": "055837417", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16264288-X", "source": "GND"}], "preferred_name": "Journée Claude Bernard", "authorized_access_point": "Journée Claude Bernard. 2002"} 1 +2024-09-11 09:00:34.896979 2024-09-11 09:00:34.896983 6347e2de-c6e6-4794-a019-48af32da317b {"md5": "c856097c92c9c26fc00647cc3219dfcb", "pid": "055842941", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16264841-8", "source": "GND"}], "preferred_name": "Meeting on Adrenergic Mechanisms", "authorized_access_point": "Meeting on Adrenergic Mechanisms. 11, 2003, Porto"} 1 +2024-09-11 09:00:35.016802 2024-09-11 09:00:35.016805 a41630eb-cc25-45fb-ae42-38bff99d4a25 {"md5": "48c45a681226ed8bd3347d75da1c1b40", "pid": "055899781", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16270525-6", "source": "GND"}], "preferred_name": "Coloquio Internacional de Historia Económica, 1", "country_associated": "sp", "authorized_access_point": "Coloquio Internacional de Historia Económica, 1, 1977, Madrid"} 1 +2024-09-11 09:00:35.068353 2024-09-11 09:00:35.068356 3a3fc25b-ae89-4d06-8b52-f8650ef14f89 {"md5": "92826cfff5c86c072eb7519263370676", "pid": "055949002", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16275447-4", "source": "GND"}], "preferred_name": "The Architectural History Foundation", "country_associated": "xxu", "authorized_access_point": "The Architectural History Foundation. New York, NY"} 1 +2024-09-11 09:00:35.122867 2024-09-11 09:00:35.122871 ca9dafc2-27f3-4aec-b7a8-6bbc715d33fe {"md5": "ef38b585a3c1564828718527c28349fd", "pid": "055952283", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16275775-X", "source": "GND"}], "preferred_name": "Winrock International", "authorized_access_point": "Winrock International"} 1 +2024-09-11 09:00:35.180152 2024-09-11 09:00:35.180156 16a7e839-3e34-424d-8c74-7e943fe67708 {"md5": "0c427f9ce040b29b1974134fda408252", "pid": "056024045", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16282952-8", "source": "GND"}], "preferred_name": "Conference on Contemporaray Research in the Foundations and Philosophy of Quantum Theory", "authorized_access_point": "Conference on Contemporaray Research in the Foundations and Philosophy of Quantum Theory, 1972, London, Canada"} 1 +2024-09-11 09:00:35.234446 2024-09-11 09:00:35.234449 39e5ef36-211e-4f27-9972-ca150e767270 {"md5": "cd3e8ef2a2c44cdc0afc5f156d676d21", "pid": "056088612", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16289409-0", "source": "GND"}], "preferred_name": "Deutsche Architektur- und Kunsthandwerkausstellung", "authorized_access_point": "Deutsche Architektur- und Kunsthandwerkausstellung, 1938, München"} 1 +2024-09-11 09:00:35.288338 2024-09-11 09:00:35.288341 f34deb11-9178-49ba-be34-eeb9c3ed9427 {"md5": "3d597677baf9cdd2578970931147d6f1", "pid": "056119054", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16292453-7", "source": "GND"}], "preferred_name": "Kierkegaard-Gesellschaft", "authorized_access_point": "Kierkegaard-Gesellschaft. Kopenhagen"} 1 +2024-09-11 09:00:35.352367 2024-09-11 09:00:35.35237 3b2b8d8a-6280-4960-ace3-4d1177346e88 {"md5": "918be5d747647227946f28b4b38fd0ab", "pid": "056140010", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16294549-8", "source": "GND"}], "variant_name": ["Ellas. Ypourgeio politismou kai episti̲mo̲n", "Hellas. Hypourgeion politismou kai epistēmōn", "Hellas. Hypourgeio politismou kai epistēmōn", "Hellas. Kulturministerium", "Hellas. Ministerium für Kultur", "Hellas. Ministerium für Kultur und Wissenschaft", "Hellas. Ministry of Culture", "Hellenic Ministry of Culture"], "preferred_name": "Hellenic ministry of culture", "country_associated": "gr", "variant_access_point": ["Ellas. Ypourgeio politismou kai episti̲mo̲n", "Hellas. Hypourgeion politismou kai epistēmōn", "Hellas. Hypourgeio politismou kai epistēmōn", "Hellas. Kulturministerium", "Hellas. Ministerium für Kultur", "Hellas. Ministerium für Kultur und Wissenschaft", "Hellas. Ministry of Culture", "Hellenic Ministry of Culture"], "authorized_access_point": "Hellenic ministry of culture"} 1 +2024-09-11 09:00:35.420002 2024-09-11 09:00:35.420005 d98f826d-20bc-43c6-9f88-553381d7dadc {"md5": "1f1d94261b967f0665c8960aae458c54", "pid": "056141645", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16294712-4", "source": "GND"}], "preferred_name": "American Association for the Advancement of Slavic Studies. Washington Chapter", "authorized_access_point": "American Association for the Advancement of Slavic Studies. Washington Chapter"} 1 +2024-09-11 09:00:35.475509 2024-09-11 09:00:35.475514 89255ce0-829e-4074-8b02-e0f8d8de66d7 {"md5": "e74f65960fe032d3b8695b7977363359", "pid": "056169302", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16297478-4", "source": "GND"}], "preferred_name": "International Penal and Penitentiary Congress, 6", "authorized_access_point": "International Penal and Penitentiary Congress, 6, 1900, Brussels"} 1 +2024-09-11 09:00:35.545311 2024-09-11 09:00:35.545315 a1379f41-bbf9-408a-9e56-ffa3a4a0fec8 {"md5": "6d484991f214983ade47ec91e3a56089", "pid": "056281544", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16308703-9", "source": "GND"}], "variant_name": ["Hybler, Galerie", "Steen Hybler", "Galerie Steen Hybler"], "preferred_name": "Galerie Hybler", "variant_access_point": ["Hybler, Galerie. Kopenhagen", "Steen Hybler. Galerie, Kopenhagen", "Galerie Steen Hybler. Kopenhagen"], "authorized_access_point": "Galerie Hybler. Kopenhagen"} 1 +2024-09-11 09:00:35.599924 2024-09-11 09:00:35.599928 6bde6c0b-b046-43f9-a19a-c1be74c56a95 {"md5": "c66f57dac9ca8c85e310cbdcad132f4d", "pid": "056310099", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16311558-8", "source": "GND"}], "variant_name": ["Corinth-Preis"], "preferred_name": "Lovis-Corinth-Preis", "variant_access_point": ["Corinth-Preis, 1984, Regensburg"], "authorized_access_point": "Lovis-Corinth-Preis, 1984, Regensburg"} 1 +2024-09-11 09:00:35.656783 2024-09-11 09:00:35.656786 379c8d22-fc35-4773-98e7-b65c12c9b3a7 {"md5": "ce40b07a14b1a47550c7a6ca8ffaff81", "pid": "05634371X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16314920-3", "source": "GND"}], "variant_name": ["Taidemuseo Pirkanmaan Aluetaidemuseo"], "preferred_name": "Tampereen Taidemuseo Pirkanmaan Aluetaidemuseo", "country_associated": "fi", "variant_access_point": ["Taidemuseo Pirkanmaan Aluetaidemuseo. Tampere"], "authorized_access_point": "Tampereen Taidemuseo Pirkanmaan Aluetaidemuseo. Tampere"} 1 +2024-09-11 09:00:35.723101 2024-09-11 09:00:35.723104 e8810968-e5c5-48ac-a00b-003c5f82f852 {"md5": "f2cfba0e0896230126f35c70980c40a6", "pid": "1000024091", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16055219-9", "source": "GND"}], "preferred_name": "Conselho Nacional de Pesquisas. Diretoria de Planejamento e Gestão", "country_associated": "bl", "authorized_access_point": "Conselho Nacional de Pesquisas. Diretoria de Planejamento e Gestão"} 1 +2024-09-11 09:00:35.780169 2024-09-11 09:00:35.780173 ca5a6836-0d12-4bf1-a505-4686e23e8c47 {"md5": "8e8aade006dd0c6a61ed475f039c3347", "pid": "1000226778", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6113983-X", "source": "GND"}], "variant_name": ["Radiochemical Conference, 10"], "preferred_name": "Radiochemical Conference, 10", "variant_access_point": ["Radiochemical Conference, 10, 1982, Mariánské Lázně"], "authorized_access_point": "Radiochemical Conference, 10, 1982, Marienbad"} 1 +2024-09-11 09:00:35.850101 2024-09-11 09:00:35.850105 db3be0c2-7c54-49cf-baf3-4b197455ab8b {"md5": "93bf2fa74a3f2f76f7b24617aadd8109", "pid": "1000228320", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6113942-7", "source": "GND"}], "variant_name": ["Galerie La mente e l'immagine"], "preferred_name": "La mente e l'immagine", "country_associated": "it", "variant_access_point": ["Galerie La mente e l'immagine. Rom"], "authorized_access_point": "La mente e l'immagine. Rom"} 1 +2024-09-11 09:00:35.934491 2024-09-11 09:00:35.934495 79b69337-ea91-4bd9-a282-cbf5f155b35c {"md5": "fe5ac8064d22ba500f1b110afd3e72f5", "pid": "1000295257", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16056448-7", "source": "GND"}], "variant_name": ["Kultur- und Sozialwissenschaftliche Fakultät", "KSF"], "preferred_name": "Universität Luzern. Kultur- und Sozialwissenschaftliche Fakultät", "country_associated": "sz", "variant_access_point": ["Kultur- und Sozialwissenschaftliche Fakultät. Luzern", "KSF. Abkuerzung"], "authorized_access_point": "Universität Luzern. Kultur- und Sozialwissenschaftliche Fakultät"} 1 +2024-09-11 09:00:36.006127 2024-09-11 09:00:36.00613 c57a4169-ceb1-4b9f-89f1-6d26fe3305bd {"md5": "9d0146423c12594d261f12e8488095ba", "pid": "1000465780", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7692524-9", "source": "GND"}], "variant_name": ["Temple Israel", "Temple Adath Israel", "Adath Israel"], "preferred_name": "Congregation Adath Israel", "country_associated": "xxu", "variant_access_point": ["Temple Israel", "Temple Adath Israel", "Adath Israel"], "date_of_establishment": "1854", "authorized_access_point": "Congregation Adath Israel"} 1 +2024-09-11 09:00:36.074633 2024-09-11 09:00:36.074637 30ac7ae9-4b3e-49a4-b4c5-af13c7af8689 {"md5": "4c9ffa2e1f725b7b6d6d8d336c5ce587", "pid": "1000582329", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6114797-7", "source": "GND"}], "preferred_name": "Wissenschaftliche Tagung 60 Jahre Sozialistische Energiepolitik", "authorized_access_point": "Wissenschaftliche Tagung 60 Jahre Sozialistische Energiepolitik, 1977, Leipzig"} 1 +2024-09-11 09:00:36.153747 2024-09-11 09:00:36.153751 76523237-2589-4376-a4ed-e0bedd1e9bbe {"md5": "85db160783ef5c2e71a1e481101342b7", "pid": "1000592979", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6117212-1", "source": "GND"}], "variant_name": ["Ulusal Kültür Kongresi Demokrasi Kültürü ve Globalleşme"], "preferred_name": "Ulusal Kültür Kongresi, 1", "country_associated": "tu", "variant_access_point": ["Ulusal Kültür Kongresi Demokrasi Kültürü ve Globalleşme, 1997, İmir"], "authorized_access_point": "Ulusal Kültür Kongresi, 1, 1997, Izmir"} 1 +2024-09-11 09:00:36.222598 2024-09-11 09:00:36.2226 0bed1d1c-4ed3-46f5-ade1-c185126db35a {"md5": "fc7cfa4caf7b2b3132898a59d4500476", "pid": "1000594521", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6117140-2", "source": "GND"}], "variant_name": ["Congrès de l'Association Internationale des Professeurs de Philosophie, 7", "Kongress des Internationelen Verbands für Philosophiedozenten, 7", "Kongress Philosophie und Interdisziplinarität, 7"], "preferred_name": "Congrès Philosophie et Interdisciplinarité, 7", "country_associated": "fr", "variant_access_point": ["Congrès de l'Association Internationale des Professeurs de Philosophie, 7, 1977, Sèvres", "Kongress des Internationelen Verbands für Philosophiedozenten, 7, 1977, Sèvres", "Kongress Philosophie und Interdisziplinarität, 7, 1977, Sèvres"], "authorized_access_point": "Congrès Philosophie et Interdisciplinarité, 7, 1977, Sèvres"} 1 +2024-09-11 09:00:36.278706 2024-09-11 09:00:36.27871 76c5221c-c4c9-4678-96ae-b91d62c86fbd {"md5": "1e26d91ba5f0ae3407efed0f37966b97", "pid": "1000601153", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6117583-3", "source": "GND"}], "preferred_name": "Statusseminar Einflüsse von Umweltchemikalien auf das Klima und biologische Folgewirkungen", "country_associated": "gw", "authorized_access_point": "Statusseminar Einflüsse von Umweltchemikalien auf das Klima und biologische Folgewirkungen, 1978, Neuherberg"} 1 +2024-09-11 09:00:36.332968 2024-09-11 09:00:36.332971 8a27ca43-3c02-46c6-9abf-9362c36d098e {"md5": "8b79ef1e50d3707b95d461723c809d69", "pid": "1000610896", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6115833-1", "source": "GND"}], "variant_name": ["Commerce Technical Advisory Board", "USA. Department of Commerce. Commerce Technical Advisory Board", "CTAB"], "preferred_name": "USA. Commerce Technical Advisory Board", "country_associated": "xxu", "variant_access_point": ["Commerce Technical Advisory Board. USA", "USA. Department of Commerce. Commerce Technical Advisory Board", "CTAB. Abkuerzung"], "authorized_access_point": "USA. Commerce Technical Advisory Board"} 1 +2024-09-11 09:00:36.387326 2024-09-11 09:00:36.38733 871eb19a-d2c2-4957-92e3-ba2d87f388de {"md5": "b83842b341f60aa6d5335dfd72ffe3a2", "pid": "1000681815", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16058421-8", "source": "GND"}], "preferred_name": "Ausstellung Cy Twombly. Photographien, Druckgraphiken, Zeichnungen", "country_associated": "gw", "authorized_access_point": "Ausstellung Cy Twombly. Photographien, Druckgraphiken, Zeichnungen, 2009, Altenburg, Thüringen"} 1 +2024-09-11 09:00:37.656101 2024-09-11 09:00:37.656104 4dfd82ed-bb04-4a3f-95a0-4f0a3ab89b0d {"md5": "4d8183819fe80e8eebb04624c676a0f2", "pid": "1003329063", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16068860-7", "source": "GND"}], "variant_name": ["Mariaux-Verlag", "Verlag J. W. Mariaux"], "preferred_name": "J.-W.-Mariaux-Verlag", "variant_access_point": ["Mariaux-Verlag. Köln", "Verlag J. W. Mariaux. Köln"], "authorized_access_point": "J.-W.-Mariaux-Verlag. Köln"} 1 +2024-09-11 09:00:36.445397 2024-09-11 09:00:36.445402 184c135f-b93a-407d-8d7f-9dd939aec413 {"md5": "96ccf972abdb5974bf440a7eae43f94f", "pid": "100068944", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/100068944", "source": "GND"}], "variant_name": ["Caorsin, Gulielmus", "Caoursin, William", "Caorsin, Guglielmo", "Caorsin, Gulielmo", "Guillaume, Caoursin", "Guilelmus, Caorsin", "William, Caoursin", "Caorsin, Guillaume", "Coarsin, Guillaume", "Coursin, Guillaume", "Coursin, Wilhelm", "Caonersyn, Wylhelm", "Caonersyn, Wilhelm", "Caonersin, Wilhelm", "Guilelmus, Caorsinus"], "date_of_birth": "1430", "date_of_death": "1501", "preferred_name": "Caoursin, Guillaume", "country_associated": "be", "variant_access_point": ["Caorsin, Gulielmus, 1430-1501", "Caoursin, William, 1430-1501", "Caorsin, Guglielmo, 1430-1501", "Caorsin, Gulielmo, 1430-1501", "Guillaume, Caoursin, 1430-1501", "Guilelmus, Caorsin, 1430-1501", "William, Caoursin, 1430-1501", "Caorsin, Guillaume, 1430-1501", "Coarsin, Guillaume, 1430-1501", "Coursin, Guillaume, 1430-1501", "Coursin, Wilhelm, 1430-1501", "Caonersyn, Wylhelm, 1430-1501", "Caonersyn, Wilhelm, 1430-1501", "Caonersin, Wilhelm, 1430-1501", "Guilelmus, Caorsinus, 1430-1501"], "authorized_access_point": "Caoursin, Guillaume, 1430-1501", "biographical_information": ["Rhodiorum historia", "Geschichtsschreiber; Vizekanzler d. Johanniter-Ordens"]} 1 +2024-09-11 09:00:36.50559 2024-09-11 09:00:36.505593 ecb49f22-28cf-4cb1-bec8-1847749a2887 {"md5": "2eeb974f4d5b614104683a41d0cc2d1a", "pid": "1000698777", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6118729-X", "source": "GND"}], "variant_name": ["Jugendamt der Stadt Hagen"], "preferred_name": "Hagen. Jugendamt", "country_associated": "gw", "variant_access_point": ["Jugendamt der Stadt Hagen. Unveraenderte Form"], "authorized_access_point": "Hagen. Jugendamt", "biographical_information": ["1997 Zusammenschluss mit dem \\"Sozialamt\\" zum \\"Fachbereich Soziales und Jugend\\""]} 1 +2024-09-11 09:00:36.559796 2024-09-11 09:00:36.559799 5f792dc9-608b-484a-8274-453799bac0c0 {"md5": "f749e7514c60e74a9d50ab62330b431e", "pid": "1000836290", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16059085-1", "source": "GND"}], "preferred_name": "Umweltschutzverein", "country_associated": "au", "authorized_access_point": "Umweltschutzverein. Brunn am Gebirge"} 1 +2024-09-11 09:00:36.614626 2024-09-11 09:00:36.61463 7b8e138c-1b6f-41c7-af79-2d5b62101279 {"md5": "9e60f84f9e7490f0ad751fc7fc9b0713", "pid": "1000990958", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7695570-9", "source": "GND"}], "preferred_name": "Internationales Jugend- und Kulturzentrum Kiebitz", "country_associated": "gw", "authorized_access_point": "Internationales Jugend- und Kulturzentrum Kiebitz", "biographical_information": ["Gegründet 1985"]} 1 +2024-09-11 09:00:36.671406 2024-09-11 09:00:36.671408 27a6a17c-d9b7-4b86-a8d0-6b502b71adcb {"md5": "f6402f9fbe3a6987018182e8b43af6c3", "pid": "1001088646", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16060301-8", "source": "GND"}], "variant_name": ["ZFVB", "Zentralverband der Familiengärten-Vereine"], "preferred_name": "Zentralverband der Familiengärtner-Vereine", "country_associated": "sz", "variant_access_point": ["ZFVB. Zentralverband der Familiengärtner-Vereine Basel", "Zentralverband der Familiengärten-Vereine. Basel"], "date_of_establishment": "1973", "authorized_access_point": "Zentralverband der Familiengärtner-Vereine. Basel"} 1 +2024-09-11 09:00:36.722288 2024-09-11 09:00:36.722291 3253b3eb-6258-44b0-bff9-2700e2010d64 {"md5": "c1a86b1d4e9398034857ca0e4efc014a", "pid": "1001206770", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16060901-X", "source": "GND"}], "preferred_name": "Ausstellung Farbe Ist Berührung des Auges", "country_associated": "gw", "authorized_access_point": "Ausstellung Farbe Ist Berührung des Auges, 2010, Dachau"} 1 +2024-09-11 09:00:36.780864 2024-09-11 09:00:36.78087 abc65f65-9d34-481e-8b1b-10ef87fe05a9 {"md5": "ceea89679d4ca67c9beb49462965dad0", "pid": "1001284402", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16061267-6", "source": "GND"}], "variant_name": ["Kinderfest in Altshausen"], "preferred_name": "Kinderfest Altshausen", "variant_access_point": ["Kinderfest in Altshausen, 1853 - 2009"], "authorized_access_point": "Kinderfest Altshausen, 1853 - 2009"} 1 +2024-09-11 09:00:36.832654 2024-09-11 09:00:36.832656 f19267b5-7dfd-4dd2-a29b-1d2908c9fd17 {"md5": "ad0e67d0aa0425d162f409ac4744cf47", "pid": "1001334272", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16061468-5", "source": "GND"}], "preferred_name": "Katholische Arbeiterbewegung Tirol", "country_associated": "au", "authorized_access_point": "Katholische Arbeiterbewegung Tirol", "biographical_information": ["Vorlage: 1963 - 1964"]} 1 +2024-09-11 09:00:36.890711 2024-09-11 09:00:36.890716 ba0db330-5ed0-4320-b6aa-0c76c863d5d7 {"md5": "181e1f5ab17dc7c6bd9eecb70fee32db", "pid": "1001567501", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16062315-7", "source": "GND"}], "preferred_name": "Mps Mobilpress Ltd.. Team Wirtschaftsjournalisten", "country_associated": "gw", "authorized_access_point": "Mps Mobilpress Ltd.. Team Wirtschaftsjournalisten"} 1 +2024-09-11 09:00:36.94544 2024-09-11 09:00:36.945445 5b5c9b1e-7769-4c04-9c46-fefd696d1bd0 {"md5": "6d2f17b2eeff68ef6b64b62038a345a9", "pid": "100167328X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16062671-7", "source": "GND"}], "preferred_name": "Ausstellung Hans Otte, Künstlerpublikationen und Partituren", "country_associated": "gw", "authorized_access_point": "Ausstellung Hans Otte, Künstlerpublikationen und Partituren, 2006-2007, Bremen"} 1 +2024-09-11 09:00:37.000497 2024-09-11 09:00:37.0005 2e5bd798-dcce-4805-b1d3-35065b4601ca {"md5": "94cd044d59fa14bc19b4208e59ef76e8", "pid": "1001827562", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6121646-X", "source": "GND"}], "variant_name": ["Nacionalʹnyj Techničnyj Universytet Ukrai͏̈ny Kyi͏̈vsʹkyj Politechničnyj Instytut. Instytut Prykladnoho Systemnoho Analizu"], "preferred_name": "Instytut Prykladnoho Systemnoho Analizu", "country_associated": "un", "variant_access_point": ["Nacionalʹnyj Techničnyj Universytet Ukrai͏̈ny Kyi͏̈vsʹkyj Politechničnyj Instytut. Instytut Prykladnoho Systemnoho Analizu"], "authorized_access_point": "Instytut Prykladnoho Systemnoho Analizu. Kiew"} 1 +2024-09-11 09:00:37.056531 2024-09-11 09:00:37.056534 dd67db81-8947-4da0-b8cb-1161f9437873 {"md5": "9dd7271cf213ec1eec4f4a0810b25649", "pid": "1001848063", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6123023-6", "source": "GND"}], "variant_name": ["Sportverein Eintracht Oldenburg", "SV Eintracht Oldenburg e.V.", "Turnverein Nadorst", "Nadorster Turnverein", "Turn- und Sportverein Nord zu Oldenburg", "TSV Nord"], "preferred_name": "SV Eintracht Oldenburg", "country_associated": "gw", "variant_access_point": ["Sportverein Eintracht Oldenburg", "SV Eintracht Oldenburg e.V.. Unveraenderte Form", "Turnverein Nadorst", "Nadorster Turnverein", "Turn- und Sportverein Nord zu Oldenburg", "TSV Nord"], "authorized_access_point": "SV Eintracht Oldenburg", "biographical_information": ["Gegr. 1890, letzte Namensänderung 1974"]} 1 +2024-09-11 09:00:37.112849 2024-09-11 09:00:37.112853 f2df6f1d-0263-45a9-8384-f822001306bb {"md5": "e5a639c9c234cb886ee729d7d9be255a", "pid": "1001985265", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16063792-2", "source": "GND"}], "variant_name": ["IUFRO Conference Sustainable Forest Management and Poverty Alleviation: Roles of Traditional Forest-Related Knowledge", "International Conference on Sustainable Forest Management and Poverty Alleviation"], "preferred_name": "Conference Sustainable Forest Management and Poverty Alleviation: Roles of Traditional Forest-Related Knowledge", "country_associated": "cc", "variant_access_point": ["IUFRO Conference Sustainable Forest Management and Poverty Alleviation: Roles of Traditional Forest-Related Knowledge, 2007, Kunming", "International Conference on Sustainable Forest Management and Poverty Alleviation, 2007, Kunming"], "authorized_access_point": "Conference Sustainable Forest Management and Poverty Alleviation: Roles of Traditional Forest-Related Knowledge, 2007, Kunming"} 1 +2024-09-11 09:00:37.177528 2024-09-11 09:00:37.177533 51a042fa-2777-447d-81ab-2d2c882bcd29 {"md5": "4cbdb363d93ca7d8aa0be9371c122d1e", "pid": "1002133998", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16064384-3", "source": "GND"}], "preferred_name": "Berlin. Abgeordnetenhaus. Petitionsausschuss", "country_associated": "gw", "authorized_access_point": "Berlin. Abgeordnetenhaus. Petitionsausschuss"} 1 +2024-09-11 09:00:37.234424 2024-09-11 09:00:37.234427 9d61768c-84e8-4e2a-ac57-1f36438fbc03 {"md5": "c91d4c80138fbd8a83bbed670e22a090", "pid": "1002374588", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16065137-2", "source": "GND"}], "variant_name": ["Oberösterreichische Landesausstellung Renaissance und Reformation", "Oö. Landesausstellung"], "preferred_name": "Oberösterreichische Landesausstellung", "country_associated": "au", "variant_access_point": ["Oberösterreichische Landesausstellung Renaissance und Reformation, 2010, Grieskirchen", "Oö. Landesausstellung, 2010, Grieskirchen-Parz"], "authorized_access_point": "Oberösterreichische Landesausstellung, 2010, Grieskirchen"} 1 +2024-09-11 09:00:37.299203 2024-09-11 09:00:37.299209 b90f7da4-4f81-4761-b587-949987234e97 {"md5": "1fa78205bad57cf713e427b60c9f41c0", "pid": "1002731305", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16066236-9", "source": "GND"}], "variant_name": ["IEEE INFOCOM, 29", "International Conference on Computer Communications, 29"], "preferred_name": "INFOCOM, 29", "country_associated": "xxu", "variant_access_point": ["IEEE INFOCOM, 29, 2010, San Diego, Calif.", "International Conference on Computer Communications, 29, 2010, San Diego, Calif."], "authorized_access_point": "INFOCOM, 29, 2010, San Diego, Calif."} 1 +2024-09-11 09:00:37.356905 2024-09-11 09:00:37.356908 f158457e-8b91-4153-b6b6-1a5904c68541 {"md5": "dfd1bfa5af881b9524fa7cca085e0a5e", "pid": "1003000274", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16067371-9", "source": "GND"}], "variant_name": ["ABGE", "ABGE"], "preferred_name": "Associação Brasileira de Geologia de Engenharia", "country_associated": "bl", "variant_access_point": ["ABGE. Abkuerzung", "ABGE. Associação Brasileira de Geologia de Engenharia"], "authorized_access_point": "Associação Brasileira de Geologia de Engenharia"} 1 +2024-09-11 09:00:37.411592 2024-09-11 09:00:37.411597 223de79f-478d-4f35-9cff-ce9ed664953f {"md5": "a88a26a4e4400677bc732cd91d63d8d5", "pid": "1003122329", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16067920-5", "source": "GND"}], "preferred_name": "Verein für Leibesübungen Sindelfingen 1862. Abt. Radsport", "country_associated": "gw", "authorized_access_point": "Verein für Leibesübungen Sindelfingen 1862. Abt. Radsport"} 1 +2024-09-11 09:00:37.465483 2024-09-11 09:00:37.465487 ca440470-d529-40c0-a17f-cf5d2fbb7700 {"md5": "896662f49b2703427f30465c932b7925", "pid": "1003145523", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16068076-1", "source": "GND"}], "variant_name": ["Hessling, Buchhandlung, Antiquariat"], "preferred_name": "Bruno Hessling, Buchhandlung, Antiquariat", "country_associated": "gw", "variant_access_point": ["Hessling, Buchhandlung, Antiquariat. Berlin, West"], "authorized_access_point": "Bruno Hessling, Buchhandlung, Antiquariat. Berlin, West"} 1 +2024-09-11 09:00:37.517305 2024-09-11 09:00:37.517308 25ac68ee-dd2c-4ea9-986d-3177ec7f8861 {"md5": "7617258eb8f8243d8d5705faa5dc60e3", "pid": "100316042", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/100316042", "source": "GND"}], "variant_name": ["Abbé Mesnier"], "date_of_death": "1761", "preferred_name": "Mesnier, ...", "country_associated": "fr", "variant_access_point": ["Abbé Mesnier, -1761"], "authorized_access_point": "Mesnier, ..., -1761", "biographical_information": ["Franz. Priester", "Priester"]} 1 +2024-09-11 09:00:37.570701 2024-09-11 09:00:37.570704 8a3eedd6-4efd-4513-8367-8c7cb145ef78 {"md5": "cd374e7e3dc1a20aedfcb8e0b27628d0", "pid": "1003218784", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16068388-9", "source": "GND"}], "variant_name": ["Evangelisches Krankenhaus Johannisstift Münster gGmbH", "Evangelisches Johannisstift Münster gGmbH", "EVK Johannisstift Münster", "EVK Münster"], "preferred_name": "Evangelisches Krankenhaus Johannisstift Münster", "country_associated": "gw", "variant_access_point": ["Evangelisches Krankenhaus Johannisstift Münster gGmbH. Unveraenderte Form", "Evangelisches Johannisstift Münster gGmbH", "EVK Johannisstift Münster", "EVK Münster"], "date_of_establishment": "1863", "authorized_access_point": "Evangelisches Krankenhaus Johannisstift Münster"} 1 +2024-09-11 09:00:37.709265 2024-09-11 09:00:37.709269 b13ceb1d-37a3-43ce-9fb7-c0793264955a {"md5": "be36efd455236c20604266529e22531c", "pid": "100349471", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/100349471", "source": "GND"}], "variant_name": ["Gursky, Florian de Gurry", "Gurry Górsky, Florian de", "Górsky, Florian de Gurry", "Gursky, Florian de G.", "Gursky, Florian de", "Gurry Gursky, Florianus de", "Gursky, Florianus de Gurry", "Gurry-Gursky, Florian de", "Gurski, Floryan", "Górski, Floryan", "Gurry Gurski, Floryan", "Gurski, Floryan Gurry", "Gurry Górski, Floryan", "Górski, Floryan Gurry"], "preferred_name": "Gurry Gursky, Florian de", "country_associated": "pl", "variant_access_point": ["Gursky, Florian de Gurry", "Gurry Górsky, Florian de", "Górsky, Florian de Gurry", "Gursky, Florian de G.", "Gursky, Florian de", "Gurry Gursky, Florianus de", "Gursky, Florianus de Gurry", "Gurry-Gursky, Florian de", "Gurski, Floryan", "Górski, Floryan", "Gurry Gurski, Floryan", "Gurski, Floryan Gurry", "Gurry Górski, Floryan", "Górski, Floryan Gurry"], "authorized_access_point": "Gurry Gursky, Florian de", "biographical_information": ["Poln. Publizist"]} 1 +2024-09-11 09:00:37.764409 2024-09-11 09:00:37.764412 4bd214ef-6cfb-455c-96e5-9da87f8080c0 {"md5": "8d860a2406c998f0303e34f180bc73ca", "pid": "1003824153", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16071408-4", "source": "GND"}], "variant_name": ["Weltgesundheitsorganisation. Regional Office for Europe. Working Group on Epidemiological Surveillance of Long-Term Health Effects of Environmental Hazards", "Working Group on Epidemiological Surveillance of Long-Term Health Effects of Environmental Hazards"], "preferred_name": "Weltgesundheitsorganisation. Working Group on Epidemiological Surveillance of Long-Term Health Effects of Environmental Hazards", "variant_access_point": ["Weltgesundheitsorganisation. Regional Office for Europe. Working Group on Epidemiological Surveillance of Long-Term Health Effects of Environmental Hazards", "Working Group on Epidemiological Surveillance of Long-Term Health Effects of Environmental Hazards"], "authorized_access_point": "Weltgesundheitsorganisation. Working Group on Epidemiological Surveillance of Long-Term Health Effects of Environmental Hazards"} 1 +2024-09-11 09:00:37.829648 2024-09-11 09:00:37.829652 baa67882-d85d-4e80-8f61-cdd93b6d5536 {"md5": "62b943a821a1266006154b46e034ba6a", "pid": "1003837840", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16071469-2", "source": "GND"}], "preferred_name": "Ausstellung Luciano Rigolini: What You See", "country_associated": "sz", "authorized_access_point": "Ausstellung Luciano Rigolini: What You See, 2008, Winterthur"} 1 +2024-09-11 09:00:37.882824 2024-09-11 09:00:37.882827 794b8641-b951-4de2-877b-e1dbd1889195 {"md5": "96022f52fc45eb41d9f4105c106e5e47", "pid": "1004014589", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16072082-5", "source": "GND"}], "variant_name": ["Verband Schaffende Arbeitslosenfürsorge", "Verband zur Förderung der Wirtschaftlichen Interessen aller Schaffenden Stände und zur Beseitigung der Arbeitslosigkeit", "Gemeinnütziger Verband zur Förderung der Wirtschaftlichen Interessen aller Schaffenden Stände und zur Beseitigung der Arbeitslosigkeit"], "preferred_name": "Schaffende Arbeitslosenfürsorge", "country_associated": "au", "variant_access_point": ["Verband Schaffende Arbeitslosenfürsorge", "Verband zur Förderung der Wirtschaftlichen Interessen aller Schaffenden Stände und zur Beseitigung der Arbeitslosigkeit", "Gemeinnütziger Verband zur Förderung der Wirtschaftlichen Interessen aller Schaffenden Stände und zur Beseitigung der Arbeitslosigkeit"], "authorized_access_point": "Schaffende Arbeitslosenfürsorge", "biographical_information": ["Vorlage: 1932"]} 1 +2024-09-11 09:00:37.945792 2024-09-11 09:00:37.945797 ef2d5056-7283-4c5a-8242-1820235af93a {"md5": "7d702535dba585d424d99f1a1e7cd304", "pid": "1004316267", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16073239-6", "source": "GND"}], "variant_name": ["International Conference on Deontic Logic in Computer Science, 10"], "preferred_name": "DEON, 10", "country_associated": "it", "variant_access_point": ["International Conference on Deontic Logic in Computer Science, 10, 2010, Fiesole"], "authorized_access_point": "DEON, 10, 2010, Fiesole"} 1 +2024-09-11 09:00:37.999462 2024-09-11 09:00:37.999466 faa7dea6-203d-424b-80a4-064bd8720766 {"md5": "7410f6a824ebb08fd1c73ce65d2e280e", "pid": "1004386486", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16073577-4", "source": "GND"}], "variant_name": ["Università degli Studi di Roma La Sapienza. Dipartimento di Lingue, Letterature e Culture Moderne. Sezione di Francesistica", "Università degli Studi di Roma \\"La Sapienza\\". Sezione di Francesistica", "Università degli Studi di Roma \\"La Sapienza\\". Dipartimento di Lingue, Letterature e Culture Moderne. Sezione di Francesistica", "Università degli studi di Roma \\"La Sapienza\\". Sezione di francesistica", "Dipartimento di lingue, letterature e culture moderne. Sezione di francesistica. \\"Sapienza\\" Università di Roma", "Università degli studi di Roma \\"La Sapienza\\". Dipartimento di lingue, letterature e culture moderne. Sezione di francesistica"], "preferred_name": "Università degli Studi di Roma La Sapienza. Sezione di Francesistica", "country_associated": "it", "variant_access_point": ["Università degli Studi di Roma La Sapienza. Dipartimento di Lingue, Letterature e Culture Moderne. Sezione di Francesistica", "Università degli Studi di Roma \\"La Sapienza\\". Sezione di Francesistica", "Università degli Studi di Roma \\"La Sapienza\\". Dipartimento di Lingue, Letterature e Culture Moderne. Sezione di Francesistica", "Università degli studi di Roma \\"La Sapienza\\". Sezione di francesistica", "Dipartimento di lingue, letterature e culture moderne. Sezione di francesistica. \\"Sapienza\\" Università di Roma", "Università degli studi di Roma \\"La Sapienza\\". Dipartimento di lingue, letterature e culture moderne. Sezione di francesistica"], "date_of_establishment": "2006", "authorized_access_point": "Università degli Studi di Roma La Sapienza. Sezione di Francesistica"} 1 +2024-09-11 09:00:38.07085 2024-09-11 09:00:38.070853 53e1019c-b880-4778-9c8a-a8d48d0f98d0 {"md5": "da5e2d16f56f2531fdd1048d02e50341", "pid": "100438713X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16073588-9", "source": "GND"}], "variant_name": ["Quatuor à Cordes Mikrokosmos", "Mikrokosmos-Streichquartett", "Mikrokosmos String Quartet"], "preferred_name": "Mikrokosmos Vonósnégyes", "country_associated": "hu", "variant_access_point": ["Quatuor à Cordes Mikrokosmos", "Mikrokosmos-Streichquartett", "Mikrokosmos String Quartet"], "date_of_establishment": "1998", "authorized_access_point": "Mikrokosmos Vonósnégyes"} 1 +2024-09-11 09:00:38.130014 2024-09-11 09:00:38.130016 ee1c7781-b089-40ae-b5ae-902999b698d4 {"md5": "5f5d6df8caf9636df2d30e568751a733", "pid": "1004477503", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3074228-6", "source": "GND"}], "preferred_name": "Seminario de Lenguas y Epigrafia Antiguas, 18", "country_associated": "sp", "authorized_access_point": "Seminario de Lenguas y Epigrafia Antiguas, 18, 2002, Valencia"} 1 +2024-09-11 09:00:38.189065 2024-09-11 09:00:38.189067 f83761a4-bb1e-4a4f-8cf9-21aea5de8ab8 {"md5": "4f19a53c63bf167989edfcf9b73696ec", "pid": "1004482531", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6123852-1", "source": "GND"}], "variant_name": ["Landesveterinär- und Lebensmitteluntersuchungsamt"], "preferred_name": "Sachsen-Anhalt. Landesveterinär- und Lebensmitteluntersuchungsamt", "country_associated": "gw", "variant_access_point": ["Landesveterinär- und Lebensmitteluntersuchungsamt. Sachsen-Anhalt"], "authorized_access_point": "Sachsen-Anhalt. Landesveterinär- und Lebensmitteluntersuchungsamt"} 1 +2024-09-11 09:00:38.249684 2024-09-11 09:00:38.249686 cfb1f856-5e4c-4003-bfa1-64a1b64aa7d5 {"md5": "bd00ffc629244ba728fb1c19efccf160", "pid": "1004487096", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6124720-0", "source": "GND"}], "variant_name": ["Albin Klärig", "Thüringer Marmor- und Alabasterwerk"], "preferred_name": "Albin Klärig, Thüringer Marmor- und Alabasterwerk", "variant_access_point": ["Albin Klärig. Waltershausen", "Thüringer Marmor- und Alabasterwerk. Waltershausen"], "authorized_access_point": "Albin Klärig, Thüringer Marmor- und Alabasterwerk. Waltershausen"} 1 +2024-09-11 09:00:38.311605 2024-09-11 09:00:38.311609 6b9b8f96-44f3-41a4-b286-8c0924e54354 {"md5": "33c378ea29c124ed1bb0e25baea15002", "pid": "1004490674", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6124890-3", "source": "GND"}], "variant_name": ["KPC"], "preferred_name": "Kaigo no hana Photographer's Club", "country_associated": "ja", "variant_access_point": ["KPC. Abkuerzung"], "authorized_access_point": "Kaigo no hana Photographer's Club"} 1 +2024-09-11 09:00:38.366423 2024-09-11 09:00:38.366426 c1660253-4206-4357-bff7-75f43ef5e713 {"md5": "cdfd308db37f9d09467d35c6ae5300fc", "pid": "1004494807", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6127131-7", "source": "GND"}], "variant_name": ["Seminar on Outer Space Problems"], "preferred_name": "Seminar on Problems of Outer Space", "country_associated": "xxu", "variant_access_point": ["Seminar on Outer Space Problems, 1963, New York, NY"], "authorized_access_point": "Seminar on Problems of Outer Space, 1963, New York, NY"} 1 +2024-09-11 09:00:38.417956 2024-09-11 09:00:38.41796 91543f09-f228-4efc-be8b-0f07ae286c27 {"md5": "c2637ae63099d5aa8c6dbbe35c3680c7", "pid": "1004497415", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6127264-4", "source": "GND"}], "preferred_name": "Orchestra Ensemble Kanazawa", "country_associated": "ja", "authorized_access_point": "Orchestra Ensemble Kanazawa"} 1 +2024-09-11 09:00:38.470161 2024-09-11 09:00:38.470164 b010aa4f-27b7-44fc-916a-2c1b5a5188f4 {"md5": "1e5fbe961d825a1c1be3b887cb544d89", "pid": "1004503423", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6146155-6", "source": "GND"}], "preferred_name": "Friedrich Lüderwald Erben", "authorized_access_point": "Friedrich Lüderwald Erben", "biographical_information": ["Sitz: Helmstedt {1696-1697}"]} 1 +2024-09-11 09:00:38.525037 2024-09-11 09:00:38.525041 70611c7e-ce82-436f-b214-b9cc4ee3bb12 {"md5": "e97bd43112ec37351c861aeecd1a9d8b", "pid": "1004520778", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6146673-6", "source": "GND"}], "variant_name": ["Stamperia Arcivescovile", "Typographia Archiepiscopalis", "Stampa Archiepiscopale", "Stamperia Archiepiscopale", "Typis Archiepiscopalis", "Impressoria Arcivescovile"], "preferred_name": "Tipografia Arcivescovile", "country_associated": "it", "variant_access_point": ["Stamperia Arcivescovile. Bologna", "Typographia Archiepiscopalis. Bologna", "Stampa Archiepiscopale. Bologna", "Stamperia Archiepiscopale. Bologna", "Typis Archiepiscopalis. Bologna", "Impressoria Arcivescovile. Bologna"], "authorized_access_point": "Tipografia Arcivescovile. Bologna", "biographical_information": ["Sitz: Bologna {ca. 1606-}"]} 1 +2024-09-11 09:00:38.59064 2024-09-11 09:00:38.590644 719e9140-3c99-4ed5-8b7a-459b1557a7af {"md5": "eb26ebf7b11099749aeaf2d7f53b2e34", "pid": "1004537549", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6142734-2", "source": "GND"}], "variant_name": ["Kunming Teachers School", "Kʿunming-shihfan-chuankʿê-hsüehhsiao", "Shifan-Zhuanke-Xuexiao", "Teachers School"], "preferred_name": "Kunming-Shifan-Zhuanke-Xuexiao", "country_associated": "cc", "variant_access_point": ["Kunming Teachers School", "Kʿunming-shihfan-chuankʿê-hsüehhsiao", "Shifan-Zhuanke-Xuexiao. Kunming", "Teachers School. Kunming"], "authorized_access_point": "Kunming-Shifan-Zhuanke-Xuexiao"} 1 +2024-09-11 09:00:38.656132 2024-09-11 09:00:38.656135 c014f39e-92b1-4395-8189-546c769da9a4 {"md5": "4cee23e3502dcdf217a0cf4c55a0272f", "pid": "1004552424", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6141774-9", "source": "GND"}], "preferred_name": "Institute for Small Scale Industries. Research Department", "country_associated": "ph", "authorized_access_point": "Institute for Small Scale Industries. Quezon. Research Department"} 1 +2024-09-11 09:00:38.71648 2024-09-11 09:00:38.716483 a846a012-4e8e-41f1-8836-efdcea4945d0 {"md5": "b64a41760868942f06526de2e24332e9", "pid": "100455706X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6132170-9", "source": "GND"}], "variant_name": ["International Solidarity Conference for the Development of the Comoros, 1"], "preferred_name": "Conférence de Solidarité Internationale pour le Développement des Comores, 1", "country_associated": "cq", "variant_access_point": ["International Solidarity Conference for the Development of the Comoros, 1, 1983, Moroni"], "authorized_access_point": "Conférence de Solidarité Internationale pour le Développement des Comores, 1, 1983, Moroni"} 1 +2024-09-11 09:00:38.769746 2024-09-11 09:00:38.769749 39f9bad5-9421-4870-8dea-195215e380c6 {"md5": "618dc6000b9eea370a6af799e6514bcd", "pid": "1004578172", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6131941-7", "source": "GND"}], "preferred_name": "Crowell and Moring", "country_associated": "xxu", "authorized_access_point": "Crowell and Moring. Washington, DC"} 1 +2024-09-11 09:00:38.824151 2024-09-11 09:00:38.824153 2b3a46f8-0797-4492-bf92-be6d76247d11 {"md5": "42460ea9f2320055b3e0f3d985348b0a", "pid": "1004580428", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6131920-X", "source": "GND"}], "variant_name": ["Intergovernmental Group of Experts on Definitions and Methodology Employed in the UNCTAD Data Base on Trade Measures", "Conference on Trade and Development. Trade and Development Board. Intergovernmental Group of Experts on Definitions and Methodology Employed in the UNCTAD Data Base on Trade Measures"], "preferred_name": "Conference on Trade and Development. Intergovernmental Group of Experts on Definitions and Methodology Employed in the UNCTAD Data Base on Trade Measures", "variant_access_point": ["Intergovernmental Group of Experts on Definitions and Methodology Employed in the UNCTAD Data Base on Trade Measures", "Conference on Trade and Development. Trade and Development Board. Intergovernmental Group of Experts on Definitions and Methodology Employed in the UNCTAD Data Base on Trade Measures"], "authorized_access_point": "Conference on Trade and Development. Intergovernmental Group of Experts on Definitions and Methodology Employed in the UNCTAD Data Base on Trade Measures", "biographical_information": ["ik"]} 1 +2024-09-11 09:00:38.878018 2024-09-11 09:00:38.878021 76e71917-3943-40a6-b3c2-f35e2ab0247a {"md5": "b58acaf5a5ec3292baa7c50f6b1249d0", "pid": "1004597800", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6141569-8", "source": "GND"}], "preferred_name": "Industrial Development Organization. Translation Service. Arabic Section", "authorized_access_point": "Industrial Development Organization. Translation Service. Arabic Section", "biographical_information": ["ik"]} 1 +2024-09-11 09:00:38.93074 2024-09-11 09:00:38.930744 476eae78-bb00-4490-b754-861b5b19d510 {"md5": "b286c6c8cbedbdba4e0c3c0442f4505e", "pid": "1004602456", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6128467-1", "source": "GND"}], "variant_name": ["Working Party on the Effects of Drought Assistance Measures and Policies on Land Degradation"], "preferred_name": "Australien. Working Party on the Effects of Drought Assistance Measures and Policies on Land Degradation", "country_associated": "at", "variant_access_point": ["Working Party on the Effects of Drought Assistance Measures and Policies on Land Degradation. Australien"], "authorized_access_point": "Australien. Working Party on the Effects of Drought Assistance Measures and Policies on Land Degradation", "biographical_information": ["gk"]} 1 +2024-09-11 09:00:38.983024 2024-09-11 09:00:38.983027 92485ee9-4e40-4a21-88df-559c69840ecc {"md5": "1b2b04d6b8df6ee9c53c14332c97d48e", "pid": "1004610041", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6144342-6", "source": "GND"}], "variant_name": ["Faculty of Engineering"], "preferred_name": "University. Faculty of Engineering", "country_associated": "nr", "variant_access_point": ["Faculty of Engineering. Benin City"], "authorized_access_point": "University. Benin City. Faculty of Engineering"} 1 +2024-09-11 09:00:39.045294 2024-09-11 09:00:39.045297 17d8146f-8b12-4232-8f01-fabd0ff51e86 {"md5": "95a4cfe4360447b31bea7b42c90df0ae", "pid": "1004623488", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6139991-7", "source": "GND"}], "variant_name": ["Gosudarstvennyj Komitet po Ėkonomike", "Komitet po Ėkonomike"], "preferred_name": "Ukrainische SSR. Komitet po Ėkonomike", "variant_access_point": ["Gosudarstvennyj Komitet po Ėkonomike. Ukrainische SSR", "Komitet po Ėkonomike. Ukrainische SSR"], "authorized_access_point": "Ukrainische SSR. Komitet po Ėkonomike", "biographical_information": ["gk"]} 1 +2024-09-11 09:00:39.103155 2024-09-11 09:00:39.103158 58df07af-0c9a-4669-9dc0-fd3372bf5958 {"md5": "5204f763aa5d5c0d82d7930c180741ce", "pid": "1004659237", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6133997-0", "source": "GND"}], "variant_name": ["Schitag, Ernst & Young", "Ernst & Young, Schitag", "Schitag, Ernst und Young", "Deutsche Allgemeine Treuhand-Aktiengesellschaft", "Schitag Ernst & Young, Deutsche Allgemeine Treuhand AG, Wirtschaftsprüfungsgesellschaft"], "preferred_name": "Schitag, Ernst & Young, Deutsche Allgemeine Treuhand-Aktiengesellschaft", "country_associated": "gw", "date_of_termination": "1999", "variant_access_point": ["Schitag, Ernst & Young. Firma", "Ernst & Young, Schitag. Firma", "Schitag, Ernst und Young. Firma", "Deutsche Allgemeine Treuhand-Aktiengesellschaft. Schitag, Ernst & Young, Deutsche Allgemeine Treuhand-Aktiengesellschaft", "Schitag Ernst & Young, Deutsche Allgemeine Treuhand AG, Wirtschaftsprüfungsgesellschaft"], "date_of_establishment": "1992", "authorized_access_point": "Schitag, Ernst & Young, Deutsche Allgemeine Treuhand-Aktiengesellschaft", "biographical_information": ["Gründungsjahr von Erscheinungsjahren in Publikationen abgeleitet"]} 1 +2024-09-11 09:00:39.158503 2024-09-11 09:00:39.158507 4f9e4828-0383-464b-b145-86207b2abc67 {"md5": "50e860cddccd70807f18707944f8d045", "pid": "1004691408", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6138287-5", "source": "GND"}], "variant_name": ["National Physical Laboratory. Centre for Mathematics and Scientific Computing", "CMSC"], "preferred_name": "Centre for Mathematics and Scientific Computing", "country_associated": "xxk", "variant_access_point": ["National Physical Laboratory. Teddington. Centre for Mathematics and Scientific Computing", "CMSC. Abkuerzung"], "authorized_access_point": "Centre for Mathematics and Scientific Computing. Teddington"} 1 +2024-09-11 09:00:39.212051 2024-09-11 09:00:39.212053 fdd5359f-ebaf-4e37-8a43-8c7f0f42d4bf {"md5": "4b2f8668f329b0750e530f3f7691de91", "pid": "1004696000", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6135448-X", "source": "GND"}], "variant_name": ["Evangelische Kirche in Deutschland. Evangelische Kommission für Mittel- und Osteuropa. Fachausschuß Kirchengeschichte"], "preferred_name": "Evangelische Kommission für Mittel- und Osteuropa. Fachausschuß Kirchengeschichte", "country_associated": "gw", "variant_access_point": ["Evangelische Kirche in Deutschland. Evangelische Kommission für Mittel- und Osteuropa. Fachausschuß Kirchengeschichte"], "authorized_access_point": "Evangelische Kommission für Mittel- und Osteuropa. Fachausschuß Kirchengeschichte"} 1 +2024-09-11 09:00:39.263022 2024-09-11 09:00:39.263026 d35a5d8a-e056-44fd-beda-c605ebfc7500 {"md5": "228590734ebe0b98b5e95689307bfe15", "pid": "1004996152", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16075367-3", "source": "GND"}], "preferred_name": "Imkerverein Südeichsfeld", "date_of_establishment": "1905", "authorized_access_point": "Imkerverein Südeichsfeld. Pfaffschwende"} 1 +2024-09-11 09:00:39.322421 2024-09-11 09:00:39.322424 b8e25c3c-0faf-4b89-a9a9-311d349d3b2e {"md5": "d7f128740c5373877caa6e710cc57d60", "pid": "1005138168", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16075717-4", "source": "GND"}], "variant_name": ["Oberschule für Jungen"], "preferred_name": "Zeppelinschule", "variant_access_point": ["Oberschule für Jungen. Berlin, Zeppelinschule"], "authorized_access_point": "Zeppelinschule. Berlin"} 1 +2024-09-11 09:00:39.375428 2024-09-11 09:00:39.375432 9d8c5063-8492-4d72-b12e-1b93b1c9e962 {"md5": "d34ddf6fbbe2cb77874d5cd7a5bff20d", "pid": "1005381364", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16076532-8", "source": "GND"}], "preferred_name": "Sŭiuz na Bŭlgarskite Advokati", "country_associated": "bu", "authorized_access_point": "Sŭiuz na Bŭlgarskite Advokati"} 1 +2024-09-11 09:00:39.430823 2024-09-11 09:00:39.430827 3b44274b-2bc0-45b6-89ae-f00806deb3b4 {"md5": "3e480de49546053209c51162e297b9db", "pid": "1005446873", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16076761-1", "source": "GND"}], "variant_name": ["ISOM, 18"], "preferred_name": "International Symposium on Olefin Metathesis and Related Chemistry, 18", "variant_access_point": ["ISOM, 18, 2009, Leipzig"], "authorized_access_point": "International Symposium on Olefin Metathesis and Related Chemistry, 18, 2009, Leipzig"} 1 +2024-09-11 09:00:39.485166 2024-09-11 09:00:39.485169 642c28a6-8bde-47aa-981e-1287e421ce16 {"md5": "bb8ec610a9c2260d344726cdbd14984d", "pid": "1006191062", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16079544-8", "source": "GND"}], "preferred_name": "Sønderjydsk Garderforening", "country_associated": "dk", "date_of_establishment": "1920", "authorized_access_point": "Sønderjydsk Garderforening"} 1 +2024-09-11 09:00:39.551217 2024-09-11 09:00:39.55122 8f4c797d-130a-466e-8287-2230193bc2e6 {"md5": "ac429d11efce0404d2633d8082f76f2c", "pid": "1006414401", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16080261-1", "source": "GND"}], "preferred_name": "Ausstellung Schlafende Schönheit. Meisterwerke Viktorianischer Malerei aus dem Museo de Arte de Ponce", "country_associated": "au", "authorized_access_point": "Ausstellung Schlafende Schönheit. Meisterwerke Viktorianischer Malerei aus dem Museo de Arte de Ponce, 2010, Wien"} 1 +2024-09-11 09:00:39.604654 2024-09-11 09:00:39.604658 1d9430f0-7eda-4f94-871b-2cee2837e129 {"md5": "293acda505bd725c4cefbb58228089be", "pid": "1006687815", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16081287-2", "source": "GND"}], "variant_name": ["Paderborner Workshop Augmented and Virtual Reality in der Produktentstehung, 9", "Workshop Augmented & Virtual Reality in der Produktentstehung, 9"], "preferred_name": "Paderborner Workshop Augmented & Virtual Reality in der Produktentstehung, 9", "country_associated": "gw", "variant_access_point": ["Paderborner Workshop Augmented and Virtual Reality in der Produktentstehung, 9, 2010, Paderborn", "Workshop Augmented & Virtual Reality in der Produktentstehung, 9, 2010, Paderborn"], "authorized_access_point": "Paderborner Workshop Augmented & Virtual Reality in der Produktentstehung, 9, 2010, Paderborn"} 1 +2024-09-11 09:00:39.658242 2024-09-11 09:00:39.658245 fe4efbf4-7816-479e-b6d5-2ff0566af51b {"md5": "2df04cc3c3fbd559f6d7eb5c01604470", "pid": "1006928111", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16082078-9", "source": "GND"}], "preferred_name": "Berlinale Talent Campus, 8.", "authorized_access_point": "Berlinale Talent Campus, 8., 2010, Berlin"} 1 +2024-09-11 09:00:39.718196 2024-09-11 09:00:39.7182 c0744154-4cd3-4c6a-b38d-7a55a7e55e6f {"md5": "10ae67bdb34df7ac92b7c40deed2ea94", "pid": "1007180692", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16083102-7", "source": "GND"}], "variant_name": ["Exhibition Dorothee Joachim, True Value"], "preferred_name": "Ausstellung Dorothee Joachim, True Value", "country_associated": "gw", "variant_access_point": ["Exhibition Dorothee Joachim, True Value, 2009 - 2010, Brühl, Köln"], "authorized_access_point": "Ausstellung Dorothee Joachim, True Value, 2009 - 2010, Brühl, Köln"} 1 +2024-09-11 09:00:39.773643 2024-09-11 09:00:39.773647 b2296207-c920-4137-bb0e-44e92ed7b03f {"md5": "f8a0ba34de70f312c44029936f475f92", "pid": "1007242396", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16083465-X", "source": "GND"}], "preferred_name": "Ausstellung Felix Müller", "authorized_access_point": "Ausstellung Felix Müller, 2006, Berlin"} 1 +2024-09-11 09:00:39.828606 2024-09-11 09:00:39.828609 1743d049-4850-48e2-926b-0f3a75564850 {"md5": "bd27588979981aa8982820ff448ca085", "pid": "1007432802", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16084847-7", "source": "GND"}], "variant_name": ["Avtonomnaja Nekommerčeskaja Organizacija Nezavisimoe Ėkologičesko Rejtingovoe Agentstvo", "ANO NĖRA", "ANO Nezavisimoe Ėkologičeskoe Rejtingovoe Agentstvo", "Independent Ecological Rating Agency", "NĖRA"], "preferred_name": "Nezavisimoe Ėkologičesko Rejtingovoe Agentstvo", "country_associated": "ru", "variant_access_point": ["Avtonomnaja Nekommerčeskaja Organizacija Nezavisimoe Ėkologičesko Rejtingovoe Agentstvo", "ANO NĖRA. Abkuerzung", "ANO Nezavisimoe Ėkologičeskoe Rejtingovoe Agentstvo", "Independent Ecological Rating Agency", "NĖRA. Abkuerzung"], "authorized_access_point": "Nezavisimoe Ėkologičesko Rejtingovoe Agentstvo", "biographical_information": ["Sitz: Moskva"]} 1 +2024-09-11 09:00:39.880767 2024-09-11 09:00:39.88077 e55f9edd-822f-4e3a-b8fa-f29b99f414fa {"md5": "a11829fe6d069b7f79896ec7656ef725", "pid": "1007693789", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16086154-8", "source": "GND"}], "preferred_name": "Ausstellung Vorsicht Glas! Zerbrechliche Kunst 700 - 2010", "authorized_access_point": "Ausstellung Vorsicht Glas! Zerbrechliche Kunst 700 - 2010, 2010 - 2011, Berlin"} 1 +2024-09-11 09:00:39.938109 2024-09-11 09:00:39.938111 54441bab-e7df-4abb-9531-bb7b14d525c6 {"md5": "192bd93e4e0b220b618f4ba88f1a4062", "pid": "1007769319", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16086664-9", "source": "GND"}], "variant_name": ["Dakṣinạ Bhāṣā Pustaka Saṃsthe"], "preferred_name": "Southern Languages Book Trust", "country_associated": "ii", "variant_access_point": ["Dakṣinạ Bhāṣā Pustaka Saṃsthe"], "authorized_access_point": "Southern Languages Book Trust", "biographical_information": ["Sitz: Madras"]} 1 +2024-09-11 09:00:40.004617 2024-09-11 09:00:40.004622 5eb127f6-09b6-4f2c-9485-6b1077a94df0 {"md5": "ba3f80853776e75b7531aac104f6dc5b", "pid": "1007863307", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16087288-1", "source": "GND"}], "preferred_name": "Bezirksfeuerwehrtag", "country_associated": "gw", "authorized_access_point": "Bezirksfeuerwehrtag, 1967, Kirchhain"} 1 +2024-09-11 09:00:40.057324 2024-09-11 09:00:40.057326 975981fb-f93f-4a9d-a1ca-bd1425ad359e {"md5": "0f98c8c258d1f0c060aa910cfe976d92", "pid": "1008172537", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16089004-4", "source": "GND"}], "variant_name": ["Jüdische Gemeinde Essen"], "preferred_name": "Jüdische Kultusgemeinde Essen", "country_associated": "gw", "variant_access_point": ["Jüdische Gemeinde Essen"], "date_of_establishment": "1945", "authorized_access_point": "Jüdische Kultusgemeinde Essen"} 1 +2024-09-11 09:00:40.11248 2024-09-11 09:00:40.112484 1040747e-f3ca-4ff0-89b9-aee71624ca2d {"md5": "bfa7e93fd2d9d9fdc9c3e0d68543891b", "pid": "1008311308", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16090061-X", "source": "GND"}], "preferred_name": "International Symposium on Intensive Care and Emergency Medicine, 30", "country_associated": "be", "authorized_access_point": "International Symposium on Intensive Care and Emergency Medicine, 30, 2010, Brüssel"} 1 +2024-09-11 09:00:40.189829 2024-09-11 09:00:40.189831 d4f88073-c44b-487c-b591-c62706c9ad9e {"md5": "aeaf5189782cde8b5d2ca198145f913d", "pid": "1008358118", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16090366-X", "source": "GND"}], "variant_name": ["Comisión de Cultura del Senado de México", "Comisión de Cultura", "Mexiko. Senado. Comisión de Cultura"], "preferred_name": "Mexiko. Comisión de Cultura", "country_associated": "mx", "variant_access_point": ["Comisión de Cultura del Senado de México. Unveraenderte Form", "Comisión de Cultura. Mexiko", "Mexiko. Senado. Comisión de Cultura"], "authorized_access_point": "Mexiko. Comisión de Cultura"} 1 +2024-09-11 09:00:40.244329 2024-09-11 09:00:40.244334 d623b6ef-dedf-45dd-ba9a-ca0bee58a7fb {"md5": "a4cd4589aa2c7ee77f6b29b6f379f5af", "pid": "1008359025", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16090378-6", "source": "GND"}], "variant_name": ["Goldegger Dialoge Gesundheit Ist Lernbar, 29", "Dialoge Gesundheit Ist Lernbar, 29"], "preferred_name": "Goldegger Dialoge, 29", "country_associated": "au", "variant_access_point": ["Goldegger Dialoge Gesundheit Ist Lernbar, 29, 2010, Goldegg", "Dialoge Gesundheit Ist Lernbar, 29, 2010, Goldegg"], "authorized_access_point": "Goldegger Dialoge, 29, 2010, Goldegg"} 1 +2024-09-11 09:00:40.310789 2024-09-11 09:00:40.310794 9b314880-7ae0-418f-8b86-f99efa6cf398 {"md5": "037ea4c2e4f48353039bef7c8be52e18", "pid": "1008374040", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16090448-1", "source": "GND"}], "preferred_name": "InfoDental Mitte", "country_associated": "gw", "authorized_access_point": "InfoDental Mitte, 2010, Frankfurt, Main"} 1 +2024-09-11 09:00:40.363252 2024-09-11 09:00:40.363256 aa362b9a-2a61-4c30-9174-2e6a5db2ed4d {"md5": "f9dd63a75b5bc1c44b36374abdb1be81", "pid": "1008509957", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16091086-9", "source": "GND"}], "variant_name": ["Universidad del Norte. Instituto de Estudios en Educación"], "preferred_name": "Instituto de Estudios en Educación", "country_associated": "ck", "variant_access_point": ["Universidad del Norte. Barranquilla. Instituto de Estudios en Educación"], "authorized_access_point": "Instituto de Estudios en Educación. Barranquilla"} 1 +2024-09-11 09:00:40.421233 2024-09-11 09:00:40.421237 ca6d5987-44dc-461e-9be3-5b637acd1856 {"md5": "d97770e04cd31ffa7c9c6829dd387e29", "pid": "1008705683", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16091913-7", "source": "GND"}], "preferred_name": "Exposição Jorge dos Reis, Typographia", "country_associated": "po", "authorized_access_point": "Exposição Jorge dos Reis, Typographia, 2001, Lissabon"} 1 +2024-09-11 09:00:40.522928 2024-09-11 09:00:40.522933 e9c7920b-e002-4b9a-ae60-1529e4024aea {"md5": "bb0f6123b3d9d8d30cc10f971fc45370", "pid": "1008850411", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16092671-3", "source": "GND"}], "preferred_name": "Ausstellung von Werken Bildender Künstlerinnen und Künstler Schleswig-Holsteins, 57", "authorized_access_point": "Ausstellung von Werken Bildender Künstlerinnen und Künstler Schleswig-Holsteins, 57, 2010 - 2011, Kiel"} 1 +2024-09-11 09:00:40.589925 2024-09-11 09:00:40.589928 2fe22708-1acf-4296-8489-830ce1a19d7a {"md5": "b0b89c844f655c274bdd4107276a9a05", "pid": "1008982075", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16093263-4", "source": "GND"}], "preferred_name": "Ausstellung Solinger Künstler", "authorized_access_point": "Ausstellung Solinger Künstler"} 1 +2024-09-11 09:00:40.641395 2024-09-11 09:00:40.641399 512e0152-e25f-4531-8a51-48007f90fe77 {"md5": "2ff437d28ccb160b3004de070981eb6b", "pid": "1009099981", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16093920-3", "source": "GND"}], "variant_name": ["Foire Internationale d'Art", "Internationale Kunstmesse", "International Art Fair"], "preferred_name": "Europ' Art", "country_associated": "sz", "variant_access_point": ["Foire Internationale d'Art, 1998, Genf", "Internationale Kunstmesse, 1998, Genf", "International Art Fair, 1998, Genf"], "authorized_access_point": "Europ' Art, 1998, Genf"} 1 +2024-09-11 09:00:40.693951 2024-09-11 09:00:40.693955 f08044e4-36cc-40cf-96d1-11122e0b7772 {"md5": "bd06c907cfb7722717ab39dc9a7d0d64", "pid": "1009237543", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16094709-1", "source": "GND"}], "preferred_name": "The Mad French Posse", "country_associated": "fr", "authorized_access_point": "The Mad French Posse", "biographical_information": ["Jongleurgruppe"]} 1 +2024-09-11 09:00:40.749114 2024-09-11 09:00:40.749118 5e24b2dc-97bd-4a2f-8d85-a7c071454317 {"md5": "7c39aefa5c75e027671770d6a7c807ca", "pid": "1009363581", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16095580-4", "source": "GND"}], "preferred_name": "Tıp Etiği ve Tıp Hukuku Sempozyumu, 3", "country_associated": "tu", "authorized_access_point": "Tıp Etiği ve Tıp Hukuku Sempozyumu, 3, 2008, Istanbul"} 1 +2024-09-11 09:00:40.809361 2024-09-11 09:00:40.809365 bce07cff-ac9e-477e-b956-86c5dceae7d0 {"md5": "59085b0a9f68fe72a353faa4a36121ee", "pid": "1009625977", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16097576-1", "source": "GND"}], "variant_name": ["Jubiläumskongress Fünfzig Jahre Gesellschaft für Freie Publizistik - 50 Jahre Kampf für die Meinungsfreiheit"], "preferred_name": "Jubiläumskongress 50 Jahre Gesellschaft für Freie Publizistik - 50 Jahre Kampf für die Meinungsfreiheit", "variant_access_point": ["Jubiläumskongress Fünfzig Jahre Gesellschaft für Freie Publizistik - 50 Jahre Kampf für die Meinungsfreiheit, 2010, Kirchheim, Wipfra"], "authorized_access_point": "Jubiläumskongress 50 Jahre Gesellschaft für Freie Publizistik - 50 Jahre Kampf für die Meinungsfreiheit, 2010, Kirchheim, Wipfra"} 1 +2024-09-11 09:00:40.864451 2024-09-11 09:00:40.864455 16274fe9-9974-4e2c-bc7e-85c71a057959 {"md5": "1dc0eae1f2e512b3cfd9e10f6bfae3c1", "pid": "100963315", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "qualifier": "von Wasserburg", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/100963315", "source": "GND"}], "variant_name": ["Wasserburg, Thomas von"], "date_of_birth": "ca. 15. Jh.", "preferred_name": "Thomas, von Wasserburg", "country_associated": "gw", "variant_access_point": ["Wasserburg, Thomas von, ca. 15. Jh."], "authorized_access_point": "Thomas, von Wasserburg, ca. 15. Jh."} 1 +2024-09-11 09:00:40.922708 2024-09-11 09:00:40.922711 d0e65242-65de-4c20-9795-a15d65dda509 {"md5": "b71e45cd03818e8c23bde72d6d3e5a8d", "pid": "1009786741", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16098676-X", "source": "GND"}], "preferred_name": "Johndoe", "country_associated": "no", "authorized_access_point": "Johndoe"} 1 +2024-09-11 09:00:40.977373 2024-09-11 09:00:40.977378 cf408410-89dc-47c7-b484-775839984bc8 {"md5": "4e223018631a453ff070666ec5771040", "pid": "1010306146", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16102695-3", "source": "GND"}], "variant_name": ["Iberoamerikanische Kulturtage Stuttgart, Esslingen, Tübingen", "Iberoamerikanische Kulturtage", "Iberoamerikanische Kulturtage", "Iberoamerikanische Kulturtage", "Iberoamerikanische Kulturtage"], "preferred_name": "Iberoamerikanische Kulturtage", "variant_access_point": ["Iberoamerikanische Kulturtage Stuttgart, Esslingen, Tübingen. 2010", "Iberoamerikanische Kulturtage, 2010, Stuttgart", "Iberoamerikanische Kulturtage, 2010, Esslingen am Neckar", "Iberoamerikanische Kulturtage, 2010, Tübingen", "Iberoamerikanische Kulturtage, 2010"], "authorized_access_point": "Iberoamerikanische Kulturtage, 2010, Stuttgart u.a.", "biographical_information": ["Kulturveranstaltung in Stuttgart, Esslingen u. Tübingen, 24.9.-16.10.2010, veranstaltet vom Arbeitskreis der Lateinamerikanischen Vereine in Kooperation mit dem Kulturamt der Stadt Stuttgart"]} 1 +2024-09-11 09:00:41.041429 2024-09-11 09:00:41.041433 22008624-28c0-46ac-99a0-a74f9c73aec3 {"md5": "90076cf062601191c23074096d3b6be6", "pid": "1010326945", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16102857-3", "source": "GND"}], "variant_name": ["Vorstadtverein Alt-Gründlach", "Verein Alt-Gründlach"], "preferred_name": "Alt-Gründlach", "country_associated": "gw", "variant_access_point": ["Vorstadtverein Alt-Gründlach. Großgründlach", "Verein Alt-Gründlach. Großgründlach"], "date_of_establishment": "1972", "authorized_access_point": "Alt-Gründlach. Großgründlach"} 1 +2024-09-11 09:00:41.092146 2024-09-11 09:00:41.09215 15238a30-5caf-4cd2-9c3e-a3b9732f004a {"md5": "b40fa701bce9959cacf3a05e4e982b6f", "pid": "101054389X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16104309-4", "source": "GND"}], "variant_name": ["Public Institution Tourism Centre", "Betrieb des Öffentlichen Rechtes Tourismuszentrum"], "preferred_name": "Viešoji Istaiga Turizmo Centras", "country_associated": "li", "variant_access_point": ["Public Institution Tourism Centre. Palušé", "Betrieb des Öffentlichen Rechtes Tourismuszentrum. Palušé"], "authorized_access_point": "Viešoji Istaiga Turizmo Centras. Palušé"} 1 +2024-09-11 09:00:41.146016 2024-09-11 09:00:41.14602 8d4161ad-d343-4121-85e3-38fe204d3aa7 {"md5": "232e7fcdad78fbdb8ca7296a295bd79f", "pid": "1010664034", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16105153-4", "source": "GND"}], "variant_name": ["Institute of Complex Medical Engineering", "Institute of Complex Medical Engineering", "ICME"], "preferred_name": "Kagawa Daigaku. Institute of Complex Medical Engineering", "country_associated": "ja", "variant_access_point": ["Institute of Complex Medical Engineering. Kagawa Daigaku", "Institute of Complex Medical Engineering. Takamatsu, Kagawa-Ken", "ICME. Abkuerzung"], "authorized_access_point": "Kagawa Daigaku. Institute of Complex Medical Engineering"} 1 +2024-09-11 09:00:41.207266 2024-09-11 09:00:41.207269 a1b0982a-924c-477d-9e30-eb3919aa9592 {"md5": "e7561cf5d9d66794b64125816ebd9f3d", "pid": "1010670174", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16105173-X", "source": "GND"}], "variant_name": ["Granger & Co."], "preferred_name": "A. O. Granger & Co.", "country_associated": "xxu", "variant_access_point": ["Granger & Co.. Philadelphia, Pa."], "authorized_access_point": "A. O. Granger & Co.. Philadelphia, Pa."} 1 +2024-09-11 09:00:41.25963 2024-09-11 09:00:41.259634 5cf78c27-f1f9-4083-9b34-df1a96714c5f {"md5": "3693664333be00771ee07d932e30bf1d", "pid": "1010696092", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16105377-4", "source": "GND"}], "variant_name": ["Queensland. Bureau of Sugar Experiment Stations. Division of Pathology", "Division of Pathology"], "preferred_name": "Queensland. Division of Pathology", "country_associated": "at", "variant_access_point": ["Queensland. Bureau of Sugar Experiment Stations. Division of Pathology", "Division of Pathology. Queensland"], "authorized_access_point": "Queensland. Division of Pathology"} 1 +2024-09-11 09:00:41.326141 2024-09-11 09:00:41.326144 3842dd54-bfeb-4c55-9702-364e5544a181 {"md5": "abd39d6f4e408717db70bc1578ebd49f", "pid": "1010769979", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16105952-1", "source": "GND"}], "preferred_name": "Museu da República", "country_associated": "bl", "authorized_access_point": "Museu da República. Brasília"} 1 +2024-09-11 09:01:24.919131 2024-09-11 09:01:24.919134 0acf1269-1089-4731-bb20-cc032d84a657 {"md5": "9ca4a9488fd50a7aafa5a99366076d11", "pid": "1145891209", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1145891209", "source": "GND"}], "date_of_birth": "1959", "preferred_name": "Plasa, Carl", "authorized_access_point": "Plasa, Carl, 1959-"} 1 +2024-09-11 09:00:41.379325 2024-09-11 09:00:41.379328 fdeea789-088c-4b69-b2e8-e66babddf59e {"md5": "e732d01b55d2ea0d0ffaaa2b87261c40", "pid": "1010987895", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16151659-2", "source": "GND"}], "variant_name": ["Jusos Neuss", "Neusser Jungsozialistinnen"], "preferred_name": "Sozialdemokratische Partei Deutschlands. Arbeitsgemeinschaft der Jungsozialisten und Jungsozialistinnen. Stadtverband Neuss", "country_associated": "gw", "variant_access_point": ["Jusos Neuss", "Neusser Jungsozialistinnen"], "authorized_access_point": "Sozialdemokratische Partei Deutschlands. Arbeitsgemeinschaft der Jungsozialisten und Jungsozialistinnen. Stadtverband Neuss"} 1 +2024-09-11 09:00:41.436461 2024-09-11 09:00:41.436464 8e8623f8-af4b-4c67-a121-567ff15dd5bf {"md5": "f4b28b8dd8bf909305b378749053e2cb", "pid": "1011029162", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16152084-4", "source": "GND"}], "preferred_name": "Internationaler Hörgeräte-Akustiker-Kongress, 48", "authorized_access_point": "Internationaler Hörgeräte-Akustiker-Kongress, 48, 2003, Nürnberg"} 1 +2024-09-11 09:00:41.487282 2024-09-11 09:00:41.487285 eff99401-c7b4-47fc-9c1e-77bae58748b0 {"md5": "6dd457c13731a748c10d0665bf92ddbc", "pid": "1011038692", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16152180-0", "source": "GND"}], "variant_name": ["Gleichstellungsbeauftragte"], "preferred_name": "Landkreis Bernkastel-Wittlich. Gleichstellungsbeauftragte", "country_associated": "gw", "variant_access_point": ["Gleichstellungsbeauftragte. Landkreis Bernkastel-Wittlich"], "authorized_access_point": "Landkreis Bernkastel-Wittlich. Gleichstellungsbeauftragte"} 1 +2024-09-11 09:00:41.539926 2024-09-11 09:00:41.539928 879af826-71a7-4f3c-bccc-cf7a9c508484 {"md5": "4d06b6645bb68641c3eead44497b83f7", "pid": "1011064766", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16152476-X", "source": "GND"}], "preferred_name": "Multidisciplinary International Conference on Qualitative Research in Developing Countries, 1", "country_associated": "pk", "authorized_access_point": "Multidisciplinary International Conference on Qualitative Research in Developing Countries, 1, 2006, Karatschi"} 1 +2024-09-11 09:00:41.602409 2024-09-11 09:00:41.602413 843b8fef-801c-468c-9b43-cfa583885733 {"md5": "029ec9fd712c19c1a6a8f027036dbc89", "pid": "1011072602", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16152499-0", "source": "GND"}], "preferred_name": "Exposición Escrito Está. Poesía Experimental en Espanã (1963 - 1984)", "country_associated": "sp", "authorized_access_point": "Exposición Escrito Está. Poesía Experimental en Espanã (1963 - 1984), 2009 - 2010, Vitoria; Valladolid"} 1 +2024-09-11 09:00:41.651954 2024-09-11 09:00:41.651957 aaad8db0-64eb-494f-ace7-cead2cf33fec {"md5": "e0c6f74939d2be252f54d523dc2b7bd7", "pid": "1011184176", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1011184176", "source": "GND"}], "preferred_name": "Colombo, Margot", "country_associated": "it", "authorized_access_point": "Colombo, Margot"} 1 +2024-09-11 09:00:41.70703 2024-09-11 09:00:41.707035 61672309-4cbe-4fec-9bcd-8ed1638ae858 {"md5": "2f3dd16e2bddf517d264642902d1b6d0", "pid": "1011184672", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1011184672", "source": "GND"}], "variant_name": ["Williams, K. E."], "preferred_name": "Williams, Karina E.", "country_associated": "gw", "variant_access_point": ["Williams, K. E."], "authorized_access_point": "Williams, Karina E."} 1 +2024-09-11 09:00:41.770931 2024-09-11 09:00:41.770936 7df28e10-6519-4b43-9371-a671b095ce53 {"md5": "538e1d816ed277bde99e4a6bd6df675b", "pid": "1011196735", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16153549-5", "source": "GND"}], "variant_name": ["AE"], "preferred_name": "Akenerji Elektrik Üretim A. Ş", "country_associated": "tu", "variant_access_point": ["AE. Abkuerzung"], "authorized_access_point": "Akenerji Elektrik Üretim A. Ş. Istanbul"} 1 +2024-09-11 09:00:41.8289 2024-09-11 09:00:41.828902 7e2a383f-f898-4a37-9b2a-2789e76d2c04 {"md5": "1e989b31b254607ef1b5f585cd1ec805", "pid": "1011276259", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1011276259", "source": "GND"}], "date_of_birth": "1852", "date_of_death": "1924", "preferred_name": "Grueber, Paul", "country_associated": "au", "authorized_access_point": "Grueber, Paul, 1852-1924"} 1 +2024-09-11 09:00:41.912089 2024-09-11 09:00:41.912093 9b3fb208-884e-444f-85c8-c2c7b2eb8144 {"md5": "4d86a32dfd6001afd24b0dda9a9e3842", "pid": "1011311550", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1011311550", "source": "GND"}], "preferred_name": "Rebisant, Günther R.", "country_associated": "au", "authorized_access_point": "Rebisant, Günther R.", "biographical_information": ["Schwerpunkt: Wirtschaftsstrafrecht"]} 1 +2024-09-11 09:00:41.978511 2024-09-11 09:00:41.978514 2c1bec2b-3256-4937-ade5-c36ea5e4281e {"md5": "882b7d1d4909035309b3bdd410377a95", "pid": "1011400707", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1011400707", "source": "GND"}], "date_of_birth": "1981", "preferred_name": "Demirci, Stefanie", "authorized_access_point": "Demirci, Stefanie, 1981-", "biographical_information": ["Diss. Technische Universität München, Fakultät für Informatik"]} 1 +2024-09-11 09:00:42.035989 2024-09-11 09:00:42.035992 a2e24594-4c66-4a3c-800c-bacef165f2fd {"md5": "2324ebad224d2d7c783cda4ba6312925", "pid": "1011449145", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1011449145", "source": "GND"}], "date_of_birth": "1971", "preferred_name": "Kay, Tamara", "country_associated": "xxu", "authorized_access_point": "Kay, Tamara, 1971-"} 1 +2024-09-11 09:00:42.095046 2024-09-11 09:00:42.09505 d903c457-ff30-467d-82c5-c6d595e475d4 {"md5": "87fec8b48708f9829dc74b647482c581", "pid": "1011453215", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1011453215", "source": "GND"}], "variant_name": ["Freer, Jürgen Sauerland-"], "date_of_birth": "1953", "preferred_name": "Sauerland-Freer, Jürgen", "country_associated": "gw", "variant_access_point": ["Freer, Jürgen Sauerland-, 1953-"], "authorized_access_point": "Sauerland-Freer, Jürgen, 1953-", "biographical_information": ["Leiter des Kulturbüros der Stadt Krefeld"]} 1 +2024-09-11 09:00:42.148688 2024-09-11 09:00:42.148691 3a214095-4239-43e2-be52-6f4bf0c7437c {"md5": "4ab2b4ae584c1d60b58657404d7e68c4", "pid": "1011475596", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1011475596", "source": "GND"}], "date_of_birth": "1972", "preferred_name": "Ásgeirsson, Daníel", "country_associated": "sw", "authorized_access_point": "Ásgeirsson, Daníel, 1972-"} 1 +2024-09-11 09:00:42.201507 2024-09-11 09:00:42.20151 cf7043ae-8330-4e00-a7fe-c7a192edf008 {"md5": "ebca61a50a88c78fbb7f610097b5a53e", "pid": "1011506084", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16155338-2", "source": "GND"}], "variant_name": ["Verband Deutscher Eisenbahn-Ingenieure. Akademie für Bahnsysteme", "VDEI-Akademie für Bahnsysteme"], "preferred_name": "Akademie für Bahnsysteme", "country_associated": "gw", "variant_access_point": ["Verband Deutscher Eisenbahn-Ingenieure. Akademie für Bahnsysteme", "VDEI-Akademie für Bahnsysteme. Frankfurt, Main"], "authorized_access_point": "Akademie für Bahnsysteme. Frankfurt, Main"} 1 +2024-09-11 09:00:42.259008 2024-09-11 09:00:42.259013 deba0598-0ac0-4b1a-bda5-ade2be69fb9d {"md5": "6171c07d8d59c01b834361efdb2e905a", "pid": "1011618362", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1011618362", "source": "GND"}], "variant_name": ["Merz, Ursula Kuttler-"], "date_of_birth": "19.12.1937", "date_of_death": "08.01.2023", "preferred_name": "Kuttler-Merz, Ursula", "country_associated": "gw", "variant_access_point": ["Merz, Ursula Kuttler-, 1937-2023"], "authorized_access_point": "Kuttler-Merz, Ursula, 1937-2023", "biographical_information": ["Stadt- und Kulturlandschaftsführerin"]} 1 +2024-09-11 09:00:42.321205 2024-09-11 09:00:42.321209 07c01a77-0e55-4c78-9297-536de9be021c {"md5": "790e50c900a120403790872b1cd0f424", "pid": "1011673835", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1011673835", "source": "GND"}], "variant_name": ["DelValle, Eduardo"], "date_of_birth": "14.09.1951", "preferred_name": "Del Valle, Eduardo", "country_associated": "xxu", "variant_access_point": ["DelValle, Eduardo, 1951-"], "authorized_access_point": "Del Valle, Eduardo, 1951-"} 1 +2024-09-11 09:00:42.374237 2024-09-11 09:00:42.374241 3c5dc599-f274-49e1-8f1c-afe272d5021f {"md5": "0e7cbc66d3f2da78fe963df220ad7637", "pid": "1011705486", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1011705486", "source": "GND"}], "variant_name": ["Heinz, Josef"], "date_of_birth": "1815", "date_of_death": "1895", "preferred_name": "Heinz, Sebastian", "country_associated": "it", "variant_access_point": ["Heinz, Josef, 1815-1895"], "authorized_access_point": "Heinz, Sebastian, 1815-1895"} 1 +2024-09-11 09:00:42.427125 2024-09-11 09:00:42.427128 1bdaa0ab-83b7-4516-aa14-3195cd70562b {"md5": "e6ff7152755ca05653ce62f26e3ee684", "pid": "1011709368", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1011709368", "source": "GND"}], "variant_name": ["Myer, William de"], "date_of_birth": "1924", "preferred_name": "DeMyer, William", "variant_access_point": ["Myer, William de, 1924-"], "authorized_access_point": "DeMyer, William, 1924-"} 1 +2024-09-11 09:00:42.499813 2024-09-11 09:00:42.499817 bbd57fb1-76f0-4045-9a34-f5e65f14667b {"md5": "3a8b47a226e5e116c2b4b773fb1d9e53", "pid": "1011744619", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16156304-1", "source": "GND"}], "variant_name": ["ESANN, 18"], "preferred_name": "European Symposium on Artificial Neural Networks, 18", "country_associated": "be", "variant_access_point": ["ESANN, 18, 2010, Brügge"], "authorized_access_point": "European Symposium on Artificial Neural Networks, 18, 2010, Brügge"} 1 +2024-09-11 09:00:42.561613 2024-09-11 09:00:42.561617 c36597dd-7409-43e3-8192-df1788faf715 {"md5": "c28ea7b2eab71041ce50fbc6c6e34d12", "pid": "1011762676", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1011762676", "source": "GND"}], "variant_name": ["Im, Sŏng Ho", "임, 성호"], "date_of_birth": "ca. 5.3.1959", "preferred_name": "Im, Sŏng-ho", "country_associated": "ko", "variant_access_point": ["Im, Sŏng Ho, ca. 5.3.1959-", "임, 성호, ca. 5.3.1959-"], "parallel_access_point": ["임성호, ca. 5.3.1959-"], "authorized_access_point": "Im, Sŏng-ho, ca. 5.3.1959-", "biographical_information": ["Politikwissenschaftler, grad. MIT; Prof., Kyŏnghŭi Taehakkyo Chŏngchi Oegyo Hakkwa"]} 1 +2024-09-11 09:00:42.619826 2024-09-11 09:00:42.619829 d685c6df-67e0-4f6e-91a1-fb9286e4a35b {"md5": "95fb399cd022b5e4bb8dc022402dbd12", "pid": "1011811669", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16156677-7", "source": "GND"}], "variant_name": ["TSG von 1884", "TSG", "TSG von Achtzehnhundertvierundachtig"], "preferred_name": "Turn- und Sportgemeinschaft von 1884", "country_associated": "gw", "variant_access_point": ["TSG von 1884. Hohenhausen, Kalletal", "TSG. Hohenhausen, Kalletal", "TSG von Achtzehnhundertvierundachtig. Hohenhausen, Kalletal"], "authorized_access_point": "Turn- und Sportgemeinschaft von 1884. Hohenhausen, Kalletal"} 1 +2024-09-11 09:00:42.670749 2024-09-11 09:00:42.670751 4f7c7f0d-d6c2-43fb-9618-4ecb02f2dc86 {"md5": "a17042159aeb0898432621731c100265", "pid": "1011875829", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1011875829", "source": "GND"}], "date_of_birth": "1955", "preferred_name": "Brückl, Hans Peter", "country_associated": "au", "authorized_access_point": "Brückl, Hans Peter, 1955-"} 1 +2024-09-11 09:00:42.726659 2024-09-11 09:00:42.726662 984cc992-b2f5-4597-80cb-be29a8d95325 {"md5": "44c0062c2ec5c2d11bd6eff32bf9391a", "pid": "1011887444", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16157033-1", "source": "GND"}], "preferred_name": "Encontro Açoriano da Lusofonia, 3", "authorized_access_point": "Encontro Açoriano da Lusofonia, 3, 2008", "biographical_information": ["fand auf der Insel São Miguel statt"]} 1 +2024-09-11 09:00:42.778716 2024-09-11 09:00:42.778719 4ea4eecb-571c-4862-84d6-c34142172ae9 {"md5": "4c6c4053055d54ee46036fc82c3d7be1", "pid": "1011898012", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1011898012", "source": "GND"}], "date_of_birth": "1843", "date_of_death": "1909", "preferred_name": "Hofmann, Ottokar", "authorized_access_point": "Hofmann, Ottokar, 1843-1909"} 1 +2024-09-11 09:00:42.830095 2024-09-11 09:00:42.830099 84465fd0-6756-41d5-99b5-1eca5b5983b0 {"md5": "7575fbcf8b77afff54f78e7cb672e9b8", "pid": "1011967472", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16157425-7", "source": "GND"}], "preferred_name": "Förderverein Katharinenkapelle", "country_associated": "gw", "authorized_access_point": "Förderverein Katharinenkapelle. Landau, Pfalz"} 1 +2024-09-11 09:00:42.883954 2024-09-11 09:00:42.883957 cddf154e-77c9-4d5a-a4dc-c20d9372e2ca {"md5": "dd0c84f91f6be3d41f985183bcd4eecf", "pid": "1012126404", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012126404", "source": "GND"}], "preferred_name": "Karaca, Nilüfer", "authorized_access_point": "Karaca, Nilüfer", "biographical_information": ["Diss. Med. Fak., Orthopäd. Univ.-Klinik, Universität Magdeburg"]} 1 +2024-09-11 09:00:42.932202 2024-09-11 09:00:42.932205 b1f52b7f-bf7b-4fe4-b87f-712f9357bc74 {"md5": "7e42317c3a684e3cf14c27219f226abe", "pid": "1012244741", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16158656-9", "source": "GND"}], "variant_name": ["Universitatea din Bacău. Centre de Recherche Chimie Appliquée et Génie des Procedes", "Universitatea din Bacău. Facultatea de Inginerie. Centre de Recherche Chimie Appliquée et Génie des Procedes"], "preferred_name": "Centre de Recherche Chimie Appliquée et Génie des Procedes", "country_associated": "rm", "variant_access_point": ["Universitatea din Bacău. Centre de Recherche Chimie Appliquée et Génie des Procedes", "Universitatea din Bacău. Facultatea de Inginerie. Centre de Recherche Chimie Appliquée et Génie des Procedes"], "authorized_access_point": "Centre de Recherche Chimie Appliquée et Génie des Procedes. Bacău"} 1 +2024-09-11 09:00:42.986642 2024-09-11 09:00:42.986644 8a0e4a4d-c4f2-4ffe-a18b-e3c1f9758174 {"md5": "48527d4279c6532a8bb1c13482bd8be2", "pid": "1012247554", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012247554", "source": "GND"}], "variant_name": ["Bumiler, Erminia Rosa", "Stiller, Hermine"], "date_of_birth": "03.09.1859", "date_of_death": "04.08.1943", "preferred_name": "Stiller, Erminia Rosa", "country_associated": "gw", "variant_access_point": ["Bumiler, Erminia Rosa, 1859-1943", "Stiller, Hermine, 1859-1943"], "authorized_access_point": "Stiller, Erminia Rosa, 1859-1943"} 1 +2024-09-11 09:00:43.039077 2024-09-11 09:00:43.03908 7c2be6f0-dbb6-4a79-86ba-12712eb8e65b {"md5": "253f2249d997acdeffc757542e69bb61", "pid": "1012247589", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16158693-4", "source": "GND"}], "variant_name": ["Schreibwerkstatt"], "preferred_name": "Kempener Schreibwerkstatt", "country_associated": "gw", "variant_access_point": ["Schreibwerkstatt. Kempen"], "authorized_access_point": "Kempener Schreibwerkstatt"} 1 +2024-09-11 09:00:43.092064 2024-09-11 09:00:43.092067 f78a0d5e-7a85-4bdf-8d0a-952556a38051 {"md5": "b88ae4330517b5fa7d30468a0f15e4c7", "pid": "1012247627", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012247627", "source": "GND"}], "variant_name": ["Ebertsein, Sebastian Eber von", "Eberus ab Eberstein, Sebastianus", "Eberstein, Sebastianus Eberus ab", "Ebervs ab Eberstein, Sebastianvs"], "date_of_birth": "1574", "preferred_name": "Eber von Eberstein, Sebastian", "country_associated": "gw", "variant_access_point": ["Ebertsein, Sebastian Eber von, 1574-", "Eberus ab Eberstein, Sebastianus, 1574-", "Eberstein, Sebastianus Eberus ab, 1574-", "Ebervs ab Eberstein, Sebastianvs, 1574-"], "authorized_access_point": "Eber von Eberstein, Sebastian, 1574-"} 1 +2024-09-11 09:00:43.145385 2024-09-11 09:00:43.145389 be07dd06-19cf-40e9-8e77-17248af875f6 {"md5": "8f09998e404350eeb5f83ee4bb211a75", "pid": "1012262367", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012262367", "source": "GND"}], "date_of_birth": "24.08.1815", "date_of_death": "31.03.1874", "preferred_name": "Fecht, Ludwig Wilhelm", "country_associated": "gw", "authorized_access_point": "Fecht, Ludwig Wilhelm, 1815-1874", "biographical_information": ["Jurist, Direktor des Verwaltungshofs"]} 1 +2024-09-11 09:00:43.198219 2024-09-11 09:00:43.198223 0b5b625d-5d13-4c67-91b8-7d25f19edeb0 {"md5": "3afa9f94c5b512c77e35a3447b71684f", "pid": "1012277151", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012277151", "source": "GND"}], "variant_name": ["Kaufmann, Modest", "Modestus"], "date_of_birth": "07.05.1711", "date_of_death": "17.06.1768", "preferred_name": "Kaufmann, Modestus", "country_associated": "gw", "variant_access_point": ["Kaufmann, Modest, 1711-1768", "Modestus, 1711-1768"], "authorized_access_point": "Kaufmann, Modestus, 1711-1768", "biographical_information": ["Abt von Wiblingen"]} 1 +2024-09-11 09:00:43.260757 2024-09-11 09:00:43.260761 c17d9149-7be0-4044-891b-94b949e58008 {"md5": "8d7c303e0cc84e590b90eb1737b03837", "pid": "1012289915", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012289915", "source": "GND"}], "date_of_birth": "1565", "date_of_death": "1611", "preferred_name": "Müller, Jakob", "country_associated": "gw", "authorized_access_point": "Müller, Jakob, 1565-1611"} 1 +2024-09-11 09:00:43.325801 2024-09-11 09:00:43.325805 e1df000f-f4ca-4be4-8214-e66ef4a8315b {"md5": "0c628bf039546a8695d6bd9c305d9c57", "pid": "1012299805", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012299805", "source": "GND"}], "variant_name": ["Sayer, C.", "Sayer, Cosmas"], "date_of_birth": "11.10.1851", "date_of_death": "24.02.1899", "preferred_name": "Sayer, Kosmas", "country_associated": "gw", "variant_access_point": ["Sayer, C., 1851-1899", "Sayer, Cosmas, 1851-1899"], "authorized_access_point": "Sayer, Kosmas, 1851-1899", "biographical_information": ["Ingenieur, Prof."]} 1 +2024-09-11 09:00:43.388206 2024-09-11 09:00:43.388209 2a059e5b-1712-4e8b-b622-b161138a38e9 {"md5": "f4a195004bb761d8904f3725b58367b5", "pid": "1012301389", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012301389", "source": "GND"}], "date_of_birth": "14.05.1848", "date_of_death": "10.11.1911", "preferred_name": "Schill, Adolf", "country_associated": "gw", "authorized_access_point": "Schill, Adolf, 1848-1911", "biographical_information": ["Prof. an der Kunstakad. in Düsseldorf. - Architekt, Aquarellmaler, Ornamentzeichner, Kunstgewerbler"]} 1 +2024-09-11 09:00:45.547096 2024-09-11 09:00:45.5471 33462501-9fc3-4297-8cc8-267db77aa51a {"md5": "bf012933e3c3fc11cb4ae06a462b82a1", "pid": "1013363299", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1013363299", "source": "GND"}], "date_of_birth": "1903", "preferred_name": "Lapeyronnie, Gaston", "authorized_access_point": "Lapeyronnie, Gaston, 1903-"} 1 +2024-09-11 09:00:43.444408 2024-09-11 09:00:43.444413 1bb85507-f98e-4795-aa11-8ec9fd43f93b {"md5": "1949a7cdc70301948e2f70d719d049a0", "pid": "1012304973", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012304973", "source": "GND"}], "date_of_birth": "15.12.1743", "date_of_death": "06.01.1804", "preferred_name": "Schwab, Karl Philipp", "country_associated": "gw", "authorized_access_point": "Schwab, Karl Philipp, 1743-1804", "biographical_information": ["hohenzollerischer Hof- und Bergrat"]} 1 +2024-09-11 09:00:43.501585 2024-09-11 09:00:43.501588 864b21e0-dab2-4b39-83a2-151c01a4747f {"md5": "d21034b85346fe70092fba99d67f0aff", "pid": "1012336026", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012336026", "source": "GND"}], "variant_name": ["Aeschlimann-Fahrni, Daniel Johann", "Fahrni, Daniel Johann Aeschlimann-"], "date_of_birth": "1937", "preferred_name": "Aeschlimann, Daniel", "variant_access_point": ["Aeschlimann-Fahrni, Daniel Johann, 1937-", "Fahrni, Daniel Johann Aeschlimann-, 1937-"], "authorized_access_point": "Aeschlimann, Daniel, 1937-"} 1 +2024-09-11 09:00:43.559855 2024-09-11 09:00:43.559859 4378592c-d07e-4875-933c-890d9b8c8fc4 {"md5": "ff0952bd7660dbaafdd5b726138c4f29", "pid": "101234472X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/101234472X", "source": "GND"}], "date_of_birth": "1979", "preferred_name": "Schwenk, Michael", "country_associated": "gw", "authorized_access_point": "Schwenk, Michael, 1979-", "biographical_information": ["Studium der Sportwissenschaften mit Schwerpunkt Prävention und Rehabilitation an der Universität Heidelberg, 2007 mit der Magister-Prüfung abgeschlossen, 2011 in Sportwissenschaften promoviert", "05/2011 – 05/2012 Wissenschaftlicher Mitarbeiter des AGAPLESION Bethanien-Krankenhauses im Geriatrischen Zentrum, Klinikum der Universität Heidelberg", "seit 01/2016 Nachwuchsgruppenleiter im Netzwerk Alternsforschung an der Universität Heidelberg", "Diss. an der Fakultät für Verhaltens- und Empirische Kulturwissenschaften der Ruprecht-Karls-Universität Heidelberg"]} 1 +2024-09-11 09:00:43.635633 2024-09-11 09:00:43.635636 6c215a85-236a-4215-a492-fc9597fe1524 {"md5": "75b2ad02ebfdcbaaa4fd81d89e34dc11", "pid": "1012370755", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012370755", "source": "GND"}], "date_of_birth": "15.01.1898", "date_of_death": "02.11.1972", "preferred_name": "Wegner, Wilhelm", "country_associated": "gw", "authorized_access_point": "Wegner, Wilhelm, 1898-1972", "biographical_information": ["Prof. für Augenheilkunde in Freiburg"]} 1 +2024-09-11 09:00:43.688022 2024-09-11 09:00:43.688025 c33d3fa2-0d2d-4acc-aa06-fffa0326abf0 {"md5": "42292348858e044da52580a832f92215", "pid": "1012371964", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012371964", "source": "GND"}], "date_of_birth": "1502", "date_of_death": "1552", "preferred_name": "Wernlin, Hans", "country_associated": "gw", "authorized_access_point": "Wernlin, Hans, 1502-1552", "biographical_information": ["Gegenschreiber des Schwäbischen Kreises"]} 1 +2024-09-11 09:00:43.744996 2024-09-11 09:00:43.745 1ea8cdbf-84c1-445f-89fe-88338e046c23 {"md5": "c1b2f9191728d8cf6a2387f58d00300d", "pid": "1012374548", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012374548", "source": "GND"}], "date_of_birth": "26.02.1882", "date_of_death": "25.05.1962", "preferred_name": "Zimmerle, Hermann", "country_associated": "gw", "authorized_access_point": "Zimmerle, Hermann, 1882-1962", "biographical_information": ["Landforstmeister"]} 1 +2024-09-11 09:00:43.808879 2024-09-11 09:00:43.808883 a01b7448-5b1c-49d8-8914-4f4b608d9d50 {"md5": "253f77a46f182b1d4f2f41f01464762c", "pid": "1012379574", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012379574", "source": "GND"}], "date_of_birth": "01.11.1744", "date_of_death": "19.03.1833", "preferred_name": "Hauser, Franz Joseph", "country_associated": "gw", "authorized_access_point": "Hauser, Franz Joseph, 1744-1833"} 1 +2024-09-11 09:00:43.863452 2024-09-11 09:00:43.863457 bd1d8b3a-58c4-47d5-aea9-5ec7243f2ba9 {"md5": "0b35bba8807ea65d65be50f7a8a307df", "pid": "1012394212", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012394212", "source": "GND"}], "date_of_birth": "1876", "date_of_death": "1940", "preferred_name": "Uttendörfer, Bertram", "country_associated": "gw", "authorized_access_point": "Uttendörfer, Bertram, 1876-1940", "biographical_information": ["Direktor der Oberschule der Brüdergemeine in Königsfeld"]} 1 +2024-09-11 09:00:43.916291 2024-09-11 09:00:43.916294 83561094-13f1-4381-b3cb-87e623bac050 {"md5": "ac2449e400cc21a6a0ca7350047dea05", "pid": "101239705X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/101239705X", "source": "GND"}], "date_of_birth": "1897", "date_of_death": "1975", "preferred_name": "Zug, Otto", "country_associated": "gw", "authorized_access_point": "Zug, Otto, 1897-1975", "biographical_information": ["Lehrer"]} 1 +2024-09-11 09:00:43.973107 2024-09-11 09:00:43.973111 3c9d7b64-72ef-4d2e-95ae-2a5d36b2ab00 {"md5": "7afe5e45669a07eae074f6d630032d91", "pid": "1012398897", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012398897", "source": "GND"}], "date_of_birth": "1903", "preferred_name": "Licht, Hermann", "country_associated": "gw", "authorized_access_point": "Licht, Hermann, 1903-", "biographical_information": ["Arbeiter, Widerstandskämfer"]} 1 +2024-09-11 09:00:44.036252 2024-09-11 09:00:44.036255 3a4ce29d-f223-4847-ab3f-f9f957d937ab {"md5": "57e8d1634bdf210367e17227c76d1c39", "pid": "1012399737", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012399737", "source": "GND"}], "date_of_birth": "19.07.1870", "date_of_death": "XX.XX.1950", "preferred_name": "Kappus, Adolf", "country_associated": "gw", "authorized_access_point": "Kappus, Adolf, 1870-1950"} 1 +2024-09-11 09:00:44.099054 2024-09-11 09:00:44.099058 bd524f10-d919-416c-9a10-ba9e25b9e8f1 {"md5": "40c21958dc92e0e7f890c4665ee65278", "pid": "1012410234", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012410234", "source": "GND"}], "date_of_birth": "25.06.1894", "date_of_death": "04.07.1963", "preferred_name": "Schuler, Friedrich", "country_associated": "gw", "authorized_access_point": "Schuler, Friedrich, 1894-1963", "biographical_information": ["evang. Pfarrer in Bruchsal (1929-1934)"]} 1 +2024-09-11 09:00:44.154483 2024-09-11 09:00:44.154486 2ed1a5fd-4d3a-45b8-91ec-1762c9d99955 {"md5": "ef01a293ba494bae8ec552fcebf005b2", "pid": "1012413934", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "qualifier": "von Greifenstein", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012413934", "source": "GND"}], "variant_name": ["Ludwig, Wirtemberger", "Ludwig, Würtemberger", "Greiffenstein, Ludwig von", "Württemberg, Ludwig von"], "date_of_birth": "XX.XX.1465", "date_of_death": "25.05.1495", "preferred_name": "Ludwig, von Greifenstein", "country_associated": "gw", "variant_access_point": ["Ludwig, Wirtemberger, 1465-1495", "Ludwig, Würtemberger, 1465-1495", "Greiffenstein, Ludwig von, 1465-1495", "Württemberg, Ludwig von, 1465-1495"], "authorized_access_point": "Ludwig, von Greifenstein, 1465-1495", "biographical_information": ["Unehelicher Sohn Graf Eberhards im Bart von Württemberg, ab 1480 Student in Tübingen, 1490 Dr. iur.; erhielt den Titel eines Herrn von Greifenstein"]} 1 +2024-09-11 09:00:44.207927 2024-09-11 09:00:44.20793 318914bf-3133-4481-8cbb-7a8a3042ac79 {"md5": "4077367098811efc22018340cc2ced9f", "pid": "1012484076", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16159419-0", "source": "GND"}], "variant_name": ["COORDINATION, 13"], "preferred_name": "International Conference on Coordination Models and Languages, 13", "country_associated": "ic", "variant_access_point": ["COORDINATION, 13, 2011, Reykjavík"], "authorized_access_point": "International Conference on Coordination Models and Languages, 13, 2011, Reykjavík"} 1 +2024-09-11 09:00:44.259894 2024-09-11 09:00:44.259898 b5be8139-e812-4162-a5a5-bf4ce88db9d9 {"md5": "3506cef0b031aaea8d9fe2daa311a1c0", "pid": "1012546772", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012546772", "source": "GND"}], "date_of_birth": "1982", "preferred_name": "Piaggio, Constanza", "country_associated": "ag", "authorized_access_point": "Piaggio, Constanza, 1982-"} 1 +2024-09-11 09:00:44.312651 2024-09-11 09:00:44.312655 a1a40a91-bf22-4c9d-8472-328a9a41536b {"md5": "9c1bc92976b07d85e33efbca4c9dae2d", "pid": "1012559114", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012559114", "source": "GND"}], "date_of_birth": "15.03.1830", "date_of_death": "04.08.1905", "preferred_name": "Maier, Joseph", "country_associated": "gw", "authorized_access_point": "Maier, Joseph, 1830-1905", "biographical_information": ["Vorstand der Gewerbeschule in Konstanz"]} 1 +2024-09-11 09:00:44.37757 2024-09-11 09:00:44.377575 77152f54-3c62-421d-946a-46016dbf0f8b {"md5": "50b8995b5ed4eb2b77df56f8e9f730dd", "pid": "1012580350", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012580350", "source": "GND"}], "date_of_birth": "1937", "preferred_name": "Fröhlich, Ursel", "country_associated": "gw", "authorized_access_point": "Fröhlich, Ursel, 1937-"} 1 +2024-09-11 09:00:44.427376 2024-09-11 09:00:44.42738 c84ecbf0-6279-4f12-b5c8-06e8ac99e137 {"md5": "7c7da4ba1842c8ff68ad7e5a6283825d", "pid": "1012659720", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012659720", "source": "GND"}], "preferred_name": "Sonhard, Eiag", "authorized_access_point": "Sonhard, Eiag"} 1 +2024-09-11 09:00:44.476229 2024-09-11 09:00:44.476231 6d849e6d-905b-4e1b-aa71-2a806af18450 {"md5": "3f6b042b51f74a3d1e557e42fa9ee9ff", "pid": "1012670813", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012670813", "source": "GND"}], "date_of_birth": "1938", "preferred_name": "Peter, Klaus", "country_associated": "gw", "authorized_access_point": "Peter, Klaus, 1938-"} 1 +2024-09-11 09:00:44.530856 2024-09-11 09:00:44.53086 ca452c5b-d290-4281-8fb2-bdff2df52eec {"md5": "73a7d7f13f58d75dd4bacd62ce54cb9b", "pid": "1012703487", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012703487", "source": "GND"}], "date_of_birth": "1921", "date_of_death": "2006", "preferred_name": "Staedele, Rolf", "country_associated": "gw", "authorized_access_point": "Staedele, Rolf, 1921-2006", "biographical_information": ["Mundartdichter, freier Journalist u. Sachbuchautor"]} 1 +2024-09-11 09:00:44.584898 2024-09-11 09:00:44.584902 e9c55df0-8d46-491a-bfe8-14b932833c07 {"md5": "7c040ea0163081faf567f7873afbb4b8", "pid": "1012706826", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012706826", "source": "GND"}], "date_of_birth": "14.05.1918", "preferred_name": "Berlin, Willi", "country_associated": "gw", "authorized_access_point": "Berlin, Willi, 1918-", "biographical_information": ["Bauer, Arbeiter"]} 1 +2024-09-11 09:00:44.652569 2024-09-11 09:00:44.652572 3d4b4026-b52f-406a-ae36-0c6358a9222a {"md5": "28d0c544a4e1e6e0060ad5adfbe6b1cb", "pid": "1012770982", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012770982", "source": "GND"}], "date_of_birth": "24.01.1893", "date_of_death": "XX.XX.1995", "preferred_name": "Schrägle, Marie", "country_associated": "gw", "authorized_access_point": "Schrägle, Marie, 1893-1995"} 1 +2024-09-11 09:00:44.706782 2024-09-11 09:00:44.706786 883c5e17-c1f2-4036-aa5c-ef0b3e8474c4 {"md5": "770a2d74fdd258ea243d259f3af1e8c8", "pid": "1012781593", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012781593", "source": "GND"}], "variant_name": ["Löw, Jogi"], "date_of_birth": "03.02.1960", "preferred_name": "Löw, Joachim", "country_associated": "gw", "variant_access_point": ["Löw, Jogi, 1960-"], "authorized_access_point": "Löw, Joachim, 1960-", "biographical_information": ["Fußballbundestrainer (2006-)", "Fußballspieler"]} 1 +2024-09-11 09:00:44.75723 2024-09-11 09:00:44.757233 ba3674cb-1433-4118-a0d5-78dc2cab1fc3 {"md5": "15264f7c5210d8ef49d92d4af85957bc", "pid": "1012785815", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012785815", "source": "GND"}], "date_of_birth": "03.04.1802", "date_of_death": "05.05.1860", "preferred_name": "Maus, Josef", "country_associated": "gw", "authorized_access_point": "Maus, Josef, 1802-1860", "biographical_information": ["Färber, Politiker, Gastwirt; Mitglied der Republikaner; wahrscheinlich beteiligt am Heckerzug als Anführer der Tengener Mannschaft."]} 1 +2024-09-11 09:00:44.807315 2024-09-11 09:00:44.807318 bc19b2c4-21d3-42e5-ab02-d18c2ca5cdc7 {"md5": "94c5dac34bcdcf5d342111f0901e94b2", "pid": "1012795519", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012795519", "source": "GND"}], "date_of_birth": "18.11.1870", "date_of_death": "18.01.1951", "preferred_name": "Schmitthenner, Wilhelm", "country_associated": "gw", "authorized_access_point": "Schmitthenner, Wilhelm, 1870-1951", "biographical_information": ["Evang. Pfarrer"]} 1 +2024-09-11 09:00:44.859223 2024-09-11 09:00:44.859226 8dfb8854-30a1-4ae0-8afb-83127a8301e6 {"md5": "8471467ebca2e27ea9d1a1bb0dbfffaa", "pid": "1012797198", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012797198", "source": "GND"}], "date_of_birth": "20.10.1933", "preferred_name": "Wagenbach, Gustav", "country_associated": "gw", "authorized_access_point": "Wagenbach, Gustav, 1933-"} 1 +2024-09-11 09:00:44.913158 2024-09-11 09:00:44.913163 441e9c6d-777a-4efb-837e-8f66d47cacbd {"md5": "eff8c840c266aa02ff8985b3e239cc7a", "pid": "1012805433", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012805433", "source": "GND"}], "date_of_birth": "19.12.1894", "date_of_death": "25.06.1978", "preferred_name": "Mauch, Maria Alberta", "country_associated": "gw", "authorized_access_point": "Mauch, Maria Alberta, 1894-1978", "biographical_information": ["Priorin des Klosters vom Heiligen Grab in Baden-Baden 1962-1978; Leiterin der Klosterschule"]} 1 +2024-09-11 09:00:44.980624 2024-09-11 09:00:44.980627 9977f527-68a2-4185-b92d-e6a07034d861 {"md5": "aea773641be2b81d9410f1b71bb601dc", "pid": "1012879887", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012879887", "source": "GND"}], "variant_name": ["Behera, Harendra Kumar", "Behera, Harendra"], "preferred_name": "Kumar Behera, Harendra", "variant_access_point": ["Behera, Harendra Kumar", "Behera, Harendra"], "authorized_access_point": "Kumar Behera, Harendra"} 1 +2024-09-11 09:00:45.032621 2024-09-11 09:00:45.032626 8f9f4c4f-6354-4152-b08c-a72ed86f8413 {"md5": "6ad7faddd0a290c7d3fde614876489b5", "pid": "1012883744", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012883744", "source": "GND"}], "date_of_birth": "1984", "preferred_name": "Goel, Namita", "country_associated": "ii", "authorized_access_point": "Goel, Namita, 1984-", "biographical_information": ["Diss. Fachbereich Physik, TU Darmstadt"]} 1 +2024-09-11 09:00:45.086884 2024-09-11 09:00:45.086889 962c6a92-8b2a-4943-b969-94d7c8eaac70 {"md5": "c36f53279940087badbf03f3bd6d03cf", "pid": "1012992349", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1012992349", "source": "GND"}], "date_of_death": "23.03.1633", "preferred_name": "Schwancke, Christian", "country_associated": "gw", "authorized_access_point": "Schwancke, Christian, -1633", "biographical_information": ["Mitglied der Räuberbande um Nicol List; wurde in Celle aufs Rad geflochten"]} 1 +2024-09-11 09:00:45.137412 2024-09-11 09:00:45.137415 578abec2-03bc-4f4c-a3b3-9a69d1603da5 {"md5": "1e0d9457cf4caf269fc62e00ae392b17", "pid": "1013119495", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1013119495", "source": "GND"}], "preferred_name": "Harnack, Fritz", "country_associated": "gw", "authorized_access_point": "Harnack, Fritz"} 1 +2024-09-11 09:00:45.193634 2024-09-11 09:00:45.193638 b5d563e3-dd87-4ec4-a788-92ec7997e647 {"md5": "c7e3aec2e0772c2fce7c5bb3218ff54e", "pid": "1013122089", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16162581-2", "source": "GND"}], "variant_name": ["Mekhon ha-Yetsu ha-Yiśreʾeli. Merkaz ha-Sefer ṿe-ha-Defus"], "preferred_name": "Merkaz ha-Sefer ṿe-ha-Defus", "country_associated": "is", "variant_access_point": ["Mekhon ha-Yetsu ha-Yiśreʾeli. Tel Aviv- Yafo. Merkaz ha-Sefer ṿe-ha-Defus"], "authorized_access_point": "Merkaz ha-Sefer ṿe-ha-Defus. Tel Aviv- Yafo"} 1 +2024-09-11 09:00:45.248272 2024-09-11 09:00:45.248275 ba59d750-2f84-4268-8c3d-1c98398e7b4a {"md5": "8feb6f6543f3188e7d8a142cc3868b99", "pid": "101314953X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/101314953X", "source": "GND"}], "date_of_birth": "1977", "preferred_name": "Scifo, Marco Maria Giuseppe", "country_associated": "it", "authorized_access_point": "Scifo, Marco Maria Giuseppe, 1977-"} 1 +2024-09-11 09:00:45.30143 2024-09-11 09:00:45.301433 7a48ece5-f000-4352-b760-bb7fd7663788 {"md5": "5b9cdac1424e1e45809867ef41b7311a", "pid": "1013171349", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "qualifier": "Württemberg, Königin", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1013171349", "source": "GND"}], "variant_name": ["Charlotte, Württemberg, Herzogin", "Charlotte Marie Ida Luise Hermine Mathilde, Württemberg, Königin", "Schaumburg-Lippe, Charlotte von", "Charlotte, Schaumburg-Lippe, Prinzessin", "Charlotte Marie Ida Luise Hermine Mathilde, Schaumburg-Lippe, Prinzessin", "Württemberg, Charlotte Königin von"], "date_of_birth": "10.10.1864", "date_of_death": "16.07.1946", "preferred_name": "Charlotte, Württemberg, Königin", "country_associated": "gw", "variant_access_point": ["Charlotte, Württemberg, Herzogin, 1864-1946", "Charlotte Marie Ida Luise Hermine Mathilde, Württemberg, Königin, 1864-1946", "Schaumburg-Lippe, Charlotte von, 1864-1946", "Charlotte, Schaumburg-Lippe, Prinzessin, 1864-1946", "Charlotte Marie Ida Luise Hermine Mathilde, Schaumburg-Lippe, Prinzessin, 1864-1946", "Württemberg, Charlotte Königin von, 1864-1946"], "authorized_access_point": "Charlotte, Württemberg, Königin, 1864-1946", "biographical_information": ["Tochter von Prinz Wilhelm zu Schaumburg-Lippe; seit 1886 2. Ehefrau von König Wilhelm II. und damit letzte Königin von Württemberg"]} 1 +2024-09-11 09:00:45.362169 2024-09-11 09:00:45.362173 2f57d9f9-8e1f-4afc-b599-cc1569290888 {"md5": "dc9942c22afe531c7c42bb45a5abc476", "pid": "1013251334", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1013251334", "source": "GND"}], "date_of_birth": "1981", "preferred_name": "Aumiller, Verena Nicole", "authorized_access_point": "Aumiller, Verena Nicole, 1981-", "biographical_information": ["Diss. Ludwig-Maximilians-Universität München, Fakultät für Chemie und Pharmazie"]} 1 +2024-09-11 09:00:45.425742 2024-09-11 09:00:45.425745 54cf9a45-d5a9-4b0e-bceb-e3405280d5f0 {"md5": "cb4f0f9a383cf239b53c961d60a3871d", "pid": "1013340728", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1013340728", "source": "GND"}], "date_of_birth": "1978", "preferred_name": "Arsiray, Nilgün Tülin", "authorized_access_point": "Arsiray, Nilgün Tülin, 1978-", "biographical_information": ["Diss. Universitätsmedizin der Univ. Mainz"]} 1 +2024-09-11 09:00:45.493408 2024-09-11 09:00:45.493412 b9cb231b-f6ff-463a-832b-5aa582524837 {"md5": "018f2145b912c2e04d5c880f5a5683a7", "pid": "1013349806", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1013349806", "source": "GND"}], "preferred_name": "Schnier, Hans-Jürgen", "authorized_access_point": "Schnier, Hans-Jürgen"} 1 +2024-09-11 09:00:45.661171 2024-09-11 09:00:45.661175 4954f185-3a73-4b91-b23c-fee4426a18d2 {"md5": "07dc550328c2974868241f6e98b1b71b", "pid": "1013536878", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16164544-6", "source": "GND"}], "variant_name": ["WingTai Asia"], "preferred_name": "Wing Tai Holdings Limited", "country_associated": "si", "variant_access_point": ["WingTai Asia. Singapur"], "authorized_access_point": "Wing Tai Holdings Limited. Singapur"} 1 +2024-09-11 09:00:45.718144 2024-09-11 09:00:45.718148 66a8c0fa-c6aa-489d-b15c-b7f04b2f45aa {"md5": "2ee1aa52d259922dd60fe16c7061f678", "pid": "1013590554", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1013590554", "source": "GND"}], "date_of_birth": "1959", "preferred_name": "Saller, Evelyn", "country_associated": "au", "authorized_access_point": "Saller, Evelyn, 1959-"} 1 +2024-09-11 09:00:45.780377 2024-09-11 09:00:45.780382 5bf80f63-921a-4a93-855b-0e827a082b80 {"md5": "e7c9412ab5392a0f6f1e86bff82bec98", "pid": "1013628063", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1013628063", "source": "GND"}], "date_of_birth": "1923", "date_of_death": "2014", "preferred_name": "Spada, Marcel", "country_associated": "fr", "authorized_access_point": "Spada, Marcel, 1923-2014", "biographical_information": ["Französ. Autor"]} 1 +2024-09-11 09:00:45.831573 2024-09-11 09:00:45.831577 bb478af5-f8b0-42e5-8961-a3837598a366 {"md5": "6e293e6b2c36836a83ea43ffe68550d0", "pid": "1013814339", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1013814339", "source": "GND"}], "date_of_birth": "1858", "date_of_death": "1930", "preferred_name": "Komm, Ferdinand", "country_associated": "au", "authorized_access_point": "Komm, Ferdinand, 1858-1930"} 1 +2024-09-11 09:00:45.880284 2024-09-11 09:00:45.880286 6a40600b-e292-4b97-b2ee-e126aaa33e4b {"md5": "f5b0e996afd16a8037bcfa6b3b59ec06", "pid": "1013871383", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "qualifier": "Familie", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1013871383", "source": "GND"}], "preferred_name": "Böckheler, Familie", "country_associated": "gw", "authorized_access_point": "Böckheler, Familie", "biographical_information": ["Dt. Familie aus Württemberg, Vorfahren des Theodor Gerhardt aus Langenburg, 1890-1966"]} 1 +2024-09-11 09:00:45.931088 2024-09-11 09:00:45.931093 0b660953-003b-49d7-a64f-4ca6510f0b40 {"md5": "4833f20f38bbc2429000b338d7aa54d8", "pid": "1013878353", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1013878353", "source": "GND"}], "variant_name": ["Soon, Il Kwon", "Kwon, Soon Il", "Il, Kwon Soon"], "preferred_name": "Soon Il Kwon", "variant_access_point": ["Soon, Il Kwon", "Kwon, Soon Il", "Il, Kwon Soon"], "authorized_access_point": "Soon Il Kwon"} 1 +2024-09-11 09:00:45.988569 2024-09-11 09:00:45.988573 58ec3307-7bfe-4dd5-838a-ac2ee324b58b {"md5": "2b795d3b050273602d2df24d20f73460", "pid": "1013882156", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1013882156", "source": "GND"}], "preferred_name": "Pfeiffer, Georg", "country_associated": "ru", "authorized_access_point": "Pfeiffer, Georg", "biographical_information": ["Prof. Univ. Kiew, Mitglied d. Ukrainischen Akad. d. Wiss."]} 1 +2024-09-11 09:00:46.050162 2024-09-11 09:00:46.050165 ce880bfe-19b2-483c-a6f9-c9755f5d9679 {"md5": "6da97fa7f441efa8f92de9cd37f6c44a", "pid": "1014065240", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1014065240", "source": "GND"}], "variant_name": ["Dai, Jieming", "Dai Jieming", "Dai, Jie ming", "Dai Jie ming", "Daijieming", "戴杰铭", "戴, 杰铭", "戴杰銘", "戴, 杰銘"], "date_of_birth": "1973", "preferred_name": "Taylor, Jeremy E.", "country_associated": "xxk", "variant_access_point": ["Dai, Jieming, 1973-", "Dai Jieming, 1973-", "Dai, Jie ming, 1973-", "Dai Jie ming, 1973-", "Daijieming, 1973-", "戴杰铭, 1973-", "戴, 杰铭, 1973-", "戴杰銘, 1973-", "戴, 杰銘, 1973-"], "authorized_access_point": "Taylor, Jeremy E., 1973-", "biographical_information": ["lecturer in Chinese Studies at the School of East Asian Studies, Univ. of Sheffield"]} 1 +2024-09-11 09:00:46.107836 2024-09-11 09:00:46.10784 e737050d-50fe-43ad-af55-e03e567f2ed0 {"md5": "891570739708e3980d18a1c44fe1aa32", "pid": "1014089158", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1014089158", "source": "GND"}], "date_of_birth": "1977", "preferred_name": "Stephens, Mark B.", "authorized_access_point": "Stephens, Mark B., 1977-"} 1 +2024-09-11 09:00:46.161225 2024-09-11 09:00:46.161228 931820c5-934d-45d5-9104-69da04ffebbc {"md5": "10c6806fc6c4f2cc29c0faabd17098d3", "pid": "1014092191", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1014092191", "source": "GND"}], "date_of_birth": "1983", "preferred_name": "Maurer, Odilo", "country_associated": "gw", "authorized_access_point": "Maurer, Odilo, 1983-", "biographical_information": ["Diss. Univ. Regensburg, Medizin. Fak."]} 1 +2024-09-11 09:00:46.264864 2024-09-11 09:00:46.264866 21dfaf22-b7ad-44d9-89ab-8d5336622de8 {"md5": "baa6eec46d5acc1a88a0e37910c94829", "pid": "1014136539", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1014136539", "source": "GND"}], "date_of_birth": "1913", "preferred_name": "Tischmeyer, Heinz", "authorized_access_point": "Tischmeyer, Heinz, 1913-"} 1 +2024-09-11 09:00:46.316537 2024-09-11 09:00:46.316538 cd282a0f-2f0c-4af4-83db-5fa3abf50b05 {"md5": "926395e119e06a75a3769b39526af5a2", "pid": "1014143454", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1014143454", "source": "GND"}], "date_of_birth": "1894", "date_of_death": "1978", "preferred_name": "Schreiner, Otto", "country_associated": "gw", "authorized_access_point": "Schreiner, Otto, 1894-1978"} 1 +2024-09-11 09:00:46.381677 2024-09-11 09:00:46.38168 42adf902-1238-4789-b601-62f44b0d1545 {"md5": "51c69b99971aeda11563de5a6fedf5ec", "pid": "1014223768", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1014223768", "source": "GND"}], "preferred_name": "Frank, Martin L.", "authorized_access_point": "Frank, Martin L.", "biographical_information": ["Laureato in matematica e fisica all'Univ. di Monaco"]} 1 +2024-09-11 09:00:46.448025 2024-09-11 09:00:46.448029 a109f035-cfb4-4fd7-a51b-b6602eda27b8 {"md5": "28dd2335f02343a3c395d39fc7556126", "pid": "101425762X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/101425762X", "source": "GND"}], "date_of_birth": "27.04.1898", "date_of_death": "15.11.1963", "preferred_name": "Bürger, Gerhard", "country_associated": "gw", "authorized_access_point": "Bürger, Gerhard, 1898-1963"} 1 +2024-09-11 09:00:46.504799 2024-09-11 09:00:46.504802 a48cb6bf-8245-440a-8585-1be1aaa9ea85 {"md5": "1de3176c785318ca1f004d19fdd2e13f", "pid": "1014290287", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1014290287", "source": "GND"}], "date_of_birth": "1971", "preferred_name": "Lemon, Robert", "authorized_access_point": "Lemon, Robert, 1971-", "biographical_information": ["Assistant Professor of German, University of Oklahoma"]} 1 +2024-09-11 09:00:46.566524 2024-09-11 09:00:46.566527 90fe050a-e283-434a-aa2c-d0c31566a937 {"md5": "b4bd138b45f246ee91fc1e9d3ad8f7b2", "pid": "1014396158", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1014396158", "source": "GND"}], "variant_name": ["Life Science Dot"], "preferred_name": "LSD", "variant_access_point": ["Life Science Dot"], "authorized_access_point": "LSD"} 1 +2024-09-11 09:00:46.620762 2024-09-11 09:00:46.620765 ccb5f440-a390-438d-8658-36905763755a {"md5": "957ab2f5ddc159ea40cd66fbc1f83bd7", "pid": "1014396824", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1014396824", "source": "GND"}], "date_of_birth": "1981", "preferred_name": "Kömürcü, Cem", "authorized_access_point": "Kömürcü, Cem, 1981-", "biographical_information": ["Lehrt Philosophie und Literatur an der Universität Heidelberg"]} 1 +2024-09-11 09:00:46.672464 2024-09-11 09:00:46.672467 b883d170-c101-4fa9-802e-22f72370899b {"md5": "c357bf320e430f207054391ea04f2252", "pid": "101440391X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/101440391X", "source": "GND"}], "date_of_birth": "1968", "preferred_name": "Schmitz, Mario", "country_associated": "gw", "authorized_access_point": "Schmitz, Mario, 1968-", "biographical_information": ["Beratungsfeld \\"Financial Operations Improvement\\"; ehemaliger Berater der KPMG-Unternehmensberatung und BearingPoint Management Consulting"]} 1 +2024-09-11 09:00:46.724119 2024-09-11 09:00:46.724122 97253cf2-1065-46a9-8698-4b8821f9d053 {"md5": "74bc5a852b3b37b8c70e0dea7f6614c7", "pid": "1014449278", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16168902-4", "source": "GND"}], "preferred_name": "Heimatgeschichtliche Arbeitsgemeinschaft", "country_associated": "gw", "authorized_access_point": "Heimatgeschichtliche Arbeitsgemeinschaft. Oberlind, Sonneberg"} 1 +2024-09-11 09:00:46.78062 2024-09-11 09:00:46.780623 60877daa-f7a5-450a-b9ea-e2f9db19ef61 {"md5": "d25ab7a88e045633be5c9610bae91b42", "pid": "1014449677", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1014449677", "source": "GND"}], "preferred_name": "Muço, Vullnet", "authorized_access_point": "Muço, Vullnet"} 1 +2024-09-11 09:00:46.831908 2024-09-11 09:00:46.831913 64bd4a64-d54b-4c2d-a4d1-701c1b6dc433 {"md5": "d38678ecebf02f25bdbb65e13b62933f", "pid": "1014548012", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1014548012", "source": "GND"}], "date_of_birth": "1756", "date_of_death": "1814", "preferred_name": "Schwichow, Friedrich von", "country_associated": "gw", "authorized_access_point": "Schwichow, Friedrich von, 1756-1814", "biographical_information": ["preußischer Stabskapitän"]} 1 +2024-09-11 09:00:46.886411 2024-09-11 09:00:46.886414 ae8c09e1-0df5-4191-a042-5a854f55d7a6 {"md5": "8b08a25c178824ec2f993821cff8be01", "pid": "1014626358", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16169743-4", "source": "GND"}], "preferred_name": "Fédération des Associations pour l'Étude et la Mise en Valeur du Patrimoine Hospitalier et de la Santé en Alsace", "country_associated": "fr", "authorized_access_point": "Fédération des Associations pour l'Étude et la Mise en Valeur du Patrimoine Hospitalier et de la Santé en Alsace"} 1 +2024-09-11 09:00:46.93735 2024-09-11 09:00:46.937353 533d286c-36d3-4c0c-b822-8945711d9c1f {"md5": "de88273c9e148dc73050e610b4508798", "pid": "1014638895", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1014638895", "source": "GND"}], "date_of_birth": "1783", "date_of_death": "19.10.1850", "preferred_name": "Dittrich, Johann Heinrich", "country_associated": "gw", "authorized_access_point": "Dittrich, Johann Heinrich, 1783-1850", "biographical_information": ["aus Fürstenau. - Pastor in Dittersdorf"]} 1 +2024-09-11 09:00:46.9957 2024-09-11 09:00:46.995702 4940a03a-165b-4980-8338-c16c5ea36301 {"md5": "86c48e3f05bb6befce614c47eaf186a2", "pid": "1014661951", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16171064-5", "source": "GND"}], "variant_name": ["Feuerwehr Möllersdorf"], "preferred_name": "Freiwillige Feuerwehr Möllersdorf", "country_associated": "au", "variant_access_point": ["Feuerwehr Möllersdorf"], "authorized_access_point": "Freiwillige Feuerwehr Möllersdorf"} 1 +2024-09-11 09:00:47.051358 2024-09-11 09:00:47.051361 9fdae359-eb11-44ee-8438-e1eccf3d32a9 {"md5": "78ea606e316e34b9aa7893a401826ecc", "pid": "1014671604", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16172029-8", "source": "GND"}], "variant_name": ["Forschungsgruppe Handball"], "preferred_name": "Deutsche Hochschule für Körperkultur. Forschungsgruppe Handball", "variant_access_point": ["Forschungsgruppe Handball. Leipzig"], "authorized_access_point": "Deutsche Hochschule für Körperkultur. Forschungsgruppe Handball"} 1 +2024-09-11 09:00:47.104707 2024-09-11 09:00:47.104712 14f6a33d-0ac5-4d11-8d95-39b36801fc62 {"md5": "c4d14ce2d6f963e4fab774f8b9d22642", "pid": "1014677610", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16172630-6", "source": "GND"}], "variant_name": ["International Conference on the Formation of Semiconductor Interfaces, 12"], "preferred_name": "ICFSI, 12", "variant_access_point": ["International Conference on the Formation of Semiconductor Interfaces, 12, 2009, Weimar"], "authorized_access_point": "ICFSI, 12, 2009, Weimar"} 1 +2024-09-11 09:00:47.155731 2024-09-11 09:00:47.155734 8a5afc30-c48e-4b76-93d0-e139ae71852a {"md5": "159e538f62478d9e86304a3520d12097", "pid": "1014681685", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16173037-1", "source": "GND"}], "variant_name": ["Conference on Viral Membrane Proteins"], "preferred_name": "Viral Membrane Proteins Meeting", "country_associated": "gw", "variant_access_point": ["Conference on Viral Membrane Proteins, 2008, Heidelberg"], "authorized_access_point": "Viral Membrane Proteins Meeting, 2008, Heidelberg"} 1 +2024-09-11 09:00:47.209995 2024-09-11 09:00:47.209999 d86974a8-ee78-43d8-9971-3ff4af4596ea {"md5": "9b3e55d9acf7116422f0c9113b42ae3b", "pid": "1014683998", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16173268-9", "source": "GND"}], "variant_name": ["Biennale de l'Art Africain Comtemporain, 9", "Biennial of African Contemporary Art, 9"], "preferred_name": "Dak'Art, 9", "country_associated": "sg", "variant_access_point": ["Biennale de l'Art Africain Comtemporain, 9, 2010, Dakar", "Biennial of African Contemporary Art, 9, 2010, Dakar"], "authorized_access_point": "Dak'Art, 9, 2010, Dakar"} 1 +2024-09-11 09:00:47.261547 2024-09-11 09:00:47.261551 6f288173-b042-4271-861d-26beba828b52 {"md5": "40248b4298931596e96a014fc548d854", "pid": "1014696348", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16174503-9", "source": "GND"}], "preferred_name": "Touristenverein Die Naturfreunde. Ortsgruppe Würmtal", "country_associated": "gw", "authorized_access_point": "Touristenverein Die Naturfreunde. Deutschland, Bundesrepublik. Ortsgruppe Würmtal"} 1 +2024-09-11 09:00:47.324881 2024-09-11 09:00:47.324885 1b0b36e1-7ba2-4360-a931-457e66bf5eb5 {"md5": "399cb84bbb931f9ac65723552ca5ab50", "pid": "1014702739", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16175142-8", "source": "GND"}], "variant_name": ["Deutsche Rentenversicherung Bund. Referat, 521"], "preferred_name": "Deutsche Rentenversicherung Bund. Referat Statistisches Berichtswesen", "country_associated": "gw", "variant_access_point": ["Deutsche Rentenversicherung Bund. Referat, 521"], "authorized_access_point": "Deutsche Rentenversicherung Bund. Referat Statistisches Berichtswesen"} 1 +2024-09-11 09:00:47.38938 2024-09-11 09:00:47.389383 ddc97265-6107-469e-a1af-d1d4321c9262 {"md5": "d4cf2cb630dae98e95c0adbf540077a6", "pid": "1014714222", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16176291-8", "source": "GND"}], "variant_name": ["Výstava Překračování Hranic", "Wystawa pt. Przekraczaja̜c Granice", "Künstlerwerkstatt der Euroregion Neiße 2006", "Dílna Výtvarných Umělc°u Euroregionu Nisa 2006", "Warsztaty Artystów Euroregionu Nysa 2006"], "preferred_name": "Ausstellung Grenzgänge", "variant_access_point": ["Výstava Překračování Hranic, 2006 - 2007, Görlitz u.a.", "Wystawa pt. Przekraczaja̜c Granice, 2006 - 2007, Görlitz u.a.", "Künstlerwerkstatt der Euroregion Neiße 2006, 2006 - 2007, Görlitz u.a.", "Dílna Výtvarných Umělc°u Euroregionu Nisa 2006, 2006 - 2007, Görlitz u.a.", "Warsztaty Artystów Euroregionu Nysa 2006, 2006 - 2007, Görlitz u.a."], "authorized_access_point": "Ausstellung Grenzgänge, 2006 - 2007, Görlitz u.a."} 1 +2024-09-11 09:00:47.448736 2024-09-11 09:00:47.448741 227612c7-cd93-4304-af34-86a0c33a123a {"md5": "7ab50a9eb483a2bf998a6cbc32c8a24f", "pid": "1014733642", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16178233-4", "source": "GND"}], "variant_name": ["Basie Octet"], "preferred_name": "Count Basie Octet", "country_associated": "xxu", "variant_access_point": ["Basie Octet"], "authorized_access_point": "Count Basie Octet"} 1 +2024-09-11 09:00:47.508782 2024-09-11 09:00:47.508786 3dee67ec-bba8-4722-b589-ccdf7b3c5f35 {"md5": "b3797ffe91902b9f1a124fb98f4dab36", "pid": "1014745357", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16179404-X", "source": "GND"}], "variant_name": ["ADETEF"], "preferred_name": "Association pour le Développement des Echanges en Technologie Economique et Financière", "country_associated": "fr", "variant_access_point": ["ADETEF. Abkuerzung"], "authorized_access_point": "Association pour le Développement des Echanges en Technologie Economique et Financière"} 1 +2024-09-11 09:00:47.562026 2024-09-11 09:00:47.56203 90a00ed4-3e54-43a0-baed-5d61515ea656 {"md5": "189d433180ca31449358a8b4aeffe1f6", "pid": "101476677X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/101476677X", "source": "GND"}], "variant_name": ["Salau, Mohammed Bashir"], "date_of_birth": "1966", "preferred_name": "Bashir Salau, Mohammed", "country_associated": "nr", "variant_access_point": ["Salau, Mohammed Bashir, 1966-"], "authorized_access_point": "Bashir Salau, Mohammed, 1966-", "biographical_information": ["2019 Associate Professor an der Univ. of Mississippi"]} 1 +2024-09-11 09:00:47.62052 2024-09-11 09:00:47.620523 ed2ac706-7b2a-4284-a14f-1476d1be3c71 {"md5": "c378afa383c17b90330955d5917a7556", "pid": "101477635X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/101477635X", "source": "GND"}], "date_of_birth": "20.02.1979", "preferred_name": "Pricking, Sebastian", "authorized_access_point": "Pricking, Sebastian, 1979-", "biographical_information": ["Diss. Stuttgart 2011, Fakultät Mathematik und Physik"]} 1 +2024-09-11 09:00:47.67538 2024-09-11 09:00:47.675384 63cbc8e3-9ce1-4a09-9eea-8e7423c233c4 {"md5": "624206c9ff2b9938853895d5930f421f", "pid": "1014803217", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1014803217", "source": "GND"}], "date_of_birth": "1984", "preferred_name": "Vehorn, Mareike", "authorized_access_point": "Vehorn, Mareike, 1984-", "biographical_information": ["Diss. Medizinische Fakultät an der Universität Erlangen-Nürnberg"]} 1 +2024-09-11 09:00:47.730258 2024-09-11 09:00:47.730261 6db7b2db-922c-457f-8f2b-c8e473b113dd {"md5": "8eba4e0124a256830da8a52fc04141b8", "pid": "1014837839", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1014837839", "source": "GND"}], "preferred_name": "Blume, Samuel Otto Theodor", "authorized_access_point": "Blume, Samuel Otto Theodor", "biographical_information": ["Aus Schlaven in Pommern, Student in Göttingen, Arzt in Hamburg"]} 1 +2024-09-11 09:00:47.782933 2024-09-11 09:00:47.782936 2bc49797-9b7e-4a25-82d2-6c455fcddc41 {"md5": "6470fba0d13612219f5704c9543ab4ce", "pid": "1014841011", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1014841011", "source": "GND"}], "preferred_name": "Reichelt, Thomas", "country_associated": "gw", "authorized_access_point": "Reichelt, Thomas"} 1 +2024-09-11 09:00:49.309885 2024-09-11 09:00:49.309887 b7e642be-dba0-4e53-af6a-337ed49b7157 {"md5": "3370fa7814902a2805cf0a0e28aa0354", "pid": "1016951426", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1016951426", "source": "GND"}], "variant_name": ["Rocha Bruno, Adriana"], "preferred_name": "Bruno, Adriana Rocha", "country_associated": "bl", "variant_access_point": ["Rocha Bruno, Adriana"], "authorized_access_point": "Bruno, Adriana Rocha", "biographical_information": ["Brasilian. Pädagogin"]} 1 +2024-09-11 09:00:47.841175 2024-09-11 09:00:47.841178 a2a73290-7dc9-49b7-a280-149780668661 {"md5": "d6bb19d5d42fd9e0f87c1c05a720a2e5", "pid": "1014954320", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1014954320", "source": "GND"}], "variant_name": ["Verma, ..."], "preferred_name": "Verma, Punita", "country_associated": "ii", "variant_access_point": ["Verma, ..."], "authorized_access_point": "Verma, Punita", "biographical_information": ["aus Meerut, Indien; Promotion auf dem Gebiet der Schwerionenforschung an der Universität Gießen(Fachbereich Mathematik und Informatik, Physik, Geographie)"]} 1 +2024-09-11 09:00:47.893835 2024-09-11 09:00:47.893838 7e326b64-e739-4732-95a6-7825f5b0cc08 {"md5": "149f79e06c1d78e81839a6c9df334106", "pid": "1015098495", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1015098495", "source": "GND"}], "date_of_birth": "1979", "preferred_name": "Torun, Ahmet Refah", "country_associated": "tu", "authorized_access_point": "Torun, Ahmet Refah, 1979-"} 1 +2024-09-11 09:00:47.949459 2024-09-11 09:00:47.949463 d0f95b1d-87d4-44fa-9b9c-6b559c16ccfb {"md5": "0a5e7fe4860de074563ea3a80f395732", "pid": "1015101003", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1015101003", "source": "GND"}], "variant_name": ["Cörber, Henrich Adrian", "Körber, Heinrich Adrian", "Coerber, Heinrich Adrian"], "preferred_name": "Cörber, Heinrich Adrian", "country_associated": "gw", "variant_access_point": ["Cörber, Henrich Adrian", "Körber, Heinrich Adrian", "Coerber, Heinrich Adrian"], "authorized_access_point": "Cörber, Heinrich Adrian", "biographical_information": ["Student an der Univ. Helmstedt"]} 1 +2024-09-11 09:00:48.024559 2024-09-11 09:00:48.024563 fbfba6d7-4246-45ec-9308-0ffad87aead9 {"md5": "17247bcf394c5885d21ce1592a729777", "pid": "101514859X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/101514859X", "source": "GND"}], "variant_name": ["Nägli, Silke"], "preferred_name": "Näglein, Silke", "country_associated": "au", "variant_access_point": ["Nägli, Silke"], "authorized_access_point": "Näglein, Silke", "biographical_information": ["Mitarbeiterin der Abt. Vertragspartner Medikamente im Hauptverband der Österreichischen Sozialversicherungsträger"]} 1 +2024-09-11 09:00:48.0915 2024-09-11 09:00:48.091503 a678f90c-2066-4e1e-aff1-564242df8536 {"md5": "2d5ac06da309558b72eb8904fc494085", "pid": "1015165990", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1015165990", "source": "GND"}], "date_of_birth": "1977", "preferred_name": "Gettys, Sven-Daniel", "authorized_access_point": "Gettys, Sven-Daniel, 1977-"} 1 +2024-09-11 09:00:48.147022 2024-09-11 09:00:48.147024 d2da2087-e3b2-4d3e-b352-1aef7ece875e {"md5": "5abb347ba7cb02cbe7b6a21b1cbb4a24", "pid": "1015193862", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "qualifier": "Maharaj", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1015193862", "source": "GND"}], "variant_name": ["Satpalji, Maharaj"], "date_of_birth": "1951", "preferred_name": "Satpal, Maharaj", "variant_access_point": ["Satpalji, Maharaj, 1951-"], "authorized_access_point": "Satpal, Maharaj, 1951-"} 1 +2024-09-11 09:00:48.198656 2024-09-11 09:00:48.19866 fae92a49-2897-4699-963c-178dee5f5f58 {"md5": "58ef05f235e7534dddb5eef4492482f8", "pid": "1015243762", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1015243762", "source": "GND"}], "variant_name": ["Wiesegart, Margarete Haaß-", "Haass-Wiesegart, Margarete"], "preferred_name": "Haaß-Wiesegart, Margarete", "variant_access_point": ["Wiesegart, Margarete Haaß-", "Haass-Wiesegart, Margarete"], "authorized_access_point": "Haaß-Wiesegart, Margarete", "biographical_information": ["Mitbegründerin und langjährige Präsidentin der Deutsch-Chinesischen Akademie e. V. für Psychotherapie"]} 1 +2024-09-11 09:00:48.251598 2024-09-11 09:00:48.251601 6499bcd2-5c56-40e2-8be5-57b59b580256 {"md5": "ee5f2d7a723a1c46d2b2376e2171215f", "pid": "1015331386", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1015331386", "source": "GND"}], "date_of_birth": "ca. 19. /20. Jh.", "preferred_name": "Ebbinghaus, Kurt", "country_associated": "gw", "authorized_access_point": "Ebbinghaus, Kurt, ca. 19. /20. Jh."} 1 +2024-09-11 09:00:48.313316 2024-09-11 09:00:48.313321 cdaf2156-362a-4860-8037-be12cee11c96 {"md5": "6e5a55073d5ae31618849087058a6bf6", "pid": "1015348394", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1015348394", "source": "GND"}], "preferred_name": "Smale, John", "country_associated": "xxk", "authorized_access_point": "Smale, John"} 1 +2024-09-11 09:00:48.366475 2024-09-11 09:00:48.366478 e819edb1-0373-499b-8147-054b18b2238a {"md5": "c327589f501ccb3a83021efdbed2f6e6", "pid": "1015354157", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16182271-X", "source": "GND"}], "preferred_name": "Sammlung Malou Majerus", "country_associated": "lu", "authorized_access_point": "Sammlung Malou Majerus", "biographical_information": ["Privatsammlung"]} 1 +2024-09-11 09:00:48.435834 2024-09-11 09:00:48.435838 cdeadfd7-cae0-4545-956a-dc9407dabdad {"md5": "adf52a82eb5b7eeb26d9ca72cd074986", "pid": "1015371035", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16182356-7", "source": "GND"}], "preferred_name": "Allmänna Sången", "country_associated": "sw", "date_of_establishment": "1830", "authorized_access_point": "Allmänna Sången. Musikgruppe", "biographical_information": ["Schwed. Universitäts-Chor; seit 1963 gem. Chor"]} 1 +2024-09-11 09:00:48.494512 2024-09-11 09:00:48.494516 0d280178-42b6-4d40-a8c4-d565f1419492 {"md5": "144f18ca206b4255bdbac644e6c4f3cd", "pid": "1015412998", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1015412998", "source": "GND"}], "variant_name": ["Hunicke, Christophorus ab"], "date_of_birth": "ca. ca. 1620", "preferred_name": "Hunicke, Christoph von", "variant_access_point": ["Hunicke, Christophorus ab, ca. ca. 1620"], "authorized_access_point": "Hunicke, Christoph von, ca. ca. 1620", "biographical_information": ["Domdechant in Magdeburg"]} 1 +2024-09-11 09:00:50.747495 2024-09-11 09:00:50.747498 6a960671-1dae-4787-b2e7-11a87a825e9a {"md5": "d375c1e31cc00b0bb3b489664e80a965", "pid": "1026316790", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1026316790", "source": "GND"}], "preferred_name": "Listova, Natalija Aleksandrovna", "country_associated": "ru", "authorized_access_point": "Listova, Natalija Aleksandrovna"} 1 +2024-09-11 09:00:48.56084 2024-09-11 09:00:48.560843 2544694c-7bee-4b84-a931-5858ec416a6c {"md5": "45066c16ebab827a93e68d39d1c39465", "pid": "1015428967", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1015428967", "source": "GND"}], "variant_name": ["Bento da Silva, Iris"], "preferred_name": "Silva, Iris Bento da", "variant_access_point": ["Bento da Silva, Iris"], "authorized_access_point": "Silva, Iris Bento da", "biographical_information": ["Doctorate in Mechanical Engineering from the Univ. of Campinas (UNICAMP), Brazil; Production Manager of Eaton Transmissions in Valinhos, Brazil; assistant professor in the Dept. of Manufacturing Engineering at the Univ. of Campinas"]} 1 +2024-09-11 09:00:48.616707 2024-09-11 09:00:48.616712 cf0fe409-2df4-490d-a429-1a5ea9f8150f {"md5": "1fb2c52b380fb5eea6a84a85a9ca696c", "pid": "1015448186", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16182717-2", "source": "GND"}], "preferred_name": "Winterpark", "country_associated": "at", "date_of_establishment": "2005", "authorized_access_point": "Winterpark", "biographical_information": ["Electronic-Duo aus Melbourne (Matthew Ridgway, Jordy Hewitt)"]} 1 +2024-09-11 09:00:48.685639 2024-09-11 09:00:48.685643 acb8f37d-7f28-4e4d-b95f-e148604392eb {"md5": "c031552a79ee9a4cd53b216d5ba02f1c", "pid": "1015448305", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1015448305", "source": "GND"}], "date_of_birth": "1979", "preferred_name": "Büchner, Nils", "authorized_access_point": "Büchner, Nils, 1979-", "biographical_information": ["Bachelor Tübingen 2011"]} 1 +2024-09-11 09:00:48.740252 2024-09-11 09:00:48.740255 cc5d26db-876a-4ad0-b62a-a775b2ebb8a6 {"md5": "57ebb9bc7f027ed5023e16081fbcdc94", "pid": "1015457789", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1015457789", "source": "GND"}], "preferred_name": "Göth, Karl", "country_associated": "au", "authorized_access_point": "Göth, Karl"} 1 +2024-09-11 09:00:48.808417 2024-09-11 09:00:48.80842 56ac703d-4e7c-49d6-83ef-c45e72b81b9d {"md5": "2fa41b2234e4829f16df59db0a35bf07", "pid": "1015645631", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16324382-7", "source": "GND"}], "variant_name": ["18. Witzenhäuser Konferenz, 2010"], "preferred_name": "Witzenhäuser Konferenz, 18", "country_associated": "gw", "variant_access_point": ["18. Witzenhäuser Konferenz, 2010"], "authorized_access_point": "Witzenhäuser Konferenz, 18, 2010, Witzenhausen"} 1 +2024-09-11 09:00:48.864624 2024-09-11 09:00:48.864628 dc925821-03b8-48ea-88c0-a092b2cc5a04 {"md5": "6462be5c02623e32ea74688487b30fa6", "pid": "1015750427", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1015750427", "source": "GND"}], "date_of_birth": "1985", "preferred_name": "Schulze, Marcel", "country_associated": "gw", "authorized_access_point": "Schulze, Marcel, 1985-"} 1 +2024-09-11 09:00:48.919432 2024-09-11 09:00:48.919435 e6d3e168-3933-40a6-a71a-639ec043516e {"md5": "470ae20df2633c839a06a98598613ba8", "pid": "1015752756", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1015752756", "source": "GND"}], "date_of_birth": "16.08.1895", "date_of_death": "17.08.1984", "preferred_name": "Kerouallan, Yves de", "country_associated": "fr", "authorized_access_point": "Kerouallan, Yves de, 1895-1984"} 1 +2024-09-11 09:00:48.970498 2024-09-11 09:00:48.9705 b60825d1-60a8-4420-8144-8b1b2e0b9144 {"md5": "cb1bc5d91ce5026a593802985173f89e", "pid": "1015778275", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1015778275", "source": "GND"}], "preferred_name": "Bálint, Lajos", "authorized_access_point": "Bálint, Lajos", "biographical_information": ["Senior research fellow"]} 1 +2024-09-11 09:00:49.022202 2024-09-11 09:00:49.022204 36c1309d-1c3c-4493-9e97-be4de36e6ca9 {"md5": "536cc36694909449a7074ee24babbe8d", "pid": "1015799485", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1015799485", "source": "GND"}], "variant_name": ["Lancaster, Mike A."], "date_of_birth": "1965", "preferred_name": "Lancaster, Mike", "country_associated": "xxk", "variant_access_point": ["Lancaster, Mike A., 1965-"], "authorized_access_point": "Lancaster, Mike, 1965-", "biographical_information": ["freier Autor"]} 1 +2024-09-11 09:00:49.0813 2024-09-11 09:00:49.081304 3e2baa3a-8c7e-4c00-8681-7011cf446bc3 {"md5": "24a0864e7233ffbfec27eedc10719c1f", "pid": "1016006969", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1016006969", "source": "GND"}], "preferred_name": "Schütz, Maria", "authorized_access_point": "Schütz, Maria", "biographical_information": ["Diss. Medizinische Fakultät an der Universität München (2011)"]} 1 +2024-09-11 09:00:49.136599 2024-09-11 09:00:49.136601 c399e1f8-d03e-4185-85ee-d56eabfd166e {"md5": "003600c3889272d544b18eb520875961", "pid": "1016159560", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1016159560", "source": "GND"}], "variant_name": ["Sundt, Ana Isabel Larraín", "Larraín, Ana Isabel"], "preferred_name": "Larraín Sundt, Ana Isabel", "country_associated": "cl", "variant_access_point": ["Sundt, Ana Isabel Larraín", "Larraín, Ana Isabel"], "authorized_access_point": "Larraín Sundt, Ana Isabel", "biographical_information": ["Chilen. Hebamme; Prof. für Sozialpsychologie der med. Fak. der Univ. de los Andes; Direktorin der Escuela de Enfermería, Univ. de los Andes"]} 1 +2024-09-11 09:00:49.188381 2024-09-11 09:00:49.188383 1d1de30f-6785-4d43-9604-3955de85db8c {"md5": "eed07fc38607f4acf6749774ffb8103e", "pid": "1016626150", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1016626150", "source": "GND"}], "date_of_birth": "1980", "preferred_name": "Lhoťan, Lukáš", "authorized_access_point": "Lhoťan, Lukáš, 1980-"} 1 +2024-09-11 09:00:49.243271 2024-09-11 09:00:49.243275 ff8c00a1-415c-493a-a9ad-a6eb53bfafbf {"md5": "3359af7686971798e8c4f7d21c67681d", "pid": "1016763387", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1016763387", "source": "GND"}], "date_of_birth": "15.05.1920", "date_of_death": "01.04.2019", "preferred_name": "Krüger, Sabine", "country_associated": "gw", "authorized_access_point": "Krüger, Sabine, 1920-2019"} 1 +2024-09-11 09:00:52.836455 2024-09-11 09:00:52.836458 7e86db91-63a1-4920-93e2-71a6a4ef7697 {"md5": "d310fd5bc21887417b7d54737cb7e5f6", "pid": "1037748980", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1037748980", "source": "GND"}], "date_of_birth": "1961", "preferred_name": "Chen, Jianshe", "country_associated": "xxk", "authorized_access_point": "Chen, Jianshe, 1961-"} 1 +2024-09-11 09:00:49.361868 2024-09-11 09:00:49.36187 491e208f-0333-4d9f-9d1a-d339b515fe30 {"md5": "7d3dc1d1fcb2505bea1cca1667227f32", "pid": "1016975198", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1016975198", "source": "GND"}], "variant_name": ["Berenguer Navarro, José Luis", "Navarro, José Luis Berenguer"], "date_of_birth": "1952", "preferred_name": "Berenguer, José Luis", "country_associated": "sp", "variant_access_point": ["Berenguer Navarro, José Luis, 1952-", "Navarro, José Luis Berenguer, 1952-"], "authorized_access_point": "Berenguer, José Luis, 1952-", "biographical_information": ["Span. Autor"]} 1 +2024-09-11 09:00:49.413268 2024-09-11 09:00:49.41327 a568a8ba-22ee-4d68-a25d-686b7b8ee118 {"md5": "e1a51171bd73f0855556c7f5ee326438", "pid": "1017107246", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1017107246", "source": "GND"}], "date_of_birth": "1978", "preferred_name": "Calorio, Giacomo", "authorized_access_point": "Calorio, Giacomo, 1978-", "biographical_information": ["Promotion Fachgebiet japanische Sprach- und Literaturwissenschaft"]} 1 +2024-09-11 09:00:49.468816 2024-09-11 09:00:49.468819 df16522c-878f-405b-97c3-0338a6cd27f0 {"md5": "273188e273cc1d87102ff81a4f07ed84", "pid": "1017352712", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16330897-4", "source": "GND"}], "variant_name": ["Pastoe", "UMS Pastoe bv", "UMS-Pastoe"], "preferred_name": "UMS Pastoe", "country_associated": "ne", "variant_access_point": ["Pastoe", "UMS Pastoe bv. Unveraenderte Form", "UMS-Pastoe"], "date_of_establishment": "1955", "authorized_access_point": "UMS Pastoe"} 1 +2024-09-11 09:00:49.536163 2024-09-11 09:00:49.536167 95bd5b26-f588-49d9-b793-ec1fa8f82ea0 {"md5": "7b259634b54c9f12235ddd16e5698060", "pid": "1017628769", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["lat"], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1017628769", "source": "GND"}], "preferred_name": "Lenaz, Luciano", "authorized_access_point": "Lenaz, Luciano"} 1 +2024-09-11 09:00:49.58874 2024-09-11 09:00:49.588742 97d1341e-097f-4857-b7da-d21ba8164500 {"md5": "44141c9f76dfdae5115cd6520774a672", "pid": "1017668051", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1017668051", "source": "GND"}], "date_of_birth": "1950", "preferred_name": "Bodman, Whitney S.", "country_associated": "xxu", "authorized_access_point": "Bodman, Whitney S., 1950-", "biographical_information": ["Associate Professor of Comparative Religion, Austin Presbyterian Theolog. Seminary, Austin, Tex."]} 1 +2024-09-11 09:00:49.64115 2024-09-11 09:00:49.641154 3cd13427-ba2e-43d7-8c47-1a17cb20a2a1 {"md5": "6b4050e5b340b6943500c882fc21aad4", "pid": "1017696241", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1017696241", "source": "GND"}], "date_of_birth": "1971", "preferred_name": "Lazarus, Julia", "country_associated": "gw", "authorized_access_point": "Lazarus, Julia, ca. 20./21. Jh."} 1 +2024-09-11 09:00:49.693373 2024-09-11 09:00:49.693375 ebba3570-e2e8-4b9b-ba8d-9f9661446b34 {"md5": "c0b89981027e334b8dfb274ffcfb6d1b", "pid": "1018180087", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16333720-2", "source": "GND"}], "variant_name": ["Bayer Health Care Pharmaceuticals"], "preferred_name": "Bayer HealthCare Pharmaceuticals", "country_associated": "gw", "variant_access_point": ["Bayer Health Care Pharmaceuticals"], "date_of_establishment": "2011", "authorized_access_point": "Bayer HealthCare Pharmaceuticals"} 1 +2024-09-11 09:00:49.746671 2024-09-11 09:00:49.746673 a8dc1d66-2377-4674-bff0-59c6fb731581 {"md5": "ef39e980fc5316fda7e6570cc5510c37", "pid": "1018299807", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1018299807", "source": "GND"}], "preferred_name": "Lauren, Jillian", "country_associated": "xxu", "authorized_access_point": "Lauren, Jillian"} 1 +2024-09-11 09:00:49.799081 2024-09-11 09:00:49.799085 9dad44af-4a00-4c0d-9a17-644b1bee1138 {"md5": "34c331d3f9c6c4e811e51be451906f20", "pid": "1018900772", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16336522-2", "source": "GND"}], "variant_name": ["Sawston Village College Choir"], "preferred_name": "Sawston Village College. Chamber Choir", "country_associated": "xxk", "variant_access_point": ["Sawston Village College Choir"], "authorized_access_point": "Sawston Village College. Chamber Choir"} 1 +2024-09-11 09:00:49.856113 2024-09-11 09:00:49.856116 8c0f341a-b114-428d-bfe3-1394f40d61bf {"md5": "3e63af3eb6305cbf612376a46e908d8f", "pid": "1019086750", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1019086750", "source": "GND"}], "preferred_name": "Scheidt, Petra", "authorized_access_point": "Scheidt, Petra", "biographical_information": ["Diss., Universität Duisburg-Essen"]} 1 +2024-09-11 09:00:49.934103 2024-09-11 09:00:49.934106 9e8bdc62-b868-45c3-9037-aed530f1bc22 {"md5": "6847d8244578c6b7eb895513002ab955", "pid": "1019500344", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1019500344", "source": "GND"}], "preferred_name": "Routon, Kenneth", "authorized_access_point": "Routon, Kenneth", "biographical_information": ["Ass. professor of cultural anthropology at the Univ. of New Orleans"]} 1 +2024-09-11 09:00:49.991996 2024-09-11 09:00:49.992 1e32368a-b063-4f1f-ba4a-a8f303685605 {"md5": "53df954a7359c8ae86e3c73b4625efd2", "pid": "1020150378", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1020150378", "source": "GND"}], "variant_name": ["Qing, Li", "Qing li"], "preferred_name": "Li, Qing", "variant_access_point": ["Qing, Li", "Qing li"], "authorized_access_point": "Li, Qing", "biographical_information": ["Tätig am Institut d'Economie et Management de la Santé (IEMS) und am Département d'Econométrie et d'Economie Politique (DEEP) an der HEC der Univ. Lausanne, Schweiz"]} 1 +2024-09-11 09:00:50.685578 2024-09-11 09:00:50.685581 3cca28f0-31ed-45b9-971c-6f03e418b07d {"md5": "6f4484cff553f8c7457c16a0e4006cc3", "pid": "1026199441", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1026199441", "source": "GND"}], "variant_name": ["Joseph, Branden W."], "date_of_birth": "ca. 20. Jh.", "preferred_name": "Joseph, Branden Wayne", "country_associated": "xxu", "variant_access_point": ["Joseph, Branden W., ca. 20. Jh."], "authorized_access_point": "Joseph, Branden Wayne, ca. 20. Jh.", "biographical_information": ["Frank Gallipoli Professor of Modern and Contemporary Art and Director of Art Humanities, Columbia University, New York, Department of Art History and Archaeology (2006-); Ph.D. 1999"]} 1 +2024-09-11 09:00:50.049155 2024-09-11 09:00:50.049159 0040cef8-2feb-48ae-a36c-10e6470d105e {"md5": "a43cb57c7772cdf23343d8ea420f1a84", "pid": "102047033X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/102047033X", "source": "GND"}], "variant_name": ["Gorchakova, Aleksandra Aleksandrovna Santagano-", "Gorčakova, Aleksandra A. Santagano-", "Santagano-Gorčakova, Aleksandra Aleksandrovna", "Gorčakova, Aleksandra Aleksandrovna Santagano-", "Santagano-Gorčakova, Aleksandra", "Gorčakova, Aleksandra Santagano-", "Santagano-Gorchakova, Aleksandra", "Gorchakova, Aleksandra Santagano-", "Santagano-Gorchakova, T. P.", "Gorchakova, T. P. Santagano-", "Gorchakova, A."], "date_of_birth": "1842", "date_of_death": "1913", "preferred_name": "Santagano-Gorčakova, Aleksandra A.", "country_associated": "ru", "variant_access_point": ["Gorchakova, Aleksandra Aleksandrovna Santagano-, 1842-1913", "Gorčakova, Aleksandra A. Santagano-, 1842-1913", "Santagano-Gorčakova, Aleksandra Aleksandrovna, 1842-1913", "Gorčakova, Aleksandra Aleksandrovna Santagano-, 1842-1913", "Santagano-Gorčakova, Aleksandra, 1842-1913", "Gorčakova, Aleksandra Santagano-, 1842-1913", "Santagano-Gorchakova, Aleksandra, 1842-1913", "Gorchakova, Aleksandra Santagano-, 1842-1913", "Santagano-Gorchakova, T. P., 1842-1913", "Gorchakova, T. P. Santagano-, 1842-1913", "Gorchakova, A., 1842-1913"], "parallel_access_point": ["Santagano-Gorchakova, Aleksandra Aleksandrovna, 1842-1913"], "authorized_access_point": "Santagano-Gorčakova, Aleksandra A., 1842-1913", "biographical_information": ["Russ. Sopranistin; Gesangslehrerin; Übersetzerin"]} 1 +2024-09-11 09:00:50.103818 2024-09-11 09:00:50.103821 95cf66ab-8e6a-4235-b87a-e6e5504112b5 {"md5": "8b76c25fffd1afa2ce575a5fd8a4726c", "pid": "1020473932", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7857480-8", "source": "GND"}], "variant_name": ["Museo di Casa Romei"], "preferred_name": "Casa Romei", "country_associated": "it", "variant_access_point": ["Museo di Casa Romei"], "authorized_access_point": "Casa Romei. Museum", "biographical_information": ["1956 gegründet"]} 1 +2024-09-11 09:00:50.1558 2024-09-11 09:00:50.155803 b2f9ddf9-0118-4774-abbd-5404311a511e {"md5": "519656d96442a9a55d8c47dbf84024a9", "pid": "1020513020", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1020513020", "source": "GND"}], "preferred_name": "Neaum, Michael", "country_associated": "xxk", "authorized_access_point": "Neaum, Michael", "biographical_information": ["Engl. Arrangeur und Komponist; musikal. Begleiter, 1972-2007 regulärer Begleiter des Cantamus Girl's Choir; Gesangscoach"]} 1 +2024-09-11 09:00:50.235635 2024-09-11 09:00:50.235638 d0dd71c7-f7d7-4dfe-b3b8-ec1d159d8b76 {"md5": "0af3eb7c493cc874e211ed10ecdbd3e6", "pid": "1020751282", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16343525-X", "source": "GND"}], "variant_name": ["Thompson's All Stars"], "preferred_name": "Lucky Thompson's All Stars", "country_associated": "xxu", "variant_access_point": ["Thompson's All Stars"], "authorized_access_point": "Lucky Thompson's All Stars"} 1 +2024-09-11 09:00:50.30408 2024-09-11 09:00:50.304083 2248e0d2-bd9b-4c72-8155-420221887561 {"md5": "0ae1ae999931987434b61acd00188496", "pid": "102248435", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/102248435", "source": "GND"}], "date_of_birth": "1927", "date_of_death": "2008", "preferred_name": "Grabowski, Tadeusz", "country_associated": "pl", "authorized_access_point": "Grabowski, Tadeusz, 1927-2008", "biographical_information": ["Historiker, Spezialgebiete: Staatsgeschichte und Wirtschaftstheorie"]} 1 +2024-09-11 09:00:50.368004 2024-09-11 09:00:50.368008 6f193bee-c8b7-4100-93bc-255b542ee515 {"md5": "32bbf09c6c0451f2d0b2e91ba4458126", "pid": "1023582090", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1023582090", "source": "GND"}], "variant_name": ["Bibard, Charles-Olivier-René", "René, Charles"], "date_of_birth": "06.05.1863", "date_of_death": "15.09.1935", "preferred_name": "Charles-René", "country_associated": "fr", "variant_access_point": ["Bibard, Charles-Olivier-René, 1863-1935", "René, Charles, 1863-1935"], "authorized_access_point": "Charles-René, 1863-1935"} 1 +2024-09-11 09:00:50.422285 2024-09-11 09:00:50.422287 ee906fd0-5fee-4444-b9ef-2db9f1c6b3df {"md5": "b8db8d361d5daf302b002ec4f061890e", "pid": "1023649187", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1023649187", "source": "GND"}], "date_of_birth": "1972", "preferred_name": "Gabel, Hubert", "country_associated": "gw", "authorized_access_point": "Gabel, Hubert, 1972-"} 1 +2024-09-11 09:00:50.478398 2024-09-11 09:00:50.478402 7af3f0ab-692c-404b-a17a-82a29e4b3c16 {"md5": "558a95ac3492cf4cc81f79c677f0afbb", "pid": "102402868", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "qualifier": "Samius", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/102402868", "source": "GND"}], "variant_name": ["Philitas, Epigrammaticus", "Philetas, Samius", "Philetas, Epigrammaticus"], "date_of_birth": "ca. 1.Jh.v.Chr.", "preferred_name": "Philitas, Samius", "variant_access_point": ["Philitas, Epigrammaticus, ca. 1.Jh.v.Chr.", "Philetas, Samius, ca. 1.Jh.v.Chr.", "Philetas, Epigrammaticus, ca. 1.Jh.v.Chr."], "authorized_access_point": "Philitas, Samius, ca. 1.Jh.v.Chr.", "biographical_information": ["AP 6.210; 7.481"]} 1 +2024-09-11 09:00:50.531597 2024-09-11 09:00:50.531601 e151ffa3-6808-4b53-923b-3f188119693e {"md5": "8dc0b268b18741162838c7cb84ed419e", "pid": "102503214", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/102503214", "source": "GND"}], "date_of_birth": "1544", "date_of_death": "1605", "preferred_name": "Guijon, Jean", "country_associated": "fr", "authorized_access_point": "Guijon, Jean, 1544-1605", "biographical_information": ["Franz. Geograph, Botaniker"]} 1 +2024-09-11 09:00:50.584916 2024-09-11 09:00:50.584919 bc816f2b-1568-430e-9997-4eba2f1c5279 {"md5": "e4526c1d26c3dd844983a694ba0eb9be", "pid": "1025074823", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1025074823", "source": "GND"}], "date_of_birth": "1968", "preferred_name": "Griffith, Terri", "country_associated": "xxu", "authorized_access_point": "Griffith, Terri, 1968-"} 1 +2024-09-11 09:00:50.635411 2024-09-11 09:00:50.635414 eea67b5f-5d7c-4574-a358-98e2ccd79f45 {"md5": "fd00b75d4d6b3ff63f46600544671554", "pid": "1025297636", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1025297636", "source": "GND"}], "date_of_birth": "1967", "preferred_name": "Kern, Friederike", "country_associated": "gw", "authorized_access_point": "Kern, Friederike, 1967-"} 1 +2024-09-11 09:00:50.800059 2024-09-11 09:00:50.800064 2bf58e0b-46c9-4c49-af29-afaa0b8a62ed {"md5": "2944856a9e5363d4203885125ba2932d", "pid": "1026448301", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1026448301", "source": "GND"}], "date_of_birth": "14.12.1948", "preferred_name": "Andrews, Richard", "country_associated": "xxk", "authorized_access_point": "Andrews, Richard, 1948-", "biographical_information": ["Visiting Professor at New York University's Steinhardt School of Education, Culture and Human Development."]} 1 +2024-09-11 09:00:50.861153 2024-09-11 09:00:50.861155 b586f27b-dc70-4939-a9f8-0d2415ad58ee {"md5": "a1e781d747c69015d10df10ecf36dbb0", "pid": "1027019080", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1027019080", "source": "GND"}], "variant_name": ["Geljnek, Frantissek"], "date_of_birth": "1783", "date_of_death": "1856", "preferred_name": "Jelinek, František", "variant_access_point": ["Geljnek, Frantissek, 1783-1856"], "authorized_access_point": "Jelinek, František, 1783-1856"} 1 +2024-09-11 09:00:50.923749 2024-09-11 09:00:50.923752 03a58f67-c9d9-4c86-a20c-fe234bc94ba1 {"md5": "ff121b9de013ee9eed8e17b7447a0017", "pid": "1027019781", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1027019781", "source": "GND"}], "variant_name": ["Kreminʹ, T. D.", "Kraminʹ, Taras", "Kremenʹ, Taras Dmitrievič", "Kreminʹ, Taras Dmytrovych", "Kremenʹ, Taras Dmitrievich", "Кремінь, Т. Д.", "Кремень, Тарас Дмитриевич"], "date_of_birth": "1978", "preferred_name": "Kreminʹ, Taras Dmytrovyč", "country_associated": "un", "variant_access_point": ["Kreminʹ, T. D., 1978-", "Kraminʹ, Taras, 1978-", "Kremenʹ, Taras Dmitrievič, 1978-", "Kreminʹ, Taras Dmytrovych, 1978-", "Kremenʹ, Taras Dmitrievich, 1978-", "Кремінь, Т. Д., 1978-", "Кремень, Тарас Дмитриевич, 1978-"], "parallel_access_point": ["Кремінь, Тарас Дмитрович, 1978-"], "authorized_access_point": "Kreminʹ, Taras Dmytrovyč, 1978-"} 1 +2024-09-11 09:00:50.99309 2024-09-11 09:00:50.993095 31d032d0-4cc7-45fd-b41d-c3576120a8da {"md5": "ee507bdd60b4f74d56ed041bd9a55f66", "pid": "1027170250", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1027170250", "source": "GND"}], "date_of_birth": "1583", "date_of_death": "1661", "preferred_name": "Fevret, Charles", "country_associated": "fr", "authorized_access_point": "Fevret, Charles, 1583-1661"} 1 +2024-09-11 09:00:51.049508 2024-09-11 09:00:51.049512 c8806dbe-99a9-4a2e-8749-d37236ca9fdf {"md5": "85e949ee855b40082b65e6a06f443d67", "pid": "1027359981", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1027359981", "source": "GND"}], "variant_name": ["Ardenne, Jo d'"], "preferred_name": "D'Ardenne, Jo", "variant_access_point": ["Ardenne, Jo d'"], "authorized_access_point": "D'Ardenne, Jo", "biographical_information": ["Senior Survey Methodologist"]} 1 +2024-09-11 09:00:51.111334 2024-09-11 09:00:51.111339 de1cfbde-238a-40d8-bbd0-4af18e34097f {"md5": "25e7175d56307383f11fbcd38744210c", "pid": "1027463770", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1027463770", "source": "GND"}], "date_of_birth": "1731", "date_of_death": "1808", "preferred_name": "Bailey, Jacob", "country_associated": "xxu", "authorized_access_point": "Bailey, Jacob, 1731-1808", "biographical_information": ["Missionary at Pownalborough, Maine; Cornwallis and Annapolis"]} 1 +2024-09-11 09:00:51.162447 2024-09-11 09:00:51.162451 98d6159c-3c98-4baf-8324-0087d723a76f {"md5": "44d9808011c5e19e8077d2d7a8c124a8", "pid": "1027567835", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1027567835", "source": "GND"}], "date_of_birth": "1956", "preferred_name": "Koike, Hisako", "country_associated": "ja", "parallel_access_point": ["小池, 寿子, 1956-"], "authorized_access_point": "Koike, Hisako, 1956-"} 1 +2024-09-11 09:00:51.215034 2024-09-11 09:00:51.215037 4d8714bb-d5c7-4891-a32f-ad7758d9ec5c {"md5": "0ed8e54eb6c44481ef86e740c9360aeb", "pid": "1028398166", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1028398166", "source": "GND"}], "date_of_birth": "1955", "preferred_name": "Westphal, Manfred", "country_associated": "gw", "authorized_access_point": "Westphal, Manfred, 1955-", "biographical_information": ["Univ. Hamburg, Medizinische Fak., Universitätsklinikum Hamburg-Eppendorf, Kopf- und Neurozentrum, Ärztlicher Leiter der Klinik und Poliklinik für Neurochirurgie"]} 1 +2024-09-11 09:00:51.268754 2024-09-11 09:00:51.268757 344e5cec-b5c8-4286-bf40-99fb87113bf5 {"md5": "4f8d42da98cc9697301a72ecedff477b", "pid": "1028665504", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1028665504", "source": "GND"}], "date_of_birth": "08.11.1908", "preferred_name": "Siegmund, Bernhard", "country_associated": "gw", "authorized_access_point": "Siegmund, Bernhard, 1908-"} 1 +2024-09-11 09:00:51.325717 2024-09-11 09:00:51.325721 b21cbc52-7fc5-4178-813f-58cb3be921e9 {"md5": "2e518091234f2793b917affd5b01d1c3", "pid": "102892113", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/102892113", "source": "GND"}], "variant_name": ["Obrechtus, Elias", "Obrectus, Elias"], "date_of_birth": "1654", "date_of_death": "16.01.1698", "preferred_name": "Obrecht, Elias", "country_associated": "gw", "variant_access_point": ["Obrechtus, Elias, 1654-1698", "Obrectus, Elias, 1654-1698"], "authorized_access_point": "Obrecht, Elias, 1654-1698", "biographical_information": ["schwedischer Minister; Professor der Beredsamkeit und der Geschichte in Straßburg"]} 1 +2024-09-11 09:00:51.380502 2024-09-11 09:00:51.380505 4d8f575e-62c1-4d98-94de-ef6e1bbba62e {"md5": "7b43ca2e68dc5f9b67e66bd7345a8d01", "pid": "1029917442", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1029917442", "source": "GND"}], "date_of_birth": "06.09.1904", "date_of_death": "04.03.1976", "preferred_name": "Hoijer, Harry", "country_associated": "xxu", "authorized_access_point": "Hoijer, Harry, 1904-1976"} 1 +2024-09-11 09:00:51.44302 2024-09-11 09:00:51.443024 353e65b3-039f-4b4a-a3e9-cc9b69371d8f {"md5": "bc1241f6bd0ed842d87c380664f5f5d7", "pid": "1030495416", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1030495416", "source": "GND"}], "date_of_birth": "1966", "preferred_name": "Pinkowski, Heiko", "country_associated": "gw", "authorized_access_point": "Pinkowski, Heiko, 1966-"} 1 +2024-09-11 09:00:51.54897 2024-09-11 09:00:51.548972 8bd81af7-0c2d-46cc-9f85-f2d36405ef09 {"md5": "dd9433bdf29d62c0f94f966ac734b242", "pid": "1031215441", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1031215441", "source": "GND"}], "variant_name": ["Nordenskjöld, I."], "preferred_name": "Nordenskjöld, Ivar", "country_associated": "gw", "variant_access_point": ["Nordenskjöld, I."], "authorized_access_point": "Nordenskjöld, Ivar"} 1 +2024-09-11 09:00:51.604079 2024-09-11 09:00:51.604083 e608de01-66a8-443e-b3f6-6a57019a8cfe {"md5": "f972f5e6c5bd4d2ab8a71a4a86f1a4f4", "pid": "103129928", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/103129928", "source": "GND"}], "date_of_birth": "1812", "date_of_death": "1871", "preferred_name": "Dain, Charles", "authorized_access_point": "Dain, Charles, 1812-1871"} 1 +2024-09-11 09:00:51.661816 2024-09-11 09:00:51.66182 329c9e6c-024e-4968-ab33-74ce27a4b610 {"md5": "bb9d664ed2ad2573ec14c6b96b116909", "pid": "1031494286", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1031494286", "source": "GND"}], "date_of_birth": "1970", "preferred_name": "Nievelstein, Ralf", "country_associated": "gw", "authorized_access_point": "Nievelstein, Ralf, 1970-", "biographical_information": ["illustriert für Verlage, Filmproduktionen und Reklameanstalten"]} 1 +2024-09-11 09:00:51.723016 2024-09-11 09:00:51.72302 7ed68666-3cd7-41ea-abc3-7a992bd9acd1 {"md5": "95253ae9cdb8823c1f620840f44de058", "pid": "103163357X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/103163357X", "source": "GND"}], "date_of_birth": "1960", "preferred_name": "Eickhoff, Matthias", "country_associated": "gw", "authorized_access_point": "Eickhoff, Matthias, 1960-"} 1 +2024-09-11 09:00:51.792996 2024-09-11 09:00:51.793 eeb1a241-27b0-451f-97a9-4525eb0e5c45 {"md5": "45989f8dea073c5ea7093da735d6930b", "pid": "1032029374", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1032029374", "source": "GND"}], "date_of_birth": "19XX", "preferred_name": "Luard, Honey", "country_associated": "xxk", "authorized_access_point": "Luard, Honey, 19XX-", "biographical_information": ["Head of publications and press at White Cube gallery in London (1992-); BA from the University of Manchester and an MA from the Courtauld Institute"]} 1 +2024-09-11 09:00:51.850033 2024-09-11 09:00:51.850037 2d7d5a24-7c55-4e5c-b635-44eb926bface {"md5": "61591c01a1d79672248b760bf3381e9d", "pid": "1032305649", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1032305649", "source": "GND"}], "variant_name": ["Czechowicz, Gabrjel"], "date_of_birth": "02.10.1876", "date_of_death": "22.01.1938", "preferred_name": "Czechowicz, Gabriel", "country_associated": "pl", "variant_access_point": ["Czechowicz, Gabrjel, 1876-1938"], "authorized_access_point": "Czechowicz, Gabriel, 1876-1938", "biographical_information": ["Poln. Jurist; Ökonom; Politiker; von 1926 bis 1928 Finanzminister in Polen"]} 1 +2024-09-11 09:00:51.913302 2024-09-11 09:00:51.913305 6c672929-cf64-4e23-965a-1a5965613817 {"md5": "3a73ee736c03a1d65fe37c4aba7e53a2", "pid": "1032456213", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1032456213", "source": "GND"}], "variant_name": ["Hambach, Bettina"], "date_of_birth": "15.10.1923", "date_of_death": "2010", "preferred_name": "Moissi, Bettina", "country_associated": "gw", "variant_access_point": ["Hambach, Bettina, 1923-2010"], "authorized_access_point": "Moissi, Bettina, 1923-2010"} 1 +2024-09-11 09:00:51.975719 2024-09-11 09:00:51.975722 6a03ab5a-9228-4330-bb0a-133ba817d473 {"md5": "049c76c692abb2e325a7a0d924879a9b", "pid": "1032675357", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1032675357", "source": "GND"}], "date_of_birth": "03.08.1904", "date_of_death": "02.10.1941", "preferred_name": "Mog, Aribert", "country_associated": "au", "authorized_access_point": "Mog, Aribert, 1904-1941"} 1 +2024-09-11 09:00:52.030497 2024-09-11 09:00:52.030501 6f64d4f7-4c34-4e67-b02f-7a375da09eba {"md5": "9d8d2b3bdaf46e2b761d63010acfab12", "pid": "1033120790", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1033120790", "source": "GND"}], "variant_name": ["Glasze, G."], "date_of_birth": "1969", "preferred_name": "Glasze, Georg", "country_associated": "gw", "variant_access_point": ["Glasze, G., 1969-"], "authorized_access_point": "Glasze, Georg, 1969-", "biographical_information": ["Inhaber des Lehrstuhls für Kulturgeographie und Orientforschung an der Univ. Erlangen-Nürnberg; Forschungsinteressen u.a.: politische Geographie und geographische Stadtforschung"]} 1 +2024-09-11 09:00:52.083883 2024-09-11 09:00:52.083886 ccb38840-223f-4eb5-8c6d-f514468a28f9 {"md5": "9adb3ae46f6f6a9ac2e1e2ae0f0c5b11", "pid": "1033471542", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1033471542", "source": "GND"}], "preferred_name": "Sanlı, Kerem Cem", "country_associated": "tu", "authorized_access_point": "Sanlı, Kerem Cem"} 1 +2024-09-11 09:00:52.132491 2024-09-11 09:00:52.132495 95406e92-3984-4b1f-8e8d-422cb77fb45d {"md5": "b61b797369d6951c9495ff798444f47f", "pid": "1033570451", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1033570451", "source": "GND"}], "variant_name": ["Otmazgin, Nissim Kadosh", "פרופ' ניסים אוטמזגין"], "date_of_birth": "1973", "preferred_name": "Otmazgin, Nissim", "country_associated": "is", "variant_access_point": ["Otmazgin, Nissim Kadosh, 1973-", "פרופ' ניסים אוטמזגין, 1973-"], "authorized_access_point": "Otmazgin, Nissim, 1973-", "biographical_information": ["Mail des Verfassers (06.04.2017) zum 2. Vornamen \\"Kadosh\\": \\"I used it only in one book. Its not an official name - its my mother's maiden name. I did it as a present to my mother.\\"", "Schwerpunkte: Japanese popular culture in Asia, popular culture and regionalization in East and Southeast Asia, Japan-Southeast Asian relations, and cultural industry and cultural policy in Japan and South Korea."]} 1 +2024-09-11 09:00:52.185653 2024-09-11 09:00:52.185655 67e18e22-cd88-468c-8f7f-5d1a8fc11b7e {"md5": "ac3b8c8ff008b2e2d1b689fbfa967b7d", "pid": "1034236164", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1034236164", "source": "GND"}], "date_of_birth": "1971", "preferred_name": "Wright, Jon", "country_associated": "ie", "authorized_access_point": "Wright, Jon, 1971-"} 1 +2024-09-11 09:00:52.239439 2024-09-11 09:00:52.239442 e92337a8-6b7c-4f83-8b27-a08df645a69f {"md5": "2d3a4ac4e35421cd981a76f361d22d75", "pid": "1034635476", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1034635476", "source": "GND"}], "variant_name": ["Gutschera, Karl Robert"], "date_of_birth": "1964", "preferred_name": "Gutschera, K. Robert", "country_associated": "gw", "variant_access_point": ["Gutschera, Karl Robert, 1964-"], "authorized_access_point": "Gutschera, K. Robert, 1964-"} 1 +2024-09-11 09:00:52.293794 2024-09-11 09:00:52.293799 2cc1c4c7-1fb1-49c6-a039-6294f411bfa4 {"md5": "10eeb54b38d55f178d7bdb89db03cdfb", "pid": "103473262", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/103473262", "source": "GND"}], "variant_name": ["Akın, Gülten", "Gülten Akın"], "date_of_birth": "1933", "preferred_name": "Cankoçak, Gülten Akın", "country_associated": "tu", "variant_access_point": ["Akın, Gülten, 1933-", "Gülten Akın, 1933-"], "authorized_access_point": "Cankoçak, Gülten Akın, 1933-"} 1 +2024-09-11 09:00:52.34739 2024-09-11 09:00:52.347392 9a28d4ed-cda1-464a-a786-fe0da2076c35 {"md5": "4fd777f5d2703c60f69b1961f0576c9f", "pid": "1035018888", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1035018888", "source": "GND"}], "date_of_birth": "1937", "preferred_name": "Richter, Werner", "country_associated": "gw", "authorized_access_point": "Richter, Werner, 1937-", "biographical_information": ["Diss., Universität Köln, 1969"]} 1 +2024-09-11 09:00:52.403478 2024-09-11 09:00:52.403482 edb3953b-deb0-4ddb-b532-d7a00fdec4bf {"md5": "d815de9a1f1c99a2b76ffed6ac38293f", "pid": "1035444666", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1035444666", "source": "GND"}], "variant_name": ["Caro, José Manuel Sánchez", "Sánchez-Caro, José Manuel"], "date_of_birth": "1940", "preferred_name": "Sánchez Caro, José Manuel", "country_associated": "sp", "variant_access_point": ["Caro, José Manuel Sánchez, 1940-", "Sánchez-Caro, José Manuel, 1940-"], "authorized_access_point": "Sánchez Caro, José Manuel, 1940-"} 1 +2024-09-11 09:00:52.456501 2024-09-11 09:00:52.456504 75cd190a-0d55-4f1b-a6ef-ed7fa982cd5d {"md5": "4d5b6da21333a21af5c4b55cd41c445f", "pid": "1035621460", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1035621460", "source": "GND"}], "date_of_birth": "10.04.1525", "date_of_death": "16.03.1577", "preferred_name": "Krasiński, Franciszek", "country_associated": "pl", "authorized_access_point": "Krasiński, Franciszek, 1525-1577", "biographical_information": ["Poln. Bischof von Krakau; Vizekanzler; königl. Sekretär"]} 1 +2024-09-11 09:00:52.504867 2024-09-11 09:00:52.50487 8da30d8a-d3da-4f7a-aff8-18f9f463ed56 {"md5": "520c9c8de0d42f6e44deb394c363f5c0", "pid": "1035656221", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1035656221", "source": "GND"}], "variant_name": ["Komiya Kōzō", "小宮曠三"], "date_of_birth": "1917", "date_of_death": "1995", "preferred_name": "Komiya, Kōzō", "country_associated": "ja", "variant_access_point": ["Komiya Kōzō, 1917-1995", "小宮曠三, 1917-1995"], "parallel_access_point": ["小宮, 曠三, 1917-1995"], "authorized_access_point": "Komiya, Kōzō, 1917-1995"} 1 +2024-09-11 09:00:52.560595 2024-09-11 09:00:52.560598 d3013fa6-ff8d-4721-997d-97ec6369c64f {"md5": "eddfc81611b56493172dcd46a98c2a79", "pid": "1035688298", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1035688298", "source": "GND"}], "variant_name": ["Arranz, José Igor Prieto-", "Prieto Arranz, José Igor"], "preferred_name": "Prieto-Arranz, José Igor", "variant_access_point": ["Arranz, José Igor Prieto-", "Prieto Arranz, José Igor"], "authorized_access_point": "Prieto-Arranz, José Igor"} 1 +2024-09-11 09:00:52.613354 2024-09-11 09:00:52.613357 d3d3b3a8-522e-4bad-90c7-8911b0db5931 {"md5": "df0e0b984b8921d3059f19707774c08d", "pid": "1036111024", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1036111024", "source": "GND"}], "variant_name": ["Grignion, Charles, der Jüngere", "Grignos, C.", "Grignon, C."], "date_of_birth": "1754", "date_of_death": "1804", "preferred_name": "Grignion, Charles", "country_associated": "xxk", "variant_access_point": ["Grignion, Charles, der Jüngere, 1754-1804", "Grignos, C., 1754-1804", "Grignon, C., 1754-1804"], "authorized_access_point": "Grignion, Charles, 1754-1804"} 1 +2024-09-11 09:00:52.6647 2024-09-11 09:00:52.664705 4439117f-f051-489f-91cd-f90dddc9e193 {"md5": "ea5aecaf927a9160d585dc5bb142c111", "pid": "103624163", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/103624163", "source": "GND"}], "variant_name": ["Nāğī, Hilāl", "Nāgī, Hilāl", "Nājī, Hilāl"], "preferred_name": "Nāǧī, Hilāl", "variant_access_point": ["Nāğī, Hilāl", "Nāgī, Hilāl", "Nājī, Hilāl"], "parallel_access_point": ["ناجي, هلال"], "authorized_access_point": "Nāǧī, Hilāl"} 1 +2024-09-11 09:00:52.720245 2024-09-11 09:00:52.720248 cd5c1090-9b1c-4ad5-a7b9-0d3d83975aa9 {"md5": "668131e24fbd664e86a7f362ef56c7f5", "pid": "1036550141", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1036550141", "source": "GND"}], "variant_name": ["Facultatea de Administraţie şi Afaceri", "Universitatea din Bucureşti. Faculty of Business and Administration", "Universitatea din Bucureşti. Faculty of Administration and Business", "Faculty of Business and Administration", "Faculty of Administration and Business"], "preferred_name": "Universitatea din Bucureşti. Facultatea de Administraţie şi Afaceri", "country_associated": "rm", "variant_access_point": ["Facultatea de Administraţie şi Afaceri. Universitatea din Bucureşti", "Universitatea din Bucureşti. Faculty of Business and Administration", "Universitatea din Bucureşti. Faculty of Administration and Business", "Faculty of Business and Administration. Universitatea din Bucureşti", "Faculty of Administration and Business. Universitatea din Bucureşti"], "authorized_access_point": "Universitatea din Bucureşti. Facultatea de Administraţie şi Afaceri"} 1 +2024-09-11 09:00:52.773587 2024-09-11 09:00:52.77359 6fed2a92-d33b-4eb7-99ba-709f485faf92 {"md5": "106575de41359fba1213163dbf9903d0", "pid": "1037547543", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1037547543", "source": "GND"}], "variant_name": ["Cavelier, Joannes"], "date_of_birth": "1624", "date_of_death": "1701", "preferred_name": "Cavelier, Jean", "country_associated": "fr", "variant_access_point": ["Cavelier, Joannes, 1624-1701"], "authorized_access_point": "Cavelier, Jean, 1624-1701", "biographical_information": ["Königl. Drucker und Drucker der Univ. zu Caen"]} 1 +2024-09-11 09:00:52.891494 2024-09-11 09:00:52.891498 82c9419b-5e38-406b-92c4-b5c851cc5ad0 {"md5": "4adbe1bc1bd3df2cc6c6db916cc41d75", "pid": "1037788141", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["rus"], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1037788141", "source": "GND"}], "variant_name": ["Lʹvov, S. V.", "Lʹvov, Sergej", "Lʹvov, Sergej V."], "preferred_name": "Lʹvov, Sergej Vladimirovič", "country_associated": "ru", "variant_access_point": ["Lʹvov, S. V.", "Lʹvov, Sergej", "Lʹvov, Sergej V."], "authorized_access_point": "Lʹvov, Sergej Vladimirovič"} 1 +2024-09-11 09:00:52.965966 2024-09-11 09:00:52.965972 c6d782b2-37fe-4a38-9f89-885d1904d851 {"md5": "6977c6043c65c24d7bc1462a5aee7194", "pid": "103807349", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/103807349", "source": "GND"}], "date_of_birth": "1917", "date_of_death": "1985", "preferred_name": "Yardumian, Richard", "country_associated": "xxu", "authorized_access_point": "Yardumian, Richard, 1917-1985"} 1 +2024-09-11 09:00:53.023873 2024-09-11 09:00:53.023876 fd1a31f5-5680-4bda-ba49-cad32ed384b5 {"md5": "550db14ea15606afa60fed7b983c389d", "pid": "103843914", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/103843914", "source": "GND"}], "variant_name": ["Laub, Wasa"], "date_of_birth": "1857", "date_of_death": "1911", "preferred_name": "Laub, Váša", "variant_access_point": ["Laub, Wasa, 1857-1911"], "authorized_access_point": "Laub, Váša, 1857-1911"} 1 +2024-09-11 09:00:53.083005 2024-09-11 09:00:53.083009 df29cf2a-8ae5-4c91-9011-1e41542f81d5 {"md5": "3ee76533c80a5c49e548e3f72780d04e", "pid": "1038798124", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1038798124", "source": "GND"}], "date_of_birth": "1952", "preferred_name": "Madryas, Cezary", "country_associated": "pl", "authorized_access_point": "Madryas, Cezary, 1952-"} 1 +2024-09-11 09:00:53.139836 2024-09-11 09:00:53.139839 3e83e04b-2993-4a25-9328-8f89cc8e8657 {"md5": "8cf4dedd3315db40d877a836a4d3856e", "pid": "103899138", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/103899138", "source": "GND"}], "variant_name": ["Niessen, Charles", "Pohlhaus-Niessen, Carl", "Niessen, Carl", "Nissen, Charly"], "date_of_birth": "22.08.1923", "date_of_death": "21.02.1990", "preferred_name": "Niessen, Charly", "country_associated": "au", "variant_access_point": ["Niessen, Charles, 1923-1990", "Pohlhaus-Niessen, Carl, 1923-1990", "Niessen, Carl, 1923-1990", "Nissen, Charly, 1923-1990"], "parallel_access_point": ["Niessen, Charly, 1923-1990"], "authorized_access_point": "Niessen, Charly, 1923-1990"} 1 +2024-09-11 09:00:53.195387 2024-09-11 09:00:53.195397 80b5ea57-26ef-420f-83fa-936e72c0d1f0 {"md5": "b9cb4acb111d343d128cf491580a89ec", "pid": "104057386", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/104057386", "source": "GND"}], "variant_name": ["Lang, Matthaeus", "Langius, Matthias"], "preferred_name": "Lang, Matthias", "variant_access_point": ["Lang, Matthaeus", "Langius, Matthias"], "authorized_access_point": "Lang, Matthias", "biographical_information": ["Student der Theologie und Metaphysik in Weingarten"]} 1 +2024-09-11 09:00:53.250033 2024-09-11 09:00:53.250036 febaf4c6-29d0-4042-9714-228d7fc14dac {"md5": "4ac8a3638f38bda236f82ae4a6556a3d", "pid": "1041364962", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1041364962", "source": "GND"}], "variant_name": ["Norris Nicholson, Heather", "Norris, Heather"], "date_of_birth": "1957", "preferred_name": "Nicholson, Heather Norris", "country_associated": "xxk", "variant_access_point": ["Norris Nicholson, Heather, 1957-", "Norris, Heather, 1957-"], "authorized_access_point": "Nicholson, Heather Norris, 1957-", "biographical_information": ["Seit 2012 Senior Research Fellow, Centre for Visual and Oral History Research, an der University of Huddersfield"]} 1 +2024-09-11 09:00:53.313905 2024-09-11 09:00:53.313908 a8591323-fa4a-4bbc-8f9c-a06750ebf16d {"md5": "a9281957ed8ecd2793dd292f37f0e4f6", "pid": "1041494114", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1041494114", "source": "GND"}], "preferred_name": "Vereniging Bijstandsbond", "country_associated": "ne", "authorized_access_point": "Vereniging Bijstandsbond. Amsterdam"} 1 +2024-09-11 09:00:53.367564 2024-09-11 09:00:53.367567 158c9d09-878f-4103-b7e6-de558d0b5a3c {"md5": "036c8e3700369054a3e0872b03a81f07", "pid": "1041505701", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1041505701", "source": "GND"}], "variant_name": ["Programa de Población", "Universidad de la República. Facultad de Ciencias Sociales. Programa de Población"], "preferred_name": "Universidad de la República. Programa de Población", "country_associated": "uy", "variant_access_point": ["Programa de Población", "Universidad de la República. Facultad de Ciencias Sociales. Programa de Población"], "authorized_access_point": "Universidad de la República. Programa de Población"} 1 +2024-09-11 09:00:53.419374 2024-09-11 09:00:53.419377 5033914d-eb24-4292-a077-d868d5fbfba9 {"md5": "bd669bd05d3aad7b27516792af522d7f", "pid": "1042050643", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1042050643", "source": "GND"}], "date_of_birth": "1947", "preferred_name": "Pándy, Tamás", "country_associated": "hu", "authorized_access_point": "Pándy, Tamás, 1947-"} 1 +2024-09-11 09:00:53.471471 2024-09-11 09:00:53.471473 be683ce4-2f8c-4383-950f-afb5f81e6098 {"md5": "5f51c8f6f02199e670f9cc5138301c8e", "pid": "104240636", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/104240636", "source": "GND"}], "date_of_birth": "1828", "date_of_death": "1830", "preferred_name": "Dupuy, Pierre", "authorized_access_point": "Dupuy, Pierre, 1828-1830"} 1 +2024-09-11 09:00:53.521593 2024-09-11 09:00:53.521596 de939ac0-1a2e-4544-8653-2fe8cb7f737c {"md5": "8c5224df2b540eea7edc86bed777df0b", "pid": "1043162917", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1043162917", "source": "GND"}], "variant_name": ["Gibaja-Gonzales, Manuel", "Gonzales, Manuel Gibaja"], "preferred_name": "Gibaja Gonzales, Manuel", "country_associated": "pe", "variant_access_point": ["Gibaja-Gonzales, Manuel", "Gonzales, Manuel Gibaja"], "authorized_access_point": "Gibaja Gonzales, Manuel"} 1 +2024-09-11 09:00:58.694253 2024-09-11 09:00:58.694258 ce90b1af-9f2f-4a0e-b4dd-ea0802ce4b83 {"md5": "3c34ac00c50c0c94c947ca03eec401b0", "pid": "1067908366", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1067908366", "source": "GND"}], "variant_name": ["Vatsa, Rakesh"], "preferred_name": "Vatsa, Rakeśa", "variant_access_point": ["Vatsa, Rakesh"], "authorized_access_point": "Vatsa, Rakeśa"} 1 +2024-09-11 09:00:53.580872 2024-09-11 09:00:53.580875 27139a82-0513-4d19-b681-4c75efdc2e95 {"md5": "d29352583308bde93a341bcd9c5302b0", "pid": "1043761047", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1043761047", "source": "GND"}], "variant_name": ["Vietnam. Bộ tài nguyên và môi trường", "Bộ-Tài-Nguyên-Và-Môi-Trường", "Vietnam. Ministry of Natural Resources and Environment", "Vietnam. Ministerium für Naturressourcen und Umwelt", "Ministry of Natural Resources and Environment", "Ministerium für Naturressourcen und Umwelt"], "preferred_name": "Vietnam. Bộ-Tài-Nguyên-Và-Môi-Trường", "country_associated": "vm", "variant_access_point": ["Vietnam. Bộ tài nguyên và môi trường", "Bộ-Tài-Nguyên-Và-Môi-Trường. Vietnam", "Vietnam. Ministry of Natural Resources and Environment", "Vietnam. Ministerium für Naturressourcen und Umwelt", "Ministry of Natural Resources and Environment. Vietnam", "Ministerium für Naturressourcen und Umwelt. Vietnam"], "authorized_access_point": "Vietnam. Bộ-Tài-Nguyên-Và-Môi-Trường"} 1 +2024-09-11 09:00:53.633983 2024-09-11 09:00:53.633986 1efc5105-ccc2-4aa0-bbc7-e4de9d885bab {"md5": "d5b33ee8164b8815c9f83e548d9292d3", "pid": "1043881336", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1043881336", "source": "GND"}], "variant_name": ["Song Su", "Song, Su"], "preferred_name": "Su, Song", "country_associated": "cc", "variant_access_point": ["Song Su", "Song, Su"], "authorized_access_point": "Su, Song"} 1 +2024-09-11 09:00:53.687131 2024-09-11 09:00:53.687134 836658c2-804a-4cef-a64e-9887d1ac0fa0 {"md5": "132c7a1000001d6ee31eb2c3acedd147", "pid": "1044044519", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1044044519", "source": "GND"}], "preferred_name": "Rose, Adrian P.", "country_associated": "xxk", "authorized_access_point": "Rose, Adrian P."} 1 +2024-09-11 09:00:53.74693 2024-09-11 09:00:53.746932 e0543b59-1e60-454a-8ae5-484b8a00f225 {"md5": "75678cd32d31e8577eb95c60e783e5a4", "pid": "1044246936", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1044246936", "source": "GND"}], "date_of_birth": "1961", "preferred_name": "Zierl, Andreas", "country_associated": "gw", "authorized_access_point": "Zierl, Andreas, 1961-", "biographical_information": ["Deutscher klassischer Philologe"]} 1 +2024-09-11 09:00:53.801665 2024-09-11 09:00:53.801668 7efb3c6f-23b7-4ba8-81f4-26ff43263e3c {"md5": "6b6f351c422d282381933371eeea776f", "pid": "1044369329", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1044369329", "source": "GND"}], "variant_name": ["De Vriese, Geert"], "date_of_birth": "1962", "preferred_name": "Vriese, Geert de", "country_associated": "be", "variant_access_point": ["De Vriese, Geert, 1962-"], "authorized_access_point": "Vriese, Geert de, 1962-"} 1 +2024-09-11 09:00:53.852708 2024-09-11 09:00:53.852711 6b27bbc1-4dd4-4789-aa8c-396adcc8c7cf {"md5": "b3eefd580d6413ca20f58de3b25359ab", "pid": "1046083678", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1046083678", "source": "GND"}], "date_of_birth": "1843", "date_of_death": "1932", "preferred_name": "Welti, Oswald", "country_associated": "sz", "authorized_access_point": "Welti, Oswald, 1843-1932", "biographical_information": ["Schweizer Drucker und Fotograf"]} 1 +2024-09-11 09:00:53.914654 2024-09-11 09:00:53.914658 548a0196-652f-4914-ba3e-a87b74b72e14 {"md5": "32ceab134c5d34e342a65b7dba2dca6f", "pid": "1046664522", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1046664522", "source": "GND"}], "variant_name": ["Onda Riku", "Kumagai, Nanae", "Kumagai Nanae", "恩田陸", "熊谷, 奈苗", "熊谷奈苗"], "date_of_birth": "25.10.1964", "preferred_name": "Onda, Riku", "country_associated": "ja", "variant_access_point": ["Onda Riku, 1964-", "Kumagai, Nanae, 1964-", "Kumagai Nanae, 1964-", "恩田陸, 1964-", "熊谷, 奈苗, 1964-", "熊谷奈苗, 1964-"], "parallel_access_point": ["恩田, 陸, 1964-"], "authorized_access_point": "Onda, Riku, 1964-"} 1 +2024-09-11 09:00:53.969731 2024-09-11 09:00:53.969734 c3c8cc1f-87fb-4c71-9c0b-b1d32dcf6635 {"md5": "d3468670dc91f6d2804f982fb5c45cb7", "pid": "1047508257", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1047508257", "source": "GND"}], "preferred_name": "Prapanna, Vandana", "country_associated": "ii", "authorized_access_point": "Prapanna, Vandana"} 1 +2024-09-11 09:00:54.033526 2024-09-11 09:00:54.03353 df09402f-e5e9-4f87-867d-ae0bdd471bad {"md5": "79a41b946dc561a1591b6f6237ec93f7", "pid": "1047811014", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1047811014", "source": "GND"}], "variant_name": ["Âşık Furkanî", "Yıldırım, Turan"], "date_of_birth": "1965", "preferred_name": "Furkanî", "country_associated": "tu", "variant_access_point": ["Âşık Furkanî, 1965-", "Yıldırım, Turan, 1965-"], "authorized_access_point": "Furkanî, 1965-"} 1 +2024-09-11 09:00:54.099525 2024-09-11 09:00:54.09953 44408831-e3a4-429f-8a1b-fdc58b137985 {"md5": "fbe0c274463965fd42577b5912f672ec", "pid": "1048228142", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1048228142", "source": "GND"}], "preferred_name": "Beaudet, Flavie", "country_associated": "xxc", "authorized_access_point": "Beaudet, Flavie", "biographical_information": ["Maîtrise en sciences pastorales; formatrice et coordonnatrice des stages pastoraux au Centre de Formation en Pastorale et de Spiritualité et également chargée d'enseignement aux facultés de Théologie et des Sciences humaines (2013)"]} 1 +2024-09-11 09:00:54.158367 2024-09-11 09:00:54.158371 e3dab198-0d3b-4204-924a-cf1eda862a01 {"md5": "eb87d99ec6968cb32366669e3318f30b", "pid": "1048657442", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1048657442", "source": "GND"}], "date_of_birth": "1980", "preferred_name": "Antoniuk, Mateusz", "country_associated": "pl", "authorized_access_point": "Antoniuk, Mateusz, 1980-"} 1 +2024-09-11 09:00:54.213042 2024-09-11 09:00:54.213046 546ada39-9604-4723-be96-e41c7abd63a6 {"md5": "7dd33eede31a40ddd5669ec31efec6b1", "pid": "104999227X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/104999227X", "source": "GND"}], "variant_name": ["Lee, Bernon P."], "preferred_name": "Lee, Bernon", "country_associated": "xxu", "variant_access_point": ["Lee, Bernon P."], "authorized_access_point": "Lee, Bernon", "biographical_information": ["Dept. of Biblical and Theological Studies, Bethel Univ., Minn. (2013)"]} 1 +2024-09-11 09:00:54.272219 2024-09-11 09:00:54.272223 44cfec83-d280-47b7-ba2c-a078bcee1da4 {"md5": "3cc0d86b7c790351ca5a5e32f5399cc9", "pid": "1050328639", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1050328639", "source": "GND"}], "preferred_name": "Adams, Seonaidh", "country_associated": "xxk", "authorized_access_point": "Adams, Seonaidh", "biographical_information": ["Gälisch-Lehrer"]} 1 +2024-09-11 09:00:54.336856 2024-09-11 09:00:54.336858 2ae78ea0-be3e-4623-b431-bfdee909b426 {"md5": "840aa205f302c8b5fe39944957c674ec", "pid": "1050869354", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1050869354", "source": "GND"}], "variant_name": ["Schrijver, Emile", "Schrijver, Emile G.L."], "date_of_birth": "1962", "preferred_name": "Schrijver, Emile G. L.", "country_associated": "ne", "variant_access_point": ["Schrijver, Emile, 1962-", "Schrijver, Emile G.L., 1962-"], "parallel_access_point": ["שרייבר, אמיל, 1962-"], "authorized_access_point": "Schrijver, Emile G. L., 1962-", "biographical_information": ["Generaldirektor des Joods Cultureel Kwartier (JCK) in Amsterdam"]} 1 +2024-09-11 09:00:54.391101 2024-09-11 09:00:54.391105 ca357839-9283-44d0-9641-add70a6fb5b1 {"md5": "550469450ebfba0a3089e72aeea5a989", "pid": "1051111412", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1051111412", "source": "GND"}], "variant_name": ["Op de Beeck, Johan", "De Beeck, Johan op", "OpdeBeeck, Johan"], "date_of_birth": "1957", "preferred_name": "Beeck, Johan op de", "country_associated": "be", "variant_access_point": ["Op de Beeck, Johan, 1957-", "De Beeck, Johan op, 1957-", "OpdeBeeck, Johan, 1957-"], "authorized_access_point": "Beeck, Johan op de, 1957-", "biographical_information": ["Arbeitet für TV Limburg"]} 1 +2024-09-11 09:00:54.445071 2024-09-11 09:00:54.445075 da080cc9-8ca8-41c7-9f2c-6d562196228b {"md5": "6ce84fe0339f9c8dd7f6f5840787ef98", "pid": "1051286786", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1051286786", "source": "GND"}], "variant_name": ["Normann, Reinhard v.", "Von Normann, Reinhard"], "date_of_birth": "1938", "preferred_name": "Normann, Reinhard von", "country_associated": "gw", "variant_access_point": ["Normann, Reinhard v., 1938-", "Von Normann, Reinhard, 1938-"], "authorized_access_point": "Normann, Reinhard von, 1938-", "biographical_information": ["Dipl.-Kaufmann, Verf. von Ratgebern, Sachbüchern und Nachschlagewerken"]} 1 +2024-09-11 09:00:54.504484 2024-09-11 09:00:54.504487 49dce49f-243d-46b2-8dbd-187bcd2a5dbb {"md5": "2bc3d537d4f46b17f3314ca1b539010c", "pid": "1051412552", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1051412552", "source": "GND"}], "variant_name": ["Serventy, Dominic", "Serventy, Dominic L.", "Serventy, D. L."], "date_of_birth": "1904", "date_of_death": "1988", "preferred_name": "Serventy, Dominic Louis", "country_associated": "at", "variant_access_point": ["Serventy, Dominic, 1904-1988", "Serventy, Dominic L., 1904-1988", "Serventy, D. L., 1904-1988"], "authorized_access_point": "Serventy, Dominic Louis, 1904-1988", "biographical_information": ["Vollständiger Vorname: Dominic Louis"]} 1 +2024-09-11 09:00:54.57357 2024-09-11 09:00:54.573572 4b9b67bc-9024-4c18-9927-4890e9563294 {"md5": "93a9c7dda2f27eb99d5d5feba87772d2", "pid": "1051657490", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1051657490", "source": "GND"}], "preferred_name": "Instituto Nacional de Colonización", "country_associated": "bo", "authorized_access_point": "Instituto Nacional de Colonización"} 1 +2024-09-11 09:00:54.626286 2024-09-11 09:00:54.62629 87f1a168-2d4f-4f83-9961-4acda629aba8 {"md5": "f4d0161161f6a3f0a947cf9c4ff0717d", "pid": "1051682878", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1051682878", "source": "GND"}], "variant_name": ["Грибков, Виталий Степанович"], "date_of_birth": "1936", "preferred_name": "Gribkov, Vitalij Stepanovič", "variant_access_point": ["Грибков, Виталий Степанович, 1936-"], "authorized_access_point": "Gribkov, Vitalij Stepanovič, 1936-"} 1 +2024-09-11 09:00:54.68278 2024-09-11 09:00:54.682783 732631ea-79d3-4ebf-9c2f-d1a9f6745adc {"md5": "727a82ab6b49ef62922ea7853fedf915", "pid": "1051697891", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["rus"], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1051697891", "source": "GND"}], "variant_name": ["Knjazev, B. V.", "Knjazev, Boris V.", "Князев, Борис Владимирович"], "preferred_name": "Knjazev, Boris Vladimirovič", "variant_access_point": ["Knjazev, B. V.", "Knjazev, Boris V.", "Князев, Борис Владимирович"], "authorized_access_point": "Knjazev, Boris Vladimirovič", "biographical_information": ["Sowjet. Soziologe"]} 1 +2024-09-11 09:00:54.747168 2024-09-11 09:00:54.747171 08c8ca13-be6d-4863-971e-0df4b992fdb5 {"md5": "98ea93c1abb4d9662d68d5f844704a12", "pid": "1051918510", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1051918510", "source": "GND"}], "variant_name": ["Valtýsson, Helgi"], "date_of_birth": "1877", "date_of_death": "1971", "preferred_name": "Helgi Valtýsson", "variant_access_point": ["Valtýsson, Helgi, 1877-1971"], "authorized_access_point": "Helgi Valtýsson, 1877-1971"} 1 +2024-09-11 09:00:54.803113 2024-09-11 09:00:54.803118 dfdca05e-307b-4aa7-a4da-c4b385eafaaa {"md5": "935149fa8ebb4fb547097c9e4cbe6c16", "pid": "1052619274", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1052619274", "source": "GND"}], "variant_name": ["MichaelDavide", "MichaelDavide, Fratel", "Semeraro, Michael Davide", "Michaël Davide, Frère"], "date_of_birth": "1964", "preferred_name": "Semeraro, MichaelDavide", "country_associated": "it", "variant_access_point": ["MichaelDavide, 1964-", "MichaelDavide, Fratel, 1964-", "Semeraro, Michael Davide, 1964-", "Michaël Davide, Frère, 1964-"], "authorized_access_point": "Semeraro, MichaelDavide, 1964-", "biographical_information": ["ital. Benediktinermönch seit 1983"]} 1 +2024-09-11 09:00:54.85502 2024-09-11 09:00:54.855023 34cac94b-9980-4205-a543-4881825c9dd3 {"md5": "75a299f2ce53bc72942dd4aa1c6c563f", "pid": "1052636209", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1052636209", "source": "GND"}], "variant_name": ["Korth, K.", "Korth, Konrad Gustav Johannes"], "date_of_birth": "31.12.1903", "preferred_name": "Korth, Konrad", "country_associated": "gw", "variant_access_point": ["Korth, K., 1903-", "Korth, Konrad Gustav Johannes, 1903-"], "authorized_access_point": "Korth, Konrad, 1903-"} 1 +2024-09-11 09:00:54.909735 2024-09-11 09:00:54.90974 c5db405e-2490-4e3a-8c65-3fc6d1053ac2 {"md5": "cf5fc7d9cb0d90a57ab98e78a08fa763", "pid": "1053241011", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1053241011", "source": "GND"}], "date_of_birth": "11.07.1952", "preferred_name": "Syreeni, Kari", "country_associated": "fi", "authorized_access_point": "Syreeni, Kari, 1952-", "biographical_information": ["Finn. Exeget"]} 1 +2024-09-11 09:00:54.967778 2024-09-11 09:00:54.967781 a12a5312-47a0-4d76-b586-8546f1fbc14d {"md5": "f92345dee5380bf54b4b53bd5d2fb176", "pid": "1054143951", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1054143951", "source": "GND"}], "variant_name": ["Lamberton, Charles"], "date_of_birth": "1876", "date_of_death": "1960", "preferred_name": "Lamberton, C.", "country_associated": "fr", "variant_access_point": ["Lamberton, Charles, 1876-1960"], "authorized_access_point": "Lamberton, C., 1876-1960"} 1 +2024-09-11 09:00:55.030271 2024-09-11 09:00:55.030275 eda18028-4180-4b16-bb87-b827d0c48fca {"md5": "1426ad092eeb523d2ebfaa8f495ae26f", "pid": "1055067094", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1055067094", "source": "GND"}], "variant_name": ["David, ..."], "date_of_birth": "07.02.1938", "preferred_name": "David, Helga", "country_associated": "au", "variant_access_point": ["David, ..., 1938-"], "authorized_access_point": "David, Helga, 1938-", "biographical_information": ["1981 im Ensemble des Württembergischen Staatstheater Stuttgart", "Internet, Anfänge am Volkstheater Wien, lange in Deutschland tätig, 1981 im Ensemble des Württembergischen Staatstheater Stuttgart"]} 1 +2024-09-11 09:00:55.084118 2024-09-11 09:00:55.084121 c4f95e23-70b8-418e-8700-6746ebe1ab69 {"md5": "9d511371bc223a2cbb9f1270cdda7c2c", "pid": "1055101608", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1055101608", "source": "GND"}], "date_of_birth": "1826", "date_of_death": "1915", "preferred_name": "Abergavenny, William Nevill of", "authorized_access_point": "Abergavenny, William Nevill of, 1826-1915", "biographical_information": ["Marquess"]} 1 +2024-09-11 09:00:55.138486 2024-09-11 09:00:55.138488 3f682f26-f460-4c43-839c-51293f5184f6 {"md5": "220201aa2fadd1187ae3b8d1b686af16", "pid": "1055200525", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1055200525", "source": "GND"}], "date_of_birth": "1777", "date_of_death": "1825", "preferred_name": "Hallager, Laurents", "authorized_access_point": "Hallager, Laurents, 1777-1825"} 1 +2024-09-11 09:00:55.207489 2024-09-11 09:00:55.207492 9e613e78-ddb4-4882-9abd-0d8b0a917ce0 {"md5": "d50b5fd03f272eea2dc76a93ed7c9a5d", "pid": "1055211292", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1055211292", "source": "GND"}], "preferred_name": "Petmecky, Adelheid", "authorized_access_point": "Petmecky, Adelheid", "biographical_information": ["Dr."]} 1 +2024-09-11 09:00:55.260797 2024-09-11 09:00:55.260801 163a54af-3d24-4721-8204-8e51675c206f {"md5": "da513d632486a5c739d8fb0e025317df", "pid": "1055348328", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1055348328", "source": "GND"}], "variant_name": ["Lavoix, Henri Michel", "Lavoix, H.", "Lavoix, Michel Henri", "Lavoix, Henri-Michel"], "date_of_birth": "19.01.1820", "date_of_death": "23.10.1892", "preferred_name": "Lavoix, Henri", "country_associated": "fr", "variant_access_point": ["Lavoix, Henri Michel, 1820-1892", "Lavoix, H., 1820-1892", "Lavoix, Michel Henri, 1820-1892", "Lavoix, Henri-Michel, 1820-1892"], "authorized_access_point": "Lavoix, Henri, 1820-1892", "biographical_information": ["Conservateur au Département des médailles et antiques de la Bibliothèque Nationale, Paris. Critique dramatique et musical à l'\\"Illustration\\" sous le pseudonyme de Savigny"]} 1 +2024-09-11 09:00:55.321214 2024-09-11 09:00:55.321217 1fad45fe-52af-43d4-8ff0-10ab8ca8c3dc {"md5": "fb9a841b45177ffa05b5e45873308640", "pid": "1055490760", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1055490760", "source": "GND"}], "variant_name": ["Collins, Joseph B.", "Collins, J. B."], "date_of_birth": "07.09.1897", "date_of_death": "23.01.1975", "preferred_name": "Collins, Joseph Burns", "country_associated": "xxu", "variant_access_point": ["Collins, Joseph B., 1897-1975", "Collins, J. B., 1897-1975"], "authorized_access_point": "Collins, Joseph Burns, 1897-1975", "biographical_information": ["Promotion an der Universität Baltimore"]} 1 +2024-09-11 09:00:55.383906 2024-09-11 09:00:55.383909 4b10455a-9ef6-44e3-8562-4c6cc8daa739 {"md5": "fd1496c6a93b8ee32d92db2403edb15e", "pid": "105550835X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/105550835X", "source": "GND"}], "date_of_death": "1617", "preferred_name": "Cortesi, Cortese", "authorized_access_point": "Cortesi, Cortese, -1617"} 1 +2024-09-11 09:00:55.43818 2024-09-11 09:00:55.438183 5a4be8b8-1a09-41a1-846f-05d3fbdf4f83 {"md5": "72e742f6adccb1130885027c20fe12cc", "pid": "1055540210", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1055540210", "source": "GND"}], "variant_name": ["Hirsch, Georg F.", "Hirsch, Georg. Frid. Andr.", "Hirsch, Georgius Fridericus Andreas"], "preferred_name": "Hirsch, Georg Friedrich Andreas", "variant_access_point": ["Hirsch, Georg F.", "Hirsch, Georg. Frid. Andr.", "Hirsch, Georgius Fridericus Andreas"], "authorized_access_point": "Hirsch, Georg Friedrich Andreas", "biographical_information": ["Phil. Resp. in Altdorf"]} 1 +2024-09-11 09:00:55.497103 2024-09-11 09:00:55.497109 c2720a39-3cb3-4a36-86bd-3eed41dcc124 {"md5": "84b90cd7019bec09957565d64fa65a83", "pid": "1055644334", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1055644334", "source": "GND"}], "variant_name": ["Hutton, David Graham"], "date_of_birth": "1904", "date_of_death": "1988", "preferred_name": "Hutton, Graham", "variant_access_point": ["Hutton, David Graham, 1904-1988"], "authorized_access_point": "Hutton, Graham, 1904-1988"} 1 +2024-09-11 09:00:55.573386 2024-09-11 09:00:55.57339 f4c9086b-a72d-4d9d-a0cc-c131ded988eb {"md5": "bfb188c73dd2a1917b1f60b07b164a2c", "pid": "1055753001", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1055753001", "source": "GND"}], "variant_name": ["Mayer, Arno Joseph"], "date_of_birth": "1926", "preferred_name": "Mayer, Arno J.", "country_associated": "lu", "variant_access_point": ["Mayer, Arno Joseph, 1926-"], "authorized_access_point": "Mayer, Arno J., 1926-", "biographical_information": ["Holocaust-Überlebender (1940 in die USA)", "Princeton University (2008)", "Prof. Emeritus of European History"]} 1 +2024-09-11 09:00:55.646861 2024-09-11 09:00:55.646866 1e10bf21-1b65-46d7-ba8c-a61ba94007a2 {"md5": "74e9b93ba37aad1e2cd97dca0dc7e2d8", "pid": "1055794662", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1055794662", "source": "GND"}], "variant_name": ["Baldi, M."], "date_of_birth": "1952", "preferred_name": "Baldi, Marialuisa", "variant_access_point": ["Baldi, M., 1952-"], "authorized_access_point": "Baldi, Marialuisa, 1952-", "biographical_information": ["Prof., Univ. Mailand, Dep. Philos., (2000)"]} 1 +2024-09-11 09:00:55.716721 2024-09-11 09:00:55.716724 d00b3bf8-a119-4daf-8d80-06938e1f1d46 {"md5": "cf39ee09111ab9a6cd6f3d2200c4996e", "pid": "1055795316", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1055795316", "source": "GND"}], "variant_name": ["Halper, Ben-Tsiyon", "Halper, Ben-Sijjon", "Halper, Ben-Ṣiyyôn", "Halper, Benzion", "Halpern, Ben-Ṣijjōn", "Halpern, Ben-Ṣiyyôn", "Halper, B.", "הלפר, ב.", "האלפר, בן-ציון", "הלפר, בן־ציון"], "date_of_birth": "1884", "date_of_death": "1924", "preferred_name": "Halper, Bentsiyon", "country_associated": "li", "variant_access_point": ["Halper, Ben-Tsiyon, 1884-1924", "Halper, Ben-Sijjon, 1884-1924", "Halper, Ben-Ṣiyyôn, 1884-1924", "Halper, Benzion, 1884-1924", "Halpern, Ben-Ṣijjōn, 1884-1924", "Halpern, Ben-Ṣiyyôn, 1884-1924", "Halper, B., 1884-1924", "הלפר, ב., 1884-1924", "האלפר, בן-ציון, 1884-1924", "הלפר, בן־ציון, 1884-1924"], "parallel_access_point": ["הלפר, בנציון, 1884-1924"], "authorized_access_point": "Halper, Bentsiyon, 1884-1924"} 1 +2024-09-11 09:00:55.773151 2024-09-11 09:00:55.773155 88b1cfe5-7854-4ef0-a7bf-348803eeaa3f {"md5": "3ea7af9eb90a58d67152e8fc6b095ba8", "pid": "105597377X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/105597377X", "source": "GND"}], "variant_name": ["Killough, Lucy Winsor"], "date_of_birth": "16.04.1897", "preferred_name": "Killough, Lucy W.", "variant_access_point": ["Killough, Lucy Winsor, 1897-"], "authorized_access_point": "Killough, Lucy W., 1897-"} 1 +2024-09-11 09:00:55.834295 2024-09-11 09:00:55.834299 658c596a-f1e6-4b4a-8798-002533dba0a5 {"md5": "c425846e729b4ead2a5d80ac12bbdf41", "pid": "1056074779", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1056074779", "source": "GND"}], "date_of_birth": "1948", "preferred_name": "Venturelli, Aldo", "country_associated": "it", "authorized_access_point": "Venturelli, Aldo, 1948-", "biographical_information": ["Ab 1979 an der Universität Urbino tätig"]} 1 +2024-09-11 09:00:55.894908 2024-09-11 09:00:55.894913 534c61d4-345b-419a-9530-b02ebfb2a630 {"md5": "6274f87e30ab02a734194f03d824edc0", "pid": "1056091770", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1056091770", "source": "GND"}], "variant_name": ["Zîv, Meî̕rā"], "preferred_name": "Ziv, Meira", "variant_access_point": ["Zîv, Meî̕rā"], "authorized_access_point": "Ziv, Meira", "biographical_information": ["Hebrew Univ. of Jersalem, Fac. of Agriculture, Rehovot"]} 1 +2024-09-11 09:00:55.950233 2024-09-11 09:00:55.950237 4d2bdf86-4454-4d99-986f-f4b5dac8d715 {"md5": "0e18aee2bec5e5bb095824f721322ed0", "pid": "1056123087", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1056123087", "source": "GND"}], "variant_name": ["Shore, Lee Ward", "Ward Shore, Lee"], "date_of_birth": "1962", "preferred_name": "Peske, Nancy K.", "variant_access_point": ["Shore, Lee Ward, 1962-", "Ward Shore, Lee, 1962-"], "authorized_access_point": "Peske, Nancy K., 1962-"} 1 +2024-09-11 09:00:56.006457 2024-09-11 09:00:56.006461 2fb9a304-3642-42a0-8ffd-bb07c241f713 {"md5": "befdceb395727759f9ccedb000da019a", "pid": "1056148799", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1056148799", "source": "GND"}], "variant_name": ["Kurauchi Naoko", "Kurauchi, N.", "倉内直子"], "date_of_birth": "1963", "preferred_name": "Kurauchi, Naoko", "country_associated": "ja", "variant_access_point": ["Kurauchi Naoko, 1963-", "Kurauchi, N., 1963-", "倉内直子, 1963-"], "authorized_access_point": "Kurauchi, Naoko, 1963-", "biographical_information": ["Japanische Komponistin"]} 1 +2024-09-11 09:00:56.072162 2024-09-11 09:00:56.072166 2cb065af-81ed-40dc-b2c2-e71c82ca14f0 {"md5": "e1520aee181e42879274a19f3affce3d", "pid": "1056159278", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1056159278", "source": "GND"}], "variant_name": ["Giusti, Giovanni", "Giusti, Giambattista", "Giusti, G.B."], "date_of_birth": "1758", "date_of_death": "1829", "preferred_name": "Giusti, Giovanni Battista", "variant_access_point": ["Giusti, Giovanni, 1758-1829", "Giusti, Giambattista, 1758-1829", "Giusti, G.B., 1758-1829"], "authorized_access_point": "Giusti, Giovanni Battista, 1758-1829", "biographical_information": ["ital. Literat und Ingenieur", "Übersetzer"]} 1 +2024-09-11 09:00:56.131764 2024-09-11 09:00:56.131767 0b487ee1-8e6e-4b79-8ddc-84b0be5cce1b {"md5": "d6cb52082269ffc67bc31a7c65050c43", "pid": "1056220570", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1056220570", "source": "GND"}], "preferred_name": "Letelier, Mario", "country_associated": "xxc", "authorized_access_point": "Letelier, Mario", "biographical_information": ["Ing.,Prof. an der Univ. de Santiago de Chile"]} 1 +2024-09-11 09:00:56.188797 2024-09-11 09:00:56.188801 5736ef44-3de7-48a2-ac56-900b51e1dd57 {"md5": "3f9ddae460386f179b4cd48d384ccb43", "pid": "1056241462", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1056241462", "source": "GND"}], "preferred_name": "Roland, Alfredo E.", "country_associated": "ag", "authorized_access_point": "Roland, Alfredo E.", "biographical_information": ["Kunsthistoriker"]} 1 +2024-09-11 09:00:56.251791 2024-09-11 09:00:56.251794 0afb7d12-79d8-4e34-8947-eb2ce273c916 {"md5": "50deb3e49dc0342afb2ba739cc3dc8b0", "pid": "1056400331", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1056400331", "source": "GND"}], "preferred_name": "Cogotti, Marina", "country_associated": "it", "authorized_access_point": "Cogotti, Marina", "biographical_information": ["Mitarbeiterin der Soprintendenza per i Beni Architettonici e Paesaggistici per le province di Roma, Frosinone, Latina, Rieti e Viterbo, Direttore di Villa d'Este, Tivoli"]} 1 +2024-09-11 09:00:57.997562 2024-09-11 09:00:57.997567 e76374d3-b5ec-4870-afca-b7e5b1dcc885 {"md5": "a6520e5a0e11a15822ead190883d9828", "pid": "1062692519", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1062692519", "source": "GND"}], "variant_name": ["McKee Stapleton, Anne"], "preferred_name": "Stapleton, Anne McKee", "country_associated": "xxu", "variant_access_point": ["McKee Stapleton, Anne"], "authorized_access_point": "Stapleton, Anne McKee"} 1 +2024-09-11 09:00:56.309296 2024-09-11 09:00:56.3093 4e541a32-8713-4e5b-9050-790167c86af2 {"md5": "3ed68dd9be1d81e790ff883805a05957", "pid": "1056497572", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1056497572", "source": "GND"}], "preferred_name": "Jarquín Blandón, Simeón", "country_associated": "nq", "authorized_access_point": "Jarquín Blandón, Simeón", "biographical_information": ["Lokalhistoriker: Verf. von. \\"Jinotega : [recopilación histórica]\\", 1. ed., Managua 1991"]} 1 +2024-09-11 09:00:56.371928 2024-09-11 09:00:56.371932 5a3ca7f2-f516-4d57-a110-50ca08926be9 {"md5": "282616a1cb1a82c3a2a1d8a4e17266af", "pid": "1056601809", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1056601809", "source": "GND"}], "variant_name": ["Lemus Romero, Samuel Bernardo"], "preferred_name": "Lemus, Samuel Bernardo", "country_associated": "mx", "variant_access_point": ["Lemus Romero, Samuel Bernardo"], "authorized_access_point": "Lemus, Samuel Bernardo", "biographical_information": ["Journalist, Chronist, Dichter"]} 1 +2024-09-11 09:00:56.431911 2024-09-11 09:00:56.431918 554ff2b3-4219-4c4c-bd63-e6854edefd3b {"md5": "514ff402d2fdff772d3161ed15da589d", "pid": "1056604328", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1056604328", "source": "GND"}], "variant_name": ["Zamora, Juan Guerrero"], "date_of_birth": "1927", "date_of_death": "2002", "preferred_name": "Guerrero Zamora, Juan", "country_associated": "sp", "variant_access_point": ["Zamora, Juan Guerrero, 1927-2002"], "authorized_access_point": "Guerrero Zamora, Juan, 1927-2002", "biographical_information": ["Dichter"]} 1 +2024-09-11 09:00:56.494827 2024-09-11 09:00:56.494829 88a808c7-ba6f-4109-896d-d0ca3cfa3618 {"md5": "37c8c50c0ab873c420e1740ae76d89ae", "pid": "1056646438", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1056646438", "source": "GND"}], "preferred_name": "Naranjo Porras, Ana Victoria", "country_associated": "cr", "authorized_access_point": "Naranjo Porras, Ana Victoria", "biographical_information": ["Soziologin?"]} 1 +2024-09-11 09:00:56.556765 2024-09-11 09:00:56.556768 11c227c5-e56b-49c2-9bed-39b728ee629b {"md5": "340660ceaa6c3084788820eeb221a00d", "pid": "1056682051", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1056682051", "source": "GND"}], "variant_name": ["Prinz, Manfred F."], "preferred_name": "Prinz, Manfred", "country_associated": "gw", "variant_access_point": ["Prinz, Manfred F."], "authorized_access_point": "Prinz, Manfred", "biographical_information": ["Centro Mundo Lusófono, Institut an der Univ. Köln"]} 1 +2024-09-11 09:00:56.613102 2024-09-11 09:00:56.613107 cf80520c-fea3-49b2-bd8a-b832af8c6933 {"md5": "d73f0d1fc79e8aad3d8571d327aa0e27", "pid": "1057324841", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1057324841", "source": "GND"}], "variant_name": ["Ballivián Roxas, Vicente de", "Ballivián y Rojas, Vicente de", "Ballivián y Roxas, Vicente de", "Roxas, Vicente de Ballivián y"], "date_of_birth": "1810", "date_of_death": "1891", "preferred_name": "Ballivián Rojas, Vicente de", "country_associated": "bo", "variant_access_point": ["Ballivián Roxas, Vicente de, 1810-1891", "Ballivián y Rojas, Vicente de, 1810-1891", "Ballivián y Roxas, Vicente de, 1810-1891", "Roxas, Vicente de Ballivián y, 1810-1891"], "authorized_access_point": "Ballivián Rojas, Vicente de, 1810-1891", "biographical_information": ["Historiker u. Diplomat"]} 1 +2024-09-11 09:00:56.673234 2024-09-11 09:00:56.673238 eaf77720-0721-4b85-a3ad-cd2099398130 {"md5": "19cad4de38aba83d02f70f32f26fc027", "pid": "1057520837", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1057520837", "source": "GND"}], "date_of_birth": "1932", "preferred_name": "Cardoso, António", "country_associated": "po", "authorized_access_point": "Cardoso, António, 1932-", "biographical_information": ["Kunsthistoriker", "geb. in Amarante; veröffentl. Lit. zur portug. Kunst u. Architektur."]} 1 +2024-09-11 09:00:56.746906 2024-09-11 09:00:56.74691 5dcb36de-351d-4779-9a4d-b9e1a75f7407 {"md5": "b50dc358610eeb2c882126cd7231339a", "pid": "1057605336", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1057605336", "source": "GND"}], "preferred_name": "Zárate Morán, Roberto", "country_associated": "mx", "authorized_access_point": "Zárate Morán, Roberto", "biographical_information": ["Centro INAH Oaxaca"]} 1 +2024-09-11 09:00:56.813775 2024-09-11 09:00:56.813777 34225aad-df2a-470f-bd48-377bf3cd188c {"md5": "7fedb3f3387c2f821ca451a0b1322cab", "pid": "1057630616", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1057630616", "source": "GND"}], "preferred_name": "Pérez, Silverio", "country_associated": "pr", "authorized_access_point": "Pérez, Silverio", "biographical_information": ["Puertorikan. Schriftsteller und Fernsehjournalist; Chemieingenieur; Komponist; Librettist"]} 1 +2024-09-11 09:00:56.881081 2024-09-11 09:00:56.881085 f11d57c2-a5b0-4b14-b4d3-24d0da10313f {"md5": "c71f8d136f8c0fea01273231b4f95831", "pid": "1058848518", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058848518", "source": "GND"}], "date_of_birth": "1988", "preferred_name": "Casanova, Tiago", "country_associated": "po", "authorized_access_point": "Casanova, Tiago, 1988-"} 1 +2024-09-11 09:00:56.937691 2024-09-11 09:00:56.937694 54b2c60c-a718-4f5e-8319-5e95c2d76093 {"md5": "e4c6a00330ce68a9c6511a2ea6197ced", "pid": "1059467119", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059467119", "source": "GND"}], "variant_name": ["Fink, Elisabeth", "Heinrich, Ilona Elisabeth", "Fink-Heinrich, Ilona Elisabeth"], "date_of_birth": "1981", "preferred_name": "Fink, Ilona Elisabeth", "country_associated": "au", "variant_access_point": ["Fink, Elisabeth, 1981-", "Heinrich, Ilona Elisabeth, 1981-", "Fink-Heinrich, Ilona Elisabeth, 1981-"], "authorized_access_point": "Fink, Ilona Elisabeth, 1981-"} 1 +2024-09-11 09:00:56.997961 2024-09-11 09:00:56.997964 e12a1767-a4b7-4efa-89ce-951487eab7ca {"md5": "7b34acd20bc247b47653c5b3b3df787a", "pid": "1060270773", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060270773", "source": "GND"}], "date_of_birth": "1913", "date_of_death": "1993", "preferred_name": "Laffont, Pierre", "country_associated": "fr", "authorized_access_point": "Laffont, Pierre, 1913-1993", "biographical_information": ["Directeur général de \\"l'Écho d'Oran\\" (1945-1963). - Député d'Oran-campagne, Algérie (1958-1961). - Administrateur des éditions Robert Laffont (1964-1978)"]} 1 +2024-09-11 09:00:57.062232 2024-09-11 09:00:57.062236 fe48177e-0d53-48ed-8091-7b1beab4b5b3 {"md5": "551052930c2e849e831e6d7294b6bfb7", "pid": "1060675595", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["chi"], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060675595", "source": "GND"}], "variant_name": ["Gao Chengyuan", "高,成鸢"], "preferred_name": "Gao, Chengyuan", "country_associated": "cc", "variant_access_point": ["Gao Chengyuan", "高,成鸢"], "parallel_access_point": ["Gao Chengyuan", "高成鸢"], "authorized_access_point": "Gao, Chengyuan"} 1 +2024-09-11 09:00:57.117587 2024-09-11 09:00:57.117591 a740e21c-6bdb-4cd8-bddc-6955c9508057 {"md5": "780f075cdfe8034880f1f0e6d099334a", "pid": "106068375X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/106068375X", "source": "GND"}], "preferred_name": "Stras, Laurie", "country_associated": "xxk", "authorized_access_point": "Stras, Laurie"} 1 +2024-09-11 09:00:57.171745 2024-09-11 09:00:57.171747 d78443f8-1080-48a8-a03a-f4ce3aa335dc {"md5": "c5b4a6d6bf94d2d508de5ac182245c50", "pid": "1060757729", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060757729", "source": "GND"}], "variant_name": ["Fernandes de Abreu, Madalena"], "preferred_name": "Abreu, Madalena Fernandes de", "variant_access_point": ["Fernandes de Abreu, Madalena"], "authorized_access_point": "Abreu, Madalena Fernandes de"} 1 +2024-09-11 09:00:57.223246 2024-09-11 09:00:57.223249 86105fe4-8bf9-450b-a456-83027f3bc5ef {"md5": "f03e8727ac59162d4ea3804f02ac141b", "pid": "1061268225", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1061268225", "source": "GND"}], "preferred_name": "Chiarini, Claude", "authorized_access_point": "Chiarini, Claude"} 1 +2024-09-11 09:00:57.280082 2024-09-11 09:00:57.280086 03274ae2-1ce1-4ac5-8340-883a6051462e {"md5": "9216700fc8b458b0d52078d2b0567eaa", "pid": "1061330117", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1061330117", "source": "GND"}], "date_of_birth": "1964", "preferred_name": "Mißbach, Silvia", "country_associated": "gw", "authorized_access_point": "Mißbach, Silvia, 1964-"} 1 +2024-09-11 09:00:57.331173 2024-09-11 09:00:57.331177 98b57865-9a68-4a0e-8d32-525b2d47bac8 {"md5": "d7838699435e8be8f95a4a724b2e6573", "pid": "106136769X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/106136769X", "source": "GND"}], "preferred_name": "Renaud, Christian", "authorized_access_point": "Renaud, Christian"} 1 +2024-09-11 09:00:57.389655 2024-09-11 09:00:57.389658 2b8a90ca-224d-41ba-b002-e2bcb0b117aa {"md5": "d69fd2ff7b4335dbb4f7a611695141eb", "pid": "1061395804", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1061395804", "source": "GND"}], "date_of_birth": "1953", "preferred_name": "Ifland, Benno", "authorized_access_point": "Ifland, Benno, 1953-"} 1 +2024-09-11 09:00:57.442878 2024-09-11 09:00:57.442882 06001689-7cd3-4300-995e-8b707573d086 {"md5": "a8eeae7420fb221d5baa9c9d95ef164d", "pid": "1061433706", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1061433706", "source": "GND"}], "preferred_name": "Wegener, Eva", "authorized_access_point": "Wegener, Eva"} 1 +2024-09-11 09:00:57.540534 2024-09-11 09:00:57.540537 c7cda651-f22d-4462-b3c0-3e5f276c5c04 {"md5": "75fed5b1cf4e4efbc070c937b248e094", "pid": "1061583368", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1061583368", "source": "GND"}], "preferred_name": "Eche, Lilian", "authorized_access_point": "Eche, Lilian"} 1 +2024-09-11 09:00:57.590746 2024-09-11 09:00:57.590751 faa910ac-731c-46d9-923c-2db1124fca66 {"md5": "ed71aaeba196f6559306b4f67eb0c74d", "pid": "1061592588", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1061592588", "source": "GND"}], "preferred_name": "Heber, Robert", "authorized_access_point": "Heber, Robert"} 1 +2024-09-11 09:00:57.647582 2024-09-11 09:00:57.647586 6cbdcc81-da00-46cf-9f3e-571b65d5efbb {"md5": "e625124decaa1ec1b67f224da5fc943e", "pid": "1061744094", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1061744094", "source": "GND"}], "variant_name": ["Boszat, Ingrid"], "date_of_birth": "ca. 20. Jh.", "preferred_name": "Broszat, Ingrid", "variant_access_point": ["Boszat, Ingrid, ca. 20. Jh."], "authorized_access_point": "Broszat, Ingrid, ca. 20. Jh."} 1 +2024-09-11 09:00:57.707058 2024-09-11 09:00:57.707061 206e195f-b971-451a-94c2-dd428c486059 {"md5": "27abbdae5ee0d31a4869836faba0b025", "pid": "1061835065", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1061835065", "source": "GND"}], "preferred_name": "Ormières, Jean-Luc", "authorized_access_point": "Ormières, Jean-Luc"} 1 +2024-09-11 09:00:57.765722 2024-09-11 09:00:57.765726 9d048530-ad10-4117-ba8f-a9504f072abd {"md5": "953b5ba65fa680767a0a677e802c4241", "pid": "1061837513", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1061837513", "source": "GND"}], "preferred_name": "Kovacevic, Jozo", "authorized_access_point": "Kovacevic, Jozo"} 1 +2024-09-11 09:00:57.821439 2024-09-11 09:00:57.821441 53b6e184-e598-4e30-baae-dceb7c612076 {"md5": "35d4b85d91f276822637ad7da56db401", "pid": "1061999920", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1061999920", "source": "GND"}], "preferred_name": "Bolton, Nick", "authorized_access_point": "Bolton, Nick"} 1 +2024-09-11 09:00:57.875319 2024-09-11 09:00:57.875323 0e53564f-9817-4ff9-99aa-db60ad23c020 {"md5": "4ea5de116ac4cda9e2f01fb76fab6551", "pid": "1062371135", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1062371135", "source": "GND"}], "preferred_name": "Fairley, Wade", "authorized_access_point": "Fairley, Wade"} 1 +2024-09-11 09:00:57.942905 2024-09-11 09:00:57.942909 6f30d13c-4b17-49e4-9c4f-16da7c042b52 {"md5": "de0efdfb9cf76881e18beb4c77947930", "pid": "106243756X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/106243756X", "source": "GND"}], "date_of_birth": "27.06.1954", "preferred_name": "Zagaria, Anita", "country_associated": "it", "authorized_access_point": "Zagaria, Anita, 1954-"} 1 +2024-09-11 09:00:58.058928 2024-09-11 09:00:58.058932 09108cd9-5f3c-47a1-9a5c-6bf183719972 {"md5": "d4b377c8a8cab124ba589490a75390f9", "pid": "1063310490", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1063310490", "source": "GND"}], "variant_name": ["Magid, Moisej", "Magid, Michail Šolomovič", "Magid, Michail"], "date_of_birth": "1910", "date_of_death": "1965", "preferred_name": "Magid, Moisej Šolomovič", "country_associated": "ru", "variant_access_point": ["Magid, Moisej, 1910-1965", "Magid, Michail Šolomovič, 1910-1965", "Magid, Michail, 1910-1965"], "authorized_access_point": "Magid, Moisej Šolomovič, 1910-1965"} 1 +2024-09-11 09:00:58.115973 2024-09-11 09:00:58.115979 7da40eb8-df07-45b0-bae7-5f27a2d3d1f3 {"md5": "5219c6b1a9cd4f862de84ac5be663a05", "pid": "1063319633", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1063319633", "source": "GND"}], "date_of_birth": "21.04.1845", "date_of_death": "31.10.1904", "preferred_name": "Wanderley, Germano", "country_associated": "au", "authorized_access_point": "Wanderley, Germano, 1845-1904"} 1 +2024-09-11 09:00:58.170488 2024-09-11 09:00:58.170493 19581be3-2fd7-4f71-942b-617ca44f5de4 {"md5": "c27633cd7bfc2d5f832bcf8ff94501c0", "pid": "1063814340", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1063814340", "source": "GND"}], "date_of_birth": "1910", "date_of_death": "1997", "preferred_name": "Bielawski, Józef", "country_associated": "pl", "authorized_access_point": "Bielawski, Józef, 1910-1997", "biographical_information": ["Arabist, Wissenschaftler, Übersetzer Jura Universität Kraków, Orientalistik Ankara, Professor Universität Warszawa, Mitglied Akademie der Wissenschaften Irak"]} 1 +2024-09-11 09:00:58.231045 2024-09-11 09:00:58.23105 f6023dd3-538b-406b-8393-d6e7f432598e {"md5": "d6f3372795a572e0a969a46bd041d3f9", "pid": "1064701922", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1064701922", "source": "GND"}], "variant_name": ["Zell, Johann D.", "Zell, Johann A.", "Zell, Johann Augustin Daniel", "Zell, Johannes A.", "Zell, Johannes D.", "Zell, Johannes Daniel Augustinus"], "preferred_name": "Zell, Johann Daniel Augustin", "country_associated": "gw", "variant_access_point": ["Zell, Johann D.", "Zell, Johann A.", "Zell, Johann Augustin Daniel", "Zell, Johannes A.", "Zell, Johannes D.", "Zell, Johannes Daniel Augustinus"], "authorized_access_point": "Zell, Johann Daniel Augustin", "biographical_information": ["aus Biberach; Student an der Universität Tübingen"]} 1 +2024-09-11 09:00:58.2945 2024-09-11 09:00:58.294504 190ecec6-68ab-4365-9adb-c112d1aed1dc {"md5": "5f28d4ddfde43ae817a6361067812234", "pid": "1064724876", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1064724876", "source": "GND"}], "preferred_name": "Saul, Matthew", "country_associated": "xxk", "authorized_access_point": "Saul, Matthew", "biographical_information": ["PhD, University of Sheffield, 2009. Post-doctoral research fellow on the European Research Council (ERC) funded MultiRights project, University of Oslo, Norway, February 2013-. Lecturer in law, Durham Universtiy, 2008-2013"]} 1 +2024-09-11 09:00:58.349037 2024-09-11 09:00:58.34904 e8833a95-7ab4-42ed-8ff2-6e7e93a5b9b3 {"md5": "2690edbc112c176ff9fe849de3fea6de", "pid": "1064912958", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1064912958", "source": "GND"}], "variant_name": ["Klinkhardt und Biermann"], "preferred_name": "Klinkhardt & Biermann UG", "country_associated": "gw", "variant_access_point": ["Klinkhardt und Biermann"], "authorized_access_point": "Klinkhardt & Biermann UG"} 1 +2024-09-11 09:00:58.402077 2024-09-11 09:00:58.402082 25a5fc79-819c-4f2e-9216-01f28cda46c6 {"md5": "6239becf37dfaf46ea5150acdfa1fd9e", "pid": "1065743769", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1065743769", "source": "GND"}], "variant_name": ["Ciecieląg, Jerzy Janusz"], "date_of_birth": "1971", "preferred_name": "Ciecieląg, Jerzy", "country_associated": "pl", "variant_access_point": ["Ciecieląg, Jerzy Janusz, 1971-"], "authorized_access_point": "Ciecieląg, Jerzy, 1971-"} 1 +2024-09-11 09:00:58.481792 2024-09-11 09:00:58.481793 a98db456-00a4-4027-80ab-92fa57e42762 {"md5": "010059ab8c57c6b031a863b6e9bd1b45", "pid": "1065866356", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1065866356", "source": "GND"}], "variant_name": ["Heinz-Hubert Cloeren CTV"], "preferred_name": "CTV", "variant_access_point": ["Heinz-Hubert Cloeren CTV"], "authorized_access_point": "CTV"} 1 +2024-09-11 09:00:58.534751 2024-09-11 09:00:58.534754 19407b6f-7b6a-4e46-9a17-6d2e2264489a {"md5": "c47bf8420154030c3344af06c77f190e", "pid": "1067106146", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1067106146", "source": "GND"}], "variant_name": ["Hirzel, S."], "preferred_name": "Hirzel, Simon", "country_associated": "gw", "variant_access_point": ["Hirzel, S."], "authorized_access_point": "Hirzel, Simon", "biographical_information": ["seit August 2008 wissenschaftlicher Mitarbeiter am Fraunhofer-Institut für System- und Innovationsforschung ISI im Competence Center Energietechnologien und Energiesysteme (ehemals Energiepolitik und Energiesysteme), Karlsruhe; Diss. RWTH Aachen, Fakultät für Wirtschaftswissenschaften. 2014"]} 1 +2024-09-11 09:00:58.586373 2024-09-11 09:00:58.586376 a7aad836-7cb7-41e0-be9e-2b4a1e750090 {"md5": "1ec82db933c8f6bd0e69c06b7319b36a", "pid": "1067168370", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1067168370", "source": "GND"}], "variant_name": ["Masel, K. B."], "preferred_name": "Mazel', K. B.", "variant_access_point": ["Masel, K. B."], "authorized_access_point": "Mazel', K. B."} 1 +2024-09-11 09:00:58.639225 2024-09-11 09:00:58.639228 b0cb6c66-f299-4559-bad1-28464f6d0a7b {"md5": "5454ab3bf83a06877aa517ee03036311", "pid": "1067217495", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1067217495", "source": "GND"}], "variant_name": ["O.R.P.A.", "Organización del Pueblo en Armas", "Organización Revolucionaria del Pueblo en Armas", "Organization of the People in Arms"], "preferred_name": "ORPA", "country_associated": "gt", "date_of_termination": "1982", "variant_access_point": ["O.R.P.A.", "Organización del Pueblo en Armas", "Organización Revolucionaria del Pueblo en Armas", "Organization of the People in Arms"], "date_of_establishment": "1979", "authorized_access_point": "ORPA"} 1 +2024-09-11 09:00:58.747 2024-09-11 09:00:58.747005 5b4123b2-37f1-4b20-9151-44891af0ee41 {"md5": "ce905b130f155b055d5e64088856087b", "pid": "1067912916", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1067912916", "source": "GND"}], "variant_name": ["Ivanova, L.V.", "Ivanova, Ljudmila Vladimirovna", "Ivanova, Ljudmila V.", "Ivanova, Ljudmila", "Ivanova, L.", "Ivanova, Li︠u︡dmila Vladimirovna"], "preferred_name": "Ivanova, L. V.", "variant_access_point": ["Ivanova, L.V.", "Ivanova, Ljudmila Vladimirovna", "Ivanova, Ljudmila V.", "Ivanova, Ljudmila", "Ivanova, L.", "Ivanova, Li︠u︡dmila Vladimirovna"], "authorized_access_point": "Ivanova, L. V."} 1 +2024-09-11 09:00:58.806375 2024-09-11 09:00:58.806378 972b9823-a4e4-4dcb-a91f-398f1b7e26d3 {"md5": "422cc8e65261d89cf586a34226c45139", "pid": "1068089962", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1068089962", "source": "GND"}], "date_of_birth": "03.12.1952", "preferred_name": "Remmel, Johannes", "country_associated": "gw", "authorized_access_point": "Remmel, Johannes, 1952-", "biographical_information": ["Wissenschaftlicher Mitarbeiter am Institut für Öffentliches Recht der Philipps-Universität Marburg bis 30.9.1980. - Seit 1.10.1980 Richter am Amtsgericht in Marburg"]} 1 +2024-09-11 09:00:58.862117 2024-09-11 09:00:58.86212 aa7cb36c-4a82-4399-86b4-a5439c348f15 {"md5": "a85580918d57c95c46ba33da0bd00fe4", "pid": "1071439871", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1071439871", "source": "GND"}], "variant_name": ["Tosi, Mariachiara", "Tosi, Maria-Chiara", "Tosi, M. Chiara"], "preferred_name": "Tosi, Maria Chiara", "country_associated": "it", "variant_access_point": ["Tosi, Mariachiara", "Tosi, Maria-Chiara", "Tosi, M. Chiara"], "authorized_access_point": "Tosi, Maria Chiara"} 1 +2024-09-11 09:00:58.92546 2024-09-11 09:00:58.925464 28ee3478-d689-4918-9fb0-e94354c316e2 {"md5": "c2ecccac13ec21298e8dd46b0f63aa5b", "pid": "1072585936", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1072585936", "source": "GND"}], "date_of_birth": "1937", "preferred_name": "Benzoni, Gino", "country_associated": "it", "authorized_access_point": "Benzoni, Gino, 1937-", "biographical_information": ["Bis 2000 Professor an der Universität Venedig"]} 1 +2024-09-11 09:00:58.983737 2024-09-11 09:00:58.983741 d6a7ab7d-fd06-4ecb-a7ab-36f5351c7659 {"md5": "c93835d5d3fc5e79e7708c92c6b19977", "pid": "107289806", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/107289806", "source": "GND"}], "date_of_birth": "1942", "preferred_name": "Sandweg, Rainer", "country_associated": "gw", "authorized_access_point": "Sandweg, Rainer, 1942-", "biographical_information": ["Facharzt für Neurologie und Psychiatrie, Facharzt für psychotherapeutische Medizin, Psychoanalytiker, Lehranalytiker"]} 1 +2024-09-11 09:00:59.040562 2024-09-11 09:00:59.040565 6e98d38a-fad1-4586-8411-15dc6ec60072 {"md5": "4cd5e721818f2a7452c22ae2f059fa4a", "pid": "1072904977", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1072904977", "source": "GND"}], "preferred_name": "K. F. Glaesser, Kunstverlag", "country_associated": "gw", "date_of_termination": "1890", "date_of_establishment": "1888", "authorized_access_point": "K. F. Glaesser, Kunstverlag. Stuttgart", "biographical_information": ["Gründung: 01.07.1888", "Neuer Firmenname ab 01.08.1890"]} 1 +2024-09-11 09:00:59.102825 2024-09-11 09:00:59.102829 de8fff69-a880-4474-a6a5-4049f74e91f0 {"md5": "ef677fcde73932ab09ebcffa3ba053b4", "pid": "1072916436", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1072916436", "source": "GND"}], "preferred_name": "B. Wepf & Co (vormals Louis Jenke's Buchhandlung)", "country_associated": "sz", "date_of_establishment": "1902", "authorized_access_point": "B. Wepf & Co (vormals Louis Jenke's Buchhandlung). Basel", "biographical_information": ["Kauf: 01.10.1902"]} 1 +2024-09-11 09:00:59.164125 2024-09-11 09:00:59.164129 9c69a35f-46c7-4254-8d89-fc6f98395f96 {"md5": "619a6c794111117789f3eb78ecf8fe7a", "pid": "1072932296", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1072932296", "source": "GND"}], "variant_name": ["Klüger, Langbein und"], "preferred_name": "Langbein & Klüger", "country_associated": "gw", "date_of_termination": "1805", "variant_access_point": ["Klüger, Langbein und. Arnstadt"], "authorized_access_point": "Langbein & Klüger. Arnstadt"} 1 +2024-09-11 09:00:59.221809 2024-09-11 09:00:59.221813 569c7991-d64f-4d7e-901d-90f17d38b0cc {"md5": "48ee35f8462df2cd6f185be1f4661313", "pid": "1072961296", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1072961296", "source": "GND"}], "preferred_name": "Evangelischer Bücher-Verein in Berlin. Sortimentsbuchhandlung", "country_associated": "gw", "date_of_termination": "17.10.1889", "date_of_establishment": "06.01.1885", "authorized_access_point": "Evangelischer Bücher-Verein in Berlin. Sortimentsbuchhandlung", "biographical_information": ["Geschäftsführer: Tapp, Hermann [-1885-] (Id: p3920) (06.01.1885-). - Quelle: B2171a"]} 1 +2024-09-11 09:00:59.276482 2024-09-11 09:00:59.276486 2c73a87e-126d-4f32-9eee-36a99d400974 {"md5": "53293a24910384cdff24b59f7fa8269a", "pid": "1073022544", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1073022544", "source": "GND"}], "preferred_name": "Richard Gensel", "country_associated": "gw", "date_of_establishment": "1892", "authorized_access_point": "Richard Gensel. Zschopau", "biographical_information": ["Kauf: 01.01.1892"]} 1 +2024-09-11 09:00:59.340243 2024-09-11 09:00:59.340246 2342916b-60a5-4404-b2f4-28e59a153faa {"md5": "05c854153780943b3c5ed31a2748a431", "pid": "1073026825", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1073026825", "source": "GND"}], "preferred_name": "Max Schleppegrell", "country_associated": "gw", "date_of_establishment": "1943", "authorized_access_point": "Max Schleppegrell. Leipzig", "biographical_information": ["Firmenänderung: 1943 (Verlagsveränderungen im deutschsprachigen Buchhandel 1942-1963)"]} 1 +2024-09-11 09:00:59.40568 2024-09-11 09:00:59.405683 e7e9103d-9e6e-4aa8-8ff8-9e419be646d6 {"md5": "abe70581d84be5ba866c1398568311a1", "pid": "1073045927", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1073045927", "source": "GND"}], "preferred_name": "J. P. Setzer'sche Verlags- und Sortiments-Buchhandlung", "country_associated": "gw", "date_of_establishment": "1844", "authorized_access_point": "J. P. Setzer'sche Verlags- und Sortiments-Buchhandlung. Rottweil", "biographical_information": ["Kauf: 10.07.1844"]} 1 +2024-09-11 09:00:59.458939 2024-09-11 09:00:59.458941 389ef83f-635f-4eb9-acad-1b1bfa52f1b8 {"md5": "48a96775462b4ad7688dc6d2ac42e122", "pid": "1073087123", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1073087123", "source": "GND"}], "preferred_name": "Th. van der Smissen", "country_associated": "gw", "date_of_termination": "1855", "date_of_establishment": "1854", "authorized_access_point": "Th. van der Smissen. Flensburg", "biographical_information": ["Gründung: 05.1854 (Adressbuch 1855)", "Verkauf: 31.12.1855"]} 1 +2024-09-11 09:00:59.511009 2024-09-11 09:00:59.511011 7e337dc5-174d-44cd-8387-c3abacae173e {"md5": "74f2a2ff61d3818f69183671e7cd9312", "pid": "107371876X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/107371876X", "source": "GND"}], "variant_name": ["Bethge, Clemens Wolfgang", "Bethge, Clemens"], "date_of_birth": "1979", "preferred_name": "Bethge, Clemens W.", "country_associated": "gw", "variant_access_point": ["Bethge, Clemens Wolfgang, 1979-", "Bethge, Clemens, 1979-"], "authorized_access_point": "Bethge, Clemens W., 1979-", "biographical_information": ["Diss. Universität Tübingen, Evangelisch-Theologische Fakultät"]} 1 +2024-09-11 09:00:59.562523 2024-09-11 09:00:59.562528 a2eea3d9-8f98-40a7-9dc7-a08b2bf6100d {"md5": "d7a257bb634db2f6cc1f77b442e6f89b", "pid": "107441148X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/107441148X", "source": "GND"}], "variant_name": ["Diaz, Janet Winecoff", "Winecoff Diaz, Janet"], "preferred_name": "Diaz, Janet", "variant_access_point": ["Diaz, Janet Winecoff", "Winecoff Diaz, Janet"], "authorized_access_point": "Diaz, Janet"} 1 +2024-09-11 09:00:59.620137 2024-09-11 09:00:59.620141 e1596ac9-38dd-4b6f-b294-301e4c5c16c4 {"md5": "b52623f36532695dcc05aa84091e42c9", "pid": "107495839X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/107495839X", "source": "GND"}], "variant_name": ["Turner, R. J. W."], "preferred_name": "Turner, Robert J. W.", "variant_access_point": ["Turner, R. J. W."], "authorized_access_point": "Turner, Robert J. W."} 1 +2024-09-11 09:00:59.673142 2024-09-11 09:00:59.673145 bc232f86-7a06-46d0-b09f-d506d1f93b5e {"md5": "36fd9d6f4ef43765d7576c54897e69c4", "pid": "1076838170", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1076838170", "source": "GND"}], "variant_name": ["Zencker, Johann Christian", "Zancker, Johann Christian"], "preferred_name": "Zäncker, Johann Christian", "country_associated": "gw", "variant_access_point": ["Zencker, Johann Christian", "Zancker, Johann Christian"], "authorized_access_point": "Zäncker, Johann Christian"} 1 +2024-09-11 09:00:59.721591 2024-09-11 09:00:59.721594 d8da83d3-748f-4a44-b3ec-ef02d967e7e7 {"md5": "c459a73fd197dd8294c4bd1f018ee33f", "pid": "1076933726", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1076933726", "source": "GND"}], "preferred_name": "Kapuscinski, Jonas", "authorized_access_point": "Kapuscinski, Jonas"} 1 +2024-09-11 09:00:59.776008 2024-09-11 09:00:59.776011 db3a00f7-3369-4f9a-97b7-d24b7e409fd3 {"md5": "08e4f23f852edbb6175d64940d9c403d", "pid": "1077345259", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1077345259", "source": "GND"}], "variant_name": ["Direktion der Bereitschaftspolizei Rheinland-Pfalz"], "preferred_name": "Bereitschaftspolizei Rheinland-Pfalz. Direktion", "country_associated": "gw", "variant_access_point": ["Direktion der Bereitschaftspolizei Rheinland-Pfalz"], "authorized_access_point": "Bereitschaftspolizei Rheinland-Pfalz. Direktion"} 1 +2024-09-11 09:00:59.830104 2024-09-11 09:00:59.830109 8a816ba6-7d83-4adb-817d-d6ac0ef539ef {"md5": "35c8899527af391d591deaddc8c300a1", "pid": "107738338X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/107738338X", "source": "GND"}], "preferred_name": "Sibears, Daniel M.", "country_associated": "xxu", "authorized_access_point": "Sibears, Daniel M."} 1 +2024-09-11 09:00:59.894499 2024-09-11 09:00:59.894504 96984d4a-775d-4627-8d0c-13ba138da52b {"md5": "b020cfc443dc704305db3dd2f0292aae", "pid": "1077501706", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1077501706", "source": "GND"}], "preferred_name": "Gunnlaugson, Olen", "country_associated": "xxc", "authorized_access_point": "Gunnlaugson, Olen"} 1 +2024-09-11 09:00:59.950992 2024-09-11 09:00:59.950994 45e01ef4-b010-44e3-aadd-3436dbe49e01 {"md5": "5d9354cc8d5e294af74cb60f877edf24", "pid": "1077608101", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1077608101", "source": "GND"}], "date_of_birth": "1956", "preferred_name": "Stöppler, Thomas", "country_associated": "gw", "authorized_access_point": "Stöppler, Thomas, 1956-", "biographical_information": ["Studiendirektor, ist Landesvorsitzender des europaweit größten Fachverbandes im Behindertenbereich: Verband Sonderpädagogik e.V. Baden-Württemberg (vds). Nach langjähriger Tätigkeit als Sonderpädagoge und Schulleiter mit den Förderschwerpunkten Verhalten und Lernen sowie im Lehrerbildungsbereich ist er derzeit Leiter des Staatlichen Seminars für Didaktik und Lehrerbildung, Abteilung Sonderschulen in Stuttgart."]} 1 +2024-09-11 09:01:00.007793 2024-09-11 09:01:00.007798 2a28216d-b69a-4cd3-9280-09aeb78dc0fd {"md5": "6f6b52dfb3fa0b634f818d5a471ff67c", "pid": "1077612869", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1077612869", "source": "GND"}], "variant_name": ["Krustala-Xanthu, Sebastē", "Xanthu, Sebastē Krustala-"], "preferred_name": "Xanthu, Sebastē", "country_associated": "gr", "variant_access_point": ["Krustala-Xanthu, Sebastē", "Xanthu, Sebastē Krustala-"], "parallel_access_point": ["Ξάνθου, Σεβαστή"], "authorized_access_point": "Xanthu, Sebastē"} 1 +2024-09-11 09:01:00.066246 2024-09-11 09:01:00.066249 b33ee589-7e75-41a6-a066-a774cc5514d8 {"md5": "a6dc7069886b981387eb702878c54d08", "pid": "1077631081", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1077631081", "source": "GND"}], "preferred_name": "Vaccaro, Didier", "authorized_access_point": "Vaccaro, Didier"} 1 +2024-09-11 09:01:00.763402 2024-09-11 09:01:00.763405 c9448017-cb16-4801-be3f-0c7205883a93 {"md5": "333b845e49021811fead3876d857e83e", "pid": "1079304231", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1079304231", "source": "GND"}], "variant_name": ["Efrussi, Tatiana Aleksandrovna"], "date_of_birth": "1988", "preferred_name": "Efrussi, Tatiana", "country_associated": "ru", "variant_access_point": ["Efrussi, Tatiana Aleksandrovna, 1988-"], "authorized_access_point": "Efrussi, Tatiana, 1988-"} 1 +2024-09-11 09:01:00.12756 2024-09-11 09:01:00.127564 5dc98cbd-9f21-4e0e-8e16-45a1024fe677 {"md5": "848951bbda51d5c17f3b3b0079dc357b", "pid": "1077666799", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1077666799", "source": "GND"}], "variant_name": ["Fachausschuß Chemische Verfahrenstechnik und Apparatewesen"], "preferred_name": "Kammer der Technik. Fachausschuß Chemische Verfahrenstechnik und Apparatewesen", "variant_access_point": ["Fachausschuß Chemische Verfahrenstechnik und Apparatewesen"], "authorized_access_point": "Kammer der Technik. Fachausschuß Chemische Verfahrenstechnik und Apparatewesen"} 1 +2024-09-11 09:01:00.197494 2024-09-11 09:01:00.197497 b8a05cc9-9c48-4272-adcd-8a402b2e7c62 {"md5": "511ed52248f660137544cd3153ceff90", "pid": "1077833237", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1077833237", "source": "GND"}], "variant_name": ["Greenall, Annjo Klungervik", "Klungervik Greenall, Annjo"], "preferred_name": "Greenall, Annjo K.", "country_associated": "no", "variant_access_point": ["Greenall, Annjo Klungervik", "Klungervik Greenall, Annjo"], "authorized_access_point": "Greenall, Annjo K."} 1 +2024-09-11 09:01:00.248953 2024-09-11 09:01:00.248957 3519e451-3863-4e7e-90f0-3c526a5d9bf3 {"md5": "caa38a019075ad8af7f49f98d7286a13", "pid": "1077873468", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1077873468", "source": "GND"}], "variant_name": ["College of Business Administration"], "preferred_name": "Ǧāmiʿat al-Baḥrain. College of Business Administration", "country_associated": "ba", "variant_access_point": ["College of Business Administration. Ǧāmiʿat al-Baḥrain"], "authorized_access_point": "Ǧāmiʿat al-Baḥrain. College of Business Administration"} 1 +2024-09-11 09:01:00.305243 2024-09-11 09:01:00.305247 9c55d6e3-8339-4a73-b023-37e0150fd920 {"md5": "25473bdc5c2b7ae77f60dcb2f43b1842", "pid": "1077979355", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1077979355", "source": "GND"}], "preferred_name": "Orfanidis, Jordanis", "authorized_access_point": "Orfanidis, Jordanis"} 1 +2024-09-11 09:01:00.354708 2024-09-11 09:01:00.354711 2bf38f09-841d-4822-95d9-c910deb3ca9a {"md5": "571b93286734a27042a18124d1fe8f0c", "pid": "1078040133", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1078040133", "source": "GND"}], "preferred_name": "Schütz, Detta Sophie", "country_associated": "gw", "authorized_access_point": "Schütz, Detta Sophie", "biographical_information": ["Dissertation Humanwissenschaftliche Fakultät der Universität Köln 2015; Vertretungsprofessur Inklusive Bildung und Kommunikationsbeeinträchtigungen, Institut für Sonder- und Rehabilitationspädagogik, Universität Oldenburg"]} 1 +2024-09-11 09:01:00.408234 2024-09-11 09:01:00.408238 a51e59fe-d793-440f-9f5b-f734db4259cd {"md5": "f26cdad6a862c497d29ab417e2197953", "pid": "107808355X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/107808355X", "source": "GND"}], "preferred_name": "Oppel, Gottlieb", "country_associated": "gw", "authorized_access_point": "Oppel, Gottlieb", "biographical_information": ["1829 an der Akademie der Bildenden Künste München"]} 1 +2024-09-11 09:01:00.470844 2024-09-11 09:01:00.470848 75e064ba-2fcd-4e80-b863-91c4a4089bc5 {"md5": "1eed10461ed971646825164df14267df", "pid": "107817864X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/107817864X", "source": "GND"}], "variant_name": ["Congresso internazionale di Numismatica, 15.", "XV Congresso Internazionale di Numismatica, Taormina, 21 - 25 settembre 2015"], "preferred_name": "International Congress of Numismatics, 15.", "country_associated": "it", "variant_access_point": ["Congresso internazionale di Numismatica, 15., 2015, Taormina", "XV Congresso Internazionale di Numismatica, Taormina, 21 - 25 settembre 2015"], "authorized_access_point": "International Congress of Numismatics, 15., 2015, Taormina"} 1 +2024-09-11 09:01:00.553856 2024-09-11 09:01:00.553859 a0456254-a791-473f-b743-6593c93c68f1 {"md5": "335d1109a3612f943619119a23e41849", "pid": "1078249024", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1078249024", "source": "GND"}], "variant_name": ["Sankt Sebastianus Schützengesellschaft 1881 e.V. Klotten", "Sankt Sebastian Schützengesellschaft 1881 e.V. Klotten"], "preferred_name": "St. Sebastian Schützengesellschaft 1881 e.V. Klotten", "country_associated": "gw", "variant_access_point": ["Sankt Sebastianus Schützengesellschaft 1881 e.V. Klotten", "Sankt Sebastian Schützengesellschaft 1881 e.V. Klotten"], "authorized_access_point": "St. Sebastian Schützengesellschaft 1881 e.V. Klotten"} 1 +2024-09-11 09:01:00.60667 2024-09-11 09:01:00.606672 80d73ccb-26bc-4fab-a521-1c8a99bc6770 {"md5": "3399a0015c90b6f255d67ba030b696aa", "pid": "1078758360", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1078758360", "source": "GND"}], "preferred_name": "Dağarslani, Can", "country_associated": "tu", "authorized_access_point": "Dağarslani, Can", "biographical_information": ["Absolventin der Mimar Sinan University of Fine Art, Istanbul, 2006; Studium der Architektur"]} 1 +2024-09-11 09:01:00.65707 2024-09-11 09:01:00.657074 9eccd8b4-64fd-463b-8cb3-44daec331442 {"md5": "49d88b0a6f0c431e21e3438043ca39b3", "pid": "107916894", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/107916894", "source": "GND"}], "date_of_birth": "1910", "date_of_death": "1975", "preferred_name": "Senft, Albin-Friedrich", "country_associated": "gw", "authorized_access_point": "Senft, Albin-Friedrich, 1910-1975", "biographical_information": ["Dt. Wirtschaftswissenschaftler, Theologe, 1963-75 Direktor des Studienseminars Neuburg a.d. Donau"]} 1 +2024-09-11 09:01:00.710744 2024-09-11 09:01:00.710747 26846110-60da-4a10-a988-911e50889037 {"md5": "721b66b03c89a1f7e0271a8c8c0dc9fc", "pid": "1079291768", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1079291768", "source": "GND"}], "variant_name": ["Schleicher, Johannes"], "preferred_name": "Schleicher, Johann", "variant_access_point": ["Schleicher, Johannes"], "authorized_access_point": "Schleicher, Johann", "biographical_information": ["Student an der Philosopischen Fakultät der Universität Tübingen; Erlangte 1625 den Grad eines Magisters"]} 1 +2024-09-11 09:01:02.895164 2024-09-11 09:01:02.895168 18a2886b-7c70-41cd-ab02-a2f20dfadc04 {"md5": "ac18e78944d6cefb57202500fa839ad7", "pid": "1082523097", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1082523097", "source": "GND"}], "preferred_name": "Katayama, Koji", "country_associated": "ja", "authorized_access_point": "Katayama, Koji"} 1 +2024-09-11 09:01:00.828161 2024-09-11 09:01:00.828165 aa9509bf-dae8-45d3-90af-ebd31259e5da {"md5": "e4b9a685c5e114d33de9b4881c342aed", "pid": "1079330836", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1079330836", "source": "GND"}], "variant_name": ["Asia Mission Conference", "Christian Conference of Asia"], "preferred_name": "CCA Assembly", "country_associated": "kn", "variant_access_point": ["Asia Mission Conference, 1994, Seoul", "Christian Conference of Asia. Assembly, 1994, Seoul"], "authorized_access_point": "CCA Assembly, 1994, Seoul"} 1 +2024-09-11 09:01:00.893911 2024-09-11 09:01:00.893913 a152be2d-7301-4381-a3e2-3229a7372137 {"md5": "24e48c4d995cf388bffa26a34e7484d4", "pid": "1079330844", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1079330844", "source": "GND"}], "variant_name": ["Sangyon, Kim", "Kim Sangyong", "Kim, Sang Yong"], "preferred_name": "Kim, Sangyong", "country_associated": "ko", "variant_access_point": ["Sangyon, Kim", "Kim Sangyong", "Kim, Sang Yong"], "authorized_access_point": "Kim, Sangyong"} 1 +2024-09-11 09:01:00.948012 2024-09-11 09:01:00.948016 d44a4702-cc91-428e-a201-267b7637e536 {"md5": "2b500d7a82ff2e371d54ed9bf694a7f0", "pid": "1079390413", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1079390413", "source": "GND"}], "date_of_birth": "1867", "preferred_name": "Sporrer, Alphons", "country_associated": "gw", "authorized_access_point": "Sporrer, Alphons, 1867-"} 1 +2024-09-11 09:01:01.0031 2024-09-11 09:01:01.003102 fa69a29d-c396-4cbf-83bd-2e9b87da6007 {"md5": "0bd6a3761e238443e90d92d00f2fb440", "pid": "1079392009", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1079392009", "source": "GND"}], "date_of_birth": "1882", "preferred_name": "Ssemiczky, Gustav von", "country_associated": "gw", "authorized_access_point": "Ssemiczky, Gustav von, 1882-"} 1 +2024-09-11 09:01:01.068058 2024-09-11 09:01:01.068061 3ab0c731-56ce-4920-bde8-a7b3075acb9a {"md5": "98aa1210db20b766f8cbeb1b7b13fe2f", "pid": "1079423273", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1079423273", "source": "GND"}], "variant_name": ["Luspay, Edmund"], "date_of_birth": "1877", "preferred_name": "Luspay, Ödön", "country_associated": "hu", "variant_access_point": ["Luspay, Edmund, 1877-"], "authorized_access_point": "Luspay, Ödön, 1877-", "biographical_information": ["1898 an der Akademie der Bildenden Künste München"]} 1 +2024-09-11 09:01:01.128325 2024-09-11 09:01:01.128329 181472a8-9ee0-46d4-8410-edc30548398a {"md5": "fa24a8b17520d75cc38e6e32fd6e02fa", "pid": "1079471162", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1079471162", "source": "GND"}], "date_of_birth": "1877", "date_of_death": "1943", "preferred_name": "Hollaus, Bartholomäus", "country_associated": "gw", "authorized_access_point": "Hollaus, Bartholomäus, 1877-1943", "biographical_information": ["1897 an der Akademie der Bildenden Künste München"]} 1 +2024-09-11 09:01:01.192992 2024-09-11 09:01:01.192996 d01cd244-38af-431d-a751-74530d56d2ec {"md5": "d50fdb40895951840046a90e96009ebb", "pid": "1079507582", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1079507582", "source": "GND"}], "variant_name": ["3rd Luxembourg Workshop on Space and Satellite Communication Law"], "preferred_name": "Luxembourg Workshop on Space and Satellite Communication Law, 3.", "country_associated": "lu", "variant_access_point": ["3rd Luxembourg Workshop on Space and Satellite Communication Law"], "authorized_access_point": "Luxembourg Workshop on Space and Satellite Communication Law, 3., 2014, Luxemburg, Stadt"} 1 +2024-09-11 09:01:01.249101 2024-09-11 09:01:01.249104 b5add006-da6b-424e-8435-ed4e01c2dd40 {"md5": "9ee515f4ac8baa58f004754b7446f382", "pid": "107956215X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/107956215X", "source": "GND"}], "variant_name": ["Fey, Johann Jakob"], "preferred_name": "Fey, Johann Jacob", "country_associated": "gw", "variant_access_point": ["Fey, Johann Jakob"], "authorized_access_point": "Fey, Johann Jacob", "biographical_information": ["Miteigentümer der Lithographischen Anstalt, Druckerei und Buchbinderei \\"Gebrüder Fey\\", die 1874 begründet wurde"]} 1 +2024-09-11 09:01:01.303154 2024-09-11 09:01:01.303157 2304af48-650f-4cca-967f-22d753fbcd09 {"md5": "de5a3a96f3390d10fc8d0939d779b192", "pid": "1079687157", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1079687157", "source": "GND"}], "date_of_birth": "1988", "preferred_name": "Varlet, Anastasia", "country_associated": "fr", "authorized_access_point": "Varlet, Anastasia, 1988-", "biographical_information": ["Diss. ETH Zürich, 2015"]} 1 +2024-09-11 09:01:01.362001 2024-09-11 09:01:01.362005 ccf72f25-d9d3-4129-9b6f-b1d2496d62eb {"md5": "61e98cdcc39a61afada3ab35f0bf9350", "pid": "1079732772", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1079732772", "source": "GND"}], "date_of_birth": "1878", "preferred_name": "Krennitz, Franz", "country_associated": "gw", "authorized_access_point": "Krennitz, Franz, 1878-", "biographical_information": ["1909 an der Akademie der Bildenden Künste München"]} 1 +2024-09-11 09:01:01.418786 2024-09-11 09:01:01.418789 7e9bb389-45e5-458f-9ba1-8f270aaaabda {"md5": "be216e852b6686d4d8cfea3c78d418a9", "pid": "1079981993", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1079981993", "source": "GND"}], "variant_name": ["Artl, G."], "preferred_name": "Artl, Gerhard", "country_associated": "gw", "variant_access_point": ["Artl, G."], "authorized_access_point": "Artl, Gerhard"} 1 +2024-09-11 09:01:01.475519 2024-09-11 09:01:01.475523 a4551a04-e80d-438e-b7ab-209d19027c9b {"md5": "720782ba096b6b31f3de52adb882ca86", "pid": "1079982175", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1079982175", "source": "GND"}], "date_of_birth": "1976", "preferred_name": "Bruns, Thomas", "country_associated": "gw", "authorized_access_point": "Bruns, Thomas, 1976-"} 1 +2024-09-11 09:01:02.960834 2024-09-11 09:01:02.960837 a8a4b36d-d632-4752-8cc4-c2cec2cc365e {"md5": "2185bb0dd08d187f1b39d2ff1fa39809", "pid": "1084363704", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1084363704", "source": "GND"}], "preferred_name": "Silberstein, Theresa", "country_associated": "gw", "authorized_access_point": "Silberstein, Theresa"} 1 +2024-09-11 09:01:01.545914 2024-09-11 09:01:01.545918 070dfd84-b344-4467-a5c2-c596c50f9aab {"md5": "4e3b64d8e3efa7944089f4210a6b9193", "pid": "1080093648", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1080093648", "source": "GND"}], "date_of_birth": "19.02.1871", "date_of_death": "29.10.1959", "preferred_name": "Laufer, Paul", "country_associated": "sz", "authorized_access_point": "Laufer, Paul, 1871-1959", "biographical_information": ["1905-1941 Prof. für systematische Theologie in Lausanne, 1941-1945 für praktische Theologie. 1930 Dr. h.c. der Theologie der Universität Lausanne"]} 1 +2024-09-11 09:01:01.604752 2024-09-11 09:01:01.604755 de9f37f3-df81-4097-9978-81ebdb7f90d4 {"md5": "07b029153e18ce2f2c31f907d7e78ec7", "pid": "1080488448", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1080488448", "source": "GND"}], "date_of_birth": "14.12.1906", "date_of_death": "25.03.1991", "preferred_name": "Jostes, Paul", "country_associated": "gw", "authorized_access_point": "Jostes, Paul, 1906-1991", "biographical_information": ["Dt. Amtsinspektor aus Finnentrop-Serkenrode (Kreis Olpe, Westfalen)"]} 1 +2024-09-11 09:01:01.659469 2024-09-11 09:01:01.659473 f97bbb40-79ef-4185-b27d-1cc77a656182 {"md5": "3f7b494fb5089ecd8f55daeec8176969", "pid": "1080490868", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1080490868", "source": "GND"}], "variant_name": ["Königswarter'sche Unterrichts- und Studienstiftung"], "preferred_name": "Arthur und Emil Königswarter'sche Unterrichts- und Studienstiftung", "date_of_termination": "1939", "variant_access_point": ["Königswarter'sche Unterrichts- und Studienstiftung"], "date_of_establishment": "1873", "authorized_access_point": "Arthur und Emil Königswarter'sche Unterrichts- und Studienstiftung"} 1 +2024-09-11 09:01:01.719124 2024-09-11 09:01:01.719126 d9724f83-0068-45d5-b4e6-93e6d403aa5a {"md5": "94ffd0085d3b30a2b206c401d1f4e6f2", "pid": "108049450", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "qualifier": "Freiherr von", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/108049450", "source": "GND"}], "variant_name": ["Zedlitz, Sigismund von", "Zedlitz und Neukirch, Sigismund von", "Neukirch, Sigismund von Zedlitz und"], "date_of_birth": "1838", "date_of_death": "1903", "preferred_name": "Zedlitz und Neukirch, Sigismund, Freiherr von", "country_associated": "pl", "variant_access_point": ["Zedlitz, Sigismund von, 1838-1903", "Zedlitz und Neukirch, Sigismund von, 1838-1903", "Neukirch, Sigismund von Zedlitz und, 1838-1903"], "authorized_access_point": "Zedlitz und Neukirch, Sigismund, Freiherr von, 1838-1903"} 1 +2024-09-11 09:01:01.785253 2024-09-11 09:01:01.785256 05d3b86c-2643-4238-bec0-2b27cf1fcfde {"md5": "a861a82976e2e858a4c063beb2cf35a7", "pid": "1080869417", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1080869417", "source": "GND"}], "variant_name": ["Li Jianglong", "Jianglong, Li"], "preferred_name": "Li, Jianglong", "country_associated": "cc", "variant_access_point": ["Li Jianglong", "Jianglong, Li"], "authorized_access_point": "Li, Jianglong", "biographical_information": ["Professor, School of Economics and Finance, Xi'an Jiaotong University, Xi'an, Shaanxi, China", "Harvard-China Project, John A. Paulson School of Engineering and Applied Sciences, Harvard University", "School of Management, Huazhong University of Science and Technology", "The School of Economics, China Center for Energy Economics Research, Xiamen University, Fujian, China"]} 1 +2024-09-11 09:01:01.838124 2024-09-11 09:01:01.838127 e8c2cd0d-46e7-4f07-838d-4bd852e35714 {"md5": "098ad4546f36931d7d7fc5b442b93807", "pid": "1081028270", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081028270", "source": "GND"}], "date_of_birth": "1932", "preferred_name": "Burgardt, Albert-Justin", "country_associated": "gw", "authorized_access_point": "Burgardt, Albert-Justin, 1932-"} 1 +2024-09-11 09:01:01.887742 2024-09-11 09:01:01.887744 d9803c48-cae6-4925-b89f-5fce500b0499 {"md5": "f671720cae2a2926e4cc0b07e4543232", "pid": "1081399880", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081399880", "source": "GND"}], "preferred_name": "Neumann, Marc", "country_associated": "gw", "authorized_access_point": "Neumann, Marc", "biographical_information": ["Stellvertretender Abteilungsleiter Grundsatz, Presse- und Öffentlichkeitsarbeit, Medienpolitik beim Deutschen Gewerkschaftsbund Nordrhein-Westfalen; Lehrauftrag an der Fakultät für Sozialwissenschaft der Ruhr-Universität Bochum"]} 1 +2024-09-11 09:01:01.946808 2024-09-11 09:01:01.946813 215196a7-306f-40ba-b97f-7edcfb074b04 {"md5": "37060c20226b15931b952f71f730303f", "pid": "1081429097", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081429097", "source": "GND"}], "variant_name": ["Unwirth, Gregorius", "Unwird, Gregor", "Unwird, Gregorius", "Unwirdt, Gregor"], "date_of_birth": "1542", "date_of_death": "1601", "preferred_name": "Unwirth, Gregor", "country_associated": "gw", "variant_access_point": ["Unwirth, Gregorius, 1542-1601", "Unwird, Gregor, 1542-1601", "Unwird, Gregorius, 1542-1601", "Unwirdt, Gregor, 1542-1601"], "authorized_access_point": "Unwirth, Gregor, 1542-1601"} 1 +2024-09-11 09:01:02.110708 2024-09-11 09:01:02.110713 4bedec77-8b78-414d-9d64-9d0dc1125d24 {"md5": "3f6c288df5baea5323c23f14ebe9c34d", "pid": "1081450452", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081450452", "source": "GND"}], "variant_name": ["INAI"], "preferred_name": "Instituto Nacional de Transparencia, Acceso a la Información y Protección de Datos Personales", "country_associated": "mx", "variant_access_point": ["INAI. Abkuerzung"], "date_of_establishment": "2015", "authorized_access_point": "Instituto Nacional de Transparencia, Acceso a la Información y Protección de Datos Personales"} 1 +2024-09-11 09:01:02.230521 2024-09-11 09:01:02.230524 449baf7f-5c36-4b04-a88c-63beb54d701c {"md5": "3472c52f0c403b1ef2f2a15c3176da1e", "pid": "1081489529", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081489529", "source": "GND"}], "date_of_birth": "1976", "preferred_name": "Strupp, Julia", "country_associated": "gw", "authorized_access_point": "Strupp, Julia, 1976-", "biographical_information": ["Habil., Med. Fak. d. Univ. zu Köln, 13. September 2021", "Diss., Med. Fak. d. Univ. zu Köln, 30. November 2015"]} 1 +2024-09-11 09:01:03.69764 2024-09-11 09:01:03.697643 d753faf8-f7b9-4055-9b9d-f098b463d8a4 {"md5": "e40d4469db8936b0ce573079bb5a38ce", "pid": "1085827739", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1085827739", "source": "GND"}], "preferred_name": "Société belge de médecine tropicale. Joint Meeting", "authorized_access_point": "Société belge de médecine tropicale. Joint Meeting"} 1 +2024-09-11 09:01:02.284345 2024-09-11 09:01:02.284348 3eedd94d-5223-4da2-be88-3f334ad582cb {"md5": "4e79344194a47df332bd87dd3afacd6c", "pid": "1081556625", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081556625", "source": "GND"}], "variant_name": ["Staatl. Beratungsstelle für Volkstümliches Büchereiwesen", "Staatl. Beratungsstelle für die Regierungsbezirke Düsseldorf und Aachen"], "preferred_name": "Staatliche Beratungsstelle für Volkstümliches Büchereiwesen", "variant_access_point": ["Staatl. Beratungsstelle für Volkstümliches Büchereiwesen", "Staatl. Beratungsstelle für die Regierungsbezirke Düsseldorf und Aachen"], "authorized_access_point": "Staatliche Beratungsstelle für Volkstümliches Büchereiwesen", "biographical_information": ["1910 erhielt der Regierungsbezirk Düsseldorf eine Staatliche Beratungsstelle, aber die erste Einrichtung dieser Art wurde zuvor in Dortmund gegründet."]} 1 +2024-09-11 09:01:02.340239 2024-09-11 09:01:02.340242 3a440253-bf19-4e67-89ec-adbb077e4e13 {"md5": "76d1dca512ddb97109e6a8c2cd3a47c1", "pid": "1081654597", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081654597", "source": "GND"}], "date_of_birth": "1943", "preferred_name": "Rasenack, Udo", "country_associated": "gw", "authorized_access_point": "Rasenack, Udo, 1943-"} 1 +2024-09-11 09:01:02.393001 2024-09-11 09:01:02.393004 d36af6ca-ac81-491f-a0e8-21d7fb60ca80 {"md5": "b8e385f883ceb4d145fcb978552f1fbe", "pid": "1081687118", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081687118", "source": "GND"}], "variant_name": ["Pei, Xu", "Xu Pei"], "preferred_name": "Xu, Pei", "country_associated": "xxu", "variant_access_point": ["Pei, Xu", "Xu Pei"], "authorized_access_point": "Xu, Pei", "biographical_information": ["Raymond J. Harbert College of Business, Aviation and Supply Chain Management Department"]} 1 +2024-09-11 09:01:02.444523 2024-09-11 09:01:02.444527 6111eb6d-6bee-450f-9c96-2a8dd67f4c81 {"md5": "f0937cf0cfa8415e90b650253cb42dd3", "pid": "1081988355", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081988355", "source": "GND"}], "variant_name": ["Henneberg, Ernst"], "date_of_birth": "1873", "date_of_death": "1941", "preferred_name": "Henneberg, Ernst von", "country_associated": "au", "variant_access_point": ["Henneberg, Ernst, 1873-1941"], "authorized_access_point": "Henneberg, Ernst von, 1873-1941", "biographical_information": ["K. u. k. Offizier"]} 1 +2024-09-11 09:01:02.499125 2024-09-11 09:01:02.499129 56db8a84-b061-46ba-875a-9ab64f21b3e8 {"md5": "9162300b1744e07725e2d3242dbcc1d9", "pid": "1082002127", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1082002127", "source": "GND"}], "variant_name": ["Tizmoret ha-Erets-Yiśreʾelit", "Tizmoret ha-Ereṣ-Yiśreʾelit", "Palestine Orchestra", "Palestine Symphony Orchestra", "Symphony Orchestra of Eretz Yisrael"], "preferred_name": "Tizmoret ha-Erets-Yiśre'ēlît", "country_associated": "is", "date_of_termination": "1948", "variant_access_point": ["Tizmoret ha-Erets-Yiśreʾelit", "Tizmoret ha-Ereṣ-Yiśreʾelit", "Palestine Orchestra", "Palestine Symphony Orchestra", "Symphony Orchestra of Eretz Yisrael"], "date_of_establishment": "1936", "authorized_access_point": "Tizmoret ha-Erets-Yiśre'ēlît", "biographical_information": ["Das Israel Philharmonic Orchestra ist das führende Sinfonieorchester in Israel; 1936 gegründet von dem polnischen Geiger Bronisław Huberman. Hauptspielstätte des Orchesters ist das Charles Bronfman Auditorium in Tel Aviv."]} 1 +2024-09-11 09:01:02.554885 2024-09-11 09:01:02.554888 41914141-df55-4f51-955f-6d80623d3410 {"md5": "fee96afb6be067d3f44742d868028e3e", "pid": "1082006580", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1082006580", "source": "GND"}], "preferred_name": "International Workshop on 'Minerals Processing and Beneficiation'", "country_associated": "sa", "authorized_access_point": "International Workshop on 'Minerals Processing and Beneficiation', 2012, Johannesburg"} 1 +2024-09-11 09:01:02.616896 2024-09-11 09:01:02.616899 fb092839-dc83-4584-a40e-954070711a5b {"md5": "6a1f70e3496837c82465d405714511ec", "pid": "1082007447", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1082007447", "source": "GND"}], "preferred_name": "Bauer, Stefan", "country_associated": "gw", "authorized_access_point": "Bauer, Stefan"} 1 +2024-09-11 09:01:02.677998 2024-09-11 09:01:02.678002 38c1ed2c-e64c-412b-a219-8dc905a95e0d {"md5": "85163b8380fb4bf26099b44b859fbf18", "pid": "108231563X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/108231563X", "source": "GND"}], "preferred_name": "Arbeitsgruppe Türkische Arbeiter in Münster", "country_associated": "gw", "authorized_access_point": "Arbeitsgruppe Türkische Arbeiter in Münster"} 1 +2024-09-11 09:01:02.730884 2024-09-11 09:01:02.730887 088ec3ba-6569-42fd-935a-f39ccb2e0b34 {"md5": "964cfb4f47b6981cf7162143285d3068", "pid": "1082319058", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1082319058", "source": "GND"}], "preferred_name": "Bustos, Natacha", "country_associated": "sp", "authorized_access_point": "Bustos, Natacha"} 1 +2024-09-11 09:01:02.785114 2024-09-11 09:01:02.785117 0c89ec88-2d47-4299-ad60-b9ec14328794 {"md5": "2bdae35121bb80c4f15b712ab83ef72f", "pid": "1082383880", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1082383880", "source": "GND"}], "variant_name": ["Universitätsklinikum Jena. AG Experimentelle Rheumatologie"], "preferred_name": "Universitätsklinikum Jena. Arbeitsgruppe Experimentelle Rheumatologie", "country_associated": "gw", "variant_access_point": ["Universitätsklinikum Jena. AG Experimentelle Rheumatologie"], "authorized_access_point": "Universitätsklinikum Jena. Arbeitsgruppe Experimentelle Rheumatologie"} 1 +2024-09-11 09:01:02.837076 2024-09-11 09:01:02.837078 4b839600-3fb7-4608-841f-e2f94c83b954 {"md5": "817f5467c30491c6bf966f48f2b8174d", "pid": "1082387401", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1082387401", "source": "GND"}], "variant_name": ["Istituto svizzero di Roma. Sede di Milano"], "preferred_name": "Schweizerisches Institut in Rom. Sede di Milano", "country_associated": "it", "variant_access_point": ["Istituto svizzero di Roma. Sede di Milano"], "authorized_access_point": "Schweizerisches Institut in Rom. Sede di Milano"} 1 +2024-09-11 09:01:03.013673 2024-09-11 09:01:03.013677 6455bce8-fef4-4c64-8785-38d05efc9475 {"md5": "a5cffe96ca181de4b6ebd8cece03b7f2", "pid": "108451836", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/108451836", "source": "GND"}], "variant_name": ["With, Hans-Joachim de"], "date_of_birth": "21.05.1932", "preferred_name": "With, Hans de", "country_associated": "gw", "variant_access_point": ["With, Hans-Joachim de, 1932-"], "authorized_access_point": "With, Hans de, 1932-", "biographical_information": ["1962 Staatsanwalt, 1966-1969 Landgerichtsrat; 1974-1982 Parl. Staatssekretär beim Bundesminister der Justiz; 1966-1969 Stadtrat, Bamberg"]} 1 +2024-09-11 09:01:03.073165 2024-09-11 09:01:03.073169 16e61713-397e-4a0d-a702-a4cdef622ce4 {"md5": "5c241542c965558dd9942713c0315ba6", "pid": "1085208036", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1085208036", "source": "GND"}], "variant_name": ["Infra, Informationsstelle für Frauen", "Informationsstelle für Frauen"], "preferred_name": "Frauenbefreiungsbewegung. Informationsstelle für Frauen", "country_associated": "sz", "variant_access_point": ["Infra, Informationsstelle für Frauen. Zürich", "Informationsstelle für Frauen. Zürich"], "authorized_access_point": "Frauenbefreiungsbewegung. Zürich. Informationsstelle für Frauen"} 1 +2024-09-11 09:01:03.128869 2024-09-11 09:01:03.128872 9b94eeb3-591c-4c64-a8ff-d912836a4f9b {"md5": "506771f6f74e9df16a8802ceed48617e", "pid": "1085704564", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1085704564", "source": "GND"}], "preferred_name": "Environmental and Development Agency Trust", "authorized_access_point": "Environmental and Development Agency Trust. Johannesburg"} 1 +2024-09-11 09:01:03.191576 2024-09-11 09:01:03.191579 7399647b-829f-4b05-ab2f-17c32aa8c832 {"md5": "a0eecda22f1aed7b7c7ef7031ac5be77", "pid": "1085733416", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1085733416", "source": "GND"}], "preferred_name": "Heimatschutztheater", "authorized_access_point": "Heimatschutztheater. Thun"} 1 +2024-09-11 09:01:03.247326 2024-09-11 09:01:03.24733 ce35808b-3f07-4b13-9a93-c78bc92a66a6 {"md5": "9b862bf8a66eb1152432e4dccc29bdba", "pid": "1085772225", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1085772225", "source": "GND"}], "preferred_name": "Ärztinnen und Ärzte für Umweltschutz. Sektion Zürich", "authorized_access_point": "Ärztinnen und Ärzte für Umweltschutz. Sektion Zürich"} 1 +2024-09-11 09:01:03.303524 2024-09-11 09:01:03.303527 fcf63a52-7639-4df3-b4fc-a2c7f23941c5 {"md5": "2f72a42d18ee0afa69f5aaa15238ea28", "pid": "1085773566", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1085773566", "source": "GND"}], "variant_name": ["Helvetia Maennerchor of New York", "New York, Helvetia Maennerchor", "Maennerchor Helvetia"], "preferred_name": "Helvetia-Männerchor", "variant_access_point": ["Helvetia Maennerchor of New York", "New York, Helvetia Maennerchor", "Maennerchor Helvetia. New York"], "authorized_access_point": "Helvetia-Männerchor. New York"} 1 +2024-09-11 09:01:03.367914 2024-09-11 09:01:03.367917 d703472f-5d8d-43db-b466-88603fb8eca6 {"md5": "f1892774f57c9ff0f181e74844937f76", "pid": "1085805433", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1085805433", "source": "GND"}], "preferred_name": "Modern Critical Theory Group", "authorized_access_point": "Modern Critical Theory Group. Great Britain"} 1 +2024-09-11 09:01:03.418775 2024-09-11 09:01:03.418778 9adccced-d380-44f7-9d76-8fd8fffb9e09 {"md5": "cc3f063cfda49ad56c7a14144565a5c4", "pid": "1085806677", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1085806677", "source": "GND"}], "variant_name": ["Facoltà di medicina veterinaria"], "preferred_name": "Università degli studi di Padova. Facoltà di medicina veterinaria", "country_associated": "it", "variant_access_point": ["Facoltà di medicina veterinaria. Università degli studi di Padova"], "authorized_access_point": "Università degli studi di Padova. Facoltà di medicina veterinaria"} 1 +2024-09-11 09:01:03.475012 2024-09-11 09:01:03.475016 14ca9480-1b35-4956-9a4e-d71759b311bc {"md5": "44110f7a248dddd40aaab925cc4cda90", "pid": "1085808254", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1085808254", "source": "GND"}], "preferred_name": "Blaukreuzmusik Ostermundigen", "country_associated": "sz", "authorized_access_point": "Blaukreuzmusik Ostermundigen"} 1 +2024-09-11 09:01:03.529195 2024-09-11 09:01:03.529199 03885d5a-ddaf-4b6e-bc9a-a91670a74f19 {"md5": "d7a4b4ffd5f0cfaee726d269a188a19b", "pid": "1085822613", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1085822613", "source": "GND"}], "variant_name": ["Universitat Autònoma de Barcelona. Area of Research in Studies from Antiquity. Workshop", "Area of Research in Studies from Antiquity. Workshop", "AREA. Workshop"], "preferred_name": "Universidad Autónoma. Area of Research in Studies from Antiquity. Workshop", "country_associated": "sp", "variant_access_point": ["Universitat Autònoma de Barcelona. Area of Research in Studies from Antiquity. Workshop", "Area of Research in Studies from Antiquity. Workshop", "AREA. Area of Research in Studies from Antiquity. Workshop"], "authorized_access_point": "Universidad Autónoma. Barcelona. Area of Research in Studies from Antiquity. Workshop"} 1 +2024-09-11 09:01:03.581116 2024-09-11 09:01:03.58112 13dc585e-a7ec-4d4e-bdf5-31a95686f453 {"md5": "552d1823c4558bf079929166f06fcc4c", "pid": "1085824861", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1085824861", "source": "GND"}], "preferred_name": "SFE Banking Corporation", "authorized_access_point": "SFE Banking Corporation. Luxembourg"} 1 +2024-09-11 09:01:03.638232 2024-09-11 09:01:03.638235 6581123a-97df-43f2-b6e0-fd92e1f6fe03 {"md5": "b6131004601ef4333b3dea4bda9876b7", "pid": "1085825302", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1085825302", "source": "GND"}], "preferred_name": "Centro Cultural/Arte Contemporáneo", "authorized_access_point": "Centro Cultural/Arte Contemporáneo. México"} 1 +2024-09-11 09:01:28.417619 2024-09-11 09:01:28.417624 96f462b0-a5e3-40b1-8b6d-acc1793120c4 {"md5": "0d05335645b5ffe890a1374a984e67e2", "pid": "1150789433", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1150789433", "source": "GND"}], "date_of_birth": "1965", "preferred_name": "Polley, Martin", "country_associated": "xxk", "authorized_access_point": "Polley, Martin, 1965-"} 1 +2024-09-11 09:01:03.754567 2024-09-11 09:01:03.754571 7148917d-4e9d-4966-aadd-0a5dcdf22bbb {"md5": "cfdbf91c35b1442ec4e995abe07c49c2", "pid": "1085836894", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1085836894", "source": "GND"}], "preferred_name": "Association por International Servicie", "authorized_access_point": "Association por International Servicie"} 1 +2024-09-11 09:01:03.809654 2024-09-11 09:01:03.809658 9fc41ba6-9a50-4519-960b-f3abe84b753a {"md5": "a869e4d2e844f45a221396dc9542d756", "pid": "108585440X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/108585440X", "source": "GND"}], "variant_name": ["Trio Albatros Ensemble"], "preferred_name": "Trio Albatros", "variant_access_point": ["Trio Albatros Ensemble"], "authorized_access_point": "Trio Albatros"} 1 +2024-09-11 09:01:03.862588 2024-09-11 09:01:03.862591 cf7e0e41-5107-46fa-9d90-d9c9db43a06b {"md5": "ef05e1467b51ea9f4084abebd150e247", "pid": "1085905519", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1085905519", "source": "GND"}], "preferred_name": "Société philatélique La Colombe", "authorized_access_point": "Société philatélique La Colombe. Saint-Blaise"} 1 +2024-09-11 09:01:03.918576 2024-09-11 09:01:03.918579 4d730fa9-e229-4e2e-8d67-a637b50e3aa7 {"md5": "212820d67a27897696872b585fb7e9ca", "pid": "1085909603", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1085909603", "source": "GND"}], "variant_name": ["Ǧamʿiyyat Ṣadāqat Kāmdan Abū Dīs", "Jamʿīyat Ṣadāqat Kāmdan Abū Dīs"], "preferred_name": "Camden-Abu Dis Friendship Association", "variant_access_point": ["Ǧamʿiyyat Ṣadāqat Kāmdan Abū Dīs", "Jamʿīyat Ṣadāqat Kāmdan Abū Dīs"], "authorized_access_point": "Camden-Abu Dis Friendship Association"} 1 +2024-09-11 09:01:03.970675 2024-09-11 09:01:03.970677 bde20398-ff41-4e1c-94ca-2c1ef4c9cf49 {"md5": "d4a90614ca5cc95021a7e498336208fa", "pid": "1085909808", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1085909808", "source": "GND"}], "variant_name": ["ETN"], "preferred_name": "École technique de Neuchâtel", "country_associated": "sz", "variant_access_point": ["ETN. Abkuerzung"], "date_of_establishment": "1969", "authorized_access_point": "École technique de Neuchâtel"} 1 +2024-09-11 09:01:04.022236 2024-09-11 09:01:04.022239 6764f897-b4ba-4f6d-9d16-3cb49b7d2024 {"md5": "c4b0495c490cd5a044db97be87392ee3", "pid": "1085934519", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1085934519", "source": "GND"}], "preferred_name": "Color Metal AG", "country_associated": "sz", "date_of_termination": "1983", "date_of_establishment": "1926", "authorized_access_point": "Color Metal AG", "biographical_information": ["Gegr. 1926; das Unternehmen wurde 1983 aufgelöst"]} 1 +2024-09-11 09:01:04.088013 2024-09-11 09:01:04.088016 785a7909-7707-42f5-92a6-3018bcce2d59 {"md5": "b08abc4ed5609b458c38ddc2e5baa7ce", "pid": "1085989879", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1085989879", "source": "GND"}], "variant_name": ["JP"], "preferred_name": "Commission Justice et Paix", "variant_access_point": ["JP. Commission Justice et Paix, Bruxelles"], "authorized_access_point": "Commission Justice et Paix. Bruxelles"} 1 +2024-09-11 09:01:04.160316 2024-09-11 09:01:04.16032 e7607e52-fdb8-40e7-aae7-74326ce01d89 {"md5": "04bc9be3cfb6b6fc7da099177ba219a1", "pid": "1086006615", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086006615", "source": "GND"}], "preferred_name": "Single Singers", "authorized_access_point": "Single Singers"} 1 +2024-09-11 09:01:04.21706 2024-09-11 09:01:04.217063 25ec7a0a-2da6-4fd1-86f4-a1fd7c4b6db4 {"md5": "bd4eefc63f2336f6e178ee1b492373d4", "pid": "1086024044", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086024044", "source": "GND"}], "preferred_name": "International Council on Social Welfare. Regional Symposium", "authorized_access_point": "International Council on Social Welfare. Regional Symposium"} 1 +2024-09-11 09:01:04.2706 2024-09-11 09:01:04.270603 70245061-08c6-4fb1-9865-72ac6adbc4fd {"md5": "8bec1130f8d8d285162efd44fd2a19ec", "pid": "1086025474", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086025474", "source": "GND"}], "variant_name": ["BZ"], "preferred_name": "Basellandschaftliche Zeitung", "variant_access_point": ["BZ. Basellandschaftliche Zeitung"], "authorized_access_point": "Basellandschaftliche Zeitung. Liestal", "biographical_information": ["Basellandschaftliche Zeitung in Liestal (1832->)"]} 1 +2024-09-11 09:01:04.326312 2024-09-11 09:01:04.326316 3ea4baa7-49e8-4113-ade4-7c55420b7ed6 {"md5": "22ab8f161f42e4bec00e6cd5d6f1ba77", "pid": "1086047532", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086047532", "source": "GND"}], "preferred_name": "Polyphony", "authorized_access_point": "Polyphony. Choral ensemble"} 1 +2024-09-11 09:01:04.387987 2024-09-11 09:01:04.387991 f04b487b-275e-4380-9409-95c82e04937d {"md5": "77c5b776b600ba8420d52b20603ea7d1", "pid": "1086062159", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086062159", "source": "GND"}], "preferred_name": "Pool for Modern Music", "authorized_access_point": "Pool for Modern Music. Musikgruppe"} 1 +2024-09-11 09:01:04.441543 2024-09-11 09:01:04.441546 d92e7538-28f8-490e-930f-121615e79476 {"md5": "180c016668968313b889ca371e09b510", "pid": "1086067371", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086067371", "source": "GND"}], "variant_name": ["Kanton Bern. Koordinationsstelle für Umweltschutz. Arbeitsgruppe Auflagenvollzug", "Arbeitsgruppe Auflagenvollzug"], "preferred_name": "Kanton Bern. Arbeitsgruppe Auflagenvollzug", "country_associated": "sz", "variant_access_point": ["Kanton Bern. Koordinationsstelle für Umweltschutz. Arbeitsgruppe Auflagenvollzug", "Arbeitsgruppe Auflagenvollzug. Kanton Bern"], "authorized_access_point": "Kanton Bern. Arbeitsgruppe Auflagenvollzug"} 1 +2024-09-11 09:01:04.503962 2024-09-11 09:01:04.503966 6201e5ad-5dcc-4447-9360-de32166a57ac {"md5": "74e5c4e1e7966fdd75c434e0817c8985", "pid": "1086070178", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086070178", "source": "GND"}], "preferred_name": "Chór Harcerski", "authorized_access_point": "Chór Harcerski"} 1 +2024-09-11 09:01:04.565982 2024-09-11 09:01:04.565986 73c14188-2030-43f9-aeca-118060c391c8 {"md5": "df7109468554e267824a43ff0a403abb", "pid": "1086074602", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086074602", "source": "GND"}], "variant_name": ["Société agricole du Valais"], "preferred_name": "Landwirtschaftliche Gesellschaft", "variant_access_point": ["Société agricole du Valais"], "authorized_access_point": "Landwirtschaftliche Gesellschaft. Wallis"} 1 +2024-09-11 09:01:04.623373 2024-09-11 09:01:04.623377 4b68e94f-4a2c-430c-8f8e-5183717d2758 {"md5": "52d097b896f0f34c498e5c04ebef9276", "pid": "1086075218", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086075218", "source": "GND"}], "preferred_name": "Arbeitsgemeinschaft für experimentelle Triebforschung und Schicksalspsychologie", "authorized_access_point": "Arbeitsgemeinschaft für experimentelle Triebforschung und Schicksalspsychologie. Zürich"} 1 +2024-09-11 09:01:04.678178 2024-09-11 09:01:04.678181 bf22c977-f677-4aba-9f1d-4ca8818eeecc {"md5": "13a677466c55774aede30c682fe9e00e", "pid": "1086080513", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086080513", "source": "GND"}], "variant_name": ["CBHA. Colóquio"], "preferred_name": "Comité Brasileiro de História da Arte. Colóquio", "variant_access_point": ["CBHA. Comité Brasileiro de História da Arte. Colóquio"], "authorized_access_point": "Comité Brasileiro de História da Arte. Colóquio"} 1 +2024-09-11 09:01:04.738702 2024-09-11 09:01:04.738709 402fc54b-2188-4308-8d0a-527ce4a87fbe {"md5": "3ba241c3fba1ea7d9786544ae5307ce9", "pid": "1086080750", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086080750", "source": "GND"}], "variant_name": ["University of Maine. School of Law. Marine Law Institute", "University of Southern Maine. Center for Research and Advanced Study. Marine Law Institute"], "preferred_name": "Marine Law Institute", "variant_access_point": ["University of Maine. School of Law. Marine Law Institute", "University of Southern Maine. Center for Research and Advanced Study. Marine Law Institute"], "authorized_access_point": "Marine Law Institute"} 1 +2024-09-11 09:01:04.804807 2024-09-11 09:01:04.80481 b750d663-c298-438c-a74c-f1d833b94b30 {"md5": "13f296022f7ce4b341e8a81675dff1e4", "pid": "1086082427", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086082427", "source": "GND"}], "variant_name": ["Shanghai. Council", "Shanghai Municipal Council"], "preferred_name": "Shanghai. Municipal Council", "variant_access_point": ["Shanghai. China : International Settlement. Council", "Shanghai Municipal Council"], "authorized_access_point": "Shanghai. China : International Settlement. Municipal Council"} 1 +2024-09-11 09:01:04.861572 2024-09-11 09:01:04.861576 6e92165d-29b9-4d54-aa01-f997b1949247 {"md5": "66a6c4cef8785f37bddbd0bb9e1eb557", "pid": "1086092775", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086092775", "source": "GND"}], "preferred_name": "Jack Kilgore & Co.", "authorized_access_point": "Jack Kilgore & Co."} 1 +2024-09-11 09:01:04.926361 2024-09-11 09:01:04.926365 117b0ece-1855-46ba-94ab-e8db37f32ae8 {"md5": "d3094dabb8a0d26b0ff648eed6646313", "pid": "1086143264", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086143264", "source": "GND"}], "variant_name": ["Assoc. pour la Conservation du Patrimoine Naturel de la Gabrière"], "preferred_name": "Association pour la Conservation du Patrimoine Naturel de la Gabrière", "country_associated": "ii", "variant_access_point": ["Assoc. pour la Conservation du Patrimoine Naturel de la Gabrière"], "authorized_access_point": "Association pour la Conservation du Patrimoine Naturel de la Gabrière"} 1 +2024-09-11 09:01:04.978939 2024-09-11 09:01:04.978944 899c5bf4-546d-4c6e-b790-1c7234795d46 {"md5": "24ee3469aedd2d95c7d9146cf2f2db55", "pid": "1086144686", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086144686", "source": "GND"}], "preferred_name": "Ländlertrio Haller-Häller", "country_associated": "sz", "authorized_access_point": "Ländlertrio Haller-Häller"} 1 +2024-09-11 09:01:05.042706 2024-09-11 09:01:05.04271 e3f46837-7cce-4c9a-bb83-44a7e0b9edaf {"md5": "e1785b3d186e4a6eabde0c5bf6bd6c6d", "pid": "1086144902", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086144902", "source": "GND"}], "variant_name": ["Pfarrei Sankt Gallus Kriens"], "preferred_name": "Pfarrei St. Gallus Kriens", "country_associated": "sz", "variant_access_point": ["Pfarrei Sankt Gallus Kriens"], "authorized_access_point": "Pfarrei St. Gallus Kriens"} 1 +2024-09-11 09:01:05.104048 2024-09-11 09:01:05.104051 066d4ec2-4133-46ae-93fa-f2f4bf0e8704 {"md5": "702d813063ae77814efa951a5d668eee", "pid": "1086182871", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086182871", "source": "GND"}], "preferred_name": "Ländlerkapelle Bodaguat", "country_associated": "sz", "authorized_access_point": "Ländlerkapelle Bodaguat"} 1 +2024-09-11 09:01:05.178065 2024-09-11 09:01:05.178068 1ee5d2e0-dd19-4830-973a-4ecd38786bad {"md5": "2213d050c7f8ca31d44b446d844bbb0e", "pid": "1086186427", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086186427", "source": "GND"}], "preferred_name": "Verein Berufsbildung Zentralschweiz", "country_associated": "sz", "authorized_access_point": "Verein Berufsbildung Zentralschweiz"} 1 +2024-09-11 09:01:05.233901 2024-09-11 09:01:05.233906 a2db7d30-568b-4c1a-9d7a-1562c520a6cc {"md5": "5b0b5197554b2c211a1f05b064f4e4c3", "pid": "1086202244", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086202244", "source": "GND"}], "variant_name": ["Central European Office"], "preferred_name": "National Broadcasting Company. Central European Office", "country_associated": "xxu", "variant_access_point": ["Central European Office. National Broadcasting Company"], "authorized_access_point": "National Broadcasting Company. New York, NY. Central European Office"} 1 +2024-09-11 09:01:07.321981 2024-09-11 09:01:07.321984 f29b4ecb-2f40-4737-92ff-614b12d88bd3 {"md5": "fcd7905a0ad2ece2937d4a9c00655112", "pid": "1086746554", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086746554", "source": "GND"}], "variant_name": ["Gaudard, Gabriel"], "preferred_name": "Gaudard", "variant_access_point": ["Gaudard, Gabriel. Buchhandlung, Bern"], "authorized_access_point": "Gaudard. Buchhandlung, Bern"} 1 +2024-09-11 09:01:05.288955 2024-09-11 09:01:05.28896 0c79c7d3-6df9-4fe4-a953-e1d3f7809934 {"md5": "b2071e58cfaab250bd153df29aa58794", "pid": "1086206991", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086206991", "source": "GND"}], "variant_name": ["Hauptquartier der Roten Armee", "Berlin, Hauptquartier der Roten Armee"], "preferred_name": "Rote Armee", "variant_access_point": ["Hauptquartier der Roten Armee. Berlin", "Berlin, Hauptquartier der Roten Armee"], "authorized_access_point": "Rote Armee. Hauptquartier, Berlin"} 1 +2024-09-11 09:01:05.34628 2024-09-11 09:01:05.346281 aeb3fcbe-8ec0-4763-bf0f-9736fa84491e {"md5": "31900d199feb241db8b862ae3fb9e982", "pid": "1086215982", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086215982", "source": "GND"}], "variant_name": ["Springer Verlag", "Heidelberg, Axel Springer Verlag", "Heidelberg, Springer Verlag"], "preferred_name": "Axel Springer Verlag", "variant_access_point": ["Springer Verlag. Heidelberg", "Heidelberg, Axel Springer Verlag", "Heidelberg, Springer Verlag"], "authorized_access_point": "Axel Springer Verlag. Heidelberg"} 1 +2024-09-11 09:01:05.408249 2024-09-11 09:01:05.408253 a1cc5743-3bb0-4d2d-a66a-ee1f08f0e18b {"md5": "20ecaaa77a993addd00ffcd7b477cec5", "pid": "1086230493", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086230493", "source": "GND"}], "variant_name": ["Orte "], "preferred_name": "Orte", "country_associated": "sz", "variant_access_point": ["Orte "], "date_of_establishment": "1975", "authorized_access_point": "Orte. Schweizer Literaturzeitschrift"} 1 +2024-09-11 09:01:05.465129 2024-09-11 09:01:05.465133 3fe828a8-46e8-496a-9abd-d14baead835b {"md5": "2f3122aeb79aece0960019de57cc0fad", "pid": "1086235894", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086235894", "source": "GND"}], "variant_name": ["Leeds. University. Dept. of Economics and Commerce"], "preferred_name": "University of Leeds. Dept. of Economics and Commerce", "variant_access_point": ["Leeds. England. University. Dept. of Economics and Commerce"], "authorized_access_point": "University of Leeds. Dept. of Economics and Commerce"} 1 +2024-09-11 09:01:05.529866 2024-09-11 09:01:05.529869 e3ae843c-78df-43d8-94b5-671fde121f55 {"md5": "c9ab746541d1f82b4bcfd349253f9b03", "pid": "1086271440", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086271440", "source": "GND"}], "preferred_name": "J.B. Burg-Gesellschaft", "country_associated": "gw", "authorized_access_point": "J.B. Burg-Gesellschaft. Bad Kissingen"} 1 +2024-09-11 09:01:05.585591 2024-09-11 09:01:05.585594 34edc84e-12f5-4e41-a819-386a2edc49a8 {"md5": "1ed56887457467799afce260733eb5ef", "pid": "1086272587", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086272587", "source": "GND"}], "variant_name": ["Deutsche Wissenschaftliche Gesellschaft für Erdöl, Erdgas und Kohle. DGMK-Projekt 393, Beurteilung von Näherungsgleichungen zur Approximation und Extrapolation von Viskositätsmessungen an Mineralöle", "DGMK-Projekt Beurteilung von Näherungsgleichungen zur Approximation und Extrapolation von Viskositätsmessungen an Mineralölen", "Deutsche Wissenschaftliche Gesellschaft für Erdöl, Erdgas und Kohle. DGMK-Projekt Beurteilung von Näherungsgleichungen zur Approximation und Extrapolation von Viskositätsmessungen an Mineralölen", "DGMK-Project 393, Evaluation of Approximation Equations - Approximation and Extrapolation of Pressure Viscosity Measuring of Mineral Oils", "Deutsche Wissenschaftliche Gesellschaft für Erdöl, Erdgas und Kohle. DGMK-Project 393, Evaluation of Approximation Equations - Approximation and Extrapolation of Pressure Viscosity Measuring of Mineral Oils", "DGMK-Project Evaluation of Approximation Equations - Approximation and Extrapolation of Pressure Viscosity Measuring of Mineral Oils", "Deutsche Wissenschaftliche Gesellschaft für Erdöl, Erdgas und Kohle. DGMK-Project Evaluation of Approximation Equations - Approximation and Extrapolation of Pressure Viscosity Measuring of Mineral Oils", "German Society for Petroleum Sciences and Coal Chemistry. DGMK-Project 393, Evaluation of Approximation Equations - Approximation and Extrapolation of Pressure Viscosity Measuring of Mineral Oils", "German Society for Petroleum Sciences and Coal Chemistry. DGMK-Project Evaluation of Approximation Equations - Approximation and Extrapolation of Pressure Viscosity Measuring of Mineral Oils", "DGMK-Projekt 393", "DGMK-Project 393", "Deutsche Wissenschaftliche Gesellschaft für Erdöl, Erdgas und Kohle. DGMK-Projekt 393", "Deutsche Wissenschaftliche Gesellschaft für Erdöl, Erdgas und Kohle. DGMK-Project 393", "German Society for Petroleum Sciences and Coal Chemistry. DGMK-Project 393"], "preferred_name": "DGMK-Projekt 393, Beurteilung von Näherungsgleichungen zur Approximation und Extrapolation von Viskositätsmessungen an Mineralölen", "variant_access_point": ["Deutsche Wissenschaftliche Gesellschaft für Erdöl, Erdgas und Kohle. DGMK-Projekt 393, Beurteilung von Näherungsgleichungen zur Approximation und Extrapolation von Viskositätsmessungen an Mineralöle", "DGMK-Projekt Beurteilung von Näherungsgleichungen zur Approximation und Extrapolation von Viskositätsmessungen an Mineralölen. Deutschland, Bundesrepublik", "Deutsche Wissenschaftliche Gesellschaft für Erdöl, Erdgas und Kohle. DGMK-Projekt Beurteilung von Näherungsgleichungen zur Approximation und Extrapolation von Viskositätsmessungen an Mineralölen", "DGMK-Project 393, Evaluation of Approximation Equations - Approximation and Extrapolation of Pressure Viscosity Measuring of Mineral Oils. Deutschland, Bundesrepublik", "Deutsche Wissenschaftliche Gesellschaft für Erdöl, Erdgas und Kohle. DGMK-Project 393, Evaluation of Approximation Equations - Approximation and Extrapolation of Pressure Viscosity Measuring of Mineral Oils", "DGMK-Project Evaluation of Approximation Equations - Approximation and Extrapolation of Pressure Viscosity Measuring of Mineral Oils. Deutschland, Bundesrepublik", "Deutsche Wissenschaftliche Gesellschaft für Erdöl, Erdgas und Kohle. DGMK-Project Evaluation of Approximation Equations - Approximation and Extrapolation of Pressure Viscosity Measuring of Mineral Oils", "German Society for Petroleum Sciences and Coal Chemistry. vor 1987. DGMK-Project 393, Evaluation of Approximation Equations - Approximation and Extrapolation of Pressure Viscosity Measuring of Mineral Oils", "German Society for Petroleum Sciences and Coal Chemistry. vor 1987. DGMK-Project Evaluation of Approximation Equations - Approximation and Extrapolation of Pressure Viscosity Measuring of Mineral Oils", "DGMK-Projekt 393. Deutschland, Bundesrepublik", "DGMK-Project 393. Deutschland, Bundesrepublik", "Deutsche Wissenschaftliche Gesellschaft für Erdöl, Erdgas und Kohle. DGMK-Projekt 393", "Deutsche Wissenschaftliche Gesellschaft für Erdöl, Erdgas und Kohle. DGMK-Project 393", "German Society for Petroleum Sciences and Coal Chemistry. vor 1987. DGMK-Project 393"], "authorized_access_point": "DGMK-Projekt 393, Beurteilung von Näherungsgleichungen zur Approximation und Extrapolation von Viskositätsmessungen an Mineralölen. Deutschland, Bundesrepublik"} 1 +2024-09-11 09:01:05.652149 2024-09-11 09:01:05.652152 c04b149d-8e32-46ff-b648-cb87e96f0984 {"md5": "f54cd7b8e5ea70aa2f265962fecafb4b", "pid": "1086274636", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086274636", "source": "GND"}], "preferred_name": "Skillman Foundation", "authorized_access_point": "Skillman Foundation"} 1 +2024-09-11 09:01:05.705625 2024-09-11 09:01:05.705628 778f7c72-d7fd-40e1-8256-2b4c8f8715a9 {"md5": "364e9c32512d53798801fb7a63a8e353", "pid": "1086281020", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086281020", "source": "GND"}], "variant_name": ["Buxtorf, Johann", "Buxtorf, Johann der Jüngere"], "preferred_name": "Buxtorf", "variant_access_point": ["Buxtorf, Johann. Verlag, Basel", "Buxtorf, Johann der Jüngere. Verlag, Basel"], "authorized_access_point": "Buxtorf. Verlag, Basel"} 1 +2024-09-11 09:01:05.764511 2024-09-11 09:01:05.764515 65be79f4-fffd-420d-bd07-0046246cc278 {"md5": "d8cb11d49cf2ca73121bf0cfa3d6a81e", "pid": "1086292391", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086292391", "source": "GND"}], "variant_name": ["Birnstiel, Heinrich"], "preferred_name": "Birnstiel", "variant_access_point": ["Birnstiel, Heinrich. Verlag, Erfurt"], "authorized_access_point": "Birnstiel. Verlag, Erfurt"} 1 +2024-09-11 09:01:05.815582 2024-09-11 09:01:05.815585 867f05d3-3d55-4bf1-8ae8-0b255cb75d83 {"md5": "4a39310eea525e4ff01e58f1ccf3aa1b", "pid": "1086300475", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086300475", "source": "GND"}], "preferred_name": "Académie du cirque et du music-hall", "authorized_access_point": "Académie du cirque et du music-hall. Paris"} 1 +2024-09-11 09:01:05.86539 2024-09-11 09:01:05.865393 395818f4-5bdc-4d75-8477-fc84c1de0af8 {"md5": "476f974cf0b7e8ae1d2cebf55500fb7c", "pid": "1086314646", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086314646", "source": "GND"}], "variant_name": ["NHK Puranetto. Kinki Sōshisha", "NHKプラネット. 近畿総支社", "NHKプラネット キンキ"], "preferred_name": "NHK Puranetto Kinki", "country_associated": "ja", "variant_access_point": ["NHK Puranetto. Kinki Sōshisha", "NHKプラネット. 近畿総支社", "NHKプラネット キンキ"], "parallel_access_point": ["NHKプラネット近畿"], "authorized_access_point": "NHK Puranetto Kinki"} 1 +2024-09-11 09:01:05.917871 2024-09-11 09:01:05.917873 55edcde3-5382-4f6c-bb47-cc0169f0e2bc {"md5": "7d66ad93749f09bac10a93d56f4bb282", "pid": "1086340043", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086340043", "source": "GND"}], "variant_name": ["Controlecomité voor de Elektriciteit en het Gas"], "preferred_name": "Comité de Contrôle de l'Electricité et du Gaz", "variant_access_point": ["Controlecomité voor de Elektriciteit en het Gas. Belgie"], "authorized_access_point": "Comité de Contrôle de l'Electricité et du Gaz. Belgique"} 1 +2024-09-11 09:01:05.968274 2024-09-11 09:01:05.968276 3909e2d6-d5f0-46eb-a03c-0afafe38b82e {"md5": "9656b99dfe5e42cc0da57732b4ae09b9", "pid": "1086373170", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086373170", "source": "GND"}], "variant_name": ["Diputación Provincial de Vizcaya"], "preferred_name": "Vizcaya. Diputación Provincial", "country_associated": "sp", "variant_access_point": ["Diputación Provincial de Vizcaya"], "authorized_access_point": "Vizcaya. Diputación Provincial"} 1 +2024-09-11 09:01:06.022586 2024-09-11 09:01:06.022589 995f1f2a-55ae-41ab-9a63-af5c27603499 {"md5": "fab836b4e436a0ee0814937789b3699e", "pid": "1086413520", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086413520", "source": "GND"}], "preferred_name": "Katholischer Filmkreis Zürich", "country_associated": "sz", "date_of_establishment": "1965", "authorized_access_point": "Katholischer Filmkreis Zürich", "biographical_information": ["Früherer Name: Filmkreis Zürich der Katholischen Jugendorganisationen"]} 1 +2024-09-11 09:01:06.075904 2024-09-11 09:01:06.075908 c6886ee9-cdc6-4b39-8f60-e26c89679e81 {"md5": "e9af27e4b3a774db6eede2169200cf87", "pid": "1086431685", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086431685", "source": "GND"}], "variant_name": ["Orchestra of Cordoba", "Orchestre de Cordoba", "Orquesta Sinfónica de Córdoba", "Symphony Orchestra of Cordoba"], "preferred_name": "Orquesta de Córdoba", "variant_access_point": ["Orchestra of Cordoba", "Orchestre de Cordoba", "Orquesta Sinfónica de Córdoba", "Symphony Orchestra of Cordoba"], "authorized_access_point": "Orquesta de Córdoba"} 1 +2024-09-11 09:01:06.154051 2024-09-11 09:01:06.154054 eac6bfa9-e903-4112-82bc-6398b62215de {"md5": "aaee6cdf5519a7311f3e88ae3f87bdf1", "pid": "1086431855", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086431855", "source": "GND"}], "variant_name": ["Time Life International. Amsterdam"], "preferred_name": "Time-Life International (Nederland)", "country_associated": "ne", "variant_access_point": ["Time Life International. Amsterdam"], "authorized_access_point": "Time-Life International (Nederland)"} 1 +2024-09-11 09:01:06.205898 2024-09-11 09:01:06.205901 62114fe8-5745-4f13-ae04-1cf43473d710 {"md5": "a1b65ed6a9ec79c005c5c784bdd926e8", "pid": "1086433114", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086433114", "source": "GND"}], "variant_name": ["Rechtsschutzabteilung Basel des Schweizerischen Israelitischen Gemeindebundes"], "preferred_name": "Schweizerischer Israelitischer Gemeindebund. Rechtsschutzabteilung", "variant_access_point": ["Rechtsschutzabteilung Basel des Schweizerischen Israelitischen Gemeindebundes"], "authorized_access_point": "Schweizerischer Israelitischer Gemeindebund. Rechtsschutzabteilung"} 1 +2024-09-11 09:01:06.259918 2024-09-11 09:01:06.259922 c6df9d20-bc97-442c-942e-d6e1bb697274 {"md5": "b5e3429ef408e728cf39b92c06b0e288", "pid": "1086434900", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086434900", "source": "GND"}], "variant_name": ["Galliano Septet"], "preferred_name": "Richard Galliano Septet", "variant_access_point": ["Galliano Septet"], "authorized_access_point": "Richard Galliano Septet"} 1 +2024-09-11 09:01:06.318059 2024-09-11 09:01:06.318062 fa690100-b23b-4f8f-b933-2e0577b2eaff {"md5": "8d962e58d1a6d77d5464a32785615bd2", "pid": "1086437500", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086437500", "source": "GND"}], "preferred_name": "Banque de Crédit et de Dépôt des Pays-Bas", "authorized_access_point": "Banque de Crédit et de Dépôt des Pays-Bas. Amsterdam", "biographical_information": ["Banque de Crédit et de Dépôt des Pays-Bas, Amsterdam (1863-1871); das Unternehmen schloss sich mit der Banque de Paris zur Banque de Paris et des Pays-Bas zusammen"]} 1 +2024-09-11 09:01:06.370906 2024-09-11 09:01:06.37091 79c0ad74-9a8e-47e8-b189-f6a7329e4a44 {"md5": "09d7a7c2accafe3fefe5afed3d1ad532", "pid": "1086443640", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086443640", "source": "GND"}], "preferred_name": "Pratt Adlib Press", "authorized_access_point": "Pratt Adlib Press"} 1 +2024-09-11 09:01:06.432221 2024-09-11 09:01:06.432226 9db75dc6-d1b5-43a4-82f4-b46f102c8b92 {"md5": "e587e2c9083a2ea225b2aff23dc7e493", "pid": "1086444361", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086444361", "source": "GND"}], "variant_name": ["Notenbank Ostland"], "preferred_name": "Notenbank im Ostland", "country_associated": "lv", "date_of_termination": "1945", "variant_access_point": ["Notenbank Ostland"], "date_of_establishment": "1942", "authorized_access_point": "Notenbank im Ostland", "biographical_information": ["Gegr. 1942; das Unternehmen wurde 1945 durch die sowjetische Besatzungsmacht aufgelöst"]} 1 +2024-09-11 09:01:06.480972 2024-09-11 09:01:06.480975 b4f8b5d6-9539-46b1-bfda-dc95e47c3e88 {"md5": "2510a1c8481c9879143518c6f1f38ec7", "pid": "1086469747", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086469747", "source": "GND"}], "preferred_name": "Paul Scherrer Fonds", "country_associated": "sz", "authorized_access_point": "Paul Scherrer Fonds"} 1 +2024-09-11 09:01:06.532351 2024-09-11 09:01:06.532355 a33db21d-ae01-40c2-a0c2-202e5c56ba05 {"md5": "87e8d293a8559f25314ccdb5854c54b7", "pid": "1086480686", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086480686", "source": "GND"}], "preferred_name": "Musée du Mont-Repais", "country_associated": "sz", "authorized_access_point": "Musée du Mont-Repais"} 1 +2024-09-11 09:01:06.584098 2024-09-11 09:01:06.5841 88d418ac-e635-482e-8647-915db218a217 {"md5": "a52ac86fad85e3a24d6d16e6afe31504", "pid": "108649282X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/108649282X", "source": "GND"}], "preferred_name": "Eisenbahner-Baugenossenschaft", "authorized_access_point": "Eisenbahner-Baugenossenschaft. Meiringen", "biographical_information": ["Eisenbahner-Baugenossenschaft, Meiringen (1925->)"]} 1 +2024-09-11 09:01:07.382851 2024-09-11 09:01:07.382856 9a217abe-c65e-4833-870d-e2d5a6151a76 {"md5": "8d2e4e5f30ca8f9e20629a13d815b421", "pid": "1086766326", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086766326", "source": "GND"}], "preferred_name": "Società cooperativa di Zurigo", "authorized_access_point": "Società cooperativa di Zurigo"} 1 +2024-09-11 09:01:06.637285 2024-09-11 09:01:06.63729 b6cf275a-0129-46f7-9d85-2da0a65365bb {"md5": "a41be8c0accc85897d945eb0dbc8dabe", "pid": "1086503910", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086503910", "source": "GND"}], "variant_name": ["VSU", "Association suisse des magasins d'horlogerie spécialisés", "ASMH"], "preferred_name": "Verband Schweizerischer Uhrenfachgeschäfte", "country_associated": "sz", "variant_access_point": ["VSU. Abkuerzung", "Association suisse des magasins d'horlogerie spécialisés", "ASMH. Abkuerzung"], "authorized_access_point": "Verband Schweizerischer Uhrenfachgeschäfte"} 1 +2024-09-11 09:01:06.691244 2024-09-11 09:01:06.691247 38a3e662-b519-49c3-a4b4-c94d0412bcdd {"md5": "4b8efda7060361228d8488de4f74486a", "pid": "1086511239", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086511239", "source": "GND"}], "variant_name": ["Université de Corti"], "preferred_name": "Université de Corte", "variant_access_point": ["Université de Corti"], "authorized_access_point": "Université de Corte"} 1 +2024-09-11 09:01:06.75404 2024-09-11 09:01:06.754043 f7eaa4d4-ee9a-4716-ad8c-ccc7f4fe529a {"md5": "edd38dced350247f3ed3721e8647f104", "pid": "1086545605", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086545605", "source": "GND"}], "variant_name": ["Genève. Conseil des Théâtres et de la Musique", "CTM"], "preferred_name": "Conseil genevois des Théâtres et de la Musique", "variant_access_point": ["Genève. Kanton. Conseil des Théâtres et de la Musique", "CTM. Conseil des Théâtres et de la Musique"], "authorized_access_point": "Conseil genevois des Théâtres et de la Musique"} 1 +2024-09-11 09:01:06.840343 2024-09-11 09:01:06.840346 459baf43-3f57-4c34-b15f-9c7e0d3ccf1b {"md5": "42535dcc3113a3288db7b7f7a653ed50", "pid": "1086545869", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086545869", "source": "GND"}], "preferred_name": "Krankenunterstützungsverein der Mechanischen Weberei Furth", "authorized_access_point": "Krankenunterstützungsverein der Mechanischen Weberei Furth. Mogelsberg", "biographical_information": ["Krankenunterstützungsverein der Mechanischen Weberei Furth, Mogelsberg (1890-?)"]} 1 +2024-09-11 09:01:06.896153 2024-09-11 09:01:06.896156 2e2dd3d2-11d4-467a-bd62-41790ea35ec1 {"md5": "5f4fcde376ab68260d085223dc16dc03", "pid": "1086572882", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086572882", "source": "GND"}], "preferred_name": "Schmalspurbahn Frutigen-Adelboden-Lenk", "country_associated": "sz", "date_of_establishment": "1904", "authorized_access_point": "Schmalspurbahn Frutigen-Adelboden-Lenk. Projekt", "biographical_information": ["Schmalspurbahn Frutigen-Adelboden-Lenk (1904) - projektierte schmalspurige Eisenbahn von Frutigen nach Adelboden/Lenk"]} 1 +2024-09-11 09:01:06.947911 2024-09-11 09:01:06.947915 e861effd-0a13-4774-8d7a-c86a8a1cb206 {"md5": "d005cf0daf1b62aef467773b5c12fe48", "pid": "1086591453", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086591453", "source": "GND"}], "variant_name": ["Railarch"], "preferred_name": "Planergemeinschaft Railarch", "variant_access_point": ["Railarch"], "authorized_access_point": "Planergemeinschaft Railarch. Olten"} 1 +2024-09-11 09:01:06.999992 2024-09-11 09:01:06.999997 e0f78fcf-aac6-40c8-8ec5-c5ad6de13ac0 {"md5": "14b485fac1e3a795a635806e68d60ef3", "pid": "1086599594", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086599594", "source": "GND"}], "preferred_name": "Allgemeine Wohnungsbau-Genossenschaft", "country_associated": "sz", "date_of_establishment": "1919", "authorized_access_point": "Allgemeine Wohnungsbau-Genossenschaft", "biographical_information": ["Allgemeine Wohnungsbau-Genossenschaft Lyss (1919-?)"]} 1 +2024-09-11 09:01:07.05447 2024-09-11 09:01:07.054473 329b1147-c3e4-4cd4-815f-d3b8c4c23157 {"md5": "e3eac5f4fa3781147e976b1222bafeb6", "pid": "1086646843", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086646843", "source": "GND"}], "variant_name": ["American Library Association. Annual Conference"], "preferred_name": "American Library Association. Conference", "variant_access_point": ["American Library Association. Annual Conference"], "authorized_access_point": "American Library Association. Conference"} 1 +2024-09-11 09:01:07.118613 2024-09-11 09:01:07.118618 fea1186d-9e5b-47d0-bd06-eedb3c270241 {"md5": "8ceacd247d97acf92a7a081c63c8e7d1", "pid": "1086671775", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086671775", "source": "GND"}], "variant_name": ["Mieterschutzverband"], "preferred_name": "Mieterschutzverband der Stadt Bern und Umgebung", "country_associated": "sz", "date_of_termination": "1972", "variant_access_point": ["Mieterschutzverband"], "date_of_establishment": "1928", "authorized_access_point": "Mieterschutzverband der Stadt Bern und Umgebung"} 1 +2024-09-11 09:01:07.170267 2024-09-11 09:01:07.17027 fad933b5-6b36-46b1-970d-05f6101a0558 {"md5": "9548d30b7e85163d2f0f61e2907bfb49", "pid": "1086700902", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086700902", "source": "GND"}], "variant_name": ["Committee on Utilities"], "preferred_name": "National Research Council. Transportation Research Board. Committee on Utilities", "country_associated": "xxu", "variant_access_point": ["Committee on Utilities. National Research Council, USA. Transportation Research Board"], "authorized_access_point": "National Research Council. USA. Transportation Research Board. Committee on Utilities"} 1 +2024-09-11 09:01:07.219828 2024-09-11 09:01:07.219831 85b34c19-b862-45da-9c03-ccebd4f887f9 {"md5": "129c5beda225995cf480b99f01a11be8", "pid": "1086728939", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086728939", "source": "GND"}], "preferred_name": "Centre Le Tram", "authorized_access_point": "Centre Le Tram. Carouge"} 1 +2024-09-11 09:01:07.271045 2024-09-11 09:01:07.27105 631e87e2-f4f7-4712-bd77-86e6f68f6247 {"md5": "3bcec55c596629a30bd5927af742d5dc", "pid": "1086730003", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086730003", "source": "GND"}], "preferred_name": "Upravlenie Po Delam Architektury Pri Sovete Ministrov", "authorized_access_point": "Upravlenie Po Delam Architektury Pri Sovete Ministrov. Rsfsr"} 1 +2024-09-11 09:01:07.433797 2024-09-11 09:01:07.433799 4e5fdc52-09c3-4c7f-81bd-2ca20dd266b0 {"md5": "23d65cdb1bceb86649b72f519af951ec", "pid": "1086780884", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086780884", "source": "GND"}], "variant_name": ["Organisation Mondiale de la Santé. Comité Régional de l'Europe. Session", "Weltgesundheitsorganisation. Regionalkomitee für Europa. Tagung"], "preferred_name": "World Health Organization. Regional Committee for Europe. Session", "variant_access_point": ["Organisation Mondiale de la Santé. Comité Régional de l'Europe. Session", "Weltgesundheitsorganisation. Regionalkomitee für Europa. Tagung"], "authorized_access_point": "World Health Organization. Regional Committee for Europe. Session"} 1 +2024-09-11 09:01:07.490406 2024-09-11 09:01:07.490409 b199ea16-56af-4521-b0cc-5d8a71d7f85c {"md5": "963cbcd9aaeb6481e624142c1beaee7f", "pid": "1086783476", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086783476", "source": "GND"}], "preferred_name": "Chaozhou shijian sheju", "authorized_access_point": "Chaozhou shijian sheju"} 1 +2024-09-11 09:01:07.54678 2024-09-11 09:01:07.546784 0cffd63a-a097-4557-8965-c611b7cc4bbe {"md5": "9755a721b6be4289a97eaf09d81d79e7", "pid": "1086783492", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086783492", "source": "GND"}], "preferred_name": "Kur- und Verkehrsverein Parpan", "authorized_access_point": "Kur- und Verkehrsverein Parpan"} 1 +2024-09-11 09:01:07.627103 2024-09-11 09:01:07.627108 d32dff19-fbef-4375-8ab5-690b5cc02f3f {"md5": "39249ed0664212f6b025b52dab50591e", "pid": "1086814347", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086814347", "source": "GND"}], "variant_name": ["GRET"], "preferred_name": "Groupe de recherche et d'échanges technologiques", "country_associated": "fr", "variant_access_point": ["GRET. Abkuerzung"], "date_of_establishment": "1976", "authorized_access_point": "Groupe de recherche et d'échanges technologiques"} 1 +2024-09-11 09:01:07.68801 2024-09-11 09:01:07.688013 8483aad1-072c-469f-b32a-17764483c7de {"md5": "b778a8ecd896a895737d4f4a16ceea26", "pid": "1086828542", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086828542", "source": "GND"}], "preferred_name": "Kinder- und Jugendhilfegesetz", "authorized_access_point": "Kinder- und Jugendhilfegesetz"} 1 +2024-09-11 09:01:07.75364 2024-09-11 09:01:07.753643 a84da8a3-1954-4956-a638-bfe689754234 {"md5": "1fa94ab571223066791cbf22dd9f0649", "pid": "1086839668", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086839668", "source": "GND"}], "variant_name": ["Centro studi naturalistici bresciani"], "preferred_name": "Centro studi naturalistici bresciani", "variant_access_point": ["Centro studi naturalistici bresciani. Italia"], "authorized_access_point": "Centro studi naturalistici bresciani. Brescia"} 1 +2024-09-11 09:01:07.805185 2024-09-11 09:01:07.805188 3171615f-3779-43a2-bfed-076b44992424 {"md5": "1755daa87b09e37efca89611ae463ee5", "pid": "1086844092", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086844092", "source": "GND"}], "preferred_name": "Istituto Federale delle Casse di Risparmio delle Venezie", "authorized_access_point": "Istituto Federale delle Casse di Risparmio delle Venezie. Italia"} 1 +2024-09-11 09:01:07.856503 2024-09-11 09:01:07.856507 6c5a1289-ec29-4221-b82b-7b1ff77946d8 {"md5": "0780271afa0c946523d5ff3eb3fffabc", "pid": "108685604X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/108685604X", "source": "GND"}], "preferred_name": "Orts- und Weinbaumuseum Neftenbach", "authorized_access_point": "Orts- und Weinbaumuseum Neftenbach"} 1 +2024-09-11 09:01:07.913075 2024-09-11 09:01:07.913078 83443e5c-adcf-4273-b666-b1a77c93d52c {"md5": "c27302514f879f39032e31442415fb96", "pid": "1086971531", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1086971531", "source": "GND"}], "variant_name": ["Université de Genève. Département d'histoire générale. Unité d'histoire suisse"], "preferred_name": "Université de Genève. Unité d'histoire suisse", "country_associated": "sz", "variant_access_point": ["Université de Genève. Département d'histoire générale. Unité d'histoire suisse"], "authorized_access_point": "Université de Genève. Unité d'histoire suisse"} 1 +2024-09-11 09:01:07.966819 2024-09-11 09:01:07.966822 99a0c6ed-121b-40b5-848b-e8dd8240ca6a {"md5": "72ca3888167ca04f8d5a8c9b5a9bfc5f", "pid": "1087157226", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087157226", "source": "GND"}], "variant_name": ["Nanjing daxue lishixi kaogu zhuanye", "Nanjing University. Faculty of History. Archaeology Department", "Archaeology Department, Faculty of History, Nanjing University", "南京大學. 歷史系. 考古專業", "南京大學歷史系考古專業"], "preferred_name": "Nanjing daxue. lishixi. kaogu zhuanye", "country_associated": "cc", "variant_access_point": ["Nanjing daxue lishixi kaogu zhuanye", "Nanjing University. Faculty of History. Archaeology Department", "Archaeology Department, Faculty of History, Nanjing University", "南京大學. 中國. 歷史系. 考古專業", "南京大學歷史系考古專業"], "parallel_access_point": ["南京大学. 中国. 历史系. 考古专业"], "authorized_access_point": "Nanjing daxue. lishixi. kaogu zhuanye"} 1 +2024-09-11 09:01:08.024526 2024-09-11 09:01:08.02453 39ef35d9-e591-48ac-82ee-3a8c4fc30f43 {"md5": "7bfdb94d90981226119aaf32fb29f994", "pid": "1087161088", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087161088", "source": "GND"}], "preferred_name": "Eresinger Stubnmusi", "authorized_access_point": "Eresinger Stubnmusi"} 1 +2024-09-11 09:01:08.079227 2024-09-11 09:01:08.07923 56a5175d-375f-4845-a9da-fb1e3a6c500c {"md5": "f8bda2a1624b1502ae255a38f6544339", "pid": "1087202949", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087202949", "source": "GND"}], "preferred_name": "Cappella Nova Graz", "authorized_access_point": "Cappella Nova Graz"} 1 +2024-09-11 09:01:08.13382 2024-09-11 09:01:08.133823 3c89828c-9ee6-43cf-a24a-e6e5a2eef000 {"md5": "1c8e4b5b3804a262baaa598ec047d275", "pid": "1087258685", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087258685", "source": "GND"}], "preferred_name": "Geographical Research Centre", "authorized_access_point": "Geographical Research Centre. Patna"} 1 +2024-09-11 09:01:08.199502 2024-09-11 09:01:08.199505 9c0bc69a-8bd0-4af9-9d15-b9c203b7848d {"md5": "56beb8f00b955aadc6ef7f545f4b8549", "pid": "1087265827", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087265827", "source": "GND"}], "variant_name": ["Eötvös Lóránd Tudományegyetem. Bölcsészettudományi Kar. Román Filológiai Tanszék", "Román Filológiai Tanszék"], "preferred_name": "Eötvös Loránd Tudományegyetem. Román Filológiai Tanszék", "variant_access_point": ["Eötvös Lóránd Tudományegyetem. Budapest. Bölcsészettudományi Kar. Román Filológiai Tanszék", "Román Filológiai Tanszék. Budapest"], "authorized_access_point": "Eötvös Loránd Tudományegyetem. Budapest. Román Filológiai Tanszék"} 1 +2024-09-11 09:01:08.249277 2024-09-11 09:01:08.24928 cf4adf3b-14ca-4a93-a357-db03c45c66dc {"md5": "2cf42dd0f8efc6473313ec41cd2765df", "pid": "1087266157", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087266157", "source": "GND"}], "variant_name": ["Vysšie Školy Litovskoj SSR", "Vysšie Učebnye Zavedenija Litovskoj SSR"], "preferred_name": "Lietuvos TSR Aukštosios Mokyklos", "variant_access_point": ["Vysšie Školy Litovskoj SSR. Vilnius", "Vysšie Učebnye Zavedenija Litovskoj SSR. Vilnius"], "authorized_access_point": "Lietuvos TSR Aukštosios Mokyklos. Vilnius"} 1 +2024-09-11 09:01:08.304416 2024-09-11 09:01:08.304419 f51696a7-ee0c-41db-840b-2c09b9aade1d {"md5": "ac473497b2b463d8bab59f2e9ce34361", "pid": "1087273897", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087273897", "source": "GND"}], "variant_name": ["Schweiz. Bundesamt für Umwelt, Wald und Landschaft. Gib dem \\"Unkraut\\" eine Chance!", "Suisse. Office Fédéral de l'Environnement, des Forêts et du Paysage. Gib dem \\"Unkraut\\" eine Chance!", "Svizzera. Ufficio Federale dell'Ambiente, delle Foreste e del Paesaggio. Gib dem \\"Unkraut\\" eine Chance!", "Svizra. Uffizi Federal d'Ambient, Guaud e Cuntrada. Gib dem \\"Unkraut\\" eine Chance!", "Schweiz. Office Fédéral de l'Environnement, des Forêts et du Paysage. Gib dem \\"Unkraut\\" eine Chance!", "Schweiz. Ufficio Federale dell'Ambiente, delle Foreste e del Paesaggio. Gib dem \\"Unkraut\\" eine Chance!", "Schweiz. Uffizi Federal d'Ambient, Guaud e Cuntrada. Gib dem \\"Unkraut\\" eine Chance!", "Schweiz. Eidgenössisches Departement des Innern. Bundesamt für Umwelt, Wald und Landschaft. Gib dem \\"Unkraut\\" eine Chance!", "Suisse. Département Fédéral de l'Intérieur. Office Fédéral de l'Environnement, des Forêts et du Paysage. Gib dem \\"Unkraut\\" eine Chance!", "Svizzera. Dipartimento Federale dell'Interno. Ufficio Federale dell'Ambiente, delle Foreste e del Paesaggio. Gib dem \\"Unkraut\\" eine Chance!", "Svizra. Departament Federal da l'Intern. Uffizi Federal d'Ambient, Guaud e Cuntrada. Gib dem \\"Unkraut\\" eine Chance!", "Schweiz. Departament Federal da l'Intern. Uffizi Federal d'Ambient, Guaud e Cuntrada. Gib dem \\"Unkraut\\" eine Chance!", "Schweiz. Dipartimento Federale dell'Interno. Ufficio Federale dell'Ambiente, delle Foreste e del Paesaggio. Gib dem \\"Unkraut\\" eine Chance!", "Schweiz. Département Fédéral de l'Intérieur. Office Fédéral de l'Environnement, des Forêts et du Paysage. Gib dem \\"Unkraut\\" eine Chance!"], "preferred_name": "Gib dem \\"Unkraut\\" eine Chance!", "variant_access_point": ["Schweiz. Bundesamt für Umwelt, Wald und Landschaft. Gib dem \\"Unkraut\\" eine Chance!", "Suisse. Office Fédéral de l'Environnement, des Forêts et du Paysage. Gib dem \\"Unkraut\\" eine Chance!", "Svizzera. Ufficio Federale dell'Ambiente, delle Foreste e del Paesaggio. Gib dem \\"Unkraut\\" eine Chance!", "Svizra. Uffizi Federal d'Ambient, Guaud e Cuntrada. Gib dem \\"Unkraut\\" eine Chance!", "Schweiz. Office Fédéral de l'Environnement, des Forêts et du Paysage. Gib dem \\"Unkraut\\" eine Chance!", "Schweiz. Ufficio Federale dell'Ambiente, delle Foreste e del Paesaggio. Gib dem \\"Unkraut\\" eine Chance!", "Schweiz. Uffizi Federal d'Ambient, Guaud e Cuntrada. Gib dem \\"Unkraut\\" eine Chance!", "Schweiz. Eidgenössisches Departement des Innern. Bundesamt für Umwelt, Wald und Landschaft. Gib dem \\"Unkraut\\" eine Chance!", "Suisse. Département Fédéral de l'Intérieur. Office Fédéral de l'Environnement, des Forêts et du Paysage. Gib dem \\"Unkraut\\" eine Chance!", "Svizzera. Dipartimento Federale dell'Interno. Ufficio Federale dell'Ambiente, delle Foreste e del Paesaggio. Gib dem \\"Unkraut\\" eine Chance!", "Svizra. Departament Federal da l'Intern. Uffizi Federal d'Ambient, Guaud e Cuntrada. Gib dem \\"Unkraut\\" eine Chance!", "Schweiz. Departament Federal da l'Intern. Uffizi Federal d'Ambient, Guaud e Cuntrada. Gib dem \\"Unkraut\\" eine Chance!", "Schweiz. Dipartimento Federale dell'Interno. Ufficio Federale dell'Ambiente, delle Foreste e del Paesaggio. Gib dem \\"Unkraut\\" eine Chance!", "Schweiz. Département Fédéral de l'Intérieur. Office Fédéral de l'Environnement, des Forêts et du Paysage. Gib dem \\"Unkraut\\" eine Chance!"], "authorized_access_point": "Gib dem \\"Unkraut\\" eine Chance!. Schweiz"} 1 +2024-09-11 09:01:08.368881 2024-09-11 09:01:08.368885 53282026-ba79-4eb4-a25a-e8dfe77f2d54 {"md5": "e52e9ce00cc4227d0da6608a9b231114", "pid": "1087296900", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087296900", "source": "GND"}], "variant_name": ["Old English Group"], "preferred_name": "Modern Language Association of America. Old English Group", "country_associated": "xxu", "variant_access_point": ["Old English Group. Modern Language Association of America"], "authorized_access_point": "Modern Language Association of America. Old English Group"} 1 +2024-09-11 09:01:08.422201 2024-09-11 09:01:08.422203 ed88e79c-9761-4e4a-bac6-6a1befc10237 {"md5": "f83bb011399b056e929295ddc2a98eb7", "pid": "1087307619", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087307619", "source": "GND"}], "variant_name": ["American Congress on Surveying and Mapping. Property Surveys Division"], "preferred_name": "American Congress on Surveying and Mapping. Land Surveys Division", "variant_access_point": ["American Congress on Surveying and Mapping. Property Surveys Division"], "authorized_access_point": "American Congress on Surveying and Mapping. Land Surveys Division"} 1 +2024-09-11 09:01:08.473134 2024-09-11 09:01:08.473136 96efab66-a81c-47ff-9f08-f94aed2f4cfc {"md5": "1bf4d3534529f98e92a736548d14adc2", "pid": "1087316928", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087316928", "source": "GND"}], "variant_name": ["Commission Technique"], "preferred_name": "Union Climatique de France. Commission Technique", "variant_access_point": ["Commission Technique. Union Climatique de France"], "authorized_access_point": "Union Climatique de France. Commission Technique"} 1 +2024-09-11 09:01:08.571687 2024-09-11 09:01:08.571692 21bf9bf0-6cb5-461b-a74f-792441cde0e5 {"md5": "765ea80e0cf6fc44ebb9187abe57f034", "pid": "1087324378", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087324378", "source": "GND"}], "variant_name": ["Cooperative Extension"], "preferred_name": "Northeast Regional Agricultural Engineering Service. Cooperative Extension", "variant_access_point": ["Cooperative Extension. Northeast Regional Agricultural Engineering Service"], "authorized_access_point": "Northeast Regional Agricultural Engineering Service. Cooperative Extension"} 1 +2024-09-11 09:01:08.655588 2024-09-11 09:01:08.655591 55e3ca27-f84c-4b75-8f3e-1ac9ea8755c7 {"md5": "028ec678941a784b0e51d236ccc98e7f", "pid": "1087327822", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087327822", "source": "GND"}], "variant_name": ["Department of Electrical and Electronic Engineering"], "preferred_name": "Manchester Metropolitan University. Department of Electrical end Electronic Engineering", "country_associated": "xxk", "variant_access_point": ["Department of Electrical and Electronic Engineering. Manchester Metropolitan University"], "authorized_access_point": "Manchester Metropolitan University. Department of Electrical end Electronic Engineering"} 1 +2024-09-11 09:01:08.721443 2024-09-11 09:01:08.721446 7298933a-c150-45f8-b652-c0028afafb26 {"md5": "c9e8a43ff9f5b76e800fa0f72f3732ae", "pid": "1087335108", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087335108", "source": "GND"}], "variant_name": ["Commissione Veneto-Friulana-Giuliana per lo Sci di Fondo Escursionistico"], "preferred_name": "Club Alpino Italiano. Commissione Veneto-Friulana-Giuliana per lo Sci di Fondo Escursionistico", "variant_access_point": ["Commissione Veneto-Friulana-Giuliana per lo Sci di Fondo Escursionistico. Club Alpino Italiano"], "authorized_access_point": "Club Alpino Italiano. Commissione Veneto-Friulana-Giuliana per lo Sci di Fondo Escursionistico"} 1 +2024-09-11 09:01:09.356003 2024-09-11 09:01:09.356005 2ef1d0a6-537f-465b-be46-8382cde58bbb {"md5": "cf51ffb39c352ecfe73b4556a8c4ecf1", "pid": "1087563429", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087563429", "source": "GND"}], "variant_name": ["Museo delle Piccole terme traianee", "Palazzo Valentini. Piccole terme traianee"], "preferred_name": "Piccole terme traianee", "variant_access_point": ["Museo delle Piccole terme traianee. Roma", "Palazzo Valentini. Roma. Piccole terme traianee"], "authorized_access_point": "Piccole terme traianee. Roma"} 1 +2024-09-11 09:01:08.776873 2024-09-11 09:01:08.776878 f55679fe-8706-420c-974a-b6dec73ce437 {"md5": "12625778e01e5bef212f4675aadbef12", "pid": "1087354226", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087354226", "source": "GND"}], "variant_name": ["Centre for the Study of Education in Developing Countries", "CESO", "Centrum voor de studie van het onderwijs in ontwikkelingslanden", "CESO", "Centre for the Study of Education in Developing Countries"], "preferred_name": "Centrum voor de Studie van het Onderwijs in Ontwikkelingslanden", "variant_access_point": ["Centre for the Study of Education in Developing Countries. 's-Gravenhage", "CESO. Centrum voor de Studie van het Onderwijs in Ontwikkelingslanden, 's-Gravenhage", "Centrum voor de studie van het onderwijs in ontwikkelingslanden. 's Gravenhage", "CESO. Centrum voor de studie van het onderwijs in ontwikkelingslanden", "Centre for the Study of Education in Developing Countries. The Hague"], "authorized_access_point": "Centrum voor de Studie van het Onderwijs in Ontwikkelingslanden. 's-Gravenhage"} 1 +2024-09-11 09:01:08.834548 2024-09-11 09:01:08.834552 e6c4f55c-1fcf-465f-a86b-daa3a81ad9b6 {"md5": "59a28f52f7c1edaaabf2d1bffac55957", "pid": "1087364086", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087364086", "source": "GND"}], "variant_name": ["Ministerstvo čelljulozno Bumažnoj Promyšlennosti", "Ministerstvo Lesnoj, čelljulozno Bumažnoj Promyšlennosti"], "preferred_name": "Ministerstvo Lesnoj, čelljulozno Bumažnoj I Derevoobrabatyvajuščej Promyšlennosti", "variant_access_point": ["Ministerstvo čelljulozno Bumažnoj Promyšlennosti. Sssr", "Ministerstvo Lesnoj, čelljulozno Bumažnoj Promyšlennosti. Sssr"], "authorized_access_point": "Ministerstvo Lesnoj, čelljulozno Bumažnoj I Derevoobrabatyvajuščej Promyšlennosti. Sssr"} 1 +2024-09-11 09:01:08.890329 2024-09-11 09:01:08.890331 9776b0a8-136b-4d00-9f3c-3279aef0a976 {"md5": "8e03fd0e4185fb817752e033293f2ecd", "pid": "1087368367", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087368367", "source": "GND"}], "variant_name": ["FAO. Global Rinderpest Eradication Programme", "GREP"], "preferred_name": "Global Rinderpest Eradication Programme", "variant_access_point": ["FAO. Global Rinderpest Eradication Programme", "GREP. Global Rinderpest Eradication Programme"], "authorized_access_point": "Global Rinderpest Eradication Programme"} 1 +2024-09-11 09:01:08.943422 2024-09-11 09:01:08.943424 8d57e8ec-9e17-4740-aa67-b9395026ee79 {"md5": "68b3be5e26aa07c9ca790ed5833dcd98", "pid": "1087381363", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087381363", "source": "GND"}], "variant_name": ["Teilprojekt Wasserwirtschaft", "Deutschland. Bundesministerium für Bildung, Wissenschaft, Forschung und Technologie. Verbundprojekt BMBF 07SIO09 1. Teilprojekt Wasserwirtschaft", "Verbundprojekt BMBF 07SIO09 1 \\"Möglichkeiten einer Naturnahen Regenwasserbewirtschaftung in Siedlungsgebieten, Untersucht und Demonstriert am Beispiel der Städte Dortmund und Zwickau\\"", "Möglichkeiten einer Naturnahen Regenwasserbewirtschaftung in Siedlungsgebieten, Untersucht und Demonstriert am Beispiel der Städte Dortmund und Zwickau\\"", "Deutschland. Bundesministerium für Bildung, Wissenschaft, Forschung und Technologie. Verbundprojekt BMBF 07SIO09 1", "Verbundprojekt BMBF \\"Möglichkeiten einer Naturnahen Regenwasserbewirtschaftung in Siedlungsgebieten, Untersucht und Demonstriert am Beispiel der Städte Dortmund und Zwickau\\"", "Verbundprojekt BMBF 07SIO09 1"], "preferred_name": "Verbundprojekt BMBF 07SIO09 1. Teilprojekt Wasserwirtschaft", "variant_access_point": ["Teilprojekt Wasserwirtschaft. Verbundprojekt BMBF 07SIO09 1 \\"Möglichkeiten einer Naturnahen Regenwasserbewirtschaftung in Siedlungsgebieten, Untersucht und Demonstriert am Beispiel der Städte Dortmund und Zwickau\\"", "Deutschland. Bundesministerium für Bildung, Wissenschaft, Forschung und Technologie. Verbundprojekt BMBF 07SIO09 1. Teilprojekt Wasserwirtschaft", "Verbundprojekt BMBF 07SIO09 1 \\"Möglichkeiten einer Naturnahen Regenwasserbewirtschaftung in Siedlungsgebieten, Untersucht und Demonstriert am Beispiel der Städte Dortmund und Zwickau\\"", "Möglichkeiten einer Naturnahen Regenwasserbewirtschaftung in Siedlungsgebieten, Untersucht und Demonstriert am Beispiel der Städte Dortmund und Zwickau\\"", "Deutschland. Bundesministerium für Bildung, Wissenschaft, Forschung und Technologie. Verbundprojekt BMBF 07SIO09 1", "Verbundprojekt BMBF \\"Möglichkeiten einer Naturnahen Regenwasserbewirtschaftung in Siedlungsgebieten, Untersucht und Demonstriert am Beispiel der Städte Dortmund und Zwickau\\"", "Verbundprojekt BMBF 07SIO09 1. Deutschland"], "authorized_access_point": "Verbundprojekt BMBF 07SIO09 1. Deutschland. Teilprojekt Wasserwirtschaft"} 1 +2024-09-11 09:01:08.999408 2024-09-11 09:01:08.999412 5c5a15ec-2582-460e-bb4a-e73671254b68 {"md5": "c602db6e8ba94049b5b67ccdcb5ed899", "pid": "1087450594", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087450594", "source": "GND"}], "preferred_name": "Jan Becher String Quartet", "authorized_access_point": "Jan Becher String Quartet"} 1 +2024-09-11 09:01:09.054398 2024-09-11 09:01:09.054402 03b21f9c-2dd2-4ff7-9a5c-3b9e8bbecdd9 {"md5": "87f781831b5ed638bd46dd4cf7b2b3fb", "pid": "1087461731", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087461731", "source": "GND"}], "preferred_name": "Spiritwood Scribes", "authorized_access_point": "Spiritwood Scribes"} 1 +2024-09-11 09:01:09.11555 2024-09-11 09:01:09.115553 6e8f0fb2-a400-48ab-9b6a-ba4ca8d5abb9 {"md5": "2b43eb0a3ef6348340082f59142e819e", "pid": "1087515092", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087515092", "source": "GND"}], "variant_name": ["Canada. Direction des Ressources Non-Renouvelables du Nord", "Canada. Northern Non-Renewable Resources Branch", "Direction des Ressources Non-Renouvelables du Nord", "Canada. Department of Indian Affairs and Northern Development. Northern Affairs Program. Northern Non-Renewable Resources Branch", "Canada. Department of Indian Affairs and Northern Development. Northern Affairs Program. Direction des Ressources Non-Renouvelables du Nord", "Canada. Ministère des Affaires Indiennes et du Nord Canadien. Programme des Affaires du Nord. Direction des Ressources Non-Renouvelables", "Northern Non-Renewable Resources Branch"], "preferred_name": "Canada. Northern Non-Renewable Resources Branch", "country_associated": "xxc", "variant_access_point": ["Canada. Direction des Ressources Non-Renouvelables du Nord", "Canada. Northern Non-Renewable Resources Branch", "Direction des Ressources Non-Renouvelables du Nord. Canada", "Canada. Department of Indian Affairs and Northern Development. Northern Affairs Program. Northern Non-Renewable Resources Branch", "Canada. Department of Indian Affairs and Northern Development. Northern Affairs Program. Direction des Ressources Non-Renouvelables du Nord", "Canada. Ministère des Affaires Indiennes et du Nord Canadien. Programme des Affaires du Nord. Direction des Ressources Non-Renouvelables", "Northern Non-Renewable Resources Branch. Canada"], "authorized_access_point": "Canada. Northern Non-Renewable Resources Branch"} 1 +2024-09-11 09:01:09.176945 2024-09-11 09:01:09.176949 00df34f4-c5ee-43e6-ab13-bf211fde23c3 {"md5": "7a36d5615d6aa91f04624bbfe5d53317", "pid": "1087538092", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087538092", "source": "GND"}], "preferred_name": "Kulturgemeinschaft der Emigranten in Zürich", "country_associated": "sz", "date_of_termination": "1945", "date_of_establishment": "1941", "authorized_access_point": "Kulturgemeinschaft der Emigranten in Zürich"} 1 +2024-09-11 09:01:09.237099 2024-09-11 09:01:09.237104 e45e3ac3-2048-4aa1-ba1d-c91059d0df82 {"md5": "8ab9d320b5054b8830e3811358b30453", "pid": "1087545471", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087545471", "source": "GND"}], "preferred_name": "Batsford Bookseller & Publisher", "authorized_access_point": "Batsford Bookseller & Publisher. London"} 1 +2024-09-11 09:01:09.297637 2024-09-11 09:01:09.297642 c7eb41ca-b45f-4ba3-89a9-a3c3469df34d {"md5": "247cccf70a2e41d2340c571ed80ea4fc", "pid": "108756171X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/108756171X", "source": "GND"}], "preferred_name": "Conseil des Bois du Nord", "authorized_access_point": "Conseil des Bois du Nord. Stockholm"} 1 +2024-09-11 09:01:09.428867 2024-09-11 09:01:09.428871 8b667fc7-82cf-4088-b189-28a2005cae3c {"md5": "df7892afedfcfc2a1d91587cd4d360dc", "pid": "1087600936", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087600936", "source": "GND"}], "preferred_name": "Nationales Propagandabüro für Milch, Butter und Käse", "authorized_access_point": "Nationales Propagandabüro für Milch, Butter und Käse. Paris"} 1 +2024-09-11 09:01:09.484686 2024-09-11 09:01:09.484691 9d4b4966-ee1d-4e7c-9d71-e29d071aa85e {"md5": "82a43e9c13a3481a26c3fd4c87f768f1", "pid": "1087603781", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1087603781", "source": "GND"}], "preferred_name": "Laboratory Animals Centre Diets Advisory Committee", "authorized_access_point": "Laboratory Animals Centre Diets Advisory Committee"} 1 +2024-09-11 09:01:09.540134 2024-09-11 09:01:09.540138 e19d738f-157c-4bb1-9aa2-02d5731f3aa7 {"md5": "b14ad090678616ea6dab28ae22eb7515", "pid": "1088444008", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1088444008", "source": "GND"}], "preferred_name": "Meyer, Lia", "country_associated": "gw", "authorized_access_point": "Meyer, Lia", "biographical_information": ["Buchbesitz: Privatbibliothek Lia Meyer"]} 1 +2024-09-11 09:01:09.609385 2024-09-11 09:01:09.609389 22af5574-e535-4145-a511-fec5c32e76c0 {"md5": "135ec19c68120a47ee2ea4214a4b4c4c", "pid": "1088579485", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1088579485", "source": "GND"}], "variant_name": ["Risebro, Henrik", "Risebro, Nils H.", "Risebro, N. H."], "preferred_name": "Risebro, Nils Henrik", "country_associated": "no", "variant_access_point": ["Risebro, Henrik", "Risebro, Nils H.", "Risebro, N. H."], "authorized_access_point": "Risebro, Nils Henrik"} 1 +2024-09-11 09:01:09.708117 2024-09-11 09:01:09.708123 61e8c9c8-c155-4a49-99a1-c6d6f05bff21 {"md5": "e3b89210f722bf93fc21a40953a64a87", "pid": "1088801498", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1088801498", "source": "GND"}], "date_of_birth": "1993", "preferred_name": "Girardello, Linda", "country_associated": "it", "authorized_access_point": "Girardello, Linda, 1993-"} 1 +2024-09-11 09:01:09.776573 2024-09-11 09:01:09.776593 1fa650d3-4104-4c27-a086-520844de7a32 {"md5": "32890dfa0bfda4e77448c4b3341bec88", "pid": "1089143001", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089143001", "source": "GND"}], "variant_name": ["Steinbach, Robert"], "date_of_birth": "1940", "preferred_name": "Steinbach, Robert Hugh", "variant_access_point": ["Steinbach, Robert, 1940-"], "authorized_access_point": "Steinbach, Robert Hugh, 1940-"} 1 +2024-09-11 09:01:09.851462 2024-09-11 09:01:09.851465 ef4c63e2-a4a2-4fa6-90ae-5fbc81645f65 {"md5": "9318614f6970beb045207590219eff0b", "pid": "1089160305", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089160305", "source": "GND"}], "variant_name": ["Ruggles, Richard", "Ruggles, Richard Irwin", "Ruggles, Dick"], "date_of_birth": "1923", "date_of_death": "2008", "preferred_name": "Ruggles, Richard I.", "variant_access_point": ["Ruggles, Richard, 1923-2008", "Ruggles, Richard Irwin, 1923-2008", "Ruggles, Dick, 1923-2008"], "authorized_access_point": "Ruggles, Richard I., 1923-2008", "biographical_information": ["Geograph"]} 1 +2024-09-11 09:01:09.919518 2024-09-11 09:01:09.919521 4a77dfe6-f2f7-4128-b699-4bc03d561570 {"md5": "1db22b83052d56221cdde007712ad0f0", "pid": "1089227736", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089227736", "source": "GND"}], "date_of_birth": "20. Jht.", "preferred_name": "Müller-Starck, Gerhard", "authorized_access_point": "Müller-Starck, Gerhard, 20. Jht.", "biographical_information": ["Forstwissenschaftler, Deutschland, Schweiz"]} 1 +2024-09-11 09:01:09.987725 2024-09-11 09:01:09.987728 55305c16-469a-4261-b0af-147267388be6 {"md5": "4a464ef97e99ebf4fb2f293aa0f0bd68", "pid": "1089267177", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089267177", "source": "GND"}], "variant_name": ["Schimmel, Nikolaus"], "preferred_name": "Schimmel, Nikolaus W.", "variant_access_point": ["Schimmel, Nikolaus"], "authorized_access_point": "Schimmel, Nikolaus W.", "biographical_information": ["Klavierbauer, Deutschland"]} 1 +2024-09-11 09:01:10.057598 2024-09-11 09:01:10.057603 0320ef1c-8697-4572-9588-d328c76d7c86 {"md5": "3bc8e60f91ed87dd8c65c7a30b725c23", "pid": "1089282826", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089282826", "source": "GND"}], "variant_name": ["Usó, J. L."], "date_of_birth": "20. Jht.", "preferred_name": "Usó, J.-L.", "variant_access_point": ["Usó, J. L., 20. Jht."], "authorized_access_point": "Usó, J.-L., 20. Jht.", "biographical_information": ["Herausgeber, Mathematiker"]} 1 +2024-09-11 09:01:10.120971 2024-09-11 09:01:10.120973 d22386a5-4bab-42d2-8d0d-cbe2a79cc2eb {"md5": "2e05791535f7914651331027393b74e0", "pid": "1089334826", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "qualifier": "Gräzist in Oxford", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089334826", "source": "GND"}], "variant_name": ["Vitelli, Cornelio, Gräzist in Oxford"], "date_of_birth": "15. Jh.", "preferred_name": "Vitellius, Cornelius, Gräzist in Oxford", "variant_access_point": ["Vitelli, Cornelio, Gräzist in Oxford, 15. Jh."], "authorized_access_point": "Vitellius, Cornelius, Gräzist in Oxford, 15. Jh."} 1 +2024-09-11 09:01:10.181397 2024-09-11 09:01:10.181402 f01ca210-5ef8-401e-b094-20f527348b05 {"md5": "ea88736b94023ec1bf2d25c4b4c49b27", "pid": "1089339771", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089339771", "source": "GND"}], "variant_name": ["Appelman, Jaco", "Appelman, Jacob Herre"], "preferred_name": "Appelman, Jaco H.", "variant_access_point": ["Appelman, Jaco", "Appelman, Jacob Herre"], "authorized_access_point": "Appelman, Jaco H.", "biographical_information": ["Wirtschaftswissenschaftler", "Vollständiger Vorname: Jaco Herre"]} 1 +2024-09-11 09:01:10.24684 2024-09-11 09:01:10.246844 1ab4e17b-4fa2-468d-8052-75cd40e18c24 {"md5": "dada48705c596f1a34e78d45beb0b260", "pid": "1089387830", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089387830", "source": "GND"}], "date_of_birth": "1936", "preferred_name": "Nicholls, David", "authorized_access_point": "Nicholls, David, 1936-", "biographical_information": ["Historiker, Politologe, Theologe"]} 1 +2024-09-11 09:01:10.310934 2024-09-11 09:01:10.310939 d9432680-107a-432e-b499-38d3c1c64cb3 {"md5": "32050565e5f3054b1aed35e69a60df8c", "pid": "1089390971", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089390971", "source": "GND"}], "date_of_birth": "1967", "preferred_name": "Walter, Hans-Jörg", "authorized_access_point": "Walter, Hans-Jörg, 1967-", "biographical_information": ["Künstler"]} 1 +2024-09-11 09:01:10.408466 2024-09-11 09:01:10.40847 1a8be51e-2b95-4183-9cb7-d07021b00416 {"md5": "81d035dce6907e61f557702ba5525629", "pid": "1089392907", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089392907", "source": "GND"}], "date_of_birth": "1968", "preferred_name": "Groh, Prisca", "country_associated": "sz", "authorized_access_point": "Groh, Prisca, 1968-"} 1 +2024-09-11 09:01:10.491503 2024-09-11 09:01:10.491507 951249c8-0c36-4afc-947f-41025cdba4ad {"md5": "efb318ae0e0f8842135600bac0487b0a", "pid": "1089443617", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089443617", "source": "GND"}], "date_of_birth": "ca. 18. Jh.", "preferred_name": "Bilger, Daniel", "country_associated": "sz", "authorized_access_point": "Bilger, Daniel, ca. 18. Jh.", "biographical_information": ["Stadtpfarrer in Chur"]} 1 +2024-09-11 09:01:10.547467 2024-09-11 09:01:10.547471 3b837cce-b870-499c-a914-a3ed6dfe1558 {"md5": "4c905336603c0a78b37f2345367708e4", "pid": "1089455437", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089455437", "source": "GND"}], "variant_name": ["Eberhart, Hans Jacob"], "date_of_birth": "1642", "date_of_death": "1698", "preferred_name": "Eberhard, Hans Jakob", "variant_access_point": ["Eberhart, Hans Jacob, 1642-1698"], "authorized_access_point": "Eberhard, Hans Jakob, 1642-1698", "biographical_information": ["Pfarrer"]} 1 +2024-09-11 09:01:10.610469 2024-09-11 09:01:10.610474 a7dbd510-ce2a-4ea0-be16-d42536ed1241 {"md5": "ac0153d004096f110cfd5fce40a2ea94", "pid": "1089460732", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089460732", "source": "GND"}], "variant_name": ["Johansson, Thomas"], "date_of_birth": "1943", "preferred_name": "Johansson, Thomas B.", "variant_access_point": ["Johansson, Thomas, 1943-"], "authorized_access_point": "Johansson, Thomas B., 1943-"} 1 +2024-09-11 09:01:10.670571 2024-09-11 09:01:10.670574 7001ef03-d84d-4d09-925d-d0a3d2dcf8a3 {"md5": "4c8b2a6bc03dcb60bd1ece300aa33b0d", "pid": "1089477015", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089477015", "source": "GND"}], "variant_name": ["Junius Redivivus", "Redivivus, Junius", "Bridges Adams, William"], "date_of_birth": "1797", "date_of_death": "1872", "preferred_name": "Adams, William Bridges", "country_associated": "xxk", "variant_access_point": ["Junius Redivivus, 1797-1872", "Redivivus, Junius, 1797-1872", "Bridges Adams, William, 1797-1872"], "authorized_access_point": "Adams, William Bridges, 1797-1872"} 1 +2024-09-11 09:01:10.742179 2024-09-11 09:01:10.742183 3a9ed83f-3171-4dc3-89a6-0472438bfb78 {"md5": "4a849a4d7e65a5de6d2b32876ea5928b", "pid": "1089511663", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089511663", "source": "GND"}], "variant_name": ["Roja, Nicolás"], "preferred_name": "Rojas, Nicolás", "variant_access_point": ["Roja, Nicolás"], "authorized_access_point": "Rojas, Nicolás", "biographical_information": ["Biologe"]} 1 +2024-09-11 09:01:10.803041 2024-09-11 09:01:10.803045 f1cc30b3-26f2-4768-86c6-0ade6389174e {"md5": "1f8a01ba7afa65bae51007ed0d0e78d1", "pid": "108951431X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/108951431X", "source": "GND"}], "date_of_birth": "1916", "date_of_death": "2001", "preferred_name": "Koch, Howard W.", "authorized_access_point": "Koch, Howard W., 1916-2001", "biographical_information": ["Filmproduzent, Filmregisseur"]} 1 +2024-09-11 09:01:10.860947 2024-09-11 09:01:10.86095 d7c9286f-6f30-40e7-a90a-e7c700dc3cbe {"md5": "0d63a11b43c31b43aa6addc3be59f255", "pid": "1089572670", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089572670", "source": "GND"}], "variant_name": ["Ulrich, Johann Rudolf", "Ulrich, Rudolf"], "date_of_birth": "1654", "date_of_death": "1701", "preferred_name": "Ulrich, Hans Rudolf", "variant_access_point": ["Ulrich, Johann Rudolf, 1654-1701", "Ulrich, Rudolf, 1654-1701"], "authorized_access_point": "Ulrich, Hans Rudolf, 1654-1701", "biographical_information": ["Pfarrer"]} 1 +2024-09-11 09:01:10.933819 2024-09-11 09:01:10.933823 164c1f76-d77f-48bc-8e2c-aa5e5d719dc4 {"md5": "83b28006f0ba2277fcdd7a621a891d81", "pid": "1089574282", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089574282", "source": "GND"}], "date_of_birth": "1883", "date_of_death": "1955", "preferred_name": "Keller-Diethelm, Willy Max", "authorized_access_point": "Keller-Diethelm, Willy Max, 1883-1955", "biographical_information": ["Kaufmann, Schweiz"]} 1 +2024-09-11 09:01:10.992162 2024-09-11 09:01:10.992166 8c0690ba-c7eb-4cda-9a61-4a0b14664338 {"md5": "9ca5f783d7e1ae18d871958b69cc2a12", "pid": "1089580274", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089580274", "source": "GND"}], "date_of_birth": "1764", "date_of_death": "1844", "preferred_name": "Benker, Leodegar", "country_associated": "sz", "authorized_access_point": "Benker, Leodegar, 1764-1844", "biographical_information": ["Pfarrer; Respondent in Zürich; 1781"]} 1 +2024-09-11 09:01:11.061835 2024-09-11 09:01:11.061838 d455e8c1-a1b0-4fc2-903d-9fa2e0f1a1e4 {"md5": "2e7aaf111c0aaf2a19b26a2daf2838a5", "pid": "1089589018", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089589018", "source": "GND"}], "variant_name": ["Van den Zande, Martinus"], "date_of_birth": "16. Jht.", "preferred_name": "Zande, Martinus van den", "variant_access_point": ["Van den Zande, Martinus, 16. Jht."], "authorized_access_point": "Zande, Martinus van den, 16. Jht.", "biographical_information": ["Priester"]} 1 +2024-09-11 09:01:11.118695 2024-09-11 09:01:11.118698 3c52a812-938f-480d-b89e-4fc10ba72943 {"md5": "a7eb0e29942c1dd3992ad7e7821c572f", "pid": "1089604890", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089604890", "source": "GND"}], "variant_name": ["Richter-Homberg, August", "Richter-Homberg, ..."], "preferred_name": "Richter, August", "variant_access_point": ["Richter-Homberg, August", "Richter-Homberg, ..."], "authorized_access_point": "Richter, August", "biographical_information": ["Pädagoge, Mathematiker"]} 1 +2024-09-11 09:01:11.177336 2024-09-11 09:01:11.177339 1f320ed0-fe13-4651-8ba6-65b22f2f0197 {"md5": "9f0e702e5bf5365e8f0d8396642d6bbe", "pid": "1089638353", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089638353", "source": "GND"}], "preferred_name": "Wang shi", "country_associated": "cc", "parallel_access_point": ["汪氏", "汪氏"], "authorized_access_point": "Wang shi", "biographical_information": ["Vorname unbekannt"]} 1 +2024-09-11 09:01:11.23207 2024-09-11 09:01:11.232074 110e5520-4920-4f24-963e-a61e72c1c4e8 {"md5": "f20bc1e1ec98ee5b9dfeb01a05c32a21", "pid": "1089642393", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089642393", "source": "GND"}], "variant_name": ["Homem, Luís Manuel Cabrita Pais"], "preferred_name": "Homem, Luís", "variant_access_point": ["Homem, Luís Manuel Cabrita Pais"], "authorized_access_point": "Homem, Luís", "biographical_information": ["Philosoph"]} 1 +2024-09-11 09:01:11.320694 2024-09-11 09:01:11.320698 7eb9ac5f-9ff2-47e0-be46-ddb590f18d34 {"md5": "c398d81d2d224013e7d91747b4cfa1d4", "pid": "1089664281", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089664281", "source": "GND"}], "variant_name": ["津田, 直則"], "date_of_birth": "1944", "preferred_name": "Tsuda, Naonori", "variant_access_point": ["津田, 直則, 1944-"], "authorized_access_point": "Tsuda, Naonori, 1944-", "biographical_information": ["Wirtschaftswissenschaftler"]} 1 +2024-09-11 09:01:11.389888 2024-09-11 09:01:11.389891 c482b675-4ef8-471e-a7e5-8a74a6fe22f4 {"md5": "95d16fe9b3873aa78a5a5a0cb080e63c", "pid": "1089664389", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089664389", "source": "GND"}], "variant_name": ["伊奈, 正人"], "date_of_birth": "1956", "preferred_name": "Ina, Masato", "variant_access_point": ["伊奈, 正人, 1956-"], "authorized_access_point": "Ina, Masato, 1956-", "biographical_information": ["Soziologe"]} 1 +2024-09-11 09:01:11.441875 2024-09-11 09:01:11.441879 a6ba6be2-84e8-4a42-9b6c-7f7fee39f3d0 {"md5": "b37c50ed680679932d17169a1c953bd6", "pid": "1089666802", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089666802", "source": "GND"}], "preferred_name": "Dake, Mark", "authorized_access_point": "Dake, Mark", "biographical_information": ["Sprecher"]} 1 +2024-09-11 09:01:11.491304 2024-09-11 09:01:11.491307 d7e34fa6-6461-4fff-8e46-b95de2cb9c0e {"md5": "db7317a83cb1d810cd8d019f11aef760", "pid": "1089669003", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089669003", "source": "GND"}], "date_of_birth": "1975", "preferred_name": "Ishida, Hitoshi", "country_associated": "ja", "parallel_access_point": ["石田, 仁, 1975-"], "authorized_access_point": "Ishida, Hitoshi, 1975-"} 1 +2024-09-11 09:01:11.545502 2024-09-11 09:01:11.545507 321c995f-f0a8-4093-87f1-4d32cf2b6ab2 {"md5": "cb47ff86da8b3040fc232984ce7cc886", "pid": "1089693907", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089693907", "source": "GND"}], "variant_name": ["Zhao, Vincent", "Chiu, Vincent", "Chiu, Man-cheuk", "Chao, Wen-jar", "Zhao, Zhuo", "Zhao Wen Zhou", "Chuk, Vincent Chiu Man", "Chiu, Man Cheuk", "Zhao, Wenzuo Vincent", "Zhao, Wenzhou", "Zhao, Wen Zhou", "赵文卓", "趙文卓", "赵卓"], "date_of_birth": "1972", "preferred_name": "Zhao, Wenzhuo", "variant_access_point": ["Zhao, Vincent, 1972-", "Chiu, Vincent, 1972-", "Chiu, Man-cheuk, 1972-", "Chao, Wen-jar, 1972-", "Zhao, Zhuo, 1972-", "Zhao Wen Zhou, 1972-", "Chuk, Vincent Chiu Man, 1972-", "Chiu, Man Cheuk, 1972-", "Zhao, Wenzuo Vincent, 1972-", "Zhao, Wenzhou, 1972-", "Zhao, Wen Zhou, 1972-", "赵文卓, 1972-", "趙文卓, 1972-", "赵卓, 1972-"], "authorized_access_point": "Zhao, Wenzhuo, 1972-", "biographical_information": ["Schauspieler, Wushu-Kämpfer"]} 1 +2024-09-11 09:01:11.605538 2024-09-11 09:01:11.605543 892bbddb-da8e-4b66-b028-00c07ce4fe32 {"md5": "bf280369c079f71f0bbf4294bbd3328b", "pid": "1089702655", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089702655", "source": "GND"}], "variant_name": ["Rana, Pramode Shamshere J. B.", "Pramode Shamshere Rana", "Rana, Pramode Shamshere", "Rana, Pramode S. J. B."], "date_of_birth": "1932", "preferred_name": "Pramode Shamshere J. B. Rana", "variant_access_point": ["Rana, Pramode Shamshere J. B., 1932-", "Pramode Shamshere Rana, 1932-", "Rana, Pramode Shamshere, 1932-", "Rana, Pramode S. J. B., 1932-"], "authorized_access_point": "Pramode Shamshere J. B. Rana, 1932-", "biographical_information": ["Jurist, Historiker"]} 1 +2024-09-11 09:01:11.662808 2024-09-11 09:01:11.662811 6f281771-0d46-4aa2-9c2c-2ac7ba52b76b {"md5": "6600991b1c7a6675cb5ddfa88877a7cc", "pid": "1089766106", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089766106", "source": "GND"}], "date_of_birth": "1593", "date_of_death": "1619", "preferred_name": "Nantermi, Michel'Angelo", "authorized_access_point": "Nantermi, Michel'Angelo, 1593-1619"} 1 +2024-09-11 09:01:11.721785 2024-09-11 09:01:11.721789 c924fc19-11b8-4413-924a-7b19c3a13bbc {"md5": "2ffd9521e2f7d40cabaf006777599858", "pid": "1089790732", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089790732", "source": "GND"}], "variant_name": ["Stupan, Johann Jakob"], "date_of_birth": "1651", "date_of_death": "16XX", "preferred_name": "Stupanus, Johann Jacob", "country_associated": "sz", "variant_access_point": ["Stupan, Johann Jakob, 1651-16XX"], "authorized_access_point": "Stupanus, Johann Jacob, 1651-16XX", "biographical_information": ["Sohn von Johann Niklaus Stupanus (1630-1672)"]} 1 +2024-09-11 09:01:11.777785 2024-09-11 09:01:11.777789 073a174d-610a-483f-8234-3720c0e79a23 {"md5": "12406bc2cfc13bdb61f6f83ebf50f34f", "pid": "1089841035", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089841035", "source": "GND"}], "variant_name": ["al-Mubārakī, Aḥmad Ibn ʿAlī Sayr al-"], "date_of_birth": "Hochschullehrer", "preferred_name": "Sayr al-Mubārakī, Aḥmad Ibn ʿAlī", "variant_access_point": ["al-Mubārakī, Aḥmad Ibn ʿAlī Sayr al-, Hochschullehrer"], "authorized_access_point": "Sayr al-Mubārakī, Aḥmad Ibn ʿAlī, Hochschullehrer"} 1 +2024-09-11 09:01:11.843362 2024-09-11 09:01:11.843367 d40f288b-f413-4742-8e34-9e64524a2902 {"md5": "113bd09947d0bddd7064356834e3ac10", "pid": "1089904703", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1089904703", "source": "GND"}], "date_of_birth": "1868", "date_of_death": "1898", "preferred_name": "Teichmüller, Hans", "authorized_access_point": "Teichmüller, Hans, 1868-1898", "biographical_information": ["geb. 10. Dez. 1868 in Basel, gest. 25.03.1898 in Berlin, Sohn von Gustav Teichmüller (1832-1888) und Lina Teichmüller-Cramer (1844-1894)"]} 1 +2024-09-11 09:01:11.900653 2024-09-11 09:01:11.900656 c4ffd761-fde4-419b-8e02-a070b8b0f0d2 {"md5": "ddc723d4d118d807b6db4d0105724a0e", "pid": "1090478615", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1090478615", "source": "GND"}], "variant_name": ["Scuola di Guerra Aerea", "Scuola di Applicazione Aeronautica delle Cascine"], "preferred_name": "Scuola di Applicazione Aeronautica", "variant_access_point": ["Scuola di Guerra Aerea. Firenze", "Scuola di Applicazione Aeronautica delle Cascine. Firenze"], "authorized_access_point": "Scuola di Applicazione Aeronautica. Firenze"} 1 +2024-09-11 09:01:11.967347 2024-09-11 09:01:11.967352 e590683a-1f81-418d-99e6-0288ac338dbe {"md5": "6c7380819033540b509b8ae115443ea6", "pid": "1090479816", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1090479816", "source": "GND"}], "variant_name": ["Policy, Planning and Evaluation Branch", "Canada. Agriculture Canada. Policy, Planning and Evaluation Branch"], "preferred_name": "Canada. Policy, Planning and Evaluation Branch", "country_associated": "xxc", "variant_access_point": ["Policy, Planning and Evaluation Branch. Canada", "Canada. Agriculture Canada. Policy, Planning and Evaluation Branch"], "authorized_access_point": "Canada. Policy, Planning and Evaluation Branch"} 1 +2024-09-11 09:01:12.032849 2024-09-11 09:01:12.032853 c21642a0-4a4e-44f9-ad02-d2edcd1b347c {"md5": "516125709c1191806ffbd2c9fd58c91b", "pid": "1090697538", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1090697538", "source": "GND"}], "variant_name": ["Lancellotus, Petrus", "Lancelloti, Pietro"], "preferred_name": "Lancellottus", "variant_access_point": ["Lancellotus, Petrus. Offizin, Bergamo", "Lancelloti, Pietro. Offizin, Bergamo"], "authorized_access_point": "Lancellottus. Offizin, Bergamo"} 1 +2024-09-11 09:01:12.095534 2024-09-11 09:01:12.095538 b61cfac0-ad9c-4c89-9cb9-3171f4198b5c {"md5": "7b24f2c73354764e437b62aacbe558f5", "pid": "1090699522", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1090699522", "source": "GND"}], "variant_name": ["Rosa, Jonas"], "preferred_name": "Rosa", "variant_access_point": ["Rosa, Jonas. Offizin, Heidelberg"], "authorized_access_point": "Rosa. Offizin, Heidelberg"} 1 +2024-09-11 09:01:12.146131 2024-09-11 09:01:12.146134 9d2599d3-81e6-4e78-9a6e-d95fb2b7c69e {"md5": "1896f669fc74f304c4ddcef0bf845d85", "pid": "1090752598", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1090752598", "source": "GND"}], "variant_name": ["Henah, Hanś Yaḳuf", "Hena, Hansh Jakob", "Hanau, Hans Jacob"], "preferred_name": "Henah", "variant_access_point": ["Henah, Hanś Yaḳuf. Offizin, Hanau", "Hena, Hansh Jakob. Offizin, Hanau", "Hanau, Hans Jacob. Offizin, Hanau"], "authorized_access_point": "Henah. Offizin, Hanau"} 1 +2024-09-11 09:01:12.201333 2024-09-11 09:01:12.201336 1a8b06ce-fb77-4ff9-ba93-8437ac7865f5 {"md5": "c6ac0a32e3cf908c01ffa50ec8dba61f", "pid": "1090809786", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1090809786", "source": "GND"}], "date_of_birth": "1969", "preferred_name": "Gaicher, Heimo", "country_associated": "gw", "authorized_access_point": "Gaicher, Heimo, 1969-"} 1 +2024-09-11 09:01:12.265115 2024-09-11 09:01:12.265118 40106f34-3247-4204-8704-0dd01618963a {"md5": "8efb99c9c8c898b30fe02c36a0efc93f", "pid": "1091183546", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1091183546", "source": "GND"}], "preferred_name": "Architekt Franz Baumgartner", "authorized_access_point": "Architekt Franz Baumgartner, 1986, Klagenfurt"} 1 +2024-09-11 09:01:12.321034 2024-09-11 09:01:12.321037 6da012dc-b559-4833-9ba0-651f233f344f {"md5": "8c4cad94e99be069f8ea0594d25665a9", "pid": "109123471X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/109123471X", "source": "GND"}], "preferred_name": "Recent Advances in the Use of In Vitro Techniques", "authorized_access_point": "Recent Advances in the Use of In Vitro Techniques, 1987, London"} 1 +2024-09-11 09:01:12.376879 2024-09-11 09:01:12.376883 867b1212-979b-4b56-ad37-47022e9cd77a {"md5": "39a06fa3dea26418075c2a688aba1a0a", "pid": "1091235007", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1091235007", "source": "GND"}], "variant_name": ["Protection Cathodique"], "preferred_name": "Cathodic Protection", "variant_access_point": ["Protection Cathodique, 1986, Halifax"], "authorized_access_point": "Cathodic Protection, 1986, Halifax"} 1 +2024-09-11 09:01:12.430279 2024-09-11 09:01:12.430282 04a1b75d-4236-4710-948b-2675e9d6442b {"md5": "a45556a93a61037dee083800cd2073b3", "pid": "1091238898", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1091238898", "source": "GND"}], "preferred_name": "Numerical Simulation of Convection in Electronic Equipment Cooling", "authorized_access_point": "Numerical Simulation of Convection in Electronic Equipment Cooling, 1989, San Francisco, CA"} 1 +2024-09-11 09:01:12.488529 2024-09-11 09:01:12.488533 4665dc57-c389-4eea-aa94-d0ca16295f6e {"md5": "d9aafdb1721e962d7f8426223bb5235b", "pid": "1091451982", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1091451982", "source": "GND"}], "variant_name": ["Theory of Singularities"], "preferred_name": "Symposium on the Theory of Singularities", "variant_access_point": ["Theory of Singularities, 1991, Trieste"], "authorized_access_point": "Symposium on the Theory of Singularities, 1991, Trieste"} 1 +2024-09-11 09:01:12.543877 2024-09-11 09:01:12.543881 6c811c9e-4aeb-4b5a-a8f7-855baf8f75ef {"md5": "c5f6eedb8fb673ec3d3e94c51b26f7f6", "pid": "1091613443", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1091613443", "source": "GND"}], "variant_name": ["Chung-Hwa Conference", "International Conference on Buddhism", "Conference on Buddhism"], "preferred_name": "Chung-Hwa International Conference on Buddhism", "variant_access_point": ["Chung-Hwa Conference", "International Conference on Buddhism. Chung-Hwa International Conference on Buddhism", "Conference on Buddhism. Chung-Hwa International Conference on Buddhism"], "authorized_access_point": "Chung-Hwa International Conference on Buddhism"} 1 +2024-09-11 09:01:12.597322 2024-09-11 09:01:12.597325 456d8822-0dbd-4ece-993e-a7168584693b {"md5": "16be7d280a5ce968d0107d4d4b770c31", "pid": "1091651787", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1091651787", "source": "GND"}], "preferred_name": "Festival France Cinema", "authorized_access_point": "Festival France Cinema"} 1 +2024-09-11 09:01:12.696675 2024-09-11 09:01:12.696679 adc01b71-48ab-41b1-a8b1-22a50930823a {"md5": "292ec97261ed7c9aa41136c1d75870e2", "pid": "1091678340", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1091678340", "source": "GND"}], "preferred_name": "Kolloquium \\"Sprachskepsis und Sprachmagie\\"", "authorized_access_point": "Kolloquium \\"Sprachskepsis und Sprachmagie\\""} 1 +2024-09-11 09:01:12.751172 2024-09-11 09:01:12.751176 1f069d4d-273f-452a-90e4-1297c2d3e81f {"md5": "7761abd7849cee0680f4cb95cfba8ad0", "pid": "1091697396", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1091697396", "source": "GND"}], "preferred_name": "Symposion Innere Schulreform, Lehrer sein heute", "authorized_access_point": "Symposion Innere Schulreform, Lehrer sein heute"} 1 +2024-09-11 09:01:12.81692 2024-09-11 09:01:12.816922 30433fe8-db03-43fd-84eb-b4e01ae6dacb {"md5": "eebfad0190a85cd53e77be26027edb35", "pid": "1091697620", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1091697620", "source": "GND"}], "preferred_name": "Symposion \\"Psychoanalyse im Kontext - soziologische Erkundungen\\"", "authorized_access_point": "Symposion \\"Psychoanalyse im Kontext - soziologische Erkundungen\\""} 1 +2024-09-11 09:01:12.877887 2024-09-11 09:01:12.87789 57190434-f7ed-4f08-89c0-b23587a2655f {"md5": "9a0ff444c42ecb77f31c151adcbf5570", "pid": "1091698856", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1091698856", "source": "GND"}], "preferred_name": "Symposium Die Karolinger an der österreichischen Donau", "authorized_access_point": "Symposium Die Karolinger an der österreichischen Donau"} 1 +2024-09-11 09:01:12.936428 2024-09-11 09:01:12.936431 9f1ed0b9-5b49-4829-bf00-96148f29f29d {"md5": "806ac691bc4eef1b8286ba21ef67ce34", "pid": "1091702292", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1091702292", "source": "GND"}], "preferred_name": "Symposium on Exploring Brain Functional Anatomy with Positron Tomography", "authorized_access_point": "Symposium on Exploring Brain Functional Anatomy with Positron Tomography"} 1 +2024-09-11 09:01:13.004835 2024-09-11 09:01:13.004838 5f85df83-f9ef-470c-9ace-4ddfdeb855ea {"md5": "a1012c61dc543d6eca3a476c9ea7d64b", "pid": "109172251X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/109172251X", "source": "GND"}], "variant_name": ["EFS conference"], "preferred_name": "Foundation for European Fiscal Studies", "variant_access_point": ["EFS conference"], "authorized_access_point": "Foundation for European Fiscal Studies. Rotterdam. Conference"} 1 +2024-09-11 09:01:13.061173 2024-09-11 09:01:13.061177 d5cf56be-c8a7-41a7-b70c-8ca839f19b15 {"md5": "5e8b1ab69ca8d820dcfbf8ee73e5853b", "pid": "109177918X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/109177918X", "source": "GND"}], "variant_name": ["Japan Conference on Discrete and Computation Geometry", "Conference on Discrete and Computation Geometry"], "preferred_name": "JCDCG 2000", "variant_access_point": ["Japan Conference on Discrete and Computation Geometry", "Conference on Discrete and Computation Geometry"], "authorized_access_point": "JCDCG 2000"} 1 +2024-09-11 09:01:13.11984 2024-09-11 09:01:13.119843 25cb7ef2-4975-494d-93aa-c355abdbbe85 {"md5": "3fd4cbe6d2d972f68f73da124fb6b6c7", "pid": "1091785813", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1091785813", "source": "GND"}], "preferred_name": "Augsburger Nachsorgesymposium", "authorized_access_point": "Augsburger Nachsorgesymposium"} 1 +2024-09-11 09:01:13.17878 2024-09-11 09:01:13.178785 282ce146-7529-493d-b4b3-1ec7332a9ce8 {"md5": "5bdcc7e7e509601f3dc77620a0ead6e8", "pid": "1091786100", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1091786100", "source": "GND"}], "preferred_name": "Seminari in archeologia dell'architettura", "authorized_access_point": "Seminari in archeologia dell'architettura"} 1 +2024-09-11 09:01:13.244756 2024-09-11 09:01:13.244761 385b0a8c-1a9a-4d2b-a47a-20e0f2b24136 {"md5": "6d099cb85e314faf4775833869bd2aab", "pid": "1091792305", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1091792305", "source": "GND"}], "variant_name": ["Georg-Forster-Symposion", "Internationales Georg Forster-Symposion", "Georg Forster-Symposion, Internationales"], "preferred_name": "Internationales Georg-Forster-Symposion", "variant_access_point": ["Georg-Forster-Symposion", "Internationales Georg Forster-Symposion", "Georg Forster-Symposion, Internationales"], "authorized_access_point": "Internationales Georg-Forster-Symposion"} 1 +2024-09-11 09:01:13.299185 2024-09-11 09:01:13.299189 04c9e061-bc1a-4c03-b5b7-652e1f92a6da {"md5": "995698e087abdfb084c70d0510b86d5b", "pid": "109179331X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/109179331X", "source": "GND"}], "variant_name": ["Conference on the Dead Sea Scrolls, Provo International", "International Conference on the Dead Sea Scrolls, Provo"], "preferred_name": "Provo International Conference on the Dead Sea Scrolls", "variant_access_point": ["Conference on the Dead Sea Scrolls, Provo International", "International Conference on the Dead Sea Scrolls, Provo"], "authorized_access_point": "Provo International Conference on the Dead Sea Scrolls"} 1 +2024-09-11 09:01:13.357832 2024-09-11 09:01:13.357836 b46b317a-189d-453f-99be-d4a33aea793a {"md5": "a89e24a3bc822c58f1bf6474e8d10733", "pid": "1091822417", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1091822417", "source": "GND"}], "preferred_name": "NY Art Book Fair", "authorized_access_point": "NY Art Book Fair"} 1 +2024-09-11 09:01:13.415953 2024-09-11 09:01:13.415956 4eca6f47-9e1f-4cf6-aff8-21facc5f1443 {"md5": "3254b2fd8a7f84cb5bb02a04fe50ac34", "pid": "1091849781", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1091849781", "source": "GND"}], "variant_name": ["Woodpecker Symposium"], "preferred_name": "International Woodpecker Symposium", "variant_access_point": ["Woodpecker Symposium. International Woodpecker Symposium"], "authorized_access_point": "International Woodpecker Symposium"} 1 +2024-09-11 09:01:40.952798 2024-09-11 09:01:40.952801 43a2b07e-edea-4ae5-8962-f30760de9bc9 {"md5": "916a621d24df8b558d8c416cdf462903", "pid": "117471178", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/117471178", "source": "GND"}], "preferred_name": "Severeanu, George", "country_associated": "rm", "authorized_access_point": "Severeanu, George"} 1 +2024-09-11 09:01:13.466261 2024-09-11 09:01:13.466264 3a838997-8b9f-4a90-9b2c-832473f50b2f {"md5": "dd4df8c7b4f596cb0c76d245a6678f58", "pid": "1091883599", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1091883599", "source": "GND"}], "variant_name": ["Measurement of Photosynthetic Pigments in Freshwaters and Standardization of Methods [workshop]"], "preferred_name": "Workshop on the Measurement of Photosynthetic Pigments in Freshwaters and Standardization of Methods", "variant_access_point": ["Measurement of Photosynthetic Pigments in Freshwaters and Standardization of Methods [workshop]"], "authorized_access_point": "Workshop on the Measurement of Photosynthetic Pigments in Freshwaters and Standardization of Methods"} 1 +2024-09-11 09:01:13.51769 2024-09-11 09:01:13.517694 b8f21ccc-a191-4d01-9a27-513f0ceb8ab8 {"md5": "e084c2101f3278d88d666f37b6519ee5", "pid": "1091897085", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1091897085", "source": "GND"}], "variant_name": ["Colloquium Spectral Signatures of Objects in Remote Sensing [international]", "Colloque International Signatures Spectrales d'Objets en Teledetection", "Colloque International sur les Signatures Spectrales en Teledetection", "Signatures Spectrales en Teledetection [colloque international]"], "preferred_name": "International Colloquium Spectral Signatures of Objects in Remote Sensing", "variant_access_point": ["Colloquium Spectral Signatures of Objects in Remote Sensing [international]", "Colloque International Signatures Spectrales d'Objets en Teledetection", "Colloque International sur les Signatures Spectrales en Teledetection", "Signatures Spectrales en Teledetection [colloque international]"], "authorized_access_point": "International Colloquium Spectral Signatures of Objects in Remote Sensing"} 1 +2024-09-11 09:01:13.580928 2024-09-11 09:01:13.580931 894e50d0-3423-4e22-89ee-ce26fa35eb3e {"md5": "7a976bcfac8d8f412059b78a99b5f6a6", "pid": "1091907730", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1091907730", "source": "GND"}], "variant_name": ["Aids/Kaposis Sarcoma [international workshop]", "International Workshop entitled Acquired Immune Deficiency Syndrome - Aids - and Kaposis Sarcoma - Ks", "Acquired Immune Deficiency Syndrome - Aids - and Kaposis Sarcoma - Ks [international workshop]", "Workshop of the European Study Group on Epidemic of Acquired Immune Deficiency Syndrome and Kaposis Sarcoma - Aids/Ks"], "preferred_name": "International Workshop on Aids/Kaposis Sarcoma", "variant_access_point": ["Aids/Kaposis Sarcoma [international workshop]", "International Workshop entitled Acquired Immune Deficiency Syndrome - Aids - and Kaposis Sarcoma - Ks", "Acquired Immune Deficiency Syndrome - Aids - and Kaposis Sarcoma - Ks [international workshop]", "Workshop of the European Study Group on Epidemic of Acquired Immune Deficiency Syndrome and Kaposis Sarcoma - Aids/Ks"], "authorized_access_point": "International Workshop on Aids/Kaposis Sarcoma"} 1 +2024-09-11 09:01:13.634235 2024-09-11 09:01:13.634238 88e723d8-06f6-43f1-b5a6-cf490b224025 {"md5": "07443745a9d1f4e270a1f8153075888e", "pid": "1091936803", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1091936803", "source": "GND"}], "variant_name": ["Annual Powder and Bulk Solids Conference / Exhibition", "Powder & Bulk Solids Conference / Exhibition", "Powder and Bulk Solids Conference / Exhibition", "Powder & Bulk Solids Conference and Exhibition", "Powder and Bulk Solids Conference and Exhibition", "Powder & Bulk Solids Conference", "Powder and Bulk Solids Conference"], "preferred_name": "Annual Powder & Bulk Solids Conference / Exhibition", "variant_access_point": ["Annual Powder and Bulk Solids Conference / Exhibition", "Powder & Bulk Solids Conference / Exhibition", "Powder and Bulk Solids Conference / Exhibition", "Powder & Bulk Solids Conference and Exhibition", "Powder and Bulk Solids Conference and Exhibition", "Powder & Bulk Solids Conference", "Powder and Bulk Solids Conference"], "authorized_access_point": "Annual Powder & Bulk Solids Conference / Exhibition"} 1 +2024-09-11 09:01:13.688066 2024-09-11 09:01:13.688068 2831342e-64e7-443b-8799-41b5d502538d {"md5": "68b3995feec0ac6b8745a731a9927ea0", "pid": "1091959382", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1091959382", "source": "GND"}], "variant_name": ["Conference on Three-Dimensional Microscopy: Image Acquisition and Processing", "Conference on Multidimensional Spectroscopy: Acquisition, Interpretation, and Automation", "SPIE Conference on Three-Dimensional and Multidimensinal Microscopy: Image Acquisition and Processing", "Conference on Three-Dimensional and Multidimensinal Microscopy: Image Acquisition and Processing", "SPIE Conference on Multidimensional Spectroscopy: Acquisition, Interpretatation and Automation", "Conference on Multidimensional Spectroscopy: Acquisition, Interpretatation and Automation", "Three-dimensional and Multidimensional Microscopy: Image Acquisition Processing"], "preferred_name": "Three-Dimensional Microscopy: Image Acquisition and Processing", "variant_access_point": ["Conference on Three-Dimensional Microscopy: Image Acquisition and Processing", "Conference on Multidimensional Spectroscopy: Acquisition, Interpretation, and Automation", "SPIE Conference on Three-Dimensional and Multidimensinal Microscopy: Image Acquisition and Processing", "Conference on Three-Dimensional and Multidimensinal Microscopy: Image Acquisition and Processing", "SPIE Conference on Multidimensional Spectroscopy: Acquisition, Interpretatation and Automation", "Conference on Multidimensional Spectroscopy: Acquisition, Interpretatation and Automation", "Three-dimensional and Multidimensional Microscopy: Image Acquisition Processing"], "authorized_access_point": "Three-Dimensional Microscopy: Image Acquisition and Processing"} 1 +2024-09-11 09:01:13.741284 2024-09-11 09:01:13.741286 cc012068-4630-412e-bd95-2da6921372d3 {"md5": "e3d0eccdcf54308d56cabd0dbe9c93d9", "pid": "1092040889", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1092040889", "source": "GND"}], "preferred_name": "Wagner: le Ring en Images (1994-1995 ; Paris)", "authorized_access_point": "Wagner: le Ring en Images (1994-1995 ; Paris)"} 1 +2024-09-11 09:01:14.327645 2024-09-11 09:01:14.327648 e7e5a2af-49b5-480d-815e-32cd17ee6a12 {"md5": "e55bd8b2f0a318a725e074ce774981bc", "pid": "1092508333", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1092508333", "source": "GND"}], "variant_name": ["Participating Institutions Conference, IMA", "IMA Participating Institutions Conference on Singularities"], "preferred_name": "IMA Participating Institutions Conference", "variant_access_point": ["Participating Institutions Conference, IMA", "IMA Participating Institutions Conference on Singularities"], "authorized_access_point": "IMA Participating Institutions Conference"} 1 +2024-09-11 09:01:13.798021 2024-09-11 09:01:13.798025 9bdd5cfc-dfe3-4c79-8d59-9eb404563110 {"md5": "f924865ca6fc2a33b2caf05d446a2e47", "pid": "109206639X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/109206639X", "source": "GND"}], "variant_name": ["VisSym", "Joint Eurographics/IEEE TCVG Symposium on Visualization", "Joint Eurographics/IEEE TCVG Symposium", "Joint Visualisation Symposium", "Eurographics/IEEE TCVG Symposium on Visualization", "Eurographics/IEEE TCVG Symposium on Visualisation", "Symposium on Visualization"], "preferred_name": "Joint Eurographics and IEEE TCVG Symposium on Visualization", "variant_access_point": ["VisSym. Joint Eurographics and IEEE TCVG Symposium on Visualization", "Joint Eurographics/IEEE TCVG Symposium on Visualization", "Joint Eurographics/IEEE TCVG Symposium", "Joint Visualisation Symposium", "Eurographics/IEEE TCVG Symposium on Visualization", "Eurographics/IEEE TCVG Symposium on Visualisation", "Symposium on Visualization"], "authorized_access_point": "Joint Eurographics and IEEE TCVG Symposium on Visualization"} 1 +2024-09-11 09:01:13.853804 2024-09-11 09:01:13.853807 a3a1795c-c536-42f7-917b-ecf21ab3febc {"md5": "5cba370847674c898341079135eae7a9", "pid": "1092274499", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1092274499", "source": "GND"}], "preferred_name": "Symposium on the Influence of the Map User on Map Design", "authorized_access_point": "Symposium on the Influence of the Map User on Map Design"} 1 +2024-09-11 09:01:13.90821 2024-09-11 09:01:13.908214 67a2d046-808c-4c75-bea7-9f1147de3eb2 {"md5": "4b213a2b0932260c0a76b06e4081b796", "pid": "109229578X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/109229578X", "source": "GND"}], "variant_name": ["Two-Day Symposium on Structural Design of Nuclear Power Plant Facilites"], "preferred_name": "Symposium on Structural Design of Nuclear Power Plant Facilities", "country_associated": "xxu", "variant_access_point": ["Two-Day Symposium on Structural Design of Nuclear Power Plant Facilites, 1972, Pittsburgh, Pa."], "authorized_access_point": "Symposium on Structural Design of Nuclear Power Plant Facilities, 1972, Pittsburgh, Pa."} 1 +2024-09-11 09:01:13.962586 2024-09-11 09:01:13.96259 f0ed4193-bb68-40f9-8beb-a9d90d21bfa4 {"md5": "135d02808099826e131de38d8f978b48", "pid": "1092297278", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1092297278", "source": "GND"}], "variant_name": ["International Conference of the Association for the Promotion of South Asian Archaeology", "Conference of the Association for the Promotion of South Asian Archaeology", "International Conference of South Asian Archaeologists", "Conference of South Asian Archaeologists"], "preferred_name": "Association for the Promotion of South Asian Archaeology in Western Europe", "variant_access_point": ["International Conference of the Association for the Promotion of South Asian Archaeology", "Conference of the Association for the Promotion of South Asian Archaeology", "International Conference of South Asian Archaeologists", "Conference of South Asian Archaeologists"], "authorized_access_point": "Association for the Promotion of South Asian Archaeology in Western Europe. International Conference"} 1 +2024-09-11 09:01:14.024394 2024-09-11 09:01:14.024397 ed6a5221-a348-471c-9e96-53ca9be40e1e {"md5": "17707261242905f5dc61c0f98f5470d0", "pid": "1092349839", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1092349839", "source": "GND"}], "variant_name": ["IWMM"], "preferred_name": "International Workshop on Mathematics Mechanization", "variant_access_point": ["IWMM. International Workshop on Mathematics Mechanization"], "authorized_access_point": "International Workshop on Mathematics Mechanization"} 1 +2024-09-11 09:01:14.079351 2024-09-11 09:01:14.079354 78498954-085d-4aa4-9dcb-55ac5e9a0ede {"md5": "42b5c69b1cb4459f5d05da42e44e2dc6", "pid": "1092417966", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1092417966", "source": "GND"}], "preferred_name": "Technical Consultation to Draft a Legally-binding Instrument on Port State Measures to Prevent, Deter and Eliminate Illegal, Unreported and Unregulated Fishing", "authorized_access_point": "Technical Consultation to Draft a Legally-binding Instrument on Port State Measures to Prevent, Deter and Eliminate Illegal, Unreported and Unregulated Fishing"} 1 +2024-09-11 09:01:14.134829 2024-09-11 09:01:14.134832 b7594d94-d99d-4791-ba8d-8e855428758d {"md5": "5f05c2b01bcd3fb56a5d2e1b0923cd4c", "pid": "1092457992", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1092457992", "source": "GND"}], "variant_name": ["Gesellschaft Deutscher Chemiker", "Gesellschaft für Naturwissenschaftliche Archäologie Archaeometrie", "Deutsche Mineralogische Gesellschaft"], "preferred_name": "Archäometrie und Denkmalpflege (Kongress)", "variant_access_point": ["Gesellschaft Deutscher Chemiker. Arbeitskreis Archäometrie. Jahrestagung", "Gesellschaft für Naturwissenschaftliche Archäologie Archaeometrie. Deutschland. Jahrestagung", "Deutsche Mineralogische Gesellschaft. Arbeitskreis Archäometrie und Denkmalpflege. Jahrestagung"], "authorized_access_point": "Archäometrie und Denkmalpflege (Kongress)"} 1 +2024-09-11 09:01:14.212804 2024-09-11 09:01:14.212807 09f62780-f60f-40e1-8a01-93df2a6d47e5 {"md5": "12a0568e1b6833b93ea2559e6b1d32cb", "pid": "1092493239", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1092493239", "source": "GND"}], "preferred_name": "International Symposium on the Role of Anthropology in 21st Century Development Policy", "authorized_access_point": "International Symposium on the Role of Anthropology in 21st Century Development Policy"} 1 +2024-09-11 09:01:14.269112 2024-09-11 09:01:14.269115 49351b8c-81b7-48d6-9900-613d2fac4848 {"md5": "0ac44a062ed4036df16c914193461c53", "pid": "1092495266", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1092495266", "source": "GND"}], "variant_name": ["Congrès annuel de la Société de neurochirurgie de langue française"], "preferred_name": "Société de neurochirurgie de langue française", "variant_access_point": ["Congrès annuel de la Société de neurochirurgie de langue française"], "authorized_access_point": "Société de neurochirurgie de langue française. Congrès annuel"} 1 +2024-09-11 09:01:14.380914 2024-09-11 09:01:14.380918 0a8f6384-eb7e-4fcb-a766-332c27478316 {"md5": "91532c99a4666daaf1c052d1e0633f65", "pid": "1092524398", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1092524398", "source": "GND"}], "preferred_name": "Symposium on Nonlinear Functional Analysis", "authorized_access_point": "Symposium on Nonlinear Functional Analysis"} 1 +2024-09-11 09:01:14.434028 2024-09-11 09:01:14.434031 70c9421e-be55-4aac-ab1c-fb94f687f0ec {"md5": "77cb206d0ad8a0b5a31e821bfc32a7bb", "pid": "1092551271", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1092551271", "source": "GND"}], "preferred_name": "China Academic Conference on Food Packaging", "authorized_access_point": "China Academic Conference on Food Packaging"} 1 +2024-09-11 09:01:14.487167 2024-09-11 09:01:14.487169 5a5b7576-8574-4de2-9742-0e3303a43646 {"md5": "9f9a3556c8b9043e70c8c78030941b34", "pid": "1093232943", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1093232943", "source": "GND"}], "preferred_name": "Andreas, Jürgen", "authorized_access_point": "Andreas, Jürgen"} 1 +2024-09-11 09:01:14.535981 2024-09-11 09:01:14.535983 b9067e88-7682-41a2-b709-6abacd68da56 {"md5": "78f5df6541886cc9f5c7fdab48b050d5", "pid": "1095512498", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1095512498", "source": "GND"}], "date_of_birth": "ca. 20./21. Jh.", "preferred_name": "Bruzauskas, Sonja", "country_associated": "gw", "authorized_access_point": "Bruzauskas, Sonja, ca. 20./21. Jh."} 1 +2024-09-11 09:01:14.595043 2024-09-11 09:01:14.595047 411a39d0-2932-4493-838e-e1a9c65e08e1 {"md5": "a2f5fc38689b8f136f9a9bc6af42d9c6", "pid": "1095673300", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1095673300", "source": "GND"}], "variant_name": ["Hügel, Georg Heinrich von", "Hügel, Heinrich von"], "date_of_birth": "07.08.1828", "date_of_death": "02.08.1899", "preferred_name": "Hügel, Heinrich", "country_associated": "gw", "variant_access_point": ["Hügel, Georg Heinrich von, 1828-1899", "Hügel, Heinrich von, 1828-1899"], "authorized_access_point": "Hügel, Heinrich, 1828-1899", "biographical_information": ["Dt. Architekt und Eisenbahnbauunternehmer"]} 1 +2024-09-11 09:01:14.659919 2024-09-11 09:01:14.659923 49f70586-ea89-4196-934d-bb756598bc20 {"md5": "f25f1a2bf30f9f6f116f189a5b6c0322", "pid": "1095685007", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1095685007", "source": "GND"}], "variant_name": ["Kogler, Dieter Franz", "Kogler, Dieter"], "date_of_birth": "1973", "preferred_name": "Kogler, Dieter F.", "country_associated": "ie", "variant_access_point": ["Kogler, Dieter Franz, 1973-", "Kogler, Dieter, 1973-"], "authorized_access_point": "Kogler, Dieter F., 1973-"} 1 +2024-09-11 09:01:14.716887 2024-09-11 09:01:14.71689 78cde946-a7bb-4c2d-bfe5-895d26d54c83 {"md5": "7dc41b80e5320ef2ad89d1e42cbb0547", "pid": "1095792091", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1095792091", "source": "GND"}], "preferred_name": "Jorgensen, James H.", "country_associated": "xxu", "authorized_access_point": "Jorgensen, James H."} 1 +2024-09-11 09:01:14.780136 2024-09-11 09:01:14.780139 fc6d4579-bf26-451b-8a6e-6f69b0df1c2c {"md5": "9dba2b0b14eef476a028f6bbc916a4a8", "pid": "1095794957", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1095794957", "source": "GND"}], "preferred_name": "Bols, Mike", "authorized_access_point": "Bols, Mike"} 1 +2024-09-11 09:01:14.839742 2024-09-11 09:01:14.839745 77929749-58b3-4ed1-aa76-b272e4029a67 {"md5": "d15aae1821d5777cd044aff461c4d0f2", "pid": "109579762X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/109579762X", "source": "GND"}], "variant_name": ["Gigli, Sylvester"], "preferred_name": "Gigli, Silvestro", "country_associated": "it", "variant_access_point": ["Gigli, Sylvester"], "authorized_access_point": "Gigli, Silvestro", "biographical_information": ["Dekan in Venedig"]} 1 +2024-09-11 09:01:14.892209 2024-09-11 09:01:14.892213 07d2e17f-4954-4a07-9012-99d748006652 {"md5": "f77a25c820c90bf2142f419c5e3a69ed", "pid": "1096172224", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1096172224", "source": "GND"}], "variant_name": ["Juteau Lee, Danielle", "Lee, Danielle Juteau"], "date_of_birth": "1942", "preferred_name": "Juteau, Danielle", "country_associated": "xxc", "variant_access_point": ["Juteau Lee, Danielle, 1942-", "Lee, Danielle Juteau, 1942-"], "authorized_access_point": "Juteau, Danielle, 1942-", "biographical_information": ["Professeure émérité au Département de sociologie de l'Université de Montréal (2015)"]} 1 +2024-09-11 09:01:14.952519 2024-09-11 09:01:14.952522 7d78e127-53a0-426d-a691-d1fb18ae60d6 {"md5": "965c8e90a631b1bdffc4803b91146b2f", "pid": "1096247151", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1096247151", "source": "GND"}], "date_of_birth": "1962", "preferred_name": "Otto, Petra", "country_associated": "gw", "authorized_access_point": "Otto, Petra, 1962-"} 1 +2024-09-11 09:01:15.003311 2024-09-11 09:01:15.003314 2c145fa5-1416-4916-988c-8c331beedcb1 {"md5": "9dabdb37e53404f498007c9f387c56f0", "pid": "1096338572", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1096338572", "source": "GND"}], "preferred_name": "Westerbeek, Margo", "country_associated": "ne", "authorized_access_point": "Westerbeek, Margo"} 1 +2024-09-11 09:01:15.064649 2024-09-11 09:01:15.064653 ec330975-ae81-4987-962d-5ff808cd74cf {"md5": "60665c4fd106831a9e37f2008632bc6c", "pid": "1096509253", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1096509253", "source": "GND"}], "variant_name": ["Kilgert, Beate"], "date_of_birth": "1987", "preferred_name": "Blank, Beate", "country_associated": "gw", "variant_access_point": ["Kilgert, Beate, 1987-"], "authorized_access_point": "Blank, Beate, 1987-"} 1 +2024-09-11 09:01:15.120461 2024-09-11 09:01:15.120466 5eff4a56-f71f-4cd9-8fd2-51926b7a3d9f {"md5": "568d850c8003428760a05690306053a9", "pid": "1097290735", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1097290735", "source": "GND"}], "date_of_birth": "1950", "preferred_name": "Flamme, Dieter", "country_associated": "gw", "authorized_access_point": "Flamme, Dieter, 1950-"} 1 +2024-09-11 09:01:15.179603 2024-09-11 09:01:15.179606 5c05b18d-e499-429f-8700-f23ec3affee2 {"md5": "23df22e3964b690d598f299450c7e830", "pid": "1097642550", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1097642550", "source": "GND"}], "variant_name": ["Mazo, R. M.", "Mazo, Robert"], "preferred_name": "Mazo, Robert M.", "country_associated": "xxu", "variant_access_point": ["Mazo, R. M.", "Mazo, Robert"], "authorized_access_point": "Mazo, Robert M."} 1 +2024-09-11 09:01:15.233426 2024-09-11 09:01:15.23343 850683cd-420d-43a8-8ea1-585e1c49b0c0 {"md5": "3dd9ee80992a7b7965baf245fcdc0602", "pid": "1097758591", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1097758591", "source": "GND"}], "variant_name": ["National Center for Development of Mountain Regions of Kyrgyzstan"], "preferred_name": "Nacionalʹnyj centr razvitija gornych rajonov Kyrgyzkoj Respubliki", "country_associated": "kg", "variant_access_point": ["National Center for Development of Mountain Regions of Kyrgyzstan"], "parallel_access_point": ["Национальный центр развития горных районов Кыргызской Республики", "Национальный центр развития горных районов КР"], "authorized_access_point": "Nacionalʹnyj centr razvitija gornych rajonov Kyrgyzkoj Respubliki"} 1 +2024-09-11 09:01:15.285309 2024-09-11 09:01:15.285314 3da3cdb8-14b3-41e3-8452-09f0f4de9585 {"md5": "7dfca5131a983822a5d89600790f7d0a", "pid": "109790715", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/109790715", "source": "GND"}], "variant_name": ["François"], "preferred_name": "Doly, Guy", "variant_access_point": ["François"], "authorized_access_point": "Doly, Guy"} 1 +2024-09-11 09:01:15.343242 2024-09-11 09:01:15.343246 c560b887-bcfa-4511-b21b-5113ec99d0e0 {"md5": "6f3d610d17667faeb00696d234f5ecfb", "pid": "1098168984", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1098168984", "source": "GND"}], "variant_name": ["Lappe, J. H. A.", "Lappe, Johann", "Lappe, Heinrich", "Lappe, August"], "date_of_birth": "ca. 1824", "preferred_name": "Lappe, Johann Heinrich August", "country_associated": "gw", "variant_access_point": ["Lappe, J. H. A., ca. 1824", "Lappe, Johann, ca. 1824", "Lappe, Heinrich, ca. 1824", "Lappe, August, ca. 1824"], "authorized_access_point": "Lappe, Johann Heinrich August, ca. 1824"} 1 +2024-09-11 09:01:15.405138 2024-09-11 09:01:15.405141 1ba32608-9b95-4a30-9fed-34b7f4033d9a {"md5": "9b21744caaca27518760dd123ad1113a", "pid": "1098212460", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1098212460", "source": "GND"}], "variant_name": ["Cobedix AG"], "preferred_name": "Cobedix", "country_associated": "sz", "variant_access_point": ["Cobedix AG. Unveraenderte Form"], "authorized_access_point": "Cobedix"} 1 +2024-09-11 09:01:15.461438 2024-09-11 09:01:15.461442 f6b76aed-6bb4-4d86-b817-e30a3ae42418 {"md5": "5fdc70354dbec6b478a4132294888710", "pid": "109946577X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/109946577X", "source": "GND"}], "date_of_birth": "1974", "preferred_name": "Vida, Ben", "country_associated": "xxu", "authorized_access_point": "Vida, Ben, 1974-"} 1 +2024-09-11 09:01:15.535064 2024-09-11 09:01:15.535067 93be04b1-969a-42d8-85b4-550b83c40362 {"md5": "f6a15477064dc0884676005ae082e580", "pid": "1099467756", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1099467756", "source": "GND"}], "date_of_death": "1929", "preferred_name": "Turski, Ryszard", "country_associated": "pl", "authorized_access_point": "Turski, Ryszard, -1929", "biographical_information": ["Forschungsschwerpunkt: Migration, gesellschaftl. Wandel, ländl. Raum"]} 1 +2024-09-11 09:01:15.600715 2024-09-11 09:01:15.600718 c471c890-3a4d-4afe-931a-4e4fbb3b5b43 {"md5": "ca50ed1e447240309d264b9cb9971951", "pid": "1099730872", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1099730872", "source": "GND"}], "variant_name": ["ADLER Solar Service GmbH", "ADLER Solar"], "preferred_name": "ADLER Solar Services GmbH", "country_associated": "gw", "variant_access_point": ["ADLER Solar Service GmbH", "ADLER Solar"], "authorized_access_point": "ADLER Solar Services GmbH"} 1 +2024-09-11 09:01:15.660341 2024-09-11 09:01:15.660346 baf6ea85-2dea-4bae-883d-0cf10646550a {"md5": "b1827593d8b685a5989fbf0b2ed6c3c3", "pid": "1099924197", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1099924197", "source": "GND"}], "preferred_name": "RP Photonics Consulting GmbH", "country_associated": "gw", "date_of_establishment": "2004", "authorized_access_point": "RP Photonics Consulting GmbH"} 1 +2024-09-11 09:01:15.709763 2024-09-11 09:01:15.709768 63299982-5ccb-4ecd-866f-31bb74e762f3 {"md5": "c2667c6125829b7cb6a9c2d64d067436", "pid": "1100173900", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1100173900", "source": "GND"}], "date_of_birth": "1984", "preferred_name": "Reusch, Anna M.", "country_associated": "sz", "authorized_access_point": "Reusch, Anna M., 1984-", "biographical_information": ["Vorlage, Diss. ETH Zürich 2016, M.Sc. Marine Geosciences, University of Bremen"]} 1 +2024-09-11 09:01:15.760917 2024-09-11 09:01:15.760922 64e535f9-d296-45b9-93fb-70bd6cba3790 {"md5": "1b413158b88dd62acdf52691e132596a", "pid": "1100326294", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1100326294", "source": "GND"}], "preferred_name": "Hal, Simon van", "country_associated": "gw", "authorized_access_point": "Hal, Simon van"} 1 +2024-09-11 09:01:15.822325 2024-09-11 09:01:15.822328 8c5925dd-4d90-4385-a2ca-a8833afd582b {"md5": "71bf242e798747bcad9b4aa59023117b", "pid": "1100545808", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1100545808", "source": "GND"}], "date_of_birth": "1965", "preferred_name": "Hucul, Stefan", "country_associated": "gw", "authorized_access_point": "Hucul, Stefan, 1965-", "biographical_information": ["1987-1992 Studium der Rechtswissenschaften in München; Leitender Regierungsdirektor im Bundesamt für das Personalmanagement der Bundeswehr"]} 1 +2024-09-11 09:01:15.8729 2024-09-11 09:01:15.872903 2c0a2479-181e-45e7-94b7-09c561b946a0 {"md5": "30d394000d11e2139b015555f3456c85", "pid": "1100546359", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1100546359", "source": "GND"}], "preferred_name": "Singer, Melania", "authorized_access_point": "Singer, Melania"} 1 +2024-09-11 09:01:15.924531 2024-09-11 09:01:15.924534 1177dbf8-8301-4482-9464-93490d3e2dc5 {"md5": "c7699898c0b1882ef90ae07dfbc322d7", "pid": "1100694404", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1100694404", "source": "GND"}], "date_of_birth": "1942", "date_of_death": "2011", "preferred_name": "Liebelin, François", "country_associated": "fr", "authorized_access_point": "Liebelin, François, 1942-2011", "biographical_information": ["formé à l'Ecole Pratique, membre correspondant du Centre de Recherches sur les Economies, les Sociétés, les Arts et les Techniques"]} 1 +2024-09-11 09:01:15.976542 2024-09-11 09:01:15.976546 528328e1-8e6d-4352-8440-7f3f1363e6dd {"md5": "b5e4cbf8203e61ecaf6de6b1cc32d132", "pid": "1101362081", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1101362081", "source": "GND"}], "variant_name": ["Klimatage, 10.", "Annaberg Climate Days, 10.", "10. Annaberger Klimatage 2016"], "preferred_name": "Annaberger Klimatage, 10.", "country_associated": "gw", "variant_access_point": ["Klimatage, 10., 2016, Annaberg-Buchholz", "Annaberg Climate Days, 10., 2016, Annaberg-Buchholz", "10. Annaberger Klimatage 2016"], "authorized_access_point": "Annaberger Klimatage, 10., 2016, Annaberg-Buchholz"} 1 +2024-09-11 09:01:16.030984 2024-09-11 09:01:16.030988 638d0359-fb9b-47c7-839b-4df7c281ac8b {"md5": "8f33c598d04a5d9eccfecf70ed9ada9d", "pid": "1101364238", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1101364238", "source": "GND"}], "variant_name": ["Schützenbund Lengerich"], "preferred_name": "Lengericher Schützenbund", "country_associated": "gw", "variant_access_point": ["Schützenbund Lengerich"], "date_of_establishment": "1987", "authorized_access_point": "Lengericher Schützenbund"} 1 +2024-09-11 09:01:16.096884 2024-09-11 09:01:16.096889 396d7973-42a5-4d88-a8fd-66340d535435 {"md5": "bc771fe1fdf956e0418828a5b4537fcf", "pid": "1101375183", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1101375183", "source": "GND"}], "preferred_name": "Kurfürst-Balduin-Gymnasium Münstermaifeld. Abiturjahrgang 2016", "country_associated": "gw", "authorized_access_point": "Kurfürst-Balduin-Gymnasium Münstermaifeld. Abiturjahrgang 2016"} 1 +2024-09-11 09:01:16.175421 2024-09-11 09:01:16.175425 c3fc4dbf-5ada-47d5-8197-7c689f18374e {"md5": "aaa7ee7640e4babf58ec078cd89d6334", "pid": "1101470003", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1101470003", "source": "GND"}], "preferred_name": "Confer, William", "country_associated": "xxu", "authorized_access_point": "Confer, William"} 1 +2024-09-11 09:01:16.22843 2024-09-11 09:01:16.228434 ebba603d-75f0-4a24-8149-29339d243c6c {"md5": "69177944c978a74b2fbff5e92571d34e", "pid": "1102164240", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1102164240", "source": "GND"}], "variant_name": ["Herberg, Karl Gottfried Friedrich"], "preferred_name": "Herberg, Friedrich", "country_associated": "gw", "variant_access_point": ["Herberg, Karl Gottfried Friedrich"], "authorized_access_point": "Herberg, Friedrich"} 1 +2024-09-11 09:01:16.281144 2024-09-11 09:01:16.281149 94deba5a-04b6-46d9-bc08-e265069590b9 {"md5": "d6b0e5d6b3aefd9108cb9266389419c8", "pid": "1102224820", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1102224820", "source": "GND"}], "preferred_name": "Militärpfarre 4 beim Militärkommando Niederösterreich", "country_associated": "au", "date_of_establishment": "2016", "authorized_access_point": "Militärpfarre 4 beim Militärkommando Niederösterreich. Langenlebarn"} 1 +2024-09-11 09:01:16.343712 2024-09-11 09:01:16.343715 16ba05a0-386c-4ccd-90e5-552ca4766c8c {"md5": "4d2804401b61b13ad018ee442895bf3d", "pid": "110234979", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/110234979", "source": "GND"}], "variant_name": ["Böttcher, A."], "date_of_birth": "1954", "preferred_name": "Böttcher, Albrecht", "country_associated": "gw", "variant_access_point": ["Böttcher, A., 1954-"], "authorized_access_point": "Böttcher, Albrecht, 1954-", "biographical_information": ["Tätig an der Fakultät für Mathematik, TU Chemnitz"]} 1 +2024-09-11 09:01:16.395112 2024-09-11 09:01:16.395116 193c7471-8c60-46e2-bf64-d55a72646096 {"md5": "8ca617b8188e0341b263ce685db3ac3d", "pid": "1102950661", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1102950661", "source": "GND"}], "date_of_birth": "1967", "preferred_name": "Nalbantidou, Lia", "country_associated": "gr", "authorized_access_point": "Nalbantidou, Lia, 1967-"} 1 +2024-09-11 09:01:16.449673 2024-09-11 09:01:16.449676 fcb70eb4-082a-4725-9a41-21331a373f01 {"md5": "e40531d9704e575a44d37f58c74b9d1d", "pid": "1103145347", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1103145347", "source": "GND"}], "preferred_name": "Werier, Clifford", "country_associated": "xxu", "authorized_access_point": "Werier, Clifford", "biographical_information": ["Professor of English at Mount Royal University, Canada"]} 1 +2024-09-11 09:01:16.502082 2024-09-11 09:01:16.502085 b8fd92a1-28db-4b82-9b59-4cc93162b630 {"md5": "34f3e38534cdb3e308dff282c7e81e7d", "pid": "1103471996", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1103471996", "source": "GND"}], "variant_name": ["Männergesangverein Sängerlust 1859/81 e.V. Frankfurt am Main-Sindlingen", "M.G.V. Sängerlust 1859/81 e.V. Ffm.-Sindlingen"], "preferred_name": "M.G.V. Sängerlust 1859/81 e.V. Frankfurt am Main-Sindlingen", "country_associated": "gw", "variant_access_point": ["Männergesangverein Sängerlust 1859/81 e.V. Frankfurt am Main-Sindlingen", "M.G.V. Sängerlust 1859/81 e.V. Ffm.-Sindlingen"], "authorized_access_point": "M.G.V. Sängerlust 1859/81 e.V. Frankfurt am Main-Sindlingen"} 1 +2024-09-11 09:01:16.559564 2024-09-11 09:01:16.559568 371e3e61-903c-4cd7-9960-9ebfeeaaf015 {"md5": "01ceda4284bc359ed0aba315f49f1c85", "pid": "1103491768", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1103491768", "source": "GND"}], "date_of_birth": "1985", "preferred_name": "Jeger, Silvan", "country_associated": "sz", "authorized_access_point": "Jeger, Silvan, 1985-"} 1 +2024-09-11 09:01:16.611975 2024-09-11 09:01:16.611978 6c2fc575-ef3e-4148-849f-45b08b8f6e7d {"md5": "93040ae8835670c22427d5cee4519bee", "pid": "1103855794", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1103855794", "source": "GND"}], "date_of_birth": "1988", "preferred_name": "Reed, Heida", "country_associated": "ic", "authorized_access_point": "Reed, Heida, 1988-"} 1 +2024-09-11 09:01:16.668138 2024-09-11 09:01:16.668141 140ad556-dbd8-455d-af1a-198f5d01e981 {"md5": "f86d64a4ab446c49be38230ebbf5253c", "pid": "1104130424", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1104130424", "source": "GND"}], "date_of_birth": "11.04.1908", "date_of_death": "07.09.1993", "preferred_name": "Barnefske, Hermann", "country_associated": "gw", "authorized_access_point": "Barnefske, Hermann, 1908-1993", "biographical_information": ["1947-1966 Abgeordneter im Landtag Nordrhein-Westfalen"]} 1 +2024-09-11 09:01:16.73052 2024-09-11 09:01:16.730523 9f0d3cc3-1458-4590-bc41-8fe85a789d89 {"md5": "449d002d7dccb2b064195fda91f31576", "pid": "1104279754", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1104279754", "source": "GND"}], "variant_name": ["Yang Rui", "杨, 蕤", "楊蕤", "楊, 蕤"], "date_of_birth": "1975", "preferred_name": "Yang, Rui", "country_associated": "cc", "variant_access_point": ["Yang Rui, 1975-", "杨, 蕤, 1975-", "楊蕤, 1975-", "楊, 蕤, 1975-"], "parallel_access_point": ["杨蕤, 1975-"], "authorized_access_point": "Yang, Rui, 1975-"} 1 +2024-09-11 09:01:16.808264 2024-09-11 09:01:16.808267 8f06f556-7612-442d-b31d-65ee0c11a658 {"md5": "b51100411a7ecbfec124f3e31b7914c7", "pid": "1104394499", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1104394499", "source": "GND"}], "preferred_name": "Müller, Thorsten G.", "country_associated": "gw", "authorized_access_point": "Müller, Thorsten G.", "biographical_information": ["Diss. 2002, Universität Freiburg, Fakultät für Physik"]} 1 +2024-09-11 09:01:16.864503 2024-09-11 09:01:16.864508 33e155d6-4deb-4bb6-96ad-4debc203f44b {"md5": "98c2573568fdbbb2eff614e27f6881bd", "pid": "1104971259", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1104971259", "source": "GND"}], "variant_name": ["Ichiki Tsuyuhiko", "市來津由彦", "イチキ, ツユヒコ"], "date_of_birth": "1951", "preferred_name": "Ichiki, Tsuyuhiko", "country_associated": "ja", "variant_access_point": ["Ichiki Tsuyuhiko, 1951-", "市來津由彦, 1951-", "イチキ, ツユヒコ, 1951-"], "parallel_access_point": ["市來, 津由彦, 1951-"], "authorized_access_point": "Ichiki, Tsuyuhiko, 1951-"} 1 +2024-09-11 09:01:16.917453 2024-09-11 09:01:16.917456 19b9d7cc-1570-437d-b241-2a9a0150be55 {"md5": "f0c84ed3d049bc76bdcb180d782cdcb7", "pid": "1105435075", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1105435075", "source": "GND"}], "variant_name": ["Symposium \\"Nanoscale Electrochemistry\\""], "preferred_name": "Nanoscale Electrochemistry", "country_associated": "xxu", "variant_access_point": ["Symposium \\"Nanoscale Electrochemistry\\", 2015, Phoenix, Ariz."], "authorized_access_point": "Nanoscale Electrochemistry. Veranstaltung, 2015, Phoenix, Ariz."} 1 +2024-09-11 09:01:16.969488 2024-09-11 09:01:16.96949 33c92599-ed20-4965-8693-a82ac02d6533 {"md5": "c6e4bb6777235fb17080f7386d12c9ba", "pid": "1106144244", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1106144244", "source": "GND"}], "variant_name": ["Čučalov, Sergej V.", "Čučalov, S. V.", "Чучалов, Сергей Владимирович"], "preferred_name": "Čučalov, Sergej Vladimirovič", "variant_access_point": ["Čučalov, Sergej V.", "Čučalov, S. V.", "Чучалов, Сергей Владимирович"], "authorized_access_point": "Čučalov, Sergej Vladimirovič"} 1 +2024-09-11 09:01:17.033926 2024-09-11 09:01:17.03393 e3ab529e-601f-438a-be3d-9fab1601cd88 {"md5": "44cd8e2eca07f3f6b7e0664b7778c220", "pid": "1106568257", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1106568257", "source": "GND"}], "variant_name": ["Khadilkar, S. D.", "Khadilkar, S.D.", "Khadilakara, Sri Da", "Khāḍilakara, Śrī. Dā."], "date_of_birth": "1899", "preferred_name": "Khāḍīlakara, Śrī. Dā.", "country_associated": "ii", "variant_access_point": ["Khadilkar, S. D., 1899-", "Khadilkar, S.D., 1899-", "Khadilakara, Sri Da, 1899-", "Khāḍilakara, Śrī. Dā., 1899-"], "authorized_access_point": "Khāḍīlakara, Śrī. Dā., 1899-"} 1 +2024-09-11 09:01:17.083376 2024-09-11 09:01:17.083379 f720a6d5-35b4-4683-8ef8-732a63892502 {"md5": "41882c86546373b2415c8267db9b8d6a", "pid": "110674057", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/110674057", "source": "GND"}], "variant_name": ["Giovagnoli, Allessandra"], "preferred_name": "Giovagnoli, Alessandra", "country_associated": "it", "variant_access_point": ["Giovagnoli, Allessandra"], "authorized_access_point": "Giovagnoli, Alessandra", "biographical_information": ["Professorin für Statistik am Dipartimento di Scienze Statistiche der Universität Bologna"]} 1 +2024-09-11 09:01:17.135555 2024-09-11 09:01:17.135559 7e934b73-cbee-4f7d-b5df-ae0725bb0b1d {"md5": "a215c9252cc6ae7330e24fba934605b9", "pid": "1107220025", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1107220025", "source": "GND"}], "preferred_name": "Kühn, S.", "country_associated": "gw", "authorized_access_point": "Kühn, S."} 1 +2024-09-11 09:01:17.189724 2024-09-11 09:01:17.189727 11e76ff2-2082-48a4-8560-000eb08f3a69 {"md5": "51281eb5cf14e3cb42984cde168473cc", "pid": "1108588271", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1108588271", "source": "GND"}], "date_of_birth": "21.08.1881", "preferred_name": "Heinrich, Bruno", "authorized_access_point": "Heinrich, Bruno, 1881-", "biographical_information": ["1911: am Pathologischen Institut der Königl. Tierärztlichen Hochschule in München"]} 1 +2024-09-11 09:01:17.243638 2024-09-11 09:01:17.243642 be14a0fc-dabd-4921-9dba-1ceccd0e08bb {"md5": "c386683cfff32fa5aa79d5fcf8a5c881", "pid": "1109102283", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1109102283", "source": "GND"}], "variant_name": ["Min Yang, Yong", "Yong Min, Yang", "Yang Yong Min"], "preferred_name": "Yang, Yong Min", "country_associated": "cc", "variant_access_point": ["Min Yang, Yong", "Yong Min, Yang", "Yang Yong Min"], "authorized_access_point": "Yang, Yong Min", "biographical_information": ["Laboratory of Science and Technology on Integrated Logistics Support, College of Mechatronics Engineering and Automation"]} 1 +2024-09-11 09:01:17.294803 2024-09-11 09:01:17.294808 0f5fe734-b4ae-41ed-9704-05692c45dbaa {"md5": "a684c6deec8422d3f3a41256af006ddc", "pid": "1109796900", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1109796900", "source": "GND"}], "variant_name": ["Helmle, Petra Wöbcke-"], "preferred_name": "Wöbcke-Helmle, Petra", "country_associated": "gw", "variant_access_point": ["Helmle, Petra Wöbcke-"], "authorized_access_point": "Wöbcke-Helmle, Petra", "biographical_information": ["Gründerin einer Montessori-Initiative in Hall"]} 1 +2024-09-11 09:01:20.155915 2024-09-11 09:01:20.155918 483b7c71-7223-49ee-a35e-7bf7465676db {"md5": "d606c8e2a56f9689a2e24807cf3b2a4f", "pid": "1126071935", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1126071935", "source": "GND"}], "variant_name": ["Jacob, Bernard Lortat"], "preferred_name": "Lortat-Jacob, Bernard", "variant_access_point": ["Jacob, Bernard Lortat"], "authorized_access_point": "Lortat-Jacob, Bernard"} 1 +2024-09-11 09:01:17.345769 2024-09-11 09:01:17.345772 a83aa885-35d6-4d50-a68e-c970fa7a01c4 {"md5": "15e2e3db07112974d917d719f1607156", "pid": "1109931689", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1109931689", "source": "GND"}], "variant_name": ["Bibik, V. L."], "date_of_birth": "1970", "preferred_name": "Bibik, Vladislav Leonidovič", "country_associated": "ru", "variant_access_point": ["Bibik, V. L., 1970-"], "authorized_access_point": "Bibik, Vladislav Leonidovič, 1970-"} 1 +2024-09-11 09:01:17.405768 2024-09-11 09:01:17.405771 104c5baa-95a9-4412-9dbe-c0b56139872b {"md5": "1b38113fa068aeb98a2036e11bc6ca5f", "pid": "1110040970", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1110040970", "source": "GND"}], "variant_name": ["Fey, Elizabeth la", "LeFey, Elizabeth"], "preferred_name": "Le Fey, Elizabeth", "country_associated": "xxu", "variant_access_point": ["Fey, Elizabeth la", "LeFey, Elizabeth"], "authorized_access_point": "Le Fey, Elizabeth"} 1 +2024-09-11 09:01:17.464865 2024-09-11 09:01:17.464869 0677dabc-2242-4606-b216-1adec6d42546 {"md5": "820bbc927ebd8982960bfcac3389802b", "pid": "1111133735", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1111133735", "source": "GND"}], "variant_name": ["L'Association française de recherche sur les livres et les objets culturels de l'enfance", "Afreloce"], "preferred_name": "L' Association française de recherche sur les livres et les objets culturels de l'enfance", "country_associated": "fr", "variant_access_point": ["L'Association française de recherche sur les livres et les objets culturels de l'enfance. Unveraenderte Form", "Afreloce. Abkuerzung"], "date_of_establishment": "2001", "authorized_access_point": "L' Association française de recherche sur les livres et les objets culturels de l'enfance"} 1 +2024-09-11 09:01:17.519752 2024-09-11 09:01:17.519754 6498f362-14d0-4e05-b304-1f77c50ff3c3 {"md5": "ee5b3ce7001b997a5f9ad5548475dfab", "pid": "1111902321", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1111902321", "source": "GND"}], "variant_name": ["Daland, Hilde Drivenes"], "preferred_name": "Drivenes Daland, Hilde", "country_associated": "no", "variant_access_point": ["Daland, Hilde Drivenes"], "authorized_access_point": "Drivenes Daland, Hilde", "biographical_information": ["Research librarian and research support coordinator at the University of Agder Library, Norway"]} 1 +2024-09-11 09:01:17.574135 2024-09-11 09:01:17.574139 74104c08-fd93-45f4-b230-b14183f3bd9a {"md5": "c3aec5137aa44968e752902b13a5c1b9", "pid": "1112571647", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1112571647", "source": "GND"}], "preferred_name": "Schenkel, Sonja", "country_associated": "sz", "authorized_access_point": "Schenkel, Sonja", "biographical_information": ["Lic. phil. I Univ. Zürich, 2006"]} 1 +2024-09-11 09:01:17.630521 2024-09-11 09:01:17.630524 501909b2-f50c-4dcc-ac68-416e5176eced {"md5": "9a3280111e8df2a661c33653419ec97a", "pid": "111263638", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/111263638", "source": "GND"}], "variant_name": ["Bārinto, Aguneshu"], "date_of_birth": "23.10.1922", "date_of_death": "24.10.2008", "preferred_name": "Bálint, Ágnes", "country_associated": "hu", "variant_access_point": ["Bārinto, Aguneshu, 1922-2008"], "authorized_access_point": "Bálint, Ágnes, 1922-2008", "biographical_information": ["Ungar. Kinder- und Drehbuchautorin"]} 1 +2024-09-11 09:01:17.695918 2024-09-11 09:01:17.695922 084e7d78-587d-40eb-b8d4-41aeabab4c1f {"md5": "7cfb0dc820deb4765a9a589a8a02e9b5", "pid": "1112747885", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1112747885", "source": "GND"}], "date_of_birth": "1953", "preferred_name": "Grăjdian, Vasile", "country_associated": "rm", "authorized_access_point": "Grăjdian, Vasile, 1953-", "biographical_information": ["Rumän.-orthodoxer Theologe, Universitätsprofessor und Kirchenmusiker"]} 1 +2024-09-11 09:01:17.747541 2024-09-11 09:01:17.747544 e90534df-5e4b-4a9c-bd98-63f77bf98182 {"md5": "992257a26a356004389a53e5f0d0bde7", "pid": "111303002X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/111303002X", "source": "GND"}], "preferred_name": "Institut für Energie- und Umwelttechnik. Bereich Industrielle Gemeinschaftsforschung", "country_associated": "gw", "authorized_access_point": "Institut für Energie- und Umwelttechnik. Bereich Industrielle Gemeinschaftsforschung"} 1 +2024-09-11 09:01:17.811033 2024-09-11 09:01:17.811037 a8ac5251-0559-4155-9c0e-d4fdb296eff8 {"md5": "0346efe980c8995adb0d9dd7e89d41c6", "pid": "1113214309", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1113214309", "source": "GND"}], "date_of_birth": "29.11.1907", "date_of_death": "12.08.1962", "preferred_name": "Woodforde, Christopher", "country_associated": "xxk", "authorized_access_point": "Woodforde, Christopher, 1907-1962", "biographical_information": ["Fellow and Chaplain at New College, Oxford 1948-1959, Dean of Wells 1959-1962 (Dekan)"]} 1 +2024-09-11 09:01:17.863543 2024-09-11 09:01:17.863548 943cb6b0-6935-4b4a-830a-6ed5eb64f70a {"md5": "d58d6aeda7909d77f5b8f42efb08cc12", "pid": "1114419125", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1114419125", "source": "GND"}], "preferred_name": "Sørensen, Majken Jul", "country_associated": "dk", "authorized_access_point": "Sørensen, Majken Jul", "biographical_information": ["Honorary Post-Doctoral Research Associate at the University of Wollongong, Australia and Associated Researcher at Karlstad University, Sweden. She has published on nonviolent resistance, social movements, humorous political activism, peaceful societies and female conscientious objectors."]} 1 +2024-09-11 09:01:17.917 2024-09-11 09:01:17.917002 f130bfa9-5ae4-441d-8c5e-192348b89929 {"md5": "4487f08e34d3f4104560e3bcbba7c855", "pid": "1114601357", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1114601357", "source": "GND"}], "date_of_birth": "1976", "preferred_name": "Campbell, Julieann", "country_associated": "ie", "authorized_access_point": "Campbell, Julieann, 1976-"} 1 +2024-09-11 09:01:17.968193 2024-09-11 09:01:17.968196 8948c780-f2c0-443d-a079-b83bf60ee568 {"md5": "2f81be6f80d6da6152b07c9384cdc3ca", "pid": "1114680176", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1114680176", "source": "GND"}], "preferred_name": "Noe, Elena Ariane", "country_associated": "gw", "authorized_access_point": "Noe, Elena Ariane", "biographical_information": ["Diss. FU Berlin, Fachbereich Veterinärmedizin, 2016"]} 1 +2024-09-11 09:01:18.02304 2024-09-11 09:01:18.023043 e6056695-e541-439b-98c2-26517f4876a1 {"md5": "88167f1441d9c1f4c3b0432c26cf7899", "pid": "111476518X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/111476518X", "source": "GND"}], "variant_name": ["Feuerwehr Ismaning"], "preferred_name": "Freiwillige Feuerwehr Ismaning", "country_associated": "gw", "variant_access_point": ["Feuerwehr Ismaning"], "date_of_establishment": "1869", "authorized_access_point": "Freiwillige Feuerwehr Ismaning"} 1 +2024-09-11 09:01:18.078891 2024-09-11 09:01:18.078896 dab62a1a-f2a3-4301-bcc6-3e56045b807b {"md5": "8145d684277381889ca154b02e57ae63", "pid": "1114895288", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1114895288", "source": "GND"}], "date_of_birth": "1940", "preferred_name": "Gardel, Jacques", "country_associated": "sz", "authorized_access_point": "Gardel, Jacques, 1940-", "biographical_information": ["Schweizer Regisseur und Theaterschaffender, in dem französischsprachigen, rätoromanischen Theaterbetrieb der Schweiz tätig."]} 1 +2024-09-11 09:01:18.136686 2024-09-11 09:01:18.13669 bd71bad7-197f-4162-8f77-221be593e71b {"md5": "daeacf97acc78c072082bc9f94244752", "pid": "1114895318", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1114895318", "source": "GND"}], "preferred_name": "Gros, Sabine", "country_associated": "sz", "authorized_access_point": "Gros, Sabine"} 1 +2024-09-11 09:01:18.198101 2024-09-11 09:01:18.198106 89597475-887e-4340-ba3e-bfebd8b2d0eb {"md5": "53fb82a5b7ccbdcad3e24a9f0d262508", "pid": "1115670395", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1115670395", "source": "GND"}], "preferred_name": "Goossens, Elise", "country_associated": "be", "authorized_access_point": "Goossens, Elise"} 1 +2024-09-11 09:01:18.254508 2024-09-11 09:01:18.25451 dd3f0bb8-1d5f-43c2-b8e9-a541508e9701 {"md5": "048bfc8730b4b4f73477a511f52818c6", "pid": "1116350033", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1116350033", "source": "GND"}], "variant_name": ["International Workshop on Clinical-Based Procedures: From Planning to Intervention, 5."], "preferred_name": "CLIP, 5.", "country_associated": "gr", "variant_access_point": ["International Workshop on Clinical-Based Procedures: From Planning to Intervention, 5., 2016, Athen"], "authorized_access_point": "CLIP, 5., 2016, Athen"} 1 +2024-09-11 09:01:18.307799 2024-09-11 09:01:18.307803 aa923cd4-92fc-4966-b2e2-084d38b3019c {"md5": "1620bdbcfbf1a87e9fcc68dce4540138", "pid": "1116493586", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1116493586", "source": "GND"}], "date_of_birth": "1983", "preferred_name": "Avenhaus, Ernst Henning", "authorized_access_point": "Avenhaus, Ernst Henning, 1983-"} 1 +2024-09-11 09:01:18.357753 2024-09-11 09:01:18.357756 de8a467f-bd51-494d-aca8-afc81c5afc7a {"md5": "809d7166f0f7ff2b323ea06faf8dc56a", "pid": "1116967383", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1116967383", "source": "GND"}], "variant_name": ["Sanders, Elder Oscar"], "preferred_name": "Sanders, Oscar", "variant_access_point": ["Sanders, Elder Oscar"], "authorized_access_point": "Sanders, Oscar"} 1 +2024-09-11 09:01:18.411004 2024-09-11 09:01:18.411007 a200f2b9-cb16-4e8d-8f26-f4f75746d465 {"md5": "837e90db5c2790f27c3e7cf1b18d545d", "pid": "1116977273", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1116977273", "source": "GND"}], "variant_name": ["Noskov, Gennady A.", "Noskov, Guennadi A."], "preferred_name": "Noskov, Gennadij A.", "variant_access_point": ["Noskov, Gennady A.", "Noskov, Guennadi A."], "authorized_access_point": "Noskov, Gennadij A."} 1 +2024-09-11 09:01:18.463497 2024-09-11 09:01:18.4635 26d97272-ee8a-4801-90a3-8728e336321a {"md5": "bd14f7683a95e3eb1abd6fd34c3bb666", "pid": "1116983575", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1116983575", "source": "GND"}], "variant_name": ["Aekk, Nickolai"], "preferred_name": "Ekk, Nikolaj", "variant_access_point": ["Aekk, Nickolai"], "authorized_access_point": "Ekk, Nikolaj"} 1 +2024-09-11 09:01:18.517854 2024-09-11 09:01:18.517856 764fd0ec-e1c8-4f52-b0a8-7556a769dd57 {"md5": "4949aaeb65532084f244da0cbd1a4fe0", "pid": "111715677X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/111715677X", "source": "GND"}], "variant_name": ["Lesser, Barbara Christina"], "date_of_birth": "26.02.1644", "date_of_death": "09.08.1700", "preferred_name": "Wolff, Barbara Christina", "country_associated": "gw", "variant_access_point": ["Lesser, Barbara Christina, 1644-1700"], "authorized_access_point": "Wolff, Barbara Christina, 1644-1700", "biographical_information": ["Ehefrau des Bürgers und Handwerksmeisters Andreas Wolff in Nordhausen"]} 1 +2024-09-11 09:01:18.574098 2024-09-11 09:01:18.574103 08262696-a8b1-44bc-a424-ef3eff020925 {"md5": "220526993296ec75f30bf9461d61224e", "pid": "111716151X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/111716151X", "source": "GND"}], "preferred_name": "Holke, M.", "country_associated": "gw", "authorized_access_point": "Holke, M."} 1 +2024-09-11 09:01:18.649347 2024-09-11 09:01:18.64935 45283a2b-7f89-43fe-8ac8-e259a7903279 {"md5": "d799caf2be01adea2e773e5c0448fa44", "pid": "1117731855", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1117731855", "source": "GND"}], "preferred_name": "Leahy, Tamara", "country_associated": "at", "authorized_access_point": "Leahy, Tamara", "biographical_information": ["Chied of Staff, Military and Defence Studies Program, Australian Command and Staff College ; 2011 BA of Law, Australian National UNiversity"]} 1 +2024-09-11 09:01:18.708152 2024-09-11 09:01:18.708155 82c70166-47bf-45aa-86b2-9549b4574824 {"md5": "3c91fce161e84142c549fb66fb7f0d94", "pid": "111783946X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/111783946X", "source": "GND"}], "variant_name": ["Nam, Sŏk-hyŏng", "남, 석형"], "preferred_name": "Nam, Seog Hyeong", "country_associated": "ko", "variant_access_point": ["Nam, Sŏk-hyŏng", "남, 석형"], "parallel_access_point": ["남석형"], "authorized_access_point": "Nam, Seog Hyeong"} 1 +2024-09-11 09:01:18.773715 2024-09-11 09:01:18.773717 33e75e90-2f90-4214-9d1b-c7bc6c8a8360 {"md5": "e697d0151a71a0e4e5051b149bf112b5", "pid": "111787238", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/111787238", "source": "GND"}], "date_of_birth": "1912", "date_of_death": "2001", "preferred_name": "Simon, George T.", "authorized_access_point": "Simon, George T., 1912-2001"} 1 +2024-09-11 09:01:18.83916 2024-09-11 09:01:18.839163 474c2a40-f30d-4063-9419-0c14bfba2092 {"md5": "70a533b08e8fce2c5cd8dbad0ed25d93", "pid": "1119264243", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1119264243", "source": "GND"}], "variant_name": ["Teutscher, Johanna Elisabeth"], "preferred_name": "Richter, Johanna Elisabeth", "country_associated": "gw", "variant_access_point": ["Teutscher, Johanna Elisabeth"], "authorized_access_point": "Richter, Johanna Elisabeth", "biographical_information": ["Schwester von Jonathan Teutscher und Ehefrau des Juristen Johann Tobias Richter"]} 1 +2024-09-11 09:01:18.902434 2024-09-11 09:01:18.902437 e16dcd15-caed-4dda-ad46-800b00b1d901 {"md5": "feed2a92201cc298b89a67f67cba7106", "pid": "1120447089", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1120447089", "source": "GND"}], "date_of_birth": "1987", "preferred_name": "Viola, Francesco", "country_associated": "it", "authorized_access_point": "Viola, Francesco, 1987-"} 1 +2024-09-11 09:01:18.967024 2024-09-11 09:01:18.967027 5b349864-1cf2-4a91-a8e4-05fc8910dd61 {"md5": "06234054d725c18060768fa5ae1ba790", "pid": "1120533260", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1120533260", "source": "GND"}], "preferred_name": "Grellety, Rémi", "authorized_access_point": "Grellety, Rémi"} 1 +2024-09-11 09:01:19.025576 2024-09-11 09:01:19.02558 a4e3941c-7958-4dfe-9e97-6d67d91257f3 {"md5": "cf620e5a5aab6fea03d04efb6fba4da6", "pid": "1120533929", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1120533929", "source": "GND"}], "variant_name": ["Tiedemann, M. von"], "preferred_name": "Tiedemann, Manfred von", "country_associated": "gw", "variant_access_point": ["Tiedemann, M. von"], "authorized_access_point": "Tiedemann, Manfred von"} 1 +2024-09-11 09:01:19.075755 2024-09-11 09:01:19.075759 0feda5bb-274e-49d1-bcb7-7a020b14e41a {"md5": "4031c805e840de6dd2da8a8144ad9326", "pid": "1120736277", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1120736277", "source": "GND"}], "preferred_name": "Mirzaei, Nazli", "country_associated": "ir", "authorized_access_point": "Mirzaei, Nazli", "biographical_information": ["Dissertation, Medizinische Fakultät, Ludwig-Maximilians-Universität München, 2016"]} 1 +2024-09-11 09:01:19.133142 2024-09-11 09:01:19.133146 0995719a-be95-43c3-a03e-f127a84603d0 {"md5": "f7a41daa463e52ea0bbd2c97771a35fb", "pid": "1120815401", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1120815401", "source": "GND"}], "variant_name": ["Stradner, Michael"], "preferred_name": "Stradner, Michael Alexander", "country_associated": "gw", "variant_access_point": ["Stradner, Michael"], "authorized_access_point": "Stradner, Michael Alexander", "biographical_information": ["Promotion an der Rheinisch-Westfälischen Technischen Hochschule Aachen, Fakultät für Wirtschaftswissenschaften, 2016"]} 1 +2024-09-11 09:01:19.18943 2024-09-11 09:01:19.189433 8d6e33a1-5c9c-4ed6-8589-1958f73f71c8 {"md5": "9eb30534b46adc7aeb0b9a740c6bbfb6", "pid": "1121320910", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1121320910", "source": "GND"}], "variant_name": ["Naimpally, S. A.", "Naimpally, Somashekhara Amrith", "Naimpally, Som.", "Naimpally, Somashekhara", "Naimpally, Somashekhara A."], "date_of_birth": "1931", "date_of_death": "2014", "preferred_name": "Naimpally, Somashekhara Amrita", "country_associated": "ii", "variant_access_point": ["Naimpally, S. A., 1931-2014", "Naimpally, Somashekhara Amrith, 1931-2014", "Naimpally, Som., 1931-2014", "Naimpally, Somashekhara, 1931-2014", "Naimpally, Somashekhara A., 1931-2014"], "authorized_access_point": "Naimpally, Somashekhara Amrita, 1931-2014", "biographical_information": ["\\" ... born in 1931 at Bombay has taught at several educational institutions in India and abroad ...\\""]} 1 +2024-09-11 09:01:19.244616 2024-09-11 09:01:19.24462 af686c69-a51f-46fb-8a98-f878653077d7 {"md5": "617dc7273c888d7a2d430d30676b1b24", "pid": "1121540562", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1121540562", "source": "GND"}], "variant_name": ["Kazem-Bek, M. L.", "Tolstaja, Marija Lʹvovna"], "date_of_birth": "1855", "date_of_death": "1918", "preferred_name": "Kazem-Bek, Marija Lʹvovna", "country_associated": "ru", "variant_access_point": ["Kazem-Bek, M. L., 1855-1918", "Tolstaja, Marija Lʹvovna, 1855-1918"], "authorized_access_point": "Kazem-Bek, Marija Lʹvovna, 1855-1918", "biographical_information": ["Pädagogin und Leiterin des \\"Institut blagorodnych devic\\" (Höhere Mädchenschule) in Moskau und St. Petersburg"]} 1 +2024-09-11 09:01:19.299784 2024-09-11 09:01:19.299787 657b6e6b-6a68-46df-9f3d-7136aef2e422 {"md5": "a31188288d53d5cc8fe2bd906994cbb4", "pid": "1122052537", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1122052537", "source": "GND"}], "variant_name": ["Smith, Hilrie Shelton", "Smith, H. S.", "Smith, Hilrie Shelton"], "date_of_birth": "1893", "preferred_name": "Smith, H. Shelton", "country_associated": "xxu", "variant_access_point": ["Smith, Hilrie Shelton, 1893-", "Smith, H. S., 1893-", "Smith, Hilrie Shelton, 1893-"], "authorized_access_point": "Smith, H. Shelton, 1893-"} 1 +2024-09-11 09:01:19.359568 2024-09-11 09:01:19.359572 52302c7a-6d59-4b9f-88ce-360e94dccc82 {"md5": "866ea6c7f54ff72b241c20442887457e", "pid": "1122056257", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1122056257", "source": "GND"}], "variant_name": ["Jakar, Valeria", "Zhakar, Valeria"], "preferred_name": "Žakar, Valerija", "country_associated": "ru", "variant_access_point": ["Jakar, Valeria", "Zhakar, Valeria"], "authorized_access_point": "Žakar, Valerija"} 1 +2024-09-11 09:01:19.412646 2024-09-11 09:01:19.41265 b3e8d0d2-fe8f-49a9-abf8-6752c7938bdd {"md5": "f7c7ae6e19639794088464a7b022a396", "pid": "1122060041", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1122060041", "source": "GND"}], "preferred_name": "Dubois, Dominique", "country_associated": "fr", "authorized_access_point": "Dubois, Dominique", "biographical_information": ["Univ. d'Angers"]} 1 +2024-09-11 09:01:19.477262 2024-09-11 09:01:19.477266 ff66fe0c-0ff9-4d8b-81aa-4fee454922a9 {"md5": "c6a34a2a524dbcecbabb82c265c5088b", "pid": "1122486812", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1122486812", "source": "GND"}], "date_of_birth": "ca. 20./21.Jh.", "preferred_name": "Firestein, Cecily Barth", "country_associated": "xxu", "authorized_access_point": "Firestein, Cecily Barth, ca. 20./21.Jh."} 1 +2024-09-11 09:01:19.527032 2024-09-11 09:01:19.527036 7cfc802e-9518-459d-858f-5fbe27d4e161 {"md5": "5f2e91955efe8d50af320002601ac4f0", "pid": "1122489684", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1122489684", "source": "GND"}], "variant_name": ["30. Werbewirtschaftliche Tagung in Graz, 8.-10. Juni 1983"], "preferred_name": "Werbewirtschaftliche Tagung, 30.", "country_associated": "au", "variant_access_point": ["30. Werbewirtschaftliche Tagung in Graz, 8.-10. Juni 1983"], "authorized_access_point": "Werbewirtschaftliche Tagung, 30., 1983, Graz"} 1 +2024-09-11 09:01:19.587608 2024-09-11 09:01:19.587611 12579660-e878-4ecc-93ae-d9eb2049e97a {"md5": "818f8744a79c95b704ab8e428cd65a2d", "pid": "1122490267", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1122490267", "source": "GND"}], "variant_name": ["Feldartillerie-Regiment, 51.", "51. Feldartillerie-Regiment", "2. Oberelsässisches Feldartillerie-Regiment Nr. 51"], "preferred_name": "Preußen. Preußische Armee. Feldartillerie-Regiment Nr. 51", "date_of_termination": "1919", "variant_access_point": ["Feldartillerie-Regiment, 51.. Preußen. Preußische Armee", "51. Feldartillerie-Regiment. Preußen. Preußische Armee", "2. Oberelsässisches Feldartillerie-Regiment Nr. 51. Unveraenderte Form"], "date_of_establishment": "1899", "authorized_access_point": "Preußen. Preußische Armee. Feldartillerie-Regiment Nr. 51"} 1 +2024-09-11 09:01:19.645052 2024-09-11 09:01:19.645056 8bd2bcf3-cb72-4c08-a536-6988b85dd705 {"md5": "3255d849d9b748a590a00a6ed7fd3ff1", "pid": "1123156344", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1123156344", "source": "GND"}], "variant_name": ["Lohale, Prakash A."], "preferred_name": "Lohale, Prakash Anthony", "country_associated": "ii", "variant_access_point": ["Lohale, Prakash A."], "authorized_access_point": "Lohale, Prakash Anthony", "biographical_information": ["M.A. Sociology, M.A. English Literature. - Socius of the Master of the Order for Apostolic Life. He hails from the Province of India but currently lives at Santa Sabina, Rome. - Director of the Office of Ecumenical and Interfaith Affairs, Erzbistum Toronto, ON, Kanada (2018)"]} 1 +2024-09-11 09:01:19.721517 2024-09-11 09:01:19.721521 a5e6f647-24f4-4b58-99f3-0bbc161701aa {"md5": "b6d7c7dc9d5f13711f4f35c06242f29f", "pid": "1123162263", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1123162263", "source": "GND"}], "variant_name": ["Lau, Woei Jye"], "date_of_birth": "1983", "preferred_name": "Jye, Lau Woei", "country_associated": "my", "variant_access_point": ["Lau, Woei Jye, 1983-"], "authorized_access_point": "Jye, Lau Woei, 1983-", "biographical_information": ["Currently, senior lecturer at the Faculty of Chemical and Energy Engineering (FCEE) and research fellow at the Advanced Memvrane Technology Research Centre (AMTEC), UTM."]} 1 +2024-09-11 09:01:19.774726 2024-09-11 09:01:19.774729 331cd6ee-8a6f-49b8-b03f-c9a1da12df1e {"md5": "b896fe44ea0a69c3b0df72eeb6c59ec5", "pid": "1123172706", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1123172706", "source": "GND"}], "variant_name": ["Schützle, R."], "date_of_birth": "1979", "preferred_name": "Schützle, Rainer", "country_associated": "gw", "variant_access_point": ["Schützle, R., 1979-"], "authorized_access_point": "Schützle, Rainer, 1979-", "biographical_information": ["Dissertation Universität Stuttgart 2016, Fakultät Luft- und Raumfahrttechnik und Geodäsie"]} 1 +2024-09-11 09:01:19.823938 2024-09-11 09:01:19.823941 24876832-9553-4a60-b22f-270c5b9fe8b7 {"md5": "ef919dbbaf0cf7ccd68729d0d267c4f0", "pid": "1123512752", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1123512752", "source": "GND"}], "variant_name": ["P., J. A."], "preferred_name": "J. A. P.", "country_associated": "gw", "variant_access_point": ["P., J. A."], "authorized_access_point": "J. A. P.", "biographical_information": ["Verfasser eines in Stettin gedruckten Trauergedichtes für Sophie Beate Palthen, gebohrene Coch"]} 1 +2024-09-11 09:01:19.875902 2024-09-11 09:01:19.875906 7fcfb4d8-4f2f-403b-8bbb-d2e086f9471b {"md5": "bef64147536b211265fcd07c912267df", "pid": "1123752990", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1123752990", "source": "GND"}], "preferred_name": "Prabhakar, Anuparthi John", "country_associated": "ii", "authorized_access_point": "Prabhakar, Anuparthi John"} 1 +2024-09-11 09:01:19.927336 2024-09-11 09:01:19.927339 4f209160-b152-4964-a62a-87841f8225d8 {"md5": "4955ebefe418d5a3b7eb3992ca635840", "pid": "112427748X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/112427748X", "source": "GND"}], "preferred_name": "Kurt Schild, Münzenhandlung", "authorized_access_point": "Kurt Schild, Münzenhandlung"} 1 +2024-09-11 09:01:19.980547 2024-09-11 09:01:19.980551 0f2339fc-4bbf-46ed-abe7-9407369a8a40 {"md5": "c7e6a3a09bc3a7d2876df4e77766944d", "pid": "1125914920", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1125914920", "source": "GND"}], "variant_name": ["Goswami, Tulsee Giri"], "preferred_name": "Goswami, Tulsee G.", "country_associated": "ii", "variant_access_point": ["Goswami, Tulsee Giri"], "authorized_access_point": "Goswami, Tulsee G.", "biographical_information": ["Dr. Goswami is form Central University of Rjasthan. Her core area of interest for research is Human Behavior."]} 1 +2024-09-11 09:01:20.047262 2024-09-11 09:01:20.047265 138e3fa2-166f-4a25-b572-1e7582a525f9 {"md5": "51bcfdaef28e8443d0c1238d49550a71", "pid": "1126056839", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1126056839", "source": "GND"}], "preferred_name": "Scheer, Uwe", "country_associated": "gw", "authorized_access_point": "Scheer, Uwe", "biographical_information": ["studierte Politikwissenschaft an der FAU"]} 1 +2024-09-11 09:01:20.103572 2024-09-11 09:01:20.103575 ceab4bc1-93f0-4ff6-9193-5db238fd06f4 {"md5": "f504c5ee90923f6bd7fef5f78dfcee69", "pid": "1126065013", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1126065013", "source": "GND"}], "variant_name": ["Institut für Interdisziplinäre Schulforschung", "ISF"], "preferred_name": "Universität Bremen. Institut für Interdisziplinäre Schulforschung", "country_associated": "gw", "date_of_termination": "31.10.2008", "variant_access_point": ["Institut für Interdisziplinäre Schulforschung. Universität Bremen", "ISF. Abkuerzung"], "authorized_access_point": "Universität Bremen. Institut für Interdisziplinäre Schulforschung"} 1 +2024-09-11 09:01:20.21191 2024-09-11 09:01:20.211915 18278a66-2dd8-45a9-b6d1-8eeb7c32db92 {"md5": "0538947e454dc869a3d0af6c46d29b69", "pid": "1127773151", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1127773151", "source": "GND"}], "date_of_birth": "1875", "date_of_death": "1973", "preferred_name": "Dubus, Hermin", "country_associated": "fr", "authorized_access_point": "Dubus, Hermin, 1875-1973", "biographical_information": ["Auteur de chansons et de saynètes pour les enfants"]} 1 +2024-09-11 09:01:20.273207 2024-09-11 09:01:20.27321 3ffb6fe4-84b5-4491-b006-a3dee0f1cd63 {"md5": "ff675588e44d53e899a5b422785b3668", "pid": "1129898709", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1129898709", "source": "GND"}], "date_of_birth": "1962", "preferred_name": "Rao, Pratima V.", "country_associated": "xxc", "authorized_access_point": "Rao, Pratima V., 1962-", "biographical_information": ["she holds degrees in economics, sociology, and law"]} 1 +2024-09-11 09:01:20.328348 2024-09-11 09:01:20.328352 de423c5f-bdd1-4c35-b766-6f6e0a0fe576 {"md5": "edf87aab7388fee518ba4fbab255261b", "pid": "1129905373", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1129905373", "source": "GND"}], "preferred_name": "Petrova, Irina Yurievna", "country_associated": "gw", "authorized_access_point": "Petrova, Irina Yurievna", "biographical_information": ["Diss. Univ. Hamburg 2017"]} 1 +2024-09-11 09:01:20.402102 2024-09-11 09:01:20.402104 c4ceddf2-06d6-4c4d-88bd-50555961c7ee {"md5": "a6b6b5df4d3adf57d6ca4dbf380c498d", "pid": "1130192466", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1130192466", "source": "GND"}], "variant_name": ["Baylor, Timothy Robert"], "preferred_name": "Baylor, T. Robert", "country_associated": "xxk", "variant_access_point": ["Baylor, Timothy Robert"], "authorized_access_point": "Baylor, T. Robert", "biographical_information": ["Teaching Fellow in Divinity at the University of St. Andrews"]} 1 +2024-09-11 09:01:20.455812 2024-09-11 09:01:20.455815 7c900f5b-b70a-4f94-a763-c972b7699005 {"md5": "7d71dc1b316ffaa31a3d666872675a82", "pid": "1130814122", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1130814122", "source": "GND"}], "variant_name": ["Hosseinlee, Rasoul"], "preferred_name": "Ḥusainlī, Rasūl", "country_associated": "ir", "variant_access_point": ["Hosseinlee, Rasoul"], "authorized_access_point": "Ḥusainlī, Rasūl"} 1 +2024-09-11 09:01:20.525931 2024-09-11 09:01:20.525935 18347008-9091-4fd3-9e5b-91f3cef73224 {"md5": "abf1b9be881bf02b6e2e55778ab6a9e0", "pid": "1130817318", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1130817318", "source": "GND"}], "date_of_birth": "17.03.1914", "date_of_death": "25.02.2007", "preferred_name": "Joop, Gerhard", "country_associated": "gw", "authorized_access_point": "Joop, Gerhard, 1914-2007", "biographical_information": ["War langjähriger Chefredakteur der \\"Westermanns Monatshefte\\""]} 1 +2024-09-11 09:01:20.58858 2024-09-11 09:01:20.588583 374210eb-9db9-40cd-9586-a86457de54e1 {"md5": "114072090cff7ab95ea4149a1558312a", "pid": "1131175786", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1131175786", "source": "GND"}], "preferred_name": "Gabathuler, Chloé", "country_associated": "sz", "authorized_access_point": "Gabathuler, Chloé", "biographical_information": ["\\"enseignante chercheuse en didactique du français et de la littérature\\""]} 1 +2024-09-11 09:01:20.645255 2024-09-11 09:01:20.645258 dc31f28c-4028-4432-b5f6-b6151e08c0ae {"md5": "67a54e6264cdf885d6ffda4b91f785ef", "pid": "1131199715", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1131199715", "source": "GND"}], "date_of_birth": "1982", "preferred_name": "Shandilya, Smita", "country_associated": "ii", "authorized_access_point": "Shandilya, Smita, 1982-", "biographical_information": ["Arbeitet am Sagar Institute of Research Technology & Science, India"]} 1 +2024-09-11 09:01:20.712752 2024-09-11 09:01:20.712758 cadbe581-1b3c-4ea7-b538-9d369354091b {"md5": "9a37d0120259c8b87bd66030c58a71e6", "pid": "113126262X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/113126262X", "source": "GND"}], "variant_name": ["Silva, Helena Vaz", "Vaz Silva, Helena", "Vaz da Silva, Helena"], "date_of_birth": "1966", "preferred_name": "Silva, Helena Vaz da", "country_associated": "po", "variant_access_point": ["Silva, Helena Vaz, 1966-", "Vaz Silva, Helena, 1966-", "Vaz da Silva, Helena, 1966-"], "authorized_access_point": "Silva, Helena Vaz da, 1966-"} 1 +2024-09-11 09:01:20.787492 2024-09-11 09:01:20.787497 ae11048f-5189-456b-9994-8a906b79a26f {"md5": "146404853fcca7a7b3cbb4e7ae2f81fb", "pid": "1131276868", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1131276868", "source": "GND"}], "variant_name": ["Wehrbezirkskommando Stade"], "preferred_name": "Deutsches Reich. Wehrmacht. Wehrbezirkskommando Stade", "date_of_termination": "1945", "variant_access_point": ["Wehrbezirkskommando Stade"], "authorized_access_point": "Deutsches Reich. Wehrmacht. Wehrbezirkskommando Stade"} 1 +2024-09-11 09:01:20.843555 2024-09-11 09:01:20.843559 e347027c-9574-40e1-9792-6c72c5396acf {"md5": "60b6737c3600128459f8432742389cab", "pid": "1131574338", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1131574338", "source": "GND"}], "preferred_name": "Jousjärvi, Reija", "country_associated": "fi", "authorized_access_point": "Jousjärvi, Reija"} 1 +2024-09-11 09:01:20.899191 2024-09-11 09:01:20.899196 cabdb6a8-4c8f-418b-8b3b-53048c6de134 {"md5": "2b2d28249bc4e324ec3eb321005f9cc7", "pid": "1131715187", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1131715187", "source": "GND"}], "variant_name": ["Lamm, Marianna"], "date_of_birth": "28.04.1789", "date_of_death": "06.05.1851", "preferred_name": "Mockel, Marianna", "country_associated": "gw", "variant_access_point": ["Lamm, Marianna, 1789-1851"], "authorized_access_point": "Mockel, Marianna, 1789-1851"} 1 +2024-09-11 09:01:20.951907 2024-09-11 09:01:20.95191 ba672bee-7705-4127-bffe-ea7ea1f99f31 {"md5": "0053d6dbea95be43ec661f230eeb029e", "pid": "1132157781", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1132157781", "source": "GND"}], "preferred_name": "Grundei, Sophia", "country_associated": "gw", "authorized_access_point": "Grundei, Sophia"} 1 +2024-09-11 09:01:21.005763 2024-09-11 09:01:21.005766 ebf6dd14-acaf-4e0c-82cc-16b3a9244805 {"md5": "24ca47eb808d5b7705a8af8d902a6d32", "pid": "1132540623", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1132540623", "source": "GND"}], "variant_name": ["Desai, Armaity Sapur"], "date_of_birth": "1934", "preferred_name": "Desai, Armaity S.", "country_associated": "ii", "variant_access_point": ["Desai, Armaity Sapur, 1934-"], "authorized_access_point": "Desai, Armaity S., 1934-"} 1 +2024-09-11 09:01:21.06924 2024-09-11 09:01:21.069243 380e4fc6-86f8-4b68-a5d6-01b82f69dd74 {"md5": "cfd0f2089364e90aa7dc66284182d36a", "pid": "113454228", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/113454228", "source": "GND"}], "variant_name": ["Druba, Bernd Brandes-", "Brandes, Bernd"], "date_of_birth": "1960", "preferred_name": "Brandes-Druba, Bernd", "country_associated": "gw", "variant_access_point": ["Druba, Bernd Brandes-, 1960-", "Brandes, Bernd, 1960-"], "authorized_access_point": "Brandes-Druba, Bernd, 1960-"} 1 +2024-09-11 09:01:21.120221 2024-09-11 09:01:21.120225 954b8aef-fa3b-479b-872d-3f71bdc3dc3c {"md5": "73110e91489cf5b3632953f45ff72b89", "pid": "1135284865", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1135284865", "source": "GND"}], "variant_name": ["Fachschaft Soziologie, Politologie, Sozialkunde"], "preferred_name": "Universität Regensburg. Fachschaft Soziologie, Politologie, Sozialkunde", "country_associated": "gw", "variant_access_point": ["Fachschaft Soziologie, Politologie, Sozialkunde. Universität Regensburg"], "date_of_establishment": "ca. 1970er Jahre", "authorized_access_point": "Universität Regensburg. Fachschaft Soziologie, Politologie, Sozialkunde"} 1 +2024-09-11 09:01:21.177991 2024-09-11 09:01:21.177994 c8742148-f342-4442-bbc6-6d9b02c66ce2 {"md5": "768d4c68d8022fa86bbad75fff09b022", "pid": "1135632049", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1135632049", "source": "GND"}], "variant_name": ["Marazopulos, Chr.", "Marazopulos, Ch."], "date_of_birth": "1954", "preferred_name": "Marazopulos, Chrēstos", "country_associated": "gr", "variant_access_point": ["Marazopulos, Chr., 1954-", "Marazopulos, Ch., 1954-"], "parallel_access_point": ["Μαραζόπουλος, Χρήστος, 1954-"], "authorized_access_point": "Marazopulos, Chrēstos, 1954-"} 1 +2024-09-11 09:01:21.23052 2024-09-11 09:01:21.230523 7b306471-aa80-4a6c-89ac-588f90617c4c {"md5": "3581fd1f89902aa8cda863f2df0221e3", "pid": "1135754381", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1135754381", "source": "GND"}], "variant_name": ["Markovits, Iulius I. E."], "date_of_birth": "1985", "preferred_name": "Markovits, Ioan Iulius Emilian", "country_associated": "rm", "variant_access_point": ["Markovits, Iulius I. E., 1985-"], "authorized_access_point": "Markovits, Ioan Iulius Emilian, 1985-"} 1 +2024-09-11 09:01:21.287057 2024-09-11 09:01:21.28706 63c7706e-52ae-4e76-ac92-aa7811ca6c9b {"md5": "1efa942265cf8dea67c665326b25399f", "pid": "1136441034", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1136441034", "source": "GND"}], "preferred_name": "Nordergraaf, Marijke", "authorized_access_point": "Nordergraaf, Marijke"} 1 +2024-09-11 09:01:21.337086 2024-09-11 09:01:21.337088 8a3393cc-f9de-474c-879f-e1ac8f9820b5 {"md5": "e1a1201a5cb8f049078580204e6c6734", "pid": "113660216X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/113660216X", "source": "GND"}], "date_of_birth": "11.10.1898", "date_of_death": "14.07.1970", "preferred_name": "Wopperer, Anton", "country_associated": "gw", "authorized_access_point": "Wopperer, Anton, 1898-1970", "biographical_information": ["Geschäftsführender Direktor des Deutschen Caritasverbandes Freiburg"]} 1 +2024-09-11 09:01:21.44696 2024-09-11 09:01:21.446963 00f5db54-2d08-4259-9ea3-b5112a83b484 {"md5": "18abe4fc024ec33e96a03c69353aa73c", "pid": "1137394390", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1137394390", "source": "GND"}], "preferred_name": "Meyer, Emily Dorothee", "authorized_access_point": "Meyer, Emily Dorothee", "biographical_information": ["Dissertation 2017, Albert-Ludwigs-Universität Freiburg i. Br., Medizinische Fakultät"]} 1 +2024-09-11 09:01:21.501948 2024-09-11 09:01:21.501951 f4654bfe-6b19-4faf-aec3-95de9c81b960 {"md5": "c424ed443d516e676d80fd7d32c33d31", "pid": "1137496746", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1137496746", "source": "GND"}], "variant_name": ["Schreiner, Anne Rita"], "date_of_birth": "1988", "preferred_name": "Schreiner, Anne", "country_associated": "gw", "variant_access_point": ["Schreiner, Anne Rita, 1988-"], "authorized_access_point": "Schreiner, Anne, 1988-"} 1 +2024-09-11 09:01:21.585029 2024-09-11 09:01:21.585032 2001b3b5-613c-4004-ac45-6c2a65c9dcc4 {"md5": "6b07cab629f69f29bce58ab7fb95bf67", "pid": "1137635371", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1137635371", "source": "GND"}], "variant_name": ["Sobreira Lopes, Rita"], "preferred_name": "Lopes, Rita Sobreira", "country_associated": "bl", "variant_access_point": ["Sobreira Lopes, Rita"], "authorized_access_point": "Lopes, Rita Sobreira", "biographical_information": ["PhD, Psychology, University of London ; Full prof. in developmental psychology"]} 1 +2024-09-11 09:01:21.636162 2024-09-11 09:01:21.636167 2a36e0f4-b731-4880-ba99-ba77a5b2c12e {"md5": "8125b2731d7fa18bc1d598f901b482ff", "pid": "1137723467", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1137723467", "source": "GND"}], "variant_name": ["Zarten, ... von"], "preferred_name": "Kirchbach, ... von", "country_associated": "gw", "variant_access_point": ["Zarten, ... von"], "authorized_access_point": "Kirchbach, ... von"} 1 +2024-09-11 09:01:21.690895 2024-09-11 09:01:21.690898 edb3454f-f4ee-43bf-a80f-5714720303b8 {"md5": "954c198138ea4d44144a41e3d06a754a", "pid": "1137735988", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1137735988", "source": "GND"}], "variant_name": ["Legros Georges, Danielle", "Georges, Danielle"], "date_of_birth": "1964", "preferred_name": "Georges, Danielle Legros", "country_associated": "xxu", "variant_access_point": ["Legros Georges, Danielle, 1964-", "Georges, Danielle, 1964-"], "authorized_access_point": "Georges, Danielle Legros, 1964-", "biographical_information": ["Professor in the Creative Arts in Learning Division of Lesley University, Cambridge, MA"]} 1 +2024-09-11 09:01:21.741566 2024-09-11 09:01:21.741569 c58e269f-e28e-4d3f-9b77-1ff5791f8c71 {"md5": "97154b3655b4acf2a013434d8950bdd1", "pid": "1137839392", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1137839392", "source": "GND"}], "variant_name": ["Chomutnikov, Chongor P.", "Chomutnikov, Ch. P.", "Хомутников, Хонгор Петрович"], "date_of_birth": "ca. 20./21. Jh.", "preferred_name": "Chomutnikov, Chongor Petrovič", "country_associated": "ru", "variant_access_point": ["Chomutnikov, Chongor P., ca. 20./21. Jh.", "Chomutnikov, Ch. P., ca. 20./21. Jh.", "Хомутников, Хонгор Петрович, ca. 20./21. Jh."], "authorized_access_point": "Chomutnikov, Chongor Petrovič, ca. 20./21. Jh.", "biographical_information": ["Internet, weitere Angaben, http://www.elista.org/socium/v_kalmykii_prezentovali_knigu_o_podvigah_110_okkd/"]} 1 +2024-09-11 09:01:21.794152 2024-09-11 09:01:21.794155 e6e8a03c-6ac9-482b-861a-f79dd0dd9f50 {"md5": "f2e2d76db29d7b4010fe90dffbb6a9b6", "pid": "1137872462", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1137872462", "source": "GND"}], "preferred_name": "Wegmüller, David", "country_associated": "gw", "authorized_access_point": "Wegmüller, David", "biographical_information": ["Gesundheits- und Krankenpfleger mit sozialpsychiatrischer Zusatzausbildung, Pflegemanagement BA, Abteilungsleitung in der Psychiatrie"]} 1 +2024-09-11 09:01:21.849976 2024-09-11 09:01:21.849979 145d4f29-c6cb-48da-a86b-4689f04eedb8 {"md5": "6a83a5943eaaecfe3aa79cfedaeb5f15", "pid": "1137888660", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1137888660", "source": "GND"}], "date_of_birth": "1947", "preferred_name": "Braunschweig-Ullmann, Renate", "country_associated": "gw", "authorized_access_point": "Braunschweig-Ullmann, Renate, 1947-"} 1 +2024-09-11 09:01:21.90336 2024-09-11 09:01:21.903362 a86e52df-94f3-4feb-9010-9d65df7154ab {"md5": "5191b892ec3bba114df85065a18d8843", "pid": "1138059102", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1138059102", "source": "GND"}], "variant_name": ["Miyoshi, Kusujiro", "三好楠二郎"], "preferred_name": "Miyoshi, Kusujirō", "country_associated": "ja", "variant_access_point": ["Miyoshi, Kusujiro", "三好楠二郎"], "parallel_access_point": ["三好, 楠二郎"], "authorized_access_point": "Miyoshi, Kusujirō", "biographical_information": ["Lehrtätigkeit an Colleges und Universitäten seit 1983"]} 1 +2024-09-11 09:01:21.96027 2024-09-11 09:01:21.960273 f9b1edfd-92c0-4ac2-9ed7-116e691e41e5 {"md5": "ad86172ae30b31fbe2e0da5954ccddfb", "pid": "1138213659", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1138213659", "source": "GND"}], "preferred_name": "Grueber, Abraham Christoph", "country_associated": "gw", "authorized_access_point": "Grueber, Abraham Christoph"} 1 +2024-09-11 09:01:22.024781 2024-09-11 09:01:22.024784 7485dfc5-400c-46ae-a068-a67ea946e4a5 {"md5": "ae5c37bc19943f7a306c34285ecbe7dc", "pid": "113918055X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/113918055X", "source": "GND"}], "date_of_birth": "1989", "preferred_name": "Schwärsky, Benjamin", "country_associated": "gw", "authorized_access_point": "Schwärsky, Benjamin, 1989-"} 1 +2024-09-11 09:01:22.080503 2024-09-11 09:01:22.080506 a99b65ae-1c62-47da-891a-d114d9f46d0c {"md5": "80551f3d5257b48af4c46a2b23bbe7e8", "pid": "1139311719", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1139311719", "source": "GND"}], "variant_name": ["Ingólfsdóttir, Auður H."], "date_of_birth": "1970", "preferred_name": "Auður H. Ingólfsdóttir", "country_associated": "ic", "variant_access_point": ["Ingólfsdóttir, Auður H., 1970-"], "authorized_access_point": "Auður H. Ingólfsdóttir, 1970-", "biographical_information": ["BA (International studies, University of Washington, Seattle), post graduate diploma (Professional journalism, University of Iceland), MA (International relations, Fletcher School of Law and Diplomacy, Tufts University, Boston), PhD (Universität Lappland, Rovaniemi, 2016), Assistant Professor an der Universität Bifröst (Island)"]} 1 +2024-09-11 09:01:22.134663 2024-09-11 09:01:22.134666 06517f0e-dd9b-40b4-b59c-233742f6b50a {"md5": "f1aad97aa1fd758898af85fcff9d5b48", "pid": "1139400851", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1139400851", "source": "GND"}], "date_of_birth": "1966", "preferred_name": "Lapp, Axel", "country_associated": "gw", "authorized_access_point": "Lapp, Axel, 1966-"} 1 +2024-09-11 09:01:22.195948 2024-09-11 09:01:22.195951 c017e078-6b61-46db-a694-25736e7b7231 {"md5": "9f764e69b9317bf2d3649e03bf05a7bc", "pid": "1139404660", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1139404660", "source": "GND"}], "variant_name": ["Nikolić Lakatos, Ruža", "Lakatos, Ruža Nikolić-", "Nikolic-Lakatos, Ruzsa"], "date_of_birth": "1945", "date_of_death": "2022", "preferred_name": "Nikolić-Lakatos, Ruža", "country_associated": "au", "variant_access_point": ["Nikolić Lakatos, Ruža, 1945-2022", "Lakatos, Ruža Nikolić-, 1945-2022", "Nikolic-Lakatos, Ruzsa, 1945-2022"], "authorized_access_point": "Nikolić-Lakatos, Ruža, 1945-2022", "biographical_information": ["Österr. Roma-Sängerin; Mitbegründerin der Vienna Gipsy Music School"]} 1 +2024-09-11 09:01:22.259997 2024-09-11 09:01:22.260001 5d86860f-8c36-4ae5-840e-efca6067a921 {"md5": "0aac370142e9bade20d2a6421e19e2cd", "pid": "1139496387", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1139496387", "source": "GND"}], "preferred_name": "Sinding, Knut", "country_associated": "dk", "authorized_access_point": "Sinding, Knut"} 1 +2024-09-11 09:01:22.316241 2024-09-11 09:01:22.316246 18f5c42c-b247-46b3-a976-56e112a3b119 {"md5": "4fbba2ec201d32dba3cbca6d96abbf98", "pid": "1139509292", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1139509292", "source": "GND"}], "date_of_birth": "1979", "preferred_name": "Nerlich, Alexander", "country_associated": "gw", "authorized_access_point": "Nerlich, Alexander, 1979-"} 1 +2024-09-11 09:01:23.171276 2024-09-11 09:01:23.171279 2ec6362b-1e62-4d75-bc1d-61562518403b {"md5": "0ffca6cf13872c18b418af9533ab84f6", "pid": "1141815214", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1141815214", "source": "GND"}], "preferred_name": "Judt, Paul", "country_associated": "gw", "authorized_access_point": "Judt, Paul"} 1 +2024-09-11 09:01:22.397028 2024-09-11 09:01:22.397032 bbb65dde-8024-4d55-9f56-e2b5a7f8b9f8 {"md5": "59d17c9603ba88eab2c97dcf206b5d32", "pid": "1139789902", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1139789902", "source": "GND"}], "variant_name": ["Mignaburu-Berho, Magdalena E.", "Berho, Magdalena E. Mignaburu", "Mignaburu, Magdalena"], "date_of_birth": "1955", "preferred_name": "Mignaburu Berho, Magdalena E.", "country_associated": "ag", "variant_access_point": ["Mignaburu-Berho, Magdalena E., 1955-", "Berho, Magdalena E. Mignaburu, 1955-", "Mignaburu, Magdalena, 1955-"], "authorized_access_point": "Mignaburu Berho, Magdalena E., 1955-"} 1 +2024-09-11 09:01:22.450334 2024-09-11 09:01:22.450337 9e1c903f-8f9e-486f-afd0-b3c046a02c6c {"md5": "ac5bb42c0ca5c6d65aeef6fde46bd69f", "pid": "113997981", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/113997981", "source": "GND"}], "variant_name": ["Schick, Friederike"], "date_of_birth": "1960", "preferred_name": "Schick, Friedrike", "variant_access_point": ["Schick, Friederike, 1960-"], "authorized_access_point": "Schick, Friedrike, 1960-", "biographical_information": ["Professorin am Philosophischen Semiar der Universität Tübingen"]} 1 +2024-09-11 09:01:22.50621 2024-09-11 09:01:22.506212 6b9ac591-6aee-4494-8bc0-3f881919dea2 {"md5": "e14d04d64f3db0dadafa5584366324e2", "pid": "1140050974", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1140050974", "source": "GND"}], "date_of_birth": "1970", "preferred_name": "Messerle, Anke", "country_associated": "gw", "authorized_access_point": "Messerle, Anke, 1970-", "biographical_information": ["Sozialrechtsberaterin in einer Reha-Klinik, Trainerin, Moderatorin und Mediatorin"]} 1 +2024-09-11 09:01:22.55952 2024-09-11 09:01:22.559523 2393cfa8-c8cf-44fe-9036-7f67bdf82156 {"md5": "1fd24485131e99f7d71e162fabca82c3", "pid": "1140075810", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1140075810", "source": "GND"}], "preferred_name": "Bayer, Timo", "country_associated": "gw", "authorized_access_point": "Bayer, Timo", "biographical_information": ["Wissenschaftl. Mitarbeiter am DFG-Projekt Richard Kleine, Lehrstuhl für Systemat. Theologie, Institut für Kathol. Theologie, Universität des Saarlandes"]} 1 +2024-09-11 09:01:22.620603 2024-09-11 09:01:22.620606 98ccc4ba-35c8-455f-98f3-9e3ef13ca036 {"md5": "72175f60c5fe050b4bd1e1ae42635033", "pid": "1140159526", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1140159526", "source": "GND"}], "variant_name": ["Granado Castro, Gabriel", "Castro, Gabriel Granado-", "Castro, Gabriel Granado"], "preferred_name": "Granado-Castro, Gabriel", "country_associated": "sp", "variant_access_point": ["Granado Castro, Gabriel", "Castro, Gabriel Granado-", "Castro, Gabriel Granado"], "authorized_access_point": "Granado-Castro, Gabriel"} 1 +2024-09-11 09:01:22.672768 2024-09-11 09:01:22.672771 115ddcf9-2f4f-4a92-8966-9b9ab41738ee {"md5": "b8cd11a4506af5da8c6ac239e064f6ad", "pid": "1140439618", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1140439618", "source": "GND"}], "date_of_birth": "1982", "preferred_name": "Hinojos, Mario", "country_associated": "mx", "authorized_access_point": "Hinojos, Mario, 1982-"} 1 +2024-09-11 09:01:22.734585 2024-09-11 09:01:22.734587 9c96fedf-9fa8-4b2c-ba4e-6fdb24ddb695 {"md5": "eb8fbbeabcf2245d1e1a06e51ea8d237", "pid": "114054635X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/114054635X", "source": "GND"}], "date_of_birth": "1984", "preferred_name": "Soo, Anneli", "country_associated": "er", "authorized_access_point": "Soo, Anneli, 1984-"} 1 +2024-09-11 09:01:22.794918 2024-09-11 09:01:22.794922 a92a839c-dac6-476f-b4fb-6cd0b89a33fc {"md5": "8bc13b39e697e1d19cc51db8a4d8754a", "pid": "1140557696", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1140557696", "source": "GND"}], "variant_name": ["Schimitzek, Friedrich Wilhelm"], "date_of_birth": "12.01.1892", "preferred_name": "Schimitzek, Friedrich", "country_associated": "gw", "variant_access_point": ["Schimitzek, Friedrich Wilhelm, 1892-"], "authorized_access_point": "Schimitzek, Friedrich, 1892-"} 1 +2024-09-11 09:01:22.869177 2024-09-11 09:01:22.86918 ea27ae30-02f4-414a-aa7a-9e90db57e522 {"md5": "a7fc3ccf73920e273cf2e1d196920bc9", "pid": "1140620959", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1140620959", "source": "GND"}], "date_of_birth": "1951", "preferred_name": "Rumpeltes, Raimund", "country_associated": "gw", "authorized_access_point": "Rumpeltes, Raimund, 1951-", "biographical_information": ["Ausbildungstätigkeit am Institut für Psychoanalyse Heidelberg"]} 1 +2024-09-11 09:01:22.922766 2024-09-11 09:01:22.922769 4d97449f-3dcc-4b0c-ab4b-de4b92fa0f67 {"md5": "8321220f5cbb9cd00125325b4d23b3bb", "pid": "1141185997", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1141185997", "source": "GND"}], "preferred_name": "Brückner, Lara", "country_associated": "gw", "authorized_access_point": "Brückner, Lara", "biographical_information": ["Ehemals tätig am Institut für Kommunikationswissenschaft an der Universität Hohenheim"]} 1 +2024-09-11 09:01:22.980928 2024-09-11 09:01:22.980932 a6d17605-71e5-4e60-96df-dbbf214b908c {"md5": "0c6b64dfe93ec63bbeb257b2adefdb38", "pid": "1141203960", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1141203960", "source": "GND"}], "preferred_name": "Geetha, V.", "country_associated": "ii", "authorized_access_point": "Geetha, V.", "biographical_information": ["Assistant Professor, Mannar Thirumalai Naicker College, Madurai, India"]} 1 +2024-09-11 09:01:23.051068 2024-09-11 09:01:23.051071 5b81e5dd-3c96-4b6e-9910-7adb9029a923 {"md5": "6080bec87145824ac8aacb146cfd55fe", "pid": "1141331683", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1141331683", "source": "GND"}], "preferred_name": "Pascual Planchuelo, Víctor Carlos", "country_associated": "sp", "authorized_access_point": "Pascual Planchuelo, Víctor Carlos"} 1 +2024-09-11 09:01:23.119503 2024-09-11 09:01:23.119506 08441358-8f4d-471b-85ce-827be428b046 {"md5": "ad2221d6a07b145788eb1b69868c05c9", "pid": "1141410621", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1141410621", "source": "GND"}], "variant_name": ["Geng Hongyan", "Hongyan, Geng"], "preferred_name": "Geng, Hongyan", "country_associated": "cc", "variant_access_point": ["Geng Hongyan", "Hongyan, Geng"], "authorized_access_point": "Geng, Hongyan", "biographical_information": ["School of Management, Xiʹan Jiaotong University, China"]} 1 +2024-09-11 09:01:23.224111 2024-09-11 09:01:23.224114 bd955dfd-5329-4341-b1e2-14b4cc5f51c9 {"md5": "bb22a8873952c10973b4f2e594f98feb", "pid": "1142191087", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1142191087", "source": "GND"}], "variant_name": ["Atelierausstellung des Ateliers Tom Munsteiner, 11."], "preferred_name": "Atelier Tom Munsteiner, 11.", "country_associated": "gw", "variant_access_point": ["Atelierausstellung des Ateliers Tom Munsteiner, 11., 2017, Stipshausen"], "authorized_access_point": "Atelier Tom Munsteiner. Atelierausstellung, 11., 2017, Stipshausen"} 1 +2024-09-11 09:01:23.274925 2024-09-11 09:01:23.274928 83f729ee-0135-41c5-911b-105842daf9ef {"md5": "ce43377322c9be853cfa6816344bf5b7", "pid": "11425172X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/11425172X", "source": "GND"}], "variant_name": ["Aiken, Lewis"], "date_of_birth": "1931", "preferred_name": "Aiken, Lewis R.", "country_associated": "xxu", "variant_access_point": ["Aiken, Lewis, 1931-"], "authorized_access_point": "Aiken, Lewis R., 1931-"} 1 +2024-09-11 09:01:23.336202 2024-09-11 09:01:23.336206 b717c1e2-fd3e-4cf7-8eac-25c0a9228519 {"md5": "2808588787d3e140322293f0a0e196e3", "pid": "1142566420", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1142566420", "source": "GND"}], "variant_name": ["Dominick A. Conde"], "preferred_name": "Conde, Dominick A.", "variant_access_point": ["Dominick A. Conde"], "authorized_access_point": "Conde, Dominick A.", "biographical_information": ["Laywer Litigation - Intellectual Property"]} 1 +2024-09-11 09:01:23.39015 2024-09-11 09:01:23.390153 a8ba7da4-9f6b-42b3-a23b-d9b2435e876a {"md5": "d4db05365711e073d4568bea5d45d49d", "pid": "1143061578", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1143061578", "source": "GND"}], "date_of_birth": "1917", "date_of_death": "2009", "preferred_name": "Malkin, Borys", "country_associated": "pl", "authorized_access_point": "Malkin, Borys, 1917-2009", "biographical_information": ["* 20. November 1917 in Wizebsk; † 12. August 2009 in Warschau; Anthropologe, Entomologe und Herpetologe"]} 1 +2024-09-11 09:01:23.444415 2024-09-11 09:01:23.44442 e93caf60-e367-46a3-ace0-562c218096e7 {"md5": "11d532cd32d8c2f3c9f54964c38fc031", "pid": "1143241045", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1143241045", "source": "GND"}], "preferred_name": "Brookes, James", "country_associated": "xxk", "authorized_access_point": "Brookes, James"} 1 +2024-09-11 09:01:23.500968 2024-09-11 09:01:23.500972 dfb01ba2-1e72-4b05-9740-a42caca4a5d2 {"md5": "6b143400e7327f22415ddc6976dbee96", "pid": "1143266722", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1143266722", "source": "GND"}], "variant_name": ["Richter, Regina"], "date_of_birth": "12.01.1954", "date_of_death": "22.10.2017", "preferred_name": "Gorjewa, Regina", "country_associated": "gw", "variant_access_point": ["Richter, Regina, 1954-2017"], "authorized_access_point": "Gorjewa, Regina, 1954-2017"} 1 +2024-09-11 09:01:23.553953 2024-09-11 09:01:23.553956 7495abb1-81cb-4bf2-9a1a-93450fdd3ca7 {"md5": "41d81266c29a5db506600f9b415515c2", "pid": "1143567234", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1143567234", "source": "GND"}], "preferred_name": "Davids, Barbara", "country_associated": "gw", "authorized_access_point": "Davids, Barbara"} 1 +2024-09-11 09:01:23.619051 2024-09-11 09:01:23.619054 0891ddd9-8f72-4898-b435-ad3ed26721f3 {"md5": "606c14451c99e08a8c78c8a7f33bd38f", "pid": "1143635876", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1143635876", "source": "GND"}], "preferred_name": "Ranganathan, Thiagu", "country_associated": "ii", "authorized_access_point": "Ranganathan, Thiagu"} 1 +2024-09-11 09:01:23.677527 2024-09-11 09:01:23.677531 4f871cc0-908f-4330-902b-7e4af3e281fb {"md5": "4fca22c5c2b15840c8d7b763a27e9aa8", "pid": "1144273307", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1144273307", "source": "GND"}], "preferred_name": "Chang, Mira", "country_associated": "gw", "authorized_access_point": "Chang, Mira", "biographical_information": ["Studierte Internationales Wirtschaftsrecht in Erlangen, Nürnberg und Montevideo (Uruguay), mit weiteren Stationen in La Paz (Bolivien), Quito (Ecuador) und Brüssel"]} 1 +2024-09-11 09:01:23.735052 2024-09-11 09:01:23.735055 0d208aa6-7e55-4ffd-8f1f-032bc319c116 {"md5": "070b2a19c8e6e8804d1c8aef40ebee7e", "pid": "1144301130", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1144301130", "source": "GND"}], "preferred_name": "Steinfeld, Alan", "country_associated": "xxk", "authorized_access_point": "Steinfeld, Alan"} 1 +2024-09-11 09:01:23.805589 2024-09-11 09:01:23.805592 dd7b435b-b562-4967-9fe9-4290dda2ed71 {"md5": "5fc8e9b94ee453163ab85d3f649877f1", "pid": "1144669049", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1144669049", "source": "GND"}], "variant_name": ["Arnhold, Anna-Maria"], "date_of_birth": "1918", "date_of_death": "2017", "preferred_name": "Kellen, Anna-Maria", "country_associated": "xxu", "variant_access_point": ["Arnhold, Anna-Maria, 1918-2017"], "authorized_access_point": "Kellen, Anna-Maria, 1918-2017", "biographical_information": ["amerikanische Philanthropin, Tochter des Bankiers Hans Arnhold (1888-1966), Emigration in die USA"]} 1 +2024-09-11 09:01:23.874543 2024-09-11 09:01:23.874547 3c00e58c-48ab-47d4-aaed-37e8efd1355e {"md5": "80cdd592a1f3253de1371e6b28a7d3cb", "pid": "1145344372", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1145344372", "source": "GND"}], "date_of_birth": "1945", "preferred_name": "Albuschkat, Harald", "authorized_access_point": "Albuschkat, Harald, 1945-"} 1 +2024-09-11 09:01:23.944811 2024-09-11 09:01:23.944815 98274f61-07a2-4341-9c43-8ea592fdd2d8 {"md5": "08322f41fb7f960a4ca46e486f64fd75", "pid": "1145352111", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1145352111", "source": "GND"}], "date_of_birth": "1941", "preferred_name": "Batzer, Eberhard", "authorized_access_point": "Batzer, Eberhard, 1941-"} 1 +2024-09-11 09:01:24.805021 2024-09-11 09:01:24.805024 86942e5b-36e3-4e52-b4df-2433220f1e6b {"md5": "6cbf2c0de1dfa219a45196dcbfd8442a", "pid": "1145825796", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1145825796", "source": "GND"}], "date_of_birth": "1938", "preferred_name": "Meents, Dietlind", "authorized_access_point": "Meents, Dietlind, 1938-"} 1 +2024-09-11 09:01:23.998252 2024-09-11 09:01:23.998256 fa0203c4-12e5-48c8-8a72-cf95b13db9ef {"md5": "8fd76391d5a4e2eaf9c39a53df5c6eb6", "pid": "114535601X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/114535601X", "source": "GND"}], "variant_name": ["Bhatt, Anil", "Bhatt, Anil H."], "date_of_birth": "1937", "preferred_name": "Bhatt, Anil H.", "country_associated": "ii", "variant_access_point": ["Bhatt, Anil, 1937-", "Bhatt, Anil H., 1937-"], "authorized_access_point": "Bhatt, Anil H., 1937-", "biographical_information": ["Chicago, Univ., Diss."]} 1 +2024-09-11 09:01:24.056886 2024-09-11 09:01:24.056891 6a9968ec-9f3a-41bf-8933-9bc4df515b65 {"md5": "ea266050faa312b10f25196714285d76", "pid": "1145375154", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1145375154", "source": "GND"}], "date_of_birth": "1931", "preferred_name": "Echard, William E.", "authorized_access_point": "Echard, William E., 1931-"} 1 +2024-09-11 09:01:24.136324 2024-09-11 09:01:24.136327 4d1f31b0-8346-4dc3-a885-75a00279581d {"md5": "98d1bf304e5f5a43bf8b0d29c03a3e76", "pid": "1145390439", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1145390439", "source": "GND"}], "date_of_birth": "1936", "preferred_name": "Froehner, Klaus", "authorized_access_point": "Froehner, Klaus, 1936-"} 1 +2024-09-11 09:01:24.190231 2024-09-11 09:01:24.190235 86404b13-25c8-4750-a957-a4800b51cf61 {"md5": "60550d72b32c9a48b31f8e88189e5ac3", "pid": "1145399924", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1145399924", "source": "GND"}], "date_of_birth": "1947", "preferred_name": "Graf, Arnim", "authorized_access_point": "Graf, Arnim, 1947-"} 1 +2024-09-11 09:01:24.25592 2024-09-11 09:01:24.255923 db308b38-e3bb-444b-82ea-c96ace391591 {"md5": "7a6214961239146cf326ca2022aabafc", "pid": "1145435904", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1145435904", "source": "GND"}], "variant_name": ["Keller, Robert Friedrich"], "date_of_birth": "1937", "preferred_name": "Keller, Robert F.", "variant_access_point": ["Keller, Robert Friedrich, 1937-"], "authorized_access_point": "Keller, Robert F., 1937-"} 1 +2024-09-11 09:01:24.307865 2024-09-11 09:01:24.307866 d43d55d3-bbde-42b8-9c0e-1055b155139a {"md5": "6ab00a697d2689c5fd8c2fa82dfeb226", "pid": "114546193X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/114546193X", "source": "GND"}], "date_of_birth": "1939", "preferred_name": "Littich, Manfred", "authorized_access_point": "Littich, Manfred, 1939-"} 1 +2024-09-11 09:01:24.365933 2024-09-11 09:01:24.365936 1359f9ef-5148-476d-9e80-27146e282b75 {"md5": "deef04491846ee3a93cf0d40d9b68967", "pid": "1145475299", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1145475299", "source": "GND"}], "date_of_birth": "1938", "preferred_name": "Meyer, Armand", "country_associated": "gw", "authorized_access_point": "Meyer, Armand, 1938-", "biographical_information": ["Zürich, Univ., Diss., 1972"]} 1 +2024-09-11 09:01:24.421575 2024-09-11 09:01:24.421578 d8e8afaa-f55c-478d-ab5d-bd4c83871e63 {"md5": "ee2d8dcdc9646a43c320c08449e3f049", "pid": "1145486533", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1145486533", "source": "GND"}], "variant_name": ["Nöldeke, Alexander"], "date_of_birth": "1890", "preferred_name": "Noeldeke, Alexander", "country_associated": "gw", "variant_access_point": ["Nöldeke, Alexander, 1890-"], "authorized_access_point": "Noeldeke, Alexander, 1890-", "biographical_information": ["(geb. in Karlsruhe i.B.)"]} 1 +2024-09-11 09:01:24.474187 2024-09-11 09:01:24.474189 c87aca1f-907b-4bf7-b94b-952dbf33c327 {"md5": "315d06fb14e804b0ae6b9f3377de14c4", "pid": "1145519989", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1145519989", "source": "GND"}], "date_of_birth": "1929", "preferred_name": "Schick, Frederic", "authorized_access_point": "Schick, Frederic, 1929-"} 1 +2024-09-11 09:01:24.532919 2024-09-11 09:01:24.532923 ceb5442f-e469-4520-82b5-093336c5f405 {"md5": "2ba01acbe061cadf633657a8fca94108", "pid": "1145537650", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1145537650", "source": "GND"}], "variant_name": ["Sommermann, Erhard Friedrich"], "date_of_birth": "1938", "preferred_name": "Sommermann, Friedrich", "variant_access_point": ["Sommermann, Erhard Friedrich, 1938-"], "authorized_access_point": "Sommermann, Friedrich, 1938-"} 1 +2024-09-11 09:01:24.592609 2024-09-11 09:01:24.592614 a553dec6-a4e5-4532-b6df-c38b0fa5ab70 {"md5": "ee28319ece3cd993654f5de692b923db", "pid": "1145563104", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1145563104", "source": "GND"}], "date_of_birth": "1949", "preferred_name": "Wengeler, Heinz", "authorized_access_point": "Wengeler, Heinz, 1949-"} 1 +2024-09-11 09:01:24.644247 2024-09-11 09:01:24.644251 9f91d9ee-ad20-441a-9190-37f5465e2b56 {"md5": "45de6781ec9c6cdd90d2d8112eb81b46", "pid": "1145741851", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1145741851", "source": "GND"}], "preferred_name": "Wilmink, Willem", "authorized_access_point": "Wilmink, Willem", "biographical_information": ["Schriftsteller"]} 1 +2024-09-11 09:01:24.695026 2024-09-11 09:01:24.695029 8ae691c5-94e2-448a-99b2-8c9c3f29fb77 {"md5": "66d9e107ea1d9e317d330a8e88820b10", "pid": "1145791662", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1145791662", "source": "GND"}], "date_of_birth": "1946", "preferred_name": "Deàk, Katalin", "authorized_access_point": "Deàk, Katalin, 1946-"} 1 +2024-09-11 09:01:24.753407 2024-09-11 09:01:24.75341 ed0833df-564f-4096-8dd9-2ac087643a19 {"md5": "8a2b0b67779f9ce434bdc8d797c423c3", "pid": "1145807690", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1145807690", "source": "GND"}], "variant_name": ["Kiselev, Kuz'ma Venediktovič", "Kiselev, K. V.", "Kiselev, Kuz'ma Venediktovich", "Киселев, Кузьма Венедиктович"], "date_of_birth": "1903", "preferred_name": "Kiselev, Kuz'ma V.", "variant_access_point": ["Kiselev, Kuz'ma Venediktovič, 1903-", "Kiselev, K. V., 1903-", "Kiselev, Kuz'ma Venediktovich, 1903-", "Киселев, Кузьма Венедиктович, 1903-"], "parallel_access_point": ["Киселев, Кузьма Венедиктович, 1903-"], "authorized_access_point": "Kiselev, Kuz'ma V., 1903-"} 1 +2024-09-11 09:01:24.984185 2024-09-11 09:01:24.984189 2a6998e3-2c2d-4466-acd4-5db944cac5ed {"md5": "9cb240cb47f25723b30d132edb99f250", "pid": "1145931103", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1145931103", "source": "GND"}], "variant_name": ["Blase, Frank"], "date_of_birth": "1963", "preferred_name": "Niermann, Frank", "variant_access_point": ["Blase, Frank, 1963-"], "authorized_access_point": "Niermann, Frank, 1963-"} 1 +2024-09-11 09:01:25.048244 2024-09-11 09:01:25.048247 de084f36-3f61-43bc-af7d-1393f0cc7369 {"md5": "b25fd5524898cc0fe394a237cf714933", "pid": "1145959857", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1145959857", "source": "GND"}], "date_of_birth": "1888", "preferred_name": "Bendfeldt, Franz", "country_associated": "gw", "authorized_access_point": "Bendfeldt, Franz, 1888-"} 1 +2024-09-11 09:01:25.100576 2024-09-11 09:01:25.100579 8d541e28-52ad-4c48-8350-fa256ba3f93d {"md5": "f1e8bc2661863421880f2f75f9292699", "pid": "1146015976", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146015976", "source": "GND"}], "date_of_birth": "1888", "preferred_name": "Hohenberger, Adam", "country_associated": "gw", "authorized_access_point": "Hohenberger, Adam, 1888-"} 1 +2024-09-11 09:01:25.159254 2024-09-11 09:01:25.159258 08d1fd13-9bec-42ef-9e00-e4fb906072dc {"md5": "4ddb03c1b8aa2c85511b83698491c8c1", "pid": "114606151X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/114606151X", "source": "GND"}], "date_of_birth": "1934", "preferred_name": "Bergsma, Jurrit", "authorized_access_point": "Bergsma, Jurrit, 1934-"} 1 +2024-09-11 09:01:25.210384 2024-09-11 09:01:25.210388 cde187b0-7c2d-4c5a-b3e8-95fcb07dbb70 {"md5": "89d98ee607d37b225de262c97e95a226", "pid": "1146063067", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146063067", "source": "GND"}], "variant_name": ["Mokashi, J. B."], "date_of_birth": "1912", "preferred_name": "Mokashi, Jayaram Balkrishna", "variant_access_point": ["Mokashi, J. B., 1912-"], "parallel_access_point": ["Mokashi, J. B., 1912-"], "authorized_access_point": "Mokashi, Jayaram Balkrishna, 1912-"} 1 +2024-09-11 09:01:25.293413 2024-09-11 09:01:25.293416 3cfe7c97-8208-4c2d-88d0-1782a0a863f4 {"md5": "af8b20cac3b0b4b0b56807111e9aef42", "pid": "1146079567", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146079567", "source": "GND"}], "variant_name": ["Raschdorf, Eveline"], "date_of_birth": "1950", "preferred_name": "Raschdorf, Evelin", "variant_access_point": ["Raschdorf, Eveline, 1950-"], "authorized_access_point": "Raschdorf, Evelin, 1950-"} 1 +2024-09-11 09:01:25.351436 2024-09-11 09:01:25.351439 bbd36f63-f067-45b8-ab0c-304e5a7b941e {"md5": "0bd2089c671695b872a0f778fe23a290", "pid": "1146080271", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146080271", "source": "GND"}], "date_of_birth": "11.08.1874", "date_of_death": "XX.XX.19XX", "preferred_name": "Hercher, Ludwig", "authorized_access_point": "Hercher, Ludwig, 1874-", "biographical_information": ["Oberbaurat in Düsseldorf"]} 1 +2024-09-11 09:01:25.40618 2024-09-11 09:01:25.406184 8c017108-b856-48b8-803e-5cd85f5a1a78 {"md5": "01aea7323d404ee7beb3e81fcd1571df", "pid": "1146220359", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146220359", "source": "GND"}], "date_of_birth": "1937", "preferred_name": "Khalil, Essam", "authorized_access_point": "Khalil, Essam, 1937-"} 1 +2024-09-11 09:01:25.472485 2024-09-11 09:01:25.472488 f01822c0-5c80-4c98-925d-2448951c677a {"md5": "e104af4bcfe8c14bb601b492eb475eaa", "pid": "1146337116", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146337116", "source": "GND"}], "variant_name": ["Carpentier, Louis-Laurent", "Carpentier, Laurent"], "date_of_birth": "1968", "preferred_name": "Laurent", "variant_access_point": ["Carpentier, Louis-Laurent, 1968-", "Carpentier, Laurent, 1968-"], "authorized_access_point": "Laurent, 1968-", "biographical_information": ["belg. Comiczeichner und Colorist"]} 1 +2024-09-11 09:01:25.531514 2024-09-11 09:01:25.531517 56384f06-8a38-47b8-bcfa-9f8c42c6d81b {"md5": "abcc16565c8a96032a3e9472e72e4710", "pid": "1146355181", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146355181", "source": "GND"}], "date_of_birth": "1943", "preferred_name": "Berger, Michael L.", "authorized_access_point": "Berger, Michael L., 1943-"} 1 +2024-09-11 09:01:25.588047 2024-09-11 09:01:25.58805 4c1c47f0-419b-4a9f-a62c-d6972aeab72b {"md5": "e29aacfe3448e884d509d5195e26c499", "pid": "1146397208", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146397208", "source": "GND"}], "preferred_name": "Florentz, Didier", "authorized_access_point": "Florentz, Didier", "biographical_information": ["franz. Colorist"]} 1 +2024-09-11 09:01:25.644374 2024-09-11 09:01:25.644378 2e4f84dd-fcdc-4af4-9614-340972a32f64 {"md5": "c8bcb55b6823a1e3fe32ef4d519eaaa9", "pid": "1146403054", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146403054", "source": "GND"}], "date_of_birth": "1962", "preferred_name": "Hoppe, Albrecht", "country_associated": "gw", "authorized_access_point": "Hoppe, Albrecht, 1962-"} 1 +2024-09-11 09:01:25.697576 2024-09-11 09:01:25.697579 45ff7cfb-3a1f-42de-982f-9434e76a4f5c {"md5": "f0d23a865c3243cf5d46c0040b5bc6d9", "pid": "1146418345", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146418345", "source": "GND"}], "preferred_name": "Deshpande, Kusum", "authorized_access_point": "Deshpande, Kusum", "biographical_information": ["editorial board of Maitri, the Hindu monthly, closely associated with Achary Vinoba Bhave"]} 1 +2024-09-11 09:01:25.752657 2024-09-11 09:01:25.75266 f8912739-3a04-407a-b276-b6574ff84448 {"md5": "47474294690d5b62b00eed3cd06a3efc", "pid": "1146538235", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146538235", "source": "GND"}], "preferred_name": "Selig, Joachim", "authorized_access_point": "Selig, Joachim", "biographical_information": ["Wirtschaftswissenschaftler", "Ulm, Universität: Fak. für Mathematik und Wirtschaftswissenschaften / Abt. Optimierung und Operations Research (Diplomarbeit 2003)"]} 1 +2024-09-11 09:01:26.814272 2024-09-11 09:01:26.814275 0b73999e-323f-49e2-a2de-164f45dc8800 {"md5": "552519595f6caf0ecc3bfaee8a3d9a13", "pid": "1146987935", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146987935", "source": "GND"}], "preferred_name": "Biermann, Vera", "authorized_access_point": "Biermann, Vera", "biographical_information": ["Diss. 2006, TU Berlin"]} 1 +2024-09-11 09:01:25.804531 2024-09-11 09:01:25.804534 c3ad3e9b-1e36-4d05-bc33-dd760d12ed73 {"md5": "bef8df2379ba3861c9c7a133ff1ef39f", "pid": "1146539045", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146539045", "source": "GND"}], "variant_name": ["Padmanabhan, S."], "date_of_birth": "1940", "preferred_name": "Padmanabhan, Sundararajan", "variant_access_point": ["Padmanabhan, S., 1940-"], "authorized_access_point": "Padmanabhan, Sundararajan, 1940-", "biographical_information": ["General; Former Chief of the Army Staff, India"]} 1 +2024-09-11 09:01:25.856599 2024-09-11 09:01:25.856604 83e7e135-f12d-45cc-ba0f-2a8ad2e08e0a {"md5": "f7480d67e1f6d259bf113bbad0e0b872", "pid": "1146539355", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146539355", "source": "GND"}], "preferred_name": "Breidbach, Michael", "authorized_access_point": "Breidbach, Michael", "biographical_information": ["Physiker", "geb. in Leverkusen, Diss. Köln 2004"]} 1 +2024-09-11 09:01:25.921305 2024-09-11 09:01:25.921308 91283a89-776e-4747-bd83-bdd12b227768 {"md5": "8c1db469b4309ba929b3a9c70112fd4d", "pid": "1146540825", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146540825", "source": "GND"}], "date_of_birth": "1939", "preferred_name": "Magerl, Wolfram", "authorized_access_point": "Magerl, Wolfram, 1939-"} 1 +2024-09-11 09:01:25.976486 2024-09-11 09:01:25.976491 c58d5bd2-a413-457a-82b6-f6ae66b0009c {"md5": "a66d80b291fc4cd7f0a158010ba5071b", "pid": "1146583117", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146583117", "source": "GND"}], "variant_name": ["Bessonova, A. M.", "Bessonova, Anastasija Michajlovna"], "date_of_birth": "1917", "date_of_death": "2001", "preferred_name": "Bessonova, Anastasija M.", "variant_access_point": ["Bessonova, A. M., 1917-2001", "Bessonova, Anastasija Michajlovna, 1917-2001"], "authorized_access_point": "Bessonova, Anastasija M., 1917-2001"} 1 +2024-09-11 09:01:26.047535 2024-09-11 09:01:26.047538 f4fcb9eb-efd1-4e00-bcb7-ef4bda7059cf {"md5": "e76e6ab809497751d8906007420fdbda", "pid": "1146702809", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146702809", "source": "GND"}], "preferred_name": "Noe, Julie", "authorized_access_point": "Noe, Julie", "biographical_information": ["Zeichenlehrerin der Frauenarbeitsschule in Karlsruhe"]} 1 +2024-09-11 09:01:26.120823 2024-09-11 09:01:26.120827 c01dc1c3-f2df-495e-bf08-c46128d7e8cd {"md5": "b285ddb151c32af6f43da2514e4f4b69", "pid": "1146703015", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146703015", "source": "GND"}], "date_of_birth": "1948", "preferred_name": "Owens, Elizabeth", "authorized_access_point": "Owens, Elizabeth, 1948-"} 1 +2024-09-11 09:01:26.182237 2024-09-11 09:01:26.18224 feb110d8-3cf9-46e3-acd6-8715a4bd5ac3 {"md5": "968080bd1ce9234c219f29767e468cdf", "pid": "1146715056", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146715056", "source": "GND"}], "date_of_birth": "1932", "preferred_name": "Röhlig, Siegfried", "authorized_access_point": "Röhlig, Siegfried, 1932-"} 1 +2024-09-11 09:01:26.239166 2024-09-11 09:01:26.239169 7466c985-f759-4acb-bedb-af2d2ac5b179 {"md5": "0ac5fd197a2e9b75fed0be7d9bf95908", "pid": "1146716346", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146716346", "source": "GND"}], "date_of_birth": "1914", "preferred_name": "Petermann, Robert", "authorized_access_point": "Petermann, Robert, 1914-"} 1 +2024-09-11 09:01:26.308697 2024-09-11 09:01:26.308701 0f5263d4-b494-4430-9cbf-22e5bba1730b {"md5": "f9de8ffb6d8623b13da7501915c00ba3", "pid": "1146716648", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146716648", "source": "GND"}], "date_of_birth": "1939", "preferred_name": "Hennies, Traute", "authorized_access_point": "Hennies, Traute, 1939-"} 1 +2024-09-11 09:01:26.36653 2024-09-11 09:01:26.366533 52b919fc-2071-4fcc-8bce-9e0658dd568d {"md5": "84ba1be1e893393649c845a6b1bb84dc", "pid": "1146776039", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146776039", "source": "GND"}], "date_of_birth": "Esq.", "preferred_name": "Lidwill, George", "authorized_access_point": "Lidwill, George, Esq.-"} 1 +2024-09-11 09:01:26.439442 2024-09-11 09:01:26.439446 774328a1-137e-48c7-86d9-389155b80916 {"md5": "c5be954c94dabd5c400694ecfcf2a70e", "pid": "1146781075", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146781075", "source": "GND"}], "date_of_birth": "1934", "preferred_name": "Iseke, Horst-Werner", "authorized_access_point": "Iseke, Horst-Werner, 1934-"} 1 +2024-09-11 09:01:26.504348 2024-09-11 09:01:26.504351 95e30440-836a-4887-8fc8-805928ebe8b8 {"md5": "ff73b4bb0d1747b75c20c8fb074c97ee", "pid": "1146794703", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146794703", "source": "GND"}], "date_of_birth": "1922", "preferred_name": "Fregly, Bert", "authorized_access_point": "Fregly, Bert, 1922-"} 1 +2024-09-11 09:01:26.577055 2024-09-11 09:01:26.577059 01cdaf67-115a-40ee-af79-380358de9908 {"md5": "af19ca6e4c853d601eb9a72796d33285", "pid": "1146797974", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146797974", "source": "GND"}], "preferred_name": "Gayer, Siegmund", "authorized_access_point": "Gayer, Siegmund", "biographical_information": ["Gymnasialassistent"]} 1 +2024-09-11 09:01:26.634004 2024-09-11 09:01:26.634007 01988955-5091-4ec8-85c8-b858fd877bd9 {"md5": "b88605e90d819fe350627963f6b2c21c", "pid": "1146820763", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146820763", "source": "GND"}], "date_of_birth": "1927", "preferred_name": "Paulsen, Günter", "authorized_access_point": "Paulsen, Günter, 1927-"} 1 +2024-09-11 09:01:26.69029 2024-09-11 09:01:26.690293 1cc93cb1-ffc3-4ef0-beef-360b479dfec9 {"md5": "2b5a834c82ec6b36624f0a2320d03361", "pid": "1146911882", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146911882", "source": "GND"}], "date_of_birth": "1914", "preferred_name": "Bijoux, Rober", "authorized_access_point": "Bijoux, Rober, 1914-"} 1 +2024-09-11 09:01:26.756505 2024-09-11 09:01:26.756508 0c58b185-368e-4db6-bbc4-ff116a51d981 {"md5": "51677e71dcb955a735e687fd81616b9f", "pid": "1146958730", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1146958730", "source": "GND"}], "date_of_birth": "1914", "preferred_name": "Grigny, Robert-Georges-Charles-François", "authorized_access_point": "Grigny, Robert-Georges-Charles-François, 1914-"} 1 +2024-09-11 09:01:26.872149 2024-09-11 09:01:26.872153 dcc3512b-6742-4b92-9fca-089bdb74c8bb {"md5": "3ee549a9da977eab1c80cc92be62a473", "pid": "1147003505", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1147003505", "source": "GND"}], "variant_name": ["Oberle, M."], "preferred_name": "Oberle, Markus", "country_associated": "gw", "variant_access_point": ["Oberle, M."], "authorized_access_point": "Oberle, Markus", "biographical_information": ["Diplomand, Hochschule Offenburg 2007"]} 1 +2024-09-11 09:01:26.923951 2024-09-11 09:01:26.923954 92c25e86-05b6-43ba-a651-c7383675853c {"md5": "a08ad0736e1d2221d729944ed54175fe", "pid": "1147011087", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1147011087", "source": "GND"}], "preferred_name": "Hofmeyer, N. G.", "authorized_access_point": "Hofmeyer, N. G."} 1 +2024-09-11 09:01:26.974113 2024-09-11 09:01:26.974115 fd265b69-a5c5-44c4-b1c3-ae9947b53cca {"md5": "306929d3afa5aade2201dd2890c50ee8", "pid": "1147058938", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1147058938", "source": "GND"}], "date_of_birth": "1896", "preferred_name": "Hill, Benjamin Harvey", "authorized_access_point": "Hill, Benjamin Harvey, 1896-"} 1 +2024-09-11 09:01:27.031309 2024-09-11 09:01:27.031313 77ae5cf9-9f03-4318-9253-39c7d02d0651 {"md5": "e6299aeba2d8b05e87516e30dd1f4e42", "pid": "1147073120", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1147073120", "source": "GND"}], "date_of_birth": "1908", "preferred_name": "Deburge, Albert-François", "authorized_access_point": "Deburge, Albert-François, 1908-"} 1 +2024-09-11 09:01:27.09647 2024-09-11 09:01:27.096473 d61fe993-c3d3-4a4f-bb0a-a5ccd0da8f7a {"md5": "3f81204db4da783f581f69743226cffd", "pid": "1147082367", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1147082367", "source": "GND"}], "date_of_birth": "1901", "preferred_name": "Kovacs, Georges", "authorized_access_point": "Kovacs, Georges, 1901-"} 1 +2024-09-11 09:01:27.164993 2024-09-11 09:01:27.164997 fdd6f9ef-b4fe-49f3-9d63-231f10bcb318 {"md5": "59e2626cd40f29742beadb26f4c959cb", "pid": "1147083045", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1147083045", "source": "GND"}], "date_of_birth": "1904", "preferred_name": "Lichtenberg, Dolphy", "authorized_access_point": "Lichtenberg, Dolphy, 1904-"} 1 +2024-09-11 09:01:27.217694 2024-09-11 09:01:27.217697 598a9b17-82d7-4ab3-a02f-3343bd1e7abb {"md5": "718cce524a5d1abeac0196eda84612bb", "pid": "1147127794", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1147127794", "source": "GND"}], "variant_name": ["Nārāyaṇadeva, Gajapati", "Nārāyaṇa"], "preferred_name": "Nārāyaṇadeva", "variant_access_point": ["Nārāyaṇadeva, Gajapati", "Nārāyaṇa"], "authorized_access_point": "Nārāyaṇadeva", "biographical_information": ["King Gajapati Nārāyaṇadeva of Parlakimidi in Orissa; learnt music from Kaviratna Puruṣottama and the result of his study is embodied in his work Saṅgītanārāyaṇa"]} 1 +2024-09-11 09:01:27.275634 2024-09-11 09:01:27.275639 68ff4991-6321-4a58-bafa-14cac5de9d25 {"md5": "533daa83a58a7f69fc60ccbbd2e54168", "pid": "1147132976", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1147132976", "source": "GND"}], "date_of_birth": "1980", "preferred_name": "Rangel, Ulrike", "authorized_access_point": "Rangel, Ulrike, 1980-", "biographical_information": ["Dipl.-Psychologin; Diss. Sozialwiss., Univ. Mannheim, 2009"]} 1 +2024-09-11 09:01:27.331376 2024-09-11 09:01:27.33138 e016b4c8-70f5-4aca-8ecf-df3b3bd358fb {"md5": "6e181627ed6d1c6b61aabbffca8f144e", "pid": "1147141754", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1147141754", "source": "GND"}], "variant_name": ["Gandhi, Nighat"], "preferred_name": "Gandhi, Nighat M.", "country_associated": "ii", "variant_access_point": ["Gandhi, Nighat"], "authorized_access_point": "Gandhi, Nighat M.", "biographical_information": ["Writer & professional mental health counselor; spent her formative yrs. in Dhaka and Karachi; studied in USA; presently resides in Allahabad & writes for Indian and Pakistani newspapers"]} 1 +2024-09-11 09:01:27.40009 2024-09-11 09:01:27.400093 fcd54abd-7323-4be9-b4df-82a1732c9b5e {"md5": "b5b984e985eda6eb7ad5089d253b8762", "pid": "1147150567", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1147150567", "source": "GND"}], "preferred_name": "Jafferali, Rafaël", "country_associated": "be", "authorized_access_point": "Jafferali, Rafaël"} 1 +2024-09-11 09:01:27.474623 2024-09-11 09:01:27.474625 cbf72b75-47cd-4529-ab1f-df61edde5270 {"md5": "d7ec97a802995a5c15711b9aa6319dc4", "pid": "1147173680", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1147173680", "source": "GND"}], "variant_name": ["McInnes, Jim"], "preferred_name": "MacInnes, Jim", "variant_access_point": ["McInnes, Jim"], "authorized_access_point": "MacInnes, Jim", "biographical_information": ["Teaching assistant, School of Theology and School of Mission and Ministry, Laidlaw College (2010)"]} 1 +2024-09-11 09:01:27.523397 2024-09-11 09:01:27.523401 7b419e81-2f45-4048-bbd4-f25d73748e8e {"md5": "ea06fc16b10707f94bec1b4728b354c4", "pid": "114720117X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/114720117X", "source": "GND"}], "preferred_name": "White, John R.", "authorized_access_point": "White, John R.", "biographical_information": ["Associate professor in the Department of Philosophy, Franciscan University of Steubenville, Ohio"]} 1 +2024-09-11 09:01:27.574729 2024-09-11 09:01:27.574733 c77a4caa-7960-4800-ba6a-bd91fa1cc301 {"md5": "c620532abf5e7992a14a67a507634e4b", "pid": "1147319049", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1147319049", "source": "GND"}], "preferred_name": "Gberie, Lansana", "country_associated": "et", "authorized_access_point": "Gberie, Lansana"} 1 +2024-09-11 09:01:27.64448 2024-09-11 09:01:27.644484 9ceab227-c0ca-4ec3-a469-834e8351611b {"md5": "5a8fa9b597545302978fb4f1aead4108", "pid": "1147429472", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1147429472", "source": "GND"}], "preferred_name": "Krüger, Oliver", "country_associated": "gw", "authorized_access_point": "Krüger, Oliver", "biographical_information": ["Promotion 2016, Universität Hamburg, Fachbereich Philosophie", "arbeitet als wiss. Mitarbeiter für Ethik und Sozialwissenschaften an der Medical School Hamburg"]} 1 +2024-09-11 09:01:27.712983 2024-09-11 09:01:27.712986 91f72209-af94-4859-9ce7-4c314b293939 {"md5": "9e78d9d265f5778f5bc5af101b2b8a30", "pid": "1147614709", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1147614709", "source": "GND"}], "date_of_birth": "1975", "preferred_name": "Zenker, Thomas", "country_associated": "gw", "authorized_access_point": "Zenker, Thomas, 1975-", "biographical_information": ["seit 2015 Oberbürgermeister von Zittau"]} 1 +2024-09-11 09:01:27.777196 2024-09-11 09:01:27.777198 73008ebb-f0d3-46e7-aa76-81958fd81dcb {"md5": "587f97b11ffe4e944971dfc5dbb2230e", "pid": "1147649642", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1147649642", "source": "GND"}], "variant_name": ["Feng, Wang", "Wang Feng"], "preferred_name": "Wang, Feng", "country_associated": "cc", "variant_access_point": ["Feng, Wang", "Wang Feng"], "authorized_access_point": "Wang, Feng"} 1 +2024-09-11 09:01:27.845057 2024-09-11 09:01:27.845059 27e0591f-7d5b-4bb3-ae67-7fec80c61e95 {"md5": "a5ccecefcfee09fa74fe3a4ce1a4a05d", "pid": "1147777713", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1147777713", "source": "GND"}], "variant_name": ["Allbrecht, Lillie Vanderveer", "Albrecht, Lillie", "Albrecht, Lilli V."], "date_of_birth": "02.01.1894", "date_of_death": "04.10.1985", "preferred_name": "Albrecht, Lilli Vanderveer", "country_associated": "xxu", "variant_access_point": ["Allbrecht, Lillie Vanderveer, 1894-1985", "Albrecht, Lillie, 1894-1985", "Albrecht, Lilli V., 1894-1985"], "authorized_access_point": "Albrecht, Lilli Vanderveer, 1894-1985"} 1 +2024-09-11 09:01:27.90858 2024-09-11 09:01:27.908585 939482ef-32e0-496d-a804-900efff7c2d9 {"md5": "b8dcdcc494eda6189871c36757cf09d5", "pid": "1148121404", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1148121404", "source": "GND"}], "variant_name": ["Don Ralke & His Orchestra"], "preferred_name": "Don Ralke Orchestra", "country_associated": "xxu", "variant_access_point": ["Don Ralke & His Orchestra"], "authorized_access_point": "Don Ralke Orchestra"} 1 +2024-09-11 09:01:27.970112 2024-09-11 09:01:27.970115 697a5328-4093-41ba-bfd3-c9089053e613 {"md5": "2ef8c76f3ee493d467bdb183a014239e", "pid": "1148473181", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1148473181", "source": "GND"}], "variant_name": ["Thoorens, E. J."], "date_of_birth": "1883", "date_of_death": "1953", "preferred_name": "Thoorens, Emile", "country_associated": "be", "variant_access_point": ["Thoorens, E. J., 1883-1953"], "authorized_access_point": "Thoorens, Emile, 1883-1953", "biographical_information": ["Zeichner, Grafiker, Lithograph; vierter Sohn des Grafikers Joseph Jean Thoorens (1850-1926); J. J. Thoorens betrieb um 1900 in Paris das Atelier Thoorens, das später vom ältesten Sohn Charles übernommen wurde, Emile arbeitete als Lithograph im väterlichen Betrieb"]} 1 +2024-09-11 09:01:28.027044 2024-09-11 09:01:28.027049 a1388fc5-2778-4667-9a84-7e0cd2187d9e {"md5": "3efd989ca850b755f0c14c88d249a179", "pid": "1148667989", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1148667989", "source": "GND"}], "variant_name": ["Schriver, Randall", "Schriver, Randy"], "preferred_name": "Schriver, Randall G.", "country_associated": "xxu", "variant_access_point": ["Schriver, Randall", "Schriver, Randy"], "authorized_access_point": "Schriver, Randall G.", "biographical_information": ["Beziehungen Taiwan-USA, Beziehungen USA-Asien, Verteidigungs-/Sicherheitspolitik"]} 1 +2024-09-11 09:01:28.08645 2024-09-11 09:01:28.086454 f971efe8-9088-4d6f-9e7f-f42c0f64e588 {"md5": "311e817bc840099959b117b854a73d4c", "pid": "1148992316", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1148992316", "source": "GND"}], "variant_name": ["Abdulkarim Abdullah Almamary"], "preferred_name": "Almamary, Abdulkraim Abdullah", "country_associated": "my", "variant_access_point": ["Abdulkarim Abdullah Almamary"], "authorized_access_point": "Almamary, Abdulkraim Abdullah", "biographical_information": ["Department of Business Administration, Open University Malaysia, Kuala Lumpur, Malaysia"]} 1 +2024-09-11 09:01:28.141758 2024-09-11 09:01:28.14176 42901796-0976-4169-821d-6561b652f455 {"md5": "a8e084cd3c310b0deddb1b1db0e1bda5", "pid": "1149000910", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1149000910", "source": "GND"}], "preferred_name": "Frankfurt-Höchst. Bürgeramt", "country_associated": "gw", "authorized_access_point": "Frankfurt-Höchst. Bürgeramt"} 1 +2024-09-11 09:01:28.20065 2024-09-11 09:01:28.200653 848986be-cd8b-4fe9-a792-aa4cfc381586 {"md5": "25c6a3f5b4e9780ae34053ab4fa29952", "pid": "1149077050", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1149077050", "source": "GND"}], "variant_name": ["Moisy, Fritz Gandenberger von"], "date_of_birth": "14.07.1891", "preferred_name": "Gandenberger von Moisy, Fritz", "country_associated": "gw", "variant_access_point": ["Moisy, Fritz Gandenberger von, 1891-"], "authorized_access_point": "Gandenberger von Moisy, Fritz, 1891-"} 1 +2024-09-11 09:01:28.252651 2024-09-11 09:01:28.252653 04783bbc-4177-4a1a-9a00-75218f61210b {"md5": "d17934b9f11a33dd000b9954e18bf3d9", "pid": "1149382090", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1149382090", "source": "GND"}], "variant_name": ["Brix Jacobsen, Louise"], "preferred_name": "Jacobsen, Louise Brix", "country_associated": "dk", "variant_access_point": ["Brix Jacobsen, Louise"], "authorized_access_point": "Jacobsen, Louise Brix"} 1 +2024-09-11 09:01:28.306469 2024-09-11 09:01:28.306472 3875a5b7-e463-43ea-8509-6ffaef719fb4 {"md5": "de8ea87095b9b7b9a7b29875709e3d1d", "pid": "115024397X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/115024397X", "source": "GND"}], "variant_name": ["Bau Hazzat"], "preferred_name": "BauHazzat", "country_associated": "io", "variant_access_point": ["Bau Hazzat"], "authorized_access_point": "BauHazzat"} 1 +2024-09-11 09:01:28.35939 2024-09-11 09:01:28.359393 3eb07bbd-1a32-4944-b364-54235e0fbf0b {"md5": "ebec511d14e1a0d536d319aa421b9862", "pid": "1150721626", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1150721626", "source": "GND"}], "variant_name": ["Nusbaum, Bernhard"], "preferred_name": "Nusbaum, Bernhardus", "country_associated": "gw", "variant_access_point": ["Nusbaum, Bernhard"], "authorized_access_point": "Nusbaum, Bernhardus", "biographical_information": ["Buchbesitz theologisches Konvolut 1529"]} 1 +2024-09-11 09:01:28.473646 2024-09-11 09:01:28.473648 350586e8-685c-40cf-9db0-4c1b142a1c94 {"md5": "7d6ddefd2adacb3e3dadfc7b0d6fabda", "pid": "1150803541", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1150803541", "source": "GND"}], "variant_name": ["Börkur Sigthórsson", "SigÞórsson, Börkur", "Sigthórsson, Börkur"], "date_of_birth": "1978", "preferred_name": "Börkur SigÞórsson", "country_associated": "ic", "variant_access_point": ["Börkur Sigthórsson, 1978-", "SigÞórsson, Börkur, 1978-", "Sigthórsson, Börkur, 1978-"], "authorized_access_point": "Börkur SigÞórsson, 1978-"} 1 +2024-09-11 09:01:28.534733 2024-09-11 09:01:28.534737 d42e3993-1d11-45f2-a678-c96348e23e3f {"md5": "6a5481e029e2729372a80f7c8092432c", "pid": "1151079529", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1151079529", "source": "GND"}], "variant_name": ["FFF"], "preferred_name": "Freiwirtschaftliche Arbeitspartei", "variant_access_point": ["FFF. Abkuerzung"], "authorized_access_point": "Freiwirtschaftliche Arbeitspartei"} 1 +2024-09-11 09:01:28.598966 2024-09-11 09:01:28.598969 504f9ba6-0abc-4e84-94cb-a52b4b5217ce {"md5": "77d0ad85c642f37c2479cf413eb95b2e", "pid": "1151380040", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1151380040", "source": "GND"}], "variant_name": ["Sültenfuß, Hansi"], "date_of_birth": "12.10.1926", "date_of_death": "25.01.2018", "preferred_name": "Sültenfuß, Hans-Peter", "country_associated": "gw", "variant_access_point": ["Sültenfuß, Hansi, 1926-2018"], "authorized_access_point": "Sültenfuß, Hans-Peter, 1926-2018"} 1 +2024-09-11 09:01:28.653336 2024-09-11 09:01:28.653339 a65e7fa8-30c0-4c0e-9fb6-3179c7023832 {"md5": "13b1be7e222c37b3ecb30bc7f832b5a0", "pid": "115168127X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/115168127X", "source": "GND"}], "variant_name": ["Mann, Christiane"], "preferred_name": "Wurdel, Christiane", "country_associated": "gw", "variant_access_point": ["Mann, Christiane"], "authorized_access_point": "Wurdel, Christiane"} 1 +2024-09-11 09:01:28.706263 2024-09-11 09:01:28.706266 9152a1e4-11dd-4470-832b-b9e906b904cc {"md5": "25c1dca831a758d855b29c362516e5c8", "pid": "1151834149", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1151834149", "source": "GND"}], "variant_name": ["S., Jason"], "date_of_birth": "ca. 20. Jh.", "preferred_name": "Jason S.", "variant_access_point": ["S., Jason, ca. 20. Jh."], "authorized_access_point": "Jason S., ca. 20. Jh."} 1 +2024-09-11 09:01:28.759983 2024-09-11 09:01:28.759987 bbeb168f-c801-43bd-bc54-0b0d9ce0fde9 {"md5": "95d1cd4cedf2cec0f6f2a1c2eefcbaaa", "pid": "115189203", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/115189203", "source": "GND"}], "variant_name": ["Gänzl, Kurt Friedrich", "Gänzl, Kurt-Friedrich", "Gallas, Brian Roy"], "date_of_birth": "1946", "preferred_name": "Gänzl, Kurt", "country_associated": "xxk", "variant_access_point": ["Gänzl, Kurt Friedrich, 1946-", "Gänzl, Kurt-Friedrich, 1946-", "Gallas, Brian Roy, 1946-"], "authorized_access_point": "Gänzl, Kurt, 1946-", "biographical_information": ["Engl. Musikwissenschaftler neuseeländischer Herkunft"]} 1 +2024-09-11 09:01:28.817272 2024-09-11 09:01:28.817274 a30eef46-4fa1-4b55-b230-ca6499717370 {"md5": "e402a2b262684fa3247db71e67e1b3b0", "pid": "115228987X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/115228987X", "source": "GND"}], "date_of_birth": "ca. 20./21.Jh.", "preferred_name": "Asheuer, Susanne", "country_associated": "gw", "authorized_access_point": "Asheuer, Susanne, ca. 20./21.Jh."} 1 +2024-09-11 09:01:28.873148 2024-09-11 09:01:28.873151 02fe928f-f966-4822-863a-6928a450e61a {"md5": "88420fbd4e30c88aff73f28177ae2a25", "pid": "1153014750", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1153014750", "source": "GND"}], "variant_name": ["Fabro, Johanne", "Fabrius, Johannus"], "preferred_name": "Faber, Johannes", "country_associated": "gw", "variant_access_point": ["Fabro, Johanne", "Fabrius, Johannus"], "authorized_access_point": "Faber, Johannes", "biographical_information": ["Respondent in Jena"]} 1 +2024-09-11 09:01:28.928067 2024-09-11 09:01:28.928071 e6905b0d-37ff-4000-a521-8895075f3592 {"md5": "da227d9b0f3dcd08de142389c5e35a60", "pid": "1153069881", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1153069881", "source": "GND"}], "preferred_name": "Hagelstein, Nils", "authorized_access_point": "Hagelstein, Nils"} 1 +2024-09-11 09:01:28.987848 2024-09-11 09:01:28.987851 404e9d6f-1d95-4010-99a2-108e15204e40 {"md5": "3377a31c58dc34c1c01b8b487505dd19", "pid": "1153169363", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1153169363", "source": "GND"}], "preferred_name": "Sims Reed Gallery", "country_associated": "xxk", "date_of_establishment": "1995", "authorized_access_point": "Sims Reed Gallery"} 1 +2024-09-11 09:01:29.046027 2024-09-11 09:01:29.046031 fd560e7c-284e-4124-8111-9568577d07ac {"md5": "3e70da21f038215a20622f61e75d5929", "pid": "115355996X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/115355996X", "source": "GND"}], "variant_name": ["Brum Bernardes, Cristiane"], "preferred_name": "Bernardes, Cristiane Brum", "country_associated": "bl", "variant_access_point": ["Brum Bernardes, Cristiane"], "authorized_access_point": "Bernardes, Cristiane Brum", "biographical_information": ["doctoral degree, Ciencia Politica, Cefor/Camara dos Deputados and Iesp/Uerj; master degree, Comunicacao e Informacao, UFRGS; journalist and legislative analist, Camara dos Deputados"]} 1 +2024-09-11 09:01:29.105087 2024-09-11 09:01:29.105092 053f5a95-7012-43ae-9255-4089b7ec29b9 {"md5": "07210cf093fb050201777f70ac43ef01", "pid": "1153565455", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1153565455", "source": "GND"}], "variant_name": ["Lallemant, Theodor Avé-", "Avé-Lallemant, Th.", "Avé-Lallemant, Johann Theodor Friedrich"], "date_of_birth": "02.02.1806", "date_of_death": "09.11.1890", "preferred_name": "Avé-Lallemant, Theodor", "country_associated": "gw", "variant_access_point": ["Lallemant, Theodor Avé-, 1806-1890", "Avé-Lallemant, Th., 1806-1890", "Avé-Lallemant, Johann Theodor Friedrich, 1806-1890"], "authorized_access_point": "Avé-Lallemant, Theodor, 1806-1890", "biographical_information": ["Vorstandsmitglied der Philharmonischen Gesellschaft Hamburg"]} 1 +2024-09-11 09:01:29.159421 2024-09-11 09:01:29.159425 2fd80a9f-0c84-44c7-8cf0-799e3621e5d1 {"md5": "3625d4cbb70a0c6aee93abf3ea44c696", "pid": "1153744600", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1153744600", "source": "GND"}], "variant_name": ["Kruppé, Jerzy Józef", "Czajka"], "date_of_birth": "1931", "preferred_name": "Kruppé, Jerzy", "country_associated": "pl", "variant_access_point": ["Kruppé, Jerzy Józef, 1931-", "Czajka, 1931-"], "authorized_access_point": "Kruppé, Jerzy, 1931-"} 1 +2024-09-11 09:01:29.233222 2024-09-11 09:01:29.233227 a5591b1e-a913-43f0-be82-bfb915b71e34 {"md5": "f275913f0f2ec1ac271ecd2138a3a138", "pid": "1153781506", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1153781506", "source": "GND"}], "preferred_name": "Haselmayr, Andrea", "country_associated": "au", "authorized_access_point": "Haselmayr, Andrea", "biographical_information": ["aufgewachsen im Waldviertel"]} 1 +2024-09-11 09:01:29.28795 2024-09-11 09:01:29.287954 261e4bcc-a38a-47fe-9045-608a81841542 {"md5": "089e3979754e27ff9eaa9b1bc5c120fa", "pid": "115378197", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["mon", "ger"], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/115378197", "source": "GND"}], "variant_name": ["Molor-Erdene, Sanjaadorj", "Molor-Erdene, Sanzhaadorzhijn", "Molor-Ėrdėnė, Sanzhaadorzhiĭn", "Erdene, Sanjaadorj Molor-", "Molor-Ėrdėne, S.", "Molor-Erdene, S.", "Mulur-Ardani, Sx.", "Молор-Эрдэнэ, С."], "date_of_birth": "1962", "preferred_name": "Molor-Ėrdėne, Sanžaadoržijn", "country_associated": "mp", "variant_access_point": ["Molor-Erdene, Sanjaadorj, 1962-", "Molor-Erdene, Sanzhaadorzhijn, 1962-", "Molor-Ėrdėnė, Sanzhaadorzhiĭn, 1962-", "Erdene, Sanjaadorj Molor-, 1962-", "Molor-Ėrdėne, S., 1962-", "Molor-Erdene, S., 1962-", "Mulur-Ardani, Sx., 1962-", "Молор-Эрдэнэ, С., 1962-"], "parallel_access_point": ["Молор-Эрдэнэ, Санжаадоржийн, 1962-"], "authorized_access_point": "Molor-Ėrdėne, Sanžaadoržijn, 1962-", "biographical_information": ["1. Diss. Fak. Maschinenwesen, TU Dresden, 2. Diss. Ludwig-Maximilians-Universität München, Fakultät für Philosophie, Wissenschaftstheorie und Religionswissenschaft; Mongole"]} 1 +2024-09-11 09:01:29.344637 2024-09-11 09:01:29.344641 f8053f47-3285-49a1-8b48-3d0ed0cd503c {"md5": "0a04631a3d4816f70a12866477ccf883", "pid": "1154802817", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1154802817", "source": "GND"}], "variant_name": ["Fischer, Jan Benedikt"], "preferred_name": "Fischer, Jan-Benedikt", "country_associated": "gw", "variant_access_point": ["Fischer, Jan Benedikt"], "authorized_access_point": "Fischer, Jan-Benedikt"} 1 +2024-09-11 09:01:29.462938 2024-09-11 09:01:29.462942 b81ac715-92d3-42df-ad08-178fb7cc6b95 {"md5": "35022a3f4e6483f0ee2331374727feee", "pid": "115497328X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/115497328X", "source": "GND"}], "preferred_name": "Durfee, Brian Lee", "country_associated": "xxu", "authorized_access_point": "Durfee, Brian Lee", "biographical_information": ["in Alaska und Utah aufgewachsen"]} 1 +2024-09-11 09:01:29.539181 2024-09-11 09:01:29.539184 213853b7-1c01-4f8e-95fb-b2553ddec0b0 {"md5": "cd934caa0afa634e54c08ceca67218cb", "pid": "115503256X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/115503256X", "source": "GND"}], "preferred_name": "Ermis-Krohs, Selmin", "country_associated": "gw", "authorized_access_point": "Ermis-Krohs, Selmin", "biographical_information": ["Themen: Nähen, Schreiben, Fotografie"]} 1 +2024-09-11 09:01:29.596627 2024-09-11 09:01:29.59663 71e05995-1144-406f-976a-34661299adad {"md5": "d8935d1535ac1f14f19491c195466d5a", "pid": "1155263766", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1155263766", "source": "GND"}], "date_of_birth": "ca. 20./21.Jh.", "preferred_name": "Koenen, Annemie", "country_associated": "ne", "authorized_access_point": "Koenen, Annemie, ca. 20./21.Jh."} 1 +2024-09-11 09:01:29.649764 2024-09-11 09:01:29.649767 515f0504-9222-4d35-9306-e45fbf386665 {"md5": "77d07a25ac70b63817574b5839e584ba", "pid": "1155422481", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1155422481", "source": "GND"}], "preferred_name": "Michels, Inga", "country_associated": "gw", "authorized_access_point": "Michels, Inga", "biographical_information": ["Tätig am Friedrich-Loeffler-Institut, Institut für molekulare Pathogenese."]} 1 +2024-09-11 09:01:29.702296 2024-09-11 09:01:29.702298 4ec8a4c5-d83b-48b2-b84c-2efacdaa7a30 {"md5": "064614b9a1c62d341b50fdc22a628bdc", "pid": "1155539176", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1155539176", "source": "GND"}], "variant_name": ["Chu Mei Chin", "Chin Chu, Mei", "Mei Chin, Chu"], "preferred_name": "Chu, Mei Chin", "country_associated": "cc", "variant_access_point": ["Chu Mei Chin", "Chin Chu, Mei", "Mei Chin, Chu"], "authorized_access_point": "Chu, Mei Chin", "biographical_information": ["Department of International Business, Southern Taiwan University of Science and Technology"]} 1 +2024-09-11 09:01:29.766324 2024-09-11 09:01:29.766328 d83e4977-459c-4615-b069-bd349e350a16 {"md5": "cdda6ce4f9821dc019e3c438cf19694c", "pid": "1155539249", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1155539249", "source": "GND"}], "preferred_name": "Rigolot, Irénée", "country_associated": "fr", "authorized_access_point": "Rigolot, Irénée", "biographical_information": ["Moine cistercien de l'abbaye de Timadeuc"]} 1 +2024-09-11 09:01:29.819699 2024-09-11 09:01:29.819703 dba4ff9b-86f1-4d54-8f18-9df04414f90c {"md5": "6c54c27358fafcececda6947f63e21b8", "pid": "115620451", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/115620451", "source": "GND"}], "date_of_birth": "1959", "preferred_name": "Ikeda, Yukihiro", "country_associated": "ja", "parallel_access_point": ["池田, 幸弘, 1959-"], "authorized_access_point": "Ikeda, Yukihiro, 1959-", "biographical_information": ["Als Prof. tätig an der Keio Univ., Faculty of Economics; 1994 Dissertation an der Universität Hohenheim"]} 1 +2024-09-11 09:01:29.875722 2024-09-11 09:01:29.875726 b426c4a6-f293-40ae-bbd4-0014129b70ff {"md5": "b71f2bce3dc96a4cb169d445a3e59c29", "pid": "1156292166", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1156292166", "source": "GND"}], "preferred_name": "Kozlov, Oleksii", "country_associated": "un", "authorized_access_point": "Kozlov, Oleksii"} 1 +2024-09-11 09:01:29.943938 2024-09-11 09:01:29.943943 9a0a6c44-011c-4fbd-9a65-100509fbad65 {"md5": "a215c74754f942e7d82b9ba87b16f986", "pid": "1156433290", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1156433290", "source": "GND"}], "variant_name": ["Sellinger, Friedrich"], "date_of_birth": "02.08.1912", "date_of_death": "10.03.2002", "preferred_name": "Sellinger, Bonifaz", "country_associated": "au", "variant_access_point": ["Sellinger, Friedrich, 1912-2002"], "authorized_access_point": "Sellinger, Bonifaz, 1912-2002", "biographical_information": ["Abt des Wiener Schottenstifts"]} 1 +2024-09-11 09:01:29.995723 2024-09-11 09:01:29.995726 fb07d8b0-9704-4123-8a1c-cd303fff84e6 {"md5": "eb0bc9e7a90fcb12cfd6c8b3bfa306d8", "pid": "1156493242", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1156493242", "source": "GND"}], "variant_name": ["Rojahn, Veronika Arendt-"], "preferred_name": "Arendt-Rojahn, Veronika", "country_associated": "gw", "variant_access_point": ["Rojahn, Veronika Arendt-"], "authorized_access_point": "Arendt-Rojahn, Veronika"} 1 +2024-09-11 09:01:30.050964 2024-09-11 09:01:30.050966 2c21ddb4-071b-40f2-af93-d50a0d166744 {"md5": "263a1551d676b67f77ef4c8e31d34c28", "pid": "1156540917", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1156540917", "source": "GND"}], "preferred_name": "Scherzer, Manuel", "country_associated": "gw", "authorized_access_point": "Scherzer, Manuel"} 1 +2024-09-11 09:01:30.104284 2024-09-11 09:01:30.104286 cb5b3022-3c3d-4610-a3cd-4f05ee1d4051 {"md5": "3571bda218715888d2694e6fb43f637a", "pid": "1157052185", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157052185", "source": "GND"}], "variant_name": ["Wagner, Ellen"], "preferred_name": "Friedemann, Ellen", "variant_access_point": ["Wagner, Ellen"], "authorized_access_point": "Friedemann, Ellen"} 1 +2024-09-11 09:01:30.159329 2024-09-11 09:01:30.159332 00f669da-a2c5-4821-ab94-7dce06de3c55 {"md5": "c9770414fde3f387884f8bbf0b1a584d", "pid": "1157216900", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157216900", "source": "GND"}], "variant_name": ["Díaz de Durana-Ortíz de Urbina, José R.", "Durana Ortíz de Urbina, José R.", "Durana-Ortíz de Urbina, José R", "Ortíz de Urbina, José R.", "Urbina, José R."], "preferred_name": "Díaz de Durana Ortíz de Urbina, José R.", "variant_access_point": ["Díaz de Durana-Ortíz de Urbina, José R.", "Durana Ortíz de Urbina, José R.", "Durana-Ortíz de Urbina, José R", "Ortíz de Urbina, José R.", "Urbina, José R."], "authorized_access_point": "Díaz de Durana Ortíz de Urbina, José R."} 1 +2024-09-11 09:01:30.225914 2024-09-11 09:01:30.225918 ff873c57-12f1-4c39-9818-1c968bafe70e {"md5": "2cd6244de5385a478b6b6cac785defed", "pid": "1157217559", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157217559", "source": "GND"}], "variant_name": ["Teubner, Eva"], "preferred_name": "Krobs, Eva", "variant_access_point": ["Teubner, Eva"], "authorized_access_point": "Krobs, Eva"} 1 +2024-09-11 09:01:30.276715 2024-09-11 09:01:30.276718 b547aaf3-fc5f-464a-8b18-2c30c8926bee {"md5": "83b7b37ab98b61a12f65a11aa51b69bf", "pid": "1157230466", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157230466", "source": "GND"}], "variant_name": ["Schneider, Ilse R.-"], "date_of_birth": "25.04.1891", "date_of_death": "06.02.1990", "preferred_name": "Rosenthal-Schneider, Ilse", "variant_access_point": ["Schneider, Ilse R.-, 1891-1990"], "authorized_access_point": "Rosenthal-Schneider, Ilse, 1891-1990", "biographical_information": ["Studium der Philosophie und Naturwissenschaften (mit Unterbrechungen) von 1909-1920, Promotion in Philosophie Universtät Berlin 1934, unter anderem als Publizistin und Wissenschftasjournalistin tätig, 1938 Emigration über London nach Australien, dort u.a. Mitarbeiterin an der Universität Sydney"]} 1 +2024-09-11 09:01:30.33581 2024-09-11 09:01:30.335813 63090df0-c437-46eb-8fd0-8a4ed2daa374 {"md5": "4f269de018374f183d553929a1f5f2ba", "pid": "1157269680", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157269680", "source": "GND"}], "variant_name": ["Hauswaldt, Bernd M.-"], "preferred_name": "Michaelis-Hauswaldt, Bernd", "variant_access_point": ["Hauswaldt, Bernd M.-"], "authorized_access_point": "Michaelis-Hauswaldt, Bernd"} 1 +2024-09-11 09:01:30.389716 2024-09-11 09:01:30.389719 b55dcf18-0779-480b-9003-2fcd82c3d411 {"md5": "786a978d88841f3f0d0b023db945c530", "pid": "1157288723", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157288723", "source": "GND"}], "variant_name": ["Maresch, Alois K.-"], "preferred_name": "Kastner-Maresch, Alois", "variant_access_point": ["Maresch, Alois K.-"], "authorized_access_point": "Kastner-Maresch, Alois"} 1 +2024-09-11 09:01:30.452653 2024-09-11 09:01:30.452655 5830d32b-571e-4fb9-b3f9-13da7c625f6f {"md5": "068204d080b73b3186dd23bda7928fe1", "pid": "1157297676", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157297676", "source": "GND"}], "variant_name": ["Glenn, Lynda D."], "preferred_name": "Dixon Glenn, Lynda", "variant_access_point": ["Glenn, Lynda D."], "authorized_access_point": "Dixon Glenn, Lynda"} 1 +2024-09-11 09:01:30.515633 2024-09-11 09:01:30.515637 bee92b6d-5102-4220-a2db-a4f255aefdcc {"md5": "a24645c9daddab18814e1466efa6aecc", "pid": "1157335101", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157335101", "source": "GND"}], "variant_name": ["Blom, Paulus W."], "preferred_name": "Blom, Paul W.", "variant_access_point": ["Blom, Paulus W."], "authorized_access_point": "Blom, Paul W."} 1 +2024-09-11 09:01:30.580349 2024-09-11 09:01:30.580353 d954de6f-41b9-418f-b1b0-a2655d5fcc39 {"md5": "2f95da19c99ab6c9c9fad558d943da8c", "pid": "1157423981", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157423981", "source": "GND"}], "variant_name": ["Ahn, Sung-Ho J."], "preferred_name": "An, Sŏng-ho J.", "variant_access_point": ["Ahn, Sung-Ho J."], "authorized_access_point": "An, Sŏng-ho J."} 1 +2024-09-11 09:01:30.633511 2024-09-11 09:01:30.633514 694a5a25-c9ad-4741-bee5-0d232c922e97 {"md5": "2ce3c4737a318c35114ff22d2f209617", "pid": "1157447694", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157447694", "source": "GND"}], "variant_name": ["Louise Hunt Steinle, Pamela"], "preferred_name": "Steinle, Pamela Louise Hunt", "variant_access_point": ["Louise Hunt Steinle, Pamela"], "authorized_access_point": "Steinle, Pamela Louise Hunt"} 1 +2024-09-11 09:01:30.686213 2024-09-11 09:01:30.686216 924fff2e-bbdd-4613-b87c-5b036e7567b5 {"md5": "e825789d0738f045c193080a9e861e83", "pid": "1157452159", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157452159", "source": "GND"}], "variant_name": ["Kim, Choung Ki"], "preferred_name": "Kim, Chŏng-gi", "variant_access_point": ["Kim, Choung Ki"], "authorized_access_point": "Kim, Chŏng-gi"} 1 +2024-09-11 09:01:30.739069 2024-09-11 09:01:30.739072 6da5f623-56ad-4354-b019-ef7bb9a91548 {"md5": "b36fbb378febbe64aa452cbf68b8fef8", "pid": "1157594042", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157594042", "source": "GND"}], "preferred_name": "Lejeune, ...", "authorized_access_point": "Lejeune, ..."} 1 +2024-09-11 09:01:30.800699 2024-09-11 09:01:30.800702 d0a30f97-e57b-4b8e-af93-1eba34471424 {"md5": "b03700e3513bca6ef2727d9d5bc4455b", "pid": "1157599087", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157599087", "source": "GND"}], "variant_name": ["Belostenec, Ivan", "Belostenec, Joannes", "Bėllosztėne͏̈cz, Joannes", "Bėloszténe͏̈cz, Joannes"], "preferred_name": "Bėloszténe͏̈cz, Ivan", "variant_access_point": ["Belostenec, Ivan", "Belostenec, Joannes", "Bėllosztėne͏̈cz, Joannes", "Bėloszténe͏̈cz, Joannes"], "authorized_access_point": "Bėloszténe͏̈cz, Ivan"} 1 +2024-09-11 09:01:30.859769 2024-09-11 09:01:30.859773 253eb859-33ba-4380-9153-789e8c097969 {"md5": "f7a9b4e4638e342ddea641abcb12c996", "pid": "1157628680", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157628680", "source": "GND"}], "variant_name": ["Arteta, Antonio"], "preferred_name": "Arteta de Monteseguro, Antonio", "variant_access_point": ["Arteta, Antonio"], "authorized_access_point": "Arteta de Monteseguro, Antonio"} 1 +2024-09-11 09:01:30.925247 2024-09-11 09:01:30.925251 e6f5d86a-5f8a-4814-87e4-f6c13ff87d12 {"md5": "b283a4c2dcab1a164250eaac8217bd21", "pid": "1157697208", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157697208", "source": "GND"}], "variant_name": ["Molino, ..."], "preferred_name": "Molin, Giovanni", "variant_access_point": ["Molino, ..."], "authorized_access_point": "Molin, Giovanni"} 1 +2024-09-11 09:01:30.987138 2024-09-11 09:01:30.987142 54047efd-c7fe-46e8-b959-41c708d6644e {"md5": "3955ac47253a2b73544cec439cafd2a4", "pid": "1157709702", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157709702", "source": "GND"}], "preferred_name": "Ribiers, Spiritus de", "authorized_access_point": "Ribiers, Spiritus de"} 1 +2024-09-11 09:01:31.056038 2024-09-11 09:01:31.056043 21caee5d-25ab-4be1-b8f6-077b652b341d {"md5": "aef88452584c73d9dca746fad63ed4d7", "pid": "1157711162", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157711162", "source": "GND"}], "preferred_name": "Kreissmann, Johann Christian", "authorized_access_point": "Kreissmann, Johann Christian"} 1 +2024-09-11 09:01:31.118217 2024-09-11 09:01:31.118221 7ae5d63a-f7d4-4a2a-8e30-0956f4c18470 {"md5": "e446e968c6fd03fbd94b08de51023e1c", "pid": "115775633", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/115775633", "source": "GND"}], "date_of_birth": "um 1847", "preferred_name": "Castan, G.", "authorized_access_point": "Castan, G., um 1847", "biographical_information": ["Respondent in Straßburg"]} 1 +2024-09-11 09:01:31.175101 2024-09-11 09:01:31.175103 8f1d2745-73ed-47ec-9446-f3690f7f1257 {"md5": "c3e751c5f5c2bc298b776a6ab0dd3314", "pid": "1157756964", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157756964", "source": "GND"}], "variant_name": ["Simoni, Luiz Vicente", "Simoni, Luiz Vicente de"], "preferred_name": "De-Simoni, Luiz Vicente", "variant_access_point": ["Simoni, Luiz Vicente", "Simoni, Luiz Vicente de"], "authorized_access_point": "De-Simoni, Luiz Vicente"} 1 +2024-09-11 09:01:31.23793 2024-09-11 09:01:31.237934 79122d3d-36f2-4129-b68c-18c8d7a64182 {"md5": "7b7ca0db9adf84919e653563ac9a5176", "pid": "1157761518", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157761518", "source": "GND"}], "variant_name": ["Thurn, Wilhelm"], "preferred_name": "Thurn, Wilhelm Friedrich", "variant_access_point": ["Thurn, Wilhelm"], "authorized_access_point": "Thurn, Wilhelm Friedrich"} 1 +2024-09-11 09:01:31.295215 2024-09-11 09:01:31.29522 ba09edfb-b82a-40dd-b3ea-2cedde2352c9 {"md5": "820eb14bb2cb2c3ed8daa7f8c10445f8", "pid": "1157778321", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157778321", "source": "GND"}], "preferred_name": "Dittrich, August Heinrich", "authorized_access_point": "Dittrich, August Heinrich"} 1 +2024-09-11 09:01:31.354941 2024-09-11 09:01:31.354943 13787400-fe1e-4d1f-a7fe-b71c115505c8 {"md5": "6605ec50936b986c79c23e801b8b831b", "pid": "1157861202", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157861202", "source": "GND"}], "variant_name": ["Koler, Johan Jacob", "Koler, Johann Jakob"], "preferred_name": "Koler, Johann J.", "variant_access_point": ["Koler, Johan Jacob", "Koler, Johann Jakob"], "authorized_access_point": "Koler, Johann J.", "biographical_information": ["Leb-Dat.[?]: -; Prediger in der Schweiz und Übersetzer, e1586"]} 1 +2024-09-11 09:01:31.417245 2024-09-11 09:01:31.417248 9ff346fe-255c-428d-80ce-bbbb30ca7279 {"md5": "1d117a072522965d5b89af62256dc89f", "pid": "1157879837", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157879837", "source": "GND"}], "variant_name": ["Hamilton John R."], "preferred_name": "Hamilton, Jno R.", "variant_access_point": ["Hamilton John R."], "authorized_access_point": "Hamilton, Jno R."} 1 +2024-09-11 09:01:31.489667 2024-09-11 09:01:31.489671 c6e86054-7e82-4de5-a956-e8031f736083 {"md5": "c9be1dae509b9bbefdc9210c3a01082b", "pid": "1157907849", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157907849", "source": "GND"}], "preferred_name": "Olivier, Jean Baptiste", "authorized_access_point": "Olivier, Jean Baptiste"} 1 +2024-09-11 09:01:31.543701 2024-09-11 09:01:31.543704 0d22b2ed-4f05-4e25-835a-9ed37f0c0096 {"md5": "3f8acce0d2863d6353f8639da78c2ea1", "pid": "1157912311", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1157912311", "source": "GND"}], "preferred_name": "Bezobrazov, Petr", "authorized_access_point": "Bezobrazov, Petr"} 1 +2024-09-11 09:01:31.605727 2024-09-11 09:01:31.60573 83683dea-26cf-4cff-bce3-6e85688f2b84 {"md5": "2a926f395335b1492284363089af02d5", "pid": "1158006497", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158006497", "source": "GND"}], "variant_name": ["Gvaramadze, Lili"], "preferred_name": "Gvaramaje, Lili L.", "variant_access_point": ["Gvaramadze, Lili"], "authorized_access_point": "Gvaramaje, Lili L."} 1 +2024-09-11 09:01:31.763745 2024-09-11 09:01:31.76375 8ed7c720-51d2-476d-b136-222af8107d2c {"md5": "2328da655889a4067d9bc5fa36dff901", "pid": "1158027060", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158027060", "source": "GND"}], "variant_name": ["Bregadze, G. V."], "preferred_name": "Bregaje, G.", "variant_access_point": ["Bregadze, G. V."], "authorized_access_point": "Bregaje, G."} 1 +2024-09-11 09:01:31.832479 2024-09-11 09:01:31.832483 b6428c75-fdfa-49b0-a47b-2f9e873273a6 {"md5": "806a474cf44718ba1f6ab1d5655c5771", "pid": "1158052057", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158052057", "source": "GND"}], "variant_name": ["Glazer, Myron", "Peretz Glazer, Myron", "Peretz-Glazer, Myron"], "preferred_name": "Glazer, Myron P.", "variant_access_point": ["Glazer, Myron", "Peretz Glazer, Myron", "Peretz-Glazer, Myron"], "authorized_access_point": "Glazer, Myron P."} 1 +2024-09-11 09:01:31.925796 2024-09-11 09:01:31.925801 434f3780-04bd-4c30-95bc-f8f01f82ab9f {"md5": "3e8da5a987fcc83bb3742b6db9e8d8a7", "pid": "1158100892", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158100892", "source": "GND"}], "variant_name": ["Mustafajev, Ǵamal M.", "Mustafaev, Džamal M.", "Mustafajev, Ǧamal M.", "Mustafaev, Džamal", "Mustafayev, Jamal", "Mustafayev, C. M.", "Mustafayev, Camal Mehdi oğlu", "Mustafaev, Dzhamal Mekhti ogly", "Mustafai̐ev, Jamal Meḣdi oghlu", "Мустафаев, Джамал Мехти оглы"], "preferred_name": "Mustafayev, Camal", "country_associated": "aj", "variant_access_point": ["Mustafajev, Ǵamal M.", "Mustafaev, Džamal M.", "Mustafajev, Ǧamal M.", "Mustafaev, Džamal", "Mustafayev, Jamal", "Mustafayev, C. M.", "Mustafayev, Camal Mehdi oğlu", "Mustafaev, Dzhamal Mekhti ogly", "Mustafai̐ev, Jamal Meḣdi oghlu", "Мустафаев, Джамал Мехти оглы"], "parallel_access_point": ["Mustafaev, Dzh. M."], "authorized_access_point": "Mustafayev, Camal"} 1 +2024-09-11 09:01:32.001359 2024-09-11 09:01:32.001365 692a92be-7b4f-4c28-8315-760cf4880e2b {"md5": "504256a389658e6864ab81991d76b8d2", "pid": "1158101988", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158101988", "source": "GND"}], "variant_name": ["Tárnoky, Ilona R.-"], "preferred_name": "Reinert-Tárnoky, Ilona", "variant_access_point": ["Tárnoky, Ilona R.-"], "authorized_access_point": "Reinert-Tárnoky, Ilona"} 1 +2024-09-11 09:01:32.074886 2024-09-11 09:01:32.07489 01bf4e91-e5e2-4a11-af71-aaa5df3cf981 {"md5": "97e7341c0248ca02ddaa243bf9ffb3f2", "pid": "1158158408", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158158408", "source": "GND"}], "variant_name": ["Amelio, Carlo d'"], "preferred_name": "D'Amelio, Carlo", "variant_access_point": ["Amelio, Carlo d'"], "authorized_access_point": "D'Amelio, Carlo"} 1 +2024-09-11 09:01:32.145587 2024-09-11 09:01:32.145592 5915ad18-19df-4eb2-948e-a4681171c8f9 {"md5": "2c9ceedda3df2e6b305e466928320968", "pid": "1158200374", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158200374", "source": "GND"}], "variant_name": ["Los, Jan"], "preferred_name": "Los, Jan H.", "variant_access_point": ["Los, Jan"], "authorized_access_point": "Los, Jan H."} 1 +2024-09-11 09:01:32.265449 2024-09-11 09:01:32.265455 372dfa7b-23cb-4d4c-9cbe-9031e3ebb743 {"md5": "3c8ca46f3a1951d2bf8ccda1b21aae4b", "pid": "1158249543", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158249543", "source": "GND"}], "variant_name": ["LeTohic, Jacqueline", "LeTohic, Jacqueline P.-", "Proust, Jacqueline", "Tohic, Jacqueline P.- le", "Tohic, Jacqueline le"], "preferred_name": "Proust-LeTohic, Jacqueline", "variant_access_point": ["LeTohic, Jacqueline", "LeTohic, Jacqueline P.-", "Proust, Jacqueline", "Tohic, Jacqueline P.- le", "Tohic, Jacqueline le"], "authorized_access_point": "Proust-LeTohic, Jacqueline"} 1 +2024-09-11 09:01:32.359296 2024-09-11 09:01:32.3593 e8704079-850a-4c84-90a7-e820fb982824 {"md5": "1399d941e73c9a76e281ac8946e30aca", "pid": "115829106X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/115829106X", "source": "GND"}], "variant_name": ["Gromov, Gennadij Nikolaevič"], "preferred_name": "Gromov, Gennadij N.", "variant_access_point": ["Gromov, Gennadij Nikolaevič"], "authorized_access_point": "Gromov, Gennadij N."} 1 +2024-09-11 09:01:32.415655 2024-09-11 09:01:32.415662 de8c5960-cecb-4dbe-9d3e-bb761daf9469 {"md5": "31233e050898d0e7231b0d0f09c6e9b3", "pid": "115830324", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/115830324", "source": "GND"}], "variant_name": ["Stern, Günther"], "date_of_birth": "1922", "preferred_name": "Stern, Guy", "country_associated": "gw", "variant_access_point": ["Stern, Günther, 1922-"], "authorized_access_point": "Stern, Guy, 1922-"} 1 +2024-09-11 09:01:32.481546 2024-09-11 09:01:32.481551 5ea0be6c-deea-4912-baa4-5e5396088813 {"md5": "e0cd51a7024575f7021c94bac6236ce1", "pid": "115832599", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/115832599", "source": "GND"}], "date_of_birth": "1965", "preferred_name": "Olschinka, Ernst Georg", "authorized_access_point": "Olschinka, Ernst Georg, 1965-", "biographical_information": ["Diss. Medizinische Fakultät"]} 1 +2024-09-11 09:01:32.549002 2024-09-11 09:01:32.549008 92be1be1-85ae-4e19-8cbc-9e9b435b3436 {"md5": "fdcc930b8937a3c87bdbd3020cd01bee", "pid": "115836346X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/115836346X", "source": "GND"}], "variant_name": ["Kuz'minych, Tat'jana Nikolaevna"], "preferred_name": "Kuz'minych, Tat'jana N.", "variant_access_point": ["Kuz'minych, Tat'jana Nikolaevna"], "authorized_access_point": "Kuz'minych, Tat'jana N."} 1 +2024-09-11 09:01:32.611084 2024-09-11 09:01:32.611087 4eed99f6-4bc9-4335-9c28-dc00db69339e {"md5": "0fdcd4782bf9588beb07264e10f8462b", "pid": "1158367546", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158367546", "source": "GND"}], "variant_name": ["ElYahfoufi, Najwa", "Yaḥfūfī, Naǧwa al-"], "preferred_name": "Yahfoufi, Najwa el-", "variant_access_point": ["ElYahfoufi, Najwa", "Yaḥfūfī, Naǧwa al-"], "authorized_access_point": "Yahfoufi, Najwa el-"} 1 +2024-09-11 09:01:32.677318 2024-09-11 09:01:32.677321 2c643298-ffdd-4c02-9b50-980c662e3881 {"md5": "e356caf93ae626e5026a1330ac7126f8", "pid": "1158376529", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158376529", "source": "GND"}], "variant_name": ["Iskandarian, Alexander H.", "Iskandarjan, Aleksandr G."], "preferred_name": "Iskandarean, Alek'sandr H.", "variant_access_point": ["Iskandarian, Alexander H.", "Iskandarjan, Aleksandr G."], "authorized_access_point": "Iskandarean, Alek'sandr H."} 1 +2024-09-11 09:01:32.736806 2024-09-11 09:01:32.73681 cb981453-de1b-4c63-b9c6-687b7bdb0619 {"md5": "eb9b017d64f0fdf72266ac4e404edae3", "pid": "1158381719", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158381719", "source": "GND"}], "variant_name": ["Bajramov, Tofik Gulam ogly"], "preferred_name": "Bajram, Tofig", "variant_access_point": ["Bajramov, Tofik Gulam ogly"], "authorized_access_point": "Bajram, Tofig"} 1 +2024-09-11 09:01:32.792713 2024-09-11 09:01:32.792718 500c2894-1830-45f4-8bd6-ca6151cf4b31 {"md5": "1ca1816aca738a9166130106f8fd6739", "pid": "1158387253", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158387253", "source": "GND"}], "variant_name": ["Lapšin, Viktor", "Lapšin, Viktor Michajlovič"], "preferred_name": "Lapšin, Viktor M.", "variant_access_point": ["Lapšin, Viktor", "Lapšin, Viktor Michajlovič"], "authorized_access_point": "Lapšin, Viktor M."} 1 +2024-09-11 09:01:32.853008 2024-09-11 09:01:32.85301 50458e62-d835-4f80-af2b-64a270f3d14c {"md5": "c1b7f9e3f8b8ff0ea3c97218bc64bf22", "pid": "1158419481", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158419481", "source": "GND"}], "variant_name": ["Baguenier Desormeaux-Breguet, Marie", "Baguenier Desormeaux, Marie", "Baguenier-Desormeaux, Marie", "Baguenier-Desormeaux-Breguet, Marie", "Breguet, Marie Baguenier Desormeaux-", "Desormeaux, Marie Baguenier", "Desormeaux-Breguet, Marie Baguenier"], "preferred_name": "Breguet, Marie", "country_associated": "fr", "variant_access_point": ["Baguenier Desormeaux-Breguet, Marie", "Baguenier Desormeaux, Marie", "Baguenier-Desormeaux, Marie", "Baguenier-Desormeaux-Breguet, Marie", "Breguet, Marie Baguenier Desormeaux-", "Desormeaux, Marie Baguenier", "Desormeaux-Breguet, Marie Baguenier"], "authorized_access_point": "Breguet, Marie"} 1 +2024-09-11 09:01:32.910881 2024-09-11 09:01:32.910884 a95a8c56-7e5d-4c07-96b7-6ae8ad941897 {"md5": "86a9122cbb4f3fcc57c09d86079e08f9", "pid": "1158422814", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158422814", "source": "GND"}], "variant_name": ["Blackley, David Charles"], "preferred_name": "Blackley, David C.", "variant_access_point": ["Blackley, David Charles"], "authorized_access_point": "Blackley, David C.", "biographical_information": ["Formerly reader in Polymer Science and Technology, Polytechnic of North London"]} 1 +2024-09-11 09:01:32.973495 2024-09-11 09:01:32.973497 170bae11-963d-4323-921a-7296975da2c2 {"md5": "d30aa395b651c9bc944cfd0511859088", "pid": "1158446462", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158446462", "source": "GND"}], "variant_name": ["Černyj, Igor' Vital'evič"], "preferred_name": "Černyj, Igor' V.", "variant_access_point": ["Černyj, Igor' Vital'evič"], "authorized_access_point": "Černyj, Igor' V."} 1 +2024-09-11 09:01:33.03205 2024-09-11 09:01:33.032056 df8eab01-c233-4f62-b9b3-a459e185b0ef {"md5": "0ef5a8cf76dd26f42aab0828aa1ac9f1", "pid": "1158464681", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158464681", "source": "GND"}], "variant_name": ["Adel'gejm, Evgenij Georgievič", "Adelʹgejm, Evgenij G.", "Adelʹgejm, Evgenij Georgievič", "Adelʹhejm, Jevhen Heorhijovyč"], "preferred_name": "Adelʹhejm, Jevhen H.", "variant_access_point": ["Adel'gejm, Evgenij Georgievič", "Adelʹgejm, Evgenij G.", "Adelʹgejm, Evgenij Georgievič", "Adelʹhejm, Jevhen Heorhijovyč"], "authorized_access_point": "Adelʹhejm, Jevhen H."} 1 +2024-09-11 09:01:33.090777 2024-09-11 09:01:33.09078 f42b3595-ff59-48f6-a348-6e43e51c7be4 {"md5": "e58b4c1ee7cfc7f802f4b68c94f06971", "pid": "1158546564", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158546564", "source": "GND"}], "variant_name": ["Alikhanov, A. I."], "preferred_name": "Alichanov, Abram Isaakovič", "variant_access_point": ["Alikhanov, A. I."], "authorized_access_point": "Alichanov, Abram Isaakovič"} 1 +2024-09-11 09:01:33.145611 2024-09-11 09:01:33.145616 ebbe8efb-d9c4-44f7-86d3-111ad5fc366d {"md5": "99d5a9e012160882fb2c809c6ac69229", "pid": "115855365X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/115855365X", "source": "GND"}], "variant_name": ["Ch'a Pae, Ok-tŏk", "Cha, Ok-deok", "Pae, Ok-tŏk"], "preferred_name": "Ch'a, Ok-tŏk", "variant_access_point": ["Ch'a Pae, Ok-tŏk", "Cha, Ok-deok", "Pae, Ok-tŏk"], "authorized_access_point": "Ch'a, Ok-tŏk"} 1 +2024-09-11 09:01:33.223234 2024-09-11 09:01:33.223238 644a5aed-78e9-4a60-ab05-5dcbef4fa5d2 {"md5": "eb85b92f729d73270237d9889b26e00b", "pid": "1158555156", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158555156", "source": "GND"}], "variant_name": ["Cakot, Ioannes", "Cakot, Johann"], "preferred_name": "Cakot, Johannes", "variant_access_point": ["Cakot, Ioannes", "Cakot, Johann"], "authorized_access_point": "Cakot, Johannes"} 1 +2024-09-11 09:01:33.294686 2024-09-11 09:01:33.294692 b9f9fa3e-ed16-409b-8d1d-bf963f783c8b {"md5": "71dff3b9e95876672097a07b6fe87596", "pid": "115855882", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/115855882", "source": "GND"}], "date_of_birth": "1964", "preferred_name": "Göben, Jens", "authorized_access_point": "Göben, Jens, 1964-"} 1 +2024-09-11 09:01:33.356863 2024-09-11 09:01:33.356866 5c852069-214e-4cbf-97c2-de23de92bd0f {"md5": "1376c0b403df1fa6525259dd407142f0", "pid": "1158559259", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158559259", "source": "GND"}], "variant_name": ["Otto, Ursula"], "preferred_name": "Schulze, Ursula", "country_associated": "gw", "variant_access_point": ["Otto, Ursula"], "authorized_access_point": "Schulze, Ursula", "biographical_information": ["Diss. med. Marburg 1967"]} 1 +2024-09-11 09:01:34.263471 2024-09-11 09:01:34.263474 f2f2e848-fcf3-40a1-a7f6-dd0d00b0fbc9 {"md5": "dd15108abafeb5fcf22d154a3fb26070", "pid": "1158944675", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158944675", "source": "GND"}], "variant_name": ["Glasov, Ju.", "Glazov, Jurij Jakovlevič"], "preferred_name": "Glazov, Jurij Ja.", "variant_access_point": ["Glasov, Ju.", "Glazov, Jurij Jakovlevič"], "authorized_access_point": "Glazov, Jurij Ja."} 1 +2024-09-11 09:01:33.425806 2024-09-11 09:01:33.425809 9f8b72b0-b79c-418b-9051-6913f576ea62 {"md5": "a1f790568cfd1938ffc6af12a2e6a063", "pid": "1158570945", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158570945", "source": "GND"}], "variant_name": ["Belliveau, Anne McMullen", "MacMullen Belliveau, Anne", "McMullen Belliveau, Anne"], "preferred_name": "Belliveau, Anne MacMullen", "variant_access_point": ["Belliveau, Anne McMullen", "MacMullen Belliveau, Anne", "McMullen Belliveau, Anne"], "authorized_access_point": "Belliveau, Anne MacMullen"} 1 +2024-09-11 09:01:33.478942 2024-09-11 09:01:33.478946 a75fd9c5-9b93-4cc2-bbfe-ba659b01aec6 {"md5": "d6ed1aa91c686571f73c96caffbd5d5d", "pid": "1158574614", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158574614", "source": "GND"}], "variant_name": ["Chernyshova, Nina Vasylivna", "Černyšova, Nina Vasylivna"], "preferred_name": "Černyšova, Nina V.", "variant_access_point": ["Chernyshova, Nina Vasylivna", "Černyšova, Nina Vasylivna"], "authorized_access_point": "Černyšova, Nina V."} 1 +2024-09-11 09:01:33.535555 2024-09-11 09:01:33.535558 8005bed0-bbfe-4238-b281-44c3dff4b367 {"md5": "3aadf2cb524185bddbbfce6238e37602", "pid": "1158577125", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158577125", "source": "GND"}], "variant_name": ["Cao, Xuân Mỹ", "Mỹ, Cao Xuân"], "preferred_name": "Cao-xuân-Mỹ", "variant_access_point": ["Cao, Xuân Mỹ", "Mỹ, Cao Xuân"], "authorized_access_point": "Cao-xuân-Mỹ"} 1 +2024-09-11 09:01:33.593271 2024-09-11 09:01:33.593275 59902adf-0ded-4884-8a04-e96a9dfebefe {"md5": "0173b3e405c1d8ad0cfab630bf77dd4f", "pid": "1158624107", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158624107", "source": "GND"}], "date_of_birth": "1939", "date_of_death": "2023", "preferred_name": "Schäfer, Richard", "country_associated": "sz", "authorized_access_point": "Schäfer, Richard, 1939-2023"} 1 +2024-09-11 09:01:33.647402 2024-09-11 09:01:33.647407 c0e86f86-b7ec-4ed1-b01b-4a8798a715ed {"md5": "1cc0cfa62ef7e42fff31ec41d788eb78", "pid": "1158716125", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158716125", "source": "GND"}], "variant_name": ["Rabinowich, Nahum"], "preferred_name": "Rabinovič, Naum", "variant_access_point": ["Rabinowich, Nahum"], "authorized_access_point": "Rabinovič, Naum"} 1 +2024-09-11 09:01:33.713845 2024-09-11 09:01:33.713849 fc87cb28-134b-4b8b-8f7c-bfeb3b6b1269 {"md5": "4eb0588ab686a93fe6d236abd3666986", "pid": "1158723458", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158723458", "source": "GND"}], "variant_name": ["Verde, Thomas A.", "Verde, Tom"], "preferred_name": "Verde, Thomas Aquinas", "variant_access_point": ["Verde, Thomas A.", "Verde, Tom"], "authorized_access_point": "Verde, Thomas Aquinas"} 1 +2024-09-11 09:01:33.800717 2024-09-11 09:01:33.80072 1cd06671-c8ac-47d2-bac5-f7dda2b2c00f {"md5": "4920a578a19acda4fc0318c854ebda74", "pid": "1158741308", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158741308", "source": "GND"}], "variant_name": ["Ḥāmid Faraǧ"], "preferred_name": "Faraǧ, Ḥāmid", "variant_access_point": ["Ḥāmid Faraǧ"], "authorized_access_point": "Faraǧ, Ḥāmid"} 1 +2024-09-11 09:01:33.863093 2024-09-11 09:01:33.863096 9a5802bc-4f5d-4109-baa2-0db0a532439d {"md5": "46503edbf70efa635721c16b37e8b9bb", "pid": "1158818726", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158818726", "source": "GND"}], "variant_name": ["Miller, Bernadette Helga Maria"], "preferred_name": "Grumser, Bernadette", "variant_access_point": ["Miller, Bernadette Helga Maria"], "authorized_access_point": "Grumser, Bernadette"} 1 +2024-09-11 09:01:33.921882 2024-09-11 09:01:33.921886 174a2efc-1b2c-46ed-963f-3e1680675b8d {"md5": "771eddf68442c3dd362958f46eb8032e", "pid": "1158837534", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158837534", "source": "GND"}], "variant_name": ["Heinemann, Birgit"], "preferred_name": "Kampff, Birgit", "variant_access_point": ["Heinemann, Birgit"], "authorized_access_point": "Kampff, Birgit"} 1 +2024-09-11 09:01:33.976895 2024-09-11 09:01:33.976899 fa4bd25a-06a5-4da7-a409-2fbe0ff73a23 {"md5": "a54838d8a2d820016b65b47edfbfea0e", "pid": "1158866127", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158866127", "source": "GND"}], "variant_name": ["Andersen, Anton Rask", "Rask-Andersen, Anton"], "preferred_name": "Rask Andersen, Anton", "variant_access_point": ["Andersen, Anton Rask", "Rask-Andersen, Anton"], "authorized_access_point": "Rask Andersen, Anton"} 1 +2024-09-11 09:01:34.027502 2024-09-11 09:01:34.027506 f0fc1c5b-ac49-4808-95b0-13d9b2a57a55 {"md5": "9c6e177b1f992cc0e9c42a0bc1a280f5", "pid": "1158918763", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158918763", "source": "GND"}], "variant_name": ["Lanker, Martin", "Lanqer, Moše", "Lein, Moše"], "preferred_name": "Lane, Martin", "variant_access_point": ["Lanker, Martin", "Lanqer, Moše", "Lein, Moše"], "authorized_access_point": "Lane, Martin"} 1 +2024-09-11 09:01:34.088254 2024-09-11 09:01:34.088257 583f5f51-2267-4768-9275-c202d7b3cf99 {"md5": "4cc846213e355d012298bd445b78337f", "pid": "1158920237", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158920237", "source": "GND"}], "variant_name": ["Le Palmec, Jean"], "preferred_name": "LePalmec, Jean", "variant_access_point": ["Le Palmec, Jean"], "authorized_access_point": "LePalmec, Jean"} 1 +2024-09-11 09:01:34.142733 2024-09-11 09:01:34.142737 53d45f41-c914-4fc8-acf2-85e429eb3614 {"md5": "5403507d29ee5825aa9fcd7543a0cdf0", "pid": "1158922892", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158922892", "source": "GND"}], "variant_name": ["Muḥammad ʿAbdalʿazīz Marzūq"], "preferred_name": "Marzūq, Muḥammad ʿAbdalʿazīz", "variant_access_point": ["Muḥammad ʿAbdalʿazīz Marzūq"], "authorized_access_point": "Marzūq, Muḥammad ʿAbdalʿazīz"} 1 +2024-09-11 09:01:34.21023 2024-09-11 09:01:34.210234 6d9432c0-b12c-4be8-905d-05cf327b6e04 {"md5": "3e130448c12a686d75dfc9577dd124dc", "pid": "1158941145", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158941145", "source": "GND"}], "variant_name": ["Wischer, Detlef"], "preferred_name": "Wischer, Detlev", "variant_access_point": ["Wischer, Detlef"], "authorized_access_point": "Wischer, Detlev"} 1 +2024-09-11 09:01:34.318115 2024-09-11 09:01:34.318117 318e8e51-3cf7-4606-8d85-25db44d55e36 {"md5": "64767ff8599cde3a438b6d601beda1ee", "pid": "1158955235", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158955235", "source": "GND"}], "variant_name": ["Journel, Michel Marie-Joseph"], "preferred_name": "Journel, Michel Marie Joseph", "variant_access_point": ["Journel, Michel Marie-Joseph"], "authorized_access_point": "Journel, Michel Marie Joseph"} 1 +2024-09-11 09:01:34.374795 2024-09-11 09:01:34.374798 0b7dda32-5214-44c0-9769-c3698c3b8db9 {"md5": "cc1e8e94888f7a3b0d35d20fad5561fd", "pid": "1158971117", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158971117", "source": "GND"}], "variant_name": ["ʿAbāda, ʿAbdalfattāḥ"], "preferred_name": "ʿAbdalfattāḥ ʿIbāda", "variant_access_point": ["ʿAbāda, ʿAbdalfattāḥ"], "authorized_access_point": "ʿAbdalfattāḥ ʿIbāda"} 1 +2024-09-11 09:01:34.429954 2024-09-11 09:01:34.429959 230176d4-2b33-4603-9421-802c3c076bde {"md5": "9731d3c88162d57263b20572971888c4", "pid": "1159026750", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159026750", "source": "GND"}], "variant_name": ["Lohman, A. F. de Savornin"], "preferred_name": "Savornin Lohman, Alexander Frederik", "variant_access_point": ["Lohman, A. F. de Savornin"], "authorized_access_point": "Savornin Lohman, Alexander Frederik"} 1 +2024-09-11 09:01:34.482381 2024-09-11 09:01:34.482384 cb6119ef-85e2-416d-8289-e7b0325fd301 {"md5": "b02f4bee9862d37529d7f23cd0284d3b", "pid": "1159034591", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159034591", "source": "GND"}], "variant_name": ["Argenteau, Mercy", "Argenteau, Rose Ctesse de Mercy", "Avaray, Rose Mise d'", "Montglyon, Mercy Argenteau Princesse de"], "preferred_name": "Mercy Argenteau, Rose", "variant_access_point": ["Argenteau, Mercy", "Argenteau, Rose Ctesse de Mercy", "Avaray, Rose Mise d'", "Montglyon, Mercy Argenteau Princesse de"], "authorized_access_point": "Mercy Argenteau, Rose"} 1 +2024-09-11 09:01:34.540092 2024-09-11 09:01:34.540095 4ffc1295-4690-42e1-94a3-3f42a95fd208 {"md5": "eb2f8a80f5dce8e36dfb6eb21fd3267a", "pid": "1159046239", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159046239", "source": "GND"}], "variant_name": ["Mönnich, Günther"], "preferred_name": "Mönnich, Günter", "variant_access_point": ["Mönnich, Günther"], "authorized_access_point": "Mönnich, Günter"} 1 +2024-09-11 09:01:34.598539 2024-09-11 09:01:34.598541 bfc2c1f2-898b-4e30-8336-a89275d5b08b {"md5": "5fd9ecf165e01a3cadc7fc361025f357", "pid": "1159064911", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159064911", "source": "GND"}], "variant_name": ["Petříková, Anna Brtníková"], "preferred_name": "Brtníková-Petříková, Anna", "variant_access_point": ["Petříková, Anna Brtníková"], "authorized_access_point": "Brtníková-Petříková, Anna"} 1 +2024-09-11 09:01:34.649701 2024-09-11 09:01:34.649705 30f38271-8133-4fc0-92ae-3e0f6ee3afb8 {"md5": "76d5975e00cc163f6b970597121fe579", "pid": "1159071373", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159071373", "source": "GND"}], "variant_name": ["Bernal, Ruth Delfina Saldaña", "Saldaña, Ruth Delfina"], "preferred_name": "Saldaña Bernal, Ruth Delfina", "variant_access_point": ["Bernal, Ruth Delfina Saldaña", "Saldaña, Ruth Delfina"], "authorized_access_point": "Saldaña Bernal, Ruth Delfina"} 1 +2024-09-11 09:01:34.702387 2024-09-11 09:01:34.702389 ee0ad8cd-ce70-4b6b-8d70-179aff092a18 {"md5": "a4d330e39c83366fc5b92c96efc3b6dc", "pid": "1159073880", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159073880", "source": "GND"}], "variant_name": ["Durieu, Louis"], "preferred_name": "Blum, Eugène", "variant_access_point": ["Durieu, Louis"], "authorized_access_point": "Blum, Eugène"} 1 +2024-09-11 09:01:34.755291 2024-09-11 09:01:34.755295 014bdf7d-bf18-44a6-9094-9b43c5960e3d {"md5": "66253316a6a762dc4fca2e70d24206c6", "pid": "1159080593", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159080593", "source": "GND"}], "variant_name": ["Alvarez de Villanueva, Francisco", "Villanueva, Francisco Alvarez de"], "preferred_name": "Álvarez de Villanueva, Francisco", "variant_access_point": ["Alvarez de Villanueva, Francisco", "Villanueva, Francisco Alvarez de"], "authorized_access_point": "Álvarez de Villanueva, Francisco"} 1 +2024-09-11 09:01:34.810957 2024-09-11 09:01:34.810961 b4d66778-b35d-47ae-abfb-222e6ff99937 {"md5": "caf065c7d135e8ba3f2e5f6fcfd84ea5", "pid": "1159104611", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159104611", "source": "GND"}], "variant_name": ["Wielisław", "Skrodzki-Wielisław, Eugeniusz"], "preferred_name": "Skrodzki, Eugeniusz", "variant_access_point": ["Wielisław", "Skrodzki-Wielisław, Eugeniusz"], "authorized_access_point": "Skrodzki, Eugeniusz"} 1 +2024-09-11 09:01:34.866381 2024-09-11 09:01:34.866383 acc77909-5ea3-433d-9c25-74f377cb6a71 {"md5": "c1006dffba49bd0b5c5e3ade9a36c403", "pid": "1159119422", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159119422", "source": "GND"}], "variant_name": ["ʿAbd-al-Qādir ad-Danā"], "preferred_name": "Danā, ʿAbd-al-Qādir ad-", "variant_access_point": ["ʿAbd-al-Qādir ad-Danā"], "authorized_access_point": "Danā, ʿAbd-al-Qādir ad-"} 1 +2024-09-11 09:01:34.921167 2024-09-11 09:01:34.921171 94634c21-9a89-4b20-a37c-cdb85b546d25 {"md5": "903c063aace5f642c3f15e2b30f89499", "pid": "1159135630", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159135630", "source": "GND"}], "variant_name": ["Holland, Friedrich-Wilhelm"], "preferred_name": "Holland, Friedrich Wilhelm", "variant_access_point": ["Holland, Friedrich-Wilhelm"], "authorized_access_point": "Holland, Friedrich Wilhelm"} 1 +2024-09-11 09:01:34.987401 2024-09-11 09:01:34.987404 b28ed862-b9ce-436f-9f80-4d181a3dc9a2 {"md5": "921aa1e50b33715d033d397d5d1c56a7", "pid": "1159138117", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159138117", "source": "GND"}], "variant_name": ["Rancasi, Armandi Johannis Buttilierii"], "preferred_name": "Buttilierius, Armand Johannes", "variant_access_point": ["Rancasi, Armandi Johannis Buttilierii"], "authorized_access_point": "Buttilierius, Armand Johannes"} 1 +2024-09-11 09:01:35.051284 2024-09-11 09:01:35.051288 05a5550e-b487-4c9c-b815-092650cdef40 {"md5": "4af4132dfe78be1a95da3a709d0b92b7", "pid": "1159153183", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159153183", "source": "GND"}], "variant_name": ["Du Fou, Raoul"], "preferred_name": "DuFou, Raoul", "variant_access_point": ["Du Fou, Raoul"], "authorized_access_point": "DuFou, Raoul"} 1 +2024-09-11 09:01:35.117798 2024-09-11 09:01:35.1178 314511e4-33a4-4713-aaa4-a157d0fff2ea {"md5": "9367f98c8507083b459c87fe824584d8", "pid": "1159167451", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159167451", "source": "GND"}], "variant_name": ["Koehn, Natalja", "Kohn, Natalija"], "preferred_name": "Kʹon, Natalija", "variant_access_point": ["Koehn, Natalja", "Kohn, Natalija"], "authorized_access_point": "Kʹon, Natalija"} 1 +2024-09-11 09:01:35.172618 2024-09-11 09:01:35.172621 a62df98a-737c-490b-94d2-81d559d70613 {"md5": "0bd8a5b6183cc2a7d296496e12d43002", "pid": "1159213550", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159213550", "source": "GND"}], "variant_name": ["Maksimova, Vera", "Maksimova, Vera Anatolʹevna"], "preferred_name": "Maksimova, Vera A.", "variant_access_point": ["Maksimova, Vera", "Maksimova, Vera Anatolʹevna"], "authorized_access_point": "Maksimova, Vera A."} 1 +2024-09-11 09:01:35.241854 2024-09-11 09:01:35.241858 a49f4f3c-ab20-4841-95fb-77ce61d8fcf7 {"md5": "f527f37773cafb302c30a4b7eaf0007e", "pid": "115921719X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/115921719X", "source": "GND"}], "variant_name": ["Ovsienko, Valentin Ermolaevich", "Ovsienko, Valentin Ermolaevič"], "preferred_name": "Ovsienko, Valentin E.", "variant_access_point": ["Ovsienko, Valentin Ermolaevich", "Ovsienko, Valentin Ermolaevič"], "authorized_access_point": "Ovsienko, Valentin E."} 1 +2024-09-11 09:01:35.321643 2024-09-11 09:01:35.321646 87633efe-2c73-4bcc-aa72-d68c0a5e7d6f {"md5": "29ee6014a8c8c145e002f63fadabd255", "pid": "1159260079", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159260079", "source": "GND"}], "variant_name": ["Sari'en, Sri", "Sri, Sari'en"], "preferred_name": "Sri Sari'en", "variant_access_point": ["Sari'en, Sri", "Sri, Sari'en"], "authorized_access_point": "Sri Sari'en"} 1 +2024-09-11 09:01:35.377295 2024-09-11 09:01:35.3773 4d9b0423-cb58-42ed-8019-8cdfac630dc0 {"md5": "fd7cba6b60119f21303dca657d47c3cc", "pid": "1159260931", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159260931", "source": "GND"}], "variant_name": ["Mošnjaga, Elena Viktorovna"], "preferred_name": "Mošnjaga, Elena V.", "variant_access_point": ["Mošnjaga, Elena Viktorovna"], "authorized_access_point": "Mošnjaga, Elena V."} 1 +2024-09-11 09:01:35.451703 2024-09-11 09:01:35.451708 46f4e9be-d011-4281-b984-afdd93500867 {"md5": "85e21f63d7023eb88b6461786b84fa03", "pid": "1159261407", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159261407", "source": "GND"}], "variant_name": ["Iščenko, Iryna Mykolai͏̈vna"], "preferred_name": "Iščenko, Iryna M.", "variant_access_point": ["Iščenko, Iryna Mykolai͏̈vna"], "authorized_access_point": "Iščenko, Iryna M."} 1 +2024-09-11 09:01:35.505618 2024-09-11 09:01:35.505621 7c97f288-7c2b-4255-b283-a13e5b338b96 {"md5": "c770062b8040932c6a794841919cb59c", "pid": "1159283095", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159283095", "source": "GND"}], "variant_name": ["Lot, Fernan"], "preferred_name": "Lot, Fernand", "country_associated": "fr", "variant_access_point": ["Lot, Fernan"], "authorized_access_point": "Lot, Fernand", "biographical_information": ["Franz. Kindersachbuchautor"]} 1 +2024-09-11 09:01:35.56824 2024-09-11 09:01:35.568243 c70bc1bd-0191-489b-9732-e1de4a8c3a16 {"md5": "8fcf6b8440bc161c49fd0c9ad4129b39", "pid": "1159284946", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159284946", "source": "GND"}], "variant_name": ["Bibiléichvili, Tsissana", "Bibileischwili, Tsisana", "Bibileishvili, Tsisana"], "preferred_name": "Bibileišvili, C̕isana", "country_associated": "gau", "variant_access_point": ["Bibiléichvili, Tsissana", "Bibileischwili, Tsisana", "Bibileishvili, Tsisana"], "parallel_access_point": ["ბიბილეიშვილი, ცისანა"], "authorized_access_point": "Bibileišvili, C̕isana"} 1 +2024-09-11 09:01:35.633844 2024-09-11 09:01:35.633847 d829627a-c7bc-443a-a657-16c98c32b949 {"md5": "dd8157cf0bb1903be0b84977aa4561e7", "pid": "1159288259", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159288259", "source": "GND"}], "variant_name": ["Orlova, Izidora T.", "Orlova, Izidora Tomaševna"], "preferred_name": "Orlova, Izida", "variant_access_point": ["Orlova, Izidora T.", "Orlova, Izidora Tomaševna"], "authorized_access_point": "Orlova, Izida"} 1 +2024-09-11 09:01:35.689081 2024-09-11 09:01:35.689084 435d0aee-39a9-4dfb-b5b0-14205b6bd0aa {"md5": "98dc95ecbe3bd95ebb673c36d5543135", "pid": "1159531471", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159531471", "source": "GND"}], "preferred_name": "Kretzschmar, René", "country_associated": "gw", "authorized_access_point": "Kretzschmar, René"} 1 +2024-09-11 09:01:35.743897 2024-09-11 09:01:35.743901 c6795ae8-4e3a-4ef6-8c5a-20d3f4c7a64d {"md5": "1c7d95324667c2dae6f648066959369d", "pid": "1159712689", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159712689", "source": "GND"}], "preferred_name": "Lui, Janina", "country_associated": "gw", "authorized_access_point": "Lui, Janina"} 1 +2024-09-11 09:01:35.804987 2024-09-11 09:01:35.80499 ba18e99b-96da-493e-b28b-0bda424a2be2 {"md5": "4d6e7616be712839d9ac624579846f75", "pid": "1160106576", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1160106576", "source": "GND"}], "preferred_name": "Wehmeyer, Ludwig", "country_associated": "gw", "authorized_access_point": "Wehmeyer, Ludwig"} 1 +2024-09-11 09:01:36.630985 2024-09-11 09:01:36.630988 507088b4-b3b7-46ae-aefd-151bf18c3e88 {"md5": "7fdbe77306210f6ffab33600aea1ead8", "pid": "116311054X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116311054X", "source": "GND"}], "date_of_birth": "1956", "preferred_name": "Condello, Angela", "country_associated": "it", "authorized_access_point": "Condello, Angela, 1956-", "biographical_information": ["Insegna Filosofia all'Universita di Torino, dove e vicerettore e presidente del Laboartorio di Ontologia"]} 1 +2024-09-11 09:01:35.858906 2024-09-11 09:01:35.85891 ac36d088-015a-4578-b2d0-f2bfa9d0e79d {"md5": "f3713b686f9a76b01b72d4377dbd1e26", "pid": "1160217254", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1160217254", "source": "GND"}], "variant_name": ["Pazajew, Wiktor Iwanowitsch", "Пацаев, Виктор Иванович"], "date_of_birth": "10.06.1933", "date_of_death": "30.06.1971", "preferred_name": "Pacaev, Viktor Ivanovič", "country_associated": "ru", "variant_access_point": ["Pazajew, Wiktor Iwanowitsch, 1933-1971", "Пацаев, Виктор Иванович, 1933-1971"], "authorized_access_point": "Pacaev, Viktor Ivanovič, 1933-1971"} 1 +2024-09-11 09:01:35.919964 2024-09-11 09:01:35.919967 843d6979-f847-41f2-9949-0f49bac9510e {"md5": "2d6597d1075f396c3fc960a0f8c723f0", "pid": "1160325189", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1160325189", "source": "GND"}], "date_of_birth": "1901", "preferred_name": "Schintz, Wilhelm", "country_associated": "gw", "authorized_access_point": "Schintz, Wilhelm, 1901-"} 1 +2024-09-11 09:01:35.981689 2024-09-11 09:01:35.981694 9988af4f-a5d8-4a96-b6ac-73b7939cbcf7 {"md5": "761b478e8d1a8bc64c203d8c4dc3b7eb", "pid": "116037202", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116037202", "source": "GND"}], "preferred_name": "Bässler, Ralf", "country_associated": "gw", "authorized_access_point": "Bässler, Ralf"} 1 +2024-09-11 09:01:36.037535 2024-09-11 09:01:36.037539 027928ab-1ab6-40b3-8a50-16d426b23bce {"md5": "dfb195e6a1868aa22bb418aa6c02f13d", "pid": "116075899", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116075899", "source": "GND"}], "variant_name": ["Baruch, Löb Jakob", "Baruch, Jacob"], "date_of_birth": "24.10.1763", "date_of_death": "19.04.1827", "preferred_name": "Baruch, Jakob", "country_associated": "gw", "variant_access_point": ["Baruch, Löb Jakob, 1763-1827", "Baruch, Jacob, 1763-1827"], "authorized_access_point": "Baruch, Jakob, 1763-1827"} 1 +2024-09-11 09:01:36.10235 2024-09-11 09:01:36.102353 1b6973a7-cbb9-447f-8022-be8347911d6f {"md5": "2497f910133ff99c6fcccf00ae3398b7", "pid": "1160946140", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1160946140", "source": "GND"}], "preferred_name": "Stedennetwerk G40", "country_associated": "ne", "authorized_access_point": "Stedennetwerk G40"} 1 +2024-09-11 09:01:36.157024 2024-09-11 09:01:36.157027 473bb12a-0aa3-4000-a12a-d2fcf4230a07 {"md5": "47b6fc6bccf9310c455a6f3f641ac21b", "pid": "116102932X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116102932X", "source": "GND"}], "variant_name": ["Kayibanda, A."], "date_of_birth": "1976", "preferred_name": "Kayibanda, Alice", "country_associated": "rw", "variant_access_point": ["Kayibanda, A., 1976-"], "authorized_access_point": "Kayibanda, Alice, 1976-"} 1 +2024-09-11 09:01:36.2241 2024-09-11 09:01:36.224102 88853dc2-7363-4cd8-8c9d-c1e61990569a {"md5": "4a2f973fa1ebf9833ebee0051032928b", "pid": "116120444", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116120444", "source": "GND"}], "preferred_name": "Benetti, Jacopo", "country_associated": "it", "authorized_access_point": "Benetti, Jacopo", "biographical_information": ["Rom; Bologna (Wirkungsort)"]} 1 +2024-09-11 09:01:36.284225 2024-09-11 09:01:36.28423 99806484-8353-4b27-a01e-99967583d94a {"md5": "a835cf9e39451b7dd9eaceb6521db868", "pid": "116144131X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116144131X", "source": "GND"}], "date_of_birth": "1981", "preferred_name": "Reznick, Graham", "country_associated": "xxu", "authorized_access_point": "Reznick, Graham, 1981-"} 1 +2024-09-11 09:01:36.339956 2024-09-11 09:01:36.339959 b04a3346-abf8-41c2-8a0f-350a264c4c76 {"md5": "a6b29d43240db1b1ed402e01f2be7634", "pid": "116189673", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116189673", "source": "GND"}], "date_of_birth": "1878", "date_of_death": "1960", "preferred_name": "Pippel, Otto", "country_associated": "pl", "authorized_access_point": "Pippel, Otto, 1878-1960", "biographical_information": ["Poln. Maler, lebte in Deutschland"]} 1 +2024-09-11 09:01:36.39219 2024-09-11 09:01:36.392194 e9cf8d2d-21ba-4391-b89a-f0e9e7d55ee3 {"md5": "417c63c9e3ef8d38bf74cef357bfe6d2", "pid": "1162523271", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1162523271", "source": "GND"}], "variant_name": ["Natalse Instituut van Argitekte", "NIA"], "preferred_name": "Natal Institute of Architects", "country_associated": "sa", "variant_access_point": ["Natalse Instituut van Argitekte", "NIA. Abkuerzung"], "date_of_establishment": "1991", "authorized_access_point": "Natal Institute of Architects"} 1 +2024-09-11 09:01:36.450557 2024-09-11 09:01:36.45056 7892ae64-854a-40e7-a5bd-7f4a9de0e016 {"md5": "a5b158280d24b0c8b1abd17aecf58b0c", "pid": "1162968664", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1162968664", "source": "GND"}], "date_of_birth": "1954", "preferred_name": "Hein, Dieter", "country_associated": "gw", "authorized_access_point": "Hein, Dieter, 1954-"} 1 +2024-09-11 09:01:36.499927 2024-09-11 09:01:36.49993 18850cf4-1937-4a54-8057-bfbe23192d83 {"md5": "ae17327121d77e83878d2627ce8ab02c", "pid": "1163054186", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1163054186", "source": "GND"}], "variant_name": ["Gaya, Joana-Albq Cercós i", "Cercós, Joana-Alba"], "date_of_birth": "1972", "preferred_name": "Cercós i Gaya, Joana-Alba", "country_associated": "sp", "variant_access_point": ["Gaya, Joana-Albq Cercós i, 1972-", "Cercós, Joana-Alba, 1972-"], "authorized_access_point": "Cercós i Gaya, Joana-Alba, 1972-"} 1 +2024-09-11 09:01:36.561799 2024-09-11 09:01:36.561802 25eb75a6-714c-4f4a-b8a7-1df1b1028044 {"md5": "9128cdeccfcdc8fd80a115b0f42c401c", "pid": "1163061921", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1163061921", "source": "GND"}], "variant_name": ["Kranich, Johannes Engelbertus", "Kranich, Johannes Engelbert", "Kranich, Johann Engelhard", "Kranich, Joh. Engelhardus"], "preferred_name": "Kranich, Johann Engelbert", "country_associated": "gw", "variant_access_point": ["Kranich, Johannes Engelbertus", "Kranich, Johannes Engelbert", "Kranich, Johann Engelhard", "Kranich, Joh. Engelhardus"], "authorized_access_point": "Kranich, Johann Engelbert", "biographical_information": ["Student in Marburg"]} 1 +2024-09-11 09:01:36.69772 2024-09-11 09:01:36.697723 c7381c89-3ffc-456f-8095-494e60cf1dbd {"md5": "ff3ae7d51aa0caaf48164ddd15e96a39", "pid": "116348747", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116348747", "source": "GND"}], "date_of_birth": "09.12.1822", "date_of_death": "09.05.1882", "preferred_name": "Haase, Rudolf", "country_associated": "gw", "authorized_access_point": "Haase, Rudolf, 1822-1882"} 1 +2024-09-11 09:01:36.774492 2024-09-11 09:01:36.774496 33205c7f-361f-4e62-a2eb-d1f6f90a8c21 {"md5": "a153526cc9660ec50b8d0ba584679d8d", "pid": "116361816", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116361816", "source": "GND"}], "variant_name": ["Haemmerli-Schindler, Theodor", "Schindler, Theodor Haemmerli-"], "date_of_birth": "1883", "date_of_death": "1944", "preferred_name": "Haemmerli, Theodor", "country_associated": "sz", "variant_access_point": ["Haemmerli-Schindler, Theodor, 1883-1944", "Schindler, Theodor Haemmerli-, 1883-1944"], "authorized_access_point": "Haemmerli, Theodor, 1883-1944"} 1 +2024-09-11 09:01:36.835956 2024-09-11 09:01:36.835959 b2183dbb-fcf7-4f99-b145-a888810d4ef4 {"md5": "d582d1200e00254429a0f2894c2cd9f8", "pid": "1163622265", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1163622265", "source": "GND"}], "date_of_birth": "1964", "preferred_name": "Schellhorn, Anne", "country_associated": "gw", "authorized_access_point": "Schellhorn, Anne, 1964-", "biographical_information": ["Arbeitsschwerpunkte: Behandlung hirnorganisch bedingter Verhaltensstörungen, soziales Kompetenztraining für Menschen mit erworbener Hirnschädigung"]} 1 +2024-09-11 09:01:36.887147 2024-09-11 09:01:36.887149 eadc265b-5b4b-439e-b171-b3cb894c05f2 {"md5": "07d30dfc1b17ffd2cd3974bee15e5879", "pid": "1163767662", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1163767662", "source": "GND"}], "preferred_name": "Feldmann, Niels", "authorized_access_point": "Feldmann, Niels"} 1 +2024-09-11 09:01:36.940517 2024-09-11 09:01:36.940521 315bb102-b0fa-4ab2-bce9-2a34cf1df911 {"md5": "f8935cf9ca497286404ad997f8d4265b", "pid": "116385103", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116385103", "source": "GND"}], "preferred_name": "Brackmann, Ursula", "country_associated": "gw", "authorized_access_point": "Brackmann, Ursula", "biographical_information": ["Geschäftsführerin des Verbands deutscher Schriftsteller (1975-1985)"]} 1 +2024-09-11 09:01:36.995619 2024-09-11 09:01:36.995623 229bc9d4-1581-477e-94ee-aa653646d45f {"md5": "052efee0eaa1842d11ce67b85438c5ae", "pid": "116397451X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116397451X", "source": "GND"}], "variant_name": ["Yang, Wayne"], "date_of_birth": "19XX", "preferred_name": "Yang, K. Wayne", "country_associated": "xxu", "variant_access_point": ["Yang, Wayne, 19XX-"], "authorized_access_point": "Yang, K. Wayne, 19XX-", "biographical_information": ["Studium der Sozial- und Kulturwissenschaften in der Bildung an der University of California, Berkeley; Mitbegründer von \\"The Land Relationship Super Collective\\" und des \\"Avenues Project\\""]} 1 +2024-09-11 09:01:37.052616 2024-09-11 09:01:37.052619 f326e388-0ccf-46ae-904d-50282e2975be {"md5": "f75ae4f93da816b9fbd2ca8811b98a3c", "pid": "1164191497", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1164191497", "source": "GND"}], "variant_name": ["Szaszkiewicz, Michal", "Shaskevich, Michael", "Šašković, Mihailo", "Šaškijević, Mihailo", "Šaškević, Mihailo"], "date_of_birth": "1929", "preferred_name": "Šaškijević, Mihailo", "variant_access_point": ["Szaszkiewicz, Michal, 1929-", "Shaskevich, Michael, 1929-", "Šašković, Mihailo, 1929-", "Šaškijević, Mihailo, 1929-", "Šaškević, Mihailo, 1929-"], "authorized_access_point": "Šaškijević, Mihailo, 1929-"} 1 +2024-09-11 09:01:37.105913 2024-09-11 09:01:37.105916 033881c2-72ae-4b95-9096-ccc6c6d506b0 {"md5": "110226ac005266a8ab7b876f780cedf2", "pid": "1164263269", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1164263269", "source": "GND"}], "date_of_birth": "06.07.1904", "date_of_death": "24.12.1980", "preferred_name": "Dettmar, Kurt", "country_associated": "gw", "authorized_access_point": "Dettmar, Kurt, 1904-1980", "biographical_information": ["Dt. Pfarrer in Wadersloh (Kreis Warendorf, Westfalen), geboren in Ferraz, Südbrasilien"]} 1 +2024-09-11 09:01:37.160036 2024-09-11 09:01:37.160039 e67208bd-b2a5-4546-b350-7ae66e84c357 {"md5": "81d3c7e07760a025cba876dd6e2b8956", "pid": "116439394", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116439394", "source": "GND"}], "variant_name": ["Rolf, Mathilde Feldern-", "Feldern Rolf, Mathilde"], "date_of_birth": "1810", "preferred_name": "Feldern-Rolf, Mathilde", "country_associated": "gw", "variant_access_point": ["Rolf, Mathilde Feldern-, 1810-", "Feldern Rolf, Mathilde, 1810-"], "authorized_access_point": "Feldern-Rolf, Mathilde, 1810-", "biographical_information": ["Wien; Stampfen (Wirkungsort)"]} 1 +2024-09-11 09:01:37.216168 2024-09-11 09:01:37.216172 a6c68f86-bc47-464d-bd34-8a3eb548da78 {"md5": "8f0e13596f669e2bcc1f913e047d6532", "pid": "116442743", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116442743", "source": "GND"}], "variant_name": ["Cancellieri, Francesco Girolamo", "Cancellieri, François", "Cancellieri, Francisco"], "date_of_birth": "10.10.1751", "date_of_death": "29.12.1826", "preferred_name": "Cancellieri, Francesco", "country_associated": "it", "variant_access_point": ["Cancellieri, Francesco Girolamo, 1751-1826", "Cancellieri, François, 1751-1826", "Cancellieri, Francisco, 1751-1826"], "authorized_access_point": "Cancellieri, Francesco, 1751-1826", "biographical_information": ["Italien. Bibliothekar, Archäologe, Literat", "Historiker, Bibliothekar"]} 1 +2024-09-11 09:01:37.267154 2024-09-11 09:01:37.267157 6aaf2b28-3755-4ed5-b8ac-e331654c8a30 {"md5": "bb3a2642d4135f009594a53107412c94", "pid": "1164502875", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1164502875", "source": "GND"}], "preferred_name": "Mateos, Mariano", "country_associated": "sp", "authorized_access_point": "Mateos, Mariano"} 1 +2024-09-11 09:01:37.318671 2024-09-11 09:01:37.318675 9d145ff8-d71a-4161-a4f9-cdf39a11e560 {"md5": "ec8efe354875af41e2869148ebb383f8", "pid": "1164710923", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1164710923", "source": "GND"}], "preferred_name": "Gelbhaus, Tea", "country_associated": "sz", "authorized_access_point": "Gelbhaus, Tea"} 1 +2024-09-11 09:01:37.375608 2024-09-11 09:01:37.375612 a37e801f-9d66-400a-afa3-00af63cef669 {"md5": "e563d5e553c32b1477e00a010a3b60ce", "pid": "11647839X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/11647839X", "source": "GND"}], "preferred_name": "Enge, Max", "country_associated": "gw", "authorized_access_point": "Enge, Max", "biographical_information": ["Freiburg/Br. (Wirkungsort)"]} 1 +2024-09-11 09:01:37.426394 2024-09-11 09:01:37.426397 39077b63-cdbf-44be-b72a-833bb83789a8 {"md5": "225b788d964bf983f94e8cf9d7024428", "pid": "116481536", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116481536", "source": "GND"}], "variant_name": ["Breithaupt, Max Maximilian Friedrich Karl", "Breithaupt, Maximilianus", "Breithaupt, Maximilian"], "date_of_birth": "06.08.1888", "date_of_death": "12.12.1965", "preferred_name": "Breithaupt, Max", "country_associated": "gw", "variant_access_point": ["Breithaupt, Max Maximilian Friedrich Karl, 1888-1965", "Breithaupt, Maximilianus, 1888-1965", "Breithaupt, Maximilian, 1888-1965"], "authorized_access_point": "Breithaupt, Max, 1888-1965", "biographical_information": ["Heidelberg, Univ., Diss., 1913"]} 1 +2024-09-11 09:01:37.481951 2024-09-11 09:01:37.481955 a88b2ad1-1e54-4740-8795-32417c7842c5 {"md5": "97cd6ce7edb3f2a0f906b5808c0b0fc0", "pid": "116493011", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116493011", "source": "GND"}], "date_of_birth": "1879", "date_of_death": "1961", "preferred_name": "Chavance, René", "country_associated": "fr", "authorized_access_point": "Chavance, René, 1879-1961"} 1 +2024-09-11 09:01:37.537593 2024-09-11 09:01:37.537596 2ca14181-6736-4b3b-a314-e4684596280c {"md5": "aaa79274c4bdc31568f0601682d0931a", "pid": "1164996517", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1164996517", "source": "GND"}], "date_of_birth": "1941", "preferred_name": "Ishiodori, Kōichi", "country_associated": "ja", "parallel_access_point": ["石踊, 紘一, 1941-"], "authorized_access_point": "Ishiodori, Kōichi, 1941-"} 1 +2024-09-11 09:01:37.595056 2024-09-11 09:01:37.595059 688b10b7-bc5b-432e-bfc0-264683d1a77a {"md5": "af5e9731bce731dcdb6d9248bc02a34d", "pid": "1165187388", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1165187388", "source": "GND"}], "variant_name": ["Malik, Randa Abdel"], "preferred_name": "Abdel Malik, Randa", "country_associated": "gw", "variant_access_point": ["Malik, Randa Abdel"], "authorized_access_point": "Abdel Malik, Randa", "biographical_information": ["Diss. Fachbereich Biochemie, Chemie und Pharmazie an der Univ. Frankfurt am Main (2018)"]} 1 +2024-09-11 09:01:37.648997 2024-09-11 09:01:37.649 bf623b98-e0e1-4909-b8ec-1c3403febfc5 {"md5": "e05b7e56c20b137c65498ca958411a8f", "pid": "1165269503", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1165269503", "source": "GND"}], "variant_name": ["Birch, Suzanne E. Pilaar"], "preferred_name": "Pilaar Birch, Suzanne E.", "country_associated": "xxu", "variant_access_point": ["Birch, Suzanne E. Pilaar"], "authorized_access_point": "Pilaar Birch, Suzanne E."} 1 +2024-09-11 09:01:37.702338 2024-09-11 09:01:37.702342 eae8d8cd-2864-449a-abe2-e3cf832d378f {"md5": "9e5b909f5bbd30b0f8e5cab6cf79a573", "pid": "1165531615", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1165531615", "source": "GND"}], "variant_name": ["A. Entsch Theater-Agentur und Bühnen-Manuscripten Debit Berlin", "A. Entsch Theater-Agentur und Bühnen-Manuskript Debit Berlin", "A. Entsch Theater-Agentur und Bühnen-Manuskripten Debit Berlin", "Theater-Agentur und Bühnen-Manuscripten Debit A. Entsch", "Theater-Agentur A. Entsch", "Theateragentur von A. Entsch, A. Heinrich's Nachfolger Berlin", "Theater-Agentur von A. Entsch"], "preferred_name": "A. Entsch Theater-Agentur und Bühnen-Manuscript Debit Berlin", "variant_access_point": ["A. Entsch Theater-Agentur und Bühnen-Manuscripten Debit Berlin", "A. Entsch Theater-Agentur und Bühnen-Manuskript Debit Berlin", "A. Entsch Theater-Agentur und Bühnen-Manuskripten Debit Berlin", "Theater-Agentur und Bühnen-Manuscripten Debit A. Entsch", "Theater-Agentur A. Entsch", "Theateragentur von A. Entsch, A. Heinrich's Nachfolger Berlin", "Theater-Agentur von A. Entsch"], "authorized_access_point": "A. Entsch Theater-Agentur und Bühnen-Manuscript Debit Berlin", "biographical_information": ["ovaler Stempel mit Aufdruck: A. Entsch Theater-Agentur und Bühnen-Manuscript Debit Berlin, N.W. Mittel-Strasse 25. ; Stempel \\"Theateragentur von A. Entsch, ... Heinrichs Nachfolger Berlin\\""]} 1 +2024-09-11 09:01:37.755553 2024-09-11 09:01:37.755556 5cf09117-26a7-4e93-a410-a0e4ab995b90 {"md5": "80a940feae3a1eb52e5ea484ecb6085f", "pid": "1165547821", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1165547821", "source": "GND"}], "preferred_name": "Beß, Christoph von", "country_associated": "gw", "authorized_access_point": "Beß, Christoph von", "biographical_information": ["aus schlesischem Adel; 1614 im Collegium illustre zu Tübingen"]} 1 +2024-09-11 09:01:37.828356 2024-09-11 09:01:37.82836 b1ce8923-e21a-4bae-bfb4-a23d74a6acb8 {"md5": "d7e1d8659f638c1e851d3cdd53f41e45", "pid": "1165583534", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1165583534", "source": "GND"}], "date_of_birth": "08.04.1923", "date_of_death": "10.08.2018", "preferred_name": "Ludwig, Hilde", "country_associated": "gw", "authorized_access_point": "Ludwig, Hilde, 1923-2018"} 1 +2024-09-11 09:01:37.894608 2024-09-11 09:01:37.894613 7caadba9-1643-48ed-ba0c-55cfdeaf5e4d {"md5": "a01dddff159afef185b87a3eeb2624cb", "pid": "1165585391", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1165585391", "source": "GND"}], "variant_name": ["Konviktorium", "Konviktorium der Universität Helmstedt", "Fürstliches Convictorium", "Das königliche und herzogliche Convictorium", "Königliches und herzogliches Convictorium"], "preferred_name": "Academia Julia. Konviktorium", "date_of_termination": "1808", "variant_access_point": ["Konviktorium. Helmstedt", "Konviktorium der Universität Helmstedt", "Fürstliches Convictorium. Helmstedt", "Das königliche und herzogliche Convictorium. Helmstedt", "Königliches und herzogliches Convictorium. Helmstedt"], "date_of_establishment": "ca. 1584", "authorized_access_point": "Academia Julia. Konviktorium", "biographical_information": ["Universitäre Einrichtung zur Versorgung von Studenten des Herzogtums Braunschweig-Lüneburg (später nur der Fürstentums Wolfenbüttel und zugehörige Gebiete)"]} 1 +2024-09-11 09:01:37.969612 2024-09-11 09:01:37.969615 526d502a-4b04-451e-8cf2-2707887d2b24 {"md5": "62a851de9932f52f36301c3e3ce51268", "pid": "116582782", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116582782", "source": "GND"}], "date_of_birth": "02.02.1854", "date_of_death": "XX.XX.1922", "preferred_name": "Roe͏̈ll, Paul von", "country_associated": "gw", "authorized_access_point": "Roe͏̈ll, Paul von, 1854-1922", "biographical_information": ["Zunächst Offizier, 1883-86 Amtmann in Diez, dann Polizeirat in Ostpreußen, ab 1893 Landrat in Meseritz und 1894-1901 in Pleschen, später in Berlin journalistisch tätig. - Herausgeber der Zeitungen \\"Die deutsche, volkswirthschaftliche Correspondenz\\" und \\"Neue politische Correspondenz\\""]} 1 +2024-09-11 09:01:38.023238 2024-09-11 09:01:38.023241 0a2afdd1-033b-4e6f-8ab5-138db0f2d220 {"md5": "c568b744d1f73c912ce08f6005cd7204", "pid": "116600233", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116600233", "source": "GND"}], "variant_name": ["Kuh, Oskar", "Cuh, Oskar"], "date_of_birth": "1858", "date_of_death": "1930", "preferred_name": "Kuh, Oscar", "country_associated": "gw", "variant_access_point": ["Kuh, Oskar, 1858-1930", "Cuh, Oskar, 1858-1930"], "authorized_access_point": "Kuh, Oscar, 1858-1930", "biographical_information": ["Zeitungsbesitzer; Vorsitzender des Verbandes der deutschen Journalisten in Böhmen"]} 1 +2024-09-11 09:01:38.077858 2024-09-11 09:01:38.077861 dae211c7-ccc3-47f6-9217-daa6b7bf1d00 {"md5": "33a4500d86027b309495ca4ffbfc7227", "pid": "116601795", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116601795", "source": "GND"}], "preferred_name": "Fleischhacker, Ludowika", "country_associated": "gw", "authorized_access_point": "Fleischhacker, Ludowika"} 1 +2024-09-11 09:01:38.14081 2024-09-11 09:01:38.140813 3eb4f055-a233-4096-857b-a4a449e875d5 {"md5": "b933497064e360f882c2659cac5b47b0", "pid": "1166105709", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1166105709", "source": "GND"}], "preferred_name": "Stirrup", "country_associated": "xxu", "authorized_access_point": "Stirrup. Musikgruppe"} 1 +2024-09-11 09:01:38.192175 2024-09-11 09:01:38.192179 96c1b285-65a1-43f4-bf47-3568681bf360 {"md5": "32981ce1ee79826d4c416ba37edae0d0", "pid": "1166156494", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1166156494", "source": "GND"}], "date_of_birth": "1978", "preferred_name": "Göktas, Elvan", "country_associated": "sz", "authorized_access_point": "Göktas, Elvan, 1978-"} 1 +2024-09-11 09:01:38.24374 2024-09-11 09:01:38.243742 26ef44f6-4f13-4efb-9c53-5cbfb7c55335 {"md5": "b6b6606d7ba9ef4291dc3db1653b952e", "pid": "116629673", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116629673", "source": "GND"}], "preferred_name": "Cohn, Lisa", "country_associated": "gw", "authorized_access_point": "Cohn, Lisa"} 1 +2024-09-11 09:01:38.295714 2024-09-11 09:01:38.295718 8050a440-572c-4021-8c5a-e5a26d7a4d2e {"md5": "a03e676380b8b90206a0445bad9cda14", "pid": "116679875", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116679875", "source": "GND"}], "variant_name": ["Mahlow, Georg"], "date_of_birth": "1857", "preferred_name": "Mahlow, Georg Heinrich", "country_associated": "gw", "variant_access_point": ["Mahlow, Georg, 1857-"], "authorized_access_point": "Mahlow, Georg Heinrich, 1857-"} 1 +2024-09-11 09:01:38.351211 2024-09-11 09:01:38.351215 a4d5e17c-4446-498b-8ebc-bc3306e9e4f6 {"md5": "23beef4d618dbdadac8ee381c68d8236", "pid": "1166857204", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1166857204", "source": "GND"}], "date_of_birth": "1980", "preferred_name": "Darné, Txell", "country_associated": "sp", "authorized_access_point": "Darné, Txell, 1980-"} 1 +2024-09-11 09:01:38.41987 2024-09-11 09:01:38.419874 022f2f21-899c-4081-82a4-3b407210f48e {"md5": "851e38f380be0235ff6a0a132dd71e70", "pid": "1166992330", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1166992330", "source": "GND"}], "preferred_name": "Durner, Tracey", "authorized_access_point": "Durner, Tracey"} 1 +2024-09-11 09:01:38.473429 2024-09-11 09:01:38.473433 e61fea5a-2d7d-4770-82cd-98f445f452bf {"md5": "1386f752dfad9c73c57353f15e2c40a8", "pid": "11671848X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/11671848X", "source": "GND"}], "date_of_birth": "1794", "date_of_death": "1865", "preferred_name": "Franque, Johann Benedikt", "country_associated": "gw", "authorized_access_point": "Franque, Johann Benedikt, 1794-1865"} 1 +2024-09-11 09:01:38.541993 2024-09-11 09:01:38.541996 576e9283-6e1d-4d45-98e9-1c9cfc966668 {"md5": "4e2443923f1b1a5c99d2190674f08f43", "pid": "116736410", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116736410", "source": "GND"}], "variant_name": ["Heringa, Elizaśzoon, Jouke of Jodocus"], "date_of_birth": "1765", "date_of_death": "1840", "preferred_name": "Heringa, Elizaśzoon", "country_associated": "ne", "variant_access_point": ["Heringa, Elizaśzoon, Jouke of Jodocus, 1765-1840"], "authorized_access_point": "Heringa, Elizaśzoon, 1765-1840", "biographical_information": ["Professor"]} 1 +2024-09-11 09:01:38.596182 2024-09-11 09:01:38.596185 a55fe4d8-583a-43c6-a67f-3596730c4655 {"md5": "943b457bc9ab3b703fa6a7a6e8119130", "pid": "116755776", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116755776", "source": "GND"}], "preferred_name": "Goldschmidt, Adele", "country_associated": "gw", "authorized_access_point": "Goldschmidt, Adele", "biographical_information": ["Gattin des Juristen Levin Goldschmidt"]} 1 +2024-09-11 09:01:38.647775 2024-09-11 09:01:38.647778 6c03ad44-dfa0-4d4b-b88d-325b6fdd8776 {"md5": "444e413c1b7c8da69d602ff6a3d1a90c", "pid": "1168165466", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1168165466", "source": "GND"}], "variant_name": ["Junior Ulu, Avataeao"], "preferred_name": "Ulu, Avataeao Junior", "variant_access_point": ["Junior Ulu, Avataeao"], "authorized_access_point": "Ulu, Avataeao Junior", "biographical_information": ["has worked in the wider Pacific region since 2002"]} 1 +2024-09-11 09:02:08.969564 2024-09-11 09:02:08.969567 f6f2c4ca-ad82-4170-b233-13bd58e29a1a {"md5": "6e5a0000c3b4b3d9e3715acb9dcf7e4c", "pid": "127307427", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/127307427", "source": "GND"}], "preferred_name": "Henriot, Jean-Claude", "authorized_access_point": "Henriot, Jean-Claude"} 1 +2024-09-11 09:01:38.697666 2024-09-11 09:01:38.697668 27c9d945-4257-40c0-84bd-33e20ac4d4a1 {"md5": "e65cac42d68cb74e4b7e0d48c1e3548f", "pid": "1168177111", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1168177111", "source": "GND"}], "variant_name": ["Huch, Frieda Stein-", "Huch, Frieda", "Stein, Frieda"], "date_of_birth": "28.02.1852", "date_of_death": "16.11.1952", "preferred_name": "Stein-Huch, Frieda", "country_associated": "gw", "variant_access_point": ["Huch, Frieda Stein-, 1876-1952", "Huch, Frieda, 1876-1952", "Stein, Frieda, 1876-1952"], "authorized_access_point": "Stein-Huch, Frieda, 1876-1952"} 1 +2024-09-11 09:01:38.751204 2024-09-11 09:01:38.751208 ec0eace4-8f34-48d2-b45c-a318a013af3d {"md5": "96e765a41090ab069c56ff720719066f", "pid": "116830565", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116830565", "source": "GND"}], "preferred_name": "Greig, David", "country_associated": "xxk", "authorized_access_point": "Greig, David"} 1 +2024-09-11 09:01:38.809153 2024-09-11 09:01:38.809156 00aa6065-437f-4370-b3f5-ef73e6f64292 {"md5": "bdf4519def2fa0b69ab7bd6e4298a003", "pid": "11683188X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/11683188X", "source": "GND"}], "variant_name": ["Phroelychius, Thomas"], "preferred_name": "Frolichius, Thomas", "country_associated": "gw", "variant_access_point": ["Phroelychius, Thomas"], "authorized_access_point": "Frolichius, Thomas"} 1 +2024-09-11 09:01:38.874784 2024-09-11 09:01:38.874788 4c0dc964-ee82-4360-9c83-a71343d5e4ff {"md5": "1b97b19a68db55c0bc9d038b9e6a5aa7", "pid": "116864366X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116864366X", "source": "GND"}], "preferred_name": "Finter, Nicoletta", "country_associated": "gw", "authorized_access_point": "Finter, Nicoletta", "biographical_information": ["Dissertation an der Universität zu Köln in 2018"]} 1 +2024-09-11 09:01:38.938773 2024-09-11 09:01:38.938775 58762a8c-2057-450f-94e8-1d348f4139f6 {"md5": "23c777ad7615ee2ec357ed202d8029ec", "pid": "1168683211", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1168683211", "source": "GND"}], "variant_name": ["PTC, 12.", "12th Pipeline Technology Conference"], "preferred_name": "Pipeline Technology Conference, 12.", "country_associated": "gw", "variant_access_point": ["PTC. Veranstaltung, 12., 2017, Berlin", "12th Pipeline Technology Conference"], "authorized_access_point": "Pipeline Technology Conference, 12., 2017, Berlin"} 1 +2024-09-11 09:01:38.991847 2024-09-11 09:01:38.991851 2a2217a8-687f-472b-bd01-5f95eccc6b4c {"md5": "5cf1da8bf8ef2a82df57610330126d23", "pid": "116903953", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116903953", "source": "GND"}], "variant_name": ["Hirsch, Christophor. Frider.", "Hirsch, Christoph Friedrich"], "date_of_birth": "1778", "date_of_death": "1850", "preferred_name": "Hirsch, Christoph Friedrich von", "country_associated": "gw", "variant_access_point": ["Hirsch, Christophor. Frider., 1778-1850", "Hirsch, Christoph Friedrich, 1778-1850"], "authorized_access_point": "Hirsch, Christoph Friedrich von, 1778-1850"} 1 +2024-09-11 09:01:39.046641 2024-09-11 09:01:39.046645 3daccb17-a242-4ee8-b95f-3f72db7d5f87 {"md5": "684d156b25a4fbcb0eb191df21db8a51", "pid": "1169048099", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1169048099", "source": "GND"}], "variant_name": ["Labrador, Javier"], "date_of_birth": "ca. 20. Jh.", "preferred_name": "Deulofeu Labrador, Javier", "country_associated": "cu", "variant_access_point": ["Labrador, Javier, ca. 20. Jh."], "authorized_access_point": "Deulofeu Labrador, Javier, ca. 20. Jh."} 1 +2024-09-11 09:01:39.101125 2024-09-11 09:01:39.101127 d922ed1a-53b0-4535-97f1-c0deec713e4b {"md5": "9c04ab16cc34d5a296edcd686f17f0e3", "pid": "1169139434", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1169139434", "source": "GND"}], "date_of_birth": "1801", "date_of_death": "1864", "preferred_name": "Maresch, Ludwig", "country_associated": "gw", "authorized_access_point": "Maresch, Ludwig, 1801-1864", "biographical_information": ["preußischer Generalmajor"]} 1 +2024-09-11 09:01:39.156358 2024-09-11 09:01:39.156362 5c973ebc-9bbb-449b-9b50-e19ae945c9f6 {"md5": "cbca1dedff6642bc275d4c7507fb31e3", "pid": "1169173837", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1169173837", "source": "GND"}], "preferred_name": "Bachmann, Laura", "country_associated": "gw", "authorized_access_point": "Bachmann, Laura", "biographical_information": ["arbeitet als Projektleiterin beim August Dreesbach Verlag, Studium an der Goethe-Universität Frankfurt am Main"]} 1 +2024-09-11 09:01:39.239312 2024-09-11 09:01:39.239316 d8f1efd9-ee6c-4ba4-808d-4dc2a8ae3c45 {"md5": "255c0a9eb44cfc43edac8516cd8dd8d8", "pid": "1169226531", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1169226531", "source": "GND"}], "date_of_birth": "1953", "preferred_name": "Miguel, Jerónimo", "country_associated": "sp", "authorized_access_point": "Miguel, Jerónimo, 1953-"} 1 +2024-09-11 09:01:39.293282 2024-09-11 09:01:39.293286 223c606a-aaa3-4bc7-8568-a5c3dcfb42d9 {"md5": "a9e7f74e47dd1d9b3646e2dd6976602c", "pid": "116934565", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116934565", "source": "GND"}], "preferred_name": "Hofbauer, Rudolf", "country_associated": "gw", "authorized_access_point": "Hofbauer, Rudolf"} 1 +2024-09-11 09:01:39.359007 2024-09-11 09:01:39.359012 82820a61-aa1f-40f2-9fc3-2177a58bfb29 {"md5": "02007fc9b2ab4102084b0014dc0ce6dc", "pid": "116986700", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116986700", "source": "GND"}], "preferred_name": "Lidmann, Sara", "country_associated": "dk", "authorized_access_point": "Lidmann, Sara", "biographical_information": ["Missenträsk (Wirkungsort)"]} 1 +2024-09-11 09:01:40.148988 2024-09-11 09:01:40.148992 0d2f6a99-2baf-4346-a62a-c0603d05c2c3 {"md5": "d634099d87772ba6762dcd4eed367956", "pid": "117155608", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/117155608", "source": "GND"}], "date_of_birth": "1860", "date_of_death": "1946", "preferred_name": "Loesch, Ernst", "country_associated": "gw", "authorized_access_point": "Loesch, Ernst, 1860-1946", "biographical_information": ["Dt. Maler und Schriftsteller"]} 1 +2024-09-11 09:01:39.413017 2024-09-11 09:01:39.413022 02616fc6-0fbd-437f-aaf3-ddddb1ac12b1 {"md5": "9f89b3b4e9b5d9b350cb3bfea016c9d9", "pid": "116991992", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116991992", "source": "GND"}], "variant_name": ["Ravestein, Emile de Meester de", "Meester de Ravestein, E.", "Ravestein, E. Meester de"], "date_of_birth": "1813", "date_of_death": "1889", "preferred_name": "Meester de Ravestein, Emile de", "country_associated": "be", "variant_access_point": ["Ravestein, Emile de Meester de, 1813-1889", "Meester de Ravestein, E., 1813-1889", "Ravestein, E. Meester de, 1813-1889"], "authorized_access_point": "Meester de Ravestein, Emile de, 1813-1889", "biographical_information": ["Belg. Diplomat und Kunstsammler"]} 1 +2024-09-11 09:01:39.473423 2024-09-11 09:01:39.473426 d63f504f-54d9-4d38-93f7-9d0059cc45e9 {"md5": "6878d1887269f207cfec5c105f451454", "pid": "1169953743", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1169953743", "source": "GND"}], "date_of_birth": "06.09.1828", "date_of_death": "01.03.1883", "preferred_name": "Schlichter, Christian", "country_associated": "gw", "authorized_access_point": "Schlichter, Christian, 1828-1883", "biographical_information": ["1882-1883 Erster Bürgermeister von Wiesbaden"]} 1 +2024-09-11 09:01:39.535198 2024-09-11 09:01:39.535201 b9cc5947-504f-4ddb-a431-db1c0984278b {"md5": "6869d1150880396729cb6a9c0981f24c", "pid": "1169969305", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1169969305", "source": "GND"}], "variant_name": ["Maheswari Viswanathan, Uma"], "date_of_birth": "13.08.1986", "preferred_name": "Viswanathan, Uma Maheswari", "country_associated": "ii", "variant_access_point": ["Maheswari Viswanathan, Uma, 1986-"], "authorized_access_point": "Viswanathan, Uma Maheswari, 1986-"} 1 +2024-09-11 09:01:39.58658 2024-09-11 09:01:39.586583 edb370ce-56d6-487b-8356-db2e081d1daf {"md5": "597c323c6add4d17b26f1bbb4c613760", "pid": "1170278353", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1170278353", "source": "GND"}], "preferred_name": "Clark, M.", "authorized_access_point": "Clark, M."} 1 +2024-09-11 09:01:39.648091 2024-09-11 09:01:39.648095 356584d2-b1b7-42dd-8a9d-7e200f5047c5 {"md5": "efa6a995f4c6c0b3cadbdbbac741a298", "pid": "1170426131", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1170426131", "source": "GND"}], "variant_name": ["Zheng Wenhui", "郑, 文辉"], "preferred_name": "Zheng, Wenhui", "country_associated": "cc", "variant_access_point": ["Zheng Wenhui", "郑, 文辉"], "parallel_access_point": ["郑文辉"], "authorized_access_point": "Zheng, Wenhui", "biographical_information": ["früher außerordentlicher Professor an der Zhongshan University"]} 1 +2024-09-11 09:01:39.701473 2024-09-11 09:01:39.701476 e862a463-68d1-4cc7-9fca-7b8d6062539b {"md5": "309a180245d655e6f6c5514f383dc8cf", "pid": "1170451594", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1170451594", "source": "GND"}], "date_of_birth": "1990", "preferred_name": "Kingston, Cheryl", "country_associated": "gw", "authorized_access_point": "Kingston, Cheryl, 1990-", "biographical_information": ["in Nordrhein-Westfalen geboren"]} 1 +2024-09-11 09:01:39.754143 2024-09-11 09:01:39.754147 eedac0da-303c-40c9-aa7b-87a2a1e440df {"md5": "98a42346b3e1b9e765f1e5c802a4c525", "pid": "117054437", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/117054437", "source": "GND"}], "preferred_name": "Hug, Nanette", "country_associated": "gw", "authorized_access_point": "Hug, Nanette"} 1 +2024-09-11 09:01:39.812255 2024-09-11 09:01:39.81226 2a4cfeda-0dc5-4d92-8a8b-16f640709ba7 {"md5": "fb119a44a29c6cdfa89f0f7298309165", "pid": "1170618367", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1170618367", "source": "GND"}], "date_of_birth": "1988", "preferred_name": "Meyer, Bettina", "country_associated": "sz", "authorized_access_point": "Meyer, Bettina, 1988-", "biographical_information": ["Diss. ETH Zürich 2017, Institut für Atmosphäre und Klima"]} 1 +2024-09-11 09:01:39.873084 2024-09-11 09:01:39.873088 8510219a-a66b-4722-b32a-da8da8faa81d {"md5": "926a3cc614282a46712379daf5643381", "pid": "1170737064", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1170737064", "source": "GND"}], "preferred_name": "Lynn, Thomas Jay", "country_associated": "xxu", "authorized_access_point": "Lynn, Thomas Jay"} 1 +2024-09-11 09:01:39.928949 2024-09-11 09:01:39.928952 33322fdb-289f-4c5d-9d96-9b7940fdf27b {"md5": "20f7a88502fcef48331fc20e3cf1f961", "pid": "1170837611", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1170837611", "source": "GND"}], "preferred_name": "Bindel, Carina", "country_associated": "gw", "authorized_access_point": "Bindel, Carina", "biographical_information": ["Bachelorarbeit, Eberhard Karls Universität Tübingen, 2018"]} 1 +2024-09-11 09:01:39.98182 2024-09-11 09:01:39.981824 05ff48cb-7d00-46b3-8f71-06511397655d {"md5": "7ee828e0e559619206ff7a3117dd4a28", "pid": "1171152183", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1171152183", "source": "GND"}], "preferred_name": "Krausz, Barbara", "country_associated": "hu", "authorized_access_point": "Krausz, Barbara", "biographical_information": ["Dissertation Universität Stuttgart 2018, Fakultät Konstruktions-, Produktions- und Fahrzeugtechnik"]} 1 +2024-09-11 09:01:40.03696 2024-09-11 09:01:40.036963 b003831e-5e5c-404a-b77d-1db3f468fe7f {"md5": "61a2136879afce38a27abb53ea65cf7b", "pid": "117125184X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/117125184X", "source": "GND"}], "preferred_name": "Büker, Gundula", "country_associated": "gw", "authorized_access_point": "Büker, Gundula"} 1 +2024-09-11 09:01:40.092282 2024-09-11 09:01:40.092285 44493407-df2a-4aa7-bd7e-338c9bb818ff {"md5": "da531e8cb190b8484971975a5d073b77", "pid": "117143553", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/117143553", "source": "GND"}], "variant_name": ["Prus, Marian Morelovski de", "Morelowski, Marian"], "date_of_birth": "02.03.1884", "date_of_death": "25.07.1963", "preferred_name": "Morelovski de Prus, Marian", "country_associated": "pl", "variant_access_point": ["Prus, Marian Morelovski de, 1884-1963", "Morelowski, Marian, 1884-1963"], "authorized_access_point": "Morelovski de Prus, Marian, 1884-1963"} 1 +2024-09-11 09:01:40.207075 2024-09-11 09:01:40.207078 4bcf32d9-cbfc-49ba-872b-737a7bf9d89e {"md5": "34855d015a192c9f3e13d7ec8a469dd6", "pid": "1171765010", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1171765010", "source": "GND"}], "preferred_name": "La religion au XXIe siècle", "country_associated": "fr", "authorized_access_point": "La religion au XXIe siècle. Veranstaltung, 2016, Marseille"} 1 +2024-09-11 09:01:40.28028 2024-09-11 09:01:40.280284 24c33381-9b0a-4466-b5e7-56f4e098119f {"md5": "a3f518952196d75ee3f74345af04e2ff", "pid": "117186430", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/117186430", "source": "GND"}], "variant_name": ["Buttersack, Felix Friedrich", "Buttersack, Felix von"], "date_of_birth": "1833", "date_of_death": "1890", "preferred_name": "Buttersack, Felix", "country_associated": "gw", "variant_access_point": ["Buttersack, Felix Friedrich, 1833-1890", "Buttersack, Felix von, 1833-1890"], "authorized_access_point": "Buttersack, Felix, 1833-1890", "biographical_information": ["Tübingen (Wirkungsort)"]} 1 +2024-09-11 09:01:40.337107 2024-09-11 09:01:40.33711 f360516a-b96d-4317-8f1c-f7de78ab087a {"md5": "4aa7c0aecc914f9dc0f02c1b67181fec", "pid": "1172001731", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1172001731", "source": "GND"}], "preferred_name": "Weppelmann, Stéphanie", "country_associated": "gw", "authorized_access_point": "Weppelmann, Stéphanie"} 1 +2024-09-11 09:01:40.388632 2024-09-11 09:01:40.388636 22d1b2c6-8338-444f-b854-fb6fc33912d7 {"md5": "96bf74a6df6a54d39bba5a44c105a5d1", "pid": "1172048657", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1172048657", "source": "GND"}], "variant_name": ["ThIMEDOP", "Thüringer Innovationszentrum für Medzintechnik-Lösungen", "Thüringer Innovationszentrum für Medzintechnik", "Innovationszentrum Medzintechnik"], "preferred_name": "Thüringer Innovationszentrum für Medzintechnik-Lösungen (Diagnose, Therapie, Optimierung durch optische Lösungen)", "country_associated": "gw", "variant_access_point": ["ThIMEDOP. Abkuerzung", "Thüringer Innovationszentrum für Medzintechnik-Lösungen", "Thüringer Innovationszentrum für Medzintechnik", "Innovationszentrum Medzintechnik. Jena"], "date_of_establishment": "2018", "authorized_access_point": "Thüringer Innovationszentrum für Medzintechnik-Lösungen (Diagnose, Therapie, Optimierung durch optische Lösungen)", "biographical_information": ["Innovations- und Forschungszentrum des Universitätsklinikums Jena, der Technischen Universität Ilmenau und des Leibniz-Instituts für Photonische Technologien Jena"]} 1 +2024-09-11 09:01:40.465789 2024-09-11 09:01:40.465796 cf7d88de-6cdb-4cb2-9294-ceb6ac7d77e6 {"md5": "00034cca758c72d7114cddf6500a01c7", "pid": "1172083541", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1172083541", "source": "GND"}], "variant_name": ["Boss, Daniela"], "preferred_name": "Boß, Daniela", "country_associated": "gw", "variant_access_point": ["Boss, Daniela"], "authorized_access_point": "Boß, Daniela", "biographical_information": ["Masterarbeit 2014 Universität Bayreuth. - Seit 06/2015 wissenschaftliche Mitarbeiterin in der Abteilung Stadt- und Regionalentwicklung am Geographischen Institut der Universität Bayreuth"]} 1 +2024-09-11 09:01:40.535021 2024-09-11 09:01:40.535025 af4d49e1-1904-4704-b022-807938429317 {"md5": "018eab95989d7811e5248e856d05082f", "pid": "1172106339", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1172106339", "source": "GND"}], "variant_name": ["Templeton, Ian Campbell"], "date_of_birth": "1929", "preferred_name": "Templeton, Ian", "country_associated": "nz", "variant_access_point": ["Templeton, Ian Campbell, 1929-"], "authorized_access_point": "Templeton, Ian, 1929-"} 1 +2024-09-11 09:01:40.590964 2024-09-11 09:01:40.590967 b9fdb43d-d7e1-4c69-932a-6a61efe1b300 {"md5": "03e6c5d7327fd745cbd3f3afe06877e9", "pid": "1172300755", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1172300755", "source": "GND"}], "variant_name": ["Jing, Zhao", "Zhao Jing"], "preferred_name": "Zhao, Jing", "country_associated": "cc", "variant_access_point": ["Jing, Zhao", "Zhao Jing"], "authorized_access_point": "Zhao, Jing", "biographical_information": ["Business School, Beijing Technology and Business University, China"]} 1 +2024-09-11 09:01:40.656687 2024-09-11 09:01:40.656691 da954b1b-a87d-492f-95aa-5380bacb7fac {"md5": "976e7803ad3bc23455d68b3f287dd293", "pid": "117233218", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/117233218", "source": "GND"}], "preferred_name": "Sternberg, Natalie", "country_associated": "gw", "authorized_access_point": "Sternberg, Natalie", "biographical_information": ["Baronesse"]} 1 +2024-09-11 09:01:40.711019 2024-09-11 09:01:40.711022 27cc11ec-addb-43dc-a13d-6be23084d2f8 {"md5": "3bbf8520d0f335ec66385b1ba19514cc", "pid": "117249580", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/117249580", "source": "GND"}], "variant_name": ["Weiglein, Paul"], "date_of_birth": "26.09.1884", "date_of_death": "19.04.1958", "preferred_name": "Weiglin, Paul", "country_associated": "gw", "variant_access_point": ["Weiglein, Paul, 1884-1958"], "authorized_access_point": "Weiglin, Paul, 1884-1958"} 1 +2024-09-11 09:01:40.769729 2024-09-11 09:01:40.769733 7535b5da-b06d-4e1f-9154-5298b0f124e5 {"md5": "c18c406867b14610bf8d2f1d12f5bdc3", "pid": "1173303146", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1173303146", "source": "GND"}], "date_of_birth": "1960", "preferred_name": "Lavold, Bente", "country_associated": "no", "authorized_access_point": "Lavold, Bente, 1960-", "biographical_information": ["Mitarbeiterin der norwegischen Nationalbibliothek"]} 1 +2024-09-11 09:01:40.828643 2024-09-11 09:01:40.828647 7237ea4a-cb3c-440f-a810-24a666aa97ee {"md5": "797853e25ebb6db550dd4151c2dbbd94", "pid": "1173330542", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1173330542", "source": "GND"}], "preferred_name": "Cileček, Filip", "authorized_access_point": "Cileček, Filip"} 1 +2024-09-11 09:01:40.898424 2024-09-11 09:01:40.898428 bbbac04c-755c-4d50-bbbd-ac13d530eea1 {"md5": "8911e4ed1aaf366e35edc4e0dd0c90c2", "pid": "117352896", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/117352896", "source": "GND"}], "preferred_name": "Stuart, Maria", "country_associated": "gw", "authorized_access_point": "Stuart, Maria"} 1 +2024-09-11 09:01:41.008057 2024-09-11 09:01:41.00806 fa222d68-7683-4b86-90fb-c8f0eae7ab36 {"md5": "4ce52442690972ead7c5472685a5ea91", "pid": "117480797", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/117480797", "source": "GND"}], "preferred_name": "Spangenberg, Friedrich", "country_associated": "gw", "authorized_access_point": "Spangenberg, Friedrich"} 1 +2024-09-11 09:01:41.062271 2024-09-11 09:01:41.062274 d9cfd73a-62b5-45ce-a69c-c32039745360 {"md5": "6839520adedefbeaedbd4ca9206a86a6", "pid": "117490555", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/117490555", "source": "GND"}], "date_of_birth": "1845", "date_of_death": "1906", "preferred_name": "Spiess, Bernhard", "country_associated": "gw", "authorized_access_point": "Spiess, Bernhard, 1845-1906"} 1 +2024-09-11 09:01:41.117133 2024-09-11 09:01:41.117136 a1b160ad-979b-43a1-90c6-952246be0adc {"md5": "22db64267067f35245cba6719d0948f5", "pid": "1175036641", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1175036641", "source": "GND"}], "preferred_name": "Monkelbaan, Joachim", "country_associated": "ne", "authorized_access_point": "Monkelbaan, Joachim"} 1 +2024-09-11 09:01:41.188575 2024-09-11 09:01:41.18858 b09f975c-ac8a-40e0-9838-7ce44fe81196 {"md5": "dd368e91ac22e7c99122f66bb2b78ce8", "pid": "1175119865", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1175119865", "source": "GND"}], "date_of_birth": "1790", "date_of_death": "1840", "preferred_name": "Agazzini, Michele", "country_associated": "it", "authorized_access_point": "Agazzini, Michele, 1790-1840"} 1 +2024-09-11 09:01:41.243243 2024-09-11 09:01:41.243247 b45f451d-d23d-4b4d-b665-dad6f36a3fd2 {"md5": "b327a67027ec8402cf788b8c26b4fd59", "pid": "117520705", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/117520705", "source": "GND"}], "variant_name": ["Herrmann, I.", "Germann, I.", "Herrmann, J."], "date_of_birth": "29.07.1870", "date_of_death": "22.05.1945", "preferred_name": "Herrmann, Immanuel", "country_associated": "gw", "variant_access_point": ["Herrmann, I., 1870-1945", "Germann, I., 1870-1945", "Herrmann, J., 1870-1945"], "authorized_access_point": "Herrmann, Immanuel, 1870-1945", "biographical_information": ["Württembergischer Kriegsminister", "Elektrotechniker"]} 1 +2024-09-11 09:01:41.297393 2024-09-11 09:01:41.297397 5926be88-76ea-4e30-a6f4-644dfa381649 {"md5": "f5b1b1dc8586c267855bedc377d40cac", "pid": "1175431435", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1175431435", "source": "GND"}], "variant_name": ["Vito, Antonio de"], "preferred_name": "De Vito, Antonio", "country_associated": "gw", "variant_access_point": ["Vito, Antonio de"], "authorized_access_point": "De Vito, Antonio"} 1 +2024-09-11 09:01:41.353532 2024-09-11 09:01:41.353535 6d6a9b3c-e636-446d-b121-c336ef51cbd3 {"md5": "a64489f53195b55f4253e52a9938ddfe", "pid": "117546720", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/117546720", "source": "GND"}], "date_of_birth": "1801", "date_of_death": "1869", "preferred_name": "Hussian, Raphael Ferdinand", "country_associated": "au", "authorized_access_point": "Hussian, Raphael Ferdinand, 1801-1869"} 1 +2024-09-11 09:01:41.415576 2024-09-11 09:01:41.415581 7673cc51-3c0a-47a7-b843-1ee4780d4e2c {"md5": "13a7ffc001e4923c3fc5453ff204fcde", "pid": "1175643521", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1175643521", "source": "GND"}], "variant_name": ["Bibliotheek van het Zeeuwsch Genootschap der Wetenschappen"], "preferred_name": "Koninklijk Zeeuwsch Genootschap der Wetenschappen. Bibliotheek", "country_associated": "ne", "variant_access_point": ["Bibliotheek van het Zeeuwsch Genootschap der Wetenschappen"], "authorized_access_point": "Koninklijk Zeeuwsch Genootschap der Wetenschappen. Bibliotheek"} 1 +2024-09-11 09:01:41.477385 2024-09-11 09:01:41.477389 31d83264-a0a6-4090-a196-546e8949df2c {"md5": "92bcdcb4044427ee8a6521ead712b373", "pid": "1175653861", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1175653861", "source": "GND"}], "date_of_birth": "1947", "preferred_name": "Klar, Willi", "country_associated": "gw", "authorized_access_point": "Klar, Willi, 1947-", "biographical_information": ["Gründung einer Reiseagentur"]} 1 +2024-09-11 09:01:41.528365 2024-09-11 09:01:41.528368 e6022357-ec18-4939-83cf-995f277bdd12 {"md5": "47999bff8b2fbcf058f15b39abb8d4f9", "pid": "1176124900", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1176124900", "source": "GND"}], "preferred_name": "Slovenský národný korpus", "country_associated": "xo", "authorized_access_point": "Slovenský národný korpus. Projekt"} 1 +2024-09-11 09:01:41.585381 2024-09-11 09:01:41.585385 6667ab13-ae82-41d1-b962-f9145a5e9396 {"md5": "97d5552bbc119e9a45075d27c2fdbd9c", "pid": "1176219189", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1176219189", "source": "GND"}], "date_of_birth": "1974", "preferred_name": "Watzl, Petra", "country_associated": "gw", "authorized_access_point": "Watzl, Petra, 1974-", "biographical_information": ["Pflegepädagogin am Bildungszentrum des Klinikums Stuttgart"]} 1 +2024-09-11 09:01:41.644511 2024-09-11 09:01:41.644515 789bf632-a683-4a24-aa56-18c4c9c385fe {"md5": "23b75c93a6d4693df67c376d961b2a34", "pid": "1176442988", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1176442988", "source": "GND"}], "variant_name": ["Hammad, A."], "preferred_name": "Hammad, Ahmed", "variant_access_point": ["Hammad, A."], "authorized_access_point": "Hammad, Ahmed"} 1 +2024-09-11 09:01:41.699105 2024-09-11 09:01:41.699108 77b3e9d9-61f4-44f2-952f-289ef10a6ddd {"md5": "c07089e9f82afc60638210a377359135", "pid": "117655570", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/117655570", "source": "GND"}], "date_of_birth": "1779", "date_of_death": "1818", "preferred_name": "Ségur, Octave Henri Gabriel de", "country_associated": "fr", "authorized_access_point": "Ségur, Octave Henri Gabriel de, 1779-1818", "biographical_information": ["Comte"]} 1 +2024-09-11 09:01:42.523653 2024-09-11 09:01:42.523655 d67e0fe7-182a-4ccc-9cfe-3b15e21af835 {"md5": "8db6645356ea4e9f1dbb6a94f990e090", "pid": "117948682X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/117948682X", "source": "GND"}], "date_of_birth": "1962", "preferred_name": "Sperka, Jerzy", "country_associated": "pl", "authorized_access_point": "Sperka, Jerzy, 1962-"} 1 +2024-09-11 09:01:41.754991 2024-09-11 09:01:41.754993 45b645c2-0748-4e8c-a8f1-1ca07f35195f {"md5": "4e86a968ae64168b2760ca3936c79106", "pid": "1176847597", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1176847597", "source": "GND"}], "variant_name": ["Dick, Benjamin Kerry"], "date_of_birth": "23.11.1955", "date_of_death": "27.03.2017", "preferred_name": "Dick, Beau", "country_associated": "xxc", "variant_access_point": ["Dick, Benjamin Kerry, 1955-2017"], "authorized_access_point": "Dick, Beau, 1955-2017", "biographical_information": ["Kanadischer indigener Maskenschnitzer, Bildhauer, Maler, Galerist und Aktivist"]} 1 +2024-09-11 09:01:41.843036 2024-09-11 09:01:41.843039 87287dfb-4a6d-4957-a51f-8f2919ee249d {"md5": "ebef0ef23256442089fea95b0b251a6c", "pid": "117701408", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/117701408", "source": "GND"}], "preferred_name": "Engelhard, Hermann", "country_associated": "gw", "authorized_access_point": "Engelhard, Hermann", "biographical_information": ["Verwandter von M. Fürbringer"]} 1 +2024-09-11 09:01:41.911897 2024-09-11 09:01:41.9119 9b4a0a4e-a813-4d2e-a47c-57b13adc2332 {"md5": "404392fe8c05ca33efa9c393e3588f18", "pid": "1177093979", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1177093979", "source": "GND"}], "date_of_birth": "1976", "preferred_name": "Zenger, Roland", "country_associated": "sz", "authorized_access_point": "Zenger, Roland, 1976-", "biographical_information": ["Berner Grafiker"]} 1 +2024-09-11 09:01:41.965711 2024-09-11 09:01:41.965714 cc9daf87-964b-43f7-ad0a-9431f6caf1e5 {"md5": "19786374586a753ad04987e39f9fa22f", "pid": "117725293", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/117725293", "source": "GND"}], "date_of_birth": "1917", "date_of_death": "1996", "preferred_name": "Shanks, Daniel", "country_associated": "xxu", "authorized_access_point": "Shanks, Daniel, 1917-1996", "biographical_information": ["Amerikan. Mathematiker; Professor"]} 1 +2024-09-11 09:01:42.020864 2024-09-11 09:01:42.020866 0861d48c-6b3a-4481-8d29-da2ef728480a {"md5": "f8b4aacd0324d8f41c59236138dabcae", "pid": "1177717379", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1177717379", "source": "GND"}], "variant_name": ["Davies, John Michael"], "date_of_birth": "1942", "preferred_name": "Davies, John", "country_associated": "xxk", "variant_access_point": ["Davies, John Michael, 1942-"], "authorized_access_point": "Davies, John, 1942-"} 1 +2024-09-11 09:01:42.079686 2024-09-11 09:01:42.079689 f8bf9258-fd0b-41fa-96bb-10ef2c7bca81 {"md5": "40c25a0340ea5a0ef0b1c1723aa92d19", "pid": "1177904713", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1177904713", "source": "GND"}], "preferred_name": "Balmes, Hans-Otto", "country_associated": "gw", "authorized_access_point": "Balmes, Hans-Otto", "biographical_information": ["Polizeipräsident (Polizeipräsidium Ludwigshafen)"]} 1 +2024-09-11 09:01:42.135951 2024-09-11 09:01:42.135954 44353fbf-21c1-4310-a492-179b079e727c {"md5": "e0652d65b7c2ab52a23e9e464cc67201", "pid": "1178017486", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1178017486", "source": "GND"}], "variant_name": ["Hjarl Petersen, Jane"], "preferred_name": "Petersen, Jane Hjarl", "country_associated": "dk", "variant_access_point": ["Hjarl Petersen, Jane"], "authorized_access_point": "Petersen, Jane Hjarl"} 1 +2024-09-11 09:01:42.202614 2024-09-11 09:01:42.202617 7565beae-1a31-4dfc-9242-0147649fb01c {"md5": "fb90cc3b58eb7db83c307de906bb3264", "pid": "1178023370", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1178023370", "source": "GND"}], "preferred_name": "Raffaello, Anna", "country_associated": "it", "authorized_access_point": "Raffaello, Anna"} 1 +2024-09-11 09:01:42.261031 2024-09-11 09:01:42.261035 a80bd2e0-0cfe-4b04-907c-84e34c862ef4 {"md5": "1d842553fd05f50da234445234c4b983", "pid": "1178350002", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1178350002", "source": "GND"}], "preferred_name": "Aboubacar, Ouédraogo", "country_associated": "uv", "authorized_access_point": "Aboubacar, Ouédraogo"} 1 +2024-09-11 09:01:42.313405 2024-09-11 09:01:42.313409 9b7f7b7d-fd18-4878-b1ee-c544be325d07 {"md5": "36fe73753d5b2f6d89721b85d8cb2f9d", "pid": "1178484009", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1178484009", "source": "GND"}], "variant_name": ["Einspritzung und Kraftstoffe, 11.", "Injection and Fuels, 11.", "11. Fachtagung \\"Einspritzung und Kraftstoffe\\""], "preferred_name": "Tagung Einspritzung und Kraftstoffe, 11.", "country_associated": "gw", "variant_access_point": ["Einspritzung und Kraftstoffe. Veranstaltung, 11., 2018, Berlin", "Injection and Fuels. Veranstaltung, 11., 2018, Berlin", "11. Fachtagung \\"Einspritzung und Kraftstoffe\\""], "authorized_access_point": "Tagung Einspritzung und Kraftstoffe, 11., 2018, Berlin"} 1 +2024-09-11 09:01:42.371398 2024-09-11 09:01:42.3714 05d29cbc-f119-41cf-8bc0-79449c2c67b3 {"md5": "49fecf3d797822991867ac6b36474303", "pid": "1178833925", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1178833925", "source": "GND"}], "variant_name": ["Chang Chu Kuing", "Chang, Chu-Kuing", "Kuing, Chang Chu"], "preferred_name": "Chang, Chu Kuing", "country_associated": "cc", "variant_access_point": ["Chang Chu Kuing", "Chang, Chu-Kuing", "Kuing, Chang Chu"], "authorized_access_point": "Chang, Chu Kuing"} 1 +2024-09-11 09:01:42.420796 2024-09-11 09:01:42.420799 d772e2df-7096-402e-9c83-781253eb735e {"md5": "7f50ce7f40bc14696032b9c17c50a7f9", "pid": "1179197992", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1179197992", "source": "GND"}], "variant_name": ["Gorskij, N. N. Beljakov-", "Beljakov-Gorskij, N.", "Горский, Н. Н. Беляков-"], "preferred_name": "Beljakov-Gorskij, N. N.", "country_associated": "ru", "variant_access_point": ["Gorskij, N. N. Beljakov-", "Beljakov-Gorskij, N.", "Горский, Н. Н. Беляков-"], "parallel_access_point": ["Беляков-Горский, Н. Н."], "authorized_access_point": "Beljakov-Gorskij, N. N."} 1 +2024-09-11 09:01:42.474443 2024-09-11 09:01:42.474446 9ec5c007-f3e2-44f7-8b74-f8c5fcc2c117 {"md5": "165b770ee407e1af696c2617e7acd3bf", "pid": "1179207440", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1179207440", "source": "GND"}], "variant_name": ["Newman, Jacob", "Newman, Yacov"], "date_of_birth": "1914", "preferred_name": "Newman, J.", "country_associated": "sa", "variant_access_point": ["Newman, Jacob, 1914-", "Newman, Yacov, 1914-"], "authorized_access_point": "Newman, J., 1914-"} 1 +2024-09-11 09:01:42.579071 2024-09-11 09:01:42.579074 7ee86f64-9f61-47e2-9987-38189b8ad673 {"md5": "017dacf804e5c05530fca4eee9b6edb8", "pid": "117971041X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/117971041X", "source": "GND"}], "date_of_birth": "1699", "date_of_death": "1758", "preferred_name": "Pinckney, Charles Cotesworth", "country_associated": "xxk", "authorized_access_point": "Pinckney, Charles Cotesworth, 1699-1758", "biographical_information": ["Richter in south Carolina"]} 1 +2024-09-11 09:01:42.628366 2024-09-11 09:01:42.62837 d7d9b83b-9d2d-43aa-bb26-d1a62b1aa64f {"md5": "eb66a8e9d18fb5892948fcf75116c02a", "pid": "1179785266", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1179785266", "source": "GND"}], "date_of_birth": "09.03.1776", "date_of_death": "01.08.1866", "preferred_name": "Whitman, Ezekiel", "country_associated": "xxu", "authorized_access_point": "Whitman, Ezekiel, 1776-1866", "biographical_information": ["Zwischen 1809 und 1821 merfach Vertreter im US-Repräsentantenhaus für Maine. 1821-1822 Vertreter im US-Repräsentantenhaus für Maine."]} 1 +2024-09-11 09:01:42.678107 2024-09-11 09:01:42.678111 68a29031-a2c7-4cdd-9047-b95da379a2cb {"md5": "3086161b90eb11ec741fc077b05a9799", "pid": "1180539567", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1180539567", "source": "GND"}], "date_of_birth": "ca. 19. Jh.", "preferred_name": "Débouche, J.", "country_associated": "fr", "authorized_access_point": "Débouche, J., ca. 19. Jh."} 1 +2024-09-11 09:01:42.729363 2024-09-11 09:01:42.729367 404bd2f6-10ca-4225-ba4a-62b13a88be34 {"md5": "ab458ff4d9e03eaa48e7416786681d3d", "pid": "118068544X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/118068544X", "source": "GND"}], "date_of_birth": "ca. 20./21. Jh.", "preferred_name": "Burzel, Jürgen Achim", "country_associated": "gw", "authorized_access_point": "Burzel, Jürgen Achim, ca. 20./21. Jh.", "biographical_information": ["Briefpartner von Medirslav Blgnik"]} 1 +2024-09-11 09:01:42.776987 2024-09-11 09:01:42.77699 48ea381e-240b-409e-89d3-ace752ff2152 {"md5": "fc6acc8afcf0e35b3d5ba3ab563b14b8", "pid": "118108093", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/118108093", "source": "GND"}], "date_of_birth": "1943", "preferred_name": "Ohler, Wolfgang", "country_associated": "gw", "authorized_access_point": "Ohler, Wolfgang, 1943-"} 1 +2024-09-11 09:01:42.830325 2024-09-11 09:01:42.830328 6f1b9f2b-7f5f-431a-aa15-9ea13d7e0ed8 {"md5": "320426a4cc057262862c04079c88bce6", "pid": "1181153034", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1181153034", "source": "GND"}], "preferred_name": "Roche, Catherine", "country_associated": "fr", "authorized_access_point": "Roche, Catherine"} 1 +2024-09-11 09:01:42.892556 2024-09-11 09:01:42.89256 c8ccab95-d550-455f-8d1b-b342a9225264 {"md5": "cb676bd62b5d836b0ec8970f8b00607d", "pid": "1182338917", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1182338917", "source": "GND"}], "date_of_birth": "1990", "preferred_name": "Mirgorod, Philip", "country_associated": "gw", "authorized_access_point": "Mirgorod, Philip, 1990-", "biographical_information": ["Dissertation Westfälische Wilhelms-Universität Münster 2019"]} 1 +2024-09-11 09:01:42.947164 2024-09-11 09:01:42.947169 a0217ee3-2a54-4811-9758-fb362aa3929a {"md5": "f78e8b558dcc3e5fd9b77b1ca454bd6c", "pid": "118247957X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/118247957X", "source": "GND"}], "date_of_birth": "1944", "preferred_name": "Lienert, Markus", "country_associated": "sz", "authorized_access_point": "Lienert, Markus, 1944-"} 1 +2024-09-11 09:01:43.005058 2024-09-11 09:01:43.005062 eb5e6caa-1edc-4864-92ba-ad3f55a44ba7 {"md5": "42d9e650c1eb0201fe75db2628a2a930", "pid": "1183057687", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1183057687", "source": "GND"}], "preferred_name": "Meyer, Susanna", "country_associated": "sz", "authorized_access_point": "Meyer, Susanna"} 1 +2024-09-11 09:01:43.072845 2024-09-11 09:01:43.072849 ddc6c43b-e414-4bb6-ba11-a2cb0cd94f27 {"md5": "6b18990da119f58a2520f9198e695e5c", "pid": "1183836740", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1183836740", "source": "GND"}], "variant_name": ["Mpampēs o Epikureios"], "date_of_birth": "1955", "preferred_name": "Patzoglu, Mpampēs", "country_associated": "gr", "variant_access_point": ["Mpampēs o Epikureios, 1955-"], "parallel_access_point": ["Πατζόγλου, Μπάμπης, 1955-"], "authorized_access_point": "Patzoglu, Mpampēs, 1955-"} 1 +2024-09-11 09:01:43.12441 2024-09-11 09:01:43.124412 8f61b343-2db4-46e1-98fd-5f73b051782f {"md5": "42046e08d9b8035a79c2c9e8c8e7ce80", "pid": "1184599297", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1184599297", "source": "GND"}], "variant_name": ["Chu, Xin Cheng", "Cheng Chu Xin"], "preferred_name": "Cheng, Chu Xin", "country_associated": "xxu", "variant_access_point": ["Chu, Xin Cheng", "Cheng Chu Xin"], "authorized_access_point": "Cheng, Chu Xin", "biographical_information": ["Cate School, Carpinteria, California, USA"]} 1 +2024-09-11 09:01:43.215719 2024-09-11 09:01:43.215723 31b50c59-c40d-4093-bb12-7e8dc2adf33c {"md5": "3cf4d36ce4853dc88d8a9f536ebdd267", "pid": "1184634262", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1184634262", "source": "GND"}], "preferred_name": "Omari, Ehsan", "country_associated": "gw", "authorized_access_point": "Omari, Ehsan"} 1 +2024-09-11 09:01:43.274256 2024-09-11 09:01:43.27426 b3d90b97-a1a5-474f-8098-faa5964a544b {"md5": "f354eaa9fe2a7d748f4734852356aa5a", "pid": "1184827516", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1184827516", "source": "GND"}], "variant_name": ["Wieland, Max"], "date_of_birth": "24.10.1867", "date_of_death": "09.06.1935", "preferred_name": "Wieland, Max R.", "country_associated": "gw", "variant_access_point": ["Wieland, Max, 1867-1935"], "authorized_access_point": "Wieland, Max R., 1867-1935"} 1 +2024-09-11 09:01:43.349524 2024-09-11 09:01:43.349528 ba17d6b0-4c11-4840-8173-a577c176a2a2 {"md5": "c6202cc2a8335210452ec10c5ec23189", "pid": "1185183302", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1185183302", "source": "GND"}], "preferred_name": "Gorczyńska, Maria", "country_associated": "pl", "authorized_access_point": "Gorczyńska, Maria"} 1 +2024-09-11 09:01:43.402066 2024-09-11 09:01:43.402069 b5a775d0-6466-41d4-82b7-8d303c91d6c6 {"md5": "14f8580a9b3a1d6526b8cae6f622cab4", "pid": "1185191275", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1185191275", "source": "GND"}], "date_of_birth": "1940", "preferred_name": "Benfenati, Bruno", "country_associated": "it", "authorized_access_point": "Benfenati, Bruno, 1940-"} 1 +2024-09-11 09:01:43.454052 2024-09-11 09:01:43.454056 7f472141-414d-4f16-acdc-dd21a5c9034f {"md5": "c9b3a08e10056b5723100aeb5f383351", "pid": "118531867", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/118531867", "source": "GND"}], "variant_name": ["Johannes, Falkenberg", "Jean, Falkenberg", "Johannes, de Falkaberge", "Johannes, de Falckenberch", "Johannes, de Falckenberg", "Johannes, Falkenberg Pomeranus", "Johannes, Pomeranus", "Jan, Falkenberg", "Joannes, a Falchenberga", "Iohannes, Falkenberg Pomeranus", "Falkenberg, Jan"], "date_of_birth": "1364", "date_of_death": "1429", "preferred_name": "Falkenberg, Johannes", "country_associated": "gw", "variant_access_point": ["Johannes, Falkenberg, 1364-1429", "Jean, Falkenberg, 1364-1429", "Johannes, de Falkaberge, 1364-1429", "Johannes, de Falckenberch, 1364-1429", "Johannes, de Falckenberg, 1364-1429", "Johannes, Falkenberg Pomeranus, 1364-1429", "Johannes, Pomeranus, 1364-1429", "Jan, Falkenberg, 1364-1429", "Joannes, a Falchenberga, 1364-1429", "Iohannes, Falkenberg Pomeranus, 1364-1429", "Falkenberg, Jan, 1364-1429"], "authorized_access_point": "Falkenberg, Johannes, 1364-1429", "biographical_information": ["OP; De mundi monarchia; Satira; Liber de doctrina potestatis pape et imperatoris; Tractatus in renuntiatione papae", "Theologe; Dominikaner u.a. in Prag, Krakau, Thorn und Magdeburg"]} 1 +2024-09-11 09:01:43.510657 2024-09-11 09:01:43.510661 649577ed-0954-40bf-9a0e-5d96f4d1b74f {"md5": "985ffa69e804ba7f932548b261158824", "pid": "118544291X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/118544291X", "source": "GND"}], "variant_name": ["Convento de San Francisco"], "preferred_name": "Kloster San Francisco Vitoria-Gasteiz", "country_associated": "sp", "date_of_termination": "1930", "variant_access_point": ["Convento de San Francisco. Vitoria-Gasteiz"], "date_of_establishment": "1214", "authorized_access_point": "Kloster San Francisco Vitoria-Gasteiz", "biographical_information": ["1214 gegründetes Franziskanerkloster, 1930 abgerissen, einige Ruinenreste der Magdalenen-Kapelle im ehemaligen Innenhof erhalten"]} 1 +2024-09-11 09:01:43.572102 2024-09-11 09:01:43.572106 dab46442-f584-4960-970a-9b73c1aad18e {"md5": "2198ee8fb3b6b07ab904390d03e883e9", "pid": "1185450025", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1185450025", "source": "GND"}], "preferred_name": "Selle, Franziska Annette", "country_associated": "gw", "authorized_access_point": "Selle, Franziska Annette", "biographical_information": ["Promotion 2019 der medizinischen Fakultät der Friedrich-Alexander-Universität Erlangen-Nürnberg"]} 1 +2024-09-11 09:01:43.636254 2024-09-11 09:01:43.636257 c9f382ef-4056-4810-ba72-91f2b876a9bb {"md5": "f66b6b894a56945f65421a65c1127064", "pid": "118553615", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/118553615", "source": "GND"}], "variant_name": ["Horkhaimeri, Mak̕s", "Horkheimer, M.", "Ma ke si Huo ke hai mo", "Makesi-Huokehaimo", "Hôrqheimer, M.", "Chorkchajmer, Maks", "Hūrkhāymir, Māks", "Chorkchai͏̈mer, Max", "Horkhajmer, Maks", "Huokehaimo, Makesi", "Horkheimers, Makss", "Regius, Heinrich", "马克斯・霍克海默", "霍克海默, 马克斯", "הורקהיימר, מקס", "ホルクハイマー・マックス"], "date_of_birth": "14.02.1895", "date_of_death": "07.07.1973", "preferred_name": "Horkheimer, Max", "country_associated": "gw", "variant_access_point": ["Horkhaimeri, Mak̕s, 1895-1973", "Horkheimer, M., 1895-1973", "Ma ke si Huo ke hai mo, 1895-1973", "Makesi-Huokehaimo, 1895-1973", "Hôrqheimer, M., 1895-1973", "Chorkchajmer, Maks, 1895-1973", "Hūrkhāymir, Māks, 1895-1973", "Chorkchai͏̈mer, Max, 1895-1973", "Horkhajmer, Maks, 1895-1973", "Huokehaimo, Makesi, 1895-1973", "Horkheimers, Makss, 1895-1973", "Regius, Heinrich, 1895-1973", "马克斯・霍克海默, 1895-1973", "霍克海默, 马克斯, 1895-1973", "הורקהיימר, מקס, 1895-1973", "ホルクハイマー・マックス, 1895-1973"], "parallel_access_point": ["Horkheimer, Max, 1895-1973", "ホルクハイマー, マックス, 1895-1973"], "authorized_access_point": "Horkheimer, Max, 1895-1973", "biographical_information": ["Remigration nach Deutschland (Bundesrepublik Deutschland)"]} 1 +2024-09-11 09:01:43.688198 2024-09-11 09:01:43.6882 db490282-bc45-42ed-83df-9793803426ed {"md5": "72e96a8ead282858eba370dd7a3be9d0", "pid": "118561693", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/118561693", "source": "GND"}], "date_of_birth": "1918", "date_of_death": "2002", "preferred_name": "Kessler, Herbert", "country_associated": "gw", "authorized_access_point": "Kessler, Herbert, 1918-2002", "biographical_information": ["Dt. Jurist und Philosoph; Promotion Universität München; Begründer der Humboldt-Gesellschaft und der Sokratischen Gesellschaft; Verfasser von Romanen, Lyrik und etlichen philosophischen Arbeiten z.B. zur Wertephilosophie, Esoterik, Symbolik", "Philosoph"]} 1 +2024-09-11 09:01:43.743431 2024-09-11 09:01:43.743434 c69b1b15-d038-473f-8c3e-2da82f6398e4 {"md5": "e257272edfde69912fb77f2366ee71c9", "pid": "1186072571", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1186072571", "source": "GND"}], "preferred_name": "Babel, Isarn", "country_associated": "gw", "authorized_access_point": "Babel, Isarn"} 1 +2024-09-11 09:01:43.798911 2024-09-11 09:01:43.798914 528024a0-c098-43bd-b731-868b4ef1ff26 {"md5": "f1d13cb1060efd2e1fddf87a05412891", "pid": "118608619X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/118608619X", "source": "GND"}], "date_of_birth": "1978", "preferred_name": "Janšová, Marie", "authorized_access_point": "Janšová, Marie, 1978-"} 1 +2024-09-11 09:01:43.86957 2024-09-11 09:01:43.869573 4a0e50c0-6b89-4fe5-94ca-b474e1a5051d {"md5": "e3a6570e9bf5a8540ee2bbff113c06dc", "pid": "118684264", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/118684264", "source": "GND"}], "variant_name": ["Foster, John"], "date_of_birth": "1740", "date_of_death": "1828", "preferred_name": "Oriel, John Foster", "country_associated": "ie", "variant_access_point": ["Foster, John, 1740-1828"], "authorized_access_point": "Oriel, John Foster, 1740-1828", "biographical_information": ["Irischer Politiker"]} 1 +2024-09-11 09:01:43.927459 2024-09-11 09:01:43.927464 6851b9a2-1316-49c0-8415-ea3e1d48a515 {"md5": "87c5c3bc425fa2ef79287b1eead94bc9", "pid": "1187151726", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1187151726", "source": "GND"}], "preferred_name": "Marling, Tino Martin", "country_associated": "gw", "authorized_access_point": "Marling, Tino Martin", "biographical_information": ["Dipl. Ing., war nach seinem Maschinenbaustudium an der Universität Kaiserslautern mehr als 30 Jahre im Maschinen und Anlagenbau der Energiebranche bei namhaften Herstellern als Versuchsingenieur Projektingenieur Verkaufsleiter und Produkt Manager tätig"]} 1 +2024-09-11 09:01:43.977094 2024-09-11 09:01:43.977098 38de8479-564a-4f23-983c-5bc121bdc69e {"md5": "f0e85eacc50a7dff69d70bfecde46705", "pid": "118716328", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/118716328", "source": "GND"}], "variant_name": ["Pavón, Francisco García", "García-Pavón, Francisco", "García-Pavó, Francisco"], "date_of_birth": "1919", "date_of_death": "1989", "preferred_name": "García Pavón, Francisco", "country_associated": "sp", "variant_access_point": ["Pavón, Francisco García, 1919-1989", "García-Pavón, Francisco, 1919-1989", "García-Pavó, Francisco, 1919-1989"], "authorized_access_point": "García Pavón, Francisco, 1919-1989"} 1 +2024-09-11 09:01:44.03134 2024-09-11 09:01:44.031344 093cf9ad-1c84-45b3-bb7c-1317d00f6ae8 {"md5": "e8f7b0b1332809486ee375eb8e7fd504", "pid": "1187368121", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1187368121", "source": "GND"}], "date_of_birth": "1970", "preferred_name": "Tóth, Szilárd Tibor", "country_associated": "er", "authorized_access_point": "Tóth, Szilárd Tibor, 1970-"} 1 +2024-09-11 09:01:44.097042 2024-09-11 09:01:44.097045 1d962820-5654-4dba-a629-567af644c13c {"md5": "7f4b298cd1fce6c84c925ee23011399b", "pid": "1187537691", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1187537691", "source": "GND"}], "preferred_name": "agentur Literatur Gudrun Hebel", "country_associated": "gw", "date_of_establishment": "1998", "authorized_access_point": "agentur Literatur Gudrun Hebel"} 1 +2024-09-11 09:01:44.149338 2024-09-11 09:01:44.149341 4d21ee58-c2f8-45ce-91db-8af1f2eef16c {"md5": "61901d651f0abe85746741bd3861f00e", "pid": "1187670472", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1187670472", "source": "GND"}], "date_of_birth": "26.01.1975", "preferred_name": "Stentzel, Ulrike", "country_associated": "gw", "authorized_access_point": "Stentzel, Ulrike, 1975-"} 1 +2024-09-11 09:01:44.200948 2024-09-11 09:01:44.200952 2dd915e4-fccf-4dd3-8f22-3017f52a5fd5 {"md5": "327caa1ebb64b616651cb450e38f54fe", "pid": "1187679194", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1187679194", "source": "GND"}], "variant_name": ["Sagami Yoshikazu", "佐上善和"], "date_of_birth": "1946", "preferred_name": "Sagami, Yoshikazu", "country_associated": "ja", "variant_access_point": ["Sagami Yoshikazu, 1946-", "佐上善和, 1946-"], "parallel_access_point": ["佐上, 善和, 1946-"], "authorized_access_point": "Sagami, Yoshikazu, 1946-"} 1 +2024-09-11 09:01:44.261214 2024-09-11 09:01:44.261217 983b0a9e-5bfd-4d04-bb8b-a857bbef004f {"md5": "dc9800de445febe916f9ffd8f15fc577", "pid": "1187985945", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1187985945", "source": "GND"}], "variant_name": ["Nihon Hidankyō", "Nihon-Hidankyō", "Japan Confederation of A- and H-Bomb Sufferers Organizations", "Japanische Föderation der Atombombenopfer-Gesellschaften", "日本被団協", "ニホン ゲンスイバク ヒガイシャ ダンタイ キョウギカイ"], "preferred_name": "Nihon Gensuibaku Higaisha Dantai Kyōgikai", "country_associated": "ja", "variant_access_point": ["Nihon Hidankyō", "Nihon-Hidankyō", "Japan Confederation of A- and H-Bomb Sufferers Organizations", "Japanische Föderation der Atombombenopfer-Gesellschaften", "日本被団協", "ニホン ゲンスイバク ヒガイシャ ダンタイ キョウギカイ"], "date_of_establishment": "1956", "parallel_access_point": ["日本原水爆被害者団体協議会"], "authorized_access_point": "Nihon Gensuibaku Higaisha Dantai Kyōgikai"} 1 +2024-09-11 09:01:44.312236 2024-09-11 09:01:44.31224 12b39861-4c0d-41e0-99df-84c682786afe {"md5": "8f5e637967ec35d7dc96b6a6ff20f732", "pid": "118818805", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/118818805", "source": "GND"}], "variant_name": ["Richelet, Césare P.", "P. R. A.", "Richelet, Césare-Pierre", "Richelet, César Pierre", "Richelet, Peter", "Richelet, César-Pierre", "Richelet, P.", "Richelet, Pierre César"], "date_of_birth": "1626", "date_of_death": "1698", "preferred_name": "Richelet, Pierre", "country_associated": "fr", "variant_access_point": ["Richelet, Césare P., 1626-1698", "P. R. A., 1626-1698", "Richelet, Césare-Pierre, 1626-1698", "Richelet, César Pierre, 1626-1698", "Richelet, Peter, 1626-1698", "Richelet, César-Pierre, 1626-1698", "Richelet, P., 1626-1698", "Richelet, Pierre César, 1626-1698"], "authorized_access_point": "Richelet, Pierre, 1626-1698", "biographical_information": ["Franz. Linguist und Lexikograph; studierte 3 Jahre Rechtswissenschaft, war jedoch nicht als Anwalt o.ä. tätig"]} 1 +2024-09-11 09:01:44.405651 2024-09-11 09:01:44.405654 a21ae57a-3765-4f67-8c9c-7aaa6f2b29c8 {"md5": "7623c74ed193b7f39bd692ebece767c1", "pid": "118842218", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/118842218", "source": "GND"}], "date_of_birth": "1899", "date_of_death": "1952", "preferred_name": "Sieler, Maria", "country_associated": "au", "authorized_access_point": "Sieler, Maria, 1899-1952", "biographical_information": ["\\"Mystikerin\\" aus d. Steiermark m. Privatoffenbarungen"]} 1 +2024-09-11 09:01:44.459756 2024-09-11 09:01:44.459761 40f1101e-18e4-4631-8cce-4033291f28fc {"md5": "762f5f6edc80b5937c6042ae1387a93b", "pid": "1188483552", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1188483552", "source": "GND"}], "variant_name": ["Maier, Horand I."], "date_of_birth": "1973", "preferred_name": "Maier, Horand Ingo", "country_associated": "au", "variant_access_point": ["Maier, Horand I., 1973-"], "authorized_access_point": "Maier, Horand Ingo, 1973-"} 1 +2024-09-11 09:01:45.89007 2024-09-11 09:01:45.890073 2fffc618-d6bb-4d5a-adf0-053161999698 {"md5": "2b1518e9ca9432afb37872664dcd8625", "pid": "119077671", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/119077671", "source": "GND"}], "date_of_birth": "1933", "date_of_death": "1998", "preferred_name": "Pavlović, Živojin", "authorized_access_point": "Pavlović, Živojin, 1933-1998", "biographical_information": ["Jugoslaw. Filmregisseur und Schriftsteller"]} 1 +2024-09-11 09:01:44.518745 2024-09-11 09:01:44.518748 7074b5db-6ca6-4ae5-8a2a-7551eaf5f11b {"md5": "ef06cbce254eb44b37a1fa3cf03535e0", "pid": "118857703", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/118857703", "source": "GND"}], "date_of_birth": "15.11.920", "date_of_death": "14.06.1996", "preferred_name": "Bufalino, Gesualdo", "country_associated": "it", "parallel_access_point": ["Bufalino, Gesualdo, 1920-1996"], "authorized_access_point": "Bufalino, Gesualdo, 1920-1996", "biographical_information": ["schrieb Romane, Kurzgeschichten, Theaterstücke, Gedichte, Aphorismen, Essays, Anthologien und verschiedene Texte über Sizilien"]} 1 +2024-09-11 09:01:44.573825 2024-09-11 09:01:44.573829 a471ae45-0232-4456-af2d-905ab8221aa0 {"md5": "d7c596c233024fdd838e3d95c2d4b78f", "pid": "1188583360", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1188583360", "source": "GND"}], "variant_name": ["Chodkiewicz, Kazimierz Stanisław"], "date_of_birth": "17.10.1892", "date_of_death": "16.05.1980", "preferred_name": "Chodkiewicz, Kazimierz", "country_associated": "pl", "variant_access_point": ["Chodkiewicz, Kazimierz Stanisław, 1892-1980"], "authorized_access_point": "Chodkiewicz, Kazimierz, 1892-1980", "biographical_information": ["Aktivist Britische Theosophische Gesellschaft; Oberst, Kriegsteilnehmer Lwów 1939", "Studium der klassischen Sprachen, Philosophie und Pädagogik an Franziskanischer Universität Lemberg"]} 1 +2024-09-11 09:01:44.625901 2024-09-11 09:01:44.625905 76b8df23-bdd9-4cdf-8e73-9c9698209db9 {"md5": "5cfc6bc06f4abf6b45846e17581c99b8", "pid": "118865900", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/118865900", "source": "GND"}], "variant_name": ["Levy, Hermann", "Levi, H."], "date_of_birth": "07.11.1839", "date_of_death": "13.05.1900", "preferred_name": "Levi, Hermann", "country_associated": "gw", "variant_access_point": ["Levy, Hermann, 1839-1900", "Levi, H., 1839-1900"], "authorized_access_point": "Levi, Hermann, 1839-1900"} 1 +2024-09-11 09:01:44.682885 2024-09-11 09:01:44.682889 803d61e1-331d-4b99-be6a-8c13872df3b2 {"md5": "a9f408824112b8c68e347145a2160f6e", "pid": "118873768", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/118873768", "source": "GND"}], "variant_name": ["Meisenheimer, W."], "date_of_birth": "25.02.1933", "preferred_name": "Meisenheimer, Wolfgang", "country_associated": "gw", "variant_access_point": ["Meisenheimer, W., 1933-"], "authorized_access_point": "Meisenheimer, Wolfgang, 1933-", "biographical_information": ["Dissertation, Technische Hochschule Aachen, 1964"]} 1 +2024-09-11 09:01:44.746609 2024-09-11 09:01:44.746613 92a3fdcf-1fb0-4f58-9971-9b7c949eec53 {"md5": "fbaf7889fe1b469331520a158951ecea", "pid": "1188747894", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1188747894", "source": "GND"}], "date_of_birth": "1903", "date_of_death": "1975", "preferred_name": "Talamona, Carlo", "country_associated": "it", "authorized_access_point": "Talamona, Carlo, 1903-1975"} 1 +2024-09-11 09:01:44.795626 2024-09-11 09:01:44.795629 dfc62e5a-b84f-4ae6-8043-2edd9c84b53c {"md5": "fc607f28e9293efd0c096d0307d28e55", "pid": "118908642", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/118908642", "source": "GND"}], "preferred_name": "Palacio, Carlos", "authorized_access_point": "Palacio, Carlos", "biographical_information": ["20.Jh."]} 1 +2024-09-11 09:01:44.848178 2024-09-11 09:01:44.848182 542d5364-0284-4a50-bd1e-38d1b248dc79 {"md5": "bdfa8619c13c90ba1c0e1d379b593624", "pid": "1189098970", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1189098970", "source": "GND"}], "variant_name": ["Fujisawa, Chiemi Nishimiya-"], "preferred_name": "Nishimiya-Fujisawa, Chiemi", "variant_access_point": ["Fujisawa, Chiemi Nishimiya-"], "authorized_access_point": "Nishimiya-Fujisawa, Chiemi"} 1 +2024-09-11 09:01:44.89933 2024-09-11 09:01:44.899334 e7b9d4e0-f884-4ace-9335-cd168c7e6793 {"md5": "254d65a8a8306d4f9e5f35bef161b76f", "pid": "118914634", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/118914634", "source": "GND"}], "variant_name": ["Kunz, Werner Friedrich"], "date_of_birth": "1896", "date_of_death": "1981", "preferred_name": "Kunz, Werner F.", "country_associated": "sz", "variant_access_point": ["Kunz, Werner Friedrich, 1896-1981"], "authorized_access_point": "Kunz, Werner F., 1896-1981", "biographical_information": ["Schweiz. Bildhauer", "Künstler"]} 1 +2024-09-11 09:01:44.956833 2024-09-11 09:01:44.956836 152b7ea2-7a8a-4388-bc9c-becb280a4c33 {"md5": "6443e5d19198a2999c8a28147c149b6a", "pid": "1189236710", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1189236710", "source": "GND"}], "variant_name": ["Cho, Nam-Chŏl", "Jo, Nam-Chŏl", "조, 남철"], "date_of_birth": "1952", "preferred_name": "Jo, Nam cheol", "country_associated": "ko", "variant_access_point": ["Cho, Nam-Chŏl, 1952-", "Jo, Nam-Chŏl, 1952-", "조, 남철, 1952-"], "parallel_access_point": ["조남철, 1952-"], "authorized_access_point": "Jo, Nam cheol, 1952-"} 1 +2024-09-11 09:01:45.029059 2024-09-11 09:01:45.029063 ff6352e0-7842-4e26-94f4-39c80803df5e {"md5": "794c4ee8760045a8a8d15eff96ab2b0d", "pid": "1189274361", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1189274361", "source": "GND"}], "variant_name": ["De Loecker, Jean-Paul"], "preferred_name": "Loecker, Jean-Paul de", "country_associated": "be", "variant_access_point": ["De Loecker, Jean-Paul"], "authorized_access_point": "Loecker, Jean-Paul de"} 1 +2024-09-11 09:01:45.082426 2024-09-11 09:01:45.08243 1ef96b04-f936-4e3f-a1f0-5b42295ddc05 {"md5": "07af7fa75a1138a09e7c574f59b84e12", "pid": "118960032", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/118960032", "source": "GND"}], "variant_name": ["Jacoby, Richard"], "date_of_birth": "11.09.1929", "date_of_death": "09.07.2017", "preferred_name": "Jakoby, Richard", "country_associated": "gw", "variant_access_point": ["Jacoby, Richard, 1929-2017"], "authorized_access_point": "Jakoby, Richard, 1929-2017", "biographical_information": ["Gründungspräsident der Hochschule für Musik und Theater Hannover"]} 1 +2024-09-11 09:01:45.132358 2024-09-11 09:01:45.132363 aa588771-f97e-4c94-b614-0bde5fcdd120 {"md5": "f2b256bcb14f77cf5b7018e34d50752a", "pid": "118960308X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/118960308X", "source": "GND"}], "date_of_birth": "ca. 20. Jh.", "preferred_name": "Mallabey, Cedric", "country_associated": "xxk", "authorized_access_point": "Mallabey, Cedric, ca. 20. Jh."} 1 +2024-09-11 09:01:45.181094 2024-09-11 09:01:45.181098 904601dc-bb4b-4510-95ae-f636d9180d85 {"md5": "0c067e72a05c33249938b26f5acb0b5c", "pid": "118995316", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/118995316", "source": "GND"}], "variant_name": ["Sheils Makowski, Brigid"], "date_of_birth": "1937", "preferred_name": "Makowski, Brigid S.", "country_associated": "ie", "variant_access_point": ["Sheils Makowski, Brigid, 1937-"], "authorized_access_point": "Makowski, Brigid S., 1937-", "biographical_information": ["Nordir. Revolutionärin"]} 1 +2024-09-11 09:01:45.238578 2024-09-11 09:01:45.238581 75398aa6-21f7-45cc-a6c3-06b46c5dc61b {"md5": "80db584d9df3310f656f25eed4046853", "pid": "1190043440", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1190043440", "source": "GND"}], "date_of_birth": "1984", "preferred_name": "Lovec, Marko", "country_associated": "xv", "authorized_access_point": "Lovec, Marko, 1984-"} 1 +2024-09-11 09:01:45.292376 2024-09-11 09:01:45.292379 29ddcbf1-2f47-4d7a-b3a2-b2af316e6b20 {"md5": "0b500872690e093ec6be4fa092b887d5", "pid": "119007460", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/119007460", "source": "GND"}], "variant_name": ["Fang, Hsüan-ling", "Fang, Qiao", "Fang, Ch'iao", "Liang Wenzhao gong", "房玄龄", "房, 玄齡", "房, 玄龄", "房喬", "房, 喬", "房乔", "房, 乔", "房玄齡", "梁文昭公", "房玄龄", "房喬", "房乔"], "date_of_birth": "578", "date_of_death": "648", "preferred_name": "Fang, Xuanling", "country_associated": "cc", "variant_access_point": ["Fang, Hsüan-ling, 578-648", "Fang, Qiao, 578-648", "Fang, Ch'iao, 578-648", "Liang Wenzhao gong, 578-648", "房玄龄, 578-648", "房, 玄齡, 578-648", "房, 玄龄, 578-648", "房喬, 578-648", "房, 喬, 578-648", "房乔, 578-648", "房, 乔, 578-648", "房玄齡, 578-648", "梁文昭公, 578-648", "房玄龄, 578-648", "房喬, 578-648", "房乔, 578-648"], "parallel_access_point": ["房玄齡, 578-648"], "authorized_access_point": "Fang, Xuanling, 578-648", "biographical_information": ["Chines. Historiker u. Staatsmann", "Historiker, Politiker"]} 1 +2024-09-11 09:01:45.35146 2024-09-11 09:01:45.351464 1186d992-9313-4a0d-9665-418b160ce87a {"md5": "712779c07f73470111f54d14ae81eba0", "pid": "119009307", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "qualifier": "Deira, König", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/119009307", "source": "GND"}], "date_of_death": "588", "preferred_name": "Aelle, Deira, König", "country_associated": "xxk", "authorized_access_point": "Aelle, Deira, König, -588"} 1 +2024-09-11 09:01:45.40373 2024-09-11 09:01:45.403732 a1a1b490-afc9-44a5-9789-d355a630387c {"md5": "7f5f1cdf1a05452938a65d2c25f4b4bf", "pid": "1190205149", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1190205149", "source": "GND"}], "date_of_birth": "ca. 19/20. Jh.", "preferred_name": "Simson, Herman Ed. von", "country_associated": "gw", "authorized_access_point": "Simson, Herman Ed. von, ca. 19/20. Jh.", "biographical_information": ["Kaiserlischer Legationssekretär"]} 1 +2024-09-11 09:01:45.454287 2024-09-11 09:01:45.45429 e3770cef-02b6-4092-a091-2581e235676d {"md5": "c25cad6b456f07914ccfb829603badf4", "pid": "119022826", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/119022826", "source": "GND"}], "date_of_birth": "ca. um 1550 v.Chr.", "preferred_name": "Amenemhēt", "country_associated": "ua", "authorized_access_point": "Amenemhēt, ca. um 1550 v.Chr.", "biographical_information": ["Ägypt. Fürst u. Führer d. königl. Siegels"]} 1 +2024-09-11 09:01:45.509868 2024-09-11 09:01:45.509872 a0de9311-4638-4765-a5fe-af2d26f3c909 {"md5": "f869ed654e9fb579090385005e223a7d", "pid": "119033437", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/119033437", "source": "GND"}], "date_of_birth": "1951", "preferred_name": "Legorjus, Philippe", "country_associated": "fr", "authorized_access_point": "Legorjus, Philippe, 1951-", "biographical_information": ["Franz. Polizist, Kommandeur der GIGN"]} 1 +2024-09-11 09:01:45.566945 2024-09-11 09:01:45.566948 1fb63c05-0e1b-4469-b7f7-7494765ace16 {"md5": "77af9ec4cd1ee09d105a8b445653cdf4", "pid": "1190386577", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1190386577", "source": "GND"}], "variant_name": ["Grawe, Johannes"], "preferred_name": "Grawerus, Johannes", "variant_access_point": ["Grawe, Johannes"], "authorized_access_point": "Grawerus, Johannes", "biographical_information": ["aus Helmstedt"]} 1 +2024-09-11 09:01:45.634707 2024-09-11 09:01:45.634709 23b988a5-ad39-4f80-b8ac-87e698245af7 {"md5": "c5f5f332e3b3e44c7b08b5850da8e881", "pid": "1190392402", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1190392402", "source": "GND"}], "preferred_name": "Howard, Deborah", "country_associated": "xxu", "authorized_access_point": "Howard, Deborah"} 1 +2024-09-11 09:01:45.686022 2024-09-11 09:01:45.686025 dae0eaca-96af-469d-a237-b362d7c64593 {"md5": "c0c5a634a08c7606f1be9dba08ff6caa", "pid": "11904241X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/11904241X", "source": "GND"}], "variant_name": ["Gullveig Alver, Bente", "Gullveig-Alver, Bente", "Alver, Bente G."], "date_of_birth": "1941", "preferred_name": "Alver, Bente Gullveig", "country_associated": "dk", "variant_access_point": ["Gullveig Alver, Bente, 1941-", "Gullveig-Alver, Bente, 1941-", "Alver, Bente G., 1941-"], "authorized_access_point": "Alver, Bente Gullveig, 1941-", "biographical_information": ["dänische Ethnologin, Professorin für Folkloristik an der Universität Bergen"]} 1 +2024-09-11 09:01:45.76886 2024-09-11 09:01:45.768862 39315cb4-064a-4e00-ad85-faf2ac0996b8 {"md5": "33f62f20de732ee2d054c4fb6137ef58", "pid": "1190664518", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1190664518", "source": "GND"}], "variant_name": ["Phan, Phuong"], "preferred_name": "Gorr, Phuong", "country_associated": "gw", "variant_access_point": ["Phan, Phuong"], "authorized_access_point": "Gorr, Phuong"} 1 +2024-09-11 09:01:45.827689 2024-09-11 09:01:45.827693 27173b70-9c3d-49a2-ae85-bbfb5ebb1631 {"md5": "331a7e14abd27b241203aaec29112b0e", "pid": "1190675692", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1190675692", "source": "GND"}], "preferred_name": "Malkinson, Agnes", "country_associated": "xxc", "authorized_access_point": "Malkinson, Agnes"} 1 +2024-09-11 09:02:09.840399 2024-09-11 09:02:09.840402 99d185ef-6f79-4af4-8cc8-1db6792df723 {"md5": "d3b6e984f302de4e751d204bc0e90c7a", "pid": "128174889", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128174889", "source": "GND"}], "preferred_name": "Lindblad, Waldemar", "authorized_access_point": "Lindblad, Waldemar"} 1 +2024-09-11 09:01:45.942726 2024-09-11 09:01:45.942728 28865de9-4abb-4d5e-977b-91bf45c370aa {"md5": "7eb93943ea2544b51c0645c9d0b1873e", "pid": "1190845555", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1190845555", "source": "GND"}], "date_of_birth": "06.09.1915", "date_of_death": "13.02.2008", "preferred_name": "Thomas, Andrea", "country_associated": "xxu", "authorized_access_point": "Thomas, Andrea, 1915-2008"} 1 +2024-09-11 09:01:45.99759 2024-09-11 09:01:45.997593 1eef337b-68d8-4c2e-aa26-2a253b8aa54a {"md5": "bab68dc26907486b9100894c59e1dc3e", "pid": "1190905671", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1190905671", "source": "GND"}], "preferred_name": "Schreiter, Danny", "authorized_access_point": "Schreiter, Danny"} 1 +2024-09-11 09:01:46.05288 2024-09-11 09:01:46.052883 3758e0cb-5a62-468c-afa6-7d005e22bcd3 {"md5": "20fc48ba3743137705c4659cd986fa87", "pid": "119090943X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/119090943X", "source": "GND"}], "variant_name": ["Moran, Sarah J."], "preferred_name": "Moran, Sarah Joan", "country_associated": "ne", "variant_access_point": ["Moran, Sarah J."], "authorized_access_point": "Moran, Sarah Joan"} 1 +2024-09-11 09:01:46.120708 2024-09-11 09:01:46.120711 32461151-b5e5-4b1d-91bb-b0b2e3aa83ce {"md5": "c8aaee215bab979dde044f0c9dbbfe89", "pid": "119136228", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/119136228", "source": "GND"}], "variant_name": ["Ball, Jessie", "DuPont, Jessie B."], "date_of_birth": "1884", "date_of_death": "1970", "preferred_name": "Du Pont, Jessie B.", "country_associated": "xxu", "variant_access_point": ["Ball, Jessie, 1884-1970", "DuPont, Jessie B., 1884-1970"], "authorized_access_point": "Du Pont, Jessie B., 1884-1970"} 1 +2024-09-11 09:01:46.176154 2024-09-11 09:01:46.176158 93f1ebf5-7686-4995-97fc-ea473d6434a7 {"md5": "6113465bffc105b5d08e9a4b4e163fd9", "pid": "119161796", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/119161796", "source": "GND"}], "variant_name": ["Rollier, Mario Alberto"], "date_of_birth": "1909", "date_of_death": "1980", "preferred_name": "Rollier, Mario A.", "country_associated": "it", "variant_access_point": ["Rollier, Mario Alberto, 1909-1980"], "authorized_access_point": "Rollier, Mario A., 1909-1980", "biographical_information": ["Ital. Waldenseer, Politiker"]} 1 +2024-09-11 09:01:46.25825 2024-09-11 09:01:46.258254 199be9bd-8df2-4082-9ead-0e35e7ec749c {"md5": "f83ddf1cb2f784ba14dcc510ba409f4c", "pid": "1191853187", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1191853187", "source": "GND"}], "preferred_name": "Rand, Emily", "country_associated": "xxk", "authorized_access_point": "Rand, Emily"} 1 +2024-09-11 09:01:46.308467 2024-09-11 09:01:46.308472 82a439d1-c3cf-44d7-bbff-cf174b676b57 {"md5": "a492009a20b10c790be517e9033c5a65", "pid": "119219816", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/119219816", "source": "GND"}], "date_of_birth": "1957", "preferred_name": "Bowes, David", "country_associated": "xxu", "authorized_access_point": "Bowes, David, 1957-", "biographical_information": ["Amerikan. Maler"]} 1 +2024-09-11 09:01:46.379052 2024-09-11 09:01:46.379056 94d4a486-47df-478b-a3f1-03571b43879f {"md5": "2e253afc2826f1b1175afaa3f781c86a", "pid": "1192403959", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1192403959", "source": "GND"}], "variant_name": ["Maister, David", "Maister, David Hilton"], "date_of_birth": "1947", "preferred_name": "Maister, David H.", "country_associated": "xxk", "variant_access_point": ["Maister, David, 1947-", "Maister, David Hilton, 1947-"], "authorized_access_point": "Maister, David H., 1947-", "biographical_information": ["formerly a Harvard Business School professor, consults to professional service firms worldwide"]} 1 +2024-09-11 09:01:46.486383 2024-09-11 09:01:46.486386 2035c060-2f03-42c2-9f15-1327797fa199 {"md5": "3b42dfdfa9373259457b21ef35d72a75", "pid": "1192518470", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1192518470", "source": "GND"}], "variant_name": ["Xinghuo, Zhang", "Zhang Xinghuo"], "preferred_name": "Zhang, Xinghuo", "country_associated": "cc", "variant_access_point": ["Xinghuo, Zhang", "Zhang Xinghuo"], "authorized_access_point": "Zhang, Xinghuo", "biographical_information": ["Department of Orthopedics, Beijing Luhe Hospital Affiliated to Capital Medical University, Beijing, China"]} 1 +2024-09-11 09:01:46.545343 2024-09-11 09:01:46.545344 bd41d547-f550-4e4c-8110-10593f9fff26 {"md5": "bcebfb8d5c413a1d196b0f9667a53127", "pid": "119255537", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/119255537", "source": "GND"}], "variant_name": ["Taubman, Howard", "Taubman, H. Howard"], "date_of_birth": "1907", "date_of_death": "1996", "preferred_name": "Taubman, Hyman Howard", "country_associated": "xxu", "variant_access_point": ["Taubman, Howard, 1907-1996", "Taubman, H. Howard, 1907-1996"], "authorized_access_point": "Taubman, Hyman Howard, 1907-1996"} 1 +2024-09-11 09:01:46.601235 2024-09-11 09:01:46.601239 515bf3a0-54a7-4a29-8abb-5f14a8080f43 {"md5": "62748d0dc5f2e22272caaee7b03c9eeb", "pid": "1192852273", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1192852273", "source": "GND"}], "variant_name": ["Erling Bardal, Kjell"], "date_of_birth": "1951", "preferred_name": "Bardal, Kjell Erling", "country_associated": "no", "variant_access_point": ["Erling Bardal, Kjell, 1951-"], "authorized_access_point": "Bardal, Kjell Erling, 1951-"} 1 +2024-09-11 09:01:46.659162 2024-09-11 09:01:46.659166 a856b644-b927-4c4f-8316-992d132ed180 {"md5": "ce2a054a7178f6258f223770261bd35d", "pid": "1192950399", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1192950399", "source": "GND"}], "date_of_birth": "1943", "preferred_name": "Park, Heather", "country_associated": "xxk", "authorized_access_point": "Park, Heather, 1943-"} 1 +2024-09-11 09:01:46.709513 2024-09-11 09:01:46.709517 f8460549-a416-4fa1-9824-855a13f9b167 {"md5": "65e57adad8ad960d3bf2283e9decd3dc", "pid": "1193659566", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1193659566", "source": "GND"}], "preferred_name": "Montesinos, Jesús", "country_associated": "sp", "authorized_access_point": "Montesinos, Jesús"} 1 +2024-09-11 09:01:46.762828 2024-09-11 09:01:46.762832 50013e7b-cd76-4892-95b1-0d03c6306eb4 {"md5": "5ca6865df10535cbaa148be691bc319a", "pid": "1193660688", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1193660688", "source": "GND"}], "variant_name": ["Colloqium entitled Classical Traditions in Latin American History"], "preferred_name": "Classical Traditions in Latin American History", "country_associated": "xxk", "variant_access_point": ["Colloqium entitled Classical Traditions in Latin American History, 2016, London"], "authorized_access_point": "Classical Traditions in Latin American History. Veranstaltung, 2016, London"} 1 +2024-09-11 09:01:46.818833 2024-09-11 09:01:46.818836 d1008c7b-5e49-4a96-8b76-5a55a3a24258 {"md5": "98ab3c4edcb94ce646d5f5bd2aafedc8", "pid": "1193684374", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1193684374", "source": "GND"}], "date_of_birth": "1947", "preferred_name": "Baur, Hans", "country_associated": "sz", "authorized_access_point": "Baur, Hans, 1947-"} 1 +2024-09-11 09:01:46.871042 2024-09-11 09:01:46.871044 f956dbb7-6b64-4166-a7d9-5b4431c4c76f {"md5": "5e7dc49dc2144193e31b72c89ae67ee2", "pid": "1193701163", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1193701163", "source": "GND"}], "variant_name": ["Gravely, William B.", "Gravely, William Bernard"], "date_of_birth": "1939", "preferred_name": "Gravely, William", "country_associated": "xxu", "variant_access_point": ["Gravely, William B., 1939-", "Gravely, William Bernard, 1939-"], "authorized_access_point": "Gravely, William, 1939-", "biographical_information": ["William B. Gravely is professor emeritus at the University of Denver. He is the author of Gilbert Haven, Methodist Abolitionist, as well as numerous articles on religion and social change."]} 1 +2024-09-11 09:01:46.923619 2024-09-11 09:01:46.923622 ed8a0880-ca49-455f-8eae-f0353cfd937e {"md5": "5adc67c9c4be6162ccca421f5f72846c", "pid": "119380439", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/119380439", "source": "GND"}], "variant_name": ["Garzetti, Albinus"], "date_of_birth": "1914", "date_of_death": "1998", "preferred_name": "Garzetti, Albino", "country_associated": "it", "variant_access_point": ["Garzetti, Albinus, 1914-1998"], "authorized_access_point": "Garzetti, Albino, 1914-1998", "biographical_information": ["Ital. Historiker"]} 1 +2024-09-11 09:01:46.974885 2024-09-11 09:01:46.974889 da66fd05-3c23-4b12-a558-ba11c45a570f {"md5": "d27cf1c45baca47352550516eb49c4ba", "pid": "119411679", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/119411679", "source": "GND"}], "date_of_birth": "1851", "date_of_death": "1932", "preferred_name": "Booth, Joseph", "country_associated": "xxk", "authorized_access_point": "Booth, Joseph, 1851-1932", "biographical_information": ["Brit. Missionar"]} 1 +2024-09-11 09:01:47.03033 2024-09-11 09:01:47.030333 586d6157-218a-4315-8016-9c0514958929 {"md5": "2fe366a9e2d9a1042beca269b91ad6e6", "pid": "1194409997", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1194409997", "source": "GND"}], "variant_name": ["Haddad Tóvolli, Marina"], "preferred_name": "Tóvolli, Marina Haddad", "country_associated": "bl", "variant_access_point": ["Haddad Tóvolli, Marina"], "authorized_access_point": "Tóvolli, Marina Haddad", "biographical_information": ["Research Assistant at Dirur/Ipea, Brazil"]} 1 +2024-09-11 09:01:47.080888 2024-09-11 09:01:47.080893 3bf5bac7-0d29-4141-9740-123a425d8d5d {"md5": "78d7bb6bd546c67dfb9af10123a89336", "pid": "119443988", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/119443988", "source": "GND"}], "variant_name": ["Krüger, R.", "Kuryūgā, Renāte"], "date_of_birth": "23.07.1934", "date_of_death": "27.05.2016", "preferred_name": "Krüger, Renate", "country_associated": "gw", "variant_access_point": ["Krüger, R., 1934-2016", "Kuryūgā, Renāte, 1934-2016"], "authorized_access_point": "Krüger, Renate, 1934-2016"} 1 +2024-09-11 09:01:47.139878 2024-09-11 09:01:47.139881 9ceb8e09-3f07-4c6f-855d-5b5feaacc27a {"md5": "bc02677c1b077953430127d48e93ebb7", "pid": "119464942", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/119464942", "source": "GND"}], "variant_name": ["Solsberi, Garrison E.", "Solsberi, Garrison", "Salisbury, Garrison E.", "Salisbury, Harrison Evans", "Salisbury, Harrison"], "date_of_birth": "14.11.1908", "date_of_death": "05.07.1993", "preferred_name": "Salisbury, Harrison E.", "country_associated": "xxu", "variant_access_point": ["Solsberi, Garrison E., 1908-1993", "Solsberi, Garrison, 1908-1993", "Salisbury, Garrison E., 1908-1993", "Salisbury, Harrison Evans, 1908-1993", "Salisbury, Harrison, 1908-1993"], "authorized_access_point": "Salisbury, Harrison E., 1908-1993", "biographical_information": ["Amerikan. Journalist"]} 1 +2024-09-11 09:01:47.215152 2024-09-11 09:01:47.215155 353018d9-3c94-4dcd-90db-0437a221350d {"md5": "db90c0f749435e7d7406c736a030957c", "pid": "1194663192", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1194663192", "source": "GND"}], "variant_name": ["Michniak-Kohn, Bozena B.", "Kohn, Bozena Michniak-"], "preferred_name": "Michniak-Kohn, Bozena", "country_associated": "xxu", "variant_access_point": ["Michniak-Kohn, Bozena B.", "Kohn, Bozena Michniak-"], "authorized_access_point": "Michniak-Kohn, Bozena", "biographical_information": ["The State University of New Jersey"]} 1 +2024-09-11 09:01:47.269182 2024-09-11 09:01:47.269185 b8bbfab3-241a-4a61-a4cf-63b9b95d5380 {"md5": "247f1b56a3464fdf531523d39b86dee6", "pid": "11947428X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/11947428X", "source": "GND"}], "date_of_birth": "22.08.1720", "date_of_death": "09.03.1791", "preferred_name": "Sagramoso, Michele Enrico di", "country_associated": "it", "authorized_access_point": "Sagramoso, Michele Enrico di, 1720-1791", "biographical_information": ["Ital. Adeliger; Malteserritter und Diplomat"]} 1 +2024-09-11 09:01:47.334816 2024-09-11 09:01:47.334818 87d28e5a-00f3-4c41-9477-4aa9336762ff {"md5": "a0c5c79e66c580737f28770ddadc23f9", "pid": "119499363", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/119499363", "source": "GND"}], "date_of_birth": "1914", "date_of_death": "1994", "preferred_name": "Cullen, Gordon", "country_associated": "xxk", "authorized_access_point": "Cullen, Gordon, 1914-1994", "biographical_information": ["Engl. Architekt u. Städtebauer", "Architekt, Grossbritannien"]} 1 +2024-09-11 09:01:47.389629 2024-09-11 09:01:47.389632 47c3a82b-42a2-4d74-8657-2873122c5779 {"md5": "49802e5066d7ce2a441dda2dd0003c30", "pid": "119508516", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/119508516", "source": "GND"}], "date_of_birth": "1938", "preferred_name": "Diodato, Baldo", "country_associated": "it", "authorized_access_point": "Diodato, Baldo, 1938-"} 1 +2024-09-11 09:01:47.441007 2024-09-11 09:01:47.44101 8265331c-931a-4eb4-acd4-c29cff44a106 {"md5": "8f87440966b39a9ed07b45e1e60d58a0", "pid": "119537087", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["yid"], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/119537087", "source": "GND"}], "variant_name": ["Grosman, Moisheh", "Grosman, M.", "Grosman, Moyshe", "Grosman, Moiše", "Grosman, Mojše", "Grosman, Mojsze", "Grosman, Moše", "Grosman, Mose", "Grossman, Moshe", "Grossman, Mosche", "Grossman, Moishe", "Grossman, Moses", "Grôsman, Moše", "Grossmann, Moses", "Grim, F.", "Grim, P.", "Godlman", "גראסמאן, משה", "גרוסמן, משה", "גרים, פ."], "date_of_birth": "1904", "date_of_death": "1961", "preferred_name": "Grosman, Mosheh", "country_associated": "is", "variant_access_point": ["Grosman, Moisheh, 1904-1961", "Grosman, M., 1904-1961", "Grosman, Moyshe, 1904-1961", "Grosman, Moiše, 1904-1961", "Grosman, Mojše, 1904-1961", "Grosman, Mojsze, 1904-1961", "Grosman, Moše, 1904-1961", "Grosman, Mose, 1904-1961", "Grossman, Moshe, 1904-1961", "Grossman, Mosche, 1904-1961", "Grossman, Moishe, 1904-1961", "Grossman, Moses, 1904-1961", "Grôsman, Moše, 1904-1961", "Grossmann, Moses, 1904-1961", "Grim, F., 1904-1961", "Grim, P., 1904-1961", "Godlman, 1904-1961", "גראסמאן, משה, 1904-1961", "גרוסמן, משה, 1904-1961", "גרים, פ., 1904-1961"], "parallel_access_point": ["גרוסמאן, משה, 1904-1961"], "authorized_access_point": "Grosman, Mosheh, 1904-1961", "biographical_information": ["Kindheit und Jugend teilweise in Warschau; Mitglied der zionistischen Arbeiterjugend \\"Yugend\\"; publizierte seine Bücher und literarischen Zeitschriftenbeiträge überwiegend auf Jiddisch und teillweise unter Pseudonym; lebte nach Aufenthalten in der Sowjetunion, Schweden, Frankreich und in den USA seit 1950 in Israel."]} 1 +2024-09-11 09:01:47.495476 2024-09-11 09:01:47.49548 375a1cf3-56d6-4a7c-bd94-2a3bcdc6c4f4 {"md5": "08304610d4261abd0dc61ac06384dce6", "pid": "119552914", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/119552914", "source": "GND"}], "date_of_birth": "1875", "date_of_death": "1949", "preferred_name": "Schiavazzi, Piero", "country_associated": "it", "authorized_access_point": "Schiavazzi, Piero, 1875-1949"} 1 +2024-09-11 09:01:47.572393 2024-09-11 09:01:47.572397 c7876e54-acae-4a7f-9858-cdc882cceb9a {"md5": "ec3f4e3d3edc53eada681db0aeafa5d2", "pid": "119559382", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/119559382", "source": "GND"}], "date_of_birth": "1818", "date_of_death": "1878", "preferred_name": "Hammer, Adam", "country_associated": "gw", "authorized_access_point": "Hammer, Adam, 1818-1878", "biographical_information": ["Dt. Revolutionär, Arzt wanderte 1848 nach Amerika aus"]} 1 +2024-09-11 09:01:47.670456 2024-09-11 09:01:47.670461 023da8fa-2c6c-4fe3-a828-896725f32777 {"md5": "19dd868e88e31d731e26f83f83673bf3", "pid": "1195625049", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1195625049", "source": "GND"}], "date_of_birth": "1977", "preferred_name": "Galanopoulos, Philippe", "country_associated": "fr", "authorized_access_point": "Galanopoulos, Philippe, 1977-"} 1 +2024-09-11 09:01:47.832885 2024-09-11 09:01:47.832888 e13085d4-c3d6-4ea1-a7b5-6fb2853c21f0 {"md5": "54fe7dd1fa0472f97002b3356d23dbfe", "pid": "1195806868", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1195806868", "source": "GND"}], "date_of_birth": "1898", "date_of_death": "1947", "preferred_name": "Szych, Jan", "country_associated": "pl", "authorized_access_point": "Szych, Jan, 1898-1947", "biographical_information": ["Herausgeber der religiösen Zeitschrift \\"Miesięcznik Diecezjalny Łucki\\""]} 1 +2024-09-11 09:01:47.899075 2024-09-11 09:01:47.899078 b8a2d21f-b541-4ff0-8c57-4b72529e4a5c {"md5": "d49ebba4dab72fa709d68d37ba9ee5c6", "pid": "1196648964", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1196648964", "source": "GND"}], "variant_name": ["Paleotti, Ridolfo"], "date_of_death": "1619", "preferred_name": "Paleotti, Rodolfo", "country_associated": "it", "variant_access_point": ["Paleotti, Ridolfo, -1619"], "authorized_access_point": "Paleotti, Rodolfo, -1619", "biographical_information": ["Bischof von Imola 1611-1619"]} 1 +2024-09-11 09:01:47.956415 2024-09-11 09:01:47.956418 1c7d571e-568b-4b4d-8a26-bc41dc6b3804 {"md5": "ceb6bef35bee941818356d6fec88bbf5", "pid": "119724952", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/119724952", "source": "GND"}], "preferred_name": "Junius, Nikolaus", "authorized_access_point": "Junius, Nikolaus", "biographical_information": ["Beitr. im VD-16"]} 1 +2024-09-11 09:01:48.010957 2024-09-11 09:01:48.010961 3bd679da-6a07-4e64-82e1-53bd6e1594a5 {"md5": "bc31ccd8c965325aa582111e7f5ac3be", "pid": "1197312137", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1197312137", "source": "GND"}], "date_of_birth": "1940", "preferred_name": "Vegt, Caroline van der", "country_associated": "ne", "authorized_access_point": "Vegt, Caroline van der, 1940-"} 1 +2024-09-11 09:01:48.062733 2024-09-11 09:01:48.062738 10ec3465-c79c-4822-9780-3658c7ed80da {"md5": "520f5810234203cc52d35e9443a87f47", "pid": "1197337660", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1197337660", "source": "GND"}], "variant_name": ["Archibong, Udy"], "preferred_name": "Archibong, Uduak", "country_associated": "xxk", "variant_access_point": ["Archibong, Udy"], "authorized_access_point": "Archibong, Uduak"} 1 +2024-09-11 09:01:48.115843 2024-09-11 09:01:48.115847 4abcf890-09b3-4149-9b62-472914da865c {"md5": "a4afe7865056809cc5ae4453be6ae294", "pid": "1197621814", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1197621814", "source": "GND"}], "preferred_name": "Demisch, Dominik", "country_associated": "gw", "authorized_access_point": "Demisch, Dominik"} 1 +2024-09-11 09:01:48.170951 2024-09-11 09:01:48.170953 2a214f8d-7cf3-4428-9e36-eb7f6ee1fcee {"md5": "c5e857c400531f7346f43e443299d359", "pid": "1197715096", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1197715096", "source": "GND"}], "variant_name": ["Senlin, Miao", "Miao Senlin"], "preferred_name": "Miao, Senlin", "country_associated": "cc", "variant_access_point": ["Senlin, Miao", "Miao Senlin"], "authorized_access_point": "Miao, Senlin"} 1 +2024-09-11 09:01:48.222029 2024-09-11 09:01:48.222033 8959b730-aa67-473a-9ad5-8c7bc03a281f {"md5": "a20abea13ac08c54b46ffcf7c3c5f629", "pid": "1197826912", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1197826912", "source": "GND"}], "preferred_name": "Vonderfour, C. F.", "country_associated": "gw", "authorized_access_point": "Vonderfour, C. F."} 1 +2024-09-11 09:01:48.280636 2024-09-11 09:01:48.280638 82811958-bd79-4afc-8961-28064f9d400d {"md5": "5103f2234d353a0fa6b5f51fb4d5f750", "pid": "11982387X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/11982387X", "source": "GND"}], "variant_name": ["Schottelius, Johannes"], "preferred_name": "Schottel, Johannes", "variant_access_point": ["Schottelius, Johannes"], "authorized_access_point": "Schottel, Johannes", "biographical_information": ["Beitr. im VD-16"]} 1 +2024-09-11 09:01:48.335527 2024-09-11 09:01:48.33553 b8e44ec2-ffaf-4a52-9fcb-e1829bb8bf24 {"md5": "522dd5922ce1138a291f63e746f93c61", "pid": "1198439084", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1198439084", "source": "GND"}], "variant_name": ["Taylor, Duncan Burnett"], "date_of_birth": "07.10.1912", "date_of_death": "XX.06.1982", "preferred_name": "Taylor, Duncan", "country_associated": "xxk", "variant_access_point": ["Taylor, Duncan Burnett, 1912-1982"], "authorized_access_point": "Taylor, Duncan, 1912-1982"} 1 +2024-09-11 09:01:48.390785 2024-09-11 09:01:48.390789 d558e0e2-4106-49d2-9a12-bc50d18bae46 {"md5": "36cf8cd6aca4e890a91c3b02e522977a", "pid": "11987251X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/11987251X", "source": "GND"}], "preferred_name": "Wirth, Andreas", "authorized_access_point": "Wirth, Andreas", "biographical_information": ["Beitr. im VD-16"]} 1 +2024-09-11 09:01:48.442438 2024-09-11 09:01:48.442442 800c6b3c-9deb-44c6-86ad-d3655042a02c {"md5": "7ad85977d6f76ec2958577ca93ed5a34", "pid": "1199011495", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1199011495", "source": "GND"}], "variant_name": ["Gallahue, David"], "date_of_birth": "1943", "preferred_name": "Gallahue, David L.", "country_associated": "xxu", "variant_access_point": ["Gallahue, David, 1943-"], "authorized_access_point": "Gallahue, David L., 1943-", "biographical_information": ["Über 40 Jahre lang beschäftigte er sich mit den angewandten Aspekten der motorischen Entwicklung und des Erlernens von Bewegungsfähigkeiten bei Kleinkindern und Jugendlichen in körperlichen Aktivitäten und Sportumgebungen"]} 1 +2024-09-11 09:01:48.499343 2024-09-11 09:01:48.499345 ed68aa70-c015-4fb1-96fc-6bf509761899 {"md5": "e2f51a60d2ae9bc2ba95823891689d2a", "pid": "1199119393", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1199119393", "source": "GND"}], "variant_name": ["IEEE International Microwave Biomedical Conference", "IMBioC", "The IEEE MTT-S 2019 International Microwave Biomedical Conference (IMBioC 2019)"], "preferred_name": "IEEE MTT-S International Microwave Biomedical Conference", "country_associated": "cc", "variant_access_point": ["IEEE International Microwave Biomedical Conference, 2019, Nanjing", "IMBioC, 2019, Nanjing", "The IEEE MTT-S 2019 International Microwave Biomedical Conference (IMBioC 2019)"], "authorized_access_point": "IEEE MTT-S International Microwave Biomedical Conference, 2019, Nanjing"} 1 +2024-09-11 09:01:48.552657 2024-09-11 09:01:48.552659 a9044afe-a780-457b-98ff-cef4558184c9 {"md5": "e213baa858f7ac9f7734c5e2f2906ab7", "pid": "1199276545", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1199276545", "source": "GND"}], "variant_name": ["Osthoff, Hans Werner", "Osthoff, H. W.", "Osthoff, Hans W."], "date_of_birth": "11.02.1911", "date_of_death": "03.01.2006", "preferred_name": "Osthoff, Hans-Werner", "country_associated": "gw", "variant_access_point": ["Osthoff, Hans Werner, 1911-2006", "Osthoff, H. W., 1911-2006", "Osthoff, Hans W., 1911-2006"], "authorized_access_point": "Osthoff, Hans-Werner, 1911-2006", "biographical_information": ["Promovierte 1936 an der Universität Greifswald. - Justitiar im Auswärtigen Amt. - Anwalt in Berlin. - Lehrbeauftragter an der Universität München. - Seit 1970 Honorarprofessor an der Universität des Saarlandes"]} 1 +2024-09-11 09:01:48.606621 2024-09-11 09:01:48.606625 d4590264-bab6-4dc4-855a-8325867e4b2e {"md5": "32d309c7c2fd0c0696f5093b060b82aa", "pid": "1199967009", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1199967009", "source": "GND"}], "variant_name": ["Türkiye-Ukrayna Karşılaştırmalı Ceza Hukuku Sempozyumu", "Symposium für den Türkisch-Ukrainischen Strafrechtsvergleich"], "preferred_name": "Turkey-Ukraine Comparative Criminal Law Symposium", "country_associated": "tu", "variant_access_point": ["Türkiye-Ukrayna Karşılaştırmalı Ceza Hukuku Sempozyumu, 2011, Istanbul", "Symposium für den Türkisch-Ukrainischen Strafrechtsvergleich, 2011, Istanbul"], "authorized_access_point": "Turkey-Ukraine Comparative Criminal Law Symposium, 2011, Istanbul"} 1 +2024-09-11 09:01:48.672554 2024-09-11 09:01:48.672557 fb0ccc6f-5b21-4108-8b81-6810ab6d19f2 {"md5": "606b6633c2e1c2486369cace1398d885", "pid": "1200376331", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1200376331", "source": "GND"}], "preferred_name": "Spata, Valentina", "country_associated": "it", "authorized_access_point": "Spata, Valentina", "biographical_information": ["Wirkungsdaten nach dem BVB"]} 1 +2024-09-11 09:01:48.728604 2024-09-11 09:01:48.728608 e047024e-f60a-4944-96fc-b9ca139d0f62 {"md5": "61b97400e4feb2b381ff2848708c2abe", "pid": "1200558375", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1200558375", "source": "GND"}], "date_of_birth": "1970", "preferred_name": "Hà, Nhân", "country_associated": "vm", "authorized_access_point": "Hà, Nhân, 1970-"} 1 +2024-09-11 09:01:48.789412 2024-09-11 09:01:48.789416 e94320fb-daef-4b5a-81c0-e02ae0e9764b {"md5": "a3699209ad3034dda74b72c571ad764b", "pid": "120095785", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120095785", "source": "GND"}], "variant_name": ["Holmes Cooper, Alice"], "date_of_birth": "07.09.1955", "preferred_name": "Cooper, Alice Holmes", "country_associated": "xxu", "variant_access_point": ["Holmes Cooper, Alice, 1955-"], "parallel_access_point": ["Cooper, Alice Holmes, 1955-"], "authorized_access_point": "Cooper, Alice Holmes, 1955-", "biographical_information": ["Assistant Professor of Government, University of Virginia"]} 1 +2024-09-11 09:01:48.839947 2024-09-11 09:01:48.83995 bbcc1b81-4441-4bae-bedf-ed059d82f4a0 {"md5": "fefa4da7880d8445965e0f3cddbc00c6", "pid": "1201178835", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1201178835", "source": "GND"}], "variant_name": ["طرزي، محمد"], "date_of_birth": "1983", "preferred_name": "Ṭarzī, Muḥammad", "country_associated": "le", "variant_access_point": ["طرزي، محمد, 1983-"], "parallel_access_point": ["طرزي, محمد, 1983-"], "authorized_access_point": "Ṭarzī, Muḥammad, 1983-"} 1 +2024-09-11 09:01:48.895507 2024-09-11 09:01:48.895511 ab65f7da-84a2-4355-a911-30736bbfa679 {"md5": "e580db3e183f6a492cd846b3b60dc114", "pid": "120175118", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "qualifier": "Papa", "numeration": "VIII.", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120175118", "source": "GND"}], "variant_name": ["Léon, VIII., Pape", "Leone, VIII., Papa", "Leo, VIII., Papst"], "date_of_death": "965", "preferred_name": "Leo, VIII., Papa", "country_associated": "it", "variant_access_point": ["Léon, VIII., Pape, -965", "Leone, VIII., Papa, -965", "Leo, VIII., Papst, -965"], "authorized_access_point": "Leo, VIII., Papa, -965", "biographical_information": ["Wahl zum Papst (963 n. Chr.), nach der Vertreibung von Papst Johannes XII. durch Kaiser Otto I. Wurde dann ebenso vertrieben und durch Benedikt V. ersetzt (Mai 964 n. Chr.). Nach erzwungener Abdankung von Benedikt V. (Juni 964 n. Chr.) quasi wiedereingesetzt mit zweiter Amtszeit bis zum Tode 965 n. Chr. ; Gilt allgemein als legaler Papst, wird jedoch in einzelnen Fällen aufgrund der 2x politisch erzwungenen Einsetzungen, bei gleichzeitigen Absetzungen amtierender Päpste, als Gegenpast angesehen, z.B.: Migne, Patrologia Latina, bezeichnet Leo VIII. als Gegenpapst."]} 1 +2024-09-11 09:01:48.95438 2024-09-11 09:01:48.954383 56066af0-f36c-42a0-855c-5c7d373afd4b {"md5": "03973cb6a4b04488b9cbc3ed5d9a1f60", "pid": "120175533", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120175533", "source": "GND"}], "date_of_birth": "31.08.1964", "date_of_death": "05.08.2002", "preferred_name": "Strom, Swet-Patrik", "country_associated": "gw", "authorized_access_point": "Strom, Swet-Patrik, 1964-2002"} 1 +2024-09-11 09:01:49.00821 2024-09-11 09:01:49.008214 a8c54b6a-87b6-4c04-a8c2-7ffea4986a7b {"md5": "885f9424e84b9884e4f8ad36af5569fd", "pid": "1201779243", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1201779243", "source": "GND"}], "variant_name": ["Ufer, Jörg", "Ufer, Jörg R.", "Dr. Nordschleife"], "preferred_name": "Ufer, Jörg-Richard", "country_associated": "gw", "variant_access_point": ["Ufer, Jörg", "Ufer, Jörg R.", "Dr. Nordschleife"], "authorized_access_point": "Ufer, Jörg-Richard", "biographical_information": ["Schreibt Bücher über die Autorennen am Nürburgring"]} 1 +2024-09-11 09:01:49.074373 2024-09-11 09:01:49.074376 0fa3a8d4-38bd-4765-8be5-e748ed67a5e0 {"md5": "4cc1c312f0a150fba3d93967dce631a7", "pid": "1201917980", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1201917980", "source": "GND"}], "variant_name": ["Konferencja \\"Dynamika Gwar Słowiańskich w XXI Wieku w Kontekście Dziedzictwa Narodowego i Kulturowego\\""], "preferred_name": "Dynamika Gwar Słowiańskich w XXI Wieku w Kontekście Dziedzictwa Narodowego i Kulturowego", "country_associated": "pl", "variant_access_point": ["Konferencja \\"Dynamika Gwar Słowiańskich w XXI Wieku w Kontekście Dziedzictwa Narodowego i Kulturowego\\", 2015, Warschau"], "authorized_access_point": "Dynamika Gwar Słowiańskich w XXI Wieku w Kontekście Dziedzictwa Narodowego i Kulturowego. Veranstaltung, 2015, Warschau"} 1 +2024-09-11 09:01:49.137715 2024-09-11 09:01:49.137718 0a2f8465-18da-4b4d-a002-e24141199804 {"md5": "b771fe7793a0c4c07f7f7c6c2ff74a4b", "pid": "120249561", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120249561", "source": "GND"}], "variant_name": ["Ambikātanayadatta", "Ambikatanaya Datta", "Datta, Ambikatanaya", "Bendre, Dattatreya Ramachandra", "Bēṃdre, Da. Rā.", "Bendere, Dattatreya Ramachandra", "Bendre, Dattatraya Ramachandra", "Dattātreya Rāmachandra Bendre", "Bendre, Ramchandra Dattatreya", "Bendre, Dattatreya Ramchandra"], "date_of_birth": "1896", "date_of_death": "1981", "preferred_name": "Bendre, Dattātreya Rāmacandra", "country_associated": "ii", "variant_access_point": ["Ambikātanayadatta, 1896-1981", "Ambikatanaya Datta, 1896-1981", "Datta, Ambikatanaya, 1896-1981", "Bendre, Dattatreya Ramachandra, 1896-1981", "Bēṃdre, Da. Rā., 1896-1981", "Bendere, Dattatreya Ramachandra, 1896-1981", "Bendre, Dattatraya Ramachandra, 1896-1981", "Dattātreya Rāmachandra Bendre, 1896-1981", "Bendre, Ramchandra Dattatreya, 1896-1981", "Bendre, Dattatreya Ramchandra, 1896-1981"], "authorized_access_point": "Bendre, Dattātreya Rāmacandra, 1896-1981", "biographical_information": ["Kannada-Dichter"]} 1 +2024-09-11 09:01:49.193444 2024-09-11 09:01:49.193448 120436bd-2b4c-4392-b517-f56a75a0b4ac {"md5": "775f69fba08507e75da6f893b5be53f0", "pid": "120268081X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120268081X", "source": "GND"}], "preferred_name": "Angeleis, Gabeli", "authorized_access_point": "Angeleis, Gabeli"} 1 +2024-09-11 09:01:49.26074 2024-09-11 09:01:49.260744 d69542ba-dfa3-4d8e-8438-3c97e7ebc76a {"md5": "e6022f04a3d79b8e32694cb47ab00602", "pid": "120284952", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120284952", "source": "GND"}], "variant_name": ["Dierich, Johannes Urban"], "date_of_birth": "1651", "date_of_death": "1691", "preferred_name": "Dierich, Johann Urban", "variant_access_point": ["Dierich, Johannes Urban, 1651-1691"], "authorized_access_point": "Dierich, Johann Urban, 1651-1691", "biographical_information": ["Handelsmann in Leipzig"]} 1 +2024-09-11 09:01:49.316966 2024-09-11 09:01:49.316968 536d9705-3747-45a4-99bb-c6c0b89ebcaa {"md5": "e38a6db16649d41851c3b5548b1c39a8", "pid": "1202884679", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1202884679", "source": "GND"}], "variant_name": ["Taşabat, Semra Erpolat"], "preferred_name": "Erpolat Taşabat, Semra", "country_associated": "tu", "variant_access_point": ["Taşabat, Semra Erpolat"], "authorized_access_point": "Erpolat Taşabat, Semra", "biographical_information": ["Mimar Sinan University, Istanbul, Türkei"]} 1 +2024-09-11 09:01:49.373464 2024-09-11 09:01:49.373468 c90a5e35-6ea3-420a-8a58-d2417ef1b545 {"md5": "cf697f8eb21160bc3380a3a74cd4e456", "pid": "12031603X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12031603X", "source": "GND"}], "date_of_birth": "1959", "preferred_name": "Schönwälder, Karen", "country_associated": "gw", "authorized_access_point": "Schönwälder, Karen, 1959-"} 1 +2024-09-11 09:01:49.434855 2024-09-11 09:01:49.434859 44f717d4-dfab-43c5-8fa2-bbd2f5dcd218 {"md5": "96fb403ace9be0ab55ba73f38d6aaddb", "pid": "120343525", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120343525", "source": "GND"}], "date_of_birth": "1968", "preferred_name": "Holtmann, Bernhard", "authorized_access_point": "Holtmann, Bernhard, 1968-", "biographical_information": ["Diss. Inst. für pharmazeutische Chemie"]} 1 +2024-09-11 09:01:49.486324 2024-09-11 09:01:49.486328 c6029889-f901-40d1-974b-78618a524f9f {"md5": "8c877276f9c9dc7aed95e23dbc27271f", "pid": "120355973", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120355973", "source": "GND"}], "date_of_birth": "1969", "preferred_name": "Thoma, Ulrike", "authorized_access_point": "Thoma, Ulrike, 1969-", "biographical_information": ["Diss. Fachbereich Experimentalphysik"]} 1 +2024-09-11 09:01:49.549391 2024-09-11 09:01:49.549395 e4b3cd6e-249e-4e90-a778-73b800ef40e2 {"md5": "32b4dac6aed3d5cede307283b180c6be", "pid": "1203576099", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1203576099", "source": "GND"}], "variant_name": ["Surfacedesign"], "preferred_name": "Surfacedesign, Inc.", "country_associated": "xxu", "variant_access_point": ["Surfacedesign"], "authorized_access_point": "Surfacedesign, Inc."} 1 +2024-09-11 09:01:49.604022 2024-09-11 09:01:49.604026 4cfca1d5-5294-4bd6-9e3d-ec20f7727c50 {"md5": "5df79e3877cdadb5aac14a5cc3573196", "pid": "1203731949", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1203731949", "source": "GND"}], "variant_name": ["Latyševa, Tatʹjana V.", "Latyševa, Tatʹjana", "Latyševa, T. V.", "Latyševa, T.", "Латышева Татьяна Васильевна"], "date_of_birth": "ca. 20./21. Jh.", "preferred_name": "Latyševa, Tatʹjana Vasilʹevna", "country_associated": "ru", "variant_access_point": ["Latyševa, Tatʹjana V., ca. 20./21. Jh.", "Latyševa, Tatʹjana, ca. 20./21. Jh.", "Latyševa, T. V., ca. 20./21. Jh.", "Latyševa, T., ca. 20./21. Jh.", "Латышева Татьяна Васильевна, ca. 20./21. Jh."], "authorized_access_point": "Latyševa, Tatʹjana Vasilʹevna, ca. 20./21. Jh."} 1 +2024-09-11 09:01:49.662455 2024-09-11 09:01:49.662459 828ee7df-17ec-44a8-aa3b-446002ee1eec {"md5": "3fb2503af2dffb135e3675d7becab439", "pid": "1204063087", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1204063087", "source": "GND"}], "variant_name": ["Yu, Sŭng-hyŏn", "유, 승현", "劉, 承炫"], "preferred_name": "Yu, Seung hyeon", "country_associated": "ko", "variant_access_point": ["Yu, Sŭng-hyŏn", "유, 승현", "劉, 承炫"], "parallel_access_point": ["劉承炫", "유승현"], "authorized_access_point": "Yu, Seung hyeon", "biographical_information": ["경희대학교 비교문화연구소 교수"]} 1 +2024-09-11 09:01:49.723484 2024-09-11 09:01:49.723487 fe7b919b-f413-45bf-9d4f-39d3b2a0cd0a {"md5": "f3f00233b1745e6820fbe25cf7e63746", "pid": "120415693X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120415693X", "source": "GND"}], "variant_name": ["Heidelberg Institute for Stem Cell Technology and Experimental Medicine", "HI-STEM gGmbH im Deutschen Krebsforschungszentrum DKFZ"], "preferred_name": "HI-STEM gGmbH", "country_associated": "gw", "variant_access_point": ["Heidelberg Institute for Stem Cell Technology and Experimental Medicine", "HI-STEM gGmbH im Deutschen Krebsforschungszentrum DKFZ"], "authorized_access_point": "HI-STEM gGmbH"} 1 +2024-09-11 09:01:49.781967 2024-09-11 09:01:49.781971 8253251a-12a3-4103-868f-3d3d94585ac3 {"md5": "b4b51fcb6f92ef9925e033d6c38549f7", "pid": "1204462666", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1204462666", "source": "GND"}], "date_of_birth": "1937", "preferred_name": "Kikuchi, Yoshio", "country_associated": "ja", "parallel_access_point": ["菊池, 威雄, 1937-"], "authorized_access_point": "Kikuchi, Yoshio, 1937-"} 1 +2024-09-11 09:01:49.831505 2024-09-11 09:01:49.831508 a6879d7d-5132-4190-ac1c-c69c0d27cf52 {"md5": "2b8810763f2f1814066c6798ce29cdf2", "pid": "120473801", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120473801", "source": "GND"}], "variant_name": ["Renner, Heinricus", "Renner, Henricus", "Rennerus, Heinricus"], "preferred_name": "Renner, Heinrich", "variant_access_point": ["Renner, Heinricus", "Renner, Henricus", "Rennerus, Heinricus"], "authorized_access_point": "Renner, Heinrich", "biographical_information": ["Respondent in Jena"]} 1 +2024-09-11 09:01:49.883337 2024-09-11 09:01:49.883341 a6a25cf7-a00c-4324-a69e-f51b8eb7187a {"md5": "e5fd6b29931bac6b4f756ed67ecdc08e", "pid": "1204866740", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1204866740", "source": "GND"}], "date_of_birth": "1950", "preferred_name": "Condé, Mohamed", "country_associated": "gv", "authorized_access_point": "Condé, Mohamed, 1950-"} 1 +2024-09-11 09:01:49.942978 2024-09-11 09:01:49.942982 24c6a9d2-b253-453b-a6ec-f03c41dcf621 {"md5": "fa05a83e2a757ef955500a3e4de5c791", "pid": "1204875901", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1204875901", "source": "GND"}], "variant_name": ["Nationale Plattform Zukunft der Mobilität. Arbeitsgruppe 2 - Alternative Antriebe und Kraftstoffe für nachhaltige Mobilität", "Nationale Plattform Zukunft der Mobilität. AG 2"], "preferred_name": "Nationale Plattform Zukunft der Mobilität. AG 2 - Alternative Antriebe und Kraftstoffe für Nachhaltige Mobilität", "country_associated": "gw", "variant_access_point": ["Nationale Plattform Zukunft der Mobilität. Arbeitsgruppe 2 - Alternative Antriebe und Kraftstoffe für nachhaltige Mobilität", "Nationale Plattform Zukunft der Mobilität. AG 2"], "authorized_access_point": "Nationale Plattform Zukunft der Mobilität. AG 2 - Alternative Antriebe und Kraftstoffe für Nachhaltige Mobilität"} 1 +2024-09-11 09:01:49.994285 2024-09-11 09:01:49.994289 1580b973-1662-4a50-a18c-deb0cecfcae8 {"md5": "711698fa4ddcad4b05a747cce5d6127e", "pid": "120498464", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120498464", "source": "GND"}], "date_of_birth": "1953", "preferred_name": "Frisch, Christine", "authorized_access_point": "Frisch, Christine, 1953-", "biographical_information": ["Sonderschul-Pädagogin"]} 1 +2024-09-11 09:01:52.745803 2024-09-11 09:01:52.745805 c5b20f73-ba48-48b9-92a5-96c45777c8e0 {"md5": "e7a2bc12670bcffa132c0b8ab5bfed52", "pid": "1212533003", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1212533003", "source": "GND"}], "preferred_name": "Díaz Cardona, Francia Elena", "country_associated": "mx", "authorized_access_point": "Díaz Cardona, Francia Elena"} 1 +2024-09-11 09:01:50.052112 2024-09-11 09:01:50.052114 70e809f9-d5b3-48c6-8840-21fb206a1d23 {"md5": "c25e4385c7eaedbdafa3495104ad6b8e", "pid": "120539544X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120539544X", "source": "GND"}], "variant_name": ["Cadwaladr, Margaret I."], "date_of_birth": "1949", "preferred_name": "Cadwaladr, Margaret", "country_associated": "xxc", "variant_access_point": ["Cadwaladr, Margaret I., 1949-"], "authorized_access_point": "Cadwaladr, Margaret, 1949-"} 1 +2024-09-11 09:01:50.119323 2024-09-11 09:01:50.119326 b5078842-332a-48e8-81d8-fcd13372a175 {"md5": "878b5dd4c8ad2d67cec5c42d33d13f7b", "pid": "120543125", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120543125", "source": "GND"}], "variant_name": ["Richter, Thomas Jakob", "Richter, Thomas"], "date_of_birth": "1955", "preferred_name": "Richter, Thomas J.", "country_associated": "gw", "variant_access_point": ["Richter, Thomas Jakob, 1955-", "Richter, Thomas, 1955-"], "parallel_access_point": ["Richter, Thomas J., 1955-"], "authorized_access_point": "Richter, Thomas J., 1955-"} 1 +2024-09-11 09:01:50.178166 2024-09-11 09:01:50.178169 573bcb1a-f0cc-47ce-82f1-ec74d6630fb4 {"md5": "f79898f0e151249426a147d85bd0ea1e", "pid": "120554682", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120554682", "source": "GND"}], "date_of_birth": "1970", "preferred_name": "Lange, Bastian", "country_associated": "gw", "authorized_access_point": "Lange, Bastian, 1970-", "biographical_information": ["tätig am Leibniz-Institut for Regional Geography, Leipzig, Germany; Schwerpunkte: Kreativwirtschaft, Governancefragen, Innovationsprozesse, Raumentwicklung"]} 1 +2024-09-11 09:01:50.231701 2024-09-11 09:01:50.231704 4c4c2430-5efa-4bd1-9bf7-f9a653999267 {"md5": "5ef42c2a629134bd572bcd79a5a1bd82", "pid": "1205764232", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["eng", "ger"], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1205764232", "source": "GND"}], "preferred_name": "Rouyer, Constanze", "authorized_access_point": "Rouyer, Constanze"} 1 +2024-09-11 09:01:50.285691 2024-09-11 09:01:50.285696 8f41d522-1543-432a-9f02-742a74b1136c {"md5": "bf982cca6801df4eef09c138ab69c426", "pid": "1205836233", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1205836233", "source": "GND"}], "variant_name": ["Chiwoon, Cho", "Cho Chiwoon"], "preferred_name": "Cho, Chiwoon", "country_associated": "ko", "variant_access_point": ["Chiwoon, Cho", "Cho Chiwoon"], "authorized_access_point": "Cho, Chiwoon"} 1 +2024-09-11 09:01:50.349061 2024-09-11 09:01:50.349063 5fd6744c-9e45-4304-9ce5-c5d3d20339a1 {"md5": "6fb723c598bcbf696ce51b83d5e32527", "pid": "120596067", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120596067", "source": "GND"}], "variant_name": ["Hartmann, Christoph Dietrich Johann David Joachim"], "date_of_birth": "1762", "date_of_death": "1840", "preferred_name": "Hartmann, Johann Dietrich", "variant_access_point": ["Hartmann, Christoph Dietrich Johann David Joachim, 1762-1840"], "authorized_access_point": "Hartmann, Johann Dietrich, 1762-1840", "biographical_information": ["Sohn des Rostocker Theologen Joachim Hartmann; Prediger und Dichter"]} 1 +2024-09-11 09:01:50.401223 2024-09-11 09:01:50.401226 61246d8a-114d-4e86-9dee-90589a806bb9 {"md5": "3ff50468409ac15fa80a02c2c7e56d6a", "pid": "1206199024", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1206199024", "source": "GND"}], "variant_name": ["Coovert, John Calvin"], "date_of_birth": "1862", "date_of_death": "1937", "preferred_name": "Coovert, J. C.", "country_associated": "xxu", "variant_access_point": ["Coovert, John Calvin, 1862-1937"], "authorized_access_point": "Coovert, J. C., 1862-1937"} 1 +2024-09-11 09:01:50.464495 2024-09-11 09:01:50.464498 3b5d1f5e-8af3-41a8-9d84-594086bf24ad {"md5": "c25f1394d42e331097de31a163c34669", "pid": "1206214643", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1206214643", "source": "GND"}], "variant_name": ["Muzeul de Artă", "Muzeul de Artă din Piatra-Neamţ"], "preferred_name": "Muzeul de Artă Piatra-Neamţ", "country_associated": "rm", "variant_access_point": ["Muzeul de Artă. Piatra-Neamţ", "Muzeul de Artă din Piatra-Neamţ"], "date_of_establishment": "XX.XX.1964", "authorized_access_point": "Muzeul de Artă Piatra-Neamţ"} 1 +2024-09-11 09:01:50.512337 2024-09-11 09:01:50.512341 97825a67-853f-4489-9403-91160e59bfee {"md5": "9654048fb92d8512c0a3dfd030497cca", "pid": "1206297964", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1206297964", "source": "GND"}], "preferred_name": "Farkas, Áron", "authorized_access_point": "Farkas, Áron"} 1 +2024-09-11 09:01:50.563106 2024-09-11 09:01:50.563109 f0fd9341-71c9-4195-9d53-7ef28f09ed26 {"md5": "e8989984c72dcbe9ea1541b0cdbdcb71", "pid": "120661144", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120661144", "source": "GND"}], "date_of_birth": "1942", "date_of_death": "2019", "preferred_name": "Fontaine, Jean-Marc", "country_associated": "fr", "authorized_access_point": "Fontaine, Jean-Marc, 1942-2019", "biographical_information": ["Franz. Mathematiker u. Wirtschaftswiss."]} 1 +2024-09-11 09:01:50.61965 2024-09-11 09:01:50.619652 5b90bf84-65a4-4181-a182-2d1dcb01998c {"md5": "c5d9e466e2304108227bb770975f6e36", "pid": "1206889632", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1206889632", "source": "GND"}], "date_of_birth": "ca. 20./21. Jahrhundert", "preferred_name": "Kidawara, Yutaka", "country_associated": "ja", "authorized_access_point": "Kidawara, Yutaka, ca. 20./21. Jahrhundert"} 1 +2024-09-11 09:01:50.681009 2024-09-11 09:01:50.681011 dd812c56-c1d6-4bd9-894d-d675ece6511c {"md5": "4e1dfd12aa6e3a1091ce475b460cdc35", "pid": "1206932619", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1206932619", "source": "GND"}], "variant_name": ["Lin, Lian kun", "Lin Liankun", "Lin Lian kun", "林, 連昆", "林, 连昆"], "date_of_birth": "1931", "date_of_death": "2009", "preferred_name": "Lin, Liankun", "country_associated": "cc", "variant_access_point": ["Lin, Lian kun, 1931-2009", "Lin Liankun, 1931-2009", "Lin Lian kun, 1931-2009", "林, 連昆, 1931-2009", "林, 连昆, 1931-2009"], "parallel_access_point": ["林連昆, 1931-2009", "林连昆, 1931-2009"], "authorized_access_point": "Lin, Liankun, 1931-2009"} 1 +2024-09-11 09:01:50.745578 2024-09-11 09:01:50.745582 872bb9b4-92c6-4c5b-8b62-93a6f9ebc514 {"md5": "fc1fe0518202c92135201f7bd4022b88", "pid": "120704463", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120704463", "source": "GND"}], "date_of_birth": "01.03.1939", "date_of_death": "21.06.2018", "preferred_name": "Wickop, Hanne", "country_associated": "gw", "authorized_access_point": "Wickop, Hanne, 1939-2018", "biographical_information": ["Schriftstellerin"]} 1 +2024-09-11 09:01:50.797713 2024-09-11 09:01:50.797715 1f82bd6d-3c0d-4e84-9264-352851489af6 {"md5": "819c474c680dd3108c23d7375fa31031", "pid": "1207293849", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1207293849", "source": "GND"}], "variant_name": ["Nogueira Garcez, Marcos"], "date_of_birth": "1919", "preferred_name": "Garcez, Marcos Nogueira", "country_associated": "bl", "variant_access_point": ["Nogueira Garcez, Marcos, 1919-"], "authorized_access_point": "Garcez, Marcos Nogueira, 1919-"} 1 +2024-09-11 09:01:50.848446 2024-09-11 09:01:50.84845 dc0e452f-46bf-4c12-bcf3-533ea0de8720 {"md5": "279745dac18c20d62b3446a2829b8098", "pid": "1207338478", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1207338478", "source": "GND"}], "variant_name": ["Szántó, Erika"], "preferred_name": "Szanto, Erika", "variant_access_point": ["Szántó, Erika"], "authorized_access_point": "Szanto, Erika"} 1 +2024-09-11 09:01:50.898325 2024-09-11 09:01:50.898327 5b81225c-d6ca-4df3-9c50-e7803bd2cb1c {"md5": "35468a2dc09c63af92aee1b0507e8ef3", "pid": "1207445045", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1207445045", "source": "GND"}], "date_of_birth": "1893", "preferred_name": "Hafner, Ludwig", "country_associated": "gw", "authorized_access_point": "Hafner, Ludwig, 1893-"} 1 +2024-09-11 09:01:50.952669 2024-09-11 09:01:50.952675 13081117-bbf1-494b-886a-8cd679d0036a {"md5": "517396a1f84d5d961db696d1d94ad17d", "pid": "1207474568", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1207474568", "source": "GND"}], "variant_name": ["Kuehl, Sheila James"], "date_of_birth": "1941", "preferred_name": "Kuehl, Sheila", "country_associated": "xxu", "variant_access_point": ["Kuehl, Sheila James, 1941-"], "authorized_access_point": "Kuehl, Sheila, 1941-"} 1 +2024-09-11 09:01:51.010237 2024-09-11 09:01:51.010241 19b0af8c-1b86-4dce-b950-f226854305b0 {"md5": "f449fd61384a57fddbf40f7031abb192", "pid": "120756455", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120756455", "source": "GND"}], "variant_name": ["Rotta, julius Karl", "Rotta, J.", "Rotta, J. C.", "Rotta, J.-C.", "Rotta, Julius", "Rotta, Julius Christian", "Rotta, Julius-Christian", "Rotta, Julius Carl"], "date_of_birth": "01.01.1912", "date_of_death": "14.03.2005", "preferred_name": "Rotta, Julius C.", "country_associated": "gw", "variant_access_point": ["Rotta, julius Karl, 1912-2005", "Rotta, J., 1912-2005", "Rotta, J. C., 1912-2005", "Rotta, J.-C., 1912-2005", "Rotta, Julius, 1912-2005", "Rotta, Julius Christian, 1912-2005", "Rotta, Julius-Christian, 1912-2005", "Rotta, Julius Carl, 1912-2005"], "authorized_access_point": "Rotta, Julius C., 1912-2005", "biographical_information": ["Physiker, BRD"]} 1 +2024-09-11 09:01:51.076806 2024-09-11 09:01:51.07681 2bb320dc-3dbd-4038-bdb3-0cf0248b0f14 {"md5": "acd270c0d256787bcf03b2f6e643889a", "pid": "120759241", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120759241", "source": "GND"}], "date_of_birth": "1971", "preferred_name": "Busch, Sylvia", "authorized_access_point": "Busch, Sylvia, 1971-", "biographical_information": ["Juristin"]} 1 +2024-09-11 09:01:51.132721 2024-09-11 09:01:51.132725 9b89beb2-b543-4b01-a6c2-adbaadc42c19 {"md5": "83890b826a916dc5edd3dd90b547d5e9", "pid": "120824261X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120824261X", "source": "GND"}], "preferred_name": "Luft, Christopher", "country_associated": "gw", "authorized_access_point": "Luft, Christopher"} 1 +2024-09-11 09:01:51.181023 2024-09-11 09:01:51.181027 9505d3cd-fc92-4b7a-9883-665c7b679b1c {"md5": "5f1f07e5ccc3794fd782f8fc74f60a04", "pid": "1208406337", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1208406337", "source": "GND"}], "date_of_birth": "17.04.1944", "preferred_name": "Edwards, Olwen", "country_associated": "xxk", "authorized_access_point": "Edwards, Olwen, 1944-"} 1 +2024-09-11 09:01:51.233971 2024-09-11 09:01:51.233975 b49f16f3-a8d9-467a-b746-ee91f34507f6 {"md5": "857546c06f21fb5c82fabf80d3c780a4", "pid": "1208648632", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1208648632", "source": "GND"}], "preferred_name": "Alqadi, Amjad", "country_associated": "sz", "authorized_access_point": "Alqadi, Amjad", "biographical_information": ["Dissertation Université de Genève, 2017"]} 1 +2024-09-11 09:01:51.292133 2024-09-11 09:01:51.292137 692f46f5-f544-4004-815d-84372ebc4dcf {"md5": "466ac7be6a20f8453cd37395bc7bb8af", "pid": "1208728474", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1208728474", "source": "GND"}], "variant_name": ["Amin, Sultan Muhammad", "Krueng Raba Nasution"], "date_of_birth": "1904", "preferred_name": "Amin, SM", "country_associated": "io", "variant_access_point": ["Amin, Sultan Muhammad, 1904-", "Krueng Raba Nasution, 1904-"], "authorized_access_point": "Amin, SM, 1904-", "biographical_information": ["Krueng Raba Nasution ist der Spitzname"]} 1 +2024-09-11 09:01:51.34649 2024-09-11 09:01:51.346494 af3b4c82-6c06-4dcc-8554-fa175a699e6f {"md5": "b03045e5e692f548d9ad98f5060506cc", "pid": "1208923765", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1208923765", "source": "GND"}], "preferred_name": "Fray, Nicolas", "country_associated": "fr", "authorized_access_point": "Fray, Nicolas", "biographical_information": ["Université Paris Est Créteil et Université Paris Diderot, Institut Pierre Simon Laplace, Créteil"]} 1 +2024-09-11 09:01:52.102759 2024-09-11 09:01:52.102763 cad54ce2-2efc-4461-a9c9-ff5e67eeff87 {"md5": "d4ef545dfaab98f627d0873d906844d8", "pid": "1210955601", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1210955601", "source": "GND"}], "variant_name": ["Bràina, Cristiano Becciu-"], "date_of_birth": "1974", "preferred_name": "Becciu-Bràina, Cristiano", "country_associated": "it", "variant_access_point": ["Bràina, Cristiano Becciu-, 1974-"], "authorized_access_point": "Becciu-Bràina, Cristiano, 1974-"} 1 +2024-09-11 09:01:51.403322 2024-09-11 09:01:51.403324 87548f64-125f-4565-a4a5-84a664965300 {"md5": "8daa531f86a91831a2971885170b2df5", "pid": "1209087162", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1209087162", "source": "GND"}], "variant_name": ["Xyritakēs, Dēmētrēs A.", "Xyritakēs, Dēmētrios", "Xyritakēs, Dēmētrios A."], "date_of_birth": "1946", "preferred_name": "Xyritakēs, Dēmētrēs", "country_associated": "gr", "variant_access_point": ["Xyritakēs, Dēmētrēs A., 1946-", "Xyritakēs, Dēmētrios, 1946-", "Xyritakēs, Dēmētrios A., 1946-"], "parallel_access_point": ["Ξυριτάκης, Δημήτρης, 1946-"], "authorized_access_point": "Xyritakēs, Dēmētrēs, 1946-"} 1 +2024-09-11 09:01:51.473016 2024-09-11 09:01:51.473019 6f0a1247-0cbc-49f6-90f6-e57643903ee5 {"md5": "69086811d8e5628cdac855e66ffb2494", "pid": "120917661", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120917661", "source": "GND"}], "date_of_birth": "1960", "preferred_name": "Jakob, Gerd", "authorized_access_point": "Jakob, Gerd, 1960-", "biographical_information": ["Diss. Fachbereich Elektrotechnik"]} 1 +2024-09-11 09:01:51.52949 2024-09-11 09:01:51.529493 09aae95e-4dde-44a1-bd3e-2f586b6f135b {"md5": "dfc18478cd001bb3cc00a560c054bce6", "pid": "1209584417", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1209584417", "source": "GND"}], "variant_name": ["Gmelin, Charlotte"], "date_of_birth": "1816", "date_of_death": "1900", "preferred_name": "Bruns, Charlotte", "country_associated": "gw", "variant_access_point": ["Gmelin, Charlotte, 1816-1900"], "authorized_access_point": "Bruns, Charlotte, 1816-1900"} 1 +2024-09-11 09:01:51.584427 2024-09-11 09:01:51.584431 86c15e22-97ee-4c33-a98b-0929403863ec {"md5": "1fb54154b1c82e3d836a17dbfa76d0a2", "pid": "1209711753", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1209711753", "source": "GND"}], "variant_name": ["Cerdas, Gerardo González-"], "date_of_birth": "1986", "preferred_name": "González-Cerdas, Gerardo", "country_associated": "cr", "variant_access_point": ["Cerdas, Gerardo González-, 1986-"], "authorized_access_point": "González-Cerdas, Gerardo, 1986-"} 1 +2024-09-11 09:01:51.635369 2024-09-11 09:01:51.635374 d47e686d-f2a8-4f5c-b2bd-3ce230752610 {"md5": "2a09f365cdbec3afa6e99b057910a5f7", "pid": "120981238", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120981238", "source": "GND"}], "date_of_birth": "1967", "preferred_name": "Hanssen, Christian", "authorized_access_point": "Hanssen, Christian, 1967-", "biographical_information": ["Jurist, Industriekaufmann"]} 1 +2024-09-11 09:01:51.69067 2024-09-11 09:01:51.690673 1c1ccc5d-85e1-462f-a15e-62b4d0a586b0 {"md5": "19d1d1066469b0af7a754c9952f32916", "pid": "1209907445", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1209907445", "source": "GND"}], "preferred_name": "Murphy, Neil", "country_associated": "fr", "authorized_access_point": "Murphy, Neil"} 1 +2024-09-11 09:01:51.742419 2024-09-11 09:01:51.742422 6082007f-3c6b-4b28-94c7-52bee36635e9 {"md5": "0e6c72b72457fe863472c3a2487e6618", "pid": "1209954184", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1209954184", "source": "GND"}], "preferred_name": "Richardson, Ian", "country_associated": "xxk", "authorized_access_point": "Richardson, Ian"} 1 +2024-09-11 09:01:51.795605 2024-09-11 09:01:51.795609 6ea2b9a9-bf7c-4ba8-8b01-49332a00aab4 {"md5": "ac7b50133d83588cd2c2f2837bb42521", "pid": "1209976218", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1209976218", "source": "GND"}], "date_of_birth": "ca. 20. Jahrhundert", "preferred_name": "Friedländer, Walter", "authorized_access_point": "Friedländer, Walter, ca. 20. Jahrhundert", "biographical_information": ["Büchersammlung mit Eigentumsvermerk: \\"Aus der russischen Bücherei Walter Friedländers\\" und Nummer"]} 1 +2024-09-11 09:01:51.857841 2024-09-11 09:01:51.857844 47de6b47-214b-41c4-b0f0-06ce34a58867 {"md5": "971bf0870f5497c0807a73d775da2ec8", "pid": "121017206", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/121017206", "source": "GND"}], "variant_name": ["Kossmann, E. H.", "Kossmann, Ernst Heinrich", "Kossman, Ernst H."], "date_of_birth": "1922", "date_of_death": "2003", "preferred_name": "Kossmann, Ernst H.", "country_associated": "ne", "variant_access_point": ["Kossmann, E. H., 1922-2003", "Kossmann, Ernst Heinrich, 1922-2003", "Kossman, Ernst H., 1922-2003"], "authorized_access_point": "Kossmann, Ernst H., 1922-2003", "biographical_information": ["Niederländ. Historiker"]} 1 +2024-09-11 09:01:51.91081 2024-09-11 09:01:51.910813 844b95ba-b2ab-427b-bb7e-5e8f40a2c6b8 {"md5": "5aed03b4cfc7995042bc9ecfb32bf9fd", "pid": "121042413", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/121042413", "source": "GND"}], "variant_name": ["Berg, Stefan"], "date_of_birth": "1959", "preferred_name": "Berg, Stephan", "country_associated": "gw", "variant_access_point": ["Berg, Stefan, 1959-"], "authorized_access_point": "Berg, Stephan, 1959-", "biographical_information": ["1990-2000 Leiter des Kunstvereins Freiburg; 2001-2008 Direktor des Kunstvereins Hannover; seit April 2008 Direktor des Kunstmuseums Bonn; Honorarprofessor an der Hochschule für Bildende Künste in Braunschweig; Veröffentlichungen zur Kunst der Gegenwart"]} 1 +2024-09-11 09:01:51.974322 2024-09-11 09:01:51.974325 81580b3d-cd68-487d-98c4-60ecef1747b0 {"md5": "68a0d98598735984e86b225a80bde783", "pid": "121068439", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/121068439", "source": "GND"}], "date_of_birth": "1963", "preferred_name": "Füg, Torsten", "authorized_access_point": "Füg, Torsten, 1963-", "biographical_information": ["Studium Mathematik, Physik, Volkswirtschaft"]} 1 +2024-09-11 09:01:52.041236 2024-09-11 09:01:52.04124 fbdc7762-8b3e-4f57-86a0-0c16e23d3c7c {"md5": "af7ed64e844697af60554b433be43287", "pid": "1210872188", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1210872188", "source": "GND"}], "variant_name": ["Maire, Daphné Gaudry-", "Maire, Daphné"], "preferred_name": "Gaudry-Maire, Daphné", "country_associated": "sz", "variant_access_point": ["Maire, Daphné Gaudry-", "Maire, Daphné"], "authorized_access_point": "Gaudry-Maire, Daphné", "biographical_information": ["Dissertation Université de Genève, 2006"]} 1 +2024-09-11 09:01:52.16092 2024-09-11 09:01:52.160924 a86c2640-4e1c-4135-87b8-167e1449d86d {"md5": "fb765bef1153ca23ca8af8e654b10222", "pid": "1210962721", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1210962721", "source": "GND"}], "variant_name": ["Liu Ruishao", "Liu rui shao", "Lau, Johnny Y.S.", "Johnny Y.S. Lau", "Lau, Y.S. Johnny", "夫子"], "date_of_birth": "1954", "preferred_name": "Liu, Ruishao", "variant_access_point": ["Liu Ruishao, 1954-", "Liu rui shao, 1954-", "Lau, Johnny Y.S., 1954-", "Johnny Y.S. Lau, 1954-", "Lau, Y.S. Johnny, 1954-", "夫子, 1954-"], "parallel_access_point": ["劉銳紹, 1954-", "刘锐绍, 1954-"], "authorized_access_point": "Liu, Ruishao, 1954-", "biographical_information": ["\\"劉銳紹(英文名Mr. Johnny Y.S. Lau,外號「夫子」)中國事務問題專家,自1972年開始從事新聞工作,甫開始即任香港文匯報駐北京辦事處主任至1989年(因六四事件與程翔、社長李子誦一起離開親北京的香港《文匯報》,當時程翔是副總編輯,而劉銳紹是駐北京特派員。他也是當時唯一被北京市市長陳希同點名的境外記者)、後與李子誦和程翔創辦《當代》雜誌並任副總編輯(1991年~1995年2月20日)。曾為香港新城電台《發展新大陸》、現為商業一台星期天早上《政好星期天》節目主持人,並先後擔任香港有線電視中港事務顧問,加拿大中文電台評論員等。專欄著作包括:《蘋果日報》劉銳紹專欄、《經濟日報》中港政情專欄、《東方日報》中港筆通,及《星島日報》、《明報》、《新報》中港評論專欄等等。\\" (香港民風大典)"]} 1 +2024-09-11 09:01:52.212066 2024-09-11 09:01:52.21207 aa70c58b-71ed-4d86-9f7a-7a12f092af83 {"md5": "a2927be739eab44600387137f0d77114", "pid": "1211035360", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1211035360", "source": "GND"}], "variant_name": ["Jofre, Santiago Wortman"], "preferred_name": "Wortman Jofre, Santiago", "country_associated": "ag", "variant_access_point": ["Jofre, Santiago Wortman"], "authorized_access_point": "Wortman Jofre, Santiago"} 1 +2024-09-11 09:01:52.267002 2024-09-11 09:01:52.267005 53ee1ab5-9d18-4e56-b631-9abfb848b60d {"md5": "61e0d809710a193ecf8e10ab8b1ac4f5", "pid": "1211358380", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1211358380", "source": "GND"}], "preferred_name": "Kölling, Mario", "country_associated": "sp", "authorized_access_point": "Kölling, Mario"} 1 +2024-09-11 09:01:52.320257 2024-09-11 09:01:52.32026 a985e9d0-e92a-412b-a548-60daaf35e0a6 {"md5": "e3fdd1eccaf7d35f854eb7b57091c6c8", "pid": "1211576035", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1211576035", "source": "GND"}], "variant_name": ["Altersasyl Sankt Maria Elisabeth"], "preferred_name": "Altersasyl St. Maria Elisabeth", "country_associated": "sz", "date_of_termination": "19XX", "variant_access_point": ["Altersasyl Sankt Maria Elisabeth"], "date_of_establishment": "1897", "authorized_access_point": "Altersasyl St. Maria Elisabeth", "biographical_information": ["Name 2020: Elisabethenheim Bleichenberg"]} 1 +2024-09-11 09:01:52.378183 2024-09-11 09:01:52.378187 9d5bbffe-ce8c-4c50-8918-e92905c3e29e {"md5": "95815cd76a9e74fcaf0aaf8c72815c0d", "pid": "121163393", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/121163393", "source": "GND"}], "variant_name": ["Donato, Francesco Saverio"], "date_of_birth": "1734", "date_of_death": "1796", "preferred_name": "Lillo, Saverio", "country_associated": "it", "variant_access_point": ["Donato, Francesco Saverio, 1734-1796"], "authorized_access_point": "Lillo, Saverio, 1734-1796", "biographical_information": ["Ital. Maler"]} 1 +2024-09-11 09:01:52.427551 2024-09-11 09:01:52.427555 7d5f3ff4-a6b0-4a16-8483-a7ce45cf1250 {"md5": "c0e1d2864ca5a45e019e928eda38afd6", "pid": "1211685918", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1211685918", "source": "GND"}], "preferred_name": "Baur, Guillaume Bastien", "country_associated": "sz", "authorized_access_point": "Baur, Guillaume Bastien", "biographical_information": ["Dissertation Ecole polytechnique fédérale de Lausanne, 2015"]} 1 +2024-09-11 09:01:52.478104 2024-09-11 09:01:52.478108 bb31b14e-f0ed-4c98-8314-25d9f43533cf {"md5": "06b087f805e9085db22f0fd473851bce", "pid": "1211707628", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1211707628", "source": "GND"}], "date_of_birth": "1885", "date_of_death": "1964", "preferred_name": "Wulffius, Kurt Michael Iwar", "country_associated": "ru", "authorized_access_point": "Wulffius, Kurt Michael Iwar, 1885-1964", "biographical_information": ["stud. Dorpat; Arzt in Riga;"]} 1 +2024-09-11 09:01:52.529676 2024-09-11 09:01:52.529681 e039f1be-124e-4d43-b35f-dae12c25df9b {"md5": "6c54d59c5ea93abe3dc2ede2a613fac1", "pid": "1211767892", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1211767892", "source": "GND"}], "variant_name": ["VEB Bau-Union Küste, Oberbauleitung Seehaus und Oranienburg"], "preferred_name": "Bau-Union Küste. Oberbauleitung Seehaus und Oranienburg", "variant_access_point": ["VEB Bau-Union Küste, Oberbauleitung Seehaus und Oranienburg. Unveraenderte Form"], "authorized_access_point": "Bau-Union Küste. Oberbauleitung Seehaus und Oranienburg"} 1 +2024-09-11 09:01:52.581011 2024-09-11 09:01:52.581015 13b03120-56d0-4b94-a0b3-b9cd4feb9434 {"md5": "16317ec1f7fc60dff9222272dcbac5ac", "pid": "1211775216", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1211775216", "source": "GND"}], "date_of_birth": "1783", "date_of_death": "1835", "preferred_name": "Potter, Richard", "country_associated": "xxu", "authorized_access_point": "Potter, Richard, 1783-1835"} 1 +2024-09-11 09:01:52.637215 2024-09-11 09:01:52.637217 857735fc-9d21-4463-9d28-72289b046de5 {"md5": "eca2f87ddf51a10c790d08e17d97689c", "pid": "1212074939", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1212074939", "source": "GND"}], "preferred_name": "Barrès, Frankline", "country_associated": "fr", "authorized_access_point": "Barrès, Frankline"} 1 +2024-09-11 09:01:52.687661 2024-09-11 09:01:52.687665 b53998f8-0333-49bc-ac55-b1ae58e83b22 {"md5": "6a6ef23759edb94199ce9d42b3df2304", "pid": "1212115716", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1212115716", "source": "GND"}], "preferred_name": "Kruedener, Claudia von", "country_associated": "gw", "authorized_access_point": "Kruedener, Claudia von", "biographical_information": ["Doktorandin am Lehrstuhl für Bayerische Geschichte der Universität Bayreuth, beschäftigt sich mit der Fragestellung nach Herrschaftskonzeptionen im frühneuzeitlichen Kurbayern"]} 1 +2024-09-11 09:01:52.800577 2024-09-11 09:01:52.80058 16fc00b8-4c0e-46b3-af55-2a18784f19b4 {"md5": "b0df5ed927d00270d3e319375185f29a", "pid": "1212537750", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1212537750", "source": "GND"}], "variant_name": ["Zuschlag, Eckhard Fritz"], "date_of_birth": "1933", "preferred_name": "Zuschlag, Eckhard", "country_associated": "gw", "variant_access_point": ["Zuschlag, Eckhard Fritz, 1933-"], "authorized_access_point": "Zuschlag, Eckhard, 1933-"} 1 +2024-09-11 09:01:52.856197 2024-09-11 09:01:52.8562 f776c50a-9c24-4012-8e78-61dd32646a9e {"md5": "d5af278030b1a1fadad5599fedc1b049", "pid": "121259927", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/121259927", "source": "GND"}], "variant_name": ["Barkmann, Udo", "Barkmann, U. B.", "Удо Б. Баркманн"], "date_of_birth": "1955", "preferred_name": "Barkmann, Udo B.", "country_associated": "gw", "variant_access_point": ["Barkmann, Udo, 1955-", "Barkmann, U. B., 1955-", "Удо Б. Баркманн, 1955-"], "parallel_access_point": ["Баркманн, Удо Б., 1955-", "Баркман, Удо Б., 1955-"], "authorized_access_point": "Barkmann, Udo B., 1955-", "biographical_information": ["Studium der Mongolistik, Geschichte und Mandschuristik, Promotion 1984; Mongolei-Experte und Autor"]} 1 +2024-09-11 09:01:52.922649 2024-09-11 09:01:52.922654 a34102f2-0427-43a2-84c8-13dc60a230dd {"md5": "bb948f5e5deb81d01b9f2846b7e047ee", "pid": "1212602552", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1212602552", "source": "GND"}], "variant_name": ["Fallah, Belal N."], "preferred_name": "Fallah, Belal", "variant_access_point": ["Fallah, Belal N."], "authorized_access_point": "Fallah, Belal"} 1 +2024-09-11 09:01:52.984011 2024-09-11 09:01:52.984014 d2198ded-3c33-4ec4-b954-b723cf05c184 {"md5": "58bfabf254b4b5446d27ba9e6fbca3fd", "pid": "1213248760", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1213248760", "source": "GND"}], "date_of_birth": "1936", "date_of_death": "2012", "preferred_name": "Bär, Horst", "country_associated": "gw", "authorized_access_point": "Bär, Horst, 1936-2012"} 1 +2024-09-11 09:01:53.051623 2024-09-11 09:01:53.051627 801865db-9125-4db1-b35f-752fa11b41c5 {"md5": "b3f89bbba13c67f40bbb2875fd4110c2", "pid": "1213263360", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1213263360", "source": "GND"}], "preferred_name": "Julian, Pierre", "country_associated": "fr", "authorized_access_point": "Julian, Pierre"} 1 +2024-09-11 09:01:53.128285 2024-09-11 09:01:53.12829 28a6240d-bc3f-4529-9245-4940b98cd1e4 {"md5": "02ee7c746ffe396309609c3690d16afb", "pid": "1213396700", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1213396700", "source": "GND"}], "preferred_name": "Armenteros, Manuel", "country_associated": "sp", "authorized_access_point": "Armenteros, Manuel"} 1 +2024-09-11 09:01:53.177969 2024-09-11 09:01:53.177974 87eb966c-f560-4646-b62d-f7213d6ca4d7 {"md5": "aea4d2bcd84eb3aab50400bc1a4c709e", "pid": "1213491738", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1213491738", "source": "GND"}], "variant_name": ["Ramlee, Shah Iskandar Fahmie", "Fahmie Ramlee, Shah Iskandar", "Iskandar Fahmie Ramlee, Shah"], "preferred_name": "Shah Iskandar Fahmie Ramlee", "country_associated": "my", "variant_access_point": ["Ramlee, Shah Iskandar Fahmie", "Fahmie Ramlee, Shah Iskandar", "Iskandar Fahmie Ramlee, Shah"], "authorized_access_point": "Shah Iskandar Fahmie Ramlee"} 1 +2024-09-11 09:01:53.233312 2024-09-11 09:01:53.233315 86e70554-6e40-4411-ac94-c6e5adcc8f00 {"md5": "cb0337face8840506e6397ba44f47518", "pid": "121376621", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/121376621", "source": "GND"}], "variant_name": ["LeBlanc, Thomas", "Blanc, Thomas le"], "date_of_birth": "1951", "preferred_name": "Le Blanc, Thomas", "country_associated": "gw", "variant_access_point": ["LeBlanc, Thomas, 1951-", "Blanc, Thomas le, 1951-"], "parallel_access_point": ["Le Blanc, Thomas, 1951-"], "authorized_access_point": "Le Blanc, Thomas, 1951-"} 1 +2024-09-11 09:01:53.286665 2024-09-11 09:01:53.286667 2fea5f73-c4cb-4db0-8522-e95de2625bec {"md5": "b10f8a0d6c5415b0ae9fa50422aff608", "pid": "121432467", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/121432467", "source": "GND"}], "variant_name": ["Pfaler, Ernst", "Pfahler, Ernst", "Pfahlern, Ernestus von"], "date_of_birth": "1588", "date_of_death": "1650", "preferred_name": "Pfahlern, Ernst von", "country_associated": "gw", "variant_access_point": ["Pfaler, Ernst, 1588-1650", "Pfahler, Ernst, 1588-1650", "Pfahlern, Ernestus von, 1588-1650"], "authorized_access_point": "Pfahlern, Ernst von, 1588-1650"} 1 +2024-09-11 09:01:53.339201 2024-09-11 09:01:53.339205 ebcf97e4-386d-4bd6-bd90-fee63cda6643 {"md5": "5056f5c28a1849b94018ca5165601199", "pid": "121455637", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/121455637", "source": "GND"}], "date_of_birth": "1959", "preferred_name": "Ganß, Ingrid", "country_associated": "gw", "authorized_access_point": "Ganß, Ingrid, 1959-", "biographical_information": ["schreibt historische Romane"]} 1 +2024-09-11 09:01:53.390002 2024-09-11 09:01:53.390004 b8e1f647-f3a9-4abe-9032-b389e05ccb45 {"md5": "e84eecad8155195c0273ef33e9b2d67f", "pid": "1215224869", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1215224869", "source": "GND"}], "date_of_birth": "XXXX", "date_of_death": "1918", "preferred_name": "Bouillon, Charles Otto", "country_associated": "gw", "authorized_access_point": "Bouillon, Charles Otto, XXXX-1918", "biographical_information": ["1911 Empfänger der Fidicin-Medaille des Vereins für die Geschichte Berlins"]} 1 +2024-09-11 09:01:53.490176 2024-09-11 09:01:53.490179 dec2dc06-ae34-4717-ba2b-f3175aaef513 {"md5": "24804bb961972fad32d394a1122cf452", "pid": "1215239556", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1215239556", "source": "GND"}], "preferred_name": "Wlasow, Renata", "authorized_access_point": "Wlasow, Renata"} 1 +2024-09-11 09:01:53.541811 2024-09-11 09:01:53.541815 3a01bc17-04cd-4e88-b82d-9572c0336bdd {"md5": "f02c129a7d322784790ca91209617596", "pid": "121552756", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/121552756", "source": "GND"}], "variant_name": ["Hercher, Christiane"], "date_of_birth": "1968", "preferred_name": "Horack, Christiane", "variant_access_point": ["Hercher, Christiane, 1968-"], "authorized_access_point": "Horack, Christiane, 1968-", "biographical_information": ["Ärztin, Abt. Anästhesiologie"]} 1 +2024-09-11 09:01:53.594949 2024-09-11 09:01:53.594953 7e527be8-9085-41ad-b8a7-3574ff185e7f {"md5": "dcf2f21a084d0c1892283f5ddcff25b0", "pid": "1215719418", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1215719418", "source": "GND"}], "variant_name": ["Scheiz, Matthias Josef"], "date_of_birth": "1754", "date_of_death": "1800", "preferred_name": "Scheiz, Robert", "country_associated": "sz", "variant_access_point": ["Scheiz, Matthias Josef, 1754-1800"], "authorized_access_point": "Scheiz, Robert, 1754-1800"} 1 +2024-09-11 09:01:53.646205 2024-09-11 09:01:53.646209 5633fe25-0591-40d0-a4ca-5827199a7b06 {"md5": "db36737a2bea89838953bfddc3f42678", "pid": "1216057184", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1216057184", "source": "GND"}], "variant_name": ["Meara, Graeme O'"], "preferred_name": "O'Meara, Graeme", "country_associated": "ie", "variant_access_point": ["Meara, Graeme O'"], "authorized_access_point": "O'Meara, Graeme"} 1 +2024-09-11 09:01:53.695093 2024-09-11 09:01:53.695096 21b42a21-9569-4caa-98e7-b67f79bd8fea {"md5": "a432d2ddc303092d88fe57c417602249", "pid": "1216511039", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1216511039", "source": "GND"}], "variant_name": ["De Villaine, Hortense"], "preferred_name": "Villaine, Hortense de", "country_associated": "fr", "variant_access_point": ["De Villaine, Hortense"], "authorized_access_point": "Villaine, Hortense de", "biographical_information": ["She wrote a book on Epiphenomenalism. Her main purpose is to introduce in France some little known British scientists and philosophers such as Huxley, Maudsley, Clifford, Lewes and so on."]} 1 +2024-09-11 09:01:53.752558 2024-09-11 09:01:53.75256 66059267-9791-43bd-a946-b4ed09991a00 {"md5": "3fe47edd77d49bf148e5c77d71dcbc1f", "pid": "12167410X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12167410X", "source": "GND"}], "date_of_birth": "1958", "preferred_name": "Rusconi, Maria", "authorized_access_point": "Rusconi, Maria, 1958-", "biographical_information": ["Sekretärin, Autorin"]} 1 +2024-09-11 09:01:53.803121 2024-09-11 09:01:53.803124 cbc02711-5901-45f3-9c53-ed2e05b5b9a0 {"md5": "13eb388fba96970e70e6e59ad99a2f9e", "pid": "1217064974", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1217064974", "source": "GND"}], "date_of_birth": "1820", "date_of_death": "1882", "preferred_name": "Bremen, Julius Bernhard von", "country_associated": "ru", "authorized_access_point": "Bremen, Julius Bernhard von, 1820-1882"} 1 +2024-09-11 09:01:53.865262 2024-09-11 09:01:53.865265 678c0ace-03d0-4a90-ba51-92009e0856df {"md5": "a89faab58c55fbf684d2e5685630111c", "pid": "121710696", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/121710696", "source": "GND"}], "variant_name": ["Witte, Siegfried Kurt Helmut", "Witte, S."], "date_of_birth": "1922", "date_of_death": "2012", "preferred_name": "Witte, Siegfried", "country_associated": "gw", "variant_access_point": ["Witte, Siegfried Kurt Helmut, 1922-2012", "Witte, S., 1922-2012"], "authorized_access_point": "Witte, Siegfried, 1922-2012"} 1 +2024-09-11 09:01:53.919806 2024-09-11 09:01:53.919808 883dacd5-d133-4134-a690-58af2101ced1 {"md5": "5d08d0d065071be9513c68a1becd4e4d", "pid": "12172249X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12172249X", "source": "GND"}], "date_of_birth": "1947", "preferred_name": "Bartsch, Kurt", "country_associated": "au", "authorized_access_point": "Bartsch, Kurt, 1947-", "biographical_information": ["Graz, Univ., Diss., 1972; Österreich. Professor für neuere dt. Literatur an d. Univ. Graz"]} 1 +2024-09-11 09:01:53.969527 2024-09-11 09:01:53.96953 8a925c9f-ed8d-4850-bc4d-d511fec8e738 {"md5": "dd9fe28bdb1115258e802844ba09b2f1", "pid": "12173692X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12173692X", "source": "GND"}], "date_of_birth": "1966", "preferred_name": "Schulenberg, Ulf", "authorized_access_point": "Schulenberg, Ulf, 1966-", "biographical_information": ["CIP-Diss. Fachbereich Sprach- und Literaturwissenschaften"]} 1 +2024-09-11 09:01:54.023821 2024-09-11 09:01:54.023825 873aeabe-600a-4ed6-a5a5-b0590cc01516 {"md5": "88c53e39f8cd0153733d7c1042943362", "pid": "121808173", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/121808173", "source": "GND"}], "variant_name": ["Schönbeck, Johannes"], "preferred_name": "Schönbeck, Johann", "country_associated": "gw", "variant_access_point": ["Schönbeck, Johannes"], "authorized_access_point": "Schönbeck, Johann", "biographical_information": ["Pastor"]} 1 +2024-09-11 09:01:54.079483 2024-09-11 09:01:54.079486 7c42e254-7586-411e-96a1-81ca75251261 {"md5": "5d1eeab9a22deca936241d89284b939f", "pid": "1218087730", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1218087730", "source": "GND"}], "variant_name": ["Möhärrämova, Dilä", "Chajretdinova, Dilja Fagimovna", "Mucharrjamova, Dilja"], "date_of_birth": "1981", "preferred_name": "Häjretdinova, Dilä Fäẖim kyzy", "country_associated": "ru", "variant_access_point": ["Möhärrämova, Dilä, 1981-", "Chajretdinova, Dilja Fagimovna, 1981-", "Mucharrjamova, Dilja, 1981-"], "authorized_access_point": "Häjretdinova, Dilä Fäẖim kyzy, 1981-"} 1 +2024-09-11 09:01:54.133736 2024-09-11 09:01:54.13374 7575bf8a-30af-4724-8921-435f9b98303b {"md5": "b58ce5c5ee336af105bd5e985d5fddc0", "pid": "1218187433", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1218187433", "source": "GND"}], "date_of_birth": "1988", "preferred_name": "Löhdefink, Philipp", "country_associated": "gw", "authorized_access_point": "Löhdefink, Philipp, 1988-", "biographical_information": ["Diss. Technische Universität Ilmenau, Fachgebiet Kleinmaschinen"]} 1 +2024-09-11 09:01:54.858922 2024-09-11 09:01:54.858927 4e6e2062-d459-4d90-87e4-cb87d87d3ad4 {"md5": "a33b651a701447a03a5633ba2b24b968", "pid": "1219946478", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1219946478", "source": "GND"}], "preferred_name": "Brettschneider, Florian", "authorized_access_point": "Brettschneider, Florian"} 1 +2024-09-11 09:01:57.2637 2024-09-11 09:01:57.263705 336ea2f4-e15f-45b4-9365-daa01c0d700e {"md5": "20607c1d2e96c609f9f9917f9752d543", "pid": "122787900", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "qualifier": "Familie", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/122787900", "source": "GND"}], "preferred_name": "Zanthier, Familie", "country_associated": "gw", "authorized_access_point": "Zanthier, Familie", "biographical_information": ["Familie aus Schmachtenberg "]} 1 +2024-09-11 09:01:54.190685 2024-09-11 09:01:54.190688 85474ab1-fa03-4407-99e8-7005e943db27 {"md5": "e029141db4350fd318748d57006d99b7", "pid": "1218379219", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1218379219", "source": "GND"}], "variant_name": ["Regionalʹnyj obščestvennyj fond im. V.T. Kozlova", "Региональный общественный фонд им. В. Т. Козлова", "Региональный общ. Фонд сод .Разв. и Под. Культуры и иск. им. В.Т.КО"], "preferred_name": "Regional'nyj obščestvennyj fond sodejstvija razvitiju i podderžke kul'tury i iskusstva imeni V. T. Kozlova", "country_associated": "ru", "date_of_termination": "01.04.2008", "variant_access_point": ["Regionalʹnyj obščestvennyj fond im. V.T. Kozlova. Unveraenderte Form", "Региональный общественный фонд им. В. Т. Козлова", "Региональный общ. Фонд сод .Разв. и Под. Культуры и иск. им. В.Т.КО"], "date_of_establishment": "01.04.1997", "parallel_access_point": ["Региональный общественный фонд содействия развитию и поддержке культуры и искусства имени В. Т. Козлова"], "authorized_access_point": "Regional'nyj obščestvennyj fond sodejstvija razvitiju i podderžke kul'tury i iskusstva imeni V. T. Kozlova"} 1 +2024-09-11 09:01:54.244474 2024-09-11 09:01:54.244477 45201206-87e1-40a0-a940-3e70a0fd6abb {"md5": "f3398703104dfcb2f507ae19a9aeb9a1", "pid": "1218472189", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1218472189", "source": "GND"}], "preferred_name": "Hayfield, Nikki", "country_associated": "xxk", "authorized_access_point": "Hayfield, Nikki", "biographical_information": ["UWE Bristol, senior lecturer in social psychology"]} 1 +2024-09-11 09:01:54.301167 2024-09-11 09:01:54.301171 d0cbe8e0-6568-4be3-b36e-2f7c6212fa0a {"md5": "657e4b78ea9552c97073790a1ad04544", "pid": "121855775", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/121855775", "source": "GND"}], "date_of_birth": "1943", "preferred_name": "Clemens, Nancy", "country_associated": "xxu", "authorized_access_point": "Clemens, Nancy, 1943-", "biographical_information": ["Amerikan. Massagetherapeutin, Heilerin"]} 1 +2024-09-11 09:01:54.360534 2024-09-11 09:01:54.360538 932654cc-3366-4975-9ac8-af6186cb239b {"md5": "bcccd7338f16e9c98104e9ebb07c03fe", "pid": "1218603739", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1218603739", "source": "GND"}], "preferred_name": "Dolleschel, Kurt", "authorized_access_point": "Dolleschel, Kurt"} 1 +2024-09-11 09:01:54.425713 2024-09-11 09:01:54.425717 8d8e2df1-6755-4376-8ce4-1e0e2a890118 {"md5": "203a45a9c35a58975feeabc69b42a553", "pid": "1218605995", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1218605995", "source": "GND"}], "preferred_name": "Ayerbe Fiala, Sofia", "authorized_access_point": "Ayerbe Fiala, Sofia"} 1 +2024-09-11 09:01:54.475141 2024-09-11 09:01:54.475145 d5701c87-aaa7-454f-9ed4-dab2e4057795 {"md5": "da3e4b29ac88fa88784b80b8737ed217", "pid": "1218696680", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1218696680", "source": "GND"}], "preferred_name": "Winkler, Michael", "country_associated": "gw", "authorized_access_point": "Winkler, Michael", "biographical_information": ["Mitbegründer der Stadtreformer und der Werkstatt für Gemeindeaufbau"]} 1 +2024-09-11 09:01:54.52643 2024-09-11 09:01:54.526434 feae73e2-d2be-4a77-9b4e-ee6e8b717dab {"md5": "629412fa9ca90d4c32bf8227d14841bf", "pid": "1219001767", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1219001767", "source": "GND"}], "preferred_name": "Wang, Li", "country_associated": "cc", "authorized_access_point": "Wang, Li"} 1 +2024-09-11 09:01:54.574932 2024-09-11 09:01:54.574936 628c03e4-96f2-4528-84b1-f4e7dfcd1c69 {"md5": "be5307cc1d3e85c65bba9483db90a0aa", "pid": "1219020982", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1219020982", "source": "GND"}], "date_of_birth": "1952", "preferred_name": "Salis, Marianne von", "country_associated": "gw", "authorized_access_point": "Salis, Marianne von, 1952-", "biographical_information": ["lebt in Norddeutschland"]} 1 +2024-09-11 09:01:54.628421 2024-09-11 09:01:54.628426 acde2e99-9625-4ddc-ae5d-f5e2307149d4 {"md5": "662f39e3360fd592fcd6dee8999289d7", "pid": "121953823X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/121953823X", "source": "GND"}], "preferred_name": "Zweck, Erich", "country_associated": "gw", "authorized_access_point": "Zweck, Erich"} 1 +2024-09-11 09:01:54.688535 2024-09-11 09:01:54.688539 f00a9a02-b4c4-484f-ad52-a29045258065 {"md5": "0d962b5dfa249ec6d3de19aa5be728f9", "pid": "1219543527", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1219543527", "source": "GND"}], "variant_name": ["Short Course Sum of Squares: Theory and Applications"], "preferred_name": "AMS Short Course Sum of Squares: Theory and Applications", "country_associated": "xxu", "variant_access_point": ["Short Course Sum of Squares: Theory and Applications, 2019, Baltimore, Maryland"], "authorized_access_point": "AMS Short Course Sum of Squares: Theory and Applications, 2019, Baltimore, Maryland"} 1 +2024-09-11 09:01:54.752555 2024-09-11 09:01:54.752559 16822c85-a256-4f7b-a03c-88c478668ec4 {"md5": "effe8224e82366fc0d590262a74ba0c4", "pid": "121978338", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/121978338", "source": "GND"}], "variant_name": ["Omojo Oguche, Esther"], "date_of_birth": "ca. 1965", "date_of_death": "ca. 1998", "preferred_name": "Oguche, Esther Omojo", "country_associated": "nr", "variant_access_point": ["Omojo Oguche, Esther, ca. 1965-ca. 1998"], "authorized_access_point": "Oguche, Esther Omojo, ca. 1965-ca. 1998", "biographical_information": ["Nigerian. Evangelistin"]} 1 +2024-09-11 09:01:54.80426 2024-09-11 09:01:54.804263 1aab4520-aaab-421e-b494-e5159fe8f003 {"md5": "1a94dafd171759dcdc707d85c70e2ca1", "pid": "1219884790", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1219884790", "source": "GND"}], "date_of_birth": "1980", "preferred_name": "Borge, Jessica", "country_associated": "xxk", "authorized_access_point": "Borge, Jessica, 1980-", "biographical_information": ["Digital scholarship manager at Kings College London, Archive & research collections; Visiting Fellow in Digital humanities, School of Advanced Study, Univ. of London (Stand 2020)"]} 1 +2024-09-11 09:01:54.981448 2024-09-11 09:01:54.981451 95f8a961-4055-406d-9afa-b142e25ffc89 {"md5": "51f04b48d8076034259c84f8c8df3a5c", "pid": "1220237183", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1220237183", "source": "GND"}], "variant_name": ["Follpracht-Wietlisbach, Stéphanie"], "preferred_name": "Wietlisbach, Stéphanie", "country_associated": "sz", "variant_access_point": ["Follpracht-Wietlisbach, Stéphanie"], "authorized_access_point": "Wietlisbach, Stéphanie", "biographical_information": ["Urkundsperson des Kantons Schwyz; Promotion an der Universität Zürich 2020"]} 1 +2024-09-11 09:01:55.16125 2024-09-11 09:01:55.161254 0fe18c99-040e-43ed-a86e-29b0ce38a609 {"md5": "694b61766579dd4368ad0ce758119991", "pid": "1220523410", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1220523410", "source": "GND"}], "variant_name": ["Fischer, Ken"], "preferred_name": "Fischer, Kenneth C.", "country_associated": "xxu", "variant_access_point": ["Fischer, Ken"], "authorized_access_point": "Fischer, Kenneth C.", "biographical_information": ["President of the University Musical Society of the University of Michigan (UMS)"]} 1 +2024-09-11 09:01:55.217036 2024-09-11 09:01:55.21704 25a09b12-febf-44dc-b733-75086b8094d6 {"md5": "c2eee35f3ad441df8ad9dfc982b573e2", "pid": "1220644811", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1220644811", "source": "GND"}], "preferred_name": "Slaouti, Omar", "country_associated": "fr", "authorized_access_point": "Slaouti, Omar"} 1 +2024-09-11 09:01:55.277066 2024-09-11 09:01:55.27707 f3a3cea1-fe89-4556-860f-67fcccb779c5 {"md5": "a79efa58e274e11de056c204ba01052a", "pid": "1220778273", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1220778273", "source": "GND"}], "variant_name": ["Salas Bahamón, Luz Magdalena", "Salas, Luz"], "preferred_name": "Salas, Luz Magdalena", "country_associated": "ck", "variant_access_point": ["Salas Bahamón, Luz Magdalena", "Salas, Luz"], "authorized_access_point": "Salas, Luz Magdalena"} 1 +2024-09-11 09:01:55.329233 2024-09-11 09:01:55.329236 ea64d1d7-3c5f-48a4-8054-3f3da8c70a96 {"md5": "1c9743e87aeeeb6c71b72dd4ff67d87c", "pid": "1221205536", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1221205536", "source": "GND"}], "date_of_birth": "1921", "preferred_name": "Chenevier, Paul", "country_associated": "fr", "authorized_access_point": "Chenevier, Paul, 1921-", "biographical_information": ["Kriegsgefangener von 1942-1945 im Lager STALAG IX A Ziegenhain; Zwangsarbeit in Siegen und Netphen-Deuz"]} 1 +2024-09-11 09:01:55.385032 2024-09-11 09:01:55.385035 50664822-40ba-4da0-9ed3-28d3211cd63f {"md5": "ac0c92f6de0db6128dc1ee3889ad0057", "pid": "1221416952", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1221416952", "source": "GND"}], "date_of_birth": "1940", "preferred_name": "Dost, Jörg", "country_associated": "gw", "authorized_access_point": "Dost, Jörg, 1940-"} 1 +2024-09-11 09:01:55.441256 2024-09-11 09:01:55.441259 0e510bc5-3ad1-4aaf-9a0c-088bc9dd5614 {"md5": "9ebfc48bcc29170857c60dcbf632bd70", "pid": "1221561332", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1221561332", "source": "GND"}], "variant_name": ["Kershaw, Paul J. E.", "Kershaw, P. J. E."], "preferred_name": "Kershaw, Paul", "country_associated": "xxk", "variant_access_point": ["Kershaw, Paul J. E.", "Kershaw, P. J. E."], "authorized_access_point": "Kershaw, Paul", "biographical_information": ["BA (Hons), Medieval and Modern History, King's College, University of London, 1989; MPhil, Medieval History, Jesus College, University of Cambridge, 1991; PhD, King's College, University of London, 1999"]} 1 +2024-09-11 09:01:55.497857 2024-09-11 09:01:55.49786 09e51288-020a-4f0b-b4b6-7771d1189543 {"md5": "4759b63ba37182cdfe172dc2f2f23293", "pid": "1221637401", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1221637401", "source": "GND"}], "variant_name": ["Ameli, A."], "preferred_name": "Ameli, Amir", "country_associated": "xxu", "variant_access_point": ["Ameli, A."], "authorized_access_point": "Ameli, Amir"} 1 +2024-09-11 09:01:55.560688 2024-09-11 09:01:55.560692 9408ceaf-ce71-4047-9710-a66d23ae67d7 {"md5": "7c7890b94e74d4d502c3cdaca873ab89", "pid": "1221643304", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1221643304", "source": "GND"}], "date_of_birth": "ca. 20./21.Jh.", "preferred_name": "Carter, Jamison", "country_associated": "xxu", "authorized_access_point": "Carter, Jamison, ca. 20./21.Jh."} 1 +2024-09-11 09:01:55.619957 2024-09-11 09:01:55.61996 8f27782b-56cb-4519-8a8e-7b4c3305d8ff {"md5": "90fbf2096459160c5a9fb5eab09fd790", "pid": "1221680293", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1221680293", "source": "GND"}], "date_of_birth": "ca. 20./21. Jh.", "preferred_name": "Karriqi, Skënder", "country_associated": "aa", "authorized_access_point": "Karriqi, Skënder, ca. 20./21. Jh."} 1 +2024-09-11 09:01:55.68288 2024-09-11 09:01:55.682884 2e8fda8f-8820-48d7-877a-f3a60c136361 {"md5": "5e1ed8246a4f9d35ae6fa45f80ebc8e6", "pid": "1221818635", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1221818635", "source": "GND"}], "preferred_name": "Seida, Kimberly", "country_associated": "xxc", "authorized_access_point": "Seida, Kimberly", "biographical_information": ["Doktorandin an der McGill University, B.A. University of British Columbia 2010"]} 1 +2024-09-11 09:01:55.738582 2024-09-11 09:01:55.738585 cdabe6be-1887-4d54-bd52-adbda8ae47ae {"md5": "37338f0fe0522149dfa3230687c1c4fc", "pid": "1221985515", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1221985515", "source": "GND"}], "variant_name": ["Di, Wu", "Wu Di"], "preferred_name": "Wu, Di", "country_associated": "cc", "variant_access_point": ["Di, Wu", "Wu Di"], "authorized_access_point": "Wu, Di"} 1 +2024-09-11 09:01:55.796885 2024-09-11 09:01:55.796889 e5153b0c-2aab-4eea-826d-705ad2d8c501 {"md5": "de87a1c7a21f8fd377c37385cbef26ef", "pid": "122214459X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/122214459X", "source": "GND"}], "variant_name": ["ISQS, 26."], "preferred_name": "International Conference on Integrable Systems and Quantum Symmetries, 26.", "variant_access_point": ["ISQS, 26., 2019, Prag"], "authorized_access_point": "International Conference on Integrable Systems and Quantum Symmetries, 26., 2019, Prag"} 1 +2024-09-11 09:01:55.86353 2024-09-11 09:01:55.863534 96051f30-044e-4a69-a9df-35a87e63e9eb {"md5": "d965377b7df3c0907e053592a152fa9c", "pid": "122244958", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/122244958", "source": "GND"}], "variant_name": ["Reno, Kym"], "date_of_birth": "1940", "preferred_name": "Tschauder, Gunter", "country_associated": "gw", "variant_access_point": ["Reno, Kym, 1940-"], "authorized_access_point": "Tschauder, Gunter, 1940-", "biographical_information": ["Völklingen (Wirkungsort); Dt. Schriftsteller, Manager sowie Verkaufs- und Managementtrainer"]} 1 +2024-09-11 09:01:55.942589 2024-09-11 09:01:55.942594 addea162-1664-4dc3-a7d1-47100d8a08f2 {"md5": "e8fbb6a90d03f36d78a70f2bfe408273", "pid": "1222466716", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1222466716", "source": "GND"}], "preferred_name": "Wetters, Sascha", "authorized_access_point": "Wetters, Sascha"} 1 +2024-09-11 09:01:56.006141 2024-09-11 09:01:56.006144 1c09bc02-6f9b-43f5-896f-3081075d605a {"md5": "765978b213f3f8cf32019492788f9804", "pid": "1222736330", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1222736330", "source": "GND"}], "date_of_birth": "1897", "preferred_name": "Haug, Gustav", "country_associated": "gw", "authorized_access_point": "Haug, Gustav, 1897-"} 1 +2024-09-11 09:01:56.063803 2024-09-11 09:01:56.063809 51fb8487-b019-491d-82e4-78cbd55df06b {"md5": "559e7baed1e111bf111ad9ee227256ee", "pid": "122307364", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/122307364", "source": "GND"}], "date_of_birth": "31.08.1967", "preferred_name": "Oppel, Kenneth", "country_associated": "xxc", "authorized_access_point": "Oppel, Kenneth, 1967-"} 1 +2024-09-11 09:01:56.133027 2024-09-11 09:01:56.133031 cdf7660d-1d1e-404c-aad4-9dd535dc4b3d {"md5": "23dbeccef3faddf3763366c983d6949d", "pid": "1223515273", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1223515273", "source": "GND"}], "variant_name": ["Ev. Kirchengemeinde Castrop-Rauxel-Nord"], "preferred_name": "Evangelische Kirchengemeinde Castrop-Rauxel-Nord", "country_associated": "gw", "variant_access_point": ["Ev. Kirchengemeinde Castrop-Rauxel-Nord"], "date_of_establishment": "01.01.2020", "authorized_access_point": "Evangelische Kirchengemeinde Castrop-Rauxel-Nord", "biographical_information": ["Entstand zum 1. Januar 2020 durch Fusion der Evangelischen Friedenskirchengemeinde Castrop-Rauxel mit der Evangelischen Kirchengemeinde Habinghorst"]} 1 +2024-09-11 09:01:56.192774 2024-09-11 09:01:56.192777 5477b548-a834-43f9-81f9-68cd929ebbb3 {"md5": "fc82b08e2dd813068ef122cd795d6ef2", "pid": "1223549372", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1223549372", "source": "GND"}], "preferred_name": "Mehchy, Zaki", "authorized_access_point": "Mehchy, Zaki"} 1 +2024-09-11 09:01:56.245031 2024-09-11 09:01:56.245036 cb5b6e24-826b-477d-bead-27bd4cc06376 {"md5": "98aae6cf5a26f309ebfd68230f38465b", "pid": "122397274", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/122397274", "source": "GND"}], "preferred_name": "Schwartz, Leslie", "country_associated": "xxu", "authorized_access_point": "Schwartz, Leslie"} 1 +2024-09-11 09:01:56.297085 2024-09-11 09:01:56.297089 266fc75d-7085-4587-ab95-e7419f57414b {"md5": "9b8c43c0b2803f173b98a0bb149e8522", "pid": "122416600", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/122416600", "source": "GND"}], "date_of_birth": "1958", "preferred_name": "Boßbach, Christel", "authorized_access_point": "Boßbach, Christel, 1958-", "biographical_information": ["Rundfunkredakteurin u. Journalistin"]} 1 +2024-09-11 09:01:56.351761 2024-09-11 09:01:56.351764 e3ea4688-cf22-48b5-a372-35b6221f6179 {"md5": "7c79976645f442670caf3d2cefb09ea3", "pid": "1224690672", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1224690672", "source": "GND"}], "variant_name": ["Annual Student Archaeology Conference, 3.", "CASA, 3.", "New frontiers in archaeology"], "preferred_name": "Cambridge Annual Student Archaeology Conference, 3.", "country_associated": "xxk", "variant_access_point": ["Annual Student Archaeology Conference, 3., 2019, Cambridge", "CASA, 3., 2019, Cambridge", "New frontiers in archaeology. Veranstaltung, 2019, Cambridge"], "authorized_access_point": "Cambridge Annual Student Archaeology Conference, 3., 2019, Cambridge"} 1 +2024-09-11 09:01:56.402012 2024-09-11 09:01:56.402015 0e97c101-5d49-4673-b148-9bebaf573844 {"md5": "272ebda1a0fcee529f7f506c966c20cb", "pid": "1225165792", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1225165792", "source": "GND"}], "variant_name": ["Jungkuntz, Theodore Robert", "Jungkuntz, Theodore", "Jungkuntz, Ted"], "date_of_birth": "06.02.1932", "date_of_death": "08.06.2020", "preferred_name": "Jungkuntz, Theodore R.", "country_associated": "xxu", "variant_access_point": ["Jungkuntz, Theodore Robert, 1932-2020", "Jungkuntz, Theodore, 1932-2020", "Jungkuntz, Ted, 1932-2020"], "authorized_access_point": "Jungkuntz, Theodore R., 1932-2020", "biographical_information": ["amerikan. lutherischer Theologe, Pfarrer der Lutheran Church Missouri Synod zunächst 1963-1966 in Concordia, Miss., seit 1983 in Ann Arbor Michigan; 1966-1983 Associate Professor of Theology an der Valparaiso University (Valparaiso, In); 1969-1972 Direktor des Reutlingen Study Center der Valparaiso University"]} 1 +2024-09-11 09:01:56.452877 2024-09-11 09:01:56.45288 c88f3018-e259-441c-b9dc-d79324e925f9 {"md5": "80596505f3d223dbe160799075917822", "pid": "1225314704", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1225314704", "source": "GND"}], "variant_name": ["ICERE, 6."], "preferred_name": "International Conference on Environment and Renewable Energy, 6.", "variant_access_point": ["ICERE, 6., 2020, Online"], "authorized_access_point": "International Conference on Environment and Renewable Energy, 6., 2020, Online", "biographical_information": ["Aufgrund der COVID-19-Pandemie als Online-Konferenz abgehalten (ursprünglicher Veranstaltungsort: Hanoi, Vietnam)"]} 1 +2024-09-11 09:01:56.505878 2024-09-11 09:01:56.505881 6d70ca94-0f85-4170-b6ea-46e62f315e44 {"md5": "104266bb8ce17c8d9b16971989e79534", "pid": "1225318955", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1225318955", "source": "GND"}], "variant_name": ["Besmar Nieves, Joel R.", "Nieves, Joel R. Besmar"], "date_of_birth": "1968", "preferred_name": "Besmar, Joel", "country_associated": "cu", "variant_access_point": ["Besmar Nieves, Joel R., 1968-", "Nieves, Joel R. Besmar, 1968-"], "authorized_access_point": "Besmar, Joel, 1968-"} 1 +2024-09-11 09:01:56.561944 2024-09-11 09:01:56.561948 c0ad5a18-3b28-4ef5-aa4f-16f170803422 {"md5": "9b3970ae1a584687f4ab362e6dacbb84", "pid": "1225369967", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1225369967", "source": "GND"}], "variant_name": ["Amt für Straßen- und Verkehrswesen"], "preferred_name": "Bad Arolsen. Amt für Straßen- und Verkehrswesen", "country_associated": "gw", "variant_access_point": ["Amt für Straßen- und Verkehrswesen. Bad Arolsen"], "authorized_access_point": "Bad Arolsen. Amt für Straßen- und Verkehrswesen"} 1 +2024-09-11 09:01:56.616573 2024-09-11 09:01:56.616575 0f63a24c-4e6b-4a9a-ad17-a1ccb782e717 {"md5": "5ba315ddc69f516de1581d12d0181827", "pid": "1225371562", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1225371562", "source": "GND"}], "variant_name": ["郑, 裕庭"], "preferred_name": "Zheng, Yuting", "country_associated": "cc", "variant_access_point": ["郑, 裕庭"], "parallel_access_point": ["郑裕庭"], "authorized_access_point": "Zheng, Yuting"} 1 +2024-09-11 09:01:56.667056 2024-09-11 09:01:56.667058 42c91e6c-8d02-427e-acfa-26dee8331904 {"md5": "a032eee0c6194bed626df8b11a495121", "pid": "122546016", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/122546016", "source": "GND"}], "variant_name": ["Hein, Malte Probst-"], "date_of_birth": "1970", "preferred_name": "Probst-Hein, Malte", "country_associated": "gw", "variant_access_point": ["Hein, Malte Probst-, 1970-"], "authorized_access_point": "Probst-Hein, Malte, 1970-", "biographical_information": ["Diss. Fachbereich Maschinenbau"]} 1 +2024-09-11 09:01:56.72111 2024-09-11 09:01:56.721113 ffdee1f4-e36f-4cff-9341-dfa5104466bc {"md5": "31d9e30c00ba12e09cb8669f4b04265d", "pid": "1225499038", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1225499038", "source": "GND"}], "variant_name": ["Surachat Phētlīlā", "Phētlīlā, Surachat", "Nō̜m Wisētsing", "สุรฉัตร เพชรลีลา", "อภิชาติ เพชรลีลา", "นอม วิเศษสิงห์"], "preferred_name": "ʻAphichāt Phetlīlā", "country_associated": "th", "variant_access_point": ["Surachat Phētlīlā", "Phētlīlā, Surachat", "Nō̜m Wisētsing", "สุรฉัตร เพชรลีลา", "อภิชาติ เพชรลีลา", "นอม วิเศษสิงห์"], "parallel_access_point": ["อภิชาติ เพชรลีลา"], "authorized_access_point": "ʻAphichāt Phetlīlā"} 1 +2024-09-11 09:01:56.782586 2024-09-11 09:01:56.782588 59a9a98e-71f9-4f2d-a371-6a7205c8db07 {"md5": "e99aa8b4bc53af70324f96bdbe68ff63", "pid": "1225750350", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1225750350", "source": "GND"}], "date_of_birth": "1909", "date_of_death": "1986", "preferred_name": "Nowicki, Andrzej", "country_associated": "pl", "authorized_access_point": "Nowicki, Andrzej, 1909-1986"} 1 +2024-09-11 09:01:56.838827 2024-09-11 09:01:56.83883 10baae1f-c1e9-4df1-91b8-287573a26b41 {"md5": "1b3050f2213fdf27d79e73d1dad27fa5", "pid": "1225880351", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1225880351", "source": "GND"}], "preferred_name": "Labazova, Olga", "country_associated": "ru", "authorized_access_point": "Labazova, Olga"} 1 +2024-09-11 09:01:56.890296 2024-09-11 09:01:56.8903 8ae03e38-5b81-4844-9e2c-15650c9d8bb2 {"md5": "d17dcb40c18927778b4efbd9e0deb606", "pid": "1226111009", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1226111009", "source": "GND"}], "date_of_birth": "1981", "preferred_name": "Boseckert, Christian", "country_associated": "gw", "authorized_access_point": "Boseckert, Christian, 1981-", "biographical_information": ["2. Vorsitzender der Historischen Gesellschaft Coburg. Seit 2020 Stadtheimatpfleger von Coburg; Dissertation an der Philosophischen Fakultät der Uni Würzburg (2019)"]} 1 +2024-09-11 09:01:56.958494 2024-09-11 09:01:56.958498 8c58107a-fc5d-441c-9ef8-3e1b18bd6e21 {"md5": "a56639a1e413e182d053910a455f5d91", "pid": "122616243", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/122616243", "source": "GND"}], "date_of_birth": "1970", "preferred_name": "Leitner, Marina", "authorized_access_point": "Leitner, Marina, 1970-", "biographical_information": ["Psychologin"]} 1 +2024-09-11 09:01:57.017223 2024-09-11 09:01:57.017227 fda9cd6c-4323-407d-8deb-ca38d79a8d26 {"md5": "b7d97143be0c351579608dafe323cd3b", "pid": "1226168973", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1226168973", "source": "GND"}], "variant_name": ["Myocardial Pathology Segmentation, 1.", "Challenge Myocardial Pathology Segmentation, 1."], "preferred_name": "MyoPS, 1.", "variant_access_point": ["Myocardial Pathology Segmentation, 1., 2020, Online", "Challenge Myocardial Pathology Segmentation, 1., 2020, Online"], "authorized_access_point": "MyoPS, 1., 2020, Online", "biographical_information": ["Aufgrund der Covid-19 Pandemie fand der Kongress online statt und nicht in Lima"]} 1 +2024-09-11 09:01:57.080077 2024-09-11 09:01:57.08008 3982f4f9-9871-4936-8e47-31695e9d533a {"md5": "f678c2f5a0ac0c3d6a0c3282a0a2a835", "pid": "1226343031", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1226343031", "source": "GND"}], "preferred_name": "Steiner, Leon Amadeus", "country_associated": "gw", "authorized_access_point": "Steiner, Leon Amadeus", "biographical_information": ["Berlin, Univ.-Medizin, Diss., 2020"]} 1 +2024-09-11 09:01:57.130621 2024-09-11 09:01:57.130625 0d1023cf-c163-4223-8038-17a099883767 {"md5": "89ed24a31b0174bda76512ae376ab181", "pid": "1227063229", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1227063229", "source": "GND"}], "date_of_birth": "1939", "preferred_name": "Skop, Gizela Maria", "country_associated": "pl", "authorized_access_point": "Skop, Gizela Maria, 1939-"} 1 +2024-09-11 09:01:57.189725 2024-09-11 09:01:57.189731 6b2b6cf3-80ff-4fd5-9c30-54da0be3e770 {"md5": "a587b6cec1af277f9cfb0374901d71b0", "pid": "122765052", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/122765052", "source": "GND"}], "date_of_birth": "1964", "preferred_name": "Lynch, Stephen", "country_associated": "xxk", "authorized_access_point": "Lynch, Stephen, 1964-", "biographical_information": ["Tätig an der School of Computing, Mathematics and Digital Technology, Manchester Metropolitan University, Manchester, UK"]} 1 +2024-09-11 09:01:57.316435 2024-09-11 09:01:57.316438 d4572daf-418e-48d3-8078-431abe7693d3 {"md5": "3a12317f4bf0386d31f52bca7500ec21", "pid": "1228480222", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1228480222", "source": "GND"}], "date_of_birth": "1997", "preferred_name": "Rösgen, Vanessa", "authorized_access_point": "Rösgen, Vanessa, 1997-"} 1 +2024-09-11 09:01:57.370042 2024-09-11 09:01:57.370045 9e995ecf-d4bf-48b8-90c4-789c91884269 {"md5": "a6b4c48c87a0ad179569db875586e686", "pid": "1228546541", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1228546541", "source": "GND"}], "variant_name": ["Ikemoto, Ito", "小山いと子"], "date_of_birth": "1901", "date_of_death": "1989", "preferred_name": "Koyama, Itoko", "country_associated": "ja", "variant_access_point": ["Ikemoto, Ito, 1901-1989", "小山いと子, 1901-1989"], "authorized_access_point": "Koyama, Itoko, 1901-1989", "biographical_information": ["Koyama Itoko; b. 7/13/Meiji 34; real name: Ikemoto Ito. WhoPlus, viewed on February 6, 2019 |b (小山いと子 = Koyama Itoko; b. 7/13/1901; d. 7/25/1989; novelist)"]} 1 +2024-09-11 09:01:57.439528 2024-09-11 09:01:57.439533 e4b04153-2413-44a1-8439-b8f1fbd1b9f9 {"md5": "3ddc78a370c0bd5c36e89a9622e649eb", "pid": "1228854041", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1228854041", "source": "GND"}], "preferred_name": "Frizell, Genevieve", "authorized_access_point": "Frizell, Genevieve"} 1 +2024-09-11 09:01:57.499776 2024-09-11 09:01:57.499779 726b59bd-8b56-4a7d-82f4-8ca15d4c403a {"md5": "96e2a143ab7a530928471073a6d0bd73", "pid": "1228866244", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1228866244", "source": "GND"}], "date_of_birth": "19XX", "preferred_name": "Pawollek, Christian", "country_associated": "gw", "authorized_access_point": "Pawollek, Christian, 19XX-", "biographical_information": ["Promovierte 2018 an der Universität Trier"]} 1 +2024-09-11 09:01:57.55025 2024-09-11 09:01:57.550254 f766a91e-7802-403e-89f5-487652cf8979 {"md5": "1101ab1e1aba030c81d1afff5dc89228", "pid": "122919455X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/122919455X", "source": "GND"}], "preferred_name": "Reitberger, Thomas", "country_associated": "gw", "authorized_access_point": "Reitberger, Thomas", "biographical_information": ["Diss. Technische Fakultät der Univ. Erlangen-Nürnberg"]} 1 +2024-09-11 09:01:57.60386 2024-09-11 09:01:57.603863 05f48eb8-dc0e-43b3-8598-419a49f7f5c0 {"md5": "595407ed56541ee31a88cc000f415e1a", "pid": "122987870X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/122987870X", "source": "GND"}], "date_of_birth": "1783", "date_of_death": "1806", "preferred_name": "Falk, Friedrich Gottlieb", "country_associated": "ru", "authorized_access_point": "Falk, Friedrich Gottlieb, 1783-1806"} 1 +2024-09-11 09:01:57.656659 2024-09-11 09:01:57.656662 b84612fa-fb70-43a6-b178-fd072f0a6dd4 {"md5": "f6f624b2e3f3dad27b716f046602e77a", "pid": "1230449663", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1230449663", "source": "GND"}], "preferred_name": "PENZISBETTINI", "country_associated": "sz", "authorized_access_point": "PENZISBETTINI"} 1 +2024-09-11 09:01:57.711704 2024-09-11 09:01:57.711708 d7b77cc9-5370-46d4-bbb7-713758b27b3d {"md5": "e7bff5516cb6bad11b2f377aec79dee0", "pid": "1230581847", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1230581847", "source": "GND"}], "variant_name": ["Niigatashi-Rekishi-Hakubutsukan", "Niigata-City-History-Museum", "Minatopia Museum", "Minatopia Niigata City History Museum", "ニイガタシ レキシ ハクブツカン", "みなとぴあ", "ミナトピア"], "preferred_name": "Niigatashi Rekishi Hakubutsukan", "country_associated": "ja", "variant_access_point": ["Niigatashi-Rekishi-Hakubutsukan", "Niigata-City-History-Museum", "Minatopia Museum", "Minatopia Niigata City History Museum", "ニイガタシ レキシ ハクブツカン", "みなとぴあ", "ミナトピア"], "date_of_establishment": "27.03.2004", "parallel_access_point": ["新潟市歴史博物館"], "authorized_access_point": "Niigatashi Rekishi Hakubutsukan"} 1 +2024-09-11 09:01:57.773449 2024-09-11 09:01:57.773454 1e91eda4-519e-4b1b-9a16-7f778ae8eea1 {"md5": "afdb9e920c03660b3eea205edac9d88b", "pid": "1230588736", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1230588736", "source": "GND"}], "preferred_name": "Gmür, Oscar", "country_associated": "it", "authorized_access_point": "Gmür, Oscar"} 1 +2024-09-11 09:01:57.826611 2024-09-11 09:01:57.826615 aab03768-dfcd-48c9-b9dd-ff0f4fa5dddf {"md5": "d713295f32259d17dec16339702dac07", "pid": "1230589619", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1230589619", "source": "GND"}], "preferred_name": "Malekshahi, Azim", "country_associated": "gw", "authorized_access_point": "Malekshahi, Azim", "biographical_information": ["Promotion Universität Tübingen, Mathematisch-Naturwissenschaftliche Fakultät"]} 1 +2024-09-11 09:01:57.897857 2024-09-11 09:01:57.897861 e6dbdcb5-6ec3-4a76-8c6a-2b230017c0b5 {"md5": "67aa6c14bde76b77acc0269110d01d41", "pid": "12307374X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12307374X", "source": "GND"}], "date_of_death": "1580", "preferred_name": "Massa, Baldassare de", "country_associated": "it", "authorized_access_point": "Massa, Baldassare de, -1580"} 1 +2024-09-11 09:01:57.955963 2024-09-11 09:01:57.955966 882c59bd-d7ee-4b24-83ef-f5889e09cba3 {"md5": "7a14e9d6d242e17707b1c697ffeb2e6f", "pid": "123090598", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/123090598", "source": "GND"}], "date_of_birth": "1942", "preferred_name": "Nievergelt, Dieter", "country_associated": "sz", "authorized_access_point": "Nievergelt, Dieter, 1942-"} 1 +2024-09-11 09:01:58.014678 2024-09-11 09:01:58.014681 e6548116-2d2e-4580-bf68-db82e5a60217 {"md5": "b8e41219ca75d3a5a83d54a296ae4c1c", "pid": "1231012749", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1231012749", "source": "GND"}], "variant_name": ["Harrah, William F.", "Harrah, William Fisk", "Harrah, Bill"], "date_of_birth": "1911", "date_of_death": "1978", "preferred_name": "Harrah, William", "country_associated": "xxu", "variant_access_point": ["Harrah, William F., 1911-1978", "Harrah, William Fisk, 1911-1978", "Harrah, Bill, 1911-1978"], "authorized_access_point": "Harrah, William, 1911-1978"} 1 +2024-09-11 09:01:58.069373 2024-09-11 09:01:58.069376 70a9aee1-b33c-4eee-9f53-e09060eb71e2 {"md5": "2ffbfeabf7fd69abab6246a462ed0ca2", "pid": "1231084758", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1231084758", "source": "GND"}], "date_of_birth": "1978", "preferred_name": "Tremblay, Jean-Philippe", "country_associated": "xxc", "authorized_access_point": "Tremblay, Jean-Philippe, 1978-"} 1 +2024-09-11 09:01:58.135898 2024-09-11 09:01:58.135901 e87dd704-b50f-4466-9691-e39fd57f588c {"md5": "2023606ab6153855c80182b80a8776ad", "pid": "123171770X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/123171770X", "source": "GND"}], "preferred_name": "Weinstein, Israel", "authorized_access_point": "Weinstein, Israel"} 1 +2024-09-11 09:01:58.18801 2024-09-11 09:01:58.188013 ed2a7b3f-65ee-49d6-b0cd-786e16e9d670 {"md5": "96f9a78f0f238bcc7e6e25475f205784", "pid": "1232328308", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1232328308", "source": "GND"}], "variant_name": ["Stabsstelle für Kulturfragen"], "preferred_name": "Liechtenstein. Stabsstelle für Kulturfragen", "country_associated": "lh", "date_of_termination": "2012", "variant_access_point": ["Stabsstelle für Kulturfragen. Liechtenstein"], "date_of_establishment": "1999", "authorized_access_point": "Liechtenstein. Stabsstelle für Kulturfragen"} 1 +2024-09-11 09:01:58.240786 2024-09-11 09:01:58.24079 c21b73b0-0148-47c4-9933-2e62be15ac0b {"md5": "80f164d5ab3d2987836579bae5abf582", "pid": "1232437530", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1232437530", "source": "GND"}], "variant_name": ["Mette Juul, Tilde"], "preferred_name": "Juul, Tilde Mette", "country_associated": "dk", "variant_access_point": ["Mette Juul, Tilde"], "authorized_access_point": "Juul, Tilde Mette", "biographical_information": ["Børne- og Undervisningsministeriet, København, Specialkonsulent"]} 1 +2024-09-11 09:01:58.293357 2024-09-11 09:01:58.29336 26cd2c74-315f-45e6-a23f-3e9a4fc6c812 {"md5": "8c1f090583bc720d689f797401ea63bc", "pid": "1232542377", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1232542377", "source": "GND"}], "variant_name": ["Druckerei Dörfler", "Dörfler, Druckerei"], "preferred_name": "Druckerei Dörfler", "country_associated": "gw", "variant_access_point": ["Druckerei Dörfler. Fürth/Bayern", "Dörfler, Druckerei"], "date_of_establishment": "1955", "authorized_access_point": "Druckerei Dörfler"} 1 +2024-09-11 09:01:58.347711 2024-09-11 09:01:58.347715 79a2ca6d-ae81-4f2c-a8b7-7c306c9ec72c {"md5": "f13dd6b5314609e53e114ca4d12a8c46", "pid": "123269021X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/123269021X", "source": "GND"}], "preferred_name": "Tambouratzis, George", "country_associated": "gr", "authorized_access_point": "Tambouratzis, George"} 1 +2024-09-11 09:01:58.402303 2024-09-11 09:01:58.402307 8c1df4bf-954f-426c-82d7-35de80ee3fef {"md5": "0483067c6a6c7369bdb3acf8691193ff", "pid": "123314348", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/123314348", "source": "GND"}], "variant_name": ["Bădiliţă, Cristian", "Badilita, Christian", "Pomicultor"], "date_of_birth": "1968", "preferred_name": "Badiliţa, Cristian", "country_associated": "rm", "variant_access_point": ["Bădiliţă, Cristian, 1968-", "Badilita, Christian, 1968-", "Pomicultor, 1968-"], "authorized_access_point": "Badiliţa, Cristian, 1968-", "biographical_information": ["Docteur de l'Univ. Paris-IV Sorbonne"]} 1 +2024-09-11 09:01:58.471267 2024-09-11 09:01:58.47127 5daa55f3-9d25-489f-a4b0-2f13aec4721f {"md5": "356d9c2f6d58fcd7487a506df3c8fb21", "pid": "1233743082", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1233743082", "source": "GND"}], "variant_name": ["Universität Heidelberg. Universitätsmedizin Mannheim. Institut für Transfusionsmedizin und Immunologie", "Universitätsmedizin Mannheim. Institut für Transfusionsmedizin und Immunologie", "Institut für Transfusionsmedizin und Immunologie", "ITI"], "preferred_name": "Universität Heidelberg. Institut für Transfusionsmedizin und Immunologie", "country_associated": "gw", "variant_access_point": ["Universität Heidelberg. Universitätsmedizin Mannheim. Institut für Transfusionsmedizin und Immunologie", "Universitätsmedizin Mannheim. Institut für Transfusionsmedizin und Immunologie", "Institut für Transfusionsmedizin und Immunologie", "ITI. Abkuerzung"], "authorized_access_point": "Universität Heidelberg. Institut für Transfusionsmedizin und Immunologie"} 1 +2024-09-11 09:01:58.543398 2024-09-11 09:01:58.543402 7538d0fd-6039-4998-a9c8-e4e33d84eeb2 {"md5": "dfca9c712ec264d7812612b93538e210", "pid": "1233756877", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1233756877", "source": "GND"}], "preferred_name": "Vakhrushova, Daria", "country_associated": "gw", "parallel_access_point": ["וואכרושאווא, דאריע"], "authorized_access_point": "Vakhrushova, Daria", "biographical_information": ["Seit 2016 Promotionsstudium an der Abteilung für Jiddische Kultur, Sprache und Literatur"]} 1 +2024-09-11 09:01:58.622213 2024-09-11 09:01:58.622217 31e95341-a371-4c2d-a169-7b627563eb2a {"md5": "42bddb1b244bd39fe962b586e9454582", "pid": "1233766767", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1233766767", "source": "GND"}], "variant_name": ["Ḥājj, Laylá", "الحاج، ليلى"], "preferred_name": "Ḥāǧǧ, Lailā al-", "variant_access_point": ["Ḥājj, Laylá", "الحاج، ليلى"], "parallel_access_point": ["الحاج, ليلى"], "authorized_access_point": "Ḥāǧǧ, Lailā al-"} 1 +2024-09-11 09:01:58.671627 2024-09-11 09:01:58.671629 0089b5b4-c013-4d2e-8342-22a74b34df6a {"md5": "d596742bc7ccc3597168e558729e87eb", "pid": "1233797700", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1233797700", "source": "GND"}], "date_of_birth": "1979", "preferred_name": "Osterwalder, Pascale", "country_associated": "sz", "authorized_access_point": "Osterwalder, Pascale, 1979-", "biographical_information": ["Schweizer Illustratorin, Animationskünstlerin und Visuelle Gestalterin; lebt seit 2008 in Wien"]} 1 +2024-09-11 09:01:58.723854 2024-09-11 09:01:58.723858 d23eff27-4790-4f91-a8e4-cd22c4f3d119 {"md5": "ec30e182e828498e0b0899f1dc04ef78", "pid": "1234157845", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1234157845", "source": "GND"}], "preferred_name": "Molloy, Hannah", "country_associated": "xxk", "authorized_access_point": "Molloy, Hannah"} 1 +2024-09-11 09:01:58.778585 2024-09-11 09:01:58.778588 69af8951-3bd8-410b-a28a-7ed93ebe4d82 {"md5": "3a2180c18472b1f9f3ae66e1e35a5a60", "pid": "1234276402", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1234276402", "source": "GND"}], "variant_name": ["Fisher, W. E."], "preferred_name": "Fisher, Waldo E.", "country_associated": "xxu", "variant_access_point": ["Fisher, W. E."], "authorized_access_point": "Fisher, Waldo E."} 1 +2024-09-11 09:01:58.828077 2024-09-11 09:01:58.82808 fbb7e18e-3ef0-4dbf-9434-f9fc51c41c63 {"md5": "68988a68e82d4748a271e37671965a86", "pid": "1234416433", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1234416433", "source": "GND"}], "preferred_name": "Marbach, Gertrud", "country_associated": "gw", "authorized_access_point": "Marbach, Gertrud"} 1 +2024-09-11 09:01:58.880807 2024-09-11 09:01:58.88081 a80471fa-9f46-41c9-a852-6d50da94711f {"md5": "ffe93428dc87b174fc01180ab04c9166", "pid": "123444578", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/123444578", "source": "GND"}], "variant_name": ["Geshe Michael Roach", "Roach, Geshe Michael", "Roach, Michael Philip"], "date_of_birth": "1952", "preferred_name": "Roach, Michael", "country_associated": "xxu", "variant_access_point": ["Geshe Michael Roach, 1952-", "Roach, Geshe Michael, 1952-", "Roach, Michael Philip, 1952-"], "parallel_access_point": ["Roach, Michael, 1952-"], "authorized_access_point": "Roach, Michael, 1952-", "biographical_information": ["Amerikanischer buddhistischer Mönch"]} 1 +2024-09-11 09:01:58.932632 2024-09-11 09:01:58.932635 7f75da6a-7ef0-4cf5-a5aa-97a7140801cb {"md5": "95ba2c7071da0466a5ea307414dd7d39", "pid": "1235024172", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1235024172", "source": "GND"}], "preferred_name": "Bautsch, Antonia", "country_associated": "gw", "authorized_access_point": "Bautsch, Antonia", "biographical_information": ["Dissertation an der Universität zu Köln im Jahr 2020"]} 1 +2024-09-11 09:01:58.990053 2024-09-11 09:01:58.990056 1cfd5622-71e1-400e-af26-525eb39f6b46 {"md5": "dbb691f2d9e5a57b2676487a66fca63e", "pid": "1235035301", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1235035301", "source": "GND"}], "preferred_name": "Forgács, Robert", "authorized_access_point": "Forgács, Robert", "biographical_information": ["Ph.D. 1997, University of New South Wales; musicologist and Neo-Latinist"]} 1 +2024-09-11 09:01:59.054412 2024-09-11 09:01:59.054415 f41a5718-0658-4fda-a2aa-cf7da4873a18 {"md5": "5cc3fa6a873d08f9836005010941baf7", "pid": "123508193", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/123508193", "source": "GND"}], "date_of_birth": "1961", "preferred_name": "Rasche, Klemens", "authorized_access_point": "Rasche, Klemens, 1961-"} 1 +2024-09-11 09:01:59.106915 2024-09-11 09:01:59.106918 2d778876-50fa-40b7-b464-336277df9357 {"md5": "1b4ae673d02070bef4e652c0a2a20995", "pid": "123522315", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/123522315", "source": "GND"}], "date_of_birth": "1975", "preferred_name": "Haller, Sven Andreas", "authorized_access_point": "Haller, Sven Andreas, 1975-", "biographical_information": ["Diss. Medizinische Fakultät"]} 1 +2024-09-11 09:01:59.160178 2024-09-11 09:01:59.160182 36da96cc-d770-4c34-a159-836a0489a594 {"md5": "9c4004246bf045535f9a8965d541b93f", "pid": "1235245071", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1235245071", "source": "GND"}], "date_of_birth": "1937", "preferred_name": "Siregar, Ridwan", "country_associated": "io", "authorized_access_point": "Siregar, Ridwan, 1937-"} 1 +2024-09-11 09:01:59.213606 2024-09-11 09:01:59.21361 ebcaccc9-d4fd-49f3-b558-8ffbe674767e {"md5": "9e9c1beae7235d6828e3dd5a666e1615", "pid": "1235577384", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1235577384", "source": "GND"}], "preferred_name": "Calendriers d'Europe et d'Asie", "country_associated": "fr", "authorized_access_point": "Calendriers d'Europe et d'Asie. Veranstaltung, 2017, Paris"} 1 +2024-09-11 09:01:59.269815 2024-09-11 09:01:59.26982 db60aa95-f570-46da-9d95-da144ad63b5c {"md5": "aa23fab59879a7b1bc7d43d3afdb39c1", "pid": "123571693", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/123571693", "source": "GND"}], "variant_name": ["Willenberg, Holger Sven"], "date_of_birth": "1969", "preferred_name": "Willenberg, Holger", "country_associated": "gw", "variant_access_point": ["Willenberg, Holger Sven, 1969-"], "authorized_access_point": "Willenberg, Holger, 1969-", "biographical_information": ["Diss. Fachbereich Endokrinologie", "Habil.-Schr. Innere Medizin"]} 1 +2024-09-11 09:01:59.339828 2024-09-11 09:01:59.339833 d209e64d-565c-4412-9afc-a02c8b607106 {"md5": "f335082c85af944b50272f0652bace75", "pid": "123572817X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/123572817X", "source": "GND"}], "variant_name": ["Ch'oe, Chang-ho", "崔, 章浩", "최, 장호"], "preferred_name": "Choe, Jang ho", "country_associated": "ko", "variant_access_point": ["Ch'oe, Chang-ho", "崔, 章浩", "최, 장호"], "parallel_access_point": ["崔章浩", "최장호"], "authorized_access_point": "Choe, Jang ho"} 1 +2024-09-11 09:01:59.393261 2024-09-11 09:01:59.393265 c4c1a6e2-1e03-47a6-807d-77f9c9c507ab {"md5": "5763616de245602ff3930277c8da59a3", "pid": "1235805395", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1235805395", "source": "GND"}], "preferred_name": "Stokowski, Alexander", "country_associated": "gw", "authorized_access_point": "Stokowski, Alexander", "biographical_information": ["Pfarrer im Kirchenbezirk Löbau-Zittau (Projektstelle zur Begleitung des Strukturwandels in der Lausitz) und Gemeindepfarrer in der Versöhnungskirchengemeinde Görlitz"]} 1 +2024-09-11 09:01:59.447879 2024-09-11 09:01:59.447891 7a3c92f5-0887-470c-8ec0-375a9475dba7 {"md5": "1069eaf09b6a8b5b339b446cb2f74078", "pid": "1235864014", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1235864014", "source": "GND"}], "variant_name": ["Veiga, Diego Sande"], "date_of_birth": "1981", "preferred_name": "Sande Veiga, Diego", "country_associated": "sp", "variant_access_point": ["Veiga, Diego Sande, 1981-"], "authorized_access_point": "Sande Veiga, Diego, 1981-"} 1 +2024-09-11 09:01:59.49899 2024-09-11 09:01:59.498994 f97ec45a-bd41-4d75-a589-0fe94b68761e {"md5": "0386982cad18504a0a27acf70e6669d5", "pid": "1236151380", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1236151380", "source": "GND"}], "preferred_name": "Sachs, Sebastian", "country_associated": "gw", "authorized_access_point": "Sachs, Sebastian"} 1 +2024-09-11 09:01:59.552277 2024-09-11 09:01:59.552279 950fb355-1f25-4c12-8912-2d851a5d3214 {"md5": "df29c31552fbec1bbf18b746cd299601", "pid": "123617286", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/123617286", "source": "GND"}], "variant_name": ["Choate, Joseph", "Choate, Joseph H.", "Hodges Choate, Joseph"], "date_of_birth": "24.01.1832", "date_of_death": "14.05.1917", "preferred_name": "Choate, Joseph Hodges", "country_associated": "xxu", "variant_access_point": ["Choate, Joseph, 1832-1917", "Choate, Joseph H., 1832-1917", "Hodges Choate, Joseph, 1832-1917"], "authorized_access_point": "Choate, Joseph Hodges, 1832-1917"} 1 +2024-09-11 09:01:59.605138 2024-09-11 09:01:59.60514 80229eea-7b5a-419b-a485-489813978b6c {"md5": "ca4d636d013aedfc76455f282f6b48f4", "pid": "123644372", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/123644372", "source": "GND"}], "variant_name": ["Nesterova, Natalʹja Igorevna", "Nesterova, Natalʹja", "Nesterova, Natalia Igorevna", "Nesterova, Natalya"], "date_of_birth": "1944", "preferred_name": "Nesterova, Natalʹja I.", "country_associated": "ru", "variant_access_point": ["Nesterova, Natalʹja Igorevna, 1944-", "Nesterova, Natalʹja, 1944-", "Nesterova, Natalia Igorevna, 1944-", "Nesterova, Natalya, 1944-"], "parallel_access_point": ["Nesterova, Natalʹi︠a︡, 1944-"], "authorized_access_point": "Nesterova, Natalʹja I., 1944-", "biographical_information": ["Russ. Malerin"]} 1 +2024-09-11 09:01:59.66253 2024-09-11 09:01:59.662533 4dda4e53-80b5-4234-9a50-e3fdd5cfa9ee {"md5": "548ef9e9bb136a744274998586150976", "pid": "1236649613", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1236649613", "source": "GND"}], "variant_name": ["Guo, P.", "Guo Peixiang", "Peixiang, Guo"], "preferred_name": "Guo, Peixiang", "country_associated": "cc", "variant_access_point": ["Guo, P.", "Guo Peixiang", "Peixiang, Guo"], "authorized_access_point": "Guo, Peixiang", "biographical_information": ["School of Agricultural Economics and Rural Development, Renmin University of China, Beijing, China"]} 1 +2024-09-11 09:01:59.723882 2024-09-11 09:01:59.723885 b9f757af-e266-401c-a9b3-7a7bc213a9bc {"md5": "5b971dfddce5ce9651fdf94bc23d05ed", "pid": "123673208", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/123673208", "source": "GND"}], "variant_name": ["Seebohm, Thomas", "Seebohm, William Thomas Mulvany", "Seebohm, Thomas Mulvany"], "date_of_birth": "1934", "date_of_death": "2014", "preferred_name": "Seebohm, Thomas M.", "country_associated": "gw", "variant_access_point": ["Seebohm, Thomas, 1934-2014", "Seebohm, William Thomas Mulvany, 1934-2014", "Seebohm, Thomas Mulvany, 1934-2014"], "authorized_access_point": "Seebohm, Thomas M., 1934-2014", "biographical_information": ["Dt. Hochschullehrer für Philosophie"]} 1 +2024-09-11 09:01:59.782733 2024-09-11 09:01:59.782736 9fbdb9d4-f1ae-48ac-a867-403afe69fcdc {"md5": "f3888eb8db1304d15cde5823a87903d6", "pid": "123686719X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/123686719X", "source": "GND"}], "preferred_name": "Baron, Werner", "authorized_access_point": "Baron, Werner"} 1 +2024-09-11 09:01:59.8314 2024-09-11 09:01:59.831403 d858f0d3-5ea5-4765-8d61-490c7d03e1c3 {"md5": "8b2ba0de4881af91a77e00cb3469c806", "pid": "1236915291", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1236915291", "source": "GND"}], "variant_name": ["Ziyan, Huang", "Huang Ziyan"], "preferred_name": "Huang, Ziyan", "country_associated": "xxu", "variant_access_point": ["Ziyan, Huang", "Huang Ziyan"], "authorized_access_point": "Huang, Ziyan"} 1 +2024-09-11 09:01:59.884904 2024-09-11 09:01:59.884906 8fb1c0e7-18dd-4449-8792-d288aa5ffe0c {"md5": "e45ba1bd31d0785d6be9d7db02c21ace", "pid": "1237119766", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1237119766", "source": "GND"}], "preferred_name": "Günay, Arkın", "country_associated": "tu", "authorized_access_point": "Günay, Arkın"} 1 +2024-09-11 09:01:59.936718 2024-09-11 09:01:59.936721 3aa09f0f-84bc-4fab-b0c7-6f35512edb2e {"md5": "867159ab99e1898d976d48d882b110e0", "pid": "123718376", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/123718376", "source": "GND"}], "variant_name": ["Welcker, Johann Friedrich Christoph"], "date_of_birth": "12.02.1770", "date_of_death": "29.04.1841", "preferred_name": "Welcker, Johann Christoph Friedrich", "variant_access_point": ["Welcker, Johann Friedrich Christoph, 1770-1841"], "authorized_access_point": "Welcker, Johann Christoph Friedrich, 1770-1841", "biographical_information": ["Pfarrer, Rektor, Inspektor"]} 1 +2024-09-11 09:01:59.986269 2024-09-11 09:01:59.986273 8ba2ecc0-f5da-4685-8ae6-d1a1ffdbe650 {"md5": "c7a29a85c9ec6bd0f1fb3b78fd8cdd58", "pid": "1237506611", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1237506611", "source": "GND"}], "preferred_name": "May, Yvonne", "country_associated": "gw", "authorized_access_point": "May, Yvonne"} 1 +2024-09-11 09:02:00.042568 2024-09-11 09:02:00.042572 ea1462e5-24ba-49a9-812d-9716315e956e {"md5": "9b1efab4abf8d2448e14bce1c444589b", "pid": "123768624", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/123768624", "source": "GND"}], "date_of_birth": "1965", "preferred_name": "Grossmann, Stefan", "authorized_access_point": "Grossmann, Stefan, 1965-", "biographical_information": ["Dr. rer. pol.; Wirtschaftswissenschaftler im Bildungscontrolling"]} 1 +2024-09-11 09:02:00.101631 2024-09-11 09:02:00.101634 1ba8d7e3-47e3-4823-a15d-16441f336efa {"md5": "955728fbd6770b49b408d99009e129b4", "pid": "1238027237", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1238027237", "source": "GND"}], "date_of_birth": "1969", "preferred_name": "Wolff, Regine", "country_associated": "gw", "authorized_access_point": "Wolff, Regine, 1969-"} 1 +2024-09-11 09:02:00.168277 2024-09-11 09:02:00.16828 83422f4c-a0df-4730-9b2f-b6baec34d9e8 {"md5": "0020dd009be900c335c9d5e32617012d", "pid": "1238037844", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1238037844", "source": "GND"}], "preferred_name": "Goertz, Hans-Jürgen", "authorized_access_point": "Goertz, Hans-Jürgen"} 1 +2024-09-11 09:02:00.223702 2024-09-11 09:02:00.223705 7a11f757-5a64-4af4-91ea-5bda8b7c6d33 {"md5": "5d9916f3acbdb57e696c3719b5692f37", "pid": "1238039944", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1238039944", "source": "GND"}], "preferred_name": "Sonata a Tre", "date_of_establishment": "1992", "authorized_access_point": "Sonata a Tre", "biographical_information": ["Mitglieder: Emil Drápela (Klarinette, künstlerischer Leiter), Marie Gajdošová (Violine) und Dana Drápelová (Klavier)"]} 1 +2024-09-11 09:02:00.279646 2024-09-11 09:02:00.27965 5b0174a5-fde1-4e5f-82c1-00bc909888d7 {"md5": "724795dd96ca283c64e060d00072a198", "pid": "123806305", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/123806305", "source": "GND"}], "date_of_birth": "1961", "preferred_name": "Leitner, Hans", "country_associated": "gw", "parallel_access_point": ["Leitner, Hans, 1961-"], "authorized_access_point": "Leitner, Hans, 1961-", "biographical_information": ["u.a. Orgelsachverständiger; DMA: Domorganist in München"]} 1 +2024-09-11 09:02:00.341187 2024-09-11 09:02:00.34119 f4a6e811-b7e6-48e3-b7fd-12bee33236b7 {"md5": "497749aebce52b45e263c3c2802144db", "pid": "1238167659", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1238167659", "source": "GND"}], "date_of_birth": "1984", "preferred_name": "Steiner, Kirsten", "country_associated": "gw", "authorized_access_point": "Steiner, Kirsten, 1984-"} 1 +2024-09-11 09:02:00.393978 2024-09-11 09:02:00.393982 453f5c51-63a1-4a04-a662-ace00d1f32e9 {"md5": "51c93993b0d98db0b8f30a019e314747", "pid": "123952425", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/123952425", "source": "GND"}], "variant_name": ["Helbich, Wolfgang", "Helbich, Wolfgang Johannes", "Helbich-Lehmkuhl, Wolfgang", "Helbich-Lehmkuhl, Wolfgang J.", "Helbich-Lehmkuhl, Wolfgang Johannes"], "date_of_birth": "1935", "preferred_name": "Helbich, Wolfgang J.", "country_associated": "gw", "variant_access_point": ["Helbich, Wolfgang, 1935-", "Helbich, Wolfgang Johannes, 1935-", "Helbich-Lehmkuhl, Wolfgang, 1935-", "Helbich-Lehmkuhl, Wolfgang J., 1935-", "Helbich-Lehmkuhl, Wolfgang Johannes, 1935-"], "authorized_access_point": "Helbich, Wolfgang J., 1935-", "biographical_information": ["Dt. Historiker; Prof. für Neuere Geschichte mit bes. Berücks. der Geschichte Nordamerikas an der Ruhr-Universität Bochum; Initiator einer Sammlung von Briefen deutscher Auswanderer"]} 1 +2024-09-11 09:02:00.461646 2024-09-11 09:02:00.46165 0e93185b-5ae3-44da-b75a-9dc73a30c50c {"md5": "04e2182b8052e3fc48dc9864adb72302", "pid": "123954940", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/123954940", "source": "GND"}], "date_of_birth": "1956", "date_of_death": "1994", "preferred_name": "Rákos, Petr", "authorized_access_point": "Rákos, Petr, 1956-1994", "biographical_information": ["Tschech. Schriftsteller"]} 1 +2024-09-11 09:02:00.520777 2024-09-11 09:02:00.52078 83335da8-7e3d-4270-8cac-a592095b8798 {"md5": "43e669059b2712627917ac273281ce35", "pid": "1239691408", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1239691408", "source": "GND"}], "variant_name": ["Leibniz-Institut für Verbundwerkstoffe GmbH", "IVW"], "preferred_name": "Leibniz-Institut für Verbundwerkstoffe", "country_associated": "gw", "variant_access_point": ["Leibniz-Institut für Verbundwerkstoffe GmbH. Unveraenderte Form", "IVW. Abkuerzung"], "date_of_establishment": "01.01.2021", "authorized_access_point": "Leibniz-Institut für Verbundwerkstoffe", "biographical_information": ["Das Leibniz-Institut für Verbundwerkstoffe (IVW) ist eine gemeinnützige Forschungseinrichtung des Landes Rheinland-Pfalz und der Technischen Universität Kaiserslautern.Als Mitglied der Leibniz-Gemeinschaft erhält das Institut institutionelle Zuwendungen gemäß AV-WGL zur gemeinsamen finanziellen Förderung von Einrichtungen durch Bund und Länder (Bundesanteil 50%, Anteil des Landes Rheinland-Pfalz und der Ländergesamtheit 50%)."]} 1 +2024-09-11 09:02:00.578442 2024-09-11 09:02:00.578446 e5383ee4-951f-44e1-8931-11152c0af144 {"md5": "2e20e2d1a63d8087185aee0b7c9c22b4", "pid": "1240158319", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1240158319", "source": "GND"}], "preferred_name": "Fröhlich, Ludwig", "authorized_access_point": "Fröhlich, Ludwig", "biographical_information": ["Zusammenstellender von: Altenburger Liederkranz"]} 1 +2024-09-11 09:02:00.629888 2024-09-11 09:02:00.629894 3577fd73-7a19-4588-b02a-17311d300734 {"md5": "4bb5ba75b52ea24760215410dde2b806", "pid": "124025064", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124025064", "source": "GND"}], "date_of_birth": "1893", "date_of_death": "1972", "preferred_name": "Trapp, Otto", "country_associated": "gw", "authorized_access_point": "Trapp, Otto, 1893-1972", "biographical_information": ["Dt. Zahnarzt"]} 1 +2024-09-11 09:02:00.683417 2024-09-11 09:02:00.68342 b8524daa-b24b-45c2-92e6-6e0cae5ec657 {"md5": "25d9468a446ef206f2483dd58a4e0639", "pid": "12402890X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12402890X", "source": "GND"}], "variant_name": ["Jain, Mahendra K."], "date_of_birth": "1938", "date_of_death": "2017", "preferred_name": "Jain, Mahendra Kumar", "country_associated": "ii", "variant_access_point": ["Jain, Mahendra K., 1938-2017"], "authorized_access_point": "Jain, Mahendra Kumar, 1938-2017", "biographical_information": ["Biologe ind. Herkunft"]} 1 +2024-09-11 09:02:00.740222 2024-09-11 09:02:00.740227 7e09a641-55f5-49b7-87f8-76990ad66f26 {"md5": "26572906958445c6fe078ecf0fd495a7", "pid": "1240323492", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1240323492", "source": "GND"}], "date_of_birth": "1709", "date_of_death": "1769", "preferred_name": "Voigt, Gottlieb Wilhelm", "country_associated": "gw", "authorized_access_point": "Voigt, Gottlieb Wilhelm, 1709-1769"} 1 +2024-09-11 09:02:00.792236 2024-09-11 09:02:00.79224 a8195292-7d1b-4709-8730-30b9c9e90ae9 {"md5": "4d4a57239de23bb374de7d2ec375024b", "pid": "1240334206", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1240334206", "source": "GND"}], "date_of_birth": "1719", "date_of_death": "1789", "preferred_name": "Fries, Johann Georg", "country_associated": "gw", "authorized_access_point": "Fries, Johann Georg, 1719-1789"} 1 +2024-09-11 09:02:05.189849 2024-09-11 09:02:05.189852 ab2d2a56-7041-4b71-b902-4181a46eb3b8 {"md5": "66faa7a7a957ba35cd8b06c59fa03089", "pid": "1253803536", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1253803536", "source": "GND"}], "date_of_birth": "ca. 20./21. Jh.", "preferred_name": "Sheme, Selman", "country_associated": "aa", "authorized_access_point": "Sheme, Selman, ca. 20./21. Jh."} 1 +2024-09-11 09:02:00.849578 2024-09-11 09:02:00.849581 575ebbc3-fccf-463e-a2f4-4b1e7db03684 {"md5": "5474673e97433a8ac2b06e0fb93a3bce", "pid": "124045790", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124045790", "source": "GND"}], "variant_name": ["Oldermann, Bernhardus"], "preferred_name": "Oldermann, Bernhard", "country_associated": "gw", "variant_access_point": ["Oldermann, Bernhardus"], "authorized_access_point": "Oldermann, Bernhard", "biographical_information": ["immatrikulierte sich 1674 in Kiel und 1680 in Rostock und war von 1698-1726 Prediger in Arnæs"]} 1 +2024-09-11 09:02:00.900925 2024-09-11 09:02:00.900929 9be03f9a-b071-43e4-8066-3e5f9f733c69 {"md5": "bc6fbe8631a72ccf319e0279fd7a37d9", "pid": "1240634323", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1240634323", "source": "GND"}], "preferred_name": "Hirsiger, Marcel", "country_associated": "sz", "authorized_access_point": "Hirsiger, Marcel", "biographical_information": ["Dozent an der Hochschule für Wirtschaft, Fachhochschule Nordwestschweiz"]} 1 +2024-09-11 09:02:00.951904 2024-09-11 09:02:00.951908 af360265-0888-4197-90bc-618c032835b7 {"md5": "2d33323d2703dfa08258d32254562b6a", "pid": "1240922175", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1240922175", "source": "GND"}], "preferred_name": "Arbeitskreis für freie Erziehung e.V.", "country_associated": "gw", "date_of_establishment": "1981", "authorized_access_point": "Arbeitskreis für freie Erziehung e.V."} 1 +2024-09-11 09:02:01.006114 2024-09-11 09:02:01.006118 7b978464-d073-4139-a530-c2fdcfac938b {"md5": "cc16103e64318ce1f1ee25e844a7e46b", "pid": "1241124949", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1241124949", "source": "GND"}], "variant_name": ["Internationaler Exlibris-Kongress, 21.", "XXI. Internationaler Exlibris-Kongress", "21. Internationaler Exlibris-Kongress"], "preferred_name": "International Exlibris Congress, 21.", "country_associated": "ne", "variant_access_point": ["Internationaler Exlibris-Kongress, 21., 1986, Utrecht", "XXI. Internationaler Exlibris-Kongress, 1986, Utrecht", "21. Internationaler Exlibris-Kongress, 1986, Utrecht"], "authorized_access_point": "International Exlibris Congress, 21., 1986, Utrecht"} 1 +2024-09-11 09:02:01.065281 2024-09-11 09:02:01.065286 86713dba-e493-4895-bb9a-a5b626d1c205 {"md5": "bd95b0bc8f1e5413e5548c2d5911d92b", "pid": "1241190755", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1241190755", "source": "GND"}], "variant_name": ["Jihyeon Kim", "Jihyeon, Kim", "Kim Jihyeon"], "preferred_name": "Kim, Jihyeon", "country_associated": "xxu", "variant_access_point": ["Jihyeon Kim", "Jihyeon, Kim", "Kim Jihyeon"], "authorized_access_point": "Kim, Jihyeon"} 1 +2024-09-11 09:02:01.122855 2024-09-11 09:02:01.122859 5d429ef7-e8fc-4715-9ae6-1be2d3b9b2b2 {"md5": "470627db61d574ce10d7d114c5c20bbe", "pid": "1241191921", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1241191921", "source": "GND"}], "date_of_birth": "ca. 20./21. Jh.", "preferred_name": "Strunz, Franz", "country_associated": "gw", "authorized_access_point": "Strunz, Franz, ca. 20./21. Jh."} 1 +2024-09-11 09:02:01.195661 2024-09-11 09:02:01.195666 14a8c9cd-b4ab-4b32-b840-00b1060adb98 {"md5": "bada658c0e0b1501ddd03ba55c26f3e1", "pid": "1241199418", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1241199418", "source": "GND"}], "preferred_name": "Wladimir-Kusnezow-Chor", "country_associated": "ru", "authorized_access_point": "Wladimir-Kusnezow-Chor", "biographical_information": ["Männerchor, Repertoire: Russische Volkslieder, Kosakenlieder"]} 1 +2024-09-11 09:02:01.257827 2024-09-11 09:02:01.25783 ebb2dbf0-9f21-4c02-8c19-42d2bfd41458 {"md5": "06dec15230898150684501610dfd865d", "pid": "124206018", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124206018", "source": "GND"}], "variant_name": ["Jacobson, Thorkild Peter Rudolph"], "date_of_birth": "1904", "date_of_death": "1993", "preferred_name": "Jacobsen, Thorkild", "country_associated": "dk", "variant_access_point": ["Jacobson, Thorkild Peter Rudolph, 1904-1993"], "authorized_access_point": "Jacobsen, Thorkild, 1904-1993", "biographical_information": ["Dän.-amerikan. Orientalist"]} 1 +2024-09-11 09:02:01.314204 2024-09-11 09:02:01.314207 e97e418c-de0b-4177-9498-70c2f5904166 {"md5": "efcfd1d215b2a867533fb2a04026031a", "pid": "1242496343", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1242496343", "source": "GND"}], "preferred_name": "Mir, Mark Stephen", "country_associated": "xxu", "authorized_access_point": "Mir, Mark Stephen"} 1 +2024-09-11 09:02:01.366269 2024-09-11 09:02:01.366272 e639423c-508c-466a-aa6b-466e2da3899f {"md5": "4b91d3640afdc1e064bea9d51edb0431", "pid": "124250076", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124250076", "source": "GND"}], "variant_name": ["Helwich, Georgius", "Hellwich, Georgius", "Hellwich, Georg", "Helwig, Georgius", "Helwichius, Georgius", "Helwig, Georg", "Hellwichius, Georgius", "Helwichus, Georg", "Helvichius, Georgius", "GHM", "G.H.M."], "date_of_birth": "21.07.1588", "date_of_death": "05.12.1632", "preferred_name": "Helwich, Georg", "country_associated": "gw", "variant_access_point": ["Helwich, Georgius, 1588-1632", "Hellwich, Georgius, 1588-1632", "Hellwich, Georg, 1588-1632", "Helwig, Georgius, 1588-1632", "Helwichius, Georgius, 1588-1632", "Helwig, Georg, 1588-1632", "Hellwichius, Georgius, 1588-1632", "Helwichus, Georg, 1588-1632", "Helvichius, Georgius, 1588-1632", "GHM, 1588-1632", "G.H.M., 1588-1632"], "authorized_access_point": "Helwich, Georg, 1588-1632", "biographical_information": ["Vikar des hohen Domstifts zu Mainz"]} 1 +2024-09-11 09:02:01.420374 2024-09-11 09:02:01.420377 b2732a17-1be2-4fea-bc43-6a472f365d86 {"md5": "b68bcce19a8dd614d9871de732cfc72d", "pid": "124257070", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124257070", "source": "GND"}], "date_of_birth": "1968", "preferred_name": "Fiehn, Dietmar", "authorized_access_point": "Fiehn, Dietmar, 1968-", "biographical_information": ["Informatiker"]} 1 +2024-09-11 09:02:01.483931 2024-09-11 09:02:01.483934 6ca3b5e4-8db3-44af-a1da-1e2eda3dc051 {"md5": "ac44aeee6f238065229b9b8b67ea7e38", "pid": "124257151", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124257151", "source": "GND"}], "date_of_birth": "1852", "preferred_name": "Navarra, Gerolamo", "country_associated": "it", "authorized_access_point": "Navarra, Gerolamo, 1852-"} 1 +2024-09-11 09:02:01.547053 2024-09-11 09:02:01.547057 33b638bb-13f5-4fca-80f7-51d5343024f2 {"md5": "de1f635933882719d371f44548f82980", "pid": "124268512X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124268512X", "source": "GND"}], "variant_name": ["Yating, Li", "Li Yating"], "preferred_name": "Li, Yating", "country_associated": "cc", "variant_access_point": ["Yating, Li", "Li Yating"], "authorized_access_point": "Li, Yating"} 1 +2024-09-11 09:02:01.600125 2024-09-11 09:02:01.60013 f687217c-4cff-4381-a27a-13f610bafaf9 {"md5": "99cbd0949f36b8b41af7ed20bf00a3b2", "pid": "124271057", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124271057", "source": "GND"}], "date_of_birth": "1929", "preferred_name": "Echevarría, Fernando", "country_associated": "po", "authorized_access_point": "Echevarría, Fernando, 1929-", "biographical_information": ["Portug. Lyriker"]} 1 +2024-09-11 09:02:01.658324 2024-09-11 09:02:01.658328 0150b073-bf2b-4864-8695-edd0e5d689d3 {"md5": "3547035f54ee947f9e42e6134e043eac", "pid": "124284299", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124284299", "source": "GND"}], "variant_name": ["Mannoury d'Ectot, Marquise", "Mannoury d'Ectot, H. Nicolas le Blanc, Marquise", "Coeur-Brûlant, Vicomtesse de", "Nicolas le Blanc, H.", "Mannoury d'Ectot, Henri de", "Manoury, ... de", "Hugo, Viktor"], "preferred_name": "Mannoury d'Ectot, H. de", "country_associated": "fr", "variant_access_point": ["Mannoury d'Ectot, Marquise", "Mannoury d'Ectot, H. Nicolas le Blanc, Marquise", "Coeur-Brûlant, Vicomtesse de", "Nicolas le Blanc, H.", "Mannoury d'Ectot, Henri de", "Manoury, ... de", "Hugo, Viktor"], "parallel_access_point": ["Mannoury d'Ectot"], "authorized_access_point": "Mannoury d'Ectot, H. de", "biographical_information": ["mutmaßl. Verf. des Romans \\"Les cousines de la colonelle\\", der früher Guy de Maupassant zugeschrieben wurde"]} 1 +2024-09-11 09:02:01.713997 2024-09-11 09:02:01.714 c81848f4-9952-48b5-85a9-b4152b79a939 {"md5": "16ee14f7133cb381bf93627baecde615", "pid": "1243013648", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1243013648", "source": "GND"}], "date_of_birth": "1985", "preferred_name": "Keshmirian, Anita", "country_associated": "ir", "authorized_access_point": "Keshmirian, Anita, 1985-", "biographical_information": ["Dissertation, Graduate School of Systemic Neurosciences (GSN), Ludwig-Maximilians-Universität München, 2021"]} 1 +2024-09-11 09:02:01.806986 2024-09-11 09:02:01.80699 a459ae4e-9a98-407b-91a4-f84d2cdf4035 {"md5": "6c18a6c612f20670dbfaab1a8513257c", "pid": "124311861X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124311861X", "source": "GND"}], "variant_name": ["PERC"], "preferred_name": "Physics Education Research Conference", "variant_access_point": ["PERC, 2020, Online"], "authorized_access_point": "Physics Education Research Conference, 2020, Online"} 1 +2024-09-11 09:02:01.871651 2024-09-11 09:02:01.871653 9ba9007b-12cc-43ed-aac1-fa0be214cac7 {"md5": "9d569ee969bb3fdde5789938460638b1", "pid": "124326764X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124326764X", "source": "GND"}], "variant_name": ["Rößle, Ludwig Gottfried Carl"], "date_of_birth": "01.06.1765", "date_of_death": "20.04.1840", "preferred_name": "Rößle, Gottfried Carl", "country_associated": "gw", "variant_access_point": ["Rößle, Ludwig Gottfried Carl, 1765-1840"], "authorized_access_point": "Rößle, Gottfried Carl, 1765-1840", "biographical_information": ["aus Öhringen; Jurastudent in Tübingen; Hofrat"]} 1 +2024-09-11 09:02:01.924313 2024-09-11 09:02:01.924318 757de327-33ac-4a66-96b5-5f12b3731a0d {"md5": "c6369f0c8eed39a298b0c69a6c587e2a", "pid": "1243598751", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1243598751", "source": "GND"}], "preferred_name": "Wang, Jiun-Long", "country_associated": "cc", "authorized_access_point": "Wang, Jiun-Long", "biographical_information": ["tätig am Department of Life Sciences and Agricultural Biotechnology Center, National Chung Hsing University, Taichung 402, Taiwan"]} 1 +2024-09-11 09:02:01.994516 2024-09-11 09:02:01.99452 99c92f15-cbe0-4161-b53b-ab2a3f694279 {"md5": "e176c2ffa89a9f43100ed42c18e3678b", "pid": "124384196", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124384196", "source": "GND"}], "date_of_birth": "1917", "date_of_death": "1995", "preferred_name": "Holtrop, Jan", "country_associated": "ne", "authorized_access_point": "Holtrop, Jan, 1917-1995", "biographical_information": ["Niederländ. Maler"]} 1 +2024-09-11 09:02:02.066941 2024-09-11 09:02:02.066945 1bee2f60-29fe-4255-886d-0d3606b0c58a {"md5": "34b87e08a7902fa3ec54252acf38ab3a", "pid": "1243856505", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "qualifier": "de", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1243856505", "source": "GND"}], "date_of_birth": "ca. 1706", "date_of_death": "25.04.1760", "preferred_name": "Marteville, Ludvig, de", "authorized_access_point": "Marteville, Ludvig, de, 1706-1760"} 1 +2024-09-11 09:02:02.121659 2024-09-11 09:02:02.121662 9a8d16cd-d0ad-4109-90b8-6b1d2d07fd1e {"md5": "649e48664356d5d37dc7121779a5501a", "pid": "12438644X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12438644X", "source": "GND"}], "date_of_birth": "1955", "preferred_name": "Heinzel, Matthias", "authorized_access_point": "Heinzel, Matthias, 1955-"} 1 +2024-09-11 09:02:02.174173 2024-09-11 09:02:02.174178 f2a9b574-7737-4015-8de5-186224e87790 {"md5": "ec33f8a5c22e0d84e045b4cb607a71ea", "pid": "1243882166", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1243882166", "source": "GND"}], "preferred_name": "Boityere, Charles", "authorized_access_point": "Boityere, Charles"} 1 +2024-09-11 09:02:02.239504 2024-09-11 09:02:02.239507 61249a8f-e86c-4a9a-b8f9-bffd28e9e038 {"md5": "365451307e5bd86576ef8cf7a0dff135", "pid": "1243929332", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1243929332", "source": "GND"}], "preferred_name": "Jänsch, ...", "authorized_access_point": "Jänsch, ..."} 1 +2024-09-11 09:02:02.291321 2024-09-11 09:02:02.291324 f3f86b8c-9a33-4dcc-a9ce-938e26504d38 {"md5": "0855d515d810472bc61ea1e44d9db782", "pid": "1243929464", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1243929464", "source": "GND"}], "date_of_birth": "1788", "preferred_name": "Freyse, Johann Friedrich", "authorized_access_point": "Freyse, Johann Friedrich, 1788-"} 1 +2024-09-11 09:02:02.3558 2024-09-11 09:02:02.355805 e0483500-9fb0-459d-8297-1400e4286d46 {"md5": "8c3d22fe3d0cb2f5617f3bc8bfeed8c3", "pid": "124396488X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124396488X", "source": "GND"}], "date_of_death": "1528", "preferred_name": "Wieland, Martin", "authorized_access_point": "Wieland, Martin, -1528", "biographical_information": ["Aus Ulm. 1493 in Tübingen immatrikuliert"]} 1 +2024-09-11 09:02:02.42436 2024-09-11 09:02:02.424364 bce3a57b-4203-4ef3-bd51-06e6cef92ad0 {"md5": "70a3dc78e066b7e3430f93dce1828ca8", "pid": "1243973145", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1243973145", "source": "GND"}], "date_of_birth": "1554", "date_of_death": "12.01.1623", "preferred_name": "Renner, Georg", "authorized_access_point": "Renner, Georg, 1554-1623"} 1 +2024-09-11 09:02:02.476836 2024-09-11 09:02:02.476841 c4d2cce1-1e43-4f7d-8279-772c14254665 {"md5": "b58eeae54bee81a0fa647b6c3505faa9", "pid": "1244179469", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1244179469", "source": "GND"}], "date_of_birth": "1879", "date_of_death": "1922", "preferred_name": "Hofmeister, Otto", "country_associated": "gw", "authorized_access_point": "Hofmeister, Otto, 1879-1922", "biographical_information": ["Leiter eines optischen Betriebs"]} 1 +2024-09-11 09:02:02.528327 2024-09-11 09:02:02.528331 1f90b6c4-d35f-4e5f-9bf4-bf82a3b37f17 {"md5": "ae3899b4c11374a30f31053d5aebddf5", "pid": "124423256", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124423256", "source": "GND"}], "date_of_birth": "12.11.1943", "date_of_death": "01.02.2009", "preferred_name": "Salter, Richard", "country_associated": "xxk", "authorized_access_point": "Salter, Richard, 1943-2009", "biographical_information": ["Brit. Opern- und Konzertsänger"]} 1 +2024-09-11 09:02:02.583401 2024-09-11 09:02:02.583404 71010d37-8638-443b-a40b-af17d3f3b425 {"md5": "9b6cd8ae975d52f8ea189043df0e2086", "pid": "124457711", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124457711", "source": "GND"}], "variant_name": ["Pichler, Meinrad G."], "date_of_birth": "1947", "preferred_name": "Pichler, Meinrad", "country_associated": "au", "variant_access_point": ["Pichler, Meinrad G., 1947-"], "authorized_access_point": "Pichler, Meinrad, 1947-", "biographical_information": ["Veröffentlichungen zur neueren Geschichte Vorarlbergs"]} 1 +2024-09-11 09:02:02.642551 2024-09-11 09:02:02.642555 11eaac22-aa6c-49bf-a261-cfc08c6c2086 {"md5": "fb29a539ba4973df500d6a9f920f3101", "pid": "1244862096", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1244862096", "source": "GND"}], "date_of_birth": "1952", "preferred_name": "Kim, Jae-Hak", "country_associated": "ko", "authorized_access_point": "Kim, Jae-Hak, 1952-"} 1 +2024-09-11 09:02:02.709218 2024-09-11 09:02:02.709222 35317bf4-b197-4903-99a5-d3964098ee4b {"md5": "ad9dba9e0cfdb8b2128063a91d897f81", "pid": "1244880027", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1244880027", "source": "GND"}], "preferred_name": "Żabicki, Piotr", "country_associated": "pl", "authorized_access_point": "Żabicki, Piotr"} 1 +2024-09-11 09:02:02.776082 2024-09-11 09:02:02.776086 ed3f103f-5b79-4095-a564-a75689046e7f {"md5": "83789177cae1436d25854d2ac01a7610", "pid": "1245339214", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1245339214", "source": "GND"}], "variant_name": ["Dēmuleas, P."], "date_of_birth": "ca. 20./21. Jh.", "preferred_name": "Dēmuleas, Panagiōtēs", "country_associated": "gr", "variant_access_point": ["Dēmuleas, P., ca. 20./21. Jh."], "parallel_access_point": ["Δημουλέας, Παναγιώτης, ca. 20./21. Jh."], "authorized_access_point": "Dēmuleas, Panagiōtēs, ca. 20./21. Jh."} 1 +2024-09-11 09:02:02.829039 2024-09-11 09:02:02.829042 dae0623c-87f7-48cb-8fb8-642c732a45b9 {"md5": "a89d956a0ea716f5605c940b9a6c0d5e", "pid": "1245458760", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1245458760", "source": "GND"}], "variant_name": ["Melior, Alexander"], "preferred_name": "Melior, Alexandrus", "country_associated": "gw", "variant_access_point": ["Melior, Alexander"], "authorized_access_point": "Melior, Alexandrus", "biographical_information": ["Benediktinermönch in St. Maximin zu Trier, Professor an der Theologischen Fakultät zu Trier"]} 1 +2024-09-11 09:02:02.882619 2024-09-11 09:02:02.882622 5e4e6b1f-1f46-4e90-878a-d9ec78afef3e {"md5": "b84a6fbb8b559e54e617e21c5c54b126", "pid": "124566025X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124566025X", "source": "GND"}], "variant_name": ["Ito, Ayumi", "伊藤歩"], "date_of_birth": "14.04.1980", "preferred_name": "Itō, Ayumi", "country_associated": "ja", "variant_access_point": ["Ito, Ayumi, 1980-", "伊藤歩, 1980-"], "parallel_access_point": ["伊藤, 歩, 1980-"], "authorized_access_point": "Itō, Ayumi, 1980-"} 1 +2024-09-11 09:02:02.949607 2024-09-11 09:02:02.94961 aa1bc9af-98bd-4962-af02-97be445dea9b {"md5": "589a9beffeb60729222b9e3ebbce5a4f", "pid": "1245874098", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1245874098", "source": "GND"}], "preferred_name": "Elz, Jutta", "country_associated": "gw", "authorized_access_point": "Elz, Jutta"} 1 +2024-09-11 09:02:03.007199 2024-09-11 09:02:03.007202 21bd7264-535a-4e95-acd2-0d06d4b5acaf {"md5": "ac8a1c79fb7c5469bed51f550710f2c9", "pid": "124603106", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124603106", "source": "GND"}], "variant_name": ["Schwartz, Baruch J.", "Švarc, Baruch", "Shvarts, Barukh", "Shvarts, Barukh Yaàkov", "Švarc, Baruch Dž."], "preferred_name": "Shṿarts, Barukh Yaʿaḳov", "variant_access_point": ["Schwartz, Baruch J.", "Švarc, Baruch", "Shvarts, Barukh", "Shvarts, Barukh Yaàkov", "Švarc, Baruch Dž."], "parallel_access_point": ["שורץ, ברוך יעקב"], "authorized_access_point": "Shṿarts, Barukh Yaʿaḳov", "biographical_information": ["Jüd. Theologe"]} 1 +2024-09-11 09:02:03.061282 2024-09-11 09:02:03.061285 6c6a48a4-e944-4983-96a9-cce3e6c01720 {"md5": "d49c261971e878e0e9e20992c362cf9f", "pid": "1246058642", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1246058642", "source": "GND"}], "date_of_birth": "1964", "preferred_name": "Bukowski, Andrzej", "country_associated": "pl", "authorized_access_point": "Bukowski, Andrzej, 1964-"} 1 +2024-09-11 09:02:03.113884 2024-09-11 09:02:03.113887 fa642f14-cef7-4e26-aa49-d506a8b39bbb {"md5": "0c427c461624456d86a45a017fc306e2", "pid": "12465164X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12465164X", "source": "GND"}], "variant_name": ["Frager, Ragıp", "Frager, Robert", "Ragip Baba", "Ragip Frager al-Jerrahi al-Halveti", "Ragip al-Jerrahi", "Jerrahi, Ragip al-"], "date_of_birth": "1940", "preferred_name": "Frager, Ragip", "country_associated": "xxu", "variant_access_point": ["Frager, Ragıp, 1940-", "Frager, Robert, 1940-", "Ragip Baba, 1940-", "Ragip Frager al-Jerrahi al-Halveti, 1940-", "Ragip al-Jerrahi, 1940-", "Jerrahi, Ragip al-, 1940-"], "authorized_access_point": "Frager, Ragip, 1940-", "biographical_information": ["Sozialpsychologie und Ṣūfī; Scheich des kalifornischen Zweiges (in Redwood City) des \\"Jerrahi Order of America\\", d.h. des amerikanischen Ablegers des Dscherrahi-Ordens (Zweig des Halveti-Ordens); machte 1961 am Reed College in Portland (Oregon) einen B.A. in Psychologie; 1967 an der Harvard University Promotion zum PhD in Sozialpsychologie; Pionier der transpersonalen Psychologie; entstammt einer jüdischen Familie, trat 1981 zum Islam über"]} 1 +2024-09-11 09:02:03.171358 2024-09-11 09:02:03.171361 21e56eb7-e59d-4c1e-99b9-8064750cdeed {"md5": "c1aca36e79cdcc6e7a1bfc34c158a147", "pid": "124686583", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124686583", "source": "GND"}], "variant_name": ["Beste, August Friedrich Wilhelm"], "date_of_birth": "1817", "date_of_death": "1889", "preferred_name": "Beste, Wilhelm", "country_associated": "gw", "variant_access_point": ["Beste, August Friedrich Wilhelm, 1817-1889"], "authorized_access_point": "Beste, Wilhelm, 1817-1889", "biographical_information": ["Dt. Theologe, Pastor an der Hauptkirche zu Wolfenbüttel"]} 1 +2024-09-11 09:02:03.221124 2024-09-11 09:02:03.221127 68aea482-aa88-4e84-9c31-973e27e53b5f {"md5": "4915645fc3114069579956f6c95b78b3", "pid": "124691560X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124691560X", "source": "GND"}], "date_of_birth": "31.10.1877", "date_of_death": "15.07.1940", "preferred_name": "Hellström, Anders", "country_associated": "sw", "authorized_access_point": "Hellström, Anders, 1877-1940"} 1 +2024-09-11 09:02:03.273629 2024-09-11 09:02:03.273632 5d4b3371-44b8-431e-a14c-81796b863423 {"md5": "b9dbb5cd45fce0fd31fbd284f2f2f47f", "pid": "124715311", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124715311", "source": "GND"}], "variant_name": ["Kaplan, R. B."], "date_of_birth": "20.09.1929", "preferred_name": "Kaplan, Robert B.", "country_associated": "xxu", "variant_access_point": ["Kaplan, R. B., 1929-"], "authorized_access_point": "Kaplan, Robert B., 1929-", "biographical_information": ["Amerikan. Linguist"]} 1 +2024-09-11 09:02:03.328401 2024-09-11 09:02:03.328403 c4f15418-85fc-4f34-a0da-6eec644fcc55 {"md5": "8af33f202b769a5bdf0110fdddcd91ab", "pid": "124717764", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124717764", "source": "GND"}], "variant_name": ["Wolf, Joachim"], "preferred_name": "Wolff, Joachim", "variant_access_point": ["Wolf, Joachim"], "authorized_access_point": "Wolff, Joachim", "biographical_information": ["Dt. Jurist; Respondent an der Univ. Wittenberg"]} 1 +2024-09-11 09:02:03.381953 2024-09-11 09:02:03.381956 4574345b-6bb1-4b2f-88c7-11f1304fda50 {"md5": "8f5f9d79a293a349ccfabd1f41ecc50e", "pid": "12473409X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12473409X", "source": "GND"}], "variant_name": ["Pestieau, Pierre Marie", "Pestieau, P.", "Pestiau, Pierre", "Pestieau, Pierre M.", "Pesteau, Pierre"], "date_of_birth": "10.09.1943", "preferred_name": "Pestieau, Pierre", "country_associated": "be", "variant_access_point": ["Pestieau, Pierre Marie, 1943-", "Pestieau, P., 1943-", "Pestiau, Pierre, 1943-", "Pestieau, Pierre M., 1943-", "Pesteau, Pierre, 1943-"], "parallel_access_point": ["Pestieau, Pierre, 1943-"], "authorized_access_point": "Pestieau, Pierre, 1943-", "biographical_information": ["TSE, Belgien", "Tätig am CREPP, HEC-Management School, University of Liège", "Belgischer Wirtschaftswissenschaftler, auch in den USA und Großbritannien tätig"]} 1 +2024-09-11 09:02:03.437485 2024-09-11 09:02:03.437487 c507c99e-aa1b-4650-ab94-c2da06f2deb7 {"md5": "f2af718ba19ea8d7b736c561c418efef", "pid": "1247579077", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1247579077", "source": "GND"}], "preferred_name": "Lauterbach, Johann Friedrich von", "country_associated": "gw", "authorized_access_point": "Lauterbach, Johann Friedrich von"} 1 +2024-09-11 09:02:03.494103 2024-09-11 09:02:03.494106 5d240939-074f-416a-a33f-627b783fe145 {"md5": "dff59900d88043555629177c0b6a4d0c", "pid": "1247672352", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1247672352", "source": "GND"}], "preferred_name": "Isabella, Giovanni", "country_associated": "it", "authorized_access_point": "Isabella, Giovanni"} 1 +2024-09-11 09:02:03.550194 2024-09-11 09:02:03.550198 4e1bec79-36ed-4cb2-80ed-14f745323601 {"md5": "387227e05dbb48309c54868d69c0eebe", "pid": "1248272013", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1248272013", "source": "GND"}], "preferred_name": "Lohrengel, Josha", "authorized_access_point": "Lohrengel, Josha"} 1 +2024-09-11 09:02:03.617285 2024-09-11 09:02:03.617289 3ff303fc-2fa7-4c81-b4fc-9b02a824c995 {"md5": "16cbac5708a4a6bf24cdac6ee60ea016", "pid": "1248663217", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1248663217", "source": "GND"}], "preferred_name": "RWTH Aachen. Lehr- und Forschungsgebiet für Geologie - Endogene Dynamik", "country_associated": "gw", "authorized_access_point": "RWTH Aachen. Lehr- und Forschungsgebiet für Geologie - Endogene Dynamik"} 1 +2024-09-11 09:02:03.67006 2024-09-11 09:02:03.670065 0c73472f-db8b-4cfd-93ab-0984071afb0c {"md5": "ed936b2ffc60478f2c62f9d7863b5bce", "pid": "1248783271", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1248783271", "source": "GND"}], "variant_name": ["Fuchs, Armin"], "preferred_name": "Fuchs, Armin H.", "country_associated": "gw", "variant_access_point": ["Fuchs, Armin"], "authorized_access_point": "Fuchs, Armin H."} 1 +2024-09-11 09:02:07.466215 2024-09-11 09:02:07.466218 908fd998-c96f-4b22-8f04-31d21e379d2b {"md5": "fb44db1d22d90e41cf953a5f7e44fa28", "pid": "1261766156", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1261766156", "source": "GND"}], "preferred_name": "Veidt, Robin", "authorized_access_point": "Veidt, Robin"} 1 +2024-09-11 09:02:03.723548 2024-09-11 09:02:03.723552 bb0afa27-8359-4535-9bd3-1dfb994c7eac {"md5": "0b7459fa78bf9c9f5e767cd0801b7a68", "pid": "1249217156", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1249217156", "source": "GND"}], "preferred_name": "Douglas, Claire", "country_associated": "xxu", "authorized_access_point": "Douglas, Claire", "biographical_information": ["Psychologue clinicienne et psychanalyste jungienne. - Membre de : C. G. Jung society of Southern California, Los Angeles, Calif., États-Unis (en 1997)."]} 1 +2024-09-11 09:02:03.781139 2024-09-11 09:02:03.781141 b5cde36d-6ba2-4864-ac6d-35b037cc5c2b {"md5": "e59cd4c276d7362e18cfcc39387871fd", "pid": "124922511", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124922511", "source": "GND"}], "variant_name": ["Mikeska, Thomas Hermann"], "date_of_birth": "1969", "preferred_name": "Mikeska, Thomas", "variant_access_point": ["Mikeska, Thomas Hermann, 1969-"], "authorized_access_point": "Mikeska, Thomas, 1969-", "biographical_information": ["Diss. Fachbereich Biochemie; Chemiker"]} 1 +2024-09-11 09:02:03.833454 2024-09-11 09:02:03.833457 570b48ae-6b50-45ba-9d03-824b4cbad920 {"md5": "1cf2fde3208f26a24d2556b3d5d398ec", "pid": "1249513502", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1249513502", "source": "GND"}], "variant_name": ["Albinus, Elisabetha Barbara", "Albinusin, Elisabetha Barbara"], "date_of_birth": "1696", "date_of_death": "11.01.1725", "preferred_name": "Killinger, Elisabetha Barbara", "country_associated": "gw", "variant_access_point": ["Albinus, Elisabetha Barbara, 1696-1725", "Albinusin, Elisabetha Barbara, 1696-1725"], "authorized_access_point": "Killinger, Elisabetha Barbara, 1696-1725"} 1 +2024-09-11 09:02:03.882931 2024-09-11 09:02:03.882934 5e5e8987-f5e0-4d48-a7d2-7dc7e613d28e {"md5": "cf4a3c9725f3c50e8f804dfd0ac7f0e5", "pid": "124962793", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124962793", "source": "GND"}], "date_of_birth": "1973", "preferred_name": "Lengemann, Janka", "authorized_access_point": "Lengemann, Janka, 1973-", "biographical_information": ["Medizinerin"]} 1 +2024-09-11 09:02:03.935609 2024-09-11 09:02:03.935612 2b8204f2-7499-4f72-b8c0-33a440b56d30 {"md5": "d74e08de235b1c1cd9000bcd48292fa1", "pid": "124969178", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124969178", "source": "GND"}], "variant_name": ["De Lemos, Rogério"], "date_of_birth": "1961", "preferred_name": "Lemos, Rogério de", "country_associated": "xxk", "variant_access_point": ["De Lemos, Rogério, 1961-"], "authorized_access_point": "Lemos, Rogério de, 1961-", "biographical_information": ["Informatiker"]} 1 +2024-09-11 09:02:03.992333 2024-09-11 09:02:03.992338 eef65958-64f9-4c3e-b286-27e1d044b5e3 {"md5": "9035c82695963d2bd044c3f63e79b46c", "pid": "1249776090", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1249776090", "source": "GND"}], "preferred_name": "Huri, Gazi", "country_associated": "tu", "authorized_access_point": "Huri, Gazi"} 1 +2024-09-11 09:02:04.056904 2024-09-11 09:02:04.056907 61047948-b015-420f-b2fd-648bebc85e04 {"md5": "680a4b130e44e3aede9978eb7e138270", "pid": "1249789494", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1249789494", "source": "GND"}], "preferred_name": "Leschinski, Anastasia", "country_associated": "gw", "authorized_access_point": "Leschinski, Anastasia", "biographical_information": ["Diss. Medizinische Hochschule Hannover"]} 1 +2024-09-11 09:02:04.107957 2024-09-11 09:02:04.107961 45ffc402-820d-4874-a9cd-c29c4859d3bd {"md5": "7c7cabba1ac032d1927f22f1436dc54d", "pid": "1249795362", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1249795362", "source": "GND"}], "date_of_birth": "1996", "preferred_name": "Seifert, Rebecca Maria", "country_associated": "gw", "authorized_access_point": "Seifert, Rebecca Maria, 1996-", "biographical_information": ["Promotion Westfälische Wilhelms-Universität Münster 2021"]} 1 +2024-09-11 09:02:04.162046 2024-09-11 09:02:04.162051 d752ea2f-3588-4387-9863-904dde5e2e96 {"md5": "b94381f84d73e03673c005b9ca872628", "pid": "124995136", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124995136", "source": "GND"}], "variant_name": ["McEachern, Claire Elizabeth", "Mc Eachern, Claire Elizabeth", "MacEachern, Claire Elizabeth"], "date_of_birth": "1963", "preferred_name": "McEachern, Claire", "country_associated": "xxu", "variant_access_point": ["McEachern, Claire Elizabeth, 1963-", "Mc Eachern, Claire Elizabeth, 1963-", "MacEachern, Claire Elizabeth, 1963-"], "parallel_access_point": ["McEachern, Claire Elizabeth, 1963-"], "authorized_access_point": "McEachern, Claire, 1963-", "biographical_information": ["Amerikan. Literaturwissenschaftlerin an der Univ. of California, Los Angeles", "Anglistin, USA"]} 1 +2024-09-11 09:02:04.232591 2024-09-11 09:02:04.232594 84b06775-d42d-42b1-b824-6d2a024f0d32 {"md5": "c68bed2c9ecb2e4a6ac7a7a18ae85815", "pid": "125013981", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/125013981", "source": "GND"}], "preferred_name": "Haarmeyer, Joseph", "authorized_access_point": "Haarmeyer, Joseph"} 1 +2024-09-11 09:02:04.287259 2024-09-11 09:02:04.287262 0deb633e-0471-48cc-bbce-5c9932dece8b {"md5": "1c3007b7712b1f81d45c386abd7f7f25", "pid": "1250280184", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1250280184", "source": "GND"}], "preferred_name": "Agrawal, Sunil", "country_associated": "ii", "authorized_access_point": "Agrawal, Sunil"} 1 +2024-09-11 09:02:04.340088 2024-09-11 09:02:04.340092 64c1e72e-ff7e-460f-80ee-4033b22c1c1a {"md5": "9a4cc05d80e6dd061bbbf28f602dfa7e", "pid": "125037988", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/125037988", "source": "GND"}], "date_of_birth": "1908", "preferred_name": "Halperin, Natalie", "country_associated": "ru", "authorized_access_point": "Halperin, Natalie, 1908-"} 1 +2024-09-11 09:02:04.408519 2024-09-11 09:02:04.408522 422f67f9-579e-4279-867f-28557ff60ade {"md5": "c811d92707be250d5de23de17851ad9d", "pid": "125077683X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/125077683X", "source": "GND"}], "variant_name": ["Wentao, Ren", "Ren Wentao"], "preferred_name": "Ren, Wentao", "country_associated": "cc", "variant_access_point": ["Wentao, Ren", "Ren Wentao"], "authorized_access_point": "Ren, Wentao"} 1 +2024-09-11 09:02:04.459739 2024-09-11 09:02:04.459742 0421a9de-d45e-4e57-832e-10b170f4ae6c {"md5": "15adac514a288660288157fe67e9c480", "pid": "125085685X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/125085685X", "source": "GND"}], "variant_name": ["Lattermann, Dorchen"], "date_of_birth": "1923", "date_of_death": "2003", "preferred_name": "Lattermann, Dore", "country_associated": "gw", "variant_access_point": ["Lattermann, Dorchen, 1923-2003"], "authorized_access_point": "Lattermann, Dore, 1923-2003"} 1 +2024-09-11 09:02:04.513877 2024-09-11 09:02:04.513881 53a0ba28-8d14-4e0a-8002-4fb1d11e5883 {"md5": "fa87940879f5fdc700108bde1e66f2a1", "pid": "1251284507", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1251284507", "source": "GND"}], "variant_name": ["Hallett, Penelope Hughes-"], "date_of_birth": "1927", "date_of_death": "2010", "preferred_name": "Hughes-Hallett, Penelope", "country_associated": "xxk", "variant_access_point": ["Hallett, Penelope Hughes-, 1927-2010"], "authorized_access_point": "Hughes-Hallett, Penelope, 1927-2010", "biographical_information": ["war Dozentin und später Direktorin an der Open University sowie Schirmherrin des Wordsworth Trust und Trustee der Esmee Fairbairn Foundation"]} 1 +2024-09-11 09:02:04.569664 2024-09-11 09:02:04.569666 b2c5bd1f-bdb6-43ae-8c00-43dc22455b41 {"md5": "6ca694e55034dc1abd2400ffc0be6ee7", "pid": "125158103X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/125158103X", "source": "GND"}], "variant_name": ["British Sundial Society", "The British Sundial Society", "BSS", "Sundial Society"], "preferred_name": "The British Sundial Society", "country_associated": "xxk", "variant_access_point": ["British Sundial Society", "The British Sundial Society. Unveraenderte Form", "BSS. Abkuerzung", "Sundial Society. Großbritannien"], "date_of_establishment": "1989", "authorized_access_point": "The British Sundial Society"} 1 +2024-09-11 09:02:04.619507 2024-09-11 09:02:04.619509 219b0c34-ee6e-4e5b-b989-d289121d8b14 {"md5": "db907bc8ae7e18d308017e182d80f659", "pid": "1251903606", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1251903606", "source": "GND"}], "preferred_name": "Blust, Luise", "authorized_access_point": "Blust, Luise"} 1 +2024-09-11 09:02:04.677325 2024-09-11 09:02:04.677329 64a6f06a-9430-4157-a583-929b1bf27bcb {"md5": "e33aaac52ac17cf56affd8a33b83de36", "pid": "125190419X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/125190419X", "source": "GND"}], "date_of_birth": "1964", "preferred_name": "Fuchs, Sybille", "country_associated": "gw", "authorized_access_point": "Fuchs, Sybille, 1964-", "biographical_information": ["2022 am Staatlichen Bauamt München 2 tätig; Hobby-Schauspielerin"]} 1 +2024-09-11 09:02:04.725228 2024-09-11 09:02:04.725232 03bf2ee9-d7f4-4842-ab21-ef3d76efebb7 {"md5": "66151d23b303dd404713a6547b5290ad", "pid": "125224524", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/125224524", "source": "GND"}], "date_of_birth": "1934", "date_of_death": "2017", "preferred_name": "Imhof, Urs", "country_associated": "sz", "authorized_access_point": "Imhof, Urs, 1934-2017"} 1 +2024-09-11 09:02:04.780997 2024-09-11 09:02:04.781001 4fa7214c-542a-429f-a0e5-9af685bb4595 {"md5": "5d8dce95dfa03c2e658ddda8638e2ecb", "pid": "1252339607", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1252339607", "source": "GND"}], "variant_name": ["Proß, L."], "preferred_name": "Proß, Lukas", "country_associated": "gw", "variant_access_point": ["Proß, L."], "authorized_access_point": "Proß, Lukas", "biographical_information": ["2018: Bachelor (Physik)"]} 1 +2024-09-11 09:02:04.8349 2024-09-11 09:02:04.834903 09ef4d75-231b-4637-bc23-7a27584bf181 {"md5": "5a89a53c4ce5bc2225db1d2d8d432068", "pid": "1253016488", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1253016488", "source": "GND"}], "preferred_name": "Kamer All Stars", "country_associated": "cm", "authorized_access_point": "Kamer All Stars"} 1 +2024-09-11 09:02:04.887353 2024-09-11 09:02:04.887357 9f27c621-4eb2-476d-858b-11eac43f0262 {"md5": "53d8f394e354fe226e63b7525f427904", "pid": "1253049424", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1253049424", "source": "GND"}], "preferred_name": "Doyle, Alister", "country_associated": "xxu", "authorized_access_point": "Doyle, Alister"} 1 +2024-09-11 09:02:04.943384 2024-09-11 09:02:04.943388 b1a3d297-58e7-4023-999d-59fb09f6328c {"md5": "eb1dab2d345df990299713c4bae9dba2", "pid": "1253266913", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1253266913", "source": "GND"}], "preferred_name": "Guerra, Samira", "country_associated": "sz", "authorized_access_point": "Guerra, Samira"} 1 +2024-09-11 09:02:05.001629 2024-09-11 09:02:05.001633 647638f7-509f-46a8-875a-f74fb5aa62cb {"md5": "0e432095fe6eeafa41a246297ab6449a", "pid": "1253317887", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1253317887", "source": "GND"}], "date_of_birth": "07.11.1995", "preferred_name": "Xander, Tom", "authorized_access_point": "Xander, Tom, 1995-"} 1 +2024-09-11 09:02:05.069333 2024-09-11 09:02:05.069337 8761ef2e-d013-4f0f-a00d-ca0dda3fd8d2 {"md5": "b3fe22f1c0e7f9b8511c5aedc3cfb30f", "pid": "12533396X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12533396X", "source": "GND"}], "variant_name": ["Kusel, Wilhelm Eduard Johann Friedrich"], "date_of_birth": "1894", "preferred_name": "Kusel, Wilhelm", "variant_access_point": ["Kusel, Wilhelm Eduard Johann Friedrich, 1894-"], "authorized_access_point": "Kusel, Wilhelm, 1894-"} 1 +2024-09-11 09:02:05.122357 2024-09-11 09:02:05.12236 47ee5686-8169-4a3d-963a-a166a66ac26d {"md5": "f13e99a7d713cc14467d93b1f9ed4223", "pid": "1253501106", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1253501106", "source": "GND"}], "variant_name": ["Qi Chen", "齐, 宸"], "preferred_name": "Qi, Chen", "country_associated": "cc", "variant_access_point": ["Qi Chen", "齐, 宸"], "parallel_access_point": ["齐宸"], "authorized_access_point": "Qi, Chen", "biographical_information": ["Postdoktorandin an der Beijing Institute of Technology Law School und dem Institute of International Dispute Prevention and Resolution (2021)"]} 1 +2024-09-11 09:02:05.244312 2024-09-11 09:02:05.244316 6ee8b76d-c696-46be-9c84-648c884ddbd8 {"md5": "5343e92cfd67c9e06b3e072f8870f8f5", "pid": "1253954518", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1253954518", "source": "GND"}], "variant_name": ["Cognition and the Book. Typologies of Formal Organisation of Knowledge in the Printed Book of the Early Modern Period"], "preferred_name": "Formale Erkenntnissteuerung im Buchdruck der Frühen Neuzeit", "country_associated": "gw", "variant_access_point": ["Cognition and the Book. Typologies of Formal Organisation of Knowledge in the Printed Book of the Early Modern Period. Veranstaltung, 2002, Berlin"], "authorized_access_point": "Formale Erkenntnissteuerung im Buchdruck der Frühen Neuzeit. Veranstaltung, 2002, Berlin"} 1 +2024-09-11 09:02:05.309143 2024-09-11 09:02:05.309147 acc4f022-cad8-41a2-bdda-5b82167079e6 {"md5": "5bc37179d0c1033c9f7fd3bc2f22345f", "pid": "125407466X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/125407466X", "source": "GND"}], "preferred_name": "Fu, Victoria", "country_associated": "xxu", "authorized_access_point": "Fu, Victoria", "biographical_information": ["Master-Abschluss in Nanotechnologie; arbeitet im Hautpflegelabor von L'Oreal"]} 1 +2024-09-11 09:02:05.361299 2024-09-11 09:02:05.361303 aec65a00-05a7-42c9-8799-81f6d5f6a151 {"md5": "d9e2d14c938377ab577c458d493cebc1", "pid": "125448554", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/125448554", "source": "GND"}], "date_of_birth": "08.12.1910", "preferred_name": "Schmersow, Herbert", "country_associated": "gw", "authorized_access_point": "Schmersow, Herbert, 1910-", "biographical_information": ["studierte zunächst neuere Sprachen, um den Lehrberuf zu ergreifen, wechselte dann zur technischen Physik"]} 1 +2024-09-11 09:02:05.41477 2024-09-11 09:02:05.414773 782c9e49-d537-4044-81dd-300d58930110 {"md5": "a784d44c68b58b21cae1c554d1e1988e", "pid": "1254513582", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1254513582", "source": "GND"}], "date_of_birth": "07.10.1861", "date_of_death": "25.01.1951", "preferred_name": "Ranke, Karl", "country_associated": "gw", "authorized_access_point": "Ranke, Karl, 1861-1951", "biographical_information": ["1886 Promotion an der Med. Fac. der Königl. Julius-Maximilians-Universität zu Würzburg"]} 1 +2024-09-11 09:02:05.466867 2024-09-11 09:02:05.46687 c4865b7d-f1d4-4607-9366-a9f730263acf {"md5": "1329922cd5efd6a89d523f850a227163", "pid": "1254551980", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1254551980", "source": "GND"}], "variant_name": ["Sokol, Kathy A."], "preferred_name": "Sokol, Kathy Arlyn", "country_associated": "xxk", "variant_access_point": ["Sokol, Kathy A."], "authorized_access_point": "Sokol, Kathy Arlyn"} 1 +2024-09-11 09:02:05.519577 2024-09-11 09:02:05.519581 b6b19f88-6b0c-4132-8702-00e389ccde8b {"md5": "01068b222a2130217b2b8a6b1ba31b50", "pid": "1254730559", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1254730559", "source": "GND"}], "preferred_name": "Meisl, Clemens-Josef", "country_associated": "au", "authorized_access_point": "Meisl, Clemens-Josef", "biographical_information": ["Fachhochschule Wiener Neustadt, Masterarbeit, 2021"]} 1 +2024-09-11 09:02:05.572415 2024-09-11 09:02:05.572418 4cb8a0ef-1f69-4ec3-90f2-cfb298416644 {"md5": "5dea0fd160374653c7069e2912a3c218", "pid": "1255052740", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1255052740", "source": "GND"}], "variant_name": ["Tagung: 75 Jahre Befreiung des Konzentrationslagers Auschwitz - „Die Auseinandersetzung mit der Geschichte ist nie abgeschlossen“"], "preferred_name": "Die Auseinandersetzung mit der Geschichte ist nie abgeschlossen", "country_associated": "gw", "variant_access_point": ["Tagung: 75 Jahre Befreiung des Konzentrationslagers Auschwitz - „Die Auseinandersetzung mit der Geschichte ist nie abgeschlossen“, 2020, Berlin"], "authorized_access_point": "Die Auseinandersetzung mit der Geschichte ist nie abgeschlossen. Veranstaltung, 2020, Berlin", "biographical_information": ["Internetseite, Stand 07.04.2022, https://www.kulturelle-integration.de/termin/tagung-erinnerungskultur/"]} 1 +2024-09-11 09:02:05.639411 2024-09-11 09:02:05.639414 5da6c036-c05e-48fc-af5e-30c269dc3265 {"md5": "a8509f7267c4460b4e2f88e8fa5b819a", "pid": "125522732X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/125522732X", "source": "GND"}], "variant_name": ["Orłowski, Tomasz", "Orłowski, Tomasz H."], "date_of_birth": "1956", "preferred_name": "Orłowski, Tomasz Hubert", "country_associated": "pl", "variant_access_point": ["Orłowski, Tomasz, 1956-", "Orłowski, Tomasz H., 1956-"], "authorized_access_point": "Orłowski, Tomasz Hubert, 1956-"} 1 +2024-09-11 09:02:05.70297 2024-09-11 09:02:05.702973 5f2ea3ec-120a-4568-bee7-3f71e662ce2f {"md5": "7291e93bc7f16f27184796fa17f369b7", "pid": "1255253967", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1255253967", "source": "GND"}], "variant_name": ["Planchette, Arielle Louise"], "preferred_name": "Planchette, Arielle", "country_associated": "xxk", "variant_access_point": ["Planchette, Arielle Louise"], "authorized_access_point": "Planchette, Arielle", "biographical_information": ["Dissertation École polytechnique fédérale de Lausanne, 2022"]} 1 +2024-09-11 09:02:05.75828 2024-09-11 09:02:05.758284 a0d42433-f540-411a-86b8-5b5a50672461 {"md5": "e6da197bfe979ac0dd1e77e2fb0110aa", "pid": "125525869", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/125525869", "source": "GND"}], "preferred_name": "Teubern, Ernst Freiherr von", "authorized_access_point": "Teubern, Ernst Freiherr von"} 1 +2024-09-11 09:02:05.822557 2024-09-11 09:02:05.822561 74cd7a0c-e617-44fd-80de-dc8fe6658e92 {"md5": "b9722159582f6c72157b6782b77f48be", "pid": "125527683", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/125527683", "source": "GND"}], "preferred_name": "Neuhäuser, Paul", "authorized_access_point": "Neuhäuser, Paul"} 1 +2024-09-11 09:02:05.877979 2024-09-11 09:02:05.877983 641bee25-9f8d-4306-9464-7e5fa63f0da9 {"md5": "d5a2c53801d9e94491de051410756614", "pid": "125606193X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/125606193X", "source": "GND"}], "date_of_birth": "1964", "preferred_name": "Cerris, Ada", "country_associated": "sz", "authorized_access_point": "Cerris, Ada, 1964-", "biographical_information": ["schreibt auch Belletristik"]} 1 +2024-09-11 09:02:05.954143 2024-09-11 09:02:05.954146 858e9fe1-dbed-4980-8015-522af1d63f11 {"md5": "a2da11dcf9edefbda457510befe073c7", "pid": "1256298980", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1256298980", "source": "GND"}], "variant_name": ["Siwei, Zhao", "Zhao Siwei"], "preferred_name": "Zhao, Siwei", "country_associated": "cc", "variant_access_point": ["Siwei, Zhao", "Zhao Siwei"], "authorized_access_point": "Zhao, Siwei"} 1 +2024-09-11 09:02:06.00421 2024-09-11 09:02:06.004213 f64d9a4e-4b70-411e-aee2-3540a949fca1 {"md5": "742e4feb44b2859f3604bb378808d7eb", "pid": "1256639974", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1256639974", "source": "GND"}], "date_of_birth": "1965", "preferred_name": "Dawe, Jonathan", "country_associated": "xxu", "authorized_access_point": "Dawe, Jonathan, 1965-", "biographical_information": ["member of the Music Theory and Analysis, Graduate Studies, and Doctoral faculty departments at The Juilliard School"]} 1 +2024-09-11 09:02:06.057743 2024-09-11 09:02:06.057746 4012ba99-fb85-4cc9-933a-e2a9bd24fd56 {"md5": "50a205d7b9136fe67d1a1148e08d1a4f", "pid": "125666632", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/125666632", "source": "GND"}], "preferred_name": "Preisler, Peter", "authorized_access_point": "Preisler, Peter"} 1 +2024-09-11 09:02:06.111688 2024-09-11 09:02:06.111691 3ec8223d-021e-4b75-abeb-fdf624ce7369 {"md5": "ca4ce158156831cd84a262ac2a7032df", "pid": "125668465", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/125668465", "source": "GND"}], "preferred_name": "Kretzschmar, Serge", "authorized_access_point": "Kretzschmar, Serge"} 1 +2024-09-11 09:02:06.168106 2024-09-11 09:02:06.16811 64249711-a3bf-4fbf-8b0a-3ae075674286 {"md5": "a0f541d6841834d68b45a322fd42d560", "pid": "125675658X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/125675658X", "source": "GND"}], "variant_name": ["Fürchtenicht, Jana S. C.", "Fürchtenicht, Jana Sophia Carlotta"], "date_of_birth": "1988", "preferred_name": "Fürchtenicht, Jana", "country_associated": "gw", "variant_access_point": ["Fürchtenicht, Jana S. C., 1988-", "Fürchtenicht, Jana Sophia Carlotta, 1988-"], "authorized_access_point": "Fürchtenicht, Jana, 1988-"} 1 +2024-09-11 09:02:06.220091 2024-09-11 09:02:06.220094 4d591e54-69d9-45d9-abfb-4ed646ea8655 {"md5": "c16aebffa0dff2a9f7dfe90dd89d65c1", "pid": "1257269704", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1257269704", "source": "GND"}], "preferred_name": "Wells, Hayley", "country_associated": "xxk", "authorized_access_point": "Wells, Hayley", "biographical_information": ["MA in Children’s Book Illustration from Cambridge School of Art"]} 1 +2024-09-11 09:02:06.271106 2024-09-11 09:02:06.271109 5a94c0d5-489b-4354-a76d-f4ae1a38578f {"md5": "da184fe1ac75b4dc7810e27fb9a33d93", "pid": "1257796259", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1257796259", "source": "GND"}], "variant_name": ["Advanced Environmental, Chemical, and Biological Sensing Technologies XII"], "preferred_name": "Advanced Environmental, Chemical, and Biological Sensing Technologies", "country_associated": "xxu", "variant_access_point": ["Advanced Environmental, Chemical, and Biological Sensing Technologies XII"], "authorized_access_point": "Advanced Environmental, Chemical, and Biological Sensing Technologies. Veranstaltung, 2015, Baltimore, Md."} 1 +2024-09-11 09:02:06.328759 2024-09-11 09:02:06.328764 ef2ea2d6-0528-4790-b3c7-ef60943869c7 {"md5": "e8ae442280b04b06cef95b19b1589b8e", "pid": "1257837826", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1257837826", "source": "GND"}], "variant_name": ["Hannah, James"], "preferred_name": "Hanna, James", "country_associated": "xxk", "variant_access_point": ["Hannah, James"], "authorized_access_point": "Hanna, James", "biographical_information": ["1786 Kapitän auf der Schnau \\"Sea Otter\\""]} 1 +2024-09-11 09:02:06.379602 2024-09-11 09:02:06.379607 80739701-81d0-4283-bc0b-74a4640189cf {"md5": "5a84c6c7b511bc4cab9ce19853e0f3ee", "pid": "1257931253", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1257931253", "source": "GND"}], "preferred_name": "Schmid, Anna Antonia", "country_associated": "gw", "authorized_access_point": "Schmid, Anna Antonia"} 1 +2024-09-11 09:02:06.43135 2024-09-11 09:02:06.431354 4f963f9c-5f1f-4b63-9fb8-8e9233a1f5f9 {"md5": "f43089e1b64ce084aff3a84292b07e94", "pid": "1258741997", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1258741997", "source": "GND"}], "preferred_name": "Balbino, Michelle Lucas Cardoso", "country_associated": "bl", "authorized_access_point": "Balbino, Michelle Lucas Cardoso"} 1 +2024-09-11 09:02:06.485074 2024-09-11 09:02:06.485077 6407d2a1-5e8d-425a-9588-967dc27de559 {"md5": "73a566055c6a43b8a7553c5f2f2ed05b", "pid": "1258782901", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1258782901", "source": "GND"}], "variant_name": ["4. Generalversammlung des Verbandes der Europäischen Landwirtschaft CEA", "Vierte Generalversammlung des Verbandes der Europäischen Landwirtschaft CEA"], "preferred_name": "Generalversammlung des Verbandes der Europäischen Landwirtschaft CEA, 4", "country_associated": "gw", "variant_access_point": ["4. Generalversammlung des Verbandes der Europäischen Landwirtschaft CEA", "Vierte Generalversammlung des Verbandes der Europäischen Landwirtschaft CEA"], "authorized_access_point": "Generalversammlung des Verbandes der Europäischen Landwirtschaft CEA, 4, 1952, Wiesbaden"} 1 +2024-09-11 09:02:06.54292 2024-09-11 09:02:06.542925 67b9b059-7595-4f3d-9a8e-3c97bfb537f1 {"md5": "701126e1c99d5733fd354fd2432f39f7", "pid": "1258808196", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1258808196", "source": "GND"}], "preferred_name": "Engelke, Wilfried", "country_associated": "xxu", "authorized_access_point": "Engelke, Wilfried"} 1 +2024-09-11 09:02:06.595062 2024-09-11 09:02:06.595066 66550108-567b-4c62-92cd-d63b47845584 {"md5": "e0d9aa39b43eddaa09fa5c8eebfec7ff", "pid": "125881336X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/125881336X", "source": "GND"}], "variant_name": ["Liang, B.", "Liang Bingqian", "Bingqian, Liang"], "preferred_name": "Liang, Bingqian", "country_associated": "cc", "variant_access_point": ["Liang, B.", "Liang Bingqian", "Bingqian, Liang"], "authorized_access_point": "Liang, Bingqian"} 1 +2024-09-11 09:02:06.645539 2024-09-11 09:02:06.645541 76acf2f5-3f9c-45ce-a744-fc8aca594158 {"md5": "529e36594030be6c7c92037251bd7c9d", "pid": "125904568", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["eng", "art"], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/125904568", "source": "GND"}], "variant_name": ["Andrews, S. P."], "date_of_birth": "22.03.1812", "date_of_death": "21.05.1886", "preferred_name": "Andrews, Stephen Pearl", "country_associated": "xxu", "variant_access_point": ["Andrews, S. P., 1812-1886"], "authorized_access_point": "Andrews, Stephen Pearl, 1812-1886", "biographical_information": ["erfand die Plansprache Alwato u. propagierte Pitman Shorthand Writing"]} 1 +2024-09-11 09:02:06.701863 2024-09-11 09:02:06.701867 07d88172-5bbb-4fd9-a122-a23feb8a3d7e {"md5": "49529ec2f1a221307898653a69bbb4bb", "pid": "1259359026", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1259359026", "source": "GND"}], "date_of_birth": "1960", "preferred_name": "Mallet, Thierry", "country_associated": "fr", "authorized_access_point": "Mallet, Thierry, 1960-"} 1 +2024-09-11 09:02:06.756508 2024-09-11 09:02:06.756512 6ea2707d-70c6-4823-9d7b-3680dbcdb8ff {"md5": "4ed4c78b4b699d16117f51e0b65095c0", "pid": "1259480860", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1259480860", "source": "GND"}], "preferred_name": "Schieren, Gisela", "country_associated": "gw", "authorized_access_point": "Schieren, Gisela"} 1 +2024-09-11 09:02:06.809479 2024-09-11 09:02:06.809483 458efc5b-4ae1-46fb-99a9-30f23c88e94f {"md5": "d9e9da4bd3130ead39d0c61d1123463d", "pid": "1259906620", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1259906620", "source": "GND"}], "variant_name": ["ʻAlam, Sardār ʻAlam", "علم, سردار علم"], "preferred_name": "ʿAlam, Sardār ʿAlam", "country_associated": "af", "variant_access_point": ["ʻAlam, Sardār ʻAlam", "علم, سردار علم"], "parallel_access_point": ["ʻAlam, Sardār ʻAlam", "علم, سردار علم"], "authorized_access_point": "ʿAlam, Sardār ʿAlam", "biographical_information": ["Afghanischer Historiker"]} 1 +2024-09-11 09:02:06.86531 2024-09-11 09:02:06.865315 1ce9b259-65cc-4a93-b88b-9363385d1ad4 {"md5": "6ba52d030da0cc11d3ccfc03bc9ccc0c", "pid": "1259930696", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1259930696", "source": "GND"}], "date_of_birth": "1956", "preferred_name": "Długajczyk, Beata", "country_associated": "pl", "authorized_access_point": "Długajczyk, Beata, 1956-"} 1 +2024-09-11 09:02:06.933711 2024-09-11 09:02:06.933716 7d971a02-63cd-4229-84d8-c16e254463e6 {"md5": "e469ead627bf663a2fce52eaa087483d", "pid": "1260402541", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1260402541", "source": "GND"}], "variant_name": ["Ščerbakov, Dmitrij", "Ščerbakov, D. A."], "preferred_name": "Ščerbakov, Dmitrij Andreevič", "country_associated": "ru", "variant_access_point": ["Ščerbakov, Dmitrij", "Ščerbakov, D. A."], "parallel_access_point": ["Щербаков, Дмитрий Андреевич"], "authorized_access_point": "Ščerbakov, Dmitrij Andreevič"} 1 +2024-09-11 09:02:06.989753 2024-09-11 09:02:06.989757 20fe6fba-f9c5-43c4-a439-5d5c4d4d2137 {"md5": "921fadb23b37548d2f91e585d5b8623b", "pid": "126093148", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/126093148", "source": "GND"}], "preferred_name": "Anlauft, Fritz", "authorized_access_point": "Anlauft, Fritz"} 1 +2024-09-11 09:02:07.070535 2024-09-11 09:02:07.070538 153c025c-e9ea-4745-a143-b703d018795b {"md5": "64a23a8bebcd4de5d64107725158c855", "pid": "126098190", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/126098190", "source": "GND"}], "preferred_name": "Bodewig, Josef", "authorized_access_point": "Bodewig, Josef"} 1 +2024-09-11 09:02:07.136479 2024-09-11 09:02:07.136482 129b876c-2081-4262-8efb-b746a42ebafa {"md5": "50683f1c726d2db06df90f5a3c55f1d7", "pid": "1260994147", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1260994147", "source": "GND"}], "preferred_name": "Feuardent, René", "country_associated": "sz", "authorized_access_point": "Feuardent, René", "biographical_information": ["Promotion an der Universität Genf"]} 1 +2024-09-11 09:02:07.188067 2024-09-11 09:02:07.18807 40e610ca-38c8-46d2-b60f-d6c119f17fae {"md5": "ebc8ee3799bb3cff1fe65ad9bd3ed7b6", "pid": "1261058550", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1261058550", "source": "GND"}], "variant_name": ["Willmann, Tim Alexander"], "preferred_name": "Willmann, Tim", "country_associated": "gw", "variant_access_point": ["Willmann, Tim Alexander"], "authorized_access_point": "Willmann, Tim"} 1 +2024-09-11 09:02:07.246067 2024-09-11 09:02:07.24607 a572ea43-3e26-4eea-b9ec-09c4a8d3a85c {"md5": "4700a86f4a607ef17bfc82b1dc26818e", "pid": "1261250842", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1261250842", "source": "GND"}], "preferred_name": "Heard, Wendy", "country_associated": "xxu", "authorized_access_point": "Heard, Wendy"} 1 +2024-09-11 09:02:07.298759 2024-09-11 09:02:07.298763 fd7fab0e-5b9e-4c10-963c-b1c60dcc741b {"md5": "22d91be5c6e8237a81d5bd3059482dc7", "pid": "1261260147", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1261260147", "source": "GND"}], "date_of_birth": "1996", "preferred_name": "Schreier, Andrea", "country_associated": "au", "authorized_access_point": "Schreier, Andrea, 1996-", "biographical_information": ["Dissertation, Ludwig-Maximilians-Universität München, 2022"]} 1 +2024-09-11 09:02:07.352024 2024-09-11 09:02:07.352028 31d1e9a7-d9ed-45cf-88b8-aa01db490082 {"md5": "7e2576bd55620abdd10aa21f19d755ff", "pid": "1261307364", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1261307364", "source": "GND"}], "preferred_name": "Currivean, Keith A.", "country_associated": "xxu", "authorized_access_point": "Currivean, Keith A.", "biographical_information": ["graduate of Southfield Christian School, Wheaton College, Eastern Michigan University ... ; degrees in music, theology, ..."]} 1 +2024-09-11 09:02:07.403646 2024-09-11 09:02:07.403649 ba146228-d4ff-41d2-9793-df45167e8c35 {"md5": "222ab33e45cd91f6082f95df290e6443", "pid": "126144060", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/126144060", "source": "GND"}], "date_of_birth": "08.05.1910", "date_of_death": "18.02.1998", "preferred_name": "Atorf, Walter", "country_associated": "gw", "authorized_access_point": "Atorf, Walter, 1910-1998"} 1 +2024-09-11 09:02:07.522491 2024-09-11 09:02:07.522494 2c72d4b4-9ef2-4385-b614-e10b7480ad7c {"md5": "38c6eeb4e9f88eb277650db565af8573", "pid": "1261941136", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1261941136", "source": "GND"}], "variant_name": ["Çerhî, Yaʻkûb", "Yaʻkûb-ı Çerhî, Mevlânâ", "Çerhî, Yaʻkûb, Mevlânâ", "Yakub Çerhi, Mevlana", "Çerhi, Yakub, Mevlana", "Yakub b. Osman b. Mahmud el-Çerhî el-Ğaznevî es-Serrezî", "Yaʻkûb b. Osman b. Mahmûd b. Muhammed b. Mahmûd el-Gaznevî", "Çerhî, Yaʻkûb b. Osman b. Mahmûd b. Muhammed b. Mahmûd el-Gaznevî Serrezî"], "date_of_death": "1447", "preferred_name": "Yaʻkûb-ı Çerhî", "country_associated": "af", "variant_access_point": ["Çerhî, Yaʻkûb, -1447", "Yaʻkûb-ı Çerhî, Mevlânâ, -1447", "Çerhî, Yaʻkûb, Mevlânâ, -1447", "Yakub Çerhi, Mevlana, -1447", "Çerhi, Yakub, Mevlana, -1447", "Yakub b. Osman b. Mahmud el-Çerhî el-Ğaznevî es-Serrezî, -1447", "Yaʻkûb b. Osman b. Mahmûd b. Muhammed b. Mahmûd el-Gaznevî, -1447", "Çerhî, Yaʻkûb b. Osman b. Mahmûd b. Muhammed b. Mahmûd el-Gaznevî Serrezî, -1447"], "authorized_access_point": "Yaʻkûb-ı Çerhî, -1447"} 1 +2024-09-11 09:02:07.583331 2024-09-11 09:02:07.583334 e006751c-cf23-42e1-8fb9-952927573bb4 {"md5": "2f9095131f7dceeda0a7d869b4bd4b07", "pid": "1262106486", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1262106486", "source": "GND"}], "variant_name": ["Moreira, Ramon Missias-"], "preferred_name": "Missias-Moreira, Ramon", "country_associated": "bl", "variant_access_point": ["Moreira, Ramon Missias-"], "authorized_access_point": "Missias-Moreira, Ramon"} 1 +2024-09-11 09:02:07.637053 2024-09-11 09:02:07.637058 9b8d939d-5025-4782-9d27-a53f8202a245 {"md5": "57a705a7ab9ed43ef4cc74d4c8c06a9f", "pid": "126221804", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/126221804", "source": "GND"}], "preferred_name": "Coppens, Armand", "authorized_access_point": "Coppens, Armand"} 1 +2024-09-11 09:02:07.693415 2024-09-11 09:02:07.693419 ccb5bcff-c209-42fe-b7bc-59dd1224117b {"md5": "eae348694651e19ab814e17ce6c675be", "pid": "1262395305", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1262395305", "source": "GND"}], "date_of_birth": "1936", "preferred_name": "Springinsfeld, Karl", "country_associated": "au", "authorized_access_point": "Springinsfeld, Karl, 1936-"} 1 +2024-09-11 09:02:07.770417 2024-09-11 09:02:07.77042 49e40ae7-887d-45ab-82e5-d0ebc9695a59 {"md5": "69afffae2f303989d078744f27480cf2", "pid": "1262411238", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1262411238", "source": "GND"}], "variant_name": ["International Conference on Swarm Intelligence, 13."], "preferred_name": "ICSI, 13.", "country_associated": "cc", "variant_access_point": ["International Conference on Swarm Intelligence, 13., 2022, Xi'an; Online"], "authorized_access_point": "ICSI, 13., 2022, Xi'an; Online"} 1 +2024-09-11 09:02:07.831611 2024-09-11 09:02:07.831615 91d0cfd5-01b6-4935-adc7-a1b128fd9f95 {"md5": "7044fd467a269db48ce95ef758d2024d", "pid": "1262517281", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1262517281", "source": "GND"}], "variant_name": ["Zhang, K.", "Zhang Keren", "Keren, Zhang"], "preferred_name": "Zhang, Keren", "country_associated": "cc", "variant_access_point": ["Zhang, K.", "Zhang Keren", "Keren, Zhang"], "authorized_access_point": "Zhang, Keren"} 1 +2024-09-11 09:02:07.883075 2024-09-11 09:02:07.883078 774d65ea-2b24-49db-82f6-e1e5e85c7397 {"md5": "5b4364077d5ba31bbb68f78aabd44df7", "pid": "12625639X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12625639X", "source": "GND"}], "preferred_name": "Backhaus, Emil", "authorized_access_point": "Backhaus, Emil"} 1 +2024-09-11 09:02:07.939693 2024-09-11 09:02:07.939696 071e5f71-e534-4141-a643-f62fbeb27550 {"md5": "33c8fbf6437118a299c5ea05c02a95a2", "pid": "1262993016", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1262993016", "source": "GND"}], "variant_name": ["Stöven, Inga Hillig-"], "preferred_name": "Hillig-Stöven, Inga", "country_associated": "gw", "variant_access_point": ["Stöven, Inga Hillig-"], "authorized_access_point": "Hillig-Stöven, Inga", "biographical_information": ["Dr., Biologin, Koordinatorin des Projektes \\"Mut wächst - Klimabewusstsein erden\\" im Frauenwerk der Nordkirche, Hauptbereich Generationen und Geschlechter"]} 1 +2024-09-11 09:02:08.012731 2024-09-11 09:02:08.012736 17946bbd-e012-4c15-83b5-6d00bc1b3178 {"md5": "b5ad93cec3b0900eb21620140df87df4", "pid": "1263532683", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["chi", "eng"], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1263532683", "source": "GND"}], "preferred_name": "Chen, Siran", "country_associated": "cc", "authorized_access_point": "Chen, Siran", "biographical_information": ["gnd3"]} 1 +2024-09-11 09:02:08.082013 2024-09-11 09:02:08.082017 f50a8ee8-c800-423f-98c0-ef333be273dc {"md5": "31ad8739d3c38d9cf102cdfc84401027", "pid": "1264061994", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1264061994", "source": "GND"}], "variant_name": ["Vej, L.", "Vej Lju", "Lju, Vej"], "preferred_name": "Vej, Lju", "country_associated": "ru", "variant_access_point": ["Vej, L.", "Vej Lju", "Lju, Vej"], "authorized_access_point": "Vej, Lju"} 1 +2024-09-11 09:02:08.144132 2024-09-11 09:02:08.144137 738f5c21-7452-4a2c-ade2-5321fdff66b0 {"md5": "54042bb125b257ac3dfa24fc4b2e05ff", "pid": "1264067003", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1264067003", "source": "GND"}], "date_of_birth": "1971", "preferred_name": "Cervantes, Pere", "country_associated": "sp", "authorized_access_point": "Cervantes, Pere, 1971-", "biographical_information": ["Studium der Rechtswissenschaften, als Soldat für die UN im Kosovo und die Europäische Union in Bosnien-Herzegowina tätig, wurde für seine Werke vielfach ausgezeichnet"]} 1 +2024-09-11 09:02:08.201708 2024-09-11 09:02:08.201713 a3b325d9-ce65-4ef9-87e1-f75c68c89550 {"md5": "f6149e3bc6880c537e5c4cd6821841dc", "pid": "126431582", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/126431582", "source": "GND"}], "preferred_name": "Moravce, Emanuela", "authorized_access_point": "Moravce, Emanuela"} 1 +2024-09-11 09:02:08.263111 2024-09-11 09:02:08.263114 0b635610-3d3f-40ec-a8ab-48b354912834 {"md5": "ad86e04983633824b7eac02cf2695aa4", "pid": "1265029369", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1265029369", "source": "GND"}], "preferred_name": "Bunt, Steffi", "country_associated": "gw", "authorized_access_point": "Bunt, Steffi"} 1 +2024-09-11 09:02:08.323995 2024-09-11 09:02:08.323998 e946649a-6177-4c78-9cb8-50a55272ce38 {"md5": "dcd8d46dfd696d6449ee4cd89a4af77a", "pid": "126590249", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/126590249", "source": "GND"}], "variant_name": ["Nazarevskij, A. A.", "Nazarevskiĭ, Aleksandr Adrianovich", "Nazarevskij, Aleksandr Adrianovič", "Nazarevskij, Aleksandr A.", "Nazarevsʹkyj, O.A.", "Nazarevskii, Aleksandr Adrianovich", "Nazarevsʹkyi, O.A.", "Nazarevskij, A.A.", "Nazarevsʹkyj, Oleksandr Adrianovyč"], "date_of_birth": "1887", "date_of_death": "1977", "preferred_name": "Nazarevʹskyj, Oleksandr A.", "country_associated": "ru", "variant_access_point": ["Nazarevskij, A. A., 1877-1977", "Nazarevskiĭ, Aleksandr Adrianovich, 1877-1977", "Nazarevskij, Aleksandr Adrianovič, 1877-1977", "Nazarevskij, Aleksandr A., 1877-1977", "Nazarevsʹkyj, O.A., 1877-1977", "Nazarevskii, Aleksandr Adrianovich, 1877-1977", "Nazarevsʹkyi, O.A., 1877-1977", "Nazarevskij, A.A., 1877-1977", "Nazarevsʹkyj, Oleksandr Adrianovyč, 1877-1977"], "parallel_access_point": ["Nazarevsʹkyi, O. A., 1877-1977"], "authorized_access_point": "Nazarevʹskyj, Oleksandr A., 1877-1977"} 1 +2024-09-11 09:02:08.380902 2024-09-11 09:02:08.380907 bfc64b58-ef2e-4acc-bfb3-dd41fdc27286 {"md5": "136329bf42ecc99869660917e2f92359", "pid": "126645590", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/126645590", "source": "GND"}], "preferred_name": "Olschwang, Irene", "authorized_access_point": "Olschwang, Irene"} 1 +2024-09-11 09:02:08.431532 2024-09-11 09:02:08.431537 38d1857b-a99f-4539-8ad6-b5779745a117 {"md5": "b0e35c9f0970e41118d1ea28a7266371", "pid": "126652902", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/126652902", "source": "GND"}], "preferred_name": "Mohr, Johann Georg", "authorized_access_point": "Mohr, Johann Georg"} 1 +2024-09-11 09:02:08.484892 2024-09-11 09:02:08.484895 7fe0efb1-91a4-4eed-a559-38d5b617d33a {"md5": "67173f14713041ef6b618aed1a048d8e", "pid": "126811846X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/126811846X", "source": "GND"}], "preferred_name": "Zalis, Zane", "country_associated": "xxc", "authorized_access_point": "Zalis, Zane"} 1 +2024-09-11 09:02:08.542061 2024-09-11 09:02:08.542065 7e798c51-3616-4f22-b683-fe815a2fd566 {"md5": "5c03ea4b2d5db0b098964107e7c42045", "pid": "1268485969", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1268485969", "source": "GND"}], "date_of_birth": "1982", "preferred_name": "Hamann, Alexander", "country_associated": "gw", "authorized_access_point": "Hamann, Alexander, 1982-"} 1 +2024-09-11 09:02:08.597393 2024-09-11 09:02:08.597397 c8e488bf-01f3-48eb-a7ba-caf86db01f37 {"md5": "7b53cef35482508d3e00a78b89970473", "pid": "12688790X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12688790X", "source": "GND"}], "date_of_birth": "05.02.1889", "date_of_death": "26.11.1962", "preferred_name": "Péquignot, Eugène", "country_associated": "sz", "authorized_access_point": "Péquignot, Eugène, 1889-1962"} 1 +2024-09-11 09:02:08.655928 2024-09-11 09:02:08.655931 cf09615f-c06a-4eab-9fdf-dc3eadf1e799 {"md5": "da586199582da3bcdc31004a2dcdefe5", "pid": "127018360", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/127018360", "source": "GND"}], "variant_name": ["Hanser, Richard F.", "Hanser, Richard Frederick", "Hanser, Richard Frederik"], "date_of_birth": "15.12.1909", "date_of_death": "XX.12.1981", "preferred_name": "Hanser, Richard", "country_associated": "xxu", "variant_access_point": ["Hanser, Richard F., 1909-1981", "Hanser, Richard Frederick, 1909-1981", "Hanser, Richard Frederik, 1909-1981"], "authorized_access_point": "Hanser, Richard, 1909-1981", "biographical_information": ["Während des Zweiten Weltkriegs Spezialist für psychologische Kriegsführung; publizierte insbes. zur Geschichte des Nationalsozialismus; auch Autor von Dokumentarfilmen"]} 1 +2024-09-11 09:02:08.705509 2024-09-11 09:02:08.705512 de90fa84-396c-41f1-85f4-bdc603baa2b3 {"md5": "08e51fdede13a0747a02bfbe868e4162", "pid": "1270306960", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1270306960", "source": "GND"}], "date_of_birth": "1966", "preferred_name": "Fiedrich, Frank", "country_associated": "gw", "authorized_access_point": "Fiedrich, Frank, 1966-", "biographical_information": ["Studium des Wirtschaftsingenieurwesens; Promotion an der TH Karlsruhe; Professor an der Bergischen Universität Wuppertal, Fakultät für Maschinenbau und Sicherheitstechnik.- Forschungsschwerpunkte: Sicheheitstechnik, Katastrophen- und Bevölkerungsschutz.-"]} 1 +2024-09-11 09:02:08.763102 2024-09-11 09:02:08.763106 335ac779-0100-4c48-97df-7da4a20d23f7 {"md5": "ac32daa7acbd3127b9699119013fe60b", "pid": "1270526294", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1270526294", "source": "GND"}], "date_of_birth": "28.05.1934", "preferred_name": "Haudry, Jean", "country_associated": "fr", "authorized_access_point": "Haudry, Jean, 1934-"} 1 +2024-09-11 09:02:08.818825 2024-09-11 09:02:08.818828 fe2143ac-e4a5-431b-98d8-e8d3bee40d2a {"md5": "cdf811567bdc74a5ad6bef8f2c2bca4d", "pid": "127202048", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/127202048", "source": "GND"}], "preferred_name": "Imrie, Alex", "authorized_access_point": "Imrie, Alex"} 1 +2024-09-11 09:02:08.866733 2024-09-11 09:02:08.866736 1d21ebd5-825c-423e-93a5-27ba61781bd3 {"md5": "37f2462b2abe15f6fd3c82b404e03558", "pid": "127205233", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "qualifier": "Gräfin von", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/127205233", "source": "GND"}], "variant_name": ["Dürniz, Gertrud von", "Dürniz, Gertrud P.-", "Podewils, Gertrudis", "Podevils-Dürniz, Gertrudis"], "date_of_birth": "16.12.1880", "date_of_death": "23.03.1963", "preferred_name": "Podewils-Dürniz, Gertrud, Gräfin von", "country_associated": "gw", "variant_access_point": ["Dürniz, Gertrud von, 1880-1963", "Dürniz, Gertrud P.-, 1880-1963", "Podewils, Gertrudis, 1880-1963", "Podevils-Dürniz, Gertrudis, 1880-1963"], "authorized_access_point": "Podewils-Dürniz, Gertrud, Gräfin von, 1880-1963"} 1 +2024-09-11 09:02:08.920202 2024-09-11 09:02:08.920205 9d68b1dd-86db-47da-aee2-0b601e040d9a {"md5": "b6bfda500e33f374d0d30e757b04cd53", "pid": "127283447", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/127283447", "source": "GND"}], "date_of_birth": "1926", "preferred_name": "Zbierski, Andrzej", "authorized_access_point": "Zbierski, Andrzej, 1926-"} 1 +2024-09-11 09:02:09.021593 2024-09-11 09:02:09.021596 63997ebc-c479-4ba3-90fe-bb1c6150e9b6 {"md5": "7afef508e17e13d2754db4d14ab062b4", "pid": "1273775546", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1273775546", "source": "GND"}], "variant_name": ["Xiaoliang, Lang", "Lang Xiaoliang"], "preferred_name": "Lang, Xiaoliang", "variant_access_point": ["Xiaoliang, Lang", "Lang Xiaoliang"], "authorized_access_point": "Lang, Xiaoliang"} 1 +2024-09-11 09:02:09.072514 2024-09-11 09:02:09.072517 98f7f063-8a73-4f35-814c-91dd3d9dbde2 {"md5": "11cdcb3b355bd6cf698345cb5865a61d", "pid": "127398538", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/127398538", "source": "GND"}], "preferred_name": "Turowski, Karl", "authorized_access_point": "Turowski, Karl"} 1 +2024-09-11 09:02:09.126003 2024-09-11 09:02:09.126007 3ab2678b-f487-4c82-b6e8-881e0a54336a {"md5": "18395ac002d5629c2bd88dd984af4bce", "pid": "12742508X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12742508X", "source": "GND"}], "preferred_name": "Bogsrud, Thorvald", "authorized_access_point": "Bogsrud, Thorvald"} 1 +2024-09-11 09:02:09.18065 2024-09-11 09:02:09.180653 42efbe40-959d-4948-b5ad-1d13ff117ddb {"md5": "9cc646eb945739319e26ba3bdb986d77", "pid": "127465680X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/127465680X", "source": "GND"}], "date_of_birth": "1993", "preferred_name": "Bender, Christian", "country_associated": "gw", "authorized_access_point": "Bender, Christian, 1993-"} 1 +2024-09-11 09:02:09.230942 2024-09-11 09:02:09.230946 c58cfd49-c573-43fe-a096-61b5f70f4058 {"md5": "1ad6957a7be6637860343d2f627ce2dc", "pid": "12747692X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12747692X", "source": "GND"}], "preferred_name": "Rastokin, P.", "authorized_access_point": "Rastokin, P."} 1 +2024-09-11 09:02:09.283562 2024-09-11 09:02:09.283565 8c53e917-1c6b-4d16-9378-c0da32b5bdfe {"md5": "10558b16bfa1ba9ab4731e404ab3afd9", "pid": "127496491", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/127496491", "source": "GND"}], "preferred_name": "Hecht, Gust.", "authorized_access_point": "Hecht, Gust."} 1 +2024-09-11 09:02:09.331024 2024-09-11 09:02:09.331027 f7ead4ae-0395-4dd3-9d9b-23bbf1dc6764 {"md5": "1ea4f83df32df04160ad804b8d8b4594", "pid": "127707255", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/127707255", "source": "GND"}], "preferred_name": "Daugavietis, Pēteris", "authorized_access_point": "Daugavietis, Pēteris"} 1 +2024-09-11 09:02:09.377144 2024-09-11 09:02:09.377147 3e642e30-cf3d-436d-84a4-2b9da065d8aa {"md5": "d1c5625fb648bf9164c2805a2d256d5e", "pid": "127714049", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/127714049", "source": "GND"}], "preferred_name": "Schunorth, Hans", "authorized_access_point": "Schunorth, Hans"} 1 +2024-09-11 09:02:09.432295 2024-09-11 09:02:09.432298 7461677c-b99b-451d-87f9-592e2ff3cdea {"md5": "c98b189f04a0c46ec5a638eeebc76544", "pid": "12771961X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12771961X", "source": "GND"}], "variant_name": ["LeHeux, Johan Willem Mirlaas"], "preferred_name": "Le Heux, Johan Willem Mirlaas", "variant_access_point": ["LeHeux, Johan Willem Mirlaas"], "authorized_access_point": "Le Heux, Johan Willem Mirlaas"} 1 +2024-09-11 09:02:09.483841 2024-09-11 09:02:09.483844 b5d5f03b-d95e-444c-aa16-f78dab194527 {"md5": "888e8ddab5021704caa9717dd190d804", "pid": "127772553", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/127772553", "source": "GND"}], "variant_name": ["Knippenberg, Josef"], "preferred_name": "Knippenberg, J.", "country_associated": "gw", "variant_access_point": ["Knippenberg, Josef"], "authorized_access_point": "Knippenberg, J."} 1 +2024-09-11 09:02:09.53669 2024-09-11 09:02:09.536694 ffbbae3a-18e1-40cf-95b4-c5a4bfd1b4be {"md5": "92ccc33fdd36dce637b9743eec292b60", "pid": "127836160", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/127836160", "source": "GND"}], "preferred_name": "Nessler, Carl", "authorized_access_point": "Nessler, Carl"} 1 +2024-09-11 09:02:09.584126 2024-09-11 09:02:09.584129 58b34b16-c034-4d1d-bc43-bdd0994bdc94 {"md5": "fe78aeb3f0a11961564697de604d4939", "pid": "1278368817", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1278368817", "source": "GND"}], "date_of_birth": "1974", "preferred_name": "Polsky, Stephanie", "country_associated": "xxk", "authorized_access_point": "Polsky, Stephanie, 1974-"} 1 +2024-09-11 09:02:09.634674 2024-09-11 09:02:09.634677 3573acbc-7c63-437c-b5ca-8234ac2c4b63 {"md5": "b35083eb4f38625aa7ba717b54443f29", "pid": "127845925", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/127845925", "source": "GND"}], "preferred_name": "Siemens, Martin", "authorized_access_point": "Siemens, Martin"} 1 +2024-09-11 09:02:09.684385 2024-09-11 09:02:09.684388 ecf27080-1de8-4453-9bbe-1b547dfe9c56 {"md5": "bae50303b96dbd909d0fb58821670bc2", "pid": "127857214", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/127857214", "source": "GND"}], "date_of_birth": "1896", "preferred_name": "Uloth, Robert", "authorized_access_point": "Uloth, Robert, 1896-"} 1 +2024-09-11 09:02:09.736935 2024-09-11 09:02:09.736938 94044200-f650-4183-b67b-70504e3855a5 {"md5": "9028c1516195e8a06da750fb2ef2415a", "pid": "12786959X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12786959X", "source": "GND"}], "variant_name": ["Krasny von Ergen, Arnold"], "date_of_birth": "07.01.1869", "date_of_death": "19.03.1937", "preferred_name": "Krasny, Arnold", "country_associated": "au", "variant_access_point": ["Krasny von Ergen, Arnold, 1869-1937"], "authorized_access_point": "Krasny, Arnold, 1869-1937"} 1 +2024-09-11 09:02:09.787366 2024-09-11 09:02:09.78737 11062a3e-787b-4b67-bbe3-6583b3199ef4 {"md5": "968073ab7f08d3068090a70cd810cd5c", "pid": "128016736", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128016736", "source": "GND"}], "variant_name": ["Stephen, A. M."], "preferred_name": "Stephen, Alexander Maitland", "variant_access_point": ["Stephen, A. M."], "authorized_access_point": "Stephen, Alexander Maitland"} 1 +2024-09-11 09:02:09.900277 2024-09-11 09:02:09.90028 38c84c50-8ca0-4155-b885-99a11e363321 {"md5": "f7a16fba45da292cdfc2e25d0b71fd56", "pid": "128190094", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128190094", "source": "GND"}], "preferred_name": "Lohniský, Karel", "authorized_access_point": "Lohniský, Karel"} 1 +2024-09-11 09:02:09.947906 2024-09-11 09:02:09.947908 e66630a5-5325-4bb8-8651-493bc930982a {"md5": "3e824e1c2055cbe05819a27d89bb1bfe", "pid": "128202432", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128202432", "source": "GND"}], "preferred_name": "Roško, Pavel", "authorized_access_point": "Roško, Pavel"} 1 +2024-09-11 09:02:09.993301 2024-09-11 09:02:09.993305 8ca1059c-def3-4fc9-ad68-693e2cf14b21 {"md5": "94d06c15f8f347ca0300ae5fb5db18e9", "pid": "128244224", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128244224", "source": "GND"}], "preferred_name": "Neuhöfer, Paul", "authorized_access_point": "Neuhöfer, Paul"} 1 +2024-09-11 09:02:10.046439 2024-09-11 09:02:10.046444 79b07901-b06d-4b1a-bb5a-5cde6cbd2253 {"md5": "0e16bc5ba4026a8282762e57c748dd8a", "pid": "128275022", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128275022", "source": "GND"}], "preferred_name": "Reckling, Karl-Heinz", "authorized_access_point": "Reckling, Karl-Heinz", "biographical_information": ["stellv. Stadtbezirksschulrat für Polytechnik und Berufsbildung"]} 1 +2024-09-11 09:02:10.096951 2024-09-11 09:02:10.096956 755722c6-c6b2-456c-ba12-904c5bf63613 {"md5": "ea1edabd92b489bbdcd4e1e61d70984d", "pid": "128320419", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128320419", "source": "GND"}], "preferred_name": "Charvet, Pierre Alexandre", "authorized_access_point": "Charvet, Pierre Alexandre"} 1 +2024-09-11 09:02:10.143287 2024-09-11 09:02:10.143292 89d2c444-041a-4f46-a49a-aa8607cd1067 {"md5": "8408f689866d63ea94a5afee44aa0d3d", "pid": "12833794X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12833794X", "source": "GND"}], "variant_name": ["Erman, E."], "preferred_name": "Erman, Elise", "variant_access_point": ["Erman, E."], "authorized_access_point": "Erman, Elise"} 1 +2024-09-11 09:02:10.200588 2024-09-11 09:02:10.200592 c31b09ba-6162-4311-ae7e-29ee13ad934b {"md5": "6cb3c8d609a8690b8a85a820fc8c0e0a", "pid": "128346280", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128346280", "source": "GND"}], "preferred_name": "Bühmann, Wilhelm", "authorized_access_point": "Bühmann, Wilhelm"} 1 +2024-09-11 09:02:10.25653 2024-09-11 09:02:10.256534 6ae8e2d7-17af-4f43-a620-9a78423d0383 {"md5": "5f8dd8b210b06638ccaaab6f68ef4ee4", "pid": "12837196X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12837196X", "source": "GND"}], "variant_name": ["Riedel, Nikolaus Walther", "Riedel, Nikolaus W."], "preferred_name": "Riedel, Nicolaus Walther", "variant_access_point": ["Riedel, Nikolaus Walther", "Riedel, Nikolaus W."], "authorized_access_point": "Riedel, Nicolaus Walther", "biographical_information": ["aus Nordhausen; Jurist; Respondent an der Univ. Leipzig"]} 1 +2024-09-11 09:02:10.309911 2024-09-11 09:02:10.309915 6910e875-5479-44e1-8404-90db46ec9996 {"md5": "fbb3f44af039ddffa8f95dc4b234ca50", "pid": "128387602", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128387602", "source": "GND"}], "date_of_birth": "1975", "preferred_name": "Deuschle, Karen", "authorized_access_point": "Deuschle, Karen, 1975-", "biographical_information": ["Diss. Biologie"]} 1 +2024-09-11 09:02:10.355984 2024-09-11 09:02:10.355987 4e3de96e-333b-4966-b8a4-b49918bb7ab7 {"md5": "b6edb1c0809d741cafc96130ec67000c", "pid": "128430613", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128430613", "source": "GND"}], "preferred_name": "Skog, Johannes Petrus", "authorized_access_point": "Skog, Johannes Petrus", "biographical_information": ["Respondent in Åbo"]} 1 +2024-09-11 09:02:10.402093 2024-09-11 09:02:10.402096 6ec56aff-35ac-44b6-ac66-ccb2cefd3559 {"md5": "bcb85341e905af54cad54af78817a3fc", "pid": "128437979", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128437979", "source": "GND"}], "variant_name": ["Pardee Winchester, Sarah"], "date_of_birth": "1837", "date_of_death": "1922", "preferred_name": "Winchester, Sarah Pardee", "country_associated": "xxu", "variant_access_point": ["Pardee Winchester, Sarah, 1837-1922"], "authorized_access_point": "Winchester, Sarah Pardee, 1837-1922"} 1 +2024-09-11 09:02:10.452643 2024-09-11 09:02:10.452646 1ffc35db-6b28-4265-afce-a9da87c6c512 {"md5": "ded10e9d73dfb27fef232649cd4fbb48", "pid": "128438185", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128438185", "source": "GND"}], "variant_name": ["Graichen, Patrick R."], "date_of_birth": "1972", "preferred_name": "Graichen, Patrick", "country_associated": "gw", "variant_access_point": ["Graichen, Patrick R., 1972-"], "authorized_access_point": "Graichen, Patrick, 1972-"} 1 +2024-09-11 09:02:10.511915 2024-09-11 09:02:10.511918 06841a91-dfef-4e9b-a3db-844691656377 {"md5": "1ad03636bef85a26cd63d1496c98ab21", "pid": "12849915X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12849915X", "source": "GND"}], "variant_name": ["Lichter, Eduard Nikolaus"], "date_of_birth": "XX.XX.1920", "date_of_death": "28.12.2009", "preferred_name": "Lichter, Eduard", "country_associated": "gw", "variant_access_point": ["Lichter, Eduard Nikolaus, 1920-2009"], "authorized_access_point": "Lichter, Eduard, 1920-2009", "biographical_information": ["Ehrenbürger von Welschbillig"]} 1 +2024-09-11 09:02:10.564511 2024-09-11 09:02:10.564515 b0d43774-b3c4-4c7c-8a6c-f5143441d71c {"md5": "3e5f68d8be36c69f8a513509e6053f3d", "pid": "128564520", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128564520", "source": "GND"}], "date_of_birth": "1966", "preferred_name": "Sporleder, Marc", "authorized_access_point": "Sporleder, Marc, 1966-", "biographical_information": ["Agrarwissenschaftler"]} 1 +2024-09-11 09:02:11.834241 2024-09-11 09:02:11.834246 9e36320b-233f-4e17-a356-7d5140df8d53 {"md5": "71953d667a2b2933827414cbdf9eed1a", "pid": "129685828", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129685828", "source": "GND"}], "date_of_birth": "1970", "preferred_name": "Hachmöller, Christoph Gerhard", "authorized_access_point": "Hachmöller, Christoph Gerhard, 1970-", "biographical_information": ["Diss. Medizinische Fakultät"]} 1 +2024-09-11 09:02:10.614824 2024-09-11 09:02:10.614827 1d06e61e-abef-4e60-b799-5c4e85c0150f {"md5": "d8ed3acec725d50c728ec74d4d1c3eb8", "pid": "128568763", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128568763", "source": "GND"}], "date_of_birth": "1968", "preferred_name": "Hauenschild, Katrin", "country_associated": "gw", "authorized_access_point": "Hauenschild, Katrin, 1968-", "biographical_information": ["Professorin für Grundschuldidaktik und Sachunterricht an der Universität Hildesheim; Forschungsschwerpunkte: Grundschuldidaktik, Sachunterricht, Umweltbildung, Bildung für nachhaltige Entwicklung, inter-/transkulturelle Bildung, Lehr-Lernforschung, Kindheitsforschung"]} 1 +2024-09-11 09:02:10.662899 2024-09-11 09:02:10.662903 f2eb8b15-b5f4-43a2-9325-31bea5d78b6e {"md5": "1c3230264869d86d090ed532d0c040b6", "pid": "128630450", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128630450", "source": "GND"}], "variant_name": ["Bundschuchius, Martinus"], "preferred_name": "Bundschuch, Martin", "variant_access_point": ["Bundschuchius, Martinus"], "authorized_access_point": "Bundschuch, Martin", "biographical_information": ["aus Weimar; Respondent an der Univ. Jena"]} 1 +2024-09-11 09:02:10.721467 2024-09-11 09:02:10.72147 de121de9-b8b0-4236-a0a6-29d109e87084 {"md5": "f6ca90760620b59cf71601dcb2d2202a", "pid": "12864852X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12864852X", "source": "GND"}], "date_of_birth": "1954", "preferred_name": "Schüßlburner, Josef", "country_associated": "gw", "authorized_access_point": "Schüßlburner, Josef, 1954-"} 1 +2024-09-11 09:02:10.772804 2024-09-11 09:02:10.772808 4403cca9-14ee-4708-83ce-804451744df4 {"md5": "24f5d9d44bf9ca5706e50f52debe478d", "pid": "128669993", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128669993", "source": "GND"}], "variant_name": ["Joschko, Sabine Bohnet-"], "date_of_birth": "1964", "preferred_name": "Bohnet-Joschko, Sabine", "country_associated": "gw", "variant_access_point": ["Joschko, Sabine Bohnet-, 1964-"], "authorized_access_point": "Bohnet-Joschko, Sabine, 1964-", "biographical_information": ["Professorin an der Universität Witten-Herdecke, Walcker Stiftungsprofessur für Management und Innovation im Gesundheitswesen", "Diss. Fachbereich Wirtschaftspolitik und Konjunkturforschung, Schwerpunkt Umweltkommunikation und politische Ökonomie des Umweltschutzes; Leiterin der Forschungsgruppe Nachhaltigkeit, Univ. Witten/Herdecke"]} 1 +2024-09-11 09:02:10.821861 2024-09-11 09:02:10.821864 4488319d-7925-48b4-8fae-5587e50f24a9 {"md5": "44fc4ff51264baf98dbc7696bba7e9e9", "pid": "128807954", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128807954", "source": "GND"}], "date_of_birth": "1971", "preferred_name": "Dreeskornfeld, Lars", "authorized_access_point": "Dreeskornfeld, Lars, 1971-", "biographical_information": ["Dipl.-Ing. Elektro- und Informationstechnik"]} 1 +2024-09-11 09:02:10.86974 2024-09-11 09:02:10.869742 6e48315b-3624-4312-b037-4406f90c148a {"md5": "77706f7c4019e8d4fa2a4e5a38899397", "pid": "128852690", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128852690", "source": "GND"}], "date_of_birth": "1975", "preferred_name": "Riegel, Stephanie", "authorized_access_point": "Riegel, Stephanie, 1975-", "biographical_information": ["Diss. Fachbereich Medizin"]} 1 +2024-09-11 09:02:10.92254 2024-09-11 09:02:10.922542 4fbf57c7-eef9-46d5-93dd-661f4a22b514 {"md5": "c9a258421348ad87f2cf5f2a84856844", "pid": "128887249", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128887249", "source": "GND"}], "variant_name": ["Jin-Ah Ahn", "Ahn, Jin-Ah"], "date_of_birth": "1969", "preferred_name": "An, Chin-a", "country_associated": "ko", "variant_access_point": ["Jin-Ah Ahn, 1969-", "Ahn, Jin-Ah, 1969-"], "authorized_access_point": "An, Chin-a, 1969-", "biographical_information": ["Korean. Komponistin"]} 1 +2024-09-11 09:02:10.979149 2024-09-11 09:02:10.979152 486e1152-c8df-4156-bda3-04cf667226da {"md5": "4e6fb145f6c01f5974cb30700904f88c", "pid": "128948426", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128948426", "source": "GND"}], "date_of_birth": "1880", "date_of_death": "1940", "preferred_name": "Lie, Jonas", "country_associated": "xxu", "authorized_access_point": "Lie, Jonas, 1880-1940", "biographical_information": ["Amerik. Maler, norweg. Herkunft"]} 1 +2024-09-11 09:02:11.029456 2024-09-11 09:02:11.029461 b0a324c1-d2ba-419c-89ea-c9b0bdedf91d {"md5": "7aa57d0dd5c05a0533a3ff9004c444fb", "pid": "128970790", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128970790", "source": "GND"}], "date_of_birth": "1941", "date_of_death": "2002", "preferred_name": "Ansorg, Peter", "country_associated": "gw", "authorized_access_point": "Ansorg, Peter, 1941-2002", "biographical_information": ["Dt. Chirurg, Hochschullehrer"]} 1 +2024-09-11 09:02:11.091445 2024-09-11 09:02:11.091449 24fc91fd-dcad-4648-86a4-f9b5f6932cf9 {"md5": "2702a6a98fa45b74fee65decb56a59f8", "pid": "128979852", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/128979852", "source": "GND"}], "variant_name": ["Braccio, Baglioni", "Braccio, dei Baglioni", "Balionius, Braccio", "Braccio, Balionius", "Dei Baglioni, Braccio"], "date_of_birth": "1419", "date_of_death": "1479", "preferred_name": "Baglioni, Braccio", "country_associated": "it", "variant_access_point": ["Braccio, Baglioni, 1419-1479", "Braccio, dei Baglioni, 1419-1479", "Balionius, Braccio, 1419-1479", "Braccio, Balionius, 1419-1479", "Dei Baglioni, Braccio, 1419-1479"], "authorized_access_point": "Baglioni, Braccio, 1419-1479", "biographical_information": ["teilweise zitiert mit Zählung \\"II.\\"; Italien. Condottiere und Staatsmann; führende Persönlichkeit der Stadt und Universität Perugia; Förderer bei der Einführung der Drucktechnik"]} 1 +2024-09-11 09:02:11.153423 2024-09-11 09:02:11.153426 16af5084-8bb9-40e8-896d-f42c6eb31b60 {"md5": "adbb978e8e8f0baa0e0750c726932444", "pid": "129020893", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129020893", "source": "GND"}], "date_of_birth": "1974", "preferred_name": "Höllermann, Stefan", "authorized_access_point": "Höllermann, Stefan, 1974-", "biographical_information": ["Diss. Fachbereich Wirtschaftswissenschaften"]} 1 +2024-09-11 09:02:16.074575 2024-09-11 09:02:16.07458 728e572f-25e5-4027-b3d8-b6cf22773daf {"md5": "3283f180559e4f9832da9da34f82d61d", "pid": "133362817", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133362817", "source": "GND"}], "date_of_birth": "1944", "preferred_name": "Johnson, John", "authorized_access_point": "Johnson, John, 1944-", "biographical_information": ["President of Coach Boxing, Inc."]} 1 +2024-09-11 09:02:11.203537 2024-09-11 09:02:11.203541 8b17d637-69eb-4d50-8351-7a764d861373 {"md5": "b43fe646f10da860da3a70ae8701eccb", "pid": "129048267", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129048267", "source": "GND"}], "variant_name": ["Johannes Franciscus, Pascalicus", "Pasqualigo, Giovanni Francesco", "Giovanni Francesco, Pasqualigo"], "date_of_birth": "ca. 15. Jh.", "preferred_name": "Pascalicus, Johannes Franciscus", "country_associated": "it", "variant_access_point": ["Johannes Franciscus, Pascalicus, ca. 15. Jh.", "Pasqualigo, Giovanni Francesco, ca. 15. Jh.", "Giovanni Francesco, Pasqualigo, ca. 15. Jh."], "authorized_access_point": "Pascalicus, Johannes Franciscus, ca. 15. Jh.", "biographical_information": ["aus Venedig; Italien. Dozent für Kirchenrecht in Padua"]} 1 +2024-09-11 09:02:11.254723 2024-09-11 09:02:11.254726 7743d933-6c48-4ba6-9a83-4bef81d38b5e {"md5": "2e4685dc561c139ef7fe13ee9211b100", "pid": "129097632", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129097632", "source": "GND"}], "date_of_birth": "1856", "date_of_death": "1934", "preferred_name": "Barnett, Jackson", "country_associated": "xxu", "authorized_access_point": "Barnett, Jackson, 1856-1934", "biographical_information": ["Angehöriger der Creek, reich geworden durch Ölfunde auf seinem Land"]} 1 +2024-09-11 09:02:11.303754 2024-09-11 09:02:11.303757 a7d2751d-7296-477e-acbe-bcf9de4f2432 {"md5": "3fd195b52879305b69318fbb494e1da5", "pid": "129154105", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129154105", "source": "GND"}], "date_of_birth": "1937", "preferred_name": "Borsodi, Ferenc", "country_associated": "hu", "authorized_access_point": "Borsodi, Ferenc, 1937-", "biographical_information": ["Ungar.-österr. Künstler"]} 1 +2024-09-11 09:02:11.354123 2024-09-11 09:02:11.354126 1cd5f329-b361-40e6-b7ed-1ab76f49c711 {"md5": "bde25fe93f0f2f65033e484500192810", "pid": "129227838", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129227838", "source": "GND"}], "preferred_name": "Geyer, Ludwig", "authorized_access_point": "Geyer, Ludwig", "biographical_information": ["Philologe"]} 1 +2024-09-11 09:02:11.401273 2024-09-11 09:02:11.401276 2e48f259-9bf7-4c56-b70d-e114bde17d35 {"md5": "6713dc6dd17719f89cb293c2fb3478d1", "pid": "129388084", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129388084", "source": "GND"}], "variant_name": ["Weaving, Rachel V."], "date_of_birth": "16.10.1947", "preferred_name": "Weaving, Rachel", "country_associated": "xxu", "variant_access_point": ["Weaving, Rachel V., 1947-"], "parallel_access_point": ["Weaving, Rachel, 1947-"], "authorized_access_point": "Weaving, Rachel, 1947-"} 1 +2024-09-11 09:02:11.454398 2024-09-11 09:02:11.454402 78b3449d-bd2d-4682-815a-f01dc4ef3708 {"md5": "7e83c4a8d6823feb8d778ad4a366d03c", "pid": "129446904", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129446904", "source": "GND"}], "variant_name": ["Xueli, Liu", "Xueli Liu"], "preferred_name": "Liu, Xueli", "variant_access_point": ["Xueli, Liu", "Xueli Liu"], "authorized_access_point": "Liu, Xueli", "biographical_information": ["Tätig an der University of California, Los Angeles, CA"]} 1 +2024-09-11 09:02:11.501973 2024-09-11 09:02:11.501976 5d9ee202-aadb-45c9-9a16-97037b2dcc0a {"md5": "9a3ed6130be758bf4dc0dc221f987064", "pid": "129475351", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129475351", "source": "GND"}], "date_of_birth": "1780", "preferred_name": "Kanzler, Josepha", "country_associated": "gw", "authorized_access_point": "Kanzler, Josepha, 1780-"} 1 +2024-09-11 09:02:11.549306 2024-09-11 09:02:11.549316 8ebbea42-1d66-44a8-be01-35582121318b {"md5": "d2793cbfd3a73d25b1a9810b173abbfe", "pid": "129504971", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129504971", "source": "GND"}], "variant_name": ["Eisemann, Josephus", "Eisemann, Iosephvs"], "preferred_name": "Eisemann, Joseph", "variant_access_point": ["Eisemann, Josephus", "Eisemann, Iosephvs"], "authorized_access_point": "Eisemann, Joseph", "biographical_information": ["Aus Oberlauda; 1796 in Würzburg Diss."]} 1 +2024-09-11 09:02:11.601066 2024-09-11 09:02:11.601069 0616bc6d-3ece-4df4-a25d-845f582130c0 {"md5": "67cc04b207adfb9d1c15e011b43ffe24", "pid": "129520896", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129520896", "source": "GND"}], "date_of_birth": "1926", "preferred_name": "Ap'rikean, Karpis", "country_associated": "ai", "parallel_access_point": ["Aprikian, Garbis, 1926-"], "authorized_access_point": "Ap'rikean, Karpis, 1926-", "biographical_information": ["Armen. Komponist und Chorleiter in Paris"]} 1 +2024-09-11 09:02:11.659974 2024-09-11 09:02:11.659978 7b36fd70-6070-40f0-b659-0f74afccdf5a {"md5": "b615f07c965ebc978d88943e660a9901", "pid": "129599646", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129599646", "source": "GND"}], "variant_name": ["MacLaughlin, John A.", "Mc Laughlin, John A.", "McLaughlin, John", "McLaughlin, John Adams", "Adams McLaughlin, John"], "date_of_birth": "1943", "preferred_name": "McLaughlin, John A.", "country_associated": "xxu", "variant_access_point": ["MacLaughlin, John A., 1943-", "Mc Laughlin, John A., 1943-", "McLaughlin, John, 1943-", "McLaughlin, John Adams, 1943-", "Adams McLaughlin, John, 1943-"], "authorized_access_point": "McLaughlin, John A., 1943-"} 1 +2024-09-11 09:02:11.713578 2024-09-11 09:02:11.713582 9bfaa721-e475-4d83-a5d2-83811f66fe49 {"md5": "900ad188465a8ae270832975ad64d1e6", "pid": "129608610", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129608610", "source": "GND"}], "variant_name": ["Müller, Friedrich Andreas Wilhelm"], "date_of_birth": "12.06.1861", "preferred_name": "Müller, Fritz", "country_associated": "gw", "variant_access_point": ["Müller, Friedrich Andreas Wilhelm, 1861-"], "authorized_access_point": "Müller, Fritz, 1861-"} 1 +2024-09-11 09:02:11.77254 2024-09-11 09:02:11.772544 877ee822-c712-4913-b569-f70a92a96112 {"md5": "dc731556affc17e9a74310189010fa3a", "pid": "129639109", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129639109", "source": "GND"}], "date_of_birth": "1975", "preferred_name": "Adam, Katja", "authorized_access_point": "Adam, Katja, 1975-", "biographical_information": ["Diss. Fachbereich Humanmedizin"]} 1 +2024-09-11 09:02:16.176916 2024-09-11 09:02:16.176919 c70bc3a6-08d9-4b0c-a2d1-1ede498234f8 {"md5": "67bae130caaed449ede15f70ae8c50eb", "pid": "133396223", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133396223", "source": "GND"}], "preferred_name": "Kronaus, Christina", "authorized_access_point": "Kronaus, Christina"} 1 +2024-09-11 09:02:11.888057 2024-09-11 09:02:11.888062 cf8c17a4-c7d4-4fb8-824a-1f4a723232c2 {"md5": "2841209abef2d692f51ef8d0ff113b45", "pid": "129727482", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129727482", "source": "GND"}], "variant_name": ["Langenschmidt, Georg", "Langschmied, Georg", "Langschmid, Georg", "Langschmidt, Georgius", "Langscheidt, Georg", "Langkschmit, Georgius", "Langkschmit, Georg", "Langkschmiet, Georgius", "Langkschmiet, Georg", "Lanksmiet, Georg", "Lanksmiet, Georgius", "Lanckschmidt, Georgius", "Langschmidius, Georgius", "G. L."], "preferred_name": "Langschmidt, Georg", "variant_access_point": ["Langenschmidt, Georg", "Langschmied, Georg", "Langschmid, Georg", "Langschmidt, Georgius", "Langscheidt, Georg", "Langkschmit, Georgius", "Langkschmit, Georg", "Langkschmiet, Georgius", "Langkschmiet, Georg", "Lanksmiet, Georg", "Lanksmiet, Georgius", "Lanckschmidt, Georgius", "Langschmidius, Georgius", "G. L."], "authorized_access_point": "Langschmidt, Georg", "biographical_information": ["Dt. ev. Theologe; Prof. phil. extraord. in Rostock; herzogl.-bischöfl. Hofprediger in Verden; 1623 Pastor in Warmsen"]} 1 +2024-09-11 09:02:11.953066 2024-09-11 09:02:11.953069 1a2a31a8-13bf-49eb-8aed-4a2f8b81ba03 {"md5": "5e13c608ce1c5fd77d979b4ae09b9054", "pid": "129803332", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129803332", "source": "GND"}], "variant_name": ["Safa, Haidar"], "date_of_birth": "1961", "preferred_name": "Ṣafā, Ḥaidar", "country_associated": "le", "variant_access_point": ["Safa, Haidar, 1961-"], "parallel_access_point": ["صفا، حيدر،, 1961-"], "authorized_access_point": "Ṣafā, Ḥaidar, 1961-", "biographical_information": ["Libanes. Maschinenbauingenieur, Deutschlehrer"]} 1 +2024-09-11 09:02:12.01362 2024-09-11 09:02:12.013623 d921b38e-a720-46bc-beb8-84b2dd098d10 {"md5": "16dfa94b6205534afb86f0e68577d803", "pid": "12981752X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12981752X", "source": "GND"}], "date_of_birth": "1943", "date_of_death": "2018", "preferred_name": "Jurjevics, Juris", "country_associated": "xxu", "authorized_access_point": "Jurjevics, Juris, 1943-2018", "biographical_information": ["Amerikan. Verleger; Schriftsteller"]} 1 +2024-09-11 09:02:12.070475 2024-09-11 09:02:12.070477 3e95694a-fec3-400c-ae6e-1f13ee294c48 {"md5": "03c0cb7cff763b60d462d06bf5ca6f6e", "pid": "129828866", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129828866", "source": "GND"}], "variant_name": ["Friedman, William F.", "Friedman, Wolfe Frederic", "Friedmann, Wolfe Frederic", "Friedmann, William Frederick", "Friedman, William"], "date_of_birth": "1891", "date_of_death": "1969", "preferred_name": "Friedman, William Frederick", "country_associated": "xxu", "variant_access_point": ["Friedman, William F., 1891-1969", "Friedman, Wolfe Frederic, 1891-1969", "Friedmann, Wolfe Frederic, 1891-1969", "Friedmann, William Frederick, 1891-1969", "Friedman, William, 1891-1969"], "authorized_access_point": "Friedman, William Frederick, 1891-1969", "biographical_information": ["Im Jahre 1896 änderte sich sein Name von Wolfe Frederic Friedman in William Frederick Friedman, da sein Vater amerikanischer Staatsbürger wurde", "Kryptologe, USA"]} 1 +2024-09-11 09:02:12.129969 2024-09-11 09:02:12.129972 946f0658-d55a-49b8-ba88-c478065acd61 {"md5": "ee8bbf505478c1fabb22450c7446aa5b", "pid": "129855863", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129855863", "source": "GND"}], "date_of_birth": "1938", "preferred_name": "Reeckmann, Sigrid", "country_associated": "gw", "authorized_access_point": "Reeckmann, Sigrid, 1938-"} 1 +2024-09-11 09:02:12.183138 2024-09-11 09:02:12.183142 2c50c3f8-cf0b-4556-aa73-6c6254df36df {"md5": "960efae437ee196dc199938b193789a3", "pid": "12988782X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/12988782X", "source": "GND"}], "variant_name": ["Feldman, Howard"], "date_of_birth": "ca. um 1940", "preferred_name": "Feldman, Howard A.", "country_associated": "xxu", "variant_access_point": ["Feldman, Howard, ca. um 1940-"], "authorized_access_point": "Feldman, Howard A., ca. um 1940-", "biographical_information": ["Amerikan. Kunstsammler, u.a. Kunstgewerbe, Volkskunst"]} 1 +2024-09-11 09:02:12.237864 2024-09-11 09:02:12.237867 26221f08-1e27-43cf-bd56-02444923a0f6 {"md5": "02c76f9dfe9035a131e4bfb636e6dcdb", "pid": "129888796", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129888796", "source": "GND"}], "variant_name": ["Krishen Khanna"], "date_of_birth": "1925", "preferred_name": "Khanna, Krishen", "country_associated": "ii", "variant_access_point": ["Krishen Khanna, 1925-"], "authorized_access_point": "Khanna, Krishen, 1925-", "biographical_information": ["Ind. Maler u. Literaturwiss.; born in 1925 in Lyallpur, Punjab; was a Rudyard Kipling scholar in England; grad. in English lit. fr. Govt. Coll., Lahore; a painter"]} 1 +2024-09-11 09:02:12.291757 2024-09-11 09:02:12.291762 3f287b84-0e12-4c2d-97d2-c23da40c6885 {"md5": "4bc981fd39b1bf52289276ba1a5443e6", "pid": "130000388", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/130000388", "source": "GND"}], "variant_name": ["Batzer, Anja"], "date_of_birth": "1965", "preferred_name": "Bickelhaupt, Anja", "variant_access_point": ["Batzer, Anja, 1965-"], "authorized_access_point": "Bickelhaupt, Anja, 1965-", "biographical_information": ["Ärztin"]} 1 +2024-09-11 09:02:12.41023 2024-09-11 09:02:12.410233 1b95c1c6-319d-4e72-9620-a7bd615fda28 {"md5": "ca31b5514480a7aed6c40f90c363ccf1", "pid": "130016985", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/130016985", "source": "GND"}], "date_of_birth": "1917", "preferred_name": "Nüesch, Johanna", "country_associated": "sz", "authorized_access_point": "Nüesch, Johanna, 1917-", "biographical_information": ["Schweizer Bibliothekarin, politisch-christlich engagiert"]} 1 +2024-09-11 09:02:12.465754 2024-09-11 09:02:12.465759 a9de743c-4154-4bb9-a029-2ec7cd757914 {"md5": "d4a3dcbd9a82e3f49fbc459b3a600a84", "pid": "130020001", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/130020001", "source": "GND"}], "variant_name": ["Rogers, Martha", "Rogers, Martha Elizabeth"], "date_of_birth": "1914", "date_of_death": "1994", "preferred_name": "Rogers, Martha E.", "country_associated": "xxu", "variant_access_point": ["Rogers, Martha, 1914-1994", "Rogers, Martha Elizabeth, 1914-1994"], "authorized_access_point": "Rogers, Martha E., 1914-1994", "biographical_information": ["Amerikan. Krankenpflegerin u. Ärztin, Prof. an d. Univ. New York"]} 1 +2024-09-11 09:02:12.539434 2024-09-11 09:02:12.539439 888b4e50-1b9a-4499-93d5-2af667bb1e8f {"md5": "2ccd576e116bc0165a9ea855dd565885", "pid": "130124648", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/130124648", "source": "GND"}], "variant_name": ["Ihori, T."], "date_of_birth": "1952", "preferred_name": "Ihori, Toshihiro", "country_associated": "ja", "variant_access_point": ["Ihori, T., 1952-"], "parallel_access_point": ["井堀, 利宏, 1952-"], "authorized_access_point": "Ihori, Toshihiro, 1952-", "biographical_information": ["National Gradual Institite for Policy Studies, Minato-ku, Tokyo", "Department of Economics, Metropolitan University, Tokyo", "Graduate School of Economics, University of Tokyo"]} 1 +2024-09-11 09:02:12.599309 2024-09-11 09:02:12.599312 fcfaec1e-eb96-4cce-94c6-0eddfcce006f {"md5": "23bcfc99890151c8a8be7e4d12be0561", "pid": "130141623", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/130141623", "source": "GND"}], "date_of_birth": "1958", "preferred_name": "Hajatpour, Reza", "country_associated": "ir", "authorized_access_point": "Hajatpour, Reza, 1958-", "biographical_information": ["geb. im Nordiran; Iranist; Professor am Lehrstuhl für Islamisch-Religiöse Studien an der Univ. Erlangen-Nürnberg"]} 1 +2024-09-11 09:02:12.666688 2024-09-11 09:02:12.666692 33a59be0-0be0-43b8-940a-41f894df4879 {"md5": "057216d18da2d5e678f67643ffb609db", "pid": "13022622X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13022622X", "source": "GND"}], "variant_name": ["Rottenhofer, Maria Helena", "Tetzel, Maria Helena"], "date_of_birth": "1672", "preferred_name": "Rottenhoffer, Maria Helena", "variant_access_point": ["Rottenhofer, Maria Helena, 1672", "Tetzel, Maria Helena, 1672"], "authorized_access_point": "Rottenhoffer, Maria Helena, 1672", "biographical_information": ["aus Nürnberg; Ehefrau des Christoph Nikolaus Rottenhoffer; Tochter des Philipp Jacob Tetzel"]} 1 +2024-09-11 09:02:12.744136 2024-09-11 09:02:12.74414 1af60469-c193-4852-87fa-a283104e6e02 {"md5": "d4fabac3f80f46d5793302542331a0d4", "pid": "130250473", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/130250473", "source": "GND"}], "date_of_birth": "1975", "preferred_name": "Suciu, Dan Michael", "authorized_access_point": "Suciu, Dan Michael, 1975-", "biographical_information": ["Diss. Fakultät für Klinische Medizin; aus Neumark, Rumänien"]} 1 +2024-09-11 09:02:12.807002 2024-09-11 09:02:12.807004 648c2e22-9a9d-4f72-a476-5fd712abdcbd {"md5": "80f5ccfad5e5034c04e8efae297f0a46", "pid": "130374520", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/130374520", "source": "GND"}], "date_of_birth": "1973", "preferred_name": "Wollert, Christiane", "authorized_access_point": "Wollert, Christiane, 1973-", "biographical_information": ["Diss. Fachbereich Innere Medizin"]} 1 +2024-09-11 09:02:12.858677 2024-09-11 09:02:12.858681 12dd976f-718c-40e9-aac0-b5e3072c3569 {"md5": "67690a7679bcfa5ffb37c26954934496", "pid": "130502642", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/130502642", "source": "GND"}], "variant_name": ["Lerch, S."], "date_of_birth": "1977", "preferred_name": "Lerch, Sven", "variant_access_point": ["Lerch, S., 1977-"], "authorized_access_point": "Lerch, Sven, 1977-", "biographical_information": ["Humanmediziner"]} 1 +2024-09-11 09:02:12.910141 2024-09-11 09:02:12.910145 3577cd61-9d5b-488d-9212-ff1e8657eccd {"md5": "df106c404a43fbc2e68899eb5baa2d51", "pid": "130556939", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/130556939", "source": "GND"}], "date_of_birth": "1968", "preferred_name": "Krüger, Olaf", "authorized_access_point": "Krüger, Olaf, 1968-", "biographical_information": ["Philosoph und Sozialwissenschaftler, Fachgebiet: Wirtschafts- und Verkehrsgeschichte; Dipl.-Kaufmann"]} 1 +2024-09-11 09:02:12.98402 2024-09-11 09:02:12.984025 dc10eaad-1050-4601-87ba-521894d2f048 {"md5": "820f30526a813e2af36e70704c1847a3", "pid": "130582883", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/130582883", "source": "GND"}], "preferred_name": "Nolte, Kristina", "authorized_access_point": "Nolte, Kristina", "biographical_information": ["Dr., Kommunikationswissenschaftlerin, Journalistin, Agenturchefin"]} 1 +2024-09-11 09:02:13.035303 2024-09-11 09:02:13.035306 184ee373-4e57-413d-86c5-a1dfd8932f7e {"md5": "863149f326b1e67dd07636ff57d590d1", "pid": "130677299", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/130677299", "source": "GND"}], "variant_name": ["Ming-Yuet, Kee"], "date_of_birth": "1952", "preferred_name": "Kee Ming-Yuet", "country_associated": "my", "variant_access_point": ["Ming-Yuet, Kee, 1952-"], "authorized_access_point": "Kee Ming-Yuet, 1952-", "biographical_information": ["Malaysische Sammlerin von Chinesischem Porzellan und Privatdozentin"]} 1 +2024-09-11 09:02:13.096507 2024-09-11 09:02:13.096511 2cbef26c-9e52-4045-9cc3-aecccb8d8303 {"md5": "fe485bdc0d0c8da4285ec99c60deaf88", "pid": "130859842", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/130859842", "source": "GND"}], "variant_name": ["Fischer, Maximilian"], "date_of_birth": "07.06.1929", "date_of_death": "15.06.2019", "preferred_name": "Fischer, Max", "country_associated": "au", "variant_access_point": ["Fischer, Maximilian, 1929-2019"], "authorized_access_point": "Fischer, Max, 1929-2019"} 1 +2024-09-11 09:02:13.157472 2024-09-11 09:02:13.157475 1fdd863f-4c59-4070-8c13-7a3aaf7c2d3f {"md5": "54b34dfb8a090725efa778d97c51f577", "pid": "130860557", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/130860557", "source": "GND"}], "date_of_birth": "1973", "preferred_name": "Rothfuss, Christian", "authorized_access_point": "Rothfuss, Christian, 1973-", "biographical_information": ["Diss. Wirtschaftswissenschaftliche Fakultät, Universität Würzburg"]} 1 +2024-09-11 09:02:13.214301 2024-09-11 09:02:13.214305 11e6e09e-58b8-4906-bd3b-51d5eb4fb636 {"md5": "776a9536b7e020cd21dbf62ced02c36b", "pid": "131284703", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/131284703", "source": "GND"}], "date_of_birth": "1946", "preferred_name": "Raich, Rita", "authorized_access_point": "Raich, Rita, 1946-"} 1 +2024-09-11 09:02:16.235152 2024-09-11 09:02:16.235156 7a6f4d8c-9809-414b-bd95-3af7862dc54d {"md5": "e6642bb9aa769c68b09db996781e688d", "pid": "133487342", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133487342", "source": "GND"}], "preferred_name": "O'Brien, Kathleen", "country_associated": "xxu", "authorized_access_point": "O'Brien, Kathleen", "biographical_information": ["Schriftstellerin, ursprünglich Fernsehkritikerin, lebt in den USA"]} 1 +2024-09-11 09:02:13.276151 2024-09-11 09:02:13.276154 32d2d0e9-203c-4cb3-8ebb-d07894cf660d {"md5": "d2de8e970e93ac244fe094b796264db5", "pid": "131443704", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/131443704", "source": "GND"}], "variant_name": ["Lanes, Scott F."], "date_of_birth": "ca. 20./21. Jh.", "preferred_name": "Lanes, Scott", "country_associated": "xxu", "variant_access_point": ["Lanes, Scott F., ca. 20./21. Jh."], "authorized_access_point": "Lanes, Scott, ca. 20./21. Jh."} 1 +2024-09-11 09:02:13.332668 2024-09-11 09:02:13.332672 9d6936f2-2d00-4fc0-89da-8e7ef5363f01 {"md5": "918f44b277cf9a205f55779f003a76ee", "pid": "131514059", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/131514059", "source": "GND"}], "date_of_birth": "1979", "preferred_name": "Kraemer, Rita Elisa Gloria Sophia Felicitad", "authorized_access_point": "Kraemer, Rita Elisa Gloria Sophia Felicitad, 1979-", "biographical_information": ["Diss. Medizinische Fakultät an der Universität Tübingen"]} 1 +2024-09-11 09:02:13.390539 2024-09-11 09:02:13.390542 551f5431-b436-425e-982b-30ae073e18e8 {"md5": "db5ebaa2422b5c60e7c2f3c49ddbcdce", "pid": "131564692", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/131564692", "source": "GND"}], "variant_name": ["Flohr, Haike"], "date_of_birth": "1971", "preferred_name": "Gröhn, Haike", "variant_access_point": ["Flohr, Haike, 1971-"], "authorized_access_point": "Gröhn, Haike, 1971-", "biographical_information": ["Ärztin"]} 1 +2024-09-11 09:02:13.446729 2024-09-11 09:02:13.446733 4c8f1b52-dc92-4472-8390-c8175fa55d1d {"md5": "d629b11e388fa7eb89a75e574499fa5c", "pid": "131638653", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/131638653", "source": "GND"}], "date_of_birth": "1857", "date_of_death": "1930", "preferred_name": "Gutmann, Max von", "country_associated": "au", "authorized_access_point": "Gutmann, Max von, 1857-1930", "biographical_information": ["Österr. Industrieller; Adeliger in Ostrau"]} 1 +2024-09-11 09:02:13.502471 2024-09-11 09:02:13.502473 d9a4ae36-6187-40c9-8ac6-bdcf83d50095 {"md5": "7568e23ffab2e2dbb210c96189413ca5", "pid": "131675907", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/131675907", "source": "GND"}], "variant_name": ["Avalos-Trigueros, Carolina", "Avalos, Carolina"], "preferred_name": "Avalos Trigueros, Carolina", "country_associated": "es", "variant_access_point": ["Avalos-Trigueros, Carolina", "Avalos, Carolina"], "authorized_access_point": "Avalos Trigueros, Carolina", "biographical_information": ["Salvadorian. Soziologin"]} 1 +2024-09-11 09:02:13.563755 2024-09-11 09:02:13.56376 5f4ec36e-29bd-414f-af04-8fae1dbd9e7c {"md5": "d003c0126d977adce520b07b368554cb", "pid": "131709550", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/131709550", "source": "GND"}], "preferred_name": "Khnell, Andreas", "authorized_access_point": "Khnell, Andreas", "biographical_information": ["Tenorist"]} 1 +2024-09-11 09:02:13.631908 2024-09-11 09:02:13.631912 dd0bb1a2-74ed-420d-9b4b-9a0f55caadd9 {"md5": "30e9c84d3e87b193fae590dab0ff473c", "pid": "131738631", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/131738631", "source": "GND"}], "date_of_birth": "1974", "preferred_name": "Nassiri, Parshasb", "authorized_access_point": "Nassiri, Parshasb, 1974-", "biographical_information": ["Diss. Med. Fak., Poliklinik für Kieferorthopädie; Zahnmediziner"]} 1 +2024-09-11 09:02:13.719501 2024-09-11 09:02:13.719504 cf333861-e230-4b33-9fd9-c9f67cbe7752 {"md5": "39c85c26d7d2b0fa8374857c0be4bd27", "pid": "13178918X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13178918X", "source": "GND"}], "variant_name": ["Selle, Bettina"], "date_of_birth": "1964", "preferred_name": "Schneider, Bettina", "country_associated": "gw", "variant_access_point": ["Selle, Bettina, 1964-"], "authorized_access_point": "Schneider, Bettina, 1964-", "biographical_information": ["Promotion 1992; tätig am Institut für Rechnungs- und Prüfungswesen der Universität Göttingen; Fachhochschule Aachen; Univ. Stuttgart"]} 1 +2024-09-11 09:02:13.78299 2024-09-11 09:02:13.782994 64df120b-0b15-4633-a3e0-649368833969 {"md5": "0e35f6bfff73687e2d15def206138546", "pid": "131792350", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/131792350", "source": "GND"}], "date_of_birth": "1961", "preferred_name": "Mishra, Omprakash", "country_associated": "ii", "authorized_access_point": "Mishra, Omprakash, 1961-", "biographical_information": ["Ind. Politologe. Professor of International Relations, Jadavpur University, Kolkata. Pro-Vice Chancellor of IGNOU, the largest University of the world, 23 July 2007-22 July 2010."]} 1 +2024-09-11 09:02:13.835519 2024-09-11 09:02:13.835521 49352b51-4b73-4d77-9b02-72faeff63541 {"md5": "a7878be6c451241e069e4a3da28ec294", "pid": "131812378", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/131812378", "source": "GND"}], "date_of_birth": "1939", "date_of_death": "2004", "preferred_name": "Artioli, Umberto", "country_associated": "it", "authorized_access_point": "Artioli, Umberto, 1939-2004", "biographical_information": ["Dozent der Universität Padua; Ital. Theaterwissenschaftler"]} 1 +2024-09-11 09:02:13.894135 2024-09-11 09:02:13.894139 63d95695-5bb1-425a-b458-eaf5e0328885 {"md5": "4aa59243253788817d442c1e592c9016", "pid": "13184248X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13184248X", "source": "GND"}], "date_of_birth": "1894", "date_of_death": "1915", "preferred_name": "Lugli, Aldo", "country_associated": "it", "authorized_access_point": "Lugli, Aldo, 1894-1915", "biographical_information": ["Ital. Maler"]} 1 +2024-09-11 09:02:13.94874 2024-09-11 09:02:13.948743 6a8253cd-620a-4082-9900-a331c72ab9fd {"md5": "144f06635916355aa2c211afe20366ab", "pid": "131856839", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/131856839", "source": "GND"}], "date_of_birth": "ca. um 1638", "preferred_name": "Päbl, Georg", "authorized_access_point": "Päbl, Georg, ca. um 1638", "biographical_information": ["Sänger"]} 1 +2024-09-11 09:02:14.008692 2024-09-11 09:02:14.008697 2d1fcc2f-efb3-44e1-bae0-67669bb4c3c7 {"md5": "90758f91bf8268783219793f13f8091b", "pid": "131896873", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/131896873", "source": "GND"}], "variant_name": ["Folayan Osagie, Iyunolu", "Osagie, Iyunolu"], "date_of_birth": "1960", "preferred_name": "Osagie, Iyunolu Folayan", "variant_access_point": ["Folayan Osagie, Iyunolu, 1960-", "Osagie, Iyunolu, 1960-"], "authorized_access_point": "Osagie, Iyunolu Folayan, 1960-", "biographical_information": ["Associate Professor of English, Pennsylvania State Univ."]} 1 +2024-09-11 09:02:14.06234 2024-09-11 09:02:14.062344 782a3a91-4592-499f-912b-d7043ff7cb70 {"md5": "9936a28145da84715363c930c9e4a879", "pid": "131898922", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/131898922", "source": "GND"}], "date_of_birth": "1968", "preferred_name": "Moskowitz, Marina", "country_associated": "xxk", "parallel_access_point": ["Moskowitz, Marina, 1968-"], "authorized_access_point": "Moskowitz, Marina, 1968-", "biographical_information": ["Tätig am Department of History, Univ. of Glasgow"]} 1 +2024-09-11 09:02:14.124552 2024-09-11 09:02:14.124557 faea5298-5578-4e2e-b7ca-365971fb7ac1 {"md5": "53506965758d67dffacecdba59753db5", "pid": "131915401", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/131915401", "source": "GND"}], "variant_name": ["Hulme, D."], "date_of_birth": "1952", "preferred_name": "Hulme, David", "country_associated": "xxk", "variant_access_point": ["Hulme, D., 1952-"], "authorized_access_point": "Hulme, David, 1952-", "biographical_information": ["Professor für Entwicklungsstudien an der Universität von Manchester", "Prof. of Development Studies; Inst. for Development Policy and Management, Univ. Manchester, UK; dir., Chronic Poverty Res. Ctr.; BA MA Cambridge, PhD JCU Queensland; res. interests: rural dev. pol. and plan.; poverty reduction strategies; finance for the poor; sociol. of dev.; role of community orgs. and NGOs; evaluation of tech. asst.; environ. mgmt.; public sector reform; country experience: Bangladesh, Belize, Hungary, India, Indonesia, Kenya, Malawi, Malaysia, Mexico, Nepal, Nigeria, Papua New Guinea, Solomon Islands, Sri Lanka, Tanzania, Uganda, Zimbabwe. Soziologe"]} 1 +2024-09-11 09:02:14.18501 2024-09-11 09:02:14.185014 fd49ee4e-4ee9-4798-a3a6-7a4b8ba934f8 {"md5": "c33399e556fa72fb7c84a38a3ef36f6b", "pid": "131930915", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/131930915", "source": "GND"}], "variant_name": ["Meyer, G."], "date_of_birth": "01.06.1949", "preferred_name": "Meyer, Gerd", "country_associated": "gw", "variant_access_point": ["Meyer, G., 1949-"], "parallel_access_point": ["Meyer, G., 1949-"], "authorized_access_point": "Meyer, Gerd, 1949-"} 1 +2024-09-11 09:02:14.237627 2024-09-11 09:02:14.23763 0a9c2e85-3381-4c76-874f-d42e9a6d201c {"md5": "fd07fb8c9d9b464b704a2c87dc6c2e0d", "pid": "132104784", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/132104784", "source": "GND"}], "variant_name": ["Morales, M. M.", "Morales, Martín"], "date_of_birth": "1953", "preferred_name": "Morales, Martín María", "country_associated": "ag", "variant_access_point": ["Morales, M. M., 1953-", "Morales, Martín, 1953-"], "authorized_access_point": "Morales, Martín María, 1953-", "biographical_information": ["argent. Jesuit, Direktor des Institutum Historicum Societatis Iesu, Rom"]} 1 +2024-09-11 09:02:14.289954 2024-09-11 09:02:14.289957 29342c20-593b-4481-b196-e38ef679c584 {"md5": "b282ea9b88e1dd287f503bf72a8290c1", "pid": "132266741", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/132266741", "source": "GND"}], "variant_name": ["Ittersum, Martine Julia van", "VanIttersum, Martine Julia", "Ittersum, Martine J. van", "Van Ittersum, Martine J."], "date_of_birth": "1968", "preferred_name": "Van Ittersum, Martine Julia", "variant_access_point": ["Ittersum, Martine Julia van, 1968-", "VanIttersum, Martine Julia, 1968-", "Ittersum, Martine J. van, 1968-", "Van Ittersum, Martine J., 1968-"], "parallel_access_point": ["Van Ittersum, Martine Julia, 1968-"], "authorized_access_point": "Van Ittersum, Martine Julia, 1968-"} 1 +2024-09-11 09:02:14.342241 2024-09-11 09:02:14.342245 9baaa6e7-bd41-49be-a0f7-f50ddd0cc342 {"md5": "cf697e4b5da4cbabd31b2805cc937295", "pid": "132272105", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/132272105", "source": "GND"}], "preferred_name": "Matthews, Gelien", "country_associated": "tr", "authorized_access_point": "Matthews, Gelien", "biographical_information": ["Caribbean Nazarene College, Trinidad and Tobago"]} 1 +2024-09-11 09:02:14.407099 2024-09-11 09:02:14.407104 70f80757-b356-4f78-b154-9e3bac964a85 {"md5": "734199f104d11d6e3d3509191475e50a", "pid": "132327147", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/132327147", "source": "GND"}], "preferred_name": "Ruff, Joshua", "country_associated": "xxu", "authorized_access_point": "Ruff, Joshua", "biographical_information": ["Curator at the Long Island Museum of American Art, History and Carriages"]} 1 +2024-09-11 09:02:14.483844 2024-09-11 09:02:14.483848 bfcccc6f-06b9-4ec2-bac7-48d76f797f87 {"md5": "fdfdeda43e9f4e9c4bf70e48272bdce3", "pid": "132373963", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/132373963", "source": "GND"}], "variant_name": ["Schultze, Otto Christoff", "Schultz, Otto Christoph", "Schultz, Otto Christoff", "Schulze, Otto Christoph", "Schulz, Otto Christoph"], "date_of_birth": "1658", "date_of_death": "05.10.1728", "preferred_name": "Schultze, Otto Christoph", "country_associated": "gw", "variant_access_point": ["Schultze, Otto Christoff, 1658-1728", "Schultz, Otto Christoph, 1658-1728", "Schultz, Otto Christoff, 1658-1728", "Schulze, Otto Christoph, 1658-1728", "Schulz, Otto Christoph, 1658-1728"], "authorized_access_point": "Schultze, Otto Christoph, 1658-1728", "biographical_information": ["Königl.-Großbritannischer Legationsrat; Kurfürstl.-Braunschweigischer Drost; Erb- und Gerichtsherr in Molsdorf (bei Erfurt), Dornheim und Ollendorf; in Molsdorf begraben"]} 1 +2024-09-11 09:02:14.553634 2024-09-11 09:02:14.553637 34d94a1c-31f6-4877-85f4-7bdde45f173e {"md5": "780744a0c1211c2fb5d63db4d2adaf75", "pid": "13246781X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13246781X", "source": "GND"}], "date_of_birth": "19.11.1950", "preferred_name": "Tophoven, Klaus", "authorized_access_point": "Tophoven, Klaus, 1950-", "biographical_information": ["Diss. Philosophische Fakultät, Univ. Münster (Westfalen)"]} 1 +2024-09-11 09:02:14.620716 2024-09-11 09:02:14.620721 2bc3eb50-6982-4f49-905e-de931520044c {"md5": "e13422f48a3ab26a809ab6c48c6b1601", "pid": "132490846", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/132490846", "source": "GND"}], "preferred_name": "Peters, Christian", "country_associated": "gw", "authorized_access_point": "Peters, Christian"} 1 +2024-09-11 09:02:14.686759 2024-09-11 09:02:14.686763 45059b37-6282-40b0-b4db-7dd9b2e4a912 {"md5": "e6d5cb8886b344b1c99f39f58b4257cb", "pid": "132503980", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/132503980", "source": "GND"}], "variant_name": ["Hancock, D."], "date_of_birth": "1938", "preferred_name": "Hancock, David", "variant_access_point": ["Hancock, D., 1938-"], "authorized_access_point": "Hancock, David, 1938-"} 1 +2024-09-11 09:02:14.763245 2024-09-11 09:02:14.763248 1d34418e-1c22-46da-9762-53f77b5bb107 {"md5": "d546476264b5cfbc4f8e977abd9a2e99", "pid": "132526808", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/132526808", "source": "GND"}], "variant_name": ["Crucius, Philipp", "La Croce, Philipp de", "LaCroce, Philipp de", "Croce, Philipp de la", "La Cruce, Philipp de", "LaCruce, Philipp de", "Cruce, Philipp de la", "La Crucis, Philipp de", "LaCrucis, Philipp de", "Crucis, Philipp de la"], "preferred_name": "Crucis, Philipp", "country_associated": "gw", "variant_access_point": ["Crucius, Philipp", "La Croce, Philipp de", "LaCroce, Philipp de", "Croce, Philipp de la", "La Cruce, Philipp de", "LaCruce, Philipp de", "Cruce, Philipp de la", "La Crucis, Philipp de", "LaCrucis, Philipp de", "Crucis, Philipp de la"], "authorized_access_point": "Crucis, Philipp"} 1 +2024-09-11 09:02:14.821238 2024-09-11 09:02:14.821242 4953fb49-de04-4113-9e05-328f499ddeff {"md5": "c13a6b69b159e5816ac35c2d2e51b48e", "pid": "132658941", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/132658941", "source": "GND"}], "date_of_birth": "1875", "date_of_death": "1945", "preferred_name": "Verazzi, Serafino", "country_associated": "it", "authorized_access_point": "Verazzi, Serafino, 1875-1945"} 1 +2024-09-11 09:02:14.879062 2024-09-11 09:02:14.879066 4ead81ad-4fee-40f6-9120-1a1ce67a9f65 {"md5": "b953496eb2deeab7004432b8f3635064", "pid": "132695405", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/132695405", "source": "GND"}], "variant_name": ["Stollen, Maria"], "preferred_name": "Wuniker, Maria", "variant_access_point": ["Stollen, Maria"], "authorized_access_point": "Wuniker, Maria", "biographical_information": ["aus Torgau"]} 1 +2024-09-11 09:02:14.936999 2024-09-11 09:02:14.937002 7e9250e1-1bd5-4707-8273-e9a0aeb5c154 {"md5": "a8fa6d97fe8626af3c76cb23e462c8ff", "pid": "132790912", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/132790912", "source": "GND"}], "variant_name": ["Wunderlich, Johannes Georgius", "Wunderlich, Ioannes Georgius"], "date_of_birth": "1734", "date_of_death": "1802", "preferred_name": "Wunderlich, Johann Georg", "variant_access_point": ["Wunderlich, Johannes Georgius, 1734-1802", "Wunderlich, Ioannes Georgius, 1734-1802"], "authorized_access_point": "Wunderlich, Johann Georg, 1734-1802", "biographical_information": ["Superintendent; Pfarrer und Heimatforscher in Wunsiedel"]} 1 +2024-09-11 09:02:14.997671 2024-09-11 09:02:14.997675 b634a8aa-cf40-4e0e-a565-0d262b065ee4 {"md5": "b5824c4ef1a0b5f37195c30dc84126df", "pid": "132825198", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/132825198", "source": "GND"}], "preferred_name": "Brocket, Ralph Grover", "country_associated": "xxu", "authorized_access_point": "Brocket, Ralph Grover"} 1 +2024-09-11 09:02:15.057883 2024-09-11 09:02:15.057886 984781be-3c82-4213-b51b-a5fa50751311 {"md5": "4eb80175c954c5cee736029a952b4163", "pid": "132828944", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/132828944", "source": "GND"}], "variant_name": ["Zirckel, Joannes Casparus", "Zirckel, Ioannes Casparus", "Zirckel, Johannes Caspar"], "preferred_name": "Zirckel, Johann Caspar", "variant_access_point": ["Zirckel, Joannes Casparus", "Zirckel, Ioannes Casparus", "Zirckel, Johannes Caspar"], "authorized_access_point": "Zirckel, Johann Caspar", "biographical_information": ["aus Haßfurt; 1694 Respondent (Theol.) in Würzburg"]} 1 +2024-09-11 09:02:15.113738 2024-09-11 09:02:15.113743 ff1fb931-8ce9-48fe-91fc-a93f8cdc5331 {"md5": "16e9b446cb6604dae95dde84ffe320cd", "pid": "132832860", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/132832860", "source": "GND"}], "date_of_birth": "1975", "preferred_name": "Knoll, Hartmut", "country_associated": "gw", "authorized_access_point": "Knoll, Hartmut, 1975-"} 1 +2024-09-11 09:02:15.18134 2024-09-11 09:02:15.181345 6e17dfdc-b9c6-4119-8c43-99c027a0c148 {"md5": "272a60927e8e71f5e4c4c8bbdb289eb4", "pid": "132857022", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "qualifier": "Familie", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/132857022", "source": "GND"}], "variant_name": ["Cieroccy, Familie"], "preferred_name": "Cierocki, Familie", "country_associated": "pl", "variant_access_point": ["Cieroccy, Familie"], "authorized_access_point": "Cierocki, Familie", "biographical_information": ["Poln. Familie"]} 1 +2024-09-11 09:02:15.251035 2024-09-11 09:02:15.251038 a334b423-3ceb-4cf8-ba4c-fad0fa5ea3a6 {"md5": "e524d131b609e26b9e16c08e8e867d0c", "pid": "132989719", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/132989719", "source": "GND"}], "variant_name": ["Cohen, Simon", "Kohen, Shimon"], "date_of_birth": "ca. Rishon LeZion", "preferred_name": "Cohen, Shimon", "variant_access_point": ["Cohen, Simon, 1937-", "Kohen, Shimon, 1937-"], "authorized_access_point": "Cohen, Shimon, 1937-", "biographical_information": ["israel. Komponist, Pianist, Dirigent, Arrangeur"]} 1 +2024-09-11 09:02:15.303557 2024-09-11 09:02:15.303562 3f37a90d-3c8d-43b7-a919-cf060080ecca {"md5": "40f021f3caaf2c13d76654bf429ea8a7", "pid": "13299495X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13299495X", "source": "GND"}], "variant_name": ["Otto, Bettina", "Otto, Bettina Jellouschek-"], "date_of_birth": "1956", "preferred_name": "Jellouschek-Otto, Bettina", "country_associated": "gw", "variant_access_point": ["Otto, Bettina, 1956-", "Otto, Bettina Jellouschek-, 1956-"], "authorized_access_point": "Jellouschek-Otto, Bettina, 1956-", "biographical_information": ["Germanistin, psycholog. Beraterin"]} 1 +2024-09-11 09:02:16.287259 2024-09-11 09:02:16.287263 7c2a3891-4e3d-416e-a2fb-144b23af2058 {"md5": "a8ffe2ae60e08684f774eb78aeac98fc", "pid": "13350171X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13350171X", "source": "GND"}], "variant_name": ["Hummel, Johannes"], "date_of_birth": "19.10.1893", "date_of_death": "XX.XX.1966", "preferred_name": "Hummel, Hans", "country_associated": "gw", "variant_access_point": ["Hummel, Johannes, 1893-1966"], "authorized_access_point": "Hummel, Hans, 1893-1966", "biographical_information": ["Generalsekretär des Landwirtschaftlichen Hauptverbandes für Württemberg und Hohenzollern, nach 1933 Prokurist, dann Direktor der Vereinigten Krankenversicherungs AG Berlin, 1949 Mitbegründer und Hauptgeschäftsführer des Dt. Bauernverbandes, Generalsekretär des Zentralausschusses der Deutschen Landwirtschaft, Großes Verdienstkreuz der Bundesrepublik"]} 1 +2024-09-11 09:02:15.362435 2024-09-11 09:02:15.362438 1b83e265-38a2-473a-85ae-7ed2ea39d19e {"md5": "8af49243c77dc1f27fd2dbe0148e62a1", "pid": "132999102", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/132999102", "source": "GND"}], "variant_name": ["Komissarževskij, Viktor Grigorevič", "Komissarževskij, Viktor Grigor'evič", "Komissarževskij, V. G.", "Komissarževskij, V.G.", "Komissarževskij, Viktor", "Komissarževskij, V.", "Komissarzhevskiĭ, Viktor G.", "Komissarzhevskiĭ, Viktor Grigorevich", "Komissarzhevskiĭ, V. G.", "Komissarzhevskiĭ, V.G.", "Komissarzhevskiĭ, Viktor", "Komissarzhevskiĭ, V.", "Komissarjevski, V."], "date_of_birth": "1912", "preferred_name": "Komissarževskij, Viktor G.", "variant_access_point": ["Komissarževskij, Viktor Grigorevič, 1912-", "Komissarževskij, Viktor Grigor'evič, 1912-", "Komissarževskij, V. G., 1912-", "Komissarževskij, V.G., 1912-", "Komissarževskij, Viktor, 1912-", "Komissarževskij, V., 1912-", "Komissarzhevskiĭ, Viktor G., 1912-", "Komissarzhevskiĭ, Viktor Grigorevich, 1912-", "Komissarzhevskiĭ, V. G., 1912-", "Komissarzhevskiĭ, V.G., 1912-", "Komissarzhevskiĭ, Viktor, 1912-", "Komissarzhevskiĭ, V., 1912-", "Komissarjevski, V., 1912-"], "authorized_access_point": "Komissarževskij, Viktor G., 1912-", "biographical_information": ["Russ. Theaterwissenschaftler"]} 1 +2024-09-11 09:02:15.419413 2024-09-11 09:02:15.419415 a882f89d-d14c-4e55-b4ef-2ca9d87ff8a3 {"md5": "5a660dc3b44bfa189d6606ac2ff8fd01", "pid": "133046567", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133046567", "source": "GND"}], "preferred_name": "Vossa, Hieronymus di", "country_associated": "gw", "authorized_access_point": "Vossa, Hieronymus di"} 1 +2024-09-11 09:02:15.48277 2024-09-11 09:02:15.482773 138ebed7-82ab-4861-b064-556475a56a95 {"md5": "547bc801a9dc963c21486651164cbe6d", "pid": "133056996", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133056996", "source": "GND"}], "variant_name": ["Bergeron, N."], "preferred_name": "Bergeron, Nicolas", "variant_access_point": ["Bergeron, N."], "authorized_access_point": "Bergeron, Nicolas"} 1 +2024-09-11 09:02:15.534577 2024-09-11 09:02:15.534579 86779275-aa05-4d32-abc1-b932a976fde7 {"md5": "254ab4922b70a2389b35a94f69ca30c3", "pid": "13308325X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13308325X", "source": "GND"}], "variant_name": ["Kückmann, Theresa I.", "Zahn, Theresa I."], "date_of_birth": "1980", "preferred_name": "Kückmann, Theresa Irene", "country_associated": "xxu", "variant_access_point": ["Kückmann, Theresa I., 1980-", "Zahn, Theresa I., 1980-"], "authorized_access_point": "Kückmann, Theresa Irene, 1980-", "biographical_information": ["Diss. Fachbereich Biochemie, Chemie und Pharmazie, Universität Frankfurt a.M."]} 1 +2024-09-11 09:02:15.588735 2024-09-11 09:02:15.58874 7358bf04-2e49-474f-9bd0-03d53344321e {"md5": "f46b207090ddf2d09fcfc7e99423cd4a", "pid": "133092852", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133092852", "source": "GND"}], "date_of_birth": "1974", "preferred_name": "Krauß, Gunnar", "authorized_access_point": "Krauß, Gunnar, 1974-"} 1 +2024-09-11 09:02:15.646438 2024-09-11 09:02:15.646441 f4cfaa2e-115d-4a7c-845e-ff560e7e7a67 {"md5": "ff087ddf9e6ccbc6ee6a6e6da59fc3b2", "pid": "133104567", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133104567", "source": "GND"}], "variant_name": ["Behr, Diederich", "Behr, Theodoricus", "Behre, Diederich", "Behren, Diederich"], "date_of_birth": "04.12.1575", "date_of_death": "02.12.1632", "preferred_name": "Behr, Dietrich", "country_associated": "gw", "variant_access_point": ["Behr, Diederich, 1575-1632", "Behr, Theodoricus, 1575-1632", "Behre, Diederich, 1575-1632", "Behren, Diederich, 1575-1632"], "authorized_access_point": "Behr, Dietrich, 1575-1632", "biographical_information": ["Fürstl. Braunschw. und Lüneb. Geheimer Kammerrat; Drost in Hoya"]} 1 +2024-09-11 09:02:15.701653 2024-09-11 09:02:15.701655 b3b8422a-262b-4033-b9a3-507d85230952 {"md5": "4081867abdf7e15181d1e0b07960f23a", "pid": "13311189X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13311189X", "source": "GND"}], "preferred_name": "Schlossarek, Othmar", "authorized_access_point": "Schlossarek, Othmar"} 1 +2024-09-11 09:02:15.781097 2024-09-11 09:02:15.7811 1d7a9629-c691-4cac-bf78-958dae92c566 {"md5": "35fad01823d1da0f0e7e882c018e19ca", "pid": "133130886", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133130886", "source": "GND"}], "date_of_birth": "1977", "preferred_name": "Quaas, Sebastian", "country_associated": "gw", "authorized_access_point": "Quaas, Sebastian, 1977-"} 1 +2024-09-11 09:02:15.83662 2024-09-11 09:02:15.836623 a60862aa-ec4b-490a-8264-ff4fe09fe725 {"md5": "7ddf465c0fbc2b8b8869cc327bddf48d", "pid": "133245187", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133245187", "source": "GND"}], "variant_name": ["Schouten, Matthijs", "Schouten, M.G.C."], "date_of_birth": "1952", "preferred_name": "Schouten, Matthijs G. C.", "country_associated": "ne", "variant_access_point": ["Schouten, Matthijs, 1952-", "Schouten, M.G.C., 1952-"], "authorized_access_point": "Schouten, Matthijs G. C., 1952-", "biographical_information": ["Bijzonder hoogleraar oecologie van het natuurherstel, Landbouwuniversiteit Wageningen, senior medewerker landschapsecologie en vegetatiekunde bij Staatsbosbheer"]} 1 +2024-09-11 09:02:15.892371 2024-09-11 09:02:15.892375 1218cc35-58bb-4102-8a6e-6ddbca6a973a {"md5": "263d48175a037d0240e4a919409220b9", "pid": "133255344", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133255344", "source": "GND"}], "date_of_birth": "07.03.1926", "preferred_name": "Kelly, Robert E.", "parallel_access_point": ["Kelly, Robert E., 1926-"], "authorized_access_point": "Kelly, Robert E., 1926-"} 1 +2024-09-11 09:02:15.9438 2024-09-11 09:02:15.943802 42fcb149-eedf-41e4-89d1-fdd19ee363d9 {"md5": "147d31b8d2249c4375f5b6324e98a11a", "pid": "133273407", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133273407", "source": "GND"}], "date_of_birth": "21.02.1966", "preferred_name": "Bulthaupt, Axel", "country_associated": "gw", "authorized_access_point": "Bulthaupt, Axel, 1966-", "biographical_information": ["Fernsehreporter, Kinderbuchautor"]} 1 +2024-09-11 09:02:15.998574 2024-09-11 09:02:15.99858 600bcff4-4586-4617-ad55-e15bde9c8da8 {"md5": "de664055c450754fc37ca29e463e9274", "pid": "133315681", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133315681", "source": "GND"}], "date_of_birth": "1949", "preferred_name": "Aronoff, Mark", "country_associated": "xxu", "authorized_access_point": "Aronoff, Mark, 1949-"} 1 +2024-09-11 09:02:16.33906 2024-09-11 09:02:16.339063 172b4511-a5a0-432a-8430-05c6c211a32b {"md5": "56a777166c4c288556e284824966ee6d", "pid": "13355757X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13355757X", "source": "GND"}], "variant_name": ["Cloonan, Michèle V."], "date_of_birth": "14.07.1955", "preferred_name": "Cloonan, Michèle Valerie", "country_associated": "xxu", "variant_access_point": ["Cloonan, Michèle V., 1955-"], "parallel_access_point": ["Cloonan, Miche`le Valerie, 1955-"], "authorized_access_point": "Cloonan, Michèle Valerie, 1955-", "biographical_information": ["Dekanin und Professorin an der Graduate School of Library & Information Science, Simmons College, Boston"]} 1 +2024-09-11 09:02:16.40047 2024-09-11 09:02:16.400474 55171c1b-3fb7-4c78-9abd-a57c23394479 {"md5": "759dfd56cb33ecc3de315522e492b0df", "pid": "133592316", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133592316", "source": "GND"}], "variant_name": ["Banks", "Banks, Anthony George"], "date_of_birth": "1950", "preferred_name": "Banks, Tony", "country_associated": "xxk", "variant_access_point": ["Banks, 1950-", "Banks, Anthony George, 1950-"], "parallel_access_point": ["Banks, Tony, 1950-"], "authorized_access_point": "Banks, Tony, 1950-"} 1 +2024-09-11 09:02:16.458855 2024-09-11 09:02:16.458859 330ddf0a-c919-401a-b245-4f0e07925226 {"md5": "294fcbccf7e13088e093e0e06a6a0225", "pid": "133685624", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133685624", "source": "GND"}], "variant_name": ["Porre, James de", "De Porre, James", "Revshark Deporre, James", "DePorre, James L."], "preferred_name": "DePorre, James", "country_associated": "xxu", "variant_access_point": ["Porre, James de", "De Porre, James", "Revshark Deporre, James", "DePorre, James L."], "authorized_access_point": "DePorre, James"} 1 +2024-09-11 09:02:16.508568 2024-09-11 09:02:16.508572 a5ba06f1-2de8-41e5-8263-2133faae0f68 {"md5": "c2f3d0e23d709438f43755b5b6ee3e2f", "pid": "133715671", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133715671", "source": "GND"}], "variant_name": ["Bäsch, Lorenz", "Basch, Lorenz", "Bausch, Lorenz"], "date_of_death": "1580", "preferred_name": "Baisch, Lorenz", "country_associated": "gw", "variant_access_point": ["Bäsch, Lorenz, -1580", "Basch, Lorenz, -1580", "Bausch, Lorenz, -1580"], "authorized_access_point": "Baisch, Lorenz, -1580"} 1 +2024-09-11 09:02:16.560461 2024-09-11 09:02:16.560466 4c805666-d9d5-4b5a-9a6d-d144352304af {"md5": "b8796ee2c086d1e2027e22e182df2690", "pid": "133748294", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133748294", "source": "GND"}], "preferred_name": "Scharf, Roman", "authorized_access_point": "Scharf, Roman"} 1 +2024-09-11 09:02:16.60919 2024-09-11 09:02:16.609194 bb0bb626-7377-492b-9b3d-7c78745bc8fd {"md5": "3f5a9529da55b52ddb5659f01e336f7c", "pid": "133767183", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133767183", "source": "GND"}], "date_of_birth": "19.08.1941", "preferred_name": "Novak, David", "country_associated": "xxc", "authorized_access_point": "Novak, David, 1941-", "biographical_information": ["PhD in philosophy, Georgetown University, 1971. Professor of Religion and Philosophy in the University of Toronto, 1997-. Professor of Modern Judaic Studies, University of Virginia, 1989-1996"]} 1 +2024-09-11 09:02:16.666477 2024-09-11 09:02:16.666482 85828bf1-c2d1-43f2-9b24-f6d512a1f149 {"md5": "b160cb3bcdfbf313fe3b4a1571adbe33", "pid": "133999912", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133999912", "source": "GND"}], "variant_name": ["Batissier, L.", "Batissier, Yves Louis Joseph", "Batissier, Yves-Louis-Joseph"], "date_of_birth": "1813", "date_of_death": "1882", "preferred_name": "Batissier, Louis", "country_associated": "fr", "variant_access_point": ["Batissier, L., 1813-1882", "Batissier, Yves Louis Joseph, 1813-1882", "Batissier, Yves-Louis-Joseph, 1813-1882"], "authorized_access_point": "Batissier, Louis, 1813-1882", "biographical_information": ["Inspecteur de monuments historiques de l'Allier. - Chargé de mission en Grèce, Syrie et Asie Mineure. - Vice-consul de France à Suez"]} 1 +2024-09-11 09:02:16.729032 2024-09-11 09:02:16.729037 67693931-8466-4f5c-a03a-601c96426e83 {"md5": "2db2a368633c1c667388ea4ad2a4cace", "pid": "134089316", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134089316", "source": "GND"}], "variant_name": ["Cissarz, Johannes", "Cissarz, Johannes Joseph Vincenz", "Cissarz, Johann V.", "Cissarz, Johann Vinzenz", "Cissarz, J. V.", "Cissarz, I. V.", "Cissarz", "J. V. C.", "JVC"], "date_of_birth": "22.01.1873", "date_of_death": "22.12.1942", "preferred_name": "Cissarz, Johann Vincenz", "country_associated": "gw", "variant_access_point": ["Cissarz, Johannes, 1873-1942", "Cissarz, Johannes Joseph Vincenz, 1873-1942", "Cissarz, Johann V., 1873-1942", "Cissarz, Johann Vinzenz, 1873-1942", "Cissarz, J. V., 1873-1942", "Cissarz, I. V., 1873-1942", "Cissarz, 1873-1942", "J. V. C., 1873-1942", "JVC, 1873-1942"], "parallel_access_point": ["Cissarz, J. V., 1873-1942"], "authorized_access_point": "Cissarz, Johann Vincenz, 1873-1942"} 1 +2024-09-11 09:02:16.783679 2024-09-11 09:02:16.783684 05dcc016-7a31-4a84-872b-104272034dac {"md5": "adf8a5dc171317d8ab7e81254de4fed8", "pid": "134092147", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134092147", "source": "GND"}], "preferred_name": "Vantard, Amélie", "country_associated": "fr", "authorized_access_point": "Vantard, Amélie"} 1 +2024-09-11 09:02:16.842273 2024-09-11 09:02:16.842277 cd2ec064-35c6-4365-86a6-f9fe58bb2dec {"md5": "e3520cdc91265a5efea60161f5c5eddd", "pid": "13416492X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13416492X", "source": "GND"}], "preferred_name": "Kirchmayer, Dieter", "authorized_access_point": "Kirchmayer, Dieter", "biographical_information": ["Wiener Neustadt, Fachhochschul-Studiengang Präzisions-, System- und Informationstechnik, Dipl.-Arb., 2001"]} 1 +2024-09-11 09:02:16.89659 2024-09-11 09:02:16.896594 587e6b03-3fc8-4372-85f4-e9e6743a1250 {"md5": "70dcf463a98d50a30ddf1a397f4e646c", "pid": "134204603", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134204603", "source": "GND"}], "date_of_birth": "1971", "preferred_name": "Bisseleua, Daghela Hervé Bertin", "authorized_access_point": "Bisseleua, Daghela Hervé Bertin, 1971-", "biographical_information": ["Diss. Fakultät für Agrarwissenschaften, Georg-August-Universität Göttingen"]} 1 +2024-09-11 09:02:16.949109 2024-09-11 09:02:16.949112 f477cd79-3103-4067-9526-7f343cfb85f0 {"md5": "45ea8e00d7936ef6e34af65b193a2f3a", "pid": "134274458", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134274458", "source": "GND"}], "preferred_name": "Obi, Ajuruchukwu", "authorized_access_point": "Obi, Ajuruchukwu", "biographical_information": ["Ass. Prof. in the Department of Agricultural Economics and Extension, University of Fort Hare in Alice, South Africa; tätig bei der International Labour Organisation; tätig beim the United Nations Development Programme und den United Nations Volunteers"]} 1 +2024-09-11 09:02:17.003213 2024-09-11 09:02:17.003216 1dabd35b-52f3-4c5e-b527-9793b89ec90d {"md5": "9a1e80152d1c9467649595dfb92959e3", "pid": "134311086", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134311086", "source": "GND"}], "date_of_birth": "1938", "preferred_name": "Adcock, Eddie", "country_associated": "xxu", "authorized_access_point": "Adcock, Eddie, 1938-"} 1 +2024-09-11 09:02:17.056155 2024-09-11 09:02:17.056158 b229e41a-ef22-44ba-95e3-637bd23db811 {"md5": "b04533649b2eb343ea8042b2d8396a24", "pid": "134321707", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134321707", "source": "GND"}], "variant_name": ["Ayres, Reginald B.-", "Ayres, Reginald Barrett-"], "date_of_birth": "07.05.1920", "preferred_name": "Barrett-Ayres, Reginald", "country_associated": "xxk", "variant_access_point": ["Ayres, Reginald B.-, 1920-", "Ayres, Reginald Barrett-, 1920-"], "authorized_access_point": "Barrett-Ayres, Reginald, 1920-"} 1 +2024-09-11 09:02:17.11302 2024-09-11 09:02:17.113023 b53550de-e644-4d0a-9014-55fb5ee183c9 {"md5": "0901be325807428e98865c84fc19f4b3", "pid": "134449002", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134449002", "source": "GND"}], "preferred_name": "Ludes, Peter", "authorized_access_point": "Ludes, Peter"} 1 +2024-09-11 09:02:17.165053 2024-09-11 09:02:17.165057 80162bd1-5ee9-4018-a22a-e7fd4503956b {"md5": "a6b1189b749dae5751ee29fbe0d4afd7", "pid": "134454901", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134454901", "source": "GND"}], "preferred_name": "Marcinkowska, Barbara", "authorized_access_point": "Marcinkowska, Barbara"} 1 +2024-09-11 09:02:17.220256 2024-09-11 09:02:17.220258 9f0f1d96-555c-40d0-ae88-66e9fecbf530 {"md5": "e62b425320dd60cf3334fe99423938cb", "pid": "134538099", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134538099", "source": "GND"}], "variant_name": ["Theimer, Thorsten Uwe", "Theimer, Thorsten U.", "Theimer, Thorsten", "Theimer, Th. Uwe"], "date_of_birth": "09.07.1944", "preferred_name": "Theimer, Uwe", "country_associated": "au", "variant_access_point": ["Theimer, Thorsten Uwe, 1944-", "Theimer, Thorsten U., 1944-", "Theimer, Thorsten, 1944-", "Theimer, Th. Uwe, 1944-"], "authorized_access_point": "Theimer, Uwe, 1944-", "biographical_information": ["österr. Dirigent, Musiker ; Professor am Institut für Gesang und Musiktheater an der Universität für Musik und darstellende Kunst Wien"]} 1 +2024-09-11 09:02:17.284588 2024-09-11 09:02:17.28459 45870372-505c-4714-8fda-08dcc3e562f5 {"md5": "e1b26fcf926d00e72fcad1f38cd0a19d", "pid": "134550412", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134550412", "source": "GND"}], "date_of_birth": "19XX", "preferred_name": "Walter, Peter", "authorized_access_point": "Walter, Peter, 19XX-"} 1 +2024-09-11 09:02:17.344965 2024-09-11 09:02:17.344969 51b84e96-b5ba-4ac7-9450-b7e5099d42d2 {"md5": "e6674b27f9ebce16312c88c17b927881", "pid": "134563166", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134563166", "source": "GND"}], "date_of_birth": "10.11.1939", "date_of_death": "01.02.2014", "preferred_name": "Zacher, Peter", "country_associated": "gw", "authorized_access_point": "Zacher, Peter, 1939-2014", "biographical_information": ["Musikkritiker u. Kommunalpolitiker; ab 1960 in Dresden."]} 1 +2024-09-11 09:02:17.406835 2024-09-11 09:02:17.406841 e0c627bc-2110-4bf9-84d4-85808d7dbd7b {"md5": "f76563b130565f05fafb979b3aeea7dc", "pid": "134574079", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134574079", "source": "GND"}], "date_of_birth": "1715", "date_of_death": "1783", "preferred_name": "Nares, James", "country_associated": "xxk", "authorized_access_point": "Nares, James, 1715-1783", "biographical_information": ["Brit. Komponist und Organist"]} 1 +2024-09-11 09:02:17.46664 2024-09-11 09:02:17.466644 96e40b13-ad6f-4979-ab1b-dce394191063 {"md5": "4b9731ca74f06325780d99be4478fe07", "pid": "134583337", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134583337", "source": "GND"}], "preferred_name": "Burian, Peter", "authorized_access_point": "Burian, Peter"} 1 +2024-09-11 09:02:17.530137 2024-09-11 09:02:17.53014 710492fe-c924-4ede-84f1-1ec7433b0543 {"md5": "96248dd6111a27ab960ce6f218fae32b", "pid": "134588959", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134588959", "source": "GND"}], "variant_name": ["Norum, John T."], "preferred_name": "Norum, John", "variant_access_point": ["Norum, John T."], "authorized_access_point": "Norum, John"} 1 +2024-09-11 09:02:17.605636 2024-09-11 09:02:17.605639 c25cb150-57f9-4760-b653-eeafeee802a0 {"md5": "ebcaec8941d580f9eae1ca2e7e87a162", "pid": "134590481", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134590481", "source": "GND"}], "date_of_birth": "1954", "preferred_name": "Mazé, Philippe", "country_associated": "fr", "authorized_access_point": "Mazé, Philippe, 1954-"} 1 +2024-09-11 09:02:17.663722 2024-09-11 09:02:17.663726 a4f9faab-d1c7-4717-95a8-376c43fe237e {"md5": "e58b1a4be58174628a5dffd84ba10e2b", "pid": "134591968", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134591968", "source": "GND"}], "variant_name": ["Gielgud, John, Sir", "Gielgud, Arthur John", "Gilguds, Džons", "Gilgud, Džon", "Гилгуд, Джон", "Гилгуд, Џон"], "date_of_birth": "14.04.1904", "date_of_death": "21.05.2000", "preferred_name": "Gielgud, John", "country_associated": "xxk", "variant_access_point": ["Gielgud, John, Sir, 1904-2000", "Gielgud, Arthur John, 1904-2000", "Gilguds, Džons, 1904-2000", "Gilgud, Džon, 1904-2000", "Гилгуд, Джон, 1904-2000", "Гилгуд, Џон, 1904-2000"], "authorized_access_point": "Gielgud, John, 1904-2000", "biographical_information": ["Funktion: Sprecher", "Theaterdebut 1921, geadelt 1957"]} 1 +2024-09-11 09:02:17.721396 2024-09-11 09:02:17.721399 2a6cc6e1-2ac7-4113-af4d-3e841b855be8 {"md5": "522b3d86bb0d84303554a918ccb5f793", "pid": "134619102", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134619102", "source": "GND"}], "date_of_birth": "1928", "preferred_name": "Zech, Carlferdinand", "country_associated": "gw", "authorized_access_point": "Zech, Carlferdinand, 1928-"} 1 +2024-09-11 09:02:17.786762 2024-09-11 09:02:17.786766 e0d5ea96-a2a5-45c7-a5c4-3987754736a5 {"md5": "d3a1c1aa10ef1bb38ab34c12c748e90e", "pid": "134623487", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134623487", "source": "GND"}], "preferred_name": "Powell, Alan", "authorized_access_point": "Powell, Alan"} 1 +2024-09-11 09:02:17.846994 2024-09-11 09:02:17.846998 58058323-dd29-4d03-9aa5-f803c2cab195 {"md5": "1b062b37ff33facd4a624eb7d0ef8ecb", "pid": "134624149", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134624149", "source": "GND"}], "preferred_name": "Wiedemann, Herbert", "country_associated": "gw", "authorized_access_point": "Wiedemann, Herbert", "biographical_information": ["1983 Promotion in Musikpädagogik. 1988-2016 Professor für Musikpädagogik an der Universität der Künste in Berlin"]} 1 +2024-09-11 09:02:17.9119 2024-09-11 09:02:17.911904 b09f9c4a-433e-48dd-9939-ebfa1bdf22bd {"md5": "4825930772d6fc40ba4f43ac1e44a458", "pid": "134678478", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134678478", "source": "GND"}], "variant_name": ["Kraeutler, Walter"], "preferred_name": "Kräutler, Walter", "variant_access_point": ["Kraeutler, Walter"], "parallel_access_point": ["Kraeutler, Walter"], "authorized_access_point": "Kräutler, Walter"} 1 +2024-09-11 09:02:17.979391 2024-09-11 09:02:17.979396 02189da1-5af3-48e1-bc5e-e831f6ae765d {"md5": "8675a5cd98d643eff14b7a3f09ab401c", "pid": "13468706X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13468706X", "source": "GND"}], "variant_name": ["Smith, Lawrence L.", "Leighton-Smith, Lawrence", "Leighton Smith, Lawrence"], "date_of_birth": "1936", "preferred_name": "Smith, Lawrence Leighton", "country_associated": "xxu", "variant_access_point": ["Smith, Lawrence L., 1936-", "Leighton-Smith, Lawrence, 1936-", "Leighton Smith, Lawrence, 1936-"], "authorized_access_point": "Smith, Lawrence Leighton, 1936-", "biographical_information": ["Amerikan. Dirigent u. Pianist"]} 1 +2024-09-11 09:02:18.048476 2024-09-11 09:02:18.048481 dbd38ddf-d77d-4573-a0e1-375a37773843 {"md5": "37a8ce0901332d4b65dcb21e177035e0", "pid": "134694031", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134694031", "source": "GND"}], "date_of_birth": "22.03.1939", "date_of_death": "06.12.1996", "preferred_name": "Westi, Kurt", "country_associated": "dk", "authorized_access_point": "Westi, Kurt, 1939-1996", "biographical_information": ["Dänischer Tenor"]} 1 +2024-09-11 09:02:18.122838 2024-09-11 09:02:18.122843 a7f60a3e-6849-4200-8f07-20cb2bf77c05 {"md5": "2dc843747b962dc8d22d6825a9ae1b81", "pid": "134781821", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134781821", "source": "GND"}], "variant_name": ["Raid, K."], "date_of_birth": "04.03.1921", "date_of_death": "21.01.2005", "preferred_name": "Raid, Kaljo", "country_associated": "er", "variant_access_point": ["Raid, K., 1921-2005"], "parallel_access_point": ["Raid, Kaljo, 1921-2005"], "authorized_access_point": "Raid, Kaljo, 1921-2005", "biographical_information": ["Pastor der Estnischen Baptistengemeinde in Toronto"]} 1 +2024-09-11 09:02:18.185121 2024-09-11 09:02:18.185124 0f4353cc-8908-482e-a39a-75103d1a8454 {"md5": "a7993fec6817158adf75baa057edb662", "pid": "134802993", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134802993", "source": "GND"}], "variant_name": ["Peterson, Wayne T."], "date_of_birth": "1927", "date_of_death": "2021", "preferred_name": "Peterson, Wayne", "country_associated": "xxu", "variant_access_point": ["Peterson, Wayne T., 1927-2021"], "authorized_access_point": "Peterson, Wayne, 1927-2021"} 1 +2024-09-11 09:02:18.243887 2024-09-11 09:02:18.243891 6e5f48ba-f4b3-4a2f-a139-09a15feb5154 {"md5": "70a4173d78a88e15af0c15f2a6e4433c", "pid": "134805313", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134805313", "source": "GND"}], "date_of_birth": "30.01.1912", "date_of_death": "XX.XX.1976", "preferred_name": "Peyron, Joseph", "authorized_access_point": "Peyron, Joseph, 1912-1976", "biographical_information": ["Franzose"]} 1 +2024-09-11 09:02:18.320081 2024-09-11 09:02:18.320086 12f8f362-4889-41f2-bae2-f7a0ccc4c1af {"md5": "dab5e13547219aba9327589ff3b3545e", "pid": "134872223", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/134872223", "source": "GND"}], "preferred_name": "Davies, Myra", "authorized_access_point": "Davies, Myra"} 1 +2024-09-11 09:02:18.405256 2024-09-11 09:02:18.405261 89b13c85-39d3-4d6f-9c79-adee1ac4099c {"md5": "1b3593a05cd11fd36c90f1078b1003dd", "pid": "135012864", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/135012864", "source": "GND"}], "variant_name": ["Müller, Rena C.", "Charnin Müller, Rena"], "preferred_name": "Müller, Rena Charnin", "variant_access_point": ["Müller, Rena C.", "Charnin Müller, Rena"], "authorized_access_point": "Müller, Rena Charnin"} 1 +2024-09-11 09:02:18.469586 2024-09-11 09:02:18.46959 b6bf6528-05b2-4118-a24f-1fa4fe8ab9cd {"md5": "ff5dd784fc65b37952fbaadd35d89e61", "pid": "135074800", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/135074800", "source": "GND"}], "variant_name": ["Taylor, Edgar Kendall"], "date_of_birth": "27.07.1905", "date_of_death": "05.12.1999", "preferred_name": "Taylor, Kendall", "country_associated": "xxk", "variant_access_point": ["Taylor, Edgar Kendall, 1905-1999"], "authorized_access_point": "Taylor, Kendall, 1905-1999"} 1 +2024-09-11 09:02:18.533677 2024-09-11 09:02:18.533681 cc6db66a-0cfa-419d-9c3b-a78de6b38ce9 {"md5": "d11f1d5607a8ae9ddd1d21f0c1eaa172", "pid": "135203449", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/135203449", "source": "GND"}], "variant_name": ["Viklicky, Emil"], "date_of_birth": "23.11.1948", "preferred_name": "Viklický, Emil", "variant_access_point": ["Viklicky, Emil, 1948-"], "authorized_access_point": "Viklický, Emil, 1948-", "biographical_information": ["Tschech. Jazzpianist"]} 1 +2024-09-11 09:02:18.593222 2024-09-11 09:02:18.593225 1c614f84-e89c-417b-a7af-0a51629a9c40 {"md5": "b23a0f40033ffd5f8f6f6be624fa9eef", "pid": "135226082", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/135226082", "source": "GND"}], "variant_name": ["Gosling, John"], "preferred_name": "Mekon", "variant_access_point": ["Gosling, John"], "authorized_access_point": "Mekon"} 1 +2024-09-11 09:02:18.658558 2024-09-11 09:02:18.658562 e6fc492e-453c-43ef-b665-a6e3d80c188c {"md5": "d6a9f1cd125a51fea96e91822b6938a0", "pid": "135270103", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/135270103", "source": "GND"}], "preferred_name": "Kluge, Daniel", "authorized_access_point": "Kluge, Daniel", "biographical_information": ["Funktion: Knabenalt"]} 1 +2024-09-11 09:02:18.742886 2024-09-11 09:02:18.742891 6ae2bcad-f426-4879-96e8-5bcbc42252d5 {"md5": "e1576b676179bd105f8cdebf72f6fff6", "pid": "135270413", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/135270413", "source": "GND"}], "variant_name": ["Le Fleming, Orlando", "Fleming, Orlando le"], "preferred_name": "LeFleming, Orlando", "variant_access_point": ["Le Fleming, Orlando", "Fleming, Orlando le"], "authorized_access_point": "LeFleming, Orlando", "biographical_information": ["Brit. Jazzmusiker"]} 1 +2024-09-11 09:02:18.79813 2024-09-11 09:02:18.798133 d7cb3356-3030-4a69-aab6-851f9b1a9a3d {"md5": "ba82b341923d484114f156da7c74b617", "pid": "135374774", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/135374774", "source": "GND"}], "date_of_birth": "1939", "preferred_name": "Steidle, Peter", "authorized_access_point": "Steidle, Peter, 1939-"} 1 +2024-09-11 09:02:18.855017 2024-09-11 09:02:18.855022 626ae409-6070-4c6f-b305-f87e2eefa618 {"md5": "3dbbe6dc6fcdf5da75875f0085150861", "pid": "135580986", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/135580986", "source": "GND"}], "variant_name": ["Kropiński, Jósef"], "date_of_birth": "28.12.1913", "date_of_death": "08.10.1970", "preferred_name": "Kropiński, Józef", "country_associated": "pl", "variant_access_point": ["Kropiński, Jósef, 1913-1970"], "authorized_access_point": "Kropiński, Józef, 1913-1970"} 1 +2024-09-11 09:02:18.916899 2024-09-11 09:02:18.916903 87c73664-dd17-42a2-afca-2ecf56cd613a {"md5": "450979515c034cafb05d773b45637199", "pid": "135626498", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/135626498", "source": "GND"}], "variant_name": ["Mauro, Francesco Marchese di Polvica di"], "preferred_name": "Polvica, Francesco di Mauro di", "variant_access_point": ["Mauro, Francesco Marchese di Polvica di"], "authorized_access_point": "Polvica, Francesco di Mauro di"} 1 +2024-09-11 09:02:18.983658 2024-09-11 09:02:18.983662 f284dc38-2da9-4ff8-958f-ea162b7480c0 {"md5": "5db89f99905c49e802ae84ebf3addd7c", "pid": "135627095", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/135627095", "source": "GND"}], "date_of_birth": "1977", "preferred_name": "Moldenhauer, Karsten", "authorized_access_point": "Moldenhauer, Karsten, 1977-", "biographical_information": ["Diss. Gottfried Wilhelm Leibniz Universität Hannover, Fakultät für Mathematik und Physik"]} 1 +2024-09-11 09:02:19.056005 2024-09-11 09:02:19.056008 c1dde48a-12c4-46c6-8d3c-fb3ad7bda786 {"md5": "f2017a3e5adbdea037907b36f23f50db", "pid": "135661234", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "qualifier": "Blaubirer", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/135661234", "source": "GND"}], "variant_name": ["Blaubirer, Johann", "Johann, Plaubirer"], "date_of_birth": "ca. ", "date_of_death": "15. Jh.", "preferred_name": "Johann, Blaubirer", "country_associated": "gw", "variant_access_point": ["Blaubirer, Johann, ca. -15. Jh.", "Johann, Plaubirer, ca. -15. Jh."], "authorized_access_point": "Johann, Blaubirer, ca. -15. Jh."} 1 +2024-09-11 09:02:19.112114 2024-09-11 09:02:19.112118 bd0259ba-3ba2-4ff0-89cf-3697e15c1b37 {"md5": "70e9e59c1826c724d978d1ead9d091b4", "pid": "135757452", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/135757452", "source": "GND"}], "variant_name": ["Puig Gonzalez, Hélios"], "preferred_name": "Gonzalez, Hélios Puig", "variant_access_point": ["Puig Gonzalez, Hélios"], "authorized_access_point": "Gonzalez, Hélios Puig", "biographical_information": ["Tätig an der UFRGS"]} 1 +2024-09-11 09:02:19.176912 2024-09-11 09:02:19.176916 beb9a9e9-f379-4216-a9ec-8daff3faa3bd {"md5": "032f05256653839dab12814820934e5c", "pid": "13579000X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13579000X", "source": "GND"}], "variant_name": ["Kantiréa, Maria", "Kantirea, M.", "Kantērea, M."], "date_of_birth": "1970", "preferred_name": "Kantērea, Maria", "country_associated": "gr", "variant_access_point": ["Kantiréa, Maria, 1970-", "Kantirea, M., 1970-", "Kantērea, M., 1970-"], "parallel_access_point": ["Καντηρέα, Μαρία, 1970-"], "authorized_access_point": "Kantērea, Maria, 1970-", "biographical_information": ["Historikerin, hat in Frankreich studiert"]} 1 +2024-09-11 09:02:19.235811 2024-09-11 09:02:19.235815 94b03d42-0d33-448e-b598-2636ab3bebb6 {"md5": "febd8bff1a903062ef1f812ab1c200d9", "pid": "135835321", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/135835321", "source": "GND"}], "variant_name": ["Bednarek, Monika A."], "date_of_birth": "1977", "preferred_name": "Bednarek, Monika", "country_associated": "gw", "variant_access_point": ["Bednarek, Monika A., 1977-"], "authorized_access_point": "Bednarek, Monika, 1977-", "biographical_information": ["associate professor at the Department of Linguistics, University of Sydney; PhD at the University of Augsburg, Germany, in 2005; post-doctoral research at the University of Sydney (2006-2008) and the University of Technology, Sydney (2008-2009)"]} 1 +2024-09-11 09:02:19.30321 2024-09-11 09:02:19.303214 f6af51fd-6c40-4417-a8f5-90c3741c46fe {"md5": "85003b2af3b35e857ac8d201249dbfcd", "pid": "135958245", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/135958245", "source": "GND"}], "preferred_name": "Frémaux, Benjamin", "country_associated": "fr", "authorized_access_point": "Frémaux, Benjamin", "biographical_information": ["Diplom École Polytechnique, Ingenieur, Corps de Mines"]} 1 +2024-09-11 09:02:47.146226 2024-09-11 09:02:47.14623 63561db6-a1af-44ca-b105-347ab9749c8a {"md5": "1acbbede5f2af685cd269d46c8bb253b", "pid": "320418448", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10315867-4", "source": "GND"}], "preferred_name": "Mystic Karma", "authorized_access_point": "Mystic Karma"} 1 +2024-09-11 09:02:19.361242 2024-09-11 09:02:19.361244 f7f75743-5146-4b4c-b10b-0b13becf4230 {"md5": "64e55120e65140b169d245d896cae9e5", "pid": "135961602", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/135961602", "source": "GND"}], "variant_name": ["Tsuda Yukio", "津田幸男"], "date_of_birth": "1950", "preferred_name": "Tsuda, Yukio", "variant_access_point": ["Tsuda Yukio, 1950-", "津田幸男, 1950-"], "parallel_access_point": ["津田, 幸男, 1950-"], "authorized_access_point": "Tsuda, Yukio, 1950-"} 1 +2024-09-11 09:02:19.431176 2024-09-11 09:02:19.43118 4500f0a2-d142-4bd8-93cc-593a5df22d19 {"md5": "e9ec6a22c10738d3f076440d0bc064ee", "pid": "135973368", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/135973368", "source": "GND"}], "variant_name": ["Prejs, Aleksandr Germanovič", "Prejs, Aleksandr", "Prejs, Alexander", "Prejs, A.", "Preis, Alexander G.", "Preis, Alexander", "Preĭs, Aleksandr Germanovich", "Preĭs, Aleksandr", "Preis, Aleksandr", "Preis, Alexandre", "Preĭs, A. G.", "Preis, A. G.", "Preis, A.", "Preiss, Alexander", "Preiss, A.", "Preys, Alexander", "Preys, Alexandre"], "date_of_birth": "1905", "date_of_death": "1942", "preferred_name": "Prejs, Aleksandr G.", "country_associated": "ru", "variant_access_point": ["Prejs, Aleksandr Germanovič, 1905-1942", "Prejs, Aleksandr, 1905-1942", "Prejs, Alexander, 1905-1942", "Prejs, A., 1905-1942", "Preis, Alexander G., 1905-1942", "Preis, Alexander, 1905-1942", "Preĭs, Aleksandr Germanovich, 1905-1942", "Preĭs, Aleksandr, 1905-1942", "Preis, Aleksandr, 1905-1942", "Preis, Alexandre, 1905-1942", "Preĭs, A. G., 1905-1942", "Preis, A. G., 1905-1942", "Preis, A., 1905-1942", "Preiss, Alexander, 1905-1942", "Preiss, A., 1905-1942", "Preys, Alexander, 1905-1942", "Preys, Alexandre, 1905-1942"], "parallel_access_point": ["Preĭs, A., 1905-1942"], "authorized_access_point": "Prejs, Aleksandr G., 1905-1942"} 1 +2024-09-11 09:02:19.487969 2024-09-11 09:02:19.487993 ba169e7f-d80c-4038-9d1d-17ad599d38fe {"md5": "7cb89ebd365d55644bbfb6798cd4bde9", "pid": "136148808", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/136148808", "source": "GND"}], "variant_name": ["Chandler, Caroline Auguste"], "date_of_birth": "07.12.1906", "date_of_death": "18.12.1979", "preferred_name": "Chandler, Caroline A.", "country_associated": "xxu", "variant_access_point": ["Chandler, Caroline Auguste, 1906-1979"], "authorized_access_point": "Chandler, Caroline A., 1906-1979"} 1 +2024-09-11 09:02:19.544054 2024-09-11 09:02:19.544058 77a81b1c-9c08-4c7b-ad6d-091990931dda {"md5": "ca6577a647b272ff3b13040062592ba5", "pid": "136205275", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/136205275", "source": "GND"}], "variant_name": ["Kroiss, H.", "Kroiß, H."], "date_of_birth": "1944", "preferred_name": "Kroiss, Helmut", "country_associated": "au", "variant_access_point": ["Kroiss, H., 1944-", "Kroiß, H., 1944-"], "authorized_access_point": "Kroiss, Helmut, 1944-", "biographical_information": ["Vorstand am Institut für Wassergüte, Ressourcenmanagement und Abfallwirtschaft der Techn. Univ. Wien"]} 1 +2024-09-11 09:02:19.607703 2024-09-11 09:02:19.607707 85a98ce9-cb22-43c5-97f0-4b326122c31a {"md5": "3ddfad8dbd543db7396ac5733d6ebbba", "pid": "136380638", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/136380638", "source": "GND"}], "date_of_birth": "16.09.1935", "preferred_name": "Winter, Bernd", "country_associated": "rm", "authorized_access_point": "Winter, Bernd, 1935-", "biographical_information": ["Promotion an der Universität Erlangen-Nürnberg 1970"]} 1 +2024-09-11 09:02:19.670732 2024-09-11 09:02:19.670736 a70b9164-a33a-4d54-b053-3974e81a172c {"md5": "5765460be87182874588d5dd0297643c", "pid": "136417582", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/136417582", "source": "GND"}], "variant_name": ["Brown, Jonathan Mayer", "Brown, Jonathan M."], "date_of_birth": "1939", "preferred_name": "Brown, Jonathan", "country_associated": "xxu", "variant_access_point": ["Brown, Jonathan Mayer, 1939-", "Brown, Jonathan M., 1939-"], "parallel_access_point": ["Brown, Jonathan, 1939-"], "authorized_access_point": "Brown, Jonathan, 1939-", "biographical_information": ["Carroll and Milton Petrie Professor am Institute of Fine Arts, New York University; Forschungsbereiche: History of Spanish art, 1500-1800; colonial Latin American art; history of art collecting"]} 1 +2024-09-11 09:02:19.738295 2024-09-11 09:02:19.738298 9f0dd093-cf27-4819-af0c-97f65588cbdd {"md5": "370eda19f19123aad50c654fea99718c", "pid": "136444075", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/136444075", "source": "GND"}], "variant_name": ["Lornell, Christopher", "Lornell, Chris"], "date_of_birth": "1953", "preferred_name": "Lornell, Kip", "country_associated": "xxu", "variant_access_point": ["Lornell, Christopher, 1953-", "Lornell, Chris, 1953-"], "authorized_access_point": "Lornell, Kip, 1953-", "biographical_information": ["Seit 1992 an der George Washington University"]} 1 +2024-09-11 09:02:19.804396 2024-09-11 09:02:19.804399 79fa146a-fa5d-466e-a224-27e269d68aaf {"md5": "1a36a97a1ba37ccd417945e502cfc623", "pid": "13685849X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13685849X", "source": "GND"}], "variant_name": ["Subbarao, Nanjappa Shamanna", "Subbarao, N. S.", "Subbarao, Nanjappa S.", "Subba Rao, N. S.", "Subba Rao, Nanjappa S."], "date_of_birth": "1926", "preferred_name": "Subba Rao, Nanjappa Shamanna", "variant_access_point": ["Subbarao, Nanjappa Shamanna, 1926-", "Subbarao, N. S., 1926-", "Subbarao, Nanjappa S., 1926-", "Subba Rao, N. S., 1926-", "Subba Rao, Nanjappa S., 1926-"], "authorized_access_point": "Subba Rao, Nanjappa Shamanna, 1926-"} 1 +2024-09-11 09:02:19.870748 2024-09-11 09:02:19.870752 d55766d7-1650-4530-83ff-1026cf3ab9bb {"md5": "5df29e01ba23ec9f616b6f6e72465794", "pid": "136999271", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/136999271", "source": "GND"}], "date_of_birth": "1981", "preferred_name": "Walter, Hanna", "authorized_access_point": "Walter, Hanna, 1981-", "biographical_information": ["Diss. Medizinische Fakultät der Univ. Tübingen"]} 1 +2024-09-11 09:02:19.923182 2024-09-11 09:02:19.923185 e00a7be7-44ad-40a6-956c-7440b9c48dd4 {"md5": "a4dce5866340f298119a2c9807776a50", "pid": "13707543X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13707543X", "source": "GND"}], "variant_name": ["Estle, T. L.", "Estle, Thomas Leo"], "date_of_birth": "1931", "preferred_name": "Estle, Thomas L.", "variant_access_point": ["Estle, T. L., 1931-", "Estle, Thomas Leo, 1931-"], "authorized_access_point": "Estle, Thomas L., 1931-", "biographical_information": ["Rice Univ., Houston, Texas"]} 1 +2024-09-11 09:02:19.996693 2024-09-11 09:02:19.996695 15964a9d-6c51-4cdc-aecf-e76bec581c0d {"md5": "e0ee4e238e1aadb43cc1253eb2790264", "pid": "137111223", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/137111223", "source": "GND"}], "variant_name": ["Woyna, Benedictus"], "date_of_death": "1615", "preferred_name": "Wojna, Benedyct", "country_associated": "pl", "variant_access_point": ["Woyna, Benedictus, -1615"], "authorized_access_point": "Wojna, Benedyct, -1615"} 1 +2024-09-11 09:02:20.052002 2024-09-11 09:02:20.052005 346cc255-910a-4b32-8e20-263f7d26ee61 {"md5": "0973f3ea106182a9241a8d3b4515bcc2", "pid": "137241348", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/137241348", "source": "GND"}], "variant_name": ["Briese, V."], "date_of_birth": "25.06.1951", "preferred_name": "Briese, Volker", "country_associated": "gw", "variant_access_point": ["Briese, V., 1951-"], "authorized_access_point": "Briese, Volker, 1951-", "biographical_information": ["Professor für Gynäkologie an der Universitätsfrauenklinik und Poliklinik am Klinikum Südstadt Rostock"]} 1 +2024-09-11 09:02:20.108209 2024-09-11 09:02:20.108213 de4ce516-b263-440e-9752-673237053548 {"md5": "04f4ef99b3791d03166b067560461930", "pid": "137308914", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/137308914", "source": "GND"}], "variant_name": ["Watkins, Peter", "Watkins, P. M.", "Watkins, P.", "Watkins, P.M."], "date_of_birth": "1944", "preferred_name": "Watkins, Peter Maitland", "country_associated": "xxk", "variant_access_point": ["Watkins, Peter, 1944-", "Watkins, P. M., 1944-", "Watkins, P., 1944-", "Watkins, P.M., 1944-"], "authorized_access_point": "Watkins, Peter Maitland, 1944-", "biographical_information": ["Lecturer in Physics"]} 1 +2024-09-11 09:02:20.168717 2024-09-11 09:02:20.168722 0fa543b8-3b26-429b-9102-bf1e0306272f {"md5": "ef6c07fd5fd9d40cd5d7871ddb924c3b", "pid": "137500750", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/137500750", "source": "GND"}], "preferred_name": "Allen, John", "country_associated": "sa", "authorized_access_point": "Allen, John", "biographical_information": ["südafrikanischer Journalist, ehem. Präsident der südafrikanischen Journalistengesellschaft"]} 1 +2024-09-11 09:02:20.23947 2024-09-11 09:02:20.239473 487a0549-2cae-4ceb-8fd2-52226fe04cdd {"md5": "f5ceda060a298b37cb4e275c1e496516", "pid": "137858825", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/137858825", "source": "GND"}], "variant_name": ["Forster, Bill"], "date_of_birth": "1878", "date_of_death": "19XX", "preferred_name": "Breuer, Hermann", "country_associated": "gw", "variant_access_point": ["Forster, Bill, 1878-19XX"], "authorized_access_point": "Breuer, Hermann, 1878-19XX"} 1 +2024-09-11 09:02:20.307133 2024-09-11 09:02:20.307136 656b6f92-c6b3-4715-9447-77fa81400cac {"md5": "993c0b363ef6dd1cb56e201e5359a750", "pid": "138127948", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/138127948", "source": "GND"}], "preferred_name": "Simmen, Denise", "authorized_access_point": "Simmen, Denise"} 1 +2024-09-11 09:02:20.365822 2024-09-11 09:02:20.365826 1ae7ab65-ccba-46fa-8d9c-723da76293df {"md5": "beeaf53ae649e1a3a89128f2a5e272b4", "pid": "138374732", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/138374732", "source": "GND"}], "variant_name": ["Macdonald, Robert Maclauchlan"], "date_of_birth": "1874", "preferred_name": "Macdonald, Robert M.", "variant_access_point": ["Macdonald, Robert Maclauchlan, 1874-"], "parallel_access_point": ["Macdonald, Robert M., 1874-"], "authorized_access_point": "Macdonald, Robert M., 1874-"} 1 +2024-09-11 09:02:20.419968 2024-09-11 09:02:20.419971 afeebac2-73ac-4bea-88f6-506d02f2f86f {"md5": "b091fb57e49ad8a9e06e5380a950f3bd", "pid": "138598010", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/138598010", "source": "GND"}], "variant_name": ["Duparc, Marie-Alexandre", "Duparc", "Du Parc, Marie-Alexandre", "Du Parc, Marie Alexandre", "Duparq, Marie-Alexandre", "Du Parc"], "date_of_birth": "1760", "date_of_death": "1829", "preferred_name": "Duparc, Marie Alexandre", "country_associated": "fr", "variant_access_point": ["Duparc, Marie-Alexandre, 1760-1829", "Duparc, 1760-1829", "Du Parc, Marie-Alexandre, 1760-1829", "Du Parc, Marie Alexandre, 1760-1829", "Duparq, Marie-Alexandre, 1760-1829", "Du Parc, 1760-1829"], "authorized_access_point": "Duparc, Marie Alexandre, 1760-1829"} 1 +2024-09-11 09:02:20.476986 2024-09-11 09:02:20.476988 58a7a579-626e-4750-8461-86239f947c27 {"md5": "e0b958cca796d517a11f278f734cd4cc", "pid": "13902185X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13902185X", "source": "GND"}], "preferred_name": "Priftis, Kostas N.", "country_associated": "gr", "authorized_access_point": "Priftis, Kostas N."} 1 +2024-09-11 09:02:20.535683 2024-09-11 09:02:20.535686 713f2634-faae-4827-83d3-5629f209547e {"md5": "1e933ac6e7e50ed9b9f6397e58ea6d25", "pid": "139094342", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139094342", "source": "GND"}], "date_of_birth": "1976", "preferred_name": "Kurig, Barbara", "country_associated": "gw", "authorized_access_point": "Kurig, Barbara, 1976-", "biographical_information": ["Diss. Universität Tübingen, Fakultät für Chemie und Pharmazie"]} 1 +2024-09-11 09:02:20.591845 2024-09-11 09:02:20.591848 ec18988f-7da5-4720-b57b-006018c4c731 {"md5": "93c3848f0d7dcfa5c82ba38f9be0bbef", "pid": "139117091", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139117091", "source": "GND"}], "preferred_name": "Hölck, Benjamin", "country_associated": "gw", "authorized_access_point": "Hölck, Benjamin"} 1 +2024-09-11 09:02:20.656298 2024-09-11 09:02:20.656301 a42e5dd0-0c43-423c-abdf-e654c6de6c19 {"md5": "636ee1e92cd1f63fde18fb6f59982527", "pid": "139120629", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139120629", "source": "GND"}], "variant_name": ["Sela, Shulamit"], "date_of_birth": "1946", "date_of_death": "2003", "preferred_name": "Selaʿ, Shulamit", "country_associated": "is", "variant_access_point": ["Sela, Shulamit, 1946-2003"], "parallel_access_point": ["סלע, שולמית, 1946-2003"], "authorized_access_point": "Selaʿ, Shulamit, 1946-2003", "biographical_information": ["Hebr. Literaturwissenschaftlerin und Sprachlehrerin; Forschungen in jüdisch-arabischer Literatur"]} 1 +2024-09-11 09:02:20.71125 2024-09-11 09:02:20.711253 02b18f17-b69e-46a3-8464-be38c20b9ad0 {"md5": "18937325b2f5afef9ceeeb562f1af2b8", "pid": "139128557", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139128557", "source": "GND"}], "variant_name": ["小和田哲男"], "date_of_birth": "1944", "preferred_name": "Owada, Tetsuo", "country_associated": "ja", "variant_access_point": ["小和田哲男, 1944-"], "parallel_access_point": ["小和田, 哲男, 1944-"], "authorized_access_point": "Owada, Tetsuo, 1944-"} 1 +2024-09-11 09:02:20.771859 2024-09-11 09:02:20.771862 4099f612-ca46-4fc3-ada2-412cb53683c5 {"md5": "a0708dda3e87ea349b14deb61939e696", "pid": "139134816", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139134816", "source": "GND"}], "preferred_name": "Reich, Friedrich Wilhelm", "country_associated": "gw", "authorized_access_point": "Reich, Friedrich Wilhelm", "biographical_information": ["Bekehrter Jude"]} 1 +2024-09-11 09:02:20.823442 2024-09-11 09:02:20.823445 a59a1cd2-de34-4da7-b99a-c4044500f423 {"md5": "1cfcb3083cf4e2fd10ca2b99318ff70e", "pid": "139173544", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139173544", "source": "GND"}], "date_of_birth": "1975", "preferred_name": "Feurstein, Christian", "country_associated": "au", "authorized_access_point": "Feurstein, Christian, 1975-", "biographical_information": ["Leiter des Wirtschaftsarchivs Vorarlberg in Feldkirch (ab 2002)"]} 1 +2024-09-11 09:02:20.884773 2024-09-11 09:02:20.884776 5beca718-8dde-42b2-aeef-40352e440612 {"md5": "3eb724e64d067b6a5c5d912c5cd993e6", "pid": "139180060", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139180060", "source": "GND"}], "variant_name": ["Romanjuk, Ivan Mironovič", "Romanjuk, Ivan", "Romanjuk, Ivan M.", "Romanjuk, I. M."], "date_of_birth": "1962", "preferred_name": "Romanjuk, Ivan Myronovyč", "country_associated": "un", "variant_access_point": ["Romanjuk, Ivan Mironovič, 1962-", "Romanjuk, Ivan, 1962-", "Romanjuk, Ivan M., 1962-", "Romanjuk, I. M., 1962-"], "authorized_access_point": "Romanjuk, Ivan Myronovyč, 1962-", "biographical_information": ["Internet, Ukrain. Historiker, http://www.vspu.edu.ua/faculty/histor/history_ukr_tich.php"]} 1 +2024-09-11 09:02:20.939925 2024-09-11 09:02:20.93993 8d462bee-9779-4810-8ae1-d6d82bec89d1 {"md5": "1bc33b1835603624abc0db185dd49f00", "pid": "139196269", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139196269", "source": "GND"}], "date_of_birth": "1963", "preferred_name": "Oldorff, Sven", "authorized_access_point": "Oldorff, Sven, 1963-", "biographical_information": ["Dresden, Techn. Univ., Fak. Forst-, Geo- und Hydrowiss., Diplomarbeit, 1990"]} 1 +2024-09-11 09:02:21.002735 2024-09-11 09:02:21.002738 72870488-67f4-454a-a6ec-d145d7462455 {"md5": "f4d5feef68e045afa9bf4177be5d372a", "pid": "139204105", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139204105", "source": "GND"}], "date_of_birth": "1971", "preferred_name": "Grinštejn, Nana", "authorized_access_point": "Grinštejn, Nana, 1971-", "biographical_information": ["Russ. Dichterin"]} 1 +2024-09-11 09:02:21.103795 2024-09-11 09:02:21.103798 14b65de6-d685-4a05-8dae-6b0aec728148 {"md5": "657313a193545ed8e1fbfe5bd1cf0a95", "pid": "139209204", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139209204", "source": "GND"}], "preferred_name": "Douchy, Hervé", "country_associated": "fr", "authorized_access_point": "Douchy, Hervé"} 1 +2024-09-11 09:02:21.25195 2024-09-11 09:02:21.251954 99a29150-9dc2-4ac5-a1a6-a41a155a755a {"md5": "1c2ee9e6905c2c45ffd5576f465c0710", "pid": "139268456", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139268456", "source": "GND"}], "date_of_birth": "1955", "preferred_name": "Stuart, George Edwin", "authorized_access_point": "Stuart, George Edwin, 1955-"} 1 +2024-09-11 09:02:21.376797 2024-09-11 09:02:21.376801 7f95e689-04e9-4ad9-bebd-f2d97ad1f7c8 {"md5": "45ddc973a30268ddb5f29209e23c5f39", "pid": "139284575", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139284575", "source": "GND"}], "variant_name": ["Roth, Conrad", "Rothe, Konrad", "Rothe, Conrad"], "date_of_death": "1637", "preferred_name": "Roth, Konrad", "country_associated": "gw", "variant_access_point": ["Roth, Conrad, -1637", "Rothe, Konrad, -1637", "Rothe, Conrad, -1637"], "authorized_access_point": "Roth, Konrad, -1637", "biographical_information": ["Ratskonsulent; Ratsadvokat in Augsburg"]} 1 +2024-09-11 09:02:21.505717 2024-09-11 09:02:21.50572 968cd7e6-4288-46e8-bf62-452a1208bef1 {"md5": "018eb5a5aea5ba31fc95c4ba4df1907d", "pid": "139286160", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139286160", "source": "GND"}], "date_of_birth": "1976", "preferred_name": "Wiese, René", "country_associated": "gw", "authorized_access_point": "Wiese, René, 1976-", "biographical_information": ["Archivoberrat und Dezernatsleiter in der Abteilung Landesarchiv des Landesamtes für Kultur und Denkmalpflege Mecklenburg-Vorpommern in Schwerin, Mitglied der Historischen Kommission für Mecklenburg"]} 1 +2024-09-11 09:02:21.65979 2024-09-11 09:02:21.659795 43be1e1a-b5f8-4deb-89f5-c38e15724bf8 {"md5": "4ff6349a2bdcd493793e4ec1a40dbb9d", "pid": "139289690", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139289690", "source": "GND"}], "variant_name": ["Albero, Claudio dall'"], "date_of_birth": "ca. Anfang 21. Jh.", "preferred_name": "Dall'Albero, Claudio", "variant_access_point": ["Albero, Claudio dall', ca. Anfang 21. Jh."], "authorized_access_point": "Dall'Albero, Claudio, ca. Anfang 21. Jh.", "biographical_information": ["Hrsg. der Massenzio-Gesamtausgabe"]} 1 +2024-09-11 09:02:21.799976 2024-09-11 09:02:21.799982 7cc0ab0c-6de7-44bc-9cb5-2dbee32416fd {"md5": "5760630fc71b37011497102e543a6a07", "pid": "139310991", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "qualifier": "Anhalt-Bernburg, Fürst", "numeration": "V.", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139310991", "source": "GND"}], "date_of_death": "1410", "preferred_name": "Bernhard, V., Anhalt-Bernburg, Fürst", "country_associated": "gw", "authorized_access_point": "Bernhard, V., Anhalt-Bernburg, Fürst, -1410", "biographical_information": ["Fürst von Anhalt-Bernburg"]} 1 +2024-09-11 09:02:21.936652 2024-09-11 09:02:21.936655 63d6ac17-69e3-4318-ab22-5b2398655ecd {"md5": "e837df5acf193415203a7a7f4dac58be", "pid": "139317783", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139317783", "source": "GND"}], "date_of_birth": "1961", "preferred_name": "Bludschun, Uwe", "authorized_access_point": "Bludschun, Uwe, 1961-", "biographical_information": ["Dresden, Techn. Univ., Fak. Bau-, Wasser- und Forstwesen, Diplomarbeit, 1988"]} 1 +2024-09-11 09:02:22.107799 2024-09-11 09:02:22.107803 ee520791-528d-4ac6-ab27-5898ccb2f920 {"md5": "f794735ac91e4c349cd6433217cd3dca", "pid": "139334114", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139334114", "source": "GND"}], "preferred_name": "Khattab, Ahmed Aziz", "authorized_access_point": "Khattab, Ahmed Aziz", "biographical_information": ["aus Kairo - Ägypten; Habilitation an der Medizinischen Fakultät der Universität Kiel"]} 1 +2024-09-11 09:02:22.182458 2024-09-11 09:02:22.182461 0d951bba-8d9f-4b2b-baeb-dafb60f67738 {"md5": "35b5007499c7b06f6da153cb5d34d490", "pid": "139350101", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139350101", "source": "GND"}], "variant_name": ["Rodius, Henemannus"], "preferred_name": "Rode, Henemann", "country_associated": "gw", "variant_access_point": ["Rodius, Henemannus"], "authorized_access_point": "Rode, Henemann", "biographical_information": ["Verfasser eines Panegyrikons"]} 1 +2024-09-11 09:02:22.242472 2024-09-11 09:02:22.242476 9dafbc10-6d13-4dd5-8254-e5606829af1f {"md5": "3604c34be4e4156be16603bcd7bc036e", "pid": "139361405", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139361405", "source": "GND"}], "date_of_birth": "1954", "preferred_name": "Gaeremynck, Veerle", "authorized_access_point": "Gaeremynck, Veerle, 1954-"} 1 +2024-09-11 09:02:22.299014 2024-09-11 09:02:22.299018 7ac0cf57-f997-4448-8bc2-bff5e54ea6a9 {"md5": "2d43e0c444720891dc69f20d4dbec2c3", "pid": "139376119", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139376119", "source": "GND"}], "variant_name": ["Nguyen, M. L."], "preferred_name": "Nguyen, Minh-Long", "country_associated": "au", "variant_access_point": ["Nguyen, M. L."], "authorized_access_point": "Nguyen, Minh-Long"} 1 +2024-09-11 09:02:22.368486 2024-09-11 09:02:22.368489 ee3eef56-7766-4bcb-bfef-4c49b83ff1b7 {"md5": "825a7eacafbd179acc98ffbf17b8600a", "pid": "139380027", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139380027", "source": "GND"}], "variant_name": ["Henschel, G. A. L.", "Henschelius, G. A."], "date_of_birth": "1806", "date_of_death": "1852", "preferred_name": "Henschel, G. A. Louis", "country_associated": "gw", "variant_access_point": ["Henschel, G. A. L., 1806-1852", "Henschelius, G. A., 1806-1852"], "authorized_access_point": "Henschel, G. A. Louis, 1806-1852"} 1 +2024-09-11 09:02:22.42758 2024-09-11 09:02:22.427584 bad774e4-db31-4944-b12f-1c8a7c76e720 {"md5": "4f72cba40831a1194d54d50455740546", "pid": "13938233X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13938233X", "source": "GND"}], "date_of_birth": "14.06.1883", "date_of_death": "24.12.1936", "preferred_name": "Ratte, Ida", "country_associated": "gw", "authorized_access_point": "Ratte, Ida, 1883-1936", "biographical_information": ["Dt. Heimatschriftstellerin in Fredeburg "]} 1 +2024-09-11 09:02:22.497315 2024-09-11 09:02:22.497319 a7c5525d-b228-40a7-9061-d5c2a72a02a7 {"md5": "a0d219ece7ec53d7ccb38d3bb4f5b30c", "pid": "139383050", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139383050", "source": "GND"}], "preferred_name": "Kloth, Andreas", "country_associated": "gw", "authorized_access_point": "Kloth, Andreas"} 1 +2024-09-11 09:02:22.554144 2024-09-11 09:02:22.554146 85dec538-fc3b-45e9-ba9b-8d31b8352eba {"md5": "b4a5158aa68e73c6b891518e078d5a5d", "pid": "139418598", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139418598", "source": "GND"}], "preferred_name": "Wang, Chonggang", "country_associated": "cc", "authorized_access_point": "Wang, Chonggang", "biographical_information": ["NEC Laboratories America, Princeton, NJ"]} 1 +2024-09-11 09:02:22.60676 2024-09-11 09:02:22.606764 5ab04baf-586a-40f4-9504-ac595fd695b4 {"md5": "1b124c083c13c3a13711021ad6a7ee44", "pid": "139422102", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139422102", "source": "GND"}], "variant_name": ["Georgoulas, Stratos"], "date_of_birth": "20./21. Jh.", "preferred_name": "Geōrgulas, Stratos", "country_associated": "gr", "variant_access_point": ["Georgoulas, Stratos, 20./21. Jh."], "parallel_access_point": ["Γεωργούλας, Στράτος, 20./21. Jh."], "authorized_access_point": "Geōrgulas, Stratos, 20./21. Jh."} 1 +2024-09-11 09:02:22.662345 2024-09-11 09:02:22.662348 7bf45215-801e-4bd3-b829-2f1cc02beccc {"md5": "84dc0546f176cf1ac297b66243c3426a", "pid": "139422161", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139422161", "source": "GND"}], "date_of_birth": "1947", "preferred_name": "Munslow, Alun", "authorized_access_point": "Munslow, Alun, 1947-", "biographical_information": ["Prof an der Univ. of Staffordshire"]} 1 +2024-09-11 09:02:22.721507 2024-09-11 09:02:22.72151 a429f084-2b57-48d0-965f-1a734ae0a68e {"md5": "358e09876acde197ac49313ff5bbf85b", "pid": "13943237X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13943237X", "source": "GND"}], "variant_name": ["Sköld, Beatrice Christensen"], "date_of_birth": "1941", "preferred_name": "Christensen Sköld, Beatrice", "country_associated": "sw", "variant_access_point": ["Sköld, Beatrice Christensen, 1941-"], "authorized_access_point": "Christensen Sköld, Beatrice, 1941-"} 1 +2024-09-11 09:02:22.777603 2024-09-11 09:02:22.777608 52cdec19-3df2-4874-ac6e-d8c994feace8 {"md5": "672bd69170039f28ba2296993682c246", "pid": "139480056", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139480056", "source": "GND"}], "variant_name": ["Hillel, F."], "date_of_birth": "1865", "preferred_name": "Hillel, Feivel", "variant_access_point": ["Hillel, F., 1865-"], "authorized_access_point": "Hillel, Feivel, 1865-"} 1 +2024-09-11 09:02:22.834765 2024-09-11 09:02:22.83477 a08e8eb5-6849-4220-bb35-473a4b432b83 {"md5": "1e0a5fbb61a2a02d71ae69b0cd8bb050", "pid": "139503072", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139503072", "source": "GND"}], "date_of_birth": "1864", "date_of_death": "1926", "preferred_name": "Klingatsch, Adolf", "country_associated": "au", "authorized_access_point": "Klingatsch, Adolf, 1864-1926"} 1 +2024-09-11 09:02:22.888903 2024-09-11 09:02:22.888906 cc0f051d-1bd0-4759-86b5-e7e3e904e0b6 {"md5": "f2951074a0ce74b291fea428ccf4070b", "pid": "139512950", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139512950", "source": "GND"}], "date_of_birth": "1859", "date_of_death": "1935", "preferred_name": "Ruhstrat, Franz", "country_associated": "gw", "authorized_access_point": "Ruhstrat, Franz, 1859-1935", "biographical_information": ["oldenburgischer Staatsminister"]} 1 +2024-09-11 09:02:22.942165 2024-09-11 09:02:22.942169 d2da863f-3e64-46e6-b31d-72f632ffa372 {"md5": "9beac4078aca84874ef6f5a1e3276406", "pid": "139535489", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139535489", "source": "GND"}], "date_of_birth": "1979", "preferred_name": "Preuß, Anja", "country_associated": "gw", "authorized_access_point": "Preuß, Anja, 1979-", "biographical_information": ["Diss. Fachbereich Pharmazie, Univ. Marburg"]} 1 +2024-09-11 09:02:23.003454 2024-09-11 09:02:23.003457 de2319e2-7184-4cf8-a287-0cfd1641dce9 {"md5": "199bb38bd923b416f3bd7f38449e3fae", "pid": "139542043", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139542043", "source": "GND"}], "date_of_birth": "1968", "preferred_name": "Finke, Timo", "country_associated": "gw", "authorized_access_point": "Finke, Timo, 1968-"} 1 +2024-09-11 09:02:23.062873 2024-09-11 09:02:23.062876 b5aae30a-b4be-4ff9-b791-fc82637b2dd1 {"md5": "4f9eb2edb75a7227276379e75fc3c889", "pid": "13954402X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13954402X", "source": "GND"}], "date_of_birth": "1977", "preferred_name": "Nowak, Jacek", "country_associated": "pl", "authorized_access_point": "Nowak, Jacek, 1977-"} 1 +2024-09-11 09:02:23.132579 2024-09-11 09:02:23.132582 02342699-37be-4e55-ada8-c238ad9fd758 {"md5": "8050da165dea684f4e359a8f011663d0", "pid": "139546979", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139546979", "source": "GND"}], "variant_name": ["Kelley, Carolyn"], "preferred_name": "Kelley, Carolyn J.", "variant_access_point": ["Kelley, Carolyn"], "authorized_access_point": "Kelley, Carolyn J.", "biographical_information": ["Professor, Department of Educational Leadership & Policy Analysis, University of Wisconsin-Madison"]} 1 +2024-09-11 09:02:23.196968 2024-09-11 09:02:23.196971 0996fa53-0c89-4573-9318-1a33c5d11665 {"md5": "d0ab6a7b2dd7b4e8405bbc6fc9aa8d88", "pid": "139612483", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139612483", "source": "GND"}], "date_of_birth": "1965", "preferred_name": "Merkel, Beate", "country_associated": "gw", "authorized_access_point": "Merkel, Beate, 1965-", "biographical_information": ["Diss. Fachbereich Medizin"]} 1 +2024-09-11 09:02:23.267506 2024-09-11 09:02:23.26751 33aea484-7660-4ecb-959c-82fd68b46f07 {"md5": "4d986472115e6e22d643a96f4fcdabe2", "pid": "139621156", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139621156", "source": "GND"}], "variant_name": ["Salis, Johannes von", "Salis-Samedan, Johann von", "von Salis-Samedan, Johann", "Samedan, Johann von Salis-", "Salis, Gian Travers", "Salis von Samedan, Gian Travers"], "date_of_birth": "30.01.1546", "date_of_death": "16.04.1624", "preferred_name": "Salis, Johann von", "country_associated": "sz", "variant_access_point": ["Salis, Johannes von, 1546-1624", "Salis-Samedan, Johann von, 1546-1624", "von Salis-Samedan, Johann, 1546-1624", "Samedan, Johann von Salis-, 1546-1624", "Salis, Gian Travers, 1546-1624", "Salis von Samedan, Gian Travers, 1546-1624"], "authorized_access_point": "Salis, Johann von, 1546-1624", "biographical_information": ["Montanunternehmer, Grosskaufmann"]} 1 +2024-09-11 09:02:23.326361 2024-09-11 09:02:23.326365 a025c991-8cf4-4087-b5ae-ccbc5331bbbc {"md5": "3feddcc73a960ae9dd9ab6b4a5c73b08", "pid": "139621652", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139621652", "source": "GND"}], "date_of_birth": "1973", "preferred_name": "Sohst, Wiebke", "country_associated": "gw", "authorized_access_point": "Sohst, Wiebke, 1973-", "biographical_information": ["ist in der Kundenservice-Steuerung eines großen Unternehmens tätig; lebt im Siebengebirge bei Bonn und auf der Halbinsel Eiderstedt in Nordfriesland"]} 1 +2024-09-11 09:02:23.386139 2024-09-11 09:02:23.386141 1390cd4e-ee28-4db7-92ff-b98f9524d77d {"md5": "9d78decf260ca88a5ce86725d7df15bc", "pid": "139622675", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139622675", "source": "GND"}], "date_of_birth": "1971", "preferred_name": "Schwandt, Michael", "country_associated": "gw", "authorized_access_point": "Schwandt, Michael, 1971-", "biographical_information": ["Publikationen zu kritischer Theorie, Antisemitismus und Gedenkstättenpädagogik"]} 1 +2024-09-11 09:02:23.452133 2024-09-11 09:02:23.452135 2d801655-02b1-4a0d-b846-5d1443ac0c67 {"md5": "e9d695e2b8ff364fd3440741ded1e5dd", "pid": "139626417", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139626417", "source": "GND"}], "date_of_birth": "1968", "preferred_name": "Bernheimer, Andrew", "country_associated": "xxu", "parallel_access_point": ["Bernheimer, Andrew, 1968-"], "authorized_access_point": "Bernheimer, Andrew, 1968-", "biographical_information": ["US-Amerikan. Architekt"]} 1 +2024-09-11 09:02:23.511906 2024-09-11 09:02:23.511912 fc045f7f-bdb0-4388-bebc-927bdf8fe1cb {"md5": "ad5b3377ae51dc3447575fbbeac259e1", "pid": "13962693X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13962693X", "source": "GND"}], "date_of_birth": "24.06.1944", "preferred_name": "Goetz, Arturo", "country_associated": "ag", "authorized_access_point": "Goetz, Arturo, 1944-", "biographical_information": ["Argentin. Filmschauspieler"]} 1 +2024-09-11 09:02:23.568705 2024-09-11 09:02:23.568708 c1895ba5-221b-40d4-86cd-733cf7d69c22 {"md5": "4570e43da1fb07b52cee17d216b4c3ec", "pid": "139630147", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139630147", "source": "GND"}], "date_of_birth": "1979", "preferred_name": "Dubbini, Rachele", "country_associated": "it", "authorized_access_point": "Dubbini, Rachele, 1979-"} 1 +2024-09-11 09:02:23.625116 2024-09-11 09:02:23.62512 764eb547-4fca-4032-af57-3a914a3c30c5 {"md5": "241c63a52ef29c75c7b49ffda7689872", "pid": "139649263", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139649263", "source": "GND"}], "date_of_birth": "1936", "preferred_name": "Goeßler, Jürgen", "authorized_access_point": "Goeßler, Jürgen, 1936-", "biographical_information": ["Dresden, Techn. Univ., Fak. Bau-, Wasser- und Forstwesen, Diplomarbeit, 1978"]} 1 +2024-09-11 09:02:24.388129 2024-09-11 09:02:24.388133 20203926-6b48-45a8-829b-bf8429fea5e3 {"md5": "9227c8afc5af431ce7f6f2a92f3881e3", "pid": "13976674X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13976674X", "source": "GND"}], "variant_name": ["Müller, Ludger Josef"], "date_of_birth": "1910", "preferred_name": "Müller, Ludger", "country_associated": "gw", "variant_access_point": ["Müller, Ludger Josef, 1910-"], "authorized_access_point": "Müller, Ludger, 1910-", "biographical_information": ["Münster, Med. Diss., 1936"]} 1 +2024-09-11 09:02:23.682579 2024-09-11 09:02:23.682582 3686edd2-e39e-49a1-b9e3-1beead037dbb {"md5": "573f41a55c58665dce5e1255d8146466", "pid": "139654526", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139654526", "source": "GND"}], "variant_name": ["Mattig, Heinrich von der"], "date_of_birth": "1827", "date_of_death": "07.07.1898", "preferred_name": "Wallmann, Heinrich", "country_associated": "au", "variant_access_point": ["Mattig, Heinrich von der, 1827-1898"], "authorized_access_point": "Wallmann, Heinrich, 1827-1898", "biographical_information": ["Oberösterreichischer Arzt, auch Lyriker und Mundartdichter; 1862: Dr. der Medizin u. Chirurgie, Magister der Geburtshilfe, k.k. Oberfeldarzt, Docent an der k.k. Universität zu Wien, emeritierter Prosector der k.k. med.-chir. Josefs-Akademie"]} 1 +2024-09-11 09:02:23.738451 2024-09-11 09:02:23.738454 21731e2a-dfb0-4058-b651-4915e129e28a {"md5": "a78cb1cf0e81b89e44ef9fe4956e988e", "pid": "139655395", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139655395", "source": "GND"}], "variant_name": ["Dong, Ling Han", "Dong Ling Han"], "preferred_name": "Han, Dong Ling", "variant_access_point": ["Dong, Ling Han", "Dong Ling Han"], "authorized_access_point": "Han, Dong Ling", "biographical_information": ["Tätig am Dep. of Industrial and Systems Engineering, National Univ. of Singapore"]} 1 +2024-09-11 09:02:23.796021 2024-09-11 09:02:23.796024 9ad9c1db-984f-458c-b57e-5bcf9fb9557c {"md5": "03d5f9ba68f780a20650ecce21b47139", "pid": "139659382", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139659382", "source": "GND"}], "date_of_birth": "1959", "preferred_name": "Bär, Frank", "authorized_access_point": "Bär, Frank, 1959-", "biographical_information": ["Dresden, Techn. Univ., Fak. Forst-, Geo- und Hydrowiss., Diss, 2009"]} 1 +2024-09-11 09:02:23.854144 2024-09-11 09:02:23.854149 9e2f0d05-feef-4fa2-8f7d-b31e2ec29973 {"md5": "172a16051f767d7496bc2710811d9bca", "pid": "139668136", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "qualifier": "Familie", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139668136", "source": "GND"}], "preferred_name": "Watty, Familie", "country_associated": "gw", "authorized_access_point": "Watty, Familie", "biographical_information": ["Hamburger Familie mit Nebenlinien in Rheinland-Westfalen, Mexiko u. d. USA"]} 1 +2024-09-11 09:02:23.923351 2024-09-11 09:02:23.923353 fb249518-f135-46ae-969b-d2360f0aaf05 {"md5": "ec0bfc2408fb5eda131ee4fba4f861b4", "pid": "139695125", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["jpn", "chi"], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139695125", "source": "GND"}], "preferred_name": "Nakajima, Shō", "country_associated": "ja", "authorized_access_point": "Nakajima, Shō", "biographical_information": ["Japan. Mongolist"]} 1 +2024-09-11 09:02:23.979148 2024-09-11 09:02:23.979152 6c73d19e-71c6-4259-a629-9bd190edc89a {"md5": "2635ab3478b9056e6766e18e900add66", "pid": "139705104", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139705104", "source": "GND"}], "date_of_birth": "1954", "preferred_name": "Birka, Hubertus", "authorized_access_point": "Birka, Hubertus, 1954-", "biographical_information": ["Dresden, Techn. Univ., Fak. Bau-, Wasser- und Forstwesen, Diplomarbeit, 1976"]} 1 +2024-09-11 09:02:24.039979 2024-09-11 09:02:24.039982 d5b76cbb-836f-47da-8c25-50f3c8e41a55 {"md5": "252e09038279bf5df27a45c3996a3522", "pid": "139708162", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139708162", "source": "GND"}], "date_of_birth": "21.11.1870", "date_of_death": "07.08.1944", "preferred_name": "Hopf, Friedrich Eugen", "country_associated": "gw", "authorized_access_point": "Hopf, Friedrich Eugen, 1870-1944", "biographical_information": ["dt. Dermatologe und Kommunalpolitiker, eröffnete 1898 eine private Hautklinik in Dresden; 1901-1911 Vorsitzender der Ortsgruppe Dresden des Alldeutschen Verbandes; 1903-1911 Stadtverordneter in Dresden"]} 1 +2024-09-11 09:02:24.0934 2024-09-11 09:02:24.093402 5b24db63-7587-4886-a305-42d6eb974e46 {"md5": "862c463c0af81f507d398587bd6141c6", "pid": "139708669", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139708669", "source": "GND"}], "variant_name": ["Jacob, Adam"], "date_of_birth": "XX.XX.1671", "date_of_death": "20.07.1743", "preferred_name": "Jacobi, Adam", "country_associated": "gw", "variant_access_point": ["Jacob, Adam, 1671-1743"], "authorized_access_point": "Jacobi, Adam, 1671-1743", "biographical_information": ["An Bauarbeiten an Leipziger Kirchen beteiligt, 1733 beim Umbau des Leipziger Rathauses erwähnt"]} 1 +2024-09-11 09:02:24.151656 2024-09-11 09:02:24.15166 1e37b87a-ded0-45cc-8a32-1f82de74042a {"md5": "fec05a51bdb6cdd6bb6445539e5ddede", "pid": "139708952", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139708952", "source": "GND"}], "date_of_birth": "25.11.1919", "date_of_death": "09.09.1986", "preferred_name": "Shackleton, Robert", "country_associated": "xxk", "authorized_access_point": "Shackleton, Robert, 1919-1986", "biographical_information": ["Brit. Romanist, Bibliothekar; Bibliothekar am Brasenose College, lehrte 1946-1966 französische Literatur, 1966-1979 Direktor der Bodleian Library, 1979-1986 Marshal Foch Chair of French Literature an der Universität Oxford"]} 1 +2024-09-11 09:02:24.209474 2024-09-11 09:02:24.209479 cde6628d-0896-449f-8044-573a2542e84a {"md5": "efea0bd8cd778008dc30867b05e2a866", "pid": "13971166X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13971166X", "source": "GND"}], "date_of_birth": "1644", "date_of_death": "1691", "preferred_name": "Hinlopen, Gerard", "authorized_access_point": "Hinlopen, Gerard, 1644-1691"} 1 +2024-09-11 09:02:24.264833 2024-09-11 09:02:24.264837 626bc221-cebf-42a9-8876-3ab9b543828f {"md5": "0f23291a66251aad672055d9624a8245", "pid": "139717676", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139717676", "source": "GND"}], "preferred_name": "Lee, Thomas H.", "country_associated": "xxu", "authorized_access_point": "Lee, Thomas H."} 1 +2024-09-11 09:02:24.323759 2024-09-11 09:02:24.323764 8b7c6ad6-6617-4fc1-80ef-ef80bb569453 {"md5": "c208739a806bf4db282d1504d180238c", "pid": "139733256", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139733256", "source": "GND"}], "preferred_name": "Fritz, Martin", "country_associated": "gw", "authorized_access_point": "Fritz, Martin", "biographical_information": ["Promotion an der Ludwig-Maximilians-Univ. München (1990)"]} 1 +2024-09-11 09:02:24.454324 2024-09-11 09:02:24.454328 6aa32d01-12e6-49e0-83d3-cc5acc00a3ff {"md5": "4191ef319e6d2e67cd925517c3f5e130", "pid": "139769366", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139769366", "source": "GND"}], "variant_name": ["Abraham, Ernst A."], "date_of_birth": "1906", "preferred_name": "Abraham, Ernst August", "variant_access_point": ["Abraham, Ernst A., 1906-"], "authorized_access_point": "Abraham, Ernst August, 1906-", "biographical_information": ["Dipl.-Volkswirt"]} 1 +2024-09-11 09:02:24.520988 2024-09-11 09:02:24.520991 7af66748-1c64-41c6-b529-71e24fbf7b29 {"md5": "8939aa8fc950a507f2ea4774a025f1c0", "pid": "139774807", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "qualifier": "Familie", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139774807", "source": "GND"}], "date_of_birth": "ca. 13. Jh.", "preferred_name": "Gützkow, Familie", "country_associated": "gw", "authorized_access_point": "Gützkow, Familie, ca. 13. Jh.-", "biographical_information": ["Grafen von Gützkow; pommersches Grafengeschlecht"]} 1 +2024-09-11 09:02:24.587864 2024-09-11 09:02:24.587866 accd028b-21fb-40fe-81ff-72f81a296e9e {"md5": "ad7cbb96a5d60bd4db868708b831b866", "pid": "139794204", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139794204", "source": "GND"}], "date_of_birth": "1949", "preferred_name": "Hansen, Svein Bendik", "country_associated": "no", "authorized_access_point": "Hansen, Svein Bendik, 1949-"} 1 +2024-09-11 09:02:24.654721 2024-09-11 09:02:24.654725 fde612c4-4c55-4593-b416-83ba7d39b811 {"md5": "ec1e07c2679703306971c9e46a7de85b", "pid": "139796282", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139796282", "source": "GND"}], "preferred_name": "Cappello, Silvia", "authorized_access_point": "Cappello, Silvia", "biographical_information": ["PhD in English studies"]} 1 +2024-09-11 09:02:24.710259 2024-09-11 09:02:24.710263 3fb99e85-6df2-4a4d-b3a0-4fa4ab20da1a {"md5": "9584fed772e238a9b29747b063129a13", "pid": "139822542", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139822542", "source": "GND"}], "variant_name": ["Summerer, Carolin"], "date_of_birth": "1982", "preferred_name": "Hinkmann, Carolin", "country_associated": "gw", "variant_access_point": ["Summerer, Carolin, 1982-"], "authorized_access_point": "Hinkmann, Carolin, 1982-", "biographical_information": ["Diss. Medizinische Fakaltät an der Universität Erlangen-Nürnberg"]} 1 +2024-09-11 09:02:24.759484 2024-09-11 09:02:24.759486 3982a081-0348-45a5-bf17-b6f48517c3a0 {"md5": "dde5ab50695da4f4b627e0fb4b141e70", "pid": "13983043X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/13983043X", "source": "GND"}], "date_of_birth": "19.11.1926", "date_of_death": "08.02.2000", "preferred_name": "Ritsch, Felicitas", "country_associated": "gw", "authorized_access_point": "Ritsch, Felicitas, 1926-2000"} 1 +2024-09-11 09:02:24.816483 2024-09-11 09:02:24.816485 7bed12fd-7ca1-465b-b746-c0b8adebc686 {"md5": "1bc44d3f135bf98865994ffa3f657354", "pid": "139856072", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139856072", "source": "GND"}], "date_of_birth": "1973", "preferred_name": "Popp, Julius", "country_associated": "gw", "authorized_access_point": "Popp, Julius, 1973-"} 1 +2024-09-11 09:02:24.872079 2024-09-11 09:02:24.872082 3cbad562-8ade-46d4-bf6a-c541d9170786 {"md5": "6095c3081e0c5d85fe6fbbae6ee234a8", "pid": "139863915", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139863915", "source": "GND"}], "date_of_birth": "09.05.1939", "date_of_death": "07.01.2014", "preferred_name": "Lauer, David D.", "country_associated": "gw", "authorized_access_point": "Lauer, David D., 1939-2014", "biographical_information": ["Dt. Bildhauer"]} 1 +2024-09-11 09:02:24.928662 2024-09-11 09:02:24.928665 501c3d0e-9d81-4cc2-b388-6ea713222cf3 {"md5": "027db36a4567f55afab7affe5afd5df7", "pid": "139875484", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139875484", "source": "GND"}], "variant_name": ["Yu-Hwa, Huang"], "date_of_birth": "12.02.1979", "preferred_name": "Huang, Yu-Hwa", "variant_access_point": ["Yu-Hwa, Huang, 1979-"], "authorized_access_point": "Huang, Yu-Hwa, 1979-", "biographical_information": ["Diss. Universität Würzburg, Fakultät für Biologie"]} 1 +2024-09-11 09:02:24.985518 2024-09-11 09:02:24.98552 aad80973-b883-421e-9a7d-2716ed36b87a {"md5": "9ab4024085c2be30a64ff37c38fbdc2d", "pid": "139879994", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139879994", "source": "GND"}], "variant_name": ["Schuster, Kristin"], "date_of_birth": "ca. 20. Jh.", "preferred_name": "Horstmann, Kristin", "country_associated": "gw", "variant_access_point": ["Schuster, Kristin, ca. 20. Jh."], "authorized_access_point": "Horstmann, Kristin, ca. 20. Jh."} 1 +2024-09-11 09:02:25.037585 2024-09-11 09:02:25.037588 fb2067ae-34e4-49d4-b283-058890964a91 {"md5": "7ae51e7e7905fe5b17160a152d986318", "pid": "139889345", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139889345", "source": "GND"}], "variant_name": ["Fraser, Helen Beatrice", "Fraser, Helen B."], "preferred_name": "Fraser, Helen", "variant_access_point": ["Fraser, Helen Beatrice", "Fraser, Helen B."], "authorized_access_point": "Fraser, Helen", "biographical_information": ["Schwerpunkte u.a. Phonetik, Phonologie, Psycholinguistik, Geschichte und Philosophie der Linguistik, Englisch in Australien"]} 1 +2024-09-11 09:02:25.094315 2024-09-11 09:02:25.09432 6c4f59f9-1016-46e1-9e0a-1ab94da60f56 {"md5": "3de412f50f4eea836fc037a5d1e961c4", "pid": "139894535", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139894535", "source": "GND"}], "variant_name": ["Ebner, Stephan"], "date_of_birth": "1983", "preferred_name": "Ebner, Stephan M.", "country_associated": "gw", "variant_access_point": ["Ebner, Stephan, 1983-"], "authorized_access_point": "Ebner, Stephan M., 1983-", "biographical_information": ["Seelstrang & Partner mbB, München"]} 1 +2024-09-11 09:02:25.150984 2024-09-11 09:02:25.150987 5436d201-5ec4-4a28-a849-6303011d2d8e {"md5": "3d921759c630258483ab5fcc5235e9f5", "pid": "139894977", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139894977", "source": "GND"}], "preferred_name": "Leunen, Nico", "authorized_access_point": "Leunen, Nico"} 1 +2024-09-11 09:02:28.071498 2024-09-11 09:02:28.071502 121e39be-61f5-47a5-b742-493b3afe2b9f {"md5": "17629cee68a7b82772fd859f8013ae78", "pid": "140707921", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140707921", "source": "GND"}], "date_of_birth": "04.06.1970", "preferred_name": "Wulf, Detlef", "authorized_access_point": "Wulf, Detlef, 1970-"} 1 +2024-09-11 09:02:25.205654 2024-09-11 09:02:25.205656 7e96dbe6-8858-4d41-a638-5fac705ff4dd {"md5": "9465c79ce746577b78c3c10d6fbf27c7", "pid": "139925988", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139925988", "source": "GND"}], "variant_name": ["Milne, Herbert John Mansfield", "Mansfield Milne, Herbert John", "Milne, Herbert J. M.", "Milne, Herbert J."], "date_of_birth": "1888", "date_of_death": "1965", "preferred_name": "Milne, H. J. M.", "country_associated": "xxk", "variant_access_point": ["Milne, Herbert John Mansfield, 1888-1965", "Mansfield Milne, Herbert John, 1888-1965", "Milne, Herbert J. M., 1888-1965", "Milne, Herbert J., 1888-1965"], "authorized_access_point": "Milne, H. J. M., 1888-1965", "biographical_information": ["Kurator in der Manuskriptabteilung des British Museum"]} 1 +2024-09-11 09:02:25.258604 2024-09-11 09:02:25.258608 7b57082d-bff1-405b-832d-56aa3e493688 {"md5": "fcc45952a23e65c314c97c80c25d1e9a", "pid": "139939415", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139939415", "source": "GND"}], "date_of_birth": "1975", "preferred_name": "Wilzeck, Andreas", "country_associated": "gw", "authorized_access_point": "Wilzeck, Andreas, 1975-", "biographical_information": ["Diss. Fakultät Elektrotechnik und Informatik an der Universität Hannover"]} 1 +2024-09-11 09:02:25.314742 2024-09-11 09:02:25.314746 b1635bf1-b1dc-4bb7-be67-55f4df207e22 {"md5": "77933253b80a3c696ebb55dabf3bee50", "pid": "139942920", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139942920", "source": "GND"}], "date_of_birth": "1978", "preferred_name": "Lehmann, Ingo", "authorized_access_point": "Lehmann, Ingo, 1978-", "biographical_information": ["Freier Autor und Redakteur bei einer Film- und Fernsehproduktionsfirma"]} 1 +2024-09-11 09:02:25.372707 2024-09-11 09:02:25.37271 56b2b9d2-a9ed-42a7-83b1-1511639fe943 {"md5": "5493797f31f1ca7782f6f95f59884acc", "pid": "139946144", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139946144", "source": "GND"}], "variant_name": ["Rüffer, Balthasar, III.", "Rueffer, Balthasar"], "date_of_birth": "23.10.1569", "date_of_death": "12.09.1637", "preferred_name": "Rüffer, Balthasar", "country_associated": "gw", "variant_access_point": ["Rüffer, Balthasar, III., 1569-1637", "Rueffer, Balthasar, 1569-1637"], "authorized_access_point": "Rüffer, Balthasar, 1569-1637", "biographical_information": ["Kaufmann und Ratsherr in Schweinfurt, Reichsvogt"]} 1 +2024-09-11 09:02:25.433791 2024-09-11 09:02:25.433795 7aee8cfa-10e3-473a-bbd6-4957722b58f8 {"md5": "ac1a04951d3e71271e41cdf19e464349", "pid": "139952179", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139952179", "source": "GND"}], "variant_name": ["Hoang, Tri"], "date_of_birth": "20.01.1977", "preferred_name": "Hoang, Minh Tri", "country_associated": "gw", "variant_access_point": ["Hoang, Tri, 1977-"], "authorized_access_point": "Hoang, Minh Tri, 1977-", "biographical_information": ["Diss. Fachbereich Biochemie, Chemie und Pharmazie"]} 1 +2024-09-11 09:02:25.493319 2024-09-11 09:02:25.493323 87a72792-aa2c-4777-8053-bd47956f0e8a {"md5": "74b40748bc34b4b1bb5c0150b73b25e1", "pid": "139961968", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139961968", "source": "GND"}], "variant_name": ["De León, Facundo Ponce", "León, Facundo Ponce de"], "date_of_birth": "1978", "preferred_name": "Ponce de León, Facundo", "country_associated": "uy", "variant_access_point": ["De León, Facundo Ponce, 1978-", "León, Facundo Ponce de, 1978-"], "authorized_access_point": "Ponce de León, Facundo, 1978-", "biographical_information": ["Uruguay. Philosoph, Kommunikationswissenschaftler, Journalist"]} 1 +2024-09-11 09:02:25.548878 2024-09-11 09:02:25.548881 1cff107a-44ec-47d3-b0ab-514852a415c5 {"md5": "4f8e3489557770422298116e0967e8da", "pid": "139974199", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/139974199", "source": "GND"}], "preferred_name": "Brunner, Dominik", "authorized_access_point": "Brunner, Dominik", "biographical_information": ["Diss. Stuttgart 2009, Fakultät Konstruktions-, Produktions- und Fahrzeugtechnik"]} 1 +2024-09-11 09:02:25.611741 2024-09-11 09:02:25.611744 15dca7df-ec6c-4a18-bb91-cc8fe27bcb75 {"md5": "a5d3e4c81561221e76589d9c12b15b94", "pid": "14006253X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14006253X", "source": "GND"}], "date_of_birth": "1965", "preferred_name": "Kanda, Yutsuki", "country_associated": "ja", "parallel_access_point": ["神田, 由築, 1965-"], "authorized_access_point": "Kanda, Yutsuki, 1965-"} 1 +2024-09-11 09:02:25.672889 2024-09-11 09:02:25.672892 ee4300fa-c517-4b52-a0e4-d4e585c0d609 {"md5": "75bcc01b7b0a6c6190e0d54ea60d22c4", "pid": "140091319", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140091319", "source": "GND"}], "variant_name": ["Göbel, Christof Stefan"], "date_of_birth": "1966", "preferred_name": "Göbel, Christof", "country_associated": "gw", "variant_access_point": ["Göbel, Christof Stefan, 1966-"], "authorized_access_point": "Göbel, Christof, 1966-", "biographical_information": ["Aachen, Techn. Hochsch., Doktor der Ingenieurwiss., 2002"]} 1 +2024-09-11 09:02:25.733088 2024-09-11 09:02:25.733092 d7bb6df5-2e7d-4e86-8546-8ac4266e856e {"md5": "9e98e5b370f634d1dad664c706e98482", "pid": "140093427", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140093427", "source": "GND"}], "variant_name": ["González Giovine, María C.", "González Giovine, María", "González G., María Carmen", "González, María Carmen"], "date_of_birth": "19.10.1929", "preferred_name": "González Giovine, María Carmen", "country_associated": "py", "variant_access_point": ["González Giovine, María C., 1929-", "González Giovine, María, 1929-", "González G., María Carmen, 1929-", "González, María Carmen, 1929-"], "authorized_access_point": "González Giovine, María Carmen, 1929-", "biographical_information": ["Paraguay. Schriftstellerin u. Laiin"]} 1 +2024-09-11 09:02:25.786821 2024-09-11 09:02:25.786823 225aad45-7488-49ff-a0c8-87f7f0582194 {"md5": "96fc211b2eaf469ebd430d16bdebd4bc", "pid": "14010657X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14010657X", "source": "GND"}], "date_of_birth": "12.09.1936", "preferred_name": "Rahim, Habib-ur", "country_associated": "ii", "authorized_access_point": "Rahim, Habib-ur, 1936-", "biographical_information": ["lebt in Deutschland"]} 1 +2024-09-11 09:02:48.091068 2024-09-11 09:02:48.091071 134eccdc-8deb-4011-aa3c-b90be74d572f {"md5": "f4712052d48f2d02f5e283c8ac1b34b1", "pid": "320584739", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10331942-6", "source": "GND"}], "preferred_name": "Domino Kings", "authorized_access_point": "Domino Kings"} 1 +2024-09-11 09:02:25.845942 2024-09-11 09:02:25.845944 e6efb3ee-2d08-4dce-b6f6-be6432318ca3 {"md5": "075d2d915eaaa0b3e581b294772462ce", "pid": "140129510", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140129510", "source": "GND"}], "variant_name": ["Matsen, Brad"], "date_of_birth": "1944", "preferred_name": "Matsen, Bradford", "country_associated": "xxu", "variant_access_point": ["Matsen, Brad, 1944-"], "authorized_access_point": "Matsen, Bradford, 1944-"} 1 +2024-09-11 09:02:25.915659 2024-09-11 09:02:25.915662 b5c74dfa-f79a-436c-9276-74b8c4817a26 {"md5": "0e0d6816a3c9bb954ec9a9dbfb10b7fb", "pid": "140132872", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140132872", "source": "GND"}], "preferred_name": "Schöftner, Sandra", "country_associated": "au", "authorized_access_point": "Schöftner, Sandra", "biographical_information": ["Sankt Pölten, Fachhochschul-Diplomstudiengang Medienmanagement, Dipl.-Arb., 2009"]} 1 +2024-09-11 09:02:25.968091 2024-09-11 09:02:25.968095 2d5fcc78-0798-4f40-bcbb-64e4e832b8d9 {"md5": "5e4030f82d8d06d31bce4066e7ecf911", "pid": "140142622", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140142622", "source": "GND"}], "variant_name": ["Lapadula, Mario"], "date_of_birth": "07.07.1951", "preferred_name": "Lapadula, Mario H.", "country_associated": "ag", "variant_access_point": ["Lapadula, Mario, 1951-"], "authorized_access_point": "Lapadula, Mario H., 1951-", "biographical_information": ["Argentin. Schriftsteller"]} 1 +2024-09-11 09:02:26.029534 2024-09-11 09:02:26.029537 c1134f92-ef72-4eb6-af1e-98998d77fe89 {"md5": "3f941a5e6f5dc6dd401b4d40d1d6b353", "pid": "14016815X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14016815X", "source": "GND"}], "date_of_birth": "1982", "preferred_name": "Simon, Corinna Nora", "authorized_access_point": "Simon, Corinna Nora, 1982-", "biographical_information": ["Diss. Fachbereich Medizin, Univ. Marburg"]} 1 +2024-09-11 09:02:26.083226 2024-09-11 09:02:26.083229 eb574757-dfdd-4ec4-9c58-a3e803efb9e5 {"md5": "fee54ac527ad28336ca912dddb546104", "pid": "140169016", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140169016", "source": "GND"}], "preferred_name": "Harrison, Roger", "authorized_access_point": "Harrison, Roger", "biographical_information": ["Tätig bei Proctor & Gamble; tätig am Dep. of Industrial Administration, Yale Univ."]} 1 +2024-09-11 09:02:26.148727 2024-09-11 09:02:26.14873 6738ab90-9bc9-4b20-b4c9-c0b7efbb195d {"md5": "53e7a589e51934fe9bc7cf6f71cfa480", "pid": "140234381", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140234381", "source": "GND"}], "date_of_birth": "1955", "preferred_name": "Schöneich, Martin", "country_associated": "gw", "authorized_access_point": "Schöneich, Martin, 1955-", "biographical_information": ["Dt. Bildhauer"]} 1 +2024-09-11 09:02:26.204833 2024-09-11 09:02:26.204837 c5a5bb19-cbe6-4b50-a985-8bddabc65e79 {"md5": "26e816245620aa15e030a095fa6103d8", "pid": "140306412", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140306412", "source": "GND"}], "date_of_birth": "1956", "preferred_name": "Dragović, Ljubomir", "country_associated": "ci", "authorized_access_point": "Dragović, Ljubomir, 1956-", "biographical_information": ["Kroat. Schriftsteller, geb. in Sonković, lebt in Sonković und Banja Luka"]} 1 +2024-09-11 09:02:26.259852 2024-09-11 09:02:26.259857 bc945801-ab5c-46f7-8d80-5205794d46c1 {"md5": "90c7b71035e5e4d200b743051aabe6c1", "pid": "140322140", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140322140", "source": "GND"}], "date_of_birth": "10.07.1965", "preferred_name": "Schmiedel, Erwin", "country_associated": "au", "authorized_access_point": "Schmiedel, Erwin, 1965-", "biographical_information": ["Österr. Bariton und Schriftsteller"]} 1 +2024-09-11 09:02:26.310507 2024-09-11 09:02:26.310512 aeb99de2-568c-4b23-9852-bf27ea2cf549 {"md5": "b0cce2d0fa239c17b2e71efd8347d933", "pid": "140322213", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["per"], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140322213", "source": "GND"}], "variant_name": ["Hayati, A. A."], "date_of_birth": "1974", "preferred_name": "Ḥayātī, ʿAlī-ʿAbās", "country_associated": "ir", "variant_access_point": ["Hayati, A. A., 1974-"], "authorized_access_point": "Ḥayātī, ʿAlī-ʿAbās, 1974-"} 1 +2024-09-11 09:02:26.372237 2024-09-11 09:02:26.372241 e6b29dfa-ea17-42a9-829f-ed64aff83df7 {"md5": "a8fe08eb5e4bb92e842fc3831ace8176", "pid": "140327126", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140327126", "source": "GND"}], "variant_name": ["Zander, J."], "date_of_birth": "1937", "preferred_name": "Zander, Jan", "country_associated": "gw", "variant_access_point": ["Zander, J., 1937-"], "authorized_access_point": "Zander, Jan, 1937-"} 1 +2024-09-11 09:02:26.426128 2024-09-11 09:02:26.426131 80afbf4a-8683-457e-bf56-c224d482e46d {"md5": "19c3773ea54fb531db3a0e6a1ff6fb36", "pid": "140327606", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140327606", "source": "GND"}], "variant_name": ["Rossignol, Nicolas Mayer-"], "date_of_birth": "1968?", "preferred_name": "Mayer-Rossignol, Nicolas", "country_associated": "fr", "variant_access_point": ["Rossignol, Nicolas Mayer-, 1968?-"], "authorized_access_point": "Mayer-Rossignol, Nicolas, 1968?-", "biographical_information": ["Franz. Ingenieur beim Corps des Mines"]} 1 +2024-09-11 09:02:26.479454 2024-09-11 09:02:26.479456 3b36bcfb-410f-44ed-86b7-4610a218474e {"md5": "0e9a4c0d2b697dddd27bb2d65cf468cb", "pid": "140330720", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140330720", "source": "GND"}], "variant_name": ["Oliva Ordóñez, Emilio", "Ordóñez, Emilio Oliva"], "date_of_birth": "1949", "preferred_name": "Oliva, Emilio", "country_associated": "sp", "variant_access_point": ["Oliva Ordóñez, Emilio, 1949-", "Ordóñez, Emilio Oliva, 1949-"], "authorized_access_point": "Oliva, Emilio, 1949-"} 1 +2024-09-11 09:02:26.539504 2024-09-11 09:02:26.539509 fbe22fa3-e89e-4f97-89fa-0097cd9db692 {"md5": "c7fe60767903296a3143d8132f4e94a7", "pid": "140338683", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140338683", "source": "GND"}], "date_of_birth": "ca. um 1800", "preferred_name": "Rousset, S.", "country_associated": "fr", "authorized_access_point": "Rousset, S., ca. um 1800", "biographical_information": ["Franz. Jurist"]} 1 +2024-09-11 09:02:26.601069 2024-09-11 09:02:26.601074 afa67f9e-242a-4ba4-a08f-83a18de16ee8 {"md5": "015892a7338815631596feaf22dafcb8", "pid": "140345884", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140345884", "source": "GND"}], "date_of_birth": "14.04.1969", "preferred_name": "Kirchmann, Helmut", "country_associated": "gw", "authorized_access_point": "Kirchmann, Helmut, 1969-", "biographical_information": ["Diss. Fachbereich Sozial- und Verhaltenswissenschaften"]} 1 +2024-09-11 09:02:26.656143 2024-09-11 09:02:26.656147 69fb6ccb-53e9-4840-943a-9e2cfe0d3bb6 {"md5": "54c8a12e275f3bf43af8cceedf9f3b18", "pid": "140416919", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140416919", "source": "GND"}], "preferred_name": "Kern, Alexander", "authorized_access_point": "Kern, Alexander", "biographical_information": ["Magister, tätig am Institut für Unternehmensführung, WU Wien; Schwerpunkte: Unternehmensführung, Controlling und Beratung"]} 1 +2024-09-11 09:02:26.714068 2024-09-11 09:02:26.714071 2e995623-fea6-46b9-8ec1-97df5b3eb760 {"md5": "70f81b0f7dccffa80ba14bcdea3405c4", "pid": "140419799", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140419799", "source": "GND"}], "date_of_birth": "1955", "preferred_name": "Amendt, Christiane", "authorized_access_point": "Amendt, Christiane, 1955-", "biographical_information": ["Grund- und Hauptschullehrerin; Tätigkeit in der Förderung von LRS-Kindern"]} 1 +2024-09-11 09:02:26.768872 2024-09-11 09:02:26.768875 c03dc6c6-38eb-4c13-b1ef-8df9a241efd2 {"md5": "e067dfee6054cdc1fca3cc3c771e389e", "pid": "140424873", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140424873", "source": "GND"}], "date_of_birth": "1972", "preferred_name": "Stampone, Giuseppe", "country_associated": "it", "authorized_access_point": "Stampone, Giuseppe, 1972-"} 1 +2024-09-11 09:02:26.826129 2024-09-11 09:02:26.826133 4d8bbb52-1030-4f54-a8c9-9b3e7dc3b378 {"md5": "7fa617571defde781e79edf608c91437", "pid": "14043917X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14043917X", "source": "GND"}], "variant_name": ["Graaf, Arnaud Corneille Gerold André Claude de", "Graaf, A. C. G. A. C. de"], "date_of_birth": "1966", "preferred_name": "Graaf, Arnaud de", "variant_access_point": ["Graaf, Arnaud Corneille Gerold André Claude de, 1966-", "Graaf, A. C. G. A. C. de, 1966-"], "authorized_access_point": "Graaf, Arnaud de, 1966-", "biographical_information": ["niederländ. Jurist"]} 1 +2024-09-11 09:02:26.877606 2024-09-11 09:02:26.87761 0fea301d-610f-4446-b38c-8a79dd9e5be2 {"md5": "e6472e61eb555444b3c4a1990859b695", "pid": "140458123", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140458123", "source": "GND"}], "date_of_birth": "15.08.1938", "preferred_name": "Mills, David", "country_associated": "xxk", "parallel_access_point": ["Mills, David $d1938-, 1938-"], "authorized_access_point": "Mills, David, 1938-"} 1 +2024-09-11 09:02:26.929971 2024-09-11 09:02:26.929974 fe7e4e12-85ac-4f2e-90be-1e3069b22708 {"md5": "6ed822c28fd91b086852c8aced36bde5", "pid": "14046090X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14046090X", "source": "GND"}], "date_of_birth": "1981", "preferred_name": "Allermann, Lars", "authorized_access_point": "Allermann, Lars, 1981-", "biographical_information": ["Diss. Technische Universität Kaiserslautern, Fachbereich Mathematik"]} 1 +2024-09-11 09:02:26.986623 2024-09-11 09:02:26.986626 c90684f9-c398-472d-98ea-5b81284643e3 {"md5": "6bb530df96b57195b9ecbc2d25d13c1a", "pid": "140469923", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140469923", "source": "GND"}], "variant_name": ["Kornek, Christian Michael"], "date_of_birth": "1992", "preferred_name": "Kornek, Christian", "country_associated": "gw", "variant_access_point": ["Kornek, Christian Michael, 1992-"], "authorized_access_point": "Kornek, Christian, 1992-"} 1 +2024-09-11 09:02:27.04485 2024-09-11 09:02:27.044853 37071e5d-b414-4ac3-a611-b6e824197e61 {"md5": "4ba8f62ae273306303a453d00d600669", "pid": "140489096", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140489096", "source": "GND"}], "variant_name": ["Hampel, Georg", "Hampel, G.", "Schorsch", "Big Brother George"], "date_of_birth": "1953", "preferred_name": "Hampel, Schorsch", "country_associated": "gw", "variant_access_point": ["Hampel, Georg, 1953-", "Hampel, G., 1953-", "Schorsch, 1953-", "Big Brother George, 1953-"], "authorized_access_point": "Hampel, Schorsch, 1953-", "biographical_information": ["Mundart-Musiker"]} 1 +2024-09-11 09:02:27.098173 2024-09-11 09:02:27.098177 66b68dbb-6161-495b-8971-a4087acde829 {"md5": "0cab4bcb688bc53ad425ce6ac0f440fb", "pid": "140490841", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140490841", "source": "GND"}], "date_of_birth": "1975", "preferred_name": "Burdinski, Michael", "authorized_access_point": "Burdinski, Michael, 1975-", "biographical_information": ["Fachanwalt für Bau- und Architektenrecht", "hat am 20.02.2009 an d. Univ. Mannheim promoviert"]} 1 +2024-09-11 09:02:27.149627 2024-09-11 09:02:27.149631 f9766b64-5f57-4b7b-9fbf-a0b46a676dce {"md5": "60309115ec2063c650b1a923fb8fb415", "pid": "140499024", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140499024", "source": "GND"}], "date_of_birth": "1980", "preferred_name": "Marković, Ana", "authorized_access_point": "Marković, Ana, 1980-", "biographical_information": ["Diss. Fachbereich Verfahrenstechnik"]} 1 +2024-09-11 09:02:27.209709 2024-09-11 09:02:27.209713 4c53157f-77c2-409f-a6b4-83c3bdf410c3 {"md5": "8c5d0d9a7cd703e4606775cb0b060203", "pid": "140500634", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140500634", "source": "GND"}], "variant_name": ["Tabeau, Ewa Maria", "Tabeau, Eva", "Tabeau, E.", "Tabo, Ėva"], "date_of_birth": "26.04.1958", "preferred_name": "Tabeau, Ewa", "country_associated": "pl", "variant_access_point": ["Tabeau, Ewa Maria, 1958-", "Tabeau, Eva, 1958-", "Tabeau, E., 1958-", "Tabo, Ėva, 1958-"], "authorized_access_point": "Tabeau, Ewa, 1958-", "biographical_information": ["Studium der Statistik und Ökonometrie, Warschau; tätig am Netherlands Interdisciplinary Demographic Inst., NIDI, The Hague"]} 1 +2024-09-11 09:02:27.264138 2024-09-11 09:02:27.264142 bae79c2e-0999-4225-8c50-af1195504269 {"md5": "f072d57df8191ddd0bbdbd9caa3504a8", "pid": "140540830", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140540830", "source": "GND"}], "preferred_name": "Große, C.", "authorized_access_point": "Große, C."} 1 +2024-09-11 09:02:27.31716 2024-09-11 09:02:27.317164 46bfa478-3698-407b-87b7-43775fa5bf6b {"md5": "f0738ae724944102ff5e889ca63b9e71", "pid": "140543503", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140543503", "source": "GND"}], "variant_name": ["Bezdieka, Thomas Franz"], "preferred_name": "Bezděka, Tomáš František", "variant_access_point": ["Bezdieka, Thomas Franz"], "authorized_access_point": "Bezděka, Tomáš František", "biographical_information": ["Rats-Syndicus von Hradischtie"]} 1 +2024-09-11 09:02:27.367294 2024-09-11 09:02:27.367298 65f4101c-0d14-429b-ba20-38e597ed33e5 {"md5": "be9741985cae1b1a87871d1369abccb1", "pid": "14055260X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14055260X", "source": "GND"}], "variant_name": ["Schob, Fritz Klaus"], "date_of_birth": "1933", "preferred_name": "Schob, Klaus", "country_associated": "gw", "variant_access_point": ["Schob, Fritz Klaus, 1933-"], "authorized_access_point": "Schob, Klaus, 1933-"} 1 +2024-09-11 09:02:27.418587 2024-09-11 09:02:27.418591 525876c3-84ac-4007-abc4-4641cafaa0bc {"md5": "172fb185a40337937389f02bb4d57328", "pid": "140553533", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140553533", "source": "GND"}], "date_of_birth": "1590", "date_of_death": "1655", "preferred_name": "Vernazza, Livia", "country_associated": "it", "authorized_access_point": "Vernazza, Livia, 1590-1655", "biographical_information": ["Ehefrau von Giovanni de' Medici (1567-1621)"]} 1 +2024-09-11 09:02:27.470455 2024-09-11 09:02:27.470459 8b7c231f-a80e-4134-b312-90efd45e1276 {"md5": "0eb6a266a69d451d2d61c74083447ceb", "pid": "140564306", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140564306", "source": "GND"}], "variant_name": ["Thang, Nguyen", "Nguyen, Thang"], "preferred_name": "Nguyen Thang", "variant_access_point": ["Thang, Nguyen", "Nguyen, Thang"], "authorized_access_point": "Nguyen Thang", "biographical_information": ["Tätig am Centre for Analysis and Forecasting, Vietnam Academy of Social Sciences, Hanoi, Vietnam"]} 1 +2024-09-11 09:02:27.555581 2024-09-11 09:02:27.555585 27b04912-f584-4498-b712-3f5bbca546ad {"md5": "db8c8472c3b132cda4215e26f08d1c47", "pid": "140580204", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140580204", "source": "GND"}], "date_of_birth": "1979", "preferred_name": "Gast, Ronald", "authorized_access_point": "Gast, Ronald, 1979-", "biographical_information": ["Diss. Fachbereich Chemie und Pharmazie"]} 1 +2024-09-11 09:02:27.633628 2024-09-11 09:02:27.633631 03be7254-d25f-4a37-922b-84e98645ce9b {"md5": "d5fccafe53ac1a31c88ec4d58174e7bd", "pid": "140595716", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140595716", "source": "GND"}], "date_of_birth": "1943", "preferred_name": "Morozzi, Cristina", "country_associated": "it", "authorized_access_point": "Morozzi, Cristina, 1943-"} 1 +2024-09-11 09:02:27.684476 2024-09-11 09:02:27.68448 b7c86ca1-3ab2-4cd1-a03c-d9ed93db9649 {"md5": "83ba6ff11220bd2258bb6c2c2cb0b3ed", "pid": "140605304", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140605304", "source": "GND"}], "date_of_birth": "ca. 20./21. Jh.", "preferred_name": "Deppisch, Nico", "country_associated": "gw", "authorized_access_point": "Deppisch, Nico, ca. 20./21. Jh.", "biographical_information": ["E-Bassist"]} 1 +2024-09-11 09:02:27.738448 2024-09-11 09:02:27.73845 0e52c3e0-f876-4cdd-9532-9bd0b71d5f8b {"md5": "7b97f453682dff545d207bf4f37f002e", "pid": "140623388", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140623388", "source": "GND"}], "preferred_name": "Graham, Harriet", "authorized_access_point": "Graham, Harriet"} 1 +2024-09-11 09:02:27.791258 2024-09-11 09:02:27.791261 43af3def-bd99-4c22-8b19-ed5b02f6562d {"md5": "85e69c6e6fb83a2baf6c58880b9024f3", "pid": "140655387", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140655387", "source": "GND"}], "variant_name": ["Jacobs, Johannes", "Magnus, Jac. Johs. Carl"], "date_of_birth": "19.08.1812", "date_of_death": "XX.XX.1879", "preferred_name": "Magnus, Jacob Johannes Carl", "country_associated": "dk", "variant_access_point": ["Jacobs, Johannes, 1812-1879", "Magnus, Jac. Johs. Carl, 1812-1879"], "parallel_access_point": ["Magnus, Jacob Johannes Carl, 1812-1879"], "authorized_access_point": "Magnus, Jacob Johannes Carl, 1812-1879"} 1 +2024-09-11 09:02:27.842217 2024-09-11 09:02:27.842221 3cbd70f9-300c-4796-82de-9f4072e51643 {"md5": "2f880cca0f924c38f50965cef3892b3f", "pid": "140665927", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140665927", "source": "GND"}], "variant_name": ["Meining, Wong", "Meiling Wong"], "preferred_name": "Wong, Meiling", "country_associated": "cc", "variant_access_point": ["Meining, Wong", "Meiling Wong"], "authorized_access_point": "Wong, Meiling", "biographical_information": ["Tätig am Dep. of Industrial Engineering and Management, National Chinyi Univ. of Technology, Taipin, Taiwan; tätig am Dep. of Industrial Engineering and Enterprise Information, Tunghai Univ., Taichung, China"]} 1 +2024-09-11 09:02:27.891478 2024-09-11 09:02:27.891482 c29d5a0c-2a99-44bf-a1a4-7e4bdf602256 {"md5": "af3d2b330e62d947a60ada93dcaee3bb", "pid": "140671153", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140671153", "source": "GND"}], "date_of_birth": "1973", "preferred_name": "Körner, Sarah", "authorized_access_point": "Körner, Sarah, 1973-"} 1 +2024-09-11 09:02:27.950826 2024-09-11 09:02:27.95083 d44be0fd-23a3-42dd-887b-95a21fa67e84 {"md5": "43ff2b0f8f2eba1a1ab65c995abe98ac", "pid": "140699562", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140699562", "source": "GND"}], "variant_name": ["Klemp, Wilhelm Rudolf"], "date_of_birth": "1908", "preferred_name": "Klemp, Wilhelm", "variant_access_point": ["Klemp, Wilhelm Rudolf, 1908-"], "authorized_access_point": "Klemp, Wilhelm, 1908-"} 1 +2024-09-11 09:02:28.010705 2024-09-11 09:02:28.010709 46cf82d0-73e8-42f9-9d8d-c888c7838390 {"md5": "7caa5aea37dd88db443b7630206a3076", "pid": "140703063", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140703063", "source": "GND"}], "preferred_name": "Krings, Fabian", "authorized_access_point": "Krings, Fabian", "biographical_information": ["Leitet seit 2010 den German Desk bei DLA Pieper in Wien"]} 1 +2024-09-11 09:02:28.126202 2024-09-11 09:02:28.126205 42b3d268-4732-4e64-bd36-6e4b90355f38 {"md5": "224f22026dec74397b0b31ddf62b3843", "pid": "140723269", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "qualifier": "Crespi", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140723269", "source": "GND"}], "variant_name": ["Lleonard, Crespi", "Crespi, Leonardo", "Crespi, Lleonard", "Crespi, Leonart"], "preferred_name": "Leonardo, Crespi", "country_associated": "sp", "variant_access_point": ["Lleonard, Crespi", "Crespi, Leonardo", "Crespi, Lleonard", "Crespi, Leonart"], "authorized_access_point": "Leonardo, Crespi"} 1 +2024-09-11 09:02:28.221013 2024-09-11 09:02:28.221016 26420880-9dca-45c0-bb2f-9e639d513713 {"md5": "340e9490875fc918505f95ed94c009b2", "pid": "140724656", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140724656", "source": "GND"}], "variant_name": ["Flórez, José Gabriel Aguirre"], "preferred_name": "Aguirre Flórez, José Gabriel", "country_associated": "ck", "variant_access_point": ["Flórez, José Gabriel Aguirre"], "authorized_access_point": "Aguirre Flórez, José Gabriel", "biographical_information": ["Kolumbian. Wirtschaftsprüfer und Finanzexperte"]} 1 +2024-09-11 09:02:28.289722 2024-09-11 09:02:28.289725 ba66465a-426b-47f3-a166-891fe202f2ad {"md5": "3a54a51d472bca58c0866c0d3d9dea1e", "pid": "140749195", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140749195", "source": "GND"}], "date_of_birth": "1972", "preferred_name": "Biefeld, Jörg", "authorized_access_point": "Biefeld, Jörg, 1972-", "biographical_information": ["Diss. Fachbereich Sozialwissenschaften, Medien und Sport der Univ. Mainz"]} 1 +2024-09-11 09:02:28.347198 2024-09-11 09:02:28.347202 83476ac7-d849-436c-8b37-e71d99c6a9d8 {"md5": "66aa84710b8ef56aed5653bc0ae7f48c", "pid": "140749861", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["jpn", "eng"], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140749861", "source": "GND"}], "variant_name": ["タケウチ, ジュンイチ"], "date_of_birth": "1941", "preferred_name": "Takeuchi, Jun'ichi", "country_associated": "ja", "variant_access_point": ["タケウチ, ジュンイチ, 1941-"], "parallel_access_point": ["竹内, 順一, 1941-"], "authorized_access_point": "Takeuchi, Jun'ichi, 1941-"} 1 +2024-09-11 09:02:28.406397 2024-09-11 09:02:28.406401 446731fc-65c7-475e-bdff-e310c2e4ed5c {"md5": "0d536ee97a788b07921ccaef290a2e5b", "pid": "140751149", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140751149", "source": "GND"}], "date_of_birth": "1886", "date_of_death": "1953", "preferred_name": "Boecker, Eduard", "authorized_access_point": "Boecker, Eduard, 1886-1953"} 1 +2024-09-11 09:02:28.462363 2024-09-11 09:02:28.462367 2cb53dcf-cbb9-4fb8-9e94-aab25aa22068 {"md5": "54da3cb69709ec399b019652cc7dd01e", "pid": "140764143", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140764143", "source": "GND"}], "date_of_birth": "10.02.1938", "preferred_name": "Siegel, Manfred", "country_associated": "gw", "authorized_access_point": "Siegel, Manfred, 1938-"} 1 +2024-09-11 09:02:28.523577 2024-09-11 09:02:28.52358 8f601393-3a76-41cb-93dc-482c8c70a6b6 {"md5": "4b60144c8c183a2ef867992eb6205b39", "pid": "140781498", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["dan"], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140781498", "source": "GND"}], "variant_name": ["Kvist, Ellen Østergaard"], "date_of_birth": "02.01.1915", "date_of_death": "19.11.2011", "preferred_name": "Buttenschøn, Ellen", "country_associated": "dk", "variant_access_point": ["Kvist, Ellen Østergaard, 1915-2011"], "authorized_access_point": "Buttenschøn, Ellen, 1915-2011", "biographical_information": ["Bibliothekarin, Literaturkritikerin, Schriftstellerin"]} 1 +2024-09-11 09:02:28.579438 2024-09-11 09:02:28.579442 160ea614-a0c7-4008-8faa-d1a7bb1aca52 {"md5": "b6b2f7242a5ab57955ed596695163b18", "pid": "140791434", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140791434", "source": "GND"}], "variant_name": ["Helbing, K.", "Helbing, Kurt Wilhelm", "Helbing, K. W.", "Helbing, Kurt W."], "date_of_birth": "20.10.1939", "date_of_death": "26.02.2022", "preferred_name": "Helbing, Kurt", "country_associated": "gw", "variant_access_point": ["Helbing, K., 1939-2022", "Helbing, Kurt Wilhelm, 1939-2022", "Helbing, K. W., 1939-2022", "Helbing, Kurt W., 1939-2022"], "authorized_access_point": "Helbing, Kurt, 1939-2022", "biographical_information": ["Hochschuldozent und Professor für Betriebsanlagen an der Ingenieurhochschule / Technischen Hochschule Wismar (1972-92), Professor für Fabriksysteme und Materialflusstechnik an der Fakultät für Maschinenbau und Schiffstechnik an der Universität Rostock (1992-2005)"]} 1 +2024-09-11 09:02:28.637115 2024-09-11 09:02:28.63712 c2c1c78a-2fb6-4183-b7b9-127ecb35b5a2 {"md5": "2a00721af62fc466f3246281d173283a", "pid": "140807268", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140807268", "source": "GND"}], "preferred_name": "Pietrantozzi, Franco", "country_associated": "it", "authorized_access_point": "Pietrantozzi, Franco"} 1 +2024-09-11 09:02:28.700776 2024-09-11 09:02:28.70078 213cef87-24d4-4735-b1ec-7a1adfbacf0d {"md5": "45145cc460bab2efd394aad45956e69a", "pid": "140808337", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140808337", "source": "GND"}], "variant_name": ["Ma Su", "Massu", "Massoud", "马, 苏"], "date_of_birth": "1981", "preferred_name": "Ma, Su", "country_associated": "cc", "variant_access_point": ["Ma Su, 1981-", "Massu, 1981-", "Massoud, 1981-", "马, 苏, 1981-"], "parallel_access_point": ["马苏, 1981-"], "authorized_access_point": "Ma, Su, 1981-"} 1 +2024-09-11 09:02:28.766788 2024-09-11 09:02:28.766792 d7d2c7f1-6059-43c0-994a-505244c6613c {"md5": "bbc71dfc2eba8cf642e2978379217800", "pid": "140818197", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140818197", "source": "GND"}], "date_of_birth": "1954", "preferred_name": "Latzke, Maria E.", "country_associated": "gw", "authorized_access_point": "Latzke, Maria E., 1954-"} 1 +2024-09-11 09:02:28.819764 2024-09-11 09:02:28.819768 de50b8cc-cb80-42d7-b695-239f18b2d668 {"md5": "a135e8bd741a7bc85af8c43ead7f671d", "pid": "140835822", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140835822", "source": "GND"}], "date_of_birth": "1976", "preferred_name": "Sinclair, Alexia", "country_associated": "at", "authorized_access_point": "Sinclair, Alexia, 1976-"} 1 +2024-09-11 09:02:28.880365 2024-09-11 09:02:28.88037 e2048ad4-075a-4a2a-9ad4-4c6cfde4ea09 {"md5": "41b221196f753ca7fad204a690985bcd", "pid": "140848363", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140848363", "source": "GND"}], "variant_name": ["Stock, Elfriede Gertrud Renate", "Zastrow, Elfriede Gertrud Renate"], "date_of_birth": "28.04.1928", "preferred_name": "Stock, Renate", "country_associated": "gw", "variant_access_point": ["Stock, Elfriede Gertrud Renate, 1928-", "Zastrow, Elfriede Gertrud Renate, 1928-"], "authorized_access_point": "Stock, Renate, 1928-"} 1 +2024-09-11 09:02:28.937925 2024-09-11 09:02:28.937929 c53f8bd3-df6e-4646-add2-0abdff68018d {"md5": "3bceb124a6a95219b262a2b25b464ff5", "pid": "140849963", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140849963", "source": "GND"}], "preferred_name": "Margariti, Myrsini", "country_associated": "gr", "authorized_access_point": "Margariti, Myrsini"} 1 +2024-09-11 09:02:28.989217 2024-09-11 09:02:28.989219 e32d8375-10c1-4123-967d-c4323815a006 {"md5": "03240ec6369cbe7c0e1e43dba0537176", "pid": "14085200X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14085200X", "source": "GND"}], "variant_name": ["Jennex, Murray", "Jennex, Murray Eugene"], "date_of_birth": "1956", "preferred_name": "Jennex, Murray E.", "country_associated": "xxu", "variant_access_point": ["Jennex, Murray, 1956-", "Jennex, Murray Eugene, 1956-"], "authorized_access_point": "Jennex, Murray E., 1956-", "biographical_information": ["Präsident der Foundation for Knowledge Management"]} 1 +2024-09-11 09:02:29.044716 2024-09-11 09:02:29.04472 88a35857-6d8f-4e07-9f0f-e92a59a24188 {"md5": "b5c4476c65a2e340f9ec6ee66b6f5d22", "pid": "14085603X", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14085603X", "source": "GND"}], "variant_name": ["Figarova, Sophia", "Figarova, S. R.", "Figarova, S."], "preferred_name": "Figarova, Sophia R.", "country_associated": "aj", "variant_access_point": ["Figarova, Sophia", "Figarova, S. R.", "Figarova, S."], "authorized_access_point": "Figarova, Sophia R."} 1 +2024-09-11 09:02:29.097387 2024-09-11 09:02:29.097391 92f9dab7-6aa5-47f7-8f6b-90c0344293ef {"md5": "bcf9320018c241af60eb4075cdc4a254", "pid": "140890335", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140890335", "source": "GND"}], "preferred_name": "Riedmann, Heinz", "country_associated": "gw", "authorized_access_point": "Riedmann, Heinz", "biographical_information": ["Dirigent, Chorleiter der Pfarrei Hl. Familie München, 20. / 21. Jh.", "Organist"]} 1 +2024-09-11 09:02:29.148569 2024-09-11 09:02:29.148573 4f4060e7-3e3f-4765-a16f-92c986521114 {"md5": "753eb0952da71873ed6bbf1047ee2652", "pid": "140891420", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140891420", "source": "GND"}], "variant_name": ["Superchumbo"], "date_of_birth": "1970", "preferred_name": "Stephan, Tom", "country_associated": "xxu", "variant_access_point": ["Superchumbo, 1970-"], "authorized_access_point": "Stephan, Tom, 1970-", "biographical_information": ["Amerikan. Progressive House-Musiker; Gründer des Musiklabels \\"Superchumbo\\""]} 1 +2024-09-11 09:02:29.214307 2024-09-11 09:02:29.214312 d535c9ef-c66d-4b8f-8bfc-c604d5e09228 {"md5": "20bef33fb0081db8c271248b4f2ac98d", "pid": "140897933", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140897933", "source": "GND"}], "variant_name": ["Arctander, Aug."], "date_of_birth": "1818", "date_of_death": "1878", "preferred_name": "Arctander, August Hjeronimus", "country_associated": "sw", "variant_access_point": ["Arctander, Aug., 1818-1878"], "authorized_access_point": "Arctander, August Hjeronimus, 1818-1878"} 1 +2024-09-11 09:02:29.270657 2024-09-11 09:02:29.270661 195a0f4c-4598-43c7-aa29-a5e995c0a041 {"md5": "b59720595890c3fffeba787b36e3d723", "pid": "140930531", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140930531", "source": "GND"}], "date_of_birth": "ca. Gegenwart", "preferred_name": "Rubendarío", "country_associated": "ve", "authorized_access_point": "Rubendarío, ca. Gegenwart"} 1 +2024-09-11 09:02:29.33179 2024-09-11 09:02:29.331792 3996741c-abc6-40d4-8900-f69877bd7f06 {"md5": "e4384e0540a424594f4ef1cb6efb4558", "pid": "140948317", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140948317", "source": "GND"}], "date_of_birth": "1994", "preferred_name": "Dowling, Kevin", "country_associated": "at", "authorized_access_point": "Dowling, Kevin, 1994"} 1 +2024-09-11 09:02:29.386262 2024-09-11 09:02:29.386265 415eddc2-6579-467d-8b56-ca36dd648164 {"md5": "3023f026abd9bc2d00b5fabde24ef632", "pid": "140952012", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140952012", "source": "GND"}], "preferred_name": "Mine, Yuko", "country_associated": "ja", "authorized_access_point": "Mine, Yuko", "biographical_information": ["geb. in Nagasaki, lebt seit 2000 in Deutschland, seit 2005 Dozentin an der Hochschule für Musik und Theater Rostock"]} 1 +2024-09-11 09:02:29.444913 2024-09-11 09:02:29.444917 b494f012-aa8e-4c50-ab0a-dbe3bf6b10ed {"md5": "bb748240981ab2cc6629d9046d1308cf", "pid": "140952985", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140952985", "source": "GND"}], "variant_name": ["Schmid, Christa"], "date_of_birth": "15.03.1939", "preferred_name": "Sturm, Christa", "country_associated": "gw", "variant_access_point": ["Schmid, Christa, 1939-"], "authorized_access_point": "Sturm, Christa, 1939-"} 1 +2024-09-11 09:02:29.498499 2024-09-11 09:02:29.498502 3c53a47b-57cb-40b8-b5ce-9c0523f77d16 {"md5": "1b71813529f9efe74045dba312a30066", "pid": "140960597", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140960597", "source": "GND"}], "variant_name": ["Szentklaray, Janos"], "date_of_birth": "19.03.1935", "preferred_name": "Szentkláray, János", "country_associated": "hu", "variant_access_point": ["Szentklaray, Janos, 1935-"], "authorized_access_point": "Szentkláray, János, 1935-"} 1 +2024-09-11 09:02:29.549216 2024-09-11 09:02:29.549221 c29288f0-003d-4c7d-8084-10606f1b20f7 {"md5": "16129ea6bac667238dfd2f404b484bfd", "pid": "140974571", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140974571", "source": "GND"}], "preferred_name": "Hauptmann, Susanne", "country_associated": "gw", "authorized_access_point": "Hauptmann, Susanne"} 1 +2024-09-11 09:02:29.601831 2024-09-11 09:02:29.601835 ec1f0ccd-8d5a-40a8-be06-fadd6f771d60 {"md5": "cd528733d551435913b6c7976e8f7752", "pid": "14098643X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14098643X", "source": "GND"}], "preferred_name": "Nigst, Johann Michael", "country_associated": "gw", "authorized_access_point": "Nigst, Johann Michael", "biographical_information": ["Respondent in München"]} 1 +2024-09-11 09:02:29.652655 2024-09-11 09:02:29.652657 778a91be-8ac8-44b5-9e3f-40311daad3d6 {"md5": "4d4a738cfd1adc866d9174a97af1d200", "pid": "140996524", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/140996524", "source": "GND"}], "variant_name": ["Moraes Filho, José de Aguiar", "Agiuar Moraes Filho, José de"], "date_of_birth": "1966", "preferred_name": "Filho, José de Agiuar Moraes", "country_associated": "bl", "variant_access_point": ["Moraes Filho, José de Aguiar, 1966-", "Agiuar Moraes Filho, José de, 1966-"], "authorized_access_point": "Filho, José de Agiuar Moraes, 1966-", "biographical_information": ["Diss. Technische Universität Kaiserslautern, Fachbereich Informatik"]} 1 +2024-09-11 09:02:29.704918 2024-09-11 09:02:29.704921 50e4bb3b-00df-472a-8f3e-735a9bde556d {"md5": "83b8c41d294d72c1c9c8defdc6298d5e", "pid": "141011491", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141011491", "source": "GND"}], "variant_name": ["Alexander, R."], "preferred_name": "Alexander, Rudolph", "country_associated": "gw", "variant_access_point": ["Alexander, R."], "authorized_access_point": "Alexander, Rudolph", "biographical_information": ["Kreisphysikus"]} 1 +2024-09-11 09:02:29.760338 2024-09-11 09:02:29.760344 0694e4b3-89e5-4b23-934d-024de2438b79 {"md5": "8ff405e1c0cc1cde8aee2e29d72feacc", "pid": "141030771", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141030771", "source": "GND"}], "variant_name": ["Weiss, Christof"], "date_of_birth": "16.07.1986", "preferred_name": "Weiß, Christof", "country_associated": "gw", "variant_access_point": ["Weiss, Christof, 1986-"], "parallel_access_point": ["Weiss, Christof, 1986-"], "authorized_access_point": "Weiß, Christof, 1986-", "biographical_information": ["Deutscher Komponist", "Diss. Technische Universität Ilmenau, Fachgebiet Elektronische Medientechnik"]} 1 +2024-09-11 09:02:29.820564 2024-09-11 09:02:29.820567 0dc148fb-f5ed-4727-ad4f-34dcffd3d269 {"md5": "3e6087a992fda18868f6f280a217eb64", "pid": "141129271", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141129271", "source": "GND"}], "variant_name": ["Nguyen, Thu Huong", "Nguyen Thu Huong"], "preferred_name": "Huong, Nguyen Thu", "variant_access_point": ["Nguyen, Thu Huong", "Nguyen Thu Huong"], "authorized_access_point": "Huong, Nguyen Thu", "biographical_information": ["Tätig an der School of Knowledge Science, Japan Advanced Inst. of Science and Technology"]} 1 +2024-09-11 09:02:29.870834 2024-09-11 09:02:29.870837 c1cd45f8-2c0b-4872-a5a3-641153aef691 {"md5": "d425cc4c5f56cd644e89cfbdaf14cb66", "pid": "141136618", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141136618", "source": "GND"}], "preferred_name": "Xu, Xiaoqing", "authorized_access_point": "Xu, Xiaoqing"} 1 +2024-09-11 09:02:29.918653 2024-09-11 09:02:29.918657 942fc3f3-e1f5-453d-a848-5ecd1e6f9afa {"md5": "2e02df87582040d733547cbaf6967b46", "pid": "141153067", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141153067", "source": "GND"}], "preferred_name": "Palme, Thomas", "authorized_access_point": "Palme, Thomas", "biographical_information": ["Univ. Mannheim, Lst. für Allgemeine Betriebswirtschaftslehre und Controlling, Diplomarbeit, 2008"]} 1 +2024-09-11 09:02:29.978674 2024-09-11 09:02:29.978676 47fa848e-0aa0-40e5-a799-58125546e6c2 {"md5": "a4e156d67b83c54dea452fb30d0f856e", "pid": "141169818", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141169818", "source": "GND"}], "variant_name": ["Boberg, Regina Sophia"], "preferred_name": "Hasselquist, Regina Sophia", "country_associated": "sw", "variant_access_point": ["Boberg, Regina Sophia"], "authorized_access_point": "Hasselquist, Regina Sophia"} 1 +2024-09-11 09:02:30.028579 2024-09-11 09:02:30.028581 fb06bb41-3c5d-4c2d-97b3-4e26f504e834 {"md5": "aa3f729971cf0e520a5f0a19fc51c6fd", "pid": "141184531", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141184531", "source": "GND"}], "date_of_birth": "21.07.1966", "preferred_name": "McCarthy, Rebecca Lea", "country_associated": "xxu", "authorized_access_point": "McCarthy, Rebecca Lea, 1966-", "biographical_information": ["Prof. of humanities, Kaplan Univ."]} 1 +2024-09-11 09:02:30.092597 2024-09-11 09:02:30.092601 1500cbe3-a308-4788-931d-19caf8f0a2ba {"md5": "6ab79580607bee53243623431121e0f9", "pid": "141195428", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141195428", "source": "GND"}], "variant_name": ["Eskirch, Pierre", "Escricheus, Pierre", "Eskrichius, Pierre", "Cruzy, Pierre", "Vase, Pierre du", "DuVase, Pierre", "Cruche, Pierre", "Vase, Pierre", "Krug, Pierre"], "date_of_birth": "1530", "date_of_death": "1590", "preferred_name": "Eskrich, Pierre", "country_associated": "fr", "variant_access_point": ["Eskirch, Pierre, 1530-1590", "Escricheus, Pierre, 1530-1590", "Eskrichius, Pierre, 1530-1590", "Cruzy, Pierre, 1530-1590", "Vase, Pierre du, 1530-1590", "DuVase, Pierre, 1530-1590", "Cruche, Pierre, 1530-1590", "Vase, Pierre, 1530-1590", "Krug, Pierre, 1530-1590"], "authorized_access_point": "Eskrich, Pierre, 1530-1590", "biographical_information": ["In Genf u. Lyon als Holzschneider tätig"]} 1 +2024-09-11 09:02:30.15777 2024-09-11 09:02:30.157774 0ad93502-997b-4f99-80ef-84a1bb4a19ac {"md5": "95b0e055cd0e101b540eb4bbdd1c3b93", "pid": "141208740", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141208740", "source": "GND"}], "date_of_birth": "1941", "preferred_name": "Ulstrup, Jens", "authorized_access_point": "Ulstrup, Jens, 1941-"} 1 +2024-09-11 09:02:30.837434 2024-09-11 09:02:30.837437 1eeef83d-f69d-46a2-aec8-1e16ea8c088b {"md5": "469c40e1af2cf537c550feef0044835f", "pid": "141475366", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141475366", "source": "GND"}], "preferred_name": "Stone, Robert W.", "authorized_access_point": "Stone, Robert W.", "biographical_information": ["Tätig an der Univ. of Idaho"]} 1 +2024-09-11 09:02:30.227693 2024-09-11 09:02:30.227698 6c289582-9cf6-497f-8f74-ea24fbcb3936 {"md5": "4ac05d360664acc27fee5e1d25e875c6", "pid": "141222042", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141222042", "source": "GND"}], "variant_name": ["Bruckmann, Ernst Ludwig", "Bruckmannus, Ernestus Ludovicus", "Brückmannus, Ernestus Ludovicus", "Bruckmannus, E. L."], "date_of_birth": "1730", "date_of_death": "1757", "preferred_name": "Brückmann, Ernst Ludwig", "country_associated": "gw", "variant_access_point": ["Bruckmann, Ernst Ludwig, 1730-1757", "Bruckmannus, Ernestus Ludovicus, 1730-1757", "Brückmannus, Ernestus Ludovicus, 1730-1757", "Bruckmannus, E. L., 1730-1757"], "authorized_access_point": "Brückmann, Ernst Ludwig, 1730-1757", "biographical_information": ["aus Wolfenbüttel, Medizinischer Respondent in Helmstedt und Jena, 1751 Arzt in Helmstedt, 1753 Arzt in Wolfenbüttel"]} 1 +2024-09-11 09:02:30.281475 2024-09-11 09:02:30.281479 67c16697-16f1-4be5-a326-41321db66a9c {"md5": "50c30c6051abd97c59f71f4667ecf000", "pid": "141231742", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141231742", "source": "GND"}], "variant_name": ["Wießner, Oskar Wolfgang"], "date_of_birth": "03.02.1931", "date_of_death": "13.05.2021", "preferred_name": "Wießner, Wolfgang", "country_associated": "gw", "variant_access_point": ["Wießner, Oskar Wolfgang, 1931-2021"], "authorized_access_point": "Wießner, Wolfgang, 1931-2021"} 1 +2024-09-11 09:02:30.335481 2024-09-11 09:02:30.335484 843acafe-cf9f-4f9c-b1ac-a5139ffea532 {"md5": "bb1e657c4e45530f062b166defc8f374", "pid": "141248408", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141248408", "source": "GND"}], "date_of_death": "1628", "preferred_name": "Peccius, Bernardinus", "authorized_access_point": "Peccius, Bernardinus, -1628", "biographical_information": ["italienischer Jesuit, Missionar, Märtyrer"]} 1 +2024-09-11 09:02:30.385317 2024-09-11 09:02:30.38532 4fcea5e4-396e-4ae7-9517-3bafa31fdaf6 {"md5": "389e102ac472f4da11ed1dc16f573ab8", "pid": "141327588", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141327588", "source": "GND"}], "variant_name": ["Žalinskij, Alʹfred Ėrnestovič", "Žalinskij, A. E..", "Žalinskij, A.", "Żalinski, Alfred", "Жалинский, А. Э."], "date_of_birth": "1932", "preferred_name": "Žalinskij, Alʹfred Ė.", "country_associated": "ru", "variant_access_point": ["Žalinskij, Alʹfred Ėrnestovič, 1932-", "Žalinskij, A. E.., 1932-", "Žalinskij, A., 1932-", "Żalinski, Alfred, 1932-", "Жалинский, А. Э., 1932-"], "parallel_access_point": ["Жалинский, Альфред Э., 1932-"], "authorized_access_point": "Žalinskij, Alʹfred Ė., 1932-", "biographical_information": ["Sowjet. Jurist"]} 1 +2024-09-11 09:02:30.439458 2024-09-11 09:02:30.43946 23b3be07-819b-4169-861b-88f8bb20e874 {"md5": "50522dab798083da2ce33cdb7904ad42", "pid": "141339942", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141339942", "source": "GND"}], "variant_name": ["Tietz, Horst Dieter", "Dieter-Tietz, Horst", "Tietz, H. D.", "Tietz, ..."], "preferred_name": "Tietz, Horst-Dieter", "country_associated": "gw", "variant_access_point": ["Tietz, Horst Dieter", "Dieter-Tietz, Horst", "Tietz, H. D.", "Tietz, ..."], "authorized_access_point": "Tietz, Horst-Dieter"} 1 +2024-09-11 09:02:30.490781 2024-09-11 09:02:30.490784 0c5510b9-cc37-4ab5-802a-1978ae22d957 {"md5": "f824efbbb0f1d6b75236ed6a3bbd353b", "pid": "141354240", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141354240", "source": "GND"}], "date_of_birth": "1971", "preferred_name": "Zvirgzds, Ilmārs", "country_associated": "lv", "authorized_access_point": "Zvirgzds, Ilmārs, 1971-", "biographical_information": ["Mitglied der Latvian Writer's Association"]} 1 +2024-09-11 09:02:30.541908 2024-09-11 09:02:30.541912 08cd73dc-54f4-4f1d-b0f3-1e0ef0714be4 {"md5": "7117963684168e390423911b158244c0", "pid": "141363193", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141363193", "source": "GND"}], "variant_name": ["Jäger, Friedrich Konrad", "Jäger, Friederich Conrad", "Jegre, Friedrich Conrad"], "date_of_birth": "24.12.1647", "date_of_death": "22.04.1676", "preferred_name": "Jäger, Friedrich Conrad", "country_associated": "gw", "variant_access_point": ["Jäger, Friedrich Konrad, 1647-1676", "Jäger, Friederich Conrad, 1647-1676", "Jegre, Friedrich Conrad, 1647-1676"], "authorized_access_point": "Jäger, Friedrich Conrad, 1647-1676", "biographical_information": ["Kaufmann in Leipzig"]} 1 +2024-09-11 09:02:30.599528 2024-09-11 09:02:30.599532 0f498b5d-0f4c-4409-bb8d-f4024666144b {"md5": "30f098214cc41f26b21345dadba8475e", "pid": "141373741", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141373741", "source": "GND"}], "variant_name": ["Bläschke, Thomas"], "preferred_name": "Blaeschke, Thomas", "country_associated": "gw", "variant_access_point": ["Bläschke, Thomas"], "authorized_access_point": "Blaeschke, Thomas"} 1 +2024-09-11 09:02:30.654324 2024-09-11 09:02:30.654328 0bc7793b-543d-44a3-bac4-01f282690a7c {"md5": "d2dac97a4eadfb32292aa37057259859", "pid": "141395362", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141395362", "source": "GND"}], "variant_name": ["Yongchuan Bao", "Yongchuan, Bao", "Bao, Yongchuan Kevin", "Bao, Kevin"], "preferred_name": "Bao, Yongchuan", "country_associated": "xxu", "variant_access_point": ["Yongchuan Bao", "Yongchuan, Bao", "Bao, Yongchuan Kevin", "Bao, Kevin"], "authorized_access_point": "Bao, Yongchuan", "biographical_information": ["College of Business Administration, University of Alabama in Huntsville, Huntsville, USA", "Sawyer Business School, Suffolk Univ., Boston, Mass., USA"]} 1 +2024-09-11 09:02:30.719671 2024-09-11 09:02:30.719673 ad802e64-0d5c-45b7-8783-cafd7b9c2269 {"md5": "ba5a7d0770152dd30de4be2626abca4b", "pid": "141454679", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141454679", "source": "GND"}], "variant_name": ["Torales, Susana R.", "Torales, Susana"], "date_of_birth": "25.06.1970", "preferred_name": "Torales, Susana Rita", "country_associated": "ag", "variant_access_point": ["Torales, Susana R., 1970-", "Torales, Susana, 1970-"], "authorized_access_point": "Torales, Susana Rita, 1970-", "biographical_information": ["Argentin. Übersetzerin (Portug.) u. Schriftstellerin"]} 1 +2024-09-11 09:02:30.773397 2024-09-11 09:02:30.773399 8e655b28-dc82-44b7-8eb5-a52f3f132ccf {"md5": "1c7b26eb50a6baf1984cc01a416f459b", "pid": "141463740", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141463740", "source": "GND"}], "date_of_birth": "1975", "preferred_name": "Mariotti, Emanuele", "country_associated": "it", "authorized_access_point": "Mariotti, Emanuele, 1975-"} 1 +2024-09-11 09:02:30.894026 2024-09-11 09:02:30.894031 50fa3fa4-527b-448b-aebf-e7e08f4f025b {"md5": "1e2b4b1ce7defe35b25587c54745e7dc", "pid": "14151289X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14151289X", "source": "GND"}], "variant_name": ["Diest, Pieter van", "Diest, P. van"], "date_of_birth": "19. Jh.", "preferred_name": "Diest, Pieter Hendrik van", "variant_access_point": ["Diest, Pieter van, 19. Jh.", "Diest, P. van, 19. Jh."], "authorized_access_point": "Diest, Pieter Hendrik van, 19. Jh.", "biographical_information": ["Niederländischer Ingenieur"]} 1 +2024-09-11 09:02:30.958467 2024-09-11 09:02:30.958471 72c461ac-d22d-4242-a825-da0b1f9d3a79 {"md5": "1acdd8448391b39c0d922a0f3276a527", "pid": "141518707", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141518707", "source": "GND"}], "date_of_birth": "1937", "preferred_name": "Boer, Ingo", "country_associated": "pl", "authorized_access_point": "Boer, Ingo, 1937-"} 1 +2024-09-11 09:02:31.017477 2024-09-11 09:02:31.017481 0a0cb978-7b4b-43e8-b94d-05fd60290eb9 {"md5": "4528665ca8555988bf722c1edc33c0bc", "pid": "141531142", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141531142", "source": "GND"}], "date_of_birth": "1979", "preferred_name": "Brucke, Martin", "authorized_access_point": "Brucke, Martin, 1979-", "biographical_information": ["Diss. Fakultät Architektur, Bauingenieurwesen und Umweltwissenschaften der Techn. Univ. Braunschweig"]} 1 +2024-09-11 09:02:31.093632 2024-09-11 09:02:31.093636 029dfa52-0228-48e7-9059-ad163672b3c3 {"md5": "7afba78852b820461d03dfbd9e4e0ca8", "pid": "141546891", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141546891", "source": "GND"}], "date_of_birth": "28.05.1977", "preferred_name": "Peters, Stefanie", "authorized_access_point": "Peters, Stefanie, 1977-", "biographical_information": ["Diss. Technische Universität Kaiserslautern, Fachbereich Elektrotechnik und Informationstechnik"]} 1 +2024-09-11 09:02:31.146239 2024-09-11 09:02:31.146244 c1cf1568-47ff-44c6-a7da-d0cca66cfdee {"md5": "c328a9af901e9127a7dafe7cd2a11749", "pid": "141569344", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141569344", "source": "GND"}], "variant_name": ["Escobar, Orlando Horacio Sotolongo"], "date_of_birth": "1955", "preferred_name": "Sotolongo Escobar, Orlando Horacio", "country_associated": "cu", "variant_access_point": ["Escobar, Orlando Horacio Sotolongo, 1955-"], "authorized_access_point": "Sotolongo Escobar, Orlando Horacio, 1955-", "biographical_information": ["Kuban. Agraringenieur"]} 1 +2024-09-11 09:02:31.198937 2024-09-11 09:02:31.19894 5492b788-8b72-4743-a010-48f987059a78 {"md5": "9a682c8da5cf029656eb7c4e3d6ef451", "pid": "141630531", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141630531", "source": "GND"}], "date_of_birth": "1956", "preferred_name": "Yuan, Lili", "country_associated": "cc", "authorized_access_point": "Yuan, Lili, 1956-", "biographical_information": ["lebt seit 1992 in Deutschland, gründete 2001 ein Atelier in Krefeld, Nordrhein-Westfalen"]} 1 +2024-09-11 09:02:31.251455 2024-09-11 09:02:31.251458 cae40a70-3f68-4f66-8fd3-e7549256cecd {"md5": "3c78dd4e7ee968c7848ff36ba1f12df4", "pid": "141639490", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141639490", "source": "GND"}], "date_of_birth": "1949", "preferred_name": "Sano, Yuji", "authorized_access_point": "Sano, Yuji, 1949-", "biographical_information": ["Lebt in Tokyo, führt Seminare zu biblischen und schintoistischen Theorien"]} 1 +2024-09-11 09:02:31.302522 2024-09-11 09:02:31.302526 24b4cead-c26d-4780-a807-00cc9b170f06 {"md5": "fcbe213d979ec368a04a84223d15f7f7", "pid": "141657278", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141657278", "source": "GND"}], "variant_name": ["Watteville, Johannes Michael von", "Wattenwyl, Johannes von", "Watteville, Johannes, Baron von", "Langguth, Johannes Michael", "Langguth, Johannes", "Langguth, Johann Michael"], "date_of_birth": "18.10.1718", "date_of_death": "11.10.1788", "preferred_name": "Watteville, Johannes von", "country_associated": "gw", "variant_access_point": ["Watteville, Johannes Michael von, 1718-1788", "Wattenwyl, Johannes von, 1718-1788", "Watteville, Johannes, Baron von, 1718-1788", "Langguth, Johannes Michael, 1718-1788", "Langguth, Johannes, 1718-1788", "Langguth, Johann Michael, 1718-1788"], "authorized_access_point": "Watteville, Johannes von, 1718-1788", "biographical_information": ["1735-1738 Theologiestudium in Jena; Lehrer und Erzieher des Sohns von Nicolaus Ludwig von Zinzendorf; 1739 in Marienborn; Pastor der Evangelischen Brüdergemeine in Herrnhaag bei Büdingen und in Herrnhut, ab 1742 Coepiscopus Zinzendorfs, unternahm Visitationreisen nach England, Nordamerika, den Kanarischen Inseln und Grönland; Sohn des gleichnam. Oberpfarrers von Walschleben; Namensänderung nach Adoption; verheiratet mit Benigna Justine von Zinzendorf"]} 1 +2024-09-11 09:02:31.362506 2024-09-11 09:02:31.362509 e1456f1f-ed24-4036-a393-39235a3338b9 {"md5": "7c99e210f3cdde249473e7accf0caec0", "pid": "14167220X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14167220X", "source": "GND"}], "date_of_birth": "19.11.1950", "preferred_name": "Dubberstein, Peter", "authorized_access_point": "Dubberstein, Peter, 1950-"} 1 +2024-09-11 09:02:31.413878 2024-09-11 09:02:31.413881 49c80ef6-31da-41af-9752-686a1e792598 {"md5": "49b1d08454ef8db7db6509fe423f8dfb", "pid": "141675330", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141675330", "source": "GND"}], "date_of_birth": "1981", "preferred_name": "Hatzelhoffer, Lena", "country_associated": "gw", "authorized_access_point": "Hatzelhoffer, Lena, 1981-", "biographical_information": ["Magister-Geographin, arbeitet seit 2009 als Wiss. Mitarbeiterin in der Arbeitsgruppe Stadt- und Regionalforschung am Geographischen Institut der Universität Bonn"]} 1 +2024-09-11 09:02:31.468338 2024-09-11 09:02:31.468341 6ca6780b-427c-43e4-a8da-d2b548fec172 {"md5": "0ce142f749884aac9862ef1caf90d126", "pid": "141707151", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141707151", "source": "GND"}], "date_of_birth": "1983", "preferred_name": "Nistal, Markus", "authorized_access_point": "Nistal, Markus, 1983-", "biographical_information": ["Diss. Universität Würzburg, Medizinische Fakultät"]} 1 +2024-09-11 09:02:31.520115 2024-09-11 09:02:31.520117 0a0d6754-4ffc-4126-a02a-e803c5f2a6e2 {"md5": "f700e7779ed4a32170607aba9a15ccc4", "pid": "141709499", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141709499", "source": "GND"}], "date_of_birth": "1969", "preferred_name": "Denkinger, Sandra Nicole", "authorized_access_point": "Denkinger, Sandra Nicole, 1969-"} 1 +2024-09-11 09:02:31.601015 2024-09-11 09:02:31.60102 86a2afeb-82fc-417a-8fce-128b4e1327c8 {"md5": "611265641c5e9191ebabebefb77b4196", "pid": "141752025", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141752025", "source": "GND"}], "date_of_birth": "21.03.1858", "date_of_death": "24.02.1927", "preferred_name": "Barthel, Wilhelm", "authorized_access_point": "Barthel, Wilhelm, 1858-1927", "biographical_information": ["Vorsitzender des Verbands sächsischer Konsumvereine."]} 1 +2024-09-11 09:02:31.655967 2024-09-11 09:02:31.65597 1681a70d-77ae-49dc-a2c9-3303803852ff {"md5": "c33ece34b473d5eeede4796e3db37c89", "pid": "141780940", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141780940", "source": "GND"}], "variant_name": ["Briceño, Yoana Monsalve", "Monsalve-Briceño, Yoana", "Monsalve, Yoana"], "preferred_name": "Monsalve Briceño, Yoana", "variant_access_point": ["Briceño, Yoana Monsalve", "Monsalve-Briceño, Yoana", "Monsalve, Yoana"], "authorized_access_point": "Monsalve Briceño, Yoana", "biographical_information": ["Tätig an der Escuela de Criminología, Universidad de los Andes, Mérida, Venezuela"]} 1 +2024-09-11 09:02:31.712072 2024-09-11 09:02:31.712077 2c1b6170-742d-4478-b4d6-d4005f1948ab {"md5": "12c67247efd188805873fd828e7de66e", "pid": "141801689", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141801689", "source": "GND"}], "preferred_name": "Pārsā, Mānī", "parallel_access_point": ["پارسا, مانى"], "authorized_access_point": "Pārsā, Mānī"} 1 +2024-09-11 09:02:31.782277 2024-09-11 09:02:31.78228 d510009f-228a-4765-a078-421cc3049d49 {"md5": "61ee04702fc34679f13a736181b8a1ed", "pid": "141820209", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141820209", "source": "GND"}], "variant_name": ["Zinck, A."], "preferred_name": "Zinck, Alexandra", "country_associated": "gw", "variant_access_point": ["Zinck, A."], "authorized_access_point": "Zinck, Alexandra", "biographical_information": ["Lehrstuhl für Philosophie des Geistes, Institut für Philosophie, Fakultät für Philosophie und Erziehungswissenschaft, Ruhr-Universität Bochum"]} 1 +2024-09-11 09:02:31.837035 2024-09-11 09:02:31.837037 1225ba93-411f-465f-a931-b44e531966d0 {"md5": "69f27cb5fcc63a2aedc5744f9e3e8db3", "pid": "141833475", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141833475", "source": "GND"}], "preferred_name": "Riedl, Andreas", "authorized_access_point": "Riedl, Andreas", "biographical_information": ["Tätig bei der Profund GmbH, Würzburg"]} 1 +2024-09-11 09:02:31.88958 2024-09-11 09:02:31.889584 6afdb08f-1f12-4cff-a24a-e6a98df24413 {"md5": "94f8a82f7896018d5da2b9999f2c809c", "pid": "141839422", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141839422", "source": "GND"}], "preferred_name": "Freese, Walter", "authorized_access_point": "Freese, Walter", "biographical_information": ["Tätig an der Univ. Göttingen; GfK Fernsehforschung, Nürnberg; TNS Emnid Medienforschung, Bielefeld"]} 1 +2024-09-11 09:02:31.952674 2024-09-11 09:02:31.952676 27322115-d1de-4aa5-80bd-77e9fa323eba {"md5": "4cf18ee7dada2047095bf9e3a7685c21", "pid": "141851910", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141851910", "source": "GND"}], "variant_name": ["MacAvoy, Mark"], "preferred_name": "McAvoy, Mark", "country_associated": "ir", "variant_access_point": ["MacAvoy, Mark"], "authorized_access_point": "McAvoy, Mark"} 1 +2024-09-11 09:02:32.007302 2024-09-11 09:02:32.007305 171c7cc4-9aa3-4b34-a162-aaf2ea6b6d3e {"md5": "7070c0d348d681d6f914169aca60d9e6", "pid": "141864893", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141864893", "source": "GND"}], "preferred_name": "Illenberger, ...", "country_associated": "gw", "authorized_access_point": "Illenberger, ..."} 1 +2024-09-11 09:02:32.064513 2024-09-11 09:02:32.064516 3425d16d-26b3-45c9-b7ca-2e9d5763ba65 {"md5": "c4b5089d36e1bdf003f9de6704550942", "pid": "141874325", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141874325", "source": "GND"}], "preferred_name": "Buff, Christoph", "country_associated": "sz", "authorized_access_point": "Buff, Christoph"} 1 +2024-09-11 09:02:32.117185 2024-09-11 09:02:32.117188 bed618a2-7bfc-4c2d-bba4-dcb87ff138fb {"md5": "fbfb8d61c41a276efbb7ad69501cd55b", "pid": "141919558", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141919558", "source": "GND"}], "preferred_name": "Stadali, Reinhard", "authorized_access_point": "Stadali, Reinhard"} 1 +2024-09-11 09:02:32.168726 2024-09-11 09:02:32.16873 c1602244-3dfa-4e6c-a2c8-bc2d2de12203 {"md5": "5288bd50f0ee2df6047b65d29f538ada", "pid": "141944447", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141944447", "source": "GND"}], "preferred_name": "Ṣādiq, Fidāʾ", "parallel_access_point": ["صادق, فداء"], "authorized_access_point": "Ṣādiq, Fidāʾ"} 1 +2024-09-11 09:02:32.221263 2024-09-11 09:02:32.221266 1a00921c-cf32-431b-a4c7-47748da8f612 {"md5": "2934147e2189832d49aa4cd725cc9a02", "pid": "14194479X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14194479X", "source": "GND"}], "preferred_name": "Kiljala, Päivi", "authorized_access_point": "Kiljala, Päivi"} 1 +2024-09-11 09:02:32.274724 2024-09-11 09:02:32.274729 f0d109c9-1434-4761-a695-8456dbdfd359 {"md5": "f7bc5a64645f4a58e8719cee8c3229ad", "pid": "141961406", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141961406", "source": "GND"}], "preferred_name": "Teupe, Ursula", "authorized_access_point": "Teupe, Ursula"} 1 +2024-09-11 09:02:32.339645 2024-09-11 09:02:32.339648 0c9e135a-1764-4830-a196-c29294f43b40 {"md5": "c53634516f9219e152cca4df199294b2", "pid": "141969016", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141969016", "source": "GND"}], "date_of_birth": "1964", "preferred_name": "Szivatz, Christian", "country_associated": "au", "authorized_access_point": "Szivatz, Christian, 1964-"} 1 +2024-09-11 09:02:33.127556 2024-09-11 09:02:33.127561 c06ceaa7-c060-4ad6-8cfa-187435048800 {"md5": "4ebe2ceb37cc18a2cd3058b9f6ef9198", "pid": "142208035", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142208035", "source": "GND"}], "variant_name": ["Samoylov, D. V."], "preferred_name": "Samojlov, D. V.", "variant_access_point": ["Samoylov, D. V."], "authorized_access_point": "Samojlov, D. V.", "biographical_information": ["Student 1 Kursa Magistratury Meždunarodnogo Instituta Ėkonomiki i Finsnov Gosudarstvennogo Univ. - Vysšej Školy Ėkonomiki"]} 1 +2024-09-11 09:02:32.391595 2024-09-11 09:02:32.391599 7a372ce4-7f60-4c26-a173-481a51325037 {"md5": "5c7ebbee10de49c4da712be81aa5f544", "pid": "141980516", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141980516", "source": "GND"}], "variant_name": ["Häring, Cristina Kathrin"], "date_of_birth": "19.08.1983", "preferred_name": "Häring, Cristina", "country_associated": "gw", "variant_access_point": ["Häring, Cristina Kathrin, 1983-"], "authorized_access_point": "Häring, Cristina, 1983-", "biographical_information": ["Diss. Medizinische Fakultät der Univ. Regensburg 2010"]} 1 +2024-09-11 09:02:32.446161 2024-09-11 09:02:32.446165 bdeba2e9-88a2-4423-97dd-20622da2c98d {"md5": "ad7054cdc52eec60027eac9e61e24a19", "pid": "14198970X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14198970X", "source": "GND"}], "variant_name": ["Abdur Rahman, Rafique", "Abdur Rahman, Rafiq"], "preferred_name": "ʿAbd-ar-Raḥmān, Rafīq", "variant_access_point": ["Abdur Rahman, Rafique", "Abdur Rahman, Rafiq"], "parallel_access_point": ["عبد الرحمن, رفيق"], "authorized_access_point": "ʿAbd-ar-Raḥmān, Rafīq"} 1 +2024-09-11 09:02:32.500439 2024-09-11 09:02:32.500444 cdce7408-a044-4c63-b86e-6ecb0a877982 {"md5": "5f71c7fd73a697f06870d8793e68fce5", "pid": "141990600", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/141990600", "source": "GND"}], "variant_name": ["L.Lida.T.", "L. Lida. T."], "date_of_birth": "1961", "preferred_name": "Tarakhovsky, Lida", "country_associated": "un", "variant_access_point": ["L.Lida.T., 1961-", "L. Lida. T., 1961-"], "authorized_access_point": "Tarakhovsky, Lida, 1961-"} 1 +2024-09-11 09:02:32.565113 2024-09-11 09:02:32.565117 c47ac135-9036-4a79-9aa0-b686e3e95f74 {"md5": "299714a68dcff9df7b7cad185a436b97", "pid": "142004634", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142004634", "source": "GND"}], "variant_name": ["Naval Kishor", "Newal Kishor", "Naval Kishur", "Nawal Kišūr", "Nawal-Kišūr", "Nawal Kišor", "Naval Kišor", "Neval Kishor", "Nawal Kishawr", "Naval Kishawr", "Nūl Kišūr", "Nūlkišūr", "Nul Kishore", "Nul Kishur", "Nulkishur", "Nulkishore"], "preferred_name": "Neval-Kishor", "variant_access_point": ["Naval Kishor", "Newal Kishor", "Naval Kishur", "Nawal Kišūr", "Nawal-Kišūr", "Nawal Kišor", "Naval Kišor", "Neval Kishor", "Nawal Kishawr", "Naval Kishawr", "Nūl Kišūr", "Nūlkišūr", "Nul Kishore", "Nul Kishur", "Nulkishur", "Nulkishore"], "parallel_access_point": ["نولکشور"], "authorized_access_point": "Neval-Kishor"} 1 +2024-09-11 09:02:32.621079 2024-09-11 09:02:32.621082 307a26fb-2b08-4c0e-a251-ea164d071156 {"md5": "e2d72492ac5abd517f07138751453482", "pid": "142042544", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142042544", "source": "GND"}], "date_of_birth": "1700", "date_of_death": "01.01.1717", "preferred_name": "Eisenreich, Georg Leopold", "country_associated": "au", "authorized_access_point": "Eisenreich, Georg Leopold, 1700-1717"} 1 +2024-09-11 09:02:32.670654 2024-09-11 09:02:32.670657 56627eb2-7eba-4bcd-a8e1-d80388a12a4a {"md5": "b245f981272c14c5e0c451e9a1a78e05", "pid": "142047465", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142047465", "source": "GND"}], "date_of_birth": "1893", "date_of_death": "1923", "preferred_name": "Worsing, Elith", "country_associated": "dk", "authorized_access_point": "Worsing, Elith, 1893-1923"} 1 +2024-09-11 09:02:32.722042 2024-09-11 09:02:32.722044 53550fa0-7090-4414-bbad-556bd26fef67 {"md5": "4dcbe1040bf0d620e876d89f92ee85d0", "pid": "142047678", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142047678", "source": "GND"}], "variant_name": ["Cochia, Sophia Elisabetha"], "date_of_birth": "ca. 1727", "preferred_name": "Cochius, Sophia Elisabeth", "variant_access_point": ["Cochia, Sophia Elisabetha, ca. 1727"], "authorized_access_point": "Cochius, Sophia Elisabeth, ca. 1727", "biographical_information": ["Ehefrau von Gottfried Christian Cochius"]} 1 +2024-09-11 09:02:32.807169 2024-09-11 09:02:32.807174 109125a6-a3a1-4cb1-9894-4d442f82e8ae {"md5": "89210ddf202be9b317fe615f9260d118", "pid": "142098256", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142098256", "source": "GND"}], "variant_name": ["Alves Brene, Paulo Rogério"], "preferred_name": "Brene, Paulo Rogério Alves", "variant_access_point": ["Alves Brene, Paulo Rogério"], "authorized_access_point": "Brene, Paulo Rogério Alves", "biographical_information": ["Tätig an der Universidade Estadual de Londrina, Departamento de Economia"]} 1 +2024-09-11 09:02:32.863998 2024-09-11 09:02:32.864001 064ff2cc-c0ee-4b33-8b9c-f7608419d9ab {"md5": "e78003385a26e1a6214193426c03ac5d", "pid": "142138894", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142138894", "source": "GND"}], "date_of_birth": "1978", "preferred_name": "Brechtel, Christian", "country_associated": "gw", "authorized_access_point": "Brechtel, Christian, 1978-"} 1 +2024-09-11 09:02:32.923784 2024-09-11 09:02:32.923787 c8c75239-bd54-4113-9516-93a9a34408c8 {"md5": "c526a89c158a16dd1c90bce4f66bb59e", "pid": "142174610", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142174610", "source": "GND"}], "variant_name": ["Kullmann, Wilhelm"], "date_of_birth": "1940", "preferred_name": "Kullmann, Willi", "country_associated": "gw", "variant_access_point": ["Kullmann, Wilhelm, 1940-"], "authorized_access_point": "Kullmann, Willi, 1940-", "biographical_information": ["Promotion Universität zu Köln 1975"]} 1 +2024-09-11 09:02:32.974606 2024-09-11 09:02:32.974609 3765b059-4aae-4738-978d-e9b7c95a09a9 {"md5": "e9aac096d0a79ab0134653881bee9d56", "pid": "142191663", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142191663", "source": "GND"}], "preferred_name": "Osborne, Paul", "country_associated": "xxu", "authorized_access_point": "Osborne, Paul", "biographical_information": ["Drehbuchautor, Produzent, Regisseur"]} 1 +2024-09-11 09:02:33.061294 2024-09-11 09:02:33.061298 8c9e9485-c80d-4b6a-b776-d8670bcda837 {"md5": "7a2b0b017015ca955efebae1c760b48d", "pid": "142206725", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142206725", "source": "GND"}], "preferred_name": "Bender, ...", "country_associated": "gw", "authorized_access_point": "Bender, ...", "biographical_information": ["Gastauftritt 1818 der Gebrüder Bender, erste Klarinettisten Sr. Majestät, des Kaisers von Rußland"]} 1 +2024-09-11 09:02:33.180415 2024-09-11 09:02:33.180419 e45af121-fd63-4f4a-8e19-0fa1c8c24eaf {"md5": "7e147b32f75b3d2115fe7face995757b", "pid": "142211117", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142211117", "source": "GND"}], "variant_name": ["Chuanpeng, Lian", "Chuanpeng Lian"], "preferred_name": "Lian, Chuanpeng", "variant_access_point": ["Chuanpeng, Lian", "Chuanpeng Lian"], "authorized_access_point": "Lian, Chuanpeng", "biographical_information": ["Tätig at School of Public Policy and Administration, Xian Jiaotong Univ., China"]} 1 +2024-09-11 09:02:33.2356 2024-09-11 09:02:33.235603 f8e9fadf-9055-4cd3-b661-bb10ea0c1cd6 {"md5": "d3416d123a46c40dde6876c3a95e8779", "pid": "142218685", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142218685", "source": "GND"}], "variant_name": ["Achmedov, A. I."], "preferred_name": "Achmedov, Abdulgafar", "variant_access_point": ["Achmedov, A. I."], "authorized_access_point": "Achmedov, Abdulgafar", "biographical_information": ["Kandidat ėkon nauk, tätig als Prezident Respublikanskogo Obščestva Družby, Kulʹturnych i Ėkonomičeskich Svjazej Dagestana s Azerbajdžanom"]} 1 +2024-09-11 09:02:33.294042 2024-09-11 09:02:33.294047 f180c25a-c339-4ef8-a9c8-57a7be5f1031 {"md5": "7a6eb84a2246972088425c1857cde50f", "pid": "142233307", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142233307", "source": "GND"}], "variant_name": ["Krumm, S."], "date_of_birth": "1968", "preferred_name": "Krumm, Silvia", "country_associated": "gw", "variant_access_point": ["Krumm, S., 1968-"], "authorized_access_point": "Krumm, Silvia, 1968-", "biographical_information": ["seit 2013 Vertretungsprofessur Gemeindepsychiatrie, Rehabilitation, Beratung am Fachbereich Sozialwesen der Hochschule Fulda", "Habilitation (2019) an der Medizinischen Fakultät der Universität Ulm. Lehrbefugnis für das Fach Experimentelle Psychiatrie, Schwerpunkt Sozialpsychiatrie"]} 1 +2024-09-11 09:02:33.364356 2024-09-11 09:02:33.364359 034bdcb8-779d-4633-a6d3-ac86b2e3cb1b {"md5": "433f43aac9741797c3fb5982c5f26ce1", "pid": "142248010", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142248010", "source": "GND"}], "variant_name": ["Knyphausen, Dodo zu Innhausen und"], "date_of_birth": "06.07.1877", "date_of_death": "07.09.1967", "preferred_name": "Innhausen und Knyphausen, Dodo zu", "country_associated": "gw", "variant_access_point": ["Knyphausen, Dodo zu Innhausen und, 1877-1967"], "authorized_access_point": "Innhausen und Knyphausen, Dodo zu, 1877-1967", "biographical_information": ["Rittergutsbesitzer"]} 1 +2024-09-11 09:02:33.414669 2024-09-11 09:02:33.414673 84785dbf-94f3-41e3-aaa9-dbeefb2e09d1 {"md5": "36132217b40be71dc7c4081726173bc8", "pid": "142254193", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142254193", "source": "GND"}], "date_of_birth": "20./21. Jh", "preferred_name": "Husmann, Maria", "country_associated": "gw", "authorized_access_point": "Husmann, Maria, 20./21. Jh"} 1 +2024-09-11 09:02:33.468805 2024-09-11 09:02:33.468807 0c3d292c-1709-4e61-bd65-876723de1b73 {"md5": "ff6b8870b87bdb2dea87a912f286ca88", "pid": "142291684", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142291684", "source": "GND"}], "variant_name": ["Perschbecher, Guilielmus"], "preferred_name": "Perschbecher, Wilhelm", "country_associated": "gw", "variant_access_point": ["Perschbecher, Guilielmus"], "authorized_access_point": "Perschbecher, Wilhelm", "biographical_information": ["1748 Respondent in Rinteln"]} 1 +2024-09-11 09:02:33.520395 2024-09-11 09:02:33.520399 2af47c07-dbc3-4707-9c3f-79a5fe141fb3 {"md5": "dabec6076df6b68e4a9df482083c3d75", "pid": "142310778", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142310778", "source": "GND"}], "preferred_name": "Voigt, Friedrich", "country_associated": "gw", "authorized_access_point": "Voigt, Friedrich", "biographical_information": ["aus Aga im Voigtland; Kalenderschreiber, \\"der Sternkunst und Politices Beflissen\\""]} 1 +2024-09-11 09:02:33.575869 2024-09-11 09:02:33.575873 9573044f-9587-4f9e-abac-8dda95c788b4 {"md5": "d123b7e2fa2f418d7b6900132afce25f", "pid": "142328588", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142328588", "source": "GND"}], "variant_name": ["Westhoven, Hermann Werner Engelbert de", "Westhoven, Hermannus Wernerus Engelbertus de", "Westhof, Hermann Werner Engelbert von", "Westhoff, Hermann Werner Engelbert von", "Westhoven, Hermann Werner Engelbert", "Hermophilus"], "date_of_birth": "11.09.1685", "date_of_death": "03.08.1732", "preferred_name": "Westhoven, Hermann Werner Engelbert von", "country_associated": "gw", "variant_access_point": ["Westhoven, Hermann Werner Engelbert de, 1685-1735", "Westhoven, Hermannus Wernerus Engelbertus de, 1685-1735", "Westhof, Hermann Werner Engelbert von, 1685-1735", "Westhoff, Hermann Werner Engelbert von, 1685-1735", "Westhoven, Hermann Werner Engelbert, 1685-1735", "Hermophilus, 1685-1735"], "authorized_access_point": "Westhoven, Hermann Werner Engelbert von, 1685-1735", "biographical_information": ["Dt. Mediziner: bis 1705 Schüler am Gymnasium Gotha; Student in Leiden und Harderwijk; Mitglied der Leopoldina; 1721 dritter Bürgermeister in Hamm; Sohn des Arztes Rüdiger von Westhoven (gest. 1727)"]} 1 +2024-09-11 09:02:33.643339 2024-09-11 09:02:33.643344 8d9828ad-9429-4ae8-9516-2e491fcc4667 {"md5": "513f1bbf13933d3ec30679d6c61fa5f9", "pid": "142468614", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142468614", "source": "GND"}], "variant_name": ["Schellhase, Karl Wilhelm"], "date_of_birth": "1906", "date_of_death": "1944", "preferred_name": "Schellhase, Karl", "variant_access_point": ["Schellhase, Karl Wilhelm, 1906-1944"], "authorized_access_point": "Schellhase, Karl, 1906-1944", "biographical_information": ["Lehrer in Concepción (Chile)"]} 1 +2024-09-11 09:02:33.71029 2024-09-11 09:02:33.710294 928f1ecf-2e24-4dec-bfed-d2ba31ede53f {"md5": "7c2ca71226b863a6cfa5430aebc0e972", "pid": "14250923X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14250923X", "source": "GND"}], "preferred_name": "Rambach, Günther", "authorized_access_point": "Rambach, Günther", "biographical_information": ["pensionierter Lehrer für Deutsch, Geschichte und Sozialkunde"]} 1 +2024-09-11 09:02:33.760805 2024-09-11 09:02:33.760809 45c44546-9746-42f5-b1c4-5c52ba7581d2 {"md5": "b73889c6a0339272846f7e9bf295eed7", "pid": "142514926", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142514926", "source": "GND"}], "date_of_birth": "1930", "preferred_name": "Eguchi, Masahiro", "country_associated": "ja", "parallel_access_point": ["江口, 正弘, 1930-"], "authorized_access_point": "Eguchi, Masahiro, 1930-"} 1 +2024-09-11 09:02:33.815277 2024-09-11 09:02:33.815281 bf123c94-0b16-4da1-a794-8c27111eabed {"md5": "ed0c9868becaf23ce6ae9b6d139a8020", "pid": "142554197", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142554197", "source": "GND"}], "variant_name": ["Lilienthal, Philipp P.", "Lilienthal, Peter Philipp", "Lilienthalius, Philippus Petrus", "Lilienthal, Philippus Petrus"], "preferred_name": "Lilienthal, Philipp Peter", "country_associated": "gw", "variant_access_point": ["Lilienthal, Philipp P.", "Lilienthal, Peter Philipp", "Lilienthalius, Philippus Petrus", "Lilienthal, Philippus Petrus"], "authorized_access_point": "Lilienthal, Philipp Peter", "biographical_information": ["1736 Praeses in Greifswald, Conrektor"]} 1 +2024-09-11 09:02:33.879062 2024-09-11 09:02:33.879064 482e577c-dd68-4a47-88d8-77b2ddcbb83b {"md5": "af7900ddfe6efdf9f04699f8e598d760", "pid": "142619930", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142619930", "source": "GND"}], "variant_name": ["Xinwei, Zheng", "Xinwei Zheng"], "preferred_name": "Zheng, Xinwei", "variant_access_point": ["Xinwei, Zheng", "Xinwei Zheng"], "authorized_access_point": "Zheng, Xinwei"} 1 +2024-09-11 09:02:33.940025 2024-09-11 09:02:33.940027 64cde681-e107-49b0-8a1d-7d2498c52af3 {"md5": "e6596a53a12f32c057fd95ff476e2a66", "pid": "142643742", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142643742", "source": "GND"}], "preferred_name": "Berger, Martin", "country_associated": "gw", "authorized_access_point": "Berger, Martin"} 1 +2024-09-11 09:02:33.991592 2024-09-11 09:02:33.991597 985bf62f-3525-4a26-b007-45450dac7a8c {"md5": "1534aac23eb37a3a877ed722c6165437", "pid": "142693634", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142693634", "source": "GND"}], "variant_name": ["Scarth, Harry Mingden", "Scarth, Harry Mengden", "Scarth, Harry M.", "British Resident, A"], "date_of_birth": "1814", "date_of_death": "1890", "preferred_name": "Scarth, John", "country_associated": "cc", "variant_access_point": ["Scarth, Harry Mingden, 1814-1890", "Scarth, Harry Mengden, 1814-1890", "Scarth, Harry M., 1814-1890", "British Resident, A, 1814-1890"], "authorized_access_point": "Scarth, John, 1814-1890"} 1 +2024-09-11 09:02:34.055274 2024-09-11 09:02:34.055278 e26c7aa0-2769-48af-89d6-996008932c5e {"md5": "12bfe52254e152600217ccfa73bf00d9", "pid": "142697354", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142697354", "source": "GND"}], "date_of_birth": "1882", "date_of_death": "1929", "preferred_name": "Reventós, Ramón", "country_associated": "sp", "authorized_access_point": "Reventós, Ramón, 1882-1929"} 1 +2024-09-11 09:02:34.108028 2024-09-11 09:02:34.108031 d0996f7a-5f6b-44de-9517-85ebfac07e4e {"md5": "b6a96e701f5fa25d77ab0dff4e53824c", "pid": "142717126", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142717126", "source": "GND"}], "variant_name": ["Petkova, Radina Vesselinova"], "date_of_birth": "1977", "preferred_name": "Petkova, Radina V.", "country_associated": "bu", "variant_access_point": ["Petkova, Radina Vesselinova, 1977-"], "authorized_access_point": "Petkova, Radina V., 1977-", "biographical_information": ["Diss. Fachbereich Medizin"]} 1 +2024-09-11 09:02:34.160286 2024-09-11 09:02:34.16029 5eafa413-1d58-4b2c-aa9a-704f4b1ef2f8 {"md5": "29a0ea373f5ce730d2423fe86859e399", "pid": "142751464", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142751464", "source": "GND"}], "preferred_name": "Morrea, Nello", "country_associated": "it", "authorized_access_point": "Morrea, Nello", "biographical_information": ["Preposito Generale Chierici Regolari Minori"]} 1 +2024-09-11 09:02:34.212724 2024-09-11 09:02:34.212726 dc60bfea-746e-4843-a290-7592245aa6cf {"md5": "e8550f3e8a4eb80aea733547acba7da5", "pid": "14275210X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14275210X", "source": "GND"}], "date_of_birth": "1952", "preferred_name": "Haas, Jean-François", "country_associated": "sz", "authorized_access_point": "Haas, Jean-François, 1952-"} 1 +2024-09-11 09:02:34.302412 2024-09-11 09:02:34.302415 d8b2262e-6dc1-47d6-a8da-8b1dd13ead0f {"md5": "65339f4d8313f381c77dacff98ee1fcb", "pid": "142757640", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142757640", "source": "GND"}], "variant_name": ["Scheidel, Martina Gießen-"], "date_of_birth": "1967", "preferred_name": "Gießen-Scheidel, Martina", "country_associated": "gw", "variant_access_point": ["Scheidel, Martina Gießen-, 1967-"], "authorized_access_point": "Gießen-Scheidel, Martina, 1967-"} 1 +2024-09-11 09:02:34.350676 2024-09-11 09:02:34.35068 6c4ea42e-440d-4d2b-a8c2-b234df7dd31b {"md5": "caa10045e12bb824544e5cbf523f006d", "pid": "142767549", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142767549", "source": "GND"}], "variant_name": ["Ning, Hsieh", "Ning Hsieh"], "preferred_name": "Hsieh, Ning", "variant_access_point": ["Ning, Hsieh", "Ning Hsieh"], "authorized_access_point": "Hsieh, Ning", "biographical_information": ["Tätig an der National Tsing Hua Univ."]} 1 +2024-09-11 09:02:34.406214 2024-09-11 09:02:34.406219 b01cc031-cb25-4a07-a18b-cdcd7aa63fe8 {"md5": "12fb44019a3f79b3db2bee9bc7c3bf19", "pid": "142782629", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142782629", "source": "GND"}], "preferred_name": "Markelis, Daiva", "country_associated": "xxu", "authorized_access_point": "Markelis, Daiva", "biographical_information": ["associate professor of English at Eastern, Illinois University"]} 1 +2024-09-11 09:02:34.458711 2024-09-11 09:02:34.458714 78d5698c-6d06-440b-95f5-87301d442a94 {"md5": "3d467886773add44d5e173975f4700ef", "pid": "142784338", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142784338", "source": "GND"}], "preferred_name": "Haidn-Tschalova, Veronika", "country_associated": "gw", "authorized_access_point": "Haidn-Tschalova, Veronika", "biographical_information": ["Mitglied der Deutschen Nationalmannschaft im Bogenschießen"]} 1 +2024-09-11 09:02:34.505688 2024-09-11 09:02:34.505692 95159e96-77ff-44a5-b605-2085384896b9 {"md5": "c5121497c94e46666315df0b7a322f92", "pid": "142806943", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142806943", "source": "GND"}], "variant_name": ["Baumhauer, Michael P.", "Baumhauer, M. P.", "Baumhauer, Mich. Paul."], "date_of_birth": "1744", "date_of_death": "1811", "preferred_name": "Baumhauer, Michael Paul", "country_associated": "gw", "variant_access_point": ["Baumhauer, Michael P., 1744-1811", "Baumhauer, M. P., 1744-1811", "Baumhauer, Mich. Paul., 1744-1811"], "authorized_access_point": "Baumhauer, Michael Paul, 1744-1811"} 1 +2024-09-11 09:02:34.555926 2024-09-11 09:02:34.55593 3754f68f-e23c-4433-ad0e-f955adecd50d {"md5": "96bfcd01f61a528e4ef98dd82af3aed4", "pid": "142837431", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142837431", "source": "GND"}], "variant_name": ["Schoene, Daniel", "Schöne, D."], "preferred_name": "Schöne, Daniel", "country_associated": "gw", "variant_access_point": ["Schoene, Daniel", "Schöne, D."], "authorized_access_point": "Schöne, Daniel", "biographical_information": ["tätig im Inst. für Sportwiss. und Sport an der Univ. Erlangen-Nürnberg"]} 1 +2024-09-11 09:02:34.607109 2024-09-11 09:02:34.607114 390d041e-bbda-4413-824e-dc42a869e19d {"md5": "d9ff673cc2cff2e1785afe87ec985cc4", "pid": "142874906", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142874906", "source": "GND"}], "variant_name": ["Morato, Antonio Jiménez"], "preferred_name": "Jiménez Morato, Antonio", "country_associated": "sp", "variant_access_point": ["Morato, Antonio Jiménez"], "authorized_access_point": "Jiménez Morato, Antonio"} 1 +2024-09-11 09:02:34.658278 2024-09-11 09:02:34.658281 ef921456-359f-4d81-94fc-3201e2ff4dc3 {"md5": "7db382a44571cf0ef1b74acda2bc559a", "pid": "142877174", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142877174", "source": "GND"}], "preferred_name": "Roussel, Daniel", "authorized_access_point": "Roussel, Daniel"} 1 +2024-09-11 09:02:34.710757 2024-09-11 09:02:34.710762 9621263d-dee1-40af-842b-377726d389ed {"md5": "68257d225b91dc6422f6f731dc2a0bc5", "pid": "142881430", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142881430", "source": "GND"}], "date_of_birth": "05.07.1947", "date_of_death": "06.08.2019", "preferred_name": "Pelizäus, Rainer", "country_associated": "gw", "authorized_access_point": "Pelizäus, Rainer, 1947-2019", "biographical_information": ["Geschäftsführender Gesellschafter der COMPPAS GmbH"]} 1 +2024-09-11 09:02:34.761121 2024-09-11 09:02:34.761124 c3fca283-2f2b-4a8f-a359-7fb18c857d53 {"md5": "0a2fa01d1335526abc651241662d10ec", "pid": "142894745", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142894745", "source": "GND"}], "date_of_birth": "1976", "preferred_name": "Mendes, Marcelo", "country_associated": "bl", "authorized_access_point": "Mendes, Marcelo, 1976-", "biographical_information": ["Brasilian. Journalist, Literaturwissenschaftler, Schriftsteller"]} 1 +2024-09-11 09:02:34.813924 2024-09-11 09:02:34.813928 3b9cabea-715c-49a6-9735-f98644095b61 {"md5": "c8d1438de34fecc07f8263d5c7715267", "pid": "142899615", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142899615", "source": "GND"}], "date_of_birth": "1895", "date_of_death": "1945", "preferred_name": "Ruff, Konrad", "country_associated": "gw", "authorized_access_point": "Ruff, Konrad, 1895-1945", "biographical_information": ["Teilnahme am Zweiten Weltkrieg, seit 1945 vermisst"]} 1 +2024-09-11 09:02:34.865846 2024-09-11 09:02:34.865848 f2d46dda-73c6-4628-81c5-ab7e0d54a81f {"md5": "4236482ab024a7e76a366596e0bf5091", "pid": "142910406", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142910406", "source": "GND"}], "date_of_birth": "1974", "preferred_name": "Müller, Steve", "country_associated": "lu", "authorized_access_point": "Müller, Steve, 1974-", "biographical_information": ["Mitarbeiter bei RTL"]} 1 +2024-09-11 09:02:34.928704 2024-09-11 09:02:34.928708 701b9efb-0bb3-4dd9-84bf-9ef66eeac7b8 {"md5": "429ca25691908fca5d8b5b50d229f6b2", "pid": "142915637", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142915637", "source": "GND"}], "variant_name": ["Polchow, Johannes David", "Pölchow, J. D."], "date_of_birth": "1732", "date_of_death": "1801", "preferred_name": "Polchow, Johann David", "country_associated": "gw", "variant_access_point": ["Polchow, Johannes David, 1732-1801", "Pölchow, J. D., 1732-1801"], "authorized_access_point": "Polchow, Johann David, 1732-1801", "biographical_information": ["Prediger zu Genin, Landschulreformer"]} 1 +2024-09-11 09:02:34.976508 2024-09-11 09:02:34.976512 55222ad7-5739-4a4d-8556-beea924f93a3 {"md5": "256e03988408731f2f4d6f2e8180bd1c", "pid": "142944548", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142944548", "source": "GND"}], "preferred_name": "Wagner, Otto", "country_associated": "gw", "authorized_access_point": "Wagner, Otto", "biographical_information": ["Musikverlag Hofmeister, Musiklektor; DMA: Funktion: Mitarb."]} 1 +2024-09-11 09:02:35.028948 2024-09-11 09:02:35.028952 dda525ab-20dc-45b9-998e-3081aa7a287d {"md5": "1cdca50d718269870186b8aae4c8f3e6", "pid": "142979597", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/142979597", "source": "GND"}], "preferred_name": "Plass, Jonas", "country_associated": "gw", "authorized_access_point": "Plass, Jonas"} 1 +2024-09-11 09:02:35.080581 2024-09-11 09:02:35.080585 1bd5f538-d863-41aa-9cd0-85fb7b3b9c80 {"md5": "fcb074e9d060f2316a2bbc54a01db027", "pid": "14299670X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14299670X", "source": "GND"}], "date_of_birth": "23.07.1965", "preferred_name": "Mínguez, Elvira", "authorized_access_point": "Mínguez, Elvira, 1965-"} 1 +2024-09-11 09:02:35.129549 2024-09-11 09:02:35.129552 f708d346-3259-4aa5-8265-14706ff3c3b6 {"md5": "69c4d0620c57e1c7fc4e29083def21f7", "pid": "143008900", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143008900", "source": "GND"}], "preferred_name": "Mühler, E.", "country_associated": "gw", "authorized_access_point": "Mühler, E.", "biographical_information": ["Dt. Übersetzer und Librettist"]} 1 +2024-09-11 09:02:35.18013 2024-09-11 09:02:35.180134 48c1ac8d-d7d7-45b9-817e-b879641a300d {"md5": "59c175060dcc0fe496b0bc63458ded43", "pid": "143059424", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143059424", "source": "GND"}], "variant_name": ["Paetzmann, Erika Rosemarie"], "date_of_birth": "21.05.1921", "date_of_death": "01.05.1977", "preferred_name": "Paetzmann, Erika", "country_associated": "gw", "variant_access_point": ["Paetzmann, Erika Rosemarie, 1921-1977"], "authorized_access_point": "Paetzmann, Erika, 1921-1977"} 1 +2024-09-11 09:02:35.227245 2024-09-11 09:02:35.227249 9cff48dc-563b-4d04-9862-d9ab46b7e51c {"md5": "eff7e00f4e20c7b450514c787392bdb2", "pid": "143063324", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143063324", "source": "GND"}], "preferred_name": "Jones, Michael", "authorized_access_point": "Jones, Michael", "biographical_information": ["Tätig bei der Royal Mail Group"]} 1 +2024-09-11 09:02:35.276552 2024-09-11 09:02:35.276557 30f3f384-1b20-4d2c-b7e9-c293d81b881f {"md5": "3de369058ef519c7a1362098223baa03", "pid": "143068547", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143068547", "source": "GND"}], "date_of_birth": "1976", "preferred_name": "Stenger, Matthias", "country_associated": "gw", "authorized_access_point": "Stenger, Matthias, 1976-", "biographical_information": ["Diss. Universität Tübingen, Philosophische Fakultät, Geschichte"]} 1 +2024-09-11 09:02:35.341269 2024-09-11 09:02:35.341274 13bad5ad-7c8e-4ef0-9394-fc172b648af9 {"md5": "417e2feeb1482cc35377df74ade9a847", "pid": "143107291", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143107291", "source": "GND"}], "date_of_birth": "ca. 20. Jhd.", "preferred_name": "Wiesemes, Wolfgang", "country_associated": "gw", "authorized_access_point": "Wiesemes, Wolfgang, ca. 20. Jhd."} 1 +2024-09-11 09:02:35.39309 2024-09-11 09:02:35.393093 0d2160fc-3893-445f-b223-7210c39ca3ef {"md5": "4afd79a087d8e9ee4e1266f234ec542c", "pid": "143130706", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143130706", "source": "GND"}], "variant_name": ["Denef, A."], "preferred_name": "Neve, Alex de", "variant_access_point": ["Denef, A."], "authorized_access_point": "Neve, Alex de"} 1 +2024-09-11 09:02:35.446464 2024-09-11 09:02:35.446466 2b996bfa-6ded-4d3f-acee-979c8f651706 {"md5": "b6c6117ced1c2d0112022798d258d8ac", "pid": "143138901", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143138901", "source": "GND"}], "date_of_birth": "ca. 20./21. Jh.", "preferred_name": "Mayerhofer, Lisa", "country_associated": "gw", "authorized_access_point": "Mayerhofer, Lisa, ca. 20./21. Jh.", "biographical_information": ["Dt. Bildhauerin, lebt und arbeitet in Berlin"]} 1 +2024-09-11 09:02:35.495959 2024-09-11 09:02:35.495961 73efb09e-285b-46aa-99c0-62545a28c6b0 {"md5": "e99505f59220cb1b1e4105b5abe2417e", "pid": "143152807", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143152807", "source": "GND"}], "date_of_birth": "1729", "preferred_name": "Menzele, Nicola", "country_associated": "it", "authorized_access_point": "Menzele, Nicola, 1729-"} 1 +2024-09-11 09:02:35.545953 2024-09-11 09:02:35.545957 94b12cf7-b48c-45af-a3cf-808cb81095a3 {"md5": "620aefb1721d4b777bf23a1e033b8bff", "pid": "143164406", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143164406", "source": "GND"}], "preferred_name": "Trapp, Robert", "country_associated": "xxu", "authorized_access_point": "Trapp, Robert"} 1 +2024-09-11 09:02:35.598683 2024-09-11 09:02:35.598686 b899d131-9718-4a54-96cc-a78586879246 {"md5": "62b72aa190dd0e6edeeeedaa137cb0f9", "pid": "143170899", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143170899", "source": "GND"}], "variant_name": ["Kapp, S.", "Rückert, Sigrun"], "date_of_birth": "1976", "preferred_name": "Kapp, Sigrun", "country_associated": "gw", "variant_access_point": ["Kapp, S., 1976-", "Rückert, Sigrun, 1976-"], "authorized_access_point": "Kapp, Sigrun, 1976-"} 1 +2024-09-11 09:02:35.651979 2024-09-11 09:02:35.651983 e9f68f3e-ffd2-44cd-9db2-b18e441a3e26 {"md5": "5abf0b8e7e7a177ab864336953b1d59e", "pid": "143182846", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143182846", "source": "GND"}], "variant_name": ["Conerding, Henricus Dietericus", "Conerding, Heinrich Dieterich", "Conerding, Henrich Dietrich", "Conerding, Henrich Dieterich", "Conerding, Henricus Dietrich", "Conerding, Henricus Dieterich", "Konerding, Heinrich Dietrich", "Konerding, Heinrich Dieterich", "Konerding, Henrich Dietrich", "Konerding, Henrich Dieterich", "Konerding, Henricus Dietrich", "Konerding, Henricus Dietericus", "Conerding, Heinrich Theodorus", "Conerding, Henricus Theodorus"], "preferred_name": "Conerding, Heinrich Dietrich", "country_associated": "gw", "variant_access_point": ["Conerding, Henricus Dietericus", "Conerding, Heinrich Dieterich", "Conerding, Henrich Dietrich", "Conerding, Henrich Dieterich", "Conerding, Henricus Dietrich", "Conerding, Henricus Dieterich", "Konerding, Heinrich Dietrich", "Konerding, Heinrich Dieterich", "Konerding, Henrich Dietrich", "Konerding, Henrich Dieterich", "Konerding, Henricus Dietrich", "Konerding, Henricus Dietericus", "Conerding, Heinrich Theodorus", "Conerding, Henricus Theodorus"], "authorized_access_point": "Conerding, Heinrich Dietrich", "biographical_information": ["Braunschw.-Lüneburg. Hofbeamter; Studium in Helmstedt"]} 1 +2024-09-11 09:02:35.702013 2024-09-11 09:02:35.702017 a1aed479-3734-48d1-89cb-7d3f5f298e7a {"md5": "1cc71fd7a2af6366a3f689e09f824c61", "pid": "143199897", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143199897", "source": "GND"}], "date_of_birth": "1983", "preferred_name": "Gehl, Janina", "country_associated": "gw", "authorized_access_point": "Gehl, Janina, 1983-", "biographical_information": ["Diss. Universität Kiel, Medizinische Fakultät"]} 1 +2024-09-11 09:02:35.763583 2024-09-11 09:02:35.763586 f29c7e43-aa78-4c7e-a35b-2e9a639ee6f9 {"md5": "14c620cb8ab3e52241136843e09185ae", "pid": "14320212X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14320212X", "source": "GND"}], "preferred_name": "Reinwolle, Christian Immanuel", "authorized_access_point": "Reinwolle, Christian Immanuel", "biographical_information": ["Accise Bedienter in Berlin"]} 1 +2024-09-11 09:02:35.824104 2024-09-11 09:02:35.824107 f6be0e20-1aa1-4183-8f51-fc0c427d8f05 {"md5": "816334b70c9f107c159af65ee5b56b34", "pid": "143203576", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143203576", "source": "GND"}], "date_of_birth": "1981", "preferred_name": "Heimburger, Robert", "country_associated": "gw", "authorized_access_point": "Heimburger, Robert, 1981-"} 1 +2024-09-11 09:02:35.872032 2024-09-11 09:02:35.872035 2d2b35ec-a607-43d6-99a0-4f674204d631 {"md5": "1d7bc426d5fae7a69fd9ec1f985c7e8c", "pid": "143204718", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143204718", "source": "GND"}], "variant_name": ["Sedun, Yanina"], "date_of_birth": "1974", "preferred_name": "Martius, Yanina", "variant_access_point": ["Sedun, Yanina, 1974-"], "authorized_access_point": "Martius, Yanina, 1974-", "biographical_information": ["Diss. Universität Tübingen, Medizinische Fakultät"]} 1 +2024-09-11 09:02:35.924015 2024-09-11 09:02:35.924019 2c192138-9f1f-4dcc-9427-ee0e7e822ac4 {"md5": "12027ba187a4a7af9f85c6130349b98b", "pid": "143231499", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143231499", "source": "GND"}], "preferred_name": "Edelmann, A.", "country_associated": "gw", "authorized_access_point": "Edelmann, A.", "biographical_information": ["Dt. Librettist"]} 1 +2024-09-11 09:02:35.974327 2024-09-11 09:02:35.97433 beacfb59-517c-4591-924e-4800fd1f7b01 {"md5": "84b1c30a284d39a0de403aa81acbb172", "pid": "14326589X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14326589X", "source": "GND"}], "date_of_birth": "26.12.1978", "preferred_name": "Zhou, Yiqun", "country_associated": "cc", "authorized_access_point": "Zhou, Yiqun, 1971-", "biographical_information": ["Ass. Prof., Department of East Asian Languages and Cultures, Stanford Univ."]} 1 +2024-09-11 09:02:36.031465 2024-09-11 09:02:36.031469 b2662c46-cfd1-4ce4-992b-e9bcec7308a1 {"md5": "0dc78ac7cc14e849b6de857494d7aad7", "pid": "14327810X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14327810X", "source": "GND"}], "preferred_name": "Beuing, Claudia", "authorized_access_point": "Beuing, Claudia", "biographical_information": ["Diss. Tierärztliche Hochschule Hannover (2010)"]} 1 +2024-09-11 09:02:36.092686 2024-09-11 09:02:36.09269 bf0ca76d-82d2-4623-9996-34ece2211dc4 {"md5": "e4b4f609fc85c8755e55e27110584a9e", "pid": "143326694", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143326694", "source": "GND"}], "date_of_birth": "1985", "preferred_name": "Hollstein, Anne", "authorized_access_point": "Hollstein, Anne, 1985-", "biographical_information": ["Dresden, Techn. Univ., Fak. Forst-, Geo- u. Hydrowiss., Bachelorarbeit, 2010"]} 1 +2024-09-11 09:02:36.142652 2024-09-11 09:02:36.142657 c8ff663f-4ec2-4640-84bf-e40992311db6 {"md5": "f91fd1ae0f6630b50d5fb8a30913802f", "pid": "143341847", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143341847", "source": "GND"}], "variant_name": ["Kuchlein, Johannes", "Kuchlinus, Johannes", "Kuchlinus, Joannes", "Cuchlinus, Johannes", "Küchlin, Johannes"], "date_of_birth": "1546", "date_of_death": "1606", "preferred_name": "Küchlein, Johann", "country_associated": "gw", "variant_access_point": ["Kuchlein, Johannes, 1546-1606", "Kuchlinus, Johannes, 1546-1606", "Kuchlinus, Joannes, 1546-1606", "Cuchlinus, Johannes, 1546-1606", "Küchlin, Johannes, 1546-1606"], "authorized_access_point": "Küchlein, Johann, 1546-1606", "biographical_information": ["In der Wetterau geboren; erster Prediger der reformierten Kirche von Amsterdam nach der Reformation; 1578 Regent des Theologischen Kollegs in Leiden"]} 1 +2024-09-11 09:02:36.195275 2024-09-11 09:02:36.195279 dba1c21d-b869-444c-af26-19f8f3d3de98 {"md5": "b5ae770bbf05a4c8ae404f5a8f44ad22", "pid": "14334739X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14334739X", "source": "GND"}], "variant_name": ["Homan, Carine"], "date_of_birth": "1981", "preferred_name": "Homan, Carine Dorianne", "country_associated": "ne", "variant_access_point": ["Homan, Carine, 1981-"], "authorized_access_point": "Homan, Carine Dorianne, 1981-", "biographical_information": ["Diss. Fachbereich Geowissenschaften / Geographie, Univ. Frankfurt a.M."]} 1 +2024-09-11 09:02:36.250008 2024-09-11 09:02:36.250012 d020fbb8-a593-4199-bbd3-07c6fed84c1a {"md5": "92016dcd48183beb5bb76127486946fc", "pid": "143349791", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143349791", "source": "GND"}], "variant_name": ["Jachontova, N. S.", "Jachontova, Natalija Sergeevna", "Jachontova, Natalʹja S."], "date_of_birth": "1955", "preferred_name": "Jachontova, Natalija S.", "country_associated": "ru", "variant_access_point": ["Jachontova, N. S., 1955-", "Jachontova, Natalija Sergeevna, 1955-", "Jachontova, Natalʹja S., 1955-"], "authorized_access_point": "Jachontova, Natalija S., 1955-"} 1 +2024-09-11 09:02:36.315122 2024-09-11 09:02:36.315125 2e0e05df-27af-42dc-b27d-deca9659bfb5 {"md5": "649518ff6d28cace29b3b5fd7c06eed8", "pid": "143350285", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143350285", "source": "GND"}], "preferred_name": "Zarba, Charlotte", "country_associated": "gw", "authorized_access_point": "Zarba, Charlotte"} 1 +2024-09-11 09:02:36.365576 2024-09-11 09:02:36.365579 bb948d9b-183a-490c-b64f-76fecb1ff049 {"md5": "9f3ce09a5134558ee3bbd30ff0bd5ed3", "pid": "143366254", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143366254", "source": "GND"}], "date_of_birth": "01.06.1979", "preferred_name": "Vothknecht, Marc", "authorized_access_point": "Vothknecht, Marc, 1979-"} 1 +2024-09-11 09:02:36.423028 2024-09-11 09:02:36.423031 e5a6d6b4-6697-43f7-92fb-a2cb3f075254 {"md5": "e7e5199375db2ba89b5efadbedd4de50", "pid": "143371193", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143371193", "source": "GND"}], "date_of_birth": "1953", "preferred_name": "Steinbrügge, Lieselotte", "country_associated": "gw", "authorized_access_point": "Steinbrügge, Lieselotte, 1953-"} 1 +2024-09-11 09:02:36.47798 2024-09-11 09:02:36.477985 5eea3bcb-c8da-48a4-a810-3c735dc822eb {"md5": "36806ddb6bf5782d711ad6374e246524", "pid": "143380583", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143380583", "source": "GND"}], "variant_name": ["Bagirov, Fikret Ėjubovič", "Bagirov, Fikret", "Bagirov, F. Ė.", "Bagirov, F."], "preferred_name": "Bagirov, Fikret Ė.", "country_associated": "ru", "variant_access_point": ["Bagirov, Fikret Ėjubovič", "Bagirov, Fikret", "Bagirov, F. Ė.", "Bagirov, F."], "authorized_access_point": "Bagirov, Fikret Ė."} 1 +2024-09-11 09:02:36.530398 2024-09-11 09:02:36.530401 077265de-47a2-4630-9e7f-ba6eca8443a7 {"md5": "3bc45f47c349077b7d44bd3da9d77d52", "pid": "143441450", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143441450", "source": "GND"}], "variant_name": ["Wentzel, Johanna E.", "Hörnig, Johanna Eleonore", "Hörnig, Johanna E.", "Hörnig, ..."], "preferred_name": "Wentzel, Johanna Eleonore", "variant_access_point": ["Wentzel, Johanna E.", "Hörnig, Johanna Eleonore", "Hörnig, Johanna E.", "Hörnig, ..."], "authorized_access_point": "Wentzel, Johanna Eleonore"} 1 +2024-09-11 09:02:36.58517 2024-09-11 09:02:36.585173 11815332-89de-4e9e-9773-08df56020d3b {"md5": "9743338b8afb6db919293318400983bb", "pid": "143443011", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143443011", "source": "GND"}], "variant_name": ["Lindner, Paul"], "preferred_name": "Linder, Paul", "country_associated": "gw", "variant_access_point": ["Lindner, Paul"], "authorized_access_point": "Linder, Paul"} 1 +2024-09-11 09:02:39.464575 2024-09-11 09:02:39.464578 4a9528ba-d81e-48e4-a783-f28c6146301d {"md5": "1fe47006d0821091e3c90bf2ca2f5104", "pid": "170402584", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/170402584", "source": "GND"}], "preferred_name": "Kelly, J. E.", "authorized_access_point": "Kelly, J. E.", "biographical_information": ["Chief examiner of the Chartered Inst. of Bankers in Practice of Banking 1 (1987)"]} 1 +2024-09-11 09:02:36.646077 2024-09-11 09:02:36.64608 6be5a2a4-71b6-479f-8f79-a5989a278f0f {"md5": "9e8ce5c89e01b21ccc78003b384a20ee", "pid": "143454781", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143454781", "source": "GND"}], "variant_name": ["Hull, Richard", "Hull, Richard William"], "date_of_birth": "1940", "preferred_name": "Hull, Richard W.", "country_associated": "xxu", "variant_access_point": ["Hull, Richard, 1940-", "Hull, Richard William, 1940-"], "authorized_access_point": "Hull, Richard W., 1940-", "biographical_information": ["Assoc. Prof. of African History, New York Univ."]} 1 +2024-09-11 09:02:36.701463 2024-09-11 09:02:36.701465 fbc10f67-6d29-4ad3-80ed-b58797486e68 {"md5": "5d516841477c0f7b925572cc48025d31", "pid": "143464000", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143464000", "source": "GND"}], "date_of_birth": "02.12.1939", "preferred_name": "McNeely, Patricia G.", "authorized_access_point": "McNeely, Patricia G., 1939-", "biographical_information": ["lehrte am College of Journalism and Mass Communication at the University of South Carolina"]} 1 +2024-09-11 09:02:36.762308 2024-09-11 09:02:36.762312 2f11a582-14d3-4609-b9ea-52607d02143c {"md5": "e76937f40863aa1d233d2426913fd3b4", "pid": "143465147", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143465147", "source": "GND"}], "variant_name": ["Franck, P."], "preferred_name": "Franck, Philip", "country_associated": "gw", "variant_access_point": ["Franck, P."], "authorized_access_point": "Franck, Philip", "biographical_information": ["Mitentwickler des Konzeptes der Lean Administration dür die Bereiche Dienstleistung und Verwaltung", "Gruppenleiter Consulting, Generali Deutschland Holding AG, Köln"]} 1 +2024-09-11 09:02:36.812834 2024-09-11 09:02:36.812836 f02e1155-1fee-4373-9fa1-e46fdc64397c {"md5": "b75032d8de8e15d20471d257983bd57d", "pid": "143505165", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143505165", "source": "GND"}], "preferred_name": "Sharma, Sarika", "country_associated": "ii", "authorized_access_point": "Sharma, Sarika", "biographical_information": ["Diss. Universität Heidelberg, Fakultät für Biowissenschaften, Deutsches Krebsforschungszentrum (2010)"]} 1 +2024-09-11 09:02:36.864871 2024-09-11 09:02:36.864875 15c7ceb6-edba-42b5-8542-b7f0e22fccc1 {"md5": "d143abcbd9a3aceb86b2a40706fc0a0f", "pid": "143511327", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "qualifier": "Familie", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143511327", "source": "GND"}], "preferred_name": "Keck, Familie", "authorized_access_point": "Keck, Familie", "biographical_information": ["Familie aus Südmähren"]} 1 +2024-09-11 09:02:36.92802 2024-09-11 09:02:36.928024 7f59c96b-de16-4532-b7f2-bbd70fb5ab5a {"md5": "10b390565d9d1b2c6f37934f6e5157e1", "pid": "143513796", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143513796", "source": "GND"}], "date_of_birth": "1951", "preferred_name": "Redner, Sidney", "authorized_access_point": "Redner, Sidney, 1951-", "biographical_information": ["Professor of physics at Boston University"]} 1 +2024-09-11 09:02:36.985293 2024-09-11 09:02:36.985297 025ea09b-8982-4b70-a6c0-3d2727da203c {"md5": "085a8a255e0d141e3f31f3aa94b1609e", "pid": "143530879", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143530879", "source": "GND"}], "date_of_birth": "1929", "preferred_name": "Bleinroth, Heinz-Christel", "country_associated": "gw", "authorized_access_point": "Bleinroth, Heinz-Christel, 1929-", "biographical_information": ["Heidelberg, Univ., Diss., 1962"]} 1 +2024-09-11 09:02:37.042759 2024-09-11 09:02:37.042764 13cb7e84-89e1-458f-b339-19989000c71d {"md5": "0acc551c765ff1e99b1ff8a16bf21727", "pid": "143531468", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143531468", "source": "GND"}], "date_of_birth": "10.07.1934", "date_of_death": "08.02.1967", "preferred_name": "Schütze, Hans Joachim", "country_associated": "gw", "authorized_access_point": "Schütze, Hans Joachim, 1934-1967"} 1 +2024-09-11 09:02:37.133747 2024-09-11 09:02:37.133751 cc2847cb-2d1c-4bcc-be33-928386efd426 {"md5": "47922ddfc69b189062d3466e82516ce8", "pid": "143560794", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143560794", "source": "GND"}], "variant_name": ["Voigt, Theodorus"], "date_of_birth": "09.02.1861", "preferred_name": "Voigt, Theodor", "variant_access_point": ["Voigt, Theodorus, 1861-"], "authorized_access_point": "Voigt, Theodor, 1861-"} 1 +2024-09-11 09:02:37.185358 2024-09-11 09:02:37.185361 12279fd8-e96d-4ac7-ba4f-17c441c33ba1 {"md5": "3fc1d1c59409f94037cfc266744ba6f2", "pid": "143583883", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143583883", "source": "GND"}], "date_of_birth": "1991", "preferred_name": "Jantscher, Jasmin", "country_associated": "au", "authorized_access_point": "Jantscher, Jasmin, 1991-"} 1 +2024-09-11 09:02:37.234882 2024-09-11 09:02:37.234885 cbbc6d41-d134-4a4b-a7be-29201ada9e1e {"md5": "4f36972af977c47bc3a905e0fa4b659d", "pid": "143606336", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143606336", "source": "GND"}], "variant_name": ["Singer, Robert"], "preferred_name": "Singer, Robert Jisrael", "country_associated": "au", "variant_access_point": ["Singer, Robert"], "authorized_access_point": "Singer, Robert Jisrael"} 1 +2024-09-11 09:02:37.287361 2024-09-11 09:02:37.287363 a9dae649-5ade-4b53-8a50-88e380b73f41 {"md5": "7392759bf5f3a635e2f5db9ce9374ff0", "pid": "143612972", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143612972", "source": "GND"}], "preferred_name": "Mentgen, Anna Milena", "country_associated": "gw", "authorized_access_point": "Mentgen, Anna Milena"} 1 +2024-09-11 09:02:37.340048 2024-09-11 09:02:37.340052 d22abf4b-3efe-4ec5-bd46-e7783d5a2d6a {"md5": "1b6ab7391de4036b4835c514064915f3", "pid": "143626655", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143626655", "source": "GND"}], "preferred_name": "Pritzel, Stefanie", "country_associated": "gw", "authorized_access_point": "Pritzel, Stefanie"} 1 +2024-09-11 09:02:37.40011 2024-09-11 09:02:37.400113 0dcce840-553a-40c2-b032-5fdf35f2b069 {"md5": "51a399ab7d50fa8cc43b5528ca66d2ed", "pid": "143641174", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143641174", "source": "GND"}], "date_of_birth": "1970", "preferred_name": "Kraft, Robert", "authorized_access_point": "Kraft, Robert, 1970-"} 1 +2024-09-11 09:02:37.451502 2024-09-11 09:02:37.451505 3a9f6e2c-5a59-4ed9-a753-d0a49a5a6bec {"md5": "6e807baebe849f00cb816edc856db7aa", "pid": "143661779", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143661779", "source": "GND"}], "variant_name": ["Schindler, Fridericus Wilhelmus"], "preferred_name": "Schindler, Friedrich Wilhelm", "variant_access_point": ["Schindler, Fridericus Wilhelmus"], "authorized_access_point": "Schindler, Friedrich Wilhelm", "biographical_information": ["Phil. Stud."]} 1 +2024-09-11 09:02:37.505775 2024-09-11 09:02:37.505778 06eba537-8e89-4aae-b9ca-0fa533515eec {"md5": "1424e9eef9e7b6263c37673725f041ae", "pid": "143679783", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143679783", "source": "GND"}], "variant_name": ["Leimberg, Ingeborg"], "date_of_birth": "02.12.1926", "date_of_death": "12.07.2018", "preferred_name": "Leimberg, Inge", "country_associated": "gw", "variant_access_point": ["Leimberg, Ingeborg, 1926-2018"], "authorized_access_point": "Leimberg, Inge, 1926-2018", "biographical_information": ["Dissertation 1961 (Universität Köln), Habilitation 1968 (Universität Bonn)"]} 1 +2024-09-11 09:02:37.570085 2024-09-11 09:02:37.570088 e9221c67-b650-46da-9cb5-92690c0d5ccd {"md5": "65fa63cca500d827e534b4a0fc11956e", "pid": "14369877X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14369877X", "source": "GND"}], "preferred_name": "Schnell, Susanne", "authorized_access_point": "Schnell, Susanne", "biographical_information": ["Diss. Universität Freiburg im Breisgau"]} 1 +2024-09-11 09:02:37.623345 2024-09-11 09:02:37.623348 160fcb98-7d77-4a44-b397-c70481758ad0 {"md5": "ac585169607698a4f954e412a440e63f", "pid": "143700545", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143700545", "source": "GND"}], "date_of_birth": "1964", "preferred_name": "Jany, Bernhard", "country_associated": "au", "authorized_access_point": "Jany, Bernhard, 1964-", "biographical_information": ["Studium der Völkerkunde an der Universität Wien; 1993-2002 Leiter des Referates Öffentlichkeitsarbeit und 2003-2008 Leiter der Abteilung Öffentlichkeitsarbeit, Presse- und Medienservice im Generalsekretariat beim Österreichischen Roten Kreuz; auch tätig beim Mund- und Fußmalende Künstler Verlag Österreich in Wien"]} 1 +2024-09-11 09:02:37.717349 2024-09-11 09:02:37.717351 80ae1d43-c18a-476b-8aca-c7843e2ae29a {"md5": "322fc000e54675e75f1d3ef250ea9b78", "pid": "143720244", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143720244", "source": "GND"}], "preferred_name": "Whisnant, Rebecca", "authorized_access_point": "Whisnant, Rebecca"} 1 +2024-09-11 09:02:37.778088 2024-09-11 09:02:37.778091 5751cf33-3fe9-45a7-8c72-61496d7989df {"md5": "5470abf1ef4195a4aa556216b948047c", "pid": "143739050", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143739050", "source": "GND"}], "preferred_name": "Johag, Stefan", "country_associated": "gw", "authorized_access_point": "Johag, Stefan"} 1 +2024-09-11 09:02:37.834816 2024-09-11 09:02:37.834821 d23674a7-86d6-4515-943f-9b64408ae606 {"md5": "734fbbf1a85002ee2c373e8d48b587bf", "pid": "143747835", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143747835", "source": "GND"}], "date_of_birth": "1981", "preferred_name": "Gutbrod, Raphael", "authorized_access_point": "Gutbrod, Raphael, 1981-", "biographical_information": ["Diss. Universität Tübingen, Mathematisch-Naturwissenschaftliche Fakultät, Chemie"]} 1 +2024-09-11 09:02:37.887436 2024-09-11 09:02:37.88744 1fe1a497-ec42-477c-bcad-abac542b6bd8 {"md5": "666b76dde6c7dc96ced39db1c77e50e3", "pid": "143755498", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143755498", "source": "GND"}], "date_of_birth": "25.08.1981", "preferred_name": "Roye, Anja", "authorized_access_point": "Roye, Anja, 1981-"} 1 +2024-09-11 09:02:37.949908 2024-09-11 09:02:37.949911 209d9979-7382-4fef-b6d2-d839336c18a1 {"md5": "6acdc75288f585faefbb3cb81f3bd92a", "pid": "14382399X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/14382399X", "source": "GND"}], "date_of_birth": "1964", "preferred_name": "Jeske, Klaudia", "country_associated": "gw", "authorized_access_point": "Jeske, Klaudia, 1964-", "biographical_information": ["Freie Prosa-Autorin"]} 1 +2024-09-11 09:02:38.010391 2024-09-11 09:02:38.010395 a3fba2de-388f-45eb-90c9-21ece0d1c36a {"md5": "5dfed4cd4134479cb9b91ffc112a68fe", "pid": "143849107", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143849107", "source": "GND"}], "variant_name": ["Rhein, Tonja"], "date_of_birth": "15.03.1975", "preferred_name": "Weber, Tonja", "variant_access_point": ["Rhein, Tonja, 1975-"], "authorized_access_point": "Weber, Tonja, 1975-"} 1 +2024-09-11 09:02:38.076068 2024-09-11 09:02:38.076073 296abd87-d6f0-4fe5-af65-e1dbd5d3415f {"md5": "39f85abee42b3f12215e63d0c65195c1", "pid": "143873601", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143873601", "source": "GND"}], "date_of_birth": "1910", "preferred_name": "Peter, Rudolf", "country_associated": "gw", "authorized_access_point": "Peter, Rudolf, 1910-", "biographical_information": ["Heidelberg, Univ., Diss., 1938"]} 1 +2024-09-11 09:02:38.136233 2024-09-11 09:02:38.136236 3db9f56b-6d7e-4c28-a68a-4f0270b67b1d {"md5": "7206f7dbb6da149ce0073252ff0bd034", "pid": "143905856", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143905856", "source": "GND"}], "variant_name": ["Schmidt, Dietrich Wilhelm", "Schmidius, Didericus Wilhelmus", "Schmidt, Diedericus Wilhelmus"], "preferred_name": "Schmid, Dietrich Wilhelm", "country_associated": "gw", "variant_access_point": ["Schmidt, Dietrich Wilhelm", "Schmidius, Didericus Wilhelmus", "Schmidt, Diedericus Wilhelmus"], "authorized_access_point": "Schmid, Dietrich Wilhelm", "biographical_information": ["Medizinstudent in Göttingen"]} 1 +2024-09-11 09:02:38.186467 2024-09-11 09:02:38.18647 99e5c0b1-0461-4619-9542-5858dedab922 {"md5": "3cca1d62cae7d6d6b393122d2dc87500", "pid": "143916629", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143916629", "source": "GND"}], "variant_name": ["Ansorge, Sara"], "date_of_birth": "1574", "date_of_death": "10.04.1633", "preferred_name": "Bartsch, Sara", "variant_access_point": ["Ansorge, Sara, 1574-1633"], "authorized_access_point": "Bartsch, Sara, 1574-1633"} 1 +2024-09-11 09:02:38.239295 2024-09-11 09:02:38.239298 90cf28d3-f43f-40e4-8e56-a38897e2a340 {"md5": "f1676d49d69c442cea03362c827609e7", "pid": "143917889", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143917889", "source": "GND"}], "variant_name": ["Wolf, Joannes Godofredus", "Wolf, Johannes Godofredus", "Wolfius, Joannes Godofredus", "Wolfius, Johannes Godofredus", "Wolfius, Johannes Gottofredus", "Wolff, Johann Gottfried"], "preferred_name": "Wolf, Johann Gottfried", "variant_access_point": ["Wolf, Joannes Godofredus", "Wolf, Johannes Godofredus", "Wolfius, Joannes Godofredus", "Wolfius, Johannes Godofredus", "Wolfius, Johannes Gottofredus", "Wolff, Johann Gottfried"], "authorized_access_point": "Wolf, Johann Gottfried", "biographical_information": ["Aus Eschenbach (Eschenbaco-Noricus]; Med. Respondent in Altdorf"]} 1 +2024-09-11 09:02:38.288224 2024-09-11 09:02:38.288226 d50ccdbe-3cff-4594-bc9c-6f0060237f61 {"md5": "8cd8a4dbc6908b57028ad33f14961c1d", "pid": "143929496", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143929496", "source": "GND"}], "variant_name": ["Sanders, Cornelis E."], "date_of_birth": "1921", "preferred_name": "Sanders, Cornelis", "country_associated": "ne", "variant_access_point": ["Sanders, Cornelis E., 1921-"], "parallel_access_point": ["Sanders, C., 1921-"], "authorized_access_point": "Sanders, Cornelis, 1921-"} 1 +2024-09-11 09:02:38.338677 2024-09-11 09:02:38.338681 51a00416-2ced-4291-8461-45c60512fab1 {"md5": "443dbce186ccea016d32f68fc62979c0", "pid": "143934821", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143934821", "source": "GND"}], "date_of_birth": "1957", "preferred_name": "Voss, Ursula", "country_associated": "gw", "authorized_access_point": "Voss, Ursula, 1957-", "biographical_information": ["Promotion in Experimenteller Psychologie an der University of Southern Mississippi in Hattiesburg, MS, USA, Habilitation in Psychologie an der J. W. Goethe-Universität Frankfurt am Main"]} 1 +2024-09-11 09:02:38.392601 2024-09-11 09:02:38.392605 59731f67-880c-4047-b414-228ab2e0f4e0 {"md5": "ddb8eca1f37406a0b55cc992f137c807", "pid": "143941844", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143941844", "source": "GND"}], "date_of_birth": "1972", "preferred_name": "Stephens, John", "country_associated": "xxu", "authorized_access_point": "Stephens, John, 1972-"} 1 +2024-09-11 09:02:38.442681 2024-09-11 09:02:38.442684 e0b84c04-f413-4efe-b658-7e2f7eb86f52 {"md5": "d1a1b37274a82176d876b8d0f0d5ed6b", "pid": "143985418", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/143985418", "source": "GND"}], "preferred_name": "Porras, Eloy", "country_associated": "ve", "authorized_access_point": "Porras, Eloy", "biographical_information": ["Venezolan. Journalist; lehrt seit 1970 Journalismus an der Univ. Católica Andrés Bello"]} 1 +2024-09-11 09:02:38.50125 2024-09-11 09:02:38.501253 c9eed568-baa8-4083-8ad2-fb7c25e058f2 {"md5": "a26db1c0642e2d90be083ea1065d47a2", "pid": "144017229", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/144017229", "source": "GND"}], "preferred_name": "Kruk, Liedeke", "country_associated": "ne", "authorized_access_point": "Kruk, Liedeke"} 1 +2024-09-11 09:02:38.560451 2024-09-11 09:02:38.560455 745cff99-49a7-40fa-a09d-e2361345929c {"md5": "86c5c7e519eef2d4ba568738b9352cdd", "pid": "144040182", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/144040182", "source": "GND"}], "date_of_birth": "ca. 20. Jh.", "preferred_name": "Arkapaw, Adam", "country_associated": "at", "authorized_access_point": "Arkapaw, Adam, ca. 20. Jh."} 1 +2024-09-11 09:02:38.616529 2024-09-11 09:02:38.616532 47adfbeb-947e-4d0c-90ea-3325a2ea2f9e {"md5": "6ad5449833e89fc382b5ab1438e2657a", "pid": "156719029", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/156719029", "source": "GND"}], "preferred_name": "Hurst, R. C.", "authorized_access_point": "Hurst, R. C."} 1 +2024-09-11 09:02:38.673131 2024-09-11 09:02:38.673135 5f4bbd47-a24a-4bb3-8dab-848c1eb582c0 {"md5": "63cbc74a9925e7899a3023e1b8fae903", "pid": "158403487", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/158403487", "source": "GND"}], "variant_name": ["Karbunes, Nikos", "Karbunēs, N."], "date_of_birth": "1880", "date_of_death": "1947", "preferred_name": "Karbunēs, Nikos", "country_associated": "gr", "variant_access_point": ["Karbunes, Nikos, 1880-1947", "Karbunēs, N., 1880-1947"], "authorized_access_point": "Karbunēs, Nikos, 1880-1947", "biographical_information": ["Griech. Prosaist und Übersetzer"]} 1 +2024-09-11 09:02:38.734592 2024-09-11 09:02:38.734595 c3da2b9c-9dfb-4b28-a5f6-e85ceb318557 {"md5": "162baaf03f2d87fce777692bdedee059", "pid": "16110522X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16110522X", "source": "GND"}], "preferred_name": "Reynolds, Catherine", "authorized_access_point": "Reynolds, Catherine", "biographical_information": ["lecturer in the History of Art"]} 1 +2024-09-11 09:02:38.79107 2024-09-11 09:02:38.791074 3093beb6-bd82-4cf8-ad75-704b23842286 {"md5": "a258adaffe34b35dad779fd69103fe1f", "pid": "170056937", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/170056937", "source": "GND"}], "variant_name": ["DeRosa, Dean Arthur", "Rosa, Dean Arthur de", "DeRosa, D. A."], "preferred_name": "DeRosa, Dean A.", "variant_access_point": ["DeRosa, Dean Arthur", "Rosa, Dean Arthur de", "DeRosa, D. A."], "authorized_access_point": "DeRosa, Dean A.", "biographical_information": ["Tätig bei der ADR Internat. Ltd., Falls Church, Virginia, USA; Tätig in der Asian Development Bank; Tätig beim IMF, Research Dep.; Tätig in der Trade and Macroeconomics Div., Internat. Food Policy Research Inst., Washington, DC"]} 1 +2024-09-11 09:02:38.853528 2024-09-11 09:02:38.85353 3ebe3e86-1dbd-4b98-b762-98b8fac40d6e {"md5": "0514ba58f3fce57e5eef7a8d11b4d537", "pid": "170064344", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/170064344", "source": "GND"}], "variant_name": ["Milanovski, Vlodzimež"], "preferred_name": "Milanowski, Wlodzimierz", "variant_access_point": ["Milanovski, Vlodzimež"], "authorized_access_point": "Milanowski, Wlodzimierz"} 1 +2024-09-11 09:02:39.514168 2024-09-11 09:02:39.514172 49d71983-78b6-4f2e-b47c-b23828f927e1 {"md5": "a06f712c68ae822ad434d91322292135", "pid": "170410633", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/170410633", "source": "GND"}], "variant_name": ["Kraevska, Anna"], "preferred_name": "Krajewska, Anna", "country_associated": "pl", "variant_access_point": ["Kraevska, Anna"], "authorized_access_point": "Krajewska, Anna"} 1 +2024-09-11 09:02:38.906919 2024-09-11 09:02:38.906922 fff388e2-7b08-4b05-9962-ad113e1f93b3 {"md5": "492ba27eafcd910b52752feb25cb697c", "pid": "17014514X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/17014514X", "source": "GND"}], "variant_name": ["Schipper, Leon J.", "Schipper, Leon Jay", "Schipper, Lee", "Schipper, L. J.", "Schipper, L."], "date_of_birth": "07.04.1947", "date_of_death": "16.08.2011", "preferred_name": "Schipper, Lee J.", "variant_access_point": ["Schipper, Leon J., 1947-2011", "Schipper, Leon Jay, 1947-2011", "Schipper, Lee, 1947-2011", "Schipper, L. J., 1947-2011", "Schipper, L., 1947-2011"], "authorized_access_point": "Schipper, Lee J., 1947-2011", "biographical_information": ["Tätig an der Global Metropolitan Studies, Univ. of California, Berkeley, CA, USA; tätig am Lawrence Berkeley Laboratory, Univ. of California, Berkeley, CA, USA; tätig für VVS Teknika Förening in Stockholm, Sweden; tätig für die Internat. Energy Agency, Paris"]} 1 +2024-09-11 09:02:38.964011 2024-09-11 09:02:38.964016 ec9540a6-5287-4579-8881-67b9f530aba9 {"md5": "1f25f009829abd0f4dd58831ef159057", "pid": "170154297", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/170154297", "source": "GND"}], "variant_name": ["Phạm, Cao Dương", "Cao Dươg, Phạm", "Dương, Phạm C.", "Dương, Phạm Cao"], "date_of_birth": "1937", "preferred_name": "Phạm Cao Dương", "country_associated": "vm", "variant_access_point": ["Phạm, Cao Dương, 1937-", "Cao Dươg, Phạm, 1937-", "Dương, Phạm C., 1937-", "Dương, Phạm Cao, 1937-"], "authorized_access_point": "Phạm Cao Dương, 1937-", "biographical_information": ["lehrt an Universitäten in Südkalifornien"]} 1 +2024-09-11 09:02:39.018147 2024-09-11 09:02:39.018151 5cc05e7c-3626-4588-911c-e450acc666bd {"md5": "453e5851755d957379562dc1fdb9ce36", "pid": "17017252X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/17017252X", "source": "GND"}], "variant_name": ["Perry, M."], "date_of_birth": "1956", "preferred_name": "Perry, Martin", "variant_access_point": ["Perry, M., 1956-"], "authorized_access_point": "Perry, Martin, 1956-", "biographical_information": ["Dep. of Management and Enterprise Development, College of Business, Massey Univ., Wellington", "Dep. of Geography, Nat. Univ. of Singapore", "Dep. of Labour, Wellington", "New Zealand Centre for SME Research, Massey Univ."]} 1 +2024-09-11 09:02:39.072356 2024-09-11 09:02:39.07236 8ff2a81b-34d5-471b-9c68-047720b346ac {"md5": "2439f93743123becfc1b53830d5c4031", "pid": "170229955", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/170229955", "source": "GND"}], "preferred_name": "Bienkowski, Mishka", "authorized_access_point": "Bienkowski, Mishka", "biographical_information": ["Research fellow in the Centre for the Study of Public Policy at the Univ. of Strathclyde (1986)"]} 1 +2024-09-11 09:02:39.124782 2024-09-11 09:02:39.124786 ac60fb78-24a6-41c3-9ce4-d4facde0aeea {"md5": "ec156e86e8e06b54f004ea73d7e80b48", "pid": "170238873", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/170238873", "source": "GND"}], "variant_name": ["Ricketts, M.", "Ricketts, M. J.", "Ricketts, Martin J."], "date_of_birth": "1948", "preferred_name": "Ricketts, Martin", "country_associated": "xxk", "variant_access_point": ["Ricketts, M., 1948-", "Ricketts, M. J., 1948-", "Ricketts, Martin J., 1948-"], "parallel_access_point": ["Ricketts, Martin J., 1948-"], "authorized_access_point": "Ricketts, Martin, 1948-", "biographical_information": ["Dean, School of Humanities, Univ. of Buckingham, UK", "Professor of Economic Organisation at the University of Buckingham; graduated from the Univ. of Newcastle Upon Tyne (1970) and has a DPhil from the Univ. of York (1980)."]} 1 +2024-09-11 09:02:39.181411 2024-09-11 09:02:39.181414 c4a144c3-49c0-4813-8232-4d15d8fcb99b {"md5": "716dd35e200b18842d344a887986ca01", "pid": "17027926X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/17027926X", "source": "GND"}], "variant_name": ["Higham, Robin D. S.", "Higham, Robin D.", "Higham, Robin David Stewart"], "date_of_birth": "20.06.1925", "date_of_death": "27.08.2015", "preferred_name": "Higham, Robin", "country_associated": "xxu", "variant_access_point": ["Higham, Robin D. S., 1925-2015", "Higham, Robin D., 1925-2015", "Higham, Robin David Stewart, 1925-2015"], "authorized_access_point": "Higham, Robin, 1925-2015", "biographical_information": ["Luftfahrt- und Militärhistoriker; 1943-1947 Pilot und Flight Sergeant in der Canadian Royal Air Force in Europa und Asien (Burma Road); Studium an der University of New Hampshire, der Harvard University und Claremont Graduate School; 1954-1957 Instructor an der University of Massachusetts; Promotion, Harvard University, 1957; Assistant Professor an der University of North Carolina; ; 1963-1999 Professor of Military History an der Kansas State University; Gründer der Sunflower University Press (1977-2005)"]} 1 +2024-09-11 09:02:39.251645 2024-09-11 09:02:39.251649 fdb77cef-50ef-4008-a36a-e806481ee4c5 {"md5": "3f64ac5f86904f99bc72cbaa5c0a8cd5", "pid": "170299597", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/170299597", "source": "GND"}], "preferred_name": "Apicella, Vincenzo", "authorized_access_point": "Apicella, Vincenzo", "biographical_information": ["SVIMEZ, Assoc. for Industrial Development in Southern Italy (1996)"]} 1 +2024-09-11 09:02:39.310636 2024-09-11 09:02:39.310641 ade5dbca-94ff-4a94-a18c-919d4a65a554 {"md5": "ffeef502b3b9ac496eea69b1ac4dbd64", "pid": "170311295", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/170311295", "source": "GND"}], "preferred_name": "Robertson, Gilbert C.", "authorized_access_point": "Robertson, Gilbert C.", "biographical_information": ["Lecturer in legal studies, School of Management, Deakin Univ. (1987)"]} 1 +2024-09-11 09:02:39.361656 2024-09-11 09:02:39.36166 f14c403a-37e0-4f86-a60f-7f451d51188b {"md5": "c7cabb567d77ab494272c45eb9c7614e", "pid": "170322122", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/170322122", "source": "GND"}], "preferred_name": "Bencze, Lajos", "authorized_access_point": "Bencze, Lajos", "biographical_information": ["prof. ing., CSc. (1985)"]} 1 +2024-09-11 09:02:39.412681 2024-09-11 09:02:39.412685 adccf7a5-db79-4b53-be70-3d671a4262c5 {"md5": "f2e4a01c5ec8fadda9e3c83c54ac65ae", "pid": "170395839", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/170395839", "source": "GND"}], "preferred_name": "Saunier, Richard E.", "authorized_access_point": "Saunier, Richard E.", "biographical_information": ["Environmental specialist for Latin America region (1981)"]} 1 +2024-09-11 09:02:39.565277 2024-09-11 09:02:39.56528 68f2a7b8-6a03-4e0d-9604-f724c3acb92a {"md5": "50a8fd06348a149801a20c94c72a8e48", "pid": "170454428", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/170454428", "source": "GND"}], "variant_name": ["Taylor, Jon G."], "preferred_name": "Taylor, Jon Gregory", "variant_access_point": ["Taylor, Jon G."], "authorized_access_point": "Taylor, Jon Gregory", "biographical_information": ["Chicago Corporation (1985); Commonwealth Funds Management (1998)"]} 1 +2024-09-11 09:02:39.619128 2024-09-11 09:02:39.619131 87fbc921-0ab8-4ed7-b6f4-97a886501232 {"md5": "5244f35cdeeb09bdc144847266d8ba25", "pid": "170502708", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/170502708", "source": "GND"}], "preferred_name": "Aggefors, Kerstin", "authorized_access_point": "Aggefors, Kerstin", "biographical_information": ["Statens Industriverk (1987)"]} 1 +2024-09-11 09:02:39.672103 2024-09-11 09:02:39.672107 b04fbc35-e0d4-4193-a1f2-1c7c2d8693f9 {"md5": "bfcaf640c01ae0788c5568a41f3de3d0", "pid": "170594211", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/170594211", "source": "GND"}], "date_of_birth": "1938", "preferred_name": "Palmer, John", "authorized_access_point": "Palmer, John, 1938-", "biographical_information": ["European ed. of \\"The Guardian\\" and Britain's most informed commentator on the European Community (1988)"]} 1 +2024-09-11 09:02:39.735469 2024-09-11 09:02:39.735472 bdbce5c3-34b4-4d6a-8c35-96e793eb0f7a {"md5": "6b4f7ae9895380286e32a3c4633b056f", "pid": "170661393", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/170661393", "source": "GND"}], "variant_name": ["Dertouzos, James"], "date_of_birth": "1950", "preferred_name": "Dertouzos, James N.", "variant_access_point": ["Dertouzos, James, 1950-"], "authorized_access_point": "Dertouzos, James N., 1950-", "biographical_information": ["Tätig bei der Rand Corp., Santa Monica, Calif."]} 1 +2024-09-11 09:02:39.792286 2024-09-11 09:02:39.792291 d042abd6-7b8a-42df-9519-77fb217baeb4 {"md5": "d3089cf77a23c9740337551437f6df0a", "pid": "170678253", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/170678253", "source": "GND"}], "variant_name": ["Stojanov, V."], "preferred_name": "Stojanov, Veselin", "country_associated": "bu", "variant_access_point": ["Stojanov, V."], "authorized_access_point": "Stojanov, Veselin"} 1 +2024-09-11 09:02:39.85264 2024-09-11 09:02:39.852643 c54ee768-1e94-44c3-89e4-42cd14b7b684 {"md5": "a079288ca61d3c5093561395bb2eef19", "pid": "170725383", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/170725383", "source": "GND"}], "variant_name": ["Chenoweth, Florence Alletta"], "date_of_birth": "1945", "preferred_name": "Chenoweth, Florence A.", "country_associated": "lb", "variant_access_point": ["Chenoweth, Florence Alletta, 1945-"], "authorized_access_point": "Chenoweth, Florence A., 1945-"} 1 +2024-09-11 09:02:39.93578 2024-09-11 09:02:39.935784 a7ac1340-7b41-42d1-9071-b517141be815 {"md5": "3ba5e666db2e9c264e93aaa1f241064d", "pid": "170813010", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/170813010", "source": "GND"}], "date_of_birth": "1943", "preferred_name": "Ramahatra, Olivier", "authorized_access_point": "Ramahatra, Olivier, 1943-", "biographical_information": ["Dipl.-Ing., Univ. d'Antananarivo (1989)"]} 1 +2024-09-11 09:02:40.073039 2024-09-11 09:02:40.073043 48da8436-db2f-4913-8c67-7050fc1be587 {"md5": "adfdcfdb7f9df7b6c72da4b1c95c5b49", "pid": "170877965", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/170877965", "source": "GND"}], "variant_name": ["Oliveira, Antônio Moisés de"], "preferred_name": "Oliveira, Antônio M. de", "variant_access_point": ["Oliveira, Antônio Moisés de"], "authorized_access_point": "Oliveira, Antônio M. de", "biographical_information": ["Eng.-Agr., Viçosa, MG, Brasil (1989)"]} 1 +2024-09-11 09:02:40.204599 2024-09-11 09:02:40.204601 82f779db-0697-4d57-a4b1-300ea0a10889 {"md5": "5eb577a16aa662dd76d5d1ba2bb64b9c", "pid": "170952320", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/170952320", "source": "GND"}], "preferred_name": "Rommel, Wolrad", "authorized_access_point": "Rommel, Wolrad", "biographical_information": ["Dr., wiss. Inst. für Kommunikationsdienste GmbH (1992)"]} 1 +2024-09-11 09:02:40.307619 2024-09-11 09:02:40.307624 9caeeb16-02cd-49bc-a9a9-d1711ea817b9 {"md5": "f775b7de8d19121e126d68f0b52e31b6", "pid": "170971325", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/170971325", "source": "GND"}], "variant_name": ["Parker, Ian"], "preferred_name": "Parker, Ian C.", "variant_access_point": ["Parker, Ian"], "authorized_access_point": "Parker, Ian C.", "biographical_information": ["Tätig an der Univ. of Toronto"]} 1 +2024-09-11 09:02:40.365136 2024-09-11 09:02:40.365138 d21c8aa6-e799-4160-af95-30573d762ba0 {"md5": "23e92f3c26271e6f5553c7bb0c3a8173", "pid": "170996085", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/170996085", "source": "GND"}], "variant_name": ["Kondratieva, T. S."], "preferred_name": "Kondratʹeva, T. S.", "variant_access_point": ["Kondratieva, T. S."], "authorized_access_point": "Kondratʹeva, T. S."} 1 +2024-09-11 09:02:40.420482 2024-09-11 09:02:40.420486 37450dc9-807d-4031-b7c3-eb3b4c6588d5 {"md5": "f0b1e7f5ac1c209a60cd0035537056c2", "pid": "171052412", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/171052412", "source": "GND"}], "variant_name": ["Dholakia, Bakulrai H.", "Dholakia, B. H.", "Dholakiyā, Bakula Harṣadarāya", "Dholakia, Bakul Harshadrai"], "date_of_birth": "1947", "preferred_name": "Dholakia, Bakul H.", "variant_access_point": ["Dholakia, Bakulrai H., 1947-", "Dholakia, B. H., 1947-", "Dholakiyā, Bakula Harṣadarāya, 1947-", "Dholakia, Bakul Harshadrai, 1947-"], "authorized_access_point": "Dholakia, Bakul H., 1947-", "biographical_information": ["Prof., Indian Inst. of Management, Ahmedabad"]} 1 +2024-09-11 09:02:40.477787 2024-09-11 09:02:40.477791 93a88c4e-c2b9-48b9-8b60-59d2c35902fa {"md5": "1594c19891af9e3e4672b401b87e0d97", "pid": "171082079", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/171082079", "source": "GND"}], "preferred_name": "Wada, Yoshiyuki", "authorized_access_point": "Wada, Yoshiyuki", "biographical_information": ["Faculty of Economics, Osaka Univ. (1991)"]} 1 +2024-09-11 09:02:40.530682 2024-09-11 09:02:40.530686 af7ee370-bd15-4b11-a2d8-22b6d7fddc11 {"md5": "da648ede6528e4c3357a229356eacf2e", "pid": "171115058", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/171115058", "source": "GND"}], "variant_name": ["Candeal-Haro, Juan C.", "Haro, Juan Carlos Candeal-", "Candeal, Juan Carlos", "Candeal, J. C.", "Candeal, Juan C."], "preferred_name": "Candeal-Haro, Juan Carlos", "variant_access_point": ["Candeal-Haro, Juan C.", "Haro, Juan Carlos Candeal-", "Candeal, Juan Carlos", "Candeal, J. C.", "Candeal, Juan C."], "authorized_access_point": "Candeal-Haro, Juan Carlos", "biographical_information": ["Tätig an der Univ. Zaragoza, Spanien"]} 1 +2024-09-11 09:02:40.590501 2024-09-11 09:02:40.590504 3abac137-08f6-429a-a63d-d77ae6d9d705 {"md5": "993648ebb61f739457332ca72a942c44", "pid": "171217772", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/171217772", "source": "GND"}], "variant_name": ["Zausaev, Vadim Konstantinovič", "Zausaev, V. K."], "preferred_name": "Zausaev, Vadim K.", "variant_access_point": ["Zausaev, Vadim Konstantinovič", "Zausaev, V. K."], "authorized_access_point": "Zausaev, Vadim K.", "biographical_information": ["Tätig am Institute of Market Research, Khabarovsk, Russia (director)"]} 1 +2024-09-11 09:02:40.643595 2024-09-11 09:02:40.643598 6f074040-8452-4766-91c0-e4d9bdc272c5 {"md5": "00a19f2fbba36e7e7e05947359211b79", "pid": "171283899", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/171283899", "source": "GND"}], "variant_name": ["Chowdhury, Rukhsana Akhter", "Akhter Chowdhury, Rukhsana"], "preferred_name": "Chowdhury, Rukhsana A.", "variant_access_point": ["Chowdhury, Rukhsana Akhter", "Akhter Chowdhury, Rukhsana"], "authorized_access_point": "Chowdhury, Rukhsana A.", "biographical_information": ["Ramgarh Degree College, Khagrachari (1991)"]} 1 +2024-09-11 09:02:40.698992 2024-09-11 09:02:40.698994 0c97165c-309c-442f-b06c-8bc0a12b1784 {"md5": "b60fa82a3d7988edefcae53578dcbb51", "pid": "171302605", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/171302605", "source": "GND"}], "variant_name": ["Xinghe Wang", "Xinghe, Wang"], "preferred_name": "Wang, Xinghe", "variant_access_point": ["Xinghe Wang", "Xinghe, Wang"], "authorized_access_point": "Wang, Xinghe", "biographical_information": ["Univ. of Missouri, Columbia, MO, USA (1994)"]} 1 +2024-09-11 09:02:40.753888 2024-09-11 09:02:40.753891 fcd944a8-7617-442d-bb2c-64d86e5504e3 {"md5": "0168f28d556149d24060936309a04fed", "pid": "171346424", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/171346424", "source": "GND"}], "preferred_name": "Sigl, Eduard", "authorized_access_point": "Sigl, Eduard", "biographical_information": ["Dr., Inst. für Organistions- und Wirtschaftspsychologie, Univ. München (1994)"]} 1 +2024-09-11 09:02:40.811724 2024-09-11 09:02:40.811729 84f502f0-3f03-4e91-852d-8f39646a1937 {"md5": "47425a4f6553115cf71e550b25ed08fa", "pid": "171367421", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/171367421", "source": "GND"}], "preferred_name": "O'Connell, Maurice", "country_associated": "ie", "authorized_access_point": "O'Connell, Maurice", "biographical_information": ["Central Bank of Ireland (1994)"]} 1 +2024-09-11 09:02:40.880317 2024-09-11 09:02:40.88032 649a3c1e-8979-4a90-93bc-ef495bcf5ba6 {"md5": "dad80536a915ed16c6893311ab35b0c3", "pid": "171541545", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/171541545", "source": "GND"}], "variant_name": ["Encarnación, Omar Guillermo"], "date_of_birth": "1962", "preferred_name": "Encarnación, Omar G.", "country_associated": "xxu", "variant_access_point": ["Encarnación, Omar Guillermo, 1962-"], "authorized_access_point": "Encarnación, Omar G., 1962-", "biographical_information": ["Assistent Professor am Sarah Lawrence College (1996)"]} 1 +2024-09-11 09:02:40.933177 2024-09-11 09:02:40.93318 278087e7-6bf9-466d-9da8-eae0b2dbff38 {"md5": "b0749abaca2b12457951c0b2fdfe4688", "pid": "171555430", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/171555430", "source": "GND"}], "preferred_name": "Cherry, Steven", "authorized_access_point": "Cherry, Steven", "biographical_information": ["Tätig an der Univ. of East Anglia, Norwich, UK (1997)"]} 1 +2024-09-11 09:02:40.991524 2024-09-11 09:02:40.991528 d0ec24cb-b505-41ee-a670-7e0306a5e7c5 {"md5": "969af5c338bb86eeecf1cc8ad37b82c0", "pid": "171629353", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/171629353", "source": "GND"}], "preferred_name": "Thum, Oliver", "country_associated": "ru", "authorized_access_point": "Thum, Oliver"} 1 +2024-09-11 09:02:41.053206 2024-09-11 09:02:41.053209 2a9fdb89-3cd5-42d0-96df-589a138bab7f {"md5": "dcc1d25ffcf4ea63c3ad91dc11893890", "pid": "171634667", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/171634667", "source": "GND"}], "variant_name": ["Abellán, Aurelio Cebrián", "Cebrián-Abellán, Aurelio"], "preferred_name": "Cebrián Abellán, Aurelio", "variant_access_point": ["Abellán, Aurelio Cebrián", "Cebrián-Abellán, Aurelio"], "authorized_access_point": "Cebrián Abellán, Aurelio"} 1 +2024-09-11 09:02:41.108314 2024-09-11 09:02:41.108318 66ff61cd-ad2a-4e4d-97eb-81baa89664e8 {"md5": "4e507fdb9fa0af4e3317ca33e429877f", "pid": "171707788", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/171707788", "source": "GND"}], "preferred_name": "Houtman, Irene", "authorized_access_point": "Houtman, Irene", "biographical_information": ["NIA TNO, Amsterdam (1997)"]} 1 +2024-09-11 09:02:41.158991 2024-09-11 09:02:41.158995 f6825919-f82f-48b8-a187-feabcf5f76a2 {"md5": "f889205ff14f8392f8c9db28e602495c", "pid": "171735099", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/171735099", "source": "GND"}], "preferred_name": "Hottinger, Olaf", "authorized_access_point": "Hottinger, Olaf", "biographical_information": ["Univ. Heidelberg (1998)"]} 1 +2024-09-11 09:02:41.210025 2024-09-11 09:02:41.210029 4339aa0f-5e93-427f-ae7c-b627c29f1513 {"md5": "bd3473172c4c9bd46a148177504e0785", "pid": "171781082", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/171781082", "source": "GND"}], "variant_name": ["Bongenaar, A."], "preferred_name": "Bongenaar, Arne", "variant_access_point": ["Bongenaar, A."], "authorized_access_point": "Bongenaar, Arne", "biographical_information": ["Schiphol Internat. (1998)"]} 1 +2024-09-11 09:02:41.262078 2024-09-11 09:02:41.262081 fd1c3105-b518-417f-8d84-270e6dd0a394 {"md5": "073612bd33323c581c5524d2df775493", "pid": "171827872", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/171827872", "source": "GND"}], "variant_name": ["Kornish, Laura Joyce"], "preferred_name": "Kornish, Laura J.", "variant_access_point": ["Kornish, Laura Joyce"], "authorized_access_point": "Kornish, Laura J.", "biographical_information": ["Tätig an d. The Fuqua School of Business, Duke Univ., Durham, NC; Leeds School of Business, Univ. of Colorade, Boulder"]} 1 +2024-09-11 09:02:41.31646 2024-09-11 09:02:41.316463 5d8280fe-e1fc-463f-be00-3b99df18155f {"md5": "c99f0ce9463e7b9c9d45c2472d21bd47", "pid": "17187935X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/17187935X", "source": "GND"}], "variant_name": ["Čebotareva, N.", "Chebotareva, N.", "Chebotareva, N. A."], "preferred_name": "Čebotareva, N. A.", "variant_access_point": ["Čebotareva, N.", "Chebotareva, N.", "Chebotareva, N. A."], "authorized_access_point": "Čebotareva, N. A.", "biographical_information": ["Economic Expert Group of the Russian Federation Ministry of Finance"]} 1 +2024-09-11 09:02:41.372187 2024-09-11 09:02:41.37219 6e874336-784c-44bf-8040-2de2a26f1b83 {"md5": "a954dfc5d0af4158edc2cce2da8ce25e", "pid": "171899660", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/171899660", "source": "GND"}], "variant_name": ["Durieu, J."], "preferred_name": "Durieu, Jacques", "variant_access_point": ["Durieu, J."], "authorized_access_point": "Durieu, Jacques", "biographical_information": ["Tätig an der Univ. of Saint-Etienne, Saint-Etienne, France ; Univ. of Grenoble 2"]} 1 +2024-09-11 09:02:41.426359 2024-09-11 09:02:41.426365 121766af-cfde-47b9-9176-6d75b3eeb6d1 {"md5": "848031a959e8d043fb521c237b16bd42", "pid": "17205821X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/17205821X", "source": "GND"}], "variant_name": ["Lanneau Eaker, Helen"], "date_of_birth": "1922", "preferred_name": "Eaker, Helen L.", "variant_access_point": ["Lanneau Eaker, Helen, 1922-"], "authorized_access_point": "Eaker, Helen L., 1922-"} 1 +2024-09-11 09:02:41.489158 2024-09-11 09:02:41.48916 b54daa7d-b514-46f9-b4c1-cb69f344e284 {"md5": "518309511ad159068ab0fac6a47e81c1", "pid": "172099331", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172099331", "source": "GND"}], "date_of_birth": "1925", "date_of_death": "2015", "preferred_name": "Gleitman, Henry", "country_associated": "gw", "authorized_access_point": "Gleitman, Henry, 1925-2015"} 1 +2024-09-11 09:02:41.5571 2024-09-11 09:02:41.557103 47c2c576-77b7-4b4f-a866-5223f6bc87df {"md5": "4436c1a090daa8f569558073d6239926", "pid": "172140013", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172140013", "source": "GND"}], "date_of_birth": "1936", "preferred_name": "Hocks, Richard A.", "authorized_access_point": "Hocks, Richard A., 1936-"} 1 +2024-09-11 09:02:41.616992 2024-09-11 09:02:41.616995 f34ac711-f9ab-42aa-ad52-3f7baca2ce61 {"md5": "2628fc68b83925d6c2ac85a787a483e0", "pid": "172141788", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172141788", "source": "GND"}], "variant_name": ["Hollander, J."], "date_of_birth": "28.10.1929", "date_of_death": "17.08.2013", "preferred_name": "Hollander, John", "country_associated": "xxc", "variant_access_point": ["Hollander, J., 1929-2013"], "authorized_access_point": "Hollander, John, 1929-2013"} 1 +2024-09-11 09:02:41.672983 2024-09-11 09:02:41.672986 6a896f58-5415-49a8-b296-683eff9a779f {"md5": "903fcdc0070f428cc22512a9510a7d27", "pid": "172206790", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172206790", "source": "GND"}], "variant_name": ["Kim Il-Su", "Il-su, Kim", "김, 일수"], "date_of_birth": "26.08.1946", "preferred_name": "Kim, Il-Su", "country_associated": "ko", "variant_access_point": ["Kim Il-Su, 1946-", "Il-su, Kim, 1946-", "김, 일수, 1946-"], "parallel_access_point": ["김일수, 1946-"], "authorized_access_point": "Kim, Il-Su, 1946-", "biographical_information": ["Diss. jur. München"]} 1 +2024-09-11 09:02:41.737667 2024-09-11 09:02:41.737669 5c9e7726-593b-4e8f-a83e-dd5266b99ab4 {"md5": "315c3bafde751fe639d8920c77749569", "pid": "172224314", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172224314", "source": "GND"}], "date_of_birth": "1960", "preferred_name": "Lewen, Bernd", "authorized_access_point": "Lewen, Bernd, 1960-"} 1 +2024-09-11 09:02:41.78776 2024-09-11 09:02:41.787762 83ef8154-eb53-4325-a3ed-a54b638b1a3b {"md5": "28a728ba616426c8868e915c5b65b41f", "pid": "172252938", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172252938", "source": "GND"}], "date_of_birth": "1951", "preferred_name": "Mavituna, Ferda", "authorized_access_point": "Mavituna, Ferda, 1951-"} 1 +2024-09-11 09:02:41.845077 2024-09-11 09:02:41.845082 bed3bb66-cf77-46f2-9331-313352cfab50 {"md5": "6fbb2fabadf816aed5535ab940d81d8a", "pid": "172263840", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172263840", "source": "GND"}], "variant_name": ["Morgan, Karl Ziegler", "Ziegler Morgan, Karl", "Morgan, K.Z."], "date_of_birth": "1908", "date_of_death": "1999", "preferred_name": "Morgan, Karl Z.", "country_associated": "xxu", "variant_access_point": ["Morgan, Karl Ziegler, 1908-1999", "Ziegler Morgan, Karl, 1908-1999", "Morgan, K.Z., 1908-1999"], "authorized_access_point": "Morgan, Karl Z., 1908-1999", "biographical_information": ["Physiker", "Vollständiger Vorname: Karl Ziegler"]} 1 +2024-09-11 09:02:41.900505 2024-09-11 09:02:41.900508 695360b2-a524-4669-b546-c90f1656c8ba {"md5": "e3092a47626eb31a5e2495c9069bcc3a", "pid": "172265258", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172265258", "source": "GND"}], "variant_name": ["Moulik, Tushar K.", "Moulik, Toushar"], "date_of_birth": "1936", "preferred_name": "Moulik, Tushar Kanti", "variant_access_point": ["Moulik, Tushar K., 1936-", "Moulik, Toushar, 1936-"], "authorized_access_point": "Moulik, Tushar Kanti, 1936-"} 1 +2024-09-11 09:02:41.957344 2024-09-11 09:02:41.957346 52cfb03b-b6dc-488b-96a4-3463afd5fd7f {"md5": "1dd02c15f2251b4140406d17768c3dff", "pid": "172316480", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172316480", "source": "GND"}], "variant_name": ["Parker, Gordon Barraclough"], "date_of_birth": "1942", "preferred_name": "Parker, Gordon", "country_associated": "at", "variant_access_point": ["Parker, Gordon Barraclough, 1942-"], "authorized_access_point": "Parker, Gordon, 1942-", "biographical_information": ["Prof. für Psychiatrie"]} 1 +2024-09-11 09:02:42.025886 2024-09-11 09:02:42.025891 4d196bdc-fc11-4bab-b69e-ae75022d1234 {"md5": "83275241b209224d949989c947c63e29", "pid": "172325749", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172325749", "source": "GND"}], "variant_name": ["Rath, Ingo"], "date_of_birth": "1964", "preferred_name": "Rath, Ingo W.", "variant_access_point": ["Rath, Ingo, 1964-"], "authorized_access_point": "Rath, Ingo W., 1964-", "biographical_information": ["österr. Philosoph", "Philosoph"]} 1 +2024-09-11 09:02:42.08864 2024-09-11 09:02:42.088642 409f5fe4-897d-45c0-a82e-f01643581f08 {"md5": "b0a9dcb5d34e15741560804c8ceebdc2", "pid": "172335450", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172335450", "source": "GND"}], "variant_name": ["Brosell, Helmut", "Brosell, Helmut Rohlfing-", "Rohlfing, Helmut"], "date_of_birth": "1946", "preferred_name": "Rohlfing-Brosell, Helmut", "variant_access_point": ["Brosell, Helmut, 1946-", "Brosell, Helmut Rohlfing-, 1946-", "Rohlfing, Helmut, 1946-"], "authorized_access_point": "Rohlfing-Brosell, Helmut, 1946-", "biographical_information": ["Informatiker"]} 1 +2024-09-11 09:02:42.141106 2024-09-11 09:02:42.141109 39c6f259-eedc-4f29-8343-547da4bc3b23 {"md5": "7c5f712e80a38a4556b02ae43ad4f02b", "pid": "172435498", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172435498", "source": "GND"}], "variant_name": ["Wenke, Heike V.", "Wenke, Heike Vogelsang-"], "preferred_name": "Vogelsang-Wenke, Heike", "variant_access_point": ["Wenke, Heike V.", "Wenke, Heike Vogelsang-"], "authorized_access_point": "Vogelsang-Wenke, Heike"} 1 +2024-09-11 09:02:42.201694 2024-09-11 09:02:42.201698 a1664cde-1dd5-4e75-9ebd-7d6d8a3d903f {"md5": "e4fbea4ac139b063920037fa7646d59b", "pid": "172448611", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172448611", "source": "GND"}], "variant_name": ["Westbrook, Jack Hall", "Westbrook, J. H.", "Westbrook, J.H."], "date_of_birth": "1924", "preferred_name": "Westbrook, Jack H.", "variant_access_point": ["Westbrook, Jack Hall, 1924-", "Westbrook, J. H., 1924-", "Westbrook, J.H., 1924-"], "authorized_access_point": "Westbrook, Jack H., 1924-", "biographical_information": ["Physikometallurge"]} 1 +2024-09-11 09:02:42.264902 2024-09-11 09:02:42.264907 78c702ed-328b-4cc1-81a6-fde167b15b37 {"md5": "d2fb07f3503309d431a88d729b6d3ed5", "pid": "17248491X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/17248491X", "source": "GND"}], "variant_name": ["Galan, L. de", "De Galan, Leo"], "date_of_birth": "1937", "preferred_name": "Galan, Leo de", "country_associated": "ne", "variant_access_point": ["Galan, L. de, 1937-", "De Galan, Leo, 1937-"], "authorized_access_point": "Galan, Leo de, 1937-"} 1 +2024-09-11 09:02:42.322015 2024-09-11 09:02:42.322019 5cb4ba74-c11d-4d2e-8437-5b4ca5ef3137 {"md5": "66bea3418235cd1707002ac5aa8caf7d", "pid": "172560462", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172560462", "source": "GND"}], "variant_name": ["Hütter, Reinhard L."], "date_of_birth": "1958", "preferred_name": "Hütter, Reinhard", "country_associated": "xxu", "variant_access_point": ["Hütter, Reinhard L., 1958-"], "authorized_access_point": "Hütter, Reinhard, 1958-", "biographical_information": ["Ev. Theologe"]} 1 +2024-09-11 09:02:42.375142 2024-09-11 09:02:42.375146 bc2eb567-a771-49f7-aed2-2682e60852b9 {"md5": "c25a5d78452ac529d54137a752837b6b", "pid": "172650003", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172650003", "source": "GND"}], "variant_name": ["Richterich, Lukas E."], "date_of_birth": "1956", "preferred_name": "Richterich, Lukas", "country_associated": "sz", "variant_access_point": ["Richterich, Lukas E., 1956-"], "authorized_access_point": "Richterich, Lukas, 1956-"} 1 +2024-09-11 09:02:42.423291 2024-09-11 09:02:42.423295 f5ecaff1-3f5a-46c6-822f-b8e631f1949a {"md5": "27596fa82fd11a76f67ff00fd511d9b9", "pid": "172664128", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172664128", "source": "GND"}], "date_of_birth": "1961", "preferred_name": "Feldmann, Thomas", "authorized_access_point": "Feldmann, Thomas, 1961-"} 1 +2024-09-11 09:02:42.471726 2024-09-11 09:02:42.471731 c70743ae-adeb-4d5b-9f95-8ddee672e7c3 {"md5": "cf580658d0455852f69e15e16be38a72", "pid": "172677335", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172677335", "source": "GND"}], "variant_name": ["Felten, Ellen S.-", "Schmitz, Ellen"], "date_of_birth": "1960", "preferred_name": "Schmitz-Felten, Ellen", "variant_access_point": ["Felten, Ellen S.-, 1960-", "Schmitz, Ellen, 1960-"], "authorized_access_point": "Schmitz-Felten, Ellen, 1960-"} 1 +2024-09-11 09:02:42.52089 2024-09-11 09:02:42.520893 010c3d88-de84-46da-b69c-04296119134e {"md5": "ec230ec74a49dae461434cd8cbb19a28", "pid": "172710073", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172710073", "source": "GND"}], "variant_name": ["Ackermann, Iris M.", "Ackermann, Iris Maria"], "date_of_birth": "1967", "preferred_name": "Ackermann, Iris", "variant_access_point": ["Ackermann, Iris M., 1967-", "Ackermann, Iris Maria, 1967-"], "authorized_access_point": "Ackermann, Iris, 1967-"} 1 +2024-09-11 09:02:42.567151 2024-09-11 09:02:42.567153 b8081f38-91e2-4ba0-a62f-da8d6a26ec40 {"md5": "2cc634c08f3db276b3a538514847ef1f", "pid": "172712866", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172712866", "source": "GND"}], "date_of_birth": "1965", "preferred_name": "Klupsch, Martin", "authorized_access_point": "Klupsch, Martin, 1965-"} 1 +2024-09-11 09:02:42.614886 2024-09-11 09:02:42.61489 cce645ad-cd13-4cdb-999b-763670095e82 {"md5": "043fc3955c5d1d74980f7ee0c118dac6", "pid": "17273889X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/17273889X", "source": "GND"}], "variant_name": ["Mehl, Klaus W."], "date_of_birth": "1956", "preferred_name": "Mehl, Klaus Wilhelm", "variant_access_point": ["Mehl, Klaus W., 1956-"], "authorized_access_point": "Mehl, Klaus Wilhelm, 1956-"} 1 +2024-09-11 09:02:42.671478 2024-09-11 09:02:42.671483 9172701e-b2cf-407b-9368-8faffb9cd6b5 {"md5": "dd46b7d34251f279d9c6f098b53bda2f", "pid": "172741912", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172741912", "source": "GND"}], "preferred_name": "Isenbart, Wilhelm", "authorized_access_point": "Isenbart, Wilhelm", "biographical_information": ["Kaiserl. Geh. Regierungsrat"]} 1 +2024-09-11 09:02:42.72471 2024-09-11 09:02:42.724715 189554bf-2f24-4cd3-b284-c08c1454f356 {"md5": "1329297482ab10cb4c648230e638bb6b", "pid": "172821657", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172821657", "source": "GND"}], "date_of_birth": "1889", "preferred_name": "Blatz, Heinrich", "authorized_access_point": "Blatz, Heinrich, 1889-"} 1 +2024-09-11 09:02:42.791674 2024-09-11 09:02:42.791679 71c85ba4-58ed-4bc7-8568-01cdadd754c2 {"md5": "f5c798b1d978737bc28822e13a3b0349", "pid": "172937051", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172937051", "source": "GND"}], "date_of_birth": "1946", "preferred_name": "Hezbri, Najia", "authorized_access_point": "Hezbri, Najia, 1946-"} 1 +2024-09-11 09:02:42.858152 2024-09-11 09:02:42.858155 d026ccd0-8be7-4675-ae32-a2753736d8e4 {"md5": "3679c688b47595f15be5f981d372071d", "pid": "172939755", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172939755", "source": "GND"}], "date_of_birth": "1884", "preferred_name": "Schiebel, Karl", "authorized_access_point": "Schiebel, Karl, 1884-"} 1 +2024-09-11 09:02:42.91356 2024-09-11 09:02:42.913565 9fe8d7bd-4a0f-42fb-a5ee-033079ce2b80 {"md5": "bfb36352bc50b7d73fbc1135223a9f53", "pid": "172953804", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/172953804", "source": "GND"}], "variant_name": ["Gómez-Retamal, Eugenio", "Retamal, Eugenio Gómez", "Gómez, Eugenio"], "date_of_birth": "1961", "preferred_name": "Gómez Retamal, Eugenio", "variant_access_point": ["Gómez-Retamal, Eugenio, 1961-", "Retamal, Eugenio Gómez, 1961-", "Gómez, Eugenio, 1961-"], "authorized_access_point": "Gómez Retamal, Eugenio, 1961-"} 1 +2024-09-11 09:02:42.96866 2024-09-11 09:02:42.968665 37c01253-605b-4c1a-84fa-30f45db2e2ef {"md5": "b6ac3741e421a3510874b370210536e5", "pid": "173016383", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173016383", "source": "GND"}], "variant_name": ["Knocha, Simone"], "preferred_name": "Williams, Simone", "variant_access_point": ["Knocha, Simone"], "authorized_access_point": "Williams, Simone"} 1 +2024-09-11 09:02:43.023042 2024-09-11 09:02:43.023046 57977f08-f66f-4c99-8035-34268076c468 {"md5": "9fc12411cc8b682326e9a8fd64cf9d34", "pid": "173047165", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173047165", "source": "GND"}], "preferred_name": "Tennant, Margaret E.", "authorized_access_point": "Tennant, Margaret E.", "biographical_information": ["kanad. Schriftstellerin"]} 1 +2024-09-11 09:02:43.081331 2024-09-11 09:02:43.081336 cc99b888-0d9c-49c5-ba35-de57ee2ac843 {"md5": "d236fa346eaf8c52419a1989dc7bdd40", "pid": "173079466", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173079466", "source": "GND"}], "date_of_birth": "1920", "preferred_name": "Blackadar, Alfred K.", "authorized_access_point": "Blackadar, Alfred K., 1920-"} 1 +2024-09-11 09:02:43.131706 2024-09-11 09:02:43.13171 6728fca3-b8ac-4813-a349-9d06d5e7bcb8 {"md5": "a9272c36ea3edde6703d8cd91aa33f2e", "pid": "173093086", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173093086", "source": "GND"}], "preferred_name": "Neugebauer, Bernhard", "authorized_access_point": "Neugebauer, Bernhard", "biographical_information": ["dt. Dipl.-Ing. (elektr. Energietechnik)"]} 1 +2024-09-11 09:02:43.183156 2024-09-11 09:02:43.18316 93f03bad-d224-4eea-9623-518f06230326 {"md5": "0c4f95220f79a3e77006f550e6271158", "pid": "173112110", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173112110", "source": "GND"}], "variant_name": ["Arends, Gerrit Jan", "Arends, G. J."], "date_of_birth": "1953", "preferred_name": "Arends, Gerrit J.", "variant_access_point": ["Arends, Gerrit Jan, 1953-", "Arends, G. J., 1953-"], "authorized_access_point": "Arends, Gerrit J., 1953-", "biographical_information": ["niederländ. Ingenieur"]} 1 +2024-09-11 09:02:43.230531 2024-09-11 09:02:43.230534 cb389e79-339f-4b5b-97a6-abbc33e886b9 {"md5": "1019c5d6d66c86c10c054c179b37d46d", "pid": "173120016", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173120016", "source": "GND"}], "date_of_birth": "1924", "date_of_death": "2015", "preferred_name": "Hashimoto, Yoshihiko", "country_associated": "ja", "parallel_access_point": ["橋本, 義彦, 1924-2015"], "authorized_access_point": "Hashimoto, Yoshihiko, 1924-2015"} 1 +2024-09-11 09:02:43.282229 2024-09-11 09:02:43.282234 4bef0f68-754b-44e6-aaa7-43c5dc5f4ae3 {"md5": "cf075ecffad8370122aac3defafbaad9", "pid": "173162061", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173162061", "source": "GND"}], "preferred_name": "Kaschell, Petra", "authorized_access_point": "Kaschell, Petra", "biographical_information": ["Dipl.-Ing. (Kartographie)"]} 1 +2024-09-11 09:02:43.330074 2024-09-11 09:02:43.330077 325bb7b4-09d1-4b80-8691-5a03b0560b16 {"md5": "5c8b6e17b1d4b17a95e53b79e44be901", "pid": "17326851X", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/17326851X", "source": "GND"}], "variant_name": ["清水昭俊"], "date_of_birth": "1942", "preferred_name": "Shimizu, Akitoshi", "country_associated": "ja", "variant_access_point": ["清水昭俊, 1942-"], "parallel_access_point": ["清水, 昭俊, 1942-"], "authorized_access_point": "Shimizu, Akitoshi, 1942-", "biographical_information": ["Japan. Anthropologe"]} 1 +2024-09-11 09:02:43.383336 2024-09-11 09:02:43.383339 1394a5f3-f6c8-4944-8122-42b8eefec5e5 {"md5": "fc2c7fdcd12b36b1c33f59a14d4b4a50", "pid": "173287387", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173287387", "source": "GND"}], "variant_name": ["Lukasse, L. J. S."], "date_of_birth": "1971", "preferred_name": "Lukasse, Leo", "variant_access_point": ["Lukasse, L. J. S., 1971-"], "authorized_access_point": "Lukasse, Leo, 1971-"} 1 +2024-09-11 09:02:43.441767 2024-09-11 09:02:43.441771 b526c369-f52c-41fd-ac06-b7613b31a679 {"md5": "ab4fcbe4f37686a288123af511eaa11f", "pid": "173311660", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173311660", "source": "GND"}], "variant_name": ["Robinson, J. Michael"], "date_of_birth": "1940", "preferred_name": "Robinson, John Michael", "variant_access_point": ["Robinson, J. Michael, 1940-"], "authorized_access_point": "Robinson, John Michael, 1940-"} 1 +2024-09-11 09:02:43.495591 2024-09-11 09:02:43.495595 f17b0d97-3014-4448-99aa-7d79e91ca00d {"md5": "6b2a9ec8c117917d29770fa7ea2a7447", "pid": "173395627", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173395627", "source": "GND"}], "variant_name": ["Zeller, Thomas Louis", "Zeller, Thomas L."], "date_of_birth": "1955", "preferred_name": "Zeller, Thomas", "country_associated": "xxu", "variant_access_point": ["Zeller, Thomas Louis, 1955-", "Zeller, Thomas L., 1955-"], "authorized_access_point": "Zeller, Thomas, 1955-"} 1 +2024-09-11 09:02:43.549141 2024-09-11 09:02:43.549146 7e3f64b5-8052-4534-a58e-c602a9fc4131 {"md5": "7688f56212352bc4e990e7a1d4a4907e", "pid": "17344511X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/17344511X", "source": "GND"}], "preferred_name": "Bauer-Behrschmidt, Gabriela", "authorized_access_point": "Bauer-Behrschmidt, Gabriela"} 1 +2024-09-11 09:02:43.595562 2024-09-11 09:02:43.595565 0bf7e47a-4a9c-498d-85df-a76adb688dde {"md5": "25998876d13aadaccbda88e798b5d85f", "pid": "173457258", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173457258", "source": "GND"}], "variant_name": ["McClaskey, Marilyn H.", "MacClaskey, Marilyn Jones", "Jones, Marilyn H.", "Jones MacClaskey, Marilyn"], "date_of_birth": "1947", "preferred_name": "MacClaskey, Marilyn H.", "variant_access_point": ["McClaskey, Marilyn H., 1947-", "MacClaskey, Marilyn Jones, 1947-", "Jones, Marilyn H., 1947-", "Jones MacClaskey, Marilyn, 1947-"], "authorized_access_point": "MacClaskey, Marilyn H., 1947-"} 1 +2024-09-11 09:02:43.650378 2024-09-11 09:02:43.650383 d8868e0f-2c82-4ae4-acd8-0f4abc129fc9 {"md5": "952e0bd4d0cce2d0ff56c16305f8ba5c", "pid": "173606091", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173606091", "source": "GND"}], "date_of_birth": "1972", "preferred_name": "Camurati, Maurizio", "authorized_access_point": "Camurati, Maurizio, 1972-"} 1 +2024-09-11 09:02:43.705418 2024-09-11 09:02:43.70542 3d41e067-dd18-4a5e-8f88-a423ae81da8a {"md5": "ef520ad9ee54c73c9565a5a907cf447c", "pid": "17361860X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/17361860X", "source": "GND"}], "variant_name": ["Van den Bossche, Bart", "Den Bossche, Bart van [Wirkl. Name]", "Bossche, Bart van den [Wirkl. Name]", "VanDenBossche, Bart", "Bossche, Bart van den"], "date_of_birth": "1968", "preferred_name": "Koubaa, Bart", "variant_access_point": ["Van den Bossche, Bart, 1968-", "Den Bossche, Bart van [Wirkl. Name], 1968-", "Bossche, Bart van den [Wirkl. Name], 1968-", "VanDenBossche, Bart, 1968-", "Bossche, Bart van den, 1968-"], "authorized_access_point": "Koubaa, Bart, 1968-", "biographical_information": ["belg. Schriftsteller, Arabist, Musiker", "Fotograf, Schriftsteller"]} 1 +2024-09-11 09:02:43.798053 2024-09-11 09:02:43.798056 8428773a-35b5-4df6-a191-3239ee9646a1 {"md5": "587b6fb17eebd3b703010d41606778ec", "pid": "173628257", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173628257", "source": "GND"}], "date_of_birth": "1955", "preferred_name": "Vadi, Maaja", "country_associated": "er", "authorized_access_point": "Vadi, Maaja, 1955-"} 1 +2024-09-11 09:02:43.858057 2024-09-11 09:02:43.85806 8bbbd898-a523-4d85-b9e3-b7043277a6a9 {"md5": "91571635fcd0a2818c6246850521c65a", "pid": "173635385", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173635385", "source": "GND"}], "preferred_name": "Walters, James B.", "authorized_access_point": "Walters, James B.", "biographical_information": ["Degree in Public Health Administration"]} 1 +2024-09-11 09:02:43.92047 2024-09-11 09:02:43.920475 d3b26889-0814-460f-ba3b-69948d25f7be {"md5": "f33e3b3c5770c7e17018bfe9c319d533", "pid": "173674534", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173674534", "source": "GND"}], "preferred_name": "Katz, Howard", "authorized_access_point": "Katz, Howard", "biographical_information": ["amerik. Computerspezialist"]} 1 +2024-09-11 09:02:43.989129 2024-09-11 09:02:43.989134 96e618c0-722c-4a7a-89d7-5a02b3082353 {"md5": "f161f83a9fe5d6b4e15f4675a5018e45", "pid": "173748856", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173748856", "source": "GND"}], "date_of_birth": "1973", "preferred_name": "Işık, Toprak", "authorized_access_point": "Işık, Toprak, 1973-"} 1 +2024-09-11 09:02:44.069375 2024-09-11 09:02:44.06938 3f7cc8af-4c5c-4053-979f-9b55e66b783c {"md5": "c605c21434634200aae56b05bb8f7017", "pid": "173756638", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173756638", "source": "GND"}], "preferred_name": "Burrowes, Brian", "authorized_access_point": "Burrowes, Brian"} 1 +2024-09-11 09:02:44.139192 2024-09-11 09:02:44.139196 fe26f9b9-029e-443d-bc8f-7d7a9ccde48f {"md5": "85385b0c369067cfae414d361c1b445b", "pid": "173770401", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173770401", "source": "GND"}], "date_of_birth": "1967", "preferred_name": "Elourfi, Abdelkrim Mohammed Amer", "authorized_access_point": "Elourfi, Abdelkrim Mohammed Amer, 1967-", "biographical_information": ["Studium der Biologie"]} 1 +2024-09-11 09:02:44.205288 2024-09-11 09:02:44.205292 0beb0627-5e4e-4af9-891c-d6af5611d4ff {"md5": "7b5609fcb6609743d678551124078681", "pid": "173774148", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173774148", "source": "GND"}], "variant_name": ["Giphart, Karin Ellen"], "date_of_birth": "1968", "preferred_name": "Giphart, Karin", "country_associated": "ne", "variant_access_point": ["Giphart, Karin Ellen, 1968-"], "authorized_access_point": "Giphart, Karin, 1968-"} 1 +2024-09-11 09:02:44.263529 2024-09-11 09:02:44.263533 48e23109-aff7-455e-a4d9-d370a15dcee3 {"md5": "7a344d9caf3a9ac0e537314b073e13c2", "pid": "173774776", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173774776", "source": "GND"}], "variant_name": ["Chen-Lin, Xiaoqing Diana", "Chen, Diana Xiao Qing", "Chen, Xiaoqing Diana", "Ch'en, Hsiao-ch'ing Diana"], "date_of_birth": "1963", "preferred_name": "Lin, Xiaoqing Diana", "country_associated": "cc", "variant_access_point": ["Chen-Lin, Xiaoqing Diana, 1963-", "Chen, Diana Xiao Qing, 1963-", "Chen, Xiaoqing Diana, 1963-", "Ch'en, Hsiao-ch'ing Diana, 1963-"], "authorized_access_point": "Lin, Xiaoqing Diana, 1963-", "biographical_information": ["Associate Professor of History, Indiana University Northwest. At IU Northwest since 1994. Education: Ph.D. in History, University of Chicago; M.A. in History, University of Chicago; B.A. in English, Beijing Foreign Studies University"]} 1 +2024-09-11 09:02:44.319146 2024-09-11 09:02:44.319158 290eae45-84a2-40b7-bd09-a4ed21ffefcf {"md5": "3380284202663fc6daa13cc12dbb5658", "pid": "173808085", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173808085", "source": "GND"}], "date_of_birth": "1947", "preferred_name": "Silverman, Jay", "authorized_access_point": "Silverman, Jay, 1947-"} 1 +2024-09-11 09:02:44.386598 2024-09-11 09:02:44.386602 0c5832f1-bc2f-4e76-86de-6ff03c4a53b6 {"md5": "9fa620fc154d74e33b3039235ea874e5", "pid": "173843034", "type": "bf:Person", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173843034", "source": "GND"}], "variant_name": ["Morrison, Margaret Catherine", "Morrison, Margaret C."], "date_of_birth": "1954", "date_of_death": "2021", "preferred_name": "Morrison, Margaret", "country_associated": "xxc", "variant_access_point": ["Morrison, Margaret Catherine, 1954-2021", "Morrison, Margaret C., 1954-2021"], "authorized_access_point": "Morrison, Margaret, 1954-2021"} 1 +2024-09-11 09:02:44.443936 2024-09-11 09:02:44.443939 fd53c360-3f7c-4e1f-9cb2-74ade4a990b2 {"md5": "3042f9324250082f61f340531da53a86", "pid": "173888135", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173888135", "source": "GND"}], "date_of_birth": "1960", "preferred_name": "Wessem, Jurriaan van", "authorized_access_point": "Wessem, Jurriaan van, 1960-"} 1 +2024-09-11 09:02:44.497373 2024-09-11 09:02:44.497377 2bafa6aa-3930-41e7-839f-3a719eafc864 {"md5": "2de344ca0e03516d768569e9844bc1ba", "pid": "173977669", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/173977669", "source": "GND"}], "date_of_birth": "1965", "preferred_name": "Tasa, Gunnar", "authorized_access_point": "Tasa, Gunnar, 1965-"} 1 +2024-09-11 09:02:44.550892 2024-09-11 09:02:44.550896 0cf029ff-3ded-4c99-9d14-d41d146fd0bc {"md5": "b6c9ac7fb5069dc234e6047a41a5dcdc", "pid": "174095139", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/174095139", "source": "GND"}], "date_of_birth": "1910", "preferred_name": "Meyer, Johannes", "authorized_access_point": "Meyer, Johannes, 1910-"} 1 +2024-09-11 09:02:44.602581 2024-09-11 09:02:44.602584 492fff3a-f526-4e65-a9f3-24e5b4a146f9 {"md5": "6400b89aee6bbb1b4d149ab25ce434dc", "pid": "174168616", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/174168616", "source": "GND"}], "preferred_name": "Knoll, Michael", "authorized_access_point": "Knoll, Michael", "biographical_information": ["PND-Online 00. 21.1.1994"]} 1 +2024-09-11 09:02:44.653317 2024-09-11 09:02:44.65332 34f9aea1-dfb4-4091-8796-90dfb044a5d9 {"md5": "5edaf3135f6debad7ca639f911c8b851", "pid": "17420275X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/17420275X", "source": "GND"}], "date_of_birth": "1906", "preferred_name": "Dye, Charlie", "authorized_access_point": "Dye, Charlie, 1906-"} 1 +2024-09-11 09:02:44.708815 2024-09-11 09:02:44.708818 6a58a1ca-e099-4229-86d4-dce7237df451 {"md5": "66c146c3a35ff095b957b9f230ab9f52", "pid": "17422138X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/17422138X", "source": "GND"}], "preferred_name": "Hirmer, Irmgard", "authorized_access_point": "Hirmer, Irmgard"} 1 +2024-09-11 09:02:44.75995 2024-09-11 09:02:44.759954 aa66cbe8-46f3-49e3-9c42-458487a32d56 {"md5": "4506a15f69b994162281d02176c9da68", "pid": "174376391", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/174376391", "source": "GND"}], "preferred_name": "Sobek", "authorized_access_point": "Sobek"} 1 +2024-09-11 09:02:44.812154 2024-09-11 09:02:44.812158 f0891bd0-7a7e-4d2c-a0a6-ee1608095571 {"md5": "600ba47988ac1320350450cd2a2e0bd5", "pid": "178767875", "type": "bf:Person", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/178767875", "source": "GND"}], "variant_name": ["Luchuanfanglang", "Luchuan, Fanglang"], "date_of_birth": "27.08.1931", "preferred_name": "Togawa, Yoshio", "country_associated": "ja", "variant_access_point": ["Luchuanfanglang, 1931-", "Luchuan, Fanglang, 1931-"], "parallel_access_point": ["戸川, 芳郎, 1931-"], "authorized_access_point": "Togawa, Yoshio, 1931-"} 1 +2024-09-11 09:02:44.871457 2024-09-11 09:02:44.871461 b33b5566-66f3-4e26-8dad-2f8dbd581b47 {"md5": "b4eaf8b510e1e0fa10eb761033c3788b", "pid": "189437065", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/189437065", "source": "GND"}], "variant_name": ["Wameling, Iris Busch-"], "preferred_name": "Busch-Wameling, Iris", "variant_access_point": ["Wameling, Iris Busch-"], "authorized_access_point": "Busch-Wameling, Iris", "biographical_information": ["keine Angaben zur Person bei der maschinellen Übernahme vorhanden"]} 1 +2024-09-11 09:02:44.929332 2024-09-11 09:02:44.929336 f51aa275-df37-4725-b66a-4b5ac648c200 {"md5": "b05dec7bbbee26378ceba433409a2ae9", "pid": "199160554", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7779640-8", "source": "GND"}], "variant_name": ["Lutherische Gemeinde"], "preferred_name": "Evangelisch-Lutherische Gemeinde", "country_associated": "gw", "variant_access_point": ["Lutherische Gemeinde"], "authorized_access_point": "Evangelisch-Lutherische Gemeinde"} 1 +2024-09-11 09:02:44.987395 2024-09-11 09:02:44.9874 af0b8d12-34fa-4d6d-8042-bb3692c6b8cf {"md5": "c896c44d1b620265b73f4a1eeb83fb86", "pid": "320025594", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10277515-1", "source": "GND"}], "variant_name": ["Keane and John Faulkner", "Faulkner, Dolores Keane and John"], "preferred_name": "Dolores Keane and John Faulkner", "variant_access_point": ["Keane and John Faulkner", "Faulkner, Dolores Keane and John"], "authorized_access_point": "Dolores Keane and John Faulkner"} 1 +2024-09-11 09:02:45.044088 2024-09-11 09:02:45.044092 a1351406-bd49-425c-9eba-11803c9d00e8 {"md5": "2512bfa5756466435053b8d946bbfd72", "pid": "320038580", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10278785-2", "source": "GND"}], "preferred_name": "Edelzwicker", "authorized_access_point": "Edelzwicker"} 1 +2024-09-11 09:02:46.068838 2024-09-11 09:02:46.068844 cc3be30f-05a6-4bbc-85e1-15dd133c99a8 {"md5": "cca08dd2b041cd06792dbf5f90a47298", "pid": "320234975", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10297918-2", "source": "GND"}], "preferred_name": "Orion", "authorized_access_point": "Orion"} 1 +2024-09-11 09:02:45.093711 2024-09-11 09:02:45.093714 2a0a2083-55c1-4bbb-8dc7-b46300664f1a {"md5": "7a548213f20975a9a26ddf75b7479fb1", "pid": "320040992", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10279023-1", "source": "GND"}], "variant_name": ["Morty and the Racing Cars", "Morty & the Racing Cars"], "preferred_name": "Racing Cars", "country_associated": "xxk", "date_of_termination": "2010", "variant_access_point": ["Morty and the Racing Cars. Musikgruppe", "Morty & the Racing Cars. Musikgruppe"], "date_of_establishment": "1973", "authorized_access_point": "Racing Cars. Musikgruppe", "biographical_information": ["Popband"]} 1 +2024-09-11 09:02:45.142414 2024-09-11 09:02:45.142418 e49c1a13-62a8-46e5-86ab-3175c5175419 {"md5": "fedb454414755a2a5a45087ce4f8f1eb", "pid": "320067661", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10281592-6", "source": "GND"}], "variant_name": ["Rice Unit"], "preferred_name": "Tony Rice Unit", "variant_access_point": ["Rice Unit"], "authorized_access_point": "Tony Rice Unit"} 1 +2024-09-11 09:02:45.191803 2024-09-11 09:02:45.191807 cd8c2b29-4dd3-44ad-b900-9b7bfa65daab {"md5": "ef540193862ec41f67a7e80ae480a36f", "pid": "320070522", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10281873-3", "source": "GND"}], "variant_name": ["Molton and the Truth Band"], "preferred_name": "Flora Molton and the Truth Band", "variant_access_point": ["Molton and the Truth Band"], "authorized_access_point": "Flora Molton and the Truth Band"} 1 +2024-09-11 09:02:45.242421 2024-09-11 09:02:45.242425 6937e288-a11e-450f-80e2-12b733c4264b {"md5": "9f6fb07c056b910033b793c7e8e529fe", "pid": "320074129", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10282229-3", "source": "GND"}], "preferred_name": "Ted und Jo", "authorized_access_point": "Ted und Jo"} 1 +2024-09-11 09:02:45.301155 2024-09-11 09:02:45.301159 4cbe9a59-af98-46f9-8eff-7931c5a83cfc {"md5": "d4ee09b4d922b5b7fc352e90ccb495af", "pid": "320080242", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10282823-4", "source": "GND"}], "preferred_name": "Greisinger Sänger", "authorized_access_point": "Greisinger Sänger"} 1 +2024-09-11 09:02:45.387351 2024-09-11 09:02:45.387356 3b642fe2-190b-4cfa-9cb6-4209ba5d767d {"md5": "cd19e6a078bc6821b778c3f72ec608d9", "pid": "320080366", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10282835-0", "source": "GND"}], "preferred_name": "Jens-Dieter un Sien Skipper", "authorized_access_point": "Jens-Dieter un Sien Skipper"} 1 +2024-09-11 09:02:45.465061 2024-09-11 09:02:45.465066 db409d32-26b5-4158-a8ff-8290bf27045d {"md5": "8614c09ea7c0045b1b9bc5e5d36f4c19", "pid": "320093549", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10284119-6", "source": "GND"}], "variant_name": ["Tilbrook, Difford and"], "preferred_name": "Difford and Tilbrook", "variant_access_point": ["Tilbrook, Difford and"], "authorized_access_point": "Difford and Tilbrook"} 1 +2024-09-11 09:02:45.543814 2024-09-11 09:02:45.54382 300f23c5-6898-47cc-892f-f066632956df {"md5": "574c391af8da9680bf38fd3677cd6a07", "pid": "320111881", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10285909-7", "source": "GND"}], "variant_name": ["Die Brückenbauer"], "preferred_name": "Brückenbauer", "country_associated": "gw", "variant_access_point": ["Die Brückenbauer. Unveraenderte Form"], "authorized_access_point": "Brückenbauer"} 1 +2024-09-11 09:02:45.669219 2024-09-11 09:02:45.669223 3715fc27-88e3-455f-8df8-d9d282ada603 {"md5": "e65f3a777c1d04a297676706e40d6cc8", "pid": "320153746", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10290003-6", "source": "GND"}], "variant_name": ["Reger-Duo"], "preferred_name": "Max-Reger-Duo", "country_associated": "gw", "variant_access_point": ["Reger-Duo. Leipzig"], "authorized_access_point": "Max-Reger-Duo. Leipzig", "biographical_information": ["Kammermusikalisches Duo (Ulrich Urban und Hans-Georg Jaroslawski)"]} 1 +2024-09-11 09:02:45.72872 2024-09-11 09:02:45.728725 9e5e9f82-2461-46b3-a091-671b97642fac {"md5": "f527af485350296e579776af9b81d0e4", "pid": "320168328", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10291427-8", "source": "GND"}], "variant_name": ["Biedermeier Ensemble Wien"], "preferred_name": "Biedermeier-Ensemble", "country_associated": "au", "variant_access_point": ["Biedermeier Ensemble Wien"], "authorized_access_point": "Biedermeier-Ensemble"} 1 +2024-09-11 09:02:45.790563 2024-09-11 09:02:45.790567 5f5ffe0c-c8f9-4fb2-b181-2ac3603d7348 {"md5": "0b65e2c6cf66d80adfdf2d821b3041c1", "pid": "320188760", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10293430-7", "source": "GND"}], "preferred_name": "Invisible Army", "authorized_access_point": "Invisible Army"} 1 +2024-09-11 09:02:45.854937 2024-09-11 09:02:45.854941 dabaf1b5-b5c6-44be-92e3-357bd2167665 {"md5": "64fb9a495690708e7ec52ad2b41e7aa1", "pid": "320196321", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10294168-3", "source": "GND"}], "preferred_name": "Jubilate-Chor", "country_associated": "gw", "authorized_access_point": "Jubilate-Chor. Wetzlar"} 1 +2024-09-11 09:02:45.930406 2024-09-11 09:02:45.930408 066afa9c-91b4-4859-95e9-5469dcf330de {"md5": "1f4aaa5bf534e995d7dd673ef7083dd5", "pid": "320202593", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10294771-5", "source": "GND"}], "variant_name": ["Koppelberg's Wolffen"], "preferred_name": "Wolffen", "variant_access_point": ["Koppelberg's Wolffen"], "authorized_access_point": "Wolffen"} 1 +2024-09-11 09:02:45.996558 2024-09-11 09:02:45.996563 30d4dc63-8dbb-4b8b-b3cd-87b4627a40ad {"md5": "460f5561356dc044f2c4112b631ba5b7", "pid": "320218694", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10296322-8", "source": "GND"}], "variant_name": ["Baker and Band", "Ginger Baker Band", "Baker Band"], "preferred_name": "Ginger Baker and Band", "variant_access_point": ["Baker and Band", "Ginger Baker Band", "Baker Band"], "authorized_access_point": "Ginger Baker and Band"} 1 +2024-09-11 09:02:46.151765 2024-09-11 09:02:46.151772 13bbe73c-b24c-46a8-88e9-d8cd1f44c2cd {"md5": "d47a4c244645da50422106f745c7598a", "pid": "320236706", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10298082-2", "source": "GND"}], "variant_name": ["Cuba Sextet"], "preferred_name": "Joe Cuba Sextet", "variant_access_point": ["Cuba Sextet"], "authorized_access_point": "Joe Cuba Sextet"} 1 +2024-09-11 09:02:46.25227 2024-09-11 09:02:46.252272 b12febb2-f61d-4365-b3ee-492f8cabb47b {"md5": "6a4d01e5932e6531c2ab31a6c3538d98", "pid": "320290239", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10303308-7", "source": "GND"}], "preferred_name": "Kammerchor Carl von Ossietzky", "authorized_access_point": "Kammerchor Carl von Ossietzky. Berlin"} 1 +2024-09-11 09:02:46.313128 2024-09-11 09:02:46.313132 aba915bc-cc13-4542-9c5e-9bdffb06fee7 {"md5": "8563e1d6d08e1cca4ae32f0891764f5a", "pid": "320292746", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10303551-5", "source": "GND"}], "preferred_name": "Tangerine Roof", "authorized_access_point": "Tangerine Roof"} 1 +2024-09-11 09:02:46.373286 2024-09-11 09:02:46.373289 b59373e4-1017-49b5-a98b-c4c51fbcb3a6 {"md5": "99adfb2201454202e46c019a3f3dea58", "pid": "320319008", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10306118-6", "source": "GND"}], "preferred_name": "Blue Up", "authorized_access_point": "Blue Up"} 1 +2024-09-11 09:02:46.441529 2024-09-11 09:02:46.441533 fe4c7d7c-00c9-42b0-902a-d5c386595385 {"md5": "b234d4abb7dc4d19aaf3122e2b7a3ca5", "pid": "320328074", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10306996-3", "source": "GND"}], "preferred_name": "Never Left", "authorized_access_point": "Never Left"} 1 +2024-09-11 09:02:46.51181 2024-09-11 09:02:46.511814 fe2dcb92-db5b-44a2-86ab-1d902d3852b7 {"md5": "1a79962f5c2d59f51e196f864e6849ce", "pid": "32032964X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10307151-9", "source": "GND"}], "variant_name": ["MGV"], "preferred_name": "Männergesangverein", "country_associated": "au", "variant_access_point": ["MGV. Oberperfuss"], "authorized_access_point": "Männergesangverein. Oberperfuss"} 1 +2024-09-11 09:02:46.585899 2024-09-11 09:02:46.585902 58a115c5-928e-4fa2-8325-ebc3322ac44a {"md5": "026968a50eccb0606cceee9f72145841", "pid": "320334988", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10307673-6", "source": "GND"}], "variant_name": ["The Frozen Autumn"], "preferred_name": "The Frozen Autumn", "country_associated": "it", "variant_access_point": ["The Frozen Autumn. Unveraenderte Form"], "date_of_establishment": "1993", "authorized_access_point": "The Frozen Autumn. Musikgruppe", "biographical_information": ["Dark-Wave-Band, gegründet von Diego Merletto"]} 1 +2024-09-11 09:02:46.6399 2024-09-11 09:02:46.639903 458ce8be-692b-40ca-a1cc-979687d034f5 {"md5": "139f8a0cbd259d69fd63ae80f9a3a426", "pid": "320354202", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10309560-3", "source": "GND"}], "preferred_name": "Subsurfing", "authorized_access_point": "Subsurfing"} 1 +2024-09-11 09:02:46.696477 2024-09-11 09:02:46.69648 56050853-8345-498c-8cb2-176f1db01e11 {"md5": "c58e073bf4a68e334477d2d7e2991867", "pid": "320364879", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10310600-5", "source": "GND"}], "preferred_name": "Latex", "authorized_access_point": "Latex"} 1 +2024-09-11 09:02:46.751328 2024-09-11 09:02:46.751331 792568c2-7f45-4d73-a36a-be4a27702068 {"md5": "f9b0a9988807c858d83dc27a3ea97cd5", "pid": "320366510", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10310762-9", "source": "GND"}], "preferred_name": "Captain Concho", "authorized_access_point": "Captain Concho"} 1 +2024-09-11 09:02:46.805865 2024-09-11 09:02:46.805868 52c37948-6c0b-47ec-96b1-19c131fad684 {"md5": "635fa4f3e4b185efb9a0bc4d312b86b2", "pid": "320368173", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10310927-4", "source": "GND"}], "variant_name": ["Meurkens Sambajazz Quartet", "Hendrik Meurkens Quartet", "Meurkens Quartet"], "preferred_name": "Hendrik Meurkens Sambajazz Quartet", "variant_access_point": ["Meurkens Sambajazz Quartet", "Hendrik Meurkens Quartet", "Meurkens Quartet"], "authorized_access_point": "Hendrik Meurkens Sambajazz Quartet"} 1 +2024-09-11 09:02:46.858938 2024-09-11 09:02:46.858943 b06a3395-e7a9-4fa0-8f06-a0f1595a152f {"md5": "dbb1b3286f88fbe35f9aaa5496cffea3", "pid": "320388387", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10312911-X", "source": "GND"}], "preferred_name": "Con Colour", "authorized_access_point": "Con Colour"} 1 +2024-09-11 09:02:46.913904 2024-09-11 09:02:46.913908 1653315c-44bf-4422-b264-2b50180b28ca {"md5": "0bcd646d6ece27db4081a0fed5df0fa4", "pid": "320390268", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10313099-8", "source": "GND"}], "preferred_name": "Detune", "authorized_access_point": "Detune"} 1 +2024-09-11 09:02:46.96773 2024-09-11 09:02:46.967734 fa576d4c-5390-488a-90d6-75c1bd033a55 {"md5": "6936ffcf455785b583126dffa5a4e978", "pid": "320393690", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10313439-6", "source": "GND"}], "preferred_name": "Rütmikud", "authorized_access_point": "Rütmikud"} 1 +2024-09-11 09:02:47.026025 2024-09-11 09:02:47.02603 8925b353-be62-4b58-a8e0-77b1c41f06b6 {"md5": "4b4c006953e16500e651ad63cd48c73e", "pid": "320406407", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10314681-7", "source": "GND"}], "preferred_name": "Sort Vokter", "authorized_access_point": "Sort Vokter"} 1 +2024-09-11 09:02:47.087179 2024-09-11 09:02:47.087183 2dc8038e-4c30-4f32-9588-3d2b5f808c1b {"md5": "a011372087149a9352473f5f66b36c45", "pid": "320412733", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10315305-6", "source": "GND"}], "variant_name": ["Schall, Collegium Musicum Joachim"], "preferred_name": "Collegium Musicum Joachim Schall", "variant_access_point": ["Schall, Collegium Musicum Joachim"], "authorized_access_point": "Collegium Musicum Joachim Schall"} 1 +2024-09-11 09:02:47.204992 2024-09-11 09:02:47.204995 67e8eb4a-44e1-4974-a87b-774fca16dc53 {"md5": "dfb67440f54f761309f672a5c5653982", "pid": "320422739", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10316289-6", "source": "GND"}], "variant_name": ["Divertimento Ensemble", "Divertimento Ensemble"], "preferred_name": "Divertimento Ensemble", "country_associated": "it", "variant_access_point": ["Divertimento Ensemble", "Divertimento Ensemble. Milano"], "authorized_access_point": "Divertimento Ensemble. Mailand"} 1 +2024-09-11 09:02:47.263055 2024-09-11 09:02:47.26306 a643656a-ba74-4525-9b5a-6f701d91b5f5 {"md5": "16ec620beffe9035d36be4edf2a11fc6", "pid": "32043706X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10317685-8", "source": "GND"}], "variant_name": ["Angelin Tytöt", "Mädchen aus Angeli", "Filles d'Angeli"], "preferred_name": "Girls of Angeli", "variant_access_point": ["Angelin Tytöt", "Mädchen aus Angeli", "Filles d'Angeli"], "authorized_access_point": "Girls of Angeli"} 1 +2024-09-11 09:02:47.322729 2024-09-11 09:02:47.322732 0687de2b-3c7b-4c56-a5f0-2edf0c45c8f7 {"md5": "9c9c3ee93acb096f0e362ab37a03a4aa", "pid": "320461394", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10320030-7", "source": "GND"}], "preferred_name": "Mindlab", "authorized_access_point": "Mindlab", "biographical_information": ["MM 98 +; LoC-NA oo"]} 1 +2024-09-11 09:02:47.380701 2024-09-11 09:02:47.380706 7847a4b4-7a0e-4c46-bef0-ff3895dc790b {"md5": "5d1b7222010db05f357e8ee711915723", "pid": "320475891", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10321430-6", "source": "GND"}], "variant_name": ["Gesangsformation Fermate"], "preferred_name": "Fermate", "country_associated": "gw", "variant_access_point": ["Gesangsformation Fermate"], "date_of_establishment": "1989", "authorized_access_point": "Fermate"} 1 +2024-09-11 09:02:47.444968 2024-09-11 09:02:47.444973 abe10d13-c826-4f7f-8449-36c6eb72fd58 {"md5": "358bcc87e2f61c7520e5888b757a9696", "pid": "320488063", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10322601-1", "source": "GND"}], "preferred_name": "Slick Sixty", "country_associated": "xxk", "authorized_access_point": "Slick Sixty", "biographical_information": ["jpc (Internet); MM 33/99 S.98 +. - Londoner Trio"]} 1 +2024-09-11 09:02:47.508597 2024-09-11 09:02:47.508601 2b2da4a9-3a01-4827-8671-e05f3670ebd1 {"md5": "d34b9f77233b3e79522788b3bef3ecb5", "pid": "32048906X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10322698-9", "source": "GND"}], "preferred_name": "Celtic Cross", "authorized_access_point": "Celtic Cross", "biographical_information": ["jpc (Internet)+"]} 1 +2024-09-11 09:02:47.570361 2024-09-11 09:02:47.570363 47b17c40-92ff-49f0-9b7f-ba4c4e95c3cd {"md5": "ba055d6ad17cc4e38a1b1ea750b776b7", "pid": "320497070", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10323470-6", "source": "GND"}], "preferred_name": "Rosi und die Knallerbsen", "country_associated": "gw", "authorized_access_point": "Rosi und die Knallerbsen", "biographical_information": ["GKE 2/2000; MM 99; jpc 2000: oo"]} 1 +2024-09-11 09:02:47.626502 2024-09-11 09:02:47.626506 7e8554fe-143b-4db8-930f-5b1e783a591f {"md5": "2013e3e254f9246621a3522ba2b7acd7", "pid": "320506037", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10324330-6", "source": "GND"}], "preferred_name": "Temple City High School", "country_associated": "xxu", "authorized_access_point": "Temple City High School"} 1 +2024-09-11 09:02:47.6941 2024-09-11 09:02:47.694105 0835e3fd-eb08-430b-91f6-7d59888a6ac6 {"md5": "5195a8f21bca92d486c163d1729151d9", "pid": "320515206", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10325213-7", "source": "GND"}], "preferred_name": "Groove-Polizei", "authorized_access_point": "Groove-Polizei", "biographical_information": ["GKE 7/2000+"]} 1 +2024-09-11 09:02:47.751839 2024-09-11 09:02:47.751843 08938711-cb16-4f8a-9dd1-953adbc94d8b {"md5": "a39602962c82213044fbe6c7b80a5cf7", "pid": "320532836", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10326914-9", "source": "GND"}], "variant_name": ["Schwarz, Orchestra Otto M."], "preferred_name": "Orchestra Otto M. Schwarz", "variant_access_point": ["Schwarz, Orchestra Otto M."], "authorized_access_point": "Orchestra Otto M. Schwarz"} 1 +2024-09-11 09:02:47.806756 2024-09-11 09:02:47.806759 5143cddf-2052-42de-b181-b4b09a94d4d8 {"md5": "893399268bf498090dd57e58ee894703", "pid": "320542173", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10327816-3", "source": "GND"}], "preferred_name": "Aunt Worm", "authorized_access_point": "Aunt Worm"} 1 +2024-09-11 09:02:47.864025 2024-09-11 09:02:47.864029 a9e1042b-8ade-415b-882c-502d855460a1 {"md5": "ab9fedbe461cae4ed009f40048f89b2a", "pid": "320562425", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10329774-1", "source": "GND"}], "variant_name": ["Seven for Four", "744"], "preferred_name": "7 for 4", "variant_access_point": ["Seven for Four", "744"], "authorized_access_point": "7 for 4"} 1 +2024-09-11 09:02:47.920667 2024-09-11 09:02:47.92067 37501f48-2390-4282-b36b-6fd134b85d85 {"md5": "16ab195ff196d73877a10e6ea732c1db", "pid": "320577880", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10331277-8", "source": "GND"}], "preferred_name": "Romantica", "authorized_access_point": "Romantica. Duo", "biographical_information": ["Mitglieder: ein Herr, eine Dame. - Ortssitz: Markt Rettenbach"]} 1 +2024-09-11 09:02:47.974606 2024-09-11 09:02:47.974611 e578c22b-0811-4298-88fe-6ba89e49a8bc {"md5": "c1ad3f1194acf6f72bd476f60253907c", "pid": "320577929", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10331281-X", "source": "GND"}], "preferred_name": "International Pony", "authorized_access_point": "International Pony"} 1 +2024-09-11 09:02:48.028933 2024-09-11 09:02:48.028937 346d13f3-1397-4b2b-8272-8a71be6a0207 {"md5": "539b3d445128b215f9624cedc665c08e", "pid": "320579751", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10331458-1", "source": "GND"}], "preferred_name": "Disco Jovial", "country_associated": "gw", "authorized_access_point": "Disco Jovial"} 1 +2024-09-11 09:02:48.162518 2024-09-11 09:02:48.162523 7de42918-4ef6-4962-95f5-403264aedf49 {"md5": "e61d1704f5aa9c0096e6307416401ca0", "pid": "320618439", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10335206-5", "source": "GND"}], "preferred_name": "Painted Air", "authorized_access_point": "Painted Air"} 1 +2024-09-11 09:02:48.224282 2024-09-11 09:02:48.224286 fafcc7ac-7c30-43ab-a122-8eb7c3f4710e {"md5": "19225ea411d20a992c6c19ad8f2f0a67", "pid": "320631176", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10336440-7", "source": "GND"}], "variant_name": ["The Moon Invaders"], "preferred_name": "Moon Invaders", "country_associated": "be", "variant_access_point": ["The Moon Invaders. Unveraenderte Form"], "date_of_establishment": "2001", "authorized_access_point": "Moon Invaders"} 1 +2024-09-11 09:02:48.281128 2024-09-11 09:02:48.281132 afcb4a5a-f80b-40cf-8ede-c0bf2946d9b1 {"md5": "4ba83fb919f9b4df183f8553040f7bf9", "pid": "320642461", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10337517-X", "source": "GND"}], "variant_name": ["Hif and Zanga"], "preferred_name": "Hif & Zanga", "country_associated": "gw", "variant_access_point": ["Hif and Zanga"], "authorized_access_point": "Hif & Zanga", "biographical_information": ["Afro-Band um \\"Hif\\" (Anga Belowi) aus Stuttgart"]} 1 +2024-09-11 09:02:48.347608 2024-09-11 09:02:48.347611 bb10d84e-4a2d-4cd3-ac84-1c64d00d7547 {"md5": "6e3192f101a92ade712a97a0f4443ad3", "pid": "32064779X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10338021-8", "source": "GND"}], "variant_name": ["Naqqara & Salsabil"], "preferred_name": "Naqqara-Salsabil", "country_associated": "gw", "variant_access_point": ["Naqqara & Salsabil"], "authorized_access_point": "Naqqara-Salsabil", "biographical_information": ["Berliner Percussionsensemble"]} 1 +2024-09-11 09:02:48.415917 2024-09-11 09:02:48.415923 6636f9eb-a55a-459f-8c35-272bc934ef21 {"md5": "9b221f4309d7e7fcbe2414c6996ba9d1", "pid": "320648877", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10338120-X", "source": "GND"}], "preferred_name": "New Tango Orquesta", "country_associated": "sw", "date_of_establishment": "1995", "authorized_access_point": "New Tango Orquesta"} 1 +2024-09-11 09:02:48.471713 2024-09-11 09:02:48.471716 1a96bc15-cdf8-4475-b250-b211e23daafe {"md5": "cfc7ea5bc48d43249c5b26e2f4b4c317", "pid": "320655458", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10338750-X", "source": "GND"}], "preferred_name": "Otti und die Alpenfrieden", "country_associated": "it", "authorized_access_point": "Otti und die Alpenfrieden", "biographical_information": ["Von Othmar Fischnaller in der Nachfolge der Alpenfrieden gegr. Gruppe aus Meransen"]} 1 +2024-09-11 09:02:48.527613 2024-09-11 09:02:48.527618 5ec0f752-048e-494a-b7d1-e4974182b22c {"md5": "349e3ad80625ea99f20e2306e8fc48d5", "pid": "320663817", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10339558-1", "source": "GND"}], "preferred_name": "Hoamstanzer", "country_associated": "it", "authorized_access_point": "Hoamstanzer"} 1 +2024-09-11 09:02:48.59711 2024-09-11 09:02:48.597115 c6cc0144-8cb6-4d77-8ff8-99d50bf0dc46 {"md5": "0feda69084e18e4ba045161bba38ed1c", "pid": "320680169", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10341146-X", "source": "GND"}], "variant_name": ["New Orleans Opera Orchestra", "Orchester der New Orleans Opera", "Orchestra dell'Opera House", "Orchestra of the New Orleans Opera House"], "preferred_name": "New Orleans Opera. Orchestra", "country_associated": "xxu", "variant_access_point": ["New Orleans Opera Orchestra", "Orchester der New Orleans Opera", "Orchestra dell'Opera House. New Orleans", "Orchestra of the New Orleans Opera House"], "authorized_access_point": "New Orleans Opera. Orchestra"} 1 +2024-09-11 09:02:48.652647 2024-09-11 09:02:48.65265 651a8a3c-8120-4c88-8474-0e1f886b4912 {"md5": "4cec9353f07436dcec1be93676a9595a", "pid": "320694577", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10342476-3", "source": "GND"}], "preferred_name": "Fonojet", "country_associated": "gw", "authorized_access_point": "Fonojet"} 1 +2024-09-11 09:02:48.710162 2024-09-11 09:02:48.710166 f7441382-582c-46a6-9bf1-c590ae25ee8c {"md5": "5822465590d049d249057402c4388754", "pid": "940254522", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5095284-5", "source": "GND"}], "variant_name": ["Non-Governmental Organizations Division", "Kanada. International Development Agency. Direction des Organisations Non Gouvernementales", "ONG", "Direction des Organisations Non Gouvernementales", "NGO"], "preferred_name": "Kanada. International Development Agency. Non-Governmental Organizations Division", "country_associated": "xxc", "variant_access_point": ["Non-Governmental Organizations Division. Kanada", "Kanada. International Development Agency. Direction des Organisations Non Gouvernementales", "ONG. Abkuerzung", "Direction des Organisations Non Gouvernementales. Kanada", "NGO. Abkuerzung"], "date_of_establishment": "1968", "authorized_access_point": "Kanada. International Development Agency. Non-Governmental Organizations Division"} 1 +2024-09-11 09:02:48.764541 2024-09-11 09:02:48.764543 45ec8dc1-dd9f-4343-a4d7-c0153cf21594 {"md5": "ce279944ce04f801687f6888a3f76f28", "pid": "940263920", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3018974-3", "source": "GND"}], "variant_name": ["Sonderschule", "Elisabethenschule"], "preferred_name": "Schule für Geistigbehinderte", "country_associated": "gw", "variant_access_point": ["Sonderschule. Sprendlingen", "Elisabethenschule. Sprendlingen"], "authorized_access_point": "Schule für Geistigbehinderte. Sprendlingen"} 1 +2024-09-11 09:02:48.818533 2024-09-11 09:02:48.818535 2590ad33-e510-4f27-9553-a0e4938cb3ce {"md5": "5fb1340f9eebd095f279ba23d70d3a2a", "pid": "94027115X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5096106-8", "source": "GND"}], "preferred_name": "Ausstellung Serge Brignoni", "country_associated": "sz", "authorized_access_point": "Ausstellung Serge Brignoni, 1993, Basel"} 1 +2024-09-11 09:03:06.062256 2024-09-11 09:03:06.062262 d006d0f7-4f6d-4226-b525-d74ea357e4d9 {"md5": "953208d066f64885a601f1e7925e7d8d", "pid": "95500778X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2173747-2", "source": "GND"}], "preferred_name": "Akademie für Sozialmedizin", "country_associated": "gw", "authorized_access_point": "Akademie für Sozialmedizin. Bochum"} 1 +2024-09-11 09:02:48.875718 2024-09-11 09:02:48.875724 d7e7018e-da56-4c29-8ca9-f5c704941c5e {"md5": "3d97975b52fa623cbf0c9c98927c35a1", "pid": "94037238X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5097761-1", "source": "GND"}], "variant_name": ["School of Economics and Finance", "Curtin University of Technology. School of Economics and Finance", "School of Economics & Finance", "Curtin Business School. Economics & Finance", "Curtin University. School of Economics and Finance"], "preferred_name": "Curtin Business School. School of Economics and Finance", "country_associated": "at", "variant_access_point": ["School of Economics and Finance. Perth, Western Australia", "Curtin University of Technology. School of Economics and Finance", "School of Economics & Finance. Perth, Western Australia", "Curtin Business School. Economics & Finance", "Curtin University. School of Economics and Finance"], "authorized_access_point": "Curtin Business School. School of Economics and Finance"} 1 +2024-09-11 09:02:48.937521 2024-09-11 09:02:48.937524 d048ee12-5ee3-48f8-b027-ec9e76508906 {"md5": "664cd8af6be51f4a03c105e04232c480", "pid": "940374412", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5097960-7", "source": "GND"}], "preferred_name": "Seminario sul Regime et la Conservazione dei Litorali", "authorized_access_point": "Seminario sul Regime et la Conservazione dei Litorali"} 1 +2024-09-11 09:02:49.004969 2024-09-11 09:02:49.004972 7f03b61d-d20a-4d0d-a49f-116b31391651 {"md5": "170ed2e7081a5fbd70f3c7188e196863", "pid": "940433729", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5098759-8", "source": "GND"}], "preferred_name": "International Symposium on Neurobehavioral Methods and Effects in Occupational and Environmental Health, 4", "country_associated": "ja", "authorized_access_point": "International Symposium on Neurobehavioral Methods and Effects in Occupational and Environmental Health, 4, 1991, Tokio"} 1 +2024-09-11 09:02:49.072754 2024-09-11 09:02:49.072758 1b7d80ea-6269-4597-997c-cb57a40f48f4 {"md5": "db8a4d52214f600978f760afb48076b8", "pid": "940439611", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5099331-8", "source": "GND"}], "variant_name": ["International Conference on Meson Nucleus Interactions", "Meson-Nucleus Interactions Conference", "International Conference on Meson-Nucleus Interactions"], "preferred_name": "Meson Nucleus Interactions Conference", "country_associated": "pl", "variant_access_point": ["International Conference on Meson Nucleus Interactions, 1993, Krakau", "Meson-Nucleus Interactions Conference, 1993, Krakau", "International Conference on Meson-Nucleus Interactions, 1993, Krakau"], "authorized_access_point": "Meson Nucleus Interactions Conference, 1993, Krakau"} 1 +2024-09-11 09:02:49.138532 2024-09-11 09:02:49.138541 21eb29ac-59b8-4cba-95a5-1023923f2f4c {"md5": "09a1ac8de0cb3969410b1d6c5487f78b", "pid": "940547880", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5100092-1", "source": "GND"}], "variant_name": ["VEB Energiekombinat"], "preferred_name": "Energiekombinat", "date_of_termination": "28.06.90", "variant_access_point": ["VEB Energiekombinat. Karl-Marx-Stadt"], "authorized_access_point": "Energiekombinat. Karl-Marx-Stadt"} 1 +2024-09-11 09:02:49.192028 2024-09-11 09:02:49.192032 562b27b8-bc71-4c1c-9805-3dec088907ad {"md5": "5651c5494baf493c7fa6a5f58df6ce33", "pid": "940552337", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1301063-3", "source": "GND"}], "preferred_name": "Infratest GmbH und Co. KG. Epidemiologie und Gesundheitsforschung", "country_associated": "gw", "authorized_access_point": "Infratest GmbH und Co. KG. München. Epidemiologie und Gesundheitsforschung"} 1 +2024-09-11 09:02:49.248306 2024-09-11 09:02:49.248309 c1816b12-9d4b-42fb-8095-477e163220cb {"md5": "fc5412f6a4255d5fda517227445ffd8d", "pid": "940717395", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5101445-2", "source": "GND"}], "preferred_name": "Katholische Schulorganisation der Diözese Limburg", "authorized_access_point": "Katholische Schulorganisation der Diözese Limburg"} 1 +2024-09-11 09:02:49.301248 2024-09-11 09:02:49.301252 7be186b4-5536-4963-9931-a30509a50ce7 {"md5": "4267ff9402cd629882fc3ef5f3624b8e", "pid": "940975262", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5104089-X", "source": "GND"}], "variant_name": ["Conference dedicated to the Centennial of Anna Akhmatova"], "preferred_name": "Dartmouth Conference dedicated to the Centennial of Anna Akhmatova", "country_associated": "xxu", "variant_access_point": ["Conference dedicated to the Centennial of Anna Akhmatova, 1989, Hanover, NH"], "authorized_access_point": "Dartmouth Conference dedicated to the Centennial of Anna Akhmatova, 1989, Hanover, NH"} 1 +2024-09-11 09:02:49.360458 2024-09-11 09:02:49.360462 d4c6fa64-d787-415b-9d01-7931cac239a4 {"md5": "59026aaa9281d6df2c132deb5a015fae", "pid": "940977877", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5104334-8", "source": "GND"}], "variant_name": ["Ökumenisches Gespräch"], "preferred_name": "Amsterdamer Ökumenisches Gespräch", "country_associated": "ne", "variant_access_point": ["Ökumenisches Gespräch, 1948, Amsterdam"], "authorized_access_point": "Amsterdamer Ökumenisches Gespräch, 1948"} 1 +2024-09-11 09:02:49.418335 2024-09-11 09:02:49.418338 a83c213f-ebc3-4f22-898b-22b48c8f3175 {"md5": "32f10005c6f682d519fb4076ef5b53b0", "pid": "940981769", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5104645-3", "source": "GND"}], "preferred_name": "Entwicklerforum Programmierbare Logikbausteine, 2", "authorized_access_point": "Entwicklerforum Programmierbare Logikbausteine, 2, 1989, München"} 1 +2024-09-11 09:02:49.476152 2024-09-11 09:02:49.476156 aa0d8e60-8f16-45cd-89c7-6364b99295ef {"md5": "b84fd5756947f7ad3b7324b5711808fa", "pid": "940982315", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5104697-0", "source": "GND"}], "variant_name": ["ABCS"], "preferred_name": "Association of British Council Scholars", "country_associated": "ii", "variant_access_point": ["ABCS. Abkuerzung"], "authorized_access_point": "Association of British Council Scholars"} 1 +2024-09-11 09:02:50.914027 2024-09-11 09:02:50.914032 ff2c7f48-1026-40c0-9bcc-cb48b01c4b88 {"md5": "651ff0f37a12bf65657a3afb52804e96", "pid": "942904168", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5116819-4", "source": "GND"}], "preferred_name": "Bundes-Turn- und Sportfest", "date_of_establishment": "1930", "authorized_access_point": "Bundes-Turn- und Sportfest, Tschechoslowakei"} 1 +2024-09-11 09:02:49.540763 2024-09-11 09:02:49.540766 661c0d10-763c-4bae-8032-dbfe5f347d13 {"md5": "b479d41c3417805e85b35b49e18853c0", "pid": "941017893", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5105001-8", "source": "GND"}], "variant_name": ["Städtische Theater. Theater Oben"], "preferred_name": "Theater Oben", "variant_access_point": ["Städtische Theater. Karl-Marx-Stadt. Theater Oben"], "authorized_access_point": "Theater Oben. Karl-Marx-Stadt"} 1 +2024-09-11 09:02:49.607818 2024-09-11 09:02:49.607822 74a0be26-0bea-4ab7-aae2-c64b6dbdbcc6 {"md5": "5544ba4168f3aedff8653c0dcdd866b0", "pid": "941089150", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5105210-6", "source": "GND"}], "variant_name": ["Policía"], "preferred_name": "Venezuela. Policía", "country_associated": "ve", "variant_access_point": ["Policía. Venezuela, Distrito Federal"], "authorized_access_point": "Venezuela. Distrito Federal. Policía"} 1 +2024-09-11 09:02:49.662615 2024-09-11 09:02:49.662618 cae07205-c380-48c8-85a2-9eeef2f43dfc {"md5": "2303e9eb38ad003d6b412ec6678b9797", "pid": "941275590", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5106167-3", "source": "GND"}], "preferred_name": "Exhibition Prints and Related Drawings by the Carracci Family", "country_associated": "xxu", "authorized_access_point": "Exhibition Prints and Related Drawings by the Carracci Family, 1979, Washington, DC"} 1 +2024-09-11 09:02:49.727958 2024-09-11 09:02:49.727964 261fd964-cb44-4a09-903b-825e92f84935 {"md5": "bbc5d065ee7b8b503f647e8cfa21fd54", "pid": "941281973", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5106772-9", "source": "GND"}], "preferred_name": "Ausstellung Fliegende Bauten", "authorized_access_point": "Ausstellung Fliegende Bauten, 1993, Stuttgart"} 1 +2024-09-11 09:02:49.803269 2024-09-11 09:02:49.803271 10ce5b26-742d-4d6f-bdf6-c4cf4c91497c {"md5": "b20a23e69227733442fe65a74bcbca4e", "pid": "941346447", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5107295-6", "source": "GND"}], "variant_name": ["Sugar Technologists Association", "PHILSUTECH"], "preferred_name": "Philippine Sugar Technologists Association", "country_associated": "ph", "variant_access_point": ["Sugar Technologists Association. Philippinen", "PHILSUTECH. Abkuerzung"], "authorized_access_point": "Philippine Sugar Technologists Association"} 1 +2024-09-11 09:02:49.863016 2024-09-11 09:02:49.863021 ecda3171-28e1-4193-b58c-162bfb155e4f {"md5": "5f63f51e7e5f673dd9c4c91c6b355c05", "pid": "941637379", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5108177-5", "source": "GND"}], "variant_name": ["DIMACS Workshop on Expander Graphs", "Expander Graphs Workshop", "Expander Graphs"], "preferred_name": "Workshop on Expander Graphs", "country_associated": "xxu", "variant_access_point": ["DIMACS Workshop on Expander Graphs, 1992, Princeton, NJ", "Expander Graphs Workshop, 1992, Princeton, NJ", "Expander Graphs, 1992, Princeton, NJ"], "authorized_access_point": "Workshop on Expander Graphs, 1992, Princeton, NJ"} 1 +2024-09-11 09:02:49.923911 2024-09-11 09:02:49.923916 16b7b0f9-407d-4da8-bbbd-9eba41ae00ff {"md5": "f087de5b6464b924071b720941defde8", "pid": "941671380", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5109269-4", "source": "GND"}], "variant_name": ["Verband der Deutschen Buchdrucker. Gau Bayern. Mitgliedschaft Nürnberg"], "preferred_name": "Verband der Deutschen Buchdrucker. Mitgliedschaft Nürnberg", "variant_access_point": ["Verband der Deutschen Buchdrucker. Gau Bayern. Mitgliedschaft Nürnberg"], "authorized_access_point": "Verband der Deutschen Buchdrucker. Mitgliedschaft Nürnberg"} 1 +2024-09-11 09:02:49.975832 2024-09-11 09:02:49.975835 4e1e69cf-9c55-4a69-bee5-9c16134f3c75 {"md5": "fc56a263cd4287089ada1269b851a999", "pid": "94192582X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5109741-2", "source": "GND"}], "preferred_name": "Associazione Toscana Gallerie d'Arte Moderna", "country_associated": "it", "authorized_access_point": "Associazione Toscana Gallerie d'Arte Moderna"} 1 +2024-09-11 09:02:50.030598 2024-09-11 09:02:50.030602 7770708a-4a97-4a63-8acf-b6cdf046148e {"md5": "79917e67700092378953b885ac340fe2", "pid": "941943933", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5110816-1", "source": "GND"}], "preferred_name": "Kassenärztliche Vereinigung Mecklenburg-Vorpommern", "country_associated": "gw", "authorized_access_point": "Kassenärztliche Vereinigung Mecklenburg-Vorpommern"} 1 +2024-09-11 09:02:50.087176 2024-09-11 09:02:50.087179 e6a5d278-9a92-406a-afd8-0eaec4cd17f5 {"md5": "18c63b6cc9f856d2adc9edded1dd8fca", "pid": "941953912", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2139291-2", "source": "GND"}], "preferred_name": "Arbeitsgruppe Endoprothetik", "country_associated": "gw", "authorized_access_point": "Arbeitsgruppe Endoprothetik"} 1 +2024-09-11 09:02:50.143543 2024-09-11 09:02:50.143547 379edbc4-4211-4e69-b3a7-adc9edd5819c {"md5": "78d805ea63a7c05c485dd67496d33da4", "pid": "942048636", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1227394-6", "source": "GND"}], "variant_name": ["Diethnes Synedrio Neograeca Medii Aevi, 2"], "preferred_name": "Congresso Internazionale Neograeca Medii Aevi, 2", "country_associated": "it", "variant_access_point": ["Diethnes Synedrio Neograeca Medii Aevi, 2, 1991, Venedig"], "authorized_access_point": "Congresso Internazionale Neograeca Medii Aevi, 2, 1991, Venedig"} 1 +2024-09-11 09:02:50.19727 2024-09-11 09:02:50.197274 63d36f18-8ca6-4a80-a4ad-9f828e77484e {"md5": "aca2ca6f732ef00576a42e285e3f0179", "pid": "94205086X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1227928-6", "source": "GND"}], "variant_name": ["Creberg"], "preferred_name": "Credito Bergamasco", "country_associated": "it", "variant_access_point": ["Creberg"], "authorized_access_point": "Credito Bergamasco", "biographical_information": ["Genossenschaftbank 1.6.1891 in Bergamo gegründet, seit 1.7.2007 Teil der Bankengruppe Banco Popolare"]} 1 +2024-09-11 09:02:58.478192 2024-09-11 09:02:58.478216 be1060e8-d4b2-4ebf-8549-1911533d1653 {"md5": "8dd318319daa9fe07995ed31b654c99d", "pid": "949828246", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5194416-9", "source": "GND"}], "preferred_name": "Theology Symposium", "country_associated": "xxu", "authorized_access_point": "Theology Symposium, 1967, Chicago, Ill."} 1 +2024-09-11 09:02:50.261464 2024-09-11 09:02:50.261469 82c10949-974a-4d3b-b20e-49afd3f52b75 {"md5": "4ee336d463fcc24784dcab48ffd877af", "pid": "942050878", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1227930-4", "source": "GND"}], "variant_name": ["International Food Legume Research Conference on Pea, Lentil, Faba Bean, Chickpea, and Grasspea", "IFLRC, 2", "International Food Legume Research Conference on Pea, Lentil, Faba Bean, Chickpea, and Grasspea"], "preferred_name": "International Food Legume Research Conference, 2", "variant_access_point": ["International Food Legume Research Conference on Pea, Lentil, Faba Bean, Chickpea, and Grasspea, 1992, al-Qāhira", "IFLRC, 2, 1992, al-Qāhira", "International Food Legume Research Conference on Pea, Lentil, Faba Bean, Chickpea, and Grasspea, 1992, Cairo"], "authorized_access_point": "International Food Legume Research Conference, 2, 1992, al-Qāhira"} 1 +2024-09-11 09:02:50.32141 2024-09-11 09:02:50.321413 81d735ff-c17e-494e-8b9f-a911094b12dc {"md5": "812805263edd755bf993e3bc465356fb", "pid": "942070747", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2139670-X", "source": "GND"}], "variant_name": ["Osterwald, Druckerei H.", "Osterwald", "Druckerei H. Osterwald"], "preferred_name": "Druckerei H. Osterwald", "variant_access_point": ["Osterwald, Druckerei H.. Hannover", "Osterwald. Hannover", "Druckerei H. Osterwald. Firma"], "date_of_establishment": "1863", "authorized_access_point": "Druckerei H. Osterwald. Hannover", "biographical_information": ["betrieb auch eine Buchbinderei"]} 1 +2024-09-11 09:02:50.376904 2024-09-11 09:02:50.376908 63ada93b-4032-4456-b9b1-82a506d2e658 {"md5": "c30a5fc032416f1e0785e1db40ca13b6", "pid": "942199448", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2140079-9", "source": "GND"}], "variant_name": ["Ausstellung East of Eden"], "preferred_name": "Ausstellung East of Eden", "variant_access_point": ["Ausstellung East of Eden, 1994, Dessau"], "authorized_access_point": "Ausstellung East of Eden, 1994, Mosigkau"} 1 +2024-09-11 09:02:50.432471 2024-09-11 09:02:50.432476 f8d54dc7-ac56-4861-8dcd-4468c1bfcffd {"md5": "0db51e88a7398324e1f7501560c9f301", "pid": "942320220", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2140465-3", "source": "GND"}], "variant_name": ["Dnevi Kulture Zvezne Republike Nemčije"], "preferred_name": "Kulturtage der Bundesrepublik Deutschland", "variant_access_point": ["Dnevi Kulture Zvezne Republike Nemčije, 1981, Ljubljana"], "authorized_access_point": "Kulturtage der Bundesrepublik Deutschland, 1981, Ljubljana"} 1 +2024-09-11 09:02:50.511317 2024-09-11 09:02:50.511322 b52bb016-ac92-4b7a-98be-1428a500320e {"md5": "231c9913e652f8a8726a997ab3e77ba9", "pid": "942384849", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1600168-0", "source": "GND"}], "variant_name": ["Schützenverein Waldeslust", "Schützenverein", "Schützenverein Waldeslust. Roding", "Schützenverein Waldeslust Roding"], "preferred_name": "Schützenverein Waldeslust", "country_associated": "gw", "variant_access_point": ["Schützenverein Waldeslust. Roding", "Schützenverein. Roding-Bahnhof", "Schützenverein Waldeslust. Roding. Bahnhof", "Schützenverein Waldeslust Roding. Roding, Bahnhof. Ehemalige Vorzugsbenennung SWD"], "authorized_access_point": "Schützenverein Waldeslust. Roding-Bahnhof"} 1 +2024-09-11 09:02:50.568744 2024-09-11 09:02:50.568747 dbceb5f4-af79-4831-8e47-21b5217b77a7 {"md5": "3b2f1fef9fddb4c87045a3a1f1150fc3", "pid": "94242283X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5113093-2", "source": "GND"}], "variant_name": ["Symposion über Blutgerinnung, 12"], "preferred_name": "Hamburger Symposion über Blutgerinnung, 12", "country_associated": "gw", "variant_access_point": ["Symposion über Blutgerinnung, 12, 1969, Hamburg"], "authorized_access_point": "Hamburger Symposion über Blutgerinnung, 12, 1969, Hamburg"} 1 +2024-09-11 09:02:50.62259 2024-09-11 09:02:50.622592 bffa2247-6619-4229-bada-6b77b57f6d9a {"md5": "cfe399fa9401a3bbdb61ad636b0d36a9", "pid": "942428595", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5113662-4", "source": "GND"}], "preferred_name": "International Symposium on Human Chlamydial Infections, 7", "country_associated": "xxc", "authorized_access_point": "International Symposium on Human Chlamydial Infections, 7, 1990, Harrison Hot Springs, British Columbia"} 1 +2024-09-11 09:02:50.678516 2024-09-11 09:02:50.678519 4e16e208-6edb-4bec-b63d-ad1eb418a6b6 {"md5": "676d2e2b9bdfd24c9bb6311f87d65b71", "pid": "942565762", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5114650-2", "source": "GND"}], "preferred_name": "Envirocell", "country_associated": "xxk", "authorized_access_point": "Envirocell. Ashtead"} 1 +2024-09-11 09:02:50.736633 2024-09-11 09:02:50.736637 d7b5cfeb-435c-4153-b457-e8e1c2905c75 {"md5": "53c0e404bcfddb3ed84c0a4e356122cf", "pid": "942662024", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5116117-5", "source": "GND"}], "variant_name": ["Kunsthaus C. Küppers", "Küppers, Kunsthaus C."], "preferred_name": "C. Küppers GmbH", "country_associated": "gw", "variant_access_point": ["Kunsthaus C. Küppers", "Küppers, Kunsthaus C."], "authorized_access_point": "C. Küppers GmbH"} 1 +2024-09-11 09:02:50.804615 2024-09-11 09:02:50.804617 3f155da1-f608-4f2d-a2b6-49d3c053da18 {"md5": "f6d2c49a8dd50568e187eaefcc8adab6", "pid": "942856015", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5116674-4", "source": "GND"}], "preferred_name": "Arbeitsgemeinschaft Bonner Künstler", "country_associated": "gw", "authorized_access_point": "Arbeitsgemeinschaft Bonner Künstler"} 1 +2024-09-11 09:02:50.859564 2024-09-11 09:02:50.859568 43135cb8-3d4f-4ed8-bfd1-361134a73c7d {"md5": "7dcfb00b154f12566e018e95d94b38fb", "pid": "942894871", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1228559-6", "source": "GND"}], "variant_name": ["Freiwillige Feuerwehr", "Freiwillige Feuerwehr. Dieberg", "Freiwillige Feuerwehr Dieberg"], "preferred_name": "Freiwillige Feuerwehr", "country_associated": "gw", "variant_access_point": ["Freiwillige Feuerwehr. Walderbach-Dieberg", "Freiwillige Feuerwehr. Dieberg. Walderbach", "Freiwillige Feuerwehr Dieberg. Ehemalige Vorzugsbenennung SWD"], "authorized_access_point": "Freiwillige Feuerwehr. Dieberg, Walderbach"} 1 +2024-09-11 09:02:50.976969 2024-09-11 09:02:50.976973 e9b2f380-825c-4984-855d-ca68e0d50525 {"md5": "e4871acd473dab21bab1994d1f3a4c8f", "pid": "942915232", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5117828-X", "source": "GND"}], "variant_name": ["Seminari Annuali di Letterature Francofone"], "preferred_name": "Seminari di Letterature Francofone", "variant_access_point": ["Seminari Annuali di Letterature Francofone"], "authorized_access_point": "Seminari di Letterature Francofone"} 1 +2024-09-11 09:02:51.035931 2024-09-11 09:02:51.035935 73303b79-e5c6-427b-885f-50fd5e83401b {"md5": "51b15c9aceaf5ba003f619adc328b672", "pid": "942918584", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5118135-6", "source": "GND"}], "variant_name": ["Landschaftsverein Elbetal"], "preferred_name": "Deutscher Heimatbund. Landschaftsverein Elbetal", "variant_access_point": ["Landschaftsverein Elbetal"], "authorized_access_point": "Deutscher Heimatbund. Landschaftsverein Elbetal"} 1 +2024-09-11 09:02:51.090609 2024-09-11 09:02:51.090612 f0713d51-1c08-414b-b70f-dbd334747057 {"md5": "f811446785f27fb132bc5a9534f5ac2f", "pid": "942954297", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2142121-3", "source": "GND"}], "variant_name": ["Engel-Presse Walter Stähle", "Stähle, Ernst-Engel-Presse Walter"], "preferred_name": "Ernst-Engel-Presse Walter Stähle", "country_associated": "gw", "variant_access_point": ["Engel-Presse Walter Stähle. Meersburg", "Stähle, Ernst-Engel-Presse Walter. Meersburg"], "authorized_access_point": "Ernst-Engel-Presse Walter Stähle. Meersburg"} 1 +2024-09-11 09:02:51.149203 2024-09-11 09:02:51.149209 a7d5425d-8f04-4ca4-a542-2c6e2a60948e {"md5": "4c62b0ab56b56267d5bde011d3afa465", "pid": "942982096", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2142235-7", "source": "GND"}], "variant_name": ["MGV Concordia 1876 Schifferstadt", "MGV Concordia Schifferstadt", "Männergesangverein Concordia Schifferstadt"], "preferred_name": "Männergesangverein Concordia 1876 Schifferstadt", "country_associated": "gw", "variant_access_point": ["MGV Concordia 1876 Schifferstadt", "MGV Concordia Schifferstadt", "Männergesangverein Concordia Schifferstadt"], "authorized_access_point": "Männergesangverein Concordia 1876 Schifferstadt"} 1 +2024-09-11 09:02:51.218467 2024-09-11 09:02:51.21847 41cc4055-93f0-42de-8bde-3fd70331810c {"md5": "3bfdcb49da4c00948e1dedd9659de9e3", "pid": "943645956", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5119088-6", "source": "GND"}], "preferred_name": "Windthorst-Bund. Ortsgruppe", "date_of_termination": "1904", "authorized_access_point": "Windthorst-Bund. Ortsgruppe. Köln-Ehrenfeld"} 1 +2024-09-11 09:02:51.287178 2024-09-11 09:02:51.287183 8a1c2b85-1bf9-4e63-b573-67619ef5048a {"md5": "a2ced95cab7d41850b5e0a91a2f3276c", "pid": "943646448", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5119137-4", "source": "GND"}], "variant_name": ["Ministerium für Ackerbau, Handel und Öffentliche Arbeiten", "Deutsches Reich. Minister für Ackerbau, Handel und Öffentliche Arbeiten", "Minister für Ackerbau, Handel und Öffentliche Arbeiten"], "preferred_name": "Deutsches Reich. Ministerium für Ackerbau, Handel und Öffentliche Arbeiten", "variant_access_point": ["Ministerium für Ackerbau, Handel und Öffentliche Arbeiten. Deutsches Reich", "Deutsches Reich. Minister für Ackerbau, Handel und Öffentliche Arbeiten", "Minister für Ackerbau, Handel und Öffentliche Arbeiten. Deutsches Reich"], "authorized_access_point": "Deutsches Reich. Ministerium für Ackerbau, Handel und Öffentliche Arbeiten"} 1 +2024-09-11 09:02:51.342951 2024-09-11 09:02:51.342955 23c5d09e-9f95-4e2d-beb5-fceea6e72bfb {"md5": "30424d0b21fafd6be8fcecd7d0b67865", "pid": "943654904", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1700380-5", "source": "GND"}], "variant_name": ["CSU", "CSU-Ortsverband Kirchheim", "Christlich-Soziale Union in Bayern. Ortsverband Kirchheim"], "preferred_name": "Christlich-Soziale Union in Bayern. Ortsverband", "country_associated": "gw", "variant_access_point": ["CSU. Kirchheim, Würzburg", "CSU-Ortsverband Kirchheim", "Christlich-Soziale Union in Bayern. Ortsverband Kirchheim. Ehemalige Vorzugsbenennung SWD"], "authorized_access_point": "Christlich-Soziale Union in Bayern. Ortsverband. Kirchheim, Würzburg"} 1 +2024-09-11 09:02:51.395589 2024-09-11 09:02:51.395594 a95cc759-53fb-4c8f-9b0d-f108e6064a51 {"md5": "c55ae154cb5dd7bbc65627ff58e7aec1", "pid": "943708826", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5120661-4", "source": "GND"}], "variant_name": ["Diócesis. Capitular de la Catedral", "Capitular de la Catedral"], "preferred_name": "Diócesis", "country_associated": "sp", "variant_access_point": ["Diócesis. Calahorra. Capitular de la Catedral. Diócesis, Calahorra", "Capitular de la Catedral. Diócesis, Calahorra"], "authorized_access_point": "Diócesis. Calahorra"} 1 +2024-09-11 09:02:51.453364 2024-09-11 09:02:51.453368 be2c4000-a47b-4fbf-9abe-e759cd03d9a5 {"md5": "51dbec7a88bcd7995cc7783775848670", "pid": "943780411", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5121444-1", "source": "GND"}], "variant_name": ["Sociedad Panamericana de Diálisis y Trasplantes", "SPDT", "Sociedad Pan Americana de Diálisis y Transplante", "PSDT"], "preferred_name": "Pan-American Society for Dialysis and Transplantation", "date_of_termination": "1999", "variant_access_point": ["Sociedad Panamericana de Diálisis y Trasplantes", "SPDT. Abkuerzung", "Sociedad Pan Americana de Diálisis y Transplante", "PSDT. Abkuerzung"], "date_of_establishment": "1987", "authorized_access_point": "Pan-American Society for Dialysis and Transplantation"} 1 +2024-09-11 09:02:51.512032 2024-09-11 09:02:51.512035 1e6f05f0-65fe-4864-b7ac-1e8e2836f0f2 {"md5": "7f1a6fa90b5e906d4bbb376fcb3806fb", "pid": "943780489", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5121450-7", "source": "GND"}], "preferred_name": "Zentrale Arbeitstagung zur Marxistisch-Leninistischen Weiterbildung", "authorized_access_point": "Zentrale Arbeitstagung zur Marxistisch-Leninistischen Weiterbildung"} 1 +2024-09-11 09:02:59.17298 2024-09-11 09:02:59.172983 c1e83605-922c-43a0-bf5c-349b3941e523 {"md5": "c05b0fe7d89320fe2339b918e270f567", "pid": "950614076", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2164206-0", "source": "GND"}], "preferred_name": "Evangelische Fachhochschule Berlin. Studiengang Pflege, Pflegemanagement", "country_associated": "gw", "authorized_access_point": "Evangelische Fachhochschule Berlin. Studiengang Pflege, Pflegemanagement"} 1 +2024-09-11 09:02:51.572433 2024-09-11 09:02:51.572437 9f2df440-460e-4ba9-92c1-748b270f4b71 {"md5": "b65d98ecc039ac7b9f91154e3468db0e", "pid": "943895758", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1227825-7", "source": "GND"}], "variant_name": ["Verein zur Förderung des Fremdenverkehrs in Nürnberg"], "preferred_name": "Verein zur Förderung des Fremdenverkehrs in Nürnberg und Umgebung", "variant_access_point": ["Verein zur Förderung des Fremdenverkehrs in Nürnberg"], "authorized_access_point": "Verein zur Förderung des Fremdenverkehrs in Nürnberg und Umgebung"} 1 +2024-09-11 09:02:51.62994 2024-09-11 09:02:51.629945 731ffcc7-ba2e-4e9b-9ae4-0b732c643ed9 {"md5": "e59488efd2ff5a63555b0ed24336d396", "pid": "943900069", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1229787-2", "source": "GND"}], "variant_name": ["NAPE"], "preferred_name": "National Association for Primary Education", "variant_access_point": ["NAPE. Abkuerzung"], "authorized_access_point": "National Association for Primary Education"} 1 +2024-09-11 09:02:51.68689 2024-09-11 09:02:51.686893 d079b280-8228-4121-a2b4-423f91e237d7 {"md5": "5dd4737afc702bc9031d4d7ed8492a87", "pid": "943913152", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3024590-4", "source": "GND"}], "variant_name": ["Institute of Economic Geography and Space Organization", "Uniwersytet Łódzki. Instytut Geografii Ekonomicznej i Organizacji Przestrzeni", "Uniwersytet Łódzki. Institute of Economic Geography and Space Organization"], "preferred_name": "Instytut Geografii Ekonomicznej i Organizacji Przestrzeni", "country_associated": "pl", "variant_access_point": ["Institute of Economic Geography and Space Organization. Lodz", "Uniwersytet Łódzki. Instytut Geografii Ekonomicznej i Organizacji Przestrzeni", "Uniwersytet Łódzki. Institute of Economic Geography and Space Organization"], "authorized_access_point": "Instytut Geografii Ekonomicznej i Organizacji Przestrzeni. Lodz"} 1 +2024-09-11 09:02:51.751763 2024-09-11 09:02:51.751767 4e4b2725-8d99-4675-a1ef-e9c1db4399dd {"md5": "2f2b2e226161cb4bcbdb09b89adddc7c", "pid": "943915236", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5121991-8", "source": "GND"}], "variant_name": ["1993 Års Vallagskommitté", "Schweden. Justitiedepartementet. 1993 Års Vallagskommitté", "Schweden. Nittonhundrånittiotre Års Vallagskommitté", "Nittonhundrånittiotre Års Vallagskommitté", "Schweden. Justitiedepartementet. Nittonhundrånittiotre Års Vallagskommitté", "Schweden. Vallagskommitté", "Vallagskommitté", "Schweden. Justitiedepartementet. Vallagskommitté"], "preferred_name": "Schweden. 1993 Års Vallagskommitté", "country_associated": "sw", "variant_access_point": ["1993 Års Vallagskommitté. Schweden", "Schweden. Justitiedepartementet. 1993 Års Vallagskommitté", "Schweden. Nittonhundrånittiotre Års Vallagskommitté", "Nittonhundrånittiotre Års Vallagskommitté. Schweden", "Schweden. Justitiedepartementet. Nittonhundrånittiotre Års Vallagskommitté", "Schweden. Vallagskommitté", "Vallagskommitté. Schweden", "Schweden. Justitiedepartementet. Vallagskommitté"], "authorized_access_point": "Schweden. 1993 Års Vallagskommitté"} 1 +2024-09-11 09:02:51.808347 2024-09-11 09:02:51.808351 ce00323b-c0af-4560-aaa9-a8b0af9226b3 {"md5": "3f99a1335500cf5264d753eaa8be0578", "pid": "944068960", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1228915-2", "source": "GND"}], "variant_name": ["Réunion des Jurys et Comités des Expositions Universelles", "CFEE"], "preferred_name": "Comité Français des Expositions à l'Etranger", "variant_access_point": ["Réunion des Jurys et Comités des Expositions Universelles", "CFEE. Abkuerzung"], "date_of_establishment": "1895", "authorized_access_point": "Comité Français des Expositions à l'Etranger", "biographical_information": ["Sitz: Paris"]} 1 +2024-09-11 09:02:51.872813 2024-09-11 09:02:51.872817 ab92c606-43a9-410f-81ea-f03f77704f67 {"md5": "e778c359e426585094c91b59ffc285ff", "pid": "944075738", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1700551-6", "source": "GND"}], "preferred_name": "Tage der Alten Musik", "country_associated": "gw", "authorized_access_point": "Tage der Alten Musik, 1988, Würzburg"} 1 +2024-09-11 09:02:51.944376 2024-09-11 09:02:51.94438 946fd7a1-7f5d-4971-ad5c-8451a5ad8b66 {"md5": "4e09a8189b50261f9e488a831030f144", "pid": "944081274", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5124584-X", "source": "GND"}], "preferred_name": "Academia Nocturna Jovenes", "country_associated": "sp", "authorized_access_point": "Academia Nocturna Jovenes. Madrid"} 1 +2024-09-11 09:02:52.000456 2024-09-11 09:02:52.00046 c8a8c24f-6075-43fd-b9db-a2224f540f65 {"md5": "06ca02ecb81af17e4ba23443780b136b", "pid": "944087809", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5125194-2", "source": "GND"}], "preferred_name": "Marokko-Minen-Syndikat", "country_associated": "mr", "authorized_access_point": "Marokko-Minen-Syndikat", "biographical_information": ["Marokk. Name n. erm."]} 1 +2024-09-11 09:02:52.057446 2024-09-11 09:02:52.057449 996b09da-18fa-4568-be40-8663c6a632eb {"md5": "cc5ff9ae44e5e42e4bcda9e676ff0a63", "pid": "944148816", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5126005-0", "source": "GND"}], "variant_name": ["Hochmeistergemeinde Halensee", "Hochmeister-Kirchengemeinde Halensee", "Evangelische Hochmeisterkirche Halensee"], "preferred_name": "Evangelische Hochmeister-Kirchengemeinde Halensee", "country_associated": "gw", "variant_access_point": ["Hochmeistergemeinde Halensee", "Hochmeister-Kirchengemeinde Halensee", "Evangelische Hochmeisterkirche Halensee"], "authorized_access_point": "Evangelische Hochmeister-Kirchengemeinde Halensee"} 1 +2024-09-11 09:02:52.121928 2024-09-11 09:02:52.121931 0bb1688c-db5c-41b4-bdaf-13476e862c6c {"md5": "14625067534a13df9fd53f6f4d3fdb88", "pid": "944150284", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5126149-2", "source": "GND"}], "variant_name": ["International Conference on Hot Isostatic Pressing, 1"], "preferred_name": "HIP, 1", "country_associated": "sw", "variant_access_point": ["International Conference on Hot Isostatic Pressing, 1, 1987, Luleå"], "authorized_access_point": "HIP, 1, 1987, Luleå"} 1 +2024-09-11 09:02:52.177335 2024-09-11 09:02:52.177339 fc41a11b-d784-4d4d-bb59-2b7ebc31c399 {"md5": "f3d41bbc5afd38399d1a68303009c2c7", "pid": "944150381", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5126157-1", "source": "GND"}], "variant_name": ["Kafedra Dorevoljucionnoj Otečestvennoj Istorii"], "preferred_name": "Samarskij Gosudarstvennyj Universitet. Kafedra Dorevoljucionnoj Otečestvennoj Istorii", "country_associated": "ru", "variant_access_point": ["Kafedra Dorevoljucionnoj Otečestvennoj Istorii. Samara"], "authorized_access_point": "Samarskij Gosudarstvennyj Universitet. Kafedra Dorevoljucionnoj Otečestvennoj Istorii"} 1 +2024-09-11 09:02:52.235495 2024-09-11 09:02:52.235498 b5dfd657-8851-4fa5-864f-b430a7ad8eeb {"md5": "73755ea440163932e3abca9af6b35756", "pid": "944150993", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5126210-1", "source": "GND"}], "variant_name": ["ACC, 13"], "preferred_name": "American Control Conference, 13", "country_associated": "xxu", "variant_access_point": ["ACC, 13, 1994, Baltimore, Md."], "authorized_access_point": "American Control Conference, 13, 1994, Baltimore, Md."} 1 +2024-09-11 09:02:52.291713 2024-09-11 09:02:52.291716 2308adb2-08d7-45b4-8957-b0171a118b7f {"md5": "1f0cef683ab7cf57ad47f277e2f517bc", "pid": "944155383", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5126592-8", "source": "GND"}], "variant_name": ["ERB", "ERB", "Network of Experimental and Representative Basins", "Euromediterranean Network of ERB", "Euromediterranean Network of Experimental and Representative Basins", "ERB"], "preferred_name": "European Network of Experimental and Representative Basins", "variant_access_point": ["ERB. Abkuerzung", "ERB. European Network of Experimental and Representative Basins", "Network of Experimental and Representative Basins", "Euromediterranean Network of ERB", "Euromediterranean Network of Experimental and Representative Basins", "ERB. Euromediterranean Network of Experimental and Representative Basins"], "authorized_access_point": "European Network of Experimental and Representative Basins"} 1 +2024-09-11 09:02:52.348712 2024-09-11 09:02:52.348713 fec4640e-f976-474e-8ebb-2c6cccb997b1 {"md5": "c01ea07aa6be33194ec92f38179ead90", "pid": "944191908", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1301716-0", "source": "GND"}], "preferred_name": "Journées d'Endocrinologie et de Nutrition", "country_associated": "fr", "authorized_access_point": "Journées d'Endocrinologie et de Nutrition, 1970, Paris"} 1 +2024-09-11 09:02:52.406224 2024-09-11 09:02:52.406231 a39df5d8-8d68-4c61-81bd-9827df5b8b74 {"md5": "cc354d4b385dad42c7884770353dcecf", "pid": "94419558X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3025455-3", "source": "GND"}], "variant_name": ["NUREC"], "preferred_name": "Network on Urban Research in the European Community", "variant_access_point": ["NUREC. Abkuerzung"], "authorized_access_point": "Network on Urban Research in the European Community"} 1 +2024-09-11 09:02:52.472292 2024-09-11 09:02:52.472298 21533bfa-edb4-46a5-b3d3-010ea6b93b8a {"md5": "59d9576915faea5a79e798d09d10653e", "pid": "944242898", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2146601-4", "source": "GND"}], "preferred_name": "Ausstellung Klaus Bertelsmann", "country_associated": "gw", "authorized_access_point": "Ausstellung Klaus Bertelsmann, 1961, Lüneburg"} 1 +2024-09-11 09:02:52.528805 2024-09-11 09:02:52.528807 17a6017d-2805-4f1c-ad94-1be46ed2777b {"md5": "4ad727e19ea3c86c5c0e09d6f1806a23", "pid": "944290604", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5127848-0", "source": "GND"}], "preferred_name": "Einheitskurzschrift-Verein", "authorized_access_point": "Einheitskurzschrift-Verein. Saarbrücken"} 1 +2024-09-11 09:02:52.583508 2024-09-11 09:02:52.583512 06ab8986-e6d7-4d3f-bf86-f5f9fc190b3d {"md5": "0a776c32311b04a723bf15da0ee994b1", "pid": "944393020", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3026008-5", "source": "GND"}], "variant_name": ["Sonderforschungsbereich, 179", "Technische Universität Braunschweig. Sonderforschungsbereich Wasser- und Stoffdynamik in Agrar-Ökosystemen", "Technische Universität Braunschweig. Sonderforschungsbereich 179", "Special Collaborative Program Water and Matter Dynamics in Agro-Ecosystems", "Technische Universität Braunschweig. Special Collaborative Program Water and Matter Dynamics in Agro-Ecosystems", "Technische Universität Braunschweig. Special Collaborative Program 179", "Deutsche Forschungsgemeinschaft. Collaborative Research Program 179 \\"Water and Matter Dynamics in Agroecosystems\\"", "Deutsche Forschungsgemeinschaft. Sonderforschungsbereich Wasser- und Stoffdynamik in Agrar-Oekosystemen", "Deutsche Forschungsgemeinschaft. SFB, 179", "Deutsche Forschungsgemeinschaft. Sonderforschungsbereich 179", "Collaborative Research Program 179 \\"Water and Matter Dynamics in Agroecosystems\\", Technical University Braunschweig"], "preferred_name": "Sonderforschungsbereich Wasser- und Stoffdynamik in Agrar-Ökosystemen", "country_associated": "gw", "variant_access_point": ["Sonderforschungsbereich, 179", "Technische Universität Braunschweig. Sonderforschungsbereich Wasser- und Stoffdynamik in Agrar-Ökosystemen", "Technische Universität Braunschweig. Sonderforschungsbereich 179", "Special Collaborative Program Water and Matter Dynamics in Agro-Ecosystems", "Technische Universität Braunschweig. Special Collaborative Program Water and Matter Dynamics in Agro-Ecosystems", "Technische Universität Braunschweig. Special Collaborative Program 179", "Deutsche Forschungsgemeinschaft. Collaborative Research Program 179 \\"Water and Matter Dynamics in Agroecosystems\\"", "Deutsche Forschungsgemeinschaft. Sonderforschungsbereich Wasser- und Stoffdynamik in Agrar-Oekosystemen", "Deutsche Forschungsgemeinschaft. SFB, 179", "Deutsche Forschungsgemeinschaft. Sonderforschungsbereich 179", "Collaborative Research Program 179 \\"Water and Matter Dynamics in Agroecosystems\\", Technical University Braunschweig. Unveraenderte Form"], "authorized_access_point": "Sonderforschungsbereich Wasser- und Stoffdynamik in Agrar-Ökosystemen"} 1 +2024-09-11 09:02:52.643748 2024-09-11 09:02:52.643752 45de7bd0-5a2e-4d08-aa46-3696b2de031c {"md5": "69bd43b7042ab218f17bdf6332ffda49", "pid": "944405312", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5129329-8", "source": "GND"}], "preferred_name": "Philosophisch-Theosophischer Verlag", "authorized_access_point": "Philosophisch-Theosophischer Verlag. Berlin"} 1 +2024-09-11 09:02:52.705483 2024-09-11 09:02:52.705485 c8bd1bbf-09b9-4d44-8baa-7879ff49f887 {"md5": "49747080a9d087b72c68a337c1a0a33c", "pid": "944548059", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5129567-2", "source": "GND"}], "preferred_name": "Station Experimentale d'Aviculture", "country_associated": "fr", "authorized_access_point": "Station Experimentale d'Aviculture. Ploufragan"} 1 +2024-09-11 09:02:52.762249 2024-09-11 09:02:52.762254 68e2cadc-3b58-43ca-be38-fa8b60711f12 {"md5": "09606cbacb3af51c0bad1115eb81f5df", "pid": "944640206", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2147793-0", "source": "GND"}], "preferred_name": "Deutsche Telekom AG. Niederlassung Cottbus", "country_associated": "gw", "authorized_access_point": "Deutsche Telekom AG. Niederlassung Cottbus"} 1 +2024-09-11 09:02:52.82124 2024-09-11 09:02:52.821244 a6cb8897-3b99-4f05-a14e-641e1efef194 {"md5": "3b4b354b1e63167d8b5870007df1a8d8", "pid": "944694845", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5129995-1", "source": "GND"}], "preferred_name": "Symposium and Workshop: The Employability of South African BA Graduates", "country_associated": "sa", "authorized_access_point": "Symposium and Workshop: The Employability of South African BA Graduates, 1993, Pretoria"} 1 +2024-09-11 09:02:52.888702 2024-09-11 09:02:52.888706 6ef70de1-d873-41c9-a399-e770735330f1 {"md5": "26147861aa3c7eb8207c057ddac50323", "pid": "944695167", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5130025-4", "source": "GND"}], "variant_name": ["Giornata di Studi Bizantini sul Tèma Problemi di Ecdotica e Esegesi di Testi Bizantini e Grecomedievali"], "preferred_name": "Giornata di Studi Bizantini, 2", "country_associated": "it", "variant_access_point": ["Giornata di Studi Bizantini sul Tèma Problemi di Ecdotica e Esegesi di Testi Bizantini e Grecomedievali, 1992, Salerno"], "authorized_access_point": "Giornata di Studi Bizantini, 2, 1992, Salerno"} 1 +2024-09-11 09:02:52.942794 2024-09-11 09:02:52.942798 43419d67-280b-4460-a7e1-73426092c854 {"md5": "69f4a9ac3e767ec514177ab12c96fc14", "pid": "944797199", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5130855-1", "source": "GND"}], "variant_name": ["Landwirtschaftskammer für die Provinz Ostpreußen. Viehversicherungsverband", "Viehversicherungsverband der Landwirtschaftskammer für die Provinz Ostpreußen"], "preferred_name": "Viehversicherungsverband", "variant_access_point": ["Landwirtschaftskammer für die Provinz Ostpreußen. Viehversicherungsverband", "Viehversicherungsverband der Landwirtschaftskammer für die Provinz Ostpreußen"], "authorized_access_point": "Viehversicherungsverband", "biographical_information": ["Sitz: Königsberg"]} 1 +2024-09-11 09:02:52.998447 2024-09-11 09:02:52.998453 9024be5f-7f78-48b0-902a-3f537f2db267 {"md5": "7bd39a380ef5b58a590b9852ca4f04c3", "pid": "944825028", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1230429-3", "source": "GND"}], "preferred_name": "Observatorio Sismológico Vicente Inglada", "country_associated": "sp", "authorized_access_point": "Observatorio Sismológico Vicente Inglada. Alicante"} 1 +2024-09-11 09:02:53.05802 2024-09-11 09:02:53.058024 2c0ad15e-55ff-4600-a924-5db185a80525 {"md5": "209737b4f5614b1546cdef5b3be68030", "pid": "944923313", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5132947-5", "source": "GND"}], "variant_name": ["Akademija Nauk SSSR. Sibirskoe Otdelenie. Institut Gidrodinamiki", "Akademija Nauk SSSR. Institut Gidrodinamiki"], "preferred_name": "Institut Gidrodinamiki", "date_of_termination": "XX.XX.1980", "variant_access_point": ["Akademija Nauk SSSR. Sibirskoe Otdelenie. Institut Gidrodinamiki", "Akademija Nauk SSSR. Institut Gidrodinamiki"], "date_of_establishment": "07.06.1957", "authorized_access_point": "Institut Gidrodinamiki. Nowosibirsk"} 1 +2024-09-11 09:02:53.113101 2024-09-11 09:02:53.113105 998d5039-16d1-4602-abd3-63f60d8f3d7e {"md5": "20d4dce752570a4d2b62f3e11fc6fb0f", "pid": "944929052", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5133476-8", "source": "GND"}], "preferred_name": "European Symposium on Biomaterials, 4", "country_associated": "it", "authorized_access_point": "European Symposium on Biomaterials, 4, 1991, Siena"} 1 +2024-09-11 09:02:53.172299 2024-09-11 09:02:53.172303 8ca86088-974d-4f7c-bdba-22f66231b515 {"md5": "5b5c665a95c4b336bd864b8c172f05f4", "pid": "944929710", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5133540-2", "source": "GND"}], "variant_name": ["Colloquium on \\"Automotive Sensors\\"", "Automotive Sensors"], "preferred_name": "Colloquium on Automotive Sensors", "country_associated": "xxk", "variant_access_point": ["Colloquium on \\"Automotive Sensors\\", 1992, Solihull", "Automotive Sensors, 1992, Solihull"], "authorized_access_point": "Colloquium on Automotive Sensors, 1992, Solihull"} 1 +2024-09-11 09:02:53.229661 2024-09-11 09:02:53.229665 ef4fab1a-e978-4893-9d0d-cfce7ddeee8a {"md5": "283e25bd9c24f3dd7983dd5795924557", "pid": "944941710", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5134669-2", "source": "GND"}], "preferred_name": "International Conference on Veterinary Medicines in Europe, 2", "country_associated": "be", "authorized_access_point": "International Conference on Veterinary Medicines in Europe, 2, 1993, Brüssel"} 1 +2024-09-11 09:02:53.294236 2024-09-11 09:02:53.29424 8303ab0f-e3f6-4071-9a60-282d22fccf27 {"md5": "52332b56c47e8ca5a1886e820a4ddc08", "pid": "94495068X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5135494-9", "source": "GND"}], "variant_name": ["REAC TS International Conference The Medical Basis for Radiation Accident Preparedness", "International Conference on the Medical Basis for Radiation Accident Preparedness", "Medical Basis for Radiation Accident Preparedness"], "preferred_name": "International Conference The Medical Basis for Radiation Accident Preparedness", "country_associated": "xxu", "variant_access_point": ["REAC TS International Conference The Medical Basis for Radiation Accident Preparedness, 1979, Oak Ridge, Tenn.", "International Conference on the Medical Basis for Radiation Accident Preparedness, 1979, Oak Ridge, TN", "Medical Basis for Radiation Accident Preparedness, 1979, Oak Ridge, TN"], "authorized_access_point": "International Conference The Medical Basis for Radiation Accident Preparedness, 1979, Oak Ridge, Tenn."} 1 +2024-09-11 09:02:53.358047 2024-09-11 09:02:53.358051 4cd9ee46-3599-4ec0-ae8c-2ce0c7ab5d1f {"md5": "6120c2f18ce19b4648f651973f63ba69", "pid": "944951910", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5135611-9", "source": "GND"}], "variant_name": ["Fuji Conference, 19"], "preferred_name": "International Conference on Business History, 19", "country_associated": "ja", "variant_access_point": ["Fuji Conference, 19, 1992, Fuji, Shizuoka-ken"], "authorized_access_point": "International Conference on Business History, 19, 1992, Fuji, Shizuoka-ken"} 1 +2024-09-11 09:02:53.4208 2024-09-11 09:02:53.420803 a46d2a67-6da6-4a56-b79c-f4a584605a9d {"md5": "b7436426546cc569ee0df7be48fd8bee", "pid": "944952976", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5135709-4", "source": "GND"}], "variant_name": ["ORACLE-Anwenderkonferenz, 4"], "preferred_name": "Deutsche ORACLE-Anwenderkonferenz, 4", "country_associated": "gw", "variant_access_point": ["ORACLE-Anwenderkonferenz, 4, 1991, Hamburg"], "authorized_access_point": "Deutsche ORACLE-Anwenderkonferenz, 4, 1991, Hamburg"} 1 +2024-09-11 09:02:53.47467 2024-09-11 09:02:53.474674 d7322baa-7bc3-4d34-8f56-e3dbe2d958fe {"md5": "00125f8df4a8b27e3674425d2a38b9bb", "pid": "944953395", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5135745-8", "source": "GND"}], "preferred_name": "Škola-Seminar po Kompleksam Programm Matematičeskoj Fiziki", "authorized_access_point": "Škola-Seminar po Kompleksam Programm Matematičeskoj Fiziki, 1988, Abakan"} 1 +2024-09-11 09:02:53.537301 2024-09-11 09:02:53.537304 f083f653-9abc-483e-9b96-9e361ac96266 {"md5": "70e93e34145267dabda3fce720d117c9", "pid": "944963749", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5136698-8", "source": "GND"}], "variant_name": ["Naučno-Praktičeskaja Konferencija po Šlakoščeločnym Vjažuščim Materialam, 3", "All-Union Scientific and Practical Conference on Alkali-Slag Binding Agents, 3", "All-Union Scientific and Practical Conference on Alkali Slag Binding Agents, 3", "Scientific and Practical Conference on Alkali-Slag Binding Agents, 3", "Scientific and Practical Conference on Alkali Slag Binding Agents, 3", "Wissenschaftlich-Technische Unionstagung über Alkalischlackenbindemittel, 3"], "preferred_name": "Vsesojuznaja Naučno-Praktičeskaja Konferencija po Šlakoščeločnym Vjažuščim Materialam, 3", "variant_access_point": ["Naučno-Praktičeskaja Konferencija po Šlakoščeločnym Vjažuščim Materialam, 3, 1989, Kiew", "All-Union Scientific and Practical Conference on Alkali-Slag Binding Agents, 3, 1989, Kiew", "All-Union Scientific and Practical Conference on Alkali Slag Binding Agents, 3, 1989, Kiew", "Scientific and Practical Conference on Alkali-Slag Binding Agents, 3, 1989, Kiew", "Scientific and Practical Conference on Alkali Slag Binding Agents, 3, 1989, Kiew", "Wissenschaftlich-Technische Unionstagung über Alkalischlackenbindemittel, 3, 1989, Kiew"], "authorized_access_point": "Vsesojuznaja Naučno-Praktičeskaja Konferencija po Šlakoščeločnym Vjažuščim Materialam, 3, 1989, Kiew"} 1 +2024-09-11 09:02:53.600913 2024-09-11 09:02:53.600916 d3cfcb3a-7931-4a2e-a266-8e5a36796ad5 {"md5": "79f3957429b20b7114a6a6a70523ddd5", "pid": "944971318", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5137431-6", "source": "GND"}], "variant_name": ["Annual Conference on Software Engineering Environments, 3"], "preferred_name": "Conference on Software Engineering Environments, 3", "country_associated": "xxk", "variant_access_point": ["Annual Conference on Software Engineering Environments, 3, 1987, Keele"], "authorized_access_point": "Conference on Software Engineering Environments, 3, 1987, Keele"} 1 +2024-09-11 09:02:53.661536 2024-09-11 09:02:53.661539 c9aba549-89b6-42bc-a959-4e93807b2f77 {"md5": "9d653b9f70f5cd7dd5e0cd9c30ba0664", "pid": "944978177", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5138100-X", "source": "GND"}], "variant_name": ["Soveščanie po Chimii Neorganičeskich Gidridov", "All-Union Conference on the Chemistry of the Inorganic Hydrides", "Conference on the Chemistry of the Inorganic Hydrides"], "preferred_name": "Vsesojuznoe Soveščanie po Chimii Neorganičeskich Gidridov", "variant_access_point": ["Soveščanie po Chimii Neorganičeskich Gidridov, 1987, Duschanbe", "All-Union Conference on the Chemistry of the Inorganic Hydrides, 1987, Duschanbe", "Conference on the Chemistry of the Inorganic Hydrides, 1987, Duschanbe"], "authorized_access_point": "Vsesojuznoe Soveščanie po Chimii Neorganičeskich Gidridov, 1987, Duschanbe"} 1 +2024-09-11 09:02:53.714584 2024-09-11 09:02:53.714589 bb2e13d0-43f7-4ef0-8ae3-4b7645e0e0e4 {"md5": "1cfb17db8810d5f66b7e62a999ce01bf", "pid": "945028067", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2148867-8", "source": "GND"}], "variant_name": ["Konferenz International Congress on Intellectual Property Rights for Specialized Information, Knowledge and New Technologies", "Intellectual Property Rights for Specialized Information, Knowledge and New Technologies", "International Congress on Intellectual Property Rights for Specialized Information, Knowledge and New Technologies", "KnowRight Conference"], "preferred_name": "KnowRight", "country_associated": "au", "variant_access_point": ["Konferenz International Congress on Intellectual Property Rights for Specialized Information, Knowledge and New Technologies, 1995, Wien", "Intellectual Property Rights for Specialized Information, Knowledge and New Technologies, 1995, Wien", "International Congress on Intellectual Property Rights for Specialized Information, Knowledge and New Technologies, 1995, Wien", "KnowRight Conference, 1995, Wien"], "authorized_access_point": "KnowRight, 1995, Wien"} 1 +2024-09-11 09:02:53.770347 2024-09-11 09:02:53.77035 ac06b631-63ad-49f0-ab36-bb8e62036ca3 {"md5": "190385cf52cb47fd939a3b1c4a306502", "pid": "94504206X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5140558-1", "source": "GND"}], "preferred_name": "International Seminar Economy and Society in the Transformation of the World", "country_associated": "sp", "authorized_access_point": "International Seminar Economy and Society in the Transformation of the World, 1980, Madrid"} 1 +2024-09-11 09:02:53.825385 2024-09-11 09:02:53.825388 ac6037a8-820c-4c45-bf5b-40acf5846afe {"md5": "1370dc742a64db1475a2064ea572e940", "pid": "945045972", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5140923-9", "source": "GND"}], "variant_name": ["Loge Lessing zum Flammenden Stern", "Freimaurerloge, 700"], "preferred_name": "Freimaurerloge Lessing zum Flammenden Stern", "variant_access_point": ["Loge Lessing zum Flammenden Stern. München", "Freimaurerloge, 700"], "date_of_establishment": "1924", "authorized_access_point": "Freimaurerloge Lessing zum Flammenden Stern. München"} 1 +2024-09-11 09:02:53.9053 2024-09-11 09:02:53.905305 1d011bd8-e922-4781-a0a0-d5d86bbc039f {"md5": "1f7e9351ea6b4df82866dccff1cfc220", "pid": "945048653", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5141172-6", "source": "GND"}], "variant_name": ["Japan-China Bilateral Conference on Molten Salt Chemistry and Technology, 4"], "preferred_name": "Japan China Bilateral Conference on Molten Salt Chemistry and Technology, 4", "country_associated": "ja", "variant_access_point": ["Japan-China Bilateral Conference on Molten Salt Chemistry and Technology, 4, 1992, Kyōto"], "authorized_access_point": "Japan China Bilateral Conference on Molten Salt Chemistry and Technology, 4, 1992, Kyōto"} 1 +2024-09-11 09:02:53.962999 2024-09-11 09:02:53.963003 9d116e81-4209-4dcf-ba7d-4e40b57654df {"md5": "c43637fd4f240cf181b18c5c15b6b1f1", "pid": "945073232", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5143540-8", "source": "GND"}], "preferred_name": "Seminar on Parallel Programming Systems", "country_associated": "ja", "authorized_access_point": "Seminar on Parallel Programming Systems, 1992, Tokio"} 1 +2024-09-11 09:03:01.655461 2024-09-11 09:03:01.655464 e0ec0582-9c01-41bf-97db-1cda59147ab2 {"md5": "495751a735414afa8705d614fc84f5c5", "pid": "952354527", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5252576-4", "source": "GND"}], "preferred_name": "Centro di Studi Storici della Chiesa", "country_associated": "it", "authorized_access_point": "Centro di Studi Storici della Chiesa. Bari"} 1 +2024-09-11 09:02:54.020657 2024-09-11 09:02:54.020661 ed9e9ec7-019a-4517-aeaa-368392d6106b {"md5": "f025ca59a58aad3433ca9c8ea6fbae73", "pid": "945074212", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5143635-8", "source": "GND"}], "variant_name": ["Soveščanie po Utilizacii Zološlakovych Otchodov"], "preferred_name": "Vsesojuznoe Soveščanie po Utilizacii Zološlakovych Otchodov", "country_associated": "ru", "variant_access_point": ["Soveščanie po Utilizacii Zološlakovych Otchodov, 1990, Sotschi-Dagomys"], "authorized_access_point": "Vsesojuznoe Soveščanie po Utilizacii Zološlakovych Otchodov, 1990, Sotschi-Dagomys"} 1 +2024-09-11 09:02:54.082188 2024-09-11 09:02:54.082193 610f162b-2f23-4244-80e9-5618873952c9 {"md5": "9d64e4ac2b4a9561a991b845f96cefa1", "pid": "945079893", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5144189-5", "source": "GND"}], "preferred_name": "Conference Changes in Scholarly Communication Patterns: Australia and the Electronic Library", "country_associated": "at", "authorized_access_point": "Conference Changes in Scholarly Communication Patterns: Australia and the Electronic Library, 1993, Canberra"} 1 +2024-09-11 09:02:54.152757 2024-09-11 09:02:54.15276 f1047732-8d6c-4b02-815c-840cca735edc {"md5": "6ff548352d74b627070e7faed4b4d02c", "pid": "945102313", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5146410-X", "source": "GND"}], "preferred_name": "Electronic Materials Conference", "country_associated": "xxu", "authorized_access_point": "Electronic Materials Conference, 1994, Boulder, Colo."} 1 +2024-09-11 09:02:54.209667 2024-09-11 09:02:54.209671 fe0f7b7b-2cfd-42fc-9dcc-307f731a7fee {"md5": "b54a25cc2a76a88b4197ea47e0aac30e", "pid": "945104138", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5146592-9", "source": "GND"}], "preferred_name": "Feed Manufacturers Conference, 27", "country_associated": "xxk", "authorized_access_point": "Feed Manufacturers Conference, 27, 1993, Nottingham"} 1 +2024-09-11 09:02:54.266906 2024-09-11 09:02:54.266909 343f9f02-4d35-44b5-99e8-54f04c4b0c74 {"md5": "693ecaae28232a1240bb389a4609f66f", "pid": "945107129", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5146891-8", "source": "GND"}], "variant_name": ["Timber Export Development Board", "GTEDB"], "preferred_name": "Ghana Timber Export Development Board", "country_associated": "gh", "variant_access_point": ["Timber Export Development Board. Ghana", "GTEDB. Abkuerzung"], "authorized_access_point": "Ghana Timber Export Development Board", "biographical_information": ["keine übergeordn. Kö. ermittelt"]} 1 +2024-09-11 09:02:54.32475 2024-09-11 09:02:54.324753 037d1272-0d18-4a60-ae8f-9d2ce5ed0e7a {"md5": "1183064a899b7644b7452908f0b75380", "pid": "94510877X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5147056-1", "source": "GND"}], "preferred_name": "Sicherheitsfachtagung Krankenhaus, 21", "authorized_access_point": "Sicherheitsfachtagung Krankenhaus, 21, 1994, Hannover"} 1 +2024-09-11 09:02:54.389964 2024-09-11 09:02:54.389968 d81cf4e2-5c60-4ca6-ae3c-f6649096cb2d {"md5": "3d6211f7607733fa7a57186978f822d2", "pid": "945118805", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5148059-1", "source": "GND"}], "variant_name": ["International Conference Bridges on the Danube", "International Conference on Bridges on the Danube, Vienna - Bratislava - Budapest, Sept. 1992"], "preferred_name": "International Conference on Bridges across the Danube", "country_associated": "au", "variant_access_point": ["International Conference Bridges on the Danube, 1992, Wien u.a.", "International Conference on Bridges on the Danube, Vienna - Bratislava - Budapest, Sept. 1992"], "authorized_access_point": "International Conference on Bridges across the Danube, 1992, Wien u.a."} 1 +2024-09-11 09:02:54.45943 2024-09-11 09:02:54.459434 276dae9d-6669-41ab-a154-7a7a17e2f002 {"md5": "4e7ba217d0b5424820edbc35b8d37045", "pid": "945462891", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2150083-6", "source": "GND"}], "variant_name": ["Verein der Dänischen Fischmehl- und Fischölindustrie", "Association of Fish Meal and Fish Oil Manufacturers in Denmark"], "preferred_name": "Foreningen for Danmarks Fiskemel- og Fiskeolieindustri", "country_associated": "dk", "variant_access_point": ["Verein der Dänischen Fischmehl- und Fischölindustrie", "Association of Fish Meal and Fish Oil Manufacturers in Denmark"], "authorized_access_point": "Foreningen for Danmarks Fiskemel- og Fiskeolieindustri", "biographical_information": ["Sitz: København"]} 1 +2024-09-11 09:02:54.518676 2024-09-11 09:02:54.518679 98d374ad-be0c-4441-aab3-1b570f52ad55 {"md5": "3d5a674fe55e7aef5e7b0b6239877834", "pid": "945492308", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5149734-7", "source": "GND"}], "variant_name": ["Eureka Audiovisuel", "Audiovisuelles Eureka", "Eureka Audiovisioo", "Audiovizualnaja Evrika"], "preferred_name": "Eureka Audiovisual", "variant_access_point": ["Eureka Audiovisuel", "Audiovisuelles Eureka", "Eureka Audiovisioo", "Audiovizualnaja Evrika"], "date_of_establishment": "1989", "authorized_access_point": "Eureka Audiovisual", "biographical_information": ["Sitz: Brüssel"]} 1 +2024-09-11 09:02:54.588502 2024-09-11 09:02:54.588506 82127696-be1c-4cf4-b566-1cd554a79bf0 {"md5": "a3f1fcf816baf53b4bb94134a4f9554b", "pid": "945504853", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2150184-1", "source": "GND"}], "variant_name": ["IDF Consultation on Central and Eastern European Dairying, 3"], "preferred_name": "Consultation on Central and Eastern European Dairying, 3", "country_associated": "pl", "variant_access_point": ["IDF Consultation on Central and Eastern European Dairying, 3, 1994, Warschau"], "authorized_access_point": "Consultation on Central and Eastern European Dairying, 3, 1994, Warschau"} 1 +2024-09-11 09:02:54.645829 2024-09-11 09:02:54.645833 9bd30229-a37d-44d8-a664-e59aa7aa9da1 {"md5": "d63c391a8a5d18976846a76b1ebc1280", "pid": "945555059", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5151056-X", "source": "GND"}], "variant_name": ["International Symposium on Electrets, 8", "IEEE International Symposium on Electrets, 8"], "preferred_name": "ISE, 8", "country_associated": "fr", "variant_access_point": ["International Symposium on Electrets, 8, 1994, Paris", "IEEE International Symposium on Electrets, 8, 1994, Paris"], "authorized_access_point": "ISE, 8, 1994, Paris"} 1 +2024-09-11 09:02:54.705409 2024-09-11 09:02:54.705412 47961856-f7ef-491c-95e6-92d4217bf9ed {"md5": "3d9910a4f79cd45623b90cfac301243c", "pid": "945628889", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5151715-2", "source": "GND"}], "variant_name": ["Colloque National de Magnetisme", "Magnetisme"], "preferred_name": "Colloque National de Magnetisme", "country_associated": "fr", "variant_access_point": ["Colloque National de Magnetisme, 1957, Strasbourg", "Magnetisme, 1957, Strasbourg"], "authorized_access_point": "Colloque National de Magnetisme, 1957, Straßburg"} 1 +2024-09-11 09:02:54.773054 2024-09-11 09:02:54.773057 ac8665a9-94cd-46f2-8238-b787dace0bfe {"md5": "63c98b45febb0e008d0d7402ac21d601", "pid": "945633696", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5152169-6", "source": "GND"}], "variant_name": ["Verkehrsamt"], "preferred_name": "Kirchheim. Verkehrsamt", "country_associated": "gw", "variant_access_point": ["Verkehrsamt. Kirchheim unter Teck"], "authorized_access_point": "Kirchheim. Teck. Verkehrsamt"} 1 +2024-09-11 09:02:54.833753 2024-09-11 09:02:54.833757 96c0b02b-3964-4e80-82bb-c2e3f32ee690 {"md5": "84afe01eac1f9507a01bd046a71c0f0c", "pid": "945708300", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5152870-8", "source": "GND"}], "preferred_name": "Jugendbund für Entschiedenes Christentum. Rhein-Main-Verband", "authorized_access_point": "Jugendbund für Entschiedenes Christentum. Rhein-Main-Verband"} 1 +2024-09-11 09:02:54.895844 2024-09-11 09:02:54.895848 402da8c4-3ced-4d26-82b1-402d0787e5a8 {"md5": "a0da77643d01652846f6b02491398ef8", "pid": "945710097", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5153047-8", "source": "GND"}], "variant_name": ["Ensemble Vocal Audite Nova de Paris", "Chorale Audite Nova de Paris", "Audite Nova"], "preferred_name": "Ensemble Vocal Audite Nova", "country_associated": "fr", "variant_access_point": ["Ensemble Vocal Audite Nova de Paris", "Chorale Audite Nova de Paris", "Audite Nova"], "authorized_access_point": "Ensemble Vocal Audite Nova"} 1 +2024-09-11 09:02:54.948439 2024-09-11 09:02:54.948443 5de3db15-66a0-45bd-899e-787380a603b9 {"md5": "6dbb90d8186f4895847c181416f0b8fc", "pid": "945763395", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5154603-6", "source": "GND"}], "variant_name": ["Doesburg Archive"], "preferred_name": "Theo van Doesburg Archive", "country_associated": "ne", "variant_access_point": ["Doesburg Archive. Den Haag"], "authorized_access_point": "Theo van Doesburg Archive. Den Haag"} 1 +2024-09-11 09:02:55.003356 2024-09-11 09:02:55.003359 19f6ae2f-cb49-452c-a727-0441fb6a4e5d {"md5": "70732fd1a771bf4beb88ac1e4329d4f6", "pid": "945817428", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5155622-4", "source": "GND"}], "preferred_name": "Zwecksparverband für Eigenheime", "authorized_access_point": "Zwecksparverband für Eigenheime. Aachen"} 1 +2024-09-11 09:02:55.057151 2024-09-11 09:02:55.057153 4a170b13-1672-458e-9954-f29715666b6b {"md5": "7cfe5a53e0f14eeba427ca7984fb3b6b", "pid": "945951590", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1232700-1", "source": "GND"}], "preferred_name": "Study Week Science for Development in a Solidarity Framework", "country_associated": "it", "authorized_access_point": "Study Week Science for Development in a Solidarity Framework, 1989, Rom"} 1 +2024-09-11 09:02:55.114836 2024-09-11 09:02:55.11484 d81b8591-a4f4-46d0-8c5c-2f18dc6db15c {"md5": "cdc48ca9da535b0ce25c8f1cf5d6e3d1", "pid": "946180822", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2152159-1", "source": "GND"}], "variant_name": ["Exhibition Marlene Dumas, Models"], "preferred_name": "Ausstellung Marlene Dumas, Models", "variant_access_point": ["Exhibition Marlene Dumas, Models, 1995 - 1996, Salzburg u.a."], "authorized_access_point": "Ausstellung Marlene Dumas, Models, 1995 - 1996, Salzburg u.a."} 1 +2024-09-11 09:02:55.171546 2024-09-11 09:02:55.171549 065ace94-07d0-4471-a650-6878ae8ed17c {"md5": "b3dcdcefe890ff52ec498574f975bd7c", "pid": "946246734", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5159519-9", "source": "GND"}], "preferred_name": "Victoria and Albert Museum. Conservation Department", "country_associated": "xxk", "authorized_access_point": "Victoria and Albert Museum. Conservation Department"} 1 +2024-09-11 09:02:55.230158 2024-09-11 09:02:55.230161 4cdd22e5-99c6-43a7-9f71-f17f4175f408 {"md5": "e04b94c2f807130128f700983e1c9dc3", "pid": "946481911", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5161842-4", "source": "GND"}], "variant_name": ["Université Nancy 2. Centre d'Information et de Documentation Le Monde Grec Antique et Ses Zones de Contact", "Centre d'information et de documentation \\"Le monde grec antique et ses zones de contact\\""], "preferred_name": "Centre d'Information et de Documentation Le Monde Grec Antique et Ses Zones de Contact", "country_associated": "fr", "variant_access_point": ["Université Nancy 2. Centre d'Information et de Documentation Le Monde Grec Antique et Ses Zones de Contact", "Centre d'information et de documentation \\"Le monde grec antique et ses zones de contact\\". Nancy"], "authorized_access_point": "Centre d'Information et de Documentation Le Monde Grec Antique et Ses Zones de Contact"} 1 +2024-09-11 09:02:55.285927 2024-09-11 09:02:55.28593 637db628-6024-49ff-a9d8-18622efb2c40 {"md5": "3e312af7b5c539a1240d0d41c80926af", "pid": "946487537", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2153139-0", "source": "GND"}], "preferred_name": "Archigram Archives", "country_associated": "xxk", "authorized_access_point": "Archigram Archives. London"} 1 +2024-09-11 09:02:55.343653 2024-09-11 09:02:55.343657 62a867b9-6530-413c-81be-eb44113f2717 {"md5": "787ce72c8611e990bf64e8776b625c2b", "pid": "946515468", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2153260-6", "source": "GND"}], "variant_name": ["Marketing-Tag, 10"], "preferred_name": "Deutscher Marketing-Tag, 10", "country_associated": "gw", "variant_access_point": ["Marketing-Tag, 10, 1982, Saarbrücken. Deutsche Marketing-Vereinigung"], "authorized_access_point": "Deutscher Marketing-Tag, 10, 1982, Saarbrücken"} 1 +2024-09-11 09:02:55.400739 2024-09-11 09:02:55.400743 aafd2d5c-47fd-4e7d-bd5f-7404ff1c0bef {"md5": "71eea5918798cef38a4d60fd5100aac0", "pid": "946592039", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1233422-4", "source": "GND"}], "variant_name": ["Down Syndrome Research Conference"], "preferred_name": "International Down Syndrome Research Conference", "country_associated": "xxu", "variant_access_point": ["Down Syndrome Research Conference, 1994, Charleston, SC"], "authorized_access_point": "International Down Syndrome Research Conference, 1994, Charleston, SC"} 1 +2024-09-11 09:02:55.456306 2024-09-11 09:02:55.45631 3476e4f9-d901-426e-8788-1b895620b403 {"md5": "f4223dcd89200e663fe828897cf6ee5d", "pid": "946595259", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1600884-4", "source": "GND"}], "variant_name": ["WCCE, 6", "IFIP World Conference on Computers in Education, 6", "World Conference on Computers in Education, Liberating the Learner"], "preferred_name": "World Conference on Computers in Education, 6", "country_associated": "xxk", "variant_access_point": ["WCCE, 6, 1995, Birmingham", "IFIP World Conference on Computers in Education, 6, 1995, Birmingham", "World Conference on Computers in Education, Liberating the Learner, 1995, Birmingham"], "authorized_access_point": "World Conference on Computers in Education, 6, 1995, Birmingham"} 1 +2024-09-11 09:02:55.529323 2024-09-11 09:02:55.529327 7f7bf352-baf2-4212-8618-dad6e3a7a6e3 {"md5": "bb58c00e92be69ef8aad796d1d89a763", "pid": "946597189", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1700884-0", "source": "GND"}], "preferred_name": "Syndicat d'Agglomération Nouvelle du Val Maubuée", "authorized_access_point": "Syndicat d'Agglomération Nouvelle du Val Maubuée"} 1 +2024-09-11 09:02:55.586263 2024-09-11 09:02:55.586267 8f89ec7e-4bca-47ca-a1dc-3c50f51c421a {"md5": "17043812d0299141f1d919967072f49a", "pid": "946686203", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5162807-7", "source": "GND"}], "preferred_name": "International Workshop on Relativistic Aspects of Nuclear Physics, 3", "country_associated": "bl", "authorized_access_point": "International Workshop on Relativistic Aspects of Nuclear Physics, 3, 1993, Rio de Janeiro"} 1 +2024-09-11 09:02:55.647881 2024-09-11 09:02:55.647883 db6c5bf5-1fb4-4c8a-aaab-f206cf2a2af6 {"md5": "c58d23db10dc91cc18b2261288c88257", "pid": "946688397", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5163025-4", "source": "GND"}], "preferred_name": "International Symposium on Adenosine", "country_associated": "xxu", "authorized_access_point": "International Symposium on Adenosine, 1982, Charlottesville, Va."} 1 +2024-09-11 09:02:55.702421 2024-09-11 09:02:55.702423 da53e8a5-f403-48c3-8c89-7774b6f3a083 {"md5": "7f6154b3ec9bb1099688cf5f0df8edb3", "pid": "946691215", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5163304-8", "source": "GND"}], "variant_name": ["Kommission für das Pestalozzistübchen in Zürich", "Kommission für das Pestalozzi-Stübchen", "Schweizerische Permanente Schulausstellung. Kommission für das Pestalozzistübchen"], "preferred_name": "Kommission für das Pestalozzistübchen", "country_associated": "sz", "variant_access_point": ["Kommission für das Pestalozzistübchen in Zürich. Unveraenderte Form", "Kommission für das Pestalozzi-Stübchen", "Schweizerische Permanente Schulausstellung. Zürich. Kommission für das Pestalozzistübchen"], "authorized_access_point": "Kommission für das Pestalozzistübchen"} 1 +2024-09-11 09:02:55.760255 2024-09-11 09:02:55.76026 e7e8f524-fe5b-4641-b875-3552a1e4be6c {"md5": "55567ce4e0a6828c0e1043f1d82b069f", "pid": "94673271X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2153851-7", "source": "GND"}], "variant_name": ["Wüstenrot-Versicherungs-AG"], "preferred_name": "Wüstenrot-Versicherungs-Aktiengesellschaft", "country_associated": "au", "variant_access_point": ["Wüstenrot-Versicherungs-AG. Salzburg"], "authorized_access_point": "Wüstenrot-Versicherungs-Aktiengesellschaft. Salzburg"} 1 +2024-09-11 09:02:55.823168 2024-09-11 09:02:55.823171 37c00f3a-35dd-4bd3-bc62-5cdfa62e5b89 {"md5": "f678ab1841b7323f88a9401284e8be3d", "pid": "946741077", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5164017-X", "source": "GND"}], "variant_name": ["Technical University", "Universitatea Tehnică din Cluj-Napoca", "Technical University of Cluj-Napoca"], "preferred_name": "Universitatea Tehnică", "country_associated": "rm", "variant_access_point": ["Technical University. Klausenburg", "Universitatea Tehnică din Cluj-Napoca", "Technical University of Cluj-Napoca"], "authorized_access_point": "Universitatea Tehnică. Klausenburg"} 1 +2024-09-11 09:02:55.878193 2024-09-11 09:02:55.878196 bdb31eed-c5e6-4a48-898a-6ed153585b54 {"md5": "aaf13b04b7d3d1b8414eeee222eb0d84", "pid": "94687400X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5164689-4", "source": "GND"}], "preferred_name": "Sangamon State University", "country_associated": "xxu", "date_of_termination": "1995", "date_of_establishment": "1969", "authorized_access_point": "Sangamon State University"} 1 +2024-09-11 09:02:55.930851 2024-09-11 09:02:55.930854 526cacba-380a-44a5-b200-0060d5d50064 {"md5": "80fb37f5f461e8eaec5d76e4a4a6df2d", "pid": "946875715", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5164859-3", "source": "GND"}], "preferred_name": "Workshop on AIDS", "country_associated": "tz", "authorized_access_point": "Workshop on AIDS, 1989, Sengerema"} 1 +2024-09-11 09:02:55.996314 2024-09-11 09:02:55.996318 d96e4447-fdd5-48b8-abab-5391008ac9f9 {"md5": "c8152d7669d5d8af56c786a0796f9aa6", "pid": "946923477", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5165694-2", "source": "GND"}], "variant_name": ["Sächsische Industrie-Schule", "Industrie-Schule"], "preferred_name": "Königlich Sächsische Industrie-Schule", "date_of_termination": "23.06.1903", "variant_access_point": ["Sächsische Industrie-Schule. Plauen", "Industrie-Schule. Plauen"], "date_of_establishment": "XX.XX.1892", "authorized_access_point": "Königlich Sächsische Industrie-Schule. Plauen"} 1 +2024-09-11 09:03:35.904907 2024-09-11 09:03:35.90491 b53930d4-5177-43f6-aac8-73c2a150f24c {"md5": "30b01007f99bdb823d30a0f867fb3cbf", "pid": "988430940", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10202132-6", "source": "GND"}], "preferred_name": "Zürcher Festspiele", "country_associated": "sz", "authorized_access_point": "Zürcher Festspiele, 2008, Zürich"} 1 +2024-09-11 09:02:56.061756 2024-09-11 09:02:56.06176 0a43344b-b5a7-44a8-9bb3-da122cf755a8 {"md5": "91dc6c2e16bc4d6beaa41d8f18846c2b", "pid": "947105735", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5166469-0", "source": "GND"}], "preferred_name": "Deutscher Gewerkschaftsbund. Kreis Emsland", "country_associated": "gw", "authorized_access_point": "Deutscher Gewerkschaftsbund. Deutschland, Bundesrepublik. Kreis Emsland", "biographical_information": ["Sitz: Lingen (Ems) ; ab 1981 ehem. Landkreis Meppen dem DGB-Kreis Aschendorf-Hümmling zugeordnet"]} 1 +2024-09-11 09:02:56.116519 2024-09-11 09:02:56.116523 a8dab595-6bab-4e03-8584-329181315ebc {"md5": "524019b817eebe9a478b2a7d71d97b4d", "pid": "947202900", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2155212-5", "source": "GND"}], "variant_name": ["International Hans Wolfgang Nürnberg Memorial Symposium on \\"Metal Compounds in Environment and Life\\", 6", "Metal Compounds in Environment and Life, 6", "International Conference on \\"Metal Compounds in Environment and Life\\", 6", "International Symposium on \\"Metal Compounds in Environment and Life\\", 6", "International IAEAC-Conference on \\"Metal Compounds in Environment and Life\\", 6", "Hans Wolfgang Nürnberg Memorial Symposium on \\"Metal Compounds in Environment and Life\\", 6"], "preferred_name": "International Hans Wolfgang Nürnberg Memorial Symposium on Metal Compounds in Environment and Life, 6", "country_associated": "gw", "variant_access_point": ["International Hans Wolfgang Nürnberg Memorial Symposium on \\"Metal Compounds in Environment and Life\\", 6, 1995, Jülich", "Metal Compounds in Environment and Life, 6, 1995, Jülich", "International Conference on \\"Metal Compounds in Environment and Life\\", 6, 1995, Jülich", "International Symposium on \\"Metal Compounds in Environment and Life\\", 6, 1995, Jülich", "International IAEAC-Conference on \\"Metal Compounds in Environment and Life\\", 6, 1995, Jülich", "Hans Wolfgang Nürnberg Memorial Symposium on \\"Metal Compounds in Environment and Life\\", 6, 1995, Jülich"], "authorized_access_point": "International Hans Wolfgang Nürnberg Memorial Symposium on Metal Compounds in Environment and Life, 6, 1995, Jülich"} 1 +2024-09-11 09:02:56.172905 2024-09-11 09:02:56.17291 6f5fe45b-bf29-41d1-9e3b-b3b749b39d79 {"md5": "1200e1ca8116fd0285339b8d2b8ad9fc", "pid": "947434348", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5169350-1", "source": "GND"}], "variant_name": ["Japanese Geotechnical Society", "JGS", "JSSMFE", "Geotechnical Society"], "preferred_name": "Jiban Kōgakkai", "country_associated": "ja", "variant_access_point": ["Japanese Geotechnical Society", "JGS. Abkuerzung", "JSSMFE. Abkuerzung", "Geotechnical Society. Japan"], "parallel_access_point": ["地盤工学会"], "authorized_access_point": "Jiban Kōgakkai"} 1 +2024-09-11 09:02:56.244783 2024-09-11 09:02:56.244786 e55cb1a6-a154-4820-8d3f-87d9e7a2f0be {"md5": "7c59c1920f1a028065d1ef36bde80b18", "pid": "947711708", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2156552-1", "source": "GND"}], "preferred_name": "Französische Woche", "country_associated": "gw", "authorized_access_point": "Französische Woche, 1979, Saarbrücken"} 1 +2024-09-11 09:02:56.309655 2024-09-11 09:02:56.309659 7b6443be-516f-433b-b873-4a99d15d869b {"md5": "b5bfa329f3b769a2aeef879f3297eb0d", "pid": "94772530X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5172059-0", "source": "GND"}], "variant_name": ["Underprissättningsutredningen", "Schweden. Näringsdepartementet. Underprissättningsutredningen"], "preferred_name": "Schweden. Underprissättningsutredningen", "country_associated": "sw", "variant_access_point": ["Underprissättningsutredningen. Schweden", "Schweden. Näringsdepartementet. Underprissättningsutredningen"], "authorized_access_point": "Schweden. Underprissättningsutredningen"} 1 +2024-09-11 09:02:56.362969 2024-09-11 09:02:56.362971 f49ff474-b180-4693-9e89-4663f2a197a5 {"md5": "e45f72b4da193d6d1814ba6dab83f61a", "pid": "947731687", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5172657-9", "source": "GND"}], "variant_name": ["Kalkınma Vakfı", "Er-Vak"], "preferred_name": "Erzurum Kalkınma Vakfı", "country_associated": "tu", "variant_access_point": ["Kalkınma Vakfı. Erzurum", "Er-Vak"], "authorized_access_point": "Erzurum Kalkınma Vakfı"} 1 +2024-09-11 09:02:56.418306 2024-09-11 09:02:56.41831 973db62f-f859-41a8-ade1-abf87d2aadf0 {"md5": "10a274a1c2e6f163d4bc3c51ec51195a", "pid": "947742956", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5173669-X", "source": "GND"}], "preferred_name": "Millennium of Christianity in Ukraine Conferences", "authorized_access_point": "Millennium of Christianity in Ukraine Conferences, 1986 - 1987"} 1 +2024-09-11 09:02:56.472962 2024-09-11 09:02:56.472965 0c78a1a7-764f-4969-8032-5462829d050f {"md5": "09780e7261031962b837bdeae43ab4c9", "pid": "947854517", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5174826-5", "source": "GND"}], "variant_name": ["Choir of Saint Martin", "Saint Martin Choir"], "preferred_name": "Sint-Maartenkoor", "country_associated": "be", "variant_access_point": ["Choir of Saint Martin. Hasselt, Albertkanal", "Saint Martin Choir. Hasselt, Albertkanal"], "authorized_access_point": "Sint-Maartenkoor. Hasselt, Albertkanal"} 1 +2024-09-11 09:02:56.529116 2024-09-11 09:02:56.52912 88e30220-8acd-4544-b113-2168263aa75d {"md5": "ade430d8231859bed187d0f73ed65ca5", "pid": "947854789", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5174851-4", "source": "GND"}], "variant_name": ["Arbeitsgemeinschaft für Vollwertige Ernährung in der Gemeinschaftsverpflegung"], "preferred_name": "Stuttgarter Arbeitsgemeinschaft für Vollwertige Ernährung in der Gemeinschaftsverpflegung", "country_associated": "gw", "variant_access_point": ["Arbeitsgemeinschaft für Vollwertige Ernährung in der Gemeinschaftsverpflegung. Stuttgart"], "authorized_access_point": "Stuttgarter Arbeitsgemeinschaft für Vollwertige Ernährung in der Gemeinschaftsverpflegung"} 1 +2024-09-11 09:02:56.590505 2024-09-11 09:02:56.590508 a66f0b48-b6c2-49e2-8293-8d8a9c235ab4 {"md5": "aae04ac13d20c7de3c0db7370f3b2216", "pid": "947862765", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5175596-8", "source": "GND"}], "variant_name": ["Tomo Mano Namelio Bibliotekėlė"], "preferred_name": "Tomo Mano Namelio Bibliotekėlė", "country_associated": "li", "variant_access_point": ["Tomo Mano Namelio Bibliotekėlė. Neringa"], "authorized_access_point": "Tomo Mano Namelio Bibliotekėlė. Nida"} 1 +2024-09-11 09:02:56.647657 2024-09-11 09:02:56.647661 713b949a-2a8a-402c-958e-6adb404a573b {"md5": "b3626553f62e36f46636923aa8030493", "pid": "948041838", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2157474-1", "source": "GND"}], "variant_name": ["VfB", "Verein für Bewegungsspiele", "VfB", "VfB 1946", "Verein für Bewegungsspiele Neunzehnhundertsechsundsechzig", "VfB 1946", "Verein für Bewegungsspiele Neunzehnhundertsechsundsechzig", "Verein für Bewegungsspiele e.V. Jagstheim 1946", "VfB 1946 Jagstheim", "VfB Jagstheim", "Verein für Bewegungsspiele Jagstheim"], "preferred_name": "Verein für Bewegungsspiele", "country_associated": "gw", "variant_access_point": ["VfB. Jagstheim, Crailsheim", "Verein für Bewegungsspiele. Crailsheim-Jagstheim", "VfB. Crailsheim-Jagstheim", "VfB 1946. Jagstheim, Crailsheim", "Verein für Bewegungsspiele Neunzehnhundertsechsundsechzig. Jagstheim, Crailsheim", "VfB 1946. Crailsheim", "Verein für Bewegungsspiele Neunzehnhundertsechsundsechzig. Crailsheim", "Verein für Bewegungsspiele e.V. Jagstheim 1946", "VfB 1946 Jagstheim", "VfB Jagstheim", "Verein für Bewegungsspiele Jagstheim. Ehemalige Vorzugsbenennung SWD"], "authorized_access_point": "Verein für Bewegungsspiele. Jagstheim, Crailsheim"} 1 +2024-09-11 09:02:56.706283 2024-09-11 09:02:56.706287 94ce1a86-5371-4adb-adcb-d8b5f2464e55 {"md5": "0ff5ac89ed3be2f79159a3a7c02b3f7a", "pid": "94813142X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5176991-8", "source": "GND"}], "preferred_name": "Symposium Interactions between the Auditory and Mauthner Cell Systems", "country_associated": "xxc", "authorized_access_point": "Symposium Interactions between the Auditory and Mauthner Cell Systems, 1992, Montréal"} 1 +2024-09-11 09:02:56.773162 2024-09-11 09:02:56.773166 31584cff-d1b9-4e72-9e60-490917747ba5 {"md5": "1896cf88a7b4942a4953e9081915f19a", "pid": "94813514X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5177346-6", "source": "GND"}], "variant_name": ["Fachtagung Netzregelung, Regelungs- und Optimierungskonzepte für den Koordinierten Kraftwerks- und Netzbetrieb"], "preferred_name": "Fachtagung Netzregelung, 3", "variant_access_point": ["Fachtagung Netzregelung, Regelungs- und Optimierungskonzepte für den Koordinierten Kraftwerks- und Netzbetrieb, 1996, Berlin"], "authorized_access_point": "Fachtagung Netzregelung, 3, 1996, Berlin"} 1 +2024-09-11 09:02:56.838235 2024-09-11 09:02:56.838239 94d27676-b0cd-4d3d-8580-192857a91970 {"md5": "5b27d3e58b0fbf953eafc5e865fb46e3", "pid": "948139579", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5177770-8", "source": "GND"}], "variant_name": ["International Symposium on Chemical Reaction Engineering, 14"], "preferred_name": "ISCRE, 14", "country_associated": "be", "variant_access_point": ["International Symposium on Chemical Reaction Engineering, 14, 1996, Brügge"], "authorized_access_point": "ISCRE, 14, 1996, Brügge"} 1 +2024-09-11 09:02:56.892145 2024-09-11 09:02:56.892149 d8d8f187-6899-4513-ba44-29c8dfb7bdef {"md5": "a02715715a4f60dafdc81c504e1b8eaa", "pid": "94814906X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2157694-4", "source": "GND"}], "variant_name": ["Erwin-Riesch-Symposium, 7", "Riesch-Symposium, 7", "Westerland Conference, 7", "Westerland Conference (Westerländer Gespräch) to the Memory of Professor Dr. Med. Erich Witzleb (1924 - 1991)"], "preferred_name": "Westerländer Gespräch, 7", "country_associated": "gw", "variant_access_point": ["Erwin-Riesch-Symposium, 7, 1992, Westerland", "Riesch-Symposium, 7, 1992, Westerland. Erwin-Riesch-Stiftung zur Förderung der Wissenschaftlichen Forschung", "Westerland Conference, 7, 1992, Westerland", "Westerland Conference (Westerländer Gespräch) to the Memory of Professor Dr. Med. Erich Witzleb (1924 - 1991), 1992, Westerland"], "authorized_access_point": "Westerländer Gespräch, 7, 1992, Westerland"} 1 +2024-09-11 09:02:56.950563 2024-09-11 09:02:56.950567 42b9f6b2-8eba-43e9-8c29-073365568dac {"md5": "c961ffcb6274ded7b5e31c38ec80cf4d", "pid": "948166894", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5178327-7", "source": "GND"}], "variant_name": ["Landesbehörde Sachsen", "Landesbehörde der Volkspolizei Sachsen", "Deutschland. Volkspolizei. Landesbehörde Sachsen. Abteilung K", "Deutschland. Volkspolizei. Landesbehörde Sachsen. Dezernat F"], "preferred_name": "Deutschland. Volkspolizei. Landesbehörde Sachsen", "variant_access_point": ["Landesbehörde Sachsen. Deutschland, DDR, Volkspolizei", "Landesbehörde der Volkspolizei Sachsen. Deutschland, DDR", "Deutschland. DDR. Volkspolizei. Landesbehörde Sachsen. Abteilung K", "Deutschland. DDR. Volkspolizei. Landesbehörde Sachsen. Dezernat F"], "authorized_access_point": "Deutschland. DDR. Volkspolizei. Landesbehörde Sachsen"} 1 +2024-09-11 09:02:57.009903 2024-09-11 09:02:57.009906 d18f84d3-2b80-4510-8409-695f677621fb {"md5": "27f73f91df699995ac83756a407d5b95", "pid": "948240598", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5178731-3", "source": "GND"}], "preferred_name": "Düngerexport-Gesellschaft", "date_of_establishment": "1890", "authorized_access_point": "Düngerexport-Gesellschaft. Dresden"} 1 +2024-09-11 09:02:57.065899 2024-09-11 09:02:57.065904 e92844cf-dfd5-49da-9c40-f28456fedab6 {"md5": "cee3cf9ca64f96a693376ba86e96b0f4", "pid": "948258594", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5179072-5", "source": "GND"}], "variant_name": ["Wassertechnisches Seminar, 9"], "preferred_name": "Mülheimer Wassertechnisches Seminar, 9", "country_associated": "gw", "variant_access_point": ["Wassertechnisches Seminar, 9, 1995, Mülheim an der Ruhr"], "authorized_access_point": "Mülheimer Wassertechnisches Seminar, 9, 1995, Mülheim an der Ruhr"} 1 +2024-09-11 09:02:57.121451 2024-09-11 09:02:57.121453 28f979ac-c772-4bcb-9526-8de43cf10479 {"md5": "502efcac9b884471557e9248c633382b", "pid": "948301236", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1234795-4", "source": "GND"}], "variant_name": ["Kunst- und Antiquitätenmesse, 39"], "preferred_name": "Deutsche Kunst- und Antiquitätenmesse, 39", "variant_access_point": ["Kunst- und Antiquitätenmesse, 39, 1994, München"], "authorized_access_point": "Deutsche Kunst- und Antiquitätenmesse, 39, 1994, München"} 1 +2024-09-11 09:02:59.232443 2024-09-11 09:02:59.232447 73c3d2e7-c7e5-479c-8b7a-da96683ab6c9 {"md5": "9a0f948e220e0bb26a31506d72a91a97", "pid": "950710776", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5200666-9", "source": "GND"}], "variant_name": ["CRSR"], "preferred_name": "Centro Ricerche Socio-Religiose", "country_associated": "it", "variant_access_point": ["CRSR. Abkuerzung"], "authorized_access_point": "Centro Ricerche Socio-Religiose. Padua"} 1 +2024-09-11 09:02:57.185929 2024-09-11 09:02:57.185932 260884fc-5eb2-44fe-bc5a-af47589580f2 {"md5": "4199af68464426d12f5a606f45045488", "pid": "948314931", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5180218-1", "source": "GND"}], "variant_name": ["Genesungsheim Augustusbad bei Radeberg für Männer und Frauen", "Heimstätte für Männliche und Weibliche Genesende"], "preferred_name": "Genesungsheim Augustusbad", "variant_access_point": ["Genesungsheim Augustusbad bei Radeberg für Männer und Frauen. Liegau", "Heimstätte für Männliche und Weibliche Genesende. Liegau"], "authorized_access_point": "Genesungsheim Augustusbad. Liegau"} 1 +2024-09-11 09:02:57.241677 2024-09-11 09:02:57.241681 4ed350e1-b25b-4c58-b3a7-0d58d6fbb141 {"md5": "b0a0142861eee4c296a2a847d709051b", "pid": "948712244", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5181854-1", "source": "GND"}], "variant_name": ["Deutscher Gewerkschaftsbund. Landesbezirk Bayern. Kreis Kelheim"], "preferred_name": "Deutscher Gewerkschaftsbund. Kreis Kelheim", "country_associated": "gw", "variant_access_point": ["Deutscher Gewerkschaftsbund. Landesbezirk Bayern. Kreis Kelheim"], "authorized_access_point": "Deutscher Gewerkschaftsbund. Kreis Kelheim"} 1 +2024-09-11 09:02:57.30001 2024-09-11 09:02:57.300013 c23a0f0b-0810-4195-a147-33f3cd19578c {"md5": "b0ff9851425f97974a8d5d54b5247ecc", "pid": "948719370", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5182553-3", "source": "GND"}], "preferred_name": "Print Council of America", "country_associated": "xxu", "authorized_access_point": "Print Council of America"} 1 +2024-09-11 09:02:57.353931 2024-09-11 09:02:57.353935 ea0d7df3-b18d-4c27-bbb4-a0d438b1fe1d {"md5": "3aba26c7fe89f64bbeff556b7e204ab4", "pid": "94872367X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5182975-7", "source": "GND"}], "variant_name": ["Convento del Monte dei Cappuccini. Biblioteca Provinciale", "Biblioteca del Monte dei Cappuccini", "Biblioteca del Monte dei Cappuccini", "Biblioteca Monte Cappuccini", "Biblioteca Monte Capuccini. Turin", "Santa Maria al Monte. Kloster. Bibliothek", "Santa Maria al Monte. Klosterbibliothek", "Biblioteca Provinciale del Monte dei Cappuccini", "Biblioteca del Monte dei Cappuccini"], "preferred_name": "Biblioteca Provinciale del Monte dei Cappuccini", "country_associated": "it", "variant_access_point": ["Convento del Monte dei Cappuccini. Turin. Biblioteca Provinciale", "Biblioteca del Monte dei Cappuccini. Turin", "Biblioteca del Monte dei Cappuccini", "Biblioteca Monte Cappuccini", "Biblioteca Monte Capuccini. Turin", "Santa Maria al Monte. Kloster. Bibliothek", "Santa Maria al Monte. Klosterbibliothek", "Biblioteca Provinciale del Monte dei Cappuccini. Ehemalige Vorzugsbenennung SWD", "Biblioteca del Monte dei Cappuccini. Torino"], "authorized_access_point": "Biblioteca Provinciale del Monte dei Cappuccini. Turin"} 1 +2024-09-11 09:02:57.421606 2024-09-11 09:02:57.42161 5d2075be-3271-4ed0-9cef-70f32440c98e {"md5": "c5b115f42704c7ccef2be0108047ab0d", "pid": "948936266", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2159902-6", "source": "GND"}], "preferred_name": "Seminar Öko-Lobbying: Wie Anliegen von Europäischer Dimension Entstehen und Durchgesetzt Werden", "country_associated": "au", "authorized_access_point": "Seminar Öko-Lobbying: Wie Anliegen von Europäischer Dimension Entstehen und Durchgesetzt Werden, 1995, Wien"} 1 +2024-09-11 09:02:57.479254 2024-09-11 09:02:57.479258 3e7deb33-db9c-492d-a3fa-23eda2deb637 {"md5": "f2d2a32ed4333477a8bdceef6cd79a68", "pid": "94909613X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5184565-9", "source": "GND"}], "variant_name": ["Session Organized at 40th Anniversary of the Department of Geomorphology and Hydrology of Mountains and Uplands IGiPZ PAN"], "preferred_name": "Sesja Naukowa w 40-Lecie Zakładu Geomorfologii i Hydrologii Gór i Wyżyn IGiPZ PAN", "country_associated": "pl", "variant_access_point": ["Session Organized at 40th Anniversary of the Department of Geomorphology and Hydrology of Mountains and Uplands IGiPZ PAN, 1993, Krakau"], "authorized_access_point": "Sesja Naukowa w 40-Lecie Zakładu Geomorfologii i Hydrologii Gór i Wyżyn IGiPZ PAN, 1993, Krakau"} 1 +2024-09-11 09:02:57.543254 2024-09-11 09:02:57.543258 037c4c34-ff1b-405f-9342-cf812ae844ae {"md5": "28f0838231e4714555502989f7a6f2cb", "pid": "949101338", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5185055-2", "source": "GND"}], "variant_name": ["Regionala markvårdsenheten", "Styrelsen för internationell utveckling. Regional Soil Conservation Unit", "Regional Soil Conservation Unit", "RSCU", "SIDA's Regionala markvårdsenheten", "SIDA's Regional Soil Conservation Unit"], "preferred_name": "Styrelsen för internationell utveckling. Regionala markvårdsenheten", "country_associated": "sw", "variant_access_point": ["Regionala markvårdsenheten. Styrelsen för internationell utveckling", "Styrelsen för internationell utveckling. Regional Soil Conservation Unit", "Regional Soil Conservation Unit. Styrelsen för internationell utveckling", "RSCU. Abkuerzung", "SIDA's Regionala markvårdsenheten", "SIDA's Regional Soil Conservation Unit"], "authorized_access_point": "Styrelsen för internationell utveckling. Regionala markvårdsenheten", "biographical_information": ["Sitz: Nairobi"]} 1 +2024-09-11 09:02:57.599793 2024-09-11 09:02:57.599796 380c508a-40a2-4984-adde-57412d4c6d96 {"md5": "f84f5da0af0388e1a07137fd1e1ce72d", "pid": "949309214", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1601432-7", "source": "GND"}], "variant_name": ["Symposium Highlights of Gastroenterology in the Netherlands, 10", "Annual Gastroenterology Symposium Highlights of Gastroenterology in the Netherlands, 10"], "preferred_name": "Gastroenterology Symposium Highlights of Gastroenterology in the Netherlands, 10", "variant_access_point": ["Symposium Highlights of Gastroenterology in the Netherlands, 10, 1995", "Annual Gastroenterology Symposium Highlights of Gastroenterology in the Netherlands, 10, 1995"], "authorized_access_point": "Gastroenterology Symposium Highlights of Gastroenterology in the Netherlands, 10, 1995"} 1 +2024-09-11 09:02:57.663602 2024-09-11 09:02:57.663615 8cf928f8-d62a-440f-b2e5-49db8216584f {"md5": "8f1f644c83de1e07da25ed35c6a3f622", "pid": "949313874", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5186888-X", "source": "GND"}], "variant_name": ["SED-BPO des VEB Energieversorgung Neubrandenburg"], "preferred_name": "Sozialistische Einheitspartei Deutschlands. Betriebsparteiorganisation des VEB Energieversorgung Neubrandenburg", "variant_access_point": ["SED-BPO des VEB Energieversorgung Neubrandenburg"], "authorized_access_point": "Sozialistische Einheitspartei Deutschlands. Betriebsparteiorganisation des VEB Energieversorgung Neubrandenburg"} 1 +2024-09-11 09:02:57.726573 2024-09-11 09:02:57.726578 f7643538-da7b-4ca0-ab26-bdff8e4d9c0c {"md5": "40862e647afaa973d701aad62527d217", "pid": "94933443X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5187089-7", "source": "GND"}], "variant_name": ["Realschule zu Krefeld (In Umwandlung zur Oberrealschule)", "Realschule (In Umwandlung zur Oberrealschule)"], "preferred_name": "Realschule zu Crefeld (In Umwandlung zur Oberrealschule)", "date_of_termination": "1893", "variant_access_point": ["Realschule zu Krefeld (In Umwandlung zur Oberrealschule)", "Realschule (In Umwandlung zur Oberrealschule). Krefeld"], "date_of_establishment": "1892", "authorized_access_point": "Realschule zu Crefeld (In Umwandlung zur Oberrealschule)"} 1 +2024-09-11 09:02:57.779735 2024-09-11 09:02:57.779738 018a5635-6b57-47bb-aa4d-8fbb7ccd3906 {"md5": "e3bd038fa0b4b2f641076979b1cc224b", "pid": "949395161", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5188802-6", "source": "GND"}], "preferred_name": "Deutsche Gesellschaft für Post- und Telekommunikationsgeschichte. Regionalbereich West", "country_associated": "gw", "authorized_access_point": "Deutsche Gesellschaft für Post- und Telekommunikationsgeschichte. Regionalbereich West"} 1 +2024-09-11 09:02:57.837604 2024-09-11 09:02:57.837606 8b6c6035-f37b-4ea5-840e-bf636e0118d1 {"md5": "68a07c3f9b717a4b56f8ac44e5428088", "pid": "949401560", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2161203-1", "source": "GND"}], "variant_name": ["Eutonie-Gesellschaft Gerda Alexander"], "preferred_name": "Deutsche Eutonie-Gesellschaft Gerda Alexander", "country_associated": "gw", "variant_access_point": ["Eutonie-Gesellschaft Gerda Alexander. Deutschland"], "authorized_access_point": "Deutsche Eutonie-Gesellschaft Gerda Alexander", "biographical_information": ["e.V."]} 1 +2024-09-11 09:02:57.902849 2024-09-11 09:02:57.902852 2a8f544f-596d-44fe-9a2c-7be84b55ec13 {"md5": "d0f6f2573a5461aaa8607ec7bb0f0a9c", "pid": "949474851", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5189684-9", "source": "GND"}], "variant_name": ["Arquivo Histórico"], "preferred_name": "Santa Casa da Misericórdia. Arquivo Histórico", "country_associated": "po", "variant_access_point": ["Arquivo Histórico. Santa Casa da Misericórdia, Lissabon"], "authorized_access_point": "Santa Casa da Misericórdia. Lissabon. Arquivo Histórico"} 1 +2024-09-11 09:02:57.968083 2024-09-11 09:02:57.968086 2d6fc1cd-6c7b-436b-ad09-32034ce603ec {"md5": "c876b4454ce4b73a7b3248bb898daf8d", "pid": "949482110", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5190366-0", "source": "GND"}], "variant_name": ["Landesfeuerwehrschule", "Baden-Württemberg. Landesfeuerwehrschule", "LFS BW", "LFS"], "preferred_name": "Landesfeuerwehrschule Baden-Württemberg", "country_associated": "gw", "variant_access_point": ["Landesfeuerwehrschule. Baden-Württemberg", "Baden-Württemberg. Landesfeuerwehrschule", "LFS BW. Abkuerzung", "LFS. Abkuerzung"], "date_of_establishment": "1952", "authorized_access_point": "Landesfeuerwehrschule Baden-Württemberg"} 1 +2024-09-11 09:02:58.024292 2024-09-11 09:02:58.024295 272b3ed9-9940-46a7-97aa-9b94eaff13c4 {"md5": "593e6772a4ec9836760c2ec17a02d1c2", "pid": "949486779", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5190813-X", "source": "GND"}], "preferred_name": "Journées Internationales d'Information sur les Aliments d'Allaitement pour Veaux", "country_associated": "fr", "authorized_access_point": "Journées Internationales d'Information sur les Aliments d'Allaitement pour Veaux, 1967, Paris"} 1 +2024-09-11 09:02:58.083759 2024-09-11 09:02:58.083764 2f16a463-6f41-4ff3-910c-2b6aad6cacc3 {"md5": "82cc8696b97c12803ac43556385bf038", "pid": "949496103", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2161403-9", "source": "GND"}], "variant_name": ["Gesellschaft für Intermediale Kunst und Kommunikation", "TyPophOto"], "preferred_name": "TyPophOto, Gesellschaft für Intermediale Kunst und Kommunikation", "country_associated": "gw", "variant_access_point": ["Gesellschaft für Intermediale Kunst und Kommunikation", "TyPophOto. Abkuerzung"], "date_of_establishment": "9.1993", "authorized_access_point": "TyPophOto, Gesellschaft für Intermediale Kunst und Kommunikation", "biographical_information": ["e.V."]} 1 +2024-09-11 09:02:58.14585 2024-09-11 09:02:58.145854 8790522e-2304-4146-ae2a-2bb465f6afe0 {"md5": "c0a42e7f880b828d9ca90b3f67f9ab99", "pid": "949525197", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5191642-3", "source": "GND"}], "variant_name": ["Institute of Pathology. Medical Museum"], "preferred_name": "Medical Museum", "country_associated": "xxu", "variant_access_point": ["Institute of Pathology. Washington, DC. Medical Museum"], "authorized_access_point": "Medical Museum. Washington, DC"} 1 +2024-09-11 09:02:58.222219 2024-09-11 09:02:58.222223 8e9ac664-8600-40c9-8fd1-d4c3280ecb33 {"md5": "de32c635b0ed183885bae0739761cc35", "pid": "949560820", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2161602-4", "source": "GND"}], "preferred_name": "Tourismusverband", "country_associated": "au", "authorized_access_point": "Tourismusverband. Vöcklabruck"} 1 +2024-09-11 09:02:58.284354 2024-09-11 09:02:58.284358 245fffd4-8ad0-4968-b126-2bb8f550178c {"md5": "007050b3a11d93c03582ebc6f9d72ebd", "pid": "949650978", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2161864-1", "source": "GND"}], "variant_name": ["Kommission Geotechnik"], "preferred_name": "Schweizerischer Ingenieur- und Architekten-Verein. Kommission Geotechnik", "country_associated": "sz", "variant_access_point": ["Kommission Geotechnik"], "authorized_access_point": "Schweizerischer Ingenieur- und Architekten-Verein. Kommission Geotechnik"} 1 +2024-09-11 09:02:58.344382 2024-09-11 09:02:58.344387 fab68c64-0a7c-4247-bfcb-226a504d476a {"md5": "e715ca356b1b34105051b7165800ad4b", "pid": "949739960", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5191990-4", "source": "GND"}], "preferred_name": "Meeting Caring for the Next Generation", "country_associated": "it", "authorized_access_point": "Meeting Caring for the Next Generation, 1995, Sorrent"} 1 +2024-09-11 09:02:58.414146 2024-09-11 09:02:58.41415 8a556140-3bad-421e-b41e-ab460bb9ae90 {"md5": "2b128769985bbbdb2eeaf6294bc7ffe0", "pid": "949826758", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5194271-9", "source": "GND"}], "preferred_name": "Jugendarbeitskreis DDR - Israel", "authorized_access_point": "Jugendarbeitskreis DDR - Israel"} 1 +2024-09-11 09:02:58.53856 2024-09-11 09:02:58.538563 0dd880a6-3dd9-4702-8d3d-220d2706a88f {"md5": "976ac4fc316e27f7490584150ea49d8a", "pid": "949857378", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5195079-0", "source": "GND"}], "variant_name": ["Zentrales Forschungsinstitut für Arbeit. Bibliothek", "Zentralinstitut für Arbeitsschutz. Bibliothek"], "preferred_name": "Bibliothek des Zentralen Forschungsinstituts für Arbeit und des Zentralinstituts für Arbeitsschutz", "variant_access_point": ["Zentrales Forschungsinstitut für Arbeit. Dresden. Bibliothek", "Zentralinstitut für Arbeitsschutz. Dresden. Bibliothek"], "authorized_access_point": "Bibliothek des Zentralen Forschungsinstituts für Arbeit und des Zentralinstituts für Arbeitsschutz. Dresden"} 1 +2024-09-11 09:02:58.6 2024-09-11 09:02:58.600003 f4d0bd1d-a020-4e9a-8721-d00e47133d32 {"md5": "a1025b12b0c5a7a5ff3056f3f989ae32", "pid": "950041297", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1236182-3", "source": "GND"}], "preferred_name": "International Colloquium on Differential Geometry, 7", "country_associated": "sp", "authorized_access_point": "International Colloquium on Differential Geometry, 7, 1994, Santiago de Compostela"} 1 +2024-09-11 09:02:58.679121 2024-09-11 09:02:58.679126 32f53181-355f-4411-ab7b-5224c6af5969 {"md5": "18f1efa1126cd29256d200d98cd95c1c", "pid": "950042544", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1601589-7", "source": "GND"}], "preferred_name": "Zborovanje Slovenskih Geografov, 17", "authorized_access_point": "Zborovanje Slovenskih Geografov, 17, 1996, Ptuj"} 1 +2024-09-11 09:02:58.754426 2024-09-11 09:02:58.754432 42efd885-0857-4acd-82db-849bde7eb24a {"md5": "1823be0f2a1da14a9475eaad0097d26e", "pid": "950148148", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5196830-7", "source": "GND"}], "variant_name": ["Lehnert und Landrock", "Landrock, Lehnert &"], "preferred_name": "Lehnert & Landrock", "country_associated": "ua", "variant_access_point": ["Lehnert und Landrock. al-Qāhira", "Landrock, Lehnert &. al-Qāhira"], "date_of_establishment": "1923", "authorized_access_point": "Lehnert & Landrock. al-Qāhira"} 1 +2024-09-11 09:02:58.827039 2024-09-11 09:02:58.827043 f16637ad-4692-4190-85fe-0666f1ce64fb {"md5": "38be85839d83f155eae34eb459365dde", "pid": "950207535", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5197634-1", "source": "GND"}], "variant_name": ["SED-Kreisleitung im MTS-Bereich Wittstock"], "preferred_name": "Sozialistische Einheitspartei Deutschlands. Kreisparteiorganisation im MTS-Bereich Wittstock", "variant_access_point": ["SED-Kreisleitung im MTS-Bereich Wittstock"], "authorized_access_point": "Sozialistische Einheitspartei Deutschlands. Kreisparteiorganisation im MTS-Bereich Wittstock"} 1 +2024-09-11 09:02:58.883601 2024-09-11 09:02:58.883607 9ff33514-761c-4b2e-a855-d5ff4680c5ad {"md5": "88021b5702aaccfc73a599964fdc9f20", "pid": "950239623", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2163296-0", "source": "GND"}], "variant_name": ["RV Muldental der Kleingärtner"], "preferred_name": "Regionalverband Muldental der Kleingärtner", "country_associated": "gw", "variant_access_point": ["RV Muldental der Kleingärtner"], "date_of_establishment": "1993", "authorized_access_point": "Regionalverband Muldental der Kleingärtner", "biographical_information": ["Sitz: Wurzen", "1993 gegr."]} 1 +2024-09-11 09:02:58.940856 2024-09-11 09:02:58.94086 cfe1df3b-11e5-4f88-ab8d-5c69ea520a75 {"md5": "5026cd3934c30cee3d8b624d3595d7ca", "pid": "950309788", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2163480-4", "source": "GND"}], "variant_name": ["Magyarországi Németek Általános Művelődési Központja", "MNÁMK", "Magyarországi Németek Általános Mœuvelœodési Központja", "Ungarndeutsches Bildungszentrum"], "preferred_name": "Ungarndeutsches Bildungszentrum", "country_associated": "hu", "variant_access_point": ["Magyarországi Németek Általános Művelődési Központja. Baja", "MNÁMK. Abkuerzung", "Magyarországi Németek Általános Mœuvelœodési Központja", "Ungarndeutsches Bildungszentrum. Ehemalige Vorzugsbenennung SWD"], "authorized_access_point": "Ungarndeutsches Bildungszentrum. Baja"} 1 +2024-09-11 09:02:58.997732 2024-09-11 09:02:58.997736 82e798c0-047b-4726-94fc-de1767c68e4d {"md5": "33d9ebaa6d125e91f763a33e9da98f0c", "pid": "950323578", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2163518-3", "source": "GND"}], "preferred_name": "Kolpingsfamilie", "country_associated": "gw", "authorized_access_point": "Kolpingsfamilie. Burladingen", "biographical_information": ["Gegr. 1947"]} 1 +2024-09-11 09:02:59.057204 2024-09-11 09:02:59.057208 28cc67ef-4dff-4af4-9ff8-7b70a5fc98fb {"md5": "5f771cedcc7943e785cec5b20c4801b8", "pid": "950389668", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5199248-6", "source": "GND"}], "variant_name": ["Dopravni Fakulta Jana Pernera", "Univerzita Pardubice. Jan Perner Faculty of Transport", "Univerzita Pardubice. Perner Faculty of Transport", "Jan Perner Faculty of Transport", "Perner Faculty of Transport", "Univerzita Pardubice. Jan Perner Transport Faculty", "Univerzita Pardubice. Perner Transport Faculty", "Jan Perner Transport Faculty", "Perner Transport Faculty", "DFJP", "Univerzita. Dopravní fakulta Jana Pernera"], "preferred_name": "Univerzita Pardubice. Dopravni Fakulta Jana Pernera", "variant_access_point": ["Dopravni Fakulta Jana Pernera. Pardubice", "Univerzita Pardubice. Jan Perner Faculty of Transport", "Univerzita Pardubice. Perner Faculty of Transport", "Jan Perner Faculty of Transport. Pardubice", "Perner Faculty of Transport. Pardubice", "Univerzita Pardubice. Jan Perner Transport Faculty", "Univerzita Pardubice. Perner Transport Faculty", "Jan Perner Transport Faculty. Pardubice", "Perner Transport Faculty. Pardubice", "DFJP. Abkuerzung", "Univerzita. Pardubice. Dopravní fakulta Jana Pernera"], "date_of_establishment": "1993", "authorized_access_point": "Univerzita Pardubice. Dopravni Fakulta Jana Pernera"} 1 +2024-09-11 09:02:59.116107 2024-09-11 09:02:59.116112 31d38d51-7422-49d2-ac40-68bda1d31926 {"md5": "4ba0d3d3546700c7b133189fdd8da82c", "pid": "950389781", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5199258-9", "source": "GND"}], "variant_name": ["Angiologischer Fortbildungstag, 3"], "preferred_name": "Kasseler Angiologischer Fortbildungstag, 3", "variant_access_point": ["Angiologischer Fortbildungstag, 3, 1982, Kassel"], "authorized_access_point": "Kasseler Angiologischer Fortbildungstag, 3, 1982"} 1 +2024-09-11 09:02:59.28596 2024-09-11 09:02:59.285964 a16d01fa-c03c-4573-a9ed-3c87aeab6008 {"md5": "120d637e538f955e4198db8a7fde3b01", "pid": "950729205", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5202312-6", "source": "GND"}], "variant_name": ["Naučno-Techničeska Konferencija s Meždunarodno Učastie po Černa Metalurgija"], "preferred_name": "Nacionalna Naučno-Techničeska Konferencija s Meždunarodno Učastie po Černa Metalurgija", "variant_access_point": ["Naučno-Techničeska Konferencija s Meždunarodno Učastie po Černa Metalurgija"], "authorized_access_point": "Nacionalna Naučno-Techničeska Konferencija s Meždunarodno Učastie po Černa Metalurgija"} 1 +2024-09-11 09:02:59.338257 2024-09-11 09:02:59.338261 7d218eaa-bed6-484f-a70e-c4b7f1f8811f {"md5": "d3e0e7bf462b178c483fe0a0518a1dfa", "pid": "950740136", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5202800-8", "source": "GND"}], "variant_name": ["Japan. Generalkonsulat", "Sōryōjikan", "Japanisches Generalkonsulat", "Hamburugu-Nihon-Sōryōjikan", "Nihon-Sōryōjikan"], "preferred_name": "Japan. Sōryōjikan", "country_associated": "ja", "variant_access_point": ["Japan. Generalkonsulat. Hamburg", "Sōryōjikan. Japan, Hamburg", "Japanisches Generalkonsulat. Hamburg", "Hamburugu-Nihon-Sōryōjikan", "Nihon-Sōryōjikan. Hamburg"], "authorized_access_point": "Japan. Sōryōjikan. Hamburg", "biographical_information": ["2013 wurde das Generalkonsulat zum Konsulat herabgestuft; ca. 2015 wurde das Generalkonsulat neu errichtet."]} 1 +2024-09-11 09:02:59.393458 2024-09-11 09:02:59.393462 79c767c4-8ac6-448a-a38d-179a1651b063 {"md5": "9ff0f5ccb98684e44fc845544ce65fae", "pid": "950740381", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5202822-7", "source": "GND"}], "preferred_name": "Schacht- und Tunnelbau-Kolloquium", "country_associated": "gw", "authorized_access_point": "Schacht- und Tunnelbau-Kolloquium, 1981, Düsseldorf"} 1 +2024-09-11 09:02:59.447739 2024-09-11 09:02:59.447743 5e484185-3473-481a-8bb2-19392553d444 {"md5": "d51a937cf430811ccde1fc15559d9a66", "pid": "950797855", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5204088-4", "source": "GND"}], "variant_name": ["Symposion Die Burgenforschung und Ihre Probleme: Ergrabung - Konservierung - Restaurierung", "Tagung Burgen: Ergrabung - Konservierung - Restaurierung"], "preferred_name": "Symposion Die Burgenforschung und Ihre Probleme", "country_associated": "au", "variant_access_point": ["Symposion Die Burgenforschung und Ihre Probleme: Ergrabung - Konservierung - Restaurierung, 1992, Krems an der Donau", "Tagung Burgen: Ergrabung - Konservierung - Restaurierung, 1992, Krems an der Donau"], "authorized_access_point": "Symposion Die Burgenforschung und Ihre Probleme, 1992, Krems an der Donau"} 1 +2024-09-11 09:02:59.50018 2024-09-11 09:02:59.500184 f58b8ea6-3842-4586-8012-841236ca4112 {"md5": "eeb0f407f6acde9f11fd00326882d65a", "pid": "95080617X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5204889-5", "source": "GND"}], "variant_name": ["Musei del Comune", "Firenze. Musei del Comune"], "preferred_name": "Musei del Comune", "country_associated": "it", "variant_access_point": ["Musei del Comune. Firenze", "Firenze. Musei del Comune"], "authorized_access_point": "Musei del Comune. Florenz"} 1 +2024-09-11 09:02:59.558208 2024-09-11 09:02:59.558212 a4c73445-13ff-4a82-8521-75e615099da0 {"md5": "2dc311f033effd7f1983e4a9a690d259", "pid": "950819603", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5205306-4", "source": "GND"}], "preferred_name": "Verein Ehem. Offiziere des Füsilier-Regiments Königin Viktoria von Schweden (Pomm.) Nr. 34", "authorized_access_point": "Verein Ehem. Offiziere des Füsilier-Regiments Königin Viktoria von Schweden (Pomm.) Nr. 34"} 1 +2024-09-11 09:02:59.60925 2024-09-11 09:02:59.609254 e7cb9a7b-34e5-4e70-ad94-d45357dfe971 {"md5": "1de896043f6da1b96472a20a67d7d42e", "pid": "950857696", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5205869-4", "source": "GND"}], "variant_name": ["Art Museum"], "preferred_name": "Boise Art Museum", "country_associated": "xxu", "variant_access_point": ["Art Museum. Boise, Idaho"], "authorized_access_point": "Boise Art Museum"} 1 +2024-09-11 09:02:59.661516 2024-09-11 09:02:59.66152 9658309c-a916-4904-9da1-857bed56d4e5 {"md5": "7b29ad4636636a03d796bd37b7287192", "pid": "951162322", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1237621-8", "source": "GND"}], "variant_name": ["Arbeitskreis Maritime Messelektronik"], "preferred_name": "Symposium Maritime Elektronik, 2", "variant_access_point": ["Arbeitskreis Maritime Messelektronik, Rostock"], "authorized_access_point": "Symposium Maritime Elektronik, 2, 1977, Rostock. Arbeitskreis Maritime Messelektronik"} 1 +2024-09-11 09:02:59.712862 2024-09-11 09:02:59.712865 d539a8dd-b1bd-4c54-a044-f5d976b48aed {"md5": "e7ec13c6f36baca8b21947d49ac00a9a", "pid": "951185314", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5212247-5", "source": "GND"}], "variant_name": ["Working Group for the International Study of the Pollution of the North Sea and Its Effects on Living Resources and Their Exploitation"], "preferred_name": "International Council for the Exploration of the Sea. Working Group for the International Study of the Pollution of the North Sea and Its Effects on Living Resources and Their Exploitation", "variant_access_point": ["Working Group for the International Study of the Pollution of the North Sea and Its Effects on Living Resources and Their Exploitation"], "authorized_access_point": "International Council for the Exploration of the Sea. Working Group for the International Study of the Pollution of the North Sea and Its Effects on Living Resources and Their Exploitation"} 1 +2024-09-11 09:02:59.763794 2024-09-11 09:02:59.763804 8c5c7650-5783-429b-93e6-783628ac77eb {"md5": "e714796fc9e234f661e42a5368394407", "pid": "951226029", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5216099-3", "source": "GND"}], "variant_name": ["Nyelvosztályának Bizottság"], "preferred_name": "Magyar Tudományos Akademia. Nyelvosztályának Bizottság", "country_associated": "hu", "variant_access_point": ["Nyelvosztályának Bizottság. Magyar Tudományos Akademia"], "authorized_access_point": "Magyar Tudományos Akademia. Nyelvosztályának Bizottság"} 1 +2024-09-11 09:02:59.82069 2024-09-11 09:02:59.820694 67d29598-2dfd-467b-916b-f665ff407457 {"md5": "f36bd266935bfa9af50fb248f0570744", "pid": "951229982", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5216479-2", "source": "GND"}], "variant_name": ["EDIS"], "preferred_name": "Equipo de Investigación Sociológica", "country_associated": "sp", "variant_access_point": ["EDIS. Abkuerzung"], "authorized_access_point": "Equipo de Investigación Sociológica"} 1 +2024-09-11 09:02:59.888001 2024-09-11 09:02:59.888005 350480c5-60b2-4ba0-a828-7d25f5a6b5a6 {"md5": "3f7ad6634c641e9ea47b6b00913af90b", "pid": "95123272X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5216738-0", "source": "GND"}], "preferred_name": "Bibliothèque Municipale", "country_associated": "fr", "authorized_access_point": "Bibliothèque Municipale. Epinal"} 1 +2024-09-11 09:02:59.940978 2024-09-11 09:02:59.940982 0bc7e3fa-2a52-432c-9ffd-cc027c05dcc6 {"md5": "536b39f36a6a368422a553f63f5801b8", "pid": "95125023X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5218443-2", "source": "GND"}], "variant_name": ["Symposium on Reliability of Nuclear Power Plants", "Reliability of Nuclear Power Plants"], "preferred_name": "Symposium on the Reliability of Nuclear Power Plants", "country_associated": "au", "variant_access_point": ["Symposium on Reliability of Nuclear Power Plants, 1975, Innsbruck", "Reliability of Nuclear Power Plants, 1975, Innsbruck"], "authorized_access_point": "Symposium on the Reliability of Nuclear Power Plants, 1975, Innsbruck"} 1 +2024-09-11 09:02:59.992557 2024-09-11 09:02:59.992561 f4f67a04-9e2b-4faa-bb2e-b58fb0c2db10 {"md5": "8bdaa40de10d28d7bdabe8306756fe85", "pid": "951301330", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5223423-X", "source": "GND"}], "preferred_name": "International Conference on Micro-, Electro-, Opto-, Mechanical Systems and Components, 4", "authorized_access_point": "International Conference on Micro-, Electro-, Opto-, Mechanical Systems and Components, 4, 1994, Berlin"} 1 +2024-09-11 09:03:00.046341 2024-09-11 09:03:00.046345 e0bdfeda-cfa0-47af-bf55-a09b131a43e7 {"md5": "b38aa88bbc3c83ed40a9e33e1c2df5a7", "pid": "951303139", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5223603-1", "source": "GND"}], "preferred_name": "Associació d'Amics i Vei͏̈ns de Cererols", "authorized_access_point": "Associació d'Amics i Vei͏̈ns de Cererols"} 1 +2024-09-11 09:03:00.097952 2024-09-11 09:03:00.097955 55e5f303-f8d2-4cee-a0d4-5a97e27a02de {"md5": "a2cc537216c289d9b8b7796601406908", "pid": "951745956", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5225789-7", "source": "GND"}], "preferred_name": "Hanbury Workshop", "authorized_access_point": "Hanbury Workshop, 1994"} 1 +2024-09-11 09:03:00.149368 2024-09-11 09:03:00.149371 9df3bcaf-c440-462b-9dbb-af35d8247c45 {"md5": "edd9f9d41cb09b8927d057d9454aa8b9", "pid": "951762990", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5227391-X", "source": "GND"}], "variant_name": ["Russian-Swedish Symposium on Physico-Chemical Biology, 5"], "preferred_name": "Rossijsko-Švedskij Simpozium po Fiziko-Chimičeskoj Biologii, 5", "variant_access_point": ["Russian-Swedish Symposium on Physico-Chemical Biology, 5, 1992, Moskau"], "authorized_access_point": "Rossijsko-Švedskij Simpozium po Fiziko-Chimičeskoj Biologii, 5, 1992, Moskau"} 1 +2024-09-11 09:03:00.20047 2024-09-11 09:03:00.200475 5916bf10-f65e-40fc-a6f6-bb1c61055abe {"md5": "b9a83ede9031a7011a116c7a796219fd", "pid": "951789252", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5229788-3", "source": "GND"}], "variant_name": ["Bildungsökonomischer Ausschuß", "Gesellschaft für Wirtschafts- und Sozialwissenschaften. Bildungsökonomischer Ausschuss"], "preferred_name": "Gesellschaft für Wirtschafts- und Sozialwissenschaften. Bildungsökonomischer Ausschuß", "country_associated": "gw", "variant_access_point": ["Bildungsökonomischer Ausschuß. Gesellschaft für Wirtschafts- und Sozialwissenschaften", "Gesellschaft für Wirtschafts- und Sozialwissenschaften. Bildungsökonomischer Ausschuss"], "authorized_access_point": "Gesellschaft für Wirtschafts- und Sozialwissenschaften. Bildungsökonomischer Ausschuß"} 1 +2024-09-11 09:03:00.250457 2024-09-11 09:03:00.25046 d7b14118-8eb7-4a33-a34d-ed1a9a4a5e1b {"md5": "759de41cc23cd1f926f9a319c62bf61b", "pid": "951803328", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5231116-8", "source": "GND"}], "variant_name": ["Amnesty for Women"], "preferred_name": "Amnesty for Women. Städtegruppe", "country_associated": "gw", "variant_access_point": ["Amnesty for Women. Hamburg"], "authorized_access_point": "Amnesty for Women. Städtegruppe. Hamburg"} 1 +2024-09-11 09:03:00.305074 2024-09-11 09:03:00.305078 ad0bb685-fea4-4357-b768-cb75bff2ffcf {"md5": "7939f3d3aae35e43bbd9913a1be2f3e3", "pid": "951803921", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5231175-2", "source": "GND"}], "preferred_name": "International Workshop A Future of Telework", "country_associated": "ne", "authorized_access_point": "International Workshop A Future of Telework, 1994, Delft"} 1 +2024-09-11 09:03:00.360606 2024-09-11 09:03:00.360611 a4219760-4c25-4ad7-bb66-291cf18b8d82 {"md5": "dc45353eab67b9f242fbe99d9749c71e", "pid": "951806084", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5231390-6", "source": "GND"}], "variant_name": ["Nordiske Geoteknikermøde, 11", "Nordic Geotechnical Meeting, 11", "Nordiske Geoteknikermøde, 11", "Geoteknikermøde, 11", "NGM, 11"], "preferred_name": "NGM, 11", "country_associated": "dk", "variant_access_point": ["Nordiske Geoteknikermøde, 11, 1992, Ålborg", "Nordic Geotechnical Meeting, 11, 1992, Ålborg", "Nordiske Geoteknikermøde, 11, 1992, Aalborg", "Geoteknikermøde, 11, 1992, Aalborg", "NGM, 11, 1992, Aalborg"], "authorized_access_point": "NGM, 11, 1992, Ålborg"} 1 +2024-09-11 09:03:00.421325 2024-09-11 09:03:00.421329 92e72c0e-7e87-44ac-9636-d2228ea3a2f1 {"md5": "3532a0c650227583e4647a1b0bc25db3", "pid": "951828673", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5233601-3", "source": "GND"}], "variant_name": ["ITG-Fachtagung Vakuumelektronik und Displays"], "preferred_name": "Fachtagung Vakuumelektronik und Displays", "variant_access_point": ["ITG-Fachtagung Vakuumelektronik und Displays, 1995, Garmisch-Partenkirchen"], "authorized_access_point": "Fachtagung Vakuumelektronik und Displays, 1995, Garmisch-Partenkirchen"} 1 +2024-09-11 09:03:00.479135 2024-09-11 09:03:00.47914 926e5b95-fb2e-4633-85da-df5193531134 {"md5": "4c73da598081158bcf34b5d77490dd71", "pid": "951838482", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5234543-9", "source": "GND"}], "variant_name": ["LSAF"], "preferred_name": "Lembaga Studi Agama dan Filsafat", "country_associated": "io", "variant_access_point": ["LSAF. Abkuerzung"], "authorized_access_point": "Lembaga Studi Agama dan Filsafat"} 1 +2024-09-11 09:03:00.533548 2024-09-11 09:03:00.533552 7abaad7a-dc8e-4243-be2a-91e5c5d35131 {"md5": "cb613467e12e893cc3f54b9f989cc692", "pid": "951842676", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5234954-8", "source": "GND"}], "preferred_name": "Arbeitsgemeinschaft für Pharmazeutische Verfahrenstechnik. Fachgruppe Feste Arzneiformen", "authorized_access_point": "Arbeitsgemeinschaft für Pharmazeutische Verfahrenstechnik. Fachgruppe Feste Arzneiformen"} 1 +2024-09-11 09:03:00.592506 2024-09-11 09:03:00.592511 4dc564d0-c52b-46a4-9e13-16edb70ef5b1 {"md5": "349722bbd2402d8fa5b6169101b24d8e", "pid": "951852043", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5235868-9", "source": "GND"}], "variant_name": ["Naučnaja Konferencija Struktura i Svojstva Kristalličeskich Amorfnych Materialov"], "preferred_name": "Vserossijskaja Naučnaja Konferencija Struktura i Svojstva Kristalličeskich Amorfnych Materialov", "variant_access_point": ["Naučnaja Konferencija Struktura i Svojstva Kristalličeskich Amorfnych Materialov, 1996, Nižnij Novgorod"], "authorized_access_point": "Vserossijskaja Naučnaja Konferencija Struktura i Svojstva Kristalličeskich Amorfnych Materialov, 1996, Nižnij Novgorod"} 1 +2024-09-11 09:03:00.653881 2024-09-11 09:03:00.653886 cf376901-7eb0-4ddf-baf3-8b2b8b3a471e {"md5": "04ca6b23b7245f53971420012855d874", "pid": "951854194", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5236074-X", "source": "GND"}], "variant_name": ["IEE Colloquium on Optical Free Space Communication Links", "Colloquium on \\"Optical Free Space Communication Links\\"", "Optical Free Space Communication Links"], "preferred_name": "Colloquium on Optical Free Space Communication Links", "country_associated": "xxk", "variant_access_point": ["IEE Colloquium on Optical Free Space Communication Links, 1996, London", "Colloquium on \\"Optical Free Space Communication Links\\", 1996, London", "Optical Free Space Communication Links, 1996, London"], "authorized_access_point": "Colloquium on Optical Free Space Communication Links, 1996, London"} 1 +2024-09-11 09:03:00.71412 2024-09-11 09:03:00.714123 6cdbd1a2-0f22-4d65-aa9a-5dc04fef71fd {"md5": "0f7658aeca29eca456f489ee34a0431d", "pid": "951894048", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5239594-7", "source": "GND"}], "variant_name": ["Annual WERC Technology Development Conference, 4", "WERC Technology Development Conference, 4"], "preferred_name": "Technology Development Conference, 4", "country_associated": "xxu", "variant_access_point": ["Annual WERC Technology Development Conference, 4, 1994, Las Cruces, NM", "WERC Technology Development Conference, 4, 1994, Las Cruces, NM"], "authorized_access_point": "Technology Development Conference, 4, 1994, Las Cruces, NM"} 1 +2024-09-11 09:03:00.770057 2024-09-11 09:03:00.770059 7b8cd382-7a54-440b-a57a-8155ae5f8860 {"md5": "0434fbf60322f604e882319fcfc9e834", "pid": "951894692", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5239657-5", "source": "GND"}], "preferred_name": "Conference on Fire and Forest Meteorology, 11", "country_associated": "xxu", "authorized_access_point": "Conference on Fire and Forest Meteorology, 11, 1991, Missoula, Mont."} 1 +2024-09-11 09:03:00.827808 2024-09-11 09:03:00.827812 3580c81c-a446-4a8e-9a82-917249de6376 {"md5": "5e8de174886c873ede28d178167aab17", "pid": "951913441", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5241403-6", "source": "GND"}], "preferred_name": "Carl-August-Gedächtnis-Ausstellung", "authorized_access_point": "Carl-August-Gedächtnis-Ausstellung, 1928, Weimar"} 1 +2024-09-11 09:03:00.884049 2024-09-11 09:03:00.884052 b63ae3cb-050b-4525-864c-8013479c0f9d {"md5": "280ceee4b9243da43fcf5df63f41f6cc", "pid": "951920553", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5242071-1", "source": "GND"}], "preferred_name": "Congreso Internacional sobre Valle-Inclán, 1", "country_associated": "sp", "authorized_access_point": "Congreso Internacional sobre Valle-Inclán, 1, 1992, Bellaterra"} 1 +2024-09-11 09:03:00.937741 2024-09-11 09:03:00.937744 6302ca3d-bd0a-44d6-80be-017b9cced03b {"md5": "c114011ca00d9bf172090e886a1651fc", "pid": "951921258", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5242138-7", "source": "GND"}], "variant_name": ["SOCHIGE", "SOCHIGE"], "preferred_name": "Sociedad Chilena de Geotecnia", "country_associated": "cl", "variant_access_point": ["SOCHIGE. Abkuerzung", "SOCHIGE. Sociedad Chilena de Geotecnia"], "authorized_access_point": "Sociedad Chilena de Geotecnia"} 1 +2024-09-11 09:03:00.997605 2024-09-11 09:03:00.997608 bc47130e-3052-4dfa-86c8-356720703284 {"md5": "2ab933b893eb792a41e92b7823147cc7", "pid": "951945491", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5244437-5", "source": "GND"}], "variant_name": ["Landesverband Niedersachsen", "Lebenshilfe für Geistig Behinderte Niedersachsen", "Lebenshilfe Niedersachsen"], "preferred_name": "Bundesvereinigung Lebenshilfe für Geistig Behinderte. Landesverband Niedersachsen", "country_associated": "gw", "date_of_termination": "XX.XX.1996", "variant_access_point": ["Landesverband Niedersachsen", "Lebenshilfe für Geistig Behinderte Niedersachsen", "Lebenshilfe Niedersachsen"], "date_of_establishment": "14.05.1968", "authorized_access_point": "Bundesvereinigung Lebenshilfe für Geistig Behinderte. Landesverband Niedersachsen", "biographical_information": ["1968 Umbenennung der übergeordneten Körperschaft.", "1996 Umbenennung der übergeordneten Körperschaft."]} 1 +2024-09-11 09:03:01.052269 2024-09-11 09:03:01.052273 f49e2a35-93f0-4256-93e0-69f97b8393bd {"md5": "4acdfb175e26406cc5c921f33748f577", "pid": "951947915", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5244664-5", "source": "GND"}], "variant_name": ["Palast der Jugend"], "preferred_name": "Vystavočnyj Zal Dvorca Molode͏̈ži", "variant_access_point": ["Palast der Jugend. Leningrad"], "authorized_access_point": "Vystavočnyj Zal Dvorca Molode͏̈ži. Leningrad"} 1 +2024-09-11 09:03:01.111799 2024-09-11 09:03:01.111802 5f75f4be-41bd-4cd3-9739-298a4584302e {"md5": "ab504b48181ad66cc6f587ed006cf81d", "pid": "952056763", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2166850-4", "source": "GND"}], "variant_name": ["Professur Statistik und Freie Berufe", "Universität Lüneburg. Fachbereich Wirtschafts- und Sozialwissenschaften. Professur Statistik und Freie Berufe"], "preferred_name": "Forschungsinstitut Freie Berufe. Professur Statistik und Freie Berufe", "country_associated": "gw", "variant_access_point": ["Professur Statistik und Freie Berufe. Lüneburg", "Universität Lüneburg. Fachbereich Wirtschafts- und Sozialwissenschaften. Professur Statistik und Freie Berufe"], "authorized_access_point": "Forschungsinstitut Freie Berufe. Professur Statistik und Freie Berufe"} 1 +2024-09-11 09:03:01.165712 2024-09-11 09:03:01.165714 69866346-45b5-4ac3-8da8-2d5ee7dcf798 {"md5": "704aedfccbd1ed888599275431153b31", "pid": "952070308", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5246577-9", "source": "GND"}], "variant_name": ["THW Gronau", "Technisches Hilfswerk Gronau", "Bundesanstalt Technisches Hilfswerk Gronau"], "preferred_name": "Bundesanstalt Technisches Hilfswerk. Ortsverband Gronau", "country_associated": "gw", "variant_access_point": ["THW Gronau", "Technisches Hilfswerk Gronau", "Bundesanstalt Technisches Hilfswerk Gronau"], "authorized_access_point": "Bundesanstalt Technisches Hilfswerk. Ortsverband Gronau", "biographical_information": ["Gegr. 1955"]} 1 +2024-09-11 09:03:01.223922 2024-09-11 09:03:01.223926 cf01301b-853f-45ff-be41-855b3b3136f2 {"md5": "f4605cdb1961451ca4b6a938d55442c5", "pid": "952091542", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5246729-6", "source": "GND"}], "variant_name": ["SDS"], "preferred_name": "Sudetendeutscher Sängerbund", "country_associated": "gw", "variant_access_point": ["SDS"], "authorized_access_point": "Sudetendeutscher Sängerbund", "biographical_information": ["Sitz: Kitzingen"]} 1 +2024-09-11 09:03:01.27557 2024-09-11 09:03:01.275575 6c4be3c1-f639-4d27-aea3-15c2e116027c {"md5": "4d9bcf9db6809f7966491b0adb3fba2f", "pid": "952101173", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5247659-5", "source": "GND"}], "variant_name": ["Conference of the European Constitutional Courts, 10", "Conférence des Cours Constitutionnelles Européennes, 10"], "preferred_name": "Konferenz der Europäischen Verfassungsgerichte, 10", "country_associated": "hu", "variant_access_point": ["Conference of the European Constitutional Courts, 10, 1996, Budapest", "Conférence des Cours Constitutionnelles Européennes, 10, 1996, Budapest"], "authorized_access_point": "Konferenz der Europäischen Verfassungsgerichte, 10, 1996, Budapest"} 1 +2024-09-11 09:03:01.329072 2024-09-11 09:03:01.329075 77d34d74-0fcc-4bab-8c75-bbfbda3acead {"md5": "5412f3315e286c9243718cef75a0fe0e", "pid": "952199718", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2167217-9", "source": "GND"}], "variant_name": ["EBS", "Mouvement européen Suisse", "Mouvement européen en Suisse", "Movimento europeo Svizzera", "Movimento europeo svizzero"], "preferred_name": "Europäische Bewegung Schweiz", "country_associated": "sz", "variant_access_point": ["EBS. Abkuerzung", "Mouvement européen Suisse", "Mouvement européen en Suisse", "Movimento europeo Svizzera", "Movimento europeo svizzero"], "date_of_establishment": "08.05.2021", "authorized_access_point": "Europäische Bewegung Schweiz", "biographical_information": ["Sitz am Domizil der Geschäftsstelle. Parteipolitisch unabhängiger Verein mit diversen Sektionen und regionalen Gruppen in der Schweiz. Von 27.03.1998 bis 07.05.2021verwendete der Verein die bevorzugte Namensform \\"Neue Europäische Bewegung Schweiz\\""]} 1 +2024-09-11 09:03:01.384803 2024-09-11 09:03:01.384808 ac22b2a0-3579-48f9-bf78-cb361e7dd94c {"md5": "a8b4da1ada44f07aceb2cb9a7be5463d", "pid": "952207990", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5249528-0", "source": "GND"}], "preferred_name": "International Panel Workshop", "country_associated": "xxu", "authorized_access_point": "International Panel Workshop, 1962, College Park, Md."} 1 +2024-09-11 09:03:01.438056 2024-09-11 09:03:01.438061 bb6c7874-e660-48e5-928f-2881446e155b {"md5": "aeda522f9ff1c2ca47273e47f068906b", "pid": "952241684", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5250785-3", "source": "GND"}], "variant_name": ["Economic Development Division"], "preferred_name": "USA. Economic Research Service. Economic Development Division", "country_associated": "xxu", "variant_access_point": ["Economic Development Division. USA, Economic Research Service"], "authorized_access_point": "USA. Economic Research Service. Economic Development Division"} 1 +2024-09-11 09:03:01.494952 2024-09-11 09:03:01.494956 fed2d0df-f585-4f8f-9191-be3c16036bd9 {"md5": "3393b586e0f7291c2bc40f9ac620a53a", "pid": "952265168", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5251181-9", "source": "GND"}], "variant_name": ["Nationale Havenraad"], "preferred_name": "Niederlande. Nationale Havenraad", "country_associated": "ne", "variant_access_point": ["Nationale Havenraad. Niederlande"], "authorized_access_point": "Niederlande. Nationale Havenraad"} 1 +2024-09-11 09:03:01.545162 2024-09-11 09:03:01.545166 628bb2d0-df64-419e-b255-b88f57eceba5 {"md5": "28af47a99fb79e9610ad1ff4d1565879", "pid": "952327511", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5251856-5", "source": "GND"}], "variant_name": ["SED-PO des VEB Landbaukombinats Rostock", "SED-Parteiorganisation des VEB Landbaukombinats Rostock"], "preferred_name": "Sozialistische Einheitspartei Deutschlands. Parteiorganisation des VEB Landbaukombinats Rostock", "variant_access_point": ["SED-PO des VEB Landbaukombinats Rostock", "SED-Parteiorganisation des VEB Landbaukombinats Rostock"], "authorized_access_point": "Sozialistische Einheitspartei Deutschlands. Parteiorganisation des VEB Landbaukombinats Rostock", "biographical_information": ["Sitz: Wismar"]} 1 +2024-09-11 09:03:01.603961 2024-09-11 09:03:01.603964 6f2aac88-d0ad-40f9-8dce-df89d75842e3 {"md5": "16ae8fa15cdab909a50bc505ff004168", "pid": "95232752X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5251857-7", "source": "GND"}], "variant_name": ["ICI", "ICT"], "preferred_name": "Institut Català de Tecnologia", "country_associated": "sp", "variant_access_point": ["ICI. Abkuerzung", "ICT. Institut Català de Tecnologia, Barcelona"], "authorized_access_point": "Institut Català de Tecnologia. Barcelona"} 1 +2024-09-11 09:03:01.709349 2024-09-11 09:03:01.709354 8bddc40d-1d1d-4181-9b61-b12b545a64f9 {"md5": "6dfdcb4e20a32118e7f52d0e06e81dfa", "pid": "952354969", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5252618-5", "source": "GND"}], "variant_name": ["Volksbank Dresden eG"], "preferred_name": "Volksbank Dresden", "country_associated": "gw", "variant_access_point": ["Volksbank Dresden eG. Unveraenderte Form"], "date_of_establishment": "1997", "authorized_access_point": "Volksbank Dresden"} 1 +2024-09-11 09:03:01.764067 2024-09-11 09:03:01.764071 fdf81516-b089-4702-821d-8f6d296819e1 {"md5": "d69cc678f47a1223569876922e52b5f3", "pid": "952358492", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5252952-6", "source": "GND"}], "variant_name": ["TSO"], "preferred_name": "Stationery Office", "country_associated": "xxk", "variant_access_point": ["TSO. Abkuerzung"], "date_of_establishment": "1996", "authorized_access_point": "Stationery Office. London", "biographical_information": ["Ltd; das Office wurde 1996 privatisiert"]} 1 +2024-09-11 09:03:01.818221 2024-09-11 09:03:01.818231 0cf67dc0-27e0-459e-9cc0-40b722f16721 {"md5": "7cd01000f5bdff6757f86ac72f38c743", "pid": "952379546", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5253289-6", "source": "GND"}], "preferred_name": "Jugendbildungsstätte Don Bosco", "country_associated": "gw", "authorized_access_point": "Jugendbildungsstätte Don Bosco. Jünkerath"} 1 +2024-09-11 09:03:01.885202 2024-09-11 09:03:01.885207 1073b8ab-d4b3-4acd-b84c-2892c645a618 {"md5": "4e94edd63473023a8493b58cb5217e7f", "pid": "952419351", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5254323-7", "source": "GND"}], "preferred_name": "Rationalisierungskonferenz, 4", "authorized_access_point": "Rationalisierungskonferenz, 4, 1980, Dresden"} 1 +2024-09-11 09:03:01.945489 2024-09-11 09:03:01.945493 9d3f91a9-4c86-4241-b85e-df9c20185d94 {"md5": "7a986950e2b978573ba5b0f7dc82138e", "pid": "952481464", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5256766-7", "source": "GND"}], "variant_name": ["Brinckmann Gesellschaft", "JBG"], "preferred_name": "Justus Brinckmann Gesellschaft", "date_of_termination": "1933", "variant_access_point": ["Brinckmann Gesellschaft. 1921-1933", "JBG. Abkuerzung"], "date_of_establishment": "1921", "authorized_access_point": "Justus Brinckmann Gesellschaft. 1921-1933"} 1 +2024-09-11 09:03:02.001282 2024-09-11 09:03:02.001287 25acdaed-6ba9-4761-b2dd-14b9738a9219 {"md5": "3669db18f505bdb8df6f31d87786d2b5", "pid": "952489546", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5257535-4", "source": "GND"}], "preferred_name": "ZM Communications GmbH", "country_associated": "gw", "authorized_access_point": "ZM Communications GmbH. Nürnberg"} 1 +2024-09-11 09:03:02.06902 2024-09-11 09:03:02.069025 0c6c2605-d3a4-40a8-a0dc-95003e710604 {"md5": "1824fe440d5bf02fd273e937eb1a9e70", "pid": "952503980", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5258889-0", "source": "GND"}], "preferred_name": "Symposium Die Neuen Oberflächen der Leiterplatte", "country_associated": "gw", "authorized_access_point": "Symposium Die Neuen Oberflächen der Leiterplatte, 1997, Waiblingen"} 1 +2024-09-11 09:03:02.12655 2024-09-11 09:03:02.126554 14ebeb0a-3517-45f6-a2f4-13e7ca2fccb3 {"md5": "c1725eb7de46a6655a97356aef818478", "pid": "95250538X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5259026-4", "source": "GND"}], "variant_name": ["Twente Workshop on Graphs and Combinatorial Optimization, 5"], "preferred_name": "Workshop on Graphs and Combinatorial Optimization, 5", "country_associated": "ne", "variant_access_point": ["Twente Workshop on Graphs and Combinatorial Optimization, 5, 1997, Enschede"], "authorized_access_point": "Workshop on Graphs and Combinatorial Optimization, 5, 1997, Enschede"} 1 +2024-09-11 09:03:02.195017 2024-09-11 09:03:02.195022 a2e50e15-f560-4db4-91b6-305562e0b8e6 {"md5": "f5acd7bb8abc89092ae67e5357e221f6", "pid": "952510995", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5259554-7", "source": "GND"}], "preferred_name": "Arts Council of Great Britain. Welsh Committee", "country_associated": "xxk", "authorized_access_point": "Arts Council of Great Britain. Welsh Committee", "biographical_information": ["Sitz: Cardiff"]} 1 +2024-09-11 09:03:02.255108 2024-09-11 09:03:02.255112 dee007e1-cc8c-4454-b3b2-0d9d40729310 {"md5": "b4ac97ef23adabef47536094ac5430cc", "pid": "95251592X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5260009-9", "source": "GND"}], "preferred_name": "International Conference on Bioengineering, Chemical Engineering and Mechatronics", "country_associated": "fi", "authorized_access_point": "International Conference on Bioengineering, Chemical Engineering and Mechatronics, 1996, Espoo"} 1 +2024-09-11 09:03:02.311588 2024-09-11 09:03:02.311593 e4131dfc-12b4-45ec-8feb-b5f00a9e110d {"md5": "00af7f2171a4f09f3862c5724d7be45e", "pid": "952534924", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5261821-3", "source": "GND"}], "variant_name": ["Galerie Laeubli", "Läubli, Galerie"], "preferred_name": "Galerie Läubli", "country_associated": "sz", "variant_access_point": ["Galerie Laeubli. Zürich", "Läubli, Galerie. Zürich"], "authorized_access_point": "Galerie Läubli. Zürich"} 1 +2024-09-11 09:03:02.368112 2024-09-11 09:03:02.368115 21f55c4c-158b-4995-b778-469c360f44c8 {"md5": "82db8507eda341b48c3a43d82f35d716", "pid": "952540428", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5262338-5", "source": "GND"}], "variant_name": ["XV. Seminár Elektrotechnikov, Projektantov a Revíznych Technikov Elektrických Zariadení : Trenčín, 28. júna 1994"], "preferred_name": "Seminár elektrotechnikov, projektantov a revíznych technikov elektrických zariadení, 15.", "variant_access_point": ["XV. Seminár Elektrotechnikov, Projektantov a Revíznych Technikov Elektrických Zariadení : Trenčín, 28. júna 1994"], "authorized_access_point": "Seminár elektrotechnikov, projektantov a revíznych technikov elektrických zariadení, 15., 1994, Trenčín"} 1 +2024-09-11 09:03:02.424427 2024-09-11 09:03:02.42443 d0918380-d9a5-45c5-a3b4-0a5ca53ce1eb {"md5": "66a08a7beef800b1549eee2749a9a9d5", "pid": "952541084", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5262401-8", "source": "GND"}], "variant_name": ["BASF-Aktiengesellschaft. Ammoniaklaboratorium"], "preferred_name": "Ammoniaklaboratorium", "country_associated": "gw", "variant_access_point": ["BASF-Aktiengesellschaft. Ammoniaklaboratorium"], "authorized_access_point": "Ammoniaklaboratorium"} 1 +2024-09-11 09:03:02.48306 2024-09-11 09:03:02.483064 c7fc9285-9cd8-46b6-93f5-242341498da0 {"md5": "e386f1fef6f12b5faf86bb2c6c575336", "pid": "952542811", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5262560-6", "source": "GND"}], "variant_name": ["Sugar Authority", "KSA"], "preferred_name": "Kenia. Sugar Authority", "country_associated": "ke", "variant_access_point": ["Sugar Authority. Kenia", "KSA. Abkuerzung"], "authorized_access_point": "Kenia. Sugar Authority"} 1 +2024-09-11 09:03:02.541249 2024-09-11 09:03:02.541253 7f92861a-0b07-462d-ad0f-1c903badfe6a {"md5": "de57aa4aa113648c1fea4eb528b06f17", "pid": "952543141", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5262591-6", "source": "GND"}], "preferred_name": "Congrès des Notaires de France, 92", "country_associated": "fr", "authorized_access_point": "Congrès des Notaires de France, 92, 1996, Deauville"} 1 +2024-09-11 09:03:02.60305 2024-09-11 09:03:02.603053 2fb93964-3a46-4f7e-a9fd-78991ea18532 {"md5": "8c6485699055f9fc51f9bedc63ac7c97", "pid": "952571315", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5263174-6", "source": "GND"}], "variant_name": ["IB", "Brucknerfest"], "preferred_name": "Internationales Brucknerfest", "country_associated": "au", "variant_access_point": ["IB, 1995, Linz", "Brucknerfest, 1995, Linz"], "authorized_access_point": "Internationales Brucknerfest, 1995, Linz"} 1 +2024-09-11 09:03:02.660816 2024-09-11 09:03:02.660818 ab1cc702-9042-423d-96a9-566af14a5240 {"md5": "ad4d4948e6713f48eaac5ced86e8b7e9", "pid": "952607549", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5264176-4", "source": "GND"}], "variant_name": ["Dipartimento per gli Affari Sociali", "Italien. Ministro per la Famiglia e la Solidarietà Sociale. Dipartimento per gli Affari Sociali"], "preferred_name": "Italien. Dipartimento per gli Affari Sociali", "country_associated": "it", "variant_access_point": ["Dipartimento per gli Affari Sociali. Italien", "Italien. Ministro per la Famiglia e la Solidarietà Sociale. Dipartimento per gli Affari Sociali"], "authorized_access_point": "Italien. Dipartimento per gli Affari Sociali"} 1 +2024-09-11 09:03:02.717157 2024-09-11 09:03:02.717161 dcef4f22-2f5d-4d8b-b9ea-900f24d38349 {"md5": "e6c52374b1bc3925ef613281bda2b4bc", "pid": "952616270", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5265042-X", "source": "GND"}], "variant_name": ["Instituto Nacional de Investigaciones Agrícolas. Centro de Investigaciones Agropecuarias de la Chontalpa", "CIEACH"], "preferred_name": "Centro de Investigaciones y Extensión Agropecuarias de la Chontalpa", "country_associated": "mx", "variant_access_point": ["Instituto Nacional de Investigaciones Agrícolas. México. Centro de Investigaciones Agropecuarias de la Chontalpa", "CIEACH. Abkuerzung"], "authorized_access_point": "Centro de Investigaciones y Extensión Agropecuarias de la Chontalpa. México"} 1 +2024-09-11 09:03:02.779465 2024-09-11 09:03:02.779468 244c06fe-d406-475e-9638-7ef9342d804c {"md5": "7a03d32b4e7996140bda48bb3b21f0ab", "pid": "952753294", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5265271-3", "source": "GND"}], "preferred_name": "Manufaktur", "country_associated": "gw", "authorized_access_point": "Manufaktur. Georgenthal/Thür. Wald", "biographical_information": ["Sitz: Gotha"]} 1 +2024-09-11 09:03:02.845827 2024-09-11 09:03:02.84583 b8cfde84-74ea-4c62-8b3d-ce51ccbdc20f {"md5": "cdff330b498a8ea3150d235dbc012c75", "pid": "952753537", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5265294-4", "source": "GND"}], "variant_name": ["MGV Hoffmannscher Liederkranz Spandau 1859", "Hoffmannscher Liederkranz", "Hoffmannscher Liederkranz"], "preferred_name": "Männergesangverein Hoffmannscher Liederkranz Spandau 1859", "country_associated": "gw", "variant_access_point": ["MGV Hoffmannscher Liederkranz Spandau 1859", "Hoffmannscher Liederkranz. Spandau", "Hoffmannscher Liederkranz. Berlin, West"], "authorized_access_point": "Männergesangverein Hoffmannscher Liederkranz Spandau 1859"} 1 +2024-09-11 09:03:02.904613 2024-09-11 09:03:02.904618 4229a55a-b9e0-4ae0-bc8c-e9396fdb8673 {"md5": "0b039f57d06512cf0643ad0cd9698414", "pid": "952754606", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5265393-6", "source": "GND"}], "variant_name": ["JENC, 8"], "preferred_name": "Joint European Networking Conference, 8", "country_associated": "xxk", "variant_access_point": ["JENC, 8, 1997, Edinburgh"], "authorized_access_point": "Joint European Networking Conference, 8, 1997, Edinburgh"} 1 +2024-09-11 09:03:02.96173 2024-09-11 09:03:02.961733 ea5b321a-5fc8-4b39-88f0-7cd3261caf03 {"md5": "33ea75c1bac3e790851de5b577c196a5", "pid": "952918838", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5265996-3", "source": "GND"}], "variant_name": ["ICF, 1"], "preferred_name": "International Conference on Ferrites, 1", "country_associated": "ja", "variant_access_point": ["ICF, 1, 1970, Kyōto"], "authorized_access_point": "International Conference on Ferrites, 1, 1970, Kyōto"} 1 +2024-09-11 09:03:03.022553 2024-09-11 09:03:03.022557 0e3b6075-fa74-41e8-a0a2-94b09f6fa3f5 {"md5": "859b100e6f57357c9f750b98fb4f5e71", "pid": "952923793", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5266470-3", "source": "GND"}], "preferred_name": "Schloß Aulendorf GmbH", "country_associated": "gw", "authorized_access_point": "Schloß Aulendorf GmbH", "biographical_information": ["gegründet 1989 als Auffanggesellschaft durch das Land Baden-Württemberg"]} 1 +2024-09-11 09:03:03.093042 2024-09-11 09:03:03.093046 81812993-45c3-463f-834e-30020590edba {"md5": "2b48ff6feacfb253ffe1e00921e861a4", "pid": "953095746", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5268204-3", "source": "GND"}], "preferred_name": "Pro Regenwald", "country_associated": "gw", "authorized_access_point": "Pro Regenwald"} 1 +2024-09-11 09:03:03.156902 2024-09-11 09:03:03.156905 39d88e7f-a58e-4427-a9e0-d4bced06c51e {"md5": "3dab288f3a5f2d3f4a401b3dc51c6ba2", "pid": "95311886X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4492025-8", "source": "GND"}], "variant_name": ["Städtisches Gymnasium", "Staatliches Gymnasium", "Königliches Gymnasium"], "preferred_name": "Anno-Gymnasium", "country_associated": "gw", "variant_access_point": ["Städtisches Gymnasium", "Staatliches Gymnasium", "Königliches Gymnasium"], "authorized_access_point": "Anno-Gymnasium", "biographical_information": ["gegr. 1597"]} 1 +2024-09-11 09:03:03.226065 2024-09-11 09:03:03.226069 bb91da65-003a-4aa4-a39a-74c8759111eb {"md5": "81a882de379e6d0982455bb316934e79", "pid": "95315971X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5268871-9", "source": "GND"}], "preferred_name": "Schwimm- und Sportverein Ulm 1846. Schwimmabteilung", "country_associated": "gw", "authorized_access_point": "Schwimm- und Sportverein Ulm 1846. Schwimmabteilung"} 1 +2024-09-11 09:03:03.291727 2024-09-11 09:03:03.291733 1055f3a4-6f8d-45c1-b687-3dfccce6f791 {"md5": "a692d5f4e564c0c77a1dc65900ce071d", "pid": "953324559", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1238716-2", "source": "GND"}], "variant_name": ["St. Bruno", "Sankt Bruno", "Pfarrei Sankt Bruno", "Sankt Bruno"], "preferred_name": "Pfarrei St. Bruno", "country_associated": "gw", "variant_access_point": ["St. Bruno. Niederwerrn", "Sankt Bruno. Niederwerrn", "Pfarrei Sankt Bruno. Niederwerrn", "Sankt Bruno. Niederwerrn . Ehemalige Vorzugsbenennung SWD"], "authorized_access_point": "Pfarrei St. Bruno. Niederwerrn", "biographical_information": ["Kath. Kirchengemeinde"]} 1 +2024-09-11 09:03:03.357552 2024-09-11 09:03:03.357556 d5a4b122-4d86-4ea6-ba70-34fb23c87a55 {"md5": "62a376eb2d7a7602d98dfc8d5c2a040e", "pid": "953324974", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1402505-X", "source": "GND"}], "preferred_name": "Progress in Electromagnetics Research Symposium", "country_associated": "xxu", "authorized_access_point": "Progress in Electromagnetics Research Symposium, 1991, Boston, Mass."} 1 +2024-09-11 09:03:03.41397 2024-09-11 09:03:03.413972 810e6465-9dd0-4e85-88e9-97ae5b0c2f1c {"md5": "a13f60eec04236e575c78d691bae9594", "pid": "953476359", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5271305-2", "source": "GND"}], "variant_name": ["Rektorat Polskiej Misji Katolickiej w Niemczech", "Polnische Katholische Mission in Deutschland", "Deutsche Bischofskonferenz für die polnischsprachige Seelsorge in Deutschland", "DBK für die polnischsprachige Seelsorge in Deutschland", "Delegatur der Deutschen Bischofskonferenz für die polnischsprachige Seelsorge in Deutschland", "Delegatur der DBK für die polnischsprachige Seelsorge in Deutschland", "PMK"], "preferred_name": "Polska Misja Katolicka w Niemczech", "country_associated": "gw", "variant_access_point": ["Rektorat Polskiej Misji Katolickiej w Niemczech", "Polnische Katholische Mission in Deutschland", "Deutsche Bischofskonferenz für die polnischsprachige Seelsorge in Deutschland", "DBK für die polnischsprachige Seelsorge in Deutschland", "Delegatur der Deutschen Bischofskonferenz für die polnischsprachige Seelsorge in Deutschland", "Delegatur der DBK für die polnischsprachige Seelsorge in Deutschland", "PMK. Abkuerzung"], "authorized_access_point": "Polska Misja Katolicka w Niemczech", "biographical_information": ["Sitz: anfangs Würzburg, später Hannover"]} 1 +2024-09-11 09:03:03.48125 2024-09-11 09:03:03.481253 7d996138-2acf-4077-b52e-4b74a0792d4a {"md5": "605b0e0c1c7b16dc97a1cab4e6f9ac8e", "pid": "953477061", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5271371-4", "source": "GND"}], "variant_name": ["Leibniz-Gemeinschaft", "Leibniz Association", "Wissenschaftsgemeinschaft Gottfried Wilhelm Leibniz. Senat", "WGL", "Wissenschaftsgemeinschaft Gottfried Wilhelm Leibniz e.V."], "preferred_name": "Wissenschaftsgemeinschaft Gottfried Wilhelm Leibniz", "country_associated": "gw", "variant_access_point": ["Leibniz-Gemeinschaft", "Leibniz Association", "Wissenschaftsgemeinschaft Gottfried Wilhelm Leibniz. Senat", "WGL. Abkuerzung", "Wissenschaftsgemeinschaft Gottfried Wilhelm Leibniz e.V.. Unveraenderte Form"], "date_of_establishment": "31.03.1997", "parallel_access_point": ["Leibniz-Gemeinschaft"], "authorized_access_point": "Wissenschaftsgemeinschaft Gottfried Wilhelm Leibniz", "biographical_information": ["Hauptsitz/Verwaltungssitz: Bonn, Sitz des Vereins: Berlin; verbindet knapp 100 eigenständige Forschungseinrichtungen"]} 1 +2024-09-11 09:03:03.540342 2024-09-11 09:03:03.540345 2cbc7016-7f2e-447d-858f-594c43eff7a7 {"md5": "28a1bc3716a23cefb0a830862f11398f", "pid": "953483401", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5271962-5", "source": "GND"}], "preferred_name": "Düsseldorfer Bläserquintett", "country_associated": "gw", "authorized_access_point": "Düsseldorfer Bläserquintett"} 1 +2024-09-11 09:03:03.59636 2024-09-11 09:03:03.596364 fa6a41ab-bb99-4fa5-8db1-892aa07b3d3e {"md5": "1ca09d08d451a1e8286ccca184f4323f", "pid": "953537013", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5272709-9", "source": "GND"}], "variant_name": ["Technology Forecast Roundtable for Innovation, 1", "Table Ronde sur les Prévisions Technologiques, 1", "Inaugural Technology Forecast Roundtable"], "preferred_name": "Inaugural Technology Forecast Round Table", "country_associated": "xxc", "variant_access_point": ["Technology Forecast Roundtable for Innovation, 1, 1996, Ottawa", "Table Ronde sur les Prévisions Technologiques, 1, 1996, Ottawa", "Inaugural Technology Forecast Roundtable, 1996, Ottawa"], "authorized_access_point": "Inaugural Technology Forecast Round Table, 1996, Ottawa"} 1 +2024-09-11 09:03:03.712071 2024-09-11 09:03:03.712075 92d6e3d1-c3a1-48cd-a755-534c570ba20d {"md5": "aa12bc4b0757f9c967fd8ebf3eaef1ba", "pid": "95360795X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5273344-0", "source": "GND"}], "preferred_name": "Workshop on Health Education about Drugs (Medicines), 1", "country_associated": "sp", "authorized_access_point": "Workshop on Health Education about Drugs (Medicines), 1, 1988, Madrid"} 1 +2024-09-11 09:03:05.135802 2024-09-11 09:03:05.135805 33d965a6-f35b-4b74-bdc7-c6f37159b295 {"md5": "db16b861faab864e1d2d1343ba0c71e0", "pid": "954559592", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5292555-9", "source": "GND"}], "variant_name": ["VÖK-Neurologieseminar, 3"], "preferred_name": "Neurologieseminar, 3", "country_associated": "au", "variant_access_point": ["VÖK-Neurologieseminar, 3, 1997, Villach"], "authorized_access_point": "Neurologieseminar, 3, 1997, Villach"} 1 +2024-09-11 09:03:03.77096 2024-09-11 09:03:03.770963 eb6e51d4-e1f6-45e2-9bb8-0073488986f3 {"md5": "0805756549a0806a43c44b1e47c02b11", "pid": "953608573", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5273406-7", "source": "GND"}], "variant_name": ["Aerospace Sciences Meeting and Exhibit, 35"], "preferred_name": "Aerospace Sciences Meeting, 35", "country_associated": "xxu", "variant_access_point": ["Aerospace Sciences Meeting and Exhibit, 35, 1997, Reno, Nev."], "authorized_access_point": "Aerospace Sciences Meeting, 35, 1997, Reno, Nev."} 1 +2024-09-11 09:03:03.834811 2024-09-11 09:03:03.834816 3531c0ed-7f08-47b1-a027-3bfabe62539e {"md5": "043f9fef7d9cc4f406f8ccab06e73b93", "pid": "95364474X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5276879-X", "source": "GND"}], "variant_name": ["Amt für Wirtschaftsförderung und Regionalplanung"], "preferred_name": "Landkreis Aschersleben-Staßfurt. Amt für Wirtschaftsförderung und Regionalplanung", "country_associated": "gw", "variant_access_point": ["Amt für Wirtschaftsförderung und Regionalplanung. Landkreis Aschersleben-Staßfurt"], "authorized_access_point": "Landkreis Aschersleben-Staßfurt. Amt für Wirtschaftsförderung und Regionalplanung"} 1 +2024-09-11 09:03:03.904113 2024-09-11 09:03:03.904116 585272d2-5cc6-469e-ba6f-0fa7c3150138 {"md5": "9055a4a07396d5cef73da46bbb116dd5", "pid": "953644820", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5276887-9", "source": "GND"}], "preferred_name": "Society of Plastics Engineers. Plastics Analysis Division", "authorized_access_point": "Society of Plastics Engineers. Plastics Analysis Division"} 1 +2024-09-11 09:03:03.996418 2024-09-11 09:03:03.996424 39d3eacc-364b-45d8-854f-b39c02ffd6a2 {"md5": "f39902d63438ff81a9e4f6aa41b74433", "pid": "953669033", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5279242-0", "source": "GND"}], "variant_name": ["ICWS", "Stichting International Centre of Water Studies"], "preferred_name": "International Centre of Water Studies", "variant_access_point": ["ICWS. Abkuerzung", "Stichting International Centre of Water Studies"], "authorized_access_point": "International Centre of Water Studies"} 1 +2024-09-11 09:03:04.068752 2024-09-11 09:03:04.068756 65b26362-5c53-409d-8482-a57fc3c59172 {"md5": "76b4ebfda30cae5266e52768aef6774c", "pid": "953777839", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5279858-6", "source": "GND"}], "variant_name": ["Bettfedernfabrik Straus und Cie.", "Straus & Cie.", "Straus und Cie."], "preferred_name": "Bettfedernfabrik Straus & Cie.", "variant_access_point": ["Bettfedernfabrik Straus und Cie.", "Straus & Cie.", "Straus und Cie."], "authorized_access_point": "Bettfedernfabrik Straus & Cie."} 1 +2024-09-11 09:03:04.127584 2024-09-11 09:03:04.127587 4ba020f9-4d49-4472-b5dc-27bd80357e8f {"md5": "809813af08ec4c0b15441d82e0d6ae83", "pid": "953979687", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5280916-X", "source": "GND"}], "preferred_name": "Société d'Emulation des Côtes-D'Armor", "country_associated": "fr", "authorized_access_point": "Société d'Emulation des Côtes-D'Armor"} 1 +2024-09-11 09:03:04.189921 2024-09-11 09:03:04.189923 e09e0768-0ada-41ae-936f-e19e5590cedc {"md5": "d2b99d11a931e530feaec550253cd1fc", "pid": "953980545", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5280998-5", "source": "GND"}], "variant_name": ["DKP-Ortsgruppe", "DKP"], "preferred_name": "Deutsche Kommunistische Partei. Ortsgruppe", "country_associated": "gw", "variant_access_point": ["DKP-Ortsgruppe. Rünthe", "DKP. Rünthe"], "authorized_access_point": "Deutsche Kommunistische Partei. Ortsgruppe. Rünthe"} 1 +2024-09-11 09:03:04.246553 2024-09-11 09:03:04.246557 dd4eafcf-e3f3-4f18-a615-b366148861a8 {"md5": "688f4f993e18b3986261372a151744ea", "pid": "954069773", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2171463-0", "source": "GND"}], "preferred_name": "Lafarge-Perlmooser AG", "country_associated": "au", "date_of_termination": "24.08.2006", "date_of_establishment": "XX.XX.1997", "authorized_access_point": "Lafarge-Perlmooser AG"} 1 +2024-09-11 09:03:04.307 2024-09-11 09:03:04.307003 c7ef8198-d144-4dd5-8a5d-87ef78938d3c {"md5": "fe0101f88e229a9a9712954e459f855c", "pid": "954132491", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5284476-6", "source": "GND"}], "preferred_name": "Mecklenburgischer Thierschutz-Verein. Abteilung", "authorized_access_point": "Mecklenburgischer Thierschutz-Verein. Abteilung. Parchim"} 1 +2024-09-11 09:03:04.380559 2024-09-11 09:03:04.380562 c0015821-2cf8-45a3-8220-5d84a0c0a2a3 {"md5": "19846a37fbe3c23c88565d54e74f3e4e", "pid": "954184165", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1238042-8", "source": "GND"}], "variant_name": ["Bischöfliches Knabenseminar St. Joseph", "Bischöfliches Knabenseminar Sankt Joseph"], "preferred_name": "Bischöfliches Knabenseminar Sankt Joseph", "variant_access_point": ["Bischöfliches Knabenseminar St. Joseph. Dillingen a.d. Donau", "Bischöfliches Knabenseminar Sankt Joseph. Ehemalige Vorzugsbenennung SWD"], "authorized_access_point": "Bischöfliches Knabenseminar Sankt Joseph. Dillingen a.d. Donau"} 1 +2024-09-11 09:03:04.438975 2024-09-11 09:03:04.438978 bc8fb57b-1298-4c0d-9bd2-011b7ecc0c39 {"md5": "8ec112ea9d315a2d709dfadf12ad4f45", "pid": "954255011", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2171972-X", "source": "GND"}], "variant_name": ["Humboldt-Universität zu Berlin. Institut für Kultur- und Kunstwissenschaften. Musikwissenschaftliches Seminar", "Musikwissenschaftliches Seminar"], "preferred_name": "Humboldt-Universität zu Berlin. Musikwissenschaftliches Seminar", "country_associated": "gw", "variant_access_point": ["Humboldt-Universität zu Berlin. Institut für Kultur- und Kunstwissenschaften. Musikwissenschaftliches Seminar", "Musikwissenschaftliches Seminar. Berlin"], "date_of_establishment": "ca. Wintersemester 1996/1997 bis 2008", "authorized_access_point": "Humboldt-Universität zu Berlin. Musikwissenschaftliches Seminar"} 1 +2024-09-11 09:03:05.207198 2024-09-11 09:03:05.207201 4e9dfa7f-edc2-46dd-ae3f-a441654705a5 {"md5": "6713bc78853add1d7ad3008bf855e349", "pid": "954569601", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5293545-0", "source": "GND"}], "preferred_name": "Meždunarodnaja Konferencija po Teorii Oboloček i Plastin, 16", "authorized_access_point": "Meždunarodnaja Konferencija po Teorii Oboloček i Plastin, 16, 1993, Nižnij Novgorod"} 1 +2024-09-11 09:03:04.497362 2024-09-11 09:03:04.497366 42f128aa-e246-4e97-9344-062b3c41b5ce {"md5": "374712bfca00b2d74eab6ac80c06de5f", "pid": "954328426", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2172197-X", "source": "GND"}], "variant_name": ["German-Chinese Joint Seminar on Recent Developments in Coastal Engineering, 1"], "preferred_name": "German Chinese Joint Seminar on Recent Developments in Coastal Engineering, 1", "variant_access_point": ["German-Chinese Joint Seminar on Recent Developments in Coastal Engineering, 1, 1997, Hasenwinkel, Bibow"], "authorized_access_point": "German Chinese Joint Seminar on Recent Developments in Coastal Engineering, 1, 1997, Hasenwinkel, Bibow"} 1 +2024-09-11 09:03:04.567473 2024-09-11 09:03:04.567478 ed865d92-5ec9-40ed-9baf-d327c37a37f6 {"md5": "c7894861ecf7388596f0ab693d18d285", "pid": "954330803", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5286274-4", "source": "GND"}], "preferred_name": "Deutscher Frauenverein für Krankenpflege in den Kolonien. Landesverein Bayern", "authorized_access_point": "Deutscher Frauenverein für Krankenpflege in den Kolonien. Landesverein Bayern"} 1 +2024-09-11 09:03:04.627837 2024-09-11 09:03:04.627841 fef5095c-589d-4b1b-b15c-a10d34604c9a {"md5": "aab6506a5dd870ba6aba6787fd90998c", "pid": "954352610", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5286693-2", "source": "GND"}], "variant_name": ["Türkei. Maliye Bakanlığı. Bütçe ve Mali Kontrol Genel Müdürlüğü", "Bütçe ve Mali Kontrol Genel Müdürlüğü"], "preferred_name": "Türkei. Bütçe ve Mali Kontrol Genel Müdürlüğü", "country_associated": "tu", "variant_access_point": ["Türkei. Maliye Bakanlığı. Bütçe ve Mali Kontrol Genel Müdürlüğü", "Bütçe ve Mali Kontrol Genel Müdürlüğü. Türkei"], "authorized_access_point": "Türkei. Bütçe ve Mali Kontrol Genel Müdürlüğü"} 1 +2024-09-11 09:03:04.68987 2024-09-11 09:03:04.689874 d605c1aa-967c-4a07-9061-ece20cd22451 {"md5": "fb2e63348c6d34d2d9aea42a84f3ee97", "pid": "954405250", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5287976-8", "source": "GND"}], "variant_name": ["Großherzogliches Justizministerium", "Justizministerium"], "preferred_name": "Mecklenburg. Justizministerium", "variant_access_point": ["Großherzogliches Justizministerium. Mecklenburg", "Justizministerium. Mecklenburg"], "authorized_access_point": "Mecklenburg. Justizministerium"} 1 +2024-09-11 09:03:04.7508 2024-09-11 09:03:04.750806 510b23ff-79ac-4e99-b8ca-9f2218360e49 {"md5": "76e1c1a5a3e9585c898c7bf507185db4", "pid": "954405986", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5288049-7", "source": "GND"}], "variant_name": ["Preußen. Ministerium für Volkswohlfahrt. Landesbeirat für Jugendpflege, Jugendbewegung und Leibesübungen", "Landesbeirat für Jugendpflege, Jugendbewegung un Leibesübungen"], "preferred_name": "Preußen. Landesbeirat für Jugendpflege, Jugendbewegung und Leibesübungen", "variant_access_point": ["Preußen. Ministerium für Volkswohlfahrt. Landesbeirat für Jugendpflege, Jugendbewegung und Leibesübungen", "Landesbeirat für Jugendpflege, Jugendbewegung un Leibesübungen. Preußen"], "authorized_access_point": "Preußen. Landesbeirat für Jugendpflege, Jugendbewegung und Leibesübungen"} 1 +2024-09-11 09:03:04.823887 2024-09-11 09:03:04.82389 18cb65c4-0df6-4f40-b982-38d12f419755 {"md5": "c07898f10585b587fd3e130ec55a61cd", "pid": "954495098", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5289544-0", "source": "GND"}], "variant_name": ["Universidade de Coimbra. Faculdade de Direito. Centro de Direito do Ordenamento, do Urbanismo e do Ambiente", "Universidade de Coimbra. Centro de Estudos de Direito do Ordenamento, do Urbanismo e do Ambiente", "CEDOUA"], "preferred_name": "Centro de Estudos de Direito do Ordenamento, do Urbanismo e do Ambiente", "country_associated": "po", "variant_access_point": ["Universidade de Coimbra. Faculdade de Direito. Centro de Direito do Ordenamento, do Urbanismo e do Ambiente", "Universidade de Coimbra. Centro de Estudos de Direito do Ordenamento, do Urbanismo e do Ambiente", "CEDOUA. Abkuerzung"], "authorized_access_point": "Centro de Estudos de Direito do Ordenamento, do Urbanismo e do Ambiente"} 1 +2024-09-11 09:03:04.879023 2024-09-11 09:03:04.879027 d754f8b0-07f9-4f55-88fa-6732924f8642 {"md5": "9e38cc7dba373be89115b0f019675904", "pid": "954534530", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5290198-1", "source": "GND"}], "variant_name": ["Düsseldorfer Wohnungsgenossenschaft eG", "Wohnungsgenossenschaft", "DWG"], "preferred_name": "Düsseldorfer Wohnungsgenossenschaft", "country_associated": "gw", "variant_access_point": ["Düsseldorfer Wohnungsgenossenschaft eG. Unveraenderte Form", "Wohnungsgenossenschaft. Düsseldorf", "DWG. Abkuerzung"], "date_of_establishment": "1898", "authorized_access_point": "Düsseldorfer Wohnungsgenossenschaft"} 1 +2024-09-11 09:03:04.946812 2024-09-11 09:03:04.946815 b7241603-b3b4-4e28-955f-cc5e12dcb5d8 {"md5": "06a22d98cd265ff1821d77a5bf6cf8dc", "pid": "954535286", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5290267-5", "source": "GND"}], "variant_name": ["Ki"], "preferred_name": "Freundeskreis Mit Kindern Wachsen", "country_associated": "gw", "variant_access_point": ["Ki. Abkuerzung"], "authorized_access_point": "Freundeskreis Mit Kindern Wachsen"} 1 +2024-09-11 09:03:05.014026 2024-09-11 09:03:05.01403 93be1597-fe4a-48dd-a1cf-227f7ca4c2a9 {"md5": "4b97937cc341b279e035ac8f5f67745c", "pid": "95454157X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5290835-5", "source": "GND"}], "variant_name": ["SMLTA"], "preferred_name": "Symposium on MAGLEV Train Application in China", "country_associated": "cc", "variant_access_point": ["SMLTA, 1997, Hangzhou"], "authorized_access_point": "Symposium on MAGLEV Train Application in China, 1997, Hangzhou"} 1 +2024-09-11 09:03:05.075822 2024-09-11 09:03:05.075826 62c02120-01dc-437a-aa6f-e290cb03878a {"md5": "36007d524fa80c26613ae72adadb4db4", "pid": "954552873", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5291905-5", "source": "GND"}], "preferred_name": "Versuchs- und Entwicklungsstelle des Straßenwesens. Fachgruppe Straßenverkehrstechnik", "authorized_access_point": "Versuchs- und Entwicklungsstelle des Straßenwesens. Berlin, Ost. Fachgruppe Straßenverkehrstechnik"} 1 +2024-09-11 09:03:05.276134 2024-09-11 09:03:05.276139 1464bc49-f9a7-454b-8735-23911933a480 {"md5": "7d338ae58e0b775f3d89f57111a998fe", "pid": "954571398", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5293720-3", "source": "GND"}], "preferred_name": "Journées de la Recherche Cunicole en France, 5", "country_associated": "fr", "authorized_access_point": "Journées de la Recherche Cunicole en France, 5, 1990, Paris"} 1 +2024-09-11 09:03:05.335595 2024-09-11 09:03:05.335598 fde4e117-768f-45e4-8fe5-5bca63e81df4 {"md5": "c6769f47743352531a6e346570fbaba4", "pid": "954574354", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5294001-9", "source": "GND"}], "preferred_name": "Pferdefachtagung, 3", "authorized_access_point": "Pferdefachtagung, 3, 1992, Augsburg"} 1 +2024-09-11 09:03:05.397019 2024-09-11 09:03:05.397023 5e9771bb-7b99-4fe2-a767-5405c863b8ca {"md5": "c54ff15e5ce7d89c8c93cf8eaf38cbf6", "pid": "954587693", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5295271-X", "source": "GND"}], "variant_name": ["Meždunarodnyj Seminar po Problemam Fiziki Vysokich Ėnergij i Kvantovoj Teorii Polja, 5", "Meždunarodnyj Seminar Problemy Fiziki Vysokich Ėnergij i Kvantovoj Teorii Polja, 5"], "preferred_name": "International Seminar on High Energy Physics and Quantum Field Theory, 5", "variant_access_point": ["Meždunarodnyj Seminar po Problemam Fiziki Vysokich Ėnergij i Kvantovoj Teorii Polja, 5, 1982, Protvino", "Meždunarodnyj Seminar Problemy Fiziki Vysokich Ėnergij i Kvantovoj Teorii Polja, 5, 1982, Protvino"], "authorized_access_point": "International Seminar on High Energy Physics and Quantum Field Theory, 5, 1982, Protvino"} 1 +2024-09-11 09:03:05.460073 2024-09-11 09:03:05.460077 c78b2aed-fff3-453f-931e-d9f77248d34d {"md5": "aa5ba3b7c644b011b67f25e36c8414d7", "pid": "954589262", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5295421-3", "source": "GND"}], "variant_name": ["Politechnika Świe̜tokrzyska. Instytut Transportu"], "preferred_name": "Instytut Transportu", "country_associated": "pl", "variant_access_point": ["Politechnika Świe̜tokrzyska. Kielce. Instytut Transportu"], "authorized_access_point": "Instytut Transportu. Kielce"} 1 +2024-09-11 09:03:05.535309 2024-09-11 09:03:05.535312 29900f0f-0a7d-4763-aaea-5b3b08e2d11f {"md5": "1664ef1fcbe5cf03dc6228c4857a89bf", "pid": "954590848", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5295565-5", "source": "GND"}], "variant_name": ["International Workshop on Optimal Performance of Civil Infrastructure Systems", "Optimal Performance of Civil Infrastructure Systems", "NSF/ASCE Workshop on Optimal Performance of Civil Infrastructure Systems"], "preferred_name": "International Workshop on Optimal Performance of Civil Infrastructure Systems", "country_associated": "xxu", "variant_access_point": ["International Workshop on Optimal Performance of Civil Infrastructure Systems, 1997, Portland, OR", "Optimal Performance of Civil Infrastructure Systems, 1997, Portland, OR", "NSF/ASCE Workshop on Optimal Performance of Civil Infrastructure Systems, 1997, Portland, OR"], "authorized_access_point": "International Workshop on Optimal Performance of Civil Infrastructure Systems, 1997, Portland, Or."} 1 +2024-09-11 09:03:05.611067 2024-09-11 09:03:05.611074 4d1af5a5-cbcc-41db-b8d2-185f78845470 {"md5": "1340644c788cf6a8874327529f2fe87d", "pid": "954619595", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5296447-4", "source": "GND"}], "variant_name": ["Landesausschuß für Kriegsinvalidenfürsorge", "Württembergischer Landesausschuß für Kriegsinvalidenfürsorge"], "preferred_name": "Württemberg. Landesausschuß für Kriegsinvalidenfürsorge", "variant_access_point": ["Landesausschuß für Kriegsinvalidenfürsorge. Württemberg", "Württembergischer Landesausschuß für Kriegsinvalidenfürsorge"], "authorized_access_point": "Württemberg. Landesausschuß für Kriegsinvalidenfürsorge"} 1 +2024-09-11 09:03:05.69853 2024-09-11 09:03:05.698534 7d342735-94e8-4325-8510-5aecfcdf0601 {"md5": "46a869b4f857f65da9355ace6a53dc51", "pid": "954621131", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5296598-3", "source": "GND"}], "preferred_name": "Konferenz über die Menschliche Schilddrüse, 5", "country_associated": "gw", "authorized_access_point": "Konferenz über die Menschliche Schilddrüse, 5, 1981, Homburg, Saar"} 1 +2024-09-11 09:03:05.763569 2024-09-11 09:03:05.763572 3b3f9386-11a7-4386-8b3e-e80b995f70ae {"md5": "15a13ed5451a360a6ecf2746a6f2b454", "pid": "954862805", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5297510-1", "source": "GND"}], "variant_name": ["BR"], "preferred_name": "Bread Research Institute of Australia", "country_associated": "at", "variant_access_point": ["BR. Abkuerzung"], "authorized_access_point": "Bread Research Institute of Australia. North Ryde"} 1 +2024-09-11 09:03:05.833267 2024-09-11 09:03:05.833273 fda2dcc1-5b40-4b3c-bf42-ba0bd1371945 {"md5": "4fe57f1d59a7edd1fb73f0e30921f69c", "pid": "954863127", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5297542-3", "source": "GND"}], "preferred_name": "Deutscher Gewerkschaftsbund. Kreis Region Düren-Euskirchen", "country_associated": "gw", "date_of_termination": "XX.XX.2001", "date_of_establishment": "25.10.1994", "authorized_access_point": "Deutscher Gewerkschaftsbund. Kreis Region Düren-Euskirchen", "biographical_information": ["Sitz: Düren"]} 1 +2024-09-11 09:03:05.904505 2024-09-11 09:03:05.90451 20515841-5845-44c8-920e-ad29c810e2b1 {"md5": "b485a571d686de678fbad793ea63dba5", "pid": "954876539", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2173378-8", "source": "GND"}], "preferred_name": "Tagung für Konditorei-Technologie, 3", "country_associated": "gw", "authorized_access_point": "Tagung für Konditorei-Technologie, 3, 1997, Detmold"} 1 +2024-09-11 09:03:05.981557 2024-09-11 09:03:05.981563 df41c9ef-c35d-4623-8b1f-9c0d7d9411a4 {"md5": "10e7accf3783a9802cb3eadcfd30d7a2", "pid": "954882571", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2173391-0", "source": "GND"}], "variant_name": ["Round-Table-Gespräch The New Labour Government in Great Britain: Assessment of the First 100 Days"], "preferred_name": "Round-Table-Gespräch Die Neue Labour-Regierung in Großbritannien: Zwischenbilanz der Ersten Hundert Tage", "variant_access_point": ["Round-Table-Gespräch The New Labour Government in Great Britain: Assessment of the First 100 Days, 1997, Berlin"], "authorized_access_point": "Round-Table-Gespräch Die Neue Labour-Regierung in Großbritannien: Zwischenbilanz der Ersten Hundert Tage, 1997, Berlin"} 1 +2024-09-11 09:03:06.137978 2024-09-11 09:03:06.137984 3bf37e39-5e37-4a45-9d53-3c661ed0b6b2 {"md5": "30daf9455474135329999a9131876cf6", "pid": "955030080", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3027010-8", "source": "GND"}], "preferred_name": "Conférence d'Experts Gouvernementaux sur l'Emploi de Certaines Armes Conventionnelles, 2", "country_associated": "sz", "authorized_access_point": "Conférence d'Experts Gouvernementaux sur l'Emploi de Certaines Armes Conventionnelles, 2, 1976, Lugano"} 1 +2024-09-11 09:03:06.206691 2024-09-11 09:03:06.206695 565b8a53-cd21-4b00-9297-63224afa45c7 {"md5": "0b01882b086721ba92952e62fd1559e5", "pid": "955046475", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3029301-7", "source": "GND"}], "preferred_name": "Special Technical Session on Electrostatics in Polymer Processing and Charge Monitoring", "country_associated": "xxc", "authorized_access_point": "Special Technical Session on Electrostatics in Polymer Processing and Charge Monitoring, 1993, Toronto"} 1 +2024-09-11 09:03:06.263464 2024-09-11 09:03:06.263469 7f90fc8a-0565-45cc-854d-fc5966a53b6d {"md5": "db1c9b3414c2e68594ed62de1a296ed1", "pid": "955064813", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3031735-6", "source": "GND"}], "preferred_name": "Erfahrungsaustausch Pflanzenschutzmittel und Pflanzenschutzgeräte Herstellende Industrie mit dem Landespflanzenschutzdienst, 29", "country_associated": "gw", "authorized_access_point": "Erfahrungsaustausch Pflanzenschutzmittel und Pflanzenschutzgeräte Herstellende Industrie mit dem Landespflanzenschutzdienst, 29, 1990, Mainz"} 1 +2024-09-11 09:03:06.324487 2024-09-11 09:03:06.324491 d8362360-087c-484b-a139-8b33104710a3 {"md5": "385a5bb236d2078054acd5a3eea4bbc4", "pid": "955092523", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3035272-1", "source": "GND"}], "variant_name": ["Japan-USA Joint Meeting on Aquaculture, 23"], "preferred_name": "Japan USA Joint Meeting on Aquaculture, 23", "country_associated": "ja", "variant_access_point": ["Japan-USA Joint Meeting on Aquaculture, 23, 1994, Ise, Mie-ken"], "authorized_access_point": "Japan USA Joint Meeting on Aquaculture, 23, 1994, Ise, Mie-ken"} 1 +2024-09-11 09:03:06.383511 2024-09-11 09:03:06.383514 332210b7-b76d-4682-bbc8-46212c99a2c7 {"md5": "ac80fe80fb855258c500c1ab11eaf5b3", "pid": "95511182X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3037663-4", "source": "GND"}], "variant_name": ["Edmund-Siemers-Stiftung", "Siemers-Stiftung", "Edmund Siemers-Stiftung", "Siemers-Stiftung", "EdmundSiemersStiftung"], "preferred_name": "Edmund Siemers-Stiftung", "country_associated": "gw", "variant_access_point": ["Edmund-Siemers-Stiftung", "Siemers-Stiftung", "Edmund Siemers-Stiftung. Hamburg", "Siemers-Stiftung. Hamburg", "EdmundSiemersStiftung. Hamburg"], "date_of_establishment": "29.11.1995", "authorized_access_point": "Edmund Siemers-Stiftung", "biographical_information": ["Die gemeinnützige Edmund Siemers-Stiftung wurde durch die Destinatäre der ehemaligen Siemers-Stiftung (im Februar 1919 gegr.) errichtet und durch den Hamburger Senat am 13.12.1995 genehmigt"]} 1 +2024-09-11 09:03:06.441994 2024-09-11 09:03:06.441998 22f19ca6-133a-453f-ac5a-0491ed236b87 {"md5": "f7ecc0dcde888fe336a13de14bb8cb83", "pid": "95511201X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3037687-7", "source": "GND"}], "variant_name": ["Tennisklub Lindenau"], "preferred_name": "Tennisclub Lindenau", "country_associated": "gw", "variant_access_point": ["Tennisklub Lindenau. Großauheim"], "authorized_access_point": "Tennisclub Lindenau. Großauheim"} 1 +2024-09-11 09:03:06.502537 2024-09-11 09:03:06.50254 39eaea01-eb66-4a43-9d42-ffe3efffdd8c {"md5": "fe48eb590ceda92695c12648c2ba682e", "pid": "955116635", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3038222-1", "source": "GND"}], "preferred_name": "Sudetendeutsche Landsmannschaft in Argentinien", "country_associated": "ag", "authorized_access_point": "Sudetendeutsche Landsmannschaft in Argentinien"} 1 +2024-09-11 09:03:06.570234 2024-09-11 09:03:06.570238 d15e7e32-85ea-48de-8315-c743e761a48e {"md5": "3fb67f53afa1d94bee8cd402e937533c", "pid": "955119413", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5298436-9", "source": "GND"}], "variant_name": ["USA. House of Representatives. Committee on the Judiciary. Subcommittee on International Law, Immigration, and Refugees", "Subcommittee on International Law, Immigration, and Refugees"], "preferred_name": "USA. Subcommittee on International Law, Immigration, and Refugees", "country_associated": "xxu", "variant_access_point": ["USA. House of Representatives. Committee on the Judiciary. Subcommittee on International Law, Immigration, and Refugees", "Subcommittee on International Law, Immigration, and Refugees. USA"], "authorized_access_point": "USA. Subcommittee on International Law, Immigration, and Refugees"} 1 +2024-09-11 09:03:06.630355 2024-09-11 09:03:06.630357 67e9cc6b-2004-42e5-867f-1609f2322349 {"md5": "ea15f4e61d6762a0444b97d469f9f808", "pid": "955121647", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5298662-7", "source": "GND"}], "preferred_name": "Arbeitskreis Heimatgeschichte und Brauchtumpflege", "country_associated": "gw", "authorized_access_point": "Arbeitskreis Heimatgeschichte und Brauchtumpflege. Altenkirchen; Weyerbusch"} 1 +2024-09-11 09:03:06.690954 2024-09-11 09:03:06.690958 2e988a95-278b-4813-80cf-27b847dd4971 {"md5": "a05b04122b98013085799c0e1a49a318", "pid": "955190908", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3039299-8", "source": "GND"}], "variant_name": ["Potchefstroom University for Christian Higher Education. Navorsingseenheid vir Fonetiek en Fonologie", "Research Unit for Phonetics and Phonology", "Navorsingseenheid vir Fonetiek en Fonologie"], "preferred_name": "Potchefstroom University for Christian Higher Education. Research Unit for Phonetics and Phonology", "country_associated": "sa", "variant_access_point": ["Potchefstroom University for Christian Higher Education. Navorsingseenheid vir Fonetiek en Fonologie", "Research Unit for Phonetics and Phonology. Potchefstroom", "Navorsingseenheid vir Fonetiek en Fonologie. Potchefstroom"], "authorized_access_point": "Potchefstroom University for Christian Higher Education. Research Unit for Phonetics and Phonology"} 1 +2024-09-11 09:03:06.762195 2024-09-11 09:03:06.762199 5c4af548-20ee-4314-b54f-e6d3310b2456 {"md5": "c5a49f312b768c3b626bf4d7b3a73bec", "pid": "955382378", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5302736-X", "source": "GND"}], "variant_name": ["Jugoslovenski Medjunarodni Simposzij Savremena Proizvodnja I Prerada Mlijeka, 9", "Yugoslav International Symposium on Modern Milk Production and Processing, 9", "Mednarodni Siposzij Sodobna Proizvodnja in Predelava Mleka, 9", "Medjunarodni Simposzij Savremena Proizvodnja I Prerada Mlijeka, 9", "International Symposium on Modern Milk Production and Processing, 9"], "preferred_name": "Jugoslovanski Mednarodni Siposzij Sodobna Proizvodnja in Predelava Mleka, 9", "variant_access_point": ["Jugoslovenski Medjunarodni Simposzij Savremena Proizvodnja I Prerada Mlijeka, 9, 1990, Portorož", "Yugoslav International Symposium on Modern Milk Production and Processing, 9, 1990, Portorož", "Mednarodni Siposzij Sodobna Proizvodnja in Predelava Mleka, 9, 1990, Portorož", "Medjunarodni Simposzij Savremena Proizvodnja I Prerada Mlijeka, 9, 1990, Portorož", "International Symposium on Modern Milk Production and Processing, 9, 1990, Portorož"], "authorized_access_point": "Jugoslovanski Mednarodni Siposzij Sodobna Proizvodnja in Predelava Mleka, 9, 1990, Portorož"} 1 +2024-09-11 09:03:06.822895 2024-09-11 09:03:06.822901 3b988745-a61a-4443-b190-95414ffb56cd {"md5": "ee9c18ec453fac023307336d33cff789", "pid": "955401976", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5304597-X", "source": "GND"}], "preferred_name": "Alaskan Science Conference, 5", "authorized_access_point": "Alaskan Science Conference, 5, 1954", "biographical_information": ["In der Vorlage kein Ort"]} 1 +2024-09-11 09:03:06.881883 2024-09-11 09:03:06.881886 4caf8917-ae57-454a-8e61-c3741b7798aa {"md5": "86ac45823cba3d97e14dedf57dd45011", "pid": "955431425", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5306471-9", "source": "GND"}], "variant_name": ["Deep Water Rice Workshop", "Workshop on Deep-Water Rice", "Deep-Water Rice Workshop"], "preferred_name": "Workshop on Deep Water Rice", "variant_access_point": ["Deep Water Rice Workshop", "Workshop on Deep-Water Rice", "Deep-Water Rice Workshop"], "authorized_access_point": "Workshop on Deep Water Rice"} 1 +2024-09-11 09:03:06.942711 2024-09-11 09:03:06.942716 5a5e619b-d725-46dc-ac44-255f2babc5cc {"md5": "6e45b223c504aea51192f500c065e966", "pid": "955432774", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5306609-1", "source": "GND"}], "variant_name": ["Partei des Demokratischen Sozialismus. Landesverband Sachsen. AG Senioren", "Partei des Demokratischen Sozialismus. Landesverband Sachsen. Senioren-AG", "Seniorenarbeitsgemeinschaft Sachsen", "SAG'S"], "preferred_name": "Partei des Demokratischen Sozialismus. Landesverband Sachsen. Seniorenarbeitsgemeinschaft", "country_associated": "gw", "variant_access_point": ["Partei des Demokratischen Sozialismus. Landesverband Sachsen. AG Senioren", "Partei des Demokratischen Sozialismus. Landesverband Sachsen. Senioren-AG", "Seniorenarbeitsgemeinschaft Sachsen", "SAG'S. Abkuerzung"], "authorized_access_point": "Partei des Demokratischen Sozialismus. Landesverband Sachsen. Seniorenarbeitsgemeinschaft"} 1 +2024-09-11 09:03:07.005024 2024-09-11 09:03:07.005028 2f1687fa-76d5-4e44-bcde-35ac1a0700d8 {"md5": "cf8b3e392e0382792b9a90d9cd84811b", "pid": "955611423", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5309493-1", "source": "GND"}], "variant_name": ["Biersack, Verlag Franz"], "preferred_name": "Verlag Franz Biersack", "country_associated": "gw", "variant_access_point": ["Biersack, Verlag Franz. Magdeburg"], "authorized_access_point": "Verlag Franz Biersack. Magdeburg"} 1 +2024-09-11 09:03:07.063978 2024-09-11 09:03:07.063982 a42a1072-3b24-4eb2-a0cc-0ca5747ee6a2 {"md5": "36d47e29459dc2bd4e052c1b8a238d22", "pid": "955736374", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3040044-2", "source": "GND"}], "variant_name": ["Versammlung der Deutschen Philologen und Schulmänner, 2", "Conventus Philologorum Germaniae, 2"], "preferred_name": "Versammlung Deutscher Philologen und Schulmänner, 2", "variant_access_point": ["Versammlung der Deutschen Philologen und Schulmänner, 2, 1839, Mannheim", "Conventus Philologorum Germaniae, 2, 1839, Mannheim"], "authorized_access_point": "Versammlung Deutscher Philologen und Schulmänner, 2, 1839, Mannheim"} 1 +2024-09-11 09:03:07.125247 2024-09-11 09:03:07.125251 56c542c0-feda-4a58-9b0b-f7839ecb6de3 {"md5": "d3a61ca47865ad3b997b627ff99d9b91", "pid": "955740223", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5310488-2", "source": "GND"}], "variant_name": ["Förderverein zur Erhaltung und Restaurierung der Oberen Kirche Sankt Martin in Tomerdingen"], "preferred_name": "Förderverein zur Erhaltung und Restaurierung der Oberen Kirche St. Martin in Tomerdingen", "country_associated": "gw", "variant_access_point": ["Förderverein zur Erhaltung und Restaurierung der Oberen Kirche Sankt Martin in Tomerdingen"], "authorized_access_point": "Förderverein zur Erhaltung und Restaurierung der Oberen Kirche St. Martin in Tomerdingen"} 1 +2024-09-11 09:03:07.189118 2024-09-11 09:03:07.189123 d352a068-4bcb-4c8c-9942-d851152ed5d1 {"md5": "7519d193723bbaec9814b359c6e8c152", "pid": "955746256", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5311071-7", "source": "GND"}], "preferred_name": "Conference on Matrix Methods in Structural Mechanics, 3", "authorized_access_point": "Conference on Matrix Methods in Structural Mechanics, 3, 1971, Wright-Patterson, Ohio"} 1 +2024-09-11 09:03:07.247006 2024-09-11 09:03:07.247009 bd0a6719-95a0-44fb-98bd-d78d73a0a575 {"md5": "93c3ee7b2d75e2c6d275694ef0f4301e", "pid": "955966566", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2175772-0", "source": "GND"}], "variant_name": ["VDI-MEG-Kolloquium Agrartechnik"], "preferred_name": "Kolloquium Agrartechnik", "country_associated": "gw", "variant_access_point": ["VDI-MEG-Kolloquium Agrartechnik, 1997, Bonn"], "authorized_access_point": "Kolloquium Agrartechnik, 1997, Bonn"} 1 +2024-09-11 09:03:07.30569 2024-09-11 09:03:07.305693 f32d850a-c6f6-4480-afbb-3eaff0d66829 {"md5": "cda77939900b770bc0819a0c3c9a4842", "pid": "956291279", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2176771-3", "source": "GND"}], "variant_name": ["Anwaltstag, 50"], "preferred_name": "Deutscher Anwaltstag, 50", "country_associated": "gw", "variant_access_point": ["Anwaltstag, 50, 1999, Bonn"], "authorized_access_point": "Deutscher Anwaltstag, 50, 1999, Bonn"} 1 +2024-09-11 09:03:07.367954 2024-09-11 09:03:07.367959 baf7f8e6-489a-48d6-9885-671b58545e95 {"md5": "ff8e277224202fa2b7ce98be9a00aa66", "pid": "956483542", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1240434-2", "source": "GND"}], "variant_name": ["Winkelmann und Pannhoff GmbH", "Firma Winkelmann + Pannhoff", "W + P", "Fa. Winkelmann + Pannhoff", "W + P GmbH"], "preferred_name": "Winkelmann + Pannhoff GmbH", "country_associated": "gw", "variant_access_point": ["Winkelmann und Pannhoff GmbH", "Firma Winkelmann + Pannhoff", "W + P. Abkuerzung", "Fa. Winkelmann + Pannhoff", "W + P GmbH"], "authorized_access_point": "Winkelmann + Pannhoff GmbH", "biographical_information": ["1898 gegr. Unternehmen der Umformtechnik"]} 1 +2024-09-11 09:03:07.444752 2024-09-11 09:03:07.444756 07a7d578-be6f-4ee2-8c91-2d62f0ca0f54 {"md5": "898b82dee7d90345117bf3b7e4ba2365", "pid": "956528775", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5314705-4", "source": "GND"}], "preferred_name": "Ausstellung Mapplethorpe versus Rodin", "country_associated": "gw", "authorized_access_point": "Ausstellung Mapplethorpe versus Rodin, 1992, Düsseldorf"} 1 +2024-09-11 09:03:07.502733 2024-09-11 09:03:07.502735 851e019f-cccc-4cc3-8e96-5b924b9b0595 {"md5": "0804e995ec065a3ddd08ee83c2580b24", "pid": "956529445", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5314770-4", "source": "GND"}], "variant_name": ["Leichtathletik-Verband", "BLV"], "preferred_name": "Bremer Leichtathletik-Verband", "country_associated": "gw", "variant_access_point": ["Leichtathletik-Verband. Bremen", "BLV. Abkuerzung"], "authorized_access_point": "Bremer Leichtathletik-Verband"} 1 +2024-09-11 09:03:07.562665 2024-09-11 09:03:07.562668 3ef7c21c-0897-48c4-a299-b564ef4b56d2 {"md5": "1d422afeaa2f956b69075290d69a629b", "pid": "956539564", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5315764-3", "source": "GND"}], "variant_name": ["ITVA-Symposium Altlasten, 3"], "preferred_name": "Symposium Altlasten, 3", "variant_access_point": ["ITVA-Symposium Altlasten, 3, 1993, Hannover"], "authorized_access_point": "Symposium Altlasten, 3, 1993, Hannover"} 1 +2024-09-11 09:03:07.636434 2024-09-11 09:03:07.63644 e0a376e4-98ba-42a4-930e-72946b44ea10 {"md5": "233c14e6cc7bd105d7f8d8c3944d9b5b", "pid": "956546927", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5316500-7", "source": "GND"}], "preferred_name": "International Conference on the Engineering of Sport, 2", "country_associated": "xxk", "authorized_access_point": "International Conference on the Engineering of Sport, 2, 1998, Sheffield"} 1 +2024-09-11 09:03:07.701375 2024-09-11 09:03:07.701381 d1c8fe7e-213e-4cc1-9cf6-c6f3d457dcf9 {"md5": "56f3b5ab9bd413fef88b6cbcf1c58556", "pid": "956548660", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5316676-0", "source": "GND"}], "preferred_name": "Professional Engineer Review Course, Inc.", "country_associated": "xxu", "authorized_access_point": "Professional Engineer Review Course, Inc.. Northport, NY"} 1 +2024-09-11 09:03:07.805346 2024-09-11 09:03:07.805352 31318bca-4c9e-47a3-bffa-43a3a032b768 {"md5": "8dbe10beca378aacb1c50365d28f98fb", "pid": "956555225", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5317337-5", "source": "GND"}], "variant_name": ["Musée d'Art de Daimaru", "Kyōto Daimaru Museum", "Daimaru Museum"], "preferred_name": "Daimaru-Myūjiamu", "country_associated": "ja", "variant_access_point": ["Musée d'Art de Daimaru. Kyōto", "Kyōto Daimaru Museum", "Daimaru Museum. Kyōto"], "authorized_access_point": "Daimaru-Myūjiamu. Kyōto"} 1 +2024-09-11 09:03:07.881757 2024-09-11 09:03:07.88176 400bc36c-3109-4cdd-a36c-955da3d2e2d2 {"md5": "1db38503e963d417f6898617f685a993", "pid": "956579760", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5317586-4", "source": "GND"}], "preferred_name": "Landes-Immobiliar-Brandversicherungs-Anstalt des Königreichs Sachsen", "authorized_access_point": "Landes-Immobiliar-Brandversicherungs-Anstalt des Königreichs Sachsen. Dresden"} 1 +2024-09-11 09:03:07.958316 2024-09-11 09:03:07.95832 35c1b4ae-aaa4-4893-9969-73b5bbaffa17 {"md5": "7f46e325a29f5532006ef907ce0a81c3", "pid": "956627536", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2177680-5", "source": "GND"}], "variant_name": ["Basel. Polizei- und Militärdepartement. Stabsstelle Katastrophenvorsorge", "Stabsstelle Katastrophenvorsorge"], "preferred_name": "Basel. Stabsstelle Katastrophenvorsorge", "country_associated": "sz", "variant_access_point": ["Basel. Polizei- und Militärdepartement. Stabsstelle Katastrophenvorsorge", "Stabsstelle Katastrophenvorsorge. Basel"], "authorized_access_point": "Basel. Stabsstelle Katastrophenvorsorge"} 1 +2024-09-11 09:03:08.022374 2024-09-11 09:03:08.02238 9b1d5969-995e-487a-8923-4e04163767fd {"md5": "13fa7e6d9b45ebb45372b47eb5a189bf", "pid": "956749232", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5318634-5", "source": "GND"}], "variant_name": ["Banestyrelsen", "Dänemark. National Railway Agency", "National Railway Agency", "Dänemark. Railway Agency", "Railway Agency", "BS"], "preferred_name": "Dänemark. Banestyrelsen", "country_associated": "dk", "variant_access_point": ["Banestyrelsen. Dänemark", "Dänemark. National Railway Agency", "National Railway Agency. Dänemark", "Dänemark. Railway Agency", "Railway Agency. Dänemark", "BS. Abkuerzung"], "date_of_establishment": "01.01.1997", "authorized_access_point": "Dänemark. Banestyrelsen"} 1 +2024-09-11 09:03:08.089003 2024-09-11 09:03:08.089007 779ede2a-9b2f-4677-9c76-51a904395c08 {"md5": "c7c249eaa80fba9d5a1b8b94670866c2", "pid": "95679615X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5320605-8", "source": "GND"}], "preferred_name": "Wäller Rockinitiative e.V.", "country_associated": "gw", "authorized_access_point": "Wäller Rockinitiative e.V."} 1 +2024-09-11 09:03:08.174668 2024-09-11 09:03:08.174673 b3c6efd8-e2c7-4f5b-b06a-8eacce2975e8 {"md5": "ab7543cc93d570af510777782d32bc93", "pid": "956827195", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1602387-0", "source": "GND"}], "variant_name": ["Umweltschutz-Symposium, 3"], "preferred_name": "Kulmbacher Umweltschutz-Symposium, 3", "country_associated": "gw", "variant_access_point": ["Umweltschutz-Symposium, 3, 1994, Kulmbach"], "authorized_access_point": "Kulmbacher Umweltschutz-Symposium, 3, 1994, Kulmbach"} 1 +2024-09-11 09:03:08.235037 2024-09-11 09:03:08.235041 7d4f8fe8-9c2b-4aa0-b9c9-51fd3f14b6d7 {"md5": "8ac6f5f3f933ee7978b36959c77268db", "pid": "956831044", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5321386-5", "source": "GND"}], "variant_name": ["Verein für Beförderung der Pferdezucht", "Hannoverscher Verein zur Beförderung der Pferdezucht", "Verein zur Beförderung der Pferdezucht", "Hannoverscher Verein für Pferdezucht", "Verein für Pferdezucht"], "preferred_name": "Hannoverscher Verein für Beförderung der Pferdezucht", "date_of_termination": "1835", "variant_access_point": ["Verein für Beförderung der Pferdezucht. Hannover, Staat", "Hannoverscher Verein zur Beförderung der Pferdezucht", "Verein zur Beförderung der Pferdezucht. Hannover, Staat", "Hannoverscher Verein für Pferdezucht", "Verein für Pferdezucht. Hannover, Staat"], "date_of_establishment": "1834", "authorized_access_point": "Hannoverscher Verein für Beförderung der Pferdezucht"} 1 +2024-09-11 09:03:08.2955 2024-09-11 09:03:08.295503 7064c4eb-1a2f-49ff-a7fc-d0bb67b88fcc {"md5": "f40f6b914ba56c1573e0c63f5582b532", "pid": "956917054", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5324690-1", "source": "GND"}], "variant_name": ["Technical Applications Conference"], "preferred_name": "Northcon", "country_associated": "xxu", "variant_access_point": ["Technical Applications Conference, 1998, Seattle, Wash."], "authorized_access_point": "Northcon, 1998, Seattle, Wash."} 1 +2024-09-11 09:03:08.367701 2024-09-11 09:03:08.367706 564bacea-274e-4943-9880-2e40b91425c2 {"md5": "f7cff98e6e04fdcec1df922af6f6453c", "pid": "956976999", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5326222-0", "source": "GND"}], "preferred_name": "Symposium Clinical Settings for Selective Alpha-Adrenergic Receptor Inhibition: Rationale and Management Strategies", "country_associated": "xxu", "authorized_access_point": "Symposium Clinical Settings for Selective Alpha-Adrenergic Receptor Inhibition: Rationale and Management Strategies, 1988, Naples, Fla."} 1 +2024-09-11 09:03:08.426221 2024-09-11 09:03:08.426225 b3ebac8f-a1d7-4cc1-ae20-e4ac5a4bc7f8 {"md5": "ebb64e631872a7299a2c260fdbf0f071", "pid": "956990223", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5327437-4", "source": "GND"}], "variant_name": ["TAPPI Coating Binders Short Course"], "preferred_name": "Coating Binders Short Course", "country_associated": "xxu", "variant_access_point": ["TAPPI Coating Binders Short Course, 1996, Baton Rouge, La."], "authorized_access_point": "Coating Binders Short Course, 1996, Baton Rouge, La."} 1 +2024-09-11 09:03:08.48548 2024-09-11 09:03:08.485483 a69f590e-298e-41ac-a13a-7d05af382f32 {"md5": "98966e0bd91e2bc342d31338c9b91d3e", "pid": "956994679", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5327839-2", "source": "GND"}], "preferred_name": "Sogwang-Haksul-Charyosa", "country_associated": "ko", "authorized_access_point": "Sogwang-Haksul-Charyosa"} 1 +2024-09-11 09:03:08.544497 2024-09-11 09:03:08.544502 40f6325e-eb23-4a99-a298-8f8017a0b482 {"md5": "87a685352913e9e339684782cf64a111", "pid": "957023235", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5330561-9", "source": "GND"}], "variant_name": ["Internationales Wissenschaftliches Studentenkolloquium, 4", "Meždunarodnaja Studenskaja Konferencija, 4"], "preferred_name": "Mie̜dzynarodowe Studenckie Sympozjum Naukowe, 4", "country_associated": "pl", "variant_access_point": ["Internationales Wissenschaftliches Studentenkolloquium, 4, 1980, Zielona Góra", "Meždunarodnaja Studenskaja Konferencija, 4, 1980, Zielona Góra"], "authorized_access_point": "Mie̜dzynarodowe Studenckie Sympozjum Naukowe, 4, 1980, Zielona Góra"} 1 +2024-09-11 09:03:08.605331 2024-09-11 09:03:08.605334 53fbb4aa-d4a7-4532-94a9-5b89cf93b02e {"md5": "cc02ff3d2b05402315cd6e20f5b4caef", "pid": "957059590", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1240043-9", "source": "GND"}], "variant_name": ["Giornate Vimercatesi di Traumatologia dello Sport, 3"], "preferred_name": "Giornate Vimercatesi Internazionali di Traumatologia dello Sport, 3", "country_associated": "it", "variant_access_point": ["Giornate Vimercatesi di Traumatologia dello Sport, 3, 1997, Agrate Brianza"], "authorized_access_point": "Giornate Vimercatesi Internazionali di Traumatologia dello Sport, 3, 1997, Agrate Brianza"} 1 +2024-09-11 09:03:08.660232 2024-09-11 09:03:08.660237 1b39c006-9765-45df-a722-663a80366c30 {"md5": "010bc481879b1e1916057c12bca8eae8", "pid": "957060149", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1240915-7", "source": "GND"}], "variant_name": ["Kirchheimer Lateinschule", "Lateinschule Kirchheim unter Teck"], "preferred_name": "Lateinschule", "country_associated": "gw", "variant_access_point": ["Kirchheimer Lateinschule", "Lateinschule Kirchheim unter Teck. Ehemalige Vorzugsbenennung SWD"], "authorized_access_point": "Lateinschule. Kirchheim unter Teck", "biographical_information": ["1249 erstmals erwähnt"]} 1 +2024-09-11 09:03:08.718393 2024-09-11 09:03:08.718398 7ec9308b-7e08-4f73-a748-2e2b9613b269 {"md5": "b422ac6518e3193c33a1485db3de02a7", "pid": "957075405", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5332088-8", "source": "GND"}], "variant_name": ["Bund des Ehem. Kgl. Preuß. Inf.-Regts Großherzog Friedrich Franz II. v. Mecklenburg-Schwerin (4. Brandenburg.) Nr. 24", "Bund I. R. 24", "Bund Infanterie-Regiment 24"], "preferred_name": "Bund des Ehemaligen Königlichen Preußischen Infanterie-Regiments Großherzog Friedrich Franz II. von Mecklenburg-Schwerin (4. Brandenburgisches) Nummer 24", "date_of_termination": "01.10.1938", "variant_access_point": ["Bund des Ehem. Kgl. Preuß. Inf.-Regts Großherzog Friedrich Franz II. v. Mecklenburg-Schwerin (4. Brandenburg.) Nr. 24", "Bund I. R. 24", "Bund Infanterie-Regiment 24"], "authorized_access_point": "Bund des Ehemaligen Königlichen Preußischen Infanterie-Regiments Großherzog Friedrich Franz II. von Mecklenburg-Schwerin (4. Brandenburgisches) Nummer 24"} 1 +2024-09-11 09:03:08.774624 2024-09-11 09:03:08.774628 19219bf5-9afa-4a10-8532-900228662c31 {"md5": "74a3573ab418b036f2bcebed8ec9e5fb", "pid": "957106408", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5332309-9", "source": "GND"}], "variant_name": ["Consorzio Costa Verde"], "preferred_name": "Consorzio Turistico Costa Verde", "country_associated": "it", "variant_access_point": ["Consorzio Costa Verde. Marina, Castellaneta"], "authorized_access_point": "Consorzio Turistico Costa Verde. Marina, Castellaneta"} 1 +2024-09-11 09:03:08.836763 2024-09-11 09:03:08.836768 f723a4d0-bf21-4a01-9b5c-fd1562e8062a {"md5": "ce8fd292f8b370591a95e27fba3d9b8f", "pid": "957164599", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5333199-0", "source": "GND"}], "variant_name": ["LD", "Liberale Demokraten - Die Sozialliberalen"], "preferred_name": "Liberale Demokraten", "country_associated": "gw", "variant_access_point": ["LD. Abkuerzung", "Liberale Demokraten - Die Sozialliberalen. Spaeterer Name"], "date_of_establishment": "28.11.1982", "authorized_access_point": "Liberale Demokraten", "biographical_information": ["\\"1991 erweiterten die Liberalen Demokraten schließlich ihren Parteinamen um den Passus „die Sozialliberalen“, um ihre programmatische Ausrichtung besser nach außen transportieren zu können.\\" - Homepage"]} 1 +2024-09-11 09:03:08.901179 2024-09-11 09:03:08.901184 f71f4251-4d6c-419a-b0e3-962cb1299232 {"md5": "f293381ecd8560f5d62b480b4a588c44", "pid": "957177879", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5334479-0", "source": "GND"}], "variant_name": ["Institut für Leibeserziehung", "SWI", "Universität des Saarlandes. Sportwissenschaftliches Institut"], "preferred_name": "Sportwissenschaftliches Institut", "country_associated": "gw", "variant_access_point": ["Institut für Leibeserziehung", "SWI", "Universität des Saarlandes. Sportwissenschaftliches Institut"], "authorized_access_point": "Sportwissenschaftliches Institut. Saarbrücken"} 1 +2024-09-11 09:03:08.958227 2024-09-11 09:03:08.958231 e6811fe3-28ab-435a-af4a-63fd0116edbe {"md5": "6e824a4bafcad72716162c5b60c069ef", "pid": "95717926X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5334610-5", "source": "GND"}], "preferred_name": "International Congress for Analytical Psychology, 3", "country_associated": "sz", "authorized_access_point": "International Congress for Analytical Psychology, 3, 1965, Montreux"} 1 +2024-09-11 09:03:09.021763 2024-09-11 09:03:09.021768 b91b588e-bd3d-44bf-89b7-80b0a8b46fa6 {"md5": "7736597e00fdf4eaaa8ea1beb01440e5", "pid": "957186185", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5335244-0", "source": "GND"}], "variant_name": ["Web Design Consortium"], "preferred_name": "Uebu-Dezain-Konsōshiamu", "country_associated": "ja", "variant_access_point": ["Web Design Consortium"], "authorized_access_point": "Uebu-Dezain-Konsōshiamu"} 1 +2024-09-11 09:03:09.09048 2024-09-11 09:03:09.090483 01e2d087-3df9-46ad-b768-ed222236ea94 {"md5": "c0e24ff0f9f3fce5d861b33472a31bee", "pid": "957223242", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1240334-9", "source": "GND"}], "preferred_name": "Istituto Italiano per la Storia delle Imprese", "country_associated": "it", "authorized_access_point": "Istituto Italiano per la Storia delle Imprese", "biographical_information": ["Sitz nicht zu erm."]} 1 +2024-09-11 09:03:09.151465 2024-09-11 09:03:09.151468 7f6a459c-3f63-4d42-847e-5606e66c84de {"md5": "2ec31affb6263995850172c99e33917d", "pid": "957263511", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3041900-1", "source": "GND"}], "preferred_name": "Journée Régionale d'Etudes", "country_associated": "fr", "authorized_access_point": "Journée Régionale d'Etudes, 1997, Fréjus"} 1 +2024-09-11 09:03:09.207982 2024-09-11 09:03:09.207986 c226e351-5b3a-4d2c-9eba-dbe7473c5259 {"md5": "18db65b90abd2522309366332d4dae84", "pid": "957268688", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5335890-9", "source": "GND"}], "variant_name": ["SPD-Ortsverein Hermannstein", "SPD Hermannstein"], "preferred_name": "Sozialdemokratische Partei Deutschlands. Ortsverein Hermannstein", "country_associated": "gw", "variant_access_point": ["SPD-Ortsverein Hermannstein", "SPD Hermannstein"], "authorized_access_point": "Sozialdemokratische Partei Deutschlands. Ortsverein Hermannstein"} 1 +2024-09-11 09:03:09.264225 2024-09-11 09:03:09.26423 83157ca1-255d-4722-a258-9d7c4490207d {"md5": "25ae0652abe09453f19abe166fad2b03", "pid": "957348924", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1702995-8", "source": "GND"}], "variant_name": ["Residenz-Lauf, 11", "Würzburger Residenz-Lauf"], "preferred_name": "Würzburger Residenz-Lauf, 11", "country_associated": "gw", "variant_access_point": ["Residenz-Lauf, 11, 1999, Würzburg", "Würzburger Residenz-Lauf, 1999, Würzburg"], "authorized_access_point": "Würzburger Residenz-Lauf, 11, 1999, Würzburg", "biographical_information": ["jährlich stattfindende Sportveranstaltung"]} 1 +2024-09-11 09:03:09.325791 2024-09-11 09:03:09.325796 26af56a7-a3cc-470a-b7ff-4f82d013bcb5 {"md5": "db111ec1be423ac404f512072252ecf0", "pid": "957354096", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5336653-0", "source": "GND"}], "preferred_name": "Université de Nantes. Département de Littérature Générale et Comparée", "country_associated": "fr", "authorized_access_point": "Université de Nantes. Département de Littérature Générale et Comparée"} 1 +2024-09-11 09:03:09.399476 2024-09-11 09:03:09.39948 283daafb-50a9-49ab-860b-1f591c8ffd6f {"md5": "e95009c7179009299ecfed1783f46eaa", "pid": "957365993", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5337811-8", "source": "GND"}], "variant_name": ["SPD-Ortsverein Schenefeld", "SPD Schenefeld"], "preferred_name": "Sozialdemokratische Partei Deutschlands. Ortsverein Schenefeld", "country_associated": "gw", "variant_access_point": ["SPD-Ortsverein Schenefeld. Kreis Pinneberg", "SPD Schenefeld. Kreis Pinneberg"], "authorized_access_point": "Sozialdemokratische Partei Deutschlands. Ortsverein Schenefeld. Kreis Pinneberg"} 1 +2024-09-11 09:03:09.454145 2024-09-11 09:03:09.454151 5a11673d-fcc3-4e4d-a07e-c0bd244f3a60 {"md5": "bcc134fa373c8272b110bdc246bf0acd", "pid": "957382332", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2179155-7", "source": "GND"}], "variant_name": ["Evangelische Freikirche"], "preferred_name": "Kirche des Nazareners", "country_associated": "gw", "variant_access_point": ["Evangelische Freikirche. Hanau"], "authorized_access_point": "Kirche des Nazareners. Hanau"} 1 +2024-09-11 09:03:23.037635 2024-09-11 09:03:23.03764 de086682-4840-4501-8ce9-6a65887896fc {"md5": "931efc07d4fbc883d1a017f4cd2b4857", "pid": "969521367", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3056843-2", "source": "GND"}], "preferred_name": "Ausstellung Raimund Abraham", "country_associated": "gw", "authorized_access_point": "Ausstellung Raimund Abraham, 1983, Berlin, West"} 1 +2024-09-11 09:03:09.509506 2024-09-11 09:03:09.509511 465e607c-ec23-4c6c-92c4-113c24b28e2a {"md5": "959b162bc138d283f5d9d4ad88b55c18", "pid": "957433158", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5337966-4", "source": "GND"}], "variant_name": ["Musée d'Orbigny Bernon"], "preferred_name": "Musée d'Orbigny-Bernon", "country_associated": "fr", "variant_access_point": ["Musée d'Orbigny Bernon. La Rochelle"], "authorized_access_point": "Musée d'Orbigny-Bernon. La Rochelle"} 1 +2024-09-11 09:03:09.567968 2024-09-11 09:03:09.567973 145a2b8f-3c23-4d48-89fc-ebe89c59edfd {"md5": "e50eb00b05660a15bb1ca8d0e7a50d5a", "pid": "95746214X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5338341-2", "source": "GND"}], "variant_name": ["Naturwissenschaftlicher Verein Gotha", "Naturwissenschaflicher Verein in Gotha"], "preferred_name": "Naturwissenschaftlicher Verein zu Gotha", "date_of_termination": "1937", "variant_access_point": ["Naturwissenschaftlicher Verein Gotha", "Naturwissenschaflicher Verein in Gotha"], "date_of_establishment": "1875", "authorized_access_point": "Naturwissenschaftlicher Verein zu Gotha"} 1 +2024-09-11 09:03:09.640322 2024-09-11 09:03:09.640326 fa6893ca-b43d-4308-a34c-48ebca7639cd {"md5": "52004c35e978e8736352c9a7f03d5f64", "pid": "957467303", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5338838-0", "source": "GND"}], "preferred_name": "Frauenzentrum Paula Panke", "country_associated": "gw", "authorized_access_point": "Frauenzentrum Paula Panke. Berlin"} 1 +2024-09-11 09:03:09.702761 2024-09-11 09:03:09.702765 4ae593bc-9ef0-458d-b8af-1663f2034daa {"md5": "61f7ce93ea73f74ffde7e08cde1a78d8", "pid": "957488548", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5340894-9", "source": "GND"}], "preferred_name": "International Conference on Human Interfaces in Control Rooms, Cockpits and Command Centres", "country_associated": "xxk", "authorized_access_point": "International Conference on Human Interfaces in Control Rooms, Cockpits and Command Centres, 1999, Bath"} 1 +2024-09-11 09:03:09.760661 2024-09-11 09:03:09.760665 349af024-81a7-4b8c-9b95-491ee0cda621 {"md5": "8b552c0a061af3a0a18a13582ad504a6", "pid": "957490186", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5341052-X", "source": "GND"}], "variant_name": ["RWS-Forum Insolvenzrecht"], "preferred_name": "Forum Insolvenzrecht", "variant_access_point": ["RWS-Forum Insolvenzrecht, 1998, Berlin"], "authorized_access_point": "Forum Insolvenzrecht, 1998, Berlin"} 1 +2024-09-11 09:03:09.830055 2024-09-11 09:03:09.83006 d4f7f70e-5f7a-41d8-8f96-5b71a50ac01f {"md5": "ad28a672d27a09fac36f181396c91b9a", "pid": "957496729", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5341692-2", "source": "GND"}], "variant_name": ["Psychotherapiewochen, 48"], "preferred_name": "Lindauer Psychotherapiewochen, 48", "country_associated": "gw", "variant_access_point": ["Psychotherapiewochen, 48, 1998, Lindau (Bodensee)"], "authorized_access_point": "Lindauer Psychotherapiewochen, 48, 1998, Lindau (Bodensee)"} 1 +2024-09-11 09:03:09.897125 2024-09-11 09:03:09.89713 37599fa1-fa4d-4488-8c58-8554d0a65f6b {"md5": "b72e662e50f592fb1bfb9db77902b236", "pid": "957503083", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5342328-8", "source": "GND"}], "preferred_name": "International Thermal Conductivity Conference, 16", "country_associated": "xxu", "authorized_access_point": "International Thermal Conductivity Conference, 16, Chicago, Ill."} 1 +2024-09-11 09:03:09.951406 2024-09-11 09:03:09.951409 fd4e303e-c319-4261-a774-ea8fd0c2ab03 {"md5": "ff4c43834d1920a689fdfffcab430992", "pid": "957506880", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5342708-7", "source": "GND"}], "variant_name": ["SPD-Ortsverein Tannenbusch-Dransdorf-Buschdorf", "SPD Tannenbusch-Dransdorf-Buschdorf"], "preferred_name": "Sozialdemokratische Partei Deutschlands. Ortsverein Tannenbusch-Dransdorf-Buschdorf", "country_associated": "gw", "variant_access_point": ["SPD-Ortsverein Tannenbusch-Dransdorf-Buschdorf", "SPD Tannenbusch-Dransdorf-Buschdorf"], "authorized_access_point": "Sozialdemokratische Partei Deutschlands. Ortsverein Tannenbusch-Dransdorf-Buschdorf"} 1 +2024-09-11 09:03:10.007832 2024-09-11 09:03:10.007836 e144fef8-1852-4a82-94bd-bd3670bdb36c {"md5": "b2426925431e6e4a8ae8c02f0c7de3a5", "pid": "957853408", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3042508-6", "source": "GND"}], "variant_name": ["Sportverein 1921 Guntersblum", "SV Guntersblum"], "preferred_name": "SV 1921 Guntersblum", "country_associated": "gw", "variant_access_point": ["Sportverein 1921 Guntersblum", "SV Guntersblum"], "authorized_access_point": "SV 1921 Guntersblum"} 1 +2024-09-11 09:03:10.06651 2024-09-11 09:03:10.066514 adabea44-2bc6-4972-9398-f0848439f6a8 {"md5": "495ed8ed551dcbba9c84c3e22caf57ef", "pid": "957923031", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1240114-6", "source": "GND"}], "variant_name": ["SCSC, 31"], "preferred_name": "Summer Computer Simulation Conference, 31", "country_associated": "xxu", "variant_access_point": ["SCSC, 31, 1999, Chicago, Ill."], "authorized_access_point": "Summer Computer Simulation Conference, 31, 1999, Chicago, Ill."} 1 +2024-09-11 09:03:10.123897 2024-09-11 09:03:10.123904 b3de713e-8267-430b-9b0f-ac76b843c695 {"md5": "7c3bc754b064c73a6cddb929ceed13a1", "pid": "95792755X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5344577-6", "source": "GND"}], "preferred_name": "Symposium on the Treatment of Parkinson's Disease, 7", "country_associated": "ja", "authorized_access_point": "Symposium on the Treatment of Parkinson's Disease, 7, 1998, Osaka"} 1 +2024-09-11 09:03:10.186794 2024-09-11 09:03:10.1868 ede8f291-8fdd-41e6-b7d4-860b03ac0253 {"md5": "afd113d98cb1872e67833571509aa57d", "pid": "957929331", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5344751-7", "source": "GND"}], "preferred_name": "Congrès International de Langue et Littérature du Midi de la France, 1", "country_associated": "fr", "authorized_access_point": "Congrès International de Langue et Littérature du Midi de la France, 1, 1955, Avignon"} 1 +2024-09-11 09:03:10.246642 2024-09-11 09:03:10.246646 2dd3b7bc-a114-48ee-89c4-1a72f42c9524 {"md5": "bb39bbf64edd05e62112494bedb4a15f", "pid": "957935625", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5345357-8", "source": "GND"}], "variant_name": ["Internationales Stuttgarter Trickfilm-Festival, 7.", "International Festival of Animated Film, 7.", "Internationales Trickfilm-Festival, 7.", "International Festival of Animated Film Stuttgart, 7."], "preferred_name": "Internationales Trickfilm-Festival Stuttgart, 7.", "country_associated": "gw", "variant_access_point": ["Internationales Stuttgarter Trickfilm-Festival, 7., 1994, Stuttgart", "International Festival of Animated Film, 7., 1994, Stuttgart", "Internationales Trickfilm-Festival, 7., 1994, Stuttgart", "International Festival of Animated Film Stuttgart, 7., 1994, Stuttgart"], "authorized_access_point": "Internationales Trickfilm-Festival Stuttgart, 7., 1994, Stuttgart"} 1 +2024-09-11 09:03:10.302125 2024-09-11 09:03:10.302131 da04c520-d689-4a53-995f-1eb3d9c99b7f {"md5": "43c61d6e57a5ab5a3ee2e382bcee57ec", "pid": "957935900", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5345383-9", "source": "GND"}], "variant_name": ["Internationale Fotoausstellung, 2"], "preferred_name": "Internationale Merchweiler Fotoausstellung, 2", "country_associated": "gw", "variant_access_point": ["Internationale Fotoausstellung, 2, 1992, Merchweiler"], "authorized_access_point": "Internationale Merchweiler Fotoausstellung, 2, 1992, Merchweiler"} 1 +2024-09-11 09:03:10.361209 2024-09-11 09:03:10.361213 0cb94cdd-1b51-4410-8d3c-a7949b2ec34b {"md5": "60efc2b4c5dab03e3b99082190ea4d46", "pid": "95794988X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5346758-9", "source": "GND"}], "variant_name": ["Freiwillige Feuerwehr"], "preferred_name": "Freiwillige Feuerwehr", "country_associated": "gw", "variant_access_point": ["Freiwillige Feuerwehr. Losheim-Hausbach"], "authorized_access_point": "Freiwillige Feuerwehr. Hausbach, Losheim"} 1 +2024-09-11 09:03:10.427685 2024-09-11 09:03:10.427689 2dbf1f36-146c-4d87-a81a-427b25de79a8 {"md5": "25ba3a448e9096a8d1d0517a6cf087d6", "pid": "957954522", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5347220-2", "source": "GND"}], "variant_name": ["Fidelia", "Verein für Gesellige Unterhaltung Fidelia"], "preferred_name": "Fidelia", "country_associated": "gw", "variant_access_point": ["Fidelia. Homburg, Saar", "Verein für Gesellige Unterhaltung Fidelia. Einöd"], "authorized_access_point": "Fidelia. Einöd"} 1 +2024-09-11 09:03:10.486953 2024-09-11 09:03:10.486957 bc189e92-b13e-4c5d-a84f-940edeb70525 {"md5": "64c9ca8b60c046a3c1bb2ea46e05e346", "pid": "95795624X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5347390-5", "source": "GND"}], "variant_name": ["Männergesangverein Sängerkreis"], "preferred_name": "Männergesangverein Sängerkreis", "country_associated": "gw", "variant_access_point": ["Männergesangverein Sängerkreis. Beckingen"], "authorized_access_point": "Männergesangverein Sängerkreis. Saarfels"} 1 +2024-09-11 09:03:10.560652 2024-09-11 09:03:10.560656 85b8865e-b8a3-42af-87d8-5094eee43373 {"md5": "33948b5b18dfc8ef2f14fcbea77d813f", "pid": "957957114", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5347477-6", "source": "GND"}], "variant_name": ["Prot. Kirchengemeinde Ensheim"], "preferred_name": "Protestantische Kirchengemeinde Ensheim", "country_associated": "gw", "variant_access_point": ["Prot. Kirchengemeinde Ensheim"], "authorized_access_point": "Protestantische Kirchengemeinde Ensheim"} 1 +2024-09-11 09:03:10.623357 2024-09-11 09:03:10.62336 3c0fc7f4-6c09-4621-830f-0e1711d6450e {"md5": "61b6da33761849f70d4850283ba604a9", "pid": "957962703", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5348037-5", "source": "GND"}], "preferred_name": "INTERSCHUL Didacta, 1", "authorized_access_point": "INTERSCHUL Didacta, 1, 1999, Stuttgart"} 1 +2024-09-11 09:03:10.679125 2024-09-11 09:03:10.679128 a8a5e6e9-d4ac-48c8-a86e-5174c4e8a038 {"md5": "1922ad570bbfdb3ffcf087b1c98e76b6", "pid": "957973497", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5349117-8", "source": "GND"}], "preferred_name": "Catholic Family History Society", "country_associated": "xxu", "authorized_access_point": "Catholic Family History Society"} 1 +2024-09-11 09:03:10.741165 2024-09-11 09:03:10.741169 df5b4318-6be9-403e-bc3f-746263711a56 {"md5": "899db52fefe5e515d8c719435c87e3fa", "pid": "95797728X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5349496-9", "source": "GND"}], "variant_name": ["IEEE International Conference on Information Visualization", "International Conference on Computer Visualization & Graphics", "IV", "International Conference on Information Visualisation"], "preferred_name": "International Conference on Information Visualization", "country_associated": "xxk", "variant_access_point": ["IEEE International Conference on Information Visualization, 1999, London", "International Conference on Computer Visualization & Graphics, 1999, London", "IV, 1999, London", "International Conference on Information Visualisation, 1999, London"], "authorized_access_point": "International Conference on Information Visualization, 1999, London"} 1 +2024-09-11 09:03:10.80143 2024-09-11 09:03:10.801435 3e55a0dc-dbdd-46a1-9be6-035e8a75f5fa {"md5": "748f30e955a45f5c50f0946f1c6e4151", "pid": "958006873", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2180573-8", "source": "GND"}], "preferred_name": "Workshop Coaching und Weiterbildung von Agenda-21-Moderatoren", "country_associated": "gw", "authorized_access_point": "Workshop Coaching und Weiterbildung von Agenda-21-Moderatoren, 1998, Dortmund"} 1 +2024-09-11 09:03:10.869856 2024-09-11 09:03:10.869859 e7e4a17c-e53e-42e3-9c76-dab4f18b721b {"md5": "66a6324bec05f9f2f377d37c8382ee9f", "pid": "958094160", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5351954-1", "source": "GND"}], "preferred_name": "Frauenchor Cäcilia Gladbach", "country_associated": "gw", "date_of_establishment": "1974", "authorized_access_point": "Frauenchor Cäcilia Gladbach"} 1 +2024-09-11 09:03:10.94385 2024-09-11 09:03:10.943855 e38e74ba-f744-4c2f-825f-547e2ff6d0c6 {"md5": "6593026b44693af4177626be502ee072", "pid": "958490139", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2182000-4", "source": "GND"}], "preferred_name": "Herbst-Akademie Zeichen der Zeit", "country_associated": "gw", "authorized_access_point": "Herbst-Akademie Zeichen der Zeit, 1995, Goslar"} 1 +2024-09-11 09:03:11.009051 2024-09-11 09:03:11.009056 f0d353bb-b0fb-4762-af54-ab0b6595e958 {"md5": "12733161547b91b311fe1ac7b3023206", "pid": "95858012X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10000050-2", "source": "GND"}], "variant_name": ["AMP", "AMP"], "preferred_name": "Association for Molecular Pathology", "country_associated": "xxu", "variant_access_point": ["AMP. Abkuerzung", "AMP. Association for Molecular Pathology"], "authorized_access_point": "Association for Molecular Pathology"} 1 +2024-09-11 09:03:11.070313 2024-09-11 09:03:11.070318 bef4d714-3a6a-46ff-880c-4d54a7a89837 {"md5": "545dbe852bc8d7f1ad42ef2c3a9adaf9", "pid": "958686424", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2182538-5", "source": "GND"}], "variant_name": ["Mathematische Fakultät"], "preferred_name": "Albert-Ludwigs-Universität Freiburg. Mathematische Fakultät", "country_associated": "gw", "variant_access_point": ["Mathematische Fakultät. Freiburg im Breisgau"], "authorized_access_point": "Albert-Ludwigs-Universität Freiburg. Mathematische Fakultät"} 1 +2024-09-11 09:03:11.152971 2024-09-11 09:03:11.152973 d698c27c-757e-4d1b-ba2f-4d5b77969834 {"md5": "8a416c954ef5e23658fed70993732e34", "pid": "958779147", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10002272-8", "source": "GND"}], "variant_name": ["Design Museum"], "preferred_name": "Thessaloniki Design Museum", "country_associated": "gr", "variant_access_point": ["Design Museum. Thessaloniki"], "authorized_access_point": "Thessaloniki Design Museum"} 1 +2024-09-11 09:03:11.21781 2024-09-11 09:03:11.217814 78d58f06-2b0d-475e-911a-7e66a6ba429e {"md5": "b7be17b11e0f9a04407731564d0065aa", "pid": "958942900", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3042873-7", "source": "GND"}], "variant_name": ["Internationale Apostelversammlung", "International Apostles' Meeting", "Internationale Zusammenkunft der Apostel"], "preferred_name": "International Meeting of Apostles", "country_associated": "xxc", "variant_access_point": ["Internationale Apostelversammlung, 1999, Toronto", "International Apostles' Meeting, 1999, Toronto", "Internationale Zusammenkunft der Apostel, 1999, Toronto"], "authorized_access_point": "International Meeting of Apostles, 1999, Toronto"} 1 +2024-09-11 09:03:11.27873 2024-09-11 09:03:11.278734 e01620fd-71ff-475a-b573-20112a88f1b0 {"md5": "1d8d074c26df04e1934038ca5654cf38", "pid": "958945861", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3043183-9", "source": "GND"}], "variant_name": ["Towarzystwo Inicjatyw Kulturalnych Im. Cypriana Norwida"], "preferred_name": "Towarzystwo Inicjatyw Kulturalnych Imienia Cypriana Norwida", "country_associated": "pl", "variant_access_point": ["Towarzystwo Inicjatyw Kulturalnych Im. Cypriana Norwida"], "authorized_access_point": "Towarzystwo Inicjatyw Kulturalnych Imienia Cypriana Norwida"} 1 +2024-09-11 09:03:11.338396 2024-09-11 09:03:11.3384 1fb1891a-3e75-4945-8d55-8df5596451b9 {"md5": "fa1e537e0f0b760ebeaeae91cf067ca3", "pid": "959006028", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2183529-9", "source": "GND"}], "variant_name": ["Nadace Bohuslava Martin°u", "Bohuslav-Martin°u-Stiftung", "Martin°u-Stiftung", "Bohuslav Martin°u Foundation", "Martin°u Foundation", "Bohuslav-Martin°u-Foundation", "Bohuslav-Martin°u-Stiftung", "Nadace Bohuslava Martinů", "Bohuslav-Martinů-Stiftung", "Nadace Bohuslava Martinů", "Bohuslav Martinů Foundation", "Bohuslav Martinů Foundation in Prague", "Bohuslav-Martinů-Stiftung", "Bohuslav Martinů Stiftung", "Bohuslav Martinů Stiftung", "Societas martinů"], "preferred_name": "Nadace Bohuslava Martinů", "variant_access_point": ["Nadace Bohuslava Martin°u. Prag", "Bohuslav-Martin°u-Stiftung. Prag", "Martin°u-Stiftung. Prag", "Bohuslav Martin°u Foundation. Prag", "Martin°u Foundation. Prag", "Bohuslav-Martin°u-Foundation", "Bohuslav-Martin°u-Stiftung. Ehemalige Vorzugsbenennung SWD", "Nadace Bohuslava Martinů. Praha", "Bohuslav-Martinů-Stiftung. Praha", "Nadace Bohuslava Martinů", "Bohuslav Martinů Foundation", "Bohuslav Martinů Foundation in Prague", "Bohuslav-Martinů-Stiftung", "Bohuslav Martinů Stiftung", "Bohuslav Martinů Stiftung. Prag", "Societas martinů"], "authorized_access_point": "Nadace Bohuslava Martinů. Prag", "biographical_information": ["1975 gegr."]} 1 +2024-09-11 09:03:11.408353 2024-09-11 09:03:11.408358 5d32a555-2549-44f4-9ad2-463b56f5c4b6 {"md5": "10fa9a39a31b378d6d3629b5bda02fc4", "pid": "959176918", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2184021-0", "source": "GND"}], "variant_name": ["Verein für Hochbegabte Kinder", "Österreichischer Verein für hochbegabte Kinder"], "preferred_name": "Österreichischer Verein für Hochbegabte Kinder", "country_associated": "au", "variant_access_point": ["Verein für Hochbegabte Kinder. Österreich", "Österreichischer Verein für hochbegabte Kinder"], "authorized_access_point": "Österreichischer Verein für Hochbegabte Kinder"} 1 +2024-09-11 09:03:11.489916 2024-09-11 09:03:11.489918 5afac092-3c56-4d45-8160-80c16310c809 {"md5": "b08b0b6f218872a150f0fbb114af32ac", "pid": "959194975", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10003852-9", "source": "GND"}], "variant_name": ["Sozialdemokratische Partei Deutschlands. Ortsverein", "SPD-Ortsverein", "SPD-Ortsverein", "SPD", "SPD"], "preferred_name": "Sozialdemokratische Partei Deutschlands. Ortsverein", "country_associated": "gw", "variant_access_point": ["Sozialdemokratische Partei Deutschlands. Ortsverein. Bochum-Steinkuhl", "SPD-Ortsverein. Steinkuhl", "SPD-Ortsverein. Bochum-Steinkuhl", "SPD. Steinkuhl", "SPD. Bochum-Steinkuhl"], "authorized_access_point": "Sozialdemokratische Partei Deutschlands. Ortsverein. Steinkuhl"} 1 +2024-09-11 09:03:11.547646 2024-09-11 09:03:11.54765 66369b00-93e7-4189-85fe-2043d028499b {"md5": "b9bbb3bb1a4befb44e9e0471e1bc429d", "pid": "959280944", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10004718-X", "source": "GND"}], "variant_name": ["Nationalparkverwaltung Harz", "Braunschweig. Nationalparkverwaltung Harz"], "preferred_name": "Regierungsbezirk Braunschweig. Nationalparkverwaltung Harz", "country_associated": "gw", "date_of_termination": "31.12.2003", "variant_access_point": ["Nationalparkverwaltung Harz. Braunschweig, Regierungsbezirk", "Braunschweig. Regierungsbezirk. Nationalparkverwaltung Harz. Alte Ansetzungsform"], "date_of_establishment": "01.01.1994", "authorized_access_point": "Regierungsbezirk Braunschweig. Nationalparkverwaltung Harz", "biographical_information": ["Sitz: Sankt Andreasberg"]} 1 +2024-09-11 09:03:11.609494 2024-09-11 09:03:11.609498 f0f7801c-cce7-4b60-8c4e-444e0ae0d9b5 {"md5": "866001d9027baeba6a1d854753a9efee", "pid": "959307338", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10004207-7", "source": "GND"}], "variant_name": ["Annual Conference on Sanitary Engineering"], "preferred_name": "Conference on Sanitary Engineering", "variant_access_point": ["Annual Conference on Sanitary Engineering"], "authorized_access_point": "Conference on Sanitary Engineering"} 1 +2024-09-11 09:03:11.674276 2024-09-11 09:03:11.67428 7c704f2c-0bb7-40bb-ab0d-6e3d91f28afd {"md5": "b69703e7f903206a33c3b39b880ad581", "pid": "95933727X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10004564-9", "source": "GND"}], "variant_name": ["USA. Botschaft", "United States Embassy", "United States Embassy", "Embassy of the United States", "Embassy of the United States", "U.S. Embassy", "U.S. Embassy", "Amerikanische Botschaft", "Amerikanische Botschaft"], "preferred_name": "USA. Embassy", "country_associated": "xxu", "variant_access_point": ["USA. Botschaft. Haiti", "United States Embassy. Haiti", "United States Embassy. Port-au-Prince", "Embassy of the United States. Haiti", "Embassy of the United States. Port-au-Prince", "U.S. Embassy. Haiti", "U.S. Embassy. Port-au-Prince", "Amerikanische Botschaft. Haiti", "Amerikanische Botschaft. Port-au-Prince"], "authorized_access_point": "USA. Embassy. Haiti"} 1 +2024-09-11 09:03:11.745096 2024-09-11 09:03:11.745101 4fda4132-1940-4600-a2b6-837785603cbf {"md5": "a14c7d1ee995a73207448d0cb3d823ca", "pid": "959433953", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10005076-1", "source": "GND"}], "preferred_name": "Progymnasium und Höhere Bürgerschule", "date_of_termination": "1871", "authorized_access_point": "Progymnasium und Höhere Bürgerschule. Bochum"} 1 +2024-09-11 09:03:11.807544 2024-09-11 09:03:11.807548 09caa8b9-ec84-4a84-b9a4-4fbd21fc9015 {"md5": "2cc7a2c9746f860fab74f7ac0879f2dc", "pid": "959524215", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10006445-0", "source": "GND"}], "preferred_name": "Katholischer Fürsorgeverein Johannesstift", "authorized_access_point": "Katholischer Fürsorgeverein Johannesstift"} 1 +2024-09-11 09:03:11.863716 2024-09-11 09:03:11.86372 3f25b191-efde-4c0a-849d-985529493598 {"md5": "5056fdbb8526a049d31ff9de4d5b556f", "pid": "959547916", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10006715-3", "source": "GND"}], "variant_name": ["Wehrkreis", "Deutsches Reich. Wehrkreiskommando, 7", "Wehrkreiskommando"], "preferred_name": "Deutsches Reich. Wehrkreis, 7", "variant_access_point": ["Wehrkreis. Deutsches Reich, 7", "Deutsches Reich. Wehrkreiskommando, 7", "Wehrkreiskommando. Deutsches Reich, 7"], "authorized_access_point": "Deutsches Reich. Wehrkreis, 7"} 1 +2024-09-11 09:03:11.929581 2024-09-11 09:03:11.929585 6837298e-695e-4d97-9454-2765d997e0c2 {"md5": "9b8648409938f00eaf70c924f2236f28", "pid": "959585605", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10007235-5", "source": "GND"}], "variant_name": ["Exhibition Eva & Adele. Logo. Mediaplastic, Wings, Lingerie"], "preferred_name": "Ausstellung Eva & Adele. Logo. Mediaplastic, Wings, Lingerie", "country_associated": "gw", "variant_access_point": ["Exhibition Eva & Adele. Logo. Mediaplastic, Wings, Lingerie, 2000 - 2001, Saarbrücken u.a."], "authorized_access_point": "Ausstellung Eva & Adele. Logo. Mediaplastic, Wings, Lingerie, 2000 - 2001, Saarbrücken u.a."} 1 +2024-09-11 09:03:11.989104 2024-09-11 09:03:11.989108 db7fc489-2b15-404f-9285-088c41a3945d {"md5": "59231bc7bef4932d44fee4a292c6c751", "pid": "959713697", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10007827-8", "source": "GND"}], "preferred_name": "Verein zur Hebung der Leipziger Theaterzustände", "authorized_access_point": "Verein zur Hebung der Leipziger Theaterzustände"} 1 +2024-09-11 09:03:12.050239 2024-09-11 09:03:12.050242 a365471d-e8ec-4783-94e7-55eb849848d5 {"md5": "8e0c5cf543fa0ac4e2b5429c0be1ba50", "pid": "959734708", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10008370-5", "source": "GND"}], "preferred_name": "Industrie-Design-Tag, 2", "country_associated": "sz", "authorized_access_point": "Industrie-Design-Tag, 2, 2000, Langenthal"} 1 +2024-09-11 09:03:12.147095 2024-09-11 09:03:12.147101 246870dd-090a-4a2c-8d62-498178618d8d {"md5": "6e7b10dd675d6c32436e9bf967f2614a", "pid": "959910808", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10009733-9", "source": "GND"}], "preferred_name": "Naturheilkunde Eutritzsch e.V.", "country_associated": "gw", "authorized_access_point": "Naturheilkunde Eutritzsch e.V."} 1 +2024-09-11 09:03:12.225824 2024-09-11 09:03:12.225828 08461100-263b-4605-84ff-a9d199e49fc4 {"md5": "59b28ec18d4a3521beb0049416499bff", "pid": "960094873", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10010715-1", "source": "GND"}], "variant_name": ["Deposit Insurance Corporation", "NDIC"], "preferred_name": "Nigeria Deposit Insurance Corporation", "country_associated": "nr", "variant_access_point": ["Deposit Insurance Corporation. Nigeria", "NDIC. Abkuerzung"], "date_of_establishment": "1988", "authorized_access_point": "Nigeria Deposit Insurance Corporation"} 1 +2024-09-11 09:03:12.294979 2024-09-11 09:03:12.294983 6dd68891-d0a6-498b-a7fe-f31fef5d913e {"md5": "76cac393a6df5ece8916e5227b69022c", "pid": "960193812", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3046562-X", "source": "GND"}], "variant_name": ["AG der Beratungs- und Koordinierungsstellen"], "preferred_name": "Arbeitsgemeinschaft der Beratungs- und Koordinierunsstellen", "country_associated": "gw", "variant_access_point": ["AG der Beratungs- und Koordinierungsstellen. Mainz"], "authorized_access_point": "Arbeitsgemeinschaft der Beratungs- und Koordinierunsstellen. Mainz"} 1 +2024-09-11 09:03:12.361125 2024-09-11 09:03:12.36113 49f7a39c-e396-4836-9c1f-bd6865458f80 {"md5": "14328039eb3be8325a1fda32498b12c2", "pid": "960331077", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5500582-2", "source": "GND"}], "preferred_name": "Organisten-Verband Baselland", "country_associated": "sz", "authorized_access_point": "Organisten-Verband Baselland"} 1 +2024-09-11 09:03:12.444732 2024-09-11 09:03:12.444736 bb550734-057b-42f9-9df6-8f8288e1d2f9 {"md5": "5f80572976d54e20f56d308d1be38fbe", "pid": "960331166", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5500591-3", "source": "GND"}], "preferred_name": "Congreso Internacional de Caminería Hispánica, 3", "country_associated": "mx", "authorized_access_point": "Congreso Internacional de Caminería Hispánica, 3, 1996, Morelia"} 1 +2024-09-11 09:03:12.50446 2024-09-11 09:03:12.504465 104ffb19-17be-450d-88c6-b4da95c670ae {"md5": "28482c0391228bb7339dcbbe7eb041dd", "pid": "960373527", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10013218-2", "source": "GND"}], "variant_name": ["SOLARIS"], "preferred_name": "SOLARIS-Sonnenenergie, SolarstromvertriebsgesmbH", "country_associated": "gw", "variant_access_point": ["SOLARIS. Abkuerzung"], "authorized_access_point": "SOLARIS-Sonnenenergie, SolarstromvertriebsgesmbH. Hamburg"} 1 +2024-09-11 09:03:12.568101 2024-09-11 09:03:12.568106 260b8f5c-bd9f-4b87-b6de-82cf4652c652 {"md5": "0647d1ff72b88d1d2527f8e81f2d69e0", "pid": "960554440", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1242268-X", "source": "GND"}], "variant_name": ["Oopperajuhlaorkesteri", "Savonlinna Opera Festival Orchestra", "Opera Festival Orchestra"], "preferred_name": "Savonlinnan Oopperajuhlaorkesteri", "country_associated": "fi", "variant_access_point": ["Oopperajuhlaorkesteri. Savonlinna", "Savonlinna Opera Festival Orchestra", "Opera Festival Orchestra. Savonlinna"], "authorized_access_point": "Savonlinnan Oopperajuhlaorkesteri"} 1 +2024-09-11 09:03:12.636444 2024-09-11 09:03:12.636448 4b0f9b16-2d35-4e0e-bdb8-1ccc4895b31d {"md5": "44d3ba1623057945ad3d0dc7d205dce2", "pid": "96055646X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1242636-2", "source": "GND"}], "variant_name": ["International Festival Renascence of Belarusian Capella, 3", "Mižnarodny Festyval Adradz̆ėnne Belaruskaj Kapėly", "International Festival Renascence of Belarusian Capella"], "preferred_name": "Mižnarodny Festyval' Adradžėnne Belaruskaj Kapėly, 3", "variant_access_point": ["International Festival Renascence of Belarusian Capella, 3, 1993, Minsk", "Mižnarodny Festyval Adradz̆ėnne Belaruskaj Kapėly, 1993, Minsk", "International Festival Renascence of Belarusian Capella, 1993, Minsk"], "authorized_access_point": "Mižnarodny Festyval' Adradžėnne Belaruskaj Kapėly, 3, 1993, Minsk", "biographical_information": ["Festival für Neue Musik"]} 1 +2024-09-11 09:03:12.718616 2024-09-11 09:03:12.718619 8ae57f40-e061-43db-b1c6-011123e9b602 {"md5": "62c2d117764f211b966913226aebfabe", "pid": "96056814X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1703416-4", "source": "GND"}], "variant_name": ["Athletiksport-Club", "Athletiksport-Klub", "KAC", "Klagenfurter Athletiksport-Klub", "Klagenfurter Athletik-Club", "1. Fußballklub Klagenfurt", "1. Fußball- und Athletiksportklub Klagenfurt"], "preferred_name": "Klagenfurter Athletiksport-Club", "country_associated": "au", "variant_access_point": ["Athletiksport-Club. Klagenfurt", "Athletiksport-Klub. Klagenfurt", "KAC. Abkuerzung", "Klagenfurter Athletiksport-Klub", "Klagenfurter Athletik-Club", "1. Fußballklub Klagenfurt", "1. Fußball- und Athletiksportklub Klagenfurt"], "authorized_access_point": "Klagenfurter Athletiksport-Club", "biographical_information": ["Sportverein, gegr. 1909; unter diesem Namen seit 1920; im Laufe der Zeit 19 Sektionen, 2009: 7 Sektionen"]} 1 +2024-09-11 09:03:12.820505 2024-09-11 09:03:12.820511 a53408a8-1690-40bd-acde-262c61bcb0e7 {"md5": "57d8077c7fed14fd06e40929c8e1cd81", "pid": "960574298", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1800893-8", "source": "GND"}], "preferred_name": "International Conference on Multiphase Production, 7", "country_associated": "fr", "authorized_access_point": "International Conference on Multiphase Production, 7, 1995, Cannes"} 1 +2024-09-11 09:03:12.887075 2024-09-11 09:03:12.88708 3d9498f3-c6d6-474d-83a9-3db60368a731 {"md5": "0d03efe0b2260755add0ffb2fef55c5c", "pid": "960693785", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10014331-3", "source": "GND"}], "variant_name": ["Ex Convento del Padiglione S. Maria degli Angeli a Pizzofalcone"], "preferred_name": "Convento di Santa Maria degli Angeli a Pizzofalcone", "country_associated": "it", "variant_access_point": ["Ex Convento del Padiglione S. Maria degli Angeli a Pizzofalcone. Neapel"], "authorized_access_point": "Convento di Santa Maria degli Angeli a Pizzofalcone. Neapel"} 1 +2024-09-11 09:03:12.95397 2024-09-11 09:03:12.953975 79790a4a-6294-49cc-a03a-690fe79400b9 {"md5": "e71457617ab3b011a02afe72ef42fdd8", "pid": "960722157", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10015714-2", "source": "GND"}], "variant_name": ["Postwertzeichenausstellung"], "preferred_name": "Rhein-Ruhr-Posta", "country_associated": "gw", "variant_access_point": ["Postwertzeichenausstellung, 2000, Soest"], "authorized_access_point": "Rhein-Ruhr-Posta, 2000, Soest"} 1 +2024-09-11 09:03:13.021155 2024-09-11 09:03:13.021158 9682081d-d85a-4be9-a68c-d4f3d78f5d70 {"md5": "95d6cc9fef44241219385caf47e421e9", "pid": "960794093", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5503164-X", "source": "GND"}], "variant_name": ["Analitičeskij Centr Strategija", "Gumanitarnyj i politologičeskij centr Strategija"], "preferred_name": "Gumanitarnyj i Politologičeskij Centr Strategija", "country_associated": "ru", "variant_access_point": ["Analitičeskij Centr Strategija. Moskau", "Gumanitarnyj i politologičeskij centr Strategija. Moskva"], "authorized_access_point": "Gumanitarnyj i Politologičeskij Centr Strategija. Moskau"} 1 +2024-09-11 09:03:13.093256 2024-09-11 09:03:13.093263 501a05a0-08ea-49df-94d9-11d523b69134 {"md5": "732afc807af7b4c94ee9d153e17f54fc", "pid": "960796878", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5503436-6", "source": "GND"}], "preferred_name": "Curso de Atualização Sobre Sistemas de Exploração Transporte Florestal", "country_associated": "bl", "authorized_access_point": "Curso de Atualização Sobre Sistemas de Exploração Transporte Florestal, 1977, Curitiba"} 1 +2024-09-11 09:03:16.769129 2024-09-11 09:03:16.769133 a535fa75-b889-45cc-83ab-091606f3d24c {"md5": "9fe88899a1b6db3b993f11f743381d5a", "pid": "962558931", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6022082-X", "source": "GND"}], "preferred_name": "International Symposium on Food Biotechnology", "country_associated": "pl", "authorized_access_point": "International Symposium on Food Biotechnology, 1999, Zakopane"} 1 +2024-09-11 09:03:13.17003 2024-09-11 09:03:13.170032 5c35583a-809b-48f9-9e29-765d2c5fa6f6 {"md5": "8aa30428416186cd726d3ffd065d3cec", "pid": "960807128", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5504419-0", "source": "GND"}], "preferred_name": "Tagung Von der Entspannung über Körpererfahrung zu Heil(s)versprechen - Grenzbereiche der Gesundheitsbildung", "country_associated": "gw", "authorized_access_point": "Tagung Von der Entspannung über Körpererfahrung zu Heil(s)versprechen - Grenzbereiche der Gesundheitsbildung, 1993, Leinfelden-Echterdingen"} 1 +2024-09-11 09:03:13.237184 2024-09-11 09:03:13.237187 6e9ee6a7-2f35-4eff-b4f7-790665d53d03 {"md5": "967ec7bec74717508516f1f93ba0467b", "pid": "960812989", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5504967-9", "source": "GND"}], "variant_name": ["Academia Republicii Populare Române. Institutul de Cercetări Economice", "Institutul de cercetări economice al Academiei R.P.R."], "preferred_name": "Institutul de Cercetări Economice", "country_associated": "rm", "variant_access_point": ["Academia Republicii Populare Române. Institutul de Cercetări Economice", "Institutul de cercetări economice al Academiei R.P.R.. Unveraenderte Form"], "authorized_access_point": "Institutul de Cercetări Economice. Bukarest"} 1 +2024-09-11 09:03:13.306639 2024-09-11 09:03:13.306643 d0becd45-efbf-43e3-97bf-a8ba5633840e {"md5": "1a65f3b8d17f2635d9044594a1deebb4", "pid": "960819177", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5505579-5", "source": "GND"}], "preferred_name": "Ecomuseo della Montagna Pistoiese", "country_associated": "it", "date_of_establishment": "1990", "authorized_access_point": "Ecomuseo della Montagna Pistoiese"} 1 +2024-09-11 09:03:13.368526 2024-09-11 09:03:13.36853 70f6a4eb-6f89-4ec1-a6ec-182288360b41 {"md5": "a2e63a28051bd4bf8229f56262c8be71", "pid": "960819541", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5505617-9", "source": "GND"}], "variant_name": ["Ensemble Cantaton"], "preferred_name": "Cantaton", "country_associated": "gw", "variant_access_point": ["Ensemble Cantaton. Erbach, Odenwald"], "authorized_access_point": "Cantaton. Erbach, Odenwald"} 1 +2024-09-11 09:03:13.429844 2024-09-11 09:03:13.429847 cab04443-5e7f-4480-990b-a1ba4865a527 {"md5": "5e8dc7bc759f3b86346778484317f1c1", "pid": "960823271", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5505987-9", "source": "GND"}], "preferred_name": "Schaumkunststoff-Tagung, 19", "country_associated": "gw", "authorized_access_point": "Schaumkunststoff-Tagung, 19, 1999, Wiesbaden"} 1 +2024-09-11 09:03:13.496212 2024-09-11 09:03:13.496216 0ae86402-b162-4c48-b4a1-484e5ea0c51d {"md5": "e529e10aff0c515a07d9916d9cfa9a75", "pid": "960928995", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3047504-1", "source": "GND"}], "variant_name": ["Fachkonferenz Naturwissenschaftliche Methoden in der Archäologie"], "preferred_name": "Konference Přírodovědecké Metody v Archeologii", "variant_access_point": ["Fachkonferenz Naturwissenschaftliche Methoden in der Archäologie, 1998, Kravsko"], "authorized_access_point": "Konference Přírodovědecké Metody v Archeologii, 1998, Kravsko"} 1 +2024-09-11 09:03:13.556692 2024-09-11 09:03:13.556703 2ca66f61-f3ee-4dc5-913f-d59390461e6c {"md5": "dbf0b4f9438213120eb5678d96daf7be", "pid": "961071435", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5507545-9", "source": "GND"}], "preferred_name": "International Conference on Hyperfine Interactions, 11", "country_associated": "sa", "authorized_access_point": "International Conference on Hyperfine Interactions, 11, 1998, Durban"} 1 +2024-09-11 09:03:13.622338 2024-09-11 09:03:13.622343 7a08d83a-bcfb-41b5-981c-b07527fbaae6 {"md5": "9d7c74d44a0b25486c98ac479b73ad6d", "pid": "96107177X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5507579-4", "source": "GND"}], "preferred_name": "Ausstellung Henry Moore", "country_associated": "gw", "authorized_access_point": "Ausstellung Henry Moore, 1960, Hamburg"} 1 +2024-09-11 09:03:13.685613 2024-09-11 09:03:13.685617 037b949b-23fa-46ab-a50a-934ed56e9e39 {"md5": "623fa233190a4bbad81727740f62adee", "pid": "961077816", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5508188-5", "source": "GND"}], "preferred_name": "Woodstock Gallery", "country_associated": "xxk", "authorized_access_point": "Woodstock Gallery. London", "biographical_information": ["IDA: 00"]} 1 +2024-09-11 09:03:13.752756 2024-09-11 09:03:13.752759 5f6a715f-256c-450b-a6f8-51f78a82f199 {"md5": "41e278889c44a8c354d589192deeb29c", "pid": "961083387", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5508769-3", "source": "GND"}], "variant_name": ["Stinnes-Rheinreedereien"], "preferred_name": "Vereinigte Stinnes-Rheinreedereien", "country_associated": "gw", "variant_access_point": ["Stinnes-Rheinreedereien"], "authorized_access_point": "Vereinigte Stinnes-Rheinreedereien"} 1 +2024-09-11 09:03:13.814554 2024-09-11 09:03:13.814557 f45cce47-aac5-4d31-b38e-9522285cf70e {"md5": "54f6eecd783697b7bc7183001a7b641b", "pid": "961086882", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5509092-8", "source": "GND"}], "variant_name": ["Sachsen. Kassen-Billetts-Kommission", "Cassen-Billets-Commission", "Kassen-Billetts-Kommission", "Churfürstlich Sächsische Cassen-Billets-Commission", "Kurfürstlich Sächsische Kassen-Billetts-Kommission", "Churfürstliche Sächsische Cassen-Billets-Commission"], "preferred_name": "Sachsen. Cassen-Billets-Commission", "variant_access_point": ["Sachsen. Kassen-Billetts-Kommission", "Cassen-Billets-Commission. Sachsen", "Kassen-Billetts-Kommission. Sachsen", "Churfürstlich Sächsische Cassen-Billets-Commission", "Kurfürstlich Sächsische Kassen-Billetts-Kommission", "Churfürstliche Sächsische Cassen-Billets-Commission"], "authorized_access_point": "Sachsen. Cassen-Billets-Commission"} 1 +2024-09-11 09:03:13.881195 2024-09-11 09:03:13.8812 c528ab8c-3497-4c97-96b2-1f252c91f3cc {"md5": "5a8e8d7323c4cd5425f2294d32e15c7a", "pid": "961106565", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5511131-2", "source": "GND"}], "preferred_name": "Congrès Colonial National, 3", "country_associated": "be", "authorized_access_point": "Congrès Colonial National, 3, 1930, Brüssel"} 1 +2024-09-11 09:03:13.961411 2024-09-11 09:03:13.961416 a72d7ac8-9b1b-4b21-a0a5-3227c05fd458 {"md5": "e24dc04b8ba958826d968b9fd3753410", "pid": "961106646", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5511139-7", "source": "GND"}], "variant_name": ["Die Skeptiker"], "preferred_name": "Die Skeptiker", "variant_access_point": ["Die Skeptiker. Unveraenderte Form"], "date_of_establishment": "2006", "authorized_access_point": "Die Skeptiker. Musikgruppe", "biographical_information": ["Punkband um Sänger Eugen Balanskat"]} 1 +2024-09-11 09:03:14.046978 2024-09-11 09:03:14.046982 023995c0-d539-4451-9531-842d79d303af {"md5": "dedfa3024b0b5345654071c51f116c46", "pid": "961106840", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5511159-2", "source": "GND"}], "variant_name": ["Kurt Koch GmbH", "Schnitzschule Kurt Koch GmbH", "Kurt Koch"], "preferred_name": "Schnitzer-Zentrum Koch", "country_associated": "gw", "variant_access_point": ["Kurt Koch GmbH", "Schnitzschule Kurt Koch GmbH", "Kurt Koch. Firma"], "authorized_access_point": "Schnitzer-Zentrum Koch. Eulenbis"} 1 +2024-09-11 09:03:14.107643 2024-09-11 09:03:14.107646 c76911ca-f63a-4924-9770-3b46dc63039c {"md5": "3dce01e843f72ee04e3fb7905899e5c6", "pid": "961293950", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5511755-7", "source": "GND"}], "variant_name": ["German Heritage Society"], "preferred_name": "German Heritage Society", "country_associated": "xxu", "variant_access_point": ["German Heritage Society. Greater Washington, DC"], "authorized_access_point": "German Heritage Society. Washington, DC"} 1 +2024-09-11 09:03:14.180041 2024-09-11 09:03:14.180046 c67ed43c-3b3a-4b8e-94f3-cf1571c2aea8 {"md5": "51e3f06f343736b516d9d905057b21df", "pid": "961300515", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5512358-2", "source": "GND"}], "variant_name": ["Arbeitsgruppe Hygiene bei der Biologischen Abfallbehandlung", "Abwassertechnische Vereinigung. Arbeitsgruppe", "ATV-Arbeitsgruppe Hygiene bei der biologischen Abfallbehandlung", "Abwassertechnische Vereinigung. Fachausschuss Behandlung Biogener Abfälle. Arbeitsgruppe Hygiene bei der Biologischen Abfallbehandlung", "Abwassertechnische Vereinigung. Fachausschuss Behandlung biogener Abfälle. Arbeitsgruppe", "ATV-Arbeitsgruppe"], "preferred_name": "Abwassertechnische Vereinigung. Arbeitsgruppe Hygiene bei der Biologischen Abfallbehandlung", "country_associated": "gw", "variant_access_point": ["Arbeitsgruppe Hygiene bei der Biologischen Abfallbehandlung", "Abwassertechnische Vereinigung. Arbeitsgruppe. 3 14 1", "ATV-Arbeitsgruppe Hygiene bei der biologischen Abfallbehandlung", "Abwassertechnische Vereinigung. Fachausschuss Behandlung Biogener Abfälle. Arbeitsgruppe Hygiene bei der Biologischen Abfallbehandlung", "Abwassertechnische Vereinigung. Fachausschuss Behandlung biogener Abfälle. Arbeitsgruppe. 3 14 1", "ATV-Arbeitsgruppe. 3 14 1"], "authorized_access_point": "Abwassertechnische Vereinigung. Arbeitsgruppe Hygiene bei der Biologischen Abfallbehandlung"} 1 +2024-09-11 09:03:14.245634 2024-09-11 09:03:14.245639 957140c9-4713-469c-828a-19b5c5144359 {"md5": "616fda5d9e642bb58d79a9b2dbbcb3e8", "pid": "961328495", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5515026-3", "source": "GND"}], "variant_name": ["Stadtkirche Sankt Dionys", "Evangelische Stadtkirche Sankt Dionys", "Stadtkirche St. Dionys", "Ev. Stadtkirche Esslingen", "Evangelische Stadtkirche Esslingen", "Evangelische Stadtkirche", "Stadtkirche"], "preferred_name": "Evangelische Stadtkirche St. Dionys", "country_associated": "gw", "variant_access_point": ["Stadtkirche Sankt Dionys. Esslingen am Neckar", "Evangelische Stadtkirche Sankt Dionys. Esslingen am Neckar", "Stadtkirche St. Dionys. Esslingen am Neckar", "Ev. Stadtkirche Esslingen. Unveraenderte Form", "Evangelische Stadtkirche Esslingen. Unveraenderte Form", "Evangelische Stadtkirche. Esslingen am Neckar", "Stadtkirche. Esslingen am Neckar"], "authorized_access_point": "Evangelische Stadtkirche St. Dionys. Esslingen am Neckar"} 1 +2024-09-11 09:03:14.313285 2024-09-11 09:03:14.31329 9ae607f2-2e95-466a-9b79-e13e9b939fcb {"md5": "b0e2b96488a8b2f36683cc9bbbf3c2ee", "pid": "961329653", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5515142-5", "source": "GND"}], "preferred_name": "Escola d'Estiu del País Valencia, 2", "country_associated": "sp", "authorized_access_point": "Escola d'Estiu del País Valencia, 2, 1977, Valencia"} 1 +2024-09-11 09:03:14.378814 2024-09-11 09:03:14.378818 ee5cb86a-23b8-4976-b86f-d3064b1f091a {"md5": "a6b3056d0e8c60590914eb1fd96c0b60", "pid": "961333065", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5515474-8", "source": "GND"}], "variant_name": ["Arid Lands Conference"], "preferred_name": "National Arid Lands Conference", "country_associated": "at", "variant_access_point": ["Arid Lands Conference, 1981, Broken Hill"], "authorized_access_point": "National Arid Lands Conference, 1982, Broken Hill"} 1 +2024-09-11 09:03:14.454783 2024-09-11 09:03:14.454787 da26afb9-8abb-456c-bdbf-e5f9d827dd95 {"md5": "700bdeafc21629c8d254fd518bbcb7dc", "pid": "961337893", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5515942-4", "source": "GND"}], "preferred_name": "Demon", "authorized_access_point": "Demon", "biographical_information": ["All Music Guide: Rockgruppe, ohne Nationalitätsang."]} 1 +2024-09-11 09:03:14.522563 2024-09-11 09:03:14.522568 ecf1815e-2987-44cf-87f0-8aa931266b0d {"md5": "a1afa0e62a099cd32ef832a25982d1f8", "pid": "961342153", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10017516-8", "source": "GND"}], "preferred_name": "Kaufmännische Fortbildungsschule", "authorized_access_point": "Kaufmännische Fortbildungsschule. Steyr"} 1 +2024-09-11 09:03:14.587198 2024-09-11 09:03:14.587203 fd562205-a740-456a-96c0-011bac5005c8 {"md5": "81ca51d7be59a93f45ebd02e4cfd73cd", "pid": "961397047", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1244781-X", "source": "GND"}], "variant_name": ["Welt-Bildungs-Forum"], "preferred_name": "World Education Forum", "country_associated": "sg", "variant_access_point": ["Welt-Bildungs-Forum, 2000, Dakar"], "authorized_access_point": "World Education Forum, 2000, Dakar"} 1 +2024-09-11 09:03:16.821657 2024-09-11 09:03:16.821661 437b82ae-ba83-47c4-8b6a-3cbac9a5e586 {"md5": "d5a2beef57044da70db74d3c652c7a9b", "pid": "962559512", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6022144-6", "source": "GND"}], "preferred_name": "Conference on Optical Fiber Sensors", "country_associated": "xxk", "authorized_access_point": "Conference on Optical Fiber Sensors, 2000, Glasgow"} 1 +2024-09-11 09:03:14.670152 2024-09-11 09:03:14.670155 4644a2b7-1ff6-4133-8b87-6c14b32ea600 {"md5": "27d3880be8030093ae1e64af12039b3e", "pid": "961400803", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10018102-8", "source": "GND"}], "variant_name": ["PDS-Kreisverband"], "preferred_name": "Partei des Demokratischen Sozialismus. Kreisverband", "country_associated": "gw", "variant_access_point": ["PDS-Kreisverband. Torgau; Oschatz"], "authorized_access_point": "Partei des Demokratischen Sozialismus. Kreisverband. Torgau; Oschatz"} 1 +2024-09-11 09:03:14.739322 2024-09-11 09:03:14.739325 0faa5dc5-01f0-4b02-a44e-0ba32e3ca871 {"md5": "0698de0099934a0856d0392cf81f75b4", "pid": "961589809", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10018660-9", "source": "GND"}], "preferred_name": "An Post", "country_associated": "ie", "date_of_establishment": "1984", "authorized_access_point": "An Post. Dublin", "biographical_information": ["Limited company"]} 1 +2024-09-11 09:03:14.815332 2024-09-11 09:03:14.815335 cd374cda-0bd2-42b7-be76-3f535f80f2f2 {"md5": "c03cc9c8b000fc10c394ef7d99622f20", "pid": "961631171", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4637897-2", "source": "GND"}], "variant_name": ["Ch'uang-tsao-she", "Schöpferische Gesellschaft", "Creation Society", "Chuangzao-She", "Chuangzaoshe"], "preferred_name": "Chuang zao she", "country_associated": "cc", "date_of_termination": "1929", "variant_access_point": ["Ch'uang-tsao-she", "Schöpferische Gesellschaft", "Creation Society", "Chuangzao-She", "Chuangzaoshe"], "date_of_establishment": "1921", "parallel_access_point": ["創造社. 上海"], "authorized_access_point": "Chuang zao she", "biographical_information": ["Chines. literar. Gesellschaft (1921-1929)"]} 1 +2024-09-11 09:03:14.883311 2024-09-11 09:03:14.883314 e511b380-cf8f-4665-ae39-ec2e5e72df2d {"md5": "22d1d3e5ef1b24d1e1a8d0455663ad5b", "pid": "961636270", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5517299-4", "source": "GND"}], "variant_name": ["Colloque Européen de Micropaléontologie, 14"], "preferred_name": "European Micropaleontological Colloquium Romania, 14", "country_associated": "rm", "variant_access_point": ["Colloque Européen de Micropaléontologie, 14, 1975, Bukarest"], "authorized_access_point": "European Micropaleontological Colloquium Romania, 14, 1975, Bukarest"} 1 +2024-09-11 09:03:14.959823 2024-09-11 09:03:14.959828 af6b937d-d0d0-4270-86d0-807099154f7a {"md5": "2f9ae62d4cfc3aec8d7fcb13eedaf6e2", "pid": "961646969", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5518293-8", "source": "GND"}], "preferred_name": "Geistliche Woche", "authorized_access_point": "Geistliche Woche, 1983, Mannheim"} 1 +2024-09-11 09:03:15.028216 2024-09-11 09:03:15.028221 200ec4df-e995-430a-a61f-7a3c266a6a5e {"md5": "ae46c83bd98c4bcdd6cbd4b5feb1d0ec", "pid": "961652276", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5518815-1", "source": "GND"}], "preferred_name": "Exhibition of Books, Woodcuts, and Illustrated Leaves Printed between 1455 and 1555", "country_associated": "xxu", "authorized_access_point": "Exhibition of Books, Woodcuts, and Illustrated Leaves Printed between 1455 and 1555, 1998 - 1999, New Brunswick, NJ"} 1 +2024-09-11 09:03:15.105225 2024-09-11 09:03:15.105228 5b204e3d-077d-44c2-b420-2b16e3c29d46 {"md5": "29d09ffa6bb9dd220004fcfd45af0b13", "pid": "961659645", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5519553-2", "source": "GND"}], "preferred_name": "Microprocessor Seminar", "country_associated": "xxu", "authorized_access_point": "Microprocessor Seminar, 1984, Palm Springs, Calif."} 1 +2024-09-11 09:03:15.173283 2024-09-11 09:03:15.173287 ae4b9c53-3733-402f-85e1-1ed2146fa517 {"md5": "521b66d8a17945b1ff3ccf432a0c25a4", "pid": "961729155", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10022194-4", "source": "GND"}], "preferred_name": "Deutsche Kongresstage der Wohnungswirtschaft", "authorized_access_point": "Deutsche Kongresstage der Wohnungswirtschaft"} 1 +2024-09-11 09:03:15.274581 2024-09-11 09:03:15.274584 23a0b586-e822-4dd5-bf8e-f6df93df2f0e {"md5": "239a6061981d139c4bdc9bd571df9072", "pid": "961784334", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5520557-4", "source": "GND"}], "preferred_name": "Comitato Virginia Oldoini Contessa di Castiglione", "country_associated": "it", "authorized_access_point": "Comitato Virginia Oldoini Contessa di Castiglione"} 1 +2024-09-11 09:03:15.328049 2024-09-11 09:03:15.328053 cc5cac89-3bc1-4864-b2ad-3c2f68313987 {"md5": "76b05434619d908ecbae16c4d12612ec", "pid": "961792426", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5521367-4", "source": "GND"}], "preferred_name": "Holzenergie-Symposium, 6", "country_associated": "sz", "authorized_access_point": "Holzenergie-Symposium, 6, 2000, Zürich"} 1 +2024-09-11 09:03:15.392999 2024-09-11 09:03:15.393003 389d54f6-c2de-49e2-9c63-93e37543e647 {"md5": "cf355034f8ab4c3e3f0153e44d9e4f5a", "pid": "961797568", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5521876-3", "source": "GND"}], "variant_name": ["Bezirksfachausschuss Schmierungstechnik"], "preferred_name": "Kammer der Technik. Bezirksverband Karl-Marx-Stadt. Bezirksfachausschuss Schmierungstechnik", "variant_access_point": ["Bezirksfachausschuss Schmierungstechnik. Karl-Marx-Stadt"], "authorized_access_point": "Kammer der Technik. Bezirksverband Karl-Marx-Stadt. Bezirksfachausschuss Schmierungstechnik"} 1 +2024-09-11 09:03:15.449694 2024-09-11 09:03:15.449698 75b21871-43b0-4a46-abdb-92753bb837be {"md5": "4d1f00a77a608779213e185cba6b253e", "pid": "961798025", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5521922-6", "source": "GND"}], "preferred_name": "Exhibition Japan. Towards Totalscape, Contemporary Japanese Architecture, Urban Design and Landscape", "country_associated": "ne", "authorized_access_point": "Exhibition Japan. Towards Totalscape, Contemporary Japanese Architecture, Urban Design and Landscape, 2000 - 2001, Rotterdam"} 1 +2024-09-11 09:03:17.481479 2024-09-11 09:03:17.481482 4f859d93-0cca-4799-88f5-cdd722d15b7c {"md5": "7b8fbcf990ca6eb4fbc68615232a1642", "pid": "962669881", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6034085-X", "source": "GND"}], "preferred_name": "Colloque Le Yémen dans la Péninsule Arabique", "country_associated": "gw", "authorized_access_point": "Colloque Le Yémen dans la Péninsule Arabique, 1997, Hamburg"} 1 +2024-09-11 09:03:15.508677 2024-09-11 09:03:15.508681 836b125c-0faf-4550-9b86-d1adfc5d0f0f {"md5": "04740a2a34880bcb8ae0563734aa5273", "pid": "962037141", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5523011-8", "source": "GND"}], "preferred_name": "Markaz Wasāʾil al-Īḍāḥ. Qism al-Iršād az-Zirāʿī", "country_associated": "iq", "authorized_access_point": "Markaz Wasāʾil al-Īḍāḥ. Bagdad. Qism al-Iršād az-Zirāʿī"} 1 +2024-09-11 09:03:15.565927 2024-09-11 09:03:15.565932 61d4bab1-488c-40c4-950b-c36bf822c23a {"md5": "42732dec8a36c6679a8e6ab41df07306", "pid": "962243477", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1245804-1", "source": "GND"}], "preferred_name": "Musikverein", "country_associated": "gw", "authorized_access_point": "Musikverein. Wittislingen"} 1 +2024-09-11 09:03:15.628091 2024-09-11 09:03:15.628096 bb5b7d52-968f-45d5-bfca-034b0ce94ba3 {"md5": "45d638f6483305db07f4230957f6af3f", "pid": "962251968", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1704727-4", "source": "GND"}], "variant_name": ["Katholische Kirchengemeinde", "Katholische Gemeinde", "Katholische Pfarrgemeinde", "Pfarrei", "Sankt Johannis", "St. Johannis", "Pfarrei St. Johannis", "Pfarrei Sankt Johannis. Rothenburg ob der Tauber", "Pfarrei Sankt Johannis", "Katholische Kirchengemeinde Rothenburg ob der Tauber", "Kuratie Rothenburg", "Sankt Johannis"], "preferred_name": "Pfarrei Sankt Johannis", "country_associated": "gw", "variant_access_point": ["Katholische Kirchengemeinde. Rothenburg ob der Tauber", "Katholische Gemeinde. Rothenburg ob der Tauber", "Katholische Pfarrgemeinde. Rothenburg ob der Tauber", "Pfarrei. Pfarrei Sankt Johannis, Rothenburg, Tauber", "Sankt Johannis. Rothenburg ob der Tauber", "St. Johannis. Rothenburg ob der Tauber", "Pfarrei St. Johannis. Rothenburg ob der Tauber", "Pfarrei Sankt Johannis. Rothenburg ob der Tauber", "Pfarrei Sankt Johannis", "Katholische Kirchengemeinde Rothenburg ob der Tauber", "Kuratie Rothenburg", "Sankt Johannis. Rothenburg, Tauber . Ehemalige Vorzugsbenennung SWD"], "authorized_access_point": "Pfarrei Sankt Johannis. Rothenburg ob der Tauber", "biographical_information": ["1803 als Kuratie errichtet, ab 1893 Pfarrei"]} 1 +2024-09-11 09:03:15.685289 2024-09-11 09:03:15.685294 df4a3538-00cf-4d61-9ff6-d6941b5c9b22 {"md5": "2dffebf0c5815ad4966316b754718c19", "pid": "96233359X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6025876-7", "source": "GND"}], "preferred_name": "Workshop Intelligente Softwareagenten und Betriebswirtschaftliche Anwendungsszenarien", "authorized_access_point": "Workshop Intelligente Softwareagenten und Betriebswirtschaftliche Anwendungsszenarien, 1999, Ilmenau"} 1 +2024-09-11 09:03:15.747196 2024-09-11 09:03:15.747199 5d26903c-6319-4ef3-8adc-6c207466a54a {"md5": "eca2fb3bcd8e53bf8bf258b566a58bb5", "pid": "962390097", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10026614-9", "source": "GND"}], "variant_name": ["Departamento de Hacienda y Administración Pública", "Baskenland. Gobierno. Departamento de Hacienda y Administración Pública", "Baskenland. Ogasun eta Herri Administrazio Saila", "Baskenland. Gobierno. Ogasun eta Herri Administrazio Saila", "Ogasun eta Herri Administrazio Saila"], "preferred_name": "Baskenland. Departamento de Hacienda y Administración Pública", "country_associated": "sp", "variant_access_point": ["Departamento de Hacienda y Administración Pública. Baskenland, Spanien", "Baskenland. Spanien. Gobierno. Departamento de Hacienda y Administración Pública", "Baskenland. Spanien. Ogasun eta Herri Administrazio Saila", "Baskenland. Spanien. Gobierno. Ogasun eta Herri Administrazio Saila", "Ogasun eta Herri Administrazio Saila. Baskenland, Spanien"], "authorized_access_point": "Baskenland. Spanien. Departamento de Hacienda y Administración Pública"} 1 +2024-09-11 09:03:15.806741 2024-09-11 09:03:15.806743 c09fef63-b2fc-49a5-899c-3381c57f3a55 {"md5": "fef280f1819c1b8ae4e90c52de5b393a", "pid": "962446440", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6008987-8", "source": "GND"}], "variant_name": ["Zahnradkonferenz, 2"], "preferred_name": "Fogaskerék Konferencia, 2", "country_associated": "hu", "variant_access_point": ["Zahnradkonferenz, 2, 1969, Budapest"], "authorized_access_point": "Fogaskerék Konferencia, 2, 1969, Budapest"} 1 +2024-09-11 09:03:15.875616 2024-09-11 09:03:15.875621 1a02bf40-ed3d-4f99-8e1e-70cf4c57a7fa {"md5": "c8d89b4b765bf6ea27d35b3a9b7fc77b", "pid": "962450170", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6009422-9", "source": "GND"}], "variant_name": ["Symposium pour la Mise au Point d'Industries à Sable Dégré De, 1", "LPPSD Symposium, 1"], "preferred_name": "Symposium on Low Pollution Power Systems Development, 1", "country_associated": "xxu", "variant_access_point": ["Symposium pour la Mise au Point d'Industries à Sable Dégré De, 1, 1973, Ann Arbor, Mich.", "LPPSD Symposium, 1, 1973, Ann Arbor, Mich."], "authorized_access_point": "Symposium on Low Pollution Power Systems Development, 1, 1973, Ann Arbor, Mich."} 1 +2024-09-11 09:03:15.933977 2024-09-11 09:03:15.933982 c59730cc-7a34-40b8-9770-9130a2bbcae7 {"md5": "cd55ed772196bd0832eae596148e5629", "pid": "962470929", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6011800-3", "source": "GND"}], "variant_name": ["ISSC, 3"], "preferred_name": "International Ship Structures Congress, 3", "country_associated": "no", "variant_access_point": ["ISSC, 3, 1967, Oslo"], "authorized_access_point": "International Ship Structures Congress, 3, 1967, Oslo"} 1 +2024-09-11 09:03:15.992591 2024-09-11 09:03:15.992595 2032310f-ad93-4c13-95a4-37a92bc7804f {"md5": "274ad3444f37833787a2fea169048b82", "pid": "96247357X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6012122-1", "source": "GND"}], "variant_name": ["US Japan Seminar on Earthquake Prediction, 7", "US-Japan Seminar on Earthquake Prediction, 7"], "preferred_name": "Seminar on Earthquake Prediction, 7", "country_associated": "xxu", "variant_access_point": ["US Japan Seminar on Earthquake Prediction, 7, 1988, Morro Bay, Calif.", "US-Japan Seminar on Earthquake Prediction, 7, 1988, Morro Bay, Calif."], "authorized_access_point": "Seminar on Earthquake Prediction, 7, 1988, Morro Bay, Calif."} 1 +2024-09-11 09:03:18.793683 2024-09-11 09:03:18.793687 0195c775-dd4e-4c73-8219-87ae1a277b38 {"md5": "c3753c7607117be4e16ba770bec6b16a", "pid": "963410849", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/411496-6", "source": "GND"}], "preferred_name": "Wirtschaftssymposium", "authorized_access_point": "Wirtschaftssymposium, 1990, Salzburg"} 1 +2024-09-11 09:03:16.073078 2024-09-11 09:03:16.073082 a21ab20b-4a66-4ea9-9f85-4a6a98505cf5 {"md5": "5afdc403bd2c072f17bafad416089393", "pid": "962498726", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6015028-2", "source": "GND"}], "variant_name": ["Optimization Days Mini-Conference, 5", "OD Mini-Conference, 5", "OD Mini Conference, 5"], "preferred_name": "Optimization Days Mini Conference, 5", "country_associated": "at", "variant_access_point": ["Optimization Days Mini-Conference, 5, 1998, Perth, Western Australia", "OD Mini-Conference, 5, 1998, Perth, Western Australia", "OD Mini Conference, 5, 1998, Perth, Western Australia"], "authorized_access_point": "Optimization Days Mini Conference, 5, 1998, Perth, Western Australia"} 1 +2024-09-11 09:03:16.146861 2024-09-11 09:03:16.146865 447edba9-de2d-41ba-8b73-30ccd7dc1f4c {"md5": "d790f3b818cbccd551b34653a7592b8b", "pid": "962506168", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6015903-0", "source": "GND"}], "variant_name": ["IP World Forum"], "preferred_name": "Intellectual Property World Forum", "country_associated": "xxu", "variant_access_point": ["IP World Forum, 1999, Santa Clara, Calif."], "authorized_access_point": "Intellectual Property World Forum, 1999, Santa Clara, Calif."} 1 +2024-09-11 09:03:16.215069 2024-09-11 09:03:16.215072 f48393e2-2190-4aed-a4de-909deb2b9480 {"md5": "b6e1b65f25e1c320db2f5f1299dd8a28", "pid": "96251716X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6017228-9", "source": "GND"}], "variant_name": ["Eing Textilveredlung GmbH, Hubert", "Textilveredlung GmbH, Hubert Eing"], "preferred_name": "Hubert Eing Textilveredlung GmbH", "country_associated": "gw", "variant_access_point": ["Eing Textilveredlung GmbH, Hubert. Gescher", "Textilveredlung GmbH, Hubert Eing. Gescher"], "authorized_access_point": "Hubert Eing Textilveredlung GmbH. Gescher"} 1 +2024-09-11 09:03:16.286449 2024-09-11 09:03:16.286455 abca3726-be44-4c64-9bce-00c99777c0b3 {"md5": "c0c784507e96df4cc95ed66642a6b6bc", "pid": "96252736X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6018450-4", "source": "GND"}], "preferred_name": "IOCARIBE Users and the Global Ocean Observing System (GOOS) Capacity Building Workshop", "country_associated": "cr", "authorized_access_point": "IOCARIBE Users and the Global Ocean Observing System (GOOS) Capacity Building Workshop, 1999, San José, Costa Rica"} 1 +2024-09-11 09:03:16.358347 2024-09-11 09:03:16.358352 d7d6b0b1-2f1b-44a2-ab47-ef4d113bfa69 {"md5": "6270479356928e037be3d5e5374a07ff", "pid": "962530328", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6018803-0", "source": "GND"}], "variant_name": ["Peiner Walzwerk", "Walzwerk"], "preferred_name": "Ilseder Hütte. Abteilung Peiner Walzwerk", "variant_access_point": ["Peiner Walzwerk. Peine", "Walzwerk. Peine"], "authorized_access_point": "Ilseder Hütte. Peine. Abteilung Peiner Walzwerk"} 1 +2024-09-11 09:03:16.424138 2024-09-11 09:03:16.424142 757e24ef-611b-4ec7-8a92-cd74b2f7fb45 {"md5": "dc05aea322ad8df9e83a90118cad5615", "pid": "962533300", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6019141-7", "source": "GND"}], "preferred_name": "Stadthalle", "country_associated": "gw", "authorized_access_point": "Stadthalle. Bremerhaven"} 1 +2024-09-11 09:03:16.482564 2024-09-11 09:03:16.482567 0c663b98-1239-4d06-8ad8-575a22888663 {"md5": "499534c56b0f6f2999118f90dc65a3a1", "pid": "962540196", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6019952-0", "source": "GND"}], "variant_name": ["USA. Army. Research Laboratory. Vehicle Technology Directorate", "VTD"], "preferred_name": "USA. Army. Vehicle Technology Directorate", "country_associated": "xxu", "variant_access_point": ["USA. Army. Research Laboratory. Vehicle Technology Directorate", "VTD. Abkuerzung"], "authorized_access_point": "USA. Army. Vehicle Technology Directorate"} 1 +2024-09-11 09:03:16.542373 2024-09-11 09:03:16.542377 01258a07-334c-44f5-82fd-0c304770fdd8 {"md5": "8f0632e362a7a872e4963019c963baae", "pid": "962545295", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6020536-2", "source": "GND"}], "variant_name": ["CGS, 10"], "preferred_name": "International Symposium on Capture Gamma-Ray Spectroscopy and Related Topics, 10", "country_associated": "xxu", "variant_access_point": ["CGS, 10, 1999, Santa Fe, NM"], "authorized_access_point": "International Symposium on Capture Gamma-Ray Spectroscopy and Related Topics, 10, 1999, Santa Fe, NM"} 1 +2024-09-11 09:03:16.596546 2024-09-11 09:03:16.596551 3f091dfb-4ffe-4f45-a739-76864b170949 {"md5": "905f3f333166f5846ecc7f61b32ee707", "pid": "962552380", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6021330-9", "source": "GND"}], "variant_name": ["OPECE, 9"], "preferred_name": "International Conference Overvoltages in Power - Electronic - and Computer Engineering, 9", "country_associated": "pl", "variant_access_point": ["OPECE, 9, 1998, Hołny Mejera; Kaunas"], "authorized_access_point": "International Conference Overvoltages in Power - Electronic - and Computer Engineering, 9, 1998, Hołny Mejera; Kaunas"} 1 +2024-09-11 09:03:16.65577 2024-09-11 09:03:16.655775 feff7ffa-25b6-460b-98f4-67ef6b05addc {"md5": "3d25244ae326dd1b022f93aff833cb5f", "pid": "962552569", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6021351-6", "source": "GND"}], "preferred_name": "Siedlungswasserwirtschaftliche Fachexkursion", "country_associated": "sa", "authorized_access_point": "Siedlungswasserwirtschaftliche Fachexkursion, 1982, Kapstadt"} 1 +2024-09-11 09:03:16.712665 2024-09-11 09:03:16.712667 e5dff892-5645-4777-b86e-821f46af3c84 {"md5": "42cb7c7850ab7b5cc0f81ab82b32f922", "pid": "962557110", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6021874-5", "source": "GND"}], "variant_name": ["International EFC Workshop on Microbial Corrosion, 4", "Workshop on Microbial Corrosion, 4"], "preferred_name": "International Workshop on Microbial Corrosion, 4", "country_associated": "po", "variant_access_point": ["International EFC Workshop on Microbial Corrosion, 4, 1999, Lissabon", "Workshop on Microbial Corrosion, 4, 1999, Lissabon"], "authorized_access_point": "International Workshop on Microbial Corrosion, 4, 1999, Lissabon"} 1 +2024-09-11 09:03:16.875964 2024-09-11 09:03:16.875968 7aa4d34d-5a37-423d-8f6b-5ee4cd601cb1 {"md5": "2872fdba17fe9be5c7e3061d995ef932", "pid": "962562688", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6022508-7", "source": "GND"}], "variant_name": ["SEAPEX Exploration Conference", "SEAPEX Silver Jubilee Conference"], "preferred_name": "Exploration Conference", "country_associated": "si", "variant_access_point": ["SEAPEX Exploration Conference, 1998, Singapur", "SEAPEX Silver Jubilee Conference, 1998, Singapur"], "authorized_access_point": "Exploration Conference, 1998, Singapur"} 1 +2024-09-11 09:03:16.927672 2024-09-11 09:03:16.927676 e2e2afb9-1612-4b2b-8272-70dfcb80bc39 {"md5": "623efa08cc840f7b211cfa1a9058ef15", "pid": "962582697", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6024760-5", "source": "GND"}], "preferred_name": "International Workshop on Strategic Knowledge and Concept Formation, 2", "authorized_access_point": "International Workshop on Strategic Knowledge and Concept Formation, 2, 1999, Takizawa"} 1 +2024-09-11 09:03:16.9858 2024-09-11 09:03:16.985806 2319a5f6-8ea5-48ef-afd5-afc928a7cfdd {"md5": "abfb3e1438c46c923b488b552ac5e6f3", "pid": "962587087", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6025240-6", "source": "GND"}], "preferred_name": "Experten-Workshop Informatisierung des Lernens und der Kommunikation", "country_associated": "gw", "authorized_access_point": "Experten-Workshop Informatisierung des Lernens und der Kommunikation, 1999, Düsseldorf"} 1 +2024-09-11 09:03:17.041345 2024-09-11 09:03:17.041349 c339938e-0023-4a58-8ae3-10d7993ecc50 {"md5": "30351df67d137eac4bb24338937ab138", "pid": "962615838", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6028376-2", "source": "GND"}], "variant_name": ["Latinska Šola", "Ruška Šola", "Šola", "Schule", "School"], "preferred_name": "Ruška Latinska Šola", "date_of_termination": "1760", "variant_access_point": ["Latinska Šola. Ruše", "Ruška Šola", "Šola. Ruše", "Schule. Ruše", "School. Ruše"], "date_of_establishment": "1645", "authorized_access_point": "Ruška Latinska Šola"} 1 +2024-09-11 09:03:17.0969 2024-09-11 09:03:17.096905 6f9052ff-258e-410c-a674-9a8a76257f8b {"md5": "98b062fd00515cf0e2fd61ca0b868e76", "pid": "962626554", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6029523-5", "source": "GND"}], "preferred_name": "International Symposium on Free Radicals in Life Science", "country_associated": "ja", "authorized_access_point": "International Symposium on Free Radicals in Life Science, 2000, Tokio"} 1 +2024-09-11 09:03:17.149358 2024-09-11 09:03:17.14936 b9656014-f07a-4a81-ba01-095923983d74 {"md5": "8ddf5dea13a06483584cdf5d1982bc6f", "pid": "96263025X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6029918-6", "source": "GND"}], "preferred_name": "Kongreß Embedded Intelligence, 6", "authorized_access_point": "Kongreß Embedded Intelligence, 6, 2001, Nürnberg"} 1 +2024-09-11 09:03:17.201939 2024-09-11 09:03:17.201944 f12c985b-f428-41d5-b326-92868d048636 {"md5": "1a94d22d0b04a7e81ce95a7ce813724a", "pid": "962632058", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6030117-X", "source": "GND"}], "preferred_name": "Ausstellung Kinderleben - Kinder Leben Lassen", "country_associated": "gw", "authorized_access_point": "Ausstellung Kinderleben - Kinder Leben Lassen, 1979, Hamburg"} 1 +2024-09-11 09:03:17.253008 2024-09-11 09:03:17.253012 4f9360e6-3c15-4a78-a96e-046078ffda49 {"md5": "16d19fd16269efa1da6f208f931f4c96", "pid": "962637289", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6030677-4", "source": "GND"}], "variant_name": ["Verschönerungsverein", "Verein zur Verschönerung"], "preferred_name": "Verein zur Verschönerung von Memel und Umgegend und zur Hebung des Fremdenverkehrs", "variant_access_point": ["Verschönerungsverein. Memel", "Verein zur Verschönerung. Memel"], "authorized_access_point": "Verein zur Verschönerung von Memel und Umgegend und zur Hebung des Fremdenverkehrs"} 1 +2024-09-11 09:03:17.306086 2024-09-11 09:03:17.30609 7db3f412-cb8f-4271-892c-15b409c9eb29 {"md5": "dc230e4a0c45922e9fd9636234f74680", "pid": "962660914", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6033155-0", "source": "GND"}], "preferred_name": "Kolloquium Das Französische Deutschlandbild im Europa des 17. und 18. Jahrhunderts", "country_associated": "gw", "authorized_access_point": "Kolloquium Das Französische Deutschlandbild im Europa des 17. und 18. Jahrhunderts, 1999, Marburg"} 1 +2024-09-11 09:03:17.358766 2024-09-11 09:03:17.35877 1a43d031-eed1-4b80-a6e8-eb21593fef18 {"md5": "be336d4e3039db10b79a5dbe2e8276d5", "pid": "96266734X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6033818-0", "source": "GND"}], "variant_name": ["MMNT"], "preferred_name": "Konferencija Primenenie Matematičeskogo Modelirovanija dlja Rešenija Zadač v Nauke i Technike", "country_associated": "ru", "variant_access_point": ["MMNT, 1996, Ischewsk"], "authorized_access_point": "Konferencija Primenenie Matematičeskogo Modelirovanija dlja Rešenija Zadač v Nauke i Technike, 1996, Ischewsk"} 1 +2024-09-11 09:03:17.414567 2024-09-11 09:03:17.41457 ee628f3c-1d97-40ee-9ac5-cd7952ab0129 {"md5": "6a9e53e6fd03c2c45f0d7597627825f2", "pid": "962668389", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6033931-7", "source": "GND"}], "variant_name": ["Centre de Recherche VALIBEL", "Université catholique de Louvain. Département d'Etudes Romanes. Centre de Recherche VALIBEL", "Centre de Recherche sur les Variétés Linguistiques du Français en Belgique", "Université catholique de Louvain. Département d'Etudes Romanes. Centre de Recherche sur les Variétés Linguistiques du Français en Belgique", "VALIBEL"], "preferred_name": "Centre de Recherche sur les Variétés Linguistiques du Français en Belgique", "country_associated": "be", "variant_access_point": ["Centre de Recherche VALIBEL. Louvain-la-Neuve", "Université catholique de Louvain. Département d'Etudes Romanes. Centre de Recherche VALIBEL", "Centre de Recherche sur les Variétés Linguistiques du Français en Belgique. Ottignies-Louvain-la-Neuve", "Université catholique de Louvain. Département d'Etudes Romanes. Centre de Recherche sur les Variétés Linguistiques du Français en Belgique", "VALIBEL. Abkuerzung"], "authorized_access_point": "Centre de Recherche sur les Variétés Linguistiques du Français en Belgique. Louvain-la-Neuve"} 1 +2024-09-11 09:03:17.544778 2024-09-11 09:03:17.544782 36846d51-f870-4e9b-815a-f5fa6e598449 {"md5": "5128c4bcc8a50845a2d4f66f3a6c8785", "pid": "962941042", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5525499-8", "source": "GND"}], "variant_name": ["Computer Conference"], "preferred_name": "National Computer Conference", "country_associated": "xxu", "variant_access_point": ["Computer Conference, 1982, Houston, Tex."], "authorized_access_point": "National Computer Conference, 1982, Houston, Tex."} 1 +2024-09-11 09:03:17.596304 2024-09-11 09:03:17.596307 5ffa4f03-f2c3-4b66-84ef-ac110d8d017b {"md5": "12255ec97f728d9c1b491ce8f5fa2234", "pid": "962948918", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5526323-9", "source": "GND"}], "preferred_name": "Tanglewood String Symposium", "authorized_access_point": "Tanglewood String Symposium. 1964"} 1 +2024-09-11 09:03:17.656628 2024-09-11 09:03:17.656633 6f821a80-a2d0-4109-9f9b-3ba4b640b0bb {"md5": "7830c9063a445066e22a14aafab9d830", "pid": "96303409X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10029337-2", "source": "GND"}], "variant_name": ["Museum Junkerhaus", "Junkerhaus"], "preferred_name": "Museum Junkerhaus Lemgo", "country_associated": "gw", "variant_access_point": ["Museum Junkerhaus", "Junkerhaus. Körperschaft"], "date_of_establishment": "2004", "authorized_access_point": "Museum Junkerhaus Lemgo", "biographical_information": ["Zum Museum gehören das eigentliche \\"Junkerhaus\\" und ein neues Museumsgebäude (mit Foyer und Ausstellungshalle, eröffnet 2004)"]} 1 +2024-09-11 09:03:17.708552 2024-09-11 09:03:17.708556 3b35f0c4-094b-42d8-95d5-d3b260ee50b6 {"md5": "676d3027ae8709e690bee32071636ca3", "pid": "963066536", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3050483-1", "source": "GND"}], "variant_name": ["International Symposium on the Mechanics of Hearing, 7", "Symposium Recent Developments in Auditory Mechanics, 7", "Conference on Recent Developments in Auditory Mechanics, 7"], "preferred_name": "International Symposium on Recent Developments in Auditory Mechanics", "country_associated": "ja", "variant_access_point": ["International Symposium on the Mechanics of Hearing, 7, 1999, Sendai", "Symposium Recent Developments in Auditory Mechanics, 7, 1999, Sendai", "Conference on Recent Developments in Auditory Mechanics, 7, 1999, Sendai"], "authorized_access_point": "International Symposium on Recent Developments in Auditory Mechanics, 1999, Sendai"} 1 +2024-09-11 09:03:17.763243 2024-09-11 09:03:17.763245 feb88bee-5154-4e83-908e-aa40faf27f8c {"md5": "283849ac5ca0be55a2c1a5c9fc960f73", "pid": "963134205", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10030065-0", "source": "GND"}], "variant_name": ["Europa-Union Deutschland. KV Rhein-Lahn"], "preferred_name": "Europa-Union Deutschland. Kreisverband Rhein-Lahn", "country_associated": "gw", "variant_access_point": ["Europa-Union Deutschland. KV Rhein-Lahn"], "authorized_access_point": "Europa-Union Deutschland. Kreisverband Rhein-Lahn"} 1 +2024-09-11 09:03:17.817416 2024-09-11 09:03:17.81742 390711be-256f-47b0-91ed-8a10ab6f689d {"md5": "9d0db7acfb2fd511f231aff1a1fc3098", "pid": "963138812", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1705168-X", "source": "GND"}], "variant_name": ["International Symposium Evolution and Morphogenesis"], "preferred_name": "International Symposium on Evolution and Morphogenesis", "variant_access_point": ["International Symposium Evolution and Morphogenesis, 1984, Plzeň"], "authorized_access_point": "International Symposium on Evolution and Morphogenesis, 1984, Pilsen"} 1 +2024-09-11 09:03:17.868675 2024-09-11 09:03:17.868678 09d2c03a-d56b-4038-a303-1766da057aea {"md5": "c843222c8eb84c1db2c35ac625e8b882", "pid": "963139460", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1705229-4", "source": "GND"}], "variant_name": ["Meeting on Orders and their Applications", "Orders and their Applications"], "preferred_name": "Conference on Orders and Their Applications", "country_associated": "gw", "variant_access_point": ["Meeting on Orders and their Applications, 1984, Oberwolfach", "Orders and their Applications, 1984, Oberwolfach"], "authorized_access_point": "Conference on Orders and Their Applications, 1984, Oberwolfach"} 1 +2024-09-11 09:03:17.924517 2024-09-11 09:03:17.924522 1e1f4a24-940b-4415-98e2-a970862d6ce0 {"md5": "ef6ec56ca1f78122c1f200be77da5796", "pid": "963225332", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5528883-2", "source": "GND"}], "variant_name": ["All-Union Conference on Radiation Chemistry, 1", "Soveščanie po Radiacionnoj Chimii, 1"], "preferred_name": "Vsesojuznoe Soveščanie po Radiacionnoj Chimii, 1", "variant_access_point": ["All-Union Conference on Radiation Chemistry, 1, 1957, Moskau", "Soveščanie po Radiacionnoj Chimii, 1, 1957, Moskau"], "authorized_access_point": "Vsesojuznoe Soveščanie po Radiacionnoj Chimii, 1, 1957, Moskau"} 1 +2024-09-11 09:03:17.980814 2024-09-11 09:03:17.980817 f8c8fc6e-9f42-4b38-9646-45cf2669c873 {"md5": "1c58b8bdf503dae5ed487f909045b4f9", "pid": "963233599", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5529704-3", "source": "GND"}], "variant_name": ["Eisenbau Bleichert KG", "Bleichert KG, Neusser Eisenbau"], "preferred_name": "Neusser Eisenbau Bleichert KG", "country_associated": "gw", "variant_access_point": ["Eisenbau Bleichert KG. Neuss", "Bleichert KG, Neusser Eisenbau"], "authorized_access_point": "Neusser Eisenbau Bleichert KG"} 1 +2024-09-11 09:03:18.037145 2024-09-11 09:03:18.037151 8eee68ef-cad6-462b-9e4f-ea4a4a099780 {"md5": "0f10701cefd0a56c18d09a93e34ce8f8", "pid": "963261959", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10031162-3", "source": "GND"}], "preferred_name": "Rosenbergschule", "country_associated": "gw", "authorized_access_point": "Rosenbergschule"} 1 +2024-09-11 09:03:18.090936 2024-09-11 09:03:18.090939 89224bcf-a664-47e4-8391-49d4b005edd5 {"md5": "015538e416407489217b3bbf206463da", "pid": "963262246", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10031214-7", "source": "GND"}], "preferred_name": "Malteser-Hilfdienst. Kreis Göppingen", "country_associated": "gw", "authorized_access_point": "Malteser-Hilfdienst. Kreis Göppingen"} 1 +2024-09-11 09:03:18.142328 2024-09-11 09:03:18.142332 a66b652e-c611-48a5-ac05-8a264fca3027 {"md5": "9bbc9ac7371b1ad90c05db0cfd5a9698", "pid": "963262513", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10031252-4", "source": "GND"}], "variant_name": ["DKRT", "Krankenhausrechtstag"], "preferred_name": "Deutscher Krankenhausrechtstag", "country_associated": "gw", "variant_access_point": ["DKRT, 2000, Frankfurt, Main", "Krankenhausrechtstag, 2000, Frankfurt, Main"], "authorized_access_point": "Deutscher Krankenhausrechtstag, 2000, Frankfurt, Main"} 1 +2024-09-11 09:03:18.196649 2024-09-11 09:03:18.196653 1329ce6a-e983-4d22-b93f-cdf107fd7718 {"md5": "a70db4e53bd2bffe57ba9f5fe9011a01", "pid": "963299433", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/414062-X", "source": "GND"}], "preferred_name": "Symposion Bildung und Erziehung in einem Vereinten Europa", "country_associated": "gr", "authorized_access_point": "Symposion Bildung und Erziehung in einem Vereinten Europa, 1990, Kolymbari"} 1 +2024-09-11 09:03:18.250286 2024-09-11 09:03:18.250291 11cf513a-796e-45dc-ba4e-ea74b8d5a3f4 {"md5": "4be869fb5f88ae6ff80d831a0c3ac330", "pid": "963317040", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/402401-1", "source": "GND"}], "variant_name": ["K.K. Staatsrealschule", "Staatsrealschule"], "preferred_name": "Kaiserlich-Königliche Staatsrealschule", "variant_access_point": ["K.K. Staatsrealschule. Pola", "Staatsrealschule. Pola"], "authorized_access_point": "Kaiserlich-Königliche Staatsrealschule. Pola"} 1 +2024-09-11 09:03:18.309494 2024-09-11 09:03:18.309497 d05f8123-1f08-4510-9b90-46d7bb76eaf5 {"md5": "1581a55dcdfca5cbea78ab591a238425", "pid": "963320343", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/413808-9", "source": "GND"}], "variant_name": ["Bildungshaus Schloß Seggau", "Bildungshaus Schloß Seggau", "Katholisches Bildungshaus", "Kath. Bildungshaus"], "preferred_name": "Bildungshaus Schloß Seggau", "country_associated": "au", "variant_access_point": ["Bildungshaus Schloß Seggau", "Bildungshaus Schloß Seggau", "Katholisches Bildungshaus. Seggauberg", "Kath. Bildungshaus. Seggauberg"], "authorized_access_point": "Bildungshaus Schloß Seggau"} 1 +2024-09-11 09:03:18.363173 2024-09-11 09:03:18.363177 fcf9981b-3097-4795-944d-6b9fa07383b1 {"md5": "4af93ba70cc9b0eed5faed4499dcece9", "pid": "963327666", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/415273-6", "source": "GND"}], "preferred_name": "Opel Austria GmbH", "country_associated": "au", "date_of_termination": "2000", "date_of_establishment": "1994", "authorized_access_point": "Opel Austria GmbH. Wien"} 1 +2024-09-11 09:03:18.419708 2024-09-11 09:03:18.419713 0d7eba52-3b49-47e2-89c5-28088e3ba255 {"md5": "9f56b67d0385d8452a3980ef5e1a4894", "pid": "963329812", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/406562-1", "source": "GND"}], "variant_name": ["Pfarre. Pfarramt", "Pfarramt", "Römisch-Katholisches Pfarramt", "Röm.-Kath. Pfarramt"], "preferred_name": "Pfarre", "country_associated": "au", "variant_access_point": ["Pfarre. Mariahof. Pfarramt", "Pfarramt. Pfarre, Mariahof", "Römisch-Katholisches Pfarramt. Pfarre, Mariahof", "Röm.-Kath. Pfarramt. Pfarre, Mariahof"], "authorized_access_point": "Pfarre. Mariahof"} 1 +2024-09-11 09:03:18.471852 2024-09-11 09:03:18.471855 dc870069-4191-4d65-a4e4-1d8ce2e866dc {"md5": "acdf50b78ea5d4e51cc4102a12ed4731", "pid": "963342177", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/408131-6", "source": "GND"}], "preferred_name": "Verein zur Führung von Wohngemeinschaften", "country_associated": "au", "authorized_access_point": "Verein zur Führung von Wohngemeinschaften"} 1 +2024-09-11 09:03:18.524908 2024-09-11 09:03:18.524911 26a83f4a-2e15-4039-b2ea-8ec1d6a3e362 {"md5": "76430ab2598793c80f7968d6813b05a6", "pid": "963342231", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/414537-9", "source": "GND"}], "variant_name": ["ÖVP-Gemeindeparteileitung", "ÖVP", "ÖVP-Gemeindeparteileitung Alberndorf"], "preferred_name": "Österreichische Volkspartei. Gemeindeparteileitung", "country_associated": "au", "variant_access_point": ["ÖVP-Gemeindeparteileitung. Alberndorf, Riedmark", "ÖVP. Alberndorf, Riedmark", "ÖVP-Gemeindeparteileitung Alberndorf"], "authorized_access_point": "Österreichische Volkspartei. Gemeindeparteileitung. Alberndorf, Riedmark"} 1 +2024-09-11 09:03:18.578551 2024-09-11 09:03:18.578554 92da2ff9-d3e2-4e32-a2d4-456c16fc777c {"md5": "89140b7c9c7e79d10f6d0bab47b1c61e", "pid": "963348442", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/405158-0", "source": "GND"}], "variant_name": ["ESG"], "preferred_name": "Evangelische Studentengemeinde in Österreich", "country_associated": "au", "variant_access_point": ["ESG. Abkuerzung"], "authorized_access_point": "Evangelische Studentengemeinde in Österreich"} 1 +2024-09-11 09:03:18.631911 2024-09-11 09:03:18.631915 1c329207-8e22-420b-aa1d-0384640509e0 {"md5": "9bfdf71cc4ea94a233a16c5477a0701b", "pid": "963366785", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/404464-2", "source": "GND"}], "variant_name": ["Kammer der Gewerblichen Wirtschaft für Oberösterreich. Betriebsgründungsservice", "Betriebsgründungsservice der Handelskammer Oberösterreich", "BGS"], "preferred_name": "Kammer der Gewerblichen Wirtschaft für Oberösterreich. Referat Betriebsgründungsservice", "variant_access_point": ["Kammer der Gewerblichen Wirtschaft für Oberösterreich. Betriebsgründungsservice", "Betriebsgründungsservice der Handelskammer Oberösterreich", "BGS. Abkuerzung"], "authorized_access_point": "Kammer der Gewerblichen Wirtschaft für Oberösterreich. Referat Betriebsgründungsservice"} 1 +2024-09-11 09:03:18.687849 2024-09-11 09:03:18.687853 8873f4b9-ae62-4980-bbf4-aef28deb9a4c {"md5": "7707bb7dd56a8d0c5a9b67ac62b3f8da", "pid": "963367781", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/406407-0", "source": "GND"}], "preferred_name": "Sparkasse", "country_associated": "au", "authorized_access_point": "Sparkasse. Kufstein"} 1 +2024-09-11 09:03:18.740258 2024-09-11 09:03:18.740262 c517b03e-708b-4a87-87d6-23ba712becfa {"md5": "ebc795014a7a852963dcfc3855855b3f", "pid": "963388673", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/405225-0", "source": "GND"}], "preferred_name": "Kulturverein für Ödenburg und Umgebung", "country_associated": "gw", "authorized_access_point": "Kulturverein für Ödenburg und Umgebung"} 1 +2024-09-11 09:03:18.858955 2024-09-11 09:03:18.858958 0d8a7c3d-b520-429f-9cfb-86647cea9986 {"md5": "9a6edbeec77b7712b4f977aaeb4e3df4", "pid": "963529137", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5530204-X", "source": "GND"}], "variant_name": ["Agendabüro"], "preferred_name": "Kaiserslautern. Amt für Umwelt. Agendabüro", "country_associated": "gw", "variant_access_point": ["Agendabüro. Kaiserslautern"], "authorized_access_point": "Kaiserslautern. Amt für Umwelt. Agendabüro"} 1 +2024-09-11 09:03:18.911959 2024-09-11 09:03:18.911965 c04859a1-1733-42a4-91a8-4f93ffaea611 {"md5": "75e2f986e1a6beeea5846212f179630d", "pid": "963600346", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10032613-4", "source": "GND"}], "preferred_name": "Armada - Werke Ludwig Michael", "country_associated": "sz", "date_of_establishment": "1987", "authorized_access_point": "Armada - Werke Ludwig Michael. Basel"} 1 +2024-09-11 09:03:18.964134 2024-09-11 09:03:18.964138 e17a2b17-ee3c-4180-9fd8-a5894d5229b9 {"md5": "6aa5bceb9478ebbabbd6163f4abaf465", "pid": "96365778X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10032790-4", "source": "GND"}], "variant_name": ["SPVS", "SPVS", "S.P.V.S.", "Society for Practising Veterinary Surgeons"], "preferred_name": "Society of Practising Veterinary Surgeons", "country_associated": "xxk", "variant_access_point": ["SPVS. Abkuerzung", "SPVS. Society of Practising Veterinary Surgeons", "S.P.V.S.. Society of Practising Veterinary Surgeons", "Society for Practising Veterinary Surgeons"], "authorized_access_point": "Society of Practising Veterinary Surgeons"} 1 +2024-09-11 09:03:19.01751 2024-09-11 09:03:19.017515 751ac2e8-9d7a-4608-865e-4d629367670b {"md5": "ccee2355be96188c462d608148c03a17", "pid": "963822977", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5531007-2", "source": "GND"}], "preferred_name": "Congresso Nacional e Internacional de Parapsicologia e Medicina, 1", "country_associated": "bl", "authorized_access_point": "Congresso Nacional e Internacional de Parapsicologia e Medicina, 1, 1976, São Paulo"} 1 +2024-09-11 09:03:19.070735 2024-09-11 09:03:19.070738 c5b10f92-204f-4093-b9e3-74f235844048 {"md5": "67a85dee8075d4d01365b0f3695126dd", "pid": "963823388", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5531050-3", "source": "GND"}], "preferred_name": "Editions du Centre Paul Hymans", "country_associated": "be", "authorized_access_point": "Editions du Centre Paul Hymans. Brüssel"} 1 +2024-09-11 09:03:19.123554 2024-09-11 09:03:19.123558 5411ae8d-300b-4716-8b79-f836dc2f1bab {"md5": "25a4908ea4dd5cb9a7f1a36b9ec0f0fc", "pid": "963837532", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10033656-5", "source": "GND"}], "variant_name": ["Arbeitskreis Sicherheit & Rettung", "AKSR"], "preferred_name": "Verband der Deutschen Höhlen- und Karstforscher. Arbeitskreis Sicherheit & Rettung", "country_associated": "gw", "variant_access_point": ["Arbeitskreis Sicherheit & Rettung", "AKSR. Abkuerzung"], "authorized_access_point": "Verband der Deutschen Höhlen- und Karstforscher. Arbeitskreis Sicherheit & Rettung"} 1 +2024-09-11 09:03:19.178653 2024-09-11 09:03:19.178655 1f75c64c-573c-4032-a9eb-aa00ac64c573 {"md5": "3e80e5c2a78826200aa7a0f1272370fb", "pid": "963859803", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1404176-5", "source": "GND"}], "variant_name": ["Garrett, R. und Sohn", "Richard Garrett & Sons", "R. Garrett et fils", "Richard Garrett et fils"], "preferred_name": "R. Garrett und Sohn", "country_associated": "xxk", "variant_access_point": ["Garrett, R. und Sohn. Saxmundham", "Richard Garrett & Sons. Saxmundham", "R. Garrett et fils. Saxmundham", "Richard Garrett et fils. Saxmundham"], "authorized_access_point": "R. Garrett und Sohn. Saxmundham"} 1 +2024-09-11 09:03:19.23771 2024-09-11 09:03:19.237714 6ec9d869-d9f7-465b-83f7-d150b1c44f84 {"md5": "c303297d2c6c2fd45692f1454f608cde", "pid": "963859811", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1404177-7", "source": "GND"}], "variant_name": ["Dairy Conference"], "preferred_name": "National Dairy Conference", "country_associated": "ie", "variant_access_point": ["Dairy Conference, 1999, Limerick"], "authorized_access_point": "National Dairy Conference, 1999, Limerick"} 1 +2024-09-11 09:03:19.299352 2024-09-11 09:03:19.299357 ac66c60b-69e1-41fe-9b32-e96f8ef79f2c {"md5": "33e9f725f4fe283e0cf0f0f6502922ce", "pid": "964213427", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4681506-5", "source": "GND"}], "variant_name": ["Deutsche Sozialisten SP Cleveland, Ohio", "German Socialists SP Cleveland, Ohio", "Vereinigte Deutsche Sozialisten Clevelands", "Sozialistische Partei der Vereinigten Staaten von Amerika. Deutsche Sozialisten Cleveland, Ohio", "Sozialistische Arbeiter-Partei Amerikas. Sektion Cleveland, Ohio", "Verein der Sozialisten Cleveland, Ohio"], "preferred_name": "Deutsche Sozialisten Cleveland, Ohio", "country_associated": "xxu", "variant_access_point": ["Deutsche Sozialisten SP Cleveland, Ohio", "German Socialists SP Cleveland, Ohio", "Vereinigte Deutsche Sozialisten Clevelands", "Sozialistische Partei der Vereinigten Staaten von Amerika. Deutsche Sozialisten Cleveland, Ohio", "Sozialistische Arbeiter-Partei Amerikas. Sektion Cleveland, Ohio", "Verein der Sozialisten Cleveland, Ohio"], "authorized_access_point": "Deutsche Sozialisten Cleveland, Ohio", "biographical_information": ["Lokale Sektion der Sozialist. Partei der Vereinigten Staaten von Amerika, übewiegend deutschstämmige Mitglieder"]} 1 +2024-09-11 09:03:19.358236 2024-09-11 09:03:19.35824 9a9fc0f0-6f8f-4910-8eed-565559710988 {"md5": "0c574c99f5a4a34bdb3edf13bf738aeb", "pid": "964214407", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4681519-3", "source": "GND"}], "variant_name": ["Hermandad de la Penas de San Vicente", "Hermandad de las Penas de San Vicente. Sevilla", "Hermandad de las Penas", "Hermandad y Cofradía de Nazarenos de Nuestro Padre Jesús de las Penas y María Santísima de los Dolores", "Penas de San Vicente"], "preferred_name": "Hermandad de Nuestro Padre Jesús de las Penas y María Santísima de los Dolores", "country_associated": "sp", "variant_access_point": ["Hermandad de la Penas de San Vicente", "Hermandad de las Penas de San Vicente. Sevilla", "Hermandad de las Penas", "Hermandad y Cofradía de Nazarenos de Nuestro Padre Jesús de las Penas y María Santísima de los Dolores", "Penas de San Vicente"], "authorized_access_point": "Hermandad de Nuestro Padre Jesús de las Penas y María Santísima de los Dolores", "biographical_information": ["Gegr. 1875 in d. Pfarrkirche San Vicente Mártir"]} 1 +2024-09-11 09:03:19.420957 2024-09-11 09:03:19.420961 edaabd15-7c82-4088-94ec-0fa8b72a177e {"md5": "e68b11a0a0119058ab76211395e71dcf", "pid": "964225581", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10036735-5", "source": "GND"}], "preferred_name": "Sportgemeinde Bettringen 1885. Fußballabteilung", "country_associated": "gw", "authorized_access_point": "Sportgemeinde Bettringen 1885. Fußballabteilung", "biographical_information": ["gegr. 1926"]} 1 +2024-09-11 09:03:19.479195 2024-09-11 09:03:19.479199 7673e6da-a010-47f2-87b0-65eabb48f9b1 {"md5": "b547a5d8b14e514660076b6b079c9b48", "pid": "964319020", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3051823-4", "source": "GND"}], "preferred_name": "Aktiengesellschaft zur Erbauung Billiger Wohnungen", "country_associated": "gw", "date_of_establishment": "1897", "authorized_access_point": "Aktiengesellschaft zur Erbauung Billiger Wohnungen. Worms"} 1 +2024-09-11 09:03:19.530491 2024-09-11 09:03:19.530495 6356f4d2-b1e5-41c7-b45d-5c15d09a35a3 {"md5": "f5a516699936139ee10f7f397b1903a4", "pid": "964322153", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1246477-6", "source": "GND"}], "variant_name": ["Šiauliu̜ Valstybinis Kamerinis Choras Polifonija", "Šiauliai State Chamber Choir", "State Chamber Choir"], "preferred_name": "Polifonija", "country_associated": "li", "variant_access_point": ["Šiauliu̜ Valstybinis Kamerinis Choras Polifonija", "Šiauliai State Chamber Choir", "State Chamber Choir. Šiauliai"], "authorized_access_point": "Polifonija. Šiauliai"} 1 +2024-09-11 09:03:19.591616 2024-09-11 09:03:19.59162 c962cf25-0ea3-44aa-b5a6-e5383c7cc2b0 {"md5": "a213601bed83d512863d790d564025ec", "pid": "964379473", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10037697-6", "source": "GND"}], "variant_name": ["Komisja Prehistorii Karpat"], "preferred_name": "Polska Akademia Umieje̜tności. Komisja Prehistorii Karpat", "country_associated": "pl", "variant_access_point": ["Komisja Prehistorii Karpat. Krakau"], "authorized_access_point": "Polska Akademia Umieje̜tności. Krakau. Komisja Prehistorii Karpat"} 1 +2024-09-11 09:03:19.655999 2024-09-11 09:03:19.656002 a0739154-c403-4700-8516-557aa79f03b5 {"md5": "9935ff826d04341a8a612473a5beb58d", "pid": "964421984", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10038153-4", "source": "GND"}], "preferred_name": "Symposion Terminologie und Recht", "country_associated": "gw", "authorized_access_point": "Symposion Terminologie und Recht, 2000, Köln"} 1 +2024-09-11 09:03:19.716986 2024-09-11 09:03:19.71699 c9b0d20a-bd5e-4641-8988-0608ffeb76a8 {"md5": "db6e982d8bca36db46cb0c6cf85619e9", "pid": "964495376", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10038373-7", "source": "GND"}], "variant_name": ["DFV-Städteforum"], "preferred_name": "Städteforum", "variant_access_point": ["DFV-Städteforum, 1997, Hannover"], "authorized_access_point": "Städteforum, 1997, Hannover"} 1 +2024-09-11 09:03:19.776552 2024-09-11 09:03:19.776556 2037a248-60f7-4bd8-9140-e10bb34b157b {"md5": "9acfac1e8d7cfb451e07eb6ef0b98cd4", "pid": "964501090", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5534045-3", "source": "GND"}], "preferred_name": "West-Ost-Schau Deutscher Grafik, 2", "authorized_access_point": "West-Ost-Schau Deutscher Grafik, 2, 1957, Rudolstadt"} 1 +2024-09-11 09:03:19.832107 2024-09-11 09:03:19.832111 30ade445-725d-454e-b287-689142e5a7e4 {"md5": "edddf56de420df682f4353a15b020c74", "pid": "964564491", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10039245-3", "source": "GND"}], "variant_name": ["Tübinger Wahrnehmungskonferenz, 5", "Wahrnehmungskonferenz, 5"], "preferred_name": "TWK, 5", "country_associated": "gw", "variant_access_point": ["Tübinger Wahrnehmungskonferenz, 5, 2002, Tübingen", "Wahrnehmungskonferenz, 5, 2002, Tübingen"], "authorized_access_point": "TWK, 5, 2002, Tübingen"} 1 +2024-09-11 09:03:19.888587 2024-09-11 09:03:19.888592 a4ce9c2a-9a34-47ef-8778-b0f80d036d00 {"md5": "8cf5489859957e27e99e203c7624c7d7", "pid": "964647222", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10039630-6", "source": "GND"}], "variant_name": ["IADC SPE Drilling Conference"], "preferred_name": "Drilling Conference", "country_associated": "xxu", "variant_access_point": ["IADC SPE Drilling Conference, 1990, Houston, Tex."], "authorized_access_point": "Drilling Conference, 1990, Houston, Tex."} 1 +2024-09-11 09:03:19.947114 2024-09-11 09:03:19.947117 5c42eec4-fcd6-4267-93be-bb7dd105ac61 {"md5": "15d8e5751cf067f141babbe2d2e8b0a3", "pid": "964653613", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5534534-7", "source": "GND"}], "variant_name": ["Consejo de la Crónica de la Ciudad de México"], "preferred_name": "Mexiko. Consejo de la Crónica de la Ciudad de México", "country_associated": "mx", "variant_access_point": ["Consejo de la Crónica de la Ciudad de México"], "date_of_establishment": "1987", "authorized_access_point": "Mexiko. Stadt. Consejo de la Crónica de la Ciudad de México"} 1 +2024-09-11 09:03:20.008809 2024-09-11 09:03:20.008813 c3a8cde1-bcbf-4018-bf4e-64cf0fbc0a31 {"md5": "31794d0e68d44c6981dc8b21611dbcfd", "pid": "964715619", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10040298-7", "source": "GND"}], "variant_name": ["Institute for Urban School Improvement"], "preferred_name": "National Institute for Urban School Improvement", "country_associated": "xxu", "variant_access_point": ["Institute for Urban School Improvement. Newton, Mass."], "authorized_access_point": "National Institute for Urban School Improvement. Newton, Mass."} 1 +2024-09-11 09:03:20.065794 2024-09-11 09:03:20.065798 379ce345-7755-4974-8fe9-8b66ec8c179b {"md5": "eb48987062b1a994f3ddd6002df9297f", "pid": "964855380", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5535962-0", "source": "GND"}], "variant_name": ["AAMB", "AAMB", "Association des amis de Marius Borgeaud", "AAMB"], "preferred_name": "Association des Amis de Marius Borgeaud", "country_associated": "fr", "variant_access_point": ["AAMB. Abkuerzung", "AAMB. Association des Amis de Marius Borgeaud", "Association des amis de Marius Borgeaud", "AAMB. Association des amis de Marius Borgeaud"], "date_of_establishment": "1993", "authorized_access_point": "Association des Amis de Marius Borgeaud"} 1 +2024-09-11 09:03:20.150919 2024-09-11 09:03:20.150924 87bb492b-8ba2-4cc4-a01a-836fcd53197a {"md5": "8b38defb119a71cdd70a14731fdee33f", "pid": "964861135", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5536511-5", "source": "GND"}], "variant_name": ["Computational Fluid Dynamics Committee"], "preferred_name": "American Society of Mechanical Engineers. Computational Fluid Dynamics Committee", "country_associated": "xxu", "variant_access_point": ["Computational Fluid Dynamics Committee"], "authorized_access_point": "American Society of Mechanical Engineers. Computational Fluid Dynamics Committee"} 1 +2024-09-11 09:03:20.208907 2024-09-11 09:03:20.208911 950e37de-ac16-483c-9dd5-c3e2b615dbec {"md5": "d1948ac332f6a7e796a21b51a76aa9a2", "pid": "96503545X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10042695-5", "source": "GND"}], "preferred_name": "Ausstellung Die Vielen Gesichter des Robert Crumb", "country_associated": "au", "authorized_access_point": "Ausstellung Die Vielen Gesichter des Robert Crumb, 2002 - 2003, Krems an der Donau"} 1 +2024-09-11 09:03:20.27005 2024-09-11 09:03:20.270053 b3503b60-ebbc-43aa-aabc-5e75d502b4df {"md5": "b95af44fa6c44cc3f8f9394b4e4f94c5", "pid": "965091961", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10043225-6", "source": "GND"}], "variant_name": ["Bureau for Academic Mobility", "BAMO"], "preferred_name": "Büro für Akademische Mobilität", "country_associated": "au", "variant_access_point": ["Bureau for Academic Mobility. Wien", "BAMO. Abkuerzung"], "authorized_access_point": "Büro für Akademische Mobilität. Wien"} 1 +2024-09-11 09:03:20.338043 2024-09-11 09:03:20.338046 4f6a280b-3423-4c51-9b7f-2f19904e81e4 {"md5": "8bfc4e403b17705ce83c1b5ce88ae2dd", "pid": "965120449", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10043197-5", "source": "GND"}], "preferred_name": "Jardín Zoologico", "country_associated": "cl", "authorized_access_point": "Jardín Zoologico. Chillán Viejo"} 1 +2024-09-11 09:03:20.406006 2024-09-11 09:03:20.406013 6905934a-842d-4c7d-9efc-dca55cc62bd8 {"md5": "c7ff558626f0f66b2828690121b87fde", "pid": "965135217", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5537472-4", "source": "GND"}], "variant_name": ["Symposium on Silastic Vaginal Devices"], "preferred_name": "Brook Lodge Symposium on Silastic Vaginal Devices", "country_associated": "xxu", "variant_access_point": ["Symposium on Silastic Vaginal Devices, 1976, Augusta, Mich."], "authorized_access_point": "Brook Lodge Symposium on Silastic Vaginal Devices, 1976, Augusta, Mich."} 1 +2024-09-11 09:03:20.464217 2024-09-11 09:03:20.46422 5cfa4c8d-0715-4b96-9621-0a352bd797e3 {"md5": "fefad60ad1666506fd7ce7b8b7782efb", "pid": "965175251", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10043402-2", "source": "GND"}], "variant_name": ["Biblioteca Nacional. Centro Nacional de Documentación Científica, Técnica y Económica"], "preferred_name": "Centro Nacional de Documentación Científica, Técnica y Económica", "country_associated": "uy", "variant_access_point": ["Biblioteca Nacional. Montevideo. Centro Nacional de Documentación Científica, Técnica y Económica"], "authorized_access_point": "Centro Nacional de Documentación Científica, Técnica y Económica. Montevideo"} 1 +2024-09-11 09:03:20.52822 2024-09-11 09:03:20.528224 d873cdeb-d9c3-45a5-9758-bc6f5f2b53e1 {"md5": "56622351ed26c64187d0255d0630d8e3", "pid": "965321827", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10044190-7", "source": "GND"}], "preferred_name": "Musée des Alpilles", "country_associated": "fr", "date_of_establishment": "1919", "authorized_access_point": "Musée des Alpilles. Saint-Rémy-de-Provence"} 1 +2024-09-11 09:03:20.583484 2024-09-11 09:03:20.583487 317d6534-d0f8-42c0-9102-003141232fb1 {"md5": "6c26e1caced1020b9e2588695f83e769", "pid": "965330842", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5538475-4", "source": "GND"}], "variant_name": ["European Space Research Organization. Division des Affaires Juridiques, contractuelles et Internationales"], "preferred_name": "European Space Research Organization. Legal, Contractual and International Affairs Division", "variant_access_point": ["European Space Research Organization. Division des Affaires Juridiques, contractuelles et Internationales"], "authorized_access_point": "European Space Research Organization. Legal, Contractual and International Affairs Division"} 1 +2024-09-11 09:03:20.646593 2024-09-11 09:03:20.646596 dde1ac46-49bf-4937-afae-0498040eb46d {"md5": "02b44e07433c27ad925dfcd80634ee72", "pid": "965868915", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10048532-7", "source": "GND"}], "variant_name": ["Stadtwerke Lutherstadt Wittenberg"], "preferred_name": "Stadtwerke", "country_associated": "gw", "variant_access_point": ["Stadtwerke Lutherstadt Wittenberg"], "date_of_establishment": "1991", "authorized_access_point": "Stadtwerke. Wittenberg", "biographical_information": ["GmbH"]} 1 +2024-09-11 09:03:20.713915 2024-09-11 09:03:20.713918 d5396c39-f98d-4fe4-ab07-f1db561b16f5 {"md5": "4d41ac11dd9bb01e976dbb8fa91f1d07", "pid": "966048636", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10049287-3", "source": "GND"}], "variant_name": ["Moses-Retrospektive"], "preferred_name": "Stefan-Moses-Retrospektive", "variant_access_point": ["Moses-Retrospektive, 2002 - 2005, München u.a."], "authorized_access_point": "Stefan-Moses-Retrospektive, 2002 - 2005, München u.a."} 1 +2024-09-11 09:03:20.774347 2024-09-11 09:03:20.77435 0d55698e-e564-4fb4-ac79-80c5f231b730 {"md5": "ace5337c7752eaa91b810a60dc7343c0", "pid": "966525892", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10051778-X", "source": "GND"}], "variant_name": ["Subregional Meeting of National Coordinators for Laboratory Containment of Wild Polioviruses"], "preferred_name": "Subregional Meeting of National Coordinators for Laboratory Containment of Wild Polioviruses", "country_associated": "au", "variant_access_point": ["Subregional Meeting of National Coordinators for Laboratory Containment of Wild Polioviruses, 2001, Vienna"], "authorized_access_point": "Subregional Meeting of National Coordinators for Laboratory Containment of Wild Polioviruses, 2001, Wien"} 1 +2024-09-11 09:03:20.837003 2024-09-11 09:03:20.837007 e7db8495-a239-441b-bc06-4bb2b1e1af71 {"md5": "9a53e25c5dfd2ede245eaf069c9bdf69", "pid": "966552997", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10051541-1", "source": "GND"}], "variant_name": ["Staatliche Akademie der Bildenden Künste Stuttgart. Studiengang Industrie-Design"], "preferred_name": "Staatliche Akademie der Bildenden Künste Stuttgart. Studiengang Industrial Design", "country_associated": "gw", "variant_access_point": ["Staatliche Akademie der Bildenden Künste Stuttgart. Studiengang Industrie-Design"], "authorized_access_point": "Staatliche Akademie der Bildenden Künste Stuttgart. Studiengang Industrial Design"} 1 +2024-09-11 09:03:20.908459 2024-09-11 09:03:20.908464 a1b812c3-c30b-47f8-9ce7-f4daff48f7d1 {"md5": "1faafaac1c187703a15bf65ea5c6d5d4", "pid": "966574982", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10052076-5", "source": "GND"}], "variant_name": ["Gregori Bezzola - Ordnung Exhibition"], "preferred_name": "Ausstellung Gregori Bezzola - Ordnung", "country_associated": "sz", "variant_access_point": ["Gregori Bezzola - Ordnung Exhibition, 2001, Chur"], "authorized_access_point": "Ausstellung Gregori Bezzola - Ordnung, 2001, Chur"} 1 +2024-09-11 09:03:20.965407 2024-09-11 09:03:20.965411 c0fd45e2-e8be-4660-a48c-d0cebe395676 {"md5": "81df7c6fda885a4da3b527ed041b4e13", "pid": "967972817", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10058535-8", "source": "GND"}], "variant_name": ["Hochschule für Angewandte Wissenschaften Hamburg. Fachbereich Bibliothek und Information. Studiengang Mediendokumentation"], "preferred_name": "Hochschule für Angewandte Wissenschaften Hamburg. Studiengang Mediendokumentation", "country_associated": "gw", "variant_access_point": ["Hochschule für Angewandte Wissenschaften Hamburg. Fachbereich Bibliothek und Information. Studiengang Mediendokumentation"], "authorized_access_point": "Hochschule für Angewandte Wissenschaften Hamburg. Studiengang Mediendokumentation"} 1 +2024-09-11 09:03:21.023551 2024-09-11 09:03:21.023574 8b8d047d-11f9-458b-bf42-e97f6f15eccf {"md5": "cbbbd2e2f02e2b14007e4cdca42534d2", "pid": "968070191", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10044883-5", "source": "GND"}], "variant_name": ["KDD, 7", "ACM SIGKDD International Conference on Knowledge Discovery and Data Mining, 7"], "preferred_name": "International Conference on Knowledge Discovery and Data Mining, 7", "country_associated": "xxu", "variant_access_point": ["KDD, 7, 2001, San Francisco, Calif.", "ACM SIGKDD International Conference on Knowledge Discovery and Data Mining, 7, 2001, San Francisco, Calif."], "authorized_access_point": "International Conference on Knowledge Discovery and Data Mining, 7, 2001, San Francisco, Calif."} 1 +2024-09-11 09:03:21.080935 2024-09-11 09:03:21.080938 e12a165c-ab6c-4364-97c0-c622548c9b00 {"md5": "edc1f821427da2a2572787f4f5bbb797", "pid": "968095615", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10045348-X", "source": "GND"}], "preferred_name": "Verein zur Förderung Germanischer Einwanderung", "country_associated": "ag", "authorized_access_point": "Verein zur Förderung Germanischer Einwanderung", "biographical_information": ["Sitz: Buenos Airos"]} 1 +2024-09-11 09:03:21.143373 2024-09-11 09:03:21.143378 fc45d59c-6872-4393-ad84-ab1c2ac071c7 {"md5": "a3aae9f091d44b39aa290126a7e8b965", "pid": "968111521", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10048155-3", "source": "GND"}], "variant_name": ["Arbeiter- und Soldatenrat, Borkum"], "preferred_name": "Borkum. Arbeiter- und Soldatenrat", "country_associated": "gw", "variant_access_point": ["Arbeiter- und Soldatenrat, Borkum"], "authorized_access_point": "Borkum. Arbeiter- und Soldatenrat"} 1 +2024-09-11 09:03:21.202062 2024-09-11 09:03:21.202066 69c9313b-3aa5-49b8-84ce-2dfe6a770706 {"md5": "a9b945bfac8555e44b789622bc559008", "pid": "968131786", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1246711-X", "source": "GND"}], "variant_name": ["PGPB", "Primorskaja Gosudarstvennaja Publičnaja Biblioteka Im. A. M. Gor'kogo"], "preferred_name": "Primorskaja Gosudarstvennaja Publičnaja Biblioteka Im. A. M. Gor'kogo", "country_associated": "ru", "date_of_termination": "2011", "variant_access_point": ["PGPB", "Primorskaja Gosudarstvennaja Publičnaja Biblioteka Im. A. M. Gor'kogo. Ehemalige Vorzugsbenennung SWD"], "date_of_establishment": "1991", "authorized_access_point": "Primorskaja Gosudarstvennaja Publičnaja Biblioteka Im. A. M. Gor'kogo. Wladiwostok"} 1 +2024-09-11 09:03:21.261225 2024-09-11 09:03:21.261229 dd6aa6b3-fbed-4197-87c2-1b092d0e396a {"md5": "dc7e20e74b246529c384c3761586949e", "pid": "968149766", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10053208-1", "source": "GND"}], "variant_name": ["Fachhochschule Bonn-Rhein-Sieg. Fachbereich, 4"], "preferred_name": "Fachhochschule Bonn-Rhein-Sieg. Fachbereich Wirtschaft", "country_associated": "gw", "variant_access_point": ["Fachhochschule Bonn-Rhein-Sieg. Fachbereich, 4"], "authorized_access_point": "Fachhochschule Bonn-Rhein-Sieg. Fachbereich Wirtschaft. Rheinbach"} 1 +2024-09-11 09:03:21.379384 2024-09-11 09:03:21.379388 068e8d7c-432e-4a78-969d-c60b610272fe {"md5": "3b2b9c2d033b1cc8bddee8e97fbe7097", "pid": "96815252X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10053684-0", "source": "GND"}], "variant_name": ["Tagesförderstätte Mittelhof", "Bundesvereinigung Lebenshilfe für Menschen mit Geistiger Behinderung. Landesverband Rheinland-Pfalz. Tagesförderstätte Mittelhof"], "preferred_name": "Bundesvereinigung Lebenshilfe für Menschen mit Geistiger Behinderung. Tagesförderstätte Mittelhof", "country_associated": "gw", "variant_access_point": ["Tagesförderstätte Mittelhof", "Bundesvereinigung Lebenshilfe für Menschen mit Geistiger Behinderung. Landesverband Rheinland-Pfalz. Tagesförderstätte Mittelhof"], "authorized_access_point": "Bundesvereinigung Lebenshilfe für Menschen mit Geistiger Behinderung. Tagesförderstätte Mittelhof"} 1 +2024-09-11 09:03:21.444937 2024-09-11 09:03:21.444942 5df08e3a-0f07-4169-9381-9fcad7bafd1e {"md5": "57d6829e8cf567a55cc7e456e08be74d", "pid": "968164811", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5539390-1", "source": "GND"}], "variant_name": ["QCDWork"], "preferred_name": "International Workshop on Quantum Chromodynamics", "variant_access_point": ["QCDWork, 2001, Martina Franca"], "authorized_access_point": "International Workshop on Quantum Chromodynamics, 2001, Martina Franca"} 1 +2024-09-11 09:03:21.509292 2024-09-11 09:03:21.509296 602e6082-fc94-4c4c-8808-1dd4d98806fd {"md5": "4f6a3f1bb7b11be97aa1ff1773c0526b", "pid": "968168221", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5539752-9", "source": "GND"}], "variant_name": ["The Carter Family"], "preferred_name": "Carter Family", "country_associated": "xxu", "date_of_termination": "1943", "variant_access_point": ["The Carter Family. Unveraenderte Form"], "date_of_establishment": "1926", "authorized_access_point": "Carter Family", "biographical_information": ["Country-Gruppe um Alvin Pleasant Delaney Carter"]} 1 +2024-09-11 09:03:21.571285 2024-09-11 09:03:21.57129 b8bc326e-650a-448d-b89c-d57e5cc53e21 {"md5": "bca5d5983ac397db69a08d1577aedb4a", "pid": "968179002", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1706700-5", "source": "GND"}], "preferred_name": "Magyar Kereskedelmi Kamara. Arbeitsgruppe Bundesrepublik Deutschland", "authorized_access_point": "Magyar Kereskedelmi Kamara. Arbeitsgruppe Bundesrepublik Deutschland", "biographical_information": ["Ungar. Namensform nicht zu ermitteln"]} 1 +2024-09-11 09:03:21.644377 2024-09-11 09:03:21.644381 d728ac88-359a-4870-81f1-0357fb0a8689 {"md5": "b81edf196e60bf8dc3735602384edf0c", "pid": "96818734X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3055416-0", "source": "GND"}], "preferred_name": "Ausstellung Momentbild", "country_associated": "gw", "authorized_access_point": "Ausstellung Momentbild, 1982, Hannover"} 1 +2024-09-11 09:03:21.710491 2024-09-11 09:03:21.710496 aee8d2b9-1229-4ceb-a8a8-1e72b409689d {"md5": "65c1444e95bcf4cbb168ba241fee63a7", "pid": "968195938", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10054576-2", "source": "GND"}], "variant_name": ["Landesausstellung Das Zeitalter Kaiser Franz Josephs, 1-2"], "preferred_name": "Niederösterreichische Landesausstellung Das Zeitalter Kaiser Franz Josephs, 1-2", "country_associated": "au", "variant_access_point": ["Landesausstellung Das Zeitalter Kaiser Franz Josephs, 1-2, 1984-1987, Grafenegg"], "authorized_access_point": "Niederösterreichische Landesausstellung Das Zeitalter Kaiser Franz Josephs, 1-2, 1984-1987, Grafenegg"} 1 +2024-09-11 09:03:21.777789 2024-09-11 09:03:21.777794 2c7a383b-a5f6-4946-ab2e-5fe0e9a27d56 {"md5": "24bf644654a40bfe81edd58c5e271113", "pid": "968196349", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10054618-3", "source": "GND"}], "variant_name": ["Turnverein Friesen"], "preferred_name": "Turnverein Friesen", "country_associated": "au", "variant_access_point": ["Turnverein Friesen. Wien"], "authorized_access_point": "Turnverein Friesen. Hernals"} 1 +2024-09-11 09:03:21.853619 2024-09-11 09:03:21.853624 b8b0053d-5196-4a9e-a8d8-5d07864e21d0 {"md5": "1227a350b48a734987937cd177c209e0", "pid": "968265642", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10056952-3", "source": "GND"}], "variant_name": ["Neue Bandeisenvereinigung"], "preferred_name": "Bandeisenvereinigung", "variant_access_point": ["Neue Bandeisenvereinigung"], "date_of_establishment": "07.08.1925", "authorized_access_point": "Bandeisenvereinigung", "biographical_information": ["Sitz: Düsseldorf; 1938 Beitritt d. österr. Bandeisenhersteller"]} 1 +2024-09-11 09:03:21.912064 2024-09-11 09:03:21.912069 f2d9863f-5749-49c5-91d5-7a24d1864e32 {"md5": "8d2acde7604e92f711fc4faa396ab061", "pid": "968285988", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5547176-6", "source": "GND"}], "preferred_name": "Mostra Ugo Malvano (1878 - 1952) - un Pittore fra Torino e Parigi", "country_associated": "it", "authorized_access_point": "Mostra Ugo Malvano (1878 - 1952) - un Pittore fra Torino e Parigi, 2002, Cherasco"} 1 +2024-09-11 09:03:21.98047 2024-09-11 09:03:21.980473 a98134c2-002a-485c-9d96-227c13730a55 {"md5": "58b014617e0d1f0bdfe0a0aacfbe91c0", "pid": "968290981", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5547695-8", "source": "GND"}], "preferred_name": "Ortenauer Turngau", "country_associated": "gw", "authorized_access_point": "Ortenauer Turngau"} 1 +2024-09-11 09:03:22.043388 2024-09-11 09:03:22.043391 6c3600f1-36c9-433d-a82b-4bce01eed965 {"md5": "21a5ed3912ab9ec8939c6ea8c906c8d1", "pid": "968305768", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10058124-9", "source": "GND"}], "preferred_name": "Landwirtschaftliche Schule Lokstedt", "country_associated": "gw", "authorized_access_point": "Landwirtschaftliche Schule Lokstedt"} 1 +2024-09-11 09:03:22.117659 2024-09-11 09:03:22.117662 ca590fc1-2553-4be1-a65c-79c4cbd5e6d4 {"md5": "5be6398307100e6a5161452f4231852c", "pid": "968777449", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10063432-1", "source": "GND"}], "variant_name": ["Berufsberatung", "Bundesanstalt für Arbeit. Arbeitsamt Ludwigsburg. Abteilung Berufsberatung"], "preferred_name": "Bundesanstalt für Arbeit. Arbeitsamt Ludwigsburg. Berufsberatung", "country_associated": "gw", "variant_access_point": ["Berufsberatung. Ludwigsburg", "Bundesanstalt für Arbeit. Arbeitsamt Ludwigsburg. Abteilung Berufsberatung"], "authorized_access_point": "Bundesanstalt für Arbeit. Arbeitsamt Ludwigsburg. Berufsberatung", "biographical_information": ["Abteilung nur kurzfristige Bezeichnung"]} 1 +2024-09-11 09:03:22.193708 2024-09-11 09:03:22.193713 d1dfede5-1cb9-49fc-a954-79395deb5739 {"md5": "bf673a2199c89c688de77a9075899f48", "pid": "968883982", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10064248-2", "source": "GND"}], "preferred_name": "Geschichtswerkstatt Ulmer Weststadt", "country_associated": "gw", "authorized_access_point": "Geschichtswerkstatt Ulmer Weststadt"} 1 +2024-09-11 09:03:22.266412 2024-09-11 09:03:22.266418 ee8d5810-17de-48e9-be55-6b09b8f2a452 {"md5": "762d8fb734a973c669092482151cf5c4", "pid": "968989454", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10060285-X", "source": "GND"}], "variant_name": ["Kurhaus Bad Boll GmbH. Rehaklinik", "Rehaklinik", "Kurhaus Bad Boll"], "preferred_name": "Rehaklinik Bad Boll", "country_associated": "gw", "variant_access_point": ["Kurhaus Bad Boll GmbH. Rehaklinik", "Rehaklinik. Kurhaus Bad Boll GmbH", "Kurhaus Bad Boll"], "date_of_establishment": "1999", "authorized_access_point": "Rehaklinik Bad Boll"} 1 +2024-09-11 09:03:22.399644 2024-09-11 09:03:22.399649 4c79863e-de24-4b6f-9468-1c80b74f25a6 {"md5": "4f21a6f5eac51ca387b0dca21af89f9d", "pid": "968989640", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10060321-X", "source": "GND"}], "variant_name": ["Elektroprivreda Srbije", "EPS", "Javnog Preduzeća Elektroprivreda Srbije", "JP EPS"], "preferred_name": "JP Elektroprivreda Srbije", "variant_access_point": ["Elektroprivreda Srbije. Belgrad", "EPS. Abkuerzung", "Javnog Preduzeća Elektroprivreda Srbije. Belgrad", "JP EPS. Abkuerzung"], "authorized_access_point": "JP Elektroprivreda Srbije. Belgrad"} 1 +2024-09-11 09:03:22.466927 2024-09-11 09:03:22.466933 e0f4eb7b-15ec-4b64-b0dc-19ddae11198e {"md5": "561d89cdcee8c15e98a42816d73ad1a8", "pid": "969011911", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5548899-7", "source": "GND"}], "variant_name": ["Steimel mit seinem Organum-Tanzorchester", "Organum-Tanzorchester Adolf Steimel", "Adolf Steimel m. S. Organum-Tanzorchester", "Steimel m. S. Organum-Tanzorchester", "Adolf Steimel mit Seinem Tanzorchester", "Steimel mit Seinem Tanzorchester", "Adolf-Steimel-Tanzorchester", "Steimel-Tanzorchester", "Adolf Steimel und Sein Organum-Tanzorchester", "Steimel und Sein Organum-Tanzorchester", "Orchester Adolf Steimel", "Steimel, Orchester Adolf"], "preferred_name": "Adolf Steimel mit Seinem Organum-Tanzorchester", "variant_access_point": ["Steimel mit seinem Organum-Tanzorchester", "Organum-Tanzorchester Adolf Steimel", "Adolf Steimel m. S. Organum-Tanzorchester", "Steimel m. S. Organum-Tanzorchester", "Adolf Steimel mit Seinem Tanzorchester", "Steimel mit Seinem Tanzorchester", "Adolf-Steimel-Tanzorchester", "Steimel-Tanzorchester", "Adolf Steimel und Sein Organum-Tanzorchester", "Steimel und Sein Organum-Tanzorchester", "Orchester Adolf Steimel", "Steimel, Orchester Adolf"], "authorized_access_point": "Adolf Steimel mit Seinem Organum-Tanzorchester", "biographical_information": ["Ort n. erm."]} 1 +2024-09-11 09:03:22.526264 2024-09-11 09:03:22.526269 6b0d4c57-bd3a-46c0-9a97-e12f8dcf5650 {"md5": "34018bc0d40e393761a1c47d63bdf3a9", "pid": "969012055", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5548914-X", "source": "GND"}], "preferred_name": "Exhibition The Nature of Still Life. From Manet to the Present Day", "country_associated": "it", "authorized_access_point": "Exhibition The Nature of Still Life. From Manet to the Present Day, 2001 - 2002, Bologna"} 1 +2024-09-11 09:03:22.584398 2024-09-11 09:03:22.584402 1945ab33-29dd-4433-83bb-2eb2f5146ae5 {"md5": "6e6ede8fa4d3520f5c7539899beb549a", "pid": "969012462", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5548956-4", "source": "GND"}], "preferred_name": "Exhibition Battle of the Nudes: Pollaiuolo's Renaissance Masterpiece", "country_associated": "xxu", "authorized_access_point": "Exhibition Battle of the Nudes: Pollaiuolo's Renaissance Masterpiece, 2002, Cleveland, Ohio"} 1 +2024-09-11 09:03:22.641037 2024-09-11 09:03:22.64104 291e3d3c-330e-48eb-aaac-2a5877fdddf4 {"md5": "4c97c9d272d9bf71d80e7dbb4a74cac8", "pid": "969026927", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10062900-3", "source": "GND"}], "variant_name": ["Blasorchester Adenau"], "preferred_name": "Blasorchester Stadt Adenau", "date_of_termination": "2010", "variant_access_point": ["Blasorchester Adenau"], "date_of_establishment": "1903", "authorized_access_point": "Blasorchester Stadt Adenau"} 1 +2024-09-11 09:03:22.700799 2024-09-11 09:03:22.700805 8cb1fc89-0212-4ed2-91f4-810906ab0b02 {"md5": "b22794c59dcaa0d527650b18a368ad95", "pid": "969033788", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10064035-7", "source": "GND"}], "preferred_name": "Colloque International Victor Hugo, Ivan Tourguéniev et les Droits de l'Homme", "country_associated": "fr", "authorized_access_point": "Colloque International Victor Hugo, Ivan Tourguéniev et les Droits de l'Homme, 2002, Paris; Bougival"} 1 +2024-09-11 09:03:22.760993 2024-09-11 09:03:22.760997 c1d7abab-7491-48bf-838b-0159717194f1 {"md5": "da0cd56f3c744131d6a56db8dcd06888", "pid": "969045859", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5550073-0", "source": "GND"}], "variant_name": ["Li Geng-Komitee"], "preferred_name": "Li-Geng-Komitee", "country_associated": "gw", "variant_access_point": ["Li Geng-Komitee"], "authorized_access_point": "Li-Geng-Komitee", "biographical_information": ["Förderverein für den Künstler Li Geng"]} 1 +2024-09-11 09:03:22.83852 2024-09-11 09:03:22.838524 92bf506f-755c-4c59-a88b-90382068a766 {"md5": "d4847ea6cc8b3f2a2244f8d07fe320de", "pid": "969048009", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5550300-7", "source": "GND"}], "variant_name": ["International Association of Legal Science. Finnish Branch"], "preferred_name": "International Association of Legal Science. Finnish National Committee", "country_associated": "fi", "variant_access_point": ["International Association of Legal Science. Finnish Branch"], "authorized_access_point": "International Association of Legal Science. Finnish National Committee"} 1 +2024-09-11 09:03:22.904887 2024-09-11 09:03:22.904892 0df64d05-a765-4e28-9241-4afee465b836 {"md5": "ea40407e1c436667f7004699ee2eb381", "pid": "969051492", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5550663-X", "source": "GND"}], "variant_name": ["Bezirksmusikschule", "Konservatorium Schwerin", "Musikschule Johann Wilhelm Hertel", "Bezirksmusikschule Schwerin", "Konservatorium Schwerin, Musikschule Johann Wilhelm Hertel"], "preferred_name": "Konservatorium", "variant_access_point": ["Bezirksmusikschule. Schwerin", "Konservatorium Schwerin", "Musikschule Johann Wilhelm Hertel", "Bezirksmusikschule Schwerin", "Konservatorium Schwerin, Musikschule Johann Wilhelm Hertel. Ehemalige Vorzugsbenennung SWD"], "authorized_access_point": "Konservatorium. Schwerin"} 1 +2024-09-11 09:03:22.973267 2024-09-11 09:03:22.973271 99254ac6-f1bc-41a7-a687-8b8fd1974422 {"md5": "5425131850e5d5b2b1d79c91ca1a7e62", "pid": "969056370", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5551173-9", "source": "GND"}], "variant_name": ["ISIR, 8"], "preferred_name": "International Symposium on Interventional Radiology & New Vascular Imaging, 8", "country_associated": "ja", "variant_access_point": ["ISIR, 8, 2002, Tokio"], "authorized_access_point": "International Symposium on Interventional Radiology & New Vascular Imaging, 8, 2002, Tokio"} 1 +2024-09-11 09:03:23.099216 2024-09-11 09:03:23.09922 0aa51536-63ce-4f34-9f53-644dd46d6001 {"md5": "c4495d56f2ff93ccfcb7d9968da0315a", "pid": "969522304", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10064566-5", "source": "GND"}], "variant_name": ["Jusos in der SPD Wiesbaden", "Jusos Wiesbaden"], "preferred_name": "Sozialdemokratische Partei Deutschlands. Arbeitsgemeinschaft der Jungsozialisten und Jungsozialistinnen. Unterbezirk Wiesbaden", "country_associated": "gw", "variant_access_point": ["Jusos in der SPD Wiesbaden", "Jusos Wiesbaden"], "authorized_access_point": "Sozialdemokratische Partei Deutschlands. Arbeitsgemeinschaft der Jungsozialisten und Jungsozialistinnen. Unterbezirk Wiesbaden"} 1 +2024-09-11 09:03:23.163198 2024-09-11 09:03:23.163202 1e88d5bf-8c8c-4c8f-a04e-ea3ec0520380 {"md5": "5761b97ef4451668e7d1537693ad33f4", "pid": "96954135X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10067483-5", "source": "GND"}], "variant_name": ["Faculty of Agriculture", "Manitoba Agricultural College", "MAC", "M.A.C."], "preferred_name": "University of Manitoba. Faculty of Agriculture", "country_associated": "xxc", "variant_access_point": ["Faculty of Agriculture. University of Manitoba", "Manitoba Agricultural College", "MAC. Abkuerzung", "M.A.C.. Abkuerzung"], "authorized_access_point": "University of Manitoba. Faculty of Agriculture"} 1 +2024-09-11 09:03:23.221584 2024-09-11 09:03:23.221589 9b9ba25e-abc4-4d59-8ae6-125305e220ed {"md5": "f8698266a09ab871280dac1b2945d8b8", "pid": "96954457X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3056947-3", "source": "GND"}], "preferred_name": "Hessiale", "country_associated": "gw", "authorized_access_point": "Hessiale, 2002, Gießen"} 1 +2024-09-11 09:03:23.284739 2024-09-11 09:03:23.284744 23debd64-c95e-4c84-8156-a526ce7df844 {"md5": "534f6fd14079bb02b9e0910ec4199469", "pid": "969559933", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10068298-4", "source": "GND"}], "variant_name": ["IEEE International Conference on Intelligent Transportation Systems, 5", "ITSC, 5"], "preferred_name": "International Conference on Intelligent Transportation Systems, 5", "country_associated": "si", "variant_access_point": ["IEEE International Conference on Intelligent Transportation Systems, 5, 2002, Singapur", "ITSC, 5, 2002, Singapur"], "authorized_access_point": "International Conference on Intelligent Transportation Systems, 5, 2002, Singapur"} 1 +2024-09-11 09:03:23.349573 2024-09-11 09:03:23.349576 806aab53-8c63-472a-ab0d-0e000331921b {"md5": "94a7d51b3578181b6483a5464f671543", "pid": "96999463X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10068786-6", "source": "GND"}], "variant_name": ["Handwerksbau-Aktiengesellschaft", "Westfälische Handwerksbau AG", "Handwerksbau AG"], "preferred_name": "Westfälische Handwerksbau-Aktiengesellschaft", "variant_access_point": ["Handwerksbau-Aktiengesellschaft. Dortmund", "Westfälische Handwerksbau AG. Dortmund", "Handwerksbau AG. Dortmund"], "date_of_establishment": "1936", "authorized_access_point": "Westfälische Handwerksbau-Aktiengesellschaft. Dortmund"} 1 +2024-09-11 09:03:23.40683 2024-09-11 09:03:23.406833 7a7f8d76-146b-4525-b80c-6619cc805156 {"md5": "834ac1f2736a1f48adddc53f2a201b64", "pid": "97001418X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10069983-2", "source": "GND"}], "variant_name": ["WRC", "Weltfunkkonferenz"], "preferred_name": "World Radiocommunication Conference", "country_associated": "sz", "variant_access_point": ["WRC, 2003, Genf", "Weltfunkkonferenz, 2003, Genf"], "authorized_access_point": "World Radiocommunication Conference, 2003, Genf"} 1 +2024-09-11 09:03:23.465408 2024-09-11 09:03:23.465412 d7f73f6e-0bc5-491b-8525-a8c58d912181 {"md5": "d490b479fab02e630623726be567bedc", "pid": "970052987", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10071807-3", "source": "GND"}], "preferred_name": "Landesinnungsverband des Maler- und Lackiererhandwerks Thüringen", "country_associated": "gw", "authorized_access_point": "Landesinnungsverband des Maler- und Lackiererhandwerks Thüringen"} 1 +2024-09-11 09:03:23.534913 2024-09-11 09:03:23.534918 f92889bc-d521-4aab-b4ec-7fb6091b108f {"md5": "99238880ddf53e8e536d05371650d9bd", "pid": "970275323", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10070394-X", "source": "GND"}], "variant_name": ["Komitee für die Restaurierung der Rosenkranzkapelle"], "preferred_name": "Comitato per il Restauro della Cappella del Rosario", "country_associated": "it", "variant_access_point": ["Komitee für die Restaurierung der Rosenkranzkapelle. Venedig"], "authorized_access_point": "Comitato per il Restauro della Cappella del Rosario. Venedig"} 1 +2024-09-11 09:03:23.590657 2024-09-11 09:03:23.590664 fc0870b7-4489-4dd0-8d53-c5d7c3d188a0 {"md5": "5ef4087c97bb32023cf8e4315a4b5af9", "pid": "970287798", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10071403-1", "source": "GND"}], "variant_name": ["Universitatea Babeş-Bolyai. Faculty of Mathematics and Computer Science. Department of Applied Mathematics"], "preferred_name": "Universitatea Babeş-Bolyai. Department of Applied Mathematics", "country_associated": "rm", "variant_access_point": ["Universitatea Babeş-Bolyai. Faculty of Mathematics and Computer Science. Department of Applied Mathematics"], "authorized_access_point": "Universitatea Babeş-Bolyai. Department of Applied Mathematics"} 1 +2024-09-11 09:03:23.649814 2024-09-11 09:03:23.649818 f8428ff5-c4e6-4fae-8be1-aa707ea87b98 {"md5": "7f169afede71b674c024b0d2c90d000e", "pid": "970302339", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5553833-2", "source": "GND"}], "preferred_name": "Weihnachtsausstellung", "country_associated": "sz", "authorized_access_point": "Weihnachtsausstellung, 1978, Thun"} 1 +2024-09-11 09:03:23.709497 2024-09-11 09:03:23.709512 1996facb-1b33-47d9-89fc-8ce8160fb884 {"md5": "ff506dae25f20950ce1882c1b739e10a", "pid": "97030482X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5554093-4", "source": "GND"}], "variant_name": ["Hotel Restaurant Adler GmbH & Co. KG"], "preferred_name": "Hotel Restaurant Adler", "country_associated": "gw", "variant_access_point": ["Hotel Restaurant Adler GmbH & Co. KG. Unveraenderte Form"], "authorized_access_point": "Hotel Restaurant Adler. Pfullendorf"} 1 +2024-09-11 09:03:23.769029 2024-09-11 09:03:23.769033 3aac280d-3012-4a86-bfc8-ca2061531a40 {"md5": "86fead09d0ac218df68831c8cde2b641", "pid": "970399340", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10074015-7", "source": "GND"}], "variant_name": ["Vereinigter Sozialistischer Jugendverband Spaniens", "VSJV"], "preferred_name": "Federación Nacional de Juventudes Socialistas de Espana", "country_associated": "sp", "variant_access_point": ["Vereinigter Sozialistischer Jugendverband Spaniens", "VSJV. Abkuerzung"], "authorized_access_point": "Federación Nacional de Juventudes Socialistas de Espana"} 1 +2024-09-11 09:03:23.832053 2024-09-11 09:03:23.832057 f64d4fa9-dc81-4cd1-b09a-e2c7a9eb49f3 {"md5": "266d645fe36833d0ffb8fd212911bfca", "pid": "970821794", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10076293-1", "source": "GND"}], "variant_name": ["PY!"], "preferred_name": "Protect Yourself!", "country_associated": "gw", "variant_access_point": ["PY!. Abkuerzung"], "authorized_access_point": "Protect Yourself!. Luhe-Wildenau"} 1 +2024-09-11 09:03:23.899636 2024-09-11 09:03:23.89964 6ced2c38-12f1-49fa-a2c1-7b1fea4e91aa {"md5": "8068090246cf0d6f3fd07bb468197b5c", "pid": "971124272", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1304934-3", "source": "GND"}], "preferred_name": "International Conference on Emergency Medicine, 8", "country_associated": "xxu", "authorized_access_point": "International Conference on Emergency Medicine, 8, 2000, Boston, Mass."} 1 +2024-09-11 09:03:23.963176 2024-09-11 09:03:23.96318 8116a8a4-206e-488e-9841-fbf065ac23f3 {"md5": "98ecd9cdb21bd6d41a2b6e74f3ea5008", "pid": "971124728", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1707370-4", "source": "GND"}], "preferred_name": "Festspiele", "country_associated": "gw", "authorized_access_point": "Festspiele, 1988, Röttingen, Landkreis Würzburg"} 1 +2024-09-11 09:03:24.035761 2024-09-11 09:03:24.035766 f189417d-f486-4132-9ff6-9d2b9c251036 {"md5": "92f5ecd79913e20ea8315a13a23c7102", "pid": "971140162", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10077364-3", "source": "GND"}], "variant_name": ["ERF"], "preferred_name": "European Union Road Federation", "variant_access_point": ["ERF. Abkuerzung"], "authorized_access_point": "European Union Road Federation"} 1 +2024-09-11 09:03:24.093715 2024-09-11 09:03:24.093719 cd179374-77f6-4852-bd4e-aeee9299dcdb {"md5": "89875a987d541c58d77b0d10db77351e", "pid": "971140642", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10077458-1", "source": "GND"}], "preferred_name": "Associazione Culturale La Valigia delle Indie", "country_associated": "it", "authorized_access_point": "Associazione Culturale La Valigia delle Indie"} 1 +2024-09-11 09:03:24.151964 2024-09-11 09:03:24.151969 a4900996-aa3e-4ee1-8a6c-6b72fcf6c29c {"md5": "8a75ecdbc0e97ce0db89cc7a43a0b8c5", "pid": "971146853", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5556728-9", "source": "GND"}], "preferred_name": "Exhibition Anna Gaskell: Half Life", "country_associated": "xxu", "authorized_access_point": "Exhibition Anna Gaskell: Half Life, 2002 - 2003, Houston, Tex."} 1 +2024-09-11 09:03:24.209445 2024-09-11 09:03:24.209449 8c693e09-93f6-4e60-b9b0-28d1b3bf8e10 {"md5": "def100790e46ffd95bd1114cfe6a9187", "pid": "971628246", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10081106-1", "source": "GND"}], "preferred_name": "Kulturlandschaftstag, 3", "country_associated": "gw", "authorized_access_point": "Kulturlandschaftstag, 3, 2004, Landshut"} 1 +2024-09-11 09:03:24.267472 2024-09-11 09:03:24.267478 5daa3b23-a863-4337-8b93-89f734093d09 {"md5": "23b563bbd92e7124c546a66dafeb7fcd", "pid": "971687315", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4785432-7", "source": "GND"}], "variant_name": ["John Ciardullo", "Ciardullo, John"], "preferred_name": "John Ciardullo Associates", "country_associated": "xxu", "variant_access_point": ["John Ciardullo. Firma", "Ciardullo, John. Firma"], "authorized_access_point": "John Ciardullo Associates"} 1 +2024-09-11 09:03:24.326506 2024-09-11 09:03:24.326511 daf2f1f5-6657-46e4-873e-d9eee33d6d97 {"md5": "63f041fb1326beb42ad8e57334fa2c19", "pid": "971792496", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10082667-2", "source": "GND"}], "variant_name": ["International Conference on Software Reuse, 8"], "preferred_name": "ICSR, 8", "country_associated": "sp", "variant_access_point": ["International Conference on Software Reuse, 8, 2004, Madrid"], "authorized_access_point": "ICSR, 8, 2004, Madrid"} 1 +2024-09-11 09:03:24.394436 2024-09-11 09:03:24.39444 684f73f6-b39f-42a4-99b3-88e7058b7cc9 {"md5": "bb85db8fd312db1544f067e90a51b39b", "pid": "971798311", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10082759-7", "source": "GND"}], "variant_name": ["Forstgenossenschaft"], "preferred_name": "Wennigsen-Argestorfer Forstgenossenschaft", "country_associated": "gw", "variant_access_point": ["Forstgenossenschaft. Argestorf"], "authorized_access_point": "Wennigsen-Argestorfer Forstgenossenschaft", "biographical_information": ["1754 gegründet"]} 1 +2024-09-11 09:03:24.454465 2024-09-11 09:03:24.45447 5aed2ca1-aba2-41fd-95ad-7de84559011e {"md5": "4e1836fa8ef48d316690aec493a5e34e", "pid": "97198364X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10084656-7", "source": "GND"}], "variant_name": ["Symposium für Praktische Onkologie, 28"], "preferred_name": "Oberstaufener Symposium für Praktische Onkologie, 28", "country_associated": "gw", "variant_access_point": ["Symposium für Praktische Onkologie, 28, 2003, Oberstaufen"], "authorized_access_point": "Oberstaufener Symposium für Praktische Onkologie, 28, 2003, Oberstaufen"} 1 +2024-09-11 09:03:24.515064 2024-09-11 09:03:24.515068 ada9bf64-32cf-406f-a7bc-a8a96fe5f40a {"md5": "84c5fd266b0433f39dd0e063a8f73f03", "pid": "972482830", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10089247-4", "source": "GND"}], "variant_name": ["Obir-Tropfsteinhöhlen-Errichtungs- und Betriebsges.m.b.H."], "preferred_name": "Obir-Tropfsteinhöhlen-Errichtungs- und Betriebsgesellschaft", "country_associated": "au", "variant_access_point": ["Obir-Tropfsteinhöhlen-Errichtungs- und Betriebsges.m.b.H.. Unveraenderte Form"], "authorized_access_point": "Obir-Tropfsteinhöhlen-Errichtungs- und Betriebsgesellschaft. Eisenkappel-Vellach- Bad Eisenkappel"} 1 +2024-09-11 09:03:24.581558 2024-09-11 09:03:24.581562 cd9d2edf-a62b-4f95-b375-4daa6e625a77 {"md5": "6ccd19b31a63747b1ac7c8d177c006df", "pid": "972926496", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10088548-2", "source": "GND"}], "variant_name": ["Institut für Regionalentwicklung und Strukturplanung. Abteilung Siedlungsstrukturelle Entwicklung. Forschungsgruppe Revitalisierung Historischer Stadtkerne in den Neuen Ländern", "Forschungsgruppe Revitalisierung Historischer Stadtkerne in den Neuen Ländern"], "preferred_name": "Institut für Regionalentwicklung und Strukturplanung. Forschungsgruppe Revitalisierung Historischer Stadtkerne in den Neuen Ländern", "country_associated": "gw", "variant_access_point": ["Institut für Regionalentwicklung und Strukturplanung. Abteilung Siedlungsstrukturelle Entwicklung. Forschungsgruppe Revitalisierung Historischer Stadtkerne in den Neuen Ländern", "Forschungsgruppe Revitalisierung Historischer Stadtkerne in den Neuen Ländern"], "authorized_access_point": "Institut für Regionalentwicklung und Strukturplanung. Forschungsgruppe Revitalisierung Historischer Stadtkerne in den Neuen Ländern"} 1 +2024-09-11 09:03:24.64935 2024-09-11 09:03:24.649355 f77742cf-1c59-4175-82bc-0ea9119e87b6 {"md5": "392cf0439ac8e1e922b656cb925fec5e", "pid": "972927743", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3058816-9", "source": "GND"}], "preferred_name": "Ausstellung Jiří Kolář und Seine Poetische Bildwelt", "authorized_access_point": "Ausstellung Jiří Kolář und Seine Poetische Bildwelt, 1997, Český Krumlov"} 1 +2024-09-11 09:03:24.709526 2024-09-11 09:03:24.709531 12a7aa17-3041-4865-82bc-b9c8bcd860be {"md5": "d979408022ddf12b6b680d809414607c", "pid": "972947191", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10082432-8", "source": "GND"}], "preferred_name": "Biennale dell'Arte Orafa, 2", "country_associated": "it", "authorized_access_point": "Biennale dell'Arte Orafa, 2, 1981, Rom"} 1 +2024-09-11 09:03:24.770288 2024-09-11 09:03:24.770291 000d9388-8910-4c82-8f9a-b8bcbb73ccce {"md5": "2a870bafc3103eae63f9c76f0bc541a0", "pid": "972955372", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10080217-5", "source": "GND"}], "variant_name": ["Amt für Stadtentwicklung, Wirtschaftsförderung und Statistik"], "preferred_name": "Dessau. Amt für Stadtentwicklung, Wirtschaftsförderung und Statistik", "country_associated": "gw", "variant_access_point": ["Amt für Stadtentwicklung, Wirtschaftsförderung und Statistik. Dessau"], "authorized_access_point": "Dessau. Amt für Stadtentwicklung, Wirtschaftsförderung und Statistik"} 1 +2024-09-11 09:03:24.843234 2024-09-11 09:03:24.843237 8a961cd0-f530-4a9a-92fd-530644a16397 {"md5": "c6c001153a2e8fc351bddf3e183e08d7", "pid": "972969608", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10080550-4", "source": "GND"}], "variant_name": ["SOMMA"], "preferred_name": "International Symposium on Magnetic Materials and Applications", "country_associated": "ko", "variant_access_point": ["SOMMA, 2003, Daejeon"], "authorized_access_point": "International Symposium on Magnetic Materials and Applications, 2003, Daejeon"} 1 +2024-09-11 09:03:24.902941 2024-09-11 09:03:24.902945 8db56024-3980-4757-b3aa-f78c912d1756 {"md5": "3e24f36af06dd551adab4a87389e3645", "pid": "972975128", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3059549-6", "source": "GND"}], "preferred_name": "Semaines Sociales de France, 78", "country_associated": "fr", "authorized_access_point": "Semaines Sociales de France, 78, 2003, Paris"} 1 +2024-09-11 09:03:24.971562 2024-09-11 09:03:24.971567 90240742-af0f-4674-ac59-11b660bcbe3e {"md5": "02eded4e1ac9fb25a0f4e8f9b214e366", "pid": "972990437", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5558642-9", "source": "GND"}], "variant_name": ["Anglo Japanese Seminar on Liquid Crystals, 2"], "preferred_name": "Anglo-Japanese Seminar on Liquid Crystals, 2", "country_associated": "xxk", "variant_access_point": ["Anglo Japanese Seminar on Liquid Crystals, 2, 2001, York"], "authorized_access_point": "Anglo-Japanese Seminar on Liquid Crystals, 2, 2001, York"} 1 +2024-09-11 09:03:25.042664 2024-09-11 09:03:25.042669 498bdeb2-048c-42a5-91fd-bcb344a91f54 {"md5": "00a9dc20d5fda9591c3cde869bf84bb3", "pid": "973004010", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5559211-9", "source": "GND"}], "variant_name": ["Konference deset Let Euroregionu - Neisse - Nisa - Nysa"], "preferred_name": "Konference 10 Let Euroregionu - Neisse - Nisa - Nysa", "variant_access_point": ["Konference deset Let Euroregionu - Neisse - Nisa - Nysa, 2001, Liberec"], "authorized_access_point": "Konference 10 Let Euroregionu - Neisse - Nisa - Nysa, 2001, Liberec"} 1 +2024-09-11 09:03:25.103393 2024-09-11 09:03:25.103398 f887a474-d390-40c4-b4ee-9d6594e826d5 {"md5": "0707d099d4d01c35d771f67a14702d2d", "pid": "973016515", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10088119-1", "source": "GND"}], "variant_name": ["International Colloquium on Refractories, 23", "Colloque International sur les Réfractaires, 23"], "preferred_name": "Internationales Feuerfest-Kolloquium, 23", "country_associated": "gw", "variant_access_point": ["International Colloquium on Refractories, 23, 1980, Aachen", "Colloque International sur les Réfractaires, 23, 1980, Aachen"], "authorized_access_point": "Internationales Feuerfest-Kolloquium, 23, 1980, Aachen"} 1 +2024-09-11 09:03:25.165031 2024-09-11 09:03:25.165035 1ff386df-ef79-40dd-b9a9-9f98b3e317ff {"md5": "9f4a8b635fdea26b77da1e75f61e6534", "pid": "973017856", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5560024-4", "source": "GND"}], "variant_name": ["SEAL"], "preferred_name": "Society for Effective Affective Learning", "country_associated": "xxk", "variant_access_point": ["SEAL. Abkuerzung"], "date_of_establishment": "1983", "authorized_access_point": "Society for Effective Affective Learning"} 1 +2024-09-11 09:03:25.236718 2024-09-11 09:03:25.236721 432ac940-6889-45d8-b3d5-b096a1465349 {"md5": "f82894650cb43ffa0deb2ea9ad8a2ef8", "pid": "973277645", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10094153-9", "source": "GND"}], "variant_name": ["Gedenkkolloquium anläßlich des Hundertsten Geburtstages von Wilhelm Abel"], "preferred_name": "Gedenkkolloquium anläßlich des 100. Geburtstages von Wilhelm Abel", "variant_access_point": ["Gedenkkolloquium anläßlich des Hundertsten Geburtstages von Wilhelm Abel, 2004, Leipzig"], "authorized_access_point": "Gedenkkolloquium anläßlich des 100. Geburtstages von Wilhelm Abel, 2004, Leipzig"} 1 +2024-09-11 09:03:25.324143 2024-09-11 09:03:25.324147 f8609c48-1e70-43f7-87ef-e3ba96d5a619 {"md5": "14c29636c52c75ddc075ce8e0b1500b7", "pid": "97372076X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5554958-5", "source": "GND"}], "preferred_name": "Conference on the Sun in the Service of Man", "country_associated": "xxu", "authorized_access_point": "Conference on the Sun in the Service of Man, 1951, Boston, Mass."} 1 +2024-09-11 09:03:25.379909 2024-09-11 09:03:25.379913 460045cf-fc02-43df-b6ab-20a6cc9fe4c3 {"md5": "6428ec05aea74483b30e57dabd8acec1", "pid": "973728558", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10090067-7", "source": "GND"}], "variant_name": ["Internationale Transportarbeiter-Föderation. Oficina Regional para America Latina"], "preferred_name": "Internationale Transportarbeiter-Föderation. Regional Office for Latin America", "variant_access_point": ["Internationale Transportarbeiter-Föderation. Oficina Regional para America Latina"], "authorized_access_point": "Internationale Transportarbeiter-Föderation. Regional Office for Latin America", "biographical_information": ["Sitz: Mexico"]} 1 +2024-09-11 09:03:25.440389 2024-09-11 09:03:25.440393 d05ea1be-c92f-40b0-b04b-b2c9531f5fa3 {"md5": "f9d2c6afdfaa6f7258c973cabee0f205", "pid": "973729619", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3059672-5", "source": "GND"}], "preferred_name": "Nordostdeutsche Künstler-Einung", "country_associated": "gw", "authorized_access_point": "Nordostdeutsche Künstler-Einung", "biographical_information": ["e.V. Sitz: Lüneburg"]} 1 +2024-09-11 09:03:25.498611 2024-09-11 09:03:25.498615 0eae2614-1d04-45dc-918a-e97d68529a51 {"md5": "3e1d06a9d4ffb2ba04e2d3b39cc57c28", "pid": "973743220", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10090790-8", "source": "GND"}], "variant_name": ["PACT, 13", "Parallel Architecture and Compilation Techniques Conference, 13"], "preferred_name": "International Conference on Parallel Architectures and Compilation Techniques, 13", "country_associated": "fr", "variant_access_point": ["PACT, 13, 2004, Juan-les-Pins", "Parallel Architecture and Compilation Techniques Conference, 13, 2004, Juan-les-Pins"], "authorized_access_point": "International Conference on Parallel Architectures and Compilation Techniques, 13, 2004, Juan-les-Pins"} 1 +2024-09-11 09:03:25.556548 2024-09-11 09:03:25.55655 b2413661-404c-45d4-b618-22c89ae1cdac {"md5": "f293ad7390362fce657ee541e3087029", "pid": "973753544", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6501227-6", "source": "GND"}], "variant_name": ["Hilversum, Pas Op"], "preferred_name": "Stichting Hilversum, Pas Op", "country_associated": "ne", "variant_access_point": ["Hilversum, Pas Op"], "authorized_access_point": "Stichting Hilversum, Pas Op", "biographical_information": ["1981 gegr. Stiftung für den Erhalt von Baudenkmälern in Hilversum"]} 1 +2024-09-11 09:03:25.614604 2024-09-11 09:03:25.614607 e018d17c-30b7-4378-9a94-5d240769959d {"md5": "587ef9f2d14f1a149463405dac36162f", "pid": "973763361", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10091450-0", "source": "GND"}], "variant_name": ["Allergiesymposium für Kinderärztinnen und Kinderärzte, 21"], "preferred_name": "Allergie-Symposium für Kinderärztinnen und Kinderärzte, 21", "country_associated": "gw", "variant_access_point": ["Allergiesymposium für Kinderärztinnen und Kinderärzte, 21, 2003, Schleswig"], "authorized_access_point": "Allergie-Symposium für Kinderärztinnen und Kinderärzte, 21, 2003, Schleswig"} 1 +2024-09-11 09:03:25.671857 2024-09-11 09:03:25.671862 6671849f-26da-4d38-8bf9-ba409463e967 {"md5": "35c6f442579bc08f8f54abe08123b17d", "pid": "973769998", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6034765-X", "source": "GND"}], "variant_name": ["Kongress zum Täter-Opfer-Ausgleich, 4", "Bremer TOA-Kongress, 4"], "preferred_name": "Bremer Kongress zum Täter-Opfer-Ausgleich, 4", "country_associated": "gw", "variant_access_point": ["Kongress zum Täter-Opfer-Ausgleich, 4, 2004, Bremen", "Bremer TOA-Kongress, 4, 2004, Bremen"], "authorized_access_point": "Bremer Kongress zum Täter-Opfer-Ausgleich, 4, 2004, Bremen"} 1 +2024-09-11 09:03:25.727614 2024-09-11 09:03:25.727618 01334dfa-95f2-459d-a08d-abe7373ca6dc {"md5": "b148c38e25ad9597aeaef9c6e430e456", "pid": "973778318", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6035091-X", "source": "GND"}], "variant_name": ["ISSCG, 12", "ISSCG-12, Akademie Berlin, Schmockwitz, Germany, 1 - 7 August 2004"], "preferred_name": "International Summer School of Crystal Growth, 12", "variant_access_point": ["ISSCG, 12, 2004, Berlin", "ISSCG-12, Akademie Berlin, Schmockwitz, Germany, 1 - 7 August 2004"], "authorized_access_point": "International Summer School of Crystal Growth, 12, 2004, Berlin"} 1 +2024-09-11 09:03:25.785783 2024-09-11 09:03:25.785787 e4fae8d7-0a50-457c-920d-61ef287e937c {"md5": "e447a7e5249c9e316eb7549fa53bc374", "pid": "97378637X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5562668-3", "source": "GND"}], "preferred_name": "Verschönerungsverein", "authorized_access_point": "Verschönerungsverein. Bad Bergzabern"} 1 +2024-09-11 09:03:25.844444 2024-09-11 09:03:25.844448 12903152-0010-4445-828f-9ded3f9d872f {"md5": "f6796d805dd20ca437f0a36d82d0ea6a", "pid": "973790636", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6502345-6", "source": "GND"}], "variant_name": ["Workshop on Environmental Status, Issues and Techno-Economic Alternatives for Eco-Friendly Development in South Gujarat", "Seminar on Environmental Crisis and Eco-Friendly Techno-Economic Alternatives"], "preferred_name": "National Seminar on Environmental Crisis and Eco-Friendly Techno-Economic Alternatives", "country_associated": "ii", "variant_access_point": ["Workshop on Environmental Status, Issues and Techno-Economic Alternatives for Eco-Friendly Development in South Gujarat, 2000, Surat", "Seminar on Environmental Crisis and Eco-Friendly Techno-Economic Alternatives, 2000, Surat"], "authorized_access_point": "National Seminar on Environmental Crisis and Eco-Friendly Techno-Economic Alternatives, 2000, Surat"} 1 +2024-09-11 09:03:25.908469 2024-09-11 09:03:25.908474 0816ea50-feb7-4f6c-b63a-27d8078bfb9b {"md5": "f2c6c02ae53968037a1e081499ba4c4b", "pid": "973818522", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3060228-2", "source": "GND"}], "preferred_name": "Sannah Brothers Band", "country_associated": "gh", "authorized_access_point": "Sannah Brothers Band"} 1 +2024-09-11 09:03:25.981784 2024-09-11 09:03:25.981787 80a75baf-3670-49f5-a418-a9aa3603cd34 {"md5": "2e877ffe689baa0f597e384065f7bcc6", "pid": "973819987", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3060397-3", "source": "GND"}], "preferred_name": "Simposio Internazionale sull'Arte Georgiana, 1", "country_associated": "it", "authorized_access_point": "Simposio Internazionale sull'Arte Georgiana, 1, 1974, Bergamo"} 1 +2024-09-11 09:03:26.039631 2024-09-11 09:03:26.039635 20a46b2e-5549-43a2-b1a1-b94e9ee938e6 {"md5": "55ad9d6554d7903729e1e6d6c3f90e90", "pid": "973828269", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10095103-X", "source": "GND"}], "preferred_name": "Giornata di Studio Evoluzione dei Mezzi di Difesa Fitosanitaria", "country_associated": "it", "authorized_access_point": "Giornata di Studio Evoluzione dei Mezzi di Difesa Fitosanitaria, 2003, Florenz"} 1 +2024-09-11 09:03:26.09768 2024-09-11 09:03:26.097685 2dd2ba44-eb3f-461e-b133-61ba420e4236 {"md5": "a614baa308cf5ea5f1fcddbde7bd0cb1", "pid": "973832231", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6036511-0", "source": "GND"}], "preferred_name": "Jakob Ochs Gartenbau", "country_associated": "gw", "authorized_access_point": "Jakob Ochs Gartenbau. Hamburg"} 1 +2024-09-11 09:03:26.167748 2024-09-11 09:03:26.167754 e3424458-624b-47a1-9942-3f8679f8784a {"md5": "574308a02b412c7b9dac70526d6638c7", "pid": "973847476", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6037258-8", "source": "GND"}], "preferred_name": "Meždunarodnaja Delovaja Vstreča Diagnostika, 11", "authorized_access_point": "Meždunarodnaja Delovaja Vstreča Diagnostika, 11, 2001, Tūnis"} 1 +2024-09-11 09:03:26.237962 2024-09-11 09:03:26.237965 73d30739-9569-4b41-8c7b-452278081b6b {"md5": "c35ecaf08da9a69a1e8ff10d8dcbddcd", "pid": "973854790", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5564053-9", "source": "GND"}], "variant_name": ["ICM Satellite Conference on Nonlinear Evolution Equations and Dynamical Systems"], "preferred_name": "Satellite Conference on Nonlinear Evolution Equations and Dynamical Systems", "country_associated": "cc", "variant_access_point": ["ICM Satellite Conference on Nonlinear Evolution Equations and Dynamical Systems, 2002, Huang Shan"], "authorized_access_point": "Satellite Conference on Nonlinear Evolution Equations and Dynamical Systems, 2002, Huang Shan"} 1 +2024-09-11 09:03:26.292592 2024-09-11 09:03:26.292595 5237b463-297d-4568-a3a5-624ea1f7ac12 {"md5": "472b91473a124899052abb27b28dca55", "pid": "973987278", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6503698-0", "source": "GND"}], "variant_name": ["ISEB, 16"], "preferred_name": "International Symposium on Environmental Biogeochemistry, 16", "variant_access_point": ["ISEB, 16, 2003, Oraise"], "authorized_access_point": "International Symposium on Environmental Biogeochemistry, 16, 2003, Oraise"} 1 +2024-09-11 09:03:26.349645 2024-09-11 09:03:26.349648 f19b8240-012d-4f6d-87dd-3a0310b957bc {"md5": "5a9037521b0a34a8d2e7c31eaee40b22", "pid": "973999527", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6038009-3", "source": "GND"}], "variant_name": ["ISTC, 3"], "preferred_name": "International Conference on Semiconductor Technology, 3", "country_associated": "cc", "variant_access_point": ["ISTC, 3, 2004, Schanghai"], "authorized_access_point": "International Conference on Semiconductor Technology, 3, 2004, Schanghai"} 1 +2024-09-11 09:03:26.406194 2024-09-11 09:03:26.406198 68988fc0-fae2-4e33-8144-81af7b66aa42 {"md5": "3656fa08def126b7ed28be4cf778368c", "pid": "974085812", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10099079-4", "source": "GND"}], "variant_name": ["Filmtage, 1", "Tage des Internationalen Religiösen Films, 1"], "preferred_name": "Friedberger Filmtage, 1", "variant_access_point": ["Filmtage, 1, 1974 - 6, 1979", "Tage des Internationalen Religiösen Films, 1, 1974 - 6, 1979"], "authorized_access_point": "Friedberger Filmtage, 1, 1974 - 6, 1979"} 1 +2024-09-11 09:03:26.462111 2024-09-11 09:03:26.462114 65d97777-dc80-46fd-b470-5af368f3dd7a {"md5": "4ef7689b6efeead13ee264d32f15fc78", "pid": "974127469", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3060901-X", "source": "GND"}], "variant_name": ["Versicherungstag, 22"], "preferred_name": "Münsterischer Versicherungstag, 22", "country_associated": "gw", "variant_access_point": ["Versicherungstag, 22, 2004, Münster (Westf). Forschungsstelle für Versicherungswesen, Münster, Westfalen"], "authorized_access_point": "Münsterischer Versicherungstag, 22, 2004, Münster (Westf)"} 1 +2024-09-11 09:03:26.518915 2024-09-11 09:03:26.51892 f2cecf0e-d3ca-4cc8-babe-30352e388b6e {"md5": "480ef955816a1ea3a1d4e70cf6ffe53c", "pid": "974169722", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10099660-7", "source": "GND"}], "variant_name": ["Sozialdemokratische Partei Deutschlands Eimsbüttel", "SPD-Kreis Eimsbüttel", "SPD Eimsbüttel", "Sozialdemokratische Partei Deutschlands. Kreis Hamburg-Eimsbüttel", "SPD-Kreis Hamburg-Eimsbüttel", "SPD Hamburg-Eimsbüttel"], "preferred_name": "Sozialdemokratische Partei Deutschlands. Kreis Eimsbüttel", "country_associated": "gw", "variant_access_point": ["Sozialdemokratische Partei Deutschlands Eimsbüttel", "SPD-Kreis Eimsbüttel", "SPD Eimsbüttel", "Sozialdemokratische Partei Deutschlands. Kreis Hamburg-Eimsbüttel", "SPD-Kreis Hamburg-Eimsbüttel", "SPD Hamburg-Eimsbüttel"], "authorized_access_point": "Sozialdemokratische Partei Deutschlands. Kreis Eimsbüttel"} 1 +2024-09-11 09:03:26.575998 2024-09-11 09:03:26.576001 b9c1addc-95cf-4e96-b104-0fa3f7b80bed {"md5": "77078d909fda6a226cc8d0a24498e1c9", "pid": "974334650", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5564564-1", "source": "GND"}], "preferred_name": "Moritzburg-Festival, 12", "authorized_access_point": "Moritzburg-Festival, 12, 2004, Moritzburg"} 1 +2024-09-11 09:03:27.374738 2024-09-11 09:03:27.374742 73cb0eb7-9c3b-46b7-b816-5c4ff47e84a7 {"md5": "0051cb28a5fa224d0175877a85f9111d", "pid": "97542890X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5566968-2", "source": "GND"}], "variant_name": ["Thrower Symposium The Future of Tort Reform"], "preferred_name": "Randolph W. Thrower Symposium The Future of Tort Reform", "country_associated": "xxu", "variant_access_point": ["Thrower Symposium The Future of Tort Reform, 2004, Atlanta, Ga."], "authorized_access_point": "Randolph W. Thrower Symposium The Future of Tort Reform, 2004, Atlanta, Ga."} 1 +2024-09-11 09:03:26.635785 2024-09-11 09:03:26.63579 df84a6e2-8faa-440d-9a20-d17c87a10418 {"md5": "8397f449bfae43463c4ab36e91aa6e03", "pid": "974336076", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5564717-0", "source": "GND"}], "variant_name": ["Royal Postgraduate Medical School. Institute of Obstetrics and Gynaecology", "Institute of Obstetrics and Gynaecology", "Institute of Obstetrics and Gynaecology", "British Postgraduate Medical Federation. Institute of Obstetrics and Gynaecology"], "preferred_name": "University of London. Institute of Obstetrics and Gynaecology", "country_associated": "xxk", "variant_access_point": ["Royal Postgraduate Medical School. London. Institute of Obstetrics and Gynaecology", "Institute of Obstetrics and Gynaecology. London", "Institute of Obstetrics and Gynaecology. University of London", "British Postgraduate Medical Federation. Institute of Obstetrics and Gynaecology"], "authorized_access_point": "University of London. Institute of Obstetrics and Gynaecology"} 1 +2024-09-11 09:03:26.701763 2024-09-11 09:03:26.701765 dea94d19-7882-493d-87c8-c04bd9705abb {"md5": "58855455de360e3097baf64fcbcdc18e", "pid": "974346063", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10100416-3", "source": "GND"}], "preferred_name": "Comitato Ricerche Storiche Medicinesi", "country_associated": "it", "authorized_access_point": "Comitato Ricerche Storiche Medicinesi", "biographical_information": ["Sitz: Medicina"]} 1 +2024-09-11 09:03:26.759915 2024-09-11 09:03:26.759919 924b2380-4452-4811-9efa-6ddd53b9db46 {"md5": "8743fb462d9e56a5d16a2a1df254b0bc", "pid": "974357685", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10101091-6", "source": "GND"}], "variant_name": ["International Conference on Database Systems for Advanced Applications, 10"], "preferred_name": "DASFAA, 10", "country_associated": "cc", "variant_access_point": ["International Conference on Database Systems for Advanced Applications, 10, 2005, Peking"], "authorized_access_point": "DASFAA, 10, 2005, Peking"} 1 +2024-09-11 09:03:26.822018 2024-09-11 09:03:26.822024 a246c958-2609-412e-a257-b6b9f980afc9 {"md5": "65aefeeb85dc9992bccb9ad9a253e4aa", "pid": "974385492", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10101355-3", "source": "GND"}], "variant_name": ["Peterburgskij Dialog, 1"], "preferred_name": "Petersburger Dialog, 1", "country_associated": "ru", "variant_access_point": ["Peterburgskij Dialog, 1, 2001, Sankt Petersburg"], "authorized_access_point": "Petersburger Dialog, 1, 2001, Sankt Petersburg"} 1 +2024-09-11 09:03:26.880749 2024-09-11 09:03:26.880753 1ef280c9-eea6-4964-8d42-6ccf22326d54 {"md5": "58b31de7df37cbb9028fc9dd6c06a36d", "pid": "974428345", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5565638-9", "source": "GND"}], "preferred_name": "European Workshop on the Preparation of the Census Fieldwork", "country_associated": "it", "authorized_access_point": "European Workshop on the Preparation of the Census Fieldwork, 1999, Rom"} 1 +2024-09-11 09:03:26.941338 2024-09-11 09:03:26.941343 341f369c-595c-480b-85d3-3e1282a30e54 {"md5": "4e7166c22a93d2402a7a80cf6b6dcf1d", "pid": "974489530", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6504567-1", "source": "GND"}], "preferred_name": "Symposium Innovative Cancer Therapy for Tomorrow, 22", "country_associated": "xxu", "authorized_access_point": "Symposium Innovative Cancer Therapy for Tomorrow, 22, 2004, New York, NY"} 1 +2024-09-11 09:03:26.997694 2024-09-11 09:03:26.997697 dbeaef2d-74b5-4c9a-959f-403a8f07d26e {"md5": "ceaf57252d8cc1865554a4db5d8b2a87", "pid": "974648884", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10102400-9", "source": "GND"}], "variant_name": ["Internationale Fachmesse für Büro, Computer, Telecom"], "preferred_name": "Ifabo", "country_associated": "au", "variant_access_point": ["Internationale Fachmesse für Büro, Computer, Telecom, 1995, Wien"], "authorized_access_point": "Ifabo, 1995, Wien"} 1 +2024-09-11 09:03:27.055946 2024-09-11 09:03:27.055951 6ad7fc10-c65d-435e-a9f9-1c5170b119cc {"md5": "a70e7ec266c7a11f9269e5ec86ab7d85", "pid": "974981990", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6505086-1", "source": "GND"}], "preferred_name": "Assisi Software", "country_associated": "gw", "authorized_access_point": "Assisi Software. Hohen Neuendorf"} 1 +2024-09-11 09:03:27.115746 2024-09-11 09:03:27.115748 63528c87-ac43-46cb-b894-c2fd0810219d {"md5": "7e42603654310773d270105d7087cfc3", "pid": "975310844", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10106568-1", "source": "GND"}], "preferred_name": "Falchi Arte Moderna", "country_associated": "it", "authorized_access_point": "Falchi Arte Moderna. Mailand"} 1 +2024-09-11 09:03:27.176673 2024-09-11 09:03:27.176676 02854530-dbc2-4bb3-8394-d210b841afd5 {"md5": "6d23f794c522e19daf9e314724b04866", "pid": "975409239", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6041577-0", "source": "GND"}], "variant_name": ["Universität Halle-Wittenberg. Fachbereich Ingenieurwissenschaften. Institut für Bioengineering"], "preferred_name": "Institut für Bioengineering", "country_associated": "gw", "variant_access_point": ["Universität Halle-Wittenberg. Fachbereich Ingenieurwissenschaften. Institut für Bioengineering"], "authorized_access_point": "Institut für Bioengineering. Halle (Saale)"} 1 +2024-09-11 09:03:27.235967 2024-09-11 09:03:27.235972 25bf270c-eb1a-4fbb-9744-9b316b2bc31d {"md5": "4f6435aed67217cce3fee2e8b57f2b91", "pid": "975409255", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6041579-4", "source": "GND"}], "preferred_name": "Ausstellung Therefore Beautiful", "country_associated": "gw", "authorized_access_point": "Ausstellung Therefore Beautiful, 2005, Kraichtal"} 1 +2024-09-11 09:03:27.301151 2024-09-11 09:03:27.301157 30805486-9499-4d6a-a461-b7d920101d33 {"md5": "bc845c60544743aa0ef0ccfd4a6a4c9a", "pid": "975411659", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6041817-5", "source": "GND"}], "preferred_name": "Encontro Nacional Estudos Populacionais", "country_associated": "bl", "authorized_access_point": "Encontro Nacional Estudos Populacionais, 1984, São Paulo"} 1 +2024-09-11 09:03:27.451653 2024-09-11 09:03:27.451664 86b4fa25-3c99-47ba-b9a1-cb1d32ddc58d {"md5": "503bca90c954a360354d039549c256b9", "pid": "975483935", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6042391-2", "source": "GND"}], "preferred_name": "Ausstellung René Magritte. Der Schlüssel der Träume", "country_associated": "sz", "authorized_access_point": "Ausstellung René Magritte. Der Schlüssel der Träume, 2005, Riehen ; Wien"} 1 +2024-09-11 09:03:27.508399 2024-09-11 09:03:27.508404 1826fdc1-a4f3-4978-b91d-88b67d0a7fd8 {"md5": "cd6afaa5edf6f5b7e5d7a42e940aee61", "pid": "975497278", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10107593-5", "source": "GND"}], "variant_name": ["MGV Cäcilia"], "preferred_name": "Männergesangverein Cäcilia", "variant_access_point": ["MGV Cäcilia. Bruchhausen, Neuwied"], "date_of_establishment": "1905", "authorized_access_point": "Männergesangverein Cäcilia. Bruchhausen, Neuwied"} 1 +2024-09-11 09:03:27.571319 2024-09-11 09:03:27.571324 59ed1d45-37f4-4ac1-8a82-168069c953f7 {"md5": "b8f85e3df3c378f6682d1164dc669e76", "pid": "975537016", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3061691-8", "source": "GND"}], "preferred_name": "Hochstift-Marathon, 3", "country_associated": "gw", "authorized_access_point": "Hochstift-Marathon, 3, 1996, Fulda"} 1 +2024-09-11 09:03:27.643077 2024-09-11 09:03:27.643082 edfe1665-ba0b-410e-af1a-73ed38f56033 {"md5": "489b84fee6a35fd46e3253cd9740a924", "pid": "975540289", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6505893-8", "source": "GND"}], "preferred_name": "Allgemeine Versammlung der Berg- und Hüttenmänner, 1", "authorized_access_point": "Allgemeine Versammlung der Berg- und Hüttenmänner, 1, 1858 - 3, 1863"} 1 +2024-09-11 09:03:27.702024 2024-09-11 09:03:27.702026 b5a7821e-6cb8-4988-801d-7163acc8c9ce {"md5": "b2ffaea80108fba0d8d2028a1925dd69", "pid": "97554134X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5567163-9", "source": "GND"}], "variant_name": ["Conference on the Application of Density Functional Theory to Chemistry and Physics, 10", "International Conference on the Applications of Density Functional Theory to Chemistry and Physics, 10"], "preferred_name": "International Conference on the Application of Density Functional Theory to Chemistry and Physics, 10", "country_associated": "be", "variant_access_point": ["Conference on the Application of Density Functional Theory to Chemistry and Physics, 10, 2003, Brüssel", "International Conference on the Applications of Density Functional Theory to Chemistry and Physics, 10, 2003, Brüssel"], "authorized_access_point": "International Conference on the Application of Density Functional Theory to Chemistry and Physics, 10, 2003, Brüssel"} 1 +2024-09-11 09:03:27.757707 2024-09-11 09:03:27.757711 d5f77ba4-1b98-40a9-b0e4-e18332a8ecde {"md5": "f4873927443a9a002707940142adc852", "pid": "975543644", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5567393-4", "source": "GND"}], "variant_name": ["Sängerknaben"], "preferred_name": "Wiltener Sängerknaben", "country_associated": "au", "variant_access_point": ["Sängerknaben. Wiltener Sängerknaben"], "authorized_access_point": "Wiltener Sängerknaben", "biographical_information": ["Anfänge reichen zurück bis ins 13. Jahrhundert"]} 1 +2024-09-11 09:03:27.817195 2024-09-11 09:03:27.817199 cc74ca77-d641-41ad-acab-be8fb487bae3 {"md5": "93f4ea6e1e37e184d87efcec60371025", "pid": "975561243", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10107936-9", "source": "GND"}], "variant_name": ["International Symposium The Transformation of the City Space on the Background of Political Economic Changes in Central Europe, 4", "International Symposium The Transformation of the City Space on the Background of Political-Economic Changes in Central Europe, 4", "International Symposium The Transformation of the City Space on the Background of Political-Economic Changes in Central Europe, 4"], "preferred_name": "International Symposium The Transformation of the City Space on the Background of Political Economic Changes in Central Europe, 4", "country_associated": "pl", "variant_access_point": ["International Symposium The Transformation of the City Space on the Background of Political Economic Changes in Central Europe, 4, 2002, Cracow", "International Symposium The Transformation of the City Space on the Background of Political-Economic Changes in Central Europe, 4, 2002, Krakau", "International Symposium The Transformation of the City Space on the Background of Political-Economic Changes in Central Europe, 4, 2002, Cracow"], "authorized_access_point": "International Symposium The Transformation of the City Space on the Background of Political Economic Changes in Central Europe, 4, 2002, Krakau"} 1 +2024-09-11 09:03:27.874408 2024-09-11 09:03:27.874411 041164e3-4b02-432e-a3d9-784580dd3257 {"md5": "ad8a9b5d2e8db9a96c5ac00a4e377f48", "pid": "975774719", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10109223-4", "source": "GND"}], "preferred_name": "Modern Language Association of America. Middle English Division", "country_associated": "xxu", "authorized_access_point": "Modern Language Association of America. Middle English Division"} 1 +2024-09-11 09:03:27.930196 2024-09-11 09:03:27.9302 154f883b-68bc-4866-b717-a25f2ab6a065 {"md5": "a6977bb6d49b02d2ad06760ffc765084", "pid": "975895346", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5568081-1", "source": "GND"}], "variant_name": ["International Symposium Innovations in Wine Technology, 4"], "preferred_name": "Internationales Symposium Innovationen in der Kellerwirtschaft, 4", "variant_access_point": ["International Symposium Innovations in Wine Technology, 4, 1995, Stuttgart"], "authorized_access_point": "Internationales Symposium Innovationen in der Kellerwirtschaft, 4, 1995, Stuttgart"} 1 +2024-09-11 09:03:27.987194 2024-09-11 09:03:27.987199 23ef263f-7363-4303-871e-99f4ecbbd2a7 {"md5": "7b41b4e97b35a4f2a3683ca9497f9838", "pid": "976006332", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10110917-9", "source": "GND"}], "variant_name": ["SPÖ-Ortsorganisation", "SPÖ Bad Pirawarth - Kollnbrunn"], "preferred_name": "Sozialdemokratische Partei Österreichs. Ortsorganisation", "country_associated": "au", "variant_access_point": ["SPÖ-Ortsorganisation. Bad Pirawarth- Kollnbrunn", "SPÖ Bad Pirawarth - Kollnbrunn. Unveraenderte Form"], "authorized_access_point": "Sozialdemokratische Partei Österreichs. Ortsorganisation. Bad Pirawarth- Kollnbrunn"} 1 +2024-09-11 09:03:28.047665 2024-09-11 09:03:28.047671 b1daa729-f88e-4bd8-8bda-8c5a159bb70a {"md5": "d93999db21479029eb3a1a03632b2e62", "pid": "976206323", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10112942-7", "source": "GND"}], "preferred_name": "Interdisziplinäres Symposion Sicherheit und Dynamik in der Mitte Europas, Österreichs Rolle aus der Sicht der Nachbarn", "country_associated": "au", "authorized_access_point": "Interdisziplinäres Symposion Sicherheit und Dynamik in der Mitte Europas, Österreichs Rolle aus der Sicht der Nachbarn, 1996, Wien"} 1 +2024-09-11 09:03:28.10652 2024-09-11 09:03:28.106525 3267f54f-c3f7-4d5d-91cd-1e7b3785d7a8 {"md5": "1229990d6c8afd5d89e0cb95e9bdcaeb", "pid": "976264293", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10113329-7", "source": "GND"}], "variant_name": ["Verein Frauenhaus Amstetten"], "preferred_name": "Frauenhaus Amstetten", "country_associated": "au", "variant_access_point": ["Verein Frauenhaus Amstetten"], "authorized_access_point": "Frauenhaus Amstetten"} 1 +2024-09-11 09:03:28.160866 2024-09-11 09:03:28.16087 4726acf6-6f17-4780-b989-807e45c7fbe2 {"md5": "c38a3d38666fd45834e7541893cc6549", "pid": "976322293", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10113943-3", "source": "GND"}], "variant_name": ["Handelsgesellschaft für Historische Wertpapiere GmbH", "Handelsgesellschaft für historische Wertpapiere KG"], "preferred_name": "Handelsgesellschaft für Historische Wertpapiere", "country_associated": "au", "variant_access_point": ["Handelsgesellschaft für Historische Wertpapiere GmbH. Unveraenderte Form", "Handelsgesellschaft für historische Wertpapiere KG. Unveraenderte Form"], "authorized_access_point": "Handelsgesellschaft für Historische Wertpapiere"} 1 +2024-09-11 09:03:28.218947 2024-09-11 09:03:28.218952 d362a21c-0fab-4fc3-9a07-832d9fc1d56c {"md5": "92af307d73e285a37916329452608741", "pid": "976362473", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10114334-5", "source": "GND"}], "preferred_name": "RECOMB Satellite Workshop on Comparative Genomics", "country_associated": "ie", "authorized_access_point": "RECOMB Satellite Workshop on Comparative Genomics, 2005, Dublin"} 1 +2024-09-11 09:03:28.276097 2024-09-11 09:03:28.276102 34e4b2d0-29b2-4304-b732-7dfcb118dc6e {"md5": "47c8ff6ad0ef456e5dc431b8435d8bb4", "pid": "97638230X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10114527-5", "source": "GND"}], "variant_name": ["Dialogue des Peuples et des Cultures: les Acteurs du Dialogue", "Dialogue between Peoples and Cultures", "Dialogue des Peuples et des Cultures", "Meeting Dialogue between Peoples and Cultures"], "preferred_name": "Dialogue between Peoples and Cultures: Actors in the Dialogue", "country_associated": "be", "variant_access_point": ["Dialogue des Peuples et des Cultures: les Acteurs du Dialogue, 2004, Brüssel", "Dialogue between Peoples and Cultures, 2004, Brüssel", "Dialogue des Peuples et des Cultures, 2004, Brüssel", "Meeting Dialogue between Peoples and Cultures, 2004, Brüssel"], "authorized_access_point": "Dialogue between Peoples and Cultures: Actors in the Dialogue, 2004, Brüssel"} 1 +2024-09-11 09:03:28.345343 2024-09-11 09:03:28.345346 2f961700-686e-473c-8f85-ffea97c469e5 {"md5": "70ae812eddad8a97eb8597ac3d299103", "pid": "976430975", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10114991-8", "source": "GND"}], "variant_name": ["Gebetsbund. Abteilung"], "preferred_name": "Gebetsbund. Abtheilung", "variant_access_point": ["Gebetsbund. Abteilung. Berlin"], "authorized_access_point": "Gebetsbund. Abtheilung. Berlin"} 1 +2024-09-11 09:03:28.408095 2024-09-11 09:03:28.408099 28ac1d5d-7afa-4a38-aabc-f1de8b5767b9 {"md5": "a94ca52d919ed7a878a434d3d7055a53", "pid": "976606380", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10116768-4", "source": "GND"}], "variant_name": ["Uniwersytet Jagielloński w Krakowie. Geographical Information Systems Laboratory", "Uniwersytet Jagielloński w Krakowie. Instytut Geografii i Gospodarki Przestrzennej. Geographical Information Systems Laboratory", "Uniwersytet Jagielloński w Krakowie. Instytut Geografii i Gospodarki Przestrzennej. Zakład Systemów Informacji Geograficznej"], "preferred_name": "Uniwersytet Jagielloński w Krakowie. Zakład Systemów Informacji Geograficznej", "country_associated": "pl", "date_of_termination": "2007", "variant_access_point": ["Uniwersytet Jagielloński w Krakowie. Geographical Information Systems Laboratory", "Uniwersytet Jagielloński w Krakowie. Instytut Geografii i Gospodarki Przestrzennej. Geographical Information Systems Laboratory", "Uniwersytet Jagielloński w Krakowie. Instytut Geografii i Gospodarki Przestrzennej. Zakład Systemów Informacji Geograficznej"], "authorized_access_point": "Uniwersytet Jagielloński w Krakowie. Zakład Systemów Informacji Geograficznej", "biographical_information": ["Zakład Systemów Informacji Geograficznej, Kartografii i Teledetekcji (Zakład GISKiT) został założony w Instytucie Geografii i Gospodarki Przestrzennej Uniwersytetu Jagiellońskiego 1 lipca 2007 roku. Zakład GISKiT powstał z połączenia działających wcześniej w IGiGP zakładów: Systemów Informacji Geograficznej (GIS) oraz Kartografii i Teledetekcji. - Homepage der Nachfolge-Einrichtung am 14.09.2015 http://www.gis.geo.uj.edu.pl/"]} 1 +2024-09-11 09:03:28.464447 2024-09-11 09:03:28.464449 70702775-0e23-45ed-910b-d00618d1746a {"md5": "cee8af1b8510a1ba81a3a055bae307e2", "pid": "976645815", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6045104-X", "source": "GND"}], "variant_name": ["Internationale Fachmesse für Thermoprozesstechnik, 8", "International Trade Fair for Thermo-Process Technology, 8", "Internationale Fachmesse Thermprocess, 8", "International Trade Fair Thermprocess, 8"], "preferred_name": "Thermprocess, 8", "country_associated": "gw", "variant_access_point": ["Internationale Fachmesse für Thermoprozesstechnik, 8, 2003, Düsseldorf", "International Trade Fair for Thermo-Process Technology, 8, 2003, Düsseldorf", "Internationale Fachmesse Thermprocess, 8, 2003, Düsseldorf", "International Trade Fair Thermprocess, 8, 2003, Düsseldorf"], "authorized_access_point": "Thermprocess, 8, 2003, Düsseldorf"} 1 +2024-09-11 09:03:28.522687 2024-09-11 09:03:28.522691 74c900a3-36a5-4277-a754-b2487a6e6b5d {"md5": "b96e52565084784268919d65cefb79be", "pid": "97664830X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6045528-7", "source": "GND"}], "variant_name": ["ESCAR Conference"], "preferred_name": "ESCAR-Tagung", "country_associated": "gw", "variant_access_point": ["ESCAR Conference, 2003, Köln"], "authorized_access_point": "ESCAR-Tagung, 2003, Köln"} 1 +2024-09-11 09:03:28.57761 2024-09-11 09:03:28.577615 7d1d504a-32c3-4983-9caf-049324a4667f {"md5": "e5a0a28b33f1cab939ad8ac4e35ddd0b", "pid": "976660970", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3062366-2", "source": "GND"}], "preferred_name": "Arbeitskreis Straßenbauabfälle Rheinland-Pfalz", "country_associated": "gw", "authorized_access_point": "Arbeitskreis Straßenbauabfälle Rheinland-Pfalz", "biographical_information": ["Mitglieder aus verschiedenen Organisationen"]} 1 +2024-09-11 09:03:28.634753 2024-09-11 09:03:28.634757 0d5cde0a-bec4-44f8-b01c-43ffa9aaf5cc {"md5": "0335786be33e8cc5f2997f776094e675", "pid": "976760681", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10117933-9", "source": "GND"}], "variant_name": ["Exposition Claude Viallat - Peintures Récentes & Objets"], "preferred_name": "Exposition Claude Viallat - Peintures Récentes et Objets", "country_associated": "fr", "variant_access_point": ["Exposition Claude Viallat - Peintures Récentes & Objets, 2005, Toulon"], "authorized_access_point": "Exposition Claude Viallat - Peintures Récentes et Objets, 2005, Toulon"} 1 +2024-09-11 09:03:28.68939 2024-09-11 09:03:28.689393 490e371a-25c0-416c-bb77-e1c29cfd32ac {"md5": "6c7913efe78c9d139f0960c575091d96", "pid": "976796694", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10118276-4", "source": "GND"}], "variant_name": ["Symposium on Stochastic Algorithms, Foundations and Applications, 3"], "preferred_name": "SAGA, 3", "variant_access_point": ["Symposium on Stochastic Algorithms, Foundations and Applications, 3, 2005, Moskau"], "authorized_access_point": "SAGA, 3, 2005, Moskau"} 1 +2024-09-11 09:03:28.747407 2024-09-11 09:03:28.74741 92abb3dd-f467-48d2-bfe5-970ee268bbc3 {"md5": "79ee9f6c68a3c77fafe40f0ab1d90304", "pid": "976913445", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6046532-3", "source": "GND"}], "preferred_name": "Konferencja Naukowo-Techniczna Polski Przemysł i Zapleczne Naprawcze Transportu Kolejowego w Warunkach Konkurencji na Europejskim Rynku Kolejowym", "country_associated": "pl", "authorized_access_point": "Konferencja Naukowo-Techniczna Polski Przemysł i Zapleczne Naprawcze Transportu Kolejowego w Warunkach Konkurencji na Europejskim Rynku Kolejowym, 2004, Zakopane"} 1 +2024-09-11 09:03:28.813013 2024-09-11 09:03:28.813016 f343b9f1-8ec1-4b25-aadd-5b32c937dfc2 {"md5": "59c22b44eaa4bcead60f3d91d591b337", "pid": "97693681X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10119433-X", "source": "GND"}], "preferred_name": "Seminar In the Place of the Public Sphere", "country_associated": "dk", "authorized_access_point": "Seminar In the Place of the Public Sphere, 2002, Odense"} 1 +2024-09-11 09:03:28.872869 2024-09-11 09:03:28.872873 4479ef11-ff30-469f-b693-d5fce898596a {"md5": "77d8b296bf9230eb8898a3c47f0c1709", "pid": "97694247X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10119485-7", "source": "GND"}], "preferred_name": "Interessengemeinschaft Piestinger Wirtschaft", "country_associated": "au", "authorized_access_point": "Interessengemeinschaft Piestinger Wirtschaft"} 1 +2024-09-11 09:03:28.929023 2024-09-11 09:03:28.929027 8a1744d3-ebdd-4d2a-a69e-2f5bd6e4ed49 {"md5": "e370f53c2508b94987be4e65d27a4289", "pid": "977057763", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6507713-1", "source": "GND"}], "preferred_name": "International Workshop on Psychogenic Movement Disorders", "authorized_access_point": "International Workshop on Psychogenic Movement Disorders, 2003"} 1 +2024-09-11 09:03:28.988702 2024-09-11 09:03:28.988708 e1527c9f-df26-49a2-bc39-9e9f4f364a6a {"md5": "20efb79a0dc5d7f0bcd85b27b5807d3e", "pid": "977094332", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10120516-8", "source": "GND"}], "variant_name": ["Kolledž Kulʹtury i Iskusstv"], "preferred_name": "Marijskij Respublikanskij Kolledž Kulʹtury i Iskusstv", "country_associated": "ru", "variant_access_point": ["Kolledž Kulʹtury i Iskusstv. Joschkar-Ola"], "authorized_access_point": "Marijskij Respublikanskij Kolledž Kulʹtury i Iskusstv. Joschkar-Ola"} 1 +2024-09-11 09:03:29.046808 2024-09-11 09:03:29.046811 3792d5d8-2dc2-4e02-9b1e-e6f33f389aa4 {"md5": "5ff568f8fd80a5b4a502536b61e5c384", "pid": "977270866", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10121673-7", "source": "GND"}], "preferred_name": "Sozialdemokratische Partei Deutschlands. Kreis. Abteilung, 3", "country_associated": "gw", "authorized_access_point": "Sozialdemokratische Partei Deutschlands. Kreis. Schöneberg, Berlin. Abteilung, 3"} 1 +2024-09-11 09:03:29.102339 2024-09-11 09:03:29.102344 11becc66-31ad-4195-9009-b089293456de {"md5": "618643e7089a06efcaad03da2b94a61e", "pid": "977320545", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6047238-8", "source": "GND"}], "variant_name": ["International Conference on Software Engineering Research, Management and Applications, 3", "ACIS International Conference on Software Engineering Research, Management and Applications, 3"], "preferred_name": "SERA, 3", "country_associated": "xxu", "variant_access_point": ["International Conference on Software Engineering Research, Management and Applications, 3, 2005, Mount Pleasant, Mich.", "ACIS International Conference on Software Engineering Research, Management and Applications, 3, 2005, Mount Pleasant, Mich."], "authorized_access_point": "SERA, 3, 2005, Mount Pleasant, Mich."} 1 +2024-09-11 09:03:29.163768 2024-09-11 09:03:29.163772 a309c985-c985-41ed-bbc8-34665ea7e371 {"md5": "cb5674757f232375008068b119ff4bd0", "pid": "977327523", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5570815-8", "source": "GND"}], "preferred_name": "F-Chart Software", "country_associated": "xxu", "authorized_access_point": "F-Chart Software. Madison, Wis."} 1 +2024-09-11 09:03:29.22406 2024-09-11 09:03:29.224063 cc188e64-206b-4319-817c-a8fb3d98f6e3 {"md5": "83de64d9318582d429431b8b00f05309", "pid": "977330281", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5571091-8", "source": "GND"}], "variant_name": ["International Film Festival, 39"], "preferred_name": "Thessaloniki International Film Festival, 39", "country_associated": "gr", "variant_access_point": ["International Film Festival, 39, 1998, Thessaloniki"], "authorized_access_point": "Thessaloniki International Film Festival, 39, 1998, Thessaloniki"} 1 +2024-09-11 09:03:29.288017 2024-09-11 09:03:29.288021 98d182fe-1fa5-40ae-83ec-866908c19456 {"md5": "1394ef052a63f28ea84e1cc30dd9efc6", "pid": "977508102", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10122049-2", "source": "GND"}], "preferred_name": "Themenforum Aviäre Influenza - Hintergründe, Informationen und Perspektiven", "authorized_access_point": "Themenforum Aviäre Influenza - Hintergründe, Informationen und Perspektiven, 2005, Hannover"} 1 +2024-09-11 09:03:29.346317 2024-09-11 09:03:29.346322 bb460404-61c1-4927-ad03-4600171a9518 {"md5": "c2ac30956746359eaa295643b22dad83", "pid": "977725022", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6047942-5", "source": "GND"}], "preferred_name": "Hanse-Compagnie", "country_associated": "gw", "date_of_establishment": "1995", "authorized_access_point": "Hanse-Compagnie. Hamburg"} 1 +2024-09-11 09:03:29.405082 2024-09-11 09:03:29.405087 fdc9c5d6-5c89-441a-8052-d0c0036a67f5 {"md5": "72c5e40cbea42f491981f9f17f7476e5", "pid": "977939359", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10123682-7", "source": "GND"}], "variant_name": ["Studienseminar"], "preferred_name": "Studienseminar für Lehrämter an Schulen", "country_associated": "gw", "variant_access_point": ["Studienseminar. Hamm (Westf)"], "authorized_access_point": "Studienseminar für Lehrämter an Schulen. Hamm (Westf)"} 1 +2024-09-11 09:03:29.466428 2024-09-11 09:03:29.466433 32e9fd34-710c-4a75-b20c-c95784dc2796 {"md5": "7d51fc50279d2162eb0599cf35d19eb2", "pid": "977998827", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10123962-2", "source": "GND"}], "preferred_name": "Round Table on Transport Economics, 25", "country_associated": "fr", "authorized_access_point": "Round Table on Transport Economics, 25, 1974, Paris"} 1 +2024-09-11 09:03:29.530597 2024-09-11 09:03:29.530602 b0f7b1d4-abb3-482d-8346-9f12e193fd7b {"md5": "abd85affcc892951547a5074d938519c", "pid": "978057414", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6048231-X", "source": "GND"}], "variant_name": ["Konferencja Naukowo-Techniczna Metrologia w Technikach Wytwarzania, 11"], "preferred_name": "Krajowa Konferencja Naukowo-Techniczna Metrologia w Technikach Wytwarzania, 11", "country_associated": "pl", "variant_access_point": ["Konferencja Naukowo-Techniczna Metrologia w Technikach Wytwarzania, 11, 2005, Lublin"], "authorized_access_point": "Krajowa Konferencja Naukowo-Techniczna Metrologia w Technikach Wytwarzania, 11, 2005, Lublin"} 1 +2024-09-11 09:03:29.585822 2024-09-11 09:03:29.585825 fd58b633-521e-4c1d-9fcf-c3d294692470 {"md5": "460e062f9f10de6944753229712105e5", "pid": "978237064", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6049331-8", "source": "GND"}], "variant_name": ["BV"], "preferred_name": "Bürgerverein", "country_associated": "gw", "variant_access_point": ["BV. Jever"], "authorized_access_point": "Bürgerverein. Jever"} 1 +2024-09-11 09:03:29.644671 2024-09-11 09:03:29.644674 659894cc-b3c9-4018-a799-846082046a9e {"md5": "d005983ff5e50e6f4e345285b63474bb", "pid": "97824723X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10125411-8", "source": "GND"}], "variant_name": ["Holstein-Verband", "DHV", "Deutscher Holstein-Verband e.V."], "preferred_name": "Deutscher Holstein-Verband", "country_associated": "gw", "variant_access_point": ["Holstein-Verband. Deutschland", "DHV. Abkuerzung", "Deutscher Holstein-Verband e.V.. Unveraenderte Form"], "authorized_access_point": "Deutscher Holstein-Verband"} 1 +2024-09-11 09:03:29.70418 2024-09-11 09:03:29.704183 1e8e53a4-8d7b-4d8f-a1c2-4d6b0a7c65df {"md5": "68193a1921a5a4312deaead4523b69ec", "pid": "978328582", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6049931-X", "source": "GND"}], "preferred_name": "European Coatings Conference The Power of Ink-Jet Materials, 3", "authorized_access_point": "European Coatings Conference The Power of Ink-Jet Materials, 3, 2005, Berlin"} 1 +2024-09-11 09:03:29.761994 2024-09-11 09:03:29.761999 e5c28831-818a-4bf1-9788-f0dacf0b6ccd {"md5": "389b7466b9f237563ca774a9728ef4f7", "pid": "978329953", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6050087-6", "source": "GND"}], "preferred_name": "Rocking Highlanders", "country_associated": "xxu", "authorized_access_point": "Rocking Highlanders"} 1 +2024-09-11 09:03:29.834286 2024-09-11 09:03:29.834291 c9c7eb63-fdd0-49aa-bb4b-cd8f09d2d206 {"md5": "6ce753c109f11a33b4b65fd727242372", "pid": "978348168", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10126085-4", "source": "GND"}], "preferred_name": "Autorengruppe Scriptum", "country_associated": "gw", "date_of_establishment": "1998", "authorized_access_point": "Autorengruppe Scriptum", "biographical_information": ["Teilnehmer aus verschied. Generationen aktuell (2005): Dieter Bahr, Bollendorf; Monika Borsch, Wittlich; Maria Bernhardt, Daun; Jutta Federkeil, Bergweiler; Dominik Heintzen, Neuerburg; Margarethe Krieger, Enkirch; Marita Schlax, Wittlich; Helmuth Schleder, Hillesheim; hervorgegangen aus Teilnehmern der Seminarreihe \\"Worte aus der Stille\\" von Rüdiger Heins im Kloster Himmerod"]} 1 +2024-09-11 09:03:29.896549 2024-09-11 09:03:29.896555 73895029-7d34-4869-9b5f-a4fd94c1db6e {"md5": "a14aa231384ba02fe18ece84fde46f27", "pid": "978367316", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10126236-X", "source": "GND"}], "variant_name": ["Traveling Exhibition The Quiet Landscapes of William B. Post"], "preferred_name": "Exhibition The Quiet Landscapes of William B. Post", "country_associated": "xxu", "variant_access_point": ["Traveling Exhibition The Quiet Landscapes of William B. Post, 2005 - 2007, Minneapolis, Minn. u.a."], "authorized_access_point": "Exhibition The Quiet Landscapes of William B. Post, 2005 - 2007, Minneapolis, Minn. u.a."} 1 +2024-09-11 09:03:29.978545 2024-09-11 09:03:29.978548 016b9dea-6690-45ce-ac60-0ac0bb7f2772 {"md5": "00289f86e7190cd9e79b6eb23f851d94", "pid": "97845992X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10126833-6", "source": "GND"}], "variant_name": ["Konference Simts Gadu Kopā ar Vili Lāci", "Conference A Hundred Years Together with Vilis Lācis"], "preferred_name": "Konference 100 Gadu Kopā ar Vili Lāci", "variant_access_point": ["Konference Simts Gadu Kopā ar Vili Lāci, 2004, Rīga", "Conference A Hundred Years Together with Vilis Lācis, 2004, Rīga"], "authorized_access_point": "Konference 100 Gadu Kopā ar Vili Lāci, 2004, Rīga"} 1 +2024-09-11 09:03:30.040975 2024-09-11 09:03:30.040979 c9055c9c-eb2a-4ffa-91c5-267a232b5f01 {"md5": "e060fb919a5c80d93289f5fd11db98d1", "pid": "978499298", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10127100-1", "source": "GND"}], "variant_name": ["Karlsruher Kongress Kinder Bewegen, 1"], "preferred_name": "Kongress Kinder Bewegen, 1", "variant_access_point": ["Karlsruher Kongress Kinder Bewegen, 1, 2004, Karlsruhe"], "authorized_access_point": "Kongress Kinder Bewegen, 1, 2004, Karlsruhe"} 1 +2024-09-11 09:03:30.120592 2024-09-11 09:03:30.120596 00dafe86-12ca-4606-8cd0-386fd1855c30 {"md5": "f41e702ef666e55c12fb0fe5b12b6c40", "pid": "978581717", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10127812-3", "source": "GND"}], "variant_name": ["Timebandits Films"], "preferred_name": "Timebandits Films GmbH", "country_associated": "gw", "variant_access_point": ["Timebandits Films. Potsdam"], "authorized_access_point": "Timebandits Films GmbH. Potsdam"} 1 +2024-09-11 09:03:30.18302 2024-09-11 09:03:30.183025 b24fe39e-bf6b-4d0e-ab96-37f0d01f8355 {"md5": "3617614fe8f3eeeaf13bd5eb955478b9", "pid": "978978862", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10132298-7", "source": "GND"}], "preferred_name": "Institut für Denkmalpflege der DDR. Arbeitsstelle", "authorized_access_point": "Institut für Denkmalpflege der DDR. Berlin, Ost. Arbeitsstelle. Halle (Saale)"} 1 +2024-09-11 09:03:30.25263 2024-09-11 09:03:30.252632 9e43cbf4-5de4-4907-97fb-27c9c8fd2575 {"md5": "06f0851085c28c69d8bc470e64d73f6f", "pid": "978983149", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3063359-X", "source": "GND"}], "variant_name": ["Scientific Conference Africa: Societies, Culture, Languages"], "preferred_name": "Naučnaja Konferencija Afrika: Obščestva, Kul'tury, Jazyki", "country_associated": "ru", "variant_access_point": ["Scientific Conference Africa: Societies, Culture, Languages, 2003, Sankt Petersburg"], "authorized_access_point": "Naučnaja Konferencija Afrika: Obščestva, Kul'tury, Jazyki, 2003, Sankt Petersburg"} 1 +2024-09-11 09:03:30.311564 2024-09-11 09:03:30.311567 a88c190b-8594-4c3e-b51e-a969ae55c7b5 {"md5": "cc6220412f4fbf6480cb988119fb6600", "pid": "979116791", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6052413-3", "source": "GND"}], "preferred_name": "Workshop on the Foundation of Middleware Technologies", "country_associated": "xxu", "authorized_access_point": "Workshop on the Foundation of Middleware Technologies, 2002, Irvine, Calif."} 1 +2024-09-11 09:03:30.368089 2024-09-11 09:03:30.368095 c7d9f301-4540-47bb-8020-fda14b07344d {"md5": "04979461226b1d6547590c95b9ccb589", "pid": "979117453", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6052482-0", "source": "GND"}], "preferred_name": "Archiving Conference, 2", "country_associated": "xxu", "authorized_access_point": "Archiving Conference, 2, 2005, Washington, DC"} 1 +2024-09-11 09:03:30.439906 2024-09-11 09:03:30.43991 edd910e8-f43b-4ca5-af6f-1f0e1fd6dcce {"md5": "13f66d1f004859d10f4fbf03c1cb0c6b", "pid": "979150949", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6509771-3", "source": "GND"}], "variant_name": ["Falk Symposium on Colitis: Diagnosis and Therapeutic Strategies"], "preferred_name": "Falk Symposium, 147", "country_associated": "xxk", "variant_access_point": ["Falk Symposium on Colitis: Diagnosis and Therapeutic Strategies, 2005, Birmingham"], "authorized_access_point": "Falk Symposium, 147, 2005, Birmingham"} 1 +2024-09-11 09:03:30.526591 2024-09-11 09:03:30.526596 659cd4ee-2b2b-4ea7-a2db-c12c251f2750 {"md5": "040caaf5fa5b6c3fa2e53fb75e08e4aa", "pid": "979243440", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10134047-3", "source": "GND"}], "preferred_name": "Ausstellung Max Ackermann - vom Gegenstand zur Abstraktion - die Jahre am Bodensee", "country_associated": "gw", "authorized_access_point": "Ausstellung Max Ackermann - vom Gegenstand zur Abstraktion - die Jahre am Bodensee, 2004, Konstanz"} 1 +2024-09-11 09:03:30.596497 2024-09-11 09:03:30.596501 3fd40c10-0d55-4460-a5e4-874aec720bbd {"md5": "bf08bb700c1930925246ad76fdd99b85", "pid": "979248566", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10134086-2", "source": "GND"}], "variant_name": ["Institut für Elektrotechnik und Informationstechnik", "Universität Paderborn. Fakultät für Elektrotechnik, Informatik und Mathematik. Institut für Elektrotechnik und Informationstechnik", "Universität Paderborn. Fakultät für Elektrotechnik, Informatik und Mathematik. Department of Electrical Engineering", "Universität Paderborn. Department of Electrical Engineering", "Department of Electrical Engineering"], "preferred_name": "Universität Paderborn. Institut für Elektrotechnik und Informationstechnik", "country_associated": "gw", "variant_access_point": ["Institut für Elektrotechnik und Informationstechnik. Paderborn", "Universität Paderborn. Fakultät für Elektrotechnik, Informatik und Mathematik. Institut für Elektrotechnik und Informationstechnik", "Universität Paderborn. Fakultät für Elektrotechnik, Informatik und Mathematik. Department of Electrical Engineering", "Universität Paderborn. Department of Electrical Engineering", "Department of Electrical Engineering. Paderborn"], "authorized_access_point": "Universität Paderborn. Institut für Elektrotechnik und Informationstechnik"} 1 +2024-09-11 09:03:30.655002 2024-09-11 09:03:30.655006 4f41e8fa-9254-4db3-96c1-fd5f22fc0102 {"md5": "a0df6b4eabc599d99c590cab729797cf", "pid": "979300649", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6509942-4", "source": "GND"}], "preferred_name": "Exhibition Fashion in Colors", "country_associated": "xxu", "authorized_access_point": "Exhibition Fashion in Colors, 2005 - 2006, New York, NY"} 1 +2024-09-11 09:03:30.711389 2024-09-11 09:03:30.711393 2eb4ee19-a7eb-461a-8454-ab1f979bbc72 {"md5": "21e41fc279b3bf78af383c9cd0907df0", "pid": "97935272X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10134696-7", "source": "GND"}], "variant_name": ["Cairn"], "preferred_name": "Cairn Energy Plc", "country_associated": "xxk", "variant_access_point": ["Cairn. Edinburgh"], "authorized_access_point": "Cairn Energy Plc. Edinburgh"} 1 +2024-09-11 09:03:31.436787 2024-09-11 09:03:31.436791 4dacec56-7210-4b08-a2ef-b4800fa22679 {"md5": "6a67b8942c726d156cc85e8380fe7fa7", "pid": "980433401", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10141761-5", "source": "GND"}], "preferred_name": "Foire", "authorized_access_point": "Foire, 1958, Belgrad"} 1 +2024-09-11 09:03:30.770259 2024-09-11 09:03:30.770262 17631918-c539-4205-892e-094985686cf3 {"md5": "e601dc5fff8b8f735d8074d2c8567d03", "pid": "979530083", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10135751-5", "source": "GND"}], "variant_name": ["Fondazione Casa di Oriani"], "preferred_name": "Ente Casa di Oriani", "country_associated": "it", "variant_access_point": ["Fondazione Casa di Oriani. Ravenna"], "authorized_access_point": "Ente Casa di Oriani. Ravenna"} 1 +2024-09-11 09:03:30.828395 2024-09-11 09:03:30.828397 67e3569d-6dd7-4567-a9ee-570cf88f9cf9 {"md5": "7857d2bb6e769f1f36abee6ecaecd605", "pid": "979571839", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6053641-X", "source": "GND"}], "variant_name": ["CEAS-KATnet Conference on Key Aerodynamic Technologies"], "preferred_name": "Conference on Key Aerodynamic Technologies", "country_associated": "gw", "variant_access_point": ["CEAS-KATnet Conference on Key Aerodynamic Technologies, 2005, Bremen"], "authorized_access_point": "Conference on Key Aerodynamic Technologies, 2005, Bremen"} 1 +2024-09-11 09:03:30.89952 2024-09-11 09:03:30.899523 99310141-680b-4d62-97dc-5fd97fc34704 {"md5": "625889774c404e68a2191d0175a6e253", "pid": "979582407", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3063656-5", "source": "GND"}], "preferred_name": "Weinbrennerei Scharlachberg", "country_associated": "gw", "authorized_access_point": "Weinbrennerei Scharlachberg. Bingen"} 1 +2024-09-11 09:03:30.962733 2024-09-11 09:03:30.962736 cd5d2cb5-ce6f-49e9-a17c-cb33826e169e {"md5": "39ab536f336abf93af837ea67921e0dd", "pid": "979721474", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10136752-1", "source": "GND"}], "variant_name": ["Internationale Fachausstellung für das Hotel-, Gaststättengewerbe und Konditorenhandwerk, 23", "International Trade Fair for the Hotel, Catering and Confectionery Trades, 23", "Salon Professionell International de l'Hôtellerie, de la Restauration et de la Pâtisserie, 23", "Fiera Internazionale Specializzata nell'Industria Alberghiera e Gastronomica e nell'Arte Dolciaria, 23"], "preferred_name": "Intergastra, 23", "country_associated": "gw", "variant_access_point": ["Internationale Fachausstellung für das Hotel-, Gaststättengewerbe und Konditorenhandwerk, 23, 2006, Stuttgart", "International Trade Fair for the Hotel, Catering and Confectionery Trades, 23, 2006, Stuttgart", "Salon Professionell International de l'Hôtellerie, de la Restauration et de la Pâtisserie, 23, 2006, Stuttgart", "Fiera Internazionale Specializzata nell'Industria Alberghiera e Gastronomica e nell'Arte Dolciaria, 23, 2006, Stuttgart"], "authorized_access_point": "Intergastra, 23, 2006, Stuttgart"} 1 +2024-09-11 09:03:31.02236 2024-09-11 09:03:31.022363 32565484-91c2-4914-9fcc-40c375ecc580 {"md5": "f450b47cc9dbdb326084c82410b1d968", "pid": "979910978", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6054776-5", "source": "GND"}], "preferred_name": "International Technical Automotive Conference", "authorized_access_point": "International Technical Automotive Conference, 2005, Dresden"} 1 +2024-09-11 09:03:31.078699 2024-09-11 09:03:31.078702 2def1056-9a8e-4f04-ae46-60deb054b584 {"md5": "486e3c05b59bc288cdbe2796e6f945ba", "pid": "980047277", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10139096-8", "source": "GND"}], "preferred_name": "Arbeitsgemeinschaft für Heimatpflege in Stadt- und Landkreis Liegnitz", "authorized_access_point": "Arbeitsgemeinschaft für Heimatpflege in Stadt- und Landkreis Liegnitz"} 1 +2024-09-11 09:03:31.134695 2024-09-11 09:03:31.1347 d89e5759-ee59-47ad-802b-2ef3592d5f0c {"md5": "ee95aa5e6f11c53a442d48df7bb4c8b3", "pid": "980202078", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6055638-9", "source": "GND"}], "variant_name": ["International Symposium on Recent Advances in Ceramic-Matrix Composites and Geopolymers"], "preferred_name": "International Symposium on Recent Advances in Ceramic Matrix Composites and Geopolymers", "country_associated": "xxu", "variant_access_point": ["International Symposium on Recent Advances in Ceramic-Matrix Composites and Geopolymers, 2005, Baltimore, Md."], "authorized_access_point": "International Symposium on Recent Advances in Ceramic Matrix Composites and Geopolymers, 2005, Baltimore, Md."} 1 +2024-09-11 09:03:31.192506 2024-09-11 09:03:31.19251 d31c0e13-025d-44b6-83be-88a9f0c0fe9f {"md5": "8db96013ba584d981bf6c079b7bbb940", "pid": "98022540X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10140247-8", "source": "GND"}], "preferred_name": "Bund Deutscher Baumschulen. Landesverband Weser-Ems", "country_associated": "gw", "authorized_access_point": "Bund Deutscher Baumschulen. Landesverband Weser-Ems"} 1 +2024-09-11 09:03:31.248239 2024-09-11 09:03:31.248243 b014ba48-cd46-4d7b-9443-4136abca3695 {"md5": "052cf2ac7ecbf8440ea7f88ee63bdf57", "pid": "980348749", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6511095-X", "source": "GND"}], "variant_name": ["HealthGrid 2006 Conference, 4"], "preferred_name": "HealthGrid Conference, 4", "country_associated": "sp", "variant_access_point": ["HealthGrid 2006 Conference, 4, 2006, Valencia"], "authorized_access_point": "HealthGrid Conference, 4, 2006, Valencia"} 1 +2024-09-11 09:03:31.303243 2024-09-11 09:03:31.303246 880e8b2c-a6d6-41dd-9570-3eff3a5a3c7d {"md5": "e2971e759421e274a312c1a3bf834915", "pid": "980351189", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3064016-7", "source": "GND"}], "preferred_name": "Ausstellung: Bo Bonfils, Per Arnoldi", "country_associated": "gw", "authorized_access_point": "Ausstellung: Bo Bonfils, Per Arnoldi, 1989, Essen"} 1 +2024-09-11 09:03:31.362404 2024-09-11 09:03:31.362407 3f7c9dfe-45ac-4930-866f-3bc209f317cd {"md5": "5fe5b94b9bf9539e5da9fc325ca5d35a", "pid": "980351952", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3064096-9", "source": "GND"}], "variant_name": ["DLF", "Délégation à la langue française"], "preferred_name": "Conférence intercantonale de l'instruction publique de la Suisse romande et du Tessin. Délégation à la langue française", "country_associated": "sz", "variant_access_point": ["DLF. Abkuerzung", "Délégation à la langue française"], "date_of_establishment": "2007", "authorized_access_point": "Conférence intercantonale de l'instruction publique de la Suisse romande et du Tessin. Délégation à la langue française"} 1 +2024-09-11 09:03:31.493104 2024-09-11 09:03:31.493109 818c76bf-4180-47a2-aa07-3e2d3ed2aa7f {"md5": "1f0e7a777c81c5a503a6108a86e8e86a", "pid": "980446775", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10141860-7", "source": "GND"}], "preferred_name": "Ausstellung Marie Raymond - Yves Klein", "country_associated": "gw", "authorized_access_point": "Ausstellung Marie Raymond - Yves Klein, 2006, Koblenz"} 1 +2024-09-11 09:03:31.553013 2024-09-11 09:03:31.553018 eeed0ce8-00f5-453c-b956-ad78eb56b446 {"md5": "98b6b226bcd70c7d94090c4ccc58202b", "pid": "980496705", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10142193-X", "source": "GND"}], "preferred_name": "Konzert- und Gastspieldirektion", "authorized_access_point": "Konzert- und Gastspieldirektion. Gera"} 1 +2024-09-11 09:03:31.611299 2024-09-11 09:03:31.611303 b36694ad-01c7-4fd9-8979-d02246c94574 {"md5": "db501353cb336a52732906a5a803145d", "pid": "980499607", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10142240-4", "source": "GND"}], "variant_name": ["Turnerschaft Achtzehnhundertfünfundneunzig"], "preferred_name": "Turnerschaft 1895", "country_associated": "gw", "variant_access_point": ["Turnerschaft Achtzehnhundertfünfundneunzig. Ober-Roden"], "authorized_access_point": "Turnerschaft 1895. Ober-Roden"} 1 +2024-09-11 09:03:31.670237 2024-09-11 09:03:31.670242 d3335221-d4b2-49e5-b821-54776859851c {"md5": "317939beeced9a158db0410199c6caad", "pid": "980601851", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10142953-8", "source": "GND"}], "preferred_name": "Verein für Geologie", "authorized_access_point": "Verein für Geologie. Saalfeld/Saale"} 1 +2024-09-11 09:03:31.728552 2024-09-11 09:03:31.728555 71017807-d4d1-4903-b4d3-a41a84c922ca {"md5": "8a5d5fda768ae96633b7f0213a4670bc", "pid": "980793017", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10144796-6", "source": "GND"}], "variant_name": ["Alonso-Balaguer i Arquitectos Asociados", "Alonso Balaguer i Arquitectes Associats", "Alonso-Balaguer y Arquitectos Asociados", "Alonso Balaguer i Arquitectes Associats", "Alonso, Luis", "Balaguer, Sergio", "Alonso Balaguer y Arquitectos Asociados", "Alonso, Balaguer i Arquitectes Associats", "ABAA", "Alonso, Balaguer y Arquitectos Asociados", "Alonso i Balaguer Arquitectes", "Alonso & Balaguer", "Alonso y Balaguer", "Alonso y Balaguer Arquitectos Asociados", "Alonso Balaguer"], "preferred_name": "Alonso Balaguer i Arquitectos Asociados", "country_associated": "sp", "variant_access_point": ["Alonso-Balaguer i Arquitectos Asociados. Barcelona", "Alonso Balaguer i Arquitectes Associats. Barcelona", "Alonso-Balaguer y Arquitectos Asociados", "Alonso Balaguer i Arquitectes Associats", "Alonso, Luis. Firma", "Balaguer, Sergio. Firma", "Alonso Balaguer y Arquitectos Asociados. Ehemalige Vorzugsbenennung SWD", "Alonso, Balaguer i Arquitectes Associats. Barcelona", "ABAA. Alonso, Balaguer i Arquitectes Associats, Barcelona", "Alonso, Balaguer y Arquitectos Asociados. Barcelona", "Alonso i Balaguer Arquitectes. Barcelona", "Alonso & Balaguer. Barcelona", "Alonso y Balaguer. Barcelona", "Alonso y Balaguer Arquitectos Asociados. Barcelona", "Alonso Balaguer. Barcelona"], "authorized_access_point": "Alonso Balaguer i Arquitectos Asociados. Barcelona", "biographical_information": ["Architekturbüro begründet von Luis Alonso und Sergi Balaguer; weitere Büros in Madrid, Granada und Dubai"]} 1 +2024-09-11 09:03:31.787863 2024-09-11 09:03:31.787868 dfc62c96-8831-491b-9ffc-53347130d8be {"md5": "e204c86545adc0d8c6ca516d811ccb75", "pid": "981031390", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6058091-4", "source": "GND"}], "variant_name": ["International Meeting on Boron Chemistry, 12", "International Conference on Boron Chemistry, 12"], "preferred_name": "IMEBORON, 12", "country_associated": "ja", "variant_access_point": ["International Meeting on Boron Chemistry, 12, 2005, Sendai", "International Conference on Boron Chemistry, 12, 2005, Sendai"], "authorized_access_point": "IMEBORON, 12, 2005, Sendai"} 1 +2024-09-11 09:03:31.845592 2024-09-11 09:03:31.845596 3e977ec1-ea64-4e5f-bba6-bf650f4476ae {"md5": "6612b4bc3ef292ece2ecd5737e7472ca", "pid": "981339794", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10148645-5", "source": "GND"}], "variant_name": ["ECIC, 17"], "preferred_name": "European Chemistry at Interfaces Conference, 17", "country_associated": "xxk", "variant_access_point": ["ECIC, 17, 2005, Loughborough"], "authorized_access_point": "European Chemistry at Interfaces Conference, 17, 2005, Loughborough"} 1 +2024-09-11 09:03:31.906547 2024-09-11 09:03:31.906552 b793cf69-e5aa-49b0-a8fa-c715720a18f9 {"md5": "4552c1f14eb4ca46b83b49d919b61bc7", "pid": "981426387", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10149238-8", "source": "GND"}], "preferred_name": "Tendence Lifestyle", "country_associated": "gw", "authorized_access_point": "Tendence Lifestyle, 2006, Frankfurt am Main"} 1 +2024-09-11 09:03:31.961264 2024-09-11 09:03:31.961269 76495e3f-20b5-4a90-9203-94f4a97b5fc0 {"md5": "a2c7b40ad7512583c8a19d9893a62ee1", "pid": "981607705", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10150687-9", "source": "GND"}], "variant_name": ["Stadt Saazer Hopfenbauverein in Saaz"], "preferred_name": "Stadt Saazer Hopfenbauverein", "variant_access_point": ["Stadt Saazer Hopfenbauverein in Saaz. Unveraenderte Form"], "authorized_access_point": "Stadt Saazer Hopfenbauverein", "biographical_information": ["Die Ortsangabe ist lt. Statut Bestandteil des Namens"]} 1 +2024-09-11 09:03:32.03926 2024-09-11 09:03:32.039262 47be3676-b680-48dd-8d59-5ce4743029ce {"md5": "5a1b044cc3a20642fab2528e25f76f33", "pid": "981642551", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10150926-1", "source": "GND"}], "preferred_name": "Witnessing of God's Love Foundation", "country_associated": "ne", "authorized_access_point": "Witnessing of God's Love Foundation", "biographical_information": ["Sitz: Eindhoven"]} 1 +2024-09-11 09:03:32.09622 2024-09-11 09:03:32.096222 7af202a3-91ac-41b7-9eb6-ed9713718772 {"md5": "3e205697e4705a76d59e6b1f9e2666ab", "pid": "981663753", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10151063-9", "source": "GND"}], "variant_name": ["TSC"], "preferred_name": "Texas Southmost College", "country_associated": "xxu", "variant_access_point": ["TSC. Abkuerzung"], "authorized_access_point": "Texas Southmost College. Brownsville, Tex."} 1 +2024-09-11 09:03:32.157187 2024-09-11 09:03:32.15719 1a4c6d92-e04f-4829-8bbb-c694e66bedf6 {"md5": "4c041d2ca48bf490d36023735e50fbd1", "pid": "981823866", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10152515-1", "source": "GND"}], "variant_name": ["Cecilienschule Verbunden mit Studienanstalt Realgymnasialer Richtung"], "preferred_name": "Cecilienschule Verbunden mit Studienanstalt Realgymnasialer Richtung", "variant_access_point": ["Cecilienschule Verbunden mit Studienanstalt Realgymnasialer Richtung. Berlin-Wilmersdorf"], "authorized_access_point": "Cecilienschule Verbunden mit Studienanstalt Realgymnasialer Richtung. Wilmersdorf"} 1 +2024-09-11 09:03:32.214478 2024-09-11 09:03:32.214481 60380d4b-5e12-4ba6-a719-6edc481cca7a {"md5": "91767ee618aba492e0e9c4c4ec47690b", "pid": "981883427", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6060089-5", "source": "GND"}], "variant_name": ["Brandenburg. Hoff-Raths Canzley", "Hoch-Fürstlich Brandenburgische Hoff-Raths Canzley", "Hochfürstlich Brandenburgische Hofrats-Kanzlei", "Brandenburg. Canzley", "Brandenburg. Kanzlei", "Fürstliche Canzley", "Fürstliche Kanzlei", "Brandenburg. Hofrats-Kanzlei"], "preferred_name": "Brandenburg. Hofrats-Kanzlei", "variant_access_point": ["Brandenburg. Hoff-Raths Canzley", "Hoch-Fürstlich Brandenburgische Hoff-Raths Canzley", "Hochfürstlich Brandenburgische Hofrats-Kanzlei", "Brandenburg. Canzley", "Brandenburg. Kanzlei", "Fürstliche Canzley. Brandenburg", "Fürstliche Kanzlei. Brandenburg", "Brandenburg. Staat. Hofrats-Kanzlei. Alte Ansetzungsform"], "authorized_access_point": "Brandenburg. Hofrats-Kanzlei"} 1 +2024-09-11 09:03:32.269456 2024-09-11 09:03:32.269459 dbaac732-84b8-481a-af4b-a98db8f7b186 {"md5": "c6a98a0278c80dff8efaf39a0c81d89b", "pid": "98195314X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10153383-4", "source": "GND"}], "variant_name": ["Herschel Society"], "preferred_name": "William Herschel Society", "country_associated": "xxk", "variant_access_point": ["Herschel Society"], "authorized_access_point": "William Herschel Society"} 1 +2024-09-11 09:03:32.326182 2024-09-11 09:03:32.326187 5db806b5-89c7-41c9-8906-3ca5b95f0f02 {"md5": "2de1c4b5e04973238fe5c7977591aabf", "pid": "981996833", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6060233-8", "source": "GND"}], "preferred_name": "Freiwillige Feuerwehr", "country_associated": "gw", "authorized_access_point": "Freiwillige Feuerwehr. Brietlingen"} 1 +2024-09-11 09:03:32.380256 2024-09-11 09:03:32.380258 40b0dc26-3a6a-46e8-8183-0d7739f0029b {"md5": "537a5b2176c5cb4e53e927eadf9a7485", "pid": "98208823X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6513311-0", "source": "GND"}], "variant_name": ["FAS"], "preferred_name": "Fédération Française des Associations d'Actionnaires Salariés et Anciens Salariés", "country_associated": "fr", "variant_access_point": ["FAS. Abkuerzung"], "authorized_access_point": "Fédération Française des Associations d'Actionnaires Salariés et Anciens Salariés"} 1 +2024-09-11 09:03:32.437933 2024-09-11 09:03:32.437938 4afd425d-da5f-4c6b-a891-12e8762eafda {"md5": "6b12a38dc068d0f4df7966742c8bbdd4", "pid": "982492855", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10156973-7", "source": "GND"}], "preferred_name": "BBV", "country_associated": "gw", "authorized_access_point": "BBV. Hagen"} 1 +2024-09-11 09:03:32.493152 2024-09-11 09:03:32.493156 5aad608e-47ba-459a-b7f0-2d47b6addfec {"md5": "37a9e39b88342beb83c7b7543c1d11a9", "pid": "982514050", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10157263-3", "source": "GND"}], "preferred_name": "Tag der Brandenburgischen Orts- und Landesgeschichte, 1", "country_associated": "gw", "authorized_access_point": "Tag der Brandenburgischen Orts- und Landesgeschichte, 1, 2005, Potsdam"} 1 +2024-09-11 09:03:32.556348 2024-09-11 09:03:32.556353 67dccde8-cbd7-4ee6-8a6d-ab705fd40de3 {"md5": "31d484da1cb8b433fd62229e4565cf65", "pid": "982653166", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10158210-9", "source": "GND"}], "variant_name": ["JGSG"], "preferred_name": "Japangast Study Group", "country_associated": "ja", "variant_access_point": ["JGSG. Abkuerzung"], "authorized_access_point": "Japangast Study Group"} 1 +2024-09-11 09:03:32.615715 2024-09-11 09:03:32.615719 d314f7c5-1587-4236-b8ef-c02b7631e66f {"md5": "c07798daa15c540e691f9a1bba633c06", "pid": "982910592", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10159969-9", "source": "GND"}], "variant_name": ["Hàn-bǎo-zhǔ-Shang-hǎi-lián-luō-chū", "Hanbao-zhu-Shanghai-lianluochu"], "preferred_name": "Hamburg Liaison Office", "country_associated": "gw", "variant_access_point": ["Hàn-bǎo-zhǔ-Shang-hǎi-lián-luō-chū", "Hanbao-zhu-Shanghai-lianluochu"], "authorized_access_point": "Hamburg Liaison Office. Schanghai", "biographical_information": ["\\"Das Hamburg Liaison Office Shanghai ist die offizielle Vertretung der Freien und Hansestadt Hamburg in China.\\""]} 1 +2024-09-11 09:03:32.671643 2024-09-11 09:03:32.671647 a1ed7152-41fb-4951-a90d-a5f2fe174db2 {"md5": "66bed9f85723be0d06241c8f9e940304", "pid": "982913656", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10160020-3", "source": "GND"}], "preferred_name": "Fachtagungen Holzbau", "country_associated": "gw", "authorized_access_point": "Fachtagungen Holzbau, 2006, Leinfelden-Echterdingen"} 1 +2024-09-11 09:03:32.727688 2024-09-11 09:03:32.727692 3a37cf50-3f89-46be-b5de-a36e957d5868 {"md5": "f5baa8ab98b65278f53cc8ef5c74d974", "pid": "982939477", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10160218-2", "source": "GND"}], "preferred_name": "Seminario Hacia una Mayor Eficacia de las Resoluciones Judiciales en la Unión Europea en Materia Patrimonial, 1", "country_associated": "sp", "authorized_access_point": "Seminario Hacia una Mayor Eficacia de las Resoluciones Judiciales en la Unión Europea en Materia Patrimonial, 1, 2005, Sevilla"} 1 +2024-09-11 09:03:34.078449 2024-09-11 09:03:34.078453 24ed89fa-ce28-48ba-813d-023f2563690f {"md5": "436461adddf68460e8ffeb5137e7b5a7", "pid": "98474309X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10173071-8", "source": "GND"}], "preferred_name": "Exhibition Think with the Senses - Feel with the Mind: Art in the Present Tense", "country_associated": "it", "authorized_access_point": "Exhibition Think with the Senses - Feel with the Mind: Art in the Present Tense, 2007, Venedig"} 1 +2024-09-11 09:03:32.787634 2024-09-11 09:03:32.78764 34581c2c-9ff4-4f6c-8992-ca0a12fcfe81 {"md5": "5e5f53b76cc49a51e928d10983b6810b", "pid": "982961308", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6061967-3", "source": "GND"}], "variant_name": ["Industrieverband für Bausysteme im Metallleichtbau e.V.", "IFBS"], "preferred_name": "Industrieverband für Bausysteme im Metallleichtbau", "country_associated": "gw", "date_of_termination": "05.05.2011", "variant_access_point": ["Industrieverband für Bausysteme im Metallleichtbau e.V.. Unveraenderte Form", "IFBS. Abkuerzung"], "date_of_establishment": "12.04.2005", "authorized_access_point": "Industrieverband für Bausysteme im Metallleichtbau"} 1 +2024-09-11 09:03:32.862744 2024-09-11 09:03:32.862747 431d78f8-5bad-4fcf-a5e6-7988c074ec63 {"md5": "a9226563e27576ce9a77903991bd5eb3", "pid": "982994818", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10160599-7", "source": "GND"}], "preferred_name": "Fachtagung Technische Kunststoffe - Leistungspotenziale und Trends", "country_associated": "gw", "authorized_access_point": "Fachtagung Technische Kunststoffe - Leistungspotenziale und Trends, 2006, Würzburg"} 1 +2024-09-11 09:03:32.933235 2024-09-11 09:03:32.933239 c1110667-47b7-4430-8581-7d9cb2a233f2 {"md5": "f4875ef209ea627c32ea5633a383d233", "pid": "983050538", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10160979-6", "source": "GND"}], "preferred_name": "Wasserversorgungsverband Kappel-Grafenhausen-Rust", "country_associated": "gw", "authorized_access_point": "Wasserversorgungsverband Kappel-Grafenhausen-Rust"} 1 +2024-09-11 09:03:32.991581 2024-09-11 09:03:32.991585 1f322b43-c618-4900-a23f-defc1159131a {"md5": "60dc869260f2bb0667a8e2710d3df599", "pid": "983491550", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6514887-3", "source": "GND"}], "variant_name": ["DTB"], "preferred_name": "Dialog Textil-Bekleidung", "country_associated": "gw", "variant_access_point": ["DTB. Abkuerzung"], "authorized_access_point": "Dialog Textil-Bekleidung. Heimstetten"} 1 +2024-09-11 09:03:33.05154 2024-09-11 09:03:33.051543 8c5202c0-0739-4783-b5e4-25f521f7d33b {"md5": "9c61ce4ccdb9b1c8a9a6754339d97c0e", "pid": "983615543", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6515052-1", "source": "GND"}], "variant_name": ["Medicine Meets Virtual Reality Conference, 15"], "preferred_name": "MMVR, 15", "country_associated": "xxu", "variant_access_point": ["Medicine Meets Virtual Reality Conference, 15, 2007, Long Beach, Calif."], "authorized_access_point": "MMVR, 15, 2007, Long Beach, Calif."} 1 +2024-09-11 09:03:33.114479 2024-09-11 09:03:33.114482 88e7eff1-afac-409e-84d5-fbcee0a2101e {"md5": "622d2ab44090060ca0a852c3aac4c260", "pid": "983662215", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10165334-7", "source": "GND"}], "variant_name": ["Studiengang AV-Medienwissenschaft", "Hochschule für Film und Fernsehen \\"Konrad Wolf\\". AV-Medienwissenschaft"], "preferred_name": "Hochschule für Film und Fernsehen \\"Konrad Wolf\\". Studiengang AV-Medienwissenschaft", "country_associated": "gw", "variant_access_point": ["Studiengang AV-Medienwissenschaft", "Hochschule für Film und Fernsehen \\"Konrad Wolf\\". AV-Medienwissenschaft"], "authorized_access_point": "Hochschule für Film und Fernsehen \\"Konrad Wolf\\". Studiengang AV-Medienwissenschaft"} 1 +2024-09-11 09:03:33.180803 2024-09-11 09:03:33.180806 40c8517c-d75c-464d-b623-639ecfbec20e {"md5": "f8c32f05880222b4ab5d0a986f7f59dc", "pid": "98379314X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10166262-2", "source": "GND"}], "variant_name": ["SPD-Ortsverein Aspach-Kirchberg", "SPD Aspach-Kirchberg"], "preferred_name": "Sozialdemokratische Partei Deutschlands. Ortsverein Aspach-Kirchberg", "country_associated": "gw", "variant_access_point": ["SPD-Ortsverein Aspach-Kirchberg", "SPD Aspach-Kirchberg"], "date_of_establishment": "1985", "authorized_access_point": "Sozialdemokratische Partei Deutschlands. Ortsverein Aspach-Kirchberg"} 1 +2024-09-11 09:03:33.240423 2024-09-11 09:03:33.240426 e61c7ece-8b04-47d2-83eb-dade9e93ba69 {"md5": "12ec1d0e63a451db629a368f345c84d6", "pid": "983910138", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10167372-3", "source": "GND"}], "preferred_name": "Ausstellung Steffen Junghans - Fotografien", "country_associated": "gw", "authorized_access_point": "Ausstellung Steffen Junghans - Fotografien, 2006 - 2007, Goch"} 1 +2024-09-11 09:03:33.296523 2024-09-11 09:03:33.296527 5bc4df35-dbdf-47cb-9cfe-f06548ae3d1f {"md5": "1da1cdb2ff375335fea983a97cf1596e", "pid": "984022686", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10168143-4", "source": "GND"}], "variant_name": ["International Workshop on Underwater Networks, 1", "Workshop on Underwater Networks, 1"], "preferred_name": "WUWNet, 1", "country_associated": "xxu", "variant_access_point": ["International Workshop on Underwater Networks, 1, 2006, Los Angeles, Calif.", "Workshop on Underwater Networks, 1, 2006, Los Angeles, Calif."], "authorized_access_point": "WUWNet, 1, 2006, Los Angeles, Calif."} 1 +2024-09-11 09:03:33.356032 2024-09-11 09:03:33.356035 173d69c2-922c-4e23-997e-f8877de7b6b1 {"md5": "3c456e5253010b1b2327b2099dcf5a0b", "pid": "984092862", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10168794-1", "source": "GND"}], "variant_name": ["Festival für Zeitgenössische Videokunst, 11"], "preferred_name": "Videonale, 11", "country_associated": "gw", "variant_access_point": ["Festival für Zeitgenössische Videokunst, 11, 2007, Bonn"], "authorized_access_point": "Videonale, 11, 2007, Bonn"} 1 +2024-09-11 09:03:33.415164 2024-09-11 09:03:33.415167 b0bf1d34-22c9-44b0-a740-629c56c990b7 {"md5": "253dc1c0d86d71b184ce7749da7be3af", "pid": "984302190", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6515675-4", "source": "GND"}], "preferred_name": "International Gemological Symposium, 4", "country_associated": "xxu", "authorized_access_point": "International Gemological Symposium, 4, 2006, San Diego, Calif."} 1 +2024-09-11 09:03:33.476449 2024-09-11 09:03:33.476454 abc9e737-cd90-4dbb-96c3-28a8eddb9ffe {"md5": "e7627c81ac5ab65eb58ea7b56cfb3a86", "pid": "984368728", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10170361-2", "source": "GND"}], "preferred_name": "King Sejong Memorial Society", "country_associated": "ko", "authorized_access_point": "King Sejong Memorial Society"} 1 +2024-09-11 09:03:33.545882 2024-09-11 09:03:33.545885 d8f589d7-e5ec-4c56-b811-b4e4a2123b2b {"md5": "a1207ee224d704e8a3cf750708a509b7", "pid": "984403922", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6515733-3", "source": "GND"}], "variant_name": ["Forschungsgesellschaft für Strassen- und Verkehrswesen. Arbeitsausschuss Theoretische Grundlagen des Straßenverkehrs. Arbeitskreis Mikroskopische Verkehrsflusssimulationsmodelle", "Arbeitskreis Mikroskopische Verkehrsflusssimulationsmodelle"], "preferred_name": "Forschungsgesellschaft für Strassen- und Verkehrswesen. Arbeitskreis Mikroskopische Verkehrsflusssimulationsmodelle", "country_associated": "gw", "variant_access_point": ["Forschungsgesellschaft für Strassen- und Verkehrswesen. Arbeitsausschuss Theoretische Grundlagen des Straßenverkehrs. Arbeitskreis Mikroskopische Verkehrsflusssimulationsmodelle", "Arbeitskreis Mikroskopische Verkehrsflusssimulationsmodelle"], "authorized_access_point": "Forschungsgesellschaft für Strassen- und Verkehrswesen. Arbeitskreis Mikroskopische Verkehrsflusssimulationsmodelle"} 1 +2024-09-11 09:03:33.63802 2024-09-11 09:03:33.638022 63a5a2f7-4ee7-488e-be98-c953b5c6ab80 {"md5": "141b41f3316ec3fc32d2c43df93e8fd5", "pid": "984432779", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10170713-7", "source": "GND"}], "variant_name": ["Abteilung für Ur- und Frühgeschichtliche Bodendenkmalpflege", "Abteilung für Bodendenkmalpflege"], "preferred_name": "Niedersächsisches Landesmuseum Hannover. Abteilung für Ur- und Frühgeschichtliche Bodendenkmalpflege", "country_associated": "gw", "date_of_termination": "1964", "variant_access_point": ["Abteilung für Ur- und Frühgeschichtliche Bodendenkmalpflege", "Abteilung für Bodendenkmalpflege"], "date_of_establishment": "1961", "authorized_access_point": "Niedersächsisches Landesmuseum Hannover. Abteilung für Ur- und Frühgeschichtliche Bodendenkmalpflege"} 1 +2024-09-11 09:03:33.691084 2024-09-11 09:03:33.691089 eb3b92a8-c6a5-4109-a099-49c3d7d2a0e8 {"md5": "424c9fbf203ec2c5979fc32a62f08e30", "pid": "984443711", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10170785-X", "source": "GND"}], "variant_name": ["Maryland Province of the Society of Jesus", "Jesuiten. Provincia Marylandiae", "Provincia Marylandiae Societatis Jesu", "Jesuiten. Provinz Maryland"], "preferred_name": "Jesuiten. Maryland Province", "country_associated": "xxu", "date_of_termination": "31.07.2020", "variant_access_point": ["Maryland Province of the Society of Jesus", "Jesuiten. Provincia Marylandiae", "Provincia Marylandiae Societatis Jesu", "Jesuiten. Provinz Maryland"], "date_of_establishment": "XX.XX.1943", "authorized_access_point": "Jesuiten. Maryland Province", "biographical_information": ["Jesuiten-Provinz 1833 gegründet, 1879 New York von der New York-Canada Mission angeschlossen, 1943 New York Province abgetrennt, Sitz Towson. 2020 wurden die USA Northeast Provinces und die Maryland Province unter neu gegründeten USA East Province of the Society of Jesus fusioniert."]} 1 +2024-09-11 09:03:33.747515 2024-09-11 09:03:33.747519 1685d420-22c1-4315-86ba-9b58bdee45cb {"md5": "118ca20c168f984749cd576ed7a87d8e", "pid": "984455655", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10170907-9", "source": "GND"}], "variant_name": ["Landesanstalt für Umwelt, Messungen und Naturschutz Baden-Württemberg. Referat Fließgewässer, Integrierter Gewässerschutz. Projektgruppe WRRL", "Projektgruppe WRRL"], "preferred_name": "Landesanstalt für Umwelt, Messungen und Naturschutz Baden-Württemberg. Projektgruppe WRRL", "country_associated": "gw", "variant_access_point": ["Landesanstalt für Umwelt, Messungen und Naturschutz Baden-Württemberg. Referat Fließgewässer, Integrierter Gewässerschutz. Projektgruppe WRRL", "Projektgruppe WRRL"], "authorized_access_point": "Landesanstalt für Umwelt, Messungen und Naturschutz Baden-Württemberg. Projektgruppe WRRL", "biographical_information": ["WRRL: Wasserrahmenrichtlinie"]} 1 +2024-09-11 09:03:33.801117 2024-09-11 09:03:33.801122 46a283c2-5878-4eaf-815b-f29e5a04ee46 {"md5": "79c47640130722209a6de61339937cc3", "pid": "984645454", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10172100-6", "source": "GND"}], "preferred_name": "Symposium zur Strukturberichterstattung", "country_associated": "gw", "authorized_access_point": "Symposium zur Strukturberichterstattung, 1984, Frankfurt, Main"} 1 +2024-09-11 09:03:33.852485 2024-09-11 09:03:33.852488 5d7f52cc-7ab3-433b-9487-d8b2310d7de1 {"md5": "50507991f06b363e99ae0f11327ed24c", "pid": "984649220", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10172173-0", "source": "GND"}], "variant_name": ["SPD-Kreisverband Ostalb", "SPD Ostalbkreis"], "preferred_name": "Sozialdemokratische Partei Deutschlands. Kreisverband Ostalb", "country_associated": "gw", "variant_access_point": ["SPD-Kreisverband Ostalb", "SPD Ostalbkreis"], "authorized_access_point": "Sozialdemokratische Partei Deutschlands. Kreisverband Ostalb"} 1 +2024-09-11 09:03:33.910295 2024-09-11 09:03:33.910299 71b20119-35ed-4294-901c-aaf27ef1ba48 {"md5": "b4b39946ba6e5d322e1a997b81166f70", "pid": "984661956", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10172239-4", "source": "GND"}], "variant_name": ["Fortbildungs-Lehrgang in Bad Nauheim, 6"], "preferred_name": "Fortbildungslehrgang in Bad Nauheim, 6", "variant_access_point": ["Fortbildungs-Lehrgang in Bad Nauheim, 6, 1929, Bad Nauheim"], "authorized_access_point": "Fortbildungslehrgang in Bad Nauheim, 6, 1929, Bad Nauheim"} 1 +2024-09-11 09:03:33.963122 2024-09-11 09:03:33.963126 da413a75-1b2d-479e-9cee-6ab2eb7a950b {"md5": "080641a58eb491fb9001b03ebca87fbc", "pid": "984695303", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10172573-5", "source": "GND"}], "variant_name": ["CPS"], "preferred_name": "Centro Promozioni e Servizi", "country_associated": "it", "variant_access_point": ["CPS. Abkuerzung"], "authorized_access_point": "Centro Promozioni e Servizi. Arezzo"} 1 +2024-09-11 09:03:34.018088 2024-09-11 09:03:34.018093 b878a867-ed02-4821-9254-6f483a561c6d {"md5": "49fdaf0a1214a87897367eff01ee2895", "pid": "984725180", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6065436-3", "source": "GND"}], "preferred_name": "Vereinsbank in Hamburg. Filiale Cuxhaven", "country_associated": "gw", "date_of_establishment": "1897", "authorized_access_point": "Vereinsbank in Hamburg. Filiale Cuxhaven"} 1 +2024-09-11 09:03:34.134714 2024-09-11 09:03:34.13472 00c2928b-d7c0-494c-8b95-8974b500348f {"md5": "ff6b1493e5e8576d504f4ac8d5525aaa", "pid": "984864059", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10173888-2", "source": "GND"}], "variant_name": ["Politechnika Łódzka. Faculty of Electrical, Electronic, Computer and Control Engineering", "Wydział Elektrotechniki, Elektroniki, Informatyki i Automatyki", "Faculty of Electrical, Electronic, Computer and Control Engineering"], "preferred_name": "Politechnika Łódzka. Wydział Elektrotechniki, Elektroniki, Informatyki i Automatyki", "country_associated": "pl", "variant_access_point": ["Politechnika Łódzka. Faculty of Electrical, Electronic, Computer and Control Engineering", "Wydział Elektrotechniki, Elektroniki, Informatyki i Automatyki", "Faculty of Electrical, Electronic, Computer and Control Engineering"], "authorized_access_point": "Politechnika Łódzka. Wydział Elektrotechniki, Elektroniki, Informatyki i Automatyki"} 1 +2024-09-11 09:03:34.194312 2024-09-11 09:03:34.194316 8c433719-c573-4cb8-99a4-f0e0a194df02 {"md5": "ff1683f4e929a6f4ae7ca701d1a59d89", "pid": "984972498", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10174879-6", "source": "GND"}], "variant_name": ["Regionalmuseum", "Regionalmuseum BFH", "Regionalmuseum im Schloss", "Regionalmuseum im Schloß Bad Frankenhausen", "Regionalmuseum im Schloss zu Bad Frankenhausen"], "preferred_name": "Regionalmuseum Bad Frankenhausen", "country_associated": "gw", "variant_access_point": ["Regionalmuseum. Bad Frankenhausen (Kyffhäuser)", "Regionalmuseum BFH", "Regionalmuseum im Schloss", "Regionalmuseum im Schloß Bad Frankenhausen", "Regionalmuseum im Schloss zu Bad Frankenhausen"], "date_of_establishment": "2006", "authorized_access_point": "Regionalmuseum Bad Frankenhausen"} 1 +2024-09-11 09:03:34.246467 2024-09-11 09:03:34.24647 7b910850-2052-4459-bd42-9d44c1134a4c {"md5": "a065664796cdfeb7888afeb59ec9279b", "pid": "98510421X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10176181-8", "source": "GND"}], "preferred_name": "Harvard Celtic Colloquium, 16", "authorized_access_point": "Harvard Celtic Colloquium, 16, 1996 - 17, 1997"} 1 +2024-09-11 09:03:34.302627 2024-09-11 09:03:34.302631 4a817946-ccbb-4b0a-b42b-4fd89db31c21 {"md5": "610ea2526b0705d482ce118f93739c97", "pid": "985110783", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10176230-6", "source": "GND"}], "preferred_name": "Pipeline", "country_associated": "gw", "authorized_access_point": "Pipeline", "biographical_information": ["Duo Tom Hake u. Dermot Hyde. Folkmusik d. brit. Inseln"]} 1 +2024-09-11 09:03:34.35837 2024-09-11 09:03:34.358373 2bebd0be-ea55-42f8-81a2-61517bf385fc {"md5": "b2e136175ea5cf83f182c8f9b4f261f4", "pid": "985307358", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6066559-2", "source": "GND"}], "variant_name": ["Ryerson University. Faculty of Engineering, Architecture and Science. Department of Mechanical and Industrial Engineering"], "preferred_name": "Ryerson University. Department of Mechanical and Industrial Engineering", "country_associated": "xxc", "variant_access_point": ["Ryerson University. Faculty of Engineering, Architecture and Science. Department of Mechanical and Industrial Engineering"], "authorized_access_point": "Ryerson University. Department of Mechanical and Industrial Engineering"} 1 +2024-09-11 09:03:34.410301 2024-09-11 09:03:34.410306 e313e5ca-e59a-4138-b5f8-0441f4d11782 {"md5": "b6c110082b1e133f7e66baff71c828c0", "pid": "985554134", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6067120-8", "source": "GND"}], "preferred_name": "Kystverket", "country_associated": "no", "authorized_access_point": "Kystverket. Ålesund"} 1 +2024-09-11 09:03:34.462229 2024-09-11 09:03:34.462234 965ca8d4-766b-483a-adad-64c144261998 {"md5": "fb47a92dc5bc01acbcc2c66aa6163d9b", "pid": "985729414", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10181313-2", "source": "GND"}], "preferred_name": "Conference on Intersentential Pronominal Reference in Child and Adult Language", "authorized_access_point": "Conference on Intersentential Pronominal Reference in Child and Adult Language, 2006, Berlin"} 1 +2024-09-11 09:03:34.512558 2024-09-11 09:03:34.512563 74e2b313-3f6c-437c-a363-8fd9dd3571f8 {"md5": "f6f499e56ff49e90af822baa5b9799d1", "pid": "985808721", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6517421-5", "source": "GND"}], "variant_name": ["Wilhelm-Geissler-Ausstellung"], "preferred_name": "Ausstellung Wilhelm Geissler", "country_associated": "gw", "variant_access_point": ["Wilhelm-Geissler-Ausstellung, 1939, Düsseldorf"], "authorized_access_point": "Ausstellung Wilhelm Geissler, 1939, Düsseldorf"} 1 +2024-09-11 09:03:34.568611 2024-09-11 09:03:34.568615 3fc5dfb2-d473-4be5-a534-930eaa2b1481 {"md5": "3b6d07edfb54ccb4a68f88e4efb3a1f0", "pid": "985947179", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3067590-X", "source": "GND"}], "preferred_name": "Quadrolux", "country_associated": "gw", "authorized_access_point": "Quadrolux. Mainz", "biographical_information": ["Image- und Werbefilmfirma"]} 1 +2024-09-11 09:03:34.631546 2024-09-11 09:03:34.631551 987d48d8-0a38-4b69-b3f8-17713bbc9858 {"md5": "1e8bd28988ceeda4df4fe45846df9c7d", "pid": "986023647", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6517679-0", "source": "GND"}], "variant_name": ["Forschungsgesellschaft für Straßen- und Verkehrswesen. Arbeitsgruppe Verkehrsplanung. Arbeitskreis Qualitätsmanagement in Verkehrsplanungsprozessen", "Arbeitskreis Qualitätsmanagement in Verkehrsplanungsprozessen"], "preferred_name": "Forschungsgesellschaft für Straßen- und Verkehrswesen. Arbeitskreis Qualitätsmanagement in Verkehrsplanungsprozessen", "country_associated": "gw", "variant_access_point": ["Forschungsgesellschaft für Straßen- und Verkehrswesen. Arbeitsgruppe Verkehrsplanung. Arbeitskreis Qualitätsmanagement in Verkehrsplanungsprozessen", "Arbeitskreis Qualitätsmanagement in Verkehrsplanungsprozessen"], "authorized_access_point": "Forschungsgesellschaft für Straßen- und Verkehrswesen. Arbeitskreis Qualitätsmanagement in Verkehrsplanungsprozessen"} 1 +2024-09-11 09:03:35.318761 2024-09-11 09:03:35.318765 42861c9a-ae81-483e-bef8-f0e284e12f1d {"md5": "9ffa2e9c2bce82efc520e68ef062a595", "pid": "987392964", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3068414-6", "source": "GND"}], "variant_name": ["Kabeltagung"], "preferred_name": "Fachkongress Netztechnik", "variant_access_point": ["Kabeltagung, 2007, Erfurt"], "authorized_access_point": "Fachkongress Netztechnik, 2007, Erfurt"} 1 +2024-09-11 09:03:34.692024 2024-09-11 09:03:34.692029 d09a4cbd-2b08-4a2a-a68b-83bba16d46b4 {"md5": "0851fe2d5783d5b1647b3901ea29b493", "pid": "986065692", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10184188-7", "source": "GND"}], "variant_name": ["Jugendwerk der Arbeiterwohlfahrt Kreisverband Grevenbroich", "Arbeiterwohlfahrt Kreisjugendwerk Grevenbroich", "AWO-Kreisjugendwerk Grevenbroich"], "preferred_name": "Kreisjugendwerk der Arbeiterwohlfahrt Grevenbroich", "country_associated": "gw", "variant_access_point": ["Jugendwerk der Arbeiterwohlfahrt Kreisverband Grevenbroich", "Arbeiterwohlfahrt Kreisjugendwerk Grevenbroich", "AWO-Kreisjugendwerk Grevenbroich"], "authorized_access_point": "Kreisjugendwerk der Arbeiterwohlfahrt Grevenbroich"} 1 +2024-09-11 09:03:34.751162 2024-09-11 09:03:34.751167 2fba4d6a-b9bf-4540-b90e-f7bb16b4a265 {"md5": "bba1006b52c848fc852dc00aa38a0468", "pid": "986091332", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10184459-1", "source": "GND"}], "preferred_name": "Verein der Freunde und Förderer des Städtischen Museums Simeonstift Trier", "country_associated": "gw", "authorized_access_point": "Verein der Freunde und Förderer des Städtischen Museums Simeonstift Trier"} 1 +2024-09-11 09:03:34.814351 2024-09-11 09:03:34.814354 16196bf2-0569-43c5-9b99-0622ad165be7 {"md5": "269840d40aaf8274bbfd6e88f0501cf0", "pid": "986092274", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10184466-9", "source": "GND"}], "preferred_name": "Kolloquium Ad Parnassum - auf dem Prüfstand. Kunsthistorische und Konservatorische Fragen Rund um ein Berühmtes Bild", "country_associated": "sz", "authorized_access_point": "Kolloquium Ad Parnassum - auf dem Prüfstand. Kunsthistorische und Konservatorische Fragen Rund um ein Berühmtes Bild, 2006, Bern"} 1 +2024-09-11 09:03:34.870656 2024-09-11 09:03:34.870659 8ccfb7d8-51c9-43b0-b4dd-37fdeeb963bf {"md5": "2fab32cbef81a864221e44dc4896b1ac", "pid": "986429740", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10187002-4", "source": "GND"}], "preferred_name": "Congreso El Laberinto de los Libros: Jorge Luis Borges Frente al Canon Literario", "authorized_access_point": "Congreso El Laberinto de los Libros: Jorge Luis Borges Frente al Canon Literario, 2004, Leipzig"} 1 +2024-09-11 09:03:34.924569 2024-09-11 09:03:34.924572 37713533-1ab7-4984-88bd-5da07384b71a {"md5": "e39f5ef3219e7ca7fafafe30979d4422", "pid": "986445649", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6068346-6", "source": "GND"}], "preferred_name": "Maria Zamora y sus Muchachos", "authorized_access_point": "Maria Zamora y sus Muchachos"} 1 +2024-09-11 09:03:34.982117 2024-09-11 09:03:34.98212 ea41f63d-ad30-4006-9979-923174d26251 {"md5": "9ede21ede857833a63ddbd6631aa6ed9", "pid": "986571148", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10187896-5", "source": "GND"}], "preferred_name": "Štencu̇v Grafický Kabinet", "authorized_access_point": "Štencu̇v Grafický Kabinet. Prag"} 1 +2024-09-11 09:03:35.03584 2024-09-11 09:03:35.035844 4102351f-1728-46b2-9051-1c34eeb7ac69 {"md5": "5e2a9edf59ce9b200d4c867fa66cd704", "pid": "986759805", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10189089-8", "source": "GND"}], "variant_name": ["Geschäftsbereich Bürgerdienste, Wahlamt", "Wolfsburg. GB Bürgerdienste, Wahlamt"], "preferred_name": "Wolfsburg. Geschäftsbereich Bürgerdienste, Wahlamt", "country_associated": "gw", "variant_access_point": ["Geschäftsbereich Bürgerdienste, Wahlamt. Wolfsburg", "Wolfsburg. GB Bürgerdienste, Wahlamt"], "authorized_access_point": "Wolfsburg. Geschäftsbereich Bürgerdienste, Wahlamt"} 1 +2024-09-11 09:03:35.097912 2024-09-11 09:03:35.097917 5d691fc9-046d-4e87-b85f-1ede700dacbf {"md5": "8fce0b9c827232d512b63dbf37d12096", "pid": "986792829", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10189363-2", "source": "GND"}], "variant_name": ["Bat-Sheva Seminar, 41"], "preferred_name": "Bat-Sheva Seminar, 41", "country_associated": "is", "variant_access_point": ["Bat-Sheva Seminar, 41, 1982, Kiryat Anavim"], "authorized_access_point": "Bat-Sheva Seminar, 41, 1982, Qiryat' Anavim"} 1 +2024-09-11 09:03:35.150498 2024-09-11 09:03:35.150502 3b15c122-a587-4638-a9d7-bda15eeb0b6f {"md5": "2e296c627123b8afa6892dcbe1598dd1", "pid": "986836400", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10189573-2", "source": "GND"}], "variant_name": ["Chorus of the Concertgebouw Orchestra", "Concertgebouw Chorus", "Chor des Concertgebouw Orchestra", "Choir of the Concertgebouw Orchestra"], "preferred_name": "Concertgebouworkest. Koor", "country_associated": "ne", "date_of_termination": "1988", "variant_access_point": ["Chorus of the Concertgebouw Orchestra. Amsterdam", "Concertgebouw Chorus. Amsterdam", "Chor des Concertgebouw Orchestra. Amsterdam", "Choir of the Concertgebouw Orchestra. Amsterdam"], "authorized_access_point": "Concertgebouworkest. Amsterdam. Koor"} 1 +2024-09-11 09:03:35.208617 2024-09-11 09:03:35.208623 05518852-e514-49eb-8401-83f18089a80a {"md5": "e04b64ab453cf0c3f942affe62378579", "pid": "98702115X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10190664-X", "source": "GND"}], "variant_name": ["Conference Behaviour of Pesticides in Air, Soil and Water, 8"], "preferred_name": "AGRO Conference Behaviour of Pesticides in Air, Soil and Water, 8", "country_associated": "gw", "variant_access_point": ["Conference Behaviour of Pesticides in Air, Soil and Water, 8, 2006, Frankfurt, Main"], "authorized_access_point": "AGRO Conference Behaviour of Pesticides in Air, Soil and Water, 8, 2006, Frankfurt, Main"} 1 +2024-09-11 09:03:35.268533 2024-09-11 09:03:35.268537 3a727168-0eaf-49e6-a23c-85727dd9d0e4 {"md5": "94cb413331058be999786605edf77964", "pid": "987073982", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10190958-5", "source": "GND"}], "variant_name": ["International Symposium on Hamiltonian Systems and Celestial Mechanics, 3"], "preferred_name": "HAMSYS, 3", "country_associated": "mx", "variant_access_point": ["International Symposium on Hamiltonian Systems and Celestial Mechanics, 3, 1998, Pátzcuaro"], "authorized_access_point": "HAMSYS, 3, 1998, Pátzcuaro"} 1 +2024-09-11 09:03:35.372475 2024-09-11 09:03:35.372479 0df45f6f-652f-4198-b24b-88f1cc26de7b {"md5": "0d9667fab99c96946353debb79864cf6", "pid": "987450816", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10194018-X", "source": "GND"}], "preferred_name": "Mostra di Grete Stern, Sogni", "country_associated": "it", "authorized_access_point": "Mostra di Grete Stern, Sogni, 2004, Ravello"} 1 +2024-09-11 09:03:35.42332 2024-09-11 09:03:35.423323 0dacfaa4-36db-411b-b5b4-ce1d78aaa3f9 {"md5": "c3ddab49e659cfd842095b7b2149fb64", "pid": "987500465", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10194399-4", "source": "GND"}], "preferred_name": "Technische Universität Braunschweig. Fachbereich für Chemie, Pharmazie und Biowissenschaften", "country_associated": "gw", "authorized_access_point": "Technische Universität Braunschweig. Fachbereich für Chemie, Pharmazie und Biowissenschaften"} 1 +2024-09-11 09:03:35.477752 2024-09-11 09:03:35.477757 6ad95d3a-f350-458f-b376-dd310ee3be73 {"md5": "33290831614bfa5d53546e59c1847f7d", "pid": "987545191", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6070191-2", "source": "GND"}], "variant_name": ["Museu da Universidade Federal do Rio Grande do Sul"], "preferred_name": "Universidade Federal do Rio Grande do Sul. Museu", "country_associated": "bl", "variant_access_point": ["Museu da Universidade Federal do Rio Grande do Sul"], "authorized_access_point": "Universidade Federal do Rio Grande do Sul. Museu"} 1 +2024-09-11 09:03:35.530107 2024-09-11 09:03:35.530112 a6b6078e-99f3-4fbe-857b-6356d949f0e2 {"md5": "8da71bbe7da3289cdb71dcc0abb6a230", "pid": "987612816", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10195317-3", "source": "GND"}], "variant_name": ["Dipartimento di lingue e letterature dei paesi del Mediterraneo"], "preferred_name": "Università degli studi di Trieste. Dipartimento di lingue e letterature dei paesi del Mediterraneo", "country_associated": "it", "variant_access_point": ["Dipartimento di lingue e letterature dei paesi del Mediterraneo. Università degli studi di Trieste"], "authorized_access_point": "Università degli studi di Trieste. Dipartimento di lingue e letterature dei paesi del Mediterraneo"} 1 +2024-09-11 09:03:35.583259 2024-09-11 09:03:35.583264 58c0a893-4891-4133-aad8-62d05ea9d4f7 {"md5": "6c6080893d4ef73b3279e8d35f5555c9", "pid": "987631365", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6070395-7", "source": "GND"}], "variant_name": ["BEL"], "preferred_name": "Baltodano, Echandi y Lara Ltda.", "country_associated": "cr", "variant_access_point": ["BEL. San José, Costa Rica"], "authorized_access_point": "Baltodano, Echandi y Lara Ltda.. San José, Costa Rica"} 1 +2024-09-11 09:03:35.635634 2024-09-11 09:03:35.635637 cd871fe1-5cd5-41ad-a8d7-76b27ec69e3d {"md5": "6216a49af62a51c3167a23c07840fa32", "pid": "987875418", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10197500-4", "source": "GND"}], "variant_name": ["Arbeitsgruppe Einbau, Betrieb, Wartung und Kontrolle von Grundstücksentwässerungsanlagen", "Deutsche Vereinigung für Wasserwirtschaft, Abwasser und Abfall. Fachausschuss Grundstücksentwässerung. Arbeitsgruppe Einbau, Betrieb, Wartung und Kontrolle von Grundstücksentwässerungsanlagen", "Deutsche Vereinigung für Wasserwirtschaft, Abwasser und Abfall. Arbeitsgruppe", "DWA-Arbeitsgruppe Einbau, Betrieb, Wartung und Kontrolle von Grundstücksentwässerungsanlagen", "DWA-Arbeitsgruppe"], "preferred_name": "Deutsche Vereinigung für Wasserwirtschaft, Abwasser und Abfall. Arbeitsgruppe Einbau, Betrieb, Wartung und Kontrolle von Grundstücksentwässerungsanlagen", "country_associated": "gw", "variant_access_point": ["Arbeitsgruppe Einbau, Betrieb, Wartung und Kontrolle von Grundstücksentwässerungsanlagen. Deutsche Vereinigung für Wasserwirtschaft, Abwasser und Abfall", "Deutsche Vereinigung für Wasserwirtschaft, Abwasser und Abfall. Fachausschuss Grundstücksentwässerung. Arbeitsgruppe Einbau, Betrieb, Wartung und Kontrolle von Grundstücksentwässerungsanlagen", "Deutsche Vereinigung für Wasserwirtschaft, Abwasser und Abfall. Arbeitsgruppe. ES 6 2", "DWA-Arbeitsgruppe Einbau, Betrieb, Wartung und Kontrolle von Grundstücksentwässerungsanlagen", "DWA-Arbeitsgruppe. ES 6 2"], "authorized_access_point": "Deutsche Vereinigung für Wasserwirtschaft, Abwasser und Abfall. Arbeitsgruppe Einbau, Betrieb, Wartung und Kontrolle von Grundstücksentwässerungsanlagen"} 1 +2024-09-11 09:03:35.68855 2024-09-11 09:03:35.688554 14155ce5-b0d4-4f9a-9f92-1f784dd1e426 {"md5": "aadde9274ce913baaf5df5f6f279d1bb", "pid": "987960148", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6519920-0", "source": "GND"}], "variant_name": ["Reise- und Impfmedizin-Symposium, 7"], "preferred_name": "Symposium Reise- und Impfmedizin, 7", "variant_access_point": ["Reise- und Impfmedizin-Symposium, 7, 2002, Berlin"], "authorized_access_point": "Symposium Reise- und Impfmedizin, 7, 2002, Berlin"} 1 +2024-09-11 09:03:35.743125 2024-09-11 09:03:35.74313 cb821eee-656b-487c-9f2a-629883305cdd {"md5": "b68306781a6def0f4c968cb2abf88a05", "pid": "988152819", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10199847-8", "source": "GND"}], "preferred_name": "Exhibition Karen Kilimnik", "country_associated": "xxu", "authorized_access_point": "Exhibition Karen Kilimnik, 2007 - 2008, Philadelphia, Pa. u.a."} 1 +2024-09-11 09:03:35.795057 2024-09-11 09:03:35.795061 ccaa37da-3f4b-40a6-8849-7f03d8233333 {"md5": "5c87aad350209e797073ca02ff1e36f9", "pid": "988280450", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10201037-7", "source": "GND"}], "variant_name": ["Provinzial-Säschische Genossenschaft", "Provinzial-Sächsische Genossenschaft des Johanniterordens"], "preferred_name": "Johanniterorden. Provinzial-Sächsische Genossenschaft", "country_associated": "gw", "variant_access_point": ["Provinzial-Säschische Genossenschaft", "Provinzial-Sächsische Genossenschaft des Johanniterordens. Unveraenderte Form"], "authorized_access_point": "Johanniterorden. Provinzial-Sächsische Genossenschaft"} 1 +2024-09-11 09:03:35.848354 2024-09-11 09:03:35.848358 be1e7c74-38d2-4b16-805e-5808a4869b5b {"md5": "65fd01b42db92b7da8a88903e2a21342", "pid": "988400162", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10201877-7", "source": "GND"}], "preferred_name": "Wissenschaftliche Arbeitstagung zu Fragen der Schumann-Forschung, 18", "authorized_access_point": "Wissenschaftliche Arbeitstagung zu Fragen der Schumann-Forschung, 18, 2005, Zwickau"} 1 +2024-09-11 09:03:35.957493 2024-09-11 09:03:35.957497 47db4411-9f10-408c-8d59-64f1df111510 {"md5": "5edfa27f17f5876e4843da0b9dc3a7cb", "pid": "98843802X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10202216-1", "source": "GND"}], "variant_name": ["Projektarbeitsgruppe Öffentlich Private Partnerschaften", "Projektarbeitsgruppe ÖPP der SPD-Bundestagsfraktion", "Projektarbeitsgruppe Öffentlich Private Partnerschaften der SPD-Bundestagsfraktion", "Deutschland. Deutscher Bundestag. Fraktion der SPD. Sozialdemokratische Gemeinschaft für Kommunalpolitik in der Bundesrepublik Deutschland. Projektarbeitsgruppe Öffentlich Private Partnerschaften"], "preferred_name": "Deutschland. Deutscher Bundestag. Fraktion der SPD. Projektarbeitsgruppe Öffentlich Private Partnerschaften", "country_associated": "gw", "variant_access_point": ["Projektarbeitsgruppe Öffentlich Private Partnerschaften", "Projektarbeitsgruppe ÖPP der SPD-Bundestagsfraktion", "Projektarbeitsgruppe Öffentlich Private Partnerschaften der SPD-Bundestagsfraktion. Unveraenderte Form", "Deutschland. Deutscher Bundestag. Fraktion der SPD. Sozialdemokratische Gemeinschaft für Kommunalpolitik in der Bundesrepublik Deutschland. Projektarbeitsgruppe Öffentlich Private Partnerschaften"], "authorized_access_point": "Deutschland. Deutscher Bundestag. Fraktion der SPD. Projektarbeitsgruppe Öffentlich Private Partnerschaften"} 1 +2024-09-11 09:03:36.012096 2024-09-11 09:03:36.012101 e1aeb1d5-5cc8-411c-a853-4800fe72d144 {"md5": "d8d31468b4ac1da54d694380aeb13e36", "pid": "988589125", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10203028-5", "source": "GND"}], "preferred_name": "Kult B", "country_associated": "bn", "authorized_access_point": "Kult B. Sarajevo"} 1 +2024-09-11 09:03:36.063291 2024-09-11 09:03:36.063295 e815bbd6-7ea5-4b30-86dd-4fe0a4d0fc6c {"md5": "8741abbd867b5bea2aae2ac18b740dc6", "pid": "989064859", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10344947-4", "source": "GND"}], "variant_name": ["Treffpunkt Ohr", "Deutscher Schwerhörigenbund. Treffpunkt Ohr - Verein für Besseres Hören"], "preferred_name": "Treffpunkt Ohr - Verein für Besseres Hören", "variant_access_point": ["Treffpunkt Ohr. Koblenz", "Deutscher Schwerhörigenbund. Treffpunkt Ohr - Verein für Besseres Hören. Koblenz"], "date_of_establishment": "1937", "authorized_access_point": "Treffpunkt Ohr - Verein für Besseres Hören. Koblenz"} 1 +2024-09-11 09:03:36.116118 2024-09-11 09:03:36.116122 039275ec-4f6d-4866-86e7-907eb0854c1e {"md5": "3a2397d0456048c143cd93d947e7c406", "pid": "989146731", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10345663-6", "source": "GND"}], "preferred_name": "Frauenverein zu Neustadt an der Haardt", "authorized_access_point": "Frauenverein zu Neustadt an der Haardt", "biographical_information": ["Vorlage von 1841"]} 1 +2024-09-11 09:03:36.167802 2024-09-11 09:03:36.167806 71486656-86bf-4437-9521-2de15ca9919b {"md5": "2fadbe75fe63bce4b95a7de0f91f20e3", "pid": "989224333", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10346382-3", "source": "GND"}], "preferred_name": "Congreso Internacional Ciudades Amuralladas", "country_associated": "sp", "authorized_access_point": "Congreso Internacional Ciudades Amuralladas, 2005, Pamplona"} 1 +2024-09-11 09:03:36.220101 2024-09-11 09:03:36.220104 8a18a41c-3b4c-4c20-9824-88a606d2d282 {"md5": "076af562c3d055eebfb85802d20549b1", "pid": "98940434X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6521091-8", "source": "GND"}], "variant_name": ["Bauaufsichtsamt"], "preferred_name": "Erlangen. Bauaufsichtsamt", "country_associated": "gw", "variant_access_point": ["Bauaufsichtsamt. Erlangen"], "authorized_access_point": "Erlangen. Bauaufsichtsamt"} 1 +2024-09-11 09:03:36.28133 2024-09-11 09:03:36.281333 ba9b224a-15d6-4053-b599-11198f54ab3d {"md5": "4b888e435d4b646e6b70ced8bd5d8a4e", "pid": "989409015", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10347980-6", "source": "GND"}], "preferred_name": "Ausstellung Michael Krebber, Pubertät in der Lehre", "country_associated": "gw", "authorized_access_point": "Ausstellung Michael Krebber, Pubertät in der Lehre, 2008, Köln"} 1 +2024-09-11 09:03:36.341887 2024-09-11 09:03:36.341892 55f4f2c7-bd0a-4617-8738-44a9902f0c58 {"md5": "4a382771e626330286dafef19b0da7c1", "pid": "989440583", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3069630-6", "source": "GND"}], "variant_name": ["Ev.-Luth. Heimstätte", "Ev.-Luth. Heimstätte", "Evangelisch-Lutherische Heimstätte"], "preferred_name": "Evangelisch-Lutherische Heimstätte", "country_associated": "gw", "variant_access_point": ["Ev.-Luth. Heimstätte. Jeggen", "Ev.-Luth. Heimstätte. Bissendorf-Jeggen", "Evangelisch-Lutherische Heimstätte. Bissendorf-Jeggen"], "authorized_access_point": "Evangelisch-Lutherische Heimstätte. Jeggen"} 1 +2024-09-11 09:03:36.396817 2024-09-11 09:03:36.396821 60b0e5f3-2c65-4ce5-93b9-eed91530e58e {"md5": "bf727c11c12967d6844b45c957e71a2b", "pid": "989523926", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10348807-8", "source": "GND"}], "preferred_name": "Agrarpädagogischer Studientag, 1", "country_associated": "au", "authorized_access_point": "Agrarpädagogischer Studientag, 1, 2005, Wien"} 1 +2024-09-11 09:03:36.455268 2024-09-11 09:03:36.455271 22a2190a-3438-449b-9026-c0ae49dfe28e {"md5": "ab8dc475b88cad750c74797fe78a2164", "pid": "989560279", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6072801-2", "source": "GND"}], "variant_name": ["OMEG, 10"], "preferred_name": "International Symposium on Origin of Matter and Evolution of Galaxies, 10", "country_associated": "ja", "variant_access_point": ["OMEG, 10, 2007, Sapporo"], "authorized_access_point": "International Symposium on Origin of Matter and Evolution of Galaxies, 10, 2007, Sapporo"} 1 +2024-09-11 09:03:37.177239 2024-09-11 09:03:37.177243 e432b6a2-5222-4238-8735-74261523cb93 {"md5": "aeb695444e56a616cedf8421785c8d02", "pid": "990335763", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10356239-4", "source": "GND"}], "preferred_name": "Samrealskolan och Kommunala Mellanskolan", "country_associated": "sw", "authorized_access_point": "Samrealskolan och Kommunala Mellanskolan. Sunne", "biographical_information": ["BSB-QK-Konversion; noch nicht redigiert."]} 1 +2024-09-11 09:03:36.512773 2024-09-11 09:03:36.512778 76bac198-353f-4442-be89-ee4a36b47e23 {"md5": "12ede41ef77185a9e136ff9c64c89087", "pid": "989655059", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10349931-3", "source": "GND"}], "variant_name": ["Exhibition Friederike von Rauch - Negentigdagenrotterdam", "Exhibition Friederike von Rauch - 90daysrotterdam", "Exhibition Friederike von Rauch - Ninetydaysrotterdam"], "preferred_name": "Exhibition Friederike von Rauch - 90dagenrotterdam", "country_associated": "be", "variant_access_point": ["Exhibition Friederike von Rauch - Negentigdagenrotterdam, 2007 - 2008, Brüssel", "Exhibition Friederike von Rauch - 90daysrotterdam, 2007 - 2008, Brüssel", "Exhibition Friederike von Rauch - Ninetydaysrotterdam, 2007 - 2008, Brüssel"], "authorized_access_point": "Exhibition Friederike von Rauch - 90dagenrotterdam, 2007 - 2008, Brüssel"} 1 +2024-09-11 09:03:36.569838 2024-09-11 09:03:36.569842 37a30a76-3a01-492b-8555-577b9a165513 {"md5": "2f53c994c64b0e13890919b5f90a2b4d", "pid": "989690350", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10350284-1", "source": "GND"}], "variant_name": ["Congrès National de Spéléologie, 12."], "preferred_name": "Nationaler Kongress für Höhlenforschung, 12.", "country_associated": "sz", "variant_access_point": ["Congrès National de Spéléologie, 12., 2007, Vallée de Joux"], "authorized_access_point": "Nationaler Kongress für Höhlenforschung, 12., 2007, Vallée de Joux"} 1 +2024-09-11 09:03:36.622626 2024-09-11 09:03:36.622629 c692f3f4-f72e-4b7a-a545-3f90b8718d7b {"md5": "9ecb3aa0957808e85bf80a9d46cf6795", "pid": "989782115", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10351076-X", "source": "GND"}], "preferred_name": "Bottega d'Arte Excelsior", "country_associated": "it", "authorized_access_point": "Bottega d'Arte Excelsior. Marina, Massa"} 1 +2024-09-11 09:03:36.678845 2024-09-11 09:03:36.678848 2fb74876-7b50-411b-8c4e-03720ee8d138 {"md5": "fd0a9ccea9bbde8f99aff52755acf38b", "pid": "989838420", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6072971-5", "source": "GND"}], "preferred_name": "Motorola GmbH", "country_associated": "gw", "authorized_access_point": "Motorola GmbH. Flensburg"} 1 +2024-09-11 09:03:36.739315 2024-09-11 09:03:36.739318 00483ba3-8db7-4ac4-add4-e1d398c4bf97 {"md5": "f1f504cc140b0f7f249b8c804725d306", "pid": "989943828", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10352515-4", "source": "GND"}], "preferred_name": "Exposición Grandes Lamas del Tíbet. El Arte del Retrato en Bronce. Siglos XIII - XIX", "country_associated": "sp", "authorized_access_point": "Exposición Grandes Lamas del Tíbet. El Arte del Retrato en Bronce. Siglos XIII - XIX, 2004 - 2005, Barcelona"} 1 +2024-09-11 09:03:36.802527 2024-09-11 09:03:36.802532 2e6573b6-4af8-4870-895a-adc2c3a59a4d {"md5": "1eb3b5e708d81a74339242c746b846e7", "pid": "990095320", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10353681-4", "source": "GND"}], "preferred_name": "International Geographical Congress, 31", "authorized_access_point": "International Geographical Congress, 31, 2008, Tūnis"} 1 +2024-09-11 09:03:36.869082 2024-09-11 09:03:36.869086 49fa5f31-594a-497f-9b75-649237d8b95f {"md5": "a2c7769b49aa1cd27facc3ec9e5cc4a8", "pid": "990184269", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10354509-8", "source": "GND"}], "variant_name": ["Naučno-Praktičeskij Seminar Problemy Istoriografii i Istočnikovedenija Istorii Rossijskich Nemcev", "Wissenschaftliches Seminar Probleme der Historiographie und der Quellenkunde der Geschichte von Russlanddeutschen"], "preferred_name": "Wissenschaftliches Seminar Probleme der Historiographie und Quelle der Russlanddeutschen Geschichte", "country_associated": "ru", "variant_access_point": ["Naučno-Praktičeskij Seminar Problemy Istoriografii i Istočnikovedenija Istorii Rossijskich Nemcev, 2006, Wolgograd", "Wissenschaftliches Seminar Probleme der Historiographie und der Quellenkunde der Geschichte von Russlanddeutschen, 2006, Wolgograd"], "authorized_access_point": "Wissenschaftliches Seminar Probleme der Historiographie und Quelle der Russlanddeutschen Geschichte, 2006, Wolgograd"} 1 +2024-09-11 09:03:36.931059 2024-09-11 09:03:36.931062 1919e372-9e1a-4826-8117-9530bfd803c3 {"md5": "aa93f6b4538ff4e817e089f1f830284b", "pid": "990280616", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10355679-5", "source": "GND"}], "preferred_name": "Högre Folkskola", "country_associated": "sw", "authorized_access_point": "Högre Folkskola. Kungsbacka", "biographical_information": ["BSB-QK-Konversion; noch nicht redigiert."]} 1 +2024-09-11 09:03:36.997738 2024-09-11 09:03:36.997744 4f203c02-b6c7-4e3c-a48b-1d28a3368127 {"md5": "5e39b4617a784e702274ba05a05d9bc5", "pid": "990285375", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6073491-7", "source": "GND"}], "variant_name": ["Latin American Association of Groundwater Hydrology for Development", "Latin-American Association of Groundwater Hydrology for Development", "ALHSUD"], "preferred_name": "Asociación Latinoamericana de Hidrología Subterránea para el Desarrollo", "variant_access_point": ["Latin American Association of Groundwater Hydrology for Development", "Latin-American Association of Groundwater Hydrology for Development", "ALHSUD. Abkuerzung"], "authorized_access_point": "Asociación Latinoamericana de Hidrología Subterránea para el Desarrollo"} 1 +2024-09-11 09:03:37.057495 2024-09-11 09:03:37.0575 d1f73f9b-a234-4e82-b177-5bdc2d959820 {"md5": "30defe4c18681f9906fb958e67b20ce8", "pid": "990285650", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6073481-4", "source": "GND"}], "variant_name": ["Scuola Internazionale di Fisica Enrico Fermi, 167"], "preferred_name": "International School of Physics Enrico Fermi, 167", "country_associated": "it", "variant_access_point": ["Scuola Internazionale di Fisica Enrico Fermi, 167, 2007, Varenna"], "authorized_access_point": "International School of Physics Enrico Fermi, 167, 2007, Varenna"} 1 +2024-09-11 09:03:37.116085 2024-09-11 09:03:37.116088 07a10ccc-3242-41cb-a22b-184d1cba315b {"md5": "28293a7fa714676a06ee7e439ea30eeb", "pid": "990303160", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10355872-X", "source": "GND"}], "preferred_name": "Maschinenfabrik, Eisengießerei und Mühlenbau-Anstalt von J. C. Ostheim", "authorized_access_point": "Maschinenfabrik, Eisengießerei und Mühlenbau-Anstalt von J. C. Ostheim"} 1 +2024-09-11 09:03:37.237856 2024-09-11 09:03:37.237859 2dfc176f-0740-44f2-ab27-3bb04ff93bc7 {"md5": "7b0ce6c0b3ffc4633b3cbec141b23a22", "pid": "990348059", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10356362-3", "source": "GND"}], "variant_name": ["Exhibition Ronan & Erwan Bouroullec, Étapes"], "preferred_name": "Exposition Ronan & Erwan Bouroullec, Étapes", "country_associated": "fr", "variant_access_point": ["Exhibition Ronan & Erwan Bouroullec, Étapes, 2008 - 2009, Hyères u.a."], "authorized_access_point": "Exposition Ronan & Erwan Bouroullec, Étapes, 2008 - 2009, Hyères u.a."} 1 +2024-09-11 09:03:37.30632 2024-09-11 09:03:37.306322 932e9252-cb2b-4262-892a-89f6c0ae5684 {"md5": "107456d526090710bad5b478bafd1fff", "pid": "990387844", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6073770-0", "source": "GND"}], "preferred_name": "Université de Moncton. Département de biologie", "country_associated": "xxc", "authorized_access_point": "Université de Moncton. Département de biologie"} 1 +2024-09-11 09:03:37.360395 2024-09-11 09:03:37.360397 fb4c5af0-3ae5-4553-ac6d-0919b41e3ac9 {"md5": "f3c0a230bebb4a043b6246785bd6849f", "pid": "990398455", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10356785-9", "source": "GND"}], "preferred_name": "Saratoga Springs, NY. State Reservation", "country_associated": "xxu", "authorized_access_point": "Saratoga Springs, NY. State Reservation", "biographical_information": ["BSB-QK-Konversion; noch nicht redigiert."]} 1 +2024-09-11 09:03:37.419792 2024-09-11 09:03:37.419797 5b0eb495-4bb9-449c-9a9d-84e3108a6640 {"md5": "c587ace8f295be1453329eb1b891f5d0", "pid": "990407624", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10356849-9", "source": "GND"}], "preferred_name": "Schulhaus Fuchsrain. Klasse, 5", "country_associated": "sz", "authorized_access_point": "Schulhaus Fuchsrain. Möhlin. Klasse, 5"} 1 +2024-09-11 09:03:37.485778 2024-09-11 09:03:37.485783 27d450c5-4aa2-4f79-bf9b-e1a835d30210 {"md5": "6c0bdd9b1c3f7c74d0ef739d13f6ec14", "pid": "990531325", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10357707-5", "source": "GND"}], "variant_name": ["Ausstellungsprojekt Artcase Europe"], "preferred_name": "Ausstellungsprojekt Artcase.Europe", "country_associated": "gw", "variant_access_point": ["Ausstellungsprojekt Artcase Europe, 2007, Hildesheim"], "authorized_access_point": "Ausstellungsprojekt Artcase.Europe, 2007, Hildesheim"} 1 +2024-09-11 09:03:37.562327 2024-09-11 09:03:37.562332 e5a0c423-e2af-4df7-ad8f-0defc222d333 {"md5": "53b404a9dd76e8d96d28220f60b99019", "pid": "990665801", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10358708-1", "source": "GND"}], "variant_name": ["Fanprojekt"], "preferred_name": "Fanprojekt Dresden e.V.", "country_associated": "gw", "variant_access_point": ["Fanprojekt. Dresden"], "date_of_establishment": "2006,März", "authorized_access_point": "Fanprojekt Dresden e.V."} 1 +2024-09-11 09:03:37.620692 2024-09-11 09:03:37.620697 8e55238b-8875-4127-b6e6-de5b38b07ab4 {"md5": "01902e9e423c7e664aa655a8fa858fbd", "pid": "990683869", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7628383-5", "source": "GND"}], "variant_name": ["Aborigines Progressive Association", "AAPA", "APA"], "preferred_name": "Australian Aboriginal Progressive Association", "country_associated": "at", "variant_access_point": ["Aborigines Progressive Association", "AAPA", "APA"], "authorized_access_point": "Australian Aboriginal Progressive Association", "biographical_information": ["Interessenverband für die rechtliche Gleichstellung der Aborigines, gegr. 1924, aufgelöst 1928, wiederbegr. 1937"]} 1 +2024-09-11 09:03:37.680836 2024-09-11 09:03:37.680839 82f79d80-cca7-4c98-9135-d0af8e5ec709 {"md5": "8a739d373492ed25fa5e07d7cec24b2f", "pid": "990766160", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10359475-9", "source": "GND"}], "variant_name": ["ESPC, 8"], "preferred_name": "European Space Power Conference, 8", "country_associated": "gw", "variant_access_point": ["ESPC, 8, 2008, Konstanz"], "authorized_access_point": "European Space Power Conference, 8, 2008, Konstanz"} 1 +2024-09-11 09:03:37.745686 2024-09-11 09:03:37.74569 6a0fc077-182a-4e93-a661-5906bd90c3a6 {"md5": "de1fda16c18b231cf5ad608ff6d7a82c", "pid": "990827321", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10359921-6", "source": "GND"}], "variant_name": ["USA. Committee on Agriculture. Welfare Reform Subcommittee", "Welfare Reform Subcommittee"], "preferred_name": "USA. Welfare Reform Subcommittee", "country_associated": "xxu", "variant_access_point": ["USA. Committee on Agriculture. Welfare Reform Subcommittee", "Welfare Reform Subcommittee. USA"], "authorized_access_point": "USA. Welfare Reform Subcommittee"} 1 +2024-09-11 09:03:37.81895 2024-09-11 09:03:37.818958 df491e5d-95a8-414c-880c-069562e2e59d {"md5": "53805780140f46ce1c56077f080e0025", "pid": "990889203", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7630771-2", "source": "GND"}], "preferred_name": "Unique Records", "country_associated": "gw", "authorized_access_point": "Unique Records", "biographical_information": ["1988 gegr., Sitz Düsseldorf"]} 1 +2024-09-11 09:03:37.895952 2024-09-11 09:03:37.895955 5c2280b6-4fc2-4880-8902-bf7f97fdee89 {"md5": "c01f1da240691ecd8f00f6645041db88", "pid": "99109087X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10361905-7", "source": "GND"}], "variant_name": ["Die Südkurven"], "preferred_name": "Südkurven", "country_associated": "gw", "variant_access_point": ["Die Südkurven. Unveraenderte Form"], "authorized_access_point": "Südkurven"} 1 +2024-09-11 09:03:37.959163 2024-09-11 09:03:37.959167 f55fffd0-cb89-4d18-bd11-07f49164b737 {"md5": "e88f1eb15f427dc316baaeb01a68d881", "pid": "991108337", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10362072-2", "source": "GND"}], "preferred_name": "Ausstellung Hermann Wolf, Zonenbilder", "authorized_access_point": "Ausstellung Hermann Wolf, Zonenbilder, 2001, Stuttgart"} 1 +2024-09-11 09:03:40.199111 2024-09-11 09:03:40.199115 eebbe96b-e5a8-41eb-9198-508195d7d862 {"md5": "d1b44aa98413d76b5477f493d22c4e30", "pid": "996151265", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6079112-3", "source": "GND"}], "preferred_name": "AE", "country_associated": "fr", "authorized_access_point": "AE, 2005, Lille"} 1 +2024-09-11 09:03:38.020247 2024-09-11 09:03:38.020254 8c3a1f03-02c2-43b6-9673-3dc5fb708d3f {"md5": "2ea356dd98664c9e3d8a9f5af703b747", "pid": "991145429", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10362433-8", "source": "GND"}], "preferred_name": "Literaturkreis der Deutschen aus Russland. Ortsgruppe", "country_associated": "gw", "authorized_access_point": "Literaturkreis der Deutschen aus Russland. Ortsgruppe. Ratingen"} 1 +2024-09-11 09:03:38.08993 2024-09-11 09:03:38.089933 565a4364-185c-4aba-86c1-f0d2057cff80 {"md5": "42551c96187114bf046d468ac6d56abf", "pid": "991195000", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10362857-5", "source": "GND"}], "variant_name": ["Exposición Dominique Perrault Arquitecto"], "preferred_name": "Exposition Dominique Perrault Architecture", "country_associated": "fr", "variant_access_point": ["Exposición Dominique Perrault Arquitecto, 2008 - 2009, Paris ; Madrid"], "authorized_access_point": "Exposition Dominique Perrault Architecture, 2008 - 2009, Paris ; Madrid"} 1 +2024-09-11 09:03:38.145971 2024-09-11 09:03:38.145976 63938dd2-8264-4fa0-ba3b-d5d040467dc4 {"md5": "04cb8fd4a392e7ba1b59ede124108b93", "pid": "991211103", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10362998-1", "source": "GND"}], "variant_name": ["BCFM"], "preferred_name": "Broadcast Cable Financial Management Association", "country_associated": "xxu", "date_of_termination": "2008,Juli", "variant_access_point": ["BCFM. Abkuerzung"], "date_of_establishment": "1961,Mai", "authorized_access_point": "Broadcast Cable Financial Management Association"} 1 +2024-09-11 09:03:38.203368 2024-09-11 09:03:38.203372 79faf3d5-2af8-4955-95c7-c90414edf2c2 {"md5": "a3bf3ce0796780d6541a6225d6b4bda1", "pid": "991510011", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10364912-8", "source": "GND"}], "variant_name": ["Heimatverein Neuzedlisch"], "preferred_name": "Heimatverein Neuzedlisch e.V. 1992", "country_associated": "gw", "variant_access_point": ["Heimatverein Neuzedlisch"], "authorized_access_point": "Heimatverein Neuzedlisch e.V. 1992", "biographical_information": ["Sitz: Illertissen-Jedesheim; Neu Zedlich bzw. Nové Sedliště liegt in der Tschechischen Republik"]} 1 +2024-09-11 09:03:38.263178 2024-09-11 09:03:38.263182 7cf523ec-cd36-4bf8-8942-be872d0afa4b {"md5": "10f701db9a08fe1cd17c80dfaa3debcf", "pid": "991533445", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3071018-2", "source": "GND"}], "preferred_name": "Museo Archeologico Nazionale", "country_associated": "it", "authorized_access_point": "Museo Archeologico Nazionale. Campli"} 1 +2024-09-11 09:03:38.322139 2024-09-11 09:03:38.322143 5614a842-e45b-48ed-af97-1b976a61b762 {"md5": "9840e95789f8133a1bb9662261e2fa5b", "pid": "992031486", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10368272-7", "source": "GND"}], "variant_name": ["Two until 4 Grooves"], "preferred_name": "2-4 Grooves", "country_associated": "gw", "variant_access_point": ["Two until 4 Grooves"], "authorized_access_point": "2-4 Grooves", "biographical_information": ["Produzenten-Team (Sascha Mülder und Stephan Drobez)"]} 1 +2024-09-11 09:03:38.375762 2024-09-11 09:03:38.375766 b95b065f-d296-4775-9ad7-c54b3de56ceb {"md5": "2abc43afe8e1b52df7a6014827b011d1", "pid": "992385903", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10370439-5", "source": "GND"}], "preferred_name": "Coastal Plains Regional Commission", "country_associated": "xxu", "authorized_access_point": "Coastal Plains Regional Commission"} 1 +2024-09-11 09:03:38.431396 2024-09-11 09:03:38.431401 4678dde4-66f1-4f1c-9511-9280a8edde62 {"md5": "e23fecf0fbaf8ce339e8e2410cef361d", "pid": "992448972", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3071366-3", "source": "GND"}], "preferred_name": "Côté Jardin", "country_associated": "fr", "authorized_access_point": "Côté Jardin", "biographical_information": ["Deutsch-französisches Musik-Duo, bestehend aus Anita Zimmermann u. Jean-Yves Charpentier"]} 1 +2024-09-11 09:03:38.488768 2024-09-11 09:03:38.48877 08cd92ad-2be7-44bd-8cf3-2316b165f993 {"md5": "883bd1e9c48f941654f5aa891d7af2f8", "pid": "992654173", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10372254-3", "source": "GND"}], "variant_name": ["Doktor E. Mertens & Cie.", "E. Mertens & Cie.", "Mertens & Cie."], "preferred_name": "Dr. E. Mertens & Cie.", "country_associated": "gw", "variant_access_point": ["Doktor E. Mertens & Cie.. Berlin", "E. Mertens & Cie.. Berlin", "Mertens & Cie.. Berlin"], "authorized_access_point": "Dr. E. Mertens & Cie.. Berlin"} 1 +2024-09-11 09:03:38.546491 2024-09-11 09:03:38.546493 b66b45b3-2296-459f-82de-8a4f850cf824 {"md5": "22624fbcb82b11a050daa409d611a65c", "pid": "992787858", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16000783-5", "source": "GND"}], "preferred_name": "Paramount Singers", "country_associated": "xxu", "authorized_access_point": "Paramount Singers"} 1 +2024-09-11 09:03:38.601582 2024-09-11 09:03:38.601585 3a0fd78d-25f8-40b1-9e6d-8c0bd09b3e1c {"md5": "84a15412f674df9c14adacc6ac4f75d9", "pid": "992788137", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16000793-8", "source": "GND"}], "preferred_name": "Texas Northeast Mass Choir", "country_associated": "xxu", "authorized_access_point": "Texas Northeast Mass Choir"} 1 +2024-09-11 09:03:38.660718 2024-09-11 09:03:38.660722 33c45400-d97f-4028-a244-40e86081ebd6 {"md5": "84b1a3ebf149ce2288a73124f47cf076", "pid": "992810159", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16000876-1", "source": "GND"}], "variant_name": ["Department of Economic Development", "Maryland Department of economic development"], "preferred_name": "Maryland. Department of Economic Development", "country_associated": "xxu", "variant_access_point": ["Department of Economic Development. Maryland", "Maryland Department of economic development"], "authorized_access_point": "Maryland. Department of Economic Development"} 1 +2024-09-11 09:03:38.726089 2024-09-11 09:03:38.726093 d7e7afd7-57be-48eb-9343-338a8eb02f04 {"md5": "300a74cebaadf25eb670e8f27344d577", "pid": "992947588", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16001871-7", "source": "GND"}], "preferred_name": "Sur Tango Argentino", "country_associated": "gw", "authorized_access_point": "Sur Tango Argentino", "biographical_information": ["Duo: Bernardo Machus (Bandoneon), Jorge Aravena (Gesang)"]} 1 +2024-09-11 09:03:38.780214 2024-09-11 09:03:38.780218 e1e42f06-ac45-42b2-89c0-e09b1b8eaf56 {"md5": "6c8911241d4829b75795245dcb3626c1", "pid": "993072542", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16002694-5", "source": "GND"}], "variant_name": ["SPD-Ortsverein", "SPD"], "preferred_name": "Sozialdemokratische Partei Deutschlands. Ortsverein", "country_associated": "gw", "variant_access_point": ["SPD-Ortsverein. Garmisch-Partenkirchen", "SPD. Garmisch-Partenkirchen"], "authorized_access_point": "Sozialdemokratische Partei Deutschlands. Ortsverein. Garmisch-Partenkirchen"} 1 +2024-09-11 09:03:38.841162 2024-09-11 09:03:38.841165 fe209905-02bc-49a7-8cd9-a8cb34449601 {"md5": "54a330183f2c9956d30aeae86e6b8d8a", "pid": "993585043", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16005840-5", "source": "GND"}], "variant_name": ["Esperanto-Grupo Bamberg"], "preferred_name": "Esperanto-Gruppe Bamberg", "country_associated": "gw", "variant_access_point": ["Esperanto-Grupo Bamberg"], "date_of_establishment": "1908", "authorized_access_point": "Esperanto-Gruppe Bamberg"} 1 +2024-09-11 09:03:38.897952 2024-09-11 09:03:38.897956 1421f971-097f-4208-a10f-458487d737ea {"md5": "ca47388c4da75b5d1364f786d919ecc8", "pid": "994152868", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6077448-4", "source": "GND"}], "variant_name": ["German Day"], "preferred_name": "Deutscher Tag", "country_associated": "xxu", "variant_access_point": ["German Day, 1935, New York, NY"], "authorized_access_point": "Deutscher Tag, 1935, New York, NY"} 1 +2024-09-11 09:03:38.96464 2024-09-11 09:03:38.964645 074b202d-b10e-455d-b155-4b2fe064e395 {"md5": "1db58ac9a34200598da351e90fcaf2e4", "pid": "994333080", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16009488-4", "source": "GND"}], "variant_name": ["Microbiology Panel"], "preferred_name": "Campden & Chorleywood Food Research Association. Microbiology Panel", "country_associated": "xxk", "variant_access_point": ["Microbiology Panel. Campden & Chorleywood Food Research Association"], "authorized_access_point": "Campden & Chorleywood Food Research Association. Microbiology Panel"} 1 +2024-09-11 09:03:39.032846 2024-09-11 09:03:39.032851 bc6b7a9a-5fc8-48c2-8d64-5bc69e3efdb1 {"md5": "59296cfcf77c0c36ff4826f87bf614f0", "pid": "994528647", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6525818-6", "source": "GND"}], "preferred_name": "Expanding the Boundaries of Clinical Practice: Building on Experience with Targeted Therapies Satellite Symposium", "country_associated": "sw", "authorized_access_point": "Expanding the Boundaries of Clinical Practice: Building on Experience with Targeted Therapies Satellite Symposium, 2008, Stockholm"} 1 +2024-09-11 09:03:39.091237 2024-09-11 09:03:39.09124 42949ac8-2f55-4c2f-9e19-b12d5aa02d32 {"md5": "27e6a3f5d69f902d2e60859bd34145cc", "pid": "994603320", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16011197-3", "source": "GND"}], "variant_name": ["Freunde der Völker Rußlands e.V.", "BFdVR"], "preferred_name": "Berliner Freunde der Völker Rußlands e.V.", "country_associated": "gw", "variant_access_point": ["Freunde der Völker Rußlands e.V.. Berlin", "BFdVR. Abkuerzung"], "date_of_establishment": "1992", "authorized_access_point": "Berliner Freunde der Völker Rußlands e.V.", "biographical_information": ["Sitz: Berlin"]} 1 +2024-09-11 09:03:39.147383 2024-09-11 09:03:39.147386 e115c541-e27b-4c86-a123-a2bba055b3ea {"md5": "fa9ed69bf14c8f7641aafd7a59b48fcb", "pid": "994861915", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16013164-9", "source": "GND"}], "variant_name": ["Yacht-Club"], "preferred_name": "Yachtclub", "country_associated": "gw", "variant_access_point": ["Yacht-Club. Hagenburg"], "date_of_establishment": "1969", "authorized_access_point": "Yachtclub. Hagenburg"} 1 +2024-09-11 09:03:39.20645 2024-09-11 09:03:39.206454 432f37c4-31be-414e-801d-59503b7f6bde {"md5": "ba6f42d5a1106bce8e4624472f2c69ae", "pid": "994895232", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16013351-8", "source": "GND"}], "variant_name": ["Kaolinkapelle Schnaittenbach-Hirschau"], "preferred_name": "Kaolinkapelle", "country_associated": "gw", "variant_access_point": ["Kaolinkapelle Schnaittenbach-Hirschau. Ehemalige Vorzugsbenennung SWD"], "authorized_access_point": "Kaolinkapelle. Schnaittenbach; Hirschau"} 1 +2024-09-11 09:03:39.270173 2024-09-11 09:03:39.270179 41e5b63f-d983-442d-9a8a-16ac46c47e96 {"md5": "edf324364575575987064deba7ef6345", "pid": "995009384", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16013971-5", "source": "GND"}], "preferred_name": "Standard Bank Investment Corporation. Planning and Research Division", "country_associated": "sa", "authorized_access_point": "Standard Bank Investment Corporation. Johannesburg. Planning and Research Division"} 1 +2024-09-11 09:03:39.341041 2024-09-11 09:03:39.341045 6671e1c6-e11b-4b08-8786-5d8a3c2aff1f {"md5": "cbd3a5436139fdad0185b02056abd70d", "pid": "995549060", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16016375-4", "source": "GND"}], "variant_name": ["ChVÖ", "Österreichischer Sängerbund", "Österreichischer Sängerbund"], "preferred_name": "Chorverband Österreich", "country_associated": "au", "variant_access_point": ["ChVÖ. Abkuerzung", "Österreichischer Sängerbund. Ehemalige Vorzugsbenennung SWD", "Österreichischer Sängerbund. Frueherer Name"], "authorized_access_point": "Chorverband Österreich"} 1 +2024-09-11 09:03:39.399881 2024-09-11 09:03:39.399887 8bf4ee06-d13e-49de-bd6c-7c31ef219d40 {"md5": "d9322b61f52f2ab94eb662d70b4e6468", "pid": "995590958", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16016660-3", "source": "GND"}], "preferred_name": "Städtische Realschule", "country_associated": "gw", "authorized_access_point": "Städtische Realschule. Oelde"} 1 +2024-09-11 09:03:39.457914 2024-09-11 09:03:39.457917 ab5c5da8-fe4c-4ab8-9764-06460db7e26e {"md5": "2c47927d0e82a8651791c8325b8c46c3", "pid": "995597928", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16016683-4", "source": "GND"}], "variant_name": ["Kiko y Shara"], "preferred_name": "Kiko & Shara", "country_associated": "sp", "variant_access_point": ["Kiko y Shara"], "date_of_establishment": "2005", "authorized_access_point": "Kiko & Shara"} 1 +2024-09-11 09:03:39.517026 2024-09-11 09:03:39.517028 2ba618be-2792-473a-90b9-4eadd4cc2eb0 {"md5": "af311cfe84df9136187dbf6fd5cf9e52", "pid": "995606250", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6526631-6", "source": "GND"}], "preferred_name": "Landesverband der Vaterländischen Frauenvereine im Fürstentum Lippe", "authorized_access_point": "Landesverband der Vaterländischen Frauenvereine im Fürstentum Lippe"} 1 +2024-09-11 09:03:39.573708 2024-09-11 09:03:39.573712 9ba98d5f-5e73-4494-bb75-f92e58e7d411 {"md5": "85a6838d4264a7a66d1dd414ef2bf74f", "pid": "995661391", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16016980-X", "source": "GND"}], "variant_name": ["USA. Committee on Banking and Financial Services. Subcommittee on Capital Markets, Securities, and Government Sponsored Enterprises", "Subcommittee on Capital Markets, Securities, and Government Sponsored Enterprises"], "preferred_name": "USA. Subcommittee on Capital Markets, Securities, and Government Sponsored Enterprises", "country_associated": "xxu", "variant_access_point": ["USA. Committee on Banking and Financial Services. Subcommittee on Capital Markets, Securities, and Government Sponsored Enterprises", "Subcommittee on Capital Markets, Securities, and Government Sponsored Enterprises. USA"], "authorized_access_point": "USA. Subcommittee on Capital Markets, Securities, and Government Sponsored Enterprises"} 1 +2024-09-11 09:03:39.636152 2024-09-11 09:03:39.636157 36ca73c5-b301-49f7-9685-12415f35fb82 {"md5": "bd57c1c67c9201c5766e56c8779712ae", "pid": "996104801", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6083733-0", "source": "GND"}], "preferred_name": "X-Sen-Bunseki-Tōronkai, 35", "country_associated": "ja", "authorized_access_point": "X-Sen-Bunseki-Tōronkai, 35, 1999, Tokio"} 1 +2024-09-11 09:03:39.704412 2024-09-11 09:03:39.704415 cb56b4c3-72a7-4a9f-847e-dc74bc6af5ae {"md5": "36d82b53c4b8efa030825e27c0c8ce11", "pid": "996109269", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6081305-2", "source": "GND"}], "variant_name": ["Semana Farmacêutica de Ciência e Tecnologia da FCF-USP, 8"], "preferred_name": "Semana Farmacêutica de Ciência e Tecnologia, 8", "country_associated": "bl", "variant_access_point": ["Semana Farmacêutica de Ciência e Tecnologia da FCF-USP, 8, 2003, São Paulo"], "authorized_access_point": "Semana Farmacêutica de Ciência e Tecnologia, 8, 2003, São Paulo"} 1 +2024-09-11 09:03:39.763738 2024-09-11 09:03:39.763742 0611b9d3-37b4-4468-8d64-488b3b57d312 {"md5": "d3e1498a1e2c87db0f653979fe900de4", "pid": "996113045", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6083372-5", "source": "GND"}], "preferred_name": "International Symposium on Joining and Welding Solution to Industrial Innovation", "country_associated": "ja", "authorized_access_point": "International Symposium on Joining and Welding Solution to Industrial Innovation, 2003, Osaka"} 1 +2024-09-11 09:03:39.820674 2024-09-11 09:03:39.820679 40657ac9-7f8f-4d40-9d28-d082a92d07ca {"md5": "464185b5eb87921e93146fb0502039ad", "pid": "996118780", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6080851-2", "source": "GND"}], "preferred_name": "Tagung Menschliche Körper in Bewegung", "country_associated": "gw", "authorized_access_point": "Tagung Menschliche Körper in Bewegung, 2000, Bremen"} 1 +2024-09-11 09:03:39.878162 2024-09-11 09:03:39.878166 19181555-0ad4-4700-bce8-10989be62bcc {"md5": "790e9a000782db00155af0c3f6e1256f", "pid": "996123768", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6082800-6", "source": "GND"}], "preferred_name": "WAL Meß und Regelsysteme GmbH", "country_associated": "gw", "authorized_access_point": "WAL Meß und Regelsysteme GmbH. Oldenburg (Oldenburg)"} 1 +2024-09-11 09:03:39.949651 2024-09-11 09:03:39.949656 81d31ed9-da6b-441a-9e2a-f56cca031881 {"md5": "2449a51e5ba3d5e9c66789bbf12b1052", "pid": "996129952", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6082680-0", "source": "GND"}], "variant_name": ["GKSS-Workshop Reibrührschweißen, 2"], "preferred_name": "Workshop Reibrührschweißen, 2", "country_associated": "gw", "variant_access_point": ["GKSS-Workshop Reibrührschweißen, 2, 2002, Geesthacht"], "authorized_access_point": "Workshop Reibrührschweißen, 2, 2002, Geesthacht"} 1 +2024-09-11 09:03:40.018271 2024-09-11 09:03:40.018275 2ea15570-2113-43bb-bfb7-eadba2384dc7 {"md5": "09f01c91e610c59187842039d875a74b", "pid": "996134492", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6082226-0", "source": "GND"}], "variant_name": ["Japan National Conference on Geotechnical Engineering, 37", "National Conference on GE, 37", "National Conference on Geotechnical Engineering, 37", "Conference on GE, 37", "Conference on Geotechnical Engineering, 37"], "preferred_name": "Japan National Conference on GE, 37", "country_associated": "ja", "variant_access_point": ["Japan National Conference on Geotechnical Engineering, 37, 2002, Osaka", "National Conference on GE, 37, 2002, Osaka", "National Conference on Geotechnical Engineering, 37, 2002, Osaka", "Conference on GE, 37, 2002, Osaka", "Conference on Geotechnical Engineering, 37, 2002, Osaka"], "authorized_access_point": "Japan National Conference on GE, 37, 2002, Osaka"} 1 +2024-09-11 09:03:40.07759 2024-09-11 09:03:40.077594 10e6ab2a-f81a-40d9-be0c-bf1292dfb7cd {"md5": "4f3917de8b62270ee911e1a1c011a897", "pid": "996142762", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6079951-1", "source": "GND"}], "preferred_name": "International Symposium on Concrete Science and Engineering - A Tribute to Arnon Bentur", "country_associated": "xxu", "authorized_access_point": "International Symposium on Concrete Science and Engineering - A Tribute to Arnon Bentur, 2004, Evanston, Ill."} 1 +2024-09-11 09:03:40.134901 2024-09-11 09:03:40.134906 c1242fca-a1f9-49f1-abaf-40eba30be7da {"md5": "1ebb8d42b3e6e7ed39cc70c969731606", "pid": "996150994", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6079139-1", "source": "GND"}], "variant_name": ["International Symposium on Particles, Strings and Cosmology, 10"], "preferred_name": "PASCOS, 10", "country_associated": "xxu", "variant_access_point": ["International Symposium on Particles, Strings and Cosmology, 10, 2004, Boston, Mass."], "authorized_access_point": "PASCOS, 10, 2004, Boston, Mass."} 1 +2024-09-11 09:03:40.254986 2024-09-11 09:03:40.254991 eba24bf2-dfa2-4e79-b307-e1615936d698 {"md5": "9c031184a4b033277e4fa91d24d5aace", "pid": "996312811", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6088934-2", "source": "GND"}], "preferred_name": "International Symposium on Scheduling", "authorized_access_point": "International Symposium on Scheduling, 2002, Hamanako"} 1 +2024-09-11 09:03:40.31355 2024-09-11 09:03:40.313552 4f1734bc-9e29-4d22-bf54-e75d9139df0b {"md5": "8bb728bd443d8afada939ab5bf72f1d3", "pid": "996312919", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6088924-X", "source": "GND"}], "preferred_name": "Séminaire International sur les Échinodermes, 6", "authorized_access_point": "Séminaire International sur les Échinodermes, 6, 1988"} 1 +2024-09-11 09:03:40.371079 2024-09-11 09:03:40.371082 0cf01a23-7093-4cf4-a3d0-4e1392f2eb00 {"md5": "7fd9e18f44e2af3a3934896a36ae2850", "pid": "996322809", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6088434-4", "source": "GND"}], "variant_name": ["International Conference on Management Information Systems Incorporating GIS & Remote Sensing, 3", "MIS, 3"], "preferred_name": "International Conference on Management Information Systems Incorporating GIS and Remote Sensing, 3", "variant_access_point": ["International Conference on Management Information Systems Incorporating GIS & Remote Sensing, 3, 2002", "MIS, 3, 2002"], "authorized_access_point": "International Conference on Management Information Systems Incorporating GIS and Remote Sensing, 3, 2002"} 1 +2024-09-11 09:03:40.438682 2024-09-11 09:03:40.438685 976d49ab-670d-401f-90a8-a648fa604206 {"md5": "fd3ba76fceb234a69930172ed636c056", "pid": "996334920", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6087221-4", "source": "GND"}], "variant_name": ["Nutrition Conference for Feed Manufacturers, 63"], "preferred_name": "Cornell Nutrition Conference for Feed Manufacturers, 63", "country_associated": "xxu", "variant_access_point": ["Nutrition Conference for Feed Manufacturers, 63, 2001, Rochester, NY"], "authorized_access_point": "Cornell Nutrition Conference for Feed Manufacturers, 63, 2001, Rochester, NY"} 1 +2024-09-11 09:03:40.526233 2024-09-11 09:03:40.526238 52b50f4c-a87a-4b64-81cf-404df46caa9e {"md5": "2a4f813ea90ecce41443f8a922e460b5", "pid": "996335323", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6087181-7", "source": "GND"}], "preferred_name": "Symposium on the Use of Glass in Buildings", "country_associated": "xxu", "authorized_access_point": "Symposium on the Use of Glass in Buildings, 2002, Pittsburgh, Pa."} 1 +2024-09-11 09:03:40.591852 2024-09-11 09:03:40.591856 35b86139-291e-447f-8919-3c596cb3bca7 {"md5": "81d4c5bd312bf04e91a1cc55ca0d270a", "pid": "996335846", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6087129-5", "source": "GND"}], "variant_name": ["AIChE Topical Conference on Green Chemical Engineering", "Green Chemical Engineering Topical Conference"], "preferred_name": "Topical Conference on Green Chemical Engineering", "country_associated": "xxu", "variant_access_point": ["AIChE Topical Conference on Green Chemical Engineering, 2003, New Orleans, La.", "Green Chemical Engineering Topical Conference, 2003, New Orleans, La."], "authorized_access_point": "Topical Conference on Green Chemical Engineering, 2003, New Orleans, La."} 1 +2024-09-11 09:03:40.652003 2024-09-11 09:03:40.652006 a19f60ff-353c-4c1e-9e93-db9f00523899 {"md5": "1b6393ff2ff44ee04742ba96a700b4f2", "pid": "996336109", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6087103-9", "source": "GND"}], "variant_name": ["WE-Heraeus Seminar Aspects of Quantum Gravity - From Theory to Experimental Search", "WE-Heraeus Seminar, 271"], "preferred_name": "W.-E.-Heraeus-Seminar, 271", "country_associated": "gw", "variant_access_point": ["WE-Heraeus Seminar Aspects of Quantum Gravity - From Theory to Experimental Search, 2002, Bad Honnef", "WE-Heraeus Seminar, 271, 2002, Bad Honnef"], "authorized_access_point": "W.-E.-Heraeus-Seminar, 271, 2002, Bad Honnef"} 1 +2024-09-11 09:03:40.711522 2024-09-11 09:03:40.711526 158a4d30-12c5-4dd5-812c-3d2575ff6729 {"md5": "5501c52e4bed76ce99ecff697a3a7891", "pid": "996346562", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6084058-4", "source": "GND"}], "preferred_name": "Design of Efficient Illumination Systems Conference", "country_associated": "xxu", "authorized_access_point": "Design of Efficient Illumination Systems Conference, 2003, San Diego, Calif."} 1 +2024-09-11 09:03:40.766966 2024-09-11 09:03:40.766971 5282269a-9ee8-4a67-8a3e-5df681c04dd2 {"md5": "ca7daabd8c747244edf54f388fefabf1", "pid": "996348980", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6089388-6", "source": "GND"}], "preferred_name": "Hochschule Merseburg. Fachbereich Soziale Arbeit, Medien, Kultur", "country_associated": "gw", "authorized_access_point": "Hochschule Merseburg. Fachbereich Soziale Arbeit, Medien, Kultur"} 1 +2024-09-11 09:03:40.823485 2024-09-11 09:03:40.823489 d4d8b1a9-f743-44e2-867f-991ab5696010 {"md5": "f7729ba0355b686eab76d1ea37aaa63c", "pid": "996450793", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6093765-8", "source": "GND"}], "preferred_name": "Mie̜dzynarodowa Konferencja Naukowa pt. Recent Developments in Multiphase Flow", "country_associated": "pl", "authorized_access_point": "Mie̜dzynarodowa Konferencja Naukowa pt. Recent Developments in Multiphase Flow, 1999, Stawiska"} 1 +2024-09-11 09:03:40.878811 2024-09-11 09:03:40.878815 7c181ccb-c51f-400a-8b59-7d99cb2045ed {"md5": "3570bdd3f0a857bcc46fbd4442ff140a", "pid": "996450904", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6093754-3", "source": "GND"}], "variant_name": ["Conférence Internationale sur les Ponts en Arc, 3", "International Arch Bridge Conference, 3", "ARCH, 3"], "preferred_name": "International Arch Bridges Conference, 3", "country_associated": "fr", "variant_access_point": ["Conférence Internationale sur les Ponts en Arc, 3, 2001, Paris", "International Arch Bridge Conference, 3, 2001, Paris", "ARCH, 3, 2001, Paris"], "authorized_access_point": "International Arch Bridges Conference, 3, 2001, Paris"} 1 +2024-09-11 09:03:42.263612 2024-09-11 09:03:42.263617 1e947b4e-9bbf-405b-bd35-6ead6e87d646 {"md5": "c44072d5dfba5531fa1a68d04a2bf91f", "pid": "99770392X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16025860-1", "source": "GND"}], "preferred_name": "Exposition Julio González", "country_associated": "fr", "authorized_access_point": "Exposition Julio González, 2007, Paris"} 1 +2024-09-11 09:03:40.938255 2024-09-11 09:03:40.938259 bbce6249-c74e-42c2-a66e-6fbfb9f8e309 {"md5": "ebd97dff6fe30fc5be30db95c1439239", "pid": "996455116", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6091832-9", "source": "GND"}], "variant_name": ["International Workshop on OHAN, FSAN, 10", "OHAN, FSAN, 10"], "preferred_name": "International Workshop on Optical Hybrid Access Networks, Full Service Access Networks, 10", "country_associated": "ja", "variant_access_point": ["International Workshop on OHAN, FSAN, 10, 2001, Yokohama", "OHAN, FSAN, 10, 2001, Yokohama"], "authorized_access_point": "International Workshop on Optical Hybrid Access Networks, Full Service Access Networks, 10, 2001, Yokohama"} 1 +2024-09-11 09:03:40.99622 2024-09-11 09:03:40.996224 12de17ae-7a55-4a01-a7fd-c4b691620051 {"md5": "c0333d3249c0354d2be1db26f0394849", "pid": "996459715", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6094874-7", "source": "GND"}], "variant_name": ["ICBM, 3"], "preferred_name": "International Conference on Barkhausen Noise and Micromagnetic Testing, 3", "country_associated": "fi", "variant_access_point": ["ICBM, 3, 2001, Tampere"], "authorized_access_point": "International Conference on Barkhausen Noise and Micromagnetic Testing, 3, 2001, Tampere"} 1 +2024-09-11 09:03:41.067501 2024-09-11 09:03:41.067506 8d5bd51d-5d8e-47a9-aced-7010e804978a {"md5": "dc8a821305207f04363b372766c80e16", "pid": "996459855", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6094860-7", "source": "GND"}], "variant_name": ["Bundesverband des Deutschen Baustoffhandels. Gesprächskreis Baustoffindustrie. Arbeitsgruppe Marketing, Logistik", "Arbeitsgruppe Marketing, Logistik"], "preferred_name": "Bundesverband des Deutschen Baustoffhandels. Arbeitsgruppe Marketing, Logistik", "country_associated": "gw", "variant_access_point": ["Bundesverband des Deutschen Baustoffhandels. Gesprächskreis Baustoffindustrie. Arbeitsgruppe Marketing, Logistik", "Arbeitsgruppe Marketing, Logistik"], "authorized_access_point": "Bundesverband des Deutschen Baustoffhandels. Arbeitsgruppe Marketing, Logistik"} 1 +2024-09-11 09:03:41.132708 2024-09-11 09:03:41.132713 05440824-8cbf-47d6-bdb5-095e1b070678 {"md5": "34e6aa1a7238639602c75f25f70cf84f", "pid": "996464190", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6091424-5", "source": "GND"}], "preferred_name": "Karyoku-Genshiryoku-Hatsuden-Taikai", "country_associated": "ja", "authorized_access_point": "Karyoku-Genshiryoku-Hatsuden-Taikai, 2000, Yokohama"} 1 +2024-09-11 09:03:41.19264 2024-09-11 09:03:41.192645 85ef30bb-b953-42ba-9510-4fe9201238ad {"md5": "2d5be45478026a3857a1b2fc1f92278a", "pid": "996469915", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6094355-5", "source": "GND"}], "variant_name": ["ECM, 2"], "preferred_name": "International Conference on Environmentally Conscious Manufacturing, 2", "country_associated": "xxu", "variant_access_point": ["ECM, 2, 2001, Newton, Mass."], "authorized_access_point": "International Conference on Environmentally Conscious Manufacturing, 2, 2001, Newton, Mass."} 1 +2024-09-11 09:03:41.266545 2024-09-11 09:03:41.26655 ac94ad4d-d598-491d-87de-db2551879274 {"md5": "64f9cf979867f5b5b825c2e6ee3c665c", "pid": "996474080", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6090937-7", "source": "GND"}], "variant_name": ["Hittman Associates, Inc.", "Hittman Associates"], "preferred_name": "Hittman Associates", "country_associated": "xxu", "variant_access_point": ["Hittman Associates, Inc.. Columbia, MD", "Hittman Associates. Columbia, MD"], "authorized_access_point": "Hittman Associates. Columbia, Md."} 1 +2024-09-11 09:03:41.321352 2024-09-11 09:03:41.321353 468dd060-ede4-4fcb-9915-b0d9492d24c4 {"md5": "ee11acdac453e03ca41f632a4d100b98", "pid": "996484280", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6092922-4", "source": "GND"}], "variant_name": ["IISC, 4"], "preferred_name": "Iranian International Statistics Conference, 4", "country_associated": "ir", "variant_access_point": ["IISC, 4, 1998, Teheran"], "authorized_access_point": "Iranian International Statistics Conference, 4, 1998, Teheran"} 1 +2024-09-11 09:03:41.381091 2024-09-11 09:03:41.381095 229a2484-2eb0-420a-bcf3-b92410d13d9b {"md5": "6a42e0fb7a3185ba0dc9b767c976486b", "pid": "996494138", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6089935-9", "source": "GND"}], "variant_name": ["Konference s Mezinárodní Účastí Inženýrská Mechanika", "IM", "Konference IM"], "preferred_name": "Národní Konference s Mezinárodní Účastí Inženýrská Mechanika", "variant_access_point": ["Konference s Mezinárodní Účastí Inženýrská Mechanika, 2002, Svratka", "IM, 2002, Svratka", "Konference IM, 2002, Svratka"], "authorized_access_point": "Národní Konference s Mezinárodní Účastí Inženýrská Mechanika, 2002, Svratka"} 1 +2024-09-11 09:03:41.449322 2024-09-11 09:03:41.449326 2beb689a-ddfb-4f10-aa65-3c7315157c89 {"md5": "f839a2559acecf0936252509eb06944b", "pid": "996595066", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16020995-X", "source": "GND"}], "variant_name": ["Ausstellung Siebenmal 14", "Exhibition 7 x 14", "Exhibition Seven Times 14"], "preferred_name": "Ausstellung 7 x 14", "country_associated": "gw", "variant_access_point": ["Ausstellung Siebenmal 14, 2009, Baden-Baden", "Exhibition 7 x 14, 2009, Baden-Baden", "Exhibition Seven Times 14, 2009, Baden-Baden"], "authorized_access_point": "Ausstellung 7 x 14, 2009, Baden-Baden"} 1 +2024-09-11 09:03:41.51181 2024-09-11 09:03:41.511816 10821ef7-bc4a-4925-8f51-c0e35d21e52f {"md5": "26317d8ccf5db612794446a834b7902e", "pid": "996755519", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6097165-4", "source": "GND"}], "preferred_name": "Under One Sky Conference", "country_associated": "xxk", "authorized_access_point": "Under One Sky Conference, 2001, London"} 1 +2024-09-11 09:03:42.337285 2024-09-11 09:03:42.337288 d036c524-247f-448c-b86a-d48a24a1c6ee {"md5": "0fd042daa23e2f0511ffe095b20fe39e", "pid": "997809213", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3073149-5", "source": "GND"}], "variant_name": ["Table-Ronde de Villefontaine, Isère, 2"], "preferred_name": "Table Ronde de Villefontaine, Isère, 2", "country_associated": "fr", "variant_access_point": ["Table-Ronde de Villefontaine, Isère, 2, 2005, Villefontaine"], "authorized_access_point": "Table Ronde de Villefontaine, Isère, 2, 2005, Villefontaine"} 1 +2024-09-11 09:03:41.577496 2024-09-11 09:03:41.577501 8b9434b5-9853-414f-a66e-e19360b211dc {"md5": "4badf6ac1801ecdb993c7aa81920576a", "pid": "996765980", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16021723-4", "source": "GND"}], "variant_name": ["Katholisch-Österreichische Studentenverbindung Ostaricia", "KÖStV Ostaricia", "Ostaricia", "Katholisch-Österreichische Studentenverbindung Ostaricia Wien im MKV", "K.Ö.St.V. Ostaricia Wien im MKV", "Katholische Österreichische Studentenverbindung Ostaricia im Mittelschüler-Kartell-Verband", "Mittelschüler-Kartell-Verband der Katholischen Farbentragenden Studentenkorporationen Österreichs. Katholisch-Österreichische Studentenverbindung Ostaricia", "Katholische Österreichische Studentenverbindung Ostaricia (im MKV)", "K.Ö.St.V. Ostaricia Wien", "K.Ö.St.V. Ostaricia"], "preferred_name": "KÖStV Ostaricia Wien im MKV", "country_associated": "au", "variant_access_point": ["Katholisch-Österreichische Studentenverbindung Ostaricia", "KÖStV Ostaricia", "Ostaricia", "Katholisch-Österreichische Studentenverbindung Ostaricia Wien im MKV", "K.Ö.St.V. Ostaricia Wien im MKV", "Katholische Österreichische Studentenverbindung Ostaricia im Mittelschüler-Kartell-Verband", "Mittelschüler-Kartell-Verband der Katholischen Farbentragenden Studentenkorporationen Österreichs. Katholisch-Österreichische Studentenverbindung Ostaricia", "Katholische Österreichische Studentenverbindung Ostaricia (im MKV)", "K.Ö.St.V. Ostaricia Wien", "K.Ö.St.V. Ostaricia"], "date_of_establishment": "22.01.1949", "authorized_access_point": "KÖStV Ostaricia Wien im MKV", "biographical_information": ["1907 als Schülerverbindung \\"Rugia\\" gegründet; nach deren Auflösung wurde die Verbindung \\"Ostmark\\" gegründet, die bei der Wiedergründung 1949 in \\"Ostaricia\\" umbenannt wurde.", "Verein, ZVR-Zahl: 543593492"]} 1 +2024-09-11 09:03:41.63977 2024-09-11 09:03:41.639773 5558936c-0428-4074-90cc-a59bfe57cfd4 {"md5": "22a430f898f8c13c3589629febaa9620", "pid": "996797343", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16021882-2", "source": "GND"}], "preferred_name": "Deutschnationale Volkspartei. Akademische Ortsgruppe", "authorized_access_point": "Deutschnationale Volkspartei. Akademische Ortsgruppe. Berlin"} 1 +2024-09-11 09:03:41.701945 2024-09-11 09:03:41.701949 b4dbea6a-993a-414f-831e-717645a936db {"md5": "08a96007273648fefe2287c43d1d8a8c", "pid": "996885226", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6097906-9", "source": "GND"}], "preferred_name": "Vers l'Avenir SA", "country_associated": "be", "date_of_termination": "16.02.1999", "date_of_establishment": "22.12.1922", "authorized_access_point": "Vers l'Avenir SA. Namur"} 1 +2024-09-11 09:03:41.759871 2024-09-11 09:03:41.759875 6d1d18f2-9407-43c7-bfd0-ee09bf9082bd {"md5": "d0857f8ed084c101580bb17aeaabae63", "pid": "996895701", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6098847-2", "source": "GND"}], "preferred_name": "Naučno-Stručno Savetovanje Jugoslovenskih Ekonomista", "authorized_access_point": "Naučno-Stručno Savetovanje Jugoslovenskih Ekonomista, 2000, Miločer"} 1 +2024-09-11 09:03:41.814771 2024-09-11 09:03:41.814773 c33f6190-0be3-446b-8eaa-37e5d5a1c8b0 {"md5": "9d5b6278448c792a0347c203b0537cb9", "pid": "996895876", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6098830-7", "source": "GND"}], "variant_name": ["ICORGT"], "preferred_name": "International Conference on Operations Research and Game Theory with Economic and Industrial Applications", "country_associated": "ii", "variant_access_point": ["ICORGT, 2000, Chennai"], "authorized_access_point": "International Conference on Operations Research and Game Theory with Economic and Industrial Applications, 2000, Chennai"} 1 +2024-09-11 09:03:41.8693 2024-09-11 09:03:41.869305 d7af6c63-99f4-4753-bf43-ec8d976df000 {"md5": "b1032f9c30bf1f858ef48fc7b47af13a", "pid": "996901248", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6098302-4", "source": "GND"}], "variant_name": ["Faculty of Administration"], "preferred_name": "University of New Brunswick. Faculty of Administration", "country_associated": "xxc", "variant_access_point": ["Faculty of Administration. University of New Brunswick"], "authorized_access_point": "University of New Brunswick. Faculty of Administration"} 1 +2024-09-11 09:03:41.927229 2024-09-11 09:03:41.927232 7f427033-effd-4514-89e2-5dea277b97c2 {"md5": "79d7689059ef830ce525afb9be5dfbbd", "pid": "997040386", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6527478-7", "source": "GND"}], "variant_name": ["LJC Ost"], "preferred_name": "Leder-Jeans-Club Ost", "country_associated": "gw", "variant_access_point": ["LJC Ost. Abkuerzung"], "authorized_access_point": "Leder-Jeans-Club Ost", "biographical_information": ["Sitz nicht ermittelt"]} 1 +2024-09-11 09:03:42.009472 2024-09-11 09:03:42.009477 5aa27bf9-71e6-4590-b399-0e21699dc7c9 {"md5": "14eeda25f7cf5cc44b8a0dc9c40e918b", "pid": "997187581", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6100624-5", "source": "GND"}], "preferred_name": "Symposium in Honour of Ezio Silvestroni and Ida Bianco", "country_associated": "it", "authorized_access_point": "Symposium in Honour of Ezio Silvestroni and Ida Bianco, 1999, Rom"} 1 +2024-09-11 09:03:42.080616 2024-09-11 09:03:42.08062 23aff00e-6d05-48a3-8945-f8205a018d9c {"md5": "749d1e71b147bb7920eb423c4296ef3e", "pid": "997192240", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6100903-9", "source": "GND"}], "variant_name": ["Weltbankgruppe. Operations Evaluation Unit of MIGA", "Weltbankgruppe. Operations Evaluation Unit", "OEU"], "preferred_name": "Weltbankgruppe. MIGA Operations Evaluation Unit", "variant_access_point": ["Weltbankgruppe. Operations Evaluation Unit of MIGA", "Weltbankgruppe. Operations Evaluation Unit", "OEU. Abkuerzung"], "date_of_establishment": "2002", "authorized_access_point": "Weltbankgruppe. MIGA Operations Evaluation Unit"} 1 +2024-09-11 09:03:42.148544 2024-09-11 09:03:42.148549 0f76452a-20f4-48ec-9c3e-1063fecf9297 {"md5": "da25d676478039bf3efb2fc1c2d36ba2", "pid": "997206845", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6102952-X", "source": "GND"}], "variant_name": ["USA. Public Health Service. Office of Disease Prevention and Health Promotion", "USA. Office of Public Health and Science. Office of Disease Prevention and Health Promotion", "Office of Disease Prevention and Health Promotion", "USA. Department of Health and Human Services. Office of Disease Prevention and Health Promotion", "ODPHP"], "preferred_name": "USA. Office of Disease Prevention and Health Promotion", "country_associated": "xxu", "variant_access_point": ["USA. Public Health Service. Office of Disease Prevention and Health Promotion", "USA. Office of Public Health and Science. Office of Disease Prevention and Health Promotion", "Office of Disease Prevention and Health Promotion. USA", "USA. Department of Health and Human Services. Office of Disease Prevention and Health Promotion", "ODPHP. Abkuerzung"], "authorized_access_point": "USA. Office of Disease Prevention and Health Promotion"} 1 +2024-09-11 09:03:42.206723 2024-09-11 09:03:42.206725 1462941e-feb7-48b6-8002-40c202639e5f {"md5": "4a82a525eceb2c618000f0c2bf7eb534", "pid": "997478748", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16024811-5", "source": "GND"}], "variant_name": ["Bammesberger"], "preferred_name": "Bammesberger & Co.", "country_associated": "gw", "variant_access_point": ["Bammesberger. Firma"], "authorized_access_point": "Bammesberger & Co.", "biographical_information": ["Maschinenbaufabrik 1921 in Leonberg gegründet"]} 1 +2024-09-11 09:03:42.408659 2024-09-11 09:03:42.408664 b39921e7-e392-4b8f-a889-be0a17daa91e {"md5": "1a8202a4930257c857cad52a5be1a80e", "pid": "99781926X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16026503-4", "source": "GND"}], "variant_name": ["CIE Seminar on Computer Programs for Light and Lighting"], "preferred_name": "Seminar on Computer Programs for Light and Lighting", "country_associated": "au", "variant_access_point": ["CIE Seminar on Computer Programs for Light and Lighting, 1992, Wien"], "authorized_access_point": "Seminar on Computer Programs for Light and Lighting, 1992, Wien"} 1 +2024-09-11 09:03:42.468418 2024-09-11 09:03:42.468424 0566e4a7-6c23-4429-a13b-20cfc86e8a17 {"md5": "caaf210112a723c21bd0be4c4088b100", "pid": "997997117", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6528107-X", "source": "GND"}], "preferred_name": "Ausstellung Peter Philippen - Heute", "country_associated": "gw", "authorized_access_point": "Ausstellung Peter Philippen - Heute, 1994, Gronau (Westf.)"} 1 +2024-09-11 09:03:42.527353 2024-09-11 09:03:42.527358 0798ad22-20b9-44c8-9d42-52ebd10537cc {"md5": "12b6ea4fa77105b547ba009a6bc035f9", "pid": "997998881", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6105033-7", "source": "GND"}], "preferred_name": "Amtliche Lehrerbücherei", "authorized_access_point": "Amtliche Lehrerbücherei. Breslau"} 1 +2024-09-11 09:03:42.595681 2024-09-11 09:03:42.595687 dc941396-fc5f-4e62-b3a5-57730c485b90 {"md5": "a609d89ddae272f553d7f638dacdc29e", "pid": "998032514", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16027470-9", "source": "GND"}], "variant_name": ["SVR", "Schulleitungsverband Rheinland-Pfalz e.V."], "preferred_name": "Schulleitungsverband Rheinland-Pfalz", "country_associated": "gw", "variant_access_point": ["SVR. Abkuerzung", "Schulleitungsverband Rheinland-Pfalz e.V.. Unveraenderte Form"], "authorized_access_point": "Schulleitungsverband Rheinland-Pfalz"} 1 +2024-09-11 09:03:42.652982 2024-09-11 09:03:42.65299 b5078ace-8226-4e1f-bfd3-34f4e8d9d506 {"md5": "8689715db440c78371f2572a31a02b69", "pid": "998115606", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16028518-5", "source": "GND"}], "preferred_name": "Deutsche Aufbauschule Amberg", "authorized_access_point": "Deutsche Aufbauschule Amberg"} 1 +2024-09-11 09:03:42.718368 2024-09-11 09:03:42.718373 b4689691-5a25-48cc-be61-2cbdfcac1487 {"md5": "31ffe3ee5c5da7080ac8361270975a1d", "pid": "998143278", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16031285-1", "source": "GND"}], "preferred_name": "Umwelttagung", "country_associated": "gw", "authorized_access_point": "Umwelttagung, 2002, Passau"} 1 +2024-09-11 09:03:42.787593 2024-09-11 09:03:42.787599 fc3e1f22-bcc6-4320-a97b-51d5006a5ab3 {"md5": "5ec5758d6ffdc44c9fa410b0313a328d", "pid": "998153915", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16032349-6", "source": "GND"}], "variant_name": ["Tournes, Libraire"], "preferred_name": "Samuel de Tournes, Libraire", "country_associated": "sz", "variant_access_point": ["Tournes, Libraire. Genf"], "authorized_access_point": "Samuel de Tournes, Libraire. Genf"} 1 +2024-09-11 09:03:42.847885 2024-09-11 09:03:42.847889 55f82f8c-62a1-4043-af76-9efc742411b0 {"md5": "092237afd77dfbe0c51bdee1f40639f9", "pid": "998167037", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16033661-2", "source": "GND"}], "variant_name": ["Association Européenne des Pharmaciens Hôpitaux", "AEPH", "Europäische Vereinigung der Krankenhaus-Apotheker", "EAHP", "Association européene des pharmaciens des hopitaux", "AEPH", "Europäische Vereinigung der Krankenhausapotheker", "EAHP"], "preferred_name": "European Association of Hospital Pharmacists", "variant_access_point": ["Association Européenne des Pharmaciens Hôpitaux", "AEPH. Abkuerzung", "Europäische Vereinigung der Krankenhaus-Apotheker", "EAHP. Abkuerzung", "Association européene des pharmaciens des hopitaux", "AEPH. Association européene des pharmaciens des hopitaux", "Europäische Vereinigung der Krankenhausapotheker", "EAHP. European Association of Hospital Pharmacists"], "date_of_establishment": "1972", "authorized_access_point": "European Association of Hospital Pharmacists"} 1 +2024-09-11 09:03:42.902497 2024-09-11 09:03:42.9025 e9266751-f9db-4cdc-b942-4efb09277df3 {"md5": "371593636d5c4e0d5c896e6cd290f4ae", "pid": "998173983", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16034356-2", "source": "GND"}], "variant_name": ["International Telecommunication Energy Conference, 27", "International Telecommunications Energy Conference, 27"], "preferred_name": "INTELEC, 27", "variant_access_point": ["International Telecommunication Energy Conference, 27, 2005, Berlin", "International Telecommunications Energy Conference, 27, 2005, Berlin"], "authorized_access_point": "INTELEC, 27, 2005, Berlin"} 1 +2024-09-11 09:03:42.957415 2024-09-11 09:03:42.957418 1ea57efe-9356-405f-8295-f0b61f936ab2 {"md5": "5f0232e0e05a2425828700ab8a662771", "pid": "998174807", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16034438-4", "source": "GND"}], "variant_name": ["Asociación Amigos de Valle"], "preferred_name": "Asociación Amigos de Valle-Inclán", "country_associated": "sp", "variant_access_point": ["Asociación Amigos de Valle"], "authorized_access_point": "Asociación Amigos de Valle-Inclán"} 1 +2024-09-11 09:03:43.016043 2024-09-11 09:03:43.016046 46a35b94-e323-4573-8666-9dfe770a1867 {"md5": "6c15f66a20b3db3ff3fc615370002f2b", "pid": "998198137", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16036771-2", "source": "GND"}], "preferred_name": "Colloque Intitulé Frontières-Frontière", "country_associated": "fr", "authorized_access_point": "Colloque Intitulé Frontières-Frontière, 2004, Bordeaux"} 1 +2024-09-11 09:03:43.072613 2024-09-11 09:03:43.072617 09378512-f37d-434b-9c6c-44a165b183c2 {"md5": "3873246a0c63d5f4b10792f50e2b66e8", "pid": "998198323", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16036790-6", "source": "GND"}], "variant_name": ["Montessori Landesverbannd Bayern e.V."], "preferred_name": "Montessori-Landesverband Bayern", "country_associated": "gw", "variant_access_point": ["Montessori Landesverbannd Bayern e.V.. Unveraenderte Form"], "date_of_establishment": "1985", "authorized_access_point": "Montessori-Landesverband Bayern"} 1 +2024-09-11 09:03:43.133544 2024-09-11 09:03:43.133546 68876565-fbff-4d49-be6b-a3ddb6623156 {"md5": "4528b9351615ab3c48e6e075f5e10738", "pid": "998216801", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16038638-X", "source": "GND"}], "variant_name": ["International Conference on Japanese Literature, 22"], "preferred_name": "Kokusai-Nihon-Bungaku-Kenkyū-Shūkai, 22", "country_associated": "ja", "variant_access_point": ["International Conference on Japanese Literature, 22, 1998, Tokio"], "parallel_access_point": ["国際日本文学研究集会, 22, 1998, 東京"], "authorized_access_point": "Kokusai-Nihon-Bungaku-Kenkyū-Shūkai, 22, 1998, Tokio"} 1 +2024-09-11 09:03:43.19373 2024-09-11 09:03:43.193735 4a7b0feb-def7-492b-ae58-a9f33c74bc99 {"md5": "8f0a1564b26dce5862c1d3083584276b", "pid": "99821731X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16038689-5", "source": "GND"}], "variant_name": ["Actienbrauerei", "Aktien-Brauerei", "Actien-Brauerei"], "preferred_name": "Aktienbrauerei", "variant_access_point": ["Actienbrauerei. Ingolstadt", "Aktien-Brauerei. Ingolstadt", "Actien-Brauerei. Ingolstadt"], "authorized_access_point": "Aktienbrauerei. Ingolstadt"} 1 +2024-09-11 09:03:43.247541 2024-09-11 09:03:43.247544 5b50cc94-ec9e-42b7-b7fc-96ba6bd19877 {"md5": "6a7d44603fb0afc79662573c405d3885", "pid": "998245127", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16041470-2", "source": "GND"}], "preferred_name": "Evangelisch-Reformierte Kirchengemeinde", "country_associated": "gw", "authorized_access_point": "Evangelisch-Reformierte Kirchengemeinde. Bunde"} 1 +2024-09-11 09:03:43.301001 2024-09-11 09:03:43.301005 01768f84-ccb6-4e7a-9361-ac6a0c1f19ab {"md5": "6a1b156436aa995d82ee4f3d35d40b99", "pid": "998245518", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16041509-3", "source": "GND"}], "preferred_name": "Sonnberg-Buam", "authorized_access_point": "Sonnberg-Buam"} 1 +2024-09-11 09:03:43.356908 2024-09-11 09:03:43.356911 0e4b9edd-d432-45fb-a1f3-88c5dc77e0d8 {"md5": "b1049279b49238c1f2a99652250464c1", "pid": "998251313", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16042089-1", "source": "GND"}], "preferred_name": "Course of Empire", "authorized_access_point": "Course of Empire"} 1 +2024-09-11 09:03:43.411951 2024-09-11 09:03:43.411956 5abc0b5d-f4a9-4e2a-a375-17ea35b39991 {"md5": "b748e6b9f21b18e29f69cdf318ab09bb", "pid": "998278815", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16044839-6", "source": "GND"}], "preferred_name": "Ausstellung Zugluft - Kunst und Kultur in der Innerschweiz 1920 - 1950", "country_associated": "sz", "authorized_access_point": "Ausstellung Zugluft - Kunst und Kultur in der Innerschweiz 1920 - 1950, 2008, Stans"} 1 +2024-09-11 09:03:43.481355 2024-09-11 09:03:43.481359 bd935d92-20db-41ff-b7f5-ca7981aa9a1c {"md5": "34fdda4a6625ed16933ca2eaa0ec2cee", "pid": "998292125", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16046170-4", "source": "GND"}], "variant_name": ["Imagina, 15", "Imagina", "Imagina"], "preferred_name": "Imagina, 15", "country_associated": "mc", "variant_access_point": ["Imagina, 15, 1996, Monaco", "Imagina, 15. 1996, Monte Carlo", "Imagina, 1996, Monte Carlo"], "authorized_access_point": "Imagina, 15, 1996, Monte Carlo", "biographical_information": ["Internationale Fachmesse für Computeranimation"]} 1 +2024-09-11 09:03:43.550676 2024-09-11 09:03:43.550678 4c41aac3-d180-4373-9098-8050d5f041db {"md5": "8e3a2176a26555b89587f99801f22861", "pid": "998331163", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16047162-X", "source": "GND"}], "preferred_name": "Ausstellung Jim Wenders. Journey to Onomichi", "authorized_access_point": "Ausstellung Jim Wenders. Journey to Onomichi, 2009 - 2010, Berlin"} 1 +2024-09-11 09:03:43.609507 2024-09-11 09:03:43.60951 2a7d23e0-142f-482c-ac26-c7fe8d19f51c {"md5": "94669041b9e2039d93fce357a5412ef0", "pid": "998858234", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16049255-5", "source": "GND"}], "variant_name": ["SPD"], "preferred_name": "Sozialdemokratische Partei Deutschlands. Ortsverein", "country_associated": "gw", "variant_access_point": ["SPD. Groß Stöckheim"], "authorized_access_point": "Sozialdemokratische Partei Deutschlands. Ortsverein. Groß Stöckheim"} 1 +2024-09-11 09:03:43.666054 2024-09-11 09:03:43.666059 e8b6d7d2-81c9-492f-b187-f32d22a40062 {"md5": "f4981edfa37e96d5ce855a63ab732670", "pid": "998904635", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16049441-2", "source": "GND"}], "variant_name": ["ICA Symposium on Cartography for Central and Eastern Europe, 1", "ICA Symposium on Cartography for CEE, 1", "Symposium on Cartography for CEE, 1", "CEE"], "preferred_name": "Symposium on Cartography for Central and Eastern Europe, 1", "country_associated": "au", "variant_access_point": ["ICA Symposium on Cartography for Central and Eastern Europe, 1, 2009, Wien", "ICA Symposium on Cartography for CEE, 1, 2009, Wien", "Symposium on Cartography for CEE, 1, 2009, Wien", "CEE"], "authorized_access_point": "Symposium on Cartography for Central and Eastern Europe, 1, 2009, Wien"} 1 +2024-09-11 09:03:43.732078 2024-09-11 09:03:43.732081 ae41f346-8540-4c26-b477-bbca378d6549 {"md5": "7c5309bea24ce23dc35ed5125b6d9d97", "pid": "999064185", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16050131-3", "source": "GND"}], "preferred_name": "TLS, 5", "country_associated": "gw", "authorized_access_point": "TLS, 5, 2009, Fulda", "biographical_information": ["TLS=Terrestrische Laserscanning"]} 1 +2024-09-11 09:03:44.494778 2024-09-11 09:03:44.494782 55e5bbc7-eefd-4596-b53f-aacddb779f5a {"md5": "8982b98d24d22270afe14445a5d6ea61", "pid": "999991361", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16054990-5", "source": "GND"}], "preferred_name": "Exhibition Rachel Whiteread, Drawings", "country_associated": "xxu", "authorized_access_point": "Exhibition Rachel Whiteread, Drawings, 2010 - 2011, Los Angeles, Calif. u.a."} 1 +2024-09-11 09:03:43.790643 2024-09-11 09:03:43.790648 adea276a-f63a-40a6-8cd4-37afae13909b {"md5": "1335d78e320d0ec7f39b492242025522", "pid": "999203592", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6528986-9", "source": "GND"}], "variant_name": ["Institut des sciences du langage et de la communication, Université de Neuchâtel", "Institut des sciences du langage et de la communication", "Université de Neuchâtel. Faculté des lettres et sciences humaines. Institut des sciences du langage et de la communication", "Institut des sciences du langage et de la communication", "Institut des Sciences du Langage et de la Communication"], "preferred_name": "Université de Neuchâtel. Institut des sciences du langage et de la communication", "country_associated": "sz", "variant_access_point": ["Institut des sciences du langage et de la communication, Université de Neuchâtel. Unveraenderte Form", "Institut des sciences du langage et de la communication", "Université de Neuchâtel. Faculté des lettres et sciences humaines. Institut des sciences du langage et de la communication", "Institut des sciences du langage et de la communication. Université de Neuchâtel", "Institut des Sciences du Langage et de la Communication. Neuchâtel"], "authorized_access_point": "Université de Neuchâtel. Institut des sciences du langage et de la communication"} 1 +2024-09-11 09:03:43.850202 2024-09-11 09:03:43.850206 3fe69bca-cb64-410b-88a4-7097c1499561 {"md5": "4287def1b67c995e99111bd5f58051c7", "pid": "999527061", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6108863-8", "source": "GND"}], "preferred_name": "Čtenija, Posvjaščennye Razrabotke Naučnogo Nasledija i Razvitiju Idej K. Ė. Ciolkovskogo, 12", "authorized_access_point": "Čtenija, Posvjaščennye Razrabotke Naučnogo Nasledija i Razvitiju Idej K. Ė. Ciolkovskogo, 12, 1977, Kaluga"} 1 +2024-09-11 09:03:43.918055 2024-09-11 09:03:43.91806 16277366-b7db-4a84-ad66-898815c12b96 {"md5": "54b6ec681f7640bd77dddb6c19509813", "pid": "999533908", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6110264-7", "source": "GND"}], "variant_name": ["Louisville Stompers"], "preferred_name": "Clifford Hayes' Louisville Stompers", "country_associated": "xxu", "variant_access_point": ["Louisville Stompers"], "authorized_access_point": "Clifford Hayes' Louisville Stompers"} 1 +2024-09-11 09:03:43.987437 2024-09-11 09:03:43.987443 f3e28383-afa2-47c1-8ac4-4a3cac02221c {"md5": "d07254bc149ca0810de1914796d609e6", "pid": "999541161", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/6109454-7", "source": "GND"}], "preferred_name": "Vsesojuznyj Simpozium po Ėksperimental'noj Poliploidii u Šelkovicy", "authorized_access_point": "Vsesojuznyj Simpozium po Ėksperimental'noj Poliploidii u Šelkovicy"} 1 +2024-09-11 09:03:44.047734 2024-09-11 09:03:44.047737 2e01aed5-08f1-4a4d-9ae5-9591f71b9800 {"md5": "be9555564acaab1474922637dada6c63", "pid": "999549847", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16052597-4", "source": "GND"}], "variant_name": ["Universidad Nacional Andrés Bello. Facultad de Ciencias Económicas y Administrativas. Centro de Desarrollo", "Universidad Nacional Andrés Bello. Centro de Desarrollo"], "preferred_name": "Centro de Desarrollo", "country_associated": "cl", "variant_access_point": ["Universidad Nacional Andrés Bello. Santiago de Chile. Facultad de Ciencias Económicas y Administrativas. Centro de Desarrollo", "Universidad Nacional Andrés Bello. Santiago de Chile. Centro de Desarrollo"], "authorized_access_point": "Centro de Desarrollo. Santiago de Chile"} 1 +2024-09-11 09:03:44.159325 2024-09-11 09:03:44.159329 44f4f084-ee3f-4857-b600-9b9325ffc765 {"md5": "2e0f6863036bfc81adb126d23be2bab5", "pid": "999646869", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16053190-1", "source": "GND"}], "preferred_name": "Viribus Unitis, Hilfsverein für Lungenkranke in den Österreichischen Königreichen und Ländern", "authorized_access_point": "Viribus Unitis, Hilfsverein für Lungenkranke in den Österreichischen Königreichen und Ländern"} 1 +2024-09-11 09:03:44.215788 2024-09-11 09:03:44.215792 09333a4f-5545-41de-b93e-5400f9919152 {"md5": "3058357d76ae5813a0cc64dd6f8db9af", "pid": "999780859", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16053855-5", "source": "GND"}], "preferred_name": "Spitzbart", "country_associated": "gw", "date_of_establishment": "2007", "authorized_access_point": "Spitzbart", "biographical_information": ["dt. Rocktrio um Björn Müller"]} 1 +2024-09-11 09:03:44.272747 2024-09-11 09:03:44.272751 c7a0f3bc-f0c1-4ee7-9f84-4b92332dbf10 {"md5": "cb4132a60bf1484da3bb624d7892786d", "pid": "999853155", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16054271-6", "source": "GND"}], "preferred_name": "Freiwillige Feuerwehr", "date_of_establishment": "1934", "authorized_access_point": "Freiwillige Feuerwehr. Pfalzfeld"} 1 +2024-09-11 09:03:44.329407 2024-09-11 09:03:44.329412 6f04a1f5-6b85-40bf-9f58-e54d4853fcb5 {"md5": "dc9faae2e1d1a6021ef29c8421d54836", "pid": "999862243", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16054325-3", "source": "GND"}], "variant_name": ["Industrie- und Gewerbeschule Neustadt, Herzogtum Coburg"], "preferred_name": "Herzogliche Industrie- und Gewerbeschule Neustadt, Herzogtum Coburg", "variant_access_point": ["Industrie- und Gewerbeschule Neustadt, Herzogtum Coburg"], "authorized_access_point": "Herzogliche Industrie- und Gewerbeschule Neustadt, Herzogtum Coburg"} 1 +2024-09-11 09:03:44.383303 2024-09-11 09:03:44.383306 0b8803af-89d7-44ae-b545-25f491ae2dbd {"md5": "2e80297f10f09523c994ad166045b515", "pid": "999871633", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16054384-8", "source": "GND"}], "preferred_name": "Großdeutsche Feuerbestattung, Versicherungs-Verein auf Gegenseitigkeit", "authorized_access_point": "Großdeutsche Feuerbestattung, Versicherungs-Verein auf Gegenseitigkeit. Berlin", "biographical_information": ["Vorlage: 1934 - 1939"]} 1 +2024-09-11 09:03:44.439273 2024-09-11 09:03:44.439275 47290af3-3a43-4612-9b87-297fb2f22ec7 {"md5": "9d68dc219532677c218db43ea79be63c", "pid": "999921770", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16054571-7", "source": "GND"}], "preferred_name": "Convegno San Bernardo di Clairvaux, 3", "country_associated": "it", "authorized_access_point": "Convegno San Bernardo di Clairvaux, 3, 2008, Rom"} 1 diff --git a/data/aggnd_pidstore.csv b/data/aggnd_pidstore.csv index 0d5280c3..db9f3093 100644 --- a/data/aggnd_pidstore.csv +++ b/data/aggnd_pidstore.csv @@ -1,3663 +1,3663 @@ -2023-07-08 08:13:34.473679 2023-07-08 08:13:34.473684 aggnd 000193364 R rec d514b0bf-6d5d-4db3-ad63-dfa902d1f469 -2023-07-08 08:13:33.050928 2023-07-08 08:13:33.050934 aggnd 000018953 R rec 41a08512-08b4-4bf6-89c1-e664ae077c00 -2023-07-08 08:13:33.174402 2023-07-08 08:13:33.174408 aggnd 00002676X R rec 368b1714-6915-44ed-b982-4e141eea7de5 -2023-07-08 08:13:33.237117 2023-07-08 08:13:33.237124 aggnd 000089540 R rec 4fff861a-c34f-4159-9499-b981736bdf84 -2023-07-08 08:13:33.302894 2023-07-08 08:13:33.302906 aggnd 000115460 R rec 43e698f0-4144-416d-94af-8626a76f1351 -2023-07-08 08:13:33.384863 2023-07-08 08:13:33.384876 aggnd 000125121 R rec b38020d6-1f6e-4e08-afe5-7982b2c8be60 -2023-07-08 08:13:33.47977 2023-07-08 08:13:33.479783 aggnd 000132764 R rec aaef8541-2a89-4c3b-ad9a-30965a1aae13 -2023-07-08 08:13:33.583019 2023-07-08 08:13:33.583038 aggnd 000139076 R rec fbc5e496-e93d-466e-a534-34271142e810 -2023-07-08 08:13:33.687863 2023-07-08 08:13:33.687876 aggnd 000140899 R rec a9ecd330-81ff-494d-81d3-599e7c975164 -2023-07-08 08:13:33.781365 2023-07-08 08:13:33.781381 aggnd 00014388X R rec 9bc5b257-92ca-4fe1-8b43-fb9e3e671f01 -2023-07-08 08:13:33.881606 2023-07-08 08:13:33.881619 aggnd 000151408 R rec e4b76e3e-80c7-4833-a806-0f6dea117740 -2023-07-08 08:13:33.975436 2023-07-08 08:13:33.975447 aggnd 000161632 R rec dc772294-d12d-4902-ba85-bdcd5b04472d -2023-07-08 08:13:34.060969 2023-07-08 08:13:34.060982 aggnd 000163791 R rec 65142ed3-e3c4-4be8-be99-99126cf33841 -2023-07-08 08:13:34.163844 2023-07-08 08:13:34.16386 aggnd 000167088 R rec 8d5221f9-b7c8-4c81-99c7-f7c7ad035547 -2023-07-08 08:13:34.271466 2023-07-08 08:13:34.271481 aggnd 000175978 R rec 82996468-7ad0-4aa3-a5e8-abd379e95054 -2023-07-08 08:13:34.411408 2023-07-08 08:13:34.411414 aggnd 000178020 R rec 5b2cc2f4-ab71-48eb-8bc0-8159f472e97f -2023-07-08 08:13:34.536954 2023-07-08 08:13:34.53696 aggnd 000250422 R rec ef7a8d2d-02c7-4937-86fc-b0bb8a9be5bd -2023-07-08 08:13:34.619177 2023-07-08 08:13:34.61919 aggnd 000269905 R rec c0c173f8-b6fa-4849-a84c-f7cbe9eb09b7 -2023-07-08 08:13:34.711157 2023-07-08 08:13:34.711167 aggnd 00037959X R rec 76d64f34-3c16-4ee4-917f-0cf47ba791ac -2023-07-08 08:13:34.799433 2023-07-08 08:13:34.799445 aggnd 000390003 R rec 0645750d-1e76-4810-a84e-6f5889dca8b1 -2023-07-08 08:13:34.89609 2023-07-08 08:13:34.8961 aggnd 000409928 R rec a11a2b7b-7ed8-492f-a624-d4d4977f8590 -2023-07-08 08:13:34.982402 2023-07-08 08:13:34.982414 aggnd 000425729 R rec 8fb67962-3970-496d-ade0-a2ddf459450c -2023-07-08 08:13:35.079355 2023-07-08 08:13:35.079366 aggnd 000438049 R rec ab1c0863-674f-4dc6-b022-ad19a38d6d4b -2023-07-08 08:13:35.170974 2023-07-08 08:13:35.175575 aggnd 000441678 R rec 3e02b56b-d5d0-42b5-a8e2-2b8bd1da47ac -2023-07-08 08:13:35.277837 2023-07-08 08:13:35.277848 aggnd 00045561X R rec 9836ae89-050e-4e80-b607-00f0f63d2087 -2023-07-08 08:13:35.379949 2023-07-08 08:13:35.379959 aggnd 000549568 R rec 17dbd017-14c8-413f-b778-2fbc6e6fda6c -2023-07-08 08:13:35.467685 2023-07-08 08:13:35.467695 aggnd 000555851 R rec 0e9ee567-47d7-4d87-a79a-078637da61c7 -2023-07-08 08:13:35.562787 2023-07-08 08:13:35.562799 aggnd 000602140 R rec 707e1246-d514-4caf-a7fc-a87db011b3f1 -2023-07-08 08:13:35.664041 2023-07-08 08:13:35.664055 aggnd 000613258 R rec 87c3711c-1e58-4659-add6-b3b27b3b0d89 -2023-07-08 08:13:35.764075 2023-07-08 08:13:35.764092 aggnd 000613665 R rec 4086ceca-0591-43a6-807b-6bd31c236d61 -2023-07-08 08:13:35.858914 2023-07-08 08:13:35.858924 aggnd 000662348 R rec c4cb15e7-7ba5-4cf5-8702-40f756841a28 -2023-07-08 08:13:35.970698 2023-07-08 08:13:35.970715 aggnd 000666394 R rec d7dcefeb-1d91-4bff-ab47-301a907598af -2023-07-08 08:13:36.103616 2023-07-08 08:13:36.103629 aggnd 000746568 R rec 74ff5027-804b-4cc5-8d2f-8d0af7dde79e -2023-07-08 08:13:36.218005 2023-07-08 08:13:36.218021 aggnd 00074669X R rec d7cca89a-ca9e-4c0d-8590-a8f9c509866c -2023-07-08 08:13:36.32575 2023-07-08 08:13:36.325765 aggnd 000749915 R rec 061bfd88-f18c-422a-a4fe-1304c552d136 -2023-07-08 08:13:36.450125 2023-07-08 08:13:36.450131 aggnd 000821829 R rec cf30a718-4afd-443d-8b25-39a472372b5d -2023-07-08 08:13:36.563589 2023-07-08 08:13:36.563599 aggnd 000827673 R rec 54bd8603-5549-4bbb-af44-3efd6dc8d0da -2023-07-08 08:13:36.694743 2023-07-08 08:13:36.694758 aggnd 000837318 R rec 0e9c33f4-923d-4d70-bf76-463a7afd451c -2023-07-08 08:13:36.81689 2023-07-08 08:13:36.816903 aggnd 000842362 R rec 49279664-0c7f-46e2-b58e-53b6757b159f -2023-07-08 08:13:36.916482 2023-07-08 08:13:36.916496 aggnd 000844470 R rec 5782071d-02fb-4c92-a212-26d4a3d4ac4e -2023-07-08 08:13:37.017172 2023-07-08 08:13:37.017188 aggnd 000903515 R rec 7af382b3-d250-4473-a68e-26fa95fc3b60 -2023-07-08 08:13:37.143537 2023-07-08 08:13:37.143552 aggnd 000907820 R rec ee34f08c-d0b3-48fd-a852-8c3906529fd4 -2023-07-08 08:13:37.255287 2023-07-08 08:13:37.255303 aggnd 001106767 R rec a20847d5-c4f8-4d3a-8386-5e5f14124eaf -2023-07-08 08:13:37.361868 2023-07-08 08:13:37.361883 aggnd 001116371 R rec 69164848-7b13-42f8-9665-9b2733029ea3 -2023-07-08 08:13:37.470234 2023-07-08 08:13:37.470245 aggnd 00112207X R rec 30e5020a-0592-4bdb-ade8-8ea732398e13 -2023-07-08 08:13:37.587403 2023-07-08 08:13:37.587417 aggnd 001148028 R rec ef0f181f-e989-4ce9-8eca-a6a6c6d00d53 -2023-07-08 08:13:37.698589 2023-07-08 08:13:37.698595 aggnd 001156373 R rec cc5af25a-f92b-46bf-a56d-c38d27234d83 -2023-07-08 08:13:37.782189 2023-07-08 08:13:37.7822 aggnd 001170325 R rec f177ed24-fa19-4371-a6cb-595a99addc75 -2023-07-08 08:13:37.877649 2023-07-08 08:13:37.877661 aggnd 001183834 R rec 42b9f8b5-7949-41c1-b662-bf81a0365630 -2023-07-08 08:13:37.969738 2023-07-08 08:13:37.969754 aggnd 001187813 R rec 84d97d2a-8daf-47ba-bebf-37cd4465267e -2023-07-08 08:13:38.079104 2023-07-08 08:13:38.079116 aggnd 001192396 R rec b7ebfb36-98b9-4e88-874a-735b35ac1857 -2023-07-08 08:13:38.181431 2023-07-08 08:13:38.181446 aggnd 001226355 R rec 56dec152-929a-4967-8ddc-84f4859eeca4 -2023-07-08 08:13:38.293496 2023-07-08 08:13:38.293511 aggnd 00122722X R rec 1d952ec0-9e73-44a6-8d58-720253ddb053 -2023-07-08 08:13:38.40199 2023-07-08 08:13:38.402008 aggnd 001247697 R rec 7fa1cc99-0a6e-4097-a2ae-34671cd16a42 -2023-07-08 08:13:38.510889 2023-07-08 08:13:38.5109 aggnd 001277936 R rec 12e9c0dd-5a08-4c3a-b183-99571d426af4 -2023-07-08 08:13:38.61626 2023-07-08 08:13:38.616276 aggnd 001279858 R rec f6db1ed6-205d-42f7-849c-e95478af245f -2023-07-08 08:13:38.720942 2023-07-08 08:13:38.720952 aggnd 001282891 R rec 9efb59df-b391-4256-beae-a18d07667b95 -2023-07-08 08:13:38.827452 2023-07-08 08:13:38.827463 aggnd 001284150 R rec cf733921-bc80-4a2c-b7a8-601521b03687 -2023-07-08 08:13:38.929621 2023-07-08 08:13:38.929635 aggnd 001299662 R rec b7e92def-2b30-4c24-8000-cd1ae6966e2a -2023-07-08 08:13:39.041617 2023-07-08 08:13:39.041633 aggnd 001303317 R rec 8e413a45-ede0-4579-9949-71d18d42a8d0 -2023-07-08 08:13:39.135606 2023-07-08 08:13:39.135622 aggnd 001306634 R rec 6d0edb64-7bee-4a94-a4ad-f5a8fca48213 -2023-07-08 08:13:39.245797 2023-07-08 08:13:39.24581 aggnd 001330578 R rec f2794716-ffaa-4d50-99d3-62c42eec6dee -2023-07-08 08:13:39.366601 2023-07-08 08:13:39.366611 aggnd 001371924 R rec 1ea05250-ba8a-44c8-a659-fc11e45787e8 -2023-07-08 08:13:39.465853 2023-07-08 08:13:39.465866 aggnd 001376136 R rec 5e12630c-fe4c-4643-9156-33a3d7511772 -2023-07-08 08:13:39.565945 2023-07-08 08:13:39.565957 aggnd 001378600 R rec 5d420204-d017-4997-8753-8607455d3b89 -2023-07-08 08:13:39.664187 2023-07-08 08:13:39.664203 aggnd 001381504 R rec c1066440-cd43-4443-a665-a735fbe6aa53 -2023-07-08 08:13:39.762934 2023-07-08 08:13:39.762948 aggnd 001434756 R rec c11ab3fd-370c-4d76-a416-692d28318e37 -2023-07-08 08:13:39.884327 2023-07-08 08:13:39.884343 aggnd 001436872 R rec 601cc1dd-79f8-45d8-b2a4-656210807918 -2023-07-08 08:13:39.981222 2023-07-08 08:13:39.981233 aggnd 001453459 R rec 6917b768-f10d-4369-a9b9-76b402060577 -2023-07-08 08:13:40.077269 2023-07-08 08:13:40.077282 aggnd 001457101 R rec 16e3c8b8-3081-4973-8874-7517f9715c43 -2023-07-08 08:13:40.182408 2023-07-08 08:13:40.182418 aggnd 002004526 R rec 32dc1dbb-8908-4f78-9b28-8d2da58625d5 -2023-07-08 08:13:40.301814 2023-07-08 08:13:40.301827 aggnd 002102536 R rec 89ae09b0-0d93-4a6c-8615-42c5287730c6 -2023-07-08 08:13:40.392039 2023-07-08 08:13:40.392055 aggnd 00210637X R rec b4892e2c-d8cf-4c1b-9dc3-9be6ce36e091 -2023-07-08 08:13:40.499838 2023-07-08 08:13:40.499854 aggnd 002111748 R rec e03a9084-52b7-438d-9127-b8d71b646c93 -2023-07-08 08:13:40.604237 2023-07-08 08:13:40.604254 aggnd 002128683 R rec 3f546042-8388-48f2-9bcb-69b51149a451 -2023-07-08 08:13:40.70784 2023-07-08 08:13:40.707855 aggnd 002148323 R rec a148dda2-c6c4-4e3a-94e9-5dd433995194 -2023-07-08 08:13:40.805893 2023-07-08 08:13:40.805906 aggnd 002149176 R rec b7fb5def-f99e-4ff6-8fec-c94d6a613fae -2023-07-08 08:13:40.91329 2023-07-08 08:13:40.913304 aggnd 002150492 R rec 7dd45afc-04f7-4901-a8c2-d4da7fd1c685 -2023-07-08 08:13:41.028184 2023-07-08 08:13:41.028197 aggnd 002153912 R rec 6351e6cf-e230-4413-a51d-cca61a5c9a34 -2023-07-08 08:13:41.131841 2023-07-08 08:13:41.131855 aggnd 002156954 R rec 81e69767-6410-4b38-8b48-58e295e94906 -2023-07-08 08:13:41.249933 2023-07-08 08:13:41.249943 aggnd 002171260 R rec 1beac0b3-5d89-4522-8d77-c2040f3fa186 -2023-07-08 08:13:41.344791 2023-07-08 08:13:41.344807 aggnd 002210819 R rec 28fdfc10-408d-4da9-884d-cd26dfbde671 -2023-07-08 08:13:41.429828 2023-07-08 08:13:41.429839 aggnd 00221153X R rec 5e71a519-a94e-45b4-b970-a6a7a85620de -2023-07-08 08:13:41.535945 2023-07-08 08:13:41.535962 aggnd 00221167X R rec b6953f32-390a-4994-8a1c-3c63cd156107 -2023-07-08 08:13:41.651685 2023-07-08 08:13:41.651697 aggnd 002215942 R rec 2170b0a3-13fc-436d-b56d-9c63e5695dea -2023-07-08 08:13:41.762755 2023-07-08 08:13:41.762767 aggnd 002356368 R rec 7ebd0074-0da0-4c18-af98-a95ccdeb07e4 -2023-07-08 08:13:41.861831 2023-07-08 08:13:41.861844 aggnd 00236266X R rec 7228b015-03e0-441d-9f4f-c514a900bed6 -2023-07-08 08:13:41.961551 2023-07-08 08:13:41.961569 aggnd 002362880 R rec 8584915d-88ed-43b2-9cab-ac75e88a3b34 -2023-07-08 08:13:42.064405 2023-07-08 08:13:42.064416 aggnd 002407612 R rec 7ff6e73e-79ad-4cf6-837d-f939395f295b -2023-07-08 08:13:42.16567 2023-07-08 08:13:42.165689 aggnd 002411083 R rec 0121e5bf-3784-49d5-a26d-c4700a5112bb -2023-07-08 08:13:42.283583 2023-07-08 08:13:42.283593 aggnd 002413957 R rec bc24ef37-e0e5-47df-b2ae-41a5f6afc525 -2023-07-08 08:13:42.409414 2023-07-08 08:13:42.409429 aggnd 002447797 R rec 24ab14f1-5bb9-4737-964b-de00fb1ac284 -2023-07-08 08:13:42.502963 2023-07-08 08:13:42.502979 aggnd 002461102 R rec 85d7f626-1df6-45ff-9390-e9872d2c9559 -2023-07-08 08:13:42.600552 2023-07-08 08:13:42.60057 aggnd 002476738 R rec 41a75eb8-3a8f-4755-acf2-cd862e96abdd -2023-07-08 08:13:42.69153 2023-07-08 08:13:42.691542 aggnd 002529041 R rec 2f44b66e-2a16-471c-b02d-adcf807a332c -2023-07-08 08:13:42.793078 2023-07-08 08:13:42.793092 aggnd 002530937 R rec 23b16821-c41b-4fc3-b3cd-0fcb3cd543bf -2023-07-08 08:13:42.902594 2023-07-08 08:13:42.90261 aggnd 002531844 R rec 73f494a4-bb6e-4a77-ac06-625c785d3708 -2023-07-08 08:13:43.01689 2023-07-08 08:13:43.016902 aggnd 002537966 R rec 2efda238-571c-4990-b49a-f670cc9a346a -2023-07-08 08:13:43.129912 2023-07-08 08:13:43.129925 aggnd 002546329 R rec 44b981c8-6c91-49be-95c1-ffa7b0a68390 -2023-07-08 08:13:43.24716 2023-07-08 08:13:43.247173 aggnd 002602555 R rec c742d45d-d9ad-472f-8673-ba7c4b632dc8 -2023-07-08 08:13:43.355873 2023-07-08 08:13:43.355888 aggnd 002606232 R rec 6cf04410-7458-4db5-ba04-d3285d7015d1 -2023-07-08 08:13:43.468926 2023-07-08 08:13:43.468936 aggnd 00260955X R rec 4a05b7e5-d32a-413f-8041-05bfe0fa6f8b -2023-07-08 08:13:43.599748 2023-07-08 08:13:43.599762 aggnd 002610922 R rec 90fb83f1-7b21-4a7e-bc86-2c84c9e9074a -2023-07-08 08:13:43.718569 2023-07-08 08:13:43.718582 aggnd 002624508 R rec 2d28c193-d86e-49ee-b8ba-095bb032c051 -2023-07-08 08:13:43.842314 2023-07-08 08:13:43.842324 aggnd 002627019 R rec 86485ee6-8afc-4b82-9581-6f57839c3ad3 -2023-07-08 08:13:43.949577 2023-07-08 08:13:43.949588 aggnd 002740990 R rec 5497aae0-d6c8-4cfc-aabc-dd238d38f79e -2023-07-08 08:13:44.064178 2023-07-08 08:13:44.064195 aggnd 002744759 R rec d33735f0-7c04-4e64-bdb2-83949ba51362 -2023-07-08 08:13:44.177731 2023-07-08 08:13:44.177741 aggnd 002746387 R rec 62a405be-51f0-4380-a50e-8c8e7c0f451d -2023-07-08 08:13:44.284696 2023-07-08 08:13:44.284709 aggnd 00274659X R rec d78eed3d-fba9-4e7a-9327-98f3252fa6e0 -2023-07-08 08:13:44.452339 2023-07-08 08:13:44.452353 aggnd 00275486X R rec d50aec6d-ddac-474d-b4ec-cd9a2d0404c9 -2023-07-08 08:13:44.551719 2023-07-08 08:13:44.551732 aggnd 002765187 R rec 31701e5d-520d-4794-a030-e8c653c60591 -2023-07-08 08:13:44.675668 2023-07-08 08:13:44.675681 aggnd 00278064X R rec 2afe4bf7-d605-4e22-ba28-5b4824c05dd5 -2023-07-08 08:13:44.783446 2023-07-08 08:13:44.783458 aggnd 002785684 R rec 6bafda62-092b-4afd-9348-5ed4aca1b11d -2023-07-08 08:13:44.893787 2023-07-08 08:13:44.893805 aggnd 002804077 R rec 9d97fba3-123a-4ef5-a0dc-06fe698d5d71 -2023-07-08 08:13:45.001753 2023-07-08 08:13:45.001768 aggnd 002903296 R rec 713cd6c5-c4be-4e1b-a3d9-3e0732abd05e -2023-07-08 08:13:45.113527 2023-07-08 08:13:45.113544 aggnd 002910934 R rec c51c4894-dbef-483a-b579-708e727b853d -2023-07-08 08:13:45.228647 2023-07-08 08:13:45.228662 aggnd 003006816 R rec 88feb1d7-c254-4207-9038-6a1b37b2d932 -2023-07-08 08:13:45.329936 2023-07-08 08:13:45.329949 aggnd 003016617 R rec 28725c86-a955-42e8-9cbb-c05b005bc578 -2023-07-08 08:13:45.442669 2023-07-08 08:13:45.442681 aggnd 003051986 R rec 758a0a90-eb6b-44a0-9f83-7dc7937815e4 -2023-07-08 08:13:45.553828 2023-07-08 08:13:45.55384 aggnd 003063976 R rec 5e348fab-929f-4dd3-9f09-dc09d77d14f9 -2023-07-08 08:13:45.6977 2023-07-08 08:13:45.697711 aggnd 003071316 R rec 208450c8-c874-416f-8791-3f7f9e0d8090 -2023-07-08 08:13:45.814415 2023-07-08 08:13:45.814429 aggnd 003078434 R rec dd5f3079-96be-46f9-a612-69637a9191b2 -2023-07-08 08:13:45.916522 2023-07-08 08:13:45.916533 aggnd 003082725 R rec 93b83ca3-dcbb-45a6-82b4-4c72e3cc9bb8 -2023-07-08 08:13:46.027759 2023-07-08 08:13:46.027769 aggnd 003202720 R rec 18b368b7-62f6-453d-b982-e9636662c15c -2023-07-08 08:13:46.152193 2023-07-08 08:13:46.152203 aggnd 003500950 R rec 795f7468-7af7-453c-8dd2-e64a8b1d07b4 -2023-07-08 08:13:46.264142 2023-07-08 08:13:46.264157 aggnd 003700526 R rec 82a215bb-a9f6-4627-9151-bc4987383300 -2023-07-08 08:13:46.391427 2023-07-08 08:13:46.391442 aggnd 00370064X R rec ced525e9-115c-415c-b08e-a89502e04394 -2023-07-08 08:13:46.486484 2023-07-08 08:13:46.4865 aggnd 003806596 R rec 8d4af806-f78f-4d60-b271-de2ba11e3bf1 -2023-07-08 08:13:46.592401 2023-07-08 08:13:46.592416 aggnd 003811840 R rec 097e79be-e893-45f1-9a54-1c21877b841d -2023-07-08 08:13:46.728608 2023-07-08 08:13:46.728621 aggnd 00381307X R rec 5d8e7ea3-a78e-4c08-b129-fb04b6d5634d -2023-07-08 08:13:46.845527 2023-07-08 08:13:46.84554 aggnd 004008294 R rec 3de4d197-07ef-4708-8214-1b12d9d5e4d4 -2023-07-08 08:13:47.023025 2023-07-08 08:13:47.023038 aggnd 004029763 R rec 2463f6b5-029c-4722-b5e4-4e4ec3c86e71 -2023-07-08 08:13:47.157584 2023-07-08 08:13:47.157596 aggnd 004036239 R rec 503ef057-4bb8-4557-be76-4b8bf93b37cd -2023-07-08 08:13:47.278681 2023-07-08 08:13:47.278691 aggnd 004037073 R rec 9fd749ae-4729-419e-b261-30de2fd0a1e1 -2023-07-08 08:13:47.388264 2023-07-08 08:13:47.388275 aggnd 004056264 R rec 67edf26b-a623-48fa-b740-bcdc804fbf35 -2023-07-08 08:13:47.494791 2023-07-08 08:13:47.494801 aggnd 00406397X R rec 23c145eb-8390-49b7-91d3-a1b4204eab52 -2023-07-08 08:13:47.598824 2023-07-08 08:13:47.598836 aggnd 004083687 R rec 834d694b-c8bb-4a0f-a492-7bc5e8c1c0cc -2023-07-08 08:13:47.718686 2023-07-08 08:13:47.718697 aggnd 004084233 R rec 5527ee7d-ea0e-4bf9-9592-45a7009e416e -2023-07-08 08:13:47.829109 2023-07-08 08:13:47.829121 aggnd 00408487X R rec 8d5c7d02-57d9-43de-a218-1241fb56610d -2023-07-08 08:13:47.93183 2023-07-08 08:13:47.93184 aggnd 004088212 R rec 8af91caa-e3b8-4231-a129-8cb3b3346545 -2023-07-08 08:13:48.03965 2023-07-08 08:13:48.039662 aggnd 004089049 R rec 02880ac0-69b9-441f-92db-5c9d31d5c759 -2023-07-08 08:13:48.131879 2023-07-08 08:13:48.13189 aggnd 00409753X R rec 32dd32b7-a450-474a-bf31-b8a7162e3a4e -2023-07-08 08:13:48.224106 2023-07-08 08:13:48.224118 aggnd 004106059 R rec 3fa0fc4c-ebfe-44b3-b975-5d0490e33ee7 -2023-07-08 08:13:48.336329 2023-07-08 08:13:48.336341 aggnd 004110404 R rec 58cba6b1-5382-4fb5-be54-4ee5b35b94cf -2023-07-08 08:13:48.433263 2023-07-08 08:13:48.433341 aggnd 004112148 R rec 5b3d7265-3e6c-4cc2-acd9-643dfe0b4d08 -2023-07-08 08:13:48.521284 2023-07-08 08:13:48.521299 aggnd 004115996 R rec a7a935a6-cdb9-469b-b5d2-724e8adb380d -2023-07-08 08:13:48.620024 2023-07-08 08:13:48.620035 aggnd 004119983 R rec 9111d7b0-935d-4b1b-8c97-49d32a100e6a -2023-07-08 08:13:48.724159 2023-07-08 08:13:48.724171 aggnd 004123158 R rec bef713e4-bbce-40e5-87f8-690a1cf5bc26 -2023-07-08 08:13:48.832161 2023-07-08 08:13:48.832172 aggnd 004127900 R rec 92f41086-82d0-4165-80aa-acde562e2298 -2023-07-08 08:13:48.927303 2023-07-08 08:13:48.927316 aggnd 00414631X R rec 91e366ce-300a-4e12-bfed-f731fc9745a9 -2023-07-08 08:13:49.030867 2023-07-08 08:13:49.030878 aggnd 004149289 R rec ff035c53-69ff-4c80-a70f-230945e130df -2023-07-08 08:13:49.133336 2023-07-08 08:13:49.133346 aggnd 004150988 R rec de4f265d-0a56-4b14-983d-bb8fffe65bc3 -2023-07-08 08:13:49.258056 2023-07-08 08:13:49.258062 aggnd 004151917 R rec b1477026-d738-47fa-947a-87ed050b6b3d -2023-07-08 08:13:49.359897 2023-07-08 08:13:49.359909 aggnd 004159837 R rec 89a0f22d-afad-4275-bb30-b1ed8775f773 -2023-07-08 08:13:49.462924 2023-07-08 08:13:49.462945 aggnd 004171004 R rec a8a50d1c-a765-45ce-a294-125c089d714a -2023-07-08 08:13:49.567439 2023-07-08 08:13:49.567456 aggnd 00418484X R rec 930c11a6-7daf-47df-aa5e-9ef92e1204b0 -2023-07-08 08:13:49.694297 2023-07-08 08:13:49.694313 aggnd 004191811 R rec a043d558-bb44-4182-b3d2-d968458f0f81 -2023-07-08 08:13:49.805678 2023-07-08 08:13:49.805689 aggnd 004196287 R rec 4965ca20-78c8-4fcc-bbfd-f52ed7df6f34 -2023-07-08 08:13:49.909905 2023-07-08 08:13:49.909921 aggnd 004220765 R rec e95d13dc-75e0-4797-b689-80f20d0af1e2 -2023-07-08 08:13:50.042731 2023-07-08 08:13:50.042739 aggnd 004232933 R rec b695d719-8bf4-4dce-af91-c77d48b0d31f -2023-07-08 08:13:50.158369 2023-07-08 08:13:50.158385 aggnd 004247280 R rec 815d3d35-0d68-40cf-85c7-1c25751195a4 -2023-07-08 08:13:50.267337 2023-07-08 08:13:50.267352 aggnd 004263707 R rec 24f7fa0a-d5b8-409a-a73f-bcddaf867883 -2023-07-08 08:13:50.38184 2023-07-08 08:13:50.38185 aggnd 004265718 R rec 96ad9bb5-1fc1-4c2a-81db-d74b67d17f2b -2023-07-08 08:13:50.485621 2023-07-08 08:13:50.485631 aggnd 004270525 R rec 382b602b-17f9-4efb-a4f7-1fa8933eb526 -2023-07-08 08:13:50.605015 2023-07-08 08:13:50.605027 aggnd 004285565 R rec 9036389e-e9f1-4e33-a1be-ce0852651b16 -2023-07-08 08:13:50.72635 2023-07-08 08:13:50.726361 aggnd 004288637 R rec d3b299e2-c7cc-4374-8cd8-4de15e7f4174 -2023-07-08 08:13:50.842088 2023-07-08 08:13:50.842103 aggnd 004290674 R rec 7dbd75c7-3ad6-4e67-9498-63a84ca6f6b8 -2023-07-08 08:13:50.957567 2023-07-08 08:13:50.957585 aggnd 004315669 R rec e3db6bb0-4252-4b99-9347-018ce3cf0999 -2023-07-08 08:13:51.092596 2023-07-08 08:13:51.092607 aggnd 004340183 R rec 30d694de-7ebd-4508-acfe-f4cc69ead03e -2023-07-08 08:13:51.207632 2023-07-08 08:13:51.207642 aggnd 004358554 R rec d2b1e5d7-c570-48d9-a784-8a1b0513401b -2023-07-08 08:13:51.368703 2023-07-08 08:13:51.368713 aggnd 004361342 R rec 55cd1dd9-0e64-4d9a-92bc-af80eb51523d -2023-07-08 08:13:51.474987 2023-07-08 08:13:51.475007 aggnd 004363779 R rec 92dddefa-f212-42ef-a726-5a4fe868c83b -2023-07-08 08:13:51.584166 2023-07-08 08:13:51.584176 aggnd 004379802 R rec d73ab158-5c95-4ec3-9ae6-f6320c2896c9 -2023-07-08 08:13:51.693552 2023-07-08 08:13:51.693568 aggnd 004384865 R rec 7dc2d73b-dc98-467e-8adb-32d52dda3326 -2023-07-08 08:13:51.819018 2023-07-08 08:13:51.819033 aggnd 004394828 R rec fcbe1db1-7e1d-4e4f-afe8-98436fbafffc -2023-07-08 08:13:51.946359 2023-07-08 08:13:51.946365 aggnd 004401875 R rec 532840e9-6e3e-493f-b083-5df17aded008 -2023-07-08 08:13:52.038303 2023-07-08 08:13:52.038313 aggnd 004406583 R rec 77b33e24-da8c-41c5-bc44-246aacd8e268 -2023-07-08 08:13:52.134925 2023-07-08 08:13:52.134937 aggnd 004407156 R rec 58051348-663b-4248-baab-af83f39285e0 -2023-07-08 08:13:52.251009 2023-07-08 08:13:52.25102 aggnd 00442204X R rec eec5fe64-dd7c-4922-a072-91249ee7c262 -2023-07-08 08:13:52.351951 2023-07-08 08:13:52.351961 aggnd 004427734 R rec 398d0134-0302-4f7d-8721-69141f6a495e -2023-07-08 08:13:52.486742 2023-07-08 08:13:52.486753 aggnd 004444507 R rec 4b5e5a78-2012-41de-959e-238c69bed8ae -2023-07-08 08:13:52.600925 2023-07-08 08:13:52.600935 aggnd 004453379 R rec d8f6e1f4-4e47-455f-b70d-29a8c804eeb9 -2023-07-08 08:13:52.715901 2023-07-08 08:13:52.715917 aggnd 004462572 R rec f68f2ad7-21e4-429c-aaa6-5b11dac1776e -2023-07-08 08:13:52.807862 2023-07-08 08:13:52.807875 aggnd 004475771 R rec e3a6969d-3212-4ac3-89a2-bc69519145dd -2023-07-08 08:13:52.907975 2023-07-08 08:13:52.90799 aggnd 004479319 R rec ae3f4a96-3227-46fe-8e34-5773aae9d0cd -2023-07-08 08:13:53.024434 2023-07-08 08:13:53.024453 aggnd 004507673 R rec 1aa800e6-a3ea-4348-9759-e5eb82f385b1 -2023-07-08 08:13:53.163522 2023-07-08 08:13:53.163537 aggnd 004522176 R rec 2cc8d165-76c7-4c32-9fdc-ba0c8b2da45e -2023-07-08 08:13:53.266526 2023-07-08 08:13:53.266541 aggnd 004534972 R rec 3f057366-3f2d-4a86-8349-5179c3c11a7a -2023-07-08 08:13:53.361917 2023-07-08 08:13:53.361931 aggnd 004535642 R rec 73bc362b-377f-47d2-abcc-2c7eea3bf467 -2023-07-08 08:13:53.465342 2023-07-08 08:13:53.465353 aggnd 004544617 R rec 8899bbd0-2387-48e0-a66d-95b5c875a74b -2023-07-08 08:13:53.5663 2023-07-08 08:13:53.566315 aggnd 004554159 R rec 3b059156-11d5-46f7-9b9c-3c52080c617e -2023-07-08 08:13:53.673979 2023-07-08 08:13:53.673989 aggnd 004556208 R rec aedbb846-4ebe-4eba-928a-4b4fa6267b6a -2023-07-08 08:13:53.776038 2023-07-08 08:13:53.776054 aggnd 004559444 R rec f52d9a00-107c-491b-88c8-1f6f37655a1e -2023-07-08 08:13:53.906983 2023-07-08 08:13:53.906999 aggnd 004570359 R rec 394c559b-f4ff-473e-b6e6-13658f46a474 -2023-07-08 08:13:54.039235 2023-07-08 08:13:54.039247 aggnd 004612876 R rec 65bb7f30-8c31-4136-9014-173d47e5aedf -2023-07-08 08:13:54.151624 2023-07-08 08:13:54.151639 aggnd 004652851 R rec 0e8b4a4d-0481-4c65-9dce-72a8bd083087 -2023-07-08 08:13:54.270007 2023-07-08 08:13:54.270026 aggnd 004656253 R rec 4799f38d-f0aa-4822-83c1-d639bba0a3b1 -2023-07-08 08:13:54.375594 2023-07-08 08:13:54.375605 aggnd 004674316 R rec 7491860e-b158-4d35-a692-67e5fa292ae7 -2023-07-08 08:13:54.482629 2023-07-08 08:13:54.482639 aggnd 004680596 R rec 7680d00a-d482-486d-8a91-9130a9eb27bd -2023-07-08 08:13:54.604462 2023-07-08 08:13:54.604469 aggnd 004685873 R rec 06c784af-5d26-48ff-8885-d6119f424f87 -2023-07-08 08:13:54.714883 2023-07-08 08:13:54.714894 aggnd 004687280 R rec 6d2cbdf6-4f7a-4553-9d00-ca0be884106f -2023-07-08 08:13:54.842553 2023-07-08 08:13:54.842564 aggnd 004708083 R rec fffd937d-da1a-4c6a-900d-9ab05a931dea -2023-07-08 08:13:54.961088 2023-07-08 08:13:54.961103 aggnd 004726642 R rec 54077ccf-144f-4653-bf47-8e5ad8d01863 -2023-07-08 08:13:55.067589 2023-07-08 08:13:55.067606 aggnd 00473985X R rec 1d364c2c-c4d1-48ec-8e8f-1877fcdd0b41 -2023-07-08 08:13:55.181992 2023-07-08 08:13:55.182009 aggnd 004746333 R rec a4ca3022-130f-4e52-9766-cfb7b5bee157 -2023-07-08 08:13:55.282694 2023-07-08 08:13:55.282706 aggnd 004753194 R rec 724ba52a-28b7-4bd0-a9ef-56a72424204f -2023-07-08 08:13:55.382915 2023-07-08 08:13:55.382929 aggnd 004772350 R rec 1b3dab46-9141-4c8a-bf8e-86fb53e53142 -2023-07-08 08:13:55.490014 2023-07-08 08:13:55.490032 aggnd 00480435X R rec 9621fc21-6aa7-4992-b190-a57e91f93d74 -2023-07-08 08:13:55.614257 2023-07-08 08:13:55.61427 aggnd 004812476 R rec e912a849-c75d-40f5-ab22-e85714cdf032 -2023-07-08 08:13:55.741189 2023-07-08 08:13:55.741207 aggnd 004815483 R rec 5000bb51-21c8-4b36-bfba-8a8213ad7460 -2023-07-08 08:13:55.861045 2023-07-08 08:13:55.861055 aggnd 004837541 R rec cddb390d-d5c1-4051-87ae-8644b10e52c6 -2023-07-08 08:13:55.973103 2023-07-08 08:13:55.973114 aggnd 004867645 R rec 272c8c49-934e-49f4-a470-460067099328 -2023-07-08 08:13:56.083967 2023-07-08 08:13:56.083978 aggnd 004868250 R rec 1eeaae55-838d-4370-b54e-fc06633bbcf6 -2023-07-08 08:13:56.200461 2023-07-08 08:13:56.200471 aggnd 004888324 R rec cb6794e6-daea-474a-a66f-bd1ae5b5340a -2023-07-08 08:13:56.320601 2023-07-08 08:13:56.320611 aggnd 004890868 R rec 1b66bd76-d254-42c0-96b0-cdc30d9c54df -2023-07-08 08:13:56.433378 2023-07-08 08:13:56.433388 aggnd 004895002 R rec 6e83c6df-587b-410e-9875-a3492e91ac41 -2023-07-08 08:13:56.561249 2023-07-08 08:13:56.56126 aggnd 00490110X R rec b977b19f-c297-4484-848d-1a432612afe4 -2023-07-08 08:13:56.685757 2023-07-08 08:13:56.68577 aggnd 004904508 R rec 168eb079-bee3-4767-87b2-b372e1313cc4 -2023-07-08 08:13:56.788652 2023-07-08 08:13:56.788668 aggnd 004921445 R rec 42c1bd15-5d2a-44e1-ad19-62e0d378ddb1 -2023-07-08 08:13:56.895364 2023-07-08 08:13:56.89538 aggnd 004930118 R rec 8d7bf837-0099-484a-83bc-ce2f50a55bb0 -2023-07-08 08:13:57.008965 2023-07-08 08:13:57.008982 aggnd 00495081X R rec 8ba9eb41-f259-49a1-8985-f977dff28058 -2023-07-08 08:13:57.125436 2023-07-08 08:13:57.125448 aggnd 004954599 R rec e7eae7d9-6c12-496d-97e9-13adff888f56 -2023-07-08 08:13:57.249896 2023-07-08 08:13:57.249911 aggnd 004984242 R rec 8b248bfe-92b4-4113-a0ed-ac6ecd3fe1e3 -2023-07-08 08:13:57.376539 2023-07-08 08:13:57.376554 aggnd 004995732 R rec dbde8861-6723-4fac-a722-be6fb91bc6ad -2023-07-08 08:13:57.521446 2023-07-08 08:13:57.521461 aggnd 005029902 R rec 7a743911-8d25-423f-b843-f6e094bb8288 -2023-07-08 08:13:57.633407 2023-07-08 08:13:57.633417 aggnd 005034523 R rec 3b64f7f7-8e4f-4192-bd1b-2ac9bd6d25e1 -2023-07-08 08:13:57.779187 2023-07-08 08:13:57.779206 aggnd 005053625 R rec 78568e27-e548-41f3-bb1d-3e403a975770 -2023-07-08 08:13:57.887215 2023-07-08 08:13:57.887231 aggnd 00505656X R rec f8cece2d-57de-4a81-8be1-b111acdd58fb -2023-07-08 08:13:58.022088 2023-07-08 08:13:58.022099 aggnd 005059054 R rec b471745d-514b-483c-aaae-141e8a927b7d -2023-07-08 08:13:58.14307 2023-07-08 08:13:58.143086 aggnd 005073189 R rec 62dbdd76-e3ca-45fb-a4bd-ed9cb392e464 -2023-07-08 08:13:58.272893 2023-07-08 08:13:58.272905 aggnd 005095344 R rec 5c6b9df1-758a-49d6-b37c-2128bbc49458 -2023-07-08 08:13:58.404559 2023-07-08 08:13:58.404576 aggnd 00509657X R rec e2f66cab-e47f-4c9b-b395-54acf606ed44 -2023-07-08 08:13:58.52749 2023-07-08 08:13:58.527505 aggnd 005124972 R rec bd92f602-c94b-45b7-96c5-d768087be26f -2023-07-08 08:13:58.654927 2023-07-08 08:13:58.654962 aggnd 006002579 R rec c28e38fc-7683-454a-9d5c-8d85d4832e4e -2023-07-08 08:13:58.791663 2023-07-08 08:13:58.791679 aggnd 006007295 R rec ffd780bd-1fb7-4a2f-a602-565a0cfd2f8a -2023-07-08 08:13:58.895814 2023-07-08 08:13:58.89583 aggnd 006010008 R rec 21c94cc4-b875-45c7-9dd6-44a0e7bba74c -2023-07-08 08:13:59.029296 2023-07-08 08:13:59.029309 aggnd 006058825 R rec 3d2d59e0-a19f-4a36-af93-daca4eb44812 -2023-07-08 08:13:59.133134 2023-07-08 08:13:59.133147 aggnd 006216722 R rec a6dec42f-8417-4d36-b46c-0d6fd691eaab -2023-07-08 08:13:59.270973 2023-07-08 08:13:59.270986 aggnd 006226663 R rec 4c928a17-821d-456a-862f-5d08b8374573 -2023-07-08 08:13:59.382189 2023-07-08 08:13:59.382204 aggnd 006234224 R rec a7729a92-4511-4b11-993c-af6eeb004db7 -2023-07-08 08:13:59.491571 2023-07-08 08:13:59.491577 aggnd 006237754 R rec 9dbf85e0-402e-45b0-895e-2aab700694f9 -2023-07-08 08:13:59.604712 2023-07-08 08:13:59.604727 aggnd 006243282 R rec d1851c42-045a-4e72-9103-95cab4eb022a -2023-07-08 08:13:59.705765 2023-07-08 08:13:59.705776 aggnd 006674410 R rec 3f6090ef-3226-49fe-a9d9-97bcbc8762c3 -2023-07-08 08:13:59.827004 2023-07-08 08:13:59.827015 aggnd 006684378 R rec c6508f7b-ea1f-4e93-8057-6bbf7bc244d5 -2023-07-08 08:13:59.937014 2023-07-08 08:13:59.937031 aggnd 006688977 R rec a9a08af2-45ce-44ca-ae20-e1fb421ff9cc -2023-07-08 08:14:00.058192 2023-07-08 08:14:00.058203 aggnd 006693911 R rec e69e3935-6a23-4ce8-8998-0648c4da5d5b -2023-07-08 08:14:00.177468 2023-07-08 08:14:00.177478 aggnd 006699618 R rec 8e0ad752-e551-46cb-97da-81aee2a2a4e3 -2023-07-08 08:14:00.290174 2023-07-08 08:14:00.290186 aggnd 006705847 R rec cdc519cd-8a62-4e04-9470-fac9dc15649b -2023-07-08 08:14:00.417698 2023-07-08 08:14:00.417708 aggnd 007015089 R rec 219482b8-93c3-4b09-9fdf-af6d1944fadc -2023-07-08 08:14:00.535664 2023-07-08 08:14:00.53568 aggnd 007030150 R rec 57a9f09d-d9a8-4a61-ae35-9deb552d4949 -2023-07-08 08:14:00.650675 2023-07-08 08:14:00.650694 aggnd 007031394 R rec 1a9b8cbb-b01d-4d59-a1fc-dbc9444a61eb -2023-07-08 08:14:00.905788 2023-07-08 08:14:00.905793 aggnd 007032641 R rec 5db444d0-680b-4d68-a5fd-057d46c05dbc -2023-07-08 08:14:01.027738 2023-07-08 08:14:01.027751 aggnd 007059981 R rec 158e96d3-fc2f-4fc4-b0dc-8fb45c18d8ed -2023-07-08 08:14:01.146876 2023-07-08 08:14:01.146889 aggnd 007060637 R rec 328528ee-2fb6-4da4-9f36-b1efce83b770 -2023-07-08 08:14:01.267337 2023-07-08 08:14:01.267348 aggnd 007061757 R rec a3d76b91-4a82-4387-a4c4-13905f4ef664 -2023-07-08 08:14:01.395659 2023-07-08 08:14:01.395681 aggnd 007097123 R rec f659b653-d003-4507-97e1-add54ea5b703 -2023-07-08 08:14:01.499198 2023-07-08 08:14:01.499209 aggnd 007100434 R rec d2b7a2da-a656-4c25-9cb9-645e73f9dcab -2023-07-08 08:14:01.607045 2023-07-08 08:14:01.607058 aggnd 007104456 R rec 61b72f61-5fca-4801-98d5-6b23be57011a -2023-07-08 08:14:01.730917 2023-07-08 08:14:01.730928 aggnd 007104804 R rec 46c1797e-6962-4f4c-bec5-94c6c230aa0b -2023-07-08 08:14:01.839973 2023-07-08 08:14:01.839983 aggnd 007119666 R rec 02a0008f-e6ed-4f76-af5d-be6ea27e18f8 -2023-07-08 08:14:01.95245 2023-07-08 08:14:01.952461 aggnd 007172125 R rec b0acb3f2-ac20-45a3-afbc-129bec32f678 -2023-07-08 08:14:02.076758 2023-07-08 08:14:02.076768 aggnd 007207409 R rec 1f6acc89-7926-4243-8c1f-3002880352cd -2023-07-08 08:14:02.191596 2023-07-08 08:14:02.191608 aggnd 007209320 R rec dd5817c8-3d1a-4c5a-a9c9-2747aee2e494 -2023-07-08 08:14:02.313561 2023-07-08 08:14:02.313577 aggnd 007210019 R rec 66443cbd-dace-4280-8bc8-4c95cc3e9910 -2023-07-08 08:14:02.430949 2023-07-08 08:14:02.430961 aggnd 007221010 R rec b1749d78-a63d-432f-a3fe-e013db9c87d4 -2023-07-08 08:14:02.53703 2023-07-08 08:14:02.537043 aggnd 007229003 R rec 2117521c-a960-4ae2-8d14-e0089230b7c3 -2023-07-08 08:14:02.668384 2023-07-08 08:14:02.668399 aggnd 007233000 R rec 1a5aeba8-11d4-4c5d-8916-0429bb474ce8 -2023-07-08 08:14:02.782044 2023-07-08 08:14:02.782059 aggnd 007251920 R rec 27f8f1e7-a667-4d0d-92d1-3bbac9f3fd99 -2023-07-08 08:14:02.896626 2023-07-08 08:14:02.896643 aggnd 007262329 R rec 8893bf9e-e34b-4610-914b-87b5525de476 -2023-07-08 08:14:03.03366 2023-07-08 08:14:03.033667 aggnd 007269358 R rec 4c3bab31-1a9d-430f-be21-c0e87029c8ad -2023-07-08 08:14:03.160248 2023-07-08 08:14:03.160259 aggnd 007284659 R rec 2386836f-6b5c-48f9-80fd-35bf8a87d8b7 -2023-07-08 08:14:03.265059 2023-07-08 08:14:03.26507 aggnd 007305117 R rec 01a59873-c44d-4916-8498-92988d3e868f -2023-07-08 08:14:03.393316 2023-07-08 08:14:03.393331 aggnd 007309600 R rec c57f4813-742c-4a87-b9b4-996808d31fbc -2023-07-08 08:14:03.49236 2023-07-08 08:14:03.492371 aggnd 007310005 R rec 75c5ca69-91cd-4b0d-84b7-d80a8e0378e2 -2023-07-08 08:14:03.624634 2023-07-08 08:14:03.624648 aggnd 00731566X R rec 80f31a61-52ef-4a27-9567-30f5a34f7e7e -2023-07-08 08:14:03.73741 2023-07-08 08:14:03.737425 aggnd 007318413 R rec 589db99c-41e4-4b0b-8271-573cd8b4a5db -2023-07-08 08:14:03.857817 2023-07-08 08:14:03.857838 aggnd 007319126 R rec 78556bb9-e36d-4040-a060-077cc9c489a4 -2023-07-08 08:14:03.975914 2023-07-08 08:14:03.975923 aggnd 007322062 R rec a6682ba3-6875-4f49-b882-b9bd33529f1a -2023-07-08 08:14:04.113283 2023-07-08 08:14:04.113296 aggnd 007353189 R rec bb9369db-7932-4c73-b813-316b4f25ffbd -2023-07-08 08:14:04.232901 2023-07-08 08:14:04.232912 aggnd 007365950 R rec bf74b43b-1ee2-475f-b93a-5e86df53e8d4 -2023-07-08 08:14:04.349256 2023-07-08 08:14:04.349267 aggnd 007366701 R rec 185edec2-2021-44c3-bd84-004aa84e7d11 -2023-07-08 08:14:04.457819 2023-07-08 08:14:04.457833 aggnd 007378238 R rec daaf3a22-4e97-488b-a659-74734703662c -2023-07-08 08:14:04.583902 2023-07-08 08:14:04.583913 aggnd 007386133 R rec 42ebb445-4261-45b5-9c55-827917d2336c -2023-07-08 08:14:04.702576 2023-07-08 08:14:04.702587 aggnd 007391765 R rec 1f38113c-9fe4-44f9-80bf-c36261ee99fd -2023-07-08 08:14:04.827435 2023-07-08 08:14:04.827447 aggnd 007396848 R rec 32009335-e063-4c62-a57c-1f7d9616e705 -2023-07-08 08:14:04.930815 2023-07-08 08:14:04.930825 aggnd 007405995 R rec 1440fadf-dc06-48aa-8422-2d7ebfc12292 -2023-07-08 08:14:05.049902 2023-07-08 08:14:05.049912 aggnd 007412193 R rec 1451daa6-4e87-4f55-b339-b3f04af9171c -2023-07-08 08:14:05.154707 2023-07-08 08:14:05.154723 aggnd 007420501 R rec 04aaac54-790c-4b3e-b499-72bb97f945e8 -2023-07-08 08:14:05.269235 2023-07-08 08:14:05.26925 aggnd 007426321 R rec f75b0bf0-3bf6-4546-9bac-1d015c7f3302 -2023-07-08 08:14:05.380496 2023-07-08 08:14:05.380509 aggnd 007439210 R rec 515290a4-818b-4e02-a02c-fcc55dc6c410 -2023-07-08 08:14:05.480811 2023-07-08 08:14:05.480824 aggnd 007444788 R rec 32cf1710-e238-4f41-9e03-d1a9bc5b8785 -2023-07-08 08:14:05.579662 2023-07-08 08:14:05.579675 aggnd 007453523 R rec fc96f1d1-2579-46de-af30-e5ed9a2861f5 -2023-07-08 08:14:05.682068 2023-07-08 08:14:05.682084 aggnd 007473338 R rec 8b9916ac-357f-42bc-9362-a47977220901 -2023-07-08 08:14:05.814001 2023-07-08 08:14:05.814012 aggnd 007495684 R rec f1cb0929-e5f4-4683-bb00-ebe42817f4b7 -2023-07-08 08:14:05.929906 2023-07-08 08:14:05.929916 aggnd 007543204 R rec 23921189-b7c7-4920-a866-d0d27b115e90 -2023-07-08 08:14:06.065922 2023-07-08 08:14:06.065928 aggnd 007547692 R rec 8ba7d60e-8336-46be-aafb-071ee2da069d -2023-07-08 08:14:06.201592 2023-07-08 08:14:06.201605 aggnd 007550278 R rec 983927c8-4901-42a8-9d07-b0bd196b3d7c -2023-07-08 08:14:06.328621 2023-07-08 08:14:06.328632 aggnd 007553684 R rec 18d16ec0-c7e1-4657-b684-9b25b6484e0b -2023-07-08 08:14:06.451547 2023-07-08 08:14:06.451564 aggnd 007555245 R rec 748817cf-7034-4e9b-8a4d-49f6f00c84a7 -2023-07-08 08:14:06.580025 2023-07-08 08:14:06.580032 aggnd 007571054 R rec 810f45c8-5692-4eb8-bfac-b2e446ea68a0 -2023-07-08 08:14:06.719999 2023-07-08 08:14:06.723982 aggnd 007575882 R rec 918cdaf7-569f-4880-a4e6-1605db2244e4 -2023-07-08 08:14:06.816589 2023-07-08 08:14:06.816595 aggnd 007590172 R rec 6ee0b654-c04a-41e6-9932-c235a23f0a4d -2023-07-08 08:14:06.940414 2023-07-08 08:14:06.940419 aggnd 00760453X R rec aa35b9a4-689e-4155-9868-6e8c822ecf42 -2023-07-08 08:14:07.053662 2023-07-08 08:14:07.053668 aggnd 007605285 R rec d60920b9-659b-43b4-a437-ee9d86c8e35d -2023-07-08 08:14:07.132369 2023-07-08 08:14:07.132375 aggnd 007620756 R rec 7e1b181d-d067-462d-816e-7d701b781dc2 -2023-07-08 08:14:07.214262 2023-07-08 08:14:07.214268 aggnd 007631731 R rec 3957baf7-1c7c-461e-b926-10aec0f0eb12 -2023-07-08 08:14:07.307998 2023-07-08 08:14:07.308004 aggnd 007642423 R rec 1f8eab39-0f2f-451a-939a-ce8c2c555e95 -2023-07-08 08:14:07.418748 2023-07-08 08:14:07.418753 aggnd 007646895 R rec 83d38ba0-f922-4779-955a-573b94932853 -2023-07-08 08:14:07.514421 2023-07-08 08:14:07.514427 aggnd 007675844 R rec 88d8c43d-0b75-4230-bfaf-7bd04bdc708d -2023-07-08 08:14:07.60043 2023-07-08 08:14:07.600435 aggnd 007676174 R rec e4f1f8f5-7adb-411d-af28-9de0eecf11d2 -2023-07-08 08:14:07.684873 2023-07-08 08:14:07.684883 aggnd 007690495 R rec fbdf4f96-d070-4171-969a-f5608f04b0d9 -2023-07-08 08:14:07.767557 2023-07-08 08:14:07.767568 aggnd 007736851 R rec 306c834e-b76a-4a6c-885a-0201ac2a9f86 -2023-07-08 08:14:07.85392 2023-07-08 08:14:07.85393 aggnd 007744862 R rec 2415ef32-61e0-445f-a2ca-ce7e5b692356 -2023-07-08 08:14:07.942305 2023-07-08 08:14:07.942315 aggnd 007762321 R rec 6c77e5e2-ae52-4f10-817b-9618ca2271e4 -2023-07-08 08:14:08.017189 2023-07-08 08:14:08.017194 aggnd 007765908 R rec 4f7afcd6-aa84-41fe-93cd-b0270c45f60f -2023-07-08 08:14:08.096538 2023-07-08 08:14:08.096549 aggnd 007776500 R rec 65009afb-4ba6-4f0e-b1ec-ae75d025af94 -2023-07-08 08:14:08.179666 2023-07-08 08:14:08.179679 aggnd 007777639 R rec 1b1d77ee-2145-4ffc-8f91-c2ce3fe1a994 -2023-07-08 08:14:08.2812 2023-07-08 08:14:08.281211 aggnd 007781113 R rec ba922c4c-f28d-496d-b0e9-d89f3a289888 -2023-07-08 08:14:08.392367 2023-07-08 08:14:08.392372 aggnd 007783574 R rec 6cf57637-6124-4641-b662-2f09561ea65a -2023-07-08 08:14:08.481749 2023-07-08 08:14:08.481759 aggnd 007792948 R rec 86056b2e-e3a7-47a0-8d51-c99c557bc7c6 -2023-07-08 08:14:08.564556 2023-07-08 08:14:08.564567 aggnd 007793731 R rec 267bf48a-247c-4d7e-9c79-935cdac39642 -2023-07-08 08:14:08.657217 2023-07-08 08:14:08.657222 aggnd 007796811 R rec 92b92614-ccc9-46ce-831d-a6d1c82918d7 -2023-07-08 08:14:08.743866 2023-07-08 08:14:08.74387 aggnd 00779827X R rec 713c9ff5-bd5d-40d4-a952-8483ad713dbe -2023-07-08 08:14:08.836698 2023-07-08 08:14:08.836714 aggnd 008030286 R rec 4f182e1c-585a-4b3b-9ee0-22a62bc92cc1 -2023-07-08 08:14:08.933637 2023-07-08 08:14:08.933663 aggnd 008036985 R rec 3f283805-4d38-4bc3-b0cb-4417e410d85d -2023-07-08 08:14:09.016022 2023-07-08 08:14:09.016032 aggnd 008055262 R rec 15824a23-e978-4ac2-82de-7700abc71f52 -2023-07-08 08:14:09.135326 2023-07-08 08:14:09.135338 aggnd 008059365 R rec c50aa896-a7ac-448a-b6da-634b1a0205a0 -2023-07-08 08:14:09.216012 2023-07-08 08:14:09.216028 aggnd 008094217 R rec 29fadb9a-9def-4988-ad64-b29899ae9ae3 -2023-07-08 08:14:09.31586 2023-07-08 08:14:09.315867 aggnd 008095086 R rec 2f4d5edc-c5b5-4418-89c1-18fd7dd9cf70 -2023-07-08 08:14:09.398202 2023-07-08 08:14:09.398246 aggnd 008112282 R rec d89e9945-9bc2-442f-b2e9-76a3a7ccb76b -2023-07-08 08:14:09.48508 2023-07-08 08:14:09.485094 aggnd 008119198 R rec 8df4c725-577f-41d5-8196-5c52e2062fa3 -2023-07-08 08:14:09.571748 2023-07-08 08:14:09.571767 aggnd 008122830 R rec c51e94e6-f2b6-43d7-bcce-303e85c9dd06 -2023-07-08 08:14:09.660914 2023-07-08 08:14:09.660925 aggnd 008140111 R rec 0e2e62bb-7645-4705-aee1-388cc9922543 -2023-07-08 08:14:09.763062 2023-07-08 08:14:09.763074 aggnd 008147841 R rec 12040965-b87d-473d-bc38-0c29e7344385 -2023-07-08 08:14:09.844715 2023-07-08 08:14:09.84472 aggnd 008151733 R rec 6b3b2b62-5314-43a0-b80f-a61df4939e37 -2023-07-08 08:14:09.938348 2023-07-08 08:14:09.938354 aggnd 008157103 R rec 7477f3d6-85f1-48df-b2ee-45a2ff86b341 -2023-07-08 08:14:10.039232 2023-07-08 08:14:10.039237 aggnd 008165068 R rec c28b97c8-c1d0-45a6-bdc5-34539bd276ae -2023-07-08 08:14:10.106932 2023-07-08 08:14:10.106942 aggnd 008169446 R rec 667bd1a5-d925-4d49-8389-3a3c64787f24 -2023-07-08 08:14:10.178371 2023-07-08 08:14:10.178382 aggnd 008169691 R rec ef2b300c-b264-491c-9c5b-720de2275eb9 -2023-07-08 08:14:10.262151 2023-07-08 08:14:10.262162 aggnd 008183147 R rec de0bf546-4f9f-4e3b-86ba-2249279ee570 -2023-07-08 08:14:10.354676 2023-07-08 08:14:10.354686 aggnd 008183171 R rec 760308a7-8efb-4d22-ae8c-bf207499e9a8 -2023-07-08 08:14:10.430308 2023-07-08 08:14:10.430313 aggnd 008186596 R rec 3f55c9c5-2185-475d-b57d-39ce71dd530d -2023-07-08 08:14:10.503752 2023-07-08 08:14:10.503758 aggnd 030010462 R rec d6896d4f-06bc-48fc-866f-19eae6a9075c -2023-07-08 08:14:10.579164 2023-07-08 08:14:10.57917 aggnd 030011213 R rec 28527208-80ff-4040-8309-3be28b2b75f1 -2023-07-08 08:14:10.657478 2023-07-08 08:14:10.657482 aggnd 030028841 R rec 32792b09-6188-4b9a-8457-594d5bbe7672 -2023-07-08 08:14:10.727197 2023-07-08 08:14:10.727202 aggnd 03003891X R rec 89027fda-99f2-4ad8-86b9-0287e64eaddb -2023-07-08 08:14:10.797193 2023-07-08 08:14:10.797197 aggnd 03005205X R rec 7e14dc7e-a3fd-4038-97e4-883b93a3d5cd -2023-07-08 08:14:10.870014 2023-07-08 08:14:10.870031 aggnd 030052912 R rec a1c39745-4a5a-4d61-a99d-a00fe88695cf -2023-07-08 08:14:10.963089 2023-07-08 08:14:10.963095 aggnd 030072409 R rec aa437cf0-03ac-4fbd-8522-a65c6dd25508 -2023-07-08 08:14:11.038055 2023-07-08 08:14:11.03806 aggnd 030078768 R rec 48121353-e830-4b7c-802c-291c0f6332a3 -2023-07-08 08:14:11.113631 2023-07-08 08:14:11.113637 aggnd 030081297 R rec b15fb0a0-ea5d-419c-be38-4713085a014e -2023-07-08 08:14:11.183568 2023-07-08 08:14:11.183574 aggnd 030120926 R rec 9450cde5-c83e-4dc4-85b8-d4f2c6207c84 -2023-07-08 08:14:11.250689 2023-07-08 08:14:11.250695 aggnd 03012199X R rec ed865deb-3b01-490e-b882-975bd0a8aabf -2023-07-08 08:14:11.325004 2023-07-08 08:14:11.325017 aggnd 03012929X R rec 55ec18af-7da2-400e-bd98-97f8bc69896d -2023-07-08 08:14:11.410665 2023-07-08 08:14:11.410677 aggnd 030132053 R rec 36085833-9ec2-400b-848b-60c2b39f9159 -2023-07-08 08:14:11.511349 2023-07-08 08:14:11.511359 aggnd 030135567 R rec 4dca5c15-a587-4451-b010-9fde947e2d2a -2023-07-08 08:14:11.59481 2023-07-08 08:14:11.594825 aggnd 030146690 R rec a8853b99-0d16-400d-b116-60bb1806df4e -2023-07-08 08:14:11.690908 2023-07-08 08:14:11.690915 aggnd 030152089 R rec 1bffc83e-6100-4cd3-b12b-e41dbfccd2d7 -2023-07-08 08:14:11.773029 2023-07-08 08:14:11.773041 aggnd 030153727 R rec 945b3a5d-0044-49cd-825a-32e63bdd738f -2023-07-08 08:14:11.866157 2023-07-08 08:14:11.866169 aggnd 030168910 R rec dac0b37d-c3a8-4428-956a-acf68185715b -2023-07-08 08:14:11.940857 2023-07-08 08:14:11.940872 aggnd 030183251 R rec 80c3fee2-e383-46d3-9b3f-9eb4c3514869 -2023-07-08 08:14:12.022302 2023-07-08 08:14:12.022307 aggnd 041027752 R rec 0297f7f3-1e55-4881-a9ad-b840b59b395f -2023-07-08 08:14:12.100083 2023-07-08 08:14:12.100096 aggnd 041297423 R rec 3bdf2bc8-b54e-427f-87ca-527da887987a -2023-07-08 08:14:12.201736 2023-07-08 08:14:12.201751 aggnd 042249627 R rec e205b8eb-3f7d-45ef-9d2b-db92b9fe439a -2023-07-08 08:14:12.289834 2023-07-08 08:14:12.289846 aggnd 042260264 R rec de300ca4-e07e-405b-81f4-4b37654e1c07 -2023-07-08 08:14:12.379163 2023-07-08 08:14:12.379168 aggnd 042968097 R rec 16170634-2d39-4de5-b326-ad6ec7f3ec61 -2023-07-08 08:14:12.468207 2023-07-08 08:14:12.468215 aggnd 050000462 R rec 4b3968d1-4882-4fcb-b824-652c146e36a1 -2023-07-08 08:14:12.555945 2023-07-08 08:14:12.555956 aggnd 05000736X R rec 7e7284c4-ced7-4c70-a1a9-66e9bdf4a5ff -2023-07-08 08:14:12.662772 2023-07-08 08:14:12.662778 aggnd 05001692X R rec 5a3c816b-d6a6-4fa7-95f2-87d474491666 -2023-07-08 08:14:12.774565 2023-07-08 08:14:12.774576 aggnd 050031937 R rec 8428531b-5760-499c-880f-2c9ffac600e0 -2023-07-08 08:14:12.870686 2023-07-08 08:14:12.870697 aggnd 050047043 R rec 3a4cd8ee-1e71-4e0b-96b4-c0abf18a91b2 -2023-07-08 08:14:12.963242 2023-07-08 08:14:12.963248 aggnd 050053396 R rec e58764fa-da74-4492-8dd7-9886b0b815f8 -2023-07-08 08:14:13.084415 2023-07-08 08:14:13.084421 aggnd 05005967X R rec 364a3383-1664-4056-bf80-acb3187b56f0 -2023-07-08 08:14:13.161884 2023-07-08 08:14:13.16189 aggnd 050070606 R rec 855b4d51-4586-47e1-a479-49879527c881 -2023-07-08 08:14:13.263776 2023-07-08 08:14:13.263782 aggnd 050096672 R rec 2da81f43-5b98-47c0-9851-353fbeca4611 -2023-07-08 08:14:13.375535 2023-07-08 08:14:13.375541 aggnd 05009808X R rec 3ec4e532-b7dd-4131-9606-58b33eeda3c4 -2023-07-08 08:14:13.459982 2023-07-08 08:14:13.459988 aggnd 050105884 R rec 5a17fd9c-d623-4596-8213-6d2581c779d9 -2023-07-08 08:14:13.534694 2023-07-08 08:14:13.534699 aggnd 050122916 R rec ca90d1b7-0099-4bf4-a2da-ad69528cd82b -2023-07-08 08:14:13.607257 2023-07-08 08:14:13.607273 aggnd 050132229 R rec 25ac8074-4b08-43b2-a903-3b198fc744e7 -2023-07-08 08:14:13.71141 2023-07-08 08:14:13.711422 aggnd 050145363 R rec f3b722e2-7bd4-4430-b32f-1da44cad8434 -2023-07-08 08:14:13.818505 2023-07-08 08:14:13.818515 aggnd 050155032 R rec 1b09591b-297e-42f2-9d1d-0515f111b9aa -2023-07-08 08:14:13.937805 2023-07-08 08:14:13.937818 aggnd 050161261 R rec 585ada7d-9131-4471-9d2b-d55e337abe27 -2023-07-08 08:14:14.069952 2023-07-08 08:14:14.069963 aggnd 050168436 R rec e434fb5d-ef63-40c2-9393-654d8043d604 -2023-07-08 08:14:14.169946 2023-07-08 08:14:14.169962 aggnd 050171607 R rec 17dae820-08c9-44fe-9f39-578b3cf20bd4 -2023-07-08 08:14:14.299818 2023-07-08 08:14:14.299832 aggnd 050184318 R rec 50447d11-48e2-451e-8d47-f49c0aefce04 -2023-07-08 08:14:14.407711 2023-07-08 08:14:14.407717 aggnd 050186736 R rec bf1c0414-d147-416a-ab2a-c254f5b8018c -2023-07-08 08:14:14.528347 2023-07-08 08:14:14.528363 aggnd 05018685X R rec c412e500-9fe6-4f7f-9196-5d434b140295 -2023-07-08 08:14:14.659683 2023-07-08 08:14:14.659696 aggnd 050187023 R rec 6105c306-7395-417a-9ad9-ec8f302a3c29 -2023-07-08 08:14:14.778173 2023-07-08 08:14:14.778188 aggnd 050230611 R rec c2ca0d94-1a3b-4380-bcf9-5f765ea0361f -2023-07-08 08:14:14.895904 2023-07-08 08:14:14.89591 aggnd 050247840 R rec f9b35b5c-653a-4be4-88c9-2a9a4a7f1f5d -2023-07-08 08:14:14.990377 2023-07-08 08:14:14.990387 aggnd 050257722 R rec ce7fccdf-f99d-4078-b078-0c88e992f143 -2023-07-08 08:14:15.121236 2023-07-08 08:14:15.121249 aggnd 050269704 R rec 701151d2-27b3-4506-849f-da8caf265c66 -2023-07-08 08:14:15.223576 2023-07-08 08:14:15.223587 aggnd 050270850 R rec 613b305f-afb2-429d-a24f-786095d6608b -2023-07-08 08:14:15.356867 2023-07-08 08:14:15.356878 aggnd 050279831 R rec 4e88a864-66ef-4ae3-a354-991ea997b25f -2023-07-08 08:14:15.478278 2023-07-08 08:14:15.478297 aggnd 050284185 R rec 892e8453-c5d1-492b-b452-761f8049864d -2023-07-08 08:14:15.615286 2023-07-08 08:14:15.615298 aggnd 050284673 R rec a6e4c82d-3744-48c3-8e72-4fc1802b5e9c -2023-07-08 08:14:15.734804 2023-07-08 08:14:15.734817 aggnd 050329820 R rec 02063954-0c08-4fa7-b240-644cbfcd8920 -2023-07-08 08:14:15.858048 2023-07-08 08:14:15.858059 aggnd 050353233 R rec d0ebcebe-01c2-4955-a0ac-ae6de6546a06 -2023-07-08 08:14:15.96699 2023-07-08 08:14:15.967007 aggnd 050361031 R rec bb809af4-9bc0-431c-bf67-1401e895f943 -2023-07-08 08:14:16.101558 2023-07-08 08:14:16.101576 aggnd 05037107X R rec f847f6c2-b62b-4403-a684-0678766a576d -2023-07-08 08:14:16.228979 2023-07-08 08:14:16.228993 aggnd 050376756 R rec 26251db0-c564-49b3-bd73-0a22f1bff1a3 -2023-07-08 08:14:16.332227 2023-07-08 08:14:16.332238 aggnd 050379712 R rec 6b9398f7-b389-4012-9f0f-5e25c3de3e46 -2023-07-08 08:14:16.441053 2023-07-08 08:14:16.441069 aggnd 050410814 R rec 8d1b1559-e186-47d0-81a9-f2f01c869b94 -2023-07-08 08:14:16.538976 2023-07-08 08:14:16.538992 aggnd 050411071 R rec 9a400740-d3fd-4abb-8882-eb02ab912b14 -2023-07-08 08:14:16.659767 2023-07-08 08:14:16.659773 aggnd 050417444 R rec 5f5e4f49-ff37-49d0-86b5-b85ac96004f1 -2023-07-08 08:14:16.770716 2023-07-08 08:14:16.770732 aggnd 050425773 R rec 89dba6b7-48b1-4cdb-bdac-d880cb0df112 -2023-07-08 08:14:16.874109 2023-07-08 08:14:16.874125 aggnd 050430726 R rec df082e21-dad8-4a97-85f7-babab2139cec -2023-07-08 08:14:16.973913 2023-07-08 08:14:16.973924 aggnd 050433504 R rec 22973d56-09b8-4c4f-9797-685ab4ff4da2 -2023-07-08 08:14:17.114027 2023-07-08 08:14:17.114042 aggnd 050436708 R rec e08f4665-f16b-4443-aaba-e4aa4f118113 -2023-07-08 08:14:17.240558 2023-07-08 08:14:17.240574 aggnd 05043795X R rec 6f069585-95d7-4ceb-946d-9af99ab34af9 -2023-07-08 08:14:17.354718 2023-07-08 08:14:17.354734 aggnd 050439464 R rec ca0838ce-559e-4192-8f7c-dd4dac96e27a -2023-07-08 08:14:17.471395 2023-07-08 08:14:17.47142 aggnd 050445197 R rec dd61a175-41ff-4264-a084-2bb5d5e72b6b -2023-07-08 08:14:17.589892 2023-07-08 08:14:17.58991 aggnd 050447904 R rec 946b5a61-da00-45c2-9b53-0f69507ef51e -2023-07-08 08:14:17.728997 2023-07-08 08:14:17.729003 aggnd 050458140 R rec 1ab4a852-47e8-4090-ae44-63e84d6fc755 -2023-07-08 08:14:17.81896 2023-07-08 08:14:17.818971 aggnd 050465546 R rec 8b201c49-ebc2-481b-a988-807bfc1e0704 -2023-07-08 08:14:17.940103 2023-07-08 08:14:17.940122 aggnd 05048589X R rec 8cfd70df-7737-4288-a770-9b2c1bba78d0 -2023-07-08 08:14:18.055481 2023-07-08 08:14:18.055488 aggnd 050494570 R rec 4ab95045-21e2-4f22-9ebd-35ee27fcdaf1 -2023-07-08 08:14:18.165302 2023-07-08 08:14:18.165317 aggnd 050495747 R rec 7e52db08-c374-45f2-aa68-2669e7ca20d9 -2023-07-08 08:14:18.293202 2023-07-08 08:14:18.29322 aggnd 050502298 R rec f5e25c9b-3c97-4875-9e1a-f893cb4e939d -2023-07-08 08:14:18.420554 2023-07-08 08:14:18.42057 aggnd 050504274 R rec 9c375816-bdb8-4b62-a1ec-63fa8e3e6384 -2023-07-08 08:14:18.534287 2023-07-08 08:14:18.534301 aggnd 050516736 R rec 37364218-fb37-49d3-ae57-23846e9d3a61 -2023-07-08 08:14:18.676236 2023-07-08 08:14:18.676251 aggnd 050519514 R rec 999cd8ce-ca86-48f8-abbd-adccd557a1e4 -2023-07-08 08:14:18.80755 2023-07-08 08:14:18.807565 aggnd 05052920X R rec 12c280cc-4d5a-4b4b-9d72-4b515548af4e -2023-07-08 08:14:18.906592 2023-07-08 08:14:18.906605 aggnd 050539876 R rec 0495a24e-bc24-4a88-9e15-72021dff7cec -2023-07-08 08:14:19.0357 2023-07-08 08:14:19.035713 aggnd 050544942 R rec cdeb204a-399b-46dd-a0cf-2a670c1e2665 -2023-07-08 08:14:19.133725 2023-07-08 08:14:19.133735 aggnd 050545183 R rec 28c40353-ae45-4b44-8183-c77be7e54152 -2023-07-08 08:14:19.251503 2023-07-08 08:14:19.251513 aggnd 050551205 R rec 11af1fc6-b411-4c01-bc63-678618814d7d -2023-07-08 08:14:19.365271 2023-07-08 08:14:19.365282 aggnd 050577395 R rec 8bbd03aa-7ab5-4083-b6b1-64c4f53b963b -2023-07-08 08:14:19.479468 2023-07-08 08:14:19.479483 aggnd 050588907 R rec 18889d9d-886b-4c32-ac6e-030930519132 -2023-07-08 08:14:19.616957 2023-07-08 08:14:19.616964 aggnd 050620746 R rec ba1906dd-bb25-4ca9-b6cd-0b9dd82dc11e -2023-07-08 08:14:19.737836 2023-07-08 08:14:19.737847 aggnd 050629069 R rec 40f7ef03-e75e-4e6e-95ed-ac3cc679f4d3 -2023-07-08 08:14:19.868453 2023-07-08 08:14:19.868462 aggnd 05063223X R rec ae5bcf58-dbdd-470c-aceb-84136df1fdb2 -2023-07-08 08:14:19.975957 2023-07-08 08:14:19.975967 aggnd 050639412 R rec 8d21336d-7d9a-4b0d-8dcd-5f4d06ab75af -2023-07-08 08:14:20.080802 2023-07-08 08:14:20.080815 aggnd 050710885 R rec f9dd3b85-4b99-448c-8c33-ee9aa7b227cb -2023-07-08 08:14:20.182049 2023-07-08 08:14:20.182067 aggnd 050717510 R rec cf6872c5-38ef-4136-9bdb-1fcca84b5abf -2023-07-08 08:14:20.300669 2023-07-08 08:14:20.300685 aggnd 050721607 R rec f7b21d62-5636-4410-9089-ab09165ed841 -2023-07-08 08:14:20.418009 2023-07-08 08:14:20.418027 aggnd 050726064 R rec 63ad0eac-0f07-46de-b18b-83d646af88cc -2023-07-08 08:14:20.5295 2023-07-08 08:14:20.52951 aggnd 050738151 R rec 233f5e33-8869-403b-afdd-6f6ed5608773 -2023-07-08 08:14:20.667608 2023-07-08 08:14:20.667621 aggnd 050739875 R rec 7e9d3382-a30e-40cb-ac62-e1f0f245a623 -2023-07-08 08:14:20.796864 2023-07-08 08:14:20.796874 aggnd 050753762 R rec c5c92e0e-cc95-4f64-96c5-600dd1757e42 -2023-07-08 08:14:20.916702 2023-07-08 08:14:20.916714 aggnd 050778250 R rec e5a360a3-82cf-408d-9f1d-60d7119d32ca -2023-07-08 08:14:21.024965 2023-07-08 08:14:21.024979 aggnd 050780328 R rec d0050ae8-ee8c-440b-8ed6-a82731c35154 -2023-07-08 08:14:21.136349 2023-07-08 08:14:21.136361 aggnd 050784005 R rec 9e9506af-15bb-430b-bd48-8ea65368f09b -2023-07-08 08:14:21.250404 2023-07-08 08:14:21.250411 aggnd 050786954 R rec 300416ef-7095-4678-9976-b9aa5f4887e5 -2023-07-08 08:14:21.368293 2023-07-08 08:14:21.368307 aggnd 050788434 R rec 1f7ef0cd-ac05-4aec-b389-6a53b4e2a394 -2023-07-08 08:14:21.484265 2023-07-08 08:14:21.484276 aggnd 050805800 R rec 2d48aa7a-3f36-4c35-9559-97df9d0ce9b7 -2023-07-08 08:14:21.605259 2023-07-08 08:14:21.605264 aggnd 050846043 R rec 7cb9da17-81d1-4dcb-86dc-e8fe5513ef72 -2023-07-08 08:14:21.688359 2023-07-08 08:14:21.688365 aggnd 050876902 R rec 3246cab3-8e75-4336-99b7-48b2ab08a679 -2023-07-08 08:14:21.759375 2023-07-08 08:14:21.759386 aggnd 050880667 R rec e9e55cd2-ead2-477d-9b12-31202ec9dfb6 -2023-07-08 08:14:21.834705 2023-07-08 08:14:21.834711 aggnd 050881922 R rec 520e037a-044d-4ea0-ac29-31d2c94e2dae -2023-07-08 08:14:21.906442 2023-07-08 08:14:21.906446 aggnd 050895877 R rec 84d4df4f-b339-4b4d-9203-918fa669fbfc -2023-07-08 08:14:21.977518 2023-07-08 08:14:21.977523 aggnd 050917633 R rec b0dfc22a-4e89-4195-bc26-67a433edfca4 -2023-07-08 08:14:22.046907 2023-07-08 08:14:22.046912 aggnd 050917889 R rec 9d7bd9ee-bbab-4a26-a78f-465cf96f6808 -2023-07-08 08:14:22.11445 2023-07-08 08:14:22.114455 aggnd 050925520 R rec 5517469e-a4b2-4ae5-8038-05c3cd86af41 -2023-07-08 08:14:22.183545 2023-07-08 08:14:22.183551 aggnd 050927078 R rec a4486f17-8a75-4903-83d9-44e2e3472b2e -2023-07-08 08:14:22.255003 2023-07-08 08:14:22.255009 aggnd 050943618 R rec d62eb05b-fe18-44b5-b717-aa7ee29df45f -2023-07-08 08:14:22.327834 2023-07-08 08:14:22.327846 aggnd 051115913 R rec 80437113-83c6-46c9-802a-2f87f2fa9280 -2023-07-08 08:14:22.407001 2023-07-08 08:14:22.407016 aggnd 051171538 R rec a97d5bba-a2e2-41ae-9fff-11764cdc3f18 -2023-07-08 08:14:22.499826 2023-07-08 08:14:22.499837 aggnd 051251930 R rec 0834d677-296a-49d0-9ae4-c3de5fffdbc5 -2023-07-08 08:14:22.575502 2023-07-08 08:14:22.575518 aggnd 051253801 R rec 0935c0e5-5ee3-4d16-be73-7084ad66c895 -2023-07-08 08:14:22.648069 2023-07-08 08:14:22.64808 aggnd 051264129 R rec c935067e-c9fd-4678-8a8a-71087ba958a1 -2023-07-08 08:14:22.741333 2023-07-08 08:14:22.741344 aggnd 051266717 R rec 3ecc3104-e00b-46ce-9daa-d40cb7e89ab0 -2023-07-08 08:14:22.819565 2023-07-08 08:14:22.819573 aggnd 051367386 R rec b57c476c-275b-4cd1-bcbd-9bd9fbe59b1d -2023-07-08 08:14:22.893426 2023-07-08 08:14:22.893432 aggnd 051381079 R rec 7f1f01f7-806b-4810-b8ea-c45a72c907bb -2023-07-08 08:14:22.985351 2023-07-08 08:14:22.985357 aggnd 051518449 R rec 76fe2086-73b0-4f63-aac5-34cdc1a3eace -2023-07-08 08:14:23.075276 2023-07-08 08:14:23.075281 aggnd 055005284 R rec 6042496b-5857-487b-a665-705a537fabb4 -2023-07-08 08:14:23.153715 2023-07-08 08:14:23.153727 aggnd 055085849 R rec 2c2bae96-43d5-4083-b487-c58db835eaeb -2023-07-08 08:14:23.250142 2023-07-08 08:14:23.250153 aggnd 055114938 R rec c1029a5f-61fb-4d95-818b-ed0e4722112d -2023-07-08 08:14:23.330464 2023-07-08 08:14:23.33047 aggnd 055142524 R rec 386b1362-dd43-4984-b9df-e0bcc95e57d1 -2023-07-08 08:14:23.403146 2023-07-08 08:14:23.403151 aggnd 055146201 R rec 0a2e9319-e9b7-4c2e-b3ac-96bff1292a9c -2023-07-08 08:14:23.478776 2023-07-08 08:14:23.478781 aggnd 055154050 R rec 97a63f22-b98e-4bec-88b7-d923828fe069 -2023-07-08 08:14:23.56144 2023-07-08 08:14:23.561445 aggnd 055201873 R rec cef3d9a8-1baa-449d-af25-287241afc3fc -2023-07-08 08:14:23.648744 2023-07-08 08:14:23.64875 aggnd 055244025 R rec 84b2f62d-8b99-47b2-ada1-45e9a29d842c -2023-07-08 08:14:23.723561 2023-07-08 08:14:23.723567 aggnd 05533556X R rec 02febef3-08a3-4831-b8af-37f925f52475 -2023-07-08 08:14:23.801843 2023-07-08 08:14:23.801849 aggnd 055380700 R rec d850e16e-2f68-4091-b1a2-eba196821ca5 -2023-07-08 08:14:23.884502 2023-07-08 08:14:23.884508 aggnd 055449271 R rec 7eb60adf-52d1-4685-91a4-8356cb98079e -2023-07-08 08:14:23.948435 2023-07-08 08:14:23.948441 aggnd 055518788 R rec b9c896f4-006c-4e29-8e05-122e1bf9969b -2023-07-08 08:14:24.017223 2023-07-08 08:14:24.017229 aggnd 055521460 R rec 21cc4c57-245c-4d39-87d6-2af68c1c7200 -2023-07-08 08:14:24.086208 2023-07-08 08:14:24.086213 aggnd 055526195 R rec 58d37b93-5473-4ff4-a53b-e793593c0b73 -2023-07-08 08:14:24.159838 2023-07-08 08:14:24.159844 aggnd 055529771 R rec 231e5607-1e93-4401-91bc-73177f5f554d -2023-07-08 08:14:24.234789 2023-07-08 08:14:24.234802 aggnd 055578861 R rec 38e2d553-0dff-4ce7-9aa0-67b14edb5e64 -2023-07-08 08:14:24.333169 2023-07-08 08:14:24.33318 aggnd 055593917 R rec aee81ea6-3b08-43f1-9938-da537968fab7 -2023-07-08 08:14:24.432218 2023-07-08 08:14:24.432228 aggnd 055597793 R rec 5ac1e82d-5d92-4a93-b55d-bff11f3ff196 -2023-07-08 08:14:24.51591 2023-07-08 08:14:24.515921 aggnd 055608205 R rec a752bcc1-b9aa-4694-9b1f-1b638631362f -2023-07-08 08:14:24.6181 2023-07-08 08:14:24.61811 aggnd 055656595 R rec 04e15c3c-3a3c-4a87-804e-66182c99cbea -2023-07-08 08:14:24.688893 2023-07-08 08:14:24.689046 aggnd 055663354 R rec aece0678-f701-4e77-ae6b-cca76dcb5981 -2023-07-08 08:14:24.769984 2023-07-08 08:14:24.769994 aggnd 055689159 R rec 7e1bd621-019f-4f45-9487-96fd8564b18c -2023-07-08 08:14:24.849266 2023-07-08 08:14:24.849281 aggnd 055718086 R rec e9d0d0a1-9bac-43ee-9214-e65a0aa8e32f -2023-07-08 08:14:24.930945 2023-07-08 08:14:24.93095 aggnd 05573782X R rec d74f99ea-6402-4c4e-9d8f-51c70072c209 -2023-07-08 08:14:25.0329 2023-07-08 08:14:25.032905 aggnd 055774520 R rec 9500327d-f0f2-4300-b9f5-d85d14e68bf5 -2023-07-08 08:14:25.149767 2023-07-08 08:14:25.149778 aggnd 055798837 R rec a7ba0a3a-000f-4e16-9766-f16ce760576e -2023-07-08 08:14:25.228494 2023-07-08 08:14:25.228499 aggnd 055823866 R rec 966079b9-b7c1-4017-8e85-1cb37386f1cf -2023-07-08 08:14:25.328255 2023-07-08 08:14:25.328261 aggnd 055837417 R rec b8740636-75bf-42e2-9598-388229cdbe46 -2023-07-08 08:14:25.407783 2023-07-08 08:14:25.407793 aggnd 055842941 R rec b879d546-dba3-4848-b82c-0268aa3ff21c -2023-07-08 08:14:25.503091 2023-07-08 08:14:25.503105 aggnd 055872891 R rec abe9a719-4d28-4cae-a3e0-61ac0420f0d2 -2023-07-08 08:14:25.589277 2023-07-08 08:14:25.58929 aggnd 055899781 R rec b97c149c-f219-4a97-a4b5-75378e85b4fd -2023-07-08 08:14:25.673612 2023-07-08 08:14:25.673622 aggnd 055949002 R rec edefd474-30dd-4565-842b-63d72bf1ce95 -2023-07-08 08:14:25.765146 2023-07-08 08:14:25.765152 aggnd 055952283 R rec 7880e252-3506-4ab7-b6b0-32b5ea565c03 -2023-07-08 08:14:25.848343 2023-07-08 08:14:25.848349 aggnd 056024045 R rec 234fbe68-5070-4593-b226-4dbfbd9fb7a9 -2023-07-08 08:14:25.9382 2023-07-08 08:14:25.938213 aggnd 056088612 R rec fb36a89c-133f-4754-a1cb-d1ab6081a45c -2023-07-08 08:14:26.038578 2023-07-08 08:14:26.038583 aggnd 056119054 R rec 7dc5a94c-9dc7-4aef-ac6a-cd187d453194 -2023-07-08 08:14:26.131997 2023-07-08 08:14:26.132003 aggnd 056140010 R rec 399122dc-227d-419c-9168-e17bb007a5a1 -2023-07-08 08:14:26.205388 2023-07-08 08:14:26.2054 aggnd 056141645 R rec d9b73950-15d7-4684-9826-09ea91db6d9b -2023-07-08 08:14:26.295516 2023-07-08 08:14:26.295526 aggnd 056169302 R rec 93e1addd-74d5-4408-a57c-af91a9f74cfd -2023-07-08 08:14:26.390063 2023-07-08 08:14:26.390079 aggnd 056281544 R rec 760aa99b-8ce8-46f7-ad78-35a3ec299dec -2023-07-08 08:14:26.479989 2023-07-08 08:14:26.479994 aggnd 056310099 R rec d0593d8b-380f-428c-8ae6-9ac1ad191c91 -2023-07-08 08:14:26.565544 2023-07-08 08:14:26.565549 aggnd 05634371X R rec 07bb2826-458d-46c8-868a-01da944e5a97 -2023-07-08 08:14:26.657652 2023-07-08 08:14:26.657662 aggnd 1000024091 R rec 9fc61cb8-9b04-4a37-ad8e-b12e9c183b8f -2023-07-08 08:14:26.752797 2023-07-08 08:14:26.752813 aggnd 1000226778 R rec ba75238c-00eb-4e0a-8155-2d137d613114 -2023-07-08 08:14:26.863969 2023-07-08 08:14:26.863979 aggnd 1000228320 R rec 6603b8aa-f6d8-45aa-b1a9-c74114e5b93d -2023-07-08 08:14:26.957605 2023-07-08 08:14:26.95762 aggnd 1000295257 R rec 3b83e3df-36a7-424d-b88c-be9bbe700d99 -2023-07-08 08:14:27.048665 2023-07-08 08:14:27.048671 aggnd 1000465780 R rec c2a30dd7-9695-4e7b-befd-e2ff98c42c91 -2023-07-08 08:14:27.136928 2023-07-08 08:14:27.136941 aggnd 1000582329 R rec 5ccdac4a-04cc-4aca-aafa-ac99f40cc846 -2023-07-08 08:14:27.236205 2023-07-08 08:14:27.236217 aggnd 1000592979 R rec 92c469d8-5db1-4e65-9f94-5d270173f984 -2023-07-08 08:14:27.32252 2023-07-08 08:14:27.322533 aggnd 1000594521 R rec 9995ffca-855d-4efd-84ac-fdbd68082c17 -2023-07-08 08:14:27.413232 2023-07-08 08:14:27.413237 aggnd 1000601153 R rec da8b2777-82ae-4d91-a05f-51f7f3229b97 -2023-07-08 08:14:27.495005 2023-07-08 08:14:27.49501 aggnd 1000610896 R rec 7c77b729-f9ec-4b78-bfdf-ab48f0ab44d9 -2023-07-08 08:14:27.580579 2023-07-08 08:14:27.580584 aggnd 1000681815 R rec f6a1469f-fb4c-488c-98b1-e61d18f7fb0e -2023-07-08 08:14:27.664557 2023-07-08 08:14:27.664562 aggnd 100068944 R rec ed15105b-4c0b-4348-a995-3ada3df5ccd6 -2023-07-08 08:14:27.752745 2023-07-08 08:14:27.752758 aggnd 1000698777 R rec f042ad91-49d3-4f9b-8594-94663bda6fdc -2023-07-08 08:14:27.848919 2023-07-08 08:14:27.848924 aggnd 1000836290 R rec 7ee1bee3-443a-4b6f-8fd9-b81e9e7eb1d5 -2023-07-08 08:14:27.935867 2023-07-08 08:14:27.935887 aggnd 1000990958 R rec e5b3c6ad-6c91-4399-b152-bfd46aceb79a -2023-07-08 08:14:28.027877 2023-07-08 08:14:28.027882 aggnd 1001088646 R rec 253ada7d-fb50-421a-aa49-89fd33f72487 -2023-07-08 08:14:28.116083 2023-07-08 08:14:28.116087 aggnd 1001206770 R rec ed241951-aee9-48b2-b202-f641def5603e -2023-07-08 08:14:28.214338 2023-07-08 08:14:28.214347 aggnd 1001284402 R rec ef5c1e46-d995-42e3-b4e1-8219a2902156 -2023-07-08 08:14:28.321021 2023-07-08 08:14:28.321037 aggnd 1001334272 R rec 414c13d9-f5b1-4b5a-8d8a-dd5f4bfc57a0 -2023-07-08 08:14:28.413943 2023-07-08 08:14:28.413948 aggnd 1001567501 R rec 254ce076-9a4a-4739-ae03-51058c2c0410 -2023-07-08 08:14:28.487163 2023-07-08 08:14:28.487553 aggnd 100167328X R rec baa45dac-9ea8-4b0a-9fb9-fb74caf85294 -2023-07-08 08:14:28.587395 2023-07-08 08:14:28.58741 aggnd 1001827562 R rec 7101ad39-a359-48fd-93aa-9e1775e40c77 -2023-07-08 08:14:28.681671 2023-07-08 08:14:28.681677 aggnd 1001848063 R rec 0a171a0c-29f9-477b-96e5-fb441aabe828 -2023-07-08 08:14:28.769228 2023-07-08 08:14:28.769233 aggnd 1001985265 R rec fbc59a44-3ec4-49d4-b41e-dca5be04e3ce -2023-07-08 08:14:28.842967 2023-07-08 08:14:28.842973 aggnd 1002133998 R rec 62490d2d-edf6-4ad8-bd67-459264a78a86 -2023-07-08 08:14:28.910272 2023-07-08 08:14:28.910282 aggnd 1002374588 R rec 23fd669b-08f5-42b4-83b2-2e7bf72331ef -2023-07-08 08:14:29.029983 2023-07-08 08:14:29.029998 aggnd 1002731305 R rec 97947eda-67a9-4f75-a96e-5abe7808e143 -2023-07-08 08:14:29.163707 2023-07-08 08:14:29.163718 aggnd 1003000274 R rec 5501fb51-842f-4a2c-8455-973571446516 -2023-07-08 08:14:29.263841 2023-07-08 08:14:29.263857 aggnd 1003122329 R rec a72d4e7c-4707-4b61-ab37-733dccb2d792 -2023-07-08 08:14:29.384057 2023-07-08 08:14:29.384071 aggnd 1003145523 R rec 1a09b0eb-fdb5-437d-9f87-b595f86a6b47 -2023-07-08 08:14:29.481977 2023-07-08 08:14:29.481987 aggnd 100316042 R rec 4e8fa575-fd82-4c8c-a61b-b7416590fad0 -2023-07-08 08:14:29.586234 2023-07-08 08:14:29.586243 aggnd 1003218784 R rec 35d05fbc-2c5e-4cbe-b9e5-11a479248282 -2023-07-08 08:14:29.701922 2023-07-08 08:14:29.701937 aggnd 1003329063 R rec de6d9e53-aaa6-411d-98c6-c4ac00a1b03d -2023-07-08 08:14:29.829517 2023-07-08 08:14:29.829532 aggnd 100349471 R rec 8a72d315-2d15-4652-b9aa-422b83ec9556 -2023-07-08 08:14:29.951083 2023-07-08 08:14:29.951094 aggnd 1003824153 R rec 33e0fd8e-fd7f-403f-8c81-92fef57f6a3b -2023-07-08 08:14:30.077023 2023-07-08 08:14:30.077046 aggnd 1003837840 R rec b722465b-0f9c-4bcb-b3db-f0d26c325494 -2023-07-08 08:14:30.187877 2023-07-08 08:14:30.187889 aggnd 1004014589 R rec 062cbf20-3668-415f-82b8-bdf3ceac306b -2023-07-08 08:14:30.301679 2023-07-08 08:14:30.301692 aggnd 1004316267 R rec 67ef1f09-4ab4-4105-a983-7e6fb2191ec6 -2023-07-08 08:14:30.423314 2023-07-08 08:14:30.423327 aggnd 1004386486 R rec f0dcc297-4ad6-44a9-8681-32fc1a78b14f -2023-07-08 08:14:30.544445 2023-07-08 08:14:30.544455 aggnd 100438713X R rec 827fe038-6c36-456b-9226-7ea7d349718f -2023-07-08 08:14:30.668543 2023-07-08 08:14:30.668558 aggnd 1004477503 R rec f9f3023e-c68b-4f73-a926-c02d6035dd80 -2023-07-08 08:14:30.807368 2023-07-08 08:14:30.807381 aggnd 1004482531 R rec e45c2f17-0705-4a79-ba90-764e46552728 -2023-07-08 08:14:30.941068 2023-07-08 08:14:30.94108 aggnd 1004487096 R rec 9a0a16f9-f927-47ee-ada7-13d0d7cf7e29 -2023-07-08 08:14:31.061435 2023-07-08 08:14:31.061445 aggnd 1004490674 R rec 30bf1c03-5df9-46c5-bc88-a19a18bde505 -2023-07-08 08:14:31.194982 2023-07-08 08:14:31.194998 aggnd 1004494807 R rec bcd6ae55-23e2-4c2d-806d-3e93a18fc5e2 -2023-07-08 08:14:31.303143 2023-07-08 08:14:31.303156 aggnd 1004497415 R rec 65342ec0-daa2-4031-8a55-cea6504b1a14 -2023-07-08 08:14:31.445762 2023-07-08 08:14:31.445778 aggnd 1004503423 R rec 5318bd44-3e98-473f-9fa8-63b0c32c8741 -2023-07-08 08:14:31.576736 2023-07-08 08:14:31.576753 aggnd 1004520778 R rec 8810780a-ef0d-49c0-8ab3-611465016e21 -2023-07-08 08:14:31.691312 2023-07-08 08:14:31.691327 aggnd 1004537549 R rec ad903cb0-2f27-465a-8818-47f37cf61008 -2023-07-08 08:14:31.82838 2023-07-08 08:14:31.828391 aggnd 1004552424 R rec 60149455-0668-4f32-9403-4b25ac2bcb1a -2023-07-08 08:14:31.934671 2023-07-08 08:14:31.934686 aggnd 100455706X R rec 1f4d6f1f-c578-4f21-8843-a8801a17c1a2 -2023-07-08 08:14:32.06342 2023-07-08 08:14:32.063434 aggnd 1004578172 R rec 7d07df5c-a17d-4c60-8264-2b427e6410b7 -2023-07-08 08:14:32.205138 2023-07-08 08:14:32.205148 aggnd 1004580428 R rec ab5c24b7-6007-4813-adc4-ef49b2a4a7b9 -2023-07-08 08:14:32.306078 2023-07-08 08:14:32.306094 aggnd 1004597800 R rec 4ede7d3a-1a55-4e12-9f6a-fa9e416ff9df -2023-07-08 08:14:32.408866 2023-07-08 08:14:32.408885 aggnd 1004602456 R rec 19e6bffb-50af-4438-95ee-322949b08983 -2023-07-08 08:14:32.520015 2023-07-08 08:14:32.520029 aggnd 1004610041 R rec 4c31d312-5305-4b18-a62d-ec52c79bf5a0 -2023-07-08 08:14:32.627791 2023-07-08 08:14:32.627801 aggnd 1004623488 R rec 7676daa6-5135-456f-8bbc-8595431d6d3f -2023-07-08 08:14:32.734817 2023-07-08 08:14:32.734828 aggnd 1004659237 R rec f620c9b9-3a6e-499e-8bcd-89deb5cf444d -2023-07-08 08:14:32.86148 2023-07-08 08:14:32.861493 aggnd 1004691408 R rec 3f5ecae8-5162-4579-ae3d-ee43a25cd655 -2023-07-08 08:14:32.967304 2023-07-08 08:14:32.967314 aggnd 1004696000 R rec d6358996-2fa3-4baf-9599-5e8df7232545 -2023-07-08 08:14:33.092685 2023-07-08 08:14:33.092697 aggnd 1004996152 R rec e35f20a9-7080-4b7e-9752-b98060150d07 -2023-07-08 08:14:33.198719 2023-07-08 08:14:33.19873 aggnd 1005138168 R rec 447358b0-7b02-4c92-bfab-eb7ced07c44a -2023-07-08 08:14:33.294554 2023-07-08 08:14:33.294568 aggnd 1005381364 R rec 392dcb01-23cf-4d54-9d0f-f69bbfbcdd79 -2023-07-08 08:14:33.389008 2023-07-08 08:14:33.389019 aggnd 1005446873 R rec 73b78aa4-73b8-4218-85c0-19d1eef72d30 -2023-07-08 08:14:33.52628 2023-07-08 08:14:33.52629 aggnd 1006191062 R rec eb85723d-6b94-4a1e-b1ef-7f09a274f6d6 -2023-07-08 08:14:33.638604 2023-07-08 08:14:33.638619 aggnd 1006414401 R rec baa77cc2-bb30-4ce4-a718-d60bd46481c0 -2023-07-08 08:14:33.742915 2023-07-08 08:14:33.742931 aggnd 1006687815 R rec 645ebf12-5188-4625-a05b-496afc3dde43 -2023-07-08 08:14:33.878159 2023-07-08 08:14:33.878172 aggnd 1006928111 R rec 1e7059af-ded3-46c8-a63b-09462104eebe -2023-07-08 08:14:34.012156 2023-07-08 08:14:34.01217 aggnd 1007180692 R rec 2de46950-b485-48ee-8b30-58cff7d4ebb6 -2023-07-08 08:14:34.151098 2023-07-08 08:14:34.15111 aggnd 1007242396 R rec b37a53a7-619b-4c6f-9331-b3fc523b202e -2023-07-08 08:14:34.269853 2023-07-08 08:14:34.269864 aggnd 1007432802 R rec 8b020e36-2a87-445b-b04e-26a948ac1baf -2023-07-08 08:14:34.385536 2023-07-08 08:14:34.385548 aggnd 1007693789 R rec a9a55849-f0a7-44b1-8629-2d530cf101a9 -2023-07-08 08:14:34.486572 2023-07-08 08:14:34.486606 aggnd 1007769319 R rec f2684240-be4f-4c4e-95da-552973f32a31 -2023-07-08 08:14:34.609761 2023-07-08 08:14:34.609772 aggnd 1007863307 R rec 39a3c477-a993-4b1c-ac4d-a7d95f7a151e -2023-07-08 08:14:34.745646 2023-07-08 08:14:34.745656 aggnd 1008172537 R rec ee2e30c9-c2cd-4fdc-bb79-cbd83ca9ef3d -2023-07-08 08:14:34.869828 2023-07-08 08:14:34.869838 aggnd 1008311308 R rec 7109c63b-dbee-4ba4-8f2c-14a1226383e4 -2023-07-08 08:14:34.993188 2023-07-08 08:14:34.993198 aggnd 1008358118 R rec 2f1f91a2-2c77-4776-afad-6a221c92e29a -2023-07-08 08:14:35.114844 2023-07-08 08:14:35.11485 aggnd 1008359025 R rec aae29b2e-495c-4c39-a97b-0ebe596198e5 -2023-07-08 08:14:35.201351 2023-07-08 08:14:35.201356 aggnd 1008374040 R rec fd3f7419-25a5-4056-9fda-44a619bc2b66 -2023-07-08 08:14:35.272997 2023-07-08 08:14:35.273003 aggnd 1008509957 R rec e75fb478-c91f-45b5-a2b3-62244e18f493 -2023-07-08 08:14:35.345314 2023-07-08 08:14:35.345322 aggnd 1008705683 R rec 9bfc7001-07fa-4ef1-af85-f4c7a5087ae2 -2023-07-08 08:14:35.422662 2023-07-08 08:14:35.422668 aggnd 1008850411 R rec 208c9ef1-25b1-4516-81e5-3633b675da38 -2023-07-08 08:14:35.490997 2023-07-08 08:14:35.491002 aggnd 1008982075 R rec c52a9e97-0a19-4a67-983c-b27a5a334866 -2023-07-08 08:14:35.563221 2023-07-08 08:14:35.563227 aggnd 1009099981 R rec cee839ed-ed87-4bef-913c-8117cf81de51 -2023-07-08 08:14:35.652999 2023-07-08 08:14:35.653005 aggnd 1009237543 R rec e997d6a8-0b5e-4966-bcd7-31492fb7bfb7 -2023-07-08 08:14:35.739024 2023-07-08 08:14:35.739036 aggnd 1009363581 R rec 18523724-4a01-4f7c-a617-2ba92d76d726 -2023-07-08 08:14:35.82346 2023-07-08 08:14:35.823467 aggnd 1009625977 R rec 93cda702-6b35-4897-8d85-0ba3e74102e7 -2023-07-08 08:14:35.936804 2023-07-08 08:14:35.936816 aggnd 100963315 R rec fe30f6d6-655f-41a6-a173-b4e8ca0e9ad8 -2023-07-08 08:14:36.020484 2023-07-08 08:14:36.0205 aggnd 1009786741 R rec ee2420b7-289e-4218-9851-7d755c01f82e -2023-07-08 08:14:36.116337 2023-07-08 08:14:36.116342 aggnd 1010306146 R rec 7fa1a653-51b1-44f2-aabf-f23b6287af94 -2023-07-08 08:14:36.199291 2023-07-08 08:14:36.199297 aggnd 1010326945 R rec 81f1a4ee-2206-4c4a-93cc-3b284448e8b7 -2023-07-08 08:14:36.299304 2023-07-08 08:14:36.299321 aggnd 101054389X R rec 79ee9aae-b62a-4bb1-beee-e2dfc6891f0f -2023-07-08 08:14:36.409847 2023-07-08 08:14:36.409863 aggnd 1010664034 R rec f994cb5b-6fd2-4708-9f74-aa18b8d38e2d -2023-07-08 08:14:36.503766 2023-07-08 08:14:36.503802 aggnd 1010670174 R rec f14b615d-69d5-4952-922c-b1d68a46f8ce -2023-07-08 08:14:36.592845 2023-07-08 08:14:36.592861 aggnd 1010696092 R rec 5395e9aa-552f-4b16-9305-351381e80a74 -2023-07-08 08:14:36.664936 2023-07-08 08:14:36.664941 aggnd 1010769979 R rec 99038357-8ef2-4cbe-a03f-5648795290e3 -2023-07-08 08:14:36.736634 2023-07-08 08:14:36.73664 aggnd 1010987895 R rec 49a78a4c-632d-4437-814d-291e26b39810 -2023-07-08 08:14:36.816081 2023-07-08 08:14:36.816095 aggnd 1011029162 R rec c45a3204-0111-4167-a458-9db9ac8c3fce -2023-07-08 08:14:36.929042 2023-07-08 08:14:36.929058 aggnd 1011038692 R rec 8f67a489-8c7e-47ac-9e1c-3b9b04245a99 -2023-07-08 08:14:37.023872 2023-07-08 08:14:37.023883 aggnd 1011064766 R rec 4a7545a7-13de-4e88-b65b-15a1b4a86e7f -2023-07-08 08:14:37.105069 2023-07-08 08:14:37.105074 aggnd 1011072602 R rec 5c85735d-4619-48a5-ba09-116b57a9c458 -2023-07-08 08:14:37.178048 2023-07-08 08:14:37.178057 aggnd 1011184176 R rec cd92e94d-8b47-4fa3-9aff-78966c0b252e -2023-07-08 08:14:37.257819 2023-07-08 08:14:37.25783 aggnd 1011184672 R rec 97131cb8-d195-4c9d-bed0-7e902fad29d2 -2023-07-08 08:14:37.336808 2023-07-08 08:14:37.336814 aggnd 1011196735 R rec 2d74bca4-374d-460c-9075-9983a4e8daf2 -2023-07-08 08:14:37.406577 2023-07-08 08:14:37.406583 aggnd 1011276259 R rec 7861652c-bb4c-431b-9f5c-d72f5107cbd0 -2023-07-08 08:14:37.473411 2023-07-08 08:14:37.473417 aggnd 1011311550 R rec 35e28de9-49d2-4ebe-8498-c6874be4d565 -2023-07-08 08:14:37.537278 2023-07-08 08:14:37.537283 aggnd 1011400707 R rec 2e2da42f-bee1-44ff-bf06-3e690ef39983 -2023-07-08 08:14:37.604533 2023-07-08 08:14:37.604539 aggnd 1011449145 R rec d3151411-fc1d-4b03-95d8-41b93ec6dab8 -2023-07-08 08:14:37.675022 2023-07-08 08:14:37.675028 aggnd 1011453215 R rec d9929056-6a72-413a-a3b2-9d999e5c92ee -2023-07-08 08:14:37.748473 2023-07-08 08:14:37.748479 aggnd 1011475596 R rec f8db2382-73bc-4576-a832-a30a084de607 -2023-07-08 08:14:37.82567 2023-07-08 08:14:37.825681 aggnd 1011506084 R rec 02387315-8f0d-4641-ac5e-172ce9f0d0f2 -2023-07-08 08:14:37.907513 2023-07-08 08:14:37.907529 aggnd 1011618362 R rec 3db850c4-830f-46f1-b6ea-f33215a470de -2023-07-08 08:14:38.001643 2023-07-08 08:14:38.001655 aggnd 1011673835 R rec 0d662435-c19c-4c39-83fa-3f2e031cda3a -2023-07-08 08:14:38.08399 2023-07-08 08:14:38.083995 aggnd 1011705486 R rec cce1189b-519a-4aed-a99d-8d7d7363eb73 -2023-07-08 08:14:38.164448 2023-07-08 08:14:38.164458 aggnd 1011744619 R rec bf2fb270-f9f2-4729-9cf2-b7f14ab702ee -2023-07-08 08:14:38.25698 2023-07-08 08:14:38.256997 aggnd 1011762676 R rec 57194070-a87e-400b-8ca4-105ec725557d -2023-07-08 08:14:38.349415 2023-07-08 08:14:38.349426 aggnd 1011811669 R rec 23b7c6d5-5b8e-4bb5-ae51-a59056a2c5b1 -2023-07-08 08:14:38.433482 2023-07-08 08:14:38.433494 aggnd 1011875829 R rec 2d6b4c7c-70c9-416e-8d13-d1aa520ea4c7 -2023-07-08 08:14:38.517391 2023-07-08 08:14:38.517402 aggnd 1011887444 R rec 353fc30c-c023-48d3-91b6-b86f39644d0c -2023-07-08 08:14:38.615171 2023-07-08 08:14:38.615176 aggnd 1011898012 R rec f1bb437e-34c0-4c8e-87d5-83516b65c99c -2023-07-08 08:14:38.688266 2023-07-08 08:14:38.688277 aggnd 1011967472 R rec cdd349eb-217a-4fc6-a31d-5822f84ead45 -2023-07-08 08:14:38.785912 2023-07-08 08:14:38.785923 aggnd 1012126404 R rec 727378fe-7203-4a36-a668-80d897c6b8ef -2023-07-08 08:14:38.865565 2023-07-08 08:14:38.865579 aggnd 1012244741 R rec dbdb359e-e543-4f17-9452-fa9c680d5009 -2023-07-08 08:14:38.944113 2023-07-08 08:14:38.944129 aggnd 1012247554 R rec 4ab13953-7e26-4f98-8acc-6daf971be997 -2023-07-08 08:14:39.037824 2023-07-08 08:14:39.037839 aggnd 1012247589 R rec d1d197e5-88c5-4148-bac8-c2ce3b8c9245 -2023-07-08 08:14:39.135286 2023-07-08 08:14:39.135291 aggnd 1012247627 R rec acb817e5-9363-46c6-bf9b-d0c84040e6c0 -2023-07-08 08:14:39.252468 2023-07-08 08:14:39.252479 aggnd 1012262367 R rec 7fbd0983-cfa9-4a87-9e6a-743d81b81110 -2023-07-08 08:14:39.392404 2023-07-08 08:14:39.39241 aggnd 1012277151 R rec efcb95ae-97ab-4d9c-a960-c79a2d4b0beb -2023-07-08 08:14:39.503987 2023-07-08 08:14:39.503994 aggnd 1012289915 R rec 74f1dc4b-9a2d-4127-a334-020e85bdf572 -2023-07-08 08:14:39.632557 2023-07-08 08:14:39.632563 aggnd 1012299805 R rec d3d4f2cd-e902-40f6-854b-ef3fc8193161 -2023-07-08 08:14:39.736578 2023-07-08 08:14:39.736593 aggnd 1012301389 R rec 3ff20c0c-2679-41a3-960a-e6c0dff83a84 -2023-07-08 08:14:39.83452 2023-07-08 08:14:39.83453 aggnd 1012304973 R rec 2ba2d376-d149-4ca9-92d7-789062c8be6f -2023-07-08 08:14:39.944675 2023-07-08 08:14:39.944687 aggnd 1012336026 R rec 429b6294-8589-4fcb-9337-59d7aaefb7f6 -2023-07-08 08:14:40.052867 2023-07-08 08:14:40.052872 aggnd 101234472X R rec 1d6ab5ac-eacf-4eae-bf82-b28ab70f4745 -2023-07-08 08:14:40.140212 2023-07-08 08:14:40.140217 aggnd 1012370755 R rec 73b4d3fa-1a55-4723-a9c9-24bf3618e64e -2023-07-08 08:14:40.238269 2023-07-08 08:14:40.238285 aggnd 1012371964 R rec 296fca61-eed2-40ff-affe-1d631e7c7724 -2023-07-08 08:14:40.333799 2023-07-08 08:14:40.33381 aggnd 1012374548 R rec bde70141-5971-40d4-9103-d14836b83697 -2023-07-08 08:14:40.421673 2023-07-08 08:14:40.421692 aggnd 1012379574 R rec 66801bd6-49a7-4089-9f02-fd325b616e0c -2023-07-08 08:14:40.514601 2023-07-08 08:14:40.514613 aggnd 1012394212 R rec a0806aca-fc81-4f96-b8b7-8b648ddb9041 -2023-07-08 08:14:40.606817 2023-07-08 08:14:40.606828 aggnd 101239705X R rec e99fcc35-e645-4e9b-a607-a2325dbb5b91 -2023-07-08 08:14:40.686321 2023-07-08 08:14:40.686337 aggnd 1012398897 R rec d4931f52-b9db-422b-a98a-83e02e8e8dc8 -2023-07-08 08:14:40.771836 2023-07-08 08:14:40.771852 aggnd 1012399737 R rec 0fe04014-4ffa-4e0a-bc96-ac2240c87834 -2023-07-08 08:14:40.860894 2023-07-08 08:14:40.860904 aggnd 1012410234 R rec 3a33aacb-5fc3-49b8-8ebc-7353ef110c7e -2023-07-08 08:14:40.955592 2023-07-08 08:14:40.955603 aggnd 1012413934 R rec 2ec294be-01be-4ac0-9cfe-a63ae39f9194 -2023-07-08 08:14:41.048558 2023-07-08 08:14:41.048564 aggnd 1012484076 R rec 2952ffd8-ecb2-4234-89ad-c30eb1b5894c -2023-07-08 08:14:41.150636 2023-07-08 08:14:41.150647 aggnd 1012546772 R rec f71eed6b-87f0-44e9-8214-50f19f2fe206 -2023-07-08 08:14:41.2263 2023-07-08 08:14:41.226306 aggnd 1012559114 R rec f9d1cb1e-e6d0-45e7-bd4f-e74b0aac8240 -2023-07-08 08:14:41.314317 2023-07-08 08:14:41.314323 aggnd 1012580350 R rec 7fa55ea2-4805-48e0-9e6d-48e7cce8b88c -2023-07-08 08:14:41.399753 2023-07-08 08:14:41.399764 aggnd 1012659720 R rec c8589e8f-07e5-43b0-a9e7-5bfa48619417 -2023-07-08 08:14:41.482964 2023-07-08 08:14:41.482975 aggnd 1012670813 R rec 5f982908-b0b8-4473-bf8b-c17f289d3060 -2023-07-08 08:14:41.601527 2023-07-08 08:14:41.601539 aggnd 1012703487 R rec 3e1b40ee-e83d-4412-b5dc-f534c2febf89 -2023-07-08 08:14:41.67383 2023-07-08 08:14:41.673835 aggnd 1012706826 R rec 109a4dfc-466b-4a33-a064-aa797ea04893 -2023-07-08 08:14:41.784561 2023-07-08 08:14:41.784567 aggnd 1012770982 R rec 898a94d6-a3f1-47cd-be3f-e06c2e6a196b -2023-07-08 08:14:41.867959 2023-07-08 08:14:41.86797 aggnd 1012781593 R rec d6ba879b-aba7-4797-9fd7-56abd23e7b5d -2023-07-08 08:14:41.978126 2023-07-08 08:14:41.978139 aggnd 1012785815 R rec 4da488b9-c4bc-430f-8437-1a9c39b7c102 -2023-07-08 08:14:42.066933 2023-07-08 08:14:42.066938 aggnd 1012795519 R rec 6ea82287-14ec-4d68-a51f-022b29de06bf -2023-07-08 08:14:42.150705 2023-07-08 08:14:42.150711 aggnd 1012797198 R rec 449b44b7-a740-4382-af96-050555ed3521 -2023-07-08 08:14:42.231602 2023-07-08 08:14:42.231608 aggnd 1012805433 R rec ff77019a-6933-4fb0-a519-c1e96270d37b -2023-07-08 08:14:42.311687 2023-07-08 08:14:42.3117 aggnd 1012879887 R rec 4332fd59-4f2e-4162-923c-e139664089f9 -2023-07-08 08:14:42.428129 2023-07-08 08:14:42.428143 aggnd 1012883744 R rec 1ab0d1ef-ea9c-4abe-a4e1-b928805caeeb -2023-07-08 08:14:42.527783 2023-07-08 08:14:42.527795 aggnd 1012992349 R rec 8b88efc5-19d7-4402-96e1-55d775c64283 -2023-07-08 08:14:42.613423 2023-07-08 08:14:42.613433 aggnd 1013119495 R rec 37a29b92-7057-4eea-bcaf-e7d2c97a89d0 -2023-07-08 08:14:42.683779 2023-07-08 08:14:42.683789 aggnd 1013122089 R rec b766fe55-3261-4eea-8994-bd15c040cfa5 -2023-07-08 08:14:42.782859 2023-07-08 08:14:42.782869 aggnd 101314953X R rec 7e5aa7d1-75c0-43c2-aa70-e0c7f4159015 -2023-07-08 08:14:42.864007 2023-07-08 08:14:42.864016 aggnd 1013171349 R rec 9125ac6a-58b3-4026-a326-41e105fc7b5e -2023-07-08 08:14:42.951807 2023-07-08 08:14:42.951823 aggnd 1013251334 R rec 13318a70-fd3c-4876-988d-6df3b85536a0 -2023-07-08 08:14:43.046996 2023-07-08 08:14:43.047002 aggnd 1013340728 R rec 138ad89e-2693-4f24-91a3-874b2e0b0e17 -2023-07-08 08:14:43.144743 2023-07-08 08:14:43.144748 aggnd 1013349806 R rec 58ac9c33-a670-4db5-8535-f784338a938b -2023-07-08 08:14:43.219596 2023-07-08 08:14:43.219612 aggnd 1013363299 R rec 0103c534-dc9f-4db1-8db1-92c328aa66d5 -2023-07-08 08:14:43.304557 2023-07-08 08:14:43.304569 aggnd 1013479785 R rec fee87316-a13b-46f4-837e-ce6e0c21068a -2023-07-08 08:14:43.375797 2023-07-08 08:14:43.375807 aggnd 1013536878 R rec 2a8bae08-3db7-4db2-8a15-201e06393f5b -2023-07-08 08:14:43.457035 2023-07-08 08:14:43.457076 aggnd 1013590554 R rec 8c6f2aba-1eee-4df4-8d89-8719e5361e56 -2023-07-08 08:14:43.532151 2023-07-08 08:14:43.532162 aggnd 1013628063 R rec e9ece258-c077-45d5-afed-00bb33922928 -2023-07-08 08:14:43.614587 2023-07-08 08:14:43.614596 aggnd 1013814339 R rec 5b4c9d50-7336-4095-b1e3-f2f8c6c3e2b4 -2023-07-08 08:14:43.687109 2023-07-08 08:14:43.68712 aggnd 1013871383 R rec fae8ce5a-922b-4247-ad73-5082e82db495 -2023-07-08 08:14:43.771014 2023-07-08 08:14:43.771025 aggnd 1013878353 R rec 8eb4d237-36f5-41f8-b0ed-f34a05c37e72 -2023-07-08 08:14:43.845109 2023-07-08 08:14:43.845114 aggnd 1013882156 R rec 7775c389-56f5-4810-95fc-0a212f40c6b6 -2023-07-08 08:14:43.928627 2023-07-08 08:14:43.92883 aggnd 1014065240 R rec cb31a928-f6f3-4ded-a70f-9d2679b94da8 -2023-07-08 08:14:44.01112 2023-07-08 08:14:44.011125 aggnd 1014089158 R rec 97584be1-d292-4fac-9e73-e7f5ad57a413 -2023-07-08 08:14:44.097887 2023-07-08 08:14:44.097892 aggnd 1014092191 R rec abcb02e9-8f15-4433-87d8-ee4913b165ac -2023-07-08 08:14:44.179629 2023-07-08 08:14:44.179634 aggnd 1014136539 R rec efc8bd6a-0d32-4e23-97ba-3c10eb6c825c -2023-07-08 08:14:44.279939 2023-07-08 08:14:44.279944 aggnd 1014143454 R rec 22fbe434-10b9-4c55-82ef-335ecab31fe2 -2023-07-08 08:14:44.366015 2023-07-08 08:14:44.36602 aggnd 1014223768 R rec 51533b0c-b936-42f7-ba51-adf9d9d1c5e2 -2023-07-08 08:14:44.461093 2023-07-08 08:14:44.461098 aggnd 101425762X R rec 1b8f3ae2-2057-477b-95b1-139e3dbe1501 -2023-07-08 08:14:44.545443 2023-07-08 08:14:44.545453 aggnd 1014290287 R rec df46d3eb-bf05-4439-a869-f5adf8dfea72 -2023-07-08 08:14:44.637299 2023-07-08 08:14:44.637305 aggnd 1014396158 R rec 16ca957f-b131-49de-87cd-b9cc9ed5f8cc -2023-07-08 08:14:44.714757 2023-07-08 08:14:44.714763 aggnd 1014396824 R rec 684fa79b-b035-4df2-8c22-65a47332ca03 -2023-07-08 08:14:44.814504 2023-07-08 08:14:44.814509 aggnd 101440391X R rec d1d935a6-5533-463f-ba49-201ca1dba1e3 -2023-07-08 08:14:44.90146 2023-07-08 08:14:44.901474 aggnd 1014449278 R rec 34670b8b-2182-44fa-a0a9-40daf42f7abc -2023-07-08 08:14:44.976739 2023-07-08 08:14:44.976751 aggnd 1014449677 R rec c7797565-cd94-498a-9fb0-9b885e97cb15 -2023-07-08 08:14:45.062766 2023-07-08 08:14:45.062771 aggnd 1014548012 R rec f69fae56-cab6-484a-96b7-6e68e149efa2 -2023-07-08 08:14:45.138129 2023-07-08 08:14:45.138134 aggnd 1014626358 R rec 214a12e8-9579-4be0-8b0c-ab67910025ad -2023-07-08 08:14:45.213979 2023-07-08 08:14:45.213985 aggnd 1014638895 R rec f57de366-0b44-4358-8171-4b55e13f92a1 -2023-07-08 08:14:45.305212 2023-07-08 08:14:45.305224 aggnd 1014661951 R rec 8fc8482f-efe8-4930-aa10-9381708d9f5c -2023-07-08 08:14:45.383623 2023-07-08 08:14:45.383636 aggnd 1014671604 R rec b9d6e1e6-8c6c-480c-8943-7dbbda7463c2 -2023-07-08 08:14:45.469084 2023-07-08 08:14:45.469099 aggnd 1014677610 R rec 23930cd4-69ee-4a8b-9588-060bac66d6e4 -2023-07-08 08:14:45.558176 2023-07-08 08:14:45.558187 aggnd 1014681685 R rec 32e9feb3-5a8f-4f0c-a946-d40d11c68837 -2023-07-08 08:14:45.650414 2023-07-08 08:14:45.650422 aggnd 1014683998 R rec f4234683-9b05-4768-b4b4-52bc94d741ce -2023-07-08 08:14:45.751784 2023-07-08 08:14:45.751803 aggnd 1014696348 R rec e8e6eb58-4753-4557-ae4c-4ada3e65b9a0 -2023-07-08 08:14:45.835983 2023-07-08 08:14:45.835994 aggnd 1014702739 R rec e3ed0a91-bb0b-4dd3-9693-f9c47fd322b8 -2023-07-08 08:14:45.915124 2023-07-08 08:14:45.915129 aggnd 1014714222 R rec 7ce06a47-1cc3-4402-97fe-6975a621464a -2023-07-08 08:14:46.013112 2023-07-08 08:14:46.013122 aggnd 1014733642 R rec f5979cdd-0de8-425d-8686-b37a2fd2d764 -2023-07-08 08:14:46.11462 2023-07-08 08:14:46.114626 aggnd 1014745357 R rec 03b5101a-5897-4936-b9a4-afd404916376 -2023-07-08 08:14:46.188877 2023-07-08 08:14:46.188882 aggnd 101476677X R rec f9401f31-7685-4e9f-b848-e4dd4a4fdcc6 -2023-07-08 08:14:46.26425 2023-07-08 08:14:46.26426 aggnd 101477635X R rec 89f402b1-1031-4330-a837-b3fb99e03ce4 -2023-07-08 08:14:46.371492 2023-07-08 08:14:46.371511 aggnd 1014803217 R rec 1ce6d550-9fe9-4f2b-901e-65641da2c20d -2023-07-08 08:14:46.459958 2023-07-08 08:14:46.459969 aggnd 1014837839 R rec d6dd04ff-e377-420e-b81a-6114239b70da -2023-07-08 08:14:46.54278 2023-07-08 08:14:46.542792 aggnd 1014954320 R rec ecf386ee-af05-4f55-9366-ccc134daea84 -2023-07-08 08:14:46.629581 2023-07-08 08:14:46.629591 aggnd 1015098495 R rec fbad2fca-b6cb-4dcf-9908-ff0404294904 -2023-07-08 08:14:46.710853 2023-07-08 08:14:46.710865 aggnd 1015101003 R rec 53641f2b-b857-4611-b297-18b11d64c504 -2023-07-08 08:14:46.821141 2023-07-08 08:14:46.821152 aggnd 101514859X R rec 8ef7a7fd-94df-4945-8b27-1ae43b13c4c6 -2023-07-08 08:14:46.902744 2023-07-08 08:14:46.90276 aggnd 1015165990 R rec 08467aac-23c7-490b-9794-f3f2b17c55eb -2023-07-08 08:14:46.985672 2023-07-08 08:14:46.985688 aggnd 1015193862 R rec b00f3e6a-9cf9-40c5-949e-3b4bce247f62 -2023-07-08 08:14:47.096208 2023-07-08 08:14:47.096214 aggnd 1015243762 R rec 775051f3-c2ed-4fbe-8711-0e0add33589b -2023-07-08 08:14:47.174827 2023-07-08 08:14:47.174836 aggnd 1015331386 R rec 930a4738-9130-40ae-9199-a45c548d6aae -2023-07-08 08:14:47.24646 2023-07-08 08:14:47.246466 aggnd 1015348394 R rec cf9a1c39-57b1-49f4-a2cf-717e07e7388e -2023-07-08 08:14:47.323643 2023-07-08 08:14:47.323649 aggnd 1015354157 R rec 16365859-31f0-4f55-9edc-bcc24895a859 -2023-07-08 08:14:47.399108 2023-07-08 08:14:47.399114 aggnd 1015371035 R rec 1e903c15-8e03-4189-9ad4-069378033b11 -2023-07-08 08:14:47.49127 2023-07-08 08:14:47.491281 aggnd 1015412998 R rec cc24ffea-5a99-4188-8e08-f9e84d6e0dc5 -2023-07-08 08:14:47.57204 2023-07-08 08:14:47.572051 aggnd 1015428967 R rec 59c66194-7570-4e26-bf38-755013a7f2a4 -2023-07-08 08:14:47.6608 2023-07-08 08:14:47.66081 aggnd 1015448186 R rec f9a36237-6727-4540-a08b-5e01ae27c71a -2023-07-08 08:14:47.746668 2023-07-08 08:14:47.746678 aggnd 1015448305 R rec 8deb47be-ce12-44ef-88af-04c9d2ea2fae -2023-07-08 08:14:47.833658 2023-07-08 08:14:47.833669 aggnd 1015457789 R rec ffb8ff40-218d-4714-a2c8-38420fd35fda -2023-07-08 08:14:47.925046 2023-07-08 08:14:47.925058 aggnd 1015645631 R rec 3e4eec25-8f3a-430d-86e2-5cf8f0c4d48c -2023-07-08 08:14:48.022363 2023-07-08 08:14:48.022376 aggnd 1015750427 R rec daa567ac-4792-43b5-9625-06e7c8725ab3 -2023-07-08 08:14:48.10045 2023-07-08 08:14:48.100456 aggnd 1015752756 R rec 39e9c742-ed82-4bf4-be08-0c09ceec98e3 -2023-07-08 08:14:48.176454 2023-07-08 08:14:48.176464 aggnd 1015778275 R rec 3f0937a1-c314-4c47-8cc4-318d4444b5b1 -2023-07-08 08:14:48.263683 2023-07-08 08:14:48.263689 aggnd 1015799485 R rec 2276ae77-3a38-4020-af10-164a5738a67e -2023-07-08 08:14:48.392309 2023-07-08 08:14:48.39232 aggnd 1016006969 R rec f818ebc4-df43-419f-9880-bc8423f02747 -2023-07-08 08:14:48.469647 2023-07-08 08:14:48.469659 aggnd 1016159560 R rec 5140f2a4-f126-4f36-8df1-c9e47f13625c -2023-07-08 08:14:48.553834 2023-07-08 08:14:48.553848 aggnd 1016626150 R rec 4257093a-1a91-4961-ae67-3040543dc0f6 -2023-07-08 08:14:48.650313 2023-07-08 08:14:48.650317 aggnd 1016763387 R rec 6a9d6824-7d5e-4a58-a4aa-acc5c1174b63 -2023-07-08 08:14:48.736125 2023-07-08 08:14:48.736135 aggnd 1016951426 R rec 348145ae-721c-43ea-b7df-7747f65b1a33 -2023-07-08 08:14:48.814189 2023-07-08 08:14:48.814194 aggnd 1016975198 R rec c345daf0-0e0f-4352-9506-253823184724 -2023-07-08 08:14:48.93045 2023-07-08 08:14:48.930455 aggnd 1017107246 R rec 011eb002-2e8d-4a81-bd94-2cb222838f27 -2023-07-08 08:14:49.047499 2023-07-08 08:14:49.047504 aggnd 1017352712 R rec 6ab7e274-0147-472e-b559-ad4fed6bf0bf -2023-07-08 08:14:49.135312 2023-07-08 08:14:49.135321 aggnd 1017628769 R rec 30084772-80e8-45f6-9868-52476f11d580 -2023-07-08 08:14:49.216683 2023-07-08 08:14:49.216695 aggnd 1017668051 R rec b68b5b77-7982-4ffb-b454-afcb2b08dd6b -2023-07-08 08:14:49.314637 2023-07-08 08:14:49.314643 aggnd 1017696241 R rec b103f43e-c571-4c7f-963a-e6e88802b186 -2023-07-08 08:14:49.3965 2023-07-08 08:14:49.396505 aggnd 1018180087 R rec 9ecbb729-f542-4f23-9409-d5f6dba1588c -2023-07-08 08:14:49.477276 2023-07-08 08:14:49.477282 aggnd 1018299807 R rec e71585bd-0559-4f32-981a-2e30ad047a70 -2023-07-08 08:14:49.563302 2023-07-08 08:14:49.563306 aggnd 1018900772 R rec c018190b-4cee-435d-b137-8d89633790b6 -2023-07-08 08:14:49.643053 2023-07-08 08:14:49.643064 aggnd 1019086750 R rec 4a48bb22-4318-4b9c-b262-99746d98bc75 -2023-07-08 08:14:49.746191 2023-07-08 08:14:49.746201 aggnd 1020150378 R rec 1c0dbce4-8831-45cc-815c-04190cc220b3 -2023-07-08 08:14:49.850879 2023-07-08 08:14:49.850935 aggnd 102047033X R rec 8e06c1d6-ac88-4b59-982a-70ce65c5046a -2023-07-08 08:14:49.942438 2023-07-08 08:14:49.942453 aggnd 1020473932 R rec f382a762-149e-4b33-82a0-c58776e0a304 -2023-07-08 08:14:50.034195 2023-07-08 08:14:50.034208 aggnd 1020513020 R rec c6ce2e31-d706-4a8c-92e7-454a4f8c676e -2023-07-08 08:14:50.125622 2023-07-08 08:14:50.125628 aggnd 1020751282 R rec 37a90994-bbd4-4d36-b91e-7c33a6c3c50c -2023-07-08 08:14:50.208317 2023-07-08 08:14:50.208331 aggnd 102248435 R rec 3be03777-19bb-41f8-90fb-72b04aac2dd4 -2023-07-08 08:14:50.31617 2023-07-08 08:14:50.316175 aggnd 1023582090 R rec f7dc52dd-fd85-4239-9155-c015cc7be4f8 -2023-07-08 08:14:50.428734 2023-07-08 08:14:50.428739 aggnd 1023649187 R rec 0075f6d5-1fa2-4a74-bef3-f64d53591f28 -2023-07-08 08:14:50.506938 2023-07-08 08:14:50.506949 aggnd 102402868 R rec 85cf50ae-e23c-4843-980f-72a1c77e0ad5 -2023-07-08 08:14:50.603071 2023-07-08 08:14:50.603082 aggnd 102503214 R rec a03bc6da-842e-4123-af5f-f62a42d91c96 -2023-07-08 08:14:50.703426 2023-07-08 08:14:50.703437 aggnd 1025074823 R rec 20b878b3-f33d-4847-a29b-8d43e90081ff -2023-07-08 08:14:50.789058 2023-07-08 08:14:50.789069 aggnd 1025297636 R rec 851ed99b-7173-4b09-b5c0-86b3615b3068 -2023-07-08 08:14:50.880525 2023-07-08 08:14:50.88053 aggnd 1026199441 R rec a77e5864-8fc5-4661-b57d-a850e7947af2 -2023-07-08 08:14:50.980814 2023-07-08 08:14:50.980821 aggnd 1026316790 R rec 90809e02-81dd-4f00-bcac-4540f17d1065 -2023-07-08 08:14:51.081735 2023-07-08 08:14:51.081745 aggnd 1026448301 R rec f2bfd063-7c0e-43ba-9097-3f9bb366007d -2023-07-08 08:14:51.161303 2023-07-08 08:14:51.16131 aggnd 1027019080 R rec d9405e20-3a03-4a08-916f-d63b47c4250e -2023-07-08 08:14:51.245612 2023-07-08 08:14:51.245617 aggnd 1027170250 R rec 64d9d243-c9fd-4004-a0b4-ced82e2dcfef -2023-07-08 08:14:51.354592 2023-07-08 08:14:51.354602 aggnd 1027359981 R rec 86370093-92a5-4b00-a718-19541049019c -2023-07-08 08:14:51.43421 2023-07-08 08:14:51.434221 aggnd 1027463770 R rec 7933d5fb-1a73-4bfa-91e0-8a462fb89df9 -2023-07-08 08:14:51.535201 2023-07-08 08:14:51.535212 aggnd 1027567835 R rec befc21ac-28d8-40f6-91db-e6d6bdd1ab4e -2023-07-08 08:14:51.623003 2023-07-08 08:14:51.623017 aggnd 1028398166 R rec e9c6946c-cbb9-4a81-ae30-df5df01a1475 -2023-07-08 08:14:51.705415 2023-07-08 08:14:51.70543 aggnd 1028665504 R rec 9acf8c3b-2791-453c-9d39-824a3ebbe6d6 -2023-07-08 08:14:51.802875 2023-07-08 08:14:51.802886 aggnd 102892113 R rec 4deee822-185d-4734-873b-6dcf30cfd264 -2023-07-08 08:14:51.914872 2023-07-08 08:14:51.914878 aggnd 1030495416 R rec e2927936-5158-4595-b5ba-d80c424510c5 -2023-07-08 08:14:52.003434 2023-07-08 08:14:52.003453 aggnd 1031215441 R rec d36ae6ea-e276-4630-9ec2-1f00c02045ad -2023-07-08 08:14:52.086824 2023-07-08 08:14:52.086829 aggnd 103129928 R rec fff334f2-d613-47ab-870b-dc78df07ce90 -2023-07-08 08:14:52.162614 2023-07-08 08:14:52.162619 aggnd 103163357X R rec f5fcc525-f19d-402f-8d8b-cd561720a44e -2023-07-08 08:14:52.236576 2023-07-08 08:14:52.236587 aggnd 1032029374 R rec d0581201-ff64-4a06-a781-096a56dc491e -2023-07-08 08:14:52.337865 2023-07-08 08:14:52.337875 aggnd 1032456213 R rec 709b957c-39cd-4435-89d3-7e6915c12074 -2023-07-08 08:14:52.438682 2023-07-08 08:14:52.438695 aggnd 1032675357 R rec 3e626e6e-12b8-4e91-87b8-bb1cb0fa4bd4 -2023-07-08 08:14:52.528384 2023-07-08 08:14:52.528399 aggnd 1033120790 R rec aaf6f1b5-9145-46a8-b80a-adc9672597aa -2023-07-08 08:14:52.616389 2023-07-08 08:14:52.616407 aggnd 1033471542 R rec 0bd59715-a441-4446-b6f9-226e0e01944d -2023-07-08 08:14:52.693285 2023-07-08 08:14:52.6933 aggnd 1033570451 R rec 61d8094a-eb12-4361-b5f6-d38bcee41d17 -2023-07-08 08:14:52.788336 2023-07-08 08:14:52.788352 aggnd 1034236164 R rec f5c9294f-7f1f-456d-b86e-c651370ffea2 -2023-07-08 08:14:52.882878 2023-07-08 08:14:52.882888 aggnd 1034635476 R rec 868e1516-ff7a-4807-b272-fbf95f35547e -2023-07-08 08:14:52.972608 2023-07-08 08:14:52.972613 aggnd 103473262 R rec d6d8b594-6d3c-4e39-bcb8-caad80e68fa0 -2023-07-08 08:14:53.058627 2023-07-08 08:14:53.058632 aggnd 1035444666 R rec 6d092790-01d3-4f43-9bf5-d1c86e0458f5 -2023-07-08 08:14:53.158865 2023-07-08 08:14:53.158872 aggnd 1035621460 R rec bb2340dc-e42f-4fee-8b56-1d924a6f896a -2023-07-08 08:14:53.264919 2023-07-08 08:14:53.264932 aggnd 1035656221 R rec eef0f155-2dc5-42f0-8019-8d5b0d2cdfa7 -2023-07-08 08:14:53.375472 2023-07-08 08:14:53.375486 aggnd 1035688298 R rec 2a4710fc-a4cd-40b0-b306-452892f50066 -2023-07-08 08:14:53.502276 2023-07-08 08:14:53.502318 aggnd 1036111024 R rec 14fc2d2b-902a-4edb-b1a8-5f4fdf8899a1 -2023-07-08 08:14:53.607192 2023-07-08 08:14:53.607207 aggnd 1036550141 R rec 9319b42e-fd3f-4654-ae4c-e4330b112b37 -2023-07-08 08:14:53.719456 2023-07-08 08:14:53.71947 aggnd 1037547543 R rec 0c1ded71-ad44-4e51-99cb-e4383241232b -2023-07-08 08:14:53.834819 2023-07-08 08:14:53.834831 aggnd 1037748980 R rec 9c713b65-b58d-4562-9a18-b61528844490 -2023-07-08 08:14:53.935479 2023-07-08 08:14:53.935491 aggnd 1037788141 R rec 0f45d1ff-8daf-4ef3-9bd5-644171a78af7 -2023-07-08 08:14:54.063127 2023-07-08 08:14:54.063142 aggnd 103807349 R rec 128b897a-e95e-4507-9a23-f4740555e44c -2023-07-08 08:14:54.164543 2023-07-08 08:14:54.164557 aggnd 1038798124 R rec 4f8189a9-a299-4d16-b094-442cc0d0a145 -2023-07-08 08:14:54.282738 2023-07-08 08:14:54.282755 aggnd 103899138 R rec e0262313-820f-488f-b7a0-596dcb52399d -2023-07-08 08:14:54.378804 2023-07-08 08:14:54.378816 aggnd 104057386 R rec 6e210246-4fe7-479b-a7b8-f418967a87c7 -2023-07-08 08:14:54.484002 2023-07-08 08:14:54.484015 aggnd 1041364962 R rec 41c87436-4469-4414-9149-c5e89c8f51b3 -2023-07-08 08:14:54.601179 2023-07-08 08:14:54.601189 aggnd 1041494114 R rec 66f4d67c-c5df-4bc2-ab61-f39921547ffa -2023-07-08 08:14:54.785978 2023-07-08 08:14:54.785984 aggnd 1041505701 R rec c5da78ff-46f7-4ac2-a399-997e5c5f3ead -2023-07-08 08:14:54.855563 2023-07-08 08:14:54.855568 aggnd 1042050643 R rec 9699770e-f809-44d5-ace9-02d3dedf9da5 -2023-07-08 08:14:54.926527 2023-07-08 08:14:54.926533 aggnd 104240636 R rec 95329f24-6a30-473d-89ee-4d7b4f3b5a81 -2023-07-08 08:14:54.993032 2023-07-08 08:14:54.993038 aggnd 1043162917 R rec f453cf8a-40f8-47ac-88de-8f55ec69d3ae -2023-07-08 08:14:55.09496 2023-07-08 08:14:55.09497 aggnd 1043761047 R rec 8d1aca03-ed12-41ef-8e70-45ed8b2487ba -2023-07-08 08:14:55.216872 2023-07-08 08:14:55.216878 aggnd 1043881336 R rec 1882965c-25c6-4cae-a73a-e839cab84f53 -2023-07-08 08:14:55.316624 2023-07-08 08:14:55.316636 aggnd 1044246936 R rec 2b45e715-c00e-4341-8dce-b2421f0a9ff4 -2023-07-08 08:14:55.430721 2023-07-08 08:14:55.430732 aggnd 1044369329 R rec d2ae1fb4-3f49-48ad-be7c-0a5c9b31e5ef -2023-07-08 08:14:55.530629 2023-07-08 08:14:55.530642 aggnd 1046664522 R rec 1250fa5e-a3e3-439a-bf61-7a6f540d63f8 -2023-07-08 08:14:55.646493 2023-07-08 08:14:55.646509 aggnd 1047508257 R rec b3710fcd-9b4e-44ab-9e55-e28daf4f4fee -2023-07-08 08:14:55.771641 2023-07-08 08:14:55.771652 aggnd 1047811014 R rec 9bf117a8-992e-4e85-a715-71e170414607 -2023-07-08 08:14:55.884056 2023-07-08 08:14:55.884068 aggnd 1048228142 R rec 83573275-ba8b-45e2-b563-89963e7e7ff6 -2023-07-08 08:14:56.025938 2023-07-08 08:14:56.025952 aggnd 1048657442 R rec 211c6abe-fd8e-41e2-b8ce-69c1b0f04271 -2023-07-08 08:14:56.157764 2023-07-08 08:14:56.157778 aggnd 1050328639 R rec 2f9d6132-fec4-4a7a-b865-95af760ef019 -2023-07-08 08:14:56.295426 2023-07-08 08:14:56.295437 aggnd 1050869354 R rec 87220153-baab-4fdf-b1a2-a5aaa8814077 -2023-07-08 08:14:56.424815 2023-07-08 08:14:56.424828 aggnd 1051111412 R rec 5782a63b-8759-4e37-a1f6-620d7f5378f9 -2023-07-08 08:14:56.541429 2023-07-08 08:14:56.541444 aggnd 1051286786 R rec 6933f481-3851-43d7-b91e-d9bb9d0bd71c -2023-07-08 08:14:56.66354 2023-07-08 08:14:56.663549 aggnd 1051412552 R rec aa22d259-1548-4ec1-9e84-785cd7a05401 -2023-07-08 08:14:56.799021 2023-07-08 08:14:56.799036 aggnd 1051657490 R rec 7d230d7f-3739-4564-97fe-58707255e2d6 -2023-07-08 08:14:56.910499 2023-07-08 08:14:56.91051 aggnd 1051682878 R rec c7dfc7e3-80fb-4974-978d-a70c1f7f45c6 -2023-07-08 08:14:57.04602 2023-07-08 08:14:57.046032 aggnd 1051697891 R rec b59f836f-b3f9-4b5c-9d84-f5c76fc7e530 -2023-07-08 08:14:57.161341 2023-07-08 08:14:57.161351 aggnd 1051918510 R rec 4c6381c1-a02d-421d-8b3c-d562fb5738fb -2023-07-08 08:14:57.273894 2023-07-08 08:14:57.273904 aggnd 1052619274 R rec 4e71c004-e578-4cab-9be2-833b7560a230 -2023-07-08 08:14:57.384011 2023-07-08 08:14:57.384026 aggnd 1053241011 R rec ccc83690-a392-4932-85dc-5daa39f9f89a -2023-07-08 08:14:57.493029 2023-07-08 08:14:57.493041 aggnd 1054143951 R rec cf722dcd-c55e-4145-ac9c-8be7f67dea42 -2023-07-08 08:14:57.614295 2023-07-08 08:14:57.614311 aggnd 1055067094 R rec 29962fb5-e678-445e-b43c-c3806f266a5c -2023-07-08 08:14:57.740479 2023-07-08 08:14:57.740492 aggnd 1055101608 R rec d3ad7f3b-9719-4248-9804-0b8b16d015cf -2023-07-08 08:14:57.856582 2023-07-08 08:14:57.856593 aggnd 1055200525 R rec c9e7c5da-39b1-481d-9233-2d9561a28da1 -2023-07-08 08:14:57.978875 2023-07-08 08:14:57.978886 aggnd 1055211292 R rec a0de6f40-95c1-49fc-a4f4-0e713c5e9727 -2023-07-08 08:14:58.091825 2023-07-08 08:14:58.091832 aggnd 1055348328 R rec 3815f843-ff4c-47e7-8a4b-ad317ee2a1af -2023-07-08 08:14:58.218173 2023-07-08 08:14:58.218185 aggnd 1055490760 R rec b357d876-44e0-42fd-8964-80dd79cc113b -2023-07-08 08:14:58.345082 2023-07-08 08:14:58.345098 aggnd 105550835X R rec 952f91af-9fa6-4bf8-b8dd-ca54df116711 -2023-07-08 08:14:58.480203 2023-07-08 08:14:58.480211 aggnd 1055540210 R rec ea0c709f-5fbd-4d96-a7a6-bc8dc955c6b7 -2023-07-08 08:14:58.577107 2023-07-08 08:14:58.577117 aggnd 1055644334 R rec bc58dcb8-e046-4b16-aaca-0f5b061646d5 -2023-07-08 08:14:58.706266 2023-07-08 08:14:58.706281 aggnd 1055753001 R rec f84d5b7e-227e-4bd3-be52-313960f5041c -2023-07-08 08:14:58.849064 2023-07-08 08:14:58.84908 aggnd 1055794662 R rec fea28ffb-9c7e-45d5-992c-41b25b0ca2e2 -2023-07-08 08:14:58.977989 2023-07-08 08:14:58.978004 aggnd 1055795316 R rec bf4f2f05-034f-4374-b0d6-a1069722e3e5 -2023-07-08 08:14:59.087953 2023-07-08 08:14:59.087966 aggnd 1056074779 R rec 1f289ce9-f4cb-4f31-9bcc-c939e9b4175e -2023-07-08 08:14:59.18424 2023-07-08 08:14:59.184256 aggnd 1056091770 R rec a51b9b54-0929-427a-8e75-40ed5dc705a1 -2023-07-08 08:14:59.291131 2023-07-08 08:14:59.291146 aggnd 1056123087 R rec 9e0e61fb-d4f5-462a-85c2-fc327e4adedd -2023-07-08 08:14:59.402367 2023-07-08 08:14:59.402371 aggnd 1056148799 R rec 789f7865-1087-41b0-9f70-20b0ce993613 -2023-07-08 08:14:59.507993 2023-07-08 08:14:59.508015 aggnd 1056220570 R rec 2e746458-df03-4708-9774-134d77de59bd -2023-07-08 08:14:59.62108 2023-07-08 08:14:59.62109 aggnd 1056241462 R rec caf9a2b0-e761-4f04-a9f1-310a1aebf52c -2023-07-08 08:14:59.736932 2023-07-08 08:14:59.736947 aggnd 1056400331 R rec c2e23f4c-447c-4c39-b726-3ccbb4e0721a -2023-07-08 08:14:59.84931 2023-07-08 08:14:59.84932 aggnd 1056497572 R rec 04b790f7-5239-47d6-8387-7cdc8d497e05 -2023-07-08 08:14:59.95775 2023-07-08 08:14:59.957763 aggnd 1056601809 R rec 1e92aca7-607c-48e9-942b-3aaa02811bbb -2023-07-08 08:15:00.103075 2023-07-08 08:15:00.103085 aggnd 1056604328 R rec 75d4d677-970b-4550-8fcd-4c030f83a463 -2023-07-08 08:15:00.233202 2023-07-08 08:15:00.233217 aggnd 1056646438 R rec 41c199d6-12ee-4d72-9d36-87dd16c9b293 -2023-07-08 08:15:00.347774 2023-07-08 08:15:00.347867 aggnd 1056682051 R rec 1c2da528-16e9-4164-8368-3e1248c8d027 -2023-07-08 08:15:00.469548 2023-07-08 08:15:00.469559 aggnd 1057324841 R rec 45dc0cde-7d6e-4386-b5f2-9c4b5f5129f9 -2023-07-08 08:15:00.582174 2023-07-08 08:15:00.582826 aggnd 1057605336 R rec 21fc8821-2a7b-4965-bc20-9d2e688681c6 -2023-07-08 08:15:00.72509 2023-07-08 08:15:00.725101 aggnd 1057630616 R rec 76e21c47-700f-4eba-92fa-3789acf151ea -2023-07-08 08:15:00.864473 2023-07-08 08:15:00.864479 aggnd 1058848518 R rec 90faea58-690c-4366-9898-4318aa5bf845 -2023-07-08 08:15:00.976458 2023-07-08 08:15:00.976465 aggnd 1059467119 R rec dedd560d-0b81-4edd-86b3-e93ac89a9f4a -2023-07-08 08:15:01.050627 2023-07-08 08:15:01.050633 aggnd 1060675595 R rec 346e2810-1a9d-4bfa-93f3-9d2fe6c04850 -2023-07-08 08:15:01.127552 2023-07-08 08:15:01.127557 aggnd 106068375X R rec ff6aae82-6c3d-4d05-9937-dd700b9c959e -2023-07-08 08:15:01.205501 2023-07-08 08:15:01.205508 aggnd 1060757729 R rec 4872d4f8-0b71-4eca-af22-6018a8255e46 -2023-07-08 08:15:01.280236 2023-07-08 08:15:01.280243 aggnd 1061330117 R rec 8b9587cf-6dbd-4154-8183-d364a239721f -2023-07-08 08:15:01.366132 2023-07-08 08:15:01.36614 aggnd 106136769X R rec 193cf75b-cd75-4d74-9380-d4ffc6101c01 -2023-07-08 08:15:01.447866 2023-07-08 08:15:01.447872 aggnd 1061395804 R rec 7bebc5da-b0ca-4b2e-848b-721cb779d369 -2023-07-08 08:15:01.519319 2023-07-08 08:15:01.519324 aggnd 1061433706 R rec 90460129-4178-4b5f-a594-fee81c99e0e9 -2023-07-08 08:15:01.590869 2023-07-08 08:15:01.590886 aggnd 1061583368 R rec 5326de19-ad9e-4379-9123-1053ec4dec7c -2023-07-08 08:15:01.66963 2023-07-08 08:15:01.669635 aggnd 1061592588 R rec 32e7935d-0f46-4095-b7c9-2b7c5e7cc467 -2023-07-08 08:15:01.747256 2023-07-08 08:15:01.747268 aggnd 1061744094 R rec 4a2350f4-695e-473d-900b-d65461130079 -2023-07-08 08:15:01.849289 2023-07-08 08:15:01.8493 aggnd 1061835065 R rec 441a935b-ad2d-40c4-bf51-3a8e7490d610 -2023-07-08 08:15:01.923682 2023-07-08 08:15:01.923687 aggnd 1061837513 R rec 9159e40b-ef77-41bc-ada9-dd967d863971 -2023-07-08 08:15:02.000932 2023-07-08 08:15:02.000947 aggnd 1061999920 R rec 8d7fb13f-3fad-4932-96b1-e22bda747c86 -2023-07-08 08:15:02.088413 2023-07-08 08:15:02.088418 aggnd 1062371135 R rec b0bd109c-97af-40ac-a1ec-0db2538e96a1 -2023-07-08 08:15:02.179092 2023-07-08 08:15:02.179105 aggnd 106243756X R rec 67eb9a75-2ab0-4cc5-b299-11e52533a7b3 -2023-07-08 08:15:02.252124 2023-07-08 08:15:02.252129 aggnd 1062692519 R rec 184d485f-71f3-488f-9645-46c51b0c38e0 -2023-07-08 08:15:02.320644 2023-07-08 08:15:02.320652 aggnd 1063310490 R rec 824c705c-aafe-4e2c-b2aa-d582be86f8d0 -2023-07-08 08:15:02.391063 2023-07-08 08:15:02.391068 aggnd 1063319633 R rec df4383c3-c87f-44f6-ac36-da62deda7b6a -2023-07-08 08:15:02.46247 2023-07-08 08:15:02.462476 aggnd 1063814340 R rec 62db6f72-a508-46f2-aec9-81cadf61f25d -2023-07-08 08:15:02.536467 2023-07-08 08:15:02.536472 aggnd 1064701922 R rec f9931720-8ab6-4836-b99e-14dd5fdf7dc5 -2023-07-08 08:15:02.607288 2023-07-08 08:15:02.607296 aggnd 1064912958 R rec 90fc1bfd-0cef-464f-9822-3931b4011b10 -2023-07-08 08:15:02.677909 2023-07-08 08:15:02.677914 aggnd 1065743769 R rec 8a5ae141-40d9-4ae8-9684-f08a67e2593f -2023-07-08 08:15:02.745206 2023-07-08 08:15:02.745211 aggnd 1065866356 R rec cab35400-3ed9-4fd1-bbff-5ad3bc23641c -2023-07-08 08:15:02.81563 2023-07-08 08:15:02.815636 aggnd 1067106146 R rec 7a713bb8-ffa4-4490-8c92-2497d05101a4 -2023-07-08 08:15:02.885484 2023-07-08 08:15:02.88549 aggnd 1067168370 R rec 4ff1b6f9-8148-438b-97e2-87b7935d9c87 -2023-07-08 08:15:02.956487 2023-07-08 08:15:02.956492 aggnd 1067217495 R rec 8f91be19-84af-4a69-9c53-6a08204835ac -2023-07-08 08:15:03.02489 2023-07-08 08:15:03.024896 aggnd 1067908366 R rec 7a0d687a-ba96-4e97-bbaa-3cb6c3d76dd3 -2023-07-08 08:15:03.093543 2023-07-08 08:15:03.093547 aggnd 1067912916 R rec da1b0caa-d110-4fec-b846-b5fe22adddfb -2023-07-08 08:15:03.191587 2023-07-08 08:15:03.191603 aggnd 1068089962 R rec c8fa1dd4-961d-44de-824d-a1d935322a37 -2023-07-08 08:15:03.301432 2023-07-08 08:15:03.301443 aggnd 1071439871 R rec 3306e557-f3e8-48fb-98dc-57da832d7a79 -2023-07-08 08:15:03.400144 2023-07-08 08:15:03.40015 aggnd 107289806 R rec 522db6e5-416c-4024-8ec7-4f5737ee42b1 -2023-07-08 08:15:03.471045 2023-07-08 08:15:03.47105 aggnd 1072904977 R rec 20912cb5-8bc3-40fc-8dd9-6d4e09af8e76 -2023-07-08 08:15:03.541293 2023-07-08 08:15:03.541301 aggnd 1072916436 R rec e1b870b9-4f5e-4adf-8440-bf8ee50f4e4c -2023-07-08 08:15:03.61185 2023-07-08 08:15:03.611862 aggnd 1072932296 R rec face0f4a-4ac3-47a6-8bca-565cfd96109e -2023-07-08 08:15:03.686786 2023-07-08 08:15:03.686792 aggnd 1072961296 R rec b48852f7-65c9-4c0b-a3f7-7661e7a66b6d -2023-07-08 08:15:03.767471 2023-07-08 08:15:03.767475 aggnd 1073022544 R rec fa0ce1e2-867f-4c61-bb3a-ddfd689b47cf -2023-07-08 08:15:03.848523 2023-07-08 08:15:03.848538 aggnd 1073026825 R rec 1522702b-5125-4ee9-9b75-476b3bb13e1d -2023-07-08 08:15:03.934887 2023-07-08 08:15:03.9349 aggnd 1073045927 R rec 5677ee5a-337a-4fcd-8b81-ac6ac3885aeb -2023-07-08 08:15:04.034506 2023-07-08 08:15:04.034511 aggnd 1073087123 R rec 192b4fb1-2af5-40ba-b05d-fb203478e0e3 -2023-07-08 08:15:04.130395 2023-07-08 08:15:04.1304 aggnd 107371876X R rec 360aceb1-e8c1-463c-91f1-485ab6db9e08 -2023-07-08 08:15:04.202968 2023-07-08 08:15:04.202973 aggnd 107495839X R rec 4e876013-3e80-460d-a9df-b8ed701d64f0 -2023-07-08 08:15:04.27671 2023-07-08 08:15:04.276724 aggnd 1076838170 R rec 00a48491-851e-4639-8cb0-d381081d78b1 -2023-07-08 08:15:04.362226 2023-07-08 08:15:04.362231 aggnd 1076933726 R rec cd0ba182-1dab-45b4-b962-c48765292cdb -2023-07-08 08:15:04.431745 2023-07-08 08:15:04.43175 aggnd 1077345259 R rec 20ca617a-a36b-4a5f-90c2-e2e7b0327cda -2023-07-08 08:15:04.501635 2023-07-08 08:15:04.50164 aggnd 1077501706 R rec 219b3f39-5c80-4c2b-9996-fd4dd55f2d1d -2023-07-08 08:15:04.600409 2023-07-08 08:15:04.600431 aggnd 1077612869 R rec da01457b-e3bd-4ad5-8639-cf15d366383f -2023-07-08 08:15:04.696757 2023-07-08 08:15:04.696771 aggnd 1077631081 R rec 07dba729-b417-4d0b-bbbd-eb749ec708ca -2023-07-08 08:15:04.783488 2023-07-08 08:15:04.783493 aggnd 1077666799 R rec a532d167-49c3-463c-832d-3d915ece8b0b -2023-07-08 08:15:04.858174 2023-07-08 08:15:04.85819 aggnd 1077833237 R rec a1f9ce86-3d27-4573-974d-ec5e6fa68ab0 -2023-07-08 08:15:04.959553 2023-07-08 08:15:04.959566 aggnd 1077873468 R rec 64cfd9bd-9012-4815-b0c8-6d2ea431d344 -2023-07-08 08:15:05.055376 2023-07-08 08:15:05.055382 aggnd 1077979355 R rec b8ad12dd-35fc-4c46-9cff-89835cff24a6 -2023-07-08 08:15:05.149267 2023-07-08 08:15:05.149273 aggnd 1078040133 R rec 56e7cf4c-9c98-4311-8131-ee4015895c81 -2023-07-08 08:15:05.254024 2023-07-08 08:15:05.25403 aggnd 107808355X R rec b4e4ee00-9454-402f-bc37-2eddf2cd8e4a -2023-07-08 08:15:05.346282 2023-07-08 08:15:05.346298 aggnd 107817864X R rec 1c045842-0e42-4229-9ce7-85efef00acdc -2023-07-08 08:15:05.423874 2023-07-08 08:15:05.423879 aggnd 1078249024 R rec efeb94ec-392a-45f9-ab6c-3311d45cebaf -2023-07-08 08:15:05.501717 2023-07-08 08:15:05.501727 aggnd 1078758360 R rec f4ec5eb6-50d7-4445-b296-7cba9ebc631c -2023-07-08 08:15:05.591532 2023-07-08 08:15:05.591543 aggnd 107916894 R rec 2c90bbe2-bbee-4f85-af39-7302920cf727 -2023-07-08 08:15:05.686862 2023-07-08 08:15:05.686872 aggnd 1079291768 R rec d78b5dad-e633-43e3-826d-347f9e7e6f43 -2023-07-08 08:15:05.779093 2023-07-08 08:15:05.779106 aggnd 1079304231 R rec b7112281-a5c8-40f9-bd31-1938e6838458 -2023-07-08 08:15:05.869518 2023-07-08 08:15:05.869528 aggnd 1079330844 R rec 0a758e98-c107-49d6-a38f-9c03affda564 -2023-07-08 08:15:05.93908 2023-07-08 08:15:05.939086 aggnd 1079390413 R rec c7354ef4-671b-4e63-9948-0de7ea385529 -2023-07-08 08:15:06.03776 2023-07-08 08:15:06.037766 aggnd 1079392009 R rec a6b1c1d0-bfb5-477d-84f9-11d0c9438c5a -2023-07-08 08:15:06.137259 2023-07-08 08:15:06.137267 aggnd 1079423273 R rec b854ecca-92f0-416b-a67c-55624f9e66d0 -2023-07-08 08:15:06.223341 2023-07-08 08:15:06.223352 aggnd 1079507582 R rec 6ac31446-b134-40a0-822b-7f4cd118c6c5 -2023-07-08 08:15:06.300935 2023-07-08 08:15:06.300949 aggnd 107956215X R rec b787cc4c-0b87-49d2-b0e9-95a369e54e8d -2023-07-08 08:15:06.40593 2023-07-08 08:15:06.405945 aggnd 1079687157 R rec 3505d1da-9b65-4d3a-8206-fcfc3023691d -2023-07-08 08:15:06.491319 2023-07-08 08:15:06.49133 aggnd 1079982175 R rec 6db131f1-0887-49bf-ba93-2233231b1038 -2023-07-08 08:15:06.577416 2023-07-08 08:15:06.577422 aggnd 1080093648 R rec 8a88e338-a36e-49e3-810b-167c0c3f055b -2023-07-08 08:15:06.679423 2023-07-08 08:15:06.679435 aggnd 1080488448 R rec feb3c5f3-adee-4239-839c-cec7672d85dc -2023-07-08 08:15:06.76385 2023-07-08 08:15:06.763869 aggnd 1080490868 R rec 28233248-705a-4c51-9467-a1bd65825a72 -2023-07-08 08:15:06.848742 2023-07-08 08:15:06.848748 aggnd 108049450 R rec c2329d7a-65e8-40f6-bb74-4880721747f2 -2023-07-08 08:15:06.928435 2023-07-08 08:15:06.928441 aggnd 1080869417 R rec fea20509-fb3e-4925-8714-1994e9d15c3f -2023-07-08 08:15:07.01222 2023-07-08 08:15:07.012233 aggnd 1081028270 R rec 3f20baba-c730-4dd1-a391-ce93d61cce81 -2023-07-08 08:15:07.101764 2023-07-08 08:15:07.101769 aggnd 1081399880 R rec dc893117-90ad-4bb7-b130-ad27415c60bf -2023-07-08 08:15:07.215225 2023-07-08 08:15:07.215236 aggnd 1081429097 R rec c4a49d73-d4c9-4c1a-a8d3-b96326622ff8 -2023-07-08 08:15:07.325244 2023-07-08 08:15:07.325256 aggnd 1081450452 R rec e4eb2fef-9e95-4094-b683-1c422811d794 -2023-07-08 08:15:07.409467 2023-07-08 08:15:07.409478 aggnd 1081489529 R rec 20c17a59-0180-4161-aa94-15bcb21f5837 -2023-07-08 08:15:07.492871 2023-07-08 08:15:07.492885 aggnd 1081556625 R rec b0a4d726-68fe-4526-a8d3-717754dcd28c -2023-07-08 08:15:07.58713 2023-07-08 08:15:07.587135 aggnd 1081654597 R rec 1a49a38a-9500-491a-827a-05be254378ae -2023-07-08 08:15:07.67577 2023-07-08 08:15:07.675776 aggnd 1081687118 R rec f0342ee7-a4e2-46ea-9087-b39a892fe053 -2023-07-08 08:15:07.757844 2023-07-08 08:15:07.757854 aggnd 1081988355 R rec 25183849-1fca-4d25-bb65-964e2a632d71 -2023-07-08 08:15:07.845838 2023-07-08 08:15:07.84585 aggnd 1082002127 R rec 62c00aa3-67c3-491e-8f5e-1dba34426381 -2023-07-08 08:15:07.919717 2023-07-08 08:15:07.919722 aggnd 1082006580 R rec 01819064-5ec3-4ca3-980b-09fa24514de4 -2023-07-08 08:15:07.99306 2023-07-08 08:15:07.993071 aggnd 1082007447 R rec 7e4b0303-6e94-432c-8859-9794eca6db4f -2023-07-08 08:15:08.078387 2023-07-08 08:15:08.078393 aggnd 108231563X R rec 93a44b54-62cc-41f1-98dd-01871292004b -2023-07-08 08:15:08.17066 2023-07-08 08:15:08.17067 aggnd 1082319058 R rec 44c7a148-b456-47a2-baab-9afcfee4f3bb -2023-07-08 08:15:08.269889 2023-07-08 08:15:08.269897 aggnd 1082383880 R rec 75425bc2-220f-45c5-9552-b9c96cfede8a -2023-07-08 08:15:08.359473 2023-07-08 08:15:08.359478 aggnd 1082387401 R rec 6cbc56d1-a2dd-4a64-ad29-75397a61c4a8 -2023-07-08 08:15:08.436756 2023-07-08 08:15:08.436762 aggnd 1084363704 R rec 89dc1ae4-8d66-4081-ad24-00a7ede25b75 -2023-07-08 08:15:08.508509 2023-07-08 08:15:08.508517 aggnd 108451836 R rec ba8a4abd-703b-4d8d-9fa4-18bc1a105a48 -2023-07-08 08:15:08.600038 2023-07-08 08:15:08.600054 aggnd 1085208036 R rec 756032cb-4c16-49ad-9461-aab257cea8a0 -2023-07-08 08:15:08.699771 2023-07-08 08:15:08.699792 aggnd 1085704564 R rec 8e51eba9-66ae-4c96-b3f2-c1d8a1eb9c00 -2023-07-08 08:15:08.794348 2023-07-08 08:15:08.794359 aggnd 1085733416 R rec 3691cf2f-f8fa-45fc-b729-3048912a1161 -2023-07-08 08:15:08.872852 2023-07-08 08:15:08.872857 aggnd 1085772225 R rec b4dfaf9a-f156-4b4c-992d-e0d02a086b5a -2023-07-08 08:15:08.967218 2023-07-08 08:15:08.967234 aggnd 1085773566 R rec 9e8eae34-a5cf-4ce8-865a-9a21cd730887 -2023-07-08 08:15:09.067124 2023-07-08 08:15:09.06714 aggnd 1085805433 R rec a1ebf080-cf85-46a5-a5bd-c20ffbfdb1f5 -2023-07-08 08:15:09.173271 2023-07-08 08:15:09.173277 aggnd 1085808254 R rec 26ec6540-9d79-48c4-a7db-431d460fa64f -2023-07-08 08:15:09.266336 2023-07-08 08:15:09.266347 aggnd 1085822613 R rec a8982fad-89e5-45a3-945d-43d78cf488ff -2023-07-08 08:15:09.362203 2023-07-08 08:15:09.362222 aggnd 1085825302 R rec 2380a70d-a6f4-4c04-b9c7-5512954b22af -2023-07-08 08:15:09.455369 2023-07-08 08:15:09.455374 aggnd 1085836894 R rec a8786898-3fb0-498a-9679-d156c129e6df -2023-07-08 08:15:09.570008 2023-07-08 08:15:09.570014 aggnd 108585440X R rec 4ab9e2a4-96a0-4f7b-9e84-61e5cc354474 -2023-07-08 08:15:09.657791 2023-07-08 08:15:09.657809 aggnd 1085905519 R rec 24b391ab-6885-4d6d-aeb6-e943320e8e02 -2023-07-08 08:15:09.742503 2023-07-08 08:15:09.742515 aggnd 1085909603 R rec a070d909-c143-4aa4-8c8f-7157c1fca065 -2023-07-08 08:15:09.822608 2023-07-08 08:15:09.822613 aggnd 1085909808 R rec 5cc90478-f2c1-4011-b404-3a59a713e4ff -2023-07-08 08:15:09.918468 2023-07-08 08:15:09.918479 aggnd 1085934519 R rec 3cd23540-6ffd-4b36-bf6b-7e17f44cc9c4 -2023-07-08 08:15:10.000225 2023-07-08 08:15:10.000239 aggnd 1085989879 R rec 43860b95-f1b5-43da-8efa-4189307b63a3 -2023-07-08 08:15:10.104636 2023-07-08 08:15:10.104641 aggnd 1086006615 R rec d80aea79-dbe1-404f-9803-39ac3b7da579 -2023-07-08 08:15:10.19344 2023-07-08 08:15:10.193445 aggnd 1086024044 R rec 4f1224a6-08c6-4b78-95b7-c73ff670bc50 -2023-07-08 08:15:10.270692 2023-07-08 08:15:10.270698 aggnd 1086025474 R rec 0bbb966b-7618-4275-9806-c17a7dcaa085 -2023-07-08 08:15:10.373532 2023-07-08 08:15:10.373543 aggnd 1086047532 R rec 842d7b15-780c-4eeb-8c75-9b77262115f6 -2023-07-08 08:15:10.475632 2023-07-08 08:15:10.475643 aggnd 1086062159 R rec 3f613cfc-cbfd-4e40-b604-f8bbf214d58f -2023-07-08 08:15:10.567064 2023-07-08 08:15:10.567074 aggnd 1086067371 R rec 7ad6f2ee-b695-4277-af1c-b0a386987627 -2023-07-08 08:15:10.665468 2023-07-08 08:15:10.665483 aggnd 1086070178 R rec 8dc7d413-d18f-4623-910a-68530b584f27 -2023-07-08 08:15:10.741003 2023-07-08 08:15:10.741015 aggnd 1086074602 R rec 4f950b52-f827-4611-9b31-50bc666e17e0 -2023-07-08 08:15:10.828808 2023-07-08 08:15:10.828818 aggnd 1086075218 R rec dbc5458a-177f-4b56-9df7-d775658023f8 -2023-07-08 08:15:10.919933 2023-07-08 08:15:10.919939 aggnd 1086080513 R rec 35e9f78c-e55c-4412-bc19-cfb2a4618881 -2023-07-08 08:15:11.018031 2023-07-08 08:15:11.018043 aggnd 1086080750 R rec 3ec695da-1691-4c53-95dd-0d6b59682f5f -2023-07-08 08:15:11.103506 2023-07-08 08:15:11.103511 aggnd 1086082427 R rec 1d06efae-d915-4818-9596-eb9cbb26bc25 -2023-07-08 08:15:11.19844 2023-07-08 08:15:11.19845 aggnd 1086092775 R rec 6c5c2546-d9e0-4115-bdc7-698b9cea3d0b -2023-07-08 08:15:11.279588 2023-07-08 08:15:11.279594 aggnd 1086143264 R rec f845dee1-f800-45b3-b201-dd5aca194c63 -2023-07-08 08:15:11.358321 2023-07-08 08:15:11.358332 aggnd 1086144686 R rec 79aa88bc-cae5-413a-91c9-3af034322650 -2023-07-08 08:15:11.465425 2023-07-08 08:15:11.465435 aggnd 1086144902 R rec e5a8c199-c71f-4ab5-9b33-41fa8d29236b -2023-07-08 08:15:11.556059 2023-07-08 08:15:11.556064 aggnd 1086182871 R rec 53d7ce91-1100-4567-854f-dca6db14893b -2023-07-08 08:15:11.646173 2023-07-08 08:15:11.646183 aggnd 1086186427 R rec e11228be-79f9-4353-bf4e-7ce6d2cbbe1b -2023-07-08 08:15:11.738204 2023-07-08 08:15:11.738211 aggnd 1086202244 R rec 5df634db-51dc-4480-b551-37874b315333 -2023-07-08 08:15:11.831502 2023-07-08 08:15:11.831513 aggnd 1086206991 R rec ff941cd1-c083-4e3d-852e-2a8ac7d27f17 -2023-07-08 08:15:11.913649 2023-07-08 08:15:11.913659 aggnd 1086215982 R rec 58fa45c4-bfc5-4c53-af0e-4c4c9a4d2781 -2023-07-08 08:15:11.987173 2023-07-08 08:15:11.987178 aggnd 1086230493 R rec 52c231f8-8014-4424-ac6c-5096ef9475ce -2023-07-08 08:15:12.065313 2023-07-08 08:15:12.065324 aggnd 1086235894 R rec eed1d742-208a-424e-8639-f147f9c0e2fe -2023-07-08 08:15:12.169286 2023-07-08 08:15:12.169291 aggnd 1086271440 R rec d13ad93a-298c-4965-a2ed-66364ec922a7 -2023-07-08 08:15:12.289304 2023-07-08 08:15:12.289313 aggnd 1086272587 R rec 9944d642-c31c-404c-86de-060effb6b059 -2023-07-08 08:15:12.43252 2023-07-08 08:15:12.432526 aggnd 1086274636 R rec bc0fefab-ebff-4c26-9919-e460781cc5bd -2023-07-08 08:15:12.530037 2023-07-08 08:15:12.530048 aggnd 1086292391 R rec 01d8fa4e-c09f-446f-a87d-faeb9060dd46 -2023-07-08 08:15:12.627807 2023-07-08 08:15:12.627817 aggnd 1086300475 R rec b23a44b5-eab3-45b8-bce3-83e5dd427b39 -2023-07-08 08:15:12.722522 2023-07-08 08:15:12.722533 aggnd 1086314646 R rec b883f5ee-6ba9-4303-b1e6-6bed6fd16448 -2023-07-08 08:15:12.802565 2023-07-08 08:15:12.802574 aggnd 1086340043 R rec 450b6e35-59d1-4e5d-a44d-fa9a99fe0930 -2023-07-08 08:15:12.887216 2023-07-08 08:15:12.887222 aggnd 1086373170 R rec e0c7d72a-6448-4d5c-8611-b832b0cfac02 -2023-07-08 08:15:12.968997 2023-07-08 08:15:12.969003 aggnd 1086413520 R rec 3e46edbd-393b-4153-a648-3727ce3020ba -2023-07-08 08:15:13.050414 2023-07-08 08:15:13.050425 aggnd 1086431685 R rec 2e9fbf01-00d5-4898-b05c-8badce7fd0c7 -2023-07-08 08:15:13.132347 2023-07-08 08:15:13.132358 aggnd 1086431855 R rec 39c6d3c3-732d-46ff-a903-320aeb62547d -2023-07-08 08:15:13.219102 2023-07-08 08:15:13.219111 aggnd 1086433114 R rec e78c69e3-eaf5-4fad-8efc-f7500cbe30fd -2023-07-08 08:15:13.3091 2023-07-08 08:15:13.309112 aggnd 1086434900 R rec 88446852-2be3-4d24-a00f-a00117f204aa -2023-07-08 08:15:13.402527 2023-07-08 08:15:13.402538 aggnd 1086437500 R rec a622b89d-00a7-47b8-8ccc-cda4ce33c948 -2023-07-08 08:15:13.497082 2023-07-08 08:15:13.497092 aggnd 1086443640 R rec 566e2295-604d-418c-8972-8c954bfd38b1 -2023-07-08 08:15:13.586624 2023-07-08 08:15:13.586635 aggnd 1086444361 R rec 8390239c-675e-49c4-96e8-a61a9e948432 -2023-07-08 08:15:13.665445 2023-07-08 08:15:13.665455 aggnd 1086469747 R rec 53e90552-3007-4b95-9d49-db5de1631023 -2023-07-08 08:15:13.762133 2023-07-08 08:15:13.762144 aggnd 1086480686 R rec 1f1e0f6c-2416-4c57-af9b-94e2b00b42bd -2023-07-08 08:15:13.842009 2023-07-08 08:15:13.842027 aggnd 108649282X R rec 9c884a95-3fe9-42d4-a8a3-86fcf2870a45 -2023-07-08 08:15:13.926041 2023-07-08 08:15:13.926053 aggnd 1086503910 R rec 6b848e5f-fba4-4a36-8cf8-9c3e4d467d60 -2023-07-08 08:15:14.030132 2023-07-08 08:15:14.030138 aggnd 1086511239 R rec eea32eff-a2da-4a60-a357-27f8d8f95e9c -2023-07-08 08:15:14.135738 2023-07-08 08:15:14.135743 aggnd 1086545605 R rec bf820983-3539-44d6-86a2-7a177488e580 -2023-07-08 08:15:14.216364 2023-07-08 08:15:14.216375 aggnd 1086572882 R rec dcc63260-b215-4d13-b2bd-c5a890f18845 -2023-07-08 08:15:14.30376 2023-07-08 08:15:14.303768 aggnd 1086591453 R rec 25ceb7ca-9e08-4409-815c-b8eaa26613c1 -2023-07-08 08:15:14.384825 2023-07-08 08:15:14.38483 aggnd 1086599594 R rec 60bd9ac5-1090-487f-ae34-ef2be934939b -2023-07-08 08:15:14.470465 2023-07-08 08:15:14.470471 aggnd 1086646843 R rec 63653462-6975-4de3-95f6-dc88067910ee -2023-07-08 08:15:14.578856 2023-07-08 08:15:14.578862 aggnd 1086671775 R rec f55546ec-dfca-4169-8aad-caea616d052f -2023-07-08 08:15:14.667274 2023-07-08 08:15:14.667289 aggnd 1086700902 R rec 3e20c78a-8324-49a2-9765-853e5dda768e -2023-07-08 08:15:14.761596 2023-07-08 08:15:14.761606 aggnd 1086728939 R rec 8ac88c78-d57c-4df5-a73e-68d7e616debf -2023-07-08 08:15:14.848896 2023-07-08 08:15:14.84891 aggnd 1086730003 R rec 7720c71a-016a-4a3b-b2b3-075115d456aa -2023-07-08 08:15:14.933224 2023-07-08 08:15:14.93323 aggnd 1086746554 R rec e581795e-60cf-468e-99c3-e632b4136ae2 -2023-07-08 08:15:15.005358 2023-07-08 08:15:15.005368 aggnd 1086766326 R rec b813c055-4315-4141-b989-7615f493664b -2023-07-08 08:15:15.08192 2023-07-08 08:15:15.08193 aggnd 1086780884 R rec 90d21795-d68c-4751-982f-6e703d2a40ca -2023-07-08 08:15:15.175283 2023-07-08 08:15:15.175288 aggnd 1086783476 R rec 7d3707a5-36ed-47fa-94f7-5ceb6f7074a0 -2023-07-08 08:15:15.260821 2023-07-08 08:15:15.260835 aggnd 1086783492 R rec d21c3b25-5b32-4475-b7b5-8a622a44ce03 -2023-07-08 08:15:15.377636 2023-07-08 08:15:15.377642 aggnd 1086814347 R rec 52803307-22fb-470c-821c-893c3b1fb26e -2023-07-08 08:15:15.468333 2023-07-08 08:15:15.468339 aggnd 1086828542 R rec bec9be51-39ba-43a2-856b-d09850d2c572 -2023-07-08 08:15:15.554292 2023-07-08 08:15:15.554298 aggnd 1086839668 R rec ef105874-7124-429c-8ba3-aeec52eda88d -2023-07-08 08:15:15.651324 2023-07-08 08:15:15.651335 aggnd 1086844092 R rec b424689c-2d22-439d-bc27-5fbefa163370 -2023-07-08 08:15:15.756918 2023-07-08 08:15:15.756923 aggnd 108685604X R rec 04b2aa27-a6b7-491a-bb75-cd36e87d88be -2023-07-08 08:15:15.84209 2023-07-08 08:15:15.842102 aggnd 1086971531 R rec d2cfc2aa-0586-4c89-a338-89c5ba96018e -2023-07-08 08:15:15.934395 2023-07-08 08:15:15.934404 aggnd 1087161088 R rec 8060c16f-3d09-421d-97fa-71ecebb00ede -2023-07-08 08:15:16.019531 2023-07-08 08:15:16.019541 aggnd 1087202949 R rec 8c3f3e9c-e12b-487c-830c-3542f0664eae -2023-07-08 08:15:16.121506 2023-07-08 08:15:16.121511 aggnd 1087258685 R rec 5a2b8e97-0d54-4ad4-bb7d-88c2b92e2744 -2023-07-08 08:15:16.229246 2023-07-08 08:15:16.229258 aggnd 1087265827 R rec 650021ea-5141-4ce6-ae23-71db5fa2397a -2023-07-08 08:15:16.321475 2023-07-08 08:15:16.321481 aggnd 1087266157 R rec c6667641-e178-42e8-8a55-b30b66dc8eee -2023-07-08 08:15:16.412012 2023-07-08 08:15:16.412021 aggnd 1087273897 R rec 293d76e2-8a08-45e0-abb7-3bf63955cc68 -2023-07-08 08:15:16.510398 2023-07-08 08:15:16.510409 aggnd 1087296900 R rec a50d6f12-22c9-4c5c-8150-2836b0373bba -2023-07-08 08:15:16.607198 2023-07-08 08:15:16.607217 aggnd 1087307619 R rec 41874058-6d14-460c-952c-741a586dbfb7 -2023-07-08 08:15:16.721643 2023-07-08 08:15:16.721648 aggnd 1087324378 R rec 99bbbd18-eb66-433b-8ef9-04a5f716cd71 -2023-07-08 08:15:16.827445 2023-07-08 08:15:16.827456 aggnd 1087335108 R rec fc9e65d1-61e1-4461-8359-6249bb5f345b -2023-07-08 08:15:16.909244 2023-07-08 08:15:16.909255 aggnd 1087354226 R rec ceb1f38f-3e53-4f6a-ad66-50aadd67e5fe -2023-07-08 08:15:16.988403 2023-07-08 08:15:16.988413 aggnd 1087364086 R rec d16a8102-a2cd-4ea5-a8b1-c56e40929e55 -2023-07-08 08:15:17.067746 2023-07-08 08:15:17.067757 aggnd 1087368367 R rec 2b8fbfb8-420f-443d-ab77-4dad035eb56c -2023-07-08 08:15:17.151868 2023-07-08 08:15:17.151873 aggnd 1087381363 R rec d0f0e270-29de-4052-b959-fc84be5e7005 -2023-07-08 08:15:17.234406 2023-07-08 08:15:17.234416 aggnd 1087450594 R rec 4480dbed-b080-4088-82fa-2a017829cd89 -2023-07-08 08:15:17.318772 2023-07-08 08:15:17.318777 aggnd 1087461731 R rec 2ae41f3a-35c1-4797-968e-53cfee2afad8 -2023-07-08 08:15:17.411825 2023-07-08 08:15:17.411835 aggnd 1087515092 R rec 2a4dacab-9b9b-4d4c-a515-a5ac2d49ddb6 -2023-07-08 08:15:17.506937 2023-07-08 08:15:17.507029 aggnd 1087538092 R rec 6284381c-00f0-4a12-8405-380e07176a14 -2023-07-08 08:15:17.60132 2023-07-08 08:15:17.601331 aggnd 1087545471 R rec ef6028e0-4cb3-49b9-b9d6-bc9fb4510b1b -2023-07-08 08:15:17.694025 2023-07-08 08:15:17.694035 aggnd 108756171X R rec e19ca09d-b50f-4790-85f9-1870bf97b18a -2023-07-08 08:15:17.807625 2023-07-08 08:15:17.807635 aggnd 1087563429 R rec 70d35d30-a589-4d76-9f91-ff09a0d639ca -2023-07-08 08:15:17.897583 2023-07-08 08:15:17.897594 aggnd 1087600936 R rec 34e12b89-caee-4e80-a821-b4ef5c982865 -2023-07-08 08:15:17.982301 2023-07-08 08:15:17.982313 aggnd 1087603781 R rec 493bb0ed-2062-408d-a02b-3d35f791b0db -2023-07-08 08:15:18.077359 2023-07-08 08:15:18.077368 aggnd 1088444008 R rec 6f839a6b-859e-4882-b5a4-c25e238745bf -2023-07-08 08:15:18.151546 2023-07-08 08:15:18.151556 aggnd 1088579485 R rec 224ba2b9-85af-42c1-8547-86a7e603ee8e -2023-07-08 08:15:18.232434 2023-07-08 08:15:18.23245 aggnd 1089227736 R rec 746deb63-6119-4609-a156-d3cbca7669a1 -2023-07-08 08:15:18.34343 2023-07-08 08:15:18.343442 aggnd 1089267177 R rec c10c15bb-0aee-490b-8578-cf05aac76676 -2023-07-08 08:15:18.448487 2023-07-08 08:15:18.448498 aggnd 1089282826 R rec 6f5a5fe0-9589-4d95-a19b-d111e6d5223b -2023-07-08 08:15:18.543697 2023-07-08 08:15:18.543703 aggnd 1089334826 R rec 4792cdc9-4722-4c4a-8b44-c19b918c3770 -2023-07-08 08:15:18.624126 2023-07-08 08:15:18.624138 aggnd 1089339771 R rec 752d4ef3-f932-44b9-ba3d-45eec1091ae1 -2023-07-08 08:15:18.71517 2023-07-08 08:15:18.71518 aggnd 1089387830 R rec 1f0f896d-b809-4971-b1cc-a0430baf89d5 -2023-07-08 08:15:18.812465 2023-07-08 08:15:18.812476 aggnd 1089390971 R rec 3197aa16-05c1-4990-ab50-ca084ece6bbf -2023-07-08 08:15:18.904729 2023-07-08 08:15:18.904737 aggnd 1089392907 R rec 6ade05c2-49de-49bf-89eb-f2f9d7c726be -2023-07-08 08:15:19.020994 2023-07-08 08:15:19.021 aggnd 1089443617 R rec 7173da33-8e12-4cb4-a02d-b3f5be68d22a -2023-07-08 08:15:19.108976 2023-07-08 08:15:19.108981 aggnd 1089455437 R rec dc69c4fb-933e-494c-a1cf-683c98d61aaa -2023-07-08 08:15:19.206861 2023-07-08 08:15:19.206876 aggnd 1089460732 R rec 8b8c3cce-b2ae-4e52-8c8a-4d5a3890aebf -2023-07-08 08:15:19.333496 2023-07-08 08:15:19.333511 aggnd 108951431X R rec fc0241d1-6b60-4060-a84b-158a9e7c1e94 -2023-07-08 08:15:19.427359 2023-07-08 08:15:19.42737 aggnd 1089572670 R rec 91d44984-e776-4855-8aa1-8675c5454b21 -2023-07-08 08:15:19.515055 2023-07-08 08:15:19.515075 aggnd 1089574282 R rec 95ff6439-5edb-4fb5-8c85-32b33f13ed1e -2023-07-08 08:15:19.61057 2023-07-08 08:15:19.610581 aggnd 1089580274 R rec 29f6ceb3-c38a-403d-a59a-131ad6056dec -2023-07-08 08:15:19.685096 2023-07-08 08:15:19.685102 aggnd 1089589018 R rec c5e28f47-19ce-4443-873f-470716787b46 -2023-07-08 08:15:19.76556 2023-07-08 08:15:19.765571 aggnd 1089604890 R rec 59abc51a-3abd-47a9-8b6c-e7095165c6c2 -2023-07-08 08:15:19.85856 2023-07-08 08:15:19.858576 aggnd 1089638353 R rec 31c2f362-f18d-4259-80d9-f1ed02fa432e -2023-07-08 08:15:19.941067 2023-07-08 08:15:19.941081 aggnd 1089642393 R rec 889e33a3-3ed5-4722-8f89-2a2fd993610c -2023-07-08 08:15:20.018529 2023-07-08 08:15:20.018544 aggnd 1089664281 R rec 2ff00ae5-04af-4517-85cb-3bda2be408bc -2023-07-08 08:15:20.11966 2023-07-08 08:15:20.119665 aggnd 1089664389 R rec 9818224a-1ade-4cc6-ae89-36179b490645 -2023-07-08 08:15:20.190241 2023-07-08 08:15:20.190248 aggnd 1089666802 R rec 380f8c7e-de79-4a62-833a-ec88c2c82940 -2023-07-08 08:15:20.26875 2023-07-08 08:15:20.268756 aggnd 1089669003 R rec 7dba3d21-bdba-4f62-b632-5ee0ceb2e695 -2023-07-08 08:15:20.363631 2023-07-08 08:15:20.363644 aggnd 1089693907 R rec d326bd70-e6a2-4869-b39e-c48f7e9d4cdf -2023-07-08 08:15:20.45436 2023-07-08 08:15:20.454366 aggnd 1089702655 R rec 0428974e-4c55-4a08-8d99-6f1f53d8ef18 -2023-07-08 08:15:20.525388 2023-07-08 08:15:20.525407 aggnd 1089766106 R rec 749f8b23-750b-40d5-8dda-daf54a76776a -2023-07-08 08:15:20.612564 2023-07-08 08:15:20.612583 aggnd 1089790732 R rec b1342355-fe85-4c65-9b68-864831b1b5a2 -2023-07-08 08:15:20.698308 2023-07-08 08:15:20.69832 aggnd 1089841035 R rec 92ebbfb8-7e6d-4748-8721-6ba0ec97ab6d -2023-07-08 08:15:20.796836 2023-07-08 08:15:20.796848 aggnd 1089904703 R rec 3869ca07-e19b-4960-9bc9-4376eb001cf5 -2023-07-08 08:15:20.888881 2023-07-08 08:15:20.888886 aggnd 1090478615 R rec 14765480-deaa-4e11-886b-048279626d26 -2023-07-08 08:15:20.980671 2023-07-08 08:15:20.980685 aggnd 1090479816 R rec 9f648390-ad49-414d-9321-7904a260b21a -2023-07-08 08:15:21.063068 2023-07-08 08:15:21.063082 aggnd 1090697538 R rec b52c532f-76de-4d29-a298-d178ef33d9f3 -2023-07-08 08:15:21.155077 2023-07-08 08:15:21.155082 aggnd 1090699522 R rec 8e3df7b1-75fd-4d61-9adc-cd4466a68f04 -2023-07-08 08:15:21.239279 2023-07-08 08:15:21.23929 aggnd 1090752598 R rec d398db78-b30e-4aed-9574-f5c805b5b430 -2023-07-08 08:15:21.329958 2023-07-08 08:15:21.329969 aggnd 1090809786 R rec 7d9d5fb2-ee16-40d1-ac92-39784d609cf1 -2023-07-08 08:15:21.421342 2023-07-08 08:15:21.421348 aggnd 1091183546 R rec 3b90cf62-89a6-4e31-9268-fd44e13d3692 -2023-07-08 08:15:21.505456 2023-07-08 08:15:21.505462 aggnd 1091235007 R rec 657a27a1-8d73-4fcc-89ac-397a265e5033 -2023-07-08 08:15:21.591608 2023-07-08 08:15:21.591618 aggnd 1091451982 R rec 28bdd34e-6320-4d8b-8e98-d7e8aafbb3c2 -2023-07-08 08:15:21.687647 2023-07-08 08:15:21.687652 aggnd 1091613443 R rec 790b89f6-c6f2-4ddf-bd02-f3ae6239997d -2023-07-08 08:15:21.789615 2023-07-08 08:15:21.789622 aggnd 1091651787 R rec 2e1328c9-5b87-4359-bc8b-b1ff02ae4df4 -2023-07-08 08:15:21.878823 2023-07-08 08:15:21.878834 aggnd 1091678340 R rec 2b774fb8-b336-4887-a870-b7f31a9c627a -2023-07-08 08:15:21.956273 2023-07-08 08:15:21.956279 aggnd 1091697396 R rec c7e04d6a-76ff-48c9-9b5c-87381d953451 -2023-07-08 08:15:22.03155 2023-07-08 08:15:22.031561 aggnd 1091697620 R rec a9c23375-9d78-4fa2-8286-5945b050a9ae -2023-07-08 08:15:22.115206 2023-07-08 08:15:22.115212 aggnd 1091698856 R rec bddfdb23-c4c2-49f9-9d88-4a5f4eecebc2 -2023-07-08 08:15:22.192577 2023-07-08 08:15:22.192588 aggnd 1091702292 R rec 007b6c46-d83c-42e3-92a7-286a6bcd3f64 -2023-07-08 08:15:22.2854 2023-07-08 08:15:22.285405 aggnd 109172251X R rec cca36e15-0d10-4e97-a6bb-47b3f049d7d8 -2023-07-08 08:15:22.37307 2023-07-08 08:15:22.373076 aggnd 109177918X R rec a410e851-db6f-4fc6-9754-eeab803ed08d -2023-07-08 08:15:22.466691 2023-07-08 08:15:22.466698 aggnd 1091785813 R rec bc492a45-0653-40e0-9ceb-da02e5cd62b1 -2023-07-08 08:15:22.55178 2023-07-08 08:15:22.551794 aggnd 1091792305 R rec 39680873-46ab-4cb0-97e8-001243db1aeb -2023-07-08 08:15:22.638877 2023-07-08 08:15:22.638883 aggnd 109179331X R rec 8912e18f-5960-4ba0-9cd3-4c44b08bd427 -2023-07-08 08:15:22.73059 2023-07-08 08:15:22.730602 aggnd 1091822417 R rec d97458cb-e4bd-43e1-8b83-ca1212883dde -2023-07-08 08:15:22.822514 2023-07-08 08:15:22.822519 aggnd 1091849781 R rec 65f2294b-39f0-4fe2-b65a-9e27db955620 -2023-07-08 08:15:22.910139 2023-07-08 08:15:22.91015 aggnd 1091883599 R rec 65c8dd12-2b51-46c4-9648-dbdd8f644454 -2023-07-08 08:15:22.994846 2023-07-08 08:15:22.994862 aggnd 1091897085 R rec 1d180fa1-785e-4c66-8c3f-8bd38684cdc4 -2023-07-08 08:15:23.1011 2023-07-08 08:15:23.101105 aggnd 1091907730 R rec 0d42cc8d-a968-4e9d-9c99-e7ef4cd3129b -2023-07-08 08:15:23.207549 2023-07-08 08:15:23.207561 aggnd 1091936803 R rec 59c1cfce-b163-4491-a121-2491e8daec92 -2023-07-08 08:15:23.29506 2023-07-08 08:15:23.295071 aggnd 1091959382 R rec cee3b9a0-9042-45f2-a9c7-f8416f8d6170 -2023-07-08 08:15:23.396463 2023-07-08 08:15:23.396479 aggnd 1092040889 R rec 2c5215aa-a84c-48e9-9097-37643876a4f2 -2023-07-08 08:15:23.473645 2023-07-08 08:15:23.473651 aggnd 109206639X R rec 4c72fc30-b0d4-48b0-81ac-9f878a5783a0 -2023-07-08 08:15:23.554887 2023-07-08 08:15:23.554893 aggnd 1092274499 R rec 3e40a3c7-f2c1-4c68-93c2-dae14b17c7f5 -2023-07-08 08:15:23.660696 2023-07-08 08:15:23.660706 aggnd 109229578X R rec ea273a8e-b208-4ecd-8631-fd4662c916f4 -2023-07-08 08:15:23.769187 2023-07-08 08:15:23.769192 aggnd 1092297278 R rec 1cbcf004-a574-4f75-9faa-9d6433b60c6b -2023-07-08 08:15:23.875157 2023-07-08 08:15:23.875173 aggnd 1092349839 R rec 8818d760-bd78-4328-8fa0-c5b707cdce1e -2023-07-08 08:15:23.964385 2023-07-08 08:15:23.964391 aggnd 1092417966 R rec 6bab14c9-7bce-4202-bd0d-283039ab5dfb -2023-07-08 08:15:24.043845 2023-07-08 08:15:24.043863 aggnd 1092493239 R rec 063ce6a8-50db-4a68-b54e-52ee9f8d4351 -2023-07-08 08:15:24.138191 2023-07-08 08:15:24.138196 aggnd 1092495266 R rec ef1fbb12-6053-4509-887a-a4c72d39cb28 -2023-07-08 08:15:24.241136 2023-07-08 08:15:24.24115 aggnd 1092508333 R rec 3c4e1eeb-967a-496e-ad1e-f1890fc90f8c -2023-07-08 08:15:24.331892 2023-07-08 08:15:24.331903 aggnd 1092524398 R rec d4c2cddd-4be4-4655-a7e6-a5690cb54a95 -2023-07-08 08:15:24.429941 2023-07-08 08:15:24.429954 aggnd 1092551271 R rec 9d4cab1c-140c-4642-aab5-d4ecf295e4b5 -2023-07-08 08:15:24.505287 2023-07-08 08:15:24.505292 aggnd 1093232943 R rec 8eeb339d-8836-4be7-a3ab-333192fa60b5 -2023-07-08 08:15:24.589552 2023-07-08 08:15:24.589558 aggnd 1095512498 R rec 9ec17107-7c52-4dfb-924e-c51577785c61 -2023-07-08 08:15:24.682842 2023-07-08 08:15:24.682857 aggnd 1095673300 R rec 232fb792-615d-4df1-ab57-db9f2d620ccf -2023-07-08 08:15:24.760522 2023-07-08 08:15:24.760533 aggnd 1095685007 R rec fd680a3a-9787-43e0-acd0-f2b7fc6291ed -2023-07-08 08:15:24.851299 2023-07-08 08:15:24.851313 aggnd 1095792091 R rec 4c0bcd02-b74c-4822-a3a9-c5538235edf0 -2023-07-08 08:15:24.958941 2023-07-08 08:15:24.95904 aggnd 109579762X R rec 71c8a99f-1c0c-46e9-9dc1-dac47bf18f0d -2023-07-08 08:15:25.037196 2023-07-08 08:15:25.037207 aggnd 1096247151 R rec b5c15970-d413-4936-b3b9-8be15602b1e4 -2023-07-08 08:15:25.137124 2023-07-08 08:15:25.137129 aggnd 1096338572 R rec c374f0c0-921e-4cf1-b5cd-af65c5ba8406 -2023-07-08 08:15:25.22771 2023-07-08 08:15:25.227725 aggnd 1096509253 R rec 96483098-2ba0-455b-9cfa-e38f02fc2470 -2023-07-08 08:15:25.311973 2023-07-08 08:15:25.311985 aggnd 1097290735 R rec 13d7dc3f-309c-4f01-a253-10cda5b039e4 -2023-07-08 08:15:25.403899 2023-07-08 08:15:25.403905 aggnd 1097642550 R rec bf20a7f9-66a5-4554-b9a5-47baf9794a1d -2023-07-08 08:15:25.48768 2023-07-08 08:15:25.487686 aggnd 1097758591 R rec 2f96db98-1a7a-40e2-ae1e-df69b9daae2d -2023-07-08 08:15:25.571962 2023-07-08 08:15:25.571967 aggnd 109790715 R rec 5495163b-1f3c-47bb-8d54-cc54d2eb0d76 -2023-07-08 08:15:25.679282 2023-07-08 08:15:25.679292 aggnd 1098212460 R rec 546917a9-41b6-4526-a16b-13974bac48a7 -2023-07-08 08:15:25.766472 2023-07-08 08:15:25.766488 aggnd 109946577X R rec 8eb7243b-1158-4d79-ab44-4c7d378e76c0 -2023-07-08 08:15:25.868186 2023-07-08 08:15:25.868202 aggnd 1099467756 R rec 352a5f96-1be7-4c73-818d-9ff7b55b700b -2023-07-08 08:15:25.970988 2023-07-08 08:15:25.970996 aggnd 1099730872 R rec d937d0ca-38d2-42ee-b75f-badaafdd1465 -2023-07-08 08:15:26.04432 2023-07-08 08:15:26.044333 aggnd 1099924197 R rec 9e64e7ae-d602-4cf7-8e5a-012536d2463f -2023-07-08 08:15:26.14433 2023-07-08 08:15:26.144339 aggnd 1100173900 R rec 596457f7-3684-4b0c-be74-4e777e918d04 -2023-07-08 08:15:26.222681 2023-07-08 08:15:26.222691 aggnd 1100326294 R rec 531df96f-6e73-46a3-b0f8-50fbdb91b78b -2023-07-08 08:15:26.310229 2023-07-08 08:15:26.310243 aggnd 1100545808 R rec b00557ae-e6ba-4f03-83a8-cb38543af672 -2023-07-08 08:15:26.416356 2023-07-08 08:15:26.416367 aggnd 1100546359 R rec c32733a3-7ca2-452f-a31e-fdb0e200c53e -2023-07-08 08:15:26.507756 2023-07-08 08:15:26.507761 aggnd 1100694404 R rec 8fe36825-879b-4088-9f9d-7acb7e4960fa -2023-07-08 08:15:26.582045 2023-07-08 08:15:26.582054 aggnd 1101362081 R rec ddd3ee5f-84cd-4e1d-8380-4c003acdbceb -2023-07-08 08:15:26.653377 2023-07-08 08:15:26.653382 aggnd 1101364238 R rec 8bd1f1e0-9fdc-4780-bbaf-a274ef037374 -2023-07-08 08:15:26.72961 2023-07-08 08:15:26.729613 aggnd 1101375183 R rec af8389ba-8ada-4fbc-9dad-3b33db309045 -2023-07-08 08:15:26.797371 2023-07-08 08:15:26.797376 aggnd 1101470003 R rec 8a82ed65-7bed-4d63-b45a-ec2c872560fb -2023-07-08 08:15:26.875053 2023-07-08 08:15:26.875069 aggnd 1102164240 R rec 8a114578-9bfb-4244-b54a-68756b0315fa -2023-07-08 08:15:26.957133 2023-07-08 08:15:26.957145 aggnd 1102224820 R rec 33480bb3-4db7-4d3a-b09e-141187bbf80c -2023-07-08 08:15:27.043303 2023-07-08 08:15:27.04332 aggnd 110234979 R rec f3b89241-0a24-42c0-b093-0b64be419ee8 -2023-07-08 08:15:27.136341 2023-07-08 08:15:27.136346 aggnd 1102950661 R rec 25acd64b-8dfc-42f0-9947-daaf4d874e59 -2023-07-08 08:15:27.225083 2023-07-08 08:15:27.225089 aggnd 1103145347 R rec a7d739de-23e5-469a-8607-5eb3e2dc3328 -2023-07-08 08:15:27.304993 2023-07-08 08:15:27.304998 aggnd 1103471996 R rec 520ad095-587e-4dbb-bdb6-b1e0fa3ca0f0 -2023-07-08 08:15:27.41173 2023-07-08 08:15:27.411741 aggnd 1103491768 R rec 80acfbe3-dc6c-48e4-991b-ae121c139ad8 -2023-07-08 08:15:27.505037 2023-07-08 08:15:27.505044 aggnd 1103855794 R rec b79a70fb-bb55-4c7e-afb3-a271bed62835 -2023-07-08 08:15:27.608491 2023-07-08 08:15:27.608497 aggnd 1104130424 R rec a4cf59be-c1fe-43a3-bdcb-f82ab8f8d986 -2023-07-08 08:15:27.684724 2023-07-08 08:15:27.684729 aggnd 1104394499 R rec 75867282-d454-4227-89a5-31ab8152f516 -2023-07-08 08:15:27.783503 2023-07-08 08:15:27.783513 aggnd 1104971259 R rec baaac673-e2f0-4a4b-9de3-16ab5c2a024d -2023-07-08 08:15:27.894934 2023-07-08 08:15:27.89495 aggnd 1105435075 R rec c4a6e676-95e8-4da5-8bdd-feb01ac8e809 -2023-07-08 08:15:27.998283 2023-07-08 08:15:27.998292 aggnd 1106144244 R rec 4b6cea1f-0a2b-4744-b624-ae641961da1c -2023-07-08 08:15:28.109331 2023-07-08 08:15:28.109345 aggnd 1106568257 R rec d9781785-b898-48f9-89c5-dc53ae77a9a4 -2023-07-08 08:15:28.225188 2023-07-08 08:15:28.225199 aggnd 110674057 R rec 326b84b3-eae0-4309-a77a-1012901358e2 -2023-07-08 08:15:28.347678 2023-07-08 08:15:28.347718 aggnd 1107220025 R rec e5d004a2-1844-4d57-83bb-89da2f375765 -2023-07-08 08:15:28.474858 2023-07-08 08:15:28.474874 aggnd 1108588271 R rec db4b405a-f2d5-4828-a075-5c949d9924eb -2023-07-08 08:15:28.572051 2023-07-08 08:15:28.572066 aggnd 1109102283 R rec 41830c10-781b-4633-9d40-672642c06747 -2023-07-08 08:15:28.683459 2023-07-08 08:15:28.683475 aggnd 1109796900 R rec eb793761-91d6-4c51-8ed8-3ede4215127f -2023-07-08 08:15:28.812322 2023-07-08 08:15:28.812332 aggnd 1109931689 R rec d1329c31-3915-4760-b6d5-0e74b7cda5a4 -2023-07-08 08:15:28.953623 2023-07-08 08:15:28.953641 aggnd 1110040970 R rec 74a4af6c-f873-441f-bb38-10f64b0cbdb8 -2023-07-08 08:15:29.061282 2023-07-08 08:15:29.0613 aggnd 1111133735 R rec 96767dba-e883-4fcc-8e2e-e67aa1ed57b2 -2023-07-08 08:15:29.163011 2023-07-08 08:15:29.163024 aggnd 1111902321 R rec 9b512849-4418-4e39-b20d-fe976ab75c1b -2023-07-08 08:15:29.266196 2023-07-08 08:15:29.266207 aggnd 1112571647 R rec d8bf45dc-85dc-4a23-8e15-550bfcefada4 -2023-07-08 08:15:29.381066 2023-07-08 08:15:29.381079 aggnd 111263638 R rec 490b6cce-53f4-48fb-9072-72018d8ddc6f -2023-07-08 08:15:29.499172 2023-07-08 08:15:29.499185 aggnd 1112747885 R rec 8e50e801-4123-47db-b51d-9bf3eea06ce1 -2023-07-08 08:15:29.596125 2023-07-08 08:15:29.596144 aggnd 111303002X R rec d3630539-dc57-462d-a620-7b3ea3d94bc8 -2023-07-08 08:15:29.726511 2023-07-08 08:15:29.726521 aggnd 1113214309 R rec f13c7522-fe13-4685-ba72-95bfa9771e8e -2023-07-08 08:15:29.843106 2023-07-08 08:15:29.843119 aggnd 1114419125 R rec dc2d400c-43be-42b4-8c07-8c94f99ee7b2 -2023-07-08 08:15:29.950657 2023-07-08 08:15:29.950667 aggnd 1114601357 R rec 4a9fd652-7d28-45d7-9b16-9a30c91e87c4 -2023-07-08 08:15:30.063197 2023-07-08 08:15:30.063208 aggnd 1114680176 R rec a964ddbf-ea3e-4221-9cac-5573c66ff925 -2023-07-08 08:15:30.195465 2023-07-08 08:15:30.195477 aggnd 1114895288 R rec c9e05275-7c16-44b7-b6d5-3672abf50983 -2023-07-08 08:15:30.3304 2023-07-08 08:15:30.330411 aggnd 1114895318 R rec 8bf083b7-3af6-4fc3-bb5a-1a2403ee906d -2023-07-08 08:15:30.444883 2023-07-08 08:15:30.444897 aggnd 1115670395 R rec 7b9019d3-5c9c-46d7-ba3a-a048d63c340b -2023-07-08 08:15:30.544619 2023-07-08 08:15:30.544635 aggnd 1116350033 R rec b2df5c55-ceda-4671-b0a4-754759c972bb -2023-07-08 08:15:30.65671 2023-07-08 08:15:30.656726 aggnd 1116493586 R rec af6db46c-2576-4320-b783-e0e2c682319f -2023-07-08 08:15:30.860805 2023-07-08 08:15:30.86081 aggnd 1116967383 R rec c1ba70ce-49aa-4ad3-8e8b-58afbb2abd5a -2023-07-08 08:15:30.98626 2023-07-08 08:15:30.986271 aggnd 1116977273 R rec ed63267d-67b9-4865-a27d-088f6e874cb6 -2023-07-08 08:15:31.116743 2023-07-08 08:15:31.116757 aggnd 1116983575 R rec 928141b0-64c4-4f9b-b189-ef216cd21bf2 -2023-07-08 08:15:31.227553 2023-07-08 08:15:31.227569 aggnd 111715677X R rec 0955ebf1-3e1f-493a-a6af-2852fceef20e -2023-07-08 08:15:31.354331 2023-07-08 08:15:31.354343 aggnd 111716151X R rec cdaf1133-fc2b-4416-b511-81887870ecbe -2023-07-08 08:15:31.46564 2023-07-08 08:15:31.46565 aggnd 111783946X R rec 18a2e35d-9d12-432a-b64f-4678242d45f1 -2023-07-08 08:15:31.584783 2023-07-08 08:15:31.584794 aggnd 111787238 R rec e0b65a91-8357-49b4-8105-411ccfb7641b -2023-07-08 08:15:31.72794 2023-07-08 08:15:31.72795 aggnd 1119264243 R rec 7c864aab-4044-4de5-9f46-5425126d5632 -2023-07-08 08:15:31.832713 2023-07-08 08:15:31.832728 aggnd 1120447089 R rec bd67a10d-f4a3-4a32-a7c3-ce913645dae0 -2023-07-08 08:15:31.948828 2023-07-08 08:15:31.94884 aggnd 1120533260 R rec ef00906c-0a73-4b10-a716-856f38627519 -2023-07-08 08:15:32.06254 2023-07-08 08:15:32.062551 aggnd 1120533929 R rec 82964907-be98-471e-82af-3e41d5ddef3c -2023-07-08 08:15:32.187085 2023-07-08 08:15:32.187095 aggnd 1120736277 R rec 21f98d1a-f608-4040-9c15-6511e8915bf4 -2023-07-08 08:15:32.333916 2023-07-08 08:15:32.333926 aggnd 1120815401 R rec 2d6553cf-7850-410a-aa14-e5a9d0f6b55d -2023-07-08 08:15:32.464869 2023-07-08 08:15:32.464879 aggnd 1121320910 R rec 5cd71318-ea9d-4c02-8046-0817c2218f6f -2023-07-08 08:15:32.563999 2023-07-08 08:15:32.564012 aggnd 1121540562 R rec 6a0a237d-b35e-43bd-970a-35f676dbaa47 -2023-07-08 08:15:32.669541 2023-07-08 08:15:32.66955 aggnd 1122052537 R rec 8722f496-7cac-4660-91eb-9a9c29d68c33 -2023-07-08 08:15:32.820485 2023-07-08 08:15:32.820496 aggnd 1122056257 R rec e0036520-58cc-4a81-abf2-917e554a110f -2023-07-08 08:15:32.95383 2023-07-08 08:15:32.95384 aggnd 1122060041 R rec e3dcb6e3-58bd-427a-88b1-39ad9f4afcf0 -2023-07-08 08:15:33.08539 2023-07-08 08:15:33.085396 aggnd 1122486812 R rec ad551a75-e1e9-4e18-9d96-4ef1c621bc1b -2023-07-08 08:15:33.19868 2023-07-08 08:15:33.19869 aggnd 1122489684 R rec 2cc73e22-cdc0-48b6-a612-7a49b71ec095 -2023-07-08 08:15:33.313069 2023-07-08 08:15:33.313083 aggnd 1122490267 R rec defe64fd-099b-4415-9954-071bfa18e268 -2023-07-08 08:15:33.446655 2023-07-08 08:15:33.446666 aggnd 1123156344 R rec 9cbe56f6-6d8b-4fb7-ad3d-98acc921f9b8 -2023-07-08 08:15:33.582348 2023-07-08 08:15:33.582362 aggnd 1123162263 R rec 7f8e6a50-3630-456e-9e48-48176baf7946 -2023-07-08 08:15:33.698316 2023-07-08 08:15:33.698327 aggnd 1123172706 R rec 01b502d6-42da-4651-928e-56e48c17c017 -2023-07-08 08:15:33.817443 2023-07-08 08:15:33.817453 aggnd 1123512752 R rec 1f855d05-3186-402b-a060-ea92bb749ac7 -2023-07-08 08:15:33.946491 2023-07-08 08:15:33.946503 aggnd 1123752990 R rec f63b7fb4-7cf0-401e-9ca7-36cd52722545 -2023-07-08 08:15:34.065953 2023-07-08 08:15:34.065964 aggnd 112427748X R rec 181fc5e8-ca92-489c-baaf-0c1046023f02 -2023-07-08 08:15:34.181493 2023-07-08 08:15:34.181503 aggnd 1125914920 R rec c14d6c67-8b4c-408c-8dd3-0ce86c7d85a8 -2023-07-08 08:15:34.300077 2023-07-08 08:15:34.300094 aggnd 1126056839 R rec 539470e2-cc1e-42ba-bdbe-1f44e0b66c63 -2023-07-08 08:15:34.400885 2023-07-08 08:15:34.400897 aggnd 1126065013 R rec 95798f27-1f62-4445-9d63-7c534f2c81ed -2023-07-08 08:15:34.509323 2023-07-08 08:15:34.509328 aggnd 1127773151 R rec 0071e4c5-7fe2-43a2-a409-dda2bbc3a073 -2023-07-08 08:15:34.586732 2023-07-08 08:15:34.586738 aggnd 1130192466 R rec 8bd3f92d-8d06-495f-aee3-7874adc46379 -2023-07-08 08:15:34.659872 2023-07-08 08:15:34.659877 aggnd 1130814122 R rec 535469e8-4923-4373-b5da-e6463cd06fd8 -2023-07-08 08:15:34.741459 2023-07-08 08:15:34.741464 aggnd 1130817318 R rec 66971806-7b92-48dd-8044-7a9eaccfe5a8 -2023-07-08 08:15:34.813893 2023-07-08 08:15:34.813899 aggnd 1131199715 R rec b405a660-72d8-4e2e-9b8b-b9939c23343e -2023-07-08 08:15:34.880496 2023-07-08 08:15:34.880501 aggnd 113126262X R rec 9fdc036f-f509-45e7-9bbe-6f3779467097 -2023-07-08 08:15:34.951389 2023-07-08 08:15:34.951395 aggnd 1131276868 R rec 2d375f5d-091b-461e-bb66-dd9a6ed9ddb0 -2023-07-08 08:15:35.033414 2023-07-08 08:15:35.03342 aggnd 1131574338 R rec 9f68fa6c-22d2-4d34-9af9-17fdd4ea4d0f -2023-07-08 08:15:35.099928 2023-07-08 08:15:35.099932 aggnd 1131715187 R rec 31b88b90-deba-474f-bea3-3b2b83dd2d30 -2023-07-08 08:15:35.169722 2023-07-08 08:15:35.169728 aggnd 1132157781 R rec 94045179-b845-467d-9e60-f21a9cf09a5d -2023-07-08 08:15:35.237607 2023-07-08 08:15:35.237612 aggnd 1132540623 R rec 579e4cc9-de64-4550-96b4-73d89996874a -2023-07-08 08:15:35.319125 2023-07-08 08:15:35.319137 aggnd 113454228 R rec f4ca84d3-2d52-4a96-853b-cbca7de9f112 -2023-07-08 08:15:35.413302 2023-07-08 08:15:35.413397 aggnd 1135284865 R rec dcbb3963-9d25-48e4-b98a-18fcc2f33706 -2023-07-08 08:15:35.521093 2023-07-08 08:15:35.521107 aggnd 1135632049 R rec 5b0d5c67-2ce0-4fe7-975c-bc9bd7fd8d7e -2023-07-08 08:15:35.635353 2023-07-08 08:15:35.635364 aggnd 1135754381 R rec b5fcfcf1-3de1-49cf-b878-5c3a61a70e5a -2023-07-08 08:15:35.760531 2023-07-08 08:15:35.760536 aggnd 1136441034 R rec e113c867-90cb-43e3-b706-a0c74ab02ebc -2023-07-08 08:15:35.852874 2023-07-08 08:15:35.852885 aggnd 113660216X R rec 34b52b1f-4afb-45fe-8beb-249a7fb3e2d5 -2023-07-08 08:15:35.94755 2023-07-08 08:15:35.947565 aggnd 1137394390 R rec f2ba6183-445e-494a-a00c-805f331c48d4 -2023-07-08 08:15:36.030637 2023-07-08 08:15:36.030645 aggnd 1137496746 R rec 43c67df5-8b82-43ce-bb32-72e91ddc34ef -2023-07-08 08:15:36.110563 2023-07-08 08:15:36.110567 aggnd 1137635371 R rec 2d766d98-ab02-47f5-a91d-fe2ccdca305d -2023-07-08 08:15:36.198173 2023-07-08 08:15:36.198192 aggnd 1137723467 R rec 3dd78525-368f-4c16-84c3-7c778f43a025 -2023-07-08 08:15:36.303274 2023-07-08 08:15:36.303288 aggnd 1137735988 R rec 49d98052-644c-4b9f-944e-d637e80e2740 -2023-07-08 08:15:36.384431 2023-07-08 08:15:36.384442 aggnd 1137839392 R rec 67b7201e-dbb3-4d20-8081-3fd4ff20f12a -2023-07-08 08:15:36.474359 2023-07-08 08:15:36.474365 aggnd 1137872462 R rec 2361a5a2-a8c8-4b7a-b38b-1d85d7337ee5 -2023-07-08 08:15:36.545646 2023-07-08 08:15:36.545651 aggnd 1137888660 R rec b5222de9-f143-430e-bffa-3b7bc2fdb066 -2023-07-08 08:15:36.612431 2023-07-08 08:15:36.612437 aggnd 1138213659 R rec 4cdbd90e-7e5d-4575-9b4c-0c1f2d40bfbe -2023-07-08 08:15:36.68062 2023-07-08 08:15:36.680626 aggnd 113918055X R rec e58f0192-61e2-40f3-bdae-8d536989765f -2023-07-08 08:15:36.751146 2023-07-08 08:15:36.751152 aggnd 1139311719 R rec 436420df-1c0d-4004-a05d-d9dc7e81970f -2023-07-08 08:15:36.824481 2023-07-08 08:15:36.824486 aggnd 1139400851 R rec c202b0ad-93c4-4607-b6e8-c6b1f37c56a7 -2023-07-08 08:15:36.926338 2023-07-08 08:15:36.926343 aggnd 1139404660 R rec a00219ff-d386-4082-94ef-762d97f04500 -2023-07-08 08:15:37.001602 2023-07-08 08:15:37.001608 aggnd 1139496387 R rec c389148f-6a0d-40e5-a8ad-7b19b275d926 -2023-07-08 08:15:37.077623 2023-07-08 08:15:37.077628 aggnd 1139509292 R rec 0a557f6a-b799-449c-a5bf-ca2573f6fc42 -2023-07-08 08:15:37.179063 2023-07-08 08:15:37.179069 aggnd 1139789902 R rec 44c8e0f2-cd96-4b99-aa3b-78e0329b07e6 -2023-07-08 08:15:37.271079 2023-07-08 08:15:37.271091 aggnd 113997981 R rec dfc3cb69-a9de-4eda-ae28-388f1a4165a9 -2023-07-08 08:15:37.365918 2023-07-08 08:15:37.365934 aggnd 1140050974 R rec e4351e23-89ad-4945-b5c6-a65b38feebe4 -2023-07-08 08:15:37.460326 2023-07-08 08:15:37.460331 aggnd 1140159526 R rec f2af9c46-37a2-4a4c-97e4-1b48933953eb -2023-07-08 08:15:37.531011 2023-07-08 08:15:37.531022 aggnd 114054635X R rec 9873c0ca-d74f-426f-a444-364af7da1243 -2023-07-08 08:15:37.60751 2023-07-08 08:15:37.60752 aggnd 1140620959 R rec 6c2ca018-1578-44b7-9244-0091e8e142bf -2023-07-08 08:15:37.699121 2023-07-08 08:15:37.699132 aggnd 1141185997 R rec 186e9708-5b25-4c38-b424-471028bd611c -2023-07-08 08:15:37.785643 2023-07-08 08:15:37.785654 aggnd 1141203960 R rec 40c96191-da9a-4c05-bdb8-6f2bd4ef0637 -2023-07-08 08:15:37.878646 2023-07-08 08:15:37.878652 aggnd 1141331683 R rec b58f46d2-9202-4e9f-802b-5de57b100562 -2023-07-08 08:15:37.985122 2023-07-08 08:15:37.985137 aggnd 1141410621 R rec f68c0f5c-7b2b-459d-8e52-c5345d9932f5 -2023-07-08 08:15:38.059243 2023-07-08 08:15:38.059249 aggnd 1141815214 R rec 68667b83-78c9-40a4-b69a-edee1987123f -2023-07-08 08:15:38.131747 2023-07-08 08:15:38.131752 aggnd 1142191087 R rec 329b5329-93a5-4e38-8e18-8ba859cf2726 -2023-07-08 08:15:38.226115 2023-07-08 08:15:38.226121 aggnd 11425172X R rec fc3392d4-46b3-4df7-8bdc-189b26bf49a4 -2023-07-08 08:15:38.342573 2023-07-08 08:15:38.342579 aggnd 1142566420 R rec 16278b50-08c5-4ab3-ac29-85380803509b -2023-07-08 08:15:38.428231 2023-07-08 08:15:38.428239 aggnd 1143061578 R rec d4c55d41-0a74-475c-a90a-0722b5586a51 -2023-07-08 08:15:38.504177 2023-07-08 08:15:38.504186 aggnd 1143241045 R rec 576c7b22-7430-4b0a-a441-6dbd7f813468 -2023-07-08 08:15:38.582286 2023-07-08 08:15:38.582298 aggnd 1143266722 R rec d7e96843-2bed-48ba-8c5c-3727641f540e -2023-07-08 08:15:38.65748 2023-07-08 08:15:38.657488 aggnd 1143567234 R rec b31387a4-2665-406a-8de3-3ffa87d3b25f -2023-07-08 08:15:38.748105 2023-07-08 08:15:38.748116 aggnd 1144273307 R rec 0c16f53d-ebd7-4437-9c74-e5844d6e272c -2023-07-08 08:15:38.837316 2023-07-08 08:15:38.837326 aggnd 1144301130 R rec c514a90c-16f6-4ae1-a02b-9e8ae5786db8 -2023-07-08 08:15:38.939353 2023-07-08 08:15:38.939365 aggnd 1144669049 R rec a865d0a2-54e7-4747-8067-559a60eecad1 -2023-07-08 08:15:39.02851 2023-07-08 08:15:39.028517 aggnd 1145344372 R rec c11cbf17-f39a-43af-9ab5-bd3c39bdc935 -2023-07-08 08:15:39.118334 2023-07-08 08:15:39.11834 aggnd 1145352111 R rec 0ee7c467-0b2e-45ec-8b32-5b204687dd0b -2023-07-08 08:15:39.225437 2023-07-08 08:15:39.225442 aggnd 114535601X R rec 4ec2268d-4d95-4252-9241-d5aafa8d0e16 -2023-07-08 08:15:39.32596 2023-07-08 08:15:39.325966 aggnd 1145375154 R rec 2b420908-7ceb-4d70-8c8e-cb8fa5f3ef66 -2023-07-08 08:15:39.441296 2023-07-08 08:15:39.441311 aggnd 1145390439 R rec 2cfb5df2-b50c-4603-ad7f-931db9750493 -2023-07-08 08:15:39.54381 2023-07-08 08:15:39.543816 aggnd 1145399924 R rec ced37c1f-08ef-4fc8-b83e-a0fdc302be46 -2023-07-08 08:15:39.639103 2023-07-08 08:15:39.639118 aggnd 1145435904 R rec ff8c7080-2476-41ea-87ca-3f7936ba8287 -2023-07-08 08:15:39.732722 2023-07-08 08:15:39.732734 aggnd 114546193X R rec 86df95df-347e-4f3d-b5df-5ad91707f261 -2023-07-08 08:15:39.810403 2023-07-08 08:15:39.810408 aggnd 1145486533 R rec 8612c0b1-2eb0-41d6-90ac-78ad61428e42 -2023-07-08 08:15:39.900511 2023-07-08 08:15:39.900522 aggnd 1145519989 R rec 5f26bd30-3156-4544-abe5-a5c1cf14c2e7 -2023-07-08 08:15:40.002741 2023-07-08 08:15:40.002753 aggnd 1145537650 R rec ba986693-03cf-401e-847c-89feb141c77e -2023-07-08 08:15:40.075297 2023-07-08 08:15:40.075303 aggnd 1145563104 R rec 3e4b6511-739e-4202-bff3-4e5053b0c0d9 -2023-07-08 08:15:40.157695 2023-07-08 08:15:40.1577 aggnd 1145741851 R rec b5456290-91bc-4be7-9ace-2e30f379768c -2023-07-08 08:15:40.246162 2023-07-08 08:15:40.246173 aggnd 1145791662 R rec 424ae179-9840-454b-8e33-21473ffdbf4c -2023-07-08 08:15:40.337725 2023-07-08 08:15:40.337741 aggnd 1145807690 R rec 03633af6-a35d-4981-b32f-e6180f01bcfc -2023-07-08 08:15:40.437801 2023-07-08 08:15:40.437817 aggnd 1145825796 R rec d6b5ed13-a6d6-408a-aaae-5bcfbde786d8 -2023-07-08 08:15:40.529367 2023-07-08 08:15:40.529378 aggnd 1145880231 R rec 552ee475-120e-4d5c-b94a-3193b8513485 -2023-07-08 08:15:40.629408 2023-07-08 08:15:40.629421 aggnd 1145891209 R rec 4ce4d8db-482b-4a3e-ae22-7bbccb974c72 -2023-07-08 08:15:40.721057 2023-07-08 08:15:40.721072 aggnd 1145931103 R rec 9de0bb46-d817-4f3c-a2e6-86af45015b7b -2023-07-08 08:15:40.835175 2023-07-08 08:15:40.835181 aggnd 1145959857 R rec a60dfb5e-9fdd-4a0d-81a8-ea1116c0a021 -2023-07-08 08:15:40.929994 2023-07-08 08:15:40.930005 aggnd 1146015976 R rec 0c2deb9a-f35c-4851-9dc4-19d8345484dd -2023-07-08 08:15:41.039814 2023-07-08 08:15:41.039831 aggnd 114606151X R rec f3140475-185e-4d4a-bcda-0324f1f42aec -2023-07-08 08:15:41.134214 2023-07-08 08:15:41.13422 aggnd 1146063067 R rec d704f19b-3a53-4f5f-9d8a-d06cbbcd17f3 -2023-07-08 08:15:41.22172 2023-07-08 08:15:41.221738 aggnd 1146079567 R rec 3851ff9c-f55c-4f71-96f8-a7986fbe343e -2023-07-08 08:15:41.312411 2023-07-08 08:15:41.312417 aggnd 1146080271 R rec dbdbfdb8-f0bd-43b3-b916-27ab104d3eae -2023-07-08 08:15:41.404844 2023-07-08 08:15:41.40486 aggnd 1146220359 R rec a73b5b2a-e6f4-44d7-a227-b6695257c846 -2023-07-08 08:15:41.501077 2023-07-08 08:15:41.501087 aggnd 1146337116 R rec 261ed30b-c7f4-40ec-9732-7cf5d0bccd3a -2023-07-08 08:15:41.593788 2023-07-08 08:15:41.593793 aggnd 1146355181 R rec 0519dc8b-b1cc-43a7-bb0f-e9fc377af01b -2023-07-08 08:15:41.689109 2023-07-08 08:15:41.689122 aggnd 1146397208 R rec b3449cd6-1f0f-45b0-bfc8-46f3a0409a5a -2023-07-08 08:15:41.777467 2023-07-08 08:15:41.777472 aggnd 1146403054 R rec d5be6aa4-4e99-457e-9442-06665deaca81 -2023-07-08 08:15:41.867631 2023-07-08 08:15:41.867636 aggnd 1146418345 R rec 50c5d1b7-c82d-4288-a6f3-2b41f87833d4 -2023-07-08 08:15:41.949427 2023-07-08 08:15:41.949437 aggnd 1146538235 R rec 3e8ff7e0-ab36-4124-a7b2-e5b8c0285267 -2023-07-08 08:15:42.037985 2023-07-08 08:15:42.037996 aggnd 1146539045 R rec a3785bd3-2f17-4cc8-a9f2-902c2ee0be8e -2023-07-08 08:15:42.159592 2023-07-08 08:15:42.1596 aggnd 1146539355 R rec 5a29583b-c737-4057-b687-101c49dd8a1e -2023-07-08 08:15:42.246122 2023-07-08 08:15:42.246128 aggnd 1146540825 R rec 174c3f1b-5a3b-45fa-abf0-66778ae94035 -2023-07-08 08:15:42.328708 2023-07-08 08:15:42.328714 aggnd 1146583117 R rec b9878c7f-20d7-4cc6-83ef-b38ac28573ec -2023-07-08 08:15:42.425938 2023-07-08 08:15:42.425944 aggnd 1146702809 R rec 07f65cab-1ac3-423c-a6c9-6b0259d3a126 -2023-07-08 08:15:42.517603 2023-07-08 08:15:42.517611 aggnd 1146703015 R rec c8738cb7-6378-4f3a-bc05-07044d41ec42 -2023-07-08 08:15:42.60013 2023-07-08 08:15:42.60014 aggnd 1146715056 R rec 9d3f45e2-aaa6-4339-be71-b2737a5573d8 -2023-07-08 08:15:42.679232 2023-07-08 08:15:42.679242 aggnd 1146716346 R rec ec58b7e4-a10e-43be-80cc-343ffffbf2fa -2023-07-08 08:15:42.755621 2023-07-08 08:15:42.755635 aggnd 1146716648 R rec 5f403def-8299-40a4-8f12-ed7a756872d2 -2023-07-08 08:15:42.839534 2023-07-08 08:15:42.839544 aggnd 1146776039 R rec 050ec2ef-fbfe-4929-8b89-78682b64e445 -2023-07-08 08:15:42.921305 2023-07-08 08:15:42.921316 aggnd 1146781075 R rec 7ac35ef6-9ed2-4241-aaa0-6b94e95f830a -2023-07-08 08:15:42.999444 2023-07-08 08:15:42.999457 aggnd 1146794703 R rec c4e0b2de-64b0-422c-aa23-561cbf5f9e29 -2023-07-08 08:15:43.112279 2023-07-08 08:15:43.112287 aggnd 1146797974 R rec 1502812e-ce86-4d47-864d-63bdb938898d -2023-07-08 08:15:43.211126 2023-07-08 08:15:43.211131 aggnd 1146820763 R rec f17ac137-e063-4d27-8d45-8c57f9fd3383 -2023-07-08 08:15:43.318503 2023-07-08 08:15:43.318515 aggnd 1146911882 R rec 2b790562-b531-4c74-9ab2-11e7cf25f45f -2023-07-08 08:15:43.400781 2023-07-08 08:15:43.400791 aggnd 1146987935 R rec 22d38a48-35dc-4132-8eb2-10ee5aa53bbd -2023-07-08 08:15:43.498644 2023-07-08 08:15:43.498655 aggnd 1147003505 R rec 75b672f7-98b4-46a3-9f81-3935740c752b -2023-07-08 08:15:43.580075 2023-07-08 08:15:43.580089 aggnd 1147011087 R rec 6e3b2e4a-7757-40d2-8166-c86dde058253 -2023-07-08 08:15:43.652847 2023-07-08 08:15:43.65286 aggnd 1147058938 R rec bd7445e5-0828-490f-844b-7ef298d70c52 -2023-07-08 08:15:43.757844 2023-07-08 08:15:43.75786 aggnd 1147073120 R rec f973257f-aa18-48ea-b2ac-e23c959dc87f -2023-07-08 08:15:43.850635 2023-07-08 08:15:43.850649 aggnd 1147082367 R rec 6636fd96-741c-48d9-806b-0c7c2e9f4e14 -2023-07-08 08:15:43.944258 2023-07-08 08:15:43.944269 aggnd 1147083045 R rec 6b34e425-b5c6-4f82-b046-294d42388f38 -2023-07-08 08:15:44.041763 2023-07-08 08:15:44.041768 aggnd 1147127794 R rec 2f8fa215-c386-4632-9aa9-c02d9dc80265 -2023-07-08 08:15:44.127587 2023-07-08 08:15:44.127592 aggnd 1147132976 R rec 4b6d6888-264f-4b7d-b543-1944c36aedc0 -2023-07-08 08:15:44.210329 2023-07-08 08:15:44.210335 aggnd 1147141754 R rec f2fdf129-c3f1-4e4e-8795-5ef4515a4a94 -2023-07-08 08:15:44.311008 2023-07-08 08:15:44.311013 aggnd 1147150567 R rec 0d2e4d27-19f9-4a96-b71a-0f8f82eccf25 -2023-07-08 08:15:44.393371 2023-07-08 08:15:44.393376 aggnd 1147173680 R rec 8d49aa7d-9da5-405b-9679-08c417fc518c -2023-07-08 08:15:44.471496 2023-07-08 08:15:44.471521 aggnd 114720117X R rec d46a708b-efa9-4769-8d4e-b776cbfb6330 -2023-07-08 08:15:44.560254 2023-07-08 08:15:44.56026 aggnd 1147319049 R rec c5b61f2e-79c7-40ed-9be9-985a16908acb -2023-07-08 08:15:44.658123 2023-07-08 08:15:44.658129 aggnd 1147429472 R rec f27b0a67-6cfa-457b-9bc9-335fa01cd455 -2023-07-08 08:15:44.731126 2023-07-08 08:15:44.731138 aggnd 1147614709 R rec 3ca7bb4b-3ff6-4bee-9270-28164609d408 -2023-07-08 08:15:44.831794 2023-07-08 08:15:44.8318 aggnd 1147649642 R rec 4c9a872b-8e0b-48d3-ac5d-67ecba2beb29 -2023-07-08 08:15:44.915553 2023-07-08 08:15:44.915571 aggnd 1147777713 R rec d59255a8-cbc1-44c6-9e55-9e9219b383ab -2023-07-08 08:15:45.000141 2023-07-08 08:15:45.000153 aggnd 1148121404 R rec 91cd5e5c-1079-4f43-85c7-d2703708f775 -2023-07-08 08:15:45.087563 2023-07-08 08:15:45.087572 aggnd 1148473181 R rec f25952f7-fd6b-4855-95db-3ae6dfa57ab6 -2023-07-08 08:15:45.182241 2023-07-08 08:15:45.182246 aggnd 1148992316 R rec 5108eac5-d010-4b5b-bcd9-33a954161db2 -2023-07-08 08:15:45.266511 2023-07-08 08:15:45.266522 aggnd 1149000910 R rec ad85e7d4-a408-4e50-9039-608e3ca54928 -2023-07-08 08:15:45.365476 2023-07-08 08:15:45.365486 aggnd 1149077050 R rec 9dee0662-80c2-4c99-9864-f754c7e6b4e2 -2023-07-08 08:15:45.460516 2023-07-08 08:15:45.460521 aggnd 1149382090 R rec 415c4f39-a0d5-46da-a5d7-37349a3ae271 -2023-07-08 08:15:45.546587 2023-07-08 08:15:45.546592 aggnd 115024397X R rec 24c056d1-b465-4773-acbc-ba632907277e -2023-07-08 08:15:45.621837 2023-07-08 08:15:45.621848 aggnd 1150721626 R rec 4e5f7743-b2de-4d98-99c7-292a8db65e6e -2023-07-08 08:15:45.718301 2023-07-08 08:15:45.718311 aggnd 1150789433 R rec 87de241f-de71-4916-9cd7-f808ea044ca0 -2023-07-08 08:15:45.788123 2023-07-08 08:15:45.788129 aggnd 1150803541 R rec bd0033e8-9455-453e-83a0-a4f27675e6aa -2023-07-08 08:15:45.867992 2023-07-08 08:15:45.868003 aggnd 1151079529 R rec 5bdb018a-52f3-4f21-b93f-cc7d01ab6ee8 -2023-07-08 08:15:45.950968 2023-07-08 08:15:45.950981 aggnd 1151380040 R rec 55e2fb49-d1d0-47f0-a4f6-0178a1dd50b6 -2023-07-08 08:15:46.049401 2023-07-08 08:15:46.049412 aggnd 115168127X R rec ff2989a4-5e70-46b5-a562-b880f5d441f8 -2023-07-08 08:15:46.159654 2023-07-08 08:15:46.159661 aggnd 1151834149 R rec 84b72376-6585-482b-b6b3-215c5a7e4f31 -2023-07-08 08:15:46.238457 2023-07-08 08:15:46.238468 aggnd 115189203 R rec c6d321e1-7d82-472d-b667-8f0ce9b185f8 -2023-07-08 08:15:46.318128 2023-07-08 08:15:46.318141 aggnd 115228987X R rec b554aa29-0e8f-45ec-9a95-02176899e743 -2023-07-08 08:15:46.401357 2023-07-08 08:15:46.401368 aggnd 1153014750 R rec 84746343-9427-4cae-a499-71c7924897d9 -2023-07-08 08:15:46.486229 2023-07-08 08:15:46.48624 aggnd 1153069881 R rec 3fbd0aa8-f5ee-4c47-8583-bff90884d85d -2023-07-08 08:15:46.559285 2023-07-08 08:15:46.559291 aggnd 1153169363 R rec c2bbc41b-5b61-43d1-af59-0221e37fd875 -2023-07-08 08:15:46.645016 2023-07-08 08:15:46.645021 aggnd 1153565455 R rec 6a19f11a-7148-4ed0-8fdf-3f729661cbf1 -2023-07-08 08:15:46.73626 2023-07-08 08:15:46.73627 aggnd 1153781506 R rec b37b17dc-4cd1-464b-a09c-bbb4dffc1fa1 -2023-07-08 08:15:46.815758 2023-07-08 08:15:46.815769 aggnd 115378197 R rec ad4dcba3-1e43-4fb6-93a5-47bc044e69cc -2023-07-08 08:15:46.901458 2023-07-08 08:15:46.901475 aggnd 1154802817 R rec c4a34828-e3a7-4215-9537-81bd58f626ae -2023-07-08 08:15:47.002627 2023-07-08 08:15:47.002638 aggnd 115493069 R rec 094ac50b-3155-42d9-8efb-04438479f9f7 -2023-07-08 08:15:47.076794 2023-07-08 08:15:47.0768 aggnd 115497328X R rec 4ef38fdd-7033-4258-989c-2880561ae150 -2023-07-08 08:15:47.151513 2023-07-08 08:15:47.151517 aggnd 115503256X R rec aa00f04e-9b59-40fb-b730-e9d926658ef0 -2023-07-08 08:15:47.219172 2023-07-08 08:15:47.219179 aggnd 1155263766 R rec db98d614-7b14-48a4-8b15-ccb59c5250a9 -2023-07-08 08:15:47.284781 2023-07-08 08:15:47.284787 aggnd 1155422481 R rec 6e4ffa53-3355-4b68-ad4b-e072f2a23a50 -2023-07-08 08:15:47.362994 2023-07-08 08:15:47.363005 aggnd 1155539176 R rec 890c8465-50e6-4ad4-84cf-d0a6e0734ea1 -2023-07-08 08:15:47.469495 2023-07-08 08:15:47.469501 aggnd 1155539249 R rec 0a1bef2d-7f05-406a-9f4c-f4356c246cba -2023-07-08 08:15:47.541918 2023-07-08 08:15:47.541928 aggnd 115620451 R rec d7ac5ffc-e5fb-40d9-9dbe-a8a027da5f9b -2023-07-08 08:15:47.618778 2023-07-08 08:15:47.618785 aggnd 1156292166 R rec b92c30f6-2843-44f0-957f-cffacdc2fdea -2023-07-08 08:15:47.683468 2023-07-08 08:15:47.683477 aggnd 1156433290 R rec f16fa4fb-5999-43d9-b3e9-41e92574cb5f -2023-07-08 08:15:47.754947 2023-07-08 08:15:47.754953 aggnd 1156493242 R rec d074cc12-8299-41f8-89a2-0a6d692c76aa -2023-07-08 08:15:47.823408 2023-07-08 08:15:47.823413 aggnd 1156540917 R rec c03f2c11-9fa5-4c80-af18-fa7771da28b6 -2023-07-08 08:15:47.895856 2023-07-08 08:15:47.895862 aggnd 1157052185 R rec 9910c80d-5581-4094-b29c-c0057b79ec31 -2023-07-08 08:15:47.983924 2023-07-08 08:15:47.983936 aggnd 1157216900 R rec de6fe16f-4d10-4ce6-8102-b1082a288ee3 -2023-07-08 08:15:48.061143 2023-07-08 08:15:48.061148 aggnd 1157217559 R rec dc68d5b2-94c3-4bbc-b893-9963b01fcecd -2023-07-08 08:15:48.135736 2023-07-08 08:15:48.135741 aggnd 1157230466 R rec 08999dd6-e303-4e21-8129-fefd46df70f7 -2023-07-08 08:15:48.219324 2023-07-08 08:15:48.219334 aggnd 1157269680 R rec 0b5f6608-5de4-4586-8549-edcb2c05e719 -2023-07-08 08:15:48.31716 2023-07-08 08:15:48.317176 aggnd 1157288723 R rec 5af94b1b-1350-4f11-90be-098d1576bd88 -2023-07-08 08:15:48.40475 2023-07-08 08:15:48.40476 aggnd 1157297676 R rec a1a86cce-1606-4e4b-af20-16b54e1d176a -2023-07-08 08:15:48.482892 2023-07-08 08:15:48.482898 aggnd 1157335101 R rec a3efcdb0-d204-468c-b8cc-5bcffff4dd34 -2023-07-08 08:15:48.552101 2023-07-08 08:15:48.552106 aggnd 1157423981 R rec 1b5561ba-9115-4df5-b5d4-1fcf93d0f2bf -2023-07-08 08:15:48.62399 2023-07-08 08:15:48.623995 aggnd 1157447694 R rec 452465fd-183b-4dd4-8ff0-e23c1934f9eb -2023-07-08 08:15:48.694581 2023-07-08 08:15:48.694587 aggnd 1157452159 R rec 1120a968-22f2-4e2d-95c9-52053a8e2eb4 -2023-07-08 08:15:48.767622 2023-07-08 08:15:48.76763 aggnd 1157594042 R rec 132ef20b-903a-4915-bbf5-cca841904ffb -2023-07-08 08:15:48.836154 2023-07-08 08:15:48.836158 aggnd 1157599087 R rec 9a1f555f-6d11-44db-991a-5892648ceaec -2023-07-08 08:15:48.903381 2023-07-08 08:15:48.903387 aggnd 1157628680 R rec 5fe29983-ac03-4176-8e89-42da6de6decf -2023-07-08 08:15:48.986306 2023-07-08 08:15:48.986311 aggnd 1157697208 R rec dabe4bb0-c131-4f20-ac82-a4e614aace77 -2023-07-08 08:15:49.057264 2023-07-08 08:15:49.05727 aggnd 1157709702 R rec 1b1839c6-4f4f-4df7-8e4b-2a6fe3f69ac8 -2023-07-08 08:15:49.138566 2023-07-08 08:15:49.138571 aggnd 1157711162 R rec 3649a9f8-1537-48a5-a270-6b2cf638e1ea -2023-07-08 08:15:49.215773 2023-07-08 08:15:49.215783 aggnd 115775633 R rec e3d3769c-afb0-4420-992e-f2ced8d4fed6 -2023-07-08 08:15:49.313963 2023-07-08 08:15:49.313969 aggnd 1157756964 R rec 56d146a9-d50e-4366-b93a-ac4dbb48aecb -2023-07-08 08:15:49.389854 2023-07-08 08:15:49.389867 aggnd 1157761518 R rec e744e4a8-671b-4645-89d9-9bf3a558b43a -2023-07-08 08:15:49.48233 2023-07-08 08:15:49.482341 aggnd 1157778321 R rec f343b385-47af-46a0-9ff2-a6198a131421 -2023-07-08 08:15:49.575884 2023-07-08 08:15:49.57589 aggnd 1157861202 R rec f25019ce-363c-4901-99dc-be90e6753da4 -2023-07-08 08:15:49.681132 2023-07-08 08:15:49.681143 aggnd 1157879837 R rec ae44ddf6-2f36-4741-a561-64ae818cea8b -2023-07-08 08:15:49.776604 2023-07-08 08:15:49.776609 aggnd 1157907849 R rec 6d7184a3-3ce6-4856-aa88-6b0baaa601da -2023-07-08 08:15:49.856826 2023-07-08 08:15:49.856831 aggnd 1157912311 R rec b5bafc41-21ec-47d2-a97a-5a8135c5a8c4 -2023-07-08 08:15:49.943374 2023-07-08 08:15:49.943381 aggnd 1158006497 R rec 89faefbd-bc9b-4cb3-bfe2-049e25f73865 -2023-07-08 08:15:50.032163 2023-07-08 08:15:50.032173 aggnd 1158027060 R rec 7ce376dd-3efd-4987-90c5-74e86a02836b -2023-07-08 08:15:50.147328 2023-07-08 08:15:50.147337 aggnd 1158052057 R rec 7836ecb3-9886-435b-bff8-cef8f0be9a4e -2023-07-08 08:15:50.251201 2023-07-08 08:15:50.251212 aggnd 1158100892 R rec f59bf112-afcc-45d9-8cff-9dfb959d4c5f -2023-07-08 08:15:50.346801 2023-07-08 08:15:50.346812 aggnd 1158101988 R rec dff3c3d9-4acc-44e1-b10f-08771d8e2808 -2023-07-08 08:15:50.428091 2023-07-08 08:15:50.428097 aggnd 1158158408 R rec e2437356-05b5-46af-8508-6bd2d04e6afa -2023-07-08 08:15:50.497742 2023-07-08 08:15:50.497747 aggnd 1158200374 R rec 8ac39697-ee5e-42c8-a38a-48ecb6c20b7b -2023-07-08 08:15:50.565156 2023-07-08 08:15:50.565162 aggnd 115829106X R rec 4a0d6322-9a98-4909-b39b-4225db27f65d -2023-07-08 08:15:50.634993 2023-07-08 08:15:50.635007 aggnd 115832599 R rec a8c77343-2bdc-4e93-b83b-98ccc347aae0 -2023-07-08 08:15:50.733212 2023-07-08 08:15:50.733222 aggnd 115836346X R rec 95a9d5f1-e4f7-44d7-9f9c-947fc6c5f90d -2023-07-08 08:15:50.836668 2023-07-08 08:15:50.836679 aggnd 1158367546 R rec 5ea46e29-f5af-45ea-a691-2e0c1c848fe9 -2023-07-08 08:15:50.92789 2023-07-08 08:15:50.927895 aggnd 1158381719 R rec 5e2c685f-3d1c-44e2-8ad0-6389a7e99a20 -2023-07-08 08:15:51.02494 2023-07-08 08:15:51.024946 aggnd 1158387253 R rec 6f79afed-aac7-49cd-9b73-c2b514559194 -2023-07-08 08:15:51.12224 2023-07-08 08:15:51.122246 aggnd 1158419481 R rec 6903e401-86b6-4e64-85c9-cbdf9eb2b7c3 -2023-07-08 08:15:51.219632 2023-07-08 08:15:51.219651 aggnd 1158422814 R rec 7edbafe0-d1aa-47fe-a49d-849cf18999f5 -2023-07-08 08:15:51.321006 2023-07-08 08:15:51.321016 aggnd 1158446462 R rec cede0893-c57d-41d4-bb07-8df7668f412d -2023-07-08 08:15:51.422571 2023-07-08 08:15:51.422576 aggnd 1158464681 R rec f48fd7be-0f40-4ab0-a831-ef1c2ae3f5fb -2023-07-08 08:15:51.526781 2023-07-08 08:15:51.526786 aggnd 1158546564 R rec df524d0e-f2af-4c80-8b90-a4c231fc3cd0 -2023-07-08 08:15:51.612098 2023-07-08 08:15:51.61211 aggnd 1158555156 R rec e865ed06-f8a1-4469-b131-4b759dc14872 -2023-07-08 08:15:51.707118 2023-07-08 08:15:51.707128 aggnd 115855882 R rec 9b7a9b9d-efb5-4a57-ad44-584d44ea60c1 -2023-07-08 08:15:51.809947 2023-07-08 08:15:51.809958 aggnd 1158559259 R rec 95042856-7c5a-4acf-bad6-cba6dfbe3e5e -2023-07-08 08:15:51.921214 2023-07-08 08:15:51.921225 aggnd 1158570945 R rec a5c26905-d002-4396-954b-140ebb5e5bea -2023-07-08 08:15:52.005235 2023-07-08 08:15:52.005245 aggnd 1158574614 R rec 5cd17986-79bd-427e-8529-5b65566b007d -2023-07-08 08:15:52.097379 2023-07-08 08:15:52.097394 aggnd 1158624107 R rec 0d7c93a1-2f11-463c-b0b9-465b615a35dc -2023-07-08 08:15:52.1951 2023-07-08 08:15:52.195107 aggnd 1158716125 R rec f6ac234c-0fca-4428-8ce1-47aa3fb363fc -2023-07-08 08:15:52.287643 2023-07-08 08:15:52.287654 aggnd 1158723458 R rec 400ee9f2-fcb8-4a74-831d-f888c88b9f94 -2023-07-08 08:15:52.393629 2023-07-08 08:15:52.393635 aggnd 1158741308 R rec 067767d7-33fc-4278-b1e0-503e5b02f8a7 -2023-07-08 08:15:52.46899 2023-07-08 08:15:52.469001 aggnd 1158818726 R rec 2d0cd85f-a400-49f8-811a-3c7508a832ca -2023-07-08 08:15:52.569498 2023-07-08 08:15:52.569513 aggnd 1158866127 R rec 273adffa-6dc4-4af1-b9e9-b495967f5026 -2023-07-08 08:15:52.66413 2023-07-08 08:15:52.664136 aggnd 1158920237 R rec c6fa9380-9518-4188-b4b0-715d0903e0db -2023-07-08 08:15:52.739714 2023-07-08 08:15:52.739724 aggnd 1158922892 R rec 71c08834-280c-4bcb-90e6-0d81218569d5 -2023-07-08 08:15:52.811181 2023-07-08 08:15:52.811187 aggnd 1158941145 R rec c19d5b4c-cadc-46d6-b76d-173b728ac39f -2023-07-08 08:15:52.897677 2023-07-08 08:15:52.897691 aggnd 1158944675 R rec a0307ab7-bdd4-42fe-b03d-f44209b625cc -2023-07-08 08:15:52.97703 2023-07-08 08:15:52.977037 aggnd 1158971117 R rec 28af0bad-7573-4ac1-a547-fae30ed29de2 -2023-07-08 08:15:53.063746 2023-07-08 08:15:53.063757 aggnd 1159026750 R rec 3e4ee25b-c123-4aeb-816d-1fb6ef43b3e7 -2023-07-08 08:15:53.160373 2023-07-08 08:15:53.160378 aggnd 1159034591 R rec 0eaf0648-ae16-412c-a60a-5e083bde7304 -2023-07-08 08:15:53.278865 2023-07-08 08:15:53.278869 aggnd 1159046239 R rec 5b527d9b-1627-4ba6-809a-558a3ab38046 -2023-07-08 08:15:53.378875 2023-07-08 08:15:53.378882 aggnd 1159064911 R rec 64ea40ba-b521-41cf-a913-cb6f1f50b426 -2023-07-08 08:15:53.455555 2023-07-08 08:15:53.455567 aggnd 1159071373 R rec 23cdc237-2192-478d-85d9-cc48e1ebe986 -2023-07-08 08:15:53.555891 2023-07-08 08:15:53.555905 aggnd 1159073880 R rec a313f6fa-66c5-416f-92b3-7d0d6a273442 -2023-07-08 08:15:53.654195 2023-07-08 08:15:53.654207 aggnd 1159080593 R rec 01545de1-9ee1-4031-b4a0-72799f9a072d -2023-07-08 08:15:53.746081 2023-07-08 08:15:53.746087 aggnd 1159104611 R rec b93dbd5d-b44b-49ad-b646-1e8720ac7e4a -2023-07-08 08:15:53.838051 2023-07-08 08:15:53.838063 aggnd 1159119422 R rec b7a35e38-1c89-4a1a-9a30-4e31427aa9f3 -2023-07-08 08:15:53.931676 2023-07-08 08:15:53.931682 aggnd 1159135630 R rec 20a0b3b9-27b6-4b5f-a5a6-183a26383366 -2023-07-08 08:15:54.025205 2023-07-08 08:15:54.02521 aggnd 1159138117 R rec 0ecf0c4f-c975-4a7c-aa1f-eee39f86b2a7 -2023-07-08 08:15:54.10998 2023-07-08 08:15:54.109985 aggnd 1159153183 R rec 59772481-b7fd-4adf-964f-126902a49c5b -2023-07-08 08:15:54.202583 2023-07-08 08:15:54.202589 aggnd 1159167451 R rec 95eb445e-209a-4779-a609-2d83bdfabd92 -2023-07-08 08:15:54.291574 2023-07-08 08:15:54.29158 aggnd 1159213550 R rec 8032ef75-b7d8-49b3-8b74-b3c13aed7af7 -2023-07-08 08:15:54.364989 2023-07-08 08:15:54.365 aggnd 115921719X R rec 5a7765d8-fc0b-4ab2-9e2e-36d6e2d90fa8 -2023-07-08 08:15:54.455677 2023-07-08 08:15:54.455689 aggnd 1159260079 R rec ded92fbf-bfaa-4b49-9b1b-816c00d8a42b -2023-07-08 08:15:54.562537 2023-07-08 08:15:54.562553 aggnd 1159260931 R rec 25f58b31-9634-4517-a2fe-55af3a667ec5 -2023-07-08 08:15:54.670181 2023-07-08 08:15:54.670197 aggnd 1159261407 R rec dc6a24be-9476-4769-9958-c1ef900fa00d -2023-07-08 08:15:54.805351 2023-07-08 08:15:54.805361 aggnd 1159284946 R rec 81d1efba-e72e-4517-8671-4f720ed98cf1 -2023-07-08 08:15:54.946466 2023-07-08 08:15:54.94648 aggnd 1159288259 R rec a2509c51-05b1-4b0d-b67d-c10fd06b3c3a -2023-07-08 08:15:55.056682 2023-07-08 08:15:55.056695 aggnd 1159531471 R rec c3077237-9e44-4789-8c3e-6957347d4d3a -2023-07-08 08:15:55.167097 2023-07-08 08:15:55.167109 aggnd 1159712689 R rec 6b4b846e-6658-4ebb-b230-4eeb2dae6286 -2023-07-08 08:15:55.280255 2023-07-08 08:15:55.280266 aggnd 1160106576 R rec 41a611fd-a3e0-4c96-acee-0fdcdfd4fedd -2023-07-08 08:15:55.404182 2023-07-08 08:15:55.404197 aggnd 1160217254 R rec 3167a427-9e73-4ebb-9c6a-106d04d0ecd4 -2023-07-08 08:15:55.535744 2023-07-08 08:15:55.535754 aggnd 1160325189 R rec a030ae9e-85ac-402e-88cd-65fdea0d234b -2023-07-08 08:15:55.666206 2023-07-08 08:15:55.66622 aggnd 116037202 R rec 033fa69a-9938-48a0-81f7-0b90d3fe38d5 -2023-07-08 08:15:55.782509 2023-07-08 08:15:55.782521 aggnd 116075899 R rec 86d987e7-1faa-4841-a2bb-6592c742f5f5 -2023-07-08 08:15:55.881996 2023-07-08 08:15:55.882006 aggnd 1160946140 R rec 37d90986-bfdc-4e60-8779-04f3deb09e48 -2023-07-08 08:15:55.987114 2023-07-08 08:15:55.987129 aggnd 116102932X R rec 581fd9d5-29a5-412b-8182-40d2347b087f -2023-07-08 08:15:56.087819 2023-07-08 08:15:56.087836 aggnd 116120444 R rec f967be46-a43c-4f45-ad58-a27a4f4b44bd -2023-07-08 08:15:56.198009 2023-07-08 08:15:56.198021 aggnd 116144131X R rec 604929a5-e1f3-4723-aabc-00d2d2c88181 -2023-07-08 08:15:56.315892 2023-07-08 08:15:56.315906 aggnd 116189673 R rec 7c07e88c-aca4-4430-9e9c-18d60f0cb512 -2023-07-08 08:15:56.418255 2023-07-08 08:15:56.418273 aggnd 1162968664 R rec 239adb23-e47b-491e-bdee-723b8e626ded -2023-07-08 08:15:56.526791 2023-07-08 08:15:56.5268 aggnd 1163054186 R rec 76f7acc6-5dab-4274-a135-554bdbb0a532 -2023-07-08 08:15:56.639862 2023-07-08 08:15:56.639872 aggnd 1163061921 R rec d302fd1a-1752-4702-b6e8-2eb72db09ad1 -2023-07-08 08:15:56.737963 2023-07-08 08:15:56.737978 aggnd 116311054X R rec a08963ff-54fa-43e0-9856-457dde53fc44 -2023-07-08 08:15:56.849637 2023-07-08 08:15:56.849652 aggnd 1163622265 R rec 80998f95-7ed2-4731-9623-d17b14d89dad -2023-07-08 08:15:56.967959 2023-07-08 08:15:56.96797 aggnd 1163767662 R rec 51ec42dd-508d-4d40-a1a5-de336a014c0d -2023-07-08 08:15:57.084545 2023-07-08 08:15:57.08456 aggnd 116385103 R rec 238b60e5-f3ae-4dcb-8bd1-969467e62e8b -2023-07-08 08:15:57.191888 2023-07-08 08:15:57.191901 aggnd 1164191497 R rec f628846e-95a2-4ced-b6e0-14e60c8bbcbe -2023-07-08 08:15:57.293836 2023-07-08 08:15:57.293852 aggnd 1164263269 R rec c9fa44a5-cbd1-4205-8292-74c29deca388 -2023-07-08 08:15:57.416911 2023-07-08 08:15:57.416926 aggnd 116439394 R rec 89a5dec6-7f4f-4d07-9046-52893d88c729 -2023-07-08 08:15:57.519041 2023-07-08 08:15:57.519056 aggnd 116442743 R rec 966fab5e-1d5d-4903-922f-51756fccf5ba -2023-07-08 08:15:57.632329 2023-07-08 08:15:57.632339 aggnd 1164502875 R rec df4f723a-0a0a-42c8-8a2e-1b2904edf3f1 -2023-07-08 08:15:57.75089 2023-07-08 08:15:57.75093 aggnd 1164710923 R rec dff4bc10-c70d-4e38-93f4-7946f1459312 -2023-07-08 08:15:57.881777 2023-07-08 08:15:57.88179 aggnd 11647839X R rec 9e5651cf-1dc5-4cc3-b26f-57d77be37606 -2023-07-08 08:15:57.989563 2023-07-08 08:15:57.989579 aggnd 116481536 R rec 46b042b1-55cc-4d9c-b406-ba453ce8565e -2023-07-08 08:15:58.10163 2023-07-08 08:15:58.101647 aggnd 116493011 R rec 11eea90e-b128-43a9-aef1-c6949d64d868 -2023-07-08 08:15:58.206342 2023-07-08 08:15:58.206352 aggnd 1165187388 R rec 180bb1ce-a2a9-450f-a39c-33845ccab446 -2023-07-08 08:15:58.315973 2023-07-08 08:15:58.315989 aggnd 1165269503 R rec 9a9b8f54-6fa9-46f5-99b9-bb79496df6b7 -2023-07-08 08:15:58.424842 2023-07-08 08:15:58.424859 aggnd 1165531615 R rec 1a52c843-b954-4756-bd9a-33ce7fff8b6a -2023-07-08 08:15:58.522658 2023-07-08 08:15:58.522677 aggnd 1165547821 R rec ce5c5c54-24fc-43f8-aa5a-dd311cf74074 -2023-07-08 08:15:58.640428 2023-07-08 08:15:58.640446 aggnd 1165583534 R rec 3e5cd9d2-cb24-497e-86bc-f9479747f217 -2023-07-08 08:15:58.761711 2023-07-08 08:15:58.761725 aggnd 1165585391 R rec 6941ff80-2ff1-4279-ab47-944ffb3082fd -2023-07-08 08:15:58.870707 2023-07-08 08:15:58.870725 aggnd 116582782 R rec a0b49e4a-00fe-4092-b4fb-201e47c9c731 -2023-07-08 08:15:58.968792 2023-07-08 08:15:58.968802 aggnd 116600233 R rec c1848a7d-8e6c-45e8-af51-413cccdbecd9 -2023-07-08 08:15:59.06879 2023-07-08 08:15:59.068802 aggnd 116601795 R rec d53430b8-598c-44fd-acf0-23f4f65b6f41 -2023-07-08 08:15:59.183353 2023-07-08 08:15:59.183366 aggnd 1166105709 R rec b6491fca-ab18-4bed-8f30-0de863e76318 -2023-07-08 08:15:59.27925 2023-07-08 08:15:59.27926 aggnd 1166156494 R rec d7961f56-d95c-4cd6-8b79-4c8de5a940c3 -2023-07-08 08:15:59.381562 2023-07-08 08:15:59.381575 aggnd 116629673 R rec 8fd6cae9-4fb3-43b1-8f34-04c3c94cf358 -2023-07-08 08:15:59.479102 2023-07-08 08:15:59.479114 aggnd 116679875 R rec 994c54d1-4d82-464c-8677-495ffcf7eaac -2023-07-08 08:15:59.592985 2023-07-08 08:15:59.593001 aggnd 1166857204 R rec 3d025540-13ca-4220-9647-76388604a898 -2023-07-08 08:15:59.69025 2023-07-08 08:15:59.690265 aggnd 1166992330 R rec fc273e80-be3d-4dff-b86d-bf3d67418f16 -2023-07-08 08:15:59.796954 2023-07-08 08:15:59.796969 aggnd 11671848X R rec 665728e6-5a25-40fd-b5a5-24d724969123 -2023-07-08 08:15:59.916333 2023-07-08 08:15:59.91635 aggnd 116736410 R rec 9c903b22-1154-40d6-90d3-76acf22e4751 -2023-07-08 08:16:00.029502 2023-07-08 08:16:00.029515 aggnd 116755776 R rec dbba3ee3-1825-44be-92c3-2107d11a8e70 -2023-07-08 08:16:00.132241 2023-07-08 08:16:00.132253 aggnd 1168165466 R rec 1133060c-04bb-4e4e-a8b9-e52de3228028 -2023-07-08 08:16:00.232892 2023-07-08 08:16:00.232904 aggnd 1168177111 R rec d06af9e0-a76d-41ee-8b44-3b9f57f36d43 -2023-07-08 08:16:00.339435 2023-07-08 08:16:00.339451 aggnd 116830565 R rec 9ea1a590-8465-40b9-b16a-13ec0db1b7a8 -2023-07-08 08:16:00.457255 2023-07-08 08:16:00.457271 aggnd 11683188X R rec 1ab203f3-8320-4b11-a231-56766203fc25 -2023-07-08 08:16:00.564398 2023-07-08 08:16:00.564413 aggnd 116864366X R rec c5978933-6d1b-45a9-9197-08ec07645509 -2023-07-08 08:16:00.701401 2023-07-08 08:16:00.701412 aggnd 1168683211 R rec 81da7f5b-5f74-45cf-94d6-8722cf0a0a05 -2023-07-08 08:16:00.863869 2023-07-08 08:16:00.863875 aggnd 116903953 R rec 81bfc8d2-9968-4377-a344-41bfd977d440 -2023-07-08 08:16:00.994576 2023-07-08 08:16:00.994588 aggnd 1169048099 R rec c04143b4-5fd5-47e9-8517-04d19b5b6f74 -2023-07-08 08:16:01.123978 2023-07-08 08:16:01.123995 aggnd 1169139434 R rec d854bff4-7039-4d15-bfe4-18760cb09780 -2023-07-08 08:16:01.257762 2023-07-08 08:16:01.257772 aggnd 1169226531 R rec 0adf70fb-1d3e-4bde-8af7-89f61eab16f3 -2023-07-08 08:16:01.399364 2023-07-08 08:16:01.39938 aggnd 116934565 R rec 3cae188c-db1a-4330-bf0c-68d2e9630d07 -2023-07-08 08:16:01.53796 2023-07-08 08:16:01.537966 aggnd 116986700 R rec cee8677e-f8ec-43a3-86cf-8244424603e4 -2023-07-08 08:16:01.62705 2023-07-08 08:16:01.627061 aggnd 1169969305 R rec 6e6e3c72-2e71-4792-8408-27712853c607 -2023-07-08 08:16:01.737984 2023-07-08 08:16:01.737997 aggnd 1170278353 R rec 83e0a544-a219-47cb-9ba3-cadb81990058 -2023-07-08 08:16:01.852302 2023-07-08 08:16:01.852315 aggnd 1170426131 R rec 5a251ad7-3f56-410f-a887-90b4c586694c -2023-07-08 08:16:01.963555 2023-07-08 08:16:01.963565 aggnd 1170451594 R rec 43f699cc-df39-4443-b815-d89043ad6891 -2023-07-08 08:16:02.085165 2023-07-08 08:16:02.085175 aggnd 117054437 R rec 9f3dfea5-4938-4aff-952c-48089328f564 -2023-07-08 08:16:02.204767 2023-07-08 08:16:02.204777 aggnd 1170618367 R rec 3aa4c3c0-67b3-4f8f-9fc0-27b4c6ac1333 -2023-07-08 08:16:02.312993 2023-07-08 08:16:02.313011 aggnd 1170837611 R rec 8de3f77e-20f8-4213-91c3-47cd5a809d57 -2023-07-08 08:16:02.419184 2023-07-08 08:16:02.419194 aggnd 1171152183 R rec e0ce2318-456e-435f-96a0-21ff902a76bf -2023-07-08 08:16:02.531666 2023-07-08 08:16:02.531677 aggnd 117143553 R rec eaf02a6c-8d06-467a-9423-c96b0540ad36 -2023-07-08 08:16:02.65191 2023-07-08 08:16:02.651931 aggnd 1171765010 R rec b5b0b3fa-fa71-4d6c-a171-9fe0f944f761 -2023-07-08 08:16:02.781626 2023-07-08 08:16:02.781635 aggnd 1172001731 R rec 26ac50fd-5169-43b7-a250-034edef66029 -2023-07-08 08:16:02.902288 2023-07-08 08:16:02.902298 aggnd 1172048657 R rec 48b82c9f-d809-42b1-b20a-bb50a5d310e0 -2023-07-08 08:16:03.029731 2023-07-08 08:16:03.029746 aggnd 1172083541 R rec 7dd816b5-51c1-4b3e-9270-55ff9e1b0dc9 -2023-07-08 08:16:03.145421 2023-07-08 08:16:03.145431 aggnd 1172106339 R rec 6120fe26-25c2-4f28-a53a-d171fc860bfc -2023-07-08 08:16:03.252895 2023-07-08 08:16:03.252906 aggnd 117233218 R rec f391cea1-aab5-41ea-b555-d01bac4e9a0d -2023-07-08 08:16:03.368846 2023-07-08 08:16:03.368852 aggnd 1173330542 R rec 10bf6893-4008-41de-ad4f-2eea21f15a0c -2023-07-08 08:16:03.467568 2023-07-08 08:16:03.46758 aggnd 117352896 R rec c1f0553f-d0b0-401e-a251-1f0b27ddf668 -2023-07-08 08:16:03.585081 2023-07-08 08:16:03.585094 aggnd 117471178 R rec f5917e20-c2f8-4050-aada-b2a03c7a1de1 -2023-07-08 08:16:03.699516 2023-07-08 08:16:03.699529 aggnd 117480797 R rec ba4cb9fa-bd26-4414-a114-17bc50ac342d -2023-07-08 08:16:03.813915 2023-07-08 08:16:03.813926 aggnd 1175119865 R rec 0bee5695-77c3-4beb-990a-18a3c18e70a9 -2023-07-08 08:16:03.946083 2023-07-08 08:16:03.946089 aggnd 117520705 R rec 3054582e-cf21-4b16-be9f-448c5fd0bba1 -2023-07-08 08:16:04.057202 2023-07-08 08:16:04.057212 aggnd 1175431435 R rec bb1dd234-e868-4529-98e6-0fa0d22cfd42 -2023-07-08 08:16:04.197296 2023-07-08 08:16:04.197305 aggnd 117546720 R rec fd63378a-09ce-450b-a59a-d335a4c41492 -2023-07-08 08:16:04.3172 2023-07-08 08:16:04.317213 aggnd 1175643521 R rec 38c04f81-3a14-4d23-ad79-1d8117c94c7b -2023-07-08 08:16:04.439997 2023-07-08 08:16:04.440003 aggnd 1175653861 R rec d5d1b50d-81d2-4cab-b90d-1b5ae4da8f53 -2023-07-08 08:16:04.557929 2023-07-08 08:16:04.557943 aggnd 1176124900 R rec fd4060c0-f352-4aa2-b086-655dddcac2a7 -2023-07-08 08:16:04.65958 2023-07-08 08:16:04.659596 aggnd 1176442988 R rec 6417e02c-7deb-4501-9c1e-ea1498342457 -2023-07-08 08:16:04.762124 2023-07-08 08:16:04.762135 aggnd 117655570 R rec d445b7a0-a667-42dd-ac84-806ca3d2144c -2023-07-08 08:16:04.88727 2023-07-08 08:16:04.88728 aggnd 1176847597 R rec 258bf343-1702-4edb-80c9-57148f12f8ea -2023-07-08 08:16:05.01088 2023-07-08 08:16:05.010896 aggnd 117701408 R rec 9bd76082-011e-4ef0-9065-cf43a52cbc16 -2023-07-08 08:16:05.132438 2023-07-08 08:16:05.132456 aggnd 1177093979 R rec aae9147a-9c7f-4ed2-a4e1-c8c7184237ca -2023-07-08 08:16:05.249655 2023-07-08 08:16:05.249659 aggnd 117725293 R rec a0cd6c0a-816c-46e2-b1f8-ea3272946c22 -2023-07-08 08:16:05.392358 2023-07-08 08:16:05.392374 aggnd 1177904713 R rec fb0b351b-1d31-4245-8e8e-d50d02599cfe -2023-07-08 08:16:05.504297 2023-07-08 08:16:05.504313 aggnd 1178023370 R rec 2d9eff80-c977-4e93-a78c-4dbe7257be90 -2023-07-08 08:16:05.636515 2023-07-08 08:16:05.636558 aggnd 1178350002 R rec 9795a501-ccdf-4e2f-941a-0f1aaf19261a -2023-07-08 08:16:05.745986 2023-07-08 08:16:05.745998 aggnd 1178484009 R rec 5440630f-7f7a-44ff-9d3f-6711cbfc681e -2023-07-08 08:16:05.87005 2023-07-08 08:16:05.870062 aggnd 1178833925 R rec 8f48b727-3edb-4950-ad57-0b8053eeda15 -2023-07-08 08:16:06.009404 2023-07-08 08:16:06.009415 aggnd 1179197992 R rec 3370ff4f-0f42-4e0a-b3c1-3e47cf3e2dbf -2023-07-08 08:16:06.134113 2023-07-08 08:16:06.134128 aggnd 1179207440 R rec 38009a68-7666-410c-b0c9-aec60328cd87 -2023-07-08 08:16:06.241403 2023-07-08 08:16:06.241416 aggnd 117971041X R rec c5755a73-b509-4eeb-8d26-be9f757d3274 -2023-07-08 08:16:06.37096 2023-07-08 08:16:06.370972 aggnd 1179785266 R rec e8dc5465-6f63-4e09-a850-8db8bc5ad06d -2023-07-08 08:16:06.481231 2023-07-08 08:16:06.481244 aggnd 1180539567 R rec 8c3d0e44-a071-4daa-98ce-5be2b7d45382 -2023-07-08 08:16:06.57795 2023-07-08 08:16:06.577961 aggnd 118068544X R rec 6005170f-bcbf-49f3-a4f8-27727d67387f -2023-07-08 08:16:06.675207 2023-07-08 08:16:06.675219 aggnd 118108093 R rec 28a0990d-bc02-4ff4-ac9f-e83d5795050d -2023-07-08 08:16:06.783222 2023-07-08 08:16:06.783232 aggnd 1181153034 R rec 07655744-b398-4af3-b096-55f256979517 -2023-07-08 08:16:06.890236 2023-07-08 08:16:06.890252 aggnd 1182338917 R rec 94e73c99-3e27-4f7f-9864-e9e8133bfdf4 -2023-07-08 08:16:07.000058 2023-07-08 08:16:07.000071 aggnd 118247957X R rec 39f6c09b-d705-4637-b4cb-359154eba8fa -2023-07-08 08:16:07.119782 2023-07-08 08:16:07.119793 aggnd 1183057687 R rec 24dbcc8c-d994-455d-82b5-3987b0f04dda -2023-07-08 08:16:07.271036 2023-07-08 08:16:07.271054 aggnd 1183836740 R rec 3077372d-65a3-4b6d-bc3a-7815788e89ab -2023-07-08 08:16:07.384186 2023-07-08 08:16:07.384202 aggnd 1184599297 R rec b64799f8-4072-4a2b-a05e-4a7e1ecbea5c -2023-07-08 08:16:07.49206 2023-07-08 08:16:07.492072 aggnd 1185183302 R rec 66564ab2-0701-4d1b-a08c-48b54ecff0cc -2023-07-08 08:16:07.602364 2023-07-08 08:16:07.60238 aggnd 1185191275 R rec 938f95cc-b08b-430a-a0a0-ae4013294bcb -2023-07-08 08:16:07.718396 2023-07-08 08:16:07.718406 aggnd 118531867 R rec f57ff0f8-a749-48a2-b99f-4a43d5984cbc -2023-07-08 08:16:07.827727 2023-07-08 08:16:07.827742 aggnd 118544291X R rec 2e39b436-7c3d-46d5-bed6-dc544c2cea1b -2023-07-08 08:16:07.935343 2023-07-08 08:16:07.935354 aggnd 1185450025 R rec 2449d189-0fee-4d7a-a0b6-4d71807d3403 -2023-07-08 08:16:08.059751 2023-07-08 08:16:08.059764 aggnd 118553615 R rec d058932e-24a5-4d41-bcee-cc48ac6ed08b -2023-07-08 08:16:08.192451 2023-07-08 08:16:08.192462 aggnd 118561693 R rec 9ea546f2-4f6e-4b2e-acb6-a2b57b0a1cb5 -2023-07-08 08:16:08.315931 2023-07-08 08:16:08.315946 aggnd 1186072571 R rec 50083ed8-aa4e-4e0e-877d-0f70db5b7a5e -2023-07-08 08:16:08.429466 2023-07-08 08:16:08.429477 aggnd 118684264 R rec 28bb3ac6-0d9f-4587-8561-9180766c0ce0 -2023-07-08 08:16:08.534128 2023-07-08 08:16:08.534138 aggnd 1187151726 R rec fc3452f9-e3c8-4230-8cb1-43b953f510e3 -2023-07-08 08:16:08.660361 2023-07-08 08:16:08.660373 aggnd 118716328 R rec 24f79288-8f8c-4742-b897-998625bc6d58 -2023-07-08 08:16:08.76936 2023-07-08 08:16:08.769371 aggnd 1187368121 R rec ba3e3023-78b6-48e3-8acb-6d8d09aea955 -2023-07-08 08:16:08.931368 2023-07-08 08:16:08.931382 aggnd 1187537691 R rec f36dc50b-c4a2-4f17-9520-282f278426d4 -2023-07-08 08:16:09.032173 2023-07-08 08:16:09.032188 aggnd 1187670472 R rec 38c69509-7855-42f5-ba47-cfceb6d59984 -2023-07-08 08:16:09.131893 2023-07-08 08:16:09.131904 aggnd 1187679194 R rec dac32cff-169e-45da-85fc-260da9b13fd0 -2023-07-08 08:16:09.233941 2023-07-08 08:16:09.233953 aggnd 1187985945 R rec 63d059fd-6f8e-440d-b048-f8104f0396b7 -2023-07-08 08:16:09.333234 2023-07-08 08:16:09.333249 aggnd 118818805 R rec c188c620-a98c-4953-9d68-138289d6f05c -2023-07-08 08:16:09.438448 2023-07-08 08:16:09.43846 aggnd 118842218 R rec cc93dd6d-cbd4-4f13-a8e9-ec044582942d -2023-07-08 08:16:09.53871 2023-07-08 08:16:09.538726 aggnd 1188483552 R rec c23fe28f-5afa-4449-b9ea-d38994c08e6c -2023-07-08 08:16:09.661104 2023-07-08 08:16:09.661121 aggnd 1188583360 R rec 7c502edd-71e2-4d18-9b24-2ff5bdbfe840 -2023-07-08 08:16:09.799301 2023-07-08 08:16:09.799311 aggnd 118865900 R rec f92a1020-d296-4fb6-b833-1a20a2e98580 -2023-07-08 08:16:09.923865 2023-07-08 08:16:09.923877 aggnd 118873768 R rec 04c25657-a644-4b0d-af95-199d6580890f -2023-07-08 08:16:10.044498 2023-07-08 08:16:10.044512 aggnd 1188747894 R rec 33a45b86-ed74-4268-85e6-e8dc27fff111 -2023-07-08 08:16:10.169669 2023-07-08 08:16:10.16968 aggnd 118908642 R rec a06ffccf-0766-432f-a19e-3cab3f40c107 -2023-07-08 08:16:10.305478 2023-07-08 08:16:10.305485 aggnd 1189098970 R rec 5546b0d9-84b1-422f-a2de-b44623d03784 -2023-07-08 08:16:10.424019 2023-07-08 08:16:10.424029 aggnd 118914634 R rec d6e08adb-6e24-4382-a7e2-561affffdf3e -2023-07-08 08:16:10.54056 2023-07-08 08:16:10.540576 aggnd 1189274361 R rec 5f281eef-c69d-4316-bb38-42154f6f5bc8 -2023-07-08 08:16:10.658837 2023-07-08 08:16:10.65885 aggnd 118960032 R rec 6f2f1698-f90d-49d3-82c8-6668600052dd -2023-07-08 08:16:10.765913 2023-07-08 08:16:10.765925 aggnd 118960308X R rec 5b9cf338-0dc2-4930-8e6f-86d139533696 -2023-07-08 08:16:10.873613 2023-07-08 08:16:10.873628 aggnd 118995316 R rec c6e8d3a1-4c66-46ed-a108-1e963ceb336f -2023-07-08 08:16:10.997429 2023-07-08 08:16:10.997444 aggnd 1190043440 R rec 55c2ac81-28ea-400e-9bcb-5253f5b18a5d -2023-07-08 08:16:11.122788 2023-07-08 08:16:11.122799 aggnd 119007460 R rec 8cfeab83-a5c8-4d63-9ba3-84fd24f41c32 -2023-07-08 08:16:11.256075 2023-07-08 08:16:11.256088 aggnd 119009307 R rec 0a5c70d5-f5fc-4e56-930e-13730871541a -2023-07-08 08:16:11.369705 2023-07-08 08:16:11.36972 aggnd 1190205149 R rec 1563c130-f847-41fd-bec1-28c099291a8b -2023-07-08 08:16:11.483231 2023-07-08 08:16:11.483245 aggnd 119022826 R rec 163e0784-4f25-4262-99bf-86aced471153 -2023-07-08 08:16:11.612169 2023-07-08 08:16:11.612186 aggnd 1190386577 R rec e07d99ab-72cd-420d-aadd-c1f466746e8d -2023-07-08 08:16:11.737961 2023-07-08 08:16:11.737973 aggnd 1190392402 R rec dbd1f1de-7076-4a29-b665-53e096aec15d -2023-07-08 08:16:11.854225 2023-07-08 08:16:11.854237 aggnd 11904241X R rec 0bee26b0-7e03-4cdf-8b1c-3144e7431121 -2023-07-08 08:16:11.992711 2023-07-08 08:16:11.992727 aggnd 1190664518 R rec 029feac3-47e8-4e6d-a8ea-171bb2ee91d6 -2023-07-08 08:16:12.088858 2023-07-08 08:16:12.088867 aggnd 1190675692 R rec 92a7b676-8fc4-4389-b8e7-1e20789b830c -2023-07-08 08:16:12.211641 2023-07-08 08:16:12.211654 aggnd 119077671 R rec c36670b9-739d-4597-842c-3c9e1e1e2ffe -2023-07-08 08:16:12.333905 2023-07-08 08:16:12.333916 aggnd 1190845555 R rec f395fe3b-3637-4c65-9af1-87987465e620 -2023-07-08 08:16:12.457047 2023-07-08 08:16:12.457058 aggnd 1190905671 R rec 8e4aa8bb-452b-4627-87a4-eba6209a2e5a -2023-07-08 08:16:12.574484 2023-07-08 08:16:12.574494 aggnd 119090943X R rec 075b1e1b-55ee-4df8-8480-3dba1fc4dd6c -2023-07-08 08:16:12.690159 2023-07-08 08:16:12.690169 aggnd 119136228 R rec 065ebd88-baf0-42bf-8357-379be5e07092 -2023-07-08 08:16:12.803486 2023-07-08 08:16:12.803502 aggnd 119161796 R rec e2da9924-e224-474b-be8e-654cfef565d6 -2023-07-08 08:16:12.909801 2023-07-08 08:16:12.909816 aggnd 1191853187 R rec 45876b36-7a98-4dc2-89f4-ed42814d08c3 -2023-07-08 08:16:13.04199 2023-07-08 08:16:13.041995 aggnd 119219816 R rec 1a57dafa-ce17-4f09-bcdd-c3ebce758071 -2023-07-08 08:16:13.151906 2023-07-08 08:16:13.151918 aggnd 1192403959 R rec 6faabe2f-cc80-466b-9e4f-b3b55dbad4b3 -2023-07-08 08:16:13.281474 2023-07-08 08:16:13.281485 aggnd 1192518470 R rec 43889571-0df5-459e-a4d0-b9e2cec5ad59 -2023-07-08 08:16:13.397848 2023-07-08 08:16:13.397866 aggnd 1192950399 R rec effb20c4-3521-4a93-8f3c-e01dca6b9990 -2023-07-08 08:16:13.507576 2023-07-08 08:16:13.507592 aggnd 1193659566 R rec ded7746d-9e2c-4db3-8869-5525ef33c3bd -2023-07-08 08:16:13.631994 2023-07-08 08:16:13.632006 aggnd 1193660688 R rec 0a1f4738-6627-4e5f-b0ee-eee263d74ac5 -2023-07-08 08:16:13.763445 2023-07-08 08:16:13.763461 aggnd 1193684374 R rec 10769f4b-9805-42cb-8df9-db69f6fde0fe -2023-07-08 08:16:13.893017 2023-07-08 08:16:13.893035 aggnd 1193701163 R rec 75836595-1822-4254-9129-d9daa0a3fecb -2023-07-08 08:16:13.999183 2023-07-08 08:16:13.999195 aggnd 119380439 R rec d8bb5c91-dd20-41cb-9971-8594732a2f50 -2023-07-08 08:16:14.107047 2023-07-08 08:16:14.107058 aggnd 119411679 R rec 80f09329-9860-4457-b382-b9e16369bbfc -2023-07-08 08:16:14.229006 2023-07-08 08:16:14.22909 aggnd 1194409997 R rec eaae0fe0-65ff-4058-94ca-6f87ff88aae5 -2023-07-08 08:16:14.336216 2023-07-08 08:16:14.336227 aggnd 1194663192 R rec 1ec104f6-2c92-4f75-a26c-4956a306ec9e -2023-07-08 08:16:14.442951 2023-07-08 08:16:14.442962 aggnd 119499363 R rec 0995fbf2-f528-47c0-a8c4-751ba5e4c0a3 -2023-07-08 08:16:14.56032 2023-07-08 08:16:14.560336 aggnd 119508516 R rec 57d25378-99e7-43cd-9964-1ff112d1ec5b -2023-07-08 08:16:14.666466 2023-07-08 08:16:14.666481 aggnd 119537087 R rec 2024111b-41b5-41f0-b12f-f1cff91ddce3 -2023-07-08 08:16:14.768218 2023-07-08 08:16:14.76823 aggnd 119559382 R rec a296199c-907d-46fb-95e1-7ea13b72f379 -2023-07-08 08:16:14.871711 2023-07-08 08:16:14.871729 aggnd 1195806868 R rec d825ba80-2720-4aca-a56e-320ca64ee3c5 -2023-07-08 08:16:14.978801 2023-07-08 08:16:14.978812 aggnd 1196648964 R rec 0ba614f4-6737-41c0-98a8-1c93f6732cec -2023-07-08 08:16:15.089472 2023-07-08 08:16:15.089488 aggnd 119724952 R rec 63d524ea-5011-4e2b-99e1-a4bd80211363 -2023-07-08 08:16:15.209984 2023-07-08 08:16:15.209997 aggnd 1197312137 R rec a2f20e0a-b58d-40de-8102-ac3f1c62eaf5 -2023-07-08 08:16:15.322653 2023-07-08 08:16:15.322668 aggnd 1197337660 R rec 5abd28fb-87a0-43af-b08b-a830742ab5f7 -2023-07-08 08:16:15.435874 2023-07-08 08:16:15.43589 aggnd 1197621814 R rec dd10732d-bd29-4410-b1bf-ccd2f7f5a005 -2023-07-08 08:16:15.544469 2023-07-08 08:16:15.544479 aggnd 1197715096 R rec b0637b62-ee04-4580-b002-a9dd72eea796 -2023-07-08 08:16:15.651107 2023-07-08 08:16:15.651117 aggnd 11982387X R rec 75953671-6e16-4906-a438-0d59a8e92151 -2023-07-08 08:16:15.777435 2023-07-08 08:16:15.777446 aggnd 1198439084 R rec 463ba71b-7361-41ca-a8f1-9d1f4d6a0e72 -2023-07-08 08:16:15.905931 2023-07-08 08:16:15.90595 aggnd 11987251X R rec 48af3e94-6c6a-4c31-9e34-d158ed5735de -2023-07-08 08:16:16.032783 2023-07-08 08:16:16.032794 aggnd 1199119393 R rec 3d27d578-32be-4cb0-93e3-e4df71617ed4 -2023-07-08 08:16:16.15078 2023-07-08 08:16:16.15079 aggnd 1199276545 R rec 50bc92c2-88a2-4fd4-9709-35a61877556e -2023-07-08 08:16:16.25034 2023-07-08 08:16:16.250352 aggnd 1199967009 R rec 2d265c5a-0e6e-405a-98cd-eab37279d9db -2023-07-08 08:16:16.37053 2023-07-08 08:16:16.370544 aggnd 1200376331 R rec 07a2d2e5-2b45-4568-b501-dd62b0bcabd6 -2023-07-08 08:16:16.484093 2023-07-08 08:16:16.484105 aggnd 1200558375 R rec a9d2052f-79f9-4a6f-9b6e-28d47f97351d -2023-07-08 08:16:16.5885 2023-07-08 08:16:16.588511 aggnd 120095785 R rec aebb2a2b-8ff0-4c77-8bdd-8cba7ec6396c -2023-07-08 08:16:16.699156 2023-07-08 08:16:16.699167 aggnd 1201178835 R rec e6862599-e216-49ce-bf09-6b115aeee630 -2023-07-08 08:16:16.801701 2023-07-08 08:16:16.801715 aggnd 120175118 R rec 37509fe2-5c6f-43fe-bb97-2ee6e9172469 -2023-07-08 08:16:16.94363 2023-07-08 08:16:16.943636 aggnd 120175533 R rec 1ff672ae-4f56-453c-91df-5cf28ddf0b67 -2023-07-08 08:16:17.006614 2023-07-08 08:16:17.00662 aggnd 1201779243 R rec 1a8d1a1f-429f-437c-8932-12404f204bac -2023-07-08 08:16:17.07095 2023-07-08 08:16:17.070956 aggnd 1201917980 R rec 88cd77dd-9647-48a7-8bdf-6505aeba22f0 -2023-07-08 08:16:17.17153 2023-07-08 08:16:17.171544 aggnd 120249561 R rec 8aa242b3-68d4-4887-894e-c32da4c694cc -2023-07-08 08:16:17.288976 2023-07-08 08:16:17.288986 aggnd 120268081X R rec 25cb8c66-0366-4498-b08d-8925291fcd28 -2023-07-08 08:16:17.402673 2023-07-08 08:16:17.402683 aggnd 120284952 R rec 5468217c-cd17-42d9-b1f1-f54fd5518f97 -2023-07-08 08:16:17.501247 2023-07-08 08:16:17.501258 aggnd 1202884679 R rec 7ece1c42-4f2d-459d-941d-659f7a0d5754 -2023-07-08 08:16:17.595313 2023-07-08 08:16:17.595324 aggnd 120343525 R rec 80678245-4b8e-4d0e-bc0e-8ecc604d989a -2023-07-08 08:16:17.707028 2023-07-08 08:16:17.707038 aggnd 120355973 R rec 469d5078-c41a-466e-92bc-6a5f8f664dd6 -2023-07-08 08:16:17.804287 2023-07-08 08:16:17.804298 aggnd 1203576099 R rec 106895ce-f12c-44b1-a5e4-cbb0790e726d -2023-07-08 08:16:17.904017 2023-07-08 08:16:17.904028 aggnd 1203731949 R rec 6d6b9fbe-8ff6-4c39-8c2f-dd443563f130 -2023-07-08 08:16:18.017497 2023-07-08 08:16:18.01751 aggnd 1204063087 R rec 1f50714c-d3de-4f41-9f21-33a58d73890c -2023-07-08 08:16:18.130166 2023-07-08 08:16:18.130176 aggnd 1204462666 R rec e41b10a1-a86f-4861-a6a9-8aed3d5dd363 -2023-07-08 08:16:18.246826 2023-07-08 08:16:18.246837 aggnd 120473801 R rec 5fdeaccf-67d1-4ecf-b70d-ed76f1ce2e97 -2023-07-08 08:16:18.354243 2023-07-08 08:16:18.354253 aggnd 1204866740 R rec 3f2230d6-8863-439c-a66d-fe5bd7327073 -2023-07-08 08:16:18.452076 2023-07-08 08:16:18.452087 aggnd 1204875901 R rec 0ef6e8ab-e565-40ca-becd-72452dd8cfc0 -2023-07-08 08:16:18.552228 2023-07-08 08:16:18.55224 aggnd 120543125 R rec 5587183e-1caa-40ca-a70d-c815c243fc52 -2023-07-08 08:16:18.658808 2023-07-08 08:16:18.65882 aggnd 120554682 R rec ed684c51-dc3f-43a8-aed7-d5a8bf51ab6c -2023-07-08 08:16:18.767985 2023-07-08 08:16:18.767999 aggnd 1205764232 R rec 3b6ec578-00e8-422a-a05a-11a5a9ffcda1 -2023-07-08 08:16:18.892247 2023-07-08 08:16:18.89226 aggnd 1205836233 R rec 3b4184d7-157e-4378-b523-576629c59197 -2023-07-08 08:16:19.004494 2023-07-08 08:16:19.004505 aggnd 120596067 R rec 79a86282-1410-4898-844a-807d8dc6c492 -2023-07-08 08:16:19.112695 2023-07-08 08:16:19.112705 aggnd 1206199024 R rec 1db5f721-b790-4443-a3ad-66de30fc7cb5 -2023-07-08 08:16:19.216416 2023-07-08 08:16:19.216427 aggnd 1206214643 R rec e9625ce2-b85d-4c3c-88c3-a9d656420af8 -2023-07-08 08:16:19.319341 2023-07-08 08:16:19.319351 aggnd 1206297964 R rec 9c517fc7-85cf-4e8e-958d-76736191076f -2023-07-08 08:16:19.436601 2023-07-08 08:16:19.436613 aggnd 1206889632 R rec 6b61b250-bbe9-461f-88ae-05c5a03efd1b -2023-07-08 08:16:19.535223 2023-07-08 08:16:19.535236 aggnd 1206932619 R rec 4102eebc-4a2c-42b3-82a0-c886881e026d -2023-07-08 08:16:19.651922 2023-07-08 08:16:19.651934 aggnd 120704463 R rec ca34944d-452d-43d6-96d6-b462fe948e74 -2023-07-08 08:16:19.765716 2023-07-08 08:16:19.765727 aggnd 1207293849 R rec f8df2d94-8463-4b92-b0fc-61e7826b7748 -2023-07-08 08:16:19.880023 2023-07-08 08:16:19.880033 aggnd 1207338478 R rec d87af4ff-dd18-44cd-bc38-687ff3cc4e42 -2023-07-08 08:16:20.001811 2023-07-08 08:16:20.001822 aggnd 1207445045 R rec 118a4903-8093-4a11-915e-180049b890ff -2023-07-08 08:16:20.106147 2023-07-08 08:16:20.106158 aggnd 120824261X R rec 09b4108d-0a66-4538-8c64-f73cf9991afc -2023-07-08 08:16:20.212568 2023-07-08 08:16:20.212578 aggnd 1208406337 R rec a6f06e0d-ac51-4947-ac05-4c424bac39bb -2023-07-08 08:16:20.31171 2023-07-08 08:16:20.31172 aggnd 1208648632 R rec ad9ff471-bbd0-40ab-9037-5c724b570e3b -2023-07-08 08:16:20.408506 2023-07-08 08:16:20.408517 aggnd 1208728474 R rec 2b436f1c-14ec-4202-9cf7-122c00fa8c59 -2023-07-08 08:16:20.507719 2023-07-08 08:16:20.50773 aggnd 1208923765 R rec 5806c2b1-4f98-4b7c-ab0e-dbe0785ed9c0 -2023-07-08 08:16:20.618206 2023-07-08 08:16:20.618217 aggnd 1209087162 R rec 00ed4e04-f192-401a-ae6a-8969c02b75ea -2023-07-08 08:16:20.736233 2023-07-08 08:16:20.736245 aggnd 120917661 R rec a4524ab7-66cc-4dd5-9446-0e03afb610e3 -2023-07-08 08:16:20.855227 2023-07-08 08:16:20.855254 aggnd 1209584417 R rec c2403ef0-8f72-4f17-8609-cd5a46181b44 -2023-07-08 08:16:20.953193 2023-07-08 08:16:20.953204 aggnd 1209711753 R rec 69a71128-dcce-4ef8-8cb0-8f9210e88c59 -2023-07-08 08:16:21.063511 2023-07-08 08:16:21.063522 aggnd 1209907445 R rec 61def7f2-84d5-4e04-9430-8a55c28743e7 -2023-07-08 08:16:21.179596 2023-07-08 08:16:21.179606 aggnd 1209954184 R rec 92d781bd-d4b1-4acd-8046-401253cadf99 -2023-07-08 08:16:21.293848 2023-07-08 08:16:21.293859 aggnd 1209976218 R rec 31ef0ec6-0c8d-4707-bf27-ba4b44283048 -2023-07-08 08:16:21.393997 2023-07-08 08:16:21.394008 aggnd 121017206 R rec 32147a8b-a556-458e-90c3-c24108305a95 -2023-07-08 08:16:21.496569 2023-07-08 08:16:21.49658 aggnd 121042413 R rec 14ce4d0c-9317-4f7f-b529-b26b31b7da05 -2023-07-08 08:16:21.602273 2023-07-08 08:16:21.602285 aggnd 121068439 R rec a92ede33-4ef9-44f4-8f6c-6dbc30a93d81 -2023-07-08 08:16:21.703639 2023-07-08 08:16:21.703655 aggnd 1210872188 R rec 15d65b21-8ab2-4982-aa9a-754d8b41d3c8 -2023-07-08 08:16:21.820964 2023-07-08 08:16:21.820979 aggnd 1210955601 R rec 7c1b74e9-541f-4e3b-b6b6-85ccf5a0d1db -2023-07-08 08:16:21.94787 2023-07-08 08:16:21.947883 aggnd 1210962721 R rec 2a40a4db-15ff-45a7-9eb2-9751bcd3d43a -2023-07-08 08:16:22.08041 2023-07-08 08:16:22.080425 aggnd 1211035360 R rec fdc23cc0-b73d-4462-8bea-1f577749b6bb -2023-07-08 08:16:22.187073 2023-07-08 08:16:22.187091 aggnd 1211576035 R rec 8d52999e-aa17-4795-afca-08d39e10f914 -2023-07-08 08:16:22.330571 2023-07-08 08:16:22.330584 aggnd 121163393 R rec 613e784b-3e1e-48a7-8ff6-3b9da28d4d87 -2023-07-08 08:16:22.447813 2023-07-08 08:16:22.447824 aggnd 1211685918 R rec ea7c492f-277a-475e-b059-c42774d2c0b7 -2023-07-08 08:16:22.578857 2023-07-08 08:16:22.578869 aggnd 1211707628 R rec d89a18b2-fc66-44c7-970a-b74fc876632f -2023-07-08 08:16:22.722749 2023-07-08 08:16:22.722762 aggnd 1211767892 R rec 82228130-9958-4a47-bc5a-2422d2451621 -2023-07-08 08:16:22.849647 2023-07-08 08:16:22.849658 aggnd 1211775216 R rec b7506a01-b36f-4601-8052-365ab920ea5f -2023-07-08 08:16:23.028232 2023-07-08 08:16:23.028246 aggnd 1212074939 R rec e2b6dcca-faff-4c7d-a557-5de3764ff052 -2023-07-08 08:16:23.153769 2023-07-08 08:16:23.15378 aggnd 1212533003 R rec b8acd19f-33a1-421a-9eb3-5c12d85f4a2b -2023-07-08 08:16:23.27499 2023-07-08 08:16:23.274996 aggnd 1212537750 R rec f28f44da-d39d-462e-97ce-51862170b25d -2023-07-08 08:16:23.359588 2023-07-08 08:16:23.359596 aggnd 121259927 R rec 6cba5060-6b96-4220-9849-411c1237b68b -2023-07-08 08:16:23.427265 2023-07-08 08:16:23.42727 aggnd 1212602552 R rec 9beafae6-801e-4320-9169-e920c721f49c -2023-07-08 08:16:23.503054 2023-07-08 08:16:23.503064 aggnd 1213248760 R rec ce9a632d-ab98-4788-a764-45cb1e2da62c -2023-07-08 08:16:23.57142 2023-07-08 08:16:23.571426 aggnd 1213263360 R rec 5ed63d3f-b6cf-45dd-8efb-06a9ced0bef2 -2023-07-08 08:16:23.644516 2023-07-08 08:16:23.64453 aggnd 1213396700 R rec 6989bc60-ede9-4507-8cb7-bcf1bd52ca69 -2023-07-08 08:16:23.742783 2023-07-08 08:16:23.742789 aggnd 1213491738 R rec 0630d8b5-881d-4834-8126-7b8ab7d3ea5e -2023-07-08 08:16:23.833385 2023-07-08 08:16:23.833397 aggnd 121376621 R rec 65b71c38-ca56-40ef-a8c6-a8117a81d1aa -2023-07-08 08:16:23.940099 2023-07-08 08:16:23.940106 aggnd 121432467 R rec f142de6e-9f2c-4f2d-8de7-3116c61d46fd -2023-07-08 08:16:24.044455 2023-07-08 08:16:24.044466 aggnd 121455637 R rec 7ab0abc4-aed2-4a97-9594-88657e952e42 -2023-07-08 08:16:24.135763 2023-07-08 08:16:24.135777 aggnd 1215224869 R rec d7786a4b-cdec-4aac-963a-c95f1c1a2a69 -2023-07-08 08:16:24.235297 2023-07-08 08:16:24.235303 aggnd 1215239556 R rec bf978634-c47f-4654-bd59-0ed3c9911308 -2023-07-08 08:16:24.318964 2023-07-08 08:16:24.318979 aggnd 121552756 R rec c1303b07-7408-4d59-9469-26b33c71cb76 -2023-07-08 08:16:24.427739 2023-07-08 08:16:24.42775 aggnd 1215719418 R rec 24905009-dd3c-44de-9ff5-8f2932e32c12 -2023-07-08 08:16:24.515621 2023-07-08 08:16:24.515632 aggnd 1216057184 R rec 38e8132e-866f-4840-98e8-f9095bdb277b -2023-07-08 08:16:24.608841 2023-07-08 08:16:24.608848 aggnd 1216511039 R rec e67aa0aa-bff5-4c5a-931f-3c87913bdd43 -2023-07-08 08:16:24.7086 2023-07-08 08:16:24.708605 aggnd 12167410X R rec 0787ecc0-4375-4f47-a330-7dc1a376cad6 -2023-07-08 08:16:24.802587 2023-07-08 08:16:24.802598 aggnd 1217064974 R rec 5d9688dc-9422-4184-9d60-f4f72df75d72 -2023-07-08 08:16:24.907928 2023-07-08 08:16:24.907934 aggnd 121710696 R rec 7f8967d0-d580-40af-a3b9-f5714d619db8 -2023-07-08 08:16:25.015969 2023-07-08 08:16:25.015979 aggnd 12172249X R rec f0133e5e-2243-4380-a537-5ab68fcdc035 -2023-07-08 08:16:25.119088 2023-07-08 08:16:25.119099 aggnd 12173692X R rec 71925256-dc8b-49ea-b8aa-40e904d15882 -2023-07-08 08:16:25.212475 2023-07-08 08:16:25.21248 aggnd 1218087730 R rec 5a5754e6-9feb-47ef-a019-228b7d9bf524 -2023-07-08 08:16:25.311794 2023-07-08 08:16:25.311808 aggnd 1218379219 R rec 609d1bdb-5c7f-43c9-af4c-2d90177d95cb -2023-07-08 08:16:25.407763 2023-07-08 08:16:25.407772 aggnd 1218472189 R rec 45509d20-9966-4cb1-b58d-842e14e1278c -2023-07-08 08:16:25.499728 2023-07-08 08:16:25.499742 aggnd 121855775 R rec 90a935df-369e-4378-a6ef-581dee0c35aa -2023-07-08 08:16:25.592952 2023-07-08 08:16:25.592962 aggnd 1218603739 R rec 686076e0-b556-4543-84cd-31569989277d -2023-07-08 08:16:25.707589 2023-07-08 08:16:25.707594 aggnd 1218605995 R rec cc7e2967-88af-4f51-b1ce-3ec1634b41e7 -2023-07-08 08:16:25.808981 2023-07-08 08:16:25.808987 aggnd 1218696680 R rec 9ed22059-ec5f-4242-86eb-773e384ce80b -2023-07-08 08:16:25.908585 2023-07-08 08:16:25.908591 aggnd 1219001767 R rec 662684e5-c674-46e9-aa78-1a0f048ffddb -2023-07-08 08:16:26.008314 2023-07-08 08:16:26.008319 aggnd 1219020982 R rec d1fdcfc4-858f-4537-b52e-2dc3e16886cf -2023-07-08 08:16:26.103531 2023-07-08 08:16:26.103542 aggnd 121953823X R rec ae10cbe8-510f-4aca-a3fa-776b5c1791ee -2023-07-08 08:16:26.206031 2023-07-08 08:16:26.206036 aggnd 1219543527 R rec adc78b8f-6bb9-4434-aae1-fe9b96439c81 -2023-07-08 08:16:26.291316 2023-07-08 08:16:26.291322 aggnd 121978338 R rec 4aa6d3e1-5696-4a24-bcb3-fe3df4b69bc5 -2023-07-08 08:16:26.391026 2023-07-08 08:16:26.391033 aggnd 1219884790 R rec c16081e1-bdd4-4b79-8fa1-43ac3b608cb7 -2023-07-08 08:16:26.481327 2023-07-08 08:16:26.481339 aggnd 1219946478 R rec 35514310-3ea5-4be8-89d0-efa60862d04e -2023-07-08 08:16:26.572406 2023-07-08 08:16:26.572417 aggnd 1220523410 R rec f47a242b-4fb3-45f6-92d3-bd59accb200a -2023-07-08 08:16:26.669821 2023-07-08 08:16:26.669837 aggnd 1220778273 R rec 32f2af1a-6f8d-48f0-9fd6-365084b7200c -2023-07-08 08:16:26.767515 2023-07-08 08:16:26.767521 aggnd 1221205536 R rec 802ac8d8-c003-4984-9aa9-376b099832c7 -2023-07-08 08:16:26.859285 2023-07-08 08:16:26.859294 aggnd 1221416952 R rec 4f00bf4a-2324-43ae-ae87-43b3398395e9 -2023-07-08 08:16:26.9431 2023-07-08 08:16:26.943109 aggnd 1221561332 R rec 8bb26bbe-78f2-4c98-868e-eda18a09858e -2023-07-08 08:16:27.040615 2023-07-08 08:16:27.040621 aggnd 1221637401 R rec bf0174a1-41cf-4fb3-acb9-b6c39531c056 -2023-07-08 08:16:27.140752 2023-07-08 08:16:27.140758 aggnd 1221643304 R rec 3aae7543-e7f2-494b-917c-140c7e0f5a04 -2023-07-08 08:16:27.231573 2023-07-08 08:16:27.23158 aggnd 1221680293 R rec cf37fd68-5a60-4b47-902f-46e4ab933463 -2023-07-08 08:16:27.321416 2023-07-08 08:16:27.321426 aggnd 1221818635 R rec ef05f16f-ac39-4a69-833a-89fdb7722649 -2023-07-08 08:16:27.40864 2023-07-08 08:16:27.408646 aggnd 122214459X R rec 2face5d3-8f83-44e1-8251-80fbb1e1a40d -2023-07-08 08:16:27.514517 2023-07-08 08:16:27.514532 aggnd 122244958 R rec 749ec89c-aa74-4c67-a4bd-0770751892dd -2023-07-08 08:16:27.619884 2023-07-08 08:16:27.619903 aggnd 1222466716 R rec c5b5b338-3938-40ce-988f-069da8d26119 -2023-07-08 08:16:27.71492 2023-07-08 08:16:27.71493 aggnd 1222736330 R rec b56fd31e-11dc-4167-9f2f-bc7f22161130 -2023-07-08 08:16:27.807627 2023-07-08 08:16:27.807633 aggnd 122307364 R rec 109f5f77-124a-4bdf-941b-07d5eaab4c2b -2023-07-08 08:16:27.897583 2023-07-08 08:16:27.897594 aggnd 1223515273 R rec 6b1c8288-7070-4881-9dcb-3f76a1321bdd -2023-07-08 08:16:27.991986 2023-07-08 08:16:27.991991 aggnd 1223549372 R rec a20fe207-4fea-4d21-87d8-949e42867c28 -2023-07-08 08:16:28.082381 2023-07-08 08:16:28.082392 aggnd 122397274 R rec ff77bcdc-62d8-4c5c-adb6-ed93a88377d3 -2023-07-08 08:16:28.167375 2023-07-08 08:16:28.167381 aggnd 122416600 R rec 21fd55ed-97e7-45dc-ac40-a49b3708a1d6 -2023-07-08 08:16:28.262156 2023-07-08 08:16:28.262166 aggnd 1224690672 R rec 7e4f40ad-c04a-4622-88e1-3cb09a3f6461 -2023-07-08 08:16:28.343064 2023-07-08 08:16:28.343077 aggnd 1225165792 R rec 4ad5fd76-1a30-4a9e-b392-583e8261bdb4 -2023-07-08 08:16:28.438198 2023-07-08 08:16:28.438212 aggnd 1225314704 R rec 87c4e6d1-2961-4bfc-bcfc-050e4f991d83 -2023-07-08 08:16:28.5289 2023-07-08 08:16:28.528913 aggnd 1225318955 R rec 3cc2c8cd-63f6-4941-8129-3b97402ae668 -2023-07-08 08:16:28.620925 2023-07-08 08:16:28.62094 aggnd 1225369967 R rec 02dc99e8-ca1b-490d-8943-7e925689f1a0 -2023-07-08 08:16:28.71152 2023-07-08 08:16:28.711532 aggnd 1225371562 R rec 0ca4135a-b8d0-41f7-a9f7-d6c54942ac3e -2023-07-08 08:16:28.80733 2023-07-08 08:16:28.80734 aggnd 122546016 R rec 97cc8d55-fceb-4ef3-8793-04e1b24a8ecf -2023-07-08 08:16:28.90034 2023-07-08 08:16:28.900356 aggnd 1225499038 R rec d5abf0e8-78f2-422d-896a-d8e1e3772a44 -2023-07-08 08:16:29.012623 2023-07-08 08:16:29.012639 aggnd 1225750350 R rec 327ec1f1-b660-4ff4-8171-73d1c5589dcc -2023-07-08 08:16:29.134012 2023-07-08 08:16:29.134026 aggnd 1225880351 R rec d2c2b9da-d3d3-40e5-a3bb-1df986d71431 -2023-07-08 08:16:29.232163 2023-07-08 08:16:29.232169 aggnd 1226168973 R rec fd19cb87-a333-47a1-8c95-3b24b51e6845 -2023-07-08 08:16:29.317659 2023-07-08 08:16:29.31767 aggnd 1226343031 R rec 356aa7bd-7310-4e4b-a372-d5021078563b -2023-07-08 08:16:29.42635 2023-07-08 08:16:29.426356 aggnd 122765052 R rec e43ca9cb-cee6-4a91-aa13-85f0b87c2bac -2023-07-08 08:16:29.515798 2023-07-08 08:16:29.515813 aggnd 122787900 R rec fb9be1e2-643c-4c3a-9139-7e35185a92bb -2023-07-08 08:16:29.613428 2023-07-08 08:16:29.61344 aggnd 1228480222 R rec 4a9b2ebb-3f95-4a31-bb6e-8854f787c9e8 -2023-07-08 08:16:29.710836 2023-07-08 08:16:29.710851 aggnd 1228546541 R rec 3d9b36a5-7678-48c5-aebb-5d7d15b42cf0 -2023-07-08 08:16:29.820785 2023-07-08 08:16:29.820801 aggnd 1228854041 R rec 54e98a84-0dc8-46e9-9532-ba4a541bc874 -2023-07-08 08:16:29.9173 2023-07-08 08:16:29.917319 aggnd 1228866244 R rec 433f3f3e-07b8-4e4a-a6cb-3ccff6eaa946 -2023-07-08 08:16:30.028374 2023-07-08 08:16:30.028387 aggnd 122919455X R rec 2f7d15b2-279b-4c10-aaf6-d10a72c77d6e -2023-07-08 08:16:30.126241 2023-07-08 08:16:30.126247 aggnd 122987870X R rec 24e74d0a-4a02-4b11-9b5f-b5a670c507ff -2023-07-08 08:16:30.239133 2023-07-08 08:16:30.239139 aggnd 1230449663 R rec 8253c754-88f8-4d8e-897a-76344ddc56f2 -2023-07-08 08:16:30.318884 2023-07-08 08:16:30.318903 aggnd 1230581847 R rec 1ceada3b-52e9-4850-ba35-6d7acfd16fa2 -2023-07-08 08:16:30.418312 2023-07-08 08:16:30.418332 aggnd 1230588736 R rec 9c0408f1-3d73-473a-8756-26a21af34f86 -2023-07-08 08:16:30.515774 2023-07-08 08:16:30.515785 aggnd 1230589619 R rec f1d3aaf6-2643-426a-8d4f-5e7b8b8ff987 -2023-07-08 08:16:30.617447 2023-07-08 08:16:30.617459 aggnd 123090598 R rec 0d19b80f-b8b6-4b53-812e-5ee09226ff15 -2023-07-08 08:16:30.753268 2023-07-08 08:16:30.753281 aggnd 1231012749 R rec 94c977b2-0ec4-48b5-b57b-ed23fdbc7592 -2023-07-08 08:16:30.853251 2023-07-08 08:16:30.853263 aggnd 1231084758 R rec b3c827c2-7f3a-4af3-b1ef-0ec77790bd9c -2023-07-08 08:16:30.956503 2023-07-08 08:16:30.956508 aggnd 123171770X R rec 52d638ec-ce60-48ed-9bf4-50d1979fce78 -2023-07-08 08:16:31.05113 2023-07-08 08:16:31.05115 aggnd 1232328308 R rec 82750559-203c-4776-a71e-f4dcc9ef3731 -2023-07-08 08:16:31.155334 2023-07-08 08:16:31.155339 aggnd 1232437530 R rec c65c29c0-816e-49ab-9338-8ce6a8d2eb6c -2023-07-08 08:16:31.240839 2023-07-08 08:16:31.240844 aggnd 1232542377 R rec dad76645-d6eb-4892-9b7c-49154771f46f -2023-07-08 08:16:31.314815 2023-07-08 08:16:31.314821 aggnd 123269021X R rec 4cf91a61-280b-4a58-8dcb-e286d76171ac -2023-07-08 08:16:31.412186 2023-07-08 08:16:31.412201 aggnd 123314348 R rec 48b414e9-b0f6-4de8-be2b-46f61045508a -2023-07-08 08:16:31.508715 2023-07-08 08:16:31.50872 aggnd 1233766767 R rec 5e716924-9a2c-4916-80c3-a62574a3716c -2023-07-08 08:16:31.597989 2023-07-08 08:16:31.598002 aggnd 1233797700 R rec 834ee624-c446-484c-a8b7-f423a5abca62 -2023-07-08 08:16:31.691232 2023-07-08 08:16:31.691239 aggnd 1234157845 R rec 98aea9da-c934-4704-ada8-7592503c35fb -2023-07-08 08:16:31.78078 2023-07-08 08:16:31.780786 aggnd 1234276402 R rec 6f001e2b-86c8-489a-a327-822e522d14c6 -2023-07-08 08:16:31.860691 2023-07-08 08:16:31.860698 aggnd 1234416433 R rec c57c1ed0-f223-4d98-bf99-5a3e084f140b -2023-07-08 08:16:31.950245 2023-07-08 08:16:31.950254 aggnd 123444578 R rec 4005adb0-6ba4-454a-b011-c3fa413074c9 -2023-07-08 08:16:32.050781 2023-07-08 08:16:32.050791 aggnd 1235024172 R rec 4f711035-b505-4c68-bf6a-3879e85e466a -2023-07-08 08:16:32.154312 2023-07-08 08:16:32.154323 aggnd 1235035301 R rec 936a93dd-0724-48c9-8c53-fd2879b9a9ce -2023-07-08 08:16:32.255251 2023-07-08 08:16:32.255256 aggnd 123508193 R rec b7c06116-935f-43f3-8ad1-5b5c5e729816 -2023-07-08 08:16:32.363925 2023-07-08 08:16:32.363935 aggnd 123522315 R rec 3e38e61d-0ed5-4592-8f63-fd0041a99473 -2023-07-08 08:16:32.463537 2023-07-08 08:16:32.463553 aggnd 1235577384 R rec 15a8e0d6-8307-4681-97a6-c1851ee63637 -2023-07-08 08:16:32.556788 2023-07-08 08:16:32.556793 aggnd 123572817X R rec acd92317-3403-41ea-ad8d-4216ede1cf2d -2023-07-08 08:16:32.642713 2023-07-08 08:16:32.642719 aggnd 1235805395 R rec 980f981d-059c-46e9-b8c5-3d8f437a8bb5 -2023-07-08 08:16:32.736883 2023-07-08 08:16:32.737116 aggnd 1235864014 R rec 1195cca2-96d2-48e0-88d5-a3b348a3ae95 -2023-07-08 08:16:32.81232 2023-07-08 08:16:32.812331 aggnd 1236151380 R rec b2910499-0204-4ea0-a889-5f2ea7cf38b5 -2023-07-08 08:16:32.906584 2023-07-08 08:16:32.906589 aggnd 123617286 R rec 8702d2ce-478d-4cd0-a3b9-1bf41c992f02 -2023-07-08 08:16:33.009584 2023-07-08 08:16:33.00959 aggnd 123644372 R rec 462c212f-6e61-40e1-9687-d55d8f46ea07 -2023-07-08 08:16:33.102097 2023-07-08 08:16:33.102108 aggnd 1236649613 R rec cd1ae668-4563-4426-84da-9e32d1d69dbe -2023-07-08 08:16:33.197283 2023-07-08 08:16:33.197288 aggnd 123686719X R rec 872812c1-edcb-4d5d-92cb-92cb7b3d37a9 -2023-07-08 08:16:33.279469 2023-07-08 08:16:33.279475 aggnd 1236915291 R rec eed0012c-6ada-4eee-bada-e3293599de93 -2023-07-08 08:16:33.358135 2023-07-08 08:16:33.35814 aggnd 1237119766 R rec 3c58f5ae-fb95-461e-b1a1-4dc4a6f83682 -2023-07-08 08:16:33.439916 2023-07-08 08:16:33.439921 aggnd 123718376 R rec f81bf189-9d58-4fa0-8847-ac6147c2e916 -2023-07-08 08:16:33.516028 2023-07-08 08:16:33.516044 aggnd 1237506611 R rec d2111e4d-bd51-45af-90bd-507ecd58c5f3 -2023-07-08 08:16:33.619418 2023-07-08 08:16:33.61943 aggnd 123768624 R rec a3f9aa28-5e68-48c7-b81a-9f79126694dc -2023-07-08 08:16:33.7128 2023-07-08 08:16:33.712815 aggnd 1238037844 R rec 2914cf71-eb6f-4dd7-8cd8-04dfebc31363 -2023-07-08 08:16:33.819841 2023-07-08 08:16:33.819854 aggnd 1238039944 R rec f78ff166-8f48-4e0d-8159-03e8cc52701d -2023-07-08 08:16:33.939731 2023-07-08 08:16:33.939741 aggnd 123806305 R rec dcf61b6b-5d32-4a00-93ed-313abb2148e8 -2023-07-08 08:16:34.045562 2023-07-08 08:16:34.045572 aggnd 1238167659 R rec 18f0c6f9-8625-437c-ba72-29b6e313625b -2023-07-08 08:16:34.142613 2023-07-08 08:16:34.142623 aggnd 1239691408 R rec e25b3883-be1f-4e5b-af00-685cd18ebde0 -2023-07-08 08:16:34.238255 2023-07-08 08:16:34.238263 aggnd 1240158319 R rec 1dab3bb1-a9ac-48fd-a404-cb2ace1f8066 -2023-07-08 08:16:34.317265 2023-07-08 08:16:34.317281 aggnd 124025064 R rec c1dc1738-2353-48dc-a21c-709ed006b1a0 -2023-07-08 08:16:34.413761 2023-07-08 08:16:34.413772 aggnd 12402890X R rec 3ec256dc-7ac1-4f42-a480-c6db37da385f -2023-07-08 08:16:34.515479 2023-07-08 08:16:34.51549 aggnd 1240323492 R rec 8c05856b-68b8-4685-9872-cfd7389cb996 -2023-07-08 08:16:34.608901 2023-07-08 08:16:34.608906 aggnd 1240334206 R rec 4982717b-4417-49fa-b09d-02fcffa2b7cc -2023-07-08 08:16:34.709485 2023-07-08 08:16:34.709492 aggnd 124045790 R rec bf10491d-ba9f-4dc7-9004-f10f8cd3088a -2023-07-08 08:16:34.798913 2023-07-08 08:16:34.798925 aggnd 1240634323 R rec dfa23155-d67c-41c5-8cea-c6705d42b62c -2023-07-08 08:16:34.888491 2023-07-08 08:16:34.888501 aggnd 1240922175 R rec 3b1cc593-88f1-4a57-bb87-a8585c9d428f -2023-07-08 08:16:34.979135 2023-07-08 08:16:34.979146 aggnd 1241124949 R rec 15853dd4-f01c-4442-ae2f-10fb4298f779 -2023-07-08 08:16:35.072439 2023-07-08 08:16:35.07245 aggnd 1241190755 R rec c19ced50-70e2-4a6d-b50d-8dbbf1406cdd -2023-07-08 08:16:35.174942 2023-07-08 08:16:35.174948 aggnd 1241191921 R rec ffaaf84c-034d-4ff3-92fb-c12ceb80a488 -2023-07-08 08:16:35.273788 2023-07-08 08:16:35.273795 aggnd 1241199418 R rec ae18a2ac-8fa6-4856-b9b0-c409e87afdf5 -2023-07-08 08:16:35.362032 2023-07-08 08:16:35.362043 aggnd 1242496343 R rec 00bed35c-b9aa-4025-856f-fddb7761657d -2023-07-08 08:16:35.459201 2023-07-08 08:16:35.459208 aggnd 124250076 R rec 1240ac15-7034-49f9-b25a-eef86243fdb5 -2023-07-08 08:16:35.546109 2023-07-08 08:16:35.546119 aggnd 124257070 R rec df43d82a-29be-4ea9-bcad-b4a079d3caa4 -2023-07-08 08:16:35.636894 2023-07-08 08:16:35.636905 aggnd 124257151 R rec f62b70b1-0321-4756-a52b-78d2f4e18eed -2023-07-08 08:16:35.747618 2023-07-08 08:16:35.74763 aggnd 124268512X R rec 6ae48acd-55ab-4769-86b8-12e7846f6ffe -2023-07-08 08:16:35.831363 2023-07-08 08:16:35.831374 aggnd 124271057 R rec 089966f0-c3e9-467f-b16b-a77f527b6213 -2023-07-08 08:16:35.927623 2023-07-08 08:16:35.927629 aggnd 124284299 R rec 4e0842d4-6b5d-47c1-9975-2923f28da075 -2023-07-08 08:16:36.02157 2023-07-08 08:16:36.021581 aggnd 1243013648 R rec 6bad30c4-d5ab-422f-a956-1037fdb3ce18 -2023-07-08 08:16:36.146105 2023-07-08 08:16:36.146116 aggnd 124311861X R rec 125e1f48-434f-45ee-b994-e1de5f8f325b -2023-07-08 08:16:36.238862 2023-07-08 08:16:36.238867 aggnd 124326764X R rec 45569ebc-e77d-4e6e-aef9-30d9c85ac327 -2023-07-08 08:16:36.315159 2023-07-08 08:16:36.315172 aggnd 124384196 R rec b0817366-fca0-484a-b4d6-38adcb4d4ce7 -2023-07-08 08:16:36.426554 2023-07-08 08:16:36.42656 aggnd 1243856505 R rec f7ec81fe-062d-4c4d-a5b9-9217d8f3b54d -2023-07-08 08:16:36.512178 2023-07-08 08:16:36.512191 aggnd 12438644X R rec 2d6153a2-283b-4ef1-a3a2-cfe44b4132cd -2023-07-08 08:16:36.600599 2023-07-08 08:16:36.600617 aggnd 1243882166 R rec 51e2e537-6663-4ac0-9fab-9ec763935c02 -2023-07-08 08:16:36.694771 2023-07-08 08:16:36.694783 aggnd 1243929332 R rec 8493cbcc-b95a-4c30-8674-a3c54fe379bb -2023-07-08 08:16:36.788413 2023-07-08 08:16:36.788417 aggnd 1243929464 R rec 2bf4cb1c-8828-480f-8083-c810aca035e0 -2023-07-08 08:16:36.882349 2023-07-08 08:16:36.882362 aggnd 1243973145 R rec 7b82bbf5-0cbd-4e8e-85fd-a73510cd148d -2023-07-08 08:16:36.986269 2023-07-08 08:16:36.98628 aggnd 1244179469 R rec 420fd64e-900f-4c6e-bfe4-da85e578c935 -2023-07-08 08:16:37.080778 2023-07-08 08:16:37.08079 aggnd 124423256 R rec fc61d2b1-c853-4e4e-bd35-20a5de451873 -2023-07-08 08:16:37.165669 2023-07-08 08:16:37.165674 aggnd 124457711 R rec 24cdd3fc-fc17-47de-866a-9d0c15101204 -2023-07-08 08:16:37.265862 2023-07-08 08:16:37.265873 aggnd 1244880027 R rec 798ee834-b916-48ee-91a2-fbfc35efa352 -2023-07-08 08:16:37.37708 2023-07-08 08:16:37.377086 aggnd 1245339214 R rec e7f22000-5108-4c51-9513-aa1a572cb9ad -2023-07-08 08:16:37.47101 2023-07-08 08:16:37.471025 aggnd 1245458760 R rec 4b252f4f-9078-48c4-9f37-41af6e71bd3a -2023-07-08 08:16:37.57458 2023-07-08 08:16:37.574586 aggnd 124566025X R rec 24737a00-adc2-49c8-a168-bda59e96020e -2023-07-08 08:16:37.667715 2023-07-08 08:16:37.667731 aggnd 124603106 R rec 8900369a-0eed-4f21-890e-14ebdaa49017 -2023-07-08 08:16:37.770839 2023-07-08 08:16:37.770849 aggnd 1246058642 R rec 71988645-7e84-479a-b7bb-073f6ab04eb9 -2023-07-08 08:16:37.84767 2023-07-08 08:16:37.847681 aggnd 124686583 R rec c6eb2081-e7dd-411e-a915-d6d47b192e46 -2023-07-08 08:16:37.940191 2023-07-08 08:16:37.940202 aggnd 124691560X R rec 1a000806-2457-403f-b008-b184c60b7483 -2023-07-08 08:16:38.041974 2023-07-08 08:16:38.041981 aggnd 124715311 R rec 23c31492-b95d-4037-b464-ed14ea6af385 -2023-07-08 08:16:38.161193 2023-07-08 08:16:38.161201 aggnd 124717764 R rec d5cdc0af-ad4d-46e3-83c9-252a2b8b28e2 -2023-07-08 08:16:38.252951 2023-07-08 08:16:38.252962 aggnd 1247579077 R rec 28e14274-3509-4c35-814c-39c7bfed7387 -2023-07-08 08:16:38.342352 2023-07-08 08:16:38.342357 aggnd 1248663217 R rec 3de9a723-7ffc-4e85-9db7-9d30fb54f930 -2023-07-08 08:16:38.428103 2023-07-08 08:16:38.428114 aggnd 1248783271 R rec 791a80ca-f38d-44b0-9297-26d199a33437 -2023-07-08 08:16:38.519791 2023-07-08 08:16:38.519806 aggnd 124922511 R rec 5ec8d026-f0f1-44d1-a578-3e8efb11bfec -2023-07-08 08:16:38.607079 2023-07-08 08:16:38.607087 aggnd 1249513502 R rec a63bf535-d63d-4062-b90b-374036eefb8c -2023-07-08 08:16:38.692818 2023-07-08 08:16:38.692823 aggnd 124962793 R rec 86ff7de5-be99-4007-ae5b-88f223fdeee1 -2023-07-08 08:16:38.761339 2023-07-08 08:16:38.761349 aggnd 124969178 R rec fc3a6483-2393-4391-8f15-453056f2bcac -2023-07-08 08:16:38.840714 2023-07-08 08:16:38.840719 aggnd 1249776090 R rec 1b852568-ecc0-407e-aec0-a6e3a77a179e -2023-07-08 08:16:38.949184 2023-07-08 08:16:38.949199 aggnd 1249789494 R rec b69c28e0-ad2c-488b-aad1-5ce41d560d94 -2023-07-08 08:16:39.04385 2023-07-08 08:16:39.043856 aggnd 1249795362 R rec 965678c5-03ba-498c-8372-1bc252d70959 -2023-07-08 08:16:39.131043 2023-07-08 08:16:39.131054 aggnd 124995136 R rec c5ca5775-8be7-40bb-819e-95301e6d465f -2023-07-08 08:16:39.227391 2023-07-08 08:16:39.227398 aggnd 125013981 R rec ce6f2d03-3f91-4f2a-8351-0ecf9ac73c02 -2023-07-08 08:16:39.310238 2023-07-08 08:16:39.310253 aggnd 1250280184 R rec f9d7c1f2-22a8-4c4a-b7ea-81069f14d322 -2023-07-08 08:16:39.407826 2023-07-08 08:16:39.407835 aggnd 125037988 R rec b89a2e15-6153-41ec-8145-08ce285c33fa -2023-07-08 08:16:39.513422 2023-07-08 08:16:39.513433 aggnd 125077683X R rec 3e6762bf-8e50-40a6-98d9-cc5fc00adab8 -2023-07-08 08:16:39.609539 2023-07-08 08:16:39.609546 aggnd 125085685X R rec 66a858b7-7a4d-4117-8a6a-37202871b303 -2023-07-08 08:16:39.695054 2023-07-08 08:16:39.69506 aggnd 1251284507 R rec b9e9b79f-4caf-4ae1-9236-559ca383d7bd -2023-07-08 08:16:39.795235 2023-07-08 08:16:39.79524 aggnd 125158103X R rec 066e2332-8c5e-4b06-bd20-e470865668d9 -2023-07-08 08:16:39.881461 2023-07-08 08:16:39.881473 aggnd 125190419X R rec 0d6c3f9f-0566-4c1f-af61-f11ee581d2e1 -2023-07-08 08:16:39.969547 2023-07-08 08:16:39.969563 aggnd 125224524 R rec 06f24711-d978-4e75-a882-3dcf6dde9878 -2023-07-08 08:16:40.062423 2023-07-08 08:16:40.062433 aggnd 1252339607 R rec c2012a60-05bd-4acc-af03-94943f6a9edd -2023-07-08 08:16:40.168988 2023-07-08 08:16:40.168993 aggnd 1253016488 R rec 23643b19-5cda-40f6-b701-9e458edfde1f -2023-07-08 08:16:40.259648 2023-07-08 08:16:40.259658 aggnd 1253049424 R rec 65a3f32b-a191-4625-b9f3-9d5b08a75619 -2023-07-08 08:16:40.340135 2023-07-08 08:16:40.340146 aggnd 1253317887 R rec ead7120d-f8aa-46c4-a081-934e0a2bb625 -2023-07-08 08:16:40.439684 2023-07-08 08:16:40.439689 aggnd 12533396X R rec 228c964f-7b67-4416-8de8-c87b85b981db -2023-07-08 08:16:40.533684 2023-07-08 08:16:40.533695 aggnd 1253803536 R rec 94c78aa2-e98f-4a35-b9ce-87f9badf4d9e -2023-07-08 08:16:40.632644 2023-07-08 08:16:40.632655 aggnd 1253954518 R rec 210c48ac-d901-4cec-adae-87b5bbb274d6 -2023-07-08 08:16:40.741488 2023-07-08 08:16:40.741494 aggnd 125407466X R rec 98d7dad3-5f17-4f0a-a72b-973ad8fdc91c -2023-07-08 08:16:40.821377 2023-07-08 08:16:40.821391 aggnd 125448554 R rec 479158e1-d2d3-4121-8201-abb060678326 -2023-07-08 08:16:40.924543 2023-07-08 08:16:40.92455 aggnd 1254513582 R rec d8b5cf5e-dd2d-447c-a901-631173f2b93c -2023-07-08 08:16:41.030762 2023-07-08 08:16:41.030768 aggnd 1254551980 R rec 56bcf332-880e-43bc-81f8-afa43850ac79 -2023-07-08 08:16:41.120706 2023-07-08 08:16:41.120722 aggnd 1254730559 R rec f5e9a831-25fb-4ed0-b231-8d4b9e423dc4 -2023-07-08 08:16:41.208539 2023-07-08 08:16:41.208545 aggnd 125522732X R rec 7332138e-7611-4920-8e36-1242290133ee -2023-07-08 08:16:41.287208 2023-07-08 08:16:41.287215 aggnd 1255253967 R rec 0334219d-6e55-4f71-90a9-47eabdb127aa -2023-07-08 08:16:41.389909 2023-07-08 08:16:41.389914 aggnd 125525869 R rec 832d1b5a-26d0-4dde-9bf4-7467b03d232c -2023-07-08 08:16:41.474056 2023-07-08 08:16:41.47406 aggnd 125527683 R rec 9f004e9b-84fd-42c3-b13d-750aee85627f -2023-07-08 08:16:41.558868 2023-07-08 08:16:41.558874 aggnd 1256298980 R rec 6a1c14f9-d853-43bd-90d8-7f1eb56c1868 -2023-07-08 08:16:41.658213 2023-07-08 08:16:41.65822 aggnd 1256639974 R rec 8b0b1dc4-121a-4f01-9d2c-2b1068a77516 -2023-07-08 08:16:41.749004 2023-07-08 08:16:41.749015 aggnd 125675658X R rec 94862cad-313e-4ef6-8f7b-1d772fb53ab3 -2023-07-08 08:16:41.831811 2023-07-08 08:16:41.831823 aggnd 1257269704 R rec c6f64f7d-7761-4123-8b04-1704809275c1 -2023-07-08 08:16:41.926459 2023-07-08 08:16:41.926465 aggnd 1257796259 R rec c3cb7b54-d000-41c0-8246-ceb449386514 -2023-07-08 08:16:42.010836 2023-07-08 08:16:42.010847 aggnd 1257837826 R rec 44df1457-7fd5-4ac5-a31b-0330f115342b -2023-07-08 08:16:42.109508 2023-07-08 08:16:42.109513 aggnd 1257931253 R rec 974fa2dc-a7d4-4f00-8b5a-89bddb73c92b -2023-07-08 08:16:42.206896 2023-07-08 08:16:42.206901 aggnd 1258741997 R rec 6daacd5a-c387-4615-a2f4-4ae4b29b26a8 -2023-07-08 08:16:42.291876 2023-07-08 08:16:42.291882 aggnd 1258782901 R rec 0e873f42-71c8-4d9e-a937-5f64d3c85800 -2023-07-08 08:16:42.410348 2023-07-08 08:16:42.410359 aggnd 1258808196 R rec 121df6b4-3077-4492-a5ab-b7a415f2871f -2023-07-08 08:16:42.491947 2023-07-08 08:16:42.491951 aggnd 125881336X R rec d5489079-e0c8-4e47-a375-123bec75dbe0 -2023-07-08 08:16:42.579207 2023-07-08 08:16:42.579223 aggnd 125904568 R rec 719544ce-9d4a-4ddf-a048-b98aa61550ca -2023-07-08 08:16:42.67307 2023-07-08 08:16:42.673075 aggnd 1259359026 R rec dde7d70a-90f5-42df-a897-9d69b7e451c3 -2023-07-08 08:16:42.75952 2023-07-08 08:16:42.759525 aggnd 1259480860 R rec d17ec393-b000-46dc-9552-09cfd873f2fb -2023-07-08 08:16:42.841668 2023-07-08 08:16:42.841673 aggnd 1259906620 R rec ad51dba7-56f7-4682-a3c7-12196d5ec90e -2023-07-08 08:16:42.935463 2023-07-08 08:16:42.935474 aggnd 1260402541 R rec d462df8a-37ad-4327-8ea3-483c091d7bef -2023-07-08 08:16:43.028457 2023-07-08 08:16:43.028468 aggnd 126093148 R rec 3c34d034-2e17-4bd6-9c0c-694c4f2f406d -2023-07-08 08:16:43.125163 2023-07-08 08:16:43.12517 aggnd 126098190 R rec 1b520923-fabb-4b74-846f-f737b3375532 -2023-07-08 08:16:43.22833 2023-07-08 08:16:43.228335 aggnd 1260994147 R rec 2315e92b-4a17-4258-b114-832d60f5c078 -2023-07-08 08:16:43.312959 2023-07-08 08:16:43.31297 aggnd 1261058550 R rec 0b7e1882-9202-44e7-93c7-914ae2b78193 -2023-07-08 08:16:43.421978 2023-07-08 08:16:43.421992 aggnd 1261260147 R rec 3f303b92-4f20-4729-b72c-c2e832364248 -2023-07-08 08:16:43.515281 2023-07-08 08:16:43.5153 aggnd 1261307364 R rec 0e705a51-0ef5-4833-8c32-9c9778d17cda -2023-07-08 08:16:43.613575 2023-07-08 08:16:43.61359 aggnd 126144060 R rec 5cfa65ae-0493-455f-8585-a56504ed2c1d -2023-07-08 08:16:43.70666 2023-07-08 08:16:43.706787 aggnd 1261766156 R rec fa0fd88b-b183-4d63-91c5-9bfc4d5b49a6 -2023-07-08 08:16:43.807038 2023-07-08 08:16:43.807045 aggnd 1261941136 R rec 2e9e0baf-ba20-4b5e-abb4-35202a1f2638 -2023-07-08 08:16:43.906434 2023-07-08 08:16:43.90644 aggnd 1262106486 R rec fa249f0e-6365-405a-bf89-3b000b82b0ea -2023-07-08 08:16:44.009081 2023-07-08 08:16:44.009087 aggnd 126221804 R rec 86f9600f-ced8-4fa5-a2da-08b5129f8cce -2023-07-08 08:16:44.100485 2023-07-08 08:16:44.100496 aggnd 1262395305 R rec 15cebd09-32a6-423f-b122-1c393e9c793a -2023-07-08 08:16:44.191488 2023-07-08 08:16:44.191493 aggnd 1262411238 R rec 3907519b-5158-4d51-9ced-668bcae69ad2 -2023-07-08 08:16:44.275968 2023-07-08 08:16:44.275974 aggnd 1262517281 R rec a4f37bd6-5577-4f41-83ba-7e5051b40194 -2023-07-08 08:16:44.349839 2023-07-08 08:16:44.349855 aggnd 12625639X R rec 4c453aed-4cc6-4633-8897-f4fc45ac803a -2023-07-08 08:16:44.441041 2023-07-08 08:16:44.441047 aggnd 1262993016 R rec 806ed744-69d9-4299-a33b-72ed9a5bb5ce -2023-07-08 08:16:44.536516 2023-07-08 08:16:44.536527 aggnd 1263532683 R rec aa36bf15-a395-4db7-8ccb-021da4a69dcb -2023-07-08 08:16:44.640176 2023-07-08 08:16:44.640182 aggnd 1264061994 R rec dc33744f-ea5d-471d-ad68-ca01b2264ac8 -2023-07-08 08:16:44.730318 2023-07-08 08:16:44.730328 aggnd 1264067003 R rec ee3b49f1-c927-4309-988c-cddb9db82054 -2023-07-08 08:16:44.827352 2023-07-08 08:16:44.827359 aggnd 126431582 R rec 81f0eb05-c324-456b-862e-43bcd296a0da -2023-07-08 08:16:44.924652 2023-07-08 08:16:44.924658 aggnd 1265029369 R rec 8719fbfa-aa08-40b0-a60f-8ad8e1154d31 -2023-07-08 08:16:45.022155 2023-07-08 08:16:45.02216 aggnd 126590249 R rec 069d35f6-be4f-4306-87d5-10fb318bd4de -2023-07-08 08:16:45.117924 2023-07-08 08:16:45.117934 aggnd 126645590 R rec 0fff434b-d4a5-44d4-ab0d-3cf05dc2035e -2023-07-08 08:16:45.217413 2023-07-08 08:16:45.217418 aggnd 126652902 R rec 92cfc291-5267-48a6-bd29-b446df76e30e -2023-07-08 08:16:45.304933 2023-07-08 08:16:45.304938 aggnd 127018360 R rec a29442de-9e31-4e68-9837-ed465b6b56ba -2023-07-08 08:16:45.393077 2023-07-08 08:16:45.393082 aggnd 127202048 R rec 31ac590a-06db-4aec-b760-0228f9ba03a1 -2023-07-08 08:16:45.481614 2023-07-08 08:16:45.481627 aggnd 127205233 R rec b3f16126-f014-4d1e-8dcd-b7ea4a755e36 -2023-07-08 08:16:45.581299 2023-07-08 08:16:45.58131 aggnd 127283447 R rec 210be2f2-0b28-47fd-b6a8-cfab00380a47 -2023-07-08 08:16:45.693507 2023-07-08 08:16:45.693519 aggnd 127307427 R rec a496d539-2fe7-45cc-9b0f-cb73229433a7 -2023-07-08 08:16:45.793855 2023-07-08 08:16:45.793861 aggnd 127398538 R rec 5db1a731-eec6-4a98-bff2-9c553a723f46 -2023-07-08 08:16:45.872767 2023-07-08 08:16:45.87278 aggnd 12742508X R rec 6f045b95-8075-4bac-ba51-37c4f4e397d8 -2023-07-08 08:16:45.963461 2023-07-08 08:16:45.963472 aggnd 127496491 R rec 2e372b20-920b-4c06-ac60-7167dac3900d -2023-07-08 08:16:46.052145 2023-07-08 08:16:46.052157 aggnd 127707255 R rec d11bb334-bb44-485a-8d1f-f69e48129364 -2023-07-08 08:16:46.146678 2023-07-08 08:16:46.146693 aggnd 12771961X R rec e67ccc7c-5ffc-4103-902a-f596475548bf -2023-07-08 08:16:46.242296 2023-07-08 08:16:46.242301 aggnd 127772553 R rec 10ccbdcc-9121-4d67-99cc-b8f919420aa9 -2023-07-08 08:16:46.32221 2023-07-08 08:16:46.322214 aggnd 127836160 R rec 03913fe4-896d-4468-b89b-b8d6974e444b -2023-07-08 08:16:46.411402 2023-07-08 08:16:46.411417 aggnd 127845925 R rec 15ca60b7-45cd-4a15-8b26-49d445448264 -2023-07-08 08:16:46.517275 2023-07-08 08:16:46.517288 aggnd 12786959X R rec e70523f7-297d-43fc-a428-56eb8e278357 -2023-07-08 08:16:46.627108 2023-07-08 08:16:46.627115 aggnd 128016736 R rec ddeb2cbc-9a7c-4243-ad54-8c15e935405f -2023-07-08 08:16:46.721544 2023-07-08 08:16:46.721555 aggnd 128190094 R rec 53e83f7b-e5e6-403f-bf24-916a945559ef -2023-07-08 08:16:46.816679 2023-07-08 08:16:46.816692 aggnd 128202432 R rec 9f95814d-fc7e-4022-8637-d17e0a91649a -2023-07-08 08:16:46.904475 2023-07-08 08:16:46.904484 aggnd 128244224 R rec 5a1d6bb4-3dc5-4b85-bfcc-e87b9ae62a23 -2023-07-08 08:16:47.004214 2023-07-08 08:16:47.004224 aggnd 128275022 R rec 52dc3911-e0e7-49d0-b301-55fa681e3087 -2023-07-08 08:16:47.101877 2023-07-08 08:16:47.10189 aggnd 128320419 R rec f317172e-7976-482b-a091-1b15d36f2e9b -2023-07-08 08:16:47.196463 2023-07-08 08:16:47.196468 aggnd 12833794X R rec 7188cb45-957c-4bae-96db-08b034bef7b8 -2023-07-08 08:16:47.2918 2023-07-08 08:16:47.291805 aggnd 128346280 R rec 40abc087-fd90-411e-8962-e7c2913889ca -2023-07-08 08:16:47.373928 2023-07-08 08:16:47.373936 aggnd 128387602 R rec b9da4aa2-41aa-40ed-8bde-032140fdc370 -2023-07-08 08:16:47.463442 2023-07-08 08:16:47.463458 aggnd 128430613 R rec 81d9f312-bcbd-4eba-9150-0426e0144a05 -2023-07-08 08:16:47.557857 2023-07-08 08:16:47.557868 aggnd 128437979 R rec 648f0ae6-e075-4b23-9079-0c97d52e5510 -2023-07-08 08:16:47.640434 2023-07-08 08:16:47.640445 aggnd 12849915X R rec bfee301c-9fdb-4b9f-9788-0b68acde995c -2023-07-08 08:16:47.741692 2023-07-08 08:16:47.741697 aggnd 128564520 R rec b9dd091e-fafd-4267-a1aa-4d9f8b9616b5 -2023-07-08 08:16:47.842642 2023-07-08 08:16:47.842653 aggnd 128568763 R rec 181eb3f2-a9d4-485a-8841-94ec2f323ef1 -2023-07-08 08:16:47.931798 2023-07-08 08:16:47.93181 aggnd 128630450 R rec b192c6ec-14b5-4ab3-9651-a2539050099c -2023-07-08 08:16:48.047642 2023-07-08 08:16:48.047653 aggnd 128669993 R rec ff2712d1-a128-45bf-8e75-d9c6dd4f1596 -2023-07-08 08:16:48.135529 2023-07-08 08:16:48.135542 aggnd 128807954 R rec 94f3f552-3d60-4b24-b845-363deb3e2dc6 -2023-07-08 08:16:48.230147 2023-07-08 08:16:48.230152 aggnd 128852690 R rec 67b16eae-fa9f-4443-aa15-0b495c8de525 -2023-07-08 08:16:48.341954 2023-07-08 08:16:48.341959 aggnd 128887249 R rec 12e3d8fc-2100-4af5-a455-9744f9028dc8 -2023-07-08 08:16:48.440404 2023-07-08 08:16:48.440414 aggnd 128948426 R rec 112c22ee-f612-4dd6-bc72-ba726508a949 -2023-07-08 08:16:48.528336 2023-07-08 08:16:48.528347 aggnd 128970790 R rec bd57dd28-f9a3-4362-96d9-48cca62575ca -2023-07-08 08:16:48.624466 2023-07-08 08:16:48.624471 aggnd 128979852 R rec 49de123e-966f-4bc3-aa01-67b6d0c95bf3 -2023-07-08 08:16:48.720156 2023-07-08 08:16:48.720168 aggnd 129020893 R rec bb05b8ee-81ba-4252-99e4-735e1c325900 -2023-07-08 08:16:48.805253 2023-07-08 08:16:48.805257 aggnd 129048267 R rec 688956c1-33d8-4b77-b0a1-c33cd90f4bd7 -2023-07-08 08:16:48.884996 2023-07-08 08:16:48.885007 aggnd 129097632 R rec a1e72182-8439-443a-ad25-f6987aa72d48 -2023-07-08 08:16:48.975065 2023-07-08 08:16:48.975074 aggnd 129154105 R rec 2392ff0d-3f7b-478a-818c-64cbd8061cbf -2023-07-08 08:16:49.059279 2023-07-08 08:16:49.059286 aggnd 129227838 R rec e87f399e-ec3b-4302-aae4-94392952d4f0 -2023-07-08 08:16:49.143572 2023-07-08 08:16:49.143578 aggnd 129446904 R rec de9b4402-0d25-4041-80c9-17d4da1f1378 -2023-07-08 08:16:49.237649 2023-07-08 08:16:49.237658 aggnd 129475351 R rec 2bd2a333-e7cb-49d9-b077-739f52623650 -2023-07-08 08:16:49.317847 2023-07-08 08:16:49.317852 aggnd 129504971 R rec 37fa0f37-d2a2-44f3-8308-ccec8013292b -2023-07-08 08:16:49.407205 2023-07-08 08:16:49.407223 aggnd 129520896 R rec cc5d5597-a3f1-47f2-a54c-d242b33f39da -2023-07-08 08:16:49.517655 2023-07-08 08:16:49.517667 aggnd 129599646 R rec 485b21a1-2f91-44fd-a8eb-60756d693908 -2023-07-08 08:16:49.630614 2023-07-08 08:16:49.63062 aggnd 129639109 R rec cdf4c93b-4671-44b1-90d4-6c3a951fa121 -2023-07-08 08:16:49.7328 2023-07-08 08:16:49.732812 aggnd 129685828 R rec 0435c07d-b004-48b8-ad05-893e900ec891 -2023-07-08 08:16:49.842377 2023-07-08 08:16:49.842385 aggnd 129727482 R rec 1b097ec5-6a6f-4975-bb98-9b8f0cded3aa -2023-07-08 08:16:49.929471 2023-07-08 08:16:49.929482 aggnd 129803332 R rec 752bee28-b407-4fed-86ed-cf88cd300c14 -2023-07-08 08:16:50.018731 2023-07-08 08:16:50.018746 aggnd 12981752X R rec 08babda3-a337-473a-9986-b968105e4f4f -2023-07-08 08:16:50.121728 2023-07-08 08:16:50.121743 aggnd 129828866 R rec 95771262-955d-4df6-8255-15fe0a1a633a -2023-07-08 08:16:50.230784 2023-07-08 08:16:50.23079 aggnd 129855863 R rec fabcd964-cfa0-4f73-bd0d-5b9ef205dd49 -2023-07-08 08:16:50.318051 2023-07-08 08:16:50.318061 aggnd 12988782X R rec 398dc1b4-fb2c-4cd7-bed5-a279ec2d155f -2023-07-08 08:16:50.409327 2023-07-08 08:16:50.409338 aggnd 129888796 R rec 4e0960b9-4e57-4364-8c12-218c8f109495 -2023-07-08 08:16:50.502531 2023-07-08 08:16:50.502542 aggnd 130000388 R rec 56e1575b-038f-4003-9aa8-feb1eddadccc -2023-07-08 08:16:50.595434 2023-07-08 08:16:50.595444 aggnd 130016985 R rec 891fc5ff-d9e2-40f0-8978-7a6e967bbecb -2023-07-08 08:16:50.687041 2023-07-08 08:16:50.687051 aggnd 130020001 R rec bf7f8b02-83dc-4569-b3a8-458e74cea7b6 -2023-07-08 08:16:50.777997 2023-07-08 08:16:50.77801 aggnd 130124648 R rec 55350ffc-b4fe-45b7-97d4-8f757bdd2621 -2023-07-08 08:16:50.851562 2023-07-08 08:16:50.851567 aggnd 130141623 R rec d7e94c74-325b-4324-abda-50e90131a20f -2023-07-08 08:16:50.92708 2023-07-08 08:16:50.927087 aggnd 13022622X R rec c59b9dba-b948-486d-87d7-e3682a986368 -2023-07-08 08:16:51.018388 2023-07-08 08:16:51.018398 aggnd 130250473 R rec ceb9d031-780c-4cc2-8ce1-4e33e4a964f2 -2023-07-08 08:16:51.113497 2023-07-08 08:16:51.113503 aggnd 130374520 R rec c23e04bd-c608-49a7-aeb1-973ec91fe10f -2023-07-08 08:16:51.209571 2023-07-08 08:16:51.209577 aggnd 130502642 R rec 8e8e2507-f21f-47b7-91e8-5d18f3d4c1b2 -2023-07-08 08:16:51.300422 2023-07-08 08:16:51.300437 aggnd 130582883 R rec e394564f-ffd6-43ad-9c97-d33ca53ae8ef -2023-07-08 08:16:51.399317 2023-07-08 08:16:51.399328 aggnd 130677299 R rec 27e374d5-9c59-4555-a1e3-ad99748a45f0 -2023-07-08 08:16:51.504507 2023-07-08 08:16:51.504512 aggnd 130859842 R rec 5e932a3a-d5fd-4de4-8e39-40b5416c003e -2023-07-08 08:16:51.60833 2023-07-08 08:16:51.608337 aggnd 130860557 R rec 30f6d5b6-080f-4361-a120-6789b5240d1d -2023-07-08 08:16:51.69626 2023-07-08 08:16:51.696267 aggnd 131284703 R rec cacf72da-75a8-49d4-9cbe-84c65be80ab2 -2023-07-08 08:16:51.805372 2023-07-08 08:16:51.805378 aggnd 131443704 R rec 47e288eb-1a5e-48e5-85b8-07e043bb0b1f -2023-07-08 08:16:51.879382 2023-07-08 08:16:51.879388 aggnd 131564692 R rec dc49d858-8247-4367-93f4-e1a1f5170d01 -2023-07-08 08:16:51.956842 2023-07-08 08:16:51.95685 aggnd 131638653 R rec a401d19a-5f28-4a2d-8155-516a78d8b13d -2023-07-08 08:16:52.058808 2023-07-08 08:16:52.058814 aggnd 131675907 R rec 22f93ad2-22f1-4dd3-b0ea-d54b3dffbf50 -2023-07-08 08:16:52.166013 2023-07-08 08:16:52.166027 aggnd 131709550 R rec 13ef4087-f2bf-4d1f-acef-5739dde73d35 -2023-07-08 08:16:52.266088 2023-07-08 08:16:52.266093 aggnd 13178918X R rec a808d52c-d9c2-4be6-ab63-8ccf3f8cd5dc -2023-07-08 08:16:52.347475 2023-07-08 08:16:52.347485 aggnd 131792350 R rec 6af93d82-a7fb-417f-a7e4-c2f2af598092 -2023-07-08 08:16:52.438596 2023-07-08 08:16:52.438606 aggnd 13184248X R rec 35ca5745-ad6c-44b9-8151-f7a1a7d793be -2023-07-08 08:16:52.529807 2023-07-08 08:16:52.529817 aggnd 131856839 R rec ed4e207c-d5ae-4576-89b0-6a871a1cb338 -2023-07-08 08:16:52.611483 2023-07-08 08:16:52.611497 aggnd 131896873 R rec 4df3fc1d-9d7a-4870-854d-744fa38aa581 -2023-07-08 08:16:52.698583 2023-07-08 08:16:52.698593 aggnd 131915401 R rec 8cc40bf4-cb94-4189-a802-80adc89f7efe -2023-07-08 08:16:52.814533 2023-07-08 08:16:52.814537 aggnd 131930915 R rec 065a7f5c-e50a-459d-adcc-be34f5891e94 -2023-07-08 08:16:52.89485 2023-07-08 08:16:52.894856 aggnd 132104784 R rec fb543e24-5118-4fda-a53c-86be887697e8 -2023-07-08 08:16:52.995254 2023-07-08 08:16:52.995266 aggnd 132266741 R rec d1997025-d8d8-4c54-9837-62f588377227 -2023-07-08 08:16:53.094254 2023-07-08 08:16:53.09426 aggnd 132327147 R rec 453c38b6-f4d1-42a5-85f0-3678f90255a5 -2023-07-08 08:16:53.196234 2023-07-08 08:16:53.19624 aggnd 132373963 R rec f684f191-fb2a-4cfc-92ce-3c6ae0578764 -2023-07-08 08:16:53.287177 2023-07-08 08:16:53.287182 aggnd 13246781X R rec 130c1e36-79ad-4dc8-b6e6-b6259f25dc6f -2023-07-08 08:16:53.354725 2023-07-08 08:16:53.35473 aggnd 132490846 R rec 7f300467-0e9e-4a12-9a45-2a4cef1c0c78 -2023-07-08 08:16:53.463951 2023-07-08 08:16:53.46397 aggnd 132526808 R rec 25a4a6ad-1fee-4fda-9fbe-ad9ce4933641 -2023-07-08 08:16:53.585364 2023-07-08 08:16:53.585379 aggnd 132658941 R rec 5c785742-bd77-41ae-b929-4f0a2b5bdcd8 -2023-07-08 08:16:53.702721 2023-07-08 08:16:53.702738 aggnd 132695405 R rec 45c4307d-e933-4a02-bbc5-e3bcbe3d11d1 -2023-07-08 08:16:53.821854 2023-07-08 08:16:53.821864 aggnd 132790912 R rec 8bd77506-9d3c-4c01-ae2b-aefe23bd01a0 -2023-07-08 08:16:53.930395 2023-07-08 08:16:53.930405 aggnd 132825198 R rec e93dc5c7-64b5-4f31-8b4a-a35b9e112c4b -2023-07-08 08:16:54.049937 2023-07-08 08:16:54.049953 aggnd 132828944 R rec 97b6e77f-3233-46bb-b89d-f7d1d17bdf53 -2023-07-08 08:16:54.165023 2023-07-08 08:16:54.165034 aggnd 132832860 R rec 3bb4e4db-20e0-4914-894c-fb62344e4d6b -2023-07-08 08:16:54.260999 2023-07-08 08:16:54.261011 aggnd 132857022 R rec 3aa9b4ba-63cf-4b6e-a3a6-1838a46193e0 -2023-07-08 08:16:54.370214 2023-07-08 08:16:54.370229 aggnd 132989719 R rec fb854860-cd85-455c-95bc-19b81f98bb7d -2023-07-08 08:16:54.483614 2023-07-08 08:16:54.483627 aggnd 13299495X R rec 15a5a4f9-670b-4225-b4f8-54dfe0699aad -2023-07-08 08:16:54.617449 2023-07-08 08:16:54.617462 aggnd 132999102 R rec 462562a7-5e41-4b1c-aedd-d494cf07b467 -2023-07-08 08:16:54.728408 2023-07-08 08:16:54.728418 aggnd 133046567 R rec 7d93f730-d660-45e2-af3e-044247e1226d -2023-07-08 08:16:54.853301 2023-07-08 08:16:54.853312 aggnd 133056996 R rec ff4d8f1f-2f33-476a-abc6-cdf0aaf826c0 -2023-07-08 08:16:54.967449 2023-07-08 08:16:54.967465 aggnd 13308325X R rec 9f1d0669-13bf-4049-a362-5a4db6ade492 -2023-07-08 08:16:55.097945 2023-07-08 08:16:55.097964 aggnd 133092852 R rec f541aeeb-0f6c-4f67-a33b-1e3ef0408e82 -2023-07-08 08:16:55.233326 2023-07-08 08:16:55.23334 aggnd 133104567 R rec f6566c5a-5df9-4c38-a9ed-82c281f48906 -2023-07-08 08:16:55.337708 2023-07-08 08:16:55.337723 aggnd 13311189X R rec d27305ea-4dd0-44b3-be3b-826253a5a351 -2023-07-08 08:16:55.461627 2023-07-08 08:16:55.461638 aggnd 133130886 R rec 13278d51-5967-452d-af41-9287b4c713d5 -2023-07-08 08:16:55.580415 2023-07-08 08:16:55.580426 aggnd 133245187 R rec e372e887-4326-4b12-b5c8-01fd3819eb78 -2023-07-08 08:16:55.688155 2023-07-08 08:16:55.68817 aggnd 133255344 R rec 1e327287-be41-4edb-a70d-b820f947509b -2023-07-08 08:16:55.788337 2023-07-08 08:16:55.788346 aggnd 133273407 R rec 316c22c2-b4ef-4f12-a81b-b7a47c6324ed -2023-07-08 08:16:55.888216 2023-07-08 08:16:55.88823 aggnd 133315681 R rec b0bf4007-bfcb-4fb0-a8a8-be21a2680dd7 -2023-07-08 08:16:56.011982 2023-07-08 08:16:56.011994 aggnd 133396223 R rec 70613d65-7ed8-4e16-83a0-d5c698ed6b2d -2023-07-08 08:16:56.11329 2023-07-08 08:16:56.1133 aggnd 133487342 R rec d431009c-f5ad-4e23-bcc5-9aa37d8701cc -2023-07-08 08:16:56.216809 2023-07-08 08:16:56.21682 aggnd 13350171X R rec a6eea227-6687-4d52-9224-beef8bac4b6d -2023-07-08 08:16:56.336015 2023-07-08 08:16:56.336031 aggnd 133685624 R rec 0db12d07-965e-434a-bebc-883fd8d975f6 -2023-07-08 08:16:56.451017 2023-07-08 08:16:56.451032 aggnd 133715671 R rec e2055f16-e900-47a9-8f74-c02a7ea7e5b4 -2023-07-08 08:16:56.555377 2023-07-08 08:16:56.555391 aggnd 133748294 R rec 9ae6ca43-670b-4f0a-be27-11936daa09f5 -2023-07-08 08:16:56.666183 2023-07-08 08:16:56.666199 aggnd 134089316 R rec 727d63b4-4267-4c47-9365-da6968728594 -2023-07-08 08:16:56.799839 2023-07-08 08:16:56.799858 aggnd 134092147 R rec 7bb74352-9f7d-4820-9fa0-587d9a6b00b4 -2023-07-08 08:16:56.918856 2023-07-08 08:16:56.918867 aggnd 13416492X R rec b7253c39-9bdc-47ee-81eb-088869e52847 -2023-07-08 08:16:57.028818 2023-07-08 08:16:57.028829 aggnd 134204603 R rec fa7520de-8001-42d3-b3fc-e005c7c4cfa9 -2023-07-08 08:16:57.144203 2023-07-08 08:16:57.144216 aggnd 134311086 R rec be66ae98-69a3-4742-a329-d78bf8a674cf -2023-07-08 08:16:57.256347 2023-07-08 08:16:57.25636 aggnd 134321707 R rec 173f68c1-01bd-49c9-b456-c33e582609e9 -2023-07-08 08:16:57.36766 2023-07-08 08:16:57.367676 aggnd 134449002 R rec c2b9143d-1792-4b86-87d1-0b0cfe6bccd7 -2023-07-08 08:16:57.501725 2023-07-08 08:16:57.50174 aggnd 134454901 R rec bf88dc1b-e9a7-4b98-b1b6-ec1f7387f7c5 -2023-07-08 08:16:57.618201 2023-07-08 08:16:57.618211 aggnd 134538099 R rec 708da89d-92ac-4608-87f4-c64bba0381be -2023-07-08 08:16:57.739518 2023-07-08 08:16:57.739528 aggnd 134574079 R rec 23c33bbe-ac61-4fec-a68d-c6a01928a378 -2023-07-08 08:16:57.86677 2023-07-08 08:16:57.86678 aggnd 134583337 R rec 656a745f-c2ab-4b62-8795-fcb7da3e2e44 -2023-07-08 08:16:57.963314 2023-07-08 08:16:57.963324 aggnd 134588959 R rec 7073922b-dccb-40c0-a9df-a8bd74412405 -2023-07-08 08:16:58.069895 2023-07-08 08:16:58.069905 aggnd 134590481 R rec edf5f0f2-8b32-48ea-8957-9f995313b50e -2023-07-08 08:16:58.18312 2023-07-08 08:16:58.183131 aggnd 134591968 R rec 5bf09e81-ae08-45f7-9543-7305677c3867 -2023-07-08 08:16:58.313898 2023-07-08 08:16:58.313906 aggnd 134623487 R rec 4325a09e-8fa7-4855-887c-df39709241c2 -2023-07-08 08:16:58.405112 2023-07-08 08:16:58.405127 aggnd 134678478 R rec e5584030-f15a-40b9-9c5c-26847c9080b4 -2023-07-08 08:16:58.519471 2023-07-08 08:16:58.51949 aggnd 13468706X R rec df415fa9-40c0-4791-baf7-bb34670b4312 -2023-07-08 08:16:58.668527 2023-07-08 08:16:58.668538 aggnd 134694031 R rec c8f0522d-86ad-4700-8eb1-4a311464659a -2023-07-08 08:16:58.794525 2023-07-08 08:16:58.794534 aggnd 134802993 R rec 55b52273-89d5-447c-92b7-23d7fc927e7e -2023-07-08 08:16:58.90418 2023-07-08 08:16:58.904196 aggnd 134805313 R rec 3da46d3c-ad8b-4695-a84b-fda0caf18e53 -2023-07-08 08:16:59.029777 2023-07-08 08:16:59.02979 aggnd 134872223 R rec 01e1ec07-dfbf-4cf8-8692-8cb1a2ae2051 -2023-07-08 08:16:59.150277 2023-07-08 08:16:59.150287 aggnd 135012864 R rec bbe9b7bc-0794-416d-8dd5-5ad17d1889e2 -2023-07-08 08:16:59.290962 2023-07-08 08:16:59.290971 aggnd 135074800 R rec 332455e3-7e56-4b52-8d52-c5ed462be801 -2023-07-08 08:16:59.402275 2023-07-08 08:16:59.402294 aggnd 135203449 R rec b877d3b9-bcf6-4288-88b1-39f13724e2b9 -2023-07-08 08:16:59.519331 2023-07-08 08:16:59.519341 aggnd 135270103 R rec 759b44ba-03c3-4ab0-a2ef-b158dc5f623a -2023-07-08 08:16:59.659577 2023-07-08 08:16:59.659585 aggnd 135270413 R rec 677ed71a-a352-41b6-a0bf-415cd6f6526b -2023-07-08 08:16:59.762202 2023-07-08 08:16:59.762214 aggnd 135374774 R rec 8894538f-6d8a-4863-b761-4d93cad596a3 -2023-07-08 08:16:59.88303 2023-07-08 08:16:59.883045 aggnd 135580986 R rec 1f32e1db-42aa-4141-8a2b-d3bf169a5458 -2023-07-08 08:16:59.991375 2023-07-08 08:16:59.991388 aggnd 135626498 R rec 84f8d8ed-805a-493f-a553-d1fc7b2c6c49 -2023-07-08 08:17:00.104688 2023-07-08 08:17:00.104699 aggnd 135627095 R rec 4cee2d3a-03a1-4276-bfd4-4f64521be435 -2023-07-08 08:17:00.223118 2023-07-08 08:17:00.223128 aggnd 135661234 R rec 81664d30-b54b-45ad-a6cf-f619ff8e7758 -2023-07-08 08:17:00.335044 2023-07-08 08:17:00.335063 aggnd 135757452 R rec f4501741-8c5a-4535-93c0-864bd816886d -2023-07-08 08:17:00.46127 2023-07-08 08:17:00.461282 aggnd 13579000X R rec 49bbe585-eb44-4762-83e1-959a11ba2f55 -2023-07-08 08:17:00.567528 2023-07-08 08:17:00.56754 aggnd 135835321 R rec 8a9117d6-3474-42ec-8b61-e7b968de338a -2023-07-08 08:17:00.691366 2023-07-08 08:17:00.691378 aggnd 135958245 R rec 06d5a0b0-a253-4d77-a250-1d3a69e3fcb1 -2023-07-08 08:17:00.811637 2023-07-08 08:17:00.811648 aggnd 135961602 R rec eceac57e-7a73-415a-ad10-c17fa4dc594f -2023-07-08 08:17:00.969752 2023-07-08 08:17:00.969767 aggnd 135973368 R rec f76279c3-41d8-43e0-9925-0b5eba2cd1cf -2023-07-08 08:17:01.08071 2023-07-08 08:17:01.08072 aggnd 136148808 R rec ce691fb9-5f7a-446d-aaad-8df4ba40205b -2023-07-08 08:17:01.201425 2023-07-08 08:17:01.201432 aggnd 136205275 R rec 791a8b97-0609-4b26-bb54-a76bfa2bd18a -2023-07-08 08:17:01.322036 2023-07-08 08:17:01.32205 aggnd 136417582 R rec ce73781a-7351-40c8-a883-8b2181f9d4de -2023-07-08 08:17:01.448792 2023-07-08 08:17:01.448805 aggnd 136444075 R rec c5025ddc-a7ad-4598-8e76-1e90f36ca0e7 -2023-07-08 08:17:01.569547 2023-07-08 08:17:01.569559 aggnd 136999271 R rec 7bfdc5f9-e73b-49f4-83e3-c137342097a7 -2023-07-08 08:17:01.711003 2023-07-08 08:17:01.711017 aggnd 137111223 R rec faab66c3-e3b3-44c5-a657-c0b93c2ddf68 -2023-07-08 08:17:01.820314 2023-07-08 08:17:01.820324 aggnd 137241348 R rec 791d7b87-6d43-4b70-a430-0299099431c8 -2023-07-08 08:17:01.934987 2023-07-08 08:17:01.934998 aggnd 137500750 R rec c230335a-a35a-4f3f-be75-023d4fe4e644 -2023-07-08 08:17:02.068826 2023-07-08 08:17:02.068839 aggnd 138374732 R rec 98cb287a-12ab-433c-b788-e6d88dafdee0 -2023-07-08 08:17:02.184737 2023-07-08 08:17:02.184747 aggnd 138598010 R rec f2919f14-161a-4408-a8f2-736cb974aa7c -2023-07-08 08:17:02.315143 2023-07-08 08:17:02.31515 aggnd 13902185X R rec b70556d0-d756-42a8-b140-6588e97ee8cb -2023-07-08 08:17:02.452907 2023-07-08 08:17:02.452918 aggnd 139117091 R rec 5a5ccc75-558c-4c76-8d9d-775f493cd96a -2023-07-08 08:17:02.59689 2023-07-08 08:17:02.596895 aggnd 139120629 R rec a0b62155-8e4b-45d2-8236-95318d26b735 -2023-07-08 08:17:02.677324 2023-07-08 08:17:02.677329 aggnd 139128557 R rec ca78b4a6-da15-4ab4-aa65-2892bac993d6 -2023-07-08 08:17:02.755748 2023-07-08 08:17:02.755753 aggnd 139134816 R rec 923f5d57-11e1-4895-90b9-dc6017827cb7 -2023-07-08 08:17:02.840307 2023-07-08 08:17:02.840312 aggnd 139180060 R rec 6d0e4e7e-623a-4bf1-9b75-efe6125b30bb -2023-07-08 08:17:02.91149 2023-07-08 08:17:02.911496 aggnd 139196269 R rec a4cd2a8e-5d00-481d-93b3-b8fe48cc7950 -2023-07-08 08:17:02.976303 2023-07-08 08:17:02.976309 aggnd 139268456 R rec fa6944c4-9409-463e-acbe-1d8f9e393d2f -2023-07-08 08:17:03.050507 2023-07-08 08:17:03.050512 aggnd 139284575 R rec 43dd1b80-3c7b-44fa-9b1a-db710154cb56 -2023-07-08 08:17:03.117352 2023-07-08 08:17:03.117358 aggnd 139289690 R rec 6dc7e1e5-b4be-4b59-b8ad-f361a2622518 -2023-07-08 08:17:03.184289 2023-07-08 08:17:03.184295 aggnd 139310991 R rec c1e5996b-07a1-4626-bf81-d058f5a530a3 -2023-07-08 08:17:03.26527 2023-07-08 08:17:03.265282 aggnd 139317783 R rec a21c8ebc-9e47-4a17-bc78-3cb6b431d9e1 -2023-07-08 08:17:03.370717 2023-07-08 08:17:03.370727 aggnd 139334114 R rec cd92dcf1-328d-4dad-a873-81b246f6298a -2023-07-08 08:17:03.48265 2023-07-08 08:17:03.482656 aggnd 139350101 R rec 0c8f1998-0f5b-452a-9a97-60fd72a45fe9 -2023-07-08 08:17:03.556539 2023-07-08 08:17:03.556545 aggnd 139361405 R rec 7b650193-a815-4970-89f1-fb7ebcc2ae04 -2023-07-08 08:17:03.62489 2023-07-08 08:17:03.624895 aggnd 139380027 R rec 0cafabb1-cac7-4f20-9dd1-33603a57230a -2023-07-08 08:17:03.708952 2023-07-08 08:17:03.708957 aggnd 139383050 R rec 44a04e1a-798d-4bf1-92b6-1a86f97244a9 -2023-07-08 08:17:03.81681 2023-07-08 08:17:03.816821 aggnd 139418598 R rec f1516d65-208e-4563-8fc5-f8c45f145c58 -2023-07-08 08:17:03.907405 2023-07-08 08:17:03.907412 aggnd 139422102 R rec d70598e6-d375-44be-bd5b-27345502673d -2023-07-08 08:17:04.023618 2023-07-08 08:17:04.023624 aggnd 139422161 R rec 0da6d215-ff34-4818-9e71-4265ee18cd6c -2023-07-08 08:17:04.120985 2023-07-08 08:17:04.120993 aggnd 13943237X R rec 070b0319-2ed8-458f-a064-d3d8c6bb19e0 -2023-07-08 08:17:04.207239 2023-07-08 08:17:04.207245 aggnd 139503072 R rec 1c949661-1154-46cf-b6b1-502dfcec9fe2 -2023-07-08 08:17:04.305832 2023-07-08 08:17:04.305844 aggnd 139512950 R rec 7c3e01c0-0f46-41f0-af27-77862963fee1 -2023-07-08 08:17:04.395666 2023-07-08 08:17:04.395679 aggnd 139535489 R rec 5ac3ece3-60e0-48a3-b091-d7e9f4ff34d6 -2023-07-08 08:17:04.502119 2023-07-08 08:17:04.502133 aggnd 13954402X R rec 88374916-d9d8-4345-a05e-7f618fa20aa5 -2023-07-08 08:17:04.614325 2023-07-08 08:17:04.614334 aggnd 139546979 R rec 3a9263d0-afde-435a-aba1-c06ffce2d0c3 -2023-07-08 08:17:04.702481 2023-07-08 08:17:04.702496 aggnd 139612483 R rec 0e41a595-ecc8-4207-8a4c-86d875fd1cb0 -2023-07-08 08:17:04.80916 2023-07-08 08:17:04.809169 aggnd 139626417 R rec 9479ae93-e1ef-404f-b710-179140fab50e -2023-07-08 08:17:04.919087 2023-07-08 08:17:04.919091 aggnd 139630147 R rec 8f9acdb9-2bac-4f25-9508-60557ddafd55 -2023-07-08 08:17:05.023213 2023-07-08 08:17:05.023219 aggnd 139649263 R rec 475a364c-94b9-4709-9e75-188847515c79 -2023-07-08 08:17:05.121217 2023-07-08 08:17:05.121223 aggnd 139654526 R rec a81fb66b-719a-4694-9426-57bc4f7adfc3 -2023-07-08 08:17:05.234634 2023-07-08 08:17:05.23464 aggnd 139655395 R rec c984dac4-6b06-4e05-9b18-934ae735df9f -2023-07-08 08:17:05.341368 2023-07-08 08:17:05.341374 aggnd 139659382 R rec 3fe2e25e-a2e1-4765-ab6d-f2b4edf91fc3 -2023-07-08 08:17:05.426268 2023-07-08 08:17:05.426274 aggnd 139695125 R rec f4acdddd-c06f-4b3a-98a3-9fc759ec2f5c -2023-07-08 08:17:05.514014 2023-07-08 08:17:05.514026 aggnd 13971166X R rec 5523f7ae-c0ee-45f3-830f-bd457da80576 -2023-07-08 08:17:05.61243 2023-07-08 08:17:05.612436 aggnd 139733256 R rec d00a2fa0-d868-495e-8f4f-b9ad1e4d4e3a -2023-07-08 08:17:05.692587 2023-07-08 08:17:05.692594 aggnd 139769366 R rec 7c735628-6666-406c-88d7-58098e0bda3b -2023-07-08 08:17:05.803426 2023-07-08 08:17:05.803437 aggnd 139774807 R rec 63a7301d-bc86-449a-9cce-012dd8fb7964 -2023-07-08 08:17:05.894758 2023-07-08 08:17:05.89477 aggnd 139794204 R rec 818cafe5-08de-4f11-8131-55ccb2399b96 -2023-07-08 08:17:05.982842 2023-07-08 08:17:05.982847 aggnd 139796282 R rec e4e0c8bd-04b3-4e9a-a064-adc7b00f54a5 -2023-07-08 08:17:06.081983 2023-07-08 08:17:06.081995 aggnd 139822542 R rec e5c26af3-9e82-45b5-bbef-50ccd9ee7129 -2023-07-08 08:17:06.161599 2023-07-08 08:17:06.161603 aggnd 13983043X R rec fa46cb9d-8dcc-4c08-afd1-1c02cdd96381 -2023-07-08 08:17:06.282664 2023-07-08 08:17:06.282669 aggnd 139856072 R rec 7190c21a-85d8-476a-bea9-1b9df74983fb -2023-07-08 08:17:06.378228 2023-07-08 08:17:06.378234 aggnd 139879994 R rec 24d166b3-5da0-4d4a-9520-fa1efd36d37a -2023-07-08 08:17:06.468337 2023-07-08 08:17:06.468349 aggnd 139889345 R rec f7b507a2-c8ca-44a3-b9b8-664c54c5b025 -2023-07-08 08:17:06.569384 2023-07-08 08:17:06.569399 aggnd 139894977 R rec cf0ce2e6-968f-4746-b383-45b802ddec08 -2023-07-08 08:17:06.649975 2023-07-08 08:17:06.649987 aggnd 139925988 R rec 04148a20-7da3-4fee-90cc-57cd166c8104 -2023-07-08 08:17:06.743251 2023-07-08 08:17:06.743257 aggnd 139939415 R rec 54cd6d30-e30a-4fac-8329-6e2645825490 -2023-07-08 08:17:06.831116 2023-07-08 08:17:06.831128 aggnd 139942920 R rec 6ea4cef9-a982-466c-aeb8-276c4ad56f70 -2023-07-08 08:17:06.928271 2023-07-08 08:17:06.928277 aggnd 139952179 R rec 854eebef-547f-4d99-b149-3bbe9105053a -2023-07-08 08:17:07.025202 2023-07-08 08:17:07.025209 aggnd 139961968 R rec 10139f46-340d-4fd7-8079-b3f980a88c80 -2023-07-08 08:17:07.115092 2023-07-08 08:17:07.115098 aggnd 139974199 R rec 3835989b-c84b-4810-a138-1276d183dc8d -2023-07-08 08:17:07.202141 2023-07-08 08:17:07.202146 aggnd 14006253X R rec 8266ea21-d5bb-462d-b53e-6f440ab2cae0 -2023-07-08 08:17:07.305599 2023-07-08 08:17:07.305614 aggnd 140091319 R rec 1bbd8cab-2ef6-484e-8492-9a95c6ff4f73 -2023-07-08 08:17:07.416717 2023-07-08 08:17:07.416728 aggnd 140093427 R rec e1d29cb4-c335-4ffb-a12c-2d0e322dac45 -2023-07-08 08:17:07.51969 2023-07-08 08:17:07.519709 aggnd 140129510 R rec 56bc610c-9b69-4cef-ad8d-a2a633b3cecd -2023-07-08 08:17:07.616102 2023-07-08 08:17:07.616108 aggnd 140132872 R rec 22122054-3101-4706-90a5-55246383f350 -2023-07-08 08:17:07.686581 2023-07-08 08:17:07.686592 aggnd 140169016 R rec 4bb2b588-9811-4a71-a4a5-ce2bb8e15bd0 -2023-07-08 08:17:07.773465 2023-07-08 08:17:07.773471 aggnd 140234381 R rec 7d2984e7-5cdc-4ea4-b523-38b47746e221 -2023-07-08 08:17:07.847072 2023-07-08 08:17:07.847083 aggnd 140306412 R rec ab0e698d-6e19-4947-8c31-d850b5a02344 -2023-07-08 08:17:07.950316 2023-07-08 08:17:07.950332 aggnd 140322140 R rec 5f5f85fb-97c0-4bdb-8fc8-2b31816f2668 -2023-07-08 08:17:08.041951 2023-07-08 08:17:08.041956 aggnd 140322213 R rec 50738ab8-4ad3-42bf-a94a-9a212a42dd3d -2023-07-08 08:17:08.146157 2023-07-08 08:17:08.146173 aggnd 140327126 R rec c52e0cf0-fcae-4b2b-a6c5-3ded260c0d5d -2023-07-08 08:17:08.237013 2023-07-08 08:17:08.237019 aggnd 140338683 R rec 34119968-bc5c-45dd-8a98-ca931c0784ff -2023-07-08 08:17:08.345424 2023-07-08 08:17:08.345434 aggnd 140345884 R rec 347d5a10-ce0e-4b92-9e9e-b9e1c273496b -2023-07-08 08:17:08.434216 2023-07-08 08:17:08.434228 aggnd 140416919 R rec c8bdcc1b-2660-43f7-a830-0614e38f2e06 -2023-07-08 08:17:08.528427 2023-07-08 08:17:08.528434 aggnd 140419799 R rec a1353dc9-f1d2-45e4-80a2-2547e4e52328 -2023-07-08 08:17:08.615319 2023-07-08 08:17:08.615325 aggnd 14043917X R rec 3d0d6faa-9fb6-4b60-81b3-13c0bd67dd94 -2023-07-08 08:17:08.692724 2023-07-08 08:17:08.69273 aggnd 140458123 R rec 29b4d5a3-e160-4ed7-9e89-62e84941d5b1 -2023-07-08 08:17:08.784186 2023-07-08 08:17:08.784198 aggnd 14046090X R rec cfeaf9c5-5e12-4b88-9078-f1f4f5b51d34 -2023-07-08 08:17:08.884086 2023-07-08 08:17:08.884097 aggnd 140490841 R rec a65476c6-9874-4655-83b1-3eb9a86f698b -2023-07-08 08:17:08.968771 2023-07-08 08:17:08.968777 aggnd 140499024 R rec f77f70f8-0a0a-46f6-a9e5-d34be71c1ef2 -2023-07-08 08:17:09.057522 2023-07-08 08:17:09.057532 aggnd 140540830 R rec 75c783d1-b49a-4403-b1a7-459ac67e12be -2023-07-08 08:17:09.147566 2023-07-08 08:17:09.147585 aggnd 140595716 R rec 348c5e83-361a-4f8e-a0ff-812644b80e79 -2023-07-08 08:17:09.23702 2023-07-08 08:17:09.237025 aggnd 140605304 R rec f18723f4-0bfe-4da2-8593-bdb372fc951d -2023-07-08 08:17:09.329818 2023-07-08 08:17:09.329823 aggnd 140655387 R rec 2898c3f5-be7f-4b37-9d06-4c2bfb3ed512 -2023-07-08 08:17:09.399355 2023-07-08 08:17:09.39936 aggnd 140665927 R rec 975dc82c-591e-436e-9e0a-555aeeaf549f -2023-07-08 08:17:09.467961 2023-07-08 08:17:09.467967 aggnd 140699562 R rec 58763d8c-2cb8-407f-a530-02e71a7f2ac0 -2023-07-08 08:17:09.539946 2023-07-08 08:17:09.539953 aggnd 140703063 R rec 70abfa7a-59eb-41d5-9a09-ed03390a4dbb -2023-07-08 08:17:09.60765 2023-07-08 08:17:09.607656 aggnd 140707921 R rec d60b594c-b598-48be-8dd4-e94d895c2fdc -2023-07-08 08:17:09.675947 2023-07-08 08:17:09.675953 aggnd 140723269 R rec df42cee3-7b29-4b4b-9748-b671f0ce9a24 -2023-07-08 08:17:09.766223 2023-07-08 08:17:09.766229 aggnd 140724656 R rec 73de0911-2c9e-4448-86ae-a73ebe9d9986 -2023-07-08 08:17:09.843972 2023-07-08 08:17:09.843977 aggnd 140781498 R rec ff644228-3385-4f24-ba3b-ec0d52f5d335 -2023-07-08 08:17:09.927703 2023-07-08 08:17:09.927714 aggnd 140791434 R rec 70977ed9-76f8-4bed-90da-12890af98449 -2023-07-08 08:17:10.018809 2023-07-08 08:17:10.01882 aggnd 140807268 R rec df0df52f-0302-4b5a-9659-7fe11af5d80e -2023-07-08 08:17:10.130892 2023-07-08 08:17:10.130908 aggnd 140818197 R rec 3d9d11a3-a5be-455f-89e3-75fb07eb08e3 -2023-07-08 08:17:10.228748 2023-07-08 08:17:10.228754 aggnd 140835822 R rec f9f60cff-8f7b-4613-b322-792cd88bf46e -2023-07-08 08:17:10.33869 2023-07-08 08:17:10.338705 aggnd 140848363 R rec abbc22e9-b597-47ac-b4df-014c468b2e60 -2023-07-08 08:17:10.453769 2023-07-08 08:17:10.453788 aggnd 140849963 R rec 98400b05-58d7-4cff-a946-d3f035d798da -2023-07-08 08:17:10.561501 2023-07-08 08:17:10.561514 aggnd 140890335 R rec c143136f-e132-4035-a057-d644b5b58749 -2023-07-08 08:17:10.649078 2023-07-08 08:17:10.649097 aggnd 140891420 R rec d88f98b5-033b-4310-ab7c-6fd3a4912442 -2023-07-08 08:17:10.768141 2023-07-08 08:17:10.768157 aggnd 140897933 R rec 00703289-7ad0-42a4-b6f6-71e70fd10003 -2023-07-08 08:17:10.886758 2023-07-08 08:17:10.886774 aggnd 140948317 R rec f113e232-842b-46e8-abf6-f5e3d7ddb19d -2023-07-08 08:17:10.95808 2023-07-08 08:17:10.958085 aggnd 140952012 R rec b01688a2-fe51-4a83-beb6-f7ae90224ff7 -2023-07-08 08:17:11.052429 2023-07-08 08:17:11.052439 aggnd 140952985 R rec 8656f574-c4fa-4c1a-a74f-1179ab40a268 -2023-07-08 08:17:11.142233 2023-07-08 08:17:11.14224 aggnd 140960597 R rec 96d0d1bf-b238-4aca-b59e-04c0e6f8d267 -2023-07-08 08:17:11.231974 2023-07-08 08:17:11.23198 aggnd 140974571 R rec 16015cea-418c-489d-943b-cb15b6ad4d7f -2023-07-08 08:17:11.327208 2023-07-08 08:17:11.32722 aggnd 14098643X R rec 8b2baba1-cda7-40b2-ba10-dbfcd3a2d941 -2023-07-08 08:17:11.408653 2023-07-08 08:17:11.408659 aggnd 140996524 R rec c715271f-9a7e-4d09-b08f-9f29d321fc47 -2023-07-08 08:17:11.495029 2023-07-08 08:17:11.495041 aggnd 141011491 R rec cc43e234-8bbf-4fd8-a78d-427ce0c553f1 -2023-07-08 08:17:11.567486 2023-07-08 08:17:11.567491 aggnd 141030771 R rec 146ef390-55a5-4695-ac5d-02bd327f17d4 -2023-07-08 08:17:11.650641 2023-07-08 08:17:11.650657 aggnd 141129271 R rec bc9f24f8-6ced-415c-9123-62904ff564c5 -2023-07-08 08:17:11.74666 2023-07-08 08:17:11.74667 aggnd 141136618 R rec 135cf313-fd27-42fd-81bb-55d55883f633 -2023-07-08 08:17:11.840107 2023-07-08 08:17:11.840118 aggnd 141153067 R rec 03b54282-0133-4032-b63b-03a6e6acf9ce -2023-07-08 08:17:11.924388 2023-07-08 08:17:11.924394 aggnd 141169818 R rec 879e6660-aa16-4760-a8d7-6f547c9121e2 -2023-07-08 08:17:12.010144 2023-07-08 08:17:12.010155 aggnd 141195428 R rec 941bd385-678d-4777-98a8-eba34f5948c1 -2023-07-08 08:17:12.105204 2023-07-08 08:17:12.105213 aggnd 141222042 R rec 473a3861-1386-456b-9a1f-06a669c697ad -2023-07-08 08:17:12.210233 2023-07-08 08:17:12.210243 aggnd 141231742 R rec 72701e1d-9f52-4254-97ca-73e2f2c912db -2023-07-08 08:17:12.323941 2023-07-08 08:17:12.323946 aggnd 141248408 R rec 5a3db500-6d5b-45be-840d-88b822b85780 -2023-07-08 08:17:12.430988 2023-07-08 08:17:12.430998 aggnd 141327588 R rec a7ae096a-739e-49a0-943c-1ed25a756ea7 -2023-07-08 08:17:12.524189 2023-07-08 08:17:12.524194 aggnd 141339942 R rec c731105c-dfa4-4906-a4fc-ea6c6b8c9881 -2023-07-08 08:17:12.606714 2023-07-08 08:17:12.606719 aggnd 141354240 R rec ae21f9a3-88e4-4c58-8637-34d2622f7fd9 -2023-07-08 08:17:12.687301 2023-07-08 08:17:12.687316 aggnd 141363193 R rec 7906579c-0495-4b7b-b851-b9ab33b0c4af -2023-07-08 08:17:12.776679 2023-07-08 08:17:12.776685 aggnd 141373741 R rec b63bc0a6-2d6e-40a6-bb86-c83403405a0f -2023-07-08 08:17:12.846177 2023-07-08 08:17:12.846183 aggnd 141395362 R rec e296dc91-4012-430b-be3e-47a7b2968a35 -2023-07-08 08:17:12.928836 2023-07-08 08:17:12.928848 aggnd 141454679 R rec 22e48e84-8e8e-430e-8d71-2500d18eddf5 -2023-07-08 08:17:13.005682 2023-07-08 08:17:13.005687 aggnd 141463740 R rec 3afb944a-87f6-4a6e-8087-12bcf0d17c8b -2023-07-08 08:17:13.098648 2023-07-08 08:17:13.09866 aggnd 141475366 R rec 10124fc6-115a-469f-8757-653136ab65ec -2023-07-08 08:17:13.189426 2023-07-08 08:17:13.189436 aggnd 14151289X R rec 49b1f4b3-a978-4360-8cd1-c3419b7d5a56 -2023-07-08 08:17:13.293228 2023-07-08 08:17:13.293234 aggnd 141518707 R rec 99994f56-d238-4921-a1d6-1a6d11cdc962 -2023-07-08 08:17:13.391023 2023-07-08 08:17:13.391029 aggnd 141531142 R rec 4ef7e0a4-54bb-414c-8b1f-d84cb99e30c7 -2023-07-08 08:17:13.468919 2023-07-08 08:17:13.468935 aggnd 141546891 R rec 34ea425d-2fbe-4077-963d-a00f3cec3da9 -2023-07-08 08:17:13.56009 2023-07-08 08:17:13.560097 aggnd 141569344 R rec 2379b30f-eb06-420f-a0fc-1d40c1ded330 -2023-07-08 08:17:13.646958 2023-07-08 08:17:13.64697 aggnd 141630531 R rec 9be9d827-fedd-4ffd-a091-01cdc1a1732a -2023-07-08 08:17:13.737925 2023-07-08 08:17:13.737941 aggnd 141639490 R rec 5b5cc5b1-66e6-4070-ae3a-eff2f74061f3 -2023-07-08 08:17:13.841301 2023-07-08 08:17:13.841307 aggnd 141657278 R rec 1605348f-25d2-4591-bd78-1eed5075b29a -2023-07-08 08:17:13.943833 2023-07-08 08:17:13.943845 aggnd 14167220X R rec e1d47b91-ccff-45d1-8af4-dec4a43a953a -2023-07-08 08:17:14.053821 2023-07-08 08:17:14.053832 aggnd 141675330 R rec d765586b-ea21-4ff2-be0b-2639beefa709 -2023-07-08 08:17:14.141693 2023-07-08 08:17:14.141698 aggnd 141707151 R rec 83093589-ecb1-4ef2-a685-eb74c1670791 -2023-07-08 08:17:14.228398 2023-07-08 08:17:14.228405 aggnd 141709499 R rec f5c12636-b123-4e72-8812-6efb769a3f56 -2023-07-08 08:17:14.317488 2023-07-08 08:17:14.317503 aggnd 141752025 R rec b42dcc17-58ec-4199-b8d5-b3a83aa61173 -2023-07-08 08:17:14.408154 2023-07-08 08:17:14.408159 aggnd 141780940 R rec 046db179-2b90-4d06-b762-1b997d7b37b9 -2023-07-08 08:17:14.505659 2023-07-08 08:17:14.505671 aggnd 141820209 R rec fee8c726-0af6-47e7-a133-71c89b0cb24f -2023-07-08 08:17:14.600959 2023-07-08 08:17:14.600977 aggnd 141833475 R rec 18715bf9-18ac-4595-a8af-9587927229d8 -2023-07-08 08:17:14.675873 2023-07-08 08:17:14.675879 aggnd 141839422 R rec b30d1a01-fe9c-4439-85cb-1504784da448 -2023-07-08 08:17:14.762313 2023-07-08 08:17:14.762319 aggnd 141851910 R rec fd7e6dfb-0b1a-4716-8ee7-dfaa565027e0 -2023-07-08 08:17:14.831033 2023-07-08 08:17:14.831039 aggnd 141864893 R rec f9a8c10a-588d-4ef5-bfd3-be5edec50dc6 -2023-07-08 08:17:14.910381 2023-07-08 08:17:14.910388 aggnd 141874325 R rec abae1af2-abc6-402f-bb74-f7b3e3ec5853 -2023-07-08 08:17:14.988824 2023-07-08 08:17:14.988834 aggnd 141919558 R rec d200cb16-51e4-4137-9226-b021fe272ae0 -2023-07-08 08:17:15.074341 2023-07-08 08:17:15.074346 aggnd 141944447 R rec 4d4733b1-4252-4c6a-bb91-3e8bc923ff55 -2023-07-08 08:17:15.155446 2023-07-08 08:17:15.155451 aggnd 14194479X R rec a5389bc6-3bbe-4ba8-b201-e85b5968aa64 -2023-07-08 08:17:15.231564 2023-07-08 08:17:15.231569 aggnd 141961406 R rec 93403f72-4c5e-483e-b894-e33122bc28c9 -2023-07-08 08:17:15.309774 2023-07-08 08:17:15.30978 aggnd 141969016 R rec e94f16b1-12ee-44c6-a0e6-ab48f9c0a2f9 -2023-07-08 08:17:15.41145 2023-07-08 08:17:15.41146 aggnd 141980516 R rec 48cb26dc-6f23-49fc-8046-3a74daab5d5c -2023-07-08 08:17:15.510273 2023-07-08 08:17:15.51028 aggnd 14198970X R rec 120e3fb7-5ceb-43b1-9ca8-9e054799f721 -2023-07-08 08:17:15.593002 2023-07-08 08:17:15.593007 aggnd 141990600 R rec cf6bf8fa-17ba-4f74-a5f2-d1ef8eba6be0 -2023-07-08 08:17:15.670816 2023-07-08 08:17:15.670827 aggnd 142004634 R rec 1439139a-ac21-45bf-94d3-914f0891fc9c -2023-07-08 08:17:15.768098 2023-07-08 08:17:15.768116 aggnd 142042544 R rec 6c036eb4-6497-432b-be7d-03abfc3caffa -2023-07-08 08:17:15.862016 2023-07-08 08:17:15.862028 aggnd 142047465 R rec 0dbf67d9-0980-44bd-b528-36e0e11e8210 -2023-07-08 08:17:15.953922 2023-07-08 08:17:15.953933 aggnd 142047678 R rec de3dcb82-7e92-4f82-9c35-2ef5192a2f8f -2023-07-08 08:17:16.047121 2023-07-08 08:17:16.047132 aggnd 142098256 R rec c92ff15b-4d1d-4112-8b3d-086e477abf51 -2023-07-08 08:17:16.154356 2023-07-08 08:17:16.154368 aggnd 142138894 R rec 87666121-15b8-4836-a2ee-6a9540945f5d -2023-07-08 08:17:16.255075 2023-07-08 08:17:16.25508 aggnd 142174610 R rec 0e5d2540-ec31-47e3-8a8b-2f9bd5ccb775 -2023-07-08 08:17:16.353174 2023-07-08 08:17:16.353192 aggnd 142191663 R rec b8693b36-d49a-4b28-82a3-f46e2f21bc6c -2023-07-08 08:17:16.437595 2023-07-08 08:17:16.437607 aggnd 142206725 R rec 3b8dbfe2-0f52-46fa-9a99-f3451eb92d6e -2023-07-08 08:17:16.536842 2023-07-08 08:17:16.536854 aggnd 142208035 R rec 05ce5ba8-f9b0-4958-a41a-e921bcb21ff5 -2023-07-08 08:17:16.655657 2023-07-08 08:17:16.655663 aggnd 142211117 R rec e810601c-16dc-4407-8bd9-e6dbcb5237ba -2023-07-08 08:17:16.766611 2023-07-08 08:17:16.766622 aggnd 142218685 R rec 8f599f38-a220-4ca9-a256-2f2eca47cf90 -2023-07-08 08:17:16.864924 2023-07-08 08:17:16.864934 aggnd 142233307 R rec 993705c6-2566-4ff7-a6c7-bac47ddc303a -2023-07-08 08:17:16.972283 2023-07-08 08:17:16.972294 aggnd 142248010 R rec af6b06ff-7667-42ad-89cc-dadbac11c02d -2023-07-08 08:17:17.071755 2023-07-08 08:17:17.071764 aggnd 142254193 R rec 917e5ac8-3de6-417d-8d8d-7a4cc6f77c8d -2023-07-08 08:17:17.176084 2023-07-08 08:17:17.176095 aggnd 142291684 R rec a7a53132-a17e-4b8c-bd36-6b2464227680 -2023-07-08 08:17:17.270738 2023-07-08 08:17:17.270743 aggnd 142310778 R rec fbe8dfee-c828-4655-9160-331d3f07ca70 -2023-07-08 08:17:17.384354 2023-07-08 08:17:17.384367 aggnd 142328588 R rec c6f36cc2-c5c7-46b4-8e2d-ef464b692121 -2023-07-08 08:17:17.493509 2023-07-08 08:17:17.493516 aggnd 142468614 R rec 22886a9c-0460-4916-b337-0d04365b2350 -2023-07-08 08:17:17.617585 2023-07-08 08:17:17.617598 aggnd 14250923X R rec e50a542e-d7ed-4445-849b-40e4fbf48acb -2023-07-08 08:17:17.729023 2023-07-08 08:17:17.729028 aggnd 142554197 R rec ecc1ba18-a03a-466b-899b-71313f6c7da2 -2023-07-08 08:17:17.818318 2023-07-08 08:17:17.818333 aggnd 142619930 R rec 9506b8b5-a8b0-485b-b08a-52b2bb950582 -2023-07-08 08:17:17.91028 2023-07-08 08:17:17.910286 aggnd 142643742 R rec bb8a1747-28ee-4b89-89a0-06c2a2a21245 -2023-07-08 08:17:18.002403 2023-07-08 08:17:18.002414 aggnd 142693634 R rec c5023cc6-b4c7-4b29-8c5b-a325cf3cfccc -2023-07-08 08:17:18.108748 2023-07-08 08:17:18.108761 aggnd 142697354 R rec 683e78ff-c2f9-45c0-96e5-05ab2f98c505 -2023-07-08 08:17:18.195676 2023-07-08 08:17:18.195686 aggnd 142717126 R rec ac971e55-2461-49a7-8ab3-058c82830815 -2023-07-08 08:17:18.288034 2023-07-08 08:17:18.288039 aggnd 142751464 R rec c9cee7d1-dd16-4f57-adff-11b31460f03b -2023-07-08 08:17:18.380984 2023-07-08 08:17:18.380991 aggnd 142757640 R rec 6543debd-05b6-4a46-83a5-1cb69675f4ba -2023-07-08 08:17:18.457432 2023-07-08 08:17:18.457438 aggnd 142767549 R rec c5a472cb-83ad-4c28-8031-c112a0566b3e -2023-07-08 08:17:18.536871 2023-07-08 08:17:18.536883 aggnd 142782629 R rec 30b65d32-a92e-4abf-8793-ffcf14bc389a -2023-07-08 08:17:18.64335 2023-07-08 08:17:18.643361 aggnd 142784338 R rec 1fb81f4a-48b5-4412-ad4d-d86cf54f8420 -2023-07-08 08:17:18.741957 2023-07-08 08:17:18.741965 aggnd 142806943 R rec b77f09f1-c9de-4a9b-bd89-0acf85a32fc1 -2023-07-08 08:17:18.830837 2023-07-08 08:17:18.830849 aggnd 142837431 R rec 33a95d87-39f3-47f9-80ff-1e52c6d2d64e -2023-07-08 08:17:18.908911 2023-07-08 08:17:18.908921 aggnd 142874906 R rec a5e675c6-d42e-4aa4-b03c-3f7e2f17d2cd -2023-07-08 08:17:18.998349 2023-07-08 08:17:18.998365 aggnd 142877174 R rec 7b6c7ccf-531d-499a-bde1-6030a770d459 -2023-07-08 08:17:19.080582 2023-07-08 08:17:19.080588 aggnd 142881430 R rec 7781f1a6-ca01-4ac0-9154-bffee8ea9267 -2023-07-08 08:17:19.151525 2023-07-08 08:17:19.151537 aggnd 142894745 R rec 9d481505-db8b-4797-8b89-3f28e4c93a1a -2023-07-08 08:17:19.245432 2023-07-08 08:17:19.245437 aggnd 142899615 R rec 2a2a8d6d-978a-4be9-a9fe-348ef64610b4 -2023-07-08 08:17:19.347622 2023-07-08 08:17:19.347633 aggnd 142910406 R rec e9c67bce-4088-43a1-a25f-da81256be034 -2023-07-08 08:17:19.449276 2023-07-08 08:17:19.449288 aggnd 142915637 R rec 44c1e15a-82cd-44cd-acca-e2397cbe82d8 -2023-07-08 08:17:19.557915 2023-07-08 08:17:19.557921 aggnd 142944548 R rec 0d9dc358-061b-4cea-9a9d-081ab80d2393 -2023-07-08 08:17:19.66049 2023-07-08 08:17:19.6605 aggnd 142979597 R rec e3f3925c-7d9a-490a-bed7-4254d5ed1ad7 -2023-07-08 08:17:19.76104 2023-07-08 08:17:19.761051 aggnd 14299670X R rec d0a7040f-324c-4e3e-886f-b521da690516 -2023-07-08 08:17:19.858462 2023-07-08 08:17:19.858467 aggnd 143008900 R rec 6e662392-ad96-401d-ab3c-ac9c0c1a7d99 -2023-07-08 08:17:19.946507 2023-07-08 08:17:19.946519 aggnd 143059424 R rec 666306f7-3be9-4a96-9ef0-e9b91a278bfe -2023-07-08 08:17:20.040763 2023-07-08 08:17:20.040774 aggnd 143063324 R rec 4f57fdd9-f911-4e67-877d-6a661948b146 -2023-07-08 08:17:20.129562 2023-07-08 08:17:20.129568 aggnd 143068547 R rec e88f3d88-23f6-44e5-bce8-3bbabf05577a -2023-07-08 08:17:20.209251 2023-07-08 08:17:20.209256 aggnd 143107291 R rec 94330426-e870-49b5-aca1-fa4db39e9e5d -2023-07-08 08:17:20.300478 2023-07-08 08:17:20.300484 aggnd 143130706 R rec 7dbb5a59-9e5e-40cc-86a7-441f3aa80bd5 -2023-07-08 08:17:20.404194 2023-07-08 08:17:20.404207 aggnd 143138901 R rec f671e92b-1c0d-462d-af28-1e90e73809df -2023-07-08 08:17:20.503349 2023-07-08 08:17:20.503355 aggnd 143152807 R rec d8a91e3a-a2a2-45b9-a069-bdad9758d493 -2023-07-08 08:17:20.576493 2023-07-08 08:17:20.576503 aggnd 143164406 R rec 39c3fc42-b0fc-4ab0-a2ea-69ff4db2b9b8 -2023-07-08 08:17:20.643467 2023-07-08 08:17:20.643473 aggnd 143170899 R rec 8ada2fd8-0e6c-4316-9396-34cce27b8be3 -2023-07-08 08:17:20.717358 2023-07-08 08:17:20.717369 aggnd 143182846 R rec 881d2040-5a93-4831-9366-d6f09286a63c -2023-07-08 08:17:20.811963 2023-07-08 08:17:20.811973 aggnd 143199897 R rec 996d24b6-d654-40a1-9e4b-1ec8ed7f9935 -2023-07-08 08:17:20.885301 2023-07-08 08:17:20.885307 aggnd 14320212X R rec 69988dd8-aabf-4997-9983-f7b23a3bf776 -2023-07-08 08:17:20.957624 2023-07-08 08:17:20.957629 aggnd 143203576 R rec 7cbb66ba-b63a-4e54-89ba-df9e628fbcfb -2023-07-08 08:17:21.052641 2023-07-08 08:17:21.052656 aggnd 143204718 R rec 55c5e8d6-c2e4-4384-b67c-51de40a82616 -2023-07-08 08:17:21.138903 2023-07-08 08:17:21.138908 aggnd 143231499 R rec fe9d69e1-6fb9-463c-a292-c06a0d49dd42 -2023-07-08 08:17:21.22165 2023-07-08 08:17:21.22166 aggnd 14326589X R rec 2baf4e29-cba0-4a19-8557-87764633e741 -2023-07-08 08:17:21.33336 2023-07-08 08:17:21.333373 aggnd 14327810X R rec d2a31d12-3454-4afc-8f89-112c5a80df37 -2023-07-08 08:17:21.420859 2023-07-08 08:17:21.420874 aggnd 143326694 R rec 58804af2-98d2-495b-a5cb-2e3b51e919ae -2023-07-08 08:17:21.516888 2023-07-08 08:17:21.516903 aggnd 143341847 R rec 265a265d-a46e-4b3c-99a4-7d6936803ac7 -2023-07-08 08:17:21.612027 2023-07-08 08:17:21.61204 aggnd 14334739X R rec 6e3715fe-99c7-43ee-8d79-1c990d0c9f5a -2023-07-08 08:17:21.691268 2023-07-08 08:17:21.691278 aggnd 143349791 R rec f7b6de46-ada1-4ae2-944a-6ce489fdfd68 -2023-07-08 08:17:21.794679 2023-07-08 08:17:21.79469 aggnd 143350285 R rec d906818e-7167-4d19-8833-e8dbecad8da2 -2023-07-08 08:17:21.891949 2023-07-08 08:17:21.891954 aggnd 143366254 R rec 50b363a4-4fed-4936-ac77-051f38f7a168 -2023-07-08 08:17:21.982804 2023-07-08 08:17:21.982815 aggnd 143371193 R rec 68db1f0f-2a9e-450f-ad81-84dddf9c08f6 -2023-07-08 08:17:22.084963 2023-07-08 08:17:22.084974 aggnd 143380583 R rec a15f1582-c7a8-4ccc-a832-b640aff08a56 -2023-07-08 08:17:22.171215 2023-07-08 08:17:22.171233 aggnd 143441450 R rec 5326839c-3d10-4c94-b951-1bed92d7aa3c -2023-07-08 08:17:22.262865 2023-07-08 08:17:22.26287 aggnd 143443011 R rec 39651fcb-8b68-4734-8c7f-aa050f7621de -2023-07-08 08:17:22.331589 2023-07-08 08:17:22.331594 aggnd 143464000 R rec c1d22a33-0dec-4b1e-9e36-cee1a1427d5a -2023-07-08 08:17:22.42809 2023-07-08 08:17:22.428095 aggnd 143465147 R rec 4803e9e7-09a4-4941-90e7-359009e89d9a -2023-07-08 08:17:22.513813 2023-07-08 08:17:22.513824 aggnd 143505165 R rec 83858226-ad7d-4114-8d0a-8b19921e5fae -2023-07-08 08:17:22.604232 2023-07-08 08:17:22.604244 aggnd 143511327 R rec b64fd3db-1547-48e2-8c15-6644f9b0527e -2023-07-08 08:17:22.69114 2023-07-08 08:17:22.691145 aggnd 143513796 R rec 1ec99fa4-a31c-43d4-9eb6-e520a102a5e8 -2023-07-08 08:17:22.809114 2023-07-08 08:17:22.809124 aggnd 143530879 R rec 34247111-04ec-4866-9772-904a92ba1067 -2023-07-08 08:17:22.899648 2023-07-08 08:17:22.899661 aggnd 143531468 R rec 6ae4190d-808c-40e9-926e-59073779b720 -2023-07-08 08:17:22.989 2023-07-08 08:17:22.989015 aggnd 143560794 R rec 39100a3f-523d-4d3d-a952-eee865b45e2f -2023-07-08 08:17:23.080418 2023-07-08 08:17:23.080424 aggnd 143583883 R rec 29779d7b-e3ce-4b5f-baa1-1d11e97272b0 -2023-07-08 08:17:23.167 2023-07-08 08:17:23.167013 aggnd 143606336 R rec 0fcf77fb-13c2-47c5-ba50-cc89f1f99c0e -2023-07-08 08:17:23.261035 2023-07-08 08:17:23.261046 aggnd 143612972 R rec f5e2ab1a-1329-4c70-a0ed-f65b4d00df9b -2023-07-08 08:17:23.342628 2023-07-08 08:17:23.342634 aggnd 143626655 R rec 65026e68-4bd2-4be2-9c45-17112c8d91c9 -2023-07-08 08:17:23.429085 2023-07-08 08:17:23.429091 aggnd 143641174 R rec 184bc7f8-0b79-4508-a10e-e7dcf88b2ad9 -2023-07-08 08:17:23.518849 2023-07-08 08:17:23.518862 aggnd 143661779 R rec 24f73a5f-ba40-4917-8ae9-0425dbb557e3 -2023-07-08 08:17:23.624903 2023-07-08 08:17:23.624916 aggnd 143679783 R rec fd4b74f7-817a-4db4-bc23-2540e1e4dbac -2023-07-08 08:17:23.707497 2023-07-08 08:17:23.707508 aggnd 14369877X R rec 5f6fd992-3842-4374-bf78-2c044a751b3b -2023-07-08 08:17:23.805408 2023-07-08 08:17:23.80542 aggnd 143700545 R rec 0978820a-57be-4243-b369-9e06c2f4aeb3 -2023-07-08 08:17:23.90354 2023-07-08 08:17:23.903556 aggnd 143720244 R rec e02a50fc-db59-49d4-a122-7a03ded76d0a -2023-07-08 08:17:23.995161 2023-07-08 08:17:23.995176 aggnd 143739050 R rec 9401bc3a-605b-4a80-b376-1acdad8a8343 -2023-07-08 08:17:24.098765 2023-07-08 08:17:24.098781 aggnd 143747835 R rec 812cfea4-f34d-47f8-b39d-7894ddef960b -2023-07-08 08:17:24.173245 2023-07-08 08:17:24.173256 aggnd 143755498 R rec 4cbfc5b7-fee1-4c64-901a-cf6f626ba96d -2023-07-08 08:17:24.26413 2023-07-08 08:17:24.264136 aggnd 14382399X R rec 43a3b22d-48f2-4c4b-863c-b8a7fcf3c135 -2023-07-08 08:17:24.347841 2023-07-08 08:17:24.34786 aggnd 143849107 R rec daaca093-489f-4e0b-b7a9-edb272636090 -2023-07-08 08:17:24.441712 2023-07-08 08:17:24.441717 aggnd 143873601 R rec 2e8043a3-fcfc-465a-bbe7-2e9bfedc3e9f -2023-07-08 08:17:24.543867 2023-07-08 08:17:24.543872 aggnd 143905856 R rec b04a7224-a805-48b5-878b-354f9091b853 -2023-07-08 08:17:24.63628 2023-07-08 08:17:24.636286 aggnd 143916629 R rec 55bc3b89-aec4-42ab-84e4-b3826301b8db -2023-07-08 08:17:24.710095 2023-07-08 08:17:24.7101 aggnd 143917889 R rec 9ebc3769-ce89-4d38-8da6-2b904cc69116 -2023-07-08 08:17:24.799012 2023-07-08 08:17:24.799032 aggnd 143929496 R rec 86687c8e-3cc5-45df-97b0-d01e029e48e9 -2023-07-08 08:17:24.893561 2023-07-08 08:17:24.893572 aggnd 143934821 R rec dd6a7edc-1d53-4a57-b835-320c92129f10 -2023-07-08 08:17:24.977671 2023-07-08 08:17:24.977682 aggnd 143941844 R rec 1a587e57-2fbd-40c3-acf2-da588fdd8105 -2023-07-08 08:17:25.070915 2023-07-08 08:17:25.070934 aggnd 143985418 R rec e073a9ea-11a6-4e82-8133-41a2747d80f9 -2023-07-08 08:17:25.168757 2023-07-08 08:17:25.168775 aggnd 144017229 R rec 5deb45b1-bb9c-4b53-a172-b39a49bccc0f -2023-07-08 08:17:25.253482 2023-07-08 08:17:25.253488 aggnd 144040182 R rec e5ee9e84-7729-4df0-9e62-a5e4ab606a08 -2023-07-08 08:17:25.381971 2023-07-08 08:17:25.381983 aggnd 158403487 R rec dae9444d-3968-40d9-9750-3b1d54f02db8 -2023-07-08 08:17:25.477647 2023-07-08 08:17:25.477663 aggnd 170056937 R rec f6177e60-8f00-480c-ae00-3ee5a0896d60 -2023-07-08 08:17:25.572135 2023-07-08 08:17:25.572148 aggnd 17014514X R rec fb00143b-155f-4e5d-84d4-c6ee2d41fe19 -2023-07-08 08:17:25.668486 2023-07-08 08:17:25.668498 aggnd 17017252X R rec 8438e7dd-5f45-45a4-8811-b404b9dc1d50 -2023-07-08 08:17:25.775089 2023-07-08 08:17:25.775095 aggnd 170229955 R rec 97400643-75db-45d5-b704-0808726ba988 -2023-07-08 08:17:25.866069 2023-07-08 08:17:25.866085 aggnd 170238873 R rec 647a520a-7148-4672-a5b5-16df5e812931 -2023-07-08 08:17:25.953461 2023-07-08 08:17:25.953466 aggnd 17027926X R rec a54ff775-d8cd-42f8-8624-fa0f12a7e5a5 -2023-07-08 08:17:26.058558 2023-07-08 08:17:26.058563 aggnd 170299597 R rec f94e3c93-8864-4620-ac69-41c535af4eea -2023-07-08 08:17:26.153779 2023-07-08 08:17:26.153786 aggnd 170311295 R rec 0bfbf8d1-3475-4c0c-b775-8f60c94b6756 -2023-07-08 08:17:26.251733 2023-07-08 08:17:26.251738 aggnd 170322122 R rec e000094e-e362-47af-8de5-55a3754036c9 -2023-07-08 08:17:26.342651 2023-07-08 08:17:26.342656 aggnd 170395839 R rec 5af3bf5b-7106-44be-8a2c-d0bb4b7e118e -2023-07-08 08:17:26.434962 2023-07-08 08:17:26.434974 aggnd 170402584 R rec b99eb2f7-0841-4f91-8afd-72d6f52cd4cf -2023-07-08 08:17:26.535207 2023-07-08 08:17:26.535213 aggnd 170410633 R rec 9bad8931-8d8d-4a3a-a974-c276aea7ed0c -2023-07-08 08:17:26.618074 2023-07-08 08:17:26.61808 aggnd 170454428 R rec 8df77bcd-a972-4d5c-be98-5e3ca7197474 -2023-07-08 08:17:26.698379 2023-07-08 08:17:26.698384 aggnd 170502708 R rec 5156126a-bcb4-4b49-a3c7-f835a01a9ea2 -2023-07-08 08:17:26.769416 2023-07-08 08:17:26.769422 aggnd 170678253 R rec 0fbff605-9a59-4532-8a84-5313b76f6a07 -2023-07-08 08:17:26.84047 2023-07-08 08:17:26.840475 aggnd 170725383 R rec f2547d49-8a88-4f6f-a71a-ff8a0591ed7f -2023-07-08 08:17:26.909777 2023-07-08 08:17:26.909783 aggnd 170813010 R rec 6c4aa7bc-70d0-4d40-87c6-60afc7f5be3a -2023-07-08 08:17:26.978943 2023-07-08 08:17:26.978949 aggnd 170877965 R rec 8ff2629d-b039-4256-be47-49d2d8a5dcb4 -2023-07-08 08:17:27.048476 2023-07-08 08:17:27.048481 aggnd 170952320 R rec b8c182ec-d01d-4d97-9fd9-d7a85b209633 -2023-07-08 08:17:27.115317 2023-07-08 08:17:27.115323 aggnd 170996085 R rec f7da1de5-0e7a-48d0-adcb-0393cd037285 -2023-07-08 08:17:27.186433 2023-07-08 08:17:27.186438 aggnd 171052412 R rec 65ab407c-360f-4182-9a0e-d2041fa99e16 -2023-07-08 08:17:27.262364 2023-07-08 08:17:27.262373 aggnd 171082079 R rec 9ecbbc12-9094-45e0-bdbc-2ddc1f7dc2a6 -2023-07-08 08:17:27.347052 2023-07-08 08:17:27.34707 aggnd 171217772 R rec 8649d0c7-1a4a-4480-ab03-e8bfc2e0a008 -2023-07-08 08:17:27.440503 2023-07-08 08:17:27.440508 aggnd 171283899 R rec ee84228b-d5a5-4873-bbd7-ad3929a6ac0c -2023-07-08 08:17:27.535807 2023-07-08 08:17:27.535825 aggnd 171302605 R rec dc1447ba-bb25-4e72-8166-2892a20fdb07 -2023-07-08 08:17:27.629062 2023-07-08 08:17:27.629073 aggnd 171346424 R rec 52cf6c40-a770-4d81-9f24-5ace226955ff -2023-07-08 08:17:27.708962 2023-07-08 08:17:27.708968 aggnd 171367421 R rec 6dc84181-d1cf-4b54-aaa7-52034ff6c14a -2023-07-08 08:17:27.795624 2023-07-08 08:17:27.795635 aggnd 171541545 R rec 070cab89-34c3-441b-9b55-f6ddb5286850 -2023-07-08 08:17:27.885623 2023-07-08 08:17:27.885635 aggnd 171555430 R rec 985eeef9-96a3-4398-89b4-8925b61c6cc9 -2023-07-08 08:17:27.966331 2023-07-08 08:17:27.966347 aggnd 171629353 R rec 1209809b-d40c-4ab5-9a67-f5fbfa23969a -2023-07-08 08:17:28.058845 2023-07-08 08:17:28.05885 aggnd 171634667 R rec 69a28e8e-2865-4530-a119-769fde57b27a -2023-07-08 08:17:28.147609 2023-07-08 08:17:28.147615 aggnd 171707788 R rec 3d77b35c-2805-4e2a-9c21-5924c6be635b -2023-07-08 08:17:28.249211 2023-07-08 08:17:28.249217 aggnd 171735099 R rec adfa7bec-eace-4049-87af-b771931c269c -2023-07-08 08:17:28.347267 2023-07-08 08:17:28.34728 aggnd 171781082 R rec b36f61f4-7f5f-4582-8688-07d0259e788a -2023-07-08 08:17:28.453993 2023-07-08 08:17:28.454009 aggnd 171827872 R rec c103d9f5-3aaa-4406-8d90-2f096ec7c097 -2023-07-08 08:17:28.556062 2023-07-08 08:17:28.55608 aggnd 17187935X R rec 407f7f8b-1975-474b-8bfd-3f5dc13aac10 -2023-07-08 08:17:28.641441 2023-07-08 08:17:28.641448 aggnd 171899660 R rec 7a16252e-c61b-4948-a5fc-86fd1f428970 -2023-07-08 08:17:28.731729 2023-07-08 08:17:28.731741 aggnd 17205821X R rec 9950e9bc-05b5-4e82-b350-a9211fed7e14 -2023-07-08 08:17:28.816346 2023-07-08 08:17:28.816357 aggnd 172140013 R rec cbaf385a-e65b-45d7-871f-03409c8497c4 -2023-07-08 08:17:28.936709 2023-07-08 08:17:28.936725 aggnd 172141788 R rec 58808764-5209-4476-80b6-14a36174ea9d -2023-07-08 08:17:29.042856 2023-07-08 08:17:29.042861 aggnd 172206790 R rec 833ab4b6-5aae-4466-90b0-cac6d9baa025 -2023-07-08 08:17:29.146289 2023-07-08 08:17:29.146297 aggnd 172224314 R rec c162825c-b451-498b-a815-775e846bb7d2 -2023-07-08 08:17:29.231615 2023-07-08 08:17:29.231621 aggnd 172252938 R rec 79e49f51-d6ab-48d3-b398-6be94762e572 -2023-07-08 08:17:29.328429 2023-07-08 08:17:29.328445 aggnd 172263840 R rec 2288b037-16f2-4e91-9e30-629d7b61c4f6 -2023-07-08 08:17:29.413224 2023-07-08 08:17:29.413242 aggnd 172325749 R rec 9e40474d-516e-4061-ab4f-e22947aadea8 -2023-07-08 08:17:29.507503 2023-07-08 08:17:29.507508 aggnd 172335450 R rec 61725cf7-6385-4f77-9542-f26bfd3c31f0 -2023-07-08 08:17:29.599566 2023-07-08 08:17:29.59958 aggnd 172435498 R rec 286f5901-8c06-41ac-bf0a-63ad2dc0ca6e -2023-07-08 08:17:29.678109 2023-07-08 08:17:29.678115 aggnd 172448611 R rec 965bd367-c11f-477c-9d9a-d93d8a7404bc -2023-07-08 08:17:29.770147 2023-07-08 08:17:29.770163 aggnd 17248491X R rec a0b39fef-5602-485e-be15-c92393c1bb66 -2023-07-08 08:17:29.874881 2023-07-08 08:17:29.874891 aggnd 172560462 R rec fcbd8ac6-abb4-46a7-babc-4dfa5e1236f9 -2023-07-08 08:17:29.974048 2023-07-08 08:17:29.974059 aggnd 172650003 R rec a366eaae-afe2-44f2-932e-063355d6bc62 -2023-07-08 08:17:30.07589 2023-07-08 08:17:30.075895 aggnd 172664128 R rec a18de5b5-d777-4a14-b932-f298510d9c74 -2023-07-08 08:17:30.165426 2023-07-08 08:17:30.165438 aggnd 172677335 R rec 08869372-e015-4230-b52b-19248e09cbb5 -2023-07-08 08:17:30.252263 2023-07-08 08:17:30.25227 aggnd 172710073 R rec a2e933ab-de45-4a2d-a267-eef1af389519 -2023-07-08 08:17:30.343911 2023-07-08 08:17:30.343918 aggnd 172712866 R rec c51a0df2-d757-41bf-8798-70c94c5886c1 -2023-07-08 08:17:30.426995 2023-07-08 08:17:30.427002 aggnd 17273889X R rec 489a3232-503a-47ad-b6ed-481d2ddbb859 -2023-07-08 08:17:30.509286 2023-07-08 08:17:30.509292 aggnd 172741912 R rec 6a0cf630-b52c-4ee1-a660-3248c2a30491 -2023-07-08 08:17:30.578606 2023-07-08 08:17:30.578614 aggnd 172821657 R rec 4665fc78-e795-4871-a9e8-415d0c935222 -2023-07-08 08:17:30.654571 2023-07-08 08:17:30.654578 aggnd 172937051 R rec 7b797e23-48bb-441c-ba55-3b2c38607036 -2023-07-08 08:17:30.800672 2023-07-08 08:17:30.800678 aggnd 172939755 R rec befdf9f3-d721-4a5c-9897-769a6ee40680 -2023-07-08 08:17:30.890325 2023-07-08 08:17:30.890331 aggnd 172953804 R rec 68ddfd1a-965c-458e-bd03-dcea3edc6da6 -2023-07-08 08:17:30.972959 2023-07-08 08:17:30.972965 aggnd 173016383 R rec 9169a7f2-e576-4dc6-925f-3a075c293215 -2023-07-08 08:17:31.056656 2023-07-08 08:17:31.056661 aggnd 173079466 R rec 094dc090-4979-4d58-bbc4-c462477591a5 -2023-07-08 08:17:31.129454 2023-07-08 08:17:31.129463 aggnd 173093086 R rec f3dbe770-84d0-41f1-b1a6-8128d9ab0da9 -2023-07-08 08:17:31.21193 2023-07-08 08:17:31.211935 aggnd 173112110 R rec 325a6e64-e06b-4e20-aba0-4d73e0704fc8 -2023-07-08 08:17:31.283714 2023-07-08 08:17:31.283719 aggnd 173120016 R rec b342e9d2-0456-4dd3-ac2c-1849caf7e7c2 -2023-07-08 08:17:31.360531 2023-07-08 08:17:31.360537 aggnd 173162061 R rec ca4b4a22-b137-4d7e-a708-a05313496816 -2023-07-08 08:17:31.429457 2023-07-08 08:17:31.429462 aggnd 17326851X R rec 5f51a8b5-49e8-45b0-b148-bfb4399d48a5 -2023-07-08 08:17:31.510515 2023-07-08 08:17:31.51052 aggnd 173287387 R rec 8672c41a-3d73-49de-9da3-29344e407815 -2023-07-08 08:17:31.590495 2023-07-08 08:17:31.590501 aggnd 173311660 R rec 99ead625-5dc9-4018-8911-339fb65f034d -2023-07-08 08:17:31.666608 2023-07-08 08:17:31.666616 aggnd 173395627 R rec 9c71e49e-1672-4a55-91e0-8ecf00fe97d8 -2023-07-08 08:17:31.739944 2023-07-08 08:17:31.739948 aggnd 17344511X R rec a5dca4a0-ea37-4513-89f0-5d8e81323eb4 -2023-07-08 08:17:31.810823 2023-07-08 08:17:31.810832 aggnd 173606091 R rec 5d876a2d-11f7-4590-baa5-97c60e257d45 -2023-07-08 08:17:31.8791 2023-07-08 08:17:31.879105 aggnd 17361860X R rec d829fe74-8a5f-4a0d-a16c-a2165d0585b3 -2023-07-08 08:17:31.947483 2023-07-08 08:17:31.947489 aggnd 173628257 R rec 6f10476a-1c52-418d-b2a6-0825e11167da -2023-07-08 08:17:32.021394 2023-07-08 08:17:32.021399 aggnd 173635385 R rec cf5f61a5-81eb-477f-9b87-d21905b8bb83 -2023-07-08 08:17:32.091765 2023-07-08 08:17:32.091771 aggnd 173674534 R rec dcad83c0-0f3e-4dfa-8620-1a599d0c0d12 -2023-07-08 08:17:32.161276 2023-07-08 08:17:32.161281 aggnd 173748856 R rec db0f2ca3-b392-4091-aefb-508decf1ae95 -2023-07-08 08:17:32.22748 2023-07-08 08:17:32.227485 aggnd 173756638 R rec d5e4416c-0d98-4167-91ae-a97602fdc000 -2023-07-08 08:17:32.299135 2023-07-08 08:17:32.299141 aggnd 173770401 R rec baa22a19-4c0e-4592-92ea-f1c05b229342 -2023-07-08 08:17:32.369951 2023-07-08 08:17:32.369961 aggnd 173774148 R rec 9f18951d-ad25-49f6-8d60-2f6c3c167b3a -2023-07-08 08:17:32.462069 2023-07-08 08:17:32.462081 aggnd 173774776 R rec e23bfd57-ee3f-44ba-8361-8ae72139e8cc -2023-07-08 08:17:32.542567 2023-07-08 08:17:32.542573 aggnd 173808085 R rec 280f8218-c20a-469a-b2ab-a7a029d812a1 -2023-07-08 08:17:32.615858 2023-07-08 08:17:32.61587 aggnd 173843034 R rec ba6cc0d2-9260-44e0-ab37-1ef99788adc7 -2023-07-08 08:17:32.699552 2023-07-08 08:17:32.699569 aggnd 173888135 R rec 7d7d529b-5ada-44bf-8c0c-6f1b82b5dbca -2023-07-08 08:17:32.79841 2023-07-08 08:17:32.798423 aggnd 173977669 R rec 5d3a0682-b921-42c7-a5c8-118f6e3c2187 -2023-07-08 08:17:32.888445 2023-07-08 08:17:32.888455 aggnd 174095139 R rec b292a831-7ef4-41ee-b882-b7baaa2ad58e -2023-07-08 08:17:32.975537 2023-07-08 08:17:32.975543 aggnd 174168616 R rec ac5cc782-5536-4705-b536-cd82c38658ca -2023-07-08 08:17:33.067818 2023-07-08 08:17:33.067833 aggnd 17420275X R rec 234e44b7-b653-484b-b7c1-543f327c1368 -2023-07-08 08:17:33.158206 2023-07-08 08:17:33.158212 aggnd 17422138X R rec b8cb6847-91c1-4da3-a60c-7d5b0a2dd18d -2023-07-08 08:17:33.241993 2023-07-08 08:17:33.241999 aggnd 174376391 R rec f9e8db3b-8606-4a9c-9599-44132e9e092d -2023-07-08 08:17:33.334627 2023-07-08 08:17:33.334642 aggnd 178767875 R rec 7e10f0d1-66a9-4ed3-a7d5-0bfe4e1334b5 -2023-07-08 08:17:33.448022 2023-07-08 08:17:33.448032 aggnd 189437065 R rec 9344cb7f-3335-4b62-935e-d9e9b33236f8 -2023-07-08 08:17:33.547023 2023-07-08 08:17:33.547034 aggnd 199160554 R rec 4251b634-a29f-4453-9f7e-9c48a3115724 -2023-07-08 08:17:33.649899 2023-07-08 08:17:33.649904 aggnd 320025594 R rec 1bd341ee-d336-47e2-85bb-5edf74b749f9 -2023-07-08 08:17:33.731735 2023-07-08 08:17:33.731752 aggnd 320038580 R rec d996a421-64c8-468e-929a-b80144dafa9f -2023-07-08 08:17:33.835853 2023-07-08 08:17:33.835864 aggnd 320040992 R rec 93a20199-5655-4fcc-bb6d-7fbed112838c -2023-07-08 08:17:33.929269 2023-07-08 08:17:33.92928 aggnd 320067661 R rec 65102053-d068-447b-9338-e957664b86a3 -2023-07-08 08:17:34.033078 2023-07-08 08:17:34.033097 aggnd 320070522 R rec d88c42b4-5f43-4883-a4a3-b2d1743b4de6 -2023-07-08 08:17:34.147558 2023-07-08 08:17:34.147573 aggnd 320074129 R rec 655974af-da8a-4737-b8c0-e9aa158825ce -2023-07-08 08:17:34.228858 2023-07-08 08:17:34.228864 aggnd 320080242 R rec 2a21256e-0487-4a21-844c-82535dc39a24 -2023-07-08 08:17:34.308375 2023-07-08 08:17:34.308388 aggnd 320080366 R rec 937aae1e-37b2-4300-8e42-1a187347ea9c -2023-07-08 08:17:34.392753 2023-07-08 08:17:34.392759 aggnd 320093549 R rec 6ec72579-b714-4e19-8ae7-d174765e31b9 -2023-07-08 08:17:34.472192 2023-07-08 08:17:34.472197 aggnd 320111881 R rec a1d769b2-3134-4b53-b1c2-0e1ec809c0ee -2023-07-08 08:17:34.572661 2023-07-08 08:17:34.572674 aggnd 320153746 R rec 753c3adb-0e7c-4678-a715-ae83977b4f0e -2023-07-08 08:17:34.659611 2023-07-08 08:17:34.659617 aggnd 320168328 R rec 3d0cdaa6-decf-4a17-9210-af42f9c9f6ab -2023-07-08 08:17:34.734185 2023-07-08 08:17:34.734197 aggnd 320188760 R rec 3e3dd6e4-4208-4020-a8ee-b3abe6c1c525 -2023-07-08 08:17:34.833463 2023-07-08 08:17:34.833475 aggnd 320196321 R rec 8a8d7559-a06b-4d25-ac71-1c22e79820de -2023-07-08 08:17:34.924963 2023-07-08 08:17:34.924969 aggnd 320202593 R rec e2843269-780e-4c41-b0ce-f47c302d87a2 -2023-07-08 08:17:35.001646 2023-07-08 08:17:35.001661 aggnd 320218694 R rec b55b3746-7657-4657-a79a-a72a65046794 -2023-07-08 08:17:35.089465 2023-07-08 08:17:35.089475 aggnd 320234975 R rec d595d583-d1a9-45bf-a26d-2ba8b7e154db -2023-07-08 08:17:35.174763 2023-07-08 08:17:35.174768 aggnd 320236706 R rec aa4a9424-ff4d-49dd-82fd-c6d96700fc20 -2023-07-08 08:17:35.242477 2023-07-08 08:17:35.242482 aggnd 320290239 R rec 9269a4ad-3821-4d62-8360-d20c7d996542 -2023-07-08 08:17:35.316554 2023-07-08 08:17:35.316565 aggnd 320292746 R rec d555eefe-bf58-4e17-90cf-380c65768265 -2023-07-08 08:17:35.407451 2023-07-08 08:17:35.407467 aggnd 320319008 R rec f24cc8f2-d205-4242-aae5-e9d51a3f5d89 -2023-07-08 08:17:35.495545 2023-07-08 08:17:35.495551 aggnd 320328074 R rec 377ef229-92fe-445d-961f-8de0e1566e92 -2023-07-08 08:17:35.640057 2023-07-08 08:17:35.640063 aggnd 32032964X R rec 16416c7d-c761-4a56-a43f-443a322cd601 -2023-07-08 08:17:35.718299 2023-07-08 08:17:35.71831 aggnd 320334988 R rec b23dce66-529d-4d91-b569-bf3b908beb86 -2023-07-08 08:17:35.783851 2023-07-08 08:17:35.783856 aggnd 320354202 R rec 6c2ce0b8-3809-4107-82d1-527ac7c0e77b -2023-07-08 08:17:35.855407 2023-07-08 08:17:35.855412 aggnd 320364879 R rec 4cb14de0-3dce-4bc9-92c1-bc565b15bdca -2023-07-08 08:17:35.950234 2023-07-08 08:17:35.950245 aggnd 320366510 R rec 5f629f52-2795-4e52-b301-1d7d05f888ab -2023-07-08 08:17:36.038246 2023-07-08 08:17:36.038272 aggnd 320368173 R rec 76d98429-5e4f-42aa-9260-b4ac896f973e -2023-07-08 08:17:36.13011 2023-07-08 08:17:36.130122 aggnd 320388387 R rec a88ca0d3-9565-46b1-bc87-b3658b0ce515 -2023-07-08 08:17:36.204874 2023-07-08 08:17:36.204879 aggnd 320390268 R rec 8fa8c36a-eaee-42de-a1ea-2f43e0d42bfb -2023-07-08 08:17:36.299024 2023-07-08 08:17:36.299029 aggnd 320393690 R rec 049c8b2c-9c41-47f5-84da-cf064d92b9d4 -2023-07-08 08:17:36.38534 2023-07-08 08:17:36.385355 aggnd 320406407 R rec 070fb338-f74d-4c38-a89e-2bc3983b40bb -2023-07-08 08:17:36.49086 2023-07-08 08:17:36.490866 aggnd 320412733 R rec cb614855-befb-4992-b2d3-5883cd9451cf -2023-07-08 08:17:36.580627 2023-07-08 08:17:36.580632 aggnd 320418448 R rec 3346ab2e-46e5-43ba-a187-aacccde37192 -2023-07-08 08:17:36.67181 2023-07-08 08:17:36.671818 aggnd 320422739 R rec 2e623a0b-7650-4a09-87c2-5f3df577531b -2023-07-08 08:17:36.7856 2023-07-08 08:17:36.785611 aggnd 32043706X R rec 2657676a-7eac-4a16-99d1-36321fe4d4a7 -2023-07-08 08:17:36.877031 2023-07-08 08:17:36.877038 aggnd 320461394 R rec 91ffe0c8-e032-42b4-9c2f-b4d6a4a3ffe7 -2023-07-08 08:17:36.976862 2023-07-08 08:17:36.976868 aggnd 320475891 R rec d52b15a0-5c7e-4fbf-a0cd-08296d0c6077 -2023-07-08 08:17:37.071704 2023-07-08 08:17:37.071714 aggnd 320488063 R rec c3c08d1b-155f-4758-bf80-808e4b003105 -2023-07-08 08:17:37.159646 2023-07-08 08:17:37.159651 aggnd 32048906X R rec 3b28040b-7064-4cee-80fa-8c238dbf1fc0 -2023-07-08 08:17:37.233048 2023-07-08 08:17:37.233056 aggnd 320497070 R rec b28035d1-f359-4a51-8660-0784eecfce9f -2023-07-08 08:17:37.319454 2023-07-08 08:17:37.319465 aggnd 320506037 R rec 241256ff-cf11-4849-95b9-091dba8f2c49 -2023-07-08 08:17:37.415984 2023-07-08 08:17:37.415999 aggnd 320515206 R rec 81fc9630-29eb-4dbe-8ddf-e5bfa34c9c3d -2023-07-08 08:17:37.51711 2023-07-08 08:17:37.517126 aggnd 320532836 R rec e7784016-c117-492f-bc09-cf9e9d0ab0e6 -2023-07-08 08:17:37.622809 2023-07-08 08:17:37.622814 aggnd 320542173 R rec 9ced48ea-41f0-4f4c-842d-b7dc55f34324 -2023-07-08 08:17:37.692037 2023-07-08 08:17:37.692043 aggnd 320562425 R rec e309a622-c1e4-42a5-bc73-f8588cf54821 -2023-07-08 08:17:37.777884 2023-07-08 08:17:37.777895 aggnd 320577880 R rec 52762dbe-c0b2-4461-8ce5-547a891e20a6 -2023-07-08 08:17:37.860799 2023-07-08 08:17:37.860804 aggnd 320577929 R rec d6da88d0-c677-41ee-87b8-8044c8949c16 -2023-07-08 08:17:37.949033 2023-07-08 08:17:37.949048 aggnd 320579751 R rec 406b61a5-c78e-4b92-b28a-a4650e92701e -2023-07-08 08:17:38.038239 2023-07-08 08:17:38.03825 aggnd 320584739 R rec 682a1cb0-7a5e-445c-9bf8-334415d4775c -2023-07-08 08:17:38.126181 2023-07-08 08:17:38.126187 aggnd 320618439 R rec b507e11c-08fd-49de-832a-cdf9c9276c01 -2023-07-08 08:17:38.196439 2023-07-08 08:17:38.196445 aggnd 320631176 R rec fca8af4e-ff9b-452b-8b93-a321607c5a27 -2023-07-08 08:17:38.275893 2023-07-08 08:17:38.2759 aggnd 320642461 R rec cec458ba-897c-43ac-9e2d-a3cdbf96220a -2023-07-08 08:17:38.36842 2023-07-08 08:17:38.368433 aggnd 32064779X R rec 2c1d4c0b-c572-458e-9c50-4eb279bbc758 -2023-07-08 08:17:38.454436 2023-07-08 08:17:38.454443 aggnd 320648877 R rec 35d6ea9d-dea3-4917-b30c-94ad37a3c086 -2023-07-08 08:17:38.550351 2023-07-08 08:17:38.550361 aggnd 320655458 R rec 284dd46a-5515-4cbd-ac3a-7facf9e9fd34 -2023-07-08 08:17:38.640826 2023-07-08 08:17:38.640837 aggnd 320663817 R rec 297943e1-2c60-4f6b-a8bf-cef8c46acd79 -2023-07-08 08:17:38.718379 2023-07-08 08:17:38.718389 aggnd 320680169 R rec 2d310bdb-e1e4-48b6-b8f2-fbc24c7924d2 -2023-07-08 08:17:38.82926 2023-07-08 08:17:38.829266 aggnd 320694577 R rec f146a989-3809-44a3-a9b5-2c8e39b2bdc5 -2023-07-08 08:17:38.912505 2023-07-08 08:17:38.912515 aggnd 940254522 R rec 980b3150-f48e-4234-9ae2-681c832f4dcd -2023-07-08 08:17:39.007897 2023-07-08 08:17:39.007903 aggnd 940263920 R rec 1cb29d10-b7fa-40ac-886d-c7d81913b7e5 -2023-07-08 08:17:39.101624 2023-07-08 08:17:39.101636 aggnd 94027115X R rec 53512bca-2b7f-4291-bd7d-0dfcb128ac8f -2023-07-08 08:17:39.192636 2023-07-08 08:17:39.192642 aggnd 94037238X R rec c2baad33-af04-4503-89d6-cc502463b7f7 -2023-07-08 08:17:39.290085 2023-07-08 08:17:39.290089 aggnd 940374412 R rec 097ef2d5-2c31-4809-a657-687cf97de425 -2023-07-08 08:17:39.38717 2023-07-08 08:17:39.38718 aggnd 940433729 R rec d9185431-719f-49ca-acf7-350e511b68a6 -2023-07-08 08:17:39.477703 2023-07-08 08:17:39.477714 aggnd 940439611 R rec ec2876b2-932a-4a5f-86cb-d757b3a5870b -2023-07-08 08:17:39.569917 2023-07-08 08:17:39.569928 aggnd 940547880 R rec b3dc2bbe-2718-4a90-b55b-7941f7694ca4 -2023-07-08 08:17:39.661487 2023-07-08 08:17:39.661492 aggnd 940552337 R rec 2d36b4e0-b0e2-47e3-8bf0-bfed459a5aaf -2023-07-08 08:17:39.744393 2023-07-08 08:17:39.744405 aggnd 940717395 R rec 758d3326-14c9-40b5-bc7a-715f9c90d24e -2023-07-08 08:17:39.837737 2023-07-08 08:17:39.837752 aggnd 940975262 R rec 1b4f35dd-7d6e-488e-a061-cf85005b53ca -2023-07-08 08:17:39.934217 2023-07-08 08:17:39.934236 aggnd 940977877 R rec 7cde3807-42bf-4b96-b2fd-abd23cd7ff00 -2023-07-08 08:17:40.024274 2023-07-08 08:17:40.024279 aggnd 940981769 R rec 844e916c-1f79-4696-aec3-f4fcef99d83f -2023-07-08 08:17:40.110876 2023-07-08 08:17:40.110882 aggnd 940982315 R rec 5a005cc3-c4f5-41f7-ba91-e965358f2051 -2023-07-08 08:17:40.19368 2023-07-08 08:17:40.193686 aggnd 941017893 R rec 7282f5b4-58c5-421b-b537-5e1491c0b687 -2023-07-08 08:17:40.293601 2023-07-08 08:17:40.293606 aggnd 941089150 R rec d3fe77ff-43b3-45ee-b28f-7bc3283d4955 -2023-07-08 08:17:40.38476 2023-07-08 08:17:40.384771 aggnd 941275590 R rec 64879803-5af3-4433-9030-ff7072700c06 -2023-07-08 08:17:40.473092 2023-07-08 08:17:40.473099 aggnd 941281973 R rec 7b6a8b5b-58b9-4f23-8c8a-542bdd073004 -2023-07-08 08:17:40.550137 2023-07-08 08:17:40.550148 aggnd 941346447 R rec 75e451d2-a22b-48f4-9476-79e1f777d5b3 -2023-07-08 08:17:40.642505 2023-07-08 08:17:40.642511 aggnd 941637379 R rec 51c4b79c-a9ba-4837-8a25-5520b271b85a -2023-07-08 08:17:40.734585 2023-07-08 08:17:40.734597 aggnd 941671380 R rec 2f4542ed-bcd6-41c8-892c-a6c17ac51d0b -2023-07-08 08:17:40.83301 2023-07-08 08:17:40.83302 aggnd 94192582X R rec 74e62427-17c4-43a0-85db-de86c1f091a3 -2023-07-08 08:17:40.935264 2023-07-08 08:17:40.935275 aggnd 941943933 R rec ae6b292c-635b-4bae-b7b9-fddc6cfa4e33 -2023-07-08 08:17:41.053053 2023-07-08 08:17:41.053066 aggnd 941953912 R rec 6c43c897-9047-4f18-b330-dc333d7ce71f -2023-07-08 08:17:41.137709 2023-07-08 08:17:41.137714 aggnd 942048636 R rec 814994c8-2e27-4feb-8998-34156d7163aa -2023-07-08 08:17:41.210248 2023-07-08 08:17:41.210254 aggnd 94205086X R rec 76958ecf-9e15-40ca-950f-6c6d45fc37f7 -2023-07-08 08:17:41.281452 2023-07-08 08:17:41.281458 aggnd 942050878 R rec 886b3c75-2fc8-4203-91bf-3f3f0aa1e49b -2023-07-08 08:17:41.351354 2023-07-08 08:17:41.35136 aggnd 942070747 R rec 1ed14f0e-5366-46f2-a53b-b51dbcf67706 -2023-07-08 08:17:41.423828 2023-07-08 08:17:41.423836 aggnd 942199448 R rec b1950686-3da0-4729-872c-2da0645eec3a -2023-07-08 08:17:41.50233 2023-07-08 08:17:41.502336 aggnd 942320220 R rec ae2ece0e-d272-4719-8e2c-5eab251c0c5a -2023-07-08 08:17:41.570622 2023-07-08 08:17:41.570628 aggnd 942384849 R rec da554047-2f5f-4be9-8d82-ca0205a58056 -2023-07-08 08:17:41.644439 2023-07-08 08:17:41.644445 aggnd 94242283X R rec 415b5e3b-9d61-46ac-a67d-0fbb517cc3a0 -2023-07-08 08:17:41.71443 2023-07-08 08:17:41.714435 aggnd 942428595 R rec 86267db7-ac70-43a5-92cf-1b515d054bf8 -2023-07-08 08:17:41.789195 2023-07-08 08:17:41.7892 aggnd 942565762 R rec 837cadaf-502b-4165-ac39-8ed927f3de88 -2023-07-08 08:17:41.856973 2023-07-08 08:17:41.856978 aggnd 942662024 R rec 4026c486-a00a-4cd2-aa2f-31a775fdfcf8 -2023-07-08 08:17:41.928184 2023-07-08 08:17:41.928189 aggnd 942856015 R rec 7542eced-f8f8-4312-bec0-a57fd8186ad1 -2023-07-08 08:17:41.997712 2023-07-08 08:17:41.997718 aggnd 942894871 R rec 4c53fb1f-dac9-4e36-97dc-b4b64dc6c867 -2023-07-08 08:17:42.081052 2023-07-08 08:17:42.081058 aggnd 942904168 R rec aad453b1-bd45-4233-81f7-d3d6da6becb4 -2023-07-08 08:17:42.150947 2023-07-08 08:17:42.150952 aggnd 942915232 R rec a6aec3dc-3c1b-46e8-8228-77b1d54a3844 -2023-07-08 08:17:42.223204 2023-07-08 08:17:42.223209 aggnd 942918584 R rec 9b756eaa-5ac2-4ed1-b9b3-8f91dbffb05a -2023-07-08 08:17:42.29513 2023-07-08 08:17:42.295136 aggnd 942954297 R rec a0837d6e-ee25-4197-bb26-cf7b11e63dc7 -2023-07-08 08:17:42.369136 2023-07-08 08:17:42.369142 aggnd 942982096 R rec 57e42155-3e6b-4001-9851-c2d7efbeb463 -2023-07-08 08:17:42.466766 2023-07-08 08:17:42.466772 aggnd 943645956 R rec ffd85c08-4a2e-4556-a713-a72cb07a6016 -2023-07-08 08:17:42.534973 2023-07-08 08:17:42.534979 aggnd 943646448 R rec 2e4120fb-7e4d-455a-b22c-03228caef2ad -2023-07-08 08:17:42.613359 2023-07-08 08:17:42.613365 aggnd 943654904 R rec ae6c9614-0af7-4ea9-90b0-172915b6c35d -2023-07-08 08:17:42.693385 2023-07-08 08:17:42.693391 aggnd 943708826 R rec d1a94b5d-1255-40ec-9c78-6726521bc07f -2023-07-08 08:17:42.767828 2023-07-08 08:17:42.767837 aggnd 943780411 R rec ab07f321-94da-4f13-bc41-b66e656f1803 -2023-07-08 08:17:42.836032 2023-07-08 08:17:42.836038 aggnd 943780489 R rec 79f9e610-42db-4c42-b3cd-c3a042b3f402 -2023-07-08 08:17:42.903295 2023-07-08 08:17:42.9033 aggnd 943895758 R rec fddb7103-2f5f-4e7d-94ca-58b68b621b59 -2023-07-08 08:17:42.96728 2023-07-08 08:17:42.967286 aggnd 943900069 R rec 05e8b705-bd5d-460d-ab87-8ddeafd44547 -2023-07-08 08:17:43.041817 2023-07-08 08:17:43.041826 aggnd 943913152 R rec 040c00ef-f961-4d24-a2a3-84daa8227e5a -2023-07-08 08:17:43.139407 2023-07-08 08:17:43.139417 aggnd 943915236 R rec 7ec0247c-42ed-41e7-b267-5bcddb572559 -2023-07-08 08:17:43.232165 2023-07-08 08:17:43.23217 aggnd 944068960 R rec 3d08c693-037a-4bff-8e06-5fc8248080aa -2023-07-08 08:17:43.328514 2023-07-08 08:17:43.328525 aggnd 944075738 R rec 7b2c5769-4141-4ad5-b2d9-89ab04a2f8d4 -2023-07-08 08:17:43.434474 2023-07-08 08:17:43.434486 aggnd 944081274 R rec 78a1cd84-80be-4d7f-b0b5-2f30e4bfc90d -2023-07-08 08:17:43.526011 2023-07-08 08:17:43.526017 aggnd 944087809 R rec 47d2bd38-b312-453d-9cde-ebd40e3c94ef -2023-07-08 08:17:43.610291 2023-07-08 08:17:43.610301 aggnd 944148816 R rec 75bad8ff-c74d-4c95-8ae2-40ba9e2c8d66 -2023-07-08 08:17:43.696404 2023-07-08 08:17:43.696414 aggnd 944150284 R rec 76c90be9-4403-463d-aab0-f31adbcc4cbe -2023-07-08 08:17:43.792233 2023-07-08 08:17:43.79224 aggnd 944150381 R rec 285e3dcd-3c01-4d69-8eb1-1cf297a3ac06 -2023-07-08 08:17:43.887463 2023-07-08 08:17:43.887476 aggnd 944150993 R rec d4a203b1-2cbe-4c90-84de-6565e6fc7c88 -2023-07-08 08:17:43.97942 2023-07-08 08:17:43.979425 aggnd 944155383 R rec eb05132a-7bf1-402e-8094-c6a626eb6187 -2023-07-08 08:17:44.061902 2023-07-08 08:17:44.061913 aggnd 944191908 R rec f5c1957f-d796-416a-9e30-c1e01036f87a -2023-07-08 08:17:44.157548 2023-07-08 08:17:44.157559 aggnd 94419558X R rec f0f514ff-16f0-4f4c-ba38-e018deaa2dec -2023-07-08 08:17:44.231411 2023-07-08 08:17:44.231417 aggnd 944242898 R rec 36cc3713-1c53-4e92-8b77-09479c4cca12 -2023-07-08 08:17:44.317851 2023-07-08 08:17:44.317862 aggnd 944290604 R rec 7bf02196-3695-4ef7-8eb0-d73717b64b10 -2023-07-08 08:17:44.392745 2023-07-08 08:17:44.392751 aggnd 944393020 R rec b8a980cc-7616-4818-94d3-d1f4c8fc1b6e -2023-07-08 08:17:44.483098 2023-07-08 08:17:44.483108 aggnd 944405312 R rec 94ee6371-4b73-4bf7-9a6c-0acec1ea2bbb -2023-07-08 08:17:44.559149 2023-07-08 08:17:44.559158 aggnd 944548059 R rec 43dbfa1e-d1c7-44e1-bea6-c5f570aee23f -2023-07-08 08:17:44.644096 2023-07-08 08:17:44.644102 aggnd 944640206 R rec d047bb48-10e4-46b4-ab62-caae907a1747 -2023-07-08 08:17:44.720907 2023-07-08 08:17:44.72092 aggnd 944694845 R rec 6f10c7ec-e073-45f5-aa0d-f0e82524cbc4 -2023-07-08 08:17:44.808888 2023-07-08 08:17:44.808893 aggnd 944695167 R rec 77a0e87c-d7e1-486f-b5fe-e8747d06f296 -2023-07-08 08:17:44.88163 2023-07-08 08:17:44.88164 aggnd 944797199 R rec 2e7f7a39-54e3-45a2-8b50-3196ac7e799d -2023-07-08 08:17:44.966567 2023-07-08 08:17:44.966581 aggnd 944825028 R rec c6f8ca7d-57a2-4a4f-b292-6d23566d04dc -2023-07-08 08:17:45.058174 2023-07-08 08:17:45.058192 aggnd 944923313 R rec 947cbe9b-a56e-459b-ac31-589595117795 -2023-07-08 08:17:45.154941 2023-07-08 08:17:45.154957 aggnd 944929052 R rec c318b56e-66f2-4b73-bc72-0b813e80c8bf -2023-07-08 08:17:45.235933 2023-07-08 08:17:45.235938 aggnd 944929710 R rec c7e45689-3a87-4936-b739-bb2c3fbce4ad -2023-07-08 08:17:45.327414 2023-07-08 08:17:45.327421 aggnd 944941710 R rec 4dc57dfa-9b2a-4277-bd0c-28d7a111d669 -2023-07-08 08:17:45.419171 2023-07-08 08:17:45.419182 aggnd 94495068X R rec f48d5bd5-7543-4a02-92bc-2944d311c0ec -2023-07-08 08:17:45.515435 2023-07-08 08:17:45.515451 aggnd 944951910 R rec 4e21e5ca-92cd-41c0-b4ab-ae9c09abf992 -2023-07-08 08:17:45.626884 2023-07-08 08:17:45.62689 aggnd 944952976 R rec d395f261-eaed-4430-9c27-d28c0a7e0739 -2023-07-08 08:17:45.76187 2023-07-08 08:17:45.761881 aggnd 944953395 R rec 7863d9d1-d1e9-4119-bcea-15a1b70aa0a9 -2023-07-08 08:17:45.860075 2023-07-08 08:17:45.860084 aggnd 944963749 R rec d5386d1b-d0c5-4f7c-943b-2a58a3091676 -2023-07-08 08:17:45.968769 2023-07-08 08:17:45.968775 aggnd 944971318 R rec 583e56fe-d315-4659-acf9-a3dcd6295387 -2023-07-08 08:17:46.070784 2023-07-08 08:17:46.070791 aggnd 944978177 R rec aaeb385a-da84-4bbf-abd5-57bc5d7311d8 -2023-07-08 08:17:46.152397 2023-07-08 08:17:46.152407 aggnd 945028067 R rec 1b19c457-02d8-4904-8750-2b14cc9669a5 -2023-07-08 08:17:46.240223 2023-07-08 08:17:46.240228 aggnd 94504206X R rec 9d1836e0-9358-4956-9ce1-f504921effc2 -2023-07-08 08:17:46.355328 2023-07-08 08:17:46.355338 aggnd 945045972 R rec 008068c8-f6f5-460f-a898-9cc3f60d7ccb -2023-07-08 08:17:46.447963 2023-07-08 08:17:46.447975 aggnd 945048653 R rec 38ea7bab-56a1-4aa0-b367-cf155db6a1ae -2023-07-08 08:17:46.547407 2023-07-08 08:17:46.547418 aggnd 945073232 R rec 3c68a788-64e9-4603-bce0-8ce8c354b447 -2023-07-08 08:17:46.66017 2023-07-08 08:17:46.66018 aggnd 945074212 R rec ebb70a55-1f74-4a28-b6cf-532781b98e83 -2023-07-08 08:17:46.786346 2023-07-08 08:17:46.78636 aggnd 945079893 R rec eda08ded-9bbb-446f-9f69-80bb2bde3cd3 -2023-07-08 08:17:46.886877 2023-07-08 08:17:46.886893 aggnd 945102313 R rec 2b9b0bd6-b672-4969-a762-94ed0547921b -2023-07-08 08:17:46.978955 2023-07-08 08:17:46.978961 aggnd 945104138 R rec 8668858f-2bf4-4fb9-94a7-beec0b0065b6 -2023-07-08 08:17:47.071735 2023-07-08 08:17:47.071741 aggnd 945107129 R rec 4e51fad3-9234-4a5a-acd3-e70ac96e5930 -2023-07-08 08:17:47.143758 2023-07-08 08:17:47.143764 aggnd 94510877X R rec b7ad312f-3eb2-49a3-9230-d6da414e8325 -2023-07-08 08:17:47.246683 2023-07-08 08:17:47.246687 aggnd 945118805 R rec 1bfb0cdb-e13b-45d9-8dc0-7ea69c9965b4 -2023-07-08 08:17:47.348617 2023-07-08 08:17:47.348622 aggnd 945462891 R rec 62675c3d-1857-4764-9b99-a9be5fcbdf5f -2023-07-08 08:17:47.4492 2023-07-08 08:17:47.449211 aggnd 945492308 R rec 759ea9b4-f454-40ca-9f1b-26ed97253fc5 -2023-07-08 08:17:47.547562 2023-07-08 08:17:47.547575 aggnd 945504853 R rec 58ac2446-aba9-4b89-94e4-b9d5e826070c -2023-07-08 08:17:47.659442 2023-07-08 08:17:47.659454 aggnd 945555059 R rec d0901636-047d-45c6-bf18-e2be439579e1 -2023-07-08 08:17:47.735713 2023-07-08 08:17:47.735737 aggnd 945628889 R rec 3202bfe6-8d17-4d85-8070-79298fe05db6 -2023-07-08 08:17:47.812188 2023-07-08 08:17:47.812203 aggnd 945633696 R rec 762db0d3-a10b-43e5-8762-8d4fb8c1723a -2023-07-08 08:17:47.905644 2023-07-08 08:17:47.905655 aggnd 945708300 R rec fddf8178-4e4a-4c04-a2ad-138eb9670228 -2023-07-08 08:17:47.993106 2023-07-08 08:17:47.993112 aggnd 945710097 R rec 9c083d9e-59ec-4b9d-8a24-937ac6540443 -2023-07-08 08:17:48.067317 2023-07-08 08:17:48.067335 aggnd 945763395 R rec 22710eda-9b16-4644-98bf-cf018161629e -2023-07-08 08:17:48.160027 2023-07-08 08:17:48.160037 aggnd 945817428 R rec ff086d0b-d641-459b-8ad4-9963c466e6c2 -2023-07-08 08:17:48.24854 2023-07-08 08:17:48.248554 aggnd 945951590 R rec 4c968b4e-227f-421e-ad66-d2ce63b9c858 -2023-07-08 08:17:48.343786 2023-07-08 08:17:48.343797 aggnd 946180822 R rec bf5ab8cc-94ac-4368-befc-24ad3608f054 -2023-07-08 08:17:48.437496 2023-07-08 08:17:48.437508 aggnd 946246734 R rec ca20e96b-d945-4be2-b301-bc778aa47e71 -2023-07-08 08:17:48.529724 2023-07-08 08:17:48.529735 aggnd 946481911 R rec 62381ceb-ea8d-4b98-bb74-9aaf7980f10d -2023-07-08 08:17:48.617098 2023-07-08 08:17:48.617115 aggnd 946487537 R rec f729122b-aa7c-4384-a62b-3b927f9c9927 -2023-07-08 08:17:48.699967 2023-07-08 08:17:48.69998 aggnd 946515468 R rec a2cdf9dd-f21a-4600-98cc-876343342111 -2023-07-08 08:17:48.793069 2023-07-08 08:17:48.79308 aggnd 946592039 R rec 4043043b-de33-40e3-a241-05f7f6578375 -2023-07-08 08:17:48.883471 2023-07-08 08:17:48.883482 aggnd 946595259 R rec 3ddeb28c-f588-43ba-bf56-64dfcfd49be5 -2023-07-08 08:17:48.97107 2023-07-08 08:17:48.971086 aggnd 946597189 R rec be0fa4b8-6089-4d04-aa59-5b58a038e543 -2023-07-08 08:17:49.071582 2023-07-08 08:17:49.071593 aggnd 946686203 R rec d05b292f-4d46-4ba5-9435-1413ab3463b1 -2023-07-08 08:17:49.158666 2023-07-08 08:17:49.158671 aggnd 946688397 R rec 79964e6d-0848-4a9c-a7ea-cc11117f9bd5 -2023-07-08 08:17:49.231114 2023-07-08 08:17:49.231119 aggnd 946691215 R rec f913ef00-c6a6-4761-af3c-e0e3d773c692 -2023-07-08 08:17:49.301478 2023-07-08 08:17:49.301484 aggnd 94673271X R rec 12a35866-fab6-47a4-be2e-a243b407da1a -2023-07-08 08:17:49.372076 2023-07-08 08:17:49.372082 aggnd 946741077 R rec bb44bc79-33f6-4227-bbf6-e3327eb7db50 -2023-07-08 08:17:49.447973 2023-07-08 08:17:49.447979 aggnd 94687400X R rec 8310831d-3ac9-432d-80fe-de1367d7bb5c -2023-07-08 08:17:49.517978 2023-07-08 08:17:49.517984 aggnd 946875715 R rec 087086ed-751c-4325-8303-aef0321843c6 -2023-07-08 08:17:49.601533 2023-07-08 08:17:49.60154 aggnd 946923477 R rec 37829e3a-ca37-4548-876e-951484cbf54e -2023-07-08 08:17:49.680816 2023-07-08 08:17:49.680822 aggnd 947105735 R rec 9df95180-d5bb-49fe-a5f7-5dfb2191e943 -2023-07-08 08:17:49.748061 2023-07-08 08:17:49.748067 aggnd 947202900 R rec 2d5d8da1-0895-44e7-9623-575d7c22744d -2023-07-08 08:17:49.820021 2023-07-08 08:17:49.820032 aggnd 947434348 R rec 39a6ba65-902b-41ff-8008-5b4c3b3a5e98 -2023-07-08 08:17:49.910165 2023-07-08 08:17:49.91017 aggnd 947711708 R rec eea5183a-e1f0-4b1f-847e-096842991012 -2023-07-08 08:17:49.99936 2023-07-08 08:17:49.999365 aggnd 94772530X R rec ddea7bc9-f98f-4365-931c-d803f66d5f64 -2023-07-08 08:17:50.088815 2023-07-08 08:17:50.088826 aggnd 947731687 R rec bf8ca68d-11ad-4149-a18e-90c8e4fd0a57 -2023-07-08 08:17:50.181593 2023-07-08 08:17:50.181601 aggnd 947742956 R rec c0f21d89-01b0-46d9-8272-29509c023c6c -2023-07-08 08:17:50.268833 2023-07-08 08:17:50.268838 aggnd 947854517 R rec 2b7de839-326f-496d-8dd0-a0f8bbe63954 -2023-07-08 08:17:50.354849 2023-07-08 08:17:50.35486 aggnd 947854789 R rec 4b779d13-60ea-469c-a72f-1ecd014f7776 -2023-07-08 08:17:50.446989 2023-07-08 08:17:50.446999 aggnd 947862765 R rec 98b5d3cd-2aee-4579-a81c-49b925e82424 -2023-07-08 08:17:50.541868 2023-07-08 08:17:50.541884 aggnd 948041838 R rec 141857fe-f5b5-4c62-a45d-0b554391069b -2023-07-08 08:17:50.617985 2023-07-08 08:17:50.617996 aggnd 94813142X R rec 24dc64ed-46f3-4c31-9be7-b95e19d2cb9d -2023-07-08 08:17:50.711004 2023-07-08 08:17:50.71102 aggnd 94813514X R rec 74073726-b6d0-4228-9460-e7189e75e35f -2023-07-08 08:17:50.806577 2023-07-08 08:17:50.806588 aggnd 948139579 R rec 26bd1b1f-8464-49e6-a697-e4e737ec790a -2023-07-08 08:17:50.914466 2023-07-08 08:17:50.914472 aggnd 94814906X R rec 1ea97738-9f42-49a9-bb59-cc4511059258 -2023-07-08 08:17:51.013891 2023-07-08 08:17:51.013896 aggnd 948166894 R rec b51ef4bf-49ee-4519-858c-b4663f2c7ce0 -2023-07-08 08:17:51.091449 2023-07-08 08:17:51.09146 aggnd 948240598 R rec 29de4505-bffc-41e3-a384-e57dc162390e -2023-07-08 08:17:51.182643 2023-07-08 08:17:51.18265 aggnd 948258594 R rec 9b6cdc40-9c8a-4c4a-9f9d-588931270e53 -2023-07-08 08:17:51.285058 2023-07-08 08:17:51.285064 aggnd 948301236 R rec 60589e1d-e190-4f03-b012-dcabc48ab68b -2023-07-08 08:17:51.370508 2023-07-08 08:17:51.370518 aggnd 948314931 R rec c43b45f3-3c63-4de4-9d8c-4dd1365b4ef0 -2023-07-08 08:17:51.477803 2023-07-08 08:17:51.477819 aggnd 948712244 R rec e4044d1c-9fc2-4a37-a773-644488d3e5ea -2023-07-08 08:17:51.570117 2023-07-08 08:17:51.570132 aggnd 948719370 R rec faba0141-a6f7-4d9b-8057-79ddbbf57860 -2023-07-08 08:17:51.668559 2023-07-08 08:17:51.668569 aggnd 94872367X R rec 93398f72-0d5f-4cbc-94cc-f62ed6d15984 -2023-07-08 08:17:51.768025 2023-07-08 08:17:51.768031 aggnd 948936266 R rec ad2558ff-4590-4bf2-9255-b4041d05376c -2023-07-08 08:17:51.859428 2023-07-08 08:17:51.859446 aggnd 94909613X R rec 1cdffff7-5eaa-4d2d-b206-9dca095f888e -2023-07-08 08:17:51.946019 2023-07-08 08:17:51.946025 aggnd 949101338 R rec f86ddfe3-8f52-466e-b68f-365b6435ead7 -2023-07-08 08:17:52.021989 2023-07-08 08:17:52.021995 aggnd 949309214 R rec d4f9e270-a237-47b0-b331-b2cb32cfff05 -2023-07-08 08:17:52.10528 2023-07-08 08:17:52.105296 aggnd 949313874 R rec bc75cf64-af58-4c1e-9a0f-e9fc8af10cf7 -2023-07-08 08:17:52.185334 2023-07-08 08:17:52.18534 aggnd 94933443X R rec cfdd4910-7423-46bb-ae99-2d254dbf0700 -2023-07-08 08:17:52.290223 2023-07-08 08:17:52.290229 aggnd 949395161 R rec 239d1c59-b8c6-48bb-a0f6-4d3fa637078d -2023-07-08 08:17:52.358357 2023-07-08 08:17:52.358363 aggnd 949401560 R rec 7b6fbf22-7b39-4b0a-9426-28bf97086531 -2023-07-08 08:17:52.449486 2023-07-08 08:17:52.449497 aggnd 949474851 R rec d17a7c3a-bd4c-4fea-bac1-875f29a2d04c -2023-07-08 08:17:52.547662 2023-07-08 08:17:52.547672 aggnd 949482110 R rec 68453557-1525-4d22-8ff1-8d8f3d1c5043 -2023-07-08 08:17:52.622194 2023-07-08 08:17:52.622208 aggnd 949486779 R rec db13f643-a79f-446b-9506-acadd09ff188 -2023-07-08 08:17:52.699193 2023-07-08 08:17:52.699199 aggnd 949496103 R rec 6a4cee4d-1986-494b-8134-06eb48cba2ff -2023-07-08 08:17:52.76855 2023-07-08 08:17:52.768561 aggnd 949525197 R rec 8a566d4b-c5d0-4a68-9236-ed5abe3f4c95 -2023-07-08 08:17:52.858693 2023-07-08 08:17:52.858712 aggnd 949560820 R rec 0d6227d5-c777-436f-9985-af7113444b48 -2023-07-08 08:17:52.948687 2023-07-08 08:17:52.948695 aggnd 949650978 R rec 2e11e0da-1500-4645-b124-b6b59687cf49 -2023-07-08 08:17:53.023707 2023-07-08 08:17:53.023713 aggnd 949739960 R rec 2284ee4f-6987-4c3e-bcb1-ccc9e571887f -2023-07-08 08:17:53.107535 2023-07-08 08:17:53.107554 aggnd 949826758 R rec 0a24a432-119f-45cf-a46b-a2f37f9649b3 -2023-07-08 08:17:53.213079 2023-07-08 08:17:53.213084 aggnd 949828246 R rec 6ee5a83d-3163-479c-9e73-cd9983410fbc -2023-07-08 08:17:53.304617 2023-07-08 08:17:53.304623 aggnd 949857378 R rec 444a1bce-4a5b-46fa-9302-64d079c2a632 -2023-07-08 08:17:53.408684 2023-07-08 08:17:53.408691 aggnd 950041297 R rec c80deb3f-aa60-4182-b148-d080552d965f -2023-07-08 08:17:53.505658 2023-07-08 08:17:53.505669 aggnd 950042544 R rec 154623a2-0bdd-45de-a330-c26c138f3048 -2023-07-08 08:17:53.578866 2023-07-08 08:17:53.578871 aggnd 950148148 R rec e60adceb-b928-41ff-b33a-8fd02a547e62 -2023-07-08 08:17:53.664946 2023-07-08 08:17:53.664952 aggnd 950207535 R rec 7baf3ec5-7d4f-4029-8005-4ade808e607c -2023-07-08 08:17:53.737807 2023-07-08 08:17:53.737818 aggnd 950239623 R rec c9fb4e7c-e23a-4008-9a6d-f3584f013c56 -2023-07-08 08:17:53.828766 2023-07-08 08:17:53.828771 aggnd 950309788 R rec 68467c8d-2044-40fc-84a7-bf87f220c0e3 -2023-07-08 08:17:53.922274 2023-07-08 08:17:53.92229 aggnd 950323578 R rec df77df47-8115-4335-9070-d144b3cdeb50 -2023-07-08 08:17:54.018616 2023-07-08 08:17:54.018621 aggnd 950389668 R rec 18be6aa2-afd3-4e65-b38f-3f27060625e3 -2023-07-08 08:17:54.106084 2023-07-08 08:17:54.106099 aggnd 950389781 R rec a9c19522-3cab-4969-9cfe-608a3211604f -2023-07-08 08:17:54.202306 2023-07-08 08:17:54.202318 aggnd 950614076 R rec e0cefdec-26fb-4350-96af-ee7f47e40d38 -2023-07-08 08:17:54.27465 2023-07-08 08:17:54.274655 aggnd 950710776 R rec 70ac777b-ac5a-4de2-bdeb-e544acf9b1f8 -2023-07-08 08:17:54.370979 2023-07-08 08:17:54.371039 aggnd 950729205 R rec f20760ba-877f-42a9-b52f-93a3ed8ff319 -2023-07-08 08:17:54.472356 2023-07-08 08:17:54.472371 aggnd 950740136 R rec 77d8c46f-fdce-4ae2-8081-5e681912e157 -2023-07-08 08:17:54.56158 2023-07-08 08:17:54.561591 aggnd 950740381 R rec 067579ba-8d4d-467d-a574-1e8db1eee835 -2023-07-08 08:17:54.651038 2023-07-08 08:17:54.651049 aggnd 950797855 R rec f1f63ede-127e-4e6f-a11b-9dcc22ad7999 -2023-07-08 08:17:54.728839 2023-07-08 08:17:54.728844 aggnd 95080617X R rec 19403080-d1d3-40d4-af00-f6d9d8e2eeaf -2023-07-08 08:17:54.818351 2023-07-08 08:17:54.818362 aggnd 950819603 R rec ab761939-a8b3-4b9b-8506-43ec1943fa56 -2023-07-08 08:17:54.912243 2023-07-08 08:17:54.912253 aggnd 950857696 R rec 4c6daeb8-1934-492e-82eb-4297ab1b90e0 -2023-07-08 08:17:55.00394 2023-07-08 08:17:55.003958 aggnd 951162322 R rec fc09b87f-e3e4-4517-99dc-0bbc963eadaf -2023-07-08 08:17:55.131871 2023-07-08 08:17:55.131876 aggnd 951185314 R rec 6507ed03-acaf-474e-9e1f-f4c0461d9db9 -2023-07-08 08:17:55.221898 2023-07-08 08:17:55.221915 aggnd 951226029 R rec 387ab389-85c4-4c2e-8c30-db5ca5ddc81e -2023-07-08 08:17:55.312575 2023-07-08 08:17:55.312582 aggnd 951229982 R rec dd70ad96-65fd-45d2-a4d4-74024b171a02 -2023-07-08 08:17:55.379565 2023-07-08 08:17:55.379571 aggnd 95123272X R rec 857cf81a-a21b-4f48-89a6-4f9342039fb1 -2023-07-08 08:17:55.452115 2023-07-08 08:17:55.452126 aggnd 95125023X R rec 535509c9-e08d-400b-9904-d03b48e600da -2023-07-08 08:17:55.536403 2023-07-08 08:17:55.536417 aggnd 951301330 R rec 987715e3-fdee-454d-a205-eb6fb7fe619a -2023-07-08 08:17:55.629348 2023-07-08 08:17:55.62936 aggnd 951303139 R rec 3ef102b5-b959-41cc-b116-679ed2b47e12 -2023-07-08 08:17:55.742005 2023-07-08 08:17:55.742028 aggnd 951745956 R rec 413dd38d-b2da-4139-b357-756214657d30 -2023-07-08 08:17:55.835001 2023-07-08 08:17:55.835011 aggnd 951762990 R rec 7d93b27b-c8cf-4bea-87ed-144db6345ee7 -2023-07-08 08:17:55.922387 2023-07-08 08:17:55.922403 aggnd 951789252 R rec 1ee6c23a-87e2-45a4-8758-c014f12c5147 -2023-07-08 08:17:56.01373 2023-07-08 08:17:56.013737 aggnd 951803328 R rec f01215d3-a562-47df-b074-d600782d8958 -2023-07-08 08:17:56.101147 2023-07-08 08:17:56.101158 aggnd 951803921 R rec 2a5e3cad-41e6-4a03-bd03-bb9e8ae23862 -2023-07-08 08:17:56.184157 2023-07-08 08:17:56.184163 aggnd 951806084 R rec 4fd94835-5dfe-48dd-8e8a-45157260fb7a -2023-07-08 08:17:56.258167 2023-07-08 08:17:56.258178 aggnd 951828673 R rec e785f4c3-33be-455e-b17f-eba420046952 -2023-07-08 08:17:56.350282 2023-07-08 08:17:56.350297 aggnd 951838482 R rec c31a63ed-e08a-4637-b58f-c5c754c6d2e8 -2023-07-08 08:17:56.44423 2023-07-08 08:17:56.444243 aggnd 951842676 R rec f83b7cc1-4116-4be1-9b22-efd4902e187d -2023-07-08 08:17:56.52022 2023-07-08 08:17:56.520234 aggnd 951852043 R rec d8d308c3-3e17-42aa-8e4b-e791238e682c -2023-07-08 08:17:56.61443 2023-07-08 08:17:56.614436 aggnd 951854194 R rec f0e57ec5-1fc4-484d-976c-cedede4bc82d -2023-07-08 08:17:56.697593 2023-07-08 08:17:56.697599 aggnd 951894048 R rec 3f5971f1-f9e3-47b9-ae70-730a1f3fbba1 -2023-07-08 08:17:56.803582 2023-07-08 08:17:56.8036 aggnd 951894692 R rec 074fe66d-9b65-4a9d-bbfd-590ec311c080 -2023-07-08 08:17:56.900903 2023-07-08 08:17:56.900919 aggnd 951913441 R rec 22bfcc98-5793-4b72-b576-dd5721434cd9 -2023-07-08 08:17:56.987809 2023-07-08 08:17:56.987818 aggnd 951920553 R rec 0e67bace-0318-405b-94e2-5bac0e1a8d58 -2023-07-08 08:17:57.083773 2023-07-08 08:17:57.083784 aggnd 951921258 R rec 1c85ab29-6736-4467-9c59-ef561a0100c9 -2023-07-08 08:17:57.189805 2023-07-08 08:17:57.189811 aggnd 951945491 R rec 82c0e87d-2c85-4113-888f-6ec548f6b79d -2023-07-08 08:17:57.288232 2023-07-08 08:17:57.288238 aggnd 951947915 R rec ec20ff5c-78a4-475f-b772-4fed83084ab8 -2023-07-08 08:17:57.364174 2023-07-08 08:17:57.364181 aggnd 952056763 R rec d6986341-cfce-4622-91e7-faa07b9c9964 -2023-07-08 08:17:57.456205 2023-07-08 08:17:57.456217 aggnd 952070308 R rec 68df79b5-ba51-403c-83b7-10beec75c7da -2023-07-08 08:17:57.559737 2023-07-08 08:17:57.559752 aggnd 952091542 R rec 4ff76600-e702-4745-88c1-f58f486bae27 -2023-07-08 08:17:57.649938 2023-07-08 08:17:57.649948 aggnd 952101173 R rec edb2e5f1-31d4-498e-93d1-0c78e00bfba3 -2023-07-08 08:17:57.743419 2023-07-08 08:17:57.743441 aggnd 952199718 R rec 91994b72-3536-471e-b044-673d3ca86790 -2023-07-08 08:17:57.848205 2023-07-08 08:17:57.84821 aggnd 952207990 R rec e0413cf3-26a2-4e0c-8d5e-91c8481f14f4 -2023-07-08 08:17:57.948907 2023-07-08 08:17:57.948914 aggnd 952241684 R rec 9311c87f-540a-4080-97f3-d8681701c2df -2023-07-08 08:17:58.052559 2023-07-08 08:17:58.05257 aggnd 952265168 R rec 1338b92e-245c-4f37-b9c8-f3653e64e8e9 -2023-07-08 08:17:58.148521 2023-07-08 08:17:58.148526 aggnd 952327511 R rec 1049e3bd-bd76-4aee-8768-04059fd5166e -2023-07-08 08:17:58.237877 2023-07-08 08:17:58.237888 aggnd 95232752X R rec 28a32c86-02bf-4f3b-a8af-c37f8694f74c -2023-07-08 08:17:58.338771 2023-07-08 08:17:58.338777 aggnd 952354527 R rec 7addda76-a4b3-4f65-b34e-b60f04fff192 -2023-07-08 08:17:58.414229 2023-07-08 08:17:58.414235 aggnd 952354969 R rec 548360d0-600a-4f0c-9460-0e5dbeb3a862 -2023-07-08 08:17:58.484998 2023-07-08 08:17:58.485009 aggnd 952358492 R rec b846fd24-b87b-4064-a9e4-70cd8d9d89f2 -2023-07-08 08:17:58.561546 2023-07-08 08:17:58.561552 aggnd 952379546 R rec 16bd3ed5-9b0e-4a8f-9dc2-c58fc25c0e29 -2023-07-08 08:17:58.641787 2023-07-08 08:17:58.641803 aggnd 952419351 R rec 7acdc7e6-b089-4225-9f56-7c04654fa293 -2023-07-08 08:17:58.72885 2023-07-08 08:17:58.728861 aggnd 952481464 R rec 84965e92-36d0-481c-a383-4897350a2314 -2023-07-08 08:17:58.819627 2023-07-08 08:17:58.819644 aggnd 952489546 R rec 180343d5-ae72-4d89-8fb5-e80928bd0bb6 -2023-07-08 08:17:58.925597 2023-07-08 08:17:58.925608 aggnd 952503980 R rec 1d8b4375-c497-4322-b75d-90060ec8e20d -2023-07-08 08:17:59.026272 2023-07-08 08:17:59.026285 aggnd 95250538X R rec 04bf4af9-9f5d-4462-9fe3-40416da68996 -2023-07-08 08:17:59.118382 2023-07-08 08:17:59.118394 aggnd 952510995 R rec 07922e52-e869-4896-b2d0-0864d50d0302 -2023-07-08 08:17:59.194847 2023-07-08 08:17:59.194852 aggnd 95251592X R rec 90dbd9a1-1b7f-439e-b1fe-658d59cf8d99 -2023-07-08 08:17:59.268516 2023-07-08 08:17:59.268521 aggnd 952534924 R rec daeacdf1-e795-4641-9c0e-34bda6d654a1 -2023-07-08 08:17:59.357322 2023-07-08 08:17:59.357333 aggnd 952540428 R rec dffeb313-bdf3-4212-8888-c95dabfa62d8 -2023-07-08 08:17:59.44702 2023-07-08 08:17:59.447026 aggnd 952541084 R rec 233e0427-c3cf-4697-b02b-4b957f0e18f6 -2023-07-08 08:17:59.532837 2023-07-08 08:17:59.532843 aggnd 952542811 R rec b52f9f82-8385-4781-9387-df602aefa9c4 -2023-07-08 08:17:59.633469 2023-07-08 08:17:59.633481 aggnd 952543141 R rec 72963cc4-1c68-4714-ae1b-5c6c1b30517c -2023-07-08 08:17:59.725992 2023-07-08 08:17:59.726003 aggnd 952571315 R rec 1ccaba0e-3d32-4f62-9e41-8de19b808baf -2023-07-08 08:17:59.823653 2023-07-08 08:17:59.823667 aggnd 952607549 R rec f5e048bf-4938-492d-87ce-4c7edd2b0650 -2023-07-08 08:17:59.92351 2023-07-08 08:17:59.923526 aggnd 952616270 R rec c7ad03b7-3a15-495c-8519-24e053f60cc0 -2023-07-08 08:18:00.020759 2023-07-08 08:18:00.020765 aggnd 952753294 R rec 2ed3bdf3-5889-498c-8d06-1edac38377bb -2023-07-08 08:18:00.105926 2023-07-08 08:18:00.105937 aggnd 952753537 R rec 9264bc9c-0ae4-4407-a0ea-74b877a720dd -2023-07-08 08:18:00.195175 2023-07-08 08:18:00.195181 aggnd 952754606 R rec 25d2acc7-2eaa-4627-9e21-6d0477e80092 -2023-07-08 08:18:00.271348 2023-07-08 08:18:00.271354 aggnd 952918838 R rec fc5fc5c9-ff4f-487b-b2fa-2fdfb7fc5820 -2023-07-08 08:18:00.35987 2023-07-08 08:18:00.359886 aggnd 952923793 R rec a753f50a-8823-4412-8dc6-9a101e339c8f -2023-07-08 08:18:00.447765 2023-07-08 08:18:00.447772 aggnd 953095746 R rec 5e78e529-3ef3-4f7d-a240-2a7b88a6a099 -2023-07-08 08:18:00.536695 2023-07-08 08:18:00.53671 aggnd 95311886X R rec a4c1740c-907f-4f68-9761-652682f29315 -2023-07-08 08:18:00.630596 2023-07-08 08:18:00.630601 aggnd 95315971X R rec 3c922ca1-6b1a-481a-b8de-bd079fddba6c -2023-07-08 08:18:00.72165 2023-07-08 08:18:00.721656 aggnd 953324559 R rec a4fb23cf-e70e-448d-b765-c1c09acac608 -2023-07-08 08:18:00.88947 2023-07-08 08:18:00.889482 aggnd 953324974 R rec d4ff6067-08ea-4144-a5d9-9ebd46287bbf -2023-07-08 08:18:00.993948 2023-07-08 08:18:00.993959 aggnd 953476359 R rec 8483d36d-17de-4448-8159-166586c9c350 -2023-07-08 08:18:01.092135 2023-07-08 08:18:01.092147 aggnd 953477061 R rec 69e6ba6e-5c9a-45b9-b576-2a7fac4cd2fa -2023-07-08 08:18:01.193178 2023-07-08 08:18:01.193185 aggnd 953483401 R rec 6b0ff124-cbd5-48bd-9787-2c5574b0205c -2023-07-08 08:18:01.290745 2023-07-08 08:18:01.29075 aggnd 953537013 R rec 0ee4718f-2659-4b1a-ac67-6b186f715f50 -2023-07-08 08:18:01.397164 2023-07-08 08:18:01.397174 aggnd 95360795X R rec eecc1f20-2258-443b-9921-a420f5551c11 -2023-07-08 08:18:01.502569 2023-07-08 08:18:01.50258 aggnd 953608573 R rec 595563cf-fd08-49e3-88b5-9c170708a78d -2023-07-08 08:18:01.600013 2023-07-08 08:18:01.600025 aggnd 95364474X R rec 8150eddc-94b6-4d0d-906b-78c0e5a1d54a -2023-07-08 08:18:01.684503 2023-07-08 08:18:01.684522 aggnd 953644820 R rec 82c62ae6-484b-4108-9efd-df736c74e763 -2023-07-08 08:18:01.760435 2023-07-08 08:18:01.760449 aggnd 953669033 R rec f33c6502-a5c6-4a79-ab99-52f06067cd09 -2023-07-08 08:18:01.855315 2023-07-08 08:18:01.855329 aggnd 953777839 R rec 84b5fb1a-0977-4bf4-bc63-5fb98ffb13e2 -2023-07-08 08:18:01.94327 2023-07-08 08:18:01.943284 aggnd 953979687 R rec f8c27ddd-cfd1-4509-88ec-59e57951590e -2023-07-08 08:18:02.036216 2023-07-08 08:18:02.036227 aggnd 953980545 R rec 32b683f6-e174-493f-bfbe-db475a594f55 -2023-07-08 08:18:02.134173 2023-07-08 08:18:02.134184 aggnd 954069773 R rec 1d51c781-657a-48a9-8ff3-c9c427022434 -2023-07-08 08:18:02.223325 2023-07-08 08:18:02.22334 aggnd 954132491 R rec 12d3d210-eaf7-43cb-9c7d-8ec5005ba60c -2023-07-08 08:18:02.318257 2023-07-08 08:18:02.318262 aggnd 954184165 R rec a92bbf77-5c47-4b01-9859-10a81c2d9f0c -2023-07-08 08:18:02.404836 2023-07-08 08:18:02.404855 aggnd 954255011 R rec dc50abfe-0734-49a6-8362-c838ef29840b -2023-07-08 08:18:02.49727 2023-07-08 08:18:02.497277 aggnd 954328426 R rec 0487c403-dcce-47f3-95f4-f29f25a1fca1 -2023-07-08 08:18:02.581446 2023-07-08 08:18:02.581452 aggnd 954330803 R rec 4fa2eb8f-95b7-4ecd-bc0d-cc077e08235c -2023-07-08 08:18:02.681964 2023-07-08 08:18:02.68197 aggnd 954352610 R rec 5139e01e-b642-4164-94e8-a39e9c1f5739 -2023-07-08 08:18:02.7592 2023-07-08 08:18:02.759211 aggnd 954405250 R rec 3c8bef84-c21a-4bc5-9941-d1d4e2ed9a0c -2023-07-08 08:18:02.861161 2023-07-08 08:18:02.861174 aggnd 954405986 R rec f614ea36-2de5-46e8-a89f-609f2313723f -2023-07-08 08:18:02.953009 2023-07-08 08:18:02.95302 aggnd 954495098 R rec 309da2ba-7eaa-42d1-b3af-225322aa8df9 -2023-07-08 08:18:03.043669 2023-07-08 08:18:03.043691 aggnd 954534530 R rec ef0110ec-4b50-44df-8950-72342b3c0589 -2023-07-08 08:18:03.140922 2023-07-08 08:18:03.140938 aggnd 954535286 R rec 1271cc28-e906-464a-b51d-33675e44303a -2023-07-08 08:18:03.231829 2023-07-08 08:18:03.231834 aggnd 95454157X R rec a498c42f-e9dc-414c-ad34-76a84c2de2ec -2023-07-08 08:18:03.321491 2023-07-08 08:18:03.321496 aggnd 954552873 R rec 0f877bef-feb6-430c-8842-2deda30b6c98 -2023-07-08 08:18:03.420619 2023-07-08 08:18:03.420634 aggnd 954559592 R rec a17ab813-be48-4f35-b7ca-0ed446b990af -2023-07-08 08:18:03.497398 2023-07-08 08:18:03.497403 aggnd 954569601 R rec 248606af-dbf2-4fe9-a403-07cc41a744c0 -2023-07-08 08:18:03.594844 2023-07-08 08:18:03.594859 aggnd 954571398 R rec 9f4d170f-c0c7-4626-85e6-095fad1f25e7 -2023-07-08 08:18:03.69011 2023-07-08 08:18:03.690126 aggnd 954574354 R rec b3a6ab80-479e-4957-bb9b-a2ea5826e26c -2023-07-08 08:18:03.802515 2023-07-08 08:18:03.802531 aggnd 954587693 R rec f146addd-959b-4f44-99b1-8421322fc533 -2023-07-08 08:18:03.895018 2023-07-08 08:18:03.895029 aggnd 954589262 R rec 86b5d1c3-e57b-4a99-a30f-cdca6e1c8057 -2023-07-08 08:18:03.985357 2023-07-08 08:18:03.985368 aggnd 954590848 R rec d33590fa-5092-4772-88be-2e4b4c3a4477 -2023-07-08 08:18:04.091032 2023-07-08 08:18:04.091044 aggnd 954619595 R rec 4f3f1907-91c0-419d-a6b0-fc986c82a6ee -2023-07-08 08:18:04.181745 2023-07-08 08:18:04.181756 aggnd 954621131 R rec e52baf68-6434-475f-9c6c-30d307f0b6d0 -2023-07-08 08:18:04.256305 2023-07-08 08:18:04.256312 aggnd 954862805 R rec 9952232a-c5bb-4cad-b1e8-ffdff295e9d0 -2023-07-08 08:18:04.335556 2023-07-08 08:18:04.335568 aggnd 954863127 R rec 49c11ab8-05ea-4904-a813-7bf90b5775b4 -2023-07-08 08:18:04.439307 2023-07-08 08:18:04.43932 aggnd 954876539 R rec b76a27fe-8cc1-4b1b-8f54-f7189236592c -2023-07-08 08:18:04.558837 2023-07-08 08:18:04.558854 aggnd 954882571 R rec f7e1ffa3-ed98-495c-89d2-f23627aa2dd0 -2023-07-08 08:18:04.661257 2023-07-08 08:18:04.661262 aggnd 95500778X R rec 50583e64-639f-48f1-a6de-1b97ca41da14 -2023-07-08 08:18:04.737253 2023-07-08 08:18:04.737264 aggnd 955030080 R rec 5c349807-6d53-4b21-a0c6-27896ad33efd -2023-07-08 08:18:04.827639 2023-07-08 08:18:04.827649 aggnd 955046475 R rec 86fa75d4-4d5f-4b89-ae09-e9ff2113252f -2023-07-08 08:18:04.921786 2023-07-08 08:18:04.921802 aggnd 955064813 R rec f1a7a931-ce97-42b4-9563-335798360286 -2023-07-08 08:18:05.030011 2023-07-08 08:18:05.030022 aggnd 955092523 R rec d9cc05a5-53ab-446c-8970-628ac6d04680 -2023-07-08 08:18:05.116287 2023-07-08 08:18:05.116294 aggnd 95511182X R rec 94fcc1ea-5553-450f-8fd6-904046aad760 -2023-07-08 08:18:05.205935 2023-07-08 08:18:05.205943 aggnd 95511201X R rec 467cb6a6-89f3-4c9d-9e1b-89acd15c2250 -2023-07-08 08:18:05.304855 2023-07-08 08:18:05.30486 aggnd 955116635 R rec 758f77d3-c6a6-4098-8ab4-8502e0e4dbc4 -2023-07-08 08:18:05.398231 2023-07-08 08:18:05.398238 aggnd 955119413 R rec 72f0ec79-a7e2-4c20-b6cd-12ae06f14458 -2023-07-08 08:18:05.479565 2023-07-08 08:18:05.47957 aggnd 955121647 R rec cb1c8b1a-4a33-454f-b35a-970058a88a48 -2023-07-08 08:18:05.565337 2023-07-08 08:18:05.565343 aggnd 955190908 R rec 3c384146-e3ae-4f1b-8034-20968db596fb -2023-07-08 08:18:05.636738 2023-07-08 08:18:05.63675 aggnd 955382378 R rec 0b2003e2-3f4d-478d-9c03-468b81b9f19f -2023-07-08 08:18:05.738043 2023-07-08 08:18:05.738053 aggnd 955401976 R rec 922bf847-d5bf-4eb8-bb47-026738558f74 -2023-07-08 08:18:05.847238 2023-07-08 08:18:05.847243 aggnd 955431425 R rec 3f06d3d8-cae0-4e2b-a2bf-0d7f7a9651b4 -2023-07-08 08:18:05.940308 2023-07-08 08:18:05.940319 aggnd 955432774 R rec bac0a307-bfe1-49de-96c9-bbb8bc9fe446 -2023-07-08 08:18:06.033148 2023-07-08 08:18:06.033159 aggnd 955611423 R rec 89974242-93e1-4f34-b651-1818dc1df02b -2023-07-08 08:18:06.120843 2023-07-08 08:18:06.120855 aggnd 955736374 R rec bf279251-4b33-443d-9a5c-760dd6986c22 -2023-07-08 08:18:06.20703 2023-07-08 08:18:06.207036 aggnd 955740223 R rec 5705e4e4-3ca9-4e80-a203-e44c808b0eea -2023-07-08 08:18:06.278931 2023-07-08 08:18:06.278937 aggnd 955746256 R rec 314e6d64-6f23-437b-bf0b-3b64542a71b8 -2023-07-08 08:18:06.35917 2023-07-08 08:18:06.359182 aggnd 955966566 R rec fe4973dd-03cc-439f-bad9-35ce8d694df8 -2023-07-08 08:18:06.455973 2023-07-08 08:18:06.455984 aggnd 956291279 R rec 63ad59c9-a773-4740-94f9-fafd56367dd6 -2023-07-08 08:18:06.569921 2023-07-08 08:18:06.569934 aggnd 956483542 R rec e6088f01-e25c-4d8a-8b37-870414af3150 -2023-07-08 08:18:06.65074 2023-07-08 08:18:06.650751 aggnd 956528775 R rec 8bc2a487-0a01-4ecf-a0ff-85175ef9f0b8 -2023-07-08 08:18:06.737048 2023-07-08 08:18:06.737066 aggnd 956529445 R rec b4c2fbbf-c27c-4b69-b9d5-cbcf3ccc1e5c -2023-07-08 08:18:06.822195 2023-07-08 08:18:06.822201 aggnd 956539564 R rec 3c49fef6-ee80-4ce0-88aa-dcfe47edbc56 -2023-07-08 08:18:06.897272 2023-07-08 08:18:06.897277 aggnd 956546927 R rec 3867fb45-0b44-4fdd-b76c-6531bfb99174 -2023-07-08 08:18:06.972491 2023-07-08 08:18:06.972497 aggnd 956548660 R rec a8655588-8f87-4317-b809-fc2da8e9ac08 -2023-07-08 08:18:07.04157 2023-07-08 08:18:07.041576 aggnd 956555225 R rec a4999776-c06f-4762-b0b4-f702940c6f2f -2023-07-08 08:18:07.112832 2023-07-08 08:18:07.112838 aggnd 956579760 R rec 38623678-0682-44fe-a745-1715f6c1131a -2023-07-08 08:18:07.184845 2023-07-08 08:18:07.184853 aggnd 956627536 R rec 7ea2d94c-3e36-44e8-a329-47d2e7e5f735 -2023-07-08 08:18:07.264433 2023-07-08 08:18:07.264439 aggnd 956749232 R rec 22ba0be9-8661-41d4-ab16-43629826ef9e -2023-07-08 08:18:07.332418 2023-07-08 08:18:07.332424 aggnd 95679615X R rec 834ea23f-0de8-45f9-9365-79f739450fff -2023-07-08 08:18:07.419213 2023-07-08 08:18:07.419223 aggnd 956827195 R rec 5e0b2b6c-dd9a-4477-a2f7-5c59c9a9e529 -2023-07-08 08:18:07.509412 2023-07-08 08:18:07.509428 aggnd 956831044 R rec 0354155c-6320-49e9-a54b-7250afeeb519 -2023-07-08 08:18:07.604302 2023-07-08 08:18:07.604315 aggnd 956917054 R rec bf544455-8216-4298-bade-df5118cf7252 -2023-07-08 08:18:07.690044 2023-07-08 08:18:07.69006 aggnd 956976999 R rec 4eb30f19-6a61-4a9d-9cf1-01f9d85475dd -2023-07-08 08:18:07.796596 2023-07-08 08:18:07.796607 aggnd 956990223 R rec 98ea91fd-eae4-4afa-bc28-f7dc04b670e1 -2023-07-08 08:18:07.889224 2023-07-08 08:18:07.889242 aggnd 956994679 R rec 943b05f9-82b0-4f16-9a43-0c37b97fa32f -2023-07-08 08:18:07.981755 2023-07-08 08:18:07.981767 aggnd 957023235 R rec 56fc7948-5df8-4d7e-bb63-843f955a5030 -2023-07-08 08:18:08.075063 2023-07-08 08:18:08.075079 aggnd 957059590 R rec 0721a3e4-ee14-439a-935e-aeeca569b6da -2023-07-08 08:18:08.168356 2023-07-08 08:18:08.168367 aggnd 957060149 R rec 3d539834-da16-4686-9557-68673691eeba -2023-07-08 08:18:08.243756 2023-07-08 08:18:08.243766 aggnd 957075405 R rec 852a3eef-c0f1-4d14-b71a-244c48c7080e -2023-07-08 08:18:08.343002 2023-07-08 08:18:08.343008 aggnd 957106408 R rec f55ce3dd-7002-4f31-8221-6b8d30077893 -2023-07-08 08:18:08.427315 2023-07-08 08:18:08.427326 aggnd 957164599 R rec bdc19b8c-35ba-4060-b31a-9d7febfded42 -2023-07-08 08:18:08.52306 2023-07-08 08:18:08.523078 aggnd 957177879 R rec eb365084-64ed-4acb-b3c9-18de662de5c6 -2023-07-08 08:18:08.612369 2023-07-08 08:18:08.612381 aggnd 95717926X R rec 61be3640-b5fa-411e-9d4f-c86ea5578227 -2023-07-08 08:18:08.7025 2023-07-08 08:18:08.702506 aggnd 957186185 R rec f6207106-7eed-477d-bf80-eccd0a5b0fea -2023-07-08 08:18:08.802133 2023-07-08 08:18:08.802144 aggnd 957223242 R rec 7d264b8d-3b13-45d7-ab1a-c68eb5d6a359 -2023-07-08 08:18:08.87699 2023-07-08 08:18:08.876995 aggnd 957263511 R rec b1c2abd2-0160-49ee-90a2-1957ea3333fc -2023-07-08 08:18:08.950853 2023-07-08 08:18:08.950872 aggnd 957268688 R rec a7c8529c-37f4-41b0-b841-fb09c0191372 -2023-07-08 08:18:09.051631 2023-07-08 08:18:09.051649 aggnd 957348924 R rec cc982271-62fe-401d-aca7-f755ced81e16 -2023-07-08 08:18:09.158741 2023-07-08 08:18:09.158752 aggnd 957354096 R rec a2afb580-54f6-4590-a551-8f89fa24968f -2023-07-08 08:18:09.25348 2023-07-08 08:18:09.253485 aggnd 957365993 R rec 4ec22b73-5d27-42b7-96b5-a3f8d3bae93a -2023-07-08 08:18:09.331147 2023-07-08 08:18:09.331152 aggnd 957382332 R rec 230010b2-4201-473c-9352-158d201f5740 -2023-07-08 08:18:09.411197 2023-07-08 08:18:09.411208 aggnd 957433158 R rec a1d0f1ba-6f60-4459-83f2-221b78ccc711 -2023-07-08 08:18:09.501416 2023-07-08 08:18:09.501427 aggnd 95746214X R rec 2f7ba752-fc83-4268-97cf-8a4596122fa7 -2023-07-08 08:18:09.591058 2023-07-08 08:18:09.591074 aggnd 957467303 R rec c734bd0b-ad09-457f-b622-3559c7eeaa50 -2023-07-08 08:18:09.689652 2023-07-08 08:18:09.689667 aggnd 957488548 R rec 2f300463-9e62-4d17-8509-267b3136f729 -2023-07-08 08:18:09.781612 2023-07-08 08:18:09.781618 aggnd 957490186 R rec 1dc570ff-3bce-4b03-922e-95f9d273a64e -2023-07-08 08:18:09.869712 2023-07-08 08:18:09.869729 aggnd 957496729 R rec 3da3f0e4-5cbc-4659-a943-6273c9955861 -2023-07-08 08:18:09.96531 2023-07-08 08:18:09.965321 aggnd 957503083 R rec 2b882ab1-5c88-43ef-a60f-2d177b3ee47f -2023-07-08 08:18:10.061285 2023-07-08 08:18:10.061294 aggnd 957506880 R rec 0340e0d5-f430-4ccc-8bf2-ae1910ba16bf -2023-07-08 08:18:10.156536 2023-07-08 08:18:10.156553 aggnd 957853408 R rec 41b8e763-c09c-47c5-944a-64762486d7a8 -2023-07-08 08:18:10.251434 2023-07-08 08:18:10.251439 aggnd 957923031 R rec 20482463-4af3-47f1-b73c-bc7fa75ef996 -2023-07-08 08:18:10.327003 2023-07-08 08:18:10.327021 aggnd 95792755X R rec 76b4a085-2028-49f3-840c-3cd950131ab2 -2023-07-08 08:18:10.428326 2023-07-08 08:18:10.428342 aggnd 957929331 R rec 0edcc5a0-e024-4c77-a8bd-30350be895a0 -2023-07-08 08:18:10.516451 2023-07-08 08:18:10.51646 aggnd 957935625 R rec 9aae1efa-329c-4d94-9c8c-17811a86f76f -2023-07-08 08:18:10.599814 2023-07-08 08:18:10.599819 aggnd 957935900 R rec c9d70c22-3f4b-466d-a2b8-fcde2f8b102f -2023-07-08 08:18:10.698543 2023-07-08 08:18:10.698549 aggnd 95794988X R rec d09ee3d5-fedf-4b48-9b61-726cd2a9b38a -2023-07-08 08:18:10.771254 2023-07-08 08:18:10.771265 aggnd 957954522 R rec cae8dcaa-a208-4623-ac03-5ed39035d71f -2023-07-08 08:18:10.865147 2023-07-08 08:18:10.865153 aggnd 95795624X R rec 36249a92-e60c-457f-99c2-ffe8be7319ba -2023-07-08 08:18:10.964768 2023-07-08 08:18:10.964774 aggnd 957957114 R rec 9812f282-84c9-4477-b41c-5a6d86b13ffe -2023-07-08 08:18:11.055225 2023-07-08 08:18:11.055241 aggnd 957962703 R rec ed419c0f-6f86-4dad-9775-0eec27642e49 -2023-07-08 08:18:11.16503 2023-07-08 08:18:11.165037 aggnd 957973497 R rec ae646ed7-9bf9-44e1-b029-b4acc2ac21c5 -2023-07-08 08:18:11.247074 2023-07-08 08:18:11.247079 aggnd 95797728X R rec 331a70a2-c572-4cf0-94c4-7e4daff47782 -2023-07-08 08:18:11.321502 2023-07-08 08:18:11.321507 aggnd 958006873 R rec 5f61ce4b-99a1-4a27-b910-d69a3bd0dd46 -2023-07-08 08:18:11.408162 2023-07-08 08:18:11.408178 aggnd 958094160 R rec 3270edca-1b65-4e78-82d3-244c101d7f28 -2023-07-08 08:18:11.504637 2023-07-08 08:18:11.504655 aggnd 958490139 R rec 89335d20-d3d4-4c60-85a5-f4e9f6210312 -2023-07-08 08:18:11.597362 2023-07-08 08:18:11.597372 aggnd 95858012X R rec 83c38269-6b14-4936-9677-7bb3bdaa8c7d -2023-07-08 08:18:11.697008 2023-07-08 08:18:11.697013 aggnd 958686424 R rec 2c7f72b0-4859-4234-98a1-59141d86b60b -2023-07-08 08:18:11.766323 2023-07-08 08:18:11.766334 aggnd 958779147 R rec fb6b4ce5-b09d-4953-9c6b-004e12c1c825 -2023-07-08 08:18:11.852663 2023-07-08 08:18:11.852668 aggnd 958942900 R rec 27aa1da3-fb7f-4f43-8e20-581f92549fbb -2023-07-08 08:18:11.919859 2023-07-08 08:18:11.919864 aggnd 958945861 R rec 91fd8475-f74a-4d1b-9e46-f421774d0d3d -2023-07-08 08:18:12.014065 2023-07-08 08:18:12.01407 aggnd 959006028 R rec 7207d1e6-2376-4afe-ad0a-e029ea2e9451 -2023-07-08 08:18:12.10352 2023-07-08 08:18:12.103531 aggnd 959176918 R rec cdb868d4-ba23-4d4d-9788-1fc07542a4e9 -2023-07-08 08:18:12.21218 2023-07-08 08:18:12.212185 aggnd 959194975 R rec 5b09159b-8df8-4cea-a753-3d06fe309fe7 -2023-07-08 08:18:12.289027 2023-07-08 08:18:12.28904 aggnd 959280944 R rec ea39fffb-9792-4b6d-90fd-e11c759cb0d5 -2023-07-08 08:18:12.37131 2023-07-08 08:18:12.371322 aggnd 959307338 R rec faf61522-2c7e-4b22-b9ae-e66bb9394d5e -2023-07-08 08:18:12.463788 2023-07-08 08:18:12.463795 aggnd 95933727X R rec 808645de-7768-4df3-974b-80ed555e328c -2023-07-08 08:18:12.550953 2023-07-08 08:18:12.550969 aggnd 959433953 R rec 14a618ed-b4f6-4293-9d9d-4d56c33780a9 -2023-07-08 08:18:12.638565 2023-07-08 08:18:12.638577 aggnd 959524215 R rec d68ca76a-a490-438d-8e17-71fa094e2941 -2023-07-08 08:18:12.722397 2023-07-08 08:18:12.722407 aggnd 959547916 R rec d6eb2b8d-7c14-4edf-86c7-ab12e6823188 -2023-07-08 08:18:12.815424 2023-07-08 08:18:12.81543 aggnd 959585605 R rec f04ad956-4a6f-4d47-bdf6-97ce7b602500 -2023-07-08 08:18:12.898136 2023-07-08 08:18:12.898144 aggnd 959713697 R rec 78465a6b-0b0a-49fc-987f-8986748a4e95 -2023-07-08 08:18:13.010997 2023-07-08 08:18:13.011016 aggnd 959734708 R rec 13b5fa3c-d382-40e2-b4b5-18a217cd52d8 -2023-07-08 08:18:13.097226 2023-07-08 08:18:13.097231 aggnd 959910808 R rec 14e6cbcb-d9a5-4a16-b3ff-afb1b8e53ebf -2023-07-08 08:18:13.185495 2023-07-08 08:18:13.185501 aggnd 960094873 R rec 72fadeb8-d6bb-45c1-b578-3b4856a3eeb4 -2023-07-08 08:18:13.262233 2023-07-08 08:18:13.262238 aggnd 960193812 R rec 93d74b14-9bd9-4405-ade4-2fc17353772b -2023-07-08 08:18:13.354438 2023-07-08 08:18:13.35445 aggnd 960331077 R rec 23053482-221e-4cda-b513-335ab21bb745 -2023-07-08 08:18:13.442086 2023-07-08 08:18:13.442103 aggnd 960331166 R rec 8f03ec89-f43b-4783-a478-079387b7c2ac -2023-07-08 08:18:13.558135 2023-07-08 08:18:13.558152 aggnd 960373527 R rec db4fb231-ffc3-48bf-9b1d-567a6236f386 -2023-07-08 08:18:13.659475 2023-07-08 08:18:13.659486 aggnd 960554440 R rec 25c72508-5ba0-42c8-96f8-655307be3936 -2023-07-08 08:18:13.741122 2023-07-08 08:18:13.741133 aggnd 96055646X R rec b3688400-9ae2-4c33-841b-0acc1ab4a70b -2023-07-08 08:18:13.855838 2023-07-08 08:18:13.855856 aggnd 96056814X R rec a7b8849c-0cc5-4eb7-b4a0-7c88d16ff572 -2023-07-08 08:18:13.941908 2023-07-08 08:18:13.941933 aggnd 960574298 R rec b7118cf4-e32b-4230-aad8-b2231cfbda86 -2023-07-08 08:18:14.036144 2023-07-08 08:18:14.036149 aggnd 960693785 R rec 63da095f-b790-44eb-bab0-02c212bc7799 -2023-07-08 08:18:14.143734 2023-07-08 08:18:14.143746 aggnd 960722157 R rec 73e76437-c94c-4713-84aa-5281a10c3edf -2023-07-08 08:18:14.218719 2023-07-08 08:18:14.218725 aggnd 960794093 R rec dd2d9d5e-f268-41b7-84ae-86c3b377c8de -2023-07-08 08:18:14.294345 2023-07-08 08:18:14.29435 aggnd 960796878 R rec 3b3f0486-b23b-4a3b-9fe1-55f0ae1cc91d -2023-07-08 08:18:14.390963 2023-07-08 08:18:14.390973 aggnd 960807128 R rec 46125b76-b6d7-4b86-9693-13bedbaa76e7 -2023-07-08 08:18:14.474211 2023-07-08 08:18:14.474222 aggnd 960812989 R rec 229fc343-c98e-4287-bd20-ccd23226c7a0 -2023-07-08 08:18:14.569775 2023-07-08 08:18:14.56978 aggnd 960819177 R rec 407b5c73-f37d-4ee5-96b9-2fa690bf7e02 -2023-07-08 08:18:14.644932 2023-07-08 08:18:14.644938 aggnd 960819541 R rec 6a90ef05-f1c1-45f8-aab7-656d14024aba -2023-07-08 08:18:14.737962 2023-07-08 08:18:14.737972 aggnd 960823271 R rec 8f42a19c-ddb1-418f-827e-16ac8cd0bf35 -2023-07-08 08:18:14.829344 2023-07-08 08:18:14.829349 aggnd 960928995 R rec 88233f3a-d9a0-407c-b0ed-0aa2093589a2 -2023-07-08 08:18:14.936737 2023-07-08 08:18:14.936741 aggnd 961071435 R rec f77392e4-ce39-473f-92b6-86afcff65b96 -2023-07-08 08:18:15.017463 2023-07-08 08:18:15.017473 aggnd 96107177X R rec e17bbae8-ad06-41c5-93d6-6fcd906c6fde -2023-07-08 08:18:15.112293 2023-07-08 08:18:15.112298 aggnd 961077816 R rec c5c0b6fe-dc7c-47f6-8a30-ca37bf9ebfa0 -2023-07-08 08:18:15.214638 2023-07-08 08:18:15.214645 aggnd 961083387 R rec e8d1f00f-cd7f-4c12-acaf-e01c313ec3ac -2023-07-08 08:18:15.288877 2023-07-08 08:18:15.288883 aggnd 961086882 R rec 3dfff138-f3dd-46de-b48f-fdf407dc2c01 -2023-07-08 08:18:15.395954 2023-07-08 08:18:15.395967 aggnd 961106565 R rec f0731174-7c2d-40c8-ac04-23ecf8ed20de -2023-07-08 08:18:15.481425 2023-07-08 08:18:15.481434 aggnd 961106646 R rec 7775208e-efe1-4bb5-a0e8-f5305507480a -2023-07-08 08:18:15.559186 2023-07-08 08:18:15.559198 aggnd 961106840 R rec 84ab6a4a-7128-4056-951e-e960d7fc5f6f -2023-07-08 08:18:15.650157 2023-07-08 08:18:15.650164 aggnd 961293950 R rec 5f2cc4b0-cf18-4442-a6d5-e56d3b3d3263 -2023-07-08 08:18:15.741146 2023-07-08 08:18:15.741159 aggnd 961300515 R rec f5190b24-9dcf-4213-b7b3-201a9e5f2110 -2023-07-08 08:18:15.845788 2023-07-08 08:18:15.845794 aggnd 961328495 R rec 8b7b2388-c413-4819-8f1d-56a84c3206fe -2023-07-08 08:18:15.939464 2023-07-08 08:18:15.93948 aggnd 961329653 R rec 9cfe5b01-d930-45c9-adda-89f52a1ee9c3 -2023-07-08 08:18:16.031194 2023-07-08 08:18:16.031203 aggnd 961333065 R rec bb26bed1-c574-4237-ae2f-488171843aec -2023-07-08 08:18:16.124588 2023-07-08 08:18:16.124593 aggnd 961337893 R rec ccf01d54-1455-4efc-82c4-74b8e21d7199 -2023-07-08 08:18:16.21472 2023-07-08 08:18:16.214725 aggnd 961342153 R rec 9be18d26-83ae-459a-87b9-67c43f434b0d -2023-07-08 08:18:16.300205 2023-07-08 08:18:16.30021 aggnd 961397047 R rec 86a61c8e-54b1-4788-b187-d183906374e0 -2023-07-08 08:18:16.397224 2023-07-08 08:18:16.397233 aggnd 961400803 R rec de30d831-0535-4354-a7f4-31ac5ae91f18 -2023-07-08 08:18:16.485188 2023-07-08 08:18:16.485194 aggnd 961589809 R rec 936081ca-b6c9-405f-85f8-b64392151c6b -2023-07-08 08:18:16.572407 2023-07-08 08:18:16.572423 aggnd 961631171 R rec fff9bbbc-2b6a-4ee0-ab6c-c07e2fa6c534 -2023-07-08 08:18:16.666006 2023-07-08 08:18:16.666012 aggnd 961636270 R rec 0e343b9a-f1aa-4d79-8dc2-ae07e1579ea6 -2023-07-08 08:18:16.738613 2023-07-08 08:18:16.738623 aggnd 961646969 R rec 420ea1e4-3122-4018-b42e-f2d2a1459b8c -2023-07-08 08:18:16.830435 2023-07-08 08:18:16.830441 aggnd 961652276 R rec 7ce228e7-c464-4149-b6ae-013908736719 -2023-07-08 08:18:16.91894 2023-07-08 08:18:16.918952 aggnd 961659645 R rec 9c2c3aaa-e803-4ac3-ba9c-26b27a9cf93f -2023-07-08 08:18:16.999019 2023-07-08 08:18:16.999025 aggnd 961729155 R rec 12d11a7e-9ed0-4808-beed-2aa80233b479 -2023-07-08 08:18:17.083596 2023-07-08 08:18:17.083607 aggnd 961784334 R rec bb2c9d44-4022-4b60-87d3-f1c47cb712a7 -2023-07-08 08:18:17.169156 2023-07-08 08:18:17.169173 aggnd 961792426 R rec ce425853-e35e-442b-bbe6-dcc22f536d1f -2023-07-08 08:18:17.262398 2023-07-08 08:18:17.262403 aggnd 961797568 R rec 6d538267-f938-400a-9f41-53084a5e4bd4 -2023-07-08 08:18:17.350512 2023-07-08 08:18:17.350523 aggnd 961798025 R rec 6c25e9c7-0dc2-4309-b8f0-f58c828af067 -2023-07-08 08:18:17.447503 2023-07-08 08:18:17.447508 aggnd 962037141 R rec 53d084ef-9966-4112-920c-f78a2efc0005 -2023-07-08 08:18:17.56433 2023-07-08 08:18:17.564335 aggnd 962243477 R rec 9cf9df0a-ccdf-47df-bda7-f19c1a639150 -2023-07-08 08:18:17.646608 2023-07-08 08:18:17.646614 aggnd 962251968 R rec 67473607-aaff-423e-9e80-e418ce9b2d3f -2023-07-08 08:18:17.748225 2023-07-08 08:18:17.748235 aggnd 96233359X R rec 1adb9982-ad17-45ab-90cc-2199cbb45b63 -2023-07-08 08:18:17.83626 2023-07-08 08:18:17.836271 aggnd 962390097 R rec 95489e59-5043-406a-a1de-516e94461802 -2023-07-08 08:18:17.937008 2023-07-08 08:18:17.937019 aggnd 962446440 R rec 4b249c65-0e6f-4c0d-b477-bab49389c43a -2023-07-08 08:18:18.041904 2023-07-08 08:18:18.041916 aggnd 962450170 R rec 9549e6fb-2f89-4740-9960-a38a9c827f35 -2023-07-08 08:18:18.137499 2023-07-08 08:18:18.137509 aggnd 962470929 R rec 738e00d2-48f9-4d22-a9d3-b7a4fa107e99 -2023-07-08 08:18:18.24457 2023-07-08 08:18:18.24458 aggnd 96247357X R rec 2357a8cf-1a93-4ce6-9ac9-6fba3bbfb5f6 -2023-07-08 08:18:18.338918 2023-07-08 08:18:18.338923 aggnd 962498726 R rec 8ee73108-df0c-4acc-995f-889c3a027f3d -2023-07-08 08:18:18.431588 2023-07-08 08:18:18.431593 aggnd 962506168 R rec 21c61e21-8f2d-4975-adca-368e2a51b942 -2023-07-08 08:18:18.513466 2023-07-08 08:18:18.513473 aggnd 96251716X R rec db571319-25a3-4cd1-a40a-f1a062ed8dd1 -2023-07-08 08:18:18.610597 2023-07-08 08:18:18.61061 aggnd 96252736X R rec 664d3986-8412-4062-9b02-25da4782a544 -2023-07-08 08:18:18.708586 2023-07-08 08:18:18.708597 aggnd 962530328 R rec 441d3dfc-c744-49a2-b1f4-2fd538ee6dd4 -2023-07-08 08:18:18.78678 2023-07-08 08:18:18.786791 aggnd 962533300 R rec b0094fd6-bea3-4c31-aaef-0f471a76f63b -2023-07-08 08:18:18.867605 2023-07-08 08:18:18.867611 aggnd 962540196 R rec 6bec7669-71e4-4f2c-9ee5-b00b9d84b681 -2023-07-08 08:18:18.963081 2023-07-08 08:18:18.963086 aggnd 962545295 R rec 04c2e848-fd64-41b8-8f5a-64b043a30496 -2023-07-08 08:18:19.050925 2023-07-08 08:18:19.050937 aggnd 962552380 R rec edcb4d31-abbf-4c99-90f9-9988269e05b3 -2023-07-08 08:18:19.138444 2023-07-08 08:18:19.138473 aggnd 962552569 R rec dfa50b72-dbfa-4aa7-9cae-378864b896e5 -2023-07-08 08:18:19.22781 2023-07-08 08:18:19.227816 aggnd 962557110 R rec 03771f6d-157b-41d4-a893-66d50cbb2d41 -2023-07-08 08:18:19.305471 2023-07-08 08:18:19.305476 aggnd 962558931 R rec 8cd898c6-2787-49b4-8d64-5c1b043a2fd7 -2023-07-08 08:18:19.393733 2023-07-08 08:18:19.393746 aggnd 962559512 R rec a5a9e383-0ee8-4b87-a6dd-f91d55d8e784 -2023-07-08 08:18:19.490104 2023-07-08 08:18:19.490114 aggnd 962562688 R rec e39c743d-052e-4c07-8d29-2fcbe6c08728 -2023-07-08 08:18:19.576975 2023-07-08 08:18:19.57699 aggnd 962582697 R rec b2ec2a21-1bd9-4a88-984b-4a4b4a2d5d23 -2023-07-08 08:18:19.656328 2023-07-08 08:18:19.656341 aggnd 962587087 R rec 89e53ff2-c86d-4d66-8609-7a9ab3e970f9 -2023-07-08 08:18:19.760327 2023-07-08 08:18:19.760342 aggnd 962615838 R rec 469367d3-bfc9-4e49-a032-af487693b024 -2023-07-08 08:18:19.841863 2023-07-08 08:18:19.841875 aggnd 962626554 R rec 27baac04-c873-4651-9d46-1f8e51199691 -2023-07-08 08:18:19.919978 2023-07-08 08:18:19.919989 aggnd 96263025X R rec 10c9a683-0f29-4a0a-a56c-b351ea6fc546 -2023-07-08 08:18:20.001783 2023-07-08 08:18:20.001802 aggnd 962632058 R rec 03446c26-dedb-4d55-84c0-b3bf321948c7 -2023-07-08 08:18:20.091244 2023-07-08 08:18:20.09126 aggnd 962637289 R rec f1f28c77-80ce-4817-bedf-184dd9deb778 -2023-07-08 08:18:20.183063 2023-07-08 08:18:20.183074 aggnd 962660914 R rec 1ab60ec2-ea89-4613-aa3f-66f17d8559c7 -2023-07-08 08:18:20.264941 2023-07-08 08:18:20.264946 aggnd 96266734X R rec d936e336-e2ab-4a92-9680-f6ff4e74f375 -2023-07-08 08:18:20.361735 2023-07-08 08:18:20.361745 aggnd 962668389 R rec 9e643add-2015-4b06-b563-f4fef5fd62db -2023-07-08 08:18:20.453069 2023-07-08 08:18:20.453074 aggnd 962669881 R rec 99ea0c48-131d-4753-a93a-199ca6cee8f8 -2023-07-08 08:18:20.558543 2023-07-08 08:18:20.558559 aggnd 962941042 R rec 51940111-69b0-4d16-a772-20b66ff32cd2 -2023-07-08 08:18:20.653431 2023-07-08 08:18:20.653446 aggnd 962948918 R rec 822a39a0-a19c-4b9e-afba-3e815ca90b66 -2023-07-08 08:18:20.736939 2023-07-08 08:18:20.736944 aggnd 96303409X R rec ec5e348a-d496-4daa-961a-667504263520 -2023-07-08 08:18:20.810168 2023-07-08 08:18:20.810182 aggnd 963066536 R rec 052684d7-1db3-4c06-87e1-46dc69517fa1 -2023-07-08 08:18:20.900448 2023-07-08 08:18:20.90046 aggnd 963134205 R rec 4f6f8fbf-e652-492c-a43e-631084247e42 -2023-07-08 08:18:20.989953 2023-07-08 08:18:20.989969 aggnd 963138812 R rec 4ba82f6b-016a-46a2-adfd-1592bdac7158 -2023-07-08 08:18:21.086931 2023-07-08 08:18:21.086941 aggnd 963139460 R rec d69390af-ddf1-4206-ac20-37fa62d0d36d -2023-07-08 08:18:21.180343 2023-07-08 08:18:21.180358 aggnd 963225332 R rec f4936f98-7c3c-4250-b168-5194847e2227 -2023-07-08 08:18:21.272573 2023-07-08 08:18:21.272578 aggnd 963233599 R rec 80ec02d4-66a7-4861-bacb-6bfa341d4056 -2023-07-08 08:18:21.368073 2023-07-08 08:18:21.368079 aggnd 963261959 R rec b1788bf3-605a-4ded-b203-864d1a954e51 -2023-07-08 08:18:21.444074 2023-07-08 08:18:21.444084 aggnd 963262246 R rec 69f9a4c3-0fa7-4b05-ab1d-a74a64b3c176 -2023-07-08 08:18:21.539816 2023-07-08 08:18:21.539832 aggnd 963262513 R rec 35c5b7af-6e00-4026-a372-3f101546a221 -2023-07-08 08:18:21.642698 2023-07-08 08:18:21.64271 aggnd 963299433 R rec 17ea932b-e916-4ab6-a3b9-c813cafec940 -2023-07-08 08:18:21.72072 2023-07-08 08:18:21.720734 aggnd 963317040 R rec 543029c8-85bb-44e5-855e-8477d1aff207 -2023-07-08 08:18:21.805388 2023-07-08 08:18:21.8054 aggnd 963320343 R rec 81a36576-705d-4c36-986f-b30c04aaefd3 -2023-07-08 08:18:21.909504 2023-07-08 08:18:21.909516 aggnd 963327666 R rec e49ca35d-ea1e-4628-bc17-b6d4d1921eac -2023-07-08 08:18:22.010809 2023-07-08 08:18:22.01082 aggnd 963329812 R rec 3da8147f-d9db-4e0d-b568-df27f42e7101 -2023-07-08 08:18:22.10815 2023-07-08 08:18:22.108166 aggnd 963342177 R rec 767cf9d0-7d09-405a-bfd6-004721345dca -2023-07-08 08:18:22.210854 2023-07-08 08:18:22.210866 aggnd 963342231 R rec d147f6d8-385a-4b4f-80f3-bda631681787 -2023-07-08 08:18:22.295508 2023-07-08 08:18:22.295513 aggnd 963348442 R rec df451fbb-1e67-460a-a42a-1ce304c0f2c9 -2023-07-08 08:18:22.400391 2023-07-08 08:18:22.400402 aggnd 963366785 R rec e91c6c0e-9209-465a-a666-ea9e9d23923f -2023-07-08 08:18:22.486612 2023-07-08 08:18:22.486617 aggnd 963367781 R rec 30b9160f-cbab-4b73-a8aa-b86168a02819 -2023-07-08 08:18:22.572837 2023-07-08 08:18:22.572851 aggnd 963388673 R rec b4f5c394-a10e-4b4e-b723-bf345a064d81 -2023-07-08 08:18:22.675526 2023-07-08 08:18:22.675544 aggnd 963410849 R rec b6dd513c-41d3-4570-95a1-932ffc81d231 -2023-07-08 08:18:22.762666 2023-07-08 08:18:22.762676 aggnd 963529137 R rec 0121df35-e5f6-4c51-8fc6-f428058ed6c6 -2023-07-08 08:18:22.85908 2023-07-08 08:18:22.859097 aggnd 963600346 R rec 416a47d4-dc3e-402c-9f5d-7d7afb188c79 -2023-07-08 08:18:22.962581 2023-07-08 08:18:22.962591 aggnd 96365778X R rec 00078892-aa9d-42e4-abb2-52544e6b3c0d -2023-07-08 08:18:23.055379 2023-07-08 08:18:23.05539 aggnd 963822977 R rec b0282d61-bb71-43f2-b845-f133b53ec207 -2023-07-08 08:18:23.160136 2023-07-08 08:18:23.160152 aggnd 963823388 R rec ec06e7d7-085b-4d93-bc08-fe03a85ffeb3 -2023-07-08 08:18:23.242372 2023-07-08 08:18:23.242378 aggnd 963837532 R rec e62afedd-92a1-4503-872e-bef2492f5cda -2023-07-08 08:18:23.315694 2023-07-08 08:18:23.315701 aggnd 963859803 R rec 3a002d77-4837-4129-8075-047a7b86083a -2023-07-08 08:18:23.405079 2023-07-08 08:18:23.405091 aggnd 963859811 R rec 66e4daa1-3227-4358-8969-536c447dadb8 -2023-07-08 08:18:23.506425 2023-07-08 08:18:23.506436 aggnd 964213427 R rec 060804bb-1ed4-4b5a-b958-954c0781c79f -2023-07-08 08:18:23.581759 2023-07-08 08:18:23.581765 aggnd 964214407 R rec 61bb7b13-3816-4cdc-8fc3-8504e284f018 -2023-07-08 08:18:23.682696 2023-07-08 08:18:23.682701 aggnd 964225581 R rec 5d6a5018-0ba8-4122-a625-bc5142bff05b -2023-07-08 08:18:23.762349 2023-07-08 08:18:23.76236 aggnd 964319020 R rec 78e4db9b-41ca-4429-85af-f0318b5c7403 -2023-07-08 08:18:23.856262 2023-07-08 08:18:23.856273 aggnd 964322153 R rec 49f4eee2-cd1e-4753-a5a4-9915ec6aa4dd -2023-07-08 08:18:23.947121 2023-07-08 08:18:23.947127 aggnd 964379473 R rec 40b73ffa-5f62-4b18-bef9-b4970860e911 -2023-07-08 08:18:24.041098 2023-07-08 08:18:24.041114 aggnd 964421984 R rec d6eb10b4-7a3a-4da4-8cb2-141f3e533f6a -2023-07-08 08:18:24.118965 2023-07-08 08:18:24.118979 aggnd 964495376 R rec 50f0c4a8-3bc6-48ff-b14a-8e460920f5b7 -2023-07-08 08:18:24.208349 2023-07-08 08:18:24.20836 aggnd 964501090 R rec 2d92d1d2-fc53-43e8-a075-ba7397f9ba75 -2023-07-08 08:18:24.291006 2023-07-08 08:18:24.291011 aggnd 964564491 R rec 2576d166-39a2-45bf-a9d1-092a480b3e16 -2023-07-08 08:18:24.374453 2023-07-08 08:18:24.374469 aggnd 964647222 R rec e6085e10-3a47-420c-b7b9-faec63d9adec -2023-07-08 08:18:24.467326 2023-07-08 08:18:24.467331 aggnd 964653613 R rec 8613c249-b307-43a8-99d1-f7a9abab1698 -2023-07-08 08:18:24.55645 2023-07-08 08:18:24.556466 aggnd 964715619 R rec 89be7fe0-9696-4ef4-a8d3-e171c33c03fb -2023-07-08 08:18:24.653094 2023-07-08 08:18:24.653105 aggnd 964855380 R rec 4442ffd0-a521-4045-ac32-0174a6a246b4 -2023-07-08 08:18:24.74282 2023-07-08 08:18:24.742826 aggnd 964861135 R rec e22bbc68-a8b9-4ab9-b50f-9e976605ec22 -2023-07-08 08:18:24.838355 2023-07-08 08:18:24.838366 aggnd 96503545X R rec 45b93224-2cf6-4183-9b75-1d70589d0818 -2023-07-08 08:18:24.944075 2023-07-08 08:18:24.944089 aggnd 965091961 R rec b087db54-efc5-4cd1-8db6-4bce0d06608c -2023-07-08 08:18:25.031302 2023-07-08 08:18:25.031308 aggnd 965120449 R rec 229d27b7-231b-4a53-8e57-3cdecd515e12 -2023-07-08 08:18:25.118314 2023-07-08 08:18:25.11832 aggnd 965135217 R rec 3606661b-897f-400d-a3c8-2dca38656467 -2023-07-08 08:18:25.214738 2023-07-08 08:18:25.214743 aggnd 965175251 R rec c141b46f-be14-4d56-8434-e92699428406 -2023-07-08 08:18:25.307079 2023-07-08 08:18:25.307086 aggnd 965321827 R rec 309ec9e5-5685-45c6-a61e-e676e54f7097 -2023-07-08 08:18:25.377245 2023-07-08 08:18:25.377251 aggnd 965330842 R rec fa72d658-0309-4c55-942f-5d0059abd097 -2023-07-08 08:18:25.449423 2023-07-08 08:18:25.449427 aggnd 965868915 R rec 4b8a8a93-2781-43da-83fb-151be29dad74 -2023-07-08 08:18:25.538498 2023-07-08 08:18:25.539062 aggnd 966048636 R rec d6038ba2-4d2c-44f7-9ba2-e609b190a7ef -2023-07-08 08:18:25.633118 2023-07-08 08:18:25.633124 aggnd 966525892 R rec e4ffa96e-1aeb-4403-86ef-b8e1f07a123b -2023-07-08 08:18:25.737962 2023-07-08 08:18:25.737973 aggnd 966552997 R rec e3fafd24-32de-43db-b71c-b5eb5c77b721 -2023-07-08 08:18:25.842673 2023-07-08 08:18:25.842679 aggnd 966574982 R rec 4ec6738e-f422-4d59-b0da-a508d9cf4aec -2023-07-08 08:18:25.94948 2023-07-08 08:18:25.949494 aggnd 967972817 R rec baf760f7-febf-4653-b09f-b385cfeb273f -2023-07-08 08:18:26.023776 2023-07-08 08:18:26.023781 aggnd 968070191 R rec a0ee90a2-aede-4069-8a8e-7e81516bba42 -2023-07-08 08:18:26.128704 2023-07-08 08:18:26.128709 aggnd 968095615 R rec ab41910b-3001-4c11-862d-dd0c377f1623 -2023-07-08 08:18:26.224801 2023-07-08 08:18:26.224818 aggnd 968111521 R rec f53529e5-7d70-4544-95ea-d03662205674 -2023-07-08 08:18:26.302024 2023-07-08 08:18:26.30203 aggnd 968131786 R rec 3fb82df5-16dc-4ef7-bb69-c5d247cecfbe -2023-07-08 08:18:26.378679 2023-07-08 08:18:26.378699 aggnd 968149766 R rec c8aaa684-968d-4af5-8035-260ed2f6365c -2023-07-08 08:18:26.481109 2023-07-08 08:18:26.481114 aggnd 96815252X R rec fbca5ecb-db54-45a0-b57f-6bd3246f14f1 -2023-07-08 08:18:26.55555 2023-07-08 08:18:26.555561 aggnd 968164811 R rec 8f719870-af44-4a67-b940-c252129e5d70 -2023-07-08 08:18:26.648453 2023-07-08 08:18:26.648458 aggnd 968168221 R rec 5d4a027f-e054-45f5-af29-a9970172accc -2023-07-08 08:18:26.744217 2023-07-08 08:18:26.744223 aggnd 968179002 R rec 8b369140-d2aa-4b11-b478-66ec06dd8494 -2023-07-08 08:18:26.820732 2023-07-08 08:18:26.820746 aggnd 96818734X R rec eced8334-4d19-417f-88c2-79f31a523469 -2023-07-08 08:18:26.920616 2023-07-08 08:18:26.920622 aggnd 968195938 R rec 73b6867a-6e20-4b68-b361-20bfe4bc9b3d -2023-07-08 08:18:27.021806 2023-07-08 08:18:27.021812 aggnd 968196349 R rec 44463ab3-8752-436e-a28b-a8455a0b155c -2023-07-08 08:18:27.10712 2023-07-08 08:18:27.107136 aggnd 968265642 R rec 02e55c86-43a9-4802-99fa-fd92336e8ffb -2023-07-08 08:18:27.249837 2023-07-08 08:18:27.249848 aggnd 968285988 R rec 23a8ea67-56e1-4b9d-9053-6063414af0a5 -2023-07-08 08:18:27.375459 2023-07-08 08:18:27.375475 aggnd 968290981 R rec 200f8336-2c5d-474c-97ca-bae1f6cf9666 -2023-07-08 08:18:27.484246 2023-07-08 08:18:27.484258 aggnd 968305768 R rec d1d17765-b0b1-4535-94cc-6ab9f321b519 -2023-07-08 08:18:27.616343 2023-07-08 08:18:27.616359 aggnd 968777449 R rec 1de8d187-f48d-44b4-aee2-cdaa61815a4f -2023-07-08 08:18:27.724462 2023-07-08 08:18:27.724472 aggnd 968883982 R rec 1b379b1d-3cf8-4b6f-85ae-2838c992e7c0 -2023-07-08 08:18:27.824121 2023-07-08 08:18:27.824132 aggnd 968989454 R rec 9b086675-3a14-4ec7-a2eb-1ec53c76db41 -2023-07-08 08:18:27.943959 2023-07-08 08:18:27.943969 aggnd 968989640 R rec 37f607de-759c-44a9-a485-695cb894dd60 -2023-07-08 08:18:28.068882 2023-07-08 08:18:28.068901 aggnd 969011911 R rec f9b01a7a-afea-44e9-ab81-225e1fc23d5a -2023-07-08 08:18:28.167577 2023-07-08 08:18:28.16759 aggnd 969012055 R rec b5afb86a-b20f-41b9-9695-e6d99f281512 -2023-07-08 08:18:28.274892 2023-07-08 08:18:28.27491 aggnd 969012462 R rec 2317b200-9770-459a-9519-38cebebd79b6 -2023-07-08 08:18:28.401178 2023-07-08 08:18:28.40119 aggnd 969026927 R rec aea2ccf7-8c74-43d0-ab60-08f8138d4824 -2023-07-08 08:18:28.497087 2023-07-08 08:18:28.497096 aggnd 969033788 R rec 476c1f22-3f32-400b-a1e8-9d66c14eeb8b -2023-07-08 08:18:28.601913 2023-07-08 08:18:28.601922 aggnd 969045859 R rec 0a8061cd-8fad-41d6-8d66-138eec98e658 -2023-07-08 08:18:28.723467 2023-07-08 08:18:28.723477 aggnd 969048009 R rec 31ea06a7-49d7-43ce-8887-f799eb9f14ba -2023-07-08 08:18:28.822191 2023-07-08 08:18:28.822205 aggnd 969051492 R rec dde48af1-283e-4dd1-8cb9-77329fe3f618 -2023-07-08 08:18:28.947298 2023-07-08 08:18:28.947311 aggnd 969056370 R rec f52a1f66-6d70-4c31-89a4-3f467f3ea759 -2023-07-08 08:18:29.054523 2023-07-08 08:18:29.054536 aggnd 969521367 R rec 8a33a7dc-7872-4a83-9fc1-f3d693e06a43 -2023-07-08 08:18:29.153826 2023-07-08 08:18:29.15384 aggnd 969522304 R rec 9ccd4d9a-8a2d-4ff5-8d98-eb8618f2e72e -2023-07-08 08:18:29.254178 2023-07-08 08:18:29.254189 aggnd 96954135X R rec 61a7e5c4-90cc-4de0-815a-7f6fbe8d35aa -2023-07-08 08:18:29.380892 2023-07-08 08:18:29.380906 aggnd 96954457X R rec 3deacadd-b061-4adb-a115-79263a666876 -2023-07-08 08:18:29.472805 2023-07-08 08:18:29.472816 aggnd 969559933 R rec 933005f9-d155-48ec-bebb-cf4cce8d296c -2023-07-08 08:18:29.586431 2023-07-08 08:18:29.586447 aggnd 96999463X R rec 179473f5-9e36-4439-b468-95cdae68ac1a -2023-07-08 08:18:29.700893 2023-07-08 08:18:29.700898 aggnd 97001418X R rec abb1b3f9-a1e6-471d-889c-35dd44db6915 -2023-07-08 08:18:29.805382 2023-07-08 08:18:29.805398 aggnd 970052987 R rec 0e3412f5-509d-40aa-ae9d-129ca2944937 -2023-07-08 08:18:29.929155 2023-07-08 08:18:29.929165 aggnd 970275323 R rec 08a89779-380e-4256-8533-de4d573c7f19 -2023-07-08 08:18:30.067686 2023-07-08 08:18:30.067697 aggnd 970287798 R rec 12ef9e29-aed6-45c2-a765-e67a009be583 -2023-07-08 08:18:30.171201 2023-07-08 08:18:30.171216 aggnd 970302339 R rec a68571e8-45ce-4b38-895e-bfb54a3a7e4e -2023-07-08 08:18:30.277061 2023-07-08 08:18:30.277077 aggnd 97030482X R rec 457a041a-9e52-4b46-a2c9-a8b25595035e -2023-07-08 08:18:30.37395 2023-07-08 08:18:30.373961 aggnd 970399340 R rec d063a4d4-f168-46d1-8546-4cfa02686b1c -2023-07-08 08:18:30.485737 2023-07-08 08:18:30.48575 aggnd 970821794 R rec 2586ed39-a44b-47b0-8d99-f2b0c549f3a6 -2023-07-08 08:18:30.582019 2023-07-08 08:18:30.582029 aggnd 971124272 R rec 8023048b-988d-4637-854f-4db9f092bbcc -2023-07-08 08:18:30.672771 2023-07-08 08:18:30.672782 aggnd 971124728 R rec 86beb9bd-0f65-4a15-ba29-596626e1e46f -2023-07-08 08:18:30.784595 2023-07-08 08:18:30.784605 aggnd 971140162 R rec 9b5874cf-622c-4209-8fa9-db6a7b09acff -2023-07-08 08:18:30.907502 2023-07-08 08:18:30.907518 aggnd 971140642 R rec 3890fa93-0e23-4be0-b1cd-8ad6d237b41d -2023-07-08 08:18:31.023108 2023-07-08 08:18:31.02312 aggnd 971146853 R rec 0dd69cf0-2cfe-4722-b3f4-e9a69f5e91e8 -2023-07-08 08:18:31.124326 2023-07-08 08:18:31.124342 aggnd 971628246 R rec a75e2085-2ec6-4d2f-8450-448a05530cd4 -2023-07-08 08:18:31.234127 2023-07-08 08:18:31.234139 aggnd 971687315 R rec ab8c3f4b-b3eb-4b0f-90fd-df84584585cc -2023-07-08 08:18:31.335053 2023-07-08 08:18:31.335065 aggnd 971792496 R rec c8d64e65-b8b9-4daa-8e02-af7b981d9c7d -2023-07-08 08:18:31.460058 2023-07-08 08:18:31.460071 aggnd 971798311 R rec 8744eafe-d4a1-4581-9a9e-957a7706a107 -2023-07-08 08:18:31.560765 2023-07-08 08:18:31.560774 aggnd 97198364X R rec 9452c256-4d4d-4590-8f98-3368a8de6478 -2023-07-08 08:18:31.675003 2023-07-08 08:18:31.675014 aggnd 972482830 R rec ebc63a5c-6b84-45b3-8249-450eb65f2a85 -2023-07-08 08:18:31.783804 2023-07-08 08:18:31.783817 aggnd 972926496 R rec 5301b923-5857-4158-abb4-d5dcda6d757d -2023-07-08 08:18:31.87692 2023-07-08 08:18:31.876931 aggnd 972927743 R rec 94e0db1a-a878-4119-8733-ec05a86a7bac -2023-07-08 08:18:32.005323 2023-07-08 08:18:32.005335 aggnd 972947191 R rec 13686e02-05a6-4232-81a4-64f0477b911d -2023-07-08 08:18:32.102746 2023-07-08 08:18:32.102758 aggnd 972955372 R rec 8ffe06ab-713e-47d9-a0c4-ba7dd9572911 -2023-07-08 08:18:32.202 2023-07-08 08:18:32.202012 aggnd 972969608 R rec d643e190-fc7e-4f9c-8caa-0cf775b7fb03 -2023-07-08 08:18:32.30278 2023-07-08 08:18:32.302791 aggnd 972975128 R rec 59ccb6ec-4bb6-415e-b199-1ac33f42f317 -2023-07-08 08:18:32.409362 2023-07-08 08:18:32.409382 aggnd 972990437 R rec fcddcfc9-ce59-4fe9-8556-8bd71e0a4e3e -2023-07-08 08:18:32.516382 2023-07-08 08:18:32.516398 aggnd 973004010 R rec 55d838eb-530c-4283-9310-5dcf2aa46635 -2023-07-08 08:18:32.630006 2023-07-08 08:18:32.630016 aggnd 973016515 R rec a593f2e1-1d3d-46fe-8017-1cc90914e8da -2023-07-08 08:18:32.77013 2023-07-08 08:18:32.770143 aggnd 973017856 R rec f120309a-e9d6-4c21-bf23-032bd812e2c7 -2023-07-08 08:18:32.884785 2023-07-08 08:18:32.884796 aggnd 973277645 R rec f2d25119-cd20-4163-ade6-b68923cc439c -2023-07-08 08:18:32.99808 2023-07-08 08:18:32.998094 aggnd 97372076X R rec 79c07f62-3858-4881-990c-60cf4a7e6895 -2023-07-08 08:18:33.104349 2023-07-08 08:18:33.104364 aggnd 973728558 R rec 5fcd5b4f-4a31-4c8d-a19c-3e94a8157471 -2023-07-08 08:18:33.221768 2023-07-08 08:18:33.221778 aggnd 973729619 R rec 9135a67a-bbd1-41d4-9f76-512cb6677fc1 -2023-07-08 08:18:33.321844 2023-07-08 08:18:33.321854 aggnd 973743220 R rec 13a12dd6-fbe5-4dad-a3e4-05f136055c04 -2023-07-08 08:18:33.430091 2023-07-08 08:18:33.430103 aggnd 973753544 R rec dc975d0f-f1ff-407d-82c0-7e3191add577 -2023-07-08 08:18:33.557718 2023-07-08 08:18:33.557728 aggnd 973763361 R rec a2544b38-0083-491f-a045-d4ab441d10d2 -2023-07-08 08:18:33.682788 2023-07-08 08:18:33.682801 aggnd 973769998 R rec 8dac6b88-49d7-470c-9545-33a285ca02d0 -2023-07-08 08:18:33.79705 2023-07-08 08:18:33.79706 aggnd 973778318 R rec 1494b8ae-461d-4c10-b820-d4e55989c704 -2023-07-08 08:18:33.899901 2023-07-08 08:18:33.899912 aggnd 97378637X R rec 4c56f20b-87df-4536-bdb4-bbb907cc8c45 -2023-07-08 08:18:34.004176 2023-07-08 08:18:34.004193 aggnd 973790636 R rec 9c89ee8d-f710-4cfd-8a75-fefcdd07e702 -2023-07-08 08:18:34.118178 2023-07-08 08:18:34.118184 aggnd 973818522 R rec b86b57ba-a7a4-430b-b0e3-11dfc7b9cff4 -2023-07-08 08:18:34.238859 2023-07-08 08:18:34.23887 aggnd 973819987 R rec 9f3b1eca-3c0f-496d-9443-14c5a2b76562 -2023-07-08 08:18:34.363059 2023-07-08 08:18:34.363077 aggnd 973828269 R rec 17b09677-3ddb-4887-9655-f01fb8be8dc0 -2023-07-08 08:18:34.46338 2023-07-08 08:18:34.463393 aggnd 973832231 R rec 4adce4fd-fdc5-495d-800f-1c5d03ff0c09 -2023-07-08 08:18:34.570915 2023-07-08 08:18:34.570929 aggnd 973847476 R rec f69c2244-79d0-4afb-b666-b78b16e39d12 -2023-07-08 08:18:34.68732 2023-07-08 08:18:34.687334 aggnd 973854790 R rec 17a4548b-bd46-420e-b96b-17cbe5714957 -2023-07-08 08:18:34.794008 2023-07-08 08:18:34.794023 aggnd 973987278 R rec 321aecbd-6b63-4e09-934f-e0b3049998e4 -2023-07-08 08:18:34.900586 2023-07-08 08:18:34.900604 aggnd 973999527 R rec 19bb9975-9244-473e-8135-691b248c4805 -2023-07-08 08:18:35.002886 2023-07-08 08:18:35.002899 aggnd 974085812 R rec a1db3b76-8af8-49ea-ba91-7cc9fb601a02 -2023-07-08 08:18:35.1234 2023-07-08 08:18:35.123413 aggnd 974127469 R rec 81f21cf9-8f5f-4f96-b56a-c68cc06c952e -2023-07-08 08:18:35.237698 2023-07-08 08:18:35.237707 aggnd 974169722 R rec 2c4d06bd-b6b4-43c8-ba71-37f93f8b3ebd -2023-07-08 08:18:35.349958 2023-07-08 08:18:35.349964 aggnd 974334650 R rec e1b214f1-d565-409f-b08e-108fb5755506 -2023-07-08 08:18:35.44015 2023-07-08 08:18:35.440165 aggnd 974336076 R rec 90bf3201-b304-459f-9bdd-f715715dd984 -2023-07-08 08:18:35.546698 2023-07-08 08:18:35.546715 aggnd 974346063 R rec 7670e347-14e1-4a1b-afce-c48d02464f72 -2023-07-08 08:18:35.652603 2023-07-08 08:18:35.652618 aggnd 974357685 R rec 84ef10ef-21d0-4f0b-b4a2-d28de4d83ba4 -2023-07-08 08:18:35.769009 2023-07-08 08:18:35.769025 aggnd 974385492 R rec ab934cdd-7343-46c2-aea6-1cd52a624230 -2023-07-08 08:18:35.889059 2023-07-08 08:18:35.889072 aggnd 974428345 R rec 44d74c09-7328-43a5-978a-f36538b023f2 -2023-07-08 08:18:36.014332 2023-07-08 08:18:36.014357 aggnd 974489530 R rec f129589f-5104-4903-8a46-2466fdccee27 -2023-07-08 08:18:36.118056 2023-07-08 08:18:36.118066 aggnd 974648884 R rec 4424e92a-8e35-43b0-b2b1-2138d5c78bd9 -2023-07-08 08:18:36.234317 2023-07-08 08:18:36.234329 aggnd 974981990 R rec c9f558cf-939f-4431-98d8-010c6f831b2e -2023-07-08 08:18:36.357056 2023-07-08 08:18:36.357067 aggnd 975310844 R rec 3f54114d-33f1-4d07-8052-6de20055b9b6 -2023-07-08 08:18:36.476747 2023-07-08 08:18:36.476758 aggnd 975409239 R rec 36a792a6-0d9c-4444-ad02-7440ae63d3db -2023-07-08 08:18:36.596208 2023-07-08 08:18:36.596218 aggnd 975409255 R rec 7db3d4f2-9f74-4b8c-8731-44ef27516b58 -2023-07-08 08:18:36.724851 2023-07-08 08:18:36.724861 aggnd 975411659 R rec 6d5509a2-328b-4ee3-ab12-85554eeeb094 -2023-07-08 08:18:36.833241 2023-07-08 08:18:36.833252 aggnd 97542890X R rec cc372fc8-293b-4364-999a-cc5317948c58 -2023-07-08 08:18:36.969738 2023-07-08 08:18:36.969749 aggnd 975483935 R rec e27e29b5-08c2-46eb-b04f-9cf7c0e45613 -2023-07-08 08:18:37.101888 2023-07-08 08:18:37.101894 aggnd 975497278 R rec 6f59f92d-70f2-4873-9477-f6e9541654be -2023-07-08 08:18:37.203175 2023-07-08 08:18:37.203185 aggnd 975537016 R rec b4c94c85-b15d-49e1-adc1-4bb45f7db9c4 -2023-07-08 08:18:37.294807 2023-07-08 08:18:37.29482 aggnd 975540289 R rec b824ede8-71f1-48b0-b1eb-d84b65c35e21 -2023-07-08 08:18:37.394963 2023-07-08 08:18:37.394975 aggnd 97554134X R rec a21263e9-2482-4e1c-9114-367989145f3a -2023-07-08 08:18:37.520407 2023-07-08 08:18:37.520418 aggnd 975543644 R rec b36dfd39-9847-4dc3-9cb8-f0c900924679 -2023-07-08 08:18:37.629992 2023-07-08 08:18:37.630002 aggnd 975561243 R rec 78cfe979-ca2f-44ee-ba2c-19b75b71fc98 -2023-07-08 08:18:37.74549 2023-07-08 08:18:37.745499 aggnd 975774719 R rec 86d867d9-4dca-4fed-9535-ccb4459dec3a -2023-07-08 08:18:37.865641 2023-07-08 08:18:37.865657 aggnd 975895346 R rec c2e7d1df-6c16-4cb8-9c5b-38857f6b7354 -2023-07-08 08:18:37.969002 2023-07-08 08:18:37.969015 aggnd 976006332 R rec 9a479639-4977-40d8-9b4f-46a0b6f1d6dc -2023-07-08 08:18:38.075712 2023-07-08 08:18:38.075728 aggnd 976206323 R rec 7bc4186c-3922-471f-b928-919054678d3f -2023-07-08 08:18:38.186381 2023-07-08 08:18:38.186394 aggnd 976264293 R rec 42d7219c-329a-475d-94e5-cfcaba84c0b5 -2023-07-08 08:18:38.295244 2023-07-08 08:18:38.295255 aggnd 976322293 R rec 2577cbbd-8d0c-4bf4-8521-4cf14d252784 -2023-07-08 08:18:38.405788 2023-07-08 08:18:38.405793 aggnd 976362473 R rec c5b58759-3aba-4057-9345-48c5ea6832b4 -2023-07-08 08:18:38.511619 2023-07-08 08:18:38.51163 aggnd 97638230X R rec e4b7b7df-1ec5-4566-a414-fdadffdf5179 -2023-07-08 08:18:38.627408 2023-07-08 08:18:38.62742 aggnd 976430975 R rec 2b13571f-7529-45d0-bb20-c3314ff082cf -2023-07-08 08:18:38.733194 2023-07-08 08:18:38.733207 aggnd 976606380 R rec a59afc1e-e136-493c-85d8-01720134e160 -2023-07-08 08:18:38.840869 2023-07-08 08:18:38.840885 aggnd 976645815 R rec dcce54ff-abab-4392-b838-72275290a320 -2023-07-08 08:18:38.958709 2023-07-08 08:18:38.958725 aggnd 97664830X R rec 35537094-06d0-4aaf-8aec-ec1b84405b09 -2023-07-08 08:18:39.076375 2023-07-08 08:18:39.076388 aggnd 976660970 R rec 9b6d39ea-180f-4d13-8c82-7ee9ecf44a25 -2023-07-08 08:18:39.185371 2023-07-08 08:18:39.185376 aggnd 976760681 R rec 4a6ec7df-bc75-4224-a367-1fdab5e12448 -2023-07-08 08:18:39.270938 2023-07-08 08:18:39.270952 aggnd 976796694 R rec 843a50e8-766a-409e-8f64-be5e40805e85 -2023-07-08 08:18:39.371471 2023-07-08 08:18:39.371487 aggnd 976913445 R rec a3238412-c48b-4a70-8271-7c7c9c870ef8 -2023-07-08 08:18:39.472808 2023-07-08 08:18:39.472824 aggnd 97693681X R rec a303a5a1-7dbf-4f94-b287-9111dbba6265 -2023-07-08 08:18:39.575794 2023-07-08 08:18:39.575807 aggnd 97694247X R rec bea33ac0-3104-4cbc-b98a-79ef839678ea -2023-07-08 08:18:39.677869 2023-07-08 08:18:39.677882 aggnd 977057763 R rec 72c8ccbd-3ddf-46f5-b1e4-b588a48b5b5f -2023-07-08 08:18:39.781692 2023-07-08 08:18:39.781702 aggnd 977094332 R rec e5fd23e8-7c2c-420d-b6d0-fd36453d39ec -2023-07-08 08:18:39.894489 2023-07-08 08:18:39.8945 aggnd 977270866 R rec 5623e8fb-20c6-4aee-a388-4808a6c537d6 -2023-07-08 08:18:40.036298 2023-07-08 08:18:40.036311 aggnd 977320545 R rec 73ebcbc6-24a8-40bc-b8a1-ff72d7dd1989 -2023-07-08 08:18:40.138594 2023-07-08 08:18:40.138606 aggnd 977327523 R rec 75996615-f326-4b68-89e2-17b96708f9e8 -2023-07-08 08:18:40.257383 2023-07-08 08:18:40.257396 aggnd 977330281 R rec 52977f12-68c7-4606-b6bc-c326fada896a -2023-07-08 08:18:40.371156 2023-07-08 08:18:40.371166 aggnd 977508102 R rec 30c5f0f1-5f1f-482d-940c-799b41478c54 -2023-07-08 08:18:40.488642 2023-07-08 08:18:40.488651 aggnd 977725022 R rec a1a3f58f-de89-414d-8a97-fc1c48eb5b7c -2023-07-08 08:18:40.605746 2023-07-08 08:18:40.60576 aggnd 977939359 R rec fd15e547-53d7-4935-8942-6804775c6dcf -2023-07-08 08:18:40.726315 2023-07-08 08:18:40.726326 aggnd 977998827 R rec 84e7c929-351f-4e47-aeaf-b54c4524c524 -2023-07-08 08:18:40.838312 2023-07-08 08:18:40.838322 aggnd 978057414 R rec 9ad26cbe-0faa-4e99-8b39-620a3890d58b -2023-07-08 08:18:40.947289 2023-07-08 08:18:40.947301 aggnd 978237064 R rec 828c5ebc-9bee-40c4-9977-1247f130dd9b -2023-07-08 08:18:41.065731 2023-07-08 08:18:41.0658 aggnd 97824723X R rec f4782544-be7d-4641-bb61-a2a2d89c3b64 -2023-07-08 08:18:41.168965 2023-07-08 08:18:41.168975 aggnd 978328582 R rec ce217c8f-212c-4b20-b4ef-c3504a0ddb51 -2023-07-08 08:18:41.274539 2023-07-08 08:18:41.274552 aggnd 978329953 R rec 7df450c1-4d7e-4a61-9d85-cf30eb28bd5c -2023-07-08 08:18:41.383123 2023-07-08 08:18:41.383129 aggnd 978348168 R rec 54994a40-025c-4bf8-94dc-d68235d257e8 -2023-07-08 08:18:41.473386 2023-07-08 08:18:41.473396 aggnd 978367316 R rec 7fa2b85e-5210-476b-8370-49925bb7b853 -2023-07-08 08:18:41.577711 2023-07-08 08:18:41.577727 aggnd 97845992X R rec f1adf934-4a9b-46f0-a907-b48ab201f82e -2023-07-08 08:18:41.702068 2023-07-08 08:18:41.70208 aggnd 978499298 R rec b7224a98-2dbe-45f2-81bc-d6da905e0d6d -2023-07-08 08:18:41.803916 2023-07-08 08:18:41.803934 aggnd 978581717 R rec f6f78409-f2d2-496e-837a-e0bbe8b13900 -2023-07-08 08:18:41.936027 2023-07-08 08:18:41.936045 aggnd 978978862 R rec cc080156-5eda-4ec9-8c3a-410b1d9acf73 -2023-07-08 08:18:42.029588 2023-07-08 08:18:42.029599 aggnd 978983149 R rec ef19dc0d-58b0-4d70-ac2e-a8cc85787fea -2023-07-08 08:18:42.132765 2023-07-08 08:18:42.132777 aggnd 979116791 R rec 4176a281-058f-4620-9f8a-6d3aa5036039 -2023-07-08 08:18:42.277383 2023-07-08 08:18:42.277389 aggnd 979117453 R rec 9072d3ec-d844-46be-ad8b-6cb9aa3cc9e8 -2023-07-08 08:18:42.398766 2023-07-08 08:18:42.398779 aggnd 979150949 R rec 78937fe3-a31e-43da-bf88-b858981aff62 -2023-07-08 08:18:42.508517 2023-07-08 08:18:42.508528 aggnd 979243440 R rec 323e558f-d733-4f7c-808f-e281945fe004 -2023-07-08 08:18:42.636037 2023-07-08 08:18:42.63605 aggnd 979248566 R rec fd8adf28-9bb8-4e38-a1ca-ed0d86e7e29a -2023-07-08 08:18:42.758188 2023-07-08 08:18:42.758205 aggnd 979300649 R rec fdf9b63a-1916-445b-9687-aa010db03bc8 -2023-07-08 08:18:42.865654 2023-07-08 08:18:42.865665 aggnd 97935272X R rec 2a77823b-ef09-4f46-87bb-e0134c7990b8 -2023-07-08 08:18:42.971964 2023-07-08 08:18:42.97198 aggnd 979530083 R rec 15e4800f-a0bd-4c0e-92ac-3d6c10cb6173 -2023-07-08 08:18:43.122546 2023-07-08 08:18:43.122558 aggnd 979571839 R rec 6073d6a5-15ee-4b34-8d60-8e4c1404ae8a -2023-07-08 08:18:43.246173 2023-07-08 08:18:43.246183 aggnd 979582407 R rec ac844a63-6228-4982-a79b-7a3dfa738319 -2023-07-08 08:18:43.399501 2023-07-08 08:18:43.399506 aggnd 979721474 R rec 33dae6f1-78ac-4f14-b13e-4db25694be2c -2023-07-08 08:18:43.50091 2023-07-08 08:18:43.500923 aggnd 979910978 R rec 2355c86a-0787-4f32-9212-11604998be97 -2023-07-08 08:18:43.613819 2023-07-08 08:18:43.613835 aggnd 980047277 R rec 6871a606-6cfb-4aac-b346-43566f73d1a6 -2023-07-08 08:18:43.748256 2023-07-08 08:18:43.748272 aggnd 980202078 R rec cfee74ea-bbcf-4a95-b45d-4f50ae56969c -2023-07-08 08:18:43.860382 2023-07-08 08:18:43.860399 aggnd 98022540X R rec 8773977d-9492-4550-a9f1-74f04db2e29a -2023-07-08 08:18:43.982071 2023-07-08 08:18:43.982083 aggnd 980348749 R rec d65586d4-3d9b-46d9-bfbc-3573c2185ff7 -2023-07-08 08:18:44.085427 2023-07-08 08:18:44.08544 aggnd 980351189 R rec c4ca34fd-ec0d-4333-94e6-28a874f1eeb1 -2023-07-08 08:18:44.205394 2023-07-08 08:18:44.205412 aggnd 980351952 R rec 8690acdd-6c5e-43f9-841f-9e04894856dd -2023-07-08 08:18:44.330902 2023-07-08 08:18:44.330912 aggnd 980433401 R rec 84320ad7-417a-4ba2-8acf-abaf596ef3c9 -2023-07-08 08:18:44.440652 2023-07-08 08:18:44.440687 aggnd 980446775 R rec 3578d483-4a7b-4cc3-8477-3872594a0259 -2023-07-08 08:18:44.569954 2023-07-08 08:18:44.569966 aggnd 980496705 R rec 5da77795-51ec-4ca0-8c0c-706bbcbd64b7 -2023-07-08 08:18:44.671821 2023-07-08 08:18:44.671836 aggnd 980499607 R rec b3a0f942-e337-4b5a-a27a-5a76a158fdf9 -2023-07-08 08:18:44.788196 2023-07-08 08:18:44.788207 aggnd 980601851 R rec 35cdb56e-60fb-4996-9fa2-c4e09c3cfcb6 -2023-07-08 08:18:44.889874 2023-07-08 08:18:44.889885 aggnd 980793017 R rec 532ecf92-1b56-41cb-bcb9-68cdd5b2d597 -2023-07-08 08:18:44.985997 2023-07-08 08:18:44.986009 aggnd 981031390 R rec 4c3948bc-f2e7-4b20-bf98-589acc927893 -2023-07-08 08:18:45.104888 2023-07-08 08:18:45.104899 aggnd 981339794 R rec a886b350-4009-4a8b-bee0-743d2435b0c3 -2023-07-08 08:18:45.222187 2023-07-08 08:18:45.222207 aggnd 981426387 R rec aa74b7fd-21d5-4e7b-a203-6f7cd552f608 -2023-07-08 08:18:45.329589 2023-07-08 08:18:45.3296 aggnd 981607705 R rec 443b8162-dd4e-409e-b4ab-7df7cf92f0ea -2023-07-08 08:18:45.45045 2023-07-08 08:18:45.450461 aggnd 981642551 R rec 6a9ba425-04c9-4d45-8b0f-fb7a8e4fe73c -2023-07-08 08:18:45.556263 2023-07-08 08:18:45.556279 aggnd 981663753 R rec fa4b057f-029a-41bd-a6bd-9f2ba167e760 -2023-07-08 08:18:45.661207 2023-07-08 08:18:45.661217 aggnd 981823866 R rec 365c7435-3a43-4ed0-84eb-9f958c13f684 -2023-07-08 08:18:45.782125 2023-07-08 08:18:45.782136 aggnd 981883427 R rec dc4ee3ca-c7af-418a-911a-8962a40a738e -2023-07-08 08:18:45.88054 2023-07-08 08:18:45.880551 aggnd 98195314X R rec 1152316e-0e7f-4e1b-8b59-973d0c335801 -2023-07-08 08:18:46.025254 2023-07-08 08:18:46.025268 aggnd 981996833 R rec 9148b0d9-1946-4fdc-a3da-3633ef7027f4 -2023-07-08 08:18:46.148113 2023-07-08 08:18:46.148126 aggnd 98208823X R rec f9982210-daf4-4865-97c1-ad11fd9113d6 -2023-07-08 08:18:46.249613 2023-07-08 08:18:46.249628 aggnd 982492855 R rec 5d00e795-2373-4518-bc98-6519b40d6635 -2023-07-08 08:18:46.356251 2023-07-08 08:18:46.356262 aggnd 982514050 R rec d352ada8-0405-4a37-a4ff-000e682988d9 -2023-07-08 08:18:46.454731 2023-07-08 08:18:46.454743 aggnd 982653166 R rec 87da13ae-1ed3-4189-a2b0-50fb3be528ce -2023-07-08 08:18:46.555008 2023-07-08 08:18:46.555027 aggnd 982910592 R rec 755ad454-c03c-431d-a1d7-1ff4ab6b8716 -2023-07-08 08:18:46.669185 2023-07-08 08:18:46.669201 aggnd 982913656 R rec 7acea586-8e6e-4d98-a3b5-da890d30ec88 -2023-07-08 08:18:46.758021 2023-07-08 08:18:46.75804 aggnd 982939477 R rec 6058e43c-37bc-4ddb-9ad2-7118876e2106 -2023-07-08 08:18:46.873985 2023-07-08 08:18:46.874001 aggnd 982961308 R rec 949da7c9-c5f4-4dd1-aaa3-648b0e827adf -2023-07-08 08:18:46.985228 2023-07-08 08:18:46.985241 aggnd 982994818 R rec b8f79e4a-a8f1-4dd2-a26b-ca86d510a2da -2023-07-08 08:18:47.086441 2023-07-08 08:18:47.086456 aggnd 983050538 R rec 19fee9f8-a8a0-4cae-a412-0023dee7fb21 -2023-07-08 08:18:47.197807 2023-07-08 08:18:47.197823 aggnd 983491550 R rec fa75a2d7-9662-4d89-83a1-f31e2f4a9c6e -2023-07-08 08:18:47.313316 2023-07-08 08:18:47.313331 aggnd 983615543 R rec fa3805c6-cf87-436b-8f6c-17b78b33229f -2023-07-08 08:18:47.429565 2023-07-08 08:18:47.429572 aggnd 983662215 R rec aed1fbad-88db-4946-8bb2-ff7dfefdf738 -2023-07-08 08:18:47.521757 2023-07-08 08:18:47.521773 aggnd 98379314X R rec 91442bf1-f416-4099-9909-46dd7bf0a88f -2023-07-08 08:18:47.654039 2023-07-08 08:18:47.654054 aggnd 983910138 R rec e624585d-cd04-4d52-a7c3-683989e1864a -2023-07-08 08:18:47.759034 2023-07-08 08:18:47.75905 aggnd 984022686 R rec 02fc7af0-3fff-4c35-8724-ef022f9cd647 -2023-07-08 08:18:47.882428 2023-07-08 08:18:47.882433 aggnd 984092862 R rec 71d84b3e-cc52-4546-afd3-109400e683e6 -2023-07-08 08:18:47.971093 2023-07-08 08:18:47.971106 aggnd 984302190 R rec 48999f0d-8c04-4c29-85cc-aeead90dab92 -2023-07-08 08:18:48.066825 2023-07-08 08:18:48.066838 aggnd 984368728 R rec 1f3c8c0f-8f25-4799-9afb-37f1a8b5abdd -2023-07-08 08:18:48.158831 2023-07-08 08:18:48.158844 aggnd 984403922 R rec 28ea2f80-f682-4c1e-b2fc-b5d706f75367 -2023-07-08 08:18:48.259539 2023-07-08 08:18:48.259554 aggnd 984432779 R rec 78e709ba-d0ee-427e-a1dc-d004aa9e9f9d -2023-07-08 08:18:48.388485 2023-07-08 08:18:48.388495 aggnd 984443711 R rec 6b1f6ed6-7ed4-4b1b-8f8b-41f135b4e43f -2023-07-08 08:18:48.490713 2023-07-08 08:18:48.490723 aggnd 984455655 R rec 73ebedc8-4078-4f05-9db4-83b88b5e8a77 -2023-07-08 08:18:48.623231 2023-07-08 08:18:48.623243 aggnd 984645454 R rec 541fb298-56bb-4ca8-89ae-4c771c457a59 -2023-07-08 08:18:48.71744 2023-07-08 08:18:48.717458 aggnd 984649220 R rec 2ce4aaeb-575e-42ad-9d8d-cdb7871710f2 -2023-07-08 08:18:48.810791 2023-07-08 08:18:48.810806 aggnd 984661956 R rec bbfa624d-48ad-4a14-aa6d-25e9d9a0ad12 -2023-07-08 08:18:48.911254 2023-07-08 08:18:48.911259 aggnd 984695303 R rec 49f65abb-061e-46a1-83f0-c6089ac39717 -2023-07-08 08:18:49.009022 2023-07-08 08:18:49.009037 aggnd 984725180 R rec 893d594f-acb3-435d-b34f-32149de7ec7d -2023-07-08 08:18:49.141839 2023-07-08 08:18:49.141852 aggnd 98474309X R rec ecb2dcb5-5d0a-4022-b29b-719d61700e48 -2023-07-08 08:18:49.26007 2023-07-08 08:18:49.260083 aggnd 984864059 R rec 7d28a826-fc55-474f-aff4-f51badd0df25 -2023-07-08 08:18:49.384877 2023-07-08 08:18:49.384883 aggnd 984972498 R rec 47e5a129-9156-46e4-b871-e13bcd821bab -2023-07-08 08:18:49.489268 2023-07-08 08:18:49.48928 aggnd 98510421X R rec ab2804ad-6608-4acd-9747-f6dce141f244 -2023-07-08 08:18:49.607699 2023-07-08 08:18:49.607712 aggnd 985110783 R rec f14d6d7f-87c8-4058-84a7-f31dea5caf53 -2023-07-08 08:18:49.721025 2023-07-08 08:18:49.721036 aggnd 985307358 R rec 0fd4b3af-9b7b-44ec-862e-c2b30f11a385 -2023-07-08 08:18:49.848254 2023-07-08 08:18:49.848264 aggnd 985554134 R rec afad4934-6aec-4efb-8e5b-67176bfe642c -2023-07-08 08:18:49.985506 2023-07-08 08:18:49.985512 aggnd 985729414 R rec 679c4b25-b7a5-49ca-90ca-c93cf8b828e7 -2023-07-08 08:18:50.104128 2023-07-08 08:18:50.104141 aggnd 985808721 R rec cc0cd82c-4223-4f62-aaf9-ae1471189610 -2023-07-08 08:18:50.220387 2023-07-08 08:18:50.220427 aggnd 985947179 R rec 5f831ac0-ed95-4ecb-853f-6886c529e781 -2023-07-08 08:18:50.339457 2023-07-08 08:18:50.339469 aggnd 986023647 R rec 5983e8dc-df0d-4121-b385-49e2fe47f9e7 -2023-07-08 08:18:50.468837 2023-07-08 08:18:50.46885 aggnd 986065692 R rec 44affe01-f83b-4f7d-9d89-89d8886e78ce -2023-07-08 08:18:50.588133 2023-07-08 08:18:50.588143 aggnd 986091332 R rec 29bc2e3a-cbe5-47dd-b009-b68597e8f0d3 -2023-07-08 08:18:50.678161 2023-07-08 08:18:50.678174 aggnd 986092274 R rec 81ae4ebc-5553-47ec-8b16-8d3b5aeeeef6 -2023-07-08 08:18:50.776925 2023-07-08 08:18:50.776939 aggnd 986429740 R rec b058c2bf-aa4f-4c5c-984d-ed40ce0aec51 -2023-07-08 08:18:50.891523 2023-07-08 08:18:50.891534 aggnd 986445649 R rec 27a53930-d179-4449-869e-a3760915eaa6 -2023-07-08 08:18:50.986817 2023-07-08 08:18:50.98683 aggnd 986571148 R rec e3d1e2ac-0991-4501-840a-a5943ef63ec5 -2023-07-08 08:18:51.104267 2023-07-08 08:18:51.104283 aggnd 986759805 R rec 2bcabb65-ec30-4150-ae62-fbaa99c2ea30 -2023-07-08 08:18:51.217569 2023-07-08 08:18:51.217582 aggnd 986792829 R rec c8bfaea3-56f6-43be-917d-5a1eed55e2a1 -2023-07-08 08:18:51.318518 2023-07-08 08:18:51.318532 aggnd 986836400 R rec da40f7cc-6d10-4b3e-a480-31d23f5fa53d -2023-07-08 08:18:51.432384 2023-07-08 08:18:51.432399 aggnd 98702115X R rec a48df0fc-2251-4e13-b86d-51967a97400c -2023-07-08 08:18:51.534668 2023-07-08 08:18:51.534686 aggnd 987073982 R rec eefad5ea-a815-4142-8c17-8037f5d78491 -2023-07-08 08:18:51.634895 2023-07-08 08:18:51.634989 aggnd 987392964 R rec 3badd1b6-bf53-45fa-a5bd-704193e984c9 -2023-07-08 08:18:51.734396 2023-07-08 08:18:51.734409 aggnd 987450816 R rec b1d56a92-c11d-4aad-ae9b-a9017279e8a8 -2023-07-08 08:18:51.835198 2023-07-08 08:18:51.835209 aggnd 987500465 R rec d1fcd57c-b2d1-4b68-881f-e9258ec17e33 -2023-07-08 08:18:51.93404 2023-07-08 08:18:51.934053 aggnd 987545191 R rec c7bd4082-dee5-46ed-9dca-bc9c1e68d997 -2023-07-08 08:18:52.04249 2023-07-08 08:18:52.042505 aggnd 987612816 R rec 8287ff6f-1057-44ff-93da-d1c71eb86aae -2023-07-08 08:18:52.152504 2023-07-08 08:18:52.152515 aggnd 987631365 R rec af07bdf1-83e2-4233-b157-077613e05144 -2023-07-08 08:18:52.260155 2023-07-08 08:18:52.260166 aggnd 987875418 R rec 2187d09f-d506-465b-ab66-5f927ad4c26b -2023-07-08 08:18:52.380793 2023-07-08 08:18:52.380799 aggnd 987960148 R rec d7bad958-d4f7-4f8d-8007-8b0bcd60f947 -2023-07-08 08:18:52.495005 2023-07-08 08:18:52.495015 aggnd 988152819 R rec e6d97d2c-397e-44ab-b8b4-e703e6cbc5d8 -2023-07-08 08:18:52.632316 2023-07-08 08:18:52.632333 aggnd 988280450 R rec df0f2d05-1958-4ea3-af34-90197736e65a -2023-07-08 08:18:52.749644 2023-07-08 08:18:52.749657 aggnd 988400162 R rec a3068861-c6b9-4a21-9698-0925dcf997aa -2023-07-08 08:18:52.844278 2023-07-08 08:18:52.844291 aggnd 988430940 R rec b9d16b40-eb40-4819-b73d-64f036b86c30 -2023-07-08 08:18:52.952117 2023-07-08 08:18:52.95213 aggnd 98843802X R rec b3eb0db7-0e70-4f97-944a-dbca30202ad4 -2023-07-08 08:18:53.067 2023-07-08 08:18:53.06701 aggnd 988589125 R rec 0f73e1f9-3c89-4c5d-848c-ebb45a5a8fce -2023-07-08 08:18:53.18694 2023-07-08 08:18:53.186953 aggnd 989064859 R rec 8fbc56a2-7455-41e2-a99f-969ab2ec088b -2023-07-08 08:18:53.310303 2023-07-08 08:18:53.310317 aggnd 989146731 R rec 952c52f8-e2bc-4b97-8d49-2d5a98ad14a9 -2023-07-08 08:18:53.439356 2023-07-08 08:18:53.43937 aggnd 989224333 R rec 81060e88-3be9-411c-8fa4-b283505a0a51 -2023-07-08 08:18:53.552727 2023-07-08 08:18:53.55274 aggnd 98940434X R rec bd6436da-a40b-4032-af69-c3dbad07eedd -2023-07-08 08:18:53.669889 2023-07-08 08:18:53.6699 aggnd 989409015 R rec ac9ee13c-699f-49e4-86c8-b585591f542a -2023-07-08 08:18:53.795466 2023-07-08 08:18:53.795482 aggnd 989440583 R rec 7ec5282d-133f-407e-9223-00da9193eeed -2023-07-08 08:18:53.902307 2023-07-08 08:18:53.90232 aggnd 989523926 R rec 135ac7c2-4676-49d9-8618-9c1f1181c49f -2023-07-08 08:18:54.005136 2023-07-08 08:18:54.005149 aggnd 989560279 R rec a772f15c-43b0-451d-a4e0-de2b9c7d3e55 -2023-07-08 08:18:54.10661 2023-07-08 08:18:54.10662 aggnd 989655059 R rec 2b1691a5-d2ad-4041-b680-70e914271c42 -2023-07-08 08:18:54.220895 2023-07-08 08:18:54.220908 aggnd 989690350 R rec 982eb53b-cd65-4b66-aefd-ead4b8902d21 -2023-07-08 08:18:54.339592 2023-07-08 08:18:54.339607 aggnd 989782115 R rec db34682d-fc18-42a3-ac1c-8ed76b52383c -2023-07-08 08:18:54.457196 2023-07-08 08:18:54.457211 aggnd 989838420 R rec 601020aa-589e-4e34-ab88-25365d93622f -2023-07-08 08:18:54.572916 2023-07-08 08:18:54.572922 aggnd 989943828 R rec ed28c048-a59a-4f3d-b652-00eb824391d4 -2023-07-08 08:18:54.685724 2023-07-08 08:18:54.685741 aggnd 990095320 R rec 2f3b9901-ff8c-406c-9506-9c658c8dffef -2023-07-08 08:18:54.801135 2023-07-08 08:18:54.801158 aggnd 990184269 R rec 05213f81-a1fa-4a07-8c72-8a6252f63e0f -2023-07-08 08:18:54.914898 2023-07-08 08:18:54.91494 aggnd 990280616 R rec b726e195-0146-496a-ba96-ff6596e9f324 -2023-07-08 08:18:55.02318 2023-07-08 08:18:55.023196 aggnd 990285375 R rec 2e0fb52a-e16f-4091-acc5-c8e2a4f65aaa -2023-07-08 08:18:55.152417 2023-07-08 08:18:55.152433 aggnd 990285650 R rec c19d1c81-8137-4347-8998-f486d728cd49 -2023-07-08 08:18:55.294079 2023-07-08 08:18:55.294092 aggnd 990303160 R rec 6378c3af-e668-427a-a07e-c4b262094ce8 -2023-07-08 08:18:55.413203 2023-07-08 08:18:55.413216 aggnd 990335763 R rec 44bcc73b-1388-4d60-93c9-8fbc7347b6c4 -2023-07-08 08:18:55.538944 2023-07-08 08:18:55.538962 aggnd 990348059 R rec c33160f0-1382-4615-b4d4-2724c5eebedf -2023-07-08 08:18:55.654424 2023-07-08 08:18:55.654438 aggnd 990387844 R rec 18701f75-168b-40fd-b97c-80038ea8f191 -2023-07-08 08:18:55.769218 2023-07-08 08:18:55.769228 aggnd 990398455 R rec 56a38d71-50d6-4acf-a8af-73ad8cf4a9f8 -2023-07-08 08:18:55.924102 2023-07-08 08:18:55.924108 aggnd 990407624 R rec 66f7a526-6dd1-4752-9b05-9aa342741bcc -2023-07-08 08:18:56.006458 2023-07-08 08:18:56.006464 aggnd 990531325 R rec 451f5817-cfa4-455b-b3d4-c3db9f822ab2 -2023-07-08 08:18:56.088457 2023-07-08 08:18:56.088466 aggnd 990665801 R rec 10d7c6e4-4442-4dcd-a107-aaea61d609af -2023-07-08 08:18:56.187944 2023-07-08 08:18:56.188002 aggnd 990683869 R rec 5661cf73-fabf-4af2-a635-48433e6f759d -2023-07-08 08:18:56.294728 2023-07-08 08:18:56.294738 aggnd 990766160 R rec 869cccea-19c3-4211-a6c4-ffab4c512469 -2023-07-08 08:18:56.422594 2023-07-08 08:18:56.422607 aggnd 990827321 R rec 54d4cffe-c262-462f-abf3-d268046708c3 -2023-07-08 08:18:56.521942 2023-07-08 08:18:56.521947 aggnd 990889203 R rec 164418c9-c853-4655-a311-8edeef16e13d -2023-07-08 08:18:56.652328 2023-07-08 08:18:56.652347 aggnd 99109087X R rec 19b72cba-2bd9-4777-984d-c8a92419968c -2023-07-08 08:18:56.769138 2023-07-08 08:18:56.76915 aggnd 991108337 R rec 16d59972-9245-4bdd-a32c-46507131fde7 -2023-07-08 08:18:56.870342 2023-07-08 08:18:56.870361 aggnd 991145429 R rec 76e84c5a-4b69-409c-b5dc-b83bb2b66034 -2023-07-08 08:18:56.976012 2023-07-08 08:18:56.976027 aggnd 991195000 R rec 3c4eddbd-eeda-4b95-860a-a776fab1cfa1 -2023-07-08 08:18:57.08902 2023-07-08 08:18:57.089035 aggnd 991211103 R rec 2c8ee6d9-f946-4277-a865-4d8e36c858da -2023-07-08 08:18:57.205692 2023-07-08 08:18:57.205709 aggnd 991510011 R rec 27c08c25-b8f0-4296-8e3a-8db2cf0ec3f7 -2023-07-08 08:18:57.382189 2023-07-08 08:18:57.3822 aggnd 991533445 R rec f49d7212-33b8-463e-986a-1f894b332f87 -2023-07-08 08:18:57.4929 2023-07-08 08:18:57.492914 aggnd 992031486 R rec ac5f9ba7-7bd4-4523-a921-f9e767885836 -2023-07-08 08:18:57.619738 2023-07-08 08:18:57.619754 aggnd 992385903 R rec b2355c13-4b62-4731-914c-3174ec5f3db2 -2023-07-08 08:18:57.71995 2023-07-08 08:18:57.719962 aggnd 992448972 R rec 8f8d3e6d-a307-4775-9e40-2ca2eb455173 -2023-07-08 08:18:57.828817 2023-07-08 08:18:57.828826 aggnd 992654173 R rec bfc34ed0-ab12-4009-9331-1f865a46bd2e -2023-07-08 08:18:57.922485 2023-07-08 08:18:57.922492 aggnd 992787858 R rec eadd1446-6d3b-444f-9779-77e26275209a -2023-07-08 08:18:58.020494 2023-07-08 08:18:58.020508 aggnd 992788137 R rec d8ff6572-5397-4eed-8f26-d8e4620a7354 -2023-07-08 08:18:58.14594 2023-07-08 08:18:58.145952 aggnd 992810159 R rec c6110ef1-75b9-42ad-b855-9f2492d39fb8 -2023-07-08 08:18:58.258029 2023-07-08 08:18:58.258045 aggnd 992947588 R rec 460decaa-6131-47fb-9523-4cf6cd91f1a3 -2023-07-08 08:18:58.395342 2023-07-08 08:18:58.395348 aggnd 993072542 R rec e1deb863-2926-44fb-8436-0011cdd6986c -2023-07-08 08:18:58.502679 2023-07-08 08:18:58.502694 aggnd 993585043 R rec 55ac9a04-a764-4add-8fe7-0d863d7d34e0 -2023-07-08 08:18:58.610086 2023-07-08 08:18:58.610102 aggnd 994152868 R rec 9c533e3a-df69-4dda-883a-e33678b1628f -2023-07-08 08:18:58.721056 2023-07-08 08:18:58.721071 aggnd 994333080 R rec 035138b8-1740-43be-bd17-1cfec9d371e0 -2023-07-08 08:18:58.81414 2023-07-08 08:18:58.814156 aggnd 994528647 R rec 4d7e921a-f68a-4f78-931c-d268813c3ea5 -2023-07-08 08:18:58.905074 2023-07-08 08:18:58.905089 aggnd 994603320 R rec 473bb6e1-34c5-4318-8f20-980321286f22 -2023-07-08 08:18:59.005027 2023-07-08 08:18:59.005043 aggnd 994861915 R rec 4024efb4-736b-4d75-a545-784e38c62434 -2023-07-08 08:18:59.116763 2023-07-08 08:18:59.116776 aggnd 994895232 R rec 21fcbc09-d1d8-4fb9-aba3-d706606e6172 -2023-07-08 08:18:59.225521 2023-07-08 08:18:59.225541 aggnd 995009384 R rec a2ecc742-6c5f-43f2-9ac3-7973031b937c -2023-07-08 08:18:59.347339 2023-07-08 08:18:59.347349 aggnd 995549060 R rec 4391f582-cc4c-4b2c-9bb8-55b83d7520b0 -2023-07-08 08:18:59.456002 2023-07-08 08:18:59.456009 aggnd 995590958 R rec 398ef167-d08a-4885-a3ae-45cc2d041692 -2023-07-08 08:18:59.572138 2023-07-08 08:18:59.572154 aggnd 995597928 R rec 0827983c-d7a4-433f-a46c-e55660b79d8b -2023-07-08 08:18:59.69094 2023-07-08 08:18:59.690952 aggnd 995606250 R rec e4ab183a-e297-4fc4-a979-ae37c9344914 -2023-07-08 08:18:59.813395 2023-07-08 08:18:59.813411 aggnd 995661391 R rec 37a0e965-4e30-4373-bed5-73a0df5f392c -2023-07-08 08:18:59.937432 2023-07-08 08:18:59.937444 aggnd 996104801 R rec 30c8c28c-fca2-4f55-8008-795c81b36393 -2023-07-08 08:19:00.058622 2023-07-08 08:19:00.058635 aggnd 996109269 R rec a0e8e6c4-39b6-4d5b-88b7-8ec155a84020 -2023-07-08 08:19:00.178777 2023-07-08 08:19:00.178794 aggnd 996113045 R rec 2d75e596-658f-4534-ae74-9cfe960edd9c -2023-07-08 08:19:00.301252 2023-07-08 08:19:00.301267 aggnd 996118780 R rec 8414834d-347f-44e5-aba1-11a9910dbe88 -2023-07-08 08:19:00.421762 2023-07-08 08:19:00.421772 aggnd 996123768 R rec 18b0ca7e-ba7a-48f6-9a09-073cb50bb0a7 -2023-07-08 08:19:00.520744 2023-07-08 08:19:00.520757 aggnd 996129952 R rec 12a7339e-ac63-4259-9f35-c8c38dffe176 -2023-07-08 08:19:00.639678 2023-07-08 08:19:00.639691 aggnd 996134492 R rec 061f2a39-2b8b-4859-8b86-5e6eb19a7288 -2023-07-08 08:19:00.77348 2023-07-08 08:19:00.773579 aggnd 996142762 R rec d2c66dea-5ca0-47db-92bd-16484fc300f8 -2023-07-08 08:19:00.947452 2023-07-08 08:19:00.947472 aggnd 996150994 R rec b6c0bf96-e52b-4efa-bc1d-2d7766aeff5f -2023-07-08 08:19:01.080809 2023-07-08 08:19:01.080822 aggnd 996151265 R rec ef79ea7a-1b2e-48b2-98bd-da8a54241863 -2023-07-08 08:19:01.185028 2023-07-08 08:19:01.185043 aggnd 996312811 R rec e1454e5f-9a40-404c-990e-75e9127aaa57 -2023-07-08 08:19:01.298105 2023-07-08 08:19:01.29811 aggnd 996312919 R rec 339cb4a9-f784-476f-a273-0d4a458b25ed -2023-07-08 08:19:01.387215 2023-07-08 08:19:01.38723 aggnd 996322809 R rec 1ad77b13-017b-473e-8892-1909ceae2eaf -2023-07-08 08:19:01.491114 2023-07-08 08:19:01.491127 aggnd 996334920 R rec 964ceb04-3df4-4886-b83a-6d5adff84e13 -2023-07-08 08:19:01.611587 2023-07-08 08:19:01.611601 aggnd 996335323 R rec bf5d56c7-3ead-45b4-b2c9-6184dc2f11fd -2023-07-08 08:19:01.711844 2023-07-08 08:19:01.711856 aggnd 996335846 R rec 6b86087f-ea84-4127-a305-98cfba28c8dd -2023-07-08 08:19:01.821563 2023-07-08 08:19:01.821579 aggnd 996336109 R rec d27fa549-7a15-439e-9c8e-9a9341a515b6 -2023-07-08 08:19:01.946404 2023-07-08 08:19:01.946423 aggnd 996346562 R rec 18cfa291-365f-4a65-9fe8-a89fd8d0af84 -2023-07-08 08:19:02.063202 2023-07-08 08:19:02.063217 aggnd 996348980 R rec 603e6f96-08a7-4e79-9f62-89d453964c88 -2023-07-08 08:19:02.167548 2023-07-08 08:19:02.167563 aggnd 996450793 R rec 6075a452-dd4d-4d20-8d67-00d9c7c971a2 -2023-07-08 08:19:02.282394 2023-07-08 08:19:02.282405 aggnd 996450904 R rec 25c9f80d-8281-4b93-a4f3-7dc4001bc85f -2023-07-08 08:19:02.387983 2023-07-08 08:19:02.387997 aggnd 996455116 R rec 30384ac9-7c06-44a5-ac9f-c316a5e3ecd9 -2023-07-08 08:19:02.503127 2023-07-08 08:19:02.503141 aggnd 996459715 R rec ba9643c6-530d-411d-8151-12e2daca7a2b -2023-07-08 08:19:02.619229 2023-07-08 08:19:02.619235 aggnd 996459855 R rec 755f0462-810f-4f03-9a97-075f6599ca1f -2023-07-08 08:19:02.712095 2023-07-08 08:19:02.712106 aggnd 996464190 R rec 9e4181e6-df85-4607-b872-013d390eb9f4 -2023-07-08 08:19:02.813609 2023-07-08 08:19:02.813623 aggnd 996469915 R rec 29179f76-4461-4765-ac1f-1989d57b79c5 -2023-07-08 08:19:02.945445 2023-07-08 08:19:02.945459 aggnd 996474080 R rec 3741016e-f250-420e-a892-71c335de8515 -2023-07-08 08:19:03.051948 2023-07-08 08:19:03.051963 aggnd 996484280 R rec 77c89150-3f5d-4a0f-92c0-ff806fc98538 -2023-07-08 08:19:03.153686 2023-07-08 08:19:03.153692 aggnd 996494138 R rec ec15df11-7937-460d-b5d1-90644c760bd4 -2023-07-08 08:19:03.249625 2023-07-08 08:19:03.249641 aggnd 996595066 R rec 4d1847e1-1397-4936-974c-833211e7b289 -2023-07-08 08:19:03.374495 2023-07-08 08:19:03.374511 aggnd 996755519 R rec 22cb9a19-9d07-4a4d-9e93-4d8e2cd606c2 -2023-07-08 08:19:03.494235 2023-07-08 08:19:03.494244 aggnd 996765980 R rec 4c4c57d8-20db-4724-baee-03b1565872d8 -2023-07-08 08:19:03.586409 2023-07-08 08:19:03.586421 aggnd 996797343 R rec 015f7f62-7f19-4716-9a45-7b73cac49f86 -2023-07-08 08:19:03.701488 2023-07-08 08:19:03.701503 aggnd 996885226 R rec 54852001-d74c-4e17-920e-fe18428b261f -2023-07-08 08:19:03.797849 2023-07-08 08:19:03.797859 aggnd 996895701 R rec 867e6b07-fc2c-4aa3-bc4c-19464f47dd8c -2023-07-08 08:19:03.895315 2023-07-08 08:19:03.89533 aggnd 996895876 R rec 97e04124-4f77-4537-a99b-1cae83b58055 -2023-07-08 08:19:04.019196 2023-07-08 08:19:04.019211 aggnd 996901248 R rec 8c687e83-e1d9-4fa4-b34b-a1b243f83dad -2023-07-08 08:19:04.125067 2023-07-08 08:19:04.125079 aggnd 997040386 R rec fe0230b7-c4af-4d05-82a0-5c37ac62930e -2023-07-08 08:19:04.23573 2023-07-08 08:19:04.235743 aggnd 997187581 R rec 08c47726-32d8-4bbb-beca-b4d1777b12b7 -2023-07-08 08:19:04.339222 2023-07-08 08:19:04.339234 aggnd 997192240 R rec 0973e5c3-5e11-4eb9-8a74-5e22cadecabf -2023-07-08 08:19:04.435749 2023-07-08 08:19:04.43576 aggnd 997206845 R rec 8fc948de-7265-4f75-968e-af9dace8a5d2 -2023-07-08 08:19:04.537819 2023-07-08 08:19:04.537834 aggnd 997478748 R rec c37e9117-17a2-4c60-9469-d6d21a0031e5 -2023-07-08 08:19:04.640079 2023-07-08 08:19:04.640095 aggnd 99770392X R rec e0e7b839-d60f-4c80-b6e8-6340bd71ae59 -2023-07-08 08:19:04.755138 2023-07-08 08:19:04.755153 aggnd 997809213 R rec 295b036d-4d08-443d-af3f-eeae90be8d7d -2023-07-08 08:19:04.870126 2023-07-08 08:19:04.870137 aggnd 99781926X R rec c4f010b0-e4c9-4790-bf05-33a7d3815acb -2023-07-08 08:19:04.997965 2023-07-08 08:19:04.997978 aggnd 997997117 R rec 6a6ecf36-138e-47a8-8755-a604a8299648 -2023-07-08 08:19:05.12135 2023-07-08 08:19:05.12137 aggnd 997998881 R rec 01a3ebdb-2788-4d38-976e-60ccf5c820e2 -2023-07-08 08:19:05.240126 2023-07-08 08:19:05.24014 aggnd 998032514 R rec 07d04baa-ebc7-41dd-9862-6e37d536beeb -2023-07-08 08:19:05.355337 2023-07-08 08:19:05.355347 aggnd 998115606 R rec 3cc04393-7a4b-4ca4-9299-8558c04f377a -2023-07-08 08:19:05.46282 2023-07-08 08:19:05.462836 aggnd 998143278 R rec d8f529e7-78e0-4582-bb84-cc0b825ce5e1 -2023-07-08 08:19:05.56834 2023-07-08 08:19:05.568357 aggnd 998153915 R rec a816e06c-3b8a-4bbb-9f09-1a8c5f2ca445 -2023-07-08 08:19:05.706162 2023-07-08 08:19:05.706175 aggnd 998167037 R rec 9ac2b5a6-58b7-4bc2-9e60-e0c14c52cd6a -2023-07-08 08:19:05.83965 2023-07-08 08:19:05.839656 aggnd 998173983 R rec f7581427-13d2-4bcc-bb9b-f36068f1f010 -2023-07-08 08:19:05.938838 2023-07-08 08:19:05.938847 aggnd 998174807 R rec bf567115-f181-42a1-b199-268f138ddd63 -2023-07-08 08:19:06.065394 2023-07-08 08:19:06.0654 aggnd 998198137 R rec 231701b6-4b43-4ba5-955e-a1a9801bcd01 -2023-07-08 08:19:06.230864 2023-07-08 08:19:06.230869 aggnd 998198323 R rec dd001836-afcc-4915-9a3c-06a088f5931a -2023-07-08 08:19:06.338841 2023-07-08 08:19:06.338845 aggnd 998216801 R rec 25a9bf9f-f711-40aa-96bd-cffaf18d1606 -2023-07-08 08:19:06.487257 2023-07-08 08:19:06.487269 aggnd 99821731X R rec 41dd1281-0dce-4102-8e51-52d79aef8215 -2023-07-08 08:19:06.592934 2023-07-08 08:19:06.592944 aggnd 998245127 R rec c1bbca68-6fd3-438f-8fff-c7da7a7b8baa -2023-07-08 08:19:06.696693 2023-07-08 08:19:06.696704 aggnd 998245518 R rec 1943a537-7fff-4c77-85bc-d704e0db80ea -2023-07-08 08:19:06.817143 2023-07-08 08:19:06.817153 aggnd 998251313 R rec 613872ec-057e-48aa-a2f6-e87529cbbf53 -2023-07-08 08:19:06.933107 2023-07-08 08:19:06.933117 aggnd 998278815 R rec 1ec256b7-4ba8-44d9-bfc6-46088e423748 -2023-07-08 08:19:07.061528 2023-07-08 08:19:07.061538 aggnd 998292125 R rec 83c8be4b-2ff3-4e05-974c-1160d65f0174 -2023-07-08 08:19:07.19061 2023-07-08 08:19:07.19062 aggnd 998331163 R rec d3df9ac4-d55a-49a7-b684-e28df4b12511 -2023-07-08 08:19:07.292019 2023-07-08 08:19:07.29203 aggnd 998858234 R rec ee6ef1ca-1f87-445f-9b9d-70778eb946b4 -2023-07-08 08:19:07.444541 2023-07-08 08:19:07.444547 aggnd 998904635 R rec 4ca9de53-dabd-48ff-a1cb-b046f058ff6c -2023-07-08 08:19:07.548304 2023-07-08 08:19:07.548315 aggnd 999064185 R rec 41b01ece-8932-4232-8fa6-015ec45c1681 -2023-07-08 08:19:07.677494 2023-07-08 08:19:07.677509 aggnd 999203592 R rec 7fc02bd6-70ef-420d-8012-4001394039eb -2023-07-08 08:19:07.793194 2023-07-08 08:19:07.793205 aggnd 999527061 R rec da3cf22a-3a12-4b32-b6b2-3d7393a19a18 -2023-07-08 08:19:07.934238 2023-07-08 08:19:07.934251 aggnd 999533908 R rec 17cbac10-c1ac-46f7-a59a-d7e2fe468ca7 -2023-07-08 08:19:08.055046 2023-07-08 08:19:08.055057 aggnd 999541161 R rec a9296433-f4d4-4cae-879c-64618c47355d -2023-07-08 08:19:08.165769 2023-07-08 08:19:08.165781 aggnd 999549847 R rec e8269f0a-af9d-4dd8-acc8-2f7b90c48ad8 -2023-07-08 08:19:08.288499 2023-07-08 08:19:08.288515 aggnd 999646869 R rec c7317900-b502-45e6-a4b1-7e5502bd828f -2023-07-08 08:19:08.426681 2023-07-08 08:19:08.426692 aggnd 999780859 R rec d2bf53f1-803f-4efd-9157-2b971fbb562b -2023-07-08 08:19:08.573146 2023-07-08 08:19:08.573162 aggnd 999853155 R rec 128bd1e7-d52f-4645-9ca6-80f62cc92109 -2023-07-08 08:19:08.708773 2023-07-08 08:19:08.708795 aggnd 999862243 R rec ab1bee1a-72bd-438b-83e3-38928ee4ea4f -2023-07-08 08:19:08.821718 2023-07-08 08:19:08.821733 aggnd 999871633 R rec 0c8a9f3a-89a3-49a7-b923-e83ccff0858a -2023-07-08 08:19:08.935603 2023-07-08 08:19:08.935614 aggnd 999921770 R rec e3a451cb-0bde-4de6-9df8-b4a0e21f7dd1 -2023-07-08 08:19:09.041164 2023-07-08 08:19:09.041175 aggnd 999991361 R rec 3b47dd1a-d0f7-46e5-8b09-5edecef41232 -2023-07-08 10:21:53.977205 2023-07-08 10:21:53.977219 aggnd 1079471162 R rec 2ea8cf8b-cfea-42e0-849a-30e1bb18cdbb -2023-07-08 10:21:54.801012 2023-07-08 10:21:54.801046 aggnd 1086281020 R rec 823d4b44-520d-4805-accc-be9d92190f38 -2023-07-08 10:21:55.255972 2023-07-08 10:21:55.255986 aggnd 136380638 R rec b5fb144d-9494-417b-9cf8-5c2f32ed5a55 -2023-07-08 10:21:55.670399 2023-07-08 10:21:55.670418 aggnd 139094342 R rec 7fbe6d05-f313-48ab-a5ca-5858d6b30c66 -2023-07-08 10:21:56.227385 2023-07-08 10:21:56.227391 aggnd 139173544 R rec f359b64c-68b5-4ad5-b520-915932478945 -2023-07-08 10:21:56.621104 2023-07-08 10:21:56.621124 aggnd 139204105 R rec 24bb25d9-136f-44ba-8c5c-c64cdd7c0ef0 -2023-07-08 10:21:57.080948 2023-07-08 10:21:57.080964 aggnd 1233743082 R rec 36351630-daf9-475a-957d-0816d67879cf -2023-07-08 10:21:57.498544 2023-07-08 10:21:57.498577 aggnd 1089511663 R rec 1c4bbc5f-9832-4020-b48a-41ec40bec258 -2023-07-08 10:21:57.930543 2023-07-08 10:21:57.93056 aggnd 1158249543 R rec 73304b1b-4119-4a82-a920-1ef725e56bef -2023-07-08 10:21:58.390228 2023-07-08 10:21:58.390235 aggnd 137858825 R rec d2af7b2c-8e87-4417-9249-26aa6c520768 -2023-07-08 10:21:58.78777 2023-07-08 10:21:58.787779 aggnd 134550412 R rec 03a62d82-2d73-464b-bf90-dc77082d9d6d -2023-07-08 10:21:59.185973 2023-07-08 10:21:59.185987 aggnd 134619102 R rec 0b99cd66-2371-49cb-a64a-d70a4030a7b7 -2023-07-08 10:21:59.60036 2023-07-08 10:21:59.600379 aggnd 134563166 R rec 8e2d091b-e046-43ff-acb4-df341b009510 -2023-07-08 10:21:59.997852 2023-07-08 10:21:59.997871 aggnd 130556939 R rec f392a00b-27ae-4d81-ac93-1b3b948cc1e5 -2023-07-08 10:22:00.418676 2023-07-08 10:22:00.418682 aggnd 139376119 R rec 616fcd82-53e2-4f77-8887-f81da939005e -2023-07-08 10:22:00.810457 2023-07-08 10:22:00.810473 aggnd 13938233X R rec 954b6cf9-8c6c-452f-a5f0-5a121a85961c -2023-07-08 10:22:01.234551 2023-07-08 10:22:01.234567 aggnd 1098168984 R rec 2edfb1b4-e703-4b46-af35-57d5540e6384 -2023-07-08 10:22:01.908439 2023-07-08 10:22:01.908464 aggnd 139480056 R rec 302700cf-e674-41ac-8600-6ff816caf2d2 -2023-07-08 10:22:02.339497 2023-07-08 10:22:02.339511 aggnd 139621156 R rec 9b91c109-8f15-4adf-9642-9a14d5edc230 -2023-07-08 10:22:02.823037 2023-07-08 10:22:02.823058 aggnd 139621652 R rec 2d8516ee-8e95-455a-b741-d21c789d2520 -2023-07-08 10:22:03.241643 2023-07-08 10:22:03.241656 aggnd 1143635876 R rec c7e8b033-e6dd-4e87-b5ba-fdef9d30929e -2023-07-08 10:22:03.678302 2023-07-08 10:22:03.678308 aggnd 1104279754 R rec 92df9da7-3c5a-4c0b-8c59-56a80a4a2345 -2023-07-08 10:22:04.390235 2023-07-08 10:22:04.390251 aggnd 1140075810 R rec f64f657d-e2dc-4f9f-93f7-042060e367e7 -2023-07-08 10:22:04.791536 2023-07-08 10:22:04.791545 aggnd 1140557696 R rec 01ab766a-0d85-4775-9d34-56f28a8a7452 -2023-07-08 10:22:05.248346 2023-07-08 10:22:05.24836 aggnd 1117731855 R rec 92e76df9-b6b9-4337-91e4-7db4e29774c3 -2023-07-08 10:22:05.667317 2023-07-08 10:22:05.667333 aggnd 1148667989 R rec ff90167d-4fa6-4b6b-a550-ccdaec8f701f -2023-07-08 10:22:06.308284 2023-07-08 10:22:06.308297 aggnd 1248272013 R rec 51b79c89-43f9-42d7-ba65-649b73cd481b -2023-07-08 10:22:06.697317 2023-07-08 10:22:06.697332 aggnd 1251903606 R rec 7703b736-16d3-4d51-ac21-b5f4e6eccc58 -2023-07-08 10:22:07.073952 2023-07-08 10:22:07.07397 aggnd 1253266913 R rec 183e4a55-6376-484a-a3dd-9c7393a1884b -2023-07-08 10:22:07.488378 2023-07-08 10:22:07.488394 aggnd 1255052740 R rec 90825ec7-4b6e-4c1c-9ff2-938353a0e5be -2023-07-08 10:22:07.887994 2023-07-08 10:22:07.887999 aggnd 1268485969 R rec c4be617d-67d4-4dee-85ec-f7d68a78c2f0 -2023-07-08 10:22:08.27256 2023-07-08 10:22:08.272575 aggnd 1032305649 R rec 656d8db2-1187-4ac6-b36c-f1651c1cada4 -2023-07-08 10:22:08.694613 2023-07-08 10:22:08.694619 aggnd 1227063229 R rec 186ee62b-da2c-40e2-967b-b156b3b825b2 -2023-07-08 10:22:09.039229 2023-07-08 10:22:09.039238 aggnd 109123471X R rec f642178c-2ebf-4897-9147-9de1e53696d6 -2023-07-08 10:22:09.480012 2023-07-08 10:22:09.480026 aggnd 1079732772 R rec bec7fb42-142e-47eb-b0a5-a18fd709db09 -2023-07-08 10:22:09.964936 2023-07-08 10:22:09.964949 aggnd 1169953743 R rec 893efee7-2c9d-4a00-8640-cee823cf47bc -2023-07-08 10:22:10.321354 2023-07-08 10:22:10.321366 aggnd 12864852X R rec 1c5b8b12-7e03-4af9-8c74-0e72958c50fd -2023-07-08 10:22:10.76362 2023-07-08 10:22:10.763631 aggnd 1162523271 R rec afa5348f-fb16-4903-8dc2-6ac7e014d4e0 -2023-07-08 10:22:11.118825 2023-07-08 10:22:11.118831 aggnd 1158577125 R rec bcba520f-1f40-486d-adb9-df9960ce597b -2023-07-08 10:22:11.477476 2023-07-08 10:22:11.477492 aggnd 11947428X R rec 552a42be-ff52-4e69-b588-29d7331ab99f -2023-07-08 10:22:11.890948 2023-07-08 10:22:11.890973 aggnd 139668136 R rec e1204e02-2660-4794-9a78-2d76be23fdda -2023-07-08 10:22:12.343246 2023-07-08 10:22:12.343258 aggnd 139705104 R rec 7ed2a51e-e2c8-4859-936b-20b0db0c5ef2 -2023-07-08 10:22:12.756087 2023-07-08 10:22:12.756104 aggnd 139708669 R rec 8ce51bb3-92fe-436e-a9ef-96af86a3cc42 -2023-07-08 10:22:13.187463 2023-07-08 10:22:13.187477 aggnd 139717676 R rec 3d5899b7-fec6-4880-9efb-519826a61d8a -2023-07-08 10:22:13.558002 2023-07-08 10:22:13.558024 aggnd 13976674X R rec 695f738b-e5ec-424c-8fb8-46d548f40e3f -2023-07-08 10:22:13.961477 2023-07-08 10:22:13.961506 aggnd 103843914 R rec 0925df3c-e72d-4aa6-8023-a5b51d050215 -2023-07-08 10:22:14.38991 2023-07-08 10:22:14.389917 aggnd 139863915 R rec 32d3d331-6572-4a4c-923f-260af8e44990 -2023-07-08 10:22:14.80759 2023-07-08 10:22:14.807601 aggnd 139875484 R rec 269c6cb8-200c-4d74-8b7c-1ac9db518bee -2023-07-08 10:22:15.224721 2023-07-08 10:22:15.224734 aggnd 111476518X R rec 9f86b5c7-9c9f-4153-ad05-d6fe90ea3c05 -2023-07-08 10:22:15.648925 2023-07-08 10:22:15.648938 aggnd 139894535 R rec 6574bef9-e315-4ffd-a8b1-671e459e2345 -2023-07-08 10:22:16.055087 2023-07-08 10:22:16.05512 aggnd 117125184X R rec 9ec409cd-f875-48d1-91c2-cad0d2fde478 -2023-07-08 10:22:16.780616 2023-07-08 10:22:16.780629 aggnd 1077608101 R rec 983c7bd3-c8ec-4c3d-8ae1-174e000d1fe2 -2023-07-08 10:22:17.222726 2023-07-08 10:22:17.222735 aggnd 1087316928 R rec a6d1326e-ee4a-4723-b175-8f59133d0708 -2023-07-08 10:22:17.607051 2023-07-08 10:22:17.607061 aggnd 1046083678 R rec d7b89d93-c574-4ccc-a8a8-4df6c90ea72c -2023-07-08 10:22:17.976382 2023-07-08 10:22:17.976406 aggnd 139946144 R rec 13c88a74-c4b2-4054-838c-c381c5e00c50 -2023-07-08 10:22:18.365251 2023-07-08 10:22:18.365269 aggnd 1091238898 R rec 3cf8a447-29cd-4678-8117-ba71cbbae385 -2023-07-08 10:22:18.959647 2023-07-08 10:22:18.95966 aggnd 1091786100 R rec ae088426-ff13-46fa-a475-4b589d60746a -2023-07-08 10:22:19.449202 2023-07-08 10:22:19.449211 aggnd 14010657X R rec 400510bb-1dbe-4241-904a-98986eeadfaf -2023-07-08 10:22:19.809495 2023-07-08 10:22:19.809502 aggnd 140142622 R rec e54ba1c8-ee2d-4973-935c-fb2fc17de5df -2023-07-08 10:22:20.178754 2023-07-08 10:22:20.17877 aggnd 1027019781 R rec 6241c36b-8031-4b74-af3f-cb5a69cf5402 -2023-07-08 10:22:20.547869 2023-07-08 10:22:20.547897 aggnd 170594211 R rec b428d908-258b-45aa-b22b-0528f3994d07 -2023-07-08 10:22:20.953579 2023-07-08 10:22:20.953602 aggnd 14016815X R rec 50e3caf9-ed6d-4bcc-bdaa-34a9ae5eb409 -2023-07-08 10:22:21.379221 2023-07-08 10:22:21.37923 aggnd 1221985515 R rec 2de846a2-18ad-4ce5-a52e-85903947ef6a -2023-07-08 10:22:21.74935 2023-07-08 10:22:21.749356 aggnd 1092457992 R rec 88df3b49-ff14-4559-b30c-c8df312304d9 -2023-07-08 10:22:22.128501 2023-07-08 10:22:22.128516 aggnd 1087327822 R rec ff6204dd-13e6-4061-87f5-e29026e640ce -2023-07-08 10:22:22.935856 2023-07-08 10:22:22.935862 aggnd 124396488X R rec 8867a55a-301f-45b9-b5fb-5d639c45ff0a -2023-07-08 10:22:23.655668 2023-07-08 10:22:23.655699 aggnd 1044044519 R rec b85c2b97-f3a5-4566-b67a-c6db75d4fa57 -2023-07-08 10:22:24.037698 2023-07-08 10:22:24.037709 aggnd 173047165 R rec 7b5cbfeb-e6e3-4cd6-bbd6-28f40b8a4990 -2023-07-08 10:22:24.401028 2023-07-08 10:22:24.401041 aggnd 127857214 R rec 59478936-324d-4c71-b974-20901ee6b5af -2023-07-08 10:22:24.960134 2023-07-08 10:22:24.96014 aggnd 1158376529 R rec da3ae9df-237f-4fe4-955c-49f8743fdccd -2023-07-08 10:22:25.395732 2023-07-08 10:22:25.395747 aggnd 1085824861 R rec db7909ea-b74e-4c18-b4fa-285a7f19e45f -2023-07-08 10:22:25.790032 2023-07-08 10:22:25.79005 aggnd 116348747 R rec a158b8fe-440b-437d-9e62-30fda55ab2b3 -2023-07-08 10:22:26.447177 2023-07-08 10:22:26.447192 aggnd 116361816 R rec 41471f61-4cc9-4c84-9012-01871ebde8e0 -2023-07-08 10:22:26.824086 2023-07-08 10:22:26.824118 aggnd 1129898709 R rec 3ba69155-c61a-4c58-bd27-4a032e27f874 -2023-07-08 10:22:27.307566 2023-07-08 10:22:27.307577 aggnd 134781821 R rec 327f354d-755c-46ee-b9ed-00f6fc1dc8e3 -2023-07-08 10:22:27.752679 2023-07-08 10:22:27.75269 aggnd 127465680X R rec 467a44b6-16d3-42c6-b377-3f052e659f70 -2023-07-08 10:22:29.040457 2023-07-08 10:22:29.040472 aggnd 117186430 R rec b376be1e-b9db-4615-a789-8e9fc87d96c0 -2023-07-08 10:22:29.704175 2023-07-08 10:22:29.704192 aggnd 1089477015 R rec 77dc1871-e4e3-40b9-965a-130a90e60d0f -2023-07-08 10:22:30.08985 2023-07-08 10:22:30.08988 aggnd 128438185 R rec 14939fb1-6582-47b2-8dc4-ab1f6a9d790d -2023-07-08 10:22:30.508661 2023-07-08 10:22:30.508684 aggnd 1087157226 R rec d506f33e-1b9e-427b-9a48-91549b2790eb -2023-07-08 10:22:30.906916 2023-07-08 10:22:30.906942 aggnd 1085806677 R rec 1fe51cd0-2e8c-4456-86fc-e6b45e1e56a2 -2023-07-08 10:22:31.337818 2023-07-08 10:22:31.337824 aggnd 126811846X R rec 332e20dd-c29b-43b4-8031-7d82bc2632e9 -2023-07-08 10:22:31.757839 2023-07-08 10:22:31.75785 aggnd 1207474568 R rec 1c0ff1f8-9740-42b1-84e1-15cb603de324 -2023-07-08 10:22:32.415739 2023-07-08 10:22:32.415744 aggnd 121808173 R rec 2d86fac3-9b68-4d15-8481-b392b596a89a -2023-07-08 10:22:33.060025 2023-07-08 10:22:33.060052 aggnd 1095794957 R rec d6938b90-148e-49b4-8901-87be557a07bd -2023-07-08 10:22:33.698179 2023-07-08 10:22:33.69819 aggnd 140469923 R rec 4776066b-9c54-430f-8ee6-f7176a8f9c4b -2023-07-08 10:22:34.130213 2023-07-08 10:22:34.130242 aggnd 140489096 R rec 168fd426-b6c9-4753-a888-7b389f3ee3f5 -2023-07-08 10:22:34.589997 2023-07-08 10:22:34.590003 aggnd 140500634 R rec 7b4fa244-58d6-4135-aa5b-1cc54796557e -2023-07-08 10:22:34.958477 2023-07-08 10:22:34.958494 aggnd 140543503 R rec 861053b1-71b6-47c7-b27c-8e61b9d9200a -2023-07-08 10:22:35.544827 2023-07-08 10:22:35.544834 aggnd 14055260X R rec 785e1f74-6e43-443f-9bab-17bb464b8836 -2023-07-08 10:22:35.891782 2023-07-08 10:22:35.8918 aggnd 140564306 R rec 182e324a-e75e-43b5-a13b-5670649e447f -2023-07-08 10:22:36.401282 2023-07-08 10:22:36.401297 aggnd 140580204 R rec 0fe2fe0f-e920-4a44-a510-98a6fb04314b -2023-07-08 10:22:36.804646 2023-07-08 10:22:36.804653 aggnd 140623388 R rec 2c90ee6e-3ce9-4d85-a05f-f90dd48a2626 -2023-07-08 10:22:37.441508 2023-07-08 10:22:37.441523 aggnd 1245874098 R rec 0a066385-aace-4a9d-a7ba-a9ecf67bcc41 -2023-07-08 10:22:37.859589 2023-07-08 10:22:37.859602 aggnd 12307374X R rec af3496c2-fc1f-4047-8fc3-7af11a7558f2 -2023-07-08 10:22:38.321371 2023-07-08 10:22:38.321387 aggnd 140330720 R rec c109559a-7f04-41c8-a46f-79b998c7921e -2023-07-08 10:22:38.692196 2023-07-08 10:22:38.692206 aggnd 123571693 R rec 4430e696-a40b-4b97-b940-d695fcc02a32 -2023-07-08 10:22:39.248365 2023-07-08 10:22:39.248374 aggnd 140671153 R rec 0282cac1-a3e4-4e31-abda-45ad78360881 -2023-07-08 10:22:39.839542 2023-07-08 10:22:39.839548 aggnd 140749195 R rec 75d25723-cee7-4d16-84d5-cde2cba68b58 -2023-07-08 10:22:40.195759 2023-07-08 10:22:40.195787 aggnd 140751149 R rec 5336f3fb-8858-422d-b957-510f51c2fab3 -2023-07-08 10:22:40.672279 2023-07-08 10:22:40.672284 aggnd 140764143 R rec 15cd40a1-c6c8-4be6-be8f-b7ea65cf063d -2023-07-08 10:22:41.023093 2023-07-08 10:22:41.0231 aggnd 140808337 R rec 19400da5-4666-4c89-a927-653b285ffd12 -2023-07-08 10:22:41.403387 2023-07-08 10:22:41.403394 aggnd 140930531 R rec 7f6e01d6-b96d-4177-a8a1-04a9281fd621 -2023-07-08 10:22:41.773856 2023-07-08 10:22:41.773875 aggnd 1184634262 R rec c6047ccf-21e8-4d55-af08-a90892c60b39 -2023-07-08 10:22:42.164857 2023-07-08 10:22:42.164877 aggnd 1278368817 R rec 9504056d-955f-4506-98c8-d93ae55757ef -2023-07-08 10:22:42.534661 2023-07-08 10:22:42.534691 aggnd 104999227X R rec b1af2eec-c4ae-453c-afa2-a48bcbf34349 -2023-07-08 10:22:42.896888 2023-07-08 10:22:42.896918 aggnd 141801689 R rec a5914e27-f7a2-45a0-bd18-03394cfc32a0 -2023-07-08 10:22:43.268193 2023-07-08 10:22:43.2682 aggnd 1218187433 R rec 05d27e56-82a6-4d39-8688-e2c2f5156912 -2023-07-08 10:22:43.84778 2023-07-08 10:22:43.8478 aggnd 125666632 R rec ec4a4be7-a6f6-4456-a92a-d6c57f48858d -2023-07-08 10:22:44.656388 2023-07-08 10:22:44.656402 aggnd 12688790X R rec ceecad04-1372-43b8-9ae0-ca4e56e00bd2 -2023-07-08 10:22:45.07428 2023-07-08 10:22:45.074288 aggnd 1197826912 R rec 2d2280ca-8c27-43ff-9f96-32f346aba4da -2023-07-08 10:22:45.446127 2023-07-08 10:22:45.446143 aggnd 12747692X R rec 5abf976b-b9b8-42a4-8862-d15430bd0a9a -2023-07-08 10:22:45.866156 2023-07-08 10:22:45.866184 aggnd 127714049 R rec da25cc36-9a45-4c84-b521-4c319fbf0577 -2023-07-08 10:22:46.358831 2023-07-08 10:22:46.358844 aggnd 12837196X R rec a661801a-e916-4d31-babd-2baecf9d697c -2023-07-08 10:22:46.779588 2023-07-08 10:22:46.779601 aggnd 1086545869 R rec 79e7e6be-bffe-407e-82c6-9b35949a5a39 -2023-07-08 10:22:47.171656 2023-07-08 10:22:47.171681 aggnd 1079330836 R rec 5a25f718-17cd-441e-ae92-81f87c55f042 -2023-07-08 10:22:47.527429 2023-07-08 10:22:47.527439 aggnd 129608610 R rec af800082-2242-4bb2-be92-2724eb88d7f7 -2023-07-08 10:22:47.912815 2023-07-08 10:22:47.91283 aggnd 116397451X R rec d2db94e6-efbd-4412-919c-d32d8c55de12 -2023-07-08 10:22:48.348069 2023-07-08 10:22:48.348075 aggnd 1011709368 R rec 3b602203-5932-4b4b-9768-eec758874762 -2023-07-08 10:22:48.725607 2023-07-08 10:22:48.725617 aggnd 131514059 R rec 8e131795-a7a7-47f6-85af-d950e10621b3 -2023-07-08 10:22:49.093001 2023-07-08 10:22:49.093019 aggnd 131738631 R rec 9dc7222c-44e6-48ec-9997-4962a8ca1baa -2023-07-08 10:22:49.530838 2023-07-08 10:22:49.530847 aggnd 1158837534 R rec 4635b55e-2097-489c-84d0-522cfeaf9a67 -2023-07-08 10:22:49.921936 2023-07-08 10:22:49.921968 aggnd 1129905373 R rec 396ce1aa-e243-4de6-9eb2-a4a15f38dbcd -2023-07-08 10:22:51.27547 2023-07-08 10:22:51.275477 aggnd 1138059102 R rec adc0eb4c-2031-4ad2-b5d9-8ce0fac25294 -2023-07-08 10:22:51.658847 2023-07-08 10:22:51.658865 aggnd 1085827739 R rec a2805e1c-212e-4ad2-a931-84732bcaf00f -2023-07-08 10:22:52.101824 2023-07-08 10:22:52.101855 aggnd 1184827516 R rec be837c39-0a15-4035-aef7-719f48053cba -2023-07-08 10:22:52.565791 2023-07-08 10:22:52.565797 aggnd 115855365X R rec e5e2e59f-af63-47d4-bc40-da19e444f914 -2023-07-08 10:22:53.4129 2023-07-08 10:22:53.412913 aggnd 1089143001 R rec dc4f6cfd-3192-4852-acfe-c33fcce821a8 -2023-07-08 10:22:53.782226 2023-07-08 10:22:53.78224 aggnd 1082523097 R rec 6bf276f9-896f-46b3-a94e-3aecc862fd5d -2023-07-08 10:22:54.150419 2023-07-08 10:22:54.150435 aggnd 1088801498 R rec 45cb0e9b-a8f4-4023-b67e-b3c1090a5639 -2023-07-08 10:22:54.610183 2023-07-08 10:22:54.610193 aggnd 115355996X R rec be4d2206-10fa-4a65-b07a-a163131a418f -2023-07-08 10:22:54.984142 2023-07-08 10:22:54.984167 aggnd 1169173837 R rec 0149ebf2-c396-4df8-ad04-058ff1476ad2 -2023-07-08 10:22:55.863324 2023-07-08 10:22:55.863332 aggnd 1172300755 R rec 33d0895c-a4c5-4bec-9938-d0ea1f256b09 -2023-07-08 10:22:56.576217 2023-07-08 10:22:56.576232 aggnd 1261250842 R rec 8f617715-e616-4d3c-a97c-6523df5ecfc6 -2023-07-08 10:22:57.31574 2023-07-08 10:22:57.315751 aggnd 118608619X R rec 026361c8-e8c5-41e1-a4e2-6b1e96cecec9 -2023-07-08 10:22:57.678441 2023-07-08 10:22:57.67847 aggnd 1176219189 R rec 1067d030-a309-4000-b096-8f45f8fe99ba -2023-07-08 10:22:58.105254 2023-07-08 10:22:58.105283 aggnd 1189236710 R rec f3d84525-b664-4e1e-82e5-866bfe2507e2 -2023-07-08 10:22:58.517223 2023-07-08 10:22:58.517229 aggnd 120415693X R rec bf0326fa-c67c-4188-8e57-60bd14f18de7 -2023-07-08 10:22:58.910651 2023-07-08 10:22:58.910671 aggnd 1233756877 R rec e597c8ee-8dd0-400b-aae3-af38bf7f420a -2023-07-08 10:22:59.256171 2023-07-08 10:22:59.256185 aggnd 1238027237 R rec 7b485097-2f7b-441b-a9cd-252efb481329 -2023-07-08 10:22:59.936809 2023-07-08 10:22:59.936838 aggnd 1243598751 R rec 6b6c2d82-d49c-4b59-9da2-8e7f42fa4f99 -2023-07-08 10:23:00.300433 2023-07-08 10:23:00.300445 aggnd 1244862096 R rec 4f506a29-314a-433c-9c3c-1951a9d75ac4 -2023-07-08 10:23:00.78771 2023-07-08 10:23:00.787724 aggnd 125606193X R rec da267368-664e-4b44-93c1-e9a365aff6b3 -2023-07-08 10:23:01.146265 2023-07-08 10:23:01.146273 aggnd 1273775546 R rec 17aaca9c-c255-4224-91c6-f198775fc5e5 -2023-07-08 10:23:01.511003 2023-07-08 10:23:01.511018 aggnd 1158955235 R rec 747857b0-31c4-4f73-829e-71c6cb9ce39d -2023-07-08 10:23:01.924099 2023-07-08 10:23:01.924114 aggnd 1146958730 R rec 3ee7e3f0-ae19-438c-a77a-c88725e6e9c8 -2023-07-08 10:23:02.567135 2023-07-08 10:23:02.567148 aggnd 1158918763 R rec c6a07c27-20b4-4aa6-bd92-f3ebf300b67b -2023-07-08 10:23:03.306841 2023-07-08 10:23:03.306847 aggnd 1235245071 R rec e8667408-085c-411b-87b8-553025855fbe -2023-07-08 10:23:30.382711 2023-07-08 10:23:30.382733 aggnd 116991992 R rec 1b846d39-2e3e-4efd-baf0-0168e35e55fd -2023-07-08 10:23:33.150415 2023-07-08 10:23:33.150447 aggnd 1057520837 R rec 2d719f46-90f6-45a6-bf1d-34678719f115 -2023-07-08 10:23:41.257256 2023-07-08 10:23:41.257267 aggnd 122616243 R rec 3806e1dc-1493-4c68-8dc5-79ddec6ff61f -2023-07-08 10:23:42.994423 2023-07-08 10:23:42.994428 aggnd 1159283095 R rec 580351d0-0855-434b-a28b-2911b2457214 -2023-07-08 10:23:45.273877 2023-07-08 10:23:45.273896 aggnd 1126071935 R rec dd40b190-ed24-41c2-a597-8b8b7cf4267e -2023-07-08 10:23:46.447731 2023-07-08 10:23:46.447752 aggnd 133362817 R rec f45c8867-a445-41d6-aee5-5c3be3b3c3ff -2023-07-08 10:23:47.343734 2023-07-08 10:23:47.34374 aggnd 135226082 R rec 6a51296e-0567-4a99-a905-005157cca67d -2023-07-08 10:23:53.600612 2023-07-08 10:23:53.600624 aggnd 139209204 R rec 173ac78f-cdb1-4aad-adbb-04485a50628e -2023-07-08 10:23:55.544926 2023-07-08 10:23:55.544949 aggnd 139286160 R rec bd2bbeea-3496-477b-b347-6b999bb89127 -2023-07-08 10:24:00.488625 2023-07-08 10:24:00.488658 aggnd 1056159278 R rec 16bb8673-a2fc-4131-8e67-8734dd104ebb -2023-07-08 10:24:05.070668 2023-07-08 10:24:05.070674 aggnd 103624163 R rec b70effe9-8190-4650-a887-5d69f568e6bd -2023-07-08 10:24:12.924056 2023-07-08 10:24:12.924068 aggnd 1035018888 R rec f2fc8303-f240-47f5-86d7-73beefaf5f0c -2023-07-08 10:24:16.023552 2023-07-08 10:24:16.023573 aggnd 120498464 R rec 05045f00-6d6a-4614-b43e-de4911e79b79 -2023-07-08 10:24:28.255598 2023-07-08 10:24:28.255625 aggnd 139542043 R rec 8de117ed-f75c-4b1d-8154-bd949e7494e6 -2023-07-08 10:24:31.898809 2023-07-08 10:24:31.898822 aggnd 139622675 R rec 4d2fe7c1-094d-4cc7-94dd-0ae9f7e52d93 -2023-07-08 10:24:33.558157 2023-07-08 10:24:33.55817 aggnd 13962693X R rec 20b9eb92-e69c-4977-bf0f-36b0aa3cc2c2 -2023-07-08 10:24:35.448919 2023-07-08 10:24:35.448932 aggnd 1173303146 R rec 919f3897-54fa-4a38-b428-84555d1f5678 -2023-07-08 10:24:41.4461 2023-07-08 10:24:41.446109 aggnd 1177717379 R rec 7c950f6f-9334-44e7-825a-1f0f7ce9f1f0 -2023-07-08 10:24:46.792428 2023-07-08 10:24:46.792433 aggnd 132272105 R rec ddd594d2-3aae-4cb2-bfb3-d48830e5168d -2023-07-08 10:24:48.953397 2023-07-08 10:24:48.953401 aggnd 14275210X R rec 3febf7b7-29f5-40a0-9c84-505050a9f001 -2023-07-08 10:24:51.726263 2023-07-08 10:24:51.726277 aggnd 1253501106 R rec a5fcf67d-6c6e-4f7f-9265-49d13b35e07c -2023-07-08 10:24:54.6686 2023-07-08 10:24:54.668629 aggnd 117948682X R rec 66db7e5c-42c7-4236-b344-d099d3803452 -2023-07-08 10:24:56.123042 2023-07-08 10:24:56.123061 aggnd 1247672352 R rec e306cf5c-9081-4d86-b1a4-34da0a153bf7 -2023-07-08 10:24:59.334732 2023-07-08 10:24:59.334747 aggnd 1259930696 R rec fb7a86c6-ef15-4469-8aa0-2e27aa051da1 -2023-07-08 10:25:02.760341 2023-07-08 10:25:02.760354 aggnd 170064344 R rec 3f091d56-f4df-436e-a820-56fb9a51cec8 -2023-07-08 10:25:04.392398 2023-07-08 10:25:04.392409 aggnd 1153744600 R rec 17955300-fabf-4223-a063-33a419e025e5 -2023-07-08 10:25:11.388345 2023-07-08 10:25:11.388359 aggnd 1031494286 R rec ed316bb2-fca9-4587-8003-53e707ce8ddc -2023-07-08 10:25:12.826248 2023-07-08 10:25:12.826268 aggnd 107738338X R rec 97084530-25ae-4988-9f17-0bf90a435f93 -2023-07-08 10:25:14.067747 2023-07-08 10:25:14.06776 aggnd 132503980 R rec e3f549a7-d57b-48dd-b9d5-8e6113863572 -2023-07-08 10:25:18.033431 2023-07-08 10:25:18.033437 aggnd 120759241 R rec ac5e4c03-2b29-4240-b5d5-e5531187a788 -2023-07-08 10:25:18.46381 2023-07-08 10:25:18.463837 aggnd 134624149 R rec 4f315a79-6299-459b-b5ae-14f4adeba409 -2023-07-08 10:25:22.46405 2023-07-08 10:25:22.464059 aggnd 139708162 R rec d1e3a518-455a-4ad5-80da-bf06d5868726 -2023-07-08 10:25:55.528691 2023-07-08 10:25:55.528719 aggnd 141184531 R rec 3a88ef7c-496a-4815-818b-63ebc51b853a -2023-07-08 10:26:06.292565 2023-07-08 10:26:06.292581 aggnd 1195625049 R rec 3420562f-f76d-4539-8d4f-dddf6a425bb1 -2023-07-08 10:26:07.128612 2023-07-08 10:26:07.128627 aggnd 140327606 R rec 9abce8ef-2a0b-4ca0-867c-3807383dc5d4 -2023-07-08 10:26:08.353749 2023-07-08 10:26:08.353777 aggnd 131898922 R rec 941c0896-2a31-4183-9c17-7a77ad70f272 -2023-07-08 10:26:11.167499 2023-07-08 10:26:11.167508 aggnd 1096172224 R rec 94cebed8-45fb-4eb7-8789-a392da4725b8 -2023-07-08 10:26:12.228035 2023-07-08 10:26:12.228042 aggnd 117490555 R rec 4d4da771-6533-4416-b91d-8b04c571ff61 -2023-07-08 10:26:14.927479 2023-07-08 10:26:14.927485 aggnd 1089160305 R rec 906bdafe-4343-4078-83a8-f6924e7b15d4 -2023-07-08 10:26:17.551909 2023-07-08 10:26:17.551915 aggnd 1061268225 R rec f8b2676d-14c5-4f96-9aa9-b7cca494f897 -2023-07-08 10:26:20.042553 2023-07-08 10:26:20.042569 aggnd 1220237183 R rec cc33f4f2-0622-4f6c-a6da-1a2e71d74dc6 -2023-07-08 10:26:25.708899 2023-07-08 10:26:25.708915 aggnd 1079981993 R rec 1cde09b7-5c57-4781-a01f-fc37a7571ff1 -2023-07-08 10:26:28.30966 2023-07-08 10:26:28.309667 aggnd 123952425 R rec 7b529d6c-326c-41b7-bf89-0adc5f13a20e -2023-07-08 10:26:43.834831 2023-07-08 10:26:43.834855 aggnd 16110522X R rec 1c005712-b442-4159-afa5-7bb7226e6935 -2023-07-08 10:27:00.634302 2023-07-08 10:27:00.634315 aggnd 117155608 R rec 0f6704f6-07b9-45e4-89a7-5b6ca1d19268 -2023-07-08 10:27:06.864763 2023-07-08 10:27:06.864774 aggnd 170971325 R rec a8f3ccbe-2ac0-445b-a8c7-30ca0229dd79 -2023-07-08 10:27:08.780812 2023-07-08 10:27:08.780824 aggnd 120539544X R rec 9efb710b-90db-47bb-af7f-9082262bf9d8 -2023-07-08 10:27:14.510475 2023-07-08 10:27:14.510501 aggnd 119552914 R rec 481c655d-6cda-4580-a044-f61d7425a4ce -2023-07-08 10:27:17.585374 2023-07-08 10:27:17.585387 aggnd 1019500344 R rec 0bc7a43e-2978-43ce-bfbb-64c264460b41 -2023-07-08 10:27:18.5493 2023-07-08 10:27:18.549313 aggnd 1178017486 R rec bc8a5759-5525-4c43-a73f-0c92f38bc64f -2023-07-08 10:27:19.934335 2023-07-08 10:27:19.93435 aggnd 107441148X R rec 1c638617-b1c7-4451-a62c-cc07fa60af33 -2023-07-08 10:27:22.215285 2023-07-08 10:27:22.215297 aggnd 1249217156 R rec ff13d114-3bff-4168-8306-17d357e25e1a -2023-07-08 10:27:25.224333 2023-07-08 10:27:25.224351 aggnd 172316480 R rec 0774bb7b-bb86-4a3d-b9a8-1e87d7d70d5b -2023-07-08 10:27:29.148311 2023-07-08 10:27:29.148327 aggnd 140424873 R rec 02f9495b-c2eb-4769-9cf8-efdb94ce5d27 -2023-07-08 10:27:33.628826 2023-07-08 10:27:33.628849 aggnd 1270306960 R rec 516952f2-efe9-44f1-87bc-9c259ed1832c -2023-07-08 10:27:39.265206 2023-07-08 10:27:39.265226 aggnd 1226111009 R rec f23fd0bd-dc01-420e-a427-94926ff3c3b3 -2023-07-08 10:27:41.687534 2023-07-08 10:27:41.687548 aggnd 140553533 R rec abc23e87-9d26-4c75-9288-12f7cfe7977b -2023-07-08 10:27:48.324406 2023-07-08 10:27:48.324411 aggnd 1140439618 R rec 96d2734e-6b09-4fe5-b708-05f8b40f1a2e -2023-07-08 10:27:52.771938 2023-07-08 10:27:52.771959 aggnd 133999912 R rec 0374a752-7419-4404-ab31-02c19da0e9aa -2023-07-08 10:27:54.686516 2023-07-08 10:27:54.686524 aggnd 123954940 R rec 32a692ef-67ce-4fbb-8db5-05661db6df90 -2023-07-08 10:28:03.473932 2023-07-08 10:28:03.47394 aggnd 14085200X R rec f0fe609f-c778-4f1f-af91-aecffb8b831e -2023-07-08 10:28:04.375136 2023-07-08 10:28:04.37515 aggnd 14085603X R rec 9c0e8330-2148-4c65-8ec4-0d9734d22112 -2023-07-08 10:28:13.11764 2023-07-08 10:28:13.117648 aggnd 1064724876 R rec 0c56675b-3699-4e21-8058-4e2bda8e7a1e -2023-07-08 10:28:14.186341 2023-07-08 10:28:14.186347 aggnd 1211358380 R rec bfaea4eb-b29e-49c5-9937-13dbcfb212c5 -2023-07-08 10:28:17.127181 2023-07-08 10:28:17.12721 aggnd 128174889 R rec 60c85ce2-bede-4215-9834-b4571c4d7350 -2023-07-08 10:28:19.323886 2023-07-08 10:28:19.323911 aggnd 125668465 R rec f4e3798b-970d-482f-b0ed-af561c613c24 -2023-07-08 10:28:26.027815 2023-07-08 10:28:26.027824 aggnd 119464942 R rec e64b40b5-fb9c-433b-b57e-9ddc15df3fb5 -2023-07-08 10:28:33.009184 2023-07-08 10:28:33.009195 aggnd 12473409X R rec 3ea3268f-7dfd-4d55-b8c2-e6d69e185b74 -2023-07-08 10:28:34.314209 2023-07-08 10:28:34.314231 aggnd 142514926 R rec 9b2323a6-e598-4d73-8fce-d5b64036ec62 -2023-07-08 10:28:39.262062 2023-07-08 10:28:39.262075 aggnd 115830324 R rec 27ae9bb3-d482-46c7-ac4f-8daa34df0028 -2023-07-08 10:28:44.092894 2023-07-08 10:28:44.092914 aggnd 156719029 R rec 5045ec58-ec5c-491e-b2f4-d032ed21fdc2 -2023-07-08 10:28:45.138514 2023-07-08 10:28:45.138529 aggnd 1199011495 R rec 681cb3e4-650d-446f-8107-0224587f03b6 -2023-07-08 10:28:51.593383 2023-07-08 10:28:51.593397 aggnd 120756455 R rec ed43a064-5482-400e-b2e6-f82f4d4a92d8 -2023-07-08 10:28:52.658883 2023-07-08 10:28:52.658913 aggnd 123673208 R rec 777862b0-485e-4462-89dc-d885383f63f0 -2023-07-08 10:28:54.132454 2023-07-08 10:28:54.132459 aggnd 170154297 R rec a4a45505-50a7-4303-9439-17fb45e6daf6 -2023-07-08 10:28:54.966867 2023-07-08 10:28:54.966892 aggnd 1029917442 R rec 2888501b-5778-40cd-92c3-6b29aca11999 -2023-07-08 10:28:59.574054 2023-07-08 10:28:59.574063 aggnd 12465164X R rec c4864ee4-4825-4ec8-8f41-982fe09af4b4 -2023-07-08 10:29:02.82917 2023-07-08 10:29:02.829175 aggnd 139708952 R rec c89bb3f7-1fbb-491f-ba2b-0f98accd81b4 -2023-07-08 10:29:14.325053 2023-07-08 10:29:14.325079 aggnd 1072585936 R rec a2bb0b94-a3b4-4c05-8a1c-2686e2ab452e -2023-07-08 10:29:16.674044 2023-07-08 10:29:16.674066 aggnd 172099331 R rec 0bc5f6a3-c18f-433e-aa0c-d36580d2e1ac -2023-07-08 10:29:17.595862 2023-07-08 10:29:17.595879 aggnd 1131175786 R rec 1f7b3c3c-b6db-4035-9c38-f8af449084b8 -2023-07-08 10:29:21.94408 2023-07-08 10:29:21.94411 aggnd 117249580 R rec e09369b4-9504-4681-b5b7-ec4157888de0 -2023-07-08 10:29:23.624988 2023-07-08 10:29:23.624998 aggnd 141208740 R rec 2c382184-e012-4393-b574-34cd4d955a76 -2023-07-08 10:29:33.714818 2023-07-08 10:29:33.714833 aggnd 1220644811 R rec 86655a72-c5dd-47b1-99a0-906931dedad3 -2023-07-08 10:29:38.827794 2023-07-08 10:29:38.827803 aggnd 137308914 R rec 0b19264e-6c40-4b56-b98a-70b85ce95cdc -2023-07-08 10:29:41.674342 2023-07-08 10:29:41.674372 aggnd 120981238 R rec f66bac4b-c84d-4af8-b003-7785a8f39c6f -2023-07-08 10:29:46.036802 2023-07-08 10:29:46.036818 aggnd 171115058 R rec d67f80b1-5a68-421c-a649-ea68f4e500be -2023-07-08 10:29:50.954559 2023-07-08 10:29:50.954573 aggnd 1175036641 R rec 6a723b77-3c69-441f-bf90-98c4e9975743 -2023-07-08 10:29:55.086653 2023-07-08 10:29:55.086672 aggnd 173457258 R rec 304c49a2-361d-48cb-9fa4-467e670675c8 -2023-07-08 10:29:56.449517 2023-07-08 10:29:56.449532 aggnd 119255537 R rec 70197bae-4938-4bed-98d0-55e2bc36872d -2023-07-08 10:29:57.344272 2023-07-08 10:29:57.344286 aggnd 133592316 R rec c011e033-2ea2-4124-be2a-50de0c9884f8 -2023-07-08 10:29:58.760307 2023-07-08 10:29:58.760332 aggnd 1164996517 R rec 2e37b6cd-6bca-4fcc-b186-fa60dcfa88c8 -2023-07-08 10:30:04.451197 2023-07-08 10:30:04.451217 aggnd 13685849X R rec 4ca270bc-afe7-47b1-9690-e378fb0f34d0 -2023-07-08 10:30:06.349968 2023-07-08 10:30:06.349985 aggnd 140749861 R rec f5b273fa-a10c-48b4-9b40-5658fdfb84e5 -2023-07-08 10:30:08.208658 2023-07-08 10:30:08.208685 aggnd 134274458 R rec 62af5342-56ff-4f55-a938-a0ff114cd682 -2023-07-08 10:30:11.858312 2023-07-08 10:30:11.858334 aggnd 124206018 R rec f15fabaf-9786-4674-924c-5edd611072a8 -2023-07-08 10:30:12.737973 2023-07-08 10:30:12.737993 aggnd 131812378 R rec 89b8eb80-6f3e-4d96-94a6-b1f9ee0bd79c -2023-07-08 10:30:15.112543 2023-07-08 10:30:15.112555 aggnd 1270526294 R rec e1c67bb9-6071-4f00-9c37-fef80cf36722 -2023-07-08 10:30:16.049764 2023-07-08 10:30:16.049777 aggnd 143454781 R rec c3e2d1ca-c107-4a42-8895-4d0592c5b3c3 -2023-07-08 10:30:19.2354 2023-07-08 10:30:19.235417 aggnd 118857703 R rec 75745ca7-d20d-4f78-b90d-ca8abcf5abd6 -2023-07-08 10:30:19.808493 2023-07-08 10:30:19.80852 aggnd 119443988 R rec 6559238c-b30e-4fa5-9944-8993aced4b1b -2023-07-08 10:30:33.185132 2023-07-08 10:30:33.185148 aggnd 1014841011 R rec 479ecbc1-0f3f-4a6b-bd78-83434670e9a3 -2023-07-08 10:30:34.616876 2023-07-08 10:30:34.616899 aggnd 1060270773 R rec fdd964a2-bb9b-4884-bf55-fc36031a6a6b -2023-07-08 10:30:38.53557 2023-07-08 10:30:38.535587 aggnd 1192852273 R rec ef9057b2-f181-497b-9765-554c81418754 -2023-07-08 10:30:40.632144 2023-07-08 10:30:40.632162 aggnd 1170737064 R rec 4419e2a5-9665-495b-9194-71c6fa74f0ee -2023-07-08 10:30:49.186446 2023-07-08 10:30:49.18646 aggnd 13355757X R rec 500578ad-44a6-4f1a-91b4-d06fd5435b53 -2023-07-08 10:30:53.380063 2023-07-08 10:30:53.38007 aggnd 1212115716 R rec 99b79f2f-20cb-4062-96bc-be5176074a9b -2023-07-08 10:30:58.704659 2023-07-08 10:30:58.704672 aggnd 105597377X R rec 608fbee0-2188-4a92-855d-e58f17b9f750 -2023-07-08 10:31:07.295255 2023-07-08 10:31:07.295278 aggnd 13707543X R rec 61b094b5-2999-4a75-a304-fcdb7f03cd30 -2023-07-08 10:31:08.127308 2023-07-08 10:31:08.12733 aggnd 133767183 R rec df29ef43-f6fd-4302-ae05-c74732a76c34 -2023-07-08 10:31:13.954111 2023-07-08 10:31:13.954116 aggnd 170661393 R rec 86ea53a1-b4eb-483e-893e-825114acbfc4 -2023-07-08 10:31:16.527479 2023-07-08 10:31:16.527497 aggnd 172265258 R rec 3be3cd12-fef1-4e9a-a8b3-a2f68f10aa9a -2023-07-08 10:31:19.758043 2023-07-08 10:31:19.758054 aggnd 1145475299 R rec a39c6096-bc16-40de-a703-f419d2e5502c -2023-07-08 10:31:25.691333 2023-07-08 10:31:25.691354 aggnd 1052636209 R rec 8190b6e3-8f1c-40f0-af00-07bf1da15619 -2023-07-08 10:31:29.455022 2023-07-08 10:31:29.455053 aggnd 119033437 R rec 48251ef4-f1a1-49d9-8234-0227c1ebd3c1 -2023-07-08 10:31:30.511066 2023-07-08 10:31:30.511083 aggnd 120661144 R rec 0ddb9809-c2cb-4236-9a92-268f53a49a93 -2023-07-08 10:31:31.419194 2023-07-08 10:31:31.419205 aggnd 129388084 R rec df4303d6-40dd-4402-8611-4606e9b4f84e -2023-07-08 10:31:36.981445 2023-07-08 10:31:36.981456 aggnd 12031603X R rec 5f5ddd93-519c-4134-a6ad-015366209061 -2023-07-08 10:31:39.828395 2023-07-08 10:31:39.828399 aggnd 138127948 R rec 18943330-8177-42f3-950f-9ce76fc74afc +2024-09-11 09:00:07.88133 2024-09-11 09:00:07.881335 aggnd 000193364 R rec c2f0be96-47fd-494b-92fb-436b3d1b145a +2024-09-11 09:00:07.093551 2024-09-11 09:00:07.093556 aggnd 000018953 R rec e3369939-9f08-48f2-95a6-05e0c9402d4e +2024-09-11 09:00:07.164376 2024-09-11 09:00:07.164381 aggnd 00002676X R rec 4dabbb12-8946-4c70-8ea0-fc14ae9cb855 +2024-09-11 09:00:07.211116 2024-09-11 09:00:07.211121 aggnd 000089540 R rec 1f2d6493-42bb-411f-8dce-1df3769a7768 +2024-09-11 09:00:07.256728 2024-09-11 09:00:07.256733 aggnd 000115460 R rec 6e9ebb7a-a94c-4527-a3fc-4de2ea4baafa +2024-09-11 09:00:07.320149 2024-09-11 09:00:07.320154 aggnd 000125121 R rec 10f91c0f-2b3a-4b35-ae82-23c84ac731f6 +2024-09-11 09:00:07.383657 2024-09-11 09:00:07.383661 aggnd 000132764 R rec d2580931-7d29-49fc-9dbb-c19562bafb19 +2024-09-11 09:00:07.430374 2024-09-11 09:00:07.43038 aggnd 000139076 R rec 02c9896c-81bc-4113-bbc7-1064610aa63b +2024-09-11 09:00:07.480473 2024-09-11 09:00:07.480477 aggnd 000140899 R rec 51635452-32ed-4102-ab81-ce1491f240b7 +2024-09-11 09:00:07.528665 2024-09-11 09:00:07.52867 aggnd 00014388X R rec e2861ae5-427f-41db-ab19-611d3d2c04ec +2024-09-11 09:00:07.579796 2024-09-11 09:00:07.579801 aggnd 000151408 R rec c6deb5b9-d4c3-43c1-8594-2c66fca9809c +2024-09-11 09:00:07.627249 2024-09-11 09:00:07.627255 aggnd 000161632 R rec 63de79f5-a74d-4b63-9a19-daeb9599dfc9 +2024-09-11 09:00:07.678333 2024-09-11 09:00:07.678338 aggnd 000163791 R rec 9b441455-63ce-4a38-94a6-5ce8af326be9 +2024-09-11 09:00:07.729443 2024-09-11 09:00:07.729449 aggnd 000167088 R rec 30291e16-ee3d-4dc9-a04d-fa80f6bf1321 +2024-09-11 09:00:07.77719 2024-09-11 09:00:07.777195 aggnd 000175978 R rec 335d5945-92d6-456c-aac8-ac2ea4ae79c4 +2024-09-11 09:00:07.829298 2024-09-11 09:00:07.829303 aggnd 000178020 R rec 59101160-99fe-4d6f-8191-ca5b54613f75 +2024-09-11 09:00:07.93493 2024-09-11 09:00:07.934935 aggnd 000250422 R rec 1577ac46-0d51-4d06-aca3-d6f4a4fbb929 +2024-09-11 09:00:07.983989 2024-09-11 09:00:07.983994 aggnd 000269905 R rec 0666045e-4e3b-4801-bc4c-2ea1ca0d108d +2024-09-11 09:00:08.031771 2024-09-11 09:00:08.031776 aggnd 00037959X R rec 3f3bfadb-38d6-4575-8954-ba13494431da +2024-09-11 09:00:08.077863 2024-09-11 09:00:08.077869 aggnd 000390003 R rec 43dcf16f-876f-4bd0-a45f-ee7e82de4915 +2024-09-11 09:00:08.128108 2024-09-11 09:00:08.128112 aggnd 000409928 R rec fb86ee2a-37cf-4a4e-9083-58467f676246 +2024-09-11 09:00:08.176454 2024-09-11 09:00:08.176459 aggnd 000425729 R rec 0ec8ef6e-fd71-43ca-8c61-172b621c26fc +2024-09-11 09:00:08.225141 2024-09-11 09:00:08.225146 aggnd 000438049 R rec 090ae3e3-4d8b-4fb7-a7df-7d0bd03e1e0e +2024-09-11 09:00:08.272176 2024-09-11 09:00:08.272181 aggnd 000441678 R rec e5b236b4-3a9e-4fff-8d4e-ca5975250a11 +2024-09-11 09:00:08.321608 2024-09-11 09:00:08.321613 aggnd 00045561X R rec 2db59ab3-16eb-4dd9-807d-5080e281a885 +2024-09-11 09:00:08.373271 2024-09-11 09:00:08.373277 aggnd 000549568 R rec 989b5c2f-9e48-4e43-82a4-703e25ce75a7 +2024-09-11 09:00:08.427572 2024-09-11 09:00:08.427577 aggnd 000555851 R rec 7a4d7fb7-ab06-4d4b-8acf-69bd5fa5fb46 +2024-09-11 09:00:08.47967 2024-09-11 09:00:08.479674 aggnd 000602140 R rec 874a03e4-2e16-48a5-af13-66ceecbb6193 +2024-09-11 09:00:08.536222 2024-09-11 09:00:08.536226 aggnd 000613258 R rec 945a410b-27d5-4aeb-b847-458b0de5bea0 +2024-09-11 09:00:08.589948 2024-09-11 09:00:08.589952 aggnd 000613665 R rec b8e1e4f5-76ca-4f1b-a50b-544224483e35 +2024-09-11 09:00:08.642754 2024-09-11 09:00:08.642759 aggnd 000662348 R rec 206458db-8178-4142-a85d-75929b448e3f +2024-09-11 09:00:08.694322 2024-09-11 09:00:08.694328 aggnd 000666394 R rec 0a369e4e-51e5-438e-a49e-35e74943210c +2024-09-11 09:00:08.742983 2024-09-11 09:00:08.742988 aggnd 000746568 R rec 0a83be51-63cf-4355-b9e9-2f112295d90f +2024-09-11 09:00:08.790929 2024-09-11 09:00:08.790934 aggnd 00074669X R rec c517a0be-f8bb-4b32-b9a1-35fe27acbb76 +2024-09-11 09:00:08.838783 2024-09-11 09:00:08.838788 aggnd 000749915 R rec fbb00ca5-27dc-48f1-844c-8750eceb7aa6 +2024-09-11 09:00:08.91657 2024-09-11 09:00:08.916576 aggnd 000821829 R rec 4387153d-4f4b-490f-a329-6dcdf3c0f524 +2024-09-11 09:00:08.966652 2024-09-11 09:00:08.966657 aggnd 000827673 R rec 2d53bad3-6cd7-4925-9631-ca083c34f989 +2024-09-11 09:00:09.014621 2024-09-11 09:00:09.014626 aggnd 000837318 R rec d33ec300-159f-4c5a-a09c-8aa112135689 +2024-09-11 09:00:09.064395 2024-09-11 09:00:09.0644 aggnd 000842362 R rec d0853bb5-e887-4227-a54c-065f03040a6b +2024-09-11 09:00:09.114292 2024-09-11 09:00:09.114297 aggnd 000844470 R rec 8768f788-7271-4ff1-84e2-bad27747e891 +2024-09-11 09:00:09.162192 2024-09-11 09:00:09.162197 aggnd 000903515 R rec 804a5432-12e3-4302-a94d-d02dcb50e185 +2024-09-11 09:00:09.214066 2024-09-11 09:00:09.21407 aggnd 000907820 R rec 54220258-d22f-40c8-b4cf-8a0a5d4ca510 +2024-09-11 09:00:09.267386 2024-09-11 09:00:09.26739 aggnd 001106767 R rec 1da24b3c-5bfd-4893-ba48-5f9daa6ee7bb +2024-09-11 09:00:09.318781 2024-09-11 09:00:09.318785 aggnd 001116371 R rec 6a30a84f-554a-4697-b7de-98c09e2b4b1e +2024-09-11 09:00:09.369024 2024-09-11 09:00:09.369029 aggnd 00112207X R rec 46925365-7e1e-4b8a-b5f6-fb90eb42704c +2024-09-11 09:00:09.416665 2024-09-11 09:00:09.416671 aggnd 001148028 R rec ee78e71c-0614-4814-be4f-2c9200bdc665 +2024-09-11 09:00:09.467195 2024-09-11 09:00:09.4672 aggnd 001156373 R rec 3267f390-28ef-4ae4-8a3a-064cea34d91a +2024-09-11 09:00:09.517183 2024-09-11 09:00:09.517188 aggnd 001170325 R rec c89e16f6-9cd1-409d-875a-90ac583149dc +2024-09-11 09:00:09.56787 2024-09-11 09:00:09.567875 aggnd 001183834 R rec 36ec6391-074e-47b9-b01b-b002cc5628cc +2024-09-11 09:00:09.632749 2024-09-11 09:00:09.632754 aggnd 001187813 R rec a9b62e39-54ea-4af2-995c-f63ea40e1559 +2024-09-11 09:00:09.68274 2024-09-11 09:00:09.682745 aggnd 001192396 R rec f0ea56f0-a94a-48e7-a50a-7634e04da77e +2024-09-11 09:00:09.732367 2024-09-11 09:00:09.732372 aggnd 001226355 R rec 3dc3a8c8-7eb5-4628-95a9-7d2ce34620e3 +2024-09-11 09:00:09.784639 2024-09-11 09:00:09.784644 aggnd 00122722X R rec c5ae41fe-e2ef-4df2-bd4c-5ebd955b1ba7 +2024-09-11 09:00:09.832738 2024-09-11 09:00:09.832744 aggnd 001247697 R rec 82f39e7f-3922-4c41-b44a-6f45f42fcf6a +2024-09-11 09:00:09.884306 2024-09-11 09:00:09.884312 aggnd 001277936 R rec 3c7d81ac-f106-4ab0-a86c-3f950aa14cd1 +2024-09-11 09:00:09.933257 2024-09-11 09:00:09.933262 aggnd 001279858 R rec fe0c712b-dee1-4bda-aa57-6e0e10413354 +2024-09-11 09:00:09.985901 2024-09-11 09:00:09.985906 aggnd 001282891 R rec 4f8deb33-d76e-44a3-866f-1a21df481552 +2024-09-11 09:00:10.039424 2024-09-11 09:00:10.039429 aggnd 001284150 R rec 30ea7aa4-8b1a-4a77-8945-442315eee4ff +2024-09-11 09:00:10.088908 2024-09-11 09:00:10.088912 aggnd 001299662 R rec 7902c09b-0e6f-43c8-97de-82128a90722f +2024-09-11 09:00:10.151606 2024-09-11 09:00:10.151611 aggnd 001303317 R rec fdcce0ec-9e52-4228-a3c2-0050c2527bd8 +2024-09-11 09:00:10.201502 2024-09-11 09:00:10.201507 aggnd 001306634 R rec cf3d8ffe-f2b7-4f69-a153-1493df165761 +2024-09-11 09:00:10.253559 2024-09-11 09:00:10.253565 aggnd 001330578 R rec 2ebd957b-2bc0-4fc7-be53-31b2d63d8b09 +2024-09-11 09:00:10.303377 2024-09-11 09:00:10.303382 aggnd 001371924 R rec 8bbe1f5e-3d8d-41fa-89d8-b758460c5806 +2024-09-11 09:00:10.36159 2024-09-11 09:00:10.361596 aggnd 001376136 R rec 21b7bca3-b0c2-4452-9777-a19a3e7b9b88 +2024-09-11 09:00:10.418075 2024-09-11 09:00:10.41808 aggnd 001378600 R rec 0eda8c2a-8039-4e4c-a5ae-c811ad3d5b45 +2024-09-11 09:00:10.467407 2024-09-11 09:00:10.467412 aggnd 001381504 R rec 488af74f-a4cf-44f2-99a5-97799d052bb2 +2024-09-11 09:00:10.520402 2024-09-11 09:00:10.520407 aggnd 001434756 R rec f6d02560-e02c-4296-82ec-0c0416af7c96 +2024-09-11 09:00:10.569634 2024-09-11 09:00:10.569638 aggnd 001436872 R rec d6dcc6fe-f511-424e-8eea-b8e767b85a77 +2024-09-11 09:00:10.622683 2024-09-11 09:00:10.622687 aggnd 001453459 R rec c73523db-68e9-457c-8d66-ceae178f1727 +2024-09-11 09:00:10.674594 2024-09-11 09:00:10.674599 aggnd 001457101 R rec 89c1dd9b-8bdb-4743-8332-627a24d002f1 +2024-09-11 09:00:10.734669 2024-09-11 09:00:10.734673 aggnd 002004526 R rec 0dc1d936-426f-43b3-929c-26746c0bc2ff +2024-09-11 09:00:10.789527 2024-09-11 09:00:10.789531 aggnd 002102536 R rec afbb5c80-9fc9-4075-bb8e-af114ff4c601 +2024-09-11 09:00:10.841483 2024-09-11 09:00:10.841488 aggnd 00210637X R rec 8f88b8ee-8bfd-4f9c-b440-3a6b9de53316 +2024-09-11 09:00:10.894894 2024-09-11 09:00:10.894899 aggnd 002111748 R rec 9aea225b-9e8c-407e-b0f9-07eb4ba5dda1 +2024-09-11 09:00:10.944297 2024-09-11 09:00:10.944302 aggnd 002128683 R rec 78db8552-d4fd-479c-9b9e-4e31900e29d3 +2024-09-11 09:00:10.997644 2024-09-11 09:00:10.997649 aggnd 002148323 R rec 6ba06a6e-955b-4452-858a-9e720d505193 +2024-09-11 09:00:11.047265 2024-09-11 09:00:11.04727 aggnd 002149176 R rec 850bace7-6e07-4af7-9b94-5ed7fda95d7e +2024-09-11 09:00:11.106367 2024-09-11 09:00:11.106372 aggnd 002150492 R rec 02be6b71-5400-4a10-88a7-c9fb0fc0bcef +2024-09-11 09:00:11.165109 2024-09-11 09:00:11.165115 aggnd 002153912 R rec cda52bc3-246c-4def-99a4-64f8b56d727f +2024-09-11 09:00:11.220303 2024-09-11 09:00:11.220308 aggnd 002156954 R rec ab1de0be-2d39-4ee0-bf06-9887bac9cd82 +2024-09-11 09:00:11.291806 2024-09-11 09:00:11.291811 aggnd 002171260 R rec 5c2d81ea-8c10-4d8d-87de-3af553e6f49b +2024-09-11 09:00:11.347934 2024-09-11 09:00:11.347939 aggnd 002210819 R rec 685cd817-17a2-48a7-a631-015e9a64d9c8 +2024-09-11 09:00:11.397095 2024-09-11 09:00:11.3971 aggnd 00221153X R rec 1e41355b-692b-49d2-b67f-d204c0c7964c +2024-09-11 09:00:11.450188 2024-09-11 09:00:11.450193 aggnd 00221167X R rec 2549cc24-68b7-4791-891d-be6919e72749 +2024-09-11 09:00:11.501519 2024-09-11 09:00:11.501524 aggnd 002215942 R rec 1034c872-b1ff-46eb-8f57-84dd9d50935e +2024-09-11 09:00:11.552749 2024-09-11 09:00:11.552754 aggnd 002356368 R rec fcfde118-7b41-4e9b-840e-f07ac07e35b2 +2024-09-11 09:00:11.602875 2024-09-11 09:00:11.60288 aggnd 00236266X R rec a44ab125-5c31-427e-92f5-d55254cc7840 +2024-09-11 09:00:11.661342 2024-09-11 09:00:11.661347 aggnd 002362880 R rec 40f9c7f8-084f-4bf4-be9e-c5b3d3e0a004 +2024-09-11 09:00:11.725223 2024-09-11 09:00:11.725229 aggnd 002407612 R rec ada677ce-d0f2-4540-8cd0-dc92e7a59f96 +2024-09-11 09:00:11.805608 2024-09-11 09:00:11.805612 aggnd 002411083 R rec bb926e58-7512-44b9-bbe7-623fb1dc4bac +2024-09-11 09:00:11.855953 2024-09-11 09:00:11.855959 aggnd 002413957 R rec b886c776-c28c-4427-b13e-c1dbc076e711 +2024-09-11 09:00:11.906451 2024-09-11 09:00:11.906455 aggnd 002447797 R rec 6caf65f2-85cd-4c7e-b98b-429c644218a4 +2024-09-11 09:00:11.955543 2024-09-11 09:00:11.955548 aggnd 002461102 R rec 59b0811f-70cc-4f19-ae05-d1d4977f59c3 +2024-09-11 09:00:12.007497 2024-09-11 09:00:12.007503 aggnd 002476738 R rec 7d7c6dbb-0c21-4e9e-9b85-c544afa35760 +2024-09-11 09:00:12.069004 2024-09-11 09:00:12.069009 aggnd 002529041 R rec a8a5eb49-729e-4f1e-a296-027ab52078a2 +2024-09-11 09:00:12.128389 2024-09-11 09:00:12.128395 aggnd 002530937 R rec d8ba6172-c37f-4eca-a865-0aa025e500f6 +2024-09-11 09:00:12.190922 2024-09-11 09:00:12.190927 aggnd 002531844 R rec 3454aeee-12bf-4592-adab-c45148197fb4 +2024-09-11 09:00:12.242022 2024-09-11 09:00:12.242026 aggnd 002537966 R rec 81298c5b-7afc-4389-8970-f0a302eb2f67 +2024-09-11 09:00:12.292951 2024-09-11 09:00:12.292956 aggnd 002546329 R rec c6aba248-0f56-4ac5-b030-f395a9c292a9 +2024-09-11 09:00:12.349594 2024-09-11 09:00:12.349599 aggnd 002602555 R rec b6ad74ec-8e1b-4667-aca3-ee3a7c5981d9 +2024-09-11 09:00:12.407052 2024-09-11 09:00:12.407057 aggnd 002606232 R rec 5f045aa0-0be3-43ce-83c9-772e4b5d50dd +2024-09-11 09:00:12.462017 2024-09-11 09:00:12.462022 aggnd 00260955X R rec 0ed939ff-0fb2-4382-9c8f-3ac8df62aa01 +2024-09-11 09:00:12.513624 2024-09-11 09:00:12.513629 aggnd 002610922 R rec 12d228e0-49ad-4565-b944-725a4d8cbed4 +2024-09-11 09:00:12.579479 2024-09-11 09:00:12.579484 aggnd 002624508 R rec 75b3e0fd-8bd8-49a0-a256-5cd3b0c915df +2024-09-11 09:00:12.629263 2024-09-11 09:00:12.629269 aggnd 002627019 R rec 62c3f789-3a0f-4caf-9a79-3ad2e71e4710 +2024-09-11 09:00:12.680335 2024-09-11 09:00:12.680341 aggnd 002740990 R rec dcba7eca-9868-40a4-9528-ed0810bda9e0 +2024-09-11 09:00:12.742322 2024-09-11 09:00:12.742327 aggnd 002744759 R rec ef5f567a-588b-413a-8ed8-2f1d4e559547 +2024-09-11 09:00:12.808592 2024-09-11 09:00:12.808597 aggnd 002746387 R rec 9c2c6bea-15cd-48dc-ae36-411348dc408f +2024-09-11 09:00:12.86767 2024-09-11 09:00:12.867675 aggnd 00274659X R rec 2959356e-f6eb-4b4a-aab0-4a2a3e172167 +2024-09-11 09:00:12.92062 2024-09-11 09:00:12.920625 aggnd 00275486X R rec 32c897e9-ed11-47f4-9c95-6eb3eb4575ff +2024-09-11 09:00:12.973109 2024-09-11 09:00:12.973114 aggnd 002765187 R rec 4c1c52d7-ab08-44d4-bb88-66b73f07f549 +2024-09-11 09:00:13.027242 2024-09-11 09:00:13.027247 aggnd 00278064X R rec 872cd7bd-686f-4d2d-aaba-d999f663cb15 +2024-09-11 09:00:13.099488 2024-09-11 09:00:13.099493 aggnd 002785684 R rec 3eb073e7-fed9-4346-a361-cd27712a9eff +2024-09-11 09:00:13.148096 2024-09-11 09:00:13.148101 aggnd 002804077 R rec a666e82c-7178-4f6f-893e-3facdd747108 +2024-09-11 09:00:13.198043 2024-09-11 09:00:13.198049 aggnd 002903296 R rec 9f93dc6f-7ea0-45bd-ac8d-39aed4856298 +2024-09-11 09:00:13.247118 2024-09-11 09:00:13.247123 aggnd 002910934 R rec 4c366b7d-0a27-499e-ba33-2b7a6a8665dd +2024-09-11 09:00:13.296654 2024-09-11 09:00:13.296658 aggnd 003006816 R rec 52717bb3-1858-4092-a672-102b9ddd2c39 +2024-09-11 09:00:13.346808 2024-09-11 09:00:13.346813 aggnd 003016617 R rec 1d354d80-f79d-439a-901e-5a05f911d4fb +2024-09-11 09:00:13.39197 2024-09-11 09:00:13.391976 aggnd 003051986 R rec d3e1bf93-d3dc-40bd-ab6d-68bc2ef684a9 +2024-09-11 09:00:13.440392 2024-09-11 09:00:13.440397 aggnd 003063976 R rec 4c504f91-c185-42c8-96c4-d2914651e402 +2024-09-11 09:00:13.490659 2024-09-11 09:00:13.490664 aggnd 003071316 R rec 361e960a-3857-40b9-b315-1ad35816d934 +2024-09-11 09:00:13.538517 2024-09-11 09:00:13.538522 aggnd 003078434 R rec ae46a1cf-f41e-4d9f-9203-3fd72f73a152 +2024-09-11 09:00:13.588473 2024-09-11 09:00:13.588478 aggnd 003082725 R rec 751a423f-7e20-4728-ab43-f9d6761df559 +2024-09-11 09:00:13.639221 2024-09-11 09:00:13.639225 aggnd 003202720 R rec 5f3bc4e1-9a85-45e6-ac7a-bcd2dc0c4b99 +2024-09-11 09:00:13.696803 2024-09-11 09:00:13.696808 aggnd 003500950 R rec 01d16bf7-e5be-4012-b897-03cbbf4435c1 +2024-09-11 09:00:13.759945 2024-09-11 09:00:13.75995 aggnd 003700526 R rec 58c72c79-23c5-42c4-a58b-f402609cb576 +2024-09-11 09:00:13.811126 2024-09-11 09:00:13.81113 aggnd 00370064X R rec 269f3633-b1b9-44d0-99b5-614ca4625fdf +2024-09-11 09:00:13.862904 2024-09-11 09:00:13.86291 aggnd 003806596 R rec c1fe7f5b-8a6e-4447-825a-c659c4c66b21 +2024-09-11 09:00:13.913546 2024-09-11 09:00:13.913551 aggnd 003811840 R rec 56ca2835-9dfe-44bc-9821-2b219c7bc947 +2024-09-11 09:00:13.962875 2024-09-11 09:00:13.962881 aggnd 00381307X R rec 823e407c-ba6a-48a3-bd61-a55d55dec4dc +2024-09-11 09:00:14.013737 2024-09-11 09:00:14.013742 aggnd 004008294 R rec 51fde689-1349-4baf-97fa-ffb1b92c08a9 +2024-09-11 09:00:14.07694 2024-09-11 09:00:14.076947 aggnd 004029763 R rec 7b09b48e-f365-4b66-bbaa-68523bc03cb0 +2024-09-11 09:00:14.12753 2024-09-11 09:00:14.127535 aggnd 004036239 R rec 07d0c9e6-3a42-45a3-862b-ff235601af58 +2024-09-11 09:00:14.177831 2024-09-11 09:00:14.177837 aggnd 004037073 R rec 27d862fe-00e8-4617-9cc6-43237e234c22 +2024-09-11 09:00:14.228977 2024-09-11 09:00:14.228982 aggnd 004056264 R rec efc086e2-cc43-4a95-97d5-281c50e946dc +2024-09-11 09:00:14.28016 2024-09-11 09:00:14.280165 aggnd 00406397X R rec 12f73e57-3295-49f1-92a9-3042c3298599 +2024-09-11 09:00:14.3399 2024-09-11 09:00:14.339904 aggnd 004083687 R rec d5a45abc-a5ab-4e51-9e5d-13b36f7880c6 +2024-09-11 09:00:14.391324 2024-09-11 09:00:14.391329 aggnd 004084233 R rec f723e81c-a55e-49ba-8e89-5172b71ad8cd +2024-09-11 09:00:14.443609 2024-09-11 09:00:14.443613 aggnd 00408487X R rec ff798bd7-d9fa-40df-b143-7a2e0999b457 +2024-09-11 09:00:14.506294 2024-09-11 09:00:14.506299 aggnd 004088212 R rec 5b19da35-9ccd-4752-a922-07b4f12cdbbf +2024-09-11 09:00:14.561145 2024-09-11 09:00:14.561151 aggnd 004089049 R rec 5b95c4a7-69bc-4b9e-8366-f5904fcc6b1d +2024-09-11 09:00:14.612535 2024-09-11 09:00:14.612539 aggnd 00409753X R rec db161301-cc26-4a12-bd57-fac6ed5db476 +2024-09-11 09:00:14.668465 2024-09-11 09:00:14.66847 aggnd 004106059 R rec 6cd18d33-b1ed-4b43-af4f-5a12b165a967 +2024-09-11 09:00:14.728744 2024-09-11 09:00:14.72875 aggnd 004110404 R rec dafd66df-f134-4a3c-ba09-43528cd1b984 +2024-09-11 09:00:14.77848 2024-09-11 09:00:14.778485 aggnd 004112148 R rec 293fec6a-fd78-4441-9a0f-619511d3d86a +2024-09-11 09:00:14.828931 2024-09-11 09:00:14.828936 aggnd 004115996 R rec 4a871655-5c87-441e-9be0-31c55f812339 +2024-09-11 09:00:14.880485 2024-09-11 09:00:14.88049 aggnd 004119983 R rec 90298b4b-2496-4880-b6f9-0237388d0b77 +2024-09-11 09:00:14.933844 2024-09-11 09:00:14.933848 aggnd 004123158 R rec b4718088-78d4-4501-b97e-174aad9e44f6 +2024-09-11 09:00:14.984497 2024-09-11 09:00:14.984502 aggnd 004127900 R rec a5cac9d7-d4ee-4131-b806-ec1e0fce2506 +2024-09-11 09:00:15.035152 2024-09-11 09:00:15.035157 aggnd 00414631X R rec fde65a7e-5801-4302-9fd5-1aa947bc7da9 +2024-09-11 09:00:15.089249 2024-09-11 09:00:15.089254 aggnd 004149289 R rec cbae83b2-7ab1-458b-aa26-482cf9cb5ac2 +2024-09-11 09:00:15.15302 2024-09-11 09:00:15.153025 aggnd 004150988 R rec dd684b30-a278-40e5-964c-ff667b9dec88 +2024-09-11 09:00:15.211034 2024-09-11 09:00:15.211039 aggnd 004151917 R rec 7580ce6b-63d7-42b6-94ed-2283d9a49603 +2024-09-11 09:00:15.262138 2024-09-11 09:00:15.262143 aggnd 004159837 R rec 9fdc7a17-fe50-408e-8b94-57dc0f43ddc4 +2024-09-11 09:00:15.323891 2024-09-11 09:00:15.323895 aggnd 004171004 R rec 9b99cab0-318e-48e7-bfa2-7d9e853a9423 +2024-09-11 09:00:15.37497 2024-09-11 09:00:15.374976 aggnd 00418484X R rec cc9b4124-68b6-4943-a9e7-002a75e07844 +2024-09-11 09:00:15.437937 2024-09-11 09:00:15.437941 aggnd 004191811 R rec e950f52f-00c5-4abd-8e4f-f362aee25e16 +2024-09-11 09:00:15.489067 2024-09-11 09:00:15.489072 aggnd 004196287 R rec 135cea53-d936-415f-aa4c-dd44c496862a +2024-09-11 09:00:15.546321 2024-09-11 09:00:15.546327 aggnd 004220765 R rec fb6950f8-7e7b-4b20-b514-2e00c8461c8a +2024-09-11 09:00:15.597931 2024-09-11 09:00:15.597935 aggnd 004232933 R rec e833d7ba-ae79-4440-975a-63b177666cc8 +2024-09-11 09:00:15.662737 2024-09-11 09:00:15.662742 aggnd 004247280 R rec 2bf9774e-251a-4aa4-bcc8-75a22cb3058f +2024-09-11 09:00:15.715094 2024-09-11 09:00:15.715099 aggnd 004263707 R rec 76f42da5-9bda-4dd8-a339-894e6115ce83 +2024-09-11 09:00:15.768257 2024-09-11 09:00:15.768262 aggnd 004265718 R rec e82c0bf7-4772-4aa8-bacd-834b3be0d985 +2024-09-11 09:00:15.821193 2024-09-11 09:00:15.821198 aggnd 004270525 R rec 819fd6f4-eec9-418e-81cf-c3235efe2195 +2024-09-11 09:00:15.896779 2024-09-11 09:00:15.896785 aggnd 004285565 R rec 55c23042-68e9-47e8-b6d9-9e33ec1e7638 +2024-09-11 09:00:15.953812 2024-09-11 09:00:15.953817 aggnd 004288637 R rec 86293257-202c-4324-9cb5-6ec782036a97 +2024-09-11 09:00:16.016042 2024-09-11 09:00:16.016047 aggnd 004290674 R rec 034b2756-50d6-4350-a281-9bec93269a1d +2024-09-11 09:00:16.069832 2024-09-11 09:00:16.069837 aggnd 004315669 R rec 9da9df8b-f0f4-401a-9832-2b5070a308b9 +2024-09-11 09:00:16.126581 2024-09-11 09:00:16.126587 aggnd 004340183 R rec 469d72eb-07aa-4e80-adc4-824c541525bd +2024-09-11 09:00:16.182631 2024-09-11 09:00:16.182636 aggnd 004358554 R rec 2473521f-1e66-488d-8ec7-5df48c620789 +2024-09-11 09:00:16.254764 2024-09-11 09:00:16.254769 aggnd 004361342 R rec 2f9bad31-0eaf-4b98-8ef3-66480b9448bf +2024-09-11 09:00:16.307421 2024-09-11 09:00:16.307444 aggnd 004363779 R rec 0d7cddbc-dffb-4014-8d34-12c3916f23a0 +2024-09-11 09:00:16.37342 2024-09-11 09:00:16.373425 aggnd 004379802 R rec 4652ca37-448d-4eb1-93b8-92512fc0b553 +2024-09-11 09:00:16.422858 2024-09-11 09:00:16.422863 aggnd 004384865 R rec 4454f877-a6a9-4706-9337-8c44f7695d47 +2024-09-11 09:00:16.476462 2024-09-11 09:00:16.476468 aggnd 004394828 R rec a6abeeba-49fe-4302-8af3-0ca36960911f +2024-09-11 09:00:16.529024 2024-09-11 09:00:16.529029 aggnd 004401875 R rec 27902357-32cf-470b-8bb4-a82249099729 +2024-09-11 09:00:16.583656 2024-09-11 09:00:16.583661 aggnd 004406583 R rec 36118254-5224-41a3-a338-37c119d85a6e +2024-09-11 09:00:16.64183 2024-09-11 09:00:16.641834 aggnd 004407156 R rec ab41bb16-43c9-441d-9c80-4629c1b5c0d6 +2024-09-11 09:00:16.697937 2024-09-11 09:00:16.697942 aggnd 00442204X R rec fc5e3da2-97d5-46db-826d-cf017da9c5e2 +2024-09-11 09:00:16.748589 2024-09-11 09:00:16.748594 aggnd 004427734 R rec e8abcd71-4f9f-4ef1-9a2a-2d26d92cffce +2024-09-11 09:00:16.800171 2024-09-11 09:00:16.800176 aggnd 004444507 R rec a2d7f8b0-837d-4532-8e38-6c9122f59124 +2024-09-11 09:00:16.855075 2024-09-11 09:00:16.85508 aggnd 004453379 R rec a19c980a-9c31-4c2a-8808-ee84732db92e +2024-09-11 09:00:16.915054 2024-09-11 09:00:16.915059 aggnd 004462572 R rec 757aae6d-301a-4bc0-a507-6c6d483c5a95 +2024-09-11 09:00:16.972384 2024-09-11 09:00:16.972389 aggnd 004475771 R rec f6df4d76-59d4-40e3-a524-ebc69dc4755a +2024-09-11 09:00:17.033288 2024-09-11 09:00:17.033293 aggnd 004479319 R rec e9b52138-f600-4e45-a88b-f48648c41742 +2024-09-11 09:00:17.085578 2024-09-11 09:00:17.085583 aggnd 004507673 R rec 8260093c-01b0-4ac0-becc-d4ccb0e68685 +2024-09-11 09:00:17.136564 2024-09-11 09:00:17.136569 aggnd 004522176 R rec 4ddb9bde-d02f-4409-9c0f-603425c14b28 +2024-09-11 09:00:17.186808 2024-09-11 09:00:17.186813 aggnd 004534972 R rec 9e6f49f8-af9a-4710-ad6d-5f80bf5df8e4 +2024-09-11 09:00:17.240117 2024-09-11 09:00:17.240121 aggnd 004535642 R rec 8d3615b1-5b56-4533-9956-d06e6870a55d +2024-09-11 09:00:17.306618 2024-09-11 09:00:17.306624 aggnd 004544617 R rec 56e4c397-08c8-447d-8d47-1ce93e8ff2aa +2024-09-11 09:00:17.378103 2024-09-11 09:00:17.378109 aggnd 004554159 R rec 22eea59c-3851-4639-8d47-15334c16a81e +2024-09-11 09:00:17.450079 2024-09-11 09:00:17.450084 aggnd 004556208 R rec 0b82e605-8281-47d9-9e47-2ae30def369a +2024-09-11 09:00:17.509667 2024-09-11 09:00:17.509672 aggnd 004559444 R rec d02420ad-19a6-46b1-b241-b75d0ea8a5cc +2024-09-11 09:00:17.573705 2024-09-11 09:00:17.57371 aggnd 004570359 R rec 8f1e873a-0a02-4d24-a356-638234d6f4fe +2024-09-11 09:00:17.626894 2024-09-11 09:00:17.626899 aggnd 004612876 R rec 4ff57d9c-61af-467f-8bdf-fda50816b944 +2024-09-11 09:00:17.677441 2024-09-11 09:00:17.677447 aggnd 004652851 R rec c048a94d-48ee-4cdf-9bb6-ef23fc0a7c77 +2024-09-11 09:00:17.734694 2024-09-11 09:00:17.734698 aggnd 004656253 R rec 989715f5-9366-45a2-823a-afae3f6c5876 +2024-09-11 09:00:17.788495 2024-09-11 09:00:17.7885 aggnd 004674316 R rec 0784cc41-7928-4504-bb85-c8cb36dedcbc +2024-09-11 09:00:17.844548 2024-09-11 09:00:17.844553 aggnd 004680596 R rec a48a4577-938e-4867-bc0a-53a18c64bced +2024-09-11 09:00:17.900696 2024-09-11 09:00:17.900701 aggnd 004685873 R rec deb64d7f-7557-4ddd-9716-8e9c99447fb8 +2024-09-11 09:00:17.954318 2024-09-11 09:00:17.954323 aggnd 004687280 R rec 750331d9-d0d6-4ff3-8392-67447985b10f +2024-09-11 09:00:18.01956 2024-09-11 09:00:18.019566 aggnd 004708083 R rec 69a4ac02-1909-44e9-a025-c8d5fb63aaa2 +2024-09-11 09:00:18.079552 2024-09-11 09:00:18.079557 aggnd 004726642 R rec dab67bc5-2ac9-49bb-959d-2c576a8a9849 +2024-09-11 09:00:18.141044 2024-09-11 09:00:18.141049 aggnd 00473985X R rec ab71a223-4514-44ad-8103-8091c1d05890 +2024-09-11 09:00:18.220601 2024-09-11 09:00:18.220606 aggnd 004746333 R rec 24ceb143-1cd1-486d-9e8f-5b5550077739 +2024-09-11 09:00:18.283075 2024-09-11 09:00:18.28308 aggnd 004753194 R rec ec5289da-369e-42a3-b4fd-beac101c191a +2024-09-11 09:00:18.334854 2024-09-11 09:00:18.334858 aggnd 004772350 R rec bf80f576-57f3-4aab-b771-40f2ef58b368 +2024-09-11 09:00:18.389953 2024-09-11 09:00:18.389957 aggnd 00480435X R rec 01204ac1-671f-4a2b-9577-031e3f13298e +2024-09-11 09:00:18.452407 2024-09-11 09:00:18.452412 aggnd 004812476 R rec 19a6798e-eb81-4500-a326-53f5b1d11cd3 +2024-09-11 09:00:18.509795 2024-09-11 09:00:18.509801 aggnd 004815483 R rec 9573690d-2f82-40bc-a49a-ee581cfae108 +2024-09-11 09:00:18.569232 2024-09-11 09:00:18.569237 aggnd 004837541 R rec c247974b-ff45-4144-a0c8-adad527b72c4 +2024-09-11 09:00:18.634502 2024-09-11 09:00:18.634507 aggnd 004867645 R rec 45342626-b1b3-4267-955f-8134518e8d77 +2024-09-11 09:00:18.69908 2024-09-11 09:00:18.699085 aggnd 004868250 R rec f19c4a40-bae3-44ae-b5fb-4ad1ae62b877 +2024-09-11 09:00:18.764121 2024-09-11 09:00:18.764126 aggnd 004888324 R rec 0f68eca3-1288-414d-8491-0ec44333c118 +2024-09-11 09:00:18.8369 2024-09-11 09:00:18.836905 aggnd 004890868 R rec cbe6a103-08f6-4f8c-8cc7-e51798d5536b +2024-09-11 09:00:18.899914 2024-09-11 09:00:18.899919 aggnd 004895002 R rec 3b96ac26-6de4-4820-b7d7-0ddf15ca68fc +2024-09-11 09:00:18.959262 2024-09-11 09:00:18.959267 aggnd 00490110X R rec 524f2bdc-c816-4cf6-91e8-0ac5e8d3ae22 +2024-09-11 09:00:19.011283 2024-09-11 09:00:19.011289 aggnd 004904508 R rec c60c635f-83b5-4326-95ba-782d33efb9e5 +2024-09-11 09:00:19.061802 2024-09-11 09:00:19.061807 aggnd 004921445 R rec e3ee0cdc-8d8d-47d4-ad98-5330517023ca +2024-09-11 09:00:19.115671 2024-09-11 09:00:19.115677 aggnd 004930118 R rec 63c04381-7107-4359-838f-3150f8822ab0 +2024-09-11 09:00:19.170212 2024-09-11 09:00:19.170218 aggnd 00495081X R rec 47847408-d561-4b2d-94d4-21e5f326d00f +2024-09-11 09:00:19.229286 2024-09-11 09:00:19.229292 aggnd 004954599 R rec f4563ba5-54f3-49fe-8a75-4a0157e2e906 +2024-09-11 09:00:19.295801 2024-09-11 09:00:19.295806 aggnd 004984242 R rec f2714007-6b7b-434d-8dcc-f9ee76716f80 +2024-09-11 09:00:19.349874 2024-09-11 09:00:19.349879 aggnd 004995732 R rec adeab74e-d0fb-4457-a1b7-cca30f4a25f0 +2024-09-11 09:00:19.403849 2024-09-11 09:00:19.403853 aggnd 005029902 R rec 0d6343e1-0497-40fd-abd4-ea52e6d9d403 +2024-09-11 09:00:19.463904 2024-09-11 09:00:19.46391 aggnd 005034523 R rec 336aa533-2820-435f-913e-51b42d61531f +2024-09-11 09:00:19.524625 2024-09-11 09:00:19.52463 aggnd 005053625 R rec 1bffa83b-209d-464c-83dc-f92114a4e992 +2024-09-11 09:00:19.587991 2024-09-11 09:00:19.587996 aggnd 00505656X R rec f7d2f931-52d8-4934-85c5-88165a511d16 +2024-09-11 09:00:19.642843 2024-09-11 09:00:19.642848 aggnd 005059054 R rec 30af4361-c40a-4450-b86c-13f3fea8f983 +2024-09-11 09:00:19.697461 2024-09-11 09:00:19.697465 aggnd 005073189 R rec 575bdd9d-f521-4add-acef-576a6c68abfd +2024-09-11 09:00:19.746753 2024-09-11 09:00:19.746759 aggnd 005095344 R rec 92e4bbf4-a9af-4271-a423-bb12fe702bfa +2024-09-11 09:00:19.79843 2024-09-11 09:00:19.798435 aggnd 00509657X R rec a344e3d0-41c2-4cb1-b6d6-3f9de47faae9 +2024-09-11 09:00:19.851581 2024-09-11 09:00:19.851585 aggnd 005124972 R rec e32550fb-8048-4c4a-8721-1ea06d2090c6 +2024-09-11 09:00:19.913402 2024-09-11 09:00:19.913407 aggnd 006002579 R rec 510f34f7-49de-4ba9-bebb-3380dace4768 +2024-09-11 09:00:19.967958 2024-09-11 09:00:19.967962 aggnd 006007295 R rec f3c5d8fa-f5f3-4631-baf8-a4e9e62342d1 +2024-09-11 09:00:20.024136 2024-09-11 09:00:20.02414 aggnd 006010008 R rec f460077f-5376-46f1-8df5-e8f6e81007c4 +2024-09-11 09:00:20.078414 2024-09-11 09:00:20.07842 aggnd 006058825 R rec f06c9af2-2396-4117-ab6f-b22491e0456b +2024-09-11 09:00:20.131311 2024-09-11 09:00:20.131318 aggnd 006216722 R rec 8dd9c10f-69b9-4bb1-9270-cf4c9396e145 +2024-09-11 09:00:20.187471 2024-09-11 09:00:20.187476 aggnd 006226663 R rec 45b7d5c5-9667-4dac-bfd8-c42f1cb6544d +2024-09-11 09:00:20.257855 2024-09-11 09:00:20.25786 aggnd 006234224 R rec 5b2a9c54-2113-40a5-8759-7f3b2f3220ad +2024-09-11 09:00:20.325546 2024-09-11 09:00:20.325551 aggnd 006237754 R rec 2eea04ae-62ec-4cbc-b690-d021aa497d83 +2024-09-11 09:00:20.379403 2024-09-11 09:00:20.379408 aggnd 006243282 R rec 7305f408-571d-486c-9b50-0a65eb8f6d45 +2024-09-11 09:00:20.437245 2024-09-11 09:00:20.43725 aggnd 006674410 R rec e3454bb9-17fa-48a0-b359-aac65259aad3 +2024-09-11 09:00:20.50183 2024-09-11 09:00:20.501834 aggnd 006684378 R rec 28df9508-9959-40f0-825a-8d99c8960baa +2024-09-11 09:00:20.555847 2024-09-11 09:00:20.555852 aggnd 006688977 R rec 6b659b66-5053-422b-bf45-2e35a62e7e89 +2024-09-11 09:00:20.611369 2024-09-11 09:00:20.611374 aggnd 006693911 R rec 991ea801-57c3-4590-9234-615c1ad4e513 +2024-09-11 09:00:20.665161 2024-09-11 09:00:20.665166 aggnd 006699618 R rec 849f827a-f10b-4785-bcca-1dad18d2337a +2024-09-11 09:00:20.719616 2024-09-11 09:00:20.719621 aggnd 006705847 R rec f039e223-25b4-4e6d-bdb6-7fac427eb9dd +2024-09-11 09:00:20.816399 2024-09-11 09:00:20.816404 aggnd 007015089 R rec c6e69387-0b7a-4776-ad0e-9b369638a716 +2024-09-11 09:00:20.865992 2024-09-11 09:00:20.865997 aggnd 007030150 R rec bb7c9e67-8a0d-4ad0-8d91-5470c0d742f9 +2024-09-11 09:00:20.919271 2024-09-11 09:00:20.919276 aggnd 007031394 R rec d08540bc-8b45-4047-9a2a-4e140350ba14 +2024-09-11 09:00:20.980591 2024-09-11 09:00:20.980596 aggnd 007032641 R rec 648d0749-355d-4e48-adeb-c0236fe7d31b +2024-09-11 09:00:21.036619 2024-09-11 09:00:21.036623 aggnd 007059981 R rec b65055a7-03fa-4cc8-85f9-2180a5a15608 +2024-09-11 09:00:21.094844 2024-09-11 09:00:21.094849 aggnd 007060637 R rec 209b9342-9753-4ea8-97b9-6b607ed50e11 +2024-09-11 09:00:21.150372 2024-09-11 09:00:21.150377 aggnd 007061757 R rec d441bd6a-ca17-4591-9a79-70f1080c8b39 +2024-09-11 09:00:21.205232 2024-09-11 09:00:21.205237 aggnd 007097123 R rec 949fd6d2-6e51-478d-9c48-824c89709384 +2024-09-11 09:00:21.260437 2024-09-11 09:00:21.260443 aggnd 007100434 R rec 3364c699-b75f-4bbb-b988-d939b457896d +2024-09-11 09:00:21.330713 2024-09-11 09:00:21.330718 aggnd 007104456 R rec 75f35939-6413-40d4-aeed-799e32d56cb5 +2024-09-11 09:00:21.384121 2024-09-11 09:00:21.384127 aggnd 007104804 R rec 796f4c77-5d2e-4fe0-a92e-9911fe249f29 +2024-09-11 09:00:21.438054 2024-09-11 09:00:21.438058 aggnd 007119666 R rec d8636d7d-961a-40c2-8c68-b5de87291fc5 +2024-09-11 09:00:21.491928 2024-09-11 09:00:21.491933 aggnd 007172125 R rec a7e357b5-1ffa-41d0-b928-8c47fb7432de +2024-09-11 09:00:21.544786 2024-09-11 09:00:21.544791 aggnd 007207409 R rec 6ea2bf34-1706-4753-95e6-148fa8e942c4 +2024-09-11 09:00:21.610666 2024-09-11 09:00:21.610671 aggnd 007209320 R rec 0b725440-59d4-426b-b2c8-16fbfc404cbb +2024-09-11 09:00:21.660494 2024-09-11 09:00:21.660499 aggnd 007210019 R rec a3a62874-d495-4597-ab35-f97e73ab153e +2024-09-11 09:00:21.730076 2024-09-11 09:00:21.730082 aggnd 007221010 R rec 1ee333bf-46b2-453b-b86e-f32cee7e1ce7 +2024-09-11 09:00:21.803872 2024-09-11 09:00:21.803878 aggnd 007229003 R rec 6b3a9226-bc84-4a5c-9d2b-61c3fb814744 +2024-09-11 09:00:21.862606 2024-09-11 09:00:21.862612 aggnd 007233000 R rec c758f3b2-70ac-42f2-a3e1-bbf67109a49a +2024-09-11 09:00:21.928942 2024-09-11 09:00:21.928947 aggnd 007251920 R rec 1a4c14de-2662-4a88-b323-62eb00475f23 +2024-09-11 09:00:21.987869 2024-09-11 09:00:21.987873 aggnd 007262329 R rec 37694d8e-aa40-4810-a283-2f06cff47893 +2024-09-11 09:00:22.054238 2024-09-11 09:00:22.054243 aggnd 007269358 R rec f4363977-4b04-475a-ab16-f86e814f1126 +2024-09-11 09:00:22.121515 2024-09-11 09:00:22.12152 aggnd 007284659 R rec f9931049-077d-4a32-9420-ca6dda967cb7 +2024-09-11 09:00:22.178302 2024-09-11 09:00:22.178306 aggnd 007305117 R rec 5e4d9908-c125-44ce-b284-0895f56b3e6b +2024-09-11 09:00:22.237021 2024-09-11 09:00:22.237027 aggnd 007309600 R rec 7049771b-039d-4765-938a-923d1c0cc51a +2024-09-11 09:00:22.292909 2024-09-11 09:00:22.292912 aggnd 007310005 R rec 64c047ba-ba6c-4843-8e50-36abfee8fc84 +2024-09-11 09:00:22.348456 2024-09-11 09:00:22.348461 aggnd 00731566X R rec ebbcea3e-53a9-4f97-9751-06251e1b2508 +2024-09-11 09:00:22.400018 2024-09-11 09:00:22.400023 aggnd 007318413 R rec 047f54af-570a-4c06-8369-6cf584a330cb +2024-09-11 09:00:22.454642 2024-09-11 09:00:22.454647 aggnd 007319126 R rec 8b092a2e-e4c5-44ad-a3c5-2a0a27e87830 +2024-09-11 09:00:22.507829 2024-09-11 09:00:22.507833 aggnd 007322062 R rec 574eb77f-da45-4c5a-b110-f186f77866f6 +2024-09-11 09:00:22.559198 2024-09-11 09:00:22.559202 aggnd 007353189 R rec eccc6c82-d982-407f-ab9d-4f000e560a5d +2024-09-11 09:00:22.613489 2024-09-11 09:00:22.613494 aggnd 007365950 R rec 05e6c5be-1a97-409a-8067-364a999f4159 +2024-09-11 09:00:22.668851 2024-09-11 09:00:22.668856 aggnd 007366701 R rec eccb0f31-4cbf-49de-922c-9c4a62a7fc2f +2024-09-11 09:00:22.722518 2024-09-11 09:00:22.722523 aggnd 007378238 R rec c521458a-84a9-4aa2-a340-73ba1b4fbf12 +2024-09-11 09:00:22.77504 2024-09-11 09:00:22.775045 aggnd 007386133 R rec ba23a6a9-b1b8-4232-9c74-b834cfc7ac42 +2024-09-11 09:00:22.836833 2024-09-11 09:00:22.836838 aggnd 007391765 R rec 371a75ea-732f-4c07-84ff-c400fa6df149 +2024-09-11 09:00:22.899999 2024-09-11 09:00:22.900004 aggnd 007396848 R rec 515662f0-f6f4-4fc1-b9d6-fa1b8579c3b8 +2024-09-11 09:00:22.954112 2024-09-11 09:00:22.954117 aggnd 007405995 R rec 972dd8d2-6868-4715-9169-dd1398697771 +2024-09-11 09:00:23.021127 2024-09-11 09:00:23.021133 aggnd 007412193 R rec a59ae04f-ce17-4674-93d8-710443f5cb13 +2024-09-11 09:00:23.073506 2024-09-11 09:00:23.073511 aggnd 007420501 R rec 1b9a8b0e-4bba-4ac9-8e9f-d331cad958b1 +2024-09-11 09:00:23.127215 2024-09-11 09:00:23.127219 aggnd 007426321 R rec 2068691b-b16a-46d5-8526-31ba31dc6111 +2024-09-11 09:00:23.205359 2024-09-11 09:00:23.205364 aggnd 007439210 R rec 7e9e6c58-6671-4d97-b187-2a64fd3659e4 +2024-09-11 09:00:23.271842 2024-09-11 09:00:23.271847 aggnd 007444788 R rec dc9f2ceb-768f-45bd-a738-03a5d8388bd4 +2024-09-11 09:00:23.337318 2024-09-11 09:00:23.337323 aggnd 007453523 R rec 49548d65-f0d8-413a-aee6-76b6300575bb +2024-09-11 09:00:23.394896 2024-09-11 09:00:23.394902 aggnd 007473338 R rec 600dfea7-1eee-441c-a09b-4877e87278e1 +2024-09-11 09:00:23.449343 2024-09-11 09:00:23.449348 aggnd 007495684 R rec 4cd8de41-7b72-43d8-9a0c-3e28326c94a0 +2024-09-11 09:00:23.502414 2024-09-11 09:00:23.502419 aggnd 007543204 R rec e0b5f95c-4fac-4349-bd69-3ff1945cf684 +2024-09-11 09:00:23.557157 2024-09-11 09:00:23.557162 aggnd 007547692 R rec b7635620-cf85-4d76-b821-242bba889366 +2024-09-11 09:00:23.610072 2024-09-11 09:00:23.610076 aggnd 007550278 R rec a9573724-75db-4e3e-bea4-f3c73b05b66e +2024-09-11 09:00:23.664758 2024-09-11 09:00:23.664763 aggnd 007553684 R rec 13d198d2-094e-493b-bb40-74a57e15d4d6 +2024-09-11 09:00:23.715362 2024-09-11 09:00:23.715367 aggnd 007555245 R rec 894efb00-7713-4028-8551-5464597dc9b8 +2024-09-11 09:00:23.768861 2024-09-11 09:00:23.768866 aggnd 007571054 R rec 7908a185-89d4-4b15-a43a-f666e8dfb28d +2024-09-11 09:00:23.822675 2024-09-11 09:00:23.82268 aggnd 007575882 R rec efdf8617-99aa-4bda-acc6-d64ed9d73c1f +2024-09-11 09:00:23.889393 2024-09-11 09:00:23.889399 aggnd 007590172 R rec dabdf246-48de-4403-a1ee-91bc4e10a617 +2024-09-11 09:00:23.946256 2024-09-11 09:00:23.946261 aggnd 00760453X R rec aba9a75a-9cd2-407d-98d8-2939add7fb13 +2024-09-11 09:00:24.005019 2024-09-11 09:00:24.005025 aggnd 007605285 R rec 8949ce61-0e7b-4676-974f-b65db4de5962 +2024-09-11 09:00:24.06919 2024-09-11 09:00:24.069196 aggnd 007620756 R rec 755b4806-ad18-4ef1-aa1f-3b60bec96af6 +2024-09-11 09:00:24.132601 2024-09-11 09:00:24.132606 aggnd 007631731 R rec d55f4cc3-46b9-4367-9517-20868c906f58 +2024-09-11 09:00:24.184863 2024-09-11 09:00:24.184868 aggnd 007642423 R rec 23e07cf6-410e-4c25-9fed-a09f530e216e +2024-09-11 09:00:24.237458 2024-09-11 09:00:24.237463 aggnd 007646895 R rec b9cea0e6-3b5a-44bd-bb76-567854634fe2 +2024-09-11 09:00:24.291276 2024-09-11 09:00:24.291283 aggnd 007675844 R rec d2049892-e233-4123-a5a4-c183f9d42b1b +2024-09-11 09:00:24.356036 2024-09-11 09:00:24.356041 aggnd 007676174 R rec 44b8d0e2-b6d0-4ea5-a015-21d1fbfbb0a7 +2024-09-11 09:00:24.431637 2024-09-11 09:00:24.431642 aggnd 007690495 R rec d8500efd-7e2e-44dc-ac2c-5b0052360b6c +2024-09-11 09:00:24.48052 2024-09-11 09:00:24.480524 aggnd 007736851 R rec ce9a3c97-5188-4564-8621-61081cd882c8 +2024-09-11 09:00:24.53294 2024-09-11 09:00:24.532945 aggnd 007744862 R rec ae8c980a-edd6-431c-bbb1-6fbeee4f8466 +2024-09-11 09:00:24.596406 2024-09-11 09:00:24.596412 aggnd 007762321 R rec 76a67035-7876-46f0-96f5-cac4ae7804ad +2024-09-11 09:00:24.655589 2024-09-11 09:00:24.655593 aggnd 007765908 R rec 7ace528a-d2a5-4b1d-9558-2ea115560ad6 +2024-09-11 09:00:24.707991 2024-09-11 09:00:24.707996 aggnd 007776500 R rec d8f642fa-a204-47fc-a081-9db112c9618b +2024-09-11 09:00:24.760362 2024-09-11 09:00:24.760368 aggnd 007777639 R rec 4d9362ed-e510-4b15-b5ae-0b159e1a91c7 +2024-09-11 09:00:24.824087 2024-09-11 09:00:24.824092 aggnd 007781113 R rec 114c3e7e-6d1e-41ba-aa7f-98bd37089c02 +2024-09-11 09:00:24.880199 2024-09-11 09:00:24.880205 aggnd 007783574 R rec 5d97b65b-65b5-4ee2-bf76-78e87dbb192c +2024-09-11 09:00:24.932818 2024-09-11 09:00:24.932823 aggnd 007792948 R rec c67bd5bb-f776-46df-b664-e9d7fd01f060 +2024-09-11 09:00:24.985652 2024-09-11 09:00:24.985658 aggnd 007793731 R rec 589b8acd-1f3d-4873-9457-8fd7e5721e75 +2024-09-11 09:00:25.037929 2024-09-11 09:00:25.037935 aggnd 007796811 R rec c24497b8-9da5-47a3-b9ec-e1444fb52d3a +2024-09-11 09:00:25.089517 2024-09-11 09:00:25.089522 aggnd 00779827X R rec 0fea43dc-cbf7-4097-913c-84bfcbbcc30a +2024-09-11 09:00:25.144845 2024-09-11 09:00:25.14485 aggnd 008030286 R rec c97fd13f-32ec-4257-a34f-f0a94d8db68f +2024-09-11 09:00:25.196855 2024-09-11 09:00:25.196861 aggnd 008036985 R rec cda9658f-604a-4435-b7c1-5e201347af81 +2024-09-11 09:00:25.284507 2024-09-11 09:00:25.284512 aggnd 008055262 R rec 3cb5768b-a69e-4d77-8107-9a07d57abca7 +2024-09-11 09:00:25.334621 2024-09-11 09:00:25.334626 aggnd 008059365 R rec aaf3c942-0487-4658-90f8-bfe8cff182d3 +2024-09-11 09:00:25.390814 2024-09-11 09:00:25.390818 aggnd 008094217 R rec beb0f95b-f07a-42e4-937d-c8b8e599360b +2024-09-11 09:00:25.4427 2024-09-11 09:00:25.442705 aggnd 008095086 R rec b7144af2-0ccf-4374-868c-2fbf599eced5 +2024-09-11 09:00:25.491868 2024-09-11 09:00:25.491873 aggnd 008112282 R rec 052b83d0-ad95-43bd-9bfc-fdecdac7e0d5 +2024-09-11 09:00:25.548218 2024-09-11 09:00:25.548223 aggnd 008119198 R rec 122387de-affe-49f3-a4b7-f15fabdf0611 +2024-09-11 09:00:25.610483 2024-09-11 09:00:25.610488 aggnd 008122830 R rec ef0450fc-6810-4931-b35e-2fd1af839f4b +2024-09-11 09:00:25.665959 2024-09-11 09:00:25.665963 aggnd 008140111 R rec 8434fec9-1718-4564-b887-2cfa3ab0aaaf +2024-09-11 09:00:25.725953 2024-09-11 09:00:25.725957 aggnd 008147841 R rec 2abca5ef-530d-4bf7-a5f2-204db5f87db2 +2024-09-11 09:00:25.77806 2024-09-11 09:00:25.778066 aggnd 008151733 R rec ae182f7e-b747-4652-8eb1-9c3ea31a863e +2024-09-11 09:00:25.827903 2024-09-11 09:00:25.827908 aggnd 008157103 R rec 87b8b511-530e-4744-8278-268ff65151d3 +2024-09-11 09:00:25.879191 2024-09-11 09:00:25.879196 aggnd 008165068 R rec 902279f2-6286-41fd-96a9-8129e494e763 +2024-09-11 09:00:25.931883 2024-09-11 09:00:25.931888 aggnd 008169446 R rec 33bc81e6-90f1-446c-8d87-2b3e75f494ba +2024-09-11 09:00:25.984853 2024-09-11 09:00:25.984858 aggnd 008169691 R rec 0959d792-c6f7-4993-bd42-2023a424d642 +2024-09-11 09:00:26.042609 2024-09-11 09:00:26.042615 aggnd 008183147 R rec 12aa726a-161a-4db3-bcaa-de9bdc30d1c2 +2024-09-11 09:00:26.112631 2024-09-11 09:00:26.112637 aggnd 008183171 R rec cad33845-8918-4ebd-bd9f-6d06ef4271df +2024-09-11 09:00:26.166666 2024-09-11 09:00:26.166671 aggnd 008186596 R rec 61fc4a61-8d52-4d32-aed3-57ef98e13741 +2024-09-11 09:00:26.220151 2024-09-11 09:00:26.220156 aggnd 030010462 R rec 82cd8eef-f3db-4275-9b82-33f23d6da964 +2024-09-11 09:00:26.274 2024-09-11 09:00:26.274004 aggnd 030011213 R rec 65fc806e-25e5-4acd-84a3-527b4264c284 +2024-09-11 09:00:26.333572 2024-09-11 09:00:26.333577 aggnd 030028841 R rec 3a9fabdc-e4c9-4a1e-93db-915db1d97809 +2024-09-11 09:00:26.384021 2024-09-11 09:00:26.384026 aggnd 03003891X R rec ba58cc5a-d3a5-4065-8faa-91c8bb7c4c36 +2024-09-11 09:00:26.437568 2024-09-11 09:00:26.437574 aggnd 03005205X R rec e0b1f19d-195d-40aa-8008-325f9a6d1252 +2024-09-11 09:00:26.501376 2024-09-11 09:00:26.501382 aggnd 030052912 R rec 12fadf5d-f189-4363-a2f9-ec996fe1777a +2024-09-11 09:00:26.558453 2024-09-11 09:00:26.558458 aggnd 030072409 R rec dca13345-f5ef-44ee-8534-19c4362fb6cb +2024-09-11 09:00:26.632892 2024-09-11 09:00:26.632897 aggnd 030078768 R rec cbe0e2a3-8fc7-41ff-b20e-22b2f8c38600 +2024-09-11 09:00:26.687783 2024-09-11 09:00:26.687788 aggnd 030081297 R rec 22253cb5-dc21-484a-a097-9c6549a3ff05 +2024-09-11 09:00:26.746987 2024-09-11 09:00:26.746991 aggnd 030120926 R rec 6bce2849-9385-43d8-8738-486049b353e9 +2024-09-11 09:00:26.796409 2024-09-11 09:00:26.796413 aggnd 03012199X R rec 116935b9-d9dc-4e33-b361-287622cdf0ee +2024-09-11 09:00:26.848088 2024-09-11 09:00:26.848093 aggnd 03012929X R rec 4a3dce1d-0f57-4709-b562-920c48622965 +2024-09-11 09:00:26.901681 2024-09-11 09:00:26.901687 aggnd 030132053 R rec 9d858273-5480-43db-9d9e-10f13ce0dd49 +2024-09-11 09:00:26.952854 2024-09-11 09:00:26.952859 aggnd 030135567 R rec 40a46fbb-67a5-43e2-b726-9fa803a271fb +2024-09-11 09:00:27.005026 2024-09-11 09:00:27.005031 aggnd 030146690 R rec 09cedef8-7ab1-4047-82fe-5c210c51a6dd +2024-09-11 09:00:27.055498 2024-09-11 09:00:27.055503 aggnd 030152089 R rec 33e5c12b-5321-490b-977f-79f2bfaec186 +2024-09-11 09:00:27.109026 2024-09-11 09:00:27.109031 aggnd 030153727 R rec ce349235-f6d0-4bc1-a4e7-4af23d7f96e8 +2024-09-11 09:00:27.178877 2024-09-11 09:00:27.178882 aggnd 030168910 R rec 4004dee6-3012-4927-bdf7-1b514d979a46 +2024-09-11 09:00:27.235173 2024-09-11 09:00:27.235177 aggnd 030183251 R rec 1739ff61-3efa-421d-9d1e-7e23c85d0cb7 +2024-09-11 09:00:27.299227 2024-09-11 09:00:27.299233 aggnd 041027752 R rec 2c33e795-039f-4f09-bc73-9e1130b561bd +2024-09-11 09:00:27.352145 2024-09-11 09:00:27.35215 aggnd 041297423 R rec 71dad545-8b80-4483-af54-dd1755fe1678 +2024-09-11 09:00:27.420312 2024-09-11 09:00:27.420317 aggnd 042249627 R rec 660337ec-8716-4bbb-9ec7-8bc5aac7f696 +2024-09-11 09:00:27.485037 2024-09-11 09:00:27.485043 aggnd 042260264 R rec 629da8d8-a403-48bc-96d0-d5820c376111 +2024-09-11 09:00:27.551394 2024-09-11 09:00:27.5514 aggnd 042968097 R rec 7fb05e9b-20d3-41ef-adea-ae86afcd67bf +2024-09-11 09:00:27.617583 2024-09-11 09:00:27.617588 aggnd 050000462 R rec 99e3f313-4877-48dd-b26b-b80c732d1ec3 +2024-09-11 09:00:27.67414 2024-09-11 09:00:27.674143 aggnd 05000736X R rec 202fd096-9562-4306-baf1-a130fc55dd99 +2024-09-11 09:00:27.726804 2024-09-11 09:00:27.726809 aggnd 05001692X R rec 1d75f7cf-bcd9-4f11-bfec-4ca97d43f3f1 +2024-09-11 09:00:27.780052 2024-09-11 09:00:27.780057 aggnd 050031937 R rec 3d164a35-26a6-490a-ac7e-11e5dd086abd +2024-09-11 09:00:27.832811 2024-09-11 09:00:27.832816 aggnd 050047043 R rec 2967e968-a823-4a61-9e2e-9efd8f775685 +2024-09-11 09:00:27.898412 2024-09-11 09:00:27.898417 aggnd 050053396 R rec aa6c4cd1-a40a-483e-a95c-6cce8937afee +2024-09-11 09:00:27.950102 2024-09-11 09:00:27.950107 aggnd 05005967X R rec 7054d139-7f1f-44b7-88f2-8aaecd040262 +2024-09-11 09:00:28.005488 2024-09-11 09:00:28.005492 aggnd 050070606 R rec 2a45bc34-fb27-4c99-91cf-e295a24713d5 +2024-09-11 09:00:28.070873 2024-09-11 09:00:28.070878 aggnd 050096672 R rec dd6dac9c-f685-40d5-8584-7a2ef33d118a +2024-09-11 09:00:28.121986 2024-09-11 09:00:28.12199 aggnd 05009808X R rec 715840d0-05be-4d00-93dc-35fdd92a6989 +2024-09-11 09:00:28.180166 2024-09-11 09:00:28.180172 aggnd 050105884 R rec 4b35eae2-8845-4718-a323-1ec38d37f22c +2024-09-11 09:00:28.242884 2024-09-11 09:00:28.242888 aggnd 050122916 R rec f75303ec-d37c-46fb-a3c0-3aab06020b2b +2024-09-11 09:00:28.299041 2024-09-11 09:00:28.299046 aggnd 050132229 R rec ccee9c88-3ee4-428c-a758-04be63685cb5 +2024-09-11 09:00:28.348555 2024-09-11 09:00:28.34856 aggnd 050145363 R rec 2d2c63ea-8a6a-4e8e-a44b-d42e18e7a511 +2024-09-11 09:00:28.401569 2024-09-11 09:00:28.401573 aggnd 050155032 R rec 87982216-5bcc-4357-93b7-420baeb00c59 +2024-09-11 09:00:28.451435 2024-09-11 09:00:28.45144 aggnd 050161261 R rec 074401ea-d94c-4176-90a7-0f7c7c1b8650 +2024-09-11 09:00:28.50333 2024-09-11 09:00:28.503335 aggnd 050168436 R rec f5d506d9-356a-40ab-a27f-f473de7a6626 +2024-09-11 09:00:28.554224 2024-09-11 09:00:28.554229 aggnd 050171607 R rec 49a74431-4636-46a3-b16a-7d767b1be5fd +2024-09-11 09:00:28.606161 2024-09-11 09:00:28.606166 aggnd 050184318 R rec 4ea929d2-da29-4511-abd8-aaf409bde228 +2024-09-11 09:00:28.660285 2024-09-11 09:00:28.660291 aggnd 050186736 R rec 7b84cf63-bdf5-4448-996b-f6aa1e63df9d +2024-09-11 09:00:28.71349 2024-09-11 09:00:28.713495 aggnd 05018685X R rec 099c0e5e-9acb-4668-81a9-ff8d96c90220 +2024-09-11 09:00:28.766184 2024-09-11 09:00:28.766189 aggnd 050187023 R rec 659a9c0b-bdcd-4e65-aa8e-2f12c223ecea +2024-09-11 09:00:28.820096 2024-09-11 09:00:28.8201 aggnd 050230611 R rec fed6e4be-5a7c-44ef-baa7-2cb304127867 +2024-09-11 09:00:28.873076 2024-09-11 09:00:28.873081 aggnd 050247840 R rec f1509abe-9c44-43e9-bd39-3b6ac6aaa399 +2024-09-11 09:00:28.93767 2024-09-11 09:00:28.937675 aggnd 050257722 R rec 77c1f1bc-9da0-455e-a2bb-60b3981a721b +2024-09-11 09:00:28.990596 2024-09-11 09:00:28.990602 aggnd 050269704 R rec a1e85b67-808d-4c4f-a722-1a7e991af1dc +2024-09-11 09:00:29.046687 2024-09-11 09:00:29.046692 aggnd 050270850 R rec 8168d965-9abb-439d-98af-16b4263d64c6 +2024-09-11 09:00:29.104792 2024-09-11 09:00:29.104797 aggnd 050279831 R rec 9d3294f7-0fdd-4bf7-b124-f78e9aab2a5f +2024-09-11 09:00:29.159607 2024-09-11 09:00:29.159613 aggnd 050284185 R rec 7578d11d-6613-4bed-8516-faa7090cc9ae +2024-09-11 09:00:29.224111 2024-09-11 09:00:29.224117 aggnd 050284673 R rec 9c864e5e-93cb-4484-a9af-b4826974f58a +2024-09-11 09:00:29.335333 2024-09-11 09:00:29.335339 aggnd 050329820 R rec d9dd7899-92f7-4c91-890d-ba5059d64a7d +2024-09-11 09:00:29.390608 2024-09-11 09:00:29.390613 aggnd 050353233 R rec acb02337-50eb-43ca-b96b-c7fc73103731 +2024-09-11 09:00:29.444858 2024-09-11 09:00:29.444864 aggnd 050361031 R rec 1f712f50-1616-48dc-9282-688f1c98875b +2024-09-11 09:00:29.508725 2024-09-11 09:00:29.50873 aggnd 05037107X R rec e85a56c0-9787-45ce-ae4d-089c217312bb +2024-09-11 09:00:29.560802 2024-09-11 09:00:29.560807 aggnd 050376756 R rec 50d86725-a53f-4057-991a-7550473fcf2d +2024-09-11 09:00:29.61373 2024-09-11 09:00:29.613735 aggnd 050379712 R rec 04d8a5f0-6bba-438f-9d70-631c51c1e834 +2024-09-11 09:00:29.669474 2024-09-11 09:00:29.669479 aggnd 050410814 R rec 0dd00875-4d7e-406e-9fdc-b68bb385cb35 +2024-09-11 09:00:29.719488 2024-09-11 09:00:29.719493 aggnd 050411071 R rec 041e7ad2-5373-41e6-8237-db538c7997a1 +2024-09-11 09:00:29.773516 2024-09-11 09:00:29.773521 aggnd 050417444 R rec 77abe59b-d8b2-4faf-b1f2-fb856c7697c8 +2024-09-11 09:00:29.825095 2024-09-11 09:00:29.8251 aggnd 050425773 R rec f1502842-1a95-4c17-b3d6-3f2bed4abf21 +2024-09-11 09:00:29.877328 2024-09-11 09:00:29.877332 aggnd 050430726 R rec 5ec97945-b74c-4d62-957c-7e8a0750fe04 +2024-09-11 09:00:29.930561 2024-09-11 09:00:29.930566 aggnd 050433504 R rec f8289429-d6ca-4eb0-b5fe-9ebe45e78829 +2024-09-11 09:00:29.990331 2024-09-11 09:00:29.990337 aggnd 050436708 R rec 58a44018-7e07-43d3-b1f6-bd764a9562ec +2024-09-11 09:00:30.045259 2024-09-11 09:00:30.045264 aggnd 05043795X R rec 83856269-de79-4990-a3f2-b3f67d1bcf86 +2024-09-11 09:00:30.098403 2024-09-11 09:00:30.098407 aggnd 050439464 R rec 4560c317-1d37-4fd7-9ecf-97ef5cc1d52c +2024-09-11 09:00:30.15462 2024-09-11 09:00:30.154625 aggnd 050445197 R rec 068f3694-7068-4501-a20f-fd771f844b2c +2024-09-11 09:00:30.209315 2024-09-11 09:00:30.209321 aggnd 050447904 R rec 55c94f25-6d19-49a9-99d7-53e3fd54ed4f +2024-09-11 09:00:30.277712 2024-09-11 09:00:30.277716 aggnd 050458140 R rec 2b31e29b-a902-490c-a355-d028c459b50c +2024-09-11 09:00:30.33585 2024-09-11 09:00:30.335856 aggnd 050465546 R rec a969f5e9-ac12-4519-b5db-b3fb1dd7265e +2024-09-11 09:00:30.398672 2024-09-11 09:00:30.398676 aggnd 05048589X R rec c4385e6c-52f2-48a9-b777-2ba40ac703a2 +2024-09-11 09:00:30.451375 2024-09-11 09:00:30.45138 aggnd 050494570 R rec 8acbec23-d03d-4f5a-a8a5-75dcd37113af +2024-09-11 09:00:30.51496 2024-09-11 09:00:30.514965 aggnd 050495747 R rec 5e104c1e-5183-4376-b1e6-d66027c10f53 +2024-09-11 09:00:30.570082 2024-09-11 09:00:30.570087 aggnd 050502298 R rec 41233737-c905-4251-97a7-516db8f577a1 +2024-09-11 09:00:30.634597 2024-09-11 09:00:30.634602 aggnd 050504274 R rec 4760e8f0-7f71-4cf0-a04e-a22da10cc0ee +2024-09-11 09:00:30.686273 2024-09-11 09:00:30.686278 aggnd 050516736 R rec 0754dd79-b43a-416f-a4c0-7df2c4cfe64c +2024-09-11 09:00:30.742774 2024-09-11 09:00:30.74278 aggnd 050519514 R rec 87546f6c-3af3-4486-8c28-546620a05a86 +2024-09-11 09:00:30.816439 2024-09-11 09:00:30.816444 aggnd 05052920X R rec 1e7599e2-192a-44b4-92c2-1f558ff41e4d +2024-09-11 09:00:30.869791 2024-09-11 09:00:30.869796 aggnd 050539876 R rec 0cadd826-16bb-4930-bf2e-75f36bea36c6 +2024-09-11 09:00:30.922969 2024-09-11 09:00:30.922973 aggnd 050544942 R rec ee06851a-4742-40d0-9c27-5be5a995579b +2024-09-11 09:00:30.981225 2024-09-11 09:00:30.981231 aggnd 050545183 R rec 14ffcf10-b202-46a9-ab96-fa480076ba82 +2024-09-11 09:00:31.037368 2024-09-11 09:00:31.037373 aggnd 050551205 R rec 2195bbff-cd59-472e-9ccb-8f4f4e5c9897 +2024-09-11 09:00:31.10099 2024-09-11 09:00:31.100994 aggnd 050577395 R rec 4fce4173-e274-45c0-b26f-0788a1664cb3 +2024-09-11 09:00:31.155571 2024-09-11 09:00:31.155576 aggnd 050588907 R rec 547fc20e-1a50-49b6-9b85-f5187a9e05c0 +2024-09-11 09:00:31.219141 2024-09-11 09:00:31.219146 aggnd 050620746 R rec 511f97c1-9b40-4219-bc1c-666984857745 +2024-09-11 09:00:31.274002 2024-09-11 09:00:31.274007 aggnd 050629069 R rec b2493eaf-4b26-43a3-be1c-68519d9d8650 +2024-09-11 09:00:31.336731 2024-09-11 09:00:31.336736 aggnd 05063223X R rec 9a613055-c5a0-4cb2-b0e1-871a1919475c +2024-09-11 09:00:31.389548 2024-09-11 09:00:31.389552 aggnd 050639412 R rec c77b3705-3139-400f-ae93-935ef9821f1c +2024-09-11 09:00:31.444893 2024-09-11 09:00:31.444897 aggnd 050710885 R rec fa57f8eb-5c0f-4fe1-8523-2581ac76e6a2 +2024-09-11 09:00:31.497699 2024-09-11 09:00:31.497704 aggnd 050717510 R rec 9bdc4ed1-8fda-4fe5-8c04-34745122f58d +2024-09-11 09:00:31.550484 2024-09-11 09:00:31.550489 aggnd 050721607 R rec ae2ba9e7-7093-4ca9-84dc-bd96c7306c02 +2024-09-11 09:00:31.606142 2024-09-11 09:00:31.606147 aggnd 050726064 R rec 4d498cec-d9b7-4316-930e-ccbae4da5b56 +2024-09-11 09:00:31.669289 2024-09-11 09:00:31.669294 aggnd 050738151 R rec 4f3dd6fb-0b47-4d03-84b1-9e15ae94d0fb +2024-09-11 09:00:31.75787 2024-09-11 09:00:31.757875 aggnd 050739875 R rec 0be4e2c3-46e8-4291-8f91-cd5450e71ed6 +2024-09-11 09:00:31.811805 2024-09-11 09:00:31.81181 aggnd 050753762 R rec 6a42d16b-8dd4-4ea0-8f1e-ffc96c955389 +2024-09-11 09:00:31.87641 2024-09-11 09:00:31.876415 aggnd 050778250 R rec 2febf70e-e0a3-4e74-b9eb-e1cf5a1d4224 +2024-09-11 09:00:31.928801 2024-09-11 09:00:31.928806 aggnd 050780328 R rec fae9882a-e638-43cd-be53-e102d4048ff9 +2024-09-11 09:00:31.978525 2024-09-11 09:00:31.97853 aggnd 050784005 R rec be915af7-76ee-4de5-b509-1a93dfc769e1 +2024-09-11 09:00:32.032138 2024-09-11 09:00:32.032143 aggnd 050786954 R rec 90d06eb8-ee11-46f2-aee1-982193a584c1 +2024-09-11 09:00:32.083718 2024-09-11 09:00:32.083723 aggnd 050788434 R rec d3592f97-9b02-4ae8-b869-e22ea7f9b427 +2024-09-11 09:00:32.133863 2024-09-11 09:00:32.133867 aggnd 050805800 R rec 969a2af3-c797-48b9-8548-ebcccd476bb6 +2024-09-11 09:00:32.185164 2024-09-11 09:00:32.185169 aggnd 050846043 R rec 594a8df0-a2fd-43ff-b476-d1a68d499ce6 +2024-09-11 09:00:32.239948 2024-09-11 09:00:32.239952 aggnd 050876902 R rec 8fecd586-5ef9-445f-80b6-876ae56efe4c +2024-09-11 09:00:32.298805 2024-09-11 09:00:32.298811 aggnd 050880667 R rec 9d3f31f1-7b43-4f0d-9396-4868c5d6577e +2024-09-11 09:00:32.349421 2024-09-11 09:00:32.349425 aggnd 050881922 R rec 80647e66-9204-4a89-b264-8640807bfda8 +2024-09-11 09:00:32.40345 2024-09-11 09:00:32.403455 aggnd 050895877 R rec 065a44bb-6e56-4ecd-aa8a-32636af32c77 +2024-09-11 09:00:32.46536 2024-09-11 09:00:32.465365 aggnd 050917633 R rec 272ebb0c-5e36-42e2-ae36-5e8de6dc8d51 +2024-09-11 09:00:32.515993 2024-09-11 09:00:32.515998 aggnd 050917889 R rec 129a24ce-59a9-4172-9320-b1096adedad5 +2024-09-11 09:00:32.566976 2024-09-11 09:00:32.566981 aggnd 050925520 R rec 3eae6d3a-ca33-472b-8f16-facf95022e2b +2024-09-11 09:00:32.621108 2024-09-11 09:00:32.621113 aggnd 050927078 R rec 08f57d38-16d7-4c48-a244-a42977286ca4 +2024-09-11 09:00:32.673195 2024-09-11 09:00:32.6732 aggnd 050943618 R rec f4b4eebd-a01e-4e79-a65a-86cec3c2ae1f +2024-09-11 09:00:32.726029 2024-09-11 09:00:32.726033 aggnd 051115913 R rec 870e3061-36e4-4ee1-999a-1f387d807a95 +2024-09-11 09:00:32.780594 2024-09-11 09:00:32.780599 aggnd 051171538 R rec efed352e-549a-41a8-9ae2-e4497db63678 +2024-09-11 09:00:32.844119 2024-09-11 09:00:32.844124 aggnd 051251930 R rec 10e57e8f-e969-4860-93c2-4dc5795b4ae8 +2024-09-11 09:00:32.909672 2024-09-11 09:00:32.909677 aggnd 051253801 R rec 93efea3d-09d2-49c9-924e-9de9b74bedab +2024-09-11 09:00:32.962187 2024-09-11 09:00:32.962191 aggnd 051264129 R rec 7c3bf69a-f5b8-42e1-b5f2-ed1d89a595dc +2024-09-11 09:00:33.016073 2024-09-11 09:00:33.016078 aggnd 051266717 R rec 252f66a1-866b-47bd-8451-38274d647109 +2024-09-11 09:00:33.067538 2024-09-11 09:00:33.067543 aggnd 051367386 R rec e8384838-211b-4a55-94f9-4895726976ee +2024-09-11 09:00:33.135858 2024-09-11 09:00:33.135863 aggnd 051381079 R rec 11453f0b-4794-46bf-9743-62337d9fd125 +2024-09-11 09:00:33.213932 2024-09-11 09:00:33.213937 aggnd 051518449 R rec 111d43c8-cca7-4220-b3dd-f2ac903f73ca +2024-09-11 09:00:33.267278 2024-09-11 09:00:33.267282 aggnd 055005284 R rec 5b193304-6bf9-4d85-95e4-c010e191077f +2024-09-11 09:00:33.316314 2024-09-11 09:00:33.316319 aggnd 055085849 R rec ba59a85b-2c1a-4dd4-aa59-857482707772 +2024-09-11 09:00:33.368515 2024-09-11 09:00:33.36852 aggnd 055114938 R rec b3bf700a-6e59-48b0-b1aa-0d09cc08b641 +2024-09-11 09:00:33.421445 2024-09-11 09:00:33.421449 aggnd 055142524 R rec 080324f2-0dd7-4957-a189-4475273ca631 +2024-09-11 09:00:33.475057 2024-09-11 09:00:33.475059 aggnd 055146201 R rec f871a81f-1fda-477a-bf76-4feb1d748cd5 +2024-09-11 09:00:33.538443 2024-09-11 09:00:33.538447 aggnd 055154050 R rec 1b29fe17-40a9-4b93-ae6f-92cdfe292265 +2024-09-11 09:00:33.591961 2024-09-11 09:00:33.591966 aggnd 055201873 R rec 12bc2e46-900a-4efc-98e6-6737d89ce8a3 +2024-09-11 09:00:33.646841 2024-09-11 09:00:33.646845 aggnd 055244025 R rec 189ef4a2-5667-4762-bb9d-c3f02223906a +2024-09-11 09:00:33.706949 2024-09-11 09:00:33.706953 aggnd 05533556X R rec 5ce6c754-da92-4864-aee2-524bd794038c +2024-09-11 09:00:33.75888 2024-09-11 09:00:33.758885 aggnd 055380700 R rec 5340034d-45af-4291-b90f-cf5c34976f14 +2024-09-11 09:00:33.811383 2024-09-11 09:00:33.811387 aggnd 055449271 R rec 1affd554-6e5e-4410-a809-aad8f6baf1f1 +2024-09-11 09:00:33.864494 2024-09-11 09:00:33.864498 aggnd 055518788 R rec 0a03f981-1fb4-48ef-93ed-958d7242f4a1 +2024-09-11 09:00:33.920207 2024-09-11 09:00:33.920212 aggnd 055521460 R rec 92af110e-12ca-4e6d-b5e5-f4bf8ed1b9be +2024-09-11 09:00:33.979885 2024-09-11 09:00:33.97989 aggnd 055526195 R rec b35975f0-e9a1-4743-b0e3-c0a6fd0f3e42 +2024-09-11 09:00:34.034687 2024-09-11 09:00:34.034692 aggnd 055529771 R rec a1a81a7e-5266-43ef-8109-973772970381 +2024-09-11 09:00:34.086282 2024-09-11 09:00:34.086287 aggnd 055578861 R rec bc57692a-5dc5-44fb-9b41-b4cfd28fdb76 +2024-09-11 09:00:34.140669 2024-09-11 09:00:34.140674 aggnd 055593917 R rec 0eaadcaa-fc7d-407f-aa3d-9c3f243fb97b +2024-09-11 09:00:34.197304 2024-09-11 09:00:34.197309 aggnd 055597793 R rec ec7bb895-5713-491e-a8ca-41746adfcb9c +2024-09-11 09:00:34.26163 2024-09-11 09:00:34.261634 aggnd 055608205 R rec 51572468-4ecc-4eed-bb14-01bb2d3fdf31 +2024-09-11 09:00:34.317688 2024-09-11 09:00:34.317693 aggnd 055656595 R rec 8f68d528-8702-4197-ad36-218417b14e6b +2024-09-11 09:00:34.374621 2024-09-11 09:00:34.374626 aggnd 055663354 R rec d1ed0485-2b07-459e-bff4-93955acfc2ee +2024-09-11 09:00:34.443001 2024-09-11 09:00:34.443006 aggnd 055689159 R rec 5125cd7d-a6c8-494b-a400-c0884cfa5b88 +2024-09-11 09:00:34.496909 2024-09-11 09:00:34.496914 aggnd 055718086 R rec d4d9a439-8a1f-4623-8ce2-b0ba81baf265 +2024-09-11 09:00:34.559632 2024-09-11 09:00:34.559637 aggnd 05573782X R rec 3eb6962c-a5fb-4a58-97a4-ce0f180a1ba2 +2024-09-11 09:00:34.627844 2024-09-11 09:00:34.62785 aggnd 055774520 R rec d3e9551a-4fa1-4f2e-b0c7-bd1d0bb7d753 +2024-09-11 09:00:34.712017 2024-09-11 09:00:34.712022 aggnd 055798837 R rec 91cced0e-ef89-449d-83c9-689fc65be5f2 +2024-09-11 09:00:34.771719 2024-09-11 09:00:34.771724 aggnd 055823866 R rec 2eeac1e2-580d-46f8-a5cf-55fa241f55ec +2024-09-11 09:00:34.832877 2024-09-11 09:00:34.832881 aggnd 055837417 R rec 8325fe25-ad3e-4f3b-a713-f15192326db1 +2024-09-11 09:00:34.894327 2024-09-11 09:00:34.894332 aggnd 055842941 R rec 6347e2de-c6e6-4794-a019-48af32da317b +2024-09-11 09:00:34.951041 2024-09-11 09:00:34.951046 aggnd 055872891 R rec 0b7f6b7d-6cfb-4f39-b2af-fd60eb58bee9 +2024-09-11 09:00:35.014525 2024-09-11 09:00:35.014531 aggnd 055899781 R rec a41630eb-cc25-45fb-ae42-38bff99d4a25 +2024-09-11 09:00:35.066235 2024-09-11 09:00:35.066241 aggnd 055949002 R rec 3a3fc25b-ae89-4d06-8b52-f8650ef14f89 +2024-09-11 09:00:35.120584 2024-09-11 09:00:35.120589 aggnd 055952283 R rec ca9dafc2-27f3-4aec-b7a8-6bbc715d33fe +2024-09-11 09:00:35.177966 2024-09-11 09:00:35.177971 aggnd 056024045 R rec 16a7e839-3e34-424d-8c74-7e943fe67708 +2024-09-11 09:00:35.232201 2024-09-11 09:00:35.232206 aggnd 056088612 R rec 39e5ef36-211e-4f27-9972-ca150e767270 +2024-09-11 09:00:35.28631 2024-09-11 09:00:35.286316 aggnd 056119054 R rec f34deb11-9178-49ba-be34-eeb9c3ed9427 +2024-09-11 09:00:35.349788 2024-09-11 09:00:35.349792 aggnd 056140010 R rec 3b2b8d8a-6280-4960-ace3-4d1177346e88 +2024-09-11 09:00:35.4178 2024-09-11 09:00:35.417804 aggnd 056141645 R rec d98f826d-20bc-43c6-9f88-553381d7dadc +2024-09-11 09:00:35.473033 2024-09-11 09:00:35.473038 aggnd 056169302 R rec 89255ce0-829e-4074-8b02-e0f8d8de66d7 +2024-09-11 09:00:35.542852 2024-09-11 09:00:35.542857 aggnd 056281544 R rec a1379f41-bbf9-408a-9e56-ffa3a4a0fec8 +2024-09-11 09:00:35.597595 2024-09-11 09:00:35.597601 aggnd 056310099 R rec 6bde6c0b-b046-43f9-a19a-c1be74c56a95 +2024-09-11 09:00:35.654706 2024-09-11 09:00:35.654712 aggnd 05634371X R rec 379c8d22-fc35-4773-98e7-b65c12c9b3a7 +2024-09-11 09:00:35.720659 2024-09-11 09:00:35.720664 aggnd 1000024091 R rec e8810968-e5c5-48ac-a00b-003c5f82f852 +2024-09-11 09:00:35.777742 2024-09-11 09:00:35.777764 aggnd 1000226778 R rec ca5a6836-0d12-4bf1-a505-4686e23e8c47 +2024-09-11 09:00:35.847227 2024-09-11 09:00:35.847233 aggnd 1000228320 R rec db3be0c2-7c54-49cf-baf3-4b197455ab8b +2024-09-11 09:00:35.931349 2024-09-11 09:00:35.931354 aggnd 1000295257 R rec 79b69337-ea91-4bd9-a282-cbf5f155b35c +2024-09-11 09:00:36.003876 2024-09-11 09:00:36.003882 aggnd 1000465780 R rec c57a4169-ceb1-4b9f-89f1-6d26fe3305bd +2024-09-11 09:00:36.072344 2024-09-11 09:00:36.072349 aggnd 1000582329 R rec 30ac7ae9-4b3e-49a4-b4c5-af13c7af8689 +2024-09-11 09:00:36.151472 2024-09-11 09:00:36.151477 aggnd 1000592979 R rec 76523237-2589-4376-a4ed-e0bedd1e9bbe +2024-09-11 09:00:36.220502 2024-09-11 09:00:36.220507 aggnd 1000594521 R rec 0bed1d1c-4ed3-46f5-ade1-c185126db35a +2024-09-11 09:00:36.275957 2024-09-11 09:00:36.275962 aggnd 1000601153 R rec 76c5221c-c4c9-4678-96ae-b91d62c86fbd +2024-09-11 09:00:36.330738 2024-09-11 09:00:36.330743 aggnd 1000610896 R rec 8a27ca43-3c02-46c6-9abf-9362c36d098e +2024-09-11 09:00:36.385067 2024-09-11 09:00:36.385072 aggnd 1000681815 R rec 871eb19a-d2c2-4957-92e3-ba2d87f388de +2024-09-11 09:00:36.442814 2024-09-11 09:00:36.442819 aggnd 100068944 R rec 184c135f-b93a-407d-8d7f-9dd939aec413 +2024-09-11 09:00:36.503491 2024-09-11 09:00:36.503496 aggnd 1000698777 R rec ecb49f22-28cf-4cb1-bec8-1847749a2887 +2024-09-11 09:00:36.557528 2024-09-11 09:00:36.557533 aggnd 1000836290 R rec 5f792dc9-608b-484a-8274-453799bac0c0 +2024-09-11 09:00:36.611861 2024-09-11 09:00:36.611867 aggnd 1000990958 R rec 7b8e138c-1b6f-41c7-af79-2d5b62101279 +2024-09-11 09:00:36.669385 2024-09-11 09:00:36.66939 aggnd 1001088646 R rec 27a6a17c-d9b7-4b86-a8d0-6b502b71adcb +2024-09-11 09:00:36.720179 2024-09-11 09:00:36.720184 aggnd 1001206770 R rec 3253b3eb-6258-44b0-bff9-2700e2010d64 +2024-09-11 09:00:36.777505 2024-09-11 09:00:36.777511 aggnd 1001284402 R rec abc65f65-9d34-481e-8b1b-10ef87fe05a9 +2024-09-11 09:00:36.830088 2024-09-11 09:00:36.830091 aggnd 1001334272 R rec f19267b5-7dfd-4dd2-a29b-1d2908c9fd17 +2024-09-11 09:00:36.88831 2024-09-11 09:00:36.888314 aggnd 1001567501 R rec ba0db330-5ed0-4320-b6aa-0c76c863d5d7 +2024-09-11 09:00:36.943014 2024-09-11 09:00:36.943019 aggnd 100167328X R rec 5b5c9b1e-7769-4c04-9c46-fefd696d1bd0 +2024-09-11 09:00:36.998077 2024-09-11 09:00:36.998083 aggnd 1001827562 R rec 2e5bd798-dcce-4805-b1d3-35065b4601ca +2024-09-11 09:00:37.054303 2024-09-11 09:00:37.054308 aggnd 1001848063 R rec dd67db81-8947-4da0-b8cb-1161f9437873 +2024-09-11 09:00:37.110488 2024-09-11 09:00:37.110493 aggnd 1001985265 R rec f2df6f1d-0263-45a9-8384-f822001306bb +2024-09-11 09:00:37.175119 2024-09-11 09:00:37.175124 aggnd 1002133998 R rec 51a042fa-2777-447d-81ab-2d2c882bcd29 +2024-09-11 09:00:37.232188 2024-09-11 09:00:37.232193 aggnd 1002374588 R rec 9d61768c-84e8-4e2a-ac57-1f36438fbc03 +2024-09-11 09:00:37.296414 2024-09-11 09:00:37.29642 aggnd 1002731305 R rec b90f7da4-4f81-4761-b587-949987234e97 +2024-09-11 09:00:37.354757 2024-09-11 09:00:37.354762 aggnd 1003000274 R rec f158457e-8b91-4153-b6b6-1a5904c68541 +2024-09-11 09:00:37.408345 2024-09-11 09:00:37.408351 aggnd 1003122329 R rec 223de79f-478d-4f35-9cff-ce9ed664953f +2024-09-11 09:00:37.463239 2024-09-11 09:00:37.463244 aggnd 1003145523 R rec ca440470-d529-40c0-a17f-cf5d2fbb7700 +2024-09-11 09:00:37.515172 2024-09-11 09:00:37.515177 aggnd 100316042 R rec 25ac68ee-dd2c-4ea9-986d-3177ec7f8861 +2024-09-11 09:00:37.5685 2024-09-11 09:00:37.568505 aggnd 1003218784 R rec 8a3eedd6-4efd-4513-8367-8c7cb145ef78 +2024-09-11 09:00:37.653846 2024-09-11 09:00:37.653851 aggnd 1003329063 R rec 4dfd82ed-bb04-4a3f-95a0-4f0a3ab89b0d +2024-09-11 09:00:37.70673 2024-09-11 09:00:37.706735 aggnd 100349471 R rec b13ceb1d-37a3-43ce-9fb7-c0793264955a +2024-09-11 09:00:37.761975 2024-09-11 09:00:37.761981 aggnd 1003824153 R rec 4bd214ef-6cfb-455c-96e5-9da87f8080c0 +2024-09-11 09:00:37.827274 2024-09-11 09:00:37.827279 aggnd 1003837840 R rec baa67882-d85d-4e80-8f61-cdd93b6d5536 +2024-09-11 09:00:37.880624 2024-09-11 09:00:37.880628 aggnd 1004014589 R rec 794b8641-b951-4de2-877b-e1dbd1889195 +2024-09-11 09:00:37.943262 2024-09-11 09:00:37.943267 aggnd 1004316267 R rec ef2d5056-7283-4c5a-8242-1820235af93a +2024-09-11 09:00:37.997102 2024-09-11 09:00:37.997107 aggnd 1004386486 R rec faa7dea6-203d-424b-80a4-064bd8720766 +2024-09-11 09:00:38.068216 2024-09-11 09:00:38.068222 aggnd 100438713X R rec 53e1019c-b880-4778-9c8a-a8d48d0f98d0 +2024-09-11 09:00:38.127672 2024-09-11 09:00:38.127677 aggnd 1004477503 R rec ee1c7781-b089-40ae-b5ae-902999b698d4 +2024-09-11 09:00:38.186882 2024-09-11 09:00:38.186887 aggnd 1004482531 R rec f83761a4-bb1e-4a4f-8cf9-21aea5de8ab8 +2024-09-11 09:00:38.247567 2024-09-11 09:00:38.247571 aggnd 1004487096 R rec cfb1f856-5e4c-4003-bfa1-64a1b64aa7d5 +2024-09-11 09:00:38.309168 2024-09-11 09:00:38.309174 aggnd 1004490674 R rec 6b9b8f96-44f3-41a4-b286-8c0924e54354 +2024-09-11 09:00:38.364169 2024-09-11 09:00:38.364176 aggnd 1004494807 R rec c1660253-4206-4357-bff7-75f43ef5e713 +2024-09-11 09:00:38.41569 2024-09-11 09:00:38.415695 aggnd 1004497415 R rec 91543f09-f228-4efc-be8b-0f07ae286c27 +2024-09-11 09:00:38.468073 2024-09-11 09:00:38.468079 aggnd 1004503423 R rec b010aa4f-27b7-44fc-916a-2c1b5a5188f4 +2024-09-11 09:00:38.522304 2024-09-11 09:00:38.522309 aggnd 1004520778 R rec 70611c7e-ce82-436f-b214-b9cc4ee3bb12 +2024-09-11 09:00:38.588252 2024-09-11 09:00:38.588257 aggnd 1004537549 R rec 719e9140-3c99-4ed5-8b7a-459b1557a7af +2024-09-11 09:00:38.653504 2024-09-11 09:00:38.653509 aggnd 1004552424 R rec c014f39e-92b1-4395-8189-546c769da9a4 +2024-09-11 09:00:38.714233 2024-09-11 09:00:38.714238 aggnd 100455706X R rec a846a012-4e8e-41f1-8836-efdcea4945d0 +2024-09-11 09:00:38.767214 2024-09-11 09:00:38.767218 aggnd 1004578172 R rec 39f9bad5-9421-4870-8dea-195215e380c6 +2024-09-11 09:00:38.822005 2024-09-11 09:00:38.82201 aggnd 1004580428 R rec 2b3a46f8-0797-4492-bf92-be6d76247d11 +2024-09-11 09:00:38.875748 2024-09-11 09:00:38.875754 aggnd 1004597800 R rec 76e71917-3943-40a6-b3c2-f35e2ab0247a +2024-09-11 09:00:38.927836 2024-09-11 09:00:38.927841 aggnd 1004602456 R rec 476eae78-bb00-4490-b754-861b5b19d510 +2024-09-11 09:00:38.980688 2024-09-11 09:00:38.980693 aggnd 1004610041 R rec 92485ee9-4e40-4a21-88df-559c69840ecc +2024-09-11 09:00:39.043078 2024-09-11 09:00:39.043083 aggnd 1004623488 R rec 17d8146f-8b12-4232-8f01-fabd0ff51e86 +2024-09-11 09:00:39.100877 2024-09-11 09:00:39.100882 aggnd 1004659237 R rec 58df07af-0c9a-4669-9dc0-fd3372bf5958 +2024-09-11 09:00:39.156308 2024-09-11 09:00:39.156313 aggnd 1004691408 R rec 4f9e4828-0383-464b-b145-86207b2abc67 +2024-09-11 09:00:39.209701 2024-09-11 09:00:39.209707 aggnd 1004696000 R rec fdd5359f-ebaf-4e37-8a43-8c7f0f42d4bf +2024-09-11 09:00:39.260669 2024-09-11 09:00:39.260674 aggnd 1004996152 R rec d35a5d8a-e056-44fd-beda-c605ebfc7500 +2024-09-11 09:00:39.32033 2024-09-11 09:00:39.320334 aggnd 1005138168 R rec b8e25c3c-0faf-4b89-a9a9-311d349d3b2e +2024-09-11 09:00:39.37329 2024-09-11 09:00:39.373295 aggnd 1005381364 R rec 9d8c5063-8492-4d72-b12e-1b93b1c9e962 +2024-09-11 09:00:39.428447 2024-09-11 09:00:39.428452 aggnd 1005446873 R rec 3b44274b-2bc0-45b6-89ae-f00806deb3b4 +2024-09-11 09:00:39.483097 2024-09-11 09:00:39.483101 aggnd 1006191062 R rec 642c28a6-8bde-47aa-981e-1287e421ce16 +2024-09-11 09:00:39.549138 2024-09-11 09:00:39.549143 aggnd 1006414401 R rec 8f4c797d-130a-466e-8287-2230193bc2e6 +2024-09-11 09:00:39.602511 2024-09-11 09:00:39.602515 aggnd 1006687815 R rec 1d9430f0-7eda-4f94-871b-2cee2837e129 +2024-09-11 09:00:39.656015 2024-09-11 09:00:39.65602 aggnd 1006928111 R rec fe4efbf4-7816-479e-b6d5-2ff0566af51b +2024-09-11 09:00:39.715846 2024-09-11 09:00:39.715851 aggnd 1007180692 R rec c0744154-4cd3-4c6a-b38d-7a55a7e55e6f +2024-09-11 09:00:39.771514 2024-09-11 09:00:39.77152 aggnd 1007242396 R rec b2296207-c920-4137-bb0e-44e92ed7b03f +2024-09-11 09:00:39.826253 2024-09-11 09:00:39.826259 aggnd 1007432802 R rec 1743d049-4850-48e2-926b-0f3a75564850 +2024-09-11 09:00:39.878644 2024-09-11 09:00:39.878649 aggnd 1007693789 R rec e55f9edd-822f-4e3a-b8fa-f29b99f414fa +2024-09-11 09:00:39.93597 2024-09-11 09:00:39.935975 aggnd 1007769319 R rec 54441bab-e7df-4abb-9531-bb7b14d525c6 +2024-09-11 09:00:40.002404 2024-09-11 09:00:40.002407 aggnd 1007863307 R rec 5eb127f6-09b6-4f2c-9485-6b1077a94df0 +2024-09-11 09:00:40.055136 2024-09-11 09:00:40.055141 aggnd 1008172537 R rec 975981fb-f93f-4a9d-a1ca-bd1425ad359e +2024-09-11 09:00:40.110041 2024-09-11 09:00:40.110046 aggnd 1008311308 R rec 1040747e-f3ca-4ff0-89b9-aee71624ca2d +2024-09-11 09:00:40.187696 2024-09-11 09:00:40.187701 aggnd 1008358118 R rec d4f88073-c44b-487c-b591-c62706c9ad9e +2024-09-11 09:00:40.241744 2024-09-11 09:00:40.24175 aggnd 1008359025 R rec d623b6ef-dedf-45dd-ba9a-ca0bee58a7fb +2024-09-11 09:00:40.308091 2024-09-11 09:00:40.308095 aggnd 1008374040 R rec 9b314880-7ae0-418f-8b86-f99efa6cf398 +2024-09-11 09:00:40.360966 2024-09-11 09:00:40.360972 aggnd 1008509957 R rec aa362b9a-2a61-4c30-9174-2e6a5db2ed4d +2024-09-11 09:00:40.418857 2024-09-11 09:00:40.418862 aggnd 1008705683 R rec ca6d5987-44dc-461e-9be3-5b637acd1856 +2024-09-11 09:00:40.520618 2024-09-11 09:00:40.520623 aggnd 1008850411 R rec e9c7920b-e002-4b9a-ae60-1529e4024aea +2024-09-11 09:00:40.587717 2024-09-11 09:00:40.587721 aggnd 1008982075 R rec 2fe22708-1acf-4296-8489-830ce1a19d7a +2024-09-11 09:00:40.638848 2024-09-11 09:00:40.638853 aggnd 1009099981 R rec 512e0152-e25f-4531-8a51-48007f90fe77 +2024-09-11 09:00:40.691559 2024-09-11 09:00:40.691564 aggnd 1009237543 R rec f08044e4-36cc-40cf-96d1-11122e0b7772 +2024-09-11 09:00:40.746174 2024-09-11 09:00:40.746179 aggnd 1009363581 R rec 5e24b2dc-97bd-4a2f-8d85-a7c071454317 +2024-09-11 09:00:40.807051 2024-09-11 09:00:40.807055 aggnd 1009625977 R rec bce07cff-ac9e-477e-b956-86c5dceae7d0 +2024-09-11 09:00:40.861678 2024-09-11 09:00:40.861682 aggnd 100963315 R rec 16274fe9-9974-4e2c-bc7e-85c71a057959 +2024-09-11 09:00:40.919954 2024-09-11 09:00:40.919959 aggnd 1009786741 R rec d0e65242-65de-4c20-9795-a15d65dda509 +2024-09-11 09:00:40.974788 2024-09-11 09:00:40.974793 aggnd 1010306146 R rec cf408410-89dc-47c7-b484-775839984bc8 +2024-09-11 09:00:41.039164 2024-09-11 09:00:41.039169 aggnd 1010326945 R rec 22008624-28c0-46ac-99a0-a74f9c73aec3 +2024-09-11 09:00:41.08981 2024-09-11 09:00:41.089815 aggnd 101054389X R rec 15238a30-5caf-4cd2-9c3e-a3b9732f004a +2024-09-11 09:00:41.143158 2024-09-11 09:00:41.143163 aggnd 1010664034 R rec 8d4161ad-d343-4121-85e3-38fe204d3aa7 +2024-09-11 09:00:41.205076 2024-09-11 09:00:41.20508 aggnd 1010670174 R rec a1b0982a-924c-477d-9e30-eb3919aa9592 +2024-09-11 09:00:41.257082 2024-09-11 09:00:41.257088 aggnd 1010696092 R rec 5cf78c27-f1f9-4083-9b34-df1a96714c5f +2024-09-11 09:00:41.3238 2024-09-11 09:00:41.323805 aggnd 1010769979 R rec 3842dd54-bfeb-4c55-9702-364e5544a181 +2024-09-11 09:00:41.376961 2024-09-11 09:00:41.376966 aggnd 1010987895 R rec fdeea789-088c-4b69-b2e8-e66babddf59e +2024-09-11 09:00:41.434401 2024-09-11 09:00:41.434406 aggnd 1011029162 R rec 8e8623f8-af4b-4c67-a121-567ff15dd5bf +2024-09-11 09:00:41.485247 2024-09-11 09:00:41.485252 aggnd 1011038692 R rec eff99401-c7b4-47fc-9c1e-77bae58748b0 +2024-09-11 09:00:41.537381 2024-09-11 09:00:41.537385 aggnd 1011064766 R rec 879af826-71a7-4f3c-bccc-cf7a9c508484 +2024-09-11 09:00:41.600062 2024-09-11 09:00:41.600067 aggnd 1011072602 R rec 843b8fef-801c-468c-9b43-cfa583885733 +2024-09-11 09:00:41.649781 2024-09-11 09:00:41.649785 aggnd 1011184176 R rec aaad8db0-64eb-494f-ace7-cead2cf33fec +2024-09-11 09:00:41.704059 2024-09-11 09:00:41.704064 aggnd 1011184672 R rec 61672309-4cbe-4fec-9bcd-8ed1638ae858 +2024-09-11 09:00:41.768424 2024-09-11 09:00:41.768429 aggnd 1011196735 R rec 7df28e10-6519-4b43-9371-a671b095ce53 +2024-09-11 09:00:41.826664 2024-09-11 09:00:41.826669 aggnd 1011276259 R rec 7e2a383f-f898-4a37-9b2a-2789e76d2c04 +2024-09-11 09:00:41.90975 2024-09-11 09:00:41.909756 aggnd 1011311550 R rec 9b3fb208-884e-444f-85c8-c2c7b2eb8144 +2024-09-11 09:00:41.976216 2024-09-11 09:00:41.976221 aggnd 1011400707 R rec 2c1bec2b-3256-4937-ade5-c36ea5e4281e +2024-09-11 09:00:42.033696 2024-09-11 09:00:42.033702 aggnd 1011449145 R rec a2e24594-4c66-4a3c-800c-bacef165f2fd +2024-09-11 09:00:42.092478 2024-09-11 09:00:42.092483 aggnd 1011453215 R rec d903c457-ff30-467d-82c5-c6d595e475d4 +2024-09-11 09:00:42.146625 2024-09-11 09:00:42.14663 aggnd 1011475596 R rec 3a214095-4239-43e2-be52-6f4bf0c7437c +2024-09-11 09:00:42.199282 2024-09-11 09:00:42.199287 aggnd 1011506084 R rec cf7043ae-8330-4e00-a7fe-c7a192edf008 +2024-09-11 09:00:42.256621 2024-09-11 09:00:42.256625 aggnd 1011618362 R rec deba0598-0ac0-4b1a-bda5-ade2be69fb9d +2024-09-11 09:00:42.318919 2024-09-11 09:00:42.318924 aggnd 1011673835 R rec 07c01a77-0e55-4c78-9297-536de9be021c +2024-09-11 09:00:42.372104 2024-09-11 09:00:42.37211 aggnd 1011705486 R rec 3c5dc599-f274-49e1-8f1c-afe272d5021f +2024-09-11 09:00:42.424591 2024-09-11 09:00:42.424596 aggnd 1011709368 R rec 1bdaa0ab-83b7-4516-aa14-3195cd70562b +2024-09-11 09:00:42.497443 2024-09-11 09:00:42.497447 aggnd 1011744619 R rec bbd57fb1-76f0-4045-9a34-f5e65f14667b +2024-09-11 09:00:42.559027 2024-09-11 09:00:42.559032 aggnd 1011762676 R rec c36597dd-7409-43e3-8192-df1788faf715 +2024-09-11 09:00:42.61772 2024-09-11 09:00:42.617726 aggnd 1011811669 R rec d685c6df-67e0-4f6e-91a1-fb9286e4a35b +2024-09-11 09:00:42.668669 2024-09-11 09:00:42.668674 aggnd 1011875829 R rec 4f7c7f0d-d6c2-43fb-9618-4ecb02f2dc86 +2024-09-11 09:00:42.72428 2024-09-11 09:00:42.724284 aggnd 1011887444 R rec 984cc992-b2f5-4597-80cb-be29a8d95325 +2024-09-11 09:00:42.776358 2024-09-11 09:00:42.776364 aggnd 1011898012 R rec 4ea4eecb-571c-4862-84d6-c34142172ae9 +2024-09-11 09:00:42.827578 2024-09-11 09:00:42.827583 aggnd 1011967472 R rec 84465fd0-6756-41d5-99b5-1eca5b5983b0 +2024-09-11 09:00:42.881853 2024-09-11 09:00:42.881858 aggnd 1012126404 R rec cddf154e-77c9-4d5a-a4dc-c20d9372e2ca +2024-09-11 09:00:42.92985 2024-09-11 09:00:42.929855 aggnd 1012244741 R rec b1f52b7f-bf7b-4fe4-b87f-712f9357bc74 +2024-09-11 09:00:42.984376 2024-09-11 09:00:42.984381 aggnd 1012247554 R rec 8a0e4a4d-c4f2-4ffe-a18b-e3c1f9758174 +2024-09-11 09:00:43.036913 2024-09-11 09:00:43.036918 aggnd 1012247589 R rec 7c2be6f0-dbb6-4a79-86ba-12712eb8e65b +2024-09-11 09:00:43.089597 2024-09-11 09:00:43.089602 aggnd 1012247627 R rec f78a0d5e-7a85-4bdf-8d0a-952556a38051 +2024-09-11 09:00:43.143164 2024-09-11 09:00:43.14317 aggnd 1012262367 R rec be07dd06-19cf-40e9-8e77-17248af875f6 +2024-09-11 09:00:43.195768 2024-09-11 09:00:43.195774 aggnd 1012277151 R rec 0b5b625d-5d13-4c67-91b8-7d25f19edeb0 +2024-09-11 09:00:43.258306 2024-09-11 09:00:43.258311 aggnd 1012289915 R rec c17d9149-7be0-4044-891b-94b949e58008 +2024-09-11 09:00:43.323251 2024-09-11 09:00:43.323255 aggnd 1012299805 R rec e1df000f-f4ca-4be4-8214-e66ef4a8315b +2024-09-11 09:00:43.385887 2024-09-11 09:00:43.385892 aggnd 1012301389 R rec 2a059e5b-1712-4e8b-b622-b161138a38e9 +2024-09-11 09:00:43.441832 2024-09-11 09:00:43.441838 aggnd 1012304973 R rec 1bb85507-f98e-4795-aa11-8ec9fd43f93b +2024-09-11 09:00:43.499418 2024-09-11 09:00:43.499423 aggnd 1012336026 R rec 864b21e0-dab2-4b39-83a2-151c01a4747f +2024-09-11 09:00:43.557328 2024-09-11 09:00:43.557334 aggnd 101234472X R rec 4378592c-d07e-4875-933c-890d9b8c8fc4 +2024-09-11 09:00:43.633535 2024-09-11 09:00:43.63354 aggnd 1012370755 R rec 6c215a85-236a-4215-a492-fc9597fe1524 +2024-09-11 09:00:43.685889 2024-09-11 09:00:43.685894 aggnd 1012371964 R rec c33d3fa2-0d2d-4acc-aa06-fffa0326abf0 +2024-09-11 09:00:43.742626 2024-09-11 09:00:43.742631 aggnd 1012374548 R rec 1ea8cdbf-84c1-445f-89fe-88338e046c23 +2024-09-11 09:00:43.806629 2024-09-11 09:00:43.806634 aggnd 1012379574 R rec a01b7448-5b1c-49d8-8914-4f4b608d9d50 +2024-09-11 09:00:43.861087 2024-09-11 09:00:43.861092 aggnd 1012394212 R rec bd1d8b3a-58c4-47d5-aea9-5ec7243f2ba9 +2024-09-11 09:00:43.91418 2024-09-11 09:00:43.914185 aggnd 101239705X R rec 83561094-13f1-4381-b3cb-87e623bac050 +2024-09-11 09:00:43.970759 2024-09-11 09:00:43.970764 aggnd 1012398897 R rec 3c9d7b64-72ef-4d2e-95ae-2a5d36b2ab00 +2024-09-11 09:00:44.034132 2024-09-11 09:00:44.034138 aggnd 1012399737 R rec 3a4ce29d-f223-4847-ab3f-f9f957d937ab +2024-09-11 09:00:44.096514 2024-09-11 09:00:44.096519 aggnd 1012410234 R rec bd524f10-d919-416c-9a10-ba9e25b9e8f1 +2024-09-11 09:00:44.152369 2024-09-11 09:00:44.152374 aggnd 1012413934 R rec 2ed1a5fd-4d3a-45b8-91ec-1762c9d99955 +2024-09-11 09:00:44.205805 2024-09-11 09:00:44.20581 aggnd 1012484076 R rec 318914bf-3133-4481-8cbb-7a8a3042ac79 +2024-09-11 09:00:44.257411 2024-09-11 09:00:44.257415 aggnd 1012546772 R rec b5be8139-e812-4162-a5a5-bf4ce88db9d9 +2024-09-11 09:00:44.310244 2024-09-11 09:00:44.31025 aggnd 1012559114 R rec a1a40a91-bf22-4c9d-8472-328a9a41536b +2024-09-11 09:00:44.375215 2024-09-11 09:00:44.375219 aggnd 1012580350 R rec 77152f54-3c62-421d-946a-46016dbf0f8b +2024-09-11 09:00:44.425187 2024-09-11 09:00:44.425192 aggnd 1012659720 R rec c84ecbf0-6279-4f12-b5c8-06e8ac99e137 +2024-09-11 09:00:44.473868 2024-09-11 09:00:44.473872 aggnd 1012670813 R rec 6d849e6d-905b-4e1b-aa71-2a806af18450 +2024-09-11 09:00:44.528326 2024-09-11 09:00:44.528332 aggnd 1012703487 R rec ca452c5b-d290-4281-8fb2-bdff2df52eec +2024-09-11 09:00:44.582632 2024-09-11 09:00:44.582637 aggnd 1012706826 R rec e9c55df0-8d46-491a-bfe8-14b932833c07 +2024-09-11 09:00:44.650299 2024-09-11 09:00:44.650304 aggnd 1012770982 R rec 3d4b4026-b52f-406a-ae36-0c6358a9222a +2024-09-11 09:00:44.704611 2024-09-11 09:00:44.704616 aggnd 1012781593 R rec 883c5e17-c1f2-4036-aa5c-ef0b3e8474c4 +2024-09-11 09:00:44.755012 2024-09-11 09:00:44.755017 aggnd 1012785815 R rec ba3674cb-1433-4118-a0d5-78dc2cab1fc3 +2024-09-11 09:00:44.805161 2024-09-11 09:00:44.805166 aggnd 1012795519 R rec bc19b2c4-21d3-42e5-ab02-d18c2ca5cdc7 +2024-09-11 09:00:44.856705 2024-09-11 09:00:44.85671 aggnd 1012797198 R rec 8dfb8854-30a1-4ae0-8afb-83127a8301e6 +2024-09-11 09:00:44.910747 2024-09-11 09:00:44.910751 aggnd 1012805433 R rec 441e9c6d-777a-4efb-837e-8f66d47cacbd +2024-09-11 09:00:44.978387 2024-09-11 09:00:44.978392 aggnd 1012879887 R rec 9977f527-68a2-4185-b92d-e6a07034d861 +2024-09-11 09:00:45.030177 2024-09-11 09:00:45.030181 aggnd 1012883744 R rec 8f9f4c4f-6354-4152-b08c-a72ed86f8413 +2024-09-11 09:00:45.084158 2024-09-11 09:00:45.084162 aggnd 1012992349 R rec 962c6a92-8b2a-4943-b969-94d7c8eaac70 +2024-09-11 09:00:45.135281 2024-09-11 09:00:45.135286 aggnd 1013119495 R rec 578abec2-03bc-4f4c-a3b3-9a69d1603da5 +2024-09-11 09:00:45.191463 2024-09-11 09:00:45.191468 aggnd 1013122089 R rec b5d563e3-dd87-4ec4-a788-92ec7997e647 +2024-09-11 09:00:45.246246 2024-09-11 09:00:45.246251 aggnd 101314953X R rec ba59d750-2f84-4268-8c3d-1c98398e7b4a +2024-09-11 09:00:45.2988 2024-09-11 09:00:45.298804 aggnd 1013171349 R rec 7a48ece5-f000-4352-b760-bb7fd7663788 +2024-09-11 09:00:45.359203 2024-09-11 09:00:45.359208 aggnd 1013251334 R rec 2f57d9f9-8e1f-4afc-b599-cc1569290888 +2024-09-11 09:00:45.423555 2024-09-11 09:00:45.42356 aggnd 1013340728 R rec 54cf9a45-d5a9-4b0e-bceb-e3405280d5f0 +2024-09-11 09:00:45.491052 2024-09-11 09:00:45.491057 aggnd 1013349806 R rec b9cb231b-f6ff-463a-832b-5aa582524837 +2024-09-11 09:00:45.545044 2024-09-11 09:00:45.545048 aggnd 1013363299 R rec 33462501-9fc3-4297-8cc8-267db77aa51a +2024-09-11 09:00:45.598673 2024-09-11 09:00:45.598678 aggnd 1013479785 R rec 86ab130e-c049-40a7-95a1-0058b51c85fb +2024-09-11 09:00:45.658807 2024-09-11 09:00:45.658812 aggnd 1013536878 R rec 4954f185-3a73-4b91-b23c-fee4426a18d2 +2024-09-11 09:00:45.715486 2024-09-11 09:00:45.715491 aggnd 1013590554 R rec 66a8c0fa-c6aa-489d-b15c-b7f04b2f45aa +2024-09-11 09:00:45.77809 2024-09-11 09:00:45.778095 aggnd 1013628063 R rec 5bf80f63-921a-4a93-855b-0e827a082b80 +2024-09-11 09:00:45.829124 2024-09-11 09:00:45.82913 aggnd 1013814339 R rec bb478af5-f8b0-42e5-8961-a3837598a366 +2024-09-11 09:00:45.878278 2024-09-11 09:00:45.878282 aggnd 1013871383 R rec 6a40600b-e292-4b97-b2ee-e126aaa33e4b +2024-09-11 09:00:45.928708 2024-09-11 09:00:45.928713 aggnd 1013878353 R rec 0b660953-003b-49d7-a64f-4ca6510f0b40 +2024-09-11 09:00:45.986058 2024-09-11 09:00:45.986064 aggnd 1013882156 R rec 58ec3307-7bfe-4dd5-838a-ac2ee324b58b +2024-09-11 09:00:46.047854 2024-09-11 09:00:46.047859 aggnd 1014065240 R rec ce880bfe-19b2-483c-a6f9-c9755f5d9679 +2024-09-11 09:00:46.105626 2024-09-11 09:00:46.105631 aggnd 1014089158 R rec e737050d-50fe-43ad-af55-e03e567f2ed0 +2024-09-11 09:00:46.158739 2024-09-11 09:00:46.158743 aggnd 1014092191 R rec 931820c5-934d-45d5-9104-69da04ffebbc +2024-09-11 09:00:46.262508 2024-09-11 09:00:46.262513 aggnd 1014136539 R rec 21dfaf22-b7ad-44d9-89ab-8d5336622de8 +2024-09-11 09:00:46.314532 2024-09-11 09:00:46.314535 aggnd 1014143454 R rec cd282a0f-2f0c-4af4-83db-5fa3abf50b05 +2024-09-11 09:00:46.379353 2024-09-11 09:00:46.379358 aggnd 1014223768 R rec 42adf902-1238-4789-b601-62f44b0d1545 +2024-09-11 09:00:46.445796 2024-09-11 09:00:46.445801 aggnd 101425762X R rec a109f035-cfb4-4fd7-a51b-b6602eda27b8 +2024-09-11 09:00:46.502613 2024-09-11 09:00:46.502618 aggnd 1014290287 R rec a48cb6bf-8245-440a-8585-1be1aaa9ea85 +2024-09-11 09:00:46.56419 2024-09-11 09:00:46.564195 aggnd 1014396158 R rec 90fe050a-e283-434a-aa2c-d0c31566a937 +2024-09-11 09:00:46.618569 2024-09-11 09:00:46.618574 aggnd 1014396824 R rec ccb5f440-a390-438d-8658-36905763755a +2024-09-11 09:00:46.670224 2024-09-11 09:00:46.670229 aggnd 101440391X R rec b883d170-c101-4fa9-802e-22f72370899b +2024-09-11 09:00:46.722022 2024-09-11 09:00:46.722027 aggnd 1014449278 R rec 97253cf2-1065-46a9-8698-4b8821f9d053 +2024-09-11 09:00:46.77847 2024-09-11 09:00:46.778476 aggnd 1014449677 R rec 60877daa-f7a5-450a-b9ea-e2f9db19ef61 +2024-09-11 09:00:46.829203 2024-09-11 09:00:46.829208 aggnd 1014548012 R rec 64bd4a64-d54b-4c2d-a4d1-701c1b6dc433 +2024-09-11 09:00:46.88386 2024-09-11 09:00:46.883865 aggnd 1014626358 R rec ae8c09e1-0df5-4191-a042-5a854f55d7a6 +2024-09-11 09:00:46.935182 2024-09-11 09:00:46.935187 aggnd 1014638895 R rec 533d286c-36d3-4c0c-b822-8945711d9c1f +2024-09-11 09:00:46.993634 2024-09-11 09:00:46.993637 aggnd 1014661951 R rec 4940a03a-165b-4980-8338-c16c5ea36301 +2024-09-11 09:00:47.048995 2024-09-11 09:00:47.049 aggnd 1014671604 R rec 9fdae359-eb11-44ee-8438-e1eccf3d32a9 +2024-09-11 09:00:47.102662 2024-09-11 09:00:47.102666 aggnd 1014677610 R rec 14f6a33d-0ac5-4d11-8d95-39b36801fc62 +2024-09-11 09:00:47.15352 2024-09-11 09:00:47.153525 aggnd 1014681685 R rec 8a5afc30-c48e-4b76-93d0-e139ae71852a +2024-09-11 09:00:47.207326 2024-09-11 09:00:47.20733 aggnd 1014683998 R rec d86974a8-ee78-43d8-9971-3ff4af4596ea +2024-09-11 09:00:47.259119 2024-09-11 09:00:47.259124 aggnd 1014696348 R rec 6f288173-b042-4271-861d-26beba828b52 +2024-09-11 09:00:47.322371 2024-09-11 09:00:47.322376 aggnd 1014702739 R rec 1b0b36e1-7ba2-4360-a931-457e66bf5eb5 +2024-09-11 09:00:47.387275 2024-09-11 09:00:47.38728 aggnd 1014714222 R rec ddc97265-6107-469e-a1af-d1d4321c9262 +2024-09-11 09:00:47.446094 2024-09-11 09:00:47.4461 aggnd 1014733642 R rec 227612c7-cd93-4304-af34-86a0c33a123a +2024-09-11 09:00:47.506438 2024-09-11 09:00:47.506443 aggnd 1014745357 R rec 3dee67ec-bba8-4722-b589-ccdf7b3c5f35 +2024-09-11 09:00:47.559678 2024-09-11 09:00:47.559683 aggnd 101476677X R rec 90a00ed4-3e54-43a0-baed-5d61515ea656 +2024-09-11 09:00:47.618436 2024-09-11 09:00:47.618441 aggnd 101477635X R rec ed2ac706-7b2a-4284-a14f-1476d1be3c71 +2024-09-11 09:00:47.673132 2024-09-11 09:00:47.673138 aggnd 1014803217 R rec 63cbc8e3-9ce1-4a09-9eea-8e7423c233c4 +2024-09-11 09:00:47.728058 2024-09-11 09:00:47.728063 aggnd 1014837839 R rec 6db7b2db-922c-457f-8f2b-c8e473b113dd +2024-09-11 09:00:47.780748 2024-09-11 09:00:47.780753 aggnd 1014841011 R rec 2bc49797-9b7e-4a25-82d2-6c455fcddc41 +2024-09-11 09:00:47.838953 2024-09-11 09:00:47.838958 aggnd 1014954320 R rec a2a73290-7dc9-49b7-a280-149780668661 +2024-09-11 09:00:47.891571 2024-09-11 09:00:47.891576 aggnd 1015098495 R rec 7e326b64-e739-4732-95a6-7825f5b0cc08 +2024-09-11 09:00:47.946964 2024-09-11 09:00:47.94697 aggnd 1015101003 R rec d0f95b1d-87d4-44fa-9b9c-6b559c16ccfb +2024-09-11 09:00:48.022297 2024-09-11 09:00:48.022301 aggnd 101514859X R rec fbfba6d7-4246-45ec-9308-0ffad87aead9 +2024-09-11 09:00:48.089408 2024-09-11 09:00:48.089413 aggnd 1015165990 R rec a678f90c-2066-4e1e-aff1-564242df8536 +2024-09-11 09:00:48.144941 2024-09-11 09:00:48.144946 aggnd 1015193862 R rec d2da2087-e3b2-4d3e-b352-1aef7ece875e +2024-09-11 09:00:48.196203 2024-09-11 09:00:48.196209 aggnd 1015243762 R rec fae92a49-2897-4699-963c-178dee5f5f58 +2024-09-11 09:00:48.249485 2024-09-11 09:00:48.24949 aggnd 1015331386 R rec 6499bcd2-5c56-40e2-8be5-57b59b580256 +2024-09-11 09:00:48.310659 2024-09-11 09:00:48.310664 aggnd 1015348394 R rec cdaf2156-362a-4860-8037-be12cee11c96 +2024-09-11 09:00:48.364152 2024-09-11 09:00:48.364158 aggnd 1015354157 R rec e819edb1-0373-499b-8147-054b18b2238a +2024-09-11 09:00:48.433067 2024-09-11 09:00:48.433072 aggnd 1015371035 R rec cdeadfd7-cae0-4545-956a-dc9407dabdad +2024-09-11 09:00:48.492061 2024-09-11 09:00:48.492067 aggnd 1015412998 R rec 0d280178-42b6-4d40-a8c4-d565f1419492 +2024-09-11 09:00:48.558404 2024-09-11 09:00:48.55841 aggnd 1015428967 R rec 2544694c-7bee-4b84-a931-5858ec416a6c +2024-09-11 09:00:48.614065 2024-09-11 09:00:48.614069 aggnd 1015448186 R rec cf0fe409-2df4-490d-a429-1a5ea9f8150f +2024-09-11 09:00:48.683488 2024-09-11 09:00:48.683492 aggnd 1015448305 R rec acb8f37d-7f28-4e4d-b95f-e148604392eb +2024-09-11 09:00:48.738204 2024-09-11 09:00:48.738208 aggnd 1015457789 R rec cc5d26db-876a-4ad0-b62a-a775b2ebb8a6 +2024-09-11 09:00:48.806167 2024-09-11 09:00:48.806172 aggnd 1015645631 R rec 56ac703d-4e7c-49d6-83ef-c45e72b81b9d +2024-09-11 09:00:48.862052 2024-09-11 09:00:48.862058 aggnd 1015750427 R rec dc925821-03b8-48ea-88c0-a092b2cc5a04 +2024-09-11 09:00:48.917169 2024-09-11 09:00:48.917174 aggnd 1015752756 R rec e6d3e168-3933-40a6-a71a-639ec043516e +2024-09-11 09:00:48.968344 2024-09-11 09:00:48.968349 aggnd 1015778275 R rec b60825d1-60a8-4420-8144-8b1b2e0b9144 +2024-09-11 09:00:49.020038 2024-09-11 09:00:49.020043 aggnd 1015799485 R rec 36c1309d-1c3c-4493-9e97-be4de36e6ca9 +2024-09-11 09:00:49.078786 2024-09-11 09:00:49.078791 aggnd 1016006969 R rec 3e2baa3a-8c7e-4c00-8681-7011cf446bc3 +2024-09-11 09:00:49.134517 2024-09-11 09:00:49.134522 aggnd 1016159560 R rec c399e1f8-d03e-4185-85ee-d56eabfd166e +2024-09-11 09:00:49.186387 2024-09-11 09:00:49.186392 aggnd 1016626150 R rec 1d1de30f-6785-4d43-9604-3955de85db8c +2024-09-11 09:00:49.240848 2024-09-11 09:00:49.240855 aggnd 1016763387 R rec ff8c00a1-415c-493a-a9ad-a6eb53bfafbf +2024-09-11 09:00:49.307533 2024-09-11 09:00:49.307539 aggnd 1016951426 R rec b7e642be-dba0-4e53-af6a-337ed49b7157 +2024-09-11 09:00:49.359648 2024-09-11 09:00:49.359653 aggnd 1016975198 R rec 491e208f-0333-4d9f-9d1a-d339b515fe30 +2024-09-11 09:00:49.411229 2024-09-11 09:00:49.411234 aggnd 1017107246 R rec a568a8ba-22ee-4d68-a25d-686b7b8ee118 +2024-09-11 09:00:49.466579 2024-09-11 09:00:49.466584 aggnd 1017352712 R rec df16522c-878f-405b-97c3-0338a6cd27f0 +2024-09-11 09:00:49.534073 2024-09-11 09:00:49.534078 aggnd 1017628769 R rec 95bd5b26-f588-49d9-b793-ec1fa8f82ea0 +2024-09-11 09:00:49.586459 2024-09-11 09:00:49.586464 aggnd 1017668051 R rec 97d1341e-097f-4857-b7da-d21ba8164500 +2024-09-11 09:00:49.638923 2024-09-11 09:00:49.638928 aggnd 1017696241 R rec 3cd13427-ba2e-43d7-8c47-1a17cb20a2a1 +2024-09-11 09:00:49.690804 2024-09-11 09:00:49.690808 aggnd 1018180087 R rec ebba3570-e2e8-4b9b-ba8d-9f9661446b34 +2024-09-11 09:00:49.744514 2024-09-11 09:00:49.74452 aggnd 1018299807 R rec a8dc1d66-2377-4674-bff0-59c6fb731581 +2024-09-11 09:00:49.79657 2024-09-11 09:00:49.796575 aggnd 1018900772 R rec 9dad44af-4a00-4c0d-9a17-644b1bee1138 +2024-09-11 09:00:49.853795 2024-09-11 09:00:49.853801 aggnd 1019086750 R rec 8c0f341a-b114-428d-bfe3-1394f40d61bf +2024-09-11 09:00:49.931831 2024-09-11 09:00:49.931836 aggnd 1019500344 R rec 9e8bdc62-b868-45c3-9037-aed530f1bc22 +2024-09-11 09:00:49.989801 2024-09-11 09:00:49.989806 aggnd 1020150378 R rec 1e32368a-b063-4f1f-ba4a-a8f303685605 +2024-09-11 09:00:50.046845 2024-09-11 09:00:50.046851 aggnd 102047033X R rec 0040cef8-2feb-48ae-a36c-10e6470d105e +2024-09-11 09:00:50.101674 2024-09-11 09:00:50.101679 aggnd 1020473932 R rec 95cf66ab-8e6a-4235-b87a-e6e5504112b5 +2024-09-11 09:00:50.153657 2024-09-11 09:00:50.153661 aggnd 1020513020 R rec b2f9ddf9-0118-4774-abbd-5404311a511e +2024-09-11 09:00:50.233286 2024-09-11 09:00:50.233291 aggnd 1020751282 R rec d0dd71c7-f7d7-4dfe-b3b8-ec1d159d8b76 +2024-09-11 09:00:50.301937 2024-09-11 09:00:50.301942 aggnd 102248435 R rec 2248e0d2-bd9b-4c72-8155-420221887561 +2024-09-11 09:00:50.365861 2024-09-11 09:00:50.365866 aggnd 1023582090 R rec 6f193bee-c8b7-4100-93bc-255b542ee515 +2024-09-11 09:00:50.420275 2024-09-11 09:00:50.420281 aggnd 1023649187 R rec ee906fd0-5fee-4444-b9ef-2db9f1c6b3df +2024-09-11 09:00:50.476269 2024-09-11 09:00:50.476274 aggnd 102402868 R rec 7af3f0ab-692c-404b-a17a-82a29e4b3c16 +2024-09-11 09:00:50.529148 2024-09-11 09:00:50.529154 aggnd 102503214 R rec e151ffa3-6808-4b53-923b-3f188119693e +2024-09-11 09:00:50.582471 2024-09-11 09:00:50.582476 aggnd 1025074823 R rec bc816f2b-1568-430e-9997-4eba2f1c5279 +2024-09-11 09:00:50.633414 2024-09-11 09:00:50.633419 aggnd 1025297636 R rec eea67b5f-5d7c-4574-a358-98e2ccd79f45 +2024-09-11 09:00:50.683539 2024-09-11 09:00:50.683544 aggnd 1026199441 R rec 3cca28f0-31ed-45b9-971c-6f03e418b07d +2024-09-11 09:00:50.745233 2024-09-11 09:00:50.745238 aggnd 1026316790 R rec 6a960671-1dae-4787-b2e7-11a87a825e9a +2024-09-11 09:00:50.797387 2024-09-11 09:00:50.797393 aggnd 1026448301 R rec 2bf58e0b-46c9-4c49-af29-afaa0b8a62ed +2024-09-11 09:00:50.85879 2024-09-11 09:00:50.858795 aggnd 1027019080 R rec b586f27b-dc70-4939-a9f8-0d2415ad58ee +2024-09-11 09:00:50.921371 2024-09-11 09:00:50.921375 aggnd 1027019781 R rec 03a58f67-c9d9-4c86-a20c-fe234bc94ba1 +2024-09-11 09:00:50.990706 2024-09-11 09:00:50.990712 aggnd 1027170250 R rec 31d032d0-4cc7-45fd-b41d-c3576120a8da +2024-09-11 09:00:51.047045 2024-09-11 09:00:51.047051 aggnd 1027359981 R rec c8806dbe-99a9-4a2e-8749-d37236ca9fdf +2024-09-11 09:00:51.108833 2024-09-11 09:00:51.108839 aggnd 1027463770 R rec de1cfbde-238a-40d8-bbd0-4af18e34097f +2024-09-11 09:00:51.160275 2024-09-11 09:00:51.16028 aggnd 1027567835 R rec 98d6159c-3c98-4baf-8324-0087d723a76f +2024-09-11 09:00:51.21264 2024-09-11 09:00:51.212645 aggnd 1028398166 R rec 4d8714bb-d5c7-4891-a32f-ad7758d9ec5c +2024-09-11 09:00:51.266598 2024-09-11 09:00:51.266603 aggnd 1028665504 R rec 344e5cec-b5c8-4286-bf40-99fb87113bf5 +2024-09-11 09:00:51.323371 2024-09-11 09:00:51.323376 aggnd 102892113 R rec b21cbc52-7fc5-4178-813f-58cb3be921e9 +2024-09-11 09:00:51.378202 2024-09-11 09:00:51.378207 aggnd 1029917442 R rec 4d8f575e-62c1-4d98-94de-ef6e1bbba62e +2024-09-11 09:00:51.440677 2024-09-11 09:00:51.440682 aggnd 1030495416 R rec 353e65b3-039f-4b4a-a3e9-cc9b69371d8f +2024-09-11 09:00:51.546778 2024-09-11 09:00:51.546783 aggnd 1031215441 R rec 8bd81af7-0c2d-46cc-9f85-f2d36405ef09 +2024-09-11 09:00:51.601674 2024-09-11 09:00:51.601679 aggnd 103129928 R rec e608de01-66a8-443e-b3f6-6a57019a8cfe +2024-09-11 09:00:51.65925 2024-09-11 09:00:51.659255 aggnd 1031494286 R rec 329c9e6c-024e-4968-ab33-74ce27a4b610 +2024-09-11 09:00:51.720635 2024-09-11 09:00:51.72064 aggnd 103163357X R rec 7ed68666-3cd7-41ea-abc3-7a992bd9acd1 +2024-09-11 09:00:51.790654 2024-09-11 09:00:51.790659 aggnd 1032029374 R rec eeb1a241-27b0-451f-97a9-4525eb0e5c45 +2024-09-11 09:00:51.847767 2024-09-11 09:00:51.847773 aggnd 1032305649 R rec 2d7d5a24-7c55-4e5c-b635-44eb926bface +2024-09-11 09:00:51.910867 2024-09-11 09:00:51.910873 aggnd 1032456213 R rec 6c672929-cf64-4e23-965a-1a5965613817 +2024-09-11 09:00:51.973513 2024-09-11 09:00:51.973518 aggnd 1032675357 R rec 6a03ab5a-9228-4330-bb0a-133ba817d473 +2024-09-11 09:00:52.028236 2024-09-11 09:00:52.028241 aggnd 1033120790 R rec 6f64d4f7-4c34-4e67-b02f-7a375da09eba +2024-09-11 09:00:52.081776 2024-09-11 09:00:52.08178 aggnd 1033471542 R rec ccb38840-223f-4eb5-8c6d-f514468a28f9 +2024-09-11 09:00:52.129923 2024-09-11 09:00:52.129929 aggnd 1033570451 R rec 95406e92-3984-4b1f-8e8d-422cb77fb45d +2024-09-11 09:00:52.183477 2024-09-11 09:00:52.183482 aggnd 1034236164 R rec 67e18e22-cd88-468c-8f7f-5d1a8fc11b7e +2024-09-11 09:00:52.237267 2024-09-11 09:00:52.237272 aggnd 1034635476 R rec e92337a8-6b7c-4f83-8b27-a08df645a69f +2024-09-11 09:00:52.291264 2024-09-11 09:00:52.291268 aggnd 103473262 R rec 2cc1c4c7-1fb1-49c6-a039-6294f411bfa4 +2024-09-11 09:00:52.345238 2024-09-11 09:00:52.345243 aggnd 1035018888 R rec 9a28d4ed-cda1-464a-a786-fe0da2076c35 +2024-09-11 09:00:52.401068 2024-09-11 09:00:52.401072 aggnd 1035444666 R rec edb3953b-deb0-4ddb-b532-d7a00fdec4bf +2024-09-11 09:00:52.454457 2024-09-11 09:00:52.454462 aggnd 1035621460 R rec 75cd190a-0d55-4f1b-a6ef-ed7fa982cd5d +2024-09-11 09:00:52.502734 2024-09-11 09:00:52.502739 aggnd 1035656221 R rec 8da30d8a-d3da-4f7a-aff8-18f9f463ed56 +2024-09-11 09:00:52.558314 2024-09-11 09:00:52.558319 aggnd 1035688298 R rec d3013fa6-ff8d-4721-997d-97ec6369c64f +2024-09-11 09:00:52.611093 2024-09-11 09:00:52.611098 aggnd 1036111024 R rec d3d3b3a8-522e-4bad-90c7-8911b0db5931 +2024-09-11 09:00:52.662333 2024-09-11 09:00:52.662337 aggnd 103624163 R rec 4439117f-f051-489f-91cd-f90dddc9e193 +2024-09-11 09:00:52.718148 2024-09-11 09:00:52.718152 aggnd 1036550141 R rec cd5c1090-9b1c-4ad5-a7b9-0d3d83975aa9 +2024-09-11 09:00:52.771242 2024-09-11 09:00:52.771247 aggnd 1037547543 R rec 6fed2a92-d33b-4eb7-99ba-709f485faf92 +2024-09-11 09:00:52.834112 2024-09-11 09:00:52.834117 aggnd 1037748980 R rec 7e86db91-63a1-4920-93e2-71a6a4ef7697 +2024-09-11 09:00:52.889131 2024-09-11 09:00:52.889136 aggnd 1037788141 R rec 82c9419b-5e38-406b-92c4-b5c851cc5ad0 +2024-09-11 09:00:52.962922 2024-09-11 09:00:52.962927 aggnd 103807349 R rec c6d782b2-37fe-4a38-9f89-885d1904d851 +2024-09-11 09:00:53.021578 2024-09-11 09:00:53.021583 aggnd 103843914 R rec fd1a31f5-5680-4bda-ba49-cad32ed384b5 +2024-09-11 09:00:53.080515 2024-09-11 09:00:53.080521 aggnd 1038798124 R rec df29cf2a-8ae5-4c91-9011-1e41542f81d5 +2024-09-11 09:00:53.137526 2024-09-11 09:00:53.13753 aggnd 103899138 R rec 3e83e04b-2993-4a25-9328-8f89cc8e8657 +2024-09-11 09:00:53.193427 2024-09-11 09:00:53.193432 aggnd 104057386 R rec 80b5ea57-26ef-420f-83fa-936e72c0d1f0 +2024-09-11 09:00:53.247682 2024-09-11 09:00:53.247687 aggnd 1041364962 R rec febaf4c6-29d0-4042-9714-228d7fc14dac +2024-09-11 09:00:53.311785 2024-09-11 09:00:53.31179 aggnd 1041494114 R rec a8591323-fa4a-4bbc-8f9c-a06750ebf16d +2024-09-11 09:00:53.365307 2024-09-11 09:00:53.365312 aggnd 1041505701 R rec 158c9d09-878f-4103-b7e6-de558d0b5a3c +2024-09-11 09:00:53.417071 2024-09-11 09:00:53.417076 aggnd 1042050643 R rec 5033914d-eb24-4292-a077-d868d5fbfba9 +2024-09-11 09:00:53.469483 2024-09-11 09:00:53.469488 aggnd 104240636 R rec be683ce4-2f8c-4383-950f-afb5f81e6098 +2024-09-11 09:00:53.519371 2024-09-11 09:00:53.519376 aggnd 1043162917 R rec de939ac0-1a2e-4544-8653-2fe8cb7f737c +2024-09-11 09:00:53.578552 2024-09-11 09:00:53.578557 aggnd 1043761047 R rec 27139a82-0513-4d19-b681-4c75efdc2e95 +2024-09-11 09:00:53.631761 2024-09-11 09:00:53.631766 aggnd 1043881336 R rec 1efc5105-ccc2-4aa0-bbc7-e4de9d885bab +2024-09-11 09:00:53.684954 2024-09-11 09:00:53.684958 aggnd 1044044519 R rec 836658c2-804a-4cef-a64e-9887d1ac0fa0 +2024-09-11 09:00:53.74483 2024-09-11 09:00:53.744835 aggnd 1044246936 R rec e0543b59-1e60-454a-8ae5-484b8a00f225 +2024-09-11 09:00:53.799573 2024-09-11 09:00:53.799578 aggnd 1044369329 R rec 7efb3c6f-23b7-4ba8-81f4-26ff43263e3c +2024-09-11 09:00:53.850674 2024-09-11 09:00:53.850679 aggnd 1046083678 R rec 6b27bbc1-4dd4-4789-aa8c-396adcc8c7cf +2024-09-11 09:00:53.911775 2024-09-11 09:00:53.911781 aggnd 1046664522 R rec 548a0196-652f-4914-ba3e-a87b74b72e14 +2024-09-11 09:00:53.967675 2024-09-11 09:00:53.96768 aggnd 1047508257 R rec c3c8cc1f-87fb-4c71-9c0b-b1d32dcf6635 +2024-09-11 09:00:54.030839 2024-09-11 09:00:54.030846 aggnd 1047811014 R rec df09402f-e5e9-4f87-867d-ae0bdd471bad +2024-09-11 09:00:54.096922 2024-09-11 09:00:54.096928 aggnd 1048228142 R rec 44408831-e3a4-429f-8a1b-fdc58b137985 +2024-09-11 09:00:54.156261 2024-09-11 09:00:54.156265 aggnd 1048657442 R rec e3dab198-0d3b-4204-924a-cf1eda862a01 +2024-09-11 09:00:54.210813 2024-09-11 09:00:54.210819 aggnd 104999227X R rec 546ada39-9604-4723-be96-e41c7abd63a6 +2024-09-11 09:00:54.269698 2024-09-11 09:00:54.269703 aggnd 1050328639 R rec 44cfec83-d280-47b7-ba2c-a078bcee1da4 +2024-09-11 09:00:54.334749 2024-09-11 09:00:54.334755 aggnd 1050869354 R rec 2ae78ea0-be3e-4623-b431-bfdee909b426 +2024-09-11 09:00:54.388702 2024-09-11 09:00:54.388706 aggnd 1051111412 R rec ca357839-9283-44d0-9641-add70a6fb5b1 +2024-09-11 09:00:54.442687 2024-09-11 09:00:54.442692 aggnd 1051286786 R rec da080cc9-8ca8-41c7-9f2c-6d562196228b +2024-09-11 09:00:54.502094 2024-09-11 09:00:54.502099 aggnd 1051412552 R rec 49dce49f-243d-46b2-8dbd-187bcd2a5dbb +2024-09-11 09:00:54.571537 2024-09-11 09:00:54.571542 aggnd 1051657490 R rec 4b9b67bc-9024-4c18-9927-4890e9563294 +2024-09-11 09:00:54.623616 2024-09-11 09:00:54.623621 aggnd 1051682878 R rec 87f1a168-2d4f-4f83-9961-4acda629aba8 +2024-09-11 09:00:54.680419 2024-09-11 09:00:54.680424 aggnd 1051697891 R rec 732631ea-79d3-4ebf-9c2f-d1a9f6745adc +2024-09-11 09:00:54.74477 2024-09-11 09:00:54.744776 aggnd 1051918510 R rec 08c8ca13-be6d-4863-971e-0df4b992fdb5 +2024-09-11 09:00:54.800786 2024-09-11 09:00:54.80079 aggnd 1052619274 R rec dfdca05e-307b-4aa7-a4da-c4b385eafaaa +2024-09-11 09:00:54.853217 2024-09-11 09:00:54.853222 aggnd 1052636209 R rec 34cac94b-9980-4205-a543-4881825c9dd3 +2024-09-11 09:00:54.907297 2024-09-11 09:00:54.907301 aggnd 1053241011 R rec c5db405e-2490-4e3a-8c65-3fc6d1053ac2 +2024-09-11 09:00:54.965565 2024-09-11 09:00:54.965571 aggnd 1054143951 R rec a12a5312-47a0-4d76-b586-8546f1fbc14d +2024-09-11 09:00:55.027649 2024-09-11 09:00:55.027655 aggnd 1055067094 R rec eda18028-4180-4b16-bb87-b827d0c48fca +2024-09-11 09:00:55.082217 2024-09-11 09:00:55.082222 aggnd 1055101608 R rec c4f95e23-70b8-418e-8700-6746ebe1ab69 +2024-09-11 09:00:55.136488 2024-09-11 09:00:55.136493 aggnd 1055200525 R rec 3f682f26-f460-4c43-839c-51293f5184f6 +2024-09-11 09:00:55.205565 2024-09-11 09:00:55.20557 aggnd 1055211292 R rec 9e613e78-ddb4-4882-9abd-0d8b0a917ce0 +2024-09-11 09:00:55.258308 2024-09-11 09:00:55.258313 aggnd 1055348328 R rec 163a54af-3d24-4721-8204-8e51675c206f +2024-09-11 09:00:55.31892 2024-09-11 09:00:55.318925 aggnd 1055490760 R rec 1fad45fe-52af-43d4-8ff0-10ab8ca8c3dc +2024-09-11 09:00:55.381904 2024-09-11 09:00:55.38191 aggnd 105550835X R rec 4b10455a-9ef6-44e3-8562-4c6cc8daa739 +2024-09-11 09:00:55.43601 2024-09-11 09:00:55.436015 aggnd 1055540210 R rec 5a4be8b8-1a09-41a1-846f-05d3fbdf4f83 +2024-09-11 09:00:55.493272 2024-09-11 09:00:55.493278 aggnd 1055644334 R rec c2720a39-3cb3-4a36-86bd-3eed41dcc124 +2024-09-11 09:00:55.571175 2024-09-11 09:00:55.57118 aggnd 1055753001 R rec f4c9086b-a72d-4d9d-a0cc-c131ded988eb +2024-09-11 09:00:55.643979 2024-09-11 09:00:55.643985 aggnd 1055794662 R rec 1e10bf21-1b65-46d7-ba8c-a61ba94007a2 +2024-09-11 09:00:55.714007 2024-09-11 09:00:55.714013 aggnd 1055795316 R rec d00b3bf8-a119-4daf-8d80-06938e1f1d46 +2024-09-11 09:00:55.770695 2024-09-11 09:00:55.7707 aggnd 105597377X R rec 88b1cfe5-7854-4ef0-a7bf-348803eeaa3f +2024-09-11 09:00:55.831733 2024-09-11 09:00:55.831738 aggnd 1056074779 R rec 658c596a-f1e6-4b4a-8798-002533dba0a5 +2024-09-11 09:00:55.892617 2024-09-11 09:00:55.892621 aggnd 1056091770 R rec 534c61d4-345b-419a-9530-b02ebfb2a630 +2024-09-11 09:00:55.948077 2024-09-11 09:00:55.948082 aggnd 1056123087 R rec 4d2bdf86-4454-4d99-986f-f4b5dac8d715 +2024-09-11 09:00:56.003729 2024-09-11 09:00:56.003735 aggnd 1056148799 R rec 2fb9a304-3642-42a0-8ffd-bb07c241f713 +2024-09-11 09:00:56.070033 2024-09-11 09:00:56.070038 aggnd 1056159278 R rec 2cb065af-81ed-40dc-b2c2-e71c82ca14f0 +2024-09-11 09:00:56.129633 2024-09-11 09:00:56.129638 aggnd 1056220570 R rec 0b487ee1-8e6e-4b79-8ddc-84b0be5cce1b +2024-09-11 09:00:56.186127 2024-09-11 09:00:56.186131 aggnd 1056241462 R rec 5736ef44-3de7-48a2-ac56-900b51e1dd57 +2024-09-11 09:00:56.249543 2024-09-11 09:00:56.249549 aggnd 1056400331 R rec 0afb7d12-79d8-4e34-8947-eb2ce273c916 +2024-09-11 09:00:56.306763 2024-09-11 09:00:56.306769 aggnd 1056497572 R rec 4e541a32-8713-4e5b-9050-790167c86af2 +2024-09-11 09:00:56.369745 2024-09-11 09:00:56.36975 aggnd 1056601809 R rec 5a3ca7f2-f516-4d57-a110-50ca08926be9 +2024-09-11 09:00:56.429693 2024-09-11 09:00:56.429699 aggnd 1056604328 R rec 554ff2b3-4219-4c4c-bd63-e6854edefd3b +2024-09-11 09:00:56.492236 2024-09-11 09:00:56.49224 aggnd 1056646438 R rec 88a808c7-ba6f-4109-896d-d0ca3cfa3618 +2024-09-11 09:00:56.554428 2024-09-11 09:00:56.554433 aggnd 1056682051 R rec 11c227c5-e56b-49c2-9bed-39b728ee629b +2024-09-11 09:00:56.610663 2024-09-11 09:00:56.610667 aggnd 1057324841 R rec cf80520c-fea3-49b2-bd8a-b832af8c6933 +2024-09-11 09:00:56.670724 2024-09-11 09:00:56.67073 aggnd 1057520837 R rec eaf77720-0721-4b85-a3ad-cd2099398130 +2024-09-11 09:00:56.74447 2024-09-11 09:00:56.744475 aggnd 1057605336 R rec 5dcb36de-351d-4779-9a4d-b9e1a75f7407 +2024-09-11 09:00:56.811323 2024-09-11 09:00:56.811329 aggnd 1057630616 R rec 34225aad-df2a-470f-bd48-377bf3cd188c +2024-09-11 09:00:56.878448 2024-09-11 09:00:56.878454 aggnd 1058848518 R rec f11d57c2-a5b0-4b14-b4d3-24d0da10313f +2024-09-11 09:00:56.935544 2024-09-11 09:00:56.93555 aggnd 1059467119 R rec 54b2c60c-a718-4f5e-8319-5e95c2d76093 +2024-09-11 09:00:56.995558 2024-09-11 09:00:56.995563 aggnd 1060270773 R rec e12a1767-a4b7-4efa-89ce-951487eab7ca +2024-09-11 09:00:57.059761 2024-09-11 09:00:57.059766 aggnd 1060675595 R rec fe48177e-0d53-48ed-8091-7b1beab4b5b3 +2024-09-11 09:00:57.115089 2024-09-11 09:00:57.115094 aggnd 106068375X R rec a740e21c-6bdb-4cd8-bddc-6955c9508057 +2024-09-11 09:00:57.169823 2024-09-11 09:00:57.169827 aggnd 1060757729 R rec d78443f8-1080-48a8-a03a-f4ce3aa335dc +2024-09-11 09:00:57.221066 2024-09-11 09:00:57.221072 aggnd 1061268225 R rec 86105fe4-8bf9-450b-a456-83027f3bc5ef +2024-09-11 09:00:57.277613 2024-09-11 09:00:57.277617 aggnd 1061330117 R rec 03274ae2-1ce1-4ac5-8340-883a6051462e +2024-09-11 09:00:57.329116 2024-09-11 09:00:57.329121 aggnd 106136769X R rec 98b57865-9a68-4a0e-8d32-525b2d47bac8 +2024-09-11 09:00:57.387641 2024-09-11 09:00:57.387646 aggnd 1061395804 R rec 2b8a90ca-224d-41ba-b002-e2bcb0b117aa +2024-09-11 09:00:57.440635 2024-09-11 09:00:57.44064 aggnd 1061433706 R rec 06001689-7cd3-4300-995e-8b707573d086 +2024-09-11 09:00:57.538491 2024-09-11 09:00:57.538496 aggnd 1061583368 R rec c7cda651-f22d-4462-b3c0-3e5f276c5c04 +2024-09-11 09:00:57.588715 2024-09-11 09:00:57.58872 aggnd 1061592588 R rec faa910ac-731c-46d9-923c-2db1124fca66 +2024-09-11 09:00:57.645195 2024-09-11 09:00:57.645201 aggnd 1061744094 R rec 6cbdcc81-da00-46cf-9f3e-571b65d5efbb +2024-09-11 09:00:57.70498 2024-09-11 09:00:57.704985 aggnd 1061835065 R rec 206e195f-b971-451a-94c2-dd428c486059 +2024-09-11 09:00:57.763562 2024-09-11 09:00:57.763568 aggnd 1061837513 R rec 9d048530-ad10-4117-ba8f-a9504f072abd +2024-09-11 09:00:57.819396 2024-09-11 09:00:57.8194 aggnd 1061999920 R rec 53b6e184-e598-4e30-baae-dceb7c612076 +2024-09-11 09:00:57.87293 2024-09-11 09:00:57.872935 aggnd 1062371135 R rec 0e53564f-9817-4ff9-99aa-db60ad23c020 +2024-09-11 09:00:57.940019 2024-09-11 09:00:57.940024 aggnd 106243756X R rec 6f30d13c-4b17-49e4-9c4f-16da7c042b52 +2024-09-11 09:00:57.995015 2024-09-11 09:00:57.995021 aggnd 1062692519 R rec e76374d3-b5ec-4870-afca-b7e5b1dcc885 +2024-09-11 09:00:58.056269 2024-09-11 09:00:58.056274 aggnd 1063310490 R rec 09108cd9-5f3c-47a1-9a5c-6bf183719972 +2024-09-11 09:00:58.113114 2024-09-11 09:00:58.11312 aggnd 1063319633 R rec 7da40eb8-df07-45b0-bae7-5f27a2d3d1f3 +2024-09-11 09:00:58.168181 2024-09-11 09:00:58.168186 aggnd 1063814340 R rec 19581be3-2fd7-4f71-942b-617ca44f5de4 +2024-09-11 09:00:58.228516 2024-09-11 09:00:58.228522 aggnd 1064701922 R rec f6023dd3-538b-406b-8393-d6e7f432598e +2024-09-11 09:00:58.292184 2024-09-11 09:00:58.292189 aggnd 1064724876 R rec 190ecec6-68ab-4365-9adb-c112d1aed1dc +2024-09-11 09:00:58.346765 2024-09-11 09:00:58.34677 aggnd 1064912958 R rec e8833a95-7ab4-42ed-8ff2-6e7e93a5b9b3 +2024-09-11 09:00:58.399475 2024-09-11 09:00:58.399479 aggnd 1065743769 R rec 25a5fc79-819c-4f2e-9216-01f28cda46c6 +2024-09-11 09:00:58.479266 2024-09-11 09:00:58.479271 aggnd 1065866356 R rec a98db456-00a4-4027-80ab-92fa57e42762 +2024-09-11 09:00:58.532588 2024-09-11 09:00:58.532592 aggnd 1067106146 R rec 19407b6f-7b6a-4e46-9a17-6d2e2264489a +2024-09-11 09:00:58.584317 2024-09-11 09:00:58.584322 aggnd 1067168370 R rec a7aad836-7cb7-41e0-be9e-2b4a1e750090 +2024-09-11 09:00:58.636991 2024-09-11 09:00:58.636996 aggnd 1067217495 R rec b0cb6c66-f299-4559-bad1-28464f6d0a7b +2024-09-11 09:00:58.691971 2024-09-11 09:00:58.691976 aggnd 1067908366 R rec ce90b1af-9f2f-4a0e-b4dd-ea0802ce4b83 +2024-09-11 09:00:58.74464 2024-09-11 09:00:58.744644 aggnd 1067912916 R rec 5b4123b2-37f1-4b20-9151-44891af0ee41 +2024-09-11 09:00:58.804132 2024-09-11 09:00:58.804137 aggnd 1068089962 R rec 972b9823-a4e4-4dcb-a91f-398f1b7e26d3 +2024-09-11 09:00:58.85969 2024-09-11 09:00:58.859695 aggnd 1071439871 R rec aa7cb36c-4a82-4399-86b4-a5439c348f15 +2024-09-11 09:00:58.92315 2024-09-11 09:00:58.92316 aggnd 1072585936 R rec 28ee3478-d689-4918-9fb0-e94354c316e2 +2024-09-11 09:00:58.981103 2024-09-11 09:00:58.981109 aggnd 107289806 R rec d6a7ab7d-fd06-4ecb-a7ab-36f5351c7659 +2024-09-11 09:00:59.038204 2024-09-11 09:00:59.03821 aggnd 1072904977 R rec 6e98d38a-fad1-4586-8411-15dc6ec60072 +2024-09-11 09:00:59.100163 2024-09-11 09:00:59.100168 aggnd 1072916436 R rec de8fff69-a880-4474-a6a5-4049f74e91f0 +2024-09-11 09:00:59.161785 2024-09-11 09:00:59.161791 aggnd 1072932296 R rec 9c69a35f-46c7-4254-8d89-fc6f98395f96 +2024-09-11 09:00:59.219381 2024-09-11 09:00:59.219386 aggnd 1072961296 R rec 569c7991-d64f-4d7e-901d-90f17d38b0cc +2024-09-11 09:00:59.273905 2024-09-11 09:00:59.273909 aggnd 1073022544 R rec 2c73a87e-126d-4f32-9eee-36a99d400974 +2024-09-11 09:00:59.338183 2024-09-11 09:00:59.338189 aggnd 1073026825 R rec 2342916b-60a5-4404-b2f4-28e59a153faa +2024-09-11 09:00:59.403603 2024-09-11 09:00:59.403607 aggnd 1073045927 R rec e7e9103d-9e6e-4aa8-8ff8-9e419be646d6 +2024-09-11 09:00:59.456597 2024-09-11 09:00:59.456601 aggnd 1073087123 R rec 389ef83f-635f-4eb9-acad-1b1bfa52f1b8 +2024-09-11 09:00:59.508542 2024-09-11 09:00:59.508546 aggnd 107371876X R rec 7e337dc5-174d-44cd-8387-c3abacae173e +2024-09-11 09:00:59.560319 2024-09-11 09:00:59.560323 aggnd 107441148X R rec a2eea3d9-8f98-40a7-9dc7-a08b2bf6100d +2024-09-11 09:00:59.618 2024-09-11 09:00:59.618005 aggnd 107495839X R rec e1596ac9-38dd-4b6f-b294-301e4c5c16c4 +2024-09-11 09:00:59.671035 2024-09-11 09:00:59.67104 aggnd 1076838170 R rec bc232f86-7a06-46d0-b09f-d506d1f93b5e +2024-09-11 09:00:59.719522 2024-09-11 09:00:59.719527 aggnd 1076933726 R rec d8da83d3-748f-4a44-b3ec-ef02d967e7e7 +2024-09-11 09:00:59.77381 2024-09-11 09:00:59.773814 aggnd 1077345259 R rec db3a00f7-3369-4f9a-97b7-d24b7e409fd3 +2024-09-11 09:00:59.82766 2024-09-11 09:00:59.827666 aggnd 107738338X R rec 8a816ba6-7d83-4adb-817d-d6ac0ef539ef +2024-09-11 09:00:59.891828 2024-09-11 09:00:59.891832 aggnd 1077501706 R rec 96984d4a-775d-4627-8d0c-13ba138da52b +2024-09-11 09:00:59.948932 2024-09-11 09:00:59.948937 aggnd 1077608101 R rec 45e01ef4-b010-44e3-aadd-3436dbe49e01 +2024-09-11 09:01:00.005553 2024-09-11 09:01:00.005557 aggnd 1077612869 R rec 2a28216d-b69a-4cd3-9280-09aeb78dc0fd +2024-09-11 09:01:00.064256 2024-09-11 09:01:00.064261 aggnd 1077631081 R rec b33ee589-7e75-41a6-a066-a774cc5514d8 +2024-09-11 09:01:00.125148 2024-09-11 09:01:00.125153 aggnd 1077666799 R rec 5dc98cbd-9f21-4e0e-8e16-45a1024fe677 +2024-09-11 09:01:00.195385 2024-09-11 09:01:00.19539 aggnd 1077833237 R rec b8a05cc9-9c48-4272-adcd-8a402b2e7c62 +2024-09-11 09:01:00.246578 2024-09-11 09:01:00.246583 aggnd 1077873468 R rec 3519e451-3863-4e7e-90f0-3c526a5d9bf3 +2024-09-11 09:01:00.30309 2024-09-11 09:01:00.303096 aggnd 1077979355 R rec 9c55d6e3-8339-4a73-b023-37e0150fd920 +2024-09-11 09:01:00.352475 2024-09-11 09:01:00.352481 aggnd 1078040133 R rec 2bf38f09-841d-4822-95d9-c910deb3ca9a +2024-09-11 09:01:00.405811 2024-09-11 09:01:00.405816 aggnd 107808355X R rec a51e59fe-d793-440f-9f5b-f734db4259cd +2024-09-11 09:01:00.468231 2024-09-11 09:01:00.468237 aggnd 107817864X R rec 75e064ba-2fcd-4e80-b863-91c4a4089bc5 +2024-09-11 09:01:00.551513 2024-09-11 09:01:00.551517 aggnd 1078249024 R rec a0456254-a791-473f-b743-6593c93c68f1 +2024-09-11 09:01:00.604475 2024-09-11 09:01:00.60448 aggnd 1078758360 R rec 80d73ccb-26bc-4fab-a521-1c8a99bc6770 +2024-09-11 09:01:00.654838 2024-09-11 09:01:00.654843 aggnd 107916894 R rec 9eccd8b4-64fd-463b-8cb3-44daec331442 +2024-09-11 09:01:00.708471 2024-09-11 09:01:00.708477 aggnd 1079291768 R rec 26846110-60da-4a10-a988-911e50889037 +2024-09-11 09:01:00.761189 2024-09-11 09:01:00.761194 aggnd 1079304231 R rec c9448017-cb16-4801-be3f-0c7205883a93 +2024-09-11 09:01:00.825582 2024-09-11 09:01:00.825587 aggnd 1079330836 R rec aa9509bf-dae8-45d3-90af-ebd31259e5da +2024-09-11 09:01:00.891492 2024-09-11 09:01:00.891496 aggnd 1079330844 R rec a152be2d-7301-4381-a3e2-3229a7372137 +2024-09-11 09:01:00.945715 2024-09-11 09:01:00.94572 aggnd 1079390413 R rec d44a4702-cc91-428e-a201-267b7637e536 +2024-09-11 09:01:01.001094 2024-09-11 09:01:01.001099 aggnd 1079392009 R rec fa69a29d-c396-4cbf-83bd-2e9b87da6007 +2024-09-11 09:01:01.065941 2024-09-11 09:01:01.065946 aggnd 1079423273 R rec 3ab0c731-56ce-4920-bde8-a7b3075acb9a +2024-09-11 09:01:01.125228 2024-09-11 09:01:01.125233 aggnd 1079471162 R rec 181472a8-9ee0-46d4-8410-edc30548398a +2024-09-11 09:01:01.190345 2024-09-11 09:01:01.19035 aggnd 1079507582 R rec d01cd244-38af-431d-a751-74530d56d2ec +2024-09-11 09:01:01.246813 2024-09-11 09:01:01.246818 aggnd 107956215X R rec b5add006-da6b-424e-8435-ed4e01c2dd40 +2024-09-11 09:01:01.301146 2024-09-11 09:01:01.301151 aggnd 1079687157 R rec 2304af48-650f-4cca-967f-22d753fbcd09 +2024-09-11 09:01:01.359725 2024-09-11 09:01:01.359731 aggnd 1079732772 R rec ccf72f25-d9d3-4129-9b6f-b1d2496d62eb +2024-09-11 09:01:01.416688 2024-09-11 09:01:01.416693 aggnd 1079981993 R rec 7e9bb389-45e5-458f-9ba1-8f270aaaabda +2024-09-11 09:01:01.47291 2024-09-11 09:01:01.472914 aggnd 1079982175 R rec a4551a04-e80d-438e-b7ab-209d19027c9b +2024-09-11 09:01:01.543313 2024-09-11 09:01:01.543319 aggnd 1080093648 R rec 070dfd84-b344-4467-a5c2-c596c50f9aab +2024-09-11 09:01:01.602702 2024-09-11 09:01:01.602708 aggnd 1080488448 R rec de9f37f3-df81-4097-9978-81ebdb7f90d4 +2024-09-11 09:01:01.657148 2024-09-11 09:01:01.657152 aggnd 1080490868 R rec f97bbb40-79ef-4185-b27d-1cc77a656182 +2024-09-11 09:01:01.717102 2024-09-11 09:01:01.717107 aggnd 108049450 R rec d9724f83-0068-45d5-b4e6-93e6d403aa5a +2024-09-11 09:01:01.783083 2024-09-11 09:01:01.783088 aggnd 1080869417 R rec 05d3b86c-2643-4238-bec0-2b27cf1fcfde +2024-09-11 09:01:01.835908 2024-09-11 09:01:01.835913 aggnd 1081028270 R rec e8c2cd0d-46e7-4f07-838d-4bd852e35714 +2024-09-11 09:01:01.8857 2024-09-11 09:01:01.885705 aggnd 1081399880 R rec d9803c48-cae6-4925-b89f-5fce500b0499 +2024-09-11 09:01:01.943912 2024-09-11 09:01:01.943916 aggnd 1081429097 R rec 215196a7-306f-40ba-b97f-7edcfb074b04 +2024-09-11 09:01:02.107888 2024-09-11 09:01:02.107894 aggnd 1081450452 R rec 4bedec77-8b78-414d-9d64-9d0dc1125d24 +2024-09-11 09:01:02.228164 2024-09-11 09:01:02.228169 aggnd 1081489529 R rec 449baf7f-5c36-4b04-a88c-63beb54d701c +2024-09-11 09:01:02.282261 2024-09-11 09:01:02.282266 aggnd 1081556625 R rec 3eedd94d-5223-4da2-be88-3f334ad582cb +2024-09-11 09:01:02.337987 2024-09-11 09:01:02.337992 aggnd 1081654597 R rec 3a440253-bf19-4e67-89ec-adbb077e4e13 +2024-09-11 09:01:02.390577 2024-09-11 09:01:02.390582 aggnd 1081687118 R rec d36af6ca-ac81-491f-a0e8-21d7fb60ca80 +2024-09-11 09:01:02.442146 2024-09-11 09:01:02.442151 aggnd 1081988355 R rec 6111eb6d-6bee-450f-9c96-2a8dd67f4c81 +2024-09-11 09:01:02.496424 2024-09-11 09:01:02.496429 aggnd 1082002127 R rec 56db8a84-b061-46ba-875a-9ab64f21b3e8 +2024-09-11 09:01:02.552593 2024-09-11 09:01:02.552599 aggnd 1082006580 R rec 41914141-df55-4f51-955f-6d80623d3410 +2024-09-11 09:01:02.614529 2024-09-11 09:01:02.614535 aggnd 1082007447 R rec fb092839-dc83-4584-a40e-954070711a5b +2024-09-11 09:01:02.675575 2024-09-11 09:01:02.675581 aggnd 108231563X R rec 38c1ed2c-e64c-412b-a219-8dc905a95e0d +2024-09-11 09:01:02.728725 2024-09-11 09:01:02.72873 aggnd 1082319058 R rec 088ec3ba-6569-42fd-935a-f39ccb2e0b34 +2024-09-11 09:01:02.783017 2024-09-11 09:01:02.783022 aggnd 1082383880 R rec 0c89ec88-2d47-4299-ad60-b9ec14328794 +2024-09-11 09:01:02.835047 2024-09-11 09:01:02.835051 aggnd 1082387401 R rec 4b839600-3fb7-4608-841f-e2f94c83b954 +2024-09-11 09:01:02.892591 2024-09-11 09:01:02.892596 aggnd 1082523097 R rec 18a2886b-7c70-41cd-ab02-a2f20dfadc04 +2024-09-11 09:01:02.958402 2024-09-11 09:01:02.958407 aggnd 1084363704 R rec a8a4b36d-d632-4752-8cc4-c2cec2cc365e +2024-09-11 09:01:03.011296 2024-09-11 09:01:03.011301 aggnd 108451836 R rec 6455bce8-fef4-4c64-8785-38d05efc9475 +2024-09-11 09:01:03.070775 2024-09-11 09:01:03.07078 aggnd 1085208036 R rec 16e61713-397e-4a0d-a702-a4cdef622ce4 +2024-09-11 09:01:03.1267 2024-09-11 09:01:03.126705 aggnd 1085704564 R rec 9b94eeb3-591c-4c64-a8ff-d912836a4f9b +2024-09-11 09:01:03.189523 2024-09-11 09:01:03.189528 aggnd 1085733416 R rec 7399647b-829f-4b05-ab2f-17c32aa8c832 +2024-09-11 09:01:03.245105 2024-09-11 09:01:03.24511 aggnd 1085772225 R rec ce35808b-3f07-4b13-9a93-c78bc92a66a6 +2024-09-11 09:01:03.301561 2024-09-11 09:01:03.301566 aggnd 1085773566 R rec fcf63a52-7639-4df3-b4fc-a2c7f23941c5 +2024-09-11 09:01:03.365842 2024-09-11 09:01:03.365847 aggnd 1085805433 R rec d703472f-5d8d-43db-b466-88603fb8eca6 +2024-09-11 09:01:03.416673 2024-09-11 09:01:03.416679 aggnd 1085806677 R rec 9adccced-d380-44f7-9d76-8fd8fffb9e09 +2024-09-11 09:01:03.472617 2024-09-11 09:01:03.472623 aggnd 1085808254 R rec 14ca9480-1b35-4956-9a4e-d71759b311bc +2024-09-11 09:01:03.526897 2024-09-11 09:01:03.526902 aggnd 1085822613 R rec 03885d5a-ddaf-4b6e-bc9a-a91670a74f19 +2024-09-11 09:01:03.578595 2024-09-11 09:01:03.5786 aggnd 1085824861 R rec 13dc585e-a7ec-4d4e-bdf5-31a95686f453 +2024-09-11 09:01:03.63623 2024-09-11 09:01:03.636235 aggnd 1085825302 R rec 6581123a-97df-43f2-b6e0-fd92e1f6fe03 +2024-09-11 09:01:03.695541 2024-09-11 09:01:03.695546 aggnd 1085827739 R rec d753faf8-f7b9-4055-9b9d-f098b463d8a4 +2024-09-11 09:01:03.752473 2024-09-11 09:01:03.752478 aggnd 1085836894 R rec 7148917d-4e9d-4966-aadd-0a5dcdf22bbb +2024-09-11 09:01:03.807356 2024-09-11 09:01:03.807361 aggnd 108585440X R rec 9fc41ba6-9a50-4519-960b-f3abe84b753a +2024-09-11 09:01:03.860376 2024-09-11 09:01:03.860382 aggnd 1085905519 R rec cf7e0e41-5107-46fa-9d90-d9c9db43a06b +2024-09-11 09:01:03.916294 2024-09-11 09:01:03.916298 aggnd 1085909603 R rec 4d730fa9-e229-4e2e-8d67-a637b50e3aa7 +2024-09-11 09:01:03.968537 2024-09-11 09:01:03.968542 aggnd 1085909808 R rec bde20398-ff41-4e1c-94ca-2c1ef4c9cf49 +2024-09-11 09:01:04.020004 2024-09-11 09:01:04.020009 aggnd 1085934519 R rec 6764f897-b4ba-4f6d-9d16-3cb49b7d2024 +2024-09-11 09:01:04.085947 2024-09-11 09:01:04.085952 aggnd 1085989879 R rec 785a7909-7707-42f5-92a6-3018bcce2d59 +2024-09-11 09:01:04.157925 2024-09-11 09:01:04.15793 aggnd 1086006615 R rec e7607e52-fdb8-40e7-aae7-74326ce01d89 +2024-09-11 09:01:04.215105 2024-09-11 09:01:04.21511 aggnd 1086024044 R rec 25ec7a0a-2da6-4fd1-86f4-a1fd7c4b6db4 +2024-09-11 09:01:04.268488 2024-09-11 09:01:04.268493 aggnd 1086025474 R rec 70245061-08c6-4fb1-9865-72ac6adbc4fd +2024-09-11 09:01:04.323877 2024-09-11 09:01:04.323883 aggnd 1086047532 R rec 3ea4baa7-49e8-4113-ade4-7c55420b7ed6 +2024-09-11 09:01:04.385981 2024-09-11 09:01:04.385986 aggnd 1086062159 R rec f04b487b-275e-4380-9409-95c82e04937d +2024-09-11 09:01:04.439291 2024-09-11 09:01:04.439296 aggnd 1086067371 R rec d92e7538-28f8-490e-930f-121615e79476 +2024-09-11 09:01:04.50124 2024-09-11 09:01:04.501245 aggnd 1086070178 R rec 6201e5ad-5dcc-4447-9360-de32166a57ac +2024-09-11 09:01:04.56366 2024-09-11 09:01:04.563665 aggnd 1086074602 R rec 73c14188-2030-43f9-aeca-118060c391c8 +2024-09-11 09:01:04.620983 2024-09-11 09:01:04.620988 aggnd 1086075218 R rec 4b68e94f-4a2c-430c-8f8e-5183717d2758 +2024-09-11 09:01:04.675951 2024-09-11 09:01:04.675956 aggnd 1086080513 R rec bf22c977-f677-4aba-9f1d-4ca8818eeecc +2024-09-11 09:01:04.734512 2024-09-11 09:01:04.734571 aggnd 1086080750 R rec 402fc54b-2188-4308-8d0a-527ce4a87fbe +2024-09-11 09:01:04.802692 2024-09-11 09:01:04.802697 aggnd 1086082427 R rec b750d663-c298-438c-a74c-f1d833b94b30 +2024-09-11 09:01:04.858842 2024-09-11 09:01:04.858848 aggnd 1086092775 R rec 6e92165d-29b9-4d54-aa01-f997b1949247 +2024-09-11 09:01:04.923942 2024-09-11 09:01:04.923947 aggnd 1086143264 R rec 117b0ece-1855-46ba-94ab-e8db37f32ae8 +2024-09-11 09:01:04.976424 2024-09-11 09:01:04.97643 aggnd 1086144686 R rec 899c5bf4-546d-4c6e-b790-1c7234795d46 +2024-09-11 09:01:05.040152 2024-09-11 09:01:05.040157 aggnd 1086144902 R rec e3f46837-7cce-4c9a-bb83-44a7e0b9edaf +2024-09-11 09:01:05.100976 2024-09-11 09:01:05.100982 aggnd 1086182871 R rec 066d4ec2-4133-46ae-93fa-f2f4bf0e8704 +2024-09-11 09:01:05.175484 2024-09-11 09:01:05.17549 aggnd 1086186427 R rec 1ee5d2e0-dd19-4830-973a-4ecd38786bad +2024-09-11 09:01:05.231388 2024-09-11 09:01:05.231393 aggnd 1086202244 R rec a2db7d30-568b-4c1a-9d7a-1562c520a6cc +2024-09-11 09:01:05.286621 2024-09-11 09:01:05.286626 aggnd 1086206991 R rec 0c79c7d3-6df9-4fe4-a953-e1d3f7809934 +2024-09-11 09:01:05.343951 2024-09-11 09:01:05.343956 aggnd 1086215982 R rec aeb3fcbe-8ec0-4763-bf0f-9736fa84491e +2024-09-11 09:01:05.405687 2024-09-11 09:01:05.405691 aggnd 1086230493 R rec a1cc5743-3bb0-4d2d-a66a-ee1f08f0e18b +2024-09-11 09:01:05.462594 2024-09-11 09:01:05.462599 aggnd 1086235894 R rec 3fe828a8-46e8-496a-9abd-d14baead835b +2024-09-11 09:01:05.527545 2024-09-11 09:01:05.52755 aggnd 1086271440 R rec e3ae843c-78df-43d8-94b5-671fde121f55 +2024-09-11 09:01:05.583376 2024-09-11 09:01:05.58338 aggnd 1086272587 R rec 34edc84e-12f5-4e41-a819-386a2edc49a8 +2024-09-11 09:01:05.650068 2024-09-11 09:01:05.650073 aggnd 1086274636 R rec c04b149d-8e32-46ff-b648-cb87e96f0984 +2024-09-11 09:01:05.703653 2024-09-11 09:01:05.703658 aggnd 1086281020 R rec 778f7c72-d7fd-40e1-8256-2b4c8f8715a9 +2024-09-11 09:01:05.762176 2024-09-11 09:01:05.762181 aggnd 1086292391 R rec 65be79f4-fffd-420d-bd07-0046246cc278 +2024-09-11 09:01:05.813464 2024-09-11 09:01:05.813469 aggnd 1086300475 R rec 867f05d3-3d55-4bf1-8ae8-0b255cb75d83 +2024-09-11 09:01:05.862974 2024-09-11 09:01:05.862979 aggnd 1086314646 R rec 395818f4-5bdc-4d75-8477-fc84c1de0af8 +2024-09-11 09:01:05.915764 2024-09-11 09:01:05.91577 aggnd 1086340043 R rec 55edcde3-5382-4f6c-bb47-cc0169f0e2bc +2024-09-11 09:01:05.966199 2024-09-11 09:01:05.966204 aggnd 1086373170 R rec 3909e2d6-d5f0-46eb-a03c-0afafe38b82e +2024-09-11 09:01:06.020428 2024-09-11 09:01:06.020433 aggnd 1086413520 R rec 995f1f2a-55ae-41ab-9a63-af5c27603499 +2024-09-11 09:01:06.073589 2024-09-11 09:01:06.073595 aggnd 1086431685 R rec c6886ee9-cdc6-4b39-8f60-e26c89679e81 +2024-09-11 09:01:06.151745 2024-09-11 09:01:06.15175 aggnd 1086431855 R rec eac6bfa9-e903-4112-82bc-6398b62215de +2024-09-11 09:01:06.203747 2024-09-11 09:01:06.203753 aggnd 1086433114 R rec 62114fe8-5745-4f13-ae04-1cf43473d710 +2024-09-11 09:01:06.257699 2024-09-11 09:01:06.257704 aggnd 1086434900 R rec c6df9d20-bc97-442c-942e-d6e1bb697274 +2024-09-11 09:01:06.316073 2024-09-11 09:01:06.316078 aggnd 1086437500 R rec fa690100-b23b-4f8f-b933-2e0577b2eaff +2024-09-11 09:01:06.368795 2024-09-11 09:01:06.3688 aggnd 1086443640 R rec 79c0ad74-9a8e-47e8-b189-f6a7329e4a44 +2024-09-11 09:01:06.429707 2024-09-11 09:01:06.42971 aggnd 1086444361 R rec 9db75dc6-d1b5-43a4-82f4-b46f102c8b92 +2024-09-11 09:01:06.478774 2024-09-11 09:01:06.478779 aggnd 1086469747 R rec b4f8b5d6-9539-46b1-bfda-dc95e47c3e88 +2024-09-11 09:01:06.529448 2024-09-11 09:01:06.529453 aggnd 1086480686 R rec a33db21d-ae01-40c2-a0c2-202e5c56ba05 +2024-09-11 09:01:06.582081 2024-09-11 09:01:06.582086 aggnd 108649282X R rec 88d418ac-e635-482e-8647-915db218a217 +2024-09-11 09:01:06.635096 2024-09-11 09:01:06.6351 aggnd 1086503910 R rec b6cf275a-0129-46f7-9d85-2da0a65365bb +2024-09-11 09:01:06.68922 2024-09-11 09:01:06.689225 aggnd 1086511239 R rec 38a3e662-b519-49c3-a4b4-c94d0412bcdd +2024-09-11 09:01:06.751888 2024-09-11 09:01:06.751893 aggnd 1086545605 R rec f7eaa4d4-ee9a-4716-ad8c-ccc7f4fe529a +2024-09-11 09:01:06.83811 2024-09-11 09:01:06.838115 aggnd 1086545869 R rec 459baf43-3f57-4c34-b15f-9c7e0d3ccf1b +2024-09-11 09:01:06.893653 2024-09-11 09:01:06.893658 aggnd 1086572882 R rec 2e2dd3d2-11d4-467a-bd62-41790ea35ec1 +2024-09-11 09:01:06.945826 2024-09-11 09:01:06.94583 aggnd 1086591453 R rec e861effd-0a13-4774-8d7a-c86a8a1cb206 +2024-09-11 09:01:06.997259 2024-09-11 09:01:06.997264 aggnd 1086599594 R rec e0f78fcf-aac6-40c8-8ec5-c5ad6de13ac0 +2024-09-11 09:01:07.05218 2024-09-11 09:01:07.052186 aggnd 1086646843 R rec 329b1147-c3e4-4cd4-815f-d3b8c4c23157 +2024-09-11 09:01:07.116096 2024-09-11 09:01:07.1161 aggnd 1086671775 R rec fea1186d-9e5b-47d0-bd06-eedb3c270241 +2024-09-11 09:01:07.168124 2024-09-11 09:01:07.168129 aggnd 1086700902 R rec fad933b5-6b36-46b1-970d-05f6101a0558 +2024-09-11 09:01:07.217678 2024-09-11 09:01:07.217683 aggnd 1086728939 R rec 85b34c19-b862-45da-9c03-ccebd4f887f9 +2024-09-11 09:01:07.268947 2024-09-11 09:01:07.268951 aggnd 1086730003 R rec 631e87e2-f4f7-4712-bd77-86e6f68f6247 +2024-09-11 09:01:07.319751 2024-09-11 09:01:07.319757 aggnd 1086746554 R rec f29b4ecb-2f40-4737-92ff-614b12d88bd3 +2024-09-11 09:01:07.380692 2024-09-11 09:01:07.380696 aggnd 1086766326 R rec 9a217abe-c65e-4833-870d-e2d5a6151a76 +2024-09-11 09:01:07.431744 2024-09-11 09:01:07.431749 aggnd 1086780884 R rec 4e5fdc52-09c3-4c7f-81bd-2ca20dd266b0 +2024-09-11 09:01:07.48807 2024-09-11 09:01:07.488076 aggnd 1086783476 R rec b199ea16-56af-4521-b0cc-5d8a71d7f85c +2024-09-11 09:01:07.544426 2024-09-11 09:01:07.544432 aggnd 1086783492 R rec 0cffd63a-a097-4557-8965-c611b7cc4bbe +2024-09-11 09:01:07.624593 2024-09-11 09:01:07.624599 aggnd 1086814347 R rec d32dff19-fbef-4375-8ab5-690b5cc02f3f +2024-09-11 09:01:07.685933 2024-09-11 09:01:07.685938 aggnd 1086828542 R rec 8483aad1-072c-469f-b32a-17764483c7de +2024-09-11 09:01:07.75156 2024-09-11 09:01:07.751565 aggnd 1086839668 R rec a84da8a3-1954-4956-a638-bfe689754234 +2024-09-11 09:01:07.803026 2024-09-11 09:01:07.803031 aggnd 1086844092 R rec 3171615f-3779-43a2-bfed-076b44992424 +2024-09-11 09:01:07.854219 2024-09-11 09:01:07.854224 aggnd 108685604X R rec 6c5a1289-ec29-4221-b82b-7b1ff77946d8 +2024-09-11 09:01:07.910797 2024-09-11 09:01:07.910802 aggnd 1086971531 R rec 83443e5c-adcf-4273-b666-b1a77c93d52c +2024-09-11 09:01:07.964569 2024-09-11 09:01:07.964575 aggnd 1087157226 R rec 99a0c6ed-121b-40b5-848b-e8dd8240ca6a +2024-09-11 09:01:08.022437 2024-09-11 09:01:08.022442 aggnd 1087161088 R rec 39ef35d9-e591-48ac-82ee-3a8c4fc30f43 +2024-09-11 09:01:08.07698 2024-09-11 09:01:08.076986 aggnd 1087202949 R rec 56a5175d-375f-4845-a9da-fb1e3a6c500c +2024-09-11 09:01:08.131334 2024-09-11 09:01:08.131344 aggnd 1087258685 R rec 3c89828c-9ee6-43cf-a24a-e6e5a2eef000 +2024-09-11 09:01:08.197457 2024-09-11 09:01:08.197463 aggnd 1087265827 R rec 9c0bc69a-8bd0-4af9-9d15-b9c203b7848d +2024-09-11 09:01:08.247053 2024-09-11 09:01:08.247058 aggnd 1087266157 R rec cf4adf3b-14ca-4a93-a357-db03c45c66dc +2024-09-11 09:01:08.302056 2024-09-11 09:01:08.302062 aggnd 1087273897 R rec f51696a7-ee0c-41db-840b-2c09b9aade1d +2024-09-11 09:01:08.366575 2024-09-11 09:01:08.366579 aggnd 1087296900 R rec 53282026-ba79-4eb4-a25a-e8dfe77f2d54 +2024-09-11 09:01:08.420203 2024-09-11 09:01:08.420209 aggnd 1087307619 R rec ed88e79c-9761-4e4a-bac6-6a1befc10237 +2024-09-11 09:01:08.471092 2024-09-11 09:01:08.471097 aggnd 1087316928 R rec 96efab66-a81c-47ff-9f08-f94aed2f4cfc +2024-09-11 09:01:08.540442 2024-09-11 09:01:08.540448 aggnd 1087324378 R rec 21bf9bf0-6cb5-461b-a74f-792441cde0e5 +2024-09-11 09:01:08.652856 2024-09-11 09:01:08.652862 aggnd 1087327822 R rec 55e3ca27-f84c-4b75-8f3e-1ac9ea8755c7 +2024-09-11 09:01:08.71918 2024-09-11 09:01:08.719185 aggnd 1087335108 R rec 7298933a-c150-45f8-b652-c0028afafb26 +2024-09-11 09:01:08.774324 2024-09-11 09:01:08.77433 aggnd 1087354226 R rec f55679fe-8706-420c-974a-b6dec73ce437 +2024-09-11 09:01:08.832229 2024-09-11 09:01:08.832235 aggnd 1087364086 R rec e6c4f55c-1fcf-465f-a86b-daa3a81ad9b6 +2024-09-11 09:01:08.887977 2024-09-11 09:01:08.887982 aggnd 1087368367 R rec 9776b0a8-136b-4d00-9f3c-3279aef0a976 +2024-09-11 09:01:08.940846 2024-09-11 09:01:08.940851 aggnd 1087381363 R rec 8d57e8ec-9e17-4740-aa67-b9395026ee79 +2024-09-11 09:01:08.997152 2024-09-11 09:01:08.997157 aggnd 1087450594 R rec 5c5a15ec-2582-460e-bb4a-e73671254b68 +2024-09-11 09:01:09.052194 2024-09-11 09:01:09.052199 aggnd 1087461731 R rec 03b21f9c-2dd2-4ff7-9a5c-3b9e8bbecdd9 +2024-09-11 09:01:09.11319 2024-09-11 09:01:09.113195 aggnd 1087515092 R rec 6e8f0fb2-a400-48ab-9b6a-ba4ca8d5abb9 +2024-09-11 09:01:09.174348 2024-09-11 09:01:09.174352 aggnd 1087538092 R rec 00df34f4-c5ee-43e6-ab13-bf211fde23c3 +2024-09-11 09:01:09.234397 2024-09-11 09:01:09.234402 aggnd 1087545471 R rec e45e3ac3-2048-4aa1-ba1d-c91059d0df82 +2024-09-11 09:01:09.295044 2024-09-11 09:01:09.295049 aggnd 108756171X R rec c7eb41ca-b45f-4ba3-89a9-a3c3469df34d +2024-09-11 09:01:09.353905 2024-09-11 09:01:09.35391 aggnd 1087563429 R rec 2ef1d0a6-537f-465b-be46-8382cde58bbb +2024-09-11 09:01:09.426374 2024-09-11 09:01:09.426379 aggnd 1087600936 R rec 8b667fc7-82cf-4088-b189-28a2005cae3c +2024-09-11 09:01:09.482428 2024-09-11 09:01:09.482433 aggnd 1087603781 R rec 9d4b4966-ee1d-4e7c-9d71-e29d071aa85e +2024-09-11 09:01:09.537614 2024-09-11 09:01:09.53762 aggnd 1088444008 R rec e19d738f-157c-4bb1-9aa2-02d5731f3aa7 +2024-09-11 09:01:09.606983 2024-09-11 09:01:09.606988 aggnd 1088579485 R rec 22af5574-e535-4145-a511-fec5c32e76c0 +2024-09-11 09:01:09.705617 2024-09-11 09:01:09.705622 aggnd 1088801498 R rec 61e8c9c8-c155-4a49-99a1-c6d6f05bff21 +2024-09-11 09:01:09.773978 2024-09-11 09:01:09.773983 aggnd 1089143001 R rec 1fa650d3-4104-4c27-a086-520844de7a32 +2024-09-11 09:01:09.848764 2024-09-11 09:01:09.848769 aggnd 1089160305 R rec ef4c63e2-a4a2-4fa6-90ae-5fbc81645f65 +2024-09-11 09:01:09.917085 2024-09-11 09:01:09.917091 aggnd 1089227736 R rec 4a77dfe6-f2f7-4128-b699-4bc03d561570 +2024-09-11 09:01:09.985328 2024-09-11 09:01:09.985333 aggnd 1089267177 R rec 55305c16-469a-4261-b0af-147267388be6 +2024-09-11 09:01:10.054821 2024-09-11 09:01:10.054826 aggnd 1089282826 R rec 0320ef1c-8697-4572-9588-d328c76d7c86 +2024-09-11 09:01:10.118482 2024-09-11 09:01:10.118487 aggnd 1089334826 R rec d22386a5-4bab-42d2-8d0d-cbe2a79cc2eb +2024-09-11 09:01:10.178911 2024-09-11 09:01:10.178916 aggnd 1089339771 R rec f01ca210-5ef8-401e-b094-20f527348b05 +2024-09-11 09:01:10.244355 2024-09-11 09:01:10.244359 aggnd 1089387830 R rec 1ab4e17b-4fa2-468d-8052-75cd40e18c24 +2024-09-11 09:01:10.308543 2024-09-11 09:01:10.308549 aggnd 1089390971 R rec d9432680-107a-432e-b499-38d3c1c64cb3 +2024-09-11 09:01:10.405794 2024-09-11 09:01:10.4058 aggnd 1089392907 R rec 1a8be51e-2b95-4183-9cb7-d07021b00416 +2024-09-11 09:01:10.489199 2024-09-11 09:01:10.489204 aggnd 1089443617 R rec 951249c8-0c36-4afc-947f-41025cdba4ad +2024-09-11 09:01:10.54468 2024-09-11 09:01:10.544685 aggnd 1089455437 R rec 3b837cce-b870-499c-a914-a3ed6dfe1558 +2024-09-11 09:01:10.607839 2024-09-11 09:01:10.607845 aggnd 1089460732 R rec a7dbd510-ce2a-4ea0-be16-d42536ed1241 +2024-09-11 09:01:10.668095 2024-09-11 09:01:10.6681 aggnd 1089477015 R rec 7001ef03-d84d-4d09-925d-d0a3d2dcf8a3 +2024-09-11 09:01:10.740023 2024-09-11 09:01:10.740029 aggnd 1089511663 R rec 3a9ed83f-3171-4dc3-89a6-0472438bfb78 +2024-09-11 09:01:10.800519 2024-09-11 09:01:10.800525 aggnd 108951431X R rec f1cc30b3-26f2-4768-86c6-0ade6389174e +2024-09-11 09:01:10.858624 2024-09-11 09:01:10.85863 aggnd 1089572670 R rec d7c9286f-6f30-40e7-a90a-e7c700dc3cbe +2024-09-11 09:01:10.931038 2024-09-11 09:01:10.931043 aggnd 1089574282 R rec 164c1f76-d77f-48bc-8e2c-aa5e5d719dc4 +2024-09-11 09:01:10.989729 2024-09-11 09:01:10.989735 aggnd 1089580274 R rec 8c0690ba-c7eb-4cda-9a61-4a0b14664338 +2024-09-11 09:01:11.05953 2024-09-11 09:01:11.059536 aggnd 1089589018 R rec d455e8c1-a1b0-4fc2-903d-9fa2e0f1a1e4 +2024-09-11 09:01:11.116041 2024-09-11 09:01:11.116046 aggnd 1089604890 R rec 3c52a812-938f-480d-b89e-4fc10ba72943 +2024-09-11 09:01:11.17487 2024-09-11 09:01:11.174875 aggnd 1089638353 R rec 1f320ed0-fe13-4651-8ba6-65b22f2f0197 +2024-09-11 09:01:11.229601 2024-09-11 09:01:11.229607 aggnd 1089642393 R rec 110e5520-4920-4f24-963e-a61e72c1c4e8 +2024-09-11 09:01:11.317873 2024-09-11 09:01:11.317879 aggnd 1089664281 R rec 7eb9ac5f-9ff2-47e0-be46-ddb590f18d34 +2024-09-11 09:01:11.387888 2024-09-11 09:01:11.387893 aggnd 1089664389 R rec c482b675-4ef8-471e-a7e5-8a74a6fe22f4 +2024-09-11 09:01:11.439683 2024-09-11 09:01:11.439688 aggnd 1089666802 R rec a6ba6be2-84e8-4a42-9b6c-7f7fee39f3d0 +2024-09-11 09:01:11.489108 2024-09-11 09:01:11.489113 aggnd 1089669003 R rec d7e34fa6-6461-4fff-8e46-b95de2cb9c0e +2024-09-11 09:01:11.542953 2024-09-11 09:01:11.542957 aggnd 1089693907 R rec 321c995f-f0a8-4093-87f1-4d32cf2b6ab2 +2024-09-11 09:01:11.602891 2024-09-11 09:01:11.602896 aggnd 1089702655 R rec 892bbddb-da8e-4b66-b028-00c07ce4fe32 +2024-09-11 09:01:11.660588 2024-09-11 09:01:11.660593 aggnd 1089766106 R rec 6f281771-0d46-4aa2-9c2c-2ac7ba52b76b +2024-09-11 09:01:11.719431 2024-09-11 09:01:11.719436 aggnd 1089790732 R rec c924fc19-11b8-4413-924a-7b19c3a13bbc +2024-09-11 09:01:11.775522 2024-09-11 09:01:11.775528 aggnd 1089841035 R rec 073a174d-610a-483f-8234-3720c0e79a23 +2024-09-11 09:01:11.841052 2024-09-11 09:01:11.841057 aggnd 1089904703 R rec d40f288b-f413-4742-8e34-9e64524a2902 +2024-09-11 09:01:11.898155 2024-09-11 09:01:11.898161 aggnd 1090478615 R rec c4ffd761-fde4-419b-8e02-a070b8b0f0d2 +2024-09-11 09:01:11.964838 2024-09-11 09:01:11.964844 aggnd 1090479816 R rec e590683a-1f81-418d-99e6-0288ac338dbe +2024-09-11 09:01:12.030455 2024-09-11 09:01:12.03046 aggnd 1090697538 R rec c21642a0-4a4e-44f9-ad02-d2edcd1b347c +2024-09-11 09:01:12.093194 2024-09-11 09:01:12.093199 aggnd 1090699522 R rec b61cfac0-ad9c-4c89-9cb9-3171f4198b5c +2024-09-11 09:01:12.144037 2024-09-11 09:01:12.144043 aggnd 1090752598 R rec 9d2599d3-81e6-4e78-9a6e-d95fb2b7c69e +2024-09-11 09:01:12.199021 2024-09-11 09:01:12.199026 aggnd 1090809786 R rec 1a8b06ce-fb77-4ff9-ba93-8437ac7865f5 +2024-09-11 09:01:12.262711 2024-09-11 09:01:12.262717 aggnd 1091183546 R rec 40106f34-3247-4204-8704-0dd01618963a +2024-09-11 09:01:12.318748 2024-09-11 09:01:12.318752 aggnd 109123471X R rec 6da012dc-b559-4833-9ba0-651f233f344f +2024-09-11 09:01:12.374522 2024-09-11 09:01:12.374528 aggnd 1091235007 R rec 867b1212-979b-4b56-ad37-47022e9cd77a +2024-09-11 09:01:12.428122 2024-09-11 09:01:12.428128 aggnd 1091238898 R rec 04a1b75d-4236-4710-948b-2675e9d6442b +2024-09-11 09:01:12.486518 2024-09-11 09:01:12.486522 aggnd 1091451982 R rec 4665dc57-c389-4eea-aa94-d0ca16295f6e +2024-09-11 09:01:12.541099 2024-09-11 09:01:12.541105 aggnd 1091613443 R rec 6c811c9e-4aeb-4b5a-a8f7-855baf8f75ef +2024-09-11 09:01:12.595105 2024-09-11 09:01:12.59511 aggnd 1091651787 R rec 456d8822-0dbd-4ece-993e-a7168584693b +2024-09-11 09:01:12.694511 2024-09-11 09:01:12.694516 aggnd 1091678340 R rec adc01b71-48ab-41b1-a8b1-22a50930823a +2024-09-11 09:01:12.748847 2024-09-11 09:01:12.748854 aggnd 1091697396 R rec 1f069d4d-273f-452a-90e4-1297c2d3e81f +2024-09-11 09:01:12.814788 2024-09-11 09:01:12.814793 aggnd 1091697620 R rec 30433fe8-db03-43fd-84eb-b4e01ae6dacb +2024-09-11 09:01:12.875555 2024-09-11 09:01:12.875561 aggnd 1091698856 R rec 57190434-f7ed-4f08-89c0-b23587a2655f +2024-09-11 09:01:12.934408 2024-09-11 09:01:12.934413 aggnd 1091702292 R rec 9f1ed0b9-5b49-4829-bf00-96148f29f29d +2024-09-11 09:01:13.002771 2024-09-11 09:01:13.002776 aggnd 109172251X R rec 5f85df83-f9ef-470c-9ace-4ddfdeb855ea +2024-09-11 09:01:13.058831 2024-09-11 09:01:13.058836 aggnd 109177918X R rec d5cf56be-c8a7-41a7-b70c-8ca839f19b15 +2024-09-11 09:01:13.117681 2024-09-11 09:01:13.117686 aggnd 1091785813 R rec 25cb7ef2-4975-494d-93aa-c355abdbbe85 +2024-09-11 09:01:13.17636 2024-09-11 09:01:13.176364 aggnd 1091786100 R rec 282ce146-7529-493d-b4b3-1ec7332a9ce8 +2024-09-11 09:01:13.24224 2024-09-11 09:01:13.242246 aggnd 1091792305 R rec 385b0a8c-1a9a-4d2b-a47a-20e0f2b24136 +2024-09-11 09:01:13.296705 2024-09-11 09:01:13.296711 aggnd 109179331X R rec 04c9e061-bc1a-4c03-b5b7-652e1f92a6da +2024-09-11 09:01:13.355825 2024-09-11 09:01:13.35583 aggnd 1091822417 R rec b46b317a-189d-453f-99be-d4a33aea793a +2024-09-11 09:01:13.413805 2024-09-11 09:01:13.413809 aggnd 1091849781 R rec 4eca6f47-9e1f-4cf6-aff8-21facc5f1443 +2024-09-11 09:01:13.464078 2024-09-11 09:01:13.464083 aggnd 1091883599 R rec 3a838997-8b9f-4a90-9b2c-832473f50b2f +2024-09-11 09:01:13.515648 2024-09-11 09:01:13.515653 aggnd 1091897085 R rec b8f21ccc-a191-4d01-9a27-513f0ceb8ab8 +2024-09-11 09:01:13.578822 2024-09-11 09:01:13.578827 aggnd 1091907730 R rec 894e50d0-3423-4e22-89ee-ce26fa35eb3e +2024-09-11 09:01:13.631848 2024-09-11 09:01:13.631853 aggnd 1091936803 R rec 88e723d8-06f6-43f1-b5a6-cf490b224025 +2024-09-11 09:01:13.686009 2024-09-11 09:01:13.686013 aggnd 1091959382 R rec 2831342e-64e7-443b-8799-41b5d502538d +2024-09-11 09:01:13.739209 2024-09-11 09:01:13.739215 aggnd 1092040889 R rec cc012068-4630-412e-bd95-2da6921372d3 +2024-09-11 09:01:13.795542 2024-09-11 09:01:13.795548 aggnd 109206639X R rec 9bdd5cfc-dfe3-4c79-8d59-9eb404563110 +2024-09-11 09:01:13.851436 2024-09-11 09:01:13.851441 aggnd 1092274499 R rec a3a1795c-c536-42f7-917b-ecf21ab3febc +2024-09-11 09:01:13.905783 2024-09-11 09:01:13.905788 aggnd 109229578X R rec 67a2d046-808c-4c75-bea7-9f1147de3eb2 +2024-09-11 09:01:13.960239 2024-09-11 09:01:13.960244 aggnd 1092297278 R rec f0ed4193-bb68-40f9-8beb-a9d90d21bfa4 +2024-09-11 09:01:14.022218 2024-09-11 09:01:14.022223 aggnd 1092349839 R rec ed6a5221-a348-471c-9e96-53ca9be40e1e +2024-09-11 09:01:14.077238 2024-09-11 09:01:14.077244 aggnd 1092417966 R rec 78498954-085d-4aa4-9dcb-55ac5e9a0ede +2024-09-11 09:01:14.132186 2024-09-11 09:01:14.132192 aggnd 1092457992 R rec b7594d94-d99d-4791-ba8d-8e855428758d +2024-09-11 09:01:14.210341 2024-09-11 09:01:14.210346 aggnd 1092493239 R rec 09f62780-f60f-40e1-8a01-93df2a6d47e5 +2024-09-11 09:01:14.26703 2024-09-11 09:01:14.267035 aggnd 1092495266 R rec 49351b8c-81b7-48d6-9900-613d2fac4848 +2024-09-11 09:01:14.325087 2024-09-11 09:01:14.325093 aggnd 1092508333 R rec e7e5a2af-49b5-480d-815e-32cd17ee6a12 +2024-09-11 09:01:14.378812 2024-09-11 09:01:14.378817 aggnd 1092524398 R rec 0a8f6384-eb7e-4fcb-a766-332c27478316 +2024-09-11 09:01:14.431663 2024-09-11 09:01:14.431668 aggnd 1092551271 R rec 70c9421e-be55-4aac-ab1c-fb94f687f0ec +2024-09-11 09:01:14.485142 2024-09-11 09:01:14.485147 aggnd 1093232943 R rec 5a5b7576-8574-4de2-9742-0e3303a43646 +2024-09-11 09:01:14.533964 2024-09-11 09:01:14.533969 aggnd 1095512498 R rec b9067e88-7682-41a2-b709-6abacd68da56 +2024-09-11 09:01:14.592686 2024-09-11 09:01:14.592691 aggnd 1095673300 R rec 411a39d0-2932-4493-838e-e1a9c65e08e1 +2024-09-11 09:01:14.657355 2024-09-11 09:01:14.65736 aggnd 1095685007 R rec 49f70586-ea89-4196-934d-bb756598bc20 +2024-09-11 09:01:14.71469 2024-09-11 09:01:14.714694 aggnd 1095792091 R rec 78cde946-a7bb-4c2d-bfe5-895d26d54c83 +2024-09-11 09:01:14.778064 2024-09-11 09:01:14.778069 aggnd 1095794957 R rec fc6d4579-bf26-451b-8a6e-6f69b0df1c2c +2024-09-11 09:01:14.83769 2024-09-11 09:01:14.837695 aggnd 109579762X R rec 77929749-58b3-4ed1-aa76-b272e4029a67 +2024-09-11 09:01:14.889808 2024-09-11 09:01:14.889813 aggnd 1096172224 R rec 07d2e17f-4954-4a07-9012-99d748006652 +2024-09-11 09:01:14.95036 2024-09-11 09:01:14.950365 aggnd 1096247151 R rec 7d78e127-53a0-426d-a691-d1fb18ae60d6 +2024-09-11 09:01:15.001151 2024-09-11 09:01:15.001156 aggnd 1096338572 R rec 2c145fa5-1416-4916-988c-8c331beedcb1 +2024-09-11 09:01:15.062242 2024-09-11 09:01:15.062247 aggnd 1096509253 R rec ec330975-ae81-4987-962d-5ff808cd74cf +2024-09-11 09:01:15.117827 2024-09-11 09:01:15.117832 aggnd 1097290735 R rec 5eff4a56-f71f-4cd9-8fd2-51926b7a3d9f +2024-09-11 09:01:15.177273 2024-09-11 09:01:15.177279 aggnd 1097642550 R rec 5c05b18d-e499-429f-8700-f23ec3affee2 +2024-09-11 09:01:15.231005 2024-09-11 09:01:15.23101 aggnd 1097758591 R rec 850683cd-420d-43a8-8ea1-585e1c49b0c0 +2024-09-11 09:01:15.282925 2024-09-11 09:01:15.282929 aggnd 109790715 R rec 3da3cdb8-14b3-41e3-8452-09f0f4de9585 +2024-09-11 09:01:15.34072 2024-09-11 09:01:15.340725 aggnd 1098168984 R rec c560b887-bcfa-4511-b21b-5113ec99d0e0 +2024-09-11 09:01:15.402682 2024-09-11 09:01:15.402686 aggnd 1098212460 R rec 1ba32608-9b95-4a30-9fed-34b7f4033d9a +2024-09-11 09:01:15.458879 2024-09-11 09:01:15.458883 aggnd 109946577X R rec f6b76aed-6bb4-4d86-b817-e30a3ae42418 +2024-09-11 09:01:15.532796 2024-09-11 09:01:15.532801 aggnd 1099467756 R rec 93be04b1-969a-42d8-85b4-550b83c40362 +2024-09-11 09:01:15.598777 2024-09-11 09:01:15.598782 aggnd 1099730872 R rec c471c890-3a4d-4afe-931a-4e4fbb3b5b43 +2024-09-11 09:01:15.658087 2024-09-11 09:01:15.658093 aggnd 1099924197 R rec baf6ea85-2dea-4bae-883d-0cf10646550a +2024-09-11 09:01:15.707325 2024-09-11 09:01:15.70733 aggnd 1100173900 R rec 63299982-5ccb-4ecd-866f-31bb74e762f3 +2024-09-11 09:01:15.758437 2024-09-11 09:01:15.758442 aggnd 1100326294 R rec 64e535f9-d296-45b9-93fb-70bd6cba3790 +2024-09-11 09:01:15.820168 2024-09-11 09:01:15.820173 aggnd 1100545808 R rec 8c5925dd-4d90-4385-a2ca-a8833afd582b +2024-09-11 09:01:15.870848 2024-09-11 09:01:15.870853 aggnd 1100546359 R rec 2c0a2479-181e-45e7-94b7-09c561b946a0 +2024-09-11 09:01:15.922298 2024-09-11 09:01:15.922303 aggnd 1100694404 R rec 1177dbf8-8301-4482-9464-93490d3e2dc5 +2024-09-11 09:01:15.974067 2024-09-11 09:01:15.974073 aggnd 1101362081 R rec 528328e1-8e6d-4352-8440-7f3f1363e6dd +2024-09-11 09:01:16.028395 2024-09-11 09:01:16.028401 aggnd 1101364238 R rec 638d0359-fb9b-47c7-839b-4df7c281ac8b +2024-09-11 09:01:16.094375 2024-09-11 09:01:16.094381 aggnd 1101375183 R rec 396d7973-42a5-4d88-a8fd-66340d535435 +2024-09-11 09:01:16.173304 2024-09-11 09:01:16.173309 aggnd 1101470003 R rec c3fc4dbf-5ada-47d5-8197-7c689f18374e +2024-09-11 09:01:16.226232 2024-09-11 09:01:16.226235 aggnd 1102164240 R rec ebba603d-75f0-4a24-8149-29339d243c6c +2024-09-11 09:01:16.278778 2024-09-11 09:01:16.278784 aggnd 1102224820 R rec 94deba5a-04b6-46d9-bc08-e265069590b9 +2024-09-11 09:01:16.341248 2024-09-11 09:01:16.341253 aggnd 110234979 R rec 16ba05a0-386c-4ccd-90e5-552ca4766c8c +2024-09-11 09:01:16.3928 2024-09-11 09:01:16.392806 aggnd 1102950661 R rec 193c7471-8c60-46e2-bf64-d55a72646096 +2024-09-11 09:01:16.447613 2024-09-11 09:01:16.447619 aggnd 1103145347 R rec fcb70eb4-082a-4725-9a41-21331a373f01 +2024-09-11 09:01:16.499984 2024-09-11 09:01:16.499989 aggnd 1103471996 R rec b8fd92a1-28db-4b82-9b59-4cc93162b630 +2024-09-11 09:01:16.557348 2024-09-11 09:01:16.557354 aggnd 1103491768 R rec 371e3e61-903c-4cd7-9960-9ebfeeaaf015 +2024-09-11 09:01:16.609743 2024-09-11 09:01:16.609748 aggnd 1103855794 R rec 6c2fc575-ef3e-4148-849f-45b08b8f6e7d +2024-09-11 09:01:16.666072 2024-09-11 09:01:16.666077 aggnd 1104130424 R rec 140ad556-dbd8-455d-af1a-198f5d01e981 +2024-09-11 09:01:16.728267 2024-09-11 09:01:16.728272 aggnd 1104279754 R rec 9f0d3cc3-1458-4590-bc41-8fe85a789d89 +2024-09-11 09:01:16.806092 2024-09-11 09:01:16.806097 aggnd 1104394499 R rec 8f06f556-7612-442d-b31d-65ee0c11a658 +2024-09-11 09:01:16.861964 2024-09-11 09:01:16.861969 aggnd 1104971259 R rec 33e155d6-4deb-4bb6-96ad-4debc203f44b +2024-09-11 09:01:16.91529 2024-09-11 09:01:16.915295 aggnd 1105435075 R rec 19b9d7cc-1570-437d-b241-2a9a0150be55 +2024-09-11 09:01:16.967504 2024-09-11 09:01:16.967509 aggnd 1106144244 R rec 33c92599-ed20-4965-8693-a82ac02d6533 +2024-09-11 09:01:17.0315 2024-09-11 09:01:17.031505 aggnd 1106568257 R rec e3ab529e-601f-438a-be3d-9fab1601cd88 +2024-09-11 09:01:17.081209 2024-09-11 09:01:17.081215 aggnd 110674057 R rec f720a6d5-35b4-4683-8ef8-732a63892502 +2024-09-11 09:01:17.133256 2024-09-11 09:01:17.133261 aggnd 1107220025 R rec 7e934b73-cbee-4f7d-b5df-ae0725bb0b1d +2024-09-11 09:01:17.187803 2024-09-11 09:01:17.187808 aggnd 1108588271 R rec 11e76ff2-2082-48a4-8560-000eb08f3a69 +2024-09-11 09:01:17.241138 2024-09-11 09:01:17.241149 aggnd 1109102283 R rec be14a0fc-dabd-4921-9dba-1ceccd0e08bb +2024-09-11 09:01:17.292422 2024-09-11 09:01:17.292424 aggnd 1109796900 R rec 0f5fe734-b4ae-41ed-9704-05692c45dbaa +2024-09-11 09:01:17.343515 2024-09-11 09:01:17.34352 aggnd 1109931689 R rec a83aa885-35d6-4d50-a68e-c970fa7a01c4 +2024-09-11 09:01:17.403612 2024-09-11 09:01:17.403617 aggnd 1110040970 R rec 104c5baa-95a9-4412-9dbe-c0b56139872b +2024-09-11 09:01:17.462429 2024-09-11 09:01:17.462435 aggnd 1111133735 R rec 0677dabc-2242-4606-b216-1adec6d42546 +2024-09-11 09:01:17.517651 2024-09-11 09:01:17.517657 aggnd 1111902321 R rec 6498f362-14d0-4e05-b304-1f77c50ff3c3 +2024-09-11 09:01:17.571704 2024-09-11 09:01:17.571709 aggnd 1112571647 R rec 74104c08-fd93-45f4-b230-b14183f3bd9a +2024-09-11 09:01:17.627929 2024-09-11 09:01:17.627934 aggnd 111263638 R rec 501909b2-f50c-4dcc-ac68-416e5176eced +2024-09-11 09:01:17.693686 2024-09-11 09:01:17.693692 aggnd 1112747885 R rec 084e7d78-587d-40eb-b8d4-41aeabab4c1f +2024-09-11 09:01:17.745233 2024-09-11 09:01:17.745239 aggnd 111303002X R rec e90534df-5e4b-4a9c-bd98-63f77bf98182 +2024-09-11 09:01:17.808495 2024-09-11 09:01:17.808501 aggnd 1113214309 R rec a8ac5251-0559-4155-9c0e-d4fdb296eff8 +2024-09-11 09:01:17.860969 2024-09-11 09:01:17.860974 aggnd 1114419125 R rec 943cb6b0-6935-4b4a-830a-6ed5eb64f70a +2024-09-11 09:01:17.914821 2024-09-11 09:01:17.914826 aggnd 1114601357 R rec f130bfa9-5ae4-441d-8c5e-192348b89929 +2024-09-11 09:01:17.966006 2024-09-11 09:01:17.966011 aggnd 1114680176 R rec 8948c780-f2c0-443d-a079-b83bf60ee568 +2024-09-11 09:01:18.020943 2024-09-11 09:01:18.020948 aggnd 111476518X R rec e6056695-e541-439b-98c2-26517f4876a1 +2024-09-11 09:01:18.076521 2024-09-11 09:01:18.076526 aggnd 1114895288 R rec dab62a1a-f2a3-4301-bcc6-3e56045b807b +2024-09-11 09:01:18.13413 2024-09-11 09:01:18.134135 aggnd 1114895318 R rec bd71bad7-197f-4162-8f77-221be593e71b +2024-09-11 09:01:18.195762 2024-09-11 09:01:18.195767 aggnd 1115670395 R rec 89597475-887e-4340-ba3e-bfebd8b2d0eb +2024-09-11 09:01:18.252433 2024-09-11 09:01:18.252438 aggnd 1116350033 R rec dd3f0bb8-1d5f-43c2-b8e9-a541508e9701 +2024-09-11 09:01:18.305763 2024-09-11 09:01:18.305768 aggnd 1116493586 R rec aa923cd4-92fc-4966-b2e2-084d38b3019c +2024-09-11 09:01:18.355591 2024-09-11 09:01:18.355595 aggnd 1116967383 R rec de8a467f-bd51-494d-aca8-afc81c5afc7a +2024-09-11 09:01:18.408756 2024-09-11 09:01:18.408761 aggnd 1116977273 R rec a200f2b9-cb16-4e8d-8f26-f4f75746d465 +2024-09-11 09:01:18.461114 2024-09-11 09:01:18.46112 aggnd 1116983575 R rec 26d97272-ee8a-4801-90a3-8728e336321a +2024-09-11 09:01:18.515624 2024-09-11 09:01:18.515627 aggnd 111715677X R rec 764fd0ec-e1c8-4f52-b0a8-7556a769dd57 +2024-09-11 09:01:18.571623 2024-09-11 09:01:18.571628 aggnd 111716151X R rec 08262696-a8b1-44bc-a424-ef3eff020925 +2024-09-11 09:01:18.647328 2024-09-11 09:01:18.647333 aggnd 1117731855 R rec 45283a2b-7f89-43fe-8ac8-e259a7903279 +2024-09-11 09:01:18.705745 2024-09-11 09:01:18.70575 aggnd 111783946X R rec 82c70166-47bf-45aa-86b2-9549b4574824 +2024-09-11 09:01:18.771627 2024-09-11 09:01:18.771632 aggnd 111787238 R rec 33e75e90-2f90-4214-9d1b-c7bc6c8a8360 +2024-09-11 09:01:18.836991 2024-09-11 09:01:18.836995 aggnd 1119264243 R rec 474c2a40-f30d-4063-9419-0c14bfba2092 +2024-09-11 09:01:18.900323 2024-09-11 09:01:18.900328 aggnd 1120447089 R rec e16dcd15-caed-4dda-ad46-800b00b1d901 +2024-09-11 09:01:18.964933 2024-09-11 09:01:18.964938 aggnd 1120533260 R rec 5b349864-1cf2-4a91-a8e4-05fc8910dd61 +2024-09-11 09:01:19.023343 2024-09-11 09:01:19.023348 aggnd 1120533929 R rec a4e3941c-7958-4dfe-9e97-6d67d91257f3 +2024-09-11 09:01:19.073404 2024-09-11 09:01:19.073409 aggnd 1120736277 R rec 0feda5bb-274e-49d1-bcb7-7a020b14e41a +2024-09-11 09:01:19.130946 2024-09-11 09:01:19.130951 aggnd 1120815401 R rec 0995719a-be95-43c3-a03e-f127a84603d0 +2024-09-11 09:01:19.187249 2024-09-11 09:01:19.187254 aggnd 1121320910 R rec 8d6e33a1-5c9c-4ed6-8589-1958f73f71c8 +2024-09-11 09:01:19.242054 2024-09-11 09:01:19.242058 aggnd 1121540562 R rec af686c69-a51f-46fb-8a98-f878653077d7 +2024-09-11 09:01:19.297346 2024-09-11 09:01:19.297351 aggnd 1122052537 R rec 657b6e6b-6a68-46df-9f3d-7136aef2e422 +2024-09-11 09:01:19.357135 2024-09-11 09:01:19.35714 aggnd 1122056257 R rec 52302c7a-6d59-4b9f-88ce-360e94dccc82 +2024-09-11 09:01:19.410119 2024-09-11 09:01:19.410124 aggnd 1122060041 R rec b3e8d0d2-fe8f-49a9-abf8-6752c7938bdd +2024-09-11 09:01:19.475003 2024-09-11 09:01:19.475008 aggnd 1122486812 R rec ff66fe0c-0ff9-4d8b-81aa-4fee454922a9 +2024-09-11 09:01:19.52462 2024-09-11 09:01:19.524625 aggnd 1122489684 R rec 7cfc802e-9518-459d-858f-5fbe27d4e161 +2024-09-11 09:01:19.585421 2024-09-11 09:01:19.585426 aggnd 1122490267 R rec 12579660-e878-4ecc-93ae-d9eb2049e97a +2024-09-11 09:01:19.642564 2024-09-11 09:01:19.642569 aggnd 1123156344 R rec 8bd2bcf3-cb72-4c08-a536-6988b85dd705 +2024-09-11 09:01:19.719203 2024-09-11 09:01:19.719209 aggnd 1123162263 R rec a5e6f647-24f4-4b58-99f3-0bbc161701aa +2024-09-11 09:01:19.772519 2024-09-11 09:01:19.772524 aggnd 1123172706 R rec 331cd6ee-8a6f-49b8-b03f-c9a1da12df1e +2024-09-11 09:01:19.821795 2024-09-11 09:01:19.8218 aggnd 1123512752 R rec 24876832-9553-4a60-b22f-270c5b9fe8b7 +2024-09-11 09:01:19.873605 2024-09-11 09:01:19.87361 aggnd 1123752990 R rec 7fcfb4d8-4f2f-403b-8bbb-d2e086f9471b +2024-09-11 09:01:19.925081 2024-09-11 09:01:19.925086 aggnd 112427748X R rec 4f209160-b152-4964-a62a-87841f8225d8 +2024-09-11 09:01:19.977997 2024-09-11 09:01:19.978002 aggnd 1125914920 R rec 0f2339fc-4bbf-46ed-abe7-9407369a8a40 +2024-09-11 09:01:20.045252 2024-09-11 09:01:20.045257 aggnd 1126056839 R rec 138e3fa2-166f-4a25-b572-1e7582a525f9 +2024-09-11 09:01:20.101486 2024-09-11 09:01:20.101491 aggnd 1126065013 R rec ceab4bc1-93f0-4ff6-9193-5db238fd06f4 +2024-09-11 09:01:20.153847 2024-09-11 09:01:20.153852 aggnd 1126071935 R rec 483b7c71-7223-49ee-a35e-7bf7465676db +2024-09-11 09:01:20.209461 2024-09-11 09:01:20.209465 aggnd 1127773151 R rec 18278a66-2dd8-45a9-b6d1-8eeb7c32db92 +2024-09-11 09:01:20.271142 2024-09-11 09:01:20.271147 aggnd 1129898709 R rec 3ffb6fe4-84b5-4491-b006-a3dee0f1cd63 +2024-09-11 09:01:20.325971 2024-09-11 09:01:20.325977 aggnd 1129905373 R rec de423c5f-bdd1-4c35-b766-6f6e0a0fe576 +2024-09-11 09:01:20.40005 2024-09-11 09:01:20.400055 aggnd 1130192466 R rec c4ceddf2-06d6-4c4d-88bd-50555961c7ee +2024-09-11 09:01:20.453678 2024-09-11 09:01:20.453683 aggnd 1130814122 R rec 7c900f5b-b70a-4f94-a763-c972b7699005 +2024-09-11 09:01:20.523413 2024-09-11 09:01:20.523418 aggnd 1130817318 R rec 18347008-9091-4fd3-9e5b-91f3cef73224 +2024-09-11 09:01:20.586373 2024-09-11 09:01:20.586378 aggnd 1131175786 R rec 374210eb-9db9-40cd-9586-a86457de54e1 +2024-09-11 09:01:20.642861 2024-09-11 09:01:20.642866 aggnd 1131199715 R rec dc31f28c-4028-4432-b5f6-b6151e08c0ae +2024-09-11 09:01:20.709575 2024-09-11 09:01:20.709581 aggnd 113126262X R rec cadbe581-1b3c-4ea7-b538-9d369354091b +2024-09-11 09:01:20.784829 2024-09-11 09:01:20.784835 aggnd 1131276868 R rec ae11048f-5189-456b-9994-8a906b79a26f +2024-09-11 09:01:20.841229 2024-09-11 09:01:20.841234 aggnd 1131574338 R rec e347027c-9574-40e1-9792-6c72c5396acf +2024-09-11 09:01:20.896531 2024-09-11 09:01:20.896537 aggnd 1131715187 R rec cabdb6a8-4c8f-418b-8b3b-53048c6de134 +2024-09-11 09:01:20.949829 2024-09-11 09:01:20.949833 aggnd 1132157781 R rec ba672bee-7705-4127-bffe-ea7ea1f99f31 +2024-09-11 09:01:21.003511 2024-09-11 09:01:21.003516 aggnd 1132540623 R rec ebf6dd14-acaf-4e0c-82cc-16b3a9244805 +2024-09-11 09:01:21.067188 2024-09-11 09:01:21.067193 aggnd 113454228 R rec 380e4fc6-86f8-4b68-a5d6-01b82f69dd74 +2024-09-11 09:01:21.117804 2024-09-11 09:01:21.117809 aggnd 1135284865 R rec 954b8aef-fa3b-479b-872d-3f71bdc3dc3c +2024-09-11 09:01:21.175812 2024-09-11 09:01:21.175817 aggnd 1135632049 R rec c8742148-f342-4442-bbc6-6d9b02c66ce2 +2024-09-11 09:01:21.228216 2024-09-11 09:01:21.228221 aggnd 1135754381 R rec 7b306471-aa80-4a6c-89ac-588f90617c4c +2024-09-11 09:01:21.285116 2024-09-11 09:01:21.285121 aggnd 1136441034 R rec 63c7706e-52ae-4e76-ac92-aa7811ca6c9b +2024-09-11 09:01:21.334833 2024-09-11 09:01:21.334837 aggnd 113660216X R rec 8a3393cc-f9de-474c-879f-e1ac8f9820b5 +2024-09-11 09:01:21.444719 2024-09-11 09:01:21.444724 aggnd 1137394390 R rec 00f5db54-2d08-4259-9ea3-b5112a83b484 +2024-09-11 09:01:21.499563 2024-09-11 09:01:21.499567 aggnd 1137496746 R rec f4654bfe-6b19-4faf-aec3-95de9c81b960 +2024-09-11 09:01:21.58268 2024-09-11 09:01:21.582685 aggnd 1137635371 R rec 2001b3b5-613c-4004-ac45-6c2a65c9dcc4 +2024-09-11 09:01:21.633413 2024-09-11 09:01:21.633418 aggnd 1137723467 R rec 2a36e0f4-b731-4880-ba99-ba77a5b2c12e +2024-09-11 09:01:21.688773 2024-09-11 09:01:21.688778 aggnd 1137735988 R rec edb3454f-f4ee-43bf-a80f-5714720303b8 +2024-09-11 09:01:21.739401 2024-09-11 09:01:21.739407 aggnd 1137839392 R rec c58e269f-e28e-4d3f-9b77-1ff5791f8c71 +2024-09-11 09:01:21.791918 2024-09-11 09:01:21.791924 aggnd 1137872462 R rec e6e8a03c-6ac9-482b-861a-f79dd0dd9f50 +2024-09-11 09:01:21.847763 2024-09-11 09:01:21.847768 aggnd 1137888660 R rec 145d4f29-c6cb-48da-a86b-4689f04eedb8 +2024-09-11 09:01:21.901339 2024-09-11 09:01:21.901344 aggnd 1138059102 R rec a86e52df-94f3-4feb-9010-9d65df7154ab +2024-09-11 09:01:21.95748 2024-09-11 09:01:21.957484 aggnd 1138213659 R rec f9b1edfd-92c0-4ac2-9ed7-116e691e41e5 +2024-09-11 09:01:22.022589 2024-09-11 09:01:22.022594 aggnd 113918055X R rec 7485dfc5-400c-46ae-a068-a67ea946e4a5 +2024-09-11 09:01:22.078114 2024-09-11 09:01:22.078119 aggnd 1139311719 R rec a99b65ae-1c62-47da-891a-d114d9f46d0c +2024-09-11 09:01:22.132416 2024-09-11 09:01:22.132421 aggnd 1139400851 R rec 06517f0e-dd9b-40b4-b59c-233742f6b50a +2024-09-11 09:01:22.193291 2024-09-11 09:01:22.193295 aggnd 1139404660 R rec c017e078-6b61-46db-a694-25736e7b7231 +2024-09-11 09:01:22.257433 2024-09-11 09:01:22.257438 aggnd 1139496387 R rec 5d86860f-8c36-4ae5-840e-efca6067a921 +2024-09-11 09:01:22.313915 2024-09-11 09:01:22.313919 aggnd 1139509292 R rec 18f5c42c-b247-46b3-a976-56e112a3b119 +2024-09-11 09:01:22.394517 2024-09-11 09:01:22.394522 aggnd 1139789902 R rec bbb65dde-8024-4d55-9f56-e2b5a7f8b9f8 +2024-09-11 09:01:22.448321 2024-09-11 09:01:22.448325 aggnd 113997981 R rec 9e1c903f-8f9e-486f-afd0-b3c046a02c6c +2024-09-11 09:01:22.504202 2024-09-11 09:01:22.504207 aggnd 1140050974 R rec 6b9ac591-6aee-4494-8bc0-3f881919dea2 +2024-09-11 09:01:22.557377 2024-09-11 09:01:22.557381 aggnd 1140075810 R rec 2393cfa8-c8cf-44fe-9036-7f67bdf82156 +2024-09-11 09:01:22.618459 2024-09-11 09:01:22.618464 aggnd 1140159526 R rec 98ccc4ba-35c8-455f-98f3-9e3ef13ca036 +2024-09-11 09:01:22.670757 2024-09-11 09:01:22.670762 aggnd 1140439618 R rec 115ddcf9-2f4f-4a92-8966-9b9ab41738ee +2024-09-11 09:01:22.732526 2024-09-11 09:01:22.732531 aggnd 114054635X R rec 9c96fedf-9fa8-4b2c-ba4e-6fdb24ddb695 +2024-09-11 09:01:22.79234 2024-09-11 09:01:22.792345 aggnd 1140557696 R rec a92a839c-dac6-476f-b4fb-6cd0b89a33fc +2024-09-11 09:01:22.866941 2024-09-11 09:01:22.866948 aggnd 1140620959 R rec ea27ae30-02f4-414a-aa7a-9e90db57e522 +2024-09-11 09:01:22.920644 2024-09-11 09:01:22.92065 aggnd 1141185997 R rec 4d97449f-3dcc-4b0c-ab4b-de4b92fa0f67 +2024-09-11 09:01:22.978642 2024-09-11 09:01:22.978648 aggnd 1141203960 R rec a6d17605-71e5-4e60-96df-dbbf214b908c +2024-09-11 09:01:23.048839 2024-09-11 09:01:23.048844 aggnd 1141331683 R rec 5b81e5dd-3c96-4b6e-9910-7adb9029a923 +2024-09-11 09:01:23.117327 2024-09-11 09:01:23.117332 aggnd 1141410621 R rec 08441358-8f4d-471b-85ce-827be428b046 +2024-09-11 09:01:23.169077 2024-09-11 09:01:23.169082 aggnd 1141815214 R rec 2ec6362b-1e62-4d75-bc1d-61562518403b +2024-09-11 09:01:23.221855 2024-09-11 09:01:23.221861 aggnd 1142191087 R rec bd955dfd-5329-4341-b1e2-14b4cc5f51c9 +2024-09-11 09:01:23.272709 2024-09-11 09:01:23.272714 aggnd 11425172X R rec 83f729ee-0135-41c5-911b-105842daf9ef +2024-09-11 09:01:23.333631 2024-09-11 09:01:23.333635 aggnd 1142566420 R rec b717c1e2-fd3e-4cf7-8eac-25c0a9228519 +2024-09-11 09:01:23.388058 2024-09-11 09:01:23.388062 aggnd 1143061578 R rec a8ba7da4-9f6b-42b3-a23b-d9b2435e876a +2024-09-11 09:01:23.441932 2024-09-11 09:01:23.441937 aggnd 1143241045 R rec e93caf60-e367-46a3-ace0-562c218096e7 +2024-09-11 09:01:23.498376 2024-09-11 09:01:23.498381 aggnd 1143266722 R rec dfb01ba2-1e72-4b05-9740-a42caca4a5d2 +2024-09-11 09:01:23.551801 2024-09-11 09:01:23.551806 aggnd 1143567234 R rec 7495abb1-81cb-4bf2-9a1a-93450fdd3ca7 +2024-09-11 09:01:23.616811 2024-09-11 09:01:23.616816 aggnd 1143635876 R rec 0891ddd9-8f72-4898-b435-ad3ed26721f3 +2024-09-11 09:01:23.675023 2024-09-11 09:01:23.675028 aggnd 1144273307 R rec 4f871cc0-908f-4330-902b-7e4af3e281fb +2024-09-11 09:01:23.732998 2024-09-11 09:01:23.733003 aggnd 1144301130 R rec 0d208aa6-7e55-4ffd-8f1f-032bc319c116 +2024-09-11 09:01:23.803064 2024-09-11 09:01:23.803069 aggnd 1144669049 R rec dd7b435b-b562-4967-9fe9-4290dda2ed71 +2024-09-11 09:01:23.872293 2024-09-11 09:01:23.872298 aggnd 1145344372 R rec 3c00e58c-48ab-47d4-aaed-37e8efd1355e +2024-09-11 09:01:23.942437 2024-09-11 09:01:23.942442 aggnd 1145352111 R rec 98274f61-07a2-4341-9c43-8ea592fdd2d8 +2024-09-11 09:01:23.995864 2024-09-11 09:01:23.995869 aggnd 114535601X R rec fa0203c4-12e5-48c8-8a72-cf95b13db9ef +2024-09-11 09:01:24.054323 2024-09-11 09:01:24.054329 aggnd 1145375154 R rec 6a9968ec-9f3a-41bf-8933-9bc4df515b65 +2024-09-11 09:01:24.13444 2024-09-11 09:01:24.134445 aggnd 1145390439 R rec 4d1f31b0-8346-4dc3-a885-75a00279581d +2024-09-11 09:01:24.188249 2024-09-11 09:01:24.188254 aggnd 1145399924 R rec 86404b13-25c8-4750-a957-a4800b51cf61 +2024-09-11 09:01:24.253892 2024-09-11 09:01:24.253897 aggnd 1145435904 R rec db308b38-e3bb-444b-82ea-c96ace391591 +2024-09-11 09:01:24.305417 2024-09-11 09:01:24.305421 aggnd 114546193X R rec d43d55d3-bbde-42b8-9c0e-1055b155139a +2024-09-11 09:01:24.363698 2024-09-11 09:01:24.363704 aggnd 1145475299 R rec 1359f9ef-5148-476d-9e80-27146e282b75 +2024-09-11 09:01:24.419523 2024-09-11 09:01:24.419528 aggnd 1145486533 R rec d8e8afaa-f55c-478d-ab5d-bd4c83871e63 +2024-09-11 09:01:24.472245 2024-09-11 09:01:24.472249 aggnd 1145519989 R rec c87aca1f-907b-4bf7-b94b-952dbf33c327 +2024-09-11 09:01:24.530668 2024-09-11 09:01:24.530673 aggnd 1145537650 R rec ceb5442f-e469-4520-82b5-093336c5f405 +2024-09-11 09:01:24.590047 2024-09-11 09:01:24.590052 aggnd 1145563104 R rec a553dec6-a4e5-4532-b6df-c38b0fa5ab70 +2024-09-11 09:01:24.641961 2024-09-11 09:01:24.641966 aggnd 1145741851 R rec 9f91d9ee-ad20-441a-9190-37f5465e2b56 +2024-09-11 09:01:24.692893 2024-09-11 09:01:24.692898 aggnd 1145791662 R rec 8ae691c5-94e2-448a-99b2-8c9c3f29fb77 +2024-09-11 09:01:24.751339 2024-09-11 09:01:24.751344 aggnd 1145807690 R rec ed0833df-564f-4096-8dd9-2ac087643a19 +2024-09-11 09:01:24.802957 2024-09-11 09:01:24.802962 aggnd 1145825796 R rec 86942e5b-36e3-4e52-b4df-2433220f1e6b +2024-09-11 09:01:24.857812 2024-09-11 09:01:24.857817 aggnd 1145880231 R rec c6b0438a-64c9-4b27-9580-a448b504f111 +2024-09-11 09:01:24.917052 2024-09-11 09:01:24.917057 aggnd 1145891209 R rec 0acf1269-1089-4731-bb20-cc032d84a657 +2024-09-11 09:01:24.981546 2024-09-11 09:01:24.98155 aggnd 1145931103 R rec 2a6998e3-2c2d-4466-acd4-5db944cac5ed +2024-09-11 09:01:25.046076 2024-09-11 09:01:25.046081 aggnd 1145959857 R rec de084f36-3f61-43bc-af7d-1393f0cc7369 +2024-09-11 09:01:25.098146 2024-09-11 09:01:25.098152 aggnd 1146015976 R rec 8d541e28-52ad-4c48-8350-fa256ba3f93d +2024-09-11 09:01:25.157002 2024-09-11 09:01:25.157007 aggnd 114606151X R rec 08d1fd13-9bec-42ef-9e00-e4fb906072dc +2024-09-11 09:01:25.208091 2024-09-11 09:01:25.208096 aggnd 1146063067 R rec cde187b0-7c2d-4c5a-b3e8-95fcb07dbb70 +2024-09-11 09:01:25.29113 2024-09-11 09:01:25.291135 aggnd 1146079567 R rec 3cfe7c97-8208-4c2d-88d0-1782a0a863f4 +2024-09-11 09:01:25.349373 2024-09-11 09:01:25.349378 aggnd 1146080271 R rec bbd36f63-f067-45b8-ab0c-304e5a7b941e +2024-09-11 09:01:25.404046 2024-09-11 09:01:25.404052 aggnd 1146220359 R rec 8c017108-b856-48b8-803e-5cd85f5a1a78 +2024-09-11 09:01:25.47037 2024-09-11 09:01:25.470375 aggnd 1146337116 R rec f01822c0-5c80-4c98-925d-2448951c677a +2024-09-11 09:01:25.529087 2024-09-11 09:01:25.529092 aggnd 1146355181 R rec 56384f06-8a38-47b8-bcfa-9f8c42c6d81b +2024-09-11 09:01:25.586007 2024-09-11 09:01:25.586012 aggnd 1146397208 R rec 4c1c47f0-419b-4a9f-a62c-d6972aeab72b +2024-09-11 09:01:25.641895 2024-09-11 09:01:25.6419 aggnd 1146403054 R rec 2e4f84dd-fcdc-4af4-9614-340972a32f64 +2024-09-11 09:01:25.695468 2024-09-11 09:01:25.695473 aggnd 1146418345 R rec 45ff7cfb-3a1f-42de-982f-9434e76a4f5c +2024-09-11 09:01:25.750516 2024-09-11 09:01:25.750521 aggnd 1146538235 R rec f8912739-3a04-407a-b276-b6574ff84448 +2024-09-11 09:01:25.802422 2024-09-11 09:01:25.802427 aggnd 1146539045 R rec c3ad3e9b-1e36-4d05-bc33-dd760d12ed73 +2024-09-11 09:01:25.854319 2024-09-11 09:01:25.854323 aggnd 1146539355 R rec 83e7e135-f12d-45cc-ba0f-2a8ad2e08e0a +2024-09-11 09:01:25.91879 2024-09-11 09:01:25.918795 aggnd 1146540825 R rec 91283a89-776e-4747-bd83-bdd12b227768 +2024-09-11 09:01:25.973994 2024-09-11 09:01:25.973999 aggnd 1146583117 R rec c58d5bd2-a413-457a-82b6-f6ae66b0009c +2024-09-11 09:01:26.045523 2024-09-11 09:01:26.045529 aggnd 1146702809 R rec f4fcb9eb-efd1-4e00-bcb7-ef4bda7059cf +2024-09-11 09:01:26.118776 2024-09-11 09:01:26.118781 aggnd 1146703015 R rec c01dc1c3-f2df-495e-bf08-c46128d7e8cd +2024-09-11 09:01:26.180222 2024-09-11 09:01:26.180227 aggnd 1146715056 R rec feb110d8-3cf9-46e3-acd6-8715a4bd5ac3 +2024-09-11 09:01:26.237195 2024-09-11 09:01:26.2372 aggnd 1146716346 R rec 7466c985-f759-4acb-bedb-af2d2ac5b179 +2024-09-11 09:01:26.306471 2024-09-11 09:01:26.306476 aggnd 1146716648 R rec 0f5263d4-b494-4430-9cbf-22e5bba1730b +2024-09-11 09:01:26.364343 2024-09-11 09:01:26.364348 aggnd 1146776039 R rec 52b919fc-2071-4fcc-8bce-9e0658dd568d +2024-09-11 09:01:26.436917 2024-09-11 09:01:26.436922 aggnd 1146781075 R rec 774328a1-137e-48c7-86d9-389155b80916 +2024-09-11 09:01:26.502251 2024-09-11 09:01:26.502257 aggnd 1146794703 R rec 95e30440-836a-4887-8fc8-805928ebe8b8 +2024-09-11 09:01:26.574846 2024-09-11 09:01:26.574852 aggnd 1146797974 R rec 01cdaf67-115a-40ee-af79-380358de9908 +2024-09-11 09:01:26.632109 2024-09-11 09:01:26.632114 aggnd 1146820763 R rec 01988955-5091-4ec8-85c8-b858fd877bd9 +2024-09-11 09:01:26.688207 2024-09-11 09:01:26.688212 aggnd 1146911882 R rec 1cc93cb1-ffc3-4ef0-beef-360b479dfec9 +2024-09-11 09:01:26.754363 2024-09-11 09:01:26.754368 aggnd 1146958730 R rec 0c58b185-368e-4db6-bbc4-ff116a51d981 +2024-09-11 09:01:26.812254 2024-09-11 09:01:26.812259 aggnd 1146987935 R rec 0b73999e-323f-49e2-a2de-164f45dc8800 +2024-09-11 09:01:26.87009 2024-09-11 09:01:26.870095 aggnd 1147003505 R rec dcc3512b-6742-4b92-9fca-089bdb74c8bb +2024-09-11 09:01:26.921997 2024-09-11 09:01:26.922002 aggnd 1147011087 R rec 92c25e86-05b6-43ba-a651-c7383675853c +2024-09-11 09:01:26.972121 2024-09-11 09:01:26.972126 aggnd 1147058938 R rec fd265b69-a5c5-44c4-b1c3-ae9947b53cca +2024-09-11 09:01:27.028882 2024-09-11 09:01:27.028888 aggnd 1147073120 R rec 77ae5cf9-9f03-4318-9253-39c7d02d0651 +2024-09-11 09:01:27.094381 2024-09-11 09:01:27.094386 aggnd 1147082367 R rec d61fe993-c3d3-4a4f-bb0a-a5ccd0da8f7a +2024-09-11 09:01:27.162394 2024-09-11 09:01:27.162399 aggnd 1147083045 R rec fdd6f9ef-b4fe-49f3-9d63-231f10bcb318 +2024-09-11 09:01:27.21564 2024-09-11 09:01:27.215646 aggnd 1147127794 R rec 598a9b17-82d7-4ab3-a02f-3343bd1e7abb +2024-09-11 09:01:27.273048 2024-09-11 09:01:27.273053 aggnd 1147132976 R rec 68ff4991-6321-4a58-bafa-14cac5de9d25 +2024-09-11 09:01:27.328814 2024-09-11 09:01:27.328819 aggnd 1147141754 R rec e016b4c8-70f5-4aca-8ecf-df3b3bd358fb +2024-09-11 09:01:27.39781 2024-09-11 09:01:27.397816 aggnd 1147150567 R rec fcd54abd-7323-4be9-b4df-82a1732c9b5e +2024-09-11 09:01:27.472589 2024-09-11 09:01:27.472594 aggnd 1147173680 R rec cbf72b75-47cd-4529-ab1f-df61edde5270 +2024-09-11 09:01:27.52133 2024-09-11 09:01:27.521335 aggnd 114720117X R rec 7b419e81-2f45-4048-bbd4-f25d73748e8e +2024-09-11 09:01:27.572386 2024-09-11 09:01:27.572392 aggnd 1147319049 R rec c77a4caa-7960-4800-ba6a-bd91fa1cc301 +2024-09-11 09:01:27.641933 2024-09-11 09:01:27.641938 aggnd 1147429472 R rec 9ceab227-c0ca-4ec3-a469-834e8351611b +2024-09-11 09:01:27.710786 2024-09-11 09:01:27.710791 aggnd 1147614709 R rec 91f72209-af94-4859-9ce7-4c314b293939 +2024-09-11 09:01:27.774599 2024-09-11 09:01:27.774605 aggnd 1147649642 R rec 73008ebb-f0d3-46e7-aa76-81958fd81dcb +2024-09-11 09:01:27.842432 2024-09-11 09:01:27.842439 aggnd 1147777713 R rec 27e0591f-7d5b-4bb3-ae67-7fec80c61e95 +2024-09-11 09:01:27.905877 2024-09-11 09:01:27.905881 aggnd 1148121404 R rec 939482ef-32e0-496d-a804-900efff7c2d9 +2024-09-11 09:01:27.967983 2024-09-11 09:01:27.967987 aggnd 1148473181 R rec 697a5328-4093-41ba-bfd3-c9089053e613 +2024-09-11 09:01:28.024321 2024-09-11 09:01:28.024326 aggnd 1148667989 R rec a1388fc5-2778-4667-9a84-7e0cd2187d9e +2024-09-11 09:01:28.084278 2024-09-11 09:01:28.084283 aggnd 1148992316 R rec f971efe8-9088-4d6f-9e7f-f42c0f64e588 +2024-09-11 09:01:28.139393 2024-09-11 09:01:28.139398 aggnd 1149000910 R rec 42901796-0976-4169-821d-6561b652f455 +2024-09-11 09:01:28.198381 2024-09-11 09:01:28.198386 aggnd 1149077050 R rec 848986be-cd8b-4fe9-a792-aa4cfc381586 +2024-09-11 09:01:28.250517 2024-09-11 09:01:28.250522 aggnd 1149382090 R rec 04783bbc-4177-4a1a-9a00-75218f61210b +2024-09-11 09:01:28.304336 2024-09-11 09:01:28.304341 aggnd 115024397X R rec 3875a5b7-e463-43ea-8509-6ffaef719fb4 +2024-09-11 09:01:28.357096 2024-09-11 09:01:28.357101 aggnd 1150721626 R rec 3eb07bbd-1a32-4944-b364-54235e0fbf0b +2024-09-11 09:01:28.414687 2024-09-11 09:01:28.414691 aggnd 1150789433 R rec 96f462b0-a5e3-40b1-8b6d-acc1793120c4 +2024-09-11 09:01:28.471483 2024-09-11 09:01:28.471488 aggnd 1150803541 R rec 350586e8-685c-40cf-9db0-4c1b142a1c94 +2024-09-11 09:01:28.532162 2024-09-11 09:01:28.532168 aggnd 1151079529 R rec d42e3993-1d11-45f2-a678-c96348e23e3f +2024-09-11 09:01:28.596865 2024-09-11 09:01:28.59687 aggnd 1151380040 R rec 504f9ba6-0abc-4e84-94cb-a52b4b5217ce +2024-09-11 09:01:28.651144 2024-09-11 09:01:28.651149 aggnd 115168127X R rec a65e7fa8-30c0-4c0e-9fb6-3179c7023832 +2024-09-11 09:01:28.704188 2024-09-11 09:01:28.704192 aggnd 1151834149 R rec 9152a1e4-11dd-4470-832b-b9e906b904cc +2024-09-11 09:01:28.7575 2024-09-11 09:01:28.757506 aggnd 115189203 R rec bbeb168f-c801-43bd-bc54-0b0d9ce0fde9 +2024-09-11 09:01:28.815087 2024-09-11 09:01:28.815092 aggnd 115228987X R rec a30eef46-4fa1-4b55-b230-ca6499717370 +2024-09-11 09:01:28.871 2024-09-11 09:01:28.871005 aggnd 1153014750 R rec 02fe928f-f966-4822-863a-6928a450e61a +2024-09-11 09:01:28.925615 2024-09-11 09:01:28.92562 aggnd 1153069881 R rec e6905b0d-37ff-4000-a521-8895075f3592 +2024-09-11 09:01:28.985669 2024-09-11 09:01:28.985672 aggnd 1153169363 R rec 404e9d6f-1d95-4010-99a2-108e15204e40 +2024-09-11 09:01:29.043702 2024-09-11 09:01:29.043707 aggnd 115355996X R rec fd560e7c-284e-4124-8111-9568577d07ac +2024-09-11 09:01:29.102547 2024-09-11 09:01:29.102553 aggnd 1153565455 R rec 053f5a95-7012-43ae-9255-4089b7ec29b9 +2024-09-11 09:01:29.156912 2024-09-11 09:01:29.156918 aggnd 1153744600 R rec 2fd80a9f-0c84-44c7-8cf0-799e3621e5d1 +2024-09-11 09:01:29.230169 2024-09-11 09:01:29.230174 aggnd 1153781506 R rec a5591b1e-a913-43f0-be82-bfb915b71e34 +2024-09-11 09:01:29.285755 2024-09-11 09:01:29.28576 aggnd 115378197 R rec 261e4bcc-a38a-47fe-9045-608a81841542 +2024-09-11 09:01:29.342223 2024-09-11 09:01:29.342228 aggnd 1154802817 R rec f8053f47-3285-49a1-8b48-3d0ed0cd503c +2024-09-11 09:01:29.398008 2024-09-11 09:01:29.398013 aggnd 115493069 R rec e6f2abb7-e395-45a0-ba5f-934ee402d7d4 +2024-09-11 09:01:29.460312 2024-09-11 09:01:29.460318 aggnd 115497328X R rec b81ac715-92d3-42df-ad08-178fb7cc6b95 +2024-09-11 09:01:29.536908 2024-09-11 09:01:29.536913 aggnd 115503256X R rec 213853b7-1c01-4f8e-95fb-b2553ddec0b0 +2024-09-11 09:01:29.594256 2024-09-11 09:01:29.594261 aggnd 1155263766 R rec 71e05995-1144-406f-976a-34661299adad +2024-09-11 09:01:29.647667 2024-09-11 09:01:29.647672 aggnd 1155422481 R rec 515f0504-9222-4d35-9306-e45fbf386665 +2024-09-11 09:01:29.700095 2024-09-11 09:01:29.7001 aggnd 1155539176 R rec 4ec8a4c5-d83b-48b2-b84c-2efacdaa7a30 +2024-09-11 09:01:29.764236 2024-09-11 09:01:29.76424 aggnd 1155539249 R rec d83e4977-459c-4615-b069-bd349e350a16 +2024-09-11 09:01:29.817497 2024-09-11 09:01:29.817501 aggnd 115620451 R rec dba4ff9b-86f1-4d54-8f18-9df04414f90c +2024-09-11 09:01:29.873385 2024-09-11 09:01:29.87339 aggnd 1156292166 R rec b426c4a6-f293-40ae-bbd4-0014129b70ff +2024-09-11 09:01:29.941411 2024-09-11 09:01:29.941416 aggnd 1156433290 R rec 9a0a6c44-011c-4fbd-9a65-100509fbad65 +2024-09-11 09:01:29.99342 2024-09-11 09:01:29.993425 aggnd 1156493242 R rec fb07d8b0-9704-4123-8a1c-cd303fff84e6 +2024-09-11 09:01:30.047964 2024-09-11 09:01:30.04797 aggnd 1156540917 R rec 2c21ddb4-071b-40f2-af93-d50a0d166744 +2024-09-11 09:01:30.102289 2024-09-11 09:01:30.102294 aggnd 1157052185 R rec cb5b3022-3c3d-4610-a3cd-4f05ee1d4051 +2024-09-11 09:01:30.156919 2024-09-11 09:01:30.156925 aggnd 1157216900 R rec 00f669da-a2c5-4821-ab94-7dce06de3c55 +2024-09-11 09:01:30.223659 2024-09-11 09:01:30.223664 aggnd 1157217559 R rec ff873c57-12f1-4c39-9818-1c968bafe70e +2024-09-11 09:01:30.274511 2024-09-11 09:01:30.274516 aggnd 1157230466 R rec b547aaf3-fc5f-464a-8b18-2c30c8926bee +2024-09-11 09:01:30.333691 2024-09-11 09:01:30.333695 aggnd 1157269680 R rec 63090df0-c437-46eb-8fd0-8a4ed2daa374 +2024-09-11 09:01:30.387575 2024-09-11 09:01:30.387579 aggnd 1157288723 R rec b55dcf18-0779-480b-9003-2fcd82c3d411 +2024-09-11 09:01:30.450618 2024-09-11 09:01:30.450623 aggnd 1157297676 R rec 5830d32b-571e-4fb9-b3f9-13da7c625f6f +2024-09-11 09:01:30.513032 2024-09-11 09:01:30.513037 aggnd 1157335101 R rec bee92b6d-5102-4220-a2db-a4f255aefdcc +2024-09-11 09:01:30.577894 2024-09-11 09:01:30.5779 aggnd 1157423981 R rec d954de6f-41b9-418f-b1b0-a2655d5fcc39 +2024-09-11 09:01:30.63145 2024-09-11 09:01:30.631455 aggnd 1157447694 R rec 694a5a25-c9ad-4741-bee5-0d232c922e97 +2024-09-11 09:01:30.683757 2024-09-11 09:01:30.68376 aggnd 1157452159 R rec 924fff2e-bbdd-4613-b87c-5b036e7567b5 +2024-09-11 09:01:30.737097 2024-09-11 09:01:30.737102 aggnd 1157594042 R rec 6da5f623-56ad-4354-b019-ef7bb9a91548 +2024-09-11 09:01:30.798358 2024-09-11 09:01:30.798364 aggnd 1157599087 R rec d0a30f97-e57b-4b8e-af93-1eba34471424 +2024-09-11 09:01:30.856864 2024-09-11 09:01:30.856869 aggnd 1157628680 R rec 253eb859-33ba-4380-9153-789e8c097969 +2024-09-11 09:01:30.922853 2024-09-11 09:01:30.922858 aggnd 1157697208 R rec e6f5d86a-5f8a-4814-87e4-f6c13ff87d12 +2024-09-11 09:01:30.984999 2024-09-11 09:01:30.985004 aggnd 1157709702 R rec 54047efd-c7fe-46e8-b959-41c708d6644e +2024-09-11 09:01:31.053212 2024-09-11 09:01:31.053218 aggnd 1157711162 R rec 21caee5d-25ab-4be1-b8f6-077b652b341d +2024-09-11 09:01:31.115851 2024-09-11 09:01:31.115856 aggnd 115775633 R rec 7ae5d63a-f7d4-4a2a-8e30-0956f4c18470 +2024-09-11 09:01:31.172692 2024-09-11 09:01:31.172697 aggnd 1157756964 R rec 8f1d2745-73ed-47ec-9446-f3690f7f1257 +2024-09-11 09:01:31.235774 2024-09-11 09:01:31.235778 aggnd 1157761518 R rec 79122d3d-36f2-4129-b68c-18c8d7a64182 +2024-09-11 09:01:31.292606 2024-09-11 09:01:31.292611 aggnd 1157778321 R rec ba09edfb-b82a-40dd-b3ea-2cedde2352c9 +2024-09-11 09:01:31.352979 2024-09-11 09:01:31.352984 aggnd 1157861202 R rec 13787400-fe1e-4d1f-a7fe-b71c115505c8 +2024-09-11 09:01:31.415027 2024-09-11 09:01:31.415032 aggnd 1157879837 R rec 9ff346fe-255c-428d-80ce-bbbb30ca7279 +2024-09-11 09:01:31.487368 2024-09-11 09:01:31.487373 aggnd 1157907849 R rec c6e86054-7e82-4de5-a956-e8031f736083 +2024-09-11 09:01:31.541184 2024-09-11 09:01:31.54119 aggnd 1157912311 R rec 0d22b2ed-4f05-4e25-835a-9ed37f0c0096 +2024-09-11 09:01:31.603392 2024-09-11 09:01:31.603397 aggnd 1158006497 R rec 83683dea-26cf-4cff-bce3-6e85688f2b84 +2024-09-11 09:01:31.760901 2024-09-11 09:01:31.760906 aggnd 1158027060 R rec 8ed7c720-51d2-476d-b136-222af8107d2c +2024-09-11 09:01:31.829815 2024-09-11 09:01:31.829821 aggnd 1158052057 R rec b6428c75-fdfa-49b0-a47b-2f9e873273a6 +2024-09-11 09:01:31.922942 2024-09-11 09:01:31.922948 aggnd 1158100892 R rec 434f3780-04bd-4c30-95bc-f8f01f82ab9f +2024-09-11 09:01:31.998092 2024-09-11 09:01:31.998097 aggnd 1158101988 R rec 692a92be-7b4f-4c28-8315-760cf4880e2b +2024-09-11 09:01:32.072861 2024-09-11 09:01:32.072866 aggnd 1158158408 R rec 01bf4e91-e5e2-4a11-af71-aaa5df3cf981 +2024-09-11 09:01:32.140946 2024-09-11 09:01:32.140953 aggnd 1158200374 R rec 5915ad18-19df-4eb2-948e-a4681171c8f9 +2024-09-11 09:01:32.261661 2024-09-11 09:01:32.261667 aggnd 1158249543 R rec 372dfa7b-23cb-4d4c-9cbe-9031e3ebb743 +2024-09-11 09:01:32.356506 2024-09-11 09:01:32.356512 aggnd 115829106X R rec e8704079-850a-4c84-90a7-e820fb982824 +2024-09-11 09:01:32.413059 2024-09-11 09:01:32.413065 aggnd 115830324 R rec de8c5960-cecb-4dbe-9d3e-bb761daf9469 +2024-09-11 09:01:32.47897 2024-09-11 09:01:32.478974 aggnd 115832599 R rec 5ea0be6c-deea-4912-baa4-5e5396088813 +2024-09-11 09:01:32.546391 2024-09-11 09:01:32.546404 aggnd 115836346X R rec 92be1be1-85ae-4e19-8cbc-9e9b435b3436 +2024-09-11 09:01:32.608341 2024-09-11 09:01:32.608346 aggnd 1158367546 R rec 4eed99f6-4bc9-4335-9c28-dc00db69339e +2024-09-11 09:01:32.675122 2024-09-11 09:01:32.675127 aggnd 1158376529 R rec 2c643298-ffdd-4c02-9b50-980c662e3881 +2024-09-11 09:01:32.734609 2024-09-11 09:01:32.734614 aggnd 1158381719 R rec cb981453-de1b-4c63-b9c6-687b7bdb0619 +2024-09-11 09:01:32.79009 2024-09-11 09:01:32.790095 aggnd 1158387253 R rec 500c2894-1830-45f4-8bd6-ca6151cf4b31 +2024-09-11 09:01:32.850775 2024-09-11 09:01:32.85078 aggnd 1158419481 R rec 50458e62-d835-4f80-af2b-64a270f3d14c +2024-09-11 09:01:32.908531 2024-09-11 09:01:32.908537 aggnd 1158422814 R rec a95a8c56-7e5d-4c07-96b7-6ae8ad941897 +2024-09-11 09:01:32.971495 2024-09-11 09:01:32.971499 aggnd 1158446462 R rec 170bae11-963d-4323-921a-7296975da2c2 +2024-09-11 09:01:33.029355 2024-09-11 09:01:33.029359 aggnd 1158464681 R rec df8eab01-c233-4f62-b9b3-a459e185b0ef +2024-09-11 09:01:33.088366 2024-09-11 09:01:33.088371 aggnd 1158546564 R rec f42b3595-ff59-48f6-a348-6e43e51c7be4 +2024-09-11 09:01:33.143105 2024-09-11 09:01:33.143111 aggnd 115855365X R rec ebbe8efb-d9c4-44f7-86d3-111ad5fc366d +2024-09-11 09:01:33.220583 2024-09-11 09:01:33.220588 aggnd 1158555156 R rec 644a5aed-78e9-4a60-ab05-5dcbef4fa5d2 +2024-09-11 09:01:33.291949 2024-09-11 09:01:33.291954 aggnd 115855882 R rec b9f9fa3e-ed16-409b-8d1d-bf963f783c8b +2024-09-11 09:01:33.354654 2024-09-11 09:01:33.354659 aggnd 1158559259 R rec 5c852069-214e-4cbf-97c2-de23de92bd0f +2024-09-11 09:01:33.423509 2024-09-11 09:01:33.423513 aggnd 1158570945 R rec 9f8b72b0-b79c-418b-9051-6913f576ea62 +2024-09-11 09:01:33.476874 2024-09-11 09:01:33.476879 aggnd 1158574614 R rec a75fd9c5-9b93-4cc2-bbfe-ba659b01aec6 +2024-09-11 09:01:33.533468 2024-09-11 09:01:33.533474 aggnd 1158577125 R rec 8005bed0-bbfe-4238-b281-44c3dff4b367 +2024-09-11 09:01:33.590818 2024-09-11 09:01:33.590823 aggnd 1158624107 R rec 59902adf-0ded-4884-8a04-e96a9dfebefe +2024-09-11 09:01:33.644761 2024-09-11 09:01:33.644765 aggnd 1158716125 R rec c0e86f86-b7ec-4ed1-b01b-4a8798a715ed +2024-09-11 09:01:33.711559 2024-09-11 09:01:33.711564 aggnd 1158723458 R rec fc87cb28-134b-4b8b-8f7c-bfeb3b6b1269 +2024-09-11 09:01:33.798653 2024-09-11 09:01:33.798659 aggnd 1158741308 R rec 1cd06671-c8ac-47d2-bac5-f7dda2b2c00f +2024-09-11 09:01:33.861172 2024-09-11 09:01:33.861177 aggnd 1158818726 R rec 9a5802bc-4f5d-4109-baa2-0db0a532439d +2024-09-11 09:01:33.919384 2024-09-11 09:01:33.919389 aggnd 1158837534 R rec 174a2efc-1b2c-46ed-963f-3e1680675b8d +2024-09-11 09:01:33.974654 2024-09-11 09:01:33.97466 aggnd 1158866127 R rec fa4bd25a-06a5-4da7-a409-2fbe0ff73a23 +2024-09-11 09:01:34.024855 2024-09-11 09:01:34.024859 aggnd 1158918763 R rec f0fc1c5b-ac49-4808-95b0-13d9b2a57a55 +2024-09-11 09:01:34.086207 2024-09-11 09:01:34.086212 aggnd 1158920237 R rec 583f5f51-2267-4768-9275-c202d7b3cf99 +2024-09-11 09:01:34.140403 2024-09-11 09:01:34.140408 aggnd 1158922892 R rec 53d45f41-c914-4fc8-acf2-85e429eb3614 +2024-09-11 09:01:34.207938 2024-09-11 09:01:34.207944 aggnd 1158941145 R rec 6d9432c0-b12c-4be8-905d-05cf327b6e04 +2024-09-11 09:01:34.261466 2024-09-11 09:01:34.26147 aggnd 1158944675 R rec f2f2e848-fcf3-40a1-a7f6-dd0d00b0fbc9 +2024-09-11 09:01:34.31606 2024-09-11 09:01:34.316065 aggnd 1158955235 R rec 318e8e51-3cf7-4606-8d85-25db44d55e36 +2024-09-11 09:01:34.372814 2024-09-11 09:01:34.372819 aggnd 1158971117 R rec 0b7dda32-5214-44c0-9769-c3698c3b8db9 +2024-09-11 09:01:34.42767 2024-09-11 09:01:34.427674 aggnd 1159026750 R rec 230176d4-2b33-4603-9421-802c3c076bde +2024-09-11 09:01:34.480289 2024-09-11 09:01:34.480295 aggnd 1159034591 R rec cb6119ef-85e2-416d-8289-e7b0325fd301 +2024-09-11 09:01:34.53808 2024-09-11 09:01:34.538085 aggnd 1159046239 R rec 4ffc1295-4690-42e1-94a3-3f42a95fd208 +2024-09-11 09:01:34.596535 2024-09-11 09:01:34.59654 aggnd 1159064911 R rec bfc2c1f2-898b-4e30-8336-a89275d5b08b +2024-09-11 09:01:34.647423 2024-09-11 09:01:34.647428 aggnd 1159071373 R rec 30f38271-8133-4fc0-92ae-3e0f6ee3afb8 +2024-09-11 09:01:34.700308 2024-09-11 09:01:34.700313 aggnd 1159073880 R rec ee0ad8cd-ce70-4b6b-8d70-179aff092a18 +2024-09-11 09:01:34.753245 2024-09-11 09:01:34.75325 aggnd 1159080593 R rec 014bdf7d-bf18-44a6-9094-9b43c5960e3d +2024-09-11 09:01:34.808227 2024-09-11 09:01:34.808233 aggnd 1159104611 R rec b4d66778-b35d-47ae-abfb-222e6ff99937 +2024-09-11 09:01:34.864171 2024-09-11 09:01:34.864176 aggnd 1159119422 R rec acc77909-5ea3-433d-9c25-74f377cb6a71 +2024-09-11 09:01:34.918886 2024-09-11 09:01:34.918891 aggnd 1159135630 R rec 94634c21-9a89-4b20-a37c-cdb85b546d25 +2024-09-11 09:01:34.985363 2024-09-11 09:01:34.985368 aggnd 1159138117 R rec b28ed862-b9ce-436f-9f80-4d181a3dc9a2 +2024-09-11 09:01:35.048566 2024-09-11 09:01:35.048572 aggnd 1159153183 R rec 05a5550e-b487-4c9c-b815-092650cdef40 +2024-09-11 09:01:35.11539 2024-09-11 09:01:35.115396 aggnd 1159167451 R rec 314511e4-33a4-4713-aaa4-a157d0fff2ea +2024-09-11 09:01:35.170552 2024-09-11 09:01:35.170557 aggnd 1159213550 R rec a62df98a-737c-490b-94d2-81d559d70613 +2024-09-11 09:01:35.239421 2024-09-11 09:01:35.239426 aggnd 115921719X R rec a49f4f3c-ab20-4841-95fb-77ce61d8fcf7 +2024-09-11 09:01:35.319501 2024-09-11 09:01:35.319505 aggnd 1159260079 R rec 87633efe-2c73-4bcc-aa72-d68c0a5e7d6f +2024-09-11 09:01:35.374673 2024-09-11 09:01:35.374679 aggnd 1159260931 R rec 4d9b0423-cb58-42ed-8019-8cdfac630dc0 +2024-09-11 09:01:35.4495 2024-09-11 09:01:35.449505 aggnd 1159261407 R rec 46f4e9be-d011-4281-b984-afdd93500867 +2024-09-11 09:01:35.503393 2024-09-11 09:01:35.503398 aggnd 1159283095 R rec 7c97f288-7c2b-4255-b283-a13e5b338b96 +2024-09-11 09:01:35.566063 2024-09-11 09:01:35.566068 aggnd 1159284946 R rec c70bc1bd-0191-489b-9732-e1de4a8c3a16 +2024-09-11 09:01:35.63177 2024-09-11 09:01:35.631775 aggnd 1159288259 R rec d829627a-c7bc-443a-a657-16c98c32b949 +2024-09-11 09:01:35.687038 2024-09-11 09:01:35.687044 aggnd 1159531471 R rec 435d0aee-39a9-4dfb-b5b0-14205b6bd0aa +2024-09-11 09:01:35.741245 2024-09-11 09:01:35.741248 aggnd 1159712689 R rec c6795ae8-4e3a-4ef6-8c5a-20d3f4c7a64d +2024-09-11 09:01:35.802866 2024-09-11 09:01:35.802872 aggnd 1160106576 R rec ba18e99b-96da-493e-b28b-0bda424a2be2 +2024-09-11 09:01:35.85656 2024-09-11 09:01:35.856565 aggnd 1160217254 R rec ac36d088-015a-4578-b2d0-f2bfa9d0e79d +2024-09-11 09:01:35.917808 2024-09-11 09:01:35.917813 aggnd 1160325189 R rec 843d6979-f847-41f2-9949-0f49bac9510e +2024-09-11 09:01:35.979228 2024-09-11 09:01:35.979231 aggnd 116037202 R rec 9988af4f-a5d8-4a96-b6ac-73b7939cbcf7 +2024-09-11 09:01:36.035123 2024-09-11 09:01:36.035129 aggnd 116075899 R rec 027928ab-1ab6-40b3-8a50-16d426b23bce +2024-09-11 09:01:36.100149 2024-09-11 09:01:36.100154 aggnd 1160946140 R rec 1b6973a7-cbb9-447f-8022-be8347911d6f +2024-09-11 09:01:36.154934 2024-09-11 09:01:36.154938 aggnd 116102932X R rec 473bb12a-0aa3-4000-a12a-d2fcf4230a07 +2024-09-11 09:01:36.221796 2024-09-11 09:01:36.2218 aggnd 116120444 R rec 88853dc2-7363-4cd8-8c9d-c1e61990569a +2024-09-11 09:01:36.281448 2024-09-11 09:01:36.281453 aggnd 116144131X R rec 99806484-8353-4b27-a01e-99967583d94a +2024-09-11 09:01:36.337753 2024-09-11 09:01:36.337758 aggnd 116189673 R rec b04a3346-abf8-41c2-8a0f-350a264c4c76 +2024-09-11 09:01:36.389976 2024-09-11 09:01:36.389981 aggnd 1162523271 R rec e9cf8d2d-21ba-4391-b89a-f0e9e7d55ee3 +2024-09-11 09:01:36.44836 2024-09-11 09:01:36.448365 aggnd 1162968664 R rec 7892ae64-854a-40e7-a5bd-7f4a9de0e016 +2024-09-11 09:01:36.497629 2024-09-11 09:01:36.497634 aggnd 1163054186 R rec 18850cf4-1937-4a54-8057-bfbe23192d83 +2024-09-11 09:01:36.559717 2024-09-11 09:01:36.559723 aggnd 1163061921 R rec 25eb75a6-714c-4f4a-b8a7-1df1b1028044 +2024-09-11 09:01:36.628881 2024-09-11 09:01:36.628886 aggnd 116311054X R rec 507088b4-b3b7-46ae-aefd-151bf18c3e88 +2024-09-11 09:01:36.695481 2024-09-11 09:01:36.695487 aggnd 116348747 R rec c7381c89-3ffc-456f-8095-494e60cf1dbd +2024-09-11 09:01:36.772308 2024-09-11 09:01:36.772313 aggnd 116361816 R rec 33205c7f-361f-4e62-a2eb-d1f6f90a8c21 +2024-09-11 09:01:36.833186 2024-09-11 09:01:36.833191 aggnd 1163622265 R rec b2183dbb-fcf7-4f99-b145-a888810d4ef4 +2024-09-11 09:01:36.885157 2024-09-11 09:01:36.885162 aggnd 1163767662 R rec eadc265b-5b4b-439e-b171-b3cb894c05f2 +2024-09-11 09:01:36.93781 2024-09-11 09:01:36.937814 aggnd 116385103 R rec 315bb102-b0fa-4ab2-bce9-2a34cf1df911 +2024-09-11 09:01:36.993086 2024-09-11 09:01:36.993091 aggnd 116397451X R rec 229bc9d4-1581-477e-94ee-aa653646d45f +2024-09-11 09:01:37.050566 2024-09-11 09:01:37.050571 aggnd 1164191497 R rec f326e388-0ccf-46ae-904d-50282e2975be +2024-09-11 09:01:37.103805 2024-09-11 09:01:37.10381 aggnd 1164263269 R rec 033881c2-72ae-4b95-9096-ccc6c6d506b0 +2024-09-11 09:01:37.157648 2024-09-11 09:01:37.157653 aggnd 116439394 R rec e67208bd-b2a5-4546-b350-7ae66e84c357 +2024-09-11 09:01:37.213512 2024-09-11 09:01:37.213518 aggnd 116442743 R rec a6c68f86-bc47-464d-bd34-8a3eb548da78 +2024-09-11 09:01:37.264881 2024-09-11 09:01:37.264886 aggnd 1164502875 R rec 6aaf2b28-3755-4ed5-b8ac-e331654c8a30 +2024-09-11 09:01:37.316465 2024-09-11 09:01:37.31647 aggnd 1164710923 R rec 9d145ff8-d71a-4161-a4f9-cdf39a11e560 +2024-09-11 09:01:37.373353 2024-09-11 09:01:37.373358 aggnd 11647839X R rec a37e801f-9d66-400a-afa3-00af63cef669 +2024-09-11 09:01:37.423914 2024-09-11 09:01:37.423919 aggnd 116481536 R rec 39077b63-cdbf-44be-b72a-833bb83789a8 +2024-09-11 09:01:37.479401 2024-09-11 09:01:37.479407 aggnd 116493011 R rec a88b2ad1-1e54-4740-8795-32417c7842c5 +2024-09-11 09:01:37.535477 2024-09-11 09:01:37.535482 aggnd 1164996517 R rec 2ca14181-6736-4b3b-a314-e4684596280c +2024-09-11 09:01:37.592581 2024-09-11 09:01:37.592586 aggnd 1165187388 R rec 688b10b7-bc5b-432e-bfc0-264683d1a77a +2024-09-11 09:01:37.646554 2024-09-11 09:01:37.646559 aggnd 1165269503 R rec bf623b98-e0e1-4909-b8ec-1c3403febfc5 +2024-09-11 09:01:37.699488 2024-09-11 09:01:37.699493 aggnd 1165531615 R rec eae8d8cd-2864-449a-abe2-e3cf832d378f +2024-09-11 09:01:37.753342 2024-09-11 09:01:37.753347 aggnd 1165547821 R rec 5cf09117-26a7-4e93-a410-a0e4ab995b90 +2024-09-11 09:01:37.825868 2024-09-11 09:01:37.825873 aggnd 1165583534 R rec b1ce8923-e21a-4bae-bfb4-a23d74a6acb8 +2024-09-11 09:01:37.891999 2024-09-11 09:01:37.892004 aggnd 1165585391 R rec 7caadba9-1643-48ed-ba0c-55cfdeaf5e4d +2024-09-11 09:01:37.967362 2024-09-11 09:01:37.967367 aggnd 116582782 R rec 526d502a-4b04-451e-8cf2-2707887d2b24 +2024-09-11 09:01:38.020951 2024-09-11 09:01:38.020956 aggnd 116600233 R rec 0a2afdd1-033b-4e6f-8ab5-138db0f2d220 +2024-09-11 09:01:38.075588 2024-09-11 09:01:38.075593 aggnd 116601795 R rec dae211c7-ccc3-47f6-9217-daa6b7bf1d00 +2024-09-11 09:01:38.13873 2024-09-11 09:01:38.138735 aggnd 1166105709 R rec 3eb4f055-a233-4096-857b-a4a449e875d5 +2024-09-11 09:01:38.189939 2024-09-11 09:01:38.189944 aggnd 1166156494 R rec 96c1b285-65a1-43f4-bf47-3568681bf360 +2024-09-11 09:01:38.241674 2024-09-11 09:01:38.241679 aggnd 116629673 R rec 26ef44f6-4f13-4efb-9c53-5cbfb7c55335 +2024-09-11 09:01:38.293094 2024-09-11 09:01:38.2931 aggnd 116679875 R rec 8050a440-572c-4021-8c5a-e5a26d7a4d2e +2024-09-11 09:01:38.348857 2024-09-11 09:01:38.348861 aggnd 1166857204 R rec a4d5e17c-4446-498b-8ebc-bc3306e9e4f6 +2024-09-11 09:01:38.417799 2024-09-11 09:01:38.417804 aggnd 1166992330 R rec 022f2f21-899c-4081-82a4-3b407210f48e +2024-09-11 09:01:38.471276 2024-09-11 09:01:38.471281 aggnd 11671848X R rec e61fea5a-2d7d-4770-82cd-98f445f452bf +2024-09-11 09:01:38.539655 2024-09-11 09:01:38.53966 aggnd 116736410 R rec 576e9283-6e1d-4d45-98e9-1c9cfc966668 +2024-09-11 09:01:38.594088 2024-09-11 09:01:38.594094 aggnd 116755776 R rec a55fe4d8-583a-43c6-a67f-3596730c4655 +2024-09-11 09:01:38.645356 2024-09-11 09:01:38.645361 aggnd 1168165466 R rec 6c03ad44-dfa0-4d4b-b88d-325b6fdd8776 +2024-09-11 09:01:38.695406 2024-09-11 09:01:38.69541 aggnd 1168177111 R rec 27c9d945-4257-40c0-84bd-33e20ac4d4a1 +2024-09-11 09:01:38.748722 2024-09-11 09:01:38.748728 aggnd 116830565 R rec ec0eace4-8f34-48d2-b45c-a318a013af3d +2024-09-11 09:01:38.806832 2024-09-11 09:01:38.806838 aggnd 11683188X R rec 00aa6065-437f-4370-b3f5-ef73e6f64292 +2024-09-11 09:01:38.872197 2024-09-11 09:01:38.872202 aggnd 116864366X R rec 4c0dc964-ee82-4360-9c83-a71343d5e4ff +2024-09-11 09:01:38.936581 2024-09-11 09:01:38.936586 aggnd 1168683211 R rec 58762a8c-2057-450f-94e8-1d348f4139f6 +2024-09-11 09:01:38.98956 2024-09-11 09:01:38.989565 aggnd 116903953 R rec 2a2217a8-687f-472b-bd01-5f95eccc6b4c +2024-09-11 09:01:39.044339 2024-09-11 09:01:39.044344 aggnd 1169048099 R rec 3daccb17-a242-4ee8-b95f-3f72db7d5f87 +2024-09-11 09:01:39.098978 2024-09-11 09:01:39.098983 aggnd 1169139434 R rec d922ed1a-53b0-4535-97f1-c0deec713e4b +2024-09-11 09:01:39.153667 2024-09-11 09:01:39.153673 aggnd 1169173837 R rec 5c973ebc-9bbb-449b-9b50-e19ae945c9f6 +2024-09-11 09:01:39.237125 2024-09-11 09:01:39.23713 aggnd 1169226531 R rec d8f1efd9-ee6c-4ba4-808d-4dc2a8ae3c45 +2024-09-11 09:01:39.290671 2024-09-11 09:01:39.290677 aggnd 116934565 R rec 223c606a-aaa3-4bc7-8568-a5c3dcfb42d9 +2024-09-11 09:01:39.356752 2024-09-11 09:01:39.356756 aggnd 116986700 R rec 82820a61-aa1f-40f2-9fc3-2177a58bfb29 +2024-09-11 09:01:39.410521 2024-09-11 09:01:39.410525 aggnd 116991992 R rec 02616fc6-0fbd-437f-aaf3-ddddb1ac12b1 +2024-09-11 09:01:39.47132 2024-09-11 09:01:39.471325 aggnd 1169953743 R rec d63f504f-54d9-4d38-93f7-9d0059cc45e9 +2024-09-11 09:01:39.53313 2024-09-11 09:01:39.533135 aggnd 1169969305 R rec b9cc5947-504f-4ddb-a431-db1c0984278b +2024-09-11 09:01:39.584552 2024-09-11 09:01:39.584557 aggnd 1170278353 R rec edb370ce-56d6-487b-8356-db2e081d1daf +2024-09-11 09:01:39.645372 2024-09-11 09:01:39.645377 aggnd 1170426131 R rec 356584d2-b1b7-42dd-8a9d-7e200f5047c5 +2024-09-11 09:01:39.699168 2024-09-11 09:01:39.699174 aggnd 1170451594 R rec e862a463-68d1-4cc7-9fca-7b8d6062539b +2024-09-11 09:01:39.751312 2024-09-11 09:01:39.751333 aggnd 117054437 R rec eedac0da-303c-40c9-aa7b-87a2a1e440df +2024-09-11 09:01:39.809738 2024-09-11 09:01:39.809743 aggnd 1170618367 R rec 2a4cfeda-0dc5-4d92-8a8b-16f640709ba7 +2024-09-11 09:01:39.870816 2024-09-11 09:01:39.870821 aggnd 1170737064 R rec 8510219a-a66b-4722-b32a-da8da8faa81d +2024-09-11 09:01:39.926709 2024-09-11 09:01:39.926714 aggnd 1170837611 R rec 33322fdb-289f-4c5d-9d96-9b7940fdf27b +2024-09-11 09:01:39.979146 2024-09-11 09:01:39.979152 aggnd 1171152183 R rec 05ff48cb-7d00-46b3-8f71-06511397655d +2024-09-11 09:01:40.034831 2024-09-11 09:01:40.034836 aggnd 117125184X R rec b003831e-5e5c-404a-b77d-1db3f468fe7f +2024-09-11 09:01:40.089956 2024-09-11 09:01:40.089961 aggnd 117143553 R rec 44493407-df2a-4aa7-bd7e-338c9bb818ff +2024-09-11 09:01:40.146466 2024-09-11 09:01:40.14647 aggnd 117155608 R rec 0d2f6a99-2baf-4346-a62a-c0603d05c2c3 +2024-09-11 09:01:40.204655 2024-09-11 09:01:40.20466 aggnd 1171765010 R rec 4bcf32d9-cbfc-49ba-872b-737a7bf9d89e +2024-09-11 09:01:40.277864 2024-09-11 09:01:40.277869 aggnd 117186430 R rec 24c33381-9b0a-4466-b5e7-56f4e098119f +2024-09-11 09:01:40.335025 2024-09-11 09:01:40.335031 aggnd 1172001731 R rec f360516a-b96d-4317-8f1c-f7de78ab087a +2024-09-11 09:01:40.386044 2024-09-11 09:01:40.386049 aggnd 1172048657 R rec 22d1b2c6-8338-444f-b854-fb6fc33912d7 +2024-09-11 09:01:40.459821 2024-09-11 09:01:40.459826 aggnd 1172083541 R rec cf7d88de-6cdb-4cb2-9294-ceb6ac7d77e6 +2024-09-11 09:01:40.532771 2024-09-11 09:01:40.532775 aggnd 1172106339 R rec af4d49e1-1904-4704-b022-807938429317 +2024-09-11 09:01:40.588759 2024-09-11 09:01:40.588764 aggnd 1172300755 R rec b9fdb43d-d7e1-4c69-932a-6a61efe1b300 +2024-09-11 09:01:40.654505 2024-09-11 09:01:40.654509 aggnd 117233218 R rec da954b1b-a87d-492f-95aa-5380bacb7fac +2024-09-11 09:01:40.708593 2024-09-11 09:01:40.708598 aggnd 117249580 R rec 27cc11ec-addb-43dc-a13d-6be23084d2f8 +2024-09-11 09:01:40.76731 2024-09-11 09:01:40.767315 aggnd 1173303146 R rec 7535b5da-b06d-4e1f-9154-5298b0f124e5 +2024-09-11 09:01:40.826309 2024-09-11 09:01:40.826314 aggnd 1173330542 R rec 7237ea4a-cb3c-440f-a810-24a666aa97ee +2024-09-11 09:01:40.8959 2024-09-11 09:01:40.895905 aggnd 117352896 R rec bbbac04c-755c-4d50-bbbd-ac13d530eea1 +2024-09-11 09:01:40.950719 2024-09-11 09:01:40.950724 aggnd 117471178 R rec 43a2b07e-edea-4ae5-8962-f30760de9bc9 +2024-09-11 09:01:41.005922 2024-09-11 09:01:41.005927 aggnd 117480797 R rec fa222d68-7683-4b86-90fb-c8f0eae7ab36 +2024-09-11 09:01:41.059884 2024-09-11 09:01:41.059889 aggnd 117490555 R rec d9cfd73a-62b5-45ce-a69c-c32039745360 +2024-09-11 09:01:41.114855 2024-09-11 09:01:41.11486 aggnd 1175036641 R rec a1b160ad-979b-43a1-90c6-952246be0adc +2024-09-11 09:01:41.186409 2024-09-11 09:01:41.186413 aggnd 1175119865 R rec b09f975c-ac8a-40e0-9838-7ce44fe81196 +2024-09-11 09:01:41.240825 2024-09-11 09:01:41.24083 aggnd 117520705 R rec b45f451d-d23d-4b4d-b665-dad6f36a3fd2 +2024-09-11 09:01:41.29482 2024-09-11 09:01:41.294825 aggnd 1175431435 R rec 5926be88-76ea-4e30-a6f4-644dfa381649 +2024-09-11 09:01:41.351411 2024-09-11 09:01:41.351416 aggnd 117546720 R rec 6d6a9b3c-e636-446d-b121-c336ef51cbd3 +2024-09-11 09:01:41.413189 2024-09-11 09:01:41.413193 aggnd 1175643521 R rec 7673cc51-3c0a-47a7-b843-1ee4780d4e2c +2024-09-11 09:01:41.475076 2024-09-11 09:01:41.475081 aggnd 1175653861 R rec 31d83264-a0a6-4090-a196-546e8949df2c +2024-09-11 09:01:41.525872 2024-09-11 09:01:41.525877 aggnd 1176124900 R rec e6022357-ec18-4939-83cf-995f277bdd12 +2024-09-11 09:01:41.582782 2024-09-11 09:01:41.582786 aggnd 1176219189 R rec 6667ab13-ae82-41d1-b962-f9145a5e9396 +2024-09-11 09:01:41.642216 2024-09-11 09:01:41.642221 aggnd 1176442988 R rec 789bf632-a683-4a24-aa56-18c4c9c385fe +2024-09-11 09:01:41.696805 2024-09-11 09:01:41.69681 aggnd 117655570 R rec 77b3e9d9-61f4-44f2-952f-289ef10a6ddd +2024-09-11 09:01:41.752704 2024-09-11 09:01:41.752708 aggnd 1176847597 R rec 45b645c2-0748-4e8c-a8f1-1ca07f35195f +2024-09-11 09:01:41.840649 2024-09-11 09:01:41.840655 aggnd 117701408 R rec 87287dfb-4a6d-4957-a51f-8f2919ee249d +2024-09-11 09:01:41.909586 2024-09-11 09:01:41.90959 aggnd 1177093979 R rec 9b4a0a4e-a813-4d2e-a47c-57b13adc2332 +2024-09-11 09:01:41.963566 2024-09-11 09:01:41.96357 aggnd 117725293 R rec cc9daf87-964b-43f7-ad0a-9431f6caf1e5 +2024-09-11 09:01:42.018706 2024-09-11 09:01:42.018711 aggnd 1177717379 R rec 0861d48c-6b3a-4481-8d29-da2ef728480a +2024-09-11 09:01:42.077275 2024-09-11 09:01:42.07728 aggnd 1177904713 R rec f8bf9258-fd0b-41fa-96bb-10ef2c7bca81 +2024-09-11 09:01:42.133664 2024-09-11 09:01:42.13367 aggnd 1178017486 R rec 44353fbf-21c1-4310-a492-179b079e727c +2024-09-11 09:01:42.200517 2024-09-11 09:01:42.200521 aggnd 1178023370 R rec 7565beae-1a31-4dfc-9242-0147649fb01c +2024-09-11 09:01:42.25858 2024-09-11 09:01:42.258586 aggnd 1178350002 R rec a80bd2e0-0cfe-4b04-907c-84e34c862ef4 +2024-09-11 09:01:42.310738 2024-09-11 09:01:42.310744 aggnd 1178484009 R rec 9b7f7b7d-fd18-4878-b1ee-c544be325d07 +2024-09-11 09:01:42.369368 2024-09-11 09:01:42.369373 aggnd 1178833925 R rec 05d29cbc-f119-41cf-8bc0-79449c2c67b3 +2024-09-11 09:01:42.418577 2024-09-11 09:01:42.418582 aggnd 1179197992 R rec d772e2df-7096-402e-9c83-781253eb735e +2024-09-11 09:01:42.472273 2024-09-11 09:01:42.472279 aggnd 1179207440 R rec 9ec5c007-f3e2-44f7-8b74-f8c5fcc2c117 +2024-09-11 09:01:42.521441 2024-09-11 09:01:42.521446 aggnd 117948682X R rec d67e0fe7-182a-4ccc-9cfe-3b15e21af835 +2024-09-11 09:01:42.576711 2024-09-11 09:01:42.576717 aggnd 117971041X R rec 7ee86f64-9f61-47e2-9987-38189b8ad673 +2024-09-11 09:01:42.625854 2024-09-11 09:01:42.625859 aggnd 1179785266 R rec d7d9b83b-9d2d-43aa-bb26-d1a62b1aa64f +2024-09-11 09:01:42.675823 2024-09-11 09:01:42.675828 aggnd 1180539567 R rec 68a29031-a2c7-4cdd-9047-b95da379a2cb +2024-09-11 09:01:42.727189 2024-09-11 09:01:42.727193 aggnd 118068544X R rec 404bd2f6-10ca-4225-ba4a-62b13a88be34 +2024-09-11 09:01:42.774697 2024-09-11 09:01:42.774702 aggnd 118108093 R rec 48ea381e-240b-409e-89d3-ace752ff2152 +2024-09-11 09:01:42.82797 2024-09-11 09:01:42.827975 aggnd 1181153034 R rec 6f1b9f2b-7f5f-431a-aa15-9ea13d7e0ed8 +2024-09-11 09:01:42.890296 2024-09-11 09:01:42.890301 aggnd 1182338917 R rec c8ccab95-d550-455f-8d1b-b342a9225264 +2024-09-11 09:01:42.944738 2024-09-11 09:01:42.944744 aggnd 118247957X R rec a0217ee3-2a54-4811-9758-fb362aa3929a +2024-09-11 09:01:43.002494 2024-09-11 09:01:43.0025 aggnd 1183057687 R rec eb5e6caa-1edc-4864-92ba-ad3f55a44ba7 +2024-09-11 09:01:43.07053 2024-09-11 09:01:43.070535 aggnd 1183836740 R rec ddc6c43b-e414-4bb6-ba11-a2cb0cd94f27 +2024-09-11 09:01:43.122178 2024-09-11 09:01:43.122183 aggnd 1184599297 R rec 8f61b343-2db4-46e1-98fd-5f73b051782f +2024-09-11 09:01:43.213442 2024-09-11 09:01:43.213447 aggnd 1184634262 R rec 31b50c59-c40d-4093-bb12-7e8dc2adf33c +2024-09-11 09:01:43.272027 2024-09-11 09:01:43.272033 aggnd 1184827516 R rec b3d90b97-a1a5-474f-8098-faa5964a544b +2024-09-11 09:01:43.347197 2024-09-11 09:01:43.347203 aggnd 1185183302 R rec ba17d6b0-4c11-4840-8173-a577c176a2a2 +2024-09-11 09:01:43.400015 2024-09-11 09:01:43.40002 aggnd 1185191275 R rec b5a775d0-6466-41d4-82b7-8d303c91d6c6 +2024-09-11 09:01:43.451227 2024-09-11 09:01:43.451231 aggnd 118531867 R rec 7f472141-414d-4f16-acdc-dd21a5c9034f +2024-09-11 09:01:43.508062 2024-09-11 09:01:43.508068 aggnd 118544291X R rec 649577ed-0954-40bf-9a0e-5d96f4d1b74f +2024-09-11 09:01:43.56989 2024-09-11 09:01:43.569895 aggnd 1185450025 R rec dab46442-f584-4960-970a-9b73c1aad18e +2024-09-11 09:01:43.633987 2024-09-11 09:01:43.633992 aggnd 118553615 R rec c9f382ef-4056-4810-ba72-91f2b876a9bb +2024-09-11 09:01:43.686048 2024-09-11 09:01:43.686053 aggnd 118561693 R rec db490282-bc45-42ed-83df-9793803426ed +2024-09-11 09:01:43.741044 2024-09-11 09:01:43.741049 aggnd 1186072571 R rec c69b1b15-d038-473f-8c3e-2da82f6398e4 +2024-09-11 09:01:43.796856 2024-09-11 09:01:43.796861 aggnd 118608619X R rec 528024a0-c098-43bd-b731-868b4ef1ff26 +2024-09-11 09:01:43.867127 2024-09-11 09:01:43.867132 aggnd 118684264 R rec 4a0e50c0-6b89-4fe5-94ca-b474e1a5051d +2024-09-11 09:01:43.924978 2024-09-11 09:01:43.924983 aggnd 1187151726 R rec 6851b9a2-1316-49c0-8415-ea3e1d48a515 +2024-09-11 09:01:43.974562 2024-09-11 09:01:43.974567 aggnd 118716328 R rec 38de8479-564a-4f23-983c-5bc121bdc69e +2024-09-11 09:01:44.028742 2024-09-11 09:01:44.028748 aggnd 1187368121 R rec 093cf9ad-1c84-45b3-bb7c-1317d00f6ae8 +2024-09-11 09:01:44.094742 2024-09-11 09:01:44.094747 aggnd 1187537691 R rec 1d962820-5654-4dba-a629-567af644c13c +2024-09-11 09:01:44.147111 2024-09-11 09:01:44.147117 aggnd 1187670472 R rec 4d21ee58-c2f8-45ce-91db-8af1f2eef16c +2024-09-11 09:01:44.198406 2024-09-11 09:01:44.198412 aggnd 1187679194 R rec 2dd915e4-fccf-4dd3-8f22-3017f52a5fd5 +2024-09-11 09:01:44.25879 2024-09-11 09:01:44.258795 aggnd 1187985945 R rec 983b0a9e-5bfd-4d04-bb8b-a857bbef004f +2024-09-11 09:01:44.30986 2024-09-11 09:01:44.309865 aggnd 118818805 R rec 12b39861-4c0d-41e0-99df-84c682786afe +2024-09-11 09:01:44.403164 2024-09-11 09:01:44.403169 aggnd 118842218 R rec a21ae57a-3765-4f67-8c9c-7aaa6f2b29c8 +2024-09-11 09:01:44.45693 2024-09-11 09:01:44.456934 aggnd 1188483552 R rec 40f1101e-18e4-4631-8cce-4033291f28fc +2024-09-11 09:01:44.516542 2024-09-11 09:01:44.516547 aggnd 118857703 R rec 7074b5db-6ca6-4ae5-8a2a-7551eaf5f11b +2024-09-11 09:01:44.57136 2024-09-11 09:01:44.571365 aggnd 1188583360 R rec a471ae45-0232-4456-af2d-905ab8221aa0 +2024-09-11 09:01:44.623448 2024-09-11 09:01:44.623452 aggnd 118865900 R rec 76b8df23-bdd9-4cdf-8e73-9c9698209db9 +2024-09-11 09:01:44.679993 2024-09-11 09:01:44.679998 aggnd 118873768 R rec 803d61e1-331d-4b99-be6a-8c13872df3b2 +2024-09-11 09:01:44.74417 2024-09-11 09:01:44.744175 aggnd 1188747894 R rec 92a3fdcf-1fb0-4f58-9971-9b7c949eec53 +2024-09-11 09:01:44.793362 2024-09-11 09:01:44.793368 aggnd 118908642 R rec dfc62e5a-b84f-4ae6-8043-2edd9c84b53c +2024-09-11 09:01:44.845719 2024-09-11 09:01:44.845726 aggnd 1189098970 R rec 542d5364-0284-4a50-bd1e-38d1b248dc79 +2024-09-11 09:01:44.89684 2024-09-11 09:01:44.896845 aggnd 118914634 R rec e7b9d4e0-f884-4ace-9335-cd168c7e6793 +2024-09-11 09:01:44.954072 2024-09-11 09:01:44.954076 aggnd 1189236710 R rec 152b7ea2-7a8a-4388-bc9c-becb280a4c33 +2024-09-11 09:01:45.026614 2024-09-11 09:01:45.026619 aggnd 1189274361 R rec ff6352e0-7842-4e26-94f4-39c80803df5e +2024-09-11 09:01:45.079687 2024-09-11 09:01:45.079693 aggnd 118960032 R rec 1ef96b04-f936-4e3f-a1f0-5b42295ddc05 +2024-09-11 09:01:45.13025 2024-09-11 09:01:45.130256 aggnd 118960308X R rec aa588771-f97e-4c94-b614-0bde5fcdd120 +2024-09-11 09:01:45.178369 2024-09-11 09:01:45.178374 aggnd 118995316 R rec 904601dc-bb4b-4510-95ae-f636d9180d85 +2024-09-11 09:01:45.236588 2024-09-11 09:01:45.236593 aggnd 1190043440 R rec 75398aa6-21f7-45cc-a6c3-06b46c5dc61b +2024-09-11 09:01:45.289997 2024-09-11 09:01:45.290001 aggnd 119007460 R rec 29ddcbf1-2f47-4d7a-b3a2-b2af316e6b20 +2024-09-11 09:01:45.349039 2024-09-11 09:01:45.349044 aggnd 119009307 R rec 1186d992-9313-4a0d-9665-418b160ce87a +2024-09-11 09:01:45.401595 2024-09-11 09:01:45.4016 aggnd 1190205149 R rec a1a1b490-afc9-44a5-9789-d355a630387c +2024-09-11 09:01:45.45214 2024-09-11 09:01:45.452145 aggnd 119022826 R rec e3770cef-02b6-4092-a091-2581e235676d +2024-09-11 09:01:45.50733 2024-09-11 09:01:45.507334 aggnd 119033437 R rec a0de9311-4638-4765-a5fe-af2d26f3c909 +2024-09-11 09:01:45.564887 2024-09-11 09:01:45.564892 aggnd 1190386577 R rec 1fb63c05-0e1b-4469-b7f7-7494765ace16 +2024-09-11 09:01:45.632583 2024-09-11 09:01:45.632589 aggnd 1190392402 R rec 23b988a5-ad39-4f80-b8ac-87e698245af7 +2024-09-11 09:01:45.68378 2024-09-11 09:01:45.683785 aggnd 11904241X R rec dae0eaca-96af-469d-a237-b362d7c64593 +2024-09-11 09:01:45.766747 2024-09-11 09:01:45.766752 aggnd 1190664518 R rec 39315cb4-064a-4e00-ad85-faf2ac0996b8 +2024-09-11 09:01:45.825194 2024-09-11 09:01:45.8252 aggnd 1190675692 R rec 27173b70-9c3d-49a2-ae85-bbfb5ebb1631 +2024-09-11 09:01:45.887929 2024-09-11 09:01:45.887934 aggnd 119077671 R rec 2fffc618-d6bb-4d5a-adf0-053161999698 +2024-09-11 09:01:45.940214 2024-09-11 09:01:45.940219 aggnd 1190845555 R rec 28865de9-4abb-4d5e-977b-91bf45c370aa +2024-09-11 09:01:45.99554 2024-09-11 09:01:45.995545 aggnd 1190905671 R rec 1eef337b-68d8-4c2e-aa26-2a253b8aa54a +2024-09-11 09:01:46.050801 2024-09-11 09:01:46.050806 aggnd 119090943X R rec 3758e0cb-5a62-468c-afa6-7d005e22bcd3 +2024-09-11 09:01:46.118487 2024-09-11 09:01:46.118492 aggnd 119136228 R rec 32461151-b5e5-4b1d-91bb-b0b2e3aa83ce +2024-09-11 09:01:46.173643 2024-09-11 09:01:46.173649 aggnd 119161796 R rec 93f1ebf5-7686-4995-97fc-ea473d6434a7 +2024-09-11 09:01:46.256025 2024-09-11 09:01:46.25603 aggnd 1191853187 R rec 199be9bd-8df2-4082-9ead-0e35e7ec749c +2024-09-11 09:01:46.306157 2024-09-11 09:01:46.306162 aggnd 119219816 R rec 82a439d1-c3cf-44d7-bbff-cf174b676b57 +2024-09-11 09:01:46.376732 2024-09-11 09:01:46.376737 aggnd 1192403959 R rec 94d4a486-47df-478b-a3f1-03571b43879f +2024-09-11 09:01:46.484376 2024-09-11 09:01:46.48438 aggnd 1192518470 R rec 2035c060-2f03-42c2-9f15-1327797fa199 +2024-09-11 09:01:46.54282 2024-09-11 09:01:46.542823 aggnd 119255537 R rec bd41d547-f550-4e4c-8110-10593f9fff26 +2024-09-11 09:01:46.59895 2024-09-11 09:01:46.598954 aggnd 1192852273 R rec 515bf3a0-54a7-4a29-8abb-5f14a8080f43 +2024-09-11 09:01:46.65685 2024-09-11 09:01:46.656855 aggnd 1192950399 R rec a856b644-b927-4c4f-8316-992d132ed180 +2024-09-11 09:01:46.707213 2024-09-11 09:01:46.707218 aggnd 1193659566 R rec f8460549-a416-4fa1-9824-855a13f9b167 +2024-09-11 09:01:46.760129 2024-09-11 09:01:46.760135 aggnd 1193660688 R rec 50013e7b-cd76-4892-95b1-0d03c6306eb4 +2024-09-11 09:01:46.816691 2024-09-11 09:01:46.816696 aggnd 1193684374 R rec d1008c7b-5e49-4a96-8b76-5a55a3a24258 +2024-09-11 09:01:46.868978 2024-09-11 09:01:46.868983 aggnd 1193701163 R rec f956dbb7-6b64-4166-a7d9-5b4431c4c76f +2024-09-11 09:01:46.921477 2024-09-11 09:01:46.921482 aggnd 119380439 R rec ed8a0880-ca49-455f-8eae-f0353cfd937e +2024-09-11 09:01:46.97266 2024-09-11 09:01:46.972665 aggnd 119411679 R rec da66fd05-3c23-4b12-a558-ba11c45a570f +2024-09-11 09:01:47.027912 2024-09-11 09:01:47.027918 aggnd 1194409997 R rec 586d6157-218a-4315-8016-9c0514958929 +2024-09-11 09:01:47.078399 2024-09-11 09:01:47.078403 aggnd 119443988 R rec 3bf5bac7-0d29-4141-9740-123a425d8d5d +2024-09-11 09:01:47.137727 2024-09-11 09:01:47.137731 aggnd 119464942 R rec 9ceb8e09-3f07-4c6f-855d-5b5feaacc27a +2024-09-11 09:01:47.212637 2024-09-11 09:01:47.212642 aggnd 1194663192 R rec 353018d9-3c94-4dcd-90db-0437a221350d +2024-09-11 09:01:47.267051 2024-09-11 09:01:47.267055 aggnd 11947428X R rec b8bbfab3-241a-4a61-a4cf-63b9b95d5380 +2024-09-11 09:01:47.332763 2024-09-11 09:01:47.332769 aggnd 119499363 R rec 87d28e5a-00f3-4c41-9477-4aa9336762ff +2024-09-11 09:01:47.387638 2024-09-11 09:01:47.387643 aggnd 119508516 R rec 47c3a82b-42a2-4d74-8657-2873122c5779 +2024-09-11 09:01:47.43864 2024-09-11 09:01:47.438645 aggnd 119537087 R rec 8265331c-931a-4eb4-acd4-c29cff44a106 +2024-09-11 09:01:47.492708 2024-09-11 09:01:47.492714 aggnd 119552914 R rec 375a1cf3-56d6-4a7c-bd94-2a3bcdc6c4f4 +2024-09-11 09:01:47.569693 2024-09-11 09:01:47.569699 aggnd 119559382 R rec c7876e54-acae-4a7f-9858-cdc882cceb9a +2024-09-11 09:01:47.662236 2024-09-11 09:01:47.662242 aggnd 1195625049 R rec 023da8fa-2c6c-4fe3-a828-896725f32777 +2024-09-11 09:01:47.83085 2024-09-11 09:01:47.830855 aggnd 1195806868 R rec e13085d4-c3d6-4ea1-a7b5-6fb2853c21f0 +2024-09-11 09:01:47.89699 2024-09-11 09:01:47.896995 aggnd 1196648964 R rec b8a2d21f-b541-4ff0-8c57-4b72529e4a5c +2024-09-11 09:01:47.953888 2024-09-11 09:01:47.953893 aggnd 119724952 R rec 1c7d571e-568b-4b4d-8a26-bc41dc6b3804 +2024-09-11 09:01:48.00855 2024-09-11 09:01:48.008556 aggnd 1197312137 R rec 3bd679da-6a07-4e64-82e1-53bd6e1594a5 +2024-09-11 09:01:48.060372 2024-09-11 09:01:48.060377 aggnd 1197337660 R rec 10ec3465-c79c-4822-9780-3658c7ed80da +2024-09-11 09:01:48.113381 2024-09-11 09:01:48.113386 aggnd 1197621814 R rec 4abcf890-09b3-4149-9b62-472914da865c +2024-09-11 09:01:48.168883 2024-09-11 09:01:48.168888 aggnd 1197715096 R rec 2a214f8d-7cf3-4428-9e36-eb7f6ee1fcee +2024-09-11 09:01:48.219939 2024-09-11 09:01:48.219944 aggnd 1197826912 R rec 8959b730-aa67-473a-9ad5-8c7bc03a281f +2024-09-11 09:01:48.278209 2024-09-11 09:01:48.278213 aggnd 11982387X R rec 82811958-bd79-4afc-8961-28064f9d400d +2024-09-11 09:01:48.333375 2024-09-11 09:01:48.33338 aggnd 1198439084 R rec b8e44ec2-ffaf-4a52-9fcb-e1829bb8bf24 +2024-09-11 09:01:48.388534 2024-09-11 09:01:48.388539 aggnd 11987251X R rec d558e0e2-4106-49d2-9a12-bc50d18bae46 +2024-09-11 09:01:48.440084 2024-09-11 09:01:48.440089 aggnd 1199011495 R rec 800c6b3c-9deb-44c6-86ad-d3655042a02c +2024-09-11 09:01:48.497272 2024-09-11 09:01:48.497277 aggnd 1199119393 R rec ed68aa70-c015-4fb1-96fc-6bf509761899 +2024-09-11 09:01:48.550608 2024-09-11 09:01:48.550613 aggnd 1199276545 R rec a9044afe-a780-457b-98ff-cef4558184c9 +2024-09-11 09:01:48.604213 2024-09-11 09:01:48.604218 aggnd 1199967009 R rec d4590264-bab6-4dc4-855a-8325867e4b2e +2024-09-11 09:01:48.670511 2024-09-11 09:01:48.670515 aggnd 1200376331 R rec fb0ccc6f-5b21-4108-8b81-6810ab6d19f2 +2024-09-11 09:01:48.726023 2024-09-11 09:01:48.726028 aggnd 1200558375 R rec e047024e-f60a-4944-96fc-b9ca139d0f62 +2024-09-11 09:01:48.786831 2024-09-11 09:01:48.786836 aggnd 120095785 R rec e94320fb-daef-4b5a-81c0-e02ae0e9764b +2024-09-11 09:01:48.837814 2024-09-11 09:01:48.837819 aggnd 1201178835 R rec bbcc1b81-4441-4bae-bedf-ed059d82f4a0 +2024-09-11 09:01:48.893039 2024-09-11 09:01:48.893044 aggnd 120175118 R rec ab65f7da-84a2-4355-a911-30736bbfa679 +2024-09-11 09:01:48.952276 2024-09-11 09:01:48.952281 aggnd 120175533 R rec 56066af0-f36c-42a0-855c-5c7d373afd4b +2024-09-11 09:01:49.005678 2024-09-11 09:01:49.005683 aggnd 1201779243 R rec a8c54b6a-87b6-4c04-a8c2-7ffea4986a7b +2024-09-11 09:01:49.07217 2024-09-11 09:01:49.072175 aggnd 1201917980 R rec 0fa3a8d4-38bd-4765-8be5-e748ed67a5e0 +2024-09-11 09:01:49.135457 2024-09-11 09:01:49.135462 aggnd 120249561 R rec 0a2f8465-18da-4b4d-a002-e24141199804 +2024-09-11 09:01:49.191043 2024-09-11 09:01:49.191048 aggnd 120268081X R rec 120436bd-2b4c-4392-b517-f56a75a0b4ac +2024-09-11 09:01:49.258428 2024-09-11 09:01:49.258434 aggnd 120284952 R rec d69542ba-dfa3-4d8e-8438-3c97e7ebc76a +2024-09-11 09:01:49.314844 2024-09-11 09:01:49.314849 aggnd 1202884679 R rec 536d9705-3747-45a4-99bb-c6c0b89ebcaa +2024-09-11 09:01:49.371334 2024-09-11 09:01:49.371337 aggnd 12031603X R rec c90a5e35-6ea3-420a-8a58-d2417ef1b545 +2024-09-11 09:01:49.432782 2024-09-11 09:01:49.432787 aggnd 120343525 R rec 44f717d4-dfab-43c5-8fa2-bbd2f5dcd218 +2024-09-11 09:01:49.48401 2024-09-11 09:01:49.484015 aggnd 120355973 R rec c6029889-f901-40d1-974b-78618a524f9f +2024-09-11 09:01:49.546606 2024-09-11 09:01:49.546611 aggnd 1203576099 R rec e4b3cd6e-249e-4e90-a778-73b800ef40e2 +2024-09-11 09:01:49.601793 2024-09-11 09:01:49.601798 aggnd 1203731949 R rec 4cfca1d5-5294-4bd6-9e3d-ec20f7727c50 +2024-09-11 09:01:49.660102 2024-09-11 09:01:49.660107 aggnd 1204063087 R rec 828ee7df-17ec-44a8-aa3b-446002ee1eec +2024-09-11 09:01:49.721312 2024-09-11 09:01:49.721317 aggnd 120415693X R rec fe7b919b-f413-45bf-9d4f-39d3b2a0cd0a +2024-09-11 09:01:49.779424 2024-09-11 09:01:49.779429 aggnd 1204462666 R rec 8253251a-12a3-4103-868f-3d3d94585ac3 +2024-09-11 09:01:49.829453 2024-09-11 09:01:49.829458 aggnd 120473801 R rec a6879d7d-5132-4190-ac1c-c69c0d27cf52 +2024-09-11 09:01:49.881116 2024-09-11 09:01:49.881122 aggnd 1204866740 R rec a6a25cf7-a00c-4324-a69e-f51b8eb7187a +2024-09-11 09:01:49.940579 2024-09-11 09:01:49.940584 aggnd 1204875901 R rec 24c6a9d2-b253-453b-a6ec-f03c41dcf621 +2024-09-11 09:01:49.991929 2024-09-11 09:01:49.991935 aggnd 120498464 R rec 1580b973-1662-4a50-a18c-deb0cecfcae8 +2024-09-11 09:01:50.049902 2024-09-11 09:01:50.049907 aggnd 120539544X R rec 70e809f9-d5b3-48c6-8840-21fb206a1d23 +2024-09-11 09:01:50.117019 2024-09-11 09:01:50.117023 aggnd 120543125 R rec b5078842-332a-48e8-81d8-fcd13372a175 +2024-09-11 09:01:50.175785 2024-09-11 09:01:50.17579 aggnd 120554682 R rec 573bcb1a-f0cc-47ce-82f1-ec74d6630fb4 +2024-09-11 09:01:50.229642 2024-09-11 09:01:50.229646 aggnd 1205764232 R rec 4c4c2430-5efa-4bd1-9bf7-f9a653999267 +2024-09-11 09:01:50.283073 2024-09-11 09:01:50.283077 aggnd 1205836233 R rec 8f41d522-1543-432a-9f02-742a74b1136c +2024-09-11 09:01:50.346893 2024-09-11 09:01:50.346898 aggnd 120596067 R rec 5fd6744c-9e45-4304-9ce5-c5d3d20339a1 +2024-09-11 09:01:50.398945 2024-09-11 09:01:50.39895 aggnd 1206199024 R rec 61246d8a-114d-4e86-9dee-90589a806bb9 +2024-09-11 09:01:50.462395 2024-09-11 09:01:50.462401 aggnd 1206214643 R rec 3b5d1f5e-8af3-41a8-9d84-594086bf24ad +2024-09-11 09:01:50.51016 2024-09-11 09:01:50.510165 aggnd 1206297964 R rec 97825a67-853f-4489-9403-91160e59bfee +2024-09-11 09:01:50.561051 2024-09-11 09:01:50.561056 aggnd 120661144 R rec f0fd9341-71c9-4195-9d53-7ef28f09ed26 +2024-09-11 09:01:50.617678 2024-09-11 09:01:50.617683 aggnd 1206889632 R rec 5b90bf84-65a4-4181-a182-2d1dcb01998c +2024-09-11 09:01:50.67848 2024-09-11 09:01:50.678484 aggnd 1206932619 R rec dd812c56-c1d6-4bd9-894d-d675ece6511c +2024-09-11 09:01:50.743266 2024-09-11 09:01:50.743272 aggnd 120704463 R rec 872bb9b4-92c6-4c5b-8b62-93a6f9ebc514 +2024-09-11 09:01:50.795629 2024-09-11 09:01:50.795635 aggnd 1207293849 R rec 1f82bd6d-3c0d-4e84-9264-352851489af6 +2024-09-11 09:01:50.846334 2024-09-11 09:01:50.846338 aggnd 1207338478 R rec dc0e452f-46bf-4c12-bcf3-533ea0de8720 +2024-09-11 09:01:50.896336 2024-09-11 09:01:50.896341 aggnd 1207445045 R rec 5b81225c-d6ca-4df3-9c50-e7803bd2cb1c +2024-09-11 09:01:50.949628 2024-09-11 09:01:50.949633 aggnd 1207474568 R rec 13081117-bbf1-494b-886a-8cd679d0036a +2024-09-11 09:01:51.007578 2024-09-11 09:01:51.007583 aggnd 120756455 R rec 19b0af8c-1b86-4dce-b950-f226854305b0 +2024-09-11 09:01:51.074599 2024-09-11 09:01:51.074605 aggnd 120759241 R rec 2bb320dc-3dbd-4038-bdb3-0cf0248b0f14 +2024-09-11 09:01:51.130604 2024-09-11 09:01:51.130608 aggnd 120824261X R rec 9b89beb2-b543-4b01-a6c2-adbaadc42c19 +2024-09-11 09:01:51.178667 2024-09-11 09:01:51.178672 aggnd 1208406337 R rec 9505d3cd-fc92-4b7a-9883-665c7b679b1c +2024-09-11 09:01:51.231648 2024-09-11 09:01:51.231654 aggnd 1208648632 R rec b49f16f3-a8d9-467a-b746-ee91f34507f6 +2024-09-11 09:01:51.289914 2024-09-11 09:01:51.289919 aggnd 1208728474 R rec 692f46f5-f544-4004-815d-84372ebc4dcf +2024-09-11 09:01:51.344249 2024-09-11 09:01:51.344254 aggnd 1208923765 R rec af3b4c82-6c06-4dcc-8554-fa175a699e6f +2024-09-11 09:01:51.401015 2024-09-11 09:01:51.401021 aggnd 1209087162 R rec 87548f64-125f-4565-a4a5-84a664965300 +2024-09-11 09:01:51.470801 2024-09-11 09:01:51.470806 aggnd 120917661 R rec 6f0a1247-0cbc-49f6-90f6-e57643903ee5 +2024-09-11 09:01:51.527301 2024-09-11 09:01:51.527307 aggnd 1209584417 R rec 09aae95e-4dde-44a1-bd3e-2f586b6f135b +2024-09-11 09:01:51.582114 2024-09-11 09:01:51.582118 aggnd 1209711753 R rec 86c15e22-97ee-4c33-a98b-0929403863ec +2024-09-11 09:01:51.633247 2024-09-11 09:01:51.63325 aggnd 120981238 R rec d47e686d-f2a8-4f5c-b2bd-3ce230752610 +2024-09-11 09:01:51.688511 2024-09-11 09:01:51.688517 aggnd 1209907445 R rec 1c1ccc5d-85e1-462f-a15e-62b4d0a586b0 +2024-09-11 09:01:51.740133 2024-09-11 09:01:51.740138 aggnd 1209954184 R rec 6082007f-3c6b-4b28-94c7-52bee36635e9 +2024-09-11 09:01:51.793335 2024-09-11 09:01:51.79334 aggnd 1209976218 R rec 6ea2b9a9-bf7c-4ba8-8b01-49332a00aab4 +2024-09-11 09:01:51.855638 2024-09-11 09:01:51.855643 aggnd 121017206 R rec 47de6b47-214b-41c4-b0f0-06ce34a58867 +2024-09-11 09:01:51.908101 2024-09-11 09:01:51.908107 aggnd 121042413 R rec 844b95ba-b2ab-427b-bb7e-5e8f40a2c6b8 +2024-09-11 09:01:51.97224 2024-09-11 09:01:51.972244 aggnd 121068439 R rec 81580b3d-cd68-487d-98c4-60ecef1747b0 +2024-09-11 09:01:52.038856 2024-09-11 09:01:52.038861 aggnd 1210872188 R rec fbdc7762-8b3e-4f57-86a0-0c16e23d3c7c +2024-09-11 09:01:52.100533 2024-09-11 09:01:52.100538 aggnd 1210955601 R rec cad54ce2-2efc-4461-a9c9-ff5e67eeff87 +2024-09-11 09:01:52.158371 2024-09-11 09:01:52.158376 aggnd 1210962721 R rec a86c2640-4e1c-4135-87b8-167e1449d86d +2024-09-11 09:01:52.209635 2024-09-11 09:01:52.209641 aggnd 1211035360 R rec aa70c58b-71ed-4d86-9f7a-7a12f092af83 +2024-09-11 09:01:52.264857 2024-09-11 09:01:52.264863 aggnd 1211358380 R rec 53ee1ab5-9d18-4e56-b631-9abfb848b60d +2024-09-11 09:01:52.318118 2024-09-11 09:01:52.318123 aggnd 1211576035 R rec a985e9d0-e92a-412b-a548-60daaf35e0a6 +2024-09-11 09:01:52.375775 2024-09-11 09:01:52.375781 aggnd 121163393 R rec 9d5bbffe-ce8c-4c50-8918-e92905c3e29e +2024-09-11 09:01:52.425055 2024-09-11 09:01:52.42506 aggnd 1211685918 R rec 7d5f3ff4-a6b0-4a16-8483-a7ce45cf1250 +2024-09-11 09:01:52.4752 2024-09-11 09:01:52.475204 aggnd 1211707628 R rec bb31b14e-f0ed-4c98-8314-25d9f43533cf +2024-09-11 09:01:52.527453 2024-09-11 09:01:52.527457 aggnd 1211767892 R rec e039f1be-124e-4d43-b35f-dae12c25df9b +2024-09-11 09:01:52.578629 2024-09-11 09:01:52.578634 aggnd 1211775216 R rec 13b03120-56d0-4b94-a0b3-b9cd4feb9434 +2024-09-11 09:01:52.635052 2024-09-11 09:01:52.635056 aggnd 1212074939 R rec 857735fc-9d21-4463-9d28-72289b046de5 +2024-09-11 09:01:52.685509 2024-09-11 09:01:52.685512 aggnd 1212115716 R rec b53998f8-0333-49bc-ac55-b1ae58e83b22 +2024-09-11 09:01:52.743248 2024-09-11 09:01:52.743252 aggnd 1212533003 R rec c5b20f73-ba48-48b9-92a5-96c45777c8e0 +2024-09-11 09:01:52.798111 2024-09-11 09:01:52.798116 aggnd 1212537750 R rec 16fc00b8-4c0e-46b3-af55-2a18784f19b4 +2024-09-11 09:01:52.853731 2024-09-11 09:01:52.853736 aggnd 121259927 R rec f776c50a-9c24-4012-8e78-61dd32646a9e +2024-09-11 09:01:52.920267 2024-09-11 09:01:52.920272 aggnd 1212602552 R rec a34102f2-0427-43a2-84c8-13dc60a230dd +2024-09-11 09:01:52.981886 2024-09-11 09:01:52.981891 aggnd 1213248760 R rec d2198ded-3c33-4ec4-b954-b723cf05c184 +2024-09-11 09:01:53.049314 2024-09-11 09:01:53.04932 aggnd 1213263360 R rec 801865db-9125-4db1-b35f-752fa11b41c5 +2024-09-11 09:01:53.125829 2024-09-11 09:01:53.125834 aggnd 1213396700 R rec 28a6240d-bc3f-4529-9245-4940b98cd1e4 +2024-09-11 09:01:53.175503 2024-09-11 09:01:53.175508 aggnd 1213491738 R rec 87eb966c-f560-4646-b62d-f7213d6ca4d7 +2024-09-11 09:01:53.231028 2024-09-11 09:01:53.231033 aggnd 121376621 R rec 86e70554-6e40-4411-ac94-c6e5adcc8f00 +2024-09-11 09:01:53.284471 2024-09-11 09:01:53.284476 aggnd 121432467 R rec 2fea5f73-c4cb-4db0-8522-e95de2625bec +2024-09-11 09:01:53.336669 2024-09-11 09:01:53.336674 aggnd 121455637 R rec ebcf97e4-386d-4bd6-bd90-fee63cda6643 +2024-09-11 09:01:53.38783 2024-09-11 09:01:53.387834 aggnd 1215224869 R rec b8e1f647-f3a9-4abe-9032-b389e05ccb45 +2024-09-11 09:01:53.488178 2024-09-11 09:01:53.488182 aggnd 1215239556 R rec dec2dc06-ae34-4717-ba2b-f3175aaef513 +2024-09-11 09:01:53.539628 2024-09-11 09:01:53.539632 aggnd 121552756 R rec 3a01bc17-04cd-4e88-b82d-9572c0336bdd +2024-09-11 09:01:53.592494 2024-09-11 09:01:53.592499 aggnd 1215719418 R rec 7e527be8-9085-41ad-b8a7-3574ff185e7f +2024-09-11 09:01:53.643747 2024-09-11 09:01:53.643752 aggnd 1216057184 R rec 5633fe25-0591-40d0-a4ca-5827199a7b06 +2024-09-11 09:01:53.692872 2024-09-11 09:01:53.692877 aggnd 1216511039 R rec 21b42a21-9569-4caa-98e7-b67f79bd8fea +2024-09-11 09:01:53.75055 2024-09-11 09:01:53.750555 aggnd 12167410X R rec 66059267-9791-43bd-a946-b4ed09991a00 +2024-09-11 09:01:53.800784 2024-09-11 09:01:53.80079 aggnd 1217064974 R rec cbc02711-5901-45f3-9c53-ed2e05b5b9a0 +2024-09-11 09:01:53.863045 2024-09-11 09:01:53.86305 aggnd 121710696 R rec 678c0ace-03d0-4a90-ba51-92009e0856df +2024-09-11 09:01:53.917625 2024-09-11 09:01:53.91763 aggnd 12172249X R rec 883dacd5-d133-4134-a690-58af2101ced1 +2024-09-11 09:01:53.967341 2024-09-11 09:01:53.967346 aggnd 12173692X R rec 8a925c9f-ed8d-4850-bc4d-d511fec8e738 +2024-09-11 09:01:54.021629 2024-09-11 09:01:54.021635 aggnd 121808173 R rec 873aeabe-600a-4ed6-a5a5-b0590cc01516 +2024-09-11 09:01:54.077228 2024-09-11 09:01:54.077233 aggnd 1218087730 R rec 7c42e254-7586-411e-96a1-81ca75251261 +2024-09-11 09:01:54.131383 2024-09-11 09:01:54.131388 aggnd 1218187433 R rec 7575bf8a-30af-4724-8921-435f9b98303b +2024-09-11 09:01:54.188591 2024-09-11 09:01:54.188596 aggnd 1218379219 R rec 85474ab1-fa03-4407-99e8-7005e943db27 +2024-09-11 09:01:54.242007 2024-09-11 09:01:54.242011 aggnd 1218472189 R rec 45201206-87e1-40a0-a940-3e70a0fd6abb +2024-09-11 09:01:54.298882 2024-09-11 09:01:54.298887 aggnd 121855775 R rec d0cbe8e0-6568-4be3-b36e-2f7c6212fa0a +2024-09-11 09:01:54.357947 2024-09-11 09:01:54.357953 aggnd 1218603739 R rec 932654cc-3366-4975-9ac8-af6186cb239b +2024-09-11 09:01:54.423632 2024-09-11 09:01:54.423637 aggnd 1218605995 R rec 8d8e2df1-6755-4376-8ce4-1e0e2a890118 +2024-09-11 09:01:54.472977 2024-09-11 09:01:54.472982 aggnd 1218696680 R rec d5701c87-aaa7-454f-9ed4-dab2e4057795 +2024-09-11 09:01:54.524273 2024-09-11 09:01:54.524278 aggnd 1219001767 R rec feae73e2-d2be-4a77-9b4e-ee6e8b717dab +2024-09-11 09:01:54.572763 2024-09-11 09:01:54.572769 aggnd 1219020982 R rec 628c03e4-96f2-4528-84b1-f4e7dfcd1c69 +2024-09-11 09:01:54.625749 2024-09-11 09:01:54.625755 aggnd 121953823X R rec acde2e99-9625-4ddc-ae5d-f5e2307149d4 +2024-09-11 09:01:54.686247 2024-09-11 09:01:54.686252 aggnd 1219543527 R rec f00a9a02-b4c4-484f-ad52-a29045258065 +2024-09-11 09:01:54.750348 2024-09-11 09:01:54.750354 aggnd 121978338 R rec 16822c85-a256-4f7b-a03c-88c478668ec4 +2024-09-11 09:01:54.802124 2024-09-11 09:01:54.802129 aggnd 1219884790 R rec 1aab4520-aaab-421e-b494-e5159fe8f003 +2024-09-11 09:01:54.855899 2024-09-11 09:01:54.855904 aggnd 1219946478 R rec 4e6e2062-d459-4d90-87e4-cb87d87d3ad4 +2024-09-11 09:01:54.9791 2024-09-11 09:01:54.979106 aggnd 1220237183 R rec 95f8a961-4055-406d-9afa-b142e25ffc89 +2024-09-11 09:01:55.158721 2024-09-11 09:01:55.158728 aggnd 1220523410 R rec 0fe18c99-040e-43ed-a86e-29b0ce38a609 +2024-09-11 09:01:55.214793 2024-09-11 09:01:55.214798 aggnd 1220644811 R rec 25a09b12-febf-44dc-b733-75086b8094d6 +2024-09-11 09:01:55.274552 2024-09-11 09:01:55.274557 aggnd 1220778273 R rec f3a3cea1-fe89-4556-860f-67fcccb779c5 +2024-09-11 09:01:55.326896 2024-09-11 09:01:55.326902 aggnd 1221205536 R rec ea64d1d7-3c5f-48a4-8054-3f3da8c70a96 +2024-09-11 09:01:55.38296 2024-09-11 09:01:55.382965 aggnd 1221416952 R rec 50664822-40ba-4da0-9ed3-28d3211cd63f +2024-09-11 09:01:55.43896 2024-09-11 09:01:55.438965 aggnd 1221561332 R rec 0e510bc5-3ad1-4aaf-9a0c-088bc9dd5614 +2024-09-11 09:01:55.495259 2024-09-11 09:01:55.495265 aggnd 1221637401 R rec 09e51288-020a-4f0b-b4b6-7771d1189543 +2024-09-11 09:01:55.558139 2024-09-11 09:01:55.558145 aggnd 1221643304 R rec 9408ceaf-ce71-4047-9710-a66d23ae67d7 +2024-09-11 09:01:55.61762 2024-09-11 09:01:55.617625 aggnd 1221680293 R rec 8f27782b-56cb-4519-8a8e-7b4c3305d8ff +2024-09-11 09:01:55.680519 2024-09-11 09:01:55.680525 aggnd 1221818635 R rec 2e8fda8f-8820-48d7-877a-f3a60c136361 +2024-09-11 09:01:55.736455 2024-09-11 09:01:55.73646 aggnd 1221985515 R rec cdabe6be-1887-4d54-bd52-adbda8ae47ae +2024-09-11 09:01:55.794588 2024-09-11 09:01:55.794593 aggnd 122214459X R rec e5153b0c-2aab-4eea-826d-705ad2d8c501 +2024-09-11 09:01:55.861122 2024-09-11 09:01:55.861127 aggnd 122244958 R rec 96051f30-044e-4a69-a9df-35a87e63e9eb +2024-09-11 09:01:55.94006 2024-09-11 09:01:55.940066 aggnd 1222466716 R rec addea162-1664-4dc3-a7d1-47100d8a08f2 +2024-09-11 09:01:56.004057 2024-09-11 09:01:56.004062 aggnd 1222736330 R rec 1c09bc02-6f9b-43f5-896f-3081075d605a +2024-09-11 09:01:56.061071 2024-09-11 09:01:56.061077 aggnd 122307364 R rec 51fb8487-b019-491d-82e4-78cbd55df06b +2024-09-11 09:01:56.130527 2024-09-11 09:01:56.130534 aggnd 1223515273 R rec cdf7660d-1d1e-404c-aad4-9dd535dc4b3d +2024-09-11 09:01:56.190541 2024-09-11 09:01:56.190547 aggnd 1223549372 R rec 5477b548-a834-43f9-81f9-68cd929ebbb3 +2024-09-11 09:01:56.242572 2024-09-11 09:01:56.242578 aggnd 122397274 R rec cb5b6e24-826b-477d-bead-27bd4cc06376 +2024-09-11 09:01:56.294801 2024-09-11 09:01:56.294806 aggnd 122416600 R rec 266fc75d-7085-4587-ab95-e7419f57414b +2024-09-11 09:01:56.349468 2024-09-11 09:01:56.349474 aggnd 1224690672 R rec e3ea4688-cf22-48b5-a372-35b6221f6179 +2024-09-11 09:01:56.39986 2024-09-11 09:01:56.399865 aggnd 1225165792 R rec 0e97c101-5d49-4673-b148-9bebaf573844 +2024-09-11 09:01:56.450434 2024-09-11 09:01:56.450438 aggnd 1225314704 R rec c88f3018-e259-441c-b9dc-d79324e925f9 +2024-09-11 09:01:56.50377 2024-09-11 09:01:56.503774 aggnd 1225318955 R rec 6d70ca94-0f85-4170-b6ea-46e62f315e44 +2024-09-11 09:01:56.559466 2024-09-11 09:01:56.559472 aggnd 1225369967 R rec c0ad5a18-3b28-4ef5-aa4f-16f170803422 +2024-09-11 09:01:56.614413 2024-09-11 09:01:56.614418 aggnd 1225371562 R rec 0f63a24c-4e6b-4a9a-ad17-a1ccb782e717 +2024-09-11 09:01:56.664942 2024-09-11 09:01:56.664946 aggnd 122546016 R rec 42c91e6c-8d02-427e-acfa-26dee8331904 +2024-09-11 09:01:56.718708 2024-09-11 09:01:56.718712 aggnd 1225499038 R rec ffdee1f4-e36f-4cff-9341-dfa5104466bc +2024-09-11 09:01:56.780494 2024-09-11 09:01:56.780498 aggnd 1225750350 R rec 59a9a98e-71f9-4f2d-a371-6a7205c8db07 +2024-09-11 09:01:56.836633 2024-09-11 09:01:56.836637 aggnd 1225880351 R rec 10baae1f-c1e9-4df1-91b8-287573a26b41 +2024-09-11 09:01:56.88784 2024-09-11 09:01:56.887845 aggnd 1226111009 R rec 8ae03e38-5b81-4844-9e2c-15650c9d8bb2 +2024-09-11 09:01:56.956219 2024-09-11 09:01:56.956224 aggnd 122616243 R rec 8c58107a-fc5d-441c-9ef8-3e1b18bd6e21 +2024-09-11 09:01:57.014779 2024-09-11 09:01:57.014784 aggnd 1226168973 R rec fda9cd6c-4323-407d-8deb-ca38d79a8d26 +2024-09-11 09:01:57.077742 2024-09-11 09:01:57.077748 aggnd 1226343031 R rec 3982f4f9-9871-4936-8e47-31695e9d533a +2024-09-11 09:01:57.12805 2024-09-11 09:01:57.128055 aggnd 1227063229 R rec 0d1023cf-c163-4223-8038-17a099883767 +2024-09-11 09:01:57.185381 2024-09-11 09:01:57.185387 aggnd 122765052 R rec 6b2b6cf3-80ff-4fd5-9c30-54da0be3e770 +2024-09-11 09:01:57.261207 2024-09-11 09:01:57.261212 aggnd 122787900 R rec 336ea2f4-e15f-45b4-9365-daa01c0d700e +2024-09-11 09:01:57.313963 2024-09-11 09:01:57.313967 aggnd 1228480222 R rec d4572daf-418e-48d3-8078-431abe7693d3 +2024-09-11 09:01:57.367802 2024-09-11 09:01:57.367807 aggnd 1228546541 R rec 9e995ecf-d4bf-48b8-90c4-789c91884269 +2024-09-11 09:01:57.436592 2024-09-11 09:01:57.436598 aggnd 1228854041 R rec e4b04153-2413-44a1-8439-b8f1fbd1b9f9 +2024-09-11 09:01:57.497543 2024-09-11 09:01:57.497549 aggnd 1228866244 R rec 726b59bd-8b56-4a7d-82f4-8ca15d4c403a +2024-09-11 09:01:57.547889 2024-09-11 09:01:57.547894 aggnd 122919455X R rec f766a91e-7802-403e-89f5-487652cf8979 +2024-09-11 09:01:57.601822 2024-09-11 09:01:57.601827 aggnd 122987870X R rec 05f48eb8-dc0e-43b3-8598-419a49f7f5c0 +2024-09-11 09:01:57.654489 2024-09-11 09:01:57.654494 aggnd 1230449663 R rec b84612fa-fb70-43a6-b178-fd072f0a6dd4 +2024-09-11 09:01:57.708715 2024-09-11 09:01:57.708719 aggnd 1230581847 R rec d7b77cc9-5370-46d4-bbb7-713758b27b3d +2024-09-11 09:01:57.771187 2024-09-11 09:01:57.771192 aggnd 1230588736 R rec 1e91eda4-519e-4b1b-9a16-7f778ae8eea1 +2024-09-11 09:01:57.824056 2024-09-11 09:01:57.824061 aggnd 1230589619 R rec aab03768-dfcd-48c9-b9dd-ff0f4fa5dddf +2024-09-11 09:01:57.895444 2024-09-11 09:01:57.895449 aggnd 12307374X R rec e6dbdcb5-6ec3-4a76-8c6a-2b230017c0b5 +2024-09-11 09:01:57.953725 2024-09-11 09:01:57.95373 aggnd 123090598 R rec 882c59bd-d7ee-4b24-83ef-f5889e09cba3 +2024-09-11 09:01:58.012359 2024-09-11 09:01:58.012365 aggnd 1231012749 R rec e6548116-2d2e-4580-bf68-db82e5a60217 +2024-09-11 09:01:58.067095 2024-09-11 09:01:58.067101 aggnd 1231084758 R rec 70a9aee1-b33c-4eee-9f53-e09060eb71e2 +2024-09-11 09:01:58.133903 2024-09-11 09:01:58.133908 aggnd 123171770X R rec e87dd704-b50f-4466-9691-e39fd57f588c +2024-09-11 09:01:58.185889 2024-09-11 09:01:58.185894 aggnd 1232328308 R rec ed2a7b3f-65ee-49d6-b0cd-786e16e9d670 +2024-09-11 09:01:58.23858 2024-09-11 09:01:58.238584 aggnd 1232437530 R rec c21b73b0-0148-47c4-9933-2e62be15ac0b +2024-09-11 09:01:58.290891 2024-09-11 09:01:58.290897 aggnd 1232542377 R rec 26cd2c74-315f-45e6-a23f-3e9a4fc6c812 +2024-09-11 09:01:58.345275 2024-09-11 09:01:58.34528 aggnd 123269021X R rec 79a2ca6d-ae81-4f2c-a8b7-7c306c9ec72c +2024-09-11 09:01:58.399886 2024-09-11 09:01:58.399892 aggnd 123314348 R rec 8c1df4bf-954f-426c-82d7-35de80ee3fef +2024-09-11 09:01:58.468875 2024-09-11 09:01:58.468881 aggnd 1233743082 R rec 5daa55f3-9d25-489f-a4b0-2f13aec4721f +2024-09-11 09:01:58.54076 2024-09-11 09:01:58.540765 aggnd 1233756877 R rec 7538d0fd-6039-4998-a9c8-e4e33d84eeb2 +2024-09-11 09:01:58.619825 2024-09-11 09:01:58.619829 aggnd 1233766767 R rec 31e95341-a371-4c2d-a169-7b627563eb2a +2024-09-11 09:01:58.669496 2024-09-11 09:01:58.669501 aggnd 1233797700 R rec 0089b5b4-c013-4d2e-8342-22a74b34df6a +2024-09-11 09:01:58.721589 2024-09-11 09:01:58.721593 aggnd 1234157845 R rec d23eff27-4790-4f91-a8e4-cd22c4f3d119 +2024-09-11 09:01:58.776195 2024-09-11 09:01:58.7762 aggnd 1234276402 R rec 69af8951-3bd8-410b-a28a-7ed93ebe4d82 +2024-09-11 09:01:58.825872 2024-09-11 09:01:58.825876 aggnd 1234416433 R rec fbb7e18e-3ef0-4dbf-9434-f9fc51c41c63 +2024-09-11 09:01:58.878485 2024-09-11 09:01:58.878492 aggnd 123444578 R rec a80471fa-9f46-41c9-a852-6d50da94711f +2024-09-11 09:01:58.930354 2024-09-11 09:01:58.930359 aggnd 1235024172 R rec 7f75da6a-7ef0-4cf5-a5aa-97a7140801cb +2024-09-11 09:01:58.987809 2024-09-11 09:01:58.987814 aggnd 1235035301 R rec 1cfd5622-71e1-400e-af26-525eb39f6b46 +2024-09-11 09:01:59.052358 2024-09-11 09:01:59.052364 aggnd 123508193 R rec f41a5718-0658-4fda-a2aa-cf7da4873a18 +2024-09-11 09:01:59.104879 2024-09-11 09:01:59.104884 aggnd 123522315 R rec 2d778876-50fa-40b7-b464-336277df9357 +2024-09-11 09:01:59.157825 2024-09-11 09:01:59.15783 aggnd 1235245071 R rec 36da96cc-d770-4c34-a159-836a0489a594 +2024-09-11 09:01:59.211447 2024-09-11 09:01:59.211452 aggnd 1235577384 R rec ebcaccc9-d4fd-49f3-b558-8ffbe674767e +2024-09-11 09:01:59.267369 2024-09-11 09:01:59.267375 aggnd 123571693 R rec db60aa95-f570-46da-9d95-da144ad63b5c +2024-09-11 09:01:59.337627 2024-09-11 09:01:59.337632 aggnd 123572817X R rec d209e64d-565c-4412-9afc-a02c8b607106 +2024-09-11 09:01:59.390907 2024-09-11 09:01:59.390912 aggnd 1235805395 R rec c4c1a6e2-1e03-47a6-807d-77f9c9c507ab +2024-09-11 09:01:59.445752 2024-09-11 09:01:59.445757 aggnd 1235864014 R rec 7a3c92f5-0887-470c-8ec0-375a9475dba7 +2024-09-11 09:01:59.496546 2024-09-11 09:01:59.496551 aggnd 1236151380 R rec f97ec45a-bd41-4d75-a589-0fe94b68761e +2024-09-11 09:01:59.55007 2024-09-11 09:01:59.550073 aggnd 123617286 R rec 950fb355-1f25-4c12-8912-2d851a5d3214 +2024-09-11 09:01:59.602951 2024-09-11 09:01:59.602956 aggnd 123644372 R rec 80229eea-7b5a-419b-a485-489813978b6c +2024-09-11 09:01:59.660032 2024-09-11 09:01:59.660037 aggnd 1236649613 R rec 4dda4e53-80b5-4234-9a50-e3fdd5cfa9ee +2024-09-11 09:01:59.721515 2024-09-11 09:01:59.721519 aggnd 123673208 R rec b9f757af-e266-401c-a9b3-7a7bc213a9bc +2024-09-11 09:01:59.780662 2024-09-11 09:01:59.780667 aggnd 123686719X R rec 9fbdb9d4-f1ae-48ac-a867-403afe69fcdc +2024-09-11 09:01:59.828884 2024-09-11 09:01:59.82889 aggnd 1236915291 R rec d858f0d3-5ea5-4765-8d61-490c7d03e1c3 +2024-09-11 09:01:59.882687 2024-09-11 09:01:59.882692 aggnd 1237119766 R rec 8fb1c0e7-18dd-4449-8792-d288aa5ffe0c +2024-09-11 09:01:59.934506 2024-09-11 09:01:59.934511 aggnd 123718376 R rec 3aa09f0f-84bc-4fab-b0c7-6f35512edb2e +2024-09-11 09:01:59.984093 2024-09-11 09:01:59.984098 aggnd 1237506611 R rec 8ba2ecc0-f5da-4685-8ae6-d1a1ffdbe650 +2024-09-11 09:02:00.040148 2024-09-11 09:02:00.040152 aggnd 123768624 R rec ea1462e5-24ba-49a9-812d-9716315e956e +2024-09-11 09:02:00.099579 2024-09-11 09:02:00.099585 aggnd 1238027237 R rec 1ba8d7e3-47e3-4823-a15d-16441f336efa +2024-09-11 09:02:00.166229 2024-09-11 09:02:00.166234 aggnd 1238037844 R rec 83422f4c-a0df-4730-9b2f-b6baec34d9e8 +2024-09-11 09:02:00.221544 2024-09-11 09:02:00.221549 aggnd 1238039944 R rec 7a11f757-5a64-4af4-91ea-5bda8b7c6d33 +2024-09-11 09:02:00.277054 2024-09-11 09:02:00.27706 aggnd 123806305 R rec 5b0174a5-fde1-4e5f-82c1-00bc909888d7 +2024-09-11 09:02:00.339037 2024-09-11 09:02:00.339042 aggnd 1238167659 R rec f4a6e811-b7e6-48e3-b7fd-12bee33236b7 +2024-09-11 09:02:00.390977 2024-09-11 09:02:00.390979 aggnd 123952425 R rec 453f5c51-63a1-4a04-a662-ace00d1f32e9 +2024-09-11 09:02:00.459541 2024-09-11 09:02:00.459546 aggnd 123954940 R rec 0e93185b-5ae3-44da-b75a-9dc73a30c50c +2024-09-11 09:02:00.518604 2024-09-11 09:02:00.518609 aggnd 1239691408 R rec 83335da8-7e3d-4270-8cac-a592095b8798 +2024-09-11 09:02:00.576112 2024-09-11 09:02:00.576117 aggnd 1240158319 R rec e5383ee4-951f-44e1-8931-11152c0af144 +2024-09-11 09:02:00.627401 2024-09-11 09:02:00.627404 aggnd 124025064 R rec 3577fd73-7a19-4588-b02a-17311d300734 +2024-09-11 09:02:00.681254 2024-09-11 09:02:00.681259 aggnd 12402890X R rec b8524daa-b24b-45c2-92e6-6e0cae5ec657 +2024-09-11 09:02:00.737896 2024-09-11 09:02:00.737899 aggnd 1240323492 R rec 7e09a641-55f5-49b7-87f8-76990ad66f26 +2024-09-11 09:02:00.789963 2024-09-11 09:02:00.789968 aggnd 1240334206 R rec a8195292-7d1b-4709-8730-30b9c9e90ae9 +2024-09-11 09:02:00.847501 2024-09-11 09:02:00.847506 aggnd 124045790 R rec 575ebbc3-fccf-463e-a2f4-4b1e7db03684 +2024-09-11 09:02:00.898659 2024-09-11 09:02:00.898664 aggnd 1240634323 R rec 9be03f9a-b071-43e4-8066-3e5f9f733c69 +2024-09-11 09:02:00.949918 2024-09-11 09:02:00.949922 aggnd 1240922175 R rec af360265-0888-4197-90bc-618c032835b7 +2024-09-11 09:02:01.003871 2024-09-11 09:02:01.003876 aggnd 1241124949 R rec 7b978464-d073-4139-a530-c2fdcfac938b +2024-09-11 09:02:01.062864 2024-09-11 09:02:01.062869 aggnd 1241190755 R rec 86713dba-e493-4895-bb9a-a5b626d1c205 +2024-09-11 09:02:01.120471 2024-09-11 09:02:01.120477 aggnd 1241191921 R rec 5d429ef7-e8fc-4715-9ae6-1be2d3b9b2b2 +2024-09-11 09:02:01.193381 2024-09-11 09:02:01.193385 aggnd 1241199418 R rec 14a8c9cd-b4ab-4b32-b840-00b1060adb98 +2024-09-11 09:02:01.255618 2024-09-11 09:02:01.255623 aggnd 124206018 R rec ebb2dbf0-9f21-4c02-8c19-42d2bfd41458 +2024-09-11 09:02:01.312133 2024-09-11 09:02:01.312138 aggnd 1242496343 R rec e97e418c-de0b-4177-9498-70c2f5904166 +2024-09-11 09:02:01.363853 2024-09-11 09:02:01.363858 aggnd 124250076 R rec e639423c-508c-466a-aa6b-466e2da3899f +2024-09-11 09:02:01.418306 2024-09-11 09:02:01.418311 aggnd 124257070 R rec b2732a17-1be2-4fea-bc43-6a472f365d86 +2024-09-11 09:02:01.481872 2024-09-11 09:02:01.481877 aggnd 124257151 R rec 6ca3b5e4-8db3-44af-a1da-1e2eda3dc051 +2024-09-11 09:02:01.544731 2024-09-11 09:02:01.544736 aggnd 124268512X R rec 33b638bb-13f5-4fca-80f7-51d5343024f2 +2024-09-11 09:02:01.597877 2024-09-11 09:02:01.597882 aggnd 124271057 R rec f687217c-4cff-4381-a27a-13f610bafaf9 +2024-09-11 09:02:01.655912 2024-09-11 09:02:01.655917 aggnd 124284299 R rec 0150b073-bf2b-4864-8695-edd0e5d689d3 +2024-09-11 09:02:01.71145 2024-09-11 09:02:01.711455 aggnd 1243013648 R rec c81848f4-9952-48b5-85a9-b4152b79a939 +2024-09-11 09:02:01.8045 2024-09-11 09:02:01.804505 aggnd 124311861X R rec a459ae4e-9a98-407b-91a4-f84d2cdf4035 +2024-09-11 09:02:01.869611 2024-09-11 09:02:01.869616 aggnd 124326764X R rec 9ba9007b-12cc-43ed-aac1-fa0be214cac7 +2024-09-11 09:02:01.922056 2024-09-11 09:02:01.922061 aggnd 1243598751 R rec 757de327-33ac-4a66-96b5-5f12b3731a0d +2024-09-11 09:02:01.991996 2024-09-11 09:02:01.992002 aggnd 124384196 R rec 99c92f15-cbe0-4161-b53b-ab2a3f694279 +2024-09-11 09:02:02.064523 2024-09-11 09:02:02.064528 aggnd 1243856505 R rec 1bee2f60-29fe-4255-886d-0d3606b0c58a +2024-09-11 09:02:02.11966 2024-09-11 09:02:02.119665 aggnd 12438644X R rec 9a8d16cd-d0ad-4109-90b8-6b1d2d07fd1e +2024-09-11 09:02:02.171729 2024-09-11 09:02:02.171736 aggnd 1243882166 R rec f2a9b574-7737-4015-8de5-186224e87790 +2024-09-11 09:02:02.23732 2024-09-11 09:02:02.237325 aggnd 1243929332 R rec 61249a8f-e86c-4a9a-b8f9-bffd28e9e038 +2024-09-11 09:02:02.289202 2024-09-11 09:02:02.289207 aggnd 1243929464 R rec f3f86b8c-9a33-4dcc-a9ce-938e26504d38 +2024-09-11 09:02:02.353543 2024-09-11 09:02:02.353548 aggnd 124396488X R rec e0483500-9fb0-459d-8297-1400e4286d46 +2024-09-11 09:02:02.42232 2024-09-11 09:02:02.422325 aggnd 1243973145 R rec bce3a57b-4203-4ef3-bd51-06e6cef92ad0 +2024-09-11 09:02:02.474418 2024-09-11 09:02:02.474423 aggnd 1244179469 R rec c4d2cce1-1e43-4f7d-8279-772c14254665 +2024-09-11 09:02:02.526128 2024-09-11 09:02:02.526133 aggnd 124423256 R rec 1f90b6c4-d35f-4e5f-9bf4-bf82a3b37f17 +2024-09-11 09:02:02.581225 2024-09-11 09:02:02.58123 aggnd 124457711 R rec 71010d37-8638-443b-a40b-af17d3f3b425 +2024-09-11 09:02:02.640132 2024-09-11 09:02:02.640137 aggnd 1244862096 R rec 11eaac22-aa6c-49bf-a261-cfc08c6c2086 +2024-09-11 09:02:02.706723 2024-09-11 09:02:02.706728 aggnd 1244880027 R rec 35317bf4-b197-4903-99a5-d3964098ee4b +2024-09-11 09:02:02.773416 2024-09-11 09:02:02.773422 aggnd 1245339214 R rec ed3f103f-5b79-4095-a564-a75689046e7f +2024-09-11 09:02:02.826597 2024-09-11 09:02:02.826602 aggnd 1245458760 R rec dae0623c-87f7-48cb-8fb8-642c732a45b9 +2024-09-11 09:02:02.880474 2024-09-11 09:02:02.880479 aggnd 124566025X R rec 5e4e6b1f-1f46-4e90-878a-d9ec78afef3e +2024-09-11 09:02:02.947364 2024-09-11 09:02:02.947369 aggnd 1245874098 R rec aa1bc9af-98bd-4962-af02-97be445dea9b +2024-09-11 09:02:03.005178 2024-09-11 09:02:03.005183 aggnd 124603106 R rec 21bd7264-535a-4e95-acd2-0d06d4b5acaf +2024-09-11 09:02:03.058986 2024-09-11 09:02:03.058992 aggnd 1246058642 R rec 6c6a48a4-e944-4983-96a9-cce3e6c01720 +2024-09-11 09:02:03.111417 2024-09-11 09:02:03.111423 aggnd 12465164X R rec fa642f14-cef7-4e26-aa49-d506a8b39bbb +2024-09-11 09:02:03.169274 2024-09-11 09:02:03.169279 aggnd 124686583 R rec 21e56eb7-e59d-4c1e-99b9-8064750cdeed +2024-09-11 09:02:03.219067 2024-09-11 09:02:03.219072 aggnd 124691560X R rec 68aea482-aa88-4e84-9c31-973e27e53b5f +2024-09-11 09:02:03.271579 2024-09-11 09:02:03.271584 aggnd 124715311 R rec 5d4b3371-44b8-431e-a14c-81796b863423 +2024-09-11 09:02:03.326134 2024-09-11 09:02:03.326139 aggnd 124717764 R rec c4f15418-85fc-4f34-a0da-6eec644fcc55 +2024-09-11 09:02:03.379795 2024-09-11 09:02:03.3798 aggnd 12473409X R rec 4574345b-6bb1-4b2f-88c7-11f1304fda50 +2024-09-11 09:02:03.435397 2024-09-11 09:02:03.435402 aggnd 1247579077 R rec c507c99e-aa1b-4650-ab94-c2da06f2deb7 +2024-09-11 09:02:03.491943 2024-09-11 09:02:03.491948 aggnd 1247672352 R rec 5d240939-074f-416a-a33f-627b783fe145 +2024-09-11 09:02:03.547981 2024-09-11 09:02:03.547984 aggnd 1248272013 R rec 4e1bec79-36ed-4cb2-80ed-14f745323601 +2024-09-11 09:02:03.614896 2024-09-11 09:02:03.614901 aggnd 1248663217 R rec 3ff303fc-2fa7-4c81-b4fc-9b02a824c995 +2024-09-11 09:02:03.667873 2024-09-11 09:02:03.667878 aggnd 1248783271 R rec 0c73472f-db8b-4cfd-93ab-0984071afb0c +2024-09-11 09:02:03.721286 2024-09-11 09:02:03.721291 aggnd 1249217156 R rec bb0afa27-8359-4535-9bd3-1dfb994c7eac +2024-09-11 09:02:03.77898 2024-09-11 09:02:03.778984 aggnd 124922511 R rec b5cde36d-6ba2-4864-ac6d-35b037cc5c2b +2024-09-11 09:02:03.831243 2024-09-11 09:02:03.831248 aggnd 1249513502 R rec 570b48ae-6b50-45ba-9d03-824b4cbad920 +2024-09-11 09:02:03.880859 2024-09-11 09:02:03.880864 aggnd 124962793 R rec 5e5e8987-f5e0-4d48-a7d2-7dc7e613d28e +2024-09-11 09:02:03.933519 2024-09-11 09:02:03.933524 aggnd 124969178 R rec 2b8204f2-7499-4f72-b8c0-33a440b56d30 +2024-09-11 09:02:03.989638 2024-09-11 09:02:03.989643 aggnd 1249776090 R rec eef65958-64f9-4c3e-b286-27e1d044b5e3 +2024-09-11 09:02:04.054771 2024-09-11 09:02:04.054776 aggnd 1249789494 R rec 61047948-b015-420f-b2fd-648bebc85e04 +2024-09-11 09:02:04.105545 2024-09-11 09:02:04.10555 aggnd 1249795362 R rec 45ffc402-820d-4874-a9cd-c29c4859d3bd +2024-09-11 09:02:04.158265 2024-09-11 09:02:04.158271 aggnd 124995136 R rec d752ea2f-3588-4387-9863-904dde5e2e96 +2024-09-11 09:02:04.230304 2024-09-11 09:02:04.23031 aggnd 125013981 R rec 84b06775-d42d-42b1-b824-6d2a024f0d32 +2024-09-11 09:02:04.285102 2024-09-11 09:02:04.285107 aggnd 1250280184 R rec 0deb633e-0471-48cc-bbce-5c9932dece8b +2024-09-11 09:02:04.337996 2024-09-11 09:02:04.338001 aggnd 125037988 R rec 64c1e72e-ff7e-460f-80ee-4033b22c1c1a +2024-09-11 09:02:04.406326 2024-09-11 09:02:04.406331 aggnd 125077683X R rec 422f67f9-579e-4279-867f-28557ff60ade +2024-09-11 09:02:04.457434 2024-09-11 09:02:04.457438 aggnd 125085685X R rec 0421a9de-d45e-4e57-832e-10b170f4ae6c +2024-09-11 09:02:04.511531 2024-09-11 09:02:04.511536 aggnd 1251284507 R rec 53a0ba28-8d14-4e0a-8002-4fb1d11e5883 +2024-09-11 09:02:04.567364 2024-09-11 09:02:04.567369 aggnd 125158103X R rec b2c5bd1f-bdb6-43ae-8c00-43dc22455b41 +2024-09-11 09:02:04.61755 2024-09-11 09:02:04.617555 aggnd 1251903606 R rec 219b0c34-ee6e-4e5b-b989-d289121d8b14 +2024-09-11 09:02:04.674929 2024-09-11 09:02:04.674934 aggnd 125190419X R rec 64a6f06a-9430-4157-a583-929b1bf27bcb +2024-09-11 09:02:04.722959 2024-09-11 09:02:04.722964 aggnd 125224524 R rec 03bf2ee9-d7f4-4842-ab21-ef3d76efebb7 +2024-09-11 09:02:04.778735 2024-09-11 09:02:04.77874 aggnd 1252339607 R rec 4fa7214c-542a-429f-a0e5-9af685bb4595 +2024-09-11 09:02:04.832809 2024-09-11 09:02:04.832815 aggnd 1253016488 R rec 09ef4d75-231b-4637-bc23-7a27584bf181 +2024-09-11 09:02:04.885218 2024-09-11 09:02:04.885223 aggnd 1253049424 R rec 9f27c621-4eb2-476d-858b-11eac43f0262 +2024-09-11 09:02:04.940795 2024-09-11 09:02:04.9408 aggnd 1253266913 R rec b1a3d297-58e7-4023-999d-59fb09f6328c +2024-09-11 09:02:04.999089 2024-09-11 09:02:04.999094 aggnd 1253317887 R rec 647638f7-509f-46a8-875a-f74fb5aa62cb +2024-09-11 09:02:05.066424 2024-09-11 09:02:05.06643 aggnd 12533396X R rec 8761ef2e-d013-4f0f-a00d-ca0dda3fd8d2 +2024-09-11 09:02:05.12001 2024-09-11 09:02:05.120015 aggnd 1253501106 R rec 47ee5686-8169-4a3d-963a-a166a66ac26d +2024-09-11 09:02:05.187839 2024-09-11 09:02:05.187844 aggnd 1253803536 R rec ab2d2a56-7041-4b71-b902-4181a46eb3b8 +2024-09-11 09:02:05.241493 2024-09-11 09:02:05.241499 aggnd 1253954518 R rec 6ee8b76d-c696-46be-9c84-648c884ddbd8 +2024-09-11 09:02:05.30674 2024-09-11 09:02:05.306745 aggnd 125407466X R rec acc4f022-cad8-41a2-bdda-5b82167079e6 +2024-09-11 09:02:05.358938 2024-09-11 09:02:05.358943 aggnd 125448554 R rec aec65a00-05a7-42c9-8799-81f6d5f6a151 +2024-09-11 09:02:05.41259 2024-09-11 09:02:05.412594 aggnd 1254513582 R rec 782c9e49-d537-4044-81dd-300d58930110 +2024-09-11 09:02:05.464692 2024-09-11 09:02:05.464698 aggnd 1254551980 R rec c4865b7d-f1d4-4607-9366-a9f730263acf +2024-09-11 09:02:05.517348 2024-09-11 09:02:05.517353 aggnd 1254730559 R rec b6b19f88-6b0c-4132-8702-00e389ccde8b +2024-09-11 09:02:05.570134 2024-09-11 09:02:05.570139 aggnd 1255052740 R rec 4cb8a0ef-1f69-4ec3-90f2-cfb298416644 +2024-09-11 09:02:05.637192 2024-09-11 09:02:05.637198 aggnd 125522732X R rec 5da6c036-c05e-48fc-af5e-30c269dc3265 +2024-09-11 09:02:05.700855 2024-09-11 09:02:05.700859 aggnd 1255253967 R rec 5f2ea3ec-120a-4568-bee7-3f71e662ce2f +2024-09-11 09:02:05.755983 2024-09-11 09:02:05.755989 aggnd 125525869 R rec a0d42433-f540-411a-86b8-5b5a50672461 +2024-09-11 09:02:05.820528 2024-09-11 09:02:05.820534 aggnd 125527683 R rec 74cd7a0c-e617-44fd-80de-dc8fe6658e92 +2024-09-11 09:02:05.87532 2024-09-11 09:02:05.875325 aggnd 125606193X R rec 641bee25-9f8d-4306-9464-7e5fa63f0da9 +2024-09-11 09:02:05.952065 2024-09-11 09:02:05.95207 aggnd 1256298980 R rec 858e9fe1-dbed-4980-8015-522af1d63f11 +2024-09-11 09:02:06.002022 2024-09-11 09:02:06.002027 aggnd 1256639974 R rec f64d9a4e-4b70-411e-aee2-3540a949fca1 +2024-09-11 09:02:06.055474 2024-09-11 09:02:06.055478 aggnd 125666632 R rec 4012ba99-fb85-4cc9-933a-e2a9bd24fd56 +2024-09-11 09:02:06.109459 2024-09-11 09:02:06.109464 aggnd 125668465 R rec 3ec8223d-021e-4b75-abeb-fdf624ce7369 +2024-09-11 09:02:06.165802 2024-09-11 09:02:06.165808 aggnd 125675658X R rec 64249711-a3bf-4fbf-8b0a-3ae075674286 +2024-09-11 09:02:06.218009 2024-09-11 09:02:06.218014 aggnd 1257269704 R rec 4d591e54-69d9-45d9-abfb-4ed646ea8655 +2024-09-11 09:02:06.268846 2024-09-11 09:02:06.268851 aggnd 1257796259 R rec 5a94c0d5-489b-4354-a76d-f4ae1a38578f +2024-09-11 09:02:06.326072 2024-09-11 09:02:06.326077 aggnd 1257837826 R rec ef2ea2d6-0528-4790-b3c7-ef60943869c7 +2024-09-11 09:02:06.377391 2024-09-11 09:02:06.377396 aggnd 1257931253 R rec 80739701-81d0-4283-bc0b-74a4640189cf +2024-09-11 09:02:06.428935 2024-09-11 09:02:06.42894 aggnd 1258741997 R rec 4f963f9c-5f1f-4b63-9fb8-8e9233a1f5f9 +2024-09-11 09:02:06.482974 2024-09-11 09:02:06.482979 aggnd 1258782901 R rec 6407d2a1-5e8d-425a-9588-967dc27de559 +2024-09-11 09:02:06.540587 2024-09-11 09:02:06.540591 aggnd 1258808196 R rec 67b9b059-7595-4f3d-9a8e-3c97bfb537f1 +2024-09-11 09:02:06.592661 2024-09-11 09:02:06.592667 aggnd 125881336X R rec 66550108-567b-4c62-92cd-d63b47845584 +2024-09-11 09:02:06.643215 2024-09-11 09:02:06.64322 aggnd 125904568 R rec 76acf2f5-3f9c-45ce-a744-fc8aca594158 +2024-09-11 09:02:06.699553 2024-09-11 09:02:06.699558 aggnd 1259359026 R rec 07d88172-5bbb-4fd9-a122-a23feb8a3d7e +2024-09-11 09:02:06.754275 2024-09-11 09:02:06.75428 aggnd 1259480860 R rec 6ea2707d-70c6-4823-9d7b-3680dbcdb8ff +2024-09-11 09:02:06.807075 2024-09-11 09:02:06.80708 aggnd 1259906620 R rec 458efc5b-4ae1-46fb-99a9-30f23c88e94f +2024-09-11 09:02:06.862928 2024-09-11 09:02:06.862933 aggnd 1259930696 R rec 1ce9b259-65cc-4a93-b88b-9363385d1ad4 +2024-09-11 09:02:06.931458 2024-09-11 09:02:06.931462 aggnd 1260402541 R rec 7d971a02-63cd-4229-84d8-c16e254463e6 +2024-09-11 09:02:06.987556 2024-09-11 09:02:06.987561 aggnd 126093148 R rec 20fe6fba-f9c5-43c4-a439-5d5c4d4d2137 +2024-09-11 09:02:07.068473 2024-09-11 09:02:07.068479 aggnd 126098190 R rec 153c025c-e9ea-4745-a143-b703d018795b +2024-09-11 09:02:07.134198 2024-09-11 09:02:07.134202 aggnd 1260994147 R rec 129b876c-2081-4262-8efb-b746a42ebafa +2024-09-11 09:02:07.185999 2024-09-11 09:02:07.186003 aggnd 1261058550 R rec 40e610ca-38c8-46d2-b60f-d6c119f17fae +2024-09-11 09:02:07.243858 2024-09-11 09:02:07.243863 aggnd 1261250842 R rec a572ea43-3e26-4eea-b9ec-09c4a8d3a85c +2024-09-11 09:02:07.29643 2024-09-11 09:02:07.296436 aggnd 1261260147 R rec fd7fab0e-5b9e-4c10-963c-b1c60dcc741b +2024-09-11 09:02:07.349784 2024-09-11 09:02:07.349788 aggnd 1261307364 R rec 31d1e9a7-d9ed-45cf-88b8-aa01db490082 +2024-09-11 09:02:07.401584 2024-09-11 09:02:07.401589 aggnd 126144060 R rec ba146228-d4ff-41d2-9793-df45167e8c35 +2024-09-11 09:02:07.4637 2024-09-11 09:02:07.463706 aggnd 1261766156 R rec 908fd998-c96f-4b22-8f04-31d21e379d2b +2024-09-11 09:02:07.52033 2024-09-11 09:02:07.520336 aggnd 1261941136 R rec 2c72d4b4-9ef2-4385-b614-e10b7480ad7c +2024-09-11 09:02:07.58103 2024-09-11 09:02:07.581035 aggnd 1262106486 R rec e006751c-cf23-42e1-8fb9-952927573bb4 +2024-09-11 09:02:07.634501 2024-09-11 09:02:07.634506 aggnd 126221804 R rec 9b8d939d-5025-4782-9d27-a53f8202a245 +2024-09-11 09:02:07.69087 2024-09-11 09:02:07.690877 aggnd 1262395305 R rec ccb5bcff-c209-42fe-b7bc-59dd1224117b +2024-09-11 09:02:07.768298 2024-09-11 09:02:07.768303 aggnd 1262411238 R rec 49e40ae7-887d-45ab-82e5-d0ebc9695a59 +2024-09-11 09:02:07.829001 2024-09-11 09:02:07.829006 aggnd 1262517281 R rec 91d0cfd5-01b6-4935-adc7-a1b128fd9f95 +2024-09-11 09:02:07.881059 2024-09-11 09:02:07.881064 aggnd 12625639X R rec 774d65ea-2b24-49db-82f6-e1e5e85c7397 +2024-09-11 09:02:07.936987 2024-09-11 09:02:07.936993 aggnd 1262993016 R rec 071e5f71-e534-4141-a643-f62fbeb27550 +2024-09-11 09:02:08.009931 2024-09-11 09:02:08.009937 aggnd 1263532683 R rec 17946bbd-e012-4c15-83b5-6d00bc1b3178 +2024-09-11 09:02:08.07977 2024-09-11 09:02:08.079775 aggnd 1264061994 R rec f50a8ee8-c800-423f-98c0-ef333be273dc +2024-09-11 09:02:08.141526 2024-09-11 09:02:08.14153 aggnd 1264067003 R rec 738f5c21-7452-4a2c-ade2-5321fdff66b0 +2024-09-11 09:02:08.199529 2024-09-11 09:02:08.199535 aggnd 126431582 R rec a3b325d9-ce65-4ef9-87e1-f75c68c89550 +2024-09-11 09:02:08.260755 2024-09-11 09:02:08.260761 aggnd 1265029369 R rec 0b635610-3d3f-40ec-a8ab-48b354912834 +2024-09-11 09:02:08.321626 2024-09-11 09:02:08.321631 aggnd 126590249 R rec e946649a-6177-4c78-9cb8-50a55272ce38 +2024-09-11 09:02:08.378594 2024-09-11 09:02:08.378599 aggnd 126645590 R rec bfc64b58-ef2e-4acc-bfb3-dd41fdc27286 +2024-09-11 09:02:08.428223 2024-09-11 09:02:08.428226 aggnd 126652902 R rec 38d1857b-a99f-4539-8ad6-b5779745a117 +2024-09-11 09:02:08.482424 2024-09-11 09:02:08.482429 aggnd 126811846X R rec 7fe0efb1-91a4-4eed-a559-38d5b617d33a +2024-09-11 09:02:08.539708 2024-09-11 09:02:08.539713 aggnd 1268485969 R rec 7e798c51-3616-4f22-b683-fe815a2fd566 +2024-09-11 09:02:08.594676 2024-09-11 09:02:08.594681 aggnd 12688790X R rec c8e488bf-01f3-48eb-a7ba-caf86db01f37 +2024-09-11 09:02:08.653681 2024-09-11 09:02:08.653686 aggnd 127018360 R rec cf09615f-c06a-4eab-9fdf-dc3eadf1e799 +2024-09-11 09:02:08.703342 2024-09-11 09:02:08.703347 aggnd 1270306960 R rec de90fa84-396c-41f1-85f4-bdc603baa2b3 +2024-09-11 09:02:08.760612 2024-09-11 09:02:08.760618 aggnd 1270526294 R rec 335ac779-0100-4c48-97df-7da4a20d23f7 +2024-09-11 09:02:08.816619 2024-09-11 09:02:08.816625 aggnd 127202048 R rec fe2143ac-e4a5-431b-98d8-e8d3bee40d2a +2024-09-11 09:02:08.864244 2024-09-11 09:02:08.86425 aggnd 127205233 R rec 1d21ebd5-825c-423e-93a5-27ba61781bd3 +2024-09-11 09:02:08.918113 2024-09-11 09:02:08.918118 aggnd 127283447 R rec 9d68b1dd-86db-47da-aee2-0b601e040d9a +2024-09-11 09:02:08.967497 2024-09-11 09:02:08.967502 aggnd 127307427 R rec f6f2c4ca-ad82-4170-b233-13bd58e29a1a +2024-09-11 09:02:09.019522 2024-09-11 09:02:09.019527 aggnd 1273775546 R rec 63997ebc-c479-4ba3-90fe-bb1c6150e9b6 +2024-09-11 09:02:09.070325 2024-09-11 09:02:09.07033 aggnd 127398538 R rec 98f7f063-8a73-4f35-814c-91dd3d9dbde2 +2024-09-11 09:02:09.123537 2024-09-11 09:02:09.123542 aggnd 12742508X R rec 3ab2678b-f487-4c82-b6e8-881e0a54336a +2024-09-11 09:02:09.178507 2024-09-11 09:02:09.178512 aggnd 127465680X R rec 42efbe40-959d-4948-b5ad-1d13ff117ddb +2024-09-11 09:02:09.228499 2024-09-11 09:02:09.228505 aggnd 12747692X R rec c58cfd49-c573-43fe-a096-61b5f70f4058 +2024-09-11 09:02:09.281356 2024-09-11 09:02:09.281362 aggnd 127496491 R rec 8c53e917-1c6b-4d16-9378-c0da32b5bdfe +2024-09-11 09:02:09.328698 2024-09-11 09:02:09.328704 aggnd 127707255 R rec f7ead4ae-0395-4dd3-9d9b-23bbf1dc6764 +2024-09-11 09:02:09.374629 2024-09-11 09:02:09.374634 aggnd 127714049 R rec 3e642e30-cf3d-436d-84a4-2b9da065d8aa +2024-09-11 09:02:09.429984 2024-09-11 09:02:09.429989 aggnd 12771961X R rec 7461677c-b99b-451d-87f9-592e2ff3cdea +2024-09-11 09:02:09.481648 2024-09-11 09:02:09.481652 aggnd 127772553 R rec b5d5f03b-d95e-444c-aa16-f78dab194527 +2024-09-11 09:02:09.53418 2024-09-11 09:02:09.534185 aggnd 127836160 R rec ffbbae3a-18e1-40cf-95b4-c5a4bfd1b4be +2024-09-11 09:02:09.58202 2024-09-11 09:02:09.582025 aggnd 1278368817 R rec 58b34b16-c034-4d1d-bc43-bdd0994bdc94 +2024-09-11 09:02:09.632622 2024-09-11 09:02:09.632627 aggnd 127845925 R rec 3573acbc-7c63-437c-b5ca-8234ac2c4b63 +2024-09-11 09:02:09.682276 2024-09-11 09:02:09.682281 aggnd 127857214 R rec ecf27080-1de8-4453-9bbe-1b547dfe9c56 +2024-09-11 09:02:09.734726 2024-09-11 09:02:09.734731 aggnd 12786959X R rec 94044200-f650-4183-b67b-70504e3855a5 +2024-09-11 09:02:09.784905 2024-09-11 09:02:09.78491 aggnd 128016736 R rec 11062a3e-787b-4b67-bbe3-6583b3199ef4 +2024-09-11 09:02:09.838198 2024-09-11 09:02:09.838203 aggnd 128174889 R rec 99d185ef-6f79-4af4-8cc8-1db6792df723 +2024-09-11 09:02:09.898013 2024-09-11 09:02:09.898017 aggnd 128190094 R rec 38c84c50-8ca0-4155-b885-99a11e363321 +2024-09-11 09:02:09.945924 2024-09-11 09:02:09.94593 aggnd 128202432 R rec e66630a5-5325-4bb8-8651-493bc930982a +2024-09-11 09:02:09.991275 2024-09-11 09:02:09.991281 aggnd 128244224 R rec 8ca1059c-def3-4fc9-ad68-693e2cf14b21 +2024-09-11 09:02:10.044181 2024-09-11 09:02:10.044187 aggnd 128275022 R rec 79b07901-b06d-4b1a-bb5a-5cde6cbd2253 +2024-09-11 09:02:10.094771 2024-09-11 09:02:10.094775 aggnd 128320419 R rec 755722c6-c6b2-456c-ba12-904c5bf63613 +2024-09-11 09:02:10.141058 2024-09-11 09:02:10.14106 aggnd 12833794X R rec 89d2c444-041a-4f46-a49a-aa8607cd1067 +2024-09-11 09:02:10.198091 2024-09-11 09:02:10.198096 aggnd 128346280 R rec c31b09ba-6162-4311-ae7e-29ee13ad934b +2024-09-11 09:02:10.254372 2024-09-11 09:02:10.254376 aggnd 12837196X R rec 6ae8e2d7-17af-4f43-a620-9a78423d0383 +2024-09-11 09:02:10.307554 2024-09-11 09:02:10.30756 aggnd 128387602 R rec 6910e875-5479-44e1-8404-90db46ec9996 +2024-09-11 09:02:10.353925 2024-09-11 09:02:10.35393 aggnd 128430613 R rec 4e3de96e-333b-4966-b8a4-b49918bb7ab7 +2024-09-11 09:02:10.400004 2024-09-11 09:02:10.400009 aggnd 128437979 R rec 6ec56aff-35ac-44b6-ac66-ccb2cefd3559 +2024-09-11 09:02:10.450556 2024-09-11 09:02:10.450561 aggnd 128438185 R rec 1ffc35db-6b28-4265-afce-a9da87c6c512 +2024-09-11 09:02:10.509542 2024-09-11 09:02:10.509547 aggnd 12849915X R rec 06841a91-dfef-4e9b-a3db-844691656377 +2024-09-11 09:02:10.562112 2024-09-11 09:02:10.562118 aggnd 128564520 R rec b0d43774-b3c4-4c7c-8a6c-f5143441d71c +2024-09-11 09:02:10.612608 2024-09-11 09:02:10.612613 aggnd 128568763 R rec 1d06e61e-abef-4e60-b799-5c4e85c0150f +2024-09-11 09:02:10.66047 2024-09-11 09:02:10.660476 aggnd 128630450 R rec f2eb8b15-b5f4-43a2-9325-31bea5d78b6e +2024-09-11 09:02:10.719269 2024-09-11 09:02:10.719274 aggnd 12864852X R rec de121de9-b8b0-4236-a0a6-29d109e87084 +2024-09-11 09:02:10.770637 2024-09-11 09:02:10.770642 aggnd 128669993 R rec 4403cca9-14ee-4708-83ce-804451744df4 +2024-09-11 09:02:10.819801 2024-09-11 09:02:10.819806 aggnd 128807954 R rec 4488319d-7925-48b4-8fae-5587e50f24a9 +2024-09-11 09:02:10.867651 2024-09-11 09:02:10.867657 aggnd 128852690 R rec 6e48315b-3624-4312-b037-4406f90c148a +2024-09-11 09:02:10.920006 2024-09-11 09:02:10.920009 aggnd 128887249 R rec 4fbf57c7-eef9-46d5-93dd-661f4a22b514 +2024-09-11 09:02:10.976936 2024-09-11 09:02:10.976941 aggnd 128948426 R rec 486e1152-c8df-4156-bda3-04cf667226da +2024-09-11 09:02:11.026808 2024-09-11 09:02:11.026813 aggnd 128970790 R rec b0a324c1-d2ba-419c-89ea-c9b0bdedf91d +2024-09-11 09:02:11.088732 2024-09-11 09:02:11.088738 aggnd 128979852 R rec 24fc91fd-dcad-4648-86a4-f9b5f6932cf9 +2024-09-11 09:02:11.151353 2024-09-11 09:02:11.151358 aggnd 129020893 R rec 16af5084-8bb9-40e8-896d-f42c6eb31b60 +2024-09-11 09:02:11.20115 2024-09-11 09:02:11.201156 aggnd 129048267 R rec 8b17d637-69eb-4d50-8351-7a764d861373 +2024-09-11 09:02:11.252408 2024-09-11 09:02:11.252412 aggnd 129097632 R rec 7743d933-6c48-4ba6-9a83-4bef81d38b5e +2024-09-11 09:02:11.301627 2024-09-11 09:02:11.301632 aggnd 129154105 R rec a7d2751d-7296-477e-acbe-bcf9de4f2432 +2024-09-11 09:02:11.352069 2024-09-11 09:02:11.352074 aggnd 129227838 R rec 1cd5f329-b361-40e6-b7ed-1ab76f49c711 +2024-09-11 09:02:11.398991 2024-09-11 09:02:11.398996 aggnd 129388084 R rec 2e48f259-9bf7-4c56-b70d-e114bde17d35 +2024-09-11 09:02:11.452046 2024-09-11 09:02:11.45205 aggnd 129446904 R rec 78b3449d-bd2d-4682-815a-f01dc4ef3708 +2024-09-11 09:02:11.499757 2024-09-11 09:02:11.499762 aggnd 129475351 R rec 5d9ee202-aadb-45c9-9a16-97037b2dcc0a +2024-09-11 09:02:11.547128 2024-09-11 09:02:11.547132 aggnd 129504971 R rec 8ebbea42-1d66-44a8-be01-35582121318b +2024-09-11 09:02:11.598562 2024-09-11 09:02:11.598568 aggnd 129520896 R rec 0616bc6d-3ece-4df4-a25d-845f582130c0 +2024-09-11 09:02:11.657408 2024-09-11 09:02:11.657413 aggnd 129599646 R rec 7b36fd70-6070-40f0-b659-0f74afccdf5a +2024-09-11 09:02:11.711019 2024-09-11 09:02:11.711025 aggnd 129608610 R rec 9bfaa721-e475-4d83-a5d2-83811f66fe49 +2024-09-11 09:02:11.770156 2024-09-11 09:02:11.770161 aggnd 129639109 R rec 877ee822-c712-4913-b569-f70a92a96112 +2024-09-11 09:02:11.83207 2024-09-11 09:02:11.832075 aggnd 129685828 R rec 9e36320b-233f-4e17-a356-7d5140df8d53 +2024-09-11 09:02:11.885913 2024-09-11 09:02:11.885918 aggnd 129727482 R rec cf8c17a4-c7d4-4fb8-824a-1f4a723232c2 +2024-09-11 09:02:11.95085 2024-09-11 09:02:11.950855 aggnd 129803332 R rec 1a2a31a8-13bf-49eb-8aed-4a2f8b81ba03 +2024-09-11 09:02:12.011094 2024-09-11 09:02:12.011099 aggnd 12981752X R rec d921b38e-a720-46bc-beb8-84b2dd098d10 +2024-09-11 09:02:12.068259 2024-09-11 09:02:12.068263 aggnd 129828866 R rec 3e95694a-fec3-400c-ae6e-1f13ee294c48 +2024-09-11 09:02:12.127544 2024-09-11 09:02:12.127549 aggnd 129855863 R rec 946f0658-d55a-49b8-ba88-c478065acd61 +2024-09-11 09:02:12.180713 2024-09-11 09:02:12.180718 aggnd 12988782X R rec 2c50c3f8-cf0b-4556-aa73-6c6254df36df +2024-09-11 09:02:12.235613 2024-09-11 09:02:12.235618 aggnd 129888796 R rec 26221f08-1e27-43cf-bd56-02444923a0f6 +2024-09-11 09:02:12.289372 2024-09-11 09:02:12.289378 aggnd 130000388 R rec 3f287b84-0e12-4c2d-97d2-c23da40c6885 +2024-09-11 09:02:12.407798 2024-09-11 09:02:12.407803 aggnd 130016985 R rec 1b95c1c6-319d-4e72-9620-a7bd615fda28 +2024-09-11 09:02:12.462984 2024-09-11 09:02:12.46299 aggnd 130020001 R rec a9de743c-4154-4bb9-a029-2ec7cd757914 +2024-09-11 09:02:12.53706 2024-09-11 09:02:12.537065 aggnd 130124648 R rec 888b4e50-1b9a-4499-93d5-2af667bb1e8f +2024-09-11 09:02:12.597155 2024-09-11 09:02:12.597159 aggnd 130141623 R rec fcfaec1e-eb96-4cce-94c6-0eddfcce006f +2024-09-11 09:02:12.66422 2024-09-11 09:02:12.664226 aggnd 13022622X R rec 33a59be0-0be0-43b8-940a-41f894df4879 +2024-09-11 09:02:12.74188 2024-09-11 09:02:12.741885 aggnd 130250473 R rec 1af60469-c193-4852-87fa-a283104e6e02 +2024-09-11 09:02:12.805015 2024-09-11 09:02:12.80502 aggnd 130374520 R rec 648c2e22-9a9d-4f72-a476-5fd712abdcbd +2024-09-11 09:02:12.856485 2024-09-11 09:02:12.85649 aggnd 130502642 R rec 12dd976f-718c-40e9-aac0-b5e3072c3569 +2024-09-11 09:02:12.907837 2024-09-11 09:02:12.907843 aggnd 130556939 R rec 3577cd61-9d5b-488d-9212-ff1e8657eccd +2024-09-11 09:02:12.981962 2024-09-11 09:02:12.981968 aggnd 130582883 R rec dc10eaad-1050-4601-87ba-521894d2f048 +2024-09-11 09:02:13.03321 2024-09-11 09:02:13.033216 aggnd 130677299 R rec 184ee373-4e57-413d-86c5-a1dfd8932f7e +2024-09-11 09:02:13.093517 2024-09-11 09:02:13.093522 aggnd 130859842 R rec 2cbef26c-9e52-4045-9cc3-aecccb8d8303 +2024-09-11 09:02:13.155406 2024-09-11 09:02:13.155411 aggnd 130860557 R rec 1fdd863f-4c59-4070-8c13-7a3aaf7c2d3f +2024-09-11 09:02:13.211844 2024-09-11 09:02:13.211849 aggnd 131284703 R rec 11e6e09e-58b8-4906-bd3b-51d5eb4fb636 +2024-09-11 09:02:13.273639 2024-09-11 09:02:13.273644 aggnd 131443704 R rec 32d2d0e9-203c-4cb3-8ebb-d07894cf660d +2024-09-11 09:02:13.330207 2024-09-11 09:02:13.330212 aggnd 131514059 R rec 9d6936f2-2d00-4fc0-89da-8e7ef5363f01 +2024-09-11 09:02:13.388538 2024-09-11 09:02:13.388543 aggnd 131564692 R rec 551f5431-b436-425e-982b-30ae073e18e8 +2024-09-11 09:02:13.444548 2024-09-11 09:02:13.444553 aggnd 131638653 R rec 4c8f1b52-dc92-4472-8390-c8175fa55d1d +2024-09-11 09:02:13.500423 2024-09-11 09:02:13.500428 aggnd 131675907 R rec d9a4ae36-6187-40c9-8ac6-bdcf83d50095 +2024-09-11 09:02:13.561155 2024-09-11 09:02:13.56116 aggnd 131709550 R rec 5f4ec36e-29bd-414f-af04-8fae1dbd9e7c +2024-09-11 09:02:13.629638 2024-09-11 09:02:13.629644 aggnd 131738631 R rec dd0bb1a2-74ed-420d-9b4b-9a0f55caadd9 +2024-09-11 09:02:13.71717 2024-09-11 09:02:13.717176 aggnd 13178918X R rec cf333861-e230-4b33-9fd9-c9f67cbe7752 +2024-09-11 09:02:13.780711 2024-09-11 09:02:13.780717 aggnd 131792350 R rec 64df120b-0b15-4633-a3e0-649368833969 +2024-09-11 09:02:13.833496 2024-09-11 09:02:13.8335 aggnd 131812378 R rec 49352b51-4b73-4d77-9b02-72faeff63541 +2024-09-11 09:02:13.891699 2024-09-11 09:02:13.891704 aggnd 13184248X R rec 63d95695-5bb1-425a-b458-eaf5e0328885 +2024-09-11 09:02:13.946229 2024-09-11 09:02:13.946234 aggnd 131856839 R rec 6a8253cd-620a-4082-9900-a331c72ab9fd +2024-09-11 09:02:14.006264 2024-09-11 09:02:14.006269 aggnd 131896873 R rec 2d1fcc2f-efb3-44e1-bae0-67669bb4c3c7 +2024-09-11 09:02:14.059868 2024-09-11 09:02:14.059873 aggnd 131898922 R rec 782a3a91-4592-499f-912b-d7043ff7cb70 +2024-09-11 09:02:14.122046 2024-09-11 09:02:14.122051 aggnd 131915401 R rec faea5298-5578-4e2e-b7ca-365971fb7ac1 +2024-09-11 09:02:14.182687 2024-09-11 09:02:14.182692 aggnd 131930915 R rec fd49ee4e-4ee9-4798-a3a6-7a4b8ba934f8 +2024-09-11 09:02:14.235455 2024-09-11 09:02:14.235461 aggnd 132104784 R rec 0a9c2e85-3381-4c76-874f-d42e9a6d201c +2024-09-11 09:02:14.287625 2024-09-11 09:02:14.287631 aggnd 132266741 R rec 29342c20-593b-4481-b196-e38ef679c584 +2024-09-11 09:02:14.339833 2024-09-11 09:02:14.339838 aggnd 132272105 R rec 9baaa6e7-bd41-49be-a0f7-f50ddd0cc342 +2024-09-11 09:02:14.40392 2024-09-11 09:02:14.403926 aggnd 132327147 R rec 70f80757-b356-4f78-b154-9e3bac964a85 +2024-09-11 09:02:14.481148 2024-09-11 09:02:14.481154 aggnd 132373963 R rec bfcccc6f-06b9-4ec2-bac7-48d76f797f87 +2024-09-11 09:02:14.551591 2024-09-11 09:02:14.551596 aggnd 13246781X R rec 34d94a1c-31f6-4877-85f4-7bdde45f173e +2024-09-11 09:02:14.617884 2024-09-11 09:02:14.617889 aggnd 132490846 R rec 2bc3eb50-6982-4f49-905e-de931520044c +2024-09-11 09:02:14.683642 2024-09-11 09:02:14.683647 aggnd 132503980 R rec 45059b37-6282-40b0-b4db-7dd9b2e4a912 +2024-09-11 09:02:14.760647 2024-09-11 09:02:14.760652 aggnd 132526808 R rec 1d34418e-1c22-46da-9762-53f77b5bb107 +2024-09-11 09:02:14.818321 2024-09-11 09:02:14.818327 aggnd 132658941 R rec 4953fb49-de04-4113-9e05-328f499ddeff +2024-09-11 09:02:14.876447 2024-09-11 09:02:14.876453 aggnd 132695405 R rec 4ead81ad-4fee-40f6-9120-1a1ce67a9f65 +2024-09-11 09:02:14.934781 2024-09-11 09:02:14.934787 aggnd 132790912 R rec 7e9250e1-1bd5-4707-8273-e9a0aeb5c154 +2024-09-11 09:02:14.995006 2024-09-11 09:02:14.995011 aggnd 132825198 R rec b634a8aa-cf40-4e0e-a565-0d262b065ee4 +2024-09-11 09:02:15.055731 2024-09-11 09:02:15.055736 aggnd 132828944 R rec 984781be-3c82-4213-b51b-a5fa50751311 +2024-09-11 09:02:15.111106 2024-09-11 09:02:15.111112 aggnd 132832860 R rec ff1fb931-8ce9-48fe-91fc-a93f8cdc5331 +2024-09-11 09:02:15.178947 2024-09-11 09:02:15.178952 aggnd 132857022 R rec 6e17dfdc-b9c6-4119-8c43-99c027a0c148 +2024-09-11 09:02:15.248995 2024-09-11 09:02:15.249 aggnd 132989719 R rec a334b423-3ceb-4cf8-ba4c-fad0fa5ea3a6 +2024-09-11 09:02:15.300878 2024-09-11 09:02:15.300883 aggnd 13299495X R rec 3f37a90d-3c8d-43b7-a919-cf060080ecca +2024-09-11 09:02:15.35997 2024-09-11 09:02:15.359975 aggnd 132999102 R rec 1b83e265-38a2-473a-85ae-7ed2ea39d19e +2024-09-11 09:02:15.41719 2024-09-11 09:02:15.417195 aggnd 133046567 R rec a882f89d-d14c-4e55-b4ef-2ca9d87ff8a3 +2024-09-11 09:02:15.480364 2024-09-11 09:02:15.480367 aggnd 133056996 R rec 138ebed7-82ab-4861-b064-556475a56a95 +2024-09-11 09:02:15.532335 2024-09-11 09:02:15.53234 aggnd 13308325X R rec 86779275-aa05-4d32-abc1-b932a976fde7 +2024-09-11 09:02:15.586578 2024-09-11 09:02:15.586581 aggnd 133092852 R rec 7358bf04-2e49-474f-9bd0-03d53344321e +2024-09-11 09:02:15.644287 2024-09-11 09:02:15.644292 aggnd 133104567 R rec f4cfaa2e-115d-4a7c-845e-ff560e7e7a67 +2024-09-11 09:02:15.699531 2024-09-11 09:02:15.699536 aggnd 13311189X R rec b3b8422a-262b-4033-b9a3-507d85230952 +2024-09-11 09:02:15.77884 2024-09-11 09:02:15.778846 aggnd 133130886 R rec 1d7a9629-c691-4cac-bf78-958dae92c566 +2024-09-11 09:02:15.834351 2024-09-11 09:02:15.834357 aggnd 133245187 R rec a60862aa-ec4b-490a-8264-ff4fe09fe725 +2024-09-11 09:02:15.889911 2024-09-11 09:02:15.889916 aggnd 133255344 R rec 1218cc35-58bb-4102-8a6e-6ddbca6a973a +2024-09-11 09:02:15.941542 2024-09-11 09:02:15.941548 aggnd 133273407 R rec 42fcb149-eedf-41e4-89d1-fdd19ee363d9 +2024-09-11 09:02:15.995694 2024-09-11 09:02:15.9957 aggnd 133315681 R rec 600bcff4-4586-4617-ad55-e15bde9c8da8 +2024-09-11 09:02:16.072194 2024-09-11 09:02:16.072201 aggnd 133362817 R rec 728e572f-25e5-4027-b3d8-b6cf22773daf +2024-09-11 09:02:16.174776 2024-09-11 09:02:16.174781 aggnd 133396223 R rec c70bc3a6-08d9-4b0c-a2d1-1ede498234f8 +2024-09-11 09:02:16.233152 2024-09-11 09:02:16.233158 aggnd 133487342 R rec 7a6f4d8c-9809-414b-bd95-3af7862dc54d +2024-09-11 09:02:16.28502 2024-09-11 09:02:16.285025 aggnd 13350171X R rec 7c2a3891-4e3d-416e-a2fb-144b23af2058 +2024-09-11 09:02:16.336839 2024-09-11 09:02:16.336844 aggnd 13355757X R rec 172b4511-a5a0-432a-8430-05c6c211a32b +2024-09-11 09:02:16.397895 2024-09-11 09:02:16.397901 aggnd 133592316 R rec 55171c1b-3fb7-4c78-9abd-a57c23394479 +2024-09-11 09:02:16.456237 2024-09-11 09:02:16.456242 aggnd 133685624 R rec 330ddf0a-c919-401a-b245-4f0e07925226 +2024-09-11 09:02:16.506062 2024-09-11 09:02:16.506067 aggnd 133715671 R rec a5ba06f1-2de8-41e5-8263-2133faae0f68 +2024-09-11 09:02:16.557969 2024-09-11 09:02:16.557974 aggnd 133748294 R rec 4c805666-d9d5-4b5a-9a6d-d144352304af +2024-09-11 09:02:16.606813 2024-09-11 09:02:16.606818 aggnd 133767183 R rec bb0bb626-7377-492b-9b3d-7c78745bc8fd +2024-09-11 09:02:16.663736 2024-09-11 09:02:16.663742 aggnd 133999912 R rec 85828bf1-c2d1-43f2-9b24-f6d512a1f149 +2024-09-11 09:02:16.726524 2024-09-11 09:02:16.726527 aggnd 134089316 R rec 67693931-8466-4f5c-a03a-601c96426e83 +2024-09-11 09:02:16.781479 2024-09-11 09:02:16.781485 aggnd 134092147 R rec 05dcc016-7a31-4a84-872b-104272034dac +2024-09-11 09:02:16.839996 2024-09-11 09:02:16.840012 aggnd 13416492X R rec cd2ec064-35c6-4365-86a6-f9fe58bb2dec +2024-09-11 09:02:16.894043 2024-09-11 09:02:16.894049 aggnd 134204603 R rec 587e6b03-3fc8-4372-85f4-e9e6743a1250 +2024-09-11 09:02:16.946839 2024-09-11 09:02:16.946844 aggnd 134274458 R rec f477cd79-3103-4067-9526-7f343cfb85f0 +2024-09-11 09:02:17.001018 2024-09-11 09:02:17.001023 aggnd 134311086 R rec 1dabd35b-52f3-4c5e-b527-9793b89ec90d +2024-09-11 09:02:17.05399 2024-09-11 09:02:17.053995 aggnd 134321707 R rec b229e41a-ef22-44ba-95e3-637bd23db811 +2024-09-11 09:02:17.110919 2024-09-11 09:02:17.110924 aggnd 134449002 R rec b53550de-e644-4d0a-9014-55fb5ee183c9 +2024-09-11 09:02:17.162191 2024-09-11 09:02:17.162195 aggnd 134454901 R rec 80162bd1-5ee9-4018-a22a-e7fd4503956b +2024-09-11 09:02:17.218183 2024-09-11 09:02:17.218188 aggnd 134538099 R rec 9f0f1d96-555c-40d0-ae88-66e9fecbf530 +2024-09-11 09:02:17.282599 2024-09-11 09:02:17.282604 aggnd 134550412 R rec 45870372-505c-4714-8fda-08dcc3e562f5 +2024-09-11 09:02:17.342602 2024-09-11 09:02:17.342607 aggnd 134563166 R rec 51b84e96-b5ba-4ac7-9450-b7e5099d42d2 +2024-09-11 09:02:17.403861 2024-09-11 09:02:17.403867 aggnd 134574079 R rec e0c627bc-2110-4bf9-84d4-85808d7dbd7b +2024-09-11 09:02:17.464062 2024-09-11 09:02:17.464067 aggnd 134583337 R rec 96e40b13-ad6f-4979-ab1b-dce394191063 +2024-09-11 09:02:17.527642 2024-09-11 09:02:17.527648 aggnd 134588959 R rec 710492fe-c924-4ede-84f1-1ec7433b0543 +2024-09-11 09:02:17.60273 2024-09-11 09:02:17.602736 aggnd 134590481 R rec c25cb150-57f9-4760-b653-eeafeee802a0 +2024-09-11 09:02:17.661082 2024-09-11 09:02:17.661087 aggnd 134591968 R rec a4f9faab-d1c7-4717-95a8-376c43fe237e +2024-09-11 09:02:17.719237 2024-09-11 09:02:17.719242 aggnd 134619102 R rec 2a6cc6e1-2ac7-4113-af4d-3e841b855be8 +2024-09-11 09:02:17.783941 2024-09-11 09:02:17.783946 aggnd 134623487 R rec e0d5ea96-a2a5-45c7-a5c4-3987754736a5 +2024-09-11 09:02:17.844397 2024-09-11 09:02:17.844402 aggnd 134624149 R rec 58058323-dd29-4d03-9aa5-f803c2cab195 +2024-09-11 09:02:17.909345 2024-09-11 09:02:17.909351 aggnd 134678478 R rec b09f9c4a-433e-48dd-9939-ebfa1bdf22bd +2024-09-11 09:02:17.976267 2024-09-11 09:02:17.976273 aggnd 13468706X R rec 02189da1-5af3-48e1-bc5e-e831f6ae765d +2024-09-11 09:02:18.045564 2024-09-11 09:02:18.045568 aggnd 134694031 R rec dbd38ddf-d77d-4573-a0e1-375a37773843 +2024-09-11 09:02:18.120312 2024-09-11 09:02:18.120317 aggnd 134781821 R rec a7f60a3e-6849-4200-8f07-20cb2bf77c05 +2024-09-11 09:02:18.18257 2024-09-11 09:02:18.182575 aggnd 134802993 R rec 0f4353cc-8908-482e-a39a-75103d1a8454 +2024-09-11 09:02:18.241368 2024-09-11 09:02:18.241375 aggnd 134805313 R rec 6e5f48ba-f4b3-4a2f-a139-09a15feb5154 +2024-09-11 09:02:18.317087 2024-09-11 09:02:18.317094 aggnd 134872223 R rec 12f8f362-4889-41f2-bae2-f7a0ccc4c1af +2024-09-11 09:02:18.402601 2024-09-11 09:02:18.402606 aggnd 135012864 R rec 89b13c85-39d3-4d6f-9c79-adee1ac4099c +2024-09-11 09:02:18.466717 2024-09-11 09:02:18.466722 aggnd 135074800 R rec b6bf6528-05b2-4118-a24f-1fa4fe8ab9cd +2024-09-11 09:02:18.530883 2024-09-11 09:02:18.530888 aggnd 135203449 R rec cc6db66a-0cfa-419d-9c3b-a78de6b38ce9 +2024-09-11 09:02:18.591096 2024-09-11 09:02:18.591102 aggnd 135226082 R rec 1c614f84-e89c-417b-a7af-0a51629a9c40 +2024-09-11 09:02:18.656341 2024-09-11 09:02:18.656346 aggnd 135270103 R rec e6fc492e-453c-43ef-b665-a6e3d80c188c +2024-09-11 09:02:18.739928 2024-09-11 09:02:18.739933 aggnd 135270413 R rec 6ae2bcad-f426-4879-96e8-5bcbc42252d5 +2024-09-11 09:02:18.795535 2024-09-11 09:02:18.79554 aggnd 135374774 R rec d7cb3356-3030-4a69-aab6-851f9b1a9a3d +2024-09-11 09:02:18.852091 2024-09-11 09:02:18.852096 aggnd 135580986 R rec 626ae409-6070-4c6f-b305-f87e2eefa618 +2024-09-11 09:02:18.914175 2024-09-11 09:02:18.91418 aggnd 135626498 R rec 87c73664-dd17-42a2-afca-2ecf56cd613a +2024-09-11 09:02:18.980586 2024-09-11 09:02:18.980592 aggnd 135627095 R rec f284dc38-2da9-4ff8-958f-ea162b7480c0 +2024-09-11 09:02:19.053456 2024-09-11 09:02:19.053462 aggnd 135661234 R rec c1dde48a-12c4-46c6-8d3c-fb3ad7bda786 +2024-09-11 09:02:19.109494 2024-09-11 09:02:19.109499 aggnd 135757452 R rec bd0259ba-3ba2-4ff0-89cf-3697e15c1b37 +2024-09-11 09:02:19.174372 2024-09-11 09:02:19.174377 aggnd 13579000X R rec beb9a9e9-f379-4216-a9ec-8daff3faa3bd +2024-09-11 09:02:19.233211 2024-09-11 09:02:19.233216 aggnd 135835321 R rec 94b03d42-0d33-448e-b598-2636ab3bebb6 +2024-09-11 09:02:19.300818 2024-09-11 09:02:19.300824 aggnd 135958245 R rec f6af51fd-6c40-4417-a8f5-90c3741c46fe +2024-09-11 09:02:19.358694 2024-09-11 09:02:19.3587 aggnd 135961602 R rec f7f75743-5146-4b4c-b10b-0b13becf4230 +2024-09-11 09:02:19.42803 2024-09-11 09:02:19.428036 aggnd 135973368 R rec 4500f0a2-d142-4bd8-93cc-593a5df22d19 +2024-09-11 09:02:19.485685 2024-09-11 09:02:19.48569 aggnd 136148808 R rec ba169e7f-d80c-4038-9d1d-17ad599d38fe +2024-09-11 09:02:19.541501 2024-09-11 09:02:19.541507 aggnd 136205275 R rec 77a81b1c-9c08-4c7b-ad6d-091990931dda +2024-09-11 09:02:19.605266 2024-09-11 09:02:19.605271 aggnd 136380638 R rec 85a98ce9-cb22-43c5-97f0-4b326122c31a +2024-09-11 09:02:19.668251 2024-09-11 09:02:19.668257 aggnd 136417582 R rec a70b9164-a33a-4d54-b053-3974e81a172c +2024-09-11 09:02:19.736128 2024-09-11 09:02:19.736133 aggnd 136444075 R rec 9f0dd093-cf27-4819-af0c-97f65588cbdd +2024-09-11 09:02:19.802199 2024-09-11 09:02:19.802205 aggnd 13685849X R rec 79fa146a-fa5d-466e-a224-27e269d68aaf +2024-09-11 09:02:19.868478 2024-09-11 09:02:19.868483 aggnd 136999271 R rec d55766d7-1650-4530-83ff-1026cf3ab9bb +2024-09-11 09:02:19.920841 2024-09-11 09:02:19.920847 aggnd 13707543X R rec e00a7be7-44ad-40a6-956c-7440b9c48dd4 +2024-09-11 09:02:19.994357 2024-09-11 09:02:19.994362 aggnd 137111223 R rec 15964a9d-6c51-4cdc-aecf-e76bec581c0d +2024-09-11 09:02:20.049838 2024-09-11 09:02:20.049843 aggnd 137241348 R rec 346cc255-910a-4b32-8e20-263f7d26ee61 +2024-09-11 09:02:20.105811 2024-09-11 09:02:20.105817 aggnd 137308914 R rec de4ce516-b263-440e-9752-673237053548 +2024-09-11 09:02:20.166204 2024-09-11 09:02:20.16621 aggnd 137500750 R rec 0fa543b8-3b26-429b-9102-bf1e0306272f +2024-09-11 09:02:20.237171 2024-09-11 09:02:20.237176 aggnd 137858825 R rec 487a0549-2cae-4ceb-8fd2-52226fe04cdd +2024-09-11 09:02:20.304891 2024-09-11 09:02:20.304895 aggnd 138127948 R rec 656b6f92-c6b3-4715-9447-77fa81400cac +2024-09-11 09:02:20.363572 2024-09-11 09:02:20.363578 aggnd 138374732 R rec 1ae7ab65-ccba-46fa-8d9c-723da76293df +2024-09-11 09:02:20.417776 2024-09-11 09:02:20.417781 aggnd 138598010 R rec afeebac2-73ac-4bea-88f6-506d02f2f86f +2024-09-11 09:02:20.474405 2024-09-11 09:02:20.474409 aggnd 13902185X R rec 58a7a579-626e-4750-8461-86239f947c27 +2024-09-11 09:02:20.533511 2024-09-11 09:02:20.533517 aggnd 139094342 R rec 713f2634-faae-4827-83d3-5629f209547e +2024-09-11 09:02:20.589517 2024-09-11 09:02:20.589522 aggnd 139117091 R rec ec18988f-7da5-4720-b57b-006018c4c731 +2024-09-11 09:02:20.654136 2024-09-11 09:02:20.654141 aggnd 139120629 R rec a42e5dd0-0c43-423c-abdf-e654c6de6c19 +2024-09-11 09:02:20.708716 2024-09-11 09:02:20.708721 aggnd 139128557 R rec 02b18f17-b69e-46a3-8464-be38c20b9ad0 +2024-09-11 09:02:20.769696 2024-09-11 09:02:20.769701 aggnd 139134816 R rec 4099f612-ca46-4fc3-ada2-412cb53683c5 +2024-09-11 09:02:20.821439 2024-09-11 09:02:20.821444 aggnd 139173544 R rec a59a1cd2-de34-4da7-b99a-c4044500f423 +2024-09-11 09:02:20.882475 2024-09-11 09:02:20.88248 aggnd 139180060 R rec 5beca718-8dde-42b2-aeef-40352e440612 +2024-09-11 09:02:20.937251 2024-09-11 09:02:20.937256 aggnd 139196269 R rec 8d462bee-9779-4810-8ae1-d6d82bec89d1 +2024-09-11 09:02:21.000215 2024-09-11 09:02:21.000219 aggnd 139204105 R rec 72870488-67f4-454a-a6ec-d145d7462455 +2024-09-11 09:02:21.101643 2024-09-11 09:02:21.101648 aggnd 139209204 R rec 14b65de6-d685-4a05-8dae-6b0aec728148 +2024-09-11 09:02:21.249262 2024-09-11 09:02:21.249266 aggnd 139268456 R rec 99a29150-9dc2-4ac5-a1a6-a41a155a755a +2024-09-11 09:02:21.37409 2024-09-11 09:02:21.374095 aggnd 139284575 R rec 7f95e689-04e9-4ad9-bebd-f2d97ad1f7c8 +2024-09-11 09:02:21.503155 2024-09-11 09:02:21.503161 aggnd 139286160 R rec 968cd7e6-4288-46e8-bf62-452a1208bef1 +2024-09-11 09:02:21.656742 2024-09-11 09:02:21.656747 aggnd 139289690 R rec 43be1e1a-b5f8-4deb-89f5-c38e15724bf8 +2024-09-11 09:02:21.797372 2024-09-11 09:02:21.797379 aggnd 139310991 R rec 7cc0ab0c-6de7-44bc-9cb5-2dbee32416fd +2024-09-11 09:02:21.934299 2024-09-11 09:02:21.934309 aggnd 139317783 R rec 63d6ac17-69e3-4318-ab22-5b2398655ecd +2024-09-11 09:02:22.105324 2024-09-11 09:02:22.105329 aggnd 139334114 R rec ee520791-528d-4ac6-ab27-5898ccb2f920 +2024-09-11 09:02:22.180028 2024-09-11 09:02:22.180034 aggnd 139350101 R rec 0d951bba-8d9f-4b2b-baeb-dafb60f67738 +2024-09-11 09:02:22.240064 2024-09-11 09:02:22.240069 aggnd 139361405 R rec 9dafbc10-6d13-4dd5-8254-e5606829af1f +2024-09-11 09:02:22.296312 2024-09-11 09:02:22.296317 aggnd 139376119 R rec 7ac0cf57-f997-4448-8bc2-bff5e54ea6a9 +2024-09-11 09:02:22.366222 2024-09-11 09:02:22.366227 aggnd 139380027 R rec ee3eef56-7766-4bcb-bfef-4c49b83ff1b7 +2024-09-11 09:02:22.425008 2024-09-11 09:02:22.425013 aggnd 13938233X R rec bad774e4-db31-4944-b12f-1c8a7c76e720 +2024-09-11 09:02:22.494756 2024-09-11 09:02:22.494761 aggnd 139383050 R rec a7c5525d-b228-40a7-9061-d5c2a72a02a7 +2024-09-11 09:02:22.551768 2024-09-11 09:02:22.551773 aggnd 139418598 R rec 85dec538-fc3b-45e9-ba9b-8d31b8352eba +2024-09-11 09:02:22.60443 2024-09-11 09:02:22.604436 aggnd 139422102 R rec 5ab04baf-586a-40f4-9504-ac595fd695b4 +2024-09-11 09:02:22.660062 2024-09-11 09:02:22.660067 aggnd 139422161 R rec 7bf45215-801e-4bd3-b829-2f1cc02beccc +2024-09-11 09:02:22.719109 2024-09-11 09:02:22.719111 aggnd 13943237X R rec a429f084-2b57-48d0-965f-1a734ae0a68e +2024-09-11 09:02:22.774964 2024-09-11 09:02:22.774969 aggnd 139480056 R rec 52cdec19-3df2-4874-ac6e-d8c994feace8 +2024-09-11 09:02:22.832501 2024-09-11 09:02:22.832505 aggnd 139503072 R rec a08e8eb5-6849-4220-bb35-473a4b432b83 +2024-09-11 09:02:22.886746 2024-09-11 09:02:22.886751 aggnd 139512950 R rec cc0f051d-1bd0-4759-86b5-e7e3e904e0b6 +2024-09-11 09:02:22.939537 2024-09-11 09:02:22.939542 aggnd 139535489 R rec d2da863f-3e64-46e6-b31d-72f632ffa372 +2024-09-11 09:02:23.001184 2024-09-11 09:02:23.001189 aggnd 139542043 R rec de2319e2-7184-4cf8-a287-0cfd1641dce9 +2024-09-11 09:02:23.060499 2024-09-11 09:02:23.060504 aggnd 13954402X R rec b5aae30a-b4be-4ff9-b791-fc82637b2dd1 +2024-09-11 09:02:23.130293 2024-09-11 09:02:23.130299 aggnd 139546979 R rec 02342699-37be-4e55-ada8-c238ad9fd758 +2024-09-11 09:02:23.194398 2024-09-11 09:02:23.194403 aggnd 139612483 R rec 0996fa53-0c89-4573-9318-1a33c5d11665 +2024-09-11 09:02:23.265113 2024-09-11 09:02:23.265119 aggnd 139621156 R rec 33aea484-7660-4ecb-959c-82fd68b46f07 +2024-09-11 09:02:23.323608 2024-09-11 09:02:23.323613 aggnd 139621652 R rec a025c991-8cf4-4087-b5ae-ccbc5331bbbc +2024-09-11 09:02:23.383908 2024-09-11 09:02:23.383913 aggnd 139622675 R rec 1390cd4e-ee28-4db7-92ff-b98f9524d77d +2024-09-11 09:02:23.450062 2024-09-11 09:02:23.450067 aggnd 139626417 R rec 2d801655-02b1-4a0d-b846-5d1443ac0c67 +2024-09-11 09:02:23.509214 2024-09-11 09:02:23.509219 aggnd 13962693X R rec fc045f7f-bdb0-4388-bebc-927bdf8fe1cb +2024-09-11 09:02:23.566633 2024-09-11 09:02:23.566638 aggnd 139630147 R rec c1895ba5-221b-40d4-86cd-733cf7d69c22 +2024-09-11 09:02:23.6228 2024-09-11 09:02:23.622805 aggnd 139649263 R rec 764eb547-4fca-4032-af57-3a914a3c30c5 +2024-09-11 09:02:23.680447 2024-09-11 09:02:23.680452 aggnd 139654526 R rec 3686edd2-e39e-49a1-b9e3-1beead037dbb +2024-09-11 09:02:23.736443 2024-09-11 09:02:23.736448 aggnd 139655395 R rec 21731e2a-dfb0-4058-b651-4915e129e28a +2024-09-11 09:02:23.793651 2024-09-11 09:02:23.793656 aggnd 139659382 R rec 9ad9c1db-984f-458c-b57e-5bcf9fb9557c +2024-09-11 09:02:23.851462 2024-09-11 09:02:23.851467 aggnd 139668136 R rec 9e2f0d05-feef-4fa2-8f7d-b31e2ec29973 +2024-09-11 09:02:23.921131 2024-09-11 09:02:23.921136 aggnd 139695125 R rec fb249518-f135-46ae-969b-d2360f0aaf05 +2024-09-11 09:02:23.977001 2024-09-11 09:02:23.977006 aggnd 139705104 R rec 6c73d19e-71c6-4259-a629-9bd190edc89a +2024-09-11 09:02:24.037688 2024-09-11 09:02:24.037693 aggnd 139708162 R rec d5b76cbb-836f-47da-8c25-50f3c8e41a55 +2024-09-11 09:02:24.090946 2024-09-11 09:02:24.090951 aggnd 139708669 R rec 5b24db63-7587-4886-a305-42d6eb974e46 +2024-09-11 09:02:24.148942 2024-09-11 09:02:24.148947 aggnd 139708952 R rec 1e37b87a-ded0-45cc-8a32-1f82de74042a +2024-09-11 09:02:24.207259 2024-09-11 09:02:24.207264 aggnd 13971166X R rec cde6628d-0896-449f-8044-573a2542e84a +2024-09-11 09:02:24.262296 2024-09-11 09:02:24.262301 aggnd 139717676 R rec 626bc221-cebf-42a9-8876-3ab9b543828f +2024-09-11 09:02:24.321317 2024-09-11 09:02:24.321323 aggnd 139733256 R rec 8b7c6ad6-6617-4fc1-80ef-ef80bb569453 +2024-09-11 09:02:24.385947 2024-09-11 09:02:24.385952 aggnd 13976674X R rec 20203926-6b48-45a8-829b-bf8429fea5e3 +2024-09-11 09:02:24.451849 2024-09-11 09:02:24.451854 aggnd 139769366 R rec 6aa32d01-12e6-49e0-83d3-cc5acc00a3ff +2024-09-11 09:02:24.518595 2024-09-11 09:02:24.518601 aggnd 139774807 R rec 7af66748-1c64-41c6-b529-71e24fbf7b29 +2024-09-11 09:02:24.585698 2024-09-11 09:02:24.585703 aggnd 139794204 R rec accd028b-21fb-40fe-81ff-72f81a296e9e +2024-09-11 09:02:24.652377 2024-09-11 09:02:24.652382 aggnd 139796282 R rec fde612c4-4c55-4593-b416-83ba7d39b811 +2024-09-11 09:02:24.707856 2024-09-11 09:02:24.707861 aggnd 139822542 R rec 3fb99e85-6df2-4a4d-b3a0-4fa4ab20da1a +2024-09-11 09:02:24.757297 2024-09-11 09:02:24.757302 aggnd 13983043X R rec 3982a081-0348-45a5-bf17-b6f48517c3a0 +2024-09-11 09:02:24.814418 2024-09-11 09:02:24.814423 aggnd 139856072 R rec 7bed12fd-7ca1-465b-b746-c0b8adebc686 +2024-09-11 09:02:24.869877 2024-09-11 09:02:24.869882 aggnd 139863915 R rec 3cbad562-8ade-46d4-bf6a-c541d9170786 +2024-09-11 09:02:24.926417 2024-09-11 09:02:24.926421 aggnd 139875484 R rec 501c3d0e-9d81-4cc2-b388-6ea713222cf3 +2024-09-11 09:02:24.983327 2024-09-11 09:02:24.983332 aggnd 139879994 R rec aad80973-b883-421e-9a7d-2716ed36b87a +2024-09-11 09:02:25.035252 2024-09-11 09:02:25.035257 aggnd 139889345 R rec fb2067ae-34e4-49d4-b283-058890964a91 +2024-09-11 09:02:25.092023 2024-09-11 09:02:25.092028 aggnd 139894535 R rec 6c4f59f9-1016-46e1-9e0a-1ab94da60f56 +2024-09-11 09:02:25.14879 2024-09-11 09:02:25.148795 aggnd 139894977 R rec 5436d201-5ec4-4a28-a849-6303011d2d8e +2024-09-11 09:02:25.20335 2024-09-11 09:02:25.203355 aggnd 139925988 R rec 7e96dbe6-8858-4d41-a638-5fac705ff4dd +2024-09-11 09:02:25.256043 2024-09-11 09:02:25.256048 aggnd 139939415 R rec 7b57082d-bff1-405b-832d-56aa3e493688 +2024-09-11 09:02:25.312255 2024-09-11 09:02:25.312261 aggnd 139942920 R rec b1635bf1-b1dc-4bb7-be67-55f4df207e22 +2024-09-11 09:02:25.370317 2024-09-11 09:02:25.370322 aggnd 139946144 R rec 56b2b9d2-a9ed-42a7-83b1-1511639fe943 +2024-09-11 09:02:25.431552 2024-09-11 09:02:25.431557 aggnd 139952179 R rec 7aee8cfa-10e3-473a-bbd6-4957722b58f8 +2024-09-11 09:02:25.490941 2024-09-11 09:02:25.490946 aggnd 139961968 R rec 87a72792-aa2c-4777-8053-bd47956f0e8a +2024-09-11 09:02:25.546778 2024-09-11 09:02:25.546783 aggnd 139974199 R rec 1cff107a-44ec-47d3-b0ab-514852a415c5 +2024-09-11 09:02:25.6092 2024-09-11 09:02:25.609206 aggnd 14006253X R rec 15dca7df-ec6c-4a18-bb91-cc8fe27bcb75 +2024-09-11 09:02:25.670745 2024-09-11 09:02:25.67075 aggnd 140091319 R rec ee4300fa-c517-4b52-a0e4-d4e585c0d609 +2024-09-11 09:02:25.730044 2024-09-11 09:02:25.730049 aggnd 140093427 R rec d7bb6df5-2e7d-4e86-8546-8ac4266e856e +2024-09-11 09:02:25.784816 2024-09-11 09:02:25.78482 aggnd 14010657X R rec 225aad45-7488-49ff-a0c8-87f7f0582194 +2024-09-11 09:02:25.843306 2024-09-11 09:02:25.843312 aggnd 140129510 R rec e6efb3ee-2d08-4dce-b6f6-be6432318ca3 +2024-09-11 09:02:25.91356 2024-09-11 09:02:25.913565 aggnd 140132872 R rec b5c74dfa-f79a-436c-9276-74b8c4817a26 +2024-09-11 09:02:25.965227 2024-09-11 09:02:25.965233 aggnd 140142622 R rec 2d5fcc78-0798-4f40-bcbb-64e4e832b8d9 +2024-09-11 09:02:26.027251 2024-09-11 09:02:26.027256 aggnd 14016815X R rec c1134f92-ef72-4eb6-af1e-98998d77fe89 +2024-09-11 09:02:26.081177 2024-09-11 09:02:26.081182 aggnd 140169016 R rec eb574757-dfdd-4ec4-9c58-a3e803efb9e5 +2024-09-11 09:02:26.146447 2024-09-11 09:02:26.146453 aggnd 140234381 R rec 6738ab90-9bc9-4b20-b4c9-c0b7efbb195d +2024-09-11 09:02:26.202524 2024-09-11 09:02:26.202529 aggnd 140306412 R rec c5a5bb19-cbe6-4b50-a985-8bddabc65e79 +2024-09-11 09:02:26.257231 2024-09-11 09:02:26.257237 aggnd 140322140 R rec bc945801-ab5c-46f7-8d80-5205794d46c1 +2024-09-11 09:02:26.308111 2024-09-11 09:02:26.308116 aggnd 140322213 R rec aeb99de2-568c-4b23-9852-bf27ea2cf549 +2024-09-11 09:02:26.369497 2024-09-11 09:02:26.369502 aggnd 140327126 R rec e6b29dfa-ea17-42a9-829f-ed64aff83df7 +2024-09-11 09:02:26.423664 2024-09-11 09:02:26.423669 aggnd 140327606 R rec 80afbf4a-8683-457e-bf56-c224d482e46d +2024-09-11 09:02:26.477233 2024-09-11 09:02:26.477238 aggnd 140330720 R rec 3b36bcfb-410f-44ed-86b7-4610a218474e +2024-09-11 09:02:26.536966 2024-09-11 09:02:26.536971 aggnd 140338683 R rec fbe22fa3-e89e-4f97-89fa-0097cd9db692 +2024-09-11 09:02:26.598097 2024-09-11 09:02:26.598102 aggnd 140345884 R rec afa67f9e-242a-4ba4-a08f-83a18de16ee8 +2024-09-11 09:02:26.653858 2024-09-11 09:02:26.653864 aggnd 140416919 R rec 69fb6ccb-53e9-4840-943a-9e2cfe0d3bb6 +2024-09-11 09:02:26.71189 2024-09-11 09:02:26.711895 aggnd 140419799 R rec 2e995623-fea6-46b9-8ec1-97df5b3eb760 +2024-09-11 09:02:26.766615 2024-09-11 09:02:26.76662 aggnd 140424873 R rec c03dc6c6-38eb-4c13-b1ef-8df9a241efd2 +2024-09-11 09:02:26.823729 2024-09-11 09:02:26.823734 aggnd 14043917X R rec 4d8bbb52-1030-4f54-a8c9-9b3e7dc3b378 +2024-09-11 09:02:26.874999 2024-09-11 09:02:26.875005 aggnd 140458123 R rec 0fea301d-610f-4446-b38c-8a79dd9e5be2 +2024-09-11 09:02:26.927755 2024-09-11 09:02:26.92776 aggnd 14046090X R rec fe7e4e12-85ac-4f2e-90be-1e3069b22708 +2024-09-11 09:02:26.984772 2024-09-11 09:02:26.984777 aggnd 140469923 R rec c90684f9-c398-472d-98ea-5b81284643e3 +2024-09-11 09:02:27.042601 2024-09-11 09:02:27.042605 aggnd 140489096 R rec 37071e5d-b414-4ac3-a611-b6e824197e61 +2024-09-11 09:02:27.095666 2024-09-11 09:02:27.095672 aggnd 140490841 R rec 66b68dbb-6161-495b-8971-a4087acde829 +2024-09-11 09:02:27.147334 2024-09-11 09:02:27.14734 aggnd 140499024 R rec f9766b64-5f57-4b7b-9fbf-a0b46a676dce +2024-09-11 09:02:27.207031 2024-09-11 09:02:27.207036 aggnd 140500634 R rec 4c53157f-77c2-409f-a6b4-83c3bdf410c3 +2024-09-11 09:02:27.261849 2024-09-11 09:02:27.261854 aggnd 140540830 R rec bae79c2e-0999-4225-8c50-af1195504269 +2024-09-11 09:02:27.314821 2024-09-11 09:02:27.314826 aggnd 140543503 R rec 46bfa478-3698-407b-87b7-43775fa5bf6b +2024-09-11 09:02:27.365114 2024-09-11 09:02:27.365119 aggnd 14055260X R rec 65f4101c-0d14-429b-ba20-38e597ed33e5 +2024-09-11 09:02:27.416417 2024-09-11 09:02:27.416421 aggnd 140553533 R rec 525876c3-84ac-4007-abc4-4641cafaa0bc +2024-09-11 09:02:27.468334 2024-09-11 09:02:27.468339 aggnd 140564306 R rec 8b7c231f-a80e-4134-b312-90efd45e1276 +2024-09-11 09:02:27.553034 2024-09-11 09:02:27.553039 aggnd 140580204 R rec 27b04912-f584-4498-b712-3f5bbca546ad +2024-09-11 09:02:27.631598 2024-09-11 09:02:27.631603 aggnd 140595716 R rec 03be7254-d25f-4a37-922b-84e98645ce9b +2024-09-11 09:02:27.68219 2024-09-11 09:02:27.682196 aggnd 140605304 R rec b7c86ca1-3ab2-4cd1-a03c-d9ed93db9649 +2024-09-11 09:02:27.736509 2024-09-11 09:02:27.736514 aggnd 140623388 R rec 0e52c3e0-f876-4cdd-9532-9bd0b71d5f8b +2024-09-11 09:02:27.789084 2024-09-11 09:02:27.789089 aggnd 140655387 R rec 43af3def-bd99-4c22-8b19-ed5b02f6562d +2024-09-11 09:02:27.839738 2024-09-11 09:02:27.839743 aggnd 140665927 R rec 3cbd70f9-300c-4796-82de-9f4072e51643 +2024-09-11 09:02:27.889152 2024-09-11 09:02:27.889158 aggnd 140671153 R rec c29d5a0c-2a99-44bf-a1a4-7e4bdf602256 +2024-09-11 09:02:27.948618 2024-09-11 09:02:27.948624 aggnd 140699562 R rec d44be0fd-23a3-42dd-887b-95a21fa67e84 +2024-09-11 09:02:28.008271 2024-09-11 09:02:28.008277 aggnd 140703063 R rec 46cf82d0-73e8-42f9-9d8d-c888c7838390 +2024-09-11 09:02:28.0688 2024-09-11 09:02:28.068805 aggnd 140707921 R rec 121e39be-61f5-47a5-b742-493b3afe2b9f +2024-09-11 09:02:28.123508 2024-09-11 09:02:28.123513 aggnd 140723269 R rec 42b3d268-4732-4e64-bd36-6e4b90355f38 +2024-09-11 09:02:28.218696 2024-09-11 09:02:28.218702 aggnd 140724656 R rec 26420880-9dca-45c0-bb2f-9e639d513713 +2024-09-11 09:02:28.287645 2024-09-11 09:02:28.28765 aggnd 140749195 R rec ba66465a-426b-47f3-a166-891fe202f2ad +2024-09-11 09:02:28.344934 2024-09-11 09:02:28.34494 aggnd 140749861 R rec 83476ac7-d849-436c-8b37-e71d99c6a9d8 +2024-09-11 09:02:28.40427 2024-09-11 09:02:28.404275 aggnd 140751149 R rec 446731fc-65c7-475e-bdff-e310c2e4ed5c +2024-09-11 09:02:28.459675 2024-09-11 09:02:28.459681 aggnd 140764143 R rec 2cb53dcf-cbb9-4fb8-9e94-aab25aa22068 +2024-09-11 09:02:28.521426 2024-09-11 09:02:28.521432 aggnd 140781498 R rec 8f601393-3a76-41cb-93dc-482c8c70a6b6 +2024-09-11 09:02:28.576776 2024-09-11 09:02:28.576781 aggnd 140791434 R rec 160ea614-a0c7-4008-8faa-d1a7bb1aca52 +2024-09-11 09:02:28.633994 2024-09-11 09:02:28.634 aggnd 140807268 R rec c2c1c78a-2fb6-4183-b7b9-127ecb35b5a2 +2024-09-11 09:02:28.69824 2024-09-11 09:02:28.698246 aggnd 140808337 R rec 213cef87-24d4-4735-b1ec-7a1adfbacf0d +2024-09-11 09:02:28.764279 2024-09-11 09:02:28.764284 aggnd 140818197 R rec d7d2c7f1-6059-43c0-994a-505244c6613c +2024-09-11 09:02:28.817183 2024-09-11 09:02:28.817189 aggnd 140835822 R rec de50b8cc-cb80-42d7-b695-239f18b2d668 +2024-09-11 09:02:28.877701 2024-09-11 09:02:28.877706 aggnd 140848363 R rec e2048ad4-075a-4a2a-9ad4-4c6cfde4ea09 +2024-09-11 09:02:28.935759 2024-09-11 09:02:28.935764 aggnd 140849963 R rec c53f8bd3-df6e-4646-add2-0abdff68018d +2024-09-11 09:02:28.987139 2024-09-11 09:02:28.987144 aggnd 14085200X R rec e32d8375-10c1-4123-967d-c4323815a006 +2024-09-11 09:02:29.042177 2024-09-11 09:02:29.042183 aggnd 14085603X R rec 88a35857-6d8f-4e07-9f0f-e92a59a24188 +2024-09-11 09:02:29.094755 2024-09-11 09:02:29.09476 aggnd 140890335 R rec 92f9dab7-6aa5-47f7-8f6b-90c0344293ef +2024-09-11 09:02:29.145699 2024-09-11 09:02:29.145705 aggnd 140891420 R rec 4f4060e7-3e3f-4765-a16f-92c986521114 +2024-09-11 09:02:29.211525 2024-09-11 09:02:29.211531 aggnd 140897933 R rec d535c9ef-c66d-4b8f-8bfc-c604d5e09228 +2024-09-11 09:02:29.268044 2024-09-11 09:02:29.268049 aggnd 140930531 R rec 195a0f4c-4598-43c7-aa29-a5e995c0a041 +2024-09-11 09:02:29.329545 2024-09-11 09:02:29.32955 aggnd 140948317 R rec 3996741c-abc6-40d4-8900-f69877bd7f06 +2024-09-11 09:02:29.383916 2024-09-11 09:02:29.383921 aggnd 140952012 R rec 415eddc2-6579-467d-8b56-ca36dd648164 +2024-09-11 09:02:29.442522 2024-09-11 09:02:29.442528 aggnd 140952985 R rec b494f012-aa8e-4c50-ab0a-dbe3bf6b10ed +2024-09-11 09:02:29.496352 2024-09-11 09:02:29.496357 aggnd 140960597 R rec 3c53a47b-57cb-40b8-b5ce-9c0523f77d16 +2024-09-11 09:02:29.546777 2024-09-11 09:02:29.546781 aggnd 140974571 R rec c29288f0-003d-4c7d-8084-10606f1b20f7 +2024-09-11 09:02:29.599612 2024-09-11 09:02:29.599618 aggnd 14098643X R rec ec1f0ccd-8d5a-40a8-be06-fadd6f771d60 +2024-09-11 09:02:29.650424 2024-09-11 09:02:29.650429 aggnd 140996524 R rec 778a91be-8ac8-44b5-9e3f-40311daad3d6 +2024-09-11 09:02:29.702672 2024-09-11 09:02:29.702677 aggnd 141011491 R rec 50e4bb3b-00df-472a-8f3e-735a9bde556d +2024-09-11 09:02:29.757597 2024-09-11 09:02:29.757602 aggnd 141030771 R rec 0694e4b3-89e5-4b23-934d-024de2438b79 +2024-09-11 09:02:29.818543 2024-09-11 09:02:29.818548 aggnd 141129271 R rec 0dc148fb-f5ed-4727-ad4f-34dcffd3d269 +2024-09-11 09:02:29.868757 2024-09-11 09:02:29.868762 aggnd 141136618 R rec c1cd45f8-2c0b-4872-a5a3-641153aef691 +2024-09-11 09:02:29.916456 2024-09-11 09:02:29.916461 aggnd 141153067 R rec 942fc3f3-e1f5-453d-a848-5ecd1e6f9afa +2024-09-11 09:02:29.976401 2024-09-11 09:02:29.976405 aggnd 141169818 R rec 47fa848e-0aa0-40e5-a799-58125546e6c2 +2024-09-11 09:02:30.026104 2024-09-11 09:02:30.026109 aggnd 141184531 R rec fb06bb41-3c5d-4c2d-97b3-4e26f504e834 +2024-09-11 09:02:30.090236 2024-09-11 09:02:30.090241 aggnd 141195428 R rec 1500cbe3-a308-4788-931d-19caf8f0a2ba +2024-09-11 09:02:30.15541 2024-09-11 09:02:30.155414 aggnd 141208740 R rec 0ad93502-997b-4f99-80ef-84a1bb4a19ac +2024-09-11 09:02:30.225303 2024-09-11 09:02:30.225308 aggnd 141222042 R rec 6c289582-9cf6-497f-8f74-ea24fbcb3936 +2024-09-11 09:02:30.279094 2024-09-11 09:02:30.2791 aggnd 141231742 R rec 67c16697-16f1-4be5-a326-41321db66a9c +2024-09-11 09:02:30.333269 2024-09-11 09:02:30.333273 aggnd 141248408 R rec 843acafe-cf9f-4f9c-b1ac-a5139ffea532 +2024-09-11 09:02:30.383062 2024-09-11 09:02:30.383067 aggnd 141327588 R rec 4fcea5e4-396e-4ae7-9517-3bafa31fdaf6 +2024-09-11 09:02:30.437259 2024-09-11 09:02:30.437264 aggnd 141339942 R rec 23b3be07-819b-4169-861b-88f8bb20e874 +2024-09-11 09:02:30.488594 2024-09-11 09:02:30.488599 aggnd 141354240 R rec 0c5510b9-cc37-4ab5-802a-1978ae22d957 +2024-09-11 09:02:30.539554 2024-09-11 09:02:30.53956 aggnd 141363193 R rec 08cd73dc-54f4-4f1d-b0f3-1e0ef0714be4 +2024-09-11 09:02:30.597126 2024-09-11 09:02:30.597132 aggnd 141373741 R rec 0f498b5d-0f4c-4409-bb8d-f4024666144b +2024-09-11 09:02:30.65211 2024-09-11 09:02:30.652115 aggnd 141395362 R rec 0bc7793b-543d-44a3-bac4-01f282690a7c +2024-09-11 09:02:30.717361 2024-09-11 09:02:30.717367 aggnd 141454679 R rec ad802e64-0d5c-45b7-8783-cafd7b9c2269 +2024-09-11 09:02:30.771293 2024-09-11 09:02:30.771297 aggnd 141463740 R rec 8e655b28-dc82-44b7-8eb5-a52f3f132ccf +2024-09-11 09:02:30.835437 2024-09-11 09:02:30.835442 aggnd 141475366 R rec 1eeef83d-f69d-46a2-aec8-1e16ea8c088b +2024-09-11 09:02:30.891326 2024-09-11 09:02:30.891332 aggnd 14151289X R rec 50fa3fa4-527b-448b-aebf-e7e08f4f025b +2024-09-11 09:02:30.956209 2024-09-11 09:02:30.956214 aggnd 141518707 R rec 72c461ac-d22d-4242-a825-da0b1f9d3a79 +2024-09-11 09:02:31.015216 2024-09-11 09:02:31.015222 aggnd 141531142 R rec 0a0cb978-7b4b-43e8-b94d-05fd60290eb9 +2024-09-11 09:02:31.091404 2024-09-11 09:02:31.09141 aggnd 141546891 R rec 029dfa52-0228-48e7-9059-ad163672b3c3 +2024-09-11 09:02:31.143727 2024-09-11 09:02:31.143731 aggnd 141569344 R rec c1cf1568-47ff-44c6-a7da-d0cca66cfdee +2024-09-11 09:02:31.196799 2024-09-11 09:02:31.196804 aggnd 141630531 R rec 5492b788-8b72-4743-a010-48f987059a78 +2024-09-11 09:02:31.249301 2024-09-11 09:02:31.249306 aggnd 141639490 R rec cae40a70-3f68-4f66-8fd3-e7549256cecd +2024-09-11 09:02:31.300109 2024-09-11 09:02:31.300114 aggnd 141657278 R rec 24b4cead-c26d-4780-a807-00cc9b170f06 +2024-09-11 09:02:31.360381 2024-09-11 09:02:31.360386 aggnd 14167220X R rec e1456f1f-ed24-4036-a393-39235a3338b9 +2024-09-11 09:02:31.411471 2024-09-11 09:02:31.411475 aggnd 141675330 R rec 49c80ef6-31da-41af-9752-686a1e792598 +2024-09-11 09:02:31.466217 2024-09-11 09:02:31.466222 aggnd 141707151 R rec 6ca6780b-427c-43e4-a8da-d2b548fec172 +2024-09-11 09:02:31.517691 2024-09-11 09:02:31.517696 aggnd 141709499 R rec 0a0d6754-4ffc-4126-a02a-e803c5f2a6e2 +2024-09-11 09:02:31.598746 2024-09-11 09:02:31.598751 aggnd 141752025 R rec 86a2afeb-82fc-417a-8fce-128b4e1327c8 +2024-09-11 09:02:31.653837 2024-09-11 09:02:31.653842 aggnd 141780940 R rec 1681a70d-77ae-49dc-a2c9-3303803852ff +2024-09-11 09:02:31.709481 2024-09-11 09:02:31.709488 aggnd 141801689 R rec 2c1b6170-742d-4478-b4d6-d4005f1948ab +2024-09-11 09:02:31.77994 2024-09-11 09:02:31.779945 aggnd 141820209 R rec d510009f-228a-4765-a078-421cc3049d49 +2024-09-11 09:02:31.835009 2024-09-11 09:02:31.835014 aggnd 141833475 R rec 1225ba93-411f-465f-a931-b44e531966d0 +2024-09-11 09:02:31.887244 2024-09-11 09:02:31.887249 aggnd 141839422 R rec 6afdb08f-1f12-4cff-a24a-e6a98df24413 +2024-09-11 09:02:31.950534 2024-09-11 09:02:31.950539 aggnd 141851910 R rec 27322115-d1de-4aa5-80bd-77e9fa323eba +2024-09-11 09:02:32.005215 2024-09-11 09:02:32.00522 aggnd 141864893 R rec 171c7cc4-9aa3-4b34-a162-aaf2ea6b6d3e +2024-09-11 09:02:32.062107 2024-09-11 09:02:32.062112 aggnd 141874325 R rec 3425d16d-26b3-45c9-b7ca-2e9d5763ba65 +2024-09-11 09:02:32.115035 2024-09-11 09:02:32.11504 aggnd 141919558 R rec bed618a2-7bfc-4c2d-bba4-dcb87ff138fb +2024-09-11 09:02:32.16648 2024-09-11 09:02:32.166485 aggnd 141944447 R rec c1602244-3dfa-4e6c-a2c8-bc2d2de12203 +2024-09-11 09:02:32.21871 2024-09-11 09:02:32.218715 aggnd 14194479X R rec 1a00921c-cf32-431b-a4c7-47748da8f612 +2024-09-11 09:02:32.27228 2024-09-11 09:02:32.272286 aggnd 141961406 R rec f0d109c9-1434-4761-a695-8456dbdfd359 +2024-09-11 09:02:32.337367 2024-09-11 09:02:32.337372 aggnd 141969016 R rec 0c9e135a-1764-4830-a196-c29294f43b40 +2024-09-11 09:02:32.389388 2024-09-11 09:02:32.389393 aggnd 141980516 R rec 7a372ce4-7f60-4c26-a173-481a51325037 +2024-09-11 09:02:32.44365 2024-09-11 09:02:32.443655 aggnd 14198970X R rec bdeba2e9-88a2-4423-97dd-20622da2c98d +2024-09-11 09:02:32.498182 2024-09-11 09:02:32.498186 aggnd 141990600 R rec cdce7408-a044-4c63-b86e-6ecb0a877982 +2024-09-11 09:02:32.562308 2024-09-11 09:02:32.562317 aggnd 142004634 R rec c47ac135-9036-4a79-9aa0-b686e3e95f74 +2024-09-11 09:02:32.619033 2024-09-11 09:02:32.619037 aggnd 142042544 R rec 307a26fb-2b08-4c0e-a251-ea164d071156 +2024-09-11 09:02:32.668546 2024-09-11 09:02:32.66855 aggnd 142047465 R rec 56627eb2-7eba-4bcd-a8e1-d80388a12a4a +2024-09-11 09:02:32.719952 2024-09-11 09:02:32.719957 aggnd 142047678 R rec 53550fa0-7090-4414-bbad-556bd26fef67 +2024-09-11 09:02:32.804987 2024-09-11 09:02:32.80499 aggnd 142098256 R rec 109125a6-a3a1-4cb1-9894-4d442f82e8ae +2024-09-11 09:02:32.861817 2024-09-11 09:02:32.861823 aggnd 142138894 R rec 064ff2cc-c0ee-4b33-8b9c-f7608419d9ab +2024-09-11 09:02:32.92154 2024-09-11 09:02:32.921545 aggnd 142174610 R rec c8c75239-bd54-4113-9516-93a9a34408c8 +2024-09-11 09:02:32.972357 2024-09-11 09:02:32.972362 aggnd 142191663 R rec 3765b059-4aae-4738-978d-e9b7c95a09a9 +2024-09-11 09:02:33.05866 2024-09-11 09:02:33.058665 aggnd 142206725 R rec 8c9e9485-c80d-4b6a-b776-d8670bcda837 +2024-09-11 09:02:33.125021 2024-09-11 09:02:33.125026 aggnd 142208035 R rec c06ceaa7-c060-4ad6-8cfa-187435048800 +2024-09-11 09:02:33.177902 2024-09-11 09:02:33.177907 aggnd 142211117 R rec e45af121-fd63-4f4a-8e19-0fa1c8c24eaf +2024-09-11 09:02:33.233434 2024-09-11 09:02:33.233439 aggnd 142218685 R rec f8e9fadf-9055-4cd3-b661-bb10ea0c1cd6 +2024-09-11 09:02:33.290922 2024-09-11 09:02:33.290927 aggnd 142233307 R rec f180c25a-c339-4ef8-a9c8-57a7be5f1031 +2024-09-11 09:02:33.362127 2024-09-11 09:02:33.362132 aggnd 142248010 R rec 034bdcb8-779d-4633-a6d3-ac86b2e3cb1b +2024-09-11 09:02:33.412125 2024-09-11 09:02:33.41213 aggnd 142254193 R rec 84785dbf-94f3-41e3-aaa9-dbeefb2e09d1 +2024-09-11 09:02:33.46655 2024-09-11 09:02:33.466556 aggnd 142291684 R rec 0c3d292c-1709-4e61-bd65-876723de1b73 +2024-09-11 09:02:33.518415 2024-09-11 09:02:33.518421 aggnd 142310778 R rec 2af47c07-dbc3-4707-9c3f-79a5fe141fb3 +2024-09-11 09:02:33.573864 2024-09-11 09:02:33.573869 aggnd 142328588 R rec 9573044f-9587-4f9e-abac-8dda95c788b4 +2024-09-11 09:02:33.640942 2024-09-11 09:02:33.640948 aggnd 142468614 R rec 8d9828ad-9429-4ae8-9516-2e491fcc4667 +2024-09-11 09:02:33.70825 2024-09-11 09:02:33.708255 aggnd 14250923X R rec 928f1ecf-2e24-4dec-bfed-d2ba31ede53f +2024-09-11 09:02:33.758691 2024-09-11 09:02:33.758697 aggnd 142514926 R rec 45c44546-9746-42f5-b1c4-5c52ba7581d2 +2024-09-11 09:02:33.812974 2024-09-11 09:02:33.812979 aggnd 142554197 R rec bf123c94-0b16-4da1-a794-8c27111eabed +2024-09-11 09:02:33.876845 2024-09-11 09:02:33.87685 aggnd 142619930 R rec 482e577c-dd68-4a47-88d8-77b2ddcbb83b +2024-09-11 09:02:33.938027 2024-09-11 09:02:33.938031 aggnd 142643742 R rec 64cde681-e107-49b0-8a1d-7d2498c52af3 +2024-09-11 09:02:33.989144 2024-09-11 09:02:33.989149 aggnd 142693634 R rec 985bf62f-3525-4a26-b007-45450dac7a8c +2024-09-11 09:02:34.053123 2024-09-11 09:02:34.053128 aggnd 142697354 R rec e26c7aa0-2769-48af-89d6-996008932c5e +2024-09-11 09:02:34.106048 2024-09-11 09:02:34.106053 aggnd 142717126 R rec d0996f7a-5f6b-44de-9517-85ebfac07e4e +2024-09-11 09:02:34.15809 2024-09-11 09:02:34.158096 aggnd 142751464 R rec 5eafa413-1d58-4b2c-aa9a-704f4b1ef2f8 +2024-09-11 09:02:34.210582 2024-09-11 09:02:34.210586 aggnd 14275210X R rec dc60bfea-746e-4843-a290-7592245aa6cf +2024-09-11 09:02:34.300529 2024-09-11 09:02:34.300533 aggnd 142757640 R rec d8b2262e-6dc1-47d6-a8da-8b1dd13ead0f +2024-09-11 09:02:34.348299 2024-09-11 09:02:34.348304 aggnd 142767549 R rec 6c4ea42e-440d-4d2b-a8c2-b234df7dd31b +2024-09-11 09:02:34.403662 2024-09-11 09:02:34.403667 aggnd 142782629 R rec b01cc031-cb25-4a07-a18b-cdcd7aa63fe8 +2024-09-11 09:02:34.456428 2024-09-11 09:02:34.456433 aggnd 142784338 R rec 78d5698c-6d06-440b-95f5-87301d442a94 +2024-09-11 09:02:34.503602 2024-09-11 09:02:34.503607 aggnd 142806943 R rec 95159e96-77ff-44a5-b605-2085384896b9 +2024-09-11 09:02:34.553806 2024-09-11 09:02:34.553811 aggnd 142837431 R rec 3754f68f-e23c-4433-ad0e-f955adecd50d +2024-09-11 09:02:34.604942 2024-09-11 09:02:34.604947 aggnd 142874906 R rec 390d041e-bbda-4413-824e-dc42a869e19d +2024-09-11 09:02:34.656283 2024-09-11 09:02:34.656287 aggnd 142877174 R rec ef921456-359f-4d81-94fc-3201e2ff4dc3 +2024-09-11 09:02:34.708458 2024-09-11 09:02:34.708463 aggnd 142881430 R rec 9621263d-dee1-40af-842b-377726d389ed +2024-09-11 09:02:34.75893 2024-09-11 09:02:34.758936 aggnd 142894745 R rec c3fca283-2f2b-4a8f-a359-7fb18c857d53 +2024-09-11 09:02:34.811606 2024-09-11 09:02:34.81161 aggnd 142899615 R rec 3b9cabea-715c-49a6-9735-f98644095b61 +2024-09-11 09:02:34.86382 2024-09-11 09:02:34.863825 aggnd 142910406 R rec f2d46dda-73c6-4628-81c5-ab7e0d54a81f +2024-09-11 09:02:34.926294 2024-09-11 09:02:34.926298 aggnd 142915637 R rec 701b9efb-0bb3-4dd9-84bf-9ef66eeac7b8 +2024-09-11 09:02:34.974348 2024-09-11 09:02:34.974353 aggnd 142944548 R rec 55222ad7-5739-4a4d-8556-beea924f93a3 +2024-09-11 09:02:35.026431 2024-09-11 09:02:35.026437 aggnd 142979597 R rec dda525ab-20dc-45b9-998e-3081aa7a287d +2024-09-11 09:02:35.078448 2024-09-11 09:02:35.078453 aggnd 14299670X R rec 1bd5f538-d863-41aa-9cd0-85fb7b3b9c80 +2024-09-11 09:02:35.127439 2024-09-11 09:02:35.127445 aggnd 143008900 R rec f708d346-3259-4aa5-8265-14706ff3c3b6 +2024-09-11 09:02:35.177921 2024-09-11 09:02:35.177926 aggnd 143059424 R rec 48c1ac8d-d7d7-45b9-817e-b879641a300d +2024-09-11 09:02:35.224896 2024-09-11 09:02:35.224901 aggnd 143063324 R rec 9cff48dc-563b-4d04-9862-d9ab46b7e51c +2024-09-11 09:02:35.274274 2024-09-11 09:02:35.27428 aggnd 143068547 R rec 30f3f384-1b20-4d2c-b7e9-c293d81b881f +2024-09-11 09:02:35.338935 2024-09-11 09:02:35.33894 aggnd 143107291 R rec 13bad5ad-7c8e-4ef0-9394-fc172b648af9 +2024-09-11 09:02:35.391143 2024-09-11 09:02:35.391147 aggnd 143130706 R rec 0d2160fc-3893-445f-b223-7210c39ca3ef +2024-09-11 09:02:35.444372 2024-09-11 09:02:35.444377 aggnd 143138901 R rec 2b996bfa-6ded-4d3f-acee-979c8f651706 +2024-09-11 09:02:35.49387 2024-09-11 09:02:35.493875 aggnd 143152807 R rec 73efb09e-285b-46aa-99c0-62545a28c6b0 +2024-09-11 09:02:35.543801 2024-09-11 09:02:35.543806 aggnd 143164406 R rec 94b12cf7-b48c-45af-a3cf-808cb81095a3 +2024-09-11 09:02:35.596562 2024-09-11 09:02:35.596567 aggnd 143170899 R rec b899d131-9718-4a54-96cc-a78586879246 +2024-09-11 09:02:35.649498 2024-09-11 09:02:35.649503 aggnd 143182846 R rec e9f68f3e-ffd2-44cd-9db2-b18e441a3e26 +2024-09-11 09:02:35.70003 2024-09-11 09:02:35.700035 aggnd 143199897 R rec a1aed479-3734-48d1-89cb-7d3f5f298e7a +2024-09-11 09:02:35.761489 2024-09-11 09:02:35.761493 aggnd 14320212X R rec f29c7e43-aa78-4c7e-a35b-2e9a639ee6f9 +2024-09-11 09:02:35.822261 2024-09-11 09:02:35.822266 aggnd 143203576 R rec f6be0e20-1aa1-4183-8f51-fc0c427d8f05 +2024-09-11 09:02:35.87001 2024-09-11 09:02:35.870015 aggnd 143204718 R rec 2d2b35ec-a607-43d6-99a0-4f674204d631 +2024-09-11 09:02:35.921834 2024-09-11 09:02:35.92184 aggnd 143231499 R rec 2c192138-9f1f-4dcc-9427-ee0e7e822ac4 +2024-09-11 09:02:35.972173 2024-09-11 09:02:35.972178 aggnd 14326589X R rec beacfb59-517c-4591-924e-4800fd1f7b01 +2024-09-11 09:02:36.028788 2024-09-11 09:02:36.028794 aggnd 14327810X R rec b2662c46-cfd1-4ce4-992b-e9bcec7308a1 +2024-09-11 09:02:36.09042 2024-09-11 09:02:36.090425 aggnd 143326694 R rec bf0ca76d-82d2-4623-9996-34ece2211dc4 +2024-09-11 09:02:36.140085 2024-09-11 09:02:36.140088 aggnd 143341847 R rec c8ff663f-4ec2-4640-84bf-e40992311db6 +2024-09-11 09:02:36.192878 2024-09-11 09:02:36.192884 aggnd 14334739X R rec dba1c21d-b869-444c-af26-19f8f3d3de98 +2024-09-11 09:02:36.247615 2024-09-11 09:02:36.247621 aggnd 143349791 R rec d020fbb8-a593-4199-bbd3-07c6fed84c1a +2024-09-11 09:02:36.312923 2024-09-11 09:02:36.312928 aggnd 143350285 R rec 2e0e05df-27af-42dc-b27d-deca9659bfb5 +2024-09-11 09:02:36.363591 2024-09-11 09:02:36.363596 aggnd 143366254 R rec bb948d9b-183a-490c-b64f-76fecb1ff049 +2024-09-11 09:02:36.420947 2024-09-11 09:02:36.420951 aggnd 143371193 R rec e5a6d6b4-6697-43f7-92fb-a2cb3f075254 +2024-09-11 09:02:36.475847 2024-09-11 09:02:36.475852 aggnd 143380583 R rec 5eea3bcb-c8da-48a4-a810-3c735dc822eb +2024-09-11 09:02:36.528233 2024-09-11 09:02:36.528238 aggnd 143441450 R rec 077265de-47a2-4630-9e7f-ba6eca8443a7 +2024-09-11 09:02:36.58291 2024-09-11 09:02:36.582915 aggnd 143443011 R rec 11815332-89de-4e9e-9773-08df56020d3b +2024-09-11 09:02:36.643595 2024-09-11 09:02:36.6436 aggnd 143454781 R rec 6be5a2a4-71b6-479f-8f79-a5989a278f0f +2024-09-11 09:02:36.699389 2024-09-11 09:02:36.699394 aggnd 143464000 R rec fbc10f67-6d29-4ad3-80ed-b58797486e68 +2024-09-11 09:02:36.759719 2024-09-11 09:02:36.759725 aggnd 143465147 R rec 2f11a582-14d3-4609-b9ea-52607d02143c +2024-09-11 09:02:36.810451 2024-09-11 09:02:36.810456 aggnd 143505165 R rec f02e1155-1fee-4373-9fa1-e46fdc64397c +2024-09-11 09:02:36.862434 2024-09-11 09:02:36.86244 aggnd 143511327 R rec 15c7ceb6-edba-42b5-8542-b7f0e22fccc1 +2024-09-11 09:02:36.925685 2024-09-11 09:02:36.92569 aggnd 143513796 R rec 7f59c96b-de16-4532-b7f2-bbd70fb5ab5a +2024-09-11 09:02:36.983144 2024-09-11 09:02:36.983148 aggnd 143530879 R rec 025ea09b-8982-4b70-a6c0-3d2727da203c +2024-09-11 09:02:37.040251 2024-09-11 09:02:37.040257 aggnd 143531468 R rec 13cb7e84-89e1-458f-b339-19989000c71d +2024-09-11 09:02:37.131686 2024-09-11 09:02:37.131692 aggnd 143560794 R rec cc2847cb-2d1c-4bcc-be33-928386efd426 +2024-09-11 09:02:37.183377 2024-09-11 09:02:37.183382 aggnd 143583883 R rec 12279fd8-e96d-4ac7-ba4f-17c441c33ba1 +2024-09-11 09:02:37.232644 2024-09-11 09:02:37.232649 aggnd 143606336 R rec cbbc6d41-d134-4a4b-a7be-29201ada9e1e +2024-09-11 09:02:37.285274 2024-09-11 09:02:37.285279 aggnd 143612972 R rec a9dae649-5ade-4b53-8a50-88e380b73f41 +2024-09-11 09:02:37.337643 2024-09-11 09:02:37.337649 aggnd 143626655 R rec d22abf4b-3efe-4ec5-bd46-e7783d5a2d6a +2024-09-11 09:02:37.398116 2024-09-11 09:02:37.398142 aggnd 143641174 R rec 0dcce840-553a-40c2-b032-5fdf35f2b069 +2024-09-11 09:02:37.449516 2024-09-11 09:02:37.449522 aggnd 143661779 R rec 3a9f6e2c-5a59-4ed9-a753-d0a49a5a6bec +2024-09-11 09:02:37.503551 2024-09-11 09:02:37.503556 aggnd 143679783 R rec 06eba537-8e89-4aae-b9ca-0fa533515eec +2024-09-11 09:02:37.568199 2024-09-11 09:02:37.568204 aggnd 14369877X R rec e9221c67-b650-46da-9cb5-92690c0d5ccd +2024-09-11 09:02:37.621025 2024-09-11 09:02:37.62103 aggnd 143700545 R rec 160fcb98-7d77-4a44-b397-c70481758ad0 +2024-09-11 09:02:37.715068 2024-09-11 09:02:37.715073 aggnd 143720244 R rec 80ae1d43-c18a-476b-8aca-c7843e2ae29a +2024-09-11 09:02:37.775449 2024-09-11 09:02:37.775453 aggnd 143739050 R rec 5751cf33-3fe9-45a7-8c72-61496d7989df +2024-09-11 09:02:37.832497 2024-09-11 09:02:37.832501 aggnd 143747835 R rec d23674a7-86d6-4515-943f-9b64408ae606 +2024-09-11 09:02:37.885373 2024-09-11 09:02:37.885378 aggnd 143755498 R rec 1fe1a497-ec42-477c-bcad-abac542b6bd8 +2024-09-11 09:02:37.94771 2024-09-11 09:02:37.947715 aggnd 14382399X R rec 209d9979-7382-4fef-b6d2-d839336c18a1 +2024-09-11 09:02:38.008021 2024-09-11 09:02:38.008027 aggnd 143849107 R rec a3fba2de-388f-45eb-90c9-21ece0d1c36a +2024-09-11 09:02:38.07369 2024-09-11 09:02:38.073694 aggnd 143873601 R rec 296abd87-d6f0-4fe5-af65-e1dbd5d3415f +2024-09-11 09:02:38.134028 2024-09-11 09:02:38.134033 aggnd 143905856 R rec 3db9f56b-6d7e-4c28-a68a-4f0270b67b1d +2024-09-11 09:02:38.184463 2024-09-11 09:02:38.184468 aggnd 143916629 R rec 99e5c0b1-0461-4619-9542-5858dedab922 +2024-09-11 09:02:38.237122 2024-09-11 09:02:38.237127 aggnd 143917889 R rec 90cf28d3-f43f-40e4-8e56-a38897e2a340 +2024-09-11 09:02:38.285976 2024-09-11 09:02:38.285981 aggnd 143929496 R rec d50ccdbe-3cff-4594-bc9c-6f0060237f61 +2024-09-11 09:02:38.336172 2024-09-11 09:02:38.336177 aggnd 143934821 R rec 51a00416-2ced-4291-8461-45c60512fab1 +2024-09-11 09:02:38.39027 2024-09-11 09:02:38.390275 aggnd 143941844 R rec 59731f67-880c-4047-b414-228ab2e0f4e0 +2024-09-11 09:02:38.44013 2024-09-11 09:02:38.440135 aggnd 143985418 R rec e0b84c04-f413-4efe-b658-7e2f7eb86f52 +2024-09-11 09:02:38.49872 2024-09-11 09:02:38.498725 aggnd 144017229 R rec c9eed568-baa8-4083-8ad2-fb7c25e058f2 +2024-09-11 09:02:38.557964 2024-09-11 09:02:38.55797 aggnd 144040182 R rec 745cff99-49a7-40fa-a09d-e2361345929c +2024-09-11 09:02:38.614373 2024-09-11 09:02:38.614378 aggnd 156719029 R rec 47adfbeb-947e-4d0c-90ea-3325a2ea2f9e +2024-09-11 09:02:38.670908 2024-09-11 09:02:38.670913 aggnd 158403487 R rec 5f4bbd47-a24a-4bb3-8dab-848c1eb582c0 +2024-09-11 09:02:38.732534 2024-09-11 09:02:38.732539 aggnd 16110522X R rec c3da2b9c-9dfb-4b28-a5f6-e85ceb318557 +2024-09-11 09:02:38.788625 2024-09-11 09:02:38.788629 aggnd 170056937 R rec 3093beb6-bd82-4cf8-ad75-704b23842286 +2024-09-11 09:02:38.851522 2024-09-11 09:02:38.851527 aggnd 170064344 R rec 3ebe3e86-1dbd-4b98-b762-98b8fac40d6e +2024-09-11 09:02:38.904817 2024-09-11 09:02:38.904822 aggnd 17014514X R rec fff388e2-7b08-4b05-9962-ad113e1f93b3 +2024-09-11 09:02:38.961409 2024-09-11 09:02:38.961413 aggnd 170154297 R rec ec9540a6-5287-4579-8881-67b9f530aba9 +2024-09-11 09:02:39.015854 2024-09-11 09:02:39.015859 aggnd 17017252X R rec 5cc05e7c-3626-4588-911c-e450acc666bd +2024-09-11 09:02:39.069869 2024-09-11 09:02:39.069874 aggnd 170229955 R rec 8ff2a81b-34d5-471b-9c68-047720b346ac +2024-09-11 09:02:39.122396 2024-09-11 09:02:39.122401 aggnd 170238873 R rec ac60fb78-24a6-41c3-9ce4-d4facde0aeea +2024-09-11 09:02:39.178981 2024-09-11 09:02:39.178986 aggnd 17027926X R rec c4a144c3-49c0-4813-8232-4d15d8fcb99b +2024-09-11 09:02:39.249487 2024-09-11 09:02:39.249492 aggnd 170299597 R rec fdb77cef-50ef-4008-a36a-e806481ee4c5 +2024-09-11 09:02:39.308197 2024-09-11 09:02:39.308201 aggnd 170311295 R rec ade5dbca-94ff-4a94-a18c-919d4a65a554 +2024-09-11 09:02:39.359513 2024-09-11 09:02:39.359519 aggnd 170322122 R rec f14c403a-37e0-4f86-a60f-7f451d51188b +2024-09-11 09:02:39.410306 2024-09-11 09:02:39.410311 aggnd 170395839 R rec adccf7a5-db79-4b53-be70-3d671a4262c5 +2024-09-11 09:02:39.462394 2024-09-11 09:02:39.462399 aggnd 170402584 R rec 4a9528ba-d81e-48e4-a783-f28c6146301d +2024-09-11 09:02:39.511562 2024-09-11 09:02:39.511568 aggnd 170410633 R rec 49d71983-78b6-4f2e-b47c-b23828f927e1 +2024-09-11 09:02:39.563114 2024-09-11 09:02:39.563119 aggnd 170454428 R rec 68f2a7b8-6a03-4e0d-9604-f724c3acb92a +2024-09-11 09:02:39.617011 2024-09-11 09:02:39.617016 aggnd 170502708 R rec 87fbc921-0ab8-4ed7-b6f4-97a886501232 +2024-09-11 09:02:39.669387 2024-09-11 09:02:39.669392 aggnd 170594211 R rec b04fbc35-e0d4-4193-a1f2-1c7c2d8693f9 +2024-09-11 09:02:39.733344 2024-09-11 09:02:39.733349 aggnd 170661393 R rec bdbce5c3-34b4-4d6a-8c35-96e793eb0f7a +2024-09-11 09:02:39.789941 2024-09-11 09:02:39.789946 aggnd 170678253 R rec d042abd6-7b8a-42df-9519-77fb217baeb4 +2024-09-11 09:02:39.849916 2024-09-11 09:02:39.849922 aggnd 170725383 R rec c54ee768-1e94-44c3-89e4-42cd14b7b684 +2024-09-11 09:02:39.933191 2024-09-11 09:02:39.933196 aggnd 170813010 R rec a7ac1340-7b41-42d1-9071-b517141be815 +2024-09-11 09:02:40.070728 2024-09-11 09:02:40.070732 aggnd 170877965 R rec 48da8436-db2f-4913-8c67-7050fc1be587 +2024-09-11 09:02:40.202525 2024-09-11 09:02:40.202531 aggnd 170952320 R rec 82f779db-0697-4d57-a4b1-300ea0a10889 +2024-09-11 09:02:40.305221 2024-09-11 09:02:40.305226 aggnd 170971325 R rec 9caeeb16-02cd-49bc-a9a9-d1711ea817b9 +2024-09-11 09:02:40.363 2024-09-11 09:02:40.363005 aggnd 170996085 R rec d21c8aa6-e799-4160-af95-30573d762ba0 +2024-09-11 09:02:40.418096 2024-09-11 09:02:40.418102 aggnd 171052412 R rec 37450dc9-807d-4031-b7c3-eb3b4c6588d5 +2024-09-11 09:02:40.475342 2024-09-11 09:02:40.475346 aggnd 171082079 R rec 93a88c4e-c2b9-48b9-8b60-59d2c35902fa +2024-09-11 09:02:40.528435 2024-09-11 09:02:40.52844 aggnd 171115058 R rec af7ee370-bd15-4b11-a2d8-22b6d7fddc11 +2024-09-11 09:02:40.58828 2024-09-11 09:02:40.588285 aggnd 171217772 R rec 3abac137-08f6-429a-a63d-d77ae6d9d705 +2024-09-11 09:02:40.641512 2024-09-11 09:02:40.641516 aggnd 171283899 R rec 6f074040-8452-4766-91c0-e4d9bdc272c5 +2024-09-11 09:02:40.696748 2024-09-11 09:02:40.696753 aggnd 171302605 R rec 0c97165c-309c-442f-b06c-8bc0a12b1784 +2024-09-11 09:02:40.751894 2024-09-11 09:02:40.751899 aggnd 171346424 R rec fcd944a8-7617-442d-bb2c-64d86e5504e3 +2024-09-11 09:02:40.806967 2024-09-11 09:02:40.806973 aggnd 171367421 R rec 84f502f0-3f03-4e91-852d-8f39646a1937 +2024-09-11 09:02:40.877796 2024-09-11 09:02:40.877801 aggnd 171541545 R rec 649a3c1e-8979-4a90-93bc-ef495bcf5ba6 +2024-09-11 09:02:40.931074 2024-09-11 09:02:40.931079 aggnd 171555430 R rec 278087e7-6bf9-466d-9da8-eae0b2dbff38 +2024-09-11 09:02:40.988639 2024-09-11 09:02:40.988644 aggnd 171629353 R rec d0ec24cb-b505-41ee-a670-7e0306a5e7c5 +2024-09-11 09:02:41.051006 2024-09-11 09:02:41.051011 aggnd 171634667 R rec 2a9fdb89-3cd5-42d0-96df-589a138bab7f +2024-09-11 09:02:41.106285 2024-09-11 09:02:41.10629 aggnd 171707788 R rec 66ff61cd-ad2a-4e4d-97eb-81baa89664e8 +2024-09-11 09:02:41.156638 2024-09-11 09:02:41.156644 aggnd 171735099 R rec f6825919-f82f-48b8-a187-feabcf5f76a2 +2024-09-11 09:02:41.20745 2024-09-11 09:02:41.207456 aggnd 171781082 R rec 4339aa0f-5e93-427f-ae7c-b627c29f1513 +2024-09-11 09:02:41.259745 2024-09-11 09:02:41.259751 aggnd 171827872 R rec fd1c3105-b518-417f-8d84-270e6dd0a394 +2024-09-11 09:02:41.314063 2024-09-11 09:02:41.314068 aggnd 17187935X R rec 5d8280fe-e1fc-463f-be00-3b99df18155f +2024-09-11 09:02:41.370127 2024-09-11 09:02:41.370132 aggnd 171899660 R rec 6e874336-784c-44bf-8040-2de2a26f1b83 +2024-09-11 09:02:41.423703 2024-09-11 09:02:41.423709 aggnd 17205821X R rec 121766af-cfde-47b9-9176-6d75b3eeb6d1 +2024-09-11 09:02:41.487133 2024-09-11 09:02:41.487138 aggnd 172099331 R rec b54daa7d-b514-46f9-b4c1-cb69f344e284 +2024-09-11 09:02:41.554982 2024-09-11 09:02:41.554987 aggnd 172140013 R rec 47c2c576-77b7-4b4f-a866-5223f6bc87df +2024-09-11 09:02:41.614759 2024-09-11 09:02:41.614765 aggnd 172141788 R rec f34ac711-f9ab-42aa-ad52-3f7baca2ce61 +2024-09-11 09:02:41.670765 2024-09-11 09:02:41.670769 aggnd 172206790 R rec 6a896f58-5415-49a8-b296-683eff9a779f +2024-09-11 09:02:41.735563 2024-09-11 09:02:41.735568 aggnd 172224314 R rec 5c9e7726-593b-4e8f-a83e-dd5266b99ab4 +2024-09-11 09:02:41.785569 2024-09-11 09:02:41.785574 aggnd 172252938 R rec 83ef8154-eb53-4325-a3ed-a54b638b1a3b +2024-09-11 09:02:41.842333 2024-09-11 09:02:41.842339 aggnd 172263840 R rec bed3bb66-cf77-46f2-9331-313352cfab50 +2024-09-11 09:02:41.898356 2024-09-11 09:02:41.898361 aggnd 172265258 R rec 695360b2-a524-4669-b546-c90f1656c8ba +2024-09-11 09:02:41.955222 2024-09-11 09:02:41.955227 aggnd 172316480 R rec 52cfb03b-b6dc-488b-96a4-3463afd5fd7f +2024-09-11 09:02:42.023599 2024-09-11 09:02:42.023603 aggnd 172325749 R rec 4d196bdc-fc11-4bab-b69e-ae75022d1234 +2024-09-11 09:02:42.086593 2024-09-11 09:02:42.086598 aggnd 172335450 R rec 409f5fe4-897d-45c0-a82e-f01643581f08 +2024-09-11 09:02:42.139108 2024-09-11 09:02:42.139112 aggnd 172435498 R rec 39c6f259-eedc-4f29-8343-547da4bc3b23 +2024-09-11 09:02:42.199489 2024-09-11 09:02:42.199495 aggnd 172448611 R rec a1664cde-1dd5-4e75-9ebd-7d6d8a3d903f +2024-09-11 09:02:42.262208 2024-09-11 09:02:42.262214 aggnd 17248491X R rec 78c702ed-328b-4cc1-81a6-fde167b15b37 +2024-09-11 09:02:42.319622 2024-09-11 09:02:42.319627 aggnd 172560462 R rec 5cb4ba74-c11d-4d2e-8437-5b4ca5ef3137 +2024-09-11 09:02:42.372536 2024-09-11 09:02:42.372541 aggnd 172650003 R rec bc2eb567-a771-49f7-aed2-2682e60852b9 +2024-09-11 09:02:42.421233 2024-09-11 09:02:42.421238 aggnd 172664128 R rec f5ecaff1-3f5a-46c6-822f-b8e631f1949a +2024-09-11 09:02:42.469318 2024-09-11 09:02:42.469323 aggnd 172677335 R rec c70743ae-adeb-4d5b-9f95-8ddee672e7c3 +2024-09-11 09:02:42.51881 2024-09-11 09:02:42.518815 aggnd 172710073 R rec 010c3d88-de84-46da-b69c-04296119134e +2024-09-11 09:02:42.565267 2024-09-11 09:02:42.565272 aggnd 172712866 R rec b8081f38-91e2-4ba0-a62f-da8d6a26ec40 +2024-09-11 09:02:42.612374 2024-09-11 09:02:42.612379 aggnd 17273889X R rec cce645ad-cd13-4cdb-999b-763670095e82 +2024-09-11 09:02:42.66878 2024-09-11 09:02:42.668784 aggnd 172741912 R rec 9172701e-b2cf-407b-9368-8faffb9cd6b5 +2024-09-11 09:02:42.722497 2024-09-11 09:02:42.722502 aggnd 172821657 R rec 189554bf-2f24-4cd3-b284-c08c1454f356 +2024-09-11 09:02:42.788707 2024-09-11 09:02:42.788714 aggnd 172937051 R rec 71c85ba4-58ed-4bc7-8568-01cdadd754c2 +2024-09-11 09:02:42.855964 2024-09-11 09:02:42.855969 aggnd 172939755 R rec d026ccd0-8be7-4675-ae32-a2753736d8e4 +2024-09-11 09:02:42.911076 2024-09-11 09:02:42.911081 aggnd 172953804 R rec 9fe8d7bd-4a0f-42fb-a5ee-033079ce2b80 +2024-09-11 09:02:42.965992 2024-09-11 09:02:42.965997 aggnd 173016383 R rec 37c01253-605b-4c1a-84fa-30f45db2e2ef +2024-09-11 09:02:43.020389 2024-09-11 09:02:43.020395 aggnd 173047165 R rec 57977f08-f66f-4c99-8035-34268076c468 +2024-09-11 09:02:43.078691 2024-09-11 09:02:43.078696 aggnd 173079466 R rec cc99b888-0d9c-49c5-ba35-de57ee2ac843 +2024-09-11 09:02:43.129626 2024-09-11 09:02:43.129631 aggnd 173093086 R rec 6728fca3-b8ac-4813-a349-9d06d5e7bcb8 +2024-09-11 09:02:43.180524 2024-09-11 09:02:43.18053 aggnd 173112110 R rec 93f03bad-d224-4eea-9623-518f06230326 +2024-09-11 09:02:43.228228 2024-09-11 09:02:43.228233 aggnd 173120016 R rec cb389e79-339f-4b5b-97a6-abbc33e886b9 +2024-09-11 09:02:43.279847 2024-09-11 09:02:43.279852 aggnd 173162061 R rec 4bef0f68-754b-44e6-aaa7-43c5dc5f4ae3 +2024-09-11 09:02:43.327886 2024-09-11 09:02:43.327892 aggnd 17326851X R rec 325bb7b4-09d1-4b80-8691-5a03b0560b16 +2024-09-11 09:02:43.381097 2024-09-11 09:02:43.381102 aggnd 173287387 R rec 1394a5f3-f6c8-4944-8122-42b8eefec5e5 +2024-09-11 09:02:43.439576 2024-09-11 09:02:43.439581 aggnd 173311660 R rec b526c369-f52c-41fd-ac06-b7613b31a679 +2024-09-11 09:02:43.493258 2024-09-11 09:02:43.493263 aggnd 173395627 R rec f17b0d97-3014-4448-99aa-7d79e91ca00d +2024-09-11 09:02:43.546322 2024-09-11 09:02:43.546328 aggnd 17344511X R rec 7e3f64b5-8052-4534-a58e-c602a9fc4131 +2024-09-11 09:02:43.593452 2024-09-11 09:02:43.593456 aggnd 173457258 R rec 0bf7e47a-4a9c-498d-85df-a76adb688dde +2024-09-11 09:02:43.647436 2024-09-11 09:02:43.647441 aggnd 173606091 R rec d8868e0f-2c82-4ae4-acd8-0f4abc129fc9 +2024-09-11 09:02:43.703343 2024-09-11 09:02:43.703348 aggnd 17361860X R rec 3d41e067-dd18-4a5e-8f88-a423ae81da8a +2024-09-11 09:02:43.795378 2024-09-11 09:02:43.795384 aggnd 173628257 R rec 8428773a-35b5-4df6-a191-3239ee9646a1 +2024-09-11 09:02:43.855838 2024-09-11 09:02:43.855842 aggnd 173635385 R rec 8bbbd898-a523-4d85-b9e3-b7043277a6a9 +2024-09-11 09:02:43.915431 2024-09-11 09:02:43.915436 aggnd 173674534 R rec d3b26889-0814-460f-ba3b-69948d25f7be +2024-09-11 09:02:43.98454 2024-09-11 09:02:43.984547 aggnd 173748856 R rec 96e618c0-722c-4a7a-89d7-5a02b3082353 +2024-09-11 09:02:44.067038 2024-09-11 09:02:44.067045 aggnd 173756638 R rec 3f7cc8af-4c5c-4053-979f-9b55e66b783c +2024-09-11 09:02:44.136267 2024-09-11 09:02:44.136272 aggnd 173770401 R rec fe26f9b9-029e-443d-bc8f-7d7a9ccde48f +2024-09-11 09:02:44.202894 2024-09-11 09:02:44.202899 aggnd 173774148 R rec 0beb0627-5e4e-4af9-891c-d6af5611d4ff +2024-09-11 09:02:44.260593 2024-09-11 09:02:44.2606 aggnd 173774776 R rec 48e23109-aff7-455e-a4d9-d370a15dcee3 +2024-09-11 09:02:44.316113 2024-09-11 09:02:44.316118 aggnd 173808085 R rec 290eae45-84a2-40b7-bd09-a4ed21ffefcf +2024-09-11 09:02:44.383862 2024-09-11 09:02:44.383867 aggnd 173843034 R rec 0c5832f1-bc2f-4e76-86de-6ff03c4a53b6 +2024-09-11 09:02:44.441485 2024-09-11 09:02:44.44149 aggnd 173888135 R rec fd53c360-3f7c-4e1f-9cb2-74ade4a990b2 +2024-09-11 09:02:44.495018 2024-09-11 09:02:44.495023 aggnd 173977669 R rec 2bafa6aa-3930-41e7-839f-3a719eafc864 +2024-09-11 09:02:44.54791 2024-09-11 09:02:44.547914 aggnd 174095139 R rec 0cf029ff-3ded-4c99-9d14-d41d146fd0bc +2024-09-11 09:02:44.600366 2024-09-11 09:02:44.600371 aggnd 174168616 R rec 492fff3a-f526-4e65-a9f3-24e5b4a146f9 +2024-09-11 09:02:44.651087 2024-09-11 09:02:44.651093 aggnd 17420275X R rec 34f9aea1-dfb4-4091-8796-90dfb044a5d9 +2024-09-11 09:02:44.706363 2024-09-11 09:02:44.706368 aggnd 17422138X R rec 6a58a1ca-e099-4229-86d4-dce7237df451 +2024-09-11 09:02:44.757474 2024-09-11 09:02:44.75748 aggnd 174376391 R rec aa66cbe8-46f3-49e3-9c42-458487a32d56 +2024-09-11 09:02:44.809623 2024-09-11 09:02:44.809629 aggnd 178767875 R rec f0891bd0-7a7e-4d2c-a0a6-ee1608095571 +2024-09-11 09:02:44.869156 2024-09-11 09:02:44.869161 aggnd 189437065 R rec b33b5566-66f3-4e26-8dad-2f8dbd581b47 +2024-09-11 09:02:44.926719 2024-09-11 09:02:44.926725 aggnd 199160554 R rec f51aa275-df37-4725-b66a-4b5ac648c200 +2024-09-11 09:02:44.984795 2024-09-11 09:02:44.9848 aggnd 320025594 R rec af0b8d12-34fa-4d6d-8042-bb3692c6b8cf +2024-09-11 09:02:45.041913 2024-09-11 09:02:45.041918 aggnd 320038580 R rec a1351406-bd49-425c-9eba-11803c9d00e8 +2024-09-11 09:02:45.091183 2024-09-11 09:02:45.091188 aggnd 320040992 R rec 2a0a2083-55c1-4bbb-8dc7-b46300664f1a +2024-09-11 09:02:45.14008 2024-09-11 09:02:45.140085 aggnd 320067661 R rec e49c1a13-62a8-46e5-86ab-3175c5175419 +2024-09-11 09:02:45.189406 2024-09-11 09:02:45.189411 aggnd 320070522 R rec cd8c2b29-4dd3-44ad-b900-9b7bfa65daab +2024-09-11 09:02:45.240173 2024-09-11 09:02:45.240178 aggnd 320074129 R rec 6937e288-a11e-450f-80e2-12b733c4264b +2024-09-11 09:02:45.298723 2024-09-11 09:02:45.298728 aggnd 320080242 R rec 4cbe9a59-af98-46f9-8eff-7931c5a83cfc +2024-09-11 09:02:45.384018 2024-09-11 09:02:45.384024 aggnd 320080366 R rec 3b642fe2-190b-4cfa-9cb6-4209ba5d767d +2024-09-11 09:02:45.461551 2024-09-11 09:02:45.461557 aggnd 320093549 R rec db409d32-26b5-4158-a8ff-8290bf27045d +2024-09-11 09:02:45.54071 2024-09-11 09:02:45.540715 aggnd 320111881 R rec 300f23c5-6898-47cc-892f-f066632956df +2024-09-11 09:02:45.666677 2024-09-11 09:02:45.666682 aggnd 320153746 R rec 3715fc27-88e3-455f-8df8-d9d282ada603 +2024-09-11 09:02:45.726261 2024-09-11 09:02:45.726266 aggnd 320168328 R rec 9e5e9f82-2461-46b3-a091-671b97642fac +2024-09-11 09:02:45.788282 2024-09-11 09:02:45.788287 aggnd 320188760 R rec 5f5ffe0c-c8f9-4fb2-b181-2ac3603d7348 +2024-09-11 09:02:45.85245 2024-09-11 09:02:45.852455 aggnd 320196321 R rec dabaf1b5-b5c6-44be-92e3-357bd2167665 +2024-09-11 09:02:45.928011 2024-09-11 09:02:45.928016 aggnd 320202593 R rec 066afa9c-91b4-4859-95e9-5469dcf330de +2024-09-11 09:02:45.994021 2024-09-11 09:02:45.994027 aggnd 320218694 R rec 30d4dc63-8dbb-4b8b-b3cd-87b4627a40ad +2024-09-11 09:02:46.065799 2024-09-11 09:02:46.065804 aggnd 320234975 R rec cc3be30f-05a6-4bbc-85e1-15dd133c99a8 +2024-09-11 09:02:46.144736 2024-09-11 09:02:46.144742 aggnd 320236706 R rec 13bbe73c-b24c-46a8-88e9-d8cd1f44c2cd +2024-09-11 09:02:46.249746 2024-09-11 09:02:46.249752 aggnd 320290239 R rec b12febb2-f61d-4365-b3ee-492f8cabb47b +2024-09-11 09:02:46.310929 2024-09-11 09:02:46.310935 aggnd 320292746 R rec aba915bc-cc13-4542-9c5e-9bdffb06fee7 +2024-09-11 09:02:46.37106 2024-09-11 09:02:46.371066 aggnd 320319008 R rec b59373e4-1017-49b5-a98b-c4c51fbcb3a6 +2024-09-11 09:02:46.439281 2024-09-11 09:02:46.439286 aggnd 320328074 R rec fe4c7d7c-00c9-42b0-902a-d5c386595385 +2024-09-11 09:02:46.509113 2024-09-11 09:02:46.509119 aggnd 32032964X R rec fe2dcb92-db5b-44a2-86ab-1d902d3852b7 +2024-09-11 09:02:46.583362 2024-09-11 09:02:46.583367 aggnd 320334988 R rec 58a115c5-928e-4fa2-8325-ebc3322ac44a +2024-09-11 09:02:46.637828 2024-09-11 09:02:46.637834 aggnd 320354202 R rec 458ce8be-692b-40ca-a1cc-979687d034f5 +2024-09-11 09:02:46.69433 2024-09-11 09:02:46.694336 aggnd 320364879 R rec 56050853-8345-498c-8cb2-176f1db01e11 +2024-09-11 09:02:46.748806 2024-09-11 09:02:46.748812 aggnd 320366510 R rec 792568c2-7f45-4d73-a36a-be4a27702068 +2024-09-11 09:02:46.803631 2024-09-11 09:02:46.803637 aggnd 320368173 R rec 52c37948-6c0b-47ec-96b1-19c131fad684 +2024-09-11 09:02:46.856373 2024-09-11 09:02:46.856378 aggnd 320388387 R rec b06a3395-e7a9-4fa0-8f06-a0f1595a152f +2024-09-11 09:02:46.91156 2024-09-11 09:02:46.911566 aggnd 320390268 R rec 1653315c-44bf-4422-b264-2b50180b28ca +2024-09-11 09:02:46.965428 2024-09-11 09:02:46.965433 aggnd 320393690 R rec fa576d4c-5390-488a-90d6-75c1bd033a55 +2024-09-11 09:02:47.02333 2024-09-11 09:02:47.023335 aggnd 320406407 R rec 8925b353-be62-4b58-a8e0-77b1c41f06b6 +2024-09-11 09:02:47.08383 2024-09-11 09:02:47.083838 aggnd 320412733 R rec 2dc8038e-4c30-4f32-9588-3d2b5f808c1b +2024-09-11 09:02:47.143405 2024-09-11 09:02:47.14341 aggnd 320418448 R rec 63561db6-a1af-44ca-b105-347ab9749c8a +2024-09-11 09:02:47.202454 2024-09-11 09:02:47.202459 aggnd 320422739 R rec 67e8eb4a-44e1-4974-a87b-774fca16dc53 +2024-09-11 09:02:47.260009 2024-09-11 09:02:47.260014 aggnd 32043706X R rec a643656a-ba74-4525-9b5a-6f701d91b5f5 +2024-09-11 09:02:47.320619 2024-09-11 09:02:47.320625 aggnd 320461394 R rec 0687de2b-3c7b-4c56-a5f0-2edf0c45c8f7 +2024-09-11 09:02:47.378081 2024-09-11 09:02:47.378087 aggnd 320475891 R rec 7847a4b4-7a0e-4c46-bef0-ff3895dc790b +2024-09-11 09:02:47.441898 2024-09-11 09:02:47.441903 aggnd 320488063 R rec abe10d13-c826-4f7f-8449-36c6eb72fd58 +2024-09-11 09:02:47.505613 2024-09-11 09:02:47.505619 aggnd 32048906X R rec 2b2da4a9-3a01-4827-8671-e05f3670ebd1 +2024-09-11 09:02:47.568007 2024-09-11 09:02:47.568012 aggnd 320497070 R rec 47b17c40-92ff-49f0-9b7f-ba4c4e95c3cd +2024-09-11 09:02:47.623624 2024-09-11 09:02:47.62363 aggnd 320506037 R rec 7e8554fe-143b-4db8-930f-5b1e783a591f +2024-09-11 09:02:47.691605 2024-09-11 09:02:47.69161 aggnd 320515206 R rec 0835e3fd-eb08-430b-91f6-7d59888a6ac6 +2024-09-11 09:02:47.749306 2024-09-11 09:02:47.749312 aggnd 320532836 R rec 08938711-cb16-4f8a-9dd1-953adbc94d8b +2024-09-11 09:02:47.804697 2024-09-11 09:02:47.804702 aggnd 320542173 R rec 5143cddf-2052-42de-b181-b4b09a94d4d8 +2024-09-11 09:02:47.860974 2024-09-11 09:02:47.860979 aggnd 320562425 R rec a9e1042b-8ade-415b-882c-502d855460a1 +2024-09-11 09:02:47.918544 2024-09-11 09:02:47.918549 aggnd 320577880 R rec 37501f48-2390-4282-b36b-6fd134b85d85 +2024-09-11 09:02:47.972321 2024-09-11 09:02:47.972325 aggnd 320577929 R rec e578c22b-0811-4298-88fe-6ba89e49a8bc +2024-09-11 09:02:48.026301 2024-09-11 09:02:48.026307 aggnd 320579751 R rec 346d13f3-1397-4b2b-8272-8a71be6a0207 +2024-09-11 09:02:48.088386 2024-09-11 09:02:48.08839 aggnd 320584739 R rec 134eccdc-8deb-4011-aa3c-b90be74d572f +2024-09-11 09:02:48.159967 2024-09-11 09:02:48.159973 aggnd 320618439 R rec 7de42918-4ef6-4962-95f5-403264aedf49 +2024-09-11 09:02:48.221806 2024-09-11 09:02:48.221811 aggnd 320631176 R rec fafcc7ac-7c30-43ab-a122-8eb7c3f4710e +2024-09-11 09:02:48.278432 2024-09-11 09:02:48.278436 aggnd 320642461 R rec afcb4a5a-f80b-40cf-8ede-c0bf2946d9b1 +2024-09-11 09:02:48.345049 2024-09-11 09:02:48.345055 aggnd 32064779X R rec bb10d84e-4a2d-4cd3-ac84-1c64d00d7547 +2024-09-11 09:02:48.412988 2024-09-11 09:02:48.412997 aggnd 320648877 R rec 6636f9eb-a55a-459f-8c35-272bc934ef21 +2024-09-11 09:02:48.469553 2024-09-11 09:02:48.469558 aggnd 320655458 R rec 1a96bc15-cdf8-4475-b250-b211e23daafe +2024-09-11 09:02:48.52503 2024-09-11 09:02:48.525035 aggnd 320663817 R rec 5ec0f752-048e-494a-b7d1-e4974182b22c +2024-09-11 09:02:48.594404 2024-09-11 09:02:48.59441 aggnd 320680169 R rec c6cc0144-8cb6-4d77-8ff8-99d50bf0dc46 +2024-09-11 09:02:48.650619 2024-09-11 09:02:48.650624 aggnd 320694577 R rec 651a8a3c-8120-4c88-8474-0e1f886b4912 +2024-09-11 09:02:48.70734 2024-09-11 09:02:48.707344 aggnd 940254522 R rec f7441382-582c-46a6-9bf1-c590ae25ee8c +2024-09-11 09:02:48.762327 2024-09-11 09:02:48.762332 aggnd 940263920 R rec 45ec8dc1-dd9f-4343-a4d7-c0153cf21594 +2024-09-11 09:02:48.816419 2024-09-11 09:02:48.816424 aggnd 94027115X R rec 2590ad33-e510-4f27-9553-a0e4938cb3ce +2024-09-11 09:02:48.872754 2024-09-11 09:02:48.872759 aggnd 94037238X R rec d7e7018e-da56-4c29-8ca9-f5c704941c5e +2024-09-11 09:02:48.935418 2024-09-11 09:02:48.935424 aggnd 940374412 R rec d048ee12-5ee3-48f8-b027-ec9e76508906 +2024-09-11 09:02:49.00295 2024-09-11 09:02:49.002956 aggnd 940433729 R rec 7f03b61d-d20a-4d0d-a49f-116b31391651 +2024-09-11 09:02:49.070607 2024-09-11 09:02:49.070612 aggnd 940439611 R rec 1b7d80ea-6269-4597-997c-cb57a40f48f4 +2024-09-11 09:02:49.136363 2024-09-11 09:02:49.136368 aggnd 940547880 R rec 21eb29ac-59b8-4cba-95a5-1023923f2f4c +2024-09-11 09:02:49.189772 2024-09-11 09:02:49.189777 aggnd 940552337 R rec 562b27b8-bc71-4c1c-9805-3dec088907ad +2024-09-11 09:02:49.246205 2024-09-11 09:02:49.246211 aggnd 940717395 R rec c1816b12-9d4b-42fb-8095-477e163220cb +2024-09-11 09:02:49.29897 2024-09-11 09:02:49.298975 aggnd 940975262 R rec 7be186b4-5536-4963-9931-a30509a50ce7 +2024-09-11 09:02:49.357828 2024-09-11 09:02:49.357833 aggnd 940977877 R rec d4c6fa64-d787-415b-9d01-7931cac239a4 +2024-09-11 09:02:49.416081 2024-09-11 09:02:49.416087 aggnd 940981769 R rec a83c213f-ebc3-4f22-898b-22b48c8f3175 +2024-09-11 09:02:49.473803 2024-09-11 09:02:49.473808 aggnd 940982315 R rec aa0d8e60-8f16-45cd-89c7-6364b99295ef +2024-09-11 09:02:49.538331 2024-09-11 09:02:49.538338 aggnd 941017893 R rec 661c0d10-763c-4bae-8032-dbfe5f347d13 +2024-09-11 09:02:49.605541 2024-09-11 09:02:49.605547 aggnd 941089150 R rec 74a0be26-0bea-4ab7-aae2-c64b6dbdbcc6 +2024-09-11 09:02:49.660083 2024-09-11 09:02:49.660089 aggnd 941275590 R rec cae07205-c380-48c8-85a2-9eeef2f43dfc +2024-09-11 09:02:49.724606 2024-09-11 09:02:49.724611 aggnd 941281973 R rec 261fd964-cb44-4a09-903b-825e92f84935 +2024-09-11 09:02:49.800954 2024-09-11 09:02:49.800959 aggnd 941346447 R rec 10ce5b26-742d-4d6f-bdf6-c4cf4c91497c +2024-09-11 09:02:49.859474 2024-09-11 09:02:49.859479 aggnd 941637379 R rec ecda3171-28e1-4193-b58c-162bfb155e4f +2024-09-11 09:02:49.921745 2024-09-11 09:02:49.921748 aggnd 941671380 R rec 16b7b0f9-407d-4da8-bbbd-9eba41ae00ff +2024-09-11 09:02:49.973376 2024-09-11 09:02:49.97338 aggnd 94192582X R rec 4e1e69cf-9c55-4a69-bee5-9c16134f3c75 +2024-09-11 09:02:50.028099 2024-09-11 09:02:50.028105 aggnd 941943933 R rec 7770708a-4a97-4a63-8acf-b6cdf046148e +2024-09-11 09:02:50.085137 2024-09-11 09:02:50.085142 aggnd 941953912 R rec e6a5d278-9a92-406a-afd8-0eaec4cd17f5 +2024-09-11 09:02:50.141004 2024-09-11 09:02:50.141009 aggnd 942048636 R rec 379edbc4-4211-4e69-b3a7-adc9edd5819c +2024-09-11 09:02:50.194671 2024-09-11 09:02:50.194676 aggnd 94205086X R rec 63d36f18-8ca6-4a80-a4ad-9f828e77484e +2024-09-11 09:02:50.258485 2024-09-11 09:02:50.25849 aggnd 942050878 R rec 82c10949-974a-4d3b-b20e-49afd3f52b75 +2024-09-11 09:02:50.319196 2024-09-11 09:02:50.3192 aggnd 942070747 R rec 81d735ff-c17e-494e-8b9f-a911094b12dc +2024-09-11 09:02:50.374472 2024-09-11 09:02:50.374478 aggnd 942199448 R rec 63ada93b-4032-4456-b9b1-82a506d2e658 +2024-09-11 09:02:50.429671 2024-09-11 09:02:50.429677 aggnd 942320220 R rec f8d54dc7-ac56-4861-8dcd-4468c1bfcffd +2024-09-11 09:02:50.507915 2024-09-11 09:02:50.50792 aggnd 942384849 R rec b52bb016-ac92-4b7a-98be-1428a500320e +2024-09-11 09:02:50.566475 2024-09-11 09:02:50.56648 aggnd 94242283X R rec dbceb5f4-af79-4831-8e47-21b5217b77a7 +2024-09-11 09:02:50.620407 2024-09-11 09:02:50.620412 aggnd 942428595 R rec bffa2247-6619-4229-bada-6b77b57f6d9a +2024-09-11 09:02:50.676206 2024-09-11 09:02:50.676212 aggnd 942565762 R rec 4e16e208-6edb-4bec-b63d-ad1eb418a6b6 +2024-09-11 09:02:50.734299 2024-09-11 09:02:50.734304 aggnd 942662024 R rec d7b5cfeb-435c-4153-b457-e8e1c2905c75 +2024-09-11 09:02:50.802294 2024-09-11 09:02:50.802299 aggnd 942856015 R rec 3f155da1-f608-4f2d-a2b6-49d3c053da18 +2024-09-11 09:02:50.856876 2024-09-11 09:02:50.856882 aggnd 942894871 R rec 43135cb8-3d4f-4ed8-bfd1-361134a73c7d +2024-09-11 09:02:50.911563 2024-09-11 09:02:50.911568 aggnd 942904168 R rec ff2c7f48-1026-40c0-9bcc-cb48b01c4b88 +2024-09-11 09:02:50.974688 2024-09-11 09:02:50.974694 aggnd 942915232 R rec e9b2f380-825c-4984-855d-ca68e0d50525 +2024-09-11 09:02:51.033195 2024-09-11 09:02:51.033199 aggnd 942918584 R rec 73303b79-e5c6-427b-885f-50fd5e83401b +2024-09-11 09:02:51.088512 2024-09-11 09:02:51.088517 aggnd 942954297 R rec f0713d51-1c08-414b-b70f-dbd334747057 +2024-09-11 09:02:51.144592 2024-09-11 09:02:51.144598 aggnd 942982096 R rec a7d5425d-8f04-4ca4-a542-2c6e2a60948e +2024-09-11 09:02:51.216278 2024-09-11 09:02:51.216283 aggnd 943645956 R rec 41cc4055-93f0-42de-8bde-3fd70331810c +2024-09-11 09:02:51.284177 2024-09-11 09:02:51.284181 aggnd 943646448 R rec 8a1c2b85-1bf9-4e63-b573-67619ef5048a +2024-09-11 09:02:51.34042 2024-09-11 09:02:51.340425 aggnd 943654904 R rec 23c5d09e-9f95-4e2d-beb5-fceea6e72bfb +2024-09-11 09:02:51.392934 2024-09-11 09:02:51.392939 aggnd 943708826 R rec a95cc759-53fb-4c8f-9b0d-f108e6064a51 +2024-09-11 09:02:51.45115 2024-09-11 09:02:51.451155 aggnd 943780411 R rec be2c4000-a47b-4fbf-9abe-e759cd03d9a5 +2024-09-11 09:02:51.509647 2024-09-11 09:02:51.509653 aggnd 943780489 R rec 1e6f05f0-65fe-4864-b7ac-1e8e2836f0f2 +2024-09-11 09:02:51.569469 2024-09-11 09:02:51.569474 aggnd 943895758 R rec 9f2df440-460e-4ba9-92c1-748b270f4b71 +2024-09-11 09:02:51.627437 2024-09-11 09:02:51.627443 aggnd 943900069 R rec 731ffcc7-ba2e-4e9b-9ae4-0b732c643ed9 +2024-09-11 09:02:51.684693 2024-09-11 09:02:51.684698 aggnd 943913152 R rec d079b280-8228-4121-a2b4-423f91e237d7 +2024-09-11 09:02:51.749344 2024-09-11 09:02:51.749349 aggnd 943915236 R rec 4e4b2725-8d99-4675-a1ef-e9c1db4399dd +2024-09-11 09:02:51.80612 2024-09-11 09:02:51.806126 aggnd 944068960 R rec ce00323b-c0af-4560-aaa9-a8b0af9226b3 +2024-09-11 09:02:51.870436 2024-09-11 09:02:51.870442 aggnd 944075738 R rec ab92c606-43a9-410f-81ea-f03f77704f67 +2024-09-11 09:02:51.941693 2024-09-11 09:02:51.941698 aggnd 944081274 R rec 946fd7a1-7f5d-4971-ad5c-8451a5ad8b66 +2024-09-11 09:02:51.9981 2024-09-11 09:02:51.998105 aggnd 944087809 R rec c8a8c24f-6075-43fd-b9db-a2224f540f65 +2024-09-11 09:02:52.055237 2024-09-11 09:02:52.055242 aggnd 944148816 R rec 996b09da-18fa-4568-be40-8663c6a632eb +2024-09-11 09:02:52.119725 2024-09-11 09:02:52.11973 aggnd 944150284 R rec 0bb1688c-db5c-41b4-bdaf-13476e862c6c +2024-09-11 09:02:52.174618 2024-09-11 09:02:52.174624 aggnd 944150381 R rec fc41a11b-d784-4d4d-bb59-2b7ebc31c399 +2024-09-11 09:02:52.233072 2024-09-11 09:02:52.233078 aggnd 944150993 R rec b5dfd657-8851-4fa5-864f-b430a7ad8eeb +2024-09-11 09:02:52.28866 2024-09-11 09:02:52.288665 aggnd 944155383 R rec 2308adb2-08d7-45b4-8957-b0171a118b7f +2024-09-11 09:02:52.345095 2024-09-11 09:02:52.345101 aggnd 944191908 R rec fec4640e-f976-474e-8ebb-2c6cccb997b1 +2024-09-11 09:02:52.403832 2024-09-11 09:02:52.403837 aggnd 94419558X R rec a39df5d8-8d68-4c61-81bd-9827df5b8b74 +2024-09-11 09:02:52.470041 2024-09-11 09:02:52.470047 aggnd 944242898 R rec 21533bfa-edb4-46a5-b3d3-010ea6b93b8a +2024-09-11 09:02:52.526602 2024-09-11 09:02:52.526607 aggnd 944290604 R rec 17a6017d-2805-4f1c-ad94-1be46ed2777b +2024-09-11 09:02:52.58022 2024-09-11 09:02:52.580225 aggnd 944393020 R rec 06ab8986-e6d7-4d3f-bf86-f5f9fc190b3d +2024-09-11 09:02:52.641058 2024-09-11 09:02:52.641064 aggnd 944405312 R rec 45de7bd0-5a2e-4d08-aa46-3696b2de031c +2024-09-11 09:02:52.70326 2024-09-11 09:02:52.703264 aggnd 944548059 R rec c8bd1bbf-09b9-4d44-8baa-7879ff49f887 +2024-09-11 09:02:52.757988 2024-09-11 09:02:52.757994 aggnd 944640206 R rec 68e2cadc-3b58-43ca-be38-fa8b60711f12 +2024-09-11 09:02:52.818987 2024-09-11 09:02:52.818992 aggnd 944694845 R rec a6cb8897-3b99-4f05-a14e-641e1efef194 +2024-09-11 09:02:52.886087 2024-09-11 09:02:52.886092 aggnd 944695167 R rec 6ef70de1-d873-41c9-a399-e770735330f1 +2024-09-11 09:02:52.940441 2024-09-11 09:02:52.940447 aggnd 944797199 R rec 43419d67-280b-4460-a7e1-73426092c854 +2024-09-11 09:02:52.995895 2024-09-11 09:02:52.995901 aggnd 944825028 R rec 9024be5f-7f78-48b0-902a-3f537f2db267 +2024-09-11 09:02:53.055582 2024-09-11 09:02:53.055587 aggnd 944923313 R rec 2c0ad15e-55ff-4600-a924-5db185a80525 +2024-09-11 09:02:53.110675 2024-09-11 09:02:53.11068 aggnd 944929052 R rec 998d5039-16d1-4602-abd3-63f60d8f3d7e +2024-09-11 09:02:53.169969 2024-09-11 09:02:53.169975 aggnd 944929710 R rec 8ca86088-974d-4f7c-bdba-22f66231b515 +2024-09-11 09:02:53.227227 2024-09-11 09:02:53.227233 aggnd 944941710 R rec ef4fab1a-e978-4893-9d0d-cfce7ddeee8a +2024-09-11 09:02:53.291619 2024-09-11 09:02:53.291624 aggnd 94495068X R rec 8303ab0f-e3f6-4071-9a60-282d22fccf27 +2024-09-11 09:02:53.355345 2024-09-11 09:02:53.355351 aggnd 944951910 R rec 4cd9ee46-3599-4ec0-ae8c-2ce0c7ab5d1f +2024-09-11 09:02:53.418437 2024-09-11 09:02:53.418443 aggnd 944952976 R rec a46d2a67-6da6-4a56-b79c-f4a584605a9d +2024-09-11 09:02:53.472579 2024-09-11 09:02:53.472584 aggnd 944953395 R rec d7322baa-7bc3-4d34-8f56-e3dbe2d958fe +2024-09-11 09:02:53.535126 2024-09-11 09:02:53.53513 aggnd 944963749 R rec f083f653-9abc-483e-9b96-9e361ac96266 +2024-09-11 09:02:53.598323 2024-09-11 09:02:53.59833 aggnd 944971318 R rec d3cfcb3a-7931-4a2e-a266-8e5a36796ad5 +2024-09-11 09:02:53.659217 2024-09-11 09:02:53.659223 aggnd 944978177 R rec c9aba549-89b6-42bc-a959-4e93807b2f77 +2024-09-11 09:02:53.712106 2024-09-11 09:02:53.712111 aggnd 945028067 R rec bb2e13d0-43f7-4ef0-8ae3-4b7645e0e0e4 +2024-09-11 09:02:53.76801 2024-09-11 09:02:53.768015 aggnd 94504206X R rec ac06b631-63ad-49f0-ab36-bb8e62036ca3 +2024-09-11 09:02:53.823066 2024-09-11 09:02:53.823071 aggnd 945045972 R rec ac6037a8-820c-4c45-bf5b-40acf5846afe +2024-09-11 09:02:53.902958 2024-09-11 09:02:53.902963 aggnd 945048653 R rec 1d011bd8-e922-4781-a0a0-d5d86bbc039f +2024-09-11 09:02:53.960473 2024-09-11 09:02:53.960479 aggnd 945073232 R rec 9d116e81-4209-4dcf-ba7d-4e40b57654df +2024-09-11 09:02:54.018335 2024-09-11 09:02:54.018339 aggnd 945074212 R rec ed9e9ec7-019a-4517-aeaa-368392d6106b +2024-09-11 09:02:54.079834 2024-09-11 09:02:54.079839 aggnd 945079893 R rec 610f162b-2f23-4244-80e9-5618873952c9 +2024-09-11 09:02:54.150398 2024-09-11 09:02:54.150403 aggnd 945102313 R rec f1047732-8d6c-4b02-815c-840cca735edc +2024-09-11 09:02:54.207159 2024-09-11 09:02:54.207164 aggnd 945104138 R rec fe0f7b7b-2cfd-42fc-9dcc-307f731a7fee +2024-09-11 09:02:54.264693 2024-09-11 09:02:54.264699 aggnd 945107129 R rec 343f9f02-4d35-44b5-99e8-54f04c4b0c74 +2024-09-11 09:02:54.322468 2024-09-11 09:02:54.322474 aggnd 94510877X R rec 037d1272-0d18-4a60-ae8f-9d2ce5ed0e7a +2024-09-11 09:02:54.387152 2024-09-11 09:02:54.387158 aggnd 945118805 R rec d81cf4e2-5c60-4ca6-ae3c-f6649096cb2d +2024-09-11 09:02:54.45667 2024-09-11 09:02:54.456676 aggnd 945462891 R rec 276dae9d-6669-41ab-a154-7a7a17e2f002 +2024-09-11 09:02:54.516434 2024-09-11 09:02:54.516439 aggnd 945492308 R rec 98d374ad-be0c-4441-aab3-1b570f52ad55 +2024-09-11 09:02:54.585723 2024-09-11 09:02:54.585729 aggnd 945504853 R rec 82127696-be1c-4cf4-b566-1cd554a79bf0 +2024-09-11 09:02:54.642487 2024-09-11 09:02:54.642492 aggnd 945555059 R rec 9bd30229-a37d-44d8-a664-e59aa7aa9da1 +2024-09-11 09:02:54.703083 2024-09-11 09:02:54.703087 aggnd 945628889 R rec 47961856-f7ef-491c-95e6-92d4217bf9ed +2024-09-11 09:02:54.770586 2024-09-11 09:02:54.770599 aggnd 945633696 R rec ac8665a9-94cd-46f2-8238-b787dace0bfe +2024-09-11 09:02:54.831386 2024-09-11 09:02:54.831391 aggnd 945708300 R rec 96c0b02b-3964-4e80-82bb-c2e3f32ee690 +2024-09-11 09:02:54.89294 2024-09-11 09:02:54.892945 aggnd 945710097 R rec 402da8c4-3ced-4d26-82b1-402d0787e5a8 +2024-09-11 09:02:54.945757 2024-09-11 09:02:54.945761 aggnd 945763395 R rec 5de3db15-66a0-45bd-899e-787380a603b9 +2024-09-11 09:02:55.001296 2024-09-11 09:02:55.001301 aggnd 945817428 R rec 19f6ae2f-cb49-452c-a727-0441fb6a4e5d +2024-09-11 09:02:55.054878 2024-09-11 09:02:55.054883 aggnd 945951590 R rec 4a170b13-1672-458e-9954-f29715666b6b +2024-09-11 09:02:55.112325 2024-09-11 09:02:55.112331 aggnd 946180822 R rec d81b8591-a4f4-46d0-8c5c-2f18dc6db15c +2024-09-11 09:02:55.169111 2024-09-11 09:02:55.169116 aggnd 946246734 R rec 065ace94-07d0-4471-a650-6878ae8ed17c +2024-09-11 09:02:55.227832 2024-09-11 09:02:55.227837 aggnd 946481911 R rec 4cdd22e5-99c6-43a7-9f71-f17f4175f408 +2024-09-11 09:02:55.283608 2024-09-11 09:02:55.283614 aggnd 946487537 R rec 637db628-6024-49ff-a9d8-18622efb2c40 +2024-09-11 09:02:55.34069 2024-09-11 09:02:55.340695 aggnd 946515468 R rec 62a867b9-6530-413c-81be-eb44113f2717 +2024-09-11 09:02:55.398403 2024-09-11 09:02:55.398408 aggnd 946592039 R rec aafd2d5c-47fd-4e7d-bd5f-7404ff1c0bef +2024-09-11 09:02:55.453788 2024-09-11 09:02:55.453793 aggnd 946595259 R rec 3476e4f9-d901-426e-8788-1b895620b403 +2024-09-11 09:02:55.526609 2024-09-11 09:02:55.526615 aggnd 946597189 R rec 7f7bf352-baf2-4212-8618-dad6e3a7a6e3 +2024-09-11 09:02:55.584038 2024-09-11 09:02:55.584043 aggnd 946686203 R rec 8f89ec7e-4bca-47ca-a1dc-3c50f51c421a +2024-09-11 09:02:55.645278 2024-09-11 09:02:55.645283 aggnd 946688397 R rec db6c5bf5-1fb4-4c8a-aaab-f206cf2a2af6 +2024-09-11 09:02:55.700173 2024-09-11 09:02:55.700179 aggnd 946691215 R rec da53e8a5-f403-48c3-8c89-7774b6f3a083 +2024-09-11 09:02:55.757625 2024-09-11 09:02:55.757631 aggnd 94673271X R rec e7e8f524-fe5b-4641-b875-3552a1e4be6c +2024-09-11 09:02:55.820735 2024-09-11 09:02:55.82074 aggnd 946741077 R rec 37c00f3a-35dd-4bd3-bc62-5cdfa62e5b89 +2024-09-11 09:02:55.87569 2024-09-11 09:02:55.875696 aggnd 94687400X R rec bdb31eed-c5e6-4a48-898a-6ed153585b54 +2024-09-11 09:02:55.928535 2024-09-11 09:02:55.92854 aggnd 946875715 R rec 526cacba-380a-44a5-b200-0060d5d50064 +2024-09-11 09:02:55.994029 2024-09-11 09:02:55.994036 aggnd 946923477 R rec d96e4447-fdd5-48b8-abab-5391008ac9f9 +2024-09-11 09:02:56.059266 2024-09-11 09:02:56.059271 aggnd 947105735 R rec 0a43344b-b5a7-44a8-9bb3-da122cf755a8 +2024-09-11 09:02:56.113492 2024-09-11 09:02:56.113498 aggnd 947202900 R rec a8dab595-6bab-4e03-8584-329181315ebc +2024-09-11 09:02:56.170523 2024-09-11 09:02:56.170529 aggnd 947434348 R rec 6f5fe45b-bf29-41d1-9e3b-b3b749b39d79 +2024-09-11 09:02:56.241741 2024-09-11 09:02:56.241747 aggnd 947711708 R rec e55cb1a6-a154-4820-8d3f-87d9e7a2f0be +2024-09-11 09:02:56.307182 2024-09-11 09:02:56.307187 aggnd 94772530X R rec 7b6443be-516f-433b-b873-4a99d15d869b +2024-09-11 09:02:56.360692 2024-09-11 09:02:56.360698 aggnd 947731687 R rec f49ff474-b180-4693-9e89-4663f2a197a5 +2024-09-11 09:02:56.416075 2024-09-11 09:02:56.416081 aggnd 947742956 R rec 973db62f-f859-41a8-ade1-abf87d2aadf0 +2024-09-11 09:02:56.470698 2024-09-11 09:02:56.470703 aggnd 947854517 R rec 0c78a1a7-764f-4969-8032-5462829d050f +2024-09-11 09:02:56.526357 2024-09-11 09:02:56.526363 aggnd 947854789 R rec 88e30220-8acd-4544-b113-2168263aa75d +2024-09-11 09:02:56.588226 2024-09-11 09:02:56.588231 aggnd 947862765 R rec a66f0b48-b6c2-49e2-8293-8d8a9c235ab4 +2024-09-11 09:02:56.645001 2024-09-11 09:02:56.645006 aggnd 948041838 R rec 713b949a-2a8a-402c-958e-6adb404a573b +2024-09-11 09:02:56.703485 2024-09-11 09:02:56.703491 aggnd 94813142X R rec 94ce1a86-5371-4adb-adcb-d8b5f2464e55 +2024-09-11 09:02:56.770642 2024-09-11 09:02:56.770648 aggnd 94813514X R rec 31584cff-d1b9-4e72-9e60-490917747ba5 +2024-09-11 09:02:56.83615 2024-09-11 09:02:56.836155 aggnd 948139579 R rec 94d27676-b0cd-4d3d-8580-192857a91970 +2024-09-11 09:02:56.889665 2024-09-11 09:02:56.889671 aggnd 94814906X R rec d8d8f187-6899-4513-ba44-29c8dfb7bdef +2024-09-11 09:02:56.948095 2024-09-11 09:02:56.948101 aggnd 948166894 R rec 42b9f6b2-8eba-43e9-8c29-073365568dac +2024-09-11 09:02:57.00746 2024-09-11 09:02:57.007465 aggnd 948240598 R rec d18f84d3-2b80-4510-8409-695f677621fb +2024-09-11 09:02:57.063348 2024-09-11 09:02:57.063353 aggnd 948258594 R rec e92844cf-dfd5-49da-9c40-f28456fedab6 +2024-09-11 09:02:57.119167 2024-09-11 09:02:57.119172 aggnd 948301236 R rec 28f979ac-c772-4bcb-9526-8de43cf10479 +2024-09-11 09:02:57.183333 2024-09-11 09:02:57.183339 aggnd 948314931 R rec 260884fc-5eb2-44fe-bc5a-af47589580f2 +2024-09-11 09:02:57.239328 2024-09-11 09:02:57.239334 aggnd 948712244 R rec 4ed350e1-b25b-4c58-b3a7-0d58d6fbb141 +2024-09-11 09:02:57.297788 2024-09-11 09:02:57.297794 aggnd 948719370 R rec c23a0f0b-0810-4195-a147-33f3cd19578c +2024-09-11 09:02:57.351026 2024-09-11 09:02:57.351031 aggnd 94872367X R rec ea0d7df3-b18d-4c27-bbb4-a0d438b1fe1d +2024-09-11 09:02:57.419162 2024-09-11 09:02:57.419167 aggnd 948936266 R rec 5d2075be-3271-4ed0-9cef-70f32440c98e +2024-09-11 09:02:57.476658 2024-09-11 09:02:57.476664 aggnd 94909613X R rec 3e7deb33-db9c-492d-a3fa-23eda2deb637 +2024-09-11 09:02:57.540244 2024-09-11 09:02:57.540248 aggnd 949101338 R rec 037c4c34-ff1b-405f-9342-cf812ae844ae +2024-09-11 09:02:57.5974 2024-09-11 09:02:57.597406 aggnd 949309214 R rec 380c508a-40a2-4984-adde-57412d4c6d96 +2024-09-11 09:02:57.660246 2024-09-11 09:02:57.660251 aggnd 949313874 R rec 8cf928f8-d62a-440f-b2e5-49db8216584f +2024-09-11 09:02:57.724172 2024-09-11 09:02:57.724178 aggnd 94933443X R rec f7643538-da7b-4ca0-ab26-bdff8e4d9c0c +2024-09-11 09:02:57.776998 2024-09-11 09:02:57.777003 aggnd 949395161 R rec 018a5635-6b57-47bb-aa4d-8fbb7ccd3906 +2024-09-11 09:02:57.835376 2024-09-11 09:02:57.835381 aggnd 949401560 R rec 8b6c6035-f37b-4ea5-840e-bf636e0118d1 +2024-09-11 09:02:57.900718 2024-09-11 09:02:57.900723 aggnd 949474851 R rec 2a8f544f-596d-44fe-9a2c-7be84b55ec13 +2024-09-11 09:02:57.96603 2024-09-11 09:02:57.966035 aggnd 949482110 R rec 2d6fc1cd-6c7b-436b-ad09-32034ce603ec +2024-09-11 09:02:58.022132 2024-09-11 09:02:58.022137 aggnd 949486779 R rec 272b3ed9-9940-46a7-97aa-9b94eaff13c4 +2024-09-11 09:02:58.080705 2024-09-11 09:02:58.080711 aggnd 949496103 R rec 2f16a463-6f41-4ff3-910c-2b6aad6cacc3 +2024-09-11 09:02:58.142815 2024-09-11 09:02:58.14282 aggnd 949525197 R rec 8790522e-2304-4146-ae2a-2bb465f6afe0 +2024-09-11 09:02:58.219066 2024-09-11 09:02:58.21907 aggnd 949560820 R rec 8e9ac664-8600-40c9-8fd1-d4c3280ecb33 +2024-09-11 09:02:58.28173 2024-09-11 09:02:58.281737 aggnd 949650978 R rec 245fffd4-8ad0-4968-b126-2bb8f550178c +2024-09-11 09:02:58.341571 2024-09-11 09:02:58.341576 aggnd 949739960 R rec fab68c64-0a7c-4247-bfcb-226a504d476a +2024-09-11 09:02:58.411616 2024-09-11 09:02:58.411621 aggnd 949826758 R rec 8a556140-3bad-421e-b41e-ab460bb9ae90 +2024-09-11 09:02:58.474305 2024-09-11 09:02:58.474311 aggnd 949828246 R rec be1060e8-d4b2-4ebf-8549-1911533d1653 +2024-09-11 09:02:58.535989 2024-09-11 09:02:58.535996 aggnd 949857378 R rec 0dd880a6-3dd9-4702-8d3d-220d2706a88f +2024-09-11 09:02:58.597621 2024-09-11 09:02:58.597626 aggnd 950041297 R rec f4d0bd1d-a020-4e9a-8721-d00e47133d32 +2024-09-11 09:02:58.676391 2024-09-11 09:02:58.676397 aggnd 950042544 R rec 32f53181-355f-4411-ab7b-5224c6af5969 +2024-09-11 09:02:58.751807 2024-09-11 09:02:58.751812 aggnd 950148148 R rec 42efd885-0857-4acd-82db-849bde7eb24a +2024-09-11 09:02:58.824796 2024-09-11 09:02:58.824801 aggnd 950207535 R rec f16637ad-4692-4190-85fe-0666f1ce64fb +2024-09-11 09:02:58.880989 2024-09-11 09:02:58.880996 aggnd 950239623 R rec 9ff33514-761c-4b2e-a855-d5ff4680c5ad +2024-09-11 09:02:58.938248 2024-09-11 09:02:58.938254 aggnd 950309788 R rec cfe1df3b-11e5-4f88-ab8d-5c69ea520a75 +2024-09-11 09:02:58.995362 2024-09-11 09:02:58.995367 aggnd 950323578 R rec 82e798c0-047b-4726-94fc-de1767c68e4d +2024-09-11 09:02:59.054566 2024-09-11 09:02:59.054571 aggnd 950389668 R rec 28cc67ef-4dff-4af4-9ff8-7b70a5fc98fb +2024-09-11 09:02:59.11369 2024-09-11 09:02:59.113695 aggnd 950389781 R rec 31d38d51-7422-49d2-ac40-68bda1d31926 +2024-09-11 09:02:59.170913 2024-09-11 09:02:59.170918 aggnd 950614076 R rec c1e83605-922c-43a0-bf5c-349b3941e523 +2024-09-11 09:02:59.22968 2024-09-11 09:02:59.229685 aggnd 950710776 R rec 73c3d2e7-c7e5-479c-8b7a-da96683ab6c9 +2024-09-11 09:02:59.283904 2024-09-11 09:02:59.28391 aggnd 950729205 R rec a16d01fa-c03c-4573-a9ed-3c87aeab6008 +2024-09-11 09:02:59.335623 2024-09-11 09:02:59.335629 aggnd 950740136 R rec 7d218eaa-bed6-484f-a70e-c4b7f1f8811f +2024-09-11 09:02:59.390852 2024-09-11 09:02:59.390859 aggnd 950740381 R rec 79c767c4-8ac6-448a-a38d-179a1651b063 +2024-09-11 09:02:59.445146 2024-09-11 09:02:59.445152 aggnd 950797855 R rec 5e484185-3473-481a-8bb2-19392553d444 +2024-09-11 09:02:59.497763 2024-09-11 09:02:59.497768 aggnd 95080617X R rec f58b8ea6-3842-4586-8012-841236ca4112 +2024-09-11 09:02:59.555972 2024-09-11 09:02:59.555977 aggnd 950819603 R rec a4c73445-13ff-4a82-8521-75e615099da0 +2024-09-11 09:02:59.606772 2024-09-11 09:02:59.606777 aggnd 950857696 R rec e7cb9a7b-34e5-4e70-ad94-d45357dfe971 +2024-09-11 09:02:59.658991 2024-09-11 09:02:59.658997 aggnd 951162322 R rec 9658309c-a916-4904-9da1-857bed56d4e5 +2024-09-11 09:02:59.710614 2024-09-11 09:02:59.71062 aggnd 951185314 R rec d539a8dd-b1bd-4c54-a044-f5d976b48aed +2024-09-11 09:02:59.760951 2024-09-11 09:02:59.760956 aggnd 951226029 R rec 8c5c7650-5783-429b-93e6-783628ac77eb +2024-09-11 09:02:59.818191 2024-09-11 09:02:59.818196 aggnd 951229982 R rec 67d29598-2dfd-467b-916b-f665ff407457 +2024-09-11 09:02:59.88536 2024-09-11 09:02:59.885366 aggnd 95123272X R rec 350480c5-60b2-4ba0-a828-7d25f5a6b5a6 +2024-09-11 09:02:59.93884 2024-09-11 09:02:59.938845 aggnd 95125023X R rec 0bc7e3fa-2a52-432c-9ffd-cc027c05dcc6 +2024-09-11 09:02:59.990175 2024-09-11 09:02:59.99018 aggnd 951301330 R rec f4f67a04-9e2b-4faa-bb2e-b58fb0c2db10 +2024-09-11 09:03:00.043612 2024-09-11 09:03:00.043616 aggnd 951303139 R rec e0bdfeda-cfa0-47af-bf55-a09b131a43e7 +2024-09-11 09:03:00.095507 2024-09-11 09:03:00.095512 aggnd 951745956 R rec 55e5f303-f8d2-4cee-a0d4-5a97e27a02de +2024-09-11 09:03:00.147234 2024-09-11 09:03:00.147239 aggnd 951762990 R rec 9df3bcaf-c440-462b-9dbb-af35d8247c45 +2024-09-11 09:03:00.197769 2024-09-11 09:03:00.197774 aggnd 951789252 R rec 5916bf10-f65e-40fc-a6f6-bb1c61055abe +2024-09-11 09:03:00.248031 2024-09-11 09:03:00.248036 aggnd 951803328 R rec d7b14118-8eb7-4a33-a34d-ed1a9a4a5e1b +2024-09-11 09:03:00.302476 2024-09-11 09:03:00.302481 aggnd 951803921 R rec ad0bb685-fea4-4357-b768-cb75bff2ffcf +2024-09-11 09:03:00.357904 2024-09-11 09:03:00.357909 aggnd 951806084 R rec a4219760-4c25-4ad7-bb66-291cf18b8d82 +2024-09-11 09:03:00.418717 2024-09-11 09:03:00.418722 aggnd 951828673 R rec 92e72c0e-7e87-44ac-9636-d2228ea3a2f1 +2024-09-11 09:03:00.476679 2024-09-11 09:03:00.476683 aggnd 951838482 R rec 926e5b95-fb2e-4633-85da-df5193531134 +2024-09-11 09:03:00.531253 2024-09-11 09:03:00.531258 aggnd 951842676 R rec 7abaad7a-dc8e-4243-be2a-91e5c5d35131 +2024-09-11 09:03:00.589481 2024-09-11 09:03:00.589488 aggnd 951852043 R rec 4dc564d0-c52b-46a4-9e13-16edb70ef5b1 +2024-09-11 09:03:00.651022 2024-09-11 09:03:00.651027 aggnd 951854194 R rec cf376901-7eb0-4ddf-baf3-8b2b8b3a471e +2024-09-11 09:03:00.71142 2024-09-11 09:03:00.711425 aggnd 951894048 R rec 6cdbd1a2-0f22-4d65-aa9a-5dc04fef71fd +2024-09-11 09:03:00.767908 2024-09-11 09:03:00.767914 aggnd 951894692 R rec 7b8cd382-7a54-440b-a57a-8155ae5f8860 +2024-09-11 09:03:00.825193 2024-09-11 09:03:00.825198 aggnd 951913441 R rec 3580c81c-a446-4a8e-9a82-917249de6376 +2024-09-11 09:03:00.8817 2024-09-11 09:03:00.881705 aggnd 951920553 R rec b63ae3cb-050b-4525-864c-8013479c0f9d +2024-09-11 09:03:00.93538 2024-09-11 09:03:00.935386 aggnd 951921258 R rec 6302ca3d-bd0a-44d6-80be-017b9cced03b +2024-09-11 09:03:00.995027 2024-09-11 09:03:00.995033 aggnd 951945491 R rec bc47130e-3052-4dfa-86c8-356720703284 +2024-09-11 09:03:01.050122 2024-09-11 09:03:01.050127 aggnd 951947915 R rec f49e2a35-93f0-4256-93e0-69f97b8393bd +2024-09-11 09:03:01.109309 2024-09-11 09:03:01.109315 aggnd 952056763 R rec 5f75f4be-41bd-4cd3-9739-298a4584302e +2024-09-11 09:03:01.162919 2024-09-11 09:03:01.162924 aggnd 952070308 R rec 69866346-45b5-4ac3-8da8-2d5ee7dcf798 +2024-09-11 09:03:01.221626 2024-09-11 09:03:01.221631 aggnd 952091542 R rec cf01301b-853f-45ff-be41-855b3b3136f2 +2024-09-11 09:03:01.272936 2024-09-11 09:03:01.272941 aggnd 952101173 R rec 6c4be3c1-f639-4d27-aea3-15c2e116027c +2024-09-11 09:03:01.326886 2024-09-11 09:03:01.326892 aggnd 952199718 R rec 77d34d74-0fcc-4bab-8c75-bbfbda3acead +2024-09-11 09:03:01.381845 2024-09-11 09:03:01.38185 aggnd 952207990 R rec ac22b2a0-3579-48f9-bf78-cb361e7dd94c +2024-09-11 09:03:01.435554 2024-09-11 09:03:01.43556 aggnd 952241684 R rec bb6c7874-e660-48e5-928f-2881446e155b +2024-09-11 09:03:01.492554 2024-09-11 09:03:01.492561 aggnd 952265168 R rec fed2d0df-f585-4f8f-9191-be3c16036bd9 +2024-09-11 09:03:01.542611 2024-09-11 09:03:01.542616 aggnd 952327511 R rec 628bb2d0-df64-419e-b255-b88f57eceba5 +2024-09-11 09:03:01.601825 2024-09-11 09:03:01.601831 aggnd 95232752X R rec 6f2aac88-d0ad-40f9-8dce-df89d75842e3 +2024-09-11 09:03:01.653151 2024-09-11 09:03:01.653157 aggnd 952354527 R rec e0ec0582-9c01-41bf-97db-1cda59147ab2 +2024-09-11 09:03:01.706804 2024-09-11 09:03:01.70681 aggnd 952354969 R rec 8bddc40d-1d1d-4181-9b61-b12b545a64f9 +2024-09-11 09:03:01.761659 2024-09-11 09:03:01.761664 aggnd 952358492 R rec fdf81516-b089-4702-821d-8f6d296819e1 +2024-09-11 09:03:01.815454 2024-09-11 09:03:01.815458 aggnd 952379546 R rec 0cf67dc0-27e0-459e-9cc0-40b722f16721 +2024-09-11 09:03:01.882864 2024-09-11 09:03:01.882869 aggnd 952419351 R rec 1073b8ab-d4b3-4acd-b84c-2892c645a618 +2024-09-11 09:03:01.942876 2024-09-11 09:03:01.942882 aggnd 952481464 R rec 9d3f91a9-4c86-4241-b85e-df9c20185d94 +2024-09-11 09:03:01.998884 2024-09-11 09:03:01.99889 aggnd 952489546 R rec 25acdaed-6ba9-4761-b2dd-14b9738a9219 +2024-09-11 09:03:02.066297 2024-09-11 09:03:02.066301 aggnd 952503980 R rec 0c6c2605-d3a4-40a8-a0dc-95003e710604 +2024-09-11 09:03:02.124051 2024-09-11 09:03:02.124057 aggnd 95250538X R rec 14ebeb0a-3517-45f6-a2f4-13e7ca2fccb3 +2024-09-11 09:03:02.192317 2024-09-11 09:03:02.192322 aggnd 952510995 R rec a2e50e15-f560-4db4-91b6-305562e0b8e6 +2024-09-11 09:03:02.252556 2024-09-11 09:03:02.252562 aggnd 95251592X R rec dee007e1-cc8c-4454-b3b2-0d9d40729310 +2024-09-11 09:03:02.308943 2024-09-11 09:03:02.308949 aggnd 952534924 R rec e4131dfc-12b4-45ec-8feb-b5f00a9e110d +2024-09-11 09:03:02.36588 2024-09-11 09:03:02.365886 aggnd 952540428 R rec 21f55c4c-158b-4995-b778-469c360f44c8 +2024-09-11 09:03:02.422077 2024-09-11 09:03:02.422083 aggnd 952541084 R rec d0918380-d9a5-45c5-a3b4-0a5ca53ce1eb +2024-09-11 09:03:02.480684 2024-09-11 09:03:02.480689 aggnd 952542811 R rec c7fc9285-9cd8-46b6-93f5-242341498da0 +2024-09-11 09:03:02.53879 2024-09-11 09:03:02.538795 aggnd 952543141 R rec 7f92861a-0b07-462d-ad0f-1c903badfe6a +2024-09-11 09:03:02.600558 2024-09-11 09:03:02.600565 aggnd 952571315 R rec 2fb93964-3a46-4f7e-a9fd-78991ea18532 +2024-09-11 09:03:02.65814 2024-09-11 09:03:02.658145 aggnd 952607549 R rec ab1cc702-9042-423d-96a9-566af14a5240 +2024-09-11 09:03:02.715034 2024-09-11 09:03:02.715039 aggnd 952616270 R rec dcef4f22-2f5d-4d8b-b9ea-900f24d38349 +2024-09-11 09:03:02.777289 2024-09-11 09:03:02.777295 aggnd 952753294 R rec 244c06fe-d406-475e-9638-7ef9342d804c +2024-09-11 09:03:02.843541 2024-09-11 09:03:02.843547 aggnd 952753537 R rec b8cfde84-74ea-4c62-8b3d-ce51ccbdc20f +2024-09-11 09:03:02.901785 2024-09-11 09:03:02.901791 aggnd 952754606 R rec 4229a55a-b9e0-4ae0-bc8c-e9396fdb8673 +2024-09-11 09:03:02.959255 2024-09-11 09:03:02.959261 aggnd 952918838 R rec ea5b321a-5fc8-4b39-88f0-7cd3261caf03 +2024-09-11 09:03:03.020033 2024-09-11 09:03:03.020038 aggnd 952923793 R rec 0e3b6075-fa74-41e8-a0a2-94b09f6fa3f5 +2024-09-11 09:03:03.090262 2024-09-11 09:03:03.090267 aggnd 953095746 R rec 81812993-45c3-463f-834e-30020590edba +2024-09-11 09:03:03.15438 2024-09-11 09:03:03.154385 aggnd 95311886X R rec 39d88e7f-a58e-4427-a9e0-d4bced06c51e +2024-09-11 09:03:03.223606 2024-09-11 09:03:03.223612 aggnd 95315971X R rec bb91da65-003a-4aa4-a39a-74c8759111eb +2024-09-11 09:03:03.288553 2024-09-11 09:03:03.288559 aggnd 953324559 R rec 1055f3a4-6f8d-45c1-b687-3dfccce6f791 +2024-09-11 09:03:03.355287 2024-09-11 09:03:03.355292 aggnd 953324974 R rec d5a4b122-4d86-4ea6-ba70-34fb23c87a55 +2024-09-11 09:03:03.411512 2024-09-11 09:03:03.411517 aggnd 953476359 R rec 810e6465-9dd0-4e85-88e9-97ae5b0c2f1c +2024-09-11 09:03:03.479132 2024-09-11 09:03:03.479137 aggnd 953477061 R rec 7d996138-2acf-4077-b52e-4b74a0792d4a +2024-09-11 09:03:03.538029 2024-09-11 09:03:03.538035 aggnd 953483401 R rec 2cbc7016-7f2e-447d-858f-594c43eff7a7 +2024-09-11 09:03:03.593651 2024-09-11 09:03:03.593656 aggnd 953537013 R rec fa6a41ab-bb99-4fa5-8db1-892aa07b3d3e +2024-09-11 09:03:03.709298 2024-09-11 09:03:03.709303 aggnd 95360795X R rec 92d6e3d1-c3a1-48cd-a755-534c570ba20d +2024-09-11 09:03:03.768242 2024-09-11 09:03:03.768248 aggnd 953608573 R rec eb6e51d4-e1f6-45e2-9bb8-0073488986f3 +2024-09-11 09:03:03.832125 2024-09-11 09:03:03.832131 aggnd 95364474X R rec 3531c0ed-7f08-47b1-a027-3bfabe62539e +2024-09-11 09:03:03.90191 2024-09-11 09:03:03.901916 aggnd 953644820 R rec 585272d2-5cc6-469e-ba6f-0fa7c3150138 +2024-09-11 09:03:03.971094 2024-09-11 09:03:03.971101 aggnd 953669033 R rec 39d3eacc-364b-45d8-854f-b39c02ffd6a2 +2024-09-11 09:03:04.06645 2024-09-11 09:03:04.066455 aggnd 953777839 R rec 65b26362-5c53-409d-8482-a57fc3c59172 +2024-09-11 09:03:04.125208 2024-09-11 09:03:04.125213 aggnd 953979687 R rec 4ba020f9-4d49-4472-b5dc-27bd80357e8f +2024-09-11 09:03:04.1877 2024-09-11 09:03:04.187707 aggnd 953980545 R rec e09e0768-0ada-41ae-936f-e19e5590cedc +2024-09-11 09:03:04.244543 2024-09-11 09:03:04.244548 aggnd 954069773 R rec dd4eafcf-e3f3-4f18-a615-b366148861a8 +2024-09-11 09:03:04.304908 2024-09-11 09:03:04.304914 aggnd 954132491 R rec c7ef8198-d144-4dd5-8a5d-87ef78938d3c +2024-09-11 09:03:04.378402 2024-09-11 09:03:04.378407 aggnd 954184165 R rec c0015821-2cf8-45a3-8220-5d84a0c0a2a3 +2024-09-11 09:03:04.4367 2024-09-11 09:03:04.436705 aggnd 954255011 R rec bc8fb57b-1298-4c0d-9bd2-011b7ecc0c39 +2024-09-11 09:03:04.494735 2024-09-11 09:03:04.494741 aggnd 954328426 R rec 42f128aa-e246-4e97-9344-062b3c41b5ce +2024-09-11 09:03:04.56511 2024-09-11 09:03:04.565115 aggnd 954330803 R rec ed865d92-5ec9-40ed-9baf-d327c37a37f6 +2024-09-11 09:03:04.625406 2024-09-11 09:03:04.625411 aggnd 954352610 R rec fef5095c-589d-4b1b-b15c-a10d34604c9a +2024-09-11 09:03:04.687457 2024-09-11 09:03:04.687464 aggnd 954405250 R rec d605c1aa-967c-4a07-9061-ece20cd22451 +2024-09-11 09:03:04.748109 2024-09-11 09:03:04.748114 aggnd 954405986 R rec 510b23ff-79ac-4e99-b8ca-9f2218360e49 +2024-09-11 09:03:04.821595 2024-09-11 09:03:04.8216 aggnd 954495098 R rec 18cb65c4-0df6-4f40-b982-38d12f419755 +2024-09-11 09:03:04.876599 2024-09-11 09:03:04.876605 aggnd 954534530 R rec d754f8b0-07f9-4f55-88fa-6732924f8642 +2024-09-11 09:03:04.944607 2024-09-11 09:03:04.944612 aggnd 954535286 R rec b7241603-b3b4-4e28-955f-cc5e12dcb5d8 +2024-09-11 09:03:05.011007 2024-09-11 09:03:05.011012 aggnd 95454157X R rec 93be1597-fe4a-48dd-a1cf-227f7ca4c2a9 +2024-09-11 09:03:05.073258 2024-09-11 09:03:05.073264 aggnd 954552873 R rec 62c02120-01dc-437a-aa6f-e290cb03878a +2024-09-11 09:03:05.133528 2024-09-11 09:03:05.133534 aggnd 954559592 R rec 33d965a6-f35b-4b74-bdc7-c6f37159b295 +2024-09-11 09:03:05.204924 2024-09-11 09:03:05.20493 aggnd 954569601 R rec 4e9dfa7f-edc2-46dd-ae3f-a441654705a5 +2024-09-11 09:03:05.273355 2024-09-11 09:03:05.27336 aggnd 954571398 R rec 1464bc49-f9a7-454b-8735-23911933a480 +2024-09-11 09:03:05.333357 2024-09-11 09:03:05.333363 aggnd 954574354 R rec fde4e117-768f-45e4-8fe5-5bca63e81df4 +2024-09-11 09:03:05.394496 2024-09-11 09:03:05.394502 aggnd 954587693 R rec 5e9771bb-7b99-4fe2-a767-5405c863b8ca +2024-09-11 09:03:05.457539 2024-09-11 09:03:05.457545 aggnd 954589262 R rec c78b2aed-fff3-453f-931e-d9f77248d34d +2024-09-11 09:03:05.532456 2024-09-11 09:03:05.532462 aggnd 954590848 R rec 29900f0f-0a7d-4763-aaea-5b3b08e2d11f +2024-09-11 09:03:05.60751 2024-09-11 09:03:05.607516 aggnd 954619595 R rec 4d1af5a5-cbcc-41db-b8d2-185f78845470 +2024-09-11 09:03:05.69562 2024-09-11 09:03:05.695625 aggnd 954621131 R rec 7d342735-94e8-4325-8510-5aecfcdf0601 +2024-09-11 09:03:05.760765 2024-09-11 09:03:05.76077 aggnd 954862805 R rec 3b3f9386-11a7-4386-8b3e-e80b995f70ae +2024-09-11 09:03:05.830097 2024-09-11 09:03:05.830102 aggnd 954863127 R rec fda2dcc1-5b40-4b3c-bf42-ba0bd1371945 +2024-09-11 09:03:05.901639 2024-09-11 09:03:05.901646 aggnd 954876539 R rec 20515841-5845-44c8-920e-ad29c810e2b1 +2024-09-11 09:03:05.978945 2024-09-11 09:03:05.978951 aggnd 954882571 R rec df41c9ef-c35d-4623-8b1f-9c0d7d9411a4 +2024-09-11 09:03:06.059476 2024-09-11 09:03:06.059482 aggnd 95500778X R rec d006d0f7-4f6d-4226-b525-d74ea357e4d9 +2024-09-11 09:03:06.134771 2024-09-11 09:03:06.134783 aggnd 955030080 R rec 3bf37e39-5e37-4a45-9d53-3c661ed0b6b2 +2024-09-11 09:03:06.204316 2024-09-11 09:03:06.204323 aggnd 955046475 R rec 565b8a53-cd21-4b00-9297-63224afa45c7 +2024-09-11 09:03:06.261162 2024-09-11 09:03:06.261168 aggnd 955064813 R rec 7f90fc8a-0565-45cc-854d-fc5966a53b6d +2024-09-11 09:03:06.321855 2024-09-11 09:03:06.32186 aggnd 955092523 R rec d8362360-087c-484b-a139-8b33104710a3 +2024-09-11 09:03:06.381247 2024-09-11 09:03:06.381252 aggnd 95511182X R rec 332210b7-b76d-4682-bbc8-46212c99a2c7 +2024-09-11 09:03:06.439457 2024-09-11 09:03:06.439462 aggnd 95511201X R rec 22f19ca6-133a-453f-ac5a-0491ed236b87 +2024-09-11 09:03:06.500271 2024-09-11 09:03:06.500276 aggnd 955116635 R rec 39eaea01-eb66-4a43-9d42-ffe3efffdd8c +2024-09-11 09:03:06.567887 2024-09-11 09:03:06.567893 aggnd 955119413 R rec d15e7e32-85ea-48de-8315-c743e761a48e +2024-09-11 09:03:06.627909 2024-09-11 09:03:06.627914 aggnd 955121647 R rec 67e9cc6b-2004-42e5-867f-1609f2322349 +2024-09-11 09:03:06.688066 2024-09-11 09:03:06.688071 aggnd 955190908 R rec 2e988a95-278b-4813-80cf-27b847dd4971 +2024-09-11 09:03:06.759644 2024-09-11 09:03:06.75965 aggnd 955382378 R rec 5c4af548-20ee-4314-b54f-e6d3310b2456 +2024-09-11 09:03:06.820401 2024-09-11 09:03:06.820406 aggnd 955401976 R rec 3b988745-a61a-4443-b190-95414ffb56cd +2024-09-11 09:03:06.879752 2024-09-11 09:03:06.879757 aggnd 955431425 R rec 4caf8917-ae57-454a-8e61-c3741b7798aa +2024-09-11 09:03:06.94031 2024-09-11 09:03:06.940315 aggnd 955432774 R rec 5a5e619b-d725-46dc-ac44-255f2babc5cc +2024-09-11 09:03:07.002631 2024-09-11 09:03:07.002637 aggnd 955611423 R rec 2f1687fa-76d5-4e44-bcde-35ac1a0700d8 +2024-09-11 09:03:07.061714 2024-09-11 09:03:07.06172 aggnd 955736374 R rec a42a1072-3b24-4eb2-a0cc-0ca5747ee6a2 +2024-09-11 09:03:07.121674 2024-09-11 09:03:07.121682 aggnd 955740223 R rec 56c542c0-feda-4a58-9b0b-f7839ecb6de3 +2024-09-11 09:03:07.186668 2024-09-11 09:03:07.186682 aggnd 955746256 R rec d352a068-4bcb-4c8c-9942-d851152ed5d1 +2024-09-11 09:03:07.244657 2024-09-11 09:03:07.244663 aggnd 955966566 R rec bd0a6719-95a0-44fb-98bd-d78d73a0a575 +2024-09-11 09:03:07.303364 2024-09-11 09:03:07.303392 aggnd 956291279 R rec f32d850a-c6f6-4480-afbb-3eaff0d66829 +2024-09-11 09:03:07.364877 2024-09-11 09:03:07.364882 aggnd 956483542 R rec baf7f8e6-489a-48d6-9885-671b58545e95 +2024-09-11 09:03:07.441925 2024-09-11 09:03:07.44193 aggnd 956528775 R rec 07a7d578-be6f-4ee2-8c91-2d62f0ca0f54 +2024-09-11 09:03:07.500524 2024-09-11 09:03:07.50053 aggnd 956529445 R rec 851e019f-cccc-4cc3-8e96-5b924b9b0595 +2024-09-11 09:03:07.560051 2024-09-11 09:03:07.560057 aggnd 956539564 R rec 3ef7c21c-0897-48c4-a299-b564ef4b56d2 +2024-09-11 09:03:07.633647 2024-09-11 09:03:07.633653 aggnd 956546927 R rec e0a376e4-98ba-42a4-930e-72946b44ea10 +2024-09-11 09:03:07.698695 2024-09-11 09:03:07.698701 aggnd 956548660 R rec d1c8fe7e-213e-4cc1-9cf6-c6f3d457dcf9 +2024-09-11 09:03:07.802785 2024-09-11 09:03:07.802791 aggnd 956555225 R rec 31318bca-4c9e-47a3-bffa-43a3a032b768 +2024-09-11 09:03:07.879727 2024-09-11 09:03:07.879732 aggnd 956579760 R rec 400bc36c-3109-4cdd-a36c-955da3d2e2d2 +2024-09-11 09:03:07.956034 2024-09-11 09:03:07.956039 aggnd 956627536 R rec 35c1b4ae-aaa4-4893-9969-73b5bbaffa17 +2024-09-11 09:03:08.019443 2024-09-11 09:03:08.01945 aggnd 956749232 R rec 9b1d5969-995e-487a-8923-4e04163767fd +2024-09-11 09:03:08.086628 2024-09-11 09:03:08.086634 aggnd 95679615X R rec 779ede2a-9b2f-4677-9c76-51a904395c08 +2024-09-11 09:03:08.171762 2024-09-11 09:03:08.171769 aggnd 956827195 R rec b3c6efd8-e2c7-4f5b-b06a-8eacce2975e8 +2024-09-11 09:03:08.232587 2024-09-11 09:03:08.232593 aggnd 956831044 R rec 7d4f8fe8-9c2b-4aa0-b9c9-51fd3f14b6d7 +2024-09-11 09:03:08.292833 2024-09-11 09:03:08.292838 aggnd 956917054 R rec 7064c4eb-1a2f-49ff-a7fc-d0bb67b88fcc +2024-09-11 09:03:08.365108 2024-09-11 09:03:08.365114 aggnd 956976999 R rec 564bacea-274e-4943-9880-2e40b91425c2 +2024-09-11 09:03:08.423661 2024-09-11 09:03:08.423666 aggnd 956990223 R rec b3ebac8f-a1d7-4cc1-ae20-e4ac5a4bc7f8 +2024-09-11 09:03:08.483286 2024-09-11 09:03:08.483291 aggnd 956994679 R rec a69f590e-298e-41ac-a13a-7d05af382f32 +2024-09-11 09:03:08.541946 2024-09-11 09:03:08.541952 aggnd 957023235 R rec 40f6325e-eb23-4a99-a298-8f8017a0b482 +2024-09-11 09:03:08.603089 2024-09-11 09:03:08.603094 aggnd 957059590 R rec 53fbb4aa-d4a7-4532-94a9-5b89cf93b02e +2024-09-11 09:03:08.657782 2024-09-11 09:03:08.657788 aggnd 957060149 R rec 1b39c006-9765-45df-a722-663a80366c30 +2024-09-11 09:03:08.715672 2024-09-11 09:03:08.715677 aggnd 957075405 R rec 7ec9308b-7e08-4f73-a748-2e2b9613b269 +2024-09-11 09:03:08.772191 2024-09-11 09:03:08.772196 aggnd 957106408 R rec 19219bf5-9afa-4a10-8532-900228662c31 +2024-09-11 09:03:08.834219 2024-09-11 09:03:08.834225 aggnd 957164599 R rec f723a4d0-bf21-4a01-9b5c-fd1562e8062a +2024-09-11 09:03:08.898619 2024-09-11 09:03:08.898624 aggnd 957177879 R rec f71f4251-4d6c-419a-b0e3-962cb1299232 +2024-09-11 09:03:08.955785 2024-09-11 09:03:08.955791 aggnd 95717926X R rec e6811fe3-28ab-435a-af4a-63fd0116edbe +2024-09-11 09:03:09.018694 2024-09-11 09:03:09.018699 aggnd 957186185 R rec b91b588e-bd3d-44bf-89b7-80b0a8b46fa6 +2024-09-11 09:03:09.088305 2024-09-11 09:03:09.08831 aggnd 957223242 R rec 01e2d087-3df9-46ad-b768-ed222236ea94 +2024-09-11 09:03:09.149074 2024-09-11 09:03:09.149079 aggnd 957263511 R rec 7f6a459c-3f63-4d42-847e-5606e66c84de +2024-09-11 09:03:09.20579 2024-09-11 09:03:09.205796 aggnd 957268688 R rec c226e351-5b3a-4d2c-9eba-dbe7473c5259 +2024-09-11 09:03:09.261392 2024-09-11 09:03:09.261397 aggnd 957348924 R rec 83157ca1-255d-4722-a258-9d7c4490207d +2024-09-11 09:03:09.32318 2024-09-11 09:03:09.323184 aggnd 957354096 R rec 26af56a7-a3cc-470a-b7ff-4f82d013bcb5 +2024-09-11 09:03:09.397047 2024-09-11 09:03:09.397052 aggnd 957365993 R rec 283daafb-50a9-49ab-860b-1f591c8ffd6f +2024-09-11 09:03:09.451398 2024-09-11 09:03:09.451403 aggnd 957382332 R rec 5a11673d-fcc3-4e4d-a07e-c0bd244f3a60 +2024-09-11 09:03:09.506729 2024-09-11 09:03:09.506734 aggnd 957433158 R rec 465e607c-ec23-4c6c-92c4-113c24b28e2a +2024-09-11 09:03:09.565429 2024-09-11 09:03:09.56544 aggnd 95746214X R rec 145a2b8f-3c23-4d48-89fc-ebe89c59edfd +2024-09-11 09:03:09.638006 2024-09-11 09:03:09.638012 aggnd 957467303 R rec fa6893ca-b43d-4308-a34c-48ebca7639cd +2024-09-11 09:03:09.700399 2024-09-11 09:03:09.700405 aggnd 957488548 R rec 4ae593bc-9ef0-458d-b8af-1663f2034daa +2024-09-11 09:03:09.758342 2024-09-11 09:03:09.758347 aggnd 957490186 R rec 349af024-81a7-4b8c-9b95-491ee0cda621 +2024-09-11 09:03:09.827585 2024-09-11 09:03:09.82759 aggnd 957496729 R rec d4f7f70e-5f7a-41d8-8f96-5b71a50ac01f +2024-09-11 09:03:09.894433 2024-09-11 09:03:09.894438 aggnd 957503083 R rec 37599fa1-fa4d-4488-8c58-8554d0a65f6b +2024-09-11 09:03:09.949253 2024-09-11 09:03:09.949258 aggnd 957506880 R rec fd4e303e-c319-4261-a774-ea8fd0c2ab03 +2024-09-11 09:03:10.005503 2024-09-11 09:03:10.005507 aggnd 957853408 R rec e144fef8-1852-4a82-94bd-bd3670bdb36c +2024-09-11 09:03:10.063646 2024-09-11 09:03:10.063687 aggnd 957923031 R rec adabea44-2bc6-4972-9398-f0848439f6a8 +2024-09-11 09:03:10.121281 2024-09-11 09:03:10.121286 aggnd 95792755X R rec b3de713e-8267-430b-9b0f-ac76b843c695 +2024-09-11 09:03:10.183947 2024-09-11 09:03:10.183953 aggnd 957929331 R rec ede8f291-8fdd-41e6-b7d4-860b03ac0253 +2024-09-11 09:03:10.24428 2024-09-11 09:03:10.244285 aggnd 957935625 R rec 2dd3b7bc-a114-48ee-89c4-1a72f42c9524 +2024-09-11 09:03:10.299508 2024-09-11 09:03:10.299514 aggnd 957935900 R rec da04c520-d689-4a53-995f-1eb3d9c99b7f +2024-09-11 09:03:10.358405 2024-09-11 09:03:10.35841 aggnd 95794988X R rec 0cb94cdd-1b51-4410-8d3c-a7949b2ec34b +2024-09-11 09:03:10.425151 2024-09-11 09:03:10.425157 aggnd 957954522 R rec 2dbf1f36-146c-4d87-a81a-427b25de79a8 +2024-09-11 09:03:10.484398 2024-09-11 09:03:10.484404 aggnd 95795624X R rec bc189e92-b13e-4c5d-a84f-940edeb70525 +2024-09-11 09:03:10.558182 2024-09-11 09:03:10.558188 aggnd 957957114 R rec 85b8865e-b8a3-42af-87d8-5094eee43373 +2024-09-11 09:03:10.620972 2024-09-11 09:03:10.620982 aggnd 957962703 R rec 3c0fc7f4-6c09-4621-830f-0e1711d6450e +2024-09-11 09:03:10.676897 2024-09-11 09:03:10.676902 aggnd 957973497 R rec a8a5e6e9-d4ac-48c8-a86e-5174c4e8a038 +2024-09-11 09:03:10.738642 2024-09-11 09:03:10.738647 aggnd 95797728X R rec df5b4318-6be9-403e-bc3f-746263711a56 +2024-09-11 09:03:10.79876 2024-09-11 09:03:10.798765 aggnd 958006873 R rec 3e55a0dc-dbdd-46a1-9be6-035e8a75f5fa +2024-09-11 09:03:10.867579 2024-09-11 09:03:10.867585 aggnd 958094160 R rec e7e4a17c-e53e-42e3-9c76-dab4f18b721b +2024-09-11 09:03:10.94116 2024-09-11 09:03:10.941166 aggnd 958490139 R rec e38e74ba-f744-4c2f-825f-547e2ff6d0c6 +2024-09-11 09:03:11.005945 2024-09-11 09:03:11.005951 aggnd 95858012X R rec f0d353bb-b0fb-4762-af54-ab0b6595e958 +2024-09-11 09:03:11.066488 2024-09-11 09:03:11.066495 aggnd 958686424 R rec bef4d714-3a6a-46ff-880c-4d54a7a89837 +2024-09-11 09:03:11.150806 2024-09-11 09:03:11.150811 aggnd 958779147 R rec d698c27c-757e-4d1b-ba2f-4d5b77969834 +2024-09-11 09:03:11.215386 2024-09-11 09:03:11.215391 aggnd 958942900 R rec 78d58f06-2b0d-475e-911a-7e66a6ba429e +2024-09-11 09:03:11.275853 2024-09-11 09:03:11.275858 aggnd 958945861 R rec e01620fd-71ff-475a-b573-20112a88f1b0 +2024-09-11 09:03:11.336042 2024-09-11 09:03:11.336048 aggnd 959006028 R rec 1fb1891a-3e75-4945-8d55-8df5596451b9 +2024-09-11 09:03:11.405201 2024-09-11 09:03:11.405207 aggnd 959176918 R rec 5d32a555-2549-44f4-9ad2-463b56f5c4b6 +2024-09-11 09:03:11.487732 2024-09-11 09:03:11.487737 aggnd 959194975 R rec 5afac092-3c56-4d45-8160-80c16310c809 +2024-09-11 09:03:11.545305 2024-09-11 09:03:11.545311 aggnd 959280944 R rec 66369b00-93e7-4189-85fe-2043d028499b +2024-09-11 09:03:11.606975 2024-09-11 09:03:11.60698 aggnd 959307338 R rec f0f7801c-cce7-4b60-8c4e-444e0ae0d9b5 +2024-09-11 09:03:11.671673 2024-09-11 09:03:11.671679 aggnd 95933727X R rec 7c704f2c-0bb7-40bb-ab0d-6e3d91f28afd +2024-09-11 09:03:11.742778 2024-09-11 09:03:11.742783 aggnd 959433953 R rec 4fda4132-1940-4600-a2b6-837785603cbf +2024-09-11 09:03:11.805318 2024-09-11 09:03:11.805323 aggnd 959524215 R rec 09caa8b9-ec84-4a84-b9a4-4fbd21fc9015 +2024-09-11 09:03:11.861365 2024-09-11 09:03:11.86137 aggnd 959547916 R rec 3f25b191-efde-4c0a-849d-985529493598 +2024-09-11 09:03:11.927029 2024-09-11 09:03:11.927035 aggnd 959585605 R rec 6837298e-695e-4d97-9454-2765d997e0c2 +2024-09-11 09:03:11.986552 2024-09-11 09:03:11.986558 aggnd 959713697 R rec db7fc489-2b15-404f-9285-088c41a3945d +2024-09-11 09:03:12.047742 2024-09-11 09:03:12.047746 aggnd 959734708 R rec a365471d-e8ec-4783-94e7-55eb849848d5 +2024-09-11 09:03:12.140926 2024-09-11 09:03:12.140932 aggnd 959910808 R rec 246870dd-090a-4a2c-8d62-498178618d8d +2024-09-11 09:03:12.22329 2024-09-11 09:03:12.223295 aggnd 960094873 R rec 08461100-263b-4605-84ff-a9d199e49fc4 +2024-09-11 09:03:12.292391 2024-09-11 09:03:12.292396 aggnd 960193812 R rec 6dd68891-d0a6-498b-a7fe-f31fef5d913e +2024-09-11 09:03:12.358581 2024-09-11 09:03:12.358586 aggnd 960331077 R rec 49f7a39c-e396-4836-9c1f-bd6865458f80 +2024-09-11 09:03:12.441879 2024-09-11 09:03:12.441885 aggnd 960331166 R rec bb550734-057b-42f9-9df6-8f8288e1d2f9 +2024-09-11 09:03:12.501964 2024-09-11 09:03:12.501971 aggnd 960373527 R rec 104ffb19-17be-450d-88c6-b4da95c670ae +2024-09-11 09:03:12.565076 2024-09-11 09:03:12.565081 aggnd 960554440 R rec 260b8f5c-bd9f-4b87-b6de-82cf4652c652 +2024-09-11 09:03:12.634292 2024-09-11 09:03:12.634297 aggnd 96055646X R rec 4b0f9b16-2d35-4e0e-bdb8-1ccc4895b31d +2024-09-11 09:03:12.716431 2024-09-11 09:03:12.716437 aggnd 96056814X R rec 8ae57f40-e061-43db-b1c6-011123e9b602 +2024-09-11 09:03:12.817646 2024-09-11 09:03:12.817652 aggnd 960574298 R rec a53408a8-1690-40bd-acde-262c61bcb0e7 +2024-09-11 09:03:12.88433 2024-09-11 09:03:12.884336 aggnd 960693785 R rec 3d9498f3-c6d6-474d-83a9-3db60368a731 +2024-09-11 09:03:12.951291 2024-09-11 09:03:12.951297 aggnd 960722157 R rec 79790a4a-6294-49cc-a03a-690fe79400b9 +2024-09-11 09:03:13.018629 2024-09-11 09:03:13.018635 aggnd 960794093 R rec 9682081d-d85a-4be9-a68c-d4f3d78f5d70 +2024-09-11 09:03:13.090016 2024-09-11 09:03:13.090022 aggnd 960796878 R rec 501a05a0-08ea-49df-94d9-11d523b69134 +2024-09-11 09:03:13.167773 2024-09-11 09:03:13.167778 aggnd 960807128 R rec 5c35583a-809b-48f9-9e29-765d2c5fa6f6 +2024-09-11 09:03:13.234814 2024-09-11 09:03:13.23482 aggnd 960812989 R rec 6e9ee6a7-2f35-4eff-b4f7-790665d53d03 +2024-09-11 09:03:13.304322 2024-09-11 09:03:13.304328 aggnd 960819177 R rec d0becd45-efbf-43e3-97bf-a8ba5633840e +2024-09-11 09:03:13.365654 2024-09-11 09:03:13.36566 aggnd 960819541 R rec 70f6a4eb-6f89-4ec1-a6ec-182288360b41 +2024-09-11 09:03:13.427626 2024-09-11 09:03:13.427632 aggnd 960823271 R rec cab04443-5e7f-4480-990b-a1ba4865a527 +2024-09-11 09:03:13.493872 2024-09-11 09:03:13.493878 aggnd 960928995 R rec 0ae86402-b162-4c48-b4a1-484e5ea0c51d +2024-09-11 09:03:13.554117 2024-09-11 09:03:13.554122 aggnd 961071435 R rec 2ca66f61-f3ee-4dc5-913f-d59390461e6c +2024-09-11 09:03:13.619823 2024-09-11 09:03:13.619829 aggnd 96107177X R rec 7a08d83a-bcfb-41b5-981c-b07527fbaae6 +2024-09-11 09:03:13.683367 2024-09-11 09:03:13.683372 aggnd 961077816 R rec 037b949b-23fa-46ab-a50a-934ed56e9e39 +2024-09-11 09:03:13.750391 2024-09-11 09:03:13.750396 aggnd 961083387 R rec 5f6a715f-256c-450b-a6f8-51f78a82f199 +2024-09-11 09:03:13.812299 2024-09-11 09:03:13.812304 aggnd 961086882 R rec f45cce47-aac5-4d31-b38e-9522285cf70e +2024-09-11 09:03:13.878418 2024-09-11 09:03:13.878424 aggnd 961106565 R rec c528ab8c-3497-4c97-96b2-1f252c91f3cc +2024-09-11 09:03:13.958741 2024-09-11 09:03:13.958746 aggnd 961106646 R rec a72d7ac8-9b1b-4b21-a0a5-3227c05fd458 +2024-09-11 09:03:14.044496 2024-09-11 09:03:14.044501 aggnd 961106840 R rec 023995c0-d539-4451-9531-842d79d303af +2024-09-11 09:03:14.105191 2024-09-11 09:03:14.105197 aggnd 961293950 R rec c76911ca-f63a-4924-9770-3b46dc63039c +2024-09-11 09:03:14.177472 2024-09-11 09:03:14.177478 aggnd 961300515 R rec c67ed43c-3b3a-4b8e-94f3-cf1571c2aea8 +2024-09-11 09:03:14.242923 2024-09-11 09:03:14.242929 aggnd 961328495 R rec 957140c9-4713-469c-828a-19b5c5144359 +2024-09-11 09:03:14.310296 2024-09-11 09:03:14.310301 aggnd 961329653 R rec 9ae607f2-2e95-466a-9b79-e13e9b939fcb +2024-09-11 09:03:14.375905 2024-09-11 09:03:14.375911 aggnd 961333065 R rec ee5cb86a-23b8-4976-b86f-d3064b1f091a +2024-09-11 09:03:14.451972 2024-09-11 09:03:14.451978 aggnd 961337893 R rec da26afb9-8abb-456c-bdbf-e5f9d827dd95 +2024-09-11 09:03:14.519987 2024-09-11 09:03:14.519995 aggnd 961342153 R rec ecf1815e-2987-44cf-87f0-8aa931266b0d +2024-09-11 09:03:14.584427 2024-09-11 09:03:14.584432 aggnd 961397047 R rec fd562205-a740-456a-96c0-011bac5005c8 +2024-09-11 09:03:14.667101 2024-09-11 09:03:14.667106 aggnd 961400803 R rec 4644a2b7-1ff6-4133-8b87-6c14b32ea600 +2024-09-11 09:03:14.736916 2024-09-11 09:03:14.736921 aggnd 961589809 R rec 0faa5dc5-01f0-4b02-a44e-0ba32e3ca871 +2024-09-11 09:03:14.812932 2024-09-11 09:03:14.812937 aggnd 961631171 R rec cd374cda-0bd2-42b7-be76-3f535f80f2f2 +2024-09-11 09:03:14.881132 2024-09-11 09:03:14.881137 aggnd 961636270 R rec e511b380-cf8f-4665-ae39-ec2e5e72df2d +2024-09-11 09:03:14.957425 2024-09-11 09:03:14.957433 aggnd 961646969 R rec af6b937d-d0d0-4270-86d0-807099154f7a +2024-09-11 09:03:15.025324 2024-09-11 09:03:15.025329 aggnd 961652276 R rec 200ec4df-e995-430a-a61f-7a3c266a6a5e +2024-09-11 09:03:15.102461 2024-09-11 09:03:15.102467 aggnd 961659645 R rec 5b204e3d-077d-44c2-b420-2b16e3c29d46 +2024-09-11 09:03:15.171148 2024-09-11 09:03:15.171154 aggnd 961729155 R rec ae4b9c53-3733-402f-85e1-1ed2146fa517 +2024-09-11 09:03:15.272174 2024-09-11 09:03:15.27218 aggnd 961784334 R rec 23a0b586-e822-4dd5-bf8e-f6df93df2f0e +2024-09-11 09:03:15.325366 2024-09-11 09:03:15.325372 aggnd 961792426 R rec cc5cac89-3bc1-4864-b2ad-3c2f68313987 +2024-09-11 09:03:15.390359 2024-09-11 09:03:15.390365 aggnd 961797568 R rec 389d54f6-c2de-49e2-9c63-93e37543e647 +2024-09-11 09:03:15.447415 2024-09-11 09:03:15.44742 aggnd 961798025 R rec 75b21871-43b0-4a46-abdb-92753bb837be +2024-09-11 09:03:15.50604 2024-09-11 09:03:15.506045 aggnd 962037141 R rec 836b125c-0faf-4550-9b86-d1adfc5d0f0f +2024-09-11 09:03:15.562933 2024-09-11 09:03:15.562948 aggnd 962243477 R rec 61d4bab1-488c-40c4-950b-c36bf822c23a +2024-09-11 09:03:15.625635 2024-09-11 09:03:15.625641 aggnd 962251968 R rec bb5b7d52-968f-45d5-bfca-034b0ce94ba3 +2024-09-11 09:03:15.682715 2024-09-11 09:03:15.682719 aggnd 96233359X R rec df4a3538-00cf-4d61-9ff6-d6941b5c9b22 +2024-09-11 09:03:15.744904 2024-09-11 09:03:15.74491 aggnd 962390097 R rec 5d26903c-6319-4ef3-8adc-6c207466a54a +2024-09-11 09:03:15.804347 2024-09-11 09:03:15.804353 aggnd 962446440 R rec c09fef63-b2fc-49a5-899c-3381c57f3a55 +2024-09-11 09:03:15.872795 2024-09-11 09:03:15.8728 aggnd 962450170 R rec 1a02bf40-ed3d-4f99-8e1e-70cf4c57a7fa +2024-09-11 09:03:15.931239 2024-09-11 09:03:15.931244 aggnd 962470929 R rec c59730cc-7a34-40b8-9770-9130a2bbcae7 +2024-09-11 09:03:15.989859 2024-09-11 09:03:15.989865 aggnd 96247357X R rec 2032310f-ad93-4c13-95a4-37a92bc7804f +2024-09-11 09:03:16.070399 2024-09-11 09:03:16.070406 aggnd 962498726 R rec a21ab20b-4a66-4ea9-9f85-4a6a98505cf5 +2024-09-11 09:03:16.144459 2024-09-11 09:03:16.144465 aggnd 962506168 R rec 447edba9-de2d-41ba-8b73-30ccd7dc1f4c +2024-09-11 09:03:16.212882 2024-09-11 09:03:16.212888 aggnd 96251716X R rec f48393e2-2190-4aed-a4de-909deb2b9480 +2024-09-11 09:03:16.283846 2024-09-11 09:03:16.283852 aggnd 96252736X R rec abca3726-be44-4c64-9bce-00c99777c0b3 +2024-09-11 09:03:16.355849 2024-09-11 09:03:16.355856 aggnd 962530328 R rec d7d6b0b1-2f1b-44a2-ab47-ef4d113bfa69 +2024-09-11 09:03:16.421986 2024-09-11 09:03:16.421993 aggnd 962533300 R rec 757e24ef-611b-4ec7-8a92-cd74b2f7fb45 +2024-09-11 09:03:16.480321 2024-09-11 09:03:16.480327 aggnd 962540196 R rec 0c663b98-1239-4d06-8ad8-575a22888663 +2024-09-11 09:03:16.539889 2024-09-11 09:03:16.539894 aggnd 962545295 R rec 01258a07-334c-44f5-82fd-0c304770fdd8 +2024-09-11 09:03:16.593989 2024-09-11 09:03:16.593994 aggnd 962552380 R rec 3f091dfb-4ffe-4f45-a739-76864b170949 +2024-09-11 09:03:16.652724 2024-09-11 09:03:16.65273 aggnd 962552569 R rec feff7ffa-25b6-460b-98f4-67ef6b05addc +2024-09-11 09:03:16.709954 2024-09-11 09:03:16.709958 aggnd 962557110 R rec e5dff892-5645-4777-b86e-821f46af3c84 +2024-09-11 09:03:16.766653 2024-09-11 09:03:16.76666 aggnd 962558931 R rec a535fa75-b889-45cc-83ab-091606f3d24c +2024-09-11 09:03:16.818872 2024-09-11 09:03:16.818878 aggnd 962559512 R rec 437b82ae-ba83-47c4-8b6a-3cbac9a5e586 +2024-09-11 09:03:16.873258 2024-09-11 09:03:16.873264 aggnd 962562688 R rec 7aa4d34d-5a37-423d-8f6b-5ee4cd601cb1 +2024-09-11 09:03:16.925119 2024-09-11 09:03:16.925125 aggnd 962582697 R rec e2e2afb9-1612-4b2b-8272-70dfcb80bc39 +2024-09-11 09:03:16.982452 2024-09-11 09:03:16.982458 aggnd 962587087 R rec 2319a5f6-8ea5-48ef-afd5-afc928a7cfdd +2024-09-11 09:03:17.038999 2024-09-11 09:03:17.039005 aggnd 962615838 R rec c339938e-0023-4a58-8ae3-10d7993ecc50 +2024-09-11 09:03:17.094297 2024-09-11 09:03:17.094302 aggnd 962626554 R rec 6f9052ff-258e-410c-a674-9a8a76257f8b +2024-09-11 09:03:17.147319 2024-09-11 09:03:17.147324 aggnd 96263025X R rec b9656014-f07a-4a81-ba01-095923983d74 +2024-09-11 09:03:17.19967 2024-09-11 09:03:17.199675 aggnd 962632058 R rec f12c985b-f428-41d5-b326-92868d048636 +2024-09-11 09:03:17.250936 2024-09-11 09:03:17.250942 aggnd 962637289 R rec 4f9360e6-3c15-4a78-a96e-046078ffda49 +2024-09-11 09:03:17.303708 2024-09-11 09:03:17.303715 aggnd 962660914 R rec 7db3f412-cb8f-4271-892c-15b409c9eb29 +2024-09-11 09:03:17.35611 2024-09-11 09:03:17.356116 aggnd 96266734X R rec 1a43d031-eed1-4b80-a6e8-eb21593fef18 +2024-09-11 09:03:17.411866 2024-09-11 09:03:17.411871 aggnd 962668389 R rec ee628f3c-1d97-40ee-9ac5-cd7952ab0129 +2024-09-11 09:03:17.479118 2024-09-11 09:03:17.479124 aggnd 962669881 R rec 4f859d93-0cca-4799-88f5-cdd722d15b7c +2024-09-11 09:03:17.542053 2024-09-11 09:03:17.542058 aggnd 962941042 R rec 36846d51-f870-4e9b-815a-f5fa6e598449 +2024-09-11 09:03:17.593926 2024-09-11 09:03:17.593931 aggnd 962948918 R rec 5ffa4f03-f2c3-4b66-84ef-ac110d8d017b +2024-09-11 09:03:17.654008 2024-09-11 09:03:17.654014 aggnd 96303409X R rec 6f821a80-a2d0-4109-9f9b-3ba4b640b0bb +2024-09-11 09:03:17.706212 2024-09-11 09:03:17.706217 aggnd 963066536 R rec 3b35f0c4-094b-42d8-95d5-d3b260ee50b6 +2024-09-11 09:03:17.760626 2024-09-11 09:03:17.760631 aggnd 963134205 R rec feb88bee-5154-4e83-908e-aa40faf27f8c +2024-09-11 09:03:17.814925 2024-09-11 09:03:17.814931 aggnd 963138812 R rec 390711be-256f-47b0-91ed-8a10ab6f689d +2024-09-11 09:03:17.866406 2024-09-11 09:03:17.866412 aggnd 963139460 R rec 09d2c03a-d56b-4038-a303-1766da057aea +2024-09-11 09:03:17.921955 2024-09-11 09:03:17.92196 aggnd 963225332 R rec 1e1f4a24-940b-4415-98e2-a970862d6ce0 +2024-09-11 09:03:17.978637 2024-09-11 09:03:17.978642 aggnd 963233599 R rec f8c8fc6e-9f42-4b38-9646-45cf2669c873 +2024-09-11 09:03:18.034617 2024-09-11 09:03:18.034624 aggnd 963261959 R rec 8eee68ef-cad6-462b-9e4f-ea4a4a099780 +2024-09-11 09:03:18.088734 2024-09-11 09:03:18.088739 aggnd 963262246 R rec 89224bcf-a664-47e4-8391-49d4b005edd5 +2024-09-11 09:03:18.139767 2024-09-11 09:03:18.139772 aggnd 963262513 R rec a66b652e-c611-48a5-ac05-8a264fca3027 +2024-09-11 09:03:18.193958 2024-09-11 09:03:18.193963 aggnd 963299433 R rec 1329ce6a-e983-4d22-b93f-cdf107fd7718 +2024-09-11 09:03:18.247686 2024-09-11 09:03:18.247691 aggnd 963317040 R rec 11cf513a-796e-45dc-ba4e-ea74b8d5a3f4 +2024-09-11 09:03:18.306609 2024-09-11 09:03:18.306614 aggnd 963320343 R rec d05f8123-1f08-4510-9b90-46d7bb76eaf5 +2024-09-11 09:03:18.360619 2024-09-11 09:03:18.360624 aggnd 963327666 R rec fcf9981b-3097-4795-944d-6b9fa07383b1 +2024-09-11 09:03:18.416997 2024-09-11 09:03:18.417002 aggnd 963329812 R rec 0d7eba52-3b49-47e2-89c5-28088e3ba255 +2024-09-11 09:03:18.469795 2024-09-11 09:03:18.4698 aggnd 963342177 R rec dc870069-4191-4d65-a4e4-1d8ce2e866dc +2024-09-11 09:03:18.522349 2024-09-11 09:03:18.522354 aggnd 963342231 R rec 26a83f4a-2e15-4039-b2ea-8ec1d6a3e362 +2024-09-11 09:03:18.576151 2024-09-11 09:03:18.576157 aggnd 963348442 R rec 92da2ff9-d3e2-4e32-a2d4-456c16fc777c +2024-09-11 09:03:18.629477 2024-09-11 09:03:18.629483 aggnd 963366785 R rec 1c329207-8e22-420b-aa1d-0384640509e0 +2024-09-11 09:03:18.685144 2024-09-11 09:03:18.685157 aggnd 963367781 R rec 8873f4b9-ae62-4980-bbf4-aef28deb9a4c +2024-09-11 09:03:18.737984 2024-09-11 09:03:18.73799 aggnd 963388673 R rec c517b03e-708b-4a87-87d6-23ba712becfa +2024-09-11 09:03:18.791467 2024-09-11 09:03:18.791472 aggnd 963410849 R rec 0195c775-dd4e-4c73-8219-87ae1a277b38 +2024-09-11 09:03:18.85645 2024-09-11 09:03:18.856455 aggnd 963529137 R rec 0d8a7c3d-b520-429f-9cfb-86647cea9986 +2024-09-11 09:03:18.909236 2024-09-11 09:03:18.909246 aggnd 963600346 R rec c04859a1-1733-42a4-91a8-4f93ffaea611 +2024-09-11 09:03:18.961342 2024-09-11 09:03:18.961348 aggnd 96365778X R rec e17a2b17-ee3c-4180-9fd8-a5894d5229b9 +2024-09-11 09:03:19.014986 2024-09-11 09:03:19.014992 aggnd 963822977 R rec 751ac2e8-9d7a-4608-865e-4d629367670b +2024-09-11 09:03:19.068611 2024-09-11 09:03:19.068617 aggnd 963823388 R rec c5b10f92-204f-4093-b9e3-74f235844048 +2024-09-11 09:03:19.120938 2024-09-11 09:03:19.120945 aggnd 963837532 R rec 5411ae8d-300b-4716-8b79-f836dc2f1bab +2024-09-11 09:03:19.175964 2024-09-11 09:03:19.175969 aggnd 963859803 R rec 1f75c64c-573c-4032-a9eb-aa00ac64c573 +2024-09-11 09:03:19.235553 2024-09-11 09:03:19.235558 aggnd 963859811 R rec 6ec9d869-d9f7-465b-83f7-d150b1c44f84 +2024-09-11 09:03:19.296799 2024-09-11 09:03:19.296805 aggnd 964213427 R rec ac66c60b-69e1-41fe-9b32-e96f8ef79f2c +2024-09-11 09:03:19.355782 2024-09-11 09:03:19.355788 aggnd 964214407 R rec 9a9fc0f0-6f8f-4910-8eed-565559710988 +2024-09-11 09:03:19.41804 2024-09-11 09:03:19.418045 aggnd 964225581 R rec edaabd15-7c82-4088-94ec-0fa8b72a177e +2024-09-11 09:03:19.477023 2024-09-11 09:03:19.477029 aggnd 964319020 R rec 7673e6da-a010-47f2-87b0-65eabb48f9b1 +2024-09-11 09:03:19.527976 2024-09-11 09:03:19.527982 aggnd 964322153 R rec 6356f4d2-b1e5-41c7-b45d-5c15d09a35a3 +2024-09-11 09:03:19.589023 2024-09-11 09:03:19.589029 aggnd 964379473 R rec c962cf25-0ea3-44aa-b5a6-e5383c7cc2b0 +2024-09-11 09:03:19.653483 2024-09-11 09:03:19.653488 aggnd 964421984 R rec a0739154-c403-4700-8516-557aa79f03b5 +2024-09-11 09:03:19.714573 2024-09-11 09:03:19.714578 aggnd 964495376 R rec c9b0d20a-bd5e-4641-8988-0608ffeb76a8 +2024-09-11 09:03:19.774266 2024-09-11 09:03:19.774272 aggnd 964501090 R rec 2037a248-60f7-4bd8-9140-e10bb34b157b +2024-09-11 09:03:19.829206 2024-09-11 09:03:19.829212 aggnd 964564491 R rec 30ade445-725d-454e-b287-689142e5a7e4 +2024-09-11 09:03:19.885935 2024-09-11 09:03:19.885941 aggnd 964647222 R rec a4ce9c2a-9a34-47ef-8778-b0f80d036d00 +2024-09-11 09:03:19.944991 2024-09-11 09:03:19.944996 aggnd 964653613 R rec 5c42eec4-fcd6-4267-93be-bb7dd105ac61 +2024-09-11 09:03:20.006333 2024-09-11 09:03:20.006338 aggnd 964715619 R rec c3a8cde1-bcbf-4018-bf4e-64cf0fbc0a31 +2024-09-11 09:03:20.063069 2024-09-11 09:03:20.063075 aggnd 964855380 R rec 379ce345-7755-4974-8fe9-8b66ec8c179b +2024-09-11 09:03:20.14868 2024-09-11 09:03:20.148685 aggnd 964861135 R rec 87bb492b-8ba2-4cc4-a01a-836fcd53197a +2024-09-11 09:03:20.206424 2024-09-11 09:03:20.206429 aggnd 96503545X R rec 950e37de-ac16-483c-9dd5-c3e2b615dbec +2024-09-11 09:03:20.267666 2024-09-11 09:03:20.267672 aggnd 965091961 R rec b3503b60-ebbc-43aa-aabc-5e75d502b4df +2024-09-11 09:03:20.335616 2024-09-11 09:03:20.335622 aggnd 965120449 R rec 4f6a280b-3423-4c51-9b7f-2f19904e81e4 +2024-09-11 09:03:20.403439 2024-09-11 09:03:20.403445 aggnd 965135217 R rec 6905934a-842d-4c7d-9efc-dca55cc62bd8 +2024-09-11 09:03:20.461689 2024-09-11 09:03:20.461694 aggnd 965175251 R rec 5cfa4c8d-0715-4b96-9621-0a352bd797e3 +2024-09-11 09:03:20.525371 2024-09-11 09:03:20.525376 aggnd 965321827 R rec d873cdeb-d9c3-45a5-9758-bc6f5f2b53e1 +2024-09-11 09:03:20.581401 2024-09-11 09:03:20.581406 aggnd 965330842 R rec 317d6534-d0f8-42c0-9102-003141232fb1 +2024-09-11 09:03:20.644436 2024-09-11 09:03:20.644442 aggnd 965868915 R rec dde1ac46-49bf-4937-afae-0498040eb46d +2024-09-11 09:03:20.711611 2024-09-11 09:03:20.711617 aggnd 966048636 R rec d5396c39-f98d-4fe4-ab07-f1db561b16f5 +2024-09-11 09:03:20.772211 2024-09-11 09:03:20.772216 aggnd 966525892 R rec 0d55698e-e564-4fb4-ac79-80c5f231b730 +2024-09-11 09:03:20.8341 2024-09-11 09:03:20.834106 aggnd 966552997 R rec e7db8495-a239-441b-bc06-4bb2b1e1af71 +2024-09-11 09:03:20.905935 2024-09-11 09:03:20.90594 aggnd 966574982 R rec a1b812c3-c30b-47f8-9ce7-f4daff48f7d1 +2024-09-11 09:03:20.96287 2024-09-11 09:03:20.962875 aggnd 967972817 R rec c0fd45e2-e8be-4660-a48c-d0cebe395676 +2024-09-11 09:03:21.02111 2024-09-11 09:03:21.021116 aggnd 968070191 R rec 8b8d047d-11f9-458b-bf42-e97f6f15eccf +2024-09-11 09:03:21.078726 2024-09-11 09:03:21.078731 aggnd 968095615 R rec e12a165c-ab6c-4364-97c0-c622548c9b00 +2024-09-11 09:03:21.14065 2024-09-11 09:03:21.140655 aggnd 968111521 R rec fc45d59c-6872-4393-ad84-ab1c2ac071c7 +2024-09-11 09:03:21.199845 2024-09-11 09:03:21.199851 aggnd 968131786 R rec 69c9313b-3aa5-49b8-84ce-2dfe6a770706 +2024-09-11 09:03:21.258839 2024-09-11 09:03:21.258845 aggnd 968149766 R rec dd6aa6b3-fbed-4197-87c2-1b092d0e396a +2024-09-11 09:03:21.376657 2024-09-11 09:03:21.376663 aggnd 96815252X R rec 068e8d7c-432e-4a78-969d-c60b610272fe +2024-09-11 09:03:21.442301 2024-09-11 09:03:21.442307 aggnd 968164811 R rec 5df08e3a-0f07-4169-9381-9fcad7bafd1e +2024-09-11 09:03:21.506769 2024-09-11 09:03:21.506774 aggnd 968168221 R rec 602e6082-fc94-4c4c-8808-1dd4d98806fd +2024-09-11 09:03:21.568519 2024-09-11 09:03:21.568525 aggnd 968179002 R rec b8bc326e-650a-448d-b89c-d57e5cc53e21 +2024-09-11 09:03:21.641775 2024-09-11 09:03:21.641781 aggnd 96818734X R rec d728ac88-359a-4870-81f1-0357fb0a8689 +2024-09-11 09:03:21.707516 2024-09-11 09:03:21.707522 aggnd 968195938 R rec aee8d2b9-1229-4ceb-a8a8-1e72b409689d +2024-09-11 09:03:21.775063 2024-09-11 09:03:21.775068 aggnd 968196349 R rec 2c7a383b-a5f6-4946-ab2e-5fe0e9a27d56 +2024-09-11 09:03:21.851263 2024-09-11 09:03:21.851269 aggnd 968265642 R rec b8b0053d-5196-4a9e-a8d8-5d07864e21d0 +2024-09-11 09:03:21.909624 2024-09-11 09:03:21.90963 aggnd 968285988 R rec f2d9863f-5749-49c5-91d5-7a24d1864e32 +2024-09-11 09:03:21.978276 2024-09-11 09:03:21.978281 aggnd 968290981 R rec a98134c2-002a-485c-9d96-227c13730a55 +2024-09-11 09:03:22.040976 2024-09-11 09:03:22.040981 aggnd 968305768 R rec 6c3600f1-36c9-433d-a82b-4bce01eed965 +2024-09-11 09:03:22.115414 2024-09-11 09:03:22.115418 aggnd 968777449 R rec ca590fc1-2553-4be1-a65c-79c4cbd5e6d4 +2024-09-11 09:03:22.190306 2024-09-11 09:03:22.190311 aggnd 968883982 R rec d1dfede5-1cb9-49fc-a954-79395deb5739 +2024-09-11 09:03:22.263113 2024-09-11 09:03:22.26312 aggnd 968989454 R rec ee8d5810-17de-48e9-be55-6b09b8f2a452 +2024-09-11 09:03:22.396757 2024-09-11 09:03:22.396763 aggnd 968989640 R rec 4c79863e-de24-4b6f-9468-1c80b74f25a6 +2024-09-11 09:03:22.464179 2024-09-11 09:03:22.464185 aggnd 969011911 R rec e0f4eb7b-15ec-4b64-b0dc-19ddae11198e +2024-09-11 09:03:22.523576 2024-09-11 09:03:22.523581 aggnd 969012055 R rec 6b0d4c57-bd3a-46c0-9a97-e12f8dcf5650 +2024-09-11 09:03:22.581327 2024-09-11 09:03:22.581332 aggnd 969012462 R rec 1945ab33-29dd-4433-83bb-2eb2f5146ae5 +2024-09-11 09:03:22.639059 2024-09-11 09:03:22.639065 aggnd 969026927 R rec 291e3d3c-330e-48eb-aaac-2a5877fdddf4 +2024-09-11 09:03:22.697364 2024-09-11 09:03:22.697369 aggnd 969033788 R rec 8cb1fc89-0212-4ed2-91f4-810906ab0b02 +2024-09-11 09:03:22.758404 2024-09-11 09:03:22.758409 aggnd 969045859 R rec c1d7abab-7491-48bf-838b-0159717194f1 +2024-09-11 09:03:22.835765 2024-09-11 09:03:22.835771 aggnd 969048009 R rec 92bf506f-755c-4c59-a88b-90382068a766 +2024-09-11 09:03:22.902131 2024-09-11 09:03:22.902137 aggnd 969051492 R rec 0df64d05-a765-4e28-9241-4afee465b836 +2024-09-11 09:03:22.970568 2024-09-11 09:03:22.970574 aggnd 969056370 R rec 99254ac6-f1bc-41a7-a687-8b8fd1974422 +2024-09-11 09:03:23.035223 2024-09-11 09:03:23.035227 aggnd 969521367 R rec de086682-4840-4501-8ce9-6a65887896fc +2024-09-11 09:03:23.096291 2024-09-11 09:03:23.096297 aggnd 969522304 R rec 0aa51536-63ce-4f34-9f53-644dd46d6001 +2024-09-11 09:03:23.160561 2024-09-11 09:03:23.160566 aggnd 96954135X R rec 1e88d5bf-8c8c-4c8f-a04e-ea3ec0520380 +2024-09-11 09:03:23.21859 2024-09-11 09:03:23.218596 aggnd 96954457X R rec 9b9ba25e-abc4-4d59-8ae6-125305e220ed +2024-09-11 09:03:23.282163 2024-09-11 09:03:23.282168 aggnd 969559933 R rec 23debd64-c95e-4c84-8156-a526ce7df844 +2024-09-11 09:03:23.347555 2024-09-11 09:03:23.347561 aggnd 96999463X R rec 806aab53-8c63-472a-ab0d-0e000331921b +2024-09-11 09:03:23.404334 2024-09-11 09:03:23.40434 aggnd 97001418X R rec 7a7f8d76-146b-4525-b80c-6619cc805156 +2024-09-11 09:03:23.462648 2024-09-11 09:03:23.462654 aggnd 970052987 R rec d7f73f6e-0bc5-491b-8525-a8c58d912181 +2024-09-11 09:03:23.532176 2024-09-11 09:03:23.532181 aggnd 970275323 R rec f92889bc-d521-4aab-b4ec-7fb6091b108f +2024-09-11 09:03:23.588199 2024-09-11 09:03:23.588205 aggnd 970287798 R rec fc0870b7-4489-4dd0-8d53-c5d7c3d188a0 +2024-09-11 09:03:23.647446 2024-09-11 09:03:23.647451 aggnd 970302339 R rec f8428ff5-c4e6-4fae-8be1-aa707ea87b98 +2024-09-11 09:03:23.706766 2024-09-11 09:03:23.706771 aggnd 97030482X R rec 1996facb-1b33-47d9-89fc-8ce8160fb884 +2024-09-11 09:03:23.766017 2024-09-11 09:03:23.766022 aggnd 970399340 R rec 3aac280d-3012-4a86-bfc8-ca2061531a40 +2024-09-11 09:03:23.82966 2024-09-11 09:03:23.829666 aggnd 970821794 R rec f64d4fa9-dc81-4cd1-b09a-e2c7a9eb49f3 +2024-09-11 09:03:23.897102 2024-09-11 09:03:23.897107 aggnd 971124272 R rec 6ced2c38-12f1-49fa-a2c1-7b1fea4e91aa +2024-09-11 09:03:23.960672 2024-09-11 09:03:23.960677 aggnd 971124728 R rec 8116a8a4-206e-488e-9841-fbf065ac23f3 +2024-09-11 09:03:24.033088 2024-09-11 09:03:24.033094 aggnd 971140162 R rec f189417d-f486-4132-9ff6-9d2b9c251036 +2024-09-11 09:03:24.091088 2024-09-11 09:03:24.091095 aggnd 971140642 R rec cd179374-77f6-4852-bd4e-aeee9299dcdb +2024-09-11 09:03:24.149136 2024-09-11 09:03:24.149142 aggnd 971146853 R rec a4900996-aa3e-4ee1-8a6c-6b72fcf6c29c +2024-09-11 09:03:24.206942 2024-09-11 09:03:24.206948 aggnd 971628246 R rec 8c693e09-93f6-4e60-b9b0-28d1b3bf8e10 +2024-09-11 09:03:24.264795 2024-09-11 09:03:24.2648 aggnd 971687315 R rec 5daa3b23-a863-4337-8b93-89f734093d09 +2024-09-11 09:03:24.32331 2024-09-11 09:03:24.323316 aggnd 971792496 R rec daf2f1f5-6657-46e4-873e-d9eee33d6d97 +2024-09-11 09:03:24.391626 2024-09-11 09:03:24.391631 aggnd 971798311 R rec 684f73f6-b39f-42a4-99b3-88e7058b7cc9 +2024-09-11 09:03:24.451005 2024-09-11 09:03:24.45101 aggnd 97198364X R rec 5aed2ca1-aba2-41fd-95ad-7de84559011e +2024-09-11 09:03:24.512427 2024-09-11 09:03:24.512432 aggnd 972482830 R rec ada9bf64-32cf-406f-a7bc-a8a96fe5f40a +2024-09-11 09:03:24.578424 2024-09-11 09:03:24.578429 aggnd 972926496 R rec cd9d2edf-a62b-4f95-b375-4daa6e625a77 +2024-09-11 09:03:24.64723 2024-09-11 09:03:24.647235 aggnd 972927743 R rec f77742cf-1c59-4175-82bc-0ea9119e87b6 +2024-09-11 09:03:24.706808 2024-09-11 09:03:24.706816 aggnd 972947191 R rec 12a7aa17-3041-4865-82bc-b9c8bcd860be +2024-09-11 09:03:24.76816 2024-09-11 09:03:24.768166 aggnd 972955372 R rec 000d9388-8910-4c82-8f9a-b8bcbb73ccce +2024-09-11 09:03:24.840507 2024-09-11 09:03:24.840513 aggnd 972969608 R rec 8a961cd0-f530-4a9a-92fd-530644a16397 +2024-09-11 09:03:24.90068 2024-09-11 09:03:24.900686 aggnd 972975128 R rec 8db56024-3980-4757-b3aa-f78c912d1756 +2024-09-11 09:03:24.9691 2024-09-11 09:03:24.969106 aggnd 972990437 R rec 90240742-af0f-4674-ac59-11b660bcbe3e +2024-09-11 09:03:25.040101 2024-09-11 09:03:25.040106 aggnd 973004010 R rec 498bdeb2-048c-42a5-91fd-bcb344a91f54 +2024-09-11 09:03:25.10102 2024-09-11 09:03:25.101025 aggnd 973016515 R rec f887a474-d390-40c4-b4ee-9d6594e826d5 +2024-09-11 09:03:25.162479 2024-09-11 09:03:25.162486 aggnd 973017856 R rec 1ff386df-ef79-40dd-b9a9-9f98b3e317ff +2024-09-11 09:03:25.233695 2024-09-11 09:03:25.233701 aggnd 973277645 R rec 432ac940-6889-45d8-b3d5-b096a1465349 +2024-09-11 09:03:25.321703 2024-09-11 09:03:25.321708 aggnd 97372076X R rec f8609c48-1e70-43f7-87ef-e3ba96d5a619 +2024-09-11 09:03:25.376921 2024-09-11 09:03:25.376926 aggnd 973728558 R rec 460045cf-fc02-43df-b6ab-20a6cc9fe4c3 +2024-09-11 09:03:25.437967 2024-09-11 09:03:25.437973 aggnd 973729619 R rec d05ea1be-c92f-40b0-b04b-b2c9531f5fa3 +2024-09-11 09:03:25.49621 2024-09-11 09:03:25.496215 aggnd 973743220 R rec 0eae2614-1d04-45dc-918a-e97d68529a51 +2024-09-11 09:03:25.553842 2024-09-11 09:03:25.553851 aggnd 973753544 R rec b2413661-404c-45d4-b618-22c89ae1cdac +2024-09-11 09:03:25.61232 2024-09-11 09:03:25.612325 aggnd 973763361 R rec e018d17c-30b7-4378-9a94-5d240769959d +2024-09-11 09:03:25.66924 2024-09-11 09:03:25.669245 aggnd 973769998 R rec 6671849f-26da-4d38-8bf9-ba409463e967 +2024-09-11 09:03:25.725406 2024-09-11 09:03:25.725412 aggnd 973778318 R rec 01334dfa-95f2-459d-a08d-abe7373ca6dc +2024-09-11 09:03:25.782669 2024-09-11 09:03:25.782675 aggnd 97378637X R rec e4fae8d7-0a50-457c-920d-61ef287e937c +2024-09-11 09:03:25.841712 2024-09-11 09:03:25.841718 aggnd 973790636 R rec 12903152-0010-4445-828f-9ded3f9d872f +2024-09-11 09:03:25.905672 2024-09-11 09:03:25.905679 aggnd 973818522 R rec 0816ea50-feb7-4f6c-b63a-27d8078bfb9b +2024-09-11 09:03:25.979503 2024-09-11 09:03:25.979508 aggnd 973819987 R rec 80a75baf-3670-49f5-a418-a9aa3603cd34 +2024-09-11 09:03:26.036697 2024-09-11 09:03:26.036702 aggnd 973828269 R rec 20a46b2e-5549-43a2-b1a1-b94e9ee938e6 +2024-09-11 09:03:26.095241 2024-09-11 09:03:26.095246 aggnd 973832231 R rec 2dd2ba44-eb3f-461e-b133-61ba420e4236 +2024-09-11 09:03:26.164804 2024-09-11 09:03:26.16481 aggnd 973847476 R rec e3424458-624b-47a1-9942-3f8679f8784a +2024-09-11 09:03:26.235421 2024-09-11 09:03:26.235426 aggnd 973854790 R rec 73d30739-9569-4b41-8c7b-452278081b6b +2024-09-11 09:03:26.289933 2024-09-11 09:03:26.289938 aggnd 973987278 R rec 5237b463-297d-4568-a3a5-624ea1f7ac12 +2024-09-11 09:03:26.347572 2024-09-11 09:03:26.347576 aggnd 973999527 R rec f19b8240-012d-4f6d-87dd-3a0310b957bc +2024-09-11 09:03:26.403882 2024-09-11 09:03:26.403887 aggnd 974085812 R rec 68988fc0-fae2-4e33-8144-81af7b66aa42 +2024-09-11 09:03:26.459794 2024-09-11 09:03:26.4598 aggnd 974127469 R rec 65d97777-dc80-46fd-b470-5af368f3dd7a +2024-09-11 09:03:26.516235 2024-09-11 09:03:26.51624 aggnd 974169722 R rec f2cecf0e-d3ca-4cc8-babe-30352e388b6e +2024-09-11 09:03:26.573496 2024-09-11 09:03:26.573502 aggnd 974334650 R rec b9c1addc-95cf-4e96-b104-0fa3f7b80bed +2024-09-11 09:03:26.633304 2024-09-11 09:03:26.633309 aggnd 974336076 R rec df84a6e2-8faa-440d-9a20-d17c87a10418 +2024-09-11 09:03:26.699036 2024-09-11 09:03:26.699042 aggnd 974346063 R rec dea94d19-7882-493d-87c8-c04bd9705abb +2024-09-11 09:03:26.757084 2024-09-11 09:03:26.757089 aggnd 974357685 R rec 924b2380-4452-4811-9efa-6ddd53b9db46 +2024-09-11 09:03:26.819434 2024-09-11 09:03:26.819438 aggnd 974385492 R rec a246c958-2609-412e-a257-b6b9f980afc9 +2024-09-11 09:03:26.878515 2024-09-11 09:03:26.87852 aggnd 974428345 R rec 1ef280c9-eea6-4964-8d42-6ccf22326d54 +2024-09-11 09:03:26.938969 2024-09-11 09:03:26.938974 aggnd 974489530 R rec 341f369c-595c-480b-85d3-3e1282a30e54 +2024-09-11 09:03:26.995561 2024-09-11 09:03:26.995566 aggnd 974648884 R rec dbeaef2d-74b5-4c9a-959f-403a8f07d26e +2024-09-11 09:03:27.053004 2024-09-11 09:03:27.05301 aggnd 974981990 R rec 6ad7fc10-c65d-435e-a9f9-1c5170b119cc +2024-09-11 09:03:27.112618 2024-09-11 09:03:27.112623 aggnd 975310844 R rec 63528c87-ac43-46cb-b894-c2fd0810219d +2024-09-11 09:03:27.17431 2024-09-11 09:03:27.174315 aggnd 975409239 R rec 02854530-dbc2-4bb3-8394-d210b841afd5 +2024-09-11 09:03:27.233029 2024-09-11 09:03:27.233034 aggnd 975409255 R rec 25bf270c-eb1a-4fbb-9744-9b316b2bc31d +2024-09-11 09:03:27.298136 2024-09-11 09:03:27.298141 aggnd 975411659 R rec 30805486-9499-4d6a-a461-b7d920101d33 +2024-09-11 09:03:27.372252 2024-09-11 09:03:27.372258 aggnd 97542890X R rec 73cb0eb7-9c3b-46b7-b816-5c4ff47e84a7 +2024-09-11 09:03:27.448838 2024-09-11 09:03:27.448843 aggnd 975483935 R rec 86b4fa25-3c99-47ba-b9a1-cb1d32ddc58d +2024-09-11 09:03:27.505919 2024-09-11 09:03:27.505925 aggnd 975497278 R rec 1826fdc1-a4f3-4978-b91d-88b67d0a7fd8 +2024-09-11 09:03:27.568689 2024-09-11 09:03:27.568694 aggnd 975537016 R rec 59ed1d45-37f4-4ac1-8a82-168069c953f7 +2024-09-11 09:03:27.640671 2024-09-11 09:03:27.640675 aggnd 975540289 R rec edfe1665-ba0b-410e-af1a-73ed38f56033 +2024-09-11 09:03:27.699738 2024-09-11 09:03:27.699744 aggnd 97554134X R rec b5a7821e-6cb8-4988-801d-7163acc8c9ce +2024-09-11 09:03:27.755441 2024-09-11 09:03:27.755446 aggnd 975543644 R rec d5f77ba4-1b98-40a9-b0e4-e18332a8ecde +2024-09-11 09:03:27.814318 2024-09-11 09:03:27.814324 aggnd 975561243 R rec cc74ca77-d641-41ad-acab-be8fb487bae3 +2024-09-11 09:03:27.87195 2024-09-11 09:03:27.871955 aggnd 975774719 R rec 041164e3-4b02-432e-a3d9-784580dd3257 +2024-09-11 09:03:27.927602 2024-09-11 09:03:27.927607 aggnd 975895346 R rec 154f883b-68bc-4866-b717-a25f2ab6a065 +2024-09-11 09:03:27.984459 2024-09-11 09:03:27.984465 aggnd 976006332 R rec 23ef263f-7363-4303-871e-99f4ecbbd2a7 +2024-09-11 09:03:28.045028 2024-09-11 09:03:28.045033 aggnd 976206323 R rec b1daa729-f88e-4bd8-8bda-8c5a159bb70a +2024-09-11 09:03:28.103592 2024-09-11 09:03:28.103597 aggnd 976264293 R rec 3267f54f-c3f7-4d5d-91cd-1e7b3785d7a8 +2024-09-11 09:03:28.158585 2024-09-11 09:03:28.158591 aggnd 976322293 R rec 4726acf6-6f17-4780-b989-807e45c7fbe2 +2024-09-11 09:03:28.216407 2024-09-11 09:03:28.216412 aggnd 976362473 R rec d362a21c-0fab-4fc3-9a07-832d9fc1d56c +2024-09-11 09:03:28.273194 2024-09-11 09:03:28.2732 aggnd 97638230X R rec 34e4b2d0-29b2-4304-b732-7dfcb118dc6e +2024-09-11 09:03:28.342999 2024-09-11 09:03:28.343005 aggnd 976430975 R rec 2f961700-686e-473c-8f85-ffea97c469e5 +2024-09-11 09:03:28.405228 2024-09-11 09:03:28.405234 aggnd 976606380 R rec 28ac1d5d-7afa-4a38-aabc-f1de8b5767b9 +2024-09-11 09:03:28.461785 2024-09-11 09:03:28.461789 aggnd 976645815 R rec 70702775-0e23-45ed-910b-d00618d1746a +2024-09-11 09:03:28.520429 2024-09-11 09:03:28.520434 aggnd 97664830X R rec 74c900a3-36a5-4277-a754-b2487a6e6b5d +2024-09-11 09:03:28.574812 2024-09-11 09:03:28.574818 aggnd 976660970 R rec 7d1d504a-32c3-4983-9caf-049324a4667f +2024-09-11 09:03:28.632423 2024-09-11 09:03:28.632428 aggnd 976760681 R rec 0d5cde0a-bec4-44f8-b01c-43ffa9aaf5cc +2024-09-11 09:03:28.687148 2024-09-11 09:03:28.687154 aggnd 976796694 R rec 490e371a-25c0-416c-bb77-e1c29cfd32ac +2024-09-11 09:03:28.74514 2024-09-11 09:03:28.745146 aggnd 976913445 R rec 92abb3dd-f467-48d2-bfe5-970ee268bbc3 +2024-09-11 09:03:28.810652 2024-09-11 09:03:28.810657 aggnd 97693681X R rec f343b9f1-8ec1-4b25-aadd-5b32c937dfc2 +2024-09-11 09:03:28.870393 2024-09-11 09:03:28.870399 aggnd 97694247X R rec 4479ef11-ff30-469f-b693-d5fce898596a +2024-09-11 09:03:28.926635 2024-09-11 09:03:28.926641 aggnd 977057763 R rec 8a1744d3-ebdd-4d2a-a69e-2f5bd6e4ed49 +2024-09-11 09:03:28.985943 2024-09-11 09:03:28.985948 aggnd 977094332 R rec e1527c9f-df26-49a2-bc39-9e9f4f364a6a +2024-09-11 09:03:29.044489 2024-09-11 09:03:29.044494 aggnd 977270866 R rec 3792d5d8-2dc2-4e02-9b1e-e6f33f389aa4 +2024-09-11 09:03:29.099647 2024-09-11 09:03:29.099652 aggnd 977320545 R rec 11becc66-31ad-4195-9009-b089293456de +2024-09-11 09:03:29.161269 2024-09-11 09:03:29.161275 aggnd 977327523 R rec a309c985-c985-41ed-bbc8-34665ea7e371 +2024-09-11 09:03:29.221779 2024-09-11 09:03:29.221784 aggnd 977330281 R rec cc188e64-206b-4319-817c-a8fb3d98f6e3 +2024-09-11 09:03:29.285672 2024-09-11 09:03:29.285678 aggnd 977508102 R rec 98d182fe-1fa5-40ae-83ec-866908c19456 +2024-09-11 09:03:29.344042 2024-09-11 09:03:29.344047 aggnd 977725022 R rec bb460404-61c1-4927-ad03-4600171a9518 +2024-09-11 09:03:29.402317 2024-09-11 09:03:29.402323 aggnd 977939359 R rec fdc9c5d6-5c89-441a-8052-d0c0036a67f5 +2024-09-11 09:03:29.463611 2024-09-11 09:03:29.463618 aggnd 977998827 R rec 32e9fd34-710c-4a75-b20c-c95784dc2796 +2024-09-11 09:03:29.527639 2024-09-11 09:03:29.527645 aggnd 978057414 R rec b0f7b1d4-abb3-482d-8346-9f12e193fd7b +2024-09-11 09:03:29.583605 2024-09-11 09:03:29.58361 aggnd 978237064 R rec fd58b633-521e-4c1d-9fcf-c3d294692470 +2024-09-11 09:03:29.641926 2024-09-11 09:03:29.641932 aggnd 97824723X R rec 659894cc-b3c9-4018-a799-846082046a9e +2024-09-11 09:03:29.701956 2024-09-11 09:03:29.701962 aggnd 978328582 R rec 1e8e53a4-8d7b-4d8f-a1c2-4d6b0a7c65df +2024-09-11 09:03:29.759401 2024-09-11 09:03:29.759406 aggnd 978329953 R rec e5c28831-818a-4bf1-9788-f0dacf0b6ccd +2024-09-11 09:03:29.831552 2024-09-11 09:03:29.831557 aggnd 978348168 R rec c9c7eb63-fdd0-49aa-bb4b-cd8f09d2d206 +2024-09-11 09:03:29.891645 2024-09-11 09:03:29.891651 aggnd 978367316 R rec 73895029-7d34-4869-9b5f-a4fd94c1db6e +2024-09-11 09:03:29.976396 2024-09-11 09:03:29.976402 aggnd 97845992X R rec 016b9dea-6690-45ce-ac60-0ac0bb7f2772 +2024-09-11 09:03:30.03847 2024-09-11 09:03:30.038475 aggnd 978499298 R rec c9055c9c-eb2a-4ffa-91c5-267a232b5f01 +2024-09-11 09:03:30.11782 2024-09-11 09:03:30.117826 aggnd 978581717 R rec 00dafe86-12ca-4606-8cd0-386fd1855c30 +2024-09-11 09:03:30.180819 2024-09-11 09:03:30.180824 aggnd 978978862 R rec b24fe39e-bf6b-4d0e-ab96-37f0d01f8355 +2024-09-11 09:03:30.250525 2024-09-11 09:03:30.25053 aggnd 978983149 R rec 9e43cbf4-5de4-4907-97fb-27c9c8fd2575 +2024-09-11 09:03:30.308989 2024-09-11 09:03:30.308995 aggnd 979116791 R rec a88c190b-8594-4c3e-b51e-a969ae55c7b5 +2024-09-11 09:03:30.36557 2024-09-11 09:03:30.365578 aggnd 979117453 R rec c7d9f301-4540-47bb-8020-fda14b07344d +2024-09-11 09:03:30.436385 2024-09-11 09:03:30.436391 aggnd 979150949 R rec edd910e8-f43b-4ca5-af6f-1f0e1fd6dcce +2024-09-11 09:03:30.52398 2024-09-11 09:03:30.523985 aggnd 979243440 R rec 659cd4ee-2b2b-4ea7-a2db-c12c251f2750 +2024-09-11 09:03:30.593969 2024-09-11 09:03:30.593975 aggnd 979248566 R rec 3fd40c10-0d55-4460-a5e4-874aec720bbd +2024-09-11 09:03:30.651948 2024-09-11 09:03:30.651953 aggnd 979300649 R rec 4f41e8fa-9254-4db3-96c1-fd5f22fc0102 +2024-09-11 09:03:30.708681 2024-09-11 09:03:30.708687 aggnd 97935272X R rec 2eb4ee19-a7eb-461a-8454-ab1f979bbc72 +2024-09-11 09:03:30.768029 2024-09-11 09:03:30.768035 aggnd 979530083 R rec 17631918-c539-4205-892e-094985686cf3 +2024-09-11 09:03:30.826018 2024-09-11 09:03:30.826023 aggnd 979571839 R rec 67e3569d-6dd7-4567-a9ee-570cf88f9cf9 +2024-09-11 09:03:30.896506 2024-09-11 09:03:30.896511 aggnd 979582407 R rec 99310141-680b-4d62-97dc-5fd97fc34704 +2024-09-11 09:03:30.960414 2024-09-11 09:03:30.960419 aggnd 979721474 R rec cd5d2cb5-ce6f-49e9-a17c-cb33826e169e +2024-09-11 09:03:31.020138 2024-09-11 09:03:31.020146 aggnd 979910978 R rec 32565484-91c2-4914-9fcc-40c375ecc580 +2024-09-11 09:03:31.076388 2024-09-11 09:03:31.076394 aggnd 980047277 R rec 2def1056-9a8e-4f04-ae46-60deb054b584 +2024-09-11 09:03:31.131988 2024-09-11 09:03:31.131993 aggnd 980202078 R rec d89e5759-ee59-47ad-802b-2ef3592d5f0c +2024-09-11 09:03:31.19018 2024-09-11 09:03:31.190185 aggnd 98022540X R rec d31c0e13-025d-44b6-83be-88a9f0c0fe9f +2024-09-11 09:03:31.2455 2024-09-11 09:03:31.245506 aggnd 980348749 R rec b014ba48-cd46-4d7b-9443-4136abca3695 +2024-09-11 09:03:31.301143 2024-09-11 09:03:31.301149 aggnd 980351189 R rec 880e8b2c-a6d6-41dd-9570-3eff3a5a3c7d +2024-09-11 09:03:31.359968 2024-09-11 09:03:31.359973 aggnd 980351952 R rec 3f7c9dfe-45ac-4930-866f-3bc209f317cd +2024-09-11 09:03:31.434796 2024-09-11 09:03:31.434801 aggnd 980433401 R rec 4dacec56-7210-4b08-a2ef-b4800fa22679 +2024-09-11 09:03:31.490418 2024-09-11 09:03:31.490423 aggnd 980446775 R rec 818c76bf-4180-47a2-aa07-3e2d3ed2aa7f +2024-09-11 09:03:31.550509 2024-09-11 09:03:31.550515 aggnd 980496705 R rec eeed0ce8-00f5-453c-b956-ad78eb56b446 +2024-09-11 09:03:31.608629 2024-09-11 09:03:31.608635 aggnd 980499607 R rec b36694ad-01c7-4fd9-8979-d02246c94574 +2024-09-11 09:03:31.667862 2024-09-11 09:03:31.667868 aggnd 980601851 R rec d3335221-d4b2-49e5-b821-54776859851c +2024-09-11 09:03:31.72615 2024-09-11 09:03:31.726155 aggnd 980793017 R rec 71017807-d4d1-4903-b4d3-a41a84c922ca +2024-09-11 09:03:31.785146 2024-09-11 09:03:31.785152 aggnd 981031390 R rec dfc62c96-8831-491b-9ffc-53347130d8be +2024-09-11 09:03:31.843176 2024-09-11 09:03:31.843182 aggnd 981339794 R rec 3e977ec1-ea64-4e5f-bba6-bf650f4476ae +2024-09-11 09:03:31.904145 2024-09-11 09:03:31.90415 aggnd 981426387 R rec b793cf69-e5aa-49b0-a8fa-c715720a18f9 +2024-09-11 09:03:31.958921 2024-09-11 09:03:31.958926 aggnd 981607705 R rec 76495e3f-20b5-4a90-9203-94f4a97b5fc0 +2024-09-11 09:03:32.037144 2024-09-11 09:03:32.03715 aggnd 981642551 R rec 47be3676-b680-48dd-8d59-5ce4743029ce +2024-09-11 09:03:32.09358 2024-09-11 09:03:32.093585 aggnd 981663753 R rec 7af202a3-91ac-41b7-9eb6-ed9713718772 +2024-09-11 09:03:32.154781 2024-09-11 09:03:32.154787 aggnd 981823866 R rec 1a4c6d92-e04f-4829-8bbb-c694e66bedf6 +2024-09-11 09:03:32.212225 2024-09-11 09:03:32.21223 aggnd 981883427 R rec 60380d4b-5e12-4ba6-a719-6edc481cca7a +2024-09-11 09:03:32.267224 2024-09-11 09:03:32.267229 aggnd 98195314X R rec dbaac732-84b8-481a-af4b-a98db8f7b186 +2024-09-11 09:03:32.323747 2024-09-11 09:03:32.323752 aggnd 981996833 R rec 5db806b5-89c7-41c9-8906-3ca5b95f0f02 +2024-09-11 09:03:32.378047 2024-09-11 09:03:32.378052 aggnd 98208823X R rec 40b0dc26-3a6a-46e8-8183-0d7739f0029b +2024-09-11 09:03:32.435528 2024-09-11 09:03:32.435534 aggnd 982492855 R rec 4afd425d-da5f-4c6b-a891-12e8762eafda +2024-09-11 09:03:32.49071 2024-09-11 09:03:32.490716 aggnd 982514050 R rec 5aad608e-47ba-459a-b7f0-2d47b6addfec +2024-09-11 09:03:32.553252 2024-09-11 09:03:32.553259 aggnd 982653166 R rec 67dccde8-cbd7-4ee6-8a6d-ab705fd40de3 +2024-09-11 09:03:32.613287 2024-09-11 09:03:32.613293 aggnd 982910592 R rec d314f7c5-1587-4236-b8ef-c02b7631e66f +2024-09-11 09:03:32.669083 2024-09-11 09:03:32.669089 aggnd 982913656 R rec a1ed7152-41fb-4951-a90d-a5f2fe174db2 +2024-09-11 09:03:32.724837 2024-09-11 09:03:32.724843 aggnd 982939477 R rec 3a37cf50-3f89-46be-b5de-a36e957d5868 +2024-09-11 09:03:32.784637 2024-09-11 09:03:32.784643 aggnd 982961308 R rec 34581c2c-9ff4-4f6c-8992-ca0a12fcfe81 +2024-09-11 09:03:32.860107 2024-09-11 09:03:32.860112 aggnd 982994818 R rec 431d78f8-5bad-4fcf-a5e6-7988c074ec63 +2024-09-11 09:03:32.930293 2024-09-11 09:03:32.930298 aggnd 983050538 R rec c1110667-47b7-4430-8581-7d9cb2a233f2 +2024-09-11 09:03:32.988591 2024-09-11 09:03:32.988598 aggnd 983491550 R rec 1f322b43-c618-4900-a23f-defc1159131a +2024-09-11 09:03:33.049354 2024-09-11 09:03:33.049358 aggnd 983615543 R rec 8c5202c0-0739-4783-b5e4-25f521f7d33b +2024-09-11 09:03:33.112175 2024-09-11 09:03:33.11218 aggnd 983662215 R rec 88e7eff1-afac-409e-84d5-fbcee0a2101e +2024-09-11 09:03:33.178428 2024-09-11 09:03:33.178433 aggnd 98379314X R rec 40c8517c-d75c-464d-b623-639ecfbec20e +2024-09-11 09:03:33.238146 2024-09-11 09:03:33.238152 aggnd 983910138 R rec e61c7ece-8b04-47d2-83eb-dade9e93ba69 +2024-09-11 09:03:33.294196 2024-09-11 09:03:33.294202 aggnd 984022686 R rec 5bc4df35-dbdf-47cb-9cfe-f06548ae3d1f +2024-09-11 09:03:33.35343 2024-09-11 09:03:33.353436 aggnd 984092862 R rec 173d69c2-922c-4e23-997e-f8877de7b6b1 +2024-09-11 09:03:33.412648 2024-09-11 09:03:33.412653 aggnd 984302190 R rec b0bf1d34-22c9-44b0-a740-629c56c990b7 +2024-09-11 09:03:33.473547 2024-09-11 09:03:33.473552 aggnd 984368728 R rec abc9e737-cd90-4dbb-96c3-28a8eddb9ffe +2024-09-11 09:03:33.543239 2024-09-11 09:03:33.543244 aggnd 984403922 R rec d8f589d7-e5ec-4c56-b811-b4e4a2123b2b +2024-09-11 09:03:33.635542 2024-09-11 09:03:33.635548 aggnd 984432779 R rec 63a5a2f7-4ee7-488e-be98-c953b5c6ab80 +2024-09-11 09:03:33.688012 2024-09-11 09:03:33.688017 aggnd 984443711 R rec eb3b92a8-c6a5-4109-a099-49c3d7d2a0e8 +2024-09-11 09:03:33.745237 2024-09-11 09:03:33.745242 aggnd 984455655 R rec 1685d420-22c1-4315-86ba-9b58bdee45cb +2024-09-11 09:03:33.798774 2024-09-11 09:03:33.79878 aggnd 984645454 R rec 46a283c2-5878-4eaf-815b-f29e5a04ee46 +2024-09-11 09:03:33.850259 2024-09-11 09:03:33.850264 aggnd 984649220 R rec 5d7f52cc-7ab3-433b-9487-d8b2310d7de1 +2024-09-11 09:03:33.908043 2024-09-11 09:03:33.908048 aggnd 984661956 R rec 71b20119-35ed-4294-901c-aaf27ef1ba48 +2024-09-11 09:03:33.960659 2024-09-11 09:03:33.960664 aggnd 984695303 R rec da413a75-1b2d-479e-9cee-6ab2eb7a950b +2024-09-11 09:03:34.015009 2024-09-11 09:03:34.015015 aggnd 984725180 R rec b878a867-ed02-4821-9254-6f483a561c6d +2024-09-11 09:03:34.075452 2024-09-11 09:03:34.075457 aggnd 98474309X R rec 24ed89fa-ce28-48ba-813d-023f2563690f +2024-09-11 09:03:34.131633 2024-09-11 09:03:34.131639 aggnd 984864059 R rec 00c2928b-d7c0-494c-8b95-8974b500348f +2024-09-11 09:03:34.191983 2024-09-11 09:03:34.191989 aggnd 984972498 R rec 8c433719-c573-4cb8-99a4-f0e0a194df02 +2024-09-11 09:03:34.244371 2024-09-11 09:03:34.244376 aggnd 98510421X R rec 7b910850-2052-4459-bd42-9d44c1134a4c +2024-09-11 09:03:34.300225 2024-09-11 09:03:34.300231 aggnd 985110783 R rec 4a817946-ccbb-4b0a-b42b-4fd89db31c21 +2024-09-11 09:03:34.356147 2024-09-11 09:03:34.356151 aggnd 985307358 R rec 2bebd0be-ea55-42f8-81a2-61517bf385fc +2024-09-11 09:03:34.407555 2024-09-11 09:03:34.40756 aggnd 985554134 R rec e313e5ca-e59a-4138-b5f8-0441f4d11782 +2024-09-11 09:03:34.460007 2024-09-11 09:03:34.460012 aggnd 985729414 R rec 965ca8d4-766b-483a-adad-64c144261998 +2024-09-11 09:03:34.510081 2024-09-11 09:03:34.510088 aggnd 985808721 R rec 74e2b313-3f6c-437c-a363-8fd9dd3571f8 +2024-09-11 09:03:34.566319 2024-09-11 09:03:34.566325 aggnd 985947179 R rec 3fc5dfb2-d473-4be5-a534-930eaa2b1481 +2024-09-11 09:03:34.628707 2024-09-11 09:03:34.628713 aggnd 986023647 R rec 987d48d8-0a38-4b69-b3f8-17713bbc9858 +2024-09-11 09:03:34.689577 2024-09-11 09:03:34.689583 aggnd 986065692 R rec d09a4cbd-2b08-4a2a-a68b-83bba16d46b4 +2024-09-11 09:03:34.748376 2024-09-11 09:03:34.748381 aggnd 986091332 R rec 2fba4d6a-b9bf-4540-b90e-f7bb16b4a265 +2024-09-11 09:03:34.811708 2024-09-11 09:03:34.811713 aggnd 986092274 R rec 16196bf2-0569-43c5-9b99-0622ad165be7 +2024-09-11 09:03:34.868623 2024-09-11 09:03:34.868629 aggnd 986429740 R rec 8ccfb7d8-51c9-43b0-b4dd-37fdeeb963bf +2024-09-11 09:03:34.922451 2024-09-11 09:03:34.922456 aggnd 986445649 R rec 37713533-1ab7-4984-88bd-5da07384b71a +2024-09-11 09:03:34.980032 2024-09-11 09:03:34.980037 aggnd 986571148 R rec ea41f63d-ad30-4006-9979-923174d26251 +2024-09-11 09:03:35.033214 2024-09-11 09:03:35.033219 aggnd 986759805 R rec 4102351f-1728-46b2-9051-1c34eeb7ac69 +2024-09-11 09:03:35.095347 2024-09-11 09:03:35.095353 aggnd 986792829 R rec 5d691fc9-046d-4e87-b85f-1ede700dacbf +2024-09-11 09:03:35.147716 2024-09-11 09:03:35.14772 aggnd 986836400 R rec 3b15c122-a587-4638-a9d7-bda15eeb0b6f +2024-09-11 09:03:35.205112 2024-09-11 09:03:35.205117 aggnd 98702115X R rec 05518852-e514-49eb-8401-83f18089a80a +2024-09-11 09:03:35.26595 2024-09-11 09:03:35.265955 aggnd 987073982 R rec 3a727168-0eaf-49e6-a23c-85727dd9d0e4 +2024-09-11 09:03:35.316443 2024-09-11 09:03:35.316448 aggnd 987392964 R rec 42861c9a-ae81-483e-bef8-f0e284e12f1d +2024-09-11 09:03:35.369987 2024-09-11 09:03:35.369993 aggnd 987450816 R rec 0df45f6f-652f-4198-b24b-88f1cc26de7b +2024-09-11 09:03:35.420993 2024-09-11 09:03:35.421 aggnd 987500465 R rec 0dacfaa4-36db-411b-b5b4-ce1d78aaa3f9 +2024-09-11 09:03:35.475058 2024-09-11 09:03:35.475064 aggnd 987545191 R rec 6ad95d3a-f350-458f-b376-dd310ee3be73 +2024-09-11 09:03:35.527402 2024-09-11 09:03:35.527407 aggnd 987612816 R rec a6b6078e-99f3-4fbe-857b-6356d949f0e2 +2024-09-11 09:03:35.580736 2024-09-11 09:03:35.58074 aggnd 987631365 R rec 58c0a893-4891-4133-aad8-62d05ea9d4f7 +2024-09-11 09:03:35.633323 2024-09-11 09:03:35.633328 aggnd 987875418 R rec cd871fe1-5cd5-41ad-a8d7-76b27ec69e3d +2024-09-11 09:03:35.686196 2024-09-11 09:03:35.686202 aggnd 987960148 R rec 14155ce5-b0d4-4f9a-9f92-1f784dd1e426 +2024-09-11 09:03:35.740809 2024-09-11 09:03:35.740814 aggnd 988152819 R rec cb821eee-656b-487c-9f2a-629883305cdd +2024-09-11 09:03:35.792144 2024-09-11 09:03:35.79215 aggnd 988280450 R rec ccaa37da-3f4b-40a6-8849-7f03d8233333 +2024-09-11 09:03:35.845906 2024-09-11 09:03:35.845911 aggnd 988400162 R rec be1e7c74-38d2-4b16-805e-5808a4869b5b +2024-09-11 09:03:35.90268 2024-09-11 09:03:35.902686 aggnd 988430940 R rec b53930d4-5177-43f6-aac8-73c2a150f24c +2024-09-11 09:03:35.954995 2024-09-11 09:03:35.955 aggnd 98843802X R rec 47db4411-9f10-408c-8d59-64f1df111510 +2024-09-11 09:03:36.009387 2024-09-11 09:03:36.009393 aggnd 988589125 R rec e1aeb1d5-5cc8-411c-a853-4800fe72d144 +2024-09-11 09:03:36.060996 2024-09-11 09:03:36.061001 aggnd 989064859 R rec e815bbd6-7ea5-4b30-86dd-4fe0a4d0fc6c +2024-09-11 09:03:36.113669 2024-09-11 09:03:36.113673 aggnd 989146731 R rec 039275ec-4f6d-4866-86e7-907eb0854c1e +2024-09-11 09:03:36.165462 2024-09-11 09:03:36.165468 aggnd 989224333 R rec 71486656-86bf-4437-9521-2de15ca9919b +2024-09-11 09:03:36.217987 2024-09-11 09:03:36.217992 aggnd 98940434X R rec 8a18a41c-3b4c-4c20-9824-88a606d2d282 +2024-09-11 09:03:36.278924 2024-09-11 09:03:36.278929 aggnd 989409015 R rec ba9b224a-15d6-4053-b599-11198f54ab3d +2024-09-11 09:03:36.339272 2024-09-11 09:03:36.339278 aggnd 989440583 R rec 55f4f2c7-bd0a-4617-8738-44a9902f0c58 +2024-09-11 09:03:36.394137 2024-09-11 09:03:36.394142 aggnd 989523926 R rec 60b0e5f3-2c65-4ce5-93b9-eed91530e58e +2024-09-11 09:03:36.45288 2024-09-11 09:03:36.452887 aggnd 989560279 R rec 22a2190a-3438-449b-9026-c0ae49dfe28e +2024-09-11 09:03:36.50959 2024-09-11 09:03:36.509597 aggnd 989655059 R rec 76bac198-353f-4442-be89-ee4a36b47e23 +2024-09-11 09:03:36.567386 2024-09-11 09:03:36.567392 aggnd 989690350 R rec 37a30a76-3a01-492b-8555-577b9a165513 +2024-09-11 09:03:36.620305 2024-09-11 09:03:36.620311 aggnd 989782115 R rec c692f3f4-f72e-4b7a-a545-3f90b8718d7b +2024-09-11 09:03:36.67637 2024-09-11 09:03:36.676375 aggnd 989838420 R rec 2fb74876-7b50-411b-8c4e-03720ee8d138 +2024-09-11 09:03:36.737141 2024-09-11 09:03:36.737146 aggnd 989943828 R rec 00483ba3-8db7-4ac4-add4-e1d398c4bf97 +2024-09-11 09:03:36.797598 2024-09-11 09:03:36.797638 aggnd 990095320 R rec 2e6573b6-4af8-4870-895a-adc2c3a59a4d +2024-09-11 09:03:36.866784 2024-09-11 09:03:36.86679 aggnd 990184269 R rec 49fa5f31-594a-497f-9b75-649237d8b95f +2024-09-11 09:03:36.928709 2024-09-11 09:03:36.928714 aggnd 990280616 R rec 1919e372-9e1a-4826-8117-9530bfd803c3 +2024-09-11 09:03:36.995235 2024-09-11 09:03:36.99524 aggnd 990285375 R rec 4f203c02-b6c7-4e3c-a48b-1d28a3368127 +2024-09-11 09:03:37.054499 2024-09-11 09:03:37.054507 aggnd 990285650 R rec d1f73f9b-a234-4e82-b177-5bdc2d959820 +2024-09-11 09:03:37.113663 2024-09-11 09:03:37.113669 aggnd 990303160 R rec 07a10ccc-3242-41cb-a22b-184d1cba315b +2024-09-11 09:03:37.174591 2024-09-11 09:03:37.174597 aggnd 990335763 R rec e432b6a2-5222-4238-8735-74261523cb93 +2024-09-11 09:03:37.235397 2024-09-11 09:03:37.235403 aggnd 990348059 R rec 2dfc176f-0740-44f2-ab27-3bb04ff93bc7 +2024-09-11 09:03:37.303595 2024-09-11 09:03:37.303601 aggnd 990387844 R rec 932e9252-cb2b-4262-892a-89f6c0ae5684 +2024-09-11 09:03:37.358204 2024-09-11 09:03:37.35821 aggnd 990398455 R rec fb4c5af0-3ae5-4553-ac6d-0919b41e3ac9 +2024-09-11 09:03:37.416566 2024-09-11 09:03:37.416571 aggnd 990407624 R rec 5b0eb495-4bb9-449c-9a9d-84e3108a6640 +2024-09-11 09:03:37.482531 2024-09-11 09:03:37.482536 aggnd 990531325 R rec 27d450c5-4aa2-4f79-bf9b-e1a835d30210 +2024-09-11 09:03:37.559774 2024-09-11 09:03:37.55978 aggnd 990665801 R rec e5a0c423-e2af-4df7-ad8f-0defc222d333 +2024-09-11 09:03:37.617833 2024-09-11 09:03:37.617839 aggnd 990683869 R rec 8e55238b-8875-4127-b6e6-de5b38b07ab4 +2024-09-11 09:03:37.678675 2024-09-11 09:03:37.67868 aggnd 990766160 R rec 82f79d80-cca7-4c98-9135-d0af8e5ec709 +2024-09-11 09:03:37.742516 2024-09-11 09:03:37.742521 aggnd 990827321 R rec 6a0fc077-182a-4e93-a661-5906bd90c3a6 +2024-09-11 09:03:37.815902 2024-09-11 09:03:37.815908 aggnd 990889203 R rec df491e5d-95a8-414c-880c-069562e2e59d +2024-09-11 09:03:37.893469 2024-09-11 09:03:37.893474 aggnd 99109087X R rec 5c2280b6-4fc2-4880-8902-bf7f97fdee89 +2024-09-11 09:03:37.956238 2024-09-11 09:03:37.956243 aggnd 991108337 R rec f55fffd0-cb89-4d18-bd11-07f49164b737 +2024-09-11 09:03:38.016954 2024-09-11 09:03:38.01696 aggnd 991145429 R rec 8c3a1f03-02c2-43b6-9673-3dc5fb708d3f +2024-09-11 09:03:38.08746 2024-09-11 09:03:38.087465 aggnd 991195000 R rec 565a4364-185c-4aba-86c1-f0d2057cff80 +2024-09-11 09:03:38.143026 2024-09-11 09:03:38.143031 aggnd 991211103 R rec 63938dd2-8264-4fa0-ba3b-d5d040467dc4 +2024-09-11 09:03:38.200999 2024-09-11 09:03:38.201005 aggnd 991510011 R rec 79faf3d5-2af8-4955-95c7-c90414edf2c2 +2024-09-11 09:03:38.260616 2024-09-11 09:03:38.260622 aggnd 991533445 R rec 7cf523ec-cd36-4bf8-8942-be872d0afa4b +2024-09-11 09:03:38.319795 2024-09-11 09:03:38.319802 aggnd 992031486 R rec 5614a842-e45b-48ed-af97-1b976a61b762 +2024-09-11 09:03:38.373368 2024-09-11 09:03:38.373373 aggnd 992385903 R rec b95b065f-d296-4775-9ad7-c54b3de56ceb +2024-09-11 09:03:38.428642 2024-09-11 09:03:38.428647 aggnd 992448972 R rec 4678dde4-66f1-4f1c-9511-9280a8edde62 +2024-09-11 09:03:38.48585 2024-09-11 09:03:38.485857 aggnd 992654173 R rec 08cd92ad-2be7-44bd-8cf3-2316b165f993 +2024-09-11 09:03:38.544073 2024-09-11 09:03:38.544078 aggnd 992787858 R rec b66b45b3-2296-459f-82de-8a4f850cf824 +2024-09-11 09:03:38.599103 2024-09-11 09:03:38.599107 aggnd 992788137 R rec 3a0fd78d-25f8-40b1-9e6d-8c0bd09b3e1c +2024-09-11 09:03:38.658004 2024-09-11 09:03:38.658009 aggnd 992810159 R rec 33c45400-d97f-4028-a244-40e86081ebd6 +2024-09-11 09:03:38.723602 2024-09-11 09:03:38.723607 aggnd 992947588 R rec d7e7afd7-57be-48eb-9343-338a8eb02f04 +2024-09-11 09:03:38.778018 2024-09-11 09:03:38.778023 aggnd 993072542 R rec e1e42f06-ac45-42b2-89c0-e09b1b8eaf56 +2024-09-11 09:03:38.83863 2024-09-11 09:03:38.838636 aggnd 993585043 R rec fe209905-02bc-49a7-8cd9-a8cb34449601 +2024-09-11 09:03:38.895264 2024-09-11 09:03:38.895269 aggnd 994152868 R rec 1421f971-097f-4208-a10f-458487d737ea +2024-09-11 09:03:38.961379 2024-09-11 09:03:38.961384 aggnd 994333080 R rec 074b202d-b10e-455d-b155-4b2fe064e395 +2024-09-11 09:03:39.030019 2024-09-11 09:03:39.030025 aggnd 994528647 R rec bc6b7a9a-5fc8-48c2-8d64-5bc69e3efdb1 +2024-09-11 09:03:39.08911 2024-09-11 09:03:39.089114 aggnd 994603320 R rec 42949ac8-2f55-4c2f-9e19-b12d5aa02d32 +2024-09-11 09:03:39.145206 2024-09-11 09:03:39.145212 aggnd 994861915 R rec e115c541-e27b-4c86-a123-a2bba055b3ea +2024-09-11 09:03:39.20355 2024-09-11 09:03:39.203555 aggnd 994895232 R rec 432f37c4-31be-414e-801d-59503b7f6bde +2024-09-11 09:03:39.267242 2024-09-11 09:03:39.267248 aggnd 995009384 R rec 41e5b63f-d983-442d-9a8a-16ac46c47e96 +2024-09-11 09:03:39.338741 2024-09-11 09:03:39.338746 aggnd 995549060 R rec 6671e1c6-e11b-4b08-8786-5d8a3c2aff1f +2024-09-11 09:03:39.397158 2024-09-11 09:03:39.397164 aggnd 995590958 R rec 8bf4ee06-d13e-49de-bd6c-7c31ef219d40 +2024-09-11 09:03:39.45558 2024-09-11 09:03:39.455585 aggnd 995597928 R rec ab5c5da8-fe4c-4ab8-9764-06460db7e26e +2024-09-11 09:03:39.514931 2024-09-11 09:03:39.514936 aggnd 995606250 R rec 2ba618be-2792-473a-90b9-4eadd4cc2eb0 +2024-09-11 09:03:39.571294 2024-09-11 09:03:39.571299 aggnd 995661391 R rec 9ba98d5f-5e73-4494-bb75-f92e58e7d411 +2024-09-11 09:03:39.633433 2024-09-11 09:03:39.633438 aggnd 996104801 R rec 36ca73c5-b301-49f7-9685-12415f35fb82 +2024-09-11 09:03:39.702166 2024-09-11 09:03:39.702172 aggnd 996109269 R rec cb56b4c3-72a7-4a9f-847e-dc74bc6af5ae +2024-09-11 09:03:39.761197 2024-09-11 09:03:39.761202 aggnd 996113045 R rec 0611b9d3-37b4-4468-8d64-488b3b57d312 +2024-09-11 09:03:39.818139 2024-09-11 09:03:39.818145 aggnd 996118780 R rec 40657ac9-7f8f-4d40-9d28-d082a92d07ca +2024-09-11 09:03:39.875713 2024-09-11 09:03:39.875718 aggnd 996123768 R rec 19181555-0ad4-4700-bce8-10989be62bcc +2024-09-11 09:03:39.947251 2024-09-11 09:03:39.947256 aggnd 996129952 R rec 81d31ed9-da6b-441a-9e2a-f56cca031881 +2024-09-11 09:03:40.015386 2024-09-11 09:03:40.015391 aggnd 996134492 R rec 2ea15570-2113-43bb-bfb7-eadba2384dc7 +2024-09-11 09:03:40.075356 2024-09-11 09:03:40.075361 aggnd 996142762 R rec 10e6ab2a-f81a-40d9-be0c-bf1292dfb7cd +2024-09-11 09:03:40.132288 2024-09-11 09:03:40.132294 aggnd 996150994 R rec c1242fca-a1f9-49f1-abaf-40eba30be7da +2024-09-11 09:03:40.19669 2024-09-11 09:03:40.196696 aggnd 996151265 R rec eebbe96b-e5a8-41eb-9198-508195d7d862 +2024-09-11 09:03:40.252318 2024-09-11 09:03:40.252325 aggnd 996312811 R rec eba24bf2-dfa2-4e79-b307-e1615936d698 +2024-09-11 09:03:40.311459 2024-09-11 09:03:40.311464 aggnd 996312919 R rec 4f1734bc-9e29-4d22-bf54-e75d9139df0b +2024-09-11 09:03:40.368999 2024-09-11 09:03:40.369004 aggnd 996322809 R rec 0cf01a23-7093-4cf4-a3d0-4e1392f2eb00 +2024-09-11 09:03:40.436459 2024-09-11 09:03:40.436464 aggnd 996334920 R rec 976d49ab-670d-401f-90a8-a648fa604206 +2024-09-11 09:03:40.523088 2024-09-11 09:03:40.523093 aggnd 996335323 R rec 52b50f4c-a87a-4b64-81cf-404df46caa9e +2024-09-11 09:03:40.589321 2024-09-11 09:03:40.589329 aggnd 996335846 R rec 35b86139-291e-447f-8919-3c596cb3bca7 +2024-09-11 09:03:40.649593 2024-09-11 09:03:40.649598 aggnd 996336109 R rec a19f60ff-353c-4c1e-9e93-db9f00523899 +2024-09-11 09:03:40.709115 2024-09-11 09:03:40.70912 aggnd 996346562 R rec 158a4d30-12c5-4dd5-812c-3d2575ff6729 +2024-09-11 09:03:40.764398 2024-09-11 09:03:40.764404 aggnd 996348980 R rec 5282269a-9ee8-4a67-8a3e-5df681c04dd2 +2024-09-11 09:03:40.821223 2024-09-11 09:03:40.821229 aggnd 996450793 R rec d4d8b1a9-f743-44e2-867f-991ab5696010 +2024-09-11 09:03:40.876478 2024-09-11 09:03:40.876484 aggnd 996450904 R rec 7c181ccb-c51f-400a-8b59-7d99cb2045ed +2024-09-11 09:03:40.935638 2024-09-11 09:03:40.935644 aggnd 996455116 R rec bbce6249-c74e-42c2-a66e-6fbfb9f8e309 +2024-09-11 09:03:40.993638 2024-09-11 09:03:40.993644 aggnd 996459715 R rec 12de17ae-7a55-4a01-a7fd-c4b691620051 +2024-09-11 09:03:41.064787 2024-09-11 09:03:41.064792 aggnd 996459855 R rec 8d5bd51d-5d8e-47a9-aced-7010e804978a +2024-09-11 09:03:41.129955 2024-09-11 09:03:41.12996 aggnd 996464190 R rec 05440824-8cbf-47d6-bdb5-095e1b070678 +2024-09-11 09:03:41.189548 2024-09-11 09:03:41.189555 aggnd 996469915 R rec 85ef30bb-b953-42ba-9510-4fe9201238ad +2024-09-11 09:03:41.263831 2024-09-11 09:03:41.263837 aggnd 996474080 R rec ac94ad4d-d598-491d-87de-db2551879274 +2024-09-11 09:03:41.318729 2024-09-11 09:03:41.318734 aggnd 996484280 R rec 468dd060-ede4-4fcb-9915-b0d9492d24c4 +2024-09-11 09:03:41.378328 2024-09-11 09:03:41.378333 aggnd 996494138 R rec 229a2484-2eb0-420a-bcf3-b92410d13d9b +2024-09-11 09:03:41.446808 2024-09-11 09:03:41.446813 aggnd 996595066 R rec 2beb689a-ddfb-4f10-aa65-3c7315157c89 +2024-09-11 09:03:41.50859 2024-09-11 09:03:41.508596 aggnd 996755519 R rec 10821ef7-bc4a-4925-8f51-c0e35d21e52f +2024-09-11 09:03:41.574424 2024-09-11 09:03:41.574429 aggnd 996765980 R rec 8b9434b5-9853-414f-a66e-e19360b211dc +2024-09-11 09:03:41.637621 2024-09-11 09:03:41.637626 aggnd 996797343 R rec 5558936c-0428-4074-90cc-a59bfe57cfd4 +2024-09-11 09:03:41.699585 2024-09-11 09:03:41.699591 aggnd 996885226 R rec b4dbea6a-993a-414f-831e-717645a936db +2024-09-11 09:03:41.757395 2024-09-11 09:03:41.7574 aggnd 996895701 R rec 6d1d18f2-9407-43c7-bfd0-ee09bf9082bd +2024-09-11 09:03:41.812667 2024-09-11 09:03:41.812672 aggnd 996895876 R rec c33f6190-0be3-446b-8eaa-37e5d5a1c8b0 +2024-09-11 09:03:41.866258 2024-09-11 09:03:41.866262 aggnd 996901248 R rec d7af6c63-99f4-4753-bf43-ec8d976df000 +2024-09-11 09:03:41.92473 2024-09-11 09:03:41.924735 aggnd 997040386 R rec 7f427033-effd-4514-89e2-5dea277b97c2 +2024-09-11 09:03:42.002064 2024-09-11 09:03:42.002071 aggnd 997187581 R rec 5aa27bf9-71e6-4590-b399-0e21699dc7c9 +2024-09-11 09:03:42.078373 2024-09-11 09:03:42.078378 aggnd 997192240 R rec 23aff00e-6d05-48a3-8945-f8205a018d9c +2024-09-11 09:03:42.145878 2024-09-11 09:03:42.145884 aggnd 997206845 R rec 0f76452a-20f4-48ec-9c3e-1063fecf9297 +2024-09-11 09:03:42.204455 2024-09-11 09:03:42.20446 aggnd 997478748 R rec 1462941e-feb7-48b6-8002-40c202639e5f +2024-09-11 09:03:42.261056 2024-09-11 09:03:42.261062 aggnd 99770392X R rec 1e947b4e-9bbf-405b-bd35-6ead6e87d646 +2024-09-11 09:03:42.334976 2024-09-11 09:03:42.334982 aggnd 997809213 R rec d036c524-247f-448c-b86a-d48a24a1c6ee +2024-09-11 09:03:42.40539 2024-09-11 09:03:42.405395 aggnd 99781926X R rec b39921e7-e392-4b8f-a889-be0a17daa91e +2024-09-11 09:03:42.465906 2024-09-11 09:03:42.465911 aggnd 997997117 R rec 0566e4a7-6c23-4429-a13b-20cfc86e8a17 +2024-09-11 09:03:42.524383 2024-09-11 09:03:42.524387 aggnd 997998881 R rec 0798ad22-20b9-44c8-9d42-52ebd10537cc +2024-09-11 09:03:42.593011 2024-09-11 09:03:42.593017 aggnd 998032514 R rec dc941396-fc5f-4e62-b3a5-57730c485b90 +2024-09-11 09:03:42.6501 2024-09-11 09:03:42.650105 aggnd 998115606 R rec b5078ace-8226-4e1f-bfd3-34f4e8d9d506 +2024-09-11 09:03:42.715947 2024-09-11 09:03:42.715952 aggnd 998143278 R rec b4689691-5a25-48cc-be61-2cbdfcac1487 +2024-09-11 09:03:42.784882 2024-09-11 09:03:42.784887 aggnd 998153915 R rec fc3e1f22-bcc6-4320-a97b-51d5006a5ab3 +2024-09-11 09:03:42.845714 2024-09-11 09:03:42.84572 aggnd 998167037 R rec 55f82f8c-62a1-4043-af76-9efc742411b0 +2024-09-11 09:03:42.900452 2024-09-11 09:03:42.900458 aggnd 998173983 R rec e9266751-f9db-4cdc-b942-4efb09277df3 +2024-09-11 09:03:42.954887 2024-09-11 09:03:42.954892 aggnd 998174807 R rec 1ea57efe-9356-405f-8295-f0b61f936ab2 +2024-09-11 09:03:43.013609 2024-09-11 09:03:43.013614 aggnd 998198137 R rec 46a35b94-e323-4573-8666-9dfe770a1867 +2024-09-11 09:03:43.069956 2024-09-11 09:03:43.069961 aggnd 998198323 R rec 09378512-f37d-434b-9c6c-44a165b183c2 +2024-09-11 09:03:43.130861 2024-09-11 09:03:43.130866 aggnd 998216801 R rec 68876565-fbff-4d49-be6b-a3ddb6623156 +2024-09-11 09:03:43.190617 2024-09-11 09:03:43.190623 aggnd 99821731X R rec 4a7b0feb-def7-492b-ae58-a9f33c74bc99 +2024-09-11 09:03:43.245527 2024-09-11 09:03:43.245532 aggnd 998245127 R rec 5b50cc94-ec9e-42b7-b7fc-96ba6bd19877 +2024-09-11 09:03:43.298656 2024-09-11 09:03:43.298662 aggnd 998245518 R rec 01768f84-ccb6-4e7a-9361-ac6a0c1f19ab +2024-09-11 09:03:43.354659 2024-09-11 09:03:43.354664 aggnd 998251313 R rec 0e4b9edd-d432-45fb-a1f3-88c5dc77e0d8 +2024-09-11 09:03:43.409649 2024-09-11 09:03:43.409654 aggnd 998278815 R rec 5abc0b5d-f4a9-4e2a-a375-17ea35b39991 +2024-09-11 09:03:43.478507 2024-09-11 09:03:43.478514 aggnd 998292125 R rec bd935d92-20db-41ff-b7f5-ca7981aa9a1c +2024-09-11 09:03:43.54859 2024-09-11 09:03:43.548595 aggnd 998331163 R rec 4c41aac3-d180-4373-9098-8050d5f041db +2024-09-11 09:03:43.606624 2024-09-11 09:03:43.60663 aggnd 998858234 R rec 2a7d23e0-142f-482c-ac26-c7fe8d19f51c +2024-09-11 09:03:43.663107 2024-09-11 09:03:43.663113 aggnd 998904635 R rec e8b6d7d2-81c9-492f-b187-f32d22a40062 +2024-09-11 09:03:43.729939 2024-09-11 09:03:43.729943 aggnd 999064185 R rec ae41f346-8540-4c26-b477-bbca378d6549 +2024-09-11 09:03:43.787423 2024-09-11 09:03:43.787429 aggnd 999203592 R rec adea276a-f63a-40a6-8cd4-37afae13909b +2024-09-11 09:03:43.84795 2024-09-11 09:03:43.847955 aggnd 999527061 R rec 3fe69bca-cb64-410b-88a4-7097c1499561 +2024-09-11 09:03:43.915557 2024-09-11 09:03:43.915563 aggnd 999533908 R rec 16277366-b7db-4a84-ad66-898815c12b96 +2024-09-11 09:03:43.985042 2024-09-11 09:03:43.985048 aggnd 999541161 R rec f3e28383-afa2-47c1-8ac4-4a3cac02221c +2024-09-11 09:03:44.04534 2024-09-11 09:03:44.045345 aggnd 999549847 R rec 2e01aed5-08f1-4a4d-9ae5-9591f71b9800 +2024-09-11 09:03:44.156934 2024-09-11 09:03:44.156939 aggnd 999646869 R rec 44f4f084-ee3f-4857-b600-9b9325ffc765 +2024-09-11 09:03:44.213037 2024-09-11 09:03:44.213043 aggnd 999780859 R rec 09333a4f-5545-41de-b93e-5400f9919152 +2024-09-11 09:03:44.269783 2024-09-11 09:03:44.269789 aggnd 999853155 R rec c7a0f3bc-f0c1-4ee7-9f84-4b92332dbf10 +2024-09-11 09:03:44.326642 2024-09-11 09:03:44.326647 aggnd 999862243 R rec 6f04a1f5-6b85-40bf-9f58-e54d4853fcb5 +2024-09-11 09:03:44.380961 2024-09-11 09:03:44.380966 aggnd 999871633 R rec 0b8803af-89d7-44ae-b545-25f491ae2dbd +2024-09-11 09:03:44.436981 2024-09-11 09:03:44.436987 aggnd 999921770 R rec 47290af3-3a43-4612-9b87-297fb2f22ec7 +2024-09-11 09:03:44.492158 2024-09-11 09:03:44.492163 aggnd 999991361 R rec 55e5bbc7-eefd-4596-b53f-aacddb779f5a diff --git a/data/agrero.json b/data/agrero.json index 46db2db1..72b2c2e9 100644 --- a/data/agrero.json +++ b/data/agrero.json @@ -4,7 +4,6 @@ "pid": "A000003203", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000003203", "identifiedBy": [ { "type": "uri", @@ -25,7 +24,6 @@ "pid": "A000010540", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000010540", "identifiedBy": [ { "type": "uri", @@ -49,7 +47,6 @@ "pid": "A000011132", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000011132", "identifiedBy": [ { "type": "uri", @@ -71,7 +68,6 @@ "pid": "A000012165", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000012165", "identifiedBy": [ { "type": "uri", @@ -93,7 +89,6 @@ "pid": "A000014216", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000014216", "identifiedBy": [ { "type": "uri", @@ -117,7 +112,6 @@ "pid": "A000014650", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000014650", "identifiedBy": [ { "type": "uri", @@ -138,7 +132,6 @@ "md5": "98cf2395590fabfc1e91c668501e2edf", "pid": "A000016955", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A000016955", "identifiedBy": [ { "type": "uri", @@ -160,7 +153,6 @@ "pid": "A000018483", "type": "bf:Person", "qualifier": "d'Anoia", - "identifier": "http://data.rero.ch/02-A000018483", "identifiedBy": [ { "type": "uri", @@ -182,7 +174,6 @@ "pid": "A000018719", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000018719", "identifiedBy": [ { "type": "uri", @@ -203,7 +194,6 @@ "md5": "a3233024dbee4f8094b9db969b0202c0", "pid": "A000022042", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A000022042", "identifiedBy": [ { "type": "uri", @@ -228,7 +218,6 @@ "pid": "A000023938", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000023938", "identifiedBy": [ { "type": "uri", @@ -250,7 +239,6 @@ "pid": "A000026444", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000026444", "identifiedBy": [ { "type": "uri", @@ -272,7 +260,6 @@ "pid": "A000031507", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000031507", "identifiedBy": [ { "type": "uri", @@ -294,7 +281,6 @@ "pid": "A000032185", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000032185", "identifiedBy": [ { "type": "uri", @@ -322,7 +308,6 @@ "pid": "A000033498", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000033498", "identifiedBy": [ { "type": "uri", @@ -343,7 +328,6 @@ "md5": "574cf374fab1ce030b214cc3883af107", "pid": "A000035884", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A000035884", "identifiedBy": [ { "type": "uri", @@ -365,7 +349,6 @@ "pid": "A000041054", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000041054", "identifiedBy": [ { "type": "uri", @@ -387,7 +370,6 @@ "pid": "A000042792", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000042792", "identifiedBy": [ { "type": "uri", @@ -411,7 +393,6 @@ "pid": "A000045285", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000045285", "identifiedBy": [ { "type": "uri", @@ -434,7 +415,6 @@ "md5": "a346b3909f02f68a0bbc9ba3ba3946a5", "pid": "A000047084", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A000047084", "identifiedBy": [ { "type": "uri", @@ -455,7 +435,6 @@ "md5": "9110378bbcc07db439aa7023daf8c629", "pid": "A000047788", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A000047788", "identifiedBy": [ { "type": "uri", @@ -477,7 +456,6 @@ "pid": "A000062707", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000062707", "identifiedBy": [ { "type": "uri", @@ -507,7 +485,6 @@ "pid": "A000063670", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000063670", "identifiedBy": [ { "type": "uri", @@ -531,7 +508,6 @@ "pid": "A000068070", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000068070", "identifiedBy": [ { "type": "uri", @@ -552,7 +528,6 @@ "md5": "c9eab3ca3f1e24857c7c2d9c1ab69b21", "pid": "A000069516", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A000069516", "identifiedBy": [ { "type": "uri", @@ -579,7 +554,6 @@ "pid": "A000074210", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000074210", "identifiedBy": [ { "type": "uri", @@ -603,7 +577,6 @@ "pid": "A000075082", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000075082", "identifiedBy": [ { "type": "uri", @@ -625,7 +598,6 @@ "pid": "A000075825", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000075825", "identifiedBy": [ { "type": "uri", @@ -657,7 +629,6 @@ "pid": "A000078192", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000078192", "identifiedBy": [ { "type": "uri", @@ -680,7 +651,6 @@ "md5": "881555e0e0e30f90b0755f9019fd7065", "pid": "A000082809", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A000082809", "identifiedBy": [ { "type": "uri", @@ -711,7 +681,6 @@ "pid": "A000085441", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000085441", "identifiedBy": [ { "type": "uri", @@ -733,7 +702,6 @@ "pid": "A000085746", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000085746", "identifiedBy": [ { "type": "uri", @@ -755,7 +723,6 @@ "pid": "A000087771", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000087771", "identifiedBy": [ { "type": "uri", @@ -779,7 +746,6 @@ "pid": "A000091274", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000091274", "identifiedBy": [ { "type": "uri", @@ -801,7 +767,6 @@ "pid": "A000092501", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000092501", "identifiedBy": [ { "type": "uri", @@ -824,7 +789,6 @@ "md5": "1018bf1c658d58c1ecc0942a71f5704f", "pid": "A000099346", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A000099346", "identifiedBy": [ { "type": "uri", @@ -845,7 +809,6 @@ "md5": "d26f3129a6ce8f9e7039bc76c1b5dea2", "pid": "A000100584", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A000100584", "identifiedBy": [ { "type": "uri", @@ -868,7 +831,6 @@ "md5": "86ea4727a26894716e81d4246b672214", "pid": "A000102121", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A000102121", "identifiedBy": [ { "type": "uri", @@ -889,7 +851,6 @@ "md5": "ac2be6cce50c3a499993ac9e1b64ce09", "pid": "A000103142", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A000103142", "identifiedBy": [ { "type": "uri", @@ -910,7 +871,6 @@ "md5": "f79af4f6adaa997d4b7c032b65ef847f", "pid": "A000104694", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A000104694", "identifiedBy": [ { "type": "uri", @@ -931,7 +891,6 @@ "md5": "075273ad86016201c18201bd6383730f", "pid": "A000107290", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A000107290", "identifiedBy": [ { "type": "uri", @@ -958,7 +917,6 @@ "md5": "dfbcba1c0e12838925e343953d0dcc15", "pid": "A000108532", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A000108532", "identifiedBy": [ { "type": "uri", @@ -979,7 +937,6 @@ "md5": "9204fae2e3e25f1f8f2f397b1a9b5ef1", "pid": "A000108719", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A000108719", "identifiedBy": [ { "type": "uri", @@ -1001,7 +958,6 @@ "pid": "A000110353", "type": "bf:Person", "qualifier": "Evangelista", - "identifier": "http://data.rero.ch/02-A000110353", "identifiedBy": [ { "type": "uri", @@ -1023,7 +979,6 @@ "pid": "A000119730", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000119730", "identifiedBy": [ { "type": "uri", @@ -1045,7 +1000,6 @@ "pid": "A000120627", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000120627", "identifiedBy": [ { "type": "uri", @@ -1069,7 +1023,6 @@ "pid": "A000124969", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000124969", "identifiedBy": [ { "type": "uri", @@ -1093,7 +1046,6 @@ "pid": "A000132150", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000132150", "identifiedBy": [ { "type": "uri", @@ -1115,7 +1067,6 @@ "pid": "A000135302", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000135302", "identifiedBy": [ { "type": "uri", @@ -1137,7 +1088,6 @@ "pid": "A000136441", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000136441", "identifiedBy": [ { "type": "uri", @@ -1158,7 +1108,6 @@ "md5": "f2b425db33a73eed15aa3174a2293cbf", "pid": "A000142799", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A000142799", "identifiedBy": [ { "type": "uri", @@ -1179,7 +1128,6 @@ "md5": "76cbd3d6e5bf4b358f965d1331de914a", "pid": "A000144337", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A000144337", "identifiedBy": [ { "type": "uri", @@ -1203,7 +1151,6 @@ "pid": "A000147059", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000147059", "identifiedBy": [ { "type": "uri", @@ -1237,7 +1184,6 @@ "pid": "A000152472", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000152472", "identifiedBy": [ { "type": "uri", @@ -1263,7 +1209,6 @@ "pid": "A000152802", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000152802", "identifiedBy": [ { "type": "uri", @@ -1285,7 +1230,6 @@ "pid": "A000156095", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000156095", "identifiedBy": [ { "type": "uri", @@ -1315,7 +1259,6 @@ "pid": "A000157703", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000157703", "identifiedBy": [ { "type": "uri", @@ -1379,7 +1322,6 @@ "pid": "A000171374", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000171374", "identifiedBy": [ { "type": "uri", @@ -1400,7 +1342,6 @@ "md5": "777e8709a6f43502ae6f2fd3c4a8c060", "pid": "A000176762", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A000176762", "identifiedBy": [ { "type": "uri", @@ -1423,7 +1364,6 @@ "md5": "e910488efc59a0e4c834c8714316f7a2", "pid": "A000181158", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A000181158", "identifiedBy": [ { "type": "uri", @@ -1445,7 +1385,6 @@ "pid": "A000183008", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000183008", "identifiedBy": [ { "type": "uri", @@ -1469,7 +1408,6 @@ "pid": "A000183027", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000183027", "identifiedBy": [ { "type": "uri", @@ -1504,7 +1442,6 @@ "pid": "A000184256", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000184256", "identifiedBy": [ { "type": "uri", @@ -1520,7 +1457,6 @@ "pid": "A000185690", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000185690", "identifiedBy": [ { "type": "uri", @@ -1536,7 +1472,6 @@ "pid": "A000187213", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000187213", "identifiedBy": [ { "type": "uri", @@ -1558,7 +1493,6 @@ "pid": "A000187557", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000187557", "identifiedBy": [ { "type": "uri", @@ -1580,7 +1514,6 @@ "pid": "A000189570", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000189570", "identifiedBy": [ { "type": "uri", @@ -1609,7 +1542,6 @@ "pid": "A000190495", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000190495", "identifiedBy": [ { "type": "uri", @@ -1631,7 +1563,6 @@ "pid": "A000193226", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000193226", "identifiedBy": [ { "type": "uri", @@ -1655,7 +1586,6 @@ "pid": "A000193381", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000193381", "identifiedBy": [ { "type": "uri", @@ -1677,7 +1607,6 @@ "pid": "A000193605", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000193605", "identifiedBy": [ { "type": "uri", @@ -1703,7 +1632,6 @@ "pid": "A000194499", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A000194499", "identifiedBy": [ { "type": "uri", @@ -1731,7 +1659,6 @@ "md5": "2f760cbb049fd6a2ba2b8ff026303068", "pid": "A002910761", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A002910761", "identifiedBy": [ { "type": "uri", @@ -1746,7 +1673,6 @@ "md5": "669530d35a9f75d41dc302fecfaf9913", "pid": "A002912942", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A002912942", "identifiedBy": [ { "type": "uri", @@ -1761,7 +1687,6 @@ "md5": "0ad216688a1677becce96918b1c6653a", "pid": "A002916477", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A002916477", "identifiedBy": [ { "type": "uri", @@ -1776,7 +1701,6 @@ "md5": "1d87951cd5ce0e469df6688cf5416cb7", "pid": "A002922214", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A002922214", "identifiedBy": [ { "type": "uri", @@ -1791,7 +1715,6 @@ "md5": "60cee36d323da64b58e78d592da74737", "pid": "A002922621", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A002922621", "identifiedBy": [ { "type": "uri", @@ -1806,7 +1729,6 @@ "md5": "6534020ff409915fd037538ba856d5ae", "pid": "A002928445", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A002928445", "identifiedBy": [ { "type": "uri", @@ -1821,7 +1743,6 @@ "md5": "15a836cfddda6032d8341dee9b2cb323", "pid": "A002929473", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A002929473", "identifiedBy": [ { "type": "uri", @@ -1836,7 +1757,6 @@ "md5": "0095c1eb2b4c75789a3e4ba0ad8a418a", "pid": "A002931456", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A002931456", "identifiedBy": [ { "type": "uri", @@ -1851,7 +1771,6 @@ "md5": "dd525329c313f6379417af4e11ac404e", "pid": "A002933956", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A002933956", "identifiedBy": [ { "type": "uri", @@ -1866,7 +1785,6 @@ "md5": "12ec0e2532279dc298c19075bfba5172", "pid": "A002939215", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A002939215", "identifiedBy": [ { "type": "uri", @@ -1881,7 +1799,6 @@ "md5": "f3006addc4f63fdc13d2c7762b9aecce", "pid": "A002939817", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A002939817", "identifiedBy": [ { "type": "uri", @@ -1896,7 +1813,6 @@ "md5": "ec25cb54bf81a4be04a3138030e35679", "pid": "A002940438", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A002940438", "identifiedBy": [ { "type": "uri", @@ -1911,7 +1827,6 @@ "md5": "5f7552d9ff6c5bb1865d42772a1f2240", "pid": "A002940495", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A002940495", "identifiedBy": [ { "type": "uri", @@ -1926,7 +1841,6 @@ "md5": "1e658f28884025757836c82bcf622311", "pid": "A002941414", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A002941414", "identifiedBy": [ { "type": "uri", @@ -1941,7 +1855,6 @@ "md5": "8a167d4e31bb39b7cbe1401fb3ae4543", "pid": "A002941440", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A002941440", "identifiedBy": [ { "type": "uri", @@ -1956,7 +1869,6 @@ "md5": "267647535d019b7ba6d3a738f326ebf3", "pid": "A002942098", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A002942098", "identifiedBy": [ { "type": "uri", @@ -1972,7 +1884,6 @@ "pid": "A002944324", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A002944324", "identifiedBy": [ { "type": "uri", @@ -1988,7 +1899,6 @@ "pid": "A002947740", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A002947740", "identifiedBy": [ { "type": "uri", @@ -2003,7 +1913,6 @@ "md5": "af80a059b9dd3d4adc0cf2b5c9e6596f", "pid": "A002953651", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A002953651", "identifiedBy": [ { "type": "uri", @@ -2018,7 +1927,6 @@ "md5": "2eb8b4c3e5d66d923cb0ba2bb5b085ad", "pid": "A002955901", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A002955901", "identifiedBy": [ { "type": "uri", @@ -2033,7 +1941,6 @@ "md5": "d7da7b550360a1d83ac8023958a16cae", "pid": "A002961093", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A002961093", "identifiedBy": [ { "type": "uri", @@ -2048,7 +1955,6 @@ "md5": "7051425f0d217b8ae05f9010ba1b878b", "pid": "A002963001", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A002963001", "identifiedBy": [ { "type": "uri", @@ -2063,7 +1969,6 @@ "md5": "f22ddf234c0aaf364385efd21a732601", "pid": "A002966255", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A002966255", "identifiedBy": [ { "type": "uri", @@ -2078,7 +1983,6 @@ "md5": "72d60673918b9c41124229f855586176", "pid": "A002968314", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A002968314", "identifiedBy": [ { "type": "uri", @@ -2093,7 +1997,6 @@ "md5": "55d804deae93f4052e065fa6411e83d6", "pid": "A002969933", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A002969933", "identifiedBy": [ { "type": "uri", @@ -2108,7 +2011,6 @@ "md5": "ce8b8fa4153bf3d1a695f087fdb24047", "pid": "A002971659", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A002971659", "identifiedBy": [ { "type": "uri", @@ -2123,7 +2025,6 @@ "md5": "f4b1ac574bc2221e983a0fd84e71c31d", "pid": "A002979038", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A002979038", "identifiedBy": [ { "type": "uri", @@ -2138,7 +2039,6 @@ "md5": "ef9682273b35eab5f8448428408ca0a6", "pid": "A002979177", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A002979177", "identifiedBy": [ { "type": "uri", @@ -2153,7 +2053,6 @@ "md5": "e61f9c9c929f675e9004c15d5ee1df71", "pid": "A002981392", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A002981392", "identifiedBy": [ { "type": "uri", @@ -2168,7 +2067,6 @@ "md5": "d3f5366a86b2c5d42352e8b7f7665e17", "pid": "A002981924", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A002981924", "identifiedBy": [ { "type": "uri", @@ -2183,7 +2081,6 @@ "md5": "c712dab3bddd60140739814e865e8548", "pid": "A002992084", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A002992084", "identifiedBy": [ { "type": "uri", @@ -2198,7 +2095,6 @@ "md5": "4bad69ca6b6a7b62a1f3baa4192c0181", "pid": "A002992522", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A002992522", "identifiedBy": [ { "type": "uri", @@ -2213,7 +2109,6 @@ "md5": "cde6ec2f0c147856c0540a5261da1f1e", "pid": "A002993107", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A002993107", "identifiedBy": [ { "type": "uri", @@ -2228,7 +2123,6 @@ "md5": "9f503914fa20901df12f71d72c6d99a3", "pid": "A003003384", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003003384", "identifiedBy": [ { "type": "uri", @@ -2243,7 +2137,6 @@ "md5": "60c4ecab01838a5b689b87f228414957", "pid": "A003005276", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003005276", "identifiedBy": [ { "type": "uri", @@ -2258,7 +2151,6 @@ "md5": "cc630a65499c87ebac41f7c1f8b4d7cf", "pid": "A003005486", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003005486", "identifiedBy": [ { "type": "uri", @@ -2273,7 +2165,6 @@ "md5": "2be22fa2d3b477e895c5067e8070a832", "pid": "A003010065", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003010065", "identifiedBy": [ { "type": "uri", @@ -2288,7 +2179,6 @@ "md5": "7dab2ae9971d1c9a1775c22b7783669c", "pid": "A003013653", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003013653", "identifiedBy": [ { "type": "uri", @@ -2303,7 +2193,6 @@ "md5": "718e1a3bea1ccdd51f841a0925edef73", "pid": "A003017126", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003017126", "identifiedBy": [ { "type": "uri", @@ -2324,7 +2213,6 @@ "md5": "08a36156286287c230bad10f4020dcad", "pid": "A003019667", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003019667", "identifiedBy": [ { "type": "uri", @@ -2339,7 +2227,6 @@ "md5": "e6642e5a69c23b7225335981db24db5f", "pid": "A003020410", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003020410", "identifiedBy": [ { "type": "uri", @@ -2355,7 +2242,6 @@ "pid": "A003021395", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A003021395", "identifiedBy": [ { "type": "uri", @@ -2370,7 +2256,6 @@ "md5": "a06338f4a5e2dda48dcc7c20f063f2cd", "pid": "A003024732", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003024732", "identifiedBy": [ { "type": "uri", @@ -2385,7 +2270,6 @@ "md5": "f8ea7d6b044ec602ff6082b208024296", "pid": "A003028730", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003028730", "identifiedBy": [ { "type": "uri", @@ -2400,7 +2284,6 @@ "md5": "d011520876b43d857f00773e6462fe25", "pid": "A003031223", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003031223", "identifiedBy": [ { "type": "uri", @@ -2415,7 +2298,6 @@ "md5": "719416962b8f137b1eeb0aa08a4c6655", "pid": "A003037757", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003037757", "identifiedBy": [ { "type": "uri", @@ -2430,7 +2312,6 @@ "md5": "2b87062f601abf869087953fb17ef925", "pid": "A003037886", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003037886", "identifiedBy": [ { "type": "uri", @@ -2445,7 +2326,6 @@ "md5": "6bddf0b42bf2756bcc8cd36ec19096d1", "pid": "A003042099", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003042099", "identifiedBy": [ { "type": "uri", @@ -2460,7 +2340,6 @@ "md5": "16ce139c0a12e0b36122d53398f9fedf", "pid": "A003042520", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003042520", "identifiedBy": [ { "type": "uri", @@ -2475,7 +2354,6 @@ "md5": "77063d12d70236b22080a915c5263f94", "pid": "A003048129", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003048129", "identifiedBy": [ { "type": "uri", @@ -2490,7 +2368,6 @@ "md5": "21cec1216c53b9eb0927ef14077a6de8", "pid": "A003050459", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003050459", "identifiedBy": [ { "type": "uri", @@ -2505,7 +2382,6 @@ "md5": "41538e0f0836243168ee52268d316e88", "pid": "A003055215", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003055215", "identifiedBy": [ { "type": "uri", @@ -2520,7 +2396,6 @@ "md5": "8188c67d5e67a72407198ae12ea48833", "pid": "A003055423", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003055423", "identifiedBy": [ { "type": "uri", @@ -2535,7 +2410,6 @@ "md5": "0965ac927584984dccbdf53b7e4b83ec", "pid": "A003061439", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003061439", "identifiedBy": [ { "type": "uri", @@ -2550,7 +2424,6 @@ "md5": "b77c3bc6f8a7b5b42bf3070b6eca7d46", "pid": "A003061455", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003061455", "identifiedBy": [ { "type": "uri", @@ -2565,7 +2438,6 @@ "md5": "934b296b166fc0eef636ab9b5842b4e8", "pid": "A003063890", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003063890", "identifiedBy": [ { "type": "uri", @@ -2580,7 +2452,6 @@ "md5": "e276685b601441f7685d1242712d815b", "pid": "A003064605", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003064605", "identifiedBy": [ { "type": "uri", @@ -2595,7 +2466,6 @@ "md5": "69377a0996cf8cb5dc74bcf40c7b39c7", "pid": "A003065345", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003065345", "identifiedBy": [ { "type": "uri", @@ -2610,7 +2480,6 @@ "md5": "c3c4e78f264d865908fb22d8ba1f8bcb", "pid": "A003066204", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003066204", "identifiedBy": [ { "type": "uri", @@ -2625,7 +2494,6 @@ "md5": "1a98a8912f9c9013c0048097a52b8b20", "pid": "A003077749", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003077749", "identifiedBy": [ { "type": "uri", @@ -2640,7 +2508,6 @@ "md5": "faf9ebd3488f122273d0a1fc251bae10", "pid": "A003080186", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003080186", "identifiedBy": [ { "type": "uri", @@ -2655,7 +2522,6 @@ "md5": "bad72d53c6fdf8362d6f65f3d36ad3d6", "pid": "A003082787", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003082787", "identifiedBy": [ { "type": "uri", @@ -2670,7 +2536,6 @@ "md5": "bc127dc734b6eb0433678124a79d6b43", "pid": "A003084316", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003084316", "identifiedBy": [ { "type": "uri", @@ -2685,7 +2550,6 @@ "md5": "baf6b32dda432ed416070dba0f1cd19f", "pid": "A003085874", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003085874", "identifiedBy": [ { "type": "uri", @@ -2700,7 +2564,6 @@ "md5": "a1bb6b2487e2e308989b0c3bd5c81e35", "pid": "A003086097", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003086097", "identifiedBy": [ { "type": "uri", @@ -2716,7 +2579,6 @@ "pid": "A003086874", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A003086874", "identifiedBy": [ { "type": "uri", @@ -2732,7 +2594,6 @@ "pid": "A003089906", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A003089906", "identifiedBy": [ { "type": "uri", @@ -2747,7 +2608,6 @@ "md5": "953f0b7d7cb7bf092676931700777131", "pid": "A003093098", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003093098", "identifiedBy": [ { "type": "uri", @@ -2763,7 +2623,6 @@ "pid": "A003093717", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A003093717", "identifiedBy": [ { "type": "uri", @@ -2778,7 +2637,6 @@ "md5": "85e8a9bd4cde44cb3374a1beb904e619", "pid": "A003094768", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003094768", "identifiedBy": [ { "type": "uri", @@ -2793,7 +2651,6 @@ "md5": "214175d07a97e5856eb9e9bcd57cd035", "pid": "A003094880", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003094880", "identifiedBy": [ { "type": "uri", @@ -2808,7 +2665,6 @@ "md5": "b29dc2bc7245f081f525c43569cbb8aa", "pid": "A003096778", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003096778", "identifiedBy": [ { "type": "uri", @@ -2823,7 +2679,6 @@ "md5": "292d0285e8acd2941e171997438b8b0f", "pid": "A003098919", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003098919", "identifiedBy": [ { "type": "uri", @@ -2838,7 +2693,6 @@ "md5": "909d60c94970c03789ea8554bdef600d", "pid": "A003099881", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003099881", "identifiedBy": [ { "type": "uri", @@ -2853,7 +2707,6 @@ "md5": "9f0a57468ed670e3f560f4f632a5957e", "pid": "A003100597", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003100597", "identifiedBy": [ { "type": "uri", @@ -2868,7 +2721,6 @@ "md5": "1c58ae406439418080b73d92be4299a6", "pid": "A003101806", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003101806", "identifiedBy": [ { "type": "uri", @@ -2883,7 +2735,6 @@ "md5": "62e2d33ecabb1f4fa5d9670be5545c0b", "pid": "A003103435", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003103435", "identifiedBy": [ { "type": "uri", @@ -2899,7 +2750,6 @@ "pid": "A003103659", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A003103659", "identifiedBy": [ { "type": "uri", @@ -2920,7 +2770,6 @@ "md5": "e4a02921412e97ffd3d3da5aa64a4ba2", "pid": "A003104849", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003104849", "identifiedBy": [ { "type": "uri", @@ -2935,7 +2784,6 @@ "md5": "583b6c89f74107aa05ee509779a26734", "pid": "A003111864", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003111864", "identifiedBy": [ { "type": "uri", @@ -2951,7 +2799,6 @@ "pid": "A003112356", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A003112356", "identifiedBy": [ { "type": "uri", @@ -2966,7 +2813,6 @@ "md5": "9cb2e1c9025a700ffc58fb82186f63ea", "pid": "A003113657", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003113657", "identifiedBy": [ { "type": "uri", @@ -2981,7 +2827,6 @@ "md5": "2f0e3e359fc36b42976bca8fe0f6768a", "pid": "A003114032", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003114032", "identifiedBy": [ { "type": "uri", @@ -2996,7 +2841,6 @@ "md5": "9a918f5a71a7cdcf32a0a8a861ac50c0", "pid": "A003114105", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003114105", "identifiedBy": [ { "type": "uri", @@ -3011,7 +2855,6 @@ "md5": "fb34438e9dfa36b30d5a3ebb7245c805", "pid": "A003114110", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003114110", "identifiedBy": [ { "type": "uri", @@ -3026,7 +2869,6 @@ "md5": "2667d89d775d25a42f0b6671df09ece5", "pid": "A003116989", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003116989", "identifiedBy": [ { "type": "uri", @@ -3041,7 +2883,6 @@ "md5": "ee569bf7e84f2aa910b37938f7441ca8", "pid": "A003121026", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003121026", "identifiedBy": [ { "type": "uri", @@ -3057,7 +2898,6 @@ "pid": "A003121313", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A003121313", "identifiedBy": [ { "type": "uri", @@ -3073,7 +2913,6 @@ "pid": "A003122042", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A003122042", "identifiedBy": [ { "type": "uri", @@ -3089,7 +2928,6 @@ "pid": "A003122713", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A003122713", "identifiedBy": [ { "type": "uri", @@ -3105,7 +2943,6 @@ "pid": "A003123930", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A003123930", "identifiedBy": [ { "type": "uri", @@ -3120,7 +2957,6 @@ "md5": "d0979adf6459a7c2f06b75810feae71a", "pid": "A003131969", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003131969", "identifiedBy": [ { "type": "uri", @@ -3135,7 +2971,6 @@ "md5": "16f4aa83a19c911fa4ce11554d6dcf1b", "pid": "A003132079", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003132079", "identifiedBy": [ { "type": "uri", @@ -3150,7 +2985,6 @@ "md5": "134536c8b0f10aa6f7f1b67ae3a300bd", "pid": "A003134703", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003134703", "identifiedBy": [ { "type": "uri", @@ -3166,7 +3000,6 @@ "pid": "A003136891", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A003136891", "identifiedBy": [ { "type": "uri", @@ -3181,7 +3014,6 @@ "md5": "16c316e2fc088d0100c3f51c14d7056f", "pid": "A003141286", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003141286", "identifiedBy": [ { "type": "uri", @@ -3196,7 +3028,6 @@ "md5": "629831a8a03f5ec1d88d5e3f463ac3cb", "pid": "A003141352", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003141352", "identifiedBy": [ { "type": "uri", @@ -3211,7 +3042,6 @@ "md5": "2419308aad1d548742c77c3eb8c9b535", "pid": "A003142207", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003142207", "identifiedBy": [ { "type": "uri", @@ -3230,7 +3060,6 @@ "md5": "4756d9205fba24aba299e6fefef6538d", "pid": "A003145194", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003145194", "identifiedBy": [ { "type": "uri", @@ -3246,7 +3075,6 @@ "pid": "A003145393", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A003145393", "identifiedBy": [ { "type": "uri", @@ -3261,7 +3089,6 @@ "md5": "462ea8aecc83e6a8a19f9a20ef912525", "pid": "A003146897", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003146897", "identifiedBy": [ { "type": "uri", @@ -3277,7 +3104,6 @@ "pid": "A003149155", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A003149155", "identifiedBy": [ { "type": "uri", @@ -3292,7 +3118,6 @@ "md5": "a3d5337bb00a6fd21d00cf722369b101", "pid": "A003149182", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003149182", "identifiedBy": [ { "type": "uri", @@ -3307,7 +3132,6 @@ "md5": "0fafcb452b3d33e3fecb0e627b03f67d", "pid": "A003149832", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003149832", "identifiedBy": [ { "type": "uri", @@ -3322,7 +3146,6 @@ "md5": "d6a3ba2a7f13ad090fe9927bd48b3544", "pid": "A003150269", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003150269", "identifiedBy": [ { "type": "uri", @@ -3337,7 +3160,6 @@ "md5": "25c032a1c5b0a2618beab56cc4ec79eb", "pid": "A003151816", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003151816", "identifiedBy": [ { "type": "uri", @@ -3352,7 +3174,6 @@ "md5": "77c74f230e72474616c03d2a573b957b", "pid": "A003154955", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003154955", "identifiedBy": [ { "type": "uri", @@ -3367,7 +3188,6 @@ "md5": "09378b191ff0f39295e30eca78379704", "pid": "A003155460", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003155460", "identifiedBy": [ { "type": "uri", @@ -3382,7 +3202,6 @@ "md5": "2f4dd3a9a608b8810a54390dc78f50e5", "pid": "A003155524", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003155524", "identifiedBy": [ { "type": "uri", @@ -3397,7 +3216,6 @@ "md5": "a352d74bb41e8e13752c952cc0c51df6", "pid": "A003159779", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003159779", "identifiedBy": [ { "type": "uri", @@ -3412,7 +3230,6 @@ "md5": "ef46c535c46bc57f20fb69d9096232c2", "pid": "A003162783", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003162783", "identifiedBy": [ { "type": "uri", @@ -3427,7 +3244,6 @@ "md5": "0f9b9a97f1121c8ce77a6951329fda2c", "pid": "A003170262", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003170262", "identifiedBy": [ { "type": "uri", @@ -3442,7 +3258,6 @@ "md5": "70cb92890d4b5e6c3108d983428249cc", "pid": "A003171170", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003171170", "identifiedBy": [ { "type": "uri", @@ -3457,7 +3272,6 @@ "md5": "3e477f4e5c10bfd76913366a2a3cd674", "pid": "A003172151", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003172151", "identifiedBy": [ { "type": "uri", @@ -3472,7 +3286,6 @@ "md5": "e8bb13b601f4af5ff821e433d14b9bc4", "pid": "A003172474", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003172474", "identifiedBy": [ { "type": "uri", @@ -3487,7 +3300,6 @@ "md5": "38395d445887bcafdbc24475c9e03081", "pid": "A003173240", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003173240", "identifiedBy": [ { "type": "uri", @@ -3502,7 +3314,6 @@ "md5": "931c154d8013800e9494b19a30644908", "pid": "A003177980", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003177980", "identifiedBy": [ { "type": "uri", @@ -3517,7 +3328,6 @@ "md5": "a4aed6800948bcd8011eeef34857a408", "pid": "A003178146", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003178146", "identifiedBy": [ { "type": "uri", @@ -3532,7 +3342,6 @@ "md5": "6a19adf3ee2332b902bb02e097234eba", "pid": "A003179452", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003179452", "identifiedBy": [ { "type": "uri", @@ -3548,7 +3357,6 @@ "pid": "A003182838", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A003182838", "identifiedBy": [ { "type": "uri", @@ -3563,7 +3371,6 @@ "md5": "d13339d95bbdfcd86af21f2f36df5607", "pid": "A003184655", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003184655", "identifiedBy": [ { "type": "uri", @@ -3578,7 +3385,6 @@ "md5": "fae60e2f692b0de4dd90572e75152193", "pid": "A003185209", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003185209", "identifiedBy": [ { "type": "uri", @@ -3593,7 +3399,6 @@ "md5": "64891d986086dafc1311c3b39737926d", "pid": "A003188796", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003188796", "identifiedBy": [ { "type": "uri", @@ -3608,7 +3413,6 @@ "md5": "5b2e8063e9370aa4a115ad30e7c19729", "pid": "A003192212", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003192212", "identifiedBy": [ { "type": "uri", @@ -3623,7 +3427,6 @@ "md5": "a257c7a92e4098dd46b9d402990a21f6", "pid": "A003194582", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003194582", "identifiedBy": [ { "type": "uri", @@ -3638,7 +3441,6 @@ "md5": "af4d072a56b3ed3f6f0f80da82badf5e", "pid": "A003196110", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003196110", "identifiedBy": [ { "type": "uri", @@ -3653,7 +3455,6 @@ "md5": "eab5351a522668a4ad89c655ffc66867", "pid": "A003197536", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003197536", "identifiedBy": [ { "type": "uri", @@ -3668,7 +3469,6 @@ "md5": "ebc4160589ab60cda0c4dc425dfc4f80", "pid": "A003198713", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003198713", "identifiedBy": [ { "type": "uri", @@ -3683,7 +3483,6 @@ "md5": "78e943d502372fbc2aaf8d4fdaf82a76", "pid": "A003199994", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003199994", "identifiedBy": [ { "type": "uri", @@ -3698,7 +3497,6 @@ "md5": "fc39a06b1058f9d2e7373d6110ca2ff2", "pid": "A003201589", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003201589", "identifiedBy": [ { "type": "uri", @@ -3713,7 +3511,6 @@ "md5": "a1e59d9f8d6ecdbedac6bc47e6e9c742", "pid": "A003203987", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003203987", "identifiedBy": [ { "type": "uri", @@ -3728,7 +3525,6 @@ "md5": "8cc02911ba8ecb362baf6a85a429682a", "pid": "A003206780", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003206780", "identifiedBy": [ { "type": "uri", @@ -3743,7 +3539,6 @@ "md5": "dbf766d07fe414efbaa88ade65056474", "pid": "A003217486", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003217486", "identifiedBy": [ { "type": "uri", @@ -3759,7 +3554,6 @@ "pid": "A003218658", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A003218658", "identifiedBy": [ { "type": "uri", @@ -3775,7 +3569,6 @@ "pid": "A003218686", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A003218686", "identifiedBy": [ { "type": "uri", @@ -3790,7 +3583,6 @@ "md5": "05d35d146be4c6001db5281c35d84087", "pid": "A003223430", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003223430", "identifiedBy": [ { "type": "uri", @@ -3805,7 +3597,6 @@ "md5": "2a6befb79e5697c762141b53f6785314", "pid": "A003230887", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003230887", "identifiedBy": [ { "type": "uri", @@ -3820,7 +3611,6 @@ "md5": "6ca806bc6a85b17aea6cd7c4dcde8ca8", "pid": "A003235750", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003235750", "identifiedBy": [ { "type": "uri", @@ -3835,7 +3625,6 @@ "md5": "81075d36e7bcee12657539488a4ad5cd", "pid": "A003235825", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003235825", "identifiedBy": [ { "type": "uri", @@ -3850,7 +3639,6 @@ "md5": "260f6d5e654ae3c928ed6a14f46e72b3", "pid": "A003236665", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003236665", "identifiedBy": [ { "type": "uri", @@ -3865,7 +3653,6 @@ "md5": "7871bacbfa343c966616f80489a8b42c", "pid": "A003237696", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003237696", "identifiedBy": [ { "type": "uri", @@ -3880,7 +3667,6 @@ "md5": "aace162c9b04e8e89aa65d3e20986119", "pid": "A003240957", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003240957", "identifiedBy": [ { "type": "uri", @@ -3895,7 +3681,6 @@ "md5": "d5582b89516fce539168d33fd6b8f43e", "pid": "A003242452", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003242452", "identifiedBy": [ { "type": "uri", @@ -3910,7 +3695,6 @@ "md5": "808b9c69a40e73979a0df8ef1fe111bc", "pid": "A003243348", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003243348", "identifiedBy": [ { "type": "uri", @@ -3926,7 +3710,6 @@ "pid": "A003245434", "type": "bf:Person", "qualifier": "entomologue", - "identifier": "http://data.rero.ch/02-A003245434", "identifiedBy": [ { "type": "uri", @@ -3947,7 +3730,6 @@ "md5": "4bb682cb7d17b9a4dd380a7348bfff1c", "pid": "A003246832", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003246832", "identifiedBy": [ { "type": "uri", @@ -3962,7 +3744,6 @@ "md5": "4ee6ee076f01d0f84369b4f03aa9940a", "pid": "A003250020", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003250020", "identifiedBy": [ { "type": "uri", @@ -3977,7 +3758,6 @@ "md5": "a9dd13d196e1a91d5010076c62bf5a8b", "pid": "A003250278", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003250278", "identifiedBy": [ { "type": "uri", @@ -3998,7 +3778,6 @@ "md5": "616a4f3723cf507f5e46203baef2cfb1", "pid": "A003250343", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003250343", "identifiedBy": [ { "type": "uri", @@ -4013,7 +3792,6 @@ "md5": "d8805973ddbb6e81cbbd15613149224f", "pid": "A003250353", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003250353", "identifiedBy": [ { "type": "uri", @@ -4029,7 +3807,6 @@ "pid": "A003251379", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A003251379", "identifiedBy": [ { "type": "uri", @@ -4044,7 +3821,6 @@ "md5": "ae989164a8d525f67795cc84c3a737ab", "pid": "A003256978", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003256978", "identifiedBy": [ { "type": "uri", @@ -4059,7 +3835,6 @@ "md5": "a5eade45c300189dc53d480eb1525cc2", "pid": "A003259324", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003259324", "identifiedBy": [ { "type": "uri", @@ -4074,7 +3849,6 @@ "md5": "7077365c31b685e52c690bb8ebd96a7b", "pid": "A003259363", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003259363", "identifiedBy": [ { "type": "uri", @@ -4089,7 +3863,6 @@ "md5": "d3201a6472c7a9ce7777ca9e7081f0f5", "pid": "A003261984", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003261984", "identifiedBy": [ { "type": "uri", @@ -4104,7 +3877,6 @@ "md5": "7795af30c580cf28e96c1afa3e54b9ea", "pid": "A003262188", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003262188", "identifiedBy": [ { "type": "uri", @@ -4119,7 +3891,6 @@ "md5": "2e92d21c98e8c4d7df104cf724116097", "pid": "A003263551", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003263551", "identifiedBy": [ { "type": "uri", @@ -4134,7 +3905,6 @@ "md5": "21bb8b7b83e04b36c4b8fd67aa4144ac", "pid": "A003264908", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003264908", "identifiedBy": [ { "type": "uri", @@ -4149,7 +3919,6 @@ "md5": "44247fe4430a60689301a491bb2ba488", "pid": "A003265730", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003265730", "identifiedBy": [ { "type": "uri", @@ -4164,7 +3933,6 @@ "md5": "cddf99ba8e480f546e29559c78563f02", "pid": "A003267103", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003267103", "identifiedBy": [ { "type": "uri", @@ -4179,7 +3947,6 @@ "md5": "513e393a1458825fdd7f9e00637d9b0b", "pid": "A003267500", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003267500", "identifiedBy": [ { "type": "uri", @@ -4194,7 +3961,6 @@ "md5": "405cc45d5e0970881dffcd66bff43557", "pid": "A003268129", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003268129", "identifiedBy": [ { "type": "uri", @@ -4210,7 +3976,6 @@ "pid": "A003272218", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A003272218", "identifiedBy": [ { "type": "uri", @@ -4225,7 +3990,6 @@ "md5": "09be1052e7fc7cc0299b96a3d49cff46", "pid": "A003272478", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003272478", "identifiedBy": [ { "type": "uri", @@ -4241,7 +4005,6 @@ "pid": "A003272492", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A003272492", "identifiedBy": [ { "type": "uri", @@ -4256,7 +4019,6 @@ "md5": "e9710ec54e3e0b5d8fb2a24ae44d3443", "pid": "A003274907", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003274907", "identifiedBy": [ { "type": "uri", @@ -4271,7 +4033,6 @@ "md5": "7d489b74d29fae2038f0082693c0acae", "pid": "A003275937", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003275937", "identifiedBy": [ { "type": "uri", @@ -4286,7 +4047,6 @@ "md5": "20117c43a0657ffd6176f77352807779", "pid": "A003276590", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003276590", "identifiedBy": [ { "type": "uri", @@ -4301,7 +4061,6 @@ "md5": "0dc4bdca21b5a8fec2424ea0069b7c17", "pid": "A003278829", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003278829", "identifiedBy": [ { "type": "uri", @@ -4316,7 +4075,6 @@ "md5": "9bcbf7b7cc5aabc8dd6c36dd322b278f", "pid": "A003281452", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003281452", "identifiedBy": [ { "type": "uri", @@ -4331,7 +4089,6 @@ "md5": "83eaad3df58e260a8812b9741555ed65", "pid": "A003283186", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003283186", "identifiedBy": [ { "type": "uri", @@ -4347,7 +4104,6 @@ "pid": "A003288318", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A003288318", "identifiedBy": [ { "type": "uri", @@ -4362,7 +4118,6 @@ "md5": "b4f3836d5a63d01ae642fab7877d4bf2", "pid": "A003293538", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003293538", "identifiedBy": [ { "type": "uri", @@ -4377,7 +4132,6 @@ "md5": "da7dcbcf254d68cded7167b0bc37d741", "pid": "A003299867", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003299867", "identifiedBy": [ { "type": "uri", @@ -4392,7 +4146,6 @@ "md5": "ff143e473cf3debf6debc19fe9573d74", "pid": "A003300349", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003300349", "identifiedBy": [ { "type": "uri", @@ -4407,7 +4160,6 @@ "md5": "24bef22bafcc42b2f1f654dee4fa4165", "pid": "A003301693", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003301693", "identifiedBy": [ { "type": "uri", @@ -4422,7 +4174,6 @@ "md5": "3d112e130bf7b77641fdfc5d59115061", "pid": "A003302604", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003302604", "identifiedBy": [ { "type": "uri", @@ -4437,7 +4188,6 @@ "md5": "61963b265fcef64086ef5e94e8bbfc60", "pid": "A003303466", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003303466", "identifiedBy": [ { "type": "uri", @@ -4452,7 +4202,6 @@ "md5": "0d50f6bd2e00baff671e1e8f8ae3952d", "pid": "A003303830", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003303830", "identifiedBy": [ { "type": "uri", @@ -4467,7 +4216,6 @@ "md5": "650854dbac32695a23888bb87db60079", "pid": "A003307504", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003307504", "identifiedBy": [ { "type": "uri", @@ -4482,7 +4230,6 @@ "md5": "046721e68ba49f565c12957c8ae6acb9", "pid": "A003308819", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003308819", "identifiedBy": [ { "type": "uri", @@ -4497,7 +4244,6 @@ "md5": "bd43073f8663b3fdc796262d379d7c6d", "pid": "A003312980", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003312980", "identifiedBy": [ { "type": "uri", @@ -4512,7 +4258,6 @@ "md5": "8b6a5a50eaa835db4123d75e7a317d45", "pid": "A003314705", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003314705", "identifiedBy": [ { "type": "uri", @@ -4527,7 +4272,6 @@ "md5": "447ba571cd4d8eaeb64201a7a832f88c", "pid": "A003316151", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003316151", "identifiedBy": [ { "type": "uri", @@ -4542,7 +4286,6 @@ "md5": "68ee443515d5f08da8d68e24a933e58a", "pid": "A003319632", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003319632", "identifiedBy": [ { "type": "uri", @@ -4557,7 +4300,6 @@ "md5": "6b810c979bce2fee8079287a9002bed1", "pid": "A003320872", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003320872", "identifiedBy": [ { "type": "uri", @@ -4573,7 +4315,6 @@ "pid": "A003324081", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A003324081", "identifiedBy": [ { "type": "uri", @@ -4588,7 +4329,6 @@ "md5": "6348da0625e91cbd86ba8f65366ab267", "pid": "A003328096", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003328096", "identifiedBy": [ { "type": "uri", @@ -4604,7 +4344,6 @@ "pid": "A003331851", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A003331851", "identifiedBy": [ { "type": "uri", @@ -4619,7 +4358,6 @@ "md5": "837a4a291f7eed0b6dc54a13c3acd50a", "pid": "A003334623", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003334623", "identifiedBy": [ { "type": "uri", @@ -4634,7 +4372,6 @@ "md5": "004810402bef52cabfdefcf01d44c6eb", "pid": "A003337947", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003337947", "identifiedBy": [ { "type": "uri", @@ -4649,7 +4386,6 @@ "md5": "2a31ebd9c3a14b732aa599c8fedfadcf", "pid": "A003351113", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003351113", "identifiedBy": [ { "type": "uri", @@ -4664,7 +4400,6 @@ "md5": "46bc817a9f8b27b97378cc8e765bfa0b", "pid": "A003352968", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003352968", "identifiedBy": [ { "type": "uri", @@ -4679,7 +4414,6 @@ "md5": "d523d1de366d0a4cd7483df111b04456", "pid": "A003357999", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003357999", "identifiedBy": [ { "type": "uri", @@ -4694,7 +4428,6 @@ "md5": "4e7f35f42ed97dcd189c655a40450021", "pid": "A003359260", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003359260", "identifiedBy": [ { "type": "uri", @@ -4709,7 +4442,6 @@ "md5": "7d71bc51ff599b8da009dc7a350a6a13", "pid": "A003360509", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003360509", "identifiedBy": [ { "type": "uri", @@ -4725,7 +4457,6 @@ "pid": "A003361845", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A003361845", "identifiedBy": [ { "type": "uri", @@ -4746,7 +4477,6 @@ "md5": "a5b4acd4146178db1d46c065d476e64e", "pid": "A003362103", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003362103", "identifiedBy": [ { "type": "uri", @@ -4761,7 +4491,6 @@ "md5": "032c297c3ee3517494fb77e654024311", "pid": "A003363900", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003363900", "identifiedBy": [ { "type": "uri", @@ -4776,7 +4505,6 @@ "md5": "9f8de8abab300cc184f389b3bd90299a", "pid": "A003364295", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003364295", "identifiedBy": [ { "type": "uri", @@ -4804,7 +4532,6 @@ "md5": "0741af84577db449820f763182b92604", "pid": "A003370921", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003370921", "identifiedBy": [ { "type": "uri", @@ -4828,7 +4555,6 @@ "md5": "4b5b8365c4b757417ac0594efee45a22", "pid": "A003375801", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003375801", "identifiedBy": [ { "type": "uri", @@ -4843,7 +4569,6 @@ "md5": "32b301de219c857fee77c92e1144c60b", "pid": "A003378379", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003378379", "identifiedBy": [ { "type": "uri", @@ -4858,7 +4583,6 @@ "md5": "d21c833a710fd13a81d47143468b651b", "pid": "A003378581", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003378581", "identifiedBy": [ { "type": "uri", @@ -4873,7 +4597,6 @@ "md5": "99e4ca8a6c26d96f0580cd270f903533", "pid": "A003378837", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003378837", "identifiedBy": [ { "type": "uri", @@ -4888,7 +4611,6 @@ "md5": "d2735ef6437d682e11638a14fd855bf1", "pid": "A003379503", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003379503", "identifiedBy": [ { "type": "uri", @@ -4903,7 +4625,6 @@ "md5": "9dd1642b4f489db145d588f4a66cd2fe", "pid": "A003381861", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003381861", "identifiedBy": [ { "type": "uri", @@ -4918,7 +4639,6 @@ "md5": "1eb2b824ef5c5d39a28b792dcdc46fca", "pid": "A003383105", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003383105", "identifiedBy": [ { "type": "uri", @@ -4957,7 +4677,6 @@ "md5": "55fb00a706252d47030ddd1219dfcf93", "pid": "A003385342", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003385342", "identifiedBy": [ { "type": "uri", @@ -4972,7 +4691,6 @@ "md5": "4da5c35db640f7e0fc6976ac49c529d1", "pid": "A003386566", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003386566", "identifiedBy": [ { "type": "uri", @@ -4987,7 +4705,6 @@ "md5": "4b8bfc7e24b80c05035e3c6f16a3cbc0", "pid": "A003388636", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003388636", "identifiedBy": [ { "type": "uri", @@ -5002,7 +4719,6 @@ "md5": "83ffde6213bcefda2f2c05e71c0d7ea6", "pid": "A003389309", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003389309", "identifiedBy": [ { "type": "uri", @@ -5017,7 +4733,6 @@ "md5": "221ed322580d744892c80f829653b835", "pid": "A003389620", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003389620", "identifiedBy": [ { "type": "uri", @@ -5032,7 +4747,6 @@ "md5": "8960f53f4a60b5c0db6c36732093930f", "pid": "A003389663", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003389663", "identifiedBy": [ { "type": "uri", @@ -5047,7 +4761,6 @@ "md5": "757cb8a27db2b60d0f48ad43c44c6e60", "pid": "A003395338", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003395338", "identifiedBy": [ { "type": "uri", @@ -5066,7 +4779,6 @@ "md5": "79beb61b885f48edfdd007fee942fb38", "pid": "A003398237", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003398237", "identifiedBy": [ { "type": "uri", @@ -5081,7 +4793,6 @@ "md5": "9b07ae5c7a6c74726d46b88a2ca8e497", "pid": "A003399031", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003399031", "identifiedBy": [ { "type": "uri", @@ -5096,7 +4807,6 @@ "md5": "6ee2288ab78dc2b3a905aa1b8d028808", "pid": "A003399240", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003399240", "identifiedBy": [ { "type": "uri", @@ -5111,7 +4821,6 @@ "md5": "f2dd54de40fe78385c042ce5b842246a", "pid": "A003399386", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003399386", "identifiedBy": [ { "type": "uri", @@ -5126,7 +4835,6 @@ "md5": "38d166b1c484f1e6161493801b6bfc8c", "pid": "A003399601", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003399601", "identifiedBy": [ { "type": "uri", @@ -5142,7 +4850,6 @@ "pid": "A003401536", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A003401536", "identifiedBy": [ { "type": "uri", @@ -5158,7 +4865,6 @@ "pid": "A003402056", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A003402056", "identifiedBy": [ { "type": "uri", @@ -5174,7 +4880,6 @@ "pid": "A003403470", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A003403470", "identifiedBy": [ { "type": "uri", @@ -5190,7 +4895,6 @@ "pid": "A003404800", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A003404800", "identifiedBy": [ { "type": "uri", @@ -5206,7 +4910,6 @@ "pid": "A003406290", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A003406290", "identifiedBy": [ { "type": "uri", @@ -5227,7 +4930,6 @@ "md5": "4b9a1407056d643d00ec2dcb5d8d2a6d", "pid": "A003411195", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003411195", "identifiedBy": [ { "type": "uri", @@ -5243,7 +4945,6 @@ "pid": "A003413213", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A003413213", "identifiedBy": [ { "type": "uri", @@ -5259,7 +4960,6 @@ "pid": "A003413435", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A003413435", "identifiedBy": [ { "type": "uri", @@ -5274,7 +4974,6 @@ "md5": "72d3677eabfaa3302e20f53557c86b15", "pid": "A003416346", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003416346", "identifiedBy": [ { "type": "uri", @@ -5289,7 +4988,6 @@ "md5": "f12b2a689ba392f0bd8f65b702b2e650", "pid": "A003418109", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003418109", "identifiedBy": [ { "type": "uri", @@ -5304,7 +5002,6 @@ "md5": "8442a6d73d6ed6b09ad9537537795320", "pid": "A003418336", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003418336", "identifiedBy": [ { "type": "uri", @@ -5319,7 +5016,6 @@ "md5": "1f748659d63b1661a8864d7afb995747", "pid": "A003421420", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003421420", "identifiedBy": [ { "type": "uri", @@ -5334,7 +5030,6 @@ "md5": "f46e79a8e0c4552654879c0bff79fece", "pid": "A003421797", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003421797", "identifiedBy": [ { "type": "uri", @@ -5349,7 +5044,6 @@ "md5": "c53f787639de51ac7600a9646f8a38a6", "pid": "A003422794", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003422794", "identifiedBy": [ { "type": "uri", @@ -5364,7 +5058,6 @@ "md5": "c5411d6a8c4dea629ee20fb4f1e6bb54", "pid": "A003427813", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003427813", "identifiedBy": [ { "type": "uri", @@ -5379,7 +5072,6 @@ "md5": "11649ad9bfe02245f7ccee22dd9d245f", "pid": "A003428330", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003428330", "identifiedBy": [ { "type": "uri", @@ -5394,7 +5086,6 @@ "md5": "e82c29803209affe4ba4a49883d07e63", "pid": "A003428443", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003428443", "identifiedBy": [ { "type": "uri", @@ -5409,7 +5100,6 @@ "md5": "20eb03d1e2b8fcb2e9d062e2b4c4d3fc", "pid": "A003435187", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003435187", "identifiedBy": [ { "type": "uri", @@ -5424,7 +5114,6 @@ "md5": "267157b891e310a340c14abb36bbf0fa", "pid": "A003435467", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003435467", "identifiedBy": [ { "type": "uri", @@ -5439,7 +5128,6 @@ "md5": "c4458947edf963c148d8e1ff4a5002cb", "pid": "A003436041", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003436041", "identifiedBy": [ { "type": "uri", @@ -5454,7 +5142,6 @@ "md5": "b336a5dbff35d84fcad918a46513fc55", "pid": "A003441673", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003441673", "identifiedBy": [ { "type": "uri", @@ -5470,7 +5157,6 @@ "pid": "A003449705", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A003449705", "identifiedBy": [ { "type": "uri", @@ -5485,7 +5171,6 @@ "md5": "87fbe56d41568487b9a451e9a845954f", "pid": "A003449812", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003449812", "identifiedBy": [ { "type": "uri", @@ -5500,7 +5185,6 @@ "md5": "8d850829241cf61b2b9104a97806cd38", "pid": "A003450257", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003450257", "identifiedBy": [ { "type": "uri", @@ -5515,7 +5199,6 @@ "md5": "b290618d5cc294127dd8d30cf7734eb6", "pid": "A003451220", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003451220", "identifiedBy": [ { "type": "uri", @@ -5530,7 +5213,6 @@ "md5": "af53e0313e3d5d54b41d1f62f9106f85", "pid": "A003453966", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003453966", "identifiedBy": [ { "type": "uri", @@ -5545,7 +5227,6 @@ "md5": "3f9a3bc18da925c636ce7cbb286694b6", "pid": "A003454418", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003454418", "identifiedBy": [ { "type": "uri", @@ -5560,7 +5241,6 @@ "md5": "2c645532203c2fd1d91853c0f917d173", "pid": "A003454993", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003454993", "identifiedBy": [ { "type": "uri", @@ -5575,7 +5255,6 @@ "md5": "f5cdc3e52ee732a776bf8df3643856b2", "pid": "A003462661", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003462661", "identifiedBy": [ { "type": "uri", @@ -5590,7 +5269,6 @@ "md5": "3b2003e4676127437091400b52a709c9", "pid": "A003469619", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003469619", "identifiedBy": [ { "type": "uri", @@ -5605,7 +5283,6 @@ "md5": "e6712213fbae42c57e55858c448e075f", "pid": "A003471135", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003471135", "identifiedBy": [ { "type": "uri", @@ -5620,7 +5297,6 @@ "md5": "a9f5082b9fe5754b794bec314e3be44f", "pid": "A003471767", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003471767", "identifiedBy": [ { "type": "uri", @@ -5635,7 +5311,6 @@ "md5": "01e4758bd51d2e99c33637dc5fde90ea", "pid": "A003477398", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003477398", "identifiedBy": [ { "type": "uri", @@ -5650,7 +5325,6 @@ "md5": "4d9799663c7c3658050ce244b678e704", "pid": "A003483779", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003483779", "identifiedBy": [ { "type": "uri", @@ -5665,7 +5339,6 @@ "md5": "0ce978bd08090782b582e1094c5ceb0d", "pid": "A003483806", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003483806", "identifiedBy": [ { "type": "uri", @@ -5680,7 +5353,6 @@ "md5": "3a09729576f985de9e69cc399b9c6e37", "pid": "A003484799", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003484799", "identifiedBy": [ { "type": "uri", @@ -5695,7 +5367,6 @@ "md5": "c7f99605ea2c974d64271eb18bb2e21c", "pid": "A003488727", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003488727", "identifiedBy": [ { "type": "uri", @@ -5710,7 +5381,6 @@ "md5": "1a8f76329156f0d76e97e1334f226ad3", "pid": "A003489212", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003489212", "identifiedBy": [ { "type": "uri", @@ -5725,7 +5395,6 @@ "md5": "5da037b9ec7a6e35943cfccbd198608d", "pid": "A003489450", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003489450", "identifiedBy": [ { "type": "uri", @@ -5740,7 +5409,6 @@ "md5": "611d09d65a0a0d4baf2a54d37f625306", "pid": "A003490603", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003490603", "identifiedBy": [ { "type": "uri", @@ -5755,7 +5423,6 @@ "md5": "04155a02d6128d906d39d006f0643e06", "pid": "A003491429", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003491429", "identifiedBy": [ { "type": "uri", @@ -5776,7 +5443,6 @@ "md5": "2c58aebb4e5dbecffcf46f147904affa", "pid": "A003491460", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003491460", "identifiedBy": [ { "type": "uri", @@ -5791,7 +5457,6 @@ "md5": "88d497581c4b5c2a65e79a979017e717", "pid": "A003491484", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003491484", "identifiedBy": [ { "type": "uri", @@ -5806,7 +5471,6 @@ "md5": "f6927f3318737dc4891f1e427abfdedf", "pid": "A003492458", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003492458", "identifiedBy": [ { "type": "uri", @@ -5821,7 +5485,6 @@ "md5": "3d9ba6a3d5fa2f5c4b892b36f366ee95", "pid": "A003494285", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003494285", "identifiedBy": [ { "type": "uri", @@ -5836,7 +5499,6 @@ "md5": "9a7666ee69b1ea8af110ecc92afb7cc1", "pid": "A003497728", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003497728", "identifiedBy": [ { "type": "uri", @@ -5851,7 +5513,6 @@ "md5": "ee3a8e43b2623aaa1c33dbf6d9e5952f", "pid": "A003501142", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003501142", "identifiedBy": [ { "type": "uri", @@ -5866,7 +5527,6 @@ "md5": "5b6ce3202a9a36e87020d02cc7881c18", "pid": "A003507812", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003507812", "identifiedBy": [ { "type": "uri", @@ -5881,7 +5541,6 @@ "md5": "08bee7bb26488ba5f59d30437cf0d048", "pid": "A003508662", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003508662", "identifiedBy": [ { "type": "uri", @@ -5896,7 +5555,6 @@ "md5": "370a47d2dd64a0ebf64aacb8f73edaae", "pid": "A003510150", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003510150", "identifiedBy": [ { "type": "uri", @@ -5911,7 +5569,6 @@ "md5": "efaa9d9053ca940ff9bf5e2d1cdc5062", "pid": "A003511981", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003511981", "identifiedBy": [ { "type": "uri", @@ -5926,7 +5583,6 @@ "md5": "303569c31f4901155b14443097219c50", "pid": "A003514292", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003514292", "identifiedBy": [ { "type": "uri", @@ -5941,7 +5597,6 @@ "md5": "51301fc380f5151ac16abc922ad1412f", "pid": "A003516733", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003516733", "identifiedBy": [ { "type": "uri", @@ -5958,7 +5613,6 @@ "md5": "e77428313bbcbf638e55e52c42d09557", "pid": "A003517040", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003517040", "identifiedBy": [ { "type": "uri", @@ -5973,7 +5627,6 @@ "md5": "a3af38973376ed5ff73182a103de9b9c", "pid": "A003517060", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003517060", "identifiedBy": [ { "type": "uri", @@ -5988,7 +5641,6 @@ "md5": "ba77169d0ab4aad2d9865d99bd6a64be", "pid": "A003518724", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003518724", "identifiedBy": [ { "type": "uri", @@ -6003,7 +5655,6 @@ "md5": "119877189028fc486291ae974f518990", "pid": "A003520958", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003520958", "identifiedBy": [ { "type": "uri", @@ -6018,7 +5669,6 @@ "md5": "da96cdf65d5aad8cacbc4fab3bed2085", "pid": "A003531526", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003531526", "identifiedBy": [ { "type": "uri", @@ -6033,7 +5683,6 @@ "md5": "ca735aa1fa9ba75cfc2c96279eddd6ee", "pid": "A003531595", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003531595", "identifiedBy": [ { "type": "uri", @@ -6058,7 +5707,6 @@ "md5": "f02680d5ce4321c62d673b134e7109db", "pid": "A003531943", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003531943", "identifiedBy": [ { "type": "uri", @@ -6073,7 +5721,6 @@ "md5": "15bbd1ab451e43ad41b961eb452270f0", "pid": "A003538407", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003538407", "identifiedBy": [ { "type": "uri", @@ -6088,7 +5735,6 @@ "md5": "57d647e5c1fa52303655b1a4cce65703", "pid": "A003542278", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003542278", "identifiedBy": [ { "type": "uri", @@ -6103,7 +5749,6 @@ "md5": "370b9b8f99c97876440b45d1e07ae16b", "pid": "A003543183", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003543183", "identifiedBy": [ { "type": "uri", @@ -6118,7 +5763,6 @@ "md5": "cdfe94166b046299c0281c8678bd6bba", "pid": "A003544201", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003544201", "identifiedBy": [ { "type": "uri", @@ -6144,7 +5788,6 @@ "md5": "43e82cafaa462d1ea1ee47c8dd2289b7", "pid": "A003546689", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003546689", "identifiedBy": [ { "type": "uri", @@ -6159,7 +5802,6 @@ "md5": "601b9177ccded59df202626d464d83f1", "pid": "A003550856", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003550856", "identifiedBy": [ { "type": "uri", @@ -6174,7 +5816,6 @@ "md5": "57cb7f1a2a327dfbccc3f0b2b3ccabc3", "pid": "A003552034", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003552034", "identifiedBy": [ { "type": "uri", @@ -6189,7 +5830,6 @@ "md5": "7294a31ab84d871a45941a8ab698e454", "pid": "A003552475", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003552475", "identifiedBy": [ { "type": "uri", @@ -6204,7 +5844,6 @@ "md5": "fc61dd0bf1dea3bf51a859239bcba245", "pid": "A003556987", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003556987", "identifiedBy": [ { "type": "uri", @@ -6220,7 +5859,6 @@ "pid": "A003557648", "type": "bf:Person", "qualifier": "marquise", - "identifier": "http://data.rero.ch/02-A003557648", "identifiedBy": [ { "type": "uri", @@ -6249,7 +5887,6 @@ "md5": "5fa6274c4474e7d04d316a67496f1429", "pid": "A003557956", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003557956", "identifiedBy": [ { "type": "uri", @@ -6264,7 +5901,6 @@ "md5": "9563b66119338cbf29e6ca8f123a8b2b", "pid": "A003561750", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003561750", "identifiedBy": [ { "type": "uri", @@ -6279,7 +5915,6 @@ "md5": "14165e89f9a6221b31a0a6c02ed74e10", "pid": "A003562973", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003562973", "identifiedBy": [ { "type": "uri", @@ -6294,7 +5929,6 @@ "md5": "3eb90f587458c392a3915eae7839e8db", "pid": "A003564111", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003564111", "identifiedBy": [ { "type": "uri", @@ -6309,7 +5943,6 @@ "md5": "ee3fa21447e4f24c493e67bf69f0c9d8", "pid": "A003566329", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003566329", "identifiedBy": [ { "type": "uri", @@ -6324,7 +5957,6 @@ "md5": "c8c976482de7d25e24c96a471420202c", "pid": "A003568779", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003568779", "identifiedBy": [ { "type": "uri", @@ -6339,7 +5971,6 @@ "md5": "3870f4cfb50fd7e01d4c855c3db15a29", "pid": "A003569699", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003569699", "identifiedBy": [ { "type": "uri", @@ -6354,7 +5985,6 @@ "md5": "47363f9beec2acb1213d8d041aea76d5", "pid": "A003572511", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003572511", "identifiedBy": [ { "type": "uri", @@ -6369,7 +5999,6 @@ "md5": "1f59e613f9d2d138d59b71fba9243821", "pid": "A003572877", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003572877", "identifiedBy": [ { "type": "uri", @@ -6384,7 +6013,6 @@ "md5": "9e198d618531aa25a3872a9c2208eb69", "pid": "A003575662", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003575662", "identifiedBy": [ { "type": "uri", @@ -6399,7 +6027,6 @@ "md5": "87584e1cc5a47d930d5f31702f351de8", "pid": "A003578228", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003578228", "identifiedBy": [ { "type": "uri", @@ -6414,7 +6041,6 @@ "md5": "32c976c1d386f69bdbbd0db0cf439fa4", "pid": "A003582881", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003582881", "identifiedBy": [ { "type": "uri", @@ -6429,7 +6055,6 @@ "md5": "50740a813e78e908478e0ca15cbe4dcd", "pid": "A003588222", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003588222", "identifiedBy": [ { "type": "uri", @@ -6444,7 +6069,6 @@ "md5": "0b896ea2caab1ee8b65c8fdf9b592976", "pid": "A003588933", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003588933", "identifiedBy": [ { "type": "uri", @@ -6459,7 +6083,6 @@ "md5": "68c6b6f3e257ce0ec1edae9eefd1e3da", "pid": "A003594199", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003594199", "identifiedBy": [ { "type": "uri", @@ -6474,7 +6097,6 @@ "md5": "b6feb68c532654f4376fdd86a1fcfa50", "pid": "A003596440", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003596440", "identifiedBy": [ { "type": "uri", @@ -6489,7 +6111,6 @@ "md5": "7f9709a6a8fb42e46a7f3b853b14abbd", "pid": "A003597080", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003597080", "identifiedBy": [ { "type": "uri", @@ -6505,7 +6126,6 @@ "pid": "A003600525", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A003600525", "identifiedBy": [ { "type": "uri", @@ -6521,7 +6141,6 @@ "pid": "A003600526", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A003600526", "identifiedBy": [ { "type": "uri", @@ -6536,7 +6155,6 @@ "md5": "5149051c013e27f92552c33c9602bc28", "pid": "A003604534", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003604534", "identifiedBy": [ { "type": "uri", @@ -6551,7 +6169,6 @@ "md5": "fac03d7866f144f4c73511439cea3eaa", "pid": "A003610796", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003610796", "identifiedBy": [ { "type": "uri", @@ -6566,7 +6183,6 @@ "md5": "d7332048f905be97927767fe1ec18541", "pid": "A003611548", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003611548", "identifiedBy": [ { "type": "uri", @@ -6581,7 +6197,6 @@ "md5": "87d3fbde6ed539e10952e8421db37d02", "pid": "A003613760", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003613760", "identifiedBy": [ { "type": "uri", @@ -6596,7 +6211,6 @@ "md5": "ca499560a06cf207864a2da78de2c90a", "pid": "A003618731", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003618731", "identifiedBy": [ { "type": "uri", @@ -6611,7 +6225,6 @@ "md5": "4a487f2b40d31ca2c686e940fba3a6e3", "pid": "A003618791", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003618791", "identifiedBy": [ { "type": "uri", @@ -6626,7 +6239,6 @@ "md5": "c70ad845e87e9d172de12e1d42f84c6d", "pid": "A003618794", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003618794", "identifiedBy": [ { "type": "uri", @@ -6641,7 +6253,6 @@ "md5": "c4f1b49967ed69fdcaf3c52b0decbd9b", "pid": "A003619989", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003619989", "identifiedBy": [ { "type": "uri", @@ -6656,7 +6267,6 @@ "md5": "5202a91bc3bf0072a0918c88d1faaa49", "pid": "A003620019", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003620019", "identifiedBy": [ { "type": "uri", @@ -6671,7 +6281,6 @@ "md5": "143ca67b7590e1943681f186409dcb6a", "pid": "A003620351", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003620351", "identifiedBy": [ { "type": "uri", @@ -6686,7 +6295,6 @@ "md5": "c6d08b6ff9944dd9023dd0369fd98154", "pid": "A003621449", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003621449", "identifiedBy": [ { "type": "uri", @@ -6701,7 +6309,6 @@ "md5": "b8b07c479c222441053e3068bc765a95", "pid": "A003625161", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003625161", "identifiedBy": [ { "type": "uri", @@ -6717,7 +6324,6 @@ "pid": "A003630712", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A003630712", "identifiedBy": [ { "type": "uri", @@ -6732,7 +6338,6 @@ "md5": "3ca718bbd2e495e9548fbd1b93aa8b4f", "pid": "A003632361", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003632361", "identifiedBy": [ { "type": "uri", @@ -6747,7 +6352,6 @@ "md5": "e5fc6b0feb30fce7dad38bd23f7955e9", "pid": "A003637861", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003637861", "identifiedBy": [ { "type": "uri", @@ -6762,7 +6366,6 @@ "md5": "57aec8f415c116d8f7c64a74e599bfeb", "pid": "A003640740", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003640740", "identifiedBy": [ { "type": "uri", @@ -6777,7 +6380,6 @@ "md5": "6cb1f9cbf9f73230fe6dc1740372a83a", "pid": "A003641265", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003641265", "identifiedBy": [ { "type": "uri", @@ -6792,7 +6394,6 @@ "md5": "503ee77c61cf95c4908ead039db7085c", "pid": "A003645251", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003645251", "identifiedBy": [ { "type": "uri", @@ -6815,7 +6416,6 @@ "md5": "4c2df568d531d47ec9c7c70d2d4b0605", "pid": "A003648696", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003648696", "identifiedBy": [ { "type": "uri", @@ -6830,7 +6430,6 @@ "md5": "47d248e6b41fef4da7299590a27f07ff", "pid": "A003650297", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003650297", "identifiedBy": [ { "type": "uri", @@ -6845,7 +6444,6 @@ "md5": "57b8a4dd90d76ec4a216400ed0765d53", "pid": "A003650669", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003650669", "identifiedBy": [ { "type": "uri", @@ -6860,7 +6458,6 @@ "md5": "8a9c25de9d27c36dc5031900978bb564", "pid": "A003653616", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003653616", "identifiedBy": [ { "type": "uri", @@ -6875,7 +6472,6 @@ "md5": "a6c436d2ef57577adacf117ff461673d", "pid": "A003658765", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003658765", "identifiedBy": [ { "type": "uri", @@ -6890,7 +6486,6 @@ "md5": "2f77e27b386b79078a1bc3ff505c2eb6", "pid": "A003660931", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003660931", "identifiedBy": [ { "type": "uri", @@ -6905,7 +6500,6 @@ "md5": "eb7d47720b0c8b875f04cbbc836537a0", "pid": "A003662299", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003662299", "identifiedBy": [ { "type": "uri", @@ -6920,7 +6514,6 @@ "md5": "db5599eddffb0f0986090669180a8974", "pid": "A003662624", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003662624", "identifiedBy": [ { "type": "uri", @@ -6935,7 +6528,6 @@ "md5": "11af21ff080a679383062b9899b413f1", "pid": "A003671506", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003671506", "identifiedBy": [ { "type": "uri", @@ -6950,7 +6542,6 @@ "md5": "54deb991a79333ffb4f0acca9642a849", "pid": "A003672170", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003672170", "identifiedBy": [ { "type": "uri", @@ -6965,7 +6556,6 @@ "md5": "b4af1c866856e357fe783d0f9bfef5e9", "pid": "A003673634", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003673634", "identifiedBy": [ { "type": "uri", @@ -6981,7 +6571,6 @@ "pid": "A003677375", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A003677375", "identifiedBy": [ { "type": "uri", @@ -7002,7 +6591,6 @@ "md5": "7c7a75d9e6d25d7fb01a89cbdd16fa1e", "pid": "A003679975", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003679975", "identifiedBy": [ { "type": "uri", @@ -7018,7 +6606,6 @@ "pid": "A003681000", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A003681000", "identifiedBy": [ { "type": "uri", @@ -7033,7 +6620,6 @@ "md5": "98fd8a63e5a86021521f99008ab80f7e", "pid": "A003685283", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003685283", "identifiedBy": [ { "type": "uri", @@ -7048,7 +6634,6 @@ "md5": "1d267f1c530457d02c81473add30f307", "pid": "A003685465", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003685465", "identifiedBy": [ { "type": "uri", @@ -7063,7 +6648,6 @@ "md5": "dedc3df360eb1cdfddabf4e676d73ded", "pid": "A003688082", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003688082", "identifiedBy": [ { "type": "uri", @@ -7078,7 +6662,6 @@ "md5": "7c1b45c7c024736c59d19dc85673ed30", "pid": "A003688354", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003688354", "identifiedBy": [ { "type": "uri", @@ -7093,7 +6676,6 @@ "md5": "71d9b3ed1e84234b035a9c6077782395", "pid": "A003696554", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003696554", "identifiedBy": [ { "type": "uri", @@ -7108,7 +6690,6 @@ "md5": "93053e5e835b78ed4c5c05a9f1b84e5e", "pid": "A003699041", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003699041", "identifiedBy": [ { "type": "uri", @@ -7124,7 +6705,6 @@ "pid": "A003703519", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A003703519", "identifiedBy": [ { "type": "uri", @@ -7140,7 +6720,6 @@ "pid": "A003703655", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A003703655", "identifiedBy": [ { "type": "uri", @@ -7155,7 +6734,6 @@ "md5": "059348a0eedbc5d95db0e87d18869ad3", "pid": "A003706170", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003706170", "identifiedBy": [ { "type": "uri", @@ -7170,7 +6748,6 @@ "md5": "64c56d561cd2c274886963f8b6d8e12e", "pid": "A003710512", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003710512", "identifiedBy": [ { "type": "uri", @@ -7189,7 +6766,6 @@ "pid": "A003713064", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A003713064", "identifiedBy": [ { "type": "uri", @@ -7204,7 +6780,6 @@ "md5": "3fa23bff05b72dc1876353baf480f22b", "pid": "A003717532", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003717532", "identifiedBy": [ { "type": "uri", @@ -7219,7 +6794,6 @@ "md5": "e42b5d77536ab9f2530c913316f688eb", "pid": "A003719235", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003719235", "identifiedBy": [ { "type": "uri", @@ -7234,7 +6808,6 @@ "md5": "a0f0b0377b57f722ad841d26ff428d2c", "pid": "A003721710", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003721710", "identifiedBy": [ { "type": "uri", @@ -7249,7 +6822,6 @@ "md5": "81778ea51e1233abce107cfe540ee588", "pid": "A003728520", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003728520", "identifiedBy": [ { "type": "uri", @@ -7264,7 +6836,6 @@ "md5": "fd2d703df8d78ff7f778680e027bcfc5", "pid": "A003733566", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003733566", "identifiedBy": [ { "type": "uri", @@ -7279,7 +6850,6 @@ "md5": "f25e0638cfedc6dda33ad32cb883d622", "pid": "A003734370", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003734370", "identifiedBy": [ { "type": "uri", @@ -7294,7 +6864,6 @@ "md5": "9f577f5eb444a9d944281f9b1961e078", "pid": "A003736990", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003736990", "identifiedBy": [ { "type": "uri", @@ -7309,7 +6878,6 @@ "md5": "63182f3dace880719c079d8bab754b1b", "pid": "A003737238", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003737238", "identifiedBy": [ { "type": "uri", @@ -7324,7 +6892,6 @@ "md5": "6fe1a83a8b98ceb8b4e6e5cf131afd37", "pid": "A003743096", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003743096", "identifiedBy": [ { "type": "uri", @@ -7339,7 +6906,6 @@ "md5": "866a184f0298c89a8534930b1bf3b2e8", "pid": "A003743887", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003743887", "identifiedBy": [ { "type": "uri", @@ -7367,7 +6933,6 @@ "md5": "9272e4edc3bceaa0ad1755767cf8be7c", "pid": "A003744787", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003744787", "identifiedBy": [ { "type": "uri", @@ -7392,7 +6957,6 @@ "md5": "6820a91ba2d229b2e564f9ad3b256a9f", "pid": "A003747661", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003747661", "identifiedBy": [ { "type": "uri", @@ -7407,7 +6971,6 @@ "md5": "a13230d1b69cd6cb779ae051308e9c07", "pid": "A003751647", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003751647", "identifiedBy": [ { "type": "uri", @@ -7422,7 +6985,6 @@ "md5": "06adbfd74282078de50eac931a421034", "pid": "A003752143", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003752143", "identifiedBy": [ { "type": "uri", @@ -7437,7 +6999,6 @@ "md5": "36f00fc23651775b3a0cd09d67e31d34", "pid": "A003755899", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003755899", "identifiedBy": [ { "type": "uri", @@ -7452,7 +7013,6 @@ "md5": "d179675204693d4c47095d46d405a321", "pid": "A003759742", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003759742", "identifiedBy": [ { "type": "uri", @@ -7467,7 +7027,6 @@ "md5": "28b399cc90db286cd68367ded6b8c66d", "pid": "A003763487", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003763487", "identifiedBy": [ { "type": "uri", @@ -7482,7 +7041,6 @@ "md5": "6a82a52c4d05911e062d8a235b41c8f0", "pid": "A003768835", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003768835", "identifiedBy": [ { "type": "uri", @@ -7497,7 +7055,6 @@ "md5": "ff3d30a2ff557a141bf53528df4a1481", "pid": "A003780412", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003780412", "identifiedBy": [ { "type": "uri", @@ -7512,7 +7069,6 @@ "md5": "aad512aaa159b95631f77288c79f7710", "pid": "A003781775", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003781775", "identifiedBy": [ { "type": "uri", @@ -7527,7 +7083,6 @@ "md5": "af1c3d97fb87699c3b34e73e33bf7dea", "pid": "A003782234", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003782234", "identifiedBy": [ { "type": "uri", @@ -7542,7 +7097,6 @@ "md5": "242776243aab2c8b850fa9d71f31eae6", "pid": "A003783872", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003783872", "identifiedBy": [ { "type": "uri", @@ -7557,7 +7111,6 @@ "md5": "4d3a7b275ecaa12166c82ea3e0bd5c81", "pid": "A003788311", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003788311", "identifiedBy": [ { "type": "uri", @@ -7572,7 +7125,6 @@ "md5": "517e1cfd65756b9f38ac11cf9484c125", "pid": "A003789261", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003789261", "identifiedBy": [ { "type": "uri", @@ -7600,7 +7152,6 @@ "md5": "678d0d668554a91b20689f8cdbe08dcd", "pid": "A003794166", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003794166", "identifiedBy": [ { "type": "uri", @@ -7615,7 +7166,6 @@ "md5": "b5cdb788df4d775f2e8c0dc9dc00f775", "pid": "A003794394", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003794394", "identifiedBy": [ { "type": "uri", @@ -7630,7 +7180,6 @@ "md5": "efef68148883f1d39b4912f7c440ca3e", "pid": "A003794788", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003794788", "identifiedBy": [ { "type": "uri", @@ -7645,7 +7194,6 @@ "md5": "ceca023bd6eb35b9380dcb3b6f156f4c", "pid": "A003795823", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003795823", "identifiedBy": [ { "type": "uri", @@ -7660,7 +7208,6 @@ "md5": "ccc8d4c164131dd0975f43d566179501", "pid": "A003795824", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003795824", "identifiedBy": [ { "type": "uri", @@ -7675,7 +7222,6 @@ "md5": "e32ec6517c2bde36fa7400819b7ff5d1", "pid": "A003797257", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003797257", "identifiedBy": [ { "type": "uri", @@ -7690,7 +7236,6 @@ "md5": "3ac04e33c221d1f383abd4ef3518c449", "pid": "A003808479", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003808479", "identifiedBy": [ { "type": "uri", @@ -7705,7 +7250,6 @@ "md5": "d3cfc59f4f4f353813659fc5d5600a99", "pid": "A003808958", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003808958", "identifiedBy": [ { "type": "uri", @@ -7720,7 +7264,6 @@ "md5": "4d1196071bed56761d4115f9fadc9469", "pid": "A003809251", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003809251", "identifiedBy": [ { "type": "uri", @@ -7738,7 +7281,6 @@ "md5": "d3d37b608a6bdec6a6a77f574ebe665c", "pid": "A003811660", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003811660", "identifiedBy": [ { "type": "uri", @@ -7753,7 +7295,6 @@ "md5": "0833fe74a7a1ad446bef2c69c378df91", "pid": "A003813334", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003813334", "identifiedBy": [ { "type": "uri", @@ -7768,7 +7309,6 @@ "md5": "d7c78ae9ad7e46a0fae20e550603e488", "pid": "A003817832", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003817832", "identifiedBy": [ { "type": "uri", @@ -7783,7 +7323,6 @@ "md5": "c000516aa7cbc547a57fadb01fd2fec3", "pid": "A003819619", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003819619", "identifiedBy": [ { "type": "uri", @@ -7798,7 +7337,6 @@ "md5": "5954abcdbc2f5d33ecd54e11c7cd109b", "pid": "A003822497", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003822497", "identifiedBy": [ { "type": "uri", @@ -7813,7 +7351,6 @@ "md5": "c71ed0746adb38c6ccfc1e8eb689474a", "pid": "A003825451", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003825451", "identifiedBy": [ { "type": "uri", @@ -7828,7 +7365,6 @@ "md5": "e1305b09ee906809390bbe7576c96878", "pid": "A003827438", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003827438", "identifiedBy": [ { "type": "uri", @@ -7843,7 +7379,6 @@ "md5": "c6edea96f028077b18242554da7eac38", "pid": "A003827929", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003827929", "identifiedBy": [ { "type": "uri", @@ -7858,7 +7393,6 @@ "md5": "407e984bb9f2bc691f672614f3003ffa", "pid": "A003829549", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003829549", "identifiedBy": [ { "type": "uri", @@ -7873,7 +7407,6 @@ "md5": "b86ffecc41bc0295dddd415bc9c88e25", "pid": "A003830445", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003830445", "identifiedBy": [ { "type": "uri", @@ -7888,7 +7421,6 @@ "md5": "16ac2451d461248aa68a912b2197bfb1", "pid": "A003833071", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003833071", "identifiedBy": [ { "type": "uri", @@ -7903,7 +7435,6 @@ "md5": "4fc8e16b35c12622882fa119783b6fec", "pid": "A003835588", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003835588", "identifiedBy": [ { "type": "uri", @@ -7918,7 +7449,6 @@ "md5": "63dd57e4552367756b4d20fd4bf9b138", "pid": "A003839353", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003839353", "identifiedBy": [ { "type": "uri", @@ -7933,7 +7463,6 @@ "md5": "532890a41d79c437e39af4b7c2b4f121", "pid": "A003840255", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003840255", "identifiedBy": [ { "type": "uri", @@ -7948,7 +7477,6 @@ "md5": "76b75b5f7795953cf4e559fb63fee5c4", "pid": "A003840370", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003840370", "identifiedBy": [ { "type": "uri", @@ -7963,7 +7491,6 @@ "md5": "9224fc680aa9a316c4c4932abd36f44e", "pid": "A003840561", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003840561", "identifiedBy": [ { "type": "uri", @@ -7979,7 +7506,6 @@ "pid": "A003842524", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A003842524", "identifiedBy": [ { "type": "uri", @@ -7995,7 +7521,6 @@ "pid": "A003845264", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A003845264", "identifiedBy": [ { "type": "uri", @@ -8010,7 +7535,6 @@ "md5": "d33140b052cdf740758348ae2a5656fb", "pid": "A003849275", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003849275", "identifiedBy": [ { "type": "uri", @@ -8025,7 +7549,6 @@ "md5": "88c0b05bdf4919a11caeb45a87c10a44", "pid": "A003849995", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003849995", "identifiedBy": [ { "type": "uri", @@ -8040,7 +7563,6 @@ "md5": "6bbd565e01e22c2a3418e42191599f16", "pid": "A003852855", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003852855", "identifiedBy": [ { "type": "uri", @@ -8055,7 +7577,6 @@ "md5": "8daa93d88678176b3136bb19adc9cf85", "pid": "A003853351", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003853351", "identifiedBy": [ { "type": "uri", @@ -8070,7 +7591,6 @@ "md5": "eddfabcff3a1c27bbe3fb8b01197c0e1", "pid": "A003854679", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003854679", "identifiedBy": [ { "type": "uri", @@ -8085,7 +7605,6 @@ "md5": "263825dd4bfc7289afa254d6f2b20d46", "pid": "A003861370", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003861370", "identifiedBy": [ { "type": "uri", @@ -8100,7 +7619,6 @@ "md5": "d28fa03aa843915bd7733218a098027c", "pid": "A003863577", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003863577", "identifiedBy": [ { "type": "uri", @@ -8115,7 +7633,6 @@ "md5": "47906b7dabe7d5912fa50ddbfc792f1c", "pid": "A003870613", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003870613", "identifiedBy": [ { "type": "uri", @@ -8130,7 +7647,6 @@ "md5": "a85347a9326f988ebf69bf7908b0363e", "pid": "A003881754", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003881754", "identifiedBy": [ { "type": "uri", @@ -8145,7 +7661,6 @@ "md5": "271bd165fe5c287bd56fd90a8613f8ed", "pid": "A003883009", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003883009", "identifiedBy": [ { "type": "uri", @@ -8160,7 +7675,6 @@ "md5": "767712031bc82c97eaa74ffe7f59036a", "pid": "A003883330", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003883330", "identifiedBy": [ { "type": "uri", @@ -8175,7 +7689,6 @@ "md5": "46befdedb29f5e7676f92a2c2eb91b15", "pid": "A003883717", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003883717", "identifiedBy": [ { "type": "uri", @@ -8190,7 +7703,6 @@ "md5": "7c9f10c50dd1b30fefa3ef55ebc8d05b", "pid": "A003883777", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003883777", "identifiedBy": [ { "type": "uri", @@ -8205,7 +7717,6 @@ "md5": "4b2a320916e6684376de1fd5d58a5dfb", "pid": "A003886758", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003886758", "identifiedBy": [ { "type": "uri", @@ -8220,7 +7731,6 @@ "md5": "a7ca66a68f06f6f79473d4264bb7f01d", "pid": "A003889324", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003889324", "identifiedBy": [ { "type": "uri", @@ -8235,7 +7745,6 @@ "md5": "31b04274af8e127fa3f4cada3ab8ff91", "pid": "A003890737", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003890737", "identifiedBy": [ { "type": "uri", @@ -8250,7 +7759,6 @@ "md5": "39abb1eccf93ef10bf444c121fcd68fd", "pid": "A003895492", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003895492", "identifiedBy": [ { "type": "uri", @@ -8265,7 +7773,6 @@ "md5": "f80225178987416c2bf566bc42c5fb9b", "pid": "A003899816", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003899816", "identifiedBy": [ { "type": "uri", @@ -8280,7 +7787,6 @@ "md5": "e3cf7416bc17c0d7a6e0fd5177336af3", "pid": "A003902263", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003902263", "identifiedBy": [ { "type": "uri", @@ -8295,7 +7801,6 @@ "md5": "e7a348c849ca02af7a02dccd6109b15b", "pid": "A003905474", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003905474", "identifiedBy": [ { "type": "uri", @@ -8310,7 +7815,6 @@ "md5": "5aa7b26adac39458940bd31345f3551a", "pid": "A003913856", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003913856", "identifiedBy": [ { "type": "uri", @@ -8325,7 +7829,6 @@ "md5": "4bf6e99911acd5d4dd1e44056d7cc472", "pid": "A003919082", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003919082", "identifiedBy": [ { "type": "uri", @@ -8340,7 +7843,6 @@ "md5": "929a48696cde14bd23c0d3feaa45ef8c", "pid": "A003936311", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003936311", "identifiedBy": [ { "type": "uri", @@ -8355,7 +7857,6 @@ "md5": "8432fe9d957c26f2369319a386013979", "pid": "A003943767", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003943767", "identifiedBy": [ { "type": "uri", @@ -8370,7 +7871,6 @@ "md5": "06e8e6c4f4d3bf2823d68ad897f1f33d", "pid": "A003947464", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003947464", "identifiedBy": [ { "type": "uri", @@ -8385,7 +7885,6 @@ "md5": "2d563d60627bdf4f85df060eeda37e8a", "pid": "A003948416", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003948416", "identifiedBy": [ { "type": "uri", @@ -8400,7 +7899,6 @@ "md5": "ccc644c54741d24c578c5433b44d9dd6", "pid": "A003958822", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003958822", "identifiedBy": [ { "type": "uri", @@ -8415,7 +7913,6 @@ "md5": "500497413e943201f0e428e29eb86685", "pid": "A003966124", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003966124", "identifiedBy": [ { "type": "uri", @@ -8430,7 +7927,6 @@ "md5": "332b2bea5752d185e4de3b7049122eea", "pid": "A003967245", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003967245", "identifiedBy": [ { "type": "uri", @@ -8445,7 +7941,6 @@ "md5": "f88967cac16ff6868d145ad3fd2a937f", "pid": "A003969580", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003969580", "identifiedBy": [ { "type": "uri", @@ -8460,7 +7955,6 @@ "md5": "9821657fc53e796c660965d53068c789", "pid": "A003969900", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003969900", "identifiedBy": [ { "type": "uri", @@ -8475,7 +7969,6 @@ "md5": "766aa4c090fc452c9397d4288c45da44", "pid": "A003971618", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003971618", "identifiedBy": [ { "type": "uri", @@ -8490,7 +7983,6 @@ "md5": "3b1ef1e267e3782e7990246582dafcb5", "pid": "A003973251", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003973251", "identifiedBy": [ { "type": "uri", @@ -8505,7 +7997,6 @@ "md5": "f6f36fa615f76030b0d1ef1b21e6cf24", "pid": "A003975282", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003975282", "identifiedBy": [ { "type": "uri", @@ -8520,7 +8011,6 @@ "md5": "df423a8ba5daa42c71b37f2a66bd4622", "pid": "A003981555", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003981555", "identifiedBy": [ { "type": "uri", @@ -8546,7 +8036,6 @@ "md5": "785be34addddf69f2481458b3b168096", "pid": "A003981870", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003981870", "identifiedBy": [ { "type": "uri", @@ -8561,7 +8050,6 @@ "md5": "165da7e16a48fc2df2496b6276282a2a", "pid": "A003984942", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003984942", "identifiedBy": [ { "type": "uri", @@ -8576,7 +8064,6 @@ "md5": "296559d131813d723c21954c880e0e9b", "pid": "A003985806", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003985806", "identifiedBy": [ { "type": "uri", @@ -8591,7 +8078,6 @@ "md5": "a8fb9b4e705938b59d61ea8c226dc169", "pid": "A003988011", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003988011", "identifiedBy": [ { "type": "uri", @@ -8606,7 +8092,6 @@ "md5": "a503f30abeccf5fe9b202bee3a6d8695", "pid": "A003988126", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003988126", "identifiedBy": [ { "type": "uri", @@ -8621,7 +8106,6 @@ "md5": "a2d040488f982c748a687c89110c1fe2", "pid": "A003990251", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003990251", "identifiedBy": [ { "type": "uri", @@ -8636,7 +8120,6 @@ "md5": "451993ab7bfd750b43d3c7197066f6f2", "pid": "A003991229", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003991229", "identifiedBy": [ { "type": "uri", @@ -8651,7 +8134,6 @@ "md5": "de19d6f23204a332907eeda5e34fb325", "pid": "A003994705", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003994705", "identifiedBy": [ { "type": "uri", @@ -8666,7 +8148,6 @@ "md5": "a90ef22af750515de210034d68b0a44a", "pid": "A003995908", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003995908", "identifiedBy": [ { "type": "uri", @@ -8681,7 +8162,6 @@ "md5": "7dcef8dcc64d9eb22bad9064a3027b96", "pid": "A003999648", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A003999648", "identifiedBy": [ { "type": "uri", @@ -8697,7 +8177,6 @@ "pid": "A005312991", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A005312991", "identifiedBy": [ { "type": "uri", @@ -8717,7 +8196,6 @@ "pid": "A005368039", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A005368039", "identifiedBy": [ { "type": "uri", @@ -8738,7 +8216,6 @@ "pid": "A005460720", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A005460720", "identifiedBy": [ { "type": "uri", @@ -8754,7 +8231,6 @@ "pid": "A005463202", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A005463202", "identifiedBy": [ { "type": "uri", @@ -8776,7 +8252,6 @@ "pid": "A005464802", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A005464802", "identifiedBy": [ { "type": "uri", @@ -8798,7 +8273,6 @@ "pid": "A005466192", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A005466192", "identifiedBy": [ { "type": "uri", @@ -8820,7 +8294,6 @@ "pid": "A005469950", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A005469950", "identifiedBy": [ { "type": "uri", @@ -8842,7 +8315,6 @@ "pid": "A005471055", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A005471055", "identifiedBy": [ { "type": "uri", @@ -8858,7 +8330,6 @@ "pid": "A005475587", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A005475587", "identifiedBy": [ { "type": "uri", @@ -8882,7 +8353,6 @@ "pid": "A005480840", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A005480840", "identifiedBy": [ { "type": "uri", @@ -8908,7 +8378,6 @@ "pid": "A005495353", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A005495353", "identifiedBy": [ { "type": "uri", @@ -8940,7 +8409,6 @@ "pid": "A005496746", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A005496746", "identifiedBy": [ { "type": "uri", @@ -8969,7 +8437,6 @@ "md5": "892e4eea003867b016ece3fbe6b6a4cf", "pid": "A005513603", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A005513603", "identifiedBy": [ { "type": "uri", @@ -8988,7 +8455,6 @@ "md5": "cc824494dbd15df2d4feb44d184cbd3a", "pid": "A005522657", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A005522657", "identifiedBy": [ { "type": "uri", @@ -9003,7 +8469,6 @@ "md5": "a7bef5cb33b0be49aa6940e6ca7c16e2", "pid": "A005533991", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A005533991", "identifiedBy": [ { "type": "uri", @@ -9018,7 +8483,6 @@ "md5": "af530e4ecb9a852421518cf50807be8a", "pid": "A005558255", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A005558255", "identifiedBy": [ { "type": "uri", @@ -9033,7 +8497,6 @@ "md5": "ae398c3df18f938104de3b746f57c1f0", "pid": "A005570502", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A005570502", "identifiedBy": [ { "type": "uri", @@ -9049,7 +8512,6 @@ "pid": "A005573785", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A005573785", "identifiedBy": [ { "type": "uri", @@ -9064,7 +8526,6 @@ "md5": "ccf54c83079dacf3b44cb327c4c638b0", "pid": "A005595559", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A005595559", "identifiedBy": [ { "type": "uri", @@ -9079,7 +8540,6 @@ "md5": "bf16966c20e99517311841e0dc13d383", "pid": "A005599445", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A005599445", "identifiedBy": [ { "type": "uri", @@ -9094,7 +8554,6 @@ "md5": "802e3f6049349725b9040f860847f9e8", "pid": "A005605846", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A005605846", "identifiedBy": [ { "type": "uri", @@ -9110,7 +8569,6 @@ "pid": "A005621817", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A005621817", "identifiedBy": [ { "type": "uri", @@ -9125,7 +8583,6 @@ "md5": "94ec7c012bb49741ca7b63cf941dfd77", "pid": "A005623637", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A005623637", "identifiedBy": [ { "type": "uri", @@ -9140,7 +8597,6 @@ "md5": "b2940ab2369e95a920237f9f64e8a99b", "pid": "A005655274", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A005655274", "identifiedBy": [ { "type": "uri", @@ -9155,7 +8611,6 @@ "md5": "71f4ea8b9e989219f809490b7978f4b5", "pid": "A005663176", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A005663176", "identifiedBy": [ { "type": "uri", @@ -9170,7 +8625,6 @@ "md5": "6af22b7341293906a694706a3b79de96", "pid": "A005673019", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A005673019", "identifiedBy": [ { "type": "uri", @@ -9185,7 +8639,6 @@ "md5": "f75c56dbeb42f32980c461248ca7f290", "pid": "A005680197", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A005680197", "identifiedBy": [ { "type": "uri", @@ -9201,7 +8654,6 @@ "pid": "A005718969", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A005718969", "identifiedBy": [ { "type": "uri", @@ -9216,7 +8668,6 @@ "md5": "417d6dfdec80ee1115b23933fec03b1a", "pid": "A005732208", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A005732208", "identifiedBy": [ { "type": "uri", @@ -9232,7 +8683,6 @@ "pid": "A005753197", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A005753197", "identifiedBy": [ { "type": "uri", @@ -9247,7 +8697,6 @@ "md5": "8992d254e87e10850df9dd74906e8e8b", "pid": "A005770175", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A005770175", "identifiedBy": [ { "type": "uri", @@ -9262,7 +8711,6 @@ "md5": "6365fdac83c809a7e32e92083bcef1ba", "pid": "A005787734", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A005787734", "identifiedBy": [ { "type": "uri", @@ -9277,7 +8725,6 @@ "md5": "6fd56cbee2cce6db816b69dcb3354814", "pid": "A005794650", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A005794650", "identifiedBy": [ { "type": "uri", @@ -9292,7 +8739,6 @@ "md5": "11509f726ab600b941c0696b77fda148", "pid": "A005814757", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A005814757", "identifiedBy": [ { "type": "uri", @@ -9307,7 +8753,6 @@ "md5": "bf4a3bfbac96d7cd9aca68c5e6aa5eca", "pid": "A005821830", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A005821830", "identifiedBy": [ { "type": "uri", @@ -9322,7 +8767,6 @@ "md5": "9dab18c233b1d364f14a78e96a822639", "pid": "A005915341", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A005915341", "identifiedBy": [ { "type": "uri", @@ -9337,7 +8781,6 @@ "md5": "77408e214c4c12e47a1cdbe033b01acd", "pid": "A005942520", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A005942520", "identifiedBy": [ { "type": "uri", @@ -9352,7 +8795,6 @@ "md5": "fb53444da9fd9396df418767a863ad0b", "pid": "A005944951", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A005944951", "identifiedBy": [ { "type": "uri", @@ -9367,7 +8809,6 @@ "md5": "06374efb4795160b9daa8c7dc316ff19", "pid": "A005945920", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A005945920", "identifiedBy": [ { "type": "uri", @@ -9382,7 +8823,6 @@ "md5": "291c1d33a3cfdb762b40f125723a6a1b", "pid": "A005984015", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A005984015", "identifiedBy": [ { "type": "uri", @@ -9397,7 +8837,6 @@ "md5": "8ea6fce63d5040719ec535a6dad3cfaf", "pid": "A005995031", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A005995031", "identifiedBy": [ { "type": "uri", @@ -9412,7 +8851,6 @@ "md5": "1969d8bd154110a21de0c3a4d067a72e", "pid": "A006018560", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A006018560", "identifiedBy": [ { "type": "uri", @@ -9427,7 +8865,6 @@ "md5": "ee3ec7abdd8a606318d283b6833083e3", "pid": "A006023343", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A006023343", "identifiedBy": [ { "type": "uri", @@ -9442,7 +8879,6 @@ "md5": "5a7b5d30870193e28a9cf86b97936913", "pid": "A006035318", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A006035318", "identifiedBy": [ { "type": "uri", @@ -9457,7 +8893,6 @@ "md5": "94187e9cfe4dbf59c5e9a47129f7eea5", "pid": "A006048308", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A006048308", "identifiedBy": [ { "type": "uri", @@ -9473,7 +8908,6 @@ "pid": "A006055239", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A006055239", "identifiedBy": [ { "type": "uri", @@ -9489,7 +8923,6 @@ "pid": "A006055590", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A006055590", "identifiedBy": [ { "type": "uri", @@ -9504,7 +8937,6 @@ "md5": "67d33d00127a0431942ec8cdfd4f1b00", "pid": "A006065033", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A006065033", "identifiedBy": [ { "type": "uri", @@ -9519,7 +8951,6 @@ "md5": "f34f04deba884efa3bf14e4f49643a13", "pid": "A006071676", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A006071676", "identifiedBy": [ { "type": "uri", @@ -9534,7 +8965,6 @@ "md5": "18bf5f099ac8f5a10816afd7bc26df02", "pid": "A006094802", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A006094802", "identifiedBy": [ { "type": "uri", @@ -9550,7 +8980,6 @@ "pid": "A006099782", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A006099782", "identifiedBy": [ { "type": "uri", @@ -9565,7 +8994,6 @@ "md5": "d98c6be7225660979a7f0bfc87fdd98d", "pid": "A006102670", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A006102670", "identifiedBy": [ { "type": "uri", @@ -9581,7 +9009,6 @@ "pid": "A006154163", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A006154163", "identifiedBy": [ { "type": "uri", @@ -9596,7 +9023,6 @@ "md5": "a08844ce429ccc47130907ec94722dad", "pid": "A006159385", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A006159385", "identifiedBy": [ { "type": "uri", @@ -9611,7 +9037,6 @@ "md5": "c6f8df352647ec5012e30773fb54ede2", "pid": "A006173450", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A006173450", "identifiedBy": [ { "type": "uri", @@ -9626,7 +9051,6 @@ "md5": "4c7267f52db733bd0a9c60cb71afceec", "pid": "A006173574", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A006173574", "identifiedBy": [ { "type": "uri", @@ -9642,7 +9066,6 @@ "pid": "A006204823", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A006204823", "identifiedBy": [ { "type": "uri", @@ -9657,7 +9080,6 @@ "md5": "8aef76cd3b1a93c174b4731b68cffad9", "pid": "A006210520", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A006210520", "identifiedBy": [ { "type": "uri", @@ -9673,7 +9095,6 @@ "pid": "A006220068", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A006220068", "identifiedBy": [ { "type": "uri", @@ -9689,7 +9110,6 @@ "pid": "A006225272", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A006225272", "identifiedBy": [ { "type": "uri", @@ -9716,7 +9136,6 @@ "md5": "bbcec2c477c3c7b849b11011c22b9fa9", "pid": "A006241487", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A006241487", "identifiedBy": [ { "type": "uri", @@ -9731,7 +9150,6 @@ "md5": "394a2d06b92e955fec814ad5cd33bcea", "pid": "A006246319", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A006246319", "identifiedBy": [ { "type": "uri", @@ -9752,7 +9170,6 @@ "md5": "eddca81585e4b4adb4cd132c07986bf9", "pid": "A006251854", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A006251854", "identifiedBy": [ { "type": "uri", @@ -9767,7 +9184,6 @@ "md5": "326da27334aceeecff7c137685c0cff3", "pid": "A006282682", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A006282682", "identifiedBy": [ { "type": "uri", @@ -9782,7 +9198,6 @@ "md5": "9534a91b26c5a3d05c72fa0f4c009609", "pid": "A006288245", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A006288245", "identifiedBy": [ { "type": "uri", @@ -9798,7 +9213,6 @@ "pid": "A006304507", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A006304507", "identifiedBy": [ { "type": "uri", @@ -9823,7 +9237,6 @@ "md5": "820bc2756f9266e83b3aeca90d0275f6", "pid": "A006305372", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A006305372", "identifiedBy": [ { "type": "uri", @@ -9839,7 +9252,6 @@ "pid": "A006319847", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A006319847", "identifiedBy": [ { "type": "uri", @@ -9854,7 +9266,6 @@ "md5": "f4ba8a6a73801fefafe461aa2bff63cb", "pid": "A006331016", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A006331016", "identifiedBy": [ { "type": "uri", @@ -9870,7 +9281,6 @@ "pid": "A006378241", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A006378241", "identifiedBy": [ { "type": "uri", @@ -9885,7 +9295,6 @@ "md5": "c15b1f05250bc8d72a60581282daba8a", "pid": "A006384206", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A006384206", "identifiedBy": [ { "type": "uri", @@ -9900,7 +9309,6 @@ "md5": "0bb239c86b8191f693f8e24952285078", "pid": "A006389498", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A006389498", "identifiedBy": [ { "type": "uri", @@ -9916,7 +9324,6 @@ "pid": "A006407470", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A006407470", "identifiedBy": [ { "type": "uri", @@ -9931,7 +9338,6 @@ "md5": "fc9c27840bd8ae088efea776b3c16677", "pid": "A006417880", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A006417880", "identifiedBy": [ { "type": "uri", @@ -9946,7 +9352,6 @@ "md5": "b6234681054333de6896142d124412bb", "pid": "A006417971", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A006417971", "identifiedBy": [ { "type": "uri", @@ -9961,7 +9366,6 @@ "md5": "0dc54a0867cf1ebec8072ba09e81f51c", "pid": "A006451071", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A006451071", "identifiedBy": [ { "type": "uri", @@ -9976,7 +9380,6 @@ "md5": "51349cbd23ae66bd973e3d1af467b50d", "pid": "A006525884", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A006525884", "identifiedBy": [ { "type": "uri", @@ -9991,7 +9394,6 @@ "md5": "8bbca73e16b92b247fcf7a962a433fc9", "pid": "A006533818", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A006533818", "identifiedBy": [ { "type": "uri", @@ -10007,7 +9409,6 @@ "pid": "A006534193", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A006534193", "identifiedBy": [ { "type": "uri", @@ -10022,7 +9423,6 @@ "md5": "61ac0959233efd40639e9f1a2718b440", "pid": "A006581053", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A006581053", "identifiedBy": [ { "type": "uri", @@ -10037,7 +9437,6 @@ "md5": "64ddaf8e364c16686d73919ca6fc39e5", "pid": "A008584612", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A008584612", "identifiedBy": [ { "type": "uri", @@ -10052,7 +9451,6 @@ "md5": "099150d52f00caec299adf138e0b5672", "pid": "A008591482", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A008591482", "identifiedBy": [ { "type": "uri", @@ -10067,7 +9465,6 @@ "md5": "c01984045024a75e60fa767a38e3cd38", "pid": "A008595638", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A008595638", "identifiedBy": [ { "type": "uri", @@ -10082,7 +9479,6 @@ "md5": "5cd80c0753095a6a0dd90db24852d54b", "pid": "A008660620", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A008660620", "identifiedBy": [ { "type": "uri", @@ -10097,7 +9493,6 @@ "md5": "9a0cb61575e9453e10be997e99bd79a7", "pid": "A008729062", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A008729062", "identifiedBy": [ { "type": "uri", @@ -10112,7 +9507,6 @@ "md5": "0b1f0a7f29fd237cf56596055abaf784", "pid": "A008730051", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A008730051", "identifiedBy": [ { "type": "uri", @@ -10127,7 +9521,6 @@ "md5": "6a9f7bba85f0667bd1e7b8ecbe17ac94", "pid": "A008794733", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A008794733", "identifiedBy": [ { "type": "uri", @@ -10143,7 +9536,6 @@ "pid": "A008799434", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A008799434", "identifiedBy": [ { "type": "uri", @@ -10158,7 +9550,6 @@ "md5": "d48abbc3638b02e09edf402bbd107d6f", "pid": "A008811165", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A008811165", "identifiedBy": [ { "type": "uri", @@ -10173,7 +9564,6 @@ "md5": "81f6f82040696db4398f5c12ed0d1430", "pid": "A008813776", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A008813776", "identifiedBy": [ { "type": "uri", @@ -10188,7 +9578,6 @@ "md5": "d8108190a005d7c420b6438f54f6e406", "pid": "A008846996", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A008846996", "identifiedBy": [ { "type": "uri", @@ -10203,7 +9592,6 @@ "md5": "8ac882d17814199776ada7128ebffdf5", "pid": "A008873000", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A008873000", "identifiedBy": [ { "type": "uri", @@ -10218,7 +9606,6 @@ "md5": "3073ea2ba4befa8e02f6a24148b4de0f", "pid": "A008883799", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A008883799", "identifiedBy": [ { "type": "uri", @@ -10234,7 +9621,6 @@ "pid": "A008902038", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A008902038", "identifiedBy": [ { "type": "uri", @@ -10249,7 +9635,6 @@ "md5": "2976f677178a03290aa04123b4d965ed", "pid": "A008915559", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A008915559", "identifiedBy": [ { "type": "uri", @@ -10264,7 +9649,6 @@ "md5": "4d83c44c524fd353b2fc9543745efd06", "pid": "A008943784", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A008943784", "identifiedBy": [ { "type": "uri", @@ -10279,7 +9663,6 @@ "md5": "2905921d6eee127415869acd3065101b", "pid": "A008959724", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A008959724", "identifiedBy": [ { "type": "uri", @@ -10294,7 +9677,6 @@ "md5": "6970e8a968a22a6e2781a8109f56603e", "pid": "A008978887", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A008978887", "identifiedBy": [ { "type": "uri", @@ -10310,7 +9692,6 @@ "pid": "A009007993", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A009007993", "identifiedBy": [ { "type": "uri", @@ -10325,7 +9706,6 @@ "md5": "51580f0ea83c59c03c4ae031a026fa03", "pid": "A009035130", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A009035130", "identifiedBy": [ { "type": "uri", @@ -10340,7 +9720,6 @@ "md5": "5623b11b84b7b01bcd25e847e216b538", "pid": "A009047642", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A009047642", "identifiedBy": [ { "type": "uri", @@ -10355,7 +9734,6 @@ "md5": "d38360f04ff03a534eead81d93806bdf", "pid": "A009059078", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A009059078", "identifiedBy": [ { "type": "uri", @@ -10371,7 +9749,6 @@ "pid": "A009061697", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A009061697", "identifiedBy": [ { "type": "uri", @@ -10395,7 +9772,6 @@ "pid": "A009062623", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A009062623", "identifiedBy": [ { "type": "uri", @@ -10416,7 +9792,6 @@ "md5": "42cb28b69b7842a10e4cd50840f65fff", "pid": "A009084334", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A009084334", "identifiedBy": [ { "type": "uri", @@ -10431,7 +9806,6 @@ "md5": "6548988c3f9f716965eddcdf6845e6bb", "pid": "A009106239", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A009106239", "identifiedBy": [ { "type": "uri", @@ -10447,7 +9821,6 @@ "pid": "A009112861", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A009112861", "identifiedBy": [ { "type": "uri", @@ -10462,7 +9835,6 @@ "md5": "a7d4547e32b4bbb6d0dc627db1c5f676", "pid": "A009177536", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A009177536", "identifiedBy": [ { "type": "uri", @@ -10478,7 +9850,6 @@ "pid": "A009187240", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A009187240", "identifiedBy": [ { "type": "uri", @@ -10508,7 +9879,6 @@ "pid": "A009191402", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A009191402", "identifiedBy": [ { "type": "uri", @@ -10535,7 +9905,6 @@ "md5": "c363f37d78e7730b98fe3cc1b4bc3cd6", "pid": "A009191855", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A009191855", "identifiedBy": [ { "type": "uri", @@ -10550,7 +9919,6 @@ "md5": "70836cd01cb587e1daf6d731e3e2f5f3", "pid": "A009279090", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A009279090", "identifiedBy": [ { "type": "uri", @@ -10565,7 +9933,6 @@ "md5": "f6e5d4014f10d2922d1f6d0d44a526d2", "pid": "A009281447", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A009281447", "identifiedBy": [ { "type": "uri", @@ -10580,7 +9947,6 @@ "md5": "7aa63472b087d447ee96fd7b38cbb0fb", "pid": "A009303631", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A009303631", "identifiedBy": [ { "type": "uri", @@ -10595,7 +9961,6 @@ "md5": "b35012d45efab2998d76439e53aa3fec", "pid": "A009306109", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A009306109", "identifiedBy": [ { "type": "uri", @@ -10610,7 +9975,6 @@ "md5": "68ae464e7493ece6e345631445c4023d", "pid": "A009309124", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A009309124", "identifiedBy": [ { "type": "uri", @@ -10625,7 +9989,6 @@ "md5": "8d55d5b69a70617860e2382886d68522", "pid": "A009315376", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A009315376", "identifiedBy": [ { "type": "uri", @@ -10640,7 +10003,6 @@ "md5": "6f978967b8239b06f09dbc11b41eeae4", "pid": "A009341300", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A009341300", "identifiedBy": [ { "type": "uri", @@ -10655,7 +10017,6 @@ "md5": "f710b443489ade63cb86d7227352526e", "pid": "A009366379", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A009366379", "identifiedBy": [ { "type": "uri", @@ -10670,7 +10031,6 @@ "md5": "b189e96c4e91e7076c804a298cde3a7f", "pid": "A009366743", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A009366743", "identifiedBy": [ { "type": "uri", @@ -10685,7 +10045,6 @@ "md5": "2c31040c3012ff19594df5f01881f99c", "pid": "A009390744", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A009390744", "identifiedBy": [ { "type": "uri", @@ -10701,7 +10060,6 @@ "pid": "A009403017", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A009403017", "identifiedBy": [ { "type": "uri", @@ -10722,7 +10080,6 @@ "md5": "3823233071d37a74308df75a9015f944", "pid": "A009426238", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A009426238", "identifiedBy": [ { "type": "uri", @@ -10737,7 +10094,6 @@ "md5": "2c07e86591ff61b2c725f2cf3390fe3a", "pid": "A009431913", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A009431913", "identifiedBy": [ { "type": "uri", @@ -10753,7 +10109,6 @@ "pid": "A009476519", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A009476519", "identifiedBy": [ { "type": "uri", @@ -10768,7 +10123,6 @@ "md5": "24e7cf6515ba93eeaf16fcd556aeb171", "pid": "A009505580", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A009505580", "identifiedBy": [ { "type": "uri", @@ -10783,7 +10137,6 @@ "md5": "497454392eba2ef80057aa3b86f74a18", "pid": "A009519020", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A009519020", "identifiedBy": [ { "type": "uri", @@ -10807,7 +10160,6 @@ "pid": "A009523157", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A009523157", "identifiedBy": [ { "type": "uri", @@ -10836,7 +10188,6 @@ "md5": "532494884171ef779a1dc1c494cc20b6", "pid": "A009541958", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A009541958", "identifiedBy": [ { "type": "uri", @@ -10852,7 +10203,6 @@ "pid": "A009544653", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A009544653", "identifiedBy": [ { "type": "uri", @@ -10867,7 +10217,6 @@ "md5": "a0e6ebefbd68222da37bb6dff0a7fe3f", "pid": "A009546303", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A009546303", "identifiedBy": [ { "type": "uri", @@ -10883,7 +10232,6 @@ "pid": "A009587127", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A009587127", "identifiedBy": [ { "type": "uri", @@ -10898,7 +10246,6 @@ "md5": "e3f13d9872dc2764cf41acd1e48b68f8", "pid": "A009590113", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A009590113", "identifiedBy": [ { "type": "uri", @@ -10917,7 +10264,6 @@ "md5": "bb6f131aed4a6263a5161b574d9ec2d3", "pid": "A009621407", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A009621407", "identifiedBy": [ { "type": "uri", @@ -10932,7 +10278,6 @@ "md5": "0377596b83275479864098933281411c", "pid": "A009631364", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A009631364", "identifiedBy": [ { "type": "uri", @@ -10948,7 +10293,6 @@ "pid": "A009639453", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A009639453", "identifiedBy": [ { "type": "uri", @@ -10990,7 +10334,6 @@ "md5": "fbf5e37dfa761b990622f4451b1031e2", "pid": "A009643309", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A009643309", "identifiedBy": [ { "type": "uri", @@ -11005,7 +10348,6 @@ "md5": "8560e7c7c631569cd81cfc501102bb3f", "pid": "A009673075", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A009673075", "identifiedBy": [ { "type": "uri", @@ -11020,7 +10362,6 @@ "md5": "03c745800103da7cb1f856382ea76e9b", "pid": "A009687650", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A009687650", "identifiedBy": [ { "type": "uri", @@ -11035,7 +10376,6 @@ "md5": "c1e497c44fa12c95a88b94b2f363b30f", "pid": "A009754386", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A009754386", "identifiedBy": [ { "type": "uri", @@ -11051,7 +10391,6 @@ "pid": "A009973428", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A009973428", "identifiedBy": [ { "type": "uri", @@ -11073,7 +10412,6 @@ "pid": "A009989567", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A009989567", "identifiedBy": [ { "type": "uri", @@ -11097,7 +10435,6 @@ "pid": "A010006868", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A010006868", "identifiedBy": [ { "type": "uri", @@ -11121,7 +10458,6 @@ "pid": "A010043080", "type": "bf:Person", "qualifier": "(de Luxeuil)", - "identifier": "http://data.rero.ch/02-A010043080", "identifiedBy": [ { "type": "uri", @@ -11136,7 +10472,6 @@ "md5": "93deb50208779df9d37f0c5efbef84d1", "pid": "A010073993", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A010073993", "identifiedBy": [ { "type": "uri", @@ -11151,7 +10486,6 @@ "md5": "f5ba1c030a2d0cc01c27218b07598d36", "pid": "A010086586", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A010086586", "identifiedBy": [ { "type": "uri", @@ -11167,7 +10501,6 @@ "pid": "A010104035", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A010104035", "identifiedBy": [ { "type": "uri", @@ -11182,7 +10515,6 @@ "md5": "5060095a467df9627c92f0b4f30c4866", "pid": "A010152644", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A010152644", "identifiedBy": [ { "type": "uri", @@ -11197,7 +10529,6 @@ "md5": "89b7cd9f133192cf50645630f89a8c87", "pid": "A010154587", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A010154587", "identifiedBy": [ { "type": "uri", @@ -11212,7 +10543,6 @@ "md5": "11d52e73422640bbad1268ba5e828071", "pid": "A010176792", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A010176792", "identifiedBy": [ { "type": "uri", @@ -11228,7 +10558,6 @@ "pid": "A010219336", "type": "bf:Person", "qualifier": "(famille)", - "identifier": "http://data.rero.ch/02-A010219336", "identifiedBy": [ { "type": "uri", @@ -11243,7 +10572,6 @@ "md5": "6d678e66606ab786e9178e7519e7e155", "pid": "A010244192", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A010244192", "identifiedBy": [ { "type": "uri", @@ -11258,7 +10586,6 @@ "md5": "510956edfe4bb5fc677a6f999c2cfe8e", "pid": "A010938873", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A010938873", "identifiedBy": [ { "type": "uri", @@ -11273,7 +10600,6 @@ "md5": "20117369ad22eca8f0f0f3b11b7b6755", "pid": "A010941010", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A010941010", "identifiedBy": [ { "type": "uri", @@ -11288,7 +10614,6 @@ "md5": "0c0bd2f33e205e645bcea256a018c8e9", "pid": "A010941759", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A010941759", "identifiedBy": [ { "type": "uri", @@ -11303,7 +10628,6 @@ "md5": "2160b2d5d7c26f2312a09098b929ab62", "pid": "A010952913", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A010952913", "identifiedBy": [ { "type": "uri", @@ -11318,7 +10642,6 @@ "md5": "1eda94f60605f3aa9a34dce65021c43e", "pid": "A010959260", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A010959260", "identifiedBy": [ { "type": "uri", @@ -11333,7 +10656,6 @@ "md5": "4a9ee505b19db9768717ae19f6828ce4", "pid": "A011007424", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A011007424", "identifiedBy": [ { "type": "uri", @@ -11351,7 +10673,6 @@ "md5": "00499c2f36769e0178de08f4f951aacf", "pid": "A011038799", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A011038799", "identifiedBy": [ { "type": "uri", @@ -11366,7 +10687,6 @@ "md5": "ee317aafe1c9d09a8516b1e8b3bd9c00", "pid": "A011078595", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A011078595", "identifiedBy": [ { "type": "uri", @@ -11387,7 +10707,6 @@ "md5": "41cfc6873fe76647d8c76d6f97966394", "pid": "A011089656", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A011089656", "identifiedBy": [ { "type": "uri", @@ -11402,7 +10721,6 @@ "md5": "f1e22176910ac509bd36068478efb633", "pid": "A011095417", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A011095417", "identifiedBy": [ { "type": "uri", @@ -11418,7 +10736,6 @@ "pid": "A011106617", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A011106617", "identifiedBy": [ { "type": "uri", @@ -11433,7 +10750,6 @@ "md5": "5f208a68320ad855cace6cd56de8176e", "pid": "A011113114", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A011113114", "identifiedBy": [ { "type": "uri", @@ -11458,7 +10774,6 @@ "md5": "ee6514bfddfdaf5c724edd3d3dd1489b", "pid": "A011132692", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A011132692", "identifiedBy": [ { "type": "uri", @@ -11474,7 +10789,6 @@ "pid": "A011151957", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A011151957", "identifiedBy": [ { "type": "uri", @@ -11499,7 +10813,6 @@ "md5": "c8e826fa747a9ebfce8d6ca9c19b8df3", "pid": "A011157710", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A011157710", "identifiedBy": [ { "type": "uri", @@ -11514,7 +10827,6 @@ "md5": "8b5869413965a18f5053f6e027aca796", "pid": "A011241983", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A011241983", "identifiedBy": [ { "type": "uri", @@ -11530,7 +10842,6 @@ "pid": "A011363373", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A011363373", "identifiedBy": [ { "type": "uri", @@ -11551,7 +10862,6 @@ "md5": "d8dcfe83b889289ea8f6bba3311f19f4", "pid": "A011377115", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A011377115", "identifiedBy": [ { "type": "uri", @@ -11566,7 +10876,6 @@ "md5": "3b9c6277f07156e19955817282576cd5", "pid": "A011383290", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A011383290", "identifiedBy": [ { "type": "uri", @@ -11587,7 +10896,6 @@ "md5": "5b8ce153f057be792286ec8dd65962a4", "pid": "A011384771", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A011384771", "identifiedBy": [ { "type": "uri", @@ -11602,7 +10910,6 @@ "md5": "93b6baa8d03e7bcd6f300ef2507f3fc7", "pid": "A011412011", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A011412011", "identifiedBy": [ { "type": "uri", @@ -11617,7 +10924,6 @@ "md5": "48e8923f85e83c007e98b29a340dc7e8", "pid": "A011417162", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A011417162", "identifiedBy": [ { "type": "uri", @@ -11632,7 +10938,6 @@ "md5": "51f3bc11481ad40e2cc8adb70452b467", "pid": "A011417535", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A011417535", "identifiedBy": [ { "type": "uri", @@ -11648,7 +10953,6 @@ "pid": "A011464222", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A011464222", "identifiedBy": [ { "type": "uri", @@ -11663,7 +10967,6 @@ "md5": "468ed9b7cc790cdfa9c2ca4924d2a249", "pid": "A011466531", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A011466531", "identifiedBy": [ { "type": "uri", @@ -11679,7 +10982,6 @@ "pid": "A011466589", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A011466589", "identifiedBy": [ { "type": "uri", @@ -11694,7 +10996,6 @@ "md5": "b056ba2fe648bca75ead85f7c999b97b", "pid": "A011493066", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A011493066", "identifiedBy": [ { "type": "uri", @@ -11709,7 +11010,6 @@ "md5": "d7a0923f5730226c68c59ee0fc323773", "pid": "A011558774", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A011558774", "identifiedBy": [ { "type": "uri", @@ -11724,7 +11024,6 @@ "md5": "15cf97856f71db7ee555bac795873a11", "pid": "A011591041", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A011591041", "identifiedBy": [ { "type": "uri", @@ -11739,7 +11038,6 @@ "md5": "71c291d561405141c5d8b4e209bb5529", "pid": "A011627404", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A011627404", "identifiedBy": [ { "type": "uri", @@ -11754,7 +11052,6 @@ "md5": "151d4e8d3de2044afc6134463ed612b9", "pid": "A011674667", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A011674667", "identifiedBy": [ { "type": "uri", @@ -11769,7 +11066,6 @@ "md5": "550f29030147bdb440b68447eb2f9e75", "pid": "A011686664", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A011686664", "identifiedBy": [ { "type": "uri", @@ -11785,7 +11081,6 @@ "pid": "A011733730", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A011733730", "identifiedBy": [ { "type": "uri", @@ -11800,7 +11095,6 @@ "md5": "70b4eb03cb589289abc531afc54b860d", "pid": "A011736857", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A011736857", "identifiedBy": [ { "type": "uri", @@ -11815,7 +11109,6 @@ "md5": "641b80cbecc0dce9892a555ad0d77b59", "pid": "A011743931", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A011743931", "identifiedBy": [ { "type": "uri", @@ -11830,7 +11123,6 @@ "md5": "4e115e73e8fe1e99375c3d00cbe36bff", "pid": "A011755738", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A011755738", "identifiedBy": [ { "type": "uri", @@ -11845,7 +11137,6 @@ "md5": "64e0407f55b36651e3cb0e71acc8c39a", "pid": "A011817228", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A011817228", "identifiedBy": [ { "type": "uri", @@ -11861,7 +11152,6 @@ "pid": "A011818787", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A011818787", "identifiedBy": [ { "type": "uri", @@ -11877,7 +11167,6 @@ "pid": "A011831186", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A011831186", "identifiedBy": [ { "type": "uri", @@ -11893,7 +11182,6 @@ "pid": "A011875062", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A011875062", "identifiedBy": [ { "type": "uri", @@ -11908,7 +11196,6 @@ "md5": "1661c82b54b48ca9be4ae51550cbf4b6", "pid": "A011896248", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A011896248", "identifiedBy": [ { "type": "uri", @@ -11923,7 +11210,6 @@ "md5": "7d56905452ca94029e4498595cdce936", "pid": "A011919031", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A011919031", "identifiedBy": [ { "type": "uri", @@ -11938,7 +11224,6 @@ "md5": "ab6faeee22208232e8ace4c9d55af163", "pid": "A011935041", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A011935041", "identifiedBy": [ { "type": "uri", @@ -11953,7 +11238,6 @@ "md5": "3a9b64e5bfad8e47d58ec97c81fdc0e9", "pid": "A011951291", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A011951291", "identifiedBy": [ { "type": "uri", @@ -11968,7 +11252,6 @@ "md5": "4972faa9459cf68c9fd158b200b2a54f", "pid": "A011958684", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A011958684", "identifiedBy": [ { "type": "uri", @@ -11989,7 +11272,6 @@ "md5": "cfc4257a787029640be705267b98f398", "pid": "A011959589", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A011959589", "identifiedBy": [ { "type": "uri", @@ -12004,7 +11286,6 @@ "md5": "62f4efc24abc31a49714dc5b4f7c176f", "pid": "A011961159", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A011961159", "identifiedBy": [ { "type": "uri", @@ -12040,7 +11321,6 @@ "md5": "e1032e3829b7037e25ecd50e4944d641", "pid": "A011964957", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A011964957", "identifiedBy": [ { "type": "uri", @@ -12055,7 +11335,6 @@ "md5": "8ef7c158029c665c8fb16e998e032105", "pid": "A011971216", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A011971216", "identifiedBy": [ { "type": "uri", @@ -12070,7 +11349,6 @@ "md5": "c1ba1385d6ee370389a56a9c74a143eb", "pid": "A011981174", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A011981174", "identifiedBy": [ { "type": "uri", @@ -12085,7 +11363,6 @@ "md5": "fa008cb8669bd2a94a59a2461f6c0dec", "pid": "A011983307", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A011983307", "identifiedBy": [ { "type": "uri", @@ -12100,7 +11377,6 @@ "md5": "b349825311de25544ed48b370e72f951", "pid": "A011992966", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A011992966", "identifiedBy": [ { "type": "uri", @@ -12121,7 +11397,6 @@ "md5": "53fe646117a4208583c9d2ed11fad168", "pid": "A012003599", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A012003599", "identifiedBy": [ { "type": "uri", @@ -12137,7 +11412,6 @@ "pid": "A012045391", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012045391", "identifiedBy": [ { "type": "uri", @@ -12158,7 +11432,6 @@ "md5": "96f994009dcfdd39c3ccd1f325b7ca42", "pid": "A012045625", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A012045625", "identifiedBy": [ { "type": "uri", @@ -12182,7 +11455,6 @@ "md5": "f2f8fd21620680e308cd32c255142a4d", "pid": "A012053752", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A012053752", "identifiedBy": [ { "type": "uri", @@ -12197,7 +11469,6 @@ "md5": "258e7a2188aa6e9c66bfbdb0a1ce7262", "pid": "A012086274", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A012086274", "identifiedBy": [ { "type": "uri", @@ -12212,7 +11483,6 @@ "md5": "d6217d2bd2743840366caabe8f67faa0", "pid": "A012098479", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A012098479", "identifiedBy": [ { "type": "uri", @@ -12227,7 +11497,6 @@ "md5": "ca089cd59f32f2b5b64cd269b039cd72", "pid": "A012105454", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A012105454", "identifiedBy": [ { "type": "uri", @@ -12242,7 +11511,6 @@ "md5": "5ed8fbb20262bf79042b74dae3d63add", "pid": "A012128366", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A012128366", "identifiedBy": [ { "type": "uri", @@ -12258,7 +11526,6 @@ "pid": "A012136328", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012136328", "identifiedBy": [ { "type": "uri", @@ -12274,7 +11541,6 @@ "pid": "A012311534", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012311534", "identifiedBy": [ { "type": "uri", @@ -12290,7 +11556,6 @@ "pid": "A012313581", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012313581", "identifiedBy": [ { "type": "uri", @@ -12305,7 +11570,6 @@ "md5": "08854cf9c338f342679e29b913615a50", "pid": "A012313815", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A012313815", "identifiedBy": [ { "type": "uri", @@ -12322,7 +11586,6 @@ "pid": "A012315468", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012315468", "identifiedBy": [ { "type": "uri", @@ -12337,7 +11600,6 @@ "md5": "1231ebe8771da6a052b5a677a9632304", "pid": "A012322962", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A012322962", "identifiedBy": [ { "type": "uri", @@ -12357,7 +11619,6 @@ "pid": "A012323710", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012323710", "identifiedBy": [ { "type": "uri", @@ -12373,7 +11634,6 @@ "pid": "A012325371", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012325371", "identifiedBy": [ { "type": "uri", @@ -12389,7 +11649,6 @@ "pid": "A012329066", "type": "bf:Person", "qualifier": "Dr en sc. nat", - "identifier": "http://data.rero.ch/02-A012329066", "identifiedBy": [ { "type": "uri", @@ -12405,7 +11664,6 @@ "pid": "A012332893", "type": "bf:Person", "qualifier": "juriste", - "identifier": "http://data.rero.ch/02-A012332893", "identifiedBy": [ { "type": "uri", @@ -12421,7 +11679,6 @@ "pid": "A012335428", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012335428", "identifiedBy": [ { "type": "uri", @@ -12437,7 +11694,6 @@ "pid": "A012338211", "type": "bf:Person", "qualifier": "anthropologue", - "identifier": "http://data.rero.ch/02-A012338211", "identifiedBy": [ { "type": "uri", @@ -12453,7 +11709,6 @@ "pid": "A012343378", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012343378", "identifiedBy": [ { "type": "uri", @@ -12469,7 +11724,6 @@ "pid": "A012346177", "type": "bf:Person", "qualifier": "m\u00e9decin", - "identifier": "http://data.rero.ch/02-A012346177", "identifiedBy": [ { "type": "uri", @@ -12485,7 +11739,6 @@ "pid": "A012346982", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012346982", "identifiedBy": [ { "type": "uri", @@ -12501,7 +11754,6 @@ "pid": "A012349826", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012349826", "identifiedBy": [ { "type": "uri", @@ -12517,7 +11769,6 @@ "pid": "A012350932", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012350932", "identifiedBy": [ { "type": "uri", @@ -12533,7 +11784,6 @@ "pid": "A012352585", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012352585", "identifiedBy": [ { "type": "uri", @@ -12549,7 +11799,6 @@ "pid": "A012353728", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012353728", "identifiedBy": [ { "type": "uri", @@ -12565,7 +11814,6 @@ "pid": "A012366684", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012366684", "identifiedBy": [ { "type": "uri", @@ -12581,7 +11829,6 @@ "pid": "A012368293", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012368293", "identifiedBy": [ { "type": "uri", @@ -12597,7 +11844,6 @@ "pid": "A012368815", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012368815", "identifiedBy": [ { "type": "uri", @@ -12613,7 +11859,6 @@ "pid": "A012371308", "type": "bf:Person", "qualifier": "photographe", - "identifier": "http://data.rero.ch/02-A012371308", "identifiedBy": [ { "type": "uri", @@ -12629,7 +11874,6 @@ "pid": "A012374691", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012374691", "identifiedBy": [ { "type": "uri", @@ -12645,7 +11889,6 @@ "pid": "A012374741", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012374741", "identifiedBy": [ { "type": "uri", @@ -12661,7 +11904,6 @@ "pid": "A012377358", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012377358", "identifiedBy": [ { "type": "uri", @@ -12677,7 +11919,6 @@ "pid": "A012377584", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012377584", "identifiedBy": [ { "type": "uri", @@ -12693,7 +11934,6 @@ "pid": "A012378544", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012378544", "identifiedBy": [ { "type": "uri", @@ -12709,7 +11949,6 @@ "pid": "A012385634", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012385634", "identifiedBy": [ { "type": "uri", @@ -12725,7 +11964,6 @@ "pid": "A012387266", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012387266", "identifiedBy": [ { "type": "uri", @@ -12741,7 +11979,6 @@ "pid": "A012387358", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012387358", "identifiedBy": [ { "type": "uri", @@ -12757,7 +11994,6 @@ "pid": "A012387899", "type": "bf:Person", "qualifier": "libraire du 17e s", - "identifier": "http://data.rero.ch/02-A012387899", "identifiedBy": [ { "type": "uri", @@ -12773,7 +12009,6 @@ "pid": "A012388774", "type": "bf:Person", "qualifier": "Jr", - "identifier": "http://data.rero.ch/02-A012388774", "identifiedBy": [ { "type": "uri", @@ -12789,7 +12024,6 @@ "pid": "A012388884", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012388884", "identifiedBy": [ { "type": "uri", @@ -12805,7 +12039,6 @@ "pid": "A012390212", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012390212", "identifiedBy": [ { "type": "uri", @@ -12821,7 +12054,6 @@ "pid": "A012391465", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012391465", "identifiedBy": [ { "type": "uri", @@ -12837,7 +12069,6 @@ "pid": "A012393385", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012393385", "identifiedBy": [ { "type": "uri", @@ -12853,7 +12084,6 @@ "pid": "A012394672", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012394672", "identifiedBy": [ { "type": "uri", @@ -12869,7 +12099,6 @@ "pid": "A012396940", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012396940", "identifiedBy": [ { "type": "uri", @@ -12885,7 +12114,6 @@ "pid": "A012397510", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012397510", "identifiedBy": [ { "type": "uri", @@ -12901,7 +12129,6 @@ "pid": "A012402163", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012402163", "identifiedBy": [ { "type": "uri", @@ -12917,7 +12144,6 @@ "pid": "A012406670", "type": "bf:Person", "qualifier": "philat\u00e9liste", - "identifier": "http://data.rero.ch/02-A012406670", "identifiedBy": [ { "type": "uri", @@ -12933,7 +12159,6 @@ "pid": "A012408608", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012408608", "identifiedBy": [ { "type": "uri", @@ -12949,7 +12174,6 @@ "pid": "A012409616", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012409616", "identifiedBy": [ { "type": "uri", @@ -12965,7 +12189,6 @@ "pid": "A012409972", "type": "bf:Person", "qualifier": "p\u00e9dagogue", - "identifier": "http://data.rero.ch/02-A012409972", "identifiedBy": [ { "type": "uri", @@ -12981,7 +12204,6 @@ "pid": "A012416360", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012416360", "identifiedBy": [ { "type": "uri", @@ -12997,7 +12219,6 @@ "pid": "A012416378", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012416378", "identifiedBy": [ { "type": "uri", @@ -13013,7 +12234,6 @@ "pid": "A012416611", "type": "bf:Person", "qualifier": "pape", - "identifier": "http://data.rero.ch/02-A012416611", "numeration": "VIII", "identifiedBy": [ { @@ -13030,7 +12250,6 @@ "pid": "A012417107", "type": "bf:Person", "qualifier": "dr en droit", - "identifier": "http://data.rero.ch/02-A012417107", "identifiedBy": [ { "type": "uri", @@ -13046,7 +12265,6 @@ "pid": "A012417957", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012417957", "identifiedBy": [ { "type": "uri", @@ -13062,7 +12280,6 @@ "pid": "A012418542", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012418542", "identifiedBy": [ { "type": "uri", @@ -13078,7 +12295,6 @@ "pid": "A012419821", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012419821", "identifiedBy": [ { "type": "uri", @@ -13094,7 +12310,6 @@ "pid": "A012419929", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012419929", "identifiedBy": [ { "type": "uri", @@ -13110,7 +12325,6 @@ "pid": "A012425753", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012425753", "identifiedBy": [ { "type": "uri", @@ -13126,7 +12340,6 @@ "pid": "A012427298", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012427298", "identifiedBy": [ { "type": "uri", @@ -13142,7 +12355,6 @@ "pid": "A012430693", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012430693", "identifiedBy": [ { "type": "uri", @@ -13158,7 +12370,6 @@ "pid": "A012431216", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012431216", "identifiedBy": [ { "type": "uri", @@ -13174,7 +12385,6 @@ "pid": "A012431876", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012431876", "identifiedBy": [ { "type": "uri", @@ -13190,7 +12400,6 @@ "pid": "A012432065", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012432065", "identifiedBy": [ { "type": "uri", @@ -13206,7 +12415,6 @@ "pid": "A012435871", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012435871", "identifiedBy": [ { "type": "uri", @@ -13222,7 +12430,6 @@ "pid": "A012437354", "type": "bf:Person", "qualifier": "Jr", - "identifier": "http://data.rero.ch/02-A012437354", "identifiedBy": [ { "type": "uri", @@ -13238,7 +12445,6 @@ "pid": "A012440656", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012440656", "identifiedBy": [ { "type": "uri", @@ -13254,7 +12460,6 @@ "pid": "A012442567", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012442567", "identifiedBy": [ { "type": "uri", @@ -13270,7 +12475,6 @@ "pid": "A012442717", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012442717", "identifiedBy": [ { "type": "uri", @@ -13286,7 +12490,6 @@ "pid": "A012443563", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012443563", "identifiedBy": [ { "type": "uri", @@ -13302,7 +12505,6 @@ "pid": "A012448425", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012448425", "identifiedBy": [ { "type": "uri", @@ -13318,7 +12520,6 @@ "pid": "A012454917", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012454917", "identifiedBy": [ { "type": "uri", @@ -13334,7 +12535,6 @@ "pid": "A012457267", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012457267", "identifiedBy": [ { "type": "uri", @@ -13350,7 +12550,6 @@ "pid": "A012457605", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012457605", "identifiedBy": [ { "type": "uri", @@ -13366,7 +12565,6 @@ "pid": "A012460208", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012460208", "identifiedBy": [ { "type": "uri", @@ -13390,7 +12588,6 @@ "pid": "A012462643", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012462643", "identifiedBy": [ { "type": "uri", @@ -13406,7 +12603,6 @@ "pid": "A012465613", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012465613", "identifiedBy": [ { "type": "uri", @@ -13422,7 +12618,6 @@ "pid": "A012468081", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012468081", "identifiedBy": [ { "type": "uri", @@ -13438,7 +12633,6 @@ "pid": "A012468192", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012468192", "identifiedBy": [ { "type": "uri", @@ -13454,7 +12648,6 @@ "pid": "A012470496", "type": "bf:Person", "qualifier": "dr en sciences", - "identifier": "http://data.rero.ch/02-A012470496", "identifiedBy": [ { "type": "uri", @@ -13470,7 +12663,6 @@ "pid": "A012470564", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012470564", "identifiedBy": [ { "type": "uri", @@ -13486,7 +12678,6 @@ "pid": "A012470848", "type": "bf:Person", "qualifier": "Abb\u00e9", - "identifier": "http://data.rero.ch/02-A012470848", "identifiedBy": [ { "type": "uri", @@ -13502,7 +12693,6 @@ "pid": "A012473809", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012473809", "identifiedBy": [ { "type": "uri", @@ -13518,7 +12708,6 @@ "pid": "A012474515", "type": "bf:Person", "qualifier": "\u00e9tudiant en droit GE", - "identifier": "http://data.rero.ch/02-A012474515", "identifiedBy": [ { "type": "uri", @@ -13534,7 +12723,6 @@ "pid": "A012479271", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012479271", "identifiedBy": [ { "type": "uri", @@ -13550,7 +12738,6 @@ "pid": "A012480008", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012480008", "identifiedBy": [ { "type": "uri", @@ -13566,7 +12753,6 @@ "pid": "A012480139", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012480139", "identifiedBy": [ { "type": "uri", @@ -13582,7 +12768,6 @@ "pid": "A012484207", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012484207", "identifiedBy": [ { "type": "uri", @@ -13598,7 +12783,6 @@ "pid": "A012487640", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012487640", "identifiedBy": [ { "type": "uri", @@ -13614,7 +12798,6 @@ "pid": "A012487887", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012487887", "identifiedBy": [ { "type": "uri", @@ -13630,7 +12813,6 @@ "pid": "A012488018", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012488018", "identifiedBy": [ { "type": "uri", @@ -13646,7 +12828,6 @@ "pid": "A012489633", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012489633", "identifiedBy": [ { "type": "uri", @@ -13662,7 +12843,6 @@ "pid": "A012490094", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012490094", "identifiedBy": [ { "type": "uri", @@ -13678,7 +12858,6 @@ "pid": "A012493490", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012493490", "identifiedBy": [ { "type": "uri", @@ -13694,7 +12873,6 @@ "pid": "A012494600", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012494600", "identifiedBy": [ { "type": "uri", @@ -13710,7 +12888,6 @@ "pid": "A012495733", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012495733", "identifiedBy": [ { "type": "uri", @@ -13726,7 +12903,6 @@ "pid": "A012497106", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012497106", "identifiedBy": [ { "type": "uri", @@ -13742,7 +12918,6 @@ "pid": "A012497126", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012497126", "identifiedBy": [ { "type": "uri", @@ -13758,7 +12933,6 @@ "pid": "A012497225", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012497225", "identifiedBy": [ { "type": "uri", @@ -13774,7 +12948,6 @@ "pid": "A012498346", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012498346", "identifiedBy": [ { "type": "uri", @@ -13790,7 +12963,6 @@ "pid": "A012506176", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012506176", "identifiedBy": [ { "type": "uri", @@ -13806,7 +12978,6 @@ "pid": "A012506256", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012506256", "identifiedBy": [ { "type": "uri", @@ -13822,7 +12993,6 @@ "pid": "A012506339", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012506339", "identifiedBy": [ { "type": "uri", @@ -13838,7 +13008,6 @@ "pid": "A012506877", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012506877", "identifiedBy": [ { "type": "uri", @@ -13854,7 +13023,6 @@ "pid": "A012507478", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012507478", "identifiedBy": [ { "type": "uri", @@ -13870,7 +13038,6 @@ "pid": "A012508085", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012508085", "identifiedBy": [ { "type": "uri", @@ -13886,7 +13053,6 @@ "pid": "A012508468", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012508468", "identifiedBy": [ { "type": "uri", @@ -13902,7 +13068,6 @@ "pid": "A012508709", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012508709", "identifiedBy": [ { "type": "uri", @@ -13918,7 +13083,6 @@ "pid": "A012509199", "type": "bf:Person", "qualifier": "fr\u00e8re", - "identifier": "http://data.rero.ch/02-A012509199", "identifiedBy": [ { "type": "uri", @@ -13934,7 +13098,6 @@ "pid": "A012512864", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012512864", "identifiedBy": [ { "type": "uri", @@ -13950,7 +13113,6 @@ "pid": "A012513294", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012513294", "identifiedBy": [ { "type": "uri", @@ -13966,7 +13128,6 @@ "pid": "A012517704", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012517704", "identifiedBy": [ { "type": "uri", @@ -13982,7 +13143,6 @@ "pid": "A012518029", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012518029", "identifiedBy": [ { "type": "uri", @@ -13998,7 +13158,6 @@ "pid": "A012519806", "type": "bf:Person", "qualifier": "physicien", - "identifier": "http://data.rero.ch/02-A012519806", "identifiedBy": [ { "type": "uri", @@ -14014,7 +13173,6 @@ "pid": "A012523458", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012523458", "identifiedBy": [ { "type": "uri", @@ -14030,7 +13188,6 @@ "pid": "A012525949", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012525949", "identifiedBy": [ { "type": "uri", @@ -14046,7 +13203,6 @@ "pid": "A012525951", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012525951", "identifiedBy": [ { "type": "uri", @@ -14062,7 +13218,6 @@ "pid": "A012527268", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012527268", "identifiedBy": [ { "type": "uri", @@ -14078,7 +13233,6 @@ "pid": "A012527993", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012527993", "identifiedBy": [ { "type": "uri", @@ -14094,7 +13248,6 @@ "pid": "A012528466", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012528466", "identifiedBy": [ { "type": "uri", @@ -14110,7 +13263,6 @@ "pid": "A012529768", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012529768", "identifiedBy": [ { "type": "uri", @@ -14126,7 +13278,6 @@ "pid": "A012533386", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012533386", "identifiedBy": [ { "type": "uri", @@ -14142,7 +13293,6 @@ "pid": "A012534909", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012534909", "identifiedBy": [ { "type": "uri", @@ -14158,7 +13308,6 @@ "pid": "A012534932", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012534932", "identifiedBy": [ { "type": "uri", @@ -14173,7 +13322,6 @@ "md5": "31c9d1aada63c92b86fe165d8a9f9769", "pid": "A012571346", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A012571346", "identifiedBy": [ { "type": "uri", @@ -14191,7 +13339,6 @@ "md5": "3a28c948409c260c205266bdda4f1ef7", "pid": "A012572265", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A012572265", "identifiedBy": [ { "type": "uri", @@ -14212,7 +13359,6 @@ "md5": "458bc5e2c051a1a23f59d02d3a4899de", "pid": "A012591999", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A012591999", "identifiedBy": [ { "type": "uri", @@ -14228,7 +13374,6 @@ "pid": "A012597330", "type": "bf:Person", "qualifier": "math\u00e9maticien", - "identifier": "http://data.rero.ch/02-A012597330", "identifiedBy": [ { "type": "uri", @@ -14243,7 +13388,6 @@ "md5": "2c90fc45831b3a396011f9669395cfb9", "pid": "A012598301", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A012598301", "identifiedBy": [ { "type": "uri", @@ -14258,7 +13402,6 @@ "md5": "0dec89ad25e3680aa2a3b72c0f3d35f6", "pid": "A012623821", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A012623821", "identifiedBy": [ { "type": "uri", @@ -14273,7 +13416,6 @@ "md5": "519ac5c13709c264db6cf18877202ac5", "pid": "A012636366", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A012636366", "identifiedBy": [ { "type": "uri", @@ -14289,7 +13431,6 @@ "pid": "A012674280", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012674280", "identifiedBy": [ { "type": "uri", @@ -14304,7 +13445,6 @@ "md5": "eedcc0d590f8d131ee8880904ba70efb", "pid": "A012692359", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A012692359", "identifiedBy": [ { "type": "uri", @@ -14319,7 +13459,6 @@ "md5": "138d457290a6caa97a905514ba4f0891", "pid": "A012707155", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A012707155", "identifiedBy": [ { "type": "uri", @@ -14335,7 +13474,6 @@ "pid": "A012707480", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012707480", "identifiedBy": [ { "type": "uri", @@ -14350,7 +13488,6 @@ "md5": "076941a41dd98ddc905baec8f858919c", "pid": "A012722635", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A012722635", "identifiedBy": [ { "type": "uri", @@ -14365,7 +13502,6 @@ "md5": "2f7bf21c0d3c079c4cf30f4f9915d643", "pid": "A012726948", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A012726948", "identifiedBy": [ { "type": "uri", @@ -14382,7 +13518,6 @@ "pid": "A012744465", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012744465", "identifiedBy": [ { "type": "uri", @@ -14397,7 +13532,6 @@ "md5": "e97283c83e00f0fde4d12d5d66e76c3e", "pid": "A012765564", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A012765564", "identifiedBy": [ { "type": "uri", @@ -14412,7 +13546,6 @@ "md5": "765a02b7f2804a2c7f33bf759533e5e4", "pid": "A012771324", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A012771324", "identifiedBy": [ { "type": "uri", @@ -14430,7 +13563,6 @@ "md5": "3ecdb3063a112086e29e5a9013ffefa9", "pid": "A012774842", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A012774842", "identifiedBy": [ { "type": "uri", @@ -14445,7 +13577,6 @@ "md5": "fa7a98a0f29a2747a1d21c926ccc284f", "pid": "A012780830", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A012780830", "identifiedBy": [ { "type": "uri", @@ -14460,7 +13591,6 @@ "md5": "eed6579ee78f830e60a7e0b8ff6004f5", "pid": "A012781952", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A012781952", "identifiedBy": [ { "type": "uri", @@ -14475,7 +13605,6 @@ "md5": "63bda92e5bed22f02b97228ba8697d54", "pid": "A012784906", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A012784906", "identifiedBy": [ { "type": "uri", @@ -14490,7 +13619,6 @@ "md5": "156a0fc3ead3f88e11eee2cb33213a25", "pid": "A012785250", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A012785250", "identifiedBy": [ { "type": "uri", @@ -14506,7 +13634,6 @@ "pid": "A012791691", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A012791691", "identifiedBy": [ { "type": "uri", @@ -14521,7 +13648,6 @@ "md5": "c03cced95bf521d68eff4bbce262b200", "pid": "A012808722", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A012808722", "identifiedBy": [ { "type": "uri", @@ -14536,7 +13662,6 @@ "md5": "b965014a74da2ae171a1cafd08f70445", "pid": "A012816863", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A012816863", "identifiedBy": [ { "type": "uri", @@ -14552,7 +13677,6 @@ "pid": "A012833174", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012833174", "identifiedBy": [ { "type": "uri", @@ -14568,7 +13692,6 @@ "pid": "A012856933", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012856933", "identifiedBy": [ { "type": "uri", @@ -14583,7 +13706,6 @@ "md5": "63f7477b7f426377e24fd0c3ef471727", "pid": "A012895540", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A012895540", "identifiedBy": [ { "type": "uri", @@ -14599,7 +13721,6 @@ "pid": "A012907177", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012907177", "identifiedBy": [ { "type": "uri", @@ -14625,7 +13746,6 @@ "pid": "A012928427", "type": "bf:Person", "qualifier": "comte de", - "identifier": "http://data.rero.ch/02-A012928427", "identifiedBy": [ { "type": "uri", @@ -14642,7 +13762,6 @@ "md5": "0774498bcda927f9eb34bd4043ef60ab", "pid": "A012937900", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A012937900", "identifiedBy": [ { "type": "uri", @@ -14666,7 +13785,6 @@ "pid": "A012950169", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A012950169", "identifiedBy": [ { "type": "uri", @@ -14681,7 +13799,6 @@ "md5": "cad7fdad8b0ea3c12b2929554c22a466", "pid": "A012957396", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A012957396", "identifiedBy": [ { "type": "uri", @@ -14696,7 +13813,6 @@ "md5": "5644512a7ee6dffacce3071f4534a6a4", "pid": "A012963166", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A012963166", "identifiedBy": [ { "type": "uri", @@ -14711,7 +13827,6 @@ "md5": "feed5fd635c43a445c6e14a3d2caa1b7", "pid": "A012966636", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A012966636", "identifiedBy": [ { "type": "uri", @@ -14727,7 +13842,6 @@ "pid": "A013062530", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A013062530", "identifiedBy": [ { "type": "uri", @@ -14758,7 +13872,6 @@ "md5": "effdf4b400220cdaf1f18a1d5e5b55a0", "pid": "A013071942", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013071942", "identifiedBy": [ { "type": "uri", @@ -14773,7 +13886,6 @@ "md5": "4fb0036367f5287a3f8fff9def11ad4e", "pid": "A013084243", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013084243", "identifiedBy": [ { "type": "uri", @@ -14788,7 +13900,6 @@ "md5": "aad5b235e2455a9068738fc3c3a6076d", "pid": "A013088320", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013088320", "identifiedBy": [ { "type": "uri", @@ -14804,7 +13915,6 @@ "md5": "96a79155595b2f5cb7abde5413186846", "pid": "A013094655", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013094655", "identifiedBy": [ { "type": "uri", @@ -14820,7 +13930,6 @@ "pid": "A013096212", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A013096212", "identifiedBy": [ { "type": "uri", @@ -14836,7 +13945,6 @@ "pid": "A013128887", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A013128887", "identifiedBy": [ { "type": "uri", @@ -14851,7 +13959,6 @@ "md5": "8216b4d10c8a06ec8e29486b409d90ec", "pid": "A013135052", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013135052", "identifiedBy": [ { "type": "uri", @@ -14867,7 +13974,6 @@ "pid": "A013137641", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A013137641", "identifiedBy": [ { "type": "uri", @@ -14882,7 +13988,6 @@ "md5": "b498009232ccd6805a5640a71482d208", "pid": "A013151927", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013151927", "identifiedBy": [ { "type": "uri", @@ -14903,7 +14008,6 @@ "md5": "f253caf93c435c0d7ad6fe33099706ce", "pid": "A013160840", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013160840", "identifiedBy": [ { "type": "uri", @@ -14918,7 +14022,6 @@ "md5": "bd9c7495d7ffe8e21926d865102ee75a", "pid": "A013187480", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013187480", "identifiedBy": [ { "type": "uri", @@ -14933,7 +14036,6 @@ "md5": "3afc691fc19fd6b8bd27898d94bc812a", "pid": "A013188863", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013188863", "identifiedBy": [ { "type": "uri", @@ -14948,7 +14050,6 @@ "md5": "c35a6df485481168c503632bdaff9655", "pid": "A013193457", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013193457", "identifiedBy": [ { "type": "uri", @@ -14963,7 +14064,6 @@ "md5": "f95dc1e74271d4f90f3fd5691a8c68b4", "pid": "A013199001", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013199001", "identifiedBy": [ { "type": "uri", @@ -14978,7 +14078,6 @@ "md5": "f790b6c635f18820479c968606654e79", "pid": "A013216832", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013216832", "identifiedBy": [ { "type": "uri", @@ -14994,7 +14093,6 @@ "pid": "A013218412", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A013218412", "identifiedBy": [ { "type": "uri", @@ -15009,7 +14107,6 @@ "md5": "9e2513836b5d27fa1efa39792f6ed74d", "pid": "A013222117", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013222117", "identifiedBy": [ { "type": "uri", @@ -15024,7 +14121,6 @@ "md5": "438d1135dd68bbb3e9f42ee3da20bbec", "pid": "A013234989", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013234989", "identifiedBy": [ { "type": "uri", @@ -15039,7 +14135,6 @@ "md5": "86f505844b1cfca68ad3240db652c6d3", "pid": "A013238298", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013238298", "identifiedBy": [ { "type": "uri", @@ -15055,7 +14150,6 @@ "pid": "A013254669", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A013254669", "identifiedBy": [ { "type": "uri", @@ -15071,7 +14165,6 @@ "pid": "A013254904", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A013254904", "identifiedBy": [ { "type": "uri", @@ -15086,7 +14179,6 @@ "md5": "06227b74580dc9902063a4f5d86ae94d", "pid": "A013264678", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013264678", "identifiedBy": [ { "type": "uri", @@ -15101,7 +14193,6 @@ "md5": "257c879f624ead633c6f979a23b3d3a7", "pid": "A013278476", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013278476", "identifiedBy": [ { "type": "uri", @@ -15116,7 +14207,6 @@ "md5": "8778bbf4d1e28e226fe00f57ccd7ff93", "pid": "A013288987", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013288987", "identifiedBy": [ { "type": "uri", @@ -15132,7 +14222,6 @@ "pid": "A013298285", "type": "bf:Person", "qualifier": "comte de Hollande et roi des Romains", - "identifier": "http://data.rero.ch/02-A013298285", "numeration": "II", "identifiedBy": [ { @@ -15148,7 +14237,6 @@ "md5": "528653115bc860b12ffc73ba4d8a9e13", "pid": "A013325785", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013325785", "identifiedBy": [ { "type": "uri", @@ -15164,7 +14252,6 @@ "pid": "A013328589", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A013328589", "identifiedBy": [ { "type": "uri", @@ -15179,7 +14266,6 @@ "md5": "3a439f176302804f011ca8d0e151d874", "pid": "A013346407", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013346407", "identifiedBy": [ { "type": "uri", @@ -15194,7 +14280,6 @@ "md5": "7b0c9101c9cdd19db5cd7c6d3ad99ee7", "pid": "A013388531", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013388531", "identifiedBy": [ { "type": "uri", @@ -15210,7 +14295,6 @@ "pid": "A013395525", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A013395525", "identifiedBy": [ { "type": "uri", @@ -15225,7 +14309,6 @@ "md5": "dacc8df5a8514ad6a728decb2824d9f9", "pid": "A013406985", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013406985", "identifiedBy": [ { "type": "uri", @@ -15240,7 +14323,6 @@ "md5": "653bfabaddafc6eff182c62a5f932aab", "pid": "A013436592", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013436592", "identifiedBy": [ { "type": "uri", @@ -15256,7 +14338,6 @@ "pid": "A013461986", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A013461986", "identifiedBy": [ { "type": "uri", @@ -15271,7 +14352,6 @@ "md5": "e40f7c364fe18ed05a82d61dfa237e98", "pid": "A013469717", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013469717", "identifiedBy": [ { "type": "uri", @@ -15288,7 +14368,6 @@ "md5": "3f6f0560726a87006fd64d29615b5a9a", "pid": "A013472806", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013472806", "identifiedBy": [ { "type": "uri", @@ -15303,7 +14382,6 @@ "md5": "3f78956db04226e5e11ebc0945845d6f", "pid": "A013486130", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013486130", "identifiedBy": [ { "type": "uri", @@ -15324,7 +14402,6 @@ "md5": "0dabed4381ac116a54e9abfc7c16511b", "pid": "A013491491", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013491491", "identifiedBy": [ { "type": "uri", @@ -15348,7 +14425,6 @@ "md5": "68f5ed6efc90855baf8da403d63ccf0a", "pid": "A013496961", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013496961", "identifiedBy": [ { "type": "uri", @@ -15372,7 +14448,6 @@ "md5": "fba82aa63d664002e8d32ce9e594f542", "pid": "A013498494", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013498494", "identifiedBy": [ { "type": "uri", @@ -15397,7 +14472,6 @@ "pid": "A013503465", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A013503465", "identifiedBy": [ { "type": "uri", @@ -15421,7 +14495,6 @@ "md5": "325bd7c43011c81425facd4624b28f76", "pid": "A013503508", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013503508", "identifiedBy": [ { "type": "uri", @@ -15445,7 +14518,6 @@ "md5": "d28bd6fbc93a71bc853fee513fed64ac", "pid": "A013505068", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013505068", "identifiedBy": [ { "type": "uri", @@ -15469,7 +14541,6 @@ "md5": "456491e2a6cb77286a4112a35e952c86", "pid": "A013505146", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013505146", "identifiedBy": [ { "type": "uri", @@ -15493,7 +14564,6 @@ "md5": "96e38a0aa25024bf47f7e8ea13b2c546", "pid": "A013505439", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013505439", "identifiedBy": [ { "type": "uri", @@ -15517,7 +14587,6 @@ "md5": "9fc643f8ab4578d8e07f7bbf08bc3624", "pid": "A013506588", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013506588", "identifiedBy": [ { "type": "uri", @@ -15543,7 +14612,6 @@ "pid": "A013518111", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A013518111", "identifiedBy": [ { "type": "uri", @@ -15567,7 +14635,6 @@ "md5": "99fdedb4249aa2fb0a33687179af685f", "pid": "A013519314", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013519314", "identifiedBy": [ { "type": "uri", @@ -15592,7 +14659,6 @@ "pid": "A013521342", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A013521342", "identifiedBy": [ { "type": "uri", @@ -15620,7 +14686,6 @@ "md5": "825633ccdb72ad388dd5e4d4033721a5", "pid": "A013544891", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013544891", "identifiedBy": [ { "type": "uri", @@ -15639,7 +14704,6 @@ "pid": "A013552965", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A013552965", "identifiedBy": [ { "type": "uri", @@ -15654,7 +14718,6 @@ "md5": "cf78af26bf850d3143fdb58c86bd095d", "pid": "A013553997", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013553997", "identifiedBy": [ { "type": "uri", @@ -15669,7 +14732,6 @@ "md5": "b64be7bf35b3cc2b8cab4f2070dbe7e4", "pid": "A013583535", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013583535", "identifiedBy": [ { "type": "uri", @@ -15684,7 +14746,6 @@ "md5": "446c47944554ef6c82f2a8db399e2ab1", "pid": "A013585039", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013585039", "identifiedBy": [ { "type": "uri", @@ -15700,7 +14761,6 @@ "pid": "A013595086", "type": "bf:Person", "qualifier": "juriste", - "identifier": "http://data.rero.ch/02-A013595086", "identifiedBy": [ { "type": "uri", @@ -15716,7 +14776,6 @@ "pid": "A013595372", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A013595372", "identifiedBy": [ { "type": "uri", @@ -15738,7 +14797,6 @@ "pid": "A013621306", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A013621306", "identifiedBy": [ { "type": "uri", @@ -15753,7 +14811,6 @@ "md5": "9809471fdda6577d00275fb62776e3a2", "pid": "A013627680", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013627680", "identifiedBy": [ { "type": "uri", @@ -15768,7 +14825,6 @@ "md5": "5618b9f5230dc8406d86e824a785bdd3", "pid": "A013629529", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013629529", "identifiedBy": [ { "type": "uri", @@ -15784,7 +14840,6 @@ "pid": "A013654911", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A013654911", "identifiedBy": [ { "type": "uri", @@ -15800,7 +14855,6 @@ "pid": "A013663807", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A013663807", "identifiedBy": [ { "type": "uri", @@ -15815,7 +14869,6 @@ "md5": "69e4f353e0a9617cce64b0062ad8df23", "pid": "A013675118", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013675118", "identifiedBy": [ { "type": "uri", @@ -15830,7 +14883,6 @@ "md5": "4b18130ad4f7dd3145094fa60cab6295", "pid": "A013683105", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013683105", "identifiedBy": [ { "type": "uri", @@ -15846,7 +14898,6 @@ "pid": "A013688478", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A013688478", "identifiedBy": [ { "type": "uri", @@ -15861,7 +14912,6 @@ "md5": "3f10e4042f4b0360bd190ae5565e8c99", "pid": "A013706277", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013706277", "identifiedBy": [ { "type": "uri", @@ -15877,7 +14927,6 @@ "pid": "A013720765", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A013720765", "identifiedBy": [ { "type": "uri", @@ -15892,7 +14941,6 @@ "md5": "385ec65fd6d9f6d7b8b5675110c558ed", "pid": "A013753495", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013753495", "identifiedBy": [ { "type": "uri", @@ -15907,7 +14955,6 @@ "md5": "9744e7c7c64249df7c1d58a9d3a6798a", "pid": "A013763647", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013763647", "identifiedBy": [ { "type": "uri", @@ -15922,7 +14969,6 @@ "md5": "e873f8bc9fc78b929c1333a8bba72093", "pid": "A013784156", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013784156", "identifiedBy": [ { "type": "uri", @@ -15937,7 +14983,6 @@ "md5": "c998fc906976cd07354bc786a5b3adb7", "pid": "A013786026", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013786026", "identifiedBy": [ { "type": "uri", @@ -15952,7 +14997,6 @@ "md5": "49cafd19e5e742d41cfac634349ac8e3", "pid": "A013793627", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013793627", "identifiedBy": [ { "type": "uri", @@ -15967,7 +15011,6 @@ "md5": "fd75f205492fa4ac64c408ac8bd537ef", "pid": "A013796408", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013796408", "identifiedBy": [ { "type": "uri", @@ -15982,7 +15025,6 @@ "md5": "a020ddf8257d574cd31dd2755cd875c5", "pid": "A013815334", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013815334", "identifiedBy": [ { "type": "uri", @@ -15998,7 +15040,6 @@ "pid": "A013839708", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A013839708", "identifiedBy": [ { "type": "uri", @@ -16013,7 +15054,6 @@ "md5": "4276dfce98df906196c0092ea8aa2b93", "pid": "A013851171", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013851171", "identifiedBy": [ { "type": "uri", @@ -16028,7 +15068,6 @@ "md5": "f94070d4a316f7e7a09784964511e8ba", "pid": "A013863028", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013863028", "identifiedBy": [ { "type": "uri", @@ -16044,7 +15083,6 @@ "pid": "A013902798", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A013902798", "identifiedBy": [ { "type": "uri", @@ -16059,7 +15097,6 @@ "md5": "ef894048f9804f4b27163cd590b49d4e", "pid": "A013936998", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013936998", "identifiedBy": [ { "type": "uri", @@ -16074,7 +15111,6 @@ "md5": "51e5950a391e07167cade2f4ec659965", "pid": "A013939562", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013939562", "identifiedBy": [ { "type": "uri", @@ -16089,7 +15125,6 @@ "md5": "53cd406645d94ee82308f2d91d8dbcf4", "pid": "A013941086", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013941086", "identifiedBy": [ { "type": "uri", @@ -16104,7 +15139,6 @@ "md5": "d6cbc0903cd5acc7e06199038e4ef9fc", "pid": "A013948865", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013948865", "identifiedBy": [ { "type": "uri", @@ -16119,7 +15153,6 @@ "md5": "085b883f6f41666d2792aa7a4e525be8", "pid": "A013952563", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013952563", "identifiedBy": [ { "type": "uri", @@ -16134,7 +15167,6 @@ "md5": "721ee7855b8b3de37222005fd33b9667", "pid": "A013970354", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013970354", "identifiedBy": [ { "type": "uri", @@ -16149,7 +15181,6 @@ "md5": "2854758826d96898a213d14f511f3d22", "pid": "A013986424", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013986424", "identifiedBy": [ { "type": "uri", @@ -16165,7 +15196,6 @@ "md5": "e3de064568576357cd2e370c2bc9732a", "pid": "A013993183", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013993183", "identifiedBy": [ { "type": "uri", @@ -16180,7 +15210,6 @@ "md5": "97cd10880516d055d8268b80559d28b6", "pid": "A013995035", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A013995035", "identifiedBy": [ { "type": "uri", @@ -16196,7 +15225,6 @@ "pid": "A014012002", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A014012002", "identifiedBy": [ { "type": "uri", @@ -16212,7 +15240,6 @@ "pid": "A014025587", "type": "bf:Person", "qualifier": "directeur de Dixi S.A", - "identifier": "http://data.rero.ch/02-A014025587", "identifiedBy": [ { "type": "uri", @@ -16227,7 +15254,6 @@ "md5": "d8eba83a9d280c182af16c8509a2c7b2", "pid": "A014026079", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A014026079", "identifiedBy": [ { "type": "uri", @@ -16242,7 +15268,6 @@ "md5": "47bf8ea11f0792d945efee4213d961ad", "pid": "A014036096", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A014036096", "identifiedBy": [ { "type": "uri", @@ -16257,7 +15282,6 @@ "md5": "2d491eacc8687fb9bb76536b56c4f062", "pid": "A014037717", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A014037717", "identifiedBy": [ { "type": "uri", @@ -16272,7 +15296,6 @@ "md5": "19a6fc42bb657e864a62d002e9f5f96c", "pid": "A014059339", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A014059339", "identifiedBy": [ { "type": "uri", @@ -16287,7 +15310,6 @@ "md5": "3c0660c357a3f5451578480ba2b37101", "pid": "A014065225", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A014065225", "identifiedBy": [ { "type": "uri", @@ -16302,7 +15324,6 @@ "md5": "0b36985298e876ffd095cb5b300d7aee", "pid": "A014070967", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A014070967", "identifiedBy": [ { "type": "uri", @@ -16318,7 +15339,6 @@ "pid": "A014074228", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A014074228", "identifiedBy": [ { "type": "uri", @@ -16333,7 +15353,6 @@ "md5": "2d639f0dc00464c82576248f73d810db", "pid": "A014087607", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A014087607", "identifiedBy": [ { "type": "uri", @@ -16349,7 +15368,6 @@ "pid": "A014087918", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A014087918", "identifiedBy": [ { "type": "uri", @@ -16364,7 +15382,6 @@ "md5": "da64dce2bca94eea7150dc66c391f55a", "pid": "A014091750", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A014091750", "identifiedBy": [ { "type": "uri", @@ -16380,7 +15397,6 @@ "md5": "856c784ee13f23acc8276e71d9caa13f", "pid": "A014094375", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A014094375", "identifiedBy": [ { "type": "uri", @@ -16414,7 +15430,6 @@ "md5": "4c08b71eacefa529b22cd9db1afe8c36", "pid": "A014111148", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A014111148", "identifiedBy": [ { "type": "uri", @@ -16429,7 +15444,6 @@ "md5": "d0ea4b4bc52aad19f0ebedede2a5da5e", "pid": "A014127767", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A014127767", "identifiedBy": [ { "type": "uri", @@ -16444,7 +15458,6 @@ "md5": "aa2b1f47ea290cbe3ad60ea7b3c17842", "pid": "A014139981", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A014139981", "identifiedBy": [ { "type": "uri", @@ -16459,7 +15472,6 @@ "md5": "24dd86223dcd78b8b1ab417e8dea5999", "pid": "A014145274", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A014145274", "identifiedBy": [ { "type": "uri", @@ -16474,7 +15486,6 @@ "md5": "3329e6db63490c6942bca7ada7fc5e3c", "pid": "A014193528", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A014193528", "identifiedBy": [ { "type": "uri", @@ -16489,7 +15500,6 @@ "md5": "63f40614b112cabf0632aaa746e0643a", "pid": "A014201130", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A014201130", "identifiedBy": [ { "type": "uri", @@ -16505,7 +15515,6 @@ "pid": "A014202551", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A014202551", "identifiedBy": [ { "type": "uri", @@ -16521,7 +15530,6 @@ "pid": "A014219231", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A014219231", "identifiedBy": [ { "type": "uri", @@ -16546,7 +15554,6 @@ "md5": "9bfe5f0e897bf448c2b65f2cd9dba82b", "pid": "A014222396", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A014222396", "identifiedBy": [ { "type": "uri", @@ -16570,7 +15577,6 @@ "md5": "b94242c59d5a1221c05b3087bc14f9ab", "pid": "A014224284", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A014224284", "identifiedBy": [ { "type": "uri", @@ -16585,7 +15591,6 @@ "md5": "c2c108df84f7f30d75a5eb7bc1d5a234", "pid": "A014242112", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A014242112", "identifiedBy": [ { "type": "uri", @@ -16600,7 +15605,6 @@ "md5": "01b7aead3affa9156d5b861d16bb2f17", "pid": "A014246692", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A014246692", "identifiedBy": [ { "type": "uri", @@ -16619,7 +15623,6 @@ "md5": "bbe0192d7e9d19e54b6611b085c3b6a4", "pid": "A014251795", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A014251795", "identifiedBy": [ { "type": "uri", @@ -16634,7 +15637,6 @@ "md5": "4c022b682415e9482a2dea159fcaa15a", "pid": "A014255110", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A014255110", "identifiedBy": [ { "type": "uri", @@ -16649,7 +15651,6 @@ "md5": "2b7936fb42e35bf8c1807efd928e0e2a", "pid": "A014258973", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A014258973", "identifiedBy": [ { "type": "uri", @@ -16664,7 +15665,6 @@ "md5": "814b4633d5b186df87cb3da04a76becb", "pid": "A014273717", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A014273717", "identifiedBy": [ { "type": "uri", @@ -16679,7 +15679,6 @@ "md5": "6311730b9e2eaa4f63d54afd7fc767fe", "pid": "A014276779", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A014276779", "identifiedBy": [ { "type": "uri", @@ -16694,7 +15693,6 @@ "md5": "319d9a56558795f75725f5cd4a4e6e0a", "pid": "A014313002", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A014313002", "identifiedBy": [ { "type": "uri", @@ -16709,7 +15707,6 @@ "md5": "1dc6e1c9cdebce83065f0964b9b7c2e4", "pid": "A014336689", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A014336689", "identifiedBy": [ { "type": "uri", @@ -16724,7 +15721,6 @@ "md5": "85e47d7e63c1307507e69e82fd6befe5", "pid": "A014337377", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A014337377", "identifiedBy": [ { "type": "uri", @@ -16740,7 +15736,6 @@ "pid": "A014352979", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A014352979", "identifiedBy": [ { "type": "uri", @@ -16768,7 +15763,6 @@ "md5": "1befe97a4caff1e9163f3793e7110535", "pid": "A014357923", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A014357923", "identifiedBy": [ { "type": "uri", @@ -16783,7 +15777,6 @@ "md5": "4dee51131d6ce55375c532f27d1a01a1", "pid": "A016238365", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A016238365", "identifiedBy": [ { "type": "uri", @@ -16799,7 +15792,6 @@ "pid": "A016298786", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A016298786", "identifiedBy": [ { "type": "uri", @@ -16814,7 +15806,6 @@ "md5": "017425b10b66d0ff71993b52d172f799", "pid": "A016303136", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A016303136", "identifiedBy": [ { "type": "uri", @@ -16829,7 +15820,6 @@ "md5": "33107e674a7f24793a75b5bbb3cf1b0b", "pid": "A016318307", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A016318307", "identifiedBy": [ { "type": "uri", @@ -16845,7 +15835,6 @@ "pid": "A016389042", "type": "bf:Person", "qualifier": "traducteur", - "identifier": "http://data.rero.ch/02-A016389042", "identifiedBy": [ { "type": "uri", @@ -16870,7 +15859,6 @@ "pid": "A016404123", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A016404123", "identifiedBy": [ { "type": "uri", @@ -16885,7 +15873,6 @@ "md5": "379ea48fb2ae65da0a833448449d56b9", "pid": "A016411096", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A016411096", "identifiedBy": [ { "type": "uri", @@ -16900,7 +15887,6 @@ "md5": "d5362be983bd6859eef278d168fcd098", "pid": "A016415566", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A016415566", "identifiedBy": [ { "type": "uri", @@ -16915,7 +15901,6 @@ "md5": "6d8415704ccb8fd058932f97f8577461", "pid": "A016426300", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A016426300", "identifiedBy": [ { "type": "uri", @@ -16930,7 +15915,6 @@ "md5": "05a73725b1d9226c0b388396d170f97b", "pid": "A016444932", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A016444932", "identifiedBy": [ { "type": "uri", @@ -16953,7 +15937,6 @@ "md5": "788b33bd75405c94d2d4402d0c46f66f", "pid": "A016459229", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A016459229", "identifiedBy": [ { "type": "uri", @@ -16968,7 +15951,6 @@ "md5": "5a99c48f49a221ac8433b32f58e85306", "pid": "A016459550", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A016459550", "identifiedBy": [ { "type": "uri", @@ -16983,7 +15965,6 @@ "md5": "cdf168a2bb1fd52e0d5fd176ef90b704", "pid": "A016477477", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A016477477", "identifiedBy": [ { "type": "uri", @@ -16998,7 +15979,6 @@ "md5": "12a22783c5dddf1e8ee63284385830a8", "pid": "A016482621", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A016482621", "identifiedBy": [ { "type": "uri", @@ -17015,7 +15995,6 @@ "md5": "05ae2c47193f2a8a12cdf1b4f8679bc0", "pid": "A016484771", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A016484771", "identifiedBy": [ { "type": "uri", @@ -17031,7 +16010,6 @@ "md5": "e1c42408a324ca0a35b3add4b7541849", "pid": "A016506102", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A016506102", "identifiedBy": [ { "type": "uri", @@ -17046,7 +16024,6 @@ "md5": "7d8b4db571933e07170304438409404f", "pid": "A016511435", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A016511435", "identifiedBy": [ { "type": "uri", @@ -17061,7 +16038,6 @@ "md5": "92cae0e6a706edf6943c540edd7e0a6f", "pid": "A016513981", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A016513981", "identifiedBy": [ { "type": "uri", @@ -17076,7 +16052,6 @@ "md5": "cb337809dd3caa5cab3a43c81511036f", "pid": "A016514568", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A016514568", "identifiedBy": [ { "type": "uri", @@ -17091,7 +16066,6 @@ "md5": "e45da4c89548e5fa9d66cc36684f0e44", "pid": "A016521212", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A016521212", "identifiedBy": [ { "type": "uri", @@ -17107,7 +16081,6 @@ "pid": "A016528677", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A016528677", "identifiedBy": [ { "type": "uri", @@ -17122,7 +16095,6 @@ "md5": "d6d1ff1e9e41bbdccf36e2bddcac7080", "pid": "A016535988", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A016535988", "identifiedBy": [ { "type": "uri", @@ -17137,7 +16109,6 @@ "md5": "96f3d737137ddab779af58dfb09f7644", "pid": "A016548812", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A016548812", "identifiedBy": [ { "type": "uri", @@ -17154,7 +16125,6 @@ "pid": "A016550065", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A016550065", "identifiedBy": [ { "type": "uri", @@ -17170,7 +16140,6 @@ "pid": "A016568873", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A016568873", "identifiedBy": [ { "type": "uri", @@ -17186,7 +16155,6 @@ "pid": "A016604176", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A016604176", "identifiedBy": [ { "type": "uri", @@ -17202,7 +16170,6 @@ "pid": "A016614032", "type": "bf:Person", "qualifier": "juriste", - "identifier": "http://data.rero.ch/02-A016614032", "identifiedBy": [ { "type": "uri", @@ -17217,7 +16184,6 @@ "md5": "c9defde8dfed3b080733fd8c31281c5f", "pid": "A016637978", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A016637978", "identifiedBy": [ { "type": "uri", @@ -17232,7 +16198,6 @@ "md5": "c10f36ae948d33bfdcffa210dcd12ebe", "pid": "A016638657", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A016638657", "identifiedBy": [ { "type": "uri", @@ -17247,7 +16212,6 @@ "md5": "8652066c2e2201db2f46ec6f54399fba", "pid": "A016638677", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A016638677", "identifiedBy": [ { "type": "uri", @@ -17262,7 +16226,6 @@ "md5": "e05e5af6f34deea83c33c8c70053888a", "pid": "A016651275", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A016651275", "identifiedBy": [ { "type": "uri", @@ -17277,7 +16240,6 @@ "md5": "74f7ab3a585fb64c07f4277c8f7d9b0c", "pid": "A016655749", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A016655749", "identifiedBy": [ { "type": "uri", @@ -17292,7 +16254,6 @@ "md5": "f97f6b90fc0a5f5fb3ae35aef0b47d9e", "pid": "A016666286", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A016666286", "identifiedBy": [ { "type": "uri", @@ -17308,7 +16269,6 @@ "pid": "A016675995", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A016675995", "identifiedBy": [ { "type": "uri", @@ -17323,7 +16283,6 @@ "md5": "8f08de886b5009861b02a093f930e0d9", "pid": "A016678629", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A016678629", "identifiedBy": [ { "type": "uri", @@ -17347,7 +16306,6 @@ "md5": "e16338d934737b8e9a9396d2c5d11912", "pid": "A016688565", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A016688565", "identifiedBy": [ { "type": "uri", @@ -17363,7 +16321,6 @@ "pid": "A016697578", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A016697578", "identifiedBy": [ { "type": "uri", @@ -17379,7 +16336,6 @@ "pid": "A016697664", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A016697664", "identifiedBy": [ { "type": "uri", @@ -17395,7 +16351,6 @@ "pid": "A016744040", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A016744040", "identifiedBy": [ { "type": "uri", @@ -17416,7 +16371,6 @@ "md5": "aba494acaeaf71ad31bbe7f3abb0d1f5", "pid": "A016755736", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A016755736", "identifiedBy": [ { "type": "uri", @@ -17432,7 +16386,6 @@ "pid": "A016768352", "type": "bf:Person", "qualifier": "musicien", - "identifier": "http://data.rero.ch/02-A016768352", "identifiedBy": [ { "type": "uri", @@ -17447,7 +16400,6 @@ "md5": "1bc9677fe59197a886d0fd4cf13403ee", "pid": "A016787995", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A016787995", "identifiedBy": [ { "type": "uri", @@ -17463,7 +16415,6 @@ "md5": "38746432f1e0f53644b5f3024a151623", "pid": "A016799486", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A016799486", "identifiedBy": [ { "type": "uri", @@ -17479,7 +16430,6 @@ "pid": "A016809743", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A016809743", "identifiedBy": [ { "type": "uri", @@ -17494,7 +16444,6 @@ "md5": "8972592e76accd814598daa8cd27ed8f", "pid": "A016813599", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A016813599", "identifiedBy": [ { "type": "uri", @@ -17509,7 +16458,6 @@ "md5": "7b612214c4f38b10a83a98d8094ee2cf", "pid": "A016814681", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A016814681", "identifiedBy": [ { "type": "uri", @@ -17524,7 +16472,6 @@ "md5": "ae277ad0e3349bdab8136507715d7b8f", "pid": "A016816789", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A016816789", "identifiedBy": [ { "type": "uri", @@ -17539,7 +16486,6 @@ "md5": "873259591a2b1a5882980a82d498f53d", "pid": "A016818796", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A016818796", "identifiedBy": [ { "type": "uri", @@ -17554,7 +16500,6 @@ "md5": "f0c90475a6c75b3a2c5bf055a6df7365", "pid": "A016841342", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A016841342", "identifiedBy": [ { "type": "uri", @@ -17569,7 +16514,6 @@ "md5": "18df1180ccce03caa3bac05a7480ba61", "pid": "A016871460", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A016871460", "identifiedBy": [ { "type": "uri", @@ -17595,7 +16539,6 @@ "pid": "A016877431", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A016877431", "identifiedBy": [ { "type": "uri", @@ -17611,7 +16554,6 @@ "pid": "A016969116", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A016969116", "identifiedBy": [ { "type": "uri", @@ -17636,7 +16578,6 @@ "md5": "e9a312f2a7faaf54c151e52deb52eedc", "pid": "A016972683", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A016972683", "identifiedBy": [ { "type": "uri", @@ -17659,7 +16600,6 @@ "md5": "9af01e1728ccd9c601a8c054bac25c5f", "pid": "A017020235", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A017020235", "identifiedBy": [ { "type": "uri", @@ -17674,7 +16614,6 @@ "md5": "8a05c3c9a2528ff896a7f9e47ea2731a", "pid": "A017025989", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A017025989", "identifiedBy": [ { "type": "uri", @@ -17689,7 +16628,6 @@ "md5": "081f08d7dcd0c6a6df1940734f7f909a", "pid": "A017057870", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A017057870", "identifiedBy": [ { "type": "uri", @@ -17705,7 +16643,6 @@ "pid": "A017097186", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A017097186", "identifiedBy": [ { "type": "uri", @@ -17720,7 +16657,6 @@ "md5": "acb8cd5d641f04ce4bf6eff0ba0f9c49", "pid": "A017122036", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A017122036", "identifiedBy": [ { "type": "uri", @@ -17735,7 +16671,6 @@ "md5": "9bcdafcb76e48604734ece33a03a2d0e", "pid": "A017130152", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A017130152", "identifiedBy": [ { "type": "uri", @@ -17750,7 +16685,6 @@ "md5": "869670074380cdaee6c8ce640344aa33", "pid": "A017132207", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A017132207", "identifiedBy": [ { "type": "uri", @@ -17765,7 +16699,6 @@ "md5": "4ba8174a976bb417a74a873103a73208", "pid": "A017139224", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A017139224", "identifiedBy": [ { "type": "uri", @@ -17780,7 +16713,6 @@ "md5": "f6b22dc2df89d7eba821d62ed1cc502f", "pid": "A017158101", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A017158101", "identifiedBy": [ { "type": "uri", @@ -17795,7 +16727,6 @@ "md5": "1425523e6f4689b515923292c3732309", "pid": "A017173033", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A017173033", "identifiedBy": [ { "type": "uri", @@ -17810,7 +16741,6 @@ "md5": "53a9d70cdefc4af7d5d27359e1825ec2", "pid": "A017178153", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A017178153", "identifiedBy": [ { "type": "uri", @@ -17825,7 +16755,6 @@ "md5": "0b4978cb1edbc88fbb9b04454cae5381", "pid": "A017187491", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A017187491", "identifiedBy": [ { "type": "uri", @@ -17840,7 +16769,6 @@ "md5": "70cd7cbaa474c46f855679c77827bad1", "pid": "A017202523", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A017202523", "identifiedBy": [ { "type": "uri", @@ -17855,7 +16783,6 @@ "md5": "e3f7d755032f43814ef7e184a83758f0", "pid": "A017237082", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A017237082", "identifiedBy": [ { "type": "uri", @@ -17870,7 +16797,6 @@ "md5": "232ddcbce426ad529a4a80ac50806d08", "pid": "A017314321", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A017314321", "identifiedBy": [ { "type": "uri", @@ -17885,7 +16811,6 @@ "md5": "14ae5aae62e55e1cb2aae32cbb39197b", "pid": "A017326126", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A017326126", "identifiedBy": [ { "type": "uri", @@ -17901,7 +16826,6 @@ "pid": "A017377907", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A017377907", "identifiedBy": [ { "type": "uri", @@ -17916,7 +16840,6 @@ "md5": "5fb662dedf6b826b2d307a60156737cc", "pid": "A017383534", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A017383534", "identifiedBy": [ { "type": "uri", @@ -17931,7 +16854,6 @@ "md5": "981590087416124efeb823cddd19bc20", "pid": "A017410230", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A017410230", "identifiedBy": [ { "type": "uri", @@ -17946,7 +16868,6 @@ "md5": "44d29fc08f8777a0dfb58ea5f6a4feed", "pid": "A017429783", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A017429783", "identifiedBy": [ { "type": "uri", @@ -17961,7 +16882,6 @@ "md5": "73d02426854b46068ffeef8c67e04a4f", "pid": "A017435658", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A017435658", "identifiedBy": [ { "type": "uri", @@ -17976,7 +16896,6 @@ "md5": "d20ad2d5758b4e2f3bfba961f1299ce5", "pid": "A017451803", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A017451803", "identifiedBy": [ { "type": "uri", @@ -17991,7 +16910,6 @@ "md5": "d223ecedb6c641ccc400e5385d722a43", "pid": "A017458456", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A017458456", "identifiedBy": [ { "type": "uri", @@ -18006,7 +16924,6 @@ "md5": "8cf8e1403710e78cd518ab6184ebe814", "pid": "A017468446", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A017468446", "identifiedBy": [ { "type": "uri", @@ -18022,7 +16939,6 @@ "pid": "A017513975", "type": "bf:Person", "qualifier": "sc\u00e9nariste", - "identifier": "http://data.rero.ch/02-A017513975", "identifiedBy": [ { "type": "uri", @@ -18038,7 +16954,6 @@ "pid": "A017556608", "type": "bf:Person", "qualifier": "(de Tyr sainte)", - "identifier": "http://data.rero.ch/02-A017556608", "identifiedBy": [ { "type": "uri", @@ -18064,7 +16979,6 @@ "md5": "9d48fe010d44355964aac2c767fa8669", "pid": "A017565309", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A017565309", "identifiedBy": [ { "type": "uri", @@ -18090,7 +17004,6 @@ "pid": "A017572454", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A017572454", "identifiedBy": [ { "type": "uri", @@ -18108,7 +17021,6 @@ "md5": "6ddf48396f7062860fb3b09447270dd8", "pid": "A017578807", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A017578807", "identifiedBy": [ { "type": "uri", @@ -18124,7 +17036,6 @@ "pid": "A017581317", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A017581317", "identifiedBy": [ { "type": "uri", @@ -18139,7 +17050,6 @@ "md5": "37147ced1ff278405c3f7448f54c8075", "pid": "A017594651", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A017594651", "identifiedBy": [ { "type": "uri", @@ -18154,7 +17064,6 @@ "md5": "13d2c16187c5ed566b1652f547163e23", "pid": "A017596294", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A017596294", "identifiedBy": [ { "type": "uri", @@ -18169,7 +17078,6 @@ "md5": "43a9bae29b1b3c3ca8844136d62c1aa1", "pid": "A017602316", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A017602316", "identifiedBy": [ { "type": "uri", @@ -18185,7 +17093,6 @@ "pid": "A017611108", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A017611108", "identifiedBy": [ { "type": "uri", @@ -18200,7 +17107,6 @@ "md5": "06c7cb2f1beda122b327644b9fd8c1f8", "pid": "A017635757", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A017635757", "identifiedBy": [ { "type": "uri", @@ -18215,7 +17121,6 @@ "md5": "5c63dc14b9e0fe06bb3c2818dfbb4cc7", "pid": "A017650142", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A017650142", "identifiedBy": [ { "type": "uri", @@ -18231,7 +17136,6 @@ "pid": "A017676479", "type": "bf:Person", "qualifier": "g\u00e9ologue", - "identifier": "http://data.rero.ch/02-A017676479", "identifiedBy": [ { "type": "uri", @@ -18246,7 +17150,6 @@ "md5": "dd279bae1b2cf0ceee201210106e6ef7", "pid": "A017678297", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A017678297", "identifiedBy": [ { "type": "uri", @@ -18261,7 +17164,6 @@ "md5": "444af656443df57abd36f2f022290e8c", "pid": "A017696857", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A017696857", "identifiedBy": [ { "type": "uri", @@ -18276,7 +17178,6 @@ "md5": "006da27c8c83d62bff619ebf5cd197a2", "pid": "A017737385", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A017737385", "identifiedBy": [ { "type": "uri", @@ -18292,7 +17193,6 @@ "pid": "A017743945", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A017743945", "identifiedBy": [ { "type": "uri", @@ -18307,7 +17207,6 @@ "md5": "56753e13db865772271c5d792b9aa911", "pid": "A017761491", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A017761491", "identifiedBy": [ { "type": "uri", @@ -18323,7 +17222,6 @@ "pid": "A017762299", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A017762299", "identifiedBy": [ { "type": "uri", @@ -18338,7 +17236,6 @@ "md5": "3960d4369fff8c94de02f47ee2e8ae1b", "pid": "A017784112", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A017784112", "identifiedBy": [ { "type": "uri", @@ -18353,7 +17250,6 @@ "md5": "af1d3a68fad2a7be5b8e2fc8fe6a1144", "pid": "A017798464", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A017798464", "identifiedBy": [ { "type": "uri", @@ -18369,7 +17265,6 @@ "pid": "A017940250", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A017940250", "identifiedBy": [ { "type": "uri", @@ -18384,7 +17279,6 @@ "md5": "d2329fbf72f4bc04a7d42f9761530b1a", "pid": "A017944030", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A017944030", "identifiedBy": [ { "type": "uri", @@ -18400,7 +17294,6 @@ "pid": "A017944947", "type": "bf:Person", "qualifier": "(fils)", - "identifier": "http://data.rero.ch/02-A017944947", "identifiedBy": [ { "type": "uri", @@ -18419,7 +17312,6 @@ "pid": "A017955463", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A017955463", "identifiedBy": [ { "type": "uri", @@ -18434,7 +17326,6 @@ "md5": "fe3a5f7736d0d18d35e8a0c138796d78", "pid": "A017961866", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A017961866", "identifiedBy": [ { "type": "uri", @@ -18449,7 +17340,6 @@ "md5": "db2e5c4d3024a6b0a53d5c15ead567af", "pid": "A017970655", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A017970655", "identifiedBy": [ { "type": "uri", @@ -18464,7 +17354,6 @@ "md5": "7773764827ddb422baac431166e98d15", "pid": "A017977912", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A017977912", "identifiedBy": [ { "type": "uri", @@ -18479,7 +17368,6 @@ "md5": "9edc9994f2352395dc52360d6b26ce05", "pid": "A017990946", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A017990946", "identifiedBy": [ { "type": "uri", @@ -18494,7 +17382,6 @@ "md5": "e7b6ed985c3dec42479d4863389d45fb", "pid": "A017997426", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A017997426", "identifiedBy": [ { "type": "uri", @@ -18510,7 +17397,6 @@ "pid": "A017998485", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A017998485", "identifiedBy": [ { "type": "uri", @@ -18525,7 +17411,6 @@ "md5": "2afbc1834bf3761b955343ab1d47361b", "pid": "A018022500", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018022500", "identifiedBy": [ { "type": "uri", @@ -18548,7 +17433,6 @@ "md5": "a90037129ecd30fc9d9c166f9464b86c", "pid": "A018042156", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018042156", "identifiedBy": [ { "type": "uri", @@ -18564,7 +17448,6 @@ "pid": "A018051739", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A018051739", "identifiedBy": [ { "type": "uri", @@ -18579,7 +17462,6 @@ "md5": "a45aae3dca05042df83f8ef83ff307aa", "pid": "A018052277", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018052277", "identifiedBy": [ { "type": "uri", @@ -18594,7 +17476,6 @@ "md5": "d8e6e20e6d5502f3e0f0f71511458bcf", "pid": "A018063051", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018063051", "identifiedBy": [ { "type": "uri", @@ -18609,7 +17490,6 @@ "md5": "7f572184bc01f22511f2084c02a15bb2", "pid": "A018070048", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018070048", "identifiedBy": [ { "type": "uri", @@ -18629,7 +17509,6 @@ "md5": "eb6a146a2dd3c5ed00cdc8692f8e5434", "pid": "A018080715", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018080715", "identifiedBy": [ { "type": "uri", @@ -18644,7 +17523,6 @@ "md5": "00059a63a0a718e4166f381ac7326352", "pid": "A018087920", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018087920", "identifiedBy": [ { "type": "uri", @@ -18660,7 +17538,6 @@ "pid": "A018093417", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A018093417", "identifiedBy": [ { "type": "uri", @@ -18675,7 +17552,6 @@ "md5": "196599b9ec89153ddf64135fc7193c56", "pid": "A018105228", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018105228", "identifiedBy": [ { "type": "uri", @@ -18690,7 +17566,6 @@ "md5": "8b583a7560cb7bdb4033a46170039167", "pid": "A018108985", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018108985", "identifiedBy": [ { "type": "uri", @@ -18706,7 +17581,6 @@ "pid": "A018112339", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A018112339", "identifiedBy": [ { "type": "uri", @@ -18721,7 +17595,6 @@ "md5": "6a5c39b3146f439966bd77181e826ab7", "pid": "A018117701", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018117701", "identifiedBy": [ { "type": "uri", @@ -18736,7 +17609,6 @@ "md5": "e517339905bb8cea8ce65c53abece113", "pid": "A018138835", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018138835", "identifiedBy": [ { "type": "uri", @@ -18752,7 +17624,6 @@ "pid": "A018140650", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A018140650", "identifiedBy": [ { "type": "uri", @@ -18767,7 +17638,6 @@ "md5": "83061058e35463f7c913052fe1aaadca", "pid": "A018155271", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018155271", "identifiedBy": [ { "type": "uri", @@ -18782,7 +17652,6 @@ "md5": "043fb2d24430a613f3ab6765c08ad03d", "pid": "A018157124", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018157124", "identifiedBy": [ { "type": "uri", @@ -18797,7 +17666,6 @@ "md5": "78dddc957bb18af653648e71ca6a45ec", "pid": "A018172231", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018172231", "identifiedBy": [ { "type": "uri", @@ -18812,7 +17680,6 @@ "md5": "f10025f9a64b7426b9b9d60297725fe7", "pid": "A018201635", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018201635", "identifiedBy": [ { "type": "uri", @@ -18827,7 +17694,6 @@ "md5": "c6bd658050c015cc06bdf330876c1b7b", "pid": "A018206914", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018206914", "identifiedBy": [ { "type": "uri", @@ -18842,7 +17708,6 @@ "md5": "996aae39ce42b5b0e77dc51c0b5fd6df", "pid": "A018237999", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018237999", "identifiedBy": [ { "type": "uri", @@ -18857,7 +17722,6 @@ "md5": "2168eee71f3dfb9a18a20bc052f2e05d", "pid": "A018243805", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018243805", "identifiedBy": [ { "type": "uri", @@ -18872,7 +17736,6 @@ "md5": "3e10165b65f05787a5e3bcd02b0cafbc", "pid": "A018251580", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018251580", "identifiedBy": [ { "type": "uri", @@ -18888,7 +17751,6 @@ "pid": "A018310828", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A018310828", "identifiedBy": [ { "type": "uri", @@ -18914,7 +17776,6 @@ "pid": "A018321048", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A018321048", "identifiedBy": [ { "type": "uri", @@ -18936,7 +17797,6 @@ "pid": "A018322337", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A018322337", "identifiedBy": [ { "type": "uri", @@ -18951,7 +17811,6 @@ "md5": "0680bf9603b2c009a2137ff5f8d45c34", "pid": "A018324391", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018324391", "identifiedBy": [ { "type": "uri", @@ -18966,7 +17825,6 @@ "md5": "86889236655c75b6d4b5f3cf85f09c4f", "pid": "A018331793", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018331793", "identifiedBy": [ { "type": "uri", @@ -18982,7 +17840,6 @@ "pid": "A018332342", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A018332342", "identifiedBy": [ { "type": "uri", @@ -18997,7 +17854,6 @@ "md5": "e9693fe83ac89c7217e07b617653230b", "pid": "A018345923", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018345923", "identifiedBy": [ { "type": "uri", @@ -19013,7 +17869,6 @@ "pid": "A018346336", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A018346336", "identifiedBy": [ { "type": "uri", @@ -19029,7 +17884,6 @@ "pid": "A018351276", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A018351276", "identifiedBy": [ { "type": "uri", @@ -19045,7 +17899,6 @@ "pid": "A018387362", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A018387362", "identifiedBy": [ { "type": "uri", @@ -19066,7 +17919,6 @@ "md5": "88b25b887746cd4f9b6b0cb1b445e7b4", "pid": "A018391771", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018391771", "identifiedBy": [ { "type": "uri", @@ -19081,7 +17933,6 @@ "md5": "ec95ca6498df13df6463762d45bd6500", "pid": "A018394246", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018394246", "identifiedBy": [ { "type": "uri", @@ -19108,7 +17959,6 @@ "md5": "cc6fdfc8925f6bbd932dbe23c1bc801a", "pid": "A018395567", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018395567", "identifiedBy": [ { "type": "uri", @@ -19124,7 +17974,6 @@ "md5": "7bd4c3efb93adf9449c5da5f9d615f68", "pid": "A018410690", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018410690", "identifiedBy": [ { "type": "uri", @@ -19142,7 +17991,6 @@ "md5": "c69e6081564406da16363055933a0569", "pid": "A018418232", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018418232", "identifiedBy": [ { "type": "uri", @@ -19158,7 +18006,6 @@ "pid": "A018432097", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A018432097", "identifiedBy": [ { "type": "uri", @@ -19173,7 +18020,6 @@ "md5": "28e04fa8e254e3fee1b979e272ca74ae", "pid": "A018440172", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018440172", "identifiedBy": [ { "type": "uri", @@ -19188,7 +18034,6 @@ "md5": "5c83295034374e8d379bf2f0075c010c", "pid": "A018456288", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018456288", "identifiedBy": [ { "type": "uri", @@ -19204,7 +18049,6 @@ "pid": "A018459512", "type": "bf:Person", "qualifier": "m\u00e9decin", - "identifier": "http://data.rero.ch/02-A018459512", "identifiedBy": [ { "type": "uri", @@ -19219,7 +18063,6 @@ "md5": "22122790a4f36697b36f56f8556e0882", "pid": "A018463176", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018463176", "identifiedBy": [ { "type": "uri", @@ -19234,7 +18077,6 @@ "md5": "772014ed8b2b98b82667cd5d44b8c41c", "pid": "A018475973", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018475973", "identifiedBy": [ { "type": "uri", @@ -19251,7 +18093,6 @@ "md5": "7a5ee6c3e77fbad42ea7f891607af1a7", "pid": "A018477130", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018477130", "identifiedBy": [ { "type": "uri", @@ -19269,7 +18110,6 @@ "md5": "2f6f706300d59fe7479ba5f16f62089e", "pid": "A018486553", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018486553", "identifiedBy": [ { "type": "uri", @@ -19284,7 +18124,6 @@ "md5": "67f940632c1a4b8711c4966f1d6e96b1", "pid": "A018541924", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018541924", "identifiedBy": [ { "type": "uri", @@ -19299,7 +18138,6 @@ "md5": "e6129d82f70caaeb60fa599a85f654b8", "pid": "A018548221", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018548221", "identifiedBy": [ { "type": "uri", @@ -19314,7 +18152,6 @@ "md5": "0914e56aed3f6184575f4172722fb561", "pid": "A018556919", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018556919", "identifiedBy": [ { "type": "uri", @@ -19329,7 +18166,6 @@ "md5": "d2236b5b8f159cdce2880cab9c25d6ff", "pid": "A018562369", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018562369", "identifiedBy": [ { "type": "uri", @@ -19344,7 +18180,6 @@ "md5": "67a3a316825ae28ed051798ccda61e8d", "pid": "A018581906", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018581906", "identifiedBy": [ { "type": "uri", @@ -19359,7 +18194,6 @@ "md5": "de15928f8222a081b30489d3873aac59", "pid": "A018584020", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018584020", "identifiedBy": [ { "type": "uri", @@ -19374,7 +18208,6 @@ "md5": "21d51bd010b6a5629f130c8e197cac48", "pid": "A018585140", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018585140", "identifiedBy": [ { "type": "uri", @@ -19389,7 +18222,6 @@ "md5": "31f624720de971c6f415a27dfbeebde0", "pid": "A018591525", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018591525", "identifiedBy": [ { "type": "uri", @@ -19404,7 +18236,6 @@ "md5": "2b4ff363d9c85189f03e28c59f0e2b35", "pid": "A018606059", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018606059", "identifiedBy": [ { "type": "uri", @@ -19419,7 +18250,6 @@ "md5": "36c4033ab76e66035d882b31833e04d1", "pid": "A018606217", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018606217", "identifiedBy": [ { "type": "uri", @@ -19434,7 +18264,6 @@ "md5": "1a374669d1e1ec01e4f18ccd5ee4aab8", "pid": "A018610634", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018610634", "identifiedBy": [ { "type": "uri", @@ -19449,7 +18278,6 @@ "md5": "b23f077bccae61e56fdc79e8982e4494", "pid": "A018613224", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018613224", "identifiedBy": [ { "type": "uri", @@ -19465,7 +18293,6 @@ "pid": "A018617749", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A018617749", "identifiedBy": [ { "type": "uri", @@ -19480,7 +18307,6 @@ "md5": "d5261d2f8926ba960ae6b702bf368f1e", "pid": "A018623512", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018623512", "identifiedBy": [ { "type": "uri", @@ -19495,7 +18321,6 @@ "md5": "a741def453ecac7df9509e00ef685416", "pid": "A018651679", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018651679", "identifiedBy": [ { "type": "uri", @@ -19511,7 +18336,6 @@ "pid": "A018655587", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A018655587", "identifiedBy": [ { "type": "uri", @@ -19530,7 +18354,6 @@ "md5": "9bba28f8bf1dfef255b99c04f10f69ef", "pid": "A018689283", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018689283", "identifiedBy": [ { "type": "uri", @@ -19549,7 +18372,6 @@ "pid": "A018689940", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A018689940", "identifiedBy": [ { "type": "uri", @@ -19564,7 +18386,6 @@ "md5": "0a425a64cdc4201a931b93855fb76167", "pid": "A018699407", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018699407", "identifiedBy": [ { "type": "uri", @@ -19579,7 +18400,6 @@ "md5": "b94c945708549cc48fa2e6eed98aa349", "pid": "A018703625", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018703625", "identifiedBy": [ { "type": "uri", @@ -19594,7 +18414,6 @@ "md5": "990819c680d5da9d8c4744b9577c6c5e", "pid": "A018726776", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018726776", "identifiedBy": [ { "type": "uri", @@ -19609,7 +18428,6 @@ "md5": "bdedc5c2fa88c7174eb28e4a157dcfc9", "pid": "A018750238", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018750238", "identifiedBy": [ { "type": "uri", @@ -19624,7 +18442,6 @@ "md5": "007424a4e5c948111e7478d071d9508f", "pid": "A018777696", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018777696", "identifiedBy": [ { "type": "uri", @@ -19639,7 +18456,6 @@ "md5": "604646998656c85d9432aceecf13e50b", "pid": "A018790254", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018790254", "identifiedBy": [ { "type": "uri", @@ -19654,7 +18470,6 @@ "md5": "a763bfdb15ca4f63bd3f4a8e7553375d", "pid": "A018795339", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018795339", "identifiedBy": [ { "type": "uri", @@ -19669,7 +18484,6 @@ "md5": "c6f9f16c929eced1219bf4924abd4f8f", "pid": "A018796853", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018796853", "identifiedBy": [ { "type": "uri", @@ -19685,7 +18499,6 @@ "pid": "A018810961", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A018810961", "identifiedBy": [ { "type": "uri", @@ -19700,7 +18513,6 @@ "md5": "a600a6a2894395213b158d13fad06669", "pid": "A018836965", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018836965", "identifiedBy": [ { "type": "uri", @@ -19715,7 +18527,6 @@ "md5": "945f08fd0f312c3c873f819f0ae9bb35", "pid": "A018838435", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018838435", "identifiedBy": [ { "type": "uri", @@ -19730,7 +18541,6 @@ "md5": "4d4e7d490b673d43d60289331862f3f0", "pid": "A018857106", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018857106", "identifiedBy": [ { "type": "uri", @@ -19747,7 +18557,6 @@ "pid": "A018863994", "type": "bf:Person", "qualifier": "sc\u00e9nariste", - "identifier": "http://data.rero.ch/02-A018863994", "identifiedBy": [ { "type": "uri", @@ -19762,7 +18571,6 @@ "md5": "110e4505d2d914237e6671a6e4b7f7a2", "pid": "A018867909", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018867909", "identifiedBy": [ { "type": "uri", @@ -19777,7 +18585,6 @@ "md5": "3bed266f8495c0ac58bb07690525b2e1", "pid": "A018875034", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018875034", "identifiedBy": [ { "type": "uri", @@ -19792,7 +18599,6 @@ "md5": "e6d7cb2f093618664915e19833e93383", "pid": "A018879902", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018879902", "identifiedBy": [ { "type": "uri", @@ -19807,7 +18613,6 @@ "md5": "20e2e7fc70aa435c9b88bede93c6a497", "pid": "A018880000", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018880000", "identifiedBy": [ { "type": "uri", @@ -19822,7 +18627,6 @@ "md5": "d15e40293d9a514587eadfa8021d964d", "pid": "A018906120", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018906120", "identifiedBy": [ { "type": "uri", @@ -19837,7 +18641,6 @@ "md5": "8e91810b6f84bd857b9582b7bdc1b13c", "pid": "A018910104", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018910104", "identifiedBy": [ { "type": "uri", @@ -19863,7 +18666,6 @@ "md5": "de2c36f930e9d67009caa55bd6913461", "pid": "A018913029", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018913029", "identifiedBy": [ { "type": "uri", @@ -19878,7 +18680,6 @@ "md5": "d30bbf10a7d7392edfee705edcef692d", "pid": "A018939247", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018939247", "identifiedBy": [ { "type": "uri", @@ -19893,7 +18694,6 @@ "md5": "818b2d558b9ab4cb225274dbd1144a6b", "pid": "A018946790", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018946790", "identifiedBy": [ { "type": "uri", @@ -19908,7 +18708,6 @@ "md5": "df3c06a52f75337eb6de4cfa36602171", "pid": "A018953919", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018953919", "identifiedBy": [ { "type": "uri", @@ -19923,7 +18722,6 @@ "md5": "7c16492c41a3eeda83d149d23df6e67c", "pid": "A018954799", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018954799", "identifiedBy": [ { "type": "uri", @@ -19938,7 +18736,6 @@ "md5": "f5946e218d85ee04dd41700e583850e4", "pid": "A018986263", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A018986263", "identifiedBy": [ { "type": "uri", @@ -19953,7 +18750,6 @@ "md5": "601f4732c9e11f4bb713336531ed921f", "pid": "A019010974", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A019010974", "identifiedBy": [ { "type": "uri", @@ -19982,7 +18778,6 @@ "pid": "A019019750", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A019019750", "identifiedBy": [ { "type": "uri", @@ -20000,7 +18795,6 @@ "md5": "6c791851f7fcf720e2402539a5864e03", "pid": "A019033792", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A019033792", "identifiedBy": [ { "type": "uri", @@ -20015,7 +18809,6 @@ "md5": "71809d5173a5f24188197435ec6970bc", "pid": "A019052882", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A019052882", "identifiedBy": [ { "type": "uri", @@ -20031,7 +18824,6 @@ "pid": "A019060042", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A019060042", "identifiedBy": [ { "type": "uri", @@ -20046,7 +18838,6 @@ "md5": "f260c35e28461fb87b9d1496f6e5141f", "pid": "A019072876", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A019072876", "identifiedBy": [ { "type": "uri", @@ -20065,7 +18856,6 @@ "md5": "fec962d812597ce8f57d66db7a61f68a", "pid": "A019100305", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A019100305", "identifiedBy": [ { "type": "uri", @@ -20080,7 +18870,6 @@ "md5": "a15ef8838b7a6ab0e509bd7ef58052f1", "pid": "A019104065", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A019104065", "identifiedBy": [ { "type": "uri", @@ -20095,7 +18884,6 @@ "md5": "0a268dc6f1c71ff75e6082560b5f94fc", "pid": "A019111556", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A019111556", "identifiedBy": [ { "type": "uri", @@ -20110,7 +18898,6 @@ "md5": "e4a9588e074d6bdff7141507ff7bd691", "pid": "A019131066", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A019131066", "identifiedBy": [ { "type": "uri", @@ -20125,7 +18912,6 @@ "md5": "5604a5be1ce26b88e60f4ecc9b1a67a9", "pid": "A019135541", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A019135541", "identifiedBy": [ { "type": "uri", @@ -20140,7 +18926,6 @@ "md5": "56b0a985baf788b3a536f657ab3fa8a4", "pid": "A019156002", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A019156002", "identifiedBy": [ { "type": "uri", @@ -20155,7 +18940,6 @@ "md5": "c4db6986532f3ee513b7ecb5a62b92ed", "pid": "A019212102", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A019212102", "identifiedBy": [ { "type": "uri", @@ -20170,7 +18954,6 @@ "md5": "69effb29f4414bb057b8a7e759a528ec", "pid": "A019243832", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A019243832", "identifiedBy": [ { "type": "uri", @@ -20185,7 +18968,6 @@ "md5": "e67f544c3fbceb41ebfcefbf35e212b2", "pid": "A020002432", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A020002432", "identifiedBy": [ { "type": "uri", @@ -20201,7 +18983,6 @@ "pid": "A020018697", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A020018697", "identifiedBy": [ { "type": "uri", @@ -20216,7 +18997,6 @@ "md5": "43da2d67d7faa5537d83b66deb8a219e", "pid": "A020026743", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A020026743", "identifiedBy": [ { "type": "uri", @@ -20231,7 +19011,6 @@ "md5": "67db1e64d4d9bfffda3c6bb108ee58be", "pid": "A020053143", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A020053143", "identifiedBy": [ { "type": "uri", @@ -20246,7 +19025,6 @@ "md5": "16c4828a683dd0caa8074e717c06ad40", "pid": "A020057293", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A020057293", "identifiedBy": [ { "type": "uri", @@ -20262,7 +19040,6 @@ "pid": "A020059215", "type": "bf:Person", "qualifier": "juriste", - "identifier": "http://data.rero.ch/02-A020059215", "identifiedBy": [ { "type": "uri", @@ -20277,7 +19054,6 @@ "md5": "1901d1e4febbb22e5e26e101206361de", "pid": "A020064866", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A020064866", "identifiedBy": [ { "type": "uri", @@ -20292,7 +19068,6 @@ "md5": "7bfdefb7561f6590d18b3b09607db187", "pid": "A020072898", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A020072898", "identifiedBy": [ { "type": "uri", @@ -20307,7 +19082,6 @@ "md5": "db318b8f5945986c979f3b6aa569f773", "pid": "A020078206", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A020078206", "identifiedBy": [ { "type": "uri", @@ -20322,7 +19096,6 @@ "md5": "48d8399601319ee1719fd22bba4b35e1", "pid": "A020092031", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A020092031", "identifiedBy": [ { "type": "uri", @@ -20337,7 +19110,6 @@ "md5": "c73af73bb305151901a9e679da58fc00", "pid": "A020092462", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A020092462", "identifiedBy": [ { "type": "uri", @@ -20352,7 +19124,6 @@ "md5": "3aa36b2fde0193ed5791d8690c8895a3", "pid": "A020092476", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A020092476", "identifiedBy": [ { "type": "uri", @@ -20367,7 +19138,6 @@ "md5": "44afcdf37c04e0fac675fedba2b58109", "pid": "A020103298", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A020103298", "identifiedBy": [ { "type": "uri", @@ -20383,7 +19153,6 @@ "pid": "A020121326", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A020121326", "identifiedBy": [ { "type": "uri", @@ -20398,7 +19167,6 @@ "md5": "22d870f13833236687f8fea661647abd", "pid": "A020122182", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A020122182", "identifiedBy": [ { "type": "uri", @@ -20420,7 +19188,6 @@ "md5": "a43607019e5a9d060eee2b2cd2614ddc", "pid": "A020122584", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A020122584", "identifiedBy": [ { "type": "uri", @@ -20435,7 +19202,6 @@ "md5": "f3a5197db7b22ee0ad683dad5166e072", "pid": "A020128356", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A020128356", "identifiedBy": [ { "type": "uri", @@ -20450,7 +19216,6 @@ "md5": "cb3cdd13f6f5ce303dd4b64cbf1cd295", "pid": "A020139475", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A020139475", "identifiedBy": [ { "type": "uri", @@ -20465,7 +19230,6 @@ "md5": "dfe7536275429309e0bbd9632fb647c3", "pid": "A020148399", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A020148399", "identifiedBy": [ { "type": "uri", @@ -20480,7 +19244,6 @@ "md5": "aca061099aad5813b205eb44d9052f60", "pid": "A020157288", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A020157288", "identifiedBy": [ { "type": "uri", @@ -20495,7 +19258,6 @@ "md5": "c0d91f23d3cfcf1de1af6b0f40a79da9", "pid": "A020168707", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A020168707", "identifiedBy": [ { "type": "uri", @@ -20510,7 +19272,6 @@ "md5": "4c272198276e9f3cd7c45a55a16d674c", "pid": "A020209272", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A020209272", "identifiedBy": [ { "type": "uri", @@ -20525,7 +19286,6 @@ "md5": "1ab636b2f0619b1d42180564fc52eac2", "pid": "A020211267", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A020211267", "identifiedBy": [ { "type": "uri", @@ -20540,7 +19300,6 @@ "md5": "7e95e9cb8a267ae20e71151927e7ad77", "pid": "A020228645", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A020228645", "identifiedBy": [ { "type": "uri", @@ -20555,7 +19314,6 @@ "md5": "09b7b0c6e9487f41d41cdfd5127a0096", "pid": "A020232527", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A020232527", "identifiedBy": [ { "type": "uri", @@ -20573,7 +19331,6 @@ "md5": "76a72b62725121d25f457a153a6a77f2", "pid": "A020244189", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A020244189", "identifiedBy": [ { "type": "uri", @@ -20588,7 +19345,6 @@ "md5": "b6b31889dcfe1840bae8e4f633f7922f", "pid": "A020276000", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A020276000", "identifiedBy": [ { "type": "uri", @@ -20603,7 +19359,6 @@ "md5": "646be4a3d9e4a196060e11335e5c50f6", "pid": "A020278434", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A020278434", "identifiedBy": [ { "type": "uri", @@ -20618,7 +19373,6 @@ "md5": "6d8a50090adfddb8314b9a124da5b6ee", "pid": "A020285886", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A020285886", "identifiedBy": [ { "type": "uri", @@ -20633,7 +19387,6 @@ "md5": "2b3edec3ac42f60bef94c0741b816a09", "pid": "A020287613", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A020287613", "identifiedBy": [ { "type": "uri", @@ -20648,7 +19401,6 @@ "md5": "ca6f94d8ef56f59a830954440322ce71", "pid": "A020317114", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A020317114", "identifiedBy": [ { "type": "uri", @@ -20664,7 +19416,6 @@ "pid": "A020337204", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A020337204", "identifiedBy": [ { "type": "uri", @@ -20679,7 +19430,6 @@ "md5": "c1d2f344372463c78db939bcd2de5431", "pid": "A020340385", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A020340385", "identifiedBy": [ { "type": "uri", @@ -20698,7 +19448,6 @@ "md5": "5e3898512b6bdc0fb26eb3044c2f665e", "pid": "A020351109", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A020351109", "identifiedBy": [ { "type": "uri", @@ -20713,7 +19462,6 @@ "md5": "7d12a4d1ffeea6f349a10869c6bb0293", "pid": "A020355982", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A020355982", "identifiedBy": [ { "type": "uri", @@ -20732,7 +19480,6 @@ "pid": "A020360095", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A020360095", "identifiedBy": [ { "type": "uri", @@ -20757,7 +19504,6 @@ "md5": "1a6fd45f7e1501f4c8eccba6e281780a", "pid": "A020370205", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A020370205", "identifiedBy": [ { "type": "uri", @@ -20772,7 +19518,6 @@ "md5": "05cd8ec8480a4a791bed4bf79be33819", "pid": "A020376367", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A020376367", "identifiedBy": [ { "type": "uri", @@ -20787,7 +19532,6 @@ "md5": "14aba1ea12912140ad4163d2bf1d2e3a", "pid": "A020377292", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A020377292", "identifiedBy": [ { "type": "uri", @@ -20802,7 +19546,6 @@ "md5": "10739ae9c41dd362bced1947d57f5b97", "pid": "A020398544", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A020398544", "identifiedBy": [ { "type": "uri", @@ -20818,7 +19561,6 @@ "pid": "A020413592", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A020413592", "identifiedBy": [ { "type": "uri", @@ -20848,7 +19590,6 @@ "pid": "A020415873", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A020415873", "identifiedBy": [ { "type": "uri", @@ -20863,7 +19604,6 @@ "md5": "f5287632f47695fd0406b8a65baa08fd", "pid": "A020417148", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A020417148", "identifiedBy": [ { "type": "uri", @@ -20878,7 +19618,6 @@ "md5": "2f33f500e366d4f426bfcf666a824790", "pid": "A020436263", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A020436263", "identifiedBy": [ { "type": "uri", @@ -20893,7 +19632,6 @@ "md5": "97fae3c79310e0f5b5277cbd540fe1d0", "pid": "A020461666", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A020461666", "identifiedBy": [ { "type": "uri", @@ -20908,7 +19646,6 @@ "md5": "1f5ea0d483ec81db7aa40d6d9c8046ef", "pid": "A020462104", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A020462104", "identifiedBy": [ { "type": "uri", @@ -20923,7 +19660,6 @@ "md5": "6010254e7704251c6e5397cc35c45adb", "pid": "A020465572", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A020465572", "identifiedBy": [ { "type": "uri", @@ -20938,7 +19674,6 @@ "md5": "7dcc512f097b1960a3817a599583d219", "pid": "A020465592", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A020465592", "identifiedBy": [ { "type": "uri", @@ -20953,7 +19688,6 @@ "md5": "497855ee24b1767fd5cf973e39f15740", "pid": "A020471717", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A020471717", "identifiedBy": [ { "type": "uri", @@ -20968,7 +19702,6 @@ "md5": "dcb378d83150e43e76f9606016cd2c6c", "pid": "A020478658", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A020478658", "identifiedBy": [ { "type": "uri", @@ -20983,7 +19716,6 @@ "md5": "9071715e981ac3efac7929931d2a716d", "pid": "A020487139", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A020487139", "identifiedBy": [ { "type": "uri", @@ -20998,7 +19730,6 @@ "md5": "2f36ad3db055b2c9d9c5ef48271d1c75", "pid": "A020500799", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A020500799", "identifiedBy": [ { "type": "uri", @@ -21014,7 +19745,6 @@ "pid": "A021510454", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A021510454", "identifiedBy": [ { "type": "uri", @@ -21029,7 +19759,6 @@ "md5": "d0890cecb97c3a704450d05cf5b312c2", "pid": "A021514179", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A021514179", "identifiedBy": [ { "type": "uri", @@ -21048,7 +19777,6 @@ "md5": "338eb648a09f85fd882fe5fd2697d0f9", "pid": "A021535410", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A021535410", "identifiedBy": [ { "type": "uri", @@ -21063,7 +19791,6 @@ "md5": "3b583cd1181dfef4943934ab539e2b4d", "pid": "A021609811", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A021609811", "identifiedBy": [ { "type": "uri", @@ -21078,7 +19805,6 @@ "md5": "9da9b3e110eb198f4f1074533110c00a", "pid": "A021617173", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A021617173", "identifiedBy": [ { "type": "uri", @@ -21093,7 +19819,6 @@ "md5": "6535777588b1b505d38db15a728c9367", "pid": "A021621256", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A021621256", "identifiedBy": [ { "type": "uri", @@ -21110,7 +19835,6 @@ "md5": "f082bbfdff66ae86342cbb72a78fb599", "pid": "A021627558", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A021627558", "identifiedBy": [ { "type": "uri", @@ -21125,7 +19849,6 @@ "md5": "6bec4b315b9f5802005484611b4ccd83", "pid": "A021643724", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A021643724", "identifiedBy": [ { "type": "uri", @@ -21146,7 +19869,6 @@ "md5": "dc82fdf6e983e3d73a241c06959083ab", "pid": "A021650553", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A021650553", "identifiedBy": [ { "type": "uri", @@ -21162,7 +19884,6 @@ "pid": "A021653398", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A021653398", "identifiedBy": [ { "type": "uri", @@ -21177,7 +19898,6 @@ "md5": "7655b6ebf7268b9ad1ec3aaeddebae5e", "pid": "A021657316", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A021657316", "identifiedBy": [ { "type": "uri", @@ -21193,7 +19913,6 @@ "pid": "A021665049", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A021665049", "identifiedBy": [ { "type": "uri", @@ -21209,7 +19928,6 @@ "pid": "A021681210", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A021681210", "identifiedBy": [ { "type": "uri", @@ -21234,7 +19952,6 @@ "md5": "3e7e2fa537fe09d2904f6baea2a15de8", "pid": "A021706387", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A021706387", "identifiedBy": [ { "type": "uri", @@ -21249,7 +19966,6 @@ "md5": "84f3217f632eaea208d9e8d5bfe3da6f", "pid": "A021753974", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A021753974", "identifiedBy": [ { "type": "uri", @@ -21273,7 +19989,6 @@ "md5": "558281f275db8dc76aa09f4a8a1d53d8", "pid": "A021794133", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A021794133", "identifiedBy": [ { "type": "uri", @@ -21297,7 +20012,6 @@ "md5": "f0dc06f84972bbe33a29364a291239fb", "pid": "A021819945", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A021819945", "identifiedBy": [ { "type": "uri", @@ -21321,7 +20035,6 @@ "md5": "452e1b7209244d1170cff19194226aa7", "pid": "A021917468", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A021917468", "identifiedBy": [ { "type": "uri", @@ -21339,7 +20052,6 @@ "md5": "9f630fa7836f2c8e604798d1effe9e72", "pid": "A021918604", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A021918604", "identifiedBy": [ { "type": "uri", @@ -21354,7 +20066,6 @@ "md5": "6662363f2410f35df2c72e9cf7bd1981", "pid": "A021921193", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A021921193", "identifiedBy": [ { "type": "uri", @@ -21372,7 +20083,6 @@ "md5": "f6b48fe34e6cae2b59c47444c291e116", "pid": "A021975601", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A021975601", "identifiedBy": [ { "type": "uri", @@ -21387,7 +20097,6 @@ "md5": "9e3ddebda3a5f0703357c1bd87ae72e9", "pid": "A021988179", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A021988179", "identifiedBy": [ { "type": "uri", @@ -21402,7 +20111,6 @@ "md5": "5a78d97411df8be4beb764af2701206f", "pid": "A021992182", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A021992182", "identifiedBy": [ { "type": "uri", @@ -21420,7 +20128,6 @@ "md5": "4044bed85f8ebdf85fc966d487c732e1", "pid": "A021995847", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A021995847", "identifiedBy": [ { "type": "uri", @@ -21436,7 +20143,6 @@ "pid": "A022010442", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A022010442", "identifiedBy": [ { "type": "uri", @@ -21451,7 +20157,6 @@ "md5": "c56ef274a17afa222f2f3da96abad762", "pid": "A022253194", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A022253194", "identifiedBy": [ { "type": "uri", @@ -21468,7 +20173,6 @@ "md5": "cfc9da2f2d6856f11c99984413e3e5e7", "pid": "A022261345", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A022261345", "identifiedBy": [ { "type": "uri", @@ -21484,7 +20188,6 @@ "md5": "c30401adf84e193018a25234befaffab", "pid": "A022263478", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A022263478", "identifiedBy": [ { "type": "uri", @@ -21500,7 +20203,6 @@ "pid": "A022416217", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A022416217", "identifiedBy": [ { "type": "uri", @@ -21516,7 +20218,6 @@ "pid": "A022476006", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A022476006", "identifiedBy": [ { "type": "uri", @@ -21532,7 +20233,6 @@ "pid": "A022502492", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A022502492", "identifiedBy": [ { "type": "uri", @@ -21547,7 +20247,6 @@ "md5": "e458373be685918007ea44f7a6e079af", "pid": "A022508588", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A022508588", "identifiedBy": [ { "type": "uri", @@ -21562,7 +20261,6 @@ "md5": "a01dc9df2228fa94b4d7b5aa3f1b9ac9", "pid": "A022508598", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A022508598", "identifiedBy": [ { "type": "uri", @@ -21577,7 +20275,6 @@ "md5": "ea2b087554f99714dcc1891fdbeef054", "pid": "A022512216", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A022512216", "identifiedBy": [ { "type": "uri", @@ -21592,7 +20289,6 @@ "md5": "e1f5da9fc71a24e1dc8830a5bfc6cd0a", "pid": "A022533394", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A022533394", "identifiedBy": [ { "type": "uri", @@ -21607,7 +20303,6 @@ "md5": "06b56513344072cb75cc68dafafb9d88", "pid": "A022545173", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A022545173", "identifiedBy": [ { "type": "uri", @@ -21622,7 +20317,6 @@ "md5": "082969164082225e9b671fbced701874", "pid": "A022553969", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A022553969", "identifiedBy": [ { "type": "uri", @@ -21637,7 +20331,6 @@ "md5": "781ee8bd790cfeaab27468f5032a42e2", "pid": "A022563739", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A022563739", "identifiedBy": [ { "type": "uri", @@ -21653,7 +20346,6 @@ "pid": "A022609222", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A022609222", "identifiedBy": [ { "type": "uri", @@ -21668,7 +20360,6 @@ "md5": "dd579d04d2e7838a8864e48fc4c082d4", "pid": "A022669691", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A022669691", "identifiedBy": [ { "type": "uri", @@ -21683,7 +20374,6 @@ "md5": "1540e571edf6335cb320cabca366db7c", "pid": "A022727201", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A022727201", "identifiedBy": [ { "type": "uri", @@ -21699,7 +20389,6 @@ "pid": "A022728227", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A022728227", "identifiedBy": [ { "type": "uri", @@ -21714,7 +20403,6 @@ "md5": "b0a83aaef57b3345bd26a74da434c8cf", "pid": "A022750943", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A022750943", "identifiedBy": [ { "type": "uri", @@ -21730,7 +20418,6 @@ "pid": "A022755606", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A022755606", "identifiedBy": [ { "type": "uri", @@ -21745,7 +20432,6 @@ "md5": "51581248798e769be7095e52b39b195e", "pid": "A022762257", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A022762257", "identifiedBy": [ { "type": "uri", @@ -21760,7 +20446,6 @@ "md5": "5f6a12a95e954b3d13bd47a0caa11add", "pid": "A022774320", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A022774320", "identifiedBy": [ { "type": "uri", @@ -21775,7 +20460,6 @@ "md5": "5177afe3f1e90d7ccccce2f24aba0094", "pid": "A022779592", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A022779592", "identifiedBy": [ { "type": "uri", @@ -21792,7 +20476,6 @@ "md5": "5f65b511c3ad8fceb8ad4f68c1550e8d", "pid": "A022780159", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A022780159", "identifiedBy": [ { "type": "uri", @@ -21809,7 +20492,6 @@ "md5": "1a965a39d0afd06d963c16276d08a688", "pid": "A022784340", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A022784340", "identifiedBy": [ { "type": "uri", @@ -21824,7 +20506,6 @@ "md5": "ce9c760752e4718962d97f1007118260", "pid": "A022788140", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A022788140", "identifiedBy": [ { "type": "uri", @@ -21840,7 +20521,6 @@ "pid": "A022802138", "type": "bf:Person", "qualifier": "of Nuthill", - "identifier": "http://data.rero.ch/02-A022802138", "identifiedBy": [ { "type": "uri", @@ -21855,7 +20535,6 @@ "md5": "99462d5643370910fc4c01a2d142dbd4", "pid": "A022802695", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A022802695", "identifiedBy": [ { "type": "uri", @@ -21871,7 +20550,6 @@ "pid": "A022817751", "type": "bf:Person", "qualifier": "M", - "identifier": "http://data.rero.ch/02-A022817751", "identifiedBy": [ { "type": "uri", @@ -21886,7 +20564,6 @@ "md5": "9651dedcd8c2341c922c0910ff45df0d", "pid": "A022823883", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A022823883", "identifiedBy": [ { "type": "uri", @@ -21901,7 +20578,6 @@ "md5": "fa0fe237601835787e81ebeb7b011810", "pid": "A022833947", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A022833947", "identifiedBy": [ { "type": "uri", @@ -21916,7 +20592,6 @@ "md5": "f81ecbbe34cd64da4c22a0dcdca96742", "pid": "A022844215", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A022844215", "identifiedBy": [ { "type": "uri", @@ -21933,7 +20608,6 @@ "md5": "3357b937fc092dff465f4fac66353686", "pid": "A022850968", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A022850968", "identifiedBy": [ { "type": "uri", @@ -21951,7 +20625,6 @@ "pid": "A022851528", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A022851528", "identifiedBy": [ { "type": "uri", @@ -21967,7 +20640,6 @@ "pid": "A022851951", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A022851951", "identifiedBy": [ { "type": "uri", @@ -21983,7 +20655,6 @@ "pid": "A022877330", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A022877330", "identifiedBy": [ { "type": "uri", @@ -21999,7 +20670,6 @@ "pid": "A022879961", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A022879961", "identifiedBy": [ { "type": "uri", @@ -22014,7 +20684,6 @@ "md5": "9dd5f2b2815527b9b67441b26035db57", "pid": "A022889884", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A022889884", "identifiedBy": [ { "type": "uri", @@ -22030,7 +20699,6 @@ "pid": "A022899841", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A022899841", "identifiedBy": [ { "type": "uri", @@ -22045,7 +20713,6 @@ "md5": "9ee41b8c2bc56074bc02c8b091ec14ac", "pid": "A022904210", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A022904210", "identifiedBy": [ { "type": "uri", @@ -22063,7 +20730,6 @@ "pid": "A022916519", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A022916519", "identifiedBy": [ { "type": "uri", @@ -22079,7 +20745,6 @@ "pid": "A022917527", "type": "bf:Person", "qualifier": "Mme", - "identifier": "http://data.rero.ch/02-A022917527", "identifiedBy": [ { "type": "uri", @@ -22095,7 +20760,6 @@ "pid": "A022925286", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A022925286", "identifiedBy": [ { "type": "uri", @@ -22110,7 +20774,6 @@ "md5": "0802739f66e270db4ebb0c2dfd6c8c96", "pid": "A022944034", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A022944034", "identifiedBy": [ { "type": "uri", @@ -22125,7 +20788,6 @@ "md5": "cad9964c78234bbf77948589cc1bada2", "pid": "A022959371", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A022959371", "identifiedBy": [ { "type": "uri", @@ -22140,7 +20802,6 @@ "md5": "69518f831dcb4b4b4d23b2e11f9df095", "pid": "A022966454", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A022966454", "identifiedBy": [ { "type": "uri", @@ -22158,7 +20819,6 @@ "pid": "A022967536", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A022967536", "identifiedBy": [ { "type": "uri", @@ -22174,7 +20834,6 @@ "pid": "A022968022", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A022968022", "identifiedBy": [ { "type": "uri", @@ -22190,7 +20849,6 @@ "pid": "A022977898", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A022977898", "identifiedBy": [ { "type": "uri", @@ -22205,7 +20863,6 @@ "md5": "42976cc2cbf901135301e0c973e05710", "pid": "A022983847", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A022983847", "identifiedBy": [ { "type": "uri", @@ -22220,7 +20877,6 @@ "md5": "dc24da39316eeeef019e10226335b280", "pid": "A022990131", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A022990131", "identifiedBy": [ { "type": "uri", @@ -22235,7 +20891,6 @@ "md5": "6203cfd936786ca4f1e637c21d3147cc", "pid": "A022997177", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A022997177", "identifiedBy": [ { "type": "uri", @@ -22251,7 +20906,6 @@ "pid": "A023068067", "type": "bf:Person", "qualifier": "veuve", - "identifier": "http://data.rero.ch/02-A023068067", "identifiedBy": [ { "type": "uri", @@ -22266,7 +20920,6 @@ "md5": "0e5a4673c4f7eb00ae4cbd28977f20c9", "pid": "A023086196", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023086196", "identifiedBy": [ { "type": "uri", @@ -22282,7 +20935,6 @@ "pid": "A023112678", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A023112678", "identifiedBy": [ { "type": "uri", @@ -22297,7 +20949,6 @@ "md5": "b036a3091f36af826cca6d5b0482bc5d", "pid": "A023114350", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023114350", "identifiedBy": [ { "type": "uri", @@ -22313,7 +20964,6 @@ "md5": "4817522586de3c3619d5a0da5133d774", "pid": "A023116130", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023116130", "identifiedBy": [ { "type": "uri", @@ -22334,7 +20984,6 @@ "md5": "d49dbdb899fac49a4d7afb9a56d34fe6", "pid": "A023116917", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023116917", "identifiedBy": [ { "type": "uri", @@ -22350,7 +20999,6 @@ "pid": "A023154358", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A023154358", "identifiedBy": [ { "type": "uri", @@ -22365,7 +21013,6 @@ "md5": "c20a10e5e9ad0234aabc5e9da5c4568b", "pid": "A023158576", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023158576", "identifiedBy": [ { "type": "uri", @@ -22383,7 +21030,6 @@ "md5": "a157238ef6eba09e82668e2e76c1fcaf", "pid": "A023166695", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023166695", "identifiedBy": [ { "type": "uri", @@ -22398,7 +21044,6 @@ "md5": "bea81994cd0cdce9508e8bc4a0673f16", "pid": "A023168629", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023168629", "identifiedBy": [ { "type": "uri", @@ -22413,7 +21058,6 @@ "md5": "f6359de8199d69f53de3269c89633108", "pid": "A023182560", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023182560", "identifiedBy": [ { "type": "uri", @@ -22429,7 +21073,6 @@ "pid": "A023188004", "type": "bf:Person", "qualifier": "fr\u00e8re", - "identifier": "http://data.rero.ch/02-A023188004", "identifiedBy": [ { "type": "uri", @@ -22444,7 +21087,6 @@ "md5": "308a7bf703b6b705dd7c35529d0b2b9b", "pid": "A023189262", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023189262", "identifiedBy": [ { "type": "uri", @@ -22460,7 +21102,6 @@ "md5": "f06e5e2fd5622a7153a567b17bab6549", "pid": "A023193920", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023193920", "identifiedBy": [ { "type": "uri", @@ -22475,7 +21116,6 @@ "md5": "abd01a9b0f70d17e5d749e29f1052d46", "pid": "A023196927", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023196927", "identifiedBy": [ { "type": "uri", @@ -22491,7 +21131,6 @@ "pid": "A023205283", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A023205283", "identifiedBy": [ { "type": "uri", @@ -22506,7 +21145,6 @@ "md5": "413f59a72ce638ed151a5dd6dcbf6f1f", "pid": "A023227823", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023227823", "identifiedBy": [ { "type": "uri", @@ -22521,7 +21159,6 @@ "md5": "cf4b82ac0ea621a1cee6f389d62b9e8d", "pid": "A023237776", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023237776", "identifiedBy": [ { "type": "uri", @@ -22536,7 +21173,6 @@ "md5": "bd39abf3d399d857e2d9f873971abe7e", "pid": "A023249408", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023249408", "identifiedBy": [ { "type": "uri", @@ -22554,7 +21190,6 @@ "md5": "319d2492d4f6d35c20aae66475c6bed7", "pid": "A023286352", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023286352", "identifiedBy": [ { "type": "uri", @@ -22569,7 +21204,6 @@ "md5": "c4621a022ef123cd86ce92ab24bd7de6", "pid": "A023294886", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023294886", "identifiedBy": [ { "type": "uri", @@ -22584,7 +21218,6 @@ "md5": "519b4ae21c1f4c158f0fc5872e4fd09e", "pid": "A023325251", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023325251", "identifiedBy": [ { "type": "uri", @@ -22605,7 +21238,6 @@ "md5": "56249295e42a7eb4f0d733b0029c8fc7", "pid": "A023343244", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023343244", "identifiedBy": [ { "type": "uri", @@ -22620,7 +21252,6 @@ "md5": "06e0a9944e75b664c93e0e0c1519b8df", "pid": "A023361460", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023361460", "identifiedBy": [ { "type": "uri", @@ -22635,7 +21266,6 @@ "md5": "cd5175d535da828636984b7b9cceff90", "pid": "A023366781", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023366781", "identifiedBy": [ { "type": "uri", @@ -22651,7 +21281,6 @@ "pid": "A023417604", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A023417604", "identifiedBy": [ { "type": "uri", @@ -22666,7 +21295,6 @@ "md5": "762e0c4c2756f5bf471f7c178aecfecc", "pid": "A023417887", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023417887", "identifiedBy": [ { "type": "uri", @@ -22681,7 +21309,6 @@ "md5": "5da23ad2c85042e9d7ff082173d4a84f", "pid": "A023419144", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023419144", "identifiedBy": [ { "type": "uri", @@ -22697,7 +21324,6 @@ "pid": "A023422393", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A023422393", "identifiedBy": [ { "type": "uri", @@ -22712,7 +21338,6 @@ "md5": "c1c733dd752cb2eacf142bd708df0e80", "pid": "A023425677", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023425677", "identifiedBy": [ { "type": "uri", @@ -22737,7 +21362,6 @@ "md5": "57031b26ce66345c212fd01e91e04d30", "pid": "A023432176", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023432176", "identifiedBy": [ { "type": "uri", @@ -22762,7 +21386,6 @@ "pid": "A023438761", "type": "bf:Person", "qualifier": "do Assare\u0301", - "identifier": "http://data.rero.ch/02-A023438761", "identifiedBy": [ { "type": "uri", @@ -22794,7 +21417,6 @@ "pid": "A023440649", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A023440649", "identifiedBy": [ { "type": "uri", @@ -22810,7 +21432,6 @@ "pid": "A023442924", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A023442924", "identifiedBy": [ { "type": "uri", @@ -22825,7 +21446,6 @@ "md5": "44c55bbd94416377e03888ac973f4b66", "pid": "A023452640", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023452640", "identifiedBy": [ { "type": "uri", @@ -22841,7 +21461,6 @@ "pid": "A023455691", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A023455691", "identifiedBy": [ { "type": "uri", @@ -22857,7 +21476,6 @@ "pid": "A023474915", "type": "bf:Person", "qualifier": "Mme", - "identifier": "http://data.rero.ch/02-A023474915", "identifiedBy": [ { "type": "uri", @@ -22872,7 +21490,6 @@ "md5": "6d7826682db8e373b24619236a1b5df0", "pid": "A023516300", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023516300", "identifiedBy": [ { "type": "uri", @@ -22887,7 +21504,6 @@ "md5": "31ebe5386e3e6f9fac8d0c29ecf1cbd9", "pid": "A023516798", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023516798", "identifiedBy": [ { "type": "uri", @@ -22902,7 +21518,6 @@ "md5": "7168b7d23ec879b4778d05bafcdc39b6", "pid": "A023520416", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023520416", "identifiedBy": [ { "type": "uri", @@ -22917,7 +21532,6 @@ "md5": "5cce189cd10c74bf06ce1f1268f736e3", "pid": "A023524669", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023524669", "identifiedBy": [ { "type": "uri", @@ -22932,7 +21546,6 @@ "md5": "c02c8cf69020c2148a9aa814a822aafd", "pid": "A023533143", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023533143", "identifiedBy": [ { "type": "uri", @@ -22948,7 +21561,6 @@ "pid": "A023570716", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A023570716", "identifiedBy": [ { "type": "uri", @@ -22964,7 +21576,6 @@ "pid": "A023604346", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A023604346", "identifiedBy": [ { "type": "uri", @@ -22980,7 +21591,6 @@ "pid": "A023605931", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A023605931", "identifiedBy": [ { "type": "uri", @@ -22995,7 +21605,6 @@ "md5": "03796f4b9e5a6c4449845504949eb728", "pid": "A023608022", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023608022", "identifiedBy": [ { "type": "uri", @@ -23013,7 +21622,6 @@ "md5": "0c7f274d4a6878dc5535575b2bdf0159", "pid": "A023613346", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023613346", "identifiedBy": [ { "type": "uri", @@ -23029,7 +21637,6 @@ "md5": "4e2bf5d7fd4536a53383e384e6072198", "pid": "A023626167", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023626167", "identifiedBy": [ { "type": "uri", @@ -23044,7 +21651,6 @@ "md5": "5304a058b4e35a3d3d6588c307dba83f", "pid": "A023644947", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023644947", "identifiedBy": [ { "type": "uri", @@ -23059,7 +21665,6 @@ "md5": "38e7d0a1bcd73f76ca17e9fc0907fd1d", "pid": "A023655893", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023655893", "identifiedBy": [ { "type": "uri", @@ -23074,7 +21679,6 @@ "md5": "1e664f320103d626380e931bc11c7724", "pid": "A023668772", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023668772", "identifiedBy": [ { "type": "uri", @@ -23089,7 +21693,6 @@ "md5": "845b44f3a8bdac712286fa755d92b40a", "pid": "A023690762", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023690762", "identifiedBy": [ { "type": "uri", @@ -23104,7 +21707,6 @@ "md5": "37a78506528f5414ca3145e197e66fe6", "pid": "A023693839", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023693839", "identifiedBy": [ { "type": "uri", @@ -23119,7 +21721,6 @@ "md5": "692ff576f37b69f25db76aa698a11602", "pid": "A023699946", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023699946", "identifiedBy": [ { "type": "uri", @@ -23134,7 +21735,6 @@ "md5": "f6bfbcc2e625f067927f1dbc7bf0eb52", "pid": "A023700595", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023700595", "identifiedBy": [ { "type": "uri", @@ -23150,7 +21750,6 @@ "pid": "A023701973", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A023701973", "identifiedBy": [ { "type": "uri", @@ -23165,7 +21764,6 @@ "md5": "90586b4c1f8c1f2cdc3b00ce4f642545", "pid": "A023712980", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023712980", "identifiedBy": [ { "type": "uri", @@ -23180,7 +21778,6 @@ "md5": "bf685d8e5e49e3aa902fa334430355d3", "pid": "A023720699", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023720699", "identifiedBy": [ { "type": "uri", @@ -23196,7 +21793,6 @@ "md5": "5e145bd5413537d8ae9970a6310bc220", "pid": "A023741754", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023741754", "identifiedBy": [ { "type": "uri", @@ -23211,7 +21807,6 @@ "md5": "0cd787441802acffbe9574d80d1869dd", "pid": "A023763587", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023763587", "identifiedBy": [ { "type": "uri", @@ -23226,7 +21821,6 @@ "md5": "d8ce313a60d84c05854504e32eac7340", "pid": "A023783324", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023783324", "identifiedBy": [ { "type": "uri", @@ -23242,7 +21836,6 @@ "pid": "A023806510", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A023806510", "identifiedBy": [ { "type": "uri", @@ -23257,7 +21850,6 @@ "md5": "093133023c0621d1d9b487ab5defdaa0", "pid": "A023814163", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023814163", "identifiedBy": [ { "type": "uri", @@ -23273,7 +21865,6 @@ "pid": "A023822688", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A023822688", "identifiedBy": [ { "type": "uri", @@ -23289,7 +21880,6 @@ "pid": "A023822699", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A023822699", "identifiedBy": [ { "type": "uri", @@ -23305,7 +21895,6 @@ "pid": "A023822966", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A023822966", "identifiedBy": [ { "type": "uri", @@ -23320,7 +21909,6 @@ "md5": "a407daf8c3952488b159ba7785d3aac3", "pid": "A023823517", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023823517", "identifiedBy": [ { "type": "uri", @@ -23336,7 +21924,6 @@ "pid": "A023823557", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A023823557", "identifiedBy": [ { "type": "uri", @@ -23352,7 +21939,6 @@ "pid": "A023848289", "type": "bf:Person", "qualifier": "musicien", - "identifier": "http://data.rero.ch/02-A023848289", "identifiedBy": [ { "type": "uri", @@ -23367,7 +21953,6 @@ "md5": "f4f66e131887239bab89394d589bcb19", "pid": "A023869329", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023869329", "identifiedBy": [ { "type": "uri", @@ -23382,7 +21967,6 @@ "md5": "e70539098bc4971bb38963bf55264a1d", "pid": "A023948966", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023948966", "identifiedBy": [ { "type": "uri", @@ -23397,7 +21981,6 @@ "md5": "5c585822f746da075a982a3c1e0f7487", "pid": "A023960471", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023960471", "identifiedBy": [ { "type": "uri", @@ -23414,7 +21997,6 @@ "md5": "418a288676c2769ef55879b89ff4799d", "pid": "A023966957", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023966957", "identifiedBy": [ { "type": "uri", @@ -23436,7 +22018,6 @@ "md5": "35c611133211958435df0503493148f2", "pid": "A023969519", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023969519", "identifiedBy": [ { "type": "uri", @@ -23451,7 +22032,6 @@ "md5": "048999707e3458f01f9d42043efb0abb", "pid": "A023985610", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023985610", "identifiedBy": [ { "type": "uri", @@ -23466,7 +22046,6 @@ "md5": "8ee372a8988e9569e68023107ab1f234", "pid": "A023993514", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023993514", "identifiedBy": [ { "type": "uri", @@ -23481,7 +22060,6 @@ "md5": "880346d73a9bec730bfc639ce4945a30", "pid": "A023994589", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A023994589", "identifiedBy": [ { "type": "uri", @@ -23496,7 +22074,6 @@ "md5": "5916daf22ae7d655e450907502e01e9c", "pid": "A024017606", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024017606", "identifiedBy": [ { "type": "uri", @@ -23511,7 +22088,6 @@ "md5": "fe804adbf883a06031691540b7e5bfd1", "pid": "A024032635", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024032635", "identifiedBy": [ { "type": "uri", @@ -23526,7 +22102,6 @@ "md5": "8f53bfcf1aee7a8638f972d9f4e4c917", "pid": "A024034240", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024034240", "identifiedBy": [ { "type": "uri", @@ -23541,7 +22116,6 @@ "md5": "c7b69d9554788d539bb7156220336006", "pid": "A024042745", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024042745", "identifiedBy": [ { "type": "uri", @@ -23557,7 +22131,6 @@ "md5": "06f64bd97a46035bc40f6b86f6fd05d3", "pid": "A024043552", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024043552", "identifiedBy": [ { "type": "uri", @@ -23584,7 +22157,6 @@ "md5": "4254ee78f978109d14d5ae044f2b0eee", "pid": "A024063413", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024063413", "identifiedBy": [ { "type": "uri", @@ -23599,7 +22171,6 @@ "md5": "5fd15c57c5207f3261f2bf35ec167322", "pid": "A024072354", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024072354", "identifiedBy": [ { "type": "uri", @@ -23614,7 +22185,6 @@ "md5": "4b45b599448d209f6bab7e20e807ea10", "pid": "A024073610", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024073610", "identifiedBy": [ { "type": "uri", @@ -23629,7 +22199,6 @@ "md5": "98f312eac5546b39d1d7dac84c7d104e", "pid": "A024075381", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024075381", "identifiedBy": [ { "type": "uri", @@ -23644,7 +22213,6 @@ "md5": "66fe14c37e5793dfa11ba7f0197a401f", "pid": "A024079443", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024079443", "identifiedBy": [ { "type": "uri", @@ -23659,7 +22227,6 @@ "md5": "95a6bea2091189b63e7687ef7b4bf56f", "pid": "A024083167", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024083167", "identifiedBy": [ { "type": "uri", @@ -23674,7 +22241,6 @@ "md5": "22c1cf7f633eae4eb31c1623f9014650", "pid": "A024099458", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024099458", "identifiedBy": [ { "type": "uri", @@ -23689,7 +22255,6 @@ "md5": "8d91ba6119d3727911e2682a36a87eb8", "pid": "A024107085", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024107085", "identifiedBy": [ { "type": "uri", @@ -23704,7 +22269,6 @@ "md5": "42ed53c3821734e114f8e8dbd4c0386b", "pid": "A024109666", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024109666", "identifiedBy": [ { "type": "uri", @@ -23719,7 +22283,6 @@ "md5": "a213ce66b68478191fe0d165cf80d23f", "pid": "A024119960", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024119960", "identifiedBy": [ { "type": "uri", @@ -23734,7 +22297,6 @@ "md5": "9db28f0fb6b81d6a4918df4d481f3808", "pid": "A024120760", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024120760", "identifiedBy": [ { "type": "uri", @@ -23749,7 +22311,6 @@ "md5": "841edb11b304939a31c13cdafc9d9f66", "pid": "A024123847", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024123847", "identifiedBy": [ { "type": "uri", @@ -23764,7 +22325,6 @@ "md5": "6c53199b5c167f86fa791d5c4e2483d9", "pid": "A024135505", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024135505", "identifiedBy": [ { "type": "uri", @@ -23780,7 +22340,6 @@ "pid": "A024137299", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A024137299", "identifiedBy": [ { "type": "uri", @@ -23795,7 +22354,6 @@ "md5": "916759802383f56b40c7a5d1b3c4d209", "pid": "A024141965", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024141965", "identifiedBy": [ { "type": "uri", @@ -23810,7 +22368,6 @@ "md5": "e312590afee4011fc65fad929b95ccd9", "pid": "A024152276", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024152276", "identifiedBy": [ { "type": "uri", @@ -23825,7 +22382,6 @@ "md5": "bfe3772cddb26eaad486645fdc43905a", "pid": "A024180345", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024180345", "identifiedBy": [ { "type": "uri", @@ -23841,7 +22397,6 @@ "pid": "A024182024", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A024182024", "identifiedBy": [ { "type": "uri", @@ -23856,7 +22411,6 @@ "md5": "8999fdc4608cd0776fcddb9a15d68be4", "pid": "A024188404", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024188404", "identifiedBy": [ { "type": "uri", @@ -23877,7 +22431,6 @@ "md5": "72d661c0be283a70df3ce5cf9ab14359", "pid": "A024193588", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024193588", "identifiedBy": [ { "type": "uri", @@ -23893,7 +22446,6 @@ "md5": "4b423551716e3d5a9843e062e119be24", "pid": "A024201811", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024201811", "identifiedBy": [ { "type": "uri", @@ -23911,7 +22463,6 @@ "md5": "4465cb85ba5604c4fc611a931c022cd1", "pid": "A024207312", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024207312", "identifiedBy": [ { "type": "uri", @@ -23927,7 +22478,6 @@ "pid": "A024239773", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A024239773", "identifiedBy": [ { "type": "uri", @@ -23943,7 +22493,6 @@ "pid": "A024248736", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A024248736", "identifiedBy": [ { "type": "uri", @@ -23958,7 +22507,6 @@ "md5": "91b1d5e54b79fdb3f5f0d58bf5fd8213", "pid": "A024250351", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024250351", "identifiedBy": [ { "type": "uri", @@ -23973,7 +22521,6 @@ "md5": "dd856fe60556d9d524022f0fbc69aa2a", "pid": "A024250841", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024250841", "identifiedBy": [ { "type": "uri", @@ -23988,7 +22535,6 @@ "md5": "5c70e51146f3fc48662f1f1b94c14df8", "pid": "A024251528", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024251528", "identifiedBy": [ { "type": "uri", @@ -24003,7 +22549,6 @@ "md5": "898e66c4176a1f623b9b277d758f8a83", "pid": "A024255039", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024255039", "identifiedBy": [ { "type": "uri", @@ -24018,7 +22563,6 @@ "md5": "215f1795c69a8cd60e7b5035fd7273c4", "pid": "A024295112", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024295112", "identifiedBy": [ { "type": "uri", @@ -24033,7 +22577,6 @@ "md5": "fa3b423fdf8c8ad54e3e915e951a55ee", "pid": "A024305757", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024305757", "identifiedBy": [ { "type": "uri", @@ -24048,7 +22591,6 @@ "md5": "6e1fb7b872a8c3983b59944ef3db15ca", "pid": "A024311492", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024311492", "identifiedBy": [ { "type": "uri", @@ -24064,7 +22606,6 @@ "pid": "A024314866", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A024314866", "identifiedBy": [ { "type": "uri", @@ -24088,7 +22629,6 @@ "pid": "A024316631", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A024316631", "identifiedBy": [ { "type": "uri", @@ -24104,7 +22644,6 @@ "pid": "A024326128", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A024326128", "identifiedBy": [ { "type": "uri", @@ -24119,7 +22658,6 @@ "md5": "3108f4bf825f36bfa09c99106daa532a", "pid": "A024329523", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024329523", "identifiedBy": [ { "type": "uri", @@ -24134,7 +22672,6 @@ "md5": "39e1ae789067bd7d1b4e93ceafeeea51", "pid": "A024329741", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024329741", "identifiedBy": [ { "type": "uri", @@ -24152,7 +22689,6 @@ "pid": "A024333154", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A024333154", "identifiedBy": [ { "type": "uri", @@ -24168,7 +22704,6 @@ "pid": "A024352277", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A024352277", "identifiedBy": [ { "type": "uri", @@ -24183,7 +22718,6 @@ "md5": "332a1a458c88319b214226ee64f0e5d4", "pid": "A024368303", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024368303", "identifiedBy": [ { "type": "uri", @@ -24199,7 +22733,6 @@ "md5": "ddfb6d6ac447d1fc6b252281afdf6a22", "pid": "A024370974", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024370974", "identifiedBy": [ { "type": "uri", @@ -24214,7 +22747,6 @@ "md5": "be427e948d283463e193132b85beaecb", "pid": "A024377672", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024377672", "identifiedBy": [ { "type": "uri", @@ -24229,7 +22761,6 @@ "md5": "14f2f1d1baf0ceba245a2a4597ff6a7e", "pid": "A024381221", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024381221", "identifiedBy": [ { "type": "uri", @@ -24244,7 +22775,6 @@ "md5": "050fdd9fb9c1de6137dc616de687c93a", "pid": "A024413945", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024413945", "identifiedBy": [ { "type": "uri", @@ -24276,7 +22806,6 @@ "md5": "39acb5013bce24d940b0ae33354df671", "pid": "A024416324", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024416324", "identifiedBy": [ { "type": "uri", @@ -24292,7 +22821,6 @@ "pid": "A024424763", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A024424763", "identifiedBy": [ { "type": "uri", @@ -24308,7 +22836,6 @@ "pid": "A024446255", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A024446255", "identifiedBy": [ { "type": "uri", @@ -24323,7 +22850,6 @@ "md5": "e38abacfca480b958b1fbae304a7f2dc", "pid": "A024465489", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024465489", "identifiedBy": [ { "type": "uri", @@ -24339,7 +22865,6 @@ "md5": "5990fa73a82417965dca9e54a8add7fe", "pid": "A024466417", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024466417", "identifiedBy": [ { "type": "uri", @@ -24354,7 +22879,6 @@ "md5": "adffa9aa9a352d47c12d9c17dc87a77e", "pid": "A024471669", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024471669", "identifiedBy": [ { "type": "uri", @@ -24369,7 +22893,6 @@ "md5": "c4d204431365c4d793b09d9076d8ba9a", "pid": "A024478155", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024478155", "identifiedBy": [ { "type": "uri", @@ -24384,7 +22907,6 @@ "md5": "9ff711bfbe4d0ea27dcbb933cf0e7ffb", "pid": "A024478463", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024478463", "identifiedBy": [ { "type": "uri", @@ -24399,7 +22921,6 @@ "md5": "7a30e1447e827938c97aa1d784134cab", "pid": "A024478863", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024478863", "identifiedBy": [ { "type": "uri", @@ -24415,7 +22936,6 @@ "md5": "8afb285291f6fee5056ede1f05a0a0a3", "pid": "A024480400", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024480400", "identifiedBy": [ { "type": "uri", @@ -24430,7 +22950,6 @@ "md5": "7791bf6a317f81a7e0965af63187286f", "pid": "A024491342", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024491342", "identifiedBy": [ { "type": "uri", @@ -24445,7 +22964,6 @@ "md5": "d443a6843664d90fc3455cd6a9c5c64d", "pid": "A024527296", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024527296", "identifiedBy": [ { "type": "uri", @@ -24460,7 +22978,6 @@ "md5": "f1ec471b62ffa1d2eefdc51e7a928751", "pid": "A024528563", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024528563", "identifiedBy": [ { "type": "uri", @@ -24476,7 +22993,6 @@ "pid": "A024529059", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A024529059", "identifiedBy": [ { "type": "uri", @@ -24491,7 +23007,6 @@ "md5": "a28069a334e8e875756f94d4348638d3", "pid": "A024541309", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024541309", "identifiedBy": [ { "type": "uri", @@ -24506,7 +23021,6 @@ "md5": "40f68d801a6d5ec9a86372d9a8a97a4b", "pid": "A024566467", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024566467", "identifiedBy": [ { "type": "uri", @@ -24522,7 +23036,6 @@ "pid": "A024569645", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A024569645", "identifiedBy": [ { "type": "uri", @@ -24537,7 +23050,6 @@ "md5": "d4cd250be591cb6f5d756a314c2f49bd", "pid": "A024595109", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024595109", "identifiedBy": [ { "type": "uri", @@ -24553,7 +23065,6 @@ "pid": "A024595509", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A024595509", "identifiedBy": [ { "type": "uri", @@ -24568,7 +23079,6 @@ "md5": "9ba3b6791620487ceeb880a720282df8", "pid": "A024600161", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024600161", "identifiedBy": [ { "type": "uri", @@ -24583,7 +23093,6 @@ "md5": "d13ce35e33c6a5e2435a7ed769666cda", "pid": "A024602006", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024602006", "identifiedBy": [ { "type": "uri", @@ -24598,7 +23107,6 @@ "md5": "d09925937106125b5ffa2562556255ec", "pid": "A024707851", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024707851", "identifiedBy": [ { "type": "uri", @@ -24614,7 +23122,6 @@ "pid": "A024728544", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A024728544", "identifiedBy": [ { "type": "uri", @@ -24629,7 +23136,6 @@ "md5": "c9903a1a72f5c6f8aec96d6cfd888011", "pid": "A024729479", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024729479", "identifiedBy": [ { "type": "uri", @@ -24644,7 +23150,6 @@ "md5": "a10907a690b89a75c52fe84f994c9616", "pid": "A024746147", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024746147", "identifiedBy": [ { "type": "uri", @@ -24659,7 +23164,6 @@ "md5": "ba60d8e8545c3c0f37423fe478a19707", "pid": "A024770093", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024770093", "identifiedBy": [ { "type": "uri", @@ -24674,7 +23178,6 @@ "md5": "73a10e68f89c9f682980f99189d731b3", "pid": "A024774397", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024774397", "identifiedBy": [ { "type": "uri", @@ -24690,7 +23193,6 @@ "pid": "A024790283", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A024790283", "identifiedBy": [ { "type": "uri", @@ -24705,7 +23207,6 @@ "md5": "5e2b777f947e487fb1cae6e853376eb3", "pid": "A024801676", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024801676", "identifiedBy": [ { "type": "uri", @@ -24720,7 +23221,6 @@ "md5": "07a13fc5fefb0bdb55df7337d1d39695", "pid": "A024814391", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024814391", "identifiedBy": [ { "type": "uri", @@ -24735,7 +23235,6 @@ "md5": "b6c2efc7e4f16b23a679fea70a794d1c", "pid": "A024843767", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024843767", "identifiedBy": [ { "type": "uri", @@ -24752,7 +23251,6 @@ "pid": "A024846924", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A024846924", "identifiedBy": [ { "type": "uri", @@ -24767,7 +23265,6 @@ "md5": "67d721cae321df3ffeae310802612226", "pid": "A024866515", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024866515", "identifiedBy": [ { "type": "uri", @@ -24782,7 +23279,6 @@ "md5": "d63331b5d690888c009c536d6b19f7e9", "pid": "A024878364", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024878364", "identifiedBy": [ { "type": "uri", @@ -24798,7 +23294,6 @@ "pid": "A024884886", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A024884886", "identifiedBy": [ { "type": "uri", @@ -24814,7 +23309,6 @@ "pid": "A024896750", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A024896750", "identifiedBy": [ { "type": "uri", @@ -24829,7 +23323,6 @@ "md5": "252ee112b1b7ba3be0ebf4606253b8d0", "pid": "A024897034", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024897034", "identifiedBy": [ { "type": "uri", @@ -24844,7 +23337,6 @@ "md5": "2f8f8b173fb63ceb6988d659a2df06ba", "pid": "A024917771", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024917771", "identifiedBy": [ { "type": "uri", @@ -24860,7 +23352,6 @@ "pid": "A024919899", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A024919899", "identifiedBy": [ { "type": "uri", @@ -24875,7 +23366,6 @@ "md5": "a9bcbe37f1a66af876bbe5efb325a980", "pid": "A024930424", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024930424", "identifiedBy": [ { "type": "uri", @@ -24891,7 +23381,6 @@ "pid": "A024960848", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A024960848", "identifiedBy": [ { "type": "uri", @@ -24907,7 +23396,6 @@ "pid": "A024966631", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A024966631", "identifiedBy": [ { "type": "uri", @@ -24922,7 +23410,6 @@ "md5": "b85e242c571c74f336ec061f2e962236", "pid": "A024969731", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024969731", "identifiedBy": [ { "type": "uri", @@ -24941,7 +23428,6 @@ "pid": "A024978532", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A024978532", "identifiedBy": [ { "type": "uri", @@ -24966,7 +23452,6 @@ "md5": "d37ae24051eada002db9dbf0a9cc8d0d", "pid": "A024983874", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A024983874", "identifiedBy": [ { "type": "uri", @@ -24981,7 +23466,6 @@ "md5": "74e3161eb5c818b45cf656fb06ab57d4", "pid": "A025024778", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025024778", "identifiedBy": [ { "type": "uri", @@ -24996,7 +23480,6 @@ "md5": "21ac4fba5f6356cfa01db4f73571ff90", "pid": "A025029914", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025029914", "identifiedBy": [ { "type": "uri", @@ -25011,7 +23494,6 @@ "md5": "60f77c595b59d23e2b2acf965d2cb335", "pid": "A025056747", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025056747", "identifiedBy": [ { "type": "uri", @@ -25026,7 +23508,6 @@ "md5": "c6b0320e5a9e8f4d21618a4c14abde9a", "pid": "A025075603", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025075603", "identifiedBy": [ { "type": "uri", @@ -25041,7 +23522,6 @@ "md5": "9c5d3d84f2db28feb7d6b4cfcbafee34", "pid": "A025086688", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025086688", "identifiedBy": [ { "type": "uri", @@ -25064,7 +23544,6 @@ "pid": "A025119661", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A025119661", "identifiedBy": [ { "type": "uri", @@ -25079,7 +23558,6 @@ "md5": "1793270fb8e2859e2c0bfc296ac6a2ac", "pid": "A025121507", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025121507", "identifiedBy": [ { "type": "uri", @@ -25094,7 +23572,6 @@ "md5": "e81a316390a9f98f90b4ff44b2ff82a8", "pid": "A025244362", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025244362", "identifiedBy": [ { "type": "uri", @@ -25109,7 +23586,6 @@ "md5": "73f5b2f3d27ae7756965a2f78d2d1a35", "pid": "A025252592", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025252592", "identifiedBy": [ { "type": "uri", @@ -25124,7 +23600,6 @@ "md5": "6c5e96e8226f8250532693e99390c67d", "pid": "A025258576", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025258576", "identifiedBy": [ { "type": "uri", @@ -25141,7 +23616,6 @@ "md5": "9cb35ef76ac64e669d5b0c8028cacbe0", "pid": "A025259137", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025259137", "identifiedBy": [ { "type": "uri", @@ -25157,7 +23631,6 @@ "pid": "A025287146", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A025287146", "identifiedBy": [ { "type": "uri", @@ -25172,7 +23645,6 @@ "md5": "4be4bf5c3ad61054786b2eb2de99e677", "pid": "A025328121", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025328121", "identifiedBy": [ { "type": "uri", @@ -25197,7 +23669,6 @@ "pid": "A025329777", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A025329777", "identifiedBy": [ { "type": "uri", @@ -25212,7 +23683,6 @@ "md5": "4c5e8c25ab5ae5fe89291338e9bc1e18", "pid": "A025330235", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025330235", "identifiedBy": [ { "type": "uri", @@ -25227,7 +23697,6 @@ "md5": "6f5c70e6068475b77a30af87eaccc3e0", "pid": "A025337143", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025337143", "identifiedBy": [ { "type": "uri", @@ -25242,7 +23711,6 @@ "md5": "61583ecb9021ee86ca9c8248c0e051c9", "pid": "A025360796", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025360796", "identifiedBy": [ { "type": "uri", @@ -25257,7 +23725,6 @@ "md5": "cc7e99af36a765daf65cd7ad6c676ecd", "pid": "A025367912", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025367912", "identifiedBy": [ { "type": "uri", @@ -25273,7 +23740,6 @@ "pid": "A025387385", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A025387385", "identifiedBy": [ { "type": "uri", @@ -25295,7 +23761,6 @@ "pid": "A025397944", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A025397944", "identifiedBy": [ { "type": "uri", @@ -25310,7 +23775,6 @@ "md5": "aa7eb5bab447baab4556f522104c5f65", "pid": "A025418238", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025418238", "identifiedBy": [ { "type": "uri", @@ -25325,7 +23789,6 @@ "md5": "ae60ed3c058e9f83aa73ac2928fa058a", "pid": "A025435600", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025435600", "identifiedBy": [ { "type": "uri", @@ -25340,7 +23803,6 @@ "md5": "068ea439f77bc8bfce5397a1f0969983", "pid": "A025454683", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025454683", "identifiedBy": [ { "type": "uri", @@ -25357,7 +23819,6 @@ "pid": "A025477095", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A025477095", "identifiedBy": [ { "type": "uri", @@ -25372,7 +23833,6 @@ "md5": "3f8f011bb3297050db8927297fc35c3e", "pid": "A025504164", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025504164", "identifiedBy": [ { "type": "uri", @@ -25387,7 +23847,6 @@ "md5": "34fb4d4e5a76458e794ac9d856ab9678", "pid": "A025537929", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025537929", "identifiedBy": [ { "type": "uri", @@ -25402,7 +23861,6 @@ "md5": "e9c3ddd1c656d76508fd6aa40fd7e3d2", "pid": "A025540309", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025540309", "identifiedBy": [ { "type": "uri", @@ -25418,7 +23876,6 @@ "pid": "A025581873", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A025581873", "identifiedBy": [ { "type": "uri", @@ -25433,7 +23890,6 @@ "md5": "f30b55a15127feea48814a0541f90737", "pid": "A025582144", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025582144", "identifiedBy": [ { "type": "uri", @@ -25450,7 +23906,6 @@ "pid": "A025610247", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A025610247", "identifiedBy": [ { "type": "uri", @@ -25465,7 +23920,6 @@ "md5": "e8fb52114292b75e3d912d69472039a6", "pid": "A025614399", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025614399", "identifiedBy": [ { "type": "uri", @@ -25480,7 +23934,6 @@ "md5": "af1dcd95d4392847aecff08f0fb3cc55", "pid": "A025630450", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025630450", "identifiedBy": [ { "type": "uri", @@ -25495,7 +23948,6 @@ "md5": "1ee160edebd65cc277d38c442c4bd70c", "pid": "A025632565", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025632565", "identifiedBy": [ { "type": "uri", @@ -25510,7 +23962,6 @@ "md5": "0f704fec850144bdf8ca76596d3e2507", "pid": "A025639432", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025639432", "identifiedBy": [ { "type": "uri", @@ -25525,7 +23976,6 @@ "md5": "b5c1c9ed9ab8fdb206bb937ac335f25c", "pid": "A025669520", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025669520", "identifiedBy": [ { "type": "uri", @@ -25540,7 +23990,6 @@ "md5": "f641f7505537be099d70e5eaa41009e5", "pid": "A025676459", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025676459", "identifiedBy": [ { "type": "uri", @@ -25555,7 +24004,6 @@ "md5": "c2badda0b1d03f31c97c908c7213c084", "pid": "A025678092", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025678092", "identifiedBy": [ { "type": "uri", @@ -25570,7 +24018,6 @@ "md5": "920667556b31b30711c638c34862a1d4", "pid": "A025679166", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025679166", "identifiedBy": [ { "type": "uri", @@ -25586,7 +24033,6 @@ "pid": "A025681987", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A025681987", "identifiedBy": [ { "type": "uri", @@ -25601,7 +24047,6 @@ "md5": "b68da2994eab8f351c015e6260211605", "pid": "A025688432", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025688432", "identifiedBy": [ { "type": "uri", @@ -25617,7 +24062,6 @@ "pid": "A025691379", "type": "bf:Person", "qualifier": "infirmi\u00e8re", - "identifier": "http://data.rero.ch/02-A025691379", "identifiedBy": [ { "type": "uri", @@ -25632,7 +24076,6 @@ "md5": "164cebbecc87d55a4abf21c848d861b4", "pid": "A025694319", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025694319", "identifiedBy": [ { "type": "uri", @@ -25647,7 +24090,6 @@ "md5": "83614784220a382f0ffa104f98d62f90", "pid": "A025711026", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025711026", "identifiedBy": [ { "type": "uri", @@ -25662,7 +24104,6 @@ "md5": "6867976eda29a6c3d74abc01e4aaacf1", "pid": "A025712587", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025712587", "identifiedBy": [ { "type": "uri", @@ -25677,7 +24118,6 @@ "md5": "0f1520b1898baabc6d4a371577ee996e", "pid": "A025721356", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025721356", "identifiedBy": [ { "type": "uri", @@ -25704,7 +24144,6 @@ "md5": "3dd3cacd22e458037391009653d91fcb", "pid": "A025723446", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025723446", "identifiedBy": [ { "type": "uri", @@ -25720,7 +24159,6 @@ "pid": "A025730129", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A025730129", "identifiedBy": [ { "type": "uri", @@ -25735,7 +24173,6 @@ "md5": "9945291aa132ef05e9c69dbbf4fbd127", "pid": "A025745173", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025745173", "identifiedBy": [ { "type": "uri", @@ -25750,7 +24187,6 @@ "md5": "3db402c1bf2450ebc6b9eea5f5837a34", "pid": "A025772014", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025772014", "identifiedBy": [ { "type": "uri", @@ -25766,7 +24202,6 @@ "pid": "A025773339", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A025773339", "identifiedBy": [ { "type": "uri", @@ -25781,7 +24216,6 @@ "md5": "6423d1fa17bdaea4f03858b4a6bc3fe3", "pid": "A025780261", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025780261", "identifiedBy": [ { "type": "uri", @@ -25796,7 +24230,6 @@ "md5": "f441816563a1fd68c239dff00467b096", "pid": "A025785978", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025785978", "identifiedBy": [ { "type": "uri", @@ -25811,7 +24244,6 @@ "md5": "697bf79ee375cbb7c6aaa324f089d50d", "pid": "A025796144", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025796144", "identifiedBy": [ { "type": "uri", @@ -25826,7 +24258,6 @@ "md5": "08f61a6e3553f5521fc2dc41f35e0cc8", "pid": "A025797147", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025797147", "identifiedBy": [ { "type": "uri", @@ -25842,7 +24273,6 @@ "pid": "A025804299", "type": "bf:Person", "qualifier": "(de Nic\u00e9e)", - "identifier": "http://data.rero.ch/02-A025804299", "identifiedBy": [ { "type": "uri", @@ -25865,7 +24295,6 @@ "md5": "71ba5418a796f85b760c35d2ba870793", "pid": "A025826851", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025826851", "identifiedBy": [ { "type": "uri", @@ -25880,7 +24309,6 @@ "md5": "2cce61c842a9ddec54432509b63b101f", "pid": "A025833339", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025833339", "identifiedBy": [ { "type": "uri", @@ -25901,7 +24329,6 @@ "md5": "b7538d8e88c0f7db599dd261d9875e0c", "pid": "A025835776", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025835776", "identifiedBy": [ { "type": "uri", @@ -25916,7 +24343,6 @@ "md5": "67adc7bbd6f5c6ef0cb24084911124af", "pid": "A025837185", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025837185", "identifiedBy": [ { "type": "uri", @@ -25931,7 +24357,6 @@ "md5": "e359ab3df9845b40669a4a068e117bf5", "pid": "A025845397", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025845397", "identifiedBy": [ { "type": "uri", @@ -25946,7 +24371,6 @@ "md5": "d956b94f8cc7066b5782bd16b495578e", "pid": "A025848952", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025848952", "identifiedBy": [ { "type": "uri", @@ -25961,7 +24385,6 @@ "md5": "e3d38feafecf9f5cc0a055f7d1bf1ad8", "pid": "A025851501", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025851501", "identifiedBy": [ { "type": "uri", @@ -25997,7 +24420,6 @@ "md5": "55e12f62de4ba47b39ffcd83f6b2ac7a", "pid": "A025884069", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025884069", "identifiedBy": [ { "type": "uri", @@ -26013,7 +24435,6 @@ "pid": "A025890846", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A025890846", "identifiedBy": [ { "type": "uri", @@ -26029,7 +24450,6 @@ "pid": "A025893734", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A025893734", "identifiedBy": [ { "type": "uri", @@ -26044,7 +24464,6 @@ "md5": "c801acff0c0748b4536557ecb0be69c6", "pid": "A025926750", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025926750", "identifiedBy": [ { "type": "uri", @@ -26059,7 +24478,6 @@ "md5": "b35c79ad0b8c5087a9a8758e89229e40", "pid": "A025930633", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025930633", "identifiedBy": [ { "type": "uri", @@ -26075,7 +24493,6 @@ "pid": "A025932364", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A025932364", "identifiedBy": [ { "type": "uri", @@ -26098,7 +24515,6 @@ "md5": "e079b193c7cdfa33a5a0e43facbed3cb", "pid": "A025951707", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025951707", "identifiedBy": [ { "type": "uri", @@ -26113,7 +24529,6 @@ "md5": "ca936fcd3c71d097ef7ea6b5b9200297", "pid": "A025956739", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025956739", "identifiedBy": [ { "type": "uri", @@ -26128,7 +24543,6 @@ "md5": "5c30c8879616250aa794b55533c87c35", "pid": "A025958419", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025958419", "identifiedBy": [ { "type": "uri", @@ -26143,7 +24557,6 @@ "md5": "762ce71196a3c73b82628ba417b9a066", "pid": "A025965491", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025965491", "identifiedBy": [ { "type": "uri", @@ -26169,7 +24582,6 @@ "md5": "99dddf574ab375f81e66b638a30d3586", "pid": "A025967759", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025967759", "identifiedBy": [ { "type": "uri", @@ -26184,7 +24596,6 @@ "md5": "65b80d2c874564c8b79363743db885a1", "pid": "A025976492", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025976492", "identifiedBy": [ { "type": "uri", @@ -26199,7 +24610,6 @@ "md5": "0484714feb2d6e0e7d708e3c52991087", "pid": "A025983847", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025983847", "identifiedBy": [ { "type": "uri", @@ -26224,7 +24634,6 @@ "md5": "9ee2730aa82f99afcbb3234250270d07", "pid": "A025987021", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A025987021", "identifiedBy": [ { "type": "uri", @@ -26239,7 +24648,6 @@ "md5": "be24f6222b339f93187fce6e908ed799", "pid": "A026005729", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026005729", "identifiedBy": [ { "type": "uri", @@ -26254,7 +24662,6 @@ "md5": "d680bdfa0b647f10884b6a442b051c88", "pid": "A026012565", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026012565", "identifiedBy": [ { "type": "uri", @@ -26269,7 +24676,6 @@ "md5": "e2836ae0c2c9dac03be5c28ab5b21c1d", "pid": "A026015516", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026015516", "identifiedBy": [ { "type": "uri", @@ -26285,7 +24691,6 @@ "pid": "A026028252", "type": "bf:Person", "qualifier": "m\u00e9decin", - "identifier": "http://data.rero.ch/02-A026028252", "identifiedBy": [ { "type": "uri", @@ -26300,7 +24705,6 @@ "md5": "0be9825e473b054b102010ccf9b72e91", "pid": "A026028546", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026028546", "identifiedBy": [ { "type": "uri", @@ -26317,7 +24721,6 @@ "pid": "A026050339", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A026050339", "identifiedBy": [ { "type": "uri", @@ -26338,7 +24741,6 @@ "md5": "1a76ffecfa4d7caac38c3b7d6cd654ef", "pid": "A026066357", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026066357", "identifiedBy": [ { "type": "uri", @@ -26353,7 +24755,6 @@ "md5": "00b3d9a6a48c2dffb9262ad80342068a", "pid": "A026085043", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026085043", "identifiedBy": [ { "type": "uri", @@ -26368,7 +24769,6 @@ "md5": "8b81c19935bb6e4e3fac379d3839f604", "pid": "A026091329", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026091329", "identifiedBy": [ { "type": "uri", @@ -26384,7 +24784,6 @@ "pid": "A026115092", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A026115092", "identifiedBy": [ { "type": "uri", @@ -26413,7 +24812,6 @@ "md5": "61edf968824a737a4580e9e2e2620ae9", "pid": "A026120339", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026120339", "identifiedBy": [ { "type": "uri", @@ -26428,7 +24826,6 @@ "md5": "d57eac03cd35122616da42c09d3115c2", "pid": "A026122888", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026122888", "identifiedBy": [ { "type": "uri", @@ -26456,7 +24853,6 @@ "md5": "46cf630d80820a43d570b5d9177a1d57", "pid": "A026123991", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026123991", "identifiedBy": [ { "type": "uri", @@ -26472,7 +24868,6 @@ "pid": "A026129158", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A026129158", "identifiedBy": [ { "type": "uri", @@ -26487,7 +24882,6 @@ "md5": "7748832803b2594d62308f5a1ff2b97b", "pid": "A026132029", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026132029", "identifiedBy": [ { "type": "uri", @@ -26502,7 +24896,6 @@ "md5": "d5b52c8be6c4f2042d0ce63bd17e524d", "pid": "A026144791", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026144791", "identifiedBy": [ { "type": "uri", @@ -26520,7 +24913,6 @@ "pid": "A026155985", "type": "bf:Person", "qualifier": "Denis", - "identifier": "http://data.rero.ch/02-A026155985", "identifiedBy": [ { "type": "uri", @@ -26535,7 +24927,6 @@ "md5": "3b6309c9893200df7f06034028c43dce", "pid": "A026164040", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026164040", "identifiedBy": [ { "type": "uri", @@ -26551,7 +24942,6 @@ "pid": "A026168031", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A026168031", "identifiedBy": [ { "type": "uri", @@ -26566,7 +24956,6 @@ "md5": "f911449afd8636cd22e2e00f547701e0", "pid": "A026168151", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026168151", "identifiedBy": [ { "type": "uri", @@ -26581,7 +24970,6 @@ "md5": "68443b12a5ecb8133c8b263be7d832e1", "pid": "A026169859", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026169859", "identifiedBy": [ { "type": "uri", @@ -26596,7 +24984,6 @@ "md5": "2e4d5b775c3bd2d3851cd365b1edd975", "pid": "A026174573", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026174573", "identifiedBy": [ { "type": "uri", @@ -26624,7 +25011,6 @@ "md5": "69ff1ee3b3b2dc179edfe7526417a6cb", "pid": "A026408718", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026408718", "identifiedBy": [ { "type": "uri", @@ -26639,7 +25025,6 @@ "md5": "ab6de8cd16b0eaefaafe4f03ed147dea", "pid": "A026432303", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026432303", "identifiedBy": [ { "type": "uri", @@ -26655,7 +25040,6 @@ "pid": "A026434702", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A026434702", "identifiedBy": [ { "type": "uri", @@ -26670,7 +25054,6 @@ "md5": "f223961a94270a73a788bf5c13e31fc4", "pid": "A026439717", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026439717", "identifiedBy": [ { "type": "uri", @@ -26686,7 +25069,6 @@ "md5": "198b9a7016ce54eb9ccdb9a9bea44970", "pid": "A026450966", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026450966", "identifiedBy": [ { "type": "uri", @@ -26702,7 +25084,6 @@ "pid": "A026459182", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A026459182", "identifiedBy": [ { "type": "uri", @@ -26718,7 +25099,6 @@ "pid": "A026462220", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A026462220", "identifiedBy": [ { "type": "uri", @@ -26733,7 +25113,6 @@ "md5": "6b8b6dd4398d45387d5721a27d87098a", "pid": "A026466905", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026466905", "identifiedBy": [ { "type": "uri", @@ -26748,7 +25127,6 @@ "md5": "84751c8d0de7e9db43ad1cb6a14273af", "pid": "A026474353", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026474353", "identifiedBy": [ { "type": "uri", @@ -26763,7 +25141,6 @@ "md5": "4f6375775d9c7420eca73943c8770215", "pid": "A026534148", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026534148", "identifiedBy": [ { "type": "uri", @@ -26778,7 +25155,6 @@ "md5": "e4ef12036d0027b0ad54d802f1bbc359", "pid": "A026548298", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026548298", "identifiedBy": [ { "type": "uri", @@ -26794,7 +25170,6 @@ "pid": "A026554111", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A026554111", "identifiedBy": [ { "type": "uri", @@ -26810,7 +25185,6 @@ "pid": "A026558985", "type": "bf:Person", "qualifier": "(pseud. de J\u00e9r\u00f4me Almes)", - "identifier": "http://data.rero.ch/02-A026558985", "identifiedBy": [ { "type": "uri", @@ -26834,7 +25208,6 @@ "md5": "6ffd94f8c418418bf5a69f36d82810ad", "pid": "A026586322", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026586322", "identifiedBy": [ { "type": "uri", @@ -26849,7 +25222,6 @@ "md5": "c1719878016e22ea37a170dc4e7f07c3", "pid": "A026596122", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026596122", "identifiedBy": [ { "type": "uri", @@ -26864,7 +25236,6 @@ "md5": "46d0fb9fec8ebce00c3a1039a7770fdb", "pid": "A026608425", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026608425", "identifiedBy": [ { "type": "uri", @@ -26879,7 +25250,6 @@ "md5": "5ded82ea5a75567a5bd1f0c8f8d5f456", "pid": "A026614309", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026614309", "identifiedBy": [ { "type": "uri", @@ -26894,7 +25264,6 @@ "md5": "bc4c39c83091c31e7f3fc3a137b9f384", "pid": "A026614954", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026614954", "identifiedBy": [ { "type": "uri", @@ -26910,7 +25279,6 @@ "pid": "A026623687", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A026623687", "identifiedBy": [ { "type": "uri", @@ -26925,7 +25293,6 @@ "md5": "03c1a1e30c8e6ca4e4c2dcb14dab5ff7", "pid": "A026636855", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026636855", "identifiedBy": [ { "type": "uri", @@ -26940,7 +25307,6 @@ "md5": "16d1fecf237703605b9abeac68f2de44", "pid": "A026642855", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026642855", "identifiedBy": [ { "type": "uri", @@ -26956,7 +25322,6 @@ "md5": "0eabf8d05158a789eb33d3017bea7672", "pid": "A026652068", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026652068", "identifiedBy": [ { "type": "uri", @@ -26971,7 +25336,6 @@ "md5": "089fe9a03faf0065c0d4fb5b48c3494d", "pid": "A026654612", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026654612", "identifiedBy": [ { "type": "uri", @@ -26987,7 +25351,6 @@ "pid": "A026685590", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A026685590", "identifiedBy": [ { "type": "uri", @@ -27002,7 +25365,6 @@ "md5": "8c139bd5bbadec3407790995aa8b0c35", "pid": "A026722774", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026722774", "identifiedBy": [ { "type": "uri", @@ -27018,7 +25380,6 @@ "pid": "A026723222", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A026723222", "identifiedBy": [ { "type": "uri", @@ -27034,7 +25395,6 @@ "pid": "A026724664", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A026724664", "identifiedBy": [ { "type": "uri", @@ -27049,7 +25409,6 @@ "md5": "19091fe0b4cce0c57f8501364df63c99", "pid": "A026736945", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026736945", "identifiedBy": [ { "type": "uri", @@ -27064,7 +25423,6 @@ "md5": "f80e5d69fb155fe1350bb61d9629ba7a", "pid": "A026740856", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026740856", "identifiedBy": [ { "type": "uri", @@ -27079,7 +25437,6 @@ "md5": "3a651b378ec992bb9fd7968a964b4f22", "pid": "A026741839", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026741839", "identifiedBy": [ { "type": "uri", @@ -27094,7 +25451,6 @@ "md5": "f9ecba64938e06bf20cd86741ae9893d", "pid": "A026748269", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026748269", "identifiedBy": [ { "type": "uri", @@ -27111,7 +25467,6 @@ "pid": "A026774834", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A026774834", "identifiedBy": [ { "type": "uri", @@ -27127,7 +25482,6 @@ "pid": "A026783817", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A026783817", "identifiedBy": [ { "type": "uri", @@ -27142,7 +25496,6 @@ "md5": "3a6ed426579943bf8ae7ae4f9d627685", "pid": "A026785791", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026785791", "identifiedBy": [ { "type": "uri", @@ -27157,7 +25510,6 @@ "md5": "710353dd662c537cc7ab4583839b3310", "pid": "A026813025", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026813025", "identifiedBy": [ { "type": "uri", @@ -27172,7 +25524,6 @@ "md5": "b2fd0d6f947026680bd745b9332584fc", "pid": "A026828697", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026828697", "identifiedBy": [ { "type": "uri", @@ -27188,7 +25539,6 @@ "pid": "A026835388", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A026835388", "identifiedBy": [ { "type": "uri", @@ -27203,7 +25553,6 @@ "md5": "556f41c694ad94412f8c38dd8f6bd570", "pid": "A026839306", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026839306", "identifiedBy": [ { "type": "uri", @@ -27218,7 +25567,6 @@ "md5": "2f1c55bb90c9d0d0a213c02f542fab42", "pid": "A026846628", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026846628", "identifiedBy": [ { "type": "uri", @@ -27233,7 +25581,6 @@ "md5": "2502fcf1c089f977701b064afd140429", "pid": "A026847441", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026847441", "identifiedBy": [ { "type": "uri", @@ -27248,7 +25595,6 @@ "md5": "3f5114720d1bb94356e00e1804f0fd00", "pid": "A026864091", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026864091", "identifiedBy": [ { "type": "uri", @@ -27264,7 +25610,6 @@ "pid": "A026894353", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A026894353", "identifiedBy": [ { "type": "uri", @@ -27279,7 +25624,6 @@ "md5": "07fa7356ceaf1ffb4522b5d82f37b1a5", "pid": "A026898077", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026898077", "identifiedBy": [ { "type": "uri", @@ -27294,7 +25638,6 @@ "md5": "ea4340c18e13620dee4cef4e39adad04", "pid": "A026907243", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026907243", "identifiedBy": [ { "type": "uri", @@ -27309,7 +25652,6 @@ "md5": "ec7a351f184e6e8c8ab6a1417c793de4", "pid": "A026919795", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026919795", "identifiedBy": [ { "type": "uri", @@ -27324,7 +25666,6 @@ "md5": "667239e15306bb923b42041b7d21c689", "pid": "A026951773", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026951773", "identifiedBy": [ { "type": "uri", @@ -27339,7 +25680,6 @@ "md5": "f8ad79c5780b631666bc03ac6afe8c50", "pid": "A026952894", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026952894", "identifiedBy": [ { "type": "uri", @@ -27354,7 +25694,6 @@ "md5": "082661a7b5bf241a597bd8e9e7dc62a3", "pid": "A026958334", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026958334", "identifiedBy": [ { "type": "uri", @@ -27373,7 +25712,6 @@ "md5": "2b35766d3d929b31fc4ec487e4d84ef8", "pid": "A026964890", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026964890", "identifiedBy": [ { "type": "uri", @@ -27388,7 +25726,6 @@ "md5": "93d4cdc1b2e4ddd71bc74c89ab147c3d", "pid": "A026978679", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A026978679", "identifiedBy": [ { "type": "uri", @@ -27403,7 +25740,6 @@ "md5": "20680b53084f2c35c49a119864d51d7a", "pid": "A027062343", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027062343", "identifiedBy": [ { "type": "uri", @@ -27418,7 +25754,6 @@ "md5": "7c1049f75dca8fcf5978c7e9a65c244c", "pid": "A027068066", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027068066", "identifiedBy": [ { "type": "uri", @@ -27433,7 +25768,6 @@ "md5": "0053f16d3153d2fa0455a3423864280f", "pid": "A027089118", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027089118", "identifiedBy": [ { "type": "uri", @@ -27448,7 +25782,6 @@ "md5": "5e5a3ad65f706a375d69b9f8176e2338", "pid": "A027092266", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027092266", "identifiedBy": [ { "type": "uri", @@ -27463,7 +25796,6 @@ "md5": "0a1f31a24366447b44ca2ac04e5ad185", "pid": "A027102482", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027102482", "identifiedBy": [ { "type": "uri", @@ -27478,7 +25810,6 @@ "md5": "264fb8288d6aba0ccd48cd77a42a8ca0", "pid": "A027103123", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027103123", "identifiedBy": [ { "type": "uri", @@ -27493,7 +25824,6 @@ "md5": "e34dae17df73084ad1ee26f82990d074", "pid": "A027116952", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027116952", "identifiedBy": [ { "type": "uri", @@ -27508,7 +25838,6 @@ "md5": "3f8770aa9e6ed6e0fe49796107fadd46", "pid": "A027118711", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027118711", "identifiedBy": [ { "type": "uri", @@ -27524,7 +25853,6 @@ "pid": "A027119572", "type": "bf:Person", "qualifier": "(marquise) - influence re\u00e7ue", - "identifier": "http://data.rero.ch/02-A027119572", "identifiedBy": [ { "type": "uri", @@ -27539,7 +25867,6 @@ "md5": "e08c5cc050872a6a519dc639282c1827", "pid": "A027138153", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027138153", "identifiedBy": [ { "type": "uri", @@ -27555,7 +25882,6 @@ "pid": "A027139051", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A027139051", "identifiedBy": [ { "type": "uri", @@ -27570,7 +25896,6 @@ "md5": "7f5954efa5153843930f25ec0cc8a427", "pid": "A027149145", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027149145", "identifiedBy": [ { "type": "uri", @@ -27585,7 +25910,6 @@ "md5": "bd0d2d1937329ebb2236421b4d161506", "pid": "A027149446", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027149446", "identifiedBy": [ { "type": "uri", @@ -27600,7 +25924,6 @@ "md5": "005ff91909f0c93e36a3fd8d6561ab23", "pid": "A027157860", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027157860", "identifiedBy": [ { "type": "uri", @@ -27615,7 +25938,6 @@ "md5": "fd14eece53a32bd933080f9495244099", "pid": "A027180250", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027180250", "identifiedBy": [ { "type": "uri", @@ -27630,7 +25952,6 @@ "md5": "c8d69e7ac5091cc5c402f2a4cf8227c4", "pid": "A027184035", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027184035", "identifiedBy": [ { "type": "uri", @@ -27645,7 +25966,6 @@ "md5": "ce93583e9b76992437a8dcfcd11613dc", "pid": "A027191227", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027191227", "identifiedBy": [ { "type": "uri", @@ -27660,7 +25980,6 @@ "md5": "ba27746918da9ba687907b97e8025bba", "pid": "A027194665", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027194665", "identifiedBy": [ { "type": "uri", @@ -27676,7 +25995,6 @@ "pid": "A027201602", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A027201602", "identifiedBy": [ { "type": "uri", @@ -27692,7 +26010,6 @@ "pid": "A027205240", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A027205240", "identifiedBy": [ { "type": "uri", @@ -27720,7 +26037,6 @@ "md5": "29d70c00371c93eebb79e4113a25553f", "pid": "A027205480", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027205480", "identifiedBy": [ { "type": "uri", @@ -27735,7 +26051,6 @@ "md5": "dc29a54dbfff78c9a984435d193c2cf3", "pid": "A027220118", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027220118", "identifiedBy": [ { "type": "uri", @@ -27750,7 +26065,6 @@ "md5": "849143e261eaf801fba7bebec2e3e9d6", "pid": "A027221608", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027221608", "identifiedBy": [ { "type": "uri", @@ -27765,7 +26079,6 @@ "md5": "72998892e19422694686ae7ec382d45d", "pid": "A027237908", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027237908", "identifiedBy": [ { "type": "uri", @@ -27781,7 +26094,6 @@ "pid": "A027289406", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A027289406", "identifiedBy": [ { "type": "uri", @@ -27796,7 +26108,6 @@ "md5": "1f435503f56b46274ce47ad4a4cfd6e7", "pid": "A027297912", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027297912", "identifiedBy": [ { "type": "uri", @@ -27828,7 +26139,6 @@ "pid": "A027302854", "type": "bf:Person", "qualifier": "sp\u00e9cialiste de l'histoire et de la civilisation classique", - "identifier": "http://data.rero.ch/02-A027302854", "identifiedBy": [ { "type": "uri", @@ -27843,7 +26153,6 @@ "md5": "ef79cfadf6a0cdbad7a71b36d67e15f8", "pid": "A027307709", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027307709", "identifiedBy": [ { "type": "uri", @@ -27858,7 +26167,6 @@ "md5": "99391cd69c256b9d1ecf7ff6a8e303b7", "pid": "A027316896", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027316896", "identifiedBy": [ { "type": "uri", @@ -27874,7 +26182,6 @@ "pid": "A027333148", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A027333148", "identifiedBy": [ { "type": "uri", @@ -27889,7 +26196,6 @@ "md5": "bc22de6a592bcb51697bb9ad687f732f", "pid": "A027339987", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027339987", "identifiedBy": [ { "type": "uri", @@ -27904,7 +26210,6 @@ "md5": "8780df3de692f6e87b9a9476e840a423", "pid": "A027342850", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027342850", "identifiedBy": [ { "type": "uri", @@ -27919,7 +26224,6 @@ "md5": "8de6bfe696e4c4dfdcede3afae775ec7", "pid": "A027355955", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027355955", "identifiedBy": [ { "type": "uri", @@ -27934,7 +26238,6 @@ "md5": "79e4f5706f6813efffd1c5db160b2e2e", "pid": "A027394831", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027394831", "identifiedBy": [ { "type": "uri", @@ -27949,7 +26252,6 @@ "md5": "b8e33f564a974abf00c419d4d0fcd906", "pid": "A027401068", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027401068", "identifiedBy": [ { "type": "uri", @@ -27964,7 +26266,6 @@ "md5": "00cc7083510a32217946664e3d7423b1", "pid": "A027420393", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027420393", "identifiedBy": [ { "type": "uri", @@ -27979,7 +26280,6 @@ "md5": "f7dff36d9ccfb27aaa0f99113ab8a006", "pid": "A027429159", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027429159", "identifiedBy": [ { "type": "uri", @@ -27994,7 +26294,6 @@ "md5": "8098a76efff1af00689e419958ded71a", "pid": "A027433246", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027433246", "identifiedBy": [ { "type": "uri", @@ -28010,7 +26309,6 @@ "pid": "A027441359", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A027441359", "identifiedBy": [ { "type": "uri", @@ -28035,7 +26333,6 @@ "md5": "78fdaaa0b506930c5c785acc0f3f0950", "pid": "A027443542", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027443542", "identifiedBy": [ { "type": "uri", @@ -28050,7 +26347,6 @@ "md5": "7d569430bf6dc9657cf5d0bb73f64d78", "pid": "A027444942", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027444942", "identifiedBy": [ { "type": "uri", @@ -28069,7 +26365,6 @@ "md5": "0a8b52bb3f0f5a6a21db68da0730d83a", "pid": "A027445987", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027445987", "identifiedBy": [ { "type": "uri", @@ -28084,7 +26379,6 @@ "md5": "c5bc2e3052676c3210a1ccfc63d86026", "pid": "A027448978", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027448978", "identifiedBy": [ { "type": "uri", @@ -28100,7 +26394,6 @@ "md5": "6ef2a25c581bd5dc62af713e8e48820c", "pid": "A027449905", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027449905", "identifiedBy": [ { "type": "uri", @@ -28120,7 +26413,6 @@ "pid": "A027457648", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A027457648", "identifiedBy": [ { "type": "uri", @@ -28144,7 +26436,6 @@ "pid": "A027468424", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A027468424", "identifiedBy": [ { "type": "uri", @@ -28159,7 +26450,6 @@ "md5": "1a727a490e0c80eead88c7a988c1f62e", "pid": "A027470672", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027470672", "identifiedBy": [ { "type": "uri", @@ -28175,7 +26465,6 @@ "md5": "53d1ff6190ff792bbc5c1f3d86465713", "pid": "A027477458", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027477458", "identifiedBy": [ { "type": "uri", @@ -28191,7 +26480,6 @@ "pid": "A027477867", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A027477867", "identifiedBy": [ { "type": "uri", @@ -28206,7 +26494,6 @@ "md5": "505c8653ee2f1791c6d780b250e9782e", "pid": "A027483344", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027483344", "identifiedBy": [ { "type": "uri", @@ -28222,7 +26509,6 @@ "pid": "A027488596", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A027488596", "identifiedBy": [ { "type": "uri", @@ -28237,7 +26523,6 @@ "md5": "736046752175cc074a070190ceef99a5", "pid": "A027490804", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027490804", "identifiedBy": [ { "type": "uri", @@ -28252,7 +26537,6 @@ "md5": "a1be3586a2392086d4c88923e8e591f3", "pid": "A027498782", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027498782", "identifiedBy": [ { "type": "uri", @@ -28267,7 +26551,6 @@ "md5": "90df0a221c530578b9d48c3a4154e970", "pid": "A027507344", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027507344", "identifiedBy": [ { "type": "uri", @@ -28286,7 +26569,6 @@ "md5": "1b94cd431ab71574dcdbb49810f6231b", "pid": "A027508686", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027508686", "identifiedBy": [ { "type": "uri", @@ -28301,7 +26583,6 @@ "md5": "62200fb9b22bff3ba2ee95978db382ea", "pid": "A027518436", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027518436", "identifiedBy": [ { "type": "uri", @@ -28316,7 +26597,6 @@ "md5": "52885699021a2546713adaa4b699df50", "pid": "A027523029", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027523029", "identifiedBy": [ { "type": "uri", @@ -28331,7 +26611,6 @@ "md5": "e980c7b85d3675d24094a84a9c6a67f6", "pid": "A027523482", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027523482", "identifiedBy": [ { "type": "uri", @@ -28346,7 +26625,6 @@ "md5": "15a832605f694a5fe259db3655af4e86", "pid": "A027543659", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027543659", "identifiedBy": [ { "type": "uri", @@ -28361,7 +26639,6 @@ "md5": "3fcbbfca9c0b05859b648bca1284aba0", "pid": "A027544307", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027544307", "identifiedBy": [ { "type": "uri", @@ -28376,7 +26653,6 @@ "md5": "31f6902e42a9914b0fd529d744fb1875", "pid": "A027545859", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027545859", "identifiedBy": [ { "type": "uri", @@ -28391,7 +26667,6 @@ "md5": "03137921a7bef1ae72b2896886fcef40", "pid": "A027565229", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027565229", "identifiedBy": [ { "type": "uri", @@ -28411,7 +26686,6 @@ "pid": "A027568451", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A027568451", "identifiedBy": [ { "type": "uri", @@ -28426,7 +26700,6 @@ "md5": "187996096996d29635d3fed5318a6bcf", "pid": "A027582518", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027582518", "identifiedBy": [ { "type": "uri", @@ -28446,7 +26719,6 @@ "pid": "A027587471", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A027587471", "identifiedBy": [ { "type": "uri", @@ -28462,7 +26734,6 @@ "pid": "A027588056", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A027588056", "identifiedBy": [ { "type": "uri", @@ -28477,7 +26748,6 @@ "md5": "6a836d931da764a40e8e557ed803cd2c", "pid": "A027604812", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027604812", "identifiedBy": [ { "type": "uri", @@ -28493,7 +26763,6 @@ "pid": "A027608462", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A027608462", "identifiedBy": [ { "type": "uri", @@ -28508,7 +26777,6 @@ "md5": "60469d06730777cc06a05b05942775bd", "pid": "A027643343", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027643343", "identifiedBy": [ { "type": "uri", @@ -28523,7 +26791,6 @@ "md5": "aa5d518b1927b7e953a073c2ccc32f7c", "pid": "A027644407", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027644407", "identifiedBy": [ { "type": "uri", @@ -28539,7 +26806,6 @@ "pid": "A027649761", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A027649761", "identifiedBy": [ { "type": "uri", @@ -28554,7 +26820,6 @@ "md5": "2cd2d5921638efed5147f7e3bf001cb6", "pid": "A027652944", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027652944", "identifiedBy": [ { "type": "uri", @@ -28576,7 +26841,6 @@ "md5": "4dea9535f01eb7421147f6f39431fdbf", "pid": "A027653000", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027653000", "identifiedBy": [ { "type": "uri", @@ -28592,7 +26856,6 @@ "md5": "b865a35fbe6d5dfabf3cc1d9a187d05a", "pid": "A027655212", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027655212", "identifiedBy": [ { "type": "uri", @@ -28607,7 +26870,6 @@ "md5": "9b9884177f4da868965e0d6e2f8da6bf", "pid": "A027661275", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027661275", "identifiedBy": [ { "type": "uri", @@ -28622,7 +26884,6 @@ "md5": "b589990a99a775a5995f35b3cf25ba00", "pid": "A027664950", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027664950", "identifiedBy": [ { "type": "uri", @@ -28637,7 +26898,6 @@ "md5": "f00f677c3312eff2feb780fe585e0f2f", "pid": "A027667116", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027667116", "identifiedBy": [ { "type": "uri", @@ -28661,7 +26921,6 @@ "md5": "8f63fc0848e42bf934ab5f7a6c589c1e", "pid": "A027688556", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027688556", "identifiedBy": [ { "type": "uri", @@ -28685,7 +26944,6 @@ "md5": "bcf4e8bd8c3dbbeb91845f8e1c9924f4", "pid": "A027698830", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027698830", "identifiedBy": [ { "type": "uri", @@ -28701,7 +26959,6 @@ "md5": "23d1fc0bdca612760f744c0e1a9f9d85", "pid": "A027716766", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027716766", "identifiedBy": [ { "type": "uri", @@ -28716,7 +26973,6 @@ "md5": "78364d2abfb69a4e779c7b3beb5e08ca", "pid": "A027736928", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027736928", "identifiedBy": [ { "type": "uri", @@ -28733,7 +26989,6 @@ "md5": "acf06fa5221e9673b8ac1e04f3267b3e", "pid": "A027737227", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027737227", "identifiedBy": [ { "type": "uri", @@ -28753,7 +27008,6 @@ "pid": "A027737968", "type": "bf:Organisation", "conference": true, - "identifier": "http://data.rero.ch/02-A027737968", "identifiedBy": [ { "type": "uri", @@ -28768,7 +27022,6 @@ "md5": "935328bb1c0e1ee887247ca8fb1ba38c", "pid": "A027745860", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027745860", "identifiedBy": [ { "type": "uri", @@ -28783,7 +27036,6 @@ "md5": "75eaf2817271b74bf214a96d8ec461bd", "pid": "A027747343", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027747343", "identifiedBy": [ { "type": "uri", @@ -28798,7 +27050,6 @@ "md5": "e2db8a34d79468934ee5446ed6bec662", "pid": "A027763919", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027763919", "identifiedBy": [ { "type": "uri", @@ -28816,7 +27067,6 @@ "md5": "5f8deaadf9c74bc8b0e4156849902968", "pid": "A027766736", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027766736", "identifiedBy": [ { "type": "uri", @@ -28831,7 +27081,6 @@ "md5": "67336a1c0938cb0dbe388fc0a47968f7", "pid": "A027807323", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027807323", "identifiedBy": [ { "type": "uri", @@ -28850,7 +27099,6 @@ "md5": "f4cacd2ed89886c1e70cc9e5b5a814be", "pid": "A027811966", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027811966", "identifiedBy": [ { "type": "uri", @@ -28875,7 +27123,6 @@ "md5": "6f2ab189aa095e8f0815abca6c119ea6", "pid": "A027817940", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A027817940", "identifiedBy": [ { "type": "uri", @@ -28900,7 +27147,6 @@ "pid": "A027841998", "type": "bf:Person", "qualifier": "(pasteur)", - "identifier": "http://data.rero.ch/02-A027841998", "identifiedBy": [ { "type": "uri", @@ -28918,7 +27164,6 @@ "md5": "286a999793e8c4e8a2b3efdccf51cfe3", "pid": "A028081955", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A028081955", "identifiedBy": [ { "type": "uri", @@ -28936,7 +27181,6 @@ "md5": "b450778848552e5630385cfc1a0cba27", "pid": "A028167226", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A028167226", "identifiedBy": [ { "type": "uri", @@ -28958,7 +27202,6 @@ "pid": "A028177834", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A028177834", "identifiedBy": [ { "type": "uri", @@ -28976,7 +27219,6 @@ "md5": "b815fee3b4fb765fd054f3bfbdc01dee", "pid": "A028331435", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A028331435", "identifiedBy": [ { "type": "uri", @@ -29005,7 +27247,6 @@ "md5": "f8e4954e9dfa6a3453640b9a04db132e", "pid": "A028347593", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A028347593", "identifiedBy": [ { "type": "uri", @@ -29024,7 +27265,6 @@ "md5": "6c35106efcb6ee8adc7e21d259780288", "pid": "A028355646", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A028355646", "identifiedBy": [ { "type": "uri", @@ -29050,7 +27290,6 @@ "md5": "ac18de25da6c868979a759cdb0b3d43b", "pid": "A028357568", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A028357568", "identifiedBy": [ { "type": "uri", @@ -29069,7 +27308,6 @@ "md5": "214051dec68b91190e40d2e4ac1d4d98", "pid": "A028447819", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A028447819", "identifiedBy": [ { "type": "uri", @@ -29088,7 +27326,6 @@ "pid": "A028520087", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A028520087", "identifiedBy": [ { "type": "uri", @@ -29109,7 +27346,6 @@ "md5": "e60e8f9658db666a7ac24861edec16e7", "pid": "A028529691", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A028529691", "identifiedBy": [ { "type": "uri", @@ -29128,7 +27364,6 @@ "md5": "0d3eb9fc90175698eae79cffbeb63771", "pid": "A028751062", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A028751062", "identifiedBy": [ { "type": "uri", @@ -29146,7 +27381,6 @@ "md5": "12584f0f32c42166379da5489866b57d", "pid": "A028868344", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A028868344", "identifiedBy": [ { "type": "uri", @@ -29184,7 +27418,6 @@ "md5": "cb8ab6949a033fe8504cff31d4e0b920", "pid": "A028868962", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A028868962", "identifiedBy": [ { "type": "uri", @@ -29204,7 +27437,6 @@ "pid": "A028986344", "type": "bf:Organisation", "conference": false, - "identifier": "http://data.rero.ch/02-A028986344", "identifiedBy": [ { "type": "uri", @@ -29219,7 +27451,6 @@ "md5": "eba0360bf24a0397f086bd6c3bd66826", "pid": "A028989262", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A028989262", "identifiedBy": [ { "type": "uri", @@ -29234,7 +27465,6 @@ "md5": "71e73b7ffdfb6e8cba3fa93851f6709b", "pid": "A029002736", "type": "bf:Person", - "identifier": "http://data.rero.ch/02-A029002736", "identifiedBy": [ { "type": "uri", @@ -29252,7 +27482,6 @@ "pid": "A029004750", "type": "bf:Person", "qualifier": "professeur physique chimie", - "identifier": "http://data.rero.ch/02-A029004750", "identifiedBy": [ { "type": "uri", @@ -29263,4 +27492,4 @@ "preferred_name": "Martin, Fran\u00e7ois professeur physique chimie", "authorized_access_point": "Martin, Fran\u00e7ois professeur physique chimie" } -] \ No newline at end of file +] diff --git a/data/agrero_metadata.csv b/data/agrero_metadata.csv index d5ebd236..480dd37c 100644 --- a/data/agrero_metadata.csv +++ b/data/agrero_metadata.csv @@ -1,1771 +1,1771 @@ -2023-07-08 08:23:23.964682 2023-07-08 08:23:23.964686 a1df350e-3da3-4bb8-b131-5f6c71eae91a {"md5": "f488f0e2f5870b11324c2f7846d22567", "pid": "A000003203", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000003203", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000003203", "source": "RERO"}], "preferred_name": "Académie de chirurgie (Paris)", "authorized_access_point": "Académie de chirurgie (Paris)", "biographical_information": ["Jusqu'en 1923: Société de chirurgie (Paris)", "De 1924 à 1935: Société nationale de chirurgie (Paris)", "Depuis 1936: Académie de chirurgie (Paris)"]} 1 -2023-07-08 08:23:24.065745 2023-07-08 08:23:24.065748 4e62d12a-28a1-4075-a604-2abd631550b2 {"md5": "3b43358e8f6a6e953f131ba572ef212d", "pid": "A000010540", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000010540", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000010540", "source": "RERO"}], "variant_name": ["Enseignement public et informatique (France)", "EPI (Enseignement public et informatique)"], "preferred_name": "Association Enseignement public et informatique (Paris)", "variant_access_point": ["Enseignement public et informatique (France)", "EPI (Enseignement public et informatique)"], "authorized_access_point": "Association Enseignement public et informatique (Paris)"} 1 -2023-07-08 08:23:24.129145 2023-07-08 08:23:24.129148 7f46cf34-6bf8-4954-9caf-dc0662443972 {"md5": "bd4b869482b2fad81338ee5994943331", "pid": "A000011132", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000011132", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000011132", "source": "RERO"}], "variant_name": ["AAPPFID (Association des amis passés, présents et futurs d'Isidore Ducasse : Paris)"], "preferred_name": "Association des amis passés, présents et futurs d'Isidore Ducasse (Paris)", "variant_access_point": ["AAPPFID (Association des amis passés, présents et futurs d'Isidore Ducasse : Paris)"], "authorized_access_point": "Association des amis passés, présents et futurs d'Isidore Ducasse (Paris)"} 1 -2023-07-08 08:23:24.191207 2023-07-08 08:23:24.191213 4d8ce15e-835d-469d-89a3-519fdc7413b3 {"md5": "ab77deb8840d844908c12ec39428cdb2", "pid": "A000012165", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000012165", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000012165", "source": "RERO"}], "variant_name": ["Societas internationalis studiis Byzantinis provehendis destinata"], "preferred_name": "Association internationale des études byzantines", "variant_access_point": ["Societas internationalis studiis Byzantinis provehendis destinata"], "authorized_access_point": "Association internationale des études byzantines"} 1 -2023-07-08 08:23:24.26061 2023-07-08 08:23:24.260616 02231189-2c40-4486-844c-381b593a2e92 {"md5": "aae887e8326ad34ea483cdbcc8d300a0", "pid": "A000014216", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000014216", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000014216", "source": "RERO"}], "variant_name": ["NCAAC (National Consumer Affairs Advisory Council)", "National Consumer Affairs Advisory Council"], "preferred_name": "Australia. National Consumer Affairs Advisory Council", "variant_access_point": ["NCAAC (National Consumer Affairs Advisory Council)", "National Consumer Affairs Advisory Council"], "authorized_access_point": "Australia. National Consumer Affairs Advisory Council"} 1 -2023-07-08 08:23:24.353821 2023-07-08 08:23:24.353834 c944ccad-6548-49ed-9c1f-ab3cfb95d619 {"md5": "cfb27fd6dc397e9cfc610cca71701f92", "pid": "A000014650", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000014650", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000014650", "source": "RERO"}], "variant_name": ["Fluggruppe Oberwallis"], "preferred_name": "Aéro-Club de Suisse. Section du Valais. Fluggruppe Oberwallis", "variant_access_point": ["Fluggruppe Oberwallis"], "authorized_access_point": "Aéro-Club de Suisse. Section du Valais. Fluggruppe Oberwallis"} 1 -2023-07-08 08:23:24.461205 2023-07-08 08:23:24.461221 918e3ff9-4a48-4695-bad0-ef43beac0cea {"md5": "98cf2395590fabfc1e91c668501e2edf", "pid": "A000016955", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A000016955", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000016955", "source": "RERO"}], "date_of_birth": "1813", "date_of_death": "1882", "preferred_name": "Batissier, Louis,", "authorized_access_point": "Batissier, Louis, 1813-1882", "biographical_information": ["B. Lewis est le pseudonyme de Louis Batissier", "Médecin. - Inspecteur de monuments historiques de l'Allier"]} 1 -2023-07-08 08:23:24.582184 2023-07-08 08:23:24.582196 01a42a06-bbc7-4ff9-9e4f-f7216a5d1c24 {"md5": "85d80d8e61b461eeeca7002bd2ec00b0", "pid": "A000018483", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "d'Anoia", "identifier": "http://data.rero.ch/02-A000018483", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000018483", "source": "RERO"}], "variant_name": ["Anoia, Berenguer d'"], "preferred_name": "Berenguer, d'Anoia", "variant_access_point": ["Anoia, Berenguer d'"], "authorized_access_point": "Berenguer, d'Anoia"} 1 -2023-07-08 08:23:24.681986 2023-07-08 08:23:24.681994 874ba76d-3299-4dfd-a09f-34ad0cfd5bcf {"md5": "81b4bb73dcf1b9b06a0a39fd52f72e55", "pid": "A000018719", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000018719", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000018719", "source": "RERO"}], "variant_name": ["Bern (Kanton). Service de statistique"], "preferred_name": "Bern (Kanton). Amt für Statistik", "variant_access_point": ["Bern (Kanton). Service de statistique"], "authorized_access_point": "Bern (Kanton). Amt für Statistik"} 1 -2023-07-08 08:23:24.783538 2023-07-08 08:23:24.783545 c89f3191-7974-46cd-b1c0-3c7be5c7344d {"md5": "a3233024dbee4f8094b9db969b0202c0", "pid": "A000022042", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A000022042", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000022042", "source": "RERO"}], "variant_name": ["Bouchon, Bernadette"], "preferred_name": "Bouchon-Meunier, Bernadette", "variant_access_point": ["Bouchon, Bernadette"], "authorized_access_point": "Bouchon-Meunier, Bernadette", "biographical_information": ["Nom collectif réunissant des systémiciens provenant des milieux universitaire, administratif et industriel"]} 1 -2023-07-08 08:23:24.867392 2023-07-08 08:23:24.867399 e22da35f-1fcc-485f-be90-4efb887fc1c1 {"md5": "73b752e9041e689d47aa675ee6cb5529", "pid": "A000023938", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000023938", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000023938", "source": "RERO"}], "variant_name": ["Deutschland (Bundesrepublik). Bundeskonferenz für Erziehungsberatung"], "preferred_name": "Bundeskonferenz für Erziehungsberatung", "variant_access_point": ["Deutschland (Bundesrepublik). Bundeskonferenz für Erziehungsberatung"], "authorized_access_point": "Bundeskonferenz für Erziehungsberatung"} 1 -2023-07-08 08:23:24.962276 2023-07-08 08:23:24.962287 e90dc2af-d986-4507-8f83-429811227205 {"md5": "6ec17944043561303e60f2fc8434f854", "pid": "A000026444", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000026444", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000026444", "source": "RERO"}], "variant_name": ["Centro per la ricerca e l'applicazione dell'informatica alle scienze umane (Grono / Giubiasco)"], "preferred_name": "COBIS (Centro per la ricerca e l'applicazione dell'informatica alle scienze umane ; Grono / Giubiasco)", "variant_access_point": ["Centro per la ricerca e l'applicazione dell'informatica alle scienze umane (Grono / Giubiasco)"], "authorized_access_point": "COBIS (Centro per la ricerca e l'applicazione dell'informatica alle scienze umane ; Grono / Giubiasco)"} 1 -2023-07-08 08:23:25.049528 2023-07-08 08:23:25.04954 51000b76-93c5-4876-a1a9-1811aec1b803 {"md5": "fbd1dd405f09e0a77f5720e250e86678", "pid": "A000031507", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000031507", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000031507", "source": "RERO"}], "variant_name": ["CEDOS (Centre de documentation et d'information scientifiques)"], "preferred_name": "Centre de documentation et d'information scientifiques (Genève)", "variant_access_point": ["CEDOS (Centre de documentation et d'information scientifiques)"], "authorized_access_point": "Centre de documentation et d'information scientifiques (Genève)"} 1 -2023-07-08 08:23:25.155318 2023-07-08 08:23:25.155331 971cb2ee-8d7e-4506-b6c7-b0b498489380 {"md5": "c52118b1e23111639e90634058d18a5c", "pid": "A000032185", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000032185", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000032185", "source": "RERO"}], "variant_name": ["Centre for the Study of Education in Developing Countries (Den Haag)", "CESO (Centre for the Study of Education in Developing Countries ; Den Haag)", "Centro de Estudios de la Educación en Sociedades en Proceso de Cambio (Den Haag)", "Centro para el Estudio de la Educación en Países en vía de Desarrollo (Den Haag)"], "preferred_name": "Centrum voor de Studie van het Onderwijs in de Ontwikkelingslanden (Den Haag)", "variant_access_point": ["Centre for the Study of Education in Developing Countries (Den Haag)", "CESO (Centre for the Study of Education in Developing Countries ; Den Haag)", "Centro de Estudios de la Educación en Sociedades en Proceso de Cambio (Den Haag)", "Centro para el Estudio de la Educación en Países en vía de Desarrollo (Den Haag)"], "authorized_access_point": "Centrum voor de Studie van het Onderwijs in de Ontwikkelingslanden (Den Haag)"} 1 -2023-07-08 08:23:25.250917 2023-07-08 08:23:25.250927 f6ed3b52-7003-4699-9792-66eafe3085d5 {"md5": "0c94bb7785ab5fc50d68d664caa6b52a", "pid": "A000033498", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000033498", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000033498", "source": "RERO"}], "variant_name": ["CSG (Ceramic Study Group Sydney)"], "preferred_name": "Ceramic Study Group (Sydney)", "variant_access_point": ["CSG (Ceramic Study Group Sydney)"], "authorized_access_point": "Ceramic Study Group (Sydney)"} 1 -2023-07-08 08:23:25.35553 2023-07-08 08:23:25.355552 33a5f953-00b0-473e-88c0-31c6296c5df6 {"md5": "574cf374fab1ce030b214cc3883af107", "pid": "A000035884", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A000035884", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000035884", "source": "RERO"}], "variant_name": ["Cholinus, Gosuinus"], "preferred_name": "Cholinus, Goswin", "variant_access_point": ["Cholinus, Gosuinus"], "authorized_access_point": "Cholinus, Goswin"} 1 -2023-07-08 08:23:25.467561 2023-07-08 08:23:25.467575 433ad8a3-cbd2-4668-9f9d-368a60af26d1 {"md5": "2ca739f8e537930a7f6f16959cbbee88", "pid": "A000041054", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000041054", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000041054", "source": "RERO"}], "variant_name": ["CGIL (Confederazione generale italiana del lavoro)"], "preferred_name": "Confederazione generale italiana del lavoro", "variant_access_point": ["CGIL (Confederazione generale italiana del lavoro)"], "authorized_access_point": "Confederazione generale italiana del lavoro"} 1 -2023-07-08 08:23:25.567536 2023-07-08 08:23:25.567547 69a76fda-9359-4285-bb05-503828ec80be {"md5": "12abe8dbe2b722481740e29077d08342", "pid": "A000042792", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000042792", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000042792", "source": "RERO"}], "variant_name": ["Comité d'experts sur la recherche en matière de sport (Conseil de l'Europe)", "Conseil de l'Europe. Comité pour le développement du sport. Comité d'experts sur la recherche en matière de sport"], "preferred_name": "Conseil de l'Europe. Comité d'experts sur la recherche en matière de sport", "variant_access_point": ["Comité d'experts sur la recherche en matière de sport (Conseil de l'Europe)", "Conseil de l'Europe. Comité pour le développement du sport. Comité d'experts sur la recherche en matière de sport"], "authorized_access_point": "Conseil de l'Europe. Comité d'experts sur la recherche en matière de sport"} 1 -2023-07-08 08:23:25.670165 2023-07-08 08:23:25.670177 c4b5a36e-7f1e-4697-9fed-1a8003591fb9 {"md5": "64705a24fc47fd42a0f2325e0b40b5ae", "pid": "A000045285", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000045285", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000045285", "source": "RERO"}], "preferred_name": "Crédit Suisse Fides Trust (Zürich)", "authorized_access_point": "Crédit Suisse Fides Trust (Zürich)", "biographical_information": ["KPMG = Klynveld Peat Marwick Goerdeler", "De 1981 à 1984: Fides Revision (Zürich)", "De 1985 à 1987: KMG Fides Revision (Zürich)", "De 1988 à 1991: KPMG Fides Peat (Zürich)", "De 1992 à 1994: Fides Trust (Zürich)", "Dès 1995: Crédit Suisse Fides Trust (Zürich)"]} 1 -2023-07-08 08:23:25.769211 2023-07-08 08:23:25.769221 ed5b1804-174b-4fb9-9358-6ef38e070cc5 {"md5": "a346b3909f02f68a0bbc9ba3ba3946a5", "pid": "A000047084", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A000047084", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000047084", "source": "RERO"}], "variant_name": ["Gupta, Jyotitindra Das"], "preferred_name": "Das Gupta, Jyotirindra", "variant_access_point": ["Gupta, Jyotitindra Das"], "authorized_access_point": "Das Gupta, Jyotirindra"} 1 -2023-07-08 08:23:25.881455 2023-07-08 08:23:25.881467 d58a6f31-3800-4d6b-ba5b-e9fd71b5403e {"md5": "9110378bbcc07db439aa7023daf8c629", "pid": "A000047788", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A000047788", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000047788", "source": "RERO"}], "variant_name": ["Groote, Jacqueline de"], "preferred_name": "De Groote, Jacqueline", "variant_access_point": ["Groote, Jacqueline de"], "authorized_access_point": "De Groote, Jacqueline"} 1 -2023-07-08 08:23:25.980529 2023-07-08 08:23:25.98054 4ab9d7ad-9263-4f06-8e5d-55d3f7cc7a2e {"md5": "45ad0ca1a7efaa1a2b417ec41baf5ebd", "pid": "A000062707", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000062707", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000062707", "source": "RERO"}], "variant_name": ["Philipinas", "Philippinen", "Filipinas", "Républica de Filipinas", "Republic of the Philippines"], "preferred_name": "Philippines", "variant_access_point": ["Philipinas", "Philippinen", "Filipinas", "Républica de Filipinas", "Republic of the Philippines"], "authorized_access_point": "Philippines"} 1 -2023-07-08 08:23:26.083488 2023-07-08 08:23:26.083498 88fdc1fe-f26f-40b8-943d-6d179f2bf695 {"md5": "6c0489a317bd539869a95c502cb589fe", "pid": "A000063670", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000063670", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000063670", "source": "RERO"}], "variant_name": ["FFN (Fondation française pour la nutrition)", "Institut français pour la nutrition"], "preferred_name": "Fondation française pour la nutrition", "variant_access_point": ["FFN (Fondation française pour la nutrition)", "Institut français pour la nutrition"], "authorized_access_point": "Fondation française pour la nutrition"} 1 -2023-07-08 08:23:26.183672 2023-07-08 08:23:26.183682 c24dc485-0093-472e-901b-5b64d73f637d {"md5": "35c6520420a35c97dbc0bcd3f62c5f5e", "pid": "A000068070", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000068070", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000068070", "source": "RERO"}], "variant_name": ["Fédération vaudoise des syndicats d'élevage chevalin"], "preferred_name": "Fédération vaudoise des syndicats d'élevage de l'espèce chevaline", "variant_access_point": ["Fédération vaudoise des syndicats d'élevage chevalin"], "authorized_access_point": "Fédération vaudoise des syndicats d'élevage de l'espèce chevaline"} 1 -2023-07-08 08:23:26.283335 2023-07-08 08:23:26.283343 1631e00a-a5f5-4588-a8ec-dbe7a221446d {"md5": "c9eab3ca3f1e24857c7c2d9c1ab69b21", "pid": "A000069516", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A000069516", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000069516", "source": "RERO"}], "variant_name": ["Pavón, Francisco García,"], "date_of_birth": "1919", "date_of_death": "1989", "preferred_name": "García Pavón, Francisco,", "variant_access_point": ["Pavón, Francisco García, 1919-1989"], "authorized_access_point": "García Pavón, Francisco, 1919-1989", "biographical_information": ["Romancier et critique de théâtre. - Docteur ès lettres et philosophie"]} 1 -2023-07-08 08:23:26.388799 2023-07-08 08:23:26.388808 d5a374cb-eebe-4957-90eb-5652174357ca {"md5": "b5258ff29e44bd69c79e29d96f94e9f3", "pid": "A000074210", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000074210", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000074210", "source": "RERO"}], "variant_name": ["Securities and Investments Board", "SIB (Securities and Investments Board)"], "preferred_name": "Great Britain. Securities and Investments Board", "variant_access_point": ["Securities and Investments Board", "SIB (Securities and Investments Board)"], "authorized_access_point": "Great Britain. Securities and Investments Board"} 1 -2023-07-08 08:23:26.502088 2023-07-08 08:23:26.502093 ec9f9556-1275-46c4-aa80-aad141e3c2fb {"md5": "48963cc7fddb68859f8c24892bd2f91b", "pid": "A000075082", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000075082", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000075082", "source": "RERO"}], "variant_name": ["GRET (Groupe de recherche et d'échanges technologiques, Paris)"], "preferred_name": "Groupe de recherche et d'échanges technologiques (Paris)", "variant_access_point": ["GRET (Groupe de recherche et d'échanges technologiques, Paris)"], "authorized_access_point": "Groupe de recherche et d'échanges technologiques (Paris)"} 1 -2023-07-08 08:23:26.601752 2023-07-08 08:23:26.601766 907d7ff3-8227-402c-b51f-29e9235b5ae2 {"md5": "63bcda28e1e476147d0f3ab51f538fc3", "pid": "A000075825", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000075825", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000075825", "source": "RERO"}], "variant_name": ["Hellas. Ministry of Culture and Sciences", "Hypourgeio Politismou kai Epistēmōn", "Hellas. Ministerium für Kultur und Wissenschaft", "Hellas. Ministère de la culture et des sciences", "Hypurgeion Politismu kai Epistēmōn", "Hellas. Hypurgeio Politismu kai Epistēmōn"], "preferred_name": "Hellas. Hypourgeio Politismou kai Epistēmōn", "variant_access_point": ["Hellas. Ministry of Culture and Sciences", "Hypourgeio Politismou kai Epistēmōn", "Hellas. Ministerium für Kultur und Wissenschaft", "Hellas. Ministère de la culture et des sciences", "Hypurgeion Politismu kai Epistēmōn", "Hellas. Hypurgeio Politismu kai Epistēmōn"], "authorized_access_point": "Hellas. Hypourgeio Politismou kai Epistēmōn"} 1 -2023-07-08 08:23:27.735173 2023-07-08 08:23:27.735184 b26268ea-774c-447a-b59e-3729edf9d62c {"md5": "ac2be6cce50c3a499993ac9e1b64ce09", "pid": "A000103142", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A000103142", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000103142", "source": "RERO"}], "variant_name": ["Lavoix, Henri, numismate"], "preferred_name": "Lavoix, Michel Henri", "variant_access_point": ["Lavoix, Henri, numismate"], "authorized_access_point": "Lavoix, Michel Henri"} 1 -2023-07-08 08:23:26.701803 2023-07-08 08:23:26.701817 4f50eedb-c5f9-4d09-87e2-421d87bceefa {"md5": "2fe717f5966f9868a474b58b32cba7c9", "pid": "A000078192", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000078192", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000078192", "source": "RERO"}], "variant_name": ["Fitzwilliam Museum (Cambridge). Hamilton Kerr Institute", "Cambridge University. Hamilton Kerr Institute"], "preferred_name": "Hamilton Kerr Institute (Cambridge)", "variant_access_point": ["Fitzwilliam Museum (Cambridge). Hamilton Kerr Institute", "Cambridge University. Hamilton Kerr Institute"], "authorized_access_point": "Hamilton Kerr Institute (Cambridge)"} 1 -2023-07-08 08:23:26.796916 2023-07-08 08:23:26.796929 9f9963ab-0d62-4d79-83e0-56f591817097 {"md5": "881555e0e0e30f90b0755f9019fd7065", "pid": "A000082809", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A000082809", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000082809", "source": "RERO"}], "variant_name": ["Khālidī, ʿAbd al-Majīd ibn Muḥammad,", "H̲ānī, ʿAbd al-Maǧīd,", "Nasqshabandī, ʿAbd al-Majīd ibn Muḥammad,"], "date_of_birth": "ca. 1846", "date_of_death": "ca. 1901", "preferred_name": "Khānī, ʿAbd al-Majīd ibn Muḥammad,", "variant_access_point": ["Khālidī, ʿAbd al-Majīd ibn Muḥammad, ca. 1846-ca. 1901", "H̲ānī, ʿAbd al-Maǧīd, ca. 1846-ca. 1901", "Nasqshabandī, ʿAbd al-Majīd ibn Muḥammad, ca. 1846-ca. 1901"], "parallel_access_point": ["خاني، عبد المجيد بن محمد، ca. 1846-ca. 1901"], "authorized_access_point": "Khānī, ʿAbd al-Majīd ibn Muḥammad, ca. 1846-ca. 1901"} 1 -2023-07-08 08:23:26.897386 2023-07-08 08:23:26.897402 5f5cfe82-1b3c-4416-b295-c98d61981b15 {"md5": "ea5bddaaf468c526564021016346a677", "pid": "A000085441", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000085441", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000085441", "source": "RERO"}], "variant_name": ["INFRA Zürich (Informationsstelle für Frauen)"], "preferred_name": "Informationsstelle für Frauen (Zürich)", "variant_access_point": ["INFRA Zürich (Informationsstelle für Frauen)"], "authorized_access_point": "Informationsstelle für Frauen (Zürich)"} 1 -2023-07-08 08:23:26.987143 2023-07-08 08:23:26.987154 e0b9d309-c9e3-4949-8c24-6d491cf856da {"md5": "5290017810b5ee59c9ee9b6301e6475d", "pid": "A000085746", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000085746", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000085746", "source": "RERO"}], "variant_name": ["Couvent des Ursulines (Fribourg)"], "preferred_name": "Institut Sainte-Ursule (Fribourg)", "variant_access_point": ["Couvent des Ursulines (Fribourg)"], "authorized_access_point": "Institut Sainte-Ursule (Fribourg)"} 1 -2023-07-08 08:23:27.136371 2023-07-08 08:23:27.136379 a3f6162b-aefa-4e4e-9a32-40ce122fd3e5 {"md5": "cf9f513ac8348255df46bfa71000f717", "pid": "A000087771", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000087771", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000087771", "source": "RERO"}], "variant_name": ["CFA (Institute of Chartered Financial Analysts ; USA)", "ICFA (Institute of Chartered Financial Analysts ; USA)"], "preferred_name": "Institute of Chartered Financial Analysts (USA)", "variant_access_point": ["CFA (Institute of Chartered Financial Analysts ; USA)", "ICFA (Institute of Chartered Financial Analysts ; USA)"], "authorized_access_point": "Institute of Chartered Financial Analysts (USA)"} 1 -2023-07-08 08:23:27.206946 2023-07-08 08:23:27.206952 c2464179-df3a-42f2-98af-37581c11b757 {"md5": "bd9029c3b8cc90d4842e0a92b8054d58", "pid": "A000091274", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000091274", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000091274", "source": "RERO"}], "variant_name": ["Intrag AG (Verwaltung von Investment Trusts)"], "preferred_name": "Intrag SA (Gestion d'Investment Trusts)", "variant_access_point": ["Intrag AG (Verwaltung von Investment Trusts)"], "authorized_access_point": "Intrag SA (Gestion d'Investment Trusts)"} 1 -2023-07-08 08:23:27.295703 2023-07-08 08:23:27.295716 9d17c968-34d8-43e0-a041-ff354cd741f6 {"md5": "34475ba1dbf3b1121aee859789e74a96", "pid": "A000092501", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000092501", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000092501", "source": "RERO"}], "variant_name": ["Italia. Ministero per i beni culturali e ambientali. Soprintendenza archivistica per la Toscana", "Soprintendenza archivistica per la Toscana"], "preferred_name": "Italia. Soprintendenza archivistica per la Toscana", "variant_access_point": ["Italia. Ministero per i beni culturali e ambientali. Soprintendenza archivistica per la Toscana", "Soprintendenza archivistica per la Toscana"], "authorized_access_point": "Italia. Soprintendenza archivistica per la Toscana"} 1 -2023-07-08 08:23:27.388729 2023-07-08 08:23:27.388739 2404ea22-e9e5-4f34-8f83-beba5cc13d43 {"md5": "1018bf1c658d58c1ecc0942a71f5704f", "pid": "A000099346", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A000099346", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000099346", "source": "RERO"}], "variant_name": ["K'ung, Shang-jen"], "preferred_name": "Kong, Shangren", "variant_access_point": ["K'ung, Shang-jen"], "authorized_access_point": "Kong, Shangren"} 1 -2023-07-08 08:23:27.510584 2023-07-08 08:23:27.510601 3416ded5-ac50-4d39-95f9-45fc2f817f2f {"md5": "d26f3129a6ce8f9e7039bc76c1b5dea2", "pid": "A000100584", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A000100584", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000100584", "source": "RERO"}], "variant_name": ["Kupriyanova, V.R", "Kuprijanova, V.R"], "preferred_name": "Kuprii︠a︡nova, V.R", "variant_access_point": ["Kupriyanova, V.R", "Kuprijanova, V.R"], "authorized_access_point": "Kuprii︠a︡nova, V.R"} 1 -2023-07-08 08:23:27.620904 2023-07-08 08:23:27.620915 eebc2d71-080f-4b3b-9b06-7c95636d4e8e {"md5": "86ea4727a26894716e81d4246b672214", "pid": "A000102121", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A000102121", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000102121", "source": "RERO"}], "variant_name": ["Verpelli, Silvia Lalia"], "preferred_name": "Lalia Verpelli, Silvia", "variant_access_point": ["Verpelli, Silvia Lalia"], "authorized_access_point": "Lalia Verpelli, Silvia"} 1 -2023-07-08 08:23:27.852383 2023-07-08 08:23:27.852397 9b895a82-d256-4f2e-a0c3-74763eaf0243 {"md5": "f79af4f6adaa997d4b7c032b65ef847f", "pid": "A000104694", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A000104694", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000104694", "source": "RERO"}], "variant_name": ["Lanzhi, Li"], "preferred_name": "Li, Lanzhi", "variant_access_point": ["Lanzhi, Li"], "authorized_access_point": "Li, Lanzhi"} 1 -2023-07-08 08:23:27.967738 2023-07-08 08:23:27.967751 6a0e1c66-fca6-4c10-b00a-8178b4b23446 {"md5": "075273ad86016201c18201bd6383730f", "pid": "A000107290", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A000107290", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000107290", "source": "RERO"}], "variant_name": ["Swaanswijk, Lubertus Jacobus", "Van Swaanswijk, Lucebert"], "preferred_name": "Lucebert", "variant_access_point": ["Swaanswijk, Lubertus Jacobus", "Van Swaanswijk, Lucebert"], "authorized_access_point": "Lucebert", "biographical_information": ["Lucebert est le pseudonyme de Lubertus Jacobus Swaanswijk", "Lucebert est le pseudonyme de Lubertus Jacobus Swaanswijk"]} 1 -2023-07-08 08:23:28.083441 2023-07-08 08:23:28.083452 c4c3e1be-d797-4dbd-9b91-be33b865528a {"md5": "dfbcba1c0e12838925e343953d0dcc15", "pid": "A000108532", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A000108532", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000108532", "source": "RERO"}], "variant_name": ["Hongjun, Ma"], "preferred_name": "Ma, Hongjun", "variant_access_point": ["Hongjun, Ma"], "authorized_access_point": "Ma, Hongjun"} 1 -2023-07-08 08:23:28.171431 2023-07-08 08:23:28.171443 c16bf583-20ca-4f61-8757-405e244e82f4 {"md5": "9204fae2e3e25f1f8f2f397b1a9b5ef1", "pid": "A000108719", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A000108719", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000108719", "source": "RERO"}], "variant_name": ["Macclaskey, Marilyn H. Jones"], "preferred_name": "Macclaskey, Marilyn H", "variant_access_point": ["Macclaskey, Marilyn H. Jones"], "authorized_access_point": "Macclaskey, Marilyn H"} 1 -2023-07-08 08:23:28.280367 2023-07-08 08:23:28.280379 2d5bb3d3-ea6d-45c4-a1ec-a1b7a9bcc423 {"md5": "b6c26d4b1f7ee63e2e91ce9076a9691a", "pid": "A000110353", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "Evangelista", "identifier": "http://data.rero.ch/02-A000110353", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000110353", "source": "RERO"}], "variant_name": ["Marc, l'évangéliste"], "preferred_name": "Marcus, Evangelista", "variant_access_point": ["Marc, l'évangéliste"], "authorized_access_point": "Marcus, Evangelista"} 1 -2023-07-08 08:23:28.399241 2023-07-08 08:23:28.399254 7138f215-b660-42f3-852b-97c5baee5331 {"md5": "4a33338e030b450e3bd0bc489716e3b7", "pid": "A000119730", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000119730", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000119730", "source": "RERO"}], "variant_name": ["National Academy of Sciences (U.S.). Committee on Science and Public Policy. Committee on Research in the Life Sciences"], "preferred_name": "National Academy of Sciences (U.S.). Committee on Research in the Life Sciences", "variant_access_point": ["National Academy of Sciences (U.S.). Committee on Science and Public Policy. Committee on Research in the Life Sciences"], "authorized_access_point": "National Academy of Sciences (U.S.). Committee on Research in the Life Sciences"} 1 -2023-07-08 08:23:28.509505 2023-07-08 08:23:28.509517 14e11ae6-5a67-4f57-9ddd-331ae1651c66 {"md5": "6b515eeb2e49fdbc504387f6e213ae31", "pid": "A000120627", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000120627", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000120627", "source": "RERO"}], "variant_name": ["Nations Unies. Department of Humanitarian Affairs", "DHA (Department of Humanitarian Affairs, Nations Unies"], "preferred_name": "Nations Unies. Département des affaires humanitaires", "variant_access_point": ["Nations Unies. Department of Humanitarian Affairs", "DHA (Department of Humanitarian Affairs, Nations Unies"], "authorized_access_point": "Nations Unies. Département des affaires humanitaires"} 1 -2023-07-08 08:23:28.617515 2023-07-08 08:23:28.617523 aa37230d-29cc-4c72-9f99-5774ef867b12 {"md5": "0aa458fd8b10cd6da89db3d7df302ac3", "pid": "A000124969", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000124969", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000124969", "source": "RERO"}], "variant_name": ["Italia. Ministero per i beni culturali e ambientali. Opificio delle pietre dure e laboratori di restauro (Firenze)", "OPD (Opificio delle pietre dure)"], "preferred_name": "Opificio delle pietre dure e laboratori di restauro (Firenze)", "variant_access_point": ["Italia. Ministero per i beni culturali e ambientali. Opificio delle pietre dure e laboratori di restauro (Firenze)", "OPD (Opificio delle pietre dure)"], "authorized_access_point": "Opificio delle pietre dure e laboratori di restauro (Firenze)"} 1 -2023-07-08 08:23:28.71666 2023-07-08 08:23:28.716672 9b58b9c7-fb28-4195-b474-6e2bdb5c7ce1 {"md5": "eb15988bf0157607c24f7fb6802d912b", "pid": "A000132150", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000132150", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000132150", "source": "RERO"}], "variant_name": ["Institut pontifical d'archéologie chrétienne (Roma)"], "preferred_name": "Pontificio istituto di archeologia cristiana (Roma)", "variant_access_point": ["Institut pontifical d'archéologie chrétienne (Roma)"], "authorized_access_point": "Pontificio istituto di archeologia cristiana (Roma)"} 1 -2023-07-08 08:23:28.820094 2023-07-08 08:23:28.820105 5e819152-11b9-46b0-b965-c7d9796bf8ba {"md5": "5c4b215ee404d0f309c1e47be2d0b8f9", "pid": "A000135302", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000135302", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000135302", "source": "RERO"}], "variant_name": ["Orchestre symphonique de Radio Bâle"], "preferred_name": "Radio Basel. Sinfonie Orchester", "variant_access_point": ["Orchestre symphonique de Radio Bâle"], "authorized_access_point": "Radio Basel. Sinfonie Orchester"} 1 -2023-07-08 08:23:32.252121 2023-07-08 08:23:32.252144 b7a348d5-8efc-4e6b-ba73-767072ea8cfb {"md5": "6534020ff409915fd037538ba856d5ae", "pid": "A002928445", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A002928445", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002928445", "source": "RERO"}], "preferred_name": "Anderson, Mike", "authorized_access_point": "Anderson, Mike"} 1 -2023-07-08 08:23:28.916604 2023-07-08 08:23:28.916616 c06b6e93-f28a-47ea-8d54-cebcf2ed9a5b {"md5": "587174d0692713124429528e4c1a7590", "pid": "A000136441", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000136441", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000136441", "source": "RERO"}], "variant_name": ["RSCU (Regional Soil Conservation Unit)"], "preferred_name": "Regional Soil Conservation Unit (Nairobi)", "variant_access_point": ["RSCU (Regional Soil Conservation Unit)"], "authorized_access_point": "Regional Soil Conservation Unit (Nairobi)"} 1 -2023-07-08 08:23:29.014729 2023-07-08 08:23:29.01474 53aefe59-7c9f-4b8a-a914-4141973b6eb2 {"md5": "f2b425db33a73eed15aa3174a2293cbf", "pid": "A000142799", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A000142799", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000142799", "source": "RERO"}], "variant_name": ["Yoshikazu, Sagami"], "preferred_name": "Sagami, Yoshikazu", "variant_access_point": ["Yoshikazu, Sagami"], "authorized_access_point": "Sagami, Yoshikazu"} 1 -2023-07-08 08:23:29.131872 2023-07-08 08:23:29.131881 c8c7049a-8a5f-4db5-a75f-98859c6d7277 {"md5": "76cbd3d6e5bf4b358f965d1331de914a", "pid": "A000144337", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A000144337", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000144337", "source": "RERO"}], "variant_name": ["Sarrazin, Adolphe, Mme", "Boissier, Anna"], "preferred_name": "Sarrazin, Anna", "variant_access_point": ["Sarrazin, Adolphe, Mme", "Boissier, Anna"], "authorized_access_point": "Sarrazin, Anna"} 1 -2023-07-08 08:23:29.256279 2023-07-08 08:23:29.256287 736d360a-cf6a-445a-bbe9-8b9889dd925c {"md5": "9a046e2bf79c5c2b62ac379cc055346e", "pid": "A000147059", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000147059", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000147059", "source": "RERO"}], "variant_name": ["Schweizer Jugend forscht", "Scienza e gioventù", "Fondation la science appelle les jeunes", "Stiftung Schweizer Jugend forscht", "Fondazione scienza e gioventù", "Scienza e giuventetgna", "Fundaziun scienza e giuventetgna"], "preferred_name": "Science appelle les jeunes", "variant_access_point": ["Schweizer Jugend forscht", "Scienza e gioventù", "Fondation la science appelle les jeunes", "Stiftung Schweizer Jugend forscht", "Fondazione scienza e gioventù", "Scienza e giuventetgna", "Fundaziun scienza e giuventetgna"], "authorized_access_point": "Science appelle les jeunes"} 1 -2023-07-08 08:23:29.364431 2023-07-08 08:23:29.364442 5824ffb1-7b90-43ea-8210-2f317e8f7779 {"md5": "866ce8c672b3806ae167af47ced63860", "pid": "A000152472", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000152472", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000152472", "source": "RERO"}], "variant_name": ["Orchestre de la Société des concerts du Conservatoire (Paris)", "Conservatoire orchestre (Paris)", "Pariser Conservatoire-Orchester"], "preferred_name": "Société des concerts du Conservatoire (Paris). Orchestre", "variant_access_point": ["Orchestre de la Société des concerts du Conservatoire (Paris)", "Conservatoire orchestre (Paris)", "Pariser Conservatoire-Orchester"], "authorized_access_point": "Société des concerts du Conservatoire (Paris). Orchestre"} 1 -2023-07-08 08:23:29.465779 2023-07-08 08:23:29.465786 a2958b37-f075-47c8-a6d5-fc3ff2b611e2 {"md5": "e92af08d7ba357d2607b1c549d47f093", "pid": "A000152802", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000152802", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000152802", "source": "RERO"}], "variant_name": ["International Society for Experimental Hematology"], "preferred_name": "Société internationale d'hématologie expérimentale", "variant_access_point": ["International Society for Experimental Hematology"], "authorized_access_point": "Société internationale d'hématologie expérimentale"} 1 -2023-07-08 08:23:29.600362 2023-07-08 08:23:29.600371 eb704c14-a704-4caf-a22e-1c53c8cfbad8 {"md5": "febcc2c0e6f651aa98312122224b628e", "pid": "A000156095", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000156095", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000156095", "source": "RERO"}], "variant_name": ["Musées de la Ville de Strasbourg", "Musées municipaux (Strasbourg)", "Strasbourg. Musées de la Ville de Strasbourg", "Strasbourg. Musées municipaux", "Musées de Strasbourg"], "preferred_name": "Strasbourg. Direction des musées", "variant_access_point": ["Musées de la Ville de Strasbourg", "Musées municipaux (Strasbourg)", "Strasbourg. Musées de la Ville de Strasbourg", "Strasbourg. Musées municipaux", "Musées de Strasbourg"], "authorized_access_point": "Strasbourg. Direction des musées"} 1 -2023-07-08 08:23:29.742321 2023-07-08 08:23:29.742333 d6594dcb-5978-4694-933e-1bfb3084b406 {"md5": "931ee043ebba5c40002ddea8bfc0c64a", "pid": "A000157703", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000157703", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000157703", "source": "RERO"}], "variant_name": ["OFEFP (Office fédéral de l'environnement, des forêts et du paysage : Suisse)", "BUWAL (Bundesamt für Umwelt, Wald und Landschaft : Suisse)", "Suisse. Bundesamt für Umwelt, Wald und Landschaft", "UFAFP (Ufficio federale dell'ambiente, delle foreste e del paesaggio : Suisse)", "Suisse. Ufficio federale dell'ambiente, delle foreste e del paesaggio", "Swiss Agency for the Environment, Forests and Landscape", "SAEFL (Swiss Agency for the Environment, Forests and Landscape)", "Suisse. Département fédéral des transports, des communications et de l'énergie. Bundesamt für Umwelt, Wald und Landschaft", "Suisse. Département fédéral des transports, des communications et de l'énergie. Ufficio federale dell'ambiente, delle foreste e del paesaggio", "Suisse. Département fédéral des transports, des communications et de l'énergie. Uffizi federal d'ambient, guaud e cuntrada", "Suisse. Département fédéral des transports, des communications et de l'énergie. Office fédéral de l'environnement, des forêts et du paysage", "Suisse. Département fédéral des transports, des communications et de l'énergie. Swiss Agency for the Environment, Forests and Landscape", "Suisse. Uffizi federal d'ambient, guaud e cuntrada", "Bundesamt für Umwelt, Wald und Landschaft (Suisse)", "Office fédéral de l'environnement, des forêts et du paysage (Suisse)", "UFAGC (Uffizi federal da l'ambient, dals guauds e da la cuntrada : Suisse)", "Ufficio federale dell'ambiente, delle foreste e del paesaggio (Suisse)", "Uffizi federal da l'ambient, dals guauds e da la cuntrada (Suisse)", "Uffizi federal d'ambient, guaud e cuntrada (Suisse)"], "preferred_name": "Suisse. Office fédéral de l'environnement, des forêts et du paysage", "variant_access_point": ["OFEFP (Office fédéral de l'environnement, des forêts et du paysage : Suisse)", "BUWAL (Bundesamt für Umwelt, Wald und Landschaft : Suisse)", "Suisse. Bundesamt für Umwelt, Wald und Landschaft", "UFAFP (Ufficio federale dell'ambiente, delle foreste e del paesaggio : Suisse)", "Suisse. Ufficio federale dell'ambiente, delle foreste e del paesaggio", "Swiss Agency for the Environment, Forests and Landscape", "SAEFL (Swiss Agency for the Environment, Forests and Landscape)", "Suisse. Département fédéral des transports, des communications et de l'énergie. Bundesamt für Umwelt, Wald und Landschaft", "Suisse. Département fédéral des transports, des communications et de l'énergie. Ufficio federale dell'ambiente, delle foreste e del paesaggio", "Suisse. Département fédéral des transports, des communications et de l'énergie. Uffizi federal d'ambient, guaud e cuntrada", "Suisse. Département fédéral des transports, des communications et de l'énergie. Office fédéral de l'environnement, des forêts et du paysage", "Suisse. Département fédéral des transports, des communications et de l'énergie. Swiss Agency for the Environment, Forests and Landscape", "Suisse. Uffizi federal d'ambient, guaud e cuntrada", "Bundesamt für Umwelt, Wald und Landschaft (Suisse)", "Office fédéral de l'environnement, des forêts et du paysage (Suisse)", "UFAGC (Uffizi federal da l'ambient, dals guauds e da la cuntrada : Suisse)", "Ufficio federale dell'ambiente, delle foreste e del paesaggio (Suisse)", "Uffizi federal da l'ambient, dals guauds e da la cuntrada (Suisse)", "Uffizi federal d'ambient, guaud e cuntrada (Suisse)"], "authorized_access_point": "Suisse. Office fédéral de l'environnement, des forêts et du paysage", "biographical_information": ["De 1985 à 1988, d'une part: Suisse. Office fédéral des forêts et de la protection du paysage", "De 1971-1988, d'autre part: Suisse. Office fédéral de la protection de l'environnement", "De 1989 à 2005, devient par fusion: Suisse. Office fédéral de l'environnement, des forêts et du paysage", "Dès 2006: Suisse. Office fédéral de l'environnement"]} 1 -2023-07-08 08:23:29.866966 2023-07-08 08:23:29.866978 473c868c-cc1b-453b-82d9-ca2417459e7f {"md5": "242e57a4e14cf37f99798cb5ee84cf9a", "pid": "A000171374", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000171374", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000171374", "source": "RERO"}], "variant_name": ["Veneto. Giunta regionale. Dipartimento per l'informazione"], "preferred_name": "Veneto. Dipartimento per l'informazione", "variant_access_point": ["Veneto. Giunta regionale. Dipartimento per l'informazione"], "authorized_access_point": "Veneto. Dipartimento per l'informazione"} 1 -2023-07-08 08:23:29.973663 2023-07-08 08:23:29.973676 c709e172-98f5-41f2-b0e1-37b04c80ba34 {"md5": "777e8709a6f43502ae6f2fd3c4a8c060", "pid": "A000176762", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A000176762", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000176762", "source": "RERO"}], "variant_name": ["Wills, Lourdes", "Rivera, Lourdes Wills"], "preferred_name": "Wills Rivera, Lourdes", "variant_access_point": ["Wills, Lourdes", "Rivera, Lourdes Wills"], "authorized_access_point": "Wills Rivera, Lourdes"} 1 -2023-07-08 08:23:30.088153 2023-07-08 08:23:30.088168 7044027d-0c33-414b-85b2-b4ca6d1d4bde {"md5": "e910488efc59a0e4c834c8714316f7a2", "pid": "A000181158", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A000181158", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000181158", "source": "RERO"}], "variant_name": ["Yiwuo, Zhai"], "preferred_name": "Zhai, Yiwuo", "variant_access_point": ["Yiwuo, Zhai"], "authorized_access_point": "Zhai, Yiwuo"} 1 -2023-07-08 08:23:30.202434 2023-07-08 08:23:30.202442 fc2142b0-dafd-44c2-a593-613d009e89f3 {"md5": "4d5283150d1847a380de4412a6f8d33f", "pid": "A000183008", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000183008", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000183008", "source": "RERO"}], "variant_name": ["University of California (Berkeley). Regional Oral History Office. Bancroft Library", "University of California (Berkeley). Bancroft Library"], "preferred_name": "Bancroft Library (Berkeley)", "variant_access_point": ["University of California (Berkeley). Regional Oral History Office. Bancroft Library", "University of California (Berkeley). Bancroft Library"], "authorized_access_point": "Bancroft Library (Berkeley)"} 1 -2023-07-08 08:23:30.316512 2023-07-08 08:23:30.316526 fdc7f7f4-6177-4361-b6f7-a9632f4b70dd {"md5": "60030ec9adaf85e6da184fe078eb229c", "pid": "A000183027", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000183027", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000183027", "source": "RERO"}], "variant_name": ["Deutsche Staatsbibliothek (DDR)", "Staatsbibliothek (DDR) (Berlin-Ost)", "Staatsbibliothek (DDR)"], "preferred_name": "Deutsche Staatsbibliothek (Berlin)", "variant_access_point": ["Deutsche Staatsbibliothek (DDR)", "Staatsbibliothek (DDR) (Berlin-Ost)", "Staatsbibliothek (DDR)"], "authorized_access_point": "Deutsche Staatsbibliothek (Berlin)", "biographical_information": ["De 1918 à 1945: Preussische Staatsbibliothek", "Avant 1918: Königliche Bibliothek (Preussen)", "De 1945 à 1961: Westdeutsche Bibliothek", "De 1954 au 31.12.1991: Deutsche Staatsbibliothek (DDR)", "De 1962 au 31.12.1991: Staatsbibliothek Preussischer Kulturbesitz (BRD)", "De 1945 à 1954: Öffentliche Wissenschaftliche Bibliothek (DDR)", "Dès le 1.1.1992: Staatsbibliothek (Berlin)"]} 1 -2023-07-08 08:23:30.426832 2023-07-08 08:23:30.426847 149f88db-e2c6-4fa2-9403-1192a102c570 {"md5": "bc2d9b0865b486e331dd9e4964fde8d4", "pid": "A000184256", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000184256", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000184256", "source": "RERO"}], "preferred_name": "Isabella Stewart Gardner Museum (Boston)", "authorized_access_point": "Isabella Stewart Gardner Museum (Boston)"} 1 -2023-07-08 08:23:30.540262 2023-07-08 08:23:30.540276 c23c2abf-e1b6-4a60-95d0-64e544959daf {"md5": "a61b4f72bf46f27de1e088bfd4083160", "pid": "A000185690", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000185690", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000185690", "source": "RERO"}], "preferred_name": "Musée Crozatier (Puy-en-Velay)", "authorized_access_point": "Musée Crozatier (Puy-en-Velay)"} 1 -2023-07-08 08:23:30.647001 2023-07-08 08:23:30.647013 79d44d73-c7c8-4fc0-8651-e511791fed31 {"md5": "ec29927f0dcb13507d3c28944119a0e8", "pid": "A000187213", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000187213", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000187213", "source": "RERO"}], "variant_name": ["Institute of East Asian Studies"], "preferred_name": "University of California (Berkeley). Institute of East Asian Studies", "variant_access_point": ["Institute of East Asian Studies"], "authorized_access_point": "University of California (Berkeley). Institute of East Asian Studies"} 1 -2023-07-08 08:23:30.772141 2023-07-08 08:23:30.772155 7edd0942-5263-429d-bdf1-abf76d02e679 {"md5": "1daf48fc0a4e5edd2792755cca08b63f", "pid": "A000187557", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000187557", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000187557", "source": "RERO"}], "variant_name": ["Istituto di filologia classica (Bologna)"], "preferred_name": "Università di Bologna. Istituto di filologia classica", "variant_access_point": ["Istituto di filologia classica (Bologna)"], "authorized_access_point": "Università di Bologna. Istituto di filologia classica"} 1 -2023-07-08 08:23:30.92193 2023-07-08 08:23:30.921944 42603e36-8920-4475-b17c-c894249be2aa {"md5": "6cd7bd3d3a84aecfe8e9ed687f10c88c", "pid": "A000189570", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000189570", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000189570", "source": "RERO"}], "variant_name": ["Law of the Sea Institute (University of Hawaii (Honolulu))", "University of Hawaii (Honolulu). William S. Richardson School of Law. Law of the Sea Institute"], "preferred_name": "University of Hawaii (Honolulu). Law of the Sea Institute", "variant_access_point": ["Law of the Sea Institute (University of Hawaii (Honolulu))", "University of Hawaii (Honolulu). William S. Richardson School of Law. Law of the Sea Institute"], "authorized_access_point": "University of Hawaii (Honolulu). Law of the Sea Institute", "biographical_information": ["Law of the Sea Institute fut lié à l'Université of Rhode Island jusqu'à 1977? et depuis à l'Université de Hawaii, William S. Richardson School of Law", "Avant 1977: University of Rhode Island. Law of the Sea Institute", "Dès 1977: University of Hawaii. Law of the Sea Institute"]} 1 -2023-07-08 08:23:32.369784 2023-07-08 08:23:32.369791 b0c7d5aa-c1d7-48f4-b96b-8f0cd260c397 {"md5": "15a836cfddda6032d8341dee9b2cb323", "pid": "A002929473", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A002929473", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002929473", "source": "RERO"}], "preferred_name": "Andreu, Rafael", "authorized_access_point": "Andreu, Rafael"} 1 -2023-07-08 08:23:31.061353 2023-07-08 08:23:31.061366 906081fd-1c18-4a7b-86c6-dc57f7bc988d {"md5": "01f9b77c607b546b5cd56f553619f7fc", "pid": "A000190495", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000190495", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000190495", "source": "RERO"}], "variant_name": ["Institute of Obstetrics and Gynaecology (London)"], "preferred_name": "University of London. Institute of Obstetrics and Gynaecology", "variant_access_point": ["Institute of Obstetrics and Gynaecology (London)"], "authorized_access_point": "University of London. Institute of Obstetrics and Gynaecology"} 1 -2023-07-08 08:23:31.167486 2023-07-08 08:23:31.167495 7f4171dc-0571-447f-97d9-a28de570b982 {"md5": "505049a6149c4bb3eee86cd4f4a64f2b", "pid": "A000193226", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000193226", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000193226", "source": "RERO"}], "variant_name": ["Universidad Nacional de Rosario. Facultad de Ciencias Exactas e Ingeniería. Instituto de Matemática Beppo Levi", "Instituto de Matemática Beppo Levi (Rosario, Argentina)"], "preferred_name": "Universidad Nacional de Rosario. Instituto de Matemática Beppo Levi", "variant_access_point": ["Universidad Nacional de Rosario. Facultad de Ciencias Exactas e Ingeniería. Instituto de Matemática Beppo Levi", "Instituto de Matemática Beppo Levi (Rosario, Argentina)"], "authorized_access_point": "Universidad Nacional de Rosario. Instituto de Matemática Beppo Levi"} 1 -2023-07-08 08:23:31.307547 2023-07-08 08:23:31.307559 4c25821e-5ad3-4c14-8959-a336326bad38 {"md5": "0926fffbf9a4549eac5659fdb69a2706", "pid": "A000193381", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000193381", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000193381", "source": "RERO"}], "variant_name": ["Università di Salerno"], "preferred_name": "Università degli studi di Salerno", "variant_access_point": ["Università di Salerno"], "authorized_access_point": "Università degli studi di Salerno"} 1 -2023-07-08 08:23:31.421536 2023-07-08 08:23:31.42155 5227666c-72ce-4ce2-8bc5-9de0eab0f812 {"md5": "c72d0bfb59394cd5d6024f158aaa23c4", "pid": "A000193605", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000193605", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000193605", "source": "RERO"}], "variant_name": ["Seminario de Antropología Americana (Sevilla)", "Universidad de Sevilla. Facultad de Filosofía y Letras. Departamento de Antropología y Etnología de América. Seminario de Antropología Americana", "Universidad de Sevilla. Departamento de Antropología y Etnología de América. Seminario de Antropología Americana"], "preferred_name": "Universidad de Sevilla. Seminario de Antropología Americana", "variant_access_point": ["Seminario de Antropología Americana (Sevilla)", "Universidad de Sevilla. Facultad de Filosofía y Letras. Departamento de Antropología y Etnología de América. Seminario de Antropología Americana", "Universidad de Sevilla. Departamento de Antropología y Etnología de América. Seminario de Antropología Americana"], "authorized_access_point": "Universidad de Sevilla. Seminario de Antropología Americana"} 1 -2023-07-08 08:23:31.537058 2023-07-08 08:23:31.537071 50f6b56c-dcef-4a5c-b209-68d21f886efe {"md5": "5d12946949929a80f1bdb73913784465", "pid": "A000194499", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A000194499", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000194499", "source": "RERO"}], "variant_name": ["Universidad Veracruzana. Instituto de Investigaciones Humanísticas. Centro de Investigaciones Lingüístico-Literarias", "Centro de Investigaciones Lingüístico-Literarias (Xalapa)", "CILL (Centro de Investigaciones Lingüístico-Literarias : Xalapa)"], "preferred_name": "Universidad Veracruzana. Centro de Investigaciones Lingüístico-Literarias", "variant_access_point": ["Universidad Veracruzana. Instituto de Investigaciones Humanísticas. Centro de Investigaciones Lingüístico-Literarias", "Centro de Investigaciones Lingüístico-Literarias (Xalapa)", "CILL (Centro de Investigaciones Lingüístico-Literarias : Xalapa)"], "authorized_access_point": "Universidad Veracruzana. Centro de Investigaciones Lingüístico-Literarias", "biographical_information": ["Cannot determine relationship to the University's Instituto de Investigaciones Literarias y Semiolingüísticas; and to its Instituto de Investigaciones Lingüístico-Literarias"]} 1 -2023-07-08 08:23:31.64864 2023-07-08 08:23:31.648655 df01d0d0-415b-49d0-a7ac-360c314f9403 {"md5": "2f760cbb049fd6a2ba2b8ff026303068", "pid": "A002910761", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A002910761", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002910761", "source": "RERO"}], "preferred_name": "Agazzini, Michel", "authorized_access_point": "Agazzini, Michel"} 1 -2023-07-08 08:23:31.77295 2023-07-08 08:23:31.772955 5d099133-4daa-4378-b0dc-8d7e2d0e5740 {"md5": "669530d35a9f75d41dc302fecfaf9913", "pid": "A002912942", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A002912942", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002912942", "source": "RERO"}], "preferred_name": "Aiken, Lewis R", "authorized_access_point": "Aiken, Lewis R"} 1 -2023-07-08 08:23:31.892762 2023-07-08 08:23:31.892775 ef18667b-4947-4140-889d-ced7faf3ed0a {"md5": "0ad216688a1677becce96918b1c6653a", "pid": "A002916477", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A002916477", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002916477", "source": "RERO"}], "preferred_name": "Albuschkat, Harald", "authorized_access_point": "Albuschkat, Harald"} 1 -2023-07-08 08:23:32.013305 2023-07-08 08:23:32.013317 010a51ba-2e87-49fc-8570-257573c1979f {"md5": "1d87951cd5ce0e469df6688cf5416cb7", "pid": "A002922214", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A002922214", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002922214", "source": "RERO"}], "preferred_name": "Altmeyer, Monika", "authorized_access_point": "Altmeyer, Monika"} 1 -2023-07-08 08:23:32.12486 2023-07-08 08:23:32.124877 5b975fe7-433d-4aef-a4e6-3dcc4804f0ad {"md5": "60cee36d323da64b58e78d592da74737", "pid": "A002922621", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A002922621", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002922621", "source": "RERO"}], "preferred_name": "Alver, Bente Gullveig", "authorized_access_point": "Alver, Bente Gullveig"} 1 -2023-07-08 08:23:32.485081 2023-07-08 08:23:32.48509 3bdd95cd-0114-4390-b960-8d18c7e2fc4e {"md5": "0095c1eb2b4c75789a3e4ba0ad8a418a", "pid": "A002931456", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A002931456", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002931456", "source": "RERO"}], "preferred_name": "Anjak, Faez", "authorized_access_point": "Anjak, Faez"} 1 -2023-07-08 08:23:32.583118 2023-07-08 08:23:32.583127 02fd644c-4ba7-4f58-a1a1-9687d5f14323 {"md5": "dd525329c313f6379417af4e11ac404e", "pid": "A002933956", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A002933956", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002933956", "source": "RERO"}], "preferred_name": "Apicella, Vincenzo", "authorized_access_point": "Apicella, Vincenzo"} 1 -2023-07-08 08:23:32.688548 2023-07-08 08:23:32.688556 614c57e5-0e7d-4eb4-850e-44ff68d0bf6b {"md5": "12ec0e2532279dc298c19075bfba5172", "pid": "A002939215", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A002939215", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002939215", "source": "RERO"}], "preferred_name": "Arnaud, Hélène", "authorized_access_point": "Arnaud, Hélène"} 1 -2023-07-08 08:23:32.826734 2023-07-08 08:23:32.826742 982300a0-388b-41f3-bb68-91acdbf44b5d {"md5": "f3006addc4f63fdc13d2c7762b9aecce", "pid": "A002939817", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A002939817", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002939817", "source": "RERO"}], "preferred_name": "Arnold, Gregory C", "authorized_access_point": "Arnold, Gregory C"} 1 -2023-07-08 08:23:32.926373 2023-07-08 08:23:32.926388 25635e0e-3f60-410b-9b00-351510e2e4c7 {"md5": "ec25cb54bf81a4be04a3138030e35679", "pid": "A002940438", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A002940438", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002940438", "source": "RERO"}], "preferred_name": "Aronoff, Mark", "authorized_access_point": "Aronoff, Mark"} 1 -2023-07-08 08:23:33.044967 2023-07-08 08:23:33.04498 892fd918-1e53-471c-a710-df88a482ec07 {"md5": "5f7552d9ff6c5bb1865d42772a1f2240", "pid": "A002940495", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A002940495", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002940495", "source": "RERO"}], "preferred_name": "Aronson, Robert H", "authorized_access_point": "Aronson, Robert H"} 1 -2023-07-08 08:23:33.166965 2023-07-08 08:23:33.166971 24ea813d-65d5-425f-b0f0-1a231f6c5eee {"md5": "1e658f28884025757836c82bcf622311", "pid": "A002941414", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A002941414", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002941414", "source": "RERO"}], "preferred_name": "Artioli, Umberto", "authorized_access_point": "Artioli, Umberto"} 1 -2023-07-08 08:23:33.274732 2023-07-08 08:23:33.274744 4575643b-cc45-4d5b-be31-6c240ee8bb8d {"md5": "8a167d4e31bb39b7cbe1401fb3ae4543", "pid": "A002941440", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A002941440", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002941440", "source": "RERO"}], "preferred_name": "Artl, Gerhard", "authorized_access_point": "Artl, Gerhard"} 1 -2023-07-08 08:23:33.396251 2023-07-08 08:23:33.396261 c4449d67-2580-4145-8134-c79e2cfc4114 {"md5": "267647535d019b7ba6d3a738f326ebf3", "pid": "A002942098", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A002942098", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002942098", "source": "RERO"}], "preferred_name": "Aschengreen, Franz", "authorized_access_point": "Aschengreen, Franz"} 1 -2023-07-08 08:23:33.513551 2023-07-08 08:23:33.513565 bee4582a-01e6-4fa3-864e-c061bafba15e {"md5": "2eea0fe349dcd3c273afbee089048d9c", "pid": "A002944324", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A002944324", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002944324", "source": "RERO"}], "preferred_name": "Association des amis de Marius Borgeaud (Lausanne)", "authorized_access_point": "Association des amis de Marius Borgeaud (Lausanne)"} 1 -2023-07-08 08:23:33.604467 2023-07-08 08:23:33.604481 9fbeefc0-8dac-46fc-95df-94ea7e8c4015 {"md5": "416efa1f32ce053add67e63207464d04", "pid": "A002947740", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A002947740", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002947740", "source": "RERO"}], "preferred_name": "Association pyrénéenne pour l'échange des plantes", "authorized_access_point": "Association pyrénéenne pour l'échange des plantes"} 1 -2023-07-08 08:23:33.731796 2023-07-08 08:23:33.731811 7cfa4f54-b8d8-41e6-a89d-b7e2b9c5c9de {"md5": "af80a059b9dd3d4adc0cf2b5c9e6596f", "pid": "A002953651", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A002953651", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002953651", "source": "RERO"}], "preferred_name": "Avdotine, L.N", "authorized_access_point": "Avdotine, L.N"} 1 -2023-07-08 08:23:33.870507 2023-07-08 08:23:33.870513 29b6ad9a-0c1b-4aca-b380-787d905e23b0 {"md5": "2eb8b4c3e5d66d923cb0ba2bb5b085ad", "pid": "A002955901", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A002955901", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002955901", "source": "RERO"}], "preferred_name": "Babb, Rober", "authorized_access_point": "Babb, Rober"} 1 -2023-07-08 08:23:33.981141 2023-07-08 08:23:33.981156 0d1c322f-e241-4e99-bea3-d1f581caaee7 {"md5": "d7da7b550360a1d83ac8023958a16cae", "pid": "A002961093", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A002961093", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002961093", "source": "RERO"}], "preferred_name": "Baillargeon, Guy", "authorized_access_point": "Baillargeon, Guy"} 1 -2023-07-08 08:23:34.086555 2023-07-08 08:23:34.086565 b4f434b0-d966-442d-9a7d-8fda41e34a1c {"md5": "7051425f0d217b8ae05f9010ba1b878b", "pid": "A002963001", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A002963001", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002963001", "source": "RERO"}], "preferred_name": "Baldi, Marialuisa", "authorized_access_point": "Baldi, Marialuisa"} 1 -2023-07-08 08:23:34.212219 2023-07-08 08:23:34.212237 8c1e4139-d3fc-4e87-9b01-93309c673dd0 {"md5": "f22ddf234c0aaf364385efd21a732601", "pid": "A002966255", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A002966255", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002966255", "source": "RERO"}], "preferred_name": "Banks, Tony", "authorized_access_point": "Banks, Tony"} 1 -2023-07-08 08:23:34.316748 2023-07-08 08:23:34.316761 825dce97-4a47-477b-938f-2d139bd44a72 {"md5": "72d60673918b9c41124229f855586176", "pid": "A002968314", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A002968314", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002968314", "source": "RERO"}], "preferred_name": "Barbizet, Jacques", "authorized_access_point": "Barbizet, Jacques"} 1 -2023-07-08 08:23:34.441279 2023-07-08 08:23:34.441294 1b74e922-ff81-41f9-b296-f6c73cbc5a94 {"md5": "55d804deae93f4052e065fa6411e83d6", "pid": "A002969933", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A002969933", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002969933", "source": "RERO"}], "preferred_name": "Barlow, Charles F", "authorized_access_point": "Barlow, Charles F"} 1 -2023-07-08 08:23:34.565358 2023-07-08 08:23:34.565371 e8bcc4f4-2c68-4fbc-9f13-7eee9d30e97f {"md5": "ce8b8fa4153bf3d1a695f087fdb24047", "pid": "A002971659", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A002971659", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002971659", "source": "RERO"}], "preferred_name": "Barrett-Ayres, Reginald", "authorized_access_point": "Barrett-Ayres, Reginald"} 1 -2023-07-08 08:23:34.703522 2023-07-08 08:23:34.703531 bf322407-5347-4f91-ae5c-f0431f98cb63 {"md5": "f4b1ac574bc2221e983a0fd84e71c31d", "pid": "A002979038", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A002979038", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002979038", "source": "RERO"}], "preferred_name": "Baur, J", "authorized_access_point": "Baur, J"} 1 -2023-07-08 08:23:34.844672 2023-07-08 08:23:34.844686 9b522df1-7dc9-47b9-894b-5f14f553f91e {"md5": "ef9682273b35eab5f8448428408ca0a6", "pid": "A002979177", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A002979177", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002979177", "source": "RERO"}], "preferred_name": "Bauschke, Erhard", "authorized_access_point": "Bauschke, Erhard"} 1 -2023-07-08 08:23:34.969117 2023-07-08 08:23:34.969128 d749cb4a-00ba-4999-8e22-2dd18d1eaae5 {"md5": "e61f9c9c929f675e9004c15d5ee1df71", "pid": "A002981392", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A002981392", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002981392", "source": "RERO"}], "preferred_name": "Beaujeu, Claude-Marie", "authorized_access_point": "Beaujeu, Claude-Marie"} 1 -2023-07-08 08:23:35.096302 2023-07-08 08:23:35.096317 55d3ccdc-7be1-4eff-9281-7b66ff989770 {"md5": "d3f5366a86b2c5d42352e8b7f7665e17", "pid": "A002981924", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A002981924", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002981924", "source": "RERO"}], "preferred_name": "Becaïa, Melchisedec", "authorized_access_point": "Becaïa, Melchisedec"} 1 -2023-07-08 08:23:35.248533 2023-07-08 08:23:35.248542 323be086-d1a9-498b-93bb-90a153453c4e {"md5": "c712dab3bddd60140739814e865e8548", "pid": "A002992084", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A002992084", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002992084", "source": "RERO"}], "preferred_name": "Benzoni, Gino", "authorized_access_point": "Benzoni, Gino"} 1 -2023-07-08 08:23:35.378211 2023-07-08 08:23:35.378228 99464997-d90b-4c6d-b35b-aaafd903b36c {"md5": "4bad69ca6b6a7b62a1f3baa4192c0181", "pid": "A002992522", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A002992522", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002992522", "source": "RERO"}], "preferred_name": "Berczy, M", "authorized_access_point": "Berczy, M"} 1 -2023-07-08 08:23:35.517347 2023-07-08 08:23:35.517358 d84205e7-956a-4688-8d29-857763202004 {"md5": "cde6ec2f0c147856c0540a5261da1f1e", "pid": "A002993107", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A002993107", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002993107", "source": "RERO"}], "preferred_name": "Berg, Stephan", "authorized_access_point": "Berg, Stephan"} 1 -2023-07-08 08:23:35.639574 2023-07-08 08:23:35.639582 0f31a26e-4a53-492a-a123-28a12a1f24f4 {"md5": "9f503914fa20901df12f71d72c6d99a3", "pid": "A003003384", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003003384", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003003384", "source": "RERO"}], "preferred_name": "Bharucha, Janine", "authorized_access_point": "Bharucha, Janine"} 1 -2023-07-08 08:23:35.754252 2023-07-08 08:23:35.754267 534c47f4-6622-47e3-9100-031dfd55a492 {"md5": "60c4ecab01838a5b689b87f228414957", "pid": "A003005276", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003005276", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003005276", "source": "RERO"}], "preferred_name": "Bielfeld, Horst", "authorized_access_point": "Bielfeld, Horst"} 1 -2023-07-08 08:23:35.874456 2023-07-08 08:23:35.874469 ad23b309-e841-4728-869a-2fceb89972f8 {"md5": "cc630a65499c87ebac41f7c1f8b4d7cf", "pid": "A003005486", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003005486", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003005486", "source": "RERO"}], "preferred_name": "Bienkowski, Mishka", "authorized_access_point": "Bienkowski, Mishka"} 1 -2023-07-08 08:23:35.984532 2023-07-08 08:23:35.984542 da63dd30-49d5-4fe9-94d1-c27100bf60c3 {"md5": "2be22fa2d3b477e895c5067e8070a832", "pid": "A003010065", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003010065", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003010065", "source": "RERO"}], "preferred_name": "Bitat, Amor", "authorized_access_point": "Bitat, Amor"} 1 -2023-07-08 08:23:37.88107 2023-07-08 08:23:37.881078 8e15c1d6-f728-4801-b64f-738d15bdcbe1 {"md5": "8188c67d5e67a72407198ae12ea48833", "pid": "A003055423", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003055423", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003055423", "source": "RERO"}], "preferred_name": "Bufalino, Gesualdo", "authorized_access_point": "Bufalino, Gesualdo"} 1 -2023-07-08 08:23:36.093417 2023-07-08 08:23:36.093428 408d4fb7-c418-4912-90c3-a480f907c488 {"md5": "7dab2ae9971d1c9a1775c22b7783669c", "pid": "A003013653", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003013653", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003013653", "source": "RERO"}], "preferred_name": "Bleinroth, Heinz-Christel", "authorized_access_point": "Bleinroth, Heinz-Christel"} 1 -2023-07-08 08:23:36.214248 2023-07-08 08:23:36.214261 f8cc6417-494e-4560-8af9-5d234b26aa1a {"md5": "718e1a3bea1ccdd51f841a0925edef73", "pid": "A003017126", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003017126", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003017126", "source": "RERO"}], "variant_name": ["Meinardus, Dietlind Bock-"], "preferred_name": "Bock-Meinardus, Dietlind", "variant_access_point": ["Meinardus, Dietlind Bock-"], "authorized_access_point": "Bock-Meinardus, Dietlind"} 1 -2023-07-08 08:23:36.319423 2023-07-08 08:23:36.319432 f7ccc925-bfb5-4ea7-951c-8578f1953c8c {"md5": "08a36156286287c230bad10f4020dcad", "pid": "A003019667", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003019667", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003019667", "source": "RERO"}], "preferred_name": "Boillat, Christian", "authorized_access_point": "Boillat, Christian"} 1 -2023-07-08 08:23:36.446184 2023-07-08 08:23:36.446198 391024a4-4b3a-48d5-abef-287bcb9a0bab {"md5": "e6642e5a69c23b7225335981db24db5f", "pid": "A003020410", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003020410", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003020410", "source": "RERO"}], "preferred_name": "Bokaleff, Hélène", "authorized_access_point": "Bokaleff, Hélène"} 1 -2023-07-08 08:23:36.561045 2023-07-08 08:23:36.561058 dafbb1e8-6fe5-4392-b526-82ea77fcf766 {"md5": "dbe6d7fc16f249eeec6599a39a612aa7", "pid": "A003021395", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A003021395", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003021395", "source": "RERO"}], "preferred_name": "Bologna. Assessorato alla cultura", "authorized_access_point": "Bologna. Assessorato alla cultura"} 1 -2023-07-08 08:23:36.681279 2023-07-08 08:23:36.681294 a43bcbc5-45db-4d5a-a07c-76ff8e996dc8 {"md5": "a06338f4a5e2dda48dcc7c20f063f2cd", "pid": "A003024732", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003024732", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003024732", "source": "RERO"}], "preferred_name": "Bonín, José María", "authorized_access_point": "Bonín, José María"} 1 -2023-07-08 08:23:36.801658 2023-07-08 08:23:36.801671 a78b108e-b20c-41ed-aa17-76337b8c338b {"md5": "f8ea7d6b044ec602ff6082b208024296", "pid": "A003028730", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003028730", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003028730", "source": "RERO"}], "preferred_name": "Bosshard, Heinrich", "authorized_access_point": "Bosshard, Heinrich"} 1 -2023-07-08 08:23:36.908767 2023-07-08 08:23:36.908779 aa1b9008-e228-463f-bd39-226311a357b7 {"md5": "d011520876b43d857f00773e6462fe25", "pid": "A003031223", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003031223", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003031223", "source": "RERO"}], "preferred_name": "Bouligand, Yves", "authorized_access_point": "Bouligand, Yves"} 1 -2023-07-08 08:23:37.018532 2023-07-08 08:23:37.018537 e08f6317-4cfe-48c4-8ba8-c4a8451a0f60 {"md5": "719416962b8f137b1eeb0aa08a4c6655", "pid": "A003037757", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003037757", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003037757", "source": "RERO"}], "preferred_name": "Brandes-Druba, Bernd", "authorized_access_point": "Brandes-Druba, Bernd"} 1 -2023-07-08 08:23:37.137166 2023-07-08 08:23:37.137179 9c7f9642-7e81-41d3-a930-af2b385ff9fd {"md5": "2b87062f601abf869087953fb17ef925", "pid": "A003037886", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003037886", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003037886", "source": "RERO"}], "preferred_name": "Brandolin, Mario", "authorized_access_point": "Brandolin, Mario"} 1 -2023-07-08 08:23:37.252307 2023-07-08 08:23:37.252319 63c61a2b-d18f-45a4-80f6-98605e745c1f {"md5": "6bddf0b42bf2756bcc8cd36ec19096d1", "pid": "A003042099", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003042099", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003042099", "source": "RERO"}], "preferred_name": "Bretécher, Claire", "authorized_access_point": "Bretécher, Claire"} 1 -2023-07-08 08:23:37.349825 2023-07-08 08:23:37.349839 40b45157-7b86-44e7-9b1a-389b54e21414 {"md5": "16ce139c0a12e0b36122d53398f9fedf", "pid": "A003042520", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003042520", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003042520", "source": "RERO"}], "preferred_name": "Breznitz, Sholomo", "authorized_access_point": "Breznitz, Sholomo"} 1 -2023-07-08 08:23:37.487619 2023-07-08 08:23:37.48763 8ee95cf2-b275-4be4-a794-c630d650c6fb {"md5": "77063d12d70236b22080a915c5263f94", "pid": "A003048129", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003048129", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003048129", "source": "RERO"}], "preferred_name": "Brown, George Isaac", "authorized_access_point": "Brown, George Isaac"} 1 -2023-07-08 08:23:37.615542 2023-07-08 08:23:37.615553 d51dbf21-35bf-4c72-bf28-3efd4b75d2ed {"md5": "21cec1216c53b9eb0927ef14077a6de8", "pid": "A003050459", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003050459", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003050459", "source": "RERO"}], "preferred_name": "Brunel, Bernard", "authorized_access_point": "Brunel, Bernard"} 1 -2023-07-08 08:23:37.753447 2023-07-08 08:23:37.753457 ff31aa5d-e66a-42a3-92f4-0b927512640e {"md5": "41538e0f0836243168ee52268d316e88", "pid": "A003055215", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003055215", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003055215", "source": "RERO"}], "preferred_name": "Buenemann, Gerd", "authorized_access_point": "Buenemann, Gerd"} 1 -2023-07-08 08:23:38.003458 2023-07-08 08:23:38.003469 4b7eda95-f626-4c83-981f-e90908bdc6db {"md5": "0965ac927584984dccbdf53b7e4b83ec", "pid": "A003061439", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003061439", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003061439", "source": "RERO"}], "preferred_name": "Buss, Samuel R", "authorized_access_point": "Buss, Samuel R"} 1 -2023-07-08 08:23:38.120526 2023-07-08 08:23:38.120537 41d48299-0c87-43cc-8243-7888366818c7 {"md5": "b77c3bc6f8a7b5b42bf3070b6eca7d46", "pid": "A003061455", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003061455", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003061455", "source": "RERO"}], "preferred_name": "Bussani, Giacomo Francesco", "authorized_access_point": "Bussani, Giacomo Francesco"} 1 -2023-07-08 08:23:38.232431 2023-07-08 08:23:38.232442 c93c5d2c-c4d8-47a4-a805-a2af0c5bfc7f {"md5": "934b296b166fc0eef636ab9b5842b4e8", "pid": "A003063890", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003063890", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003063890", "source": "RERO"}], "preferred_name": "Böckmann, Ludwig", "authorized_access_point": "Böckmann, Ludwig"} 1 -2023-07-08 08:23:38.335529 2023-07-08 08:23:38.335539 8199d31d-9af5-4436-bf8f-783699601206 {"md5": "e276685b601441f7685d1242712d815b", "pid": "A003064605", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003064605", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003064605", "source": "RERO"}], "preferred_name": "Böttcher, Albrecht", "authorized_access_point": "Böttcher, Albrecht"} 1 -2023-07-08 08:23:38.448789 2023-07-08 08:23:38.448805 849abb5e-3df0-4f91-9379-6d718b9701c4 {"md5": "69377a0996cf8cb5dc74bcf40c7b39c7", "pid": "A003065345", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003065345", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003065345", "source": "RERO"}], "preferred_name": "Bürer, Catherine", "authorized_access_point": "Bürer, Catherine"} 1 -2023-07-08 08:23:38.583573 2023-07-08 08:23:38.583583 87695f15-950b-4bf6-96b5-d8ac855c93cd {"md5": "c3c4e78f264d865908fb22d8ba1f8bcb", "pid": "A003066204", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003066204", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003066204", "source": "RERO"}], "preferred_name": "Béguin, Christine", "authorized_access_point": "Béguin, Christine"} 1 -2023-07-08 08:23:38.717204 2023-07-08 08:23:38.717217 35bfc929-4683-47e3-907a-76f0750172c9 {"md5": "1a98a8912f9c9013c0048097a52b8b20", "pid": "A003077749", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003077749", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003077749", "source": "RERO"}], "preferred_name": "Carlson, Sven H", "authorized_access_point": "Carlson, Sven H"} 1 -2023-07-08 08:23:38.867268 2023-07-08 08:23:38.86728 6ba19cf0-5d46-459f-82fa-60fd2d1c39a6 {"md5": "faf9ebd3488f122273d0a1fc251bae10", "pid": "A003080186", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003080186", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003080186", "source": "RERO"}], "preferred_name": "Carter, Bob", "authorized_access_point": "Carter, Bob"} 1 -2023-07-08 08:23:38.981689 2023-07-08 08:23:38.981696 559ddd91-340b-4323-bbb3-43f49ed8cce1 {"md5": "bad72d53c6fdf8362d6f65f3d36ad3d6", "pid": "A003082787", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003082787", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003082787", "source": "RERO"}], "preferred_name": "Castella, Georges", "authorized_access_point": "Castella, Georges"} 1 -2023-07-08 08:23:39.084043 2023-07-08 08:23:39.084055 a6412167-0216-4145-9321-3c4906b223c9 {"md5": "bc127dc734b6eb0433678124a79d6b43", "pid": "A003084316", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003084316", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003084316", "source": "RERO"}], "preferred_name": "Cattaneo, Aldo", "authorized_access_point": "Cattaneo, Aldo"} 1 -2023-07-08 08:23:39.228214 2023-07-08 08:23:39.228225 25a39d22-a5b6-46e8-b97b-bf4c84f3dcda {"md5": "baf6b32dda432ed416070dba0f1cd19f", "pid": "A003085874", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003085874", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003085874", "source": "RERO"}], "preferred_name": "Cazenave, Philippe", "authorized_access_point": "Cazenave, Philippe"} 1 -2023-07-08 08:23:39.349027 2023-07-08 08:23:39.34904 bc46d3bf-48a3-427e-886b-bd54cde11a11 {"md5": "a1bb6b2487e2e308989b0c3bd5c81e35", "pid": "A003086097", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003086097", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003086097", "source": "RERO"}], "preferred_name": "Ceccaroni, Sandro", "authorized_access_point": "Ceccaroni, Sandro"} 1 -2023-07-08 08:23:39.480932 2023-07-08 08:23:39.480948 a35db46f-6efb-4ae7-bd31-b9a659e5696f {"md5": "25a4487a658a3ba82182b29471e4d5d3", "pid": "A003086874", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A003086874", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003086874", "source": "RERO"}], "preferred_name": "Center for International Media Research (Netherlands)", "authorized_access_point": "Center for International Media Research (Netherlands)"} 1 -2023-07-08 08:23:39.589524 2023-07-08 08:23:39.589535 6c2796b4-6f65-4b97-b2da-a6cd16151eb9 {"md5": "d38c807bbb5d8b53ae9cc4e2b30d6a44", "pid": "A003089906", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A003089906", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003089906", "source": "RERO"}], "preferred_name": "Centro di cultura e storia amalfitana (Amalfi)", "authorized_access_point": "Centro di cultura e storia amalfitana (Amalfi)"} 1 -2023-07-08 08:23:39.73914 2023-07-08 08:23:39.739151 d5671157-f0c9-4370-a35d-b13b5545960d {"md5": "953f0b7d7cb7bf092676931700777131", "pid": "A003093098", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003093098", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003093098", "source": "RERO"}], "preferred_name": "Chalmers, Deirdre", "authorized_access_point": "Chalmers, Deirdre"} 1 -2023-07-08 08:23:39.866207 2023-07-08 08:23:39.866217 123e80b0-bddd-428c-b642-141b1d823381 {"md5": "849e9e48dc0e9e617f563731ea97f558", "pid": "A003093717", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A003093717", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003093717", "source": "RERO"}], "preferred_name": "Chambre syndicale des sociétés d'études et de conseils. Section Organisation et formation (Paris)", "authorized_access_point": "Chambre syndicale des sociétés d'études et de conseils. Section Organisation et formation (Paris)"} 1 -2023-07-08 08:23:39.997353 2023-07-08 08:23:39.997365 db576743-aa97-4875-9252-af14a20df36b {"md5": "85e8a9bd4cde44cb3374a1beb904e619", "pid": "A003094768", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003094768", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003094768", "source": "RERO"}], "preferred_name": "Chang, Tien Ming", "authorized_access_point": "Chang, Tien Ming"} 1 -2023-07-08 08:23:40.133781 2023-07-08 08:23:40.133793 6c543af5-3303-42bc-8f88-73a4802ff205 {"md5": "214175d07a97e5856eb9e9bcd57cd035", "pid": "A003094880", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003094880", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003094880", "source": "RERO"}], "preferred_name": "Chansler, John F", "authorized_access_point": "Chansler, John F"} 1 -2023-07-08 08:23:40.271061 2023-07-08 08:23:40.271071 0a951ac9-e2ed-48a1-97cd-5f417b3d657e {"md5": "b29dc2bc7245f081f525c43569cbb8aa", "pid": "A003096778", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003096778", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003096778", "source": "RERO"}], "preferred_name": "Charnin Mueller, Rena", "authorized_access_point": "Charnin Mueller, Rena"} 1 -2023-07-08 08:23:40.40447 2023-07-08 08:23:40.404475 fc6d7b9e-92a3-4b08-8ee9-63fb4a0f4a6c {"md5": "292d0285e8acd2941e171997438b8b0f", "pid": "A003098919", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003098919", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003098919", "source": "RERO"}], "preferred_name": "Chavance, René", "authorized_access_point": "Chavance, René"} 1 -2023-07-08 08:23:40.509922 2023-07-08 08:23:40.509938 e6299683-4124-4eb8-ab1a-69e908f40ab7 {"md5": "909d60c94970c03789ea8554bdef600d", "pid": "A003099881", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003099881", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003099881", "source": "RERO"}], "preferred_name": "Chen, Selma Shu-Mei", "authorized_access_point": "Chen, Selma Shu-Mei"} 1 -2023-07-08 08:23:40.635464 2023-07-08 08:23:40.635475 9d09c86a-dbc0-4aba-91de-3734ba4521bd {"md5": "9f0a57468ed670e3f560f4f632a5957e", "pid": "A003100597", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003100597", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003100597", "source": "RERO"}], "preferred_name": "Cherry, Steven", "authorized_access_point": "Cherry, Steven"} 1 -2023-07-08 08:23:40.755565 2023-07-08 08:23:40.755578 3d2b1f44-6e2a-4e27-9650-769b4f7352fb {"md5": "1c58ae406439418080b73d92be4299a6", "pid": "A003101806", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003101806", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003101806", "source": "RERO"}], "preferred_name": "Chiarini, Claude", "authorized_access_point": "Chiarini, Claude"} 1 -2023-07-08 08:23:40.879954 2023-07-08 08:23:40.879969 02dc4a76-cd2a-4c10-9908-b17f7212d45f {"md5": "62e2d33ecabb1f4fa5d9670be5545c0b", "pid": "A003103435", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003103435", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003103435", "source": "RERO"}], "preferred_name": "Choate, Joseph H", "authorized_access_point": "Choate, Joseph H"} 1 -2023-07-08 08:23:41.00241 2023-07-08 08:23:41.002421 3e71b9a1-c222-4182-994e-b7807930a883 {"md5": "ff91d90717807f02bb55f073e774698a", "pid": "A003103659", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A003103659", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003103659", "source": "RERO"}], "variant_name": ["Choeur mixte (Estavayer-le-Gibloux)"], "preferred_name": "Choeur mixte paroissial (Estavayer-le-Gibloux)", "variant_access_point": ["Choeur mixte (Estavayer-le-Gibloux)"], "authorized_access_point": "Choeur mixte paroissial (Estavayer-le-Gibloux)"} 1 -2023-07-08 08:23:41.135283 2023-07-08 08:23:41.135296 7df43f39-94b2-42f2-8d90-160750595194 {"md5": "e4a02921412e97ffd3d3da5aa64a4ba2", "pid": "A003104849", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003104849", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003104849", "source": "RERO"}], "preferred_name": "Christ, Isabelle", "authorized_access_point": "Christ, Isabelle"} 1 -2023-07-08 08:23:41.253519 2023-07-08 08:23:41.253524 cfa73563-11a2-4c01-9585-02774b231e68 {"md5": "583b6c89f74107aa05ee509779a26734", "pid": "A003111864", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003111864", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003111864", "source": "RERO"}], "preferred_name": "Cloonan, Michèle Valerie", "authorized_access_point": "Cloonan, Michèle Valerie"} 1 -2023-07-08 08:23:41.37147 2023-07-08 08:23:41.371478 ab105eb9-a252-474a-b98c-e1f2a8e3f712 {"md5": "b205a5a8f68780e966e8b145cd1eeaee", "pid": "A003112356", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A003112356", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003112356", "source": "RERO"}], "preferred_name": "Club suisse des chefs de vente et de marketing. Gruppo Ticino", "authorized_access_point": "Club suisse des chefs de vente et de marketing. Gruppo Ticino"} 1 -2023-07-08 08:23:41.476087 2023-07-08 08:23:41.476102 668fd537-fbd2-46e6-9314-56e7a3736ca2 {"md5": "9cb2e1c9025a700ffc58fb82186f63ea", "pid": "A003113657", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003113657", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003113657", "source": "RERO"}], "preferred_name": "Codrington, Oliver", "authorized_access_point": "Codrington, Oliver"} 1 -2023-07-08 08:23:41.580316 2023-07-08 08:23:41.580331 faf2bd46-5131-4e81-acd6-c1f21b32cff0 {"md5": "2f0e3e359fc36b42976bca8fe0f6768a", "pid": "A003114032", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003114032", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003114032", "source": "RERO"}], "preferred_name": "Coghlan, Ronan", "authorized_access_point": "Coghlan, Ronan"} 1 -2023-07-08 08:23:41.681114 2023-07-08 08:23:41.681126 6892b4ef-5c09-46bd-b95f-97d46c4c3bce {"md5": "9a918f5a71a7cdcf32a0a8a861ac50c0", "pid": "A003114105", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003114105", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003114105", "source": "RERO"}], "preferred_name": "Cogo, Annalisa", "authorized_access_point": "Cogo, Annalisa"} 1 -2023-07-08 08:23:41.781459 2023-07-08 08:23:41.781466 957f8fb2-b59a-42ab-a4cc-1fee6bfcc68f {"md5": "fb34438e9dfa36b30d5a3ebb7245c805", "pid": "A003114110", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003114110", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003114110", "source": "RERO"}], "preferred_name": "Cogotti, Marina", "authorized_access_point": "Cogotti, Marina"} 1 -2023-07-08 08:23:41.920996 2023-07-08 08:23:41.921007 d4dac554-8388-4248-9e8f-2d49c588eb52 {"md5": "2667d89d775d25a42f0b6671df09ece5", "pid": "A003116989", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003116989", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003116989", "source": "RERO"}], "preferred_name": "Collins, Joseph Burns", "authorized_access_point": "Collins, Joseph Burns"} 1 -2023-07-08 08:23:42.042979 2023-07-08 08:23:42.042996 76a07063-2bb3-4112-b8d0-e771fc5ad1f7 {"md5": "ee569bf7e84f2aa910b37938f7441ca8", "pid": "A003121026", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003121026", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003121026", "source": "RERO"}], "preferred_name": "Combray, Richard de", "authorized_access_point": "Combray, Richard de"} 1 -2023-07-08 08:23:42.177757 2023-07-08 08:23:42.177768 8030e6b6-ea1a-4e8d-9ee3-c74f883e5881 {"md5": "ca7eb17e1e7cd194d501fc76c2da8b8a", "pid": "A003121313", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A003121313", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003121313", "source": "RERO"}], "preferred_name": "Comitato nazionale italiano per le arti popolari", "authorized_access_point": "Comitato nazionale italiano per le arti popolari"} 1 -2023-07-08 08:23:42.353424 2023-07-08 08:23:42.353435 01967b98-6788-475a-9d9b-03cff8e1ce06 {"md5": "d72d75f96bf07be7f725f236fc6bf479", "pid": "A003122042", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A003122042", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003122042", "source": "RERO"}], "preferred_name": "Comité pour la sauvegarde de l'Ariana (Genève)", "authorized_access_point": "Comité pour la sauvegarde de l'Ariana (Genève)"} 1 -2023-07-08 08:23:42.484975 2023-07-08 08:23:42.484987 2d07f928-44c1-4e6b-bbd0-1fa2519433c6 {"md5": "10589572a86614dd6d1a30086cacb3df", "pid": "A003122713", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A003122713", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003122713", "source": "RERO"}], "preferred_name": "Committee on Urban Public Economics (USA). Conference (1977?)", "authorized_access_point": "Committee on Urban Public Economics (USA). Conference (1977?)"} 1 -2023-07-08 08:23:42.61498 2023-07-08 08:23:42.614986 5a5f653e-fa62-4f62-8ba2-56003e68a80f {"md5": "0c33073db233d7ab73fdcd8fac3ab52a", "pid": "A003123930", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A003123930", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003123930", "source": "RERO"}], "preferred_name": "Concertgebouw Orkest (Amsterdam). Koor", "authorized_access_point": "Concertgebouw Orkest (Amsterdam). Koor"} 1 -2023-07-08 08:23:42.717332 2023-07-08 08:23:42.717347 a98987e2-9fa7-4ac6-b852-4feaed226f17 {"md5": "d0979adf6459a7c2f06b75810feae71a", "pid": "A003131969", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003131969", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003131969", "source": "RERO"}], "preferred_name": "Continati, Dolores", "authorized_access_point": "Continati, Dolores"} 1 -2023-07-08 08:23:42.837825 2023-07-08 08:23:42.837837 de32f34b-6418-4c19-87ca-06f9604bc87e {"md5": "16f4aa83a19c911fa4ce11554d6dcf1b", "pid": "A003132079", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003132079", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003132079", "source": "RERO"}], "preferred_name": "Contri, Giacomo", "authorized_access_point": "Contri, Giacomo"} 1 -2023-07-08 08:23:42.967462 2023-07-08 08:23:42.967469 b55c032e-7584-4883-a71b-0da1bdfa3bdc {"md5": "134536c8b0f10aa6f7f1b67ae3a300bd", "pid": "A003134703", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003134703", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003134703", "source": "RERO"}], "preferred_name": "Corbaz, Etienne", "authorized_access_point": "Corbaz, Etienne"} 1 -2023-07-08 08:23:43.075082 2023-07-08 08:23:43.075092 c6929cc2-d4df-450b-bee8-08e39ab6c124 {"md5": "29429619e13bacc817097c907c8ee0b2", "pid": "A003136891", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A003136891", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003136891", "source": "RERO"}], "preferred_name": "Corse (région). Direction régionale des antiquités", "authorized_access_point": "Corse (région). Direction régionale des antiquités"} 1 -2023-07-08 08:23:43.219245 2023-07-08 08:23:43.219252 144e56ad-d50c-4064-94da-d8150a63b28a {"md5": "16c316e2fc088d0100c3f51c14d7056f", "pid": "A003141286", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003141286", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003141286", "source": "RERO"}], "preferred_name": "Coward, Harold G", "authorized_access_point": "Coward, Harold G"} 1 -2023-07-08 08:23:43.349078 2023-07-08 08:23:43.349086 05fa9298-6760-4dad-92ec-a4a8371dd49a {"md5": "629831a8a03f5ec1d88d5e3f463ac3cb", "pid": "A003141352", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003141352", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003141352", "source": "RERO"}], "preferred_name": "Cowen, Philip A", "authorized_access_point": "Cowen, Philip A"} 1 -2023-07-08 08:23:43.485897 2023-07-08 08:23:43.485907 dd6fe312-d9b0-4589-a274-a5d4c48e7361 {"md5": "2419308aad1d548742c77c3eb8c9b535", "pid": "A003142207", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003142207", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003142207", "source": "RERO"}], "date_of_birth": "1959", "preferred_name": "Cramatte, Jean-Luc,", "authorized_access_point": "Cramatte, Jean-Luc, 1959-", "biographical_information": ["Photographe suisse, fondateur de l'agence Freenews"]} 1 -2023-07-08 08:23:43.614528 2023-07-08 08:23:43.614542 fb27cf64-dd5e-4536-bf6c-e3ab185afe78 {"md5": "4756d9205fba24aba299e6fefef6538d", "pid": "A003145194", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003145194", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003145194", "source": "RERO"}], "preferred_name": "Croubalian, Mélanie", "authorized_access_point": "Croubalian, Mélanie"} 1 -2023-07-08 08:23:43.750386 2023-07-08 08:23:43.750392 172a9f99-8474-4784-ae1e-fba1474fbd7b {"md5": "200fa44bfdc76215abccf9421aa84936", "pid": "A003145393", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A003145393", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003145393", "source": "RERO"}], "preferred_name": "Crowell [and] Moring", "authorized_access_point": "Crowell [and] Moring"} 1 -2023-07-08 08:23:43.859223 2023-07-08 08:23:43.859229 d8a383fa-ee3b-4681-9455-3fe611b7da54 {"md5": "462ea8aecc83e6a8a19f9a20ef912525", "pid": "A003146897", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003146897", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003146897", "source": "RERO"}], "preferred_name": "Cullen, Gordon", "authorized_access_point": "Cullen, Gordon"} 1 -2023-07-08 08:23:43.959679 2023-07-08 08:23:43.959684 26bcdc1a-346e-4578-b567-87f866314253 {"md5": "615766bfcacea9b965a526b660e6c21d", "pid": "A003149155", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A003149155", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003149155", "source": "RERO"}], "preferred_name": "Czechoslovak Society for Science and Technique", "authorized_access_point": "Czechoslovak Society for Science and Technique"} 1 -2023-07-08 08:23:44.043574 2023-07-08 08:23:44.043579 e5d5972d-58c3-469e-8d5e-ceba6900522e {"md5": "a3d5337bb00a6fd21d00cf722369b101", "pid": "A003149182", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003149182", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003149182", "source": "RERO"}], "preferred_name": "Czempin, Thomas", "authorized_access_point": "Czempin, Thomas"} 1 -2023-07-08 08:23:44.138875 2023-07-08 08:23:44.138886 91b6d4a9-5274-47dd-96d9-db9186846fa2 {"md5": "0fafcb452b3d33e3fecb0e627b03f67d", "pid": "A003149832", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003149832", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003149832", "source": "RERO"}], "preferred_name": "Căpuşe, Iosif", "authorized_access_point": "Căpuşe, Iosif"} 1 -2023-07-08 08:23:44.233191 2023-07-08 08:23:44.233202 5e8096a1-f2f4-4b53-aea8-bfe4ab2e2b45 {"md5": "d6a3ba2a7f13ad090fe9927bd48b3544", "pid": "A003150269", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003150269", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003150269", "source": "RERO"}], "preferred_name": "D'Egmond, Balthasar", "authorized_access_point": "D'Egmond, Balthasar"} 1 -2023-07-08 08:23:44.364953 2023-07-08 08:23:44.364963 47cc8f85-9cd9-457a-8caf-3c4df444d90a {"md5": "25c032a1c5b0a2618beab56cc4ec79eb", "pid": "A003151816", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003151816", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003151816", "source": "RERO"}], "preferred_name": "Daka, Marie", "authorized_access_point": "Daka, Marie"} 1 -2023-07-08 08:23:44.486122 2023-07-08 08:23:44.486132 cce8e953-0565-4c07-8c04-604e3ed8a98f {"md5": "77c74f230e72474616c03d2a573b957b", "pid": "A003154955", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003154955", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003154955", "source": "RERO"}], "preferred_name": "Darcy, Henry-Philibert-Gaspard", "authorized_access_point": "Darcy, Henry-Philibert-Gaspard"} 1 -2023-07-08 08:23:44.574731 2023-07-08 08:23:44.574736 7b0c4152-e8b7-47aa-abc4-dc2ed2ad525e {"md5": "09378b191ff0f39295e30eca78379704", "pid": "A003155460", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003155460", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003155460", "source": "RERO"}], "preferred_name": "Darrieux, Jessa", "authorized_access_point": "Darrieux, Jessa"} 1 -2023-07-08 08:23:44.666193 2023-07-08 08:23:44.666199 95ec9aa2-12bf-447f-8648-9e77b1b85532 {"md5": "2f4dd3a9a608b8810a54390dc78f50e5", "pid": "A003155524", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003155524", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003155524", "source": "RERO"}], "preferred_name": "Darst, Melanie", "authorized_access_point": "Darst, Melanie"} 1 -2023-07-08 08:23:44.757915 2023-07-08 08:23:44.757922 3f1919ae-eada-44a6-be43-2664d443d924 {"md5": "a352d74bb41e8e13752c952cc0c51df6", "pid": "A003159779", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003159779", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003159779", "source": "RERO"}], "preferred_name": "De Faveri, Lydia", "authorized_access_point": "De Faveri, Lydia"} 1 -2023-07-08 08:23:44.863206 2023-07-08 08:23:44.863214 07b63b07-6dd7-4b53-870a-f877d453f3db {"md5": "ef46c535c46bc57f20fb69d9096232c2", "pid": "A003162783", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003162783", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003162783", "source": "RERO"}], "preferred_name": "Dechartres, Charles", "authorized_access_point": "Dechartres, Charles"} 1 -2023-07-08 08:23:44.975017 2023-07-08 08:23:44.975022 e7247e6a-a056-4fc1-9864-3ba62ca080a7 {"md5": "0f9b9a97f1121c8ce77a6951329fda2c", "pid": "A003170262", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003170262", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003170262", "source": "RERO"}], "preferred_name": "Depelchin, Jacques", "authorized_access_point": "Depelchin, Jacques"} 1 -2023-07-08 08:23:45.072035 2023-07-08 08:23:45.07204 f4e081ad-6ea6-4382-88d6-a92454267835 {"md5": "70cb92890d4b5e6c3108d983428249cc", "pid": "A003171170", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003171170", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003171170", "source": "RERO"}], "preferred_name": "Dertouzos, James N", "authorized_access_point": "Dertouzos, James N"} 1 -2023-07-08 08:23:45.173392 2023-07-08 08:23:45.173398 4e01cdf3-ff7f-4190-832c-8149c033edca {"md5": "3e477f4e5c10bfd76913366a2a3cd674", "pid": "A003172151", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003172151", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003172151", "source": "RERO"}], "preferred_name": "DeSeve, G. Edward", "authorized_access_point": "DeSeve, G. Edward"} 1 -2023-07-08 08:23:45.264177 2023-07-08 08:23:45.264182 25e74422-b6ed-4623-9c0b-3f8f17179dba {"md5": "e8bb13b601f4af5ff821e433d14b9bc4", "pid": "A003172474", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003172474", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003172474", "source": "RERO"}], "preferred_name": "Deslarzes, Béatrice", "authorized_access_point": "Deslarzes, Béatrice"} 1 -2023-07-08 08:23:45.346981 2023-07-08 08:23:45.346985 d5f07ba4-de04-4c3b-ad58-dff3fee94aaa {"md5": "38395d445887bcafdbc24475c9e03081", "pid": "A003173240", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003173240", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003173240", "source": "RERO"}], "preferred_name": "Dessoulavy, Denis", "authorized_access_point": "Dessoulavy, Denis"} 1 -2023-07-08 08:23:45.424826 2023-07-08 08:23:45.424831 d507519d-930f-4203-8090-44e53bd0b6d9 {"md5": "931c154d8013800e9494b19a30644908", "pid": "A003177980", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003177980", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003177980", "source": "RERO"}], "preferred_name": "Di Sarro, Thierry", "authorized_access_point": "Di Sarro, Thierry"} 1 -2023-07-08 08:23:45.503993 2023-07-08 08:23:45.503999 9edabfa7-82e5-471d-99f2-533b677639ad {"md5": "a4aed6800948bcd8011eeef34857a408", "pid": "A003178146", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003178146", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003178146", "source": "RERO"}], "preferred_name": "Diagne, Mouhamadou", "authorized_access_point": "Diagne, Mouhamadou"} 1 -2023-07-08 08:23:45.580169 2023-07-08 08:23:45.580173 fdc247b3-649c-45e7-b2a8-d0fc91c7e4f7 {"md5": "6a19adf3ee2332b902bb02e097234eba", "pid": "A003179452", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003179452", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003179452", "source": "RERO"}], "preferred_name": "Diedrichs, Raffaella", "authorized_access_point": "Diedrichs, Raffaella"} 1 -2023-07-08 08:23:45.684435 2023-07-08 08:23:45.68444 4a7306b1-e572-490c-ad19-23f278f4b425 {"md5": "ff27b183f83fea3bebed1a65f182fab5", "pid": "A003182838", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A003182838", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003182838", "source": "RERO"}], "preferred_name": "Divertimento Vocale (Fribourg)", "authorized_access_point": "Divertimento Vocale (Fribourg)"} 1 -2023-07-08 08:23:45.795207 2023-07-08 08:23:45.795219 f11515ba-94fb-4222-823c-3a812b3109e2 {"md5": "d13339d95bbdfcd86af21f2f36df5607", "pid": "A003184655", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003184655", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003184655", "source": "RERO"}], "preferred_name": "Dohrn, Cathy", "authorized_access_point": "Dohrn, Cathy"} 1 -2023-07-08 08:23:45.903673 2023-07-08 08:23:45.903682 49748dfd-a6b4-41f4-969b-dcb4e6edd6d4 {"md5": "fae60e2f692b0de4dd90572e75152193", "pid": "A003185209", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003185209", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003185209", "source": "RERO"}], "preferred_name": "Doly, Guy", "authorized_access_point": "Doly, Guy"} 1 -2023-07-08 08:23:46.044473 2023-07-08 08:23:46.044482 e3ed6268-c09d-4acf-be87-89b439f7442c {"md5": "64891d986086dafc1311c3b39737926d", "pid": "A003188796", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003188796", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003188796", "source": "RERO"}], "preferred_name": "Douglas, Claire", "authorized_access_point": "Douglas, Claire"} 1 -2023-07-08 08:23:46.137427 2023-07-08 08:23:46.137436 cc9a39cb-baea-48e1-9e85-75dfcfb62586 {"md5": "5b2e8063e9370aa4a115ad30e7c19729", "pid": "A003192212", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003192212", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003192212", "source": "RERO"}], "preferred_name": "Druto, Maciej", "authorized_access_point": "Druto, Maciej"} 1 -2023-07-08 08:23:46.227165 2023-07-08 08:23:46.227171 02c09ad0-b74a-4e1e-85ec-0afbcba44b90 {"md5": "a257c7a92e4098dd46b9d402990a21f6", "pid": "A003194582", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003194582", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003194582", "source": "RERO"}], "preferred_name": "Duchesne, Gaston", "authorized_access_point": "Duchesne, Gaston"} 1 -2023-07-08 08:23:46.335232 2023-07-08 08:23:46.335245 c81a9350-1889-4e5f-9f10-ae37e25bd9ff {"md5": "af4d072a56b3ed3f6f0f80da82badf5e", "pid": "A003196110", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003196110", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003196110", "source": "RERO"}], "preferred_name": "Dugarte Balza, Marbella", "authorized_access_point": "Dugarte Balza, Marbella"} 1 -2023-07-08 08:23:46.413693 2023-07-08 08:23:46.4137 2fa1fe10-c1d0-487f-8136-ef86d4789503 {"md5": "eab5351a522668a4ad89c655ffc66867", "pid": "A003197536", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003197536", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003197536", "source": "RERO"}], "preferred_name": "Dunand, Georges", "authorized_access_point": "Dunand, Georges"} 1 -2023-07-08 08:23:46.509521 2023-07-08 08:23:46.509529 ba86995f-49df-4c32-bc69-2ddf7673ef44 {"md5": "ebc4160589ab60cda0c4dc425dfc4f80", "pid": "A003198713", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003198713", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003198713", "source": "RERO"}], "preferred_name": "Dupong, Lucy", "authorized_access_point": "Dupong, Lucy"} 1 -2023-07-08 08:23:46.606428 2023-07-08 08:23:46.606435 f0a88eed-b4ed-4145-8cf0-1cdc38f492c0 {"md5": "78e943d502372fbc2aaf8d4fdaf82a76", "pid": "A003199994", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003199994", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003199994", "source": "RERO"}], "preferred_name": "Durel, Bernard", "authorized_access_point": "Durel, Bernard"} 1 -2023-07-08 08:23:46.701233 2023-07-08 08:23:46.701241 a09caab7-f496-4aeb-bfec-b6a82afdb6ce {"md5": "fc39a06b1058f9d2e7373d6110ca2ff2", "pid": "A003201589", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003201589", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003201589", "source": "RERO"}], "preferred_name": "Duviard, Dominique", "authorized_access_point": "Duviard, Dominique"} 1 -2023-07-08 08:23:46.799131 2023-07-08 08:23:46.799139 2678c33c-8329-4001-8433-b395ce7c3df9 {"md5": "a1e59d9f8d6ecdbedac6bc47e6e9c742", "pid": "A003203987", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003203987", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003203987", "source": "RERO"}], "preferred_name": "Díaz, Janet Winecoff", "authorized_access_point": "Díaz, Janet Winecoff"} 1 -2023-07-08 08:23:46.904843 2023-07-08 08:23:46.904848 8303c926-5205-48ce-8888-79fe3dde9ef3 {"md5": "8cc02911ba8ecb362baf6a85a429682a", "pid": "A003206780", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003206780", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003206780", "source": "RERO"}], "preferred_name": "Echard, William E", "authorized_access_point": "Echard, William E"} 1 -2023-07-08 08:23:47.015069 2023-07-08 08:23:47.015079 b46bea38-5e73-4e21-97b6-cad893c21b86 {"md5": "dbf766d07fe414efbaa88ade65056474", "pid": "A003217486", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003217486", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003217486", "source": "RERO"}], "preferred_name": "Engelhard, Hermann", "authorized_access_point": "Engelhard, Hermann"} 1 -2023-07-08 08:23:47.113059 2023-07-08 08:23:47.113064 4da28038-219d-4781-bd5e-2fd326c43230 {"md5": "07b68bb624b70befb343c3c969261e71", "pid": "A003218658", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A003218658", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003218658", "source": "RERO"}], "preferred_name": "Ensemble vocal Audite Nova (Paris)", "authorized_access_point": "Ensemble vocal Audite Nova (Paris)"} 1 -2023-07-08 08:23:47.215967 2023-07-08 08:23:47.21599 f9fd97bf-3ed9-4451-84f4-37816f50b4a9 {"md5": "1fc5a0050aaa3237c2a2a379487a967c", "pid": "A003218686", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A003218686", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003218686", "source": "RERO"}], "preferred_name": "Ensemble Wien-Berlin", "authorized_access_point": "Ensemble Wien-Berlin"} 1 -2023-07-08 08:23:47.364054 2023-07-08 08:23:47.364065 b4a4e726-67ae-40e5-9239-a595dbd302c8 {"md5": "05d35d146be4c6001db5281c35d84087", "pid": "A003223430", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003223430", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003223430", "source": "RERO"}], "preferred_name": "Estle, Thomas Leo", "authorized_access_point": "Estle, Thomas Leo"} 1 -2023-07-08 08:23:47.461994 2023-07-08 08:23:47.462006 54a33889-6367-4b78-ae99-2667f54fa5ad {"md5": "2a6befb79e5697c762141b53f6785314", "pid": "A003230887", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003230887", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003230887", "source": "RERO"}], "preferred_name": "Fankhauser, Hans F", "authorized_access_point": "Fankhauser, Hans F"} 1 -2023-07-08 08:23:47.564103 2023-07-08 08:23:47.564112 23845098-5009-4871-8d2f-d187377e5be5 {"md5": "6ca806bc6a85b17aea6cd7c4dcde8ca8", "pid": "A003235750", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003235750", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003235750", "source": "RERO"}], "preferred_name": "Fehlmann, Ruedi", "authorized_access_point": "Fehlmann, Ruedi"} 1 -2023-07-08 08:23:47.655647 2023-07-08 08:23:47.655659 055f2f20-c5a2-4506-922e-ea84e8290784 {"md5": "81075d36e7bcee12657539488a4ad5cd", "pid": "A003235825", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003235825", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003235825", "source": "RERO"}], "preferred_name": "Fehr, Regula", "authorized_access_point": "Fehr, Regula"} 1 -2023-07-08 08:23:47.739953 2023-07-08 08:23:47.73996 79a46d81-a0f9-4e42-a690-0e56ff649f0a {"md5": "260f6d5e654ae3c928ed6a14f46e72b3", "pid": "A003236665", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003236665", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003236665", "source": "RERO"}], "preferred_name": "Feldman, Stanley A", "authorized_access_point": "Feldman, Stanley A"} 1 -2023-07-08 08:23:47.839754 2023-07-08 08:23:47.839762 689c2a31-6d82-40e4-8a60-e0557ca8abca {"md5": "7871bacbfa343c966616f80489a8b42c", "pid": "A003237696", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003237696", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003237696", "source": "RERO"}], "preferred_name": "Fenton, Terry", "authorized_access_point": "Fenton, Terry"} 1 -2023-07-08 08:23:47.939477 2023-07-08 08:23:47.939485 d9b3e9c5-0b1b-4aa2-8bcd-59d9c78635d1 {"md5": "aace162c9b04e8e89aa65d3e20986119", "pid": "A003240957", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003240957", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003240957", "source": "RERO"}], "preferred_name": "Feuardent, René", "authorized_access_point": "Feuardent, René"} 1 -2023-07-08 08:23:48.035199 2023-07-08 08:23:48.035207 561e6b18-3afa-4d1a-9ad1-7d478c2bf5fd {"md5": "d5582b89516fce539168d33fd6b8f43e", "pid": "A003242452", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003242452", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003242452", "source": "RERO"}], "preferred_name": "Figurey, Ernest", "authorized_access_point": "Figurey, Ernest"} 1 -2023-07-08 08:23:48.124907 2023-07-08 08:23:48.124913 415c5d5e-f435-4124-a9e6-d7544dac1ffd {"md5": "808b9c69a40e73979a0df8ef1fe111bc", "pid": "A003243348", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003243348", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003243348", "source": "RERO"}], "preferred_name": "Findlay, William", "authorized_access_point": "Findlay, William"} 1 -2023-07-08 08:23:48.219636 2023-07-08 08:23:48.219644 06eb97da-fb82-4751-8f1d-251b95b411df {"md5": "199d06b0fe31b388c5a2c70ed36ceed7", "pid": "A003245434", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "entomologue", "identifier": "http://data.rero.ch/02-A003245434", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003245434", "source": "RERO"}], "variant_name": ["Fischer, Maximilian, entomologue"], "preferred_name": "Fischer, Max, entomologue", "variant_access_point": ["Fischer, Maximilian, entomologue"], "authorized_access_point": "Fischer, Max, entomologue"} 1 -2023-07-08 08:23:48.320532 2023-07-08 08:23:48.320541 45d169da-aa97-4114-ab28-48b171902715 {"md5": "4bb682cb7d17b9a4dd380a7348bfff1c", "pid": "A003246832", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003246832", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003246832", "source": "RERO"}], "preferred_name": "Flaction, Rosette", "authorized_access_point": "Flaction, Rosette"} 1 -2023-07-08 08:23:48.419596 2023-07-08 08:23:48.419605 f8a0b8f9-e5a3-4b5e-b049-ddf0f72443cf {"md5": "4ee6ee076f01d0f84369b4f03aa9940a", "pid": "A003250020", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003250020", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003250020", "source": "RERO"}], "preferred_name": "Foglar-Deinhardstein, Harald", "authorized_access_point": "Foglar-Deinhardstein, Harald"} 1 -2023-07-08 08:23:48.507064 2023-07-08 08:23:48.50707 5c44d609-25db-497c-a6f8-97f64d79a221 {"md5": "a9dd13d196e1a91d5010076c62bf5a8b", "pid": "A003250278", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003250278", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003250278", "source": "RERO"}], "variant_name": ["Foletti, Giovanni Battista"], "preferred_name": "Foletti, Giovanni", "variant_access_point": ["Foletti, Giovanni Battista"], "authorized_access_point": "Foletti, Giovanni"} 1 -2023-07-08 08:23:48.604312 2023-07-08 08:23:48.604317 0f8cc79d-6094-4ecf-ab44-b68fde860685 {"md5": "616a4f3723cf507f5e46203baef2cfb1", "pid": "A003250343", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003250343", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003250343", "source": "RERO"}], "preferred_name": "Folger, Robert", "authorized_access_point": "Folger, Robert"} 1 -2023-07-08 08:23:48.714086 2023-07-08 08:23:48.714094 92a9b3cd-7464-4f5a-90d3-a9640b20696f {"md5": "d8805973ddbb6e81cbbd15613149224f", "pid": "A003250353", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003250353", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003250353", "source": "RERO"}], "preferred_name": "Folie, Jacqueline", "authorized_access_point": "Folie, Jacqueline"} 1 -2023-07-08 08:23:48.821482 2023-07-08 08:23:48.821491 1e6b1741-42bc-4d71-b2c0-deae9c37c5a9 {"md5": "d46d4f6211830ea4b69afa7878e0006c", "pid": "A003251379", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A003251379", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003251379", "source": "RERO"}], "preferred_name": "Fondazione Cariplo per la ricerca scientifica (Milano)", "authorized_access_point": "Fondazione Cariplo per la ricerca scientifica (Milano)"} 1 -2023-07-08 08:23:48.916104 2023-07-08 08:23:48.916116 8a40d119-9c81-421f-803f-863be9061e59 {"md5": "ae989164a8d525f67795cc84c3a737ab", "pid": "A003256978", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003256978", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003256978", "source": "RERO"}], "preferred_name": "Frager, Robert", "authorized_access_point": "Frager, Robert"} 1 -2023-07-08 08:23:49.024659 2023-07-08 08:23:49.024666 9fb4dec2-dee5-4de4-9d27-e209c059795a {"md5": "a5eade45c300189dc53d480eb1525cc2", "pid": "A003259324", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003259324", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003259324", "source": "RERO"}], "preferred_name": "Frangou, S.A", "authorized_access_point": "Frangou, S.A"} 1 -2023-07-08 08:23:49.118007 2023-07-08 08:23:49.118016 c9aae96f-96a2-4e29-9a13-295dc78a428e {"md5": "7077365c31b685e52c690bb8ebd96a7b", "pid": "A003259363", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003259363", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003259363", "source": "RERO"}], "preferred_name": "Frank, Benjamen Simon", "authorized_access_point": "Frank, Benjamen Simon"} 1 -2023-07-08 08:23:49.227685 2023-07-08 08:23:49.227692 e61b3cea-bc63-46ef-aa00-8c1d1f26ae72 {"md5": "d3201a6472c7a9ce7777ca9e7081f0f5", "pid": "A003261984", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003261984", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003261984", "source": "RERO"}], "preferred_name": "Freeze, Paul D", "authorized_access_point": "Freeze, Paul D"} 1 -2023-07-08 08:23:49.330873 2023-07-08 08:23:49.33088 3d72528e-2c31-4046-8fa1-997db80a9098 {"md5": "7795af30c580cf28e96c1afa3e54b9ea", "pid": "A003262188", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003262188", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003262188", "source": "RERO"}], "preferred_name": "Frei-Borer, Ursula", "authorized_access_point": "Frei-Borer, Ursula"} 1 -2023-07-08 08:23:49.425236 2023-07-08 08:23:49.425242 43251297-4547-423d-882b-efbaa7a258c1 {"md5": "2e92d21c98e8c4d7df104cf724116097", "pid": "A003263551", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003263551", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003263551", "source": "RERO"}], "preferred_name": "Frey, Markus", "authorized_access_point": "Frey, Markus"} 1 -2023-07-08 08:23:49.516458 2023-07-08 08:23:49.516465 bb340a85-fc9b-4477-b202-0d7af2c3c5b7 {"md5": "21bb8b7b83e04b36c4b8fd67aa4144ac", "pid": "A003264908", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003264908", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003264908", "source": "RERO"}], "preferred_name": "Friedman, William Frederick", "authorized_access_point": "Friedman, William Frederick"} 1 -2023-07-08 08:23:49.6218 2023-07-08 08:23:49.621805 ef520aa8-0de6-435a-aa88-32c197735ced {"md5": "44247fe4430a60689301a491bb2ba488", "pid": "A003265730", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003265730", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003265730", "source": "RERO"}], "preferred_name": "Frisch, Christine", "authorized_access_point": "Frisch, Christine"} 1 -2023-07-08 08:23:49.713736 2023-07-08 08:23:49.713745 d74ba447-34e1-4fc0-a15d-440a0bfc05bc {"md5": "cddf99ba8e480f546e29559c78563f02", "pid": "A003267103", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003267103", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003267103", "source": "RERO"}], "preferred_name": "Frost, Wolfgang", "authorized_access_point": "Frost, Wolfgang"} 1 -2023-07-08 08:23:49.804544 2023-07-08 08:23:49.804553 8f461a0a-b708-49f0-a07b-3c6b3a66ec06 {"md5": "513e393a1458825fdd7f9e00637d9b0b", "pid": "A003267500", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003267500", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003267500", "source": "RERO"}], "preferred_name": "Fryer, K.D", "authorized_access_point": "Fryer, K.D"} 1 -2023-07-08 08:23:49.909151 2023-07-08 08:23:49.909157 4c7c859a-5fb8-4d3d-8e59-4b99dc111fdd {"md5": "405cc45d5e0970881dffcd66bff43557", "pid": "A003268129", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003268129", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003268129", "source": "RERO"}], "preferred_name": "Fuchino, Sakaé", "authorized_access_point": "Fuchino, Sakaé"} 1 -2023-07-08 08:23:49.997715 2023-07-08 08:23:49.997724 cd605de8-afc1-4241-85ff-92b13256e1df {"md5": "4e5a17b4597fc2da3a1bba735cc7b32f", "pid": "A003272218", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A003272218", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003272218", "source": "RERO"}], "preferred_name": "Fédération suisse des travailleurs du commerce, des transports et de l'alimentation. Section de Genève", "authorized_access_point": "Fédération suisse des travailleurs du commerce, des transports et de l'alimentation. Section de Genève"} 1 -2023-07-08 08:23:50.092697 2023-07-08 08:23:50.092703 d5ad8509-180f-46d8-9b04-64194c1cb1ba {"md5": "09be1052e7fc7cc0299b96a3d49cff46", "pid": "A003272478", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003272478", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003272478", "source": "RERO"}], "preferred_name": "Févret, Charles", "authorized_access_point": "Févret, Charles"} 1 -2023-07-08 08:23:50.179003 2023-07-08 08:23:50.179008 a366ad3d-93c4-4f18-a936-f8a931be8cb4 {"md5": "02322e6e358c759730bc7ad244c5095c", "pid": "A003272492", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A003272492", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003272492", "source": "RERO"}], "preferred_name": "Fête cantonale des accordéonistes fribourgeois", "authorized_access_point": "Fête cantonale des accordéonistes fribourgeois"} 1 -2023-07-08 08:23:50.258867 2023-07-08 08:23:50.258873 92b2caff-8dd6-40c3-9d0d-8de0e4152b3b {"md5": "e9710ec54e3e0b5d8fb2a24ae44d3443", "pid": "A003274907", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003274907", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003274907", "source": "RERO"}], "preferred_name": "Gal, Nathalie", "authorized_access_point": "Gal, Nathalie"} 1 -2023-07-08 08:23:50.347096 2023-07-08 08:23:50.347108 2551840c-de41-4b53-aa01-789f9e1acd66 {"md5": "7d489b74d29fae2038f0082693c0acae", "pid": "A003275937", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003275937", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003275937", "source": "RERO"}], "preferred_name": "Gallahue, David L", "authorized_access_point": "Gallahue, David L"} 1 -2023-07-08 08:23:50.456043 2023-07-08 08:23:50.456048 793d1f1b-dfc9-408a-add5-7006fbaf3108 {"md5": "20117c43a0657ffd6176f77352807779", "pid": "A003276590", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003276590", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003276590", "source": "RERO"}], "preferred_name": "Gallinger, Fritz", "authorized_access_point": "Gallinger, Fritz"} 1 -2023-07-08 08:23:50.55924 2023-07-08 08:23:50.559246 f9000dcb-d56c-4c5f-b960-f3342ffabbfb {"md5": "0dc4bdca21b5a8fec2424ea0069b7c17", "pid": "A003278829", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003278829", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003278829", "source": "RERO"}], "preferred_name": "Garbé, A", "authorized_access_point": "Garbé, A"} 1 -2023-07-08 08:23:50.653005 2023-07-08 08:23:50.653013 b7412d8d-102f-444b-b84c-f385c15e4af8 {"md5": "9bcbf7b7cc5aabc8dd6c36dd322b278f", "pid": "A003281452", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003281452", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003281452", "source": "RERO"}], "preferred_name": "Garzetti, Albino", "authorized_access_point": "Garzetti, Albino"} 1 -2023-07-08 08:23:50.727574 2023-07-08 08:23:50.72758 c21273ea-fc1c-4a0e-8cd9-41ca8bc384b7 {"md5": "83eaad3df58e260a8812b9741555ed65", "pid": "A003283186", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003283186", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003283186", "source": "RERO"}], "preferred_name": "Gaufridi, Jean François de", "authorized_access_point": "Gaufridi, Jean François de"} 1 -2023-07-08 08:23:52.196699 2023-07-08 08:23:52.196703 ad4cde44-0e64-4070-be90-7eee3618dd22 {"md5": "859222b12d1366caccabb99a911b52d6", "pid": "A003324081", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A003324081", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003324081", "source": "RERO"}], "preferred_name": "Groupe interprofessionnel contre les abus sexuels sur l'enfant (Fribourg)", "authorized_access_point": "Groupe interprofessionnel contre les abus sexuels sur l'enfant (Fribourg)"} 1 -2023-07-08 08:23:50.8134 2023-07-08 08:23:50.813407 c0c94eb6-7338-49ae-939e-5aeeb2105acd {"md5": "44c530d8d9af4f15d168172acdb86dcb", "pid": "A003288318", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A003288318", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003288318", "source": "RERO"}], "preferred_name": "Genève (canton). Office d'orientation et de formation professionnelle. Service des supports de l'information", "authorized_access_point": "Genève (canton). Office d'orientation et de formation professionnelle. Service des supports de l'information"} 1 -2023-07-08 08:23:50.902977 2023-07-08 08:23:50.902986 8d946a9e-d979-4f0c-9fc4-38086c206915 {"md5": "b4f3836d5a63d01ae642fab7877d4bf2", "pid": "A003293538", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003293538", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003293538", "source": "RERO"}], "preferred_name": "Ghose, Partha", "authorized_access_point": "Ghose, Partha"} 1 -2023-07-08 08:23:51.010397 2023-07-08 08:23:51.010402 43c190ed-00db-4598-b922-1291b07552e2 {"md5": "da7dcbcf254d68cded7167b0bc37d741", "pid": "A003299867", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003299867", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003299867", "source": "RERO"}], "preferred_name": "Gisler, Nicole", "authorized_access_point": "Gisler, Nicole"} 1 -2023-07-08 08:23:51.103964 2023-07-08 08:23:51.103974 7f7bc6f3-5b09-4cfb-a4a2-c2da49f047f2 {"md5": "ff143e473cf3debf6debc19fe9573d74", "pid": "A003300349", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003300349", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003300349", "source": "RERO"}], "preferred_name": "Giusti, Giambattista", "authorized_access_point": "Giusti, Giambattista"} 1 -2023-07-08 08:23:51.213175 2023-07-08 08:23:51.213182 b422aa30-88e9-4b8d-91e7-1969ce8ea77c {"md5": "24bef22bafcc42b2f1f654dee4fa4165", "pid": "A003301693", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003301693", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003301693", "source": "RERO"}], "preferred_name": "Gleitman, Henry", "authorized_access_point": "Gleitman, Henry"} 1 -2023-07-08 08:23:51.306613 2023-07-08 08:23:51.30662 34ee1255-280b-4f0d-bf1d-286959296a8e {"md5": "3d112e130bf7b77641fdfc5d59115061", "pid": "A003302604", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003302604", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003302604", "source": "RERO"}], "preferred_name": "Glynn, Prudence", "authorized_access_point": "Glynn, Prudence"} 1 -2023-07-08 08:23:51.405414 2023-07-08 08:23:51.405418 e718770a-58d9-4ba6-8db9-acf5addd9b12 {"md5": "61963b265fcef64086ef5e94e8bbfc60", "pid": "A003303466", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003303466", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003303466", "source": "RERO"}], "preferred_name": "Godefroy, Christian H", "authorized_access_point": "Godefroy, Christian H"} 1 -2023-07-08 08:23:51.493643 2023-07-08 08:23:51.493648 bb08ef91-2742-4320-bf8c-3c63c964265a {"md5": "0d50f6bd2e00baff671e1e8f8ae3952d", "pid": "A003303830", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003303830", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003303830", "source": "RERO"}], "preferred_name": "Godwin, Harry", "authorized_access_point": "Godwin, Harry"} 1 -2023-07-08 08:23:51.581892 2023-07-08 08:23:51.581899 ecba3f29-30c1-40a4-bc88-57c51516dcdc {"md5": "650854dbac32695a23888bb87db60079", "pid": "A003307504", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003307504", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003307504", "source": "RERO"}], "preferred_name": "Gonthier-Pesic, Brana", "authorized_access_point": "Gonthier-Pesic, Brana"} 1 -2023-07-08 08:23:51.668342 2023-07-08 08:23:51.668351 3c4efc6c-20fb-40ea-b055-7d9b3f536bf6 {"md5": "046721e68ba49f565c12957c8ae6acb9", "pid": "A003308819", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003308819", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003308819", "source": "RERO"}], "preferred_name": "Gorboff, Marina", "authorized_access_point": "Gorboff, Marina"} 1 -2023-07-08 08:23:51.738639 2023-07-08 08:23:51.738645 650df516-ac06-4d3f-9029-912640f68efb {"md5": "bd43073f8663b3fdc796262d379d7c6d", "pid": "A003312980", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003312980", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003312980", "source": "RERO"}], "preferred_name": "Graf, Arnim", "authorized_access_point": "Graf, Arnim"} 1 -2023-07-08 08:23:51.824943 2023-07-08 08:23:51.824948 8b0af384-464e-4782-b7c7-2d87ae6d801b {"md5": "8b6a5a50eaa835db4123d75e7a317d45", "pid": "A003314705", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003314705", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003314705", "source": "RERO"}], "preferred_name": "Granito, Angelo", "authorized_access_point": "Granito, Angelo"} 1 -2023-07-08 08:23:51.92148 2023-07-08 08:23:51.921488 f3ff7637-f46d-4cdb-a93b-26e2ed1d5ea2 {"md5": "447ba571cd4d8eaeb64201a7a832f88c", "pid": "A003316151", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003316151", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003316151", "source": "RERO"}], "preferred_name": "Gray, K. St Clair", "authorized_access_point": "Gray, K. St Clair"} 1 -2023-07-08 08:23:52.014372 2023-07-08 08:23:52.014385 fe79b644-062f-4d22-a8aa-4d1e2e611fc7 {"md5": "68ee443515d5f08da8d68e24a933e58a", "pid": "A003319632", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003319632", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003319632", "source": "RERO"}], "preferred_name": "Griepentrog, Wolfgang", "authorized_access_point": "Griepentrog, Wolfgang"} 1 -2023-07-08 08:23:52.106427 2023-07-08 08:23:52.106433 8b5f93ba-8646-434f-bf57-742e11990211 {"md5": "6b810c979bce2fee8079287a9002bed1", "pid": "A003320872", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003320872", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003320872", "source": "RERO"}], "preferred_name": "Grimson, William Eric Leifur", "authorized_access_point": "Grimson, William Eric Leifur"} 1 -2023-07-08 08:23:52.280201 2023-07-08 08:23:52.280214 a1252b35-1d8c-42e5-a36c-2bc4dd0ce6b3 {"md5": "6348da0625e91cbd86ba8f65366ab267", "pid": "A003328096", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003328096", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003328096", "source": "RERO"}], "preferred_name": "Guerrero Zamora, Juan", "authorized_access_point": "Guerrero Zamora, Juan"} 1 -2023-07-08 08:23:52.380114 2023-07-08 08:23:52.380129 421f57d8-718d-4108-9b24-14b0ac8d19b8 {"md5": "2bb50a169db89dd4b917d9d8138462ad", "pid": "A003331851", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A003331851", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003331851", "source": "RERO"}], "preferred_name": "Guojia Dang'an Ju", "authorized_access_point": "Guojia Dang'an Ju"} 1 -2023-07-08 08:23:52.4675 2023-07-08 08:23:52.467508 71fa7557-aef1-4b2b-8bec-538edda4b85e {"md5": "837a4a291f7eed0b6dc54a13c3acd50a", "pid": "A003334623", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003334623", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003334623", "source": "RERO"}], "preferred_name": "Gänzl, Kurt", "authorized_access_point": "Gänzl, Kurt"} 1 -2023-07-08 08:23:52.558083 2023-07-08 08:23:52.558089 f151b1ab-a911-43bc-bdca-d5d770c4eae8 {"md5": "004810402bef52cabfdefcf01d44c6eb", "pid": "A003337947", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003337947", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003337947", "source": "RERO"}], "preferred_name": "Habib, Michel", "authorized_access_point": "Habib, Michel"} 1 -2023-07-08 08:23:52.654392 2023-07-08 08:23:52.654402 b2e44365-f080-40c4-ae03-185c9901a64c {"md5": "2a31ebd9c3a14b732aa599c8fedfadcf", "pid": "A003351113", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003351113", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003351113", "source": "RERO"}], "preferred_name": "Hartung, Jo", "authorized_access_point": "Hartung, Jo"} 1 -2023-07-08 08:23:52.75688 2023-07-08 08:23:52.756886 5de5bd3d-b8e7-44cb-9627-4d69c5e0e3f8 {"md5": "46bc817a9f8b27b97378cc8e765bfa0b", "pid": "A003352968", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003352968", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003352968", "source": "RERO"}], "preferred_name": "Haudry, Jean", "authorized_access_point": "Haudry, Jean"} 1 -2023-07-08 08:23:52.873846 2023-07-08 08:23:52.873853 fa2cbe04-02c7-4d0d-8b97-4dcf0530eb61 {"md5": "d523d1de366d0a4cd7483df111b04456", "pid": "A003357999", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003357999", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003357999", "source": "RERO"}], "preferred_name": "Hegglin, Richard", "authorized_access_point": "Hegglin, Richard"} 1 -2023-07-08 08:23:52.9758 2023-07-08 08:23:52.975807 ddfced85-4b98-4410-af7d-e9737b8343a9 {"md5": "4e7f35f42ed97dcd189c655a40450021", "pid": "A003359260", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003359260", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003359260", "source": "RERO"}], "preferred_name": "Heinecke, H", "authorized_access_point": "Heinecke, H"} 1 -2023-07-08 08:23:53.076709 2023-07-08 08:23:53.076714 12f17e21-4ada-4ecd-bf53-1cc51465d246 {"md5": "7d71bc51ff599b8da009dc7a350a6a13", "pid": "A003360509", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003360509", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003360509", "source": "RERO"}], "preferred_name": "Helbich, Wolfgang J", "authorized_access_point": "Helbich, Wolfgang J"} 1 -2023-07-08 08:23:53.180892 2023-07-08 08:23:53.180901 d3434f0a-5cbf-4abd-89fc-2ddcec8e884c {"md5": "711c535fdc10679d415c7bd35fee912e", "pid": "A003361845", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A003361845", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003361845", "source": "RERO"}], "variant_name": ["Helsingborg Symphony Orchestra"], "preferred_name": "Helsingborgs Symfoniorkester", "variant_access_point": ["Helsingborg Symphony Orchestra"], "authorized_access_point": "Helsingborgs Symfoniorkester"} 1 -2023-07-08 08:23:53.258955 2023-07-08 08:23:53.25896 e161f2e5-ecca-439d-9bc2-c5d0c2d71725 {"md5": "a5b4acd4146178db1d46c065d476e64e", "pid": "A003362103", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003362103", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003362103", "source": "RERO"}], "preferred_name": "Hemmer, Jean", "authorized_access_point": "Hemmer, Jean"} 1 -2023-07-08 08:23:53.359142 2023-07-08 08:23:53.359149 36b6b211-3a72-4bd3-a9c5-8b6f95ee0250 {"md5": "032c297c3ee3517494fb77e654024311", "pid": "A003363900", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003363900", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003363900", "source": "RERO"}], "preferred_name": "Henriot, Jean-Claude", "authorized_access_point": "Henriot, Jean-Claude"} 1 -2023-07-08 08:23:53.47289 2023-07-08 08:23:53.472899 4b6f1f89-8e22-4519-9427-1b78189ea551 {"md5": "9f8de8abab300cc184f389b3bd90299a", "pid": "A003364295", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003364295", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003364295", "source": "RERO"}], "variant_name": ["Henschel, G.A.L.,", "Henschel,"], "date_of_birth": "1806", "date_of_death": "1852", "preferred_name": "Henschel, G.A. Louis,", "variant_access_point": ["Henschel, G.A.L., 1806-1852", "Henschel, 1806-1852"], "authorized_access_point": "Henschel, G.A. Louis, 1806-1852", "biographical_information": ["Philologue et lexicographe. - Né à Minden (Allemagne), mort à Paris. - A aussi écrit en allemand et en latin"]} 1 -2023-07-08 08:23:53.572837 2023-07-08 08:23:53.572844 9b2b302e-631a-4848-95b4-4f4c802a9a4f {"md5": "0741af84577db449820f763182b92604", "pid": "A003370921", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003370921", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003370921", "source": "RERO"}], "variant_name": ["Higham, Robin D.S.,", "Higham, Robin David Stewart,"], "date_of_birth": "1925", "preferred_name": "Higham, Robin,", "variant_access_point": ["Higham, Robin D.S., 1925-", "Higham, Robin David Stewart, 1925-"], "authorized_access_point": "Higham, Robin, 1925-"} 1 -2023-07-08 08:23:53.67817 2023-07-08 08:23:53.678176 9d634e76-d45a-43c0-b731-b6a1d5c52bd7 {"md5": "4b5b8365c4b757417ac0594efee45a22", "pid": "A003375801", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003375801", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003375801", "source": "RERO"}], "preferred_name": "Hocks, Richard A", "authorized_access_point": "Hocks, Richard A"} 1 -2023-07-08 08:23:53.771913 2023-07-08 08:23:53.771924 5686edc1-f3be-4de7-82f7-2881158eccf3 {"md5": "32b301de219c857fee77c92e1144c60b", "pid": "A003378379", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003378379", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003378379", "source": "RERO"}], "preferred_name": "Hogan, Maurice P", "authorized_access_point": "Hogan, Maurice P"} 1 -2023-07-08 08:23:53.887503 2023-07-08 08:23:53.887511 5258fb11-6dfb-422d-9994-bf617541fdc5 {"md5": "d21c833a710fd13a81d47143468b651b", "pid": "A003378581", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003378581", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003378581", "source": "RERO"}], "preferred_name": "Hohenberger, Adam", "authorized_access_point": "Hohenberger, Adam"} 1 -2023-07-08 08:23:53.994056 2023-07-08 08:23:53.994062 d1174b32-03fc-43ed-8fa2-2b082f19df72 {"md5": "99e4ca8a6c26d96f0580cd270f903533", "pid": "A003378837", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003378837", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003378837", "source": "RERO"}], "preferred_name": "Hoijer, Harry", "authorized_access_point": "Hoijer, Harry"} 1 -2023-07-08 08:23:54.099547 2023-07-08 08:23:54.099556 b72b6b6b-64b8-4861-a909-2e8a683f7dbe {"md5": "d2735ef6437d682e11638a14fd855bf1", "pid": "A003379503", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003379503", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003379503", "source": "RERO"}], "preferred_name": "Hollander, John", "authorized_access_point": "Hollander, John"} 1 -2023-07-08 08:23:54.196447 2023-07-08 08:23:54.196456 5830864d-546a-4770-868d-c66cb9e5460a {"md5": "9dd1642b4f489db145d588f4a66cd2fe", "pid": "A003381861", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003381861", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003381861", "source": "RERO"}], "preferred_name": "Hong, Seong Jo", "authorized_access_point": "Hong, Seong Jo"} 1 -2023-07-08 08:23:54.298593 2023-07-08 08:23:54.2986 fe39aaf6-1aae-462d-81d2-0dad057f0494 {"md5": "1eb2b824ef5c5d39a28b792dcdc46fca", "pid": "A003383105", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003383105", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003383105", "source": "RERO"}], "variant_name": ["Regius, Heinrich,", "Hôrqheimer, M.,", "Chorkchajmer, Maks,", "Hūrkhāymir, Māks,", "Horkhajmer, Maks,", "Huokehaimo, Makesi,", "Horkheimers, Makss,"], "date_of_birth": "1895", "date_of_death": "1973", "preferred_name": "Horkheimer, Max,", "variant_access_point": ["Regius, Heinrich, 1895-1973", "Hôrqheimer, M., 1895-1973", "Chorkchajmer, Maks, 1895-1973", "Hūrkhāymir, Māks, 1895-1973", "Horkhajmer, Maks, 1895-1973", "Huokehaimo, Makesi, 1895-1973", "Horkheimers, Makss, 1895-1973"], "authorized_access_point": "Horkheimer, Max, 1895-1973", "biographical_information": ["Philosophe et sociologue", "Heinrich Regius est le pseud. occasionnel de Max Horkheimer"]} 1 -2023-07-08 08:23:54.405651 2023-07-08 08:23:54.405657 aea02f5d-669f-49fb-9033-862efd4730c0 {"md5": "55fb00a706252d47030ddd1219dfcf93", "pid": "A003385342", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003385342", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003385342", "source": "RERO"}], "preferred_name": "Houtman, Irene", "authorized_access_point": "Houtman, Irene"} 1 -2023-07-08 08:23:54.505013 2023-07-08 08:23:54.505017 2e7727d8-7759-4de9-95b2-ba4cc267eb8e {"md5": "4da5c35db640f7e0fc6976ac49c529d1", "pid": "A003386566", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003386566", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003386566", "source": "RERO"}], "preferred_name": "Hua, Pai", "authorized_access_point": "Hua, Pai"} 1 -2023-07-08 08:23:54.601233 2023-07-08 08:23:54.601242 809c2194-f8ea-4f7b-b465-75b0a0ea896c {"md5": "4b8bfc7e24b80c05035e3c6f16a3cbc0", "pid": "A003388636", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003388636", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003388636", "source": "RERO"}], "preferred_name": "Hughes, Ann N", "authorized_access_point": "Hughes, Ann N"} 1 -2023-07-08 08:23:54.684933 2023-07-08 08:23:54.684937 f793579f-a835-4455-a7f7-bf3316e6c146 {"md5": "83ffde6213bcefda2f2c05e71c0d7ea6", "pid": "A003389309", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003389309", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003389309", "source": "RERO"}], "preferred_name": "Hugues-Hallett, Penelope", "authorized_access_point": "Hugues-Hallett, Penelope"} 1 -2023-07-08 08:23:54.763979 2023-07-08 08:23:54.763986 475b4f97-dc46-4892-86f2-8165f6dea5dc {"md5": "221ed322580d744892c80f829653b835", "pid": "A003389620", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003389620", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003389620", "source": "RERO"}], "preferred_name": "Hull, Richard W", "authorized_access_point": "Hull, Richard W"} 1 -2023-07-08 08:23:54.864742 2023-07-08 08:23:54.864749 35a00c6b-23a3-4609-b4da-5b7ab5c06de3 {"md5": "8960f53f4a60b5c0db6c36732093930f", "pid": "A003389663", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003389663", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003389663", "source": "RERO"}], "preferred_name": "Hulme, David", "authorized_access_point": "Hulme, David"} 1 -2023-07-08 08:23:54.959343 2023-07-08 08:23:54.959349 4e0cb000-c447-45d0-991a-c20deebf3784 {"md5": "757cb8a27db2b60d0f48ad43c44c6e60", "pid": "A003395338", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003395338", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003395338", "source": "RERO"}], "date_of_birth": "1958", "preferred_name": "Hütter, Reinhard,", "authorized_access_point": "Hütter, Reinhard, 1958-", "biographical_information": ["Théologien. - Professeur en théologie fondamentale et en dogmatique à l'Université catholique d'Amérique à Washington (2019)"]} 1 -2023-07-08 08:23:55.041869 2023-07-08 08:23:55.041873 29e653ee-f8cf-423d-a210-4383a86eeb57 {"md5": "79beb61b885f48edfdd007fee942fb38", "pid": "A003398237", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003398237", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003398237", "source": "RERO"}], "preferred_name": "Ihori, Toshihiro", "authorized_access_point": "Ihori, Toshihiro"} 1 -2023-07-08 08:23:55.136336 2023-07-08 08:23:55.13634 57b4fd0f-1f3a-428a-9cbb-5a92c7225065 {"md5": "9b07ae5c7a6c74726d46b88a2ca8e497", "pid": "A003399031", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003399031", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003399031", "source": "RERO"}], "preferred_name": "Imbert, Jean-Louis", "authorized_access_point": "Imbert, Jean-Louis"} 1 -2023-07-08 08:23:55.222577 2023-07-08 08:23:55.222582 d5c3a88b-7b5e-48c2-8206-b1419b6055af {"md5": "6ee2288ab78dc2b3a905aa1b8d028808", "pid": "A003399240", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003399240", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003399240", "source": "RERO"}], "preferred_name": "Imhof, Urs", "authorized_access_point": "Imhof, Urs"} 1 -2023-07-08 08:23:55.307799 2023-07-08 08:23:55.307806 c7708bcb-392d-4f94-b321-5f1e2d66b68d {"md5": "f2dd54de40fe78385c042ce5b842246a", "pid": "A003399386", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003399386", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003399386", "source": "RERO"}], "preferred_name": "Imobersteg, E", "authorized_access_point": "Imobersteg, E"} 1 -2023-07-08 08:23:55.401531 2023-07-08 08:23:55.401544 7e33172c-d48e-429e-b683-50ef340f1eb8 {"md5": "38d166b1c484f1e6161493801b6bfc8c", "pid": "A003399601", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003399601", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003399601", "source": "RERO"}], "preferred_name": "Inamoto, Noboru", "authorized_access_point": "Inamoto, Noboru"} 1 -2023-07-08 08:23:55.506007 2023-07-08 08:23:55.506011 4119826a-9ed1-4bb9-b59e-e2a0ebf999a3 {"md5": "be62c17cb7f41f9776f3456fbe56b46a", "pid": "A003401536", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A003401536", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003401536", "source": "RERO"}], "preferred_name": "Institut de Recherches Sociologiques Appliquées (Paris)", "authorized_access_point": "Institut de Recherches Sociologiques Appliquées (Paris)"} 1 -2023-07-08 08:23:55.592557 2023-07-08 08:23:55.592563 3d70322e-5798-4e23-827f-034a6e25cf27 {"md5": "481b8912248b8d1cf2a1cc738fd55773", "pid": "A003402056", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A003402056", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003402056", "source": "RERO"}], "preferred_name": "Institut für Jugendkunde (Bremen)", "authorized_access_point": "Institut für Jugendkunde (Bremen)"} 1 -2023-07-08 08:23:55.685556 2023-07-08 08:23:55.685561 b5a23ab0-37cd-48da-9379-45d2b48db0c9 {"md5": "87709d184030c82e0fe75d9d3425bd38", "pid": "A003403470", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A003403470", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003403470", "source": "RERO"}], "preferred_name": "Institute of Cost and Management Accountants (London)", "authorized_access_point": "Institute of Cost and Management Accountants (London)"} 1 -2023-07-08 08:23:55.755959 2023-07-08 08:23:55.755964 067f05b5-6026-40e7-a243-96d4ac948477 {"md5": "ce4a9a7803936dc0923f379ad9f5712d", "pid": "A003404800", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A003404800", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003404800", "source": "RERO"}], "preferred_name": "International Catholic-Jewish Liaison Committee", "authorized_access_point": "International Catholic-Jewish Liaison Committee"} 1 -2023-07-08 08:23:55.853739 2023-07-08 08:23:55.853747 982ed946-4457-4d99-83e1-71d9df81995a {"md5": "db59ad5a1b32b1d3c57f1549728a6264", "pid": "A003406290", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A003406290", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003406290", "source": "RERO"}], "variant_name": ["Provo International Conference on the Dead Sea Scrolls"], "preferred_name": "International Conference on the Dead Sea Scrolls (1996 :", "variant_access_point": ["Provo International Conference on the Dead Sea Scrolls"], "authorized_access_point": "International Conference on the Dead Sea Scrolls (1996 : Provo)"} 1 -2023-07-08 08:23:55.947052 2023-07-08 08:23:55.947061 1129b0d7-9837-4f6e-8a58-37220e8be2ea {"md5": "4b9a1407056d643d00ec2dcb5d8d2a6d", "pid": "A003411195", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003411195", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003411195", "source": "RERO"}], "preferred_name": "Irimie-Fota, Rodica", "authorized_access_point": "Irimie-Fota, Rodica"} 1 -2023-07-08 08:23:56.052973 2023-07-08 08:23:56.052976 388b582b-703d-4504-be70-1a8e86856768 {"md5": "09cf9d9e42587fe1ef78d372b40cd5d2", "pid": "A003413213", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A003413213", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003413213", "source": "RERO"}], "preferred_name": "Istituto per la storia del Mezzogiorno (Roma / Lecce)", "authorized_access_point": "Istituto per la storia del Mezzogiorno (Roma / Lecce)"} 1 -2023-07-08 08:23:56.131897 2023-07-08 08:23:56.131907 3a99d956-0192-4fc2-ac87-0dd084e055d9 {"md5": "991ce5482a0dec4eeb5162f9a42069f4", "pid": "A003413435", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A003413435", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003413435", "source": "RERO"}], "preferred_name": "Istituto universitario orientale (Napoli). Dipartimento di studi del mondo classico e del Mediterraneo antico. Sezione linguistica", "authorized_access_point": "Istituto universitario orientale (Napoli). Dipartimento di studi del mondo classico e del Mediterraneo antico. Sezione linguistica"} 1 -2023-07-08 08:23:56.218766 2023-07-08 08:23:56.218771 4a27993c-00e3-48fe-87bd-9155bc473706 {"md5": "72d3677eabfaa3302e20f53557c86b15", "pid": "A003416346", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003416346", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003416346", "source": "RERO"}], "preferred_name": "Jacobsen, Thorkild", "authorized_access_point": "Jacobsen, Thorkild"} 1 -2023-07-08 08:23:56.309996 2023-07-08 08:23:56.310002 84dae9f7-5a84-4100-a0f9-057fd20235ab {"md5": "f12b2a689ba392f0bd8f65b702b2e650", "pid": "A003418109", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003418109", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003418109", "source": "RERO"}], "preferred_name": "Jain, Mahendra Kumar", "authorized_access_point": "Jain, Mahendra Kumar"} 1 -2023-07-08 08:23:56.408166 2023-07-08 08:23:56.408177 bb4761ce-346c-4f53-a937-52bb9926f83f {"md5": "8442a6d73d6ed6b09ad9537537795320", "pid": "A003418336", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003418336", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003418336", "source": "RERO"}], "preferred_name": "Jakoby, Richard", "authorized_access_point": "Jakoby, Richard"} 1 -2023-07-08 08:23:56.499793 2023-07-08 08:23:56.499806 2ebd75ba-9326-4254-8ae8-a24728d58f74 {"md5": "1f748659d63b1661a8864d7afb995747", "pid": "A003421420", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003421420", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003421420", "source": "RERO"}], "preferred_name": "Jarre-Chardin, Paule", "authorized_access_point": "Jarre-Chardin, Paule"} 1 -2023-07-08 08:23:56.587326 2023-07-08 08:23:56.587331 7c7ef3c9-cbd9-4ea7-b6c8-801425b8b88a {"md5": "f46e79a8e0c4552654879c0bff79fece", "pid": "A003421797", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003421797", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003421797", "source": "RERO"}], "preferred_name": "Jastrzębiec-Zielonka, Ludwik", "authorized_access_point": "Jastrzębiec-Zielonka, Ludwik"} 1 -2023-07-08 08:23:56.685219 2023-07-08 08:23:56.685225 5b72d098-c9bf-4ed3-83d6-75b2cca252f3 {"md5": "c53f787639de51ac7600a9646f8a38a6", "pid": "A003422794", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003422794", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003422794", "source": "RERO"}], "preferred_name": "Jeanneret, Jean-Gustave", "authorized_access_point": "Jeanneret, Jean-Gustave"} 1 -2023-07-08 08:23:56.76548 2023-07-08 08:23:56.76549 c3a89edd-0bc9-40fe-a9c2-e2e21a8034fb {"md5": "c5411d6a8c4dea629ee20fb4f1e6bb54", "pid": "A003427813", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003427813", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003427813", "source": "RERO"}], "preferred_name": "Johnson, John F", "authorized_access_point": "Johnson, John F"} 1 -2023-07-08 08:23:56.873273 2023-07-08 08:23:56.873278 bba9fad9-400e-4ab5-8980-5bc42b44bcaa {"md5": "11649ad9bfe02245f7ccee22dd9d245f", "pid": "A003428330", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003428330", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003428330", "source": "RERO"}], "preferred_name": "Johnston, Howard", "authorized_access_point": "Johnston, Howard"} 1 -2023-07-08 08:23:56.959665 2023-07-08 08:23:56.959671 f08eb5ca-e444-48ba-af96-ec330c00bfbd {"md5": "e82c29803209affe4ba4a49883d07e63", "pid": "A003428443", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003428443", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003428443", "source": "RERO"}], "preferred_name": "Johnstone, Christopher Lyle", "authorized_access_point": "Johnstone, Christopher Lyle"} 1 -2023-07-08 08:23:57.036323 2023-07-08 08:23:57.036328 f66c670e-9f77-41fd-ad9e-5de9662ef3e5 {"md5": "20eb03d1e2b8fcb2e9d062e2b4c4d3fc", "pid": "A003435187", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003435187", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003435187", "source": "RERO"}], "preferred_name": "Jungkuntz, Theodore Robert", "authorized_access_point": "Jungkuntz, Theodore Robert"} 1 -2023-07-08 08:23:57.115325 2023-07-08 08:23:57.115328 b73f238d-5fc7-4d5a-a128-d44e658181e4 {"md5": "267157b891e310a340c14abb36bbf0fa", "pid": "A003435467", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003435467", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003435467", "source": "RERO"}], "preferred_name": "Junod, Samuel", "authorized_access_point": "Junod, Samuel"} 1 -2023-07-08 08:23:57.190658 2023-07-08 08:23:57.190665 01de8fd0-ae0e-44af-890c-8f9f8b4d6372 {"md5": "c4458947edf963c148d8e1ff4a5002cb", "pid": "A003436041", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003436041", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003436041", "source": "RERO"}], "preferred_name": "Juteau, Danielle", "authorized_access_point": "Juteau, Danielle"} 1 -2023-07-08 08:23:57.278358 2023-07-08 08:23:57.278362 a8749bb8-dfcf-4f55-bb94-9d20e0e888ee {"md5": "b336a5dbff35d84fcad918a46513fc55", "pid": "A003441673", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003441673", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003441673", "source": "RERO"}], "preferred_name": "Kaplan, Robert B", "authorized_access_point": "Kaplan, Robert B"} 1 -2023-07-08 08:23:57.358483 2023-07-08 08:23:57.358487 3aacdb39-bd3a-41cf-9a6f-cfe15efbc86e {"md5": "2fb197cbced7c20e48518006c37bef21", "pid": "A003449705", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A003449705", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003449705", "source": "RERO"}], "preferred_name": "Kent Archaeological Rescue Unit", "authorized_access_point": "Kent Archaeological Rescue Unit"} 1 -2023-07-08 08:23:57.427407 2023-07-08 08:23:57.42741 39c2e4f5-9bcb-41c5-91bb-94051a3f7ae4 {"md5": "87fbe56d41568487b9a451e9a845954f", "pid": "A003449812", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003449812", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003449812", "source": "RERO"}], "preferred_name": "Kenton, Susannah", "authorized_access_point": "Kenton, Susannah"} 1 -2023-07-08 08:23:57.488294 2023-07-08 08:23:57.488301 40f6fddc-7ac5-4fc7-961d-d481c6429547 {"md5": "8d850829241cf61b2b9104a97806cd38", "pid": "A003450257", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003450257", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003450257", "source": "RERO"}], "preferred_name": "Kerlor, Anne", "authorized_access_point": "Kerlor, Anne"} 1 -2023-07-08 08:23:57.548259 2023-07-08 08:23:57.548262 dda5bcbd-41a5-42b4-93ea-c6d3ab4bef55 {"md5": "b290618d5cc294127dd8d30cf7734eb6", "pid": "A003451220", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003451220", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003451220", "source": "RERO"}], "preferred_name": "Kessler, Herbert", "authorized_access_point": "Kessler, Herbert"} 1 -2023-07-08 08:23:57.611564 2023-07-08 08:23:57.611567 7cd54f39-eafd-45cb-af39-f374830c8922 {"md5": "af53e0313e3d5d54b41d1f62f9106f85", "pid": "A003453966", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003453966", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003453966", "source": "RERO"}], "preferred_name": "Kim, Il-Su", "authorized_access_point": "Kim, Il-Su"} 1 -2023-07-08 08:23:57.683095 2023-07-08 08:23:57.6831 96e98834-134a-4c68-bc84-1bde9dc137db {"md5": "3f9a3bc18da925c636ce7cbb286694b6", "pid": "A003454418", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003454418", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003454418", "source": "RERO"}], "preferred_name": "Kind, Norbert", "authorized_access_point": "Kind, Norbert"} 1 -2023-07-08 08:23:57.753312 2023-07-08 08:23:57.753317 0db09652-73b8-4584-8521-fbbb9c46e7d0 {"md5": "2c645532203c2fd1d91853c0f917d173", "pid": "A003454993", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003454993", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003454993", "source": "RERO"}], "preferred_name": "Kingma, J", "authorized_access_point": "Kingma, J"} 1 -2023-07-08 08:23:57.823706 2023-07-08 08:23:57.823716 f0974663-9745-45aa-b3d1-19dd03313ffe {"md5": "f5cdc3e52ee732a776bf8df3643856b2", "pid": "A003462661", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003462661", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003462661", "source": "RERO"}], "preferred_name": "Knudsen, Robert D", "authorized_access_point": "Knudsen, Robert D"} 1 -2023-07-08 08:23:57.908567 2023-07-08 08:23:57.908573 1a657e01-7c38-463e-886d-e6108f12c3f2 {"md5": "3b2003e4676127437091400b52a709c9", "pid": "A003469619", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003469619", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003469619", "source": "RERO"}], "preferred_name": "Kossmann, Ernst Heinrich", "authorized_access_point": "Kossmann, Ernst Heinrich"} 1 -2023-07-08 08:23:58.009376 2023-07-08 08:23:58.009381 292a4595-9cc9-4310-ae82-98e8cb639555 {"md5": "e6712213fbae42c57e55858c448e075f", "pid": "A003471135", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003471135", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003471135", "source": "RERO"}], "preferred_name": "Kozlowski, Richard", "authorized_access_point": "Kozlowski, Richard"} 1 -2023-07-08 08:23:58.103328 2023-07-08 08:23:58.103333 41be8a00-8db7-4b04-a079-f9c99c1db9fb {"md5": "a9f5082b9fe5754b794bec314e3be44f", "pid": "A003471767", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003471767", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003471767", "source": "RERO"}], "preferred_name": "Kraft, Roger", "authorized_access_point": "Kraft, Roger"} 1 -2023-07-08 08:23:58.187023 2023-07-08 08:23:58.187029 629c93de-ba5e-44fe-bc8c-8814ab126732 {"md5": "01e4758bd51d2e99c33637dc5fde90ea", "pid": "A003477398", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003477398", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003477398", "source": "RERO"}], "preferred_name": "Krüger, Sabine", "authorized_access_point": "Krüger, Sabine"} 1 -2023-07-08 08:23:58.259193 2023-07-08 08:23:58.259199 cbcd9b3a-dfd0-4dcc-8fab-fc663d557b89 {"md5": "4d9799663c7c3658050ce244b678e704", "pid": "A003483779", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003483779", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003483779", "source": "RERO"}], "preferred_name": "Kübler, E", "authorized_access_point": "Kübler, E"} 1 -2023-07-08 08:23:58.346855 2023-07-08 08:23:58.346865 23eea8b6-a3d5-4990-8ef8-e3299c6c0ce9 {"md5": "0ce978bd08090782b582e1094c5ceb0d", "pid": "A003483806", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003483806", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003483806", "source": "RERO"}], "preferred_name": "Kübler, W", "authorized_access_point": "Kübler, W"} 1 -2023-07-08 08:23:58.424952 2023-07-08 08:23:58.424956 84c5070b-3be9-4a8e-9775-e4346214efa2 {"md5": "3a09729576f985de9e69cc399b9c6e37", "pid": "A003484799", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003484799", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003484799", "source": "RERO"}], "preferred_name": "Kéry, Bertalan", "authorized_access_point": "Kéry, Bertalan"} 1 -2023-07-08 08:23:58.490375 2023-07-08 08:23:58.490383 d337f3e2-bf30-45e7-866b-074e2c9db15c {"md5": "c7f99605ea2c974d64271eb18bb2e21c", "pid": "A003488727", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003488727", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003488727", "source": "RERO"}], "preferred_name": "Laffont, Pierre", "authorized_access_point": "Laffont, Pierre"} 1 -2023-07-08 08:23:58.585904 2023-07-08 08:23:58.585915 4ab3c9f8-0624-4776-83d8-af157c92eaec {"md5": "1a8f76329156f0d76e97e1334f226ad3", "pid": "A003489212", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003489212", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003489212", "source": "RERO"}], "preferred_name": "Lagerberg, Eric", "authorized_access_point": "Lagerberg, Eric"} 1 -2023-07-08 08:23:58.680605 2023-07-08 08:23:58.680608 8e529aef-5e5f-4b27-bfe4-ce24513fba60 {"md5": "5da037b9ec7a6e35943cfccbd198608d", "pid": "A003489450", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003489450", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003489450", "source": "RERO"}], "preferred_name": "Lagowski, Jeanne M", "authorized_access_point": "Lagowski, Jeanne M"} 1 -2023-07-08 08:23:58.771895 2023-07-08 08:23:58.771903 3f5c4711-ad2d-4c6b-afe4-f5284a1602ac {"md5": "611d09d65a0a0d4baf2a54d37f625306", "pid": "A003490603", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003490603", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003490603", "source": "RERO"}], "preferred_name": "Lalonde, M", "authorized_access_point": "Lalonde, M"} 1 -2023-07-08 08:23:58.871237 2023-07-08 08:23:58.871241 d328a042-1349-4041-a24c-a9bdbac11b74 {"md5": "04155a02d6128d906d39d006f0643e06", "pid": "A003491429", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003491429", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003491429", "source": "RERO"}], "variant_name": ["Lambert, William Wilson"], "preferred_name": "Lambert, William W", "variant_access_point": ["Lambert, William Wilson"], "authorized_access_point": "Lambert, William W"} 1 -2023-07-08 08:23:58.959096 2023-07-08 08:23:58.959102 34008159-3937-48c4-bea2-d5f9355d3da0 {"md5": "2c58aebb4e5dbecffcf46f147904affa", "pid": "A003491460", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003491460", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003491460", "source": "RERO"}], "preferred_name": "Lamberti, Franco", "authorized_access_point": "Lamberti, Franco"} 1 -2023-07-08 08:23:59.043457 2023-07-08 08:23:59.043466 39d578d0-da23-4175-8e8d-a469b46e8478 {"md5": "88d497581c4b5c2a65e79a979017e717", "pid": "A003491484", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003491484", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003491484", "source": "RERO"}], "preferred_name": "Lamberton, Ch", "authorized_access_point": "Lamberton, Ch"} 1 -2023-07-08 08:23:59.151799 2023-07-08 08:23:59.151811 793c2482-e60b-43da-945a-160a0d858237 {"md5": "f6927f3318737dc4891f1e427abfdedf", "pid": "A003492458", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003492458", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003492458", "source": "RERO"}], "preferred_name": "Lanati, Barbara", "authorized_access_point": "Lanati, Barbara"} 1 -2023-07-08 08:23:59.222051 2023-07-08 08:23:59.222056 e0ad8ee0-9bef-40b8-8233-c6e7d8ac92be {"md5": "3d9ba6a3d5fa2f5c4b892b36f366ee95", "pid": "A003494285", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003494285", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003494285", "source": "RERO"}], "preferred_name": "Lange, Bastian", "authorized_access_point": "Lange, Bastian"} 1 -2023-07-08 08:23:59.314669 2023-07-08 08:23:59.314674 c44f0827-4cb5-4e70-8c6d-4a426df15082 {"md5": "9a7666ee69b1ea8af110ecc92afb7cc1", "pid": "A003497728", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003497728", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003497728", "source": "RERO"}], "preferred_name": "Lascarides, Emanuel", "authorized_access_point": "Lascarides, Emanuel"} 1 -2023-07-08 08:23:59.396785 2023-07-08 08:23:59.396795 27a11466-5eec-4678-8c67-d3bec4c16069 {"md5": "ee3a8e43b2623aaa1c33dbf6d9e5952f", "pid": "A003501142", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003501142", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003501142", "source": "RERO"}], "preferred_name": "Lavenarde, J", "authorized_access_point": "Lavenarde, J"} 1 -2023-07-08 08:23:59.467667 2023-07-08 08:23:59.467676 3b39d40a-d682-4c69-9739-9b55d69ec749 {"md5": "5b6ce3202a9a36e87020d02cc7881c18", "pid": "A003507812", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003507812", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003507812", "source": "RERO"}], "preferred_name": "Leeson, Frank", "authorized_access_point": "Leeson, Frank"} 1 -2023-07-08 08:23:59.558131 2023-07-08 08:23:59.558136 e1016d29-0e8a-4bdc-90a0-e77198af5795 {"md5": "08bee7bb26488ba5f59d30437cf0d048", "pid": "A003508662", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003508662", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003508662", "source": "RERO"}], "preferred_name": "Legorjus, Philippe", "authorized_access_point": "Legorjus, Philippe"} 1 -2023-07-08 08:23:59.647358 2023-07-08 08:23:59.647369 0a3a6d6b-61ff-4fcf-b2e0-e68609bd13a4 {"md5": "370a47d2dd64a0ebf64aacb8f73edaae", "pid": "A003510150", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003510150", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003510150", "source": "RERO"}], "preferred_name": "Leimberg, Inge", "authorized_access_point": "Leimberg, Inge"} 1 -2023-07-08 08:23:59.722689 2023-07-08 08:23:59.722695 27eee3a1-6a69-45f9-8d09-070cbc901425 {"md5": "efaa9d9053ca940ff9bf5e2d1cdc5062", "pid": "A003511981", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003511981", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003511981", "source": "RERO"}], "preferred_name": "Lenaz, Luciano", "authorized_access_point": "Lenaz, Luciano"} 1 -2023-07-08 08:23:59.789507 2023-07-08 08:23:59.789512 90b7d8fa-ab09-4b2e-88bd-9380edbc430d {"md5": "303569c31f4901155b14443097219c50", "pid": "A003514292", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003514292", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003514292", "source": "RERO"}], "preferred_name": "Leron, Uri", "authorized_access_point": "Leron, Uri"} 1 -2023-07-08 08:23:59.877801 2023-07-08 08:23:59.877806 942e11b3-15c6-4344-8a45-abdbeb60d9a8 {"md5": "51301fc380f5151ac16abc922ad1412f", "pid": "A003516733", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003516733", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003516733", "source": "RERO"}], "date_of_birth": "1839", "date_of_death": "1900", "preferred_name": "Levi, Hermann,", "authorized_access_point": "Levi, Hermann, 1839-1900"} 1 -2023-07-08 08:23:59.977381 2023-07-08 08:23:59.977386 db046daa-7671-4c4e-9563-bd769acd371f {"md5": "e77428313bbcbf638e55e52c42d09557", "pid": "A003517040", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003517040", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003517040", "source": "RERO"}], "preferred_name": "Levine, Daniel U", "authorized_access_point": "Levine, Daniel U"} 1 -2023-07-08 08:24:00.07233 2023-07-08 08:24:00.072339 d558a0b5-7cf8-4e94-86d4-18e264b27467 {"md5": "a3af38973376ed5ff73182a103de9b9c", "pid": "A003517060", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003517060", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003517060", "source": "RERO"}], "preferred_name": "Levine, Gemma", "authorized_access_point": "Levine, Gemma"} 1 -2023-07-08 08:24:00.162222 2023-07-08 08:24:00.162229 1ab3a117-c751-4f99-93f9-c92f980fb8f5 {"md5": "ba77169d0ab4aad2d9865d99bd6a64be", "pid": "A003518724", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003518724", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003518724", "source": "RERO"}], "preferred_name": "León Rey, José Antonio", "authorized_access_point": "León Rey, José Antonio"} 1 -2023-07-08 08:24:00.234249 2023-07-08 08:24:00.234257 c8a1bdcf-4f5f-4eed-b680-482bae00075f {"md5": "119877189028fc486291ae974f518990", "pid": "A003520958", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003520958", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003520958", "source": "RERO"}], "preferred_name": "Liesegang, Helmuth", "authorized_access_point": "Liesegang, Helmuth"} 1 -2023-07-08 08:24:00.317545 2023-07-08 08:24:00.317551 c58e6d10-37c9-46bb-a13c-24565ee06812 {"md5": "da96cdf65d5aad8cacbc4fab3bed2085", "pid": "A003531526", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003531526", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003531526", "source": "RERO"}], "preferred_name": "Lornell, Kip", "authorized_access_point": "Lornell, Kip"} 1 -2023-07-08 08:24:00.396194 2023-07-08 08:24:00.396202 b29ffa57-a711-4930-904a-bddeeb18af8e {"md5": "ca735aa1fa9ba75cfc2c96279eddd6ee", "pid": "A003531595", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003531595", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003531595", "source": "RERO"}], "variant_name": ["Jacob, Bernard Lortat-,"], "date_of_birth": "1941", "preferred_name": "Lortat-Jacob, Bernard,", "variant_access_point": ["Jacob, Bernard Lortat-, 1941-"], "authorized_access_point": "Lortat-Jacob, Bernard, 1941-", "biographical_information": ["Ethnomusicologue. - Directeur de recherche au CNRS et responsable du Laboratoire d'ethnomusicologie CBRS du Musée de l'homme, Paris (en 2001)"]} 1 -2023-07-08 08:24:00.48876 2023-07-08 08:24:00.488764 9b1bc156-9aa0-42af-a596-0daf704676a7 {"md5": "f02680d5ce4321c62d673b134e7109db", "pid": "A003531943", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003531943", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003531943", "source": "RERO"}], "preferred_name": "Lot, Fernand", "authorized_access_point": "Lot, Fernand"} 1 -2023-07-08 08:24:00.585639 2023-07-08 08:24:00.585646 e040b78d-fa55-4f8a-b5c8-d454ff10ab8d {"md5": "15bbd1ab451e43ad41b961eb452270f0", "pid": "A003538407", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003538407", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003538407", "source": "RERO"}], "preferred_name": "Lye, Kare Arnstein", "authorized_access_point": "Lye, Kare Arnstein"} 1 -2023-07-08 08:24:00.654807 2023-07-08 08:24:00.654812 f67da010-274a-4200-adf6-b47483db0282 {"md5": "57d647e5c1fa52303655b1a4cce65703", "pid": "A003542278", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003542278", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003542278", "source": "RERO"}], "preferred_name": "MacBeth, Brian S", "authorized_access_point": "MacBeth, Brian S"} 1 -2023-07-08 08:24:00.739341 2023-07-08 08:24:00.739348 cd2d5829-9a66-4dbc-88f3-2f505ecc03b0 {"md5": "370b9b8f99c97876440b45d1e07ae16b", "pid": "A003543183", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003543183", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003543183", "source": "RERO"}], "preferred_name": "Macconnell, R.A", "authorized_access_point": "Macconnell, R.A"} 1 -2023-07-08 08:24:00.841417 2023-07-08 08:24:00.841422 6d1efdfe-e189-4292-95d0-aa9927b63d25 {"md5": "cdfe94166b046299c0281c8678bd6bba", "pid": "A003544201", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003544201", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003544201", "source": "RERO"}], "variant_name": ["MacEachern, Claire,", "Mac Eachern, Claire,", "Mc Eachern, Claire,"], "date_of_birth": "1963", "preferred_name": "McEachern, Claire,", "variant_access_point": ["MacEachern, Claire, 1963-", "Mac Eachern, Claire, 1963-", "Mc Eachern, Claire, 1963-"], "authorized_access_point": "McEachern, Claire, 1963-"} 1 -2023-07-08 08:24:00.951414 2023-07-08 08:24:00.951422 424dc523-85ad-4d90-b060-832b5c4d15b6 {"md5": "43e82cafaa462d1ea1ee47c8dd2289b7", "pid": "A003546689", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003546689", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003546689", "source": "RERO"}], "preferred_name": "MacLaughlin, John A", "authorized_access_point": "MacLaughlin, John A"} 1 -2023-07-08 08:24:01.049203 2023-07-08 08:24:01.049216 81c6606c-958e-4b9f-b2fb-39ef1087f46b {"md5": "601b9177ccded59df202626d464d83f1", "pid": "A003550856", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003550856", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003550856", "source": "RERO"}], "preferred_name": "Mahlow, Georg Heinrich", "authorized_access_point": "Mahlow, Georg Heinrich"} 1 -2023-07-08 08:24:01.1372 2023-07-08 08:24:01.137204 543b782e-5c73-4879-b4fb-b94ddf250d88 {"md5": "57cb7f1a2a327dfbccc3f0b2b3ccabc3", "pid": "A003552034", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003552034", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003552034", "source": "RERO"}], "preferred_name": "Mainié, Philippe", "authorized_access_point": "Mainié, Philippe"} 1 -2023-07-08 08:24:01.216936 2023-07-08 08:24:01.21694 9efc503a-4d8e-40fc-904c-3ff7d2d326a6 {"md5": "7294a31ab84d871a45941a8ab698e454", "pid": "A003552475", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003552475", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003552475", "source": "RERO"}], "preferred_name": "Maister, David H", "authorized_access_point": "Maister, David H"} 1 -2023-07-08 08:24:01.305323 2023-07-08 08:24:01.305329 f4eed5e4-8549-4d82-a5e8-97a36c1cde8e {"md5": "fc61dd0bf1dea3bf51a859239bcba245", "pid": "A003556987", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003556987", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003556987", "source": "RERO"}], "preferred_name": "Maniguet, Xavier", "authorized_access_point": "Maniguet, Xavier"} 1 -2023-07-08 08:24:01.412316 2023-07-08 08:24:01.412324 80acf7ed-222b-483a-a703-5e741e4cd727 {"md5": "932a50fa314f1c1fa17c50c6873e05f7", "pid": "A003557648", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "marquise", "identifier": "http://data.rero.ch/02-A003557648", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003557648", "source": "RERO"}], "variant_name": ["Coeur-Brûlant, vicomtesse de", "Manoury, H. de", "Ectot, H. de Mannoury d'", "Nicolas Le Blanc, H", "Le Blanc, H. Nicolas"], "preferred_name": "Mannoury d'Ectot, H. de, marquise", "variant_access_point": ["Coeur-Brûlant, vicomtesse de", "Manoury, H. de", "Ectot, H. de Mannoury d'", "Nicolas Le Blanc, H", "Le Blanc, H. Nicolas"], "authorized_access_point": "Mannoury d'Ectot, H. de, marquise"} 1 -2023-07-08 08:24:01.489996 2023-07-08 08:24:01.490002 77db8552-e86c-4a56-9a59-7912c820ee92 {"md5": "5fa6274c4474e7d04d316a67496f1429", "pid": "A003557956", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003557956", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003557956", "source": "RERO"}], "preferred_name": "Mansi, Mensi Nouri", "authorized_access_point": "Mansi, Mensi Nouri"} 1 -2023-07-08 08:24:01.555915 2023-07-08 08:24:01.555922 98442130-5958-4717-ad31-433dc1e659bb {"md5": "9563b66119338cbf29e6ca8f123a8b2b", "pid": "A003561750", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003561750", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003561750", "source": "RERO"}], "preferred_name": "Mariani, Jean", "authorized_access_point": "Mariani, Jean"} 1 -2023-07-08 08:24:01.639065 2023-07-08 08:24:01.639073 c9e46f43-d16d-40db-89b6-dc2c2cc4a0d5 {"md5": "14165e89f9a6221b31a0a6c02ed74e10", "pid": "A003562973", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003562973", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003562973", "source": "RERO"}], "preferred_name": "Markham, Adam", "authorized_access_point": "Markham, Adam"} 1 -2023-07-08 08:24:01.721697 2023-07-08 08:24:01.721703 531b0a90-7bfe-4e52-bf65-85e9b7a28e4e {"md5": "3eb90f587458c392a3915eae7839e8db", "pid": "A003564111", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003564111", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003564111", "source": "RERO"}], "preferred_name": "Marquis, Jean-François", "authorized_access_point": "Marquis, Jean-François"} 1 -2023-07-08 08:24:01.806045 2023-07-08 08:24:01.80605 39c97953-4a97-43a6-aae0-8ccfdab367e5 {"md5": "ee3fa21447e4f24c493e67bf69f0c9d8", "pid": "A003566329", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003566329", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003566329", "source": "RERO"}], "preferred_name": "Martin, James G", "authorized_access_point": "Martin, James G"} 1 -2023-07-08 08:24:01.889353 2023-07-08 08:24:01.88936 fd1cc132-5b22-4fa6-a171-05f3d120e350 {"md5": "c8c976482de7d25e24c96a471420202c", "pid": "A003568779", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003568779", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003568779", "source": "RERO"}], "preferred_name": "Marvelli, Sergio", "authorized_access_point": "Marvelli, Sergio"} 1 -2023-07-08 08:24:01.985549 2023-07-08 08:24:01.98556 eb3c5567-eff7-408d-ad5d-7e951ba95904 {"md5": "3870f4cfb50fd7e01d4c855c3db15a29", "pid": "A003569699", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003569699", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003569699", "source": "RERO"}], "preferred_name": "Masera, Carlo", "authorized_access_point": "Masera, Carlo"} 1 -2023-07-08 08:24:02.076716 2023-07-08 08:24:02.076721 78d73a71-af8f-4b92-a6fe-a71db590c15c {"md5": "47363f9beec2acb1213d8d041aea76d5", "pid": "A003572511", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003572511", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003572511", "source": "RERO"}], "preferred_name": "Matko, Dubravko J.I", "authorized_access_point": "Matko, Dubravko J.I"} 1 -2023-07-08 08:24:02.170766 2023-07-08 08:24:02.170776 19868fec-c5b7-4154-86e3-d377b95ea51c {"md5": "1f59e613f9d2d138d59b71fba9243821", "pid": "A003572877", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003572877", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003572877", "source": "RERO"}], "preferred_name": "Matteaccioli, Andrée", "authorized_access_point": "Matteaccioli, Andrée"} 1 -2023-07-08 08:24:02.272309 2023-07-08 08:24:02.272313 31b98e44-8f6d-4f6e-a3ca-ef9b91d2dbaf {"md5": "9e198d618531aa25a3872a9c2208eb69", "pid": "A003575662", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003575662", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003575662", "source": "RERO"}], "preferred_name": "Mavituna, Ferda", "authorized_access_point": "Mavituna, Ferda"} 1 -2023-07-08 08:24:02.353766 2023-07-08 08:24:02.353774 874fa867-4825-4bc3-b877-73b162efb166 {"md5": "87584e1cc5a47d930d5f31702f351de8", "pid": "A003578228", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003578228", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003578228", "source": "RERO"}], "preferred_name": "Mazé, Philippe", "authorized_access_point": "Mazé, Philippe"} 1 -2023-07-08 08:24:02.440879 2023-07-08 08:24:02.440885 f94f0685-f35c-4ce2-8753-67536c943b7f {"md5": "32c976c1d386f69bdbbd0db0cf439fa4", "pid": "A003582881", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003582881", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003582881", "source": "RERO"}], "preferred_name": "Menakaya, Clara Ogugua Ch. Nwabufo", "authorized_access_point": "Menakaya, Clara Ogugua Ch. Nwabufo"} 1 -2023-07-08 08:24:02.540297 2023-07-08 08:24:02.540303 d77db264-f05e-457c-a1fa-8f4f0f707ef4 {"md5": "50740a813e78e908478e0ca15cbe4dcd", "pid": "A003588222", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003588222", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003588222", "source": "RERO"}], "preferred_name": "Metzger, Othmar", "authorized_access_point": "Metzger, Othmar"} 1 -2023-07-08 08:24:02.60729 2023-07-08 08:24:02.607296 ddd702e2-3ce1-43b1-8c64-3dc98cc42285 {"md5": "0b896ea2caab1ee8b65c8fdf9b592976", "pid": "A003588933", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003588933", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003588933", "source": "RERO"}], "preferred_name": "Meyer, Armand", "authorized_access_point": "Meyer, Armand"} 1 -2023-07-08 08:24:02.698364 2023-07-08 08:24:02.698368 8ff12dce-b6ec-45cc-b24d-70386e035aac {"md5": "68c6b6f3e257ce0ec1edae9eefd1e3da", "pid": "A003594199", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003594199", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003594199", "source": "RERO"}], "preferred_name": "Milanowski, Włodzimierz", "authorized_access_point": "Milanowski, Włodzimierz"} 1 -2023-07-08 08:24:02.791269 2023-07-08 08:24:02.791276 5ad82790-7a03-46db-ac23-6fa1c6c3ae48 {"md5": "b6feb68c532654f4376fdd86a1fcfa50", "pid": "A003596440", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003596440", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003596440", "source": "RERO"}], "preferred_name": "Milne, Herbert John Mansfield", "authorized_access_point": "Milne, Herbert John Mansfield"} 1 -2023-07-08 08:24:02.884532 2023-07-08 08:24:02.88454 414d844d-155c-449c-8cdb-77cb1e3b6758 {"md5": "7f9709a6a8fb42e46a7f3b853b14abbd", "pid": "A003597080", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003597080", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003597080", "source": "RERO"}], "preferred_name": "Mineo, Ennio Igor", "authorized_access_point": "Mineo, Ennio Igor"} 1 -2023-07-08 08:24:02.970816 2023-07-08 08:24:02.970825 28eb0fc1-a9d3-406f-bfe8-1a1c4a35c3e2 {"md5": "d27f5869374102c118a6e374096be7a3", "pid": "A003600525", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A003600525", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003600525", "source": "RERO"}], "preferred_name": "Modern Critical Theory Group (Cambridge)", "authorized_access_point": "Modern Critical Theory Group (Cambridge)"} 1 -2023-07-08 08:24:03.064399 2023-07-08 08:24:03.064406 6a2b1056-76fc-4099-963b-6353d84c4338 {"md5": "d5bb46a079bc374ecf54041aebaee543", "pid": "A003600526", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A003600526", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003600526", "source": "RERO"}], "preferred_name": "Modern Foreign Language Study", "authorized_access_point": "Modern Foreign Language Study"} 1 -2023-07-08 08:24:03.167131 2023-07-08 08:24:03.167134 c7c00379-2a64-428d-a320-9fafc00ef09f {"md5": "5149051c013e27f92552c33c9602bc28", "pid": "A003604534", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003604534", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003604534", "source": "RERO"}], "preferred_name": "Monroe, Burt L", "authorized_access_point": "Monroe, Burt L"} 1 -2023-07-08 08:24:03.244831 2023-07-08 08:24:03.244834 ec97441e-bcee-42d8-bafe-2dfa56cfec15 {"md5": "fac03d7866f144f4c73511439cea3eaa", "pid": "A003610796", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003610796", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003610796", "source": "RERO"}], "preferred_name": "Morozzi, Cristina", "authorized_access_point": "Morozzi, Cristina"} 1 -2023-07-08 08:24:03.322639 2023-07-08 08:24:03.322643 522892de-cd95-475e-b871-4cab2afc9212 {"md5": "d7332048f905be97927767fe1ec18541", "pid": "A003611548", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003611548", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003611548", "source": "RERO"}], "preferred_name": "Morse, Marston", "authorized_access_point": "Morse, Marston"} 1 -2023-07-08 08:24:03.423147 2023-07-08 08:24:03.423154 1b496ce4-3ddb-4ae8-b1d1-3d084ff58c22 {"md5": "87d3fbde6ed539e10952e8421db37d02", "pid": "A003613760", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003613760", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003613760", "source": "RERO"}], "preferred_name": "Mouché, Maman dan", "authorized_access_point": "Mouché, Maman dan"} 1 -2023-07-08 08:24:03.521457 2023-07-08 08:24:03.521462 d9794aa2-0a8f-4622-8e6e-67256d0df36f {"md5": "ca499560a06cf207864a2da78de2c90a", "pid": "A003618731", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003618731", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003618731", "source": "RERO"}], "preferred_name": "Munro, J.L", "authorized_access_point": "Munro, J.L"} 1 -2023-07-08 08:24:03.628464 2023-07-08 08:24:03.628471 31de85b0-8890-4a4a-b6c1-e8e065264466 {"md5": "4a487f2b40d31ca2c686e940fba3a6e3", "pid": "A003618791", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003618791", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003618791", "source": "RERO"}], "preferred_name": "Munsinger, Harry", "authorized_access_point": "Munsinger, Harry"} 1 -2023-07-08 08:24:03.708623 2023-07-08 08:24:03.708627 4d8e341f-98b5-41be-b3fa-2c4d86b2c932 {"md5": "c70ad845e87e9d172de12e1d42f84c6d", "pid": "A003618794", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003618794", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003618794", "source": "RERO"}], "preferred_name": "Munslow, Alun", "authorized_access_point": "Munslow, Alun"} 1 -2023-07-08 08:24:03.789261 2023-07-08 08:24:03.78927 63a8f54e-6d81-420f-9b88-4526f9064bf0 {"md5": "c4f1b49967ed69fdcaf3c52b0decbd9b", "pid": "A003619989", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003619989", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003619989", "source": "RERO"}], "preferred_name": "Murray, Kate", "authorized_access_point": "Murray, Kate"} 1 -2023-07-08 08:24:03.89187 2023-07-08 08:24:03.891877 f3bb9d20-904c-4f89-ba65-8cb598691f3e {"md5": "5202a91bc3bf0072a0918c88d1faaa49", "pid": "A003620019", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003620019", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003620019", "source": "RERO"}], "preferred_name": "Murray, Mike", "authorized_access_point": "Murray, Mike"} 1 -2023-07-08 08:24:03.986247 2023-07-08 08:24:03.986253 4a60110f-5c75-4fd5-a576-efc8f13832e3 {"md5": "143ca67b7590e1943681f186409dcb6a", "pid": "A003620351", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003620351", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003620351", "source": "RERO"}], "preferred_name": "Muschallik, Thomas", "authorized_access_point": "Muschallik, Thomas"} 1 -2023-07-08 08:24:04.087143 2023-07-08 08:24:04.08715 69dec8a5-a6f8-4df0-abce-fde25a754a72 {"md5": "c6d08b6ff9944dd9023dd0369fd98154", "pid": "A003621449", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003621449", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003621449", "source": "RERO"}], "preferred_name": "Muzzioli, Maria Pia", "authorized_access_point": "Muzzioli, Maria Pia"} 1 -2023-07-08 08:24:04.172092 2023-07-08 08:24:04.172098 3bd7829c-db1b-4968-9315-ba49b3118c3a {"md5": "b8b07c479c222441053e3068bc765a95", "pid": "A003625161", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003625161", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003625161", "source": "RERO"}], "preferred_name": "Münichsdorfer, Friedrich", "authorized_access_point": "Münichsdorfer, Friedrich"} 1 -2023-07-08 08:24:04.262384 2023-07-08 08:24:04.262396 b6856562-a34b-4ae3-ba30-4d007d9872f0 {"md5": "e79933fe50dc2ac7db9e0da63d82d950", "pid": "A003630712", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A003630712", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003630712", "source": "RERO"}], "preferred_name": "Nations Unies. Comité de l'habitation, de la construction et de la planification", "authorized_access_point": "Nations Unies. Comité de l'habitation, de la construction et de la planification"} 1 -2023-07-08 08:24:04.357534 2023-07-08 08:24:04.357539 3022ebc3-72bf-4f96-b3b8-3874e5356440 {"md5": "3ca718bbd2e495e9548fbd1b93aa8b4f", "pid": "A003632361", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003632361", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003632361", "source": "RERO"}], "preferred_name": "Navacelle, Geoffroy de", "authorized_access_point": "Navacelle, Geoffroy de"} 1 -2023-07-08 08:24:04.443755 2023-07-08 08:24:04.443764 b36db8f1-0913-482b-8759-e40b7e7d42ee {"md5": "e5fc6b0feb30fce7dad38bd23f7955e9", "pid": "A003637861", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003637861", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003637861", "source": "RERO"}], "preferred_name": "Newman, Jacob", "authorized_access_point": "Newman, Jacob"} 1 -2023-07-08 08:24:04.525264 2023-07-08 08:24:04.525271 54f0db2c-33e4-4cf0-beb3-26c85b441893 {"md5": "57aec8f415c116d8f7c64a74e599bfeb", "pid": "A003640740", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003640740", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003640740", "source": "RERO"}], "preferred_name": "Nielsen, Sandra L", "authorized_access_point": "Nielsen, Sandra L"} 1 -2023-07-08 08:24:04.622163 2023-07-08 08:24:04.622168 94642545-e09c-4bc8-80d2-a5cb05dd83e4 {"md5": "6cb1f9cbf9f73230fe6dc1740372a83a", "pid": "A003641265", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003641265", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003641265", "source": "RERO"}], "preferred_name": "Nievergelt, Dieter", "authorized_access_point": "Nievergelt, Dieter"} 1 -2023-07-08 08:24:04.708908 2023-07-08 08:24:04.708911 57b6ddbe-c039-4967-9d49-4d88fd1a7b0a {"md5": "503ee77c61cf95c4908ead039db7085c", "pid": "A003645251", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003645251", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003645251", "source": "RERO"}], "variant_name": ["Von Normann, Reinhard", "VonNormann, Reinhard"], "preferred_name": "Normann, Reinhard von", "variant_access_point": ["Von Normann, Reinhard", "VonNormann, Reinhard"], "authorized_access_point": "Normann, Reinhard von"} 1 -2023-07-08 08:24:04.802877 2023-07-08 08:24:04.80289 c5fd685c-6429-42b3-b757-9705bdbb6538 {"md5": "4c2df568d531d47ec9c7c70d2d4b0605", "pid": "A003648696", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003648696", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003648696", "source": "RERO"}], "preferred_name": "Nübling, Rüdiger", "authorized_access_point": "Nübling, Rüdiger"} 1 -2023-07-08 08:24:04.882167 2023-07-08 08:24:04.882175 10f33162-16ea-4900-bc4c-145e30a816a2 {"md5": "47d248e6b41fef4da7299590a27f07ff", "pid": "A003650297", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003650297", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003650297", "source": "RERO"}], "preferred_name": "Oakes, Guy", "authorized_access_point": "Oakes, Guy"} 1 -2023-07-08 08:24:04.971453 2023-07-08 08:24:04.971458 f30b3101-fc48-4b9b-8ead-27f457dbe5f5 {"md5": "57b8a4dd90d76ec4a216400ed0765d53", "pid": "A003650669", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003650669", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003650669", "source": "RERO"}], "preferred_name": "Oberle, Birgitta E", "authorized_access_point": "Oberle, Birgitta E"} 1 -2023-07-08 08:24:05.059309 2023-07-08 08:24:05.059315 ab9fb5da-3822-4bee-9c07-ffb6d09579c7 {"md5": "8a9c25de9d27c36dc5031900978bb564", "pid": "A003653616", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003653616", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003653616", "source": "RERO"}], "preferred_name": "Ohler, Wolfgang", "authorized_access_point": "Ohler, Wolfgang"} 1 -2023-07-08 08:24:05.14982 2023-07-08 08:24:05.149829 61e60f48-0d3f-43fe-b9c0-772142e9efdf {"md5": "a6c436d2ef57577adacf117ff461673d", "pid": "A003658765", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003658765", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003658765", "source": "RERO"}], "preferred_name": "Oriol-Boyer, Claudette", "authorized_access_point": "Oriol-Boyer, Claudette"} 1 -2023-07-08 08:24:05.23424 2023-07-08 08:24:05.234244 fc876189-c763-4423-b65c-e95cf60ee93e {"md5": "2f77e27b386b79078a1bc3ff505c2eb6", "pid": "A003660931", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003660931", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003660931", "source": "RERO"}], "preferred_name": "Osthoff, Hans-Werner", "authorized_access_point": "Osthoff, Hans-Werner"} 1 -2023-07-08 08:24:05.307242 2023-07-08 08:24:05.307246 44a9238b-9690-49cb-8754-2f474d79ea8a {"md5": "eb7d47720b0c8b875f04cbbc836537a0", "pid": "A003662299", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003662299", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003662299", "source": "RERO"}], "preferred_name": "Ouellet, Raymond", "authorized_access_point": "Ouellet, Raymond"} 1 -2023-07-08 08:24:05.38125 2023-07-08 08:24:05.381254 c21b4b70-6fea-4953-8b7c-11214d2bd04d {"md5": "db5599eddffb0f0986090669180a8974", "pid": "A003662624", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003662624", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003662624", "source": "RERO"}], "preferred_name": "Ovalle Pacheco, Andrés", "authorized_access_point": "Ovalle Pacheco, Andrés"} 1 -2023-07-08 08:24:05.472985 2023-07-08 08:24:05.47299 d17dc533-cf0f-489f-a1a7-7980c67be9b3 {"md5": "11af21ff080a679383062b9899b413f1", "pid": "A003671506", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003671506", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003671506", "source": "RERO"}], "preferred_name": "Parks, R.D", "authorized_access_point": "Parks, R.D"} 1 -2023-07-08 08:24:05.555783 2023-07-08 08:24:05.555789 f431b935-5ea1-4005-b907-6585cb3a82b3 {"md5": "54deb991a79333ffb4f0acca9642a849", "pid": "A003672170", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003672170", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003672170", "source": "RERO"}], "preferred_name": "Parry, Hugh", "authorized_access_point": "Parry, Hugh"} 1 -2023-07-08 08:24:05.663792 2023-07-08 08:24:05.663799 6fe33a85-74cc-445c-833f-38a4b36a6d71 {"md5": "b4af1c866856e357fe783d0f9bfef5e9", "pid": "A003673634", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003673634", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003673634", "source": "RERO"}], "preferred_name": "Pasquier, René", "authorized_access_point": "Pasquier, René"} 1 -2023-07-08 08:24:05.75006 2023-07-08 08:24:05.750068 b513a598-d0e4-44d8-8bb5-4f86be60c3ff {"md5": "7d1b17b0be98bbac26aaa45f756ac7db", "pid": "A003677375", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A003677375", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003677375", "source": "RERO"}], "variant_name": ["País Vasco. Secrétariat général de l'action extérieure"], "preferred_name": "País Vasco. Secretaría general de acción exterior", "variant_access_point": ["País Vasco. Secrétariat général de l'action extérieure"], "authorized_access_point": "País Vasco. Secretaría general de acción exterior"} 1 -2023-07-08 08:24:05.859102 2023-07-08 08:24:05.859108 db1fb456-932f-4235-ac5c-14ac080a1172 {"md5": "7c7a75d9e6d25d7fb01a89cbdd16fa1e", "pid": "A003679975", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003679975", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003679975", "source": "RERO"}], "preferred_name": "Pellis, Louis", "authorized_access_point": "Pellis, Louis"} 1 -2023-07-08 08:24:05.953072 2023-07-08 08:24:05.953077 01b94a97-0301-46d9-9042-a58db6daaae9 {"md5": "1122bb5d59baf7f70307757460019165", "pid": "A003681000", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A003681000", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003681000", "source": "RERO"}], "preferred_name": "Pensionnat Salve Regina (Bourguillon)", "authorized_access_point": "Pensionnat Salve Regina (Bourguillon)"} 1 -2023-07-08 08:24:06.040249 2023-07-08 08:24:06.040252 32a73f2d-cb9c-4396-936f-41aea83d8243 {"md5": "98fd8a63e5a86021521f99008ab80f7e", "pid": "A003685283", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003685283", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003685283", "source": "RERO"}], "preferred_name": "Pestieau, Pierre", "authorized_access_point": "Pestieau, Pierre"} 1 -2023-07-08 08:24:06.130567 2023-07-08 08:24:06.130573 9718eec1-a6d8-4f88-a3f6-1417c631c5d3 {"md5": "1d267f1c530457d02c81473add30f307", "pid": "A003685465", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003685465", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003685465", "source": "RERO"}], "preferred_name": "Peter, Ilka", "authorized_access_point": "Peter, Ilka"} 1 -2023-07-08 08:24:06.203851 2023-07-08 08:24:06.203858 6fdf3576-8319-4c96-9982-2d6675e9af0b {"md5": "dedc3df360eb1cdfddabf4e676d73ded", "pid": "A003688082", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003688082", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003688082", "source": "RERO"}], "preferred_name": "Peulevey, Georges L", "authorized_access_point": "Peulevey, Georges L"} 1 -2023-07-08 08:24:06.28999 2023-07-08 08:24:06.289995 031bf98a-ec56-44cd-a277-6530b1b22cf8 {"md5": "7c1b45c7c024736c59d19dc85673ed30", "pid": "A003688354", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003688354", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003688354", "source": "RERO"}], "preferred_name": "Peyron, Joseph", "authorized_access_point": "Peyron, Joseph"} 1 -2023-07-08 08:24:06.369976 2023-07-08 08:24:06.36998 d9628851-b54a-4bb6-802c-f8cf018a267c {"md5": "71d9b3ed1e84234b035a9c6077782395", "pid": "A003696554", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003696554", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003696554", "source": "RERO"}], "preferred_name": "Piper, Ronald Allen", "authorized_access_point": "Piper, Ronald Allen"} 1 -2023-07-08 08:24:06.438413 2023-07-08 08:24:06.438419 d7b807d5-bffc-446e-b112-ecd632029d18 {"md5": "93053e5e835b78ed4c5c05a9f1b84e5e", "pid": "A003699041", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003699041", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003699041", "source": "RERO"}], "preferred_name": "Plasa, Carl", "authorized_access_point": "Plasa, Carl"} 1 -2023-07-08 08:24:06.507111 2023-07-08 08:24:06.507114 24c0221a-7046-4296-adec-5fc748d56d6f {"md5": "4e560aedc7d3c90e71c0ed7961028942", "pid": "A003703519", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A003703519", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003703519", "source": "RERO"}], "preferred_name": "Polskie Towarzystwo Gleboznawcze", "authorized_access_point": "Polskie Towarzystwo Gleboznawcze"} 1 -2023-07-08 08:24:06.574588 2023-07-08 08:24:06.574592 7c9a316e-a5ba-412b-aa0b-f23e23ff31d4 {"md5": "1e7c4bfffa0703bf19a3ea8256feca40", "pid": "A003703655", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A003703655", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003703655", "source": "RERO"}], "preferred_name": "Polyphony (London)", "authorized_access_point": "Polyphony (London)"} 1 -2023-07-08 08:24:06.641604 2023-07-08 08:24:06.641608 ff76dda2-13f6-422e-9ab1-23302069dbbc {"md5": "059348a0eedbc5d95db0e87d18869ad3", "pid": "A003706170", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003706170", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003706170", "source": "RERO"}], "preferred_name": "Portenier, Claude", "authorized_access_point": "Portenier, Claude"} 1 -2023-07-08 08:24:06.721382 2023-07-08 08:24:06.721385 8f5ce99d-cd49-433b-8684-fc5d2ff0646f {"md5": "64c56d561cd2c274886963f8b6d8e12e", "pid": "A003710512", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003710512", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003710512", "source": "RERO"}], "preferred_name": "Preis, Alexandre", "parallel_access_point": ["Прейс, Александр"], "authorized_access_point": "Preis, Alexandre"} 1 -2023-07-08 08:24:06.7879 2023-07-08 08:24:06.787907 ba6223bd-62cb-4301-8c15-315878d45bf7 {"md5": "2fc978b90b153a418aaf890d331c7e32", "pid": "A003713064", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A003713064", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003713064", "source": "RERO"}], "preferred_name": "Pro Regenwald", "authorized_access_point": "Pro Regenwald"} 1 -2023-07-08 08:24:06.881943 2023-07-08 08:24:06.881957 208fbe91-bc51-42b6-b1b7-572815ef2903 {"md5": "3fa23bff05b72dc1876353baf480f22b", "pid": "A003717532", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003717532", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003717532", "source": "RERO"}], "preferred_name": "Puza, Richard", "authorized_access_point": "Puza, Richard"} 1 -2023-07-08 08:24:06.987288 2023-07-08 08:24:06.987294 bace7c12-2828-468a-91d5-b312e412b59e {"md5": "e42b5d77536ab9f2530c913316f688eb", "pid": "A003719235", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003719235", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003719235", "source": "RERO"}], "preferred_name": "Pătrășcanu, Petru V", "authorized_access_point": "Pătrășcanu, Petru V"} 1 -2023-07-08 08:24:07.084139 2023-07-08 08:24:07.084144 76d1e1b2-de7c-4c65-9db3-275147fa6fdc {"md5": "a0f0b0377b57f722ad841d26ff428d2c", "pid": "A003721710", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003721710", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003721710", "source": "RERO"}], "preferred_name": "Raaff, J.J", "authorized_access_point": "Raaff, J.J"} 1 -2023-07-08 08:24:07.182424 2023-07-08 08:24:07.182434 10676bbd-6b02-4149-b5c7-a5a531a85ff9 {"md5": "81778ea51e1233abce107cfe540ee588", "pid": "A003728520", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003728520", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003728520", "source": "RERO"}], "preferred_name": "Rath, Ingo W", "authorized_access_point": "Rath, Ingo W"} 1 -2023-07-08 08:24:07.264295 2023-07-08 08:24:07.264303 7590b913-daf4-473f-a04a-363315d59a69 {"md5": "fd2d703df8d78ff7f778680e027bcfc5", "pid": "A003733566", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003733566", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003733566", "source": "RERO"}], "preferred_name": "Regis, Roger", "authorized_access_point": "Regis, Roger"} 1 -2023-07-08 08:24:07.365823 2023-07-08 08:24:07.365834 0c31d5ee-f7ea-468b-990f-88e7f3355a5a {"md5": "f25e0638cfedc6dda33ad32cb883d622", "pid": "A003734370", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003734370", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003734370", "source": "RERO"}], "preferred_name": "Reichelt, Thomas", "authorized_access_point": "Reichelt, Thomas"} 1 -2023-07-08 08:24:07.460377 2023-07-08 08:24:07.460381 14dd9e8f-eaa9-4a2a-b831-60bcf0602f88 {"md5": "9f577f5eb444a9d944281f9b1961e078", "pid": "A003736990", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003736990", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003736990", "source": "RERO"}], "preferred_name": "Remmel, Johannes", "authorized_access_point": "Remmel, Johannes"} 1 -2023-07-08 08:24:07.55554 2023-07-08 08:24:07.555545 99421aaf-1da9-4c22-b23b-739941e10aa1 {"md5": "63182f3dace880719c079d8bab754b1b", "pid": "A003737238", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003737238", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003737238", "source": "RERO"}], "preferred_name": "Renard, Gabriel", "authorized_access_point": "Renard, Gabriel"} 1 -2023-07-08 08:24:07.650211 2023-07-08 08:24:07.65022 90decd4a-d6b2-40cc-86b0-5e2a33dffc27 {"md5": "6fe1a83a8b98ceb8b4e6e5cf131afd37", "pid": "A003743096", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003743096", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003743096", "source": "RERO"}], "preferred_name": "Rich, F", "authorized_access_point": "Rich, F"} 1 -2023-07-08 08:24:07.738399 2023-07-08 08:24:07.738405 d745c5fe-676f-4e33-b239-7259d15ed569 {"md5": "866a184f0298c89a8534930b1bf3b2e8", "pid": "A003743887", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003743887", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003743887", "source": "RERO"}], "variant_name": ["Richelet, Césare-Pierre,", "Richelet, César Pierre,"], "date_of_birth": "ca. 1626", "date_of_death": "1698", "preferred_name": "Richelet, Pierre,", "variant_access_point": ["Richelet, Césare-Pierre, ca. 1626-1698", "Richelet, César Pierre, ca. 1626-1698"], "authorized_access_point": "Richelet, Pierre, ca. 1626-1698", "biographical_information": ["Lexicographe"]} 1 -2023-07-08 08:24:08.924189 2023-07-08 08:24:08.924193 9e089fac-ef4d-4bb5-a9d3-f819e80f336b {"md5": "678d0d668554a91b20689f8cdbe08dcd", "pid": "A003794166", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003794166", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003794166", "source": "RERO"}], "preferred_name": "Schelauske, Hans Dieter", "authorized_access_point": "Schelauske, Hans Dieter"} 1 -2023-07-08 08:24:07.837893 2023-07-08 08:24:07.837898 1dc2e471-9b49-4bb4-b5fa-344736a7dc53 {"md5": "9272e4edc3bceaa0ad1755767cf8be7c", "pid": "A003744787", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003744787", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003744787", "source": "RERO"}], "variant_name": ["Ricketts, Martin J.,"], "date_of_birth": "1948", "preferred_name": "Ricketts, Martin,", "variant_access_point": ["Ricketts, Martin J., 1948-"], "authorized_access_point": "Ricketts, Martin, 1948-", "biographical_information": ["Professeur d'organisation économique à l'université de Buckingham, UK"]} 1 -2023-07-08 08:24:07.922433 2023-07-08 08:24:07.922437 0391d64a-63db-4ebc-be90-a038fc21cc79 {"md5": "6820a91ba2d229b2e564f9ad3b256a9f", "pid": "A003747661", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003747661", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003747661", "source": "RERO"}], "preferred_name": "Rindlisbacher, Otto", "authorized_access_point": "Rindlisbacher, Otto"} 1 -2023-07-08 08:24:08.009504 2023-07-08 08:24:08.00951 6884f5e2-3e59-4653-8712-3b118084cf53 {"md5": "a13230d1b69cd6cb779ae051308e9c07", "pid": "A003751647", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003751647", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003751647", "source": "RERO"}], "preferred_name": "Roberty, Eugène de", "authorized_access_point": "Roberty, Eugène de"} 1 -2023-07-08 08:24:08.076941 2023-07-08 08:24:08.076945 e338e579-8cd4-4e9f-af72-3f34f5f2f9a2 {"md5": "06adbfd74282078de50eac931a421034", "pid": "A003752143", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003752143", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003752143", "source": "RERO"}], "preferred_name": "Robinson, John Michael", "authorized_access_point": "Robinson, John Michael"} 1 -2023-07-08 08:24:08.153627 2023-07-08 08:24:08.153631 6aed21b9-b41f-4678-8c8d-fb81e3cfd516 {"md5": "36f00fc23651775b3a0cd09d67e31d34", "pid": "A003755899", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003755899", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003755899", "source": "RERO"}], "preferred_name": "Rohatynskyj, Marta", "authorized_access_point": "Rohatynskyj, Marta"} 1 -2023-07-08 08:24:08.22473 2023-07-08 08:24:08.224736 b4d8dbc2-4646-4f21-92f9-59207875b038 {"md5": "d179675204693d4c47095d46d405a321", "pid": "A003759742", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003759742", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003759742", "source": "RERO"}], "preferred_name": "Rose, Harold Bertram", "authorized_access_point": "Rose, Harold Bertram"} 1 -2023-07-08 08:24:08.298386 2023-07-08 08:24:08.298415 ca1a386b-62da-421e-889c-4a814670a646 {"md5": "28b399cc90db286cd68367ded6b8c66d", "pid": "A003763487", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003763487", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003763487", "source": "RERO"}], "preferred_name": "Roth, Anthony", "authorized_access_point": "Roth, Anthony"} 1 -2023-07-08 08:24:08.375082 2023-07-08 08:24:08.375087 6632af33-55ff-4e79-8e87-ecb4759476b0 {"md5": "6a82a52c4d05911e062d8a235b41c8f0", "pid": "A003768835", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003768835", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003768835", "source": "RERO"}], "preferred_name": "Ruchonnet, Charles", "authorized_access_point": "Ruchonnet, Charles"} 1 -2023-07-08 08:24:08.457027 2023-07-08 08:24:08.457033 07e1d2c7-4708-481e-a037-ff605e188333 {"md5": "ff3d30a2ff557a141bf53528df4a1481", "pid": "A003780412", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003780412", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003780412", "source": "RERO"}], "preferred_name": "Salisbury, Harrison Evans", "authorized_access_point": "Salisbury, Harrison Evans"} 1 -2023-07-08 08:24:08.553825 2023-07-08 08:24:08.55383 04f0e9bb-6d0b-4baf-8f04-7a7f4f813c1f {"md5": "aad512aaa159b95631f77288c79f7710", "pid": "A003781775", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003781775", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003781775", "source": "RERO"}], "preferred_name": "Salter, Richard", "authorized_access_point": "Salter, Richard"} 1 -2023-07-08 08:24:08.625541 2023-07-08 08:24:08.625546 e7749fa7-2f8f-4a62-9592-bd47f6d6ccf5 {"md5": "af1c3d97fb87699c3b34e73e33bf7dea", "pid": "A003782234", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003782234", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003782234", "source": "RERO"}], "preferred_name": "Salvá, Vicente", "authorized_access_point": "Salvá, Vicente"} 1 -2023-07-08 08:24:08.704272 2023-07-08 08:24:08.704275 aa4d7d6f-fdf1-4d41-b171-ee7af4210c8f {"md5": "242776243aab2c8b850fa9d71f31eae6", "pid": "A003783872", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003783872", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003783872", "source": "RERO"}], "preferred_name": "Sanders, Cornelis", "authorized_access_point": "Sanders, Cornelis"} 1 -2023-07-08 08:24:08.782369 2023-07-08 08:24:08.782372 15c380f0-4535-48a1-9916-652786055f67 {"md5": "4d3a7b275ecaa12166c82ea3e0bd5c81", "pid": "A003788311", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003788311", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003788311", "source": "RERO"}], "preferred_name": "Saunier, Richard E", "authorized_access_point": "Saunier, Richard E"} 1 -2023-07-08 08:24:08.851425 2023-07-08 08:24:08.851429 33042b70-74c9-43dc-be2e-e7b39e8a3fd1 {"md5": "517e1cfd65756b9f38ac11cf9484c125", "pid": "A003789261", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003789261", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003789261", "source": "RERO"}], "variant_name": ["Savile, Douglas B. O.,", "Savile, Douglas Barton Osborne,"], "date_of_birth": "1909", "date_of_death": "2000", "preferred_name": "Savile, D. B. O.,", "variant_access_point": ["Savile, Douglas B. O., 1909-2000", "Savile, Douglas Barton Osborne, 1909-2000"], "authorized_access_point": "Savile, D. B. O., 1909-2000", "biographical_information": ["Mycologue, phytopathologiste et biologiste canadien d'origine irlandaise"]} 1 -2023-07-08 08:24:08.992151 2023-07-08 08:24:08.992156 a76b6cdd-1d94-4c5e-a996-24e328250cb2 {"md5": "b5cdb788df4d775f2e8c0dc9dc00f775", "pid": "A003794394", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003794394", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003794394", "source": "RERO"}], "preferred_name": "Schellhase, Karl", "authorized_access_point": "Schellhase, Karl"} 1 -2023-07-08 08:24:09.062397 2023-07-08 08:24:09.062401 f032eeed-ca47-4cae-abce-f5eb5c38da19 {"md5": "efef68148883f1d39b4912f7c440ca3e", "pid": "A003794788", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003794788", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003794788", "source": "RERO"}], "preferred_name": "Schenker, Franz", "authorized_access_point": "Schenker, Franz"} 1 -2023-07-08 08:24:09.152446 2023-07-08 08:24:09.152454 a43019ac-cc67-438f-887f-a08fb56ff56f {"md5": "ceca023bd6eb35b9380dcb3b6f156f4c", "pid": "A003795823", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003795823", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003795823", "source": "RERO"}], "preferred_name": "Schick, Frederic", "authorized_access_point": "Schick, Frederic"} 1 -2023-07-08 08:24:09.247274 2023-07-08 08:24:09.247279 2b5cdc4f-5be3-4e2c-a8a5-0a65db6e7d7a {"md5": "ccc8d4c164131dd0975f43d566179501", "pid": "A003795824", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003795824", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003795824", "source": "RERO"}], "preferred_name": "Schick, Friedrike", "authorized_access_point": "Schick, Friedrike"} 1 -2023-07-08 08:24:09.339497 2023-07-08 08:24:09.339501 bf405840-c69f-4c93-ae5e-74b644f68936 {"md5": "e32ec6517c2bde36fa7400819b7ff5d1", "pid": "A003797257", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003797257", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003797257", "source": "RERO"}], "preferred_name": "Schipper, Lee", "authorized_access_point": "Schipper, Lee"} 1 -2023-07-08 08:24:09.443655 2023-07-08 08:24:09.443662 c51ebcc1-9a4c-4d88-be85-d21db2c48c40 {"md5": "3ac04e33c221d1f383abd4ef3518c449", "pid": "A003808479", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003808479", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003808479", "source": "RERO"}], "preferred_name": "Schuessler, Karl", "authorized_access_point": "Schuessler, Karl"} 1 -2023-07-08 08:24:09.533357 2023-07-08 08:24:09.533365 05a551b1-01fe-4446-95ec-8f75041e4bab {"md5": "d3cfc59f4f4f353813659fc5d5600a99", "pid": "A003808958", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003808958", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003808958", "source": "RERO"}], "preferred_name": "Schulte, Doris", "authorized_access_point": "Schulte, Doris"} 1 -2023-07-08 08:24:09.62367 2023-07-08 08:24:09.623675 7133b890-c8d3-4d0f-a497-6eaa453578bb {"md5": "4d1196071bed56761d4115f9fadc9469", "pid": "A003809251", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003809251", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003809251", "source": "RERO"}], "preferred_name": "Schultz, Eugen", "parallel_access_point": ["Шульц, Евгений"], "authorized_access_point": "Schultz, Eugen"} 1 -2023-07-08 08:24:09.713037 2023-07-08 08:24:09.713044 8edaf9c5-ecc2-4d00-a703-937c2963bea7 {"md5": "d3d37b608a6bdec6a6a77f574ebe665c", "pid": "A003811660", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003811660", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003811660", "source": "RERO"}], "preferred_name": "Schwartz, Baruch J", "authorized_access_point": "Schwartz, Baruch J"} 1 -2023-07-08 08:24:09.804829 2023-07-08 08:24:09.804838 d18d8002-cbc5-4ecf-8e66-6e16c1188c05 {"md5": "0833fe74a7a1ad446bef2c69c378df91", "pid": "A003813334", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003813334", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003813334", "source": "RERO"}], "preferred_name": "Schwersky, Uwe", "authorized_access_point": "Schwersky, Uwe"} 1 -2023-07-08 08:24:09.904681 2023-07-08 08:24:09.904689 b0754bd2-e92f-4d54-93b0-b62aab72b27e {"md5": "d7c78ae9ad7e46a0fae20e550603e488", "pid": "A003817832", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003817832", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003817832", "source": "RERO"}], "preferred_name": "Seebohm, Thomas M", "authorized_access_point": "Seebohm, Thomas M"} 1 -2023-07-08 08:24:10.001161 2023-07-08 08:24:10.001164 5f9718a0-a90b-40d0-a685-48881bf09b9a {"md5": "c000516aa7cbc547a57fadb01fd2fec3", "pid": "A003819619", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003819619", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003819619", "source": "RERO"}], "preferred_name": "Seitz, Karl Joseph", "authorized_access_point": "Seitz, Karl Joseph"} 1 -2023-07-08 08:24:10.093276 2023-07-08 08:24:10.093282 4ebb68b1-1569-41da-9432-3968869a659d {"md5": "5954abcdbc2f5d33ecd54e11c7cd109b", "pid": "A003822497", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003822497", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003822497", "source": "RERO"}], "preferred_name": "Sereni, Ada", "authorized_access_point": "Sereni, Ada"} 1 -2023-07-08 08:24:10.189905 2023-07-08 08:24:10.189916 0fb0108c-672e-41fb-8723-c5bbb029493b {"md5": "c71ed0746adb38c6ccfc1e8eb689474a", "pid": "A003825451", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003825451", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003825451", "source": "RERO"}], "preferred_name": "Shanks, Daniel", "authorized_access_point": "Shanks, Daniel"} 1 -2023-07-08 08:24:10.317175 2023-07-08 08:24:10.317182 99e1d2fb-be4d-4562-ab6e-9e34d70085c9 {"md5": "e1305b09ee906809390bbe7576c96878", "pid": "A003827438", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003827438", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003827438", "source": "RERO"}], "preferred_name": "Sherman, Paul B", "authorized_access_point": "Sherman, Paul B"} 1 -2023-07-08 08:24:10.408694 2023-07-08 08:24:10.408699 4799672e-992d-4f70-912f-493a39f9b7c4 {"md5": "c6edea96f028077b18242554da7eac38", "pid": "A003827929", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003827929", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003827929", "source": "RERO"}], "preferred_name": "Shimizu, Akitoshi", "authorized_access_point": "Shimizu, Akitoshi"} 1 -2023-07-08 08:24:10.524455 2023-07-08 08:24:10.524462 7c7a3629-14d6-4a4f-9207-aeee74ea7f3b {"md5": "407e984bb9f2bc691f672614f3003ffa", "pid": "A003829549", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003829549", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003829549", "source": "RERO"}], "preferred_name": "Siddiqi, M.M", "authorized_access_point": "Siddiqi, M.M"} 1 -2023-07-08 08:24:10.614138 2023-07-08 08:24:10.614144 02d13c38-0f1f-46ff-8ab4-c5750b12e081 {"md5": "b86ffecc41bc0295dddd415bc9c88e25", "pid": "A003830445", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003830445", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003830445", "source": "RERO"}], "preferred_name": "Siegmund, Bernhard", "authorized_access_point": "Siegmund, Bernhard"} 1 -2023-07-08 08:24:10.694199 2023-07-08 08:24:10.694204 d1e3a896-2eb2-43e8-90cc-098b611b116a {"md5": "16ac2451d461248aa68a912b2197bfb1", "pid": "A003833071", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003833071", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003833071", "source": "RERO"}], "preferred_name": "Simon, George T", "authorized_access_point": "Simon, George T"} 1 -2023-07-08 08:24:10.775289 2023-07-08 08:24:10.775294 40700278-e760-4baa-a5db-e80d6f5db7eb {"md5": "4fc8e16b35c12622882fa119783b6fec", "pid": "A003835588", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003835588", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003835588", "source": "RERO"}], "preferred_name": "Sirch, Bernhard", "authorized_access_point": "Sirch, Bernhard"} 1 -2023-07-08 08:24:10.848852 2023-07-08 08:24:10.848855 e1826820-f930-48cb-b430-30e673cda688 {"md5": "63dd57e4552367756b4d20fd4bf9b138", "pid": "A003839353", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003839353", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003839353", "source": "RERO"}], "preferred_name": "Smith, Hilrie Shelton", "authorized_access_point": "Smith, Hilrie Shelton"} 1 -2023-07-08 08:24:10.924023 2023-07-08 08:24:10.924029 90378ad1-12a8-4035-8e74-2e0b8d2d70e9 {"md5": "532890a41d79c437e39af4b7c2b4f121", "pid": "A003840255", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003840255", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003840255", "source": "RERO"}], "preferred_name": "Smithback, John B", "authorized_access_point": "Smithback, John B"} 1 -2023-07-08 08:24:11.020516 2023-07-08 08:24:11.020522 7ceafd90-8fa5-4022-9ec4-04148c835217 {"md5": "76b75b5f7795953cf4e559fb63fee5c4", "pid": "A003840370", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003840370", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003840370", "source": "RERO"}], "preferred_name": "Smoje, Dujka", "authorized_access_point": "Smoje, Dujka"} 1 -2023-07-08 08:24:11.101365 2023-07-08 08:24:11.101369 6b5921d8-24b5-4bcc-bb81-52b9317a373e {"md5": "9224fc680aa9a316c4c4932abd36f44e", "pid": "A003840561", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003840561", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003840561", "source": "RERO"}], "preferred_name": "Smyth, Alfred P", "authorized_access_point": "Smyth, Alfred P"} 1 -2023-07-08 08:24:11.17742 2023-07-08 08:24:11.177426 28919a4c-a7f5-4fd8-9920-f08c2c0bff8c {"md5": "8a9b1d6973897216f0cd338890256e32", "pid": "A003842524", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A003842524", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003842524", "source": "RERO"}], "preferred_name": "Società napoletana di storia patria", "authorized_access_point": "Società napoletana di storia patria"} 1 -2023-07-08 08:24:11.252281 2023-07-08 08:24:11.252285 7a8364ab-251b-4952-b540-820f08193b35 {"md5": "0d963ad8f2f1ef2b06ed0b726344b553", "pid": "A003845264", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A003845264", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003845264", "source": "RERO"}], "preferred_name": "Société mycologique de France", "authorized_access_point": "Société mycologique de France"} 1 -2023-07-08 08:24:11.335878 2023-07-08 08:24:11.335882 b4297480-b6f8-47cd-9e22-2abdb6202b94 {"md5": "d33140b052cdf740758348ae2a5656fb", "pid": "A003849275", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003849275", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003849275", "source": "RERO"}], "preferred_name": "Sorabji, Cornélia", "authorized_access_point": "Sorabji, Cornélia"} 1 -2023-07-08 08:24:11.409204 2023-07-08 08:24:11.40921 5474b3e3-5d15-4c24-9ddd-c87d7dacf451 {"md5": "88c0b05bdf4919a11caeb45a87c10a44", "pid": "A003849995", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003849995", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003849995", "source": "RERO"}], "preferred_name": "Sotto, Wiveca", "authorized_access_point": "Sotto, Wiveca"} 1 -2023-07-08 08:24:11.486403 2023-07-08 08:24:11.486408 40a5ce83-9ec6-4837-8f37-534b05cebc64 {"md5": "6bbd565e01e22c2a3418e42191599f16", "pid": "A003852855", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003852855", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003852855", "source": "RERO"}], "preferred_name": "Sperry, Stuart M", "authorized_access_point": "Sperry, Stuart M"} 1 -2023-07-08 08:24:11.583038 2023-07-08 08:24:11.583051 21226278-eb3d-4d2e-8816-01d7cdebc08f {"md5": "8daa93d88678176b3136bb19adc9cf85", "pid": "A003853351", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003853351", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003853351", "source": "RERO"}], "preferred_name": "Spiess, Bernhard", "authorized_access_point": "Spiess, Bernhard"} 1 -2023-07-08 08:24:11.676439 2023-07-08 08:24:11.676445 b1018a30-3681-4fe4-85a9-b3e9951914ad {"md5": "eddfabcff3a1c27bbe3fb8b01197c0e1", "pid": "A003854679", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003854679", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003854679", "source": "RERO"}], "preferred_name": "Spray, S.Lee", "authorized_access_point": "Spray, S.Lee"} 1 -2023-07-08 08:24:11.753118 2023-07-08 08:24:11.753131 d39db5b1-297e-4db0-9280-b4b8750b4c1b {"md5": "263825dd4bfc7289afa254d6f2b20d46", "pid": "A003861370", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003861370", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003861370", "source": "RERO"}], "preferred_name": "Steinbrügge, Lieselotte", "authorized_access_point": "Steinbrügge, Lieselotte"} 1 -2023-07-08 08:24:11.842688 2023-07-08 08:24:11.842696 6a5bf673-8f73-469b-9654-bb3e530949f1 {"md5": "d28fa03aa843915bd7733218a098027c", "pid": "A003863577", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003863577", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003863577", "source": "RERO"}], "preferred_name": "Stern, Guy", "authorized_access_point": "Stern, Guy"} 1 -2023-07-08 08:24:11.938904 2023-07-08 08:24:11.938907 aae36e40-6614-47e1-a6be-973cc6c5160a {"md5": "47906b7dabe7d5912fa50ddbfc792f1c", "pid": "A003870613", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003870613", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003870613", "source": "RERO"}], "preferred_name": "Strobel, Howard Austin", "authorized_access_point": "Strobel, Howard Austin"} 1 -2023-07-08 08:24:12.01333 2023-07-08 08:24:12.013333 df7d29df-e320-4fc3-a185-d47c16dcd4a2 {"md5": "a85347a9326f988ebf69bf7908b0363e", "pid": "A003881754", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003881754", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003881754", "source": "RERO"}], "preferred_name": "Syreeni, Kari", "authorized_access_point": "Syreeni, Kari"} 1 -2023-07-08 08:24:12.089264 2023-07-08 08:24:12.089268 a91f57b5-524b-46fa-b4df-f6a74c57e63c {"md5": "271bd165fe5c287bd56fd90a8613f8ed", "pid": "A003883009", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003883009", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003883009", "source": "RERO"}], "preferred_name": "Sölter, Walter", "authorized_access_point": "Sölter, Walter"} 1 -2023-07-08 08:24:12.187547 2023-07-08 08:24:12.18755 60737cbd-082f-4b67-ba2f-6a5b4a2b2904 {"md5": "767712031bc82c97eaa74ffe7f59036a", "pid": "A003883330", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003883330", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003883330", "source": "RERO"}], "preferred_name": "Sánchez Caro, José Manuel", "authorized_access_point": "Sánchez Caro, José Manuel"} 1 -2023-07-08 08:24:12.261255 2023-07-08 08:24:12.26126 e6deaa96-2387-40e3-9a43-31bf6684b916 {"md5": "46befdedb29f5e7676f92a2c2eb91b15", "pid": "A003883717", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003883717", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003883717", "source": "RERO"}], "preferred_name": "Séebold, Éric", "authorized_access_point": "Séebold, Éric"} 1 -2023-07-08 08:24:12.336638 2023-07-08 08:24:12.336644 d953d1de-e10b-400a-aa74-5bdcbf1cda06 {"md5": "7c9f10c50dd1b30fefa3ef55ebc8d05b", "pid": "A003883777", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003883777", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003883777", "source": "RERO"}], "preferred_name": "Ségur, Claudine", "authorized_access_point": "Ségur, Claudine"} 1 -2023-07-08 08:24:12.459071 2023-07-08 08:24:12.459074 c07aebdf-27d5-4e51-848b-a649d690c13b {"md5": "4b2a320916e6684376de1fd5d58a5dfb", "pid": "A003886758", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003886758", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003886758", "source": "RERO"}], "preferred_name": "Tamassia, Roberto", "authorized_access_point": "Tamassia, Roberto"} 1 -2023-07-08 08:24:12.523428 2023-07-08 08:24:12.523433 97c782c8-4978-4194-bbd5-3d8cba87beb6 {"md5": "a7ca66a68f06f6f79473d4264bb7f01d", "pid": "A003889324", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003889324", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003889324", "source": "RERO"}], "preferred_name": "Taubman, Howard", "authorized_access_point": "Taubman, Howard"} 1 -2023-07-08 08:24:12.599588 2023-07-08 08:24:12.599593 bb9741dc-dd5b-43e2-96dc-973c6d8762cf {"md5": "31b04274af8e127fa3f4cada3ab8ff91", "pid": "A003890737", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003890737", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003890737", "source": "RERO"}], "preferred_name": "Te Riele, Gerrit Jan Marie Jozef", "authorized_access_point": "Te Riele, Gerrit Jan Marie Jozef"} 1 -2023-07-08 08:24:12.679933 2023-07-08 08:24:12.679939 89b684ad-a84a-40a8-aebc-d6df48baa4a1 {"md5": "39abb1eccf93ef10bf444c121fcd68fd", "pid": "A003895492", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003895492", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003895492", "source": "RERO"}], "preferred_name": "Theureau, Louis", "authorized_access_point": "Theureau, Louis"} 1 -2023-07-08 08:24:12.753791 2023-07-08 08:24:12.753795 ce536baf-2c70-4c4d-a8e7-7fab37ec9c26 {"md5": "f80225178987416c2bf566bc42c5fb9b", "pid": "A003899816", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003899816", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003899816", "source": "RERO"}], "preferred_name": "Thurlow, Bradbury K", "authorized_access_point": "Thurlow, Bradbury K"} 1 -2023-07-08 08:24:12.840052 2023-07-08 08:24:12.840058 caae0acb-d74d-4b3d-9016-cdc1dfe82b85 {"md5": "e3cf7416bc17c0d7a6e0fd5177336af3", "pid": "A003902263", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003902263", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003902263", "source": "RERO"}], "preferred_name": "Tinsley, B", "authorized_access_point": "Tinsley, B"} 1 -2023-07-08 08:24:12.912421 2023-07-08 08:24:12.912427 e35d069f-a05a-40d5-bf28-8ecbc8e0d409 {"md5": "e7a348c849ca02af7a02dccd6109b15b", "pid": "A003905474", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003905474", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003905474", "source": "RERO"}], "preferred_name": "Tophoven, Klaus", "authorized_access_point": "Tophoven, Klaus"} 1 -2023-07-08 08:24:12.987658 2023-07-08 08:24:12.987661 9e8c9567-c7ac-4caa-bf75-85ff7ffd9f0e {"md5": "5aa7b26adac39458940bd31345f3551a", "pid": "A003913856", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003913856", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003913856", "source": "RERO"}], "preferred_name": "Tsuda, Yukio", "authorized_access_point": "Tsuda, Yukio"} 1 -2023-07-08 08:24:13.065158 2023-07-08 08:24:13.065161 d0749aa0-de1a-44f3-a1ed-ef6d689a4f24 {"md5": "4bf6e99911acd5d4dd1e44056d7cc472", "pid": "A003919082", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003919082", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003919082", "source": "RERO"}], "preferred_name": "Ulstrup, Jens", "authorized_access_point": "Ulstrup, Jens"} 1 -2023-07-08 08:24:13.137811 2023-07-08 08:24:13.137818 ea601aed-c942-4f8c-bf36-a749232f51f8 {"md5": "929a48696cde14bd23c0d3feaa45ef8c", "pid": "A003936311", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003936311", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003936311", "source": "RERO"}], "preferred_name": "Venturelli, Aldo", "authorized_access_point": "Venturelli, Aldo"} 1 -2023-07-08 08:24:13.206858 2023-07-08 08:24:13.206863 77ecba36-c50f-4510-92ca-2945d9880c47 {"md5": "8432fe9d957c26f2369319a386013979", "pid": "A003943767", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003943767", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003943767", "source": "RERO"}], "preferred_name": "Vimond, Jack", "authorized_access_point": "Vimond, Jack"} 1 -2023-07-08 08:24:13.279108 2023-07-08 08:24:13.279112 487c3b25-3019-4e1b-afe6-11f0329c0247 {"md5": "06e8e6c4f4d3bf2823d68ad897f1f33d", "pid": "A003947464", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003947464", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003947464", "source": "RERO"}], "preferred_name": "Vogelsang-Wenke, Heike", "authorized_access_point": "Vogelsang-Wenke, Heike"} 1 -2023-07-08 08:24:13.359261 2023-07-08 08:24:13.359267 2aa94e1e-d121-4c27-bd68-6ffc1ce26c2e {"md5": "2d563d60627bdf4f85df060eeda37e8a", "pid": "A003948416", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003948416", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003948416", "source": "RERO"}], "preferred_name": "Volk, Klaus", "authorized_access_point": "Volk, Klaus"} 1 -2023-07-08 08:24:13.437183 2023-07-08 08:24:13.437186 053839cd-038c-4432-b9ef-78431fc39f7a {"md5": "ccc644c54741d24c578c5433b44d9dd6", "pid": "A003958822", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003958822", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003958822", "source": "RERO"}], "preferred_name": "Warren, Katherine F", "authorized_access_point": "Warren, Katherine F"} 1 -2023-07-08 08:24:13.511336 2023-07-08 08:24:13.51134 3ca72d30-76ed-42c3-a34b-d3a2d55322ac {"md5": "500497413e943201f0e428e29eb86685", "pid": "A003966124", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003966124", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003966124", "source": "RERO"}], "preferred_name": "Weisz, Paul B", "authorized_access_point": "Weisz, Paul B"} 1 -2023-07-08 08:24:13.601098 2023-07-08 08:24:13.601101 472a1354-d2c3-48e7-bea8-427dc91ecc20 {"md5": "332b2bea5752d185e4de3b7049122eea", "pid": "A003967245", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003967245", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003967245", "source": "RERO"}], "preferred_name": "Wemba, Papa", "authorized_access_point": "Wemba, Papa"} 1 -2023-07-08 08:24:13.673873 2023-07-08 08:24:13.673878 3b5f6a9b-84bd-4575-b818-54b70a6cb796 {"md5": "f88967cac16ff6868d145ad3fd2a937f", "pid": "A003969580", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003969580", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003969580", "source": "RERO"}], "preferred_name": "Westbrook, Jack Hall", "authorized_access_point": "Westbrook, Jack Hall"} 1 -2023-07-08 08:24:13.749408 2023-07-08 08:24:13.749411 0a352b32-0cb5-461a-b267-f2cf3541a34b {"md5": "9821657fc53e796c660965d53068c789", "pid": "A003969900", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003969900", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003969900", "source": "RERO"}], "preferred_name": "Westi, Kurt", "authorized_access_point": "Westi, Kurt"} 1 -2023-07-08 08:24:13.818258 2023-07-08 08:24:13.818262 a65cac81-7453-4331-ba35-fb60ca56cab7 {"md5": "766aa4c090fc452c9397d4288c45da44", "pid": "A003971618", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003971618", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003971618", "source": "RERO"}], "preferred_name": "White, Miriam Harker", "authorized_access_point": "White, Miriam Harker"} 1 -2023-07-08 08:24:13.890229 2023-07-08 08:24:13.890234 f31014bc-6e65-4194-8a41-6c9bb79480b6 {"md5": "3b1ef1e267e3782e7990246582dafcb5", "pid": "A003973251", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003973251", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003973251", "source": "RERO"}], "preferred_name": "Widstrand, Axel", "authorized_access_point": "Widstrand, Axel"} 1 -2023-07-08 08:24:13.960904 2023-07-08 08:24:13.960906 cc6a097f-b95c-469c-be25-9a6184b7ef7e {"md5": "f6f36fa615f76030b0d1ef1b21e6cf24", "pid": "A003975282", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003975282", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003975282", "source": "RERO"}], "preferred_name": "Wildeboer, Ina Hinderika", "authorized_access_point": "Wildeboer, Ina Hinderika"} 1 -2023-07-08 08:24:18.452695 2023-07-08 08:24:18.452699 e301a4e4-62d6-4ed7-b951-393dd48d925b {"md5": "ee3ec7abdd8a606318d283b6833083e3", "pid": "A006023343", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A006023343", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006023343", "source": "RERO"}], "preferred_name": "Troncoso, Sergio", "authorized_access_point": "Troncoso, Sergio"} 1 -2023-07-08 08:24:14.036907 2023-07-08 08:24:14.03691 6420af0d-ee6e-41e1-99e7-e827fda602d3 {"md5": "df423a8ba5daa42c71b37f2a66bd4622", "pid": "A003981555", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003981555", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003981555", "source": "RERO"}], "variant_name": ["With, Hans-Joachim de", "De With, Hans-Joachim"], "preferred_name": "With, Hans de", "variant_access_point": ["With, Hans-Joachim de", "De With, Hans-Joachim"], "authorized_access_point": "With, Hans de", "biographical_information": ["Juriste allemand, né à Gera/Thüringen en 1932"]} 1 -2023-07-08 08:24:14.122924 2023-07-08 08:24:14.122929 21a89bad-91a4-4b11-aca4-64158643282a {"md5": "785be34addddf69f2481458b3b168096", "pid": "A003981870", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003981870", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003981870", "source": "RERO"}], "preferred_name": "Witte, Siegfried", "authorized_access_point": "Witte, Siegfried"} 1 -2023-07-08 08:24:14.205941 2023-07-08 08:24:14.205945 fa9ec863-bcae-4ab7-9c8e-62a69d889dd8 {"md5": "165da7e16a48fc2df2496b6276282a2a", "pid": "A003984942", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003984942", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003984942", "source": "RERO"}], "preferred_name": "Wood, Donald Francis", "authorized_access_point": "Wood, Donald Francis"} 1 -2023-07-08 08:24:14.284283 2023-07-08 08:24:14.284286 996e0fee-e96a-4462-8061-e17e2c8bd50e {"md5": "296559d131813d723c21954c880e0e9b", "pid": "A003985806", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003985806", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003985806", "source": "RERO"}], "preferred_name": "Woolson, Robert F", "authorized_access_point": "Woolson, Robert F"} 1 -2023-07-08 08:24:14.356181 2023-07-08 08:24:14.356187 0a49efc4-561d-42b3-8e54-926944a12fec {"md5": "a8fb9b4e705938b59d61ea8c226dc169", "pid": "A003988011", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003988011", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003988011", "source": "RERO"}], "preferred_name": "Wullaert, Pierre", "authorized_access_point": "Wullaert, Pierre"} 1 -2023-07-08 08:24:14.429599 2023-07-08 08:24:14.429602 d44fd589-5765-4379-9eda-0521a99c9f55 {"md5": "a503f30abeccf5fe9b202bee3a6d8695", "pid": "A003988126", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003988126", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003988126", "source": "RERO"}], "preferred_name": "Wunderlich, Heinz", "authorized_access_point": "Wunderlich, Heinz"} 1 -2023-07-08 08:24:14.490986 2023-07-08 08:24:14.49099 03739233-6fd6-40ad-9268-26b874cc871a {"md5": "a2d040488f982c748a687c89110c1fe2", "pid": "A003990251", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003990251", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003990251", "source": "RERO"}], "preferred_name": "Xokonoschtletl, Gomora", "authorized_access_point": "Xokonoschtletl, Gomora"} 1 -2023-07-08 08:24:14.558085 2023-07-08 08:24:14.55809 9a63d120-0a62-4686-968e-20d3f1f72dff {"md5": "451993ab7bfd750b43d3c7197066f6f2", "pid": "A003991229", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003991229", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003991229", "source": "RERO"}], "preferred_name": "Yashinsky, Jack", "authorized_access_point": "Yashinsky, Jack"} 1 -2023-07-08 08:24:14.62805 2023-07-08 08:24:14.628056 3ef67411-0aad-4306-9d06-0d94c129d053 {"md5": "de19d6f23204a332907eeda5e34fb325", "pid": "A003994705", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003994705", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003994705", "source": "RERO"}], "preferred_name": "Zameenzad, Adam", "authorized_access_point": "Zameenzad, Adam"} 1 -2023-07-08 08:24:14.69949 2023-07-08 08:24:14.699495 beeed6d0-60e5-4e97-8578-0d8184237874 {"md5": "a90ef22af750515de210034d68b0a44a", "pid": "A003995908", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003995908", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003995908", "source": "RERO"}], "preferred_name": "Zatouroff, Michael", "authorized_access_point": "Zatouroff, Michael"} 1 -2023-07-08 08:24:14.779079 2023-07-08 08:24:14.779083 6d5f9e02-2b50-4db6-bec8-368e8374bb74 {"md5": "7dcef8dcc64d9eb22bad9064a3027b96", "pid": "A003999648", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A003999648", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003999648", "source": "RERO"}], "preferred_name": "Zierl, Andreas", "authorized_access_point": "Zierl, Andreas"} 1 -2023-07-08 08:24:14.856177 2023-07-08 08:24:14.856184 e1218527-96a1-4b7e-983b-d3aac712702d {"md5": "d8aa6396dddb00130a0c072b34df7657", "pid": "A005312991", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A005312991", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005312991", "source": "RERO"}], "preferred_name": "Centre d'expérimentation des packages (Paris)", "authorized_access_point": "Centre d'expérimentation des packages (Paris)", "biographical_information": ["Jusqu'au 27 juin 1978: Centre d'expérimentation des packages (Paris)", "Dès le 27 juin 1978: Centre d'expérimentation de progiciels (Paris)"]} 1 -2023-07-08 08:24:14.921235 2023-07-08 08:24:14.921238 45ff616c-aafb-40c2-8646-369b32949709 {"md5": "623abde4dcc3a198d138a73af1157dda", "pid": "A005368039", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A005368039", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005368039", "source": "RERO"}], "preferred_name": "Kantonsschule (Obwalden)", "authorized_access_point": "Kantonsschule (Obwalden)", "biographical_information": ["Avant 1956: Kantonale Lehranstalt (Sarnen)", "De 1956 à 1966: Kollegium Sarnen", "Dès 1967: Kantonsschule (Obwalden)"]} 1 -2023-07-08 08:24:14.983001 2023-07-08 08:24:14.983005 099bee13-dd38-4fbe-8d89-0efe433267cb {"md5": "a9e56815f3f836b43bbeeda77243fcc7", "pid": "A005460720", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A005460720", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005460720", "source": "RERO"}], "preferred_name": "Gesellschaft für Wirtschafts- und Sozialwissenschaften. Bildungsökonomischer Ausschuss", "authorized_access_point": "Gesellschaft für Wirtschafts- und Sozialwissenschaften. Bildungsökonomischer Ausschuss"} 1 -2023-07-08 08:24:15.057744 2023-07-08 08:24:15.05775 01178db6-a09e-4145-9787-57e0d9309ebd {"md5": "7421b9988f488615b4b7402574d97170", "pid": "A005463202", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A005463202", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005463202", "source": "RERO"}], "variant_name": ["International Conference on Economic and Social Aspects of Automation"], "preferred_name": "Journées internationales d'information sur les implications économiques et sociales de l'automation", "variant_access_point": ["International Conference on Economic and Social Aspects of Automation"], "authorized_access_point": "Journées internationales d'information sur les implications économiques et sociales de l'automation"} 1 -2023-07-08 08:24:15.152454 2023-07-08 08:24:15.15246 b09ea2d5-2a61-4041-9230-97495605fd12 {"md5": "b67ac131def6b4b0f384239b93b36bbd", "pid": "A005464802", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A005464802", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005464802", "source": "RERO"}], "variant_name": ["International Colloquium on Historical Demography"], "preferred_name": "Colloque international de démographie historique", "variant_access_point": ["International Colloquium on Historical Demography"], "authorized_access_point": "Colloque international de démographie historique"} 1 -2023-07-08 08:24:15.246632 2023-07-08 08:24:15.246636 ee8713be-bff2-445e-b3c4-b53fd3ff1a79 {"md5": "f08ce66959cb3920fcb91aae0370aff6", "pid": "A005466192", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A005466192", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005466192", "source": "RERO"}], "variant_name": ["Fachverband Elektronenmikroskopie (DDR)"], "preferred_name": "Physikalische Gesellschaft der DDR. Fachverband Elektronenmikroskopie", "variant_access_point": ["Fachverband Elektronenmikroskopie (DDR)"], "authorized_access_point": "Physikalische Gesellschaft der DDR. Fachverband Elektronenmikroskopie"} 1 -2023-07-08 08:24:15.350801 2023-07-08 08:24:15.350812 e092dbad-c343-4dee-b43b-77623c25dcf0 {"md5": "c6f7361041ddc5445dacd33b847af481", "pid": "A005469950", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A005469950", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005469950", "source": "RERO"}], "variant_name": ["Instituto de cultura portuguesa (Porto)"], "preferred_name": "Universidade do Porto. Instituto de cultura portuguesa", "variant_access_point": ["Instituto de cultura portuguesa (Porto)"], "authorized_access_point": "Universidade do Porto. Instituto de cultura portuguesa"} 1 -2023-07-08 08:24:15.432581 2023-07-08 08:24:15.432585 39173f8d-09ce-40ae-bcea-b4ea42d2ee58 {"md5": "40414ec85a5e242ea9e8208ef64e36bd", "pid": "A005471055", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A005471055", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005471055", "source": "RERO"}], "preferred_name": "Universidade Federal Fluminense", "authorized_access_point": "Universidade Federal Fluminense"} 1 -2023-07-08 08:24:15.523058 2023-07-08 08:24:15.523062 5deb8e62-6a94-43dd-8c4b-d9c5d8d73fc3 {"md5": "3ef51d3d5937b94365b30e22527d5e35", "pid": "A005475587", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A005475587", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005475587", "source": "RERO"}], "variant_name": ["Instituto español de cultura y de literatura de Roma", "Instituto español de cultura (Roma)"], "preferred_name": "Instituto español de cultura de Roma", "variant_access_point": ["Instituto español de cultura y de literatura de Roma", "Instituto español de cultura (Roma)"], "authorized_access_point": "Instituto español de cultura de Roma"} 1 -2023-07-08 08:24:15.608709 2023-07-08 08:24:15.608715 b6556d08-337d-4de1-8569-f3a24354d6f5 {"md5": "8db579e1f5b3a632c8446be4758ad4f9", "pid": "A005480840", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A005480840", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005480840", "source": "RERO"}], "variant_name": ["NSSAR (The National Society of the Sons of the American Revolution)", "Sons of the American Revolution", "Société des fils de la Révolution américaine"], "preferred_name": "National Society of the Sons of the American Revolution", "variant_access_point": ["NSSAR (The National Society of the Sons of the American Revolution)", "Sons of the American Revolution", "Société des fils de la Révolution américaine"], "authorized_access_point": "National Society of the Sons of the American Revolution"} 1 -2023-07-08 08:24:15.698516 2023-07-08 08:24:15.698524 30d899f0-cd22-4c54-9e5f-a24c1e653e9e {"md5": "4fdd9f295341997a6fbcc5a5ef8ad88c", "pid": "A005495353", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A005495353", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005495353", "source": "RERO"}], "variant_name": ["Ordo Carmelitarum", "Frères du Mont Carmel", "Ordre du Carmel", "Ordre de Notre-Dame du Mont Carmel", "Ordre de la bienheureuse Vierge Marie du Mont Carmel", "Carmes"], "preferred_name": "Ordo fratrum beatissimae Mariae virginis de Monte Carmelo", "variant_access_point": ["Ordo Carmelitarum", "Frères du Mont Carmel", "Ordre du Carmel", "Ordre de Notre-Dame du Mont Carmel", "Ordre de la bienheureuse Vierge Marie du Mont Carmel", "Carmes"], "authorized_access_point": "Ordo fratrum beatissimae Mariae virginis de Monte Carmelo"} 1 -2023-07-08 08:24:15.77035 2023-07-08 08:24:15.770355 f902b1c7-817d-4aee-963f-1d4b0f505d64 {"md5": "47bd3f8415b46f39045db99c7602d929", "pid": "A005496746", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A005496746", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005496746", "source": "RERO"}], "variant_name": ["FSDH (Fédération suisse des directeurs d'hôpitaux)", "Schweizerische Vereinigung der Spitaldirektoren", "SVS (Schweizerische Vereinigung der Spitaldirektoren", "Federazione svizzera dei direttori d'ospedale", "FSDO (Federazione svizzera dei direttori d'ospedale)"], "preferred_name": "Fédération suisse des directeurs d'hôpitaux", "variant_access_point": ["FSDH (Fédération suisse des directeurs d'hôpitaux)", "Schweizerische Vereinigung der Spitaldirektoren", "SVS (Schweizerische Vereinigung der Spitaldirektoren", "Federazione svizzera dei direttori d'ospedale", "FSDO (Federazione svizzera dei direttori d'ospedale)"], "authorized_access_point": "Fédération suisse des directeurs d'hôpitaux"} 1 -2023-07-08 08:24:15.856578 2023-07-08 08:24:15.856585 cb7e602f-bce7-4c0a-aa59-c10ea800e3b4 {"md5": "892e4eea003867b016ece3fbe6b6a4cf", "pid": "A005513603", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A005513603", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005513603", "source": "RERO"}], "date_of_birth": "1966", "preferred_name": "Scholl, Elisabeth,", "authorized_access_point": "Scholl, Elisabeth, 1966-", "biographical_information": ["Artiste lyrique (soprano)"]} 1 -2023-07-08 08:24:15.94665 2023-07-08 08:24:15.946658 c99dc645-aa44-485c-85b3-18cc225922be {"md5": "cc824494dbd15df2d4feb44d184cbd3a", "pid": "A005522657", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A005522657", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005522657", "source": "RERO"}], "preferred_name": "Weiberg, Anja", "authorized_access_point": "Weiberg, Anja"} 1 -2023-07-08 08:24:16.026945 2023-07-08 08:24:16.026949 852ec908-0ad1-4293-a0db-7287c8c5a089 {"md5": "a7bef5cb33b0be49aa6940e6ca7c16e2", "pid": "A005533991", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A005533991", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005533991", "source": "RERO"}], "preferred_name": "Jha, Kalanath", "authorized_access_point": "Jha, Kalanath"} 1 -2023-07-08 08:24:16.108895 2023-07-08 08:24:16.108903 a5481960-7dea-4351-bfa7-ca7d8bea239a {"md5": "af530e4ecb9a852421518cf50807be8a", "pid": "A005558255", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A005558255", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005558255", "source": "RERO"}], "preferred_name": "Polley, Martin", "authorized_access_point": "Polley, Martin"} 1 -2023-07-08 08:24:16.192217 2023-07-08 08:24:16.192223 6ac5c7b5-a2ca-4858-ba40-f3ab67aab3c8 {"md5": "ae398c3df18f938104de3b746f57c1f0", "pid": "A005570502", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A005570502", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005570502", "source": "RERO"}], "preferred_name": "Stephan, Werner", "authorized_access_point": "Stephan, Werner"} 1 -2023-07-08 08:24:16.276322 2023-07-08 08:24:16.27633 42ad85b3-7323-4614-a49a-844f39803358 {"md5": "da3f2c8347b8e5c41f55bcf42d55acfe", "pid": "A005573785", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A005573785", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005573785", "source": "RERO"}], "preferred_name": "Istituto italiano per la storia della musica (Roma)", "authorized_access_point": "Istituto italiano per la storia della musica (Roma)"} 1 -2023-07-08 08:24:16.357301 2023-07-08 08:24:16.357307 7ae49789-40c0-435e-9730-05eeaa15d55f {"md5": "ccf54c83079dacf3b44cb327c4c638b0", "pid": "A005595559", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A005595559", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005595559", "source": "RERO"}], "preferred_name": "Komissarževskij, Viktor Grigorʾevič", "authorized_access_point": "Komissarževskij, Viktor Grigorʾevič"} 1 -2023-07-08 08:24:16.447592 2023-07-08 08:24:16.447602 4691b878-011b-4d9c-9285-5c7e0d01aa17 {"md5": "bf16966c20e99517311841e0dc13d383", "pid": "A005599445", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A005599445", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005599445", "source": "RERO"}], "preferred_name": "Binkley, David A", "authorized_access_point": "Binkley, David A"} 1 -2023-07-08 08:24:16.542356 2023-07-08 08:24:16.542363 d62f627e-0577-47c6-80d3-3851a4844064 {"md5": "802e3f6049349725b9040f860847f9e8", "pid": "A005605846", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A005605846", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005605846", "source": "RERO"}], "preferred_name": "Fabian, Anton", "authorized_access_point": "Fabian, Anton"} 1 -2023-07-08 08:24:16.630092 2023-07-08 08:24:16.630104 a747b27e-5eef-40fd-8621-ba96cc74ddd5 {"md5": "0c9002e6ab274b7ba84f3f6a0e058ea6", "pid": "A005621817", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A005621817", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005621817", "source": "RERO"}], "preferred_name": "Thomas-Morus-Gesellschaft", "authorized_access_point": "Thomas-Morus-Gesellschaft"} 1 -2023-07-08 08:24:16.721081 2023-07-08 08:24:16.721086 18204c98-323a-4073-8e95-c7c02e50710b {"md5": "94ec7c012bb49741ca7b63cf941dfd77", "pid": "A005623637", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A005623637", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005623637", "source": "RERO"}], "preferred_name": "Laurent, Marguerite-Marie", "authorized_access_point": "Laurent, Marguerite-Marie"} 1 -2023-07-08 08:24:16.80898 2023-07-08 08:24:16.808985 94bb7e8b-0ea8-4a9d-b9d2-3d1b3ca5a33b {"md5": "b2940ab2369e95a920237f9f64e8a99b", "pid": "A005655274", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A005655274", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005655274", "source": "RERO"}], "preferred_name": "Guareschi, Alberto", "authorized_access_point": "Guareschi, Alberto"} 1 -2023-07-08 08:24:16.893487 2023-07-08 08:24:16.893492 a9fa030b-5677-4950-b9cd-67c16973d469 {"md5": "71f4ea8b9e989219f809490b7978f4b5", "pid": "A005663176", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A005663176", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005663176", "source": "RERO"}], "preferred_name": "Einsele, Herrmann", "authorized_access_point": "Einsele, Herrmann"} 1 -2023-07-08 08:24:16.993402 2023-07-08 08:24:16.993406 da6b354d-3ee0-4e28-9c86-81185471826a {"md5": "6af22b7341293906a694706a3b79de96", "pid": "A005673019", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A005673019", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005673019", "source": "RERO"}], "preferred_name": "Morgan, Karl Z", "authorized_access_point": "Morgan, Karl Z"} 1 -2023-07-08 08:24:17.081613 2023-07-08 08:24:17.081621 6d1e536c-26a7-4002-91f3-a62da88825b6 {"md5": "f75c56dbeb42f32980c461248ca7f290", "pid": "A005680197", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A005680197", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005680197", "source": "RERO"}], "preferred_name": "Bonnaud, Jacques-Julien", "authorized_access_point": "Bonnaud, Jacques-Julien"} 1 -2023-07-08 08:24:17.17658 2023-07-08 08:24:17.176585 91c6ec20-59ef-483f-b07a-4df3b0830686 {"md5": "711c8c156ca9153a48cb25bfd4ac38d8", "pid": "A005718969", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A005718969", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005718969", "source": "RERO"}], "preferred_name": "Istituto Dalle Molle di studi sull'intelligenza artificiale (Lugano)", "authorized_access_point": "Istituto Dalle Molle di studi sull'intelligenza artificiale (Lugano)"} 1 -2023-07-08 08:24:17.310572 2023-07-08 08:24:17.310578 fbb15563-0d03-4f49-a9a6-14a43053009b {"md5": "417d6dfdec80ee1115b23933fec03b1a", "pid": "A005732208", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A005732208", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005732208", "source": "RERO"}], "preferred_name": "Busch, Sylvia", "authorized_access_point": "Busch, Sylvia"} 1 -2023-07-08 08:24:17.411124 2023-07-08 08:24:17.41113 435e1265-1c65-49b8-bf6a-208e9494af11 {"md5": "167eaa260415aeeaf62a63e5a871bb91", "pid": "A005753197", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A005753197", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005753197", "source": "RERO"}], "preferred_name": "Divertimento ensemble", "authorized_access_point": "Divertimento ensemble"} 1 -2023-07-08 08:24:17.503829 2023-07-08 08:24:17.503833 710a3428-aac7-442d-a18b-d57d0328e1c7 {"md5": "8992d254e87e10850df9dd74906e8e8b", "pid": "A005770175", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A005770175", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005770175", "source": "RERO"}], "preferred_name": "Eyoum, Isabelle", "authorized_access_point": "Eyoum, Isabelle"} 1 -2023-07-08 08:24:17.582274 2023-07-08 08:24:17.582279 c790258d-ee79-4c01-8c1c-7cde9d788c6f {"md5": "6365fdac83c809a7e32e92083bcef1ba", "pid": "A005787734", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A005787734", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005787734", "source": "RERO"}], "preferred_name": "Blau, Tatjana", "authorized_access_point": "Blau, Tatjana"} 1 -2023-07-08 08:24:17.662285 2023-07-08 08:24:17.662291 6819024f-845f-4729-91e2-03b65c0430b8 {"md5": "6fd56cbee2cce6db816b69dcb3354814", "pid": "A005794650", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A005794650", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005794650", "source": "RERO"}], "preferred_name": "Marcinkowska, Barbara", "authorized_access_point": "Marcinkowska, Barbara"} 1 -2023-07-08 08:24:17.733632 2023-07-08 08:24:17.733635 9de010cb-e48f-4963-9930-51c3124e9680 {"md5": "11509f726ab600b941c0696b77fda148", "pid": "A005814757", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A005814757", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005814757", "source": "RERO"}], "preferred_name": "Hess, Friedrich", "authorized_access_point": "Hess, Friedrich"} 1 -2023-07-08 08:24:17.803917 2023-07-08 08:24:17.803922 86241387-70c3-4619-9760-2c3f70981fdf {"md5": "bf4a3bfbac96d7cd9aca68c5e6aa5eca", "pid": "A005821830", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A005821830", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005821830", "source": "RERO"}], "preferred_name": "Green, Owen Mortimer", "authorized_access_point": "Green, Owen Mortimer"} 1 -2023-07-08 08:24:17.877723 2023-07-08 08:24:17.877733 0e0d9f9a-be72-40a6-8bf5-3bf060b6a80b {"md5": "9dab18c233b1d364f14a78e96a822639", "pid": "A005915341", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A005915341", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005915341", "source": "RERO"}], "preferred_name": "Pilszczikowa, Nina", "authorized_access_point": "Pilszczikowa, Nina"} 1 -2023-07-08 08:24:17.967852 2023-07-08 08:24:17.967862 c36cfaa9-b327-42a4-aefe-9b03d7df7a93 {"md5": "77408e214c4c12e47a1cdbe033b01acd", "pid": "A005942520", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A005942520", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005942520", "source": "RERO"}], "preferred_name": "Testa Bappenheim, Italo", "authorized_access_point": "Testa Bappenheim, Italo"} 1 -2023-07-08 08:24:18.060078 2023-07-08 08:24:18.060084 12fe27a6-b0ff-4791-8f90-ab240582daa9 {"md5": "fb53444da9fd9396df418767a863ad0b", "pid": "A005944951", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A005944951", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005944951", "source": "RERO"}], "preferred_name": "Ormières, Jean-Luc", "authorized_access_point": "Ormières, Jean-Luc"} 1 -2023-07-08 08:24:18.139587 2023-07-08 08:24:18.13959 08f71c90-0860-4ac8-833b-542088b9cdac {"md5": "06374efb4795160b9daa8c7dc316ff19", "pid": "A005945920", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A005945920", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005945920", "source": "RERO"}], "preferred_name": "Blum, Eugène", "authorized_access_point": "Blum, Eugène"} 1 -2023-07-08 08:24:18.22472 2023-07-08 08:24:18.224726 4bb8572d-8206-4279-996c-07e0054eed34 {"md5": "291c1d33a3cfdb762b40f125723a6a1b", "pid": "A005984015", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A005984015", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005984015", "source": "RERO"}], "preferred_name": "Moscovici, Claudia", "authorized_access_point": "Moscovici, Claudia"} 1 -2023-07-08 08:24:18.29681 2023-07-08 08:24:18.296814 2a135d2e-c846-4d57-8eb3-dc1cdd003223 {"md5": "8ea6fce63d5040719ec535a6dad3cfaf", "pid": "A005995031", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A005995031", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005995031", "source": "RERO"}], "preferred_name": "Dion, Linda", "authorized_access_point": "Dion, Linda"} 1 -2023-07-08 08:24:18.384426 2023-07-08 08:24:18.38443 1a959b14-3739-42ec-b6ad-d3ddb1682b4f {"md5": "1969d8bd154110a21de0c3a4d067a72e", "pid": "A006018560", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A006018560", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006018560", "source": "RERO"}], "preferred_name": "Beynon, C.E", "authorized_access_point": "Beynon, C.E"} 1 -2023-07-08 08:24:18.525721 2023-07-08 08:24:18.525727 1c0f38b8-8308-46c9-8ad1-9b3d86ab2145 {"md5": "5a7b5d30870193e28a9cf86b97936913", "pid": "A006035318", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A006035318", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006035318", "source": "RERO"}], "preferred_name": "Birget, J.-C", "authorized_access_point": "Birget, J.-C"} 1 -2023-07-08 08:24:18.627935 2023-07-08 08:24:18.627941 c5c8614d-c278-40f8-9fd4-aaf0822f4a0d {"md5": "94187e9cfe4dbf59c5e9a47129f7eea5", "pid": "A006048308", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A006048308", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006048308", "source": "RERO"}], "preferred_name": "Pellissier, Simone", "authorized_access_point": "Pellissier, Simone"} 1 -2023-07-08 08:24:18.730415 2023-07-08 08:24:18.730418 d1d59750-08d0-4387-86a0-7788615f19f2 {"md5": "b88b2ee889c5d429991e4222e2b0fb01", "pid": "A006055239", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A006055239", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006055239", "source": "RERO"}], "preferred_name": "Nigeria Deposit Insurance Corporation", "authorized_access_point": "Nigeria Deposit Insurance Corporation"} 1 -2023-07-08 08:24:18.827547 2023-07-08 08:24:18.827553 2524b690-036b-4ef4-bf1c-425975bffc72 {"md5": "9467dcc78338be8a49b2b8f5cb22417a", "pid": "A006055590", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A006055590", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006055590", "source": "RERO"}], "preferred_name": "Ensemble Kapsberger", "authorized_access_point": "Ensemble Kapsberger"} 1 -2023-07-08 08:24:18.925553 2023-07-08 08:24:18.92556 ed247af9-3db1-4c30-a73f-c608b0f8aef6 {"md5": "67d33d00127a0431942ec8cdfd4f1b00", "pid": "A006065033", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A006065033", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006065033", "source": "RERO"}], "preferred_name": "Mahtab, H.K", "authorized_access_point": "Mahtab, H.K"} 1 -2023-07-08 08:24:19.021359 2023-07-08 08:24:19.021363 4e1b5e6c-2394-4a49-be74-a2419b238259 {"md5": "f34f04deba884efa3bf14e4f49643a13", "pid": "A006071676", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A006071676", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006071676", "source": "RERO"}], "preferred_name": "Shilstone, Arthur", "authorized_access_point": "Shilstone, Arthur"} 1 -2023-07-08 08:24:19.10883 2023-07-08 08:24:19.108835 40852e30-c15f-406a-bf64-0aec6ccaba7d {"md5": "18bf5f099ac8f5a10816afd7bc26df02", "pid": "A006094802", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A006094802", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006094802", "source": "RERO"}], "preferred_name": "Morrison, Margaret", "authorized_access_point": "Morrison, Margaret"} 1 -2023-07-08 08:24:19.192928 2023-07-08 08:24:19.192936 8abdda89-180f-48ef-b1ba-a22c1a81b147 {"md5": "4f8c1e9482ccb51240cf02d2f8573fb5", "pid": "A006099782", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A006099782", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006099782", "source": "RERO"}], "preferred_name": "Francs et Franches camarades (Paris)", "authorized_access_point": "Francs et Franches camarades (Paris)"} 1 -2023-07-08 08:24:19.266649 2023-07-08 08:24:19.266658 0138bd70-12a1-4ef6-84b4-c0eff29aed2d {"md5": "d98c6be7225660979a7f0bfc87fdd98d", "pid": "A006102670", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A006102670", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006102670", "source": "RERO"}], "preferred_name": "Pomian, Andrzej", "authorized_access_point": "Pomian, Andrzej"} 1 -2023-07-08 08:24:19.352585 2023-07-08 08:24:19.352593 ebb84236-d5f7-4b7a-970c-e12c8cc95caf {"md5": "1ab5bb7d0b58f6a65e6125a2f6dad413", "pid": "A006154163", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A006154163", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006154163", "source": "RERO"}], "preferred_name": "Alldeutscher Verband", "authorized_access_point": "Alldeutscher Verband"} 1 -2023-07-08 08:24:19.441745 2023-07-08 08:24:19.441751 c7974ed4-e084-4470-bcea-706ba89bfac4 {"md5": "a08844ce429ccc47130907ec94722dad", "pid": "A006159385", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A006159385", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006159385", "source": "RERO"}], "preferred_name": "Hanssen, Christian", "authorized_access_point": "Hanssen, Christian"} 1 -2023-07-08 08:24:19.534854 2023-07-08 08:24:19.534862 c7b8c8e8-c34f-4c0a-bb35-04b0a43fec93 {"md5": "c6f8df352647ec5012e30773fb54ede2", "pid": "A006173450", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A006173450", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006173450", "source": "RERO"}], "preferred_name": "Steudler, Colette", "authorized_access_point": "Steudler, Colette"} 1 -2023-07-08 08:24:19.62215 2023-07-08 08:24:19.622154 2c064bf8-36c6-40c8-b915-baec61398b29 {"md5": "4c7267f52db733bd0a9c60cb71afceec", "pid": "A006173574", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A006173574", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006173574", "source": "RERO"}], "preferred_name": "Schönwälder, Karen", "authorized_access_point": "Schönwälder, Karen"} 1 -2023-07-08 08:24:19.697437 2023-07-08 08:24:19.697443 e345180f-b88b-4b91-b6fe-fe04312df449 {"md5": "caf4d4d98155cd2e52f071d5d72ef756", "pid": "A006204823", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A006204823", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006204823", "source": "RERO"}], "preferred_name": "Einstürzende Neubauten", "authorized_access_point": "Einstürzende Neubauten"} 1 -2023-07-08 08:24:19.778156 2023-07-08 08:24:19.778162 71debbf4-b197-4914-b35c-2082f63722a3 {"md5": "8aef76cd3b1a93c174b4731b68cffad9", "pid": "A006210520", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A006210520", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006210520", "source": "RERO"}], "preferred_name": "Schwartz, Robert B", "authorized_access_point": "Schwartz, Robert B"} 1 -2023-07-08 08:24:19.847343 2023-07-08 08:24:19.847349 580ef61b-539c-4bf7-8803-50345593e5e6 {"md5": "196d0fcb8d371a1169e5699365514082", "pid": "A006220068", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A006220068", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006220068", "source": "RERO"}], "preferred_name": "Centro di studi storici della Chiesa di Bari", "authorized_access_point": "Centro di studi storici della Chiesa di Bari"} 1 -2023-07-08 08:24:19.914646 2023-07-08 08:24:19.91465 f01e3a6b-01ce-496b-933c-b9b14c292399 {"md5": "7c49fa8ec372c1ad17aa88f10d7f6fbe", "pid": "A006225272", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A006225272", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006225272", "source": "RERO"}], "variant_name": ["CIRILLIS (Centre interuniversitaire de recherches sur l'Italie, langue, littérature, interactions culturelles, société et mentalités, Talence, Gironde)", "Université de Poitiers. Centre interuniversitaire de recherches sur l'Italie (langue, littérature, interactions culturelles, société et mentalités)", "Université de Toulouse 2. Centre interuniversitaire de recherches sur l'Italie (langue, littérature, interactions culturelles, société et mentalités)", "Université de Bordeaux 3. Centre interuniversitaire de recherches sur l'Italie (langue, littérature, interactions culturelles, société et mentalités)"], "preferred_name": "Centre interuniversitaire de recherches sur l'Italie (langue, littérature, interactions culturelles, société et mentalités) (Talence, Gironde)", "variant_access_point": ["CIRILLIS (Centre interuniversitaire de recherches sur l'Italie, langue, littérature, interactions culturelles, société et mentalités, Talence, Gironde)", "Université de Poitiers. Centre interuniversitaire de recherches sur l'Italie (langue, littérature, interactions culturelles, société et mentalités)", "Université de Toulouse 2. Centre interuniversitaire de recherches sur l'Italie (langue, littérature, interactions culturelles, société et mentalités)", "Université de Bordeaux 3. Centre interuniversitaire de recherches sur l'Italie (langue, littérature, interactions culturelles, société et mentalités)"], "authorized_access_point": "Centre interuniversitaire de recherches sur l'Italie (langue, littérature, interactions culturelles, société et mentalités) (Talence, Gironde)"} 1 -2023-07-08 08:24:19.978451 2023-07-08 08:24:19.978455 18bb831d-bfe1-4d2f-b901-8995680811d2 {"md5": "bbcec2c477c3c7b849b11011c22b9fa9", "pid": "A006241487", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A006241487", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006241487", "source": "RERO"}], "preferred_name": "Cherhabil, Hocine", "authorized_access_point": "Cherhabil, Hocine"} 1 -2023-07-08 08:24:20.042782 2023-07-08 08:24:20.042787 224a9317-d28b-4245-b14e-cd3e66d7f43e {"md5": "394a2d06b92e955fec814ad5cd33bcea", "pid": "A006246319", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A006246319", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006246319", "source": "RERO"}], "variant_name": ["García, Josefa Martín"], "preferred_name": "Martín García, Josefa", "variant_access_point": ["García, Josefa Martín"], "authorized_access_point": "Martín García, Josefa"} 1 -2023-07-08 08:24:20.107638 2023-07-08 08:24:20.107644 9c52b015-43b5-438e-a6b2-f15d344d39c5 {"md5": "eddca81585e4b4adb4cd132c07986bf9", "pid": "A006251854", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A006251854", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006251854", "source": "RERO"}], "preferred_name": "Schmitt-Breuninger, Friederike", "authorized_access_point": "Schmitt-Breuninger, Friederike"} 1 -2023-07-08 08:24:20.173588 2023-07-08 08:24:20.173592 7c6e63ea-3ede-4ace-a1db-d87f7fd3feb4 {"md5": "326da27334aceeecff7c137685c0cff3", "pid": "A006282682", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A006282682", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006282682", "source": "RERO"}], "preferred_name": "Dardenne, Henriette", "authorized_access_point": "Dardenne, Henriette"} 1 -2023-07-08 08:24:20.250442 2023-07-08 08:24:20.250452 147bc4c2-fe0f-4c1c-9e33-892a61cc8360 {"md5": "9534a91b26c5a3d05c72fa0f4c009609", "pid": "A006288245", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A006288245", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006288245", "source": "RERO"}], "preferred_name": "Bernabé, Claude", "authorized_access_point": "Bernabé, Claude"} 1 -2023-07-08 08:24:20.323826 2023-07-08 08:24:20.32383 b4251c3f-e7aa-4cae-94da-b98d4a096c71 {"md5": "46d7f7bd5283524e6f5440bf4fb49466", "pid": "A006304507", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A006304507", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006304507", "source": "RERO"}], "variant_name": ["Ecole polytechnique fédérale de Lausanne. Observatoire science, politique et société"], "preferred_name": "Observatoire EPFL science, politique et société (Ecublens)", "variant_access_point": ["Ecole polytechnique fédérale de Lausanne. Observatoire science, politique et société"], "authorized_access_point": "Observatoire EPFL science, politique et société (Ecublens)", "biographical_information": ["Jusqu'en 2004: Observatoire EPFL science, politique et société (Ecublens)", "Dès 2005: Observatoire science, politique et société (Ecublens)"]} 1 -2023-07-08 08:24:20.402322 2023-07-08 08:24:20.402325 4a43b7bb-f18f-4842-a9ef-ef4b35881180 {"md5": "820bc2756f9266e83b3aeca90d0275f6", "pid": "A006305372", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A006305372", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006305372", "source": "RERO"}], "preferred_name": "Harris, D.J", "authorized_access_point": "Harris, D.J"} 1 -2023-07-08 08:24:20.478693 2023-07-08 08:24:20.478698 7dc0e71f-7791-4f78-98f2-a8652c60a841 {"md5": "7c6982fd13bbd334c1ad286988f4d743", "pid": "A006319847", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A006319847", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006319847", "source": "RERO"}], "preferred_name": "Slipknot", "authorized_access_point": "Slipknot"} 1 -2023-07-08 08:24:20.542084 2023-07-08 08:24:20.542089 1d15569e-9da3-4923-8cb2-6af77958e16d {"md5": "f4ba8a6a73801fefafe461aa2bff63cb", "pid": "A006331016", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A006331016", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006331016", "source": "RERO"}], "preferred_name": "Sobieszczanski, Marcin", "authorized_access_point": "Sobieszczanski, Marcin"} 1 -2023-07-08 08:24:20.606321 2023-07-08 08:24:20.606327 187d2f5a-8025-4ce0-8c9f-3bb53306b794 {"md5": "d00f2ccf9c9636288b6e0f00104dc297", "pid": "A006378241", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A006378241", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006378241", "source": "RERO"}], "preferred_name": "Conseil international des archives. Section des archives d'architecture", "authorized_access_point": "Conseil international des archives. Section des archives d'architecture"} 1 -2023-07-08 08:24:20.688447 2023-07-08 08:24:20.688452 68a1e341-5d00-45a9-be90-d744c71deb44 {"md5": "c15b1f05250bc8d72a60581282daba8a", "pid": "A006384206", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A006384206", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006384206", "source": "RERO"}], "preferred_name": "Lynch, Stephen", "authorized_access_point": "Lynch, Stephen"} 1 -2023-07-08 08:24:20.772251 2023-07-08 08:24:20.772256 90fee0b0-a90b-4278-9a67-96de9cf73e7e {"md5": "0bb239c86b8191f693f8e24952285078", "pid": "A006389498", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A006389498", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006389498", "source": "RERO"}], "preferred_name": "Chrześcijanin", "authorized_access_point": "Chrześcijanin"} 1 -2023-07-08 08:24:20.870972 2023-07-08 08:24:20.87098 0f0771ab-c790-4966-8f71-0887349c70cf {"md5": "4abd687fa59a51380d3a84fb59a0bbea", "pid": "A006407470", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A006407470", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006407470", "source": "RERO"}], "preferred_name": "British Sundial Society", "authorized_access_point": "British Sundial Society"} 1 -2023-07-08 08:24:20.948769 2023-07-08 08:24:20.94878 775fde13-301a-4845-aad4-04a05b527d5b {"md5": "fc9c27840bd8ae088efea776b3c16677", "pid": "A006417880", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A006417880", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006417880", "source": "RERO"}], "preferred_name": "Palomäki, Mauri", "authorized_access_point": "Palomäki, Mauri"} 1 -2023-07-08 08:24:21.028353 2023-07-08 08:24:21.028357 5b058448-db72-43fc-b918-987d7a48f868 {"md5": "b6234681054333de6896142d124412bb", "pid": "A006417971", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A006417971", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006417971", "source": "RERO"}], "preferred_name": "Karagöz, Oguz", "authorized_access_point": "Karagöz, Oguz"} 1 -2023-07-08 08:24:21.098386 2023-07-08 08:24:21.098393 f179aca2-74fd-4520-b05d-dc6f9e7837bd {"md5": "0dc54a0867cf1ebec8072ba09e81f51c", "pid": "A006451071", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A006451071", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006451071", "source": "RERO"}], "preferred_name": "Smith, Dan Franklin", "authorized_access_point": "Smith, Dan Franklin"} 1 -2023-07-08 08:24:21.175347 2023-07-08 08:24:21.175353 41255fec-d19d-471d-9e9a-ce1295398f84 {"md5": "51349cbd23ae66bd973e3d1af467b50d", "pid": "A006525884", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A006525884", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006525884", "source": "RERO"}], "preferred_name": "Yetter, David N", "authorized_access_point": "Yetter, David N"} 1 -2023-07-08 08:24:21.243812 2023-07-08 08:24:21.243818 4ec0ed17-5c43-4ab3-b009-6fd7add78eef {"md5": "8bbca73e16b92b247fcf7a962a433fc9", "pid": "A006533818", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A006533818", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006533818", "source": "RERO"}], "preferred_name": "Welsch, Chauncey", "authorized_access_point": "Welsch, Chauncey"} 1 -2023-07-08 08:24:21.309159 2023-07-08 08:24:21.309163 b458e3ad-1f6e-43a9-8f0b-300eef33a22f {"md5": "a1d7aa458883e840726d7b1799494fdf", "pid": "A006534193", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A006534193", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006534193", "source": "RERO"}], "preferred_name": "Société d'émulation des Côtes d'Armor", "authorized_access_point": "Société d'émulation des Côtes d'Armor"} 1 -2023-07-08 08:24:21.374892 2023-07-08 08:24:21.374897 e9752a67-6353-4322-ac30-77843b44c3f7 {"md5": "61ac0959233efd40639e9f1a2718b440", "pid": "A006581053", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A006581053", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006581053", "source": "RERO"}], "preferred_name": "Dubus, Hermin", "authorized_access_point": "Dubus, Hermin"} 1 -2023-07-08 08:24:21.449203 2023-07-08 08:24:21.449207 cb723f86-4f5e-4821-afa5-1d253c4a03de {"md5": "64ddaf8e364c16686d73919ca6fc39e5", "pid": "A008584612", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A008584612", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A008584612", "source": "RERO"}], "preferred_name": "Redner, Sidney", "authorized_access_point": "Redner, Sidney"} 1 -2023-07-08 08:24:21.532614 2023-07-08 08:24:21.532619 67f6eaf2-f696-47f1-86b3-65f18d5dd1aa {"md5": "099150d52f00caec299adf138e0b5672", "pid": "A008591482", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A008591482", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A008591482", "source": "RERO"}], "preferred_name": "Chang, Chu-Kuing", "authorized_access_point": "Chang, Chu-Kuing"} 1 -2023-07-08 08:24:21.599356 2023-07-08 08:24:21.599364 760ec729-1377-45f2-afc1-5464814ddb3f {"md5": "c01984045024a75e60fa767a38e3cd38", "pid": "A008595638", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A008595638", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A008595638", "source": "RERO"}], "preferred_name": "Bergsma, Jurrit", "authorized_access_point": "Bergsma, Jurrit"} 1 -2023-07-08 08:24:21.669911 2023-07-08 08:24:21.669914 615f1168-b642-41c4-a861-777588267abb {"md5": "5cd80c0753095a6a0dd90db24852d54b", "pid": "A008660620", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A008660620", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A008660620", "source": "RERO"}], "preferred_name": "Blum, Sigwart", "authorized_access_point": "Blum, Sigwart"} 1 -2023-07-08 08:24:21.744855 2023-07-08 08:24:21.744859 b5e5a6df-a04f-4f99-b1ff-d0e7fae27f52 {"md5": "9a0cb61575e9453e10be997e99bd79a7", "pid": "A008729062", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A008729062", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A008729062", "source": "RERO"}], "preferred_name": "Cinquin, François", "authorized_access_point": "Cinquin, François"} 1 -2023-07-08 08:24:21.822961 2023-07-08 08:24:21.822966 d843f501-abed-4238-ab49-db83f383e474 {"md5": "0b1f0a7f29fd237cf56596055abaf784", "pid": "A008730051", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A008730051", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A008730051", "source": "RERO"}], "preferred_name": "Otomo, Masaku", "authorized_access_point": "Otomo, Masaku"} 1 -2023-07-08 08:24:21.89893 2023-07-08 08:24:21.898933 a2c2819f-76e9-47a7-bae5-7c00148209ed {"md5": "6a9f7bba85f0667bd1e7b8ecbe17ac94", "pid": "A008794733", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A008794733", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A008794733", "source": "RERO"}], "preferred_name": "Rogue, Christophe", "authorized_access_point": "Rogue, Christophe"} 1 -2023-07-08 08:24:21.965556 2023-07-08 08:24:21.965561 045556c9-e917-4b7d-a34b-65a13c402747 {"md5": "7dcd60ec2b0945e5ba7fd20f58ffc725", "pid": "A008799434", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A008799434", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A008799434", "source": "RERO"}], "preferred_name": "Realschule (Schönberg)", "authorized_access_point": "Realschule (Schönberg)"} 1 -2023-07-08 08:24:22.037251 2023-07-08 08:24:22.037254 a9485f16-673f-41dd-8d4f-d870b6053714 {"md5": "d48abbc3638b02e09edf402bbd107d6f", "pid": "A008811165", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A008811165", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A008811165", "source": "RERO"}], "preferred_name": "Desquilbet, Marion", "authorized_access_point": "Desquilbet, Marion"} 1 -2023-07-08 08:24:22.108775 2023-07-08 08:24:22.108779 dcdfade4-86ee-4994-bc72-81f9322fa2ac {"md5": "81f6f82040696db4398f5c12ed0d1430", "pid": "A008813776", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A008813776", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A008813776", "source": "RERO"}], "preferred_name": "Henriot, Véronique", "authorized_access_point": "Henriot, Véronique"} 1 -2023-07-08 08:24:22.184847 2023-07-08 08:24:22.184851 280e2d45-5af2-4b49-8a4c-526058c37ab0 {"md5": "d8108190a005d7c420b6438f54f6e406", "pid": "A008846996", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A008846996", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A008846996", "source": "RERO"}], "preferred_name": "Junker, Karin", "authorized_access_point": "Junker, Karin"} 1 -2023-07-08 08:24:22.251645 2023-07-08 08:24:22.251648 8ed31232-5d0d-4f68-85d6-8ae5c49f814a {"md5": "8ac882d17814199776ada7128ebffdf5", "pid": "A008873000", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A008873000", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A008873000", "source": "RERO"}], "preferred_name": "Duval, Jean-Marc", "authorized_access_point": "Duval, Jean-Marc"} 1 -2023-07-08 08:24:22.318172 2023-07-08 08:24:22.318176 6230a705-8725-477d-88ba-5fa5d01bc9f8 {"md5": "3073ea2ba4befa8e02f6a24148b4de0f", "pid": "A008883799", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A008883799", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A008883799", "source": "RERO"}], "preferred_name": "Greve, Michael", "authorized_access_point": "Greve, Michael"} 1 -2023-07-08 08:24:22.395261 2023-07-08 08:24:22.395265 8e09b9b7-820a-4705-89d4-4557f1d52953 {"md5": "ec49b016db91e9cc474d35a309713397", "pid": "A008902038", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A008902038", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A008902038", "source": "RERO"}], "preferred_name": "Conseil genevois des théâtres et de la musique", "authorized_access_point": "Conseil genevois des théâtres et de la musique"} 1 -2023-07-08 08:24:22.458301 2023-07-08 08:24:22.458305 d635f09a-860e-4fc2-9c37-bd309f3e3d56 {"md5": "2976f677178a03290aa04123b4d965ed", "pid": "A008915559", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A008915559", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A008915559", "source": "RERO"}], "preferred_name": "Machtey, Michael", "authorized_access_point": "Machtey, Michael"} 1 -2023-07-08 08:24:22.533685 2023-07-08 08:24:22.533688 b01bf2ef-7600-421c-a14d-4325f7397f80 {"md5": "4d83c44c524fd353b2fc9543745efd06", "pid": "A008943784", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A008943784", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A008943784", "source": "RERO"}], "preferred_name": "Durst, David C", "authorized_access_point": "Durst, David C"} 1 -2023-07-08 08:24:22.595448 2023-07-08 08:24:22.595451 acaf3d62-f57b-4558-9fd7-f35c87e3a30e {"md5": "2905921d6eee127415869acd3065101b", "pid": "A008959724", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A008959724", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A008959724", "source": "RERO"}], "preferred_name": "Bayili, Emmanuel", "authorized_access_point": "Bayili, Emmanuel"} 1 -2023-07-08 08:24:22.659898 2023-07-08 08:24:22.659901 cff3d593-4a0d-4e2f-87d6-abbc5581245f {"md5": "6970e8a968a22a6e2781a8109f56603e", "pid": "A008978887", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A008978887", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A008978887", "source": "RERO"}], "preferred_name": "Spieth, Wolf Friedrich", "authorized_access_point": "Spieth, Wolf Friedrich"} 1 -2023-07-08 08:24:22.725584 2023-07-08 08:24:22.725587 8187ee77-845c-4ba1-b05f-bc1bdc4186c5 {"md5": "78bcbf6234fe898e00f88221363615eb", "pid": "A009007993", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A009007993", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009007993", "source": "RERO"}], "preferred_name": "MCC Associates", "authorized_access_point": "MCC Associates"} 1 -2023-07-08 08:24:22.799499 2023-07-08 08:24:22.799505 eb07f32b-6b90-4a42-841c-8f1f0cbfd36b {"md5": "51580f0ea83c59c03c4ae031a026fa03", "pid": "A009035130", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A009035130", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009035130", "source": "RERO"}], "preferred_name": "Corbu, Adrien C", "authorized_access_point": "Corbu, Adrien C"} 1 -2023-07-08 08:24:22.86881 2023-07-08 08:24:22.868814 ab287f8e-9be8-466d-a26d-4fa5f7ef23d6 {"md5": "5623b11b84b7b01bcd25e847e216b538", "pid": "A009047642", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A009047642", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009047642", "source": "RERO"}], "preferred_name": "Tournier, Vincent", "authorized_access_point": "Tournier, Vincent"} 1 -2023-07-08 08:24:22.940911 2023-07-08 08:24:22.940917 929d0f0a-47ff-4f3f-8dc4-4dd30fc61f93 {"md5": "d38360f04ff03a534eead81d93806bdf", "pid": "A009059078", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A009059078", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009059078", "source": "RERO"}], "preferred_name": "Robinet, Jean-Claude", "authorized_access_point": "Robinet, Jean-Claude"} 1 -2023-07-08 08:24:23.015725 2023-07-08 08:24:23.015731 d6c9f43d-d905-433f-8f34-9ca7f3f52ec7 {"md5": "67dacadf91673a0499e79c9197bedbf1", "pid": "A009061697", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A009061697", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009061697", "source": "RERO"}], "variant_name": ["Conseil consultatif des étrangers (Strasbourg)", "Conseil consultatif des résidents étrangers de la ville de Strasbourg"], "preferred_name": "Strasbourg. Conseil consultatif des étrangers", "variant_access_point": ["Conseil consultatif des étrangers (Strasbourg)", "Conseil consultatif des résidents étrangers de la ville de Strasbourg"], "authorized_access_point": "Strasbourg. Conseil consultatif des étrangers"} 1 -2023-07-08 08:24:23.085918 2023-07-08 08:24:23.085922 2218bc3f-478d-4ed2-914e-b218244a2809 {"md5": "7b9f3e40c3b0aa7ec669ad322d8eb1d7", "pid": "A009062623", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A009062623", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009062623", "source": "RERO"}], "variant_name": ["Somerville College (University of Oxford)"], "preferred_name": "University of Oxford. Somerville College", "variant_access_point": ["Somerville College (University of Oxford)"], "authorized_access_point": "University of Oxford. Somerville College"} 1 -2023-07-08 08:24:23.151636 2023-07-08 08:24:23.15164 e6d7f717-385d-4215-9414-28517c39fd9b {"md5": "42cb28b69b7842a10e4cd50840f65fff", "pid": "A009084334", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A009084334", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009084334", "source": "RERO"}], "preferred_name": "Krieghoff, Hans", "authorized_access_point": "Krieghoff, Hans"} 1 -2023-07-08 08:24:23.236232 2023-07-08 08:24:23.236236 bd523df0-b89c-4b0d-b486-35f9cc89c025 {"md5": "6548988c3f9f716965eddcdf6845e6bb", "pid": "A009106239", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A009106239", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009106239", "source": "RERO"}], "preferred_name": "Galster, Karol Lucjan", "authorized_access_point": "Galster, Karol Lucjan"} 1 -2023-07-08 08:24:23.318899 2023-07-08 08:24:23.318904 4c12fa49-3b4e-48a8-bff9-86ec5a8aee99 {"md5": "a0cee829da1bda7a1acc9e0ed737a2a0", "pid": "A009112861", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A009112861", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009112861", "source": "RERO"}], "preferred_name": "Bund-Länder-Kommission für Bildungsplanung und Forschungsförderung (Bonn)", "authorized_access_point": "Bund-Länder-Kommission für Bildungsplanung und Forschungsförderung (Bonn)"} 1 -2023-07-08 08:24:23.40319 2023-07-08 08:24:23.403195 a5a5671d-d351-4215-bb32-1abc8205a0e3 {"md5": "a7d4547e32b4bbb6d0dc627db1c5f676", "pid": "A009177536", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A009177536", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009177536", "source": "RERO"}], "preferred_name": "Oppel, Kenneth", "authorized_access_point": "Oppel, Kenneth"} 1 -2023-07-08 08:24:23.476729 2023-07-08 08:24:23.476735 8c2b2ce1-ddbd-401d-8927-de02d8cbfe34 {"md5": "e05f72407abd21b6e16fd1598cc73c7b", "pid": "A009187240", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A009187240", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009187240", "source": "RERO"}], "variant_name": ["OIE (Organisation internationale des employeurs)", "International Organisation of Employers", "IOE (International Organisation of Employers)", "Organización Internacional de Empleadores", "OIE (Organización Internacional de Empleadores)"], "preferred_name": "Organisation internationale des employeurs", "variant_access_point": ["OIE (Organisation internationale des employeurs)", "International Organisation of Employers", "IOE (International Organisation of Employers)", "Organización Internacional de Empleadores", "OIE (Organización Internacional de Empleadores)"], "authorized_access_point": "Organisation internationale des employeurs"} 1 -2023-07-08 08:24:23.567131 2023-07-08 08:24:23.567142 3eadae25-4d7e-40f7-9ccb-38da15e8a30d {"md5": "583b3f8dc534ea80a8915df929fd5cb3", "pid": "A009191402", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A009191402", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009191402", "source": "RERO"}], "variant_name": ["European Association of Hospital Pharmacists", "EAHP (European Association of Hospital Pharmacists)", "Europäische Vereinigung der Krankenhaus Apotheker", "Association européenne des pharmaciens hospitaliers"], "preferred_name": "Association européenne des pharmaciens des hôpitaux", "variant_access_point": ["European Association of Hospital Pharmacists", "EAHP (European Association of Hospital Pharmacists)", "Europäische Vereinigung der Krankenhaus Apotheker", "Association européenne des pharmaciens hospitaliers"], "authorized_access_point": "Association européenne des pharmaciens des hôpitaux"} 1 -2023-07-08 08:24:23.650448 2023-07-08 08:24:23.650455 3fe7c1f0-1564-4b29-bcd1-f2e0ba7dfeea {"md5": "c363f37d78e7730b98fe3cc1b4bc3cd6", "pid": "A009191855", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A009191855", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009191855", "source": "RERO"}], "preferred_name": "Jestaedt, Egbert M.W", "authorized_access_point": "Jestaedt, Egbert M.W"} 1 -2023-07-08 08:24:23.732623 2023-07-08 08:24:23.732626 f96118e8-479b-4a90-bf19-5a4d407111e6 {"md5": "70836cd01cb587e1daf6d731e3e2f5f3", "pid": "A009279090", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A009279090", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009279090", "source": "RERO"}], "preferred_name": "Douchy, Hervé", "authorized_access_point": "Douchy, Hervé"} 1 -2023-07-08 08:24:23.825782 2023-07-08 08:24:23.825788 80057019-e06c-4071-85e3-484fa5d739b5 {"md5": "f6e5d4014f10d2922d1f6d0d44a526d2", "pid": "A009281447", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A009281447", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009281447", "source": "RERO"}], "preferred_name": "André, Camille", "authorized_access_point": "André, Camille"} 1 -2023-07-08 08:24:23.916091 2023-07-08 08:24:23.916103 8926033b-87c5-4f11-ac42-3a57d99e6f33 {"md5": "7aa63472b087d447ee96fd7b38cbb0fb", "pid": "A009303631", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A009303631", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009303631", "source": "RERO"}], "preferred_name": "Fröhner, Klaus", "authorized_access_point": "Fröhner, Klaus"} 1 -2023-07-08 08:24:24.005528 2023-07-08 08:24:24.005538 6d37fbc5-898a-4394-b4e4-05c4ebbc33db {"md5": "b35012d45efab2998d76439e53aa3fec", "pid": "A009306109", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A009306109", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009306109", "source": "RERO"}], "preferred_name": "Soldt, Johannes", "authorized_access_point": "Soldt, Johannes"} 1 -2023-07-08 08:24:24.10761 2023-07-08 08:24:24.107616 934eda12-8ece-42f6-aef4-721073b7a589 {"md5": "68ae464e7493ece6e345631445c4023d", "pid": "A009309124", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A009309124", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009309124", "source": "RERO"}], "preferred_name": "Hancock, David J", "authorized_access_point": "Hancock, David J"} 1 -2023-07-08 08:24:24.199488 2023-07-08 08:24:24.199496 26f344e3-3f22-4ec4-b890-1bf8e24ce9f8 {"md5": "8d55d5b69a70617860e2382886d68522", "pid": "A009315376", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A009315376", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009315376", "source": "RERO"}], "preferred_name": "Burnett, A. M", "authorized_access_point": "Burnett, A. M"} 1 -2023-07-08 08:24:24.274212 2023-07-08 08:24:24.274219 db0a18f1-b5c3-474d-989c-9aca75576333 {"md5": "6f978967b8239b06f09dbc11b41eeae4", "pid": "A009341300", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A009341300", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009341300", "source": "RERO"}], "preferred_name": "Mchome, Sifuni Ernest", "authorized_access_point": "Mchome, Sifuni Ernest"} 1 -2023-07-08 08:24:24.361862 2023-07-08 08:24:24.36187 b3e1bcbe-56cc-4b0a-8221-ced79802ab2d {"md5": "f710b443489ade63cb86d7227352526e", "pid": "A009366379", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A009366379", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009366379", "source": "RERO"}], "preferred_name": "Beil, Brigitte", "authorized_access_point": "Beil, Brigitte"} 1 -2023-07-08 08:24:24.44782 2023-07-08 08:24:24.447828 9e48664a-ff45-4968-8826-9d5c9aedf58d {"md5": "b189e96c4e91e7076c804a298cde3a7f", "pid": "A009366743", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A009366743", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009366743", "source": "RERO"}], "preferred_name": "Liebelin, François", "authorized_access_point": "Liebelin, François"} 1 -2023-07-08 08:24:24.532209 2023-07-08 08:24:24.532218 c6ba0647-c1b3-4ef5-b42e-faa6eca59c18 {"md5": "2c31040c3012ff19594df5f01881f99c", "pid": "A009390744", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A009390744", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009390744", "source": "RERO"}], "preferred_name": "Baule, Sylvia", "authorized_access_point": "Baule, Sylvia"} 1 -2023-07-08 08:24:24.620577 2023-07-08 08:24:24.620582 79ed2261-23d9-41e3-9bc1-4e05c78f468f {"md5": "4f1cec2543c44d6f2bad187819e67f46", "pid": "A009403017", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A009403017", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009403017", "source": "RERO"}], "variant_name": ["International Congress of Gerontology"], "preferred_name": "Congrès international de gérontologie", "variant_access_point": ["International Congress of Gerontology"], "authorized_access_point": "Congrès international de gérontologie"} 1 -2023-07-08 08:24:24.700549 2023-07-08 08:24:24.700553 bddaf017-9da6-4be5-9ccd-42ec84cba5c2 {"md5": "3823233071d37a74308df75a9015f944", "pid": "A009426238", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A009426238", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009426238", "source": "RERO"}], "preferred_name": "Luard, Honey", "authorized_access_point": "Luard, Honey"} 1 -2023-07-08 08:24:24.775061 2023-07-08 08:24:24.775067 f41dcdb9-c44f-41a2-8785-a9c75d222f02 {"md5": "2c07e86591ff61b2c725f2cf3390fe3a", "pid": "A009431913", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A009431913", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009431913", "source": "RERO"}], "preferred_name": "Chandler, Caroline A", "authorized_access_point": "Chandler, Caroline A"} 1 -2023-07-08 08:24:24.869282 2023-07-08 08:24:24.869291 45296749-106e-4d39-b555-6d24330ec5f5 {"md5": "bc4da028f888133b9115a4da91b86e62", "pid": "A009476519", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A009476519", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009476519", "source": "RERO"}], "preferred_name": "Society of American Foresters", "authorized_access_point": "Society of American Foresters"} 1 -2023-07-08 08:24:24.949424 2023-07-08 08:24:24.949432 c8111029-c460-448c-a215-a85c6265f48e {"md5": "24e7cf6515ba93eeaf16fcd556aeb171", "pid": "A009505580", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A009505580", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009505580", "source": "RERO"}], "preferred_name": "Mishra, Omprakash", "authorized_access_point": "Mishra, Omprakash"} 1 -2023-07-08 08:24:25.033376 2023-07-08 08:24:25.033383 c07dcfc0-5fcf-43e1-bca3-ff947ee592cf {"md5": "497454392eba2ef80057aa3b86f74a18", "pid": "A009519020", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A009519020", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009519020", "source": "RERO"}], "variant_name": ["Da Costa, Carla Tavares", "Tavares Da Costa, Carla"], "preferred_name": "Costa, Carla Tavares da", "variant_access_point": ["Da Costa, Carla Tavares", "Tavares Da Costa, Carla"], "authorized_access_point": "Costa, Carla Tavares da"} 1 -2023-07-08 08:24:26.166754 2023-07-08 08:24:26.166765 dd1a7bbf-8160-4644-9532-dd9ce6ac2d32 {"md5": "c1e497c44fa12c95a88b94b2f363b30f", "pid": "A009754386", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A009754386", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009754386", "source": "RERO"}], "preferred_name": "Mazo, Robert M", "authorized_access_point": "Mazo, Robert M"} 1 -2023-07-08 08:24:25.116874 2023-07-08 08:24:25.116883 de8974df-c861-44aa-8024-2a78b326f4b8 {"md5": "4b695655820eaeaac337596aecdb513e", "pid": "A009523157", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A009523157", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009523157", "source": "RERO"}], "variant_name": ["Association française d'audit et du conseil informatiques", "Association française d'audit et de conseil informatique", "AFAI (Association française de l'audit et du conseil informatiques)", "Association française d'audit informatique", "Association française de l'audit et du conseil informatique"], "preferred_name": "Association française de l'audit et du conseil informatiques", "variant_access_point": ["Association française d'audit et du conseil informatiques", "Association française d'audit et de conseil informatique", "AFAI (Association française de l'audit et du conseil informatiques)", "Association française d'audit informatique", "Association française de l'audit et du conseil informatique"], "authorized_access_point": "Association française de l'audit et du conseil informatiques"} 1 -2023-07-08 08:24:25.204544 2023-07-08 08:24:25.204553 96b7f48d-a7d3-484f-b1af-95e7a2824532 {"md5": "532494884171ef779a1dc1c494cc20b6", "pid": "A009541958", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A009541958", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009541958", "source": "RERO"}], "preferred_name": "Bădiliţă, Cristian", "authorized_access_point": "Bădiliţă, Cristian"} 1 -2023-07-08 08:24:25.284812 2023-07-08 08:24:25.284816 bce6790f-3b02-415c-8756-28e19d73cf08 {"md5": "ddb451d2298932b6ac1a27d5e365830d", "pid": "A009544653", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A009544653", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009544653", "source": "RERO"}], "preferred_name": "Women and Law in East Africa (Uganda)", "authorized_access_point": "Women and Law in East Africa (Uganda)"} 1 -2023-07-08 08:24:25.373016 2023-07-08 08:24:25.373022 ba7fd74f-de05-4efd-bd05-70a4d0b78828 {"md5": "a0e6ebefbd68222da37bb6dff0a7fe3f", "pid": "A009546303", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A009546303", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009546303", "source": "RERO"}], "preferred_name": "Wegmüller, David", "authorized_access_point": "Wegmüller, David"} 1 -2023-07-08 08:24:25.468698 2023-07-08 08:24:25.468706 04353d18-c40b-4147-9434-85b0435a6317 {"md5": "90dd2b447b54fbf9faa6b114174c231f", "pid": "A009587127", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A009587127", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009587127", "source": "RERO"}], "preferred_name": "Richard Galliano septet", "authorized_access_point": "Richard Galliano septet"} 1 -2023-07-08 08:24:25.548218 2023-07-08 08:24:25.548227 62885e58-d31e-4ad3-af45-a0ce7db5b0b5 {"md5": "e3f13d9872dc2764cf41acd1e48b68f8", "pid": "A009590113", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A009590113", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009590113", "source": "RERO"}], "date_of_birth": "1952", "preferred_name": "Haas, Jean-François,", "authorized_access_point": "Haas, Jean-François, 1952-", "biographical_information": ["Ecrivain, enseignant. Né à Courtaman (Suisse, FR)"]} 1 -2023-07-08 08:24:25.645957 2023-07-08 08:24:25.645961 61990230-6b20-4839-af42-d14aa351349e {"md5": "bb6f131aed4a6263a5161b574d9ec2d3", "pid": "A009621407", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A009621407", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009621407", "source": "RERO"}], "preferred_name": "Höllermann, Stefan", "authorized_access_point": "Höllermann, Stefan"} 1 -2023-07-08 08:24:25.736143 2023-07-08 08:24:25.736147 d614fc9a-a797-44bb-ba4e-4b1d3b536910 {"md5": "0377596b83275479864098933281411c", "pid": "A009631364", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A009631364", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009631364", "source": "RERO"}], "preferred_name": "Detmers, Maruschka", "authorized_access_point": "Detmers, Maruschka"} 1 -2023-07-08 08:24:25.814299 2023-07-08 08:24:25.814307 67a1d3db-2b2e-4af9-9408-c5a0e5f4bc39 {"md5": "dcee58faeb2978ba29e66ed43dc647f6", "pid": "A009639453", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A009639453", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009639453", "source": "RERO"}], "variant_name": ["Centre national de la recherche scientifique (France). Laboratoire Archéologie et territoires", "Centre national de la recherche scientifique (France). UMR (6575)", "Centre national de la recherche scientifique (France) Unité mixte de recherche (6575)", "Université de Tours. Laboratoire Archéologie et territoires", "Centre national de la recherche scientifique (France) Unité mixte de recherche (9966)", "Centre national de la recherche scientifique (France) Unité propre de recherche (9018)", "LAT (Laboratoire Archéologie et territoires : Tours)", "Centre de recherches archéologiques (Valbonne). Laboratoire Archéologie et territoires", "Equipe LAT (Tours)"], "preferred_name": "Laboratoire Archéologie et territoires (Tours)", "variant_access_point": ["Centre national de la recherche scientifique (France). Laboratoire Archéologie et territoires", "Centre national de la recherche scientifique (France). UMR (6575)", "Centre national de la recherche scientifique (France) Unité mixte de recherche (6575)", "Université de Tours. Laboratoire Archéologie et territoires", "Centre national de la recherche scientifique (France) Unité mixte de recherche (9966)", "Centre national de la recherche scientifique (France) Unité propre de recherche (9018)", "LAT (Laboratoire Archéologie et territoires : Tours)", "Centre de recherches archéologiques (Valbonne). Laboratoire Archéologie et territoires", "Equipe LAT (Tours)"], "authorized_access_point": "Laboratoire Archéologie et territoires (Tours)", "biographical_information": ["Le 01-01-1996, absorbe le GDR 0094 du CNRS \\"Société et cadre de vie au Moyen âge\\" qui devient un programme spécifique au sein du laboratoire ; le 01-01-2000, absorbe le GDR 0893 \\"Topographie chrétienne des cités de la Gaule\\". - Depuis 2004, constitue une des trois équipes de recherche de l'UMR 6173 CITERES du CNRS", "Avant 1996: Centre national de la recherche scientifique (France). Groupement de recherche (0094)", "Dès 1996: Laboratoire Archéologie et territoires (Tours)"]} 1 -2023-07-08 08:24:25.901247 2023-07-08 08:24:25.901256 7aa8eaaa-9cad-4493-b496-794d899fb6b4 {"md5": "fbf5e37dfa761b990622f4451b1031e2", "pid": "A009643309", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A009643309", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009643309", "source": "RERO"}], "preferred_name": "Rubio Pilarte, Xabier", "authorized_access_point": "Rubio Pilarte, Xabier"} 1 -2023-07-08 08:24:25.982512 2023-07-08 08:24:25.982521 fa7b4460-1386-4ee2-8095-ecbfd2fc16b2 {"md5": "8560e7c7c631569cd81cfc501102bb3f", "pid": "A009673075", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A009673075", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009673075", "source": "RERO"}], "preferred_name": "Döring, Maria-Louise", "authorized_access_point": "Döring, Maria-Louise"} 1 -2023-07-08 08:24:26.073774 2023-07-08 08:24:26.073779 aa2b804b-b91a-4a8a-92fb-3ea37e392403 {"md5": "03c745800103da7cb1f856382ea76e9b", "pid": "A009687650", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A009687650", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009687650", "source": "RERO"}], "preferred_name": "Joseph, Branden Wayne", "authorized_access_point": "Joseph, Branden Wayne"} 1 -2023-07-08 08:24:26.239934 2023-07-08 08:24:26.239938 f8f3d8dd-ead4-4e64-aeb7-1e274f0d70a0 {"md5": "aad0f7f74ec947f108aa9edbc0452120", "pid": "A009973428", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A009973428", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009973428", "source": "RERO"}], "variant_name": ["CCAC (Centro cultural arte contemporaneo, Mexico)"], "preferred_name": "Centro cultural arte contemporaneo (Mexico)", "variant_access_point": ["CCAC (Centro cultural arte contemporaneo, Mexico)"], "authorized_access_point": "Centro cultural arte contemporaneo (Mexico)"} 1 -2023-07-08 08:24:26.316778 2023-07-08 08:24:26.316787 eb9e5711-58bf-4847-ad4e-53030ea3188f {"md5": "96157bba88bd233e69c619646284643b", "pid": "A009989567", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A009989567", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009989567", "source": "RERO"}], "variant_name": ["FITA (Fédération internationale de tir à l'arc)", "International Archery Federation"], "preferred_name": "Fédération internationale de tir à l'arc", "variant_access_point": ["FITA (Fédération internationale de tir à l'arc)", "International Archery Federation"], "authorized_access_point": "Fédération internationale de tir à l'arc"} 1 -2023-07-08 08:24:26.407072 2023-07-08 08:24:26.407079 81031b64-952a-44e0-8a33-8c7c7ad1395e {"md5": "8fdeb6866b4ebdb598b7c5ce8e6ba587", "pid": "A010006868", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A010006868", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A010006868", "source": "RERO"}], "variant_name": ["Centre Le Tram (Carouge)", "Tram (Carouge)"], "preferred_name": "Maison de Pinchat (Carouge)", "variant_access_point": ["Centre Le Tram (Carouge)", "Tram (Carouge)"], "authorized_access_point": "Maison de Pinchat (Carouge)"} 1 -2023-07-08 08:24:26.4931 2023-07-08 08:24:26.493106 2d702931-5c74-4d82-869a-39dc4440fa42 {"md5": "889ce7dab6722d23aed60fc822f11245", "pid": "A010043080", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "(de Luxeuil)", "identifier": "http://data.rero.ch/02-A010043080", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A010043080", "source": "RERO"}], "preferred_name": "Angelome (de Luxeuil)", "authorized_access_point": "Angelome (de Luxeuil)"} 1 -2023-07-08 08:24:26.584684 2023-07-08 08:24:26.584692 3691bbdd-b6b4-49ee-b703-dcd05c69f823 {"md5": "93deb50208779df9d37f0c5efbef84d1", "pid": "A010073993", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A010073993", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A010073993", "source": "RERO"}], "preferred_name": "Didi", "authorized_access_point": "Didi"} 1 -2023-07-08 08:24:26.684467 2023-07-08 08:24:26.684475 160e0825-e1db-419a-a0d8-268bcb69c122 {"md5": "f5ba1c030a2d0cc01c27218b07598d36", "pid": "A010086586", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A010086586", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A010086586", "source": "RERO"}], "preferred_name": "Galeer, Albert", "authorized_access_point": "Galeer, Albert"} 1 -2023-07-08 08:24:26.765696 2023-07-08 08:24:26.765707 75bd7bed-4b25-438c-b86a-27f61aba325a {"md5": "8344d12cee2022196e6b6ce34917e91e", "pid": "A010104035", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A010104035", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A010104035", "source": "RERO"}], "preferred_name": "Kokuga Art Association (Kyoto)", "authorized_access_point": "Kokuga Art Association (Kyoto)"} 1 -2023-07-08 08:24:26.857706 2023-07-08 08:24:26.857713 39aee56c-f7d2-4bd0-bc8e-8b1d314aca85 {"md5": "5060095a467df9627c92f0b4f30c4866", "pid": "A010152644", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A010152644", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A010152644", "source": "RERO"}], "preferred_name": "Soveri, Jorma", "authorized_access_point": "Soveri, Jorma"} 1 -2023-07-08 08:24:26.942404 2023-07-08 08:24:26.942409 f0785464-f60c-4cb7-abdb-051c8d55d6d3 {"md5": "89b7cd9f133192cf50645630f89a8c87", "pid": "A010154587", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A010154587", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A010154587", "source": "RERO"}], "preferred_name": "Su, Song", "authorized_access_point": "Su, Song"} 1 -2023-07-08 08:24:27.033145 2023-07-08 08:24:27.033158 ad4c9a72-6373-46e2-84fe-49d763cc32e0 {"md5": "11d52e73422640bbad1268ba5e828071", "pid": "A010176792", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A010176792", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A010176792", "source": "RERO"}], "preferred_name": "Schiavazzi, Piero", "authorized_access_point": "Schiavazzi, Piero"} 1 -2023-07-08 08:24:27.132765 2023-07-08 08:24:27.132774 570c2afb-8055-4b7a-98c0-7634a089176a {"md5": "53947aaf6f2a9a126f552defd8a8c832", "pid": "A010219336", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "(famille)", "identifier": "http://data.rero.ch/02-A010219336", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A010219336", "source": "RERO"}], "preferred_name": "Collalto (famille)", "authorized_access_point": "Collalto (famille)"} 1 -2023-07-08 08:24:27.234333 2023-07-08 08:24:27.23434 ac79e59f-f820-408f-ac46-10c2d8f8788b {"md5": "6d678e66606ab786e9178e7519e7e155", "pid": "A010244192", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A010244192", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A010244192", "source": "RERO"}], "preferred_name": "Stephen, Alexander MacGregor", "authorized_access_point": "Stephen, Alexander MacGregor"} 1 -2023-07-08 08:24:27.314998 2023-07-08 08:24:27.315007 d09b6f30-c128-46ee-a557-f98f87710b0a {"md5": "510956edfe4bb5fc677a6f999c2cfe8e", "pid": "A010938873", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A010938873", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A010938873", "source": "RERO"}], "preferred_name": "Florent, Romain", "authorized_access_point": "Florent, Romain"} 1 -2023-07-08 08:24:27.426324 2023-07-08 08:24:27.42633 5fa079b4-fb48-40f0-8cdb-9467f933d23e {"md5": "20117369ad22eca8f0f0f3b11b7b6755", "pid": "A010941010", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A010941010", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A010941010", "source": "RERO"}], "preferred_name": "Rodriguez, Raquel", "authorized_access_point": "Rodriguez, Raquel"} 1 -2023-07-08 08:24:27.533551 2023-07-08 08:24:27.53356 c376897b-cff7-49b7-966a-a5bf75681d49 {"md5": "0c0bd2f33e205e645bcea256a018c8e9", "pid": "A010941759", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A010941759", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A010941759", "source": "RERO"}], "preferred_name": "Yue, Gang", "authorized_access_point": "Yue, Gang"} 1 -2023-07-08 08:24:27.624114 2023-07-08 08:24:27.62412 b0b77bf4-5697-4969-85d8-afd618578888 {"md5": "2160b2d5d7c26f2312a09098b929ab62", "pid": "A010952913", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A010952913", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A010952913", "source": "RERO"}], "preferred_name": "Malkin, Borys", "authorized_access_point": "Malkin, Borys"} 1 -2023-07-08 08:24:27.711336 2023-07-08 08:24:27.711344 2ac6411a-cbd4-45b3-964b-327b36f41039 {"md5": "1eda94f60605f3aa9a34dce65021c43e", "pid": "A010959260", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A010959260", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A010959260", "source": "RERO"}], "preferred_name": "Georgi, Hans", "authorized_access_point": "Georgi, Hans"} 1 -2023-07-08 08:24:27.790241 2023-07-08 08:24:27.790247 520ff612-4012-4e54-ad04-6b26449a74e2 {"md5": "4a9ee505b19db9768717ae19f6828ce4", "pid": "A011007424", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A011007424", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011007424", "source": "RERO"}], "preferred_name": "Bellini, Emmanuel", "authorized_access_point": "Bellini, Emmanuel", "biographical_information": ["Dates de vie: 1904-"]} 1 -2023-07-08 08:24:27.900685 2023-07-08 08:24:27.900692 079b25f3-e008-4a01-9cac-12b4f29e4800 {"md5": "00499c2f36769e0178de08f4f951aacf", "pid": "A011038799", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A011038799", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011038799", "source": "RERO"}], "preferred_name": "Bergerfurth, Monika", "authorized_access_point": "Bergerfurth, Monika"} 1 -2023-07-08 08:24:27.987822 2023-07-08 08:24:27.987826 d0f6ade5-c625-4aff-b373-6bf8103d752e {"md5": "ee317aafe1c9d09a8516b1e8b3bd9c00", "pid": "A011078595", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A011078595", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011078595", "source": "RERO"}], "variant_name": ["Valenzuela, Sergio Ortíz"], "preferred_name": "Ortíz Valenzuela, Sergio", "variant_access_point": ["Valenzuela, Sergio Ortíz"], "authorized_access_point": "Ortíz Valenzuela, Sergio"} 1 -2023-07-08 08:24:28.066625 2023-07-08 08:24:28.066641 1f64d676-f7f7-4d51-9b55-62f6b1ca6a1a {"md5": "41cfc6873fe76647d8c76d6f97966394", "pid": "A011089656", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A011089656", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011089656", "source": "RERO"}], "preferred_name": "Wopperer, Anton", "authorized_access_point": "Wopperer, Anton"} 1 -2023-07-08 08:24:28.154763 2023-07-08 08:24:28.154773 e189a88e-55aa-4948-b012-5f1a3e863ba1 {"md5": "f1e22176910ac509bd36068478efb633", "pid": "A011095417", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A011095417", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011095417", "source": "RERO"}], "preferred_name": "Faralicq, Gaston", "authorized_access_point": "Faralicq, Gaston"} 1 -2023-07-08 08:24:28.249193 2023-07-08 08:24:28.249196 e4212dd9-9693-46ed-8863-522e979fcffe {"md5": "f28cf074189642ddaec53f93820f87de", "pid": "A011106617", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A011106617", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011106617", "source": "RERO"}], "preferred_name": "Count Basie Octet", "authorized_access_point": "Count Basie Octet"} 1 -2023-07-08 08:24:28.339862 2023-07-08 08:24:28.339867 0696955a-7260-4958-aab5-b6cc75056970 {"md5": "5f208a68320ad855cace6cd56de8176e", "pid": "A011113114", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A011113114", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011113114", "source": "RERO"}], "variant_name": ["Sde-srid Saṅs-rgyas-rgya-mtsho", "Sangye Gyatso", "Gyatso, Sangye"], "preferred_name": "Saṅs-rgyas-rgya-mtsho, Sde-srid", "variant_access_point": ["Sde-srid Saṅs-rgyas-rgya-mtsho", "Sangye Gyatso", "Gyatso, Sangye"], "authorized_access_point": "Saṅs-rgyas-rgya-mtsho, Sde-srid"} 1 -2023-07-08 08:24:28.441023 2023-07-08 08:24:28.44103 3cc2fae3-bc18-44e9-a7c0-05b9845108fd {"md5": "ee6514bfddfdaf5c724edd3d3dd1489b", "pid": "A011132692", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A011132692", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011132692", "source": "RERO"}], "preferred_name": "Freidberg, Susanne", "authorized_access_point": "Freidberg, Susanne"} 1 -2023-07-08 08:24:28.541332 2023-07-08 08:24:28.541339 ae137769-5d75-4dd2-b5c7-cd15025a7100 {"md5": "6bc64cea141012af26ed2d3d7dda2d8c", "pid": "A011151957", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A011151957", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011151957", "source": "RERO"}], "variant_name": ["Sankt Gallen (Kanton). Ufficio delle costruzioni", "Baudepartement (Sankt Gallen ; Kanton)", "Ufficio delle costruzioni (Sankt Gallen ; Kanton)"], "preferred_name": "Sankt Gallen (Kanton). Baudepartement", "variant_access_point": ["Sankt Gallen (Kanton). Ufficio delle costruzioni", "Baudepartement (Sankt Gallen ; Kanton)", "Ufficio delle costruzioni (Sankt Gallen ; Kanton)"], "authorized_access_point": "Sankt Gallen (Kanton). Baudepartement"} 1 -2023-07-08 08:24:28.641371 2023-07-08 08:24:28.641376 ff051420-7bcf-4aac-9e3f-c11c6ea3d229 {"md5": "c8e826fa747a9ebfce8d6ca9c19b8df3", "pid": "A011157710", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A011157710", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011157710", "source": "RERO"}], "preferred_name": "Feltgen, Eduard", "authorized_access_point": "Feltgen, Eduard"} 1 -2023-07-08 08:24:28.736935 2023-07-08 08:24:28.736941 171feec9-39ec-450f-b597-4db36d99f476 {"md5": "8b5869413965a18f5053f6e027aca796", "pid": "A011241983", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A011241983", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011241983", "source": "RERO"}], "preferred_name": "Chiffert, L", "authorized_access_point": "Chiffert, L"} 1 -2023-07-08 08:24:28.837643 2023-07-08 08:24:28.837648 e526d66a-e16d-420c-9e5e-f64f547bcc6d {"md5": "433a2b03b407519edda730a5a11e023c", "pid": "A011363373", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A011363373", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011363373", "source": "RERO"}], "variant_name": ["JP (Jeunesses poétiques, Bruxelles)"], "preferred_name": "Jeunesses poétiques (Bruxelles)", "variant_access_point": ["JP (Jeunesses poétiques, Bruxelles)"], "authorized_access_point": "Jeunesses poétiques (Bruxelles)"} 1 -2023-07-08 08:24:28.926945 2023-07-08 08:24:28.926952 745ebc48-3ff7-4aa9-a7ed-dbf8915401e3 {"md5": "d8dcfe83b889289ea8f6bba3311f19f4", "pid": "A011377115", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A011377115", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011377115", "source": "RERO"}], "preferred_name": "Deplanque, Laetitia", "authorized_access_point": "Deplanque, Laetitia"} 1 -2023-07-08 08:24:29.010058 2023-07-08 08:24:29.010063 4c3633f6-c7c0-40f9-bf32-f5efe268219e {"md5": "3b9c6277f07156e19955817282576cd5", "pid": "A011383290", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A011383290", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011383290", "source": "RERO"}], "variant_name": ["Yersin, Hansueli Müller-"], "preferred_name": "Müller-Yersin, Hansueli", "variant_access_point": ["Yersin, Hansueli Müller-"], "authorized_access_point": "Müller-Yersin, Hansueli"} 1 -2023-07-08 08:24:29.104841 2023-07-08 08:24:29.104847 7afe095c-7afa-4982-92cc-cba8a2422480 {"md5": "5b8ce153f057be792286ec8dd65962a4", "pid": "A011384771", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A011384771", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011384771", "source": "RERO"}], "preferred_name": "Schmidt-Welle, Friedhelm", "authorized_access_point": "Schmidt-Welle, Friedhelm"} 1 -2023-07-08 08:24:29.20269 2023-07-08 08:24:29.202697 2be5f8db-601e-487a-9770-08184c0d3d2a {"md5": "93b6baa8d03e7bcd6f300ef2507f3fc7", "pid": "A011412011", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A011412011", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011412011", "source": "RERO"}], "preferred_name": "Söyrinki, Niilo", "authorized_access_point": "Söyrinki, Niilo"} 1 -2023-07-08 08:24:29.279637 2023-07-08 08:24:29.279645 c6516c0f-955d-4b10-907e-11966818bae9 {"md5": "48e8923f85e83c007e98b29a340dc7e8", "pid": "A011417162", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A011417162", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011417162", "source": "RERO"}], "preferred_name": "Oelenheinz, Leopold", "authorized_access_point": "Oelenheinz, Leopold"} 1 -2023-07-08 08:24:29.379484 2023-07-08 08:24:29.379495 610379bb-136c-4162-aa00-4134df05270c {"md5": "51f3bc11481ad40e2cc8adb70452b467", "pid": "A011417535", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A011417535", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011417535", "source": "RERO"}], "preferred_name": "Gardner, Peter S", "authorized_access_point": "Gardner, Peter S"} 1 -2023-07-08 08:24:29.460248 2023-07-08 08:24:29.460253 d7de7990-f322-40ad-b6c7-7c370ed35743 {"md5": "b35f1a9c688ab4b3383c1db1bae5b563", "pid": "A011464222", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A011464222", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011464222", "source": "RERO"}], "preferred_name": "Pax, Schweizerische Lebensversicherungs-Gesellschaft", "authorized_access_point": "Pax, Schweizerische Lebensversicherungs-Gesellschaft"} 1 -2023-07-08 08:24:29.542591 2023-07-08 08:24:29.542597 59394b9f-5084-4733-ba4e-78c7b5b567bb {"md5": "468ed9b7cc790cdfa9c2ca4924d2a249", "pid": "A011466531", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A011466531", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011466531", "source": "RERO"}], "preferred_name": "Olsen, Frode", "authorized_access_point": "Olsen, Frode"} 1 -2023-07-08 08:24:29.639843 2023-07-08 08:24:29.63985 97ec5375-7e82-4893-8594-392b707ac4a5 {"md5": "922dfd9e1ab09a94ec19776e6e3c488c", "pid": "A011466589", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A011466589", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011466589", "source": "RERO"}], "preferred_name": "Cross-cultural shamanism network", "authorized_access_point": "Cross-cultural shamanism network"} 1 -2023-07-08 08:24:29.739302 2023-07-08 08:24:29.739307 6ae74917-1f13-4dca-8801-1ad31bd5402b {"md5": "b056ba2fe648bca75ead85f7c999b97b", "pid": "A011493066", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A011493066", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011493066", "source": "RERO"}], "preferred_name": "Leitner, Marina", "authorized_access_point": "Leitner, Marina"} 1 -2023-07-08 08:24:29.825415 2023-07-08 08:24:29.825421 ab3c0da4-1b8f-440d-bf93-d168161a7b47 {"md5": "d7a0923f5730226c68c59ee0fc323773", "pid": "A011558774", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A011558774", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011558774", "source": "RERO"}], "preferred_name": "Scherzer, Carl J", "authorized_access_point": "Scherzer, Carl J"} 1 -2023-07-08 08:24:29.918264 2023-07-08 08:24:29.918273 e60f5e02-5909-4df6-9223-bdafcfec167a {"md5": "15cf97856f71db7ee555bac795873a11", "pid": "A011591041", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A011591041", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011591041", "source": "RERO"}], "preferred_name": "Lamsdorff-Galagane, Vladimiro", "authorized_access_point": "Lamsdorff-Galagane, Vladimiro"} 1 -2023-07-08 08:24:30.002116 2023-07-08 08:24:30.002121 05be9d1c-95ce-4e64-8d2e-e8734dabec64 {"md5": "71c291d561405141c5d8b4e209bb5529", "pid": "A011627404", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A011627404", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011627404", "source": "RERO"}], "preferred_name": "Furūghī, Abū al-Ḥasan", "authorized_access_point": "Furūghī, Abū al-Ḥasan"} 1 -2023-07-08 08:24:30.08919 2023-07-08 08:24:30.089196 7910db8e-2f67-4cf1-b5b2-e3b2a05fba78 {"md5": "151d4e8d3de2044afc6134463ed612b9", "pid": "A011674667", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A011674667", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011674667", "source": "RERO"}], "preferred_name": "Perrin, Pierre-Louis-Marie-Joseph", "authorized_access_point": "Perrin, Pierre-Louis-Marie-Joseph"} 1 -2023-07-08 08:24:30.190149 2023-07-08 08:24:30.190156 13fd7e97-fe11-4440-99a9-f0fe30f89aa7 {"md5": "550f29030147bdb440b68447eb2f9e75", "pid": "A011686664", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A011686664", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011686664", "source": "RERO"}], "preferred_name": "Aprikian, Garbis", "authorized_access_point": "Aprikian, Garbis"} 1 -2023-07-08 08:24:30.284453 2023-07-08 08:24:30.284462 7e8c4df8-5de7-4035-bf34-e9b5104cf21d {"md5": "434fb8b52af813ceef8f37aec177da1b", "pid": "A011733730", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A011733730", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011733730", "source": "RERO"}], "preferred_name": "Société d'études paléontologiques et palethnographiques de Provence (Marseille)", "authorized_access_point": "Société d'études paléontologiques et palethnographiques de Provence (Marseille)"} 1 -2023-07-08 08:24:30.385029 2023-07-08 08:24:30.385038 f85d58d3-d6e4-484b-b9f0-335e60a02bb4 {"md5": "70b4eb03cb589289abc531afc54b860d", "pid": "A011736857", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A011736857", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011736857", "source": "RERO"}], "preferred_name": "Jurjevics, Juris", "authorized_access_point": "Jurjevics, Juris"} 1 -2023-07-08 08:24:30.488884 2023-07-08 08:24:30.488892 e4af76d2-21f0-49e4-a0d7-48b048ce1bc0 {"md5": "641b80cbecc0dce9892a555ad0d77b59", "pid": "A011743931", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A011743931", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011743931", "source": "RERO"}], "preferred_name": "Fisher, Philip John", "authorized_access_point": "Fisher, Philip John"} 1 -2023-07-08 08:24:30.574907 2023-07-08 08:24:30.574913 15e8486c-250e-41e5-953e-d9d770b6c772 {"md5": "4e115e73e8fe1e99375c3d00cbe36bff", "pid": "A011755738", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A011755738", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011755738", "source": "RERO"}], "preferred_name": "Grimm, Johann", "authorized_access_point": "Grimm, Johann"} 1 -2023-07-08 08:24:30.67276 2023-07-08 08:24:30.672764 11ec5e16-ab9c-4d23-bda7-241ea596a8cb {"md5": "64e0407f55b36651e3cb0e71acc8c39a", "pid": "A011817228", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A011817228", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011817228", "source": "RERO"}], "preferred_name": "Hopf, Friedrich-Eugen", "authorized_access_point": "Hopf, Friedrich-Eugen"} 1 -2023-07-08 08:24:30.866009 2023-07-08 08:24:30.866018 0e319145-d371-4da2-b9d8-d6e8521e6d81 {"md5": "b87e7f2538fcadde4746cb1afaca30ba", "pid": "A011818787", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A011818787", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011818787", "source": "RERO"}], "preferred_name": "Truck Stop (groupe musical)", "authorized_access_point": "Truck Stop (groupe musical)"} 1 -2023-07-08 08:24:30.959041 2023-07-08 08:24:30.959052 ec1ff979-92ca-4723-869a-821c65b9c088 {"md5": "bc1b915eb28685cfe50c862dbb7fd6c3", "pid": "A011831186", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A011831186", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011831186", "source": "RERO"}], "preferred_name": "Stendhal-Club", "authorized_access_point": "Stendhal-Club"} 1 -2023-07-08 08:24:31.050977 2023-07-08 08:24:31.05099 d966c221-a4d4-4025-9c5d-95b4fd900b21 {"md5": "3c3804c7167175e8392a09f64aac7f33", "pid": "A011875062", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A011875062", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011875062", "source": "RERO"}], "preferred_name": "Ecoconseil (La Chaux-de-Fonds)", "authorized_access_point": "Ecoconseil (La Chaux-de-Fonds)"} 1 -2023-07-08 08:24:31.143901 2023-07-08 08:24:31.143906 7ab213aa-c8dd-4d23-aa40-4a57e42accff {"md5": "1661c82b54b48ca9be4ae51550cbf4b6", "pid": "A011896248", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A011896248", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011896248", "source": "RERO"}], "preferred_name": "Aernecke, Susanne", "authorized_access_point": "Aernecke, Susanne"} 1 -2023-07-08 08:24:31.234645 2023-07-08 08:24:31.234653 12e4a57e-fffc-4ba7-af2c-4df47ef94494 {"md5": "7d56905452ca94029e4498595cdce936", "pid": "A011919031", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A011919031", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011919031", "source": "RERO"}], "preferred_name": "Duton, Frédéric", "authorized_access_point": "Duton, Frédéric"} 1 -2023-07-08 08:24:31.308754 2023-07-08 08:24:31.308758 f2d55d20-55e5-4308-87ea-6ac801bbe4da {"md5": "ab6faeee22208232e8ace4c9d55af163", "pid": "A011935041", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A011935041", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011935041", "source": "RERO"}], "preferred_name": "Glasze, Georg", "authorized_access_point": "Glasze, Georg"} 1 -2023-07-08 08:24:31.394142 2023-07-08 08:24:31.394149 97984114-65d2-4b07-af83-d604382f3ef6 {"md5": "3a9b64e5bfad8e47d58ec97c81fdc0e9", "pid": "A011951291", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A011951291", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011951291", "source": "RERO"}], "preferred_name": "Road, Sinclair", "authorized_access_point": "Road, Sinclair"} 1 -2023-07-08 08:24:31.493343 2023-07-08 08:24:31.493348 ec19e00f-be15-4099-93f2-080aac641ab9 {"md5": "4972faa9459cf68c9fd158b200b2a54f", "pid": "A011958684", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A011958684", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011958684", "source": "RERO"}], "variant_name": ["Palmo, Tenzin"], "preferred_name": "Tenzin Palmo", "variant_access_point": ["Palmo, Tenzin"], "authorized_access_point": "Tenzin Palmo"} 1 -2023-07-08 08:24:31.585503 2023-07-08 08:24:31.585511 fcd74d9b-58d3-4fd9-b021-069006afb8ff {"md5": "cfc4257a787029640be705267b98f398", "pid": "A011959589", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A011959589", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011959589", "source": "RERO"}], "preferred_name": "Michalski, Władysław", "authorized_access_point": "Michalski, Władysław"} 1 -2023-07-08 08:24:31.689019 2023-07-08 08:24:31.689028 6ef6cadd-bac1-4992-9a99-dfbafc3dec4c {"md5": "62f4efc24abc31a49714dc5b4f7c176f", "pid": "A011961159", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A011961159", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011961159", "source": "RERO"}], "variant_name": ["Cancellieri, Francesco Girolamo,", "Cancellieri, François,", "Cancellieri, Francisco,", "Cancellerius, Franciscus,", "Cancellierius, Franciscus,", "Cancelieri, François,"], "date_of_birth": "1751", "date_of_death": "1826", "preferred_name": "Cancellieri, Francesco,", "variant_access_point": ["Cancellieri, Francesco Girolamo, 1751-1826", "Cancellieri, François, 1751-1826", "Cancellieri, Francisco, 1751-1826", "Cancellerius, Franciscus, 1751-1826", "Cancellierius, Franciscus, 1751-1826", "Cancelieri, François, 1751-1826"], "authorized_access_point": "Cancellieri, Francesco, 1751-1826", "biographical_information": ["Abbé. - Archéologue. - Bibliothécaire"]} 1 -2023-07-08 08:24:31.77939 2023-07-08 08:24:31.779397 9b14a5ab-baee-4566-8718-bd97227570b4 {"md5": "e1032e3829b7037e25ecd50e4944d641", "pid": "A011964957", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A011964957", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011964957", "source": "RERO"}], "preferred_name": "Hauenschild, Katrin", "authorized_access_point": "Hauenschild, Katrin"} 1 -2023-07-08 08:24:31.888294 2023-07-08 08:24:31.888305 61befca7-a127-4aae-b2a1-723a66711e73 {"md5": "8ef7c158029c665c8fb16e998e032105", "pid": "A011971216", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A011971216", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011971216", "source": "RERO"}], "preferred_name": "Peterson, Rudolph A", "authorized_access_point": "Peterson, Rudolph A"} 1 -2023-07-08 08:24:31.991884 2023-07-08 08:24:31.991889 e57d9f8c-1f61-4e58-bc47-65c52178bfac {"md5": "c1ba1385d6ee370389a56a9c74a143eb", "pid": "A011981174", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A011981174", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011981174", "source": "RERO"}], "preferred_name": "Luke, Jeff S", "authorized_access_point": "Luke, Jeff S"} 1 -2023-07-08 08:24:32.084616 2023-07-08 08:24:32.084626 aede8080-36d9-4a01-a8b9-124ec1551e8d {"md5": "fa008cb8669bd2a94a59a2461f6c0dec", "pid": "A011983307", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A011983307", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011983307", "source": "RERO"}], "preferred_name": "Bhatt, Anil", "authorized_access_point": "Bhatt, Anil"} 1 -2023-07-08 08:24:32.188258 2023-07-08 08:24:32.188269 c8cc76f7-aaa2-4dbb-a13f-3f4d2aa02410 {"md5": "b349825311de25544ed48b370e72f951", "pid": "A011992966", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A011992966", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011992966", "source": "RERO"}], "variant_name": ["Pantoja de M. Pimentel, Angela"], "preferred_name": "Pimentel, Angela Pantoja de M", "variant_access_point": ["Pantoja de M. Pimentel, Angela"], "authorized_access_point": "Pimentel, Angela Pantoja de M"} 1 -2023-07-08 08:24:32.274959 2023-07-08 08:24:32.274963 54b16379-38c2-40ab-b40c-1acf9a0ec06c {"md5": "53fe646117a4208583c9d2ed11fad168", "pid": "A012003599", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A012003599", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012003599", "source": "RERO"}], "preferred_name": "Montes, Noemí", "authorized_access_point": "Montes, Noemí"} 1 -2023-07-08 08:24:32.362399 2023-07-08 08:24:32.362406 33863d8f-ac2c-414d-a649-a9aa6be83d62 {"md5": "408487bd6331810cc6ee872d04a38d32", "pid": "A012045391", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012045391", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012045391", "source": "RERO"}], "variant_name": ["Société philanhrophique suisse Union"], "preferred_name": "Union (Société philanthropique suisse)", "variant_access_point": ["Société philanhrophique suisse Union"], "authorized_access_point": "Union (Société philanthropique suisse)"} 1 -2023-07-08 08:24:32.447269 2023-07-08 08:24:32.447274 d553e3db-c92a-4dd3-88ee-a64d2492418b {"md5": "96f994009dcfdd39c3ccd1f325b7ca42", "pid": "A012045625", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A012045625", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012045625", "source": "RERO"}], "variant_name": ["Timčenko, Irina Petrovna"], "preferred_name": "Timchenko, Irina Petrovna", "variant_access_point": ["Timčenko, Irina Petrovna"], "parallel_access_point": ["Тимченко, Ирина Петровна"], "authorized_access_point": "Timchenko, Irina Petrovna"} 1 -2023-07-08 08:24:32.540025 2023-07-08 08:24:32.540033 957920ba-d49a-4acf-935d-f0d65e11fe4a {"md5": "f2f8fd21620680e308cd32c255142a4d", "pid": "A012053752", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A012053752", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012053752", "source": "RERO"}], "preferred_name": "García Cañizares, Felipe", "authorized_access_point": "García Cañizares, Felipe"} 1 -2023-07-08 08:24:32.628145 2023-07-08 08:24:32.628151 314b7237-e59f-4ad3-9bba-4afbad035233 {"md5": "258e7a2188aa6e9c66bfbdb0a1ce7262", "pid": "A012086274", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A012086274", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012086274", "source": "RERO"}], "preferred_name": "Langie, Kazimierz", "authorized_access_point": "Langie, Kazimierz"} 1 -2023-07-08 08:24:32.730358 2023-07-08 08:24:32.730361 df29fe79-85f3-4f2a-92ac-7b062393b253 {"md5": "d6217d2bd2743840366caabe8f67faa0", "pid": "A012098479", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A012098479", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012098479", "source": "RERO"}], "preferred_name": "Riley, Barry", "authorized_access_point": "Riley, Barry"} 1 -2023-07-08 08:24:32.814251 2023-07-08 08:24:32.814255 8002954c-1fb4-453b-b1d9-11058fed12bd {"md5": "ca089cd59f32f2b5b64cd269b039cd72", "pid": "A012105454", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A012105454", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012105454", "source": "RERO"}], "preferred_name": "Weaving, Rachel", "authorized_access_point": "Weaving, Rachel"} 1 -2023-07-08 08:24:32.904337 2023-07-08 08:24:32.904344 23d4fdf5-c91d-41f9-8c76-3387074a1c03 {"md5": "5ed8fbb20262bf79042b74dae3d63add", "pid": "A012128366", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A012128366", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012128366", "source": "RERO"}], "preferred_name": "Bossbach, Christel", "authorized_access_point": "Bossbach, Christel"} 1 -2023-07-08 08:24:32.992444 2023-07-08 08:24:32.992455 9db5958c-d225-4b66-9561-8a78337ad9a3 {"md5": "05246a0ade5be1813703ee6fea63266c", "pid": "A012136328", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012136328", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012136328", "source": "RERO"}], "preferred_name": "Sociedad geográfica de Cuba", "authorized_access_point": "Sociedad geográfica de Cuba"} 1 -2023-07-08 08:24:33.082148 2023-07-08 08:24:33.082151 06aca602-57ba-4697-8005-186493484c4e {"md5": "44e12274ef34a2a5166dbdc5172045ff", "pid": "A012311534", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012311534", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012311534", "source": "RERO"}], "preferred_name": "IMA Participating Institutions Conference on Singularities (1986 :", "authorized_access_point": "IMA Participating Institutions Conference on Singularities (1986 : University of Iowa)"} 1 -2023-07-08 08:24:33.186163 2023-07-08 08:24:33.18617 940c428c-dc52-4fd6-9320-1985dcd56a81 {"md5": "c89d895316e1a7a1eca66ce1bda08d7c", "pid": "A012313581", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012313581", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012313581", "source": "RERO"}], "preferred_name": "Friedrich-Alexander-Universität (Erlangen-Nürnberg). Juristische Fakultät", "authorized_access_point": "Friedrich-Alexander-Universität (Erlangen-Nürnberg). Juristische Fakultät"} 1 -2023-07-08 08:24:33.283121 2023-07-08 08:24:33.283139 ec4c0a78-ac45-49e7-8b28-9a141a16a36d {"md5": "08854cf9c338f342679e29b913615a50", "pid": "A012313815", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A012313815", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012313815", "source": "RERO"}], "date_of_birth": "1923", "preferred_name": "Kretzschmar, Serge,", "authorized_access_point": "Kretzschmar, Serge, 1923-"} 1 -2023-07-08 08:24:33.38651 2023-07-08 08:24:33.386517 f6ed0b01-94de-4a19-b198-b0c848340a28 {"md5": "9cedddfa0ef7ff230960640546b462c5", "pid": "A012315468", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012315468", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012315468", "source": "RERO"}], "preferred_name": "KnowRight Conference (1995 :", "authorized_access_point": "KnowRight Conference (1995 : Wien)"} 1 -2023-07-08 08:24:33.482101 2023-07-08 08:24:33.482106 e7e8377f-9b12-4e5e-8e93-5851f245e33f {"md5": "1231ebe8771da6a052b5a677a9632304", "pid": "A012322962", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A012322962", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012322962", "source": "RERO"}], "date_of_birth": "1943", "preferred_name": "Schneider, Bernard,", "authorized_access_point": "Schneider, Bernard, 1943-", "biographical_information": ["Juriste neuchâtelois. - Docteur en droit de l'Université de Neuchâtel (1973). - Séjours d'études à Cologne, à La Haye et au Canada. - Collaborateur scientifique à la faculté de droit de l'Université de Genève. - Président du Tribunal de district du Val-de-Travers à Môtiers (1978-1996)"]} 1 -2023-07-08 08:24:33.585229 2023-07-08 08:24:33.585238 27bf269a-84a4-4f6f-96a4-7576bbe405d8 {"md5": "17b7d6abba44b30a987d3d2735a19dcb", "pid": "A012323710", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012323710", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012323710", "source": "RERO"}], "preferred_name": "Congrès des notaires de France 1996 :", "authorized_access_point": "Congrès des notaires de France (92 : 1996 : Deauville)"} 1 -2023-07-08 08:24:33.677342 2023-07-08 08:24:33.677346 ce9e981f-6aa1-4514-b8bf-d666e1c8ebb3 {"md5": "9c3300c546c12cfe2332cfe9fe8c4bf1", "pid": "A012325371", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012325371", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012325371", "source": "RERO"}], "preferred_name": "Colloque d'histoire sociale (1970 :", "authorized_access_point": "Colloque d'histoire sociale (1970 : Besançon)"} 1 -2023-07-08 08:24:33.77292 2023-07-08 08:24:33.772927 8b774daf-db0b-4ea2-8d85-0316ea074149 {"md5": "b8ca3029042ebebee321b9e2eb6884e2", "pid": "A012329066", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "Dr en sc. nat", "identifier": "http://data.rero.ch/02-A012329066", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012329066", "source": "RERO"}], "preferred_name": "Huebner, Hans, Dr en sc. nat", "authorized_access_point": "Huebner, Hans, Dr en sc. nat"} 1 -2023-07-08 08:24:33.868643 2023-07-08 08:24:33.868651 76f96c34-3e53-44c0-adcc-3dad7b39bf79 {"md5": "dc92807bbeb952518db54875e3d4064d", "pid": "A012332893", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "juriste", "identifier": "http://data.rero.ch/02-A012332893", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012332893", "source": "RERO"}], "preferred_name": "Fitzgerald, Brian, juriste", "authorized_access_point": "Fitzgerald, Brian, juriste"} 1 -2023-07-08 08:24:33.953802 2023-07-08 08:24:33.95381 0b7d4a87-6ba0-4306-83ce-8d236bd4cafd {"md5": "2c9480da4c65cef0217041564e049d8d", "pid": "A012335428", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012335428", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012335428", "source": "RERO"}], "preferred_name": "Université de Strasbourg. Institut de sciences criminelles et pénitentiaires", "authorized_access_point": "Université de Strasbourg. Institut de sciences criminelles et pénitentiaires"} 1 -2023-07-08 08:24:34.043311 2023-07-08 08:24:34.043317 509a40f3-d756-4e74-99f2-0e7174718386 {"md5": "e9bf4046ca1b87ef965e3387aaf8c96f", "pid": "A012338211", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "anthropologue", "identifier": "http://data.rero.ch/02-A012338211", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012338211", "source": "RERO"}], "preferred_name": "Desjardins, Michel, anthropologue", "authorized_access_point": "Desjardins, Michel, anthropologue"} 1 -2023-07-08 08:24:34.149043 2023-07-08 08:24:34.149046 8e292923-839f-4642-91d7-6ea5a2ef2dce {"md5": "fb8141a4a7077d1ba7306e4af2e0de3b", "pid": "A012343378", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012343378", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012343378", "source": "RERO"}], "preferred_name": "Montreal Conference on Group Actions and Invariant Theory (1988 :", "authorized_access_point": "Montreal Conference on Group Actions and Invariant Theory (1988 : Montréal)"} 1 -2023-07-08 08:24:34.236976 2023-07-08 08:24:34.236983 22cb3040-7596-4312-8602-1cda5d04be23 {"md5": "31d3eecf2c02c110baae7d9b10f38121", "pid": "A012346177", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "médecin", "identifier": "http://data.rero.ch/02-A012346177", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012346177", "source": "RERO"}], "preferred_name": "Monnier, Jean-François, médecin", "authorized_access_point": "Monnier, Jean-François, médecin"} 1 -2023-07-08 08:24:34.318832 2023-07-08 08:24:34.318839 ba78f7a0-3f5b-4ca0-8ee7-558d8226ad1c {"md5": "34ac8c71c99d140e6b57022a82528d10", "pid": "A012346982", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012346982", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012346982", "source": "RERO"}], "preferred_name": "Commission internationale de juristes. Conférence (1985 :", "authorized_access_point": "Commission internationale de juristes. Conférence (1985 : Nairobi)"} 1 -2023-07-08 08:24:34.428682 2023-07-08 08:24:34.428693 2728ed2d-e372-4311-88e6-db40def0c561 {"md5": "bfe24fb2b9fdc25de680d09b950c6ce5", "pid": "A012349826", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012349826", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012349826", "source": "RERO"}], "preferred_name": "University of California (Los Angeles). Institute of Archaeology", "authorized_access_point": "University of California (Los Angeles). Institute of Archaeology"} 1 -2023-07-08 08:24:34.518109 2023-07-08 08:24:34.518116 c842296b-7ecc-4492-aa3b-f32acc149011 {"md5": "19d9f40df617742ba7ea9c2967cc8a03", "pid": "A012350932", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012350932", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012350932", "source": "RERO"}], "preferred_name": "Johns Hopkins University (Baltimore). Department of History", "authorized_access_point": "Johns Hopkins University (Baltimore). Department of History"} 1 -2023-07-08 08:24:34.603449 2023-07-08 08:24:34.603461 38edbf6a-90cb-43e9-a577-379f0462b328 {"md5": "b2b0d47bbe510a6361d74cf0e548c4ac", "pid": "A012352585", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012352585", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012352585", "source": "RERO"}], "preferred_name": "Kuwait University. Libraries Department", "authorized_access_point": "Kuwait University. Libraries Department"} 1 -2023-07-08 08:24:34.700985 2023-07-08 08:24:34.700994 f40eb909-1a42-45e3-b350-0427e005e949 {"md5": "f455b728f7cbb79b40c450eb4a6cc2e2", "pid": "A012353728", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012353728", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012353728", "source": "RERO"}], "preferred_name": "Colloque sur les représentations des groupes finis (1988 :", "authorized_access_point": "Colloque sur les représentations des groupes finis (1988 : Marseille-Luminy)"} 1 -2023-07-08 08:24:34.789298 2023-07-08 08:24:34.789305 d7853a52-8c05-4f97-a227-6b6e1d4ecc3d {"md5": "001fce33c523e51fa26502825b6dcbd5", "pid": "A012366684", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012366684", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012366684", "source": "RERO"}], "preferred_name": "Congrès international de langue et littérature d'oc 1955 :", "authorized_access_point": "Congrès international de langue et littérature d'oc (1 : 1955 : Avignon)"} 1 -2023-07-08 08:24:34.888765 2023-07-08 08:24:34.888773 d2fb224b-ad5c-450a-9e7b-a184ccd97d24 {"md5": "e5b98fe876c0c072f1371c6cfa011c3c", "pid": "A012368293", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012368293", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012368293", "source": "RERO"}], "preferred_name": "Association internationale de philosophie du droit et de philosophie sociale. Deutsche Sektion. Tagung (1996 :", "authorized_access_point": "Association internationale de philosophie du droit et de philosophie sociale. Deutsche Sektion. Tagung (1996 : Jena)"} 1 -2023-07-08 08:24:34.987512 2023-07-08 08:24:34.98752 b3cb3d5e-bfff-4720-aa3e-4241fc46a77e {"md5": "0435ff5bc8f20f9d9f64e5fc46409be2", "pid": "A012368815", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012368815", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012368815", "source": "RERO"}], "preferred_name": "Colloque sur le patrimoine syriaque 1994 :", "authorized_access_point": "Colloque sur le patrimoine syriaque (2 : 1994 : Antelias)"} 1 -2023-07-08 08:24:35.076803 2023-07-08 08:24:35.076809 d19ea5b3-b1ab-4826-a199-59823a6fca06 {"md5": "c50519e9ce875d839570137d19a7b13f", "pid": "A012371308", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "photographe", "identifier": "http://data.rero.ch/02-A012371308", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012371308", "source": "RERO"}], "preferred_name": "Leroy, Bernard, photographe", "authorized_access_point": "Leroy, Bernard, photographe"} 1 -2023-07-08 08:24:35.1656 2023-07-08 08:24:35.165606 08806bd6-bdce-4197-b32f-177de2c61626 {"md5": "d8aa9a99a93c7a4770a6fd28513dbf24", "pid": "A012374691", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012374691", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012374691", "source": "RERO"}], "preferred_name": "Victoria and Albert Museum (London). Conservation Department", "authorized_access_point": "Victoria and Albert Museum (London). Conservation Department"} 1 -2023-07-08 08:24:35.250414 2023-07-08 08:24:35.250417 6902dcff-cf3f-4873-a2f4-4ee9e33cd897 {"md5": "fe7b19acd735fde1d421b34bd7a27c95", "pid": "A012374741", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012374741", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012374741", "source": "RERO"}], "preferred_name": "Salon de mai 1991 :", "authorized_access_point": "Salon de mai (46 : 1991 : Paris)"} 1 -2023-07-08 08:24:35.339467 2023-07-08 08:24:35.339476 77b3423d-f390-4a27-a146-5d740936d3cb {"md5": "687e719936f2609fb9af58b2bea9969d", "pid": "A012377358", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012377358", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012377358", "source": "RERO"}], "preferred_name": "Johannes Gutenberg Universität (Mainz). Fachbereich Rechts- und Wirtschaftswissenschaften", "authorized_access_point": "Johannes Gutenberg Universität (Mainz). Fachbereich Rechts- und Wirtschaftswissenschaften"} 1 -2023-07-08 08:24:35.439006 2023-07-08 08:24:35.439014 ab647696-0612-4693-a23e-528d14ad5a2b {"md5": "fa14b2dce0a5f357e3d79087d7adae10", "pid": "A012377584", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012377584", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012377584", "source": "RERO"}], "preferred_name": "University of Denver. Center for Judaic Studies", "authorized_access_point": "University of Denver. Center for Judaic Studies"} 1 -2023-07-08 08:24:35.534408 2023-07-08 08:24:35.534415 139be5ad-9a38-4421-8c0e-fe99973652b6 {"md5": "586af97c989f1ca8016a6ce60f080066", "pid": "A012378544", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012378544", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012378544", "source": "RERO"}], "preferred_name": "Université de Lausanne. Centre du droit de l'entreprise. Journée d'étude (1990 :", "authorized_access_point": "Université de Lausanne. Centre du droit de l'entreprise. Journée d'étude (1990 : Lausanne)"} 1 -2023-07-08 08:24:35.632903 2023-07-08 08:24:35.632912 c20a0990-027d-4f5a-9d7f-90f08a5025a8 {"md5": "63167f7c0b766205890534dbb6856156", "pid": "A012385634", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012385634", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012385634", "source": "RERO"}], "preferred_name": "Università di Bologna. Istituto di sociologia", "authorized_access_point": "Università di Bologna. Istituto di sociologia"} 1 -2023-07-08 08:24:35.735854 2023-07-08 08:24:35.735862 06afa9f0-1b68-4b08-9222-d01ae8b9870c {"md5": "fd614ced1f603d391eb960dbd2ce5373", "pid": "A012387266", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012387266", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012387266", "source": "RERO"}], "preferred_name": "Internationales Symposium für Viktimologie 1979 :", "authorized_access_point": "Internationales Symposium für Viktimologie (3 : 1979 : Münster-Westfalen)"} 1 -2023-07-08 08:24:35.846893 2023-07-08 08:24:35.846899 c9528999-ccb4-4a50-a485-71ff7adc5b67 {"md5": "a51af63a027185dd4576562ba73f3369", "pid": "A012387358", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012387358", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012387358", "source": "RERO"}], "preferred_name": "Environment Law Conference (1990 :", "authorized_access_point": "Environment Law Conference (1990 : Durham)"} 1 -2023-07-08 08:24:35.948347 2023-07-08 08:24:35.948356 5ddbbbcb-16b1-4759-92e9-318314a853b0 {"md5": "571cd4aaba782db2678928aaf401b973", "pid": "A012387899", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "libraire du 17e s", "identifier": "http://data.rero.ch/02-A012387899", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012387899", "source": "RERO"}], "preferred_name": "Blaise, Pierre, libraire du 17e s", "authorized_access_point": "Blaise, Pierre, libraire du 17e s"} 1 -2023-07-08 08:24:36.046539 2023-07-08 08:24:36.046544 091c83bf-84f5-4006-8cfb-491b4d1eb7f4 {"md5": "c68fe789261714c16200e770092c383a", "pid": "A012388774", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "Jr", "identifier": "http://data.rero.ch/02-A012388774", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012388774", "source": "RERO"}], "preferred_name": "Lowry, Eddie R., Jr", "authorized_access_point": "Lowry, Eddie R., Jr"} 1 -2023-07-08 08:24:36.164975 2023-07-08 08:24:36.164981 72121f13-6ead-40b3-8727-74a96c81871c {"md5": "be6b1dbb5cb231d0e9ee675c6627585a", "pid": "A012388884", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012388884", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012388884", "source": "RERO"}], "preferred_name": "Evaluation sociologique et analyse institutionnelle des manifestations artistiques. Colloque (1989 :", "authorized_access_point": "Evaluation sociologique et analyse institutionnelle des manifestations artistiques. Colloque (1989 : Bruxelles)"} 1 -2023-07-08 08:24:36.251845 2023-07-08 08:24:36.251848 396e60ff-2902-4711-a138-ba2f1f1eb8dd {"md5": "3a35fd314927782ec7211173f73b3081", "pid": "A012390212", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012390212", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012390212", "source": "RERO"}], "preferred_name": "Musée Bourdelle (Paris)", "authorized_access_point": "Musée Bourdelle (Paris)"} 1 -2023-07-08 08:24:36.329327 2023-07-08 08:24:36.329339 fac7a575-f894-4dba-b047-2017ac823019 {"md5": "38e87e62acefa2a478487cd0ee89e699", "pid": "A012391465", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012391465", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012391465", "source": "RERO"}], "preferred_name": "Université Jean Monnet (Saint-Etienne). Groupe de recherches ibériques et ibéro-américaines. Colloque international (2002 :", "authorized_access_point": "Université Jean Monnet (Saint-Etienne). Groupe de recherches ibériques et ibéro-américaines. Colloque international (2002 : Saint-Etienne)"} 1 -2023-07-08 08:24:39.768452 2023-07-08 08:24:39.768455 a5ceadf4-b1dc-4997-8be1-2fba8648ceed {"md5": "e86de41c21da6388af78476f94a98edc", "pid": "A012468081", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012468081", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012468081", "source": "RERO"}], "preferred_name": "Museum für hamburgische Geschichte (Hamburg)", "authorized_access_point": "Museum für hamburgische Geschichte (Hamburg)"} 1 -2023-07-08 08:24:36.431307 2023-07-08 08:24:36.431313 ca5a1327-c307-4f99-a3ad-2c0338e532e0 {"md5": "3878b604e7258174aa23b248805c36a4", "pid": "A012393385", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012393385", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012393385", "source": "RERO"}], "preferred_name": "Etudes d'anthroponymie médiévale. Rencontres 1986-1987 :", "authorized_access_point": "Etudes d'anthroponymie médiévale. Rencontres (1-2 : 1986-1987 : Azay-le-Ferron)"} 1 -2023-07-08 08:24:36.54343 2023-07-08 08:24:36.543436 f468cf9c-2bce-4603-98ba-6c28b47f1cf5 {"md5": "3dedb74c476393c5f8b3d92113bd57e4", "pid": "A012394672", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012394672", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012394672", "source": "RERO"}], "preferred_name": "Techno-Z FH-Salzburg. Institute for Information Economy and New Media", "authorized_access_point": "Techno-Z FH-Salzburg. Institute for Information Economy and New Media"} 1 -2023-07-08 08:24:36.615204 2023-07-08 08:24:36.615208 e89523d9-4ffb-4689-a03b-bcf1ed8fd25e {"md5": "606c1680533783b654f257ed13c4a3b3", "pid": "A012396940", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012396940", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012396940", "source": "RERO"}], "preferred_name": "Internacia Katolika Unuiĝo Esperantista. Kongreso 1996 :", "authorized_access_point": "Internacia Katolika Unuiĝo Esperantista. Kongreso (12 : 1996 : Szombathely)"} 1 -2023-07-08 08:24:36.716852 2023-07-08 08:24:36.716856 2b0781e7-ae40-4398-b28d-df910a60970a {"md5": "b0738cb250ad97de7fd0bc107866d80a", "pid": "A012397510", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012397510", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012397510", "source": "RERO"}], "preferred_name": "Stadtgalerie (Saarbrücken)", "authorized_access_point": "Stadtgalerie (Saarbrücken)"} 1 -2023-07-08 08:24:36.79736 2023-07-08 08:24:36.79737 cc70b8fd-cd40-460e-84c7-5cf3344f9866 {"md5": "a4840e5ff91d20e84c43487c68b7a703", "pid": "A012402163", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012402163", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012402163", "source": "RERO"}], "preferred_name": "Conference on Family Law and Customary Law in Asia (1964 :", "authorized_access_point": "Conference on Family Law and Customary Law in Asia (1964 : Singapore)"} 1 -2023-07-08 08:24:36.8824 2023-07-08 08:24:36.882406 ef5a343e-42ee-4800-a694-3320eaa3a26c {"md5": "00859131b25ef6632294ece544ebb150", "pid": "A012406670", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "philatéliste", "identifier": "http://data.rero.ch/02-A012406670", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012406670", "source": "RERO"}], "preferred_name": "Schäfer, Richard, philatéliste", "authorized_access_point": "Schäfer, Richard, philatéliste"} 1 -2023-07-08 08:24:36.973344 2023-07-08 08:24:36.973356 ddb03887-3e18-4fdd-9e30-9e96ea0cc96c {"md5": "3b831ed0d20a39a94e28417c61a353f7", "pid": "A012408608", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012408608", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012408608", "source": "RERO"}], "preferred_name": "Université de Paris 4. Institut de recherches sur les civilisations de l'Occident moderne. Colloque (1996)", "authorized_access_point": "Université de Paris 4. Institut de recherches sur les civilisations de l'Occident moderne. Colloque (1996)"} 1 -2023-07-08 08:24:37.093206 2023-07-08 08:24:37.093209 fac2ac30-6f07-48a8-81e5-06ce012c8dd0 {"md5": "e9595ee2f173cf7166909a8dca84bf1a", "pid": "A012409616", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012409616", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012409616", "source": "RERO"}], "preferred_name": "Università cattolica del Sacro Cuore (Milano). Conference (1990 :", "authorized_access_point": "Università cattolica del Sacro Cuore (Milano). Conference (1990 : Trento)"} 1 -2023-07-08 08:24:37.183288 2023-07-08 08:24:37.183297 a6ff34f0-9aa5-4213-887e-49c28e95ca99 {"md5": "0ec7ee4a46b12aa19158893da282d42e", "pid": "A012409972", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "pédagogue", "identifier": "http://data.rero.ch/02-A012409972", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012409972", "source": "RERO"}], "preferred_name": "Bonjour, Pierre, pédagogue", "authorized_access_point": "Bonjour, Pierre, pédagogue"} 1 -2023-07-08 08:24:37.279051 2023-07-08 08:24:37.279059 11a5ca50-c55a-4fde-8430-911bf47bedfa {"md5": "713e4249877b5ed5591ff3e41a653bf4", "pid": "A012416360", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012416360", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012416360", "source": "RERO"}], "preferred_name": "Erasmus Universiteit Rotterdam. Juridisch instituut", "authorized_access_point": "Erasmus Universiteit Rotterdam. Juridisch instituut"} 1 -2023-07-08 08:24:37.370947 2023-07-08 08:24:37.370957 8ec0c828-8bd0-4625-a83a-ff5a278a8149 {"md5": "956280013cdad9c6c260920c8001eaca", "pid": "A012416378", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012416378", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012416378", "source": "RERO"}], "preferred_name": "Fêtes du Rhône 1984 :", "authorized_access_point": "Fêtes du Rhône (31 : 1984 : Monthey)"} 1 -2023-07-08 08:24:37.465007 2023-07-08 08:24:37.465014 96ed9989-b87d-4320-8575-f7fa29114bc3 {"md5": "ea6c1197cc0982cf49c0d1533a19a870", "pid": "A012416611", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "pape", "identifier": "http://data.rero.ch/02-A012416611", "numeration": "VIII", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012416611", "source": "RERO"}], "preferred_name": "Léon VIII, pape", "authorized_access_point": "Léon VIII, pape"} 1 -2023-07-08 08:24:37.55668 2023-07-08 08:24:37.556688 a565ed03-33e7-4471-9dcf-f47e514a967f {"md5": "44d8596a27c4fef95c32e8ce63f58180", "pid": "A012417107", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "dr en droit", "identifier": "http://data.rero.ch/02-A012417107", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012417107", "source": "RERO"}], "preferred_name": "Bauer, Martin, dr en droit", "authorized_access_point": "Bauer, Martin, dr en droit"} 1 -2023-07-08 08:24:37.66523 2023-07-08 08:24:37.665234 8e0cf972-2a82-4e8e-a208-16ffd396fbb8 {"md5": "4de37cecf0c2569dd0ea6c2fe6adf839", "pid": "A012417957", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012417957", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012417957", "source": "RERO"}], "preferred_name": "Réunion internationale des mathématiciens (1937 :", "authorized_access_point": "Réunion internationale des mathématiciens (1937 : Paris)"} 1 -2023-07-08 08:24:37.752397 2023-07-08 08:24:37.7524 496d3279-b0c8-44ef-bba3-e63f95b89552 {"md5": "63edac026513325098ee7726dada1f4a", "pid": "A012418542", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012418542", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012418542", "source": "RERO"}], "preferred_name": "WE-Heraeus Seminar 2002 :", "authorized_access_point": "WE-Heraeus Seminar (271 : 2002 : Bad Honnef)"} 1 -2023-07-08 08:24:37.848974 2023-07-08 08:24:37.84898 14acadfd-f8f6-436d-8218-c85384178579 {"md5": "18806d9f40cfc6004964196f44247410", "pid": "A012419821", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012419821", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012419821", "source": "RERO"}], "preferred_name": "Colloquium on Random Fields : Rigorous Results in Statistical Mechanics and Quantum Field Theory (1979 :", "authorized_access_point": "Colloquium on Random Fields : Rigorous Results in Statistical Mechanics and Quantum Field Theory (1979 : Esztergom)"} 1 -2023-07-08 08:24:37.953789 2023-07-08 08:24:37.953793 59e861c2-d8d8-4cbb-93b9-968f3d21c813 {"md5": "4c02f69bbccb583c21eb9c0481c3c671", "pid": "A012419929", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012419929", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012419929", "source": "RERO"}], "preferred_name": "International Conference on Software Reuse 2004 :", "authorized_access_point": "International Conference on Software Reuse (8 : 2004 : Madrid)"} 1 -2023-07-08 08:24:38.058136 2023-07-08 08:24:38.058139 3f90a1b9-7e7d-428b-9b64-8bfad880d5ae {"md5": "ee430a37450530c35b6a6f7536132846", "pid": "A012425753", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012425753", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012425753", "source": "RERO"}], "preferred_name": "Joint European networking conference 1997 :", "authorized_access_point": "Joint European networking conference (8 : 1997 : Edinburgh)"} 1 -2023-07-08 08:24:38.145429 2023-07-08 08:24:38.145435 b3a213f3-c544-4090-a472-c442354af12d {"md5": "ebc9261cdc3aeb91e613804c660d469a", "pid": "A012427298", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012427298", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012427298", "source": "RERO"}], "preferred_name": "Convegno internazionale della ceramica 1998 :", "authorized_access_point": "Convegno internazionale della ceramica (31 : 1998 : Albisola)"} 1 -2023-07-08 08:24:38.249303 2023-07-08 08:24:38.249309 2c02188c-ce10-43f5-aee7-8095e19ae016 {"md5": "97df2d93622cc7ed78d4b7018873d31d", "pid": "A012430693", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012430693", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012430693", "source": "RERO"}], "preferred_name": "Université libre de Bruxelles. Centre de droit international. Colloque (2003 :", "authorized_access_point": "Université libre de Bruxelles. Centre de droit international. Colloque (2003 : Paris)"} 1 -2023-07-08 08:24:38.349736 2023-07-08 08:24:38.349743 567f0040-5745-4cc9-8582-c5a7a867f176 {"md5": "4a294140823c0f4c167ddcde377106fc", "pid": "A012431216", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012431216", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012431216", "source": "RERO"}], "preferred_name": "International Symposium on the Impacts of Radionuclide Releases into the Marine Environment (1980 :", "authorized_access_point": "International Symposium on the Impacts of Radionuclide Releases into the Marine Environment (1980 : Vienna)"} 1 -2023-07-08 08:24:38.45509 2023-07-08 08:24:38.455097 3eef4d92-aa2d-4dd1-8f5f-31a2a1f4315f {"md5": "a221700b18e2dc070a53f6ef53e8e98c", "pid": "A012431876", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012431876", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012431876", "source": "RERO"}], "preferred_name": "University of Western Ontario (London, Canada). North American Society for the Study of Romanticism. Conference (1993 :", "authorized_access_point": "University of Western Ontario (London, Canada). North American Society for the Study of Romanticism. Conference (1993 : London, Canada)"} 1 -2023-07-08 08:24:38.572533 2023-07-08 08:24:38.57254 00bab439-7fd8-4b04-a12a-22623e5ebc3f {"md5": "617f4269fcb85f4cb7d08f6e1a282334", "pid": "A012432065", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012432065", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012432065", "source": "RERO"}], "preferred_name": "Convegno nazionale di studi su \\"La città ideale nella tradizione classica e biblico-cristiana\\" (1985 :", "authorized_access_point": "Convegno nazionale di studi su \\"La città ideale nella tradizione classica e biblico-cristiana\\" (1985 : Torino)"} 1 -2023-07-08 08:24:38.659555 2023-07-08 08:24:38.659563 b5e5a116-9aed-42e7-84ee-2b21a2e7fec3 {"md5": "40f64e60c6747e2383e528d0c3625500", "pid": "A012435871", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012435871", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012435871", "source": "RERO"}], "preferred_name": "Conférence d'experts gouvernementaux sur l'emploi de certaines armes conventionnelles. Session 1976 :", "authorized_access_point": "Conférence d'experts gouvernementaux sur l'emploi de certaines armes conventionnelles. Session (2 : 1976 : Lugano)"} 1 -2023-07-08 08:24:38.746309 2023-07-08 08:24:38.746316 46bebc32-5f35-4952-adf3-9645a459a7d1 {"md5": "73fc873337c988de031f845a31071f35", "pid": "A012437354", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "Jr", "identifier": "http://data.rero.ch/02-A012437354", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012437354", "source": "RERO"}], "preferred_name": "Jones, Alan M., Jr", "authorized_access_point": "Jones, Alan M., Jr"} 1 -2023-07-08 08:24:38.842596 2023-07-08 08:24:38.842604 1625889c-0231-4678-84ba-492e772d12e0 {"md5": "419882a35637710a459f5da5f5a408aa", "pid": "A012440656", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012440656", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012440656", "source": "RERO"}], "preferred_name": "Université de Tours. Institut d'histoire de la presse et de l'opinion", "authorized_access_point": "Université de Tours. Institut d'histoire de la presse et de l'opinion"} 1 -2023-07-08 08:24:38.94049 2023-07-08 08:24:38.940499 201490bb-4396-49a0-b531-b1bebcff7120 {"md5": "93c7e15afce7543ea2b10f03b5bd42d6", "pid": "A012442567", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012442567", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012442567", "source": "RERO"}], "preferred_name": "Nations Unies. Haut commissariat pour les réfugiés. International Conference on Refugee Law (1997 :", "authorized_access_point": "Nations Unies. Haut commissariat pour les réfugiés. International Conference on Refugee Law (1997 : Sofia)"} 1 -2023-07-08 08:24:39.02543 2023-07-08 08:24:39.025434 c4d91390-44db-4d1f-b498-fe25ef4a292a {"md5": "c1727a8085a2ad59a682c15eb552a77a", "pid": "A012442717", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012442717", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012442717", "source": "RERO"}], "preferred_name": "Exposition européenne d'art 1954-1955 :", "authorized_access_point": "Exposition européenne d'art (1 : 1954-1955 : Bruxelles)"} 1 -2023-07-08 08:24:39.15137 2023-07-08 08:24:39.151373 8e7617c1-628e-48e6-94d0-602a1e4a2219 {"md5": "cb6300cddf6b72cafdfa0ab43f2050b7", "pid": "A012443563", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012443563", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012443563", "source": "RERO"}], "preferred_name": "Institute of Management Sciences (Providence). Journées d'études (1960 :", "authorized_access_point": "Institute of Management Sciences (Providence). Journées d'études (1960 : Paris)"} 1 -2023-07-08 08:24:39.223722 2023-07-08 08:24:39.223726 9f3b03d7-4626-4edc-9112-f3d9ba58a9b4 {"md5": "b1dcdf35a429f0030f8a32e3908c4319", "pid": "A012448425", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012448425", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012448425", "source": "RERO"}], "preferred_name": "Union internationale des instituts de recherches forestières. Seminaire (1972 :", "authorized_access_point": "Union internationale des instituts de recherches forestières. Seminaire (1972 : Zürich)"} 1 -2023-07-08 08:24:39.291599 2023-07-08 08:24:39.291602 1e81ab06-401d-4e41-a1b6-7a7f5c19723a {"md5": "0333b51c20c85a7ac2457adf888e4d33", "pid": "A012454917", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012454917", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012454917", "source": "RERO"}], "preferred_name": "American Association for Information Science. Annual Continuing Education Seminar. Los Angeles Chapter (1984 :", "authorized_access_point": "American Association for Information Science. Annual Continuing Education Seminar. Los Angeles Chapter (1984 : Los Angeles)"} 1 -2023-07-08 08:24:39.351239 2023-07-08 08:24:39.351242 d5aca790-6947-4ca9-8ae6-fb0075b9115a {"md5": "c21a3a43b83307a4c77429036c57d839", "pid": "A012457267", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012457267", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012457267", "source": "RERO"}], "preferred_name": "American Mathematical Society. Symposium 1970 :", "authorized_access_point": "American Mathematical Society. Symposium (5 : 1970 : Chicago)"} 1 -2023-07-08 08:24:39.423049 2023-07-08 08:24:39.423052 6beb4a2d-51d3-4a61-9a47-ed7070651bde {"md5": "db46fae3331c8e2e2f0bb9ea42009efc", "pid": "A012457605", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012457605", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012457605", "source": "RERO"}], "preferred_name": "Conférence du Jeune Barreau de Bruxelles. Colloque (1992 :", "authorized_access_point": "Conférence du Jeune Barreau de Bruxelles. Colloque (1992 : Bruxelles)"} 1 -2023-07-08 08:24:39.498656 2023-07-08 08:24:39.498662 b7ccec0e-18fb-43b0-839b-ba12dd9ffdef {"md5": "eff63c8ba0729f266bfc4f3516614c72", "pid": "A012460208", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012460208", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012460208", "source": "RERO"}], "variant_name": ["Stichting H. N. Werkman (Amsterdam)", "Werkman Foundation (Amsterdam)"], "preferred_name": "Stichting Hendrik Nicolaes Werkman (Amsterdam)", "variant_access_point": ["Stichting H. N. Werkman (Amsterdam)", "Werkman Foundation (Amsterdam)"], "authorized_access_point": "Stichting Hendrik Nicolaes Werkman (Amsterdam)"} 1 -2023-07-08 08:24:39.584895 2023-07-08 08:24:39.5849 3f1cb93e-90de-48f1-b38a-cdf020815271 {"md5": "cb462f5d2761f47fce0da0790ba4ffd3", "pid": "A012462643", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012462643", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012462643", "source": "RERO"}], "preferred_name": "Université de Clermont-Ferrand. Centre de recherches sur les littératures modernes et contemporaines. Colloque international", "authorized_access_point": "Université de Clermont-Ferrand. Centre de recherches sur les littératures modernes et contemporaines. Colloque international (Clermont-Ferrand)"} 1 -2023-07-08 08:24:39.681526 2023-07-08 08:24:39.68153 f8c79703-25e1-47ca-a2c0-ed06943d8506 {"md5": "f5cc2be8d3a4aa78cd0d4f96f47ff296", "pid": "A012465613", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012465613", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012465613", "source": "RERO"}], "preferred_name": "Alliance mondiale des unions chrétiennes féminines. Council meeting (1947 :", "authorized_access_point": "Alliance mondiale des unions chrétiennes féminines. Council meeting (1947 : Hangchow)"} 1 -2023-07-08 08:24:44.311637 2023-07-08 08:24:44.311644 b9e32ec5-46dd-4a51-bfc2-285a06339ef4 {"md5": "350874401711b294b46d5ba7815a7aaf", "pid": "A012597330", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "mathématicien", "identifier": "http://data.rero.ch/02-A012597330", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012597330", "source": "RERO"}], "preferred_name": "Bergeron, Nicolas, mathématicien", "authorized_access_point": "Bergeron, Nicolas, mathématicien"} 1 -2023-07-08 08:24:39.831423 2023-07-08 08:24:39.831428 17b88723-3fc9-4c0d-ab5a-13174ac27669 {"md5": "5af76fdcda722c189d311c72f0ab9e12", "pid": "A012468192", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012468192", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012468192", "source": "RERO"}], "preferred_name": "Ecole nationale d'administration (France). Deutsch-Französische Verwaltungskolloquium 1999 :", "authorized_access_point": "Ecole nationale d'administration (France). Deutsch-Französische Verwaltungskolloquium (6 : 1999 : Strasbourg)"} 1 -2023-07-08 08:24:39.896633 2023-07-08 08:24:39.896639 5ad5df17-bec6-4038-b200-3b99e58bfe18 {"md5": "15f578f22aacc7b45b883791deb8592c", "pid": "A012470496", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "dr en sciences", "identifier": "http://data.rero.ch/02-A012470496", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012470496", "source": "RERO"}], "preferred_name": "Béraud, Jean, dr en sciences", "authorized_access_point": "Béraud, Jean, dr en sciences"} 1 -2023-07-08 08:24:39.979109 2023-07-08 08:24:39.979114 a4fe8d7d-efab-45e3-968a-bbe603e0d06d {"md5": "8055a02c94518b62b3379a985fb89052", "pid": "A012470564", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012470564", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012470564", "source": "RERO"}], "preferred_name": "University of North Carolina (Chapel Hill). University library. Hanes Foundation", "authorized_access_point": "University of North Carolina (Chapel Hill). University library. Hanes Foundation"} 1 -2023-07-08 08:24:40.077125 2023-07-08 08:24:40.077131 635b7d4d-eeac-4d20-9c97-cfde431e19ed {"md5": "fafb4ecdea1241c7ce1ebe40ff70be7f", "pid": "A012470848", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "Abbé", "identifier": "http://data.rero.ch/02-A012470848", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012470848", "source": "RERO"}], "preferred_name": "Verdereau, Jean, Abbé", "authorized_access_point": "Verdereau, Jean, Abbé"} 1 -2023-07-08 08:24:40.179562 2023-07-08 08:24:40.179567 4426651e-7556-41a6-b3ed-a8b1026841b1 {"md5": "7b1a9beaff4fe521473e07be43d29dcd", "pid": "A012473809", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012473809", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012473809", "source": "RERO"}], "preferred_name": "United States. Congress 1961 :", "authorized_access_point": "United States. Congress (87 : 1961 : Washington)"} 1 -2023-07-08 08:24:40.266562 2023-07-08 08:24:40.266569 2d94fdd3-80d7-4d45-9adf-751caf2b471b {"md5": "c9d6ca2d274db295ac026e2121a8c82a", "pid": "A012474515", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "étudiant en droit GE", "identifier": "http://data.rero.ch/02-A012474515", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012474515", "source": "RERO"}], "preferred_name": "Dardiry, étudiant en droit GE", "authorized_access_point": "Dardiry, étudiant en droit GE"} 1 -2023-07-08 08:24:40.332946 2023-07-08 08:24:40.332951 56533463-fec3-4ad6-942d-bbd864dddd9d {"md5": "3bd2fc8e66ef036ca5fb43ec787937d2", "pid": "A012479271", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012479271", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012479271", "source": "RERO"}], "preferred_name": "Association des écoles internationales (Genève). Conference 1977)", "authorized_access_point": "Association des écoles internationales (Genève). Conference (26 : 1977)"} 1 -2023-07-08 08:24:40.421032 2023-07-08 08:24:40.42104 0f1789bc-8520-4d36-b2a5-1eb7d4705a32 {"md5": "6a6f346b840e5a4f7a284a4a364b0a32", "pid": "A012480008", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012480008", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012480008", "source": "RERO"}], "preferred_name": "Congrès national d'orientation professionnelle 1960 :", "authorized_access_point": "Congrès national d'orientation professionnelle (13 : 1960 : Evreux)"} 1 -2023-07-08 08:24:40.505481 2023-07-08 08:24:40.505491 b15ced40-b06e-4b2c-ad96-12712d491f06 {"md5": "137d099c87bf68ee10044c9858397870", "pid": "A012480139", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012480139", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012480139", "source": "RERO"}], "preferred_name": "Symposium sur l'éducation et la formation en matière de nutrition en Europe (1959 :", "authorized_access_point": "Symposium sur l'éducation et la formation en matière de nutrition en Europe (1959 : Bad Hombourg)"} 1 -2023-07-08 08:24:40.598897 2023-07-08 08:24:40.598904 7444a49e-7f7a-449a-b61a-ec8d8344e6df {"md5": "c59280f398a4028f589ee7c45129d562", "pid": "A012484207", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012484207", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012484207", "source": "RERO"}], "preferred_name": "Convegno celebrativo del Quinto centenario dell'unione della Chiesa latina e della Chiesa greca (1989 :", "authorized_access_point": "Convegno celebrativo del Quinto centenario dell'unione della Chiesa latina e della Chiesa greca (1989 : Firenze)"} 1 -2023-07-08 08:24:40.699383 2023-07-08 08:24:40.699389 e2d19a2a-0ea3-49b8-8d89-8021b6e38a13 {"md5": "f8e459a5900f75ad89d2167a586d5aea", "pid": "A012487640", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012487640", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012487640", "source": "RERO"}], "preferred_name": "International Conference on Cooperative Information Systems 2000 :", "authorized_access_point": "International Conference on Cooperative Information Systems (7 : 2000 : Eilat)"} 1 -2023-07-08 08:24:40.770829 2023-07-08 08:24:40.770832 63ac5d70-660a-4136-9b37-2559d8aa8d71 {"md5": "fa4d674f6b767864f0177d0aa8d2cbd2", "pid": "A012487887", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012487887", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012487887", "source": "RERO"}], "preferred_name": "Internationale Dialektologentagung (1998 :", "authorized_access_point": "Internationale Dialektologentagung (1998 : Göttingen)"} 1 -2023-07-08 08:24:44.401028 2023-07-08 08:24:44.401034 422681db-321b-41b0-b64a-029b81b1886e {"md5": "2c90fc45831b3a396011f9669395cfb9", "pid": "A012598301", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A012598301", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012598301", "source": "RERO"}], "preferred_name": "Meyniel, Laurent", "authorized_access_point": "Meyniel, Laurent"} 1 -2023-07-08 08:24:40.848255 2023-07-08 08:24:40.84826 19e070f6-b51e-4853-a0e2-9aa599b0b3f3 {"md5": "081fc1a89b18ab2060469eddca418ce9", "pid": "A012488018", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012488018", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012488018", "source": "RERO"}], "preferred_name": "European Working Session on Learning 1987 :", "authorized_access_point": "European Working Session on Learning (2 : 1987 : Bled)"} 1 -2023-07-08 08:24:40.94076 2023-07-08 08:24:40.940768 5ff34bd8-607a-4193-b25e-31bbea01813f {"md5": "85a2487ae814f654546ef17aabc8f237", "pid": "A012489633", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012489633", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012489633", "source": "RERO"}], "preferred_name": "Congrès des relations industrielles de l'Université Laval 1946 :", "authorized_access_point": "Congrès des relations industrielles de l'Université Laval (1 : 1946 : Québec)"} 1 -2023-07-08 08:24:41.021877 2023-07-08 08:24:41.021882 bbed1a05-381a-4ba8-88fa-b90d32fdfbb3 {"md5": "5d48681199501710257076df43c4af3c", "pid": "A012490094", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012490094", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012490094", "source": "RERO"}], "preferred_name": "International Symposium on Deep Structure of the Continental Crust (1984 :", "authorized_access_point": "International Symposium on Deep Structure of the Continental Crust (1984 : Ithaca)"} 1 -2023-07-08 08:24:41.100737 2023-07-08 08:24:41.100743 650f444f-5710-4a93-b803-6331d4316888 {"md5": "1d4a02348dde4da3028b2906e44544c6", "pid": "A012493490", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012493490", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012493490", "source": "RERO"}], "preferred_name": "Conferencia Internacional de Sociologia Religiosa 1975 :", "authorized_access_point": "Conferencia Internacional de Sociologia Religiosa (13 : 1975 : Lloret de Mar)"} 1 -2023-07-08 08:24:41.197868 2023-07-08 08:24:41.197872 4ec1b530-fde2-4f21-aef1-14d6968d581d {"md5": "e5f90df662dfa59852ac02e9d63709fc", "pid": "A012494600", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012494600", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012494600", "source": "RERO"}], "preferred_name": "Congrès international des secrétaires communaux 1910 :", "authorized_access_point": "Congrès international des secrétaires communaux (5 : 1910 : Bruxelles)"} 1 -2023-07-08 08:24:41.282885 2023-07-08 08:24:41.282891 629bd77e-af17-4f55-8728-17f061f4c064 {"md5": "f0924d6092b069385124f0277bf597f0", "pid": "A012495733", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012495733", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012495733", "source": "RERO"}], "preferred_name": "Leopold-Franzens-Universität (Innsbruck). Geisteswissenschaftliche Fakultät. Internationale Tagung (2001 :", "authorized_access_point": "Leopold-Franzens-Universität (Innsbruck). Geisteswissenschaftliche Fakultät. Internationale Tagung (2001 : Innsbruck)"} 1 -2023-07-08 08:24:41.365456 2023-07-08 08:24:41.365463 4c48d4ae-4f36-4785-bffb-afc0c0b368d3 {"md5": "51851a6503ef7d02225dc6bd44394b14", "pid": "A012497106", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012497106", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012497106", "source": "RERO"}], "preferred_name": "Biennale de céramique contemporaine 2005 :", "authorized_access_point": "Biennale de céramique contemporaine (13 : 2005 : Châteauroux)"} 1 -2023-07-08 08:24:41.450833 2023-07-08 08:24:41.450838 66cd8a69-c735-4e5d-8da6-b4f669fc5325 {"md5": "364d6f996cbe3a7a36ae1a3481a60f0a", "pid": "A012497126", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012497126", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012497126", "source": "RERO"}], "preferred_name": "Festival Science et cité 2005 :", "authorized_access_point": "Festival Science et cité (5 : 2005 : Fribourg)"} 1 -2023-07-08 08:24:41.539153 2023-07-08 08:24:41.539161 e1279237-9060-416c-a862-b9a70145f6e1 {"md5": "e99eba3303d1446e4764e448ee564dce", "pid": "A012497225", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012497225", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012497225", "source": "RERO"}], "preferred_name": "Conference on Foundations of Software Technology and Theoretical Computer Science 2000 :", "authorized_access_point": "Conference on Foundations of Software Technology and Theoretical Computer Science (20 : 2000 : New Delhi)"} 1 -2023-07-08 08:24:41.623941 2023-07-08 08:24:41.62395 f46c84f7-d566-4187-b719-4daec6ce6254 {"md5": "09f7009c8810ef9d5d7d5c93d1d76063", "pid": "A012498346", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012498346", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012498346", "source": "RERO"}], "preferred_name": "Congreso sudamericano de zoologia 1959 :", "authorized_access_point": "Congreso sudamericano de zoologia (1 : 1959 : La Plata)"} 1 -2023-07-08 08:24:41.723693 2023-07-08 08:24:41.723701 a20d6724-68ae-4a39-b47c-c3629be2e419 {"md5": "95422466df4a195b14364e4f6889839a", "pid": "A012506176", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012506176", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012506176", "source": "RERO"}], "preferred_name": "Hochschule Sankt Gallen für Wirtschafts- und Sozialwissenschaften. Schweizerisches Institut für Verwaltungskurse. Kurs 1967 :", "authorized_access_point": "Hochschule Sankt Gallen für Wirtschafts- und Sozialwissenschaften. Schweizerisches Institut für Verwaltungskurse. Kurs (122 : 1967 : Sankt Gallen)"} 1 -2023-07-08 08:24:41.808115 2023-07-08 08:24:41.808124 cdaa17bd-ffc2-4c71-846b-cabf4cc503e6 {"md5": "9a57e8944dfedbb5e971736776dbe6f5", "pid": "A012506256", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012506256", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012506256", "source": "RERO"}], "preferred_name": "Fédération internationale de l'habitation et de l'urbanisme. Congrès 1958 :", "authorized_access_point": "Fédération internationale de l'habitation et de l'urbanisme. Congrès (34 : 1958 : Liège)"} 1 -2023-07-08 08:24:41.901538 2023-07-08 08:24:41.901544 2e17f4b5-9303-403d-88e2-09f0fed7f27c {"md5": "52eddc3a8a6aa9370c5a8c67ad7a1d80", "pid": "A012506339", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012506339", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012506339", "source": "RERO"}], "preferred_name": "International Federation of Classification Societies. Conference 1993 :", "authorized_access_point": "International Federation of Classification Societies. Conference (4 : 1993 : Paris)"} 1 -2023-07-08 08:24:41.99013 2023-07-08 08:24:41.990137 12c5d409-2e91-4664-bd00-cf27efd9efa6 {"md5": "82f59cb0258cf22c3a66c2a0c53e03bf", "pid": "A012506877", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012506877", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012506877", "source": "RERO"}], "preferred_name": "International Cultural Heritage Informatics Meeting (1999 :", "authorized_access_point": "International Cultural Heritage Informatics Meeting (1999 : Washington)"} 1 -2023-07-08 08:24:42.094302 2023-07-08 08:24:42.094311 59fd21cc-e67d-4615-9784-4335a7d04096 {"md5": "7e85cdf4cc9f928f8be6c8776539e48a", "pid": "A012507478", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012507478", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012507478", "source": "RERO"}], "preferred_name": "Université de Paris 4. Société internationale d'histoire comparée du théâtre, de l'opéra et du ballet. Séminaire international 1993 :", "authorized_access_point": "Université de Paris 4. Société internationale d'histoire comparée du théâtre, de l'opéra et du ballet. Séminaire international (6 : 1993 : Paris)"} 1 -2023-07-08 08:24:42.200205 2023-07-08 08:24:42.200212 71dc286a-7d90-49e4-b8ff-06f5fd1f1b97 {"md5": "e9a76cd8b094ed2413e10949df73b48e", "pid": "A012508085", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012508085", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012508085", "source": "RERO"}], "preferred_name": "Université de Toulouse 3. Centre d'informatique", "authorized_access_point": "Université de Toulouse 3. Centre d'informatique"} 1 -2023-07-08 08:24:42.296171 2023-07-08 08:24:42.296177 9a34f91f-faff-4150-822f-b119cde90e96 {"md5": "e628e49e585beaded7c9193856c987e1", "pid": "A012508468", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012508468", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012508468", "source": "RERO"}], "preferred_name": "University of London. Centre of European Law. Conference (1993 :", "authorized_access_point": "University of London. Centre of European Law. Conference (1993 : London)"} 1 -2023-07-08 08:24:42.423777 2023-07-08 08:24:42.423785 99b37f8b-7aba-4a40-9d06-964b8cbe5b2b {"md5": "53bc3812202f3231e7261aa1676f89c8", "pid": "A012508709", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012508709", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012508709", "source": "RERO"}], "preferred_name": "Settimana di studi mariani (1988 :", "authorized_access_point": "Settimana di studi mariani (1988 : Siracusa)"} 1 -2023-07-08 08:24:42.512915 2023-07-08 08:24:42.512927 c79a5084-a398-4fa2-9e19-89a1a8c654fe {"md5": "9b4901e05ce520fa848a39f703a4f3c9", "pid": "A012509199", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "frère", "identifier": "http://data.rero.ch/02-A012509199", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012509199", "source": "RERO"}], "preferred_name": "B., frère", "authorized_access_point": "B., frère"} 1 -2023-07-08 08:24:42.61651 2023-07-08 08:24:42.61652 7dc4e7d7-376e-4ad9-ba07-d3cef5fd6e50 {"md5": "c1018a83a77781bfe6cb4739f90d3fce", "pid": "A012512864", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012512864", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012512864", "source": "RERO"}], "preferred_name": "NATO Advanced Research Workshop on the Impact of Long-term Monitoring on Variable Star Research (1993 :", "authorized_access_point": "NATO Advanced Research Workshop on the Impact of Long-term Monitoring on Variable Star Research (1993 : Ghent, Belgique)"} 1 -2023-07-08 08:24:42.710068 2023-07-08 08:24:42.710079 fa4a806f-defb-4e95-a73b-24a089fcb86c {"md5": "7aa1a37df1f1ef1b0a53b7e281cbfa74", "pid": "A012513294", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012513294", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012513294", "source": "RERO"}], "preferred_name": "Italia. Ministero di grazia e giustizia. Congrès (1983 :", "authorized_access_point": "Italia. Ministero di grazia e giustizia. Congrès (1983 : Milano)"} 1 -2023-07-08 08:24:42.797657 2023-07-08 08:24:42.797666 ccfac04c-0207-4424-ab31-09822117e816 {"md5": "e287a65d8267f5542af61dbd2ab90f4a", "pid": "A012517704", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012517704", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012517704", "source": "RERO"}], "preferred_name": "Universite de Liège. Groupe de géographe humaine théorique et quantitative. Journée de recherches FNRS (1987 :", "authorized_access_point": "Universite de Liège. Groupe de géographe humaine théorique et quantitative. Journée de recherches FNRS (1987 : Liège)"} 1 -2023-07-08 08:24:42.890514 2023-07-08 08:24:42.890521 5bc6b340-1d4d-4a34-be33-acc61b432111 {"md5": "32cf797e868b69c99f105e8679846064", "pid": "A012518029", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012518029", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012518029", "source": "RERO"}], "preferred_name": "Universidad Complutense de Madrid. Departamento de antropología social", "authorized_access_point": "Universidad Complutense de Madrid. Departamento de antropología social"} 1 -2023-07-08 08:24:42.979551 2023-07-08 08:24:42.979556 dbe720c1-3e89-482e-a03b-2c5cc7f85a3e {"md5": "c1648b3eda1414fd96d6942d12428969", "pid": "A012519806", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "physicien", "identifier": "http://data.rero.ch/02-A012519806", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012519806", "source": "RERO"}], "preferred_name": "Philips, Roger, physicien", "authorized_access_point": "Philips, Roger, physicien"} 1 -2023-07-08 08:24:43.06433 2023-07-08 08:24:43.064337 9a270100-c8c8-4952-aa68-35dbba9df450 {"md5": "5ac111a769a1ad8d9410f9536e5d1b14", "pid": "A012523458", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012523458", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012523458", "source": "RERO"}], "preferred_name": "Ensemble refaire la ville. (1987 :", "authorized_access_point": "Ensemble refaire la ville. (1987 : Valence)"} 1 -2023-07-08 08:24:43.143149 2023-07-08 08:24:43.14316 af18277f-7c12-4a7e-bdca-0764419c9355 {"md5": "4a647365fa3b0b912a0c37003851c654", "pid": "A012525949", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012525949", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012525949", "source": "RERO"}], "preferred_name": "Nations Unies. Service de l'assistance technique. Seminar (1960 :", "authorized_access_point": "Nations Unies. Service de l'assistance technique. Seminar (1960 : Leysin)"} 1 -2023-07-08 08:24:43.250043 2023-07-08 08:24:43.250055 1413ce73-136b-47d7-aaec-13c829b8a571 {"md5": "9071f69aa310ea1c8abbb659c7c255bd", "pid": "A012525951", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012525951", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012525951", "source": "RERO"}], "preferred_name": "Nations Unies. Division des affaires sociales. Cycle d'étude (1968 :", "authorized_access_point": "Nations Unies. Division des affaires sociales. Cycle d'étude (1968 : Madrid)"} 1 -2023-07-08 08:24:43.331945 2023-07-08 08:24:43.331952 62b0a2ab-ef2d-4da7-b48e-818f149aefe8 {"md5": "adbebb641d942d6732c12e6bea611040", "pid": "A012527268", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012527268", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012527268", "source": "RERO"}], "preferred_name": "Convegno internazionale sull'organizzazione umana nell'economia industriale 1977 :", "authorized_access_point": "Convegno internazionale sull'organizzazione umana nell'economia industriale (1 : 1977 : Stresa)"} 1 -2023-07-08 08:24:43.440073 2023-07-08 08:24:43.440082 71d98c1f-252d-44f5-b988-7f98f781db4d {"md5": "ccc45eafa4e6d64f0c46d3f13b19b407", "pid": "A012527993", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012527993", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012527993", "source": "RERO"}], "preferred_name": "Cours médico-juridique (1969 :", "authorized_access_point": "Cours médico-juridique (1969 : Ferrara)"} 1 -2023-07-08 08:24:43.535969 2023-07-08 08:24:43.535977 64dcee9e-2f68-41da-983e-ddee04333ca0 {"md5": "6dd733178a41030f9ac865e6e6ca4734", "pid": "A012528466", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012528466", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012528466", "source": "RERO"}], "preferred_name": "Union internationale d'histoire et de philosophie des sciences. Division de philosophie. Colloquium (1960 :", "authorized_access_point": "Union internationale d'histoire et de philosophie des sciences. Division de philosophie. Colloquium (1960 : Utrecht)"} 1 -2023-07-08 08:24:43.63094 2023-07-08 08:24:43.630945 b797863b-9051-4e59-bae4-d1d3599bd2b6 {"md5": "9c984ae6d16a11ce3098b2f99077cebe", "pid": "A012529768", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012529768", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012529768", "source": "RERO"}], "preferred_name": "Conférence nationale sur la drogue (1995 :", "authorized_access_point": "Conférence nationale sur la drogue (1995 : Bern)"} 1 -2023-07-08 08:24:43.727304 2023-07-08 08:24:43.727309 801985e9-0380-4f19-a234-ef7894d0261e {"md5": "072e5aad5d2fbbde703c6e6e7bd45928", "pid": "A012533386", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012533386", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012533386", "source": "RERO"}], "preferred_name": "National Down Syndrome Society (USA). Conference (1992 :", "authorized_access_point": "National Down Syndrome Society (USA). Conference (1992 : New York)"} 1 -2023-07-08 08:24:43.810385 2023-07-08 08:24:43.810394 93f7d7e9-d911-4bc1-b18b-912a6812ac2d {"md5": "19f092c664197c843e28b680e7f55d7a", "pid": "A012534909", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012534909", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012534909", "source": "RERO"}], "preferred_name": "Association suisse-arabe. Assemblée générale annuelle (1974 :", "authorized_access_point": "Association suisse-arabe. Assemblée générale annuelle (1974 : Lausanne)"} 1 -2023-07-08 08:24:43.92208 2023-07-08 08:24:43.922089 0097c429-b7ab-41b7-9c56-b51c4b073efa {"md5": "02ff3b5360b9024a8dbb00418125b39f", "pid": "A012534932", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012534932", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012534932", "source": "RERO"}], "preferred_name": "Conference on Operator Algebras (1992 :", "authorized_access_point": "Conference on Operator Algebras (1992 : Orléans)"} 1 -2023-07-08 08:24:44.011859 2023-07-08 08:24:44.011866 5f4c2009-b4e0-4245-9752-29716d87338d {"md5": "31c9d1aada63c92b86fe165d8a9f9769", "pid": "A012571346", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A012571346", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012571346", "source": "RERO"}], "preferred_name": "Glinskij, B.B", "parallel_access_point": ["Глинский, Б.Б"], "authorized_access_point": "Glinskij, B.B"} 1 -2023-07-08 08:24:44.119025 2023-07-08 08:24:44.119032 89b58690-a321-4994-9c9f-62c655de907e {"md5": "3a28c948409c260c205266bdda4f1ef7", "pid": "A012572265", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A012572265", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012572265", "source": "RERO"}], "variant_name": ["Ruiz, Jean-Paul et Dom"], "preferred_name": "Ruiz, Dom et Jean-Paul", "variant_access_point": ["Ruiz, Jean-Paul et Dom"], "authorized_access_point": "Ruiz, Dom et Jean-Paul"} 1 -2023-07-08 08:24:44.214988 2023-07-08 08:24:44.214993 560a6cb2-eebe-48ba-85ed-fe9b19b9ea77 {"md5": "458bc5e2c051a1a23f59d02d3a4899de", "pid": "A012591999", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A012591999", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012591999", "source": "RERO"}], "preferred_name": "Schneikert, Elisabeth", "authorized_access_point": "Schneikert, Elisabeth"} 1 -2023-07-08 08:24:44.494953 2023-07-08 08:24:44.494958 f7610108-e833-4ab4-86c7-629469011d7c {"md5": "0dec89ad25e3680aa2a3b72c0f3d35f6", "pid": "A012623821", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A012623821", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012623821", "source": "RERO"}], "preferred_name": "Hoppe, Albrecht", "authorized_access_point": "Hoppe, Albrecht"} 1 -2023-07-08 08:24:44.572895 2023-07-08 08:24:44.572903 45a225b0-ce25-4875-8a41-ded2ab80e0af {"md5": "519ac5c13709c264db6cf18877202ac5", "pid": "A012636366", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A012636366", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012636366", "source": "RERO"}], "preferred_name": "Laatikainen, Katie Verlin", "authorized_access_point": "Laatikainen, Katie Verlin"} 1 -2023-07-08 08:24:44.660397 2023-07-08 08:24:44.660405 152221ac-435e-4530-b9eb-2a20fac8e835 {"md5": "610b4fd2abcccb5bb8eb6d1c2e2e9a21", "pid": "A012674280", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012674280", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012674280", "source": "RERO"}], "preferred_name": "Ecole industrielle supérieure (Sion)", "authorized_access_point": "Ecole industrielle supérieure (Sion)"} 1 -2023-07-08 08:24:44.747705 2023-07-08 08:24:44.747711 e5b11a21-bbbc-412d-bce8-8f61372647b4 {"md5": "eedcc0d590f8d131ee8880904ba70efb", "pid": "A012692359", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A012692359", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012692359", "source": "RERO"}], "preferred_name": "Pavlović, Živojin", "authorized_access_point": "Pavlović, Živojin"} 1 -2023-07-08 08:24:44.833706 2023-07-08 08:24:44.833713 acead35d-ab7e-49de-825d-ccd93d81a24c {"md5": "138d457290a6caa97a905514ba4f0891", "pid": "A012707155", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A012707155", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012707155", "source": "RERO"}], "preferred_name": "Preisser, Michael", "authorized_access_point": "Preisser, Michael"} 1 -2023-07-08 08:24:44.915729 2023-07-08 08:24:44.915735 f50f94a4-5555-43ff-af28-d8dc10cf5579 {"md5": "d51ef3096c728273e0cf8d7672321c92", "pid": "A012707480", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012707480", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012707480", "source": "RERO"}], "preferred_name": "International arbitration symposium (2004 :", "authorized_access_point": "International arbitration symposium (2004 : Stockholm)"} 1 -2023-07-08 08:24:45.001138 2023-07-08 08:24:45.001144 d2baed7f-c447-42c5-b891-a15bb157accd {"md5": "076941a41dd98ddc905baec8f858919c", "pid": "A012722635", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A012722635", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012722635", "source": "RERO"}], "preferred_name": "Gnaegi, Hermann", "authorized_access_point": "Gnaegi, Hermann"} 1 -2023-07-08 08:24:45.08446 2023-07-08 08:24:45.084463 ee44bdce-5f62-4f4f-9086-9f07e7c56739 {"md5": "2f7bf21c0d3c079c4cf30f4f9915d643", "pid": "A012726948", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A012726948", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012726948", "source": "RERO"}], "date_of_birth": "1942", "preferred_name": "Fontaine, Jean-Marc,", "authorized_access_point": "Fontaine, Jean-Marc, 1942-"} 1 -2023-07-08 08:24:45.17172 2023-07-08 08:24:45.171728 2232aa69-351d-434e-a7c6-fefe18f3f8ac {"md5": "e76ae5c763d9e843329d5f1dad5fc3ec", "pid": "A012744465", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012744465", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012744465", "source": "RERO"}], "preferred_name": "Comité de secours des Brenets", "authorized_access_point": "Comité de secours des Brenets"} 1 -2023-07-08 08:24:45.26389 2023-07-08 08:24:45.263896 f5fa4247-dadd-4f84-986d-16f944707908 {"md5": "e97283c83e00f0fde4d12d5d66e76c3e", "pid": "A012765564", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A012765564", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012765564", "source": "RERO"}], "preferred_name": "Argentin, Paola", "authorized_access_point": "Argentin, Paola"} 1 -2023-07-08 08:24:45.359837 2023-07-08 08:24:45.359846 1e675fdd-4b72-4b33-875d-326e2466f124 {"md5": "765a02b7f2804a2c7f33bf759533e5e4", "pid": "A012771324", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A012771324", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012771324", "source": "RERO"}], "preferred_name": "Béville, Louis Théophile de", "authorized_access_point": "Béville, Louis Théophile de", "biographical_information": ["Dates de vie: 1734-1816"]} 1 -2023-07-08 08:24:45.453425 2023-07-08 08:24:45.453431 fe158047-4c25-4888-83f0-8eea528d3932 {"md5": "3ecdb3063a112086e29e5a9013ffefa9", "pid": "A012774842", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A012774842", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012774842", "source": "RERO"}], "preferred_name": "Laffineur-Noseda, M", "authorized_access_point": "Laffineur-Noseda, M"} 1 -2023-07-08 08:24:45.546107 2023-07-08 08:24:45.546117 982f4a5b-a9b0-48a7-ac01-aec4b4775da0 {"md5": "fa7a98a0f29a2747a1d21c926ccc284f", "pid": "A012780830", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A012780830", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012780830", "source": "RERO"}], "preferred_name": "Bellon, Marie", "authorized_access_point": "Bellon, Marie"} 1 -2023-07-08 08:24:45.636417 2023-07-08 08:24:45.636425 33ff14a0-5405-4021-8396-83a427b319da {"md5": "eed6579ee78f830e60a7e0b8ff6004f5", "pid": "A012781952", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A012781952", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012781952", "source": "RERO"}], "preferred_name": "Geraskoff, Michael", "authorized_access_point": "Geraskoff, Michael"} 1 -2023-07-08 08:24:45.720164 2023-07-08 08:24:45.720178 2176c253-c41d-420e-afe9-ef04d37907a7 {"md5": "63bda92e5bed22f02b97228ba8697d54", "pid": "A012784906", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A012784906", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012784906", "source": "RERO"}], "preferred_name": "Harrison, Peter D", "authorized_access_point": "Harrison, Peter D"} 1 -2023-07-08 08:24:45.807357 2023-07-08 08:24:45.80736 eb9a6b81-cafe-4c69-b5f6-a37ee178e3b8 {"md5": "156a0fc3ead3f88e11eee2cb33213a25", "pid": "A012785250", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A012785250", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012785250", "source": "RERO"}], "preferred_name": "Lips, Annemarie", "authorized_access_point": "Lips, Annemarie"} 1 -2023-07-08 08:24:45.876968 2023-07-08 08:24:45.876972 5580496d-ac64-4903-90ba-bfe1524a6bb7 {"md5": "82df9f7ed48225dd289dc4c305de78bf", "pid": "A012791691", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A012791691", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012791691", "source": "RERO"}], "preferred_name": "Semaine du document numérique 2006 :", "authorized_access_point": "Semaine du document numérique (06 : 2006 : Fribourg)"} 1 -2023-07-08 08:24:45.94925 2023-07-08 08:24:45.949256 ed970a48-004b-42e3-a5ec-3fb63c54b53a {"md5": "c03cced95bf521d68eff4bbce262b200", "pid": "A012808722", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A012808722", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012808722", "source": "RERO"}], "preferred_name": "Lehr, Hans-Anton", "authorized_access_point": "Lehr, Hans-Anton"} 1 -2023-07-08 08:24:46.041074 2023-07-08 08:24:46.041083 ad364046-9cbc-4ecf-a847-a0e385ea9bd4 {"md5": "b965014a74da2ae171a1cafd08f70445", "pid": "A012816863", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A012816863", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012816863", "source": "RERO"}], "preferred_name": "Herrmann, Immanuel", "authorized_access_point": "Herrmann, Immanuel"} 1 -2023-07-08 08:24:46.122907 2023-07-08 08:24:46.122914 1d35bf05-298f-43e1-8cf1-a710e9314c5e {"md5": "19753cc3f3aa766c778bd5eb3b86f499", "pid": "A012833174", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012833174", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012833174", "source": "RERO"}], "preferred_name": "Raiffeisenkasse (Visperterminen)", "authorized_access_point": "Raiffeisenkasse (Visperterminen)"} 1 -2023-07-08 08:24:46.200674 2023-07-08 08:24:46.200677 7fc8699d-2937-48e1-9ca9-7d5c51ec4523 {"md5": "5904184c7da84f8eb548092818f05f5f", "pid": "A012856933", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012856933", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012856933", "source": "RERO"}], "preferred_name": "Schola Saint-Hymnemode (Montana)", "authorized_access_point": "Schola Saint-Hymnemode (Montana)"} 1 -2023-07-08 08:24:46.28427 2023-07-08 08:24:46.284273 f06b1544-a561-46a5-8cbb-db325adfd82c {"md5": "63f7477b7f426377e24fd0c3ef471727", "pid": "A012895540", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A012895540", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012895540", "source": "RERO"}], "preferred_name": "Ramahatra, Olivier", "authorized_access_point": "Ramahatra, Olivier"} 1 -2023-07-08 08:24:46.360175 2023-07-08 08:24:46.360183 75a8cbca-9bde-4b34-a52a-b9fb13b37f7d {"md5": "229c3156bec358c880acdc8160ecc294", "pid": "A012907177", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012907177", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012907177", "source": "RERO"}], "variant_name": ["Biblioteca provinciale del Monte dei Cappuccini (Torino)", "Biblioteca del Monte dei Cappuccini (Torino)", "Convento del Monte dei Cappuccini (Torino). Biblioteca provinciale"], "preferred_name": "Convento del Monte dei Cappuccini (Torino). Biblioteca", "variant_access_point": ["Biblioteca provinciale del Monte dei Cappuccini (Torino)", "Biblioteca del Monte dei Cappuccini (Torino)", "Convento del Monte dei Cappuccini (Torino). Biblioteca provinciale"], "authorized_access_point": "Convento del Monte dei Cappuccini (Torino). Biblioteca"} 1 -2023-07-08 08:24:46.458271 2023-07-08 08:24:46.45828 b2ec7b84-0e03-4291-9bf3-866086cf0dcc {"md5": "35127a4a284f25528779c53820ba71b9", "pid": "A012928427", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "comte de", "identifier": "http://data.rero.ch/02-A012928427", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012928427", "source": "RERO"}], "date_of_birth": "1778", "date_of_death": "1818", "preferred_name": "Ségur, Octave Gabriel, comte de,", "authorized_access_point": "Ségur, Octave Gabriel, comte de, 1778-1818"} 1 -2023-07-08 08:24:46.548993 2023-07-08 08:24:46.549004 22a5951e-415d-4c5a-8878-923152561937 {"md5": "0774498bcda927f9eb34bd4043ef60ab", "pid": "A012937900", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A012937900", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012937900", "source": "RERO"}], "variant_name": ["Maire, Daphné", "Gaudry, Daphné"], "preferred_name": "Gaudry-Maire, Daphné", "variant_access_point": ["Maire, Daphné", "Gaudry, Daphné"], "authorized_access_point": "Gaudry-Maire, Daphné"} 1 -2023-07-08 08:24:46.647418 2023-07-08 08:24:46.647426 b73139ef-5468-47c3-ab1c-c46731cad173 {"md5": "a9ac81c726b9c201dea89307612bb86d", "pid": "A012950169", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A012950169", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012950169", "source": "RERO"}], "preferred_name": "Laboratoire d'étude du droit public (Rennes). Colloque (2002 :", "authorized_access_point": "Laboratoire d'étude du droit public (Rennes). Colloque (2002 : Rennes)"} 1 -2023-07-08 08:24:46.736837 2023-07-08 08:24:46.736842 6908cc09-b4cf-4583-bb27-bb119f410003 {"md5": "cad7fdad8b0ea3c12b2929554c22a466", "pid": "A012957396", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A012957396", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012957396", "source": "RERO"}], "preferred_name": "Gberie, Lansana", "authorized_access_point": "Gberie, Lansana"} 1 -2023-07-08 08:24:46.835162 2023-07-08 08:24:46.835168 7cb01271-be7d-4340-90f5-76cb78413d95 {"md5": "5644512a7ee6dffacce3071f4534a6a4", "pid": "A012963166", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A012963166", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012963166", "source": "RERO"}], "preferred_name": "Gressard, J.-L", "authorized_access_point": "Gressard, J.-L"} 1 -2023-07-08 08:24:46.932194 2023-07-08 08:24:46.932201 19c65a67-1f3b-4b49-b4c5-3eb617412524 {"md5": "feed5fd635c43a445c6e14a3d2caa1b7", "pid": "A012966636", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A012966636", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012966636", "source": "RERO"}], "preferred_name": "Greenfield, Laura", "authorized_access_point": "Greenfield, Laura"} 1 -2023-07-08 08:24:47.014349 2023-07-08 08:24:47.014353 eb662295-a42a-44d7-b830-64c3c5620d69 {"md5": "110893273e094978b8c7f1996522c32d", "pid": "A013062530", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A013062530", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013062530", "source": "RERO"}], "variant_name": ["Galerie der Stadt Prag", "Galerie de la ville de Prague", "Galleria di Praga", "Galerie der Hauptstadt Prag", "Prague City Gallery", "City Gallery Prague"], "preferred_name": "Galerie hlavního města Prahy", "variant_access_point": ["Galerie der Stadt Prag", "Galerie de la ville de Prague", "Galleria di Praga", "Galerie der Hauptstadt Prag", "Prague City Gallery", "City Gallery Prague"], "authorized_access_point": "Galerie hlavního města Prahy"} 1 -2023-07-08 08:24:47.102972 2023-07-08 08:24:47.102977 738f761e-4cbf-4703-80eb-6c5e6a06c156 {"md5": "effdf4b400220cdaf1f18a1d5e5b55a0", "pid": "A013071942", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013071942", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013071942", "source": "RERO"}], "preferred_name": "Paula, Helmut", "authorized_access_point": "Paula, Helmut"} 1 -2023-07-08 08:24:47.191151 2023-07-08 08:24:47.191161 6169334a-4aee-432a-8e48-7ae4e3f94e83 {"md5": "4fb0036367f5287a3f8fff9def11ad4e", "pid": "A013084243", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013084243", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013084243", "source": "RERO"}], "preferred_name": "Cinelli, Luciano", "authorized_access_point": "Cinelli, Luciano"} 1 -2023-07-08 08:24:47.281098 2023-07-08 08:24:47.281104 707569a3-0934-41ec-a6a1-86a4ceb7c3fb {"md5": "aad5b235e2455a9068738fc3c3a6076d", "pid": "A013088320", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013088320", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013088320", "source": "RERO"}], "date_of_birth": "1934", "preferred_name": "Stolte, Dieter,", "authorized_access_point": "Stolte, Dieter, 1934-"} 1 -2023-07-08 08:24:47.353175 2023-07-08 08:24:47.353181 b96d4f6f-c2b7-420f-95cb-27e794cf1adf {"md5": "96a79155595b2f5cb7abde5413186846", "pid": "A013094655", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013094655", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013094655", "source": "RERO"}], "preferred_name": "Rumpf, Heinrich L", "authorized_access_point": "Rumpf, Heinrich L"} 1 -2023-07-08 08:24:47.455458 2023-07-08 08:24:47.455467 bd3976eb-ae16-4051-adbe-183bf8060696 {"md5": "bf52893b82878e70bc734ecdd6df8a24", "pid": "A013096212", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A013096212", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013096212", "source": "RERO"}], "preferred_name": "Interdiözesaner Katechetischer Fonds (Österreich)", "authorized_access_point": "Interdiözesaner Katechetischer Fonds (Österreich)"} 1 -2023-07-08 08:24:47.54805 2023-07-08 08:24:47.548056 403e6b08-3192-4989-9694-958aff3f51f0 {"md5": "c875a3da20b0cdd0510a3cc7f739ac92", "pid": "A013128887", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A013128887", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013128887", "source": "RERO"}], "preferred_name": "Sims Reed Gallery (London)", "authorized_access_point": "Sims Reed Gallery (London)"} 1 -2023-07-08 08:24:47.64788 2023-07-08 08:24:47.647884 c32176d3-f3c8-4625-96a3-fc4d69505fc4 {"md5": "8216b4d10c8a06ec8e29486b409d90ec", "pid": "A013135052", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013135052", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013135052", "source": "RERO"}], "preferred_name": "Korth, Konrad", "authorized_access_point": "Korth, Konrad"} 1 -2023-07-08 08:24:47.746259 2023-07-08 08:24:47.746267 dd91eb33-f607-43e4-9452-dfb07ffe9099 {"md5": "53d0b3184509b831d1369b43a8a89738", "pid": "A013137641", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A013137641", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013137641", "source": "RERO"}], "preferred_name": "Württembergisches Landesmuseum. Archäologische Sammlungen", "authorized_access_point": "Württembergisches Landesmuseum. Archäologische Sammlungen"} 1 -2023-07-08 08:24:47.839679 2023-07-08 08:24:47.839686 e805dcd9-1375-406d-88dc-e53f12cfeed0 {"md5": "b498009232ccd6805a5640a71482d208", "pid": "A013151927", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013151927", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013151927", "source": "RERO"}], "variant_name": ["Richterich, Lukas Emil"], "preferred_name": "Richterich, Lukas", "variant_access_point": ["Richterich, Lukas Emil"], "authorized_access_point": "Richterich, Lukas"} 1 -2023-07-08 08:24:47.937074 2023-07-08 08:24:47.937083 ab4b6912-a9a4-4cfa-8979-d8bdf2531b71 {"md5": "f253caf93c435c0d7ad6fe33099706ce", "pid": "A013160840", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013160840", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013160840", "source": "RERO"}], "preferred_name": "Jorio, Ettore", "authorized_access_point": "Jorio, Ettore"} 1 -2023-07-08 08:24:48.042574 2023-07-08 08:24:48.042579 de83e3c5-794c-4e70-87e7-dda29cdee233 {"md5": "bd9c7495d7ffe8e21926d865102ee75a", "pid": "A013187480", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013187480", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013187480", "source": "RERO"}], "preferred_name": "Unanue, Ander", "authorized_access_point": "Unanue, Ander"} 1 -2023-07-08 08:24:48.138673 2023-07-08 08:24:48.138681 c026be47-a4dc-4e1c-a5f6-c6f88ab2e939 {"md5": "3afc691fc19fd6b8bd27898d94bc812a", "pid": "A013188863", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013188863", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013188863", "source": "RERO"}], "preferred_name": "Vrettos, Adrienne Maria", "authorized_access_point": "Vrettos, Adrienne Maria"} 1 -2023-07-08 08:24:48.224143 2023-07-08 08:24:48.224147 70cb8881-35cd-45b2-99ac-0ff1be118d4e {"md5": "c35a6df485481168c503632bdaff9655", "pid": "A013193457", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013193457", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013193457", "source": "RERO"}], "preferred_name": "Verseils, Marcel", "authorized_access_point": "Verseils, Marcel"} 1 -2023-07-08 08:24:48.311161 2023-07-08 08:24:48.311165 01fc9b5a-63f0-4ece-a68d-257ec091c229 {"md5": "f95dc1e74271d4f90f3fd5691a8c68b4", "pid": "A013199001", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013199001", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013199001", "source": "RERO"}], "preferred_name": "Horn, Charles Norman", "authorized_access_point": "Horn, Charles Norman"} 1 -2023-07-08 08:24:48.387549 2023-07-08 08:24:48.387553 6badc474-43e4-4ac2-ad42-edacd1d0be06 {"md5": "f790b6c635f18820479c968606654e79", "pid": "A013216832", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013216832", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013216832", "source": "RERO"}], "preferred_name": "Scherpenberg, Norman van", "authorized_access_point": "Scherpenberg, Norman van"} 1 -2023-07-08 08:24:48.482894 2023-07-08 08:24:48.482906 86a1fe34-d7b2-450a-89f6-b27137a3dd77 {"md5": "b8a4cf4175c6af6623f7ad4a1bb9bf8a", "pid": "A013218412", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A013218412", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013218412", "source": "RERO"}], "preferred_name": "Geschichts- und Altertumsverein (Göppingen)", "authorized_access_point": "Geschichts- und Altertumsverein (Göppingen)"} 1 -2023-07-08 08:24:48.59619 2023-07-08 08:24:48.596203 4c8daa1b-07fe-4b8a-af58-52c5bdf4b548 {"md5": "9e2513836b5d27fa1efa39792f6ed74d", "pid": "A013222117", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013222117", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013222117", "source": "RERO"}], "preferred_name": "Hanser, Richard", "authorized_access_point": "Hanser, Richard"} 1 -2023-07-08 08:24:48.68866 2023-07-08 08:24:48.688669 68de0fa5-e809-48d4-b5c6-aac2ed22d770 {"md5": "438d1135dd68bbb3e9f42ee3da20bbec", "pid": "A013234989", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013234989", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013234989", "source": "RERO"}], "preferred_name": "Sale, Nathalie", "authorized_access_point": "Sale, Nathalie"} 1 -2023-07-08 08:24:48.800993 2023-07-08 08:24:48.801007 64c4a07c-3a1f-4b57-8c02-da2f03c0a85a {"md5": "86f505844b1cfca68ad3240db652c6d3", "pid": "A013238298", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013238298", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013238298", "source": "RERO"}], "preferred_name": "Lépaulart, Nicolas", "authorized_access_point": "Lépaulart, Nicolas"} 1 -2023-07-08 08:24:48.910776 2023-07-08 08:24:48.910784 b21db200-a6a1-47c0-9918-22f6c02db899 {"md5": "1f3eedbc4d49ad32f20a67fd34fa9add", "pid": "A013254669", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A013254669", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013254669", "source": "RERO"}], "preferred_name": "Université Mohammed V (Rabat). Département de sciences économiques et sociales. Colloque (1997 :", "authorized_access_point": "Université Mohammed V (Rabat). Département de sciences économiques et sociales. Colloque (1997 : Rabat)"} 1 -2023-07-08 08:24:49.032172 2023-07-08 08:24:49.032177 514795ba-3988-40d5-bce7-7f488f8b117e {"md5": "84145333a0349dd12434ea8a964655f0", "pid": "A013254904", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A013254904", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013254904", "source": "RERO"}], "preferred_name": "North American Conference on Muslim Evangelization (1978 :", "authorized_access_point": "North American Conference on Muslim Evangelization (1978 : Colorado Springs)"} 1 -2023-07-08 08:24:49.157837 2023-07-08 08:24:49.157849 01c3a185-b4f9-4793-96e2-96c2b91e4686 {"md5": "06227b74580dc9902063a4f5d86ae94d", "pid": "A013264678", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013264678", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013264678", "source": "RERO"}], "preferred_name": "Petrotchenko, Olessia", "authorized_access_point": "Petrotchenko, Olessia"} 1 -2023-07-08 08:24:49.281172 2023-07-08 08:24:49.281183 06c89279-0e76-4fe2-920d-d9b2b7b4b8ab {"md5": "257c879f624ead633c6f979a23b3d3a7", "pid": "A013278476", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013278476", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013278476", "source": "RERO"}], "preferred_name": "Vrecken, Paul van der", "authorized_access_point": "Vrecken, Paul van der"} 1 -2023-07-08 08:24:49.407996 2023-07-08 08:24:49.408007 d82ee74f-9485-4369-8e3c-e439f2dbad43 {"md5": "8778bbf4d1e28e226fe00f57ccd7ff93", "pid": "A013288987", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013288987", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013288987", "source": "RERO"}], "preferred_name": "Blatz, Heinrich", "authorized_access_point": "Blatz, Heinrich"} 1 -2023-07-08 08:24:49.520275 2023-07-08 08:24:49.5204 705fd0c1-7672-4708-a458-5541a68133d8 {"md5": "160e33a8d88567c36bfcc70508bef728", "pid": "A013298285", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "comte de Hollande et roi des Romains", "identifier": "http://data.rero.ch/02-A013298285", "numeration": "II", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013298285", "source": "RERO"}], "preferred_name": "Guillaume II, comte de Hollande et roi des Romains", "authorized_access_point": "Guillaume II, comte de Hollande et roi des Romains"} 1 -2023-07-08 08:24:49.646855 2023-07-08 08:24:49.646865 8ad437f7-bcc5-45e7-be2e-10c52578742a {"md5": "528653115bc860b12ffc73ba4d8a9e13", "pid": "A013325785", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013325785", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013325785", "source": "RERO"}], "preferred_name": "Chodkiewicz, Kazimierz", "authorized_access_point": "Chodkiewicz, Kazimierz"} 1 -2023-07-08 08:24:49.769657 2023-07-08 08:24:49.76967 d02c2ca2-e7f3-437c-9979-8873d760dde5 {"md5": "6946a17a7144fb724ad1027e6ceedf31", "pid": "A013328589", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A013328589", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013328589", "source": "RERO"}], "preferred_name": "Congrès de soins palliatifs pédiatriques 2001 :", "authorized_access_point": "Congrès de soins palliatifs pédiatriques (1 : 2001 : Montréal)"} 1 -2023-07-08 08:24:49.878195 2023-07-08 08:24:49.878208 e1a3ecbb-ed1d-4716-80f5-9e267a5235f8 {"md5": "3a439f176302804f011ca8d0e151d874", "pid": "A013346407", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013346407", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013346407", "source": "RERO"}], "preferred_name": "Topf, Helmut", "authorized_access_point": "Topf, Helmut"} 1 -2023-07-08 08:24:50.027759 2023-07-08 08:24:50.027771 51a547ca-7b42-4cf6-ad14-219a185ae521 {"md5": "7b0c9101c9cdd19db5cd7c6d3ad99ee7", "pid": "A013388531", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013388531", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013388531", "source": "RERO"}], "preferred_name": "Florentz, Didier", "authorized_access_point": "Florentz, Didier"} 1 -2023-07-08 08:24:50.130098 2023-07-08 08:24:50.130109 19e73f29-1e99-4fdc-955a-08cb3e6648cc {"md5": "e7142f81f5d3e24c08dfb2c56356e594", "pid": "A013395525", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A013395525", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013395525", "source": "RERO"}], "preferred_name": "Espace Mont-Blanc. Comité de pilotage Schéma de développement durable", "authorized_access_point": "Espace Mont-Blanc. Comité de pilotage Schéma de développement durable"} 1 -2023-07-08 08:24:50.231223 2023-07-08 08:24:50.231237 cf60b82c-5537-4e2d-88c4-85d262906b0c {"md5": "dacc8df5a8514ad6a728decb2824d9f9", "pid": "A013406985", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013406985", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013406985", "source": "RERO"}], "preferred_name": "Durieu, Jacques", "authorized_access_point": "Durieu, Jacques"} 1 -2023-07-08 08:24:50.331235 2023-07-08 08:24:50.331246 18c308a5-5d76-4b13-babe-f5cce363da8d {"md5": "653bfabaddafc6eff182c62a5f932aab", "pid": "A013436592", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013436592", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013436592", "source": "RERO"}], "preferred_name": "Mattes, Larry J", "authorized_access_point": "Mattes, Larry J"} 1 -2023-07-08 08:24:50.462004 2023-07-08 08:24:50.462011 113cfe28-a398-4edb-98f4-6c37681792af {"md5": "ba0c3259b11857becedb37606cf07d83", "pid": "A013461986", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A013461986", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013461986", "source": "RERO"}], "preferred_name": "Międzyuczelniany Opozycyjny Ruch Studencki (Polska)", "authorized_access_point": "Międzyuczelniany Opozycyjny Ruch Studencki (Polska)"} 1 -2023-07-08 08:24:50.612631 2023-07-08 08:24:50.612647 a03b31b2-33be-4c32-bf06-6b9d084103ff {"md5": "e40f7c364fe18ed05a82d61dfa237e98", "pid": "A013469717", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013469717", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013469717", "source": "RERO"}], "date_of_birth": "1812", "date_of_death": "1886", "preferred_name": "Andrews, Stephen Pearl,", "authorized_access_point": "Andrews, Stephen Pearl, 1812-1886"} 1 -2023-07-08 08:24:50.76877 2023-07-08 08:24:50.768781 9e6e6d67-2ad7-464b-8e3f-e444cbe9f407 {"md5": "3f6f0560726a87006fd64d29615b5a9a", "pid": "A013472806", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013472806", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013472806", "source": "RERO"}], "preferred_name": "Gröne, Wilhelm", "authorized_access_point": "Gröne, Wilhelm"} 1 -2023-07-08 08:24:50.883683 2023-07-08 08:24:50.883712 6759244c-85cf-405c-b087-b7b1d2a9f46a {"md5": "3f78956db04226e5e11ebc0945845d6f", "pid": "A013486130", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013486130", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013486130", "source": "RERO"}], "variant_name": ["Elperin, Juri"], "preferred_name": "Elperin, I︠U︡riĭ", "variant_access_point": ["Elperin, Juri"], "authorized_access_point": "Elperin, I︠U︡riĭ"} 1 -2023-07-08 08:24:51.018046 2023-07-08 08:24:51.01806 9316d2ae-28c8-4a92-a23e-d390495d2e67 {"md5": "0dabed4381ac116a54e9abfc7c16511b", "pid": "A013491491", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013491491", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013491491", "source": "RERO"}], "variant_name": ["Gorčakova, A"], "preferred_name": "Gorchakova, A", "variant_access_point": ["Gorčakova, A"], "parallel_access_point": ["Горчакова, А"], "authorized_access_point": "Gorchakova, A"} 1 -2023-07-08 08:24:51.184246 2023-07-08 08:24:51.184252 4bb59c05-b76a-4f7a-8b9a-edc921217cab {"md5": "68f5ed6efc90855baf8da403d63ccf0a", "pid": "A013496961", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013496961", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013496961", "source": "RERO"}], "variant_name": ["Ǧawhari, ʿAbdel-ʿAzīz"], "preferred_name": "Jawharī, ʿAbd al-ʿAzīz", "variant_access_point": ["Ǧawhari, ʿAbdel-ʿAzīz"], "parallel_access_point": ["جوهري، عبد العزيز"], "authorized_access_point": "Jawharī, ʿAbd al-ʿAzīz"} 1 -2023-07-08 08:24:51.282045 2023-07-08 08:24:51.282057 4bfe9a2e-31df-4592-a173-5ee36a2b1190 {"md5": "fba82aa63d664002e8d32ce9e594f542", "pid": "A013498494", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013498494", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013498494", "source": "RERO"}], "variant_name": ["Melʹvilʹ, Jurij Konstantinovič"], "preferred_name": "Melʹvilʹ, I︠U︡riĭ Konstantinovich", "variant_access_point": ["Melʹvilʹ, Jurij Konstantinovič"], "parallel_access_point": ["Мельвиль, Юрий Константинович"], "authorized_access_point": "Melʹvilʹ, I︠U︡riĭ Konstantinovich"} 1 -2023-07-08 08:24:51.387192 2023-07-08 08:24:51.387208 ec5e8871-ebea-4c51-9140-5c56e6b95c13 {"md5": "c0b92069a0c0cf5e842ae73ab50f8db2", "pid": "A013503465", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A013503465", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013503465", "source": "RERO"}], "variant_name": ["Russkoe entomologičeskoe obščestvo"], "preferred_name": "Russkoe entomologicheskoe obshchestvo", "variant_access_point": ["Russkoe entomologičeskoe obščestvo"], "parallel_access_point": ["Русское энтомологическое общество"], "authorized_access_point": "Russkoe entomologicheskoe obshchestvo"} 1 -2023-07-08 08:24:51.498124 2023-07-08 08:24:51.498239 45658af5-5da6-478c-9c53-1facc445da3d {"md5": "325bd7c43011c81425facd4624b28f76", "pid": "A013503508", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013503508", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013503508", "source": "RERO"}], "variant_name": ["Žalinskij, Al'fred Ėrnestovič"], "preferred_name": "Zhalinskiĭ, Alʹfred Ėrnestovich", "variant_access_point": ["Žalinskij, Al'fred Ėrnestovič"], "parallel_access_point": ["Жалинский, Альфред Эрнестович"], "authorized_access_point": "Zhalinskiĭ, Alʹfred Ėrnestovich"} 1 -2023-07-08 08:24:51.611978 2023-07-08 08:24:51.611984 fa39dd8e-9d07-4ff3-901c-b0b2d0dc3300 {"md5": "d28bd6fbc93a71bc853fee513fed64ac", "pid": "A013505068", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013505068", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013505068", "source": "RERO"}], "variant_name": ["Maljakov, Lev Ivanovič"], "preferred_name": "Mali︠a︡kov, Lev Ivanovich", "variant_access_point": ["Maljakov, Lev Ivanovič"], "parallel_access_point": ["Маляков, Лев Иванович"], "authorized_access_point": "Mali︠a︡kov, Lev Ivanovich"} 1 -2023-07-08 08:24:51.703788 2023-07-08 08:24:51.703801 dd2f77e0-3126-4038-9da3-bbf0eaa0bd31 {"md5": "456491e2a6cb77286a4112a35e952c86", "pid": "A013505146", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013505146", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013505146", "source": "RERO"}], "variant_name": ["Spi̲lio̲táki̲s, K.K"], "preferred_name": "Spēliōtakēs, K.K", "variant_access_point": ["Spi̲lio̲táki̲s, K.K"], "parallel_access_point": ["Σπηλιωτάκης, Κ.Κ"], "authorized_access_point": "Spēliōtakēs, K.K"} 1 -2023-07-08 08:24:51.815695 2023-07-08 08:24:51.815703 fe1eb473-bfcf-4d45-aae4-ac5c56f041cb {"md5": "96e38a0aa25024bf47f7e8ea13b2c546", "pid": "A013505439", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013505439", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013505439", "source": "RERO"}], "variant_name": ["Vardomackij, Andrej Petrovič"], "preferred_name": "Vardomat︠s︡kiĭ, Andreĭ Petrovich", "variant_access_point": ["Vardomackij, Andrej Petrovič"], "parallel_access_point": ["Вардомацкий, Андрей Петрович"], "authorized_access_point": "Vardomat︠s︡kiĭ, Andreĭ Petrovich"} 1 -2023-07-08 08:24:51.931949 2023-07-08 08:24:51.931967 9ac796de-44bf-47fc-9e1b-60590b1a99b2 {"md5": "9fc643f8ab4578d8e07f7bbf08bc3624", "pid": "A013506588", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013506588", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013506588", "source": "RERO"}], "variant_name": ["Hāšim, ʿAbd-al-Hādī,"], "date_of_birth": "1913", "preferred_name": "Hāshim, ʿAbd al-Hādī,", "variant_access_point": ["Hāšim, ʿAbd-al-Hādī, 1913-"], "parallel_access_point": ["هاشم، عبد الهادي، 1913-"], "authorized_access_point": "Hāshim, ʿAbd al-Hādī, 1913-"} 1 -2023-07-08 08:24:52.054699 2023-07-08 08:24:52.054705 4d8dc596-80a9-4d79-bf23-a997377d7a44 {"md5": "ef2bcfb4020498527b7334275cadf5d5", "pid": "A013518111", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A013518111", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013518111", "source": "RERO"}], "variant_name": ["Imperatorskoe Kavkazskoe Medicinskoe Obščestvo"], "preferred_name": "Imperatorskoe Kavkazskoe Medit︠s︡inskoe Obshchestvo", "variant_access_point": ["Imperatorskoe Kavkazskoe Medicinskoe Obščestvo"], "parallel_access_point": ["Императорское Кавказское Медицинское Общество"], "authorized_access_point": "Imperatorskoe Kavkazskoe Medit︠s︡inskoe Obshchestvo"} 1 -2023-07-08 08:24:52.169211 2023-07-08 08:24:52.169222 beae6bdd-7b0b-424b-83dc-9e7cf66cd518 {"md5": "99fdedb4249aa2fb0a33687179af685f", "pid": "A013519314", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013519314", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013519314", "source": "RERO"}], "variant_name": ["Ėlkin, Anatolij Sergeevič"], "preferred_name": "Ėlkin, Anatoliĭ Sergeevich", "variant_access_point": ["Ėlkin, Anatolij Sergeevič"], "parallel_access_point": ["Элкин, Анатолий Сергеевич"], "authorized_access_point": "Ėlkin, Anatoliĭ Sergeevich"} 1 -2023-07-08 08:24:52.287925 2023-07-08 08:24:52.287946 b2fba77c-2894-448a-b394-50cc8c8e0ef2 {"md5": "b4eb7c7ca6fe2cf3e35b2b6f8c8dacf0", "pid": "A013521342", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A013521342", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013521342", "source": "RERO"}], "variant_name": ["RSFSR (Rossijskaja Sovetskaja Federativnaja Socialističeskaja Respublika). Juridičeskaja komissija soveta ministrov", "I︠U︡ridicheskai︠a︡ komissii︠a︡ pri Sovete Ministrov RSFSR", "RSFSR (Rossijskaja Sovetskaja Federativnaja Socialističeskaja Respublika). Sovet Ministrov. I︠U︡ridicheskai︠a︡ komissii︠a︡"], "preferred_name": "RSFSR (Rossiĭskai︠a︡ Sovetskai︠a︡ Federativnai︠a︡ Sot︠s︡ialisticheskai︠a︡ Respublika). I︠U︡ridicheskai︠a︡ komissii︠a︡", "variant_access_point": ["RSFSR (Rossijskaja Sovetskaja Federativnaja Socialističeskaja Respublika). Juridičeskaja komissija soveta ministrov", "I︠U︡ridicheskai︠a︡ komissii︠a︡ pri Sovete Ministrov RSFSR", "RSFSR (Rossijskaja Sovetskaja Federativnaja Socialističeskaja Respublika). Sovet Ministrov. I︠U︡ridicheskai︠a︡ komissii︠a︡"], "parallel_access_point": ["РСФСР (Российская Советская Федеративная Социалистическая Республика). Юридическая комиссия"], "authorized_access_point": "RSFSR (Rossiĭskai︠a︡ Sovetskai︠a︡ Federativnai︠a︡ Sot︠s︡ialisticheskai︠a︡ Respublika). I︠U︡ridicheskai︠a︡ komissii︠a︡"} 1 -2023-07-08 08:24:52.397676 2023-07-08 08:24:52.397684 4b4b47f5-c563-464c-abd5-38b2abe2b60d {"md5": "825633ccdb72ad388dd5e4d4033721a5", "pid": "A013544891", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013544891", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013544891", "source": "RERO"}], "preferred_name": "Ruvinskiĭ, Leonid Izotovich", "parallel_access_point": ["Рувинский, Леонид Изотович"], "authorized_access_point": "Ruvinskiĭ, Leonid Izotovich"} 1 -2023-07-08 08:24:52.500742 2023-07-08 08:24:52.500757 9c7747be-19c5-4830-b1a0-af57e7c50d20 {"md5": "956b03f5d8d1e57ac60c070a71fbb48a", "pid": "A013552965", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A013552965", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013552965", "source": "RERO"}], "preferred_name": "Internationales Kolloquium zur Wörterbuchforschung 2002 :", "authorized_access_point": "Internationales Kolloquium zur Wörterbuchforschung (2 : 2002 : Sofia)"} 1 -2023-07-08 08:24:52.618852 2023-07-08 08:24:52.618862 9fda9063-68ab-48be-8814-7fd5930f330e {"md5": "cf78af26bf850d3143fdb58c86bd095d", "pid": "A013553997", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013553997", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013553997", "source": "RERO"}], "preferred_name": "Lovey, Romaine", "authorized_access_point": "Lovey, Romaine"} 1 -2023-07-08 08:24:52.745687 2023-07-08 08:24:52.745702 e6c7b0dc-fe4e-4d6a-8195-66cd2301596e {"md5": "b64be7bf35b3cc2b8cab4f2070dbe7e4", "pid": "A013583535", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013583535", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013583535", "source": "RERO"}], "preferred_name": "Hayward, Joseph", "authorized_access_point": "Hayward, Joseph"} 1 -2023-07-08 08:24:52.874871 2023-07-08 08:24:52.874879 bb552fc1-8fbb-49f4-bd73-b09bd2f3054b {"md5": "446c47944554ef6c82f2a8db399e2ab1", "pid": "A013585039", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013585039", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013585039", "source": "RERO"}], "preferred_name": "Klefsjö, Bengt", "authorized_access_point": "Klefsjö, Bengt"} 1 -2023-07-08 08:24:52.976758 2023-07-08 08:24:52.976764 a585c3de-1644-4364-98f8-76eaff4adcbd {"md5": "8b52b1f5fad92f5feb3c84dcc9d7b2d2", "pid": "A013595086", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "juriste", "identifier": "http://data.rero.ch/02-A013595086", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013595086", "source": "RERO"}], "preferred_name": "Buck, Christian, juriste", "authorized_access_point": "Buck, Christian, juriste"} 1 -2023-07-08 08:24:53.101259 2023-07-08 08:24:53.101273 b1783114-342d-486f-8c53-9f93a389f364 {"md5": "411dda4b4e3331ce4966fe3c3712e586", "pid": "A013595372", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A013595372", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013595372", "source": "RERO"}], "variant_name": ["Museo di Casa Romei"], "preferred_name": "Casa Romei", "variant_access_point": ["Museo di Casa Romei"], "authorized_access_point": "Casa Romei"} 1 -2023-07-08 08:24:53.231471 2023-07-08 08:24:53.231486 8aa9bea8-1bf7-4b6a-8daf-6f5104668517 {"md5": "3711bfde0627fbd4d746899b1fe43c7f", "pid": "A013621306", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A013621306", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013621306", "source": "RERO"}], "preferred_name": "Colloque national de magnétisme (1957 :", "authorized_access_point": "Colloque national de magnétisme (1957 : Strasbourg)"} 1 -2023-07-08 08:24:53.345729 2023-07-08 08:24:53.345743 82323eaa-5199-44e0-b9f6-1eaa4fca059d {"md5": "9809471fdda6577d00275fb62776e3a2", "pid": "A013627680", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013627680", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013627680", "source": "RERO"}], "preferred_name": "Beardsall, Jeffery F", "authorized_access_point": "Beardsall, Jeffery F"} 1 -2023-07-08 08:24:53.450917 2023-07-08 08:24:53.450929 12be84ed-825d-402b-b63a-06205f6bb69a {"md5": "5618b9f5230dc8406d86e824a785bdd3", "pid": "A013629529", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013629529", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013629529", "source": "RERO"}], "preferred_name": "Schnegg, Céline", "authorized_access_point": "Schnegg, Céline"} 1 -2023-07-08 08:24:53.550817 2023-07-08 08:24:53.550841 e7161910-b811-43a2-ac80-f5a639920cc5 {"md5": "80dfb4dde50c1e97f668c823eb69bb06", "pid": "A013654911", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A013654911", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013654911", "source": "RERO"}], "preferred_name": "Museum of Mediterranean Archaeology (Nir Daṿid, Israel)", "authorized_access_point": "Museum of Mediterranean Archaeology (Nir Daṿid, Israel)"} 1 -2023-07-08 08:24:53.667567 2023-07-08 08:24:53.667578 daf2ca16-f422-4412-9097-ac76c2124cbb {"md5": "1567e5ef7cd7dafeec0a25f5a6b3e8e8", "pid": "A013663807", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A013663807", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013663807", "source": "RERO"}], "preferred_name": "Deklin", "authorized_access_point": "Deklin"} 1 -2023-07-08 08:24:53.789261 2023-07-08 08:24:53.789276 99f7a3bb-5fa5-488d-bada-28a9ff2419d8 {"md5": "69e4f353e0a9617cce64b0062ad8df23", "pid": "A013675118", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013675118", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013675118", "source": "RERO"}], "preferred_name": "Østergaard, Kim", "authorized_access_point": "Østergaard, Kim"} 1 -2023-07-08 08:24:53.903173 2023-07-08 08:24:53.903183 b3a1c73f-fd88-4b73-aa58-b1e467a07313 {"md5": "4b18130ad4f7dd3145094fa60cab6295", "pid": "A013683105", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013683105", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013683105", "source": "RERO"}], "preferred_name": "Laue, Thomas", "authorized_access_point": "Laue, Thomas"} 1 -2023-07-08 08:24:54.024645 2023-07-08 08:24:54.024657 143f38d0-c90a-4b8c-8445-031b297f139a {"md5": "452ae1adc8d353acc07c0681f85bb9b3", "pid": "A013688478", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A013688478", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013688478", "source": "RERO"}], "preferred_name": "Rencontres de décembre (La Chaux-de-Fonds)", "authorized_access_point": "Rencontres de décembre (La Chaux-de-Fonds)"} 1 -2023-07-08 08:24:54.182532 2023-07-08 08:24:54.182545 b1083a74-07d6-4508-a60f-8dc3f8cc6e35 {"md5": "3f10e4042f4b0360bd190ae5565e8c99", "pid": "A013706277", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013706277", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013706277", "source": "RERO"}], "preferred_name": "Kilcher, Jules", "authorized_access_point": "Kilcher, Jules"} 1 -2023-07-08 08:24:54.337645 2023-07-08 08:24:54.337656 7fc98c91-8d1c-46ce-8a40-6f030fe3d6e1 {"md5": "b1639a5a2e532ddb179c6be751e43b4e", "pid": "A013720765", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A013720765", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013720765", "source": "RERO"}], "preferred_name": "Deutsche Gesellschaft für die Vereinten Nationen. Gesundheitskommission", "authorized_access_point": "Deutsche Gesellschaft für die Vereinten Nationen. Gesundheitskommission"} 1 -2023-07-08 08:24:54.44504 2023-07-08 08:24:54.445058 3110e583-724d-432f-9d0c-208d097d8d09 {"md5": "385ec65fd6d9f6d7b8b5675110c558ed", "pid": "A013753495", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013753495", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013753495", "source": "RERO"}], "preferred_name": "Bogdan-Verger, Olimpia", "authorized_access_point": "Bogdan-Verger, Olimpia"} 1 -2023-07-08 08:24:54.573151 2023-07-08 08:24:54.573164 b305fff1-455f-4b22-bee8-ab1899b10aff {"md5": "9744e7c7c64249df7c1d58a9d3a6798a", "pid": "A013763647", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013763647", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013763647", "source": "RERO"}], "preferred_name": "Börner, Wilhelm", "authorized_access_point": "Börner, Wilhelm"} 1 -2023-07-08 08:24:54.712638 2023-07-08 08:24:54.712645 544cf724-9b97-4579-9dbe-c98c699b7aa5 {"md5": "e873f8bc9fc78b929c1333a8bba72093", "pid": "A013784156", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013784156", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013784156", "source": "RERO"}], "preferred_name": "Parisi, Chiara", "authorized_access_point": "Parisi, Chiara"} 1 -2023-07-08 08:24:54.83268 2023-07-08 08:24:54.832693 42caaf69-e7b9-4541-a042-f0841f065e91 {"md5": "c998fc906976cd07354bc786a5b3adb7", "pid": "A013786026", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013786026", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013786026", "source": "RERO"}], "preferred_name": "Blaser, Céline", "authorized_access_point": "Blaser, Céline"} 1 -2023-07-08 08:24:54.951581 2023-07-08 08:24:54.951593 d178bf8b-4135-47b2-8eb7-373120455510 {"md5": "49cafd19e5e742d41cfac634349ac8e3", "pid": "A013793627", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013793627", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013793627", "source": "RERO"}], "preferred_name": "Catterini, Robert", "authorized_access_point": "Catterini, Robert"} 1 -2023-07-08 08:24:55.082141 2023-07-08 08:24:55.082154 3494b086-b446-4e64-9a6c-a8e0306b0345 {"md5": "fd75f205492fa4ac64c408ac8bd537ef", "pid": "A013796408", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013796408", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013796408", "source": "RERO"}], "preferred_name": "Simmen, Denise", "authorized_access_point": "Simmen, Denise"} 1 -2023-07-08 08:24:55.172043 2023-07-08 08:24:55.172058 b9ef28c0-f04a-4ea5-8eb1-5b2c5e360ddb {"md5": "a020ddf8257d574cd31dd2755cd875c5", "pid": "A013815334", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013815334", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013815334", "source": "RERO"}], "preferred_name": "Lim-Hing, Sharon", "authorized_access_point": "Lim-Hing, Sharon"} 1 -2023-07-08 08:24:55.287428 2023-07-08 08:24:55.287439 1b9cd752-c50b-4b8c-ba89-e743eeee33a5 {"md5": "e26f61c31dae2bc0920620510c3f2d7c", "pid": "A013839708", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A013839708", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013839708", "source": "RERO"}], "preferred_name": "Marburger Universitätsbund", "authorized_access_point": "Marburger Universitätsbund"} 1 -2023-07-08 08:24:55.39946 2023-07-08 08:24:55.399469 7c2296b5-091a-45d8-86e1-e878eb43b28f {"md5": "4276dfce98df906196c0092ea8aa2b93", "pid": "A013851171", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013851171", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013851171", "source": "RERO"}], "preferred_name": "Kantirea, Maria", "authorized_access_point": "Kantirea, Maria"} 1 -2023-07-08 08:24:55.530907 2023-07-08 08:24:55.53092 c5413b5c-de48-4d24-8de2-a5862f76f157 {"md5": "f94070d4a316f7e7a09784964511e8ba", "pid": "A013863028", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013863028", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013863028", "source": "RERO"}], "preferred_name": "Hoult, Nicholas", "authorized_access_point": "Hoult, Nicholas"} 1 -2023-07-08 08:24:55.654484 2023-07-08 08:24:55.654493 c10ae1ee-0e2e-400d-837c-52549bb30a62 {"md5": "0a9bbb5e0a91ccf913a155c7c28a3d16", "pid": "A013902798", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A013902798", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013902798", "source": "RERO"}], "preferred_name": "Symposium slavicum (1977 :", "authorized_access_point": "Symposium slavicum (1977 : Innsbruck)"} 1 -2023-07-08 08:24:55.772018 2023-07-08 08:24:55.772033 229cbcdb-7a0f-4a29-8b78-e74c2ace3ace {"md5": "ef894048f9804f4b27163cd590b49d4e", "pid": "A013936998", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013936998", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013936998", "source": "RERO"}], "preferred_name": "Piekut, Kazimierz", "authorized_access_point": "Piekut, Kazimierz"} 1 -2023-07-08 08:24:55.886748 2023-07-08 08:24:55.886757 594533f7-8343-4756-bec4-56f2a79592c5 {"md5": "51e5950a391e07167cade2f4ec659965", "pid": "A013939562", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013939562", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013939562", "source": "RERO"}], "preferred_name": "Krzysko, Maria", "authorized_access_point": "Krzysko, Maria"} 1 -2023-07-08 08:24:56.002024 2023-07-08 08:24:56.002029 230d15b1-c4e2-4700-bccf-52b0c3328a78 {"md5": "53cd406645d94ee82308f2d91d8dbcf4", "pid": "A013941086", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013941086", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013941086", "source": "RERO"}], "preferred_name": "Holt, Leslie E", "authorized_access_point": "Holt, Leslie E"} 1 -2023-07-08 08:24:56.105112 2023-07-08 08:24:56.105121 109d003a-9446-49ee-b547-216cf9354dcf {"md5": "d6cbc0903cd5acc7e06199038e4ef9fc", "pid": "A013948865", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013948865", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013948865", "source": "RERO"}], "preferred_name": "Panas, Mario", "authorized_access_point": "Panas, Mario"} 1 -2023-07-08 08:24:56.218814 2023-07-08 08:24:56.218824 d5853da2-cb2b-400b-ad4c-82cc6237a4c5 {"md5": "085b883f6f41666d2792aa7a4e525be8", "pid": "A013952563", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013952563", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013952563", "source": "RERO"}], "preferred_name": "Mintoume, Siméon Clotaire", "authorized_access_point": "Mintoume, Siméon Clotaire"} 1 -2023-07-08 08:24:56.317758 2023-07-08 08:24:56.317771 f8645dde-90b2-4753-a7f4-477b2175025b {"md5": "721ee7855b8b3de37222005fd33b9667", "pid": "A013970354", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013970354", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013970354", "source": "RERO"}], "preferred_name": "Weiglin, Paul", "authorized_access_point": "Weiglin, Paul"} 1 -2023-07-08 08:24:56.434051 2023-07-08 08:24:56.43406 66812f8b-3b19-4e23-8465-2fd9268a6f5f {"md5": "2854758826d96898a213d14f511f3d22", "pid": "A013986424", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013986424", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013986424", "source": "RERO"}], "date_of_birth": "1924", "preferred_name": "Eckardt, H.,", "authorized_access_point": "Eckardt, H., 1924-"} 1 -2023-07-08 08:24:56.547172 2023-07-08 08:24:56.547185 0e4b9fa7-3247-4687-b243-d08400037c21 {"md5": "e3de064568576357cd2e370c2bc9732a", "pid": "A013993183", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013993183", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013993183", "source": "RERO"}], "preferred_name": "Barbi, Elisabetta", "authorized_access_point": "Barbi, Elisabetta"} 1 -2023-07-08 08:24:56.660577 2023-07-08 08:24:56.66059 28e2ebc9-eeee-43fc-bf87-2e8bf86bf245 {"md5": "97cd10880516d055d8268b80559d28b6", "pid": "A013995035", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A013995035", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013995035", "source": "RERO"}], "preferred_name": "Mackowitz, R", "authorized_access_point": "Mackowitz, R"} 1 -2023-07-08 08:24:56.770903 2023-07-08 08:24:56.770913 d9832867-b3e5-482f-ad68-729c15f790e1 {"md5": "0af1175d6f88011b021be077b907cea4", "pid": "A014012002", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A014012002", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014012002", "source": "RERO"}], "preferred_name": "Giornata di studi bizantini 1992 :", "authorized_access_point": "Giornata di studi bizantini (02 : 1992 : Salerno)"} 1 -2023-07-08 08:24:56.871999 2023-07-08 08:24:56.872012 413c85a1-8f01-48f5-84b4-33a6f97eea10 {"md5": "ce56923f3871bf7d38ac79f43096a287", "pid": "A014025587", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "directeur de Dixi S.A", "identifier": "http://data.rero.ch/02-A014025587", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014025587", "source": "RERO"}], "preferred_name": "Castella, Paul, directeur de Dixi S.A", "authorized_access_point": "Castella, Paul, directeur de Dixi S.A"} 1 -2023-07-08 08:24:56.984728 2023-07-08 08:24:56.984737 75d98aaa-ba64-4e6b-bc26-51672a7a7f02 {"md5": "d8eba83a9d280c182af16c8509a2c7b2", "pid": "A014026079", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A014026079", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014026079", "source": "RERO"}], "preferred_name": "Wiese, René", "authorized_access_point": "Wiese, René"} 1 -2023-07-08 08:24:57.101539 2023-07-08 08:24:57.101551 70b0ecb2-ea57-42b9-9e76-8cafdbfd99cc {"md5": "47bf8ea11f0792d945efee4213d961ad", "pid": "A014036096", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A014036096", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014036096", "source": "RERO"}], "preferred_name": "Bouteiller, Jérôme", "authorized_access_point": "Bouteiller, Jérôme"} 1 -2023-07-08 08:24:57.214131 2023-07-08 08:24:57.214146 334dc7a9-12ed-48b3-ad27-541ffeb067a2 {"md5": "2d491eacc8687fb9bb76536b56c4f062", "pid": "A014037717", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A014037717", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014037717", "source": "RERO"}], "preferred_name": "Lavelle, Patricia", "authorized_access_point": "Lavelle, Patricia"} 1 -2023-07-08 08:24:57.33618 2023-07-08 08:24:57.336191 0f055c93-c52c-4640-8dba-aadbe2545b62 {"md5": "19a6fc42bb657e864a62d002e9f5f96c", "pid": "A014059339", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A014059339", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014059339", "source": "RERO"}], "preferred_name": "Encarnación, Omar G", "authorized_access_point": "Encarnación, Omar G"} 1 -2023-07-08 08:24:57.454833 2023-07-08 08:24:57.454839 b85a42a5-1cb5-4fd6-b188-732b85661c54 {"md5": "3c0660c357a3f5451578480ba2b37101", "pid": "A014065225", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A014065225", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014065225", "source": "RERO"}], "preferred_name": "Serventy, Dominic Louis", "authorized_access_point": "Serventy, Dominic Louis"} 1 -2023-07-08 08:24:57.591905 2023-07-08 08:24:57.591922 501d4fe2-0cad-44ae-bb43-f1fd88504d84 {"md5": "0b36985298e876ffd095cb5b300d7aee", "pid": "A014070967", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A014070967", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014070967", "source": "RERO"}], "preferred_name": "Betschart, Kurt", "authorized_access_point": "Betschart, Kurt"} 1 -2023-07-08 08:24:57.728972 2023-07-08 08:24:57.728988 eaa957b6-084a-41bf-a615-1628625ab4fe {"md5": "7b9675f843d8a4cce9efac49bfb27771", "pid": "A014074228", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A014074228", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014074228", "source": "RERO"}], "preferred_name": "Oratorio di San Ludovico (Venezia)", "authorized_access_point": "Oratorio di San Ludovico (Venezia)"} 1 -2023-07-08 08:24:57.853955 2023-07-08 08:24:57.853965 abd99b94-d992-42dd-ae25-02b071f14513 {"md5": "2d639f0dc00464c82576248f73d810db", "pid": "A014087607", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A014087607", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014087607", "source": "RERO"}], "preferred_name": "Fronsac, Henri", "authorized_access_point": "Fronsac, Henri"} 1 -2023-07-08 08:24:57.989152 2023-07-08 08:24:57.989168 9e810c1a-a393-4e1f-b302-7282424a2fa0 {"md5": "26b1787bfd9542f40f039e769176ac4d", "pid": "A014087918", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A014087918", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014087918", "source": "RERO"}], "preferred_name": "Biennale di Venezia 1938)", "authorized_access_point": "Biennale di Venezia (21 : 1938)"} 1 -2023-07-08 08:24:58.134923 2023-07-08 08:24:58.134935 37a18df0-a148-4498-ac28-de91de551782 {"md5": "da64dce2bca94eea7150dc66c391f55a", "pid": "A014091750", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A014091750", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014091750", "source": "RERO"}], "date_of_birth": "1941", "preferred_name": "Novak, David,", "authorized_access_point": "Novak, David, 1941-"} 1 -2023-07-08 08:24:58.2565 2023-07-08 08:24:58.256506 8604ccaa-938f-4ea5-a041-e57def776def {"md5": "856c784ee13f23acc8276e71d9caa13f", "pid": "A014094375", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A014094375", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014094375", "source": "RERO"}], "variant_name": ["Morellet, abbé,", "A.M.,", "M.L.M.,", "M., M.L.,", "M., A.,"], "date_of_birth": "1727", "date_of_death": "1819", "preferred_name": "Morellet, André,", "variant_access_point": ["Morellet, abbé, 1727-1819", "A.M., 1727-1819", "M.L.M., 1727-1819", "M., M.L., 1727-1819", "M., A., 1727-1819"], "authorized_access_point": "Morellet, André, 1727-1819", "biographical_information": ["A aussi traduit de l'italien, de l'anglais et du latin en français. - Ecclésiastique. - Economiste. - Membre de l'Académie française (élu en 1785 et nommé en 1803)"]} 1 -2023-07-08 08:24:58.352279 2023-07-08 08:24:58.352293 4ec97034-932d-4a8e-9a1f-ad7e70dea6e6 {"md5": "4c08b71eacefa529b22cd9db1afe8c36", "pid": "A014111148", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A014111148", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014111148", "source": "RERO"}], "preferred_name": "Martin, Gérard", "authorized_access_point": "Martin, Gérard"} 1 -2023-07-08 08:24:58.464703 2023-07-08 08:24:58.464723 7bba5cb0-c7b7-4a0d-bc24-2a6f574d7447 {"md5": "d0ea4b4bc52aad19f0ebedede2a5da5e", "pid": "A014127767", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A014127767", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014127767", "source": "RERO"}], "preferred_name": "Dāsa, Vedavyāsa", "authorized_access_point": "Dāsa, Vedavyāsa"} 1 -2023-07-08 08:24:58.565906 2023-07-08 08:24:58.565913 785041ae-e259-4517-abf7-a40897e121fc {"md5": "aa2b1f47ea290cbe3ad60ea7b3c17842", "pid": "A014139981", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A014139981", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014139981", "source": "RERO"}], "preferred_name": "Sylvan, Robin", "authorized_access_point": "Sylvan, Robin"} 1 -2023-07-08 08:24:58.68309 2023-07-08 08:24:58.683101 a1e60beb-99d4-4525-9c75-00a201bd8cf7 {"md5": "24dd86223dcd78b8b1ab417e8dea5999", "pid": "A014145274", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A014145274", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014145274", "source": "RERO"}], "preferred_name": "Boireau-Tartarat, Suzanne", "authorized_access_point": "Boireau-Tartarat, Suzanne"} 1 -2023-07-08 08:24:58.810411 2023-07-08 08:24:58.810423 51f13e7a-0f55-426a-b3d3-abeebe6dfbf5 {"md5": "3329e6db63490c6942bca7ada7fc5e3c", "pid": "A014193528", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A014193528", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014193528", "source": "RERO"}], "preferred_name": "Sciboz, Jacqueline", "authorized_access_point": "Sciboz, Jacqueline"} 1 -2023-07-08 08:24:58.937581 2023-07-08 08:24:58.937595 fb83b24f-187f-435f-8a83-a77e71085696 {"md5": "63f40614b112cabf0632aaa746e0643a", "pid": "A014201130", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A014201130", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014201130", "source": "RERO"}], "preferred_name": "Mavrommatis, Dimitri", "authorized_access_point": "Mavrommatis, Dimitri"} 1 -2023-07-08 08:24:59.068483 2023-07-08 08:24:59.068492 2cb346f5-8e09-41cc-9202-ba35c5d24ff4 {"md5": "8e92aa7f7fee09a4da13a8d2ebfddf6d", "pid": "A014202551", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A014202551", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014202551", "source": "RERO"}], "preferred_name": "Museo Palazzo Venezia (Roma)", "authorized_access_point": "Museo Palazzo Venezia (Roma)"} 1 -2023-07-08 08:25:02.157277 2023-07-08 08:25:02.157283 7fd3afdf-e4de-457c-8188-b94dcdba28ab {"md5": "788b33bd75405c94d2d4402d0c46f66f", "pid": "A016459229", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A016459229", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016459229", "source": "RERO"}], "preferred_name": "Darné, Txell", "authorized_access_point": "Darné, Txell"} 1 -2023-07-08 08:24:59.185444 2023-07-08 08:24:59.185458 7f7d50be-369d-4e84-a319-aa2f79ff1c8d {"md5": "64acbda5dcc148e8ff7a67c0b2bde046", "pid": "A014219231", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A014219231", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014219231", "source": "RERO"}], "variant_name": ["Australia. National Archives"], "preferred_name": "National Archives of Australia", "variant_access_point": ["Australia. National Archives"], "authorized_access_point": "National Archives of Australia", "biographical_information": ["Jusqu'en 1997 : Australian Archives", "Dès 1998 : National Archives of Australia"]} 1 -2023-07-08 08:24:59.30572 2023-07-08 08:24:59.305734 7852f380-730d-45ac-94b6-7d0faa517237 {"md5": "9bfe5f0e897bf448c2b65f2cd9dba82b", "pid": "A014222396", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A014222396", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014222396", "source": "RERO"}], "variant_name": ["Neguine, Oleg"], "preferred_name": "Negin, Oleg", "variant_access_point": ["Neguine, Oleg"], "parallel_access_point": ["Негин, О"], "authorized_access_point": "Negin, Oleg"} 1 -2023-07-08 08:24:59.410898 2023-07-08 08:24:59.410911 0ba6a371-4835-4a57-9723-d95c0e72821e {"md5": "b94242c59d5a1221c05b3087bc14f9ab", "pid": "A014224284", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A014224284", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014224284", "source": "RERO"}], "preferred_name": "Karp, Carol R", "authorized_access_point": "Karp, Carol R"} 1 -2023-07-08 08:24:59.536506 2023-07-08 08:24:59.53652 bb577618-c7ea-4e4a-a11c-b705e75d2728 {"md5": "c2c108df84f7f30d75a5eb7bc1d5a234", "pid": "A014242112", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A014242112", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014242112", "source": "RERO"}], "preferred_name": "Rasmussen, Kenneth A", "authorized_access_point": "Rasmussen, Kenneth A"} 1 -2023-07-08 08:24:59.669463 2023-07-08 08:24:59.669476 8bbb18db-0af2-44d4-b5bd-6b49d4c3083a {"md5": "01b7aead3affa9156d5b861d16bb2f17", "pid": "A014246692", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A014246692", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014246692", "source": "RERO"}], "date_of_birth": "1957", "preferred_name": "Jolliet, Philippe,", "authorized_access_point": "Jolliet, Philippe, 1957-", "biographical_information": ["Dr sciences Univ. Fribourg Suisse 1987, chimiste"]} 1 -2023-07-08 08:24:59.783626 2023-07-08 08:24:59.783638 63d84bcb-5548-406c-9401-5a52c3421f84 {"md5": "bbe0192d7e9d19e54b6611b085c3b6a4", "pid": "A014251795", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A014251795", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014251795", "source": "RERO"}], "preferred_name": "Beerli, Debora", "authorized_access_point": "Beerli, Debora"} 1 -2023-07-08 08:24:59.916829 2023-07-08 08:24:59.91684 724e7525-b897-4dbd-850e-cce2dcb1c499 {"md5": "4c022b682415e9482a2dea159fcaa15a", "pid": "A014255110", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A014255110", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014255110", "source": "RERO"}], "preferred_name": "Ewart, Ewa", "authorized_access_point": "Ewart, Ewa"} 1 -2023-07-08 08:25:00.019729 2023-07-08 08:25:00.019734 32250090-9c74-4c58-9753-11a27b57f8f6 {"md5": "2b7936fb42e35bf8c1807efd928e0e2a", "pid": "A014258973", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A014258973", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014258973", "source": "RERO"}], "preferred_name": "Joye, Isabelle", "authorized_access_point": "Joye, Isabelle"} 1 -2023-07-08 08:25:00.144992 2023-07-08 08:25:00.145009 2e56e08f-6ea7-4cea-9113-e0df58110c0d {"md5": "814b4633d5b186df87cb3da04a76becb", "pid": "A014273717", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A014273717", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014273717", "source": "RERO"}], "preferred_name": "Kummer, Jodok", "authorized_access_point": "Kummer, Jodok"} 1 -2023-07-08 08:25:00.267335 2023-07-08 08:25:00.267345 86917bae-9f3f-47ae-ae12-4add18dd5dda {"md5": "6311730b9e2eaa4f63d54afd7fc767fe", "pid": "A014276779", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A014276779", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014276779", "source": "RERO"}], "preferred_name": "Cugliandro, Sabrina", "authorized_access_point": "Cugliandro, Sabrina"} 1 -2023-07-08 08:25:00.384504 2023-07-08 08:25:00.384518 7ee342b2-44d3-427f-b529-df63705dfd86 {"md5": "319d9a56558795f75725f5cd4a4e6e0a", "pid": "A014313002", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A014313002", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014313002", "source": "RERO"}], "preferred_name": "Jonneret, Jean-Claude", "authorized_access_point": "Jonneret, Jean-Claude"} 1 -2023-07-08 08:25:00.509288 2023-07-08 08:25:00.509299 0a4d91b3-5217-4541-b527-968243862d07 {"md5": "1dc6e1c9cdebce83065f0964b9b7c2e4", "pid": "A014336689", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A014336689", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014336689", "source": "RERO"}], "preferred_name": "Stutz, Roman", "authorized_access_point": "Stutz, Roman"} 1 -2023-07-08 08:25:00.622637 2023-07-08 08:25:00.622644 483aa2cc-d8cb-47aa-a4b6-738f847bfc74 {"md5": "85e47d7e63c1307507e69e82fd6befe5", "pid": "A014337377", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A014337377", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014337377", "source": "RERO"}], "preferred_name": "Clavien, Raymond", "authorized_access_point": "Clavien, Raymond"} 1 -2023-07-08 08:25:02.249007 2023-07-08 08:25:02.249022 6daf8d5d-4261-46e7-9267-400d2a53f124 {"md5": "5a99c48f49a221ac8433b32f58e85306", "pid": "A016459550", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A016459550", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016459550", "source": "RERO"}], "preferred_name": "Sledge, Ginger", "authorized_access_point": "Sledge, Ginger"} 1 -2023-07-08 08:25:00.736529 2023-07-08 08:25:00.736537 1a47b4da-5992-419e-8c92-55b6ff461ac4 {"md5": "90201152d16e95f9df70d3c5ab132208", "pid": "A014352979", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A014352979", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014352979", "source": "RERO"}], "variant_name": ["Service national de la catéchèse et du catéchuménat (France)", "SNCC (Service national de la catéchèse et du catéchuménat)", "Service national du catéchuménat (France)"], "preferred_name": "Ecclesia catholica. Conférence épiscopale française. Service national de la catéchèse et du catéchuménat", "variant_access_point": ["Service national de la catéchèse et du catéchuménat (France)", "SNCC (Service national de la catéchèse et du catéchuménat)", "Service national du catéchuménat (France)"], "authorized_access_point": "Ecclesia catholica. Conférence épiscopale française. Service national de la catéchèse et du catéchuménat", "biographical_information": ["Avant 2007: Centre national de l'enseignement religieux (France)"]} 1 -2023-07-08 08:25:00.889798 2023-07-08 08:25:00.889808 9597e441-bd54-426e-b1ed-92b23079201b {"md5": "1befe97a4caff1e9163f3793e7110535", "pid": "A014357923", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A014357923", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014357923", "source": "RERO"}], "preferred_name": "Nielsen, Søren B", "authorized_access_point": "Nielsen, Søren B"} 1 -2023-07-08 08:25:01.023677 2023-07-08 08:25:01.023688 a2b65939-53d5-4766-894a-7d747e8d998a {"md5": "4dee51131d6ce55375c532f27d1a01a1", "pid": "A016238365", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A016238365", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016238365", "source": "RERO"}], "preferred_name": "Božić, Ivan", "authorized_access_point": "Božić, Ivan"} 1 -2023-07-08 08:25:01.140164 2023-07-08 08:25:01.140173 afdf706f-432e-4914-a876-75caead7a433 {"md5": "26a3559d2ca2ab64083d119dee352c71", "pid": "A016298786", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A016298786", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016298786", "source": "RERO"}], "preferred_name": "Comparative Labour Law Seminar 2008 :", "authorized_access_point": "Comparative Labour Law Seminar (9 : 2008 : Tokyo)"} 1 -2023-07-08 08:25:01.270281 2023-07-08 08:25:01.270292 06b2e992-8ac8-4a00-bdca-c9eca0c1f2f3 {"md5": "017425b10b66d0ff71993b52d172f799", "pid": "A016303136", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A016303136", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016303136", "source": "RERO"}], "preferred_name": "Cleasson, Urban", "authorized_access_point": "Cleasson, Urban"} 1 -2023-07-08 08:25:01.389196 2023-07-08 08:25:01.389212 6784e7be-de9e-4e78-84a0-f27487af60d3 {"md5": "33107e674a7f24793a75b5bbb3cf1b0b", "pid": "A016318307", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A016318307", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016318307", "source": "RERO"}], "preferred_name": "Martinez, René", "authorized_access_point": "Martinez, René"} 1 -2023-07-08 08:25:01.503454 2023-07-08 08:25:01.503466 7ec18cea-ce26-4f59-a64b-041eaad83f0d {"md5": "b21367982437a590d830f78d36fe8123", "pid": "A016389042", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "traducteur", "identifier": "http://data.rero.ch/02-A016389042", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016389042", "source": "RERO"}], "variant_name": ["Grimaldi, Joseph, traducteur"], "preferred_name": "Grenier, Jean, traducteur", "variant_access_point": ["Grimaldi, Joseph, traducteur"], "authorized_access_point": "Grenier, Jean, traducteur", "biographical_information": ["Joseph Grimaldi est le pseudonyme utilisé par Jean Grenier (18??-19??) pour la traduction du poème \\"Le chant du voleur d'amour / Bilhana\\". Traduit du sanscrit en français (en 1923 ou 1924), il a été publié dans la revue des \\"Cahiers du Sud\\" (en 1945)"]} 1 -2023-07-08 08:25:01.614148 2023-07-08 08:25:01.614159 7c295791-54cf-457c-ac66-37d0e60fd62c {"md5": "01bfcf0ad6a843191695b129152be792", "pid": "A016404123", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A016404123", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016404123", "source": "RERO"}], "preferred_name": "Réseau académique de droit pénal européen. Colloque international (2007 :", "authorized_access_point": "Réseau académique de droit pénal européen. Colloque international (2007 : Luxembourg)"} 1 -2023-07-08 08:25:01.714826 2023-07-08 08:25:01.714842 d2e0360e-57ec-4e6f-9fca-12b65bbec570 {"md5": "379ea48fb2ae65da0a833448449d56b9", "pid": "A016411096", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A016411096", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016411096", "source": "RERO"}], "preferred_name": "Chojnacka, Halina", "authorized_access_point": "Chojnacka, Halina"} 1 -2023-07-08 08:25:01.818422 2023-07-08 08:25:01.818435 c1085f50-d36a-47e4-9225-dfd17675d7a1 {"md5": "d5362be983bd6859eef278d168fcd098", "pid": "A016415566", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A016415566", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016415566", "source": "RERO"}], "preferred_name": "Melin, Pierre", "authorized_access_point": "Melin, Pierre"} 1 -2023-07-08 08:25:01.934512 2023-07-08 08:25:01.934524 c82a93ef-93bd-43d2-b88d-11e2d069d936 {"md5": "6d8415704ccb8fd058932f97f8577461", "pid": "A016426300", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A016426300", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016426300", "source": "RERO"}], "preferred_name": "Berthon, Mélanie", "authorized_access_point": "Berthon, Mélanie"} 1 -2023-07-08 08:25:02.036744 2023-07-08 08:25:02.036752 ef0aff8f-350e-4c36-82ed-9286a1ddf688 {"md5": "05a73725b1d9226c0b388396d170f97b", "pid": "A016444932", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A016444932", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016444932", "source": "RERO"}], "variant_name": ["De Oliveira, Haydée Torres", "Torres de Oliveira, Haydée"], "preferred_name": "Oliveira, Haydée Torres de", "variant_access_point": ["De Oliveira, Haydée Torres", "Torres de Oliveira, Haydée"], "authorized_access_point": "Oliveira, Haydée Torres de"} 1 -2023-07-08 08:25:02.350753 2023-07-08 08:25:02.350765 694dc277-8307-4b45-b116-f52579eda343 {"md5": "cdf168a2bb1fd52e0d5fd176ef90b704", "pid": "A016477477", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A016477477", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016477477", "source": "RERO"}], "preferred_name": "Lamaud, P", "authorized_access_point": "Lamaud, P"} 1 -2023-07-08 08:25:02.458596 2023-07-08 08:25:02.45861 f8d8244b-cbcd-4bbb-97af-12ca73d1cb94 {"md5": "12a22783c5dddf1e8ee63284385830a8", "pid": "A016482621", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A016482621", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016482621", "source": "RERO"}], "date_of_birth": "1746", "date_of_death": "1790", "preferred_name": "Salomon, Ernst Dietrich,", "authorized_access_point": "Salomon, Ernst Dietrich, 1746-1790"} 1 -2023-07-08 08:25:02.564002 2023-07-08 08:25:02.564017 f96dd35d-cc83-42df-93c6-6bef0a3a0e24 {"md5": "05ae2c47193f2a8a12cdf1b4f8679bc0", "pid": "A016484771", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A016484771", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016484771", "source": "RERO"}], "date_of_birth": "1965", "preferred_name": "Gibson, Kevin,", "authorized_access_point": "Gibson, Kevin, 1965-"} 1 -2023-07-08 08:25:02.669868 2023-07-08 08:25:02.669881 0e3880fb-c732-4298-9617-fcd633882af9 {"md5": "e1c42408a324ca0a35b3add4b7541849", "pid": "A016506102", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A016506102", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016506102", "source": "RERO"}], "preferred_name": "Renner, Heinrich", "authorized_access_point": "Renner, Heinrich"} 1 -2023-07-08 08:25:02.796295 2023-07-08 08:25:02.796307 344b8dd5-7c17-4e05-9eca-0c91cc0189d9 {"md5": "7d8b4db571933e07170304438409404f", "pid": "A016511435", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A016511435", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016511435", "source": "RERO"}], "preferred_name": "Dreuilh, J. J", "authorized_access_point": "Dreuilh, J. J"} 1 -2023-07-08 08:25:02.904497 2023-07-08 08:25:02.904507 68d83e6c-9af0-4697-b07e-80cbc73d3cf0 {"md5": "92cae0e6a706edf6943c540edd7e0a6f", "pid": "A016513981", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A016513981", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016513981", "source": "RERO"}], "preferred_name": "Weber, Renaud", "authorized_access_point": "Weber, Renaud"} 1 -2023-07-08 08:25:03.000702 2023-07-08 08:25:03.00071 33c69a02-68ff-46b8-bba3-67667c21c655 {"md5": "cb337809dd3caa5cab3a43c81511036f", "pid": "A016514568", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A016514568", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016514568", "source": "RERO"}], "preferred_name": "Derrick, G.H", "authorized_access_point": "Derrick, G.H"} 1 -2023-07-08 08:25:03.122018 2023-07-08 08:25:03.122029 3660791d-6a52-4f1b-8d49-14a87051bb01 {"md5": "e45da4c89548e5fa9d66cc36684f0e44", "pid": "A016521212", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A016521212", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016521212", "source": "RERO"}], "preferred_name": "Byun, Ok-kyung", "authorized_access_point": "Byun, Ok-kyung"} 1 -2023-07-08 08:25:03.235032 2023-07-08 08:25:03.235041 aebebdd2-427f-41ef-be16-0493350816a8 {"md5": "9982db03300747232e22b7fba5751519", "pid": "A016528677", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A016528677", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016528677", "source": "RERO"}], "preferred_name": "Université de Paris 1. Département d'ergonomie et d'écologie humaine. Séminaire annuel (2004 :", "authorized_access_point": "Université de Paris 1. Département d'ergonomie et d'écologie humaine. Séminaire annuel (2004 : Paris)"} 1 -2023-07-08 08:25:03.336109 2023-07-08 08:25:03.336116 9d90c991-e55d-45fe-9a56-e285c9678682 {"md5": "d6d1ff1e9e41bbdccf36e2bddcac7080", "pid": "A016535988", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A016535988", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016535988", "source": "RERO"}], "preferred_name": "Prohens Oliver, Tomeu", "authorized_access_point": "Prohens Oliver, Tomeu"} 1 -2023-07-08 08:25:03.432915 2023-07-08 08:25:03.432925 2d86cd87-2bd3-4176-a915-bde89c738bd3 {"md5": "96f3d737137ddab779af58dfb09f7644", "pid": "A016548812", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A016548812", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016548812", "source": "RERO"}], "date_of_birth": "1944", "preferred_name": "Bödiker, Tonio,", "authorized_access_point": "Bödiker, Tonio, 1944-"} 1 -2023-07-08 08:25:03.535732 2023-07-08 08:25:03.535741 af52cdb8-519e-4f81-8395-a23b7ffc81af {"md5": "047f66fa0802f5b3ab4677cedbd26e3c", "pid": "A016550065", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A016550065", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016550065", "source": "RERO"}], "preferred_name": "Universidade de Coimbra. Centro do Estudos de Direito do Ordenamento, do Urbanismo e do Ambiente", "authorized_access_point": "Universidade de Coimbra. Centro do Estudos de Direito do Ordenamento, do Urbanismo e do Ambiente"} 1 -2023-07-08 08:25:03.655614 2023-07-08 08:25:03.655627 27b52c27-6df3-4443-bf09-868118585731 {"md5": "2cc2a84a018a463a836ebdc238120e94", "pid": "A016568873", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A016568873", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016568873", "source": "RERO"}], "preferred_name": "Stony Brook Human Evolution Symposium and Workhop 2006 :", "authorized_access_point": "Stony Brook Human Evolution Symposium and Workhop (3 : 2006 : Stony Brook, NY)"} 1 -2023-07-08 08:25:03.77259 2023-07-08 08:25:03.772601 768f379b-c493-4adf-96bc-c9008820798a {"md5": "99631b4a17642d58b5fc2cfac36531b6", "pid": "A016604176", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A016604176", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016604176", "source": "RERO"}], "preferred_name": "Simulation. International Symposium and Course (1975 :", "authorized_access_point": "Simulation. International Symposium and Course (1975 : Zürich)"} 1 -2023-07-08 08:25:03.872149 2023-07-08 08:25:03.872161 0d048ce7-08a1-478c-89e2-6e7417f94353 {"md5": "be1b3072d4316fd83efe1f6ede723153", "pid": "A016614032", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "juriste", "identifier": "http://data.rero.ch/02-A016614032", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016614032", "source": "RERO"}], "preferred_name": "Piel, Jean, juriste", "authorized_access_point": "Piel, Jean, juriste"} 1 -2023-07-08 08:25:03.983097 2023-07-08 08:25:03.983108 31bd3b4a-e727-416d-8061-bd928aa9db5e {"md5": "c9defde8dfed3b080733fd8c31281c5f", "pid": "A016637978", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A016637978", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016637978", "source": "RERO"}], "preferred_name": "Gletting, John", "authorized_access_point": "Gletting, John"} 1 -2023-07-08 08:25:04.099308 2023-07-08 08:25:04.09932 dfcf80d2-cec9-4af9-8a2f-ef6ed1ce7066 {"md5": "c10f36ae948d33bfdcffa210dcd12ebe", "pid": "A016638657", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A016638657", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016638657", "source": "RERO"}], "preferred_name": "Trieux, Florent", "authorized_access_point": "Trieux, Florent"} 1 -2023-07-08 08:25:04.217658 2023-07-08 08:25:04.217665 a7508340-7c9c-42b1-a7ae-ba2c5d9cc066 {"md5": "8652066c2e2201db2f46ec6f54399fba", "pid": "A016638677", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A016638677", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016638677", "source": "RERO"}], "preferred_name": "Kreuzer, A", "authorized_access_point": "Kreuzer, A"} 1 -2023-07-08 08:25:04.349578 2023-07-08 08:25:04.349593 1e03a49e-5ed0-4302-bb10-2d6bcdfcf926 {"md5": "e05e5af6f34deea83c33c8c70053888a", "pid": "A016651275", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A016651275", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016651275", "source": "RERO"}], "preferred_name": "Chavannes, André", "authorized_access_point": "Chavannes, André"} 1 -2023-07-08 08:25:04.452993 2023-07-08 08:25:04.453006 b66dc130-7ac6-43af-86a9-ab297f37397e {"md5": "74f7ab3a585fb64c07f4277c8f7d9b0c", "pid": "A016655749", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A016655749", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016655749", "source": "RERO"}], "preferred_name": "Duerrenberger, J", "authorized_access_point": "Duerrenberger, J"} 1 -2023-07-08 08:25:04.566874 2023-07-08 08:25:04.56689 f2c9f1df-7503-4142-9df3-74b907393b66 {"md5": "f97f6b90fc0a5f5fb3ae35aef0b47d9e", "pid": "A016666286", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A016666286", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016666286", "source": "RERO"}], "preferred_name": "Theytaz, Patrice", "authorized_access_point": "Theytaz, Patrice"} 1 -2023-07-08 08:25:04.684504 2023-07-08 08:25:04.684517 1447cbb0-eda8-4d3d-9ede-7dee59c1ed63 {"md5": "abdd1a479132819c9c05c11656ce1c1a", "pid": "A016675995", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A016675995", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016675995", "source": "RERO"}], "preferred_name": "Universidad Miguel Hernández (San Juan de Alicante). Facultad de Medicina", "authorized_access_point": "Universidad Miguel Hernández (San Juan de Alicante). Facultad de Medicina"} 1 -2023-07-08 08:25:04.785101 2023-07-08 08:25:04.785113 18dbc96f-3851-49ec-a724-b5863c564540 {"md5": "8f08de886b5009861b02a093f930e0d9", "pid": "A016678629", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A016678629", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016678629", "source": "RERO"}], "variant_name": ["Hjarl Petersen, Jane"], "preferred_name": "Petersen, Jane Hjarl", "variant_access_point": ["Hjarl Petersen, Jane"], "authorized_access_point": "Petersen, Jane Hjarl", "biographical_information": ["Archéologue danoise"]} 1 -2023-07-08 08:25:04.912189 2023-07-08 08:25:04.912203 4e6e57c5-97a1-4cc9-9a3e-31ac65865bc5 {"md5": "e16338d934737b8e9a9396d2c5d11912", "pid": "A016688565", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A016688565", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016688565", "source": "RERO"}], "preferred_name": "Truong, Doan-Nhien", "authorized_access_point": "Truong, Doan-Nhien"} 1 -2023-07-08 08:25:05.017237 2023-07-08 08:25:05.017245 910b1369-e96b-43ad-926e-841effdf765b {"md5": "c7f679dfa43bc02e3bc8c2d5866cb003", "pid": "A016697578", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A016697578", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016697578", "source": "RERO"}], "preferred_name": "Société française pour le droit international. Colloque 2008 :", "authorized_access_point": "Société française pour le droit international. Colloque (42 : 2008 : Bruxelles)"} 1 -2023-07-08 08:25:05.139809 2023-07-08 08:25:05.13982 025f6d40-5081-45a1-8377-619acec7a450 {"md5": "cc34f8af7f953f820d507ac4be696421", "pid": "A016697664", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A016697664", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016697664", "source": "RERO"}], "preferred_name": "Australian Institute of Archaeology", "authorized_access_point": "Australian Institute of Archaeology"} 1 -2023-07-08 08:25:05.269256 2023-07-08 08:25:05.26927 0de61f8b-ee58-4db8-9960-3c573b3e331d {"md5": "c45178398676687bc17498eef947fdc4", "pid": "A016744040", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A016744040", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016744040", "source": "RERO"}], "variant_name": ["AEEF (Association europeenne pour les études francophones)"], "preferred_name": "Association europeenne pour les études francophones", "variant_access_point": ["AEEF (Association europeenne pour les études francophones)"], "authorized_access_point": "Association europeenne pour les études francophones"} 1 -2023-07-08 08:25:05.385568 2023-07-08 08:25:05.385574 02492588-9896-4772-8cf6-93d95cffe8ca {"md5": "aba494acaeaf71ad31bbe7f3abb0d1f5", "pid": "A016755736", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A016755736", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016755736", "source": "RERO"}], "preferred_name": "Hoadley, John", "authorized_access_point": "Hoadley, John"} 1 -2023-07-08 08:25:05.490882 2023-07-08 08:25:05.490893 d21a61a8-377f-40de-bca0-768217491bc1 {"md5": "1a4ce9bec665b8a52a79fde99ee3bcc8", "pid": "A016768352", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "musicien", "identifier": "http://data.rero.ch/02-A016768352", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016768352", "source": "RERO"}], "preferred_name": "Patry, André J., musicien", "authorized_access_point": "Patry, André J., musicien"} 1 -2023-07-08 08:25:05.602306 2023-07-08 08:25:05.60232 07d6d250-14a3-41d7-ac0b-a12330abc4e1 {"md5": "1bc9677fe59197a886d0fd4cf13403ee", "pid": "A016787995", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A016787995", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016787995", "source": "RERO"}], "date_of_birth": "1953", "preferred_name": "Nykänen, Harri,", "authorized_access_point": "Nykänen, Harri, 1953-"} 1 -2023-07-08 08:25:05.706438 2023-07-08 08:25:05.706451 ef4a7dba-bb71-4254-a62a-14876d8507d3 {"md5": "38746432f1e0f53644b5f3024a151623", "pid": "A016799486", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A016799486", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016799486", "source": "RERO"}], "preferred_name": "Sedley, Liz", "authorized_access_point": "Sedley, Liz"} 1 -2023-07-08 08:25:05.806283 2023-07-08 08:25:05.806296 0dd0cafe-802f-4f98-81f6-29f5d61e3c6c {"md5": "6f06c3f0186422e184f78da5ad35cbe8", "pid": "A016809743", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A016809743", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016809743", "source": "RERO"}], "preferred_name": "Università di Padova. Dipartimento di archeologia", "authorized_access_point": "Università di Padova. Dipartimento di archeologia"} 1 -2023-07-08 08:25:05.925055 2023-07-08 08:25:05.92506 49a0f381-e7bc-4b46-8925-86e853490372 {"md5": "8972592e76accd814598daa8cd27ed8f", "pid": "A016813599", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A016813599", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016813599", "source": "RERO"}], "preferred_name": "Thum, Oliver", "authorized_access_point": "Thum, Oliver"} 1 -2023-07-08 08:25:06.036323 2023-07-08 08:25:06.036333 fc1dc2b9-05c0-4523-b031-70c8e88280ec {"md5": "7b612214c4f38b10a83a98d8094ee2cf", "pid": "A016814681", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A016814681", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016814681", "source": "RERO"}], "preferred_name": "Zuazua, R", "authorized_access_point": "Zuazua, R"} 1 -2023-07-08 08:25:06.139015 2023-07-08 08:25:06.139026 8da60836-2cec-43a5-9b09-f7979c6c2bda {"md5": "ae277ad0e3349bdab8136507715d7b8f", "pid": "A016816789", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A016816789", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016816789", "source": "RERO"}], "preferred_name": "Lekhina, Ekaterina", "authorized_access_point": "Lekhina, Ekaterina"} 1 -2023-07-08 08:25:06.252255 2023-07-08 08:25:06.252269 827f0f72-e6d8-42f7-846d-412d78b491a6 {"md5": "873259591a2b1a5882980a82d498f53d", "pid": "A016818796", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A016818796", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016818796", "source": "RERO"}], "preferred_name": "Lacour, Henri", "authorized_access_point": "Lacour, Henri"} 1 -2023-07-08 08:25:06.347422 2023-07-08 08:25:06.347431 f7692f17-7e1d-4654-b77b-780887169a33 {"md5": "f0c90475a6c75b3a2c5bf055a6df7365", "pid": "A016841342", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A016841342", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016841342", "source": "RERO"}], "preferred_name": "Fanguin, Daniel", "authorized_access_point": "Fanguin, Daniel"} 1 -2023-07-08 08:25:06.455682 2023-07-08 08:25:06.455695 833f7979-63e9-4f1c-93ba-2af6557fe3db {"md5": "18df1180ccce03caa3bac05a7480ba61", "pid": "A016871460", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A016871460", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016871460", "source": "RERO"}], "variant_name": ["MacDonnell, Thomas Michael", "Mc Donnell, Thomas Michael", "Mac Donnell, Thomas Michael"], "preferred_name": "McDonnell, Thomas Michael", "variant_access_point": ["MacDonnell, Thomas Michael", "Mc Donnell, Thomas Michael", "Mac Donnell, Thomas Michael"], "authorized_access_point": "McDonnell, Thomas Michael"} 1 -2023-07-08 08:25:06.568287 2023-07-08 08:25:06.568299 d50dab18-046b-4b99-ac93-b05d638fe779 {"md5": "13f9b5eddf65241fb04e1992396b652e", "pid": "A016877431", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A016877431", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016877431", "source": "RERO"}], "preferred_name": "International Conference on Electron Spectroscopy (1974 :", "authorized_access_point": "International Conference on Electron Spectroscopy (1974 : Namur)"} 1 -2023-07-08 08:25:06.686598 2023-07-08 08:25:06.686611 9dc1cfaa-cc2e-4b7a-b27d-bd47a1504310 {"md5": "aa39a6daef895d34be1b2aa25b78ad5c", "pid": "A016969116", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A016969116", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016969116", "source": "RERO"}], "variant_name": ["Institut für Politikwissenschaft (Sankt Gallen : 1995-)"], "preferred_name": "Universität (Sankt Gallen). Institut für Politikwissenschaft", "variant_access_point": ["Institut für Politikwissenschaft (Sankt Gallen : 1995-)"], "authorized_access_point": "Universität (Sankt Gallen). Institut für Politikwissenschaft", "biographical_information": ["Dès le 1er octobre 1995: Universität St. Gallen. Institut für Politikwissenschaft", "De 1989 à septembre 1995 : Hochschule Sankt Gallen für Wirtschafts-, Rechts- und Sozialwissenschaften. Institut für Politikwissenschaft"]} 1 -2023-07-08 08:25:06.782913 2023-07-08 08:25:06.782924 f89f4f60-a2f4-43b3-ad89-3ab07fa0e8ac {"md5": "e9a312f2a7faaf54c151e52deb52eedc", "pid": "A016972683", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A016972683", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016972683", "source": "RERO"}], "variant_name": ["Bischoffshausen, Albrecht Schmidt-", "Schmidt-Bischoffshausen, Albrecht"], "preferred_name": "Bischoffshausen, Albrecht", "variant_access_point": ["Bischoffshausen, Albrecht Schmidt-", "Schmidt-Bischoffshausen, Albrecht"], "authorized_access_point": "Bischoffshausen, Albrecht"} 1 -2023-07-08 08:25:06.886331 2023-07-08 08:25:06.88634 aa00574f-0449-4e0a-b8b5-d646bef81a7e {"md5": "9af01e1728ccd9c601a8c054bac25c5f", "pid": "A017020235", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A017020235", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017020235", "source": "RERO"}], "preferred_name": "Pedriali, Alessandra", "authorized_access_point": "Pedriali, Alessandra"} 1 -2023-07-08 08:25:07.005111 2023-07-08 08:25:07.005126 4a6b1f06-e7c2-4425-8bd3-d01ac4407566 {"md5": "8a05c3c9a2528ff896a7f9e47ea2731a", "pid": "A017025989", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A017025989", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017025989", "source": "RERO"}], "preferred_name": "Lieber, C", "authorized_access_point": "Lieber, C"} 1 -2023-07-08 08:25:07.120901 2023-07-08 08:25:07.120913 5266c6a7-d6b9-46d5-99dd-1af69f63b3b0 {"md5": "081f08d7dcd0c6a6df1940734f7f909a", "pid": "A017057870", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A017057870", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017057870", "source": "RERO"}], "preferred_name": "Krasny, A", "authorized_access_point": "Krasny, A"} 1 -2023-07-08 08:25:07.233404 2023-07-08 08:25:07.233413 fef3531d-6aca-43a0-9d12-0b4c5df99f22 {"md5": "f61ba39b3ef405144c7ff60a2956c054", "pid": "A017097186", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A017097186", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017097186", "source": "RERO"}], "preferred_name": "Eherechtskommission des deutschen Rates für internationales Privatrecht", "authorized_access_point": "Eherechtskommission des deutschen Rates für internationales Privatrecht"} 1 -2023-07-08 08:25:07.349586 2023-07-08 08:25:07.3496 f91f26d9-9a2f-4e9c-a4c6-d11ac7d1806f {"md5": "acb8cd5d641f04ce4bf6eff0ba0f9c49", "pid": "A017122036", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A017122036", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017122036", "source": "RERO"}], "preferred_name": "Ridruejo, Jose Antonio Paster", "authorized_access_point": "Ridruejo, Jose Antonio Paster"} 1 -2023-07-08 08:25:07.46738 2023-07-08 08:25:07.467388 8020544b-9491-4f2c-9591-e60c39d63f63 {"md5": "9bcdafcb76e48604734ece33a03a2d0e", "pid": "A017130152", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A017130152", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017130152", "source": "RERO"}], "preferred_name": "Wündisch, Sebastian", "authorized_access_point": "Wündisch, Sebastian"} 1 -2023-07-08 08:25:07.570156 2023-07-08 08:25:07.570168 522973f8-0509-4a58-86e6-6526525c7e12 {"md5": "869670074380cdaee6c8ce640344aa33", "pid": "A017132207", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A017132207", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017132207", "source": "RERO"}], "preferred_name": "Schildmann, Dirk", "authorized_access_point": "Schildmann, Dirk"} 1 -2023-07-08 08:25:07.68009 2023-07-08 08:25:07.680103 56b992af-73df-4737-adbc-2e74eccd3cec {"md5": "4ba8174a976bb417a74a873103a73208", "pid": "A017139224", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A017139224", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017139224", "source": "RERO"}], "preferred_name": "Göben, Jens", "authorized_access_point": "Göben, Jens"} 1 -2023-07-08 08:25:07.797956 2023-07-08 08:25:07.797967 2b5479b2-ac4f-40d3-be83-a30ff80d536f {"md5": "f6b22dc2df89d7eba821d62ed1cc502f", "pid": "A017158101", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A017158101", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017158101", "source": "RERO"}], "preferred_name": "Naciri, Khaled", "authorized_access_point": "Naciri, Khaled"} 1 -2023-07-08 08:25:07.916606 2023-07-08 08:25:07.916617 965df9dd-0028-4dde-aeea-bfb9e191df82 {"md5": "1425523e6f4689b515923292c3732309", "pid": "A017173033", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A017173033", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017173033", "source": "RERO"}], "preferred_name": "Hungerbühler, Ivo", "authorized_access_point": "Hungerbühler, Ivo"} 1 -2023-07-08 08:25:08.021234 2023-07-08 08:25:08.02125 30027dbf-5239-45a8-8c0c-8a56432fd8fa {"md5": "53a9d70cdefc4af7d5d27359e1825ec2", "pid": "A017178153", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A017178153", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017178153", "source": "RERO"}], "preferred_name": "Buff, Christoph", "authorized_access_point": "Buff, Christoph"} 1 -2023-07-08 08:25:08.134055 2023-07-08 08:25:08.134062 197646ce-72dc-4d80-8b6a-5f0739409b6d {"md5": "0b4978cb1edbc88fbb9b04454cae5381", "pid": "A017187491", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A017187491", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017187491", "source": "RERO"}], "preferred_name": "Kleinhenz, Barbara", "authorized_access_point": "Kleinhenz, Barbara"} 1 -2023-07-08 08:25:08.242084 2023-07-08 08:25:08.242097 4964a3b7-43e3-47df-b38c-00da5dba78f5 {"md5": "70cd7cbaa474c46f855679c77827bad1", "pid": "A017202523", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A017202523", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017202523", "source": "RERO"}], "preferred_name": "Baker Röben, Betsy", "authorized_access_point": "Baker Röben, Betsy"} 1 -2023-07-08 08:25:08.349818 2023-07-08 08:25:08.349829 98516772-3beb-4fa7-a457-8ee12b6515ae {"md5": "e3f7d755032f43814ef7e184a83758f0", "pid": "A017237082", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A017237082", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017237082", "source": "RERO"}], "preferred_name": "Jafferali, Rafaël", "authorized_access_point": "Jafferali, Rafaël"} 1 -2023-07-08 08:25:08.449639 2023-07-08 08:25:08.449653 10ece84c-4797-419b-b4af-bec2625a5b75 {"md5": "232ddcbce426ad529a4a80ac50806d08", "pid": "A017314321", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A017314321", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017314321", "source": "RERO"}], "preferred_name": "Le Charpentier, Etienne", "authorized_access_point": "Le Charpentier, Etienne"} 1 -2023-07-08 08:25:08.56316 2023-07-08 08:25:08.563174 f221fd34-50dc-4581-bae8-85458fed6d4d {"md5": "14ae5aae62e55e1cb2aae32cbb39197b", "pid": "A017326126", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A017326126", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017326126", "source": "RERO"}], "preferred_name": "Subba Rao, N.S", "authorized_access_point": "Subba Rao, N.S"} 1 -2023-07-08 08:25:08.669663 2023-07-08 08:25:08.669674 b7ffd439-6fc1-4d06-9801-47a861d93585 {"md5": "5946cb51f1eb740e50edecbb9af7d213", "pid": "A017377907", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A017377907", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017377907", "source": "RERO"}], "preferred_name": "Centre de recherche historique sur les sociétés et cultures de l'Ouest. Journée d'études (2005 :", "authorized_access_point": "Centre de recherche historique sur les sociétés et cultures de l'Ouest. Journée d'études (2005 : Rennes)"} 1 -2023-07-08 08:25:08.767558 2023-07-08 08:25:08.76757 7fe8b9a8-d4c0-4be1-8ca2-7532651ac3d7 {"md5": "5fb662dedf6b826b2d307a60156737cc", "pid": "A017383534", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A017383534", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017383534", "source": "RERO"}], "preferred_name": "Ming-Yuet, Kee", "authorized_access_point": "Ming-Yuet, Kee"} 1 -2023-07-08 08:25:08.884786 2023-07-08 08:25:08.8848 59ddd4e9-18e7-494d-af4b-67cba905b280 {"md5": "981590087416124efeb823cddd19bc20", "pid": "A017410230", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A017410230", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017410230", "source": "RERO"}], "preferred_name": "Meyer, Kuno", "authorized_access_point": "Meyer, Kuno"} 1 -2023-07-08 08:25:08.982738 2023-07-08 08:25:08.982747 5afa33a8-d8eb-488a-9a9f-4255ec43d21a {"md5": "44d29fc08f8777a0dfb58ea5f6a4feed", "pid": "A017429783", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A017429783", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017429783", "source": "RERO"}], "preferred_name": "Jolliet, Florence", "authorized_access_point": "Jolliet, Florence"} 1 -2023-07-08 08:25:09.10112 2023-07-08 08:25:09.101126 5f4c879c-5f98-44b0-a43e-36bdcaac540a {"md5": "73d02426854b46068ffeef8c67e04a4f", "pid": "A017435658", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A017435658", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017435658", "source": "RERO"}], "preferred_name": "Gabathuler, Chloé", "authorized_access_point": "Gabathuler, Chloé"} 1 -2023-07-08 08:25:09.211239 2023-07-08 08:25:09.211254 7dc6119c-6aed-4f71-ad4f-39f34d89d02d {"md5": "d20ad2d5758b4e2f3bfba961f1299ce5", "pid": "A017451803", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A017451803", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017451803", "source": "RERO"}], "preferred_name": "Masutti, Christophe", "authorized_access_point": "Masutti, Christophe"} 1 -2023-07-08 08:25:09.314754 2023-07-08 08:25:09.314769 9e42bbd4-2cb4-43e9-b938-05773fe2c14c {"md5": "d223ecedb6c641ccc400e5385d722a43", "pid": "A017458456", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A017458456", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017458456", "source": "RERO"}], "preferred_name": "Surraco, Oscar", "authorized_access_point": "Surraco, Oscar"} 1 -2023-07-08 08:25:09.421032 2023-07-08 08:25:09.421042 d5139c08-a3c1-49ab-be52-88e2b7fcd466 {"md5": "8cf8e1403710e78cd518ab6184ebe814", "pid": "A017468446", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A017468446", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017468446", "source": "RERO"}], "preferred_name": "Meyer, Susanna", "authorized_access_point": "Meyer, Susanna"} 1 -2023-07-08 08:25:09.534395 2023-07-08 08:25:09.534404 9f93264b-efa0-4c60-9cf6-9ad03ecb5de8 {"md5": "d4bd2beb59e631acbdb3bc79dc2f9d6b", "pid": "A017513975", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "scénariste", "identifier": "http://data.rero.ch/02-A017513975", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017513975", "source": "RERO"}], "preferred_name": "Martin, Rainer, scénariste", "authorized_access_point": "Martin, Rainer, scénariste"} 1 -2023-07-08 08:25:09.66804 2023-07-08 08:25:09.668048 f10a501c-76e5-4df8-9c31-9924a5b44fba {"md5": "6b20d7d2fef0026d6479ff8a7417e98d", "pid": "A017556608", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "(de Tyr sainte)", "identifier": "http://data.rero.ch/02-A017556608", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017556608", "source": "RERO"}], "variant_name": ["Christina (de Bolsena ; sainte)", "Christine (de Bolsena ; sainte)"], "preferred_name": "Christine (de Tyr ; sainte)", "variant_access_point": ["Christina (de Bolsena ; sainte)", "Christine (de Bolsena ; sainte)"], "authorized_access_point": "Christine (de Tyr ; sainte)", "biographical_information": ["Dates de vie: 3e s. (fin) - 4e s. (début)"]} 1 -2023-07-08 08:25:09.789466 2023-07-08 08:25:09.789482 964cd232-2b29-4030-80d4-e3b1e54aa7ce {"md5": "9d48fe010d44355964aac2c767fa8669", "pid": "A017565309", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A017565309", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017565309", "source": "RERO"}], "variant_name": ["Abraham, Ernst A.,"], "date_of_birth": "1906", "preferred_name": "Abraham, Ernst August,", "variant_access_point": ["Abraham, Ernst A., 1906-"], "authorized_access_point": "Abraham, Ernst August, 1906-", "biographical_information": ["Economiste"]} 1 -2023-07-08 08:25:09.909803 2023-07-08 08:25:09.909813 eff53b03-d104-4e50-9463-6efc7c78f682 {"md5": "a18b6bb1c6b57170fd42a5ba7f06ad1d", "pid": "A017572454", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A017572454", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017572454", "source": "RERO"}], "preferred_name": "Zhongguo ren quan fa zhan ji jin hui", "parallel_access_point": ["中国人权发展基金会"], "authorized_access_point": "Zhongguo ren quan fa zhan ji jin hui"} 1 -2023-07-08 08:25:10.012424 2023-07-08 08:25:10.012457 60858ee4-b17f-4d81-952f-8c7159e2a5a3 {"md5": "6ddf48396f7062860fb3b09447270dd8", "pid": "A017578807", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A017578807", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017578807", "source": "RERO"}], "preferred_name": "Kreibig, Sylvia Dagmar", "authorized_access_point": "Kreibig, Sylvia Dagmar"} 1 -2023-07-08 08:25:10.110791 2023-07-08 08:25:10.110804 347d59ae-339b-4617-9f75-adce7f62c539 {"md5": "8cb59a4abcdf0823dbe8ecd58658601d", "pid": "A017581317", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A017581317", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017581317", "source": "RERO"}], "preferred_name": "Conférence intercantonale de l'instruction publique de la Suisse romande et du Tessin. Délégation à la langue française de Suisse romande", "authorized_access_point": "Conférence intercantonale de l'instruction publique de la Suisse romande et du Tessin. Délégation à la langue française de Suisse romande"} 1 -2023-07-08 08:25:10.205901 2023-07-08 08:25:10.205915 f6f0bd72-b288-4659-9c92-655a31debd5c {"md5": "37147ced1ff278405c3f7448f54c8075", "pid": "A017594651", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A017594651", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017594651", "source": "RERO"}], "preferred_name": "Zufferey, Ernest", "authorized_access_point": "Zufferey, Ernest"} 1 -2023-07-08 08:25:10.322302 2023-07-08 08:25:10.322317 e1a0c60c-b9f6-4e99-a8d5-6188e24c0a88 {"md5": "13d2c16187c5ed566b1652f547163e23", "pid": "A017596294", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A017596294", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017596294", "source": "RERO"}], "preferred_name": "Vouillamoz, Aline", "authorized_access_point": "Vouillamoz, Aline"} 1 -2023-07-08 08:25:10.436029 2023-07-08 08:25:10.43604 c1e47669-e351-481e-8e30-8b6fbcd78c2c {"md5": "43a9bae29b1b3c3ca8844136d62c1aa1", "pid": "A017602316", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A017602316", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017602316", "source": "RERO"}], "preferred_name": "Plancke, Véronique van der", "authorized_access_point": "Plancke, Véronique van der"} 1 -2023-07-08 08:25:10.538808 2023-07-08 08:25:10.538823 cafc15e2-3797-4fe2-a843-10f674435512 {"md5": "50c84a56b90d81b26acfa69ab7fd800e", "pid": "A017611108", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A017611108", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017611108", "source": "RERO"}], "preferred_name": "Katholischer Filmkreis Zürich", "authorized_access_point": "Katholischer Filmkreis Zürich"} 1 -2023-07-08 08:25:10.641745 2023-07-08 08:25:10.641758 45b14420-8e19-4713-9a04-fb76b3a1066f {"md5": "06c7cb2f1beda122b327644b9fd8c1f8", "pid": "A017635757", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A017635757", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017635757", "source": "RERO"}], "preferred_name": "Müller, Arthur K", "authorized_access_point": "Müller, Arthur K"} 1 -2023-07-08 08:25:10.749803 2023-07-08 08:25:10.749816 4518011d-7e29-4abc-9b7d-ff1adc62cc80 {"md5": "5c63dc14b9e0fe06bb3c2818dfbb4cc7", "pid": "A017650142", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A017650142", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017650142", "source": "RERO"}], "preferred_name": "Lauren, Jillian", "authorized_access_point": "Lauren, Jillian"} 1 -2023-07-08 08:25:10.849658 2023-07-08 08:25:10.84967 1944f604-a328-4ca6-a41d-73e175dac939 {"md5": "b90e84dcb75223b9939e5c7b303ab7f8", "pid": "A017676479", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "géologue", "identifier": "http://data.rero.ch/02-A017676479", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017676479", "source": "RERO"}], "preferred_name": "Moix, Patrice, géologue", "authorized_access_point": "Moix, Patrice, géologue"} 1 -2023-07-08 08:25:10.950361 2023-07-08 08:25:10.950377 52409069-ba66-447e-804b-e7650b6b7c40 {"md5": "dd279bae1b2cf0ceee201210106e6ef7", "pid": "A017678297", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A017678297", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017678297", "source": "RERO"}], "preferred_name": "Atorf, Walter", "authorized_access_point": "Atorf, Walter"} 1 -2023-07-08 08:25:11.048982 2023-07-08 08:25:11.049398 a104da20-ff18-4606-97dd-eb5f605b4b4d {"md5": "444af656443df57abd36f2f022290e8c", "pid": "A017696857", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A017696857", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017696857", "source": "RERO"}], "preferred_name": "Laval, Roseline", "authorized_access_point": "Laval, Roseline"} 1 -2023-07-08 08:25:11.153765 2023-07-08 08:25:11.153776 2c1cd0f4-6936-4610-bdba-50dba2de5679 {"md5": "006da27c8c83d62bff619ebf5cd197a2", "pid": "A017737385", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A017737385", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017737385", "source": "RERO"}], "preferred_name": "Cuaz, Bruno", "authorized_access_point": "Cuaz, Bruno"} 1 -2023-07-08 08:25:11.254835 2023-07-08 08:25:11.254848 19ccdbf8-cad8-4798-9710-7b777a3c8fa2 {"md5": "ce4be14c2275eb714c22b96c2fdf1fd1", "pid": "A017743945", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A017743945", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017743945", "source": "RERO"}], "preferred_name": "Allegheny College (Meadville)", "authorized_access_point": "Allegheny College (Meadville)"} 1 -2023-07-08 08:25:11.34527 2023-07-08 08:25:11.345282 d59c89ac-cb62-4b7a-97a9-eae1eb37acd8 {"md5": "56753e13db865772271c5d792b9aa911", "pid": "A017761491", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A017761491", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017761491", "source": "RERO"}], "preferred_name": "Benjamin, A. Cornelius", "authorized_access_point": "Benjamin, A. Cornelius"} 1 -2023-07-08 08:25:11.438453 2023-07-08 08:25:11.438465 12514599-7984-4029-8f3e-cc41490b4b0d {"md5": "9bb64a516716a5ec29edf11fd7caeffb", "pid": "A017762299", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A017762299", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017762299", "source": "RERO"}], "preferred_name": "Centre de recherche de l'éducation spécialisée et de l'adaptation scolaire (Paris)", "authorized_access_point": "Centre de recherche de l'éducation spécialisée et de l'adaptation scolaire (Paris)"} 1 -2023-07-08 08:25:11.537188 2023-07-08 08:25:11.537198 8a887936-158f-4d79-8106-bc6f120315de {"md5": "3960d4369fff8c94de02f47ee2e8ae1b", "pid": "A017784112", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A017784112", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017784112", "source": "RERO"}], "preferred_name": "Furse, Raymond W", "authorized_access_point": "Furse, Raymond W"} 1 -2023-07-08 08:25:11.639939 2023-07-08 08:25:11.639948 e5fc055e-8d15-452a-afad-6b83c0606ca0 {"md5": "af1d3a68fad2a7be5b8e2fc8fe6a1144", "pid": "A017798464", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A017798464", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017798464", "source": "RERO"}], "preferred_name": "Viet, Barbara", "authorized_access_point": "Viet, Barbara"} 1 -2023-07-08 08:25:11.744893 2023-07-08 08:25:11.744908 4aa11015-894f-4fd6-8570-bf2f78ca9193 {"md5": "30ee286bd6a0afd05230c050cec7e576", "pid": "A017940250", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A017940250", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017940250", "source": "RERO"}], "preferred_name": "Conférence des Cours constitutionnelles européennes 1996 :", "authorized_access_point": "Conférence des Cours constitutionnelles européennes (10 : 1996 : Budapest)"} 1 -2023-07-08 08:25:11.845888 2023-07-08 08:25:11.845903 ef170f54-11f7-437b-a768-14a4c69a3241 {"md5": "d2329fbf72f4bc04a7d42f9761530b1a", "pid": "A017944030", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A017944030", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017944030", "source": "RERO"}], "preferred_name": "Sandner, Henrike", "authorized_access_point": "Sandner, Henrike"} 1 -2023-07-08 08:25:11.963632 2023-07-08 08:25:11.963646 06eae3b2-f301-41b6-9c4f-83a433c323cb {"md5": "6df2cead03e86b79ef132bb7c665656b", "pid": "A017944947", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "(fils)", "identifier": "http://data.rero.ch/02-A017944947", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017944947", "source": "RERO"}], "preferred_name": "Jacot-Guillarmod, Simon-Pierre (fils)", "authorized_access_point": "Jacot-Guillarmod, Simon-Pierre (fils)", "biographical_information": ["Dates de vie: 1803-1824"]} 1 -2023-07-08 08:25:12.060944 2023-07-08 08:25:12.060955 02b1f7c3-a79e-425d-a53e-e027fc1bea8d {"md5": "e336fca3cc13c27fb87ce6004fcf65a9", "pid": "A017955463", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A017955463", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017955463", "source": "RERO"}], "preferred_name": "Paroisse (Vollèges : catholique-romaine)", "authorized_access_point": "Paroisse (Vollèges : catholique-romaine)"} 1 -2023-07-08 08:25:12.165316 2023-07-08 08:25:12.165323 86bed6cd-7605-45df-861d-d1885a4f0737 {"md5": "fe3a5f7736d0d18d35e8a0c138796d78", "pid": "A017961866", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A017961866", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017961866", "source": "RERO"}], "preferred_name": "Kosolapov, B", "authorized_access_point": "Kosolapov, B"} 1 -2023-07-08 08:25:12.272486 2023-07-08 08:25:12.272498 97755b03-9c5c-4f1a-92d2-eaa04e6e5a82 {"md5": "db2e5c4d3024a6b0a53d5c15ead567af", "pid": "A017970655", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A017970655", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017970655", "source": "RERO"}], "preferred_name": "Unteregger, Regula", "authorized_access_point": "Unteregger, Regula"} 1 -2023-07-08 08:25:12.368404 2023-07-08 08:25:12.368414 0a6e0a04-56f8-48ac-8d9f-c2044f677bcf {"md5": "7773764827ddb422baac431166e98d15", "pid": "A017977912", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A017977912", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017977912", "source": "RERO"}], "preferred_name": "Bentancur Viglione, María Gabriela", "authorized_access_point": "Bentancur Viglione, María Gabriela"} 1 -2023-07-08 08:25:12.465596 2023-07-08 08:25:12.465608 f82cab25-e225-4df3-a9ae-333eb1f5570d {"md5": "9edc9994f2352395dc52360d6b26ce05", "pid": "A017990946", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A017990946", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017990946", "source": "RERO"}], "preferred_name": "Sendrès, Didier", "authorized_access_point": "Sendrès, Didier"} 1 -2023-07-08 08:25:12.562735 2023-07-08 08:25:12.562742 ef85a145-31ca-4069-a7ba-e1312ab155b6 {"md5": "e7b6ed985c3dec42479d4863389d45fb", "pid": "A017997426", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A017997426", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017997426", "source": "RERO"}], "preferred_name": "Keenan, Rebecca", "authorized_access_point": "Keenan, Rebecca"} 1 -2023-07-08 08:25:12.692132 2023-07-08 08:25:12.692137 8431df40-553b-43bf-9f00-9bd15f4c5f6d {"md5": "c859e4e71327471b59a6a8220884498c", "pid": "A017998485", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A017998485", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017998485", "source": "RERO"}], "preferred_name": "Arménie. Cour constitutionnelle. Conférence internationale 2009 :", "authorized_access_point": "Arménie. Cour constitutionnelle. Conférence internationale (14 : 2009 : Erevan)"} 1 -2023-07-08 08:25:12.786875 2023-07-08 08:25:12.786887 9c20114e-663b-4f08-9d4c-032b41e2fa58 {"md5": "2afbc1834bf3761b955343ab1d47361b", "pid": "A018022500", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018022500", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018022500", "source": "RERO"}], "variant_name": ["Gorman, Jessica K", "Gorman, Jess"], "preferred_name": "Gorman, J. K.", "variant_access_point": ["Gorman, Jessica K", "Gorman, Jess"], "authorized_access_point": "Gorman, J. K. (Jessica K.)"} 1 -2023-07-08 08:25:12.885329 2023-07-08 08:25:12.885337 b8e65d35-94f7-4a92-a293-08426151d078 {"md5": "a90037129ecd30fc9d9c166f9464b86c", "pid": "A018042156", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018042156", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018042156", "source": "RERO"}], "preferred_name": "Marculet, Stefan", "authorized_access_point": "Marculet, Stefan"} 1 -2023-07-08 08:25:12.984948 2023-07-08 08:25:12.98496 6e2ba190-d7f7-48bd-abc7-a995e22891f3 {"md5": "f203939830f4fca5b9eed97af52ce02b", "pid": "A018051739", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A018051739", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018051739", "source": "RERO"}], "preferred_name": "Nederland. Ministerie van Buitenlandse Zaken. Symposium (2009 :", "authorized_access_point": "Nederland. Ministerie van Buitenlandse Zaken. Symposium (2009 : Den Haag)"} 1 -2023-07-08 08:25:13.097564 2023-07-08 08:25:13.097576 63bb6541-4834-4e18-9432-06c8511493bd {"md5": "a45aae3dca05042df83f8ef83ff307aa", "pid": "A018052277", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018052277", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018052277", "source": "RERO"}], "preferred_name": "Seijiro, Koyama", "authorized_access_point": "Seijiro, Koyama"} 1 -2023-07-08 08:25:13.202103 2023-07-08 08:25:13.202109 dc954bcf-69e5-459e-847e-0bda718997f5 {"md5": "d8e6e20e6d5502f3e0f0f71511458bcf", "pid": "A018063051", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018063051", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018063051", "source": "RERO"}], "preferred_name": "Stefaniak, Stefan", "authorized_access_point": "Stefaniak, Stefan"} 1 -2023-07-08 08:25:13.3229 2023-07-08 08:25:13.322911 383dda05-2939-44f3-b81b-dc378154aca6 {"md5": "7f572184bc01f22511f2084c02a15bb2", "pid": "A018070048", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018070048", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018070048", "source": "RERO"}], "date_of_birth": "578", "date_of_death": "648", "preferred_name": "Fang, Xuanling,", "parallel_access_point": ["房玄齡, 578-648"], "authorized_access_point": "Fang, Xuanling, 578-648"} 1 -2023-07-08 08:25:13.439316 2023-07-08 08:25:13.439331 e157753d-1834-482d-8211-9ee1b1e12e28 {"md5": "eb6a146a2dd3c5ed00cdc8692f8e5434", "pid": "A018080715", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018080715", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018080715", "source": "RERO"}], "preferred_name": "Zittel, Niggi", "authorized_access_point": "Zittel, Niggi"} 1 -2023-07-08 08:25:13.570571 2023-07-08 08:25:13.570586 7a6e381e-ceb5-48f6-a682-16e827d44087 {"md5": "00059a63a0a718e4166f381ac7326352", "pid": "A018087920", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018087920", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018087920", "source": "RERO"}], "preferred_name": "Schwandt, Michael", "authorized_access_point": "Schwandt, Michael"} 1 -2023-07-08 08:25:13.711356 2023-07-08 08:25:13.711369 d6c3d3c8-b7c7-454e-99ad-0a8aea94a3f1 {"md5": "3e789942263a31e2c01e87c488e4e761", "pid": "A018093417", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A018093417", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018093417", "source": "RERO"}], "preferred_name": "Salon international du livre et de la presse 1990 :", "authorized_access_point": "Salon international du livre et de la presse (4 : 1990 : Genève)"} 1 -2023-07-08 08:25:13.847123 2023-07-08 08:25:13.847137 ed5309c9-0aee-4d3b-8c8c-4ec16c2cf9a7 {"md5": "196599b9ec89153ddf64135fc7193c56", "pid": "A018105228", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018105228", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018105228", "source": "RERO"}], "preferred_name": "Allen, Sarah", "authorized_access_point": "Allen, Sarah"} 1 -2023-07-08 08:25:13.952203 2023-07-08 08:25:13.952211 aa1ab79e-4a8f-4bd5-bcf0-f07d420defdc {"md5": "8b583a7560cb7bdb4033a46170039167", "pid": "A018108985", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018108985", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018108985", "source": "RERO"}], "preferred_name": "Chakrabarti, Nina", "authorized_access_point": "Chakrabarti, Nina"} 1 -2023-07-08 08:25:14.070854 2023-07-08 08:25:14.070859 24306c57-9a8f-426e-b548-c6e62c9d31dc {"md5": "54140073487fe63abdb73796632e9995", "pid": "A018112339", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A018112339", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018112339", "source": "RERO"}], "preferred_name": "Dortmund (Stadt)", "authorized_access_point": "Dortmund (Stadt)"} 1 -2023-07-08 08:25:14.170035 2023-07-08 08:25:14.170043 f0c9d171-5013-4e0d-992d-b29c57501b19 {"md5": "6a5c39b3146f439966bd77181e826ab7", "pid": "A018117701", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018117701", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018117701", "source": "RERO"}], "preferred_name": "Zanetti, Cinzia", "authorized_access_point": "Zanetti, Cinzia"} 1 -2023-07-08 08:25:14.288947 2023-07-08 08:25:14.288957 fccf3191-75b9-45b4-83e1-2a1b9334f625 {"md5": "e517339905bb8cea8ce65c53abece113", "pid": "A018138835", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018138835", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018138835", "source": "RERO"}], "preferred_name": "Haidn-Tschalova, Veronika", "authorized_access_point": "Haidn-Tschalova, Veronika"} 1 -2023-07-08 08:25:14.401624 2023-07-08 08:25:14.401636 74fb1020-81bb-49cc-8603-c04b937aff42 {"md5": "20ef15805ce00df6f7a11634d23dae12", "pid": "A018140650", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A018140650", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018140650", "source": "RERO"}], "preferred_name": "\\"Celebrating Eleanor Roosevelt\\" (Genève)", "authorized_access_point": "\\"Celebrating Eleanor Roosevelt\\" (Genève)"} 1 -2023-07-08 08:25:14.513939 2023-07-08 08:25:14.51395 dc0691c5-e729-4fbc-8ad2-d0d0d425d601 {"md5": "83061058e35463f7c913052fe1aaadca", "pid": "A018155271", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018155271", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018155271", "source": "RERO"}], "preferred_name": "Dahl, Gina", "authorized_access_point": "Dahl, Gina"} 1 -2023-07-08 08:25:14.628402 2023-07-08 08:25:14.628406 acd5df54-6939-4781-9571-3813b2e208b3 {"md5": "043fb2d24430a613f3ab6765c08ad03d", "pid": "A018157124", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018157124", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018157124", "source": "RERO"}], "preferred_name": "Rollston, Chris A", "authorized_access_point": "Rollston, Chris A"} 1 -2023-07-08 08:25:14.734665 2023-07-08 08:25:14.734671 b6534eaa-9313-4e47-88a3-2e87c9811dab {"md5": "78dddc957bb18af653648e71ca6a45ec", "pid": "A018172231", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018172231", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018172231", "source": "RERO"}], "preferred_name": "Cathry, Karl", "authorized_access_point": "Cathry, Karl"} 1 -2023-07-08 08:25:14.853867 2023-07-08 08:25:14.853881 538439a7-788b-48b3-af17-1f8f47327bb8 {"md5": "f10025f9a64b7426b9b9d60297725fe7", "pid": "A018201635", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018201635", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018201635", "source": "RERO"}], "preferred_name": "Terrari, Yves", "authorized_access_point": "Terrari, Yves"} 1 -2023-07-08 08:25:14.970507 2023-07-08 08:25:14.970517 f9ca3d79-b98f-4465-bd99-d41f1421c0a0 {"md5": "c6bd658050c015cc06bdf330876c1b7b", "pid": "A018206914", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018206914", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018206914", "source": "RERO"}], "preferred_name": "Glaus, M.R", "authorized_access_point": "Glaus, M.R"} 1 -2023-07-08 08:25:15.080246 2023-07-08 08:25:15.080258 4d8645aa-17c6-43e5-8833-fd7fef265528 {"md5": "996aae39ce42b5b0e77dc51c0b5fd6df", "pid": "A018237999", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018237999", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018237999", "source": "RERO"}], "preferred_name": "Délez, Christian", "authorized_access_point": "Délez, Christian"} 1 -2023-07-08 08:25:15.202128 2023-07-08 08:25:15.202132 081d6f9c-e9a2-4cbf-a41b-f55928fb50ec {"md5": "2168eee71f3dfb9a18a20bc052f2e05d", "pid": "A018243805", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018243805", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018243805", "source": "RERO"}], "preferred_name": "Riedmatten, Charles de", "authorized_access_point": "Riedmatten, Charles de"} 1 -2023-07-08 08:25:15.305909 2023-07-08 08:25:15.305921 99122312-78bf-46fe-a066-35010bdadc52 {"md5": "3e10165b65f05787a5e3bcd02b0cafbc", "pid": "A018251580", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018251580", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018251580", "source": "RERO"}], "preferred_name": "Gabioud, Serge", "authorized_access_point": "Gabioud, Serge"} 1 -2023-07-08 08:25:15.418629 2023-07-08 08:25:15.418635 733f7f21-940f-467d-8985-6482ca8526f7 {"md5": "351932b0ff27c7018703312e8cf8ac33", "pid": "A018310828", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A018310828", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018310828", "source": "RERO"}], "variant_name": ["Kunstverein Ludwigshafen am Rhein", "Ludwigshafener Kunstverein", "Kunstverein Ludwigshafen a. Rh"], "preferred_name": "Kunstverein Ludwigshafen", "variant_access_point": ["Kunstverein Ludwigshafen am Rhein", "Ludwigshafener Kunstverein", "Kunstverein Ludwigshafen a. Rh"], "authorized_access_point": "Kunstverein Ludwigshafen"} 1 -2023-07-08 08:25:15.52188 2023-07-08 08:25:15.52189 d7b80b81-7b5a-41d6-bce6-7438c3f1804d {"md5": "ee67bd03ad20c8d0157355e4ab1aeb06", "pid": "A018321048", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A018321048", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018321048", "source": "RERO"}], "variant_name": ["SASS (Spazio archeologico sotterraneo del sas)"], "preferred_name": "Spazio archeologico sotterraneo del sas", "variant_access_point": ["SASS (Spazio archeologico sotterraneo del sas)"], "authorized_access_point": "Spazio archeologico sotterraneo del sas"} 1 -2023-07-08 08:25:15.632693 2023-07-08 08:25:15.632706 2e086172-1365-4a3a-8009-ace995989378 {"md5": "a8b3ec191e26975a493e773b347ed384", "pid": "A018322337", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A018322337", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018322337", "source": "RERO"}], "preferred_name": "Gustav-Lübcke-Museum (Hamm)", "authorized_access_point": "Gustav-Lübcke-Museum (Hamm)"} 1 -2023-07-08 08:25:15.768261 2023-07-08 08:25:15.768272 374dece9-b28e-48b0-8959-17ed23aacb99 {"md5": "0680bf9603b2c009a2137ff5f8d45c34", "pid": "A018324391", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018324391", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018324391", "source": "RERO"}], "preferred_name": "Reibel, Olivier", "authorized_access_point": "Reibel, Olivier"} 1 -2023-07-08 08:25:15.884466 2023-07-08 08:25:15.884474 1b639ef5-431c-4971-b16d-b441720a0d70 {"md5": "86889236655c75b6d4b5f3cf85f09c4f", "pid": "A018331793", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018331793", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018331793", "source": "RERO"}], "preferred_name": "Fiebiger, Rainer", "authorized_access_point": "Fiebiger, Rainer"} 1 -2023-07-08 08:25:16.00147 2023-07-08 08:25:16.001477 6640573a-3d1e-4548-9197-7b0bbc8bfd22 {"md5": "17e755780639a97733a3166df8edd2be", "pid": "A018332342", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A018332342", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018332342", "source": "RERO"}], "preferred_name": "Europäische Anwaltsvereinigung. Tagung 2010 :", "authorized_access_point": "Europäische Anwaltsvereinigung. Tagung (43 : 2010 : Lausanne)"} 1 -2023-07-08 08:25:16.085281 2023-07-08 08:25:16.085293 50aa91f5-615e-4234-b31e-2daa7a1b4cfd {"md5": "e9693fe83ac89c7217e07b617653230b", "pid": "A018345923", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018345923", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018345923", "source": "RERO"}], "preferred_name": "Galanopoulos, Philippe", "authorized_access_point": "Galanopoulos, Philippe"} 1 -2023-07-08 08:25:16.18174 2023-07-08 08:25:16.181749 f2560b66-c266-46a8-831b-41108bf629e9 {"md5": "8d2d4a12127218dd2513cddd4c6dd471", "pid": "A018346336", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A018346336", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018346336", "source": "RERO"}], "preferred_name": "Antigos Refeitórios da Mundet (Seixal)", "authorized_access_point": "Antigos Refeitórios da Mundet (Seixal)"} 1 -2023-07-08 08:25:16.285491 2023-07-08 08:25:16.285502 77e3809c-f819-4d5d-b8a5-2d1dd2431b84 {"md5": "1932a7c877fc1218e8c7daec4020e059", "pid": "A018351276", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A018351276", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018351276", "source": "RERO"}], "preferred_name": "Institut international de sociologie juridique (Oñati). Workshop (2008 :", "authorized_access_point": "Institut international de sociologie juridique (Oñati). Workshop (2008 : Oñati)"} 1 -2023-07-08 08:25:16.387388 2023-07-08 08:25:16.387401 49c30bf6-1a94-4c25-a5b2-fafe34c26331 {"md5": "159a015f9e8fea67fd944ca1ad930ca2", "pid": "A018387362", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A018387362", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018387362", "source": "RERO"}], "variant_name": ["France. Académie (Créteil). Mission d'action culturelle des cultures et langues régionales"], "preferred_name": "France. Académie (Créteil). Mission de l'action culturelle des cultures et langues régionales", "variant_access_point": ["France. Académie (Créteil). Mission d'action culturelle des cultures et langues régionales"], "authorized_access_point": "France. Académie (Créteil). Mission de l'action culturelle des cultures et langues régionales"} 1 -2023-07-08 08:25:16.497188 2023-07-08 08:25:16.497202 6e933cbd-f948-4ec8-bd1f-91d53f3b6423 {"md5": "88b25b887746cd4f9b6b0cb1b445e7b4", "pid": "A018391771", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018391771", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018391771", "source": "RERO"}], "preferred_name": "Frerk, Hans", "authorized_access_point": "Frerk, Hans"} 1 -2023-07-08 08:25:16.588764 2023-07-08 08:25:16.588777 f5055fca-5807-4406-877c-518ba1957dc2 {"md5": "ec95ca6498df13df6463762d45bd6500", "pid": "A018394246", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018394246", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018394246", "source": "RERO"}], "variant_name": ["Blanc, Thomas le,", "LeBlanc, Thomas,"], "date_of_birth": "1951", "preferred_name": "Le Blanc, Thomas,", "variant_access_point": ["Blanc, Thomas le, 1951-", "LeBlanc, Thomas, 1951-"], "authorized_access_point": "Le Blanc, Thomas, 1951-", "biographical_information": ["Ecrivain, critique, éditeur"]} 1 -2023-07-08 08:25:16.686754 2023-07-08 08:25:16.686768 72ae25bc-b754-464c-a64d-516430d56361 {"md5": "cc6fdfc8925f6bbd932dbe23c1bc801a", "pid": "A018395567", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018395567", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018395567", "source": "RERO"}], "date_of_birth": "1986", "preferred_name": "Kull, Iara,", "authorized_access_point": "Kull, Iara, 1986-"} 1 -2023-07-08 08:25:16.798505 2023-07-08 08:25:16.798519 e7e44c1d-27cc-4892-9d04-9a730424eaf5 {"md5": "7bd4c3efb93adf9449c5da5f9d615f68", "pid": "A018410690", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018410690", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018410690", "source": "RERO"}], "preferred_name": "Ṣurayfī, Muḥammad", "parallel_access_point": ["صريفي، محمد"], "authorized_access_point": "Ṣurayfī, Muḥammad"} 1 -2023-07-08 08:25:16.910554 2023-07-08 08:25:16.910574 5295496a-9868-4429-b74d-82c288058fcc {"md5": "c69e6081564406da16363055933a0569", "pid": "A018418232", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018418232", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018418232", "source": "RERO"}], "preferred_name": "Di Mino, Patrizio", "authorized_access_point": "Di Mino, Patrizio"} 1 -2023-07-08 08:25:17.01292 2023-07-08 08:25:17.012932 b06bdd11-e05b-43be-8378-d1b2154fa063 {"md5": "6b60cece0faa4d97f69f086bf6d9fd21", "pid": "A018432097", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A018432097", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018432097", "source": "RERO"}], "preferred_name": "Centro per gli studi storici italo-germanici in Trento. Convegno internazionale (2005 :", "authorized_access_point": "Centro per gli studi storici italo-germanici in Trento. Convegno internazionale (2005 : Trento)"} 1 -2023-07-08 08:25:17.118794 2023-07-08 08:25:17.118803 29e54a5c-18d2-49fe-930e-951ef60ec079 {"md5": "28e04fa8e254e3fee1b979e272ca74ae", "pid": "A018440172", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018440172", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018440172", "source": "RERO"}], "preferred_name": "Cornet, May", "authorized_access_point": "Cornet, May"} 1 -2023-07-08 08:25:17.212771 2023-07-08 08:25:17.212785 240179be-cb1a-4002-be8d-2d8ad78bc9dd {"md5": "5c83295034374e8d379bf2f0075c010c", "pid": "A018456288", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018456288", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018456288", "source": "RERO"}], "preferred_name": "Halperin, Natalie", "authorized_access_point": "Halperin, Natalie"} 1 -2023-07-08 08:25:17.325805 2023-07-08 08:25:17.325815 94f2bd18-ed0c-42ab-a37f-6c4007091862 {"md5": "9dd3ec69b26d4183d57cbeaa5f66fc4c", "pid": "A018459512", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "médecin", "identifier": "http://data.rero.ch/02-A018459512", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018459512", "source": "RERO"}], "preferred_name": "Schlüssel, médecin", "authorized_access_point": "Schlüssel, médecin"} 1 -2023-07-08 08:25:17.435569 2023-07-08 08:25:17.435582 a15475f2-fbcc-4690-9df7-c390a5d2b58e {"md5": "22122790a4f36697b36f56f8556e0882", "pid": "A018463176", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018463176", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018463176", "source": "RERO"}], "preferred_name": "Zhou, Yiqun", "authorized_access_point": "Zhou, Yiqun"} 1 -2023-07-08 08:25:17.553718 2023-07-08 08:25:17.55373 b74aeb55-1443-4c56-8215-c814c85ef45b {"md5": "772014ed8b2b98b82667cd5d44b8c41c", "pid": "A018475973", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018475973", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018475973", "source": "RERO"}], "date_of_birth": "1910", "date_of_death": "1997", "preferred_name": "Bielawski, Józef,", "authorized_access_point": "Bielawski, Józef, 1910-1997"} 1 -2023-07-08 08:25:17.666038 2023-07-08 08:25:17.666046 58268634-14c7-4768-99bb-6473ebb68b7b {"md5": "7a5ee6c3e77fbad42ea7f891607af1a7", "pid": "A018477130", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018477130", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018477130", "source": "RERO"}], "preferred_name": "Nājī, Hilāl", "parallel_access_point": ["ناجي، هلال"], "authorized_access_point": "Nājī, Hilāl"} 1 -2023-07-08 08:25:17.793463 2023-07-08 08:25:17.793469 90fef43f-3173-4795-93c4-be0f00f2163a {"md5": "2f6f706300d59fe7479ba5f16f62089e", "pid": "A018486553", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018486553", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018486553", "source": "RERO"}], "preferred_name": "Mittner, Mathias", "authorized_access_point": "Mittner, Mathias"} 1 -2023-07-08 08:25:17.905212 2023-07-08 08:25:17.905226 f7a4f2e0-b058-4612-b91c-c1981393d39f {"md5": "67f940632c1a4b8711c4966f1d6e96b1", "pid": "A018541924", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018541924", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018541924", "source": "RERO"}], "preferred_name": "Alarashi, Hala", "authorized_access_point": "Alarashi, Hala"} 1 -2023-07-08 08:25:18.011399 2023-07-08 08:25:18.011411 31436399-795a-48f0-943b-b8cf46c2fc86 {"md5": "e6129d82f70caaeb60fa599a85f654b8", "pid": "A018548221", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018548221", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018548221", "source": "RERO"}], "preferred_name": "Klingelhöffer, Kerstin", "authorized_access_point": "Klingelhöffer, Kerstin"} 1 -2023-07-08 08:25:18.14565 2023-07-08 08:25:18.145653 ba7fccc7-9f6d-474b-b130-b29d54aadf22 {"md5": "0914e56aed3f6184575f4172722fb561", "pid": "A018556919", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018556919", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018556919", "source": "RERO"}], "preferred_name": "Knüfermann, Eckar", "authorized_access_point": "Knüfermann, Eckar"} 1 -2023-07-08 08:25:18.250254 2023-07-08 08:25:18.250267 044e6dbf-7184-4f3e-a4d2-0df24106099a {"md5": "d2236b5b8f159cdce2880cab9c25d6ff", "pid": "A018562369", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018562369", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018562369", "source": "RERO"}], "preferred_name": "Kershaw, Paul J. E", "authorized_access_point": "Kershaw, Paul J. E"} 1 -2023-07-08 08:25:18.349784 2023-07-08 08:25:18.349791 a8378394-9c87-4353-9d2a-ec2da9d13e9f {"md5": "67a3a316825ae28ed051798ccda61e8d", "pid": "A018581906", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018581906", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018581906", "source": "RERO"}], "preferred_name": "La Chevallerie, A. de", "authorized_access_point": "La Chevallerie, A. de"} 1 -2023-07-08 08:25:18.444013 2023-07-08 08:25:18.444027 4311b9cd-a829-49ea-92cd-2e5aeca0c7eb {"md5": "de15928f8222a081b30489d3873aac59", "pid": "A018584020", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018584020", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018584020", "source": "RERO"}], "preferred_name": "Del Vivo, Ranieri", "authorized_access_point": "Del Vivo, Ranieri"} 1 -2023-07-08 08:25:18.557619 2023-07-08 08:25:18.55763 ed7779de-a6bb-4ccd-9189-db46d84b5bf4 {"md5": "21d51bd010b6a5629f130c8e197cac48", "pid": "A018585140", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018585140", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018585140", "source": "RERO"}], "preferred_name": "Lange, Eugénie", "authorized_access_point": "Lange, Eugénie"} 1 -2023-07-08 08:25:18.667281 2023-07-08 08:25:18.667287 11a0e404-156a-49d2-b37b-13745afd5bc6 {"md5": "31f624720de971c6f415a27dfbeebde0", "pid": "A018591525", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018591525", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018591525", "source": "RERO"}], "preferred_name": "Dupont-Belrhali, Karine", "authorized_access_point": "Dupont-Belrhali, Karine"} 1 -2023-07-08 08:25:18.772064 2023-07-08 08:25:18.772073 a75437fe-4abd-4a3b-8396-5898d2862e69 {"md5": "2b4ff363d9c85189f03e28c59f0e2b35", "pid": "A018606059", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018606059", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018606059", "source": "RERO"}], "preferred_name": "Zakrzewski, Marek", "authorized_access_point": "Zakrzewski, Marek"} 1 -2023-07-08 08:25:18.879427 2023-07-08 08:25:18.87944 fab8c58b-6ca7-4d6f-a0e9-164531aee7b6 {"md5": "36c4033ab76e66035d882b31833e04d1", "pid": "A018606217", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018606217", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018606217", "source": "RERO"}], "preferred_name": "Rothrock, Paul Ernest", "authorized_access_point": "Rothrock, Paul Ernest"} 1 -2023-07-08 08:25:18.988381 2023-07-08 08:25:18.988388 6c7a5f5c-5def-4ad0-9a90-686ee47dfeb9 {"md5": "1a374669d1e1ec01e4f18ccd5ee4aab8", "pid": "A018610634", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018610634", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018610634", "source": "RERO"}], "preferred_name": "Abbott, Colleen", "authorized_access_point": "Abbott, Colleen"} 1 -2023-07-08 08:25:19.086741 2023-07-08 08:25:19.086748 27c7c3d1-c256-4be2-9102-d012a162efd9 {"md5": "b23f077bccae61e56fdc79e8982e4494", "pid": "A018613224", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018613224", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018613224", "source": "RERO"}], "preferred_name": "Dumouchel, Jacques", "authorized_access_point": "Dumouchel, Jacques"} 1 -2023-07-08 08:25:19.21761 2023-07-08 08:25:19.217623 c8fc8ab8-6232-4f31-b3c0-ae10913b77aa {"md5": "b83b8719de975a54471655ff0168f905", "pid": "A018617749", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A018617749", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018617749", "source": "RERO"}], "preferred_name": "Lustersaal (Judenburg)", "authorized_access_point": "Lustersaal (Judenburg)"} 1 -2023-07-08 08:25:19.337577 2023-07-08 08:25:19.337585 2a6febc2-4386-467b-bd3d-96cb66159b80 {"md5": "d5261d2f8926ba960ae6b702bf368f1e", "pid": "A018623512", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018623512", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018623512", "source": "RERO"}], "preferred_name": "Arizmendi, Luis", "authorized_access_point": "Arizmendi, Luis"} 1 -2023-07-08 08:25:19.438427 2023-07-08 08:25:19.438437 dad6da7e-5005-4b44-bf8c-8948501cd12e {"md5": "a741def453ecac7df9509e00ef685416", "pid": "A018651679", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018651679", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018651679", "source": "RERO"}], "preferred_name": "Logean, Sylvie", "authorized_access_point": "Logean, Sylvie"} 1 -2023-07-08 08:25:19.55079 2023-07-08 08:25:19.550806 f0f3b190-699a-4cd0-a20e-bcf5dfdeadda {"md5": "4f8d5a714707292ec386cdc36f20f4a0", "pid": "A018655587", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A018655587", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018655587", "source": "RERO"}], "preferred_name": "Ecole technique (Neuchâtel)", "authorized_access_point": "Ecole technique (Neuchâtel)", "biographical_information": ["Avant 1969: Ecole de mécanique et d'électricité (Neuchâtel)", "Dès 1974: l'Ecole technique est rattachée au CPLN"]} 1 -2023-07-08 08:25:19.655847 2023-07-08 08:25:19.65586 f58c519c-e6cf-4cbe-a41d-c9374e8e2431 {"md5": "9bba28f8bf1dfef255b99c04f10f69ef", "pid": "A018689283", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018689283", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018689283", "source": "RERO"}], "preferred_name": "Hadāwī, Ḥasan", "parallel_access_point": ["هداوي، حسن"], "authorized_access_point": "Hadāwī, Ḥasan"} 1 -2023-07-08 08:25:19.751557 2023-07-08 08:25:19.751566 81399bca-0915-482a-80ba-198e527f8544 {"md5": "9d5679a30b19051acf90d0b886e645d5", "pid": "A018689940", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A018689940", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018689940", "source": "RERO"}], "preferred_name": "International Center for Research on Environmental Issues. Conférence internationale 2008 :", "authorized_access_point": "International Center for Research on Environmental Issues. Conférence internationale (7 : 2008 : Aix-en-Provence)"} 1 -2023-07-08 08:25:19.859385 2023-07-08 08:25:19.859399 7608ddca-4851-4ca1-a264-17698bcbcddc {"md5": "0a425a64cdc4201a931b93855fb76167", "pid": "A018699407", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018699407", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018699407", "source": "RERO"}], "preferred_name": "Janssen, Hildegonda", "authorized_access_point": "Janssen, Hildegonda"} 1 -2023-07-08 08:25:19.964989 2023-07-08 08:25:19.965 41937f7d-7ebd-4f23-bb74-8ce481093fd6 {"md5": "b94c945708549cc48fa2e6eed98aa349", "pid": "A018703625", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018703625", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018703625", "source": "RERO"}], "preferred_name": "Nikoloff, Mladen", "authorized_access_point": "Nikoloff, Mladen"} 1 -2023-07-08 08:25:20.063934 2023-07-08 08:25:20.063945 67926c9c-ec33-4415-bc21-0f8b1a223179 {"md5": "990819c680d5da9d8c4744b9577c6c5e", "pid": "A018726776", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018726776", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018726776", "source": "RERO"}], "preferred_name": "Pugin, J", "authorized_access_point": "Pugin, J"} 1 -2023-07-08 08:25:20.172973 2023-07-08 08:25:20.17298 873fd855-38fd-44eb-b078-6d2caacbb334 {"md5": "bdedc5c2fa88c7174eb28e4a157dcfc9", "pid": "A018750238", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018750238", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018750238", "source": "RERO"}], "preferred_name": "Lafite, Elisabeth", "authorized_access_point": "Lafite, Elisabeth"} 1 -2023-07-08 08:25:20.266919 2023-07-08 08:25:20.266938 428b9d03-ddc0-4e41-8d82-2039f855c901 {"md5": "007424a4e5c948111e7478d071d9508f", "pid": "A018777696", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018777696", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018777696", "source": "RERO"}], "preferred_name": "Forgács, Robert", "authorized_access_point": "Forgács, Robert"} 1 -2023-07-08 08:25:20.381922 2023-07-08 08:25:20.381933 3cc27c4a-acee-4963-a074-8ee7ae84ebcb {"md5": "604646998656c85d9432aceecf13e50b", "pid": "A018790254", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018790254", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018790254", "source": "RERO"}], "preferred_name": "Aeschlimann, Daniel", "authorized_access_point": "Aeschlimann, Daniel"} 1 -2023-07-08 08:25:20.480724 2023-07-08 08:25:20.480735 e4ab7dbf-64fc-4959-b70b-49c2cf9c4a39 {"md5": "a763bfdb15ca4f63bd3f4a8e7553375d", "pid": "A018795339", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018795339", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018795339", "source": "RERO"}], "preferred_name": "Power, Alacoque", "authorized_access_point": "Power, Alacoque"} 1 -2023-07-08 08:25:20.588124 2023-07-08 08:25:20.588137 fb45d434-2d88-4e18-a3d4-0e2a37dc4fea {"md5": "c6f9f16c929eced1219bf4924abd4f8f", "pid": "A018796853", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018796853", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018796853", "source": "RERO"}], "preferred_name": "Prelitsch, Hans", "authorized_access_point": "Prelitsch, Hans"} 1 -2023-07-08 08:25:20.699343 2023-07-08 08:25:20.699358 7a7bc8d5-01dd-43e5-a06c-1628837f39b7 {"md5": "f68156f9c701d71cb758aa6ef0d82c44", "pid": "A018810961", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A018810961", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018810961", "source": "RERO"}], "preferred_name": "Fundación Española de Historia Moderna (Madrid)", "authorized_access_point": "Fundación Española de Historia Moderna (Madrid)"} 1 -2023-07-08 08:25:20.818972 2023-07-08 08:25:20.818988 b0e70be4-86a6-4b4f-b6c3-52b3d196b508 {"md5": "a600a6a2894395213b158d13fad06669", "pid": "A018836965", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018836965", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018836965", "source": "RERO"}], "preferred_name": "Roediger, Walter", "authorized_access_point": "Roediger, Walter"} 1 -2023-07-08 08:25:20.914007 2023-07-08 08:25:20.91402 08b6a48e-2454-485e-8a2f-426e7ce6ebde {"md5": "945f08fd0f312c3c873f819f0ae9bb35", "pid": "A018838435", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018838435", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018838435", "source": "RERO"}], "preferred_name": "Roëll, Paul v", "authorized_access_point": "Roëll, Paul v"} 1 -2023-07-08 08:25:21.016266 2023-07-08 08:25:21.016278 c93a8d11-7b9a-4359-856c-d4f0c65dcf2b {"md5": "4d4e7d490b673d43d60289331862f3f0", "pid": "A018857106", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018857106", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018857106", "source": "RERO"}], "date_of_birth": "1976", "preferred_name": "Le Fleming, Orlando,", "authorized_access_point": "Le Fleming, Orlando, 1976-"} 1 -2023-07-08 08:25:21.135379 2023-07-08 08:25:21.135388 5ab21250-448d-4e77-bb6f-2882a6ff4e31 {"md5": "25c2837566d6d777e27dd7e5beb817f7", "pid": "A018863994", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "scénariste", "identifier": "http://data.rero.ch/02-A018863994", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018863994", "source": "RERO"}], "preferred_name": "Stephens, John, scénariste", "authorized_access_point": "Stephens, John, scénariste"} 1 -2023-07-08 08:25:21.234742 2023-07-08 08:25:21.234748 3069c25d-8a04-4350-a127-e70b517ac3eb {"md5": "110e4505d2d914237e6671a6e4b7f7a2", "pid": "A018867909", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018867909", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018867909", "source": "RERO"}], "preferred_name": "Lenfant, Anne-Yvonne", "authorized_access_point": "Lenfant, Anne-Yvonne"} 1 -2023-07-08 08:25:21.316069 2023-07-08 08:25:21.316079 9693b69b-e2b6-4727-bfba-9d4f79604edc {"md5": "3bed266f8495c0ac58bb07690525b2e1", "pid": "A018875034", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018875034", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018875034", "source": "RERO"}], "preferred_name": "Schill, Adolf", "authorized_access_point": "Schill, Adolf"} 1 -2023-07-08 08:25:21.439103 2023-07-08 08:25:21.439118 98944616-dccf-470d-afd9-e6258e78de5c {"md5": "e6d7cb2f093618664915e19833e93383", "pid": "A018879902", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018879902", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018879902", "source": "RERO"}], "preferred_name": "Gassmann, Aude", "authorized_access_point": "Gassmann, Aude"} 1 -2023-07-08 08:25:21.57196 2023-07-08 08:25:21.571971 4e7e79ac-8502-4ff1-805f-52000871e87a {"md5": "20e2e7fc70aa435c9b88bede93c6a497", "pid": "A018880000", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018880000", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018880000", "source": "RERO"}], "preferred_name": "Kreppi, Bernard", "authorized_access_point": "Kreppi, Bernard"} 1 -2023-07-08 08:25:21.686453 2023-07-08 08:25:21.686459 b5f39801-09bc-42f6-af6f-3f7b0a874663 {"md5": "d15e40293d9a514587eadfa8021d964d", "pid": "A018906120", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018906120", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018906120", "source": "RERO"}], "preferred_name": "Lancaster, Mike A", "authorized_access_point": "Lancaster, Mike A"} 1 -2023-07-08 08:25:21.800016 2023-07-08 08:25:21.800028 248a3c86-164e-4d84-88f5-2fec2ec5c89b {"md5": "8e91810b6f84bd857b9582b7bdc1b13c", "pid": "A018910104", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018910104", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018910104", "source": "RERO"}], "variant_name": ["Nahounou Digbeu, Amédée", "Digbeu, Amédée Nahounou"], "preferred_name": "Pierre, Amédée", "variant_access_point": ["Nahounou Digbeu, Amédée", "Digbeu, Amédée Nahounou"], "authorized_access_point": "Pierre, Amédée", "biographical_information": ["Dates de vie: 1937-"]} 1 -2023-07-08 08:25:21.913845 2023-07-08 08:25:21.913857 5c0ef43e-cfaa-4d86-a4a7-af849403e166 {"md5": "de2c36f930e9d67009caa55bd6913461", "pid": "A018913029", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018913029", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018913029", "source": "RERO"}], "preferred_name": "Frénoy, Olivier", "authorized_access_point": "Frénoy, Olivier"} 1 -2023-07-08 08:25:22.041393 2023-07-08 08:25:22.041403 97aa12d0-b40e-4f76-b963-a28a3b3b9e27 {"md5": "d30bbf10a7d7392edfee705edcef692d", "pid": "A018939247", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018939247", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018939247", "source": "RERO"}], "preferred_name": "Sensburg, Ernst Philipp von", "authorized_access_point": "Sensburg, Ernst Philipp von"} 1 -2023-07-08 08:25:22.151517 2023-07-08 08:25:22.151532 7e74928c-3249-4318-886e-e3d5348e8177 {"md5": "818b2d558b9ab4cb225274dbd1144a6b", "pid": "A018946790", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018946790", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018946790", "source": "RERO"}], "preferred_name": "Martine, L junior", "authorized_access_point": "Martine, L junior"} 1 -2023-07-08 08:25:22.267171 2023-07-08 08:25:22.267182 07a4c80f-9b38-462c-ae16-8920a2998061 {"md5": "df3c06a52f75337eb6de4cfa36602171", "pid": "A018953919", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018953919", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018953919", "source": "RERO"}], "preferred_name": "Weissbrodt, Noémie", "authorized_access_point": "Weissbrodt, Noémie"} 1 -2023-07-08 08:25:22.370609 2023-07-08 08:25:22.37062 ce6c46ca-df60-49a6-a0fb-671f56be4fd2 {"md5": "7c16492c41a3eeda83d149d23df6e67c", "pid": "A018954799", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018954799", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018954799", "source": "RERO"}], "preferred_name": "Souché, A", "authorized_access_point": "Souché, A"} 1 -2023-07-08 08:25:22.469245 2023-07-08 08:25:22.469259 860236b2-1142-46df-a666-0b2364f1f9c6 {"md5": "f5946e218d85ee04dd41700e583850e4", "pid": "A018986263", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A018986263", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018986263", "source": "RERO"}], "preferred_name": "Whisnant, Rebecca", "authorized_access_point": "Whisnant, Rebecca"} 1 -2023-07-08 08:25:22.575723 2023-07-08 08:25:22.575738 5138013c-0877-46e8-9eb5-963200405fb8 {"md5": "601f4732c9e11f4bb713336531ed921f", "pid": "A019010974", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A019010974", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A019010974", "source": "RERO"}], "variant_name": ["Tetsuo, Owada,"], "date_of_birth": "1944", "preferred_name": "Owada, Tetsuo,", "variant_access_point": ["Tetsuo, Owada, 1944-"], "parallel_access_point": ["小和田哲男, 1944-"], "authorized_access_point": "Owada, Tetsuo, 1944-", "biographical_information": ["Docteur ès lettres, diplômé de l'Université de Waseda, Tōkyō, Japon. - En poste à l'Université de Shizuoka, Japon (en 2006). - Spécialiste de l'histoire médiévale du Japon"]} 1 -2023-07-08 08:25:22.721014 2023-07-08 08:25:22.721024 c901cbfa-7a2e-4cf5-9b53-2a7a5b2a069b {"md5": "09d86bf2e843bddcd601281727deb723", "pid": "A019019750", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A019019750", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A019019750", "source": "RERO"}], "preferred_name": "Nei Menggu she hui ke xue yuan. Li shi suo. \\"Menggu zu tong shi\\" bian xie zu", "parallel_access_point": ["內蒙古社会科学院. 历史所. \\"蒙古族通史\\" 编写组"], "authorized_access_point": "Nei Menggu she hui ke xue yuan. Li shi suo. \\"Menggu zu tong shi\\" bian xie zu"} 1 -2023-07-08 08:25:22.869663 2023-07-08 08:25:22.869669 45dbc8d9-7063-4fb2-a1dc-cdaa6b463e77 {"md5": "6c791851f7fcf720e2402539a5864e03", "pid": "A019033792", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A019033792", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A019033792", "source": "RERO"}], "preferred_name": "Gern, Didier", "authorized_access_point": "Gern, Didier"} 1 -2023-07-08 08:25:22.978817 2023-07-08 08:25:22.978831 6fbdf168-42b7-4db8-b711-48724a6c867e {"md5": "71809d5173a5f24188197435ec6970bc", "pid": "A019052882", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A019052882", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A019052882", "source": "RERO"}], "preferred_name": "O'Hara, S. Paul", "authorized_access_point": "O'Hara, S. Paul"} 1 -2023-07-08 08:25:23.121201 2023-07-08 08:25:23.121211 bde44de9-6051-468f-8b89-bf4c533ef236 {"md5": "28fe9263b4238f4cbfbe6632d9f97abb", "pid": "A019060042", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A019060042", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A019060042", "source": "RERO"}], "preferred_name": "Asociación Niños del Fortín", "authorized_access_point": "Asociación Niños del Fortín"} 1 -2023-07-08 08:25:23.222736 2023-07-08 08:25:23.222751 f6bacaf1-868b-43b0-aa07-7f1144f28570 {"md5": "f260c35e28461fb87b9d1496f6e5141f", "pid": "A019072876", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A019072876", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A019072876", "source": "RERO"}], "date_of_birth": "1977", "preferred_name": "Stephens, Mark B.,", "authorized_access_point": "Stephens, Mark B., 1977-", "biographical_information": ["Mark B. Stephens est actuellement professeur d'études bibliques à l'Institut Wesley (Australie)"]} 1 -2023-07-08 08:25:23.388718 2023-07-08 08:25:23.38873 c62aad05-a74e-4a00-80de-626bc6a2463a {"md5": "fec962d812597ce8f57d66db7a61f68a", "pid": "A019100305", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A019100305", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A019100305", "source": "RERO"}], "preferred_name": "Sorrin, Pierrick", "authorized_access_point": "Sorrin, Pierrick"} 1 -2023-07-08 08:25:23.500534 2023-07-08 08:25:23.500542 749fd72a-09bb-415e-aa68-f05645a1e900 {"md5": "a15ef8838b7a6ab0e509bd7ef58052f1", "pid": "A019104065", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A019104065", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A019104065", "source": "RERO"}], "preferred_name": "Pelizza, Giovanna", "authorized_access_point": "Pelizza, Giovanna"} 1 -2023-07-08 08:25:23.617417 2023-07-08 08:25:23.617428 100fa43c-54fc-4f32-8d5f-9c249fb2ae68 {"md5": "0a268dc6f1c71ff75e6082560b5f94fc", "pid": "A019111556", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A019111556", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A019111556", "source": "RERO"}], "preferred_name": "Goldenberg, Pomme", "authorized_access_point": "Goldenberg, Pomme"} 1 -2023-07-08 08:25:23.74807 2023-07-08 08:25:23.748081 34cf5d87-86d3-4c13-aa8d-16e15b29ca24 {"md5": "e4a9588e074d6bdff7141507ff7bd691", "pid": "A019131066", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A019131066", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A019131066", "source": "RERO"}], "preferred_name": "Othenin-Girard Landry, Michèle", "authorized_access_point": "Othenin-Girard Landry, Michèle"} 1 -2023-07-08 08:25:23.871478 2023-07-08 08:25:23.871495 0ed3c95d-fbc9-45b0-a912-35ff619d3eb1 {"md5": "5604a5be1ce26b88e60f4ecc9b1a67a9", "pid": "A019135541", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A019135541", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A019135541", "source": "RERO"}], "preferred_name": "Theurillat, Emmanuelle", "authorized_access_point": "Theurillat, Emmanuelle"} 1 -2023-07-08 08:25:24.021485 2023-07-08 08:25:24.021502 298a4324-2f9f-494c-b4b2-39ec9e85800f {"md5": "56b0a985baf788b3a536f657ab3fa8a4", "pid": "A019156002", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A019156002", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A019156002", "source": "RERO"}], "preferred_name": "Lalonde, Jean-Yves", "authorized_access_point": "Lalonde, Jean-Yves"} 1 -2023-07-08 08:25:24.153456 2023-07-08 08:25:24.153465 1219ddc4-3530-4c81-9d67-4ead0a31d60d {"md5": "c4db6986532f3ee513b7ecb5a62b92ed", "pid": "A019212102", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A019212102", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A019212102", "source": "RERO"}], "preferred_name": "Chirol, Marie-Magdeleine", "authorized_access_point": "Chirol, Marie-Magdeleine"} 1 -2023-07-08 08:25:24.271844 2023-07-08 08:25:24.271848 e1499dd7-d130-4df9-9a13-16e5127a4e57 {"md5": "69effb29f4414bb057b8a7e759a528ec", "pid": "A019243832", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A019243832", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A019243832", "source": "RERO"}], "preferred_name": "Deguilloux, Laurence", "authorized_access_point": "Deguilloux, Laurence"} 1 -2023-07-08 08:25:24.387293 2023-07-08 08:25:24.387414 0c058b08-a23b-4661-91cc-637be36f484b {"md5": "e67f544c3fbceb41ebfcefbf35e212b2", "pid": "A020002432", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A020002432", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020002432", "source": "RERO"}], "preferred_name": "Bo, Armando", "authorized_access_point": "Bo, Armando"} 1 -2023-07-08 08:25:24.503898 2023-07-08 08:25:24.503907 4f458fc1-6815-4450-866d-1a6ac1a285df {"md5": "0de6b98510fa0a3a2863f1f2c3ebfc7c", "pid": "A020018697", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A020018697", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020018697", "source": "RERO"}], "preferred_name": "Förderverein Naturgut Ophoven", "authorized_access_point": "Förderverein Naturgut Ophoven"} 1 -2023-07-08 08:25:24.618575 2023-07-08 08:25:24.618584 05c0f383-4bc5-41ea-96e1-1debfbc34e83 {"md5": "43da2d67d7faa5537d83b66deb8a219e", "pid": "A020026743", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A020026743", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020026743", "source": "RERO"}], "preferred_name": "Lesage, Pauline", "authorized_access_point": "Lesage, Pauline"} 1 -2023-07-08 08:25:24.741634 2023-07-08 08:25:24.74164 99e1bde1-6187-4d56-bc00-6191ea561296 {"md5": "67db1e64d4d9bfffda3c6bb108ee58be", "pid": "A020053143", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A020053143", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020053143", "source": "RERO"}], "preferred_name": "Ruhierre, Edme", "authorized_access_point": "Ruhierre, Edme"} 1 -2023-07-08 08:25:24.855386 2023-07-08 08:25:24.855396 c3ae8c61-cb5f-4e79-b881-202a0c04c544 {"md5": "16c4828a683dd0caa8074e717c06ad40", "pid": "A020057293", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A020057293", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020057293", "source": "RERO"}], "preferred_name": "Knapp, Ladina", "authorized_access_point": "Knapp, Ladina"} 1 -2023-07-08 08:25:24.974873 2023-07-08 08:25:24.974884 16a62983-4c10-4085-b4fa-a5b85340b170 {"md5": "67cdf1ccea520d208f45983bd6fce630", "pid": "A020059215", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "juriste", "identifier": "http://data.rero.ch/02-A020059215", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020059215", "source": "RERO"}], "preferred_name": "Remy, Franz, juriste", "authorized_access_point": "Remy, Franz, juriste"} 1 -2023-07-08 08:25:25.087022 2023-07-08 08:25:25.087032 421b57cd-fef7-4f6a-a6db-f75735797fa2 {"md5": "1901d1e4febbb22e5e26e101206361de", "pid": "A020064866", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A020064866", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020064866", "source": "RERO"}], "preferred_name": "Robbins, G", "authorized_access_point": "Robbins, G"} 1 -2023-07-08 08:25:25.219825 2023-07-08 08:25:25.219835 30c2c22c-d5c1-4aa8-ab15-0f587f1c4114 {"md5": "7bfdefb7561f6590d18b3b09607db187", "pid": "A020072898", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A020072898", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020072898", "source": "RERO"}], "preferred_name": "Lehner, Béatrice", "authorized_access_point": "Lehner, Béatrice"} 1 -2023-07-08 08:25:25.317524 2023-07-08 08:25:25.317532 eeca2b97-243c-45d5-a063-488f53ca6db3 {"md5": "db318b8f5945986c979f3b6aa569f773", "pid": "A020078206", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A020078206", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020078206", "source": "RERO"}], "preferred_name": "Mey, Eugène", "authorized_access_point": "Mey, Eugène"} 1 -2023-07-08 08:25:25.412055 2023-07-08 08:25:25.412069 29afa6dd-c3af-420a-b0e9-4adf3b516066 {"md5": "48d8399601319ee1719fd22bba4b35e1", "pid": "A020092031", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A020092031", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020092031", "source": "RERO"}], "preferred_name": "Heathcote, Gina", "authorized_access_point": "Heathcote, Gina"} 1 -2023-07-08 08:25:25.516211 2023-07-08 08:25:25.516224 2e8f2abf-68d2-468c-8203-8e1151cf508a {"md5": "c73af73bb305151901a9e679da58fc00", "pid": "A020092462", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A020092462", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020092462", "source": "RERO"}], "preferred_name": "Meng, Florent", "authorized_access_point": "Meng, Florent"} 1 -2023-07-08 08:25:25.62029 2023-07-08 08:25:25.620301 6c42a102-c2f4-4ac4-814a-7c7a82de177d {"md5": "3aa36b2fde0193ed5791d8690c8895a3", "pid": "A020092476", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A020092476", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020092476", "source": "RERO"}], "preferred_name": "Lauber, Jules", "authorized_access_point": "Lauber, Jules"} 1 -2023-07-08 08:25:25.716024 2023-07-08 08:25:25.716039 7834f61f-c8a6-460a-a199-4222af55bebd {"md5": "44afcdf37c04e0fac675fedba2b58109", "pid": "A020103298", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A020103298", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020103298", "source": "RERO"}], "preferred_name": "Hronék, Upravil Miroslav", "authorized_access_point": "Hronék, Upravil Miroslav"} 1 -2023-07-08 08:25:25.838498 2023-07-08 08:25:25.838513 3a1f0d21-578c-490a-8634-4cd17b225b60 {"md5": "81f549afb705223a7affc4092513db95", "pid": "A020121326", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A020121326", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020121326", "source": "RERO"}], "preferred_name": "Fantasia", "authorized_access_point": "Fantasia"} 1 -2023-07-08 08:25:25.945936 2023-07-08 08:25:25.945953 2652c301-0e78-4b24-936a-33d6a543688d {"md5": "22d870f13833236687f8fea661647abd", "pid": "A020122182", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A020122182", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020122182", "source": "RERO"}], "variant_name": ["Meya, Raoul Kiyangi,"], "date_of_birth": "1970", "preferred_name": "Kiyangi Meya, Raoul,", "variant_access_point": ["Meya, Raoul Kiyangi, 1970-"], "authorized_access_point": "Kiyangi Meya, Raoul, 1970-"} 1 -2023-07-08 08:25:26.035883 2023-07-08 08:25:26.035894 e2a49daf-c698-49f5-be3c-434dc1242a5d {"md5": "a43607019e5a9d060eee2b2cd2614ddc", "pid": "A020122584", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A020122584", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020122584", "source": "RERO"}], "preferred_name": "Rosset, Xavier", "authorized_access_point": "Rosset, Xavier"} 1 -2023-07-08 08:25:26.137628 2023-07-08 08:25:26.137638 76139889-e790-4985-b136-6ef472b45ac5 {"md5": "f3a5197db7b22ee0ad683dad5166e072", "pid": "A020128356", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A020128356", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020128356", "source": "RERO"}], "preferred_name": "Chalmas, Robert", "authorized_access_point": "Chalmas, Robert"} 1 -2023-07-08 08:25:26.231965 2023-07-08 08:25:26.231976 c0ec0614-4a29-42e7-9c23-0531c6634b54 {"md5": "cb3cdd13f6f5ce303dd4b64cbf1cd295", "pid": "A020139475", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A020139475", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020139475", "source": "RERO"}], "preferred_name": "Haberer, Gisela", "authorized_access_point": "Haberer, Gisela"} 1 -2023-07-08 08:25:26.332264 2023-07-08 08:25:26.332275 01bfc1a3-553a-43a8-81d5-53d75ffaf706 {"md5": "dfe7536275429309e0bbd9632fb647c3", "pid": "A020148399", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A020148399", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020148399", "source": "RERO"}], "preferred_name": "Velia, Qemal", "authorized_access_point": "Velia, Qemal"} 1 -2023-07-08 08:25:26.435384 2023-07-08 08:25:26.435393 d4e95c8f-6aab-4652-88c9-bf5b5b3ea7cd {"md5": "aca061099aad5813b205eb44d9052f60", "pid": "A020157288", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A020157288", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020157288", "source": "RERO"}], "preferred_name": "Herrera, Velino", "authorized_access_point": "Herrera, Velino"} 1 -2023-07-08 08:25:26.540935 2023-07-08 08:25:26.540949 68857ef4-c311-4bf5-b79d-cb4c5d6b4f5a {"md5": "c0d91f23d3cfcf1de1af6b0f40a79da9", "pid": "A020168707", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A020168707", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020168707", "source": "RERO"}], "preferred_name": "Glauser, Louis", "authorized_access_point": "Glauser, Louis"} 1 -2023-07-08 08:25:26.636177 2023-07-08 08:25:26.636189 9c76c61c-7d12-4c31-af7d-6193c633f87c {"md5": "4c272198276e9f3cd7c45a55a16d674c", "pid": "A020209272", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A020209272", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020209272", "source": "RERO"}], "preferred_name": "Valdambrini, Fabio", "authorized_access_point": "Valdambrini, Fabio"} 1 -2023-07-08 08:25:26.734709 2023-07-08 08:25:26.734719 65d14b1a-b0e1-41f0-ab4a-41f67cb79513 {"md5": "1ab636b2f0619b1d42180564fc52eac2", "pid": "A020211267", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A020211267", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020211267", "source": "RERO"}], "preferred_name": "Nowakowska, Wanda", "authorized_access_point": "Nowakowska, Wanda"} 1 -2023-07-08 08:25:26.849276 2023-07-08 08:25:26.84929 bfc6ba1e-1848-48ac-bd99-5b5c1dfa8e0b {"md5": "7e95e9cb8a267ae20e71151927e7ad77", "pid": "A020228645", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A020228645", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020228645", "source": "RERO"}], "preferred_name": "Routon, Kenneth", "authorized_access_point": "Routon, Kenneth"} 1 -2023-07-08 08:25:26.962812 2023-07-08 08:25:26.962826 28bf98d9-8507-4cec-8c39-7501aaaabdd9 {"md5": "09b7b0c6e9487f41d41cdfd5127a0096", "pid": "A020232527", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A020232527", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020232527", "source": "RERO"}], "preferred_name": "Rey, Antoinette", "authorized_access_point": "Rey, Antoinette", "biographical_information": ["Dates de vie: 1880-1938"]} 1 -2023-07-08 08:25:27.080515 2023-07-08 08:25:27.080527 56cc86e1-1ba1-4486-a3d4-411b0eba396f {"md5": "76a72b62725121d25f457a153a6a77f2", "pid": "A020244189", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A020244189", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020244189", "source": "RERO"}], "preferred_name": "Agbloe, Marlys", "authorized_access_point": "Agbloe, Marlys"} 1 -2023-07-08 08:25:27.185496 2023-07-08 08:25:27.185506 3ec1532c-8132-4aa3-9807-c855c39029b1 {"md5": "b6b31889dcfe1840bae8e4f633f7922f", "pid": "A020276000", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A020276000", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020276000", "source": "RERO"}], "preferred_name": "Keneman, Ayn F", "authorized_access_point": "Keneman, Ayn F"} 1 -2023-07-08 08:25:27.288197 2023-07-08 08:25:27.288206 ed01275d-0ae6-4db7-9700-6e6b18a885f5 {"md5": "646be4a3d9e4a196060e11335e5c50f6", "pid": "A020278434", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A020278434", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020278434", "source": "RERO"}], "preferred_name": "Thoubert, Thierry", "authorized_access_point": "Thoubert, Thierry"} 1 -2023-07-08 08:25:27.385615 2023-07-08 08:25:27.385623 df66e7f7-0719-49dc-b118-1f350ca6dca8 {"md5": "6d8a50090adfddb8314b9a124da5b6ee", "pid": "A020285886", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A020285886", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020285886", "source": "RERO"}], "preferred_name": "Furon, Frédéric", "authorized_access_point": "Furon, Frédéric"} 1 -2023-07-08 08:25:27.501075 2023-07-08 08:25:27.501088 4d0014ce-7af8-42d5-8b6b-f1def44bd133 {"md5": "2b3edec3ac42f60bef94c0741b816a09", "pid": "A020287613", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A020287613", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020287613", "source": "RERO"}], "preferred_name": "Péquignot, Priscilla", "authorized_access_point": "Péquignot, Priscilla"} 1 -2023-07-08 08:25:27.613129 2023-07-08 08:25:27.613143 b0ee4573-8785-4da3-9f93-740fc5cb825a {"md5": "ca6f94d8ef56f59a830954440322ce71", "pid": "A020317114", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A020317114", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020317114", "source": "RERO"}], "preferred_name": "Herath, H.M.A", "authorized_access_point": "Herath, H.M.A"} 1 -2023-07-08 08:25:27.737205 2023-07-08 08:25:27.737216 cc7d8cdd-9682-49d9-b315-84149719ea2e {"md5": "4fe079573ca1af77dc3707c11cc33122", "pid": "A020337204", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A020337204", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020337204", "source": "RERO"}], "preferred_name": "Symposium on the Reliability of Nuclear Power Plants (1975 :", "authorized_access_point": "Symposium on the Reliability of Nuclear Power Plants (1975 : Innsbruck)"} 1 -2023-07-08 08:25:27.867718 2023-07-08 08:25:27.86773 7c17a687-232a-41fa-b828-baf12b9276e5 {"md5": "c1d2f344372463c78db939bcd2de5431", "pid": "A020340385", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A020340385", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020340385", "source": "RERO"}], "date_of_birth": "1956", "preferred_name": "Li, jun,", "parallel_access_point": ["李军, 1956-"], "authorized_access_point": "Li, jun, 1956-"} 1 -2023-07-08 08:25:27.968303 2023-07-08 08:25:27.968316 ce4fd4dc-3637-426b-a098-d500bb757238 {"md5": "5e3898512b6bdc0fb26eb3044c2f665e", "pid": "A020351109", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A020351109", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020351109", "source": "RERO"}], "preferred_name": "Petersen, Syndy", "authorized_access_point": "Petersen, Syndy"} 1 -2023-07-08 08:25:28.086357 2023-07-08 08:25:28.086369 3eced153-a670-44f0-a917-6f07856a2cdb {"md5": "7d12a4d1ffeea6f349a10869c6bb0293", "pid": "A020355982", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A020355982", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020355982", "source": "RERO"}], "preferred_name": "Chief", "authorized_access_point": "Chief", "biographical_information": ["Chief est un musicien lausannois né en 1981."]} 1 -2023-07-08 08:25:28.187593 2023-07-08 08:25:28.187604 7c4ed818-6ab9-4192-b05f-37dde925dc6b {"md5": "10b0f1e573cced4c832367f622391b1f", "pid": "A020360095", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A020360095", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020360095", "source": "RERO"}], "variant_name": ["Simposio de Física Matemática", "Simposio Internacional de Física Matemática", "Symposium on Mathematical Physics"], "preferred_name": "International Symposium on Mathematical Physics", "variant_access_point": ["Simposio de Física Matemática", "Simposio Internacional de Física Matemática", "Symposium on Mathematical Physics"], "authorized_access_point": "International Symposium on Mathematical Physics"} 1 -2023-07-08 08:25:28.28867 2023-07-08 08:25:28.288682 ac12b11f-0033-4d83-bfc6-eb6a8ea6cadf {"md5": "1a6fd45f7e1501f4c8eccba6e281780a", "pid": "A020370205", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A020370205", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020370205", "source": "RERO"}], "preferred_name": "Lahiri, Jayasri", "authorized_access_point": "Lahiri, Jayasri"} 1 -2023-07-08 08:25:28.386722 2023-07-08 08:25:28.386735 e16cacca-d880-4c1f-b455-ff91c0d14ce4 {"md5": "05cd8ec8480a4a791bed4bf79be33819", "pid": "A020376367", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A020376367", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020376367", "source": "RERO"}], "preferred_name": "Garimond, Hippolyte", "authorized_access_point": "Garimond, Hippolyte"} 1 -2023-07-08 08:25:28.500781 2023-07-08 08:25:28.500787 1719a6cd-0ba3-438f-bdf0-68a738a03bea {"md5": "14aba1ea12912140ad4163d2bf1d2e3a", "pid": "A020377292", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A020377292", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020377292", "source": "RERO"}], "preferred_name": "Linder, Mauritius", "authorized_access_point": "Linder, Mauritius"} 1 -2023-07-08 08:25:28.615248 2023-07-08 08:25:28.615257 96bb0f74-226a-40cb-a2a8-00f3094eab7f {"md5": "10739ae9c41dd362bced1947d57f5b97", "pid": "A020398544", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A020398544", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020398544", "source": "RERO"}], "preferred_name": "Lojahn, Sandra", "authorized_access_point": "Lojahn, Sandra"} 1 -2023-07-08 08:25:28.716087 2023-07-08 08:25:28.716101 8fd322c2-646d-48c1-99d7-9bc8af40c359 {"md5": "cbf791c6f403e5ff6bd9586a9f5ed411", "pid": "A020413592", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A020413592", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020413592", "source": "RERO"}], "variant_name": ["Comissão para a Igualdade e para os Direitos das Mulheres", "CIDM (Comissão para a Igualdade e para os Direitos das Mulheres)", "Portugal. Commission for Equality and Women's Rights", "Portugal. Commission pour l'égalité et les droits des femmes", "Portugal. Commission pour l'égalité et pour les droits des femmes"], "preferred_name": "Portugal. Comissão para a Igualdade e para os Direitos das Mulheres", "variant_access_point": ["Comissão para a Igualdade e para os Direitos das Mulheres", "CIDM (Comissão para a Igualdade e para os Direitos das Mulheres)", "Portugal. Commission for Equality and Women's Rights", "Portugal. Commission pour l'égalité et les droits des femmes", "Portugal. Commission pour l'égalité et pour les droits des femmes"], "authorized_access_point": "Portugal. Comissão para a Igualdade e para os Direitos das Mulheres"} 1 -2023-07-08 08:25:30.451804 2023-07-08 08:25:30.451817 713bfa21-ec74-4bb4-abaf-1b808afad9de {"md5": "9da9b3e110eb198f4f1074533110c00a", "pid": "A021617173", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A021617173", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021617173", "source": "RERO"}], "preferred_name": "Olopade, Olusoga", "authorized_access_point": "Olopade, Olusoga"} 1 -2023-07-08 08:25:28.822384 2023-07-08 08:25:28.822399 397daf74-f420-4c6f-bdf1-9d70c870c7f2 {"md5": "7db218e7556161892f5bf449a4452c55", "pid": "A020415873", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A020415873", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020415873", "source": "RERO"}], "preferred_name": "Burofami", "authorized_access_point": "Burofami"} 1 -2023-07-08 08:25:28.91767 2023-07-08 08:25:28.917683 383930d2-79ee-44c3-94e6-63844ead78df {"md5": "f5287632f47695fd0406b8a65baa08fd", "pid": "A020417148", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A020417148", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020417148", "source": "RERO"}], "preferred_name": "Debunne, Sandrine", "authorized_access_point": "Debunne, Sandrine"} 1 -2023-07-08 08:25:29.017769 2023-07-08 08:25:29.017784 0233a90c-f316-4157-ac6f-3ab622dab657 {"md5": "2f33f500e366d4f426bfcf666a824790", "pid": "A020436263", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A020436263", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020436263", "source": "RERO"}], "preferred_name": "Harmony, Korine", "authorized_access_point": "Harmony, Korine"} 1 -2023-07-08 08:25:29.119727 2023-07-08 08:25:29.119734 3bd80d74-04d0-4c33-acb1-60f4a5a249eb {"md5": "97fae3c79310e0f5b5277cbd540fe1d0", "pid": "A020461666", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A020461666", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020461666", "source": "RERO"}], "preferred_name": "Kern, Friederike", "authorized_access_point": "Kern, Friederike"} 1 -2023-07-08 08:25:29.237226 2023-07-08 08:25:29.237239 0cc69238-01da-4436-a513-145b89734be7 {"md5": "1f5ea0d483ec81db7aa40d6d9c8046ef", "pid": "A020462104", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A020462104", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020462104", "source": "RERO"}], "preferred_name": "Dengler, Paul", "authorized_access_point": "Dengler, Paul"} 1 -2023-07-08 08:25:29.336987 2023-07-08 08:25:29.336999 e710fd18-e344-48a0-93e1-64ee87210443 {"md5": "6010254e7704251c6e5397cc35c45adb", "pid": "A020465572", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A020465572", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020465572", "source": "RERO"}], "preferred_name": "Buffat, Aurélie", "authorized_access_point": "Buffat, Aurélie"} 1 -2023-07-08 08:25:29.452669 2023-07-08 08:25:29.452681 4c89b7dc-743b-4e0a-9755-fff2aea065d5 {"md5": "7dcc512f097b1960a3817a599583d219", "pid": "A020465592", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A020465592", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020465592", "source": "RERO"}], "preferred_name": "Barisoni, Paolo", "authorized_access_point": "Barisoni, Paolo"} 1 -2023-07-08 08:25:29.552234 2023-07-08 08:25:29.552247 a2992607-f03c-4f9e-860c-5d046d784878 {"md5": "497855ee24b1767fd5cf973e39f15740", "pid": "A020471717", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A020471717", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020471717", "source": "RERO"}], "preferred_name": "Eastman, David L", "authorized_access_point": "Eastman, David L"} 1 -2023-07-08 08:25:29.664194 2023-07-08 08:25:29.664209 656c30f6-3adf-40e1-8df3-95ae45d2e12a {"md5": "dcb378d83150e43e76f9606016cd2c6c", "pid": "A020478658", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A020478658", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020478658", "source": "RERO"}], "preferred_name": "Scowen, Reed", "authorized_access_point": "Scowen, Reed"} 1 -2023-07-08 08:25:29.78469 2023-07-08 08:25:29.7847 953ba3de-1b5e-401b-b55a-9a360338037b {"md5": "9071715e981ac3efac7929931d2a716d", "pid": "A020487139", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A020487139", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020487139", "source": "RERO"}], "preferred_name": "Leeners, Jörg", "authorized_access_point": "Leeners, Jörg"} 1 -2023-07-08 08:25:29.882288 2023-07-08 08:25:29.882295 2f076a1e-ba4d-4b82-befd-fda10b8098f3 {"md5": "2f36ad3db055b2c9d9c5ef48271d1c75", "pid": "A020500799", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A020500799", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020500799", "source": "RERO"}], "preferred_name": "Lapp, Axel", "authorized_access_point": "Lapp, Axel"} 1 -2023-07-08 08:25:29.996638 2023-07-08 08:25:29.996653 b34be0e7-0844-44cd-a203-28611f726c85 {"md5": "d0cea0ed4443e1f9186ec80cdf59be01", "pid": "A021510454", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A021510454", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021510454", "source": "RERO"}], "preferred_name": "Géorgie (république). Armée", "authorized_access_point": "Géorgie (république). Armée"} 1 -2023-07-08 08:25:30.10414 2023-07-08 08:25:30.104146 ab1877d4-9321-4865-9156-19e2cb445a28 {"md5": "d0890cecb97c3a704450d05cf5b312c2", "pid": "A021514179", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A021514179", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021514179", "source": "RERO"}], "date_of_birth": "1979", "preferred_name": "Dubbini, Rachele,", "authorized_access_point": "Dubbini, Rachele, 1979-", "biographical_information": ["Archéologue"]} 1 -2023-07-08 08:25:30.220154 2023-07-08 08:25:30.220161 8190f346-5fe2-4489-bc38-ccff1b2adacb {"md5": "338eb648a09f85fd882fe5fd2697d0f9", "pid": "A021535410", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A021535410", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021535410", "source": "RERO"}], "preferred_name": "Sanin, Francisco", "authorized_access_point": "Sanin, Francisco"} 1 -2023-07-08 08:25:30.333092 2023-07-08 08:25:30.333103 150b40e6-a222-43b2-b219-eba1af441f97 {"md5": "3b583cd1181dfef4943934ab539e2b4d", "pid": "A021609811", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A021609811", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021609811", "source": "RERO"}], "preferred_name": "Becker, Madeleine", "authorized_access_point": "Becker, Madeleine"} 1 -2023-07-08 08:25:30.569432 2023-07-08 08:25:30.569438 f555ef32-dbe6-4f9e-ba1e-30f29b9c2a84 {"md5": "6535777588b1b505d38db15a728c9367", "pid": "A021621256", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A021621256", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021621256", "source": "RERO"}], "date_of_birth": "1624", "date_of_death": "1701", "preferred_name": "Cavelier, Jean,", "authorized_access_point": "Cavelier, Jean, 1624-1701"} 1 -2023-07-08 08:25:30.676942 2023-07-08 08:25:30.676954 c85d31e5-80e3-43a6-8ea1-d2ec40b6f2e5 {"md5": "f082bbfdff66ae86342cbb72a78fb599", "pid": "A021627558", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A021627558", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021627558", "source": "RERO"}], "preferred_name": "Wäckerle, Josef", "authorized_access_point": "Wäckerle, Josef"} 1 -2023-07-08 08:25:30.838772 2023-07-08 08:25:30.838778 b0402ea2-e24d-4bc5-b8f4-11cf13f96b84 {"md5": "6bec4b315b9f5802005484611b4ccd83", "pid": "A021643724", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A021643724", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021643724", "source": "RERO"}], "variant_name": ["Wen-hsien, Guo"], "preferred_name": "Guo, Wen-hsien", "variant_access_point": ["Wen-hsien, Guo"], "authorized_access_point": "Guo, Wen-hsien"} 1 -2023-07-08 08:25:30.963776 2023-07-08 08:25:30.96379 847a11b3-3e9f-4981-9e5c-f22dcc3c6b0e {"md5": "dc82fdf6e983e3d73a241c06959083ab", "pid": "A021650553", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A021650553", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021650553", "source": "RERO"}], "preferred_name": "Öhninger, Johann J", "authorized_access_point": "Öhninger, Johann J"} 1 -2023-07-08 08:25:31.097288 2023-07-08 08:25:31.097303 809533b4-e43d-4918-a445-c6882a07ac11 {"md5": "73fbf32b4a9ad6625c3d5bf9533ff2aa", "pid": "A021653398", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A021653398", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021653398", "source": "RERO"}], "preferred_name": "Conférence permanente des pouvoirs locaux et régionaux de l'Europe (1993 :", "authorized_access_point": "Conférence permanente des pouvoirs locaux et régionaux de l'Europe (1993 : Stockholm). Séminaire"} 1 -2023-07-08 08:25:31.217684 2023-07-08 08:25:31.217695 a4b8dbd6-b8a6-4d1a-9868-24aeed0292da {"md5": "7655b6ebf7268b9ad1ec3aaeddebae5e", "pid": "A021657316", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A021657316", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021657316", "source": "RERO"}], "preferred_name": "Bustos, Natacha", "authorized_access_point": "Bustos, Natacha"} 1 -2023-07-08 08:25:31.351124 2023-07-08 08:25:31.351137 7a907444-526d-42f3-bab1-379e8c949633 {"md5": "850372c968c75826313b5af48f81844b", "pid": "A021665049", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A021665049", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021665049", "source": "RERO"}], "preferred_name": "Institut atlantique des affaires internationales (Paris). Conference (1980 :", "authorized_access_point": "Institut atlantique des affaires internationales (Paris). Conference (1980 : México)"} 1 -2023-07-08 08:25:31.53787 2023-07-08 08:25:31.537888 e59951cb-ab5a-4279-a6b7-bc4508a8e570 {"md5": "10a6af83c3c4cf247761c9b45f14cb19", "pid": "A021681210", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A021681210", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021681210", "source": "RERO"}], "variant_name": ["Rutgers University Art Gallery", "Rutgers University. University Art Gallery", "University Art Gallery (Rutgers University)"], "preferred_name": "Rutgers University (New Brunswick). Art Gallery", "variant_access_point": ["Rutgers University Art Gallery", "Rutgers University. University Art Gallery", "University Art Gallery (Rutgers University)"], "authorized_access_point": "Rutgers University (New Brunswick). Art Gallery"} 1 -2023-07-08 08:25:31.668987 2023-07-08 08:25:31.669004 2d5b9c32-323a-40a4-a997-4cad3aa71f2a {"md5": "3e7e2fa537fe09d2904f6baea2a15de8", "pid": "A021706387", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A021706387", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021706387", "source": "RERO"}], "preferred_name": "Holzer, Bettina", "authorized_access_point": "Holzer, Bettina"} 1 -2023-07-08 08:25:31.781852 2023-07-08 08:25:31.781867 44583d70-f407-4e53-bbf5-5fb132ce6c69 {"md5": "84f3217f632eaea208d9e8d5bfe3da6f", "pid": "A021753974", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A021753974", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021753974", "source": "RERO"}], "variant_name": ["Mneva, Nadežda Evgenʹevna"], "preferred_name": "Mneva, Nadezhda Evgenʹevna", "variant_access_point": ["Mneva, Nadežda Evgenʹevna"], "parallel_access_point": ["Мнева, Надежда Евгеньевна"], "authorized_access_point": "Mneva, Nadezhda Evgenʹevna"} 1 -2023-07-08 08:25:31.902602 2023-07-08 08:25:31.902614 d2af0132-137e-448c-8543-05832f83948a {"md5": "558281f275db8dc76aa09f4a8a1d53d8", "pid": "A021794133", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A021794133", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021794133", "source": "RERO"}], "variant_name": ["Šušurin, S.F"], "preferred_name": "Shushurin, S.F", "variant_access_point": ["Šušurin, S.F"], "parallel_access_point": ["Шушурин, С.Ф"], "authorized_access_point": "Shushurin, S.F"} 1 -2023-07-08 08:25:32.009785 2023-07-08 08:25:32.009796 c26b36f0-0bc4-4855-b449-31c430d0b1e6 {"md5": "f0dc06f84972bbe33a29364a291239fb", "pid": "A021819945", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A021819945", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021819945", "source": "RERO"}], "variant_name": ["Knjazev, Boris Vladimirovič"], "preferred_name": "Kni︠a︡zev, Boris Vladimirovich", "variant_access_point": ["Knjazev, Boris Vladimirovič"], "parallel_access_point": ["Князев, Борис Владимирович"], "authorized_access_point": "Kni︠a︡zev, Boris Vladimirovich"} 1 -2023-07-08 08:25:33.821719 2023-07-08 08:25:33.821727 8d78096f-62f8-44b5-b930-a438f9a9e2d4 {"md5": "e458373be685918007ea44f7a6e079af", "pid": "A022508588", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A022508588", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022508588", "source": "RERO"}], "preferred_name": "Heierle, Anita", "authorized_access_point": "Heierle, Anita"} 1 -2023-07-08 08:25:32.145234 2023-07-08 08:25:32.145246 7a8dba84-3660-4b2d-bf93-73bc88f890dc {"md5": "452e1b7209244d1170cff19194226aa7", "pid": "A021917468", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A021917468", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021917468", "source": "RERO"}], "preferred_name": "Fānik, Fahd", "parallel_access_point": ["فانك، فهد"], "authorized_access_point": "Fānik, Fahd"} 1 -2023-07-08 08:25:32.280512 2023-07-08 08:25:32.280525 8b75bb12-ce06-4848-bf9a-7caff046f1c2 {"md5": "9f630fa7836f2c8e604798d1effe9e72", "pid": "A021918604", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A021918604", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021918604", "source": "RERO"}], "preferred_name": "Naṣr, Marsel", "authorized_access_point": "Naṣr, Marsel"} 1 -2023-07-08 08:25:32.399653 2023-07-08 08:25:32.399667 abae90ed-fa40-4bdc-b101-a158d323b199 {"md5": "6662363f2410f35df2c72e9cf7bd1981", "pid": "A021921193", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A021921193", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021921193", "source": "RERO"}], "preferred_name": "Topuridze, Elena Ivanovna", "parallel_access_point": ["Топуридзе, Елена Ивановна"], "authorized_access_point": "Topuridze, Elena Ivanovna"} 1 -2023-07-08 08:25:32.503042 2023-07-08 08:25:32.503053 7fbb088c-9b89-493a-9ee1-2b366283b8db {"md5": "f6b48fe34e6cae2b59c47444c291e116", "pid": "A021975601", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A021975601", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021975601", "source": "RERO"}], "preferred_name": "Frances-Claude", "authorized_access_point": "Frances-Claude"} 1 -2023-07-08 08:25:32.606919 2023-07-08 08:25:32.606933 5e24220b-cc3e-40b1-bffc-22e82e68f2cd {"md5": "9e3ddebda3a5f0703357c1bd87ae72e9", "pid": "A021988179", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A021988179", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021988179", "source": "RERO"}], "preferred_name": "Stojczew, Emil", "authorized_access_point": "Stojczew, Emil"} 1 -2023-07-08 08:25:32.74052 2023-07-08 08:25:32.740528 1dd9bcb6-3c0f-4304-928a-524f5a110b01 {"md5": "5a78d97411df8be4beb764af2701206f", "pid": "A021992182", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A021992182", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021992182", "source": "RERO"}], "preferred_name": "Fondeville, Richard", "authorized_access_point": "Fondeville, Richard", "biographical_information": ["Dates de vie: 18e s."]} 1 -2023-07-08 08:25:32.868291 2023-07-08 08:25:32.868304 277692be-577f-469c-ba08-c97d9528e1c1 {"md5": "4044bed85f8ebdf85fc966d487c732e1", "pid": "A021995847", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A021995847", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021995847", "source": "RERO"}], "preferred_name": "Bernecker, Cathy", "authorized_access_point": "Bernecker, Cathy"} 1 -2023-07-08 08:25:32.985546 2023-07-08 08:25:32.985557 81e31d7c-5da0-49c7-ad41-95333130722b {"md5": "8d6343034a0eb8d59fb3e3cabb1c475e", "pid": "A022010442", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A022010442", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022010442", "source": "RERO"}], "preferred_name": "Europäische Anwaltsvereinigung. Tagung 2012 :", "authorized_access_point": "Europäische Anwaltsvereinigung. Tagung (46 : 2012 : Lisboa)"} 1 -2023-07-08 08:25:33.105123 2023-07-08 08:25:33.105133 975f057f-26f7-4fc0-a1ed-7a79fc15f822 {"md5": "c56ef274a17afa222f2f3da96abad762", "pid": "A022253194", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A022253194", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022253194", "source": "RERO"}], "date_of_birth": "1904", "date_of_death": "2000", "preferred_name": "Gielgud, John,", "authorized_access_point": "Gielgud, John, 1904-2000"} 1 -2023-07-08 08:25:33.22134 2023-07-08 08:25:33.221355 919a953d-d039-462e-8ebc-0a64fd6d9322 {"md5": "cfc9da2f2d6856f11c99984413e3e5e7", "pid": "A022261345", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A022261345", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022261345", "source": "RERO"}], "date_of_birth": "1980", "preferred_name": "Grosser, Florian,", "authorized_access_point": "Grosser, Florian, 1980-"} 1 -2023-07-08 08:25:33.354924 2023-07-08 08:25:33.354937 4eeb62df-2bd3-4b66-b1d5-9bc32b49b658 {"md5": "c30401adf84e193018a25234befaffab", "pid": "A022263478", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A022263478", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022263478", "source": "RERO"}], "preferred_name": "Krasiński, Franciszek", "authorized_access_point": "Krasiński, Franciszek"} 1 -2023-07-08 08:25:33.462836 2023-07-08 08:25:33.462846 dabed84b-d426-44dd-9b04-621d941613e4 {"md5": "2ad929695ed70fddb744b4b98f459bd4", "pid": "A022416217", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A022416217", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022416217", "source": "RERO"}], "preferred_name": "Coordination 2010 2010 :", "authorized_access_point": "Coordination 2010 (12 : 2010 : Amsterdam)"} 1 -2023-07-08 08:25:33.567355 2023-07-08 08:25:33.567374 2a55f422-bf7f-4249-9f6b-bba5c93caab4 {"md5": "668899d40e0386fd6af93cf0f2ca9aee", "pid": "A022476006", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A022476006", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022476006", "source": "RERO"}], "preferred_name": "Exposition internationale (1876 :", "authorized_access_point": "Exposition internationale (1876 : Philadelphia). Section suisse"} 1 -2023-07-08 08:25:33.722189 2023-07-08 08:25:33.722193 2615416a-3659-44c1-aaf7-ef7770989c45 {"md5": "d4a37d2f8a723698411df16a8a248970", "pid": "A022502492", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A022502492", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022502492", "source": "RERO"}], "preferred_name": "Joe Cuba Sextette", "authorized_access_point": "Joe Cuba Sextette"} 1 -2023-07-08 08:25:33.947143 2023-07-08 08:25:33.947156 60cbe99d-a6ab-4fac-afca-4698c33cb7a4 {"md5": "a01dc9df2228fa94b4d7b5aa3f1b9ac9", "pid": "A022508598", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A022508598", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022508598", "source": "RERO"}], "preferred_name": "Tambor, Joseph", "authorized_access_point": "Tambor, Joseph"} 1 -2023-07-08 08:25:34.042484 2023-07-08 08:25:34.042493 83e985bc-f941-41b4-8dae-89f65d5252b9 {"md5": "ea2b087554f99714dcc1891fdbeef054", "pid": "A022512216", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A022512216", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022512216", "source": "RERO"}], "preferred_name": "Pham, Diane", "authorized_access_point": "Pham, Diane"} 1 -2023-07-08 08:25:34.150126 2023-07-08 08:25:34.150137 d317ee90-3ae3-489c-8517-f5383996607e {"md5": "e1f5da9fc71a24e1dc8830a5bfc6cd0a", "pid": "A022533394", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A022533394", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022533394", "source": "RERO"}], "preferred_name": "Reimer, Vera", "authorized_access_point": "Reimer, Vera"} 1 -2023-07-08 08:25:34.2835 2023-07-08 08:25:34.283511 6d12c382-21f1-4e1a-b422-998aef525c4f {"md5": "06b56513344072cb75cc68dafafb9d88", "pid": "A022545173", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A022545173", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022545173", "source": "RERO"}], "preferred_name": "Avenell, Simon Andrew", "authorized_access_point": "Avenell, Simon Andrew"} 1 -2023-07-08 08:25:34.383723 2023-07-08 08:25:34.383732 2682c0bf-c2a6-45d0-a3db-fd26fa6a7448 {"md5": "082969164082225e9b671fbced701874", "pid": "A022553969", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A022553969", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022553969", "source": "RERO"}], "preferred_name": "Paquet, François", "authorized_access_point": "Paquet, François"} 1 -2023-07-08 08:25:34.517981 2023-07-08 08:25:34.517987 620f2917-91fa-43f7-baee-2a197f1de7f5 {"md5": "781ee8bd790cfeaab27468f5032a42e2", "pid": "A022563739", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A022563739", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022563739", "source": "RERO"}], "preferred_name": "Meyer, Lia", "authorized_access_point": "Meyer, Lia"} 1 -2023-07-08 08:25:34.634999 2023-07-08 08:25:34.63501 55e109ed-4682-46e4-bd21-a199d8869554 {"md5": "01a6bba9fc2c572211abd13f69d55387", "pid": "A022609222", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A022609222", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022609222", "source": "RERO"}], "preferred_name": "Klášter Nový Dvůr", "authorized_access_point": "Klášter Nový Dvůr"} 1 -2023-07-08 08:25:34.735814 2023-07-08 08:25:34.735823 8b66dc15-5b3e-44b7-8209-3f474694d1eb {"md5": "dd579d04d2e7838a8864e48fc4c082d4", "pid": "A022669691", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A022669691", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022669691", "source": "RERO"}], "preferred_name": "Toisol, J", "authorized_access_point": "Toisol, J"} 1 -2023-07-08 08:25:34.848921 2023-07-08 08:25:34.848936 b2e19fd7-8bae-4acf-be91-c91236693959 {"md5": "1540e571edf6335cb320cabca366db7c", "pid": "A022727201", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A022727201", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022727201", "source": "RERO"}], "preferred_name": "Nidermeyr, Marcus", "authorized_access_point": "Nidermeyr, Marcus"} 1 -2023-07-08 08:25:34.963755 2023-07-08 08:25:34.963769 cc75faaf-f0cb-4c27-b5b7-985a29031ec8 {"md5": "8d15e524113abc16bde7daed4b5c3248", "pid": "A022728227", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A022728227", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022728227", "source": "RERO"}], "preferred_name": "Wiltener Sängerknaben", "authorized_access_point": "Wiltener Sängerknaben"} 1 -2023-07-08 08:25:35.070144 2023-07-08 08:25:35.070156 6a1a429a-c763-4da4-a451-1aff0687e4f4 {"md5": "b0a83aaef57b3345bd26a74da434c8cf", "pid": "A022750943", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A022750943", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022750943", "source": "RERO"}], "preferred_name": "Theimer, Uwe", "authorized_access_point": "Theimer, Uwe"} 1 -2023-07-08 08:25:35.168602 2023-07-08 08:25:35.168613 cf9c08d2-8d77-45de-adfc-750397e65529 {"md5": "5106123b21ae29e48d87d2bbe2acf2ed", "pid": "A022755606", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A022755606", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022755606", "source": "RERO"}], "preferred_name": "Trio d'anches René Daraux", "authorized_access_point": "Trio d'anches René Daraux"} 1 -2023-07-08 08:25:35.273015 2023-07-08 08:25:35.273028 08c30458-d25f-4e15-9429-e2611ef7d125 {"md5": "51581248798e769be7095e52b39b195e", "pid": "A022762257", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A022762257", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022762257", "source": "RERO"}], "preferred_name": "Iovanovich, Zhivoin", "authorized_access_point": "Iovanovich, Zhivoin"} 1 -2023-07-08 08:25:35.384252 2023-07-08 08:25:35.384265 0b0f2a0a-4435-4b1f-ab16-c0d626e53b00 {"md5": "5f6a12a95e954b3d13bd47a0caa11add", "pid": "A022774320", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A022774320", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022774320", "source": "RERO"}], "preferred_name": "Love-Trade, Jack", "authorized_access_point": "Love-Trade, Jack"} 1 -2023-07-08 08:25:35.495701 2023-07-08 08:25:35.495716 1ac2a737-1b72-43df-b45f-2177f9686909 {"md5": "5177afe3f1e90d7ccccce2f24aba0094", "pid": "A022779592", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A022779592", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022779592", "source": "RERO"}], "date_of_birth": "?", "date_of_death": "1718", "preferred_name": "ONeal, Daniel,", "authorized_access_point": "ONeal, Daniel, ?-1718"} 1 -2023-07-08 08:25:35.601028 2023-07-08 08:25:35.601043 74c15326-04fc-42d2-8e6e-d707bc662dd6 {"md5": "5f65b511c3ad8fceb8ad4f68c1550e8d", "pid": "A022780159", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A022780159", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022780159", "source": "RERO"}], "date_of_birth": "1740", "date_of_death": "1828", "preferred_name": "Oriel, John Foster,", "authorized_access_point": "Oriel, John Foster, 1740-1828"} 1 -2023-07-08 08:25:35.714311 2023-07-08 08:25:35.714325 4c74fb9a-be07-4314-aff8-1350c9330922 {"md5": "1a965a39d0afd06d963c16276d08a688", "pid": "A022784340", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A022784340", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022784340", "source": "RERO"}], "preferred_name": "D. M", "authorized_access_point": "D. M"} 1 -2023-07-08 08:25:35.837661 2023-07-08 08:25:35.837666 2b63cbb6-2acc-4cb2-a6e2-2a2e25339b12 {"md5": "ce9c760752e4718962d97f1007118260", "pid": "A022788140", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A022788140", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022788140", "source": "RERO"}], "preferred_name": "A. Z", "authorized_access_point": "A. Z"} 1 -2023-07-08 08:25:35.950729 2023-07-08 08:25:35.950741 8964e456-b34e-45d0-8a17-a2a318846839 {"md5": "95a3691a76f95ff985a997563c653d2c", "pid": "A022802138", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "of Nuthill", "identifier": "http://data.rero.ch/02-A022802138", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022802138", "source": "RERO"}], "preferred_name": "Thomson, William, of Nuthill", "authorized_access_point": "Thomson, William, of Nuthill"} 1 -2023-07-08 08:25:36.051158 2023-07-08 08:25:36.051172 9cde9e2c-2f69-4eb8-aa78-08bdfd458b4d {"md5": "99462d5643370910fc4c01a2d142dbd4", "pid": "A022802695", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A022802695", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022802695", "source": "RERO"}], "preferred_name": "Layman of the established Church", "authorized_access_point": "Layman of the established Church"} 1 -2023-07-08 08:25:36.1792 2023-07-08 08:25:36.179206 799bcd8d-b523-425b-a1e6-ad57ac0e2d3d {"md5": "03af851057ac34a69d1a986dd60941cc", "pid": "A022817751", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "M", "identifier": "http://data.rero.ch/02-A022817751", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022817751", "source": "RERO"}], "preferred_name": "Hayman, John, M", "authorized_access_point": "Hayman, John, M"} 1 -2023-07-08 08:25:36.281125 2023-07-08 08:25:36.281133 8221048d-2826-46c7-a3e1-c9195e9da350 {"md5": "9651dedcd8c2341c922c0910ff45df0d", "pid": "A022823883", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A022823883", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022823883", "source": "RERO"}], "preferred_name": "Maclane, Donald", "authorized_access_point": "Maclane, Donald"} 1 -2023-07-08 08:25:36.386748 2023-07-08 08:25:36.38676 d4bb785d-d230-4380-88fb-b6e8b0ed485a {"md5": "fa0fe237601835787e81ebeb7b011810", "pid": "A022833947", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A022833947", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022833947", "source": "RERO"}], "preferred_name": "Aird, Joannes", "authorized_access_point": "Aird, Joannes"} 1 -2023-07-08 08:25:36.484514 2023-07-08 08:25:36.484524 485992a5-f0bd-4c65-b7b8-78090b6ad63c {"md5": "f81ecbbe34cd64da4c22a0dcdca96742", "pid": "A022844215", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A022844215", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022844215", "source": "RERO"}], "date_of_birth": "1705", "date_of_death": "1780", "preferred_name": "Elliot, Nathaniel,", "authorized_access_point": "Elliot, Nathaniel, 1705-1780"} 1 -2023-07-08 08:25:36.598971 2023-07-08 08:25:36.598979 47773a4e-f0d4-4c01-aa49-7dea259044fe {"md5": "3357b937fc092dff465f4fac66353686", "pid": "A022850968", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A022850968", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022850968", "source": "RERO"}], "date_of_birth": "1725", "date_of_death": "1794", "preferred_name": "Reader, Thomas,", "authorized_access_point": "Reader, Thomas, 1725-1794"} 1 -2023-07-08 08:25:36.703315 2023-07-08 08:25:36.703327 e2e5421b-2e35-44ed-b30f-2ffc9643e89a {"md5": "2108981f317dde82d2e641782d4b55d7", "pid": "A022851528", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A022851528", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022851528", "source": "RERO"}], "preferred_name": "Committee of Association of the County of York", "authorized_access_point": "Committee of Association of the County of York"} 1 -2023-07-08 08:25:36.810072 2023-07-08 08:25:36.810094 123fe111-456c-4480-a969-1351faf3c611 {"md5": "efbd3a6159746df7879942ccc33e3a6e", "pid": "A022851951", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A022851951", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022851951", "source": "RERO"}], "preferred_name": "Warren (Perfumers : London, England)", "authorized_access_point": "Warren (Perfumers : London, England)"} 1 -2023-07-08 08:25:36.932661 2023-07-08 08:25:36.932674 b192b04c-2281-436c-9a46-fdcfd0a923d0 {"md5": "ecc20d49621b6aa7002905e710ac8d30", "pid": "A022877330", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A022877330", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022877330", "source": "RERO"}], "preferred_name": "William Otridge and Son", "authorized_access_point": "William Otridge and Son"} 1 -2023-07-08 08:25:37.036762 2023-07-08 08:25:37.036774 b40946a8-71fe-4769-b5f2-3d00f170ad85 {"md5": "1bcddc26c8160817b5f4fe3262004cb6", "pid": "A022879961", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A022879961", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022879961", "source": "RERO"}], "preferred_name": "Great Britain. Royal Army. Fencible Cavalry", "authorized_access_point": "Great Britain. Royal Army. Fencible Cavalry"} 1 -2023-07-08 08:25:37.146694 2023-07-08 08:25:37.146708 c7b46287-c380-4aab-8019-734afcc5a037 {"md5": "9dd5f2b2815527b9b67441b26035db57", "pid": "A022889884", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A022889884", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022889884", "source": "RERO"}], "preferred_name": "Sincere Well-wisher to the Commerce and Liberty of Britain", "authorized_access_point": "Sincere Well-wisher to the Commerce and Liberty of Britain"} 1 -2023-07-08 08:25:37.248955 2023-07-08 08:25:37.248967 402305fa-9f51-4463-94db-850fee76cd13 {"md5": "4ab174487b604a46bfd05f06aab958da", "pid": "A022899841", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A022899841", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022899841", "source": "RERO"}], "preferred_name": "Corporation of the Shipwrights of Redrith", "authorized_access_point": "Corporation of the Shipwrights of Redrith"} 1 -2023-07-08 08:25:37.357056 2023-07-08 08:25:37.357069 dd36b1f6-db23-46cc-af55-3eba767f73a8 {"md5": "9ee41b8c2bc56074bc02c8b091ec14ac", "pid": "A022904210", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A022904210", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022904210", "source": "RERO"}], "date_of_birth": "?", "date_of_death": "ca. 1817", "preferred_name": "Jenkins, Peter,", "authorized_access_point": "Jenkins, Peter, ?-ca. 1817"} 1 -2023-07-08 08:25:37.46643 2023-07-08 08:25:37.466442 935158af-f290-42e5-81b9-7aa0ce9c902b {"md5": "66de192f6e2352c9ce103447a7ad84ce", "pid": "A022916519", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A022916519", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022916519", "source": "RERO"}], "preferred_name": "Hackney (London, England)", "authorized_access_point": "Hackney (London, England)"} 1 -2023-07-08 08:25:37.570842 2023-07-08 08:25:37.57085 10cb9511-c215-439a-8a45-5364223fc70e {"md5": "44554b490ce610e2292de422f0196d32", "pid": "A022917527", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "Mme", "identifier": "http://data.rero.ch/02-A022917527", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022917527", "source": "RERO"}], "preferred_name": "O's., Mme", "authorized_access_point": "O's., Mme"} 1 -2023-07-08 08:25:37.666233 2023-07-08 08:25:37.666247 46c5ae62-6bf9-4894-828a-6b657f8180fa {"md5": "545af814a7cf4700951656789b8b0b98", "pid": "A022925286", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A022925286", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022925286", "source": "RERO"}], "preferred_name": "Lavater, Sue, & Co", "authorized_access_point": "Lavater, Sue, & Co"} 1 -2023-07-08 08:25:37.782964 2023-07-08 08:25:37.782973 6560fe16-3194-48dd-8d92-b787dce45fe6 {"md5": "0802739f66e270db4ebb0c2dfd6c8c96", "pid": "A022944034", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A022944034", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022944034", "source": "RERO"}], "preferred_name": "Inhabitant and Friend to the Corps", "authorized_access_point": "Inhabitant and Friend to the Corps"} 1 -2023-07-08 08:25:37.906152 2023-07-08 08:25:37.906166 b740ab90-b7c3-41c6-a423-05384e3d8477 {"md5": "cad9964c78234bbf77948589cc1bada2", "pid": "A022959371", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A022959371", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022959371", "source": "RERO"}], "preferred_name": "One of the Herd", "authorized_access_point": "One of the Herd"} 1 -2023-07-08 08:25:38.036832 2023-07-08 08:25:38.036844 cf4b9f57-2531-4ee4-b381-4959833e0346 {"md5": "69518f831dcb4b4b4d23b2e11f9df095", "pid": "A022966454", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A022966454", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022966454", "source": "RERO"}], "date_of_birth": "1765", "date_of_death": "1845", "preferred_name": "Smith, John Cotton,", "authorized_access_point": "Smith, John Cotton, 1765-1845"} 1 -2023-07-08 08:25:38.138168 2023-07-08 08:25:38.138178 b62708b5-0c50-4306-803c-b9a08ed8af85 {"md5": "919a4455a00fc6805f15167d5911d2b4", "pid": "A022967536", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A022967536", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022967536", "source": "RERO"}], "preferred_name": "Church in Brattle Square (Boston, Mass.)", "authorized_access_point": "Church in Brattle Square (Boston, Mass.)"} 1 -2023-07-08 08:25:38.244872 2023-07-08 08:25:38.244887 1bacc9ed-6238-43f3-9f40-2fedf0d1c4e9 {"md5": "a4e4e7026589e0a8b50469750cd7fcac", "pid": "A022968022", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A022968022", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022968022", "source": "RERO"}], "preferred_name": "Litchfield North Association", "authorized_access_point": "Litchfield North Association"} 1 -2023-07-08 08:25:38.374676 2023-07-08 08:25:38.374687 7495f3e8-0962-4c62-9365-abca41ea88b4 {"md5": "8c82aeca44e2dec576792436a8d274ee", "pid": "A022977898", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A022977898", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022977898", "source": "RERO"}], "preferred_name": "Giornata di studio sul Medioevo 2004 :", "authorized_access_point": "Giornata di studio sul Medioevo (2 : 2004 : Urbino)"} 1 -2023-07-08 08:25:38.488571 2023-07-08 08:25:38.488583 51672e41-e4a5-43f2-a846-c35fc298ae27 {"md5": "42976cc2cbf901135301e0c973e05710", "pid": "A022983847", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A022983847", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022983847", "source": "RERO"}], "preferred_name": "Abdolrazzak, Marie", "authorized_access_point": "Abdolrazzak, Marie"} 1 -2023-07-08 08:25:38.602893 2023-07-08 08:25:38.602906 21af170b-bb78-4082-862c-e7c0e8ae9e16 {"md5": "dc24da39316eeeef019e10226335b280", "pid": "A022990131", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A022990131", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022990131", "source": "RERO"}], "preferred_name": "Wedjolo-Akatshi, Marguerite", "authorized_access_point": "Wedjolo-Akatshi, Marguerite"} 1 -2023-07-08 08:25:38.718212 2023-07-08 08:25:38.718226 3d7ea23e-cf83-4771-ad2b-b507a8755cd9 {"md5": "6203cfd936786ca4f1e637c21d3147cc", "pid": "A022997177", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A022997177", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022997177", "source": "RERO"}], "preferred_name": "Potvin, Gérard", "authorized_access_point": "Potvin, Gérard"} 1 -2023-07-08 08:25:38.832853 2023-07-08 08:25:38.832865 2331242c-0164-4c34-ba0b-6eefb7ad4352 {"md5": "27f5ce12a9b93d8142afb27a08ae26a9", "pid": "A023068067", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "veuve", "identifier": "http://data.rero.ch/02-A023068067", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023068067", "source": "RERO"}], "preferred_name": "Fournier, Antoine, veuve", "authorized_access_point": "Fournier, Antoine, veuve"} 1 -2023-07-08 08:25:38.970846 2023-07-08 08:25:38.970858 cba001d0-b99f-4cad-83b2-37b753867178 {"md5": "0e5a4673c4f7eb00ae4cbd28977f20c9", "pid": "A023086196", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023086196", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023086196", "source": "RERO"}], "preferred_name": "Rojas Bedoya, José Aníbal", "authorized_access_point": "Rojas Bedoya, José Aníbal"} 1 -2023-07-08 08:25:39.068681 2023-07-08 08:25:39.068689 06136631-5dec-4a3d-b4a8-802b38354fad {"md5": "c1171253ede1a4cab2f7b756aa39d7f0", "pid": "A023112678", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A023112678", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023112678", "source": "RERO"}], "preferred_name": "Ecomuseo della montagna pistoiese (Rivoreta)", "authorized_access_point": "Ecomuseo della montagna pistoiese (Rivoreta)"} 1 -2023-07-08 08:25:39.186051 2023-07-08 08:25:39.186062 ee735cd2-45f8-4488-93b0-61ca871b9b86 {"md5": "b036a3091f36af826cca6d5b0482bc5d", "pid": "A023114350", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023114350", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023114350", "source": "RERO"}], "date_of_birth": "1965", "preferred_name": "Matthews, Gelien,", "authorized_access_point": "Matthews, Gelien, 1965-"} 1 -2023-07-08 08:25:39.288228 2023-07-08 08:25:39.288249 7ff781ef-5f51-4035-88f6-4d3ca75cd8e5 {"md5": "4817522586de3c3619d5a0da5133d774", "pid": "A023116130", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023116130", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023116130", "source": "RERO"}], "variant_name": ["Agwu, Adibeli Nduka-"], "preferred_name": "Nduka-Agwu, Adibeli", "variant_access_point": ["Agwu, Adibeli Nduka-"], "authorized_access_point": "Nduka-Agwu, Adibeli"} 1 -2023-07-08 08:25:39.402029 2023-07-08 08:25:39.402038 3248354a-6a2c-4b16-82d6-e2319a4630c6 {"md5": "d49dbdb899fac49a4d7afb9a56d34fe6", "pid": "A023116917", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023116917", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023116917", "source": "RERO"}], "preferred_name": "Sagon, Evelyne", "authorized_access_point": "Sagon, Evelyne"} 1 -2023-07-08 08:25:39.520923 2023-07-08 08:25:39.520934 1bd312ae-cdd5-414c-9e9c-d6723ffd4cc1 {"md5": "638d9b7007664fca3222a6228a60ac7e", "pid": "A023154358", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A023154358", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023154358", "source": "RERO"}], "preferred_name": "Colloquia on \\"Sexual Violence as an International Crime: Interdisciplinary Approaches\\" (2009 :", "authorized_access_point": "Colloquia on \\"Sexual Violence as an International Crime: Interdisciplinary Approaches\\" (2009 : Den Haag)"} 1 -2023-07-08 08:25:39.635662 2023-07-08 08:25:39.635673 f16ab95a-d1ab-4634-af2b-6d021fe8da17 {"md5": "c20a10e5e9ad0234aabc5e9da5c4568b", "pid": "A023158576", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023158576", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023158576", "source": "RERO"}], "preferred_name": "Nazarevskiĭ, Aleksandr Adrianovich", "parallel_access_point": ["Назаревский, Александр Адрианович"], "authorized_access_point": "Nazarevskiĭ, Aleksandr Adrianovich"} 1 -2023-07-08 08:25:39.744871 2023-07-08 08:25:39.744885 43ed28c8-c1c8-418f-943e-1f7ecadb86c4 {"md5": "a157238ef6eba09e82668e2e76c1fcaf", "pid": "A023166695", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023166695", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023166695", "source": "RERO"}], "preferred_name": "Reynolds, Catherine", "authorized_access_point": "Reynolds, Catherine"} 1 -2023-07-08 08:25:39.873576 2023-07-08 08:25:39.873586 c95c59e1-cbf6-4a17-9b54-40b25d83a99e {"md5": "bea81994cd0cdce9508e8bc4a0673f16", "pid": "A023168629", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023168629", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023168629", "source": "RERO"}], "preferred_name": "Sipilä, Jorma", "authorized_access_point": "Sipilä, Jorma"} 1 -2023-07-08 08:25:39.98398 2023-07-08 08:25:39.983992 608da636-615a-48c1-b7af-b0cae59ca3b7 {"md5": "f6359de8199d69f53de3269c89633108", "pid": "A023182560", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023182560", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023182560", "source": "RERO"}], "preferred_name": "Hafner, Elias", "authorized_access_point": "Hafner, Elias"} 1 -2023-07-08 08:25:40.103481 2023-07-08 08:25:40.103491 1e2da133-bd5e-4b36-8106-5b8212b4b2a9 {"md5": "86b30f25868ca571e4e99878932f3980", "pid": "A023188004", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "frère", "identifier": "http://data.rero.ch/02-A023188004", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023188004", "source": "RERO"}], "preferred_name": "MichaelDavide, frère", "authorized_access_point": "MichaelDavide, frère"} 1 -2023-07-08 08:25:40.204437 2023-07-08 08:25:40.204447 61c04cc4-fb9e-4d92-bfef-194852c5a9da {"md5": "308a7bf703b6b705dd7c35529d0b2b9b", "pid": "A023189262", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023189262", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023189262", "source": "RERO"}], "date_of_birth": "1970", "preferred_name": "Ye, Xiaobin,", "authorized_access_point": "Ye, Xiaobin, 1970-"} 1 -2023-07-08 08:25:40.338276 2023-07-08 08:25:40.338279 4d27368c-bc94-4422-9b23-21b62ed8cb2c {"md5": "f06e5e2fd5622a7153a567b17bab6549", "pid": "A023193920", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023193920", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023193920", "source": "RERO"}], "preferred_name": "Mourdon, Jean-Paul", "authorized_access_point": "Mourdon, Jean-Paul"} 1 -2023-07-08 08:25:40.446369 2023-07-08 08:25:40.446383 4f98bc8d-0d0d-4f58-a6be-a6b8c0e4cbc7 {"md5": "abd01a9b0f70d17e5d749e29f1052d46", "pid": "A023196927", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023196927", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023196927", "source": "RERO"}], "preferred_name": "Merminod, Sarah", "authorized_access_point": "Merminod, Sarah"} 1 -2023-07-08 08:25:40.548204 2023-07-08 08:25:40.548216 fd30c8a9-4754-423c-9ed5-a1ba5982dda3 {"md5": "a5f6088e75c149dfe347d8a96986d1af", "pid": "A023205283", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A023205283", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023205283", "source": "RERO"}], "preferred_name": "Gallery of Modern Art (Brisbane)", "authorized_access_point": "Gallery of Modern Art (Brisbane)"} 1 -2023-07-08 08:25:40.646914 2023-07-08 08:25:40.646927 c18ff892-f196-4684-b41e-596bdfcd69d4 {"md5": "413f59a72ce638ed151a5dd6dcbf6f1f", "pid": "A023227823", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023227823", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023227823", "source": "RERO"}], "preferred_name": "Boissy, Jacques", "authorized_access_point": "Boissy, Jacques"} 1 -2023-07-08 08:25:40.754171 2023-07-08 08:25:40.754184 53d5f04a-4776-4197-bd0a-92628c407981 {"md5": "cf4b82ac0ea621a1cee6f389d62b9e8d", "pid": "A023237776", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023237776", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023237776", "source": "RERO"}], "preferred_name": "Comberiati, Daniele", "authorized_access_point": "Comberiati, Daniele"} 1 -2023-07-08 08:25:40.850951 2023-07-08 08:25:40.85096 5be0f3c5-16cb-438e-9c9b-8e474addacf6 {"md5": "bd39abf3d399d857e2d9f873971abe7e", "pid": "A023249408", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023249408", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023249408", "source": "RERO"}], "preferred_name": "Stirling, Jeanie", "authorized_access_point": "Stirling, Jeanie", "biographical_information": ["Dates de vie: ?-1884"]} 1 -2023-07-08 08:25:40.995176 2023-07-08 08:25:40.995188 8ca994f8-c59b-49d4-8175-6c6a17af1b89 {"md5": "319d2492d4f6d35c20aae66475c6bed7", "pid": "A023286352", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023286352", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023286352", "source": "RERO"}], "preferred_name": "Robles, Gregorio de", "authorized_access_point": "Robles, Gregorio de"} 1 -2023-07-08 08:25:41.117746 2023-07-08 08:25:41.117756 e34abc60-26ce-4679-9be9-cba8f3f7cc6f {"md5": "c4621a022ef123cd86ce92ab24bd7de6", "pid": "A023294886", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023294886", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023294886", "source": "RERO"}], "preferred_name": "Zenhäusern, Bea", "authorized_access_point": "Zenhäusern, Bea"} 1 -2023-07-08 08:25:41.21534 2023-07-08 08:25:41.215347 2170d825-40ad-493b-a58e-3f934f42ec20 {"md5": "519b4ae21c1f4c158f0fc5872e4fd09e", "pid": "A023325251", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023325251", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023325251", "source": "RERO"}], "variant_name": ["McCammon, Charles"], "preferred_name": "MacCammon, Charles", "variant_access_point": ["McCammon, Charles"], "authorized_access_point": "MacCammon, Charles"} 1 -2023-07-08 08:25:41.319686 2023-07-08 08:25:41.319699 f22941ba-ffc7-4762-88c2-d961bbe69002 {"md5": "56249295e42a7eb4f0d733b0029c8fc7", "pid": "A023343244", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023343244", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023343244", "source": "RERO"}], "preferred_name": "Angelo, P", "authorized_access_point": "Angelo, P"} 1 -2023-07-08 08:25:41.43271 2023-07-08 08:25:41.432724 f4d442eb-e73c-46f0-b3df-a9aa4b4bd6e7 {"md5": "06e0a9944e75b664c93e0e0c1519b8df", "pid": "A023361460", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023361460", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023361460", "source": "RERO"}], "preferred_name": "International Folk Art Foundation (Santa Fe)", "authorized_access_point": "International Folk Art Foundation (Santa Fe)"} 1 -2023-07-08 08:25:41.545402 2023-07-08 08:25:41.545418 7c6ade01-a8fd-4d9e-b059-93f2b75b157b {"md5": "cd5175d535da828636984b7b9cceff90", "pid": "A023366781", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023366781", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023366781", "source": "RERO"}], "preferred_name": "Nicolas, Georg", "authorized_access_point": "Nicolas, Georg"} 1 -2023-07-08 08:25:41.669559 2023-07-08 08:25:41.669563 556b320c-95aa-4ec0-a0a4-d9adeb5ad1ad {"md5": "3cf311bdfdfb5bb2900bfae19cc54a08", "pid": "A023417604", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A023417604", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023417604", "source": "RERO"}], "preferred_name": "Université de Paris 13. Colloque (2010 :", "authorized_access_point": "Université de Paris 13. Colloque (2010 : Paris)"} 1 -2023-07-08 08:25:41.769209 2023-07-08 08:25:41.769217 4c4218c1-f9ca-4a83-be1d-b692c8ec772a {"md5": "762e0c4c2756f5bf471f7c178aecfecc", "pid": "A023417887", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023417887", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023417887", "source": "RERO"}], "preferred_name": "Rebisant, Günther R", "authorized_access_point": "Rebisant, Günther R"} 1 -2023-07-08 08:25:41.881408 2023-07-08 08:25:41.88142 90469801-5ce7-4d26-8b36-31a1d47de7b5 {"md5": "5da23ad2c85042e9d7ff082173d4a84f", "pid": "A023419144", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023419144", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023419144", "source": "RERO"}], "preferred_name": "Marie, Stéphanie", "authorized_access_point": "Marie, Stéphanie"} 1 -2023-07-08 08:25:41.984036 2023-07-08 08:25:41.984039 dc9f1d6b-16bd-4535-b2ef-a915d2dfe87f {"md5": "6ca09b0050e6c111a2aedd527fcee54b", "pid": "A023422393", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A023422393", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023422393", "source": "RERO"}], "preferred_name": "Milan-Club (Neuchâtel)", "authorized_access_point": "Milan-Club (Neuchâtel)"} 1 -2023-07-08 08:25:42.109545 2023-07-08 08:25:42.109559 60fd791a-f542-4fde-8609-d292e3ae0f03 {"md5": "c1c733dd752cb2eacf142bd708df0e80", "pid": "A023425677", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023425677", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023425677", "source": "RERO"}], "variant_name": ["Masahiro, Eguchi,"], "date_of_birth": "1930", "preferred_name": "Eguchi, Masahiro,", "variant_access_point": ["Masahiro, Eguchi, 1930-"], "parallel_access_point": ["江口正弘, 1930-"], "authorized_access_point": "Eguchi, Masahiro, 1930-"} 1 -2023-07-08 08:25:42.252798 2023-07-08 08:25:42.252805 df9f50b7-27c9-44c4-8da1-2481871e5509 {"md5": "57031b26ce66345c212fd01e91e04d30", "pid": "A023432176", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023432176", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023432176", "source": "RERO"}], "variant_name": ["Garayoa, Jesús Ma. Usunáriz", "Usunáriz, Jesús Ma."], "date_of_birth": "1964", "preferred_name": "Usunáriz Garayoa, Jesús Ma.", "variant_access_point": ["Garayoa, Jesús Ma. Usunáriz (Jesús María Usunáriz), 1964-", "Usunáriz, Jesús Ma. (Jesús María), 1964-"], "authorized_access_point": "Usunáriz Garayoa, Jesús Ma. (Jesús María), 1964-"} 1 -2023-07-08 08:25:42.379838 2023-07-08 08:25:42.379851 491662d4-c316-4b80-8295-e70a993e03d6 {"md5": "b02f660421ab387d15653bb04371802a", "pid": "A023438761", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "do Assaré", "identifier": "http://data.rero.ch/02-A023438761", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023438761", "source": "RERO"}], "variant_name": ["Assaré, Patativa do", "Cipaúba, Alberto", "Da Silva, Antônio Gonçalves", "Do Assaré, Patativa", "Gonçalves da Silva, Antônio", "Silva, Antônio Gonçalves da"], "preferred_name": "Patativa, do Assaré", "variant_access_point": ["Assaré, Patativa do", "Cipaúba, Alberto", "Da Silva, Antônio Gonçalves", "Do Assaré, Patativa", "Gonçalves da Silva, Antônio", "Silva, Antônio Gonçalves da"], "authorized_access_point": "Patativa, do Assaré"} 1 -2023-07-08 08:25:42.489282 2023-07-08 08:25:42.489296 dff6ed02-d5ed-47ec-926d-04c9a8a9d711 {"md5": "6620b925ab1a2b1b762cc9bf4c070f4b", "pid": "A023440649", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A023440649", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023440649", "source": "RERO"}], "preferred_name": "Conférence européenne pour la promotion de la santé en prison 2012 :", "authorized_access_point": "Conférence européenne pour la promotion de la santé en prison (6 : 2012 : Genève)"} 1 -2023-07-08 08:25:42.587168 2023-07-08 08:25:42.587177 39ae958b-ca2e-4923-9ac6-a80b7020b6c7 {"md5": "1df1956085b0a9531dc3dfe7ea02e9a2", "pid": "A023442924", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A023442924", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023442924", "source": "RERO"}], "preferred_name": "Missione archeologica italiana a Hierapolis di Frigia", "authorized_access_point": "Missione archeologica italiana a Hierapolis di Frigia"} 1 -2023-07-08 08:25:42.70203 2023-07-08 08:25:42.702046 7e17501b-9060-4d3a-ad1c-e256d5b47b60 {"md5": "44c55bbd94416377e03888ac973f4b66", "pid": "A023452640", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023452640", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023452640", "source": "RERO"}], "preferred_name": "Delley, Jean-Louis", "authorized_access_point": "Delley, Jean-Louis"} 1 -2023-07-08 08:25:42.815764 2023-07-08 08:25:42.815771 655325a9-43fb-4867-9ea5-d8e507b427c1 {"md5": "c42eb0b2eed13239f951cd4e485e11a4", "pid": "A023455691", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A023455691", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023455691", "source": "RERO"}], "preferred_name": "Galerie des artistes (La Côte-aux-Fées)", "authorized_access_point": "Galerie des artistes (La Côte-aux-Fées)"} 1 -2023-07-08 08:25:42.932105 2023-07-08 08:25:42.932119 cc54f067-091b-43e2-9634-6fd4a287d16a {"md5": "9366ba403f311b1c5c18bd6f17036d8b", "pid": "A023474915", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "Mme", "identifier": "http://data.rero.ch/02-A023474915", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023474915", "source": "RERO"}], "preferred_name": "Guiguer, Auguste, Mme", "authorized_access_point": "Guiguer, Auguste, Mme"} 1 -2023-07-08 08:25:43.047967 2023-07-08 08:25:43.04798 c6b1415e-9045-4c5b-a495-e1741b45cb7e {"md5": "6d7826682db8e373b24619236a1b5df0", "pid": "A023516300", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023516300", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023516300", "source": "RERO"}], "preferred_name": "Sierro, Jean-Willy", "authorized_access_point": "Sierro, Jean-Willy"} 1 -2023-07-08 08:25:43.169253 2023-07-08 08:25:43.169266 72581a81-3753-4821-a01a-b5fa33258d86 {"md5": "31ebe5386e3e6f9fac8d0c29ecf1cbd9", "pid": "A023516798", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023516798", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023516798", "source": "RERO"}], "preferred_name": "Calame, Numa", "authorized_access_point": "Calame, Numa"} 1 -2023-07-08 08:25:43.300548 2023-07-08 08:25:43.300554 3a8e0711-eaf3-491a-8bbf-017917f9b4e8 {"md5": "7168b7d23ec879b4778d05bafcdc39b6", "pid": "A023520416", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023520416", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023520416", "source": "RERO"}], "preferred_name": "Absenger, Wolfgang", "authorized_access_point": "Absenger, Wolfgang"} 1 -2023-07-08 08:25:43.398713 2023-07-08 08:25:43.398724 98070174-18fb-45a1-9963-ad2518d96c28 {"md5": "5cce189cd10c74bf06ce1f1268f736e3", "pid": "A023524669", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023524669", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023524669", "source": "RERO"}], "preferred_name": "Geierhaas, Gustav", "authorized_access_point": "Geierhaas, Gustav"} 1 -2023-07-08 08:25:43.506001 2023-07-08 08:25:43.506011 d14c7b41-4506-4ccb-a869-e83a8e313e0b {"md5": "c02c8cf69020c2148a9aa814a822aafd", "pid": "A023533143", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023533143", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023533143", "source": "RERO"}], "preferred_name": "Niesbach, Jutta", "authorized_access_point": "Niesbach, Jutta"} 1 -2023-07-08 08:25:43.616454 2023-07-08 08:25:43.616469 6f2b4cde-1817-4a28-b96c-2349cc43dd79 {"md5": "b236ece13171733a1d12a458df916ddf", "pid": "A023570716", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A023570716", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023570716", "source": "RERO"}], "preferred_name": "Bureau Emmenegger", "authorized_access_point": "Bureau Emmenegger"} 1 -2023-07-08 08:25:43.721411 2023-07-08 08:25:43.721421 b4fe2bee-1bb7-45c0-a857-6cbc4067ad54 {"md5": "c16632f74939c0603656d9bcd2e6bcf5", "pid": "A023604346", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A023604346", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023604346", "source": "RERO"}], "preferred_name": "Université de Grenoble 3. Centre d'étude des sensibilités. Colloque (1980 :", "authorized_access_point": "Université de Grenoble 3. Centre d'étude des sensibilités. Colloque (1980 : Grenoble)"} 1 -2023-07-08 08:25:43.812606 2023-07-08 08:25:43.812619 0268f5b5-f03d-4673-bdf5-165d456b3af6 {"md5": "492def3837156e18ef3f533ec42ae287", "pid": "A023605931", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A023605931", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023605931", "source": "RERO"}], "preferred_name": "Galerie Laeubli (Zürich)", "authorized_access_point": "Galerie Laeubli (Zürich)"} 1 -2023-07-08 08:25:43.901563 2023-07-08 08:25:43.901571 59ac546d-3434-4cf7-b296-8c9ea8941710 {"md5": "03796f4b9e5a6c4449845504949eb728", "pid": "A023608022", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023608022", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023608022", "source": "RERO"}], "preferred_name": "Constantin Weber, Carl", "authorized_access_point": "Constantin Weber, Carl", "biographical_information": ["Dates de vie: 1966-"]} 1 -2023-07-08 08:25:43.999941 2023-07-08 08:25:43.999954 a3ec9cb9-4bd3-4459-b66b-d6da47a3968f {"md5": "0c7f274d4a6878dc5535575b2bdf0159", "pid": "A023613346", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023613346", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023613346", "source": "RERO"}], "date_of_birth": "1975", "preferred_name": "Alemazung, Joy Asongazoh,", "authorized_access_point": "Alemazung, Joy Asongazoh, 1975-"} 1 -2023-07-08 08:25:44.096254 2023-07-08 08:25:44.096268 208190e3-6c14-4513-a4d6-3ecd92d3fb55 {"md5": "4e2bf5d7fd4536a53383e384e6072198", "pid": "A023626167", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023626167", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023626167", "source": "RERO"}], "preferred_name": "Góralewska, Grażyna", "authorized_access_point": "Góralewska, Grażyna"} 1 -2023-07-08 08:25:44.194929 2023-07-08 08:25:44.194942 5f60f90f-ab4a-43fb-b829-7f0a13a6fd81 {"md5": "5304a058b4e35a3d3d6588c307dba83f", "pid": "A023644947", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023644947", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023644947", "source": "RERO"}], "preferred_name": "Boureau, Antoine", "authorized_access_point": "Boureau, Antoine"} 1 -2023-07-08 08:25:44.297849 2023-07-08 08:25:44.297864 d2aa44e3-2dbc-4da2-81d4-760834953156 {"md5": "38e7d0a1bcd73f76ca17e9fc0907fd1d", "pid": "A023655893", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023655893", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023655893", "source": "RERO"}], "preferred_name": "Grabner, Melanie", "authorized_access_point": "Grabner, Melanie"} 1 -2023-07-08 08:25:44.400578 2023-07-08 08:25:44.400594 074723f4-b7ce-4dfa-9ba5-23564efc889a {"md5": "1e664f320103d626380e931bc11c7724", "pid": "A023668772", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023668772", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023668772", "source": "RERO"}], "preferred_name": "Michałek, Andrzej", "authorized_access_point": "Michałek, Andrzej"} 1 -2023-07-08 08:25:44.517422 2023-07-08 08:25:44.517431 cc433400-33d7-419a-aba1-af43bd207af0 {"md5": "845b44f3a8bdac712286fa755d92b40a", "pid": "A023690762", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023690762", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023690762", "source": "RERO"}], "preferred_name": "Wertel, Hans Peter", "authorized_access_point": "Wertel, Hans Peter"} 1 -2023-07-08 08:25:44.61582 2023-07-08 08:25:44.615832 cba98d5b-8b70-4d26-9240-2858340df3a1 {"md5": "37a78506528f5414ca3145e197e66fe6", "pid": "A023693839", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023693839", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023693839", "source": "RERO"}], "preferred_name": "Rotta, Julius C", "authorized_access_point": "Rotta, Julius C"} 1 -2023-07-08 08:25:44.734228 2023-07-08 08:25:44.73424 e4ba07ac-c157-416a-ac0b-a02407dc3a58 {"md5": "692ff576f37b69f25db76aa698a11602", "pid": "A023699946", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023699946", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023699946", "source": "RERO"}], "preferred_name": "Saba, C", "authorized_access_point": "Saba, C"} 1 -2023-07-08 08:25:44.831067 2023-07-08 08:25:44.831083 51ed4877-66bd-4f83-ac86-0c19bc22a853 {"md5": "f6bfbcc2e625f067927f1dbc7bf0eb52", "pid": "A023700595", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023700595", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023700595", "source": "RERO"}], "preferred_name": "Icrès, Fernand", "authorized_access_point": "Icrès, Fernand"} 1 -2023-07-08 08:25:44.933031 2023-07-08 08:25:44.93304 75dbdf9c-b566-46ac-8f24-58ce4071993a {"md5": "091dc135d57186f4e1c38a828308f150", "pid": "A023701973", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A023701973", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023701973", "source": "RERO"}], "preferred_name": "Konstanzer Arbeitskreis für Sportrecht. Herbsttagung (2011 :", "authorized_access_point": "Konstanzer Arbeitskreis für Sportrecht. Herbsttagung (2011 : Gottlieben)"} 1 -2023-07-08 08:25:45.033993 2023-07-08 08:25:45.034003 96cfd35e-fd79-498b-8e2c-c490ab437132 {"md5": "90586b4c1f8c1f2cdc3b00ce4f642545", "pid": "A023712980", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023712980", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023712980", "source": "RERO"}], "preferred_name": "Bless, André", "authorized_access_point": "Bless, André"} 1 -2023-07-08 08:25:45.131255 2023-07-08 08:25:45.131266 cf681693-3dca-44ca-b1ec-a76ee42532a3 {"md5": "bf685d8e5e49e3aa902fa334430355d3", "pid": "A023720699", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023720699", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023720699", "source": "RERO"}], "date_of_birth": "1934", "preferred_name": "Krüger, Renate,", "authorized_access_point": "Krüger, Renate, 1934-"} 1 -2023-07-08 08:25:45.239298 2023-07-08 08:25:45.239308 16071e54-fbe6-46ca-aef0-39b9661279b2 {"md5": "5e145bd5413537d8ae9970a6310bc220", "pid": "A023741754", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023741754", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023741754", "source": "RERO"}], "preferred_name": "Schulenberg, Ulf", "authorized_access_point": "Schulenberg, Ulf"} 1 -2023-07-08 08:25:45.36195 2023-07-08 08:25:45.361963 467746ec-4534-4f08-9a92-4b796aa0aff8 {"md5": "0cd787441802acffbe9574d80d1869dd", "pid": "A023763587", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023763587", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023763587", "source": "RERO"}], "preferred_name": "Lauer, Ottmar", "authorized_access_point": "Lauer, Ottmar"} 1 -2023-07-08 08:25:45.470169 2023-07-08 08:25:45.470179 ae5cb8da-d8a1-4084-b4e1-f36a799247d2 {"md5": "d8ce313a60d84c05854504e32eac7340", "pid": "A023783324", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023783324", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023783324", "source": "RERO"}], "preferred_name": "Dufton, A.F", "authorized_access_point": "Dufton, A.F"} 1 -2023-07-08 08:25:45.589215 2023-07-08 08:25:45.589228 7bdd0a05-6bef-4bd8-b941-f787f20c6553 {"md5": "da2a724aa2d17e32912df5cd41e481bd", "pid": "A023806510", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A023806510", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023806510", "source": "RERO"}], "preferred_name": "Rencontres francophones d'auxologie (1995 :", "authorized_access_point": "Rencontres francophones d'auxologie (1995 : Lyon)"} 1 -2023-07-08 08:25:45.70253 2023-07-08 08:25:45.702542 a5d8300c-a377-415d-9bd4-4b02c230e8e8 {"md5": "093133023c0621d1d9b487ab5defdaa0", "pid": "A023814163", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023814163", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023814163", "source": "RERO"}], "preferred_name": "Bodman, Whitney S", "authorized_access_point": "Bodman, Whitney S"} 1 -2023-07-08 08:25:45.823142 2023-07-08 08:25:45.823152 146f80f6-35af-4594-b31e-a1880f4b6d06 {"md5": "964f2f4d4e358265eb663e51347e0818", "pid": "A023822688", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A023822688", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023822688", "source": "RERO"}], "preferred_name": "Congrès national des sociétés savantes 1989 :", "authorized_access_point": "Congrès national des sociétés savantes (114 : 1989 : Paris). Section de géographie physique et humaine"} 1 -2023-07-08 08:25:45.933139 2023-07-08 08:25:45.933151 b445a9c8-b899-44fc-a4f8-dcf57461fa45 {"md5": "a872e792484baa9787d2358ef1cc89eb", "pid": "A023822699", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A023822699", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023822699", "source": "RERO"}], "preferred_name": "Congrès national des sociétés savantes 1990 :", "authorized_access_point": "Congrès national des sociétés savantes (115 : 1990 : Avignon). Section des sciences"} 1 -2023-07-08 08:25:46.037795 2023-07-08 08:25:46.037806 a6476569-8ec8-4424-8db0-3f4677b4261b {"md5": "caaedefbe56dcd74c7f23190a20b827f", "pid": "A023822966", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A023822966", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023822966", "source": "RERO"}], "preferred_name": "Congrès national des sociétés savantes 1970 :", "authorized_access_point": "Congrès national des sociétés savantes (95 : 1970 : Reims). Section de philologie et d'histoire jusqu'à 1610"} 1 -2023-07-08 08:25:46.139069 2023-07-08 08:25:46.139082 0f027b7f-fd68-4c9a-a26c-c54b19912d3c {"md5": "a407daf8c3952488b159ba7785d3aac3", "pid": "A023823517", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023823517", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023823517", "source": "RERO"}], "preferred_name": "Grilli, Cesare", "authorized_access_point": "Grilli, Cesare"} 1 -2023-07-08 08:25:46.244523 2023-07-08 08:25:46.24454 38c99b72-7bf6-44c2-aa64-37f2b5d4c507 {"md5": "74f5264f86f8a6a0a378451af812fea3", "pid": "A023823557", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A023823557", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023823557", "source": "RERO"}], "preferred_name": "Congrès national des sociétés historiques et scientifiques 1996 :", "authorized_access_point": "Congrès national des sociétés historiques et scientifiques (121 : 1996 : Nice). Commission d'histoire de la Révolution française"} 1 -2023-07-08 08:25:46.349066 2023-07-08 08:25:46.349077 edc87e7b-f846-448f-b06e-44024fb86104 {"md5": "623af3e06d1de743237e69559387ee98", "pid": "A023848289", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "musicien", "identifier": "http://data.rero.ch/02-A023848289", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023848289", "source": "RERO"}], "preferred_name": "Boillat, Alain, musicien", "authorized_access_point": "Boillat, Alain, musicien"} 1 -2023-07-08 08:25:46.448275 2023-07-08 08:25:46.448289 ed8aac31-5617-4137-a28b-25a651cfdaa8 {"md5": "f4f66e131887239bab89394d589bcb19", "pid": "A023869329", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023869329", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023869329", "source": "RERO"}], "preferred_name": "François K", "authorized_access_point": "François K"} 1 -2023-07-08 08:25:46.561691 2023-07-08 08:25:46.561701 3fbe071e-e73e-4f14-a337-2160985bcb50 {"md5": "e70539098bc4971bb38963bf55264a1d", "pid": "A023948966", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023948966", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023948966", "source": "RERO"}], "preferred_name": "Caloz, Yves", "authorized_access_point": "Caloz, Yves"} 1 -2023-07-08 08:25:46.675364 2023-07-08 08:25:46.675379 0c03b86e-22c9-48ea-b81b-49b127d6d995 {"md5": "5c585822f746da075a982a3c1e0f7487", "pid": "A023960471", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023960471", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023960471", "source": "RERO"}], "date_of_birth": "?", "date_of_death": "1830", "preferred_name": "Dupuy, Pierre,", "authorized_access_point": "Dupuy, Pierre, ?-1830"} 1 -2023-07-08 08:25:46.79191 2023-07-08 08:25:46.791924 d8a66ff2-b761-4ab6-9754-d41a69bb5801 {"md5": "418a288676c2769ef55879b89ff4799d", "pid": "A023966957", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023966957", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023966957", "source": "RERO"}], "variant_name": ["Ittersum, Martine Julia van,"], "date_of_birth": "1968", "preferred_name": "Van Ittersum, Martine Julia,", "variant_access_point": ["Ittersum, Martine Julia van, 1968-"], "authorized_access_point": "Van Ittersum, Martine Julia, 1968-"} 1 -2023-07-08 08:25:46.917524 2023-07-08 08:25:46.917541 3bb06766-231b-4112-b826-6e63d5a7cb1c {"md5": "35c611133211958435df0503493148f2", "pid": "A023969519", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023969519", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023969519", "source": "RERO"}], "preferred_name": "Lemos-Pereira, Alice de", "authorized_access_point": "Lemos-Pereira, Alice de"} 1 -2023-07-08 08:25:47.03329 2023-07-08 08:25:47.033301 5962c889-cd3f-474b-aa2c-c80f8f4f1cb5 {"md5": "048999707e3458f01f9d42043efb0abb", "pid": "A023985610", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023985610", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023985610", "source": "RERO"}], "preferred_name": "Michotte, D", "authorized_access_point": "Michotte, D"} 1 -2023-07-08 08:25:47.13871 2023-07-08 08:25:47.138721 61957b5c-fb55-485f-b579-b080dc27749e {"md5": "8ee372a8988e9569e68023107ab1f234", "pid": "A023993514", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023993514", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023993514", "source": "RERO"}], "preferred_name": "Pottier, Caroline", "authorized_access_point": "Pottier, Caroline"} 1 -2023-07-08 08:25:47.2499 2023-07-08 08:25:47.249913 8d0e3990-6cd2-45f7-8be7-693e251ca24b {"md5": "880346d73a9bec730bfc639ce4945a30", "pid": "A023994589", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A023994589", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023994589", "source": "RERO"}], "preferred_name": "Mach, Paolo", "authorized_access_point": "Mach, Paolo"} 1 -2023-07-08 08:25:47.358195 2023-07-08 08:25:47.358209 a5ba7e63-1628-4ee0-87c3-3c244a19317a {"md5": "5916daf22ae7d655e450907502e01e9c", "pid": "A024017606", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024017606", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024017606", "source": "RERO"}], "preferred_name": "Zinger, B", "authorized_access_point": "Zinger, B"} 1 -2023-07-08 08:25:47.466141 2023-07-08 08:25:47.466154 fb91054d-dfbb-442b-be1f-ddcfaf0d9dc8 {"md5": "fe804adbf883a06031691540b7e5bfd1", "pid": "A024032635", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024032635", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024032635", "source": "RERO"}], "preferred_name": "Grote, Paul Joseph", "authorized_access_point": "Grote, Paul Joseph"} 1 -2023-07-08 08:25:47.575813 2023-07-08 08:25:47.575826 a7122675-2458-4a7f-86c7-1fbd33d5ec89 {"md5": "8f53bfcf1aee7a8638f972d9f4e4c917", "pid": "A024034240", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024034240", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024034240", "source": "RERO"}], "preferred_name": "Arnoul, Honoré", "authorized_access_point": "Arnoul, Honoré"} 1 -2023-07-08 08:25:47.694607 2023-07-08 08:25:47.694621 87b6998f-f49b-4936-a29d-73e31f012e8b {"md5": "c7b69d9554788d539bb7156220336006", "pid": "A024042745", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024042745", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024042745", "source": "RERO"}], "date_of_birth": "1965", "preferred_name": "Kanda, Yutsuki,", "authorized_access_point": "Kanda, Yutsuki, 1965-"} 1 -2023-07-08 08:25:47.805665 2023-07-08 08:25:47.805679 3969dd92-0888-439f-a7fb-b2b5865e4b98 {"md5": "06f64bd97a46035bc40f6b86f6fd05d3", "pid": "A024043552", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024043552", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024043552", "source": "RERO"}], "variant_name": ["Madani, Rahma Benhamou El,", "Benhamou El Madani, Rahma,"], "date_of_birth": "1966", "preferred_name": "El Madani, Rahma Benhamou,", "variant_access_point": ["Madani, Rahma Benhamou El, 1966-", "Benhamou El Madani, Rahma, 1966-"], "authorized_access_point": "El Madani, Rahma Benhamou, 1966-", "biographical_information": ["Productrice, réalisatrice, scénariste"]} 1 -2023-07-08 08:25:47.92941 2023-07-08 08:25:47.929418 859f6b90-30dc-4aa2-99a3-4fe9f3433d03 {"md5": "4254ee78f978109d14d5ae044f2b0eee", "pid": "A024063413", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024063413", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024063413", "source": "RERO"}], "preferred_name": "Bennett, Charles Gibson", "authorized_access_point": "Bennett, Charles Gibson"} 1 -2023-07-08 08:25:48.032703 2023-07-08 08:25:48.032712 a3ee4119-7a3f-4619-b15d-5a92626359a9 {"md5": "5fd15c57c5207f3261f2bf35ec167322", "pid": "A024072354", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024072354", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024072354", "source": "RERO"}], "preferred_name": "Hatzelhoffer, Lena", "authorized_access_point": "Hatzelhoffer, Lena"} 1 -2023-07-08 08:25:48.133024 2023-07-08 08:25:48.133035 0d3f8598-b648-4cdf-984d-0b4c218461fd {"md5": "4b45b599448d209f6bab7e20e807ea10", "pid": "A024073610", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024073610", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024073610", "source": "RERO"}], "preferred_name": "Farine, Maguy", "authorized_access_point": "Farine, Maguy"} 1 -2023-07-08 08:25:48.237695 2023-07-08 08:25:48.237705 870492f7-fe60-4473-bb4b-08cee9a251fa {"md5": "98f312eac5546b39d1d7dac84c7d104e", "pid": "A024075381", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024075381", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024075381", "source": "RERO"}], "preferred_name": "Meester de Ravestein, E", "authorized_access_point": "Meester de Ravestein, E"} 1 -2023-07-08 08:25:48.363434 2023-07-08 08:25:48.363445 7c18e203-cfd7-4875-add1-783dea5c36b0 {"md5": "66fe14c37e5793dfa11ba7f0197a401f", "pid": "A024079443", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024079443", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024079443", "source": "RERO"}], "preferred_name": "Filelfi, Carolina", "authorized_access_point": "Filelfi, Carolina"} 1 -2023-07-08 08:25:48.473759 2023-07-08 08:25:48.473776 947dc55c-814c-444a-b8b7-b70b73dacafe {"md5": "95a6bea2091189b63e7687ef7b4bf56f", "pid": "A024083167", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024083167", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024083167", "source": "RERO"}], "preferred_name": "Vernazza, Livia", "authorized_access_point": "Vernazza, Livia"} 1 -2023-07-08 08:25:48.577946 2023-07-08 08:25:48.577955 504685e7-498d-42bf-be52-d2f107c84833 {"md5": "22c1cf7f633eae4eb31c1623f9014650", "pid": "A024099458", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024099458", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024099458", "source": "RERO"}], "preferred_name": "Stewart, Katherine A", "authorized_access_point": "Stewart, Katherine A"} 1 -2023-07-08 08:25:48.689835 2023-07-08 08:25:48.689848 cd3aacf9-af54-4cd1-bb29-ec525e4878f9 {"md5": "8d91ba6119d3727911e2682a36a87eb8", "pid": "A024107085", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024107085", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024107085", "source": "RERO"}], "preferred_name": "Chanard, J.-B", "authorized_access_point": "Chanard, J.-B"} 1 -2023-07-08 08:25:48.798286 2023-07-08 08:25:48.798302 da719cb7-eec8-4e06-967e-30bd2204ac1f {"md5": "42ed53c3821734e114f8e8dbd4c0386b", "pid": "A024109666", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024109666", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024109666", "source": "RERO"}], "preferred_name": "Charvet, Pierre-Alex", "authorized_access_point": "Charvet, Pierre-Alex"} 1 -2023-07-08 08:25:48.892356 2023-07-08 08:25:48.892365 a75cd37e-c08f-4762-8119-f4b1c09878f1 {"md5": "a213ce66b68478191fe0d165cf80d23f", "pid": "A024119960", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024119960", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024119960", "source": "RERO"}], "preferred_name": "Charcot, Anthelme", "authorized_access_point": "Charcot, Anthelme"} 1 -2023-07-08 08:25:48.997208 2023-07-08 08:25:48.997227 03eae6e2-b330-40cd-a59d-352df02d672f {"md5": "9db28f0fb6b81d6a4918df4d481f3808", "pid": "A024120760", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024120760", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024120760", "source": "RERO"}], "preferred_name": "Giminne, A", "authorized_access_point": "Giminne, A"} 1 -2023-07-08 08:25:49.112585 2023-07-08 08:25:49.112598 9b54aed1-6edb-4014-8b34-adc07a308fef {"md5": "841edb11b304939a31c13cdafc9d9f66", "pid": "A024123847", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024123847", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024123847", "source": "RERO"}], "preferred_name": "Leharivel, Pierre-Théodose-Constant", "authorized_access_point": "Leharivel, Pierre-Théodose-Constant"} 1 -2023-07-08 08:25:49.215654 2023-07-08 08:25:49.215666 403ef8a6-1c0a-48a3-9689-1b36acd6e36a {"md5": "6c53199b5c167f86fa791d5c4e2483d9", "pid": "A024135505", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024135505", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024135505", "source": "RERO"}], "preferred_name": "Dain, Charles", "authorized_access_point": "Dain, Charles"} 1 -2023-07-08 08:25:49.324436 2023-07-08 08:25:49.324445 ed0f49d2-2614-45d9-b031-2c1a850b9e10 {"md5": "e04c8f4957fd7db5b2f903911373592f", "pid": "A024137299", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A024137299", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024137299", "source": "RERO"}], "preferred_name": "Society for Human Ecology. International Conference 2007 :", "authorized_access_point": "Society for Human Ecology. International Conference (15th : 2007 : Rio de Janeiro, Brazil)"} 1 -2023-07-08 08:25:49.425395 2023-07-08 08:25:49.425408 f9cd78d7-9130-457f-8c81-734a2e511c20 {"md5": "916759802383f56b40c7a5d1b3c4d209", "pid": "A024141965", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024141965", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024141965", "source": "RERO"}], "preferred_name": "Michoud, Loïc", "authorized_access_point": "Michoud, Loïc"} 1 -2023-07-08 08:25:49.531435 2023-07-08 08:25:49.531446 eece8386-b5e1-465f-a9ad-8d2cc6fb5f44 {"md5": "e312590afee4011fc65fad929b95ccd9", "pid": "A024152276", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024152276", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024152276", "source": "RERO"}], "preferred_name": "Petrus, Pierre", "authorized_access_point": "Petrus, Pierre"} 1 -2023-07-08 08:25:49.64083 2023-07-08 08:25:49.640843 20747071-eced-4e06-8e5a-35e849ff5636 {"md5": "bfe3772cddb26eaad486645fdc43905a", "pid": "A024180345", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024180345", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024180345", "source": "RERO"}], "preferred_name": "Virey", "authorized_access_point": "Virey"} 1 -2023-07-08 08:25:49.741758 2023-07-08 08:25:49.741772 c2e3bf57-9aa5-4b84-b63d-71590d2ea671 {"md5": "cc9f686c754f3c91afe2dc70cf67223c", "pid": "A024182024", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A024182024", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024182024", "source": "RERO"}], "preferred_name": "Société philatélique La Colombe (Saint-Blaise)", "authorized_access_point": "Société philatélique La Colombe (Saint-Blaise)"} 1 -2023-07-08 08:25:49.850231 2023-07-08 08:25:49.850244 213af179-a678-4903-b495-703cd0e1fd79 {"md5": "8999fdc4608cd0776fcddb9a15d68be4", "pid": "A024188404", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024188404", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024188404", "source": "RERO"}], "variant_name": ["Comnenos, Kalfas"], "preferred_name": "Komnenos, Kalfa", "variant_access_point": ["Comnenos, Kalfas"], "authorized_access_point": "Komnenos, Kalfa"} 1 -2023-07-08 08:25:49.946758 2023-07-08 08:25:49.946776 e6e36478-881f-4696-b04c-ccba31b9d34e {"md5": "72d661c0be283a70df3ce5cf9ab14359", "pid": "A024193588", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024193588", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024193588", "source": "RERO"}], "date_of_birth": "1942", "preferred_name": "Zhang, Boyuan,", "authorized_access_point": "Zhang, Boyuan, 1942-"} 1 -2023-07-08 08:25:50.050713 2023-07-08 08:25:50.050726 00b79903-ed03-46cc-bf8b-7264cf25da54 {"md5": "4b423551716e3d5a9843e062e119be24", "pid": "A024201811", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024201811", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024201811", "source": "RERO"}], "preferred_name": "Hoak-Doering, Elizabeth", "authorized_access_point": "Hoak-Doering, Elizabeth", "biographical_information": ["Dates de vie: 1960-"]} 1 -2023-07-08 08:25:50.156861 2023-07-08 08:25:50.156875 b48ec327-e007-442f-90f8-cc94c4226116 {"md5": "4465cb85ba5604c4fc611a931c022cd1", "pid": "A024207312", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024207312", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024207312", "source": "RERO"}], "preferred_name": "Conscience, Maryvonne", "authorized_access_point": "Conscience, Maryvonne"} 1 -2023-07-08 08:25:50.25826 2023-07-08 08:25:50.258268 ec89f8ce-0564-4ede-b16f-8ed43b806e28 {"md5": "720ffd278efdbca3aad5bf71f183d7f5", "pid": "A024239773", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A024239773", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024239773", "source": "RERO"}], "preferred_name": "Festival d'automne. Section architecture (1981 :", "authorized_access_point": "Festival d'automne. Section architecture (1981 : Paris)"} 1 -2023-07-08 08:25:50.364954 2023-07-08 08:25:50.364967 e51fb398-c42f-4451-8edf-66111ad5373b {"md5": "76bbfd44193a3e141d3e0734616f6738", "pid": "A024248736", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A024248736", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024248736", "source": "RERO"}], "preferred_name": "Arpège Communication", "authorized_access_point": "Arpège Communication"} 1 -2023-07-08 08:25:50.468795 2023-07-08 08:25:50.468811 d673d59b-e545-496c-a7fa-1643aeae5b61 {"md5": "91b1d5e54b79fdb3f5f0d58bf5fd8213", "pid": "A024250351", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024250351", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024250351", "source": "RERO"}], "preferred_name": "Lignac, Etienne", "authorized_access_point": "Lignac, Etienne"} 1 -2023-07-08 08:25:50.573284 2023-07-08 08:25:50.573297 05040c3e-96f4-4241-9c89-6c244bf6eddb {"md5": "dd856fe60556d9d524022f0fbc69aa2a", "pid": "A024250841", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024250841", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024250841", "source": "RERO"}], "preferred_name": "Vernisy, Jacques de", "authorized_access_point": "Vernisy, Jacques de"} 1 -2023-07-08 08:25:50.678825 2023-07-08 08:25:50.678835 8c8b18ab-59cd-4177-bdef-0c0e9cfc1bbe {"md5": "5c70e51146f3fc48662f1f1b94c14df8", "pid": "A024251528", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024251528", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024251528", "source": "RERO"}], "preferred_name": "Valley, Violette", "authorized_access_point": "Valley, Violette"} 1 -2023-07-08 08:25:50.784542 2023-07-08 08:25:50.784553 94df9a6e-f1b3-4444-b62b-49b035a6aa98 {"md5": "898e66c4176a1f623b9b277d758f8a83", "pid": "A024255039", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024255039", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024255039", "source": "RERO"}], "preferred_name": "Anzemberger, Guy P", "authorized_access_point": "Anzemberger, Guy P"} 1 -2023-07-08 08:25:50.890478 2023-07-08 08:25:50.890487 cc94cc88-41a9-403c-b0fb-119dd004dc4e {"md5": "215f1795c69a8cd60e7b5035fd7273c4", "pid": "A024295112", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024295112", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024295112", "source": "RERO"}], "preferred_name": "Váczi, Leona", "authorized_access_point": "Váczi, Leona"} 1 -2023-07-08 08:25:51.001334 2023-07-08 08:25:51.001347 d44d361a-42d7-451f-b6c2-7421aa90b985 {"md5": "fa3b423fdf8c8ad54e3e915e951a55ee", "pid": "A024305757", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024305757", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024305757", "source": "RERO"}], "preferred_name": "Barbot, Louis", "authorized_access_point": "Barbot, Louis"} 1 -2023-07-08 08:25:51.100329 2023-07-08 08:25:51.100343 3d4ec6d5-1e32-4d15-8f5b-b9afff58c09c {"md5": "6e1fb7b872a8c3983b59944ef3db15ca", "pid": "A024311492", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024311492", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024311492", "source": "RERO"}], "preferred_name": "Bayer-Ehrenberg, Konstantin von", "authorized_access_point": "Bayer-Ehrenberg, Konstantin von"} 1 -2023-07-08 08:25:57.437904 2023-07-08 08:25:57.437912 b454bdc9-9e45-46ea-b429-29096c25ef80 {"md5": "d37ae24051eada002db9dbf0a9cc8d0d", "pid": "A024983874", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024983874", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024983874", "source": "RERO"}], "preferred_name": "Yoo, Sinac", "authorized_access_point": "Yoo, Sinac"} 1 -2023-07-08 08:25:51.206623 2023-07-08 08:25:51.206636 87516789-6fbc-4562-81b5-c5574a654ccd {"md5": "84996bd430586a6ae81df54fe04091af", "pid": "A024314866", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A024314866", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024314866", "source": "RERO"}], "variant_name": ["The NY Art Book Fair", "New York Art Book Fair"], "preferred_name": "NY Art Book Fair", "variant_access_point": ["The NY Art Book Fair", "New York Art Book Fair"], "authorized_access_point": "NY Art Book Fair"} 1 -2023-07-08 08:25:51.308315 2023-07-08 08:25:51.308329 dd9fd70b-8712-4f98-bd0d-aad38187f179 {"md5": "9e50748052332b04fa23403b33e258c8", "pid": "A024316631", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A024316631", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024316631", "source": "RERO"}], "preferred_name": "Inde. Ministry of Health and Family. Pharmacognosy laboratory", "authorized_access_point": "Inde. Ministry of Health and Family. Pharmacognosy laboratory"} 1 -2023-07-08 08:25:51.408956 2023-07-08 08:25:51.40897 5ece4f1b-77da-42d3-b08c-c7f1637672c0 {"md5": "6561fdf69b0144e120a301011f1cc51f", "pid": "A024326128", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A024326128", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024326128", "source": "RERO"}], "preferred_name": "Studienkommission für die Reform des Öffentlichen Dienstrechts (Bundesrepublik Deutschland)", "authorized_access_point": "Studienkommission für die Reform des Öffentlichen Dienstrechts (Bundesrepublik Deutschland)"} 1 -2023-07-08 08:25:51.514615 2023-07-08 08:25:51.51463 14620d15-f808-4757-b69a-c5b1aecbf16a {"md5": "3108f4bf825f36bfa09c99106daa532a", "pid": "A024329523", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024329523", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024329523", "source": "RERO"}], "preferred_name": "Illés, Pál Edvi", "authorized_access_point": "Illés, Pál Edvi"} 1 -2023-07-08 08:25:51.630502 2023-07-08 08:25:51.630511 d7c71fa4-5347-4da2-93d7-6f502e9bae5f {"md5": "39e1ae789067bd7d1b4e93ceafeeea51", "pid": "A024329741", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024329741", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024329741", "source": "RERO"}], "date_of_birth": "1653", "date_of_death": "1698", "preferred_name": "Obrecht, Elias,", "authorized_access_point": "Obrecht, Elias, 1653-1698"} 1 -2023-07-08 08:25:51.73531 2023-07-08 08:25:51.735319 90ee706d-8e46-491a-b30b-2b2d57a82996 {"md5": "962fc1f62b53c6797b69d57738b4b685", "pid": "A024333154", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A024333154", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024333154", "source": "RERO"}], "preferred_name": "Oman. Directorate General of Minerals", "authorized_access_point": "Oman. Directorate General of Minerals"} 1 -2023-07-08 08:25:51.849207 2023-07-08 08:25:51.849219 51dd7d90-195c-4bf8-b30a-aedd0c55b9d8 {"md5": "3933b86aca1edbb598901ffc1efb5bd0", "pid": "A024352277", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A024352277", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024352277", "source": "RERO"}], "preferred_name": "Commission des protestants réunis (Fribourg)", "authorized_access_point": "Commission des protestants réunis (Fribourg)"} 1 -2023-07-08 08:25:51.94471 2023-07-08 08:25:51.94473 fc65c429-3e93-48f3-a397-84a59c5b0eac {"md5": "332a1a458c88319b214226ee64f0e5d4", "pid": "A024368303", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024368303", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024368303", "source": "RERO"}], "date_of_birth": "1968", "preferred_name": "Frapiccini, David,", "authorized_access_point": "Frapiccini, David, 1968-"} 1 -2023-07-08 08:25:52.064709 2023-07-08 08:25:52.064726 84eeaba6-3e04-4eae-8e1f-235e5f921135 {"md5": "ddfb6d6ac447d1fc6b252281afdf6a22", "pid": "A024370974", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024370974", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024370974", "source": "RERO"}], "preferred_name": "Keyserling, Leo", "authorized_access_point": "Keyserling, Leo"} 1 -2023-07-08 08:25:52.182582 2023-07-08 08:25:52.182592 ed62a0da-228e-4ce6-bc24-15bde4a16461 {"md5": "be427e948d283463e193132b85beaecb", "pid": "A024377672", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024377672", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024377672", "source": "RERO"}], "preferred_name": "Pétremand, Noémie", "authorized_access_point": "Pétremand, Noémie"} 1 -2023-07-08 08:25:52.287469 2023-07-08 08:25:52.287482 f500264f-9e64-4ab7-84b6-444a82dfb0b0 {"md5": "14f2f1d1baf0ceba245a2a4597ff6a7e", "pid": "A024381221", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024381221", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024381221", "source": "RERO"}], "preferred_name": "Guérid, Samia", "authorized_access_point": "Guérid, Samia"} 1 -2023-07-08 08:25:52.398347 2023-07-08 08:25:52.398358 b1f0c306-fa3d-479f-9d7b-7193d4df06e1 {"md5": "050fdd9fb9c1de6137dc616de687c93a", "pid": "A024413945", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024413945", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024413945", "source": "RERO"}], "variant_name": ["Macdonald, A. de Léry,", "Mc Donald, Archibald Chaussegros de Léry,", "Mac Donald, Archibald Chaussegros de Léry,", "McDonald, Archibald Chaussegros de Léry,"], "date_of_birth": "1862", "date_of_death": "1939", "preferred_name": "Macdonald, Archibald Chaussegros de Léry,", "variant_access_point": ["Macdonald, A. de Léry, 1862-1939", "Mc Donald, Archibald Chaussegros de Léry, 1862-1939", "Mac Donald, Archibald Chaussegros de Léry, 1862-1939", "McDonald, Archibald Chaussegros de Léry, 1862-1939"], "authorized_access_point": "Macdonald, Archibald Chaussegros de Léry, 1862-1939", "biographical_information": ["Avocat, historien, généalogiste, maire de Rigaud et homme d'affaires"]} 1 -2023-07-08 08:25:52.509552 2023-07-08 08:25:52.509569 08c10676-c601-4197-ac82-2bcafd6c78d7 {"md5": "39acb5013bce24d940b0ae33354df671", "pid": "A024416324", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024416324", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024416324", "source": "RERO"}], "preferred_name": "Lindblad, Waldemar", "authorized_access_point": "Lindblad, Waldemar"} 1 -2023-07-08 08:25:52.618637 2023-07-08 08:25:52.618653 af20015a-5cbf-463b-b5f2-7d28af038bb1 {"md5": "d3f433c2f313c96cc2701341607ba8ef", "pid": "A024424763", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A024424763", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024424763", "source": "RERO"}], "preferred_name": "Choeur mixte de Platta (Sion)", "authorized_access_point": "Choeur mixte de Platta (Sion)"} 1 -2023-07-08 08:25:52.723256 2023-07-08 08:25:52.723272 b2bbf82d-5895-4ced-80a7-63675d9c089e {"md5": "f7381ca7a0a013f233ab5d9fd7ef8b0f", "pid": "A024446255", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A024446255", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024446255", "source": "RERO"}], "preferred_name": "Adalbert-Stifter-Gesellschaft (München)", "authorized_access_point": "Adalbert-Stifter-Gesellschaft (München)"} 1 -2023-07-08 08:25:52.825387 2023-07-08 08:25:52.825399 2e12a684-cd6c-41b7-90bc-c7633b240d1d {"md5": "e38abacfca480b958b1fbae304a7f2dc", "pid": "A024465489", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024465489", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024465489", "source": "RERO"}], "date_of_birth": "1938", "preferred_name": "Mills, David,", "authorized_access_point": "Mills, David, 1938-"} 1 -2023-07-08 08:25:52.926304 2023-07-08 08:25:52.926317 fb8a7976-5637-4052-ad92-147967737d65 {"md5": "5990fa73a82417965dca9e54a8add7fe", "pid": "A024466417", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024466417", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024466417", "source": "RERO"}], "preferred_name": "Karasevich, S", "authorized_access_point": "Karasevich, S"} 1 -2023-07-08 08:25:53.037815 2023-07-08 08:25:53.037825 b281d4cf-c54b-4bd1-8a5f-fbb941b562fa {"md5": "adffa9aa9a352d47c12d9c17dc87a77e", "pid": "A024471669", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024471669", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024471669", "source": "RERO"}], "preferred_name": "Michot, Joseph", "authorized_access_point": "Michot, Joseph"} 1 -2023-07-08 08:25:53.145607 2023-07-08 08:25:53.145621 56d8e906-2014-40bb-9ee4-9c125213a439 {"md5": "c4d204431365c4d793b09d9076d8ba9a", "pid": "A024478155", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024478155", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024478155", "source": "RERO"}], "preferred_name": "Romand, Rollin", "authorized_access_point": "Romand, Rollin"} 1 -2023-07-08 08:25:53.250966 2023-07-08 08:25:53.250979 90d4a967-1ce3-4337-a37e-0e312297c0a4 {"md5": "9ff711bfbe4d0ea27dcbb933cf0e7ffb", "pid": "A024478463", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024478463", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024478463", "source": "RERO"}], "preferred_name": "Mollard, Albert", "authorized_access_point": "Mollard, Albert"} 1 -2023-07-08 08:25:53.35657 2023-07-08 08:25:53.356583 05e0af98-ad84-40bb-84e7-b66e201c9bb3 {"md5": "7a30e1447e827938c97aa1d784134cab", "pid": "A024478863", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024478863", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024478863", "source": "RERO"}], "date_of_birth": "1953", "preferred_name": "Aoki, Kazuko,", "authorized_access_point": "Aoki, Kazuko, 1953-"} 1 -2023-07-08 08:25:53.456682 2023-07-08 08:25:53.456689 91595081-1f2c-45ee-aa57-f30e9e69c5f2 {"md5": "8afb285291f6fee5056ede1f05a0a0a3", "pid": "A024480400", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024480400", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024480400", "source": "RERO"}], "preferred_name": "Claude, Edouard", "authorized_access_point": "Claude, Edouard"} 1 -2023-07-08 08:25:53.561847 2023-07-08 08:25:53.56186 3da9d219-004d-40ac-b0fd-5061c589c8a2 {"md5": "7791bf6a317f81a7e0965af63187286f", "pid": "A024491342", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024491342", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024491342", "source": "RERO"}], "preferred_name": "Munzinger, Eugène", "authorized_access_point": "Munzinger, Eugène"} 1 -2023-07-08 08:25:53.673324 2023-07-08 08:25:53.673336 fb3294ee-5e01-4b4a-9962-40a0139bdb4e {"md5": "d443a6843664d90fc3455cd6a9c5c64d", "pid": "A024527296", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024527296", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024527296", "source": "RERO"}], "preferred_name": "Petmecky, Adelheid", "authorized_access_point": "Petmecky, Adelheid"} 1 -2023-07-08 08:25:53.780839 2023-07-08 08:25:53.780851 e5a37f20-1d7e-4346-b38b-57db31c4985c {"md5": "f1ec471b62ffa1d2eefdc51e7a928751", "pid": "A024528563", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024528563", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024528563", "source": "RERO"}], "preferred_name": "Rovero, Luca", "authorized_access_point": "Rovero, Luca"} 1 -2023-07-08 08:25:53.891197 2023-07-08 08:25:53.891205 94c78e67-8f56-4827-8930-1919e9f4a8ef {"md5": "ca8f6269af9ddecafaa23bb2c8826b1b", "pid": "A024529059", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A024529059", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024529059", "source": "RERO"}], "preferred_name": "Congrès international de sociologie 1930 :", "authorized_access_point": "Congrès international de sociologie (10 : 1930 : Genève)"} 1 -2023-07-08 08:25:53.997194 2023-07-08 08:25:53.997205 6be05c9a-aae4-4c8f-9a84-bcbc8f721c59 {"md5": "a28069a334e8e875756f94d4348638d3", "pid": "A024541309", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024541309", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024541309", "source": "RERO"}], "preferred_name": "Poulizac, Henri", "authorized_access_point": "Poulizac, Henri"} 1 -2023-07-08 08:25:54.117311 2023-07-08 08:25:54.117322 c6ce264d-54c0-4170-bc02-594333d330db {"md5": "40f68d801a6d5ec9a86372d9a8a97a4b", "pid": "A024566467", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024566467", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024566467", "source": "RERO"}], "preferred_name": "Riat, Lindsay", "authorized_access_point": "Riat, Lindsay"} 1 -2023-07-08 08:25:54.230327 2023-07-08 08:25:54.23034 a42f47d6-364f-44bc-827c-146b10b6c109 {"md5": "e8365c2f1192680883f8e6634811de14", "pid": "A024569645", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A024569645", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024569645", "source": "RERO"}], "preferred_name": "Association for Molecular Pathology", "authorized_access_point": "Association for Molecular Pathology"} 1 -2023-07-08 08:25:54.347241 2023-07-08 08:25:54.347253 333bf170-ffed-4565-920f-77f89157070d {"md5": "d4cd250be591cb6f5d756a314c2f49bd", "pid": "A024595109", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024595109", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024595109", "source": "RERO"}], "preferred_name": "Roura, Josep", "authorized_access_point": "Roura, Josep"} 1 -2023-07-08 08:25:54.487555 2023-07-08 08:25:54.487567 f900f339-7a43-439c-bfe0-edd6b504ddac {"md5": "d190d8aa68cc99673417334419e1b318", "pid": "A024595509", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A024595509", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024595509", "source": "RERO"}], "preferred_name": "Ligue des intérêts gessiens", "authorized_access_point": "Ligue des intérêts gessiens"} 1 -2023-07-08 08:25:54.602606 2023-07-08 08:25:54.602615 2cc5c958-fcc0-4dda-8242-d15ea9a0a985 {"md5": "9ba3b6791620487ceeb880a720282df8", "pid": "A024600161", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024600161", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024600161", "source": "RERO"}], "preferred_name": "Merkushkin, Grigoriĭ I︠A︡kovlevich", "authorized_access_point": "Merkushkin, Grigoriĭ I︠A︡kovlevich"} 1 -2023-07-08 08:25:54.714339 2023-07-08 08:25:54.714355 906234fb-7b89-42fd-8f6a-1a9afda0fe3f {"md5": "d13ce35e33c6a5e2435a7ed769666cda", "pid": "A024602006", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024602006", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024602006", "source": "RERO"}], "preferred_name": "Fracasso, Tony", "authorized_access_point": "Fracasso, Tony"} 1 -2023-07-08 08:25:54.828821 2023-07-08 08:25:54.828834 850ee5e9-06ed-44af-b692-d95327711cd2 {"md5": "d09925937106125b5ffa2562556255ec", "pid": "A024707851", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024707851", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024707851", "source": "RERO"}], "preferred_name": "Miropolʹskiĭ, Sergeĭ Irineevich", "authorized_access_point": "Miropolʹskiĭ, Sergeĭ Irineevich"} 1 -2023-07-08 08:25:54.93609 2023-07-08 08:25:54.936103 742617b6-e3f4-42e7-acc5-a2b52107debd {"md5": "0dd84c14e46ab3ded652f50b33fc2b81", "pid": "A024728544", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A024728544", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024728544", "source": "RERO"}], "preferred_name": "WallSaga", "authorized_access_point": "WallSaga"} 1 -2023-07-08 08:25:55.037549 2023-07-08 08:25:55.037558 b5fee03f-9479-42fe-9fc5-e0cf56e5c6b9 {"md5": "c9903a1a72f5c6f8aec96d6cfd888011", "pid": "A024729479", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024729479", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024729479", "source": "RERO"}], "preferred_name": "Solomonsen, Carl-Julius", "authorized_access_point": "Solomonsen, Carl-Julius"} 1 -2023-07-08 08:25:55.152117 2023-07-08 08:25:55.152131 27d7bc81-9413-46fc-b30e-1ee8a5c6f4dd {"md5": "a10907a690b89a75c52fe84f994c9616", "pid": "A024746147", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024746147", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024746147", "source": "RERO"}], "preferred_name": "Pichler, Meinrad", "authorized_access_point": "Pichler, Meinrad"} 1 -2023-07-08 08:25:55.259047 2023-07-08 08:25:55.259056 1cc57f1b-1e6e-47a5-96a0-c1fbb86b0ca9 {"md5": "ba60d8e8545c3c0f37423fe478a19707", "pid": "A024770093", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024770093", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024770093", "source": "RERO"}], "preferred_name": "Vior", "authorized_access_point": "Vior"} 1 -2023-07-08 08:25:55.366062 2023-07-08 08:25:55.366073 e120f5d0-9088-4c0e-b17d-d079dd9bac1e {"md5": "73a10e68f89c9f682980f99189d731b3", "pid": "A024774397", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024774397", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024774397", "source": "RERO"}], "preferred_name": "Wanderley, Germano", "authorized_access_point": "Wanderley, Germano"} 1 -2023-07-08 08:25:55.470498 2023-07-08 08:25:55.470511 ba358297-569b-4459-9175-e8f74dc4017a {"md5": "bab4477e2fc06883611ec1ef18b1d440", "pid": "A024790283", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A024790283", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024790283", "source": "RERO"}], "preferred_name": "Headcharger (groupe musical)", "authorized_access_point": "Headcharger (groupe musical)"} 1 -2023-07-08 08:25:55.58498 2023-07-08 08:25:55.584989 464a4eda-36d3-44a0-ba98-0b80015bf17b {"md5": "5e2b777f947e487fb1cae6e853376eb3", "pid": "A024801676", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024801676", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024801676", "source": "RERO"}], "preferred_name": "Yowell, F. D", "authorized_access_point": "Yowell, F. D"} 1 -2023-07-08 08:25:55.701447 2023-07-08 08:25:55.701462 091062ee-6817-42f8-b86e-aac85c8db8a7 {"md5": "07a13fc5fefb0bdb55df7337d1d39695", "pid": "A024814391", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024814391", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024814391", "source": "RERO"}], "preferred_name": "Kiellberg, Gustaf", "authorized_access_point": "Kiellberg, Gustaf"} 1 -2023-07-08 08:25:55.837317 2023-07-08 08:25:55.837331 f261023f-5856-4738-b9a8-768e36dda177 {"md5": "b6c2efc7e4f16b23a679fea70a794d1c", "pid": "A024843767", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024843767", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024843767", "source": "RERO"}], "date_of_birth": "1962", "preferred_name": "Peske, Nancy K.,", "authorized_access_point": "Peske, Nancy K., 1962-"} 1 -2023-07-08 08:25:55.967528 2023-07-08 08:25:55.967539 39a1e2e8-3633-4d47-8520-1919825c4c7f {"md5": "6adf325adb57408d5ef5a5ccb89b71cf", "pid": "A024846924", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A024846924", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024846924", "source": "RERO"}], "preferred_name": "Oeuvre suisse d'entraide ouvrière. Vaud. Assemblée générale 1994 :", "authorized_access_point": "Oeuvre suisse d'entraide ouvrière. Vaud. Assemblée générale (2 : 1994 : Vevey)"} 1 -2023-07-08 08:25:56.091911 2023-07-08 08:25:56.091925 b3a42382-fb1e-47f1-ad22-4e4a37bb7e27 {"md5": "67d721cae321df3ffeae310802612226", "pid": "A024866515", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024866515", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024866515", "source": "RERO"}], "preferred_name": "Deistler, Anja", "authorized_access_point": "Deistler, Anja"} 1 -2023-07-08 08:25:56.213415 2023-07-08 08:25:56.213432 aa94f6ed-b438-4b8d-8de3-935da2c36563 {"md5": "d63331b5d690888c009c536d6b19f7e9", "pid": "A024878364", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024878364", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024878364", "source": "RERO"}], "preferred_name": "Tihanyi, Eva", "authorized_access_point": "Tihanyi, Eva"} 1 -2023-07-08 08:25:56.335079 2023-07-08 08:25:56.335091 c01f1e27-3818-461d-83d4-2574b9e67b09 {"md5": "4ea27d62329cb376a143b2c398fefac4", "pid": "A024884886", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A024884886", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024884886", "source": "RERO"}], "preferred_name": "Centre européen d'études bourguignonnes (XIVe - XVIe s.). Rencontres (2013 :", "authorized_access_point": "Centre européen d'études bourguignonnes (XIVe - XVIe s.). Rencontres (2013 : Leiden / Den Haag)"} 1 -2023-07-08 08:25:56.457851 2023-07-08 08:25:56.45799 851f92e0-ba11-47aa-a32b-1d3729ebde5f {"md5": "cc9e77984a341fae840f9261358966bc", "pid": "A024896750", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A024896750", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024896750", "source": "RERO"}], "preferred_name": "Országos Stefánia Szövetség Anyák és Csecsemők Védelmére", "authorized_access_point": "Országos Stefánia Szövetség Anyák és Csecsemők Védelmére"} 1 -2023-07-08 08:25:56.569878 2023-07-08 08:25:56.569892 831a1850-e6ba-4756-861a-c668f2eb4445 {"md5": "252ee112b1b7ba3be0ebf4606253b8d0", "pid": "A024897034", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024897034", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024897034", "source": "RERO"}], "preferred_name": "Lechuga, Carlos", "authorized_access_point": "Lechuga, Carlos"} 1 -2023-07-08 08:25:56.681038 2023-07-08 08:25:56.681051 cc48c84a-5533-433e-a4fa-862046c82073 {"md5": "2f8f8b173fb63ceb6988d659a2df06ba", "pid": "A024917771", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024917771", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024917771", "source": "RERO"}], "preferred_name": "Lehmann-Larsen, Stine", "authorized_access_point": "Lehmann-Larsen, Stine"} 1 -2023-07-08 08:25:56.790981 2023-07-08 08:25:56.790994 83acc9b9-b2ed-4b77-9e42-2b21e1f5cffa {"md5": "0ce7bfa6ac844cdf8d6341dda2465dec", "pid": "A024919899", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A024919899", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024919899", "source": "RERO"}], "preferred_name": "Schweizerische Permanente Schulausstellung (Zürich). Kommission für das Pestalozzi-Stübchen", "authorized_access_point": "Schweizerische Permanente Schulausstellung (Zürich). Kommission für das Pestalozzi-Stübchen"} 1 -2023-07-08 08:25:56.911911 2023-07-08 08:25:56.911924 ed120042-8a12-4f49-9d2e-3e59087a8389 {"md5": "a9bcbe37f1a66af876bbe5efb325a980", "pid": "A024930424", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024930424", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024930424", "source": "RERO"}], "preferred_name": "Grönbergh, Andreas Nicolaus", "authorized_access_point": "Grönbergh, Andreas Nicolaus"} 1 -2023-07-08 08:25:57.020767 2023-07-08 08:25:57.020907 29d0f710-b2c0-473a-99c1-e2ba179c47ef {"md5": "893302ac4b982b1c840ffadebd76b85d", "pid": "A024960848", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A024960848", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024960848", "source": "RERO"}], "preferred_name": "Japanisches Kulturinstitut (Köln). Symposium (2013 :", "authorized_access_point": "Japanisches Kulturinstitut (Köln). Symposium (2013 : Köln)"} 1 -2023-07-08 08:25:57.126483 2023-07-08 08:25:57.126492 36941f87-a142-487b-8b9a-97dfc92180b0 {"md5": "cf263737b2f14fb472e1d5563baa71ce", "pid": "A024966631", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A024966631", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024966631", "source": "RERO"}], "preferred_name": "Eric Caudron", "authorized_access_point": "Eric Caudron"} 1 -2023-07-08 08:25:57.229994 2023-07-08 08:25:57.230004 1730346f-b2b9-49b1-878e-08c4bf57abba {"md5": "b85e242c571c74f336ec061f2e962236", "pid": "A024969731", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A024969731", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024969731", "source": "RERO"}], "preferred_name": "Lando, Bassiano", "authorized_access_point": "Lando, Bassiano", "biographical_information": ["Dates de vie: ? - 1562"]} 1 -2023-07-08 08:25:57.335848 2023-07-08 08:25:57.335856 4d552d11-eb97-4082-9e11-d5fa0febffee {"md5": "05a23646da59056d9281b250087e8492", "pid": "A024978532", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A024978532", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024978532", "source": "RERO"}], "variant_name": ["Savonlinna Opera Festival Orchestra", "Savonlinnan Oopperajuhlat. Orkesteri", "Orchestra of the Savonlinna opera festival"], "preferred_name": "Savonlinnan Oopperajuhlaorkesteri", "variant_access_point": ["Savonlinna Opera Festival Orchestra", "Savonlinnan Oopperajuhlat. Orkesteri", "Orchestra of the Savonlinna opera festival"], "authorized_access_point": "Savonlinnan Oopperajuhlaorkesteri"} 1 -2023-07-08 08:25:57.552134 2023-07-08 08:25:57.552144 a8650990-12d2-4325-9317-adc685a8fc19 {"md5": "74e3161eb5c818b45cf656fb06ab57d4", "pid": "A025024778", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025024778", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025024778", "source": "RERO"}], "preferred_name": "Hischier, David", "authorized_access_point": "Hischier, David"} 1 -2023-07-08 08:25:57.66623 2023-07-08 08:25:57.666245 8c65642e-c024-4708-983c-4771ae396234 {"md5": "21ac4fba5f6356cfa01db4f73571ff90", "pid": "A025029914", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025029914", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025029914", "source": "RERO"}], "preferred_name": "Razaq, Jābir", "authorized_access_point": "Razaq, Jābir"} 1 -2023-07-08 08:25:57.779251 2023-07-08 08:25:57.779269 cec8a0de-7e84-4852-bfd1-4292d830cebb {"md5": "60f77c595b59d23e2b2acf965d2cb335", "pid": "A025056747", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025056747", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025056747", "source": "RERO"}], "preferred_name": "Chifflot, J", "authorized_access_point": "Chifflot, J"} 1 -2023-07-08 08:25:57.897514 2023-07-08 08:25:57.897525 279ad39b-feaa-4052-adf6-dadf76eef322 {"md5": "c6b0320e5a9e8f4d21618a4c14abde9a", "pid": "A025075603", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025075603", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025075603", "source": "RERO"}], "preferred_name": "Tall, Djeny", "authorized_access_point": "Tall, Djeny"} 1 -2023-07-08 08:25:58.002272 2023-07-08 08:25:58.002286 1bbf6f36-7c25-4ddc-bf01-b0272acf30ab {"md5": "9c5d3d84f2db28feb7d6b4cfcbafee34", "pid": "A025086688", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025086688", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025086688", "source": "RERO"}], "variant_name": ["Dallos, Stephanus,"], "date_of_birth": "18ème siècle", "preferred_name": "Dallos, István,", "variant_access_point": ["Dallos, Stephanus, 18ème siècle"], "authorized_access_point": "Dallos, István, 18ème siècle"} 1 -2023-07-08 08:25:58.109617 2023-07-08 08:25:58.109627 267327ba-f8f6-481b-9704-3a1d27e02cdf {"md5": "21d799d431838337ff029adb1623930c", "pid": "A025119661", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A025119661", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025119661", "source": "RERO"}], "preferred_name": "Arbeitskreis der Sprachenzentren, Sprachlehrinstitute und Fremdspracheninstitute. Arbeitstagung 2008 :", "authorized_access_point": "Arbeitskreis der Sprachenzentren, Sprachlehrinstitute und Fremdspracheninstitute. Arbeitstagung (25 : 2008 : Passau)"} 1 -2023-07-08 08:25:58.220263 2023-07-08 08:25:58.220278 5b0a0fae-9f19-4b28-9634-f12a05ebb53a {"md5": "1793270fb8e2859e2c0bfc296ac6a2ac", "pid": "A025121507", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025121507", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025121507", "source": "RERO"}], "preferred_name": "Ghiani, Alessandra", "authorized_access_point": "Ghiani, Alessandra"} 1 -2023-07-08 08:25:58.319735 2023-07-08 08:25:58.319743 14c5ff21-04fd-4cc1-88b9-a20c831a225e {"md5": "e81a316390a9f98f90b4ff44b2ff82a8", "pid": "A025244362", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025244362", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025244362", "source": "RERO"}], "preferred_name": "Valloni, Renzo", "authorized_access_point": "Valloni, Renzo"} 1 -2023-07-08 08:25:58.443523 2023-07-08 08:25:58.443537 874698c6-5ae0-4442-90b2-a1a253c28969 {"md5": "73f5b2f3d27ae7756965a2f78d2d1a35", "pid": "A025252592", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025252592", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025252592", "source": "RERO"}], "preferred_name": "Böller-Herzog, Hans", "authorized_access_point": "Böller-Herzog, Hans"} 1 -2023-07-08 08:25:58.552318 2023-07-08 08:25:58.552332 6d941067-9a85-4473-a26e-df410a58e66a {"md5": "6c5e96e8226f8250532693e99390c67d", "pid": "A025258576", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025258576", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025258576", "source": "RERO"}], "date_of_birth": "1730", "date_of_death": "1757", "preferred_name": "Brückmann, Ernst Ludwig,", "authorized_access_point": "Brückmann, Ernst Ludwig, 1730-1757"} 1 -2023-07-08 08:25:58.675129 2023-07-08 08:25:58.67514 1049bcd3-52a2-4bdb-8ebc-129a3a71fbfb {"md5": "9cb35ef76ac64e669d5b0c8028cacbe0", "pid": "A025259137", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025259137", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025259137", "source": "RERO"}], "preferred_name": "Thaysen, Maren", "authorized_access_point": "Thaysen, Maren"} 1 -2023-07-08 08:25:58.776953 2023-07-08 08:25:58.776967 74800e41-4908-4892-9149-71ad97ce6aea {"md5": "3e180f30285ee31dcea36a32e7da8c29", "pid": "A025287146", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A025287146", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025287146", "source": "RERO"}], "preferred_name": "Print Council of America", "authorized_access_point": "Print Council of America"} 1 -2023-07-08 08:25:58.881364 2023-07-08 08:25:58.881377 b00db072-42d2-4faa-af35-7351e5f4c959 {"md5": "4be4bf5c3ad61054786b2eb2de99e677", "pid": "A025328121", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025328121", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025328121", "source": "RERO"}], "variant_name": ["Hofer, Nicola Thomas"], "preferred_name": "Hofer, Nicola", "variant_access_point": ["Hofer, Nicola Thomas"], "authorized_access_point": "Hofer, Nicola", "biographical_information": ["Juriste suisse ; \\"Dr. Nicola Hofer studierte Rechtswissenschaft an der Universität Bern, Université Paris 1 Panthéon-Sorbonne und Peking University. Zurzeit absolviert er ein EDA-Hochschulpraktikum in Taiwan.\\" (2020)"]} 1 -2023-07-08 08:25:59.002518 2023-07-08 08:25:59.002531 0bcd3b1f-8ff1-4376-923e-2891ffdbb33a {"md5": "4aa17394b6aa72691f05c3cfe9fada7c", "pid": "A025329777", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A025329777", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025329777", "source": "RERO"}], "preferred_name": "Manifesta 2004 :", "authorized_access_point": "Manifesta (5 : 2004 : Donostia-San Sebastian)"} 1 -2023-07-08 08:25:59.113255 2023-07-08 08:25:59.113282 946f5920-2397-406f-9db2-31c3b688f69b {"md5": "4c5e8c25ab5ae5fe89291338e9bc1e18", "pid": "A025330235", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025330235", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025330235", "source": "RERO"}], "preferred_name": "Corti, Maurizio", "authorized_access_point": "Corti, Maurizio"} 1 -2023-07-08 08:25:59.230793 2023-07-08 08:25:59.230804 3bf93799-69b3-4488-92f0-59c45e3f90de {"md5": "6f5c70e6068475b77a30af87eaccc3e0", "pid": "A025337143", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025337143", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025337143", "source": "RERO"}], "preferred_name": "Renaud, Heidy", "authorized_access_point": "Renaud, Heidy"} 1 -2023-07-08 08:25:59.344233 2023-07-08 08:25:59.344248 b7f3e753-1973-4bf4-afc5-d3ff04b2d51a {"md5": "61583ecb9021ee86ca9c8248c0e051c9", "pid": "A025360796", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025360796", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025360796", "source": "RERO"}], "preferred_name": "Chen, Mingyan", "authorized_access_point": "Chen, Mingyan"} 1 -2023-07-08 08:25:59.450364 2023-07-08 08:25:59.450378 81379039-569d-48bf-a069-21ecec0de05c {"md5": "cc7e99af36a765daf65cd7ad6c676ecd", "pid": "A025367912", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025367912", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025367912", "source": "RERO"}], "preferred_name": "Närä, Katarina", "authorized_access_point": "Närä, Katarina"} 1 -2023-07-08 08:25:59.573113 2023-07-08 08:25:59.573122 ada21491-ec3e-4d0d-87a8-2b579d90e15e {"md5": "6608d707946a61f71304d85d672ba1a7", "pid": "A025387385", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A025387385", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025387385", "source": "RERO"}], "variant_name": ["Muzeʾon le-omanut Yiśreʾelit (Ramat Gan)"], "preferred_name": "Museum of Israel Art (Ramat Gan)", "variant_access_point": ["Muzeʾon le-omanut Yiśreʾelit (Ramat Gan)"], "authorized_access_point": "Museum of Israel Art (Ramat Gan)"} 1 -2023-07-08 08:25:59.679119 2023-07-08 08:25:59.679128 a6358e42-6e69-4718-8d82-b08f8eafdce5 {"md5": "7d6e6e05991ce8d3a37aed8a5a866206", "pid": "A025397944", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A025397944", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025397944", "source": "RERO"}], "preferred_name": "Centro pedagogico-didattico per la Svizzera (Bern). Groupe mixte italo-suisse", "authorized_access_point": "Centro pedagogico-didattico per la Svizzera (Bern). Groupe mixte italo-suisse"} 1 -2023-07-08 08:25:59.781418 2023-07-08 08:25:59.781429 ef4b7941-275e-4b7c-9d06-a9d93a43f87d {"md5": "aa7eb5bab447baab4556f522104c5f65", "pid": "A025418238", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025418238", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025418238", "source": "RERO"}], "preferred_name": "Hirsch, Georg Friedrich Andreas", "authorized_access_point": "Hirsch, Georg Friedrich Andreas"} 1 -2023-07-08 08:25:59.901956 2023-07-08 08:25:59.901966 210cf93e-a6f6-4af3-ad8e-d8e0abc4d01c {"md5": "ae60ed3c058e9f83aa73ac2928fa058a", "pid": "A025435600", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025435600", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025435600", "source": "RERO"}], "preferred_name": "Vincensini, Cédric", "authorized_access_point": "Vincensini, Cédric"} 1 -2023-07-08 08:26:00.028516 2023-07-08 08:26:00.028521 bd9fafaa-c489-460a-9494-aabc46556b80 {"md5": "068ea439f77bc8bfce5397a1f0969983", "pid": "A025454683", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025454683", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025454683", "source": "RERO"}], "date_of_birth": "1939", "preferred_name": "Brown, Jonathan,", "authorized_access_point": "Brown, Jonathan, 1939-"} 1 -2023-07-08 08:26:00.122365 2023-07-08 08:26:00.122381 5be774ab-c899-42ec-a03e-2d1f830cd7f2 {"md5": "02f49cdf5ec637d18a95c17b4a27c80f", "pid": "A025477095", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A025477095", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025477095", "source": "RERO"}], "preferred_name": "Seprewa Kasa", "authorized_access_point": "Seprewa Kasa"} 1 -2023-07-08 08:26:00.237943 2023-07-08 08:26:00.23796 a8cd5b23-5367-4083-be4b-953c059a521f {"md5": "3f8f011bb3297050db8927297fc35c3e", "pid": "A025504164", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025504164", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025504164", "source": "RERO"}], "preferred_name": "Saul, Matthew", "authorized_access_point": "Saul, Matthew"} 1 -2023-07-08 08:26:00.375595 2023-07-08 08:26:00.37561 5be309a8-fcb4-4ca7-979e-c4219603f4b9 {"md5": "34fb4d4e5a76458e794ac9d856ab9678", "pid": "A025537929", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025537929", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025537929", "source": "RERO"}], "preferred_name": "Renoué, Pierre-François", "authorized_access_point": "Renoué, Pierre-François"} 1 -2023-07-08 08:26:00.489988 2023-07-08 08:26:00.489998 0265d941-3aa8-4899-87a4-6c61c03270cf {"md5": "e9c3ddd1c656d76508fd6aa40fd7e3d2", "pid": "A025540309", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025540309", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025540309", "source": "RERO"}], "preferred_name": "Gabarski, Sam", "authorized_access_point": "Gabarski, Sam"} 1 -2023-07-08 08:26:00.600056 2023-07-08 08:26:00.600071 bcae8ae5-e947-4e40-b75b-5611e4ec4292 {"md5": "a684984c381c50b5b539587efbd44b4f", "pid": "A025581873", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A025581873", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025581873", "source": "RERO"}], "preferred_name": "Konstanzer Arbeitskreis für Sportrecht. Herbsttagung (2012 :", "authorized_access_point": "Konstanzer Arbeitskreis für Sportrecht. Herbsttagung (2012 : Warnemünde)"} 1 -2023-07-08 08:26:00.771666 2023-07-08 08:26:00.771676 1610077c-85cb-457e-a832-6694b1219ca3 {"md5": "f30b55a15127feea48814a0541f90737", "pid": "A025582144", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025582144", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025582144", "source": "RERO"}], "date_of_birth": "1926", "preferred_name": "Jobe, Evan Kermit,", "authorized_access_point": "Jobe, Evan Kermit, 1926-"} 1 -2023-07-08 08:26:00.999626 2023-07-08 08:26:00.999636 ddf6c31c-b62c-4f8a-b7b7-538907c3e7a3 {"md5": "eff1d3fb849ee77461757de7222a637e", "pid": "A025610247", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A025610247", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025610247", "source": "RERO"}], "preferred_name": "Colloque international d'histoire et de spiritualité cartusiennes 2014 :", "authorized_access_point": "Colloque international d'histoire et de spiritualité cartusiennes (35 : 2014 : Köln)"} 1 -2023-07-08 08:26:01.134024 2023-07-08 08:26:01.134033 937812ce-c59b-4273-b76e-9a0fa8cdfda5 {"md5": "e8fb52114292b75e3d912d69472039a6", "pid": "A025614399", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025614399", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025614399", "source": "RERO"}], "preferred_name": "Clark, Chester Wells", "authorized_access_point": "Clark, Chester Wells"} 1 -2023-07-08 08:26:01.263214 2023-07-08 08:26:01.263225 0b3b8e3e-c215-41f5-bf62-54f3f7c4a059 {"md5": "af1dcd95d4392847aecff08f0fb3cc55", "pid": "A025630450", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025630450", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025630450", "source": "RERO"}], "preferred_name": "Salzmann, Marc", "authorized_access_point": "Salzmann, Marc"} 1 -2023-07-08 08:26:01.381727 2023-07-08 08:26:01.381739 35f21778-c9d0-4917-b64a-597b990c447c {"md5": "1ee160edebd65cc277d38c442c4bd70c", "pid": "A025632565", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025632565", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025632565", "source": "RERO"}], "preferred_name": "Fried, Hans Ernest", "authorized_access_point": "Fried, Hans Ernest"} 1 -2023-07-08 08:26:01.488943 2023-07-08 08:26:01.488954 43795bfd-9d65-44c3-9e6a-3127a1a9e094 {"md5": "0f704fec850144bdf8ca76596d3e2507", "pid": "A025639432", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025639432", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025639432", "source": "RERO"}], "preferred_name": "Moncenix, Jean François de", "authorized_access_point": "Moncenix, Jean François de"} 1 -2023-07-08 08:26:01.61753 2023-07-08 08:26:01.617542 3ece9f6b-ddfd-4c29-adec-b6370a0a025b {"md5": "b5c1c9ed9ab8fdb206bb937ac335f25c", "pid": "A025669520", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025669520", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025669520", "source": "RERO"}], "preferred_name": "Robineau, Jean-François", "authorized_access_point": "Robineau, Jean-François"} 1 -2023-07-08 08:26:01.759735 2023-07-08 08:26:01.759747 792844b0-5b36-41c5-9560-c4a36d0b1631 {"md5": "f641f7505537be099d70e5eaa41009e5", "pid": "A025676459", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025676459", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025676459", "source": "RERO"}], "preferred_name": "Haga, Anna", "authorized_access_point": "Haga, Anna"} 1 -2023-07-08 08:26:01.914026 2023-07-08 08:26:01.914036 18fc4047-a479-4b57-8ef5-2911d4e32d68 {"md5": "c2badda0b1d03f31c97c908c7213c084", "pid": "A025678092", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025678092", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025678092", "source": "RERO"}], "preferred_name": "Dooms, Gaspar", "authorized_access_point": "Dooms, Gaspar"} 1 -2023-07-08 08:26:02.037576 2023-07-08 08:26:02.037588 36f0ae91-ef49-4f7c-b5ae-b51ae938862e {"md5": "920667556b31b30711c638c34862a1d4", "pid": "A025679166", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025679166", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025679166", "source": "RERO"}], "preferred_name": "Nicolosi-Roncati, F", "authorized_access_point": "Nicolosi-Roncati, F"} 1 -2023-07-08 08:26:02.164584 2023-07-08 08:26:02.164594 210a7f07-bc92-4167-be18-164d55fb9789 {"md5": "b42b67561d3301c4b41716ac70cd80a0", "pid": "A025681987", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A025681987", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025681987", "source": "RERO"}], "preferred_name": "Gruppe Gegenbilder", "authorized_access_point": "Gruppe Gegenbilder"} 1 -2023-07-08 08:26:02.294142 2023-07-08 08:26:02.294153 fca008b8-d17c-4636-8a96-78c046cd4e74 {"md5": "b68da2994eab8f351c015e6260211605", "pid": "A025688432", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025688432", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025688432", "source": "RERO"}], "preferred_name": "Ribeiro, Marc", "authorized_access_point": "Ribeiro, Marc"} 1 -2023-07-08 08:26:02.440914 2023-07-08 08:26:02.440927 17b9328a-64f7-409f-84e8-0e73b9079e14 {"md5": "f2a5d5f46130a8967d7bf5d2749d7463", "pid": "A025691379", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "infirmière", "identifier": "http://data.rero.ch/02-A025691379", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025691379", "source": "RERO"}], "preferred_name": "Cottet, Valérie, infirmière", "authorized_access_point": "Cottet, Valérie, infirmière"} 1 -2023-07-08 08:26:02.561088 2023-07-08 08:26:02.561097 ab12f8b4-ee3c-425f-8629-82dc8bf98f55 {"md5": "164cebbecc87d55a4abf21c848d861b4", "pid": "A025694319", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025694319", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025694319", "source": "RERO"}], "preferred_name": "Sibears, Daniel M", "authorized_access_point": "Sibears, Daniel M"} 1 -2023-07-08 08:26:02.681831 2023-07-08 08:26:02.681841 b4433caa-cacc-48c6-a368-6c4e54dceb3d {"md5": "83614784220a382f0ffa104f98d62f90", "pid": "A025711026", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025711026", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025711026", "source": "RERO"}], "preferred_name": "Orozco, Luis Chávez", "authorized_access_point": "Orozco, Luis Chávez"} 1 -2023-07-08 08:26:02.799327 2023-07-08 08:26:02.799339 2bd95df8-967f-4401-bbef-ed8ef7da7643 {"md5": "6867976eda29a6c3d74abc01e4aaacf1", "pid": "A025712587", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025712587", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025712587", "source": "RERO"}], "preferred_name": "Vagner, Marion", "authorized_access_point": "Vagner, Marion"} 1 -2023-07-08 08:26:02.916437 2023-07-08 08:26:02.916452 8f68dc51-ba29-45b0-8561-d6409ab16e55 {"md5": "0f1520b1898baabc6d4a371577ee996e", "pid": "A025721356", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025721356", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025721356", "source": "RERO"}], "variant_name": ["Otto, Bettina,", "Otto, Bettina Jellouschek-,"], "date_of_birth": "1956", "preferred_name": "Jellouschek-Otto, Bettina,", "variant_access_point": ["Otto, Bettina, 1956-", "Otto, Bettina Jellouschek-, 1956-"], "authorized_access_point": "Jellouschek-Otto, Bettina, 1956-", "biographical_information": ["Ecrivain, germaniste, psychologue"]} 1 -2023-07-08 08:26:03.027138 2023-07-08 08:26:03.027152 52ef8712-0d84-4791-8b1d-cf5b8757d133 {"md5": "3dd3cacd22e458037391009653d91fcb", "pid": "A025723446", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025723446", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025723446", "source": "RERO"}], "preferred_name": "Kaliska, Maria", "authorized_access_point": "Kaliska, Maria"} 1 -2023-07-08 08:26:03.14129 2023-07-08 08:26:03.141301 b4f307c0-e19d-4d19-9887-d2a4399f25ac {"md5": "6335811da75fe711a96bf08c0e01d5c3", "pid": "A025730129", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A025730129", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025730129", "source": "RERO"}], "preferred_name": "Xavier Hufkens (Bruxelles)", "authorized_access_point": "Xavier Hufkens (Bruxelles)"} 1 -2023-07-08 08:26:03.249213 2023-07-08 08:26:03.249222 6f989dc1-c1cc-401a-9fb4-8fc71ed28887 {"md5": "9945291aa132ef05e9c69dbbf4fbd127", "pid": "A025745173", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025745173", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025745173", "source": "RERO"}], "preferred_name": "Lenggenhager, Alizée", "authorized_access_point": "Lenggenhager, Alizée"} 1 -2023-07-08 08:26:03.36868 2023-07-08 08:26:03.368691 08887566-7393-451d-badd-31d93a81cd99 {"md5": "3db402c1bf2450ebc6b9eea5f5837a34", "pid": "A025772014", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025772014", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025772014", "source": "RERO"}], "preferred_name": "Kalambay Kabeya, Christian", "authorized_access_point": "Kalambay Kabeya, Christian"} 1 -2023-07-08 08:26:03.473268 2023-07-08 08:26:03.47328 f2db710c-1958-4ed7-96e6-18f85aaf1498 {"md5": "006fa526a70d862bfcc0abddb98c0e95", "pid": "A025773339", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A025773339", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025773339", "source": "RERO"}], "preferred_name": "Theology and the Local Church in the Holy Land 1987->)", "authorized_access_point": "Theology and the Local Church in the Holy Land (1-> : 1987->)"} 1 -2023-07-08 08:26:03.586694 2023-07-08 08:26:03.586708 6599c27f-c4b0-43a5-ad21-c78679cc8f75 {"md5": "6423d1fa17bdaea4f03858b4a6bc3fe3", "pid": "A025780261", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025780261", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025780261", "source": "RERO"}], "preferred_name": "Jorgensen, James H", "authorized_access_point": "Jorgensen, James H"} 1 -2023-07-08 08:26:03.692468 2023-07-08 08:26:03.692481 c666f4cb-f21f-4e70-abf5-0348dd8bab1d {"md5": "f441816563a1fd68c239dff00467b096", "pid": "A025785978", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025785978", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025785978", "source": "RERO"}], "preferred_name": "Lemos, Rogério de", "authorized_access_point": "Lemos, Rogério de"} 1 -2023-07-08 08:26:03.80343 2023-07-08 08:26:03.803443 5b189e40-a12d-4bea-aff3-e7f8af6c115f {"md5": "697bf79ee375cbb7c6aaa324f089d50d", "pid": "A025796144", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025796144", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025796144", "source": "RERO"}], "preferred_name": "Tripathi, Arti", "authorized_access_point": "Tripathi, Arti"} 1 -2023-07-08 08:26:03.941462 2023-07-08 08:26:03.941472 06682490-c691-41b0-a729-5da1fe406494 {"md5": "08f61a6e3553f5521fc2dc41f35e0cc8", "pid": "A025797147", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025797147", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025797147", "source": "RERO"}], "preferred_name": "Nippel, Julien", "authorized_access_point": "Nippel, Julien"} 1 -2023-07-08 08:26:04.056391 2023-07-08 08:26:04.056404 8da8db31-f4ad-49b7-8090-52213cf07e22 {"md5": "0014d34d51ced9a3e169097f02e63bef", "pid": "A025804299", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "(de Nicée)", "identifier": "http://data.rero.ch/02-A025804299", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025804299", "source": "RERO"}], "variant_name": ["Antigonos (de Nikaia)", "Antigonus (Nicaeanus)"], "preferred_name": "Antigone (de Nicée)", "variant_access_point": ["Antigonos (de Nikaia)", "Antigonus (Nicaeanus)"], "authorized_access_point": "Antigone (de Nicée)"} 1 -2023-07-08 08:26:04.165832 2023-07-08 08:26:04.165848 7acce30a-1990-4805-a36c-bdc1e6646359 {"md5": "71ba5418a796f85b760c35d2ba870793", "pid": "A025826851", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025826851", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025826851", "source": "RERO"}], "preferred_name": "Rockstraw, Leland", "authorized_access_point": "Rockstraw, Leland"} 1 -2023-07-08 08:26:04.280987 2023-07-08 08:26:04.280996 6caeb0cf-9ab2-4396-80ef-ed993df080d1 {"md5": "2cce61c842a9ddec54432509b63b101f", "pid": "A025833339", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025833339", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025833339", "source": "RERO"}], "variant_name": ["Jara, Camilo Bácares"], "preferred_name": "Bácares Jara, Camilo", "variant_access_point": ["Jara, Camilo Bácares"], "authorized_access_point": "Bácares Jara, Camilo"} 1 -2023-07-08 08:26:04.386881 2023-07-08 08:26:04.38689 af27cf35-49bc-425f-843b-39f109d15fbe {"md5": "b7538d8e88c0f7db599dd261d9875e0c", "pid": "A025835776", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025835776", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025835776", "source": "RERO"}], "preferred_name": "Delumeau, Martine", "authorized_access_point": "Delumeau, Martine"} 1 -2023-07-08 08:26:04.496489 2023-07-08 08:26:04.496501 6af7fad8-4ddd-42f2-b97a-77781ebb38ad {"md5": "67adc7bbd6f5c6ef0cb24084911124af", "pid": "A025837185", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025837185", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025837185", "source": "RERO"}], "preferred_name": "Bethge, Clemens W", "authorized_access_point": "Bethge, Clemens W"} 1 -2023-07-08 08:26:04.625517 2023-07-08 08:26:04.625527 3c396464-3a95-4a91-8339-15af3c4882d4 {"md5": "e359ab3df9845b40669a4a068e117bf5", "pid": "A025845397", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025845397", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025845397", "source": "RERO"}], "preferred_name": "Berckenmeyer, Wilhelm Christoph", "authorized_access_point": "Berckenmeyer, Wilhelm Christoph"} 1 -2023-07-08 08:26:04.768404 2023-07-08 08:26:04.768421 6c927a3c-33c0-4d48-aac2-576520630c5a {"md5": "d956b94f8cc7066b5782bd16b495578e", "pid": "A025848952", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025848952", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025848952", "source": "RERO"}], "preferred_name": "Schütz, Detta Sophie", "authorized_access_point": "Schütz, Detta Sophie"} 1 -2023-07-08 08:26:04.875607 2023-07-08 08:26:04.875619 ff3ee9a6-e3ba-4b1f-91fb-1c84aed776e8 {"md5": "e3d38feafecf9f5cc0a055f7d1bf1ad8", "pid": "A025851501", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025851501", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025851501", "source": "RERO"}], "variant_name": ["Kuchlein, Johannes,", "Kuchlinus, Johannes,", "Kuchlinus, Joannes,", "Cuchlinus, Johannes,", "Keuchlinus, Johannes,", "Küchlin, Jean,"], "date_of_birth": "1546", "date_of_death": "1606", "preferred_name": "Küchlein, Johann,", "variant_access_point": ["Kuchlein, Johannes, 1546-1606", "Kuchlinus, Johannes, 1546-1606", "Kuchlinus, Joannes, 1546-1606", "Cuchlinus, Johannes, 1546-1606", "Keuchlinus, Johannes, 1546-1606", "Küchlin, Jean, 1546-1606"], "authorized_access_point": "Küchlein, Johann, 1546-1606", "biographical_information": ["Théologien allemand. Ministre protestant et professeur en théologie. Il naquit à Wetterau (Hesse) en 1546, mourut à Leyde, le 2 juillet 1606. Après avoir terminé ses études à Heidelberg, il fut reçu ministre et attaché à l'église de Tackenheim. Les pasteurs calvinistes ayant été chassés du pays, en 1576, par l'électeur Louis, qui se prétendait luthérien, Johann Küchlein passa en Hollande, enseigna pendant dix-huit ans la théologie à Amsterdam, et dirigea, depuis 1595, le collège de Leyde. Devant lui, de nombreuses thèses furent soutenues. En 1613, ces travaux ont été publiés, à Genève, en un seul volume in-quarto, sous le titre : \\"Theologicae disputationes de religionis christianae capitibus praecipuis...\\". Selon Bayle, Guy Patin l'a fort loué, et un peu trop, car il le nommait \\"un des plus savants hommes de son siècle\\""]} 1 -2023-07-08 08:26:04.98822 2023-07-08 08:26:04.988231 342c5ebc-d1df-460b-9947-15172f478687 {"md5": "55e12f62de4ba47b39ffcd83f6b2ac7a", "pid": "A025884069", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025884069", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025884069", "source": "RERO"}], "preferred_name": "Vaulx, Sandra de", "authorized_access_point": "Vaulx, Sandra de"} 1 -2023-07-08 08:26:05.12442 2023-07-08 08:26:05.124428 b6f0993f-d58c-491e-a8be-c2d3a3df7a8d {"md5": "b644271ca0990c2ca90118ab85f6ee47", "pid": "A025890846", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A025890846", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025890846", "source": "RERO"}], "preferred_name": "Edmond Jefferson & Sons", "authorized_access_point": "Edmond Jefferson & Sons"} 1 -2023-07-08 08:26:05.241865 2023-07-08 08:26:05.24188 0cbdc85e-51d3-432c-9eb5-919c3925547e {"md5": "3785f514adbbf392af0806b6d826be23", "pid": "A025893734", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A025893734", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025893734", "source": "RERO"}], "preferred_name": "Österreichische Akademie der Wissenschaften. Zentrum Archäologie und Altertumswissenschaften. Tagung 2012 :", "authorized_access_point": "Österreichische Akademie der Wissenschaften. Zentrum Archäologie und Altertumswissenschaften. Tagung (4 : 2012 : Salzburg)"} 1 -2023-07-08 08:26:05.366376 2023-07-08 08:26:05.36639 afcb4b24-759e-464d-a51f-0637545b7dfe {"md5": "c801acff0c0748b4536557ecb0be69c6", "pid": "A025926750", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025926750", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025926750", "source": "RERO"}], "preferred_name": "Feroumont, Bernadette", "authorized_access_point": "Feroumont, Bernadette"} 1 -2023-07-08 08:26:05.501997 2023-07-08 08:26:05.502009 753035ce-0c68-469d-a379-1992eaae7674 {"md5": "b35c79ad0b8c5087a9a8758e89229e40", "pid": "A025930633", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025930633", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025930633", "source": "RERO"}], "preferred_name": "Zell, Johann Daniel Augustin", "authorized_access_point": "Zell, Johann Daniel Augustin"} 1 -2023-07-08 08:26:05.621648 2023-07-08 08:26:05.621662 fb77445b-b0a4-42d0-a001-8d97b9fb6fa2 {"md5": "82a238d34b829fc49e2a2f1e424f8330", "pid": "A025932364", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A025932364", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025932364", "source": "RERO"}], "variant_name": ["Associacion francesa dels catalanistas", "AFC (Association française des catalanistes)"], "preferred_name": "Association française des catalanistes", "variant_access_point": ["Associacion francesa dels catalanistas", "AFC (Association française des catalanistes)"], "authorized_access_point": "Association française des catalanistes"} 1 -2023-07-08 08:26:05.775399 2023-07-08 08:26:05.775412 de28a926-45d2-4a13-96b3-cb5d27321820 {"md5": "e079b193c7cdfa33a5a0e43facbed3cb", "pid": "A025951707", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025951707", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025951707", "source": "RERO"}], "preferred_name": "Loretan, Alexandre", "authorized_access_point": "Loretan, Alexandre"} 1 -2023-07-08 08:26:05.905836 2023-07-08 08:26:05.90585 cdb56294-5150-49ea-a598-f3902cbedf2c {"md5": "ca936fcd3c71d097ef7ea6b5b9200297", "pid": "A025956739", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025956739", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025956739", "source": "RERO"}], "preferred_name": "Bey, Dawond", "authorized_access_point": "Bey, Dawond"} 1 -2023-07-08 08:26:06.047492 2023-07-08 08:26:06.047507 ea1390e9-b290-43db-85a8-c442cc98509f {"md5": "5c30c8879616250aa794b55533c87c35", "pid": "A025958419", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025958419", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025958419", "source": "RERO"}], "preferred_name": "Kuzma, Pete", "authorized_access_point": "Kuzma, Pete"} 1 -2023-07-08 08:26:06.18213 2023-07-08 08:26:06.182145 22abc4ff-6b43-4a74-b806-2a1c758f5aca {"md5": "762ce71196a3c73b82628ba417b9a066", "pid": "A025965491", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025965491", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025965491", "source": "RERO"}], "variant_name": ["Petrini, Lisa", "Ferrario, Lisa"], "preferred_name": "Ferrario Petrini, Lisa", "variant_access_point": ["Petrini, Lisa", "Ferrario, Lisa"], "authorized_access_point": "Ferrario Petrini, Lisa", "biographical_information": ["Née en 1983. - Avocate à l'Etude Respini, Jelmini, Beretta Piccoli & Fornara, Lugano"]} 1 -2023-07-08 08:26:06.316035 2023-07-08 08:26:06.316048 2028d331-cada-4839-bdf9-b58716f61398 {"md5": "99dddf574ab375f81e66b638a30d3586", "pid": "A025967759", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025967759", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025967759", "source": "RERO"}], "preferred_name": "Pool, Eva", "authorized_access_point": "Pool, Eva"} 1 -2023-07-08 08:26:06.442208 2023-07-08 08:26:06.442221 62971685-7850-4b6c-8f12-f593c6a15247 {"md5": "65b80d2c874564c8b79363743db885a1", "pid": "A025976492", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025976492", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025976492", "source": "RERO"}], "preferred_name": "Beldsoe, Jane K", "authorized_access_point": "Beldsoe, Jane K"} 1 -2023-07-08 08:26:06.565684 2023-07-08 08:26:06.565698 efc2f80c-bf98-4056-a48f-3e427138b264 {"md5": "0484714feb2d6e0e7d708e3c52991087", "pid": "A025983847", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025983847", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025983847", "source": "RERO"}], "variant_name": ["Millamoto, María Esther Quintana", "Quintana, María Esther", "Quintana M., María Esther"], "preferred_name": "Quintana Millamoto, María Esther", "variant_access_point": ["Millamoto, María Esther Quintana", "Quintana, María Esther", "Quintana M., María Esther"], "authorized_access_point": "Quintana Millamoto, María Esther"} 1 -2023-07-08 08:26:06.703991 2023-07-08 08:26:06.704006 983de835-1d7f-4853-a197-0e36812f6e6e {"md5": "9ee2730aa82f99afcbb3234250270d07", "pid": "A025987021", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A025987021", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025987021", "source": "RERO"}], "preferred_name": "Imhanobe, Sylvester Omoregie", "authorized_access_point": "Imhanobe, Sylvester Omoregie"} 1 -2023-07-08 08:26:06.837723 2023-07-08 08:26:06.837734 fe087b24-bb4c-4277-96c2-4ef7a7d54473 {"md5": "be24f6222b339f93187fce6e908ed799", "pid": "A026005729", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026005729", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026005729", "source": "RERO"}], "preferred_name": "Krajnovic, Jasma", "authorized_access_point": "Krajnovic, Jasma"} 1 -2023-07-08 08:26:06.960278 2023-07-08 08:26:06.96029 8be03b86-da47-49fe-9ff8-926ef7ae225f {"md5": "d680bdfa0b647f10884b6a442b051c88", "pid": "A026012565", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026012565", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026012565", "source": "RERO"}], "preferred_name": "Kracht, Louis", "authorized_access_point": "Kracht, Louis"} 1 -2023-07-08 08:26:07.10943 2023-07-08 08:26:07.109434 6d3d0af4-f28f-4978-9752-43b7c7ac9e9a {"md5": "e2836ae0c2c9dac03be5c28ab5b21c1d", "pid": "A026015516", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026015516", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026015516", "source": "RERO"}], "preferred_name": "Korvin, Stéphane", "authorized_access_point": "Korvin, Stéphane"} 1 -2023-07-08 08:26:07.176262 2023-07-08 08:26:07.176265 9a661978-41ff-440c-9082-ff4d474989f1 {"md5": "c4e7e0b73e712724b8a2e9b1bb3bcfbf", "pid": "A026028252", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "médecin", "identifier": "http://data.rero.ch/02-A026028252", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026028252", "source": "RERO"}], "preferred_name": "Caron, Michel, médecin", "authorized_access_point": "Caron, Michel, médecin"} 1 -2023-07-08 08:26:07.274144 2023-07-08 08:26:07.274152 bb92cae3-878d-4863-b83a-5409a915709a {"md5": "0be9825e473b054b102010ccf9b72e91", "pid": "A026028546", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026028546", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026028546", "source": "RERO"}], "date_of_birth": "1972", "preferred_name": "Amesbury, Richard,", "authorized_access_point": "Amesbury, Richard, 1972-"} 1 -2023-07-08 08:26:07.394012 2023-07-08 08:26:07.394023 58f8811c-fbf1-402c-872f-5817563a80d2 {"md5": "b5e6e7fcdcc6ba75994853e438d921d1", "pid": "A026050339", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A026050339", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026050339", "source": "RERO"}], "variant_name": ["Alchimic (théâtre, Carouge)"], "preferred_name": "Théâtre Alchimic (Carouge)", "variant_access_point": ["Alchimic (théâtre, Carouge)"], "authorized_access_point": "Théâtre Alchimic (Carouge)"} 1 -2023-07-08 08:26:07.499622 2023-07-08 08:26:07.499631 c43d033b-3973-4d16-a243-54a180274197 {"md5": "1a76ffecfa4d7caac38c3b7d6cd654ef", "pid": "A026066357", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026066357", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026066357", "source": "RERO"}], "preferred_name": "Schmid, Luna", "authorized_access_point": "Schmid, Luna"} 1 -2023-07-08 08:26:07.617278 2023-07-08 08:26:07.617286 3fe2fb34-96ff-43dd-ad2a-03b17b804a48 {"md5": "00b3d9a6a48c2dffb9262ad80342068a", "pid": "A026085043", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026085043", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026085043", "source": "RERO"}], "preferred_name": "Pointet, Raymond", "authorized_access_point": "Pointet, Raymond"} 1 -2023-07-08 08:26:07.716434 2023-07-08 08:26:07.716447 acef9d8d-fc28-4b5f-8953-e27e5b20f683 {"md5": "8b81c19935bb6e4e3fac379d3839f604", "pid": "A026091329", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026091329", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026091329", "source": "RERO"}], "preferred_name": "Teverson, Paul", "authorized_access_point": "Teverson, Paul"} 1 -2023-07-08 08:26:07.829261 2023-07-08 08:26:07.829272 8a14b101-1c1a-4d3e-9f7c-27b25c905e58 {"md5": "c06906641911f710d751e48a3075960d", "pid": "A026115092", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A026115092", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026115092", "source": "RERO"}], "variant_name": ["ENSBA (Ecole nationale supérieure des beaux-arts : Lyon)", "ENSBA Lyon (Ecole nationale supérieure des beaux-arts : Lyon)", "Ecole nationale supérieure des beaux-arts de Lyon"], "preferred_name": "Ecole nationale supérieure des beaux-arts (Lyon)", "variant_access_point": ["ENSBA (Ecole nationale supérieure des beaux-arts : Lyon)", "ENSBA Lyon (Ecole nationale supérieure des beaux-arts : Lyon)", "Ecole nationale supérieure des beaux-arts de Lyon"], "authorized_access_point": "Ecole nationale supérieure des beaux-arts (Lyon)", "biographical_information": ["Jusqu'en janvier 2011: Ecole nationale des beaux-arts (Lyon)", "Dès le 1 février 2011: Ecole nationale supérieure des beaux-arts (Lyon)"]} 1 -2023-07-08 08:26:07.936251 2023-07-08 08:26:07.936261 07fb1e3c-41d6-4351-aec2-c42d3ed768e1 {"md5": "61edf968824a737a4580e9e2e2620ae9", "pid": "A026120339", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026120339", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026120339", "source": "RERO"}], "preferred_name": "Gledhill, Hugh", "authorized_access_point": "Gledhill, Hugh"} 1 -2023-07-08 08:26:08.056662 2023-07-08 08:26:08.056673 aa6c6f46-7952-46a6-8eb6-3f42fd61fefc {"md5": "d57eac03cd35122616da42c09d3115c2", "pid": "A026122888", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026122888", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026122888", "source": "RERO"}], "variant_name": ["Zakharova, T. K.", "Zacharova, Tatʹjana Konstantinovna", "Zaharova, Tatʹâna Konstantinovna"], "preferred_name": "Zakharova, Tatʹi︠a︡na Konstantinova", "variant_access_point": ["Zakharova, T. K. (Tatʹi︠a︡na Konstantinova)", "Zacharova, Tatʹjana Konstantinovna", "Zaharova, Tatʹâna Konstantinovna"], "parallel_access_point": ["Захарова, Татьяна Михайловна"], "authorized_access_point": "Zakharova, Tatʹi︠a︡na Konstantinova"} 1 -2023-07-08 08:26:08.172056 2023-07-08 08:26:08.172065 e6fd4f7b-87e4-4fd7-a76f-fa47301c7c78 {"md5": "46cf630d80820a43d570b5d9177a1d57", "pid": "A026123991", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026123991", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026123991", "source": "RERO"}], "preferred_name": "Cardoso, António", "authorized_access_point": "Cardoso, António"} 1 -2023-07-08 08:26:08.284929 2023-07-08 08:26:08.284939 8b8b4e55-dd29-43d6-90b8-d364e26c185e {"md5": "6bf969b295e23c01aa8b323835f59dfa", "pid": "A026129158", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A026129158", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026129158", "source": "RERO"}], "preferred_name": "Association d'amitié des peuples de Chine et d'Afrique", "authorized_access_point": "Association d'amitié des peuples de Chine et d'Afrique"} 1 -2023-07-08 08:26:08.410915 2023-07-08 08:26:08.410924 98f7e54d-6ead-42d6-a7ff-7173b53859be {"md5": "7748832803b2594d62308f5a1ff2b97b", "pid": "A026132029", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026132029", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026132029", "source": "RERO"}], "preferred_name": "Ochieng Pernet, Awilo", "authorized_access_point": "Ochieng Pernet, Awilo"} 1 -2023-07-08 08:26:08.515248 2023-07-08 08:26:08.515261 ef3245d8-7cd7-468f-9b47-80c7a9cc97d2 {"md5": "d5b52c8be6c4f2042d0ce63bd17e524d", "pid": "A026144791", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026144791", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026144791", "source": "RERO"}], "date_of_birth": "1886", "date_of_death": "1938", "preferred_name": "Shumi︠a︡t︠zki, B.", "authorized_access_point": "Shumi︠a︡t︠zki, B. (Boris Zakharovich), 1886-1938"} 1 -2023-07-08 08:26:08.62412 2023-07-08 08:26:08.624132 143e6164-1c10-43ec-afc1-0bff52558382 {"md5": "68decf9103c9bc5a224506c5fa1039c4", "pid": "A026155985", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "Denis", "identifier": "http://data.rero.ch/02-A026155985", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026155985", "source": "RERO"}], "preferred_name": "Eyraud, Denis", "authorized_access_point": "Eyraud, Denis"} 1 -2023-07-08 08:26:08.751065 2023-07-08 08:26:08.751079 104c342d-3635-4561-be6b-1b6ca91f3e4b {"md5": "3b6309c9893200df7f06034028c43dce", "pid": "A026164040", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026164040", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026164040", "source": "RERO"}], "preferred_name": "Koller, Pierre", "authorized_access_point": "Koller, Pierre"} 1 -2023-07-08 08:26:08.859325 2023-07-08 08:26:08.859334 1eea5e3d-6566-40ab-959c-f87c69d1c8cb {"md5": "48627c66e6d494669bfb8f5732b0f633", "pid": "A026168031", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A026168031", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026168031", "source": "RERO"}], "preferred_name": "Journées européennes des métiers d'art (2015)", "authorized_access_point": "Journées européennes des métiers d'art (2015)"} 1 -2023-07-08 08:26:08.968078 2023-07-08 08:26:08.968095 32084f28-a1d6-4aad-a128-645c97bd37a0 {"md5": "f911449afd8636cd22e2e00f547701e0", "pid": "A026168151", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026168151", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026168151", "source": "RERO"}], "preferred_name": "Schmutz, Mike", "authorized_access_point": "Schmutz, Mike"} 1 -2023-07-08 08:26:09.076705 2023-07-08 08:26:09.076721 cc3ffce7-cb88-41e6-a194-dcb46e224348 {"md5": "68443b12a5ecb8133c8b263be7d832e1", "pid": "A026169859", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026169859", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026169859", "source": "RERO"}], "preferred_name": "Choudhary, Debi", "authorized_access_point": "Choudhary, Debi"} 1 -2023-07-08 08:26:09.187707 2023-07-08 08:26:09.187718 25ec71e1-2c58-4d3a-b41f-b0cd52c89ed5 {"md5": "2e4d5b775c3bd2d3851cd365b1edd975", "pid": "A026174573", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026174573", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026174573", "source": "RERO"}], "variant_name": ["Dupasquier, Jacques-Louis,", "Pasquier, Jacques-Louis du,"], "date_of_birth": "1762", "date_of_death": "1830", "preferred_name": "Du Pasquier, Jacques-Louis,", "variant_access_point": ["Dupasquier, Jacques-Louis, 1762-1830", "Pasquier, Jacques-Louis du, 1762-1830"], "authorized_access_point": "Du Pasquier, Jacques-Louis, 1762-1830", "biographical_information": ["Pasteur neuchâtelois (consacré le 6 août 1783). - Chapelain du roi de Prusse à Berlin (1789-ca.1791). - Député aux Audiences générales. - Un des fondateurs de la Caisse d'épargne (1812). - Aumônier du contingent neuchâtelois levé en 1815. - Rédacteur du \\"Messager boiteux de Neuchâtel\\" (1805-1830)"]} 1 -2023-07-08 08:26:09.311565 2023-07-08 08:26:09.311579 87bca90d-6ad8-4f02-af87-905a5e5f0f8d {"md5": "69ff1ee3b3b2dc179edfe7526417a6cb", "pid": "A026408718", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026408718", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026408718", "source": "RERO"}], "preferred_name": "Monkelbaan, Joachim", "authorized_access_point": "Monkelbaan, Joachim"} 1 -2023-07-08 08:26:09.425083 2023-07-08 08:26:09.425093 c257b916-7b77-4a60-bdc2-9cd99b411274 {"md5": "ab6de8cd16b0eaefaafe4f03ed147dea", "pid": "A026432303", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026432303", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026432303", "source": "RERO"}], "preferred_name": "Lombardoni, Chiara", "authorized_access_point": "Lombardoni, Chiara"} 1 -2023-07-08 08:26:09.538457 2023-07-08 08:26:09.538469 380db8ff-b02c-44a8-87fb-52f6641cfeef {"md5": "2c8445137cde43835f010fc7bc7d921f", "pid": "A026434702", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A026434702", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026434702", "source": "RERO"}], "preferred_name": "International Workshop on Embedded Software 2003 :", "authorized_access_point": "International Workshop on Embedded Software (3 : 2003 : Philadelphia)"} 1 -2023-07-08 08:26:09.646087 2023-07-08 08:26:09.6461 e0ab25b1-0d53-4ddf-bbc0-2dc06d3f072c {"md5": "f223961a94270a73a788bf5c13e31fc4", "pid": "A026439717", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026439717", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026439717", "source": "RERO"}], "date_of_birth": "1958", "preferred_name": "Hajatpour, Reza,", "authorized_access_point": "Hajatpour, Reza, 1958-"} 1 -2023-07-08 08:26:09.761211 2023-07-08 08:26:09.761222 1d926238-fc2c-43b1-95fb-6f00818f5fa2 {"md5": "198b9a7016ce54eb9ccdb9a9bea44970", "pid": "A026450966", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026450966", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026450966", "source": "RERO"}], "preferred_name": "Pressmann, Gina", "authorized_access_point": "Pressmann, Gina"} 1 -2023-07-08 08:26:09.872197 2023-07-08 08:26:09.872205 2cf21512-60a2-4fc3-9fe0-050edcd6477c {"md5": "f83d13ea1af7de841fa693f6ccbf37fb", "pid": "A026459182", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A026459182", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026459182", "source": "RERO"}], "preferred_name": "Slow show", "authorized_access_point": "Slow show"} 1 -2023-07-08 08:26:09.974671 2023-07-08 08:26:09.974684 dea410cc-058b-4aad-813d-6ae6837888d7 {"md5": "b8e6b1ff91a24fb7ba35bbb0586bf894", "pid": "A026462220", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A026462220", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026462220", "source": "RERO"}], "preferred_name": "Universidad Nacional de Educación a Distancia (Madrid). Centro de Investigación de Semiótica Literaria, Teatral y Nuevas Tecnologías. Seminario Internacional 2009 :", "authorized_access_point": "Universidad Nacional de Educación a Distancia (Madrid). Centro de Investigación de Semiótica Literaria, Teatral y Nuevas Tecnologías. Seminario Internacional (19 : 2009 : Madrid)"} 1 -2023-07-08 08:26:10.080379 2023-07-08 08:26:10.080394 f3b0d1a0-7e8e-471b-bb18-acf5ee8922c8 {"md5": "6b8b6dd4398d45387d5721a27d87098a", "pid": "A026466905", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026466905", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026466905", "source": "RERO"}], "preferred_name": "Maret, Morgane", "authorized_access_point": "Maret, Morgane"} 1 -2023-07-08 08:26:10.202304 2023-07-08 08:26:10.202318 a35f5fee-ae23-4fb4-a993-0c33aa924bf9 {"md5": "84751c8d0de7e9db43ad1cb6a14273af", "pid": "A026474353", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026474353", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026474353", "source": "RERO"}], "preferred_name": "Ramò, Mario", "authorized_access_point": "Ramò, Mario"} 1 -2023-07-08 08:26:10.311966 2023-07-08 08:26:10.311978 ad8c157e-5bc7-46fd-9887-0616488f60b0 {"md5": "4f6375775d9c7420eca73943c8770215", "pid": "A026534148", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026534148", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026534148", "source": "RERO"}], "preferred_name": "Prajapati, Darshana", "authorized_access_point": "Prajapati, Darshana"} 1 -2023-07-08 08:26:10.419577 2023-07-08 08:26:10.419591 d805503c-ef39-46ee-af10-0ba2dc9c6fd9 {"md5": "e4ef12036d0027b0ad54d802f1bbc359", "pid": "A026548298", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026548298", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026548298", "source": "RERO"}], "preferred_name": "Forest, Todd A", "authorized_access_point": "Forest, Todd A"} 1 -2023-07-08 08:26:10.531918 2023-07-08 08:26:10.531928 cb49c0d8-8056-4c61-a404-43fa40f39641 {"md5": "7c0d9698cd95c890d4b2c438691d9c9e", "pid": "A026554111", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A026554111", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026554111", "source": "RERO"}], "preferred_name": "International Conference on Amazonian Agriculture and Land Use Research (1980 :", "authorized_access_point": "International Conference on Amazonian Agriculture and Land Use Research (1980 : Cali)"} 1 -2023-07-08 08:26:10.662119 2023-07-08 08:26:10.662131 b5c3759c-2822-4101-adc3-e1f6e7f99771 {"md5": "4d07bfcb3859965b23942da1ea34ad00", "pid": "A026558985", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "(pseud. de Jérôme Almes)", "identifier": "http://data.rero.ch/02-A026558985", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026558985", "source": "RERO"}], "variant_name": ["Almes, Jérôme"], "preferred_name": "Smole (pseud. de Jérôme Almes)", "variant_access_point": ["Almes, Jérôme"], "authorized_access_point": "Smole (pseud. de Jérôme Almes)", "biographical_information": ["Dates de vie: 1982-"]} 1 -2023-07-08 08:26:10.766453 2023-07-08 08:26:10.766462 8e3d706a-b805-4442-aeb1-d82ee599457f {"md5": "6ffd94f8c418418bf5a69f36d82810ad", "pid": "A026586322", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026586322", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026586322", "source": "RERO"}], "preferred_name": "Dunand, Boris", "authorized_access_point": "Dunand, Boris"} 1 -2023-07-08 08:26:10.873113 2023-07-08 08:26:10.873129 86142897-7163-465d-aece-2ff1c6e236a3 {"md5": "c1719878016e22ea37a170dc4e7f07c3", "pid": "A026596122", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026596122", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026596122", "source": "RERO"}], "preferred_name": "Beeser, Julius", "authorized_access_point": "Beeser, Julius"} 1 -2023-07-08 08:26:10.9945 2023-07-08 08:26:10.994513 352cf1f2-5241-40bf-a545-a640e88ea34d {"md5": "46d0fb9fec8ebce00c3a1039a7770fdb", "pid": "A026608425", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026608425", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026608425", "source": "RERO"}], "preferred_name": "Quénéhen, Laurent", "authorized_access_point": "Quénéhen, Laurent"} 1 -2023-07-08 08:26:11.104654 2023-07-08 08:26:11.104664 e59a7e55-1271-4f47-a7d5-bdb52a58ab85 {"md5": "5ded82ea5a75567a5bd1f0c8f8d5f456", "pid": "A026614309", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026614309", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026614309", "source": "RERO"}], "preferred_name": "Gaumeton, Pierre", "authorized_access_point": "Gaumeton, Pierre"} 1 -2023-07-08 08:26:11.214602 2023-07-08 08:26:11.214618 290f21c6-b8ca-455a-80ef-502850bf4cfe {"md5": "bc4c39c83091c31e7f3fc3a137b9f384", "pid": "A026614954", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026614954", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026614954", "source": "RERO"}], "preferred_name": "Marques Teixeira, Celina", "authorized_access_point": "Marques Teixeira, Celina"} 1 -2023-07-08 08:26:11.341435 2023-07-08 08:26:11.341446 9d8de056-21f9-44a4-9f79-f3968db1ed1c {"md5": "ce105c01feca3e57ee3907a7a84f0747", "pid": "A026623687", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A026623687", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026623687", "source": "RERO"}], "preferred_name": "Université du 3e âge (Genève). Colloque (1986-1988 :", "authorized_access_point": "Université du 3e âge (Genève). Colloque (1986-1988 : Genève)"} 1 -2023-07-08 08:26:11.466206 2023-07-08 08:26:11.466221 73f43925-ed5b-4cc4-be4d-ac1dc65a110a {"md5": "03c1a1e30c8e6ca4e4c2dcb14dab5ff7", "pid": "A026636855", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026636855", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026636855", "source": "RERO"}], "preferred_name": "Botteron, Louise", "authorized_access_point": "Botteron, Louise"} 1 -2023-07-08 08:26:11.575092 2023-07-08 08:26:11.575105 e8a2c54c-61f5-412d-bc1a-474bd20266e9 {"md5": "16d1fecf237703605b9abeac68f2de44", "pid": "A026642855", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026642855", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026642855", "source": "RERO"}], "date_of_birth": "1974", "preferred_name": "Bruneau, Antoine,", "authorized_access_point": "Bruneau, Antoine, 1974-"} 1 -2023-07-08 08:26:11.693479 2023-07-08 08:26:11.693495 0ff34c5c-6dd1-4175-9842-93f042500221 {"md5": "0eabf8d05158a789eb33d3017bea7672", "pid": "A026652068", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026652068", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026652068", "source": "RERO"}], "preferred_name": "Tobler, Vera", "authorized_access_point": "Tobler, Vera"} 1 -2023-07-08 08:26:11.819327 2023-07-08 08:26:11.819335 2526b465-c5ea-46ef-8178-6986e9b5557a {"md5": "089fe9a03faf0065c0d4fb5b48c3494d", "pid": "A026654612", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026654612", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026654612", "source": "RERO"}], "preferred_name": "Lhéritier, Elsa", "authorized_access_point": "Lhéritier, Elsa"} 1 -2023-07-08 08:26:11.941983 2023-07-08 08:26:11.941997 487cdbc5-8847-4289-9fe6-297f5755f6ec {"md5": "ab9f865d855c7e84a0849fdf53700c26", "pid": "A026685590", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A026685590", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026685590", "source": "RERO"}], "preferred_name": "Jahrestagung Deutsch als Fremdsprache 1975 :", "authorized_access_point": "Jahrestagung Deutsch als Fremdsprache (3 : 1975 : Berlin)"} 1 -2023-07-08 08:26:12.05352 2023-07-08 08:26:12.053536 0f9ee463-6d4e-4244-96f6-2c3ea92b66f5 {"md5": "8c139bd5bbadec3407790995aa8b0c35", "pid": "A026722774", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026722774", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026722774", "source": "RERO"}], "preferred_name": "Ambunda, Lotta N", "authorized_access_point": "Ambunda, Lotta N"} 1 -2023-07-08 08:26:12.180617 2023-07-08 08:26:12.180628 50555003-7aff-4da0-a63b-7ebdf21e7f52 {"md5": "8b1701d6c6924442edaf31aef638b346", "pid": "A026723222", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A026723222", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026723222", "source": "RERO"}], "preferred_name": "Société cantonale des carabiniers genevois", "authorized_access_point": "Société cantonale des carabiniers genevois"} 1 -2023-07-08 08:26:12.311105 2023-07-08 08:26:12.311117 92caca1f-f051-45e2-a459-6731d7cd52b7 {"md5": "20d424d5d0d2bff43c279fea61f44ad8", "pid": "A026724664", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A026724664", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026724664", "source": "RERO"}], "preferred_name": "Association française de recherche sur les livres et objets culturels de l'enfance", "authorized_access_point": "Association française de recherche sur les livres et objets culturels de l'enfance"} 1 -2023-07-08 08:26:12.425786 2023-07-08 08:26:12.425797 213a29d4-894a-453f-8558-5ff6dd47d382 {"md5": "19091fe0b4cce0c57f8501364df63c99", "pid": "A026736945", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026736945", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026736945", "source": "RERO"}], "preferred_name": "Flood, Victoria", "authorized_access_point": "Flood, Victoria"} 1 -2023-07-08 08:26:12.533325 2023-07-08 08:26:12.533333 b03b596d-8ece-413c-b369-27fc59669e10 {"md5": "f80e5d69fb155fe1350bb61d9629ba7a", "pid": "A026740856", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026740856", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026740856", "source": "RERO"}], "preferred_name": "Metzler, Berenike", "authorized_access_point": "Metzler, Berenike"} 1 -2023-07-08 08:26:12.666277 2023-07-08 08:26:12.666288 b0520618-93d7-47c9-966a-6612e0fc467d {"md5": "3a651b378ec992bb9fd7968a964b4f22", "pid": "A026741839", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026741839", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026741839", "source": "RERO"}], "preferred_name": "Rocke, Mary Eleonor", "authorized_access_point": "Rocke, Mary Eleonor"} 1 -2023-07-08 08:26:12.765759 2023-07-08 08:26:12.765772 01283a8b-0213-4b82-95bd-93151a4fd375 {"md5": "f9ecba64938e06bf20cd86741ae9893d", "pid": "A026748269", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026748269", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026748269", "source": "RERO"}], "date_of_birth": "1985", "preferred_name": "Krummenacher, Michael,", "authorized_access_point": "Krummenacher, Michael, 1985-"} 1 -2023-07-08 08:26:12.882214 2023-07-08 08:26:12.882223 b306a3da-08f2-43fa-bee7-e2e48d9f6d97 {"md5": "4c1f13a2d23805b5f1618b5ba5ae326b", "pid": "A026774834", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A026774834", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026774834", "source": "RERO"}], "preferred_name": "Banque d'Anvers", "authorized_access_point": "Banque d'Anvers"} 1 -2023-07-08 08:26:12.985013 2023-07-08 08:26:12.985053 690c43fd-d0cb-42c6-9734-fc2100a91176 {"md5": "ffa57849d14e92ed9327acd4a06e24d2", "pid": "A026783817", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A026783817", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026783817", "source": "RERO"}], "preferred_name": "Université catholique de Louvain (Louvain-la-Neuve). Atelier de droit social", "authorized_access_point": "Université catholique de Louvain (Louvain-la-Neuve). Atelier de droit social"} 1 -2023-07-08 08:26:13.095206 2023-07-08 08:26:13.095222 236a1235-666d-4ad4-a812-b9348d8d7381 {"md5": "3a6ed426579943bf8ae7ae4f9d627685", "pid": "A026785791", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026785791", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026785791", "source": "RERO"}], "preferred_name": "Taurel, Jean-Pierre", "authorized_access_point": "Taurel, Jean-Pierre"} 1 -2023-07-08 08:26:13.234466 2023-07-08 08:26:13.234479 da9eeeda-ccb4-4fe0-97ef-ff850824acfb {"md5": "710353dd662c537cc7ab4583839b3310", "pid": "A026813025", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026813025", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026813025", "source": "RERO"}], "preferred_name": "Kale, Vivek", "authorized_access_point": "Kale, Vivek"} 1 -2023-07-08 08:26:13.347759 2023-07-08 08:26:13.347769 0dd69451-0321-4c95-ab81-71ee6c81e1b3 {"md5": "b2fd0d6f947026680bd745b9332584fc", "pid": "A026828697", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026828697", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026828697", "source": "RERO"}], "preferred_name": "Durand, Jean-Marc", "authorized_access_point": "Durand, Jean-Marc"} 1 -2023-07-08 08:26:13.452481 2023-07-08 08:26:13.452489 33d9bd63-d39a-4470-98b5-9217266f4c2a {"md5": "6d0d6493922a18b81354217547dcee67", "pid": "A026835388", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A026835388", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026835388", "source": "RERO"}], "preferred_name": "International Symposium on Medical Data Analysis 2002 :", "authorized_access_point": "International Symposium on Medical Data Analysis (3 : 2002 : Roma)"} 1 -2023-07-08 08:26:13.594543 2023-07-08 08:26:13.594554 a696c075-812e-41cf-a9dd-25a4259e49fd {"md5": "556f41c694ad94412f8c38dd8f6bd570", "pid": "A026839306", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026839306", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026839306", "source": "RERO"}], "preferred_name": "Inkermann, Helena", "authorized_access_point": "Inkermann, Helena"} 1 -2023-07-08 08:26:13.727701 2023-07-08 08:26:13.727711 300ee22d-ec3d-4a6c-b767-993ffde92cd8 {"md5": "2f1c55bb90c9d0d0a213c02f542fab42", "pid": "A026846628", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026846628", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026846628", "source": "RERO"}], "preferred_name": "Lattner, Andreas", "authorized_access_point": "Lattner, Andreas"} 1 -2023-07-08 08:26:13.872302 2023-07-08 08:26:13.872314 341682b0-1e84-4a98-bc6c-2acb350cdf3d {"md5": "2502fcf1c089f977701b064afd140429", "pid": "A026847441", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026847441", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026847441", "source": "RERO"}], "preferred_name": "Corswarem, Emilie", "authorized_access_point": "Corswarem, Emilie"} 1 -2023-07-08 08:26:13.979955 2023-07-08 08:26:13.979972 57699389-a15a-4e95-8be3-ad1b3931a7fd {"md5": "3f5114720d1bb94356e00e1804f0fd00", "pid": "A026864091", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026864091", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026864091", "source": "RERO"}], "preferred_name": "Rehmann, Meret", "authorized_access_point": "Rehmann, Meret"} 1 -2023-07-08 08:26:14.101294 2023-07-08 08:26:14.101304 beadc732-a830-4976-8b9d-0c9f23558ae9 {"md5": "ddc6228c27f7fc0a4e0b5c9a86c0e50d", "pid": "A026894353", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A026894353", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026894353", "source": "RERO"}], "preferred_name": "Chór Harcerski", "authorized_access_point": "Chór Harcerski"} 1 -2023-07-08 08:26:14.213463 2023-07-08 08:26:14.213478 d7578b4e-926c-48c2-9734-23a6ceafb6e5 {"md5": "07fa7356ceaf1ffb4522b5d82f37b1a5", "pid": "A026898077", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026898077", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026898077", "source": "RERO"}], "preferred_name": "Reusch, Anna M", "authorized_access_point": "Reusch, Anna M"} 1 -2023-07-08 08:26:14.330582 2023-07-08 08:26:14.330595 8e3ce485-b35d-4d95-bdfe-62ee079579e5 {"md5": "ea4340c18e13620dee4cef4e39adad04", "pid": "A026907243", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026907243", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026907243", "source": "RERO"}], "preferred_name": "Schenkel, Sonja", "authorized_access_point": "Schenkel, Sonja"} 1 -2023-07-08 08:26:14.440083 2023-07-08 08:26:14.440096 124b290b-5d29-4597-8a2b-a05f60580936 {"md5": "ec7a351f184e6e8c8ab6a1417c793de4", "pid": "A026919795", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026919795", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026919795", "source": "RERO"}], "preferred_name": "Ma'aroof, Mohammad Khalid", "authorized_access_point": "Ma'aroof, Mohammad Khalid"} 1 -2023-07-08 08:26:14.54262 2023-07-08 08:26:14.542628 b72704cc-19ad-416e-8357-04f948824389 {"md5": "667239e15306bb923b42041b7d21c689", "pid": "A026951773", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026951773", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026951773", "source": "RERO"}], "preferred_name": "Günaçan, Başak", "authorized_access_point": "Günaçan, Başak"} 1 -2023-07-08 08:26:14.65425 2023-07-08 08:26:14.654261 70c6b90e-f858-4514-a5fc-11bad4163522 {"md5": "f8ad79c5780b631666bc03ac6afe8c50", "pid": "A026952894", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026952894", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026952894", "source": "RERO"}], "preferred_name": "Tangey, R. de", "authorized_access_point": "Tangey, R. de"} 1 -2023-07-08 08:26:14.765797 2023-07-08 08:26:14.765812 297f0222-8a1e-4a23-88fa-3875fdf4c62e {"md5": "082661a7b5bf241a597bd8e9e7dc62a3", "pid": "A026958334", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026958334", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026958334", "source": "RERO"}], "date_of_birth": "1961", "preferred_name": "Chen, Jianshe,", "authorized_access_point": "Chen, Jianshe, 1961-", "biographical_information": ["Ecotrophologue"]} 1 -2023-07-08 08:26:14.865442 2023-07-08 08:26:14.865454 1dcc32f0-45c9-4187-b1c5-1fba8da6a6f5 {"md5": "2b35766d3d929b31fc4ec487e4d84ef8", "pid": "A026964890", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026964890", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026964890", "source": "RERO"}], "preferred_name": "Crelier, Noah", "authorized_access_point": "Crelier, Noah"} 1 -2023-07-08 08:26:14.983352 2023-07-08 08:26:14.983368 cd580802-7c7d-4ceb-ae15-8986e868cb31 {"md5": "93d4cdc1b2e4ddd71bc74c89ab147c3d", "pid": "A026978679", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A026978679", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026978679", "source": "RERO"}], "preferred_name": "Bourquard, Karelle", "authorized_access_point": "Bourquard, Karelle"} 1 -2023-07-08 08:26:15.10144 2023-07-08 08:26:15.101448 cfa1b5c2-3baa-467e-9f06-9f8852b217c6 {"md5": "20680b53084f2c35c49a119864d51d7a", "pid": "A027062343", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027062343", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027062343", "source": "RERO"}], "preferred_name": "Grellety, Rémi", "authorized_access_point": "Grellety, Rémi"} 1 -2023-07-08 08:26:15.213146 2023-07-08 08:26:15.213156 62dbc923-5ac6-46c5-975a-fe4771ce00ec {"md5": "7c1049f75dca8fcf5978c7e9a65c244c", "pid": "A027068066", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027068066", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027068066", "source": "RERO"}], "preferred_name": "Kostadinov, Georgi Dimitrov", "authorized_access_point": "Kostadinov, Georgi Dimitrov"} 1 -2023-07-08 08:26:15.338916 2023-07-08 08:26:15.33892 71b2a83c-3e2f-4cd4-9452-61f601e355aa {"md5": "0053f16d3153d2fa0455a3423864280f", "pid": "A027089118", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027089118", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027089118", "source": "RERO"}], "preferred_name": "Djeya Kamdom, Yves Gabriel", "authorized_access_point": "Djeya Kamdom, Yves Gabriel"} 1 -2023-07-08 08:26:15.451412 2023-07-08 08:26:15.451424 08151e8e-dc1a-4159-a4ca-1603097f7bcc {"md5": "5e5a3ad65f706a375d69b9f8176e2338", "pid": "A027092266", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027092266", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027092266", "source": "RERO"}], "preferred_name": "Rigolot, Irénée", "authorized_access_point": "Rigolot, Irénée"} 1 -2023-07-08 08:26:15.549136 2023-07-08 08:26:15.549145 458aa968-54df-4754-bcb2-ccf4091ffc36 {"md5": "0a1f31a24366447b44ca2ac04e5ad185", "pid": "A027102482", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027102482", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027102482", "source": "RERO"}], "preferred_name": "Santschi, Peter", "authorized_access_point": "Santschi, Peter"} 1 -2023-07-08 08:26:15.631947 2023-07-08 08:26:15.631958 d6c10c86-8f48-41f9-b374-05e6b96bc355 {"md5": "264fb8288d6aba0ccd48cd77a42a8ca0", "pid": "A027103123", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027103123", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027103123", "source": "RERO"}], "preferred_name": "Jordan-Zbinden, Evelyne", "authorized_access_point": "Jordan-Zbinden, Evelyne"} 1 -2023-07-08 08:26:15.719612 2023-07-08 08:26:15.719623 12abe032-f372-48e5-82f8-08f4a66c19bf {"md5": "e34dae17df73084ad1ee26f82990d074", "pid": "A027116952", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027116952", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027116952", "source": "RERO"}], "preferred_name": "Philbrick Yadav, Stacey", "authorized_access_point": "Philbrick Yadav, Stacey"} 1 -2023-07-08 08:26:15.835701 2023-07-08 08:26:15.835714 82b2b5e3-b175-4b4a-bd79-dd0be1c64195 {"md5": "3f8770aa9e6ed6e0fe49796107fadd46", "pid": "A027118711", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027118711", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027118711", "source": "RERO"}], "preferred_name": "Kerchensteiner, Georg", "authorized_access_point": "Kerchensteiner, Georg"} 1 -2023-07-08 08:26:15.948121 2023-07-08 08:26:15.948135 d3700bab-c9e9-40b3-87b0-6d2b0a8d4356 {"md5": "ae3c6d62b3485985920687af15bcee39", "pid": "A027119572", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "(marquise) - influence reçue", "identifier": "http://data.rero.ch/02-A027119572", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027119572", "source": "RERO"}], "preferred_name": "Du Châtelet, Gabrielle-Emilie Le Tonnelier de Breteuil (marquise) - influence reçue", "authorized_access_point": "Du Châtelet, Gabrielle-Emilie Le Tonnelier de Breteuil (marquise) - influence reçue"} 1 -2023-07-08 08:26:16.060343 2023-07-08 08:26:16.060353 0aea0f70-aa49-49c1-934e-0c44d07fed54 {"md5": "e08c5cc050872a6a519dc639282c1827", "pid": "A027138153", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027138153", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027138153", "source": "RERO"}], "preferred_name": "Walther, Annette", "authorized_access_point": "Walther, Annette"} 1 -2023-07-08 08:26:16.184254 2023-07-08 08:26:16.184269 c902c694-1c1a-4df5-8150-f37f4317c0ce {"md5": "5d0ff8150f97247f33f0cc498767d22d", "pid": "A027139051", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A027139051", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027139051", "source": "RERO"}], "preferred_name": "Collège de France. Chaire Milieux bibliques. Colloque (2014 :", "authorized_access_point": "Collège de France. Chaire Milieux bibliques. Colloque (2014 : Paris)"} 1 -2023-07-08 08:26:16.304088 2023-07-08 08:26:16.304099 23224ad3-579b-42c4-9b38-c860d98fe97a {"md5": "7f5954efa5153843930f25ec0cc8a427", "pid": "A027149145", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027149145", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027149145", "source": "RERO"}], "preferred_name": "Magnin, Isabelle E", "authorized_access_point": "Magnin, Isabelle E"} 1 -2023-07-08 08:26:16.406204 2023-07-08 08:26:16.406212 3e7f2c9b-2c01-437b-ad8a-fc4ff45f7e7f {"md5": "bd0d2d1937329ebb2236421b4d161506", "pid": "A027149446", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027149446", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027149446", "source": "RERO"}], "preferred_name": "Lutman, Malorie", "authorized_access_point": "Lutman, Malorie"} 1 -2023-07-08 08:26:16.511689 2023-07-08 08:26:16.511704 be134ed1-9211-44db-85e9-9225b8761a8f {"md5": "005ff91909f0c93e36a3fd8d6561ab23", "pid": "A027157860", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027157860", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027157860", "source": "RERO"}], "preferred_name": "Lauer, O", "authorized_access_point": "Lauer, O"} 1 -2023-07-08 08:26:16.640916 2023-07-08 08:26:16.640933 c3303e50-ad57-42c3-94fa-f1d2dabe0a0d {"md5": "fd14eece53a32bd933080f9495244099", "pid": "A027180250", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027180250", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027180250", "source": "RERO"}], "preferred_name": "Ben Amor, Leila", "authorized_access_point": "Ben Amor, Leila"} 1 -2023-07-08 08:26:16.746569 2023-07-08 08:26:16.746582 3f5ac235-e1f3-4d56-b7e3-496ea5d182f2 {"md5": "c8d69e7ac5091cc5c402f2a4cf8227c4", "pid": "A027184035", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027184035", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027184035", "source": "RERO"}], "preferred_name": "Hogan, Nick", "authorized_access_point": "Hogan, Nick"} 1 -2023-07-08 08:26:16.867433 2023-07-08 08:26:16.86745 9c9e90d4-8988-4352-ab28-e98a8b4d01bb {"md5": "ce93583e9b76992437a8dcfcd11613dc", "pid": "A027191227", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027191227", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027191227", "source": "RERO"}], "preferred_name": "Moskowitz, Marina", "authorized_access_point": "Moskowitz, Marina"} 1 -2023-07-08 08:26:16.981616 2023-07-08 08:26:16.981629 767a5154-4076-4379-b04b-e030472c5f2e {"md5": "ba27746918da9ba687907b97e8025bba", "pid": "A027194665", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027194665", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027194665", "source": "RERO"}], "preferred_name": "Fernando, Anthony Francis Tissa", "authorized_access_point": "Fernando, Anthony Francis Tissa"} 1 -2023-07-08 08:26:17.106296 2023-07-08 08:26:17.106308 13e00ab4-0c6c-49d7-95de-68d8c84002a6 {"md5": "0188a10cd3763328da79d96a89117c41", "pid": "A027201602", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A027201602", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027201602", "source": "RERO"}], "preferred_name": "Société d'épargne de la paroisse de Remaufens", "authorized_access_point": "Société d'épargne de la paroisse de Remaufens"} 1 -2023-07-08 08:26:17.232513 2023-07-08 08:26:17.232525 d248f53e-1669-4ee6-afba-adab427fb959 {"md5": "5b75dd03ce5a13ae14daec0bea195674", "pid": "A027205240", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A027205240", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027205240", "source": "RERO"}], "variant_name": ["UCS (Union of Concerned Scientists)", "Vereinigung Besorgter Wissenschaftler", "Unión de Científicos Preocupados"], "preferred_name": "Union of Concerned Scientists", "variant_access_point": ["UCS (Union of Concerned Scientists)", "Vereinigung Besorgter Wissenschaftler", "Unión de Científicos Preocupados"], "authorized_access_point": "Union of Concerned Scientists", "biographical_information": ["Groupe américain indépendant de scientifiques et de citoyens œuvrant pour trouver des solutions dans les domaines de l'environnement et du développement durable"]} 1 -2023-07-08 08:26:17.333463 2023-07-08 08:26:17.333473 8091e36c-a5c5-4ed9-8988-95ac2e8fd573 {"md5": "29d70c00371c93eebb79e4113a25553f", "pid": "A027205480", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027205480", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027205480", "source": "RERO"}], "preferred_name": "Clouard, Chantal", "authorized_access_point": "Clouard, Chantal"} 1 -2023-07-08 08:26:17.449638 2023-07-08 08:26:17.449652 74a3bb01-4f08-4316-8b5d-89aac1d5837c {"md5": "dc29a54dbfff78c9a984435d193c2cf3", "pid": "A027220118", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027220118", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027220118", "source": "RERO"}], "preferred_name": "Goop, Dieter", "authorized_access_point": "Goop, Dieter"} 1 -2023-07-08 08:26:17.562763 2023-07-08 08:26:17.562777 dad9f442-0d68-4f40-bdf0-61f6b7b969b1 {"md5": "849143e261eaf801fba7bebec2e3e9d6", "pid": "A027221608", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027221608", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027221608", "source": "RERO"}], "preferred_name": "Price, Dwight L", "authorized_access_point": "Price, Dwight L"} 1 -2023-07-08 08:26:17.671802 2023-07-08 08:26:17.671815 ef4f18ea-e574-4f57-86c3-4873ccd08494 {"md5": "72998892e19422694686ae7ec382d45d", "pid": "A027237908", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027237908", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027237908", "source": "RERO"}], "preferred_name": "Nastić, Stefan", "authorized_access_point": "Nastić, Stefan"} 1 -2023-07-08 08:26:17.780603 2023-07-08 08:26:17.780617 1f23f2b4-7990-48ab-8333-a4eebd77995a {"md5": "3f4f48dc79ce77cd259485b17cc322c8", "pid": "A027289406", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A027289406", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027289406", "source": "RERO"}], "preferred_name": "International Conference on Independent Component Analysis and Blind Signal Separation 2006 :", "authorized_access_point": "International Conference on Independent Component Analysis and Blind Signal Separation (6 : 2006 : Charleston)"} 1 -2023-07-08 08:26:17.900254 2023-07-08 08:26:17.900265 30542de1-31f4-4a29-b42e-3d7b5de9f75d {"md5": "1f435503f56b46274ce47ad4a4cfd6e7", "pid": "A027297912", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027297912", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027297912", "source": "RERO"}], "variant_name": ["Klungervik, Ann Jorid,", "Klungervik Greenall, Ann Jorid,", "Greenall, Ann Jorid Klungervik,", "Klungervik Greenall, Annjo,"], "date_of_birth": "1966", "preferred_name": "Greenall, Annjo Klungervik,", "variant_access_point": ["Klungervik, Ann Jorid, 1966-", "Klungervik Greenall, Ann Jorid, 1966-", "Greenall, Ann Jorid Klungervik, 1966-", "Klungervik Greenall, Annjo, 1966-"], "authorized_access_point": "Greenall, Annjo Klungervik, 1966-", "biographical_information": ["Professeur d'anglais, Norwegian University of Science and Technology, Trondheim"]} 1 -2023-07-08 08:26:18.018538 2023-07-08 08:26:18.018549 d99fa925-b060-47e1-99ba-14e172f09590 {"md5": "46fa0cc38b645e4b71fe134a59a9f65d", "pid": "A027302854", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "spécialiste de l'histoire et de la civilisation classique", "identifier": "http://data.rero.ch/02-A027302854", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027302854", "source": "RERO"}], "preferred_name": "Warren, Richard, spécialiste de l'histoire et de la civilisation classique", "authorized_access_point": "Warren, Richard, spécialiste de l'histoire et de la civilisation classique"} 1 -2023-07-08 08:26:18.123123 2023-07-08 08:26:18.123136 16c96c9b-26a5-44c0-9399-30dc5c1416f3 {"md5": "ef79cfadf6a0cdbad7a71b36d67e15f8", "pid": "A027307709", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027307709", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027307709", "source": "RERO"}], "preferred_name": "Hubault, Jacques", "authorized_access_point": "Hubault, Jacques"} 1 -2023-07-08 08:26:18.239516 2023-07-08 08:26:18.239529 4af23715-1cff-45a4-81d7-784656207fe4 {"md5": "99391cd69c256b9d1ecf7ff6a8e303b7", "pid": "A027316896", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027316896", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027316896", "source": "RERO"}], "preferred_name": "Shaykhnīyā, Amīr Ḥusayn", "authorized_access_point": "Shaykhnīyā, Amīr Ḥusayn"} 1 -2023-07-08 08:26:18.351226 2023-07-08 08:26:18.351243 1e9ce257-4d2b-4e4b-9268-5941fabc5858 {"md5": "39b83fcd576002b35f9f0b0a02e0c24e", "pid": "A027333148", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A027333148", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027333148", "source": "RERO"}], "preferred_name": "Samedan (Suisse)", "authorized_access_point": "Samedan (Suisse)"} 1 -2023-07-08 08:26:18.448584 2023-07-08 08:26:18.448596 01c2fafc-e0c1-4191-94fd-6350ba6fe064 {"md5": "bc22de6a592bcb51697bb9ad687f732f", "pid": "A027339987", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027339987", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027339987", "source": "RERO"}], "preferred_name": "Picci, Jennifer", "authorized_access_point": "Picci, Jennifer"} 1 -2023-07-08 08:26:18.546194 2023-07-08 08:26:18.546205 02548e16-2265-4c52-9604-bc826e62787a {"md5": "8780df3de692f6e87b9a9476e840a423", "pid": "A027342850", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027342850", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027342850", "source": "RERO"}], "preferred_name": "Bordigoni, Martial", "authorized_access_point": "Bordigoni, Martial"} 1 -2023-07-08 08:26:18.641946 2023-07-08 08:26:18.641959 0748a90a-ed76-40c1-83f1-e46b8aa78687 {"md5": "8de6bfe696e4c4dfdcede3afae775ec7", "pid": "A027355955", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027355955", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027355955", "source": "RERO"}], "preferred_name": "Allard, Patrice", "authorized_access_point": "Allard, Patrice"} 1 -2023-07-08 08:26:18.751173 2023-07-08 08:26:18.751187 808ba895-f9a7-4e0c-ad02-4de090e96178 {"md5": "79e4f5706f6813efffd1c5db160b2e2e", "pid": "A027394831", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027394831", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027394831", "source": "RERO"}], "preferred_name": "Herren, Cindy", "authorized_access_point": "Herren, Cindy"} 1 -2023-07-08 08:26:18.86405 2023-07-08 08:26:18.864067 03ba1f16-2350-4cbc-ac67-07a36944e54e {"md5": "b8e33f564a974abf00c419d4d0fcd906", "pid": "A027401068", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027401068", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027401068", "source": "RERO"}], "preferred_name": "Reguin, Jesse", "authorized_access_point": "Reguin, Jesse"} 1 -2023-07-08 08:26:18.978955 2023-07-08 08:26:18.97897 84a53884-2bb1-4b52-9353-9e68a0db3f6c {"md5": "00cc7083510a32217946664e3d7423b1", "pid": "A027420393", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027420393", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027420393", "source": "RERO"}], "preferred_name": "Khulayfī, Waʼil Muḥammad ʻAlī", "authorized_access_point": "Khulayfī, Waʼil Muḥammad ʻAlī"} 1 -2023-07-08 08:26:19.086347 2023-07-08 08:26:19.08636 c56bc87a-9397-44d5-9ecf-59f7b81e725d {"md5": "f7dff36d9ccfb27aaa0f99113ab8a006", "pid": "A027429159", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027429159", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027429159", "source": "RERO"}], "preferred_name": "Taillard, Marine", "authorized_access_point": "Taillard, Marine"} 1 -2023-07-08 08:26:19.203386 2023-07-08 08:26:19.203399 90ac9bd3-8440-4087-95eb-c65477d93221 {"md5": "8098a76efff1af00689e419958ded71a", "pid": "A027433246", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027433246", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027433246", "source": "RERO"}], "preferred_name": "Montenay, Nicolas-Audran de", "authorized_access_point": "Montenay, Nicolas-Audran de"} 1 -2023-07-08 08:26:19.311463 2023-07-08 08:26:19.311477 a5fb1798-5441-49b3-b97a-d8cb8308f28d {"md5": "b34a00bf826585c297d425aa58e51846", "pid": "A027441359", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A027441359", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027441359", "source": "RERO"}], "variant_name": ["Canada. Parliament"], "preferred_name": "Canada. Parlement", "variant_access_point": ["Canada. Parliament"], "authorized_access_point": "Canada. Parlement", "biographical_information": ["De ?-1866: Canada. Législature", "Dès 1867: Canada. Parlement"]} 1 -2023-07-08 08:26:19.421166 2023-07-08 08:26:19.42118 ecdb7e8e-202b-44f3-b3c3-5631639855b2 {"md5": "78fdaaa0b506930c5c785acc0f3f0950", "pid": "A027443542", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027443542", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027443542", "source": "RERO"}], "preferred_name": "Viklický, Emil", "authorized_access_point": "Viklický, Emil"} 1 -2023-07-08 08:26:19.542001 2023-07-08 08:26:19.542016 5bab36c7-8e69-4a46-9848-396f0961e62f {"md5": "7d569430bf6dc9657cf5d0bb73f64d78", "pid": "A027444942", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027444942", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027444942", "source": "RERO"}], "date_of_birth": "1989", "preferred_name": "Ferber, Angela,", "authorized_access_point": "Ferber, Angela, 1989-", "biographical_information": ["Titulaire d'un master en lettres Univ. Fribourg Suisse (enseignement secondaire I)"]} 1 -2023-07-08 08:26:19.666901 2023-07-08 08:26:19.666918 4ea431d6-7e6a-4c88-b70f-33bc89044b9a {"md5": "0a8b52bb3f0f5a6a21db68da0730d83a", "pid": "A027445987", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027445987", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027445987", "source": "RERO"}], "preferred_name": "Majīd, Zīrak", "authorized_access_point": "Majīd, Zīrak"} 1 -2023-07-08 08:26:19.775295 2023-07-08 08:26:19.775311 7bc5de4d-5b80-4d2f-b803-1feb0280a29b {"md5": "c5bc2e3052676c3210a1ccfc63d86026", "pid": "A027448978", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027448978", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027448978", "source": "RERO"}], "date_of_birth": "géologue", "preferred_name": "Lombard, Jean,", "authorized_access_point": "Lombard, Jean, géologue"} 1 -2023-07-08 08:26:19.901328 2023-07-08 08:26:19.901342 173dd737-bd2b-4f0f-8b79-ac5667b13ea6 {"md5": "6ef2a25c581bd5dc62af713e8e48820c", "pid": "A027449905", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027449905", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027449905", "source": "RERO"}], "date_of_birth": "1957", "preferred_name": "Deloupy, Bernard,", "authorized_access_point": "Deloupy, Bernard, 1957-", "biographical_information": ["Publicitaire, journaliste, auteur de romans policiers. - Coach en communication (en 2018)"]} 1 -2023-07-08 08:26:20.034404 2023-07-08 08:26:20.034418 05dc4ad4-cede-4a2e-bdb3-6c8a89d39255 {"md5": "62b26a61df7f9f86ccb75d8823884e71", "pid": "A027457648", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A027457648", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027457648", "source": "RERO"}], "variant_name": ["Société fédérale de gymnastique (Suisse). Turnverein (Murten)", "Fédération suisse de gymnastique. Turnverein (Murten)"], "preferred_name": "Turnverein (Murten)", "variant_access_point": ["Société fédérale de gymnastique (Suisse). Turnverein (Murten)", "Fédération suisse de gymnastique. Turnverein (Murten)"], "authorized_access_point": "Turnverein (Murten)"} 1 -2023-07-08 08:26:20.149549 2023-07-08 08:26:20.149561 328bcead-c6ff-47cb-bbec-988fa6c8d2aa {"md5": "682d0819a3c92df31cb3985cd953df94", "pid": "A027468424", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A027468424", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027468424", "source": "RERO"}], "preferred_name": "Hérault", "authorized_access_point": "Hérault"} 1 -2023-07-08 08:26:20.257626 2023-07-08 08:26:20.25764 6a2b4502-c852-40ac-8f5e-9c546825a480 {"md5": "1a727a490e0c80eead88c7a988c1f62e", "pid": "A027470672", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027470672", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027470672", "source": "RERO"}], "date_of_birth": "1980", "preferred_name": "Antoniuk, Mateusz,", "authorized_access_point": "Antoniuk, Mateusz, 1980-"} 1 -2023-07-08 08:26:20.374331 2023-07-08 08:26:20.374348 0d437842-d557-48ff-8d5b-00cdbfa4f664 {"md5": "53d1ff6190ff792bbc5c1f3d86465713", "pid": "A027477458", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027477458", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027477458", "source": "RERO"}], "preferred_name": "Cousin, Grégoire", "authorized_access_point": "Cousin, Grégoire"} 1 -2023-07-08 08:26:20.493528 2023-07-08 08:26:20.493542 1bcebd12-045c-4db3-a562-eb097b16b1b6 {"md5": "6ac509f06e1fc1e0a005d0078406a944", "pid": "A027477867", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A027477867", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027477867", "source": "RERO"}], "preferred_name": "European Conference on Machine Learning (2017 :", "authorized_access_point": "European Conference on Machine Learning (2017 : Skopje)"} 1 -2023-07-08 08:26:20.605368 2023-07-08 08:26:20.605381 800478a2-7900-488c-9839-165f04373ed2 {"md5": "505c8653ee2f1791c6d780b250e9782e", "pid": "A027483344", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027483344", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027483344", "source": "RERO"}], "preferred_name": "Pic, Camille", "authorized_access_point": "Pic, Camille"} 1 -2023-07-08 08:26:20.713657 2023-07-08 08:26:20.71367 097a889e-3848-452a-bb9d-db78049e4adb {"md5": "8db4fff49c9688fbe562e43321484ab9", "pid": "A027488596", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A027488596", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027488596", "source": "RERO"}], "preferred_name": "Mergers & Acquisitions 2017 :", "authorized_access_point": "Mergers & Acquisitions (20 : 2017 : Zürich)"} 1 -2023-07-08 08:26:20.837731 2023-07-08 08:26:20.837742 fe996874-4c83-4d79-a893-ec596d1930bb {"md5": "736046752175cc074a070190ceef99a5", "pid": "A027490804", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027490804", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027490804", "source": "RERO"}], "preferred_name": "Chételat, Lorène", "authorized_access_point": "Chételat, Lorène"} 1 -2023-07-08 08:26:20.959055 2023-07-08 08:26:20.959068 587a6054-4a53-4880-9e3f-eea7a1cd3c69 {"md5": "a1be3586a2392086d4c88923e8e591f3", "pid": "A027498782", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027498782", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027498782", "source": "RERO"}], "preferred_name": "Al Yafi, Jamil", "authorized_access_point": "Al Yafi, Jamil"} 1 -2023-07-08 08:26:21.090618 2023-07-08 08:26:21.090629 ef2b79a7-66be-4d3f-a7f5-e9713c098099 {"md5": "90df0a221c530578b9d48c3a4154e970", "pid": "A027507344", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027507344", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027507344", "source": "RERO"}], "date_of_birth": "1966", "preferred_name": "Rauber, Thomas,", "authorized_access_point": "Rauber, Thomas, 1966-", "biographical_information": ["Economiste, fondateur de TR Invest, membre du Conseil d'administration de la banque Raiffeisen. Politicien (Parti démocrate-chrétien), député au Grand Conseil du canton de Fribourg, conseiller communal à Tavel. Président de la Gewerbeverband Sense. Licencié en sc. économique Univ. Fribourg Suisse"]} 1 -2023-07-08 08:26:21.19752 2023-07-08 08:26:21.197529 d18c3921-e140-4714-962b-8ee979602958 {"md5": "1b94cd431ab71574dcdbb49810f6231b", "pid": "A027508686", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027508686", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027508686", "source": "RERO"}], "preferred_name": "Haselmayr, Andrea", "authorized_access_point": "Haselmayr, Andrea"} 1 -2023-07-08 08:26:21.316327 2023-07-08 08:26:21.316339 9aea3148-5a36-4ccf-b69c-d4028716cdf4 {"md5": "62200fb9b22bff3ba2ee95978db382ea", "pid": "A027518436", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027518436", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027518436", "source": "RERO"}], "preferred_name": "Quintanilla, Marlene", "authorized_access_point": "Quintanilla, Marlene"} 1 -2023-07-08 08:26:21.432494 2023-07-08 08:26:21.432507 1b6f78a0-65ae-4058-8cf0-d7af95e32de1 {"md5": "52885699021a2546713adaa4b699df50", "pid": "A027523029", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027523029", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027523029", "source": "RERO"}], "preferred_name": "Zweypfenning, R. C. V. J", "authorized_access_point": "Zweypfenning, R. C. V. J"} 1 -2023-07-08 08:26:21.542885 2023-07-08 08:26:21.542898 91abc060-6a16-4fdb-ab97-057921bc9ab2 {"md5": "e980c7b85d3675d24094a84a9c6a67f6", "pid": "A027523482", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027523482", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027523482", "source": "RERO"}], "preferred_name": "Imrie, Alex", "authorized_access_point": "Imrie, Alex"} 1 -2023-07-08 08:26:21.665151 2023-07-08 08:26:21.665161 9f4cd7c5-c790-43ab-9612-5655afcf2eb1 {"md5": "15a832605f694a5fe259db3655af4e86", "pid": "A027543659", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027543659", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027543659", "source": "RERO"}], "preferred_name": "Goossens, Elise", "authorized_access_point": "Goossens, Elise"} 1 -2023-07-08 08:26:21.792281 2023-07-08 08:26:21.792296 004d794e-68f1-4689-9cbf-694a0cddb8e9 {"md5": "3fcbbfca9c0b05859b648bca1284aba0", "pid": "A027544307", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027544307", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027544307", "source": "RERO"}], "preferred_name": "Didier, Fredie", "authorized_access_point": "Didier, Fredie"} 1 -2023-07-08 08:26:21.914478 2023-07-08 08:26:21.914491 1f1882fc-8bd2-4a80-8e4e-76d28478e551 {"md5": "31f6902e42a9914b0fd529d744fb1875", "pid": "A027545859", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027545859", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027545859", "source": "RERO"}], "preferred_name": "Ermis-Krohs, Selmin", "authorized_access_point": "Ermis-Krohs, Selmin"} 1 -2023-07-08 08:26:22.037666 2023-07-08 08:26:22.037677 5e1cb864-5bd2-470f-84e4-8d05de8f5739 {"md5": "03137921a7bef1ae72b2896886fcef40", "pid": "A027565229", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027565229", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027565229", "source": "RERO"}], "date_of_birth": "1985", "preferred_name": "Jeger, Silvan,", "authorized_access_point": "Jeger, Silvan, 1985-", "biographical_information": ["Compositeur, contrebassiste et violoncelliste de jazz"]} 1 -2023-07-08 08:26:22.154116 2023-07-08 08:26:22.154129 b90abe60-81ff-429f-94da-5c6dd19e7d59 {"md5": "fe27187731046a630da3807e7f19ed11", "pid": "A027568451", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A027568451", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027568451", "source": "RERO"}], "preferred_name": "Embassy (Fribourg)", "authorized_access_point": "Embassy (Fribourg)"} 1 -2023-07-08 08:26:22.268528 2023-07-08 08:26:22.268542 b401db8d-c629-40c5-938f-b98df84758dd {"md5": "187996096996d29635d3fed5318a6bcf", "pid": "A027582518", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027582518", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027582518", "source": "RERO"}], "date_of_birth": "1944", "preferred_name": "Wiedemann, Herbert,", "authorized_access_point": "Wiedemann, Herbert, 1944-", "biographical_information": ["Professeur de piano spécialisé en improvisation à l'Université des arts de Berlin de 1988 à 2016"]} 1 -2023-07-08 08:26:22.396277 2023-07-08 08:26:22.396292 261d5996-93e4-42d7-a174-e3f30739da7d {"md5": "45ab9eecc29cf54c0b1354eac547a236", "pid": "A027587471", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A027587471", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027587471", "source": "RERO"}], "preferred_name": "BEP (Lausanne)", "authorized_access_point": "BEP (Lausanne)"} 1 -2023-07-08 08:26:22.509666 2023-07-08 08:26:22.509683 52532879-4337-4361-abab-4a75003487ce {"md5": "d8125c9e65b76ef1a64ab7a145d3b2ba", "pid": "A027588056", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A027588056", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027588056", "source": "RERO"}], "preferred_name": "Dumbarton Oaks Colloquium on the History of Landscape Architecture 2015 :", "authorized_access_point": "Dumbarton Oaks Colloquium on the History of Landscape Architecture (39 : 2015 : Washington)"} 1 -2023-07-08 08:26:22.6189 2023-07-08 08:26:22.618913 dcc3e7db-41c3-4795-bd01-cba72fd9af27 {"md5": "6a836d931da764a40e8e557ed803cd2c", "pid": "A027604812", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027604812", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027604812", "source": "RERO"}], "preferred_name": "Tabin", "authorized_access_point": "Tabin"} 1 -2023-07-08 08:26:22.733202 2023-07-08 08:26:22.733219 2243c235-55f9-427c-b187-50ccb0763b5d {"md5": "f59450c45bc46b0bc6bc27f204fd21ab", "pid": "A027608462", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A027608462", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027608462", "source": "RERO"}], "preferred_name": "Wirz Werbeberatung (Zürich)", "authorized_access_point": "Wirz Werbeberatung (Zürich)"} 1 -2023-07-08 08:26:22.855299 2023-07-08 08:26:22.855315 46902bf0-43d7-44a9-95f8-64753c95670f {"md5": "60469d06730777cc06a05b05942775bd", "pid": "A027643343", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027643343", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027643343", "source": "RERO"}], "preferred_name": "Ruehl, Christopher", "authorized_access_point": "Ruehl, Christopher"} 1 -2023-07-08 08:26:22.975065 2023-07-08 08:26:22.975073 c7804b8a-181f-4593-8699-689b8d74fe20 {"md5": "aa5d518b1927b7e953a073c2ccc32f7c", "pid": "A027644407", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027644407", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027644407", "source": "RERO"}], "preferred_name": "Boileau, Géry", "authorized_access_point": "Boileau, Géry"} 1 -2023-07-08 08:26:23.091958 2023-07-08 08:26:23.091971 3d7eea0e-78a8-4ad1-9931-187b273ad801 {"md5": "0393b483dbbcfbe847e5ffe90992038c", "pid": "A027649761", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A027649761", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027649761", "source": "RERO"}], "preferred_name": "Guangdong Zhonghua min zu wen hua cu jin hui", "authorized_access_point": "Guangdong Zhonghua min zu wen hua cu jin hui"} 1 -2023-07-08 08:26:23.214193 2023-07-08 08:26:23.214206 7e4a5118-dd89-4ded-89d8-27d521d975ef {"md5": "2cd2d5921638efed5147f7e3bf001cb6", "pid": "A027652944", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027652944", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027652944", "source": "RERO"}], "variant_name": ["Salau, Mohammed Bashir,"], "date_of_birth": "1966", "preferred_name": "Bashir Salau, Mohammed,", "variant_access_point": ["Salau, Mohammed Bashir, 1966-"], "authorized_access_point": "Bashir Salau, Mohammed, 1966-"} 1 -2023-07-08 08:26:23.318666 2023-07-08 08:26:23.318677 44e0f7e0-bf0a-4181-a014-2a041ee01ed2 {"md5": "4dea9535f01eb7421147f6f39431fdbf", "pid": "A027653000", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027653000", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027653000", "source": "RERO"}], "date_of_birth": "1888", "preferred_name": "Wray, D.A.", "authorized_access_point": "Wray, D.A. (Disney Alexander), 1888-"} 1 -2023-07-08 08:26:23.416769 2023-07-08 08:26:23.416778 aadaf31b-77b9-4ce8-94af-be5bbff2c18b {"md5": "b865a35fbe6d5dfabf3cc1d9a187d05a", "pid": "A027655212", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027655212", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027655212", "source": "RERO"}], "preferred_name": "Guillon, Emmanuelle", "authorized_access_point": "Guillon, Emmanuelle"} 1 -2023-07-08 08:26:23.519264 2023-07-08 08:26:23.519279 812df44b-ae4e-495d-b25a-8d24c3ea9f9a {"md5": "9b9884177f4da868965e0d6e2f8da6bf", "pid": "A027661275", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027661275", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027661275", "source": "RERO"}], "preferred_name": "Woedtke, Friederike von", "authorized_access_point": "Woedtke, Friederike von"} 1 -2023-07-08 08:26:23.633549 2023-07-08 08:26:23.633563 583eb2f5-a1c7-4ff4-be84-01166e31adc8 {"md5": "b589990a99a775a5995f35b3cf25ba00", "pid": "A027664950", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027664950", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027664950", "source": "RERO"}], "preferred_name": "Leunen, Nico", "authorized_access_point": "Leunen, Nico"} 1 -2023-07-08 08:26:23.744926 2023-07-08 08:26:23.74494 015c75ec-3395-49c0-b81f-d4d8d7d816f8 {"md5": "f00f677c3312eff2feb780fe585e0f2f", "pid": "A027667116", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027667116", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027667116", "source": "RERO"}], "variant_name": ["Scott, Kieran Edward"], "preferred_name": "Scott, Kieran E", "variant_access_point": ["Scott, Kieran Edward"], "authorized_access_point": "Scott, Kieran E", "biographical_information": ["Photographe neo-zélandais"]} 1 -2023-07-08 08:26:23.854018 2023-07-08 08:26:23.854032 cd8101be-d418-41f3-bf9c-2cbfb71e1174 {"md5": "8f63fc0848e42bf934ab5f7a6c589c1e", "pid": "A027688556", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027688556", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027688556", "source": "RERO"}], "variant_name": ["Schleich, Philipp Meier,", "Meier, Philipp,"], "date_of_birth": "1977", "preferred_name": "Meier Schleich, Philipp,", "variant_access_point": ["Schleich, Philipp Meier, 1977-", "Meier, Philipp, 1977-"], "authorized_access_point": "Meier Schleich, Philipp, 1977-"} 1 -2023-07-08 08:26:23.953591 2023-07-08 08:26:23.953599 8d9252f9-4561-4b8d-9597-14af9c8b503a {"md5": "bcf4e8bd8c3dbbeb91845f8e1c9924f4", "pid": "A027698830", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027698830", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027698830", "source": "RERO"}], "date_of_birth": "1942", "preferred_name": "Davies, John,", "authorized_access_point": "Davies, John, 1942-"} 1 -2023-07-08 08:26:24.060162 2023-07-08 08:26:24.060173 91811515-9f5a-4eb6-9123-d99eda992075 {"md5": "23d1fc0bdca612760f744c0e1a9f9d85", "pid": "A027716766", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027716766", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027716766", "source": "RERO"}], "preferred_name": "Tesón, Eliseo", "authorized_access_point": "Tesón, Eliseo"} 1 -2023-07-08 08:26:24.175298 2023-07-08 08:26:24.175308 09f0c5e6-a3c5-4cea-8c59-86b5b00b7528 {"md5": "78364d2abfb69a4e779c7b3beb5e08ca", "pid": "A027736928", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027736928", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027736928", "source": "RERO"}], "date_of_birth": "1886", "date_of_death": "1950", "preferred_name": "Couche, Gaston-Paul,", "authorized_access_point": "Couche, Gaston-Paul, 1886-1950"} 1 -2023-07-08 08:26:24.296988 2023-07-08 08:26:24.297001 94e095db-3ea9-4685-9c4c-f6f82db770e9 {"md5": "acf06fa5221e9673b8ac1e04f3267b3e", "pid": "A027737227", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027737227", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027737227", "source": "RERO"}], "date_of_birth": "1956", "preferred_name": "Arx, Urs von,", "authorized_access_point": "Arx, Urs von, 1956-", "biographical_information": ["Auteur de livre de voyage et économiste"]} 1 -2023-07-08 08:26:24.398252 2023-07-08 08:26:24.398263 f485ffd0-3319-4605-ab1b-2a5c7fceeb4e {"md5": "5ad7ab1aceac9d589fb321c3ce6ffcb5", "pid": "A027737968", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifier": "http://data.rero.ch/02-A027737968", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027737968", "source": "RERO"}], "preferred_name": "Düsseldorfer Forum Politische Kommunikation 2016 :", "authorized_access_point": "Düsseldorfer Forum Politische Kommunikation (12 : 2016 : Düsseldorf)"} 1 -2023-07-08 08:26:24.506859 2023-07-08 08:26:24.506872 f8289fb6-2102-4c6e-bd4c-bf00c94c6365 {"md5": "935328bb1c0e1ee887247ca8fb1ba38c", "pid": "A027745860", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027745860", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027745860", "source": "RERO"}], "preferred_name": "Flamant, Gaspard", "authorized_access_point": "Flamant, Gaspard"} 1 -2023-07-08 08:26:24.625128 2023-07-08 08:26:24.625147 3e3b3b7a-76c3-44f7-b87a-bcd0c126adaa {"md5": "75eaf2817271b74bf214a96d8ec461bd", "pid": "A027747343", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027747343", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027747343", "source": "RERO"}], "preferred_name": "Gelbhaus, Tea", "authorized_access_point": "Gelbhaus, Tea"} 1 -2023-07-08 08:26:24.745581 2023-07-08 08:26:24.745589 f0b25d84-298a-4fe5-bb64-555327dcb578 {"md5": "e2db8a34d79468934ee5446ed6bec662", "pid": "A027763919", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027763919", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027763919", "source": "RERO"}], "preferred_name": "Palme, Thomas", "authorized_access_point": "Palme, Thomas", "biographical_information": ["Dates de vie: 1967-"]} 1 -2023-07-08 08:26:24.852594 2023-07-08 08:26:24.852608 bd59b261-d9e6-4a16-b665-8e59f23e49ec {"md5": "5f8deaadf9c74bc8b0e4156849902968", "pid": "A027766736", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027766736", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027766736", "source": "RERO"}], "preferred_name": "Gigandet, Jean", "authorized_access_point": "Gigandet, Jean"} 1 -2023-07-08 08:26:24.965931 2023-07-08 08:26:24.965947 b2231203-017a-4d98-b1fb-9c49a7c3c3da {"md5": "67336a1c0938cb0dbe388fc0a47968f7", "pid": "A027807323", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027807323", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027807323", "source": "RERO"}], "date_of_birth": "1948", "preferred_name": "Pérez, Silverio,", "authorized_access_point": "Pérez, Silverio, 1948-", "biographical_information": ["Musicien, écrivain, humoriste, entrepreneur et animateur de média de radiodiffusion portoricain"]} 1 -2023-07-08 08:26:25.074467 2023-07-08 08:26:25.074478 b8a95785-77eb-4601-a524-c1cd7fd66387 {"md5": "f4cacd2ed89886c1e70cc9e5b5a814be", "pid": "A027811966", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027811966", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027811966", "source": "RERO"}], "variant_name": ["Bednarek, Monika A.,"], "date_of_birth": "1977", "preferred_name": "Bednarek, Monika,", "variant_access_point": ["Bednarek, Monika A., 1977-"], "authorized_access_point": "Bednarek, Monika, 1977-", "biographical_information": ["Linguiste. - Professeure associée au Department of Linguistics, University of Sydney"]} 1 -2023-07-08 08:26:25.188302 2023-07-08 08:26:25.18831 05f9f3c6-c1b8-42e0-b7f4-09631b5c04b8 {"md5": "6f2ab189aa095e8f0815abca6c119ea6", "pid": "A027817940", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A027817940", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027817940", "source": "RERO"}], "variant_name": ["Grandel, Saskia Antonia"], "preferred_name": "Grandel, Saskia", "variant_access_point": ["Grandel, Saskia Antonia"], "authorized_access_point": "Grandel, Saskia", "biographical_information": ["Germaniste"]} 1 -2023-07-08 08:26:25.302161 2023-07-08 08:26:25.302174 45e32cac-51b0-4849-ad39-6be915002f45 {"md5": "a10e6992b19a4fb3eaf4b0037a7093e6", "pid": "A027841998", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "(pasteur)", "identifier": "http://data.rero.ch/02-A027841998", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027841998", "source": "RERO"}], "preferred_name": "Comte, Louis (pasteur)", "authorized_access_point": "Comte, Louis (pasteur)", "biographical_information": ["Dates de vie: 1857-1926"]} 1 -2023-07-08 08:26:25.403367 2023-07-08 08:26:25.40338 05055549-5a64-4730-bc0b-732eb4dfb7bf {"md5": "286a999793e8c4e8a2b3efdccf51cfe3", "pid": "A028081955", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A028081955", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A028081955", "source": "RERO"}], "preferred_name": "Parcy, Elliott", "authorized_access_point": "Parcy, Elliott", "biographical_information": ["Illustrateur"]} 1 -2023-07-08 08:26:25.510797 2023-07-08 08:26:25.510806 e2e8db63-2973-4050-be7e-1cce7340b696 {"md5": "b450778848552e5630385cfc1a0cba27", "pid": "A028167226", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A028167226", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A028167226", "source": "RERO"}], "variant_name": ["Gadea, Germán Antonio Orozco‏"], "preferred_name": "Orozco Gadea, Germán Antonio", "variant_access_point": ["Gadea, Germán Antonio Orozco‏"], "authorized_access_point": "Orozco Gadea, Germán Antonio"} 1 -2023-07-08 08:26:25.633329 2023-07-08 08:26:25.633343 e9546b1e-24ff-4c44-9c63-9342ffafc424 {"md5": "20b950f3298c99d4b9a5c2c5265ea542", "pid": "A028177834", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A028177834", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A028177834", "source": "RERO"}], "preferred_name": "Chine (République populaire). Cour populaire suprême. Shen pan shi wu gui fan bian ji xiao zu", "parallel_access_point": ["中华人民共和国. 最高人民法院. 审判实务规范编辑小组"], "authorized_access_point": "Chine (République populaire). Cour populaire suprême. Shen pan shi wu gui fan bian ji xiao zu"} 1 -2023-07-08 08:26:25.746616 2023-07-08 08:26:25.746631 6d588021-3a50-43ce-8710-a9453d494609 {"md5": "b815fee3b4fb765fd054f3bfbdc01dee", "pid": "A028331435", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A028331435", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A028331435", "source": "RERO"}], "variant_name": ["Börkur Sigthórsson,", "SigÞórsson, Börkur,", "Sigthórsson, Börkur,"], "date_of_birth": "1978", "preferred_name": "Börkur SigÞórsson,", "variant_access_point": ["Börkur Sigthórsson, 1978-", "SigÞórsson, Börkur, 1978-", "Sigthórsson, Börkur, 1978-"], "authorized_access_point": "Börkur SigÞórsson, 1978-", "biographical_information": ["Scénariste et réalisateur islandais"]} 1 -2023-07-08 08:26:25.858857 2023-07-08 08:26:25.858871 43b2185c-0b42-4a3d-a578-c2dc2eef7445 {"md5": "f8e4954e9dfa6a3453640b9a04db132e", "pid": "A028347593", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A028347593", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A028347593", "source": "RERO"}], "date_of_birth": "1990", "preferred_name": "Neuhaus, David,", "authorized_access_point": "Neuhaus, David, 1990-", "biographical_information": ["Biologiste et chef de choeur. Directeur du Choeur d'hommes du Gibloux et du Choeur mixte paroissial l'Espérance de Vuadens"]} 1 -2023-07-08 08:26:25.963091 2023-07-08 08:26:25.963109 cf52be68-2eaf-4e3d-a6b3-6d74df99da09 {"md5": "6c35106efcb6ee8adc7e21d259780288", "pid": "A028355646", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A028355646", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A028355646", "source": "RERO"}], "variant_name": ["Des Roziers, Laurent Burin", "Roziers, Laurent Burin des"], "preferred_name": "Burin Des Roziers, Laurent", "variant_access_point": ["Des Roziers, Laurent Burin", "Roziers, Laurent Burin des"], "authorized_access_point": "Burin Des Roziers, Laurent", "biographical_information": ["Haut fonctionnaire et universitaire. - Spécialiste des négociations internationales dans le secteur audiovisuel. - Enseigne à l'Institut d'études politiques de Paris (depuis 1988)"]} 1 -2023-07-08 08:26:26.093042 2023-07-08 08:26:26.093056 d5ba43a0-583c-4f8f-a1c0-f50aca598141 {"md5": "ac18de25da6c868979a759cdb0b3d43b", "pid": "A028357568", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A028357568", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A028357568", "source": "RERO"}], "date_of_birth": "1971", "preferred_name": "Apikian, Cédric,", "authorized_access_point": "Apikian, Cédric, 1971-", "biographical_information": ["Cinéaste, journaliste TV et scénariste de bandes dessinées"]} 1 -2023-07-08 08:26:26.203534 2023-07-08 08:26:26.203547 7684c03c-15e0-4e72-89f5-4eb0fc3ebd76 {"md5": "214051dec68b91190e40d2e4ac1d4d98", "pid": "A028447819", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A028447819", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A028447819", "source": "RERO"}], "preferred_name": "Barrès, Frankline", "authorized_access_point": "Barrès, Frankline", "biographical_information": ["Restauratrice de peintures de chevalet, professeur d'histoire de l'art et d'histoire des techniques de la peinture"]} 1 -2023-07-08 08:26:26.310108 2023-07-08 08:26:26.310119 72d04248-72b8-45a7-8b35-6f3c02d330f9 {"md5": "e26a3a2a6db6be42d5c9bfa5a85315cb", "pid": "A028520087", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A028520087", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A028520087", "source": "RERO"}], "variant_name": ["AIESC (Association internationale pour l'enseignement social chrétien)"], "preferred_name": "Association internationale pour l'enseignement social chrétien", "variant_access_point": ["AIESC (Association internationale pour l'enseignement social chrétien)"], "authorized_access_point": "Association internationale pour l'enseignement social chrétien"} 1 -2023-07-08 08:26:26.408678 2023-07-08 08:26:26.408686 38f9ada5-dc72-4b14-934c-d21a0f4dfa02 {"md5": "e60e8f9658db666a7ac24861edec16e7", "pid": "A028529691", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A028529691", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A028529691", "source": "RERO"}], "date_of_birth": "1989", "preferred_name": "Wietlisbach, Stéphanie,", "authorized_access_point": "Wietlisbach, Stéphanie, 1989-", "biographical_information": ["Juriste"]} 1 -2023-07-08 08:26:26.526333 2023-07-08 08:26:26.526346 83c67557-f6e7-4de2-8d2a-f0c197fc59e1 {"md5": "0d3eb9fc90175698eae79cffbeb63771", "pid": "A028751062", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A028751062", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A028751062", "source": "RERO"}], "preferred_name": "Stras, Laurie", "authorized_access_point": "Stras, Laurie", "biographical_information": ["Auteur d'un ouvrage sur la musique populaire américaine et enseignante à l'Université de Southampton (2012)"]} 1 -2023-07-08 08:26:26.64881 2023-07-08 08:26:26.648825 6329d758-f756-46f4-b6c6-c05557c991e2 {"md5": "12584f0f32c42166379da5489866b57d", "pid": "A028868344", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A028868344", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A028868344", "source": "RERO"}], "variant_name": ["Caoursin, William,", "Caorsinus, Guilelmus,", "Caoursin, Guillelmus,", "Cahoursin, Guillaume,", "Caorsin, Gulielmo,", "Caorsin, Guillermus,", "Guillaume Caoursin,"], "date_of_birth": "(1430?", "date_of_death": "1501)", "preferred_name": "Caoursin, Guillaume,", "variant_access_point": ["Caoursin, William, (1430?-1501)", "Caorsinus, Guilelmus, (1430?-1501)", "Caoursin, Guillelmus, (1430?-1501)", "Cahoursin, Guillaume, (1430?-1501)", "Caorsin, Gulielmo, (1430?-1501)", "Caorsin, Guillermus, (1430?-1501)", "Guillaume Caoursin, (1430?-1501)"], "authorized_access_point": "Caoursin, Guillaume, (1430?-1501)", "biographical_information": ["Vice-chancelier de l'Ordre de Saint-Jean de Jérusalem"]} 1 -2023-07-08 08:26:26.77374 2023-07-08 08:26:26.773751 9584dfc7-288e-4ab7-a40a-aea730b8fb46 {"md5": "cb8ab6949a033fe8504cff31d4e0b920", "pid": "A028868962", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A028868962", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A028868962", "source": "RERO"}], "date_of_birth": "1985", "preferred_name": "Miller, Ike,", "authorized_access_point": "Miller, Ike, 1985-", "biographical_information": ["Pasteur"]} 1 -2023-07-08 08:26:26.896406 2023-07-08 08:26:26.896416 066f2843-4d73-43d6-9c07-7a270fb13be7 {"md5": "e6cf83e7b761dedd6abe3a591419bd46", "pid": "A028986344", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifier": "http://data.rero.ch/02-A028986344", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A028986344", "source": "RERO"}], "preferred_name": "Association por International Servicie", "authorized_access_point": "Association por International Servicie"} 1 -2023-07-08 08:26:27.027224 2023-07-08 08:26:27.027238 a5b8498e-479a-4254-bfd9-e0783753855c {"md5": "eba0360bf24a0397f086bd6c3bd66826", "pid": "A028989262", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A028989262", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A028989262", "source": "RERO"}], "preferred_name": "Bodoc, Clémence", "authorized_access_point": "Bodoc, Clémence"} 1 -2023-07-08 08:26:27.141688 2023-07-08 08:26:27.141703 d80284c2-f290-47b9-8b11-8c34fb04a365 {"md5": "71e73b7ffdfb6e8cba3fa93851f6709b", "pid": "A029002736", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifier": "http://data.rero.ch/02-A029002736", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A029002736", "source": "RERO"}], "date_of_birth": "1928", "date_of_death": "1971", "preferred_name": "Gygax, Ueli,", "authorized_access_point": "Gygax, Ueli, 1928-1971"} 1 -2023-07-08 08:26:27.266063 2023-07-08 08:26:27.266079 907fd4bc-3bc8-4b5e-82fb-4d30ae40bb24 {"md5": "f140d9765a9bb10f751723bd40742497", "pid": "A029004750", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "professeur physique chimie", "identifier": "http://data.rero.ch/02-A029004750", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A029004750", "source": "RERO"}], "preferred_name": "Martin, François professeur physique chimie", "authorized_access_point": "Martin, François professeur physique chimie"} 1 +2024-09-11 09:06:19.963718 2024-09-11 09:06:19.963724 0c8e1296-c766-4ddb-9028-0de9b79c1b77 {"md5": "6e2f46cfabeedd4d154546b0efa743df", "pid": "A000003203", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000003203", "source": "RERO"}], "preferred_name": "Académie de chirurgie (Paris)", "authorized_access_point": "Académie de chirurgie (Paris)", "biographical_information": ["Jusqu'en 1923: Société de chirurgie (Paris)", "De 1924 à 1935: Société nationale de chirurgie (Paris)", "Depuis 1936: Académie de chirurgie (Paris)"]} 1 +2024-09-11 09:06:20.034549 2024-09-11 09:06:20.034552 d09ebda1-a30e-44a8-957a-9794edfc5fb2 {"md5": "93da61e73939257cdc5512e37d4147c1", "pid": "A000010540", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000010540", "source": "RERO"}], "variant_name": ["Enseignement public et informatique (France)", "EPI (Enseignement public et informatique)"], "preferred_name": "Association Enseignement public et informatique (Paris)", "variant_access_point": ["Enseignement public et informatique (France)", "EPI (Enseignement public et informatique)"], "authorized_access_point": "Association Enseignement public et informatique (Paris)"} 1 +2024-09-11 09:06:20.087401 2024-09-11 09:06:20.087406 a656130d-6edb-460a-831b-ee0b98c4fc24 {"md5": "a4ab617daba9f3febf593c6d07ee5619", "pid": "A000011132", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000011132", "source": "RERO"}], "variant_name": ["AAPPFID (Association des amis passés, présents et futurs d'Isidore Ducasse : Paris)"], "preferred_name": "Association des amis passés, présents et futurs d'Isidore Ducasse (Paris)", "variant_access_point": ["AAPPFID (Association des amis passés, présents et futurs d'Isidore Ducasse : Paris)"], "authorized_access_point": "Association des amis passés, présents et futurs d'Isidore Ducasse (Paris)"} 1 +2024-09-11 09:06:20.139376 2024-09-11 09:06:20.13938 be963e1e-81c2-4eeb-bebe-37f481845821 {"md5": "9b0b3fe56df51e8d244be719ebe13707", "pid": "A000012165", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000012165", "source": "RERO"}], "variant_name": ["Societas internationalis studiis Byzantinis provehendis destinata"], "preferred_name": "Association internationale des études byzantines", "variant_access_point": ["Societas internationalis studiis Byzantinis provehendis destinata"], "authorized_access_point": "Association internationale des études byzantines"} 1 +2024-09-11 09:06:20.193638 2024-09-11 09:06:20.193642 4807caff-e8a8-4ec1-b4f1-81624d5db978 {"md5": "476ae68cff503874b82b6b50fc4fcae9", "pid": "A000014216", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000014216", "source": "RERO"}], "variant_name": ["NCAAC (National Consumer Affairs Advisory Council)", "National Consumer Affairs Advisory Council"], "preferred_name": "Australia. National Consumer Affairs Advisory Council", "variant_access_point": ["NCAAC (National Consumer Affairs Advisory Council)", "National Consumer Affairs Advisory Council"], "authorized_access_point": "Australia. National Consumer Affairs Advisory Council"} 1 +2024-09-11 09:06:20.243405 2024-09-11 09:06:20.243409 d291c213-b6b3-4be2-87ef-2e6d4e77c392 {"md5": "6a9afa4889e6f3148a7a63c38a45c8fd", "pid": "A000014650", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000014650", "source": "RERO"}], "variant_name": ["Fluggruppe Oberwallis"], "preferred_name": "Aéro-Club de Suisse. Section du Valais. Fluggruppe Oberwallis", "variant_access_point": ["Fluggruppe Oberwallis"], "authorized_access_point": "Aéro-Club de Suisse. Section du Valais. Fluggruppe Oberwallis"} 1 +2024-09-11 09:06:20.302577 2024-09-11 09:06:20.30258 890bd8fd-5343-4dc0-849b-f51e9f4957fa {"md5": "e59c4910898e0700d3a207496702a3cf", "pid": "A000016955", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000016955", "source": "RERO"}], "date_of_birth": "1813", "date_of_death": "1882", "preferred_name": "Batissier, Louis,", "authorized_access_point": "Batissier, Louis, 1813-1882", "biographical_information": ["B. Lewis est le pseudonyme de Louis Batissier", "Médecin. - Inspecteur de monuments historiques de l'Allier"]} 1 +2024-09-11 09:06:20.377402 2024-09-11 09:06:20.377406 b6261c2d-f69a-4980-90f1-a2ddee88765f {"md5": "dca94ac6e23f1684c165bc90c0d8bc20", "pid": "A000018483", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "d'Anoia", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000018483", "source": "RERO"}], "variant_name": ["Anoia, Berenguer d'"], "preferred_name": "Berenguer, d'Anoia", "variant_access_point": ["Anoia, Berenguer d'"], "authorized_access_point": "Berenguer, d'Anoia"} 1 +2024-09-11 09:06:20.432578 2024-09-11 09:06:20.432581 4ab3b0ff-2744-497b-b75e-afceb4f046c2 {"md5": "69ded052e48785f322f60b17a5342cdc", "pid": "A000018719", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000018719", "source": "RERO"}], "variant_name": ["Bern (Kanton). Service de statistique"], "preferred_name": "Bern (Kanton). Amt für Statistik", "variant_access_point": ["Bern (Kanton). Service de statistique"], "authorized_access_point": "Bern (Kanton). Amt für Statistik"} 1 +2024-09-11 09:06:20.486729 2024-09-11 09:06:20.486734 405a6228-80db-474e-bb93-64b06d12d4f3 {"md5": "a3aa4d66ad9fc02293889a2c3a3a8212", "pid": "A000022042", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000022042", "source": "RERO"}], "variant_name": ["Bouchon, Bernadette"], "preferred_name": "Bouchon-Meunier, Bernadette", "variant_access_point": ["Bouchon, Bernadette"], "authorized_access_point": "Bouchon-Meunier, Bernadette", "biographical_information": ["Nom collectif réunissant des systémiciens provenant des milieux universitaire, administratif et industriel"]} 1 +2024-09-11 09:06:20.539727 2024-09-11 09:06:20.539732 5dd07a95-e2cb-43e7-9cb8-e944b144f4be {"md5": "a19bd34d154e11a22188edf8e2432a4a", "pid": "A000023938", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000023938", "source": "RERO"}], "variant_name": ["Deutschland (Bundesrepublik). Bundeskonferenz für Erziehungsberatung"], "preferred_name": "Bundeskonferenz für Erziehungsberatung", "variant_access_point": ["Deutschland (Bundesrepublik). Bundeskonferenz für Erziehungsberatung"], "authorized_access_point": "Bundeskonferenz für Erziehungsberatung"} 1 +2024-09-11 09:07:36.604931 2024-09-11 09:07:36.604936 b4bfd758-15dc-4289-a083-e09fe685b300 {"md5": "790b324c250d8545df02a7d87c4eba48", "pid": "A022788140", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022788140", "source": "RERO"}], "preferred_name": "A. Z", "authorized_access_point": "A. Z"} 1 +2024-09-11 09:06:20.590617 2024-09-11 09:06:20.590621 2c3fa1f1-ed0b-41d5-9a08-13ff2a3b0747 {"md5": "dfa6e7b15b4f44eabbf1422d343856be", "pid": "A000026444", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000026444", "source": "RERO"}], "variant_name": ["Centro per la ricerca e l'applicazione dell'informatica alle scienze umane (Grono / Giubiasco)"], "preferred_name": "COBIS (Centro per la ricerca e l'applicazione dell'informatica alle scienze umane ; Grono / Giubiasco)", "variant_access_point": ["Centro per la ricerca e l'applicazione dell'informatica alle scienze umane (Grono / Giubiasco)"], "authorized_access_point": "COBIS (Centro per la ricerca e l'applicazione dell'informatica alle scienze umane ; Grono / Giubiasco)"} 1 +2024-09-11 09:06:20.640243 2024-09-11 09:06:20.640246 bf9d416f-e642-4654-b96c-ef7b213809e9 {"md5": "5e737992007893340ba65e322b575201", "pid": "A000031507", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000031507", "source": "RERO"}], "variant_name": ["CEDOS (Centre de documentation et d'information scientifiques)"], "preferred_name": "Centre de documentation et d'information scientifiques (Genève)", "variant_access_point": ["CEDOS (Centre de documentation et d'information scientifiques)"], "authorized_access_point": "Centre de documentation et d'information scientifiques (Genève)"} 1 +2024-09-11 09:06:20.69311 2024-09-11 09:06:20.693115 010e7344-07b2-4717-8fcd-929948e992d7 {"md5": "30952e336fc9812ead0700a5ade7f3bf", "pid": "A000032185", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000032185", "source": "RERO"}], "variant_name": ["Centre for the Study of Education in Developing Countries (Den Haag)", "CESO (Centre for the Study of Education in Developing Countries ; Den Haag)", "Centro de Estudios de la Educación en Sociedades en Proceso de Cambio (Den Haag)", "Centro para el Estudio de la Educación en Países en vía de Desarrollo (Den Haag)"], "preferred_name": "Centrum voor de Studie van het Onderwijs in de Ontwikkelingslanden (Den Haag)", "variant_access_point": ["Centre for the Study of Education in Developing Countries (Den Haag)", "CESO (Centre for the Study of Education in Developing Countries ; Den Haag)", "Centro de Estudios de la Educación en Sociedades en Proceso de Cambio (Den Haag)", "Centro para el Estudio de la Educación en Países en vía de Desarrollo (Den Haag)"], "authorized_access_point": "Centrum voor de Studie van het Onderwijs in de Ontwikkelingslanden (Den Haag)"} 1 +2024-09-11 09:06:20.747278 2024-09-11 09:06:20.747283 f4c89b0b-7490-4374-9503-cbd79138b12f {"md5": "6de9b2ad5d3a5933d245c5611c8f9b49", "pid": "A000033498", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000033498", "source": "RERO"}], "variant_name": ["CSG (Ceramic Study Group Sydney)"], "preferred_name": "Ceramic Study Group (Sydney)", "variant_access_point": ["CSG (Ceramic Study Group Sydney)"], "authorized_access_point": "Ceramic Study Group (Sydney)"} 1 +2024-09-11 09:06:20.800924 2024-09-11 09:06:20.800926 302f7b23-e935-4347-b371-6279da8a0bf3 {"md5": "8440ac79148ef51eff45523360f6f3be", "pid": "A000035884", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000035884", "source": "RERO"}], "variant_name": ["Cholinus, Gosuinus"], "preferred_name": "Cholinus, Goswin", "variant_access_point": ["Cholinus, Gosuinus"], "authorized_access_point": "Cholinus, Goswin"} 1 +2024-09-11 09:06:20.849954 2024-09-11 09:06:20.849957 dbfa2e8a-7090-410f-bebc-47f83dc85bd8 {"md5": "f7e26d3c73b5e0e5ef36ba088ac25b65", "pid": "A000041054", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000041054", "source": "RERO"}], "variant_name": ["CGIL (Confederazione generale italiana del lavoro)"], "preferred_name": "Confederazione generale italiana del lavoro", "variant_access_point": ["CGIL (Confederazione generale italiana del lavoro)"], "authorized_access_point": "Confederazione generale italiana del lavoro"} 1 +2024-09-11 09:06:20.89879 2024-09-11 09:06:20.898795 8f1635af-cdf1-4734-a4e0-a40db380cf90 {"md5": "5d7ad323fbebb1fe6cd1f66c209d0e07", "pid": "A000042792", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000042792", "source": "RERO"}], "variant_name": ["Comité d'experts sur la recherche en matière de sport (Conseil de l'Europe)", "Conseil de l'Europe. Comité pour le développement du sport. Comité d'experts sur la recherche en matière de sport"], "preferred_name": "Conseil de l'Europe. Comité d'experts sur la recherche en matière de sport", "variant_access_point": ["Comité d'experts sur la recherche en matière de sport (Conseil de l'Europe)", "Conseil de l'Europe. Comité pour le développement du sport. Comité d'experts sur la recherche en matière de sport"], "authorized_access_point": "Conseil de l'Europe. Comité d'experts sur la recherche en matière de sport"} 1 +2024-09-11 09:06:20.981797 2024-09-11 09:06:20.981803 fbe9c07d-4168-4fda-ac16-1ac33bfc11bc {"md5": "83b57ffcdc4526fa90ae42deafb91847", "pid": "A000045285", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000045285", "source": "RERO"}], "preferred_name": "Crédit Suisse Fides Trust (Zürich)", "authorized_access_point": "Crédit Suisse Fides Trust (Zürich)", "biographical_information": ["KPMG = Klynveld Peat Marwick Goerdeler", "De 1981 à 1984: Fides Revision (Zürich)", "De 1985 à 1987: KMG Fides Revision (Zürich)", "De 1988 à 1991: KPMG Fides Peat (Zürich)", "De 1992 à 1994: Fides Trust (Zürich)", "Dès 1995: Crédit Suisse Fides Trust (Zürich)"]} 1 +2024-09-11 09:06:21.032334 2024-09-11 09:06:21.03234 683487f9-7163-4e58-9e38-58147ef01ce2 {"md5": "d2173e44476dbc3bda32d62a245bf79b", "pid": "A000047084", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000047084", "source": "RERO"}], "variant_name": ["Gupta, Jyotitindra Das"], "preferred_name": "Das Gupta, Jyotirindra", "variant_access_point": ["Gupta, Jyotitindra Das"], "authorized_access_point": "Das Gupta, Jyotirindra"} 1 +2024-09-11 09:06:21.090885 2024-09-11 09:06:21.090888 bd2eeeff-9724-4a5e-a5bc-28011caf617d {"md5": "94a9c604f6e7bd01a60a52ceb96782fa", "pid": "A000047788", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000047788", "source": "RERO"}], "variant_name": ["Groote, Jacqueline de"], "preferred_name": "De Groote, Jacqueline", "variant_access_point": ["Groote, Jacqueline de"], "authorized_access_point": "De Groote, Jacqueline"} 1 +2024-09-11 09:06:21.138186 2024-09-11 09:06:21.138191 347c5d14-83fc-469e-a25d-88eff9565bb1 {"md5": "4449653cdc0e6a3ff87662e65c2b66b1", "pid": "A000062707", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000062707", "source": "RERO"}], "variant_name": ["Philipinas", "Philippinen", "Filipinas", "Républica de Filipinas", "Republic of the Philippines"], "preferred_name": "Philippines", "variant_access_point": ["Philipinas", "Philippinen", "Filipinas", "Républica de Filipinas", "Republic of the Philippines"], "authorized_access_point": "Philippines"} 1 +2024-09-11 09:06:21.191094 2024-09-11 09:06:21.191098 40bae67a-089f-40e8-8208-1b74786c458e {"md5": "99778cf6a757805406310fe3961f1f46", "pid": "A000063670", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000063670", "source": "RERO"}], "variant_name": ["FFN (Fondation française pour la nutrition)", "Institut français pour la nutrition"], "preferred_name": "Fondation française pour la nutrition", "variant_access_point": ["FFN (Fondation française pour la nutrition)", "Institut français pour la nutrition"], "authorized_access_point": "Fondation française pour la nutrition"} 1 +2024-09-11 09:06:21.245682 2024-09-11 09:06:21.245688 d16e8047-83c6-4fa9-b755-202bb6a105ed {"md5": "ea463cfd3da0644ab2b8320b9ea109a1", "pid": "A000068070", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000068070", "source": "RERO"}], "variant_name": ["Fédération vaudoise des syndicats d'élevage chevalin"], "preferred_name": "Fédération vaudoise des syndicats d'élevage de l'espèce chevaline", "variant_access_point": ["Fédération vaudoise des syndicats d'élevage chevalin"], "authorized_access_point": "Fédération vaudoise des syndicats d'élevage de l'espèce chevaline"} 1 +2024-09-11 09:06:21.293953 2024-09-11 09:06:21.293957 5e4dc1f5-2638-4101-add4-4f79088ee2cd {"md5": "4df23c3717f01434d224a47f807a5883", "pid": "A000069516", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000069516", "source": "RERO"}], "variant_name": ["Pavón, Francisco García,"], "date_of_birth": "1919", "date_of_death": "1989", "preferred_name": "García Pavón, Francisco,", "variant_access_point": ["Pavón, Francisco García, 1919-1989"], "authorized_access_point": "García Pavón, Francisco, 1919-1989", "biographical_information": ["Romancier et critique de théâtre. - Docteur ès lettres et philosophie"]} 1 +2024-09-11 09:06:21.341248 2024-09-11 09:06:21.341251 313d98fb-5b27-46d8-ad5a-325b3059ab3e {"md5": "a9e59ec1e65d3ed89a13b2ad534d2b3e", "pid": "A000074210", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000074210", "source": "RERO"}], "variant_name": ["Securities and Investments Board", "SIB (Securities and Investments Board)"], "preferred_name": "Great Britain. Securities and Investments Board", "variant_access_point": ["Securities and Investments Board", "SIB (Securities and Investments Board)"], "authorized_access_point": "Great Britain. Securities and Investments Board"} 1 +2024-09-11 09:06:21.393757 2024-09-11 09:06:21.393762 7fa44812-dec0-4a5a-80cd-67c48ddd1801 {"md5": "781346b5048118e3562bea607e9fe649", "pid": "A000075082", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000075082", "source": "RERO"}], "variant_name": ["GRET (Groupe de recherche et d'échanges technologiques, Paris)"], "preferred_name": "Groupe de recherche et d'échanges technologiques (Paris)", "variant_access_point": ["GRET (Groupe de recherche et d'échanges technologiques, Paris)"], "authorized_access_point": "Groupe de recherche et d'échanges technologiques (Paris)"} 1 +2024-09-11 09:06:21.448186 2024-09-11 09:06:21.448189 4048341a-a38c-491b-a181-d24666d2c368 {"md5": "dfbcd70d68d8f4b3ccfc42c46944c9a8", "pid": "A000075825", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000075825", "source": "RERO"}], "variant_name": ["Hellas. Ministry of Culture and Sciences", "Hypourgeio Politismou kai Epistēmōn", "Hellas. Ministerium für Kultur und Wissenschaft", "Hellas. Ministère de la culture et des sciences", "Hypurgeion Politismu kai Epistēmōn", "Hellas. Hypurgeio Politismu kai Epistēmōn"], "preferred_name": "Hellas. Hypourgeio Politismou kai Epistēmōn", "variant_access_point": ["Hellas. Ministry of Culture and Sciences", "Hypourgeio Politismou kai Epistēmōn", "Hellas. Ministerium für Kultur und Wissenschaft", "Hellas. Ministère de la culture et des sciences", "Hypurgeion Politismu kai Epistēmōn", "Hellas. Hypurgeio Politismu kai Epistēmōn"], "authorized_access_point": "Hellas. Hypourgeio Politismou kai Epistēmōn"} 1 +2024-09-11 09:06:21.501165 2024-09-11 09:06:21.501169 13abc03c-ead7-4c28-8848-69ff9e7b3b90 {"md5": "504877e546c16c9318f7096cdfc6ed76", "pid": "A000078192", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000078192", "source": "RERO"}], "variant_name": ["Fitzwilliam Museum (Cambridge). Hamilton Kerr Institute", "Cambridge University. Hamilton Kerr Institute"], "preferred_name": "Hamilton Kerr Institute (Cambridge)", "variant_access_point": ["Fitzwilliam Museum (Cambridge). Hamilton Kerr Institute", "Cambridge University. Hamilton Kerr Institute"], "authorized_access_point": "Hamilton Kerr Institute (Cambridge)"} 1 +2024-09-11 09:06:21.561895 2024-09-11 09:06:21.561898 1f4b8303-f4dc-40b7-83b3-d5d93cf5823a {"md5": "c4f57be90163ebb428e9e216e3d8f604", "pid": "A000082809", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000082809", "source": "RERO"}], "variant_name": ["Khālidī, ʿAbd al-Majīd ibn Muḥammad,", "H̲ānī, ʿAbd al-Maǧīd,", "Nasqshabandī, ʿAbd al-Majīd ibn Muḥammad,"], "date_of_birth": "ca. 1846", "date_of_death": "ca. 1901", "preferred_name": "Khānī, ʿAbd al-Majīd ibn Muḥammad,", "variant_access_point": ["Khālidī, ʿAbd al-Majīd ibn Muḥammad, ca. 1846-ca. 1901", "H̲ānī, ʿAbd al-Maǧīd, ca. 1846-ca. 1901", "Nasqshabandī, ʿAbd al-Majīd ibn Muḥammad, ca. 1846-ca. 1901"], "parallel_access_point": ["خاني، عبد المجيد بن محمد، ca. 1846-ca. 1901"], "authorized_access_point": "Khānī, ʿAbd al-Majīd ibn Muḥammad, ca. 1846-ca. 1901"} 1 +2024-09-11 09:06:21.6124 2024-09-11 09:06:21.612405 3f58a503-153b-4459-841e-afd90d1eae15 {"md5": "6c3a44305820bdfb442eb1e01758ec89", "pid": "A000085441", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000085441", "source": "RERO"}], "variant_name": ["INFRA Zürich (Informationsstelle für Frauen)"], "preferred_name": "Informationsstelle für Frauen (Zürich)", "variant_access_point": ["INFRA Zürich (Informationsstelle für Frauen)"], "authorized_access_point": "Informationsstelle für Frauen (Zürich)"} 1 +2024-09-11 09:06:21.665361 2024-09-11 09:06:21.665366 3b84d9e1-f911-43c8-b58a-8ad616dc2b31 {"md5": "c5c2b7396436acb1cc1d49cec6b1ca57", "pid": "A000085746", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000085746", "source": "RERO"}], "variant_name": ["Couvent des Ursulines (Fribourg)"], "preferred_name": "Institut Sainte-Ursule (Fribourg)", "variant_access_point": ["Couvent des Ursulines (Fribourg)"], "authorized_access_point": "Institut Sainte-Ursule (Fribourg)"} 1 +2024-09-11 09:06:21.71495 2024-09-11 09:06:21.714954 5516b23a-d91b-41e2-8429-4d1ceac4212f {"md5": "caec158c1fedb4f75f098d5d36eee0f6", "pid": "A000087771", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000087771", "source": "RERO"}], "variant_name": ["CFA (Institute of Chartered Financial Analysts ; USA)", "ICFA (Institute of Chartered Financial Analysts ; USA)"], "preferred_name": "Institute of Chartered Financial Analysts (USA)", "variant_access_point": ["CFA (Institute of Chartered Financial Analysts ; USA)", "ICFA (Institute of Chartered Financial Analysts ; USA)"], "authorized_access_point": "Institute of Chartered Financial Analysts (USA)"} 1 +2024-09-11 09:06:21.761962 2024-09-11 09:06:21.761966 7d8e31de-6c04-41ab-9b15-18a2a3924b41 {"md5": "ea638c2a8597a91799c4c9a9489d84d3", "pid": "A000091274", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000091274", "source": "RERO"}], "variant_name": ["Intrag AG (Verwaltung von Investment Trusts)"], "preferred_name": "Intrag SA (Gestion d'Investment Trusts)", "variant_access_point": ["Intrag AG (Verwaltung von Investment Trusts)"], "authorized_access_point": "Intrag SA (Gestion d'Investment Trusts)"} 1 +2024-09-11 09:06:21.81156 2024-09-11 09:06:21.811563 7b87f8b6-f2ce-47c4-9ac5-6823157653fa {"md5": "f81b33c023c01def36906e1f1526f2fe", "pid": "A000092501", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000092501", "source": "RERO"}], "variant_name": ["Italia. Ministero per i beni culturali e ambientali. Soprintendenza archivistica per la Toscana", "Soprintendenza archivistica per la Toscana"], "preferred_name": "Italia. Soprintendenza archivistica per la Toscana", "variant_access_point": ["Italia. Ministero per i beni culturali e ambientali. Soprintendenza archivistica per la Toscana", "Soprintendenza archivistica per la Toscana"], "authorized_access_point": "Italia. Soprintendenza archivistica per la Toscana"} 1 +2024-09-11 09:06:21.860341 2024-09-11 09:06:21.860345 2ca691b1-d0b3-45e0-bd93-a8b9a2f8637e {"md5": "e68d81baffe2c6ea8de0eb737cefec82", "pid": "A000099346", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000099346", "source": "RERO"}], "variant_name": ["K'ung, Shang-jen"], "preferred_name": "Kong, Shangren", "variant_access_point": ["K'ung, Shang-jen"], "authorized_access_point": "Kong, Shangren"} 1 +2024-09-11 09:06:21.908706 2024-09-11 09:06:21.908711 efa03eca-11ee-4e49-ac4d-6e2440cdf347 {"md5": "b4f72851485675b39e1721eb193390df", "pid": "A000100584", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000100584", "source": "RERO"}], "variant_name": ["Kupriyanova, V.R", "Kuprijanova, V.R"], "preferred_name": "Kuprii︠a︡nova, V.R", "variant_access_point": ["Kupriyanova, V.R", "Kuprijanova, V.R"], "authorized_access_point": "Kuprii︠a︡nova, V.R"} 1 +2024-09-11 09:06:21.961162 2024-09-11 09:06:21.961166 d10e3658-808e-43d2-b1ec-0ca1eeba489d {"md5": "8f0ae6c1f4c1be8054edce77a5386486", "pid": "A000102121", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000102121", "source": "RERO"}], "variant_name": ["Verpelli, Silvia Lalia"], "preferred_name": "Lalia Verpelli, Silvia", "variant_access_point": ["Verpelli, Silvia Lalia"], "authorized_access_point": "Lalia Verpelli, Silvia"} 1 +2024-09-11 09:06:22.016974 2024-09-11 09:06:22.016977 53bf898d-afbb-4419-97d4-b757c67e6aab {"md5": "2f7a7ea4dd8c956872a8b5d99dda2522", "pid": "A000103142", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000103142", "source": "RERO"}], "variant_name": ["Lavoix, Henri, numismate"], "preferred_name": "Lavoix, Michel Henri", "variant_access_point": ["Lavoix, Henri, numismate"], "authorized_access_point": "Lavoix, Michel Henri"} 1 +2024-09-11 09:06:22.089044 2024-09-11 09:06:22.089048 9979e2a4-3f7d-4395-8b34-90fd1bc7c34a {"md5": "d4d5698d2c60bf3eda4fba0bee05d359", "pid": "A000104694", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000104694", "source": "RERO"}], "variant_name": ["Lanzhi, Li"], "preferred_name": "Li, Lanzhi", "variant_access_point": ["Lanzhi, Li"], "authorized_access_point": "Li, Lanzhi"} 1 +2024-09-11 09:06:22.164231 2024-09-11 09:06:22.16424 557ad864-4078-4121-9332-641de3940669 {"md5": "c778cd6705162975ac5114913d304313", "pid": "A000107290", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000107290", "source": "RERO"}], "variant_name": ["Swaanswijk, Lubertus Jacobus", "Van Swaanswijk, Lucebert"], "preferred_name": "Lucebert", "variant_access_point": ["Swaanswijk, Lubertus Jacobus", "Van Swaanswijk, Lucebert"], "authorized_access_point": "Lucebert", "biographical_information": ["Lucebert est le pseudonyme de Lubertus Jacobus Swaanswijk", "Lucebert est le pseudonyme de Lubertus Jacobus Swaanswijk"]} 1 +2024-09-11 09:06:22.218673 2024-09-11 09:06:22.218678 3decd614-f6f3-427a-b4f4-d2b8e38114fb {"md5": "9b3ed0ddc1b26e6f08e623f61d790ae5", "pid": "A000108532", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000108532", "source": "RERO"}], "variant_name": ["Hongjun, Ma"], "preferred_name": "Ma, Hongjun", "variant_access_point": ["Hongjun, Ma"], "authorized_access_point": "Ma, Hongjun"} 1 +2024-09-11 09:06:22.268613 2024-09-11 09:06:22.268616 dbc800a7-a7fa-4ec8-8dee-39a494ea6806 {"md5": "5d875137c831386f1a4f134ac2b8e60d", "pid": "A000108719", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000108719", "source": "RERO"}], "variant_name": ["Macclaskey, Marilyn H. Jones"], "preferred_name": "Macclaskey, Marilyn H", "variant_access_point": ["Macclaskey, Marilyn H. Jones"], "authorized_access_point": "Macclaskey, Marilyn H"} 1 +2024-09-11 09:06:22.333737 2024-09-11 09:06:22.33374 9104e8cb-592d-4a43-9e6f-360c391895f1 {"md5": "81fbd464937a83684c4004157f75a68b", "pid": "A000110353", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "Evangelista", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000110353", "source": "RERO"}], "variant_name": ["Marc, l'évangéliste"], "preferred_name": "Marcus, Evangelista", "variant_access_point": ["Marc, l'évangéliste"], "authorized_access_point": "Marcus, Evangelista"} 1 +2024-09-11 09:06:22.385199 2024-09-11 09:06:22.385202 25e361d8-fcf3-4aa9-8fba-cc8ea236f893 {"md5": "c2e3c30173e2912691c50d30c0fe85cf", "pid": "A000119730", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000119730", "source": "RERO"}], "variant_name": ["National Academy of Sciences (U.S.). Committee on Science and Public Policy. Committee on Research in the Life Sciences"], "preferred_name": "National Academy of Sciences (U.S.). Committee on Research in the Life Sciences", "variant_access_point": ["National Academy of Sciences (U.S.). Committee on Science and Public Policy. Committee on Research in the Life Sciences"], "authorized_access_point": "National Academy of Sciences (U.S.). Committee on Research in the Life Sciences"} 1 +2024-09-11 09:06:22.439607 2024-09-11 09:06:22.439611 76514f8c-1de2-480a-be78-9eb0ab8e6a34 {"md5": "f69f7bde037a10021c3502e9ec1ba8a8", "pid": "A000120627", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000120627", "source": "RERO"}], "variant_name": ["Nations Unies. Department of Humanitarian Affairs", "DHA (Department of Humanitarian Affairs, Nations Unies"], "preferred_name": "Nations Unies. Département des affaires humanitaires", "variant_access_point": ["Nations Unies. Department of Humanitarian Affairs", "DHA (Department of Humanitarian Affairs, Nations Unies"], "authorized_access_point": "Nations Unies. Département des affaires humanitaires"} 1 +2024-09-11 09:06:22.497616 2024-09-11 09:06:22.497621 b2fa15d3-3b36-49ad-b11d-259dd2f1ad4e {"md5": "f771e66467e6fdc82a348903ac07142f", "pid": "A000124969", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000124969", "source": "RERO"}], "variant_name": ["Italia. Ministero per i beni culturali e ambientali. Opificio delle pietre dure e laboratori di restauro (Firenze)", "OPD (Opificio delle pietre dure)"], "preferred_name": "Opificio delle pietre dure e laboratori di restauro (Firenze)", "variant_access_point": ["Italia. Ministero per i beni culturali e ambientali. Opificio delle pietre dure e laboratori di restauro (Firenze)", "OPD (Opificio delle pietre dure)"], "authorized_access_point": "Opificio delle pietre dure e laboratori di restauro (Firenze)"} 1 +2024-09-11 09:06:22.55026 2024-09-11 09:06:22.550264 515fd2d6-3cf5-4d86-b61f-9d4169f82705 {"md5": "87d3c19661d617b947dd933256c614a0", "pid": "A000132150", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000132150", "source": "RERO"}], "variant_name": ["Institut pontifical d'archéologie chrétienne (Roma)"], "preferred_name": "Pontificio istituto di archeologia cristiana (Roma)", "variant_access_point": ["Institut pontifical d'archéologie chrétienne (Roma)"], "authorized_access_point": "Pontificio istituto di archeologia cristiana (Roma)"} 1 +2024-09-11 09:06:22.60051 2024-09-11 09:06:22.600515 a7827a95-3add-40a5-ad96-4f01389bfa1f {"md5": "3fe6ce5a7d9dd723571511e3080f287c", "pid": "A000135302", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000135302", "source": "RERO"}], "variant_name": ["Orchestre symphonique de Radio Bâle"], "preferred_name": "Radio Basel. Sinfonie Orchester", "variant_access_point": ["Orchestre symphonique de Radio Bâle"], "authorized_access_point": "Radio Basel. Sinfonie Orchester"} 1 +2024-09-11 09:06:22.650497 2024-09-11 09:06:22.6505 44b1559e-9ce0-4d85-8a2a-75e9c660ed58 {"md5": "55c94db25f1b62e7e5a137dbda9488c2", "pid": "A000136441", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000136441", "source": "RERO"}], "variant_name": ["RSCU (Regional Soil Conservation Unit)"], "preferred_name": "Regional Soil Conservation Unit (Nairobi)", "variant_access_point": ["RSCU (Regional Soil Conservation Unit)"], "authorized_access_point": "Regional Soil Conservation Unit (Nairobi)"} 1 +2024-09-11 09:06:22.702238 2024-09-11 09:06:22.702242 0acaaf8e-df88-41dd-8398-8e56094e472c {"md5": "0c2d9a67a5128d129036566b38e78b4d", "pid": "A000142799", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000142799", "source": "RERO"}], "variant_name": ["Yoshikazu, Sagami"], "preferred_name": "Sagami, Yoshikazu", "variant_access_point": ["Yoshikazu, Sagami"], "authorized_access_point": "Sagami, Yoshikazu"} 1 +2024-09-11 09:06:22.76081 2024-09-11 09:06:22.760815 c725bee7-64c3-4463-b68a-60f39be17680 {"md5": "efe20bc552ab192b7d72b14b856ea470", "pid": "A000144337", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000144337", "source": "RERO"}], "variant_name": ["Sarrazin, Adolphe, Mme", "Boissier, Anna"], "preferred_name": "Sarrazin, Anna", "variant_access_point": ["Sarrazin, Adolphe, Mme", "Boissier, Anna"], "authorized_access_point": "Sarrazin, Anna"} 1 +2024-09-11 09:06:22.818495 2024-09-11 09:06:22.818502 fb109311-3c92-471c-b0f3-794dd8f36078 {"md5": "803fd3fbee43107e4a663528cc0134df", "pid": "A000147059", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000147059", "source": "RERO"}], "variant_name": ["Schweizer Jugend forscht", "Scienza e gioventù", "Fondation la science appelle les jeunes", "Stiftung Schweizer Jugend forscht", "Fondazione scienza e gioventù", "Scienza e giuventetgna", "Fundaziun scienza e giuventetgna"], "preferred_name": "Science appelle les jeunes", "variant_access_point": ["Schweizer Jugend forscht", "Scienza e gioventù", "Fondation la science appelle les jeunes", "Stiftung Schweizer Jugend forscht", "Fondazione scienza e gioventù", "Scienza e giuventetgna", "Fundaziun scienza e giuventetgna"], "authorized_access_point": "Science appelle les jeunes"} 1 +2024-09-11 09:06:22.871227 2024-09-11 09:06:22.871231 59b45902-9352-4962-8ac9-fb615759833a {"md5": "a5cb593fd65123b9e33c1a0cb783a8d7", "pid": "A000152472", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000152472", "source": "RERO"}], "variant_name": ["Orchestre de la Société des concerts du Conservatoire (Paris)", "Conservatoire orchestre (Paris)", "Pariser Conservatoire-Orchester"], "preferred_name": "Société des concerts du Conservatoire (Paris). Orchestre", "variant_access_point": ["Orchestre de la Société des concerts du Conservatoire (Paris)", "Conservatoire orchestre (Paris)", "Pariser Conservatoire-Orchester"], "authorized_access_point": "Société des concerts du Conservatoire (Paris). Orchestre"} 1 +2024-09-11 09:06:23.959857 2024-09-11 09:06:23.95986 b5219bb5-c583-4e36-817e-53cd6a5c6f42 {"md5": "891ba940e2719d36377966a5bde8903f", "pid": "A002912942", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002912942", "source": "RERO"}], "preferred_name": "Aiken, Lewis R", "authorized_access_point": "Aiken, Lewis R"} 1 +2024-09-11 09:06:22.921009 2024-09-11 09:06:22.921013 11935762-f812-4375-81ad-b4773127ce26 {"md5": "636c6c6c599f12d2945ebe51f35ffe47", "pid": "A000152802", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000152802", "source": "RERO"}], "variant_name": ["International Society for Experimental Hematology"], "preferred_name": "Société internationale d'hématologie expérimentale", "variant_access_point": ["International Society for Experimental Hematology"], "authorized_access_point": "Société internationale d'hématologie expérimentale"} 1 +2024-09-11 09:06:22.972284 2024-09-11 09:06:22.972287 bf1b2f25-c8d0-4344-bbbb-4cec7dad1f05 {"md5": "2431967cdfca862eab18da7132714698", "pid": "A000156095", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000156095", "source": "RERO"}], "variant_name": ["Musées de la Ville de Strasbourg", "Musées municipaux (Strasbourg)", "Strasbourg. Musées de la Ville de Strasbourg", "Strasbourg. Musées municipaux", "Musées de Strasbourg"], "preferred_name": "Strasbourg. Direction des musées", "variant_access_point": ["Musées de la Ville de Strasbourg", "Musées municipaux (Strasbourg)", "Strasbourg. Musées de la Ville de Strasbourg", "Strasbourg. Musées municipaux", "Musées de Strasbourg"], "authorized_access_point": "Strasbourg. Direction des musées"} 1 +2024-09-11 09:06:23.024578 2024-09-11 09:06:23.024582 7765f7bc-d2c7-466a-84ba-d8828f3a6c7d {"md5": "d66e96263b3cdc023992790e36bec749", "pid": "A000157703", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000157703", "source": "RERO"}], "variant_name": ["OFEFP (Office fédéral de l'environnement, des forêts et du paysage : Suisse)", "BUWAL (Bundesamt für Umwelt, Wald und Landschaft : Suisse)", "Suisse. Bundesamt für Umwelt, Wald und Landschaft", "UFAFP (Ufficio federale dell'ambiente, delle foreste e del paesaggio : Suisse)", "Suisse. Ufficio federale dell'ambiente, delle foreste e del paesaggio", "Swiss Agency for the Environment, Forests and Landscape", "SAEFL (Swiss Agency for the Environment, Forests and Landscape)", "Suisse. Département fédéral des transports, des communications et de l'énergie. Bundesamt für Umwelt, Wald und Landschaft", "Suisse. Département fédéral des transports, des communications et de l'énergie. Ufficio federale dell'ambiente, delle foreste e del paesaggio", "Suisse. Département fédéral des transports, des communications et de l'énergie. Uffizi federal d'ambient, guaud e cuntrada", "Suisse. Département fédéral des transports, des communications et de l'énergie. Office fédéral de l'environnement, des forêts et du paysage", "Suisse. Département fédéral des transports, des communications et de l'énergie. Swiss Agency for the Environment, Forests and Landscape", "Suisse. Uffizi federal d'ambient, guaud e cuntrada", "Bundesamt für Umwelt, Wald und Landschaft (Suisse)", "Office fédéral de l'environnement, des forêts et du paysage (Suisse)", "UFAGC (Uffizi federal da l'ambient, dals guauds e da la cuntrada : Suisse)", "Ufficio federale dell'ambiente, delle foreste e del paesaggio (Suisse)", "Uffizi federal da l'ambient, dals guauds e da la cuntrada (Suisse)", "Uffizi federal d'ambient, guaud e cuntrada (Suisse)"], "preferred_name": "Suisse. Office fédéral de l'environnement, des forêts et du paysage", "variant_access_point": ["OFEFP (Office fédéral de l'environnement, des forêts et du paysage : Suisse)", "BUWAL (Bundesamt für Umwelt, Wald und Landschaft : Suisse)", "Suisse. Bundesamt für Umwelt, Wald und Landschaft", "UFAFP (Ufficio federale dell'ambiente, delle foreste e del paesaggio : Suisse)", "Suisse. Ufficio federale dell'ambiente, delle foreste e del paesaggio", "Swiss Agency for the Environment, Forests and Landscape", "SAEFL (Swiss Agency for the Environment, Forests and Landscape)", "Suisse. Département fédéral des transports, des communications et de l'énergie. Bundesamt für Umwelt, Wald und Landschaft", "Suisse. Département fédéral des transports, des communications et de l'énergie. Ufficio federale dell'ambiente, delle foreste e del paesaggio", "Suisse. Département fédéral des transports, des communications et de l'énergie. Uffizi federal d'ambient, guaud e cuntrada", "Suisse. Département fédéral des transports, des communications et de l'énergie. Office fédéral de l'environnement, des forêts et du paysage", "Suisse. Département fédéral des transports, des communications et de l'énergie. Swiss Agency for the Environment, Forests and Landscape", "Suisse. Uffizi federal d'ambient, guaud e cuntrada", "Bundesamt für Umwelt, Wald und Landschaft (Suisse)", "Office fédéral de l'environnement, des forêts et du paysage (Suisse)", "UFAGC (Uffizi federal da l'ambient, dals guauds e da la cuntrada : Suisse)", "Ufficio federale dell'ambiente, delle foreste e del paesaggio (Suisse)", "Uffizi federal da l'ambient, dals guauds e da la cuntrada (Suisse)", "Uffizi federal d'ambient, guaud e cuntrada (Suisse)"], "authorized_access_point": "Suisse. Office fédéral de l'environnement, des forêts et du paysage", "biographical_information": ["De 1985 à 1988, d'une part: Suisse. Office fédéral des forêts et de la protection du paysage", "De 1971-1988, d'autre part: Suisse. Office fédéral de la protection de l'environnement", "De 1989 à 2005, devient par fusion: Suisse. Office fédéral de l'environnement, des forêts et du paysage", "Dès 2006: Suisse. Office fédéral de l'environnement"]} 1 +2024-09-11 09:06:23.080842 2024-09-11 09:06:23.080848 097bcc2f-b0b7-47c6-9039-fa8374ca031c {"md5": "b7fc47615f9325f4273748a3777d2523", "pid": "A000171374", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000171374", "source": "RERO"}], "variant_name": ["Veneto. Giunta regionale. Dipartimento per l'informazione"], "preferred_name": "Veneto. Dipartimento per l'informazione", "variant_access_point": ["Veneto. Giunta regionale. Dipartimento per l'informazione"], "authorized_access_point": "Veneto. Dipartimento per l'informazione"} 1 +2024-09-11 09:06:23.138732 2024-09-11 09:06:23.138735 97e4c4a8-5576-40b0-b175-c495588384b0 {"md5": "9bce86e35a83d7860e6e36944089099e", "pid": "A000176762", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000176762", "source": "RERO"}], "variant_name": ["Wills, Lourdes", "Rivera, Lourdes Wills"], "preferred_name": "Wills Rivera, Lourdes", "variant_access_point": ["Wills, Lourdes", "Rivera, Lourdes Wills"], "authorized_access_point": "Wills Rivera, Lourdes"} 1 +2024-09-11 09:06:23.188345 2024-09-11 09:06:23.18835 0fefdff5-40ed-43a8-9430-5346ee788f02 {"md5": "58e9a9c82052ec571b99c179c733880f", "pid": "A000181158", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000181158", "source": "RERO"}], "variant_name": ["Yiwuo, Zhai"], "preferred_name": "Zhai, Yiwuo", "variant_access_point": ["Yiwuo, Zhai"], "authorized_access_point": "Zhai, Yiwuo"} 1 +2024-09-11 09:06:23.238891 2024-09-11 09:06:23.238894 5f53bd3e-daa1-4f8c-8b99-d6cadf1c156e {"md5": "bff8bf460a70443caa48442ee08b4ead", "pid": "A000183008", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000183008", "source": "RERO"}], "variant_name": ["University of California (Berkeley). Regional Oral History Office. Bancroft Library", "University of California (Berkeley). Bancroft Library"], "preferred_name": "Bancroft Library (Berkeley)", "variant_access_point": ["University of California (Berkeley). Regional Oral History Office. Bancroft Library", "University of California (Berkeley). Bancroft Library"], "authorized_access_point": "Bancroft Library (Berkeley)"} 1 +2024-09-11 09:06:23.316871 2024-09-11 09:06:23.316875 22a98b66-12bf-4da3-99a8-c0b6d4da86ef {"md5": "643dc150ac827949b03f697b3a85d313", "pid": "A000183027", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000183027", "source": "RERO"}], "variant_name": ["Deutsche Staatsbibliothek (DDR)", "Staatsbibliothek (DDR) (Berlin-Ost)", "Staatsbibliothek (DDR)"], "preferred_name": "Deutsche Staatsbibliothek (Berlin)", "variant_access_point": ["Deutsche Staatsbibliothek (DDR)", "Staatsbibliothek (DDR) (Berlin-Ost)", "Staatsbibliothek (DDR)"], "authorized_access_point": "Deutsche Staatsbibliothek (Berlin)", "biographical_information": ["De 1918 à 1945: Preussische Staatsbibliothek", "Avant 1918: Königliche Bibliothek (Preussen)", "De 1945 à 1961: Westdeutsche Bibliothek", "De 1954 au 31.12.1991: Deutsche Staatsbibliothek (DDR)", "De 1962 au 31.12.1991: Staatsbibliothek Preussischer Kulturbesitz (BRD)", "De 1945 à 1954: Öffentliche Wissenschaftliche Bibliothek (DDR)", "Dès le 1.1.1992: Staatsbibliothek (Berlin)"]} 1 +2024-09-11 09:06:23.37384 2024-09-11 09:06:23.373845 cb84f29e-4502-445a-9b82-bf853964980b {"md5": "7421bed1922d18573fd246d1b749b944", "pid": "A000184256", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000184256", "source": "RERO"}], "preferred_name": "Isabella Stewart Gardner Museum (Boston)", "authorized_access_point": "Isabella Stewart Gardner Museum (Boston)"} 1 +2024-09-11 09:06:23.42427 2024-09-11 09:06:23.424274 ca179893-6bb6-4c2b-b69d-499dcd71de31 {"md5": "60c48245cade4e37b19bb298664d7277", "pid": "A000185690", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000185690", "source": "RERO"}], "preferred_name": "Musée Crozatier (Puy-en-Velay)", "authorized_access_point": "Musée Crozatier (Puy-en-Velay)"} 1 +2024-09-11 09:06:24.028009 2024-09-11 09:06:24.028012 898ff846-9e68-4509-a0df-cd18f304a0c0 {"md5": "2ef4033d82e9269989da462a4b88d6cb", "pid": "A002916477", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002916477", "source": "RERO"}], "preferred_name": "Albuschkat, Harald", "authorized_access_point": "Albuschkat, Harald"} 1 +2024-09-11 09:06:23.474341 2024-09-11 09:06:23.474344 55620ea2-758a-4506-81df-65048f7791d5 {"md5": "732ae59d6a04e546f763265d34867940", "pid": "A000187213", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000187213", "source": "RERO"}], "variant_name": ["Institute of East Asian Studies"], "preferred_name": "University of California (Berkeley). Institute of East Asian Studies", "variant_access_point": ["Institute of East Asian Studies"], "authorized_access_point": "University of California (Berkeley). Institute of East Asian Studies"} 1 +2024-09-11 09:06:23.529546 2024-09-11 09:06:23.529551 ae81ca0f-bd51-4011-994d-a236931f3e8c {"md5": "2f6b5d9889e066e5909094fedcea03a4", "pid": "A000187557", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000187557", "source": "RERO"}], "variant_name": ["Istituto di filologia classica (Bologna)"], "preferred_name": "Università di Bologna. Istituto di filologia classica", "variant_access_point": ["Istituto di filologia classica (Bologna)"], "authorized_access_point": "Università di Bologna. Istituto di filologia classica"} 1 +2024-09-11 09:06:23.581402 2024-09-11 09:06:23.581406 a13a42ec-d70c-4972-860d-45b8f1bd5aa2 {"md5": "4404dccf7036ca829653a4a8b56347ce", "pid": "A000189570", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000189570", "source": "RERO"}], "variant_name": ["Law of the Sea Institute (University of Hawaii (Honolulu))", "University of Hawaii (Honolulu). William S. Richardson School of Law. Law of the Sea Institute"], "preferred_name": "University of Hawaii (Honolulu). Law of the Sea Institute", "variant_access_point": ["Law of the Sea Institute (University of Hawaii (Honolulu))", "University of Hawaii (Honolulu). William S. Richardson School of Law. Law of the Sea Institute"], "authorized_access_point": "University of Hawaii (Honolulu). Law of the Sea Institute", "biographical_information": ["Law of the Sea Institute fut lié à l'Université of Rhode Island jusqu'à 1977? et depuis à l'Université de Hawaii, William S. Richardson School of Law", "Avant 1977: University of Rhode Island. Law of the Sea Institute", "Dès 1977: University of Hawaii. Law of the Sea Institute"]} 1 +2024-09-11 09:06:23.634041 2024-09-11 09:06:23.634045 84d78f45-0e51-48da-9699-2223042bad66 {"md5": "5c3600b94f63b789f96a90d21113fa27", "pid": "A000190495", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000190495", "source": "RERO"}], "variant_name": ["Institute of Obstetrics and Gynaecology (London)"], "preferred_name": "University of London. Institute of Obstetrics and Gynaecology", "variant_access_point": ["Institute of Obstetrics and Gynaecology (London)"], "authorized_access_point": "University of London. Institute of Obstetrics and Gynaecology"} 1 +2024-09-11 09:06:23.682936 2024-09-11 09:06:23.682939 22f53321-da32-41b9-ad53-d1d181b4c4e2 {"md5": "d6f29d8b9d11977eb8badaff06c1fa9b", "pid": "A000193226", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000193226", "source": "RERO"}], "variant_name": ["Universidad Nacional de Rosario. Facultad de Ciencias Exactas e Ingeniería. Instituto de Matemática Beppo Levi", "Instituto de Matemática Beppo Levi (Rosario, Argentina)"], "preferred_name": "Universidad Nacional de Rosario. Instituto de Matemática Beppo Levi", "variant_access_point": ["Universidad Nacional de Rosario. Facultad de Ciencias Exactas e Ingeniería. Instituto de Matemática Beppo Levi", "Instituto de Matemática Beppo Levi (Rosario, Argentina)"], "authorized_access_point": "Universidad Nacional de Rosario. Instituto de Matemática Beppo Levi"} 1 +2024-09-11 09:06:23.73726 2024-09-11 09:06:23.737265 5858a998-ce7a-4e23-b5ea-f061dd649689 {"md5": "af3ba8de1a2ad9980589d2569cf8f1e4", "pid": "A000193381", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000193381", "source": "RERO"}], "variant_name": ["Università di Salerno"], "preferred_name": "Università degli studi di Salerno", "variant_access_point": ["Università di Salerno"], "authorized_access_point": "Università degli studi di Salerno"} 1 +2024-09-11 09:06:23.791105 2024-09-11 09:06:23.791109 e6d5fb41-7141-4c74-89a3-b3a18e11b0e1 {"md5": "9253034c4fbfc4308579539bdc2bcb4c", "pid": "A000193605", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000193605", "source": "RERO"}], "variant_name": ["Seminario de Antropología Americana (Sevilla)", "Universidad de Sevilla. Facultad de Filosofía y Letras. Departamento de Antropología y Etnología de América. Seminario de Antropología Americana", "Universidad de Sevilla. Departamento de Antropología y Etnología de América. Seminario de Antropología Americana"], "preferred_name": "Universidad de Sevilla. Seminario de Antropología Americana", "variant_access_point": ["Seminario de Antropología Americana (Sevilla)", "Universidad de Sevilla. Facultad de Filosofía y Letras. Departamento de Antropología y Etnología de América. Seminario de Antropología Americana", "Universidad de Sevilla. Departamento de Antropología y Etnología de América. Seminario de Antropología Americana"], "authorized_access_point": "Universidad de Sevilla. Seminario de Antropología Americana"} 1 +2024-09-11 09:06:23.843828 2024-09-11 09:06:23.843832 c6c28665-1037-43a0-bac9-9c5d8fede271 {"md5": "796ffd1e8d1c296cf0c2280bf7b66e8d", "pid": "A000194499", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A000194499", "source": "RERO"}], "variant_name": ["Universidad Veracruzana. Instituto de Investigaciones Humanísticas. Centro de Investigaciones Lingüístico-Literarias", "Centro de Investigaciones Lingüístico-Literarias (Xalapa)", "CILL (Centro de Investigaciones Lingüístico-Literarias : Xalapa)"], "preferred_name": "Universidad Veracruzana. Centro de Investigaciones Lingüístico-Literarias", "variant_access_point": ["Universidad Veracruzana. Instituto de Investigaciones Humanísticas. Centro de Investigaciones Lingüístico-Literarias", "Centro de Investigaciones Lingüístico-Literarias (Xalapa)", "CILL (Centro de Investigaciones Lingüístico-Literarias : Xalapa)"], "authorized_access_point": "Universidad Veracruzana. Centro de Investigaciones Lingüístico-Literarias", "biographical_information": ["Cannot determine relationship to the University's Instituto de Investigaciones Literarias y Semiolingüísticas; and to its Instituto de Investigaciones Lingüístico-Literarias"]} 1 +2024-09-11 09:06:23.905354 2024-09-11 09:06:23.905358 c555e9f9-f7ff-4227-9dfd-cd1bc9297e7f {"md5": "9512b145675fd864b0907f3341abf312", "pid": "A002910761", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002910761", "source": "RERO"}], "preferred_name": "Agazzini, Michel", "authorized_access_point": "Agazzini, Michel"} 1 +2024-09-11 09:06:24.079887 2024-09-11 09:06:24.079893 ab4f40f1-ea1e-4e5a-aef4-29f5922049a2 {"md5": "cc92c0bea19ef7ae9314a3605c1a0e0d", "pid": "A002922214", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002922214", "source": "RERO"}], "preferred_name": "Altmeyer, Monika", "authorized_access_point": "Altmeyer, Monika"} 1 +2024-09-11 09:06:24.133184 2024-09-11 09:06:24.133189 9c5d9b67-b15e-4f5c-bade-82d1b55f84d6 {"md5": "bfd793833e595cd19bf198d81835f881", "pid": "A002922621", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002922621", "source": "RERO"}], "preferred_name": "Alver, Bente Gullveig", "authorized_access_point": "Alver, Bente Gullveig"} 1 +2024-09-11 09:06:24.195339 2024-09-11 09:06:24.195344 97ba4e28-b9ad-4ed4-b53e-78934fb1cfbf {"md5": "9b93ea8b112bde5425fcebc08e3857fd", "pid": "A002928445", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002928445", "source": "RERO"}], "preferred_name": "Anderson, Mike", "authorized_access_point": "Anderson, Mike"} 1 +2024-09-11 09:06:24.245061 2024-09-11 09:06:24.245066 e43613d5-7f3f-4a2d-9ff6-ab6f8413293b {"md5": "8470119e154920d8eeee1e1ea38611a3", "pid": "A002929473", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002929473", "source": "RERO"}], "preferred_name": "Andreu, Rafael", "authorized_access_point": "Andreu, Rafael"} 1 +2024-09-11 09:06:24.301522 2024-09-11 09:06:24.301525 500f235c-641b-4b7d-9a15-4371924c6b16 {"md5": "c96b5067c57a722a0d7d1091328b3c0a", "pid": "A002931456", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002931456", "source": "RERO"}], "preferred_name": "Anjak, Faez", "authorized_access_point": "Anjak, Faez"} 1 +2024-09-11 09:06:24.350981 2024-09-11 09:06:24.350985 b759012c-4fc9-40bf-9996-383f47a64f02 {"md5": "bd28ab5d2543bb8f46a82352eeab9b6e", "pid": "A002933956", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002933956", "source": "RERO"}], "preferred_name": "Apicella, Vincenzo", "authorized_access_point": "Apicella, Vincenzo"} 1 +2024-09-11 09:06:24.406402 2024-09-11 09:06:24.406405 55b08063-422f-4b29-8542-51da16f87a84 {"md5": "67a79cbc366c0cce7f55a6ab054a94f8", "pid": "A002939215", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002939215", "source": "RERO"}], "preferred_name": "Arnaud, Hélène", "authorized_access_point": "Arnaud, Hélène"} 1 +2024-09-11 09:06:24.462024 2024-09-11 09:06:24.462028 049ffe26-3fbd-4aff-9934-13c222030931 {"md5": "55ff901a2148f009ebfcd41221253080", "pid": "A002939817", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002939817", "source": "RERO"}], "preferred_name": "Arnold, Gregory C", "authorized_access_point": "Arnold, Gregory C"} 1 +2024-09-11 09:06:24.534442 2024-09-11 09:06:24.534446 417b9b53-8d9c-4731-a781-b3f8e920eb03 {"md5": "96b8b0746d453d27c733eeb49ea188d4", "pid": "A002940438", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002940438", "source": "RERO"}], "preferred_name": "Aronoff, Mark", "authorized_access_point": "Aronoff, Mark"} 1 +2024-09-11 09:06:24.598518 2024-09-11 09:06:24.598522 4d2d1b0c-cef1-42f6-8c2c-803a57da4da3 {"md5": "a3ae9c7a4305c26105f0df13a2c0200a", "pid": "A002940495", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002940495", "source": "RERO"}], "preferred_name": "Aronson, Robert H", "authorized_access_point": "Aronson, Robert H"} 1 +2024-09-11 09:06:24.660927 2024-09-11 09:06:24.660932 3e95759d-bc10-43d0-bb27-e5ea198c7cb8 {"md5": "1384a23cbd120feaff21e0c60896eba6", "pid": "A002941414", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002941414", "source": "RERO"}], "preferred_name": "Artioli, Umberto", "authorized_access_point": "Artioli, Umberto"} 1 +2024-09-11 09:06:24.726694 2024-09-11 09:06:24.726698 35943490-eab5-4a70-ae81-9246f223cd28 {"md5": "1c9a687557b53a058cf139bef893b2dc", "pid": "A002941440", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002941440", "source": "RERO"}], "preferred_name": "Artl, Gerhard", "authorized_access_point": "Artl, Gerhard"} 1 +2024-09-11 09:06:24.783726 2024-09-11 09:06:24.783729 300b153a-0b55-4781-aa7a-6b98e44963e9 {"md5": "34686190cffcf91304d28ed744b44089", "pid": "A002942098", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002942098", "source": "RERO"}], "preferred_name": "Aschengreen, Franz", "authorized_access_point": "Aschengreen, Franz"} 1 +2024-09-11 09:06:24.840973 2024-09-11 09:06:24.840977 3fe7f14a-57a3-44e4-b0d0-e7dbdbdc94fb {"md5": "98ca4f55d3a8834a92c726e025dd4f64", "pid": "A002944324", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002944324", "source": "RERO"}], "preferred_name": "Association des amis de Marius Borgeaud (Lausanne)", "authorized_access_point": "Association des amis de Marius Borgeaud (Lausanne)"} 1 +2024-09-11 09:06:24.891159 2024-09-11 09:06:24.891164 962e1fbe-5bb5-47c4-9038-dc5e96f43fba {"md5": "ceea7d888dd69bb8380aed01200790f7", "pid": "A002947740", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002947740", "source": "RERO"}], "preferred_name": "Association pyrénéenne pour l'échange des plantes", "authorized_access_point": "Association pyrénéenne pour l'échange des plantes"} 1 +2024-09-11 09:06:24.944587 2024-09-11 09:06:24.94459 fb461f8e-a8b9-44e8-a0bd-6618f5b4c4c6 {"md5": "13454720693805ccea07f31d4c24199d", "pid": "A002953651", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002953651", "source": "RERO"}], "preferred_name": "Avdotine, L.N", "authorized_access_point": "Avdotine, L.N"} 1 +2024-09-11 09:06:24.998274 2024-09-11 09:06:24.998279 76bb7f98-5340-4121-8fb6-414b776f3038 {"md5": "c26289e98eb2fad5f98681eeea9e6b74", "pid": "A002955901", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002955901", "source": "RERO"}], "preferred_name": "Babb, Rober", "authorized_access_point": "Babb, Rober"} 1 +2024-09-11 09:06:25.048952 2024-09-11 09:06:25.048957 5f5b9684-4470-4a40-8f49-db2381dabafe {"md5": "0f0ffb476523c0bdc56b0a42fd641d68", "pid": "A002961093", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002961093", "source": "RERO"}], "preferred_name": "Baillargeon, Guy", "authorized_access_point": "Baillargeon, Guy"} 1 +2024-09-11 09:06:25.112296 2024-09-11 09:06:25.1123 79573700-7766-49e5-ba7b-08192acf1059 {"md5": "25a2baa9a98c2470007ae012fb637d2a", "pid": "A002963001", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002963001", "source": "RERO"}], "preferred_name": "Baldi, Marialuisa", "authorized_access_point": "Baldi, Marialuisa"} 1 +2024-09-11 09:06:25.175581 2024-09-11 09:06:25.175585 778ac0fb-44d3-4b6c-9a79-b51fc7c8bc45 {"md5": "8026c7256a8736674e08895662c24b36", "pid": "A002966255", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002966255", "source": "RERO"}], "preferred_name": "Banks, Tony", "authorized_access_point": "Banks, Tony"} 1 +2024-09-11 09:06:25.244694 2024-09-11 09:06:25.244698 d9754c71-ca37-4d5f-adc2-4cad88aaf047 {"md5": "6007473a1005a6555cbc79f08eedafc0", "pid": "A002968314", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002968314", "source": "RERO"}], "preferred_name": "Barbizet, Jacques", "authorized_access_point": "Barbizet, Jacques"} 1 +2024-09-11 09:06:25.30331 2024-09-11 09:06:25.303313 de43fc4a-12ec-47fd-91cd-974c652d894c {"md5": "06d314fd237fa0c89d3490d07ed482ea", "pid": "A002969933", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002969933", "source": "RERO"}], "preferred_name": "Barlow, Charles F", "authorized_access_point": "Barlow, Charles F"} 1 +2024-09-11 09:06:25.355734 2024-09-11 09:06:25.355739 622f5084-a415-49d3-9537-c26af788e107 {"md5": "1c6016f7543be3eb19ba58a360d26d95", "pid": "A002971659", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002971659", "source": "RERO"}], "preferred_name": "Barrett-Ayres, Reginald", "authorized_access_point": "Barrett-Ayres, Reginald"} 1 +2024-09-11 09:06:25.415188 2024-09-11 09:06:25.415193 4b65ed8b-e0b8-4e63-89d2-d5718938e10e {"md5": "8685fe7257409ad86af2f9e3fa1ec17b", "pid": "A002979038", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002979038", "source": "RERO"}], "preferred_name": "Baur, J", "authorized_access_point": "Baur, J"} 1 +2024-09-11 09:06:25.46855 2024-09-11 09:06:25.468554 761ec120-e5c7-4021-be0f-0f61642d4f0f {"md5": "cda6e4e9e0c7160e1a6347951b02184d", "pid": "A002979177", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002979177", "source": "RERO"}], "preferred_name": "Bauschke, Erhard", "authorized_access_point": "Bauschke, Erhard"} 1 +2024-09-11 09:06:25.522514 2024-09-11 09:06:25.522518 22df092d-1398-403e-ad38-f3ac08221b64 {"md5": "f91b2c773ef61e7a254bfcf8d9af67da", "pid": "A002981392", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002981392", "source": "RERO"}], "preferred_name": "Beaujeu, Claude-Marie", "authorized_access_point": "Beaujeu, Claude-Marie"} 1 +2024-09-11 09:06:25.577752 2024-09-11 09:06:25.577756 4758e651-fb76-4345-9a0d-80970535a7fa {"md5": "e05b8159b1014b04d485a95127266d8d", "pid": "A002981924", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002981924", "source": "RERO"}], "preferred_name": "Becaïa, Melchisedec", "authorized_access_point": "Becaïa, Melchisedec"} 1 +2024-09-11 09:06:25.641446 2024-09-11 09:06:25.64145 d6496a23-8a99-4df3-9033-03bdcd182e82 {"md5": "69bd437f5d2cbdd42aed2db57ca97cc8", "pid": "A002992084", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002992084", "source": "RERO"}], "preferred_name": "Benzoni, Gino", "authorized_access_point": "Benzoni, Gino"} 1 +2024-09-11 09:06:25.719796 2024-09-11 09:06:25.719802 828699d5-66a1-4003-8969-24621d3be6f8 {"md5": "0ce8a4535c36743dc51607e5116146a8", "pid": "A002992522", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002992522", "source": "RERO"}], "preferred_name": "Berczy, M", "authorized_access_point": "Berczy, M"} 1 +2024-09-11 09:06:25.797432 2024-09-11 09:06:25.797437 81686704-68d8-44c1-853b-b4924dc66154 {"md5": "0a6f410951ea841636b68b4f7fe4248b", "pid": "A002993107", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A002993107", "source": "RERO"}], "preferred_name": "Berg, Stephan", "authorized_access_point": "Berg, Stephan"} 1 +2024-09-11 09:06:25.847985 2024-09-11 09:06:25.84799 1aaafc19-1e1c-4e2e-b7b4-d2dd45a6aab3 {"md5": "d72958c2036045ae398df855edd508f7", "pid": "A003003384", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003003384", "source": "RERO"}], "preferred_name": "Bharucha, Janine", "authorized_access_point": "Bharucha, Janine"} 1 +2024-09-11 09:06:25.902205 2024-09-11 09:06:25.902208 bec0a1d9-a59f-4c11-8cbb-7616bcb32faa {"md5": "feb7e204aaa3d5a1c16643b700c82f3f", "pid": "A003005276", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003005276", "source": "RERO"}], "preferred_name": "Bielfeld, Horst", "authorized_access_point": "Bielfeld, Horst"} 1 +2024-09-11 09:06:25.953784 2024-09-11 09:06:25.953789 3c7e0d24-d46f-4f5f-9d50-3c9844bcaa7e {"md5": "ba5713b7977b16f8c2b2269fad71d027", "pid": "A003005486", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003005486", "source": "RERO"}], "preferred_name": "Bienkowski, Mishka", "authorized_access_point": "Bienkowski, Mishka"} 1 +2024-09-11 09:06:26.008742 2024-09-11 09:06:26.008747 89ec09df-c65e-4b5e-8fe4-dfd74e77f50d {"md5": "0afcf1184214046f490a8e34ba80836f", "pid": "A003010065", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003010065", "source": "RERO"}], "preferred_name": "Bitat, Amor", "authorized_access_point": "Bitat, Amor"} 1 +2024-09-11 09:06:26.060495 2024-09-11 09:06:26.0605 bc8fbbba-157c-4b6f-aa4f-ef399285dc3b {"md5": "67e13bcd3d83cece58253c2a40395656", "pid": "A003013653", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003013653", "source": "RERO"}], "preferred_name": "Bleinroth, Heinz-Christel", "authorized_access_point": "Bleinroth, Heinz-Christel"} 1 +2024-09-11 09:06:26.11072 2024-09-11 09:06:26.110725 35c85637-7fe5-488a-9eec-3d8cfafd360b {"md5": "6d9b6e69f422185862b6c90219feac70", "pid": "A003017126", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003017126", "source": "RERO"}], "variant_name": ["Meinardus, Dietlind Bock-"], "preferred_name": "Bock-Meinardus, Dietlind", "variant_access_point": ["Meinardus, Dietlind Bock-"], "authorized_access_point": "Bock-Meinardus, Dietlind"} 1 +2024-09-11 09:06:26.163613 2024-09-11 09:06:26.163618 52b3e893-a94c-4f6e-8dd3-bea6347cd3db {"md5": "3ccae192d0fb4ac0b93eaa10f43022b0", "pid": "A003019667", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003019667", "source": "RERO"}], "preferred_name": "Boillat, Christian", "authorized_access_point": "Boillat, Christian"} 1 +2024-09-11 09:06:26.220871 2024-09-11 09:06:26.220874 282b8c48-99c9-460e-bde8-3fe0bee6306d {"md5": "bcf037613531d968604e3fcd07c94a49", "pid": "A003020410", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003020410", "source": "RERO"}], "preferred_name": "Bokaleff, Hélène", "authorized_access_point": "Bokaleff, Hélène"} 1 +2024-09-11 09:06:26.272947 2024-09-11 09:06:26.272951 508fc366-565d-4114-888c-d43f86fe19e7 {"md5": "953f7bdcd4049d197ffac9d37f886c9c", "pid": "A003021395", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003021395", "source": "RERO"}], "preferred_name": "Bologna. Assessorato alla cultura", "authorized_access_point": "Bologna. Assessorato alla cultura"} 1 +2024-09-11 09:06:26.326324 2024-09-11 09:06:26.326328 0ed860bd-9293-4091-a93b-ff4564c6718d {"md5": "696605b5194cf000290f43accce55b63", "pid": "A003024732", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003024732", "source": "RERO"}], "preferred_name": "Bonín, José María", "authorized_access_point": "Bonín, José María"} 1 +2024-09-11 09:06:26.380165 2024-09-11 09:06:26.380169 127abfa4-0093-46dc-94d8-ce5cccea7941 {"md5": "18ff81053fbbc69ee95c0c6fcac50621", "pid": "A003028730", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003028730", "source": "RERO"}], "preferred_name": "Bosshard, Heinrich", "authorized_access_point": "Bosshard, Heinrich"} 1 +2024-09-11 09:06:26.436727 2024-09-11 09:06:26.436731 4642975d-7047-4a01-893c-845fdb0dfcdf {"md5": "d971d42beaed99f595100127e7610f38", "pid": "A003031223", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003031223", "source": "RERO"}], "preferred_name": "Bouligand, Yves", "authorized_access_point": "Bouligand, Yves"} 1 +2024-09-11 09:06:26.492548 2024-09-11 09:06:26.492554 307e046d-eef6-42c1-b8fb-5ec5ff05bb46 {"md5": "89b83186d9cfaa0641af9888077e47cd", "pid": "A003037757", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003037757", "source": "RERO"}], "preferred_name": "Brandes-Druba, Bernd", "authorized_access_point": "Brandes-Druba, Bernd"} 1 +2024-09-11 09:06:26.548117 2024-09-11 09:06:26.548122 8a7db173-63a6-4f31-b51c-57db18b17a14 {"md5": "b528a66cc1fc7a6d93d0d08c100e25a8", "pid": "A003037886", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003037886", "source": "RERO"}], "preferred_name": "Brandolin, Mario", "authorized_access_point": "Brandolin, Mario"} 1 +2024-09-11 09:06:26.607781 2024-09-11 09:06:26.607785 ba7a7cff-2ac2-45c3-9335-58a10097a37a {"md5": "a6d7f1e15101c0e58b5fdda4cc0cb9e9", "pid": "A003042099", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003042099", "source": "RERO"}], "preferred_name": "Bretécher, Claire", "authorized_access_point": "Bretécher, Claire"} 1 +2024-09-11 09:06:26.659134 2024-09-11 09:06:26.659137 609a641d-d107-40a0-96d4-5117a43115ff {"md5": "7ccf51b3939a793368b8884a67ef83fc", "pid": "A003042520", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003042520", "source": "RERO"}], "preferred_name": "Breznitz, Sholomo", "authorized_access_point": "Breznitz, Sholomo"} 1 +2024-09-11 09:06:26.709548 2024-09-11 09:06:26.709553 0e4e7ae1-414f-4b87-b66a-9c100315c0a3 {"md5": "690cc2101fa2778d879d47a4560ab9ed", "pid": "A003048129", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003048129", "source": "RERO"}], "preferred_name": "Brown, George Isaac", "authorized_access_point": "Brown, George Isaac"} 1 +2024-09-11 09:06:26.764008 2024-09-11 09:06:26.764012 27aef18c-0d07-43f9-8b95-0bf37f90e29d {"md5": "1ea987c0d0c73e7242a1cd62150df762", "pid": "A003050459", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003050459", "source": "RERO"}], "preferred_name": "Brunel, Bernard", "authorized_access_point": "Brunel, Bernard"} 1 +2024-09-11 09:06:26.816687 2024-09-11 09:06:26.81669 4bc56d19-1bfb-4d10-b8df-89e1dcf0cbba {"md5": "2addbd4f06fcdc290ddd8ff33e16042f", "pid": "A003055215", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003055215", "source": "RERO"}], "preferred_name": "Buenemann, Gerd", "authorized_access_point": "Buenemann, Gerd"} 1 +2024-09-11 09:06:26.881414 2024-09-11 09:06:26.881418 1dae8f9d-21bd-4462-b9b2-8258a1e7a6a9 {"md5": "f636fcadbebeba651e1178dd2974a69e", "pid": "A003055423", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003055423", "source": "RERO"}], "preferred_name": "Bufalino, Gesualdo", "authorized_access_point": "Bufalino, Gesualdo"} 1 +2024-09-11 09:06:26.94889 2024-09-11 09:06:26.948895 5ddbfb53-0325-4861-ba93-f61e7da88a0a {"md5": "b973e1fffe6df33cb3c3072e65c19d9e", "pid": "A003061439", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003061439", "source": "RERO"}], "preferred_name": "Buss, Samuel R", "authorized_access_point": "Buss, Samuel R"} 1 +2024-09-11 09:06:27.022225 2024-09-11 09:06:27.022228 ec67545e-4b7c-4266-9c25-f02b309e1013 {"md5": "c904e251292c3bcab19151168ba848be", "pid": "A003061455", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003061455", "source": "RERO"}], "preferred_name": "Bussani, Giacomo Francesco", "authorized_access_point": "Bussani, Giacomo Francesco"} 1 +2024-09-11 09:06:27.100936 2024-09-11 09:06:27.100939 96dd3c49-3d1a-42bc-ae18-ef3679e659af {"md5": "b01ad0bfc1c7bba06dcefac8fba18018", "pid": "A003063890", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003063890", "source": "RERO"}], "preferred_name": "Böckmann, Ludwig", "authorized_access_point": "Böckmann, Ludwig"} 1 +2024-09-11 09:06:27.15433 2024-09-11 09:06:27.154333 e913e789-daf4-4e8b-8868-17b71324bab6 {"md5": "d27147b96402276f0715bd2f1f10fbfa", "pid": "A003064605", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003064605", "source": "RERO"}], "preferred_name": "Böttcher, Albrecht", "authorized_access_point": "Böttcher, Albrecht"} 1 +2024-09-11 09:06:27.20526 2024-09-11 09:06:27.205264 e896a922-289a-428e-aca1-800d4593ad0c {"md5": "caf5d901abff108b7dc5cca4200813fa", "pid": "A003065345", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003065345", "source": "RERO"}], "preferred_name": "Bürer, Catherine", "authorized_access_point": "Bürer, Catherine"} 1 +2024-09-11 09:06:27.256485 2024-09-11 09:06:27.256488 0dc79655-fa3b-464c-8c04-3687a64e1c16 {"md5": "c5fe3768f5960380dd946d91ffedf42a", "pid": "A003066204", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003066204", "source": "RERO"}], "preferred_name": "Béguin, Christine", "authorized_access_point": "Béguin, Christine"} 1 +2024-09-11 09:06:27.321969 2024-09-11 09:06:27.321974 2225716f-80fb-4aa1-91f2-b7b3b500136a {"md5": "16cf0315eb06fee057b02387113e1707", "pid": "A003077749", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003077749", "source": "RERO"}], "preferred_name": "Carlson, Sven H", "authorized_access_point": "Carlson, Sven H"} 1 +2024-09-11 09:06:27.389454 2024-09-11 09:06:27.389458 d095370a-500b-40ea-bc5b-f67389d1bfea {"md5": "8beb5f0df98a12d30d75b5a0a4f04a7a", "pid": "A003080186", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003080186", "source": "RERO"}], "preferred_name": "Carter, Bob", "authorized_access_point": "Carter, Bob"} 1 +2024-09-11 09:06:27.443552 2024-09-11 09:06:27.443557 542f702c-b7a5-4a5d-9643-fd72c4247dc5 {"md5": "154c6e54913d6f1e38fc6ddee636586a", "pid": "A003082787", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003082787", "source": "RERO"}], "preferred_name": "Castella, Georges", "authorized_access_point": "Castella, Georges"} 1 +2024-09-11 09:06:27.502971 2024-09-11 09:06:27.502974 b3b46c77-6e3d-4fc6-9f58-8a9ed14fd729 {"md5": "c73d67782057e8c9c7dd080b06feb273", "pid": "A003084316", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003084316", "source": "RERO"}], "preferred_name": "Cattaneo, Aldo", "authorized_access_point": "Cattaneo, Aldo"} 1 +2024-09-11 09:06:27.559436 2024-09-11 09:06:27.55944 09eb33a8-ad75-4549-8038-f9faa5e65ea0 {"md5": "64f044400a1f90a7043285ed58d2aadc", "pid": "A003085874", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003085874", "source": "RERO"}], "preferred_name": "Cazenave, Philippe", "authorized_access_point": "Cazenave, Philippe"} 1 +2024-09-11 09:06:27.634004 2024-09-11 09:06:27.634008 521e2377-5a5b-4b04-b84e-b9fbc9027e3d {"md5": "ef4c03a1186d21264d33cb013eef57af", "pid": "A003086097", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003086097", "source": "RERO"}], "preferred_name": "Ceccaroni, Sandro", "authorized_access_point": "Ceccaroni, Sandro"} 1 +2024-09-11 09:06:27.695557 2024-09-11 09:06:27.695562 105dc545-85aa-4873-a941-568db94efe38 {"md5": "c665894370ed566d3647be12f157f755", "pid": "A003086874", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003086874", "source": "RERO"}], "preferred_name": "Center for International Media Research (Netherlands)", "authorized_access_point": "Center for International Media Research (Netherlands)"} 1 +2024-09-11 09:06:27.758711 2024-09-11 09:06:27.758715 fe140ac5-df9c-4d3e-8a26-7eae457ee891 {"md5": "7cb66cd36e7f861baa338bb5e55acfcc", "pid": "A003089906", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003089906", "source": "RERO"}], "preferred_name": "Centro di cultura e storia amalfitana (Amalfi)", "authorized_access_point": "Centro di cultura e storia amalfitana (Amalfi)"} 1 +2024-09-11 09:06:27.808768 2024-09-11 09:06:27.808772 3dc209bf-9d8f-46e4-bdef-ba6e4311c548 {"md5": "7cf537d505c62dc79e4ac507ee160f8a", "pid": "A003093098", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003093098", "source": "RERO"}], "preferred_name": "Chalmers, Deirdre", "authorized_access_point": "Chalmers, Deirdre"} 1 +2024-09-11 09:06:27.860138 2024-09-11 09:06:27.860144 a55df433-be9d-4f18-9578-e3032b47c713 {"md5": "657619fded5535074c2770e262bf2fad", "pid": "A003093717", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003093717", "source": "RERO"}], "preferred_name": "Chambre syndicale des sociétés d'études et de conseils. Section Organisation et formation (Paris)", "authorized_access_point": "Chambre syndicale des sociétés d'études et de conseils. Section Organisation et formation (Paris)"} 1 +2024-09-11 09:06:27.92176 2024-09-11 09:06:27.921764 ce7b6518-baf2-460e-8c7b-c93b401da7f9 {"md5": "d58affcaeb57d205d6b909d2214a3454", "pid": "A003094768", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003094768", "source": "RERO"}], "preferred_name": "Chang, Tien Ming", "authorized_access_point": "Chang, Tien Ming"} 1 +2024-09-11 09:06:27.973842 2024-09-11 09:06:27.973845 9584bf2d-4c59-4891-a332-6df821778d3d {"md5": "b1ed346cd0834b722e9f193bb78855d9", "pid": "A003094880", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003094880", "source": "RERO"}], "preferred_name": "Chansler, John F", "authorized_access_point": "Chansler, John F"} 1 +2024-09-11 09:06:28.031466 2024-09-11 09:06:28.03147 aac9ee41-b637-4896-a461-b5f0564d0ad4 {"md5": "35aa14cf176388e588e8d0600e0cbf99", "pid": "A003096778", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003096778", "source": "RERO"}], "preferred_name": "Charnin Mueller, Rena", "authorized_access_point": "Charnin Mueller, Rena"} 1 +2024-09-11 09:06:28.083682 2024-09-11 09:06:28.083685 fb42561a-d9ad-4610-a6fc-1f6d0038d279 {"md5": "cbd7ee5e7c45bc3916384bab242af653", "pid": "A003098919", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003098919", "source": "RERO"}], "preferred_name": "Chavance, René", "authorized_access_point": "Chavance, René"} 1 +2024-09-11 09:06:28.134554 2024-09-11 09:06:28.134559 1eaacdce-9243-4586-9e8e-0c7dcd89d52f {"md5": "c5da88bb151a2814c00f43be0969ed29", "pid": "A003099881", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003099881", "source": "RERO"}], "preferred_name": "Chen, Selma Shu-Mei", "authorized_access_point": "Chen, Selma Shu-Mei"} 1 +2024-09-11 09:06:28.188027 2024-09-11 09:06:28.188031 8f33b897-e1c6-47ef-93f1-c0da592f71f9 {"md5": "79617b7ec4cc550db44f46b7695f35d4", "pid": "A003100597", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003100597", "source": "RERO"}], "preferred_name": "Cherry, Steven", "authorized_access_point": "Cherry, Steven"} 1 +2024-09-11 09:06:28.237526 2024-09-11 09:06:28.237528 ff2df582-13d5-4194-bfc9-78de91c58ca1 {"md5": "e48e117dd7c38cccf05f90c557d70d5d", "pid": "A003101806", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003101806", "source": "RERO"}], "preferred_name": "Chiarini, Claude", "authorized_access_point": "Chiarini, Claude"} 1 +2024-09-11 09:06:28.302702 2024-09-11 09:06:28.302705 e8312a7d-cc57-426d-b242-16b70b6ac8bc {"md5": "529791d12f0abe0d2d83e886e3e84a26", "pid": "A003103435", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003103435", "source": "RERO"}], "preferred_name": "Choate, Joseph H", "authorized_access_point": "Choate, Joseph H"} 1 +2024-09-11 09:06:28.353559 2024-09-11 09:06:28.353564 3f678721-27ae-4561-bc8c-f643840b49f0 {"md5": "fd7bfe138a8fbad2a1edd9f904f1526c", "pid": "A003103659", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003103659", "source": "RERO"}], "variant_name": ["Choeur mixte (Estavayer-le-Gibloux)"], "preferred_name": "Choeur mixte paroissial (Estavayer-le-Gibloux)", "variant_access_point": ["Choeur mixte (Estavayer-le-Gibloux)"], "authorized_access_point": "Choeur mixte paroissial (Estavayer-le-Gibloux)"} 1 +2024-09-11 09:06:28.413016 2024-09-11 09:06:28.413021 19686ff9-d59a-4edf-83ad-d62d4456a6ec {"md5": "f43e33b6c924627c9765f09f7da623d8", "pid": "A003104849", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003104849", "source": "RERO"}], "preferred_name": "Christ, Isabelle", "authorized_access_point": "Christ, Isabelle"} 1 +2024-09-11 09:06:28.50246 2024-09-11 09:06:28.502463 d89f2bcf-96c3-442a-8ccb-3b035227a92d {"md5": "5696de7e42977e10cd05c99f5d26a248", "pid": "A003111864", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003111864", "source": "RERO"}], "preferred_name": "Cloonan, Michèle Valerie", "authorized_access_point": "Cloonan, Michèle Valerie"} 1 +2024-09-11 09:06:28.567549 2024-09-11 09:06:28.567553 06cf43ce-72b8-44d5-977f-79bb983613c9 {"md5": "4f1efd5911828dbfcca4cff78eae00fb", "pid": "A003112356", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003112356", "source": "RERO"}], "preferred_name": "Club suisse des chefs de vente et de marketing. Gruppo Ticino", "authorized_access_point": "Club suisse des chefs de vente et de marketing. Gruppo Ticino"} 1 +2024-09-11 09:06:28.619303 2024-09-11 09:06:28.619306 fdf32373-5ec9-4e6f-8f17-347af35d9347 {"md5": "7efc4eff9f1e59a18d35700ebaff9c43", "pid": "A003113657", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003113657", "source": "RERO"}], "preferred_name": "Codrington, Oliver", "authorized_access_point": "Codrington, Oliver"} 1 +2024-09-11 09:06:28.672656 2024-09-11 09:06:28.67266 e04fc7fc-ea09-435b-b28b-6d8d59f25f66 {"md5": "8fb0047f5562999b24d90d2c6a4b1cf4", "pid": "A003114032", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003114032", "source": "RERO"}], "preferred_name": "Coghlan, Ronan", "authorized_access_point": "Coghlan, Ronan"} 1 +2024-09-11 09:06:28.72377 2024-09-11 09:06:28.723774 b79343ee-ae02-4f9d-b920-b7191046a51c {"md5": "6a7bded0de033a35c5e6deacfba531f0", "pid": "A003114105", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003114105", "source": "RERO"}], "preferred_name": "Cogo, Annalisa", "authorized_access_point": "Cogo, Annalisa"} 1 +2024-09-11 09:06:28.777647 2024-09-11 09:06:28.777651 e9d05e5e-483e-4a29-b361-342c3aca27e0 {"md5": "efbe3a8238e741b158ef8154dbcdbb07", "pid": "A003114110", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003114110", "source": "RERO"}], "preferred_name": "Cogotti, Marina", "authorized_access_point": "Cogotti, Marina"} 1 +2024-09-11 09:06:28.833593 2024-09-11 09:06:28.833597 f541936b-f165-4d3e-bdfe-8f47c15480dc {"md5": "5043b0ccf0f80e7cf0b4282a24ddb112", "pid": "A003116989", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003116989", "source": "RERO"}], "preferred_name": "Collins, Joseph Burns", "authorized_access_point": "Collins, Joseph Burns"} 1 +2024-09-11 09:06:28.885721 2024-09-11 09:06:28.885727 a3512b9e-78c2-467b-87e1-cd4443474495 {"md5": "66b3a9cc9861f42423058b89ceba8fd3", "pid": "A003121026", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003121026", "source": "RERO"}], "preferred_name": "Combray, Richard de", "authorized_access_point": "Combray, Richard de"} 1 +2024-09-11 09:06:28.940091 2024-09-11 09:06:28.940095 adb4500f-8063-4d1d-8312-126041cc7ac3 {"md5": "866dfb30de8139b47eb7ec9dec87de3c", "pid": "A003121313", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003121313", "source": "RERO"}], "preferred_name": "Comitato nazionale italiano per le arti popolari", "authorized_access_point": "Comitato nazionale italiano per le arti popolari"} 1 +2024-09-11 09:06:28.991902 2024-09-11 09:06:28.991905 3efc97a2-356c-449d-91d3-61f1aec4e92b {"md5": "9f2f7f7718f7986007c2acecc81a2632", "pid": "A003122042", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003122042", "source": "RERO"}], "preferred_name": "Comité pour la sauvegarde de l'Ariana (Genève)", "authorized_access_point": "Comité pour la sauvegarde de l'Ariana (Genève)"} 1 +2024-09-11 09:06:29.041318 2024-09-11 09:06:29.041321 11ab4778-0a8e-4bea-a67e-eaef5ad741a9 {"md5": "c8a8e1a175b5691b414cf6d436c4a9c1", "pid": "A003122713", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003122713", "source": "RERO"}], "preferred_name": "Committee on Urban Public Economics (USA). Conference (1977?)", "authorized_access_point": "Committee on Urban Public Economics (USA). Conference (1977?)"} 1 +2024-09-11 09:06:29.094116 2024-09-11 09:06:29.094121 0b87937c-c5bd-45cf-bc58-595912f5c9dd {"md5": "c7bb269f33291feed04abbb10af47eef", "pid": "A003123930", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003123930", "source": "RERO"}], "preferred_name": "Concertgebouw Orkest (Amsterdam). Koor", "authorized_access_point": "Concertgebouw Orkest (Amsterdam). Koor"} 1 +2024-09-11 09:06:29.145919 2024-09-11 09:06:29.145923 a1b6f83e-dbb0-468d-834c-56c22da5e63b {"md5": "a7eb36029b3b626744fd31fb81bfe43d", "pid": "A003131969", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003131969", "source": "RERO"}], "preferred_name": "Continati, Dolores", "authorized_access_point": "Continati, Dolores"} 1 +2024-09-11 09:06:29.197875 2024-09-11 09:06:29.19788 a6b3aa03-2630-4cb2-a07d-48bd10fb4a86 {"md5": "c099dfc58fe0114cbb3d46c650bb714a", "pid": "A003132079", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003132079", "source": "RERO"}], "preferred_name": "Contri, Giacomo", "authorized_access_point": "Contri, Giacomo"} 1 +2024-09-11 09:06:29.260656 2024-09-11 09:06:29.26066 95079df8-2bca-4d29-bb67-6b2cd87fd3aa {"md5": "4cdc03492dcf13fc5d2a43f46b345a6c", "pid": "A003134703", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003134703", "source": "RERO"}], "preferred_name": "Corbaz, Etienne", "authorized_access_point": "Corbaz, Etienne"} 1 +2024-09-11 09:06:29.312565 2024-09-11 09:06:29.312568 b4bceed3-c1b8-4c1f-8ad4-a2959da5e9ba {"md5": "ebdb9887a80841bf56180a7ae2208560", "pid": "A003136891", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003136891", "source": "RERO"}], "preferred_name": "Corse (région). Direction régionale des antiquités", "authorized_access_point": "Corse (région). Direction régionale des antiquités"} 1 +2024-09-11 09:06:29.365554 2024-09-11 09:06:29.365559 ce4f9058-68bc-48a2-a243-8bdcb29db835 {"md5": "8abf2646a0e5adac2ac1acc020b21820", "pid": "A003141286", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003141286", "source": "RERO"}], "preferred_name": "Coward, Harold G", "authorized_access_point": "Coward, Harold G"} 1 +2024-09-11 09:06:29.420379 2024-09-11 09:06:29.420384 72dc05f3-39f2-498e-82f1-d86f1121b094 {"md5": "22825de134a6f8e2f7c80e8d60d670a5", "pid": "A003141352", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003141352", "source": "RERO"}], "preferred_name": "Cowen, Philip A", "authorized_access_point": "Cowen, Philip A"} 1 +2024-09-11 09:06:29.491828 2024-09-11 09:06:29.491832 2666fa14-8f51-4c6a-b548-686f6438b9ac {"md5": "31a0cf4e354ae53cc8542b861a70c1a6", "pid": "A003142207", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003142207", "source": "RERO"}], "date_of_birth": "1959", "preferred_name": "Cramatte, Jean-Luc,", "authorized_access_point": "Cramatte, Jean-Luc, 1959-", "biographical_information": ["Photographe suisse, fondateur de l'agence Freenews"]} 1 +2024-09-11 09:06:29.543646 2024-09-11 09:06:29.54365 6491f4cf-2e81-4778-8e7f-2d3d02aca9f6 {"md5": "5c4bb86461a64ae0a57eb761de38f19b", "pid": "A003145194", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003145194", "source": "RERO"}], "preferred_name": "Croubalian, Mélanie", "authorized_access_point": "Croubalian, Mélanie"} 1 +2024-09-11 09:06:29.600217 2024-09-11 09:06:29.600221 af685bfc-4d9b-40cf-b406-53a5805bed02 {"md5": "4db7c9702866cb5f8ffc0b9ff79a1555", "pid": "A003145393", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003145393", "source": "RERO"}], "preferred_name": "Crowell [and] Moring", "authorized_access_point": "Crowell [and] Moring"} 1 +2024-09-11 09:06:29.65867 2024-09-11 09:06:29.658674 ed98ead4-ab82-4ff9-aa43-6773bcb1393d {"md5": "5f398ef72cb03650e847d9eb8517dc0c", "pid": "A003146897", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003146897", "source": "RERO"}], "preferred_name": "Cullen, Gordon", "authorized_access_point": "Cullen, Gordon"} 1 +2024-09-11 09:06:29.724603 2024-09-11 09:06:29.724607 4cb4b2af-3895-4c19-b87a-2a4bf497c10e {"md5": "0c6d10437f8743870285f8d28b0bf94d", "pid": "A003149155", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003149155", "source": "RERO"}], "preferred_name": "Czechoslovak Society for Science and Technique", "authorized_access_point": "Czechoslovak Society for Science and Technique"} 1 +2024-09-11 09:06:29.80805 2024-09-11 09:06:29.808054 6b32a058-a6ad-4c0f-b684-a980827b4538 {"md5": "fbe0a7d154e2d8ac75193b011b30c1bf", "pid": "A003149182", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003149182", "source": "RERO"}], "preferred_name": "Czempin, Thomas", "authorized_access_point": "Czempin, Thomas"} 1 +2024-09-11 09:06:29.861186 2024-09-11 09:06:29.861191 e0122920-767d-4183-8ddf-7ecd69c95e5a {"md5": "90b6eec381c1842a20dfc8ead0773d8f", "pid": "A003149832", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003149832", "source": "RERO"}], "preferred_name": "Căpuşe, Iosif", "authorized_access_point": "Căpuşe, Iosif"} 1 +2024-09-11 09:06:29.914349 2024-09-11 09:06:29.914353 3dc20891-1acb-492d-8422-793a691b0051 {"md5": "3a5f4665e81b75759373517361d884ff", "pid": "A003150269", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003150269", "source": "RERO"}], "preferred_name": "D'Egmond, Balthasar", "authorized_access_point": "D'Egmond, Balthasar"} 1 +2024-09-11 09:06:29.967194 2024-09-11 09:06:29.967199 d401f57b-e5ae-4046-8d5c-10473da1c2cd {"md5": "6925d427dddaa5b6537ffa15f43beaa7", "pid": "A003151816", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003151816", "source": "RERO"}], "preferred_name": "Daka, Marie", "authorized_access_point": "Daka, Marie"} 1 +2024-09-11 09:06:30.024694 2024-09-11 09:06:30.024697 02d30f8a-17c0-4747-a1ec-f317d5002bd6 {"md5": "2ae0c84f600619078e8489666e01eee9", "pid": "A003154955", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003154955", "source": "RERO"}], "preferred_name": "Darcy, Henry-Philibert-Gaspard", "authorized_access_point": "Darcy, Henry-Philibert-Gaspard"} 1 +2024-09-11 09:06:30.078407 2024-09-11 09:06:30.078411 d9a20480-5ec3-4665-9e44-b7c7be9c0374 {"md5": "7e219ef60ee5366cf2e384402d441a57", "pid": "A003155460", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003155460", "source": "RERO"}], "preferred_name": "Darrieux, Jessa", "authorized_access_point": "Darrieux, Jessa"} 1 +2024-09-11 09:06:30.133774 2024-09-11 09:06:30.133778 d50c795a-a7da-4356-b8ff-1fd20bf7882d {"md5": "fd2bb8d2edc83a79913947b401e17551", "pid": "A003155524", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003155524", "source": "RERO"}], "preferred_name": "Darst, Melanie", "authorized_access_point": "Darst, Melanie"} 1 +2024-09-11 09:06:30.192463 2024-09-11 09:06:30.192467 9bfb5def-8364-4b34-bd8b-4491f5465348 {"md5": "5da009d83d2e6859dbc8e17762b5857e", "pid": "A003159779", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003159779", "source": "RERO"}], "preferred_name": "De Faveri, Lydia", "authorized_access_point": "De Faveri, Lydia"} 1 +2024-09-11 09:06:30.242892 2024-09-11 09:06:30.242897 a177af00-e77c-49d7-83ec-8694da1a4d0f {"md5": "88dc77d174f44582861657db51b2c4f9", "pid": "A003162783", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003162783", "source": "RERO"}], "preferred_name": "Dechartres, Charles", "authorized_access_point": "Dechartres, Charles"} 1 +2024-09-11 09:06:30.297397 2024-09-11 09:06:30.297402 68225dab-9904-4a3a-ba71-7420db3ea91b {"md5": "ac1c433d9835a0a41bbfa78458e8aaac", "pid": "A003170262", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003170262", "source": "RERO"}], "preferred_name": "Depelchin, Jacques", "authorized_access_point": "Depelchin, Jacques"} 1 +2024-09-11 09:06:30.354958 2024-09-11 09:06:30.354963 7e1cf7d6-3a81-4610-8490-de08ae2d295d {"md5": "1ac6ca5457b47b050b69b3557428e1c1", "pid": "A003171170", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003171170", "source": "RERO"}], "preferred_name": "Dertouzos, James N", "authorized_access_point": "Dertouzos, James N"} 1 +2024-09-11 09:06:30.418429 2024-09-11 09:06:30.418432 b8587448-1b12-4308-b4d1-a9978c5b5d1f {"md5": "8727b00cf943b01dd8c7ad6b87f6fa40", "pid": "A003172151", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003172151", "source": "RERO"}], "preferred_name": "DeSeve, G. Edward", "authorized_access_point": "DeSeve, G. Edward"} 1 +2024-09-11 09:06:30.471638 2024-09-11 09:06:30.471643 8616e698-19ab-4ce8-8049-6d32e0b3ed11 {"md5": "56d458e403f4d44f88a4aa925cab97d5", "pid": "A003172474", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003172474", "source": "RERO"}], "preferred_name": "Deslarzes, Béatrice", "authorized_access_point": "Deslarzes, Béatrice"} 1 +2024-09-11 09:06:30.524506 2024-09-11 09:06:30.524509 eee0d625-241f-4635-89e3-1b30e156457e {"md5": "f1be36fa14758503b7dc9cd6dd6a1b1e", "pid": "A003173240", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003173240", "source": "RERO"}], "preferred_name": "Dessoulavy, Denis", "authorized_access_point": "Dessoulavy, Denis"} 1 +2024-09-11 09:06:30.576299 2024-09-11 09:06:30.576303 9cd08ad9-80ff-4cba-a3e6-fa3960ded46e {"md5": "abe2eb149430016fb0a41de9d51654e9", "pid": "A003177980", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003177980", "source": "RERO"}], "preferred_name": "Di Sarro, Thierry", "authorized_access_point": "Di Sarro, Thierry"} 1 +2024-09-11 09:06:30.627391 2024-09-11 09:06:30.627395 9256b0cb-1420-4d95-b440-b6818dd93019 {"md5": "a11520bf8637334a89c7bdee5611baa7", "pid": "A003178146", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003178146", "source": "RERO"}], "preferred_name": "Diagne, Mouhamadou", "authorized_access_point": "Diagne, Mouhamadou"} 1 +2024-09-11 09:06:30.678218 2024-09-11 09:06:30.678222 605dd86a-77b4-4b0d-a06f-a173823c8714 {"md5": "c54b54270ffc934651868a132e95acde", "pid": "A003179452", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003179452", "source": "RERO"}], "preferred_name": "Diedrichs, Raffaella", "authorized_access_point": "Diedrichs, Raffaella"} 1 +2024-09-11 09:06:30.728552 2024-09-11 09:06:30.728557 430fdc56-ec0a-4e2b-97f4-a858d315d116 {"md5": "9c5cf3adf7c3f43747849a3e4e11c945", "pid": "A003182838", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003182838", "source": "RERO"}], "preferred_name": "Divertimento Vocale (Fribourg)", "authorized_access_point": "Divertimento Vocale (Fribourg)"} 1 +2024-09-11 09:06:30.783458 2024-09-11 09:06:30.783461 564bbdab-cdf5-4616-87cd-3b7aab8af7bc {"md5": "42d36b8d48e6689bd0f9d9401c6f8f7f", "pid": "A003184655", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003184655", "source": "RERO"}], "preferred_name": "Dohrn, Cathy", "authorized_access_point": "Dohrn, Cathy"} 1 +2024-09-11 09:06:30.868146 2024-09-11 09:06:30.868152 37cff5ba-4d2f-4ea7-87d3-280e8be36ef1 {"md5": "3bc8edad3316de8bbfe975e847327c0a", "pid": "A003185209", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003185209", "source": "RERO"}], "preferred_name": "Doly, Guy", "authorized_access_point": "Doly, Guy"} 1 +2024-09-11 09:06:30.930161 2024-09-11 09:06:30.930166 ab836f96-9a4a-491c-9ce9-150cd62dd019 {"md5": "8abec839f1e6c310332a28fcb004a344", "pid": "A003188796", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003188796", "source": "RERO"}], "preferred_name": "Douglas, Claire", "authorized_access_point": "Douglas, Claire"} 1 +2024-09-11 09:06:30.994267 2024-09-11 09:06:30.994272 d76eb3e8-c35f-4377-98ed-28324730c503 {"md5": "6ca39f8fa2edff451c7c1e73805c2d09", "pid": "A003192212", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003192212", "source": "RERO"}], "preferred_name": "Druto, Maciej", "authorized_access_point": "Druto, Maciej"} 1 +2024-09-11 09:06:31.045244 2024-09-11 09:06:31.045248 b4faac7d-ed82-445b-9bac-eef63e90052c {"md5": "eef76b15296ad51766a3c12d9fc33bfc", "pid": "A003194582", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003194582", "source": "RERO"}], "preferred_name": "Duchesne, Gaston", "authorized_access_point": "Duchesne, Gaston"} 1 +2024-09-11 09:06:31.098265 2024-09-11 09:06:31.098269 aa750269-2eef-4b0c-a223-6d7c92f25d6d {"md5": "77cc734647b279aff8dc207e3e535346", "pid": "A003196110", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003196110", "source": "RERO"}], "preferred_name": "Dugarte Balza, Marbella", "authorized_access_point": "Dugarte Balza, Marbella"} 1 +2024-09-11 09:06:31.148628 2024-09-11 09:06:31.148631 5d76ab23-637f-49e1-a784-7560d9aabbd6 {"md5": "7187f7c5a9a53962528a8e234e176ca5", "pid": "A003197536", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003197536", "source": "RERO"}], "preferred_name": "Dunand, Georges", "authorized_access_point": "Dunand, Georges"} 1 +2024-09-11 09:06:31.198528 2024-09-11 09:06:31.198533 13a1a265-d9e7-49ba-8af3-b4fd1e6a5258 {"md5": "6a045385ec4a05a2d13150ca706445a8", "pid": "A003198713", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003198713", "source": "RERO"}], "preferred_name": "Dupong, Lucy", "authorized_access_point": "Dupong, Lucy"} 1 +2024-09-11 09:06:31.254554 2024-09-11 09:06:31.254558 c6a6404d-7b4a-4511-a221-369683ce0187 {"md5": "0050150592b61a4b39cc111a1b50f373", "pid": "A003199994", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003199994", "source": "RERO"}], "preferred_name": "Durel, Bernard", "authorized_access_point": "Durel, Bernard"} 1 +2024-09-11 09:06:31.307084 2024-09-11 09:06:31.307087 d7650468-e785-42e6-b440-407954a5af9b {"md5": "24f8184afabec310e738ccb318c53acf", "pid": "A003201589", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003201589", "source": "RERO"}], "preferred_name": "Duviard, Dominique", "authorized_access_point": "Duviard, Dominique"} 1 +2024-09-11 09:06:31.362603 2024-09-11 09:06:31.362607 d847a5af-a1a2-4c55-a8b0-0437bb62b3ab {"md5": "e3f829cab097e4eee3b5a6d916a9201d", "pid": "A003203987", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003203987", "source": "RERO"}], "preferred_name": "Díaz, Janet Winecoff", "authorized_access_point": "Díaz, Janet Winecoff"} 1 +2024-09-11 09:06:31.425736 2024-09-11 09:06:31.425738 e8cdd013-7d89-4ba5-85c3-6d671d92643e {"md5": "9f7adade13327f083c789f1047e1d9b3", "pid": "A003206780", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003206780", "source": "RERO"}], "preferred_name": "Echard, William E", "authorized_access_point": "Echard, William E"} 1 +2024-09-11 09:06:31.491356 2024-09-11 09:06:31.491359 5cf90abd-54a9-464d-82ea-3da32c159216 {"md5": "8aa78e6d96df857069564512297cb80e", "pid": "A003217486", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003217486", "source": "RERO"}], "preferred_name": "Engelhard, Hermann", "authorized_access_point": "Engelhard, Hermann"} 1 +2024-09-11 09:06:31.543531 2024-09-11 09:06:31.543535 d4f10d2a-8664-4836-89c2-dbe91d40ed46 {"md5": "d47ce2003b0c03d5fa13c5a8c65b76b4", "pid": "A003218658", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003218658", "source": "RERO"}], "preferred_name": "Ensemble vocal Audite Nova (Paris)", "authorized_access_point": "Ensemble vocal Audite Nova (Paris)"} 1 +2024-09-11 09:06:31.599366 2024-09-11 09:06:31.59937 010b59ba-1ae2-447a-8c7a-0ee888a125b8 {"md5": "4b2c9c3afdf72cb0fbdf17780fb4c59f", "pid": "A003218686", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003218686", "source": "RERO"}], "preferred_name": "Ensemble Wien-Berlin", "authorized_access_point": "Ensemble Wien-Berlin"} 1 +2024-09-11 09:06:31.656858 2024-09-11 09:06:31.656862 2a8067c5-f679-44d7-9f5b-4158f41bba9e {"md5": "99da2ff38073ac14c988921d105c3696", "pid": "A003223430", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003223430", "source": "RERO"}], "preferred_name": "Estle, Thomas Leo", "authorized_access_point": "Estle, Thomas Leo"} 1 +2024-09-11 09:06:31.719143 2024-09-11 09:06:31.719147 5576caf0-e2a1-440a-85ec-1294683214bc {"md5": "b61897d6c51d08a3cc186e30eec70c58", "pid": "A003230887", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003230887", "source": "RERO"}], "preferred_name": "Fankhauser, Hans F", "authorized_access_point": "Fankhauser, Hans F"} 1 +2024-09-11 09:06:31.770914 2024-09-11 09:06:31.770917 cfc8ea46-d68e-46ad-9eac-ad581b1423b9 {"md5": "7b6a94ef44b20184627f5bbfd07ec2f5", "pid": "A003235750", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003235750", "source": "RERO"}], "preferred_name": "Fehlmann, Ruedi", "authorized_access_point": "Fehlmann, Ruedi"} 1 +2024-09-11 09:06:31.822497 2024-09-11 09:06:31.822502 048f55b0-9b09-4739-aba3-9ad08676fe4e {"md5": "45f83d9cb4208857a615d1048ca0e881", "pid": "A003235825", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003235825", "source": "RERO"}], "preferred_name": "Fehr, Regula", "authorized_access_point": "Fehr, Regula"} 1 +2024-09-11 09:06:31.878975 2024-09-11 09:06:31.878979 8e6e9a14-19b1-4069-9944-77e3da0f18b5 {"md5": "5823886f3f413ece2f44c09db01fed46", "pid": "A003236665", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003236665", "source": "RERO"}], "preferred_name": "Feldman, Stanley A", "authorized_access_point": "Feldman, Stanley A"} 1 +2024-09-11 09:06:31.93251 2024-09-11 09:06:31.932512 be38a155-e53e-46f7-b50b-197365a67fb2 {"md5": "bb3231b5803deb4c57ab8d9a433adfba", "pid": "A003237696", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003237696", "source": "RERO"}], "preferred_name": "Fenton, Terry", "authorized_access_point": "Fenton, Terry"} 1 +2024-09-11 09:06:31.983267 2024-09-11 09:06:31.98327 7442f2e5-7865-422e-8542-1a70d0af4e92 {"md5": "013542b2b31007b998daedd9c10b3ad5", "pid": "A003240957", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003240957", "source": "RERO"}], "preferred_name": "Feuardent, René", "authorized_access_point": "Feuardent, René"} 1 +2024-09-11 09:06:32.038066 2024-09-11 09:06:32.038069 c2c4a22b-6242-4897-a46d-046a2ebda0d4 {"md5": "ee99a2da263f8ef1ba1fbff6111534f3", "pid": "A003242452", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003242452", "source": "RERO"}], "preferred_name": "Figurey, Ernest", "authorized_access_point": "Figurey, Ernest"} 1 +2024-09-11 09:06:32.090183 2024-09-11 09:06:32.09019 9dd08cca-ff8f-4e45-88e3-abd4c45eaae0 {"md5": "ed0c19640375462e19d8a582179730dd", "pid": "A003243348", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003243348", "source": "RERO"}], "preferred_name": "Findlay, William", "authorized_access_point": "Findlay, William"} 1 +2024-09-11 09:06:32.151375 2024-09-11 09:06:32.151378 578f8c73-d9d7-4f2f-af7f-b87908d3dcda {"md5": "115fc57aa978d36c981cbb60a0f8b003", "pid": "A003245434", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "entomologue", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003245434", "source": "RERO"}], "variant_name": ["Fischer, Maximilian, entomologue"], "preferred_name": "Fischer, Max, entomologue", "variant_access_point": ["Fischer, Maximilian, entomologue"], "authorized_access_point": "Fischer, Max, entomologue"} 1 +2024-09-11 09:06:32.216002 2024-09-11 09:06:32.216006 83766caa-cf29-4c37-9aba-4c7fe48a7f52 {"md5": "3f4a2bac7e33cee202e82efd58400c30", "pid": "A003246832", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003246832", "source": "RERO"}], "preferred_name": "Flaction, Rosette", "authorized_access_point": "Flaction, Rosette"} 1 +2024-09-11 09:06:32.268034 2024-09-11 09:06:32.268039 c34d4080-e434-482e-8bf6-866111251529 {"md5": "4e7c692e3d8374fbc81213a7d4c9b51d", "pid": "A003250020", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003250020", "source": "RERO"}], "preferred_name": "Foglar-Deinhardstein, Harald", "authorized_access_point": "Foglar-Deinhardstein, Harald"} 1 +2024-09-11 09:06:32.332479 2024-09-11 09:06:32.332482 a5c72e55-e7fe-4cb5-a474-90a806089c76 {"md5": "5483631d497d20f2679dc8252474cf87", "pid": "A003250278", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003250278", "source": "RERO"}], "variant_name": ["Foletti, Giovanni Battista"], "preferred_name": "Foletti, Giovanni", "variant_access_point": ["Foletti, Giovanni Battista"], "authorized_access_point": "Foletti, Giovanni"} 1 +2024-09-11 09:06:32.389057 2024-09-11 09:06:32.389062 ed0c5aaa-6481-4526-b6bf-66d6aef62c28 {"md5": "c71cd6f425f72e777b952269bab29a57", "pid": "A003250343", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003250343", "source": "RERO"}], "preferred_name": "Folger, Robert", "authorized_access_point": "Folger, Robert"} 1 +2024-09-11 09:06:32.442204 2024-09-11 09:06:32.442208 7f77ba62-c2cc-4aa0-a8b2-b3336f565c6d {"md5": "908ce395270e8ed32b7eb588f0a80de7", "pid": "A003250353", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003250353", "source": "RERO"}], "preferred_name": "Folie, Jacqueline", "authorized_access_point": "Folie, Jacqueline"} 1 +2024-09-11 09:06:32.496295 2024-09-11 09:06:32.4963 be20407d-d94b-48c8-ade3-9ea5ec3a84c9 {"md5": "bff04344cd79f08891c677097236bd02", "pid": "A003251379", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003251379", "source": "RERO"}], "preferred_name": "Fondazione Cariplo per la ricerca scientifica (Milano)", "authorized_access_point": "Fondazione Cariplo per la ricerca scientifica (Milano)"} 1 +2024-09-11 09:06:32.556994 2024-09-11 09:06:32.556998 220aa930-7fb0-4bf5-b4b5-24ce95621fda {"md5": "873a94a5bd578259c294f80ffa629db6", "pid": "A003256978", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003256978", "source": "RERO"}], "preferred_name": "Frager, Robert", "authorized_access_point": "Frager, Robert"} 1 +2024-09-11 09:06:32.630295 2024-09-11 09:06:32.6303 7af62d7b-aaf2-4903-914d-8a218336a241 {"md5": "bf22b6f5d222ac8de138a8cc16590fcf", "pid": "A003259324", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003259324", "source": "RERO"}], "preferred_name": "Frangou, S.A", "authorized_access_point": "Frangou, S.A"} 1 +2024-09-11 09:06:32.692397 2024-09-11 09:06:32.692402 98d4e51a-2a95-4a62-92c9-e312bc34e5d5 {"md5": "97f82443115a4e69087ab2b5bd8cc456", "pid": "A003259363", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003259363", "source": "RERO"}], "preferred_name": "Frank, Benjamen Simon", "authorized_access_point": "Frank, Benjamen Simon"} 1 +2024-09-11 09:06:32.745224 2024-09-11 09:06:32.745227 2ffa1bed-adf9-445f-b01f-909eaf6acc32 {"md5": "d677356d925964dc2190a92740445453", "pid": "A003261984", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003261984", "source": "RERO"}], "preferred_name": "Freeze, Paul D", "authorized_access_point": "Freeze, Paul D"} 1 +2024-09-11 09:06:32.799892 2024-09-11 09:06:32.799896 bdfe805a-567f-4043-a681-9d4b741de684 {"md5": "470b1135a44807bf9afbe1492e2410df", "pid": "A003262188", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003262188", "source": "RERO"}], "preferred_name": "Frei-Borer, Ursula", "authorized_access_point": "Frei-Borer, Ursula"} 1 +2024-09-11 09:06:32.857198 2024-09-11 09:06:32.857203 890361f0-cb94-48a9-9c6b-59ed206a8003 {"md5": "d0a6c4816fa9932be944de96873aa729", "pid": "A003263551", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003263551", "source": "RERO"}], "preferred_name": "Frey, Markus", "authorized_access_point": "Frey, Markus"} 1 +2024-09-11 09:06:32.916528 2024-09-11 09:06:32.916532 4050b496-a98b-4d7b-8510-74e83273793a {"md5": "3ca72b091a556e3eb0ac7b35de813dcf", "pid": "A003264908", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003264908", "source": "RERO"}], "preferred_name": "Friedman, William Frederick", "authorized_access_point": "Friedman, William Frederick"} 1 +2024-09-11 09:06:32.982478 2024-09-11 09:06:32.982482 c03c85c7-4644-445a-807a-8c1e2bab4f70 {"md5": "9535925437f49d53ad663ea533fd5dbc", "pid": "A003265730", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003265730", "source": "RERO"}], "preferred_name": "Frisch, Christine", "authorized_access_point": "Frisch, Christine"} 1 +2024-09-11 09:06:33.046494 2024-09-11 09:06:33.046499 5747374f-070f-4bc1-8491-7bf47c035c6c {"md5": "2fc795594aaa4748e3fee1dd07c84d2d", "pid": "A003267103", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003267103", "source": "RERO"}], "preferred_name": "Frost, Wolfgang", "authorized_access_point": "Frost, Wolfgang"} 1 +2024-09-11 09:06:33.101124 2024-09-11 09:06:33.101127 aeb2c13f-06fc-4609-9bf6-1012e0be4c1b {"md5": "8ac056a2d3a14a0571e587514d11249c", "pid": "A003267500", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003267500", "source": "RERO"}], "preferred_name": "Fryer, K.D", "authorized_access_point": "Fryer, K.D"} 1 +2024-09-11 09:06:33.154907 2024-09-11 09:06:33.154911 203f9212-5263-48b9-894a-085423b4baa0 {"md5": "d6494fe73d0ba3647d6c6a44abd3156f", "pid": "A003268129", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003268129", "source": "RERO"}], "preferred_name": "Fuchino, Sakaé", "authorized_access_point": "Fuchino, Sakaé"} 1 +2024-09-11 09:06:33.208704 2024-09-11 09:06:33.208708 46e9f598-a690-4067-895e-0b700e28544a {"md5": "becc9ac207d05e8531eb2d527b5c7e4e", "pid": "A003272218", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003272218", "source": "RERO"}], "preferred_name": "Fédération suisse des travailleurs du commerce, des transports et de l'alimentation. Section de Genève", "authorized_access_point": "Fédération suisse des travailleurs du commerce, des transports et de l'alimentation. Section de Genève"} 1 +2024-09-11 09:06:33.26473 2024-09-11 09:06:33.264735 98fc952b-71fc-423a-bee8-fd52a1d664b9 {"md5": "40134df382a5424617e359f1d1d56fa1", "pid": "A003272478", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003272478", "source": "RERO"}], "preferred_name": "Févret, Charles", "authorized_access_point": "Févret, Charles"} 1 +2024-09-11 09:06:33.318193 2024-09-11 09:06:33.318199 0cbe314e-a252-40bd-aa81-98a63da73bdd {"md5": "e2fbdf5a4b74fa14514bf9816e88e42d", "pid": "A003272492", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003272492", "source": "RERO"}], "preferred_name": "Fête cantonale des accordéonistes fribourgeois", "authorized_access_point": "Fête cantonale des accordéonistes fribourgeois"} 1 +2024-09-11 09:06:33.396683 2024-09-11 09:06:33.396688 0b6f2bf8-d4a1-4e7b-945e-d4b5ab01e9e0 {"md5": "f9e935a1849d5b8cce50734652925aa7", "pid": "A003274907", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003274907", "source": "RERO"}], "preferred_name": "Gal, Nathalie", "authorized_access_point": "Gal, Nathalie"} 1 +2024-09-11 09:06:33.458396 2024-09-11 09:06:33.4584 1abc014f-d01a-41e0-9c9b-35f60f56e1b7 {"md5": "9df29acf2e8bfbabb0ad0f3ee0d36b39", "pid": "A003275937", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003275937", "source": "RERO"}], "preferred_name": "Gallahue, David L", "authorized_access_point": "Gallahue, David L"} 1 +2024-09-11 09:06:33.522914 2024-09-11 09:06:33.522916 fc335a99-7a36-4f97-ad44-5b334dafd604 {"md5": "5941eb1e58f15069252880c72157f2f2", "pid": "A003276590", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003276590", "source": "RERO"}], "preferred_name": "Gallinger, Fritz", "authorized_access_point": "Gallinger, Fritz"} 1 +2024-09-11 09:06:33.580607 2024-09-11 09:06:33.580611 d8a1d09e-5f92-4b0c-ada6-c1ffa1ff76d2 {"md5": "833000ca35691c172e271094ead38a85", "pid": "A003278829", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003278829", "source": "RERO"}], "preferred_name": "Garbé, A", "authorized_access_point": "Garbé, A"} 1 +2024-09-11 09:06:33.632176 2024-09-11 09:06:33.63218 d6fbc21d-5441-44d2-920a-d0daaae71028 {"md5": "1f1c046f8710ea73d66d8d4600929aa6", "pid": "A003281452", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003281452", "source": "RERO"}], "preferred_name": "Garzetti, Albino", "authorized_access_point": "Garzetti, Albino"} 1 +2024-09-11 09:06:33.6905 2024-09-11 09:06:33.690504 600cb3aa-78a0-41ee-8b98-efde98ebce87 {"md5": "928732de0037d4ab7c59e9a0d88c175d", "pid": "A003283186", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003283186", "source": "RERO"}], "preferred_name": "Gaufridi, Jean François de", "authorized_access_point": "Gaufridi, Jean François de"} 1 +2024-09-11 09:06:33.745984 2024-09-11 09:06:33.745987 c54d00cd-00cb-45a1-bc03-6be5c3696111 {"md5": "c507ce28ba684c001ea67919d9033e13", "pid": "A003288318", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003288318", "source": "RERO"}], "preferred_name": "Genève (canton). Office d'orientation et de formation professionnelle. Service des supports de l'information", "authorized_access_point": "Genève (canton). Office d'orientation et de formation professionnelle. Service des supports de l'information"} 1 +2024-09-11 09:06:33.797356 2024-09-11 09:06:33.797361 f762073a-335e-4ade-a976-5ac39448a4e1 {"md5": "71fd0c5e03574b9a5f72be63fa1b6764", "pid": "A003293538", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003293538", "source": "RERO"}], "preferred_name": "Ghose, Partha", "authorized_access_point": "Ghose, Partha"} 1 +2024-09-11 09:06:33.851632 2024-09-11 09:06:33.851636 d74dd4b6-0b19-4ed0-8cdf-b47aca3e5e9f {"md5": "ab0ed5dbf2624342840dc4aa4c710fba", "pid": "A003299867", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003299867", "source": "RERO"}], "preferred_name": "Gisler, Nicole", "authorized_access_point": "Gisler, Nicole"} 1 +2024-09-11 09:06:33.904544 2024-09-11 09:06:33.904548 47463234-66e8-42a8-a05d-63a6d2e18b7b {"md5": "be026afe2f4ac529ded895f2fec59cd4", "pid": "A003300349", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003300349", "source": "RERO"}], "preferred_name": "Giusti, Giambattista", "authorized_access_point": "Giusti, Giambattista"} 1 +2024-09-11 09:06:33.967888 2024-09-11 09:06:33.967893 d38f5505-8939-49a9-8bd6-a0b9ee40717e {"md5": "afea3f6d6918597ac972159ea207c1cd", "pid": "A003301693", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003301693", "source": "RERO"}], "preferred_name": "Gleitman, Henry", "authorized_access_point": "Gleitman, Henry"} 1 +2024-09-11 09:06:34.034907 2024-09-11 09:06:34.03491 ae7dbcf4-c5a4-473e-804e-f9b09d35cf38 {"md5": "ab4ff91665106e5bc7c166664a267a2c", "pid": "A003302604", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003302604", "source": "RERO"}], "preferred_name": "Glynn, Prudence", "authorized_access_point": "Glynn, Prudence"} 1 +2024-09-11 09:06:34.094652 2024-09-11 09:06:34.094657 0379fdfe-82e1-4e03-b2e8-73788d8fc4a4 {"md5": "04100a6b45328be3e2b3dc7601389f55", "pid": "A003303466", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003303466", "source": "RERO"}], "preferred_name": "Godefroy, Christian H", "authorized_access_point": "Godefroy, Christian H"} 1 +2024-09-11 09:06:34.147631 2024-09-11 09:06:34.147634 bd948ef0-e470-4e73-8a1b-4f7e1040804d {"md5": "2f5b2820868e1820a90f05a35811e516", "pid": "A003303830", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003303830", "source": "RERO"}], "preferred_name": "Godwin, Harry", "authorized_access_point": "Godwin, Harry"} 1 +2024-09-11 09:06:34.204502 2024-09-11 09:06:34.204505 77d7c3d0-3b21-4285-8d2b-bc383a0c3d0c {"md5": "15f4e52baf6dd7c35a18d51677da6a97", "pid": "A003307504", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003307504", "source": "RERO"}], "preferred_name": "Gonthier-Pesic, Brana", "authorized_access_point": "Gonthier-Pesic, Brana"} 1 +2024-09-11 09:06:34.256863 2024-09-11 09:06:34.256865 21cbd33b-a157-4d4d-a98d-25fa8bafe7e5 {"md5": "91ea0f6df128f8287478e9b7d7fd6134", "pid": "A003308819", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003308819", "source": "RERO"}], "preferred_name": "Gorboff, Marina", "authorized_access_point": "Gorboff, Marina"} 1 +2024-09-11 09:06:34.309375 2024-09-11 09:06:34.30938 7e65a4e8-7fab-410a-8f72-038d12686600 {"md5": "d416a76bf2fb71cd8e3c879a7693a675", "pid": "A003312980", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003312980", "source": "RERO"}], "preferred_name": "Graf, Arnim", "authorized_access_point": "Graf, Arnim"} 1 +2024-09-11 09:06:34.37052 2024-09-11 09:06:34.370522 71888975-fbdf-4a3d-a1bc-d81534124714 {"md5": "4507adaba48176cc30e40310a1140f00", "pid": "A003314705", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003314705", "source": "RERO"}], "preferred_name": "Granito, Angelo", "authorized_access_point": "Granito, Angelo"} 1 +2024-09-11 09:06:34.42169 2024-09-11 09:06:34.421694 369a2631-2d42-4445-bf84-5b36a6cd9edd {"md5": "8520250f0d7d4aa4b9ce4b5de64f39c6", "pid": "A003316151", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003316151", "source": "RERO"}], "preferred_name": "Gray, K. St Clair", "authorized_access_point": "Gray, K. St Clair"} 1 +2024-09-11 09:06:34.473781 2024-09-11 09:06:34.473784 243b1374-ccca-4ec6-a435-ec5d14c88c25 {"md5": "b52d484ab5966d9dc5829f0e3a70e7e6", "pid": "A003319632", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003319632", "source": "RERO"}], "preferred_name": "Griepentrog, Wolfgang", "authorized_access_point": "Griepentrog, Wolfgang"} 1 +2024-09-11 09:06:34.544064 2024-09-11 09:06:34.544068 e0bd4692-af54-4c00-a514-f7e98989f269 {"md5": "f062f48fb61b953b972787307689fec8", "pid": "A003320872", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003320872", "source": "RERO"}], "preferred_name": "Grimson, William Eric Leifur", "authorized_access_point": "Grimson, William Eric Leifur"} 1 +2024-09-11 09:06:34.61204 2024-09-11 09:06:34.612044 b0928fe7-7951-4c48-9db7-a06d74e49ede {"md5": "1b4d2de2f4943bd3a901afd01ff4ba88", "pid": "A003324081", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003324081", "source": "RERO"}], "preferred_name": "Groupe interprofessionnel contre les abus sexuels sur l'enfant (Fribourg)", "authorized_access_point": "Groupe interprofessionnel contre les abus sexuels sur l'enfant (Fribourg)"} 1 +2024-09-11 09:06:34.667121 2024-09-11 09:06:34.667126 d8b3d88b-595d-4ebf-8333-50c0301fc0d0 {"md5": "8c0d1a5a6a5c786687d9f178399635f7", "pid": "A003328096", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003328096", "source": "RERO"}], "preferred_name": "Guerrero Zamora, Juan", "authorized_access_point": "Guerrero Zamora, Juan"} 1 +2024-09-11 09:06:34.764712 2024-09-11 09:06:34.764716 2acebc2c-b021-42a1-b671-102300bb23ab {"md5": "b1265d0dce6031c88bd485750b5e3a69", "pid": "A003331851", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003331851", "source": "RERO"}], "preferred_name": "Guojia Dang'an Ju", "authorized_access_point": "Guojia Dang'an Ju"} 1 +2024-09-11 09:06:34.81831 2024-09-11 09:06:34.818314 815ca416-e14d-4e32-ba2f-ba9d4c5ed91c {"md5": "8677513c039bc8dc4c373f102777eeaf", "pid": "A003334623", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003334623", "source": "RERO"}], "preferred_name": "Gänzl, Kurt", "authorized_access_point": "Gänzl, Kurt"} 1 +2024-09-11 09:06:34.86982 2024-09-11 09:06:34.869824 3a961d5b-646d-4485-af3d-8d4c05ea547c {"md5": "6592a85f4928e809e9bbf7bbf03d4bf0", "pid": "A003337947", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003337947", "source": "RERO"}], "preferred_name": "Habib, Michel", "authorized_access_point": "Habib, Michel"} 1 +2024-09-11 09:06:34.923606 2024-09-11 09:06:34.92361 2781a52e-bd95-4c26-96e6-3e883c1cd939 {"md5": "4eb1ea51d1db5f8c82a7547cf22759b7", "pid": "A003351113", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003351113", "source": "RERO"}], "preferred_name": "Hartung, Jo", "authorized_access_point": "Hartung, Jo"} 1 +2024-09-11 09:06:34.982062 2024-09-11 09:06:34.982065 bf022cdc-77ae-4bb9-ade4-e1425df471ec {"md5": "79b09f7d7b7d1895e5b5b2cd4c18ba83", "pid": "A003352968", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003352968", "source": "RERO"}], "preferred_name": "Haudry, Jean", "authorized_access_point": "Haudry, Jean"} 1 +2024-09-11 09:06:35.051216 2024-09-11 09:06:35.05122 110b2703-06fc-46d2-9f19-3a8f32c31642 {"md5": "fd4fc649bb8b8b12e4ddaa4398708d8e", "pid": "A003357999", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003357999", "source": "RERO"}], "preferred_name": "Hegglin, Richard", "authorized_access_point": "Hegglin, Richard"} 1 +2024-09-11 09:06:35.106078 2024-09-11 09:06:35.106082 772fe1ea-8e72-4495-b1b0-0bf631800c31 {"md5": "9616b3a2818c0da5a94343616e2a9b28", "pid": "A003359260", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003359260", "source": "RERO"}], "preferred_name": "Heinecke, H", "authorized_access_point": "Heinecke, H"} 1 +2024-09-11 09:06:35.158693 2024-09-11 09:06:35.158698 ecc1b600-e7a3-4f74-a748-96c41788328c {"md5": "775d7686659b87b5e0c12f3f256f732c", "pid": "A003360509", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003360509", "source": "RERO"}], "preferred_name": "Helbich, Wolfgang J", "authorized_access_point": "Helbich, Wolfgang J"} 1 +2024-09-11 09:06:35.223106 2024-09-11 09:06:35.22311 b28f656e-90b3-4de2-87c6-11295789963e {"md5": "68b42b68d6d22871148019a755a490b8", "pid": "A003361845", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003361845", "source": "RERO"}], "variant_name": ["Helsingborg Symphony Orchestra"], "preferred_name": "Helsingborgs Symfoniorkester", "variant_access_point": ["Helsingborg Symphony Orchestra"], "authorized_access_point": "Helsingborgs Symfoniorkester"} 1 +2024-09-11 09:06:35.274573 2024-09-11 09:06:35.274577 777d55d6-9522-4440-a537-3a2b3bf11ca7 {"md5": "2378a83971bbcf9babce00284b123e60", "pid": "A003362103", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003362103", "source": "RERO"}], "preferred_name": "Hemmer, Jean", "authorized_access_point": "Hemmer, Jean"} 1 +2024-09-11 09:06:35.330601 2024-09-11 09:06:35.330606 62f324b5-27c0-482a-beb3-dc3210d042a2 {"md5": "c5835b30cc35edb81349332333849f81", "pid": "A003363900", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003363900", "source": "RERO"}], "preferred_name": "Henriot, Jean-Claude", "authorized_access_point": "Henriot, Jean-Claude"} 1 +2024-09-11 09:06:35.396899 2024-09-11 09:06:35.396904 c2f72b99-09e7-4b90-8cb6-8fdb536d39a6 {"md5": "7ccc5580c198d248a571e35414983855", "pid": "A003364295", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003364295", "source": "RERO"}], "variant_name": ["Henschel, G.A.L.,", "Henschel,"], "date_of_birth": "1806", "date_of_death": "1852", "preferred_name": "Henschel, G.A. Louis,", "variant_access_point": ["Henschel, G.A.L., 1806-1852", "Henschel, 1806-1852"], "authorized_access_point": "Henschel, G.A. Louis, 1806-1852", "biographical_information": ["Philologue et lexicographe. - Né à Minden (Allemagne), mort à Paris. - A aussi écrit en allemand et en latin"]} 1 +2024-09-11 09:06:35.459988 2024-09-11 09:06:35.459993 72728d3e-36f9-4dd5-829f-2c4f37edfd21 {"md5": "7967538cee37cc72eef4f6f0e9f32e67", "pid": "A003370921", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003370921", "source": "RERO"}], "variant_name": ["Higham, Robin D.S.,", "Higham, Robin David Stewart,"], "date_of_birth": "1925", "preferred_name": "Higham, Robin,", "variant_access_point": ["Higham, Robin D.S., 1925-", "Higham, Robin David Stewart, 1925-"], "authorized_access_point": "Higham, Robin, 1925-"} 1 +2024-09-11 09:06:35.52914 2024-09-11 09:06:35.529144 deaeee79-e3d3-405e-a035-e986523e1204 {"md5": "b768db70314674dbaa8df72fd01030a1", "pid": "A003375801", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003375801", "source": "RERO"}], "preferred_name": "Hocks, Richard A", "authorized_access_point": "Hocks, Richard A"} 1 +2024-09-11 09:06:35.596014 2024-09-11 09:06:35.596019 8072bf1e-1d56-4c47-9ded-03444a3fffec {"md5": "fe1a89cd380ac438798eff4b4044df39", "pid": "A003378379", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003378379", "source": "RERO"}], "preferred_name": "Hogan, Maurice P", "authorized_access_point": "Hogan, Maurice P"} 1 +2024-09-11 09:06:35.660735 2024-09-11 09:06:35.660739 00518c5e-5d29-4f78-954b-a43387c6c05c {"md5": "0397053fd97ffa3bc1485d83d21e222a", "pid": "A003378581", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003378581", "source": "RERO"}], "preferred_name": "Hohenberger, Adam", "authorized_access_point": "Hohenberger, Adam"} 1 +2024-09-11 09:06:35.734115 2024-09-11 09:06:35.734118 c69efcbd-3b2f-4ac8-a122-9da8e32eeb2d {"md5": "57dc3531bb23919a5aab01a5a41a9fea", "pid": "A003378837", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003378837", "source": "RERO"}], "preferred_name": "Hoijer, Harry", "authorized_access_point": "Hoijer, Harry"} 1 +2024-09-11 09:06:35.80132 2024-09-11 09:06:35.801326 e72d11ec-44a2-4445-8dc4-ac6f7ea7848d {"md5": "bced56f238ea71a4eb82119a3cd8c24d", "pid": "A003379503", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003379503", "source": "RERO"}], "preferred_name": "Hollander, John", "authorized_access_point": "Hollander, John"} 1 +2024-09-11 09:06:35.896679 2024-09-11 09:06:35.896683 4bd92d48-7c37-4c26-81e8-e2b9f9418b61 {"md5": "b77df581b34df59bc4ce4fdca113382c", "pid": "A003381861", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003381861", "source": "RERO"}], "preferred_name": "Hong, Seong Jo", "authorized_access_point": "Hong, Seong Jo"} 1 +2024-09-11 09:06:35.950715 2024-09-11 09:06:35.95072 1789039d-c023-4466-bcf8-bc44cdc71b97 {"md5": "8c8642fe606d76addf13a47c87d65623", "pid": "A003383105", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003383105", "source": "RERO"}], "variant_name": ["Regius, Heinrich,", "Hôrqheimer, M.,", "Chorkchajmer, Maks,", "Hūrkhāymir, Māks,", "Horkhajmer, Maks,", "Huokehaimo, Makesi,", "Horkheimers, Makss,"], "date_of_birth": "1895", "date_of_death": "1973", "preferred_name": "Horkheimer, Max,", "variant_access_point": ["Regius, Heinrich, 1895-1973", "Hôrqheimer, M., 1895-1973", "Chorkchajmer, Maks, 1895-1973", "Hūrkhāymir, Māks, 1895-1973", "Horkhajmer, Maks, 1895-1973", "Huokehaimo, Makesi, 1895-1973", "Horkheimers, Makss, 1895-1973"], "authorized_access_point": "Horkheimer, Max, 1895-1973", "biographical_information": ["Philosophe et sociologue", "Heinrich Regius est le pseud. occasionnel de Max Horkheimer"]} 1 +2024-09-11 09:06:36.001433 2024-09-11 09:06:36.001437 fe7abe34-aade-4d9c-80eb-c79779634461 {"md5": "56b31117c86ae067a6802b8ee76b3db6", "pid": "A003385342", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003385342", "source": "RERO"}], "preferred_name": "Houtman, Irene", "authorized_access_point": "Houtman, Irene"} 1 +2024-09-11 09:06:36.054936 2024-09-11 09:06:36.05494 59eebea1-fcb7-41f0-b45d-58f2898b6426 {"md5": "61ac22aeab6468e933084029e7289284", "pid": "A003386566", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003386566", "source": "RERO"}], "preferred_name": "Hua, Pai", "authorized_access_point": "Hua, Pai"} 1 +2024-09-11 09:06:36.103923 2024-09-11 09:06:36.103926 ed54011a-df2c-4dd5-a16c-242340b087ed {"md5": "8d1fd08ccbcd89d2b6cb468896e6235d", "pid": "A003388636", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003388636", "source": "RERO"}], "preferred_name": "Hughes, Ann N", "authorized_access_point": "Hughes, Ann N"} 1 +2024-09-11 09:06:36.158104 2024-09-11 09:06:36.158108 f18b7851-a834-4b9d-ac8b-5f175248b535 {"md5": "2f4bf00d3e40b21b7cd5534d7da81ea8", "pid": "A003389309", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003389309", "source": "RERO"}], "preferred_name": "Hugues-Hallett, Penelope", "authorized_access_point": "Hugues-Hallett, Penelope"} 1 +2024-09-11 09:06:36.225331 2024-09-11 09:06:36.225336 5a24fafe-178d-44c7-8c90-1c904ec1bb1c {"md5": "f9415693e2b91e3d58705c473cab13c6", "pid": "A003389620", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003389620", "source": "RERO"}], "preferred_name": "Hull, Richard W", "authorized_access_point": "Hull, Richard W"} 1 +2024-09-11 09:06:36.292528 2024-09-11 09:06:36.292532 0daa45d2-e556-4fa6-a15a-8f34d611d014 {"md5": "2b954dc5c307c2e76f398a06b98ee8ee", "pid": "A003389663", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003389663", "source": "RERO"}], "preferred_name": "Hulme, David", "authorized_access_point": "Hulme, David"} 1 +2024-09-11 09:06:36.357182 2024-09-11 09:06:36.357186 5b5de984-b390-4dfa-9caa-4f72d0ec05ae {"md5": "04b8d5284fe625278a60747e06f67d27", "pid": "A003395338", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003395338", "source": "RERO"}], "date_of_birth": "1958", "preferred_name": "Hütter, Reinhard,", "authorized_access_point": "Hütter, Reinhard, 1958-", "biographical_information": ["Théologien. - Professeur en théologie fondamentale et en dogmatique à l'Université catholique d'Amérique à Washington (2019)"]} 1 +2024-09-11 09:06:36.41391 2024-09-11 09:06:36.413915 bb53ae89-49f3-4ea4-92b8-b7987b3c796a {"md5": "1cb2ae47b46c5f739d249d9af71f063e", "pid": "A003398237", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003398237", "source": "RERO"}], "preferred_name": "Ihori, Toshihiro", "authorized_access_point": "Ihori, Toshihiro"} 1 +2024-09-11 09:06:36.475474 2024-09-11 09:06:36.475478 33458f35-e56b-4400-b81a-b0200739868e {"md5": "3fe80b9252891cfcb112d372d648210a", "pid": "A003399031", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003399031", "source": "RERO"}], "preferred_name": "Imbert, Jean-Louis", "authorized_access_point": "Imbert, Jean-Louis"} 1 +2024-09-11 09:06:36.527958 2024-09-11 09:06:36.527963 4ffc8d1d-07e4-4725-96e5-c2c55acd3510 {"md5": "f7ff49f14dd9cf87413754993c50d273", "pid": "A003399240", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003399240", "source": "RERO"}], "preferred_name": "Imhof, Urs", "authorized_access_point": "Imhof, Urs"} 1 +2024-09-11 09:06:36.579697 2024-09-11 09:06:36.579702 98e0addc-e3c0-46a1-912f-d5d804867478 {"md5": "28fea60a79006b23da78e7c51fd98bf1", "pid": "A003399386", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003399386", "source": "RERO"}], "preferred_name": "Imobersteg, E", "authorized_access_point": "Imobersteg, E"} 1 +2024-09-11 09:06:36.635778 2024-09-11 09:06:36.635781 2d64ee6e-a1ed-400c-8713-e616b9229c5f {"md5": "9771bcabe67045b08ebc4a7de3da6a40", "pid": "A003399601", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003399601", "source": "RERO"}], "preferred_name": "Inamoto, Noboru", "authorized_access_point": "Inamoto, Noboru"} 1 +2024-09-11 09:06:36.692227 2024-09-11 09:06:36.692231 7c18168d-d3d4-492b-9b64-94dd3cff84f6 {"md5": "87f5d96f7f256fe89a5822d7f08f84e5", "pid": "A003401536", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003401536", "source": "RERO"}], "preferred_name": "Institut de Recherches Sociologiques Appliquées (Paris)", "authorized_access_point": "Institut de Recherches Sociologiques Appliquées (Paris)"} 1 +2024-09-11 09:06:36.744141 2024-09-11 09:06:36.744145 055da805-e988-4fa0-bcd8-404a881291f8 {"md5": "3659400fb7468d1a486e241f3b557213", "pid": "A003402056", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003402056", "source": "RERO"}], "preferred_name": "Institut für Jugendkunde (Bremen)", "authorized_access_point": "Institut für Jugendkunde (Bremen)"} 1 +2024-09-11 09:06:36.795654 2024-09-11 09:06:36.795658 2e657f6e-459b-4043-8363-fcf9e9120108 {"md5": "544621d434bc3b61f2a2ecf3bfbadfc7", "pid": "A003403470", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003403470", "source": "RERO"}], "preferred_name": "Institute of Cost and Management Accountants (London)", "authorized_access_point": "Institute of Cost and Management Accountants (London)"} 1 +2024-09-11 09:06:36.844508 2024-09-11 09:06:36.844512 3a63ccbb-475c-41cb-bb6a-afcdde5e1564 {"md5": "5fe3385e15eef6fa54eed98cb2ab40b1", "pid": "A003404800", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003404800", "source": "RERO"}], "preferred_name": "International Catholic-Jewish Liaison Committee", "authorized_access_point": "International Catholic-Jewish Liaison Committee"} 1 +2024-09-11 09:06:36.898132 2024-09-11 09:06:36.898137 f81ac5e9-6e8e-441b-8e07-98c9253854b3 {"md5": "084a28958725666bf5c704e0383d348c", "pid": "A003406290", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003406290", "source": "RERO"}], "variant_name": ["Provo International Conference on the Dead Sea Scrolls"], "preferred_name": "International Conference on the Dead Sea Scrolls (1996 :", "variant_access_point": ["Provo International Conference on the Dead Sea Scrolls"], "authorized_access_point": "International Conference on the Dead Sea Scrolls (1996 : Provo)"} 1 +2024-09-11 09:06:36.952933 2024-09-11 09:06:36.952941 05634571-b4d3-478a-ac7a-875d487a65c9 {"md5": "c0af0db025a73125af360458f96514f5", "pid": "A003411195", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003411195", "source": "RERO"}], "preferred_name": "Irimie-Fota, Rodica", "authorized_access_point": "Irimie-Fota, Rodica"} 1 +2024-09-11 09:06:37.006496 2024-09-11 09:06:37.006499 a420d31e-1caf-44a8-888b-a3a11f23193e {"md5": "9109c0dcb2aa73baeea9cf6806f689fd", "pid": "A003413213", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003413213", "source": "RERO"}], "preferred_name": "Istituto per la storia del Mezzogiorno (Roma / Lecce)", "authorized_access_point": "Istituto per la storia del Mezzogiorno (Roma / Lecce)"} 1 +2024-09-11 09:06:37.059091 2024-09-11 09:06:37.059095 6af44fdf-eaf9-44c0-a7a2-931c2e60d3e2 {"md5": "977f3542c27ab1120edb15c29e82252c", "pid": "A003413435", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003413435", "source": "RERO"}], "preferred_name": "Istituto universitario orientale (Napoli). Dipartimento di studi del mondo classico e del Mediterraneo antico. Sezione linguistica", "authorized_access_point": "Istituto universitario orientale (Napoli). Dipartimento di studi del mondo classico e del Mediterraneo antico. Sezione linguistica"} 1 +2024-09-11 09:06:37.112752 2024-09-11 09:06:37.112757 81f9c769-0dd9-47bb-881b-9612cba8ab03 {"md5": "949d0c540c6a9086ecae781a4a6b3fbf", "pid": "A003416346", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003416346", "source": "RERO"}], "preferred_name": "Jacobsen, Thorkild", "authorized_access_point": "Jacobsen, Thorkild"} 1 +2024-09-11 09:06:37.208922 2024-09-11 09:06:37.208927 357fbb1c-a5ef-422b-bb46-01891237553f {"md5": "7b66454c3bcf9d6823a37771f5e7e0a0", "pid": "A003418109", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003418109", "source": "RERO"}], "preferred_name": "Jain, Mahendra Kumar", "authorized_access_point": "Jain, Mahendra Kumar"} 1 +2024-09-11 09:06:37.282533 2024-09-11 09:06:37.282536 7df4e867-c609-4058-8df1-d6300a2a638b {"md5": "610062434532943b04bfdb82bbb87d15", "pid": "A003418336", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003418336", "source": "RERO"}], "preferred_name": "Jakoby, Richard", "authorized_access_point": "Jakoby, Richard"} 1 +2024-09-11 09:06:37.335843 2024-09-11 09:06:37.335846 0b6b37ca-f312-4f9d-8785-672aa261362b {"md5": "f6796885495a639215318599f454ec46", "pid": "A003421420", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003421420", "source": "RERO"}], "preferred_name": "Jarre-Chardin, Paule", "authorized_access_point": "Jarre-Chardin, Paule"} 1 +2024-09-11 09:06:37.386661 2024-09-11 09:06:37.386666 bbc3f8da-c234-4b46-926a-32315ef4dbeb {"md5": "db87925bb5d39a74baf09bcf632e4866", "pid": "A003421797", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003421797", "source": "RERO"}], "preferred_name": "Jastrzębiec-Zielonka, Ludwik", "authorized_access_point": "Jastrzębiec-Zielonka, Ludwik"} 1 +2024-09-11 09:06:37.443942 2024-09-11 09:06:37.443945 15cc3716-cbbb-4096-88f1-4a88293a4a26 {"md5": "86fe1ab870b23eb0fa10e489be4662ac", "pid": "A003422794", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003422794", "source": "RERO"}], "preferred_name": "Jeanneret, Jean-Gustave", "authorized_access_point": "Jeanneret, Jean-Gustave"} 1 +2024-09-11 09:06:37.497289 2024-09-11 09:06:37.497294 4af60499-1458-4e49-b805-07f326656d7a {"md5": "53c4662472f96f82f10dcdde1e7388d3", "pid": "A003427813", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003427813", "source": "RERO"}], "preferred_name": "Johnson, John F", "authorized_access_point": "Johnson, John F"} 1 +2024-09-11 09:06:37.559804 2024-09-11 09:06:37.559809 b7fbfdff-f1d4-427c-80c1-7385e07ec111 {"md5": "cf1e2b9cfa2545401087d39e41b8167b", "pid": "A003428330", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003428330", "source": "RERO"}], "preferred_name": "Johnston, Howard", "authorized_access_point": "Johnston, Howard"} 1 +2024-09-11 09:06:37.611983 2024-09-11 09:06:37.611987 d1dc1bc3-8e19-45c4-94fb-744a177a2228 {"md5": "d446bfcc9f28e2fb08fe52cf99e63920", "pid": "A003428443", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003428443", "source": "RERO"}], "preferred_name": "Johnstone, Christopher Lyle", "authorized_access_point": "Johnstone, Christopher Lyle"} 1 +2024-09-11 09:06:37.665917 2024-09-11 09:06:37.665923 3a7cdfff-0918-4180-91ae-d6b45373edeb {"md5": "50ede554a2309f32eb1398346de27a86", "pid": "A003435187", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003435187", "source": "RERO"}], "preferred_name": "Jungkuntz, Theodore Robert", "authorized_access_point": "Jungkuntz, Theodore Robert"} 1 +2024-09-11 09:06:37.72116 2024-09-11 09:06:37.721163 efd43f1b-2008-4426-a712-9b7ea495ae24 {"md5": "66c350f146561a97a30f5d926386caca", "pid": "A003435467", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003435467", "source": "RERO"}], "preferred_name": "Junod, Samuel", "authorized_access_point": "Junod, Samuel"} 1 +2024-09-11 09:06:37.775841 2024-09-11 09:06:37.775846 ad03bf3a-aeaa-4b65-a35f-c79a29894a9a {"md5": "bc9ab8488c174e65f1839bc619c156c4", "pid": "A003436041", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003436041", "source": "RERO"}], "preferred_name": "Juteau, Danielle", "authorized_access_point": "Juteau, Danielle"} 1 +2024-09-11 09:06:37.857083 2024-09-11 09:06:37.857087 6b3e99d3-437f-4e03-99f5-fd0d078c96c5 {"md5": "f863fdf87c2c83b28bd5124348a6373d", "pid": "A003441673", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003441673", "source": "RERO"}], "preferred_name": "Kaplan, Robert B", "authorized_access_point": "Kaplan, Robert B"} 1 +2024-09-11 09:06:37.929221 2024-09-11 09:06:37.929225 a70559f4-91e9-4d3b-a20e-0f0802090057 {"md5": "b49368b13fc7b623d3f47bf788bb7bfb", "pid": "A003449705", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003449705", "source": "RERO"}], "preferred_name": "Kent Archaeological Rescue Unit", "authorized_access_point": "Kent Archaeological Rescue Unit"} 1 +2024-09-11 09:06:37.982006 2024-09-11 09:06:37.982011 116b76df-f6b3-44d1-9df3-06e34a3e0961 {"md5": "739e0216a2835bfb52f0b77619d65686", "pid": "A003449812", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003449812", "source": "RERO"}], "preferred_name": "Kenton, Susannah", "authorized_access_point": "Kenton, Susannah"} 1 +2024-09-11 09:06:38.034856 2024-09-11 09:06:38.034859 369f49e1-6d30-4660-8082-338dbf9413ca {"md5": "d2af7c8da1739784e2827e4009d019d6", "pid": "A003450257", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003450257", "source": "RERO"}], "preferred_name": "Kerlor, Anne", "authorized_access_point": "Kerlor, Anne"} 1 +2024-09-11 09:06:38.089251 2024-09-11 09:06:38.089256 ac0665b8-1a43-4d7d-9629-d223b3585fc4 {"md5": "f8781b3943614e3bad9b3f87628d0e54", "pid": "A003451220", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003451220", "source": "RERO"}], "preferred_name": "Kessler, Herbert", "authorized_access_point": "Kessler, Herbert"} 1 +2024-09-11 09:06:38.140217 2024-09-11 09:06:38.140221 0b837e88-b4fe-457c-97c0-0af962d0f60e {"md5": "dff93cb68e41ac3164a4f553e4d8b422", "pid": "A003453966", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003453966", "source": "RERO"}], "preferred_name": "Kim, Il-Su", "authorized_access_point": "Kim, Il-Su"} 1 +2024-09-11 09:06:38.193517 2024-09-11 09:06:38.19352 7baf40c7-b27b-461c-9655-95751a02fc31 {"md5": "4e8d8d166e298e83d314de716f8801d3", "pid": "A003454418", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003454418", "source": "RERO"}], "preferred_name": "Kind, Norbert", "authorized_access_point": "Kind, Norbert"} 1 +2024-09-11 09:06:38.246896 2024-09-11 09:06:38.246899 03b3ea13-f456-4818-835f-130ea496d423 {"md5": "1e54d1f9614db62704b3f8c7810e038b", "pid": "A003454993", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003454993", "source": "RERO"}], "preferred_name": "Kingma, J", "authorized_access_point": "Kingma, J"} 1 +2024-09-11 09:06:38.309596 2024-09-11 09:06:38.309601 1cc952eb-b6b1-42a8-9c63-96712b5cb49e {"md5": "98cc5e730bd7ee8b6087119afeb01e87", "pid": "A003462661", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003462661", "source": "RERO"}], "preferred_name": "Knudsen, Robert D", "authorized_access_point": "Knudsen, Robert D"} 1 +2024-09-11 09:06:38.364343 2024-09-11 09:06:38.364348 bef72ac5-2d4a-48ae-bba5-c4785fa0b2b4 {"md5": "acd7d01b2731aeb089232a359dd67bf5", "pid": "A003469619", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003469619", "source": "RERO"}], "preferred_name": "Kossmann, Ernst Heinrich", "authorized_access_point": "Kossmann, Ernst Heinrich"} 1 +2024-09-11 09:06:38.419541 2024-09-11 09:06:38.419548 91697a6c-8323-4807-9818-bebddb2db014 {"md5": "350621d911ac08a24fa5a81742ecbb66", "pid": "A003471135", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003471135", "source": "RERO"}], "preferred_name": "Kozlowski, Richard", "authorized_access_point": "Kozlowski, Richard"} 1 +2024-09-11 09:06:38.508347 2024-09-11 09:06:38.508352 3c48a65d-8428-44d8-963c-17b743dfcdc0 {"md5": "43de92cfba3d47a8e5417678b987e5ea", "pid": "A003471767", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003471767", "source": "RERO"}], "preferred_name": "Kraft, Roger", "authorized_access_point": "Kraft, Roger"} 1 +2024-09-11 09:06:38.570844 2024-09-11 09:06:38.570848 e1427395-129f-411c-a957-196019184647 {"md5": "a3f96b3f0872734c6820d07307093512", "pid": "A003477398", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003477398", "source": "RERO"}], "preferred_name": "Krüger, Sabine", "authorized_access_point": "Krüger, Sabine"} 1 +2024-09-11 09:06:38.630606 2024-09-11 09:06:38.630611 75691c0d-0992-4fa6-aab2-20ccf4fad0ee {"md5": "f96a48df8d5f87f0ad050e7b2f73f0ed", "pid": "A003483779", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003483779", "source": "RERO"}], "preferred_name": "Kübler, E", "authorized_access_point": "Kübler, E"} 1 +2024-09-11 09:06:38.684216 2024-09-11 09:06:38.684219 6bc97720-2472-4dfd-b72d-68a1ff9188ec {"md5": "c44ce6c109fb8a73c14c5d1d9d957ece", "pid": "A003483806", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003483806", "source": "RERO"}], "preferred_name": "Kübler, W", "authorized_access_point": "Kübler, W"} 1 +2024-09-11 09:06:38.743361 2024-09-11 09:06:38.743365 d0bb8168-973b-4210-a255-092e6af660d5 {"md5": "6dab1f00cd6f0558989e6d4f6827f755", "pid": "A003484799", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003484799", "source": "RERO"}], "preferred_name": "Kéry, Bertalan", "authorized_access_point": "Kéry, Bertalan"} 1 +2024-09-11 09:06:38.799263 2024-09-11 09:06:38.799268 4b948961-c493-4bc9-a92a-d3abc0a9af60 {"md5": "959b6f1f21db18c51c92c12dd10bd23b", "pid": "A003488727", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003488727", "source": "RERO"}], "preferred_name": "Laffont, Pierre", "authorized_access_point": "Laffont, Pierre"} 1 +2024-09-11 09:06:38.864346 2024-09-11 09:06:38.864351 82d75cb9-146e-4c8d-ba73-6fe2ae43463f {"md5": "89246e128d554c80e14fc88aa0102681", "pid": "A003489212", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003489212", "source": "RERO"}], "preferred_name": "Lagerberg, Eric", "authorized_access_point": "Lagerberg, Eric"} 1 +2024-09-11 09:06:38.921791 2024-09-11 09:06:38.921797 7e2cc628-3a88-4e78-bd08-944ed0e6eb97 {"md5": "2aca831dcf10e3e52847e91a6648be44", "pid": "A003489450", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003489450", "source": "RERO"}], "preferred_name": "Lagowski, Jeanne M", "authorized_access_point": "Lagowski, Jeanne M"} 1 +2024-09-11 09:06:38.990709 2024-09-11 09:06:38.990713 d53045bc-d00c-4f39-be7e-d5ffd53268f5 {"md5": "86ddedc3281e872e808bd08e5b70cf06", "pid": "A003490603", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003490603", "source": "RERO"}], "preferred_name": "Lalonde, M", "authorized_access_point": "Lalonde, M"} 1 +2024-09-11 09:06:39.047866 2024-09-11 09:06:39.047871 4f52c075-1386-49d1-b3b6-8d7423edbfc8 {"md5": "6dd3ccbeb66542c91f5b161e5d0e654a", "pid": "A003491429", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003491429", "source": "RERO"}], "variant_name": ["Lambert, William Wilson"], "preferred_name": "Lambert, William W", "variant_access_point": ["Lambert, William Wilson"], "authorized_access_point": "Lambert, William W"} 1 +2024-09-11 09:06:39.112614 2024-09-11 09:06:39.112618 e2f01289-fcd0-40a7-ab61-bc74533ff0cb {"md5": "0a162818d23f0154c37268809321b85a", "pid": "A003491460", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003491460", "source": "RERO"}], "preferred_name": "Lamberti, Franco", "authorized_access_point": "Lamberti, Franco"} 1 +2024-09-11 09:06:39.169236 2024-09-11 09:06:39.169239 becdd82c-b54d-41bb-9582-75829d643f66 {"md5": "f17b047068d7f9b9a5efc927bb305448", "pid": "A003491484", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003491484", "source": "RERO"}], "preferred_name": "Lamberton, Ch", "authorized_access_point": "Lamberton, Ch"} 1 +2024-09-11 09:06:39.233038 2024-09-11 09:06:39.233041 9c59c581-79ae-49c0-9bdb-368fac2ed4d8 {"md5": "54ad21498dc9d174376b20e05f0ab7b8", "pid": "A003492458", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003492458", "source": "RERO"}], "preferred_name": "Lanati, Barbara", "authorized_access_point": "Lanati, Barbara"} 1 +2024-09-11 09:06:39.283368 2024-09-11 09:06:39.283371 72ef4cfd-59d2-4dd6-a669-082b9374a441 {"md5": "9951347bd0576bb2175272093e782dba", "pid": "A003494285", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003494285", "source": "RERO"}], "preferred_name": "Lange, Bastian", "authorized_access_point": "Lange, Bastian"} 1 +2024-09-11 09:06:39.348739 2024-09-11 09:06:39.348743 b074d547-02bc-49ae-9f16-6b968978b040 {"md5": "f5e1490ad7955fcb2f77dfefe4672637", "pid": "A003497728", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003497728", "source": "RERO"}], "preferred_name": "Lascarides, Emanuel", "authorized_access_point": "Lascarides, Emanuel"} 1 +2024-09-11 09:06:39.435858 2024-09-11 09:06:39.435862 96dca268-8ecc-4053-bd66-942b2ca6b78b {"md5": "94874382962ee9656c6328684b7d6190", "pid": "A003501142", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003501142", "source": "RERO"}], "preferred_name": "Lavenarde, J", "authorized_access_point": "Lavenarde, J"} 1 +2024-09-11 09:06:39.495233 2024-09-11 09:06:39.495237 48572e8f-71b8-4182-9675-02c173599819 {"md5": "8fa4557eb205d7e864ac296f7acae18b", "pid": "A003507812", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003507812", "source": "RERO"}], "preferred_name": "Leeson, Frank", "authorized_access_point": "Leeson, Frank"} 1 +2024-09-11 09:06:39.546293 2024-09-11 09:06:39.546298 04a8cb80-b26f-48ab-b61c-19a9728cdc41 {"md5": "cdd0fd89744e0d324c17eb96813fd850", "pid": "A003508662", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003508662", "source": "RERO"}], "preferred_name": "Legorjus, Philippe", "authorized_access_point": "Legorjus, Philippe"} 1 +2024-09-11 09:06:39.609191 2024-09-11 09:06:39.609195 19775d10-b7cb-4336-8ee8-9bbc75abd5c0 {"md5": "aa9891ffc52744abc271e919ccca1734", "pid": "A003510150", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003510150", "source": "RERO"}], "preferred_name": "Leimberg, Inge", "authorized_access_point": "Leimberg, Inge"} 1 +2024-09-11 09:06:39.661605 2024-09-11 09:06:39.661609 8c6f85d1-bc91-45e5-bac4-6f29a6e90551 {"md5": "fa09a35ad27437da480c980a7a3af405", "pid": "A003511981", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003511981", "source": "RERO"}], "preferred_name": "Lenaz, Luciano", "authorized_access_point": "Lenaz, Luciano"} 1 +2024-09-11 09:06:39.717503 2024-09-11 09:06:39.717506 6404155d-31d6-43c0-a0b9-0ff10b2cd7e8 {"md5": "ce25bf24e41706340db45f5d8e8c1b33", "pid": "A003514292", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003514292", "source": "RERO"}], "preferred_name": "Leron, Uri", "authorized_access_point": "Leron, Uri"} 1 +2024-09-11 09:06:39.780976 2024-09-11 09:06:39.780979 90644685-b6f2-4d31-b720-64333f7423fd {"md5": "4518daa54655f593d62b5ead59fbc95a", "pid": "A003516733", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003516733", "source": "RERO"}], "date_of_birth": "1839", "date_of_death": "1900", "preferred_name": "Levi, Hermann,", "authorized_access_point": "Levi, Hermann, 1839-1900"} 1 +2024-09-11 09:06:39.845817 2024-09-11 09:06:39.845821 76fac601-0763-42ee-905c-56e01aa87c25 {"md5": "3cb062ce7c44f38a6b81ad2f6fc69d1d", "pid": "A003517040", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003517040", "source": "RERO"}], "preferred_name": "Levine, Daniel U", "authorized_access_point": "Levine, Daniel U"} 1 +2024-09-11 09:06:39.901415 2024-09-11 09:06:39.90142 2fbee953-7a02-427e-81af-9e0b0a54d21e {"md5": "e793a3f5fb3acd697c63062b436f8685", "pid": "A003517060", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003517060", "source": "RERO"}], "preferred_name": "Levine, Gemma", "authorized_access_point": "Levine, Gemma"} 1 +2024-09-11 09:06:39.956017 2024-09-11 09:06:39.95602 91434d37-4892-4e7b-abca-26ea72983c3d {"md5": "078ccbf4fd4b12070f37df9917273ddf", "pid": "A003518724", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003518724", "source": "RERO"}], "preferred_name": "León Rey, José Antonio", "authorized_access_point": "León Rey, José Antonio"} 1 +2024-09-11 09:06:40.009332 2024-09-11 09:06:40.009338 d67996b9-a813-4055-9528-1e99958c3652 {"md5": "c77704ada01a5e5497d8dead08fbea96", "pid": "A003520958", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003520958", "source": "RERO"}], "preferred_name": "Liesegang, Helmuth", "authorized_access_point": "Liesegang, Helmuth"} 1 +2024-09-11 09:06:40.07171 2024-09-11 09:06:40.071713 74248fa5-7437-4d07-92f7-3f9d8934f17f {"md5": "c6e4ed400d4b199e71fc7e31775b4414", "pid": "A003531526", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003531526", "source": "RERO"}], "preferred_name": "Lornell, Kip", "authorized_access_point": "Lornell, Kip"} 1 +2024-09-11 09:06:40.133864 2024-09-11 09:06:40.133868 22d329fc-ad8d-4da7-ab88-8da027b96f7e {"md5": "c0a27628458967367b082773fa65f5c5", "pid": "A003531595", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003531595", "source": "RERO"}], "variant_name": ["Jacob, Bernard Lortat-,"], "date_of_birth": "1941", "preferred_name": "Lortat-Jacob, Bernard,", "variant_access_point": ["Jacob, Bernard Lortat-, 1941-"], "authorized_access_point": "Lortat-Jacob, Bernard, 1941-", "biographical_information": ["Ethnomusicologue. - Directeur de recherche au CNRS et responsable du Laboratoire d'ethnomusicologie CBRS du Musée de l'homme, Paris (en 2001)"]} 1 +2024-09-11 09:06:40.197605 2024-09-11 09:06:40.197609 3a8b0a68-502c-4332-97d6-98a29c6e52af {"md5": "59cc44a7401095281d1a7498a0f9f69a", "pid": "A003531943", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003531943", "source": "RERO"}], "preferred_name": "Lot, Fernand", "authorized_access_point": "Lot, Fernand"} 1 +2024-09-11 09:06:40.259655 2024-09-11 09:06:40.259659 230ec401-ed51-4c6c-815e-455a199611e0 {"md5": "9966882353c62f7a18e47496f03bd6fa", "pid": "A003538407", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003538407", "source": "RERO"}], "preferred_name": "Lye, Kare Arnstein", "authorized_access_point": "Lye, Kare Arnstein"} 1 +2024-09-11 09:06:40.31218 2024-09-11 09:06:40.312184 ed021c51-1cee-4ea0-af32-b90c0ba8eecd {"md5": "2935477aad326030aaadb4719d97130c", "pid": "A003542278", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003542278", "source": "RERO"}], "preferred_name": "MacBeth, Brian S", "authorized_access_point": "MacBeth, Brian S"} 1 +2024-09-11 09:06:40.365724 2024-09-11 09:06:40.365727 f72eb702-ec0a-4d7a-8734-cd7ac99ad40a {"md5": "4fe4acaa77000e83d0e50eff21b420bd", "pid": "A003543183", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003543183", "source": "RERO"}], "preferred_name": "Macconnell, R.A", "authorized_access_point": "Macconnell, R.A"} 1 +2024-09-11 09:06:40.415612 2024-09-11 09:06:40.415617 f20b80c8-e05c-4cc7-b1eb-e5601f0882ec {"md5": "6c52e437a8e574b53c7a04bd617a50cd", "pid": "A003544201", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003544201", "source": "RERO"}], "variant_name": ["MacEachern, Claire,", "Mac Eachern, Claire,", "Mc Eachern, Claire,"], "date_of_birth": "1963", "preferred_name": "McEachern, Claire,", "variant_access_point": ["MacEachern, Claire, 1963-", "Mac Eachern, Claire, 1963-", "Mc Eachern, Claire, 1963-"], "authorized_access_point": "McEachern, Claire, 1963-"} 1 +2024-09-11 09:06:40.47027 2024-09-11 09:06:40.470273 5fb08c8c-9057-4f97-9057-6ebb4108a1ef {"md5": "d6860a6179c7f7d4a6e126cf1740ff9b", "pid": "A003546689", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003546689", "source": "RERO"}], "preferred_name": "MacLaughlin, John A", "authorized_access_point": "MacLaughlin, John A"} 1 +2024-09-11 09:06:40.539417 2024-09-11 09:06:40.539421 f7e791c0-cbfb-4a9b-bf51-f74c156c0cee {"md5": "a77156e43114df61facb1387a2f8a7c3", "pid": "A003550856", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003550856", "source": "RERO"}], "preferred_name": "Mahlow, Georg Heinrich", "authorized_access_point": "Mahlow, Georg Heinrich"} 1 +2024-09-11 09:06:40.592233 2024-09-11 09:06:40.592237 46ae6eac-d516-40a4-b4b0-57333b676d14 {"md5": "16c27c66e070ca7eaa2dd19a73f0e374", "pid": "A003552034", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003552034", "source": "RERO"}], "preferred_name": "Mainié, Philippe", "authorized_access_point": "Mainié, Philippe"} 1 +2024-09-11 09:06:40.654643 2024-09-11 09:06:40.654646 d8b549a3-773f-4ee5-a375-5827204753af {"md5": "4f6aa9b61ef2f888986f2daaa91cea0a", "pid": "A003552475", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003552475", "source": "RERO"}], "preferred_name": "Maister, David H", "authorized_access_point": "Maister, David H"} 1 +2024-09-11 09:06:40.725096 2024-09-11 09:06:40.725098 0f538920-f3de-4051-8cbb-899da492f464 {"md5": "13e98a9f97eee87781d5a266a6ce0246", "pid": "A003556987", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003556987", "source": "RERO"}], "preferred_name": "Maniguet, Xavier", "authorized_access_point": "Maniguet, Xavier"} 1 +2024-09-11 09:06:40.784057 2024-09-11 09:06:40.78406 b94ecf38-0938-40ca-b8e5-a1811c6de4d4 {"md5": "943e9e8299139b1b2349285ceb9a9eb9", "pid": "A003557648", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "marquise", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003557648", "source": "RERO"}], "variant_name": ["Coeur-Brûlant, vicomtesse de", "Manoury, H. de", "Ectot, H. de Mannoury d'", "Nicolas Le Blanc, H", "Le Blanc, H. Nicolas"], "preferred_name": "Mannoury d'Ectot, H. de, marquise", "variant_access_point": ["Coeur-Brûlant, vicomtesse de", "Manoury, H. de", "Ectot, H. de Mannoury d'", "Nicolas Le Blanc, H", "Le Blanc, H. Nicolas"], "authorized_access_point": "Mannoury d'Ectot, H. de, marquise"} 1 +2024-09-11 09:06:40.83619 2024-09-11 09:06:40.836195 73faa2ac-5665-45cd-96dd-aa0c499d9c6c {"md5": "a68f37b7c3ec026493dc196cc66e8fb7", "pid": "A003557956", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003557956", "source": "RERO"}], "preferred_name": "Mansi, Mensi Nouri", "authorized_access_point": "Mansi, Mensi Nouri"} 1 +2024-09-11 09:06:40.887253 2024-09-11 09:06:40.887258 e1a6e7c8-6226-42a4-abc9-c47901a73a03 {"md5": "7baccdfcaf78638419e9077e5e647cec", "pid": "A003561750", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003561750", "source": "RERO"}], "preferred_name": "Mariani, Jean", "authorized_access_point": "Mariani, Jean"} 1 +2024-09-11 09:06:40.939527 2024-09-11 09:06:40.93953 8cc6d2f2-2cab-4011-a7e0-236798fa91bd {"md5": "7640d54dd88ccf5e1682ce0df64925b0", "pid": "A003562973", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003562973", "source": "RERO"}], "preferred_name": "Markham, Adam", "authorized_access_point": "Markham, Adam"} 1 +2024-09-11 09:06:41.00019 2024-09-11 09:06:41.000195 149df399-4f52-4a78-be35-1f6d7e09d5f3 {"md5": "fb7c95bfade2b261daaa12e431931916", "pid": "A003564111", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003564111", "source": "RERO"}], "preferred_name": "Marquis, Jean-François", "authorized_access_point": "Marquis, Jean-François"} 1 +2024-09-11 09:06:41.056015 2024-09-11 09:06:41.056018 ba5c0f79-2aff-4c46-b6a5-728fc7985429 {"md5": "bb505391558aa6c414d98c5cad5479a2", "pid": "A003566329", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003566329", "source": "RERO"}], "preferred_name": "Martin, James G", "authorized_access_point": "Martin, James G"} 1 +2024-09-11 09:06:41.113645 2024-09-11 09:06:41.11365 230e0102-e64e-45e6-8ffb-ae828df58030 {"md5": "355d08b0fa9ef833628588919c2a0800", "pid": "A003568779", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003568779", "source": "RERO"}], "preferred_name": "Marvelli, Sergio", "authorized_access_point": "Marvelli, Sergio"} 1 +2024-09-11 09:06:41.16539 2024-09-11 09:06:41.165393 3217c3f8-263c-4549-8a41-b02266adbbb0 {"md5": "ed92c73473ac8e99dea9c80489edff08", "pid": "A003569699", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003569699", "source": "RERO"}], "preferred_name": "Masera, Carlo", "authorized_access_point": "Masera, Carlo"} 1 +2024-09-11 09:06:41.221458 2024-09-11 09:06:41.221463 f3472ec7-04a4-4e6e-971c-a72ab5812aa9 {"md5": "18ccb45702763f1162a57d1478f03ecf", "pid": "A003572511", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003572511", "source": "RERO"}], "preferred_name": "Matko, Dubravko J.I", "authorized_access_point": "Matko, Dubravko J.I"} 1 +2024-09-11 09:06:41.291644 2024-09-11 09:06:41.291648 c01dffbc-6a65-423b-a851-1fc76d2fe739 {"md5": "e956e667d7be45d355c6a446f66aa27f", "pid": "A003572877", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003572877", "source": "RERO"}], "preferred_name": "Matteaccioli, Andrée", "authorized_access_point": "Matteaccioli, Andrée"} 1 +2024-09-11 09:06:41.349113 2024-09-11 09:06:41.349116 9d4414a2-25b5-478e-9928-b734848425da {"md5": "0117206ed9e408389cfefe1c9368a649", "pid": "A003575662", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003575662", "source": "RERO"}], "preferred_name": "Mavituna, Ferda", "authorized_access_point": "Mavituna, Ferda"} 1 +2024-09-11 09:06:41.420211 2024-09-11 09:06:41.420216 d11e83d7-2ad9-4599-94a5-01cb4766d1d9 {"md5": "f632067011ea41ce2e79a54ce1652963", "pid": "A003578228", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003578228", "source": "RERO"}], "preferred_name": "Mazé, Philippe", "authorized_access_point": "Mazé, Philippe"} 1 +2024-09-11 09:06:41.479753 2024-09-11 09:06:41.479758 25d74ae7-9629-4257-8565-3bad8592ae1f {"md5": "620d6d24ca1aaa67d735cdd7a3e9aa9d", "pid": "A003582881", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003582881", "source": "RERO"}], "preferred_name": "Menakaya, Clara Ogugua Ch. Nwabufo", "authorized_access_point": "Menakaya, Clara Ogugua Ch. Nwabufo"} 1 +2024-09-11 09:06:41.536244 2024-09-11 09:06:41.536247 1013373d-8954-4c1b-8c1f-50848bf3f4c3 {"md5": "af482fc8317de8c0f35ddb98fe0be7eb", "pid": "A003588222", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003588222", "source": "RERO"}], "preferred_name": "Metzger, Othmar", "authorized_access_point": "Metzger, Othmar"} 1 +2024-09-11 09:06:41.58802 2024-09-11 09:06:41.588024 cf606944-3fae-4588-b743-ac932f9011ff {"md5": "f8d79bd51e41fabbb1cf55fedbfab403", "pid": "A003588933", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003588933", "source": "RERO"}], "preferred_name": "Meyer, Armand", "authorized_access_point": "Meyer, Armand"} 1 +2024-09-11 09:06:41.649786 2024-09-11 09:06:41.64979 e92500ce-f798-4164-80ef-a5d86cc03a10 {"md5": "6f0576e42d780dadc34d0bf6ba7d358e", "pid": "A003594199", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003594199", "source": "RERO"}], "preferred_name": "Milanowski, Włodzimierz", "authorized_access_point": "Milanowski, Włodzimierz"} 1 +2024-09-11 09:06:41.710609 2024-09-11 09:06:41.710613 dac0fb19-4625-4549-bf7e-c4583990894e {"md5": "451cc672e33d638e35451be865a4e493", "pid": "A003596440", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003596440", "source": "RERO"}], "preferred_name": "Milne, Herbert John Mansfield", "authorized_access_point": "Milne, Herbert John Mansfield"} 1 +2024-09-11 09:06:41.766434 2024-09-11 09:06:41.766438 b2116f3a-7e16-4b87-8083-eb080df63e53 {"md5": "2a5a031ae768b08c44f121f135e01a12", "pid": "A003597080", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003597080", "source": "RERO"}], "preferred_name": "Mineo, Ennio Igor", "authorized_access_point": "Mineo, Ennio Igor"} 1 +2024-09-11 09:06:41.819939 2024-09-11 09:06:41.819943 c3225cb9-111e-4b2f-af6e-10fca750e25c {"md5": "f9340be2272943cf1aea7b3ac285aa41", "pid": "A003600525", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003600525", "source": "RERO"}], "preferred_name": "Modern Critical Theory Group (Cambridge)", "authorized_access_point": "Modern Critical Theory Group (Cambridge)"} 1 +2024-09-11 09:06:41.88792 2024-09-11 09:06:41.887923 fb9cf3c6-b96c-455c-94dd-d7b3e0ee4421 {"md5": "d4f7c1e03ab3730ad7f56b2d4eaf7ae5", "pid": "A003600526", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003600526", "source": "RERO"}], "preferred_name": "Modern Foreign Language Study", "authorized_access_point": "Modern Foreign Language Study"} 1 +2024-09-11 09:06:41.943728 2024-09-11 09:06:41.943733 5c4770e4-4ba8-40fd-9717-8ba55a56cad3 {"md5": "3a78db24e49169038f9826771c266159", "pid": "A003604534", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003604534", "source": "RERO"}], "preferred_name": "Monroe, Burt L", "authorized_access_point": "Monroe, Burt L"} 1 +2024-09-11 09:06:41.994131 2024-09-11 09:06:41.994135 a392f70f-eb36-4bb2-99f8-c6bddb84c054 {"md5": "7f1b26eb953612ab717656435cf2e1ca", "pid": "A003610796", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003610796", "source": "RERO"}], "preferred_name": "Morozzi, Cristina", "authorized_access_point": "Morozzi, Cristina"} 1 +2024-09-11 09:06:42.049443 2024-09-11 09:06:42.049446 5ef9ab4e-23c3-491b-ba91-99388d5c3250 {"md5": "f981347f8f321b3b409ec621c6d4b3e1", "pid": "A003611548", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003611548", "source": "RERO"}], "preferred_name": "Morse, Marston", "authorized_access_point": "Morse, Marston"} 1 +2024-09-11 09:06:42.10331 2024-09-11 09:06:42.103313 901d64dc-be05-4573-a219-e2bc2600876a {"md5": "03812fa22c311b611632cccb6400108e", "pid": "A003613760", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003613760", "source": "RERO"}], "preferred_name": "Mouché, Maman dan", "authorized_access_point": "Mouché, Maman dan"} 1 +2024-09-11 09:06:42.15887 2024-09-11 09:06:42.158874 8ad598e9-b278-4c0d-abf3-2c8a1bb54896 {"md5": "db151744fa116052e3cf91cbc51efd64", "pid": "A003618731", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003618731", "source": "RERO"}], "preferred_name": "Munro, J.L", "authorized_access_point": "Munro, J.L"} 1 +2024-09-11 09:06:42.213166 2024-09-11 09:06:42.21317 a7e0469d-2d05-4d85-8b33-008a1485cee7 {"md5": "26c52053c06687ac4e19efa3f94a18cc", "pid": "A003618791", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003618791", "source": "RERO"}], "preferred_name": "Munsinger, Harry", "authorized_access_point": "Munsinger, Harry"} 1 +2024-09-11 09:06:42.264759 2024-09-11 09:06:42.264764 8805c615-0ddd-4f3d-8b81-fd2c78f7129e {"md5": "c1ea018e7e0446ec27d3f7e878f6d914", "pid": "A003618794", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003618794", "source": "RERO"}], "preferred_name": "Munslow, Alun", "authorized_access_point": "Munslow, Alun"} 1 +2024-09-11 09:06:42.331093 2024-09-11 09:06:42.331097 97c12a76-fc53-485f-a0df-a0b36cbfc559 {"md5": "2f63a34fc03f50a4a6c3895b4b13700a", "pid": "A003619989", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003619989", "source": "RERO"}], "preferred_name": "Murray, Kate", "authorized_access_point": "Murray, Kate"} 1 +2024-09-11 09:06:42.387351 2024-09-11 09:06:42.387357 d9a62819-2fa0-4d59-ac50-5dece000d181 {"md5": "928238cce2897b4e8b96882ca3c8502c", "pid": "A003620019", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003620019", "source": "RERO"}], "preferred_name": "Murray, Mike", "authorized_access_point": "Murray, Mike"} 1 +2024-09-11 09:06:42.443216 2024-09-11 09:06:42.443218 13838039-880c-4bc8-a717-7c7b45ff6524 {"md5": "fa488606194483924029a109ab70fd14", "pid": "A003620351", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003620351", "source": "RERO"}], "preferred_name": "Muschallik, Thomas", "authorized_access_point": "Muschallik, Thomas"} 1 +2024-09-11 09:06:42.496964 2024-09-11 09:06:42.496969 8ec6b58d-feb7-4f6f-87c7-4d9cee0d2cd8 {"md5": "cba71aa09a3ccb21e0402a25e07eb563", "pid": "A003621449", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003621449", "source": "RERO"}], "preferred_name": "Muzzioli, Maria Pia", "authorized_access_point": "Muzzioli, Maria Pia"} 1 +2024-09-11 09:06:42.549596 2024-09-11 09:06:42.549602 44241709-7f40-4864-8704-05c71af57e3f {"md5": "c0e3babf07cb71369201146dc66b7efe", "pid": "A003625161", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003625161", "source": "RERO"}], "preferred_name": "Münichsdorfer, Friedrich", "authorized_access_point": "Münichsdorfer, Friedrich"} 1 +2024-09-11 09:06:42.608703 2024-09-11 09:06:42.608706 44106e24-79be-45e9-a874-44f595e78fe1 {"md5": "49e208b41285f70d396f7ab2f30fdba2", "pid": "A003630712", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003630712", "source": "RERO"}], "preferred_name": "Nations Unies. Comité de l'habitation, de la construction et de la planification", "authorized_access_point": "Nations Unies. Comité de l'habitation, de la construction et de la planification"} 1 +2024-09-11 09:06:42.661684 2024-09-11 09:06:42.661688 d792b965-c749-4b74-ad51-d95467d61591 {"md5": "ed1996968f30150990004871efbea6ca", "pid": "A003632361", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003632361", "source": "RERO"}], "preferred_name": "Navacelle, Geoffroy de", "authorized_access_point": "Navacelle, Geoffroy de"} 1 +2024-09-11 09:06:42.725971 2024-09-11 09:06:42.725976 d1380bfd-01f2-4ecc-814c-9dc090922e1b {"md5": "eba46072ec6925c98098707708bbfe72", "pid": "A003637861", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003637861", "source": "RERO"}], "preferred_name": "Newman, Jacob", "authorized_access_point": "Newman, Jacob"} 1 +2024-09-11 09:06:42.77835 2024-09-11 09:06:42.778354 4ffb922d-3850-4c2b-96b2-5d421ad529bb {"md5": "882efd6f0517448424176b074f41583c", "pid": "A003640740", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003640740", "source": "RERO"}], "preferred_name": "Nielsen, Sandra L", "authorized_access_point": "Nielsen, Sandra L"} 1 +2024-09-11 09:06:42.832819 2024-09-11 09:06:42.832823 b366275a-ecfb-4e5a-b184-e23e2dd82f26 {"md5": "58fc2b0452f24b988d9a32ceddd2eb38", "pid": "A003641265", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003641265", "source": "RERO"}], "preferred_name": "Nievergelt, Dieter", "authorized_access_point": "Nievergelt, Dieter"} 1 +2024-09-11 09:06:42.899232 2024-09-11 09:06:42.899235 82da7811-65bb-4ca6-944b-1fc037f8f336 {"md5": "98847b6e45f5de072db067af5d64f119", "pid": "A003645251", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003645251", "source": "RERO"}], "variant_name": ["Von Normann, Reinhard", "VonNormann, Reinhard"], "preferred_name": "Normann, Reinhard von", "variant_access_point": ["Von Normann, Reinhard", "VonNormann, Reinhard"], "authorized_access_point": "Normann, Reinhard von"} 1 +2024-09-11 09:06:42.964353 2024-09-11 09:06:42.964357 f021a336-91ea-4d80-b977-737eb7e7a9c2 {"md5": "6377cf94be564e89f031864e11dc88e7", "pid": "A003648696", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003648696", "source": "RERO"}], "preferred_name": "Nübling, Rüdiger", "authorized_access_point": "Nübling, Rüdiger"} 1 +2024-09-11 09:06:43.018657 2024-09-11 09:06:43.018662 46a4e221-db73-45b7-b3b1-e2ccce8f649d {"md5": "bbb5b5c152055c073fdab0d1e8612096", "pid": "A003650297", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003650297", "source": "RERO"}], "preferred_name": "Oakes, Guy", "authorized_access_point": "Oakes, Guy"} 1 +2024-09-11 09:06:43.070949 2024-09-11 09:06:43.070952 56ab7802-c8c3-4ee4-b1ec-d1cbe177188b {"md5": "dae0b2c96f8427ff0ce131fcc21387fc", "pid": "A003650669", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003650669", "source": "RERO"}], "preferred_name": "Oberle, Birgitta E", "authorized_access_point": "Oberle, Birgitta E"} 1 +2024-09-11 09:06:43.126505 2024-09-11 09:06:43.126511 6b02963f-7757-433a-a399-d6165210fd18 {"md5": "df2b04bc0fe41f7c3043cf17f3cd49d6", "pid": "A003653616", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003653616", "source": "RERO"}], "preferred_name": "Ohler, Wolfgang", "authorized_access_point": "Ohler, Wolfgang"} 1 +2024-09-11 09:06:43.184253 2024-09-11 09:06:43.184258 db9409bc-5db2-40e5-8b8a-cfa86e80f640 {"md5": "4d7e8878400cbbd9c6f68731896f287a", "pid": "A003658765", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003658765", "source": "RERO"}], "preferred_name": "Oriol-Boyer, Claudette", "authorized_access_point": "Oriol-Boyer, Claudette"} 1 +2024-09-11 09:06:43.249726 2024-09-11 09:06:43.24973 05b49b8f-21a1-4526-b0a6-f80bc3b0bd91 {"md5": "e5cb0abf5467d6cabe2e449ba75d10c5", "pid": "A003660931", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003660931", "source": "RERO"}], "preferred_name": "Osthoff, Hans-Werner", "authorized_access_point": "Osthoff, Hans-Werner"} 1 +2024-09-11 09:06:43.306432 2024-09-11 09:06:43.306436 06268937-617f-42c4-a81c-36f8a1e6d717 {"md5": "b6ab55d01decefded4bb9e3b57704a04", "pid": "A003662299", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003662299", "source": "RERO"}], "preferred_name": "Ouellet, Raymond", "authorized_access_point": "Ouellet, Raymond"} 1 +2024-09-11 09:06:43.37536 2024-09-11 09:06:43.375365 fa786878-29b4-460c-96dd-5c8eb37370b5 {"md5": "2469772308854e15a5c8961281e803b3", "pid": "A003662624", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003662624", "source": "RERO"}], "preferred_name": "Ovalle Pacheco, Andrés", "authorized_access_point": "Ovalle Pacheco, Andrés"} 1 +2024-09-11 09:06:43.425292 2024-09-11 09:06:43.425296 a04c3160-ecf6-4dd8-ba84-295e13565936 {"md5": "153a09bb49fe9a0c3367c390b732cb9a", "pid": "A003671506", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003671506", "source": "RERO"}], "preferred_name": "Parks, R.D", "authorized_access_point": "Parks, R.D"} 1 +2024-09-11 09:06:43.47562 2024-09-11 09:06:43.475624 9027d473-b2dc-4a06-8720-d0d8905cebce {"md5": "41f56d7b07dbeb91d34444763dcc9e43", "pid": "A003672170", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003672170", "source": "RERO"}], "preferred_name": "Parry, Hugh", "authorized_access_point": "Parry, Hugh"} 1 +2024-09-11 09:06:43.528467 2024-09-11 09:06:43.528472 3d4f5ac9-2cc9-4bc0-9ed5-90d6057c888f {"md5": "0ad54c52b610b1356122ebf368dafed3", "pid": "A003673634", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003673634", "source": "RERO"}], "preferred_name": "Pasquier, René", "authorized_access_point": "Pasquier, René"} 1 +2024-09-11 09:06:43.579184 2024-09-11 09:06:43.579188 5a5a122d-6337-42bd-86e1-f414e41b01b2 {"md5": "054d616fd159f4b5bf88808c02b2909d", "pid": "A003677375", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003677375", "source": "RERO"}], "variant_name": ["País Vasco. Secrétariat général de l'action extérieure"], "preferred_name": "País Vasco. Secretaría general de acción exterior", "variant_access_point": ["País Vasco. Secrétariat général de l'action extérieure"], "authorized_access_point": "País Vasco. Secretaría general de acción exterior"} 1 +2024-09-11 09:06:43.633111 2024-09-11 09:06:43.633114 587474b5-2845-4e99-9926-961df2286b23 {"md5": "25d333b86311d0b32f68c608547c741e", "pid": "A003679975", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003679975", "source": "RERO"}], "preferred_name": "Pellis, Louis", "authorized_access_point": "Pellis, Louis"} 1 +2024-09-11 09:06:43.683801 2024-09-11 09:06:43.683805 e9dd5df0-8446-44dc-a4ef-5e81af3ccdb9 {"md5": "d86dd318e37c9217f93d5f68964c982b", "pid": "A003681000", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003681000", "source": "RERO"}], "preferred_name": "Pensionnat Salve Regina (Bourguillon)", "authorized_access_point": "Pensionnat Salve Regina (Bourguillon)"} 1 +2024-09-11 09:06:43.738875 2024-09-11 09:06:43.738881 e1048551-4a59-4e87-afe7-24672de53f42 {"md5": "b6062525198cec73e2143b0c5fadbb1b", "pid": "A003685283", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003685283", "source": "RERO"}], "preferred_name": "Pestieau, Pierre", "authorized_access_point": "Pestieau, Pierre"} 1 +2024-09-11 09:06:43.806263 2024-09-11 09:06:43.806267 7edea4e5-f3d0-4dff-85c1-c30bf65aa6b8 {"md5": "bb9bb092f5aae5ab020ad22162336d3f", "pid": "A003685465", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003685465", "source": "RERO"}], "preferred_name": "Peter, Ilka", "authorized_access_point": "Peter, Ilka"} 1 +2024-09-11 09:06:43.868844 2024-09-11 09:06:43.86885 6283ebd1-55aa-42c3-be74-e71d6cb94b02 {"md5": "7be1109f379a9b054651c3eeec60ba04", "pid": "A003688082", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003688082", "source": "RERO"}], "preferred_name": "Peulevey, Georges L", "authorized_access_point": "Peulevey, Georges L"} 1 +2024-09-11 09:06:43.928117 2024-09-11 09:06:43.92812 d3ed93b3-d477-4762-a2fc-41a335819c4d {"md5": "d823db31898ef3ebbde28c150f3a718a", "pid": "A003688354", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003688354", "source": "RERO"}], "preferred_name": "Peyron, Joseph", "authorized_access_point": "Peyron, Joseph"} 1 +2024-09-11 09:06:43.983495 2024-09-11 09:06:43.9835 e2dec192-ffe5-4851-9cb9-787a4ecb2d81 {"md5": "851584ac2fdb9426d08db5dec2c4e58d", "pid": "A003696554", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003696554", "source": "RERO"}], "preferred_name": "Piper, Ronald Allen", "authorized_access_point": "Piper, Ronald Allen"} 1 +2024-09-11 09:06:44.038449 2024-09-11 09:06:44.038454 2cedfd62-e916-48ee-96db-bd8787da5d5b {"md5": "2238d4d3f3977a2041bc86cbd9ed7375", "pid": "A003699041", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003699041", "source": "RERO"}], "preferred_name": "Plasa, Carl", "authorized_access_point": "Plasa, Carl"} 1 +2024-09-11 09:06:44.095948 2024-09-11 09:06:44.095952 f7c9ed4f-9437-4b34-a023-d478e26748b2 {"md5": "b92867f95d2ec392c88e4074cd87d87d", "pid": "A003703519", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003703519", "source": "RERO"}], "preferred_name": "Polskie Towarzystwo Gleboznawcze", "authorized_access_point": "Polskie Towarzystwo Gleboznawcze"} 1 +2024-09-11 09:06:44.148382 2024-09-11 09:06:44.148386 800652dc-0ec5-49cd-84c5-59634d6e2a99 {"md5": "b70e08e6fe68c5bff3006d867c5d72c7", "pid": "A003703655", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003703655", "source": "RERO"}], "preferred_name": "Polyphony (London)", "authorized_access_point": "Polyphony (London)"} 1 +2024-09-11 09:06:44.207026 2024-09-11 09:06:44.20703 461d5a71-817e-4fb6-b7d6-e018302ddc0e {"md5": "bf5793e21a6a0f2241d02be59d0ccbd4", "pid": "A003706170", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003706170", "source": "RERO"}], "preferred_name": "Portenier, Claude", "authorized_access_point": "Portenier, Claude"} 1 +2024-09-11 09:06:44.268664 2024-09-11 09:06:44.268669 1e98bbad-5a8f-44ca-beb8-5c05a9044119 {"md5": "ab6a839c0f45400383c5f30d3a3126ae", "pid": "A003710512", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003710512", "source": "RERO"}], "preferred_name": "Preis, Alexandre", "parallel_access_point": ["Прейс, Александр"], "authorized_access_point": "Preis, Alexandre"} 1 +2024-09-11 09:06:44.325216 2024-09-11 09:06:44.325221 241213c8-eea2-4221-ab7f-caa821e88680 {"md5": "5e68ecf20025960eff6aaf1baa380524", "pid": "A003713064", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003713064", "source": "RERO"}], "preferred_name": "Pro Regenwald", "authorized_access_point": "Pro Regenwald"} 1 +2024-09-11 09:06:44.378369 2024-09-11 09:06:44.378372 03708fc5-7af0-4c14-963d-166ba2bd3611 {"md5": "e389434e009211a9268167690d82d4e7", "pid": "A003717532", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003717532", "source": "RERO"}], "preferred_name": "Puza, Richard", "authorized_access_point": "Puza, Richard"} 1 +2024-09-11 09:06:44.428756 2024-09-11 09:06:44.42876 bc184090-baa0-4f5d-9c57-90baadb93c27 {"md5": "6f51ebb1e025e68a7a0166170a1869b9", "pid": "A003719235", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003719235", "source": "RERO"}], "preferred_name": "Pătrășcanu, Petru V", "authorized_access_point": "Pătrășcanu, Petru V"} 1 +2024-09-11 09:06:44.484892 2024-09-11 09:06:44.484897 0152ae0d-2ebe-42f6-9dd9-3d378d0dc035 {"md5": "c376e48d43697ce5a389b5e77244fc4a", "pid": "A003721710", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003721710", "source": "RERO"}], "preferred_name": "Raaff, J.J", "authorized_access_point": "Raaff, J.J"} 1 +2024-09-11 09:06:44.546888 2024-09-11 09:06:44.546892 259dc843-665b-4ed8-a0a8-8b8e36979013 {"md5": "bba41d25c0de0158b86680ecc14b4d32", "pid": "A003728520", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003728520", "source": "RERO"}], "preferred_name": "Rath, Ingo W", "authorized_access_point": "Rath, Ingo W"} 1 +2024-09-11 09:06:44.62138 2024-09-11 09:06:44.621383 69853ed1-3f4b-4107-896d-8e3821f96bdd {"md5": "d8524487d99327e14b113f7aae5dc675", "pid": "A003733566", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003733566", "source": "RERO"}], "preferred_name": "Regis, Roger", "authorized_access_point": "Regis, Roger"} 1 +2024-09-11 09:06:44.680807 2024-09-11 09:06:44.68081 4d95f45c-305b-428e-9e4c-f4981604cbec {"md5": "5102c7da07e685f1ddd4f7172592a6c9", "pid": "A003734370", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003734370", "source": "RERO"}], "preferred_name": "Reichelt, Thomas", "authorized_access_point": "Reichelt, Thomas"} 1 +2024-09-11 09:06:44.740715 2024-09-11 09:06:44.74072 1f47f026-d8c5-442d-8767-ca5dc12b2f61 {"md5": "0bde590656c1ca1e09b7cb58e9976273", "pid": "A003736990", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003736990", "source": "RERO"}], "preferred_name": "Remmel, Johannes", "authorized_access_point": "Remmel, Johannes"} 1 +2024-09-11 09:06:44.792539 2024-09-11 09:06:44.792544 1e801482-f413-4d54-8616-6c67fe6042a6 {"md5": "e716b034de1a85d7f7224eda17dca117", "pid": "A003737238", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003737238", "source": "RERO"}], "preferred_name": "Renard, Gabriel", "authorized_access_point": "Renard, Gabriel"} 1 +2024-09-11 09:06:44.844978 2024-09-11 09:06:44.844982 603a697b-f0a8-40e7-ab98-6b8b7a818061 {"md5": "b3467a56d3fd90adefbef4d0e03f19e7", "pid": "A003743096", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003743096", "source": "RERO"}], "preferred_name": "Rich, F", "authorized_access_point": "Rich, F"} 1 +2024-09-11 09:06:44.899209 2024-09-11 09:06:44.899212 91dbd880-59a8-423b-864a-f01d7e72da53 {"md5": "79957f73d456d0d9e3d7f9be72b79f29", "pid": "A003743887", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003743887", "source": "RERO"}], "variant_name": ["Richelet, Césare-Pierre,", "Richelet, César Pierre,"], "date_of_birth": "ca. 1626", "date_of_death": "1698", "preferred_name": "Richelet, Pierre,", "variant_access_point": ["Richelet, Césare-Pierre, ca. 1626-1698", "Richelet, César Pierre, ca. 1626-1698"], "authorized_access_point": "Richelet, Pierre, ca. 1626-1698", "biographical_information": ["Lexicographe"]} 1 +2024-09-11 09:06:44.966246 2024-09-11 09:06:44.966251 a2d303c8-d988-4152-9c14-e54e5b28e492 {"md5": "631667805af8410f5a0504368e78631f", "pid": "A003744787", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003744787", "source": "RERO"}], "variant_name": ["Ricketts, Martin J.,"], "date_of_birth": "1948", "preferred_name": "Ricketts, Martin,", "variant_access_point": ["Ricketts, Martin J., 1948-"], "authorized_access_point": "Ricketts, Martin, 1948-", "biographical_information": ["Professeur d'organisation économique à l'université de Buckingham, UK"]} 1 +2024-09-11 09:06:45.029069 2024-09-11 09:06:45.029073 e17c3392-90ed-412a-b016-eaa80d098daa {"md5": "6b2e31296f3030120191df05b550da46", "pid": "A003747661", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003747661", "source": "RERO"}], "preferred_name": "Rindlisbacher, Otto", "authorized_access_point": "Rindlisbacher, Otto"} 1 +2024-09-11 09:06:45.088132 2024-09-11 09:06:45.088137 d16d98c4-afdd-4023-b232-439a732c7a7e {"md5": "40d764d0408c972ee5de502612dac539", "pid": "A003751647", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003751647", "source": "RERO"}], "preferred_name": "Roberty, Eugène de", "authorized_access_point": "Roberty, Eugène de"} 1 +2024-09-11 09:06:45.139358 2024-09-11 09:06:45.139361 64e7c7fd-1cb6-4bde-aafe-20817973e777 {"md5": "1fc05e373c3a4c283d3bbf54e77f3cba", "pid": "A003752143", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003752143", "source": "RERO"}], "preferred_name": "Robinson, John Michael", "authorized_access_point": "Robinson, John Michael"} 1 +2024-09-11 09:06:45.202059 2024-09-11 09:06:45.202064 cdc61b70-af3b-475d-b775-75eaaea429f8 {"md5": "197d628683ece49124111de32c5457cc", "pid": "A003755899", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003755899", "source": "RERO"}], "preferred_name": "Rohatynskyj, Marta", "authorized_access_point": "Rohatynskyj, Marta"} 1 +2024-09-11 09:06:45.260319 2024-09-11 09:06:45.260323 ff97030f-9f74-41b0-8622-4601e9560d3a {"md5": "e44b12c1b15192a67c52f41b17d91651", "pid": "A003759742", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003759742", "source": "RERO"}], "preferred_name": "Rose, Harold Bertram", "authorized_access_point": "Rose, Harold Bertram"} 1 +2024-09-11 09:06:45.310819 2024-09-11 09:06:45.310823 3cc4f377-9543-4727-87de-b6f6b2d49651 {"md5": "3215771cec8ce1da08afca3c5cd7851c", "pid": "A003763487", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003763487", "source": "RERO"}], "preferred_name": "Roth, Anthony", "authorized_access_point": "Roth, Anthony"} 1 +2024-09-11 09:06:45.366789 2024-09-11 09:06:45.366795 dfffc325-a70c-4b0d-9bf6-98daddf05a33 {"md5": "b94af1b88a42a84a963ccfc37eaf229f", "pid": "A003768835", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003768835", "source": "RERO"}], "preferred_name": "Ruchonnet, Charles", "authorized_access_point": "Ruchonnet, Charles"} 1 +2024-09-11 09:06:45.416479 2024-09-11 09:06:45.416484 f1676545-3682-4596-a948-00f7954f51fc {"md5": "187b3fd87ceb7f0a4d7c958c31707c54", "pid": "A003780412", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003780412", "source": "RERO"}], "preferred_name": "Salisbury, Harrison Evans", "authorized_access_point": "Salisbury, Harrison Evans"} 1 +2024-09-11 09:06:45.482976 2024-09-11 09:06:45.48298 d5ab1882-3d71-41a0-87b1-02e60457493d {"md5": "d1a93653291757b03df2785eba9495c3", "pid": "A003781775", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003781775", "source": "RERO"}], "preferred_name": "Salter, Richard", "authorized_access_point": "Salter, Richard"} 1 +2024-09-11 09:06:45.534941 2024-09-11 09:06:45.534946 5a381a2a-1428-4fc6-8773-f5b50119a820 {"md5": "a03b8c8e2a7ca3c26a6dafda0ec7b4bd", "pid": "A003782234", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003782234", "source": "RERO"}], "preferred_name": "Salvá, Vicente", "authorized_access_point": "Salvá, Vicente"} 1 +2024-09-11 09:06:45.591561 2024-09-11 09:06:45.591565 35ae062f-a845-4f20-8208-99a56f786438 {"md5": "0db8ea55b7b11aac6167dbe2a273015e", "pid": "A003783872", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003783872", "source": "RERO"}], "preferred_name": "Sanders, Cornelis", "authorized_access_point": "Sanders, Cornelis"} 1 +2024-09-11 09:06:45.674146 2024-09-11 09:06:45.67415 47afab12-e51c-49e0-b186-f440cd0ecc06 {"md5": "4699bf2ef81118c81e5c4e2bda0e9107", "pid": "A003788311", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003788311", "source": "RERO"}], "preferred_name": "Saunier, Richard E", "authorized_access_point": "Saunier, Richard E"} 1 +2024-09-11 09:06:45.729689 2024-09-11 09:06:45.729694 5757677f-dccc-48c6-93d2-28b4f4591415 {"md5": "99373ef6c3ae655ee29fc7bc8e3f6984", "pid": "A003789261", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003789261", "source": "RERO"}], "variant_name": ["Savile, Douglas B. O.,", "Savile, Douglas Barton Osborne,"], "date_of_birth": "1909", "date_of_death": "2000", "preferred_name": "Savile, D. B. O.,", "variant_access_point": ["Savile, Douglas B. O., 1909-2000", "Savile, Douglas Barton Osborne, 1909-2000"], "authorized_access_point": "Savile, D. B. O., 1909-2000", "biographical_information": ["Mycologue, phytopathologiste et biologiste canadien d'origine irlandaise"]} 1 +2024-09-11 09:06:45.799713 2024-09-11 09:06:45.799716 aea37b8a-9cd5-4a3c-a697-34778240a0d9 {"md5": "aa69c31938120c244afb3531fe0e4f4b", "pid": "A003794166", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003794166", "source": "RERO"}], "preferred_name": "Schelauske, Hans Dieter", "authorized_access_point": "Schelauske, Hans Dieter"} 1 +2024-09-11 09:06:45.85696 2024-09-11 09:06:45.856964 9bcbf1c5-4386-4680-8ac0-07c233cd1c47 {"md5": "d58a5f4975e4b63195b2ba398a3af35a", "pid": "A003794394", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003794394", "source": "RERO"}], "preferred_name": "Schellhase, Karl", "authorized_access_point": "Schellhase, Karl"} 1 +2024-09-11 09:06:45.910818 2024-09-11 09:06:45.910821 90821213-a569-4eb2-a1eb-1137fa837b5d {"md5": "e20bcd7ccc601efd071de88843d75026", "pid": "A003794788", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003794788", "source": "RERO"}], "preferred_name": "Schenker, Franz", "authorized_access_point": "Schenker, Franz"} 1 +2024-09-11 09:06:45.966051 2024-09-11 09:06:45.966053 3a6fbaf8-5836-467c-aa64-c50c334051c1 {"md5": "f6df7207fa2cde648e9acdda9317e59a", "pid": "A003795823", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003795823", "source": "RERO"}], "preferred_name": "Schick, Frederic", "authorized_access_point": "Schick, Frederic"} 1 +2024-09-11 09:06:46.027933 2024-09-11 09:06:46.027938 228ce378-4915-4ad5-b5a4-ff6bc3697f4e {"md5": "96573b403fb8ff835b247944897af5d2", "pid": "A003795824", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003795824", "source": "RERO"}], "preferred_name": "Schick, Friedrike", "authorized_access_point": "Schick, Friedrike"} 1 +2024-09-11 09:06:46.087131 2024-09-11 09:06:46.087136 0c5aa765-3997-4970-97bf-c2a91c7de594 {"md5": "7297a21ee747d7fe62125553e6d925ea", "pid": "A003797257", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003797257", "source": "RERO"}], "preferred_name": "Schipper, Lee", "authorized_access_point": "Schipper, Lee"} 1 +2024-09-11 09:06:46.147189 2024-09-11 09:06:46.147192 209e8fe5-d5de-4d26-969e-04a6437cab26 {"md5": "f7cf8fb68234cae3222d0b3cb5991b09", "pid": "A003808479", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003808479", "source": "RERO"}], "preferred_name": "Schuessler, Karl", "authorized_access_point": "Schuessler, Karl"} 1 +2024-09-11 09:06:46.204388 2024-09-11 09:06:46.204393 afe64049-eabe-498b-89b2-63f3a890e84f {"md5": "4990fae154acf2c819a8cc9aa90d4b97", "pid": "A003808958", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003808958", "source": "RERO"}], "preferred_name": "Schulte, Doris", "authorized_access_point": "Schulte, Doris"} 1 +2024-09-11 09:06:46.253707 2024-09-11 09:06:46.25371 eae51a5c-bdd6-40c3-a73c-9db81eb730d1 {"md5": "fa99a530153c5ba071cb22f11f0d8350", "pid": "A003809251", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003809251", "source": "RERO"}], "preferred_name": "Schultz, Eugen", "parallel_access_point": ["Шульц, Евгений"], "authorized_access_point": "Schultz, Eugen"} 1 +2024-09-11 09:06:46.305683 2024-09-11 09:06:46.305687 f1e9b0b8-0f05-4483-be80-87e055f366a9 {"md5": "ea22911c32b6f82ddc8c7d48b7a45d1c", "pid": "A003811660", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003811660", "source": "RERO"}], "preferred_name": "Schwartz, Baruch J", "authorized_access_point": "Schwartz, Baruch J"} 1 +2024-09-11 09:06:46.354649 2024-09-11 09:06:46.354652 24ab1d1c-2fa1-4eab-9cbb-04d86a3dd1a5 {"md5": "2bd5be6a00e35e0172077a73ea0835e2", "pid": "A003813334", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003813334", "source": "RERO"}], "preferred_name": "Schwersky, Uwe", "authorized_access_point": "Schwersky, Uwe"} 1 +2024-09-11 09:06:46.406316 2024-09-11 09:06:46.406319 6f6a1c11-96b1-4fa0-8f38-98839c4c6e22 {"md5": "896d32b19377f5a50ed2d721b073f181", "pid": "A003817832", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003817832", "source": "RERO"}], "preferred_name": "Seebohm, Thomas M", "authorized_access_point": "Seebohm, Thomas M"} 1 +2024-09-11 09:06:46.472587 2024-09-11 09:06:46.47259 9ae93851-629b-447b-93d6-50e593c8ec18 {"md5": "90b1631cb6bdfec05ed90354d2907b70", "pid": "A003819619", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003819619", "source": "RERO"}], "preferred_name": "Seitz, Karl Joseph", "authorized_access_point": "Seitz, Karl Joseph"} 1 +2024-09-11 09:06:46.525175 2024-09-11 09:06:46.525179 0cb46a9d-a056-46f6-bf7b-516db701f76f {"md5": "4c49f88f19f89454c24e4f3d39359268", "pid": "A003822497", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003822497", "source": "RERO"}], "preferred_name": "Sereni, Ada", "authorized_access_point": "Sereni, Ada"} 1 +2024-09-11 09:06:46.578748 2024-09-11 09:06:46.578752 08090831-56f8-4cb2-ac5f-5bde7b930b45 {"md5": "1c32fa0d4129b9ba6a71a14303fe2ad7", "pid": "A003825451", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003825451", "source": "RERO"}], "preferred_name": "Shanks, Daniel", "authorized_access_point": "Shanks, Daniel"} 1 +2024-09-11 09:06:46.642263 2024-09-11 09:06:46.642268 6b543676-9a54-496c-b060-912848a428c5 {"md5": "3c83bc9363ab7d145a19f15e488ab310", "pid": "A003827438", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003827438", "source": "RERO"}], "preferred_name": "Sherman, Paul B", "authorized_access_point": "Sherman, Paul B"} 1 +2024-09-11 09:06:46.696045 2024-09-11 09:06:46.69605 86d97622-66d5-4dfb-bf88-364403bfd26b {"md5": "e2cd11bf4ef1dd7d17fb61fb237ae059", "pid": "A003827929", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003827929", "source": "RERO"}], "preferred_name": "Shimizu, Akitoshi", "authorized_access_point": "Shimizu, Akitoshi"} 1 +2024-09-11 09:06:46.758829 2024-09-11 09:06:46.758832 b25bc061-9bbd-4dbe-96a1-d1befece1753 {"md5": "b9c495b349f0097ececde9f99f347ff1", "pid": "A003829549", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003829549", "source": "RERO"}], "preferred_name": "Siddiqi, M.M", "authorized_access_point": "Siddiqi, M.M"} 1 +2024-09-11 09:06:46.853602 2024-09-11 09:06:46.853606 d1ec0042-6e92-4a04-b1f7-df2e352a74c8 {"md5": "c825c898cc2d9aff5e9b1429a28f9cdf", "pid": "A003830445", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003830445", "source": "RERO"}], "preferred_name": "Siegmund, Bernhard", "authorized_access_point": "Siegmund, Bernhard"} 1 +2024-09-11 09:06:46.912053 2024-09-11 09:06:46.912056 0fcb1960-49e0-4f3d-bc03-1b56c63e5714 {"md5": "fd975af175870e61bec747a6cfa59989", "pid": "A003833071", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003833071", "source": "RERO"}], "preferred_name": "Simon, George T", "authorized_access_point": "Simon, George T"} 1 +2024-09-11 09:06:46.975781 2024-09-11 09:06:46.975784 94c384bc-edb4-4c88-9445-217e7f723a84 {"md5": "783c30c121b0d70e9b861ec9a9c91477", "pid": "A003835588", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003835588", "source": "RERO"}], "preferred_name": "Sirch, Bernhard", "authorized_access_point": "Sirch, Bernhard"} 1 +2024-09-11 09:06:47.026506 2024-09-11 09:06:47.026511 8cf8c0d9-8302-462e-ac84-b7429560dd65 {"md5": "f6f01493d0fc44aff5f4329a123aac29", "pid": "A003839353", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003839353", "source": "RERO"}], "preferred_name": "Smith, Hilrie Shelton", "authorized_access_point": "Smith, Hilrie Shelton"} 1 +2024-09-11 09:06:47.09021 2024-09-11 09:06:47.090214 fb06b849-bc23-4827-b011-3aba5ad70f4f {"md5": "d62199132055ff7669496d6202febce2", "pid": "A003840255", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003840255", "source": "RERO"}], "preferred_name": "Smithback, John B", "authorized_access_point": "Smithback, John B"} 1 +2024-09-11 09:06:47.14195 2024-09-11 09:06:47.141952 fe5d8dea-cffb-42f3-8f17-c0a4276fbe9b {"md5": "5a006dddd194b9dc055dd716e4ae52de", "pid": "A003840370", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003840370", "source": "RERO"}], "preferred_name": "Smoje, Dujka", "authorized_access_point": "Smoje, Dujka"} 1 +2024-09-11 09:06:47.189422 2024-09-11 09:06:47.189427 24784cdc-244e-4490-a587-6c4a37e35689 {"md5": "fc9ac95c3684ff6ad098bad541c414ff", "pid": "A003840561", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003840561", "source": "RERO"}], "preferred_name": "Smyth, Alfred P", "authorized_access_point": "Smyth, Alfred P"} 1 +2024-09-11 09:06:47.242394 2024-09-11 09:06:47.242398 21cd1c99-4d3f-4f96-b68f-08b39082da45 {"md5": "2d2e810cf7f650bdd36aa4485215e97f", "pid": "A003842524", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003842524", "source": "RERO"}], "preferred_name": "Società napoletana di storia patria", "authorized_access_point": "Società napoletana di storia patria"} 1 +2024-09-11 09:06:47.297121 2024-09-11 09:06:47.297124 1c315809-1c70-4e16-8ca1-39aefa994f87 {"md5": "4dc6364e2dad05fc372459d8bd4e905f", "pid": "A003845264", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003845264", "source": "RERO"}], "preferred_name": "Société mycologique de France", "authorized_access_point": "Société mycologique de France"} 1 +2024-09-11 09:06:47.356855 2024-09-11 09:06:47.356859 db9b009b-a697-444b-b999-31bf954061a9 {"md5": "60f21b70ed2a44616d34095d2841fb0e", "pid": "A003849275", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003849275", "source": "RERO"}], "preferred_name": "Sorabji, Cornélia", "authorized_access_point": "Sorabji, Cornélia"} 1 +2024-09-11 09:06:47.416168 2024-09-11 09:06:47.416172 4247ae05-5fbc-49ef-997c-b0466a344247 {"md5": "29e2b53dcdf8ce0fb24c5ec189633f10", "pid": "A003849995", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003849995", "source": "RERO"}], "preferred_name": "Sotto, Wiveca", "authorized_access_point": "Sotto, Wiveca"} 1 +2024-09-11 09:06:47.468869 2024-09-11 09:06:47.468875 87b1b18a-de37-4e20-a9b1-515a1ef665bc {"md5": "e463ff0e0dde33d07cd55219334d183a", "pid": "A003852855", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003852855", "source": "RERO"}], "preferred_name": "Sperry, Stuart M", "authorized_access_point": "Sperry, Stuart M"} 1 +2024-09-11 09:06:47.521292 2024-09-11 09:06:47.521295 377ccee9-a99b-43dd-80cb-b54f72cbb306 {"md5": "518a01110f8cd211d7a303bde1c02271", "pid": "A003853351", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003853351", "source": "RERO"}], "preferred_name": "Spiess, Bernhard", "authorized_access_point": "Spiess, Bernhard"} 1 +2024-09-11 09:06:47.585357 2024-09-11 09:06:47.58536 e8f32c40-11a1-4ac9-b32f-226257796e3f {"md5": "47ec3b7647e19e021bb4f89ce932b8b7", "pid": "A003854679", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003854679", "source": "RERO"}], "preferred_name": "Spray, S.Lee", "authorized_access_point": "Spray, S.Lee"} 1 +2024-09-11 09:06:47.638468 2024-09-11 09:06:47.638474 3637eb03-113a-47c8-abdf-b46296ee9d74 {"md5": "93475fd0c89c75f72d413730da72d29d", "pid": "A003861370", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003861370", "source": "RERO"}], "preferred_name": "Steinbrügge, Lieselotte", "authorized_access_point": "Steinbrügge, Lieselotte"} 1 +2024-09-11 09:06:47.709135 2024-09-11 09:06:47.70914 56dc8ea3-759d-4a52-9cb8-87b4d498a764 {"md5": "c5630e94bbe7144901d96c1573aeb247", "pid": "A003863577", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003863577", "source": "RERO"}], "preferred_name": "Stern, Guy", "authorized_access_point": "Stern, Guy"} 1 +2024-09-11 09:06:47.790213 2024-09-11 09:06:47.790216 e683532c-5ff2-4494-bc3d-38494f6a9168 {"md5": "8657478510f9529edaf10b70d75e7702", "pid": "A003870613", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003870613", "source": "RERO"}], "preferred_name": "Strobel, Howard Austin", "authorized_access_point": "Strobel, Howard Austin"} 1 +2024-09-11 09:06:47.848484 2024-09-11 09:06:47.848489 c19cc74f-3919-4d7f-8d71-df163905a5dd {"md5": "2f60f6327a39b429f9025ae1c52c3fbc", "pid": "A003881754", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003881754", "source": "RERO"}], "preferred_name": "Syreeni, Kari", "authorized_access_point": "Syreeni, Kari"} 1 +2024-09-11 09:06:47.902606 2024-09-11 09:06:47.902612 3c9ae873-2eb3-4dcd-b63a-04c05a19d5c9 {"md5": "7e39baf37490878aacb2cf565008ed89", "pid": "A003883009", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003883009", "source": "RERO"}], "preferred_name": "Sölter, Walter", "authorized_access_point": "Sölter, Walter"} 1 +2024-09-11 09:06:47.994625 2024-09-11 09:06:47.994629 fe27972c-4db2-4d14-877f-23bd0c56beb6 {"md5": "7abd1598e656b0c59d9c47acf45945b1", "pid": "A003883330", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003883330", "source": "RERO"}], "preferred_name": "Sánchez Caro, José Manuel", "authorized_access_point": "Sánchez Caro, José Manuel"} 1 +2024-09-11 09:06:48.05066 2024-09-11 09:06:48.050665 f7e3c160-b377-402f-9c42-d40891f08659 {"md5": "97edd29b897970a98a71eebf42400941", "pid": "A003883717", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003883717", "source": "RERO"}], "preferred_name": "Séebold, Éric", "authorized_access_point": "Séebold, Éric"} 1 +2024-09-11 09:06:48.114047 2024-09-11 09:06:48.114052 d743dbf6-e1df-462f-97ce-02ce793c3672 {"md5": "a53ea6b83ae0f901d4c96c79d5bf777a", "pid": "A003883777", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003883777", "source": "RERO"}], "preferred_name": "Ségur, Claudine", "authorized_access_point": "Ségur, Claudine"} 1 +2024-09-11 09:06:48.172737 2024-09-11 09:06:48.17274 20b03a87-62d6-4ff7-84e6-1f8bff927402 {"md5": "3d5cf2b81795a894068304386d83a6e7", "pid": "A003886758", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003886758", "source": "RERO"}], "preferred_name": "Tamassia, Roberto", "authorized_access_point": "Tamassia, Roberto"} 1 +2024-09-11 09:06:48.225545 2024-09-11 09:06:48.225549 d422f108-e0fb-4df0-b895-101bec9fbd57 {"md5": "37fe9b9e318c4cc480c445fe630d2166", "pid": "A003889324", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003889324", "source": "RERO"}], "preferred_name": "Taubman, Howard", "authorized_access_point": "Taubman, Howard"} 1 +2024-09-11 09:06:48.296711 2024-09-11 09:06:48.296716 6b62eba8-60df-4abb-9e92-9c6fafb20a4f {"md5": "0c3d0b2c386ee96854e6f985cf49cdcb", "pid": "A003890737", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003890737", "source": "RERO"}], "preferred_name": "Te Riele, Gerrit Jan Marie Jozef", "authorized_access_point": "Te Riele, Gerrit Jan Marie Jozef"} 1 +2024-09-11 09:06:48.351601 2024-09-11 09:06:48.351605 00214337-1c22-495a-a44c-f9636f4a483c {"md5": "9398757e4e8f4832f68f54edd5457cb5", "pid": "A003895492", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003895492", "source": "RERO"}], "preferred_name": "Theureau, Louis", "authorized_access_point": "Theureau, Louis"} 1 +2024-09-11 09:06:48.405334 2024-09-11 09:06:48.405339 d4d9d170-2409-4e2f-a7cc-5203be0b66f1 {"md5": "5568373ea94fc1ec502a2a18c123f2ee", "pid": "A003899816", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003899816", "source": "RERO"}], "preferred_name": "Thurlow, Bradbury K", "authorized_access_point": "Thurlow, Bradbury K"} 1 +2024-09-11 09:06:48.466138 2024-09-11 09:06:48.466142 45a5d2e5-203e-4965-9fb4-65b262a5b0ce {"md5": "6544d0c3970d80d98c9b88d2bad5fd16", "pid": "A003902263", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003902263", "source": "RERO"}], "preferred_name": "Tinsley, B", "authorized_access_point": "Tinsley, B"} 1 +2024-09-11 09:06:48.552457 2024-09-11 09:06:48.55246 d1fa05bc-6c2a-41e4-a0ba-7227b8b6f34f {"md5": "d683fd0ece0df137d01d33ba4bd4100c", "pid": "A003905474", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003905474", "source": "RERO"}], "preferred_name": "Tophoven, Klaus", "authorized_access_point": "Tophoven, Klaus"} 1 +2024-09-11 09:06:48.610667 2024-09-11 09:06:48.610671 e0b17468-6c72-41ff-9dd7-a06c505d458f {"md5": "12e810fa12856ed14786532abe59526e", "pid": "A003913856", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003913856", "source": "RERO"}], "preferred_name": "Tsuda, Yukio", "authorized_access_point": "Tsuda, Yukio"} 1 +2024-09-11 09:06:48.677434 2024-09-11 09:06:48.677436 c24a23da-ccf8-43ae-a5ee-f04df9795560 {"md5": "12573cd76d5ee7abb4e7c2be4925951e", "pid": "A003919082", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003919082", "source": "RERO"}], "preferred_name": "Ulstrup, Jens", "authorized_access_point": "Ulstrup, Jens"} 1 +2024-09-11 09:06:48.800921 2024-09-11 09:06:48.800924 9daa571e-d498-4ff1-b47e-7e72d5b97d44 {"md5": "3d5e7aa6338edf07e77efc4f4b813ca3", "pid": "A003936311", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003936311", "source": "RERO"}], "preferred_name": "Venturelli, Aldo", "authorized_access_point": "Venturelli, Aldo"} 1 +2024-09-11 09:06:48.860228 2024-09-11 09:06:48.860232 5679cef8-ab6d-4cab-8256-249893f2af45 {"md5": "d31bf4aeb9f0f0419913c9dc553550a1", "pid": "A003943767", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003943767", "source": "RERO"}], "preferred_name": "Vimond, Jack", "authorized_access_point": "Vimond, Jack"} 1 +2024-09-11 09:06:48.925558 2024-09-11 09:06:48.925562 7318763a-41b4-4ab6-9020-afb6c36c8a33 {"md5": "8fa2ad16da6b38dde79c21de34c67ae9", "pid": "A003947464", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003947464", "source": "RERO"}], "preferred_name": "Vogelsang-Wenke, Heike", "authorized_access_point": "Vogelsang-Wenke, Heike"} 1 +2024-09-11 09:06:48.989289 2024-09-11 09:06:48.989292 ec342717-960c-42a8-b87f-287b79e6b7f8 {"md5": "fac015f5bc7e62d2e21e228f102bae72", "pid": "A003948416", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003948416", "source": "RERO"}], "preferred_name": "Volk, Klaus", "authorized_access_point": "Volk, Klaus"} 1 +2024-09-11 09:06:49.039136 2024-09-11 09:06:49.039138 ad832565-819b-49ef-8408-bf19e99dd184 {"md5": "0fdea1b0cc2814edab351fdf5c872a2f", "pid": "A003958822", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003958822", "source": "RERO"}], "preferred_name": "Warren, Katherine F", "authorized_access_point": "Warren, Katherine F"} 1 +2024-09-11 09:06:49.093392 2024-09-11 09:06:49.093396 6a62edaf-9370-43eb-9101-b23e93870567 {"md5": "59c916a56efb4ae58a2ac0c71edece9c", "pid": "A003966124", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003966124", "source": "RERO"}], "preferred_name": "Weisz, Paul B", "authorized_access_point": "Weisz, Paul B"} 1 +2024-09-11 09:06:49.153966 2024-09-11 09:06:49.153969 d3450e14-c800-40f5-8c6d-1808b326cc45 {"md5": "a6812e8599330079a45ad44b67d895bb", "pid": "A003967245", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003967245", "source": "RERO"}], "preferred_name": "Wemba, Papa", "authorized_access_point": "Wemba, Papa"} 1 +2024-09-11 09:06:49.205659 2024-09-11 09:06:49.205663 b605c657-4cb5-42dd-8a62-05ae6234afe0 {"md5": "cf339ea777a9c21ca2709e4278d2fce5", "pid": "A003969580", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003969580", "source": "RERO"}], "preferred_name": "Westbrook, Jack Hall", "authorized_access_point": "Westbrook, Jack Hall"} 1 +2024-09-11 09:06:49.293334 2024-09-11 09:06:49.29334 53ce4685-1787-4408-9565-eb0e7ee76aad {"md5": "be3c72017e4d356842d082d0e35fc098", "pid": "A003969900", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003969900", "source": "RERO"}], "preferred_name": "Westi, Kurt", "authorized_access_point": "Westi, Kurt"} 1 +2024-09-11 09:06:49.353514 2024-09-11 09:06:49.35352 cfd12bfa-42ac-4a3b-a9f9-1ee421d5eb06 {"md5": "752e503caebc38dcbba541b4f37fff84", "pid": "A003971618", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003971618", "source": "RERO"}], "preferred_name": "White, Miriam Harker", "authorized_access_point": "White, Miriam Harker"} 1 +2024-09-11 09:06:49.416346 2024-09-11 09:06:49.416351 476c29e9-bc1f-4d1e-af93-8ad357ce6d8b {"md5": "13ea6185bd87c95f76c7b1713e29d8cc", "pid": "A003973251", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003973251", "source": "RERO"}], "preferred_name": "Widstrand, Axel", "authorized_access_point": "Widstrand, Axel"} 1 +2024-09-11 09:06:49.477497 2024-09-11 09:06:49.477501 2ac7d001-0030-4e2c-a64c-e78a6ca93578 {"md5": "a80e7a2da392273e0f52de28ba056d61", "pid": "A003975282", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003975282", "source": "RERO"}], "preferred_name": "Wildeboer, Ina Hinderika", "authorized_access_point": "Wildeboer, Ina Hinderika"} 1 +2024-09-11 09:06:49.541744 2024-09-11 09:06:49.541748 c478175a-b695-4ab1-94a5-2a6350334118 {"md5": "15ae852acfa056fcb5102093d0e387b2", "pid": "A003981555", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003981555", "source": "RERO"}], "variant_name": ["With, Hans-Joachim de", "De With, Hans-Joachim"], "preferred_name": "With, Hans de", "variant_access_point": ["With, Hans-Joachim de", "De With, Hans-Joachim"], "authorized_access_point": "With, Hans de", "biographical_information": ["Juriste allemand, né à Gera/Thüringen en 1932"]} 1 +2024-09-11 09:06:49.614367 2024-09-11 09:06:49.614371 8ab094ed-062b-40a8-93cd-672718be49bd {"md5": "aa176a8c7035253c89b91027cf0eb306", "pid": "A003981870", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003981870", "source": "RERO"}], "preferred_name": "Witte, Siegfried", "authorized_access_point": "Witte, Siegfried"} 1 +2024-09-11 09:06:49.680915 2024-09-11 09:06:49.680919 0ebf241c-bf6d-409f-9f04-870f8975ce63 {"md5": "e928f3c05480274206b51d0cf57759f4", "pid": "A003984942", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003984942", "source": "RERO"}], "preferred_name": "Wood, Donald Francis", "authorized_access_point": "Wood, Donald Francis"} 1 +2024-09-11 09:06:49.733089 2024-09-11 09:06:49.733092 d11c1fa4-caac-4042-bb4f-bd20800ea331 {"md5": "1ef9a07bf2eb181fa2600c3296700839", "pid": "A003985806", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003985806", "source": "RERO"}], "preferred_name": "Woolson, Robert F", "authorized_access_point": "Woolson, Robert F"} 1 +2024-09-11 09:06:49.798289 2024-09-11 09:06:49.798292 cc9ac90b-15bb-482d-a4e4-c7c842c65875 {"md5": "90f2d0e89fc5c35881ca6eaa0442e970", "pid": "A003988011", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003988011", "source": "RERO"}], "preferred_name": "Wullaert, Pierre", "authorized_access_point": "Wullaert, Pierre"} 1 +2024-09-11 09:06:49.849046 2024-09-11 09:06:49.849049 53737e99-2f4e-48b8-bb84-a4a508dbf0a8 {"md5": "060646de003d4b22c00b54dcc604c6cf", "pid": "A003988126", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003988126", "source": "RERO"}], "preferred_name": "Wunderlich, Heinz", "authorized_access_point": "Wunderlich, Heinz"} 1 +2024-09-11 09:06:49.906832 2024-09-11 09:06:49.906835 235cd468-4f9f-4f11-b4a3-5b09149d85c9 {"md5": "587e6fda8cb95198b2af35aef04db1bb", "pid": "A003990251", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003990251", "source": "RERO"}], "preferred_name": "Xokonoschtletl, Gomora", "authorized_access_point": "Xokonoschtletl, Gomora"} 1 +2024-09-11 09:06:49.958853 2024-09-11 09:06:49.958858 9fee0fe0-d716-492f-8613-031d5f29d54a {"md5": "42993debea695c4c0e7b756c50347a87", "pid": "A003991229", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003991229", "source": "RERO"}], "preferred_name": "Yashinsky, Jack", "authorized_access_point": "Yashinsky, Jack"} 1 +2024-09-11 09:06:50.010857 2024-09-11 09:06:50.01086 7444efb2-4919-4c51-8981-4c875a838fd9 {"md5": "032627b5002bdf715eb1bd4bd9796e46", "pid": "A003994705", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003994705", "source": "RERO"}], "preferred_name": "Zameenzad, Adam", "authorized_access_point": "Zameenzad, Adam"} 1 +2024-09-11 09:06:50.065546 2024-09-11 09:06:50.065549 109e3ddd-b86d-400a-a6ce-a72bc176e437 {"md5": "2ffe451d735a4091198294b7377414b6", "pid": "A003995908", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003995908", "source": "RERO"}], "preferred_name": "Zatouroff, Michael", "authorized_access_point": "Zatouroff, Michael"} 1 +2024-09-11 09:06:50.125087 2024-09-11 09:06:50.125091 5953c864-02d1-45d1-b301-e42f4ee35eb6 {"md5": "a9c6820ec39022deff12cc4034f2a864", "pid": "A003999648", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A003999648", "source": "RERO"}], "preferred_name": "Zierl, Andreas", "authorized_access_point": "Zierl, Andreas"} 1 +2024-09-11 09:06:50.178571 2024-09-11 09:06:50.178573 cd0a7c5b-0bef-4699-a531-cad796c30cf6 {"md5": "cc150ef1e7fb48588842f47e8dd7b3c4", "pid": "A005312991", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005312991", "source": "RERO"}], "preferred_name": "Centre d'expérimentation des packages (Paris)", "authorized_access_point": "Centre d'expérimentation des packages (Paris)", "biographical_information": ["Jusqu'au 27 juin 1978: Centre d'expérimentation des packages (Paris)", "Dès le 27 juin 1978: Centre d'expérimentation de progiciels (Paris)"]} 1 +2024-09-11 09:06:50.232869 2024-09-11 09:06:50.232872 c5a3905d-8c0f-413f-b5fe-89403ed9fc11 {"md5": "371e212db7e3e327ef3f1cee85eb5dd3", "pid": "A005368039", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005368039", "source": "RERO"}], "preferred_name": "Kantonsschule (Obwalden)", "authorized_access_point": "Kantonsschule (Obwalden)", "biographical_information": ["Avant 1956: Kantonale Lehranstalt (Sarnen)", "De 1956 à 1966: Kollegium Sarnen", "Dès 1967: Kantonsschule (Obwalden)"]} 1 +2024-09-11 09:06:50.288108 2024-09-11 09:06:50.288112 ff286897-e276-4f46-9448-932408758d1c {"md5": "7cc5431a04c675b6c615e91cc7e1fc47", "pid": "A005460720", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005460720", "source": "RERO"}], "preferred_name": "Gesellschaft für Wirtschafts- und Sozialwissenschaften. Bildungsökonomischer Ausschuss", "authorized_access_point": "Gesellschaft für Wirtschafts- und Sozialwissenschaften. Bildungsökonomischer Ausschuss"} 1 +2024-09-11 09:06:50.346733 2024-09-11 09:06:50.346737 d64fa789-0705-4c5b-ab12-81e889cb0d17 {"md5": "0efdf87529946a8e80013f74c19e56e3", "pid": "A005463202", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005463202", "source": "RERO"}], "variant_name": ["International Conference on Economic and Social Aspects of Automation"], "preferred_name": "Journées internationales d'information sur les implications économiques et sociales de l'automation", "variant_access_point": ["International Conference on Economic and Social Aspects of Automation"], "authorized_access_point": "Journées internationales d'information sur les implications économiques et sociales de l'automation"} 1 +2024-09-11 09:06:50.398967 2024-09-11 09:06:50.39897 8442c880-ba27-4886-b0dd-f6517c5b4f0f {"md5": "73eb4a9ddb6be5ea7cf7c7df0dc5e409", "pid": "A005464802", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005464802", "source": "RERO"}], "variant_name": ["International Colloquium on Historical Demography"], "preferred_name": "Colloque international de démographie historique", "variant_access_point": ["International Colloquium on Historical Demography"], "authorized_access_point": "Colloque international de démographie historique"} 1 +2024-09-11 09:06:50.453057 2024-09-11 09:06:50.453061 4cc7d51b-944e-4ee6-aa81-67d6aeef01de {"md5": "9a97812c553d3aa528c822d25aa90ebe", "pid": "A005466192", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005466192", "source": "RERO"}], "variant_name": ["Fachverband Elektronenmikroskopie (DDR)"], "preferred_name": "Physikalische Gesellschaft der DDR. Fachverband Elektronenmikroskopie", "variant_access_point": ["Fachverband Elektronenmikroskopie (DDR)"], "authorized_access_point": "Physikalische Gesellschaft der DDR. Fachverband Elektronenmikroskopie"} 1 +2024-09-11 09:06:50.506183 2024-09-11 09:06:50.506187 706fb12a-e6cb-48e8-853b-a9d34b4c6fff {"md5": "3d0f59e94f80a28fad736fad246f819c", "pid": "A005469950", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005469950", "source": "RERO"}], "variant_name": ["Instituto de cultura portuguesa (Porto)"], "preferred_name": "Universidade do Porto. Instituto de cultura portuguesa", "variant_access_point": ["Instituto de cultura portuguesa (Porto)"], "authorized_access_point": "Universidade do Porto. Instituto de cultura portuguesa"} 1 +2024-09-11 09:06:50.58586 2024-09-11 09:06:50.585864 30c4387d-c686-4f30-a147-9468868573b1 {"md5": "3a13b38acb538f96b033e9c9f5ea3764", "pid": "A005471055", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005471055", "source": "RERO"}], "preferred_name": "Universidade Federal Fluminense", "authorized_access_point": "Universidade Federal Fluminense"} 1 +2024-09-11 09:06:50.638207 2024-09-11 09:06:50.638211 57ba5ef2-d1bd-4970-9e9b-79c97191a6c0 {"md5": "3c9c66e824ada4937b87dfcbee522c60", "pid": "A005475587", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005475587", "source": "RERO"}], "variant_name": ["Instituto español de cultura y de literatura de Roma", "Instituto español de cultura (Roma)"], "preferred_name": "Instituto español de cultura de Roma", "variant_access_point": ["Instituto español de cultura y de literatura de Roma", "Instituto español de cultura (Roma)"], "authorized_access_point": "Instituto español de cultura de Roma"} 1 +2024-09-11 09:06:50.693024 2024-09-11 09:06:50.693028 ef5abaed-ac9c-4898-9fc9-55300588d0ff {"md5": "ef64aa3879a348805f62369ed3ce1fb7", "pid": "A005480840", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005480840", "source": "RERO"}], "variant_name": ["NSSAR (The National Society of the Sons of the American Revolution)", "Sons of the American Revolution", "Société des fils de la Révolution américaine"], "preferred_name": "National Society of the Sons of the American Revolution", "variant_access_point": ["NSSAR (The National Society of the Sons of the American Revolution)", "Sons of the American Revolution", "Société des fils de la Révolution américaine"], "authorized_access_point": "National Society of the Sons of the American Revolution"} 1 +2024-09-11 09:06:50.74651 2024-09-11 09:06:50.746514 a964e020-8301-439d-ae39-4c727f1b57db {"md5": "5c1d1fc713f56d1cb56e932974ce845f", "pid": "A005495353", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005495353", "source": "RERO"}], "variant_name": ["Ordo Carmelitarum", "Frères du Mont Carmel", "Ordre du Carmel", "Ordre de Notre-Dame du Mont Carmel", "Ordre de la bienheureuse Vierge Marie du Mont Carmel", "Carmes"], "preferred_name": "Ordo fratrum beatissimae Mariae virginis de Monte Carmelo", "variant_access_point": ["Ordo Carmelitarum", "Frères du Mont Carmel", "Ordre du Carmel", "Ordre de Notre-Dame du Mont Carmel", "Ordre de la bienheureuse Vierge Marie du Mont Carmel", "Carmes"], "authorized_access_point": "Ordo fratrum beatissimae Mariae virginis de Monte Carmelo"} 1 +2024-09-11 09:06:50.796641 2024-09-11 09:06:50.796643 f5e12453-815b-4fe2-8a8d-0705386d933d {"md5": "35b976feefb5c21ed2217bb1fb88f25e", "pid": "A005496746", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005496746", "source": "RERO"}], "variant_name": ["FSDH (Fédération suisse des directeurs d'hôpitaux)", "Schweizerische Vereinigung der Spitaldirektoren", "SVS (Schweizerische Vereinigung der Spitaldirektoren", "Federazione svizzera dei direttori d'ospedale", "FSDO (Federazione svizzera dei direttori d'ospedale)"], "preferred_name": "Fédération suisse des directeurs d'hôpitaux", "variant_access_point": ["FSDH (Fédération suisse des directeurs d'hôpitaux)", "Schweizerische Vereinigung der Spitaldirektoren", "SVS (Schweizerische Vereinigung der Spitaldirektoren", "Federazione svizzera dei direttori d'ospedale", "FSDO (Federazione svizzera dei direttori d'ospedale)"], "authorized_access_point": "Fédération suisse des directeurs d'hôpitaux"} 1 +2024-09-11 09:06:50.854515 2024-09-11 09:06:50.854518 5b443ec9-0723-4599-aea5-a8b951e7d828 {"md5": "940d9d8467da0a5ce31cec150a4d5afa", "pid": "A005513603", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005513603", "source": "RERO"}], "date_of_birth": "1966", "preferred_name": "Scholl, Elisabeth,", "authorized_access_point": "Scholl, Elisabeth, 1966-", "biographical_information": ["Artiste lyrique (soprano)"]} 1 +2024-09-11 09:06:50.91073 2024-09-11 09:06:50.910732 218e2f48-b241-4f73-9081-abe57c034d07 {"md5": "78c462ec10fcef7d78ada52b234ae5d4", "pid": "A005522657", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005522657", "source": "RERO"}], "preferred_name": "Weiberg, Anja", "authorized_access_point": "Weiberg, Anja"} 1 +2024-09-11 09:06:50.963539 2024-09-11 09:06:50.963544 e0ed2a99-f7b6-4846-80f5-c14655dffa88 {"md5": "85839504300ec03138de68bf0084c322", "pid": "A005533991", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005533991", "source": "RERO"}], "preferred_name": "Jha, Kalanath", "authorized_access_point": "Jha, Kalanath"} 1 +2024-09-11 09:06:51.016208 2024-09-11 09:06:51.016213 e47c29e9-02e6-4dbd-9cd7-fa650ccfe24a {"md5": "55d775228420674136f078c522537145", "pid": "A005558255", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005558255", "source": "RERO"}], "preferred_name": "Polley, Martin", "authorized_access_point": "Polley, Martin"} 1 +2024-09-11 09:06:51.073043 2024-09-11 09:06:51.073046 640de76d-1062-44b7-af60-f0b630e3f2a0 {"md5": "0bf64455ec82523850f92ebdac505a46", "pid": "A005570502", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005570502", "source": "RERO"}], "preferred_name": "Stephan, Werner", "authorized_access_point": "Stephan, Werner"} 1 +2024-09-11 09:06:51.12872 2024-09-11 09:06:51.128724 169b5afc-f2a0-4a4a-b740-eeabd0a7836f {"md5": "b5985007a5d364c0a593bcd7533d1a0a", "pid": "A005573785", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005573785", "source": "RERO"}], "preferred_name": "Istituto italiano per la storia della musica (Roma)", "authorized_access_point": "Istituto italiano per la storia della musica (Roma)"} 1 +2024-09-11 09:06:51.182377 2024-09-11 09:06:51.182381 ad077e7d-8058-44dd-adda-c345585d42c2 {"md5": "fd90514166429335ee215cf14cd372b6", "pid": "A005595559", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005595559", "source": "RERO"}], "preferred_name": "Komissarževskij, Viktor Grigorʾevič", "authorized_access_point": "Komissarževskij, Viktor Grigorʾevič"} 1 +2024-09-11 09:06:51.238669 2024-09-11 09:06:51.238675 0ae6c98f-7990-40e7-92c0-bb06deb92500 {"md5": "582ea92cb326cac5a5ad8beda0f12dd2", "pid": "A005599445", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005599445", "source": "RERO"}], "preferred_name": "Binkley, David A", "authorized_access_point": "Binkley, David A"} 1 +2024-09-11 09:06:51.296615 2024-09-11 09:06:51.29662 579ad2b7-fe23-49f7-8a01-e25ed3c80563 {"md5": "b6054c29c91403e028014f8e4028fa71", "pid": "A005605846", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005605846", "source": "RERO"}], "preferred_name": "Fabian, Anton", "authorized_access_point": "Fabian, Anton"} 1 +2024-09-11 09:06:51.355838 2024-09-11 09:06:51.355842 aa1e5e7d-3f96-44a5-a66d-95c8955891ac {"md5": "d713ad84dc95aaea427f3ef5c7b6147a", "pid": "A005621817", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005621817", "source": "RERO"}], "preferred_name": "Thomas-Morus-Gesellschaft", "authorized_access_point": "Thomas-Morus-Gesellschaft"} 1 +2024-09-11 09:06:51.410735 2024-09-11 09:06:51.410738 7ca5b506-5209-41ce-9dfe-317ea17d9c90 {"md5": "998dbb7c226d275268ccea9123f7e241", "pid": "A005623637", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005623637", "source": "RERO"}], "preferred_name": "Laurent, Marguerite-Marie", "authorized_access_point": "Laurent, Marguerite-Marie"} 1 +2024-09-11 09:06:51.463687 2024-09-11 09:06:51.46369 49c42a3b-04fb-49c6-9c49-bf7769be272a {"md5": "7a207e6f370521dcf6664ee4ea5347eb", "pid": "A005655274", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005655274", "source": "RERO"}], "preferred_name": "Guareschi, Alberto", "authorized_access_point": "Guareschi, Alberto"} 1 +2024-09-11 09:06:51.52242 2024-09-11 09:06:51.522423 e9da73fe-3cb9-474e-b574-a71f45451204 {"md5": "09143a1827e962eb58ef4dcbcff94c7c", "pid": "A005663176", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005663176", "source": "RERO"}], "preferred_name": "Einsele, Herrmann", "authorized_access_point": "Einsele, Herrmann"} 1 +2024-09-11 09:06:51.579222 2024-09-11 09:06:51.579226 80eb7681-dfe8-473f-af37-63930d977238 {"md5": "914bf1c5766e0bf701f9a97931e01b5e", "pid": "A005673019", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005673019", "source": "RERO"}], "preferred_name": "Morgan, Karl Z", "authorized_access_point": "Morgan, Karl Z"} 1 +2024-09-11 09:06:51.635865 2024-09-11 09:06:51.635872 aa38cd2a-9158-40db-998d-c45a574e8504 {"md5": "11da52d9bbd285ff2474872e8407aea1", "pid": "A005680197", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005680197", "source": "RERO"}], "preferred_name": "Bonnaud, Jacques-Julien", "authorized_access_point": "Bonnaud, Jacques-Julien"} 1 +2024-09-11 09:06:51.689918 2024-09-11 09:06:51.689922 75bc2f18-9fd5-4418-873e-df1ba8873ce6 {"md5": "846954b050976df2c82f47c5819ce4df", "pid": "A005718969", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005718969", "source": "RERO"}], "preferred_name": "Istituto Dalle Molle di studi sull'intelligenza artificiale (Lugano)", "authorized_access_point": "Istituto Dalle Molle di studi sull'intelligenza artificiale (Lugano)"} 1 +2024-09-11 09:06:51.741133 2024-09-11 09:06:51.741137 06190cd0-8cef-418f-af45-b34538f137cd {"md5": "a8ba1b9e20dcb61d8807e409d9916131", "pid": "A005732208", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005732208", "source": "RERO"}], "preferred_name": "Busch, Sylvia", "authorized_access_point": "Busch, Sylvia"} 1 +2024-09-11 09:06:51.80479 2024-09-11 09:06:51.804794 09c79da0-ed28-4ccf-8126-88837109f15d {"md5": "7123121a7d06134999eecb4867dd878a", "pid": "A005753197", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005753197", "source": "RERO"}], "preferred_name": "Divertimento ensemble", "authorized_access_point": "Divertimento ensemble"} 1 +2024-09-11 09:06:51.872404 2024-09-11 09:06:51.87241 9c57ad44-7f16-42f8-b5ce-42351750552e {"md5": "079c5a7a23399710a3b9b1f9f97e9821", "pid": "A005770175", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005770175", "source": "RERO"}], "preferred_name": "Eyoum, Isabelle", "authorized_access_point": "Eyoum, Isabelle"} 1 +2024-09-11 09:06:51.942087 2024-09-11 09:06:51.942092 52226884-6673-46e5-9c6f-3398aaba9479 {"md5": "c0c545cb9cdb407ff95e38e7b1ac788f", "pid": "A005787734", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005787734", "source": "RERO"}], "preferred_name": "Blau, Tatjana", "authorized_access_point": "Blau, Tatjana"} 1 +2024-09-11 09:06:52.00155 2024-09-11 09:06:52.001553 fae344b9-5b04-4653-b202-b02885f40b66 {"md5": "4cb9659593b091a9d9bcd11f3ed37e51", "pid": "A005794650", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005794650", "source": "RERO"}], "preferred_name": "Marcinkowska, Barbara", "authorized_access_point": "Marcinkowska, Barbara"} 1 +2024-09-11 09:06:52.056388 2024-09-11 09:06:52.056393 f3e00ad0-38cd-4f27-97de-46f1f2b6069a {"md5": "ede9fe6672c43f665efc13cff3a77dae", "pid": "A005814757", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005814757", "source": "RERO"}], "preferred_name": "Hess, Friedrich", "authorized_access_point": "Hess, Friedrich"} 1 +2024-09-11 09:06:52.109995 2024-09-11 09:06:52.109999 69987d1d-82d7-479d-b351-7d430011223a {"md5": "a85a0ea526f2193c5f9f42ccc46a32a9", "pid": "A005821830", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005821830", "source": "RERO"}], "preferred_name": "Green, Owen Mortimer", "authorized_access_point": "Green, Owen Mortimer"} 1 +2024-09-11 09:06:52.166401 2024-09-11 09:06:52.166405 bec4027a-846b-4ba0-818a-eb0c3e50f22a {"md5": "7aaad46c4f9b341b1118b3c878bec65d", "pid": "A005915341", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005915341", "source": "RERO"}], "preferred_name": "Pilszczikowa, Nina", "authorized_access_point": "Pilszczikowa, Nina"} 1 +2024-09-11 09:06:52.219313 2024-09-11 09:06:52.219317 51f06bef-2d9f-4cda-bbb8-fa3d93ff21a5 {"md5": "832ea23714b00f0e8a3f7720e3beef06", "pid": "A005942520", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005942520", "source": "RERO"}], "preferred_name": "Testa Bappenheim, Italo", "authorized_access_point": "Testa Bappenheim, Italo"} 1 +2024-09-11 09:06:52.277763 2024-09-11 09:06:52.277768 d0b3b63d-f4bd-4fed-8ae6-c08fc14ecc5a {"md5": "06544cd1aaba77fb2e3947ec68999c4e", "pid": "A005944951", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005944951", "source": "RERO"}], "preferred_name": "Ormières, Jean-Luc", "authorized_access_point": "Ormières, Jean-Luc"} 1 +2024-09-11 09:06:52.335997 2024-09-11 09:06:52.336005 a5e32541-82bc-4f4b-af4a-952f04ff547a {"md5": "8f8544ae41cdf7057d480d39a4eb07b6", "pid": "A005945920", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005945920", "source": "RERO"}], "preferred_name": "Blum, Eugène", "authorized_access_point": "Blum, Eugène"} 1 +2024-09-11 09:06:52.388206 2024-09-11 09:06:52.388211 b764cca3-89f4-4599-90e6-8951f20f4f24 {"md5": "92604719d24c934251f23768ffb962cd", "pid": "A005984015", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005984015", "source": "RERO"}], "preferred_name": "Moscovici, Claudia", "authorized_access_point": "Moscovici, Claudia"} 1 +2024-09-11 09:06:52.441592 2024-09-11 09:06:52.441618 bd61de93-da62-43ca-8641-24c3c606e99e {"md5": "65bf2cf7d22d6185430e7d0f5e1543e9", "pid": "A005995031", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A005995031", "source": "RERO"}], "preferred_name": "Dion, Linda", "authorized_access_point": "Dion, Linda"} 1 +2024-09-11 09:06:52.506066 2024-09-11 09:06:52.50607 a3f687f2-15de-43d0-a608-61cee986062c {"md5": "41c6a7e7a21d31a6ee888778a12c4cf3", "pid": "A006018560", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006018560", "source": "RERO"}], "preferred_name": "Beynon, C.E", "authorized_access_point": "Beynon, C.E"} 1 +2024-09-11 09:06:52.560752 2024-09-11 09:06:52.560757 6f45cc73-d341-46c7-817f-27709cae779a {"md5": "c8a275b326d640e952451c1b54589952", "pid": "A006023343", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006023343", "source": "RERO"}], "preferred_name": "Troncoso, Sergio", "authorized_access_point": "Troncoso, Sergio"} 1 +2024-09-11 09:06:52.612509 2024-09-11 09:06:52.612514 11ef1fc1-7242-4989-9ee2-8708726b3356 {"md5": "5ff553520f1a96a9b3318ddfbfce58f8", "pid": "A006035318", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006035318", "source": "RERO"}], "preferred_name": "Birget, J.-C", "authorized_access_point": "Birget, J.-C"} 1 +2024-09-11 09:06:52.673519 2024-09-11 09:06:52.673522 953efba5-c50c-47d7-8293-e6a7f29f4ad9 {"md5": "e47a417e254f6725776d7a0bd592b1a3", "pid": "A006048308", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006048308", "source": "RERO"}], "preferred_name": "Pellissier, Simone", "authorized_access_point": "Pellissier, Simone"} 1 +2024-09-11 09:06:52.73163 2024-09-11 09:06:52.731633 3f4d07e5-9265-40ea-991d-228c383aa0bb {"md5": "b0f052d0243417477c67a5e3aca80acb", "pid": "A006055239", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006055239", "source": "RERO"}], "preferred_name": "Nigeria Deposit Insurance Corporation", "authorized_access_point": "Nigeria Deposit Insurance Corporation"} 1 +2024-09-11 09:06:52.78345 2024-09-11 09:06:52.783455 4675f222-b2a5-4681-b910-8e36ff4b8f3b {"md5": "dbc0565047bca07fe55dbd53706a5df9", "pid": "A006055590", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006055590", "source": "RERO"}], "preferred_name": "Ensemble Kapsberger", "authorized_access_point": "Ensemble Kapsberger"} 1 +2024-09-11 09:06:52.837767 2024-09-11 09:06:52.837773 57ae578f-83de-4276-8910-a3813f92ead1 {"md5": "cfce8f27d70fc9ae1ae0fa19711d1798", "pid": "A006065033", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006065033", "source": "RERO"}], "preferred_name": "Mahtab, H.K", "authorized_access_point": "Mahtab, H.K"} 1 +2024-09-11 09:06:52.902367 2024-09-11 09:06:52.902371 8a7bf35f-ce23-474f-9db6-39aa59ea3e07 {"md5": "7e690b23bbb6c7136053e75e7fae5ed3", "pid": "A006071676", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006071676", "source": "RERO"}], "preferred_name": "Shilstone, Arthur", "authorized_access_point": "Shilstone, Arthur"} 1 +2024-09-11 09:06:52.95546 2024-09-11 09:06:52.955464 c278e019-bbdf-4bfb-8b80-b676196bde44 {"md5": "8cb1ae9fafe72dc31af93003a7dc8e85", "pid": "A006094802", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006094802", "source": "RERO"}], "preferred_name": "Morrison, Margaret", "authorized_access_point": "Morrison, Margaret"} 1 +2024-09-11 09:06:53.006519 2024-09-11 09:06:53.006524 7722b6a7-f831-47bc-9fe0-e63dcf3543fb {"md5": "6d0a64a433d0c5bf5e07144b8c6ef70b", "pid": "A006099782", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006099782", "source": "RERO"}], "preferred_name": "Francs et Franches camarades (Paris)", "authorized_access_point": "Francs et Franches camarades (Paris)"} 1 +2024-09-11 09:06:53.063656 2024-09-11 09:06:53.06366 1f2e4372-8e8d-4a5e-98d8-fe1c3e46b332 {"md5": "8202429ed95c91de2a46f80ae96e577c", "pid": "A006102670", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006102670", "source": "RERO"}], "preferred_name": "Pomian, Andrzej", "authorized_access_point": "Pomian, Andrzej"} 1 +2024-09-11 09:06:53.1187 2024-09-11 09:06:53.118704 5733bdfa-d22f-4f44-a565-1880b77bd2a2 {"md5": "79a62029fc29420f6602a362e8270244", "pid": "A006154163", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006154163", "source": "RERO"}], "preferred_name": "Alldeutscher Verband", "authorized_access_point": "Alldeutscher Verband"} 1 +2024-09-11 09:06:53.178221 2024-09-11 09:06:53.178226 10b2bdb0-f823-4154-91ac-85df46570b36 {"md5": "698dfc3e8340a4f19759ec5c8e291d81", "pid": "A006159385", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006159385", "source": "RERO"}], "preferred_name": "Hanssen, Christian", "authorized_access_point": "Hanssen, Christian"} 1 +2024-09-11 09:06:53.248601 2024-09-11 09:06:53.248606 0ab0e016-d02c-407b-9adf-ee371e5fdcfd {"md5": "05f75fb28434669c7ab50344e0773162", "pid": "A006173450", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006173450", "source": "RERO"}], "preferred_name": "Steudler, Colette", "authorized_access_point": "Steudler, Colette"} 1 +2024-09-11 09:06:53.300281 2024-09-11 09:06:53.300284 6b129cd8-52c6-4659-a5cb-5cc2ae68aaa6 {"md5": "b5e6d3d833843f2f6f723ff51214618a", "pid": "A006173574", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006173574", "source": "RERO"}], "preferred_name": "Schönwälder, Karen", "authorized_access_point": "Schönwälder, Karen"} 1 +2024-09-11 09:06:53.366959 2024-09-11 09:06:53.366964 868309ae-a97b-4e3e-8f34-c1a2bb5354bf {"md5": "e8cd1b1f551c2e776c0ec1321fb714e8", "pid": "A006204823", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006204823", "source": "RERO"}], "preferred_name": "Einstürzende Neubauten", "authorized_access_point": "Einstürzende Neubauten"} 1 +2024-09-11 09:06:53.419145 2024-09-11 09:06:53.419149 fbfd57e3-4b6e-4853-a7d0-a72de0611653 {"md5": "9fd3f830a81972b2766c1db7e3ffd669", "pid": "A006210520", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006210520", "source": "RERO"}], "preferred_name": "Schwartz, Robert B", "authorized_access_point": "Schwartz, Robert B"} 1 +2024-09-11 09:06:53.474626 2024-09-11 09:06:53.474629 c443c416-5e84-4c61-8cd2-227ed8b867e6 {"md5": "591cee628d22e6cd95f097af97a03c93", "pid": "A006220068", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006220068", "source": "RERO"}], "preferred_name": "Centro di studi storici della Chiesa di Bari", "authorized_access_point": "Centro di studi storici della Chiesa di Bari"} 1 +2024-09-11 09:06:53.527392 2024-09-11 09:06:53.527396 30a05034-f777-42f1-ad88-c19619e98fe5 {"md5": "6f154002a07e983929f9b0d7b0fbedae", "pid": "A006225272", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006225272", "source": "RERO"}], "variant_name": ["CIRILLIS (Centre interuniversitaire de recherches sur l'Italie, langue, littérature, interactions culturelles, société et mentalités, Talence, Gironde)", "Université de Poitiers. Centre interuniversitaire de recherches sur l'Italie (langue, littérature, interactions culturelles, société et mentalités)", "Université de Toulouse 2. Centre interuniversitaire de recherches sur l'Italie (langue, littérature, interactions culturelles, société et mentalités)", "Université de Bordeaux 3. Centre interuniversitaire de recherches sur l'Italie (langue, littérature, interactions culturelles, société et mentalités)"], "preferred_name": "Centre interuniversitaire de recherches sur l'Italie (langue, littérature, interactions culturelles, société et mentalités) (Talence, Gironde)", "variant_access_point": ["CIRILLIS (Centre interuniversitaire de recherches sur l'Italie, langue, littérature, interactions culturelles, société et mentalités, Talence, Gironde)", "Université de Poitiers. Centre interuniversitaire de recherches sur l'Italie (langue, littérature, interactions culturelles, société et mentalités)", "Université de Toulouse 2. Centre interuniversitaire de recherches sur l'Italie (langue, littérature, interactions culturelles, société et mentalités)", "Université de Bordeaux 3. Centre interuniversitaire de recherches sur l'Italie (langue, littérature, interactions culturelles, société et mentalités)"], "authorized_access_point": "Centre interuniversitaire de recherches sur l'Italie (langue, littérature, interactions culturelles, société et mentalités) (Talence, Gironde)"} 1 +2024-09-11 09:06:53.581042 2024-09-11 09:06:53.581046 a5769150-5f9b-408c-b6da-bd5185eca314 {"md5": "9f67718c893bc38bf67ef29af6b72e93", "pid": "A006241487", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006241487", "source": "RERO"}], "preferred_name": "Cherhabil, Hocine", "authorized_access_point": "Cherhabil, Hocine"} 1 +2024-09-11 09:06:53.633925 2024-09-11 09:06:53.633931 4fea2334-484e-448b-acfc-5d9ce2adbe1d {"md5": "b6f24c559d25f814ab73186c441431ac", "pid": "A006246319", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006246319", "source": "RERO"}], "variant_name": ["García, Josefa Martín"], "preferred_name": "Martín García, Josefa", "variant_access_point": ["García, Josefa Martín"], "authorized_access_point": "Martín García, Josefa"} 1 +2024-09-11 09:06:53.690541 2024-09-11 09:06:53.690545 34dd546d-b215-478e-b133-a25f34ac5648 {"md5": "3ec71907612aab4398bd5ca529b55e94", "pid": "A006251854", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006251854", "source": "RERO"}], "preferred_name": "Schmitt-Breuninger, Friederike", "authorized_access_point": "Schmitt-Breuninger, Friederike"} 1 +2024-09-11 09:06:53.749047 2024-09-11 09:06:53.749052 b6d59c58-7457-42bd-9a91-5665c781bdba {"md5": "6e8d50ed35d82302dbcdf9e69960df6d", "pid": "A006282682", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006282682", "source": "RERO"}], "preferred_name": "Dardenne, Henriette", "authorized_access_point": "Dardenne, Henriette"} 1 +2024-09-11 09:06:53.808297 2024-09-11 09:06:53.808301 65cc5d9d-c27a-4c0e-b11f-dd045dff93cc {"md5": "8cd3dca150b94181789e7c95ad405402", "pid": "A006288245", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006288245", "source": "RERO"}], "preferred_name": "Bernabé, Claude", "authorized_access_point": "Bernabé, Claude"} 1 +2024-09-11 09:06:53.882112 2024-09-11 09:06:53.882117 f70b6fa4-5cf0-45b0-af84-e40cff41ebc0 {"md5": "73310cab9e66fef0066d815ce1d1c697", "pid": "A006304507", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006304507", "source": "RERO"}], "variant_name": ["Ecole polytechnique fédérale de Lausanne. Observatoire science, politique et société"], "preferred_name": "Observatoire EPFL science, politique et société (Ecublens)", "variant_access_point": ["Ecole polytechnique fédérale de Lausanne. Observatoire science, politique et société"], "authorized_access_point": "Observatoire EPFL science, politique et société (Ecublens)", "biographical_information": ["Jusqu'en 2004: Observatoire EPFL science, politique et société (Ecublens)", "Dès 2005: Observatoire science, politique et société (Ecublens)"]} 1 +2024-09-11 09:06:53.941978 2024-09-11 09:06:53.941982 f4fa7bd3-3286-4cf7-869f-afe1a8104954 {"md5": "35693449d7f9e67faa2c07cbaa38265b", "pid": "A006305372", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006305372", "source": "RERO"}], "preferred_name": "Harris, D.J", "authorized_access_point": "Harris, D.J"} 1 +2024-09-11 09:06:54.001929 2024-09-11 09:06:54.001934 51436969-3dd0-40e8-9fcd-0d991a0a5536 {"md5": "8b430525336db095a3cd41054c495f48", "pid": "A006319847", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006319847", "source": "RERO"}], "preferred_name": "Slipknot", "authorized_access_point": "Slipknot"} 1 +2024-09-11 09:06:54.058825 2024-09-11 09:06:54.05883 4daa3408-3a5d-4551-87b7-52a00687f781 {"md5": "0e5c1bb4a05851dccb3cab17860f786f", "pid": "A006331016", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006331016", "source": "RERO"}], "preferred_name": "Sobieszczanski, Marcin", "authorized_access_point": "Sobieszczanski, Marcin"} 1 +2024-09-11 09:06:54.119688 2024-09-11 09:06:54.119692 8c104204-8ad0-4f3d-8158-14705301ad52 {"md5": "8b37d48b3514d25dcb4b78a2dbff4b19", "pid": "A006378241", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006378241", "source": "RERO"}], "preferred_name": "Conseil international des archives. Section des archives d'architecture", "authorized_access_point": "Conseil international des archives. Section des archives d'architecture"} 1 +2024-09-11 09:06:54.17892 2024-09-11 09:06:54.178923 0ea947fa-417e-45cb-8683-549e647a3d63 {"md5": "c444f46097c2f197b0e573fa2fa12b17", "pid": "A006384206", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006384206", "source": "RERO"}], "preferred_name": "Lynch, Stephen", "authorized_access_point": "Lynch, Stephen"} 1 +2024-09-11 09:06:54.244626 2024-09-11 09:06:54.244631 a36924bc-f35a-42c8-bc5e-378f50ae02e0 {"md5": "38661fc65b863cadc41eb991051be8c1", "pid": "A006389498", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006389498", "source": "RERO"}], "preferred_name": "Chrześcijanin", "authorized_access_point": "Chrześcijanin"} 1 +2024-09-11 09:06:54.304776 2024-09-11 09:06:54.304781 7cd0cacd-bad3-46d4-8d08-a2f69c1cc4a5 {"md5": "e4af784fa61cb77a8fd36a834b2d902f", "pid": "A006407470", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006407470", "source": "RERO"}], "preferred_name": "British Sundial Society", "authorized_access_point": "British Sundial Society"} 1 +2024-09-11 09:06:54.361542 2024-09-11 09:06:54.361546 e980f9b0-e3e6-4886-b05c-708192791544 {"md5": "51c17b9e95743b018c6fdaff79acede2", "pid": "A006417880", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006417880", "source": "RERO"}], "preferred_name": "Palomäki, Mauri", "authorized_access_point": "Palomäki, Mauri"} 1 +2024-09-11 09:06:54.41239 2024-09-11 09:06:54.412393 f32c512b-5761-42aa-a25a-044cc24f68f0 {"md5": "72e67b74c7d5692dfe62668564e6c3d8", "pid": "A006417971", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006417971", "source": "RERO"}], "preferred_name": "Karagöz, Oguz", "authorized_access_point": "Karagöz, Oguz"} 1 +2024-09-11 09:06:54.468364 2024-09-11 09:06:54.468369 1eec50dd-5e0c-4270-9c45-c37423d82e53 {"md5": "fcacb5e7f073c96631ddb792a2e9fd05", "pid": "A006451071", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006451071", "source": "RERO"}], "preferred_name": "Smith, Dan Franklin", "authorized_access_point": "Smith, Dan Franklin"} 1 +2024-09-11 09:06:54.522302 2024-09-11 09:06:54.522305 623771d5-f641-4872-bb96-709d12e5ce53 {"md5": "fcb74565a92a6ceb34f5951e7ff840a5", "pid": "A006525884", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006525884", "source": "RERO"}], "preferred_name": "Yetter, David N", "authorized_access_point": "Yetter, David N"} 1 +2024-09-11 09:06:54.572832 2024-09-11 09:06:54.572835 bedf12df-4a0d-40ec-a98d-40dfc1d85119 {"md5": "ed6ddb1bdf016ffa987087cfed20497b", "pid": "A006533818", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006533818", "source": "RERO"}], "preferred_name": "Welsch, Chauncey", "authorized_access_point": "Welsch, Chauncey"} 1 +2024-09-11 09:06:54.625948 2024-09-11 09:06:54.625951 9c11e58b-4a98-4897-9737-7900efac82bb {"md5": "aaad78e49d197459d7e73844dcc166e1", "pid": "A006534193", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006534193", "source": "RERO"}], "preferred_name": "Société d'émulation des Côtes d'Armor", "authorized_access_point": "Société d'émulation des Côtes d'Armor"} 1 +2024-09-11 09:06:54.679478 2024-09-11 09:06:54.679482 0f6ea832-0000-44c8-b91c-acbe28e8aea9 {"md5": "8734b6a46b756a9dbbf1c1b90bad2a2d", "pid": "A006581053", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A006581053", "source": "RERO"}], "preferred_name": "Dubus, Hermin", "authorized_access_point": "Dubus, Hermin"} 1 +2024-09-11 09:06:54.736822 2024-09-11 09:06:54.736828 c552d99f-52e1-4c1e-b36c-bc0816b8505b {"md5": "54579d41c8c754a4cad803a4feb45be6", "pid": "A008584612", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A008584612", "source": "RERO"}], "preferred_name": "Redner, Sidney", "authorized_access_point": "Redner, Sidney"} 1 +2024-09-11 09:06:54.799557 2024-09-11 09:06:54.799561 33903b2b-e8c1-4452-afcb-0bd3fc0bb182 {"md5": "854dc83a801295f49c9906f5cd773d77", "pid": "A008591482", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A008591482", "source": "RERO"}], "preferred_name": "Chang, Chu-Kuing", "authorized_access_point": "Chang, Chu-Kuing"} 1 +2024-09-11 09:06:54.854461 2024-09-11 09:06:54.854466 c2c7febf-3f28-4cd1-8935-7c07d154b02c {"md5": "ef7c5312d68395f8555880c1a0f4b931", "pid": "A008595638", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A008595638", "source": "RERO"}], "preferred_name": "Bergsma, Jurrit", "authorized_access_point": "Bergsma, Jurrit"} 1 +2024-09-11 09:06:54.913589 2024-09-11 09:06:54.913592 70331efd-9950-49ef-afee-498a501a9a36 {"md5": "210239b4a5befcd7255001b96b9cc072", "pid": "A008660620", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A008660620", "source": "RERO"}], "preferred_name": "Blum, Sigwart", "authorized_access_point": "Blum, Sigwart"} 1 +2024-09-11 09:06:54.974025 2024-09-11 09:06:54.974028 ce937d9c-2f3a-4a71-9ee0-dfbde9a4d074 {"md5": "a04f9876c29d668430849c048a670555", "pid": "A008729062", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A008729062", "source": "RERO"}], "preferred_name": "Cinquin, François", "authorized_access_point": "Cinquin, François"} 1 +2024-09-11 09:06:55.037884 2024-09-11 09:06:55.037889 ec6781ae-308c-42ac-8ead-39c8b0bb5e2c {"md5": "cb30d4b5418e6258595fc596e1565a5e", "pid": "A008730051", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A008730051", "source": "RERO"}], "preferred_name": "Otomo, Masaku", "authorized_access_point": "Otomo, Masaku"} 1 +2024-09-11 09:06:55.095574 2024-09-11 09:06:55.095579 90efa9d4-a0d9-4930-8c6a-3636a4591097 {"md5": "47bb15e517038e4b206d2f6884747afc", "pid": "A008794733", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A008794733", "source": "RERO"}], "preferred_name": "Rogue, Christophe", "authorized_access_point": "Rogue, Christophe"} 1 +2024-09-11 09:06:55.157054 2024-09-11 09:06:55.157058 7988b6dc-d9b3-4fdd-bf9b-a11e47503b38 {"md5": "5dc279ee44f4ee68f8f06a007ccfb6d8", "pid": "A008799434", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A008799434", "source": "RERO"}], "preferred_name": "Realschule (Schönberg)", "authorized_access_point": "Realschule (Schönberg)"} 1 +2024-09-11 09:06:55.21141 2024-09-11 09:06:55.211414 55062502-1628-4013-ac53-2c7434585253 {"md5": "59f09f335bb9e185dccf33ee6378eee8", "pid": "A008811165", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A008811165", "source": "RERO"}], "preferred_name": "Desquilbet, Marion", "authorized_access_point": "Desquilbet, Marion"} 1 +2024-09-11 09:06:55.267384 2024-09-11 09:06:55.267389 3e5059f5-e2da-4099-99e9-39d6a3e9d25d {"md5": "dcdeea3fac914b1fabc0d25058256a8b", "pid": "A008813776", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A008813776", "source": "RERO"}], "preferred_name": "Henriot, Véronique", "authorized_access_point": "Henriot, Véronique"} 1 +2024-09-11 09:06:55.324877 2024-09-11 09:06:55.324881 c3c1a5b6-98b2-4dee-9897-173298f53699 {"md5": "5cc6a5c441d2e59c3898ffab336e145e", "pid": "A008846996", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A008846996", "source": "RERO"}], "preferred_name": "Junker, Karin", "authorized_access_point": "Junker, Karin"} 1 +2024-09-11 09:06:55.373784 2024-09-11 09:06:55.373786 ee016dce-dbc1-4b38-873f-95535a5a2400 {"md5": "5e6ada8d14fc62182ad60a5ff1b9e2b2", "pid": "A008873000", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A008873000", "source": "RERO"}], "preferred_name": "Duval, Jean-Marc", "authorized_access_point": "Duval, Jean-Marc"} 1 +2024-09-11 09:06:55.426451 2024-09-11 09:06:55.426455 d3f51e8e-e1af-4c08-939d-df0366c82a0f {"md5": "52be3b85b053e73c3f88ec7b5ce8a3d9", "pid": "A008883799", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A008883799", "source": "RERO"}], "preferred_name": "Greve, Michael", "authorized_access_point": "Greve, Michael"} 1 +2024-09-11 09:06:55.478477 2024-09-11 09:06:55.478482 7c4e7395-1144-4a51-b4ee-0a836bf04f13 {"md5": "15ca82bdddfe70c387f98871f7add2eb", "pid": "A008902038", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A008902038", "source": "RERO"}], "preferred_name": "Conseil genevois des théâtres et de la musique", "authorized_access_point": "Conseil genevois des théâtres et de la musique"} 1 +2024-09-11 09:06:55.528554 2024-09-11 09:06:55.528558 6706a858-3163-40e4-87e2-53f1c70919f4 {"md5": "83c497a6b47d2a2af855c0ef7c1eb2c8", "pid": "A008915559", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A008915559", "source": "RERO"}], "preferred_name": "Machtey, Michael", "authorized_access_point": "Machtey, Michael"} 1 +2024-09-11 09:06:55.582659 2024-09-11 09:06:55.582665 483cbdce-f293-4bbd-9497-23394efd7e5d {"md5": "75034f1d2c54d42d191b1783dce31edf", "pid": "A008943784", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A008943784", "source": "RERO"}], "preferred_name": "Durst, David C", "authorized_access_point": "Durst, David C"} 1 +2024-09-11 09:06:55.632293 2024-09-11 09:06:55.632295 3d5dff5d-3294-487d-8e9f-efe15a070919 {"md5": "64083960f5d84d511ae57937abe64965", "pid": "A008959724", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A008959724", "source": "RERO"}], "preferred_name": "Bayili, Emmanuel", "authorized_access_point": "Bayili, Emmanuel"} 1 +2024-09-11 09:06:55.714417 2024-09-11 09:06:55.714421 f4c98d82-e842-4e40-9dfa-e30eac34b1ab {"md5": "fbc8cb1a795b1666d6d7512c15c6fd88", "pid": "A008978887", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A008978887", "source": "RERO"}], "preferred_name": "Spieth, Wolf Friedrich", "authorized_access_point": "Spieth, Wolf Friedrich"} 1 +2024-09-11 09:06:55.798485 2024-09-11 09:06:55.798489 3c4ff07d-abac-473b-8316-6c4ac3b35e02 {"md5": "f6323c7fdf724626f73625d46157050b", "pid": "A009007993", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009007993", "source": "RERO"}], "preferred_name": "MCC Associates", "authorized_access_point": "MCC Associates"} 1 +2024-09-11 09:06:55.859599 2024-09-11 09:06:55.859604 e3e56ff1-b407-49bb-9237-26c9af80e86d {"md5": "c028cbabe37b9381071fad88bb22a77c", "pid": "A009035130", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009035130", "source": "RERO"}], "preferred_name": "Corbu, Adrien C", "authorized_access_point": "Corbu, Adrien C"} 1 +2024-09-11 09:06:55.911986 2024-09-11 09:06:55.911991 0d79979d-473b-48af-8423-1406f928c62a {"md5": "bf4cb7cf33469d4a14f3b54663b8c05f", "pid": "A009047642", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009047642", "source": "RERO"}], "preferred_name": "Tournier, Vincent", "authorized_access_point": "Tournier, Vincent"} 1 +2024-09-11 09:06:55.965192 2024-09-11 09:06:55.965194 278f4999-61a4-4dbd-9f05-75d81e7b4948 {"md5": "182a99fbe0b9d998ef11bbe3ac738420", "pid": "A009059078", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009059078", "source": "RERO"}], "preferred_name": "Robinet, Jean-Claude", "authorized_access_point": "Robinet, Jean-Claude"} 1 +2024-09-11 09:06:56.801122 2024-09-11 09:06:56.801126 46c25a26-8299-4303-9ccf-2d7ddd668e55 {"md5": "98df77a818d19bbfe6d79d60d07f558d", "pid": "A009315376", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009315376", "source": "RERO"}], "preferred_name": "Burnett, A. M", "authorized_access_point": "Burnett, A. M"} 1 +2024-09-11 09:06:56.017385 2024-09-11 09:06:56.01739 04db3913-83bb-4636-ad33-20eaeaf01bd1 {"md5": "1a08f61b76b12b81a9b45265f55842ec", "pid": "A009061697", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009061697", "source": "RERO"}], "variant_name": ["Conseil consultatif des étrangers (Strasbourg)", "Conseil consultatif des résidents étrangers de la ville de Strasbourg"], "preferred_name": "Strasbourg. Conseil consultatif des étrangers", "variant_access_point": ["Conseil consultatif des étrangers (Strasbourg)", "Conseil consultatif des résidents étrangers de la ville de Strasbourg"], "authorized_access_point": "Strasbourg. Conseil consultatif des étrangers"} 1 +2024-09-11 09:06:56.077433 2024-09-11 09:06:56.077438 df0ab822-179f-4292-acbc-595e31c81506 {"md5": "d115bb82ed35cb68d1256d2a55723274", "pid": "A009062623", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009062623", "source": "RERO"}], "variant_name": ["Somerville College (University of Oxford)"], "preferred_name": "University of Oxford. Somerville College", "variant_access_point": ["Somerville College (University of Oxford)"], "authorized_access_point": "University of Oxford. Somerville College"} 1 +2024-09-11 09:06:56.128864 2024-09-11 09:06:56.128867 b911a050-3347-4d08-a0a9-bf1b7f3f34b0 {"md5": "5be793c9bfc733425831a10983d6a5f3", "pid": "A009084334", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009084334", "source": "RERO"}], "preferred_name": "Krieghoff, Hans", "authorized_access_point": "Krieghoff, Hans"} 1 +2024-09-11 09:06:56.186482 2024-09-11 09:06:56.186486 45130d56-b27b-4942-8317-8320536866b0 {"md5": "a7cbea675475d8e4ab5379c66159394b", "pid": "A009106239", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009106239", "source": "RERO"}], "preferred_name": "Galster, Karol Lucjan", "authorized_access_point": "Galster, Karol Lucjan"} 1 +2024-09-11 09:06:56.245767 2024-09-11 09:06:56.245771 caa969d0-791b-48f3-a7f5-4ba2d26a55b7 {"md5": "bdbaf8feb581135bcb55db9199ceaf78", "pid": "A009112861", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009112861", "source": "RERO"}], "preferred_name": "Bund-Länder-Kommission für Bildungsplanung und Forschungsförderung (Bonn)", "authorized_access_point": "Bund-Länder-Kommission für Bildungsplanung und Forschungsförderung (Bonn)"} 1 +2024-09-11 09:06:56.302696 2024-09-11 09:06:56.3027 99f82a13-4aa7-40ad-a479-24b5fb253899 {"md5": "ecb8d4ea24819779791b77aa4252afdf", "pid": "A009177536", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009177536", "source": "RERO"}], "preferred_name": "Oppel, Kenneth", "authorized_access_point": "Oppel, Kenneth"} 1 +2024-09-11 09:06:56.357351 2024-09-11 09:06:56.357355 8bf02f3c-a4f2-4fb6-a1e0-70dfb025c2ab {"md5": "9a736b0ed4601363e58dfa445fe1c763", "pid": "A009187240", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009187240", "source": "RERO"}], "variant_name": ["OIE (Organisation internationale des employeurs)", "International Organisation of Employers", "IOE (International Organisation of Employers)", "Organización Internacional de Empleadores", "OIE (Organización Internacional de Empleadores)"], "preferred_name": "Organisation internationale des employeurs", "variant_access_point": ["OIE (Organisation internationale des employeurs)", "International Organisation of Employers", "IOE (International Organisation of Employers)", "Organización Internacional de Empleadores", "OIE (Organización Internacional de Empleadores)"], "authorized_access_point": "Organisation internationale des employeurs"} 1 +2024-09-11 09:06:56.410067 2024-09-11 09:06:56.410072 67f09aee-414e-4a2a-9add-5aefeeb6e801 {"md5": "db36de8bf16eb310a7ad370746833adf", "pid": "A009191402", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009191402", "source": "RERO"}], "variant_name": ["European Association of Hospital Pharmacists", "EAHP (European Association of Hospital Pharmacists)", "Europäische Vereinigung der Krankenhaus Apotheker", "Association européenne des pharmaciens hospitaliers"], "preferred_name": "Association européenne des pharmaciens des hôpitaux", "variant_access_point": ["European Association of Hospital Pharmacists", "EAHP (European Association of Hospital Pharmacists)", "Europäische Vereinigung der Krankenhaus Apotheker", "Association européenne des pharmaciens hospitaliers"], "authorized_access_point": "Association européenne des pharmaciens des hôpitaux"} 1 +2024-09-11 09:06:56.464728 2024-09-11 09:06:56.464733 a778e40d-80c6-4304-80f0-0719e6b5e129 {"md5": "a24bec1e838645a30963baeb8d4225a1", "pid": "A009191855", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009191855", "source": "RERO"}], "preferred_name": "Jestaedt, Egbert M.W", "authorized_access_point": "Jestaedt, Egbert M.W"} 1 +2024-09-11 09:06:56.521078 2024-09-11 09:06:56.521082 7c768a85-3d5e-4317-bdf0-fe484225f6a1 {"md5": "e4aecb01fab0b723e3bed49e4de15294", "pid": "A009279090", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009279090", "source": "RERO"}], "preferred_name": "Douchy, Hervé", "authorized_access_point": "Douchy, Hervé"} 1 +2024-09-11 09:06:56.581386 2024-09-11 09:06:56.58139 7090372a-025f-4146-91ce-a907c74c20f7 {"md5": "a03b56446af64d4bdad7b7f65d3ddcab", "pid": "A009281447", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009281447", "source": "RERO"}], "preferred_name": "André, Camille", "authorized_access_point": "André, Camille"} 1 +2024-09-11 09:06:56.636141 2024-09-11 09:06:56.636144 ac203aca-8230-476a-afa9-2ad4dfce6dd0 {"md5": "a6a8df507e9439e5b6ef90676f752054", "pid": "A009303631", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009303631", "source": "RERO"}], "preferred_name": "Fröhner, Klaus", "authorized_access_point": "Fröhner, Klaus"} 1 +2024-09-11 09:06:56.692321 2024-09-11 09:06:56.692325 8b546209-32b2-4774-8c98-098d0f01f316 {"md5": "b27a13ce95225079e7af05bd42c10bcb", "pid": "A009306109", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009306109", "source": "RERO"}], "preferred_name": "Soldt, Johannes", "authorized_access_point": "Soldt, Johannes"} 1 +2024-09-11 09:06:56.749029 2024-09-11 09:06:56.749033 7e6ee393-75f3-4036-b6e4-2f0d572e2e80 {"md5": "565c88392e48934430f812a7a32f6bcd", "pid": "A009309124", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009309124", "source": "RERO"}], "preferred_name": "Hancock, David J", "authorized_access_point": "Hancock, David J"} 1 +2024-09-11 09:06:56.853135 2024-09-11 09:06:56.853139 cfa155c9-2962-493b-8432-46b3dc07292a {"md5": "9d4d45f1b8d6a7c5b420b412ccb5e1fa", "pid": "A009341300", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009341300", "source": "RERO"}], "preferred_name": "Mchome, Sifuni Ernest", "authorized_access_point": "Mchome, Sifuni Ernest"} 1 +2024-09-11 09:06:56.906573 2024-09-11 09:06:56.906576 3f789c05-9214-48a8-a11c-6f2b692e7ff1 {"md5": "a8e202ff2a99637f8edba3f092e04756", "pid": "A009366379", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009366379", "source": "RERO"}], "preferred_name": "Beil, Brigitte", "authorized_access_point": "Beil, Brigitte"} 1 +2024-09-11 09:06:56.95863 2024-09-11 09:06:56.958633 2135b7ff-9a52-4b0d-bfde-1d94089d4a70 {"md5": "75a1fff150016345c8ffc441c4b77a6a", "pid": "A009366743", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009366743", "source": "RERO"}], "preferred_name": "Liebelin, François", "authorized_access_point": "Liebelin, François"} 1 +2024-09-11 09:06:57.014236 2024-09-11 09:06:57.014239 9f668bb8-bf5e-424b-a872-ddf2a1b39213 {"md5": "4053feac84c5feb56a07ada09485ffee", "pid": "A009390744", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009390744", "source": "RERO"}], "preferred_name": "Baule, Sylvia", "authorized_access_point": "Baule, Sylvia"} 1 +2024-09-11 09:06:57.068606 2024-09-11 09:06:57.068612 ba18e6a2-eb83-43f9-a1e8-822f269b112c {"md5": "0740c71dcb483ef5e01cd8f52aba3265", "pid": "A009403017", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009403017", "source": "RERO"}], "variant_name": ["International Congress of Gerontology"], "preferred_name": "Congrès international de gérontologie", "variant_access_point": ["International Congress of Gerontology"], "authorized_access_point": "Congrès international de gérontologie"} 1 +2024-09-11 09:06:57.120714 2024-09-11 09:06:57.120718 ace5ea48-58b4-4a78-ac46-5d7fcda181cc {"md5": "b05d704144ee4fe71ccd90cfa0f411ad", "pid": "A009426238", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009426238", "source": "RERO"}], "preferred_name": "Luard, Honey", "authorized_access_point": "Luard, Honey"} 1 +2024-09-11 09:06:57.198542 2024-09-11 09:06:57.198545 84a5e2eb-540e-4978-9b34-780c1d97ad20 {"md5": "29161ac654406c479bb591fb2eee505a", "pid": "A009431913", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009431913", "source": "RERO"}], "preferred_name": "Chandler, Caroline A", "authorized_access_point": "Chandler, Caroline A"} 1 +2024-09-11 09:06:57.25219 2024-09-11 09:06:57.252194 afbcbcf1-b0da-4161-a755-aef88715d164 {"md5": "f48a073f6ab6bef149518611970c13b6", "pid": "A009476519", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009476519", "source": "RERO"}], "preferred_name": "Society of American Foresters", "authorized_access_point": "Society of American Foresters"} 1 +2024-09-11 09:06:57.309115 2024-09-11 09:06:57.309118 636ed93c-7a82-4de0-9660-7aeb3a4ad29f {"md5": "c0dd154b9ed82a55728c4d01d7b94983", "pid": "A009505580", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009505580", "source": "RERO"}], "preferred_name": "Mishra, Omprakash", "authorized_access_point": "Mishra, Omprakash"} 1 +2024-09-11 09:06:57.364436 2024-09-11 09:06:57.364439 45e47b13-dc79-4dff-9735-c370ca9a0855 {"md5": "8625ed153a0fa8cdfec6da1b5216a5dd", "pid": "A009519020", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009519020", "source": "RERO"}], "variant_name": ["Da Costa, Carla Tavares", "Tavares Da Costa, Carla"], "preferred_name": "Costa, Carla Tavares da", "variant_access_point": ["Da Costa, Carla Tavares", "Tavares Da Costa, Carla"], "authorized_access_point": "Costa, Carla Tavares da"} 1 +2024-09-11 09:06:57.430964 2024-09-11 09:06:57.430967 c0bd806a-960e-4e91-a052-7f24a4fd39d0 {"md5": "21b8c4121423db8d3ae479b1d671524d", "pid": "A009523157", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009523157", "source": "RERO"}], "variant_name": ["Association française d'audit et du conseil informatiques", "Association française d'audit et de conseil informatique", "AFAI (Association française de l'audit et du conseil informatiques)", "Association française d'audit informatique", "Association française de l'audit et du conseil informatique"], "preferred_name": "Association française de l'audit et du conseil informatiques", "variant_access_point": ["Association française d'audit et du conseil informatiques", "Association française d'audit et de conseil informatique", "AFAI (Association française de l'audit et du conseil informatiques)", "Association française d'audit informatique", "Association française de l'audit et du conseil informatique"], "authorized_access_point": "Association française de l'audit et du conseil informatiques"} 1 +2024-09-11 09:06:57.489666 2024-09-11 09:06:57.489669 cac94b45-0c10-462f-82fc-ff469bf06b7f {"md5": "beb01d90156e7a9a02118499fea620ab", "pid": "A009541958", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009541958", "source": "RERO"}], "preferred_name": "Bădiliţă, Cristian", "authorized_access_point": "Bădiliţă, Cristian"} 1 +2024-09-11 09:06:57.543634 2024-09-11 09:06:57.543638 bfd4f281-82e4-456b-9e7a-aff34c3da1f4 {"md5": "61344875125ff941fb37442021892298", "pid": "A009544653", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009544653", "source": "RERO"}], "preferred_name": "Women and Law in East Africa (Uganda)", "authorized_access_point": "Women and Law in East Africa (Uganda)"} 1 +2024-09-11 09:06:57.595656 2024-09-11 09:06:57.595659 3a887ce2-052f-4fc4-9db3-a5e58f45de14 {"md5": "e6087fdf01381c6b119cb823ee1a1eae", "pid": "A009546303", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009546303", "source": "RERO"}], "preferred_name": "Wegmüller, David", "authorized_access_point": "Wegmüller, David"} 1 +2024-09-11 09:06:57.650374 2024-09-11 09:06:57.650378 ec58bfcb-def4-42bb-b69d-68f0e785bf0f {"md5": "f2b3a49d913ceba7411228de71c55b9c", "pid": "A009587127", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009587127", "source": "RERO"}], "preferred_name": "Richard Galliano septet", "authorized_access_point": "Richard Galliano septet"} 1 +2024-09-11 09:06:57.707203 2024-09-11 09:06:57.707208 e5f42d90-6228-4b74-80bc-7ef54da5ce93 {"md5": "f3beb9dcf99520c7775a5004930e07de", "pid": "A009590113", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009590113", "source": "RERO"}], "date_of_birth": "1952", "preferred_name": "Haas, Jean-François,", "authorized_access_point": "Haas, Jean-François, 1952-", "biographical_information": ["Ecrivain, enseignant. Né à Courtaman (Suisse, FR)"]} 1 +2024-09-11 09:06:57.770856 2024-09-11 09:06:57.770859 c215dcc7-f849-4fe1-9e9a-e51ef7bb61d8 {"md5": "afed25d372206dd95487f0fcb2a0ad45", "pid": "A009621407", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009621407", "source": "RERO"}], "preferred_name": "Höllermann, Stefan", "authorized_access_point": "Höllermann, Stefan"} 1 +2024-09-11 09:06:57.828499 2024-09-11 09:06:57.828504 06bc49df-2085-4bb4-a04f-bb9034885c9e {"md5": "86f5944bd76573d92ac9f09f80c4eca5", "pid": "A009631364", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009631364", "source": "RERO"}], "preferred_name": "Detmers, Maruschka", "authorized_access_point": "Detmers, Maruschka"} 1 +2024-09-11 09:06:57.889186 2024-09-11 09:06:57.889189 2890e528-b5db-4255-b831-70c5b358ab7e {"md5": "228f56df90188f34ece7f4dfca8cd395", "pid": "A009639453", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009639453", "source": "RERO"}], "variant_name": ["Centre national de la recherche scientifique (France). Laboratoire Archéologie et territoires", "Centre national de la recherche scientifique (France). UMR (6575)", "Centre national de la recherche scientifique (France) Unité mixte de recherche (6575)", "Université de Tours. Laboratoire Archéologie et territoires", "Centre national de la recherche scientifique (France) Unité mixte de recherche (9966)", "Centre national de la recherche scientifique (France) Unité propre de recherche (9018)", "LAT (Laboratoire Archéologie et territoires : Tours)", "Centre de recherches archéologiques (Valbonne). Laboratoire Archéologie et territoires", "Equipe LAT (Tours)"], "preferred_name": "Laboratoire Archéologie et territoires (Tours)", "variant_access_point": ["Centre national de la recherche scientifique (France). Laboratoire Archéologie et territoires", "Centre national de la recherche scientifique (France). UMR (6575)", "Centre national de la recherche scientifique (France) Unité mixte de recherche (6575)", "Université de Tours. Laboratoire Archéologie et territoires", "Centre national de la recherche scientifique (France) Unité mixte de recherche (9966)", "Centre national de la recherche scientifique (France) Unité propre de recherche (9018)", "LAT (Laboratoire Archéologie et territoires : Tours)", "Centre de recherches archéologiques (Valbonne). Laboratoire Archéologie et territoires", "Equipe LAT (Tours)"], "authorized_access_point": "Laboratoire Archéologie et territoires (Tours)", "biographical_information": ["Le 01-01-1996, absorbe le GDR 0094 du CNRS \\"Société et cadre de vie au Moyen âge\\" qui devient un programme spécifique au sein du laboratoire ; le 01-01-2000, absorbe le GDR 0893 \\"Topographie chrétienne des cités de la Gaule\\". - Depuis 2004, constitue une des trois équipes de recherche de l'UMR 6173 CITERES du CNRS", "Avant 1996: Centre national de la recherche scientifique (France). Groupement de recherche (0094)", "Dès 1996: Laboratoire Archéologie et territoires (Tours)"]} 1 +2024-09-11 09:06:57.949356 2024-09-11 09:06:57.949363 2c51faf3-ef49-42a0-b1ed-b92b07c1e9bc {"md5": "d7af9ac9918e143164c00061546a791f", "pid": "A009643309", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009643309", "source": "RERO"}], "preferred_name": "Rubio Pilarte, Xabier", "authorized_access_point": "Rubio Pilarte, Xabier"} 1 +2024-09-11 09:06:58.006554 2024-09-11 09:06:58.006557 bb6be5f9-3527-4638-bf2d-1c73cfd3fa6a {"md5": "632a42ee5e69bb4908b90b3ff80402de", "pid": "A009673075", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009673075", "source": "RERO"}], "preferred_name": "Döring, Maria-Louise", "authorized_access_point": "Döring, Maria-Louise"} 1 +2024-09-11 09:06:58.06229 2024-09-11 09:06:58.062294 f9b3720f-f02c-4216-b3d5-b739d1f3a206 {"md5": "7bfba6dc4aaff927a1669613d106b386", "pid": "A009687650", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009687650", "source": "RERO"}], "preferred_name": "Joseph, Branden Wayne", "authorized_access_point": "Joseph, Branden Wayne"} 1 +2024-09-11 09:06:58.131227 2024-09-11 09:06:58.131231 0a492848-0439-404a-857f-f627ba97380a {"md5": "586e84fcaff7e8f1a31ab635ee453b62", "pid": "A009754386", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009754386", "source": "RERO"}], "preferred_name": "Mazo, Robert M", "authorized_access_point": "Mazo, Robert M"} 1 +2024-09-11 09:06:58.200446 2024-09-11 09:06:58.200451 96b837cb-55d0-4f9b-8ac9-def2432944ad {"md5": "defcd36aebbc0a108fb7838dce53d43b", "pid": "A009973428", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009973428", "source": "RERO"}], "variant_name": ["CCAC (Centro cultural arte contemporaneo, Mexico)"], "preferred_name": "Centro cultural arte contemporaneo (Mexico)", "variant_access_point": ["CCAC (Centro cultural arte contemporaneo, Mexico)"], "authorized_access_point": "Centro cultural arte contemporaneo (Mexico)"} 1 +2024-09-11 09:06:58.256347 2024-09-11 09:06:58.25635 1c234ef7-f80b-4335-b934-355f16ccd046 {"md5": "1d9fbe73c0ca1a587b6155e9972bbbfe", "pid": "A009989567", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A009989567", "source": "RERO"}], "variant_name": ["FITA (Fédération internationale de tir à l'arc)", "International Archery Federation"], "preferred_name": "Fédération internationale de tir à l'arc", "variant_access_point": ["FITA (Fédération internationale de tir à l'arc)", "International Archery Federation"], "authorized_access_point": "Fédération internationale de tir à l'arc"} 1 +2024-09-11 09:06:58.30895 2024-09-11 09:06:58.308954 2b3ac2e0-15dd-4e42-b617-64063c66550a {"md5": "c8f00363a2c88d09e15836fdb8e01616", "pid": "A010006868", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A010006868", "source": "RERO"}], "variant_name": ["Centre Le Tram (Carouge)", "Tram (Carouge)"], "preferred_name": "Maison de Pinchat (Carouge)", "variant_access_point": ["Centre Le Tram (Carouge)", "Tram (Carouge)"], "authorized_access_point": "Maison de Pinchat (Carouge)"} 1 +2024-09-11 09:06:58.363151 2024-09-11 09:06:58.363154 41ea65ca-2791-484e-bc84-642c90774115 {"md5": "57d48d078e3939ab80dac4ee54a97df3", "pid": "A010043080", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "(de Luxeuil)", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A010043080", "source": "RERO"}], "preferred_name": "Angelome (de Luxeuil)", "authorized_access_point": "Angelome (de Luxeuil)"} 1 +2024-09-11 09:06:58.419245 2024-09-11 09:06:58.419249 b4c0f04c-425d-463b-a992-4ac40fee6c28 {"md5": "88aa89b756cb08efec3351c8e4488ae2", "pid": "A010073993", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A010073993", "source": "RERO"}], "preferred_name": "Didi", "authorized_access_point": "Didi"} 1 +2024-09-11 09:06:58.473577 2024-09-11 09:06:58.473579 1a2a0175-5460-4294-838e-dd6acee054c4 {"md5": "1c47246397e0cb7242fdd72bd259f991", "pid": "A010086586", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A010086586", "source": "RERO"}], "preferred_name": "Galeer, Albert", "authorized_access_point": "Galeer, Albert"} 1 +2024-09-11 09:06:58.52599 2024-09-11 09:06:58.525994 83069a30-08a1-4c35-8747-401b6cc40704 {"md5": "73f4947e151abde4e164b499f57ae2e3", "pid": "A010104035", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A010104035", "source": "RERO"}], "preferred_name": "Kokuga Art Association (Kyoto)", "authorized_access_point": "Kokuga Art Association (Kyoto)"} 1 +2024-09-11 09:06:58.577356 2024-09-11 09:06:58.577359 669a853f-8010-4115-a293-7e52df457925 {"md5": "92a9aa4714dbc23892af1154e0c6e569", "pid": "A010152644", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A010152644", "source": "RERO"}], "preferred_name": "Soveri, Jorma", "authorized_access_point": "Soveri, Jorma"} 1 +2024-09-11 09:06:58.63347 2024-09-11 09:06:58.633475 5319609d-fa79-4e72-ba67-9a3e821529f5 {"md5": "c034abba8f75bd77a7d449117cb78231", "pid": "A010154587", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A010154587", "source": "RERO"}], "preferred_name": "Su, Song", "authorized_access_point": "Su, Song"} 1 +2024-09-11 09:06:58.685475 2024-09-11 09:06:58.685479 5dff3301-3c81-4f11-83ba-bfeef47f7f0c {"md5": "8c383438cb31d89d61ede58b748a9469", "pid": "A010176792", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A010176792", "source": "RERO"}], "preferred_name": "Schiavazzi, Piero", "authorized_access_point": "Schiavazzi, Piero"} 1 +2024-09-11 09:06:58.749169 2024-09-11 09:06:58.749176 11901837-3c09-48e1-b5c6-d96d8aa4762b {"md5": "5eda781b7e0828e5056fd10f99351e19", "pid": "A010219336", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "(famille)", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A010219336", "source": "RERO"}], "preferred_name": "Collalto (famille)", "authorized_access_point": "Collalto (famille)"} 1 +2024-09-11 09:06:58.805307 2024-09-11 09:06:58.805311 6ccb346b-5943-4982-9ac5-16220f3d26b9 {"md5": "120ddceac1c478dc791e4362b5b9c15c", "pid": "A010244192", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A010244192", "source": "RERO"}], "preferred_name": "Stephen, Alexander MacGregor", "authorized_access_point": "Stephen, Alexander MacGregor"} 1 +2024-09-11 09:06:58.858121 2024-09-11 09:06:58.858126 0e98a4a8-db54-4e5b-b749-c1d35a777dc5 {"md5": "71a73878b6597bf65eaef0bc4dfbb8ac", "pid": "A010938873", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A010938873", "source": "RERO"}], "preferred_name": "Florent, Romain", "authorized_access_point": "Florent, Romain"} 1 +2024-09-11 09:06:58.918572 2024-09-11 09:06:58.918576 1e3133ac-7e15-457e-890a-e0a223604a91 {"md5": "b1cb1e52357e4bf3e01bee8c74defa73", "pid": "A010941010", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A010941010", "source": "RERO"}], "preferred_name": "Rodriguez, Raquel", "authorized_access_point": "Rodriguez, Raquel"} 1 +2024-09-11 09:06:58.975038 2024-09-11 09:06:58.975042 078a54b0-9bd8-4633-8f13-fc42ac79683a {"md5": "f78168333d8177266a22bd454f7c60f4", "pid": "A010941759", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A010941759", "source": "RERO"}], "preferred_name": "Yue, Gang", "authorized_access_point": "Yue, Gang"} 1 +2024-09-11 09:06:59.033234 2024-09-11 09:06:59.033239 ac3084f5-d0d7-4bac-8ff9-700e5f6534ef {"md5": "3d6c4dc5c5b23d5f19d00962858df049", "pid": "A010952913", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A010952913", "source": "RERO"}], "preferred_name": "Malkin, Borys", "authorized_access_point": "Malkin, Borys"} 1 +2024-09-11 09:06:59.089106 2024-09-11 09:06:59.089109 ed6e29fb-c3b8-4074-b5ea-2fb4cc305feb {"md5": "a3fa319aa4b1c661681d4f2767b7e612", "pid": "A010959260", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A010959260", "source": "RERO"}], "preferred_name": "Georgi, Hans", "authorized_access_point": "Georgi, Hans"} 1 +2024-09-11 09:06:59.141435 2024-09-11 09:06:59.141439 494101c4-7b95-40b6-8a19-99cab1d51130 {"md5": "be89ee490fe0c8caad80ada4b97f9059", "pid": "A011007424", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011007424", "source": "RERO"}], "preferred_name": "Bellini, Emmanuel", "authorized_access_point": "Bellini, Emmanuel", "biographical_information": ["Dates de vie: 1904-"]} 1 +2024-09-11 09:06:59.205969 2024-09-11 09:06:59.205974 bc468d7b-878e-40f4-84b5-06854a46910b {"md5": "488c12791c3d32ac5fc00a403b3be216", "pid": "A011038799", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011038799", "source": "RERO"}], "preferred_name": "Bergerfurth, Monika", "authorized_access_point": "Bergerfurth, Monika"} 1 +2024-09-11 09:06:59.258401 2024-09-11 09:06:59.258406 d5ce8288-4a34-4e3f-8c92-8ff3b4bdfc0c {"md5": "b3d0bc9ea2b0ac66d76ab9630e8ad98b", "pid": "A011078595", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011078595", "source": "RERO"}], "variant_name": ["Valenzuela, Sergio Ortíz"], "preferred_name": "Ortíz Valenzuela, Sergio", "variant_access_point": ["Valenzuela, Sergio Ortíz"], "authorized_access_point": "Ortíz Valenzuela, Sergio"} 1 +2024-09-11 09:06:59.309898 2024-09-11 09:06:59.309903 d2ab1117-4335-48f5-8557-977f4169ffc1 {"md5": "5f7c812bf41872323cd9d8277968d509", "pid": "A011089656", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011089656", "source": "RERO"}], "preferred_name": "Wopperer, Anton", "authorized_access_point": "Wopperer, Anton"} 1 +2024-09-11 09:06:59.366076 2024-09-11 09:06:59.36608 a5ac1d94-5f42-4918-ad67-054123b8da27 {"md5": "a77536b9445ba77f80fa01b0ab4c4ace", "pid": "A011095417", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011095417", "source": "RERO"}], "preferred_name": "Faralicq, Gaston", "authorized_access_point": "Faralicq, Gaston"} 1 +2024-09-11 09:06:59.425661 2024-09-11 09:06:59.425665 4cf0edc4-e429-4aee-b928-595183dd0d4e {"md5": "e0dd90ccbbd040ea167eabb711a65792", "pid": "A011106617", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011106617", "source": "RERO"}], "preferred_name": "Count Basie Octet", "authorized_access_point": "Count Basie Octet"} 1 +2024-09-11 09:06:59.481186 2024-09-11 09:06:59.481191 6c859973-4cfe-4e86-82f3-9b84ea4247c9 {"md5": "4d606717304feae53bfbd0d819e239c3", "pid": "A011113114", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011113114", "source": "RERO"}], "variant_name": ["Sde-srid Saṅs-rgyas-rgya-mtsho", "Sangye Gyatso", "Gyatso, Sangye"], "preferred_name": "Saṅs-rgyas-rgya-mtsho, Sde-srid", "variant_access_point": ["Sde-srid Saṅs-rgyas-rgya-mtsho", "Sangye Gyatso", "Gyatso, Sangye"], "authorized_access_point": "Saṅs-rgyas-rgya-mtsho, Sde-srid"} 1 +2024-09-11 09:06:59.539165 2024-09-11 09:06:59.53917 a57d5210-c6c2-4317-ab30-7c5373ac8e46 {"md5": "7a88a97ab1fcd56128816c6ddc98e784", "pid": "A011132692", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011132692", "source": "RERO"}], "preferred_name": "Freidberg, Susanne", "authorized_access_point": "Freidberg, Susanne"} 1 +2024-09-11 09:06:59.596686 2024-09-11 09:06:59.596691 2a1eb234-b5fd-4be5-bca8-3ce55dcb37b2 {"md5": "ea14e76e99104cd68e33bc1279cfab98", "pid": "A011151957", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011151957", "source": "RERO"}], "variant_name": ["Sankt Gallen (Kanton). Ufficio delle costruzioni", "Baudepartement (Sankt Gallen ; Kanton)", "Ufficio delle costruzioni (Sankt Gallen ; Kanton)"], "preferred_name": "Sankt Gallen (Kanton). Baudepartement", "variant_access_point": ["Sankt Gallen (Kanton). Ufficio delle costruzioni", "Baudepartement (Sankt Gallen ; Kanton)", "Ufficio delle costruzioni (Sankt Gallen ; Kanton)"], "authorized_access_point": "Sankt Gallen (Kanton). Baudepartement"} 1 +2024-09-11 09:06:59.647743 2024-09-11 09:06:59.647747 14aa125e-772e-44c8-a724-ef3f05971f1c {"md5": "ab0d79b31f744598b15e5279b18435f7", "pid": "A011157710", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011157710", "source": "RERO"}], "preferred_name": "Feltgen, Eduard", "authorized_access_point": "Feltgen, Eduard"} 1 +2024-09-11 09:06:59.7013 2024-09-11 09:06:59.701304 9b1daf38-b3bf-455c-851e-d5567f3a7047 {"md5": "a7bab9653496c49ee85fd78709a67ec7", "pid": "A011241983", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011241983", "source": "RERO"}], "preferred_name": "Chiffert, L", "authorized_access_point": "Chiffert, L"} 1 +2024-09-11 09:06:59.753796 2024-09-11 09:06:59.753799 7c0f2874-3b68-41ad-bf98-f72df9282576 {"md5": "aa9540a512a13f8b04919a1ea0eab4e7", "pid": "A011363373", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011363373", "source": "RERO"}], "variant_name": ["JP (Jeunesses poétiques, Bruxelles)"], "preferred_name": "Jeunesses poétiques (Bruxelles)", "variant_access_point": ["JP (Jeunesses poétiques, Bruxelles)"], "authorized_access_point": "Jeunesses poétiques (Bruxelles)"} 1 +2024-09-11 09:06:59.80383 2024-09-11 09:06:59.803834 7e6c4ccd-42bc-48b6-be8f-bd2793b0089c {"md5": "ab21de8d86cddbce9f10b79a9e3df9ce", "pid": "A011377115", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011377115", "source": "RERO"}], "preferred_name": "Deplanque, Laetitia", "authorized_access_point": "Deplanque, Laetitia"} 1 +2024-09-11 09:06:59.858906 2024-09-11 09:06:59.85891 3d702d31-2f82-4e43-a459-eec619822f72 {"md5": "af8b2de89abd28c16cfbebef6078b9e6", "pid": "A011383290", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011383290", "source": "RERO"}], "variant_name": ["Yersin, Hansueli Müller-"], "preferred_name": "Müller-Yersin, Hansueli", "variant_access_point": ["Yersin, Hansueli Müller-"], "authorized_access_point": "Müller-Yersin, Hansueli"} 1 +2024-09-11 09:06:59.913386 2024-09-11 09:06:59.91339 cb4954c9-d704-4e82-a486-4acc283f8b47 {"md5": "572b259578d87d60608715be13c7e054", "pid": "A011384771", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011384771", "source": "RERO"}], "preferred_name": "Schmidt-Welle, Friedhelm", "authorized_access_point": "Schmidt-Welle, Friedhelm"} 1 +2024-09-11 09:06:59.968423 2024-09-11 09:06:59.968429 6f398f39-fb67-4fdd-90f4-a7afca6db08b {"md5": "eb72dfe1eb131fe2ec0b0eb17b142615", "pid": "A011412011", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011412011", "source": "RERO"}], "preferred_name": "Söyrinki, Niilo", "authorized_access_point": "Söyrinki, Niilo"} 1 +2024-09-11 09:07:00.021371 2024-09-11 09:07:00.021374 1e2347e3-9577-40ee-a4ae-3e350aeb4fa5 {"md5": "1190151ae014ceb07fad9d2a4615f1ed", "pid": "A011417162", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011417162", "source": "RERO"}], "preferred_name": "Oelenheinz, Leopold", "authorized_access_point": "Oelenheinz, Leopold"} 1 +2024-09-11 09:07:00.082927 2024-09-11 09:07:00.082932 038acced-156c-4829-a8b2-3d70dfc91ac6 {"md5": "b57394de583b98ece216de9cf1cfe276", "pid": "A011417535", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011417535", "source": "RERO"}], "preferred_name": "Gardner, Peter S", "authorized_access_point": "Gardner, Peter S"} 1 +2024-09-11 09:07:00.136841 2024-09-11 09:07:00.136846 2909a83a-c0b8-4879-82df-f76754c312ec {"md5": "dea795cc6edc145a59bda430754e05c9", "pid": "A011464222", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011464222", "source": "RERO"}], "preferred_name": "Pax, Schweizerische Lebensversicherungs-Gesellschaft", "authorized_access_point": "Pax, Schweizerische Lebensversicherungs-Gesellschaft"} 1 +2024-09-11 09:07:00.191709 2024-09-11 09:07:00.191713 86a88389-debe-4b80-863b-7f513a917879 {"md5": "343de70931548e2ead181da483dc0c59", "pid": "A011466531", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011466531", "source": "RERO"}], "preferred_name": "Olsen, Frode", "authorized_access_point": "Olsen, Frode"} 1 +2024-09-11 09:07:00.254286 2024-09-11 09:07:00.25429 9e10f647-a5e8-4d74-bb15-fa997ad332f7 {"md5": "db1bc749a9b9cbd4cf830daef8111beb", "pid": "A011466589", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011466589", "source": "RERO"}], "preferred_name": "Cross-cultural shamanism network", "authorized_access_point": "Cross-cultural shamanism network"} 1 +2024-09-11 09:07:00.312126 2024-09-11 09:07:00.312129 0b9ed5cf-2847-4597-9276-9f86fc6faa22 {"md5": "f6e0a5a1e7832c19bd1b909df66260d1", "pid": "A011493066", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011493066", "source": "RERO"}], "preferred_name": "Leitner, Marina", "authorized_access_point": "Leitner, Marina"} 1 +2024-09-11 09:07:00.380552 2024-09-11 09:07:00.380557 ed9f6aef-be4d-415f-a0b9-496f4fa01d37 {"md5": "e00f7b2af91f6f1980374a1af958382f", "pid": "A011558774", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011558774", "source": "RERO"}], "preferred_name": "Scherzer, Carl J", "authorized_access_point": "Scherzer, Carl J"} 1 +2024-09-11 09:07:00.431021 2024-09-11 09:07:00.431024 e6fcbfd2-18a2-480e-b278-386a36ed5b94 {"md5": "3fba4a6227ad6de3d7f14742db4acbb9", "pid": "A011591041", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011591041", "source": "RERO"}], "preferred_name": "Lamsdorff-Galagane, Vladimiro", "authorized_access_point": "Lamsdorff-Galagane, Vladimiro"} 1 +2024-09-11 09:07:00.484444 2024-09-11 09:07:00.484449 21175a3a-e985-473e-86fe-34e90a266780 {"md5": "b7acc6d0a9b588e610a7a92247c02c2d", "pid": "A011627404", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011627404", "source": "RERO"}], "preferred_name": "Furūghī, Abū al-Ḥasan", "authorized_access_point": "Furūghī, Abū al-Ḥasan"} 1 +2024-09-11 09:07:00.539046 2024-09-11 09:07:00.539051 2312dbb8-e931-407d-b4ec-ad6cb36b1fd2 {"md5": "97409390159d09d17d7b5a014b53bcce", "pid": "A011674667", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011674667", "source": "RERO"}], "preferred_name": "Perrin, Pierre-Louis-Marie-Joseph", "authorized_access_point": "Perrin, Pierre-Louis-Marie-Joseph"} 1 +2024-09-11 09:07:00.603754 2024-09-11 09:07:00.60376 242eea76-9716-4a4e-89c8-bf0fe838c008 {"md5": "781ced50dbe8c82f52dca2e7b2e7485f", "pid": "A011686664", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011686664", "source": "RERO"}], "preferred_name": "Aprikian, Garbis", "authorized_access_point": "Aprikian, Garbis"} 1 +2024-09-11 09:07:00.681302 2024-09-11 09:07:00.681305 80f4ac22-0e8a-4068-9c71-1b82758e3a52 {"md5": "5985eee68c9e443c9170616b88eff1cd", "pid": "A011733730", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011733730", "source": "RERO"}], "preferred_name": "Société d'études paléontologiques et palethnographiques de Provence (Marseille)", "authorized_access_point": "Société d'études paléontologiques et palethnographiques de Provence (Marseille)"} 1 +2024-09-11 09:07:00.734546 2024-09-11 09:07:00.73455 6e52dca0-a5fd-4937-a47b-eade71b965a1 {"md5": "465a7ef7ec855f4740ef83c510c63e3e", "pid": "A011736857", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011736857", "source": "RERO"}], "preferred_name": "Jurjevics, Juris", "authorized_access_point": "Jurjevics, Juris"} 1 +2024-09-11 09:07:00.797355 2024-09-11 09:07:00.797358 971f2165-e79f-4b54-ae51-b07773904ab7 {"md5": "aaee82add28c84a559b10aa499891a63", "pid": "A011743931", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011743931", "source": "RERO"}], "preferred_name": "Fisher, Philip John", "authorized_access_point": "Fisher, Philip John"} 1 +2024-09-11 09:07:00.851485 2024-09-11 09:07:00.851488 276ce4f3-91ac-4427-8741-2f717671a935 {"md5": "d769808a66e9e7123ecec64691743c1e", "pid": "A011755738", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011755738", "source": "RERO"}], "preferred_name": "Grimm, Johann", "authorized_access_point": "Grimm, Johann"} 1 +2024-09-11 09:07:00.903636 2024-09-11 09:07:00.903641 6f4f9e13-ad9d-4fe7-be95-4d08c88e9277 {"md5": "2cdfd128964f08360f693db89243317c", "pid": "A011817228", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011817228", "source": "RERO"}], "preferred_name": "Hopf, Friedrich-Eugen", "authorized_access_point": "Hopf, Friedrich-Eugen"} 1 +2024-09-11 09:07:00.963911 2024-09-11 09:07:00.963914 a43c4e0a-2560-44cc-be53-d4c8c4cbdb06 {"md5": "bfd2d0054d2b357749001c8e9f570633", "pid": "A011818787", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011818787", "source": "RERO"}], "preferred_name": "Truck Stop (groupe musical)", "authorized_access_point": "Truck Stop (groupe musical)"} 1 +2024-09-11 09:07:01.016318 2024-09-11 09:07:01.016323 99222f47-350b-4702-bbd0-d1ac83a8eff9 {"md5": "07748c3f19a78c9a6334941407298399", "pid": "A011831186", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011831186", "source": "RERO"}], "preferred_name": "Stendhal-Club", "authorized_access_point": "Stendhal-Club"} 1 +2024-09-11 09:07:01.071699 2024-09-11 09:07:01.071702 b263147e-d1e2-497b-9a28-74e3c1bc7ceb {"md5": "ca94d19fa77d0dd75c79489bce86571a", "pid": "A011875062", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011875062", "source": "RERO"}], "preferred_name": "Ecoconseil (La Chaux-de-Fonds)", "authorized_access_point": "Ecoconseil (La Chaux-de-Fonds)"} 1 +2024-09-11 09:07:01.123346 2024-09-11 09:07:01.123349 06457b55-c3b6-47fc-96de-e370ed24c108 {"md5": "972dc06b22cc6084b1de9f628d0922e3", "pid": "A011896248", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011896248", "source": "RERO"}], "preferred_name": "Aernecke, Susanne", "authorized_access_point": "Aernecke, Susanne"} 1 +2024-09-11 09:07:01.178849 2024-09-11 09:07:01.178854 0b668cfd-a363-418d-99ca-150f86e6ace2 {"md5": "02c876783a73fa6fa766d84a0e681e9c", "pid": "A011919031", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011919031", "source": "RERO"}], "preferred_name": "Duton, Frédéric", "authorized_access_point": "Duton, Frédéric"} 1 +2024-09-11 09:07:01.24475 2024-09-11 09:07:01.244752 65550a5f-9393-46b1-8f92-4991ef1ee57a {"md5": "9458d26fc5cee4758ec05ab91a90bcb0", "pid": "A011935041", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011935041", "source": "RERO"}], "preferred_name": "Glasze, Georg", "authorized_access_point": "Glasze, Georg"} 1 +2024-09-11 09:07:01.295483 2024-09-11 09:07:01.295487 e57078af-5cc9-46bb-a439-c62634ae8037 {"md5": "3e2c169801bc0ee09be5441b57ca403e", "pid": "A011951291", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011951291", "source": "RERO"}], "preferred_name": "Road, Sinclair", "authorized_access_point": "Road, Sinclair"} 1 +2024-09-11 09:07:01.347657 2024-09-11 09:07:01.347661 0cd33305-4c4b-47a6-9146-232901af2ad7 {"md5": "6255c2882fe04f3b4a8f35a3325a1f47", "pid": "A011958684", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011958684", "source": "RERO"}], "variant_name": ["Palmo, Tenzin"], "preferred_name": "Tenzin Palmo", "variant_access_point": ["Palmo, Tenzin"], "authorized_access_point": "Tenzin Palmo"} 1 +2024-09-11 09:07:01.398225 2024-09-11 09:07:01.39823 a487b991-7753-4d19-84a6-44f87a39751c {"md5": "36874a25fdd1a62eea639acbbf1d0d76", "pid": "A011959589", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011959589", "source": "RERO"}], "preferred_name": "Michalski, Władysław", "authorized_access_point": "Michalski, Władysław"} 1 +2024-09-11 09:07:01.454211 2024-09-11 09:07:01.454216 d70fc12e-2565-4a58-9346-761bca31cdfd {"md5": "c480ad5c99a04a2dbe951c3eeaef8fd0", "pid": "A011961159", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011961159", "source": "RERO"}], "variant_name": ["Cancellieri, Francesco Girolamo,", "Cancellieri, François,", "Cancellieri, Francisco,", "Cancellerius, Franciscus,", "Cancellierius, Franciscus,", "Cancelieri, François,"], "date_of_birth": "1751", "date_of_death": "1826", "preferred_name": "Cancellieri, Francesco,", "variant_access_point": ["Cancellieri, Francesco Girolamo, 1751-1826", "Cancellieri, François, 1751-1826", "Cancellieri, Francisco, 1751-1826", "Cancellerius, Franciscus, 1751-1826", "Cancellierius, Franciscus, 1751-1826", "Cancelieri, François, 1751-1826"], "authorized_access_point": "Cancellieri, Francesco, 1751-1826", "biographical_information": ["Abbé. - Archéologue. - Bibliothécaire"]} 1 +2024-09-11 09:07:01.5111 2024-09-11 09:07:01.511105 9f01da8d-6182-4fee-b768-6ae8ed5abb0f {"md5": "e99a3b8be5b3239cc5957b5e5b5af6b6", "pid": "A011964957", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011964957", "source": "RERO"}], "preferred_name": "Hauenschild, Katrin", "authorized_access_point": "Hauenschild, Katrin"} 1 +2024-09-11 09:07:01.563276 2024-09-11 09:07:01.563281 6724ab2e-f9cb-40f1-aa4b-0ba0feeeb62d {"md5": "b3f999a772f2b7c4cef81151c70efa52", "pid": "A011971216", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011971216", "source": "RERO"}], "preferred_name": "Peterson, Rudolph A", "authorized_access_point": "Peterson, Rudolph A"} 1 +2024-09-11 09:07:01.617587 2024-09-11 09:07:01.617592 06de1c4f-ecb6-4a2d-a6ca-1bb9fbed5506 {"md5": "71064e5deb2967d7f3edeff27a381e1c", "pid": "A011981174", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011981174", "source": "RERO"}], "preferred_name": "Luke, Jeff S", "authorized_access_point": "Luke, Jeff S"} 1 +2024-09-11 09:07:01.678601 2024-09-11 09:07:01.678604 441b7f99-eea5-42ef-9433-6cbca2d79018 {"md5": "ec15ad7a19c8e3a284e104f55d40c3f1", "pid": "A011983307", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011983307", "source": "RERO"}], "preferred_name": "Bhatt, Anil", "authorized_access_point": "Bhatt, Anil"} 1 +2024-09-11 09:07:01.743795 2024-09-11 09:07:01.7438 b5b15f08-b8b9-4f15-ad04-5d50d5cb2cd4 {"md5": "0f5395b8513316424df32f9dff6100cd", "pid": "A011992966", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A011992966", "source": "RERO"}], "variant_name": ["Pantoja de M. Pimentel, Angela"], "preferred_name": "Pimentel, Angela Pantoja de M", "variant_access_point": ["Pantoja de M. Pimentel, Angela"], "authorized_access_point": "Pimentel, Angela Pantoja de M"} 1 +2024-09-11 09:07:01.795041 2024-09-11 09:07:01.795044 e9424de2-80e4-4de3-a50e-8fa135b12546 {"md5": "151813425d3d41cde1142fcd465ab2da", "pid": "A012003599", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012003599", "source": "RERO"}], "preferred_name": "Montes, Noemí", "authorized_access_point": "Montes, Noemí"} 1 +2024-09-11 09:07:01.847925 2024-09-11 09:07:01.847929 17037dd9-69d1-42cc-8405-224dfb275d10 {"md5": "0014cdd46670c8c84fe8d5cf6db3e83c", "pid": "A012045391", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012045391", "source": "RERO"}], "variant_name": ["Société philanhrophique suisse Union"], "preferred_name": "Union (Société philanthropique suisse)", "variant_access_point": ["Société philanhrophique suisse Union"], "authorized_access_point": "Union (Société philanthropique suisse)"} 1 +2024-09-11 09:07:01.915355 2024-09-11 09:07:01.91536 7abe023e-b2f6-45a5-99fc-b96b11271fb8 {"md5": "2ec0a40d08e018728266422673eec814", "pid": "A012045625", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012045625", "source": "RERO"}], "variant_name": ["Timčenko, Irina Petrovna"], "preferred_name": "Timchenko, Irina Petrovna", "variant_access_point": ["Timčenko, Irina Petrovna"], "parallel_access_point": ["Тимченко, Ирина Петровна"], "authorized_access_point": "Timchenko, Irina Petrovna"} 1 +2024-09-11 09:07:01.978627 2024-09-11 09:07:01.97863 81068ef1-e9e7-477d-aa4f-4235b5a29101 {"md5": "05b862928610ffb9359ff7007503be7e", "pid": "A012053752", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012053752", "source": "RERO"}], "preferred_name": "García Cañizares, Felipe", "authorized_access_point": "García Cañizares, Felipe"} 1 +2024-09-11 09:07:02.031075 2024-09-11 09:07:02.031079 08b283f2-b9d3-4892-bbee-18f10f4f7922 {"md5": "2752ead094b8a94d35d7846bcd942b53", "pid": "A012086274", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012086274", "source": "RERO"}], "preferred_name": "Langie, Kazimierz", "authorized_access_point": "Langie, Kazimierz"} 1 +2024-09-11 09:07:02.088341 2024-09-11 09:07:02.088344 f1582167-da1b-4030-8d98-045ade73b7da {"md5": "ebb7e180b4bedfd73c2dc62dec3fbcd0", "pid": "A012098479", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012098479", "source": "RERO"}], "preferred_name": "Riley, Barry", "authorized_access_point": "Riley, Barry"} 1 +2024-09-11 09:07:02.14122 2024-09-11 09:07:02.141224 372f775c-90e4-4c55-8f7d-28676de7c1ac {"md5": "5863c5e75532d81690e305997a8bb6be", "pid": "A012105454", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012105454", "source": "RERO"}], "preferred_name": "Weaving, Rachel", "authorized_access_point": "Weaving, Rachel"} 1 +2024-09-11 09:07:02.205941 2024-09-11 09:07:02.205945 0e88bae3-056a-40b9-ab46-07c31934d3b7 {"md5": "9ef7be85efdb02ff2fab64b94d4dda28", "pid": "A012128366", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012128366", "source": "RERO"}], "preferred_name": "Bossbach, Christel", "authorized_access_point": "Bossbach, Christel"} 1 +2024-09-11 09:07:02.26166 2024-09-11 09:07:02.261663 ee05542d-6d79-4363-aa14-252e82aedaa6 {"md5": "467063913c5ef693f2278de108e25655", "pid": "A012136328", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012136328", "source": "RERO"}], "preferred_name": "Sociedad geográfica de Cuba", "authorized_access_point": "Sociedad geográfica de Cuba"} 1 +2024-09-11 09:07:02.318589 2024-09-11 09:07:02.318592 08efdf97-a144-4c2f-b50b-6515c86e37d3 {"md5": "520a2327edc19c3862af052f9a1a927e", "pid": "A012311534", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012311534", "source": "RERO"}], "preferred_name": "IMA Participating Institutions Conference on Singularities (1986 :", "authorized_access_point": "IMA Participating Institutions Conference on Singularities (1986 : University of Iowa)"} 1 +2024-09-11 09:07:02.372426 2024-09-11 09:07:02.37243 67838bd4-ff02-4119-a212-a9aac0a76c88 {"md5": "f07d763a9a0af49c567ac1ab8f7be400", "pid": "A012313581", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012313581", "source": "RERO"}], "preferred_name": "Friedrich-Alexander-Universität (Erlangen-Nürnberg). Juristische Fakultät", "authorized_access_point": "Friedrich-Alexander-Universität (Erlangen-Nürnberg). Juristische Fakultät"} 1 +2024-09-11 09:07:02.427762 2024-09-11 09:07:02.427766 7d9427c7-7832-4c11-b192-4e9439dfe84a {"md5": "9b34367d67af9f166bae741a7189af73", "pid": "A012313815", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012313815", "source": "RERO"}], "date_of_birth": "1923", "preferred_name": "Kretzschmar, Serge,", "authorized_access_point": "Kretzschmar, Serge, 1923-"} 1 +2024-09-11 09:07:02.498369 2024-09-11 09:07:02.498373 f1528d1e-1da3-4bb5-a893-90872c3430a0 {"md5": "a73ae527da91d3b9646a83c7e587961b", "pid": "A012315468", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012315468", "source": "RERO"}], "preferred_name": "KnowRight Conference (1995 :", "authorized_access_point": "KnowRight Conference (1995 : Wien)"} 1 +2024-09-11 09:07:02.553267 2024-09-11 09:07:02.55327 ddefda09-e507-4d17-9cbe-b0e9417b2e94 {"md5": "7bd0952a092fbcfe3508b4bb1d1d1c83", "pid": "A012322962", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012322962", "source": "RERO"}], "date_of_birth": "1943", "preferred_name": "Schneider, Bernard,", "authorized_access_point": "Schneider, Bernard, 1943-", "biographical_information": ["Juriste neuchâtelois. - Docteur en droit de l'Université de Neuchâtel (1973). - Séjours d'études à Cologne, à La Haye et au Canada. - Collaborateur scientifique à la faculté de droit de l'Université de Genève. - Président du Tribunal de district du Val-de-Travers à Môtiers (1978-1996)"]} 1 +2024-09-11 09:07:02.607354 2024-09-11 09:07:02.607358 5ae02d31-8699-42a7-b04e-4212ba1718b6 {"md5": "1178ac928f4ec9df607107c24d635d9b", "pid": "A012323710", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012323710", "source": "RERO"}], "preferred_name": "Congrès des notaires de France 1996 :", "authorized_access_point": "Congrès des notaires de France (92 : 1996 : Deauville)"} 1 +2024-09-11 09:07:02.660819 2024-09-11 09:07:02.660823 27b7c245-8cdd-470b-abc2-69068d79fd1c {"md5": "0abf3bd23ca661a2bb0a515357bd08f8", "pid": "A012325371", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012325371", "source": "RERO"}], "preferred_name": "Colloque d'histoire sociale (1970 :", "authorized_access_point": "Colloque d'histoire sociale (1970 : Besançon)"} 1 +2024-09-11 09:07:02.715715 2024-09-11 09:07:02.715718 4e6a758e-abcb-434d-b6c7-2f9ca3c268c2 {"md5": "9db6a76e910ba1dab3e094be6b4ebcf0", "pid": "A012329066", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "Dr en sc. nat", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012329066", "source": "RERO"}], "preferred_name": "Huebner, Hans, Dr en sc. nat", "authorized_access_point": "Huebner, Hans, Dr en sc. nat"} 1 +2024-09-11 09:07:02.782022 2024-09-11 09:07:02.782026 96d05404-d6f9-4c64-91cd-de5319f7f874 {"md5": "35941c3d1ee1ebf66d40f1a4d5408712", "pid": "A012332893", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "juriste", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012332893", "source": "RERO"}], "preferred_name": "Fitzgerald, Brian, juriste", "authorized_access_point": "Fitzgerald, Brian, juriste"} 1 +2024-09-11 09:07:02.838687 2024-09-11 09:07:02.838691 ab48ef90-d14a-49fc-afbe-ee046130b746 {"md5": "409a593fb564d884e33873907fcbe882", "pid": "A012335428", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012335428", "source": "RERO"}], "preferred_name": "Université de Strasbourg. Institut de sciences criminelles et pénitentiaires", "authorized_access_point": "Université de Strasbourg. Institut de sciences criminelles et pénitentiaires"} 1 +2024-09-11 09:07:02.896115 2024-09-11 09:07:02.896119 197e919d-d5a3-452e-a1fd-417df55bc7c3 {"md5": "e040e7a46f08df97db9c609d22bad841", "pid": "A012338211", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "anthropologue", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012338211", "source": "RERO"}], "preferred_name": "Desjardins, Michel, anthropologue", "authorized_access_point": "Desjardins, Michel, anthropologue"} 1 +2024-09-11 09:07:02.953542 2024-09-11 09:07:02.953545 419e430b-1010-4955-8227-32d51836ff8a {"md5": "a340ddec2320fed7d9c318a032ee191d", "pid": "A012343378", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012343378", "source": "RERO"}], "preferred_name": "Montreal Conference on Group Actions and Invariant Theory (1988 :", "authorized_access_point": "Montreal Conference on Group Actions and Invariant Theory (1988 : Montréal)"} 1 +2024-09-11 09:07:03.014914 2024-09-11 09:07:03.014918 21746cd7-2394-4e84-87d4-3fc3696c5be0 {"md5": "6c9ddcdd6308586975f7c51cc1e98371", "pid": "A012346177", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "médecin", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012346177", "source": "RERO"}], "preferred_name": "Monnier, Jean-François, médecin", "authorized_access_point": "Monnier, Jean-François, médecin"} 1 +2024-09-11 09:07:03.075509 2024-09-11 09:07:03.075514 abaf71ec-3411-4bcb-9f16-8e4773fb126c {"md5": "8422ac66b8e83363b9fa4ff87c1d9fcf", "pid": "A012346982", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012346982", "source": "RERO"}], "preferred_name": "Commission internationale de juristes. Conférence (1985 :", "authorized_access_point": "Commission internationale de juristes. Conférence (1985 : Nairobi)"} 1 +2024-09-11 09:07:03.138508 2024-09-11 09:07:03.138514 2342c843-7b62-4b22-8643-f5dd2593c150 {"md5": "852dfafed95c7d72473f36f4b623d5d1", "pid": "A012349826", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012349826", "source": "RERO"}], "preferred_name": "University of California (Los Angeles). Institute of Archaeology", "authorized_access_point": "University of California (Los Angeles). Institute of Archaeology"} 1 +2024-09-11 09:07:03.192527 2024-09-11 09:07:03.192531 a0869a29-3b66-44b0-9fda-d12096cd605e {"md5": "c99aaadeae9251bf219a7876c1785627", "pid": "A012350932", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012350932", "source": "RERO"}], "preferred_name": "Johns Hopkins University (Baltimore). Department of History", "authorized_access_point": "Johns Hopkins University (Baltimore). Department of History"} 1 +2024-09-11 09:07:03.243556 2024-09-11 09:07:03.24356 7310e095-3539-41d9-8891-8b3a828092e2 {"md5": "60b943206d4932ea12edc0b14f54cff6", "pid": "A012352585", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012352585", "source": "RERO"}], "preferred_name": "Kuwait University. Libraries Department", "authorized_access_point": "Kuwait University. Libraries Department"} 1 +2024-09-11 09:07:03.297686 2024-09-11 09:07:03.297691 195c3220-df1b-44b7-aece-e650d27d1ff7 {"md5": "99e912be7349cf1a95ac1375517827c7", "pid": "A012353728", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012353728", "source": "RERO"}], "preferred_name": "Colloque sur les représentations des groupes finis (1988 :", "authorized_access_point": "Colloque sur les représentations des groupes finis (1988 : Marseille-Luminy)"} 1 +2024-09-11 09:07:03.356448 2024-09-11 09:07:03.356451 d342d302-031c-4682-9480-d7aab542edaa {"md5": "12d43a6ec032568ca39988ee4c34726b", "pid": "A012366684", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012366684", "source": "RERO"}], "preferred_name": "Congrès international de langue et littérature d'oc 1955 :", "authorized_access_point": "Congrès international de langue et littérature d'oc (1 : 1955 : Avignon)"} 1 +2024-09-11 09:07:03.406996 2024-09-11 09:07:03.407001 8ce79951-ab42-4301-85e5-e82db64e073b {"md5": "5b3d5106e273664b70ba6bbe081996fe", "pid": "A012368293", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012368293", "source": "RERO"}], "preferred_name": "Association internationale de philosophie du droit et de philosophie sociale. Deutsche Sektion. Tagung (1996 :", "authorized_access_point": "Association internationale de philosophie du droit et de philosophie sociale. Deutsche Sektion. Tagung (1996 : Jena)"} 1 +2024-09-11 09:07:03.466899 2024-09-11 09:07:03.466902 a44ecf05-951a-45b4-a500-dd8511b1d9b7 {"md5": "2f47043df14bb4b072d51132cb3b10f2", "pid": "A012368815", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012368815", "source": "RERO"}], "preferred_name": "Colloque sur le patrimoine syriaque 1994 :", "authorized_access_point": "Colloque sur le patrimoine syriaque (2 : 1994 : Antelias)"} 1 +2024-09-11 09:07:03.528655 2024-09-11 09:07:03.528659 538a307d-435c-4b81-a0c0-c4662fa74343 {"md5": "e7268acbb2e13bff88794bcc12b6f1d5", "pid": "A012371308", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "photographe", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012371308", "source": "RERO"}], "preferred_name": "Leroy, Bernard, photographe", "authorized_access_point": "Leroy, Bernard, photographe"} 1 +2024-09-11 09:07:03.582074 2024-09-11 09:07:03.582078 ba720068-c7c0-43c3-97fc-daf2334b2d9c {"md5": "3bd67ac93501868bc5e900d709c76e58", "pid": "A012374691", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012374691", "source": "RERO"}], "preferred_name": "Victoria and Albert Museum (London). Conservation Department", "authorized_access_point": "Victoria and Albert Museum (London). Conservation Department"} 1 +2024-09-11 09:07:03.632565 2024-09-11 09:07:03.632568 710ff3b7-2205-4be5-a8aa-d30b08cf9b0f {"md5": "32d5789a8028da569cff8a356e6a7441", "pid": "A012374741", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012374741", "source": "RERO"}], "preferred_name": "Salon de mai 1991 :", "authorized_access_point": "Salon de mai (46 : 1991 : Paris)"} 1 +2024-09-11 09:07:03.690252 2024-09-11 09:07:03.690256 e6f2a1b9-bb74-4aaf-86ca-b918a8297206 {"md5": "0bdb91b6b932917e5310daf6ef345f86", "pid": "A012377358", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012377358", "source": "RERO"}], "preferred_name": "Johannes Gutenberg Universität (Mainz). Fachbereich Rechts- und Wirtschaftswissenschaften", "authorized_access_point": "Johannes Gutenberg Universität (Mainz). Fachbereich Rechts- und Wirtschaftswissenschaften"} 1 +2024-09-11 09:07:03.743175 2024-09-11 09:07:03.743179 41f14056-bf27-45db-9922-6942d4e4cbcc {"md5": "3494a83963befa228844592a22272720", "pid": "A012377584", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012377584", "source": "RERO"}], "preferred_name": "University of Denver. Center for Judaic Studies", "authorized_access_point": "University of Denver. Center for Judaic Studies"} 1 +2024-09-11 09:07:03.792337 2024-09-11 09:07:03.792341 ee8985d5-780d-4c21-a2f8-cdce6ca8c8c6 {"md5": "0e6f372254d066917ca55e408a1d1bda", "pid": "A012378544", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012378544", "source": "RERO"}], "preferred_name": "Université de Lausanne. Centre du droit de l'entreprise. Journée d'étude (1990 :", "authorized_access_point": "Université de Lausanne. Centre du droit de l'entreprise. Journée d'étude (1990 : Lausanne)"} 1 +2024-09-11 09:07:03.850272 2024-09-11 09:07:03.850277 7e9d426a-b60b-4400-a80b-a2776e7bdbc1 {"md5": "dfae672fe39bf6ba855d673b8e2980d2", "pid": "A012385634", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012385634", "source": "RERO"}], "preferred_name": "Università di Bologna. Istituto di sociologia", "authorized_access_point": "Università di Bologna. Istituto di sociologia"} 1 +2024-09-11 09:07:15.123718 2024-09-11 09:07:15.123722 d2dc583b-daf8-43f1-bbc9-fd98bd1443d4 {"md5": "fa274be94b4ceb1bafb50ef7746d064d", "pid": "A013763647", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013763647", "source": "RERO"}], "preferred_name": "Börner, Wilhelm", "authorized_access_point": "Börner, Wilhelm"} 1 +2024-09-11 09:07:03.904324 2024-09-11 09:07:03.904327 e5df2521-722a-40e1-95b5-4dc9acd9a2ed {"md5": "9f7bb39e9d925810e35c00ff65e1dba6", "pid": "A012387266", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012387266", "source": "RERO"}], "preferred_name": "Internationales Symposium für Viktimologie 1979 :", "authorized_access_point": "Internationales Symposium für Viktimologie (3 : 1979 : Münster-Westfalen)"} 1 +2024-09-11 09:07:03.964478 2024-09-11 09:07:03.964484 f99daf94-5c4e-47af-aab6-f0cc79e6e12a {"md5": "dfae9309de824bcacca1baa87b1f556c", "pid": "A012387358", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012387358", "source": "RERO"}], "preferred_name": "Environment Law Conference (1990 :", "authorized_access_point": "Environment Law Conference (1990 : Durham)"} 1 +2024-09-11 09:07:04.021153 2024-09-11 09:07:04.021157 1a7f770d-09df-4986-8546-f2106d33eb49 {"md5": "d958c2862fa516f686eb9399f8609086", "pid": "A012387899", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "libraire du 17e s", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012387899", "source": "RERO"}], "preferred_name": "Blaise, Pierre, libraire du 17e s", "authorized_access_point": "Blaise, Pierre, libraire du 17e s"} 1 +2024-09-11 09:07:04.077415 2024-09-11 09:07:04.07742 c3f467c8-a513-485d-be1e-dc72e7d7839e {"md5": "4947b2b09e39a45c30510224c3c13f3f", "pid": "A012388774", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "Jr", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012388774", "source": "RERO"}], "preferred_name": "Lowry, Eddie R., Jr", "authorized_access_point": "Lowry, Eddie R., Jr"} 1 +2024-09-11 09:07:04.141539 2024-09-11 09:07:04.141543 af0c8c7b-2bd6-40d6-b33b-ccdcc53c8a11 {"md5": "1940b2480785512a65cf4a8f1b4a8fab", "pid": "A012388884", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012388884", "source": "RERO"}], "preferred_name": "Evaluation sociologique et analyse institutionnelle des manifestations artistiques. Colloque (1989 :", "authorized_access_point": "Evaluation sociologique et analyse institutionnelle des manifestations artistiques. Colloque (1989 : Bruxelles)"} 1 +2024-09-11 09:07:04.193259 2024-09-11 09:07:04.193262 c1f7e72c-9529-4359-bf92-ee35171e4ec7 {"md5": "5790b066fcd9c985419718b8abd90f2d", "pid": "A012390212", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012390212", "source": "RERO"}], "preferred_name": "Musée Bourdelle (Paris)", "authorized_access_point": "Musée Bourdelle (Paris)"} 1 +2024-09-11 09:07:04.244582 2024-09-11 09:07:04.244584 15ae47e9-cfb6-4801-ac89-22d9fc780a51 {"md5": "83d044b92dbf14985ac3a583664ea6d7", "pid": "A012391465", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012391465", "source": "RERO"}], "preferred_name": "Université Jean Monnet (Saint-Etienne). Groupe de recherches ibériques et ibéro-américaines. Colloque international (2002 :", "authorized_access_point": "Université Jean Monnet (Saint-Etienne). Groupe de recherches ibériques et ibéro-américaines. Colloque international (2002 : Saint-Etienne)"} 1 +2024-09-11 09:07:04.308108 2024-09-11 09:07:04.308112 28986809-9d79-415e-b3d4-096afd2b21da {"md5": "20d0eacf116d610c33574728709e6da7", "pid": "A012393385", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012393385", "source": "RERO"}], "preferred_name": "Etudes d'anthroponymie médiévale. Rencontres 1986-1987 :", "authorized_access_point": "Etudes d'anthroponymie médiévale. Rencontres (1-2 : 1986-1987 : Azay-le-Ferron)"} 1 +2024-09-11 09:07:04.381091 2024-09-11 09:07:04.381096 7f3289e9-26b8-4d38-a7a5-6cbba13ae0ba {"md5": "861cadd22055697169daf0aef6dab89d", "pid": "A012394672", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012394672", "source": "RERO"}], "preferred_name": "Techno-Z FH-Salzburg. Institute for Information Economy and New Media", "authorized_access_point": "Techno-Z FH-Salzburg. Institute for Information Economy and New Media"} 1 +2024-09-11 09:07:04.436915 2024-09-11 09:07:04.43692 88b0776f-ebca-4cc6-a651-c73662fb11c9 {"md5": "3df2168d79c97044a369cf5838af7206", "pid": "A012396940", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012396940", "source": "RERO"}], "preferred_name": "Internacia Katolika Unuiĝo Esperantista. Kongreso 1996 :", "authorized_access_point": "Internacia Katolika Unuiĝo Esperantista. Kongreso (12 : 1996 : Szombathely)"} 1 +2024-09-11 09:07:04.501845 2024-09-11 09:07:04.501853 1babde00-2850-44b0-8032-235c57f01e49 {"md5": "d6a412d803e0c8068dbb1798ca52c432", "pid": "A012397510", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012397510", "source": "RERO"}], "preferred_name": "Stadtgalerie (Saarbrücken)", "authorized_access_point": "Stadtgalerie (Saarbrücken)"} 1 +2024-09-11 09:07:04.557116 2024-09-11 09:07:04.55712 d34fb629-d2b4-48ca-bee7-fa1d6c099f7a {"md5": "06b6355a036da2be65288183f8c71a9f", "pid": "A012402163", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012402163", "source": "RERO"}], "preferred_name": "Conference on Family Law and Customary Law in Asia (1964 :", "authorized_access_point": "Conference on Family Law and Customary Law in Asia (1964 : Singapore)"} 1 +2024-09-11 09:07:04.677304 2024-09-11 09:07:04.677308 9fc3b079-81c8-4248-973b-af7b29eb1e48 {"md5": "625d0cd7fa76d833e7cf5e91551d6ea4", "pid": "A012406670", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "philatéliste", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012406670", "source": "RERO"}], "preferred_name": "Schäfer, Richard, philatéliste", "authorized_access_point": "Schäfer, Richard, philatéliste"} 1 +2024-09-11 09:07:04.727751 2024-09-11 09:07:04.727754 a913dba2-0cd4-437e-82d0-c76b0e0fd5d6 {"md5": "8100ca55878d3dce94e5628c70db20db", "pid": "A012408608", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012408608", "source": "RERO"}], "preferred_name": "Université de Paris 4. Institut de recherches sur les civilisations de l'Occident moderne. Colloque (1996)", "authorized_access_point": "Université de Paris 4. Institut de recherches sur les civilisations de l'Occident moderne. Colloque (1996)"} 1 +2024-09-11 09:07:15.177668 2024-09-11 09:07:15.177672 d2f66362-b478-4be6-bb31-dcb6f9b409e4 {"md5": "8199e41abdf44f43ab015e194e882bde", "pid": "A013784156", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013784156", "source": "RERO"}], "preferred_name": "Parisi, Chiara", "authorized_access_point": "Parisi, Chiara"} 1 +2024-09-11 09:07:04.789198 2024-09-11 09:07:04.789202 70831a95-0f46-4897-9706-87a91207b603 {"md5": "79c129a41f44079ce5afe65ad1241096", "pid": "A012409616", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012409616", "source": "RERO"}], "preferred_name": "Università cattolica del Sacro Cuore (Milano). Conference (1990 :", "authorized_access_point": "Università cattolica del Sacro Cuore (Milano). Conference (1990 : Trento)"} 1 +2024-09-11 09:07:04.845367 2024-09-11 09:07:04.84537 f8630753-ca07-453e-841d-47949a83c00c {"md5": "f286ba47ac1cbc0b7b88f38e756ef4d0", "pid": "A012409972", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "pédagogue", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012409972", "source": "RERO"}], "preferred_name": "Bonjour, Pierre, pédagogue", "authorized_access_point": "Bonjour, Pierre, pédagogue"} 1 +2024-09-11 09:07:04.901849 2024-09-11 09:07:04.901855 41efa22f-5f56-4209-8a92-89b2b34e20a9 {"md5": "a038d1c48d2910aadcdd4e8bcda431d7", "pid": "A012416360", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012416360", "source": "RERO"}], "preferred_name": "Erasmus Universiteit Rotterdam. Juridisch instituut", "authorized_access_point": "Erasmus Universiteit Rotterdam. Juridisch instituut"} 1 +2024-09-11 09:07:04.954689 2024-09-11 09:07:04.954693 46918aa1-7fb9-4871-aa51-79fbcc36d809 {"md5": "4f2d2fe551724e122c78411c4a3961ec", "pid": "A012416378", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012416378", "source": "RERO"}], "preferred_name": "Fêtes du Rhône 1984 :", "authorized_access_point": "Fêtes du Rhône (31 : 1984 : Monthey)"} 1 +2024-09-11 09:07:05.012835 2024-09-11 09:07:05.012839 357d9baf-2f02-4c97-8ab0-de6fc08e8270 {"md5": "e88d3617218fbb6ce64f356bce2709ed", "pid": "A012416611", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "pape", "numeration": "VIII", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012416611", "source": "RERO"}], "preferred_name": "Léon VIII, pape", "authorized_access_point": "Léon VIII, pape"} 1 +2024-09-11 09:07:05.074767 2024-09-11 09:07:05.074769 7d62c8eb-3b34-4bdd-a05f-670ef1eb2de4 {"md5": "02bd423c8eeb0da6155e6828e2959cba", "pid": "A012417107", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "dr en droit", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012417107", "source": "RERO"}], "preferred_name": "Bauer, Martin, dr en droit", "authorized_access_point": "Bauer, Martin, dr en droit"} 1 +2024-09-11 09:07:05.134391 2024-09-11 09:07:05.134395 4be2f619-6fbe-48aa-a73a-058e5ed3e5e0 {"md5": "104cfc4546d259649c05030a1e6e41ef", "pid": "A012417957", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012417957", "source": "RERO"}], "preferred_name": "Réunion internationale des mathématiciens (1937 :", "authorized_access_point": "Réunion internationale des mathématiciens (1937 : Paris)"} 1 +2024-09-11 09:07:05.18937 2024-09-11 09:07:05.189374 6d67b995-0d00-4576-ba0f-342d509eac13 {"md5": "0354bee82657a81dbe385f49cc12c470", "pid": "A012418542", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012418542", "source": "RERO"}], "preferred_name": "WE-Heraeus Seminar 2002 :", "authorized_access_point": "WE-Heraeus Seminar (271 : 2002 : Bad Honnef)"} 1 +2024-09-11 09:07:05.244244 2024-09-11 09:07:05.244246 99774cda-8201-42e0-8442-24d41f69813b {"md5": "5305f58f050c82f7b72571544ae7da35", "pid": "A012419821", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012419821", "source": "RERO"}], "preferred_name": "Colloquium on Random Fields : Rigorous Results in Statistical Mechanics and Quantum Field Theory (1979 :", "authorized_access_point": "Colloquium on Random Fields : Rigorous Results in Statistical Mechanics and Quantum Field Theory (1979 : Esztergom)"} 1 +2024-09-11 09:07:05.30071 2024-09-11 09:07:05.300716 9765a587-b966-4d70-be8c-9efb7d4a1898 {"md5": "2b5a74fb378e2b74449e98f39029d988", "pid": "A012419929", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012419929", "source": "RERO"}], "preferred_name": "International Conference on Software Reuse 2004 :", "authorized_access_point": "International Conference on Software Reuse (8 : 2004 : Madrid)"} 1 +2024-09-11 09:07:05.359017 2024-09-11 09:07:05.359021 36831789-d3ad-4928-833f-530d0be4aa14 {"md5": "a182cf3c59cc606c326783eb33cdae67", "pid": "A012425753", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012425753", "source": "RERO"}], "preferred_name": "Joint European networking conference 1997 :", "authorized_access_point": "Joint European networking conference (8 : 1997 : Edinburgh)"} 1 +2024-09-11 09:07:05.439284 2024-09-11 09:07:05.439289 f0d42b34-c213-42e9-838e-39f73c0dbf36 {"md5": "6990563d5eb71265da4ada88d71155f4", "pid": "A012427298", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012427298", "source": "RERO"}], "preferred_name": "Convegno internazionale della ceramica 1998 :", "authorized_access_point": "Convegno internazionale della ceramica (31 : 1998 : Albisola)"} 1 +2024-09-11 09:07:05.496139 2024-09-11 09:07:05.496144 33f4c8c9-c4e2-45fd-9ee7-ccbccea23ad3 {"md5": "be2a6bdbaf458dd1db1ca73ff825d2bf", "pid": "A012430693", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012430693", "source": "RERO"}], "preferred_name": "Université libre de Bruxelles. Centre de droit international. Colloque (2003 :", "authorized_access_point": "Université libre de Bruxelles. Centre de droit international. Colloque (2003 : Paris)"} 1 +2024-09-11 09:07:05.558062 2024-09-11 09:07:05.558067 cb8e2e76-d652-4e04-9b5d-f663384bd557 {"md5": "09e28dd8797b69ba328ed147dc54c85d", "pid": "A012431216", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012431216", "source": "RERO"}], "preferred_name": "International Symposium on the Impacts of Radionuclide Releases into the Marine Environment (1980 :", "authorized_access_point": "International Symposium on the Impacts of Radionuclide Releases into the Marine Environment (1980 : Vienna)"} 1 +2024-09-11 09:07:07.347115 2024-09-11 09:07:07.34712 924d7ba5-dd3e-427c-b7e2-0f0dddb7e32e {"md5": "cd1f5d0e78dd6f616da8f58bbb33af81", "pid": "A012487887", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012487887", "source": "RERO"}], "preferred_name": "Internationale Dialektologentagung (1998 :", "authorized_access_point": "Internationale Dialektologentagung (1998 : Göttingen)"} 1 +2024-09-11 09:07:05.61965 2024-09-11 09:07:05.619656 8c131704-910c-449a-ad41-e6d9d9bbbdda {"md5": "c59d33bb761e4b8b0e909ef7f5b88d0d", "pid": "A012431876", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012431876", "source": "RERO"}], "preferred_name": "University of Western Ontario (London, Canada). North American Society for the Study of Romanticism. Conference (1993 :", "authorized_access_point": "University of Western Ontario (London, Canada). North American Society for the Study of Romanticism. Conference (1993 : London, Canada)"} 1 +2024-09-11 09:07:05.702189 2024-09-11 09:07:05.702194 816dfc21-a219-46fc-952b-38381a84d549 {"md5": "92a39a218e15df1c01c45d22fb7a71a6", "pid": "A012432065", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012432065", "source": "RERO"}], "preferred_name": "Convegno nazionale di studi su \\"La città ideale nella tradizione classica e biblico-cristiana\\" (1985 :", "authorized_access_point": "Convegno nazionale di studi su \\"La città ideale nella tradizione classica e biblico-cristiana\\" (1985 : Torino)"} 1 +2024-09-11 09:07:05.761436 2024-09-11 09:07:05.76144 aaa51427-24d3-4544-964c-2b2087500b99 {"md5": "18d9ac2cc80748d40b2f69fbb61e716f", "pid": "A012435871", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012435871", "source": "RERO"}], "preferred_name": "Conférence d'experts gouvernementaux sur l'emploi de certaines armes conventionnelles. Session 1976 :", "authorized_access_point": "Conférence d'experts gouvernementaux sur l'emploi de certaines armes conventionnelles. Session (2 : 1976 : Lugano)"} 1 +2024-09-11 09:07:05.823215 2024-09-11 09:07:05.82322 48645685-cd2b-4604-acc7-84e462c00db9 {"md5": "e7c3f053e6380b1df538d9bb81c4c8d5", "pid": "A012437354", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "Jr", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012437354", "source": "RERO"}], "preferred_name": "Jones, Alan M., Jr", "authorized_access_point": "Jones, Alan M., Jr"} 1 +2024-09-11 09:07:05.883159 2024-09-11 09:07:05.883164 7a54a9cd-be3c-457f-b853-5f1edfb70c9b {"md5": "94ee12dfa2cc20e6435791667eee27f4", "pid": "A012440656", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012440656", "source": "RERO"}], "preferred_name": "Université de Tours. Institut d'histoire de la presse et de l'opinion", "authorized_access_point": "Université de Tours. Institut d'histoire de la presse et de l'opinion"} 1 +2024-09-11 09:07:05.954909 2024-09-11 09:07:05.954915 4bd9d880-b0e7-4c91-b290-e20e38184948 {"md5": "15fa8b0bb42a59121464981c94359db2", "pid": "A012442567", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012442567", "source": "RERO"}], "preferred_name": "Nations Unies. Haut commissariat pour les réfugiés. International Conference on Refugee Law (1997 :", "authorized_access_point": "Nations Unies. Haut commissariat pour les réfugiés. International Conference on Refugee Law (1997 : Sofia)"} 1 +2024-09-11 09:07:06.015438 2024-09-11 09:07:06.015443 da592f08-845a-4b15-9916-d3405bc63d7f {"md5": "25c80b216e19d263082aa4beb89ac795", "pid": "A012442717", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012442717", "source": "RERO"}], "preferred_name": "Exposition européenne d'art 1954-1955 :", "authorized_access_point": "Exposition européenne d'art (1 : 1954-1955 : Bruxelles)"} 1 +2024-09-11 09:07:06.092108 2024-09-11 09:07:06.092111 240bbfb7-4cbb-4582-b722-c75979389b66 {"md5": "82935031f5812e2f5fb246eaf406aaaa", "pid": "A012443563", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012443563", "source": "RERO"}], "preferred_name": "Institute of Management Sciences (Providence). Journées d'études (1960 :", "authorized_access_point": "Institute of Management Sciences (Providence). Journées d'études (1960 : Paris)"} 1 +2024-09-11 09:07:06.157691 2024-09-11 09:07:06.157695 6e31d6eb-fdd0-4b36-af87-75f58c045e5f {"md5": "71e23bd6a7bcd4564e242788cdd430ba", "pid": "A012448425", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012448425", "source": "RERO"}], "preferred_name": "Union internationale des instituts de recherches forestières. Seminaire (1972 :", "authorized_access_point": "Union internationale des instituts de recherches forestières. Seminaire (1972 : Zürich)"} 1 +2024-09-11 09:07:06.222477 2024-09-11 09:07:06.222479 996db13e-cb2f-4fd4-9303-3f92fcafcf7c {"md5": "27b1557965ea1fa547731762a7ad5890", "pid": "A012454917", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012454917", "source": "RERO"}], "preferred_name": "American Association for Information Science. Annual Continuing Education Seminar. Los Angeles Chapter (1984 :", "authorized_access_point": "American Association for Information Science. Annual Continuing Education Seminar. Los Angeles Chapter (1984 : Los Angeles)"} 1 +2024-09-11 09:07:06.282036 2024-09-11 09:07:06.282041 5d3a976f-e586-41bc-9137-6f42d540c7e1 {"md5": "e5ecd8e5b6cd8167426eea2c7a35b1d9", "pid": "A012457267", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012457267", "source": "RERO"}], "preferred_name": "American Mathematical Society. Symposium 1970 :", "authorized_access_point": "American Mathematical Society. Symposium (5 : 1970 : Chicago)"} 1 +2024-09-11 09:07:06.354673 2024-09-11 09:07:06.354679 41222b1c-a5b7-4fed-9a42-76d42cf0fd36 {"md5": "6bfbdd4cccae43e3e2d6d86730c9574e", "pid": "A012457605", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012457605", "source": "RERO"}], "preferred_name": "Conférence du Jeune Barreau de Bruxelles. Colloque (1992 :", "authorized_access_point": "Conférence du Jeune Barreau de Bruxelles. Colloque (1992 : Bruxelles)"} 1 +2024-09-11 09:07:06.421492 2024-09-11 09:07:06.421496 02e7d747-8ba9-41b6-be97-f57216c09fb6 {"md5": "dcb8b30cc3fe2d3de769dd055235be91", "pid": "A012460208", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012460208", "source": "RERO"}], "variant_name": ["Stichting H. N. Werkman (Amsterdam)", "Werkman Foundation (Amsterdam)"], "preferred_name": "Stichting Hendrik Nicolaes Werkman (Amsterdam)", "variant_access_point": ["Stichting H. N. Werkman (Amsterdam)", "Werkman Foundation (Amsterdam)"], "authorized_access_point": "Stichting Hendrik Nicolaes Werkman (Amsterdam)"} 1 +2024-09-11 09:07:06.492051 2024-09-11 09:07:06.492055 1a137ef8-2e0f-4ed7-85ff-f40cc2ed6d02 {"md5": "0e22117a942bfe3091870478588dcb08", "pid": "A012462643", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012462643", "source": "RERO"}], "preferred_name": "Université de Clermont-Ferrand. Centre de recherches sur les littératures modernes et contemporaines. Colloque international", "authorized_access_point": "Université de Clermont-Ferrand. Centre de recherches sur les littératures modernes et contemporaines. Colloque international (Clermont-Ferrand)"} 1 +2024-09-11 09:07:06.556856 2024-09-11 09:07:06.556861 ab6b583a-c29e-45cc-9a58-9db7d9083d14 {"md5": "18a171c2ef755b7ab39b29730e798dc3", "pid": "A012465613", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012465613", "source": "RERO"}], "preferred_name": "Alliance mondiale des unions chrétiennes féminines. Council meeting (1947 :", "authorized_access_point": "Alliance mondiale des unions chrétiennes féminines. Council meeting (1947 : Hangchow)"} 1 +2024-09-11 09:07:06.622072 2024-09-11 09:07:06.622075 488d4cae-b00f-4379-b3e0-0ab6d2e0e13a {"md5": "87f00cb96124e97faef03a0ff7cfad60", "pid": "A012468081", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012468081", "source": "RERO"}], "preferred_name": "Museum für hamburgische Geschichte (Hamburg)", "authorized_access_point": "Museum für hamburgische Geschichte (Hamburg)"} 1 +2024-09-11 09:07:06.681193 2024-09-11 09:07:06.681199 88803533-26a6-4e4c-920a-1b8f2bc9359b {"md5": "31dd2b2366e07a6391843ee436833452", "pid": "A012468192", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012468192", "source": "RERO"}], "preferred_name": "Ecole nationale d'administration (France). Deutsch-Französische Verwaltungskolloquium 1999 :", "authorized_access_point": "Ecole nationale d'administration (France). Deutsch-Französische Verwaltungskolloquium (6 : 1999 : Strasbourg)"} 1 +2024-09-11 09:07:06.743365 2024-09-11 09:07:06.74337 8aedcdfd-7846-4758-8d6b-57d4122b5e27 {"md5": "8d9ce65049a44cea46eeca52fb744bf8", "pid": "A012470496", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "dr en sciences", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012470496", "source": "RERO"}], "preferred_name": "Béraud, Jean, dr en sciences", "authorized_access_point": "Béraud, Jean, dr en sciences"} 1 +2024-09-11 09:07:06.804698 2024-09-11 09:07:06.804705 f83d0cfd-fd1a-4345-b508-7071f38378ee {"md5": "dc3adc83dec244ef1f2216ebdd767dc7", "pid": "A012470564", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012470564", "source": "RERO"}], "preferred_name": "University of North Carolina (Chapel Hill). University library. Hanes Foundation", "authorized_access_point": "University of North Carolina (Chapel Hill). University library. Hanes Foundation"} 1 +2024-09-11 09:07:06.880015 2024-09-11 09:07:06.88002 5078ee09-6b13-4af5-8e5f-bbd7a0abaf49 {"md5": "970dad5eaf3c4cd10c59e9b3d96e6d3e", "pid": "A012470848", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "Abbé", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012470848", "source": "RERO"}], "preferred_name": "Verdereau, Jean, Abbé", "authorized_access_point": "Verdereau, Jean, Abbé"} 1 +2024-09-11 09:07:06.940813 2024-09-11 09:07:06.940816 6629de37-2951-4d9f-a2e1-4487b62888ba {"md5": "31059d5dc11161e15d8c07d1234cdce6", "pid": "A012473809", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012473809", "source": "RERO"}], "preferred_name": "United States. Congress 1961 :", "authorized_access_point": "United States. Congress (87 : 1961 : Washington)"} 1 +2024-09-11 09:07:07.017506 2024-09-11 09:07:07.017512 7382b1c5-65d8-4acb-bb75-060283a14769 {"md5": "122a8d0474fe03142d7a6ce3ab8e9d65", "pid": "A012474515", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "étudiant en droit GE", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012474515", "source": "RERO"}], "preferred_name": "Dardiry, étudiant en droit GE", "authorized_access_point": "Dardiry, étudiant en droit GE"} 1 +2024-09-11 09:07:07.077692 2024-09-11 09:07:07.077697 d48d8a7d-07c4-40d7-a3aa-82ab7bd3964f {"md5": "0b035eb473742c30c1f480e58879d436", "pid": "A012479271", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012479271", "source": "RERO"}], "preferred_name": "Association des écoles internationales (Genève). Conference 1977)", "authorized_access_point": "Association des écoles internationales (Genève). Conference (26 : 1977)"} 1 +2024-09-11 09:07:07.129149 2024-09-11 09:07:07.129154 f9db39ef-19dd-4b21-8bba-bac95cd1eb05 {"md5": "2076c8bec1853c0daff903ee4891c66e", "pid": "A012480008", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012480008", "source": "RERO"}], "preferred_name": "Congrès national d'orientation professionnelle 1960 :", "authorized_access_point": "Congrès national d'orientation professionnelle (13 : 1960 : Evreux)"} 1 +2024-09-11 09:07:07.182958 2024-09-11 09:07:07.182963 bd7059ca-8185-4908-8dd0-7965986a2a37 {"md5": "574b6a2883ce1e0130676061d6091559", "pid": "A012480139", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012480139", "source": "RERO"}], "preferred_name": "Symposium sur l'éducation et la formation en matière de nutrition en Europe (1959 :", "authorized_access_point": "Symposium sur l'éducation et la formation en matière de nutrition en Europe (1959 : Bad Hombourg)"} 1 +2024-09-11 09:07:07.233642 2024-09-11 09:07:07.233646 50fb65f9-b7fb-4228-8015-a9aa9e70b63f {"md5": "364c660b0f0e07ee55038bf9ddad15d8", "pid": "A012484207", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012484207", "source": "RERO"}], "preferred_name": "Convegno celebrativo del Quinto centenario dell'unione della Chiesa latina e della Chiesa greca (1989 :", "authorized_access_point": "Convegno celebrativo del Quinto centenario dell'unione della Chiesa latina e della Chiesa greca (1989 : Firenze)"} 1 +2024-09-11 09:07:07.294215 2024-09-11 09:07:07.294218 c8a4cc0d-a2ec-49c2-8ef7-8837650a5c66 {"md5": "ec3df248c666f027f9a5ed5fc77a740a", "pid": "A012487640", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012487640", "source": "RERO"}], "preferred_name": "International Conference on Cooperative Information Systems 2000 :", "authorized_access_point": "International Conference on Cooperative Information Systems (7 : 2000 : Eilat)"} 1 +2024-09-11 09:07:07.396671 2024-09-11 09:07:07.396674 bf4b8cf3-d9cb-4331-9f3d-0a17d4e0b92c {"md5": "0063d211f002840ed634d0f52a2a6210", "pid": "A012488018", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012488018", "source": "RERO"}], "preferred_name": "European Working Session on Learning 1987 :", "authorized_access_point": "European Working Session on Learning (2 : 1987 : Bled)"} 1 +2024-09-11 09:07:07.450409 2024-09-11 09:07:07.450414 c14f771f-dcc7-43b6-990e-d62f815f2788 {"md5": "3cab4a6b3879fb7f82469900f9654a3c", "pid": "A012489633", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012489633", "source": "RERO"}], "preferred_name": "Congrès des relations industrielles de l'Université Laval 1946 :", "authorized_access_point": "Congrès des relations industrielles de l'Université Laval (1 : 1946 : Québec)"} 1 +2024-09-11 09:07:07.506147 2024-09-11 09:07:07.50615 411b79fa-02ef-428c-b538-17f4bb7073f1 {"md5": "76f02fb00eeea0af2c7a85579b26907a", "pid": "A012490094", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012490094", "source": "RERO"}], "preferred_name": "International Symposium on Deep Structure of the Continental Crust (1984 :", "authorized_access_point": "International Symposium on Deep Structure of the Continental Crust (1984 : Ithaca)"} 1 +2024-09-11 09:07:07.5593 2024-09-11 09:07:07.559304 ede6e87b-0704-45d5-bcb7-d30c800569b0 {"md5": "c6474dcddf787ab8dac90c8e80431791", "pid": "A012493490", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012493490", "source": "RERO"}], "preferred_name": "Conferencia Internacional de Sociologia Religiosa 1975 :", "authorized_access_point": "Conferencia Internacional de Sociologia Religiosa (13 : 1975 : Lloret de Mar)"} 1 +2024-09-11 09:07:07.611058 2024-09-11 09:07:07.611063 b616dd9d-0251-401f-86ca-1e9ab907c3ee {"md5": "a310008b357bb43890b731c13b99cb3a", "pid": "A012494600", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012494600", "source": "RERO"}], "preferred_name": "Congrès international des secrétaires communaux 1910 :", "authorized_access_point": "Congrès international des secrétaires communaux (5 : 1910 : Bruxelles)"} 1 +2024-09-11 09:07:07.66983 2024-09-11 09:07:07.669836 e3030593-b86e-4102-9a83-44ca7725e840 {"md5": "8fdbd9c5d3a45d9cf9c7bebcf5d00f8e", "pid": "A012495733", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012495733", "source": "RERO"}], "preferred_name": "Leopold-Franzens-Universität (Innsbruck). Geisteswissenschaftliche Fakultät. Internationale Tagung (2001 :", "authorized_access_point": "Leopold-Franzens-Universität (Innsbruck). Geisteswissenschaftliche Fakultät. Internationale Tagung (2001 : Innsbruck)"} 1 +2024-09-11 09:07:07.72573 2024-09-11 09:07:07.725734 e86fae59-46bb-4227-b320-3e7660ee7121 {"md5": "f463a381ce09386566b9703418e09f4d", "pid": "A012497106", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012497106", "source": "RERO"}], "preferred_name": "Biennale de céramique contemporaine 2005 :", "authorized_access_point": "Biennale de céramique contemporaine (13 : 2005 : Châteauroux)"} 1 +2024-09-11 09:07:07.784121 2024-09-11 09:07:07.784125 261f12ea-63f5-4fd6-b649-9a2759b7379d {"md5": "dfa6469347ea365b304e1c1f15781cdc", "pid": "A012497126", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012497126", "source": "RERO"}], "preferred_name": "Festival Science et cité 2005 :", "authorized_access_point": "Festival Science et cité (5 : 2005 : Fribourg)"} 1 +2024-09-11 09:07:07.84083 2024-09-11 09:07:07.840835 5d4c476b-f1de-4698-a5af-f7eb4943da74 {"md5": "01e1d63a14fa3a93f8165b90025b18d8", "pid": "A012497225", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012497225", "source": "RERO"}], "preferred_name": "Conference on Foundations of Software Technology and Theoretical Computer Science 2000 :", "authorized_access_point": "Conference on Foundations of Software Technology and Theoretical Computer Science (20 : 2000 : New Delhi)"} 1 +2024-09-11 09:07:07.899352 2024-09-11 09:07:07.899356 c12e1aa2-af63-4fc6-9a34-7f3e64f8e289 {"md5": "c0579327d3ada665e1fb6dc7227b65de", "pid": "A012498346", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012498346", "source": "RERO"}], "preferred_name": "Congreso sudamericano de zoologia 1959 :", "authorized_access_point": "Congreso sudamericano de zoologia (1 : 1959 : La Plata)"} 1 +2024-09-11 09:07:07.964078 2024-09-11 09:07:07.964081 72de1761-346c-4ba9-a7ed-985e504ae26c {"md5": "fb17ea52709ff812ef3983eba0f19524", "pid": "A012506176", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012506176", "source": "RERO"}], "preferred_name": "Hochschule Sankt Gallen für Wirtschafts- und Sozialwissenschaften. Schweizerisches Institut für Verwaltungskurse. Kurs 1967 :", "authorized_access_point": "Hochschule Sankt Gallen für Wirtschafts- und Sozialwissenschaften. Schweizerisches Institut für Verwaltungskurse. Kurs (122 : 1967 : Sankt Gallen)"} 1 +2024-09-11 09:07:08.023451 2024-09-11 09:07:08.023455 b212f072-e15a-44d1-be4e-c63f8ebe31cf {"md5": "5cf96f08be3b7b42af3929e9966eb8e4", "pid": "A012506256", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012506256", "source": "RERO"}], "preferred_name": "Fédération internationale de l'habitation et de l'urbanisme. Congrès 1958 :", "authorized_access_point": "Fédération internationale de l'habitation et de l'urbanisme. Congrès (34 : 1958 : Liège)"} 1 +2024-09-11 09:07:08.081009 2024-09-11 09:07:08.081012 208bb252-92cf-4221-9941-c27ce26980df {"md5": "c8b2d62ca9b2b17ba9b188259bf52f41", "pid": "A012506339", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012506339", "source": "RERO"}], "preferred_name": "International Federation of Classification Societies. Conference 1993 :", "authorized_access_point": "International Federation of Classification Societies. Conference (4 : 1993 : Paris)"} 1 +2024-09-11 09:07:08.131264 2024-09-11 09:07:08.131266 f422c1cb-5098-4fb2-adcc-6d7ad1848df4 {"md5": "64ddd9f678eaca1b5a3d943a6eed03c1", "pid": "A012506877", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012506877", "source": "RERO"}], "preferred_name": "International Cultural Heritage Informatics Meeting (1999 :", "authorized_access_point": "International Cultural Heritage Informatics Meeting (1999 : Washington)"} 1 +2024-09-11 09:07:08.189464 2024-09-11 09:07:08.189466 95f7511e-80c3-410b-bb6c-a15a799d549a {"md5": "1dd88cc2295413d970ce6622afedb449", "pid": "A012507478", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012507478", "source": "RERO"}], "preferred_name": "Université de Paris 4. Société internationale d'histoire comparée du théâtre, de l'opéra et du ballet. Séminaire international 1993 :", "authorized_access_point": "Université de Paris 4. Société internationale d'histoire comparée du théâtre, de l'opéra et du ballet. Séminaire international (6 : 1993 : Paris)"} 1 +2024-09-11 09:07:08.242297 2024-09-11 09:07:08.242301 9269d280-c5f4-4466-8723-110468c7ac22 {"md5": "eb8a17c9fa8cd750fb6e11fa7e503348", "pid": "A012508085", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012508085", "source": "RERO"}], "preferred_name": "Université de Toulouse 3. Centre d'informatique", "authorized_access_point": "Université de Toulouse 3. Centre d'informatique"} 1 +2024-09-11 09:07:08.294824 2024-09-11 09:07:08.294828 840bd2f8-ee2c-4c89-ad83-26db0075a418 {"md5": "149747454dadf221fae9893fba9b3242", "pid": "A012508468", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012508468", "source": "RERO"}], "preferred_name": "University of London. Centre of European Law. Conference (1993 :", "authorized_access_point": "University of London. Centre of European Law. Conference (1993 : London)"} 1 +2024-09-11 09:07:08.34759 2024-09-11 09:07:08.347594 c7ba7790-8f46-472c-9b5f-36a02e3169a1 {"md5": "e0c0b59405b063b4218b07d97178b668", "pid": "A012508709", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012508709", "source": "RERO"}], "preferred_name": "Settimana di studi mariani (1988 :", "authorized_access_point": "Settimana di studi mariani (1988 : Siracusa)"} 1 +2024-09-11 09:07:08.40078 2024-09-11 09:07:08.400785 2074661b-c1fb-4799-ab1a-386f38913467 {"md5": "530afc0a04d3cf51383d823fd85d278f", "pid": "A012509199", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "frère", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012509199", "source": "RERO"}], "preferred_name": "B., frère", "authorized_access_point": "B., frère"} 1 +2024-09-11 09:07:08.490464 2024-09-11 09:07:08.490468 34c42320-152c-43ca-8695-20c4c349283e {"md5": "8564eef29f1c6334db283322e1e146fb", "pid": "A012512864", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012512864", "source": "RERO"}], "preferred_name": "NATO Advanced Research Workshop on the Impact of Long-term Monitoring on Variable Star Research (1993 :", "authorized_access_point": "NATO Advanced Research Workshop on the Impact of Long-term Monitoring on Variable Star Research (1993 : Ghent, Belgique)"} 1 +2024-09-11 09:07:08.545128 2024-09-11 09:07:08.545132 971a52a9-6324-4272-84b7-314dd97d6bb9 {"md5": "f3b4d3929bed51df7fc85aa6636886fe", "pid": "A012513294", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012513294", "source": "RERO"}], "preferred_name": "Italia. Ministero di grazia e giustizia. Congrès (1983 :", "authorized_access_point": "Italia. Ministero di grazia e giustizia. Congrès (1983 : Milano)"} 1 +2024-09-11 09:07:08.604773 2024-09-11 09:07:08.604777 7fc503ac-fcd7-4144-85d6-39edbe7d7e2b {"md5": "58ffa3d1bc4f5cba9d4f6522d71e79f6", "pid": "A012517704", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012517704", "source": "RERO"}], "preferred_name": "Universite de Liège. Groupe de géographe humaine théorique et quantitative. Journée de recherches FNRS (1987 :", "authorized_access_point": "Universite de Liège. Groupe de géographe humaine théorique et quantitative. Journée de recherches FNRS (1987 : Liège)"} 1 +2024-09-11 09:07:08.658797 2024-09-11 09:07:08.658801 c2a210a8-14dc-4949-8d67-2fb974b7ad70 {"md5": "a82ac2a7851bfd8a2ae308119149b318", "pid": "A012518029", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012518029", "source": "RERO"}], "preferred_name": "Universidad Complutense de Madrid. Departamento de antropología social", "authorized_access_point": "Universidad Complutense de Madrid. Departamento de antropología social"} 1 +2024-09-11 09:07:08.709503 2024-09-11 09:07:08.709508 52405d13-a263-4548-aad3-3a480e8ccf2e {"md5": "8da4e59787f1ec0a764a52bfa444d50f", "pid": "A012519806", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "physicien", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012519806", "source": "RERO"}], "preferred_name": "Philips, Roger, physicien", "authorized_access_point": "Philips, Roger, physicien"} 1 +2024-09-11 09:07:08.764449 2024-09-11 09:07:08.764453 04560873-70d3-4e80-a973-45e8bce87ac7 {"md5": "22b09b59eb0f7e8340d93002b0c8cbb2", "pid": "A012523458", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012523458", "source": "RERO"}], "preferred_name": "Ensemble refaire la ville. (1987 :", "authorized_access_point": "Ensemble refaire la ville. (1987 : Valence)"} 1 +2024-09-11 09:07:08.822513 2024-09-11 09:07:08.822516 78d8cc2a-299b-47ba-95af-84023cb06b0b {"md5": "598d513c72c2633ef9d166bbe8d90982", "pid": "A012525949", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012525949", "source": "RERO"}], "preferred_name": "Nations Unies. Service de l'assistance technique. Seminar (1960 :", "authorized_access_point": "Nations Unies. Service de l'assistance technique. Seminar (1960 : Leysin)"} 1 +2024-09-11 09:07:08.879659 2024-09-11 09:07:08.879662 14b554c6-eb5e-428b-b642-2a9f41ecfe0f {"md5": "f6db038cc45a59062bf47d19f9b1aff4", "pid": "A012525951", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012525951", "source": "RERO"}], "preferred_name": "Nations Unies. Division des affaires sociales. Cycle d'étude (1968 :", "authorized_access_point": "Nations Unies. Division des affaires sociales. Cycle d'étude (1968 : Madrid)"} 1 +2024-09-11 09:07:08.934501 2024-09-11 09:07:08.934506 f276ef33-5262-4287-9359-7d9e879cb01a {"md5": "84c75ca4b4620bccd2e1e27f7e761b59", "pid": "A012527268", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012527268", "source": "RERO"}], "preferred_name": "Convegno internazionale sull'organizzazione umana nell'economia industriale 1977 :", "authorized_access_point": "Convegno internazionale sull'organizzazione umana nell'economia industriale (1 : 1977 : Stresa)"} 1 +2024-09-11 09:07:08.996549 2024-09-11 09:07:08.996553 090da0a7-507f-4c1e-940c-c4269641c3b6 {"md5": "c5d7e317ff20169e452d0cdeeeeaf20f", "pid": "A012527993", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012527993", "source": "RERO"}], "preferred_name": "Cours médico-juridique (1969 :", "authorized_access_point": "Cours médico-juridique (1969 : Ferrara)"} 1 +2024-09-11 09:07:09.054857 2024-09-11 09:07:09.054861 e32c0b8a-bfc1-4964-923c-2de5d4f072a2 {"md5": "03bd28979af98ab8d5fa26690993ef1b", "pid": "A012528466", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012528466", "source": "RERO"}], "preferred_name": "Union internationale d'histoire et de philosophie des sciences. Division de philosophie. Colloquium (1960 :", "authorized_access_point": "Union internationale d'histoire et de philosophie des sciences. Division de philosophie. Colloquium (1960 : Utrecht)"} 1 +2024-09-11 09:07:09.112546 2024-09-11 09:07:09.11255 a110f1d2-9235-4201-aa9d-abddf7dc8c46 {"md5": "4ac32a445d9aaf25e373462199933ce2", "pid": "A012529768", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012529768", "source": "RERO"}], "preferred_name": "Conférence nationale sur la drogue (1995 :", "authorized_access_point": "Conférence nationale sur la drogue (1995 : Bern)"} 1 +2024-09-11 09:07:09.169452 2024-09-11 09:07:09.169456 e9962fc7-cc91-4c40-b883-4989a119cc82 {"md5": "9829c0b30519d0d823196e10523da9c1", "pid": "A012533386", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012533386", "source": "RERO"}], "preferred_name": "National Down Syndrome Society (USA). Conference (1992 :", "authorized_access_point": "National Down Syndrome Society (USA). Conference (1992 : New York)"} 1 +2024-09-11 09:07:09.220848 2024-09-11 09:07:09.220852 d49172bc-f1ff-4ed5-bdcd-0932dc1f92dd {"md5": "221dd18b5be9c049abd340c234b96d5c", "pid": "A012534909", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012534909", "source": "RERO"}], "preferred_name": "Association suisse-arabe. Assemblée générale annuelle (1974 :", "authorized_access_point": "Association suisse-arabe. Assemblée générale annuelle (1974 : Lausanne)"} 1 +2024-09-11 09:07:09.271578 2024-09-11 09:07:09.271582 4cae355a-fbb2-4c3c-b209-dec51fa19f68 {"md5": "dff66b28e21b44e58336e1efa0f39c11", "pid": "A012534932", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012534932", "source": "RERO"}], "preferred_name": "Conference on Operator Algebras (1992 :", "authorized_access_point": "Conference on Operator Algebras (1992 : Orléans)"} 1 +2024-09-11 09:07:09.329269 2024-09-11 09:07:09.329272 884253b3-5783-4332-9f18-81ec35dd2d51 {"md5": "fca9dcb1bf348051280d1bd47fe0e65c", "pid": "A012571346", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012571346", "source": "RERO"}], "preferred_name": "Glinskij, B.B", "parallel_access_point": ["Глинский, Б.Б"], "authorized_access_point": "Glinskij, B.B"} 1 +2024-09-11 09:07:09.381476 2024-09-11 09:07:09.381479 02ad4fa4-6118-4d48-b323-d14edbaad1df {"md5": "3aea4caeda687bf5fe99f981a9298422", "pid": "A012572265", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012572265", "source": "RERO"}], "variant_name": ["Ruiz, Jean-Paul et Dom"], "preferred_name": "Ruiz, Dom et Jean-Paul", "variant_access_point": ["Ruiz, Jean-Paul et Dom"], "authorized_access_point": "Ruiz, Dom et Jean-Paul"} 1 +2024-09-11 09:07:09.433633 2024-09-11 09:07:09.433636 239ca520-e866-4b43-9fa2-293c4076a6ad {"md5": "3569f0a6defc1bbbf957844d226c7dca", "pid": "A012591999", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012591999", "source": "RERO"}], "preferred_name": "Schneikert, Elisabeth", "authorized_access_point": "Schneikert, Elisabeth"} 1 +2024-09-11 09:07:09.492242 2024-09-11 09:07:09.492247 38e54046-d93f-45cd-b1cf-5f37d41c6a50 {"md5": "504ddf613895cb9e6368af90b5a61cd6", "pid": "A012597330", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "mathématicien", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012597330", "source": "RERO"}], "preferred_name": "Bergeron, Nicolas, mathématicien", "authorized_access_point": "Bergeron, Nicolas, mathématicien"} 1 +2024-09-11 09:07:09.547463 2024-09-11 09:07:09.547467 2d982a72-8c68-4cef-babd-dab3286aa987 {"md5": "5a930d722a1b1b587d7b02a000aeeede", "pid": "A012598301", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012598301", "source": "RERO"}], "preferred_name": "Meyniel, Laurent", "authorized_access_point": "Meyniel, Laurent"} 1 +2024-09-11 09:07:09.615199 2024-09-11 09:07:09.615203 32af4b42-e61b-4da7-9e51-50ca7854cc77 {"md5": "643a9dafef7a406e5a07928dbeac85f5", "pid": "A012623821", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012623821", "source": "RERO"}], "preferred_name": "Hoppe, Albrecht", "authorized_access_point": "Hoppe, Albrecht"} 1 +2024-09-11 09:07:09.674898 2024-09-11 09:07:09.674903 3979035d-57a9-4fae-b69d-38a0bb384609 {"md5": "2c3ab4b691075d5bb3bb83bd5747f9a9", "pid": "A012636366", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012636366", "source": "RERO"}], "preferred_name": "Laatikainen, Katie Verlin", "authorized_access_point": "Laatikainen, Katie Verlin"} 1 +2024-09-11 09:07:09.731796 2024-09-11 09:07:09.7318 9b695485-2aa6-454c-a83a-42aceaf5cfd1 {"md5": "81f75079ffe50065f9ffd105a116040a", "pid": "A012674280", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012674280", "source": "RERO"}], "preferred_name": "Ecole industrielle supérieure (Sion)", "authorized_access_point": "Ecole industrielle supérieure (Sion)"} 1 +2024-09-11 09:07:09.786637 2024-09-11 09:07:09.786643 9f486f25-70b5-4ffc-a216-dde5b4ee63a2 {"md5": "d6caa7fb4f89b01fb6f8b13172221f69", "pid": "A012692359", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012692359", "source": "RERO"}], "preferred_name": "Pavlović, Živojin", "authorized_access_point": "Pavlović, Živojin"} 1 +2024-09-11 09:07:09.835878 2024-09-11 09:07:09.835883 f66b84ea-e5b8-4b20-808e-9357e6667190 {"md5": "aaed740751586a87d66c23b460477ee4", "pid": "A012707155", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012707155", "source": "RERO"}], "preferred_name": "Preisser, Michael", "authorized_access_point": "Preisser, Michael"} 1 +2024-09-11 09:07:09.889466 2024-09-11 09:07:09.889469 3df1d764-def3-4b11-ac4a-3c48c77cf97e {"md5": "f54c2926fbf1b9b0cd3fa0f8f3258bef", "pid": "A012707480", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012707480", "source": "RERO"}], "preferred_name": "International arbitration symposium (2004 :", "authorized_access_point": "International arbitration symposium (2004 : Stockholm)"} 1 +2024-09-11 09:07:09.944638 2024-09-11 09:07:09.944641 3ca2f4f4-6ac7-43f0-b0cb-4cc2ae2bb7bd {"md5": "63ef89610f57f18b1cc7e986552667f2", "pid": "A012722635", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012722635", "source": "RERO"}], "preferred_name": "Gnaegi, Hermann", "authorized_access_point": "Gnaegi, Hermann"} 1 +2024-09-11 09:07:10.003161 2024-09-11 09:07:10.003164 68f073d8-4316-47ba-9eb3-d116aa425c0d {"md5": "b3a3be7f03cc4680862a7094cd8d922c", "pid": "A012726948", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012726948", "source": "RERO"}], "date_of_birth": "1942", "preferred_name": "Fontaine, Jean-Marc,", "authorized_access_point": "Fontaine, Jean-Marc, 1942-"} 1 +2024-09-11 09:07:10.076558 2024-09-11 09:07:10.076563 707cfbfd-8665-4452-8348-068a3f2fda9f {"md5": "b85d1511989861847a6adc83274ac369", "pid": "A012744465", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012744465", "source": "RERO"}], "preferred_name": "Comité de secours des Brenets", "authorized_access_point": "Comité de secours des Brenets"} 1 +2024-09-11 09:07:10.137716 2024-09-11 09:07:10.137721 fab0fcc7-4a8a-4086-b3eb-1e9616b02cfa {"md5": "8458f30c8d626a5f2d3f804d0051be69", "pid": "A012765564", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012765564", "source": "RERO"}], "preferred_name": "Argentin, Paola", "authorized_access_point": "Argentin, Paola"} 1 +2024-09-11 09:07:10.232468 2024-09-11 09:07:10.232472 8f563867-1362-4b1d-b111-052c7a156a3f {"md5": "5ffc63ad243a94d80421489eee115fa2", "pid": "A012771324", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012771324", "source": "RERO"}], "preferred_name": "Béville, Louis Théophile de", "authorized_access_point": "Béville, Louis Théophile de", "biographical_information": ["Dates de vie: 1734-1816"]} 1 +2024-09-11 09:07:10.290482 2024-09-11 09:07:10.290485 faf167b0-6ff2-459e-b227-8d5de07abfa0 {"md5": "4f1aef3613fbab5022defb0bc44413a4", "pid": "A012774842", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012774842", "source": "RERO"}], "preferred_name": "Laffineur-Noseda, M", "authorized_access_point": "Laffineur-Noseda, M"} 1 +2024-09-11 09:07:10.343953 2024-09-11 09:07:10.343956 838ce593-b7f1-470f-b8d3-de0b4c055392 {"md5": "37eaa2aa46ec358e208bc9fb3dcc2af6", "pid": "A012780830", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012780830", "source": "RERO"}], "preferred_name": "Bellon, Marie", "authorized_access_point": "Bellon, Marie"} 1 +2024-09-11 09:07:10.395107 2024-09-11 09:07:10.39511 c35654ec-dfb9-4961-af66-0f3d7b8bd4ff {"md5": "1e4ed0a042d5c59322000ef65afc9d84", "pid": "A012781952", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012781952", "source": "RERO"}], "preferred_name": "Geraskoff, Michael", "authorized_access_point": "Geraskoff, Michael"} 1 +2024-09-11 09:07:10.447682 2024-09-11 09:07:10.447686 557e8c8e-efe4-4214-981a-abb773e653d8 {"md5": "62f9976d49d4161d8f462ee36444fa9f", "pid": "A012784906", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012784906", "source": "RERO"}], "preferred_name": "Harrison, Peter D", "authorized_access_point": "Harrison, Peter D"} 1 +2024-09-11 09:07:10.499255 2024-09-11 09:07:10.499258 7d3664aa-03b3-487c-bcd4-a51cc2ee2a7b {"md5": "2ded62e985d72fd13b169961e2eb4861", "pid": "A012785250", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012785250", "source": "RERO"}], "preferred_name": "Lips, Annemarie", "authorized_access_point": "Lips, Annemarie"} 1 +2024-09-11 09:07:10.553088 2024-09-11 09:07:10.553091 1f68530e-f97f-44d6-bcfc-f07d51f129c4 {"md5": "14a07d3ca9ddd87c59d962f4e0bbc435", "pid": "A012791691", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012791691", "source": "RERO"}], "preferred_name": "Semaine du document numérique 2006 :", "authorized_access_point": "Semaine du document numérique (06 : 2006 : Fribourg)"} 1 +2024-09-11 09:07:10.609938 2024-09-11 09:07:10.609942 45b501c0-7ec4-4c42-9873-becec83365a5 {"md5": "ca66a0aa7857a96e1145dbe8c567c10f", "pid": "A012808722", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012808722", "source": "RERO"}], "preferred_name": "Lehr, Hans-Anton", "authorized_access_point": "Lehr, Hans-Anton"} 1 +2024-09-11 09:07:10.661104 2024-09-11 09:07:10.661107 40dd28a5-2b35-4f86-aaa8-fb92c64eb9ed {"md5": "9ba38db7eda7f935d46bed5ad4508b33", "pid": "A012816863", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012816863", "source": "RERO"}], "preferred_name": "Herrmann, Immanuel", "authorized_access_point": "Herrmann, Immanuel"} 1 +2024-09-11 09:07:10.71487 2024-09-11 09:07:10.714876 b0dca134-d050-4221-ac72-99f0a90c90e4 {"md5": "767596a9f3a276bb7d571ffedc7d02a0", "pid": "A012833174", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012833174", "source": "RERO"}], "preferred_name": "Raiffeisenkasse (Visperterminen)", "authorized_access_point": "Raiffeisenkasse (Visperterminen)"} 1 +2024-09-11 09:07:10.766347 2024-09-11 09:07:10.76635 9915aa9c-aad3-45c4-bea5-5760d6509789 {"md5": "dc658d733d65fc8571ca1f4e7ece32ef", "pid": "A012856933", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012856933", "source": "RERO"}], "preferred_name": "Schola Saint-Hymnemode (Montana)", "authorized_access_point": "Schola Saint-Hymnemode (Montana)"} 1 +2024-09-11 09:07:10.826679 2024-09-11 09:07:10.826684 2b40da48-027d-4a68-af93-64b034a085e1 {"md5": "027f5e683ac06da999ed57906c8f40e5", "pid": "A012895540", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012895540", "source": "RERO"}], "preferred_name": "Ramahatra, Olivier", "authorized_access_point": "Ramahatra, Olivier"} 1 +2024-09-11 09:07:10.891135 2024-09-11 09:07:10.891139 32df30dc-c0bc-49a0-9b16-e62faf5f98fc {"md5": "df4396e70c2e922d51056f984f8253b9", "pid": "A012907177", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012907177", "source": "RERO"}], "variant_name": ["Biblioteca provinciale del Monte dei Cappuccini (Torino)", "Biblioteca del Monte dei Cappuccini (Torino)", "Convento del Monte dei Cappuccini (Torino). Biblioteca provinciale"], "preferred_name": "Convento del Monte dei Cappuccini (Torino). Biblioteca", "variant_access_point": ["Biblioteca provinciale del Monte dei Cappuccini (Torino)", "Biblioteca del Monte dei Cappuccini (Torino)", "Convento del Monte dei Cappuccini (Torino). Biblioteca provinciale"], "authorized_access_point": "Convento del Monte dei Cappuccini (Torino). Biblioteca"} 1 +2024-09-11 09:07:10.945594 2024-09-11 09:07:10.945598 4b5eb27d-a39d-4617-824f-3f03f1203918 {"md5": "4e75839c7c67c9efe7c73262ade18527", "pid": "A012928427", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "comte de", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012928427", "source": "RERO"}], "date_of_birth": "1778", "date_of_death": "1818", "preferred_name": "Ségur, Octave Gabriel, comte de,", "authorized_access_point": "Ségur, Octave Gabriel, comte de, 1778-1818"} 1 +2024-09-11 09:07:11.001498 2024-09-11 09:07:11.001503 ddfa9508-7446-4e1e-89b9-6c58473d23bb {"md5": "74ac85f55913959a788660da2d31a6f7", "pid": "A012937900", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012937900", "source": "RERO"}], "variant_name": ["Maire, Daphné", "Gaudry, Daphné"], "preferred_name": "Gaudry-Maire, Daphné", "variant_access_point": ["Maire, Daphné", "Gaudry, Daphné"], "authorized_access_point": "Gaudry-Maire, Daphné"} 1 +2024-09-11 09:07:11.057464 2024-09-11 09:07:11.057468 cb54dfb7-47c0-44d2-9c18-eb199778d3a2 {"md5": "1707b9f8f04e80240f169d5423c89876", "pid": "A012950169", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012950169", "source": "RERO"}], "preferred_name": "Laboratoire d'étude du droit public (Rennes). Colloque (2002 :", "authorized_access_point": "Laboratoire d'étude du droit public (Rennes). Colloque (2002 : Rennes)"} 1 +2024-09-11 09:07:11.116376 2024-09-11 09:07:11.116381 ab08421b-cc1d-48ae-823c-6a3ce4997771 {"md5": "5c208c2d3a8f6518d5cecde3d31e903c", "pid": "A012957396", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012957396", "source": "RERO"}], "preferred_name": "Gberie, Lansana", "authorized_access_point": "Gberie, Lansana"} 1 +2024-09-11 09:07:11.167072 2024-09-11 09:07:11.167077 52a2105d-3bc2-44a4-a6ba-83d9a06b9570 {"md5": "f35399fcde58b06534934d1567cf55e9", "pid": "A012963166", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012963166", "source": "RERO"}], "preferred_name": "Gressard, J.-L", "authorized_access_point": "Gressard, J.-L"} 1 +2024-09-11 09:07:11.217781 2024-09-11 09:07:11.217784 1a19b0c4-0402-4d64-9e47-d07d30add801 {"md5": "9bfc2ffb4d2a056c4af58ca643fdd4b0", "pid": "A012966636", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A012966636", "source": "RERO"}], "preferred_name": "Greenfield, Laura", "authorized_access_point": "Greenfield, Laura"} 1 +2024-09-11 09:07:11.272864 2024-09-11 09:07:11.272867 4a462fcf-f77a-49e0-8e29-7b09d09408db {"md5": "8d4d1beae9bd5541e44711a12bc02079", "pid": "A013062530", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013062530", "source": "RERO"}], "variant_name": ["Galerie der Stadt Prag", "Galerie de la ville de Prague", "Galleria di Praga", "Galerie der Hauptstadt Prag", "Prague City Gallery", "City Gallery Prague"], "preferred_name": "Galerie hlavního města Prahy", "variant_access_point": ["Galerie der Stadt Prag", "Galerie de la ville de Prague", "Galleria di Praga", "Galerie der Hauptstadt Prag", "Prague City Gallery", "City Gallery Prague"], "authorized_access_point": "Galerie hlavního města Prahy"} 1 +2024-09-11 09:07:11.32969 2024-09-11 09:07:11.329693 3fad17fe-1ead-4d4e-b79c-1641a090a02e {"md5": "f6379fa1ac8d11ea31acca73074090d0", "pid": "A013071942", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013071942", "source": "RERO"}], "preferred_name": "Paula, Helmut", "authorized_access_point": "Paula, Helmut"} 1 +2024-09-11 09:07:11.382792 2024-09-11 09:07:11.382797 72883d6d-90b9-40c8-8141-40b17ec6f386 {"md5": "fba6c2a16bce69a574f473a17458f4a7", "pid": "A013084243", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013084243", "source": "RERO"}], "preferred_name": "Cinelli, Luciano", "authorized_access_point": "Cinelli, Luciano"} 1 +2024-09-11 09:07:11.435292 2024-09-11 09:07:11.435297 db26b358-816b-4132-9a06-0ec71cef119f {"md5": "73c0f0a9e00bef2ba43c115a5118a84a", "pid": "A013088320", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013088320", "source": "RERO"}], "date_of_birth": "1934", "preferred_name": "Stolte, Dieter,", "authorized_access_point": "Stolte, Dieter, 1934-"} 1 +2024-09-11 09:07:11.486407 2024-09-11 09:07:11.48641 71535ccb-9b73-4103-a5dd-18b7443793a9 {"md5": "f11129d7b1fd72b3debaf992173a26db", "pid": "A013094655", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013094655", "source": "RERO"}], "preferred_name": "Rumpf, Heinrich L", "authorized_access_point": "Rumpf, Heinrich L"} 1 +2024-09-11 09:07:11.548302 2024-09-11 09:07:11.548307 2b5d8700-b716-41c6-a765-e72973973208 {"md5": "b47ca519c2afbcfb1fac5762b7589584", "pid": "A013096212", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013096212", "source": "RERO"}], "preferred_name": "Interdiözesaner Katechetischer Fonds (Österreich)", "authorized_access_point": "Interdiözesaner Katechetischer Fonds (Österreich)"} 1 +2024-09-11 09:07:11.607317 2024-09-11 09:07:11.607322 58cb4a7f-cfee-4cc2-b116-16f4fd9fc61e {"md5": "b02d7f21cc0513d2b69069ae21890087", "pid": "A013128887", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013128887", "source": "RERO"}], "preferred_name": "Sims Reed Gallery (London)", "authorized_access_point": "Sims Reed Gallery (London)"} 1 +2024-09-11 09:07:11.661119 2024-09-11 09:07:11.661122 f4e64175-4393-4594-8314-e5d2a2478d76 {"md5": "63d6f186fa5e1096cef3e12acd98638f", "pid": "A013135052", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013135052", "source": "RERO"}], "preferred_name": "Korth, Konrad", "authorized_access_point": "Korth, Konrad"} 1 +2024-09-11 09:07:11.721367 2024-09-11 09:07:11.72137 e8de7cb0-08bb-4d00-a1f1-c22c2c117dee {"md5": "6b05ca5e3b0974334e398822446c081b", "pid": "A013137641", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013137641", "source": "RERO"}], "preferred_name": "Württembergisches Landesmuseum. Archäologische Sammlungen", "authorized_access_point": "Württembergisches Landesmuseum. Archäologische Sammlungen"} 1 +2024-09-11 09:07:11.77637 2024-09-11 09:07:11.776375 7ccc02a0-c262-4569-b28f-e3fc317822e4 {"md5": "1826ebe76bafb8fd7ac9479412f1a35d", "pid": "A013151927", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013151927", "source": "RERO"}], "variant_name": ["Richterich, Lukas Emil"], "preferred_name": "Richterich, Lukas", "variant_access_point": ["Richterich, Lukas Emil"], "authorized_access_point": "Richterich, Lukas"} 1 +2024-09-11 09:07:11.828163 2024-09-11 09:07:11.828167 ecd29aec-4ab4-4702-82b4-e25c8943918d {"md5": "1a2a8d52b5c755e4565bbb0a1274e240", "pid": "A013160840", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013160840", "source": "RERO"}], "preferred_name": "Jorio, Ettore", "authorized_access_point": "Jorio, Ettore"} 1 +2024-09-11 09:07:11.881541 2024-09-11 09:07:11.881545 60c1d434-413b-4158-aac6-77a5a7f09e8b {"md5": "334aeb29597c2e942bac265424f023eb", "pid": "A013187480", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013187480", "source": "RERO"}], "preferred_name": "Unanue, Ander", "authorized_access_point": "Unanue, Ander"} 1 +2024-09-11 09:07:11.93959 2024-09-11 09:07:11.939595 0265f754-3482-4469-a3d2-519de9eccb31 {"md5": "f6092d70098f1d5c5800f8a20f006248", "pid": "A013188863", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013188863", "source": "RERO"}], "preferred_name": "Vrettos, Adrienne Maria", "authorized_access_point": "Vrettos, Adrienne Maria"} 1 +2024-09-11 09:07:12.001526 2024-09-11 09:07:12.001529 60059d04-ce8c-44e1-9ef3-9622375247f0 {"md5": "2e04705e982706e1e14e2e19daa072b8", "pid": "A013193457", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013193457", "source": "RERO"}], "preferred_name": "Verseils, Marcel", "authorized_access_point": "Verseils, Marcel"} 1 +2024-09-11 09:07:12.059065 2024-09-11 09:07:12.059069 3172bfdd-bf50-48da-aadb-6be54f8395b5 {"md5": "b0274c224fcf4f64be39aaf41d9f27fd", "pid": "A013199001", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013199001", "source": "RERO"}], "preferred_name": "Horn, Charles Norman", "authorized_access_point": "Horn, Charles Norman"} 1 +2024-09-11 09:07:12.108446 2024-09-11 09:07:12.108451 aacba92e-598d-4381-ab57-0e98b2082046 {"md5": "3c82ff99abb1d088bfe1ba402471a1bb", "pid": "A013216832", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013216832", "source": "RERO"}], "preferred_name": "Scherpenberg, Norman van", "authorized_access_point": "Scherpenberg, Norman van"} 1 +2024-09-11 09:07:12.187643 2024-09-11 09:07:12.187649 c0e806da-02e4-480f-9262-9b022bf61ae1 {"md5": "1e8310708646875bcff8a849563a7b72", "pid": "A013218412", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013218412", "source": "RERO"}], "preferred_name": "Geschichts- und Altertumsverein (Göppingen)", "authorized_access_point": "Geschichts- und Altertumsverein (Göppingen)"} 1 +2024-09-11 09:07:12.248988 2024-09-11 09:07:12.248992 bebc8938-f7d1-4d08-9990-1dad01edf3a8 {"md5": "e1e86a4479465563b9b8f2b438ec1ba7", "pid": "A013222117", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013222117", "source": "RERO"}], "preferred_name": "Hanser, Richard", "authorized_access_point": "Hanser, Richard"} 1 +2024-09-11 09:07:12.301116 2024-09-11 09:07:12.301119 7c8321aa-ee72-45f2-a16a-00cd11f140d0 {"md5": "e05692755d0bd675b8983640dbb1d74f", "pid": "A013234989", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013234989", "source": "RERO"}], "preferred_name": "Sale, Nathalie", "authorized_access_point": "Sale, Nathalie"} 1 +2024-09-11 09:07:12.353377 2024-09-11 09:07:12.353381 d4c5f842-cdd0-4382-9808-2acf45327f5d {"md5": "1dc9a48dc1692b29950e6a8e2ae7fe68", "pid": "A013238298", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013238298", "source": "RERO"}], "preferred_name": "Lépaulart, Nicolas", "authorized_access_point": "Lépaulart, Nicolas"} 1 +2024-09-11 09:07:12.405657 2024-09-11 09:07:12.405664 a5acf1c7-8eea-4f18-9413-2efed35db35f {"md5": "9f76db9ac8c725d91c2237e47395e629", "pid": "A013254669", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013254669", "source": "RERO"}], "preferred_name": "Université Mohammed V (Rabat). Département de sciences économiques et sociales. Colloque (1997 :", "authorized_access_point": "Université Mohammed V (Rabat). Département de sciences économiques et sociales. Colloque (1997 : Rabat)"} 1 +2024-09-11 09:07:12.46361 2024-09-11 09:07:12.463614 030240c8-f0bc-4600-8c21-bbc82564d6bc {"md5": "524c75990c97cf8f6540c72d77dc1d8e", "pid": "A013254904", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013254904", "source": "RERO"}], "preferred_name": "North American Conference on Muslim Evangelization (1978 :", "authorized_access_point": "North American Conference on Muslim Evangelization (1978 : Colorado Springs)"} 1 +2024-09-11 09:07:12.51346 2024-09-11 09:07:12.513465 1bbbbed1-100d-4545-9948-da0b8d3f19d9 {"md5": "88e6aa341da44706a9cb94ca576b2279", "pid": "A013264678", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013264678", "source": "RERO"}], "preferred_name": "Petrotchenko, Olessia", "authorized_access_point": "Petrotchenko, Olessia"} 1 +2024-09-11 09:07:12.568204 2024-09-11 09:07:12.568209 9bd7a18c-ad6f-42d2-96f2-55fe774d153a {"md5": "68fd37ac5c82602c52d5b6d4688aedbc", "pid": "A013278476", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013278476", "source": "RERO"}], "preferred_name": "Vrecken, Paul van der", "authorized_access_point": "Vrecken, Paul van der"} 1 +2024-09-11 09:07:12.62832 2024-09-11 09:07:12.628324 f685ff0b-1d93-4ba0-8e74-1febb2fda193 {"md5": "d95a649d607c9e5dc6248c15099da22b", "pid": "A013288987", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013288987", "source": "RERO"}], "preferred_name": "Blatz, Heinrich", "authorized_access_point": "Blatz, Heinrich"} 1 +2024-09-11 09:07:12.686152 2024-09-11 09:07:12.686158 a2e66049-8881-408b-9858-c0ae0797fa8c {"md5": "8cc80a286d8f69b0a2333e2a7da28697", "pid": "A013298285", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "comte de Hollande et roi des Romains", "numeration": "II", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013298285", "source": "RERO"}], "preferred_name": "Guillaume II, comte de Hollande et roi des Romains", "authorized_access_point": "Guillaume II, comte de Hollande et roi des Romains"} 1 +2024-09-11 09:07:12.737904 2024-09-11 09:07:12.737909 1c2611f6-2cf2-4214-b323-c66f891d3671 {"md5": "3a1b2e67e037fd5cfbfe6392c0f3e399", "pid": "A013325785", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013325785", "source": "RERO"}], "preferred_name": "Chodkiewicz, Kazimierz", "authorized_access_point": "Chodkiewicz, Kazimierz"} 1 +2024-09-11 09:07:12.789446 2024-09-11 09:07:12.78945 ebf2e0be-8416-4a2c-bcf7-3a0f4332b956 {"md5": "1ede575329984a9765da70b178e5bcd9", "pid": "A013328589", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013328589", "source": "RERO"}], "preferred_name": "Congrès de soins palliatifs pédiatriques 2001 :", "authorized_access_point": "Congrès de soins palliatifs pédiatriques (1 : 2001 : Montréal)"} 1 +2024-09-11 09:07:12.841219 2024-09-11 09:07:12.841222 cf818d8f-eb54-4e7b-be76-2cb9058c18dc {"md5": "896c7d67a0cbf48ec82d4f5492450f03", "pid": "A013346407", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013346407", "source": "RERO"}], "preferred_name": "Topf, Helmut", "authorized_access_point": "Topf, Helmut"} 1 +2024-09-11 09:07:12.89619 2024-09-11 09:07:12.896194 109e31d8-b2f3-4fde-b282-2c947683fee0 {"md5": "864581dbe986bee61e5db6721eefddf7", "pid": "A013388531", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013388531", "source": "RERO"}], "preferred_name": "Florentz, Didier", "authorized_access_point": "Florentz, Didier"} 1 +2024-09-11 09:07:12.951959 2024-09-11 09:07:12.951961 1b1f9664-d1fb-4eeb-b44e-cf58d3867200 {"md5": "bf3a9de0262df9df4ee2654a2277e217", "pid": "A013395525", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013395525", "source": "RERO"}], "preferred_name": "Espace Mont-Blanc. Comité de pilotage Schéma de développement durable", "authorized_access_point": "Espace Mont-Blanc. Comité de pilotage Schéma de développement durable"} 1 +2024-09-11 09:07:13.007657 2024-09-11 09:07:13.007663 087595b4-607e-41f9-9e89-76a9ce78d4f8 {"md5": "12b0795227de17bef6754862e480ab56", "pid": "A013406985", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013406985", "source": "RERO"}], "preferred_name": "Durieu, Jacques", "authorized_access_point": "Durieu, Jacques"} 1 +2024-09-11 09:07:13.060136 2024-09-11 09:07:13.06014 63399b11-5704-4f9c-9963-25fc704cbe22 {"md5": "4276c4829a1031da7a40151cbaed5bb6", "pid": "A013436592", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013436592", "source": "RERO"}], "preferred_name": "Mattes, Larry J", "authorized_access_point": "Mattes, Larry J"} 1 +2024-09-11 09:07:13.117942 2024-09-11 09:07:13.117946 59198332-1a80-4062-bc5b-d1b005090137 {"md5": "7e3bfca9759e8b532c31253a52b145c9", "pid": "A013461986", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013461986", "source": "RERO"}], "preferred_name": "Międzyuczelniany Opozycyjny Ruch Studencki (Polska)", "authorized_access_point": "Międzyuczelniany Opozycyjny Ruch Studencki (Polska)"} 1 +2024-09-11 09:07:13.170081 2024-09-11 09:07:13.170088 2d644bd3-8f6e-461d-b434-d4bc3bffb551 {"md5": "f409d1b021901290f7e88ad742f99c11", "pid": "A013469717", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013469717", "source": "RERO"}], "date_of_birth": "1812", "date_of_death": "1886", "preferred_name": "Andrews, Stephen Pearl,", "authorized_access_point": "Andrews, Stephen Pearl, 1812-1886"} 1 +2024-09-11 09:07:13.223235 2024-09-11 09:07:13.223239 72d230b7-3039-4281-aa9f-89b01bcdfadc {"md5": "2251f980939b08a14256f07e404df7e4", "pid": "A013472806", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013472806", "source": "RERO"}], "preferred_name": "Gröne, Wilhelm", "authorized_access_point": "Gröne, Wilhelm"} 1 +2024-09-11 09:07:13.273611 2024-09-11 09:07:13.273615 8fb3bcad-e0f5-470f-9b19-9561315a1906 {"md5": "03b88e52b3d3f3765467c338b3e7fc6d", "pid": "A013486130", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013486130", "source": "RERO"}], "variant_name": ["Elperin, Juri"], "preferred_name": "Elperin, I︠U︡riĭ", "variant_access_point": ["Elperin, Juri"], "authorized_access_point": "Elperin, I︠U︡riĭ"} 1 +2024-09-11 09:07:13.328584 2024-09-11 09:07:13.328587 fcad57dc-a034-4c0d-8c5f-23bf598e21d9 {"md5": "ddf5e6fb0b89ddc91c557d3bb560fdcb", "pid": "A013491491", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013491491", "source": "RERO"}], "variant_name": ["Gorčakova, A"], "preferred_name": "Gorchakova, A", "variant_access_point": ["Gorčakova, A"], "parallel_access_point": ["Горчакова, А"], "authorized_access_point": "Gorchakova, A"} 1 +2024-09-11 09:07:13.378911 2024-09-11 09:07:13.378914 4ed9cedb-7833-4d03-8d28-a6d81694bfec {"md5": "ca5df0c47e65b93803c1095885f5c38f", "pid": "A013496961", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013496961", "source": "RERO"}], "variant_name": ["Ǧawhari, ʿAbdel-ʿAzīz"], "preferred_name": "Jawharī, ʿAbd al-ʿAzīz", "variant_access_point": ["Ǧawhari, ʿAbdel-ʿAzīz"], "parallel_access_point": ["جوهري، عبد العزيز"], "authorized_access_point": "Jawharī, ʿAbd al-ʿAzīz"} 1 +2024-09-11 09:07:13.432275 2024-09-11 09:07:13.432278 915c14fd-64e0-4371-966b-c48d066ba6f7 {"md5": "f012d31cb228633c26ebbba2362e3f4f", "pid": "A013498494", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013498494", "source": "RERO"}], "variant_name": ["Melʹvilʹ, Jurij Konstantinovič"], "preferred_name": "Melʹvilʹ, I︠U︡riĭ Konstantinovich", "variant_access_point": ["Melʹvilʹ, Jurij Konstantinovič"], "parallel_access_point": ["Мельвиль, Юрий Константинович"], "authorized_access_point": "Melʹvilʹ, I︠U︡riĭ Konstantinovich"} 1 +2024-09-11 09:07:13.489873 2024-09-11 09:07:13.489877 621e0e60-c80c-456f-970b-4fc893b70fff {"md5": "1afa5c1a614f9d048dab1fcb14c1e4a9", "pid": "A013503465", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013503465", "source": "RERO"}], "variant_name": ["Russkoe entomologičeskoe obščestvo"], "preferred_name": "Russkoe entomologicheskoe obshchestvo", "variant_access_point": ["Russkoe entomologičeskoe obščestvo"], "parallel_access_point": ["Русское энтомологическое общество"], "authorized_access_point": "Russkoe entomologicheskoe obshchestvo"} 1 +2024-09-11 09:07:13.557388 2024-09-11 09:07:13.557393 6d9c5f75-9666-4ac3-8522-adeb3ec86bf8 {"md5": "468af1e28c6d0427a9e70d856f45390e", "pid": "A013503508", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013503508", "source": "RERO"}], "variant_name": ["Žalinskij, Al'fred Ėrnestovič"], "preferred_name": "Zhalinskiĭ, Alʹfred Ėrnestovich", "variant_access_point": ["Žalinskij, Al'fred Ėrnestovič"], "parallel_access_point": ["Жалинский, Альфред Эрнестович"], "authorized_access_point": "Zhalinskiĭ, Alʹfred Ėrnestovich"} 1 +2024-09-11 09:07:13.613534 2024-09-11 09:07:13.613538 532027b7-129b-42ac-8e70-3c2af1848e9f {"md5": "8186dc2ede4d19d19a804c47b06a0879", "pid": "A013505068", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013505068", "source": "RERO"}], "variant_name": ["Maljakov, Lev Ivanovič"], "preferred_name": "Mali︠a︡kov, Lev Ivanovich", "variant_access_point": ["Maljakov, Lev Ivanovič"], "parallel_access_point": ["Маляков, Лев Иванович"], "authorized_access_point": "Mali︠a︡kov, Lev Ivanovich"} 1 +2024-09-11 09:07:13.664375 2024-09-11 09:07:13.664378 84d85b13-366a-45c1-bc2b-338e3b817dfd {"md5": "e1d9c2fcfb3294a2ddcb896765ea713d", "pid": "A013505146", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013505146", "source": "RERO"}], "variant_name": ["Spi̲lio̲táki̲s, K.K"], "preferred_name": "Spēliōtakēs, K.K", "variant_access_point": ["Spi̲lio̲táki̲s, K.K"], "parallel_access_point": ["Σπηλιωτάκης, Κ.Κ"], "authorized_access_point": "Spēliōtakēs, K.K"} 1 +2024-09-11 09:07:13.728237 2024-09-11 09:07:13.728242 facd04b3-b2cf-480e-b0d8-1b67e7a2d1ab {"md5": "ff4874ff8ea32a68176bc2f364336157", "pid": "A013505439", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013505439", "source": "RERO"}], "variant_name": ["Vardomackij, Andrej Petrovič"], "preferred_name": "Vardomat︠s︡kiĭ, Andreĭ Petrovich", "variant_access_point": ["Vardomackij, Andrej Petrovič"], "parallel_access_point": ["Вардомацкий, Андрей Петрович"], "authorized_access_point": "Vardomat︠s︡kiĭ, Andreĭ Petrovich"} 1 +2024-09-11 09:07:13.779584 2024-09-11 09:07:13.779588 152bd1db-1221-4c7a-8f52-381486ea3168 {"md5": "24339e02cf1d41adcbf0326cf56139bf", "pid": "A013506588", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013506588", "source": "RERO"}], "variant_name": ["Hāšim, ʿAbd-al-Hādī,"], "date_of_birth": "1913", "preferred_name": "Hāshim, ʿAbd al-Hādī,", "variant_access_point": ["Hāšim, ʿAbd-al-Hādī, 1913-"], "parallel_access_point": ["هاشم، عبد الهادي، 1913-"], "authorized_access_point": "Hāshim, ʿAbd al-Hādī, 1913-"} 1 +2024-09-11 09:07:13.833649 2024-09-11 09:07:13.833654 81bb5ba5-770a-4d2c-9141-221a1d4822a6 {"md5": "121a95ca657619550910874f19558039", "pid": "A013518111", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013518111", "source": "RERO"}], "variant_name": ["Imperatorskoe Kavkazskoe Medicinskoe Obščestvo"], "preferred_name": "Imperatorskoe Kavkazskoe Medit︠s︡inskoe Obshchestvo", "variant_access_point": ["Imperatorskoe Kavkazskoe Medicinskoe Obščestvo"], "parallel_access_point": ["Императорское Кавказское Медицинское Общество"], "authorized_access_point": "Imperatorskoe Kavkazskoe Medit︠s︡inskoe Obshchestvo"} 1 +2024-09-11 09:07:13.889719 2024-09-11 09:07:13.889723 45e58104-e50a-41be-b61b-6208fc49dc88 {"md5": "6c62ea148f983ea33ac5ea3300bc8d66", "pid": "A013519314", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013519314", "source": "RERO"}], "variant_name": ["Ėlkin, Anatolij Sergeevič"], "preferred_name": "Ėlkin, Anatoliĭ Sergeevich", "variant_access_point": ["Ėlkin, Anatolij Sergeevič"], "parallel_access_point": ["Элкин, Анатолий Сергеевич"], "authorized_access_point": "Ėlkin, Anatoliĭ Sergeevich"} 1 +2024-09-11 09:07:13.941829 2024-09-11 09:07:13.941833 356584c4-ddcf-430a-ba54-4245930d9f3b {"md5": "34b592076ffd6e57ee8c1485303af14c", "pid": "A013521342", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013521342", "source": "RERO"}], "variant_name": ["RSFSR (Rossijskaja Sovetskaja Federativnaja Socialističeskaja Respublika). Juridičeskaja komissija soveta ministrov", "I︠U︡ridicheskai︠a︡ komissii︠a︡ pri Sovete Ministrov RSFSR", "RSFSR (Rossijskaja Sovetskaja Federativnaja Socialističeskaja Respublika). Sovet Ministrov. I︠U︡ridicheskai︠a︡ komissii︠a︡"], "preferred_name": "RSFSR (Rossiĭskai︠a︡ Sovetskai︠a︡ Federativnai︠a︡ Sot︠s︡ialisticheskai︠a︡ Respublika). I︠U︡ridicheskai︠a︡ komissii︠a︡", "variant_access_point": ["RSFSR (Rossijskaja Sovetskaja Federativnaja Socialističeskaja Respublika). Juridičeskaja komissija soveta ministrov", "I︠U︡ridicheskai︠a︡ komissii︠a︡ pri Sovete Ministrov RSFSR", "RSFSR (Rossijskaja Sovetskaja Federativnaja Socialističeskaja Respublika). Sovet Ministrov. I︠U︡ridicheskai︠a︡ komissii︠a︡"], "parallel_access_point": ["РСФСР (Российская Советская Федеративная Социалистическая Республика). Юридическая комиссия"], "authorized_access_point": "RSFSR (Rossiĭskai︠a︡ Sovetskai︠a︡ Federativnai︠a︡ Sot︠s︡ialisticheskai︠a︡ Respublika). I︠U︡ridicheskai︠a︡ komissii︠a︡"} 1 +2024-09-11 09:07:13.99659 2024-09-11 09:07:13.996592 8de55062-af68-455e-a000-043028eedcd8 {"md5": "10762c7318955c40325d1dfa0f505d8d", "pid": "A013544891", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013544891", "source": "RERO"}], "preferred_name": "Ruvinskiĭ, Leonid Izotovich", "parallel_access_point": ["Рувинский, Леонид Изотович"], "authorized_access_point": "Ruvinskiĭ, Leonid Izotovich"} 1 +2024-09-11 09:07:14.053749 2024-09-11 09:07:14.053752 83ba824b-3d51-4b0a-b168-f5b733e53427 {"md5": "b6948ada8cbc74efe7491e2ff109c146", "pid": "A013552965", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013552965", "source": "RERO"}], "preferred_name": "Internationales Kolloquium zur Wörterbuchforschung 2002 :", "authorized_access_point": "Internationales Kolloquium zur Wörterbuchforschung (2 : 2002 : Sofia)"} 1 +2024-09-11 09:07:14.107809 2024-09-11 09:07:14.107814 ac0c691d-beb9-4da2-a46a-70ef31f414f9 {"md5": "c55ebf5444549539eca960b783c94d78", "pid": "A013553997", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013553997", "source": "RERO"}], "preferred_name": "Lovey, Romaine", "authorized_access_point": "Lovey, Romaine"} 1 +2024-09-11 09:07:14.160095 2024-09-11 09:07:14.160099 d3a9d8e4-3123-4a6f-94f4-e444bc3895e8 {"md5": "f6eaff5ff22fc99db59abfdb232388dd", "pid": "A013583535", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013583535", "source": "RERO"}], "preferred_name": "Hayward, Joseph", "authorized_access_point": "Hayward, Joseph"} 1 +2024-09-11 09:07:14.224983 2024-09-11 09:07:14.224988 7ac85b29-0066-47f1-bf2f-527bc739d081 {"md5": "c316fc568f01497cdaf401beb94aecc4", "pid": "A013585039", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013585039", "source": "RERO"}], "preferred_name": "Klefsjö, Bengt", "authorized_access_point": "Klefsjö, Bengt"} 1 +2024-09-11 09:07:14.283782 2024-09-11 09:07:14.283786 a45c0498-6b12-4737-922a-b5fd2ba9c698 {"md5": "99db200ab6c685a909a7550915854bec", "pid": "A013595086", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "juriste", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013595086", "source": "RERO"}], "preferred_name": "Buck, Christian, juriste", "authorized_access_point": "Buck, Christian, juriste"} 1 +2024-09-11 09:07:14.33614 2024-09-11 09:07:14.336145 3d0c30de-65c3-41da-96f3-4d9d94266bcb {"md5": "da17c3a60b912c4566635eaa831855b2", "pid": "A013595372", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013595372", "source": "RERO"}], "variant_name": ["Museo di Casa Romei"], "preferred_name": "Casa Romei", "variant_access_point": ["Museo di Casa Romei"], "authorized_access_point": "Casa Romei"} 1 +2024-09-11 09:07:14.396214 2024-09-11 09:07:14.396218 4d56ce4e-f185-47ae-948b-9145b778e331 {"md5": "35e2c207dd85237646f07156ed0a59fe", "pid": "A013621306", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013621306", "source": "RERO"}], "preferred_name": "Colloque national de magnétisme (1957 :", "authorized_access_point": "Colloque national de magnétisme (1957 : Strasbourg)"} 1 +2024-09-11 09:07:14.45089 2024-09-11 09:07:14.450894 6a8c221a-4d04-47c6-a0d6-a36bf91ebd65 {"md5": "ecd30b5e47a0a3a80f6ba8e80ed2f04a", "pid": "A013627680", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013627680", "source": "RERO"}], "preferred_name": "Beardsall, Jeffery F", "authorized_access_point": "Beardsall, Jeffery F"} 1 +2024-09-11 09:07:14.514605 2024-09-11 09:07:14.514609 38c19713-5ab6-4f2e-85e2-f81538e637fb {"md5": "9caee76e3e2c2769593d82ecde32540f", "pid": "A013629529", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013629529", "source": "RERO"}], "preferred_name": "Schnegg, Céline", "authorized_access_point": "Schnegg, Céline"} 1 +2024-09-11 09:07:14.571387 2024-09-11 09:07:14.571392 20b2ba21-baac-48e6-b59b-1ed0f2475412 {"md5": "f3e9ddde96e636de67fcf1c86cfe52c4", "pid": "A013654911", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013654911", "source": "RERO"}], "preferred_name": "Museum of Mediterranean Archaeology (Nir Daṿid, Israel)", "authorized_access_point": "Museum of Mediterranean Archaeology (Nir Daṿid, Israel)"} 1 +2024-09-11 09:07:14.667488 2024-09-11 09:07:14.667494 1175bbdc-dbdf-4092-9147-d0bfd06632f1 {"md5": "efdd88a28b68a7b6de92132c24198333", "pid": "A013663807", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013663807", "source": "RERO"}], "preferred_name": "Deklin", "authorized_access_point": "Deklin"} 1 +2024-09-11 09:07:14.775064 2024-09-11 09:07:14.775069 c2f91a95-a173-40e7-b4ba-8165b0f9335f {"md5": "67cb217d92250234e29f629877e3f63e", "pid": "A013675118", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013675118", "source": "RERO"}], "preferred_name": "Østergaard, Kim", "authorized_access_point": "Østergaard, Kim"} 1 +2024-09-11 09:07:14.827017 2024-09-11 09:07:14.827022 e619e4be-54cf-4100-8cc7-9aeff5cda280 {"md5": "c161acf17dc3fb79c745b789a76b45e4", "pid": "A013683105", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013683105", "source": "RERO"}], "preferred_name": "Laue, Thomas", "authorized_access_point": "Laue, Thomas"} 1 +2024-09-11 09:07:14.879357 2024-09-11 09:07:14.879361 550b3b1d-1422-4086-b33a-f5b8a1fa1bb7 {"md5": "8b787e3a77083d81868411798968324b", "pid": "A013688478", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013688478", "source": "RERO"}], "preferred_name": "Rencontres de décembre (La Chaux-de-Fonds)", "authorized_access_point": "Rencontres de décembre (La Chaux-de-Fonds)"} 1 +2024-09-11 09:07:14.940492 2024-09-11 09:07:14.940496 3b15829c-74c8-4ebb-89bc-d1a4b5770800 {"md5": "e8cbdedda2d660f34adec14f38c89267", "pid": "A013706277", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013706277", "source": "RERO"}], "preferred_name": "Kilcher, Jules", "authorized_access_point": "Kilcher, Jules"} 1 +2024-09-11 09:07:15.007386 2024-09-11 09:07:15.007393 87cc8d7d-0be5-4305-95be-fa6180fed257 {"md5": "5c54b13143955a16fa072441e31b34d6", "pid": "A013720765", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013720765", "source": "RERO"}], "preferred_name": "Deutsche Gesellschaft für die Vereinten Nationen. Gesundheitskommission", "authorized_access_point": "Deutsche Gesellschaft für die Vereinten Nationen. Gesundheitskommission"} 1 +2024-09-11 09:07:15.061465 2024-09-11 09:07:15.061469 180ab2f9-ade2-4473-8872-25e6b4eee7fe {"md5": "1e45597ea59d18f8b7598c575496a30f", "pid": "A013753495", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013753495", "source": "RERO"}], "preferred_name": "Bogdan-Verger, Olimpia", "authorized_access_point": "Bogdan-Verger, Olimpia"} 1 +2024-09-11 09:07:15.231436 2024-09-11 09:07:15.231438 f5f7bc57-6423-47b2-a841-aa04f6e96bac {"md5": "516ee7a4346545b545a0bb230dbbe5e8", "pid": "A013786026", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013786026", "source": "RERO"}], "preferred_name": "Blaser, Céline", "authorized_access_point": "Blaser, Céline"} 1 +2024-09-11 09:07:15.288151 2024-09-11 09:07:15.288155 502d9528-0f7b-4088-951f-76905d3881ef {"md5": "97c28c67f8dc6bae4cd703305527d51c", "pid": "A013793627", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013793627", "source": "RERO"}], "preferred_name": "Catterini, Robert", "authorized_access_point": "Catterini, Robert"} 1 +2024-09-11 09:07:15.346133 2024-09-11 09:07:15.346137 cd5844a7-a398-4877-8abe-d318fd08bd3e {"md5": "edeea83b730213cf3c90da87ce81c328", "pid": "A013796408", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013796408", "source": "RERO"}], "preferred_name": "Simmen, Denise", "authorized_access_point": "Simmen, Denise"} 1 +2024-09-11 09:07:15.408361 2024-09-11 09:07:15.408366 c80d059f-9c0e-4c95-b8b7-997250cfc025 {"md5": "8cb7d255bf2297761219288c07a2c49c", "pid": "A013815334", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013815334", "source": "RERO"}], "preferred_name": "Lim-Hing, Sharon", "authorized_access_point": "Lim-Hing, Sharon"} 1 +2024-09-11 09:07:15.463592 2024-09-11 09:07:15.463595 152c2f10-bab2-4ae7-a9f4-8230c4b35180 {"md5": "2e2c4de5a79e9ac1b61ab10d6c6e6860", "pid": "A013839708", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013839708", "source": "RERO"}], "preferred_name": "Marburger Universitätsbund", "authorized_access_point": "Marburger Universitätsbund"} 1 +2024-09-11 09:07:15.51896 2024-09-11 09:07:15.518964 6e30da6c-2473-49bc-b28d-56e380d93c77 {"md5": "636c092c447c28daa5efbf9b7347bc29", "pid": "A013851171", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013851171", "source": "RERO"}], "preferred_name": "Kantirea, Maria", "authorized_access_point": "Kantirea, Maria"} 1 +2024-09-11 09:07:15.580147 2024-09-11 09:07:15.580153 6abbbee7-68c5-4602-bbcd-aeed803f6182 {"md5": "f22dd94cfc0bb5070d63860d8555af1f", "pid": "A013863028", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013863028", "source": "RERO"}], "preferred_name": "Hoult, Nicholas", "authorized_access_point": "Hoult, Nicholas"} 1 +2024-09-11 09:07:15.646929 2024-09-11 09:07:15.646934 0a26d46e-4139-4044-9537-85ab86e69d36 {"md5": "bb832853b0eb7e7b8fe09c4cd6701ee3", "pid": "A013902798", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013902798", "source": "RERO"}], "preferred_name": "Symposium slavicum (1977 :", "authorized_access_point": "Symposium slavicum (1977 : Innsbruck)"} 1 +2024-09-11 09:07:15.712269 2024-09-11 09:07:15.712272 e68a865f-9460-42d8-89a1-65dbfec78455 {"md5": "304a9998d15955fb572162946b8dd1f0", "pid": "A013936998", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013936998", "source": "RERO"}], "preferred_name": "Piekut, Kazimierz", "authorized_access_point": "Piekut, Kazimierz"} 1 +2024-09-11 09:07:15.772284 2024-09-11 09:07:15.772287 b7f47f18-b070-4373-8f1a-507348260684 {"md5": "7c7a207f3ec8b6634dcf05375ad0524c", "pid": "A013939562", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013939562", "source": "RERO"}], "preferred_name": "Krzysko, Maria", "authorized_access_point": "Krzysko, Maria"} 1 +2024-09-11 09:07:15.831224 2024-09-11 09:07:15.831228 65998d98-059c-4d41-9821-700130e4894c {"md5": "efedfb519f4bec71d39786169fa1bef1", "pid": "A013941086", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013941086", "source": "RERO"}], "preferred_name": "Holt, Leslie E", "authorized_access_point": "Holt, Leslie E"} 1 +2024-09-11 09:07:15.901338 2024-09-11 09:07:15.901346 efbdc2e8-fa8d-4ffc-9225-725d6ef86d69 {"md5": "ae423bd63eaa293be3b0565854cbb96a", "pid": "A013948865", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013948865", "source": "RERO"}], "preferred_name": "Panas, Mario", "authorized_access_point": "Panas, Mario"} 1 +2024-09-11 09:07:15.982136 2024-09-11 09:07:15.98214 92f098b9-dbe6-40c2-bcdb-c5011a4c556d {"md5": "0f4032a0e83c128374741a257d4458ee", "pid": "A013952563", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013952563", "source": "RERO"}], "preferred_name": "Mintoume, Siméon Clotaire", "authorized_access_point": "Mintoume, Siméon Clotaire"} 1 +2024-09-11 09:07:16.049882 2024-09-11 09:07:16.04989 d8d30e6c-748f-4630-8504-11455d96ecef {"md5": "bec3deadb9d667efbcd6203897bf167b", "pid": "A013970354", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013970354", "source": "RERO"}], "preferred_name": "Weiglin, Paul", "authorized_access_point": "Weiglin, Paul"} 1 +2024-09-11 09:07:16.131759 2024-09-11 09:07:16.131763 20284c26-6c32-4b1e-ad02-1d52e62abbd9 {"md5": "ba0bd45abe56d977a59017b8bb207228", "pid": "A013986424", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013986424", "source": "RERO"}], "date_of_birth": "1924", "preferred_name": "Eckardt, H.,", "authorized_access_point": "Eckardt, H., 1924-"} 1 +2024-09-11 09:07:16.193007 2024-09-11 09:07:16.193012 b2917cd5-024d-4684-8285-b1f7700ab689 {"md5": "d5b81fafe4abcab18187406b0df9417b", "pid": "A013993183", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013993183", "source": "RERO"}], "preferred_name": "Barbi, Elisabetta", "authorized_access_point": "Barbi, Elisabetta"} 1 +2024-09-11 09:07:16.269602 2024-09-11 09:07:16.269607 712141e8-c64e-4367-bcbe-aaa4d232862a {"md5": "280fbb6e5a9536e01ec37e7b8e913778", "pid": "A013995035", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A013995035", "source": "RERO"}], "preferred_name": "Mackowitz, R", "authorized_access_point": "Mackowitz, R"} 1 +2024-09-11 09:07:16.32726 2024-09-11 09:07:16.327265 5aeeb360-774e-475f-a7d5-120c11a56d20 {"md5": "99e413455e8f3372c993012bb29163cd", "pid": "A014012002", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014012002", "source": "RERO"}], "preferred_name": "Giornata di studi bizantini 1992 :", "authorized_access_point": "Giornata di studi bizantini (02 : 1992 : Salerno)"} 1 +2024-09-11 09:07:16.379548 2024-09-11 09:07:16.379552 f7cc776e-dfaa-4255-a818-0478faf2d750 {"md5": "43c1dee87794af6f49c30bbe2c38a05f", "pid": "A014025587", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "directeur de Dixi S.A", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014025587", "source": "RERO"}], "preferred_name": "Castella, Paul, directeur de Dixi S.A", "authorized_access_point": "Castella, Paul, directeur de Dixi S.A"} 1 +2024-09-11 09:07:16.436525 2024-09-11 09:07:16.436529 dbbd53ee-298c-4bd1-a330-24b046b14042 {"md5": "42ea61f10cf9cf61fd37c9e38bdfef65", "pid": "A014026079", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014026079", "source": "RERO"}], "preferred_name": "Wiese, René", "authorized_access_point": "Wiese, René"} 1 +2024-09-11 09:07:16.506282 2024-09-11 09:07:16.506286 1fd38bcb-b374-488c-a586-7d15d099a2bc {"md5": "bace3426e6f740cd45c764034b65d509", "pid": "A014036096", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014036096", "source": "RERO"}], "preferred_name": "Bouteiller, Jérôme", "authorized_access_point": "Bouteiller, Jérôme"} 1 +2024-09-11 09:07:16.565959 2024-09-11 09:07:16.565963 fe7b82d5-4c55-445b-8301-dd2caa8cac57 {"md5": "4f22368a36106b946a29024e1a921bbc", "pid": "A014037717", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014037717", "source": "RERO"}], "preferred_name": "Lavelle, Patricia", "authorized_access_point": "Lavelle, Patricia"} 1 +2024-09-11 09:07:16.629668 2024-09-11 09:07:16.629672 b8c25128-a074-4327-94f1-6b06a0a56b6f {"md5": "605a99a7e236ba4f31d73e75d343bee0", "pid": "A014059339", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014059339", "source": "RERO"}], "preferred_name": "Encarnación, Omar G", "authorized_access_point": "Encarnación, Omar G"} 1 +2024-09-11 09:07:16.686024 2024-09-11 09:07:16.686029 c473b68d-f011-471a-8ae1-9eb2cdc34414 {"md5": "3cc9e9d78bc79793e369ed854c94ac9b", "pid": "A014065225", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014065225", "source": "RERO"}], "preferred_name": "Serventy, Dominic Louis", "authorized_access_point": "Serventy, Dominic Louis"} 1 +2024-09-11 09:07:16.757783 2024-09-11 09:07:16.757786 4567eff6-1621-4702-8ad6-88d12be53c34 {"md5": "0fba3adbb45255a6ebf5b8e9dff24558", "pid": "A014070967", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014070967", "source": "RERO"}], "preferred_name": "Betschart, Kurt", "authorized_access_point": "Betschart, Kurt"} 1 +2024-09-11 09:07:16.812113 2024-09-11 09:07:16.812116 cd722886-769d-4704-b71d-1e356c90a574 {"md5": "76aeb20b194aa17af5c42f50fc39c978", "pid": "A014074228", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014074228", "source": "RERO"}], "preferred_name": "Oratorio di San Ludovico (Venezia)", "authorized_access_point": "Oratorio di San Ludovico (Venezia)"} 1 +2024-09-11 09:07:16.866798 2024-09-11 09:07:16.866802 55f45fb7-a205-41a3-a7bd-f08cffd242a3 {"md5": "33f2a2ab54682efd26b5d5b873ddc03c", "pid": "A014087607", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014087607", "source": "RERO"}], "preferred_name": "Fronsac, Henri", "authorized_access_point": "Fronsac, Henri"} 1 +2024-09-11 09:07:16.928441 2024-09-11 09:07:16.928444 ed27ecc8-cb56-4c6a-8bbc-e2ad59a6f474 {"md5": "0d15f0e95d65ac620017d1ddb57e155e", "pid": "A014087918", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014087918", "source": "RERO"}], "preferred_name": "Biennale di Venezia 1938)", "authorized_access_point": "Biennale di Venezia (21 : 1938)"} 1 +2024-09-11 09:07:16.981864 2024-09-11 09:07:16.981868 a4dc682f-acc2-4805-afb9-44d19dbbb4f8 {"md5": "ac3bccc3ee491038901d7af5a4352761", "pid": "A014091750", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014091750", "source": "RERO"}], "date_of_birth": "1941", "preferred_name": "Novak, David,", "authorized_access_point": "Novak, David, 1941-"} 1 +2024-09-11 09:07:17.049815 2024-09-11 09:07:17.049818 02613d6d-cc27-4a39-8a4c-483b9cffb582 {"md5": "cdc6f19645bf91a4c6e9c847545b4e1b", "pid": "A014094375", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014094375", "source": "RERO"}], "variant_name": ["Morellet, abbé,", "A.M.,", "M.L.M.,", "M., M.L.,", "M., A.,"], "date_of_birth": "1727", "date_of_death": "1819", "preferred_name": "Morellet, André,", "variant_access_point": ["Morellet, abbé, 1727-1819", "A.M., 1727-1819", "M.L.M., 1727-1819", "M., M.L., 1727-1819", "M., A., 1727-1819"], "authorized_access_point": "Morellet, André, 1727-1819", "biographical_information": ["A aussi traduit de l'italien, de l'anglais et du latin en français. - Ecclésiastique. - Economiste. - Membre de l'Académie française (élu en 1785 et nommé en 1803)"]} 1 +2024-09-11 09:07:17.113199 2024-09-11 09:07:17.113203 4a69d739-19ca-4291-a00c-759475943be3 {"md5": "6802aedbbed5481517d9f28b3b83d1d6", "pid": "A014111148", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014111148", "source": "RERO"}], "preferred_name": "Martin, Gérard", "authorized_access_point": "Martin, Gérard"} 1 +2024-09-11 09:07:17.164354 2024-09-11 09:07:17.164357 f8342064-8f9e-4d3b-8836-888b642a23ea {"md5": "0689c4724d8f7477db7abd28273e46aa", "pid": "A014127767", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014127767", "source": "RERO"}], "preferred_name": "Dāsa, Vedavyāsa", "authorized_access_point": "Dāsa, Vedavyāsa"} 1 +2024-09-11 09:07:17.219508 2024-09-11 09:07:17.219512 ef8c72c5-1c96-4939-9bb8-fc0b969d1b14 {"md5": "d10d3f53c19354da326f50c8ae88dfec", "pid": "A014139981", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014139981", "source": "RERO"}], "preferred_name": "Sylvan, Robin", "authorized_access_point": "Sylvan, Robin"} 1 +2024-09-11 09:07:17.274977 2024-09-11 09:07:17.27498 6ebeba13-bd9b-4418-99b3-1eae31f8261f {"md5": "010058885396dcfb2da5fcebaecbd3f2", "pid": "A014145274", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014145274", "source": "RERO"}], "preferred_name": "Boireau-Tartarat, Suzanne", "authorized_access_point": "Boireau-Tartarat, Suzanne"} 1 +2024-09-11 09:07:17.329485 2024-09-11 09:07:17.32949 ca428326-967c-4ff6-936e-9fd6e2cd764b {"md5": "6b3630ada33200131a8c462d66f48780", "pid": "A014193528", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014193528", "source": "RERO"}], "preferred_name": "Sciboz, Jacqueline", "authorized_access_point": "Sciboz, Jacqueline"} 1 +2024-09-11 09:07:17.384691 2024-09-11 09:07:17.384695 da3d7798-269c-46ca-a5a9-12a6128b163d {"md5": "bbf5e7f0a732d88b2db6ccb013cc18b0", "pid": "A014201130", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014201130", "source": "RERO"}], "preferred_name": "Mavrommatis, Dimitri", "authorized_access_point": "Mavrommatis, Dimitri"} 1 +2024-09-11 09:07:17.457898 2024-09-11 09:07:17.457902 537a6d28-f656-44fd-869e-3ffcc33aceec {"md5": "b016030e3a651efbf3bd1136f6830dbf", "pid": "A014202551", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014202551", "source": "RERO"}], "preferred_name": "Museo Palazzo Venezia (Roma)", "authorized_access_point": "Museo Palazzo Venezia (Roma)"} 1 +2024-09-11 09:07:17.518933 2024-09-11 09:07:17.518937 8d8914cb-0422-4d51-b88c-fb1cd6d1be85 {"md5": "c1076e9a2de51d45d0c732246e52e1ff", "pid": "A014219231", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014219231", "source": "RERO"}], "variant_name": ["Australia. National Archives"], "preferred_name": "National Archives of Australia", "variant_access_point": ["Australia. National Archives"], "authorized_access_point": "National Archives of Australia", "biographical_information": ["Jusqu'en 1997 : Australian Archives", "Dès 1998 : National Archives of Australia"]} 1 +2024-09-11 09:07:17.574803 2024-09-11 09:07:17.574807 bdd2bdde-44f4-4eb2-bfef-852bb8ad1f62 {"md5": "5c0eee31e3966fbdf08c2494c1a15af6", "pid": "A014222396", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014222396", "source": "RERO"}], "variant_name": ["Neguine, Oleg"], "preferred_name": "Negin, Oleg", "variant_access_point": ["Neguine, Oleg"], "parallel_access_point": ["Негин, О"], "authorized_access_point": "Negin, Oleg"} 1 +2024-09-11 09:07:17.631819 2024-09-11 09:07:17.631823 277aa4d1-eaaf-4a4b-b636-586e08c81e90 {"md5": "f4e47a0a0e6c3217dbc3b55c2cbb2085", "pid": "A014224284", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014224284", "source": "RERO"}], "preferred_name": "Karp, Carol R", "authorized_access_point": "Karp, Carol R"} 1 +2024-09-11 09:07:17.687676 2024-09-11 09:07:17.687681 264fc94b-2b60-4fed-b849-86da4f6e810f {"md5": "a0b70e5c5c1212bb1ab2ef33b76eb8b7", "pid": "A014242112", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014242112", "source": "RERO"}], "preferred_name": "Rasmussen, Kenneth A", "authorized_access_point": "Rasmussen, Kenneth A"} 1 +2024-09-11 09:07:17.747455 2024-09-11 09:07:17.74746 4aceab48-1a7a-460b-8f2a-eecdecfb411c {"md5": "39572b7bcbd18dfd8c30de7b79c1b977", "pid": "A014246692", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014246692", "source": "RERO"}], "date_of_birth": "1957", "preferred_name": "Jolliet, Philippe,", "authorized_access_point": "Jolliet, Philippe, 1957-", "biographical_information": ["Dr sciences Univ. Fribourg Suisse 1987, chimiste"]} 1 +2024-09-11 09:07:17.807411 2024-09-11 09:07:17.807416 f32af1ec-ad70-478f-9152-37038a2efbc6 {"md5": "51ddd9c005174f069ce7938be83ba4f0", "pid": "A014251795", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014251795", "source": "RERO"}], "preferred_name": "Beerli, Debora", "authorized_access_point": "Beerli, Debora"} 1 +2024-09-11 09:07:17.880032 2024-09-11 09:07:17.880036 519b603e-6f32-4f99-a808-8ab0954d4b83 {"md5": "cfde716afb41b9a501adb79d04587c30", "pid": "A014255110", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014255110", "source": "RERO"}], "preferred_name": "Ewart, Ewa", "authorized_access_point": "Ewart, Ewa"} 1 +2024-09-11 09:07:17.940873 2024-09-11 09:07:17.940877 9fb684ee-1e2d-4401-8d98-21ef136a1bd0 {"md5": "67ec74d38eeb2f39c4a970cc73b80644", "pid": "A014258973", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014258973", "source": "RERO"}], "preferred_name": "Joye, Isabelle", "authorized_access_point": "Joye, Isabelle"} 1 +2024-09-11 09:07:18.002205 2024-09-11 09:07:18.002211 4f45d3b0-1a78-4576-990c-29fb3693fea8 {"md5": "d678adeed002a34951a1008ee53a971b", "pid": "A014273717", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014273717", "source": "RERO"}], "preferred_name": "Kummer, Jodok", "authorized_access_point": "Kummer, Jodok"} 1 +2024-09-11 09:07:18.061646 2024-09-11 09:07:18.06165 66103777-0125-4d3c-bd6c-354b9c5a5c45 {"md5": "29ec18ecaddda881b6c9dd8d1f8cd86f", "pid": "A014276779", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014276779", "source": "RERO"}], "preferred_name": "Cugliandro, Sabrina", "authorized_access_point": "Cugliandro, Sabrina"} 1 +2024-09-11 09:07:18.116521 2024-09-11 09:07:18.116527 93717d05-6a08-49e8-8cfd-0042a19ea701 {"md5": "699e35c4a62148d9b8c5857fb442dfaf", "pid": "A014313002", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014313002", "source": "RERO"}], "preferred_name": "Jonneret, Jean-Claude", "authorized_access_point": "Jonneret, Jean-Claude"} 1 +2024-09-11 09:07:18.174723 2024-09-11 09:07:18.174727 d6af2436-45ad-40ce-b97f-c1b0d8843f61 {"md5": "08239aa540e6f43764402a24a51d83ec", "pid": "A014336689", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014336689", "source": "RERO"}], "preferred_name": "Stutz, Roman", "authorized_access_point": "Stutz, Roman"} 1 +2024-09-11 09:07:18.228096 2024-09-11 09:07:18.2281 983225f1-c096-416e-913d-9e769c472f96 {"md5": "6f6a1dc318d97b7400d8be455c74595f", "pid": "A014337377", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014337377", "source": "RERO"}], "preferred_name": "Clavien, Raymond", "authorized_access_point": "Clavien, Raymond"} 1 +2024-09-11 09:07:19.133747 2024-09-11 09:07:19.13375 3915050f-01b5-40f7-afd1-246d8e3231f8 {"md5": "3ef950c5f5039a5a3759e44564ec977d", "pid": "A016482621", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016482621", "source": "RERO"}], "date_of_birth": "1746", "date_of_death": "1790", "preferred_name": "Salomon, Ernst Dietrich,", "authorized_access_point": "Salomon, Ernst Dietrich, 1746-1790"} 1 +2024-09-11 09:07:19.188203 2024-09-11 09:07:19.188206 0577f5f4-a1cb-4e74-bde3-301988664e67 {"md5": "6e0a397e2b1d794e02a03891ce49fc02", "pid": "A016484771", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016484771", "source": "RERO"}], "date_of_birth": "1965", "preferred_name": "Gibson, Kevin,", "authorized_access_point": "Gibson, Kevin, 1965-"} 1 +2024-09-11 09:07:18.282684 2024-09-11 09:07:18.28269 66796057-68ee-410f-8c6f-300e0de0a27e {"md5": "6f66ab52788ac1ce6b62b8e7a9dc0bd1", "pid": "A014352979", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014352979", "source": "RERO"}], "variant_name": ["Service national de la catéchèse et du catéchuménat (France)", "SNCC (Service national de la catéchèse et du catéchuménat)", "Service national du catéchuménat (France)"], "preferred_name": "Ecclesia catholica. Conférence épiscopale française. Service national de la catéchèse et du catéchuménat", "variant_access_point": ["Service national de la catéchèse et du catéchuménat (France)", "SNCC (Service national de la catéchèse et du catéchuménat)", "Service national du catéchuménat (France)"], "authorized_access_point": "Ecclesia catholica. Conférence épiscopale française. Service national de la catéchèse et du catéchuménat", "biographical_information": ["Avant 2007: Centre national de l'enseignement religieux (France)"]} 1 +2024-09-11 09:07:18.337983 2024-09-11 09:07:18.337986 ec372d06-4adf-43b6-93f0-96be0323b37e {"md5": "b86f93f0e9aedc16be4e95fbc04b6ea6", "pid": "A014357923", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A014357923", "source": "RERO"}], "preferred_name": "Nielsen, Søren B", "authorized_access_point": "Nielsen, Søren B"} 1 +2024-09-11 09:07:18.389895 2024-09-11 09:07:18.389899 91f70f15-fa10-48d0-ad8d-6f5be12fd19a {"md5": "142bebc54da12277a98f57a95f7a5881", "pid": "A016238365", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016238365", "source": "RERO"}], "preferred_name": "Božić, Ivan", "authorized_access_point": "Božić, Ivan"} 1 +2024-09-11 09:07:18.445928 2024-09-11 09:07:18.44593 485eb108-11ac-468e-82d6-15a64255a926 {"md5": "dc675cab955ea2628a024d4e3725d447", "pid": "A016298786", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016298786", "source": "RERO"}], "preferred_name": "Comparative Labour Law Seminar 2008 :", "authorized_access_point": "Comparative Labour Law Seminar (9 : 2008 : Tokyo)"} 1 +2024-09-11 09:07:18.511126 2024-09-11 09:07:18.51113 7d591edb-1af0-4c73-be01-af88ee7a0093 {"md5": "5f4bfeaeb0fce39e57c5c4ce5b9d8033", "pid": "A016303136", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016303136", "source": "RERO"}], "preferred_name": "Cleasson, Urban", "authorized_access_point": "Cleasson, Urban"} 1 +2024-09-11 09:07:18.57642 2024-09-11 09:07:18.576425 bd8dfb96-fadc-4f7b-ad2d-f147322b0d9a {"md5": "2834efb29d05fb1137fe2d2cfbe3471e", "pid": "A016318307", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016318307", "source": "RERO"}], "preferred_name": "Martinez, René", "authorized_access_point": "Martinez, René"} 1 +2024-09-11 09:07:18.638168 2024-09-11 09:07:18.638172 0829999d-57d0-46ea-8371-680aacd36540 {"md5": "6c0d87dbfcfb36acef1dafca2484ccb9", "pid": "A016389042", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "traducteur", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016389042", "source": "RERO"}], "variant_name": ["Grimaldi, Joseph, traducteur"], "preferred_name": "Grenier, Jean, traducteur", "variant_access_point": ["Grimaldi, Joseph, traducteur"], "authorized_access_point": "Grenier, Jean, traducteur", "biographical_information": ["Joseph Grimaldi est le pseudonyme utilisé par Jean Grenier (18??-19??) pour la traduction du poème \\"Le chant du voleur d'amour / Bilhana\\". Traduit du sanscrit en français (en 1923 ou 1924), il a été publié dans la revue des \\"Cahiers du Sud\\" (en 1945)"]} 1 +2024-09-11 09:07:18.694109 2024-09-11 09:07:18.694113 38b912b3-3375-4be3-8e69-85b7361687f1 {"md5": "8049c9b4a83407d4d45baad046a66818", "pid": "A016404123", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016404123", "source": "RERO"}], "preferred_name": "Réseau académique de droit pénal européen. Colloque international (2007 :", "authorized_access_point": "Réseau académique de droit pénal européen. Colloque international (2007 : Luxembourg)"} 1 +2024-09-11 09:07:18.747025 2024-09-11 09:07:18.74703 429e6eb2-998a-4009-85d6-f94b035ae638 {"md5": "1d7e216bb93ce6eaf0d064372299e95a", "pid": "A016411096", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016411096", "source": "RERO"}], "preferred_name": "Chojnacka, Halina", "authorized_access_point": "Chojnacka, Halina"} 1 +2024-09-11 09:07:18.805245 2024-09-11 09:07:18.805249 309b15df-2899-4917-9961-18bec5b39fc6 {"md5": "5a94aab2109bc9c851a671cc43b1cc7c", "pid": "A016415566", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016415566", "source": "RERO"}], "preferred_name": "Melin, Pierre", "authorized_access_point": "Melin, Pierre"} 1 +2024-09-11 09:07:18.867429 2024-09-11 09:07:18.867434 4cd10bfc-a19a-4e39-a2f1-c5addd6c1614 {"md5": "ebea438d457cd9927098c6ea2edeac63", "pid": "A016426300", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016426300", "source": "RERO"}], "preferred_name": "Berthon, Mélanie", "authorized_access_point": "Berthon, Mélanie"} 1 +2024-09-11 09:07:18.919462 2024-09-11 09:07:18.919465 44737135-10f5-4ac5-a1bf-6a5c81f47e4c {"md5": "6084e22a310b55c5435e7c89e6b6bf04", "pid": "A016444932", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016444932", "source": "RERO"}], "variant_name": ["De Oliveira, Haydée Torres", "Torres de Oliveira, Haydée"], "preferred_name": "Oliveira, Haydée Torres de", "variant_access_point": ["De Oliveira, Haydée Torres", "Torres de Oliveira, Haydée"], "authorized_access_point": "Oliveira, Haydée Torres de"} 1 +2024-09-11 09:07:18.974149 2024-09-11 09:07:18.974153 d896d6a2-a65e-4f20-ac5a-4c6e486740a1 {"md5": "cda7fc188c7eb65704622b8d18d2b506", "pid": "A016459229", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016459229", "source": "RERO"}], "preferred_name": "Darné, Txell", "authorized_access_point": "Darné, Txell"} 1 +2024-09-11 09:07:19.02709 2024-09-11 09:07:19.027094 4e9d593a-442e-4258-9b32-d9bc18d359ee {"md5": "aa9edc7370665954abe466d679784a73", "pid": "A016459550", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016459550", "source": "RERO"}], "preferred_name": "Sledge, Ginger", "authorized_access_point": "Sledge, Ginger"} 1 +2024-09-11 09:07:19.082103 2024-09-11 09:07:19.082108 b43450d9-f6d8-4bd9-9c49-c9629d832fde {"md5": "32d998d9090c0f14dc5a80466cf0dae1", "pid": "A016477477", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016477477", "source": "RERO"}], "preferred_name": "Lamaud, P", "authorized_access_point": "Lamaud, P"} 1 +2024-09-11 09:07:19.24642 2024-09-11 09:07:19.246424 84e98993-4a97-4814-bb96-c46340b60b2c {"md5": "cc486ad42db93fded8a5317cc5911236", "pid": "A016506102", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016506102", "source": "RERO"}], "preferred_name": "Renner, Heinrich", "authorized_access_point": "Renner, Heinrich"} 1 +2024-09-11 09:07:19.29809 2024-09-11 09:07:19.298093 0993d1bd-0179-4170-8d62-4cedf31ac24e {"md5": "76ea25545c0bfdc35858a746f3828498", "pid": "A016511435", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016511435", "source": "RERO"}], "preferred_name": "Dreuilh, J. J", "authorized_access_point": "Dreuilh, J. J"} 1 +2024-09-11 09:07:19.351146 2024-09-11 09:07:19.351151 f0209122-9b6c-4122-a3b5-17e08af69e7a {"md5": "c3f84833b974432bcf0d14dc4239c600", "pid": "A016513981", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016513981", "source": "RERO"}], "preferred_name": "Weber, Renaud", "authorized_access_point": "Weber, Renaud"} 1 +2024-09-11 09:07:19.416089 2024-09-11 09:07:19.416094 0a890f51-b48b-469a-9ffe-3d240084a5e7 {"md5": "5818d78f8e15f5c687756441972e57aa", "pid": "A016514568", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016514568", "source": "RERO"}], "preferred_name": "Derrick, G.H", "authorized_access_point": "Derrick, G.H"} 1 +2024-09-11 09:07:19.47449 2024-09-11 09:07:19.474494 5acfcd9a-7024-4f93-a2e1-36245e12e658 {"md5": "7ebbfb1c775c0bf0f82748c2a472b51a", "pid": "A016521212", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016521212", "source": "RERO"}], "preferred_name": "Byun, Ok-kyung", "authorized_access_point": "Byun, Ok-kyung"} 1 +2024-09-11 09:07:19.528885 2024-09-11 09:07:19.528889 e782ed11-a6d6-4262-8618-3ce9fa68b744 {"md5": "eabeef654759db42a72b11a719a24821", "pid": "A016528677", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016528677", "source": "RERO"}], "preferred_name": "Université de Paris 1. Département d'ergonomie et d'écologie humaine. Séminaire annuel (2004 :", "authorized_access_point": "Université de Paris 1. Département d'ergonomie et d'écologie humaine. Séminaire annuel (2004 : Paris)"} 1 +2024-09-11 09:07:19.581918 2024-09-11 09:07:19.581922 23117e43-293f-4d07-b99d-fefd91c8d3b8 {"md5": "0face982016b4f63a0bf57ce8930f99a", "pid": "A016535988", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016535988", "source": "RERO"}], "preferred_name": "Prohens Oliver, Tomeu", "authorized_access_point": "Prohens Oliver, Tomeu"} 1 +2024-09-11 09:07:19.643185 2024-09-11 09:07:19.643191 4d696b53-b57a-4407-909a-93a2716f66bc {"md5": "ecdf98b5810371d939d79b8a34c4bec4", "pid": "A016548812", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016548812", "source": "RERO"}], "date_of_birth": "1944", "preferred_name": "Bödiker, Tonio,", "authorized_access_point": "Bödiker, Tonio, 1944-"} 1 +2024-09-11 09:07:19.701875 2024-09-11 09:07:19.701881 b4385986-ba8c-44b5-a784-48bdb6b6287c {"md5": "6a40513ca66c14d44a18b8127cedd2fe", "pid": "A016550065", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016550065", "source": "RERO"}], "preferred_name": "Universidade de Coimbra. Centro do Estudos de Direito do Ordenamento, do Urbanismo e do Ambiente", "authorized_access_point": "Universidade de Coimbra. Centro do Estudos de Direito do Ordenamento, do Urbanismo e do Ambiente"} 1 +2024-09-11 09:07:19.757863 2024-09-11 09:07:19.757867 c8b0b064-29e2-422b-9890-31e6c6f300d9 {"md5": "e1c81cdb75eb8a46114e146b817df786", "pid": "A016568873", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016568873", "source": "RERO"}], "preferred_name": "Stony Brook Human Evolution Symposium and Workhop 2006 :", "authorized_access_point": "Stony Brook Human Evolution Symposium and Workhop (3 : 2006 : Stony Brook, NY)"} 1 +2024-09-11 09:07:19.853254 2024-09-11 09:07:19.85326 ea1835d5-7f85-4ff2-b5a7-e8d57ca67666 {"md5": "1ab79352592b154d8d36aa93c76976fd", "pid": "A016604176", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016604176", "source": "RERO"}], "preferred_name": "Simulation. International Symposium and Course (1975 :", "authorized_access_point": "Simulation. International Symposium and Course (1975 : Zürich)"} 1 +2024-09-11 09:07:19.911077 2024-09-11 09:07:19.911082 16334e47-17c1-4426-af41-170b6a4bd507 {"md5": "67857ae8189a07d34aef8dbcd5d26c45", "pid": "A016614032", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "juriste", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016614032", "source": "RERO"}], "preferred_name": "Piel, Jean, juriste", "authorized_access_point": "Piel, Jean, juriste"} 1 +2024-09-11 09:07:19.963729 2024-09-11 09:07:19.963733 484a3c1e-7448-4b8a-92dd-797dd0ab17b2 {"md5": "502602d82b476a43e2189040d3d720bb", "pid": "A016637978", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016637978", "source": "RERO"}], "preferred_name": "Gletting, John", "authorized_access_point": "Gletting, John"} 1 +2024-09-11 09:07:20.018114 2024-09-11 09:07:20.018119 34a76e79-4211-46f2-98fb-9c8cd22becb4 {"md5": "28ea9f7aa0ad0d99218ce44745580014", "pid": "A016638657", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016638657", "source": "RERO"}], "preferred_name": "Trieux, Florent", "authorized_access_point": "Trieux, Florent"} 1 +2024-09-11 09:07:20.073917 2024-09-11 09:07:20.073922 b354d43c-f087-4e77-bc3a-f40012f8deec {"md5": "9f99c301d8cd60c6af1e264f15dfca6b", "pid": "A016638677", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016638677", "source": "RERO"}], "preferred_name": "Kreuzer, A", "authorized_access_point": "Kreuzer, A"} 1 +2024-09-11 09:07:20.135531 2024-09-11 09:07:20.135533 8671cb58-3707-43d4-969a-87844250ba8f {"md5": "6712b7103cfd5ef322581b125b2429d7", "pid": "A016651275", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016651275", "source": "RERO"}], "preferred_name": "Chavannes, André", "authorized_access_point": "Chavannes, André"} 1 +2024-09-11 09:07:20.190594 2024-09-11 09:07:20.190597 d80aabc0-4226-4d31-a5db-c70daa79a42a {"md5": "7a422b346c2225c37af76f9c2054f7f1", "pid": "A016655749", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016655749", "source": "RERO"}], "preferred_name": "Duerrenberger, J", "authorized_access_point": "Duerrenberger, J"} 1 +2024-09-11 09:07:20.259087 2024-09-11 09:07:20.259092 50d65514-ba72-4236-828c-33be2bd75904 {"md5": "83b21334e630593b94990bb3cbc91c2d", "pid": "A016666286", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016666286", "source": "RERO"}], "preferred_name": "Theytaz, Patrice", "authorized_access_point": "Theytaz, Patrice"} 1 +2024-09-11 09:07:20.315263 2024-09-11 09:07:20.315267 fe5b3abb-f87e-4672-ab59-cb19f928d737 {"md5": "168394ffa501ced88bc71d12aef21692", "pid": "A016675995", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016675995", "source": "RERO"}], "preferred_name": "Universidad Miguel Hernández (San Juan de Alicante). Facultad de Medicina", "authorized_access_point": "Universidad Miguel Hernández (San Juan de Alicante). Facultad de Medicina"} 1 +2024-09-11 09:07:20.374836 2024-09-11 09:07:20.37484 9f38a8df-22bc-4b0f-a3d3-a1340dfa4e52 {"md5": "dfd5733e55f15095093c78705fa7ecfb", "pid": "A016678629", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016678629", "source": "RERO"}], "variant_name": ["Hjarl Petersen, Jane"], "preferred_name": "Petersen, Jane Hjarl", "variant_access_point": ["Hjarl Petersen, Jane"], "authorized_access_point": "Petersen, Jane Hjarl", "biographical_information": ["Archéologue danoise"]} 1 +2024-09-11 09:07:20.448181 2024-09-11 09:07:20.448185 7ba60ab1-ee8e-4721-8c5a-0fce47cad638 {"md5": "0c473ba70baecfe59a47a0b3cdc3c6d3", "pid": "A016688565", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016688565", "source": "RERO"}], "preferred_name": "Truong, Doan-Nhien", "authorized_access_point": "Truong, Doan-Nhien"} 1 +2024-09-11 09:07:20.507095 2024-09-11 09:07:20.5071 0cdf800b-0c23-4817-9d43-5e07532806dd {"md5": "58485cf03bc3cb4c7784d825d34cf6c1", "pid": "A016697578", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016697578", "source": "RERO"}], "preferred_name": "Société française pour le droit international. Colloque 2008 :", "authorized_access_point": "Société française pour le droit international. Colloque (42 : 2008 : Bruxelles)"} 1 +2024-09-11 09:07:20.567469 2024-09-11 09:07:20.567474 8054236b-a0a6-4d32-b4b5-b533e2bd0b89 {"md5": "2d283151456a65c206c7a411646410b0", "pid": "A016697664", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016697664", "source": "RERO"}], "preferred_name": "Australian Institute of Archaeology", "authorized_access_point": "Australian Institute of Archaeology"} 1 +2024-09-11 09:07:20.624955 2024-09-11 09:07:20.62496 c646c4e5-ac48-4081-a110-2d0faba76be6 {"md5": "96d93191815c37125cdcf5fcffb1d494", "pid": "A016744040", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016744040", "source": "RERO"}], "variant_name": ["AEEF (Association europeenne pour les études francophones)"], "preferred_name": "Association europeenne pour les études francophones", "variant_access_point": ["AEEF (Association europeenne pour les études francophones)"], "authorized_access_point": "Association europeenne pour les études francophones"} 1 +2024-09-11 09:07:20.682873 2024-09-11 09:07:20.682879 da5c9df4-6e5e-49f0-b706-799cf3d0c8d1 {"md5": "d4133b18183978387a2cdd479a400a11", "pid": "A016755736", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016755736", "source": "RERO"}], "preferred_name": "Hoadley, John", "authorized_access_point": "Hoadley, John"} 1 +2024-09-11 09:07:20.736282 2024-09-11 09:07:20.736287 47e1df1f-48ce-4058-96a1-3627f230ca83 {"md5": "8bb72a14697c673f7cb9972a575acf0a", "pid": "A016768352", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "musicien", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016768352", "source": "RERO"}], "preferred_name": "Patry, André J., musicien", "authorized_access_point": "Patry, André J., musicien"} 1 +2024-09-11 09:07:20.7969 2024-09-11 09:07:20.796903 f8c63c5d-9bd2-4d61-aff2-048575453e05 {"md5": "d3c300ba5820eff18f7a5761dd9b6fba", "pid": "A016787995", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016787995", "source": "RERO"}], "date_of_birth": "1953", "preferred_name": "Nykänen, Harri,", "authorized_access_point": "Nykänen, Harri, 1953-"} 1 +2024-09-11 09:07:20.859278 2024-09-11 09:07:20.859283 ee41712b-9e27-450a-ab2a-66efd62812e9 {"md5": "c8a9212d5f9d675c6d9571c8d2185baa", "pid": "A016799486", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016799486", "source": "RERO"}], "preferred_name": "Sedley, Liz", "authorized_access_point": "Sedley, Liz"} 1 +2024-09-11 09:07:20.921104 2024-09-11 09:07:20.921107 91ccdedf-e24f-46ec-8315-48749793e346 {"md5": "a3852653a19f362bd7f642e984a272c5", "pid": "A016809743", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016809743", "source": "RERO"}], "preferred_name": "Università di Padova. Dipartimento di archeologia", "authorized_access_point": "Università di Padova. Dipartimento di archeologia"} 1 +2024-09-11 09:07:20.979286 2024-09-11 09:07:20.979289 97ba6de8-e8ec-4a17-a409-7fcdbd59d0b3 {"md5": "782266a04c411c24d2f40bfb430ef1f6", "pid": "A016813599", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016813599", "source": "RERO"}], "preferred_name": "Thum, Oliver", "authorized_access_point": "Thum, Oliver"} 1 +2024-09-11 09:07:21.036448 2024-09-11 09:07:21.036453 2385708e-7398-4d36-9e43-75ac3e270bd8 {"md5": "d1967470fe64383f93f6baec23d269ff", "pid": "A016814681", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016814681", "source": "RERO"}], "preferred_name": "Zuazua, R", "authorized_access_point": "Zuazua, R"} 1 +2024-09-11 09:07:21.109826 2024-09-11 09:07:21.10983 c1d36f4e-2bf8-4506-8085-e8efda42a800 {"md5": "e78f50d5c50628b43b243669b4d649d0", "pid": "A016816789", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016816789", "source": "RERO"}], "preferred_name": "Lekhina, Ekaterina", "authorized_access_point": "Lekhina, Ekaterina"} 1 +2024-09-11 09:07:21.179655 2024-09-11 09:07:21.179659 36c15720-0822-4299-bba9-ef713f346413 {"md5": "7f17553e900f20d94da8e77068db803e", "pid": "A016818796", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016818796", "source": "RERO"}], "preferred_name": "Lacour, Henri", "authorized_access_point": "Lacour, Henri"} 1 +2024-09-11 09:07:21.233206 2024-09-11 09:07:21.233211 39d0a131-e3d0-4c25-9819-e28b7330160a {"md5": "b3ab0e2cce6cc94f19f472830ad7ccea", "pid": "A016841342", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016841342", "source": "RERO"}], "preferred_name": "Fanguin, Daniel", "authorized_access_point": "Fanguin, Daniel"} 1 +2024-09-11 09:07:21.291903 2024-09-11 09:07:21.291908 6f20658a-95ee-430f-8722-def98663744f {"md5": "e9a784af1e3f69028dc6da7dbdc89f09", "pid": "A016871460", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016871460", "source": "RERO"}], "variant_name": ["MacDonnell, Thomas Michael", "Mc Donnell, Thomas Michael", "Mac Donnell, Thomas Michael"], "preferred_name": "McDonnell, Thomas Michael", "variant_access_point": ["MacDonnell, Thomas Michael", "Mc Donnell, Thomas Michael", "Mac Donnell, Thomas Michael"], "authorized_access_point": "McDonnell, Thomas Michael"} 1 +2024-09-11 09:07:21.357083 2024-09-11 09:07:21.357087 9cab3124-3d43-46e1-ac5e-d0275db2b613 {"md5": "2fb75a57f3145d27452e1a828940d18a", "pid": "A016877431", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016877431", "source": "RERO"}], "preferred_name": "International Conference on Electron Spectroscopy (1974 :", "authorized_access_point": "International Conference on Electron Spectroscopy (1974 : Namur)"} 1 +2024-09-11 09:07:21.407933 2024-09-11 09:07:21.407937 f3c201f5-874a-4e8e-95ad-c8564a075799 {"md5": "a1250170a1dae137df084717c7572eab", "pid": "A016969116", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016969116", "source": "RERO"}], "variant_name": ["Institut für Politikwissenschaft (Sankt Gallen : 1995-)"], "preferred_name": "Universität (Sankt Gallen). Institut für Politikwissenschaft", "variant_access_point": ["Institut für Politikwissenschaft (Sankt Gallen : 1995-)"], "authorized_access_point": "Universität (Sankt Gallen). Institut für Politikwissenschaft", "biographical_information": ["Dès le 1er octobre 1995: Universität St. Gallen. Institut für Politikwissenschaft", "De 1989 à septembre 1995 : Hochschule Sankt Gallen für Wirtschafts-, Rechts- und Sozialwissenschaften. Institut für Politikwissenschaft"]} 1 +2024-09-11 09:07:21.462423 2024-09-11 09:07:21.462428 865e8d11-64ea-48a7-8623-386ef6035d96 {"md5": "b6bd23c9cdae46e026057ce7cb474d20", "pid": "A016972683", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A016972683", "source": "RERO"}], "variant_name": ["Bischoffshausen, Albrecht Schmidt-", "Schmidt-Bischoffshausen, Albrecht"], "preferred_name": "Bischoffshausen, Albrecht", "variant_access_point": ["Bischoffshausen, Albrecht Schmidt-", "Schmidt-Bischoffshausen, Albrecht"], "authorized_access_point": "Bischoffshausen, Albrecht"} 1 +2024-09-11 09:07:21.515094 2024-09-11 09:07:21.515099 924cbdfa-dd71-4fbe-9e30-72c7664d5c17 {"md5": "64b6eb0b295922fa9993c516337ded17", "pid": "A017020235", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017020235", "source": "RERO"}], "preferred_name": "Pedriali, Alessandra", "authorized_access_point": "Pedriali, Alessandra"} 1 +2024-09-11 09:07:21.57024 2024-09-11 09:07:21.570242 20af53b9-3459-4b60-8995-e8ea41463f1c {"md5": "1177a1183691707c34ae99b84ecc361d", "pid": "A017025989", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017025989", "source": "RERO"}], "preferred_name": "Lieber, C", "authorized_access_point": "Lieber, C"} 1 +2024-09-11 09:07:21.625015 2024-09-11 09:07:21.625018 d6deb5f7-2a11-443f-ad66-8b6602afe3fa {"md5": "6b6d05e2ca5749e622a82b07df57c35a", "pid": "A017057870", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017057870", "source": "RERO"}], "preferred_name": "Krasny, A", "authorized_access_point": "Krasny, A"} 1 +2024-09-11 09:07:21.677075 2024-09-11 09:07:21.677079 299dce0a-f509-4eab-8552-c06714628209 {"md5": "2a49bd2b2cf29b098a3aeb40d8d18875", "pid": "A017097186", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017097186", "source": "RERO"}], "preferred_name": "Eherechtskommission des deutschen Rates für internationales Privatrecht", "authorized_access_point": "Eherechtskommission des deutschen Rates für internationales Privatrecht"} 1 +2024-09-11 09:07:21.736907 2024-09-11 09:07:21.736913 5dfa16b0-0c94-42bd-9daa-4999e5c848db {"md5": "9520493778c5ca20f7f6a56e9d26ad89", "pid": "A017122036", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017122036", "source": "RERO"}], "preferred_name": "Ridruejo, Jose Antonio Paster", "authorized_access_point": "Ridruejo, Jose Antonio Paster"} 1 +2024-09-11 09:07:21.792192 2024-09-11 09:07:21.792194 f357332f-ab71-46ad-bc29-b8e6c7cd81e0 {"md5": "1faced457b5eadadaf9bdc839c644960", "pid": "A017130152", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017130152", "source": "RERO"}], "preferred_name": "Wündisch, Sebastian", "authorized_access_point": "Wündisch, Sebastian"} 1 +2024-09-11 09:07:21.84448 2024-09-11 09:07:21.844485 1c0a5296-1bcb-4416-81fb-15e481ac4dca {"md5": "7d54f7cd8397cad5c859bcedbd80fa2e", "pid": "A017132207", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017132207", "source": "RERO"}], "preferred_name": "Schildmann, Dirk", "authorized_access_point": "Schildmann, Dirk"} 1 +2024-09-11 09:07:21.89743 2024-09-11 09:07:21.897433 366be754-61dc-4357-b08f-8cee1792d93b {"md5": "7df175e8a80eb124d6b2dbb018cc0a37", "pid": "A017139224", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017139224", "source": "RERO"}], "preferred_name": "Göben, Jens", "authorized_access_point": "Göben, Jens"} 1 +2024-09-11 09:07:21.948311 2024-09-11 09:07:21.948316 e61d8ac4-9dfa-4ec7-ba7f-41614c93a612 {"md5": "e7c712a2644a31ca85eb1d4a1176402e", "pid": "A017158101", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017158101", "source": "RERO"}], "preferred_name": "Naciri, Khaled", "authorized_access_point": "Naciri, Khaled"} 1 +2024-09-11 09:07:22.008399 2024-09-11 09:07:22.008403 74cbd0d7-77c2-4fb5-9613-198621a82173 {"md5": "7a54956b4d42d025987e1fc0e1f61c77", "pid": "A017173033", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017173033", "source": "RERO"}], "preferred_name": "Hungerbühler, Ivo", "authorized_access_point": "Hungerbühler, Ivo"} 1 +2024-09-11 09:07:22.06808 2024-09-11 09:07:22.068084 69daea18-a48e-4fef-8828-15d75cd40b5c {"md5": "b1776f02520d75e6710ce256e4a64e41", "pid": "A017178153", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017178153", "source": "RERO"}], "preferred_name": "Buff, Christoph", "authorized_access_point": "Buff, Christoph"} 1 +2024-09-11 09:07:22.130392 2024-09-11 09:07:22.130395 3316384b-d0a5-4cfc-9ee1-2ca891adeba4 {"md5": "554cb4a0b58a3dea29842120216b23c9", "pid": "A017187491", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017187491", "source": "RERO"}], "preferred_name": "Kleinhenz, Barbara", "authorized_access_point": "Kleinhenz, Barbara"} 1 +2024-09-11 09:07:22.187635 2024-09-11 09:07:22.18764 6f53c7d0-334c-495b-89d8-1063d2bde946 {"md5": "d6228c7fcfafeeace864bc39718223f6", "pid": "A017202523", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017202523", "source": "RERO"}], "preferred_name": "Baker Röben, Betsy", "authorized_access_point": "Baker Röben, Betsy"} 1 +2024-09-11 09:07:22.239799 2024-09-11 09:07:22.239803 6fb53561-5fd9-4348-9eb9-71158452a534 {"md5": "90f5eed262ce7b37c6327beda1c7332b", "pid": "A017237082", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017237082", "source": "RERO"}], "preferred_name": "Jafferali, Rafaël", "authorized_access_point": "Jafferali, Rafaël"} 1 +2024-09-11 09:07:22.292227 2024-09-11 09:07:22.292231 114617cc-c173-42c7-ac1b-241f5d882798 {"md5": "be4ba8eb6de2154d894a7d2d8689be18", "pid": "A017314321", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017314321", "source": "RERO"}], "preferred_name": "Le Charpentier, Etienne", "authorized_access_point": "Le Charpentier, Etienne"} 1 +2024-09-11 09:07:22.345753 2024-09-11 09:07:22.345758 d0e557c9-a6d1-497c-9495-d34a8d849f7a {"md5": "1f52f263a2409eee8f26dcc82be0ce77", "pid": "A017326126", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017326126", "source": "RERO"}], "preferred_name": "Subba Rao, N.S", "authorized_access_point": "Subba Rao, N.S"} 1 +2024-09-11 09:07:22.438482 2024-09-11 09:07:22.438488 57afdfc1-9f9a-4aa3-9e90-6323ceaf7eb9 {"md5": "9e2b70f824df21c8f1246eb3529259cb", "pid": "A017377907", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017377907", "source": "RERO"}], "preferred_name": "Centre de recherche historique sur les sociétés et cultures de l'Ouest. Journée d'études (2005 :", "authorized_access_point": "Centre de recherche historique sur les sociétés et cultures de l'Ouest. Journée d'études (2005 : Rennes)"} 1 +2024-09-11 09:07:22.511685 2024-09-11 09:07:22.51169 7b384b55-34af-4e15-beb6-a0d43d4502bf {"md5": "eea235eee86cb9d933f62a50ea778d85", "pid": "A017383534", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017383534", "source": "RERO"}], "preferred_name": "Ming-Yuet, Kee", "authorized_access_point": "Ming-Yuet, Kee"} 1 +2024-09-11 09:07:22.581101 2024-09-11 09:07:22.581107 79492f72-fd7e-4031-b149-ec44c8312407 {"md5": "e755bb0a0af9fd19f0f7cf34b5cb3271", "pid": "A017410230", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017410230", "source": "RERO"}], "preferred_name": "Meyer, Kuno", "authorized_access_point": "Meyer, Kuno"} 1 +2024-09-11 09:07:22.64718 2024-09-11 09:07:22.647184 af801d88-46e2-47e2-a063-4f5a0a63be31 {"md5": "06c87a5346639ec1cb13d43f2e31389b", "pid": "A017429783", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017429783", "source": "RERO"}], "preferred_name": "Jolliet, Florence", "authorized_access_point": "Jolliet, Florence"} 1 +2024-09-11 09:07:22.697165 2024-09-11 09:07:22.697168 abef1608-fc0c-4cd9-b4a7-2ea2555e5014 {"md5": "9a26af8cdfb151e54d5b428685efc825", "pid": "A017435658", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017435658", "source": "RERO"}], "preferred_name": "Gabathuler, Chloé", "authorized_access_point": "Gabathuler, Chloé"} 1 +2024-09-11 09:07:22.76101 2024-09-11 09:07:22.761014 fa756ed9-d946-4e3c-8d21-040670fcd227 {"md5": "31af77b08c406d0c92b4dbc2349f8224", "pid": "A017451803", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017451803", "source": "RERO"}], "preferred_name": "Masutti, Christophe", "authorized_access_point": "Masutti, Christophe"} 1 +2024-09-11 09:07:22.814369 2024-09-11 09:07:22.814374 af599227-2dd1-4039-9f7f-60ecfbb76ff6 {"md5": "7c3757f56faee5a0a58f32cadc1b0fe3", "pid": "A017458456", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017458456", "source": "RERO"}], "preferred_name": "Surraco, Oscar", "authorized_access_point": "Surraco, Oscar"} 1 +2024-09-11 09:07:22.871324 2024-09-11 09:07:22.871328 e67ed0c7-5d23-40f4-b7cd-5e18e0a86341 {"md5": "4947f5b967a2b8d7dc0b746333f6ca40", "pid": "A017468446", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017468446", "source": "RERO"}], "preferred_name": "Meyer, Susanna", "authorized_access_point": "Meyer, Susanna"} 1 +2024-09-11 09:07:22.934154 2024-09-11 09:07:22.934159 24d11d1a-5506-483c-9ad6-fd1a9d04d654 {"md5": "31c94605fadb202cb2681b0f54550a56", "pid": "A017513975", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "scénariste", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017513975", "source": "RERO"}], "preferred_name": "Martin, Rainer, scénariste", "authorized_access_point": "Martin, Rainer, scénariste"} 1 +2024-09-11 09:07:22.990615 2024-09-11 09:07:22.990619 c361e780-3b0e-4bec-8caa-800cf4a69e0c {"md5": "7bfa7dae0b17667f3b01465c1413bf0a", "pid": "A017556608", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "(de Tyr sainte)", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017556608", "source": "RERO"}], "variant_name": ["Christina (de Bolsena ; sainte)", "Christine (de Bolsena ; sainte)"], "preferred_name": "Christine (de Tyr ; sainte)", "variant_access_point": ["Christina (de Bolsena ; sainte)", "Christine (de Bolsena ; sainte)"], "authorized_access_point": "Christine (de Tyr ; sainte)", "biographical_information": ["Dates de vie: 3e s. (fin) - 4e s. (début)"]} 1 +2024-09-11 09:07:23.973873 2024-09-11 09:07:23.973877 0fbdac5c-c480-44c9-aaff-10c6abbca2db {"md5": "05ad9e05e83ba798163a7db590963016", "pid": "A017762299", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017762299", "source": "RERO"}], "preferred_name": "Centre de recherche de l'éducation spécialisée et de l'adaptation scolaire (Paris)", "authorized_access_point": "Centre de recherche de l'éducation spécialisée et de l'adaptation scolaire (Paris)"} 1 +2024-09-11 09:07:23.050498 2024-09-11 09:07:23.050504 9159985e-93a4-4420-b0c8-1f14d9cea3a5 {"md5": "6eae69f93740aec4346258e403c181ea", "pid": "A017565309", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017565309", "source": "RERO"}], "variant_name": ["Abraham, Ernst A.,"], "date_of_birth": "1906", "preferred_name": "Abraham, Ernst August,", "variant_access_point": ["Abraham, Ernst A., 1906-"], "authorized_access_point": "Abraham, Ernst August, 1906-", "biographical_information": ["Economiste"]} 1 +2024-09-11 09:07:23.118922 2024-09-11 09:07:23.118927 8ad2b49c-3e45-416b-be0f-82c55153576e {"md5": "f015f8a7e25eaa3773408d2fcae823a0", "pid": "A017572454", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017572454", "source": "RERO"}], "preferred_name": "Zhongguo ren quan fa zhan ji jin hui", "parallel_access_point": ["中国人权发展基金会"], "authorized_access_point": "Zhongguo ren quan fa zhan ji jin hui"} 1 +2024-09-11 09:07:23.178244 2024-09-11 09:07:23.178249 14024e24-be8e-4741-b696-d9fb8ba6630d {"md5": "7b0cb8347f2e4b85039a9c0472a36d60", "pid": "A017578807", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017578807", "source": "RERO"}], "preferred_name": "Kreibig, Sylvia Dagmar", "authorized_access_point": "Kreibig, Sylvia Dagmar"} 1 +2024-09-11 09:07:23.230276 2024-09-11 09:07:23.230279 b84ca29a-d586-418d-89aa-7d27390874a7 {"md5": "537caa5c488cb23041d2c2dece192c20", "pid": "A017581317", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017581317", "source": "RERO"}], "preferred_name": "Conférence intercantonale de l'instruction publique de la Suisse romande et du Tessin. Délégation à la langue française de Suisse romande", "authorized_access_point": "Conférence intercantonale de l'instruction publique de la Suisse romande et du Tessin. Délégation à la langue française de Suisse romande"} 1 +2024-09-11 09:07:23.283587 2024-09-11 09:07:23.283592 ff480b11-ac8e-495b-ba29-65750e0f87c5 {"md5": "6d44b8a48f00b99cf6af8ed65066f2af", "pid": "A017594651", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017594651", "source": "RERO"}], "preferred_name": "Zufferey, Ernest", "authorized_access_point": "Zufferey, Ernest"} 1 +2024-09-11 09:07:23.339888 2024-09-11 09:07:23.339893 804f2601-67b3-472c-8297-73fe16894c2e {"md5": "e074a9787328014b5d226b436220ff21", "pid": "A017596294", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017596294", "source": "RERO"}], "preferred_name": "Vouillamoz, Aline", "authorized_access_point": "Vouillamoz, Aline"} 1 +2024-09-11 09:07:23.390007 2024-09-11 09:07:23.390011 2dd37b82-be7f-49e7-9065-56870363b980 {"md5": "b67d7ea9489e9341e65163a5f6f161ef", "pid": "A017602316", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017602316", "source": "RERO"}], "preferred_name": "Plancke, Véronique van der", "authorized_access_point": "Plancke, Véronique van der"} 1 +2024-09-11 09:07:23.441969 2024-09-11 09:07:23.441972 39a38024-d24c-40d2-9555-fd3e880adb0e {"md5": "8789c775fb7a440745e31a943be5a9c8", "pid": "A017611108", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017611108", "source": "RERO"}], "preferred_name": "Katholischer Filmkreis Zürich", "authorized_access_point": "Katholischer Filmkreis Zürich"} 1 +2024-09-11 09:07:23.494376 2024-09-11 09:07:23.49438 fb0835e7-5a49-4a98-a554-c1e726926b8a {"md5": "f8c53c509f784fa980fce0c5a5b5ee17", "pid": "A017635757", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017635757", "source": "RERO"}], "preferred_name": "Müller, Arthur K", "authorized_access_point": "Müller, Arthur K"} 1 +2024-09-11 09:07:23.546889 2024-09-11 09:07:23.546893 333380c3-3912-4b20-b91b-efd2f370306e {"md5": "0dbd253ecbefc08beb81194adfc25b03", "pid": "A017650142", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017650142", "source": "RERO"}], "preferred_name": "Lauren, Jillian", "authorized_access_point": "Lauren, Jillian"} 1 +2024-09-11 09:07:23.639952 2024-09-11 09:07:23.639957 7ccd4196-f1fc-4ff3-8aff-d1f7f5249176 {"md5": "ef9ae10b035f4bf9578a2ed842640242", "pid": "A017676479", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "géologue", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017676479", "source": "RERO"}], "preferred_name": "Moix, Patrice, géologue", "authorized_access_point": "Moix, Patrice, géologue"} 1 +2024-09-11 09:07:23.695327 2024-09-11 09:07:23.695332 23dd0361-8b84-4200-a5fa-3c77ae62d894 {"md5": "2a40dc3f7f074219ebd09cc53492a4ee", "pid": "A017678297", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017678297", "source": "RERO"}], "preferred_name": "Atorf, Walter", "authorized_access_point": "Atorf, Walter"} 1 +2024-09-11 09:07:23.752313 2024-09-11 09:07:23.752316 b64928db-b001-4ed1-b71f-33f4ab9d3ad3 {"md5": "248131fc29557ef7a21f0046858b8619", "pid": "A017696857", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017696857", "source": "RERO"}], "preferred_name": "Laval, Roseline", "authorized_access_point": "Laval, Roseline"} 1 +2024-09-11 09:07:23.810254 2024-09-11 09:07:23.810258 48922a0a-981e-4398-8369-c9c97bdbdcf4 {"md5": "635a83efdf9bda7b289e8da7c09781d4", "pid": "A017737385", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017737385", "source": "RERO"}], "preferred_name": "Cuaz, Bruno", "authorized_access_point": "Cuaz, Bruno"} 1 +2024-09-11 09:07:23.865501 2024-09-11 09:07:23.865505 4841b5f3-1cf5-4eab-a8e3-f89ccec002c9 {"md5": "e7c226540d46da791508558a2b6df38e", "pid": "A017743945", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017743945", "source": "RERO"}], "preferred_name": "Allegheny College (Meadville)", "authorized_access_point": "Allegheny College (Meadville)"} 1 +2024-09-11 09:07:23.921375 2024-09-11 09:07:23.921379 f0c67d63-f206-4438-b418-ca4e78abd9f8 {"md5": "46a60b2cf366ce34476049e7e1004d9a", "pid": "A017761491", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017761491", "source": "RERO"}], "preferred_name": "Benjamin, A. Cornelius", "authorized_access_point": "Benjamin, A. Cornelius"} 1 +2024-09-11 09:07:24.02865 2024-09-11 09:07:24.028654 32bcdf20-ce09-4adb-83da-3d6ffe3794c7 {"md5": "b04385c9f32fffae71cceeaa977fe40d", "pid": "A017784112", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017784112", "source": "RERO"}], "preferred_name": "Furse, Raymond W", "authorized_access_point": "Furse, Raymond W"} 1 +2024-09-11 09:07:24.090953 2024-09-11 09:07:24.090957 86ddef91-b4ef-485c-8bde-347c05dd2488 {"md5": "6f86e89c1171ffaf35f64b01d8b4bce3", "pid": "A017798464", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017798464", "source": "RERO"}], "preferred_name": "Viet, Barbara", "authorized_access_point": "Viet, Barbara"} 1 +2024-09-11 09:07:24.146477 2024-09-11 09:07:24.146481 93d54d85-67eb-46a4-ad71-2c661c2de87b {"md5": "889d359e7d553c8a9ad292276c7a6302", "pid": "A017940250", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017940250", "source": "RERO"}], "preferred_name": "Conférence des Cours constitutionnelles européennes 1996 :", "authorized_access_point": "Conférence des Cours constitutionnelles européennes (10 : 1996 : Budapest)"} 1 +2024-09-11 09:07:24.198621 2024-09-11 09:07:24.198625 53fdd8a3-2ccd-4e5a-83e2-24e53a004e48 {"md5": "f76157d6e054d85b0810c619e5694f31", "pid": "A017944030", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017944030", "source": "RERO"}], "preferred_name": "Sandner, Henrike", "authorized_access_point": "Sandner, Henrike"} 1 +2024-09-11 09:07:24.264064 2024-09-11 09:07:24.264067 6e8f3fbe-9e68-49fe-8248-10ae91a284b3 {"md5": "9a99372decd21304f5776397486680e8", "pid": "A017944947", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "(fils)", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017944947", "source": "RERO"}], "preferred_name": "Jacot-Guillarmod, Simon-Pierre (fils)", "authorized_access_point": "Jacot-Guillarmod, Simon-Pierre (fils)", "biographical_information": ["Dates de vie: 1803-1824"]} 1 +2024-09-11 09:07:24.317343 2024-09-11 09:07:24.317348 3b748129-39ef-436c-ada4-5925bcab8ea1 {"md5": "167f7d244264fea0255f7d875b044ec2", "pid": "A017955463", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017955463", "source": "RERO"}], "preferred_name": "Paroisse (Vollèges : catholique-romaine)", "authorized_access_point": "Paroisse (Vollèges : catholique-romaine)"} 1 +2024-09-11 09:07:24.368834 2024-09-11 09:07:24.368839 ba2b20e7-b679-4a95-a770-0801f005e8bd {"md5": "e0fdfb0cfa296dcc5cc16a2d4de7a59a", "pid": "A017961866", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017961866", "source": "RERO"}], "preferred_name": "Kosolapov, B", "authorized_access_point": "Kosolapov, B"} 1 +2024-09-11 09:07:24.421704 2024-09-11 09:07:24.421707 0f0e2e0a-16da-4763-94e3-44262a0509cc {"md5": "40514d6cbcabe3f8783086c86f2f9d38", "pid": "A017970655", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017970655", "source": "RERO"}], "preferred_name": "Unteregger, Regula", "authorized_access_point": "Unteregger, Regula"} 1 +2024-09-11 09:07:24.476226 2024-09-11 09:07:24.47623 dfda99a3-0b64-44b1-9368-0fbe7603797f {"md5": "b4e5c5bf6c7d8a70f837141904d46dfa", "pid": "A017977912", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017977912", "source": "RERO"}], "preferred_name": "Bentancur Viglione, María Gabriela", "authorized_access_point": "Bentancur Viglione, María Gabriela"} 1 +2024-09-11 09:07:24.531335 2024-09-11 09:07:24.531337 14474d9f-2e6c-491d-95ca-db3f9300f764 {"md5": "22494f5a434d95fd2d1f50f40c130c1d", "pid": "A017990946", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017990946", "source": "RERO"}], "preferred_name": "Sendrès, Didier", "authorized_access_point": "Sendrès, Didier"} 1 +2024-09-11 09:07:24.595169 2024-09-11 09:07:24.595174 8926dd62-0bc9-48e2-badc-4ee7162ff948 {"md5": "2446853bb4f7f5666e6d2a561a80928b", "pid": "A017997426", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017997426", "source": "RERO"}], "preferred_name": "Keenan, Rebecca", "authorized_access_point": "Keenan, Rebecca"} 1 +2024-09-11 09:07:24.648515 2024-09-11 09:07:24.648517 f674cb8f-038e-489c-ad8b-9dd5ce00c382 {"md5": "8762bc7b33bcb4eeeb42bb3bfa24db5c", "pid": "A017998485", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A017998485", "source": "RERO"}], "preferred_name": "Arménie. Cour constitutionnelle. Conférence internationale 2009 :", "authorized_access_point": "Arménie. Cour constitutionnelle. Conférence internationale (14 : 2009 : Erevan)"} 1 +2024-09-11 09:07:24.700754 2024-09-11 09:07:24.700759 93741c5e-6453-4625-adbb-d3be38fe15e9 {"md5": "c10a6c7109620e4b6e53dbb103ef5703", "pid": "A018022500", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018022500", "source": "RERO"}], "variant_name": ["Gorman, Jessica K", "Gorman, Jess"], "preferred_name": "Gorman, J. K.", "variant_access_point": ["Gorman, Jessica K", "Gorman, Jess"], "authorized_access_point": "Gorman, J. K. (Jessica K.)"} 1 +2024-09-11 09:07:24.755184 2024-09-11 09:07:24.755187 a926b340-8862-40cc-8214-4b431908e500 {"md5": "cbb7341ffce98772335038db6ccf85cb", "pid": "A018042156", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018042156", "source": "RERO"}], "preferred_name": "Marculet, Stefan", "authorized_access_point": "Marculet, Stefan"} 1 +2024-09-11 09:07:24.809334 2024-09-11 09:07:24.809337 72c068d8-f7da-46bc-ab55-e2cb57579cf1 {"md5": "4d0afe2939cdbefda3aacd16c370dbfc", "pid": "A018051739", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018051739", "source": "RERO"}], "preferred_name": "Nederland. Ministerie van Buitenlandse Zaken. Symposium (2009 :", "authorized_access_point": "Nederland. Ministerie van Buitenlandse Zaken. Symposium (2009 : Den Haag)"} 1 +2024-09-11 09:07:24.869598 2024-09-11 09:07:24.869604 0b971108-2fbc-4a3f-813d-5fd1800f624d {"md5": "2bc2397dcd972870aede985ffb739462", "pid": "A018052277", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018052277", "source": "RERO"}], "preferred_name": "Seijiro, Koyama", "authorized_access_point": "Seijiro, Koyama"} 1 +2024-09-11 09:07:24.956779 2024-09-11 09:07:24.956782 e34dc67c-ee9f-4872-9cd1-99215facc32e {"md5": "504abd393eb39f8a2cfc6a1cfbd039e6", "pid": "A018063051", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018063051", "source": "RERO"}], "preferred_name": "Stefaniak, Stefan", "authorized_access_point": "Stefaniak, Stefan"} 1 +2024-09-11 09:07:25.012024 2024-09-11 09:07:25.012026 096a9607-7ac6-46ce-bea0-1e2c0c6aa7ad {"md5": "0a7e78b393dcb1751d981fa0e8cbf603", "pid": "A018070048", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018070048", "source": "RERO"}], "date_of_birth": "578", "date_of_death": "648", "preferred_name": "Fang, Xuanling,", "parallel_access_point": ["房玄齡, 578-648"], "authorized_access_point": "Fang, Xuanling, 578-648"} 1 +2024-09-11 09:07:25.084482 2024-09-11 09:07:25.084487 6151e8c7-e8e3-4427-b8b2-930caf55ca1f {"md5": "5b93d30edd2044f9acb51832e1de9239", "pid": "A018080715", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018080715", "source": "RERO"}], "preferred_name": "Zittel, Niggi", "authorized_access_point": "Zittel, Niggi"} 1 +2024-09-11 09:07:25.137709 2024-09-11 09:07:25.137712 57b89d69-e390-426e-9d1f-d3dce0cbb5e3 {"md5": "c1696f6226b4e39451d0a204788732a9", "pid": "A018087920", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018087920", "source": "RERO"}], "preferred_name": "Schwandt, Michael", "authorized_access_point": "Schwandt, Michael"} 1 +2024-09-11 09:07:25.197804 2024-09-11 09:07:25.197808 051255be-8f23-43f9-a68c-b02497347019 {"md5": "d4a82821122ea6908766d7979fc77338", "pid": "A018093417", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018093417", "source": "RERO"}], "preferred_name": "Salon international du livre et de la presse 1990 :", "authorized_access_point": "Salon international du livre et de la presse (4 : 1990 : Genève)"} 1 +2024-09-11 09:07:25.258032 2024-09-11 09:07:25.258037 e82badf5-d6f2-4fc2-9e11-15527cc78fdc {"md5": "895c7f344a9f9376711dc41e2d5bc896", "pid": "A018105228", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018105228", "source": "RERO"}], "preferred_name": "Allen, Sarah", "authorized_access_point": "Allen, Sarah"} 1 +2024-09-11 09:07:25.315968 2024-09-11 09:07:25.315973 49731b4f-c0b7-4c4a-bf35-58bba38154b8 {"md5": "fbd2e3bab8aa964f855d5a724552dc7c", "pid": "A018108985", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018108985", "source": "RERO"}], "preferred_name": "Chakrabarti, Nina", "authorized_access_point": "Chakrabarti, Nina"} 1 +2024-09-11 09:07:25.369453 2024-09-11 09:07:25.369458 2b830bf8-1d65-4825-b549-ef3331572440 {"md5": "c180c46fc7b542e86b4e31824cf235a7", "pid": "A018112339", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018112339", "source": "RERO"}], "preferred_name": "Dortmund (Stadt)", "authorized_access_point": "Dortmund (Stadt)"} 1 +2024-09-11 09:07:25.421003 2024-09-11 09:07:25.421007 4fd3c763-09ed-4805-bbcb-fb330139bf1a {"md5": "5f30438f0c4863d4fee409be7d623a0b", "pid": "A018117701", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018117701", "source": "RERO"}], "preferred_name": "Zanetti, Cinzia", "authorized_access_point": "Zanetti, Cinzia"} 1 +2024-09-11 09:07:25.487522 2024-09-11 09:07:25.487525 72a588dd-52cc-4f7c-a8f1-56e5c3ca96a0 {"md5": "782918d0b6c511d0344fd841b8440696", "pid": "A018138835", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018138835", "source": "RERO"}], "preferred_name": "Haidn-Tschalova, Veronika", "authorized_access_point": "Haidn-Tschalova, Veronika"} 1 +2024-09-11 09:07:25.544448 2024-09-11 09:07:25.544452 1e5dff74-adad-46a4-af48-f962775fe070 {"md5": "1024a816de1e3a0e0c63864ce04384f2", "pid": "A018140650", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018140650", "source": "RERO"}], "preferred_name": "\\"Celebrating Eleanor Roosevelt\\" (Genève)", "authorized_access_point": "\\"Celebrating Eleanor Roosevelt\\" (Genève)"} 1 +2024-09-11 09:07:25.596275 2024-09-11 09:07:25.59628 86881023-8b59-4295-a732-2795b240c656 {"md5": "1ff569e8a6867bb37ae2a6549e1b8012", "pid": "A018155271", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018155271", "source": "RERO"}], "preferred_name": "Dahl, Gina", "authorized_access_point": "Dahl, Gina"} 1 +2024-09-11 09:07:25.648668 2024-09-11 09:07:25.648672 77ce9a11-8610-4879-8ff2-9615051e7742 {"md5": "be76192f39b926f20b75e3a9006b5567", "pid": "A018157124", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018157124", "source": "RERO"}], "preferred_name": "Rollston, Chris A", "authorized_access_point": "Rollston, Chris A"} 1 +2024-09-11 09:07:25.704456 2024-09-11 09:07:25.704461 4acfc735-ad46-4c10-9ca5-af1821c4cb24 {"md5": "f7d36e80d11a1d09b14d5472b206904e", "pid": "A018172231", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018172231", "source": "RERO"}], "preferred_name": "Cathry, Karl", "authorized_access_point": "Cathry, Karl"} 1 +2024-09-11 09:07:25.765968 2024-09-11 09:07:25.765973 12402046-aafc-42da-9a6e-17c643dbd19b {"md5": "7622a8ef2d66a1e1077a8011c3f8b424", "pid": "A018201635", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018201635", "source": "RERO"}], "preferred_name": "Terrari, Yves", "authorized_access_point": "Terrari, Yves"} 1 +2024-09-11 09:07:25.819764 2024-09-11 09:07:25.819768 87acb530-ae46-4e92-aa4f-f322ab522d46 {"md5": "0cb7a5aad5c4cb1d6d5ce132a87e2874", "pid": "A018206914", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018206914", "source": "RERO"}], "preferred_name": "Glaus, M.R", "authorized_access_point": "Glaus, M.R"} 1 +2024-09-11 09:07:25.871251 2024-09-11 09:07:25.871255 f5763f4f-e6c8-4859-8a6f-07195fbcd15c {"md5": "a9793eeb7be3a2f805b26c4e3f19b639", "pid": "A018237999", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018237999", "source": "RERO"}], "preferred_name": "Délez, Christian", "authorized_access_point": "Délez, Christian"} 1 +2024-09-11 09:07:25.925313 2024-09-11 09:07:25.925317 59f52a49-beeb-481d-816c-2fbfb5c1c023 {"md5": "883029c3e5ac997fc377f0d95dbca936", "pid": "A018243805", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018243805", "source": "RERO"}], "preferred_name": "Riedmatten, Charles de", "authorized_access_point": "Riedmatten, Charles de"} 1 +2024-09-11 09:07:25.9753 2024-09-11 09:07:25.975307 96ce9f9c-fb31-4014-bd1a-6156a9092c3d {"md5": "eb0ffa1ecfa197e6e36de1282bd00e7a", "pid": "A018251580", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018251580", "source": "RERO"}], "preferred_name": "Gabioud, Serge", "authorized_access_point": "Gabioud, Serge"} 1 +2024-09-11 09:07:26.031569 2024-09-11 09:07:26.031574 5051beba-7a9c-436b-a14c-334433781793 {"md5": "6a0d494c3faf005455e765690c949f2c", "pid": "A018310828", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018310828", "source": "RERO"}], "variant_name": ["Kunstverein Ludwigshafen am Rhein", "Ludwigshafener Kunstverein", "Kunstverein Ludwigshafen a. Rh"], "preferred_name": "Kunstverein Ludwigshafen", "variant_access_point": ["Kunstverein Ludwigshafen am Rhein", "Ludwigshafener Kunstverein", "Kunstverein Ludwigshafen a. Rh"], "authorized_access_point": "Kunstverein Ludwigshafen"} 1 +2024-09-11 09:07:26.116323 2024-09-11 09:07:26.116328 644d41a2-a01f-42e5-bf1f-7581d8a07539 {"md5": "02d8d405119a370f7824c16da220ed09", "pid": "A018321048", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018321048", "source": "RERO"}], "variant_name": ["SASS (Spazio archeologico sotterraneo del sas)"], "preferred_name": "Spazio archeologico sotterraneo del sas", "variant_access_point": ["SASS (Spazio archeologico sotterraneo del sas)"], "authorized_access_point": "Spazio archeologico sotterraneo del sas"} 1 +2024-09-11 09:07:26.174774 2024-09-11 09:07:26.174778 f0161e69-8efa-4adf-a31d-a649497bda43 {"md5": "429740678bf25a118a9d7ac7e2bfa75b", "pid": "A018322337", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018322337", "source": "RERO"}], "preferred_name": "Gustav-Lübcke-Museum (Hamm)", "authorized_access_point": "Gustav-Lübcke-Museum (Hamm)"} 1 +2024-09-11 09:07:26.232924 2024-09-11 09:07:26.232928 14e48b8d-a744-49aa-b8cf-62a755967f25 {"md5": "24535366ca73207c391a1fdfdc47ec78", "pid": "A018324391", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018324391", "source": "RERO"}], "preferred_name": "Reibel, Olivier", "authorized_access_point": "Reibel, Olivier"} 1 +2024-09-11 09:07:26.292365 2024-09-11 09:07:26.292369 37c0473c-d6fa-4d71-b09a-aa745d6d112e {"md5": "8222ffc28ea736bf3ec16198538e13e2", "pid": "A018331793", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018331793", "source": "RERO"}], "preferred_name": "Fiebiger, Rainer", "authorized_access_point": "Fiebiger, Rainer"} 1 +2024-09-11 09:07:26.349426 2024-09-11 09:07:26.349431 c88de566-6d7e-467b-82ac-b3384acf19a2 {"md5": "0ade3ce23de40737f6adcaa3dc844c89", "pid": "A018332342", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018332342", "source": "RERO"}], "preferred_name": "Europäische Anwaltsvereinigung. Tagung 2010 :", "authorized_access_point": "Europäische Anwaltsvereinigung. Tagung (43 : 2010 : Lausanne)"} 1 +2024-09-11 09:07:26.401391 2024-09-11 09:07:26.401395 343660a0-9d79-44bf-9fb6-be01a3101bc7 {"md5": "d26bae7d81b2fcb5197cd84abf8fe94e", "pid": "A018345923", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018345923", "source": "RERO"}], "preferred_name": "Galanopoulos, Philippe", "authorized_access_point": "Galanopoulos, Philippe"} 1 +2024-09-11 09:07:26.469853 2024-09-11 09:07:26.469855 7557da3f-c6aa-49d1-ad19-80b2d2f8e58a {"md5": "7db50ab40147c7d5b724ecdd539559ab", "pid": "A018346336", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018346336", "source": "RERO"}], "preferred_name": "Antigos Refeitórios da Mundet (Seixal)", "authorized_access_point": "Antigos Refeitórios da Mundet (Seixal)"} 1 +2024-09-11 09:07:26.532427 2024-09-11 09:07:26.53243 39f7389c-1876-4c41-86c5-d81ada3e4299 {"md5": "4992bd25136188105be3d28b7a3c55ad", "pid": "A018351276", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018351276", "source": "RERO"}], "preferred_name": "Institut international de sociologie juridique (Oñati). Workshop (2008 :", "authorized_access_point": "Institut international de sociologie juridique (Oñati). Workshop (2008 : Oñati)"} 1 +2024-09-11 09:07:26.593882 2024-09-11 09:07:26.593886 aaa6cd83-9f9d-47bc-ba9b-65dfd76dc3d9 {"md5": "b56bdbab8520102c76c3250898a6b940", "pid": "A018387362", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018387362", "source": "RERO"}], "variant_name": ["France. Académie (Créteil). Mission d'action culturelle des cultures et langues régionales"], "preferred_name": "France. Académie (Créteil). Mission de l'action culturelle des cultures et langues régionales", "variant_access_point": ["France. Académie (Créteil). Mission d'action culturelle des cultures et langues régionales"], "authorized_access_point": "France. Académie (Créteil). Mission de l'action culturelle des cultures et langues régionales"} 1 +2024-09-11 09:07:26.646552 2024-09-11 09:07:26.646557 e4d7b418-a5db-4046-be77-2b4b0f007f4b {"md5": "61e746c37fa6f291d7263c201045484b", "pid": "A018391771", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018391771", "source": "RERO"}], "preferred_name": "Frerk, Hans", "authorized_access_point": "Frerk, Hans"} 1 +2024-09-11 09:07:26.704861 2024-09-11 09:07:26.704866 e019cd5e-a406-4c9f-84cd-abea60deb610 {"md5": "e0d74e79f1901f7685db94bbd5b7b7d1", "pid": "A018394246", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018394246", "source": "RERO"}], "variant_name": ["Blanc, Thomas le,", "LeBlanc, Thomas,"], "date_of_birth": "1951", "preferred_name": "Le Blanc, Thomas,", "variant_access_point": ["Blanc, Thomas le, 1951-", "LeBlanc, Thomas, 1951-"], "authorized_access_point": "Le Blanc, Thomas, 1951-", "biographical_information": ["Ecrivain, critique, éditeur"]} 1 +2024-09-11 09:07:26.757902 2024-09-11 09:07:26.757906 ebb29ac8-f2d1-4e62-9e91-1a82f33b9f3c {"md5": "2dcb3602312107acaec281c1ec1459b4", "pid": "A018395567", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018395567", "source": "RERO"}], "date_of_birth": "1986", "preferred_name": "Kull, Iara,", "authorized_access_point": "Kull, Iara, 1986-"} 1 +2024-09-11 09:07:26.812902 2024-09-11 09:07:26.812906 2f3af1f9-5b97-40a4-87be-74501d6515e6 {"md5": "27c3c2fd0b1b5243aaefbb604163736e", "pid": "A018410690", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018410690", "source": "RERO"}], "preferred_name": "Ṣurayfī, Muḥammad", "parallel_access_point": ["صريفي، محمد"], "authorized_access_point": "Ṣurayfī, Muḥammad"} 1 +2024-09-11 09:07:26.866472 2024-09-11 09:07:26.866476 409e5582-8df7-4cc2-8004-af7cc308d1ec {"md5": "72a478272d14f90400b041160ae2e352", "pid": "A018418232", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018418232", "source": "RERO"}], "preferred_name": "Di Mino, Patrizio", "authorized_access_point": "Di Mino, Patrizio"} 1 +2024-09-11 09:07:26.919093 2024-09-11 09:07:26.919098 953c0711-b754-4f96-90dc-01b62eff8e14 {"md5": "1336357e4d6a28faa2046f193e54e43a", "pid": "A018432097", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018432097", "source": "RERO"}], "preferred_name": "Centro per gli studi storici italo-germanici in Trento. Convegno internazionale (2005 :", "authorized_access_point": "Centro per gli studi storici italo-germanici in Trento. Convegno internazionale (2005 : Trento)"} 1 +2024-09-11 09:07:26.978161 2024-09-11 09:07:26.978164 1da90ae9-bfbe-43aa-9300-2c505492ffad {"md5": "169969e75e8bfee680e766380ec92c90", "pid": "A018440172", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018440172", "source": "RERO"}], "preferred_name": "Cornet, May", "authorized_access_point": "Cornet, May"} 1 +2024-09-11 09:07:27.030414 2024-09-11 09:07:27.030417 7cf292ef-ce87-4ce3-a32f-cecd2eec9323 {"md5": "4e1dde67611d52d60a7b4dacee220627", "pid": "A018456288", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018456288", "source": "RERO"}], "preferred_name": "Halperin, Natalie", "authorized_access_point": "Halperin, Natalie"} 1 +2024-09-11 09:07:27.094029 2024-09-11 09:07:27.094034 cd4dae5f-aebf-4e33-ab7d-5d2aca22c4eb {"md5": "87adf4fac0c765333275b17dbc4b4f23", "pid": "A018459512", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "médecin", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018459512", "source": "RERO"}], "preferred_name": "Schlüssel, médecin", "authorized_access_point": "Schlüssel, médecin"} 1 +2024-09-11 09:07:27.152858 2024-09-11 09:07:27.152862 cf15e917-e848-47eb-8301-5056105e76f4 {"md5": "73605a5a1c4142dab9eb102a751f6773", "pid": "A018463176", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018463176", "source": "RERO"}], "preferred_name": "Zhou, Yiqun", "authorized_access_point": "Zhou, Yiqun"} 1 +2024-09-11 09:07:27.204632 2024-09-11 09:07:27.204637 be307f07-6c2d-4d01-9621-ebab9ba704da {"md5": "9660b544d546e070a6cf1bb10496d491", "pid": "A018475973", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018475973", "source": "RERO"}], "date_of_birth": "1910", "date_of_death": "1997", "preferred_name": "Bielawski, Józef,", "authorized_access_point": "Bielawski, Józef, 1910-1997"} 1 +2024-09-11 09:07:27.273466 2024-09-11 09:07:27.273469 f85f9d9c-c58d-444c-afe4-6fee1de0efbf {"md5": "8716a6f0b6c9a8c183733bac7e1a81cb", "pid": "A018477130", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018477130", "source": "RERO"}], "preferred_name": "Nājī, Hilāl", "parallel_access_point": ["ناجي، هلال"], "authorized_access_point": "Nājī, Hilāl"} 1 +2024-09-11 09:07:27.345915 2024-09-11 09:07:27.345919 86a47390-613f-45b6-945d-569cfdcf86e3 {"md5": "65a4e7d4f2cd48d7fe2f5083a324112e", "pid": "A018486553", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018486553", "source": "RERO"}], "preferred_name": "Mittner, Mathias", "authorized_access_point": "Mittner, Mathias"} 1 +2024-09-11 09:07:27.406443 2024-09-11 09:07:27.406447 16eea608-1d37-433f-9f16-7cc189be6f34 {"md5": "c6dbcb597ee269ca8432548cf6de25a4", "pid": "A018541924", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018541924", "source": "RERO"}], "preferred_name": "Alarashi, Hala", "authorized_access_point": "Alarashi, Hala"} 1 +2024-09-11 09:07:27.458566 2024-09-11 09:07:27.45857 98230efb-3083-4359-932e-a8a184b7b8de {"md5": "24ab79c3e4ea905c6aa379662e64715c", "pid": "A018548221", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018548221", "source": "RERO"}], "preferred_name": "Klingelhöffer, Kerstin", "authorized_access_point": "Klingelhöffer, Kerstin"} 1 +2024-09-11 09:07:27.518865 2024-09-11 09:07:27.518869 c856c9c1-3d3f-47ac-b3e7-f7d5a3203470 {"md5": "bce44d35a6f98064ef4c2cf6c2f9412b", "pid": "A018556919", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018556919", "source": "RERO"}], "preferred_name": "Knüfermann, Eckar", "authorized_access_point": "Knüfermann, Eckar"} 1 +2024-09-11 09:07:27.577845 2024-09-11 09:07:27.577849 8b08b2d3-e53b-497a-a532-291f8a7ae837 {"md5": "fb84ce02713da5b1760ba940484cb59b", "pid": "A018562369", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018562369", "source": "RERO"}], "preferred_name": "Kershaw, Paul J. E", "authorized_access_point": "Kershaw, Paul J. E"} 1 +2024-09-11 09:07:27.63338 2024-09-11 09:07:27.633385 5c062b0d-cfa2-4b5d-8c24-23eb50abe97f {"md5": "87f4d43f0175719697002b376cd35224", "pid": "A018581906", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018581906", "source": "RERO"}], "preferred_name": "La Chevallerie, A. de", "authorized_access_point": "La Chevallerie, A. de"} 1 +2024-09-11 09:07:27.686312 2024-09-11 09:07:27.686315 d66c1208-263e-4f8f-8e39-93041375b670 {"md5": "4ab69d6659796b1ca0df255fd2d88513", "pid": "A018584020", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018584020", "source": "RERO"}], "preferred_name": "Del Vivo, Ranieri", "authorized_access_point": "Del Vivo, Ranieri"} 1 +2024-09-11 09:07:27.739316 2024-09-11 09:07:27.739322 76905521-a295-423b-bbf7-fbadc208dae0 {"md5": "b6f583e7c9d60bdfecab400fbdc566a1", "pid": "A018585140", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018585140", "source": "RERO"}], "preferred_name": "Lange, Eugénie", "authorized_access_point": "Lange, Eugénie"} 1 +2024-09-11 09:07:27.794595 2024-09-11 09:07:27.794599 cfc6d4b8-2603-4c42-b85e-06cd95129fbc {"md5": "d5a5a17712ef77a755ef1b4bb87fe88e", "pid": "A018591525", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018591525", "source": "RERO"}], "preferred_name": "Dupont-Belrhali, Karine", "authorized_access_point": "Dupont-Belrhali, Karine"} 1 +2024-09-11 09:07:27.86445 2024-09-11 09:07:27.864453 f38aff2f-2ba3-4f80-8550-f1db4651ffae {"md5": "3ba3e1007594e56c0d79b73b59e512db", "pid": "A018606059", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018606059", "source": "RERO"}], "preferred_name": "Zakrzewski, Marek", "authorized_access_point": "Zakrzewski, Marek"} 1 +2024-09-11 09:07:27.920469 2024-09-11 09:07:27.920472 e754d82f-8d21-4d3c-9e1e-5c8fe6f3138c {"md5": "e89fb2d5e8fee8f3b49eaf4c7cadb1d5", "pid": "A018606217", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018606217", "source": "RERO"}], "preferred_name": "Rothrock, Paul Ernest", "authorized_access_point": "Rothrock, Paul Ernest"} 1 +2024-09-11 09:07:27.975005 2024-09-11 09:07:27.975009 7c193a42-3e39-4a8d-8e48-5ebc5fb595a5 {"md5": "62760c412dc853504b3e09f3e6855b45", "pid": "A018610634", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018610634", "source": "RERO"}], "preferred_name": "Abbott, Colleen", "authorized_access_point": "Abbott, Colleen"} 1 +2024-09-11 09:07:28.051393 2024-09-11 09:07:28.051398 2b7979a1-507d-4763-a09e-69c15deb3ded {"md5": "d39844982d7099b92aebe1250b24223e", "pid": "A018613224", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018613224", "source": "RERO"}], "preferred_name": "Dumouchel, Jacques", "authorized_access_point": "Dumouchel, Jacques"} 1 +2024-09-11 09:07:28.118143 2024-09-11 09:07:28.118148 40d4813e-674e-4699-99e4-b822ab5a59cf {"md5": "f4ea6d36409d5c5ff3b0f4f5cbc599f7", "pid": "A018617749", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018617749", "source": "RERO"}], "preferred_name": "Lustersaal (Judenburg)", "authorized_access_point": "Lustersaal (Judenburg)"} 1 +2024-09-11 09:07:28.178865 2024-09-11 09:07:28.178869 58f3cf85-7c07-46d4-8ed7-b432e4ea8bba {"md5": "7fad06eda74e6c06b32fea1fdefbfba4", "pid": "A018623512", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018623512", "source": "RERO"}], "preferred_name": "Arizmendi, Luis", "authorized_access_point": "Arizmendi, Luis"} 1 +2024-09-11 09:07:28.238791 2024-09-11 09:07:28.238798 4e9aad91-9a78-475c-9155-621919444dc8 {"md5": "e2b8c32fafab8576375eda4f54263f2f", "pid": "A018651679", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018651679", "source": "RERO"}], "preferred_name": "Logean, Sylvie", "authorized_access_point": "Logean, Sylvie"} 1 +2024-09-11 09:07:28.296967 2024-09-11 09:07:28.296972 2794ec08-ccc2-4d59-b1f7-6d81ea9a017b {"md5": "8cf298c63e1e8668b49046f07e844624", "pid": "A018655587", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018655587", "source": "RERO"}], "preferred_name": "Ecole technique (Neuchâtel)", "authorized_access_point": "Ecole technique (Neuchâtel)", "biographical_information": ["Avant 1969: Ecole de mécanique et d'électricité (Neuchâtel)", "Dès 1974: l'Ecole technique est rattachée au CPLN"]} 1 +2024-09-11 09:07:28.352913 2024-09-11 09:07:28.352917 d9cc0177-dbc0-4629-bff8-23eb47a5eecc {"md5": "72b422f56c023dc2e914e03ea1892e67", "pid": "A018689283", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018689283", "source": "RERO"}], "preferred_name": "Hadāwī, Ḥasan", "parallel_access_point": ["هداوي، حسن"], "authorized_access_point": "Hadāwī, Ḥasan"} 1 +2024-09-11 09:07:28.410469 2024-09-11 09:07:28.410472 0bb77046-76d4-4fc5-aca0-c00d0dcfb056 {"md5": "c0f564dfde8b79ef187980fe629d10e7", "pid": "A018689940", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018689940", "source": "RERO"}], "preferred_name": "International Center for Research on Environmental Issues. Conférence internationale 2008 :", "authorized_access_point": "International Center for Research on Environmental Issues. Conférence internationale (7 : 2008 : Aix-en-Provence)"} 1 +2024-09-11 09:07:28.46624 2024-09-11 09:07:28.466243 dc0f4541-9595-47a6-bba3-b4fd13c5e243 {"md5": "ec8e999ed16e5524cdad22360810a275", "pid": "A018699407", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018699407", "source": "RERO"}], "preferred_name": "Janssen, Hildegonda", "authorized_access_point": "Janssen, Hildegonda"} 1 +2024-09-11 09:07:28.523552 2024-09-11 09:07:28.523557 f6bd2365-276f-46f2-9529-f6275cdd6fd7 {"md5": "783937631f2c639490a5aca4d133dae2", "pid": "A018703625", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018703625", "source": "RERO"}], "preferred_name": "Nikoloff, Mladen", "authorized_access_point": "Nikoloff, Mladen"} 1 +2024-09-11 09:07:28.577186 2024-09-11 09:07:28.57719 622ea8ca-bf75-4f59-b35e-55411a242621 {"md5": "a4b7b63fb9185b673aacf7a32f703388", "pid": "A018726776", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018726776", "source": "RERO"}], "preferred_name": "Pugin, J", "authorized_access_point": "Pugin, J"} 1 +2024-09-11 09:07:28.666582 2024-09-11 09:07:28.666586 7ac6933d-e6d2-4e6f-be56-4a978dc4845a {"md5": "5b2418b388c5ad9a15a262fdee7d872d", "pid": "A018750238", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018750238", "source": "RERO"}], "preferred_name": "Lafite, Elisabeth", "authorized_access_point": "Lafite, Elisabeth"} 1 +2024-09-11 09:07:28.721856 2024-09-11 09:07:28.721858 c363fd9d-d028-4da7-9bb1-5ca152ab1fdd {"md5": "daca3c833ff450b259196373dfaaef9b", "pid": "A018777696", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018777696", "source": "RERO"}], "preferred_name": "Forgács, Robert", "authorized_access_point": "Forgács, Robert"} 1 +2024-09-11 09:07:28.776094 2024-09-11 09:07:28.776098 501222a8-3dbe-49ea-931e-1b1b6b89fb1b {"md5": "c347d5b0fba5dc1bbc2a45db2937a24a", "pid": "A018790254", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018790254", "source": "RERO"}], "preferred_name": "Aeschlimann, Daniel", "authorized_access_point": "Aeschlimann, Daniel"} 1 +2024-09-11 09:07:28.825507 2024-09-11 09:07:28.825512 042c7afa-00bb-4b5c-a715-37e5f91b838a {"md5": "4049e7b1c18d472ffb712c72e361bef5", "pid": "A018795339", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018795339", "source": "RERO"}], "preferred_name": "Power, Alacoque", "authorized_access_point": "Power, Alacoque"} 1 +2024-09-11 09:07:28.885734 2024-09-11 09:07:28.885738 0dceb193-bda4-4838-ba65-575a175009ef {"md5": "22e5cf7fa66e76dc19487dfd6d0dacb8", "pid": "A018796853", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018796853", "source": "RERO"}], "preferred_name": "Prelitsch, Hans", "authorized_access_point": "Prelitsch, Hans"} 1 +2024-09-11 09:07:28.936617 2024-09-11 09:07:28.936624 ab68f6be-0493-4e88-9270-e50f9c588061 {"md5": "12621e42863cac801f8a6f7de9dccbec", "pid": "A018810961", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018810961", "source": "RERO"}], "preferred_name": "Fundación Española de Historia Moderna (Madrid)", "authorized_access_point": "Fundación Española de Historia Moderna (Madrid)"} 1 +2024-09-11 09:07:28.999164 2024-09-11 09:07:28.999168 8564a9ad-fcbc-4554-8433-6d6990804e73 {"md5": "4dfbafdd9758b1fd1d603125d99c56d5", "pid": "A018836965", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018836965", "source": "RERO"}], "preferred_name": "Roediger, Walter", "authorized_access_point": "Roediger, Walter"} 1 +2024-09-11 09:07:29.062485 2024-09-11 09:07:29.062489 f4bfec51-cf68-4fd0-baee-7f303221b97b {"md5": "5e5f13548e8137e70763f1b573a0d6e3", "pid": "A018838435", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018838435", "source": "RERO"}], "preferred_name": "Roëll, Paul v", "authorized_access_point": "Roëll, Paul v"} 1 +2024-09-11 09:07:29.113295 2024-09-11 09:07:29.113299 3a63ca6d-9b15-4907-9ad6-4e2b1327be9d {"md5": "1f67c9c60e7b380902de143054ee8aae", "pid": "A018857106", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018857106", "source": "RERO"}], "date_of_birth": "1976", "preferred_name": "Le Fleming, Orlando,", "authorized_access_point": "Le Fleming, Orlando, 1976-"} 1 +2024-09-11 09:07:29.170836 2024-09-11 09:07:29.170842 3ef30185-f009-4359-92b4-da27fd1ff892 {"md5": "fb727d4bb362bee34570ee46c37b763a", "pid": "A018863994", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "scénariste", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018863994", "source": "RERO"}], "preferred_name": "Stephens, John, scénariste", "authorized_access_point": "Stephens, John, scénariste"} 1 +2024-09-11 09:07:29.22449 2024-09-11 09:07:29.224493 ce47cf75-5370-42f5-9dca-a275a0987ab8 {"md5": "05dc3b4128634b0e986404bae0951dc7", "pid": "A018867909", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018867909", "source": "RERO"}], "preferred_name": "Lenfant, Anne-Yvonne", "authorized_access_point": "Lenfant, Anne-Yvonne"} 1 +2024-09-11 09:07:29.275943 2024-09-11 09:07:29.275948 91cb1a59-b86f-4b01-98f0-7ec154925771 {"md5": "2289f61b0e417aabe7beb94bdb56b30a", "pid": "A018875034", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018875034", "source": "RERO"}], "preferred_name": "Schill, Adolf", "authorized_access_point": "Schill, Adolf"} 1 +2024-09-11 09:07:29.328911 2024-09-11 09:07:29.328914 3419a3a7-c949-4d30-8b2d-12a9e09ee4df {"md5": "95411cfb7dddaa078cc99cddda2807e8", "pid": "A018879902", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018879902", "source": "RERO"}], "preferred_name": "Gassmann, Aude", "authorized_access_point": "Gassmann, Aude"} 1 +2024-09-11 09:07:29.388753 2024-09-11 09:07:29.388757 f8bc0b18-2f22-473e-ac1c-1bd84cdb70dc {"md5": "02a16edaf9f9a73c163245d9b0e9fc32", "pid": "A018880000", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018880000", "source": "RERO"}], "preferred_name": "Kreppi, Bernard", "authorized_access_point": "Kreppi, Bernard"} 1 +2024-09-11 09:07:29.440612 2024-09-11 09:07:29.440616 6e03da16-e0e0-43df-aa57-788423e61e82 {"md5": "c60cff031f8cd3e421d7d6d051750e33", "pid": "A018906120", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018906120", "source": "RERO"}], "preferred_name": "Lancaster, Mike A", "authorized_access_point": "Lancaster, Mike A"} 1 +2024-09-11 09:07:29.5005 2024-09-11 09:07:29.500505 488ee110-e15f-43fb-a9d1-31a1dfbeb86f {"md5": "f6c4943894f294c3f82917060305de99", "pid": "A018910104", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018910104", "source": "RERO"}], "variant_name": ["Nahounou Digbeu, Amédée", "Digbeu, Amédée Nahounou"], "preferred_name": "Pierre, Amédée", "variant_access_point": ["Nahounou Digbeu, Amédée", "Digbeu, Amédée Nahounou"], "authorized_access_point": "Pierre, Amédée", "biographical_information": ["Dates de vie: 1937-"]} 1 +2024-09-11 09:07:29.557278 2024-09-11 09:07:29.557282 ba5b3f75-7f96-4d98-90b9-1b55a43cc7e1 {"md5": "8ccde07153ad1b4b84c8865f62e21c2c", "pid": "A018913029", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018913029", "source": "RERO"}], "preferred_name": "Frénoy, Olivier", "authorized_access_point": "Frénoy, Olivier"} 1 +2024-09-11 09:07:29.609778 2024-09-11 09:07:29.609782 0aea0911-670b-4de3-a227-453c04819fe5 {"md5": "b58aaf3290cb85badcc19af1a5c9a023", "pid": "A018939247", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018939247", "source": "RERO"}], "preferred_name": "Sensburg, Ernst Philipp von", "authorized_access_point": "Sensburg, Ernst Philipp von"} 1 +2024-09-11 09:07:29.663705 2024-09-11 09:07:29.663708 394c2da1-b55b-4a53-8d69-a73e694798e9 {"md5": "29e1d1e7d9888cbdb419749238a59c68", "pid": "A018946790", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018946790", "source": "RERO"}], "preferred_name": "Martine, L junior", "authorized_access_point": "Martine, L junior"} 1 +2024-09-11 09:07:29.716444 2024-09-11 09:07:29.716449 7568432f-b67e-4152-8245-14c918caa2d1 {"md5": "581ff31ca30a81150cc44d320b76cd6a", "pid": "A018953919", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018953919", "source": "RERO"}], "preferred_name": "Weissbrodt, Noémie", "authorized_access_point": "Weissbrodt, Noémie"} 1 +2024-09-11 09:07:29.771816 2024-09-11 09:07:29.771822 0adf3c7d-e566-4e8d-9e01-b22f97a15a44 {"md5": "747ed95147064c511683e8857cb90f4a", "pid": "A018954799", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018954799", "source": "RERO"}], "preferred_name": "Souché, A", "authorized_access_point": "Souché, A"} 1 +2024-09-11 09:07:29.825093 2024-09-11 09:07:29.825097 bb0048f5-66aa-4385-b31d-b69f5b39f486 {"md5": "f642e6fc628925f6b1f58b8561e73f33", "pid": "A018986263", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A018986263", "source": "RERO"}], "preferred_name": "Whisnant, Rebecca", "authorized_access_point": "Whisnant, Rebecca"} 1 +2024-09-11 09:07:29.888774 2024-09-11 09:07:29.888778 c452ae55-6ce6-4a83-92c2-34d2504fb881 {"md5": "cac5e33fcb1f700d5c5adfd7f1869a52", "pid": "A019010974", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A019010974", "source": "RERO"}], "variant_name": ["Tetsuo, Owada,"], "date_of_birth": "1944", "preferred_name": "Owada, Tetsuo,", "variant_access_point": ["Tetsuo, Owada, 1944-"], "parallel_access_point": ["小和田哲男, 1944-"], "authorized_access_point": "Owada, Tetsuo, 1944-", "biographical_information": ["Docteur ès lettres, diplômé de l'Université de Waseda, Tōkyō, Japon. - En poste à l'Université de Shizuoka, Japon (en 2006). - Spécialiste de l'histoire médiévale du Japon"]} 1 +2024-09-11 09:07:29.958537 2024-09-11 09:07:29.958542 7ef3ed1c-21df-46cf-9931-d5ce49c5da06 {"md5": "4194a34711c2af103638dd5e86c48e06", "pid": "A019019750", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A019019750", "source": "RERO"}], "preferred_name": "Nei Menggu she hui ke xue yuan. Li shi suo. \\"Menggu zu tong shi\\" bian xie zu", "parallel_access_point": ["內蒙古社会科学院. 历史所. \\"蒙古族通史\\" 编写组"], "authorized_access_point": "Nei Menggu she hui ke xue yuan. Li shi suo. \\"Menggu zu tong shi\\" bian xie zu"} 1 +2024-09-11 09:07:30.011258 2024-09-11 09:07:30.011261 14739344-915a-4154-8e89-6cded7bb9bb9 {"md5": "94a287cd2f4bdf097db8caf59c9499ba", "pid": "A019033792", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A019033792", "source": "RERO"}], "preferred_name": "Gern, Didier", "authorized_access_point": "Gern, Didier"} 1 +2024-09-11 09:07:30.06691 2024-09-11 09:07:30.066913 4484fb0e-eeea-40ef-99aa-73eabbbf76b3 {"md5": "938f5c13ea9077fc81e7aa9964df8d53", "pid": "A019052882", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A019052882", "source": "RERO"}], "preferred_name": "O'Hara, S. Paul", "authorized_access_point": "O'Hara, S. Paul"} 1 +2024-09-11 09:07:30.120317 2024-09-11 09:07:30.12032 8d41efbb-04b4-4338-8ebe-2f59bb94adbb {"md5": "2a53bb9baa226ad4c1ecd1637867cda4", "pid": "A019060042", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A019060042", "source": "RERO"}], "preferred_name": "Asociación Niños del Fortín", "authorized_access_point": "Asociación Niños del Fortín"} 1 +2024-09-11 09:07:30.177805 2024-09-11 09:07:30.177809 eeca6a76-2f68-4069-9a1f-4eff8f8d3932 {"md5": "d2bacfdddd74fe05313ab31e209d06db", "pid": "A019072876", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A019072876", "source": "RERO"}], "date_of_birth": "1977", "preferred_name": "Stephens, Mark B.,", "authorized_access_point": "Stephens, Mark B., 1977-", "biographical_information": ["Mark B. Stephens est actuellement professeur d'études bibliques à l'Institut Wesley (Australie)"]} 1 +2024-09-11 09:07:30.233933 2024-09-11 09:07:30.233938 3503b1de-0b86-4932-862c-95a2f52a7e7f {"md5": "37122b5ff32db827578bbc44224f8ebb", "pid": "A019100305", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A019100305", "source": "RERO"}], "preferred_name": "Sorrin, Pierrick", "authorized_access_point": "Sorrin, Pierrick"} 1 +2024-09-11 09:07:30.287751 2024-09-11 09:07:30.287755 af624b58-64fc-449e-b14f-a91d1a0a0e0d {"md5": "a11d0faf9c513b7797ac224b1be90aed", "pid": "A019104065", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A019104065", "source": "RERO"}], "preferred_name": "Pelizza, Giovanna", "authorized_access_point": "Pelizza, Giovanna"} 1 +2024-09-11 09:07:30.340242 2024-09-11 09:07:30.340245 d7a9a809-0665-4f9e-a640-de3fb11c4687 {"md5": "c4cba68d7430020e609127546508d0d7", "pid": "A019111556", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A019111556", "source": "RERO"}], "preferred_name": "Goldenberg, Pomme", "authorized_access_point": "Goldenberg, Pomme"} 1 +2024-09-11 09:07:30.394147 2024-09-11 09:07:30.394152 7f07d9e2-0a5b-4f9c-8a63-45fa4b42b1c1 {"md5": "d6eb28c389957d21b0179c54300cb134", "pid": "A019131066", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A019131066", "source": "RERO"}], "preferred_name": "Othenin-Girard Landry, Michèle", "authorized_access_point": "Othenin-Girard Landry, Michèle"} 1 +2024-09-11 09:07:30.453564 2024-09-11 09:07:30.453568 743264cb-1434-42f1-8659-98f5ce823ddf {"md5": "d41139f5e23544e19f2df34437d20275", "pid": "A019135541", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A019135541", "source": "RERO"}], "preferred_name": "Theurillat, Emmanuelle", "authorized_access_point": "Theurillat, Emmanuelle"} 1 +2024-09-11 09:07:30.511035 2024-09-11 09:07:30.511039 86b0873b-6d5a-4163-a41a-d104f6312748 {"md5": "95770b7cbf285e160036646ad083a2ba", "pid": "A019156002", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A019156002", "source": "RERO"}], "preferred_name": "Lalonde, Jean-Yves", "authorized_access_point": "Lalonde, Jean-Yves"} 1 +2024-09-11 09:07:30.569964 2024-09-11 09:07:30.56997 691cc3cd-1d92-4b8f-951c-dd1ca8d880bd {"md5": "a32445d851fde0ab78ffb9d6a0956c00", "pid": "A019212102", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A019212102", "source": "RERO"}], "preferred_name": "Chirol, Marie-Magdeleine", "authorized_access_point": "Chirol, Marie-Magdeleine"} 1 +2024-09-11 09:07:30.621627 2024-09-11 09:07:30.62163 a5cb7281-794a-4290-9dc6-d10752f88e2c {"md5": "7005ee624a20b66e3ff1a724defc8876", "pid": "A019243832", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A019243832", "source": "RERO"}], "preferred_name": "Deguilloux, Laurence", "authorized_access_point": "Deguilloux, Laurence"} 1 +2024-09-11 09:07:30.676687 2024-09-11 09:07:30.676691 11d9845d-0f5c-4b48-8272-931bc917a8d1 {"md5": "3246a8987031a0848f51cf8ce63bfa76", "pid": "A020002432", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020002432", "source": "RERO"}], "preferred_name": "Bo, Armando", "authorized_access_point": "Bo, Armando"} 1 +2024-09-11 09:07:30.731029 2024-09-11 09:07:30.731033 7dff709b-a52d-4fba-b9a8-f0e285eb1c7e {"md5": "8191fb8a975d369c35ff7c8d5907d47b", "pid": "A020018697", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020018697", "source": "RERO"}], "preferred_name": "Förderverein Naturgut Ophoven", "authorized_access_point": "Förderverein Naturgut Ophoven"} 1 +2024-09-11 09:07:30.789516 2024-09-11 09:07:30.78952 73a30b5d-83f0-4462-91fd-ebecc14e3097 {"md5": "19144ca5dec1cd7d97df3933e1a7c41c", "pid": "A020026743", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020026743", "source": "RERO"}], "preferred_name": "Lesage, Pauline", "authorized_access_point": "Lesage, Pauline"} 1 +2024-09-11 09:07:30.846782 2024-09-11 09:07:30.846786 195938fc-d9aa-43e0-83dc-6c853d9ab8a2 {"md5": "ca1c7a15612e6401e13ec0acdcd47dd8", "pid": "A020053143", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020053143", "source": "RERO"}], "preferred_name": "Ruhierre, Edme", "authorized_access_point": "Ruhierre, Edme"} 1 +2024-09-11 09:07:30.906001 2024-09-11 09:07:30.906004 7c1dd901-3957-4a6f-a894-58bc3d2e2c67 {"md5": "a1e95d566601ae5be4c68d094ff8d574", "pid": "A020057293", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020057293", "source": "RERO"}], "preferred_name": "Knapp, Ladina", "authorized_access_point": "Knapp, Ladina"} 1 +2024-09-11 09:07:30.960399 2024-09-11 09:07:30.960404 8431111d-ca6b-498a-9786-8ea29e0aec46 {"md5": "57592d74a7598901a5d3bcc5fc60987d", "pid": "A020059215", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "juriste", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020059215", "source": "RERO"}], "preferred_name": "Remy, Franz, juriste", "authorized_access_point": "Remy, Franz, juriste"} 1 +2024-09-11 09:07:31.011898 2024-09-11 09:07:31.011902 54395db5-902d-49c3-a097-1bc4e355e240 {"md5": "4abe019033c19d5c0986f5eb5ec9f4c4", "pid": "A020064866", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020064866", "source": "RERO"}], "preferred_name": "Robbins, G", "authorized_access_point": "Robbins, G"} 1 +2024-09-11 09:07:31.072418 2024-09-11 09:07:31.072421 c3e129cc-4544-45c3-b832-cecaadc89e64 {"md5": "eb35781e8093a851f3c84bc4f6ad9057", "pid": "A020072898", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020072898", "source": "RERO"}], "preferred_name": "Lehner, Béatrice", "authorized_access_point": "Lehner, Béatrice"} 1 +2024-09-11 09:07:31.129813 2024-09-11 09:07:31.129819 b98af9cf-d700-4110-95ee-392927bf24df {"md5": "63162834039b24ac8609a4afd6f366c5", "pid": "A020078206", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020078206", "source": "RERO"}], "preferred_name": "Mey, Eugène", "authorized_access_point": "Mey, Eugène"} 1 +2024-09-11 09:07:31.192634 2024-09-11 09:07:31.192638 7d71f302-23a4-4243-9033-597536be46d4 {"md5": "62f0ba4e7a599875e3948c5e55e628b0", "pid": "A020092031", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020092031", "source": "RERO"}], "preferred_name": "Heathcote, Gina", "authorized_access_point": "Heathcote, Gina"} 1 +2024-09-11 09:07:31.24625 2024-09-11 09:07:31.246252 63ee3d06-301c-42a0-ab5a-f63308acc065 {"md5": "2e300954af2a0eb0f1dcadc4df05d145", "pid": "A020092462", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020092462", "source": "RERO"}], "preferred_name": "Meng, Florent", "authorized_access_point": "Meng, Florent"} 1 +2024-09-11 09:07:31.304293 2024-09-11 09:07:31.304299 ccfa8c4a-c6c7-44aa-9780-5a60b7187b5b {"md5": "a67b0d9c34a93eebdf571d81082b14d4", "pid": "A020092476", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020092476", "source": "RERO"}], "preferred_name": "Lauber, Jules", "authorized_access_point": "Lauber, Jules"} 1 +2024-09-11 09:07:31.355576 2024-09-11 09:07:31.355578 cf93ec5f-7e14-4456-94e9-f2a540308e3c {"md5": "2c6580fe36a51a0b6b05ddf720e1c735", "pid": "A020103298", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020103298", "source": "RERO"}], "preferred_name": "Hronék, Upravil Miroslav", "authorized_access_point": "Hronék, Upravil Miroslav"} 1 +2024-09-11 09:07:31.41223 2024-09-11 09:07:31.412235 9e4e0262-e8f4-40f3-afd4-b03386bd50ff {"md5": "6f1b30d595f36d093fac98562ecc5ebe", "pid": "A020121326", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020121326", "source": "RERO"}], "preferred_name": "Fantasia", "authorized_access_point": "Fantasia"} 1 +2024-09-11 09:07:31.46675 2024-09-11 09:07:31.466755 3dede6cd-3d0a-49b1-907c-4715bfc45374 {"md5": "198ad1ad6dc8cec7927190a7a00a6641", "pid": "A020122182", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020122182", "source": "RERO"}], "variant_name": ["Meya, Raoul Kiyangi,"], "date_of_birth": "1970", "preferred_name": "Kiyangi Meya, Raoul,", "variant_access_point": ["Meya, Raoul Kiyangi, 1970-"], "authorized_access_point": "Kiyangi Meya, Raoul, 1970-"} 1 +2024-09-11 09:07:31.52068 2024-09-11 09:07:31.520685 a99919b5-8f5f-4fa4-8dc2-ac95162dffa1 {"md5": "4c172ccfb1442152023532dff79e180c", "pid": "A020122584", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020122584", "source": "RERO"}], "preferred_name": "Rosset, Xavier", "authorized_access_point": "Rosset, Xavier"} 1 +2024-09-11 09:07:31.579777 2024-09-11 09:07:31.579781 4c3f076b-c728-418d-ac1a-0ecf858bacbc {"md5": "ee10c801a38f3ad7ba3573450f19b226", "pid": "A020128356", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020128356", "source": "RERO"}], "preferred_name": "Chalmas, Robert", "authorized_access_point": "Chalmas, Robert"} 1 +2024-09-11 09:07:31.634332 2024-09-11 09:07:31.634336 d45d739c-b2ef-47c0-948e-56b8d08ccae0 {"md5": "d1cc37d6210fcc6ee109fee16f534aed", "pid": "A020139475", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020139475", "source": "RERO"}], "preferred_name": "Haberer, Gisela", "authorized_access_point": "Haberer, Gisela"} 1 +2024-09-11 09:07:31.690034 2024-09-11 09:07:31.690039 a4d4db1e-37c5-45f4-8cfe-dea5ff625cb5 {"md5": "0f4b86095ed53057da1addc5b7cca53d", "pid": "A020148399", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020148399", "source": "RERO"}], "preferred_name": "Velia, Qemal", "authorized_access_point": "Velia, Qemal"} 1 +2024-09-11 09:07:31.745179 2024-09-11 09:07:31.745183 3bf620e2-aa3c-4878-a732-3f9900718417 {"md5": "99f36508e5cef87acc9a32e02e0550d4", "pid": "A020157288", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020157288", "source": "RERO"}], "preferred_name": "Herrera, Velino", "authorized_access_point": "Herrera, Velino"} 1 +2024-09-11 09:07:31.799154 2024-09-11 09:07:31.799158 1b6e5004-2c34-4631-9f34-375dae9b976c {"md5": "bb8e537cb09f93f0294a207591faeb22", "pid": "A020168707", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020168707", "source": "RERO"}], "preferred_name": "Glauser, Louis", "authorized_access_point": "Glauser, Louis"} 1 +2024-09-11 09:07:31.853351 2024-09-11 09:07:31.853354 4035f28d-3b94-44a2-88c0-e10931841584 {"md5": "c5223cde58719554292e06f2b1f46aa9", "pid": "A020209272", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020209272", "source": "RERO"}], "preferred_name": "Valdambrini, Fabio", "authorized_access_point": "Valdambrini, Fabio"} 1 +2024-09-11 09:07:31.909531 2024-09-11 09:07:31.909537 e45c3fac-6bc8-4de2-846e-8d8c536908ec {"md5": "37e0c8fb7d2be9acf70c3e20c13f8fbc", "pid": "A020211267", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020211267", "source": "RERO"}], "preferred_name": "Nowakowska, Wanda", "authorized_access_point": "Nowakowska, Wanda"} 1 +2024-09-11 09:07:31.963704 2024-09-11 09:07:31.963707 896e0163-9d45-4736-96de-2e619c20dd09 {"md5": "2dc399c2a45128ab6758960c17146ef7", "pid": "A020228645", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020228645", "source": "RERO"}], "preferred_name": "Routon, Kenneth", "authorized_access_point": "Routon, Kenneth"} 1 +2024-09-11 09:07:32.03242 2024-09-11 09:07:32.032425 69800064-0d90-4a1b-bdf7-29941d39b52a {"md5": "5bcb99015ed15bea353bbb03aeddce54", "pid": "A020232527", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020232527", "source": "RERO"}], "preferred_name": "Rey, Antoinette", "authorized_access_point": "Rey, Antoinette", "biographical_information": ["Dates de vie: 1880-1938"]} 1 +2024-09-11 09:07:32.091951 2024-09-11 09:07:32.091955 ce320126-1e24-4bb4-bb51-4ca53bd3b027 {"md5": "9d7a9d3c9847b5ee5ebd77b5dea1f045", "pid": "A020244189", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020244189", "source": "RERO"}], "preferred_name": "Agbloe, Marlys", "authorized_access_point": "Agbloe, Marlys"} 1 +2024-09-11 09:07:32.140041 2024-09-11 09:07:32.140044 e2f1c9d9-5f44-4d38-8cfa-b5feeb0a68ad {"md5": "a6da51e854272680a26ebfc1e3832c5b", "pid": "A020276000", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020276000", "source": "RERO"}], "preferred_name": "Keneman, Ayn F", "authorized_access_point": "Keneman, Ayn F"} 1 +2024-09-11 09:07:32.194972 2024-09-11 09:07:32.194977 6070a8ef-0364-4418-8a5e-08dcbfb04388 {"md5": "6fb4076d9ff5da7d21ae26f46a02c997", "pid": "A020278434", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020278434", "source": "RERO"}], "preferred_name": "Thoubert, Thierry", "authorized_access_point": "Thoubert, Thierry"} 1 +2024-09-11 09:07:32.247505 2024-09-11 09:07:32.247509 db7a447d-9026-4325-8dcd-a39408e842e6 {"md5": "19c6dc9d74e25727f0c06e616baaa89e", "pid": "A020285886", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020285886", "source": "RERO"}], "preferred_name": "Furon, Frédéric", "authorized_access_point": "Furon, Frédéric"} 1 +2024-09-11 09:07:32.306094 2024-09-11 09:07:32.306099 f95281f0-1ac4-4f3f-ac5a-f46c09932092 {"md5": "ea94b6d6b0b31447e5eea76e7ba703a7", "pid": "A020287613", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020287613", "source": "RERO"}], "preferred_name": "Péquignot, Priscilla", "authorized_access_point": "Péquignot, Priscilla"} 1 +2024-09-11 09:07:32.360872 2024-09-11 09:07:32.360876 5496945a-022d-4072-b084-4bfcb4b7094c {"md5": "849945d2d560a3e7c4bde8bec648dfb3", "pid": "A020317114", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020317114", "source": "RERO"}], "preferred_name": "Herath, H.M.A", "authorized_access_point": "Herath, H.M.A"} 1 +2024-09-11 09:07:32.421815 2024-09-11 09:07:32.421819 6e2bf8af-4d95-454b-88f3-73c6b8dd47fe {"md5": "54c52fa114390377ada01d4fc005d61d", "pid": "A020337204", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020337204", "source": "RERO"}], "preferred_name": "Symposium on the Reliability of Nuclear Power Plants (1975 :", "authorized_access_point": "Symposium on the Reliability of Nuclear Power Plants (1975 : Innsbruck)"} 1 +2024-09-11 09:07:32.493119 2024-09-11 09:07:32.493124 5034d9c9-ea6c-4afa-bae3-680654577ca1 {"md5": "4d55cda9982d5056c0667f99c1f8f102", "pid": "A020340385", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020340385", "source": "RERO"}], "date_of_birth": "1956", "preferred_name": "Li, jun,", "parallel_access_point": ["李军, 1956-"], "authorized_access_point": "Li, jun, 1956-"} 1 +2024-09-11 09:07:32.544783 2024-09-11 09:07:32.544786 6e16b24c-359c-4971-a998-8248fa2a7039 {"md5": "411b49c4ccbde80632b70efe3e5e1830", "pid": "A020351109", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020351109", "source": "RERO"}], "preferred_name": "Petersen, Syndy", "authorized_access_point": "Petersen, Syndy"} 1 +2024-09-11 09:07:32.600656 2024-09-11 09:07:32.600659 f888ef9e-2b38-4aa2-b186-b121f2137d8a {"md5": "dfaed0482d417cc0dbac14bc70fe4c9a", "pid": "A020355982", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020355982", "source": "RERO"}], "preferred_name": "Chief", "authorized_access_point": "Chief", "biographical_information": ["Chief est un musicien lausannois né en 1981."]} 1 +2024-09-11 09:07:32.652994 2024-09-11 09:07:32.652999 29c9b8ca-79df-4623-aa04-75289da50cc0 {"md5": "e2fe0e30758a284248991c94e291fac2", "pid": "A020360095", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020360095", "source": "RERO"}], "variant_name": ["Simposio de Física Matemática", "Simposio Internacional de Física Matemática", "Symposium on Mathematical Physics"], "preferred_name": "International Symposium on Mathematical Physics", "variant_access_point": ["Simposio de Física Matemática", "Simposio Internacional de Física Matemática", "Symposium on Mathematical Physics"], "authorized_access_point": "International Symposium on Mathematical Physics"} 1 +2024-09-11 09:07:32.708375 2024-09-11 09:07:32.708379 145219ac-3c7d-4982-863d-e896359b6159 {"md5": "f5bcee19e70ca1f2592e1da100064db1", "pid": "A020370205", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020370205", "source": "RERO"}], "preferred_name": "Lahiri, Jayasri", "authorized_access_point": "Lahiri, Jayasri"} 1 +2024-09-11 09:07:32.762018 2024-09-11 09:07:32.762022 b140e374-2f3a-41ee-bf71-4e5764bbd548 {"md5": "925c51eaefe20d19b4cc2cdb877e61c8", "pid": "A020376367", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020376367", "source": "RERO"}], "preferred_name": "Garimond, Hippolyte", "authorized_access_point": "Garimond, Hippolyte"} 1 +2024-09-11 09:07:32.819099 2024-09-11 09:07:32.819102 feb5af82-d75d-431f-9e12-88db69e71dca {"md5": "21b7c811e6c81e738f5086fff66a2144", "pid": "A020377292", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020377292", "source": "RERO"}], "preferred_name": "Linder, Mauritius", "authorized_access_point": "Linder, Mauritius"} 1 +2024-09-11 09:07:32.87705 2024-09-11 09:07:32.877055 99507deb-1ae7-4f1b-b74c-806def0c08e0 {"md5": "ea4f8f62036de48a90126cc13101e131", "pid": "A020398544", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020398544", "source": "RERO"}], "preferred_name": "Lojahn, Sandra", "authorized_access_point": "Lojahn, Sandra"} 1 +2024-09-11 09:07:32.927746 2024-09-11 09:07:32.92775 d4a038a7-762a-45fe-b188-aedd6af336f8 {"md5": "9d04eee12f77a1e2c3d5ec5deb47d103", "pid": "A020413592", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020413592", "source": "RERO"}], "variant_name": ["Comissão para a Igualdade e para os Direitos das Mulheres", "CIDM (Comissão para a Igualdade e para os Direitos das Mulheres)", "Portugal. Commission for Equality and Women's Rights", "Portugal. Commission pour l'égalité et les droits des femmes", "Portugal. Commission pour l'égalité et pour les droits des femmes"], "preferred_name": "Portugal. Comissão para a Igualdade e para os Direitos das Mulheres", "variant_access_point": ["Comissão para a Igualdade e para os Direitos das Mulheres", "CIDM (Comissão para a Igualdade e para os Direitos das Mulheres)", "Portugal. Commission for Equality and Women's Rights", "Portugal. Commission pour l'égalité et les droits des femmes", "Portugal. Commission pour l'égalité et pour les droits des femmes"], "authorized_access_point": "Portugal. Comissão para a Igualdade e para os Direitos das Mulheres"} 1 +2024-09-11 09:07:32.980035 2024-09-11 09:07:32.980038 1c927370-5793-4023-8e6c-3bb71e021c2a {"md5": "7e315210e057c89cc4a6d91415ce1ee8", "pid": "A020415873", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020415873", "source": "RERO"}], "preferred_name": "Burofami", "authorized_access_point": "Burofami"} 1 +2024-09-11 09:07:33.035905 2024-09-11 09:07:33.035912 7cc19e60-d018-4eb0-8aa8-17e374f9736f {"md5": "6a28985ed19f990cde61714fd0105097", "pid": "A020417148", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020417148", "source": "RERO"}], "preferred_name": "Debunne, Sandrine", "authorized_access_point": "Debunne, Sandrine"} 1 +2024-09-11 09:07:33.089818 2024-09-11 09:07:33.089821 706c2829-e6a9-440e-985d-babf4d2966a1 {"md5": "b1c0cb97f7ae6fd8f05e44e93e4f2bbe", "pid": "A020436263", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020436263", "source": "RERO"}], "preferred_name": "Harmony, Korine", "authorized_access_point": "Harmony, Korine"} 1 +2024-09-11 09:07:33.15028 2024-09-11 09:07:33.150285 dc03aa47-859c-421c-9a12-0722f92a2723 {"md5": "464cfb9c8937fc2180420e104d1be11b", "pid": "A020461666", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020461666", "source": "RERO"}], "preferred_name": "Kern, Friederike", "authorized_access_point": "Kern, Friederike"} 1 +2024-09-11 09:07:33.215973 2024-09-11 09:07:33.215978 04541a13-d996-4487-8eaa-4289b0c7638e {"md5": "9dc2912974eb6b89c32da1f4a6e7c3f4", "pid": "A020462104", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020462104", "source": "RERO"}], "preferred_name": "Dengler, Paul", "authorized_access_point": "Dengler, Paul"} 1 +2024-09-11 09:07:33.271642 2024-09-11 09:07:33.271647 c254edb0-c172-434f-8e66-6c85c57ccfb3 {"md5": "a6302354e593a8f35a3d7a567adc3666", "pid": "A020465572", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020465572", "source": "RERO"}], "preferred_name": "Buffat, Aurélie", "authorized_access_point": "Buffat, Aurélie"} 1 +2024-09-11 09:07:33.325801 2024-09-11 09:07:33.325805 094f092f-5cf5-4f85-a7a7-c9f05e4e8ff0 {"md5": "71debf2d0b774b427fc7ddecb822bd1b", "pid": "A020465592", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020465592", "source": "RERO"}], "preferred_name": "Barisoni, Paolo", "authorized_access_point": "Barisoni, Paolo"} 1 +2024-09-11 09:07:33.381149 2024-09-11 09:07:33.381154 04f96ef7-e75a-4c61-8437-57a8eb895515 {"md5": "89d1a4371ddc13a3e7f1f71793bb0268", "pid": "A020471717", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020471717", "source": "RERO"}], "preferred_name": "Eastman, David L", "authorized_access_point": "Eastman, David L"} 1 +2024-09-11 09:07:33.443261 2024-09-11 09:07:33.443265 0d84c150-c948-437f-a997-41591cfd88ee {"md5": "5e7d86516d77d8f9cc4dc135d6ed6cc2", "pid": "A020478658", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020478658", "source": "RERO"}], "preferred_name": "Scowen, Reed", "authorized_access_point": "Scowen, Reed"} 1 +2024-09-11 09:07:33.498464 2024-09-11 09:07:33.498467 f7a5b530-b9c4-4694-9422-d9ed34fa79e6 {"md5": "5d4df33d9929726a1bbc7e15e31d02e3", "pid": "A020487139", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020487139", "source": "RERO"}], "preferred_name": "Leeners, Jörg", "authorized_access_point": "Leeners, Jörg"} 1 +2024-09-11 09:07:33.554566 2024-09-11 09:07:33.554569 eff81e1f-3be8-4fac-a094-2e795555095f {"md5": "c15d1bbd30675119e81ca356d5a4a933", "pid": "A020500799", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A020500799", "source": "RERO"}], "preferred_name": "Lapp, Axel", "authorized_access_point": "Lapp, Axel"} 1 +2024-09-11 09:07:33.622124 2024-09-11 09:07:33.622127 da1fd24b-0e12-4317-bd09-3c9fc575558f {"md5": "8e7d3beeeb7fded857380e800462d442", "pid": "A021510454", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021510454", "source": "RERO"}], "preferred_name": "Géorgie (république). Armée", "authorized_access_point": "Géorgie (république). Armée"} 1 +2024-09-11 09:07:33.679247 2024-09-11 09:07:33.679252 bbacf90b-b476-47a1-8dfd-6a04af48f082 {"md5": "8e4bcd9876f18b5649c09526784858f4", "pid": "A021514179", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021514179", "source": "RERO"}], "date_of_birth": "1979", "preferred_name": "Dubbini, Rachele,", "authorized_access_point": "Dubbini, Rachele, 1979-", "biographical_information": ["Archéologue"]} 1 +2024-09-11 09:07:33.749382 2024-09-11 09:07:33.749386 d0dd6a62-37da-4acc-9d99-c9e866a3fae1 {"md5": "97d7dbb90fef4bbb05a583c375862718", "pid": "A021535410", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021535410", "source": "RERO"}], "preferred_name": "Sanin, Francisco", "authorized_access_point": "Sanin, Francisco"} 1 +2024-09-11 09:07:33.81151 2024-09-11 09:07:33.811514 7dabea62-99f1-42fb-a15b-288d2c08f195 {"md5": "5a0d8b6e4d99d0a39d12b2eddc9e88fc", "pid": "A021609811", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021609811", "source": "RERO"}], "preferred_name": "Becker, Madeleine", "authorized_access_point": "Becker, Madeleine"} 1 +2024-09-11 09:07:33.870336 2024-09-11 09:07:33.870344 aab2c13f-fd0e-41cb-ad7e-0b1d376ff8e9 {"md5": "c89ccc4668122d4b6bc384421f6d8aca", "pid": "A021617173", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021617173", "source": "RERO"}], "preferred_name": "Olopade, Olusoga", "authorized_access_point": "Olopade, Olusoga"} 1 +2024-09-11 09:07:33.927579 2024-09-11 09:07:33.927584 b132c69a-f7d0-455b-86b3-001b851048c5 {"md5": "3cd6df071f8def8853cecc266532ea8c", "pid": "A021621256", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021621256", "source": "RERO"}], "date_of_birth": "1624", "date_of_death": "1701", "preferred_name": "Cavelier, Jean,", "authorized_access_point": "Cavelier, Jean, 1624-1701"} 1 +2024-09-11 09:07:33.994138 2024-09-11 09:07:33.994142 bcc27576-39d8-4b3c-8d94-35bea0411cfe {"md5": "efbb7c6efe5682a6786a10025107f6f9", "pid": "A021627558", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021627558", "source": "RERO"}], "preferred_name": "Wäckerle, Josef", "authorized_access_point": "Wäckerle, Josef"} 1 +2024-09-11 09:07:34.04802 2024-09-11 09:07:34.048025 1b30c7a1-939a-4d64-82d2-781077911025 {"md5": "a05f8ac8dfb7c920d83a3a84be0bd4db", "pid": "A021643724", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021643724", "source": "RERO"}], "variant_name": ["Wen-hsien, Guo"], "preferred_name": "Guo, Wen-hsien", "variant_access_point": ["Wen-hsien, Guo"], "authorized_access_point": "Guo, Wen-hsien"} 1 +2024-09-11 09:07:34.110863 2024-09-11 09:07:34.110867 5140f835-e68e-4a97-baae-5d85c9442b60 {"md5": "9395cd304b8b3547a6b9e1f2ef03cd97", "pid": "A021650553", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021650553", "source": "RERO"}], "preferred_name": "Öhninger, Johann J", "authorized_access_point": "Öhninger, Johann J"} 1 +2024-09-11 09:07:34.176247 2024-09-11 09:07:34.176252 919d62cb-2b9e-479b-a393-6cbca91e404f {"md5": "2ebfe516252e7d579ac4682df48e08ea", "pid": "A021653398", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021653398", "source": "RERO"}], "preferred_name": "Conférence permanente des pouvoirs locaux et régionaux de l'Europe (1993 :", "authorized_access_point": "Conférence permanente des pouvoirs locaux et régionaux de l'Europe (1993 : Stockholm). Séminaire"} 1 +2024-09-11 09:07:34.244881 2024-09-11 09:07:34.244884 825d294c-a8fd-4ca2-bbc0-6be0071f958e {"md5": "d18e8ec6cd4d2ff70910a0e852e7295d", "pid": "A021657316", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021657316", "source": "RERO"}], "preferred_name": "Bustos, Natacha", "authorized_access_point": "Bustos, Natacha"} 1 +2024-09-11 09:07:34.297828 2024-09-11 09:07:34.297832 c1feea8e-9395-4edd-916b-0050b5294ac0 {"md5": "aa6d9029b2076003c12eac200769efcc", "pid": "A021665049", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021665049", "source": "RERO"}], "preferred_name": "Institut atlantique des affaires internationales (Paris). Conference (1980 :", "authorized_access_point": "Institut atlantique des affaires internationales (Paris). Conference (1980 : México)"} 1 +2024-09-11 09:07:34.358829 2024-09-11 09:07:34.358833 2e2b5e3a-d02a-4045-8da6-cc21bba84042 {"md5": "c53579a46e8ef561ee11affd6465c674", "pid": "A021681210", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021681210", "source": "RERO"}], "variant_name": ["Rutgers University Art Gallery", "Rutgers University. University Art Gallery", "University Art Gallery (Rutgers University)"], "preferred_name": "Rutgers University (New Brunswick). Art Gallery", "variant_access_point": ["Rutgers University Art Gallery", "Rutgers University. University Art Gallery", "University Art Gallery (Rutgers University)"], "authorized_access_point": "Rutgers University (New Brunswick). Art Gallery"} 1 +2024-09-11 09:07:34.411133 2024-09-11 09:07:34.411137 97061014-d88f-4ee2-a7f3-5b4a7ea28815 {"md5": "4b4bd0dbcecbc1b0547aecc471fc648b", "pid": "A021706387", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021706387", "source": "RERO"}], "preferred_name": "Holzer, Bettina", "authorized_access_point": "Holzer, Bettina"} 1 +2024-09-11 09:07:34.469687 2024-09-11 09:07:34.469692 4b6c834a-25f2-47c3-99bd-0ddcd3ffdb83 {"md5": "03a949318c38593d5a07d7122885edae", "pid": "A021753974", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021753974", "source": "RERO"}], "variant_name": ["Mneva, Nadežda Evgenʹevna"], "preferred_name": "Mneva, Nadezhda Evgenʹevna", "variant_access_point": ["Mneva, Nadežda Evgenʹevna"], "parallel_access_point": ["Мнева, Надежда Евгеньевна"], "authorized_access_point": "Mneva, Nadezhda Evgenʹevna"} 1 +2024-09-11 09:07:34.524755 2024-09-11 09:07:34.524759 6ca0acd6-c442-4458-94ec-5d4cba6c12f8 {"md5": "05447b0bc4c0ecfb973a7a7201958d4f", "pid": "A021794133", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021794133", "source": "RERO"}], "variant_name": ["Šušurin, S.F"], "preferred_name": "Shushurin, S.F", "variant_access_point": ["Šušurin, S.F"], "parallel_access_point": ["Шушурин, С.Ф"], "authorized_access_point": "Shushurin, S.F"} 1 +2024-09-11 09:07:34.578261 2024-09-11 09:07:34.578264 b81be558-52f4-4132-b175-4a0f5500744e {"md5": "32647e80f4c09cd80513ca4eca3e6a64", "pid": "A021819945", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021819945", "source": "RERO"}], "variant_name": ["Knjazev, Boris Vladimirovič"], "preferred_name": "Kni︠a︡zev, Boris Vladimirovich", "variant_access_point": ["Knjazev, Boris Vladimirovič"], "parallel_access_point": ["Князев, Борис Владимирович"], "authorized_access_point": "Kni︠a︡zev, Boris Vladimirovich"} 1 +2024-09-11 09:07:34.637612 2024-09-11 09:07:34.63762 6bd6e644-d517-4a16-a650-d90d43a2c810 {"md5": "7beb6f58c30f066c7f21b7ae60e7d7f7", "pid": "A021917468", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021917468", "source": "RERO"}], "preferred_name": "Fānik, Fahd", "parallel_access_point": ["فانك، فهد"], "authorized_access_point": "Fānik, Fahd"} 1 +2024-09-11 09:07:34.741712 2024-09-11 09:07:34.741716 f8662894-a9e9-431d-bb4b-1b7e1e5fe4f2 {"md5": "69db42fb0411c30e5710a1f25784b3dd", "pid": "A021918604", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021918604", "source": "RERO"}], "preferred_name": "Naṣr, Marsel", "authorized_access_point": "Naṣr, Marsel"} 1 +2024-09-11 09:07:34.806731 2024-09-11 09:07:34.806735 fa698306-7a4d-4c1a-bea7-49c7300a2b75 {"md5": "b3c7ad00a28df37f721ea228fcbdca16", "pid": "A021921193", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021921193", "source": "RERO"}], "preferred_name": "Topuridze, Elena Ivanovna", "parallel_access_point": ["Топуридзе, Елена Ивановна"], "authorized_access_point": "Topuridze, Elena Ivanovna"} 1 +2024-09-11 09:07:34.860836 2024-09-11 09:07:34.86084 d3bd155a-9815-49fd-9b28-8a7cfcdbf801 {"md5": "f0eda0bc832656a50327e3b70cd087aa", "pid": "A021975601", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021975601", "source": "RERO"}], "preferred_name": "Frances-Claude", "authorized_access_point": "Frances-Claude"} 1 +2024-09-11 09:07:34.93257 2024-09-11 09:07:34.932574 60e2316f-6bab-46f2-9e87-8dd58c913e7a {"md5": "44957396e4b84d1a5ccfcac3f8fef724", "pid": "A021988179", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021988179", "source": "RERO"}], "preferred_name": "Stojczew, Emil", "authorized_access_point": "Stojczew, Emil"} 1 +2024-09-11 09:07:34.990978 2024-09-11 09:07:34.990981 da67a2ab-96fa-4730-967e-3b213519e1e5 {"md5": "79cf0941db09bfe008dacef31efe8e5e", "pid": "A021992182", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021992182", "source": "RERO"}], "preferred_name": "Fondeville, Richard", "authorized_access_point": "Fondeville, Richard", "biographical_information": ["Dates de vie: 18e s."]} 1 +2024-09-11 09:07:35.057707 2024-09-11 09:07:35.057712 cb37916b-0f53-4510-a675-edce0cf255e8 {"md5": "35647460f38a0e3176b2706ea217f0f6", "pid": "A021995847", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A021995847", "source": "RERO"}], "preferred_name": "Bernecker, Cathy", "authorized_access_point": "Bernecker, Cathy"} 1 +2024-09-11 09:07:35.110713 2024-09-11 09:07:35.110717 c1dbd5a1-0d28-4530-83cd-f5e556b70a50 {"md5": "96c31c08cd761d74f80c9833adbf3c23", "pid": "A022010442", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022010442", "source": "RERO"}], "preferred_name": "Europäische Anwaltsvereinigung. Tagung 2012 :", "authorized_access_point": "Europäische Anwaltsvereinigung. Tagung (46 : 2012 : Lisboa)"} 1 +2024-09-11 09:07:35.168683 2024-09-11 09:07:35.168688 5a53c25a-fe7f-4709-9b60-7cea2f3e25d2 {"md5": "3e274ca5ce60fa920f0015f55db74d1f", "pid": "A022253194", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022253194", "source": "RERO"}], "date_of_birth": "1904", "date_of_death": "2000", "preferred_name": "Gielgud, John,", "authorized_access_point": "Gielgud, John, 1904-2000"} 1 +2024-09-11 09:07:35.226971 2024-09-11 09:07:35.226975 093a5ccf-ef26-4d20-8235-e03c344127f0 {"md5": "a1f57da6ec168697dae3e909df78bd45", "pid": "A022261345", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022261345", "source": "RERO"}], "date_of_birth": "1980", "preferred_name": "Grosser, Florian,", "authorized_access_point": "Grosser, Florian, 1980-"} 1 +2024-09-11 09:07:35.281055 2024-09-11 09:07:35.281059 d5337102-3201-45cf-937c-c5c342569f79 {"md5": "83db2d5ebda30dc5b9fd95e6daccd752", "pid": "A022263478", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022263478", "source": "RERO"}], "preferred_name": "Krasiński, Franciszek", "authorized_access_point": "Krasiński, Franciszek"} 1 +2024-09-11 09:07:35.335638 2024-09-11 09:07:35.335644 ada65de4-f5dc-4ebd-829f-9a715a9213c2 {"md5": "8ae5d68d4207b7d6a393df0666f8e608", "pid": "A022416217", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022416217", "source": "RERO"}], "preferred_name": "Coordination 2010 2010 :", "authorized_access_point": "Coordination 2010 (12 : 2010 : Amsterdam)"} 1 +2024-09-11 09:07:35.389953 2024-09-11 09:07:35.389956 d6434bc8-a5d3-42ef-8b33-a627d40cffb8 {"md5": "e99cec8a29a3a16df2e162206b029dd1", "pid": "A022476006", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022476006", "source": "RERO"}], "preferred_name": "Exposition internationale (1876 :", "authorized_access_point": "Exposition internationale (1876 : Philadelphia). Section suisse"} 1 +2024-09-11 09:07:35.451591 2024-09-11 09:07:35.451597 1e29177f-3308-48d1-90ec-e96eb62cb318 {"md5": "d7efed370f1d8475082a44ae5d3d21f9", "pid": "A022502492", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022502492", "source": "RERO"}], "preferred_name": "Joe Cuba Sextette", "authorized_access_point": "Joe Cuba Sextette"} 1 +2024-09-11 09:07:35.50901 2024-09-11 09:07:35.509015 59ecb3a7-5422-4ea4-974a-5809b1f297e0 {"md5": "16dd8812df6cc85ad9db03feded9ae15", "pid": "A022508588", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022508588", "source": "RERO"}], "preferred_name": "Heierle, Anita", "authorized_access_point": "Heierle, Anita"} 1 +2024-09-11 09:07:35.572555 2024-09-11 09:07:35.572558 2e4e1593-07f2-4f24-9ce9-a0df778d3354 {"md5": "bebd06650afa42f0182aca8d08eb3e08", "pid": "A022508598", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022508598", "source": "RERO"}], "preferred_name": "Tambor, Joseph", "authorized_access_point": "Tambor, Joseph"} 1 +2024-09-11 09:07:35.626099 2024-09-11 09:07:35.626104 28105b53-6201-48f4-abea-207ba056d611 {"md5": "67d70387b861f68c87731ddfdbcfba2b", "pid": "A022512216", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022512216", "source": "RERO"}], "preferred_name": "Pham, Diane", "authorized_access_point": "Pham, Diane"} 1 +2024-09-11 09:07:35.683224 2024-09-11 09:07:35.683229 c6aa340a-5a8e-43b9-bd9c-97efdea41107 {"md5": "370d37edf66acbc6fde39a379edc5643", "pid": "A022533394", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022533394", "source": "RERO"}], "preferred_name": "Reimer, Vera", "authorized_access_point": "Reimer, Vera"} 1 +2024-09-11 09:07:35.744005 2024-09-11 09:07:35.744008 5424862a-be48-4fb9-933e-0073c7634b5d {"md5": "b636c0ec8b0c09a66a82f5ea4d1e44ca", "pid": "A022545173", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022545173", "source": "RERO"}], "preferred_name": "Avenell, Simon Andrew", "authorized_access_point": "Avenell, Simon Andrew"} 1 +2024-09-11 09:07:35.805879 2024-09-11 09:07:35.805881 1aa220d2-72da-4b36-a0e4-b701a44ba7a7 {"md5": "ca69d6bf569a1b7e1dd2085c62a1cb9c", "pid": "A022553969", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022553969", "source": "RERO"}], "preferred_name": "Paquet, François", "authorized_access_point": "Paquet, François"} 1 +2024-09-11 09:07:35.86919 2024-09-11 09:07:35.869194 15a5cc28-a9e8-4056-b81d-176683d88038 {"md5": "a535289039f52201c4ffffe37de0d379", "pid": "A022563739", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022563739", "source": "RERO"}], "preferred_name": "Meyer, Lia", "authorized_access_point": "Meyer, Lia"} 1 +2024-09-11 09:07:35.92874 2024-09-11 09:07:35.928744 9438148f-8d70-4a93-af3d-90e4e3d991c8 {"md5": "7453829234b3e0131cbd543a05c3ebb2", "pid": "A022609222", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022609222", "source": "RERO"}], "preferred_name": "Klášter Nový Dvůr", "authorized_access_point": "Klášter Nový Dvůr"} 1 +2024-09-11 09:07:35.984633 2024-09-11 09:07:35.984638 e18df1f8-498a-4302-ac66-fbfa13e482f6 {"md5": "67585d763c7dd1e697c445611a3a27ca", "pid": "A022669691", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022669691", "source": "RERO"}], "preferred_name": "Toisol, J", "authorized_access_point": "Toisol, J"} 1 +2024-09-11 09:07:36.049887 2024-09-11 09:07:36.049892 388b47e2-bf60-4d22-9b80-e3f29752d6b0 {"md5": "3fc913f3b365de6595cedc913b8d7154", "pid": "A022727201", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022727201", "source": "RERO"}], "preferred_name": "Nidermeyr, Marcus", "authorized_access_point": "Nidermeyr, Marcus"} 1 +2024-09-11 09:07:36.115465 2024-09-11 09:07:36.11547 73803711-d98e-4805-b368-5de0b5a9d6fb {"md5": "6bad1a558078c072628543876c8b690b", "pid": "A022728227", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022728227", "source": "RERO"}], "preferred_name": "Wiltener Sängerknaben", "authorized_access_point": "Wiltener Sängerknaben"} 1 +2024-09-11 09:07:36.169163 2024-09-11 09:07:36.169166 613b4d73-4654-41f1-90f9-242963ebe5e2 {"md5": "52ca3af841f973d6345131ac64d943dd", "pid": "A022750943", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022750943", "source": "RERO"}], "preferred_name": "Theimer, Uwe", "authorized_access_point": "Theimer, Uwe"} 1 +2024-09-11 09:07:36.228327 2024-09-11 09:07:36.228332 8c597c47-5667-469a-bde2-3df22dfff6b8 {"md5": "b12e4e7112233a1635c9bbcc009d7f7c", "pid": "A022755606", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022755606", "source": "RERO"}], "preferred_name": "Trio d'anches René Daraux", "authorized_access_point": "Trio d'anches René Daraux"} 1 +2024-09-11 09:07:36.282648 2024-09-11 09:07:36.282652 4a1a970d-462e-4b98-a48f-b3aa81f27829 {"md5": "1e9da8774566cb37c1a412360a5756b0", "pid": "A022762257", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022762257", "source": "RERO"}], "preferred_name": "Iovanovich, Zhivoin", "authorized_access_point": "Iovanovich, Zhivoin"} 1 +2024-09-11 09:07:36.337562 2024-09-11 09:07:36.337566 75186ea0-3969-49e8-a533-5c26126ce1e0 {"md5": "27575a7b9e565ee02f78f37d2dd7f1f4", "pid": "A022774320", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022774320", "source": "RERO"}], "preferred_name": "Love-Trade, Jack", "authorized_access_point": "Love-Trade, Jack"} 1 +2024-09-11 09:07:36.402654 2024-09-11 09:07:36.402659 011d62cb-751b-4e64-b4e6-c65b0e51e328 {"md5": "a466a5730dfa35a2210bde9b41bc927c", "pid": "A022779592", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022779592", "source": "RERO"}], "date_of_birth": "?", "date_of_death": "1718", "preferred_name": "ONeal, Daniel,", "authorized_access_point": "ONeal, Daniel, ?-1718"} 1 +2024-09-11 09:07:36.468854 2024-09-11 09:07:36.468858 0cf80d2f-f9e6-471a-ad8c-b9c638633dae {"md5": "79dd7c9825cf81a2455e1c0016d8a4df", "pid": "A022780159", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022780159", "source": "RERO"}], "date_of_birth": "1740", "date_of_death": "1828", "preferred_name": "Oriel, John Foster,", "authorized_access_point": "Oriel, John Foster, 1740-1828"} 1 +2024-09-11 09:07:36.534415 2024-09-11 09:07:36.534418 09b03c9e-1f32-403c-b6a9-95436400be44 {"md5": "405b49c6ccfdc6b2d3c966ec5114b148", "pid": "A022784340", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022784340", "source": "RERO"}], "preferred_name": "D. M", "authorized_access_point": "D. M"} 1 +2024-09-11 09:07:36.662447 2024-09-11 09:07:36.66245 592ab2d8-86b2-4e2d-b29a-1c14d7050b1b {"md5": "c08ee6fbdf66517a1f783c6a31a8dcbc", "pid": "A022802138", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "of Nuthill", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022802138", "source": "RERO"}], "preferred_name": "Thomson, William, of Nuthill", "authorized_access_point": "Thomson, William, of Nuthill"} 1 +2024-09-11 09:07:36.713009 2024-09-11 09:07:36.713014 ace80be2-1ed7-45b9-b012-c8bca473e649 {"md5": "a149ac964939b416c32bb7a235a0ae64", "pid": "A022802695", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022802695", "source": "RERO"}], "preferred_name": "Layman of the established Church", "authorized_access_point": "Layman of the established Church"} 1 +2024-09-11 09:07:36.767875 2024-09-11 09:07:36.767882 cf6ec4be-a7e3-4e8a-81bd-8ecbfec5ffcb {"md5": "febf5a460886a1a53843edd938bdf527", "pid": "A022817751", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "M", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022817751", "source": "RERO"}], "preferred_name": "Hayman, John, M", "authorized_access_point": "Hayman, John, M"} 1 +2024-09-11 09:07:36.826716 2024-09-11 09:07:36.82672 bcc640b2-9a54-4c6d-ac98-41206d2ddfcf {"md5": "a13e8d6388cd5b26aadb28831131f91b", "pid": "A022823883", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022823883", "source": "RERO"}], "preferred_name": "Maclane, Donald", "authorized_access_point": "Maclane, Donald"} 1 +2024-09-11 09:07:36.881266 2024-09-11 09:07:36.881271 c266ec9a-dfdb-4635-ae8c-510419ddefb1 {"md5": "40679ad80a69ff5426f5735f81a6e708", "pid": "A022833947", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022833947", "source": "RERO"}], "preferred_name": "Aird, Joannes", "authorized_access_point": "Aird, Joannes"} 1 +2024-09-11 09:07:36.947307 2024-09-11 09:07:36.947312 0905bb44-6995-40a6-a1a1-852935feeee3 {"md5": "73e57fc8e50330e544c872c03f873ea5", "pid": "A022844215", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022844215", "source": "RERO"}], "date_of_birth": "1705", "date_of_death": "1780", "preferred_name": "Elliot, Nathaniel,", "authorized_access_point": "Elliot, Nathaniel, 1705-1780"} 1 +2024-09-11 09:07:37.000897 2024-09-11 09:07:37.0009 615b46bf-200d-422a-8e2d-2249405e2fef {"md5": "2bcd54659357ed3aaa7d661ab4e55f34", "pid": "A022850968", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022850968", "source": "RERO"}], "date_of_birth": "1725", "date_of_death": "1794", "preferred_name": "Reader, Thomas,", "authorized_access_point": "Reader, Thomas, 1725-1794"} 1 +2024-09-11 09:07:37.057747 2024-09-11 09:07:37.057751 f546e396-5ea4-4786-b418-8eb26681806a {"md5": "d2b35e83abbdc983492a1c9dd7bf38de", "pid": "A022851528", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022851528", "source": "RERO"}], "preferred_name": "Committee of Association of the County of York", "authorized_access_point": "Committee of Association of the County of York"} 1 +2024-09-11 09:07:37.113616 2024-09-11 09:07:37.11362 dabcfbe0-b2fa-4a54-af29-021996ecc6d1 {"md5": "d3dbc762463deb917b6e0eb464bfa859", "pid": "A022851951", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022851951", "source": "RERO"}], "preferred_name": "Warren (Perfumers : London, England)", "authorized_access_point": "Warren (Perfumers : London, England)"} 1 +2024-09-11 09:07:37.181532 2024-09-11 09:07:37.181535 9a34e620-175e-4838-8df5-7652cf7f8a6f {"md5": "aa12e2ac87ee68ac0dc3cd4dbacdc020", "pid": "A022877330", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022877330", "source": "RERO"}], "preferred_name": "William Otridge and Son", "authorized_access_point": "William Otridge and Son"} 1 +2024-09-11 09:07:37.237998 2024-09-11 09:07:37.238002 6f1d6fbc-f174-4572-aab6-99fa57d8b386 {"md5": "7dc64641cab5281caada39542f530402", "pid": "A022879961", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022879961", "source": "RERO"}], "preferred_name": "Great Britain. Royal Army. Fencible Cavalry", "authorized_access_point": "Great Britain. Royal Army. Fencible Cavalry"} 1 +2024-09-11 09:07:37.297515 2024-09-11 09:07:37.297519 4bbb257b-5ec5-4426-b0f8-a303b127dc4f {"md5": "3d543b2c3e5c15b6a835a341b044c49b", "pid": "A022889884", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022889884", "source": "RERO"}], "preferred_name": "Sincere Well-wisher to the Commerce and Liberty of Britain", "authorized_access_point": "Sincere Well-wisher to the Commerce and Liberty of Britain"} 1 +2024-09-11 09:07:37.351402 2024-09-11 09:07:37.351406 0970c820-8474-4aa8-a2b3-9bf4f10312c9 {"md5": "d92da98dd7c36f0f88efc239ba8e3252", "pid": "A022899841", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022899841", "source": "RERO"}], "preferred_name": "Corporation of the Shipwrights of Redrith", "authorized_access_point": "Corporation of the Shipwrights of Redrith"} 1 +2024-09-11 09:07:37.405392 2024-09-11 09:07:37.405397 e5fe8a01-6b17-430d-97a9-81d646b71653 {"md5": "c16cdf857b5f2606295d0373598d8e6b", "pid": "A022904210", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022904210", "source": "RERO"}], "date_of_birth": "?", "date_of_death": "ca. 1817", "preferred_name": "Jenkins, Peter,", "authorized_access_point": "Jenkins, Peter, ?-ca. 1817"} 1 +2024-09-11 09:07:37.479806 2024-09-11 09:07:37.47981 8e59e7c9-7fd4-4e3d-8bbd-4a9b9b51a21f {"md5": "e8d99ab25b928a5ec2c5dd102d9d4cec", "pid": "A022916519", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022916519", "source": "RERO"}], "preferred_name": "Hackney (London, England)", "authorized_access_point": "Hackney (London, England)"} 1 +2024-09-11 09:07:37.538403 2024-09-11 09:07:37.538408 0ad01d7e-139f-43cd-ae9a-7812a7a59609 {"md5": "c4ff1326e9895a40bc6d8cd6959076bf", "pid": "A022917527", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "Mme", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022917527", "source": "RERO"}], "preferred_name": "O's., Mme", "authorized_access_point": "O's., Mme"} 1 +2024-09-11 09:07:39.607391 2024-09-11 09:07:39.607396 63137381-4bbd-41de-b2a8-0426631c42b0 {"md5": "51d74288df249e301573967a5444ca15", "pid": "A023366781", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023366781", "source": "RERO"}], "preferred_name": "Nicolas, Georg", "authorized_access_point": "Nicolas, Georg"} 1 +2024-09-11 09:07:37.592803 2024-09-11 09:07:37.592806 df023468-f496-4119-a8a9-1d0d3dc84aef {"md5": "0b05dadc1857b7f9cae50e82aae2848d", "pid": "A022925286", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022925286", "source": "RERO"}], "preferred_name": "Lavater, Sue, & Co", "authorized_access_point": "Lavater, Sue, & Co"} 1 +2024-09-11 09:07:37.648005 2024-09-11 09:07:37.648009 770ed9b5-ad76-433a-af5e-7f583a5381fc {"md5": "a564419dbe4c6c87306085eaf0217b0b", "pid": "A022944034", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022944034", "source": "RERO"}], "preferred_name": "Inhabitant and Friend to the Corps", "authorized_access_point": "Inhabitant and Friend to the Corps"} 1 +2024-09-11 09:07:37.707129 2024-09-11 09:07:37.707132 f805ed9e-03c1-46a2-a746-c448c7d4def2 {"md5": "83bf3599848cc348cef160390230551c", "pid": "A022959371", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022959371", "source": "RERO"}], "preferred_name": "One of the Herd", "authorized_access_point": "One of the Herd"} 1 +2024-09-11 09:07:37.760355 2024-09-11 09:07:37.760358 718065ca-4b59-45aa-9cbf-07ae78f9567d {"md5": "75b94036a103ca93c494d8538df83c28", "pid": "A022966454", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022966454", "source": "RERO"}], "date_of_birth": "1765", "date_of_death": "1845", "preferred_name": "Smith, John Cotton,", "authorized_access_point": "Smith, John Cotton, 1765-1845"} 1 +2024-09-11 09:07:37.813109 2024-09-11 09:07:37.813112 1ceafa20-d917-4150-8ac3-3bbb16372a6b {"md5": "a1fe021b1a89a3b9bc14896686ebef43", "pid": "A022967536", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022967536", "source": "RERO"}], "preferred_name": "Church in Brattle Square (Boston, Mass.)", "authorized_access_point": "Church in Brattle Square (Boston, Mass.)"} 1 +2024-09-11 09:07:37.874529 2024-09-11 09:07:37.874533 51f996ac-c45a-43b1-bb98-e84c6da62b26 {"md5": "f45e58ea257e7e7e4fda2c2a4fbd84b6", "pid": "A022968022", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022968022", "source": "RERO"}], "preferred_name": "Litchfield North Association", "authorized_access_point": "Litchfield North Association"} 1 +2024-09-11 09:07:37.940597 2024-09-11 09:07:37.940601 b6bf124a-109c-49bd-9c54-db59f402300b {"md5": "ff1d2d40a051c0377022d0900c261473", "pid": "A022977898", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022977898", "source": "RERO"}], "preferred_name": "Giornata di studio sul Medioevo 2004 :", "authorized_access_point": "Giornata di studio sul Medioevo (2 : 2004 : Urbino)"} 1 +2024-09-11 09:07:37.997615 2024-09-11 09:07:37.997619 fa166371-8125-4f2d-b597-f70337c6662c {"md5": "eca84731885698a3e12e0725de806a6c", "pid": "A022983847", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022983847", "source": "RERO"}], "preferred_name": "Abdolrazzak, Marie", "authorized_access_point": "Abdolrazzak, Marie"} 1 +2024-09-11 09:07:38.053232 2024-09-11 09:07:38.053235 86678c63-f74b-4a23-a5ea-d1477c17efd4 {"md5": "073b0f9c0d5b73de187800522aac5f59", "pid": "A022990131", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022990131", "source": "RERO"}], "preferred_name": "Wedjolo-Akatshi, Marguerite", "authorized_access_point": "Wedjolo-Akatshi, Marguerite"} 1 +2024-09-11 09:07:38.169299 2024-09-11 09:07:38.169303 b4ffc200-9022-4a16-bdc1-e7cf5190ecd6 {"md5": "9c4e740376b1ed9bd26a59d9ce3743a6", "pid": "A022997177", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A022997177", "source": "RERO"}], "preferred_name": "Potvin, Gérard", "authorized_access_point": "Potvin, Gérard"} 1 +2024-09-11 09:07:38.228514 2024-09-11 09:07:38.228519 f1581367-301e-4fcd-bfdb-e51bf894fd2e {"md5": "5dbdf15bc85219164fb2fa2d6e59207d", "pid": "A023068067", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "veuve", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023068067", "source": "RERO"}], "preferred_name": "Fournier, Antoine, veuve", "authorized_access_point": "Fournier, Antoine, veuve"} 1 +2024-09-11 09:07:38.283288 2024-09-11 09:07:38.283292 e11e1810-64f0-448f-9e93-fb9f247608c3 {"md5": "1735d82f662ad6f5ccb7105abdf5b146", "pid": "A023086196", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023086196", "source": "RERO"}], "preferred_name": "Rojas Bedoya, José Aníbal", "authorized_access_point": "Rojas Bedoya, José Aníbal"} 1 +2024-09-11 09:07:38.332894 2024-09-11 09:07:38.332896 8d3fb005-f567-4836-a53c-8a1300bcfb42 {"md5": "b6aafe253615fabd7cff86c1d491a808", "pid": "A023112678", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023112678", "source": "RERO"}], "preferred_name": "Ecomuseo della montagna pistoiese (Rivoreta)", "authorized_access_point": "Ecomuseo della montagna pistoiese (Rivoreta)"} 1 +2024-09-11 09:07:38.387541 2024-09-11 09:07:38.387545 d09c967f-de76-4b54-93b8-2c41315c658d {"md5": "ba4aeaeeedb2812eb081a37138dea440", "pid": "A023114350", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023114350", "source": "RERO"}], "date_of_birth": "1965", "preferred_name": "Matthews, Gelien,", "authorized_access_point": "Matthews, Gelien, 1965-"} 1 +2024-09-11 09:07:38.451554 2024-09-11 09:07:38.451558 3b85fc61-565a-4242-9d42-f4a715f52689 {"md5": "8573e630e769a573f4766e3878cc1eec", "pid": "A023116130", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023116130", "source": "RERO"}], "variant_name": ["Agwu, Adibeli Nduka-"], "preferred_name": "Nduka-Agwu, Adibeli", "variant_access_point": ["Agwu, Adibeli Nduka-"], "authorized_access_point": "Nduka-Agwu, Adibeli"} 1 +2024-09-11 09:07:38.505456 2024-09-11 09:07:38.505459 dcee4b44-ca1a-40d2-a43e-e526f4dc4139 {"md5": "69a6b53dd77c244b2637a6e241b6dfd6", "pid": "A023116917", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023116917", "source": "RERO"}], "preferred_name": "Sagon, Evelyne", "authorized_access_point": "Sagon, Evelyne"} 1 +2024-09-11 09:07:39.55224 2024-09-11 09:07:39.552244 41c87888-eec7-4f1f-bf6e-678c30049364 {"md5": "0de664926ef0545d7d7472cafea2f7f9", "pid": "A023361460", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023361460", "source": "RERO"}], "preferred_name": "International Folk Art Foundation (Santa Fe)", "authorized_access_point": "International Folk Art Foundation (Santa Fe)"} 1 +2024-09-11 09:07:38.562712 2024-09-11 09:07:38.562715 c4f7be17-b67f-4a16-b2e1-a6a83f66527b {"md5": "6ee22f40e6e4e5baed27776b6db2b863", "pid": "A023154358", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023154358", "source": "RERO"}], "preferred_name": "Colloquia on \\"Sexual Violence as an International Crime: Interdisciplinary Approaches\\" (2009 :", "authorized_access_point": "Colloquia on \\"Sexual Violence as an International Crime: Interdisciplinary Approaches\\" (2009 : Den Haag)"} 1 +2024-09-11 09:07:38.620938 2024-09-11 09:07:38.620943 3784523d-904d-4ba9-beab-d68d4b5f21c2 {"md5": "f1eeca41104a601fc0ac5b45d34329f9", "pid": "A023158576", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023158576", "source": "RERO"}], "preferred_name": "Nazarevskiĭ, Aleksandr Adrianovich", "parallel_access_point": ["Назаревский, Александр Адрианович"], "authorized_access_point": "Nazarevskiĭ, Aleksandr Adrianovich"} 1 +2024-09-11 09:07:38.67561 2024-09-11 09:07:38.675614 58f2c6c7-e504-461d-a45a-a48d3cb9ee6c {"md5": "96a7cd1a195dae4eb5748c04267ac814", "pid": "A023166695", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023166695", "source": "RERO"}], "preferred_name": "Reynolds, Catherine", "authorized_access_point": "Reynolds, Catherine"} 1 +2024-09-11 09:07:38.740076 2024-09-11 09:07:38.740079 8bde71f9-1cc2-43d4-bb1a-4acf4c4e7acd {"md5": "20d8b14d1f6f3ebebe9c1ea3c5a01322", "pid": "A023168629", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023168629", "source": "RERO"}], "preferred_name": "Sipilä, Jorma", "authorized_access_point": "Sipilä, Jorma"} 1 +2024-09-11 09:07:38.797838 2024-09-11 09:07:38.797841 acf24231-c666-4b7a-bfde-02275becbd50 {"md5": "05b5e9cabc0acad386f5242a042cc63a", "pid": "A023182560", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023182560", "source": "RERO"}], "preferred_name": "Hafner, Elias", "authorized_access_point": "Hafner, Elias"} 1 +2024-09-11 09:07:38.864139 2024-09-11 09:07:38.864142 1b74910f-b183-4526-8f0d-e0087e3bab49 {"md5": "3e341e6887a692b5c4961c9002403d7b", "pid": "A023188004", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "frère", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023188004", "source": "RERO"}], "preferred_name": "MichaelDavide, frère", "authorized_access_point": "MichaelDavide, frère"} 1 +2024-09-11 09:07:38.918365 2024-09-11 09:07:38.918369 82ecc359-8fda-4bef-8115-da11a3c92512 {"md5": "3daf455946123274ae8a87e03e1da72b", "pid": "A023189262", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023189262", "source": "RERO"}], "date_of_birth": "1970", "preferred_name": "Ye, Xiaobin,", "authorized_access_point": "Ye, Xiaobin, 1970-"} 1 +2024-09-11 09:07:38.97627 2024-09-11 09:07:38.976273 f627cca5-4bc3-4c9a-8e3d-1d166446369d {"md5": "eeda4a239562007290ddb43812542345", "pid": "A023193920", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023193920", "source": "RERO"}], "preferred_name": "Mourdon, Jean-Paul", "authorized_access_point": "Mourdon, Jean-Paul"} 1 +2024-09-11 09:07:39.040836 2024-09-11 09:07:39.040841 ec0d2fec-8da6-4cfa-a815-7f72c53bd108 {"md5": "99d07dec5d479c87aebddf2be8cd5ce8", "pid": "A023196927", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023196927", "source": "RERO"}], "preferred_name": "Merminod, Sarah", "authorized_access_point": "Merminod, Sarah"} 1 +2024-09-11 09:07:39.096774 2024-09-11 09:07:39.096777 12c94b17-568b-4c62-96c8-d12149b035a7 {"md5": "1fc37734b039b567df51242473ea6588", "pid": "A023205283", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023205283", "source": "RERO"}], "preferred_name": "Gallery of Modern Art (Brisbane)", "authorized_access_point": "Gallery of Modern Art (Brisbane)"} 1 +2024-09-11 09:07:39.151704 2024-09-11 09:07:39.151708 88b267f4-8f79-4951-9f4d-03f6c49cdf20 {"md5": "34cecc6209ad85d25021dbca4fd801a4", "pid": "A023227823", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023227823", "source": "RERO"}], "preferred_name": "Boissy, Jacques", "authorized_access_point": "Boissy, Jacques"} 1 +2024-09-11 09:07:39.213246 2024-09-11 09:07:39.213252 ea7e1960-e421-413a-9c5d-7fbf899f10f9 {"md5": "80e8107cdba77997c69733831a7d2f02", "pid": "A023237776", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023237776", "source": "RERO"}], "preferred_name": "Comberiati, Daniele", "authorized_access_point": "Comberiati, Daniele"} 1 +2024-09-11 09:07:39.26977 2024-09-11 09:07:39.269774 8e024595-9bc6-4b47-9a3e-2ac225572434 {"md5": "855949b4f54c9b9b4dfd472c9742a68c", "pid": "A023249408", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023249408", "source": "RERO"}], "preferred_name": "Stirling, Jeanie", "authorized_access_point": "Stirling, Jeanie", "biographical_information": ["Dates de vie: ?-1884"]} 1 +2024-09-11 09:07:39.327158 2024-09-11 09:07:39.327163 21861ed2-8b95-49e8-baf9-11b021ecd5d0 {"md5": "6082c4193462b428bf0c47847e8a0742", "pid": "A023286352", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023286352", "source": "RERO"}], "preferred_name": "Robles, Gregorio de", "authorized_access_point": "Robles, Gregorio de"} 1 +2024-09-11 09:07:39.384487 2024-09-11 09:07:39.384493 577cc109-f309-4b7b-9ed4-2a16d13e38e1 {"md5": "22f6d83b5ea56d1fe766bd2ec4d848c7", "pid": "A023294886", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023294886", "source": "RERO"}], "preferred_name": "Zenhäusern, Bea", "authorized_access_point": "Zenhäusern, Bea"} 1 +2024-09-11 09:07:39.442088 2024-09-11 09:07:39.442091 4a27f87a-7b8a-4b5e-93f7-3f0dc1619dda {"md5": "64265bcb3150fa8e2c014f5bafe26f39", "pid": "A023325251", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023325251", "source": "RERO"}], "variant_name": ["McCammon, Charles"], "preferred_name": "MacCammon, Charles", "variant_access_point": ["McCammon, Charles"], "authorized_access_point": "MacCammon, Charles"} 1 +2024-09-11 09:07:39.497389 2024-09-11 09:07:39.497393 bc521899-ac26-4a17-86d2-f9f0dfa20b7b {"md5": "088acc51e37b4c14917990a72067cff4", "pid": "A023343244", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023343244", "source": "RERO"}], "preferred_name": "Angelo, P", "authorized_access_point": "Angelo, P"} 1 +2024-09-11 09:07:39.669464 2024-09-11 09:07:39.669468 32c2c447-cd6a-4e74-92ce-94c0191f229f {"md5": "75cf337b03719e771a4cff05b24ce825", "pid": "A023417604", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023417604", "source": "RERO"}], "preferred_name": "Université de Paris 13. Colloque (2010 :", "authorized_access_point": "Université de Paris 13. Colloque (2010 : Paris)"} 1 +2024-09-11 09:07:39.729857 2024-09-11 09:07:39.729862 aabad0fd-c5d4-4ab0-848b-cb76a2f55433 {"md5": "a028eee88c9fa0f1eec1ad0671cb5afe", "pid": "A023417887", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023417887", "source": "RERO"}], "preferred_name": "Rebisant, Günther R", "authorized_access_point": "Rebisant, Günther R"} 1 +2024-09-11 09:07:39.787297 2024-09-11 09:07:39.787301 70b97c44-c776-4c7d-8db3-88be2174532b {"md5": "6d0d72b2aeb236b19a0ecbfef19b1206", "pid": "A023419144", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023419144", "source": "RERO"}], "preferred_name": "Marie, Stéphanie", "authorized_access_point": "Marie, Stéphanie"} 1 +2024-09-11 09:07:39.848835 2024-09-11 09:07:39.848839 8c2f1968-538c-45bb-8621-0cde6e0149ad {"md5": "f20f833ab5c19037054756fbe7bb7c69", "pid": "A023422393", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023422393", "source": "RERO"}], "preferred_name": "Milan-Club (Neuchâtel)", "authorized_access_point": "Milan-Club (Neuchâtel)"} 1 +2024-09-11 09:07:39.906232 2024-09-11 09:07:39.906236 52a65fd1-6ddd-4dca-b890-483b2fc52525 {"md5": "e83a701dd7262f697e31d5f7020bdf6f", "pid": "A023425677", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023425677", "source": "RERO"}], "variant_name": ["Masahiro, Eguchi,"], "date_of_birth": "1930", "preferred_name": "Eguchi, Masahiro,", "variant_access_point": ["Masahiro, Eguchi, 1930-"], "parallel_access_point": ["江口正弘, 1930-"], "authorized_access_point": "Eguchi, Masahiro, 1930-"} 1 +2024-09-11 09:07:39.974492 2024-09-11 09:07:39.974496 9612febf-380d-46f6-864d-e7930589e5dc {"md5": "fa50c461c632fb01f28e844fd93a6cd7", "pid": "A023432176", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023432176", "source": "RERO"}], "variant_name": ["Garayoa, Jesús Ma. Usunáriz", "Usunáriz, Jesús Ma."], "date_of_birth": "1964", "preferred_name": "Usunáriz Garayoa, Jesús Ma.", "variant_access_point": ["Garayoa, Jesús Ma. Usunáriz (Jesús María Usunáriz), 1964-", "Usunáriz, Jesús Ma. (Jesús María), 1964-"], "authorized_access_point": "Usunáriz Garayoa, Jesús Ma. (Jesús María), 1964-"} 1 +2024-09-11 09:07:40.02858 2024-09-11 09:07:40.028585 532e120f-166b-4119-aac1-518974f76fd7 {"md5": "4e65ba00b50f0d783ac2a60c9df5cd55", "pid": "A023438761", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "do Assaré", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023438761", "source": "RERO"}], "variant_name": ["Assaré, Patativa do", "Cipaúba, Alberto", "Da Silva, Antônio Gonçalves", "Do Assaré, Patativa", "Gonçalves da Silva, Antônio", "Silva, Antônio Gonçalves da"], "preferred_name": "Patativa, do Assaré", "variant_access_point": ["Assaré, Patativa do", "Cipaúba, Alberto", "Da Silva, Antônio Gonçalves", "Do Assaré, Patativa", "Gonçalves da Silva, Antônio", "Silva, Antônio Gonçalves da"], "authorized_access_point": "Patativa, do Assaré"} 1 +2024-09-11 09:07:40.083938 2024-09-11 09:07:40.083942 140a9280-a3f1-494d-b815-8d67a5ad3291 {"md5": "1b290cfd63ac9a8a2f6bc697eca1719c", "pid": "A023440649", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023440649", "source": "RERO"}], "preferred_name": "Conférence européenne pour la promotion de la santé en prison 2012 :", "authorized_access_point": "Conférence européenne pour la promotion de la santé en prison (6 : 2012 : Genève)"} 1 +2024-09-11 09:07:40.145006 2024-09-11 09:07:40.145011 eca14364-8446-425f-b223-fc6f7f911d71 {"md5": "6f14fcbc3659ab84a936f60a4528a6ca", "pid": "A023442924", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023442924", "source": "RERO"}], "preferred_name": "Missione archeologica italiana a Hierapolis di Frigia", "authorized_access_point": "Missione archeologica italiana a Hierapolis di Frigia"} 1 +2024-09-11 09:07:40.226585 2024-09-11 09:07:40.22659 a3220f7b-c646-4446-9a37-b4552a0356b6 {"md5": "6430f46250de31e6a1522bd44376c5dd", "pid": "A023452640", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023452640", "source": "RERO"}], "preferred_name": "Delley, Jean-Louis", "authorized_access_point": "Delley, Jean-Louis"} 1 +2024-09-11 09:07:40.301882 2024-09-11 09:07:40.301887 86215c59-8de2-4243-875e-7bcfca04a50b {"md5": "a1fbed61f7a9ae78b2a5204c108f5691", "pid": "A023455691", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023455691", "source": "RERO"}], "preferred_name": "Galerie des artistes (La Côte-aux-Fées)", "authorized_access_point": "Galerie des artistes (La Côte-aux-Fées)"} 1 +2024-09-11 09:07:40.354044 2024-09-11 09:07:40.354048 021f1e62-153d-4012-a44f-d918e6852110 {"md5": "96eaa295b3b6047bfd23fd811fe312b6", "pid": "A023474915", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "Mme", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023474915", "source": "RERO"}], "preferred_name": "Guiguer, Auguste, Mme", "authorized_access_point": "Guiguer, Auguste, Mme"} 1 +2024-09-11 09:07:40.408928 2024-09-11 09:07:40.408932 9f2f2faf-539e-4916-a4f7-3772fa2e740b {"md5": "24733762cb39e908dc8d6254d591f968", "pid": "A023516300", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023516300", "source": "RERO"}], "preferred_name": "Sierro, Jean-Willy", "authorized_access_point": "Sierro, Jean-Willy"} 1 +2024-09-11 09:07:40.463401 2024-09-11 09:07:40.463404 96377d94-7416-4350-95c5-21c9a2a36769 {"md5": "be8585f010e1b2e18e1df8cd6fa227f0", "pid": "A023516798", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023516798", "source": "RERO"}], "preferred_name": "Calame, Numa", "authorized_access_point": "Calame, Numa"} 1 +2024-09-11 09:07:40.524457 2024-09-11 09:07:40.52446 6dc67818-403d-47f1-82d9-c0b0bbc1931c {"md5": "a7c1fe412d34d8a0c1cce501a3893a97", "pid": "A023520416", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023520416", "source": "RERO"}], "preferred_name": "Absenger, Wolfgang", "authorized_access_point": "Absenger, Wolfgang"} 1 +2024-09-11 09:07:40.588418 2024-09-11 09:07:40.588421 edc2e611-cff7-4237-9b2f-580235a264ca {"md5": "7924afd5fd28431d1dc9c574f2360ae2", "pid": "A023524669", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023524669", "source": "RERO"}], "preferred_name": "Geierhaas, Gustav", "authorized_access_point": "Geierhaas, Gustav"} 1 +2024-09-11 09:07:40.640957 2024-09-11 09:07:40.640962 46a298ec-d9eb-4704-b3d9-92448d4e263a {"md5": "8c300b7052819b77736d18448846debe", "pid": "A023533143", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023533143", "source": "RERO"}], "preferred_name": "Niesbach, Jutta", "authorized_access_point": "Niesbach, Jutta"} 1 +2024-09-11 09:07:40.695172 2024-09-11 09:07:40.695178 8fc993d9-1465-4969-9e02-ba590a217e71 {"md5": "8dae062cb5bf73cac8f414edc8cc4244", "pid": "A023570716", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023570716", "source": "RERO"}], "preferred_name": "Bureau Emmenegger", "authorized_access_point": "Bureau Emmenegger"} 1 +2024-09-11 09:07:40.747178 2024-09-11 09:07:40.747182 f238c2a4-4810-4a97-b3ca-39db951e532d {"md5": "dd930bec84b593be2158455366d7a938", "pid": "A023604346", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023604346", "source": "RERO"}], "preferred_name": "Université de Grenoble 3. Centre d'étude des sensibilités. Colloque (1980 :", "authorized_access_point": "Université de Grenoble 3. Centre d'étude des sensibilités. Colloque (1980 : Grenoble)"} 1 +2024-09-11 09:07:40.803068 2024-09-11 09:07:40.803075 98c05ed5-2b3e-4a2c-911c-9b00eef1d3ff {"md5": "98b5d84516eef68cc18994af390ceaae", "pid": "A023605931", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023605931", "source": "RERO"}], "preferred_name": "Galerie Laeubli (Zürich)", "authorized_access_point": "Galerie Laeubli (Zürich)"} 1 +2024-09-11 09:07:40.869039 2024-09-11 09:07:40.869045 ddb2f17e-99f3-4f28-a19e-9458180854b8 {"md5": "bcea85330387b1d1b038e37f1921792d", "pid": "A023608022", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023608022", "source": "RERO"}], "preferred_name": "Constantin Weber, Carl", "authorized_access_point": "Constantin Weber, Carl", "biographical_information": ["Dates de vie: 1966-"]} 1 +2024-09-11 09:07:40.928011 2024-09-11 09:07:40.928015 9a30b600-f5f8-429e-93dd-f6e4f139a3ca {"md5": "dff7ad03569b3d0e0d188da0134adcec", "pid": "A023613346", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023613346", "source": "RERO"}], "date_of_birth": "1975", "preferred_name": "Alemazung, Joy Asongazoh,", "authorized_access_point": "Alemazung, Joy Asongazoh, 1975-"} 1 +2024-09-11 09:07:40.988636 2024-09-11 09:07:40.988641 83fe1ab9-3d7d-495b-bc7c-12c5763f1f6d {"md5": "51ce4fbd3c68fca1835f54018f850df9", "pid": "A023626167", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023626167", "source": "RERO"}], "preferred_name": "Góralewska, Grażyna", "authorized_access_point": "Góralewska, Grażyna"} 1 +2024-09-11 09:07:41.055204 2024-09-11 09:07:41.05521 cab57aa0-b092-48d6-80ff-9050960ce239 {"md5": "85f799c784c64188b188c7a30c161b77", "pid": "A023644947", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023644947", "source": "RERO"}], "preferred_name": "Boureau, Antoine", "authorized_access_point": "Boureau, Antoine"} 1 +2024-09-11 09:07:41.124249 2024-09-11 09:07:41.124254 627a9507-e91c-4302-9596-2f9db598078f {"md5": "d142fc41a33c03cce68160072ee6d0d8", "pid": "A023655893", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023655893", "source": "RERO"}], "preferred_name": "Grabner, Melanie", "authorized_access_point": "Grabner, Melanie"} 1 +2024-09-11 09:07:41.183068 2024-09-11 09:07:41.183074 bb7d7da2-e9f8-4cbe-a369-a0b8345b7b88 {"md5": "54f61e9f3b1007eec22b506dfa2275a9", "pid": "A023668772", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023668772", "source": "RERO"}], "preferred_name": "Michałek, Andrzej", "authorized_access_point": "Michałek, Andrzej"} 1 +2024-09-11 09:07:41.250734 2024-09-11 09:07:41.25074 6f27c29e-dbaf-4c0f-b9ea-6f6cf1114e63 {"md5": "9894f221f5c187d0a71b8fef1069146a", "pid": "A023690762", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023690762", "source": "RERO"}], "preferred_name": "Wertel, Hans Peter", "authorized_access_point": "Wertel, Hans Peter"} 1 +2024-09-11 09:07:41.328891 2024-09-11 09:07:41.328896 5bc3aea7-0643-4232-a649-ecd999c35f9f {"md5": "d91c0f2a7b11020467b5f8b617885a89", "pid": "A023693839", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023693839", "source": "RERO"}], "preferred_name": "Rotta, Julius C", "authorized_access_point": "Rotta, Julius C"} 1 +2024-09-11 09:07:41.417722 2024-09-11 09:07:41.417728 7717df52-0bd3-4b4e-93d1-33153626d892 {"md5": "53daa963a132cccabe0d6e4ed0f8c73c", "pid": "A023699946", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023699946", "source": "RERO"}], "preferred_name": "Saba, C", "authorized_access_point": "Saba, C"} 1 +2024-09-11 09:07:41.478038 2024-09-11 09:07:41.478042 9a5d5a7b-6890-420f-890e-e10dd6699a5b {"md5": "40ae0dbcf9178a0b72baeb426083d308", "pid": "A023700595", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023700595", "source": "RERO"}], "preferred_name": "Icrès, Fernand", "authorized_access_point": "Icrès, Fernand"} 1 +2024-09-11 09:07:41.550849 2024-09-11 09:07:41.550855 43b122e2-ad60-4bc3-8bba-cf809408a3fa {"md5": "b05939142b81b97016646855e81614b6", "pid": "A023701973", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023701973", "source": "RERO"}], "preferred_name": "Konstanzer Arbeitskreis für Sportrecht. Herbsttagung (2011 :", "authorized_access_point": "Konstanzer Arbeitskreis für Sportrecht. Herbsttagung (2011 : Gottlieben)"} 1 +2024-09-11 09:07:41.629431 2024-09-11 09:07:41.629435 5d8fe0eb-0950-46d1-82dc-eff51281461a {"md5": "9a0db911538472e1eba307df0d34ea71", "pid": "A023712980", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023712980", "source": "RERO"}], "preferred_name": "Bless, André", "authorized_access_point": "Bless, André"} 1 +2024-09-11 09:07:41.706129 2024-09-11 09:07:41.706132 a1faf067-819b-4e20-ad4c-eab70e266e72 {"md5": "8632c02b39eeddc5a972428d0d9e6537", "pid": "A023720699", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023720699", "source": "RERO"}], "date_of_birth": "1934", "preferred_name": "Krüger, Renate,", "authorized_access_point": "Krüger, Renate, 1934-"} 1 +2024-09-11 09:07:41.782598 2024-09-11 09:07:41.782604 53f31958-3900-4717-bfdc-ab497ca89255 {"md5": "c4580d5b55722db624d4f189ee4af7d5", "pid": "A023741754", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023741754", "source": "RERO"}], "preferred_name": "Schulenberg, Ulf", "authorized_access_point": "Schulenberg, Ulf"} 1 +2024-09-11 09:07:41.848439 2024-09-11 09:07:41.848444 4db10380-a6bd-4ef7-b083-fe6e3cf0fd1f {"md5": "5aa242564c7fb4d39295490adbb4a881", "pid": "A023763587", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023763587", "source": "RERO"}], "preferred_name": "Lauer, Ottmar", "authorized_access_point": "Lauer, Ottmar"} 1 +2024-09-11 09:07:41.913139 2024-09-11 09:07:41.913142 265f82ed-935a-49ee-8f5c-92e0166a6d3c {"md5": "3736eda868933bea1a84986b514ef328", "pid": "A023783324", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023783324", "source": "RERO"}], "preferred_name": "Dufton, A.F", "authorized_access_point": "Dufton, A.F"} 1 +2024-09-11 09:07:41.973165 2024-09-11 09:07:41.973168 765da1a7-7caf-4858-8799-7f343c0894d8 {"md5": "cc40c5095e0bf8130d351bab317a426b", "pid": "A023806510", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023806510", "source": "RERO"}], "preferred_name": "Rencontres francophones d'auxologie (1995 :", "authorized_access_point": "Rencontres francophones d'auxologie (1995 : Lyon)"} 1 +2024-09-11 09:07:42.031135 2024-09-11 09:07:42.03114 6bb9e817-fa2f-4016-9dd8-4cb01774b1b9 {"md5": "1e1030db9fba08826af94cb66abb32af", "pid": "A023814163", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023814163", "source": "RERO"}], "preferred_name": "Bodman, Whitney S", "authorized_access_point": "Bodman, Whitney S"} 1 +2024-09-11 09:07:42.093542 2024-09-11 09:07:42.093545 52c28a93-5baf-476b-b76b-59227884d0b0 {"md5": "14f9c4915afb0e7ce07d9abca1e83114", "pid": "A023822688", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023822688", "source": "RERO"}], "preferred_name": "Congrès national des sociétés savantes 1989 :", "authorized_access_point": "Congrès national des sociétés savantes (114 : 1989 : Paris). Section de géographie physique et humaine"} 1 +2024-09-11 09:07:42.150723 2024-09-11 09:07:42.150729 e55f1394-d393-4fbc-8cbb-fa001c17b773 {"md5": "046468796ca9fed9eea22288731c043e", "pid": "A023822699", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023822699", "source": "RERO"}], "preferred_name": "Congrès national des sociétés savantes 1990 :", "authorized_access_point": "Congrès national des sociétés savantes (115 : 1990 : Avignon). Section des sciences"} 1 +2024-09-11 09:07:42.210683 2024-09-11 09:07:42.210687 e7e67d24-c8de-4f5d-afa8-ceedba9f6264 {"md5": "de5b8f8a0f95c74339dc8865851c5cc0", "pid": "A023822966", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023822966", "source": "RERO"}], "preferred_name": "Congrès national des sociétés savantes 1970 :", "authorized_access_point": "Congrès national des sociétés savantes (95 : 1970 : Reims). Section de philologie et d'histoire jusqu'à 1610"} 1 +2024-09-11 09:07:42.272386 2024-09-11 09:07:42.272389 4cc9d932-f2ac-4488-acc1-cbf032161cff {"md5": "d959c0225c0141fb836f5a535e5f8f56", "pid": "A023823517", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023823517", "source": "RERO"}], "preferred_name": "Grilli, Cesare", "authorized_access_point": "Grilli, Cesare"} 1 +2024-09-11 09:07:42.331834 2024-09-11 09:07:42.33184 b58b40cb-faf5-4352-8244-61cb53c9eec8 {"md5": "63e10abe5a636a22c8d4d37f14ddd0a4", "pid": "A023823557", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023823557", "source": "RERO"}], "preferred_name": "Congrès national des sociétés historiques et scientifiques 1996 :", "authorized_access_point": "Congrès national des sociétés historiques et scientifiques (121 : 1996 : Nice). Commission d'histoire de la Révolution française"} 1 +2024-09-11 09:07:42.397024 2024-09-11 09:07:42.397029 4b3d5281-8500-4f45-9ed7-d875a5dd5985 {"md5": "ff9defa346d655930eec69d18d36af8a", "pid": "A023848289", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "musicien", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023848289", "source": "RERO"}], "preferred_name": "Boillat, Alain, musicien", "authorized_access_point": "Boillat, Alain, musicien"} 1 +2024-09-11 09:07:42.4586 2024-09-11 09:07:42.458604 0675f34b-bf40-443d-8a47-97635348ecce {"md5": "5ad2774188e5d408d2646d1371c10ced", "pid": "A023869329", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023869329", "source": "RERO"}], "preferred_name": "François K", "authorized_access_point": "François K"} 1 +2024-09-11 09:07:42.514068 2024-09-11 09:07:42.514072 3d5ed09e-fcf7-45c3-b455-ceb3298e3569 {"md5": "2184e03b18efc5f9e014f814be0c8b82", "pid": "A023948966", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023948966", "source": "RERO"}], "preferred_name": "Caloz, Yves", "authorized_access_point": "Caloz, Yves"} 1 +2024-09-11 09:07:42.570045 2024-09-11 09:07:42.570048 470f055b-4fdc-4dab-ab11-e38dc2989842 {"md5": "0f2a86ebd9c702e97c92229b6e1d0ec0", "pid": "A023960471", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023960471", "source": "RERO"}], "date_of_birth": "?", "date_of_death": "1830", "preferred_name": "Dupuy, Pierre,", "authorized_access_point": "Dupuy, Pierre, ?-1830"} 1 +2024-09-11 09:07:42.627646 2024-09-11 09:07:42.62765 a5932406-0956-4fbc-bcd1-b8592f74e4b0 {"md5": "aab2848dc1f3881ca8a898cbfd86ba53", "pid": "A023966957", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023966957", "source": "RERO"}], "variant_name": ["Ittersum, Martine Julia van,"], "date_of_birth": "1968", "preferred_name": "Van Ittersum, Martine Julia,", "variant_access_point": ["Ittersum, Martine Julia van, 1968-"], "authorized_access_point": "Van Ittersum, Martine Julia, 1968-"} 1 +2024-09-11 09:07:42.700494 2024-09-11 09:07:42.7005 2195e445-127f-4ee5-a6c0-496ad9d4b20d {"md5": "a6091d6c1dd972da3c4236708719f684", "pid": "A023969519", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023969519", "source": "RERO"}], "preferred_name": "Lemos-Pereira, Alice de", "authorized_access_point": "Lemos-Pereira, Alice de"} 1 +2024-09-11 09:07:42.789422 2024-09-11 09:07:42.789425 0826f1ca-9a5c-4ed4-a518-7491ba533259 {"md5": "80d2e42db4b169b14c0448523de35af1", "pid": "A023985610", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023985610", "source": "RERO"}], "preferred_name": "Michotte, D", "authorized_access_point": "Michotte, D"} 1 +2024-09-11 09:07:42.845272 2024-09-11 09:07:42.845274 9e36e78c-b0df-4ceb-b5e9-0f1710f86a41 {"md5": "c7d575a59a8181aa2eb43783b7bc8277", "pid": "A023993514", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023993514", "source": "RERO"}], "preferred_name": "Pottier, Caroline", "authorized_access_point": "Pottier, Caroline"} 1 +2024-09-11 09:07:42.916994 2024-09-11 09:07:42.916999 2bdd5b98-84f3-4afe-a49a-eced167ec560 {"md5": "a21b0350a673d37f0e055a6735ab2436", "pid": "A023994589", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A023994589", "source": "RERO"}], "preferred_name": "Mach, Paolo", "authorized_access_point": "Mach, Paolo"} 1 +2024-09-11 09:07:42.97032 2024-09-11 09:07:42.970323 d087b923-b3c8-4303-bae6-ae11c90608de {"md5": "d19a7786c215d6e96f68090c9ca695b5", "pid": "A024017606", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024017606", "source": "RERO"}], "preferred_name": "Zinger, B", "authorized_access_point": "Zinger, B"} 1 +2024-09-11 09:07:43.029857 2024-09-11 09:07:43.029861 e975ba40-a0f5-4972-9947-fd47c8ca4363 {"md5": "67640917c8a23db092a7ed67076f48a5", "pid": "A024032635", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024032635", "source": "RERO"}], "preferred_name": "Grote, Paul Joseph", "authorized_access_point": "Grote, Paul Joseph"} 1 +2024-09-11 09:07:43.091082 2024-09-11 09:07:43.091088 567703a0-65e4-4451-b254-9a5dda52acc7 {"md5": "fcbbf005311b8e8d8b04eaf7ad6c4eb3", "pid": "A024034240", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024034240", "source": "RERO"}], "preferred_name": "Arnoul, Honoré", "authorized_access_point": "Arnoul, Honoré"} 1 +2024-09-11 09:07:43.177646 2024-09-11 09:07:43.177652 9a90415b-9092-4ea2-a091-6d7544e5651a {"md5": "e98da71fa31413a1d2d14f0028b5e294", "pid": "A024042745", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024042745", "source": "RERO"}], "date_of_birth": "1965", "preferred_name": "Kanda, Yutsuki,", "authorized_access_point": "Kanda, Yutsuki, 1965-"} 1 +2024-09-11 09:07:43.25375 2024-09-11 09:07:43.253753 edf845e5-978c-4e3e-8de9-ae8b60588d59 {"md5": "ba8a5096498630ba1330c824b454572c", "pid": "A024043552", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024043552", "source": "RERO"}], "variant_name": ["Madani, Rahma Benhamou El,", "Benhamou El Madani, Rahma,"], "date_of_birth": "1966", "preferred_name": "El Madani, Rahma Benhamou,", "variant_access_point": ["Madani, Rahma Benhamou El, 1966-", "Benhamou El Madani, Rahma, 1966-"], "authorized_access_point": "El Madani, Rahma Benhamou, 1966-", "biographical_information": ["Productrice, réalisatrice, scénariste"]} 1 +2024-09-11 09:07:43.322205 2024-09-11 09:07:43.322215 5964da1c-bc4d-4208-b09e-a0ae8f0f242b {"md5": "fe23e496284b669ff67c027c6db3ae2e", "pid": "A024063413", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024063413", "source": "RERO"}], "preferred_name": "Bennett, Charles Gibson", "authorized_access_point": "Bennett, Charles Gibson"} 1 +2024-09-11 09:07:43.381536 2024-09-11 09:07:43.381541 032635d1-1649-470b-ac05-10dad5ed2241 {"md5": "16e984971fbac211eb2a2870d39c78d8", "pid": "A024072354", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024072354", "source": "RERO"}], "preferred_name": "Hatzelhoffer, Lena", "authorized_access_point": "Hatzelhoffer, Lena"} 1 +2024-09-11 09:07:43.445577 2024-09-11 09:07:43.445582 54f1d459-5c5a-4697-ba71-d8feac1fd699 {"md5": "f5aedf04293369a908b56ed0e8594339", "pid": "A024073610", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024073610", "source": "RERO"}], "preferred_name": "Farine, Maguy", "authorized_access_point": "Farine, Maguy"} 1 +2024-09-11 09:07:43.505474 2024-09-11 09:07:43.505479 3a52d0c4-aa3a-45aa-a649-9f9bcaa43b45 {"md5": "5a1084514008499ed951f68d34bcfda9", "pid": "A024075381", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024075381", "source": "RERO"}], "preferred_name": "Meester de Ravestein, E", "authorized_access_point": "Meester de Ravestein, E"} 1 +2024-09-11 09:07:43.572976 2024-09-11 09:07:43.572979 1ace69c6-b824-46f9-8b3e-53435b3f038d {"md5": "07bc859f1d4b3325248138d68057da8b", "pid": "A024079443", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024079443", "source": "RERO"}], "preferred_name": "Filelfi, Carolina", "authorized_access_point": "Filelfi, Carolina"} 1 +2024-09-11 09:07:43.630509 2024-09-11 09:07:43.630513 07270570-e7f1-4426-93a9-8b502ef06acd {"md5": "209df463a4f73babdafead7729e7ab94", "pid": "A024083167", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024083167", "source": "RERO"}], "preferred_name": "Vernazza, Livia", "authorized_access_point": "Vernazza, Livia"} 1 +2024-09-11 09:07:43.699142 2024-09-11 09:07:43.699145 cbb562dd-7e55-4a63-8574-ac6534a4ec90 {"md5": "bf00b0344c7aa521db4bf9e4f50b4741", "pid": "A024099458", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024099458", "source": "RERO"}], "preferred_name": "Stewart, Katherine A", "authorized_access_point": "Stewart, Katherine A"} 1 +2024-09-11 09:07:43.764533 2024-09-11 09:07:43.764538 dac43e41-f6be-4442-be97-fd9087d49989 {"md5": "58aaacb1291dfeeb6dd673381263c359", "pid": "A024107085", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024107085", "source": "RERO"}], "preferred_name": "Chanard, J.-B", "authorized_access_point": "Chanard, J.-B"} 1 +2024-09-11 09:07:43.820914 2024-09-11 09:07:43.820918 4ed9c6ce-beec-4f73-9d7b-7f7e864d0222 {"md5": "c541c3fefe14bc4e87b220c674b69818", "pid": "A024109666", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024109666", "source": "RERO"}], "preferred_name": "Charvet, Pierre-Alex", "authorized_access_point": "Charvet, Pierre-Alex"} 1 +2024-09-11 09:07:43.874972 2024-09-11 09:07:43.874977 d38424ab-84e5-473e-b441-dac00cb18ef2 {"md5": "9bdc6bd4f3aee5caeb6175663aa32348", "pid": "A024119960", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024119960", "source": "RERO"}], "preferred_name": "Charcot, Anthelme", "authorized_access_point": "Charcot, Anthelme"} 1 +2024-09-11 09:07:43.933586 2024-09-11 09:07:43.933591 c3e1d52a-455c-474f-824a-1ed110401f2e {"md5": "8f2d51a009d500efb18adc6e5e097405", "pid": "A024120760", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024120760", "source": "RERO"}], "preferred_name": "Giminne, A", "authorized_access_point": "Giminne, A"} 1 +2024-09-11 09:07:43.993417 2024-09-11 09:07:43.993421 4203093d-a675-43a6-89ef-39a3db1a6b37 {"md5": "3ca8ea99aa9ebe5b5d71f8b97e0cac6f", "pid": "A024123847", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024123847", "source": "RERO"}], "preferred_name": "Leharivel, Pierre-Théodose-Constant", "authorized_access_point": "Leharivel, Pierre-Théodose-Constant"} 1 +2024-09-11 09:07:44.054378 2024-09-11 09:07:44.054381 e6eedd8c-85a2-4139-8cbc-35bbaded20f9 {"md5": "1da81bd3a8401a8b1a78d22e78314c95", "pid": "A024135505", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024135505", "source": "RERO"}], "preferred_name": "Dain, Charles", "authorized_access_point": "Dain, Charles"} 1 +2024-09-11 09:07:44.105123 2024-09-11 09:07:44.105126 3c868a75-8a57-4336-94cb-a5457d48a7a4 {"md5": "17c55fd03945cf37cbf5bf2f37453df8", "pid": "A024137299", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024137299", "source": "RERO"}], "preferred_name": "Society for Human Ecology. International Conference 2007 :", "authorized_access_point": "Society for Human Ecology. International Conference (15th : 2007 : Rio de Janeiro, Brazil)"} 1 +2024-09-11 09:07:44.157952 2024-09-11 09:07:44.157956 25177d3f-3c81-4e81-b89e-a13e9f3ce712 {"md5": "51a3ab40e37936fb2a55ff61cb20cfd1", "pid": "A024141965", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024141965", "source": "RERO"}], "preferred_name": "Michoud, Loïc", "authorized_access_point": "Michoud, Loïc"} 1 +2024-09-11 09:07:44.220946 2024-09-11 09:07:44.220949 8a5cec9f-53f5-44f1-9010-05f38a7f236a {"md5": "b04a1689c7cc84dea456c53a50f7942f", "pid": "A024152276", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024152276", "source": "RERO"}], "preferred_name": "Petrus, Pierre", "authorized_access_point": "Petrus, Pierre"} 1 +2024-09-11 09:07:44.278862 2024-09-11 09:07:44.278867 ea5cca6d-dd9a-410a-a700-63750e16110a {"md5": "11e415f4cd7eb3298d6fd0c74087bca4", "pid": "A024180345", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024180345", "source": "RERO"}], "preferred_name": "Virey", "authorized_access_point": "Virey"} 1 +2024-09-11 09:07:44.334335 2024-09-11 09:07:44.334339 a32b6ce5-5861-4868-91ba-a58f886955da {"md5": "bbc4d03ca4323ee8ae0e0f48ef8736f9", "pid": "A024182024", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024182024", "source": "RERO"}], "preferred_name": "Société philatélique La Colombe (Saint-Blaise)", "authorized_access_point": "Société philatélique La Colombe (Saint-Blaise)"} 1 +2024-09-11 09:07:44.390705 2024-09-11 09:07:44.390709 ca993f1a-cfbc-429e-a498-1ff476976552 {"md5": "1dead6a0d10ac27c3f5cb77713ebaba1", "pid": "A024188404", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024188404", "source": "RERO"}], "variant_name": ["Comnenos, Kalfas"], "preferred_name": "Komnenos, Kalfa", "variant_access_point": ["Comnenos, Kalfas"], "authorized_access_point": "Komnenos, Kalfa"} 1 +2024-09-11 09:07:44.464926 2024-09-11 09:07:44.464929 58d9a7b0-5bde-4e96-af77-089f244fd7ca {"md5": "6a629f07e7b1d69ce5ebd8a688c97348", "pid": "A024193588", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024193588", "source": "RERO"}], "date_of_birth": "1942", "preferred_name": "Zhang, Boyuan,", "authorized_access_point": "Zhang, Boyuan, 1942-"} 1 +2024-09-11 09:07:44.525262 2024-09-11 09:07:44.525268 367839dc-ac1d-478b-8918-db4d2867a149 {"md5": "9fee100e07a572dfaa48b4ba68fd6889", "pid": "A024201811", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024201811", "source": "RERO"}], "preferred_name": "Hoak-Doering, Elizabeth", "authorized_access_point": "Hoak-Doering, Elizabeth", "biographical_information": ["Dates de vie: 1960-"]} 1 +2024-09-11 09:07:44.585195 2024-09-11 09:07:44.585199 5337ec93-83ba-4192-ad26-5485544f64d0 {"md5": "e93399297d504c7afd7a015ed14d5094", "pid": "A024207312", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024207312", "source": "RERO"}], "preferred_name": "Conscience, Maryvonne", "authorized_access_point": "Conscience, Maryvonne"} 1 +2024-09-11 09:07:44.640774 2024-09-11 09:07:44.640778 9b2c2785-e89d-464b-b814-bfebb7bb8aa7 {"md5": "694003708243ea5f448d86777aef33eb", "pid": "A024239773", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024239773", "source": "RERO"}], "preferred_name": "Festival d'automne. Section architecture (1981 :", "authorized_access_point": "Festival d'automne. Section architecture (1981 : Paris)"} 1 +2024-09-11 09:07:44.697009 2024-09-11 09:07:44.697011 1a1a4768-46d5-4817-917e-f57de7dd1194 {"md5": "fa4e753a5bd78186527799f1c33ba22c", "pid": "A024248736", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024248736", "source": "RERO"}], "preferred_name": "Arpège Communication", "authorized_access_point": "Arpège Communication"} 1 +2024-09-11 09:07:44.751719 2024-09-11 09:07:44.751724 9f4b3c85-7373-4b2a-9b59-344091f8a795 {"md5": "c9da38b561cef7a6cfd0e5f50078de89", "pid": "A024250351", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024250351", "source": "RERO"}], "preferred_name": "Lignac, Etienne", "authorized_access_point": "Lignac, Etienne"} 1 +2024-09-11 09:07:44.816335 2024-09-11 09:07:44.81634 555ce354-f668-4f9b-87b8-7b4d8f403014 {"md5": "f2f86e3f1a733ca898a686e5827b2dca", "pid": "A024250841", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024250841", "source": "RERO"}], "preferred_name": "Vernisy, Jacques de", "authorized_access_point": "Vernisy, Jacques de"} 1 +2024-09-11 09:07:44.872284 2024-09-11 09:07:44.872288 d590e210-da4b-42dc-ae20-118906b5ae72 {"md5": "530bda26236fc80226d56901ec8bf8f1", "pid": "A024251528", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024251528", "source": "RERO"}], "preferred_name": "Valley, Violette", "authorized_access_point": "Valley, Violette"} 1 +2024-09-11 09:07:44.928862 2024-09-11 09:07:44.928866 e31410df-0e03-497c-a22d-bb7b11ff5553 {"md5": "73730bb8463eeaa54fbba46ae521e690", "pid": "A024255039", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024255039", "source": "RERO"}], "preferred_name": "Anzemberger, Guy P", "authorized_access_point": "Anzemberger, Guy P"} 1 +2024-09-11 09:07:44.993568 2024-09-11 09:07:44.993573 366b4d6b-2367-4954-8f22-b94ef24a9b4d {"md5": "ed378a77e6ba9517fb7769df341bea5a", "pid": "A024295112", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024295112", "source": "RERO"}], "preferred_name": "Váczi, Leona", "authorized_access_point": "Váczi, Leona"} 1 +2024-09-11 09:07:45.049204 2024-09-11 09:07:45.049209 ca724c94-93ed-4811-9236-227dc2fb36c7 {"md5": "77969e835ae795120e502e00ac197431", "pid": "A024305757", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024305757", "source": "RERO"}], "preferred_name": "Barbot, Louis", "authorized_access_point": "Barbot, Louis"} 1 +2024-09-11 09:07:45.10996 2024-09-11 09:07:45.109965 2e6a16b5-dc48-4969-b749-646ac55a10f0 {"md5": "0e6932e70c7ee7a12d2327be6c2af44e", "pid": "A024311492", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024311492", "source": "RERO"}], "preferred_name": "Bayer-Ehrenberg, Konstantin von", "authorized_access_point": "Bayer-Ehrenberg, Konstantin von"} 1 +2024-09-11 09:07:45.171767 2024-09-11 09:07:45.171771 9f094484-4dc7-40ab-a873-7147437ef223 {"md5": "f6d3812270a4647a51e5906624847a57", "pid": "A024314866", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024314866", "source": "RERO"}], "variant_name": ["The NY Art Book Fair", "New York Art Book Fair"], "preferred_name": "NY Art Book Fair", "variant_access_point": ["The NY Art Book Fair", "New York Art Book Fair"], "authorized_access_point": "NY Art Book Fair"} 1 +2024-09-11 09:07:45.240022 2024-09-11 09:07:45.240025 aff0a66c-4625-40c2-a727-08d07802dcaf {"md5": "fdba5fe8e5b67f33e1633f3326712da1", "pid": "A024316631", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024316631", "source": "RERO"}], "preferred_name": "Inde. Ministry of Health and Family. Pharmacognosy laboratory", "authorized_access_point": "Inde. Ministry of Health and Family. Pharmacognosy laboratory"} 1 +2024-09-11 09:07:45.302895 2024-09-11 09:07:45.302901 fdca1beb-6185-4665-be71-8930f10400a3 {"md5": "cbaa29761a7357f623ceaf4c8ec74621", "pid": "A024326128", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024326128", "source": "RERO"}], "preferred_name": "Studienkommission für die Reform des Öffentlichen Dienstrechts (Bundesrepublik Deutschland)", "authorized_access_point": "Studienkommission für die Reform des Öffentlichen Dienstrechts (Bundesrepublik Deutschland)"} 1 +2024-09-11 09:07:45.365334 2024-09-11 09:07:45.365337 6bbbf098-e1c9-4747-a519-9ec5ef6cee5f {"md5": "21814338e258a9aacf459a8dbbcd757d", "pid": "A024329523", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024329523", "source": "RERO"}], "preferred_name": "Illés, Pál Edvi", "authorized_access_point": "Illés, Pál Edvi"} 1 +2024-09-11 09:07:45.426557 2024-09-11 09:07:45.426563 d0ed1066-bee4-47f6-8b8b-41bc062a6310 {"md5": "7c5834e372f7a7c887204f4afcb9a1f9", "pid": "A024329741", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024329741", "source": "RERO"}], "date_of_birth": "1653", "date_of_death": "1698", "preferred_name": "Obrecht, Elias,", "authorized_access_point": "Obrecht, Elias, 1653-1698"} 1 +2024-09-11 09:07:45.480338 2024-09-11 09:07:45.480342 05081872-7191-4ff0-928d-44d1e8a154d0 {"md5": "b9fabc10a2a8c7dfc4b4173962a7cebb", "pid": "A024333154", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024333154", "source": "RERO"}], "preferred_name": "Oman. Directorate General of Minerals", "authorized_access_point": "Oman. Directorate General of Minerals"} 1 +2024-09-11 09:07:45.534049 2024-09-11 09:07:45.534051 ee5b735d-8bb5-4f79-8bfe-914193584c7b {"md5": "ab1541b2c0df736017721fcf268d3116", "pid": "A024352277", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024352277", "source": "RERO"}], "preferred_name": "Commission des protestants réunis (Fribourg)", "authorized_access_point": "Commission des protestants réunis (Fribourg)"} 1 +2024-09-11 09:07:45.601635 2024-09-11 09:07:45.601641 e2f7c7e9-04f9-49ca-8e13-2c79f9cb332e {"md5": "49cbe5188f5432f2a6e723a92cc21e5b", "pid": "A024368303", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024368303", "source": "RERO"}], "date_of_birth": "1968", "preferred_name": "Frapiccini, David,", "authorized_access_point": "Frapiccini, David, 1968-"} 1 +2024-09-11 09:07:45.657609 2024-09-11 09:07:45.657612 1cde3a79-d0e0-4912-9dd8-4084b7f1a286 {"md5": "913695c10c385ec96059e9b213432972", "pid": "A024370974", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024370974", "source": "RERO"}], "preferred_name": "Keyserling, Leo", "authorized_access_point": "Keyserling, Leo"} 1 +2024-09-11 09:07:45.71358 2024-09-11 09:07:45.713586 ff5102a6-bdaf-4600-a002-de3e40555260 {"md5": "b3253a05bdea1c314e80cdda9be7cdd0", "pid": "A024377672", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024377672", "source": "RERO"}], "preferred_name": "Pétremand, Noémie", "authorized_access_point": "Pétremand, Noémie"} 1 +2024-09-11 09:07:45.768506 2024-09-11 09:07:45.76851 fc413041-9fb6-4cdc-a5f6-89ffe6573a4b {"md5": "32a0cedd5c8d43840338ca218c1f596e", "pid": "A024381221", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024381221", "source": "RERO"}], "preferred_name": "Guérid, Samia", "authorized_access_point": "Guérid, Samia"} 1 +2024-09-11 09:07:45.824357 2024-09-11 09:07:45.824362 b249d8fe-4690-4396-ade7-80f025295c70 {"md5": "50933d241780840579a9742d915728d4", "pid": "A024413945", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024413945", "source": "RERO"}], "variant_name": ["Macdonald, A. de Léry,", "Mc Donald, Archibald Chaussegros de Léry,", "Mac Donald, Archibald Chaussegros de Léry,", "McDonald, Archibald Chaussegros de Léry,"], "date_of_birth": "1862", "date_of_death": "1939", "preferred_name": "Macdonald, Archibald Chaussegros de Léry,", "variant_access_point": ["Macdonald, A. de Léry, 1862-1939", "Mc Donald, Archibald Chaussegros de Léry, 1862-1939", "Mac Donald, Archibald Chaussegros de Léry, 1862-1939", "McDonald, Archibald Chaussegros de Léry, 1862-1939"], "authorized_access_point": "Macdonald, Archibald Chaussegros de Léry, 1862-1939", "biographical_information": ["Avocat, historien, généalogiste, maire de Rigaud et homme d'affaires"]} 1 +2024-09-11 09:07:45.887767 2024-09-11 09:07:45.88777 8395fdbe-1f76-4f32-a679-19bbdc6a2d5e {"md5": "d0781b8751b0df1b263ca7af57277fc9", "pid": "A024416324", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024416324", "source": "RERO"}], "preferred_name": "Lindblad, Waldemar", "authorized_access_point": "Lindblad, Waldemar"} 1 +2024-09-11 09:07:45.960893 2024-09-11 09:07:45.960898 ffdf2224-8d90-480c-b287-7cdaf26a5a27 {"md5": "8539eb84c450c2eedbde691f4dbe5ac1", "pid": "A024424763", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024424763", "source": "RERO"}], "preferred_name": "Choeur mixte de Platta (Sion)", "authorized_access_point": "Choeur mixte de Platta (Sion)"} 1 +2024-09-11 09:07:46.028578 2024-09-11 09:07:46.028584 48f49f33-eee6-4c9d-bef0-81d7d6a0ecb7 {"md5": "45f11a656d82930f70fee053c3b85cfb", "pid": "A024446255", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024446255", "source": "RERO"}], "preferred_name": "Adalbert-Stifter-Gesellschaft (München)", "authorized_access_point": "Adalbert-Stifter-Gesellschaft (München)"} 1 +2024-09-11 09:07:46.087613 2024-09-11 09:07:46.087617 e10137ec-5ef8-4f70-9ad4-27270ae9d585 {"md5": "491639d09ee5d817b3b26455810eb025", "pid": "A024465489", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024465489", "source": "RERO"}], "date_of_birth": "1938", "preferred_name": "Mills, David,", "authorized_access_point": "Mills, David, 1938-"} 1 +2024-09-11 09:07:46.146763 2024-09-11 09:07:46.146768 f704d788-bcd1-43e0-901d-86a38793d35c {"md5": "9a55deedd6d28e56157381e0188128aa", "pid": "A024466417", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024466417", "source": "RERO"}], "preferred_name": "Karasevich, S", "authorized_access_point": "Karasevich, S"} 1 +2024-09-11 09:07:46.197429 2024-09-11 09:07:46.197432 56268aa9-5068-4612-8175-7bb8f61644a6 {"md5": "4ac4eb659a3369a29a0e1aea00eceebf", "pid": "A024471669", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024471669", "source": "RERO"}], "preferred_name": "Michot, Joseph", "authorized_access_point": "Michot, Joseph"} 1 +2024-09-11 09:07:46.261383 2024-09-11 09:07:46.261386 45f31a36-03a6-4fb6-8a5d-9c6c2abd5bb3 {"md5": "6f2f96411afb57726cf081631bf62e7e", "pid": "A024478155", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024478155", "source": "RERO"}], "preferred_name": "Romand, Rollin", "authorized_access_point": "Romand, Rollin"} 1 +2024-09-11 09:07:46.317209 2024-09-11 09:07:46.317213 c2674e35-419d-4f90-8d79-8e703571a67f {"md5": "db814b5cea012569a45bf832c79cf88b", "pid": "A024478463", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024478463", "source": "RERO"}], "preferred_name": "Mollard, Albert", "authorized_access_point": "Mollard, Albert"} 1 +2024-09-11 09:07:46.372685 2024-09-11 09:07:46.372688 dc40a475-1343-48b1-88f9-0e2cd6fd2b55 {"md5": "6b6c54a697b86ff792e6faa9e125bce5", "pid": "A024478863", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024478863", "source": "RERO"}], "date_of_birth": "1953", "preferred_name": "Aoki, Kazuko,", "authorized_access_point": "Aoki, Kazuko, 1953-"} 1 +2024-09-11 09:07:46.43162 2024-09-11 09:07:46.431622 a86ad7eb-2612-4f81-9172-4fd498462939 {"md5": "4beb23d0ee9baef9a1955ff8898afb19", "pid": "A024480400", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024480400", "source": "RERO"}], "preferred_name": "Claude, Edouard", "authorized_access_point": "Claude, Edouard"} 1 +2024-09-11 09:07:46.486422 2024-09-11 09:07:46.486426 2fb1e75a-6d56-4f03-8ed9-e605013c5ac5 {"md5": "c4e22daf7447341ad6657f4c73f1c2e9", "pid": "A024491342", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024491342", "source": "RERO"}], "preferred_name": "Munzinger, Eugène", "authorized_access_point": "Munzinger, Eugène"} 1 +2024-09-11 09:07:46.53932 2024-09-11 09:07:46.539325 6d36e314-8972-4363-bb15-eabce495897e {"md5": "bba0961edac0636ae852ac8f73ec4a17", "pid": "A024527296", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024527296", "source": "RERO"}], "preferred_name": "Petmecky, Adelheid", "authorized_access_point": "Petmecky, Adelheid"} 1 +2024-09-11 09:07:46.603643 2024-09-11 09:07:46.603649 bdcc24db-ff6c-42c7-ae7a-710e2c266d89 {"md5": "9e8fdf945b45b5089b31c397befdf38b", "pid": "A024528563", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024528563", "source": "RERO"}], "preferred_name": "Rovero, Luca", "authorized_access_point": "Rovero, Luca"} 1 +2024-09-11 09:07:46.664776 2024-09-11 09:07:46.664779 fa9f592d-b24f-462b-a7bd-4be681311fa2 {"md5": "1851d9ae204e24f6381b627e7624eeeb", "pid": "A024529059", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024529059", "source": "RERO"}], "preferred_name": "Congrès international de sociologie 1930 :", "authorized_access_point": "Congrès international de sociologie (10 : 1930 : Genève)"} 1 +2024-09-11 09:07:46.727961 2024-09-11 09:07:46.727966 35ffc22a-2b31-4150-8507-80df3d79e7aa {"md5": "ed17bf50ef931b906797bc5ea3f79ec1", "pid": "A024541309", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024541309", "source": "RERO"}], "preferred_name": "Poulizac, Henri", "authorized_access_point": "Poulizac, Henri"} 1 +2024-09-11 09:07:46.788087 2024-09-11 09:07:46.788091 90063fbd-290e-4b3a-9941-6168c69357cd {"md5": "4dad078f20712f9721c2f0c2da1b3c83", "pid": "A024566467", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024566467", "source": "RERO"}], "preferred_name": "Riat, Lindsay", "authorized_access_point": "Riat, Lindsay"} 1 +2024-09-11 09:07:46.850238 2024-09-11 09:07:46.850243 9b419d0d-c421-4729-b18e-734318ebf3d2 {"md5": "f809088742570b9509c231eb129eed2a", "pid": "A024569645", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024569645", "source": "RERO"}], "preferred_name": "Association for Molecular Pathology", "authorized_access_point": "Association for Molecular Pathology"} 1 +2024-09-11 09:07:46.912193 2024-09-11 09:07:46.912197 17328d8d-60db-46cb-a545-4948bad37601 {"md5": "426e4b6b0924da8309306ab57b589d66", "pid": "A024595109", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024595109", "source": "RERO"}], "preferred_name": "Roura, Josep", "authorized_access_point": "Roura, Josep"} 1 +2024-09-11 09:07:46.969397 2024-09-11 09:07:46.969404 2867b1c9-23ad-4a6b-a5d5-67c9f410ae5c {"md5": "e61263915e4532f88fe2d6f3c92abda6", "pid": "A024595509", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024595509", "source": "RERO"}], "preferred_name": "Ligue des intérêts gessiens", "authorized_access_point": "Ligue des intérêts gessiens"} 1 +2024-09-11 09:07:47.026919 2024-09-11 09:07:47.026924 08c4146c-f7a3-465a-bd54-68d50fc4ea97 {"md5": "4a266ff619cd356644ec002353bbed52", "pid": "A024600161", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024600161", "source": "RERO"}], "preferred_name": "Merkushkin, Grigoriĭ I︠A︡kovlevich", "authorized_access_point": "Merkushkin, Grigoriĭ I︠A︡kovlevich"} 1 +2024-09-11 09:07:47.078609 2024-09-11 09:07:47.078614 5636984e-b633-41ef-8089-2fb62d1897bd {"md5": "914d6a21033bb5f89bc3f402a51ca35b", "pid": "A024602006", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024602006", "source": "RERO"}], "preferred_name": "Fracasso, Tony", "authorized_access_point": "Fracasso, Tony"} 1 +2024-09-11 09:07:47.132504 2024-09-11 09:07:47.132508 a4ea4fef-02ba-41b9-9554-da3deb49d7e7 {"md5": "9284c3bf6ec1d0e14d278fb6c357c7fe", "pid": "A024707851", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024707851", "source": "RERO"}], "preferred_name": "Miropolʹskiĭ, Sergeĭ Irineevich", "authorized_access_point": "Miropolʹskiĭ, Sergeĭ Irineevich"} 1 +2024-09-11 09:07:47.184566 2024-09-11 09:07:47.184571 7773e7f7-b222-4e8b-82b3-4614b4dba43c {"md5": "623eed3e6178233b2a2d552259369251", "pid": "A024728544", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024728544", "source": "RERO"}], "preferred_name": "WallSaga", "authorized_access_point": "WallSaga"} 1 +2024-09-11 09:07:47.243469 2024-09-11 09:07:47.243473 db784038-be1d-40a1-9372-2cd4cde65814 {"md5": "f56634c5172dccc1e389efea451c8ce2", "pid": "A024729479", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024729479", "source": "RERO"}], "preferred_name": "Solomonsen, Carl-Julius", "authorized_access_point": "Solomonsen, Carl-Julius"} 1 +2024-09-11 09:07:47.296914 2024-09-11 09:07:47.296918 0ce1a654-f5fe-4f4a-b289-9871e83c4c25 {"md5": "f3a119e2f50f9962e737f0f9706e483c", "pid": "A024746147", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024746147", "source": "RERO"}], "preferred_name": "Pichler, Meinrad", "authorized_access_point": "Pichler, Meinrad"} 1 +2024-09-11 09:07:47.352531 2024-09-11 09:07:47.352534 1e1a8856-f255-41da-80e9-fdb7aa21c12b {"md5": "6f949940a30625ebd93c2b5431fb6ae1", "pid": "A024770093", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024770093", "source": "RERO"}], "preferred_name": "Vior", "authorized_access_point": "Vior"} 1 +2024-09-11 09:07:47.406635 2024-09-11 09:07:47.406638 69975918-fcb8-47c9-9eb4-a8d29d035c3a {"md5": "d8093d5b27799ef778cc60bc39285723", "pid": "A024774397", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024774397", "source": "RERO"}], "preferred_name": "Wanderley, Germano", "authorized_access_point": "Wanderley, Germano"} 1 +2024-09-11 09:07:47.460803 2024-09-11 09:07:47.460806 0e483cd1-4591-4c2d-85b2-18c171c483c4 {"md5": "78bdd0a810b5dde34ea54022b61d24c3", "pid": "A024790283", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024790283", "source": "RERO"}], "preferred_name": "Headcharger (groupe musical)", "authorized_access_point": "Headcharger (groupe musical)"} 1 +2024-09-11 09:07:47.519391 2024-09-11 09:07:47.519396 360f0d73-e88a-4ef2-bc78-ceace50c5f34 {"md5": "50ab4a0a5be89af8ef7046aebd186756", "pid": "A024801676", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024801676", "source": "RERO"}], "preferred_name": "Yowell, F. D", "authorized_access_point": "Yowell, F. D"} 1 +2024-09-11 09:07:47.583099 2024-09-11 09:07:47.583103 c7946236-1d41-4029-bc27-44c61ba344a2 {"md5": "791cd9829b43caca11381f9a104a5fed", "pid": "A024814391", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024814391", "source": "RERO"}], "preferred_name": "Kiellberg, Gustaf", "authorized_access_point": "Kiellberg, Gustaf"} 1 +2024-09-11 09:07:47.641663 2024-09-11 09:07:47.641668 e36e1701-db27-4e9e-bb3a-cc3bd1bff885 {"md5": "3673693b8dca7d820d30f57a5387323c", "pid": "A024843767", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024843767", "source": "RERO"}], "date_of_birth": "1962", "preferred_name": "Peske, Nancy K.,", "authorized_access_point": "Peske, Nancy K., 1962-"} 1 +2024-09-11 09:07:47.703587 2024-09-11 09:07:47.703592 8760f2c7-68b2-4216-a368-6c7ef6588ed5 {"md5": "1cda49e18b5cb6804cbed3e2da98c34d", "pid": "A024846924", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024846924", "source": "RERO"}], "preferred_name": "Oeuvre suisse d'entraide ouvrière. Vaud. Assemblée générale 1994 :", "authorized_access_point": "Oeuvre suisse d'entraide ouvrière. Vaud. Assemblée générale (2 : 1994 : Vevey)"} 1 +2024-09-11 09:07:47.761559 2024-09-11 09:07:47.761563 fc10e092-f3f2-4417-ad39-0b90958a7ca9 {"md5": "43929a0d36348c92dc660b9db8de5b8c", "pid": "A024866515", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024866515", "source": "RERO"}], "preferred_name": "Deistler, Anja", "authorized_access_point": "Deistler, Anja"} 1 +2024-09-11 09:07:47.817338 2024-09-11 09:07:47.817342 da952ba2-e89b-4e48-9c81-50aa17b542ef {"md5": "f3ab4c2aa175569ead703a5eb591674f", "pid": "A024878364", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024878364", "source": "RERO"}], "preferred_name": "Tihanyi, Eva", "authorized_access_point": "Tihanyi, Eva"} 1 +2024-09-11 09:07:47.872873 2024-09-11 09:07:47.872876 72e2eca5-bf68-468c-a298-5290a54a6aaa {"md5": "965f986f4cac222c1cea9e74b2217a04", "pid": "A024884886", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024884886", "source": "RERO"}], "preferred_name": "Centre européen d'études bourguignonnes (XIVe - XVIe s.). Rencontres (2013 :", "authorized_access_point": "Centre européen d'études bourguignonnes (XIVe - XVIe s.). Rencontres (2013 : Leiden / Den Haag)"} 1 +2024-09-11 09:07:47.93035 2024-09-11 09:07:47.930355 3dc0ac7a-bb9d-408e-8a3d-08afb3c2dbe5 {"md5": "3ee614b59a44fa3d4bcfc3ece4adf262", "pid": "A024896750", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024896750", "source": "RERO"}], "preferred_name": "Országos Stefánia Szövetség Anyák és Csecsemők Védelmére", "authorized_access_point": "Országos Stefánia Szövetség Anyák és Csecsemők Védelmére"} 1 +2024-09-11 09:07:47.986321 2024-09-11 09:07:47.986324 e29a13d4-1b8c-40bb-812a-0d2142fd4452 {"md5": "c20ab9d941e7f74b4174b49f97b0ccdd", "pid": "A024897034", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024897034", "source": "RERO"}], "preferred_name": "Lechuga, Carlos", "authorized_access_point": "Lechuga, Carlos"} 1 +2024-09-11 09:07:48.047317 2024-09-11 09:07:48.047322 d480deed-7c62-4b5c-8d70-5f3484494469 {"md5": "340a8f7f1a50fc5c2369ab7a2f01049d", "pid": "A024917771", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024917771", "source": "RERO"}], "preferred_name": "Lehmann-Larsen, Stine", "authorized_access_point": "Lehmann-Larsen, Stine"} 1 +2024-09-11 09:07:48.101806 2024-09-11 09:07:48.10181 ca480427-27d4-4bfe-97e3-ac520364cdd7 {"md5": "25b9091a978be158bb14f30c0ba4a332", "pid": "A024919899", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024919899", "source": "RERO"}], "preferred_name": "Schweizerische Permanente Schulausstellung (Zürich). Kommission für das Pestalozzi-Stübchen", "authorized_access_point": "Schweizerische Permanente Schulausstellung (Zürich). Kommission für das Pestalozzi-Stübchen"} 1 +2024-09-11 09:07:48.162478 2024-09-11 09:07:48.162482 417b093a-802c-44f4-8e42-405dd67d4be9 {"md5": "8179bd07efb2182129c020a1741be0df", "pid": "A024930424", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024930424", "source": "RERO"}], "preferred_name": "Grönbergh, Andreas Nicolaus", "authorized_access_point": "Grönbergh, Andreas Nicolaus"} 1 +2024-09-11 09:07:48.231789 2024-09-11 09:07:48.231793 e85ce678-8ea2-4040-b742-f5a2a69748a8 {"md5": "cad970f0d698bafc6f18602e0f436668", "pid": "A024960848", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024960848", "source": "RERO"}], "preferred_name": "Japanisches Kulturinstitut (Köln). Symposium (2013 :", "authorized_access_point": "Japanisches Kulturinstitut (Köln). Symposium (2013 : Köln)"} 1 +2024-09-11 09:07:48.286102 2024-09-11 09:07:48.286105 1afaf727-b534-436c-800c-f632293075f9 {"md5": "a590908ecc895c889c2d101e8b9f9c67", "pid": "A024966631", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024966631", "source": "RERO"}], "preferred_name": "Eric Caudron", "authorized_access_point": "Eric Caudron"} 1 +2024-09-11 09:07:48.342034 2024-09-11 09:07:48.342038 4875f7a6-5980-4f50-b242-5bdd7c8ddde1 {"md5": "a30450e506c8c177e63472c90d27da1b", "pid": "A024969731", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024969731", "source": "RERO"}], "preferred_name": "Lando, Bassiano", "authorized_access_point": "Lando, Bassiano", "biographical_information": ["Dates de vie: ? - 1562"]} 1 +2024-09-11 09:07:48.400577 2024-09-11 09:07:48.40058 ffacb729-91e6-489b-93c0-e07ea487cded {"md5": "c131a1aba24a3ad6af10dd3d5f61f2b4", "pid": "A024978532", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024978532", "source": "RERO"}], "variant_name": ["Savonlinna Opera Festival Orchestra", "Savonlinnan Oopperajuhlat. Orkesteri", "Orchestra of the Savonlinna opera festival"], "preferred_name": "Savonlinnan Oopperajuhlaorkesteri", "variant_access_point": ["Savonlinna Opera Festival Orchestra", "Savonlinnan Oopperajuhlat. Orkesteri", "Orchestra of the Savonlinna opera festival"], "authorized_access_point": "Savonlinnan Oopperajuhlaorkesteri"} 1 +2024-09-11 09:07:48.460636 2024-09-11 09:07:48.46064 5eb0b4aa-c332-4dc2-b14b-2fd4b92f7379 {"md5": "c73fb878ba59a5f7b5b2dc4e16bcdde6", "pid": "A024983874", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A024983874", "source": "RERO"}], "preferred_name": "Yoo, Sinac", "authorized_access_point": "Yoo, Sinac"} 1 +2024-09-11 09:07:48.518748 2024-09-11 09:07:48.518752 a0fecccd-fa80-4098-9737-f2a65c8a4a78 {"md5": "2449f2c5e08827ff3aceb134893ceb56", "pid": "A025024778", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025024778", "source": "RERO"}], "preferred_name": "Hischier, David", "authorized_access_point": "Hischier, David"} 1 +2024-09-11 09:07:48.577078 2024-09-11 09:07:48.577083 56e84780-ea46-4c9d-9ee2-e98b6a510470 {"md5": "16a38703e59feffe2f76814638dff302", "pid": "A025029914", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025029914", "source": "RERO"}], "preferred_name": "Razaq, Jābir", "authorized_access_point": "Razaq, Jābir"} 1 +2024-09-11 09:07:48.634212 2024-09-11 09:07:48.634214 4bf25b17-a1b3-4b2a-8dd4-53f1bfd13eab {"md5": "2287dbd4b262d0ec1ee553c0671bfd99", "pid": "A025056747", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025056747", "source": "RERO"}], "preferred_name": "Chifflot, J", "authorized_access_point": "Chifflot, J"} 1 +2024-09-11 09:07:48.68741 2024-09-11 09:07:48.687414 1ecbefd2-4e0b-4181-9230-3ec7d0b4cdf9 {"md5": "ed5d9f7abe52560089897e3f6d2378e3", "pid": "A025075603", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025075603", "source": "RERO"}], "preferred_name": "Tall, Djeny", "authorized_access_point": "Tall, Djeny"} 1 +2024-09-11 09:07:48.742816 2024-09-11 09:07:48.742821 3ac97fc3-286f-494d-93bf-61fbbae2d77e {"md5": "6ac05c79fb11196f07ec3bb2a077592a", "pid": "A025086688", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025086688", "source": "RERO"}], "variant_name": ["Dallos, Stephanus,"], "date_of_birth": "18ème siècle", "preferred_name": "Dallos, István,", "variant_access_point": ["Dallos, Stephanus, 18ème siècle"], "authorized_access_point": "Dallos, István, 18ème siècle"} 1 +2024-09-11 09:07:48.797081 2024-09-11 09:07:48.797084 2d47cd44-dafd-4fb9-b0df-e9e2d554a6cf {"md5": "6dafa2d85c1edfb5059b89d79d337508", "pid": "A025119661", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025119661", "source": "RERO"}], "preferred_name": "Arbeitskreis der Sprachenzentren, Sprachlehrinstitute und Fremdspracheninstitute. Arbeitstagung 2008 :", "authorized_access_point": "Arbeitskreis der Sprachenzentren, Sprachlehrinstitute und Fremdspracheninstitute. Arbeitstagung (25 : 2008 : Passau)"} 1 +2024-09-11 09:07:48.853387 2024-09-11 09:07:48.853391 d6ff44f0-ffd5-4517-97e0-8dc3eebb5f27 {"md5": "75749575e503518ff3776d487bf5fed5", "pid": "A025121507", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025121507", "source": "RERO"}], "preferred_name": "Ghiani, Alessandra", "authorized_access_point": "Ghiani, Alessandra"} 1 +2024-09-11 09:07:48.908883 2024-09-11 09:07:48.908887 b3b8673b-2c10-4bcc-9945-e34781a01fe3 {"md5": "21e682ad5fe4936a0a625684c8a3f9da", "pid": "A025244362", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025244362", "source": "RERO"}], "preferred_name": "Valloni, Renzo", "authorized_access_point": "Valloni, Renzo"} 1 +2024-09-11 09:07:48.9665 2024-09-11 09:07:48.966504 33b1029a-59cc-4fcd-b0ee-e956489be2e9 {"md5": "3c322d3014eae77df8d0a4e3dff2ceaa", "pid": "A025252592", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025252592", "source": "RERO"}], "preferred_name": "Böller-Herzog, Hans", "authorized_access_point": "Böller-Herzog, Hans"} 1 +2024-09-11 09:07:49.024662 2024-09-11 09:07:49.024666 e47b8bdf-8c34-4cc6-b148-4ad2375383a4 {"md5": "cacf682e983a6169eed32410bb06b7df", "pid": "A025258576", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025258576", "source": "RERO"}], "date_of_birth": "1730", "date_of_death": "1757", "preferred_name": "Brückmann, Ernst Ludwig,", "authorized_access_point": "Brückmann, Ernst Ludwig, 1730-1757"} 1 +2024-09-11 09:07:49.077404 2024-09-11 09:07:49.077409 e86b8051-6d6e-441d-b4c2-d5cdec069fd1 {"md5": "cede54dbdf11a9fe3c56309a15aeef86", "pid": "A025259137", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025259137", "source": "RERO"}], "preferred_name": "Thaysen, Maren", "authorized_access_point": "Thaysen, Maren"} 1 +2024-09-11 09:07:49.131868 2024-09-11 09:07:49.131872 f90dbe5e-8cb5-424c-9be2-e2d4ec7344a2 {"md5": "93be83a97e7ee55a790cc542ea906dc4", "pid": "A025287146", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025287146", "source": "RERO"}], "preferred_name": "Print Council of America", "authorized_access_point": "Print Council of America"} 1 +2024-09-11 09:07:49.189999 2024-09-11 09:07:49.190003 01c7c2f5-eff9-4e7e-9e93-532fcccd77cd {"md5": "cf5118b397bb2070495bfa0714294c34", "pid": "A025328121", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025328121", "source": "RERO"}], "variant_name": ["Hofer, Nicola Thomas"], "preferred_name": "Hofer, Nicola", "variant_access_point": ["Hofer, Nicola Thomas"], "authorized_access_point": "Hofer, Nicola", "biographical_information": ["Juriste suisse ; \\"Dr. Nicola Hofer studierte Rechtswissenschaft an der Universität Bern, Université Paris 1 Panthéon-Sorbonne und Peking University. Zurzeit absolviert er ein EDA-Hochschulpraktikum in Taiwan.\\" (2020)"]} 1 +2024-09-11 09:07:49.248551 2024-09-11 09:07:49.248554 6208b77c-7b12-4932-bb49-c039e30987d2 {"md5": "4991b3d5d05c349b0e346a5682b89a65", "pid": "A025329777", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025329777", "source": "RERO"}], "preferred_name": "Manifesta 2004 :", "authorized_access_point": "Manifesta (5 : 2004 : Donostia-San Sebastian)"} 1 +2024-09-11 09:07:49.30746 2024-09-11 09:07:49.307464 5e9e1373-1688-4c1f-8927-179aefc08664 {"md5": "368f79264fb10d1deabf961b43f2f996", "pid": "A025330235", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025330235", "source": "RERO"}], "preferred_name": "Corti, Maurizio", "authorized_access_point": "Corti, Maurizio"} 1 +2024-09-11 09:07:49.361954 2024-09-11 09:07:49.361958 f982af05-6971-4766-9733-735fc6360b60 {"md5": "69fb7f425d358528fdc9e65e35781386", "pid": "A025337143", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025337143", "source": "RERO"}], "preferred_name": "Renaud, Heidy", "authorized_access_point": "Renaud, Heidy"} 1 +2024-09-11 09:07:49.41966 2024-09-11 09:07:49.419663 d584151d-9202-4e1d-974b-9fc247d38fd9 {"md5": "7f8fbb7923f182be2b10416fb531bab2", "pid": "A025360796", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025360796", "source": "RERO"}], "preferred_name": "Chen, Mingyan", "authorized_access_point": "Chen, Mingyan"} 1 +2024-09-11 09:07:49.475714 2024-09-11 09:07:49.475717 abef2a11-acb0-436f-9de4-3078ca37eeaf {"md5": "e74c39016ef46dd9b7aa5b6028c944c8", "pid": "A025367912", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025367912", "source": "RERO"}], "preferred_name": "Närä, Katarina", "authorized_access_point": "Närä, Katarina"} 1 +2024-09-11 09:07:49.537238 2024-09-11 09:07:49.537244 c3b2d02e-b2b2-44cc-804d-c9dcb841b612 {"md5": "99b3cfdf37892904004a7e2805b19ac1", "pid": "A025387385", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025387385", "source": "RERO"}], "variant_name": ["Muzeʾon le-omanut Yiśreʾelit (Ramat Gan)"], "preferred_name": "Museum of Israel Art (Ramat Gan)", "variant_access_point": ["Muzeʾon le-omanut Yiśreʾelit (Ramat Gan)"], "authorized_access_point": "Museum of Israel Art (Ramat Gan)"} 1 +2024-09-11 09:07:49.595851 2024-09-11 09:07:49.595853 bacebb3f-6828-4b1d-8058-e3ce5d09c953 {"md5": "b73524c598e0fa8da97cae2a31d5a6d7", "pid": "A025397944", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025397944", "source": "RERO"}], "preferred_name": "Centro pedagogico-didattico per la Svizzera (Bern). Groupe mixte italo-suisse", "authorized_access_point": "Centro pedagogico-didattico per la Svizzera (Bern). Groupe mixte italo-suisse"} 1 +2024-09-11 09:07:49.652101 2024-09-11 09:07:49.652105 b8ef4d30-69d9-4fe3-aef0-a6a16065ff24 {"md5": "479369d9ddc82fb5f566d3b71bf4e7c3", "pid": "A025418238", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025418238", "source": "RERO"}], "preferred_name": "Hirsch, Georg Friedrich Andreas", "authorized_access_point": "Hirsch, Georg Friedrich Andreas"} 1 +2024-09-11 09:07:49.72269 2024-09-11 09:07:49.722693 a6f1cbfe-2add-470f-b3de-362672cbd509 {"md5": "d98e8fda2dd4e5613f50b090d3d24dd6", "pid": "A025435600", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025435600", "source": "RERO"}], "preferred_name": "Vincensini, Cédric", "authorized_access_point": "Vincensini, Cédric"} 1 +2024-09-11 09:07:49.78049 2024-09-11 09:07:49.780494 78d3cfae-8b0b-4062-bb41-9c50ff62a4ea {"md5": "8b55675fdb4a94a4a53fb1f1fc9eaf47", "pid": "A025454683", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025454683", "source": "RERO"}], "date_of_birth": "1939", "preferred_name": "Brown, Jonathan,", "authorized_access_point": "Brown, Jonathan, 1939-"} 1 +2024-09-11 09:07:49.858893 2024-09-11 09:07:49.858895 8a4404a3-8335-412e-82a2-1ce1bdda5d5b {"md5": "76183e05a109ce23e65fa58c5ed31108", "pid": "A025477095", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025477095", "source": "RERO"}], "preferred_name": "Seprewa Kasa", "authorized_access_point": "Seprewa Kasa"} 1 +2024-09-11 09:07:49.921491 2024-09-11 09:07:49.921495 cb7d3a8e-ae9b-4cdb-8f44-56f66e910dd3 {"md5": "a41c38194614d7c92cfdaa5177fee9ed", "pid": "A025504164", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025504164", "source": "RERO"}], "preferred_name": "Saul, Matthew", "authorized_access_point": "Saul, Matthew"} 1 +2024-09-11 09:07:49.998392 2024-09-11 09:07:49.998395 aa9fbfa7-399c-45c2-a243-4c624f31a53a {"md5": "a057e1b928e9fa9da07dbad982301180", "pid": "A025537929", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025537929", "source": "RERO"}], "preferred_name": "Renoué, Pierre-François", "authorized_access_point": "Renoué, Pierre-François"} 1 +2024-09-11 09:07:50.061947 2024-09-11 09:07:50.061951 c0991b4d-c6b8-4440-aff3-5d166e2478a9 {"md5": "ec9ada6433f2f040043215c862b85f8e", "pid": "A025540309", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025540309", "source": "RERO"}], "preferred_name": "Gabarski, Sam", "authorized_access_point": "Gabarski, Sam"} 1 +2024-09-11 09:07:50.118611 2024-09-11 09:07:50.118615 3ba7c7b2-9990-4a29-95ee-a601f5e81c73 {"md5": "845d7dfd3a270e11850343cb57c5866d", "pid": "A025581873", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025581873", "source": "RERO"}], "preferred_name": "Konstanzer Arbeitskreis für Sportrecht. Herbsttagung (2012 :", "authorized_access_point": "Konstanzer Arbeitskreis für Sportrecht. Herbsttagung (2012 : Warnemünde)"} 1 +2024-09-11 09:07:50.177776 2024-09-11 09:07:50.17778 3b435c79-644a-4217-ad83-a35d74eb083c {"md5": "034d993f7e891b00a5d4bcc3ee5db5b3", "pid": "A025582144", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025582144", "source": "RERO"}], "date_of_birth": "1926", "preferred_name": "Jobe, Evan Kermit,", "authorized_access_point": "Jobe, Evan Kermit, 1926-"} 1 +2024-09-11 09:07:50.239707 2024-09-11 09:07:50.239709 12a3f2d9-d42d-4be4-b99d-c19dd1232b0a {"md5": "7ac1a232a63fdc316dd5c4ea1c973912", "pid": "A025610247", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025610247", "source": "RERO"}], "preferred_name": "Colloque international d'histoire et de spiritualité cartusiennes 2014 :", "authorized_access_point": "Colloque international d'histoire et de spiritualité cartusiennes (35 : 2014 : Köln)"} 1 +2024-09-11 09:07:50.299331 2024-09-11 09:07:50.299336 44cc2d59-eb86-45da-a6a3-88ac712fb824 {"md5": "fe76594a9da717c80d4194e4f81a9465", "pid": "A025614399", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025614399", "source": "RERO"}], "preferred_name": "Clark, Chester Wells", "authorized_access_point": "Clark, Chester Wells"} 1 +2024-09-11 09:07:50.354285 2024-09-11 09:07:50.354289 56045ba9-ce93-4335-8f07-43e218fafcd0 {"md5": "9308ef4ac48e9d104b92d8dd40bfbebb", "pid": "A025630450", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025630450", "source": "RERO"}], "preferred_name": "Salzmann, Marc", "authorized_access_point": "Salzmann, Marc"} 1 +2024-09-11 09:07:50.417722 2024-09-11 09:07:50.417727 23a9b1bb-ddd7-4ded-b1aa-6e60d8b3d852 {"md5": "241ea1d82dbd445ff66ba4ac4d288fe4", "pid": "A025632565", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025632565", "source": "RERO"}], "preferred_name": "Fried, Hans Ernest", "authorized_access_point": "Fried, Hans Ernest"} 1 +2024-09-11 09:07:50.475776 2024-09-11 09:07:50.47578 fba3323b-12b9-4042-97bd-17af8f097f40 {"md5": "849175e169d0b9e7ae96271682cc059b", "pid": "A025639432", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025639432", "source": "RERO"}], "preferred_name": "Moncenix, Jean François de", "authorized_access_point": "Moncenix, Jean François de"} 1 +2024-09-11 09:07:50.539361 2024-09-11 09:07:50.539365 e482ab79-ecc7-41cd-80f3-5690bf303215 {"md5": "2fdd0b08739e8b848b75cd70b8faeb29", "pid": "A025669520", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025669520", "source": "RERO"}], "preferred_name": "Robineau, Jean-François", "authorized_access_point": "Robineau, Jean-François"} 1 +2024-09-11 09:07:50.597125 2024-09-11 09:07:50.597128 566211ca-1793-4ca9-9401-3e3aa9e83128 {"md5": "15e8344447a8917f4e5a91b2f407c649", "pid": "A025676459", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025676459", "source": "RERO"}], "preferred_name": "Haga, Anna", "authorized_access_point": "Haga, Anna"} 1 +2024-09-11 09:07:50.656468 2024-09-11 09:07:50.656472 7288f008-f0b9-498b-87a5-2c7f01d3118c {"md5": "24582e885f7f3f85d39f9db0a85d67b1", "pid": "A025678092", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025678092", "source": "RERO"}], "preferred_name": "Dooms, Gaspar", "authorized_access_point": "Dooms, Gaspar"} 1 +2024-09-11 09:07:50.714404 2024-09-11 09:07:50.714409 4af9320c-3ef9-487c-a5ae-4de683f9f400 {"md5": "2bc964c75ef0795c88abb81e1198c505", "pid": "A025679166", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025679166", "source": "RERO"}], "preferred_name": "Nicolosi-Roncati, F", "authorized_access_point": "Nicolosi-Roncati, F"} 1 +2024-09-11 09:07:50.786579 2024-09-11 09:07:50.786582 f3283b88-28dd-40e7-aa67-60b82468b787 {"md5": "739555209499bfa576211485d8e931cc", "pid": "A025681987", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025681987", "source": "RERO"}], "preferred_name": "Gruppe Gegenbilder", "authorized_access_point": "Gruppe Gegenbilder"} 1 +2024-09-11 09:07:50.848235 2024-09-11 09:07:50.848239 3a02f255-81d6-4400-a439-ef36be781643 {"md5": "462d6502ce1079bfc1c45a0bc3b790a6", "pid": "A025688432", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025688432", "source": "RERO"}], "preferred_name": "Ribeiro, Marc", "authorized_access_point": "Ribeiro, Marc"} 1 +2024-09-11 09:07:50.919208 2024-09-11 09:07:50.919211 ea57db4c-59c0-428a-b6ed-e7c2062c5ac2 {"md5": "67496ba598a452abdcfdec5b1f8111cc", "pid": "A025691379", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "infirmière", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025691379", "source": "RERO"}], "preferred_name": "Cottet, Valérie, infirmière", "authorized_access_point": "Cottet, Valérie, infirmière"} 1 +2024-09-11 09:07:50.975342 2024-09-11 09:07:50.975347 29f3a287-790d-4814-94c5-af73567cc46d {"md5": "d287533a7886fbf46ab3b574f350c8bc", "pid": "A025694319", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025694319", "source": "RERO"}], "preferred_name": "Sibears, Daniel M", "authorized_access_point": "Sibears, Daniel M"} 1 +2024-09-11 09:07:51.040603 2024-09-11 09:07:51.040606 92e2555b-246c-4e32-90f9-d32290f39cdb {"md5": "390ab7910c0f34ade1c704dc44f94a2a", "pid": "A025711026", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025711026", "source": "RERO"}], "preferred_name": "Orozco, Luis Chávez", "authorized_access_point": "Orozco, Luis Chávez"} 1 +2024-09-11 09:07:51.10107 2024-09-11 09:07:51.101075 250c1f43-c659-4daa-af4a-c867499e8daa {"md5": "376f1e5b96436106e4fc4a43a1b1f43c", "pid": "A025712587", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025712587", "source": "RERO"}], "preferred_name": "Vagner, Marion", "authorized_access_point": "Vagner, Marion"} 1 +2024-09-11 09:07:51.162244 2024-09-11 09:07:51.162248 f2f6c13f-0c3d-49cf-99c3-813af2d8bebe {"md5": "5ea4c092bb22957e79f78cd8ce173eb9", "pid": "A025721356", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025721356", "source": "RERO"}], "variant_name": ["Otto, Bettina,", "Otto, Bettina Jellouschek-,"], "date_of_birth": "1956", "preferred_name": "Jellouschek-Otto, Bettina,", "variant_access_point": ["Otto, Bettina, 1956-", "Otto, Bettina Jellouschek-, 1956-"], "authorized_access_point": "Jellouschek-Otto, Bettina, 1956-", "biographical_information": ["Ecrivain, germaniste, psychologue"]} 1 +2024-09-11 09:07:51.220094 2024-09-11 09:07:51.2201 05cd7cbb-7763-4468-99e2-f15740893953 {"md5": "811f5da8bb44253caa1344c820ee51c8", "pid": "A025723446", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025723446", "source": "RERO"}], "preferred_name": "Kaliska, Maria", "authorized_access_point": "Kaliska, Maria"} 1 +2024-09-11 09:07:51.282201 2024-09-11 09:07:51.282206 f7d0669a-ff48-4f71-8aab-c3efb1762ff8 {"md5": "4adf0b8643e8b6c728a4c7ac9319d0e6", "pid": "A025730129", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025730129", "source": "RERO"}], "preferred_name": "Xavier Hufkens (Bruxelles)", "authorized_access_point": "Xavier Hufkens (Bruxelles)"} 1 +2024-09-11 09:07:51.347101 2024-09-11 09:07:51.347104 dfc57342-734e-4d57-823b-656118e5844e {"md5": "dc82c9e9878cd79ce24bbd852bdfb08b", "pid": "A025745173", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025745173", "source": "RERO"}], "preferred_name": "Lenggenhager, Alizée", "authorized_access_point": "Lenggenhager, Alizée"} 1 +2024-09-11 09:07:51.39938 2024-09-11 09:07:51.399384 5b4c9c9a-3d31-45de-bda1-1bad4396dab5 {"md5": "103db86719bbc0c20c69341ed5e00c96", "pid": "A025772014", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025772014", "source": "RERO"}], "preferred_name": "Kalambay Kabeya, Christian", "authorized_access_point": "Kalambay Kabeya, Christian"} 1 +2024-09-11 09:07:51.457657 2024-09-11 09:07:51.457661 9c6ccf70-8de4-4b24-891b-094613ca53da {"md5": "e0b6fde6e69f231fbaf904914c382718", "pid": "A025773339", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025773339", "source": "RERO"}], "preferred_name": "Theology and the Local Church in the Holy Land 1987->)", "authorized_access_point": "Theology and the Local Church in the Holy Land (1-> : 1987->)"} 1 +2024-09-11 09:07:51.511092 2024-09-11 09:07:51.511097 6fa84da6-4089-4144-a2ed-d0079d6ae3fe {"md5": "ca7e777ef1e01a536e5288c9294e3570", "pid": "A025780261", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025780261", "source": "RERO"}], "preferred_name": "Jorgensen, James H", "authorized_access_point": "Jorgensen, James H"} 1 +2024-09-11 09:07:51.568883 2024-09-11 09:07:51.568886 c4a0dfd7-3abf-4580-881c-e6efc2221154 {"md5": "abf7dc649a61de96c6a65f04aee652db", "pid": "A025785978", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025785978", "source": "RERO"}], "preferred_name": "Lemos, Rogério de", "authorized_access_point": "Lemos, Rogério de"} 1 +2024-09-11 09:07:51.629245 2024-09-11 09:07:51.629251 d4b132aa-b87b-4c8a-b260-f3be3a613749 {"md5": "afb0e96f283574a5fd5de6ade59c04f0", "pid": "A025796144", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025796144", "source": "RERO"}], "preferred_name": "Tripathi, Arti", "authorized_access_point": "Tripathi, Arti"} 1 +2024-09-11 09:07:51.683201 2024-09-11 09:07:51.683204 a545d26a-b8f1-4930-bfa8-c1c09b547e40 {"md5": "4e9b9efbfbb49ee08ec119def4e8fe63", "pid": "A025797147", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025797147", "source": "RERO"}], "preferred_name": "Nippel, Julien", "authorized_access_point": "Nippel, Julien"} 1 +2024-09-11 09:07:51.737464 2024-09-11 09:07:51.737467 f6f2f70c-08e2-4311-8ba2-c680c387ef53 {"md5": "f65dd2dabc6eba5119a9b3ab3202c689", "pid": "A025804299", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "(de Nicée)", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025804299", "source": "RERO"}], "variant_name": ["Antigonos (de Nikaia)", "Antigonus (Nicaeanus)"], "preferred_name": "Antigone (de Nicée)", "variant_access_point": ["Antigonos (de Nikaia)", "Antigonus (Nicaeanus)"], "authorized_access_point": "Antigone (de Nicée)"} 1 +2024-09-11 09:07:51.790127 2024-09-11 09:07:51.790131 163b964b-4e6d-44c5-8794-4eb023e91ff2 {"md5": "6fe7b5d3597cfd4d0912f820a0da947f", "pid": "A025826851", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025826851", "source": "RERO"}], "preferred_name": "Rockstraw, Leland", "authorized_access_point": "Rockstraw, Leland"} 1 +2024-09-11 09:07:51.846801 2024-09-11 09:07:51.846805 8523d2a0-193c-4bfb-90a9-b3819c97ad5e {"md5": "4d0d351f8897b575d23b686c9bf6e9ea", "pid": "A025833339", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025833339", "source": "RERO"}], "variant_name": ["Jara, Camilo Bácares"], "preferred_name": "Bácares Jara, Camilo", "variant_access_point": ["Jara, Camilo Bácares"], "authorized_access_point": "Bácares Jara, Camilo"} 1 +2024-09-11 09:07:51.901607 2024-09-11 09:07:51.90161 bb7e71ae-c0b7-4b7f-ac0b-21b6391e4896 {"md5": "6ed73c54f463fa609e5a465151ec0c79", "pid": "A025835776", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025835776", "source": "RERO"}], "preferred_name": "Delumeau, Martine", "authorized_access_point": "Delumeau, Martine"} 1 +2024-09-11 09:07:51.960087 2024-09-11 09:07:51.960092 39aa3f05-41a3-499a-a0c5-0f6632559fe6 {"md5": "33106300068c49694b279e8ae3c9359c", "pid": "A025837185", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025837185", "source": "RERO"}], "preferred_name": "Bethge, Clemens W", "authorized_access_point": "Bethge, Clemens W"} 1 +2024-09-11 09:07:52.032804 2024-09-11 09:07:52.032809 85fadb3a-4a87-48f2-9092-7355b063f238 {"md5": "aa5d977cd484f6b546ac2515b3c3e69c", "pid": "A025845397", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025845397", "source": "RERO"}], "preferred_name": "Berckenmeyer, Wilhelm Christoph", "authorized_access_point": "Berckenmeyer, Wilhelm Christoph"} 1 +2024-09-11 09:07:52.088489 2024-09-11 09:07:52.088492 1f3a0a53-7805-46c4-a235-9cb380fe0af5 {"md5": "25f1c3371d395d5a258b2189f1b9a2b8", "pid": "A025848952", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025848952", "source": "RERO"}], "preferred_name": "Schütz, Detta Sophie", "authorized_access_point": "Schütz, Detta Sophie"} 1 +2024-09-11 09:07:52.142038 2024-09-11 09:07:52.142043 652808bc-309d-4720-9ed7-a91ae1c47c5b {"md5": "73b9eb4165511ee1d78cd396a14299a1", "pid": "A025851501", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025851501", "source": "RERO"}], "variant_name": ["Kuchlein, Johannes,", "Kuchlinus, Johannes,", "Kuchlinus, Joannes,", "Cuchlinus, Johannes,", "Keuchlinus, Johannes,", "Küchlin, Jean,"], "date_of_birth": "1546", "date_of_death": "1606", "preferred_name": "Küchlein, Johann,", "variant_access_point": ["Kuchlein, Johannes, 1546-1606", "Kuchlinus, Johannes, 1546-1606", "Kuchlinus, Joannes, 1546-1606", "Cuchlinus, Johannes, 1546-1606", "Keuchlinus, Johannes, 1546-1606", "Küchlin, Jean, 1546-1606"], "authorized_access_point": "Küchlein, Johann, 1546-1606", "biographical_information": ["Théologien allemand. Ministre protestant et professeur en théologie. Il naquit à Wetterau (Hesse) en 1546, mourut à Leyde, le 2 juillet 1606. Après avoir terminé ses études à Heidelberg, il fut reçu ministre et attaché à l'église de Tackenheim. Les pasteurs calvinistes ayant été chassés du pays, en 1576, par l'électeur Louis, qui se prétendait luthérien, Johann Küchlein passa en Hollande, enseigna pendant dix-huit ans la théologie à Amsterdam, et dirigea, depuis 1595, le collège de Leyde. Devant lui, de nombreuses thèses furent soutenues. En 1613, ces travaux ont été publiés, à Genève, en un seul volume in-quarto, sous le titre : \\"Theologicae disputationes de religionis christianae capitibus praecipuis...\\". Selon Bayle, Guy Patin l'a fort loué, et un peu trop, car il le nommait \\"un des plus savants hommes de son siècle\\""]} 1 +2024-09-11 09:07:52.204059 2024-09-11 09:07:52.204063 9e9f98db-8d29-426b-a345-51359aac9fc2 {"md5": "9a5a2bfc1143b1ea44a346fa0ad5d62c", "pid": "A025884069", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025884069", "source": "RERO"}], "preferred_name": "Vaulx, Sandra de", "authorized_access_point": "Vaulx, Sandra de"} 1 +2024-09-11 09:07:52.257747 2024-09-11 09:07:52.257752 fd4f702d-e1c1-4704-b058-16ef8fe60f2a {"md5": "610662bff0e5b560ef528d7b0ac096c4", "pid": "A025890846", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025890846", "source": "RERO"}], "preferred_name": "Edmond Jefferson & Sons", "authorized_access_point": "Edmond Jefferson & Sons"} 1 +2024-09-11 09:07:52.311402 2024-09-11 09:07:52.311406 58479797-c831-41d9-9584-d3d8c6b93445 {"md5": "96befac1084c1330615d5bd12cfc4a37", "pid": "A025893734", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025893734", "source": "RERO"}], "preferred_name": "Österreichische Akademie der Wissenschaften. Zentrum Archäologie und Altertumswissenschaften. Tagung 2012 :", "authorized_access_point": "Österreichische Akademie der Wissenschaften. Zentrum Archäologie und Altertumswissenschaften. Tagung (4 : 2012 : Salzburg)"} 1 +2024-09-11 09:07:52.36479 2024-09-11 09:07:52.364793 302ec246-1fc0-422b-a339-89e8035398ea {"md5": "3ea19e80eef6721e28b4b6ad83af7aa8", "pid": "A025926750", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025926750", "source": "RERO"}], "preferred_name": "Feroumont, Bernadette", "authorized_access_point": "Feroumont, Bernadette"} 1 +2024-09-11 09:07:52.430416 2024-09-11 09:07:52.43042 37aadd45-9037-44f2-ba49-db4cdd9b6879 {"md5": "43c709f725082fb80bf34adf58ebfc53", "pid": "A025930633", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025930633", "source": "RERO"}], "preferred_name": "Zell, Johann Daniel Augustin", "authorized_access_point": "Zell, Johann Daniel Augustin"} 1 +2024-09-11 09:07:52.483452 2024-09-11 09:07:52.483461 01d94f18-d074-4c4c-bcd6-bf83182bfe33 {"md5": "b3378bf4c8369610ccd3e5ffa55772cd", "pid": "A025932364", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025932364", "source": "RERO"}], "variant_name": ["Associacion francesa dels catalanistas", "AFC (Association française des catalanistes)"], "preferred_name": "Association française des catalanistes", "variant_access_point": ["Associacion francesa dels catalanistas", "AFC (Association française des catalanistes)"], "authorized_access_point": "Association française des catalanistes"} 1 +2024-09-11 09:07:52.542546 2024-09-11 09:07:52.542551 810ea87c-7fab-48f7-9fd9-4b616aceba2b {"md5": "7aff665c8ece8711b1a7a598af75d978", "pid": "A025951707", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025951707", "source": "RERO"}], "preferred_name": "Loretan, Alexandre", "authorized_access_point": "Loretan, Alexandre"} 1 +2024-09-11 09:07:52.60478 2024-09-11 09:07:52.604783 6b9c6340-db69-4002-94c5-fd9cb4aab998 {"md5": "bfbcb95e587646ff35e2200af0d6b42c", "pid": "A025956739", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025956739", "source": "RERO"}], "preferred_name": "Bey, Dawond", "authorized_access_point": "Bey, Dawond"} 1 +2024-09-11 09:07:52.6617 2024-09-11 09:07:52.661705 097dc88b-0949-48c5-bfc0-419d6fcdb6d0 {"md5": "c4ad03a8480f6aa7342d51ed8cba32be", "pid": "A025958419", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025958419", "source": "RERO"}], "preferred_name": "Kuzma, Pete", "authorized_access_point": "Kuzma, Pete"} 1 +2024-09-11 09:07:52.722799 2024-09-11 09:07:52.722804 dc9f86d0-d51b-4f02-8922-5c9bdca4c224 {"md5": "1cd1e257b717927264b14469f6cc2c61", "pid": "A025965491", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025965491", "source": "RERO"}], "variant_name": ["Petrini, Lisa", "Ferrario, Lisa"], "preferred_name": "Ferrario Petrini, Lisa", "variant_access_point": ["Petrini, Lisa", "Ferrario, Lisa"], "authorized_access_point": "Ferrario Petrini, Lisa", "biographical_information": ["Née en 1983. - Avocate à l'Etude Respini, Jelmini, Beretta Piccoli & Fornara, Lugano"]} 1 +2024-09-11 09:07:52.779046 2024-09-11 09:07:52.77905 cfac8be1-6a31-497a-84ff-cb73f916305e {"md5": "0db8fbc1ef055d83ca91fb5e70bf9bf0", "pid": "A025967759", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025967759", "source": "RERO"}], "preferred_name": "Pool, Eva", "authorized_access_point": "Pool, Eva"} 1 +2024-09-11 09:07:52.839975 2024-09-11 09:07:52.839977 4bf334c2-47d0-44bf-b0e5-a526e8712a88 {"md5": "d47dd3eece44aaedeabffa6901b54787", "pid": "A025976492", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025976492", "source": "RERO"}], "preferred_name": "Beldsoe, Jane K", "authorized_access_point": "Beldsoe, Jane K"} 1 +2024-09-11 09:07:52.892584 2024-09-11 09:07:52.892587 06f8e2b1-1c96-4b6e-8d29-37f16afa9cf1 {"md5": "c01f2f2706bbde7f87a585ca97586b1e", "pid": "A025983847", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025983847", "source": "RERO"}], "variant_name": ["Millamoto, María Esther Quintana", "Quintana, María Esther", "Quintana M., María Esther"], "preferred_name": "Quintana Millamoto, María Esther", "variant_access_point": ["Millamoto, María Esther Quintana", "Quintana, María Esther", "Quintana M., María Esther"], "authorized_access_point": "Quintana Millamoto, María Esther"} 1 +2024-09-11 09:07:52.96281 2024-09-11 09:07:52.962815 b24b3c6c-8c0d-4da7-a7de-8f6894de4116 {"md5": "7a3954fa14815f1d48c191cd5fba30b8", "pid": "A025987021", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A025987021", "source": "RERO"}], "preferred_name": "Imhanobe, Sylvester Omoregie", "authorized_access_point": "Imhanobe, Sylvester Omoregie"} 1 +2024-09-11 09:07:53.041451 2024-09-11 09:07:53.041455 73d1c6c5-4a8b-4094-815c-9c946e5c8eb0 {"md5": "abad60390b88a539572cb5999816ae3e", "pid": "A026005729", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026005729", "source": "RERO"}], "preferred_name": "Krajnovic, Jasma", "authorized_access_point": "Krajnovic, Jasma"} 1 +2024-09-11 09:07:53.097319 2024-09-11 09:07:53.097324 f3fa45ea-982d-4c53-812d-a518afd67978 {"md5": "e4a3ab00b443c9ca24b32f3d2b2af6a3", "pid": "A026012565", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026012565", "source": "RERO"}], "preferred_name": "Kracht, Louis", "authorized_access_point": "Kracht, Louis"} 1 +2024-09-11 09:07:53.152506 2024-09-11 09:07:53.152512 0b3b2bd2-ba3e-44c2-9141-e25872c4e250 {"md5": "b2cc06f9d81b1de57d8a1313f6cb45df", "pid": "A026015516", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026015516", "source": "RERO"}], "preferred_name": "Korvin, Stéphane", "authorized_access_point": "Korvin, Stéphane"} 1 +2024-09-11 09:07:53.205403 2024-09-11 09:07:53.205408 a145e2b2-87f5-48ff-adce-1da2f8ea51dc {"md5": "2342bb3ae2eae90a33510f7320e2fca3", "pid": "A026028252", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "médecin", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026028252", "source": "RERO"}], "preferred_name": "Caron, Michel, médecin", "authorized_access_point": "Caron, Michel, médecin"} 1 +2024-09-11 09:07:53.258768 2024-09-11 09:07:53.258772 84abce12-ca43-44f3-9208-237098ff7661 {"md5": "df28199332ce338d538241c248bf7c7b", "pid": "A026028546", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026028546", "source": "RERO"}], "date_of_birth": "1972", "preferred_name": "Amesbury, Richard,", "authorized_access_point": "Amesbury, Richard, 1972-"} 1 +2024-09-11 09:07:53.309814 2024-09-11 09:07:53.309818 da04237e-7379-4427-a84d-f564f32f7a5d {"md5": "9fa34eb0d536a5d28b66749b9ebce9ad", "pid": "A026050339", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026050339", "source": "RERO"}], "variant_name": ["Alchimic (théâtre, Carouge)"], "preferred_name": "Théâtre Alchimic (Carouge)", "variant_access_point": ["Alchimic (théâtre, Carouge)"], "authorized_access_point": "Théâtre Alchimic (Carouge)"} 1 +2024-09-11 09:07:53.362993 2024-09-11 09:07:53.362997 8acfbc20-583b-4362-a2a5-98cf8e18f586 {"md5": "0ccd6b5d276de47876535151282c840a", "pid": "A026066357", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026066357", "source": "RERO"}], "preferred_name": "Schmid, Luna", "authorized_access_point": "Schmid, Luna"} 1 +2024-09-11 09:07:53.416642 2024-09-11 09:07:53.416646 ef94de5f-d347-4ab5-97f2-c5ca586d3403 {"md5": "c459e78667c4fcc74e9fa0f7ee95892c", "pid": "A026085043", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026085043", "source": "RERO"}], "preferred_name": "Pointet, Raymond", "authorized_access_point": "Pointet, Raymond"} 1 +2024-09-11 09:07:53.470733 2024-09-11 09:07:53.470737 df1ab8df-14e1-475b-87f8-0830b75c1fe4 {"md5": "ec7a2555ea45bb82682a294393c49f6e", "pid": "A026091329", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026091329", "source": "RERO"}], "preferred_name": "Teverson, Paul", "authorized_access_point": "Teverson, Paul"} 1 +2024-09-11 09:07:53.526314 2024-09-11 09:07:53.526318 8299bc96-2ba4-49f2-9d2c-54b92e60bc3e {"md5": "d1449535fc437972e227c49be111357a", "pid": "A026115092", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026115092", "source": "RERO"}], "variant_name": ["ENSBA (Ecole nationale supérieure des beaux-arts : Lyon)", "ENSBA Lyon (Ecole nationale supérieure des beaux-arts : Lyon)", "Ecole nationale supérieure des beaux-arts de Lyon"], "preferred_name": "Ecole nationale supérieure des beaux-arts (Lyon)", "variant_access_point": ["ENSBA (Ecole nationale supérieure des beaux-arts : Lyon)", "ENSBA Lyon (Ecole nationale supérieure des beaux-arts : Lyon)", "Ecole nationale supérieure des beaux-arts de Lyon"], "authorized_access_point": "Ecole nationale supérieure des beaux-arts (Lyon)", "biographical_information": ["Jusqu'en janvier 2011: Ecole nationale des beaux-arts (Lyon)", "Dès le 1 février 2011: Ecole nationale supérieure des beaux-arts (Lyon)"]} 1 +2024-09-11 09:07:53.581167 2024-09-11 09:07:53.58117 bdf09a49-c1bf-45ca-acd0-de8cd135994c {"md5": "503515a3d65d1c8aed6e40d73f31a2ac", "pid": "A026120339", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026120339", "source": "RERO"}], "preferred_name": "Gledhill, Hugh", "authorized_access_point": "Gledhill, Hugh"} 1 +2024-09-11 09:07:53.639553 2024-09-11 09:07:53.639556 a1fc6dfd-8508-4587-a92c-6d9f90700f59 {"md5": "634ca69de9691e1a5831591c91c8eb03", "pid": "A026122888", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026122888", "source": "RERO"}], "variant_name": ["Zakharova, T. K.", "Zacharova, Tatʹjana Konstantinovna", "Zaharova, Tatʹâna Konstantinovna"], "preferred_name": "Zakharova, Tatʹi︠a︡na Konstantinova", "variant_access_point": ["Zakharova, T. K. (Tatʹi︠a︡na Konstantinova)", "Zacharova, Tatʹjana Konstantinovna", "Zaharova, Tatʹâna Konstantinovna"], "parallel_access_point": ["Захарова, Татьяна Михайловна"], "authorized_access_point": "Zakharova, Tatʹi︠a︡na Konstantinova"} 1 +2024-09-11 09:07:53.696355 2024-09-11 09:07:53.696361 6c7e0504-7a76-4ac3-a45b-e0c096397219 {"md5": "eddf434135044a4d391edab7a340de30", "pid": "A026123991", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026123991", "source": "RERO"}], "preferred_name": "Cardoso, António", "authorized_access_point": "Cardoso, António"} 1 +2024-09-11 09:07:53.769753 2024-09-11 09:07:53.769757 4d74caad-35a1-45ce-92c1-691b20595d9f {"md5": "1fc5cb08d113462911725212034a6930", "pid": "A026129158", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026129158", "source": "RERO"}], "preferred_name": "Association d'amitié des peuples de Chine et d'Afrique", "authorized_access_point": "Association d'amitié des peuples de Chine et d'Afrique"} 1 +2024-09-11 09:07:53.829185 2024-09-11 09:07:53.82919 63255358-79b8-470b-bbf6-99f4235d16fb {"md5": "31b6266bd3c8c3eb852765739e1b288f", "pid": "A026132029", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026132029", "source": "RERO"}], "preferred_name": "Ochieng Pernet, Awilo", "authorized_access_point": "Ochieng Pernet, Awilo"} 1 +2024-09-11 09:07:53.881585 2024-09-11 09:07:53.881589 51385a6c-6bc4-425a-ac4e-1f03e4072b1c {"md5": "5661dadf3b23ef04290bd42856a88e00", "pid": "A026144791", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026144791", "source": "RERO"}], "date_of_birth": "1886", "date_of_death": "1938", "preferred_name": "Shumi︠a︡t︠zki, B.", "authorized_access_point": "Shumi︠a︡t︠zki, B. (Boris Zakharovich), 1886-1938"} 1 +2024-09-11 09:07:53.937872 2024-09-11 09:07:53.937875 9b67fbdb-cd12-428a-bbc6-2df0bf30577e {"md5": "33486b386ddca79d6eb39f59d36ada27", "pid": "A026155985", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "Denis", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026155985", "source": "RERO"}], "preferred_name": "Eyraud, Denis", "authorized_access_point": "Eyraud, Denis"} 1 +2024-09-11 09:07:53.995567 2024-09-11 09:07:53.995572 8c877e58-b0a1-407a-8bbb-445b7b02982d {"md5": "5a2deafc1c37a3e5317de6ba2ca65868", "pid": "A026164040", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026164040", "source": "RERO"}], "preferred_name": "Koller, Pierre", "authorized_access_point": "Koller, Pierre"} 1 +2024-09-11 09:07:54.055212 2024-09-11 09:07:54.055216 5249f234-8963-4b73-8e33-7a9ff4104728 {"md5": "118d53e73f327d240c1c62473a17890d", "pid": "A026168031", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026168031", "source": "RERO"}], "preferred_name": "Journées européennes des métiers d'art (2015)", "authorized_access_point": "Journées européennes des métiers d'art (2015)"} 1 +2024-09-11 09:07:54.107674 2024-09-11 09:07:54.107678 478c4c2a-b030-41ac-93b0-64b397e6cb47 {"md5": "fad1335f748887160f3316723379c915", "pid": "A026168151", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026168151", "source": "RERO"}], "preferred_name": "Schmutz, Mike", "authorized_access_point": "Schmutz, Mike"} 1 +2024-09-11 09:07:54.162055 2024-09-11 09:07:54.162059 ef6069f3-4344-42f4-ba32-3bf61754f046 {"md5": "c509c389021f14c02ebab30e71919491", "pid": "A026169859", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026169859", "source": "RERO"}], "preferred_name": "Choudhary, Debi", "authorized_access_point": "Choudhary, Debi"} 1 +2024-09-11 09:07:55.116613 2024-09-11 09:07:55.116622 1552f2c4-76cb-4c2e-a22f-c90aee354001 {"md5": "2ac699d873b78fd90a066b2b652ba7d8", "pid": "A026596122", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026596122", "source": "RERO"}], "preferred_name": "Beeser, Julius", "authorized_access_point": "Beeser, Julius"} 1 +2024-09-11 09:07:54.214421 2024-09-11 09:07:54.214424 0835aa0e-962e-4249-bbdb-d99544b38b47 {"md5": "c95107251d1176364aca65e2f6af67b3", "pid": "A026174573", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026174573", "source": "RERO"}], "variant_name": ["Dupasquier, Jacques-Louis,", "Pasquier, Jacques-Louis du,"], "date_of_birth": "1762", "date_of_death": "1830", "preferred_name": "Du Pasquier, Jacques-Louis,", "variant_access_point": ["Dupasquier, Jacques-Louis, 1762-1830", "Pasquier, Jacques-Louis du, 1762-1830"], "authorized_access_point": "Du Pasquier, Jacques-Louis, 1762-1830", "biographical_information": ["Pasteur neuchâtelois (consacré le 6 août 1783). - Chapelain du roi de Prusse à Berlin (1789-ca.1791). - Député aux Audiences générales. - Un des fondateurs de la Caisse d'épargne (1812). - Aumônier du contingent neuchâtelois levé en 1815. - Rédacteur du \\"Messager boiteux de Neuchâtel\\" (1805-1830)"]} 1 +2024-09-11 09:07:54.269377 2024-09-11 09:07:54.269379 4823e5e3-df88-4f37-9370-15b6d8b0ef97 {"md5": "e8d3c8b4635850f515b3d55d5b433ddb", "pid": "A026408718", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026408718", "source": "RERO"}], "preferred_name": "Monkelbaan, Joachim", "authorized_access_point": "Monkelbaan, Joachim"} 1 +2024-09-11 09:07:54.333011 2024-09-11 09:07:54.333015 356e1da8-e1db-4dab-8e3d-e7de9245ba61 {"md5": "73056b8d8b878444545b894a26c44dc0", "pid": "A026432303", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026432303", "source": "RERO"}], "preferred_name": "Lombardoni, Chiara", "authorized_access_point": "Lombardoni, Chiara"} 1 +2024-09-11 09:07:54.387462 2024-09-11 09:07:54.387467 5af2bf15-e855-4f72-96d6-95cf638284e3 {"md5": "244e1588485d4634432e1befc4cb2f17", "pid": "A026434702", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026434702", "source": "RERO"}], "preferred_name": "International Workshop on Embedded Software 2003 :", "authorized_access_point": "International Workshop on Embedded Software (3 : 2003 : Philadelphia)"} 1 +2024-09-11 09:07:54.469765 2024-09-11 09:07:54.469769 c5468b87-f6e0-492d-ae73-0aec109066cc {"md5": "46ae1a35371741d522066e2676fc7276", "pid": "A026439717", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026439717", "source": "RERO"}], "date_of_birth": "1958", "preferred_name": "Hajatpour, Reza,", "authorized_access_point": "Hajatpour, Reza, 1958-"} 1 +2024-09-11 09:07:54.531216 2024-09-11 09:07:54.531222 2071288d-93b6-4a4f-a18b-cd66f5100927 {"md5": "0d1ad1bb72e3f710b623c585bda95220", "pid": "A026450966", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026450966", "source": "RERO"}], "preferred_name": "Pressmann, Gina", "authorized_access_point": "Pressmann, Gina"} 1 +2024-09-11 09:07:54.596798 2024-09-11 09:07:54.596804 7f5564c3-6d6e-4037-b5ea-95e42953ab03 {"md5": "7f767542e328573e3f39314ee5a5eb54", "pid": "A026459182", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026459182", "source": "RERO"}], "preferred_name": "Slow show", "authorized_access_point": "Slow show"} 1 +2024-09-11 09:07:54.655305 2024-09-11 09:07:54.655308 e86f76bd-09c7-4747-a136-a76e1a04070d {"md5": "401da0478077d7bdcf10321867793f81", "pid": "A026462220", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026462220", "source": "RERO"}], "preferred_name": "Universidad Nacional de Educación a Distancia (Madrid). Centro de Investigación de Semiótica Literaria, Teatral y Nuevas Tecnologías. Seminario Internacional 2009 :", "authorized_access_point": "Universidad Nacional de Educación a Distancia (Madrid). Centro de Investigación de Semiótica Literaria, Teatral y Nuevas Tecnologías. Seminario Internacional (19 : 2009 : Madrid)"} 1 +2024-09-11 09:07:54.714036 2024-09-11 09:07:54.714039 7920f3f7-0cb3-4163-95f7-ab0e1a16cd1e {"md5": "a6def985235bf591f363c0a9e4cfe8d7", "pid": "A026466905", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026466905", "source": "RERO"}], "preferred_name": "Maret, Morgane", "authorized_access_point": "Maret, Morgane"} 1 +2024-09-11 09:07:54.767668 2024-09-11 09:07:54.767672 8dcead69-ba95-4327-938c-1388a65c668b {"md5": "18f58bc89fc69c1e18d903531bb2193e", "pid": "A026474353", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026474353", "source": "RERO"}], "preferred_name": "Ramò, Mario", "authorized_access_point": "Ramò, Mario"} 1 +2024-09-11 09:07:54.826212 2024-09-11 09:07:54.826216 e95fdeac-d36a-4207-99ad-c34b329feb4a {"md5": "4e5025e3c4561611d235f598024bffba", "pid": "A026534148", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026534148", "source": "RERO"}], "preferred_name": "Prajapati, Darshana", "authorized_access_point": "Prajapati, Darshana"} 1 +2024-09-11 09:07:54.881883 2024-09-11 09:07:54.881886 e79d42bc-6477-49e8-970c-c0cc91ff71a4 {"md5": "19eb1dc5491a644ddb106c9b762a235b", "pid": "A026548298", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026548298", "source": "RERO"}], "preferred_name": "Forest, Todd A", "authorized_access_point": "Forest, Todd A"} 1 +2024-09-11 09:07:54.936117 2024-09-11 09:07:54.93612 f9740f6b-e34c-426e-9eb0-8f01281c1a8a {"md5": "f31654fe77934d66352423e26923e00e", "pid": "A026554111", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026554111", "source": "RERO"}], "preferred_name": "International Conference on Amazonian Agriculture and Land Use Research (1980 :", "authorized_access_point": "International Conference on Amazonian Agriculture and Land Use Research (1980 : Cali)"} 1 +2024-09-11 09:07:54.996387 2024-09-11 09:07:54.996392 80d28178-5b07-4ac0-907b-b20ba7b44331 {"md5": "236a34b5644984406e5510a219316312", "pid": "A026558985", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "(pseud. de Jérôme Almes)", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026558985", "source": "RERO"}], "variant_name": ["Almes, Jérôme"], "preferred_name": "Smole (pseud. de Jérôme Almes)", "variant_access_point": ["Almes, Jérôme"], "authorized_access_point": "Smole (pseud. de Jérôme Almes)", "biographical_information": ["Dates de vie: 1982-"]} 1 +2024-09-11 09:07:55.059447 2024-09-11 09:07:55.059451 3faf0e34-712e-4650-a452-ec9c0d28bbe5 {"md5": "fcecb0d2b89f78b1502897743fc391fa", "pid": "A026586322", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026586322", "source": "RERO"}], "preferred_name": "Dunand, Boris", "authorized_access_point": "Dunand, Boris"} 1 +2024-09-11 09:07:55.168388 2024-09-11 09:07:55.168391 205bcbf8-9ef7-47ed-ae16-94c8246b8020 {"md5": "d07bc2a3fe43d1c9af3db0b9a29405af", "pid": "A026608425", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026608425", "source": "RERO"}], "preferred_name": "Quénéhen, Laurent", "authorized_access_point": "Quénéhen, Laurent"} 1 +2024-09-11 09:07:55.226208 2024-09-11 09:07:55.22621 8594b99e-78fc-4421-8ff9-8eb012432ebd {"md5": "8f362eb9769ebea7ef4b00b687a837b3", "pid": "A026614309", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026614309", "source": "RERO"}], "preferred_name": "Gaumeton, Pierre", "authorized_access_point": "Gaumeton, Pierre"} 1 +2024-09-11 09:07:55.332537 2024-09-11 09:07:55.332542 252033d0-693c-4ef4-839d-b80394ec2e6b {"md5": "47ba3dba0057da3d0204c064c00ba038", "pid": "A026614954", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026614954", "source": "RERO"}], "preferred_name": "Marques Teixeira, Celina", "authorized_access_point": "Marques Teixeira, Celina"} 1 +2024-09-11 09:07:55.387895 2024-09-11 09:07:55.387899 b1fb5261-3c71-40a3-834b-688505beb018 {"md5": "d012cd73fd8f27b85039b0a114cd04bb", "pid": "A026623687", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026623687", "source": "RERO"}], "preferred_name": "Université du 3e âge (Genève). Colloque (1986-1988 :", "authorized_access_point": "Université du 3e âge (Genève). Colloque (1986-1988 : Genève)"} 1 +2024-09-11 09:07:55.441225 2024-09-11 09:07:55.441229 a90dad7c-d6c8-45ff-a4fd-46152e16bb91 {"md5": "73570c0cf6cbf981c14fd14be43f73a9", "pid": "A026636855", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026636855", "source": "RERO"}], "preferred_name": "Botteron, Louise", "authorized_access_point": "Botteron, Louise"} 1 +2024-09-11 09:07:55.498372 2024-09-11 09:07:55.498377 be823144-475f-4e35-9bd0-5c730fdd04a1 {"md5": "5f082dc1ece28581908f46c831fa078d", "pid": "A026642855", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026642855", "source": "RERO"}], "date_of_birth": "1974", "preferred_name": "Bruneau, Antoine,", "authorized_access_point": "Bruneau, Antoine, 1974-"} 1 +2024-09-11 09:07:55.55443 2024-09-11 09:07:55.554432 343eece5-aaea-445d-bd4c-9f97217aa39d {"md5": "796d72778d0d0087c276eac13d9cf18f", "pid": "A026652068", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026652068", "source": "RERO"}], "preferred_name": "Tobler, Vera", "authorized_access_point": "Tobler, Vera"} 1 +2024-09-11 09:07:55.615558 2024-09-11 09:07:55.615563 ecad4336-d6f3-45f7-b8dd-6f6020295ce5 {"md5": "ccbb46d64a8409ba544e702da4f781a8", "pid": "A026654612", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026654612", "source": "RERO"}], "preferred_name": "Lhéritier, Elsa", "authorized_access_point": "Lhéritier, Elsa"} 1 +2024-09-11 09:07:55.671901 2024-09-11 09:07:55.671904 9ac94dfc-ba85-48fc-8235-c354e8e338c0 {"md5": "4ab472dd46818cd5a1ef077b2f9cf000", "pid": "A026685590", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026685590", "source": "RERO"}], "preferred_name": "Jahrestagung Deutsch als Fremdsprache 1975 :", "authorized_access_point": "Jahrestagung Deutsch als Fremdsprache (3 : 1975 : Berlin)"} 1 +2024-09-11 09:07:55.732291 2024-09-11 09:07:55.732294 84ccaba9-4dde-43ec-a798-8845ef8c12e2 {"md5": "46d440ce9e619a430c6c1f095b1cf069", "pid": "A026722774", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026722774", "source": "RERO"}], "preferred_name": "Ambunda, Lotta N", "authorized_access_point": "Ambunda, Lotta N"} 1 +2024-09-11 09:07:55.79047 2024-09-11 09:07:55.790474 7b1048e9-40b1-406e-afda-d42f7c8131ed {"md5": "7739338ee2ff8991e2f7aca7a59154dc", "pid": "A026723222", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026723222", "source": "RERO"}], "preferred_name": "Société cantonale des carabiniers genevois", "authorized_access_point": "Société cantonale des carabiniers genevois"} 1 +2024-09-11 09:07:55.84486 2024-09-11 09:07:55.844864 c5ed4aa4-6d8a-4b9a-9764-faaf56310375 {"md5": "591e7a653497bdb8d2b7654a468175a5", "pid": "A026724664", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026724664", "source": "RERO"}], "preferred_name": "Association française de recherche sur les livres et objets culturels de l'enfance", "authorized_access_point": "Association française de recherche sur les livres et objets culturels de l'enfance"} 1 +2024-09-11 09:07:55.899283 2024-09-11 09:07:55.899286 dd173c5a-7c89-4a3f-b047-3be742e94fd9 {"md5": "927ffd87a471b8852eebbf5c1cfa1ea0", "pid": "A026736945", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026736945", "source": "RERO"}], "preferred_name": "Flood, Victoria", "authorized_access_point": "Flood, Victoria"} 1 +2024-09-11 09:07:55.95429 2024-09-11 09:07:55.954294 91a1c301-5c7f-4145-afc9-7726a2680b08 {"md5": "a3e0a59042fa57f966fae287a7a021ab", "pid": "A026740856", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026740856", "source": "RERO"}], "preferred_name": "Metzler, Berenike", "authorized_access_point": "Metzler, Berenike"} 1 +2024-09-11 09:07:56.010774 2024-09-11 09:07:56.010778 b2925efa-c0a5-4532-bcdb-a736c4ca01ba {"md5": "25d4581b1b2d06a68034aa84704c20bf", "pid": "A026741839", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026741839", "source": "RERO"}], "preferred_name": "Rocke, Mary Eleonor", "authorized_access_point": "Rocke, Mary Eleonor"} 1 +2024-09-11 09:07:56.064915 2024-09-11 09:07:56.06492 1d5b9d20-68d9-4cfd-9b85-7ad5c9bea3a4 {"md5": "8883e78ccbeac0a789be891ca50b03fd", "pid": "A026748269", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026748269", "source": "RERO"}], "date_of_birth": "1985", "preferred_name": "Krummenacher, Michael,", "authorized_access_point": "Krummenacher, Michael, 1985-"} 1 +2024-09-11 09:07:56.11436 2024-09-11 09:07:56.114365 4fa487c6-c3d3-41ad-8266-815d25e120d2 {"md5": "35926f8cc39900f444680451873a2280", "pid": "A026774834", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026774834", "source": "RERO"}], "preferred_name": "Banque d'Anvers", "authorized_access_point": "Banque d'Anvers"} 1 +2024-09-11 09:07:56.168684 2024-09-11 09:07:56.168687 4194dfe5-0a84-49f9-90f7-10ff8a0c2c8d {"md5": "850fa477e31e4f1571eb49947bf41002", "pid": "A026783817", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026783817", "source": "RERO"}], "preferred_name": "Université catholique de Louvain (Louvain-la-Neuve). Atelier de droit social", "authorized_access_point": "Université catholique de Louvain (Louvain-la-Neuve). Atelier de droit social"} 1 +2024-09-11 09:07:56.225996 2024-09-11 09:07:56.226 808e05dc-65ca-4f7e-bb8c-fcc5c4eacff9 {"md5": "bafbe36ca8ff04f60665a851ca89fbef", "pid": "A026785791", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026785791", "source": "RERO"}], "preferred_name": "Taurel, Jean-Pierre", "authorized_access_point": "Taurel, Jean-Pierre"} 1 +2024-09-11 09:07:56.281599 2024-09-11 09:07:56.281602 5c322c98-93d4-4a64-a86a-5ad8bda041f6 {"md5": "77ec235b9cf7532345b5129a9283cae5", "pid": "A026813025", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026813025", "source": "RERO"}], "preferred_name": "Kale, Vivek", "authorized_access_point": "Kale, Vivek"} 1 +2024-09-11 09:07:56.333201 2024-09-11 09:07:56.333206 15f7a671-893d-4ca1-a52a-001b4617a56e {"md5": "68673b6b7fe0213f3338664130e875ec", "pid": "A026828697", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026828697", "source": "RERO"}], "preferred_name": "Durand, Jean-Marc", "authorized_access_point": "Durand, Jean-Marc"} 1 +2024-09-11 09:07:56.390139 2024-09-11 09:07:56.390143 c80381f6-3a2f-465f-8167-fd96f09d5787 {"md5": "3af84f23db82bffe1bfbee19ec63b1da", "pid": "A026835388", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026835388", "source": "RERO"}], "preferred_name": "International Symposium on Medical Data Analysis 2002 :", "authorized_access_point": "International Symposium on Medical Data Analysis (3 : 2002 : Roma)"} 1 +2024-09-11 09:07:56.444983 2024-09-11 09:07:56.444986 d1594cb4-1f3d-465d-8fa0-1479556ac092 {"md5": "d858b4c62415cc839e367ff41f31ca3c", "pid": "A026839306", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026839306", "source": "RERO"}], "preferred_name": "Inkermann, Helena", "authorized_access_point": "Inkermann, Helena"} 1 +2024-09-11 09:07:56.502248 2024-09-11 09:07:56.502251 33d9c772-ae60-4d22-a315-d361c84c0d31 {"md5": "939cedcdb17a9aec56e5469953ea48a0", "pid": "A026846628", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026846628", "source": "RERO"}], "preferred_name": "Lattner, Andreas", "authorized_access_point": "Lattner, Andreas"} 1 +2024-09-11 09:07:56.560639 2024-09-11 09:07:56.560643 7463cee8-3ec4-41e5-9c60-b4b560be5fa4 {"md5": "904ef88b86f340b2cdfa99eaa5167e98", "pid": "A026847441", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026847441", "source": "RERO"}], "preferred_name": "Corswarem, Emilie", "authorized_access_point": "Corswarem, Emilie"} 1 +2024-09-11 09:07:56.616642 2024-09-11 09:07:56.616646 5ff21264-ce6d-4c75-a40d-cf8ac26f7563 {"md5": "d4ffebfc1b5f39f3ebd09a750968848c", "pid": "A026864091", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026864091", "source": "RERO"}], "preferred_name": "Rehmann, Meret", "authorized_access_point": "Rehmann, Meret"} 1 +2024-09-11 09:07:56.671145 2024-09-11 09:07:56.671148 d6125c9e-a21f-4173-92f6-4de4c8b56799 {"md5": "8bdb81fa3a0ae8d29e584d365312cba8", "pid": "A026894353", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026894353", "source": "RERO"}], "preferred_name": "Chór Harcerski", "authorized_access_point": "Chór Harcerski"} 1 +2024-09-11 09:07:56.724793 2024-09-11 09:07:56.724797 2a42d60d-0788-45f6-8fa6-7bc08e361e45 {"md5": "8440f756962fd936ec2929891634ecb5", "pid": "A026898077", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026898077", "source": "RERO"}], "preferred_name": "Reusch, Anna M", "authorized_access_point": "Reusch, Anna M"} 1 +2024-09-11 09:07:56.780942 2024-09-11 09:07:56.780947 9336266e-74c5-420a-9a4d-0ecdaa55c185 {"md5": "febd56b4c20ab5e67f4277743499ee30", "pid": "A026907243", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026907243", "source": "RERO"}], "preferred_name": "Schenkel, Sonja", "authorized_access_point": "Schenkel, Sonja"} 1 +2024-09-11 09:07:56.835216 2024-09-11 09:07:56.835219 f908a701-1c9a-4255-9593-6bcd56a8c87f {"md5": "b16f7e64658ce77ce999586e462fe328", "pid": "A026919795", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026919795", "source": "RERO"}], "preferred_name": "Ma'aroof, Mohammad Khalid", "authorized_access_point": "Ma'aroof, Mohammad Khalid"} 1 +2024-09-11 09:07:56.889003 2024-09-11 09:07:56.889009 ed9e83e5-305d-4af3-921c-5839d48a711c {"md5": "875621f30843cf8c7de0a5c02498e1d3", "pid": "A026951773", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026951773", "source": "RERO"}], "preferred_name": "Günaçan, Başak", "authorized_access_point": "Günaçan, Başak"} 1 +2024-09-11 09:07:56.939585 2024-09-11 09:07:56.939587 917a8edf-caae-406d-8fd4-9bff48de3ede {"md5": "40454a7aae57893111189c27d8694c91", "pid": "A026952894", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026952894", "source": "RERO"}], "preferred_name": "Tangey, R. de", "authorized_access_point": "Tangey, R. de"} 1 +2024-09-11 09:07:56.98991 2024-09-11 09:07:56.989914 dbd4929a-82ea-47b7-9417-5b6cdf0a7755 {"md5": "07b24647190c79f30f06cf0fc49c9dca", "pid": "A026958334", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026958334", "source": "RERO"}], "date_of_birth": "1961", "preferred_name": "Chen, Jianshe,", "authorized_access_point": "Chen, Jianshe, 1961-", "biographical_information": ["Ecotrophologue"]} 1 +2024-09-11 09:07:57.048497 2024-09-11 09:07:57.048502 8f68e7fa-1cb4-4fda-9315-75ccca6f1d96 {"md5": "bbc652241739fa1d581be661ac76e27a", "pid": "A026964890", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026964890", "source": "RERO"}], "preferred_name": "Crelier, Noah", "authorized_access_point": "Crelier, Noah"} 1 +2024-09-11 09:07:57.133791 2024-09-11 09:07:57.133795 20831778-8811-4c5e-88b1-4222a6116a3c {"md5": "43f4b258f820fb949915ce329855f3dc", "pid": "A026978679", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A026978679", "source": "RERO"}], "preferred_name": "Bourquard, Karelle", "authorized_access_point": "Bourquard, Karelle"} 1 +2024-09-11 09:07:57.192836 2024-09-11 09:07:57.19284 a558a2bd-f979-4dfd-905d-db41975ada26 {"md5": "d5d55355bac6c97f710f8784b2c1faa4", "pid": "A027062343", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027062343", "source": "RERO"}], "preferred_name": "Grellety, Rémi", "authorized_access_point": "Grellety, Rémi"} 1 +2024-09-11 09:07:57.261161 2024-09-11 09:07:57.261164 e9916d85-25c4-4983-8cbf-cd4acb7fc733 {"md5": "d1d69186d5fe4fcf88f3e1ae4405e142", "pid": "A027068066", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027068066", "source": "RERO"}], "preferred_name": "Kostadinov, Georgi Dimitrov", "authorized_access_point": "Kostadinov, Georgi Dimitrov"} 1 +2024-09-11 09:07:57.318187 2024-09-11 09:07:57.31819 6143095a-3f84-4902-9665-c42723d0f195 {"md5": "8e98b3db570b4c15179a072242543f2b", "pid": "A027089118", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027089118", "source": "RERO"}], "preferred_name": "Djeya Kamdom, Yves Gabriel", "authorized_access_point": "Djeya Kamdom, Yves Gabriel"} 1 +2024-09-11 09:07:57.370717 2024-09-11 09:07:57.37072 4963a435-e601-41b6-8498-5fe565df8a5b {"md5": "90a7579961953221781657b2eb86b6c6", "pid": "A027092266", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027092266", "source": "RERO"}], "preferred_name": "Rigolot, Irénée", "authorized_access_point": "Rigolot, Irénée"} 1 +2024-09-11 09:07:57.423863 2024-09-11 09:07:57.423868 4ec8e8a2-6907-4c37-8fa8-d5d6b5fc29ac {"md5": "88234635c729bc0929a297f7f8d48679", "pid": "A027102482", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027102482", "source": "RERO"}], "preferred_name": "Santschi, Peter", "authorized_access_point": "Santschi, Peter"} 1 +2024-09-11 09:07:57.47823 2024-09-11 09:07:57.478234 e0d64c4c-3ad1-4903-a3b3-95f4594ff04a {"md5": "09238fb4886ae5b56b8e6c0f492fa462", "pid": "A027103123", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027103123", "source": "RERO"}], "preferred_name": "Jordan-Zbinden, Evelyne", "authorized_access_point": "Jordan-Zbinden, Evelyne"} 1 +2024-09-11 09:07:57.533504 2024-09-11 09:07:57.533507 5f9c3b93-e74b-435c-960c-0949e777bace {"md5": "54392a19a027f3140ba524f70c45dad6", "pid": "A027116952", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027116952", "source": "RERO"}], "preferred_name": "Philbrick Yadav, Stacey", "authorized_access_point": "Philbrick Yadav, Stacey"} 1 +2024-09-11 09:07:57.590095 2024-09-11 09:07:57.590098 6a8cbf46-6a4d-47be-9a32-4dc0c8a9065e {"md5": "65c50c5a0d7036512fed13fa61443b83", "pid": "A027118711", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027118711", "source": "RERO"}], "preferred_name": "Kerchensteiner, Georg", "authorized_access_point": "Kerchensteiner, Georg"} 1 +2024-09-11 09:07:57.651405 2024-09-11 09:07:57.651411 455d92c0-62b3-4c31-8821-d1b773484f53 {"md5": "17f10e851e1ab1eb7d370835b073d5d8", "pid": "A027119572", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "(marquise) - influence reçue", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027119572", "source": "RERO"}], "preferred_name": "Du Châtelet, Gabrielle-Emilie Le Tonnelier de Breteuil (marquise) - influence reçue", "authorized_access_point": "Du Châtelet, Gabrielle-Emilie Le Tonnelier de Breteuil (marquise) - influence reçue"} 1 +2024-09-11 09:07:57.711475 2024-09-11 09:07:57.711479 6f87dea6-770b-405f-917a-49b266da4de8 {"md5": "9606ec0ed1ba45d5d359c46524d98f06", "pid": "A027138153", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027138153", "source": "RERO"}], "preferred_name": "Walther, Annette", "authorized_access_point": "Walther, Annette"} 1 +2024-09-11 09:07:57.767961 2024-09-11 09:07:57.767965 6052a6e1-9d3a-4f58-bf21-d929ddebcf83 {"md5": "a31bc932289045f47d61696effdbab5f", "pid": "A027139051", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027139051", "source": "RERO"}], "preferred_name": "Collège de France. Chaire Milieux bibliques. Colloque (2014 :", "authorized_access_point": "Collège de France. Chaire Milieux bibliques. Colloque (2014 : Paris)"} 1 +2024-09-11 09:07:57.822423 2024-09-11 09:07:57.822429 dfc13fa3-a400-46a8-b398-3a08f967eefe {"md5": "68c80a32dd358c8b40034c7776a63cba", "pid": "A027149145", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027149145", "source": "RERO"}], "preferred_name": "Magnin, Isabelle E", "authorized_access_point": "Magnin, Isabelle E"} 1 +2024-09-11 09:07:57.879745 2024-09-11 09:07:57.879769 4342bdc7-d912-451c-b9a8-e19405972f4c {"md5": "00333d63272a292b17c663000cb7c7a3", "pid": "A027149446", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027149446", "source": "RERO"}], "preferred_name": "Lutman, Malorie", "authorized_access_point": "Lutman, Malorie"} 1 +2024-09-11 09:07:57.939981 2024-09-11 09:07:57.939984 1b51f8d3-d9b2-48ac-bf9c-9732c3942a3f {"md5": "339c2877546f6c197af646b224b721dd", "pid": "A027157860", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027157860", "source": "RERO"}], "preferred_name": "Lauer, O", "authorized_access_point": "Lauer, O"} 1 +2024-09-11 09:07:57.999811 2024-09-11 09:07:57.999816 9bce0eef-2746-419d-8b9f-242b76bcfe28 {"md5": "03ca807bbc0f05aa730e66ed03a61e10", "pid": "A027180250", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027180250", "source": "RERO"}], "preferred_name": "Ben Amor, Leila", "authorized_access_point": "Ben Amor, Leila"} 1 +2024-09-11 09:07:58.060125 2024-09-11 09:07:58.06013 2901c08f-2a6f-428d-af9c-bc1015c06cc8 {"md5": "72b22f6992b57aec9417d4d4c24b76af", "pid": "A027184035", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027184035", "source": "RERO"}], "preferred_name": "Hogan, Nick", "authorized_access_point": "Hogan, Nick"} 1 +2024-09-11 09:07:58.124115 2024-09-11 09:07:58.124119 de579217-5c07-4840-9f0e-6e943465a3a9 {"md5": "2eecf4a63bcae2404ae17d55c44e5356", "pid": "A027191227", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027191227", "source": "RERO"}], "preferred_name": "Moskowitz, Marina", "authorized_access_point": "Moskowitz, Marina"} 1 +2024-09-11 09:07:58.187875 2024-09-11 09:07:58.187881 9892c46a-042c-4fc0-a823-65e6208fa26f {"md5": "6553f4a56da70b745856f0c0c4f72aa0", "pid": "A027194665", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027194665", "source": "RERO"}], "preferred_name": "Fernando, Anthony Francis Tissa", "authorized_access_point": "Fernando, Anthony Francis Tissa"} 1 +2024-09-11 09:07:58.246279 2024-09-11 09:07:58.246283 53f5b618-6a09-43d3-b401-b064ba2be648 {"md5": "2051cf05e245f4b4e49e9d3a2d00d7c6", "pid": "A027201602", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027201602", "source": "RERO"}], "preferred_name": "Société d'épargne de la paroisse de Remaufens", "authorized_access_point": "Société d'épargne de la paroisse de Remaufens"} 1 +2024-09-11 09:07:58.29946 2024-09-11 09:07:58.299464 8ece635d-ca1c-4507-a0e1-53077521c331 {"md5": "9dc2b0a0d212b8649af5ce921b3ff8b6", "pid": "A027205240", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027205240", "source": "RERO"}], "variant_name": ["UCS (Union of Concerned Scientists)", "Vereinigung Besorgter Wissenschaftler", "Unión de Científicos Preocupados"], "preferred_name": "Union of Concerned Scientists", "variant_access_point": ["UCS (Union of Concerned Scientists)", "Vereinigung Besorgter Wissenschaftler", "Unión de Científicos Preocupados"], "authorized_access_point": "Union of Concerned Scientists", "biographical_information": ["Groupe américain indépendant de scientifiques et de citoyens œuvrant pour trouver des solutions dans les domaines de l'environnement et du développement durable"]} 1 +2024-09-11 09:07:58.356914 2024-09-11 09:07:58.356919 1a174e9c-e739-4d98-8ad4-3fbd62e21d90 {"md5": "562d6a8d96b2754916bfed205fbd6f43", "pid": "A027205480", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027205480", "source": "RERO"}], "preferred_name": "Clouard, Chantal", "authorized_access_point": "Clouard, Chantal"} 1 +2024-09-11 09:07:58.429098 2024-09-11 09:07:58.429103 bd595d7b-c840-4000-8302-3dc741eb68ef {"md5": "19b4b4ab4211073f257479513dc8fea0", "pid": "A027220118", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027220118", "source": "RERO"}], "preferred_name": "Goop, Dieter", "authorized_access_point": "Goop, Dieter"} 1 +2024-09-11 09:07:58.482892 2024-09-11 09:07:58.482896 cc77ec67-d5d0-41a4-ba6e-4c55bd0b7391 {"md5": "c0ef5c2fb8c619446a07337fdb916349", "pid": "A027221608", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027221608", "source": "RERO"}], "preferred_name": "Price, Dwight L", "authorized_access_point": "Price, Dwight L"} 1 +2024-09-11 09:07:58.543943 2024-09-11 09:07:58.543947 fcbeb89b-6497-43a1-87b9-da2c57807c89 {"md5": "b5a149a3567e6b4240075dee909d68ce", "pid": "A027237908", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027237908", "source": "RERO"}], "preferred_name": "Nastić, Stefan", "authorized_access_point": "Nastić, Stefan"} 1 +2024-09-11 09:07:58.599339 2024-09-11 09:07:58.599342 8538f670-ac8e-4c8c-a226-fff74f4c3add {"md5": "3518e2ef8dafec0dfcb6190ec43113e7", "pid": "A027289406", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027289406", "source": "RERO"}], "preferred_name": "International Conference on Independent Component Analysis and Blind Signal Separation 2006 :", "authorized_access_point": "International Conference on Independent Component Analysis and Blind Signal Separation (6 : 2006 : Charleston)"} 1 +2024-09-11 09:07:58.663468 2024-09-11 09:07:58.663474 18603afd-85de-47f8-8622-1b5c0e401e93 {"md5": "9551e63ac9d1241aec77a738c90973de", "pid": "A027297912", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027297912", "source": "RERO"}], "variant_name": ["Klungervik, Ann Jorid,", "Klungervik Greenall, Ann Jorid,", "Greenall, Ann Jorid Klungervik,", "Klungervik Greenall, Annjo,"], "date_of_birth": "1966", "preferred_name": "Greenall, Annjo Klungervik,", "variant_access_point": ["Klungervik, Ann Jorid, 1966-", "Klungervik Greenall, Ann Jorid, 1966-", "Greenall, Ann Jorid Klungervik, 1966-", "Klungervik Greenall, Annjo, 1966-"], "authorized_access_point": "Greenall, Annjo Klungervik, 1966-", "biographical_information": ["Professeur d'anglais, Norwegian University of Science and Technology, Trondheim"]} 1 +2024-09-11 09:07:58.722658 2024-09-11 09:07:58.722661 1da649f6-0cb2-4fac-914e-11a4da306e6d {"md5": "be67a0136ddca8737455e42a1a4ab45e", "pid": "A027302854", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "spécialiste de l'histoire et de la civilisation classique", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027302854", "source": "RERO"}], "preferred_name": "Warren, Richard, spécialiste de l'histoire et de la civilisation classique", "authorized_access_point": "Warren, Richard, spécialiste de l'histoire et de la civilisation classique"} 1 +2024-09-11 09:07:58.782048 2024-09-11 09:07:58.782053 7efd5c76-c9fe-4e74-8ad4-27223d0a7d28 {"md5": "cfa41215299ba9396f0a54b0f4291768", "pid": "A027307709", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027307709", "source": "RERO"}], "preferred_name": "Hubault, Jacques", "authorized_access_point": "Hubault, Jacques"} 1 +2024-09-11 09:07:58.839056 2024-09-11 09:07:58.83906 19ec994e-3f0e-4079-a676-bf42c79bf59b {"md5": "b8c5f2503b3a8d2c1b7994d552a62eef", "pid": "A027316896", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027316896", "source": "RERO"}], "preferred_name": "Shaykhnīyā, Amīr Ḥusayn", "authorized_access_point": "Shaykhnīyā, Amīr Ḥusayn"} 1 +2024-09-11 09:07:58.896303 2024-09-11 09:07:58.896307 9d87e7e0-9dc7-4000-88a2-1e7a57c7ccff {"md5": "47bb15f14fd401516a1d13cadc8c2355", "pid": "A027333148", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027333148", "source": "RERO"}], "preferred_name": "Samedan (Suisse)", "authorized_access_point": "Samedan (Suisse)"} 1 +2024-09-11 09:07:58.951927 2024-09-11 09:07:58.951932 6b3df772-feaf-4126-bc5a-f621a4aac835 {"md5": "000de062d4f12f4635fada0da5a28ef0", "pid": "A027339987", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027339987", "source": "RERO"}], "preferred_name": "Picci, Jennifer", "authorized_access_point": "Picci, Jennifer"} 1 +2024-09-11 09:07:59.009335 2024-09-11 09:07:59.009337 1d80afe6-e6b0-4292-885e-7db5df0f56be {"md5": "60efd88f1d03c0f51c3f01ae8c4d1eb1", "pid": "A027342850", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027342850", "source": "RERO"}], "preferred_name": "Bordigoni, Martial", "authorized_access_point": "Bordigoni, Martial"} 1 +2024-09-11 09:07:59.068374 2024-09-11 09:07:59.068377 3b50f535-20f9-4dc9-9c73-0d6eec3f8d14 {"md5": "7388e5083be497739f897f5fd342761f", "pid": "A027355955", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027355955", "source": "RERO"}], "preferred_name": "Allard, Patrice", "authorized_access_point": "Allard, Patrice"} 1 +2024-09-11 09:07:59.120762 2024-09-11 09:07:59.120766 bc700cec-0eb1-4cd2-a6e1-379bb13d0467 {"md5": "c53228ce81603800a02117eb1359731b", "pid": "A027394831", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027394831", "source": "RERO"}], "preferred_name": "Herren, Cindy", "authorized_access_point": "Herren, Cindy"} 1 +2024-09-11 09:07:59.17514 2024-09-11 09:07:59.175145 463f5e0b-32ed-4cf2-bec5-0ab1a1a37bbc {"md5": "91607efd06febe1f2a4b112d48dd6849", "pid": "A027401068", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027401068", "source": "RERO"}], "preferred_name": "Reguin, Jesse", "authorized_access_point": "Reguin, Jesse"} 1 +2024-09-11 09:07:59.227797 2024-09-11 09:07:59.227802 556bbcbb-2e14-40bb-befd-f21f6f44f29a {"md5": "19fd42cb3a4c71e2d628047502e4c050", "pid": "A027420393", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027420393", "source": "RERO"}], "preferred_name": "Khulayfī, Waʼil Muḥammad ʻAlī", "authorized_access_point": "Khulayfī, Waʼil Muḥammad ʻAlī"} 1 +2024-09-11 09:07:59.28218 2024-09-11 09:07:59.282185 ad11ac7f-5dc0-4ffd-953d-b25dfbe345d8 {"md5": "d69d393b8cc712878ddb1bc4b72c4674", "pid": "A027429159", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027429159", "source": "RERO"}], "preferred_name": "Taillard, Marine", "authorized_access_point": "Taillard, Marine"} 1 +2024-09-11 09:07:59.339293 2024-09-11 09:07:59.339296 cb7bcdf1-3e63-4020-ab50-e139dabc2724 {"md5": "e36b418ca32e56cbaf9c36b75bc427d8", "pid": "A027433246", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027433246", "source": "RERO"}], "preferred_name": "Montenay, Nicolas-Audran de", "authorized_access_point": "Montenay, Nicolas-Audran de"} 1 +2024-09-11 09:07:59.397721 2024-09-11 09:07:59.397726 2807a52d-ed22-48da-b83d-d33e9c79e627 {"md5": "114ec9208ec0d1fe3bc88a2dc8f45cf2", "pid": "A027441359", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027441359", "source": "RERO"}], "variant_name": ["Canada. Parliament"], "preferred_name": "Canada. Parlement", "variant_access_point": ["Canada. Parliament"], "authorized_access_point": "Canada. Parlement", "biographical_information": ["De ?-1866: Canada. Législature", "Dès 1867: Canada. Parlement"]} 1 +2024-09-11 09:07:59.460551 2024-09-11 09:07:59.460555 e0f33d6f-1843-46f0-9903-19ef60c7c661 {"md5": "cb315ffe07537d80c85d3cbd94548ebf", "pid": "A027443542", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027443542", "source": "RERO"}], "preferred_name": "Viklický, Emil", "authorized_access_point": "Viklický, Emil"} 1 +2024-09-11 09:07:59.518671 2024-09-11 09:07:59.518682 6596412c-d655-4c6c-a48b-721bc4c01809 {"md5": "d4d228b81f6cb10e9621a05e85ed81e5", "pid": "A027444942", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027444942", "source": "RERO"}], "date_of_birth": "1989", "preferred_name": "Ferber, Angela,", "authorized_access_point": "Ferber, Angela, 1989-", "biographical_information": ["Titulaire d'un master en lettres Univ. Fribourg Suisse (enseignement secondaire I)"]} 1 +2024-09-11 09:07:59.582555 2024-09-11 09:07:59.58256 cc789834-35cc-4e1f-a571-69ba890132c9 {"md5": "733c3f235997f6ef4ae569f977f5e18a", "pid": "A027445987", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027445987", "source": "RERO"}], "preferred_name": "Majīd, Zīrak", "authorized_access_point": "Majīd, Zīrak"} 1 +2024-09-11 09:07:59.638903 2024-09-11 09:07:59.638908 17e00d3b-8d74-4711-9f4a-ac6fe9690009 {"md5": "45e0b9f3f9a7aedaeda20cd54621355d", "pid": "A027448978", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027448978", "source": "RERO"}], "date_of_birth": "géologue", "preferred_name": "Lombard, Jean,", "authorized_access_point": "Lombard, Jean, géologue"} 1 +2024-09-11 09:07:59.696512 2024-09-11 09:07:59.696517 354d3a49-bfe1-4f68-b862-b14875bdd3c3 {"md5": "fd309cd7010853ea013002619ffa028d", "pid": "A027449905", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027449905", "source": "RERO"}], "date_of_birth": "1957", "preferred_name": "Deloupy, Bernard,", "authorized_access_point": "Deloupy, Bernard, 1957-", "biographical_information": ["Publicitaire, journaliste, auteur de romans policiers. - Coach en communication (en 2018)"]} 1 +2024-09-11 09:07:59.757669 2024-09-11 09:07:59.757671 4e6d8f99-8461-4d10-bc3c-1dc59bbc7356 {"md5": "aa1f5d0d5ef92c2d1edf380fe2b0a583", "pid": "A027457648", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027457648", "source": "RERO"}], "variant_name": ["Société fédérale de gymnastique (Suisse). Turnverein (Murten)", "Fédération suisse de gymnastique. Turnverein (Murten)"], "preferred_name": "Turnverein (Murten)", "variant_access_point": ["Société fédérale de gymnastique (Suisse). Turnverein (Murten)", "Fédération suisse de gymnastique. Turnverein (Murten)"], "authorized_access_point": "Turnverein (Murten)"} 1 +2024-09-11 09:07:59.810917 2024-09-11 09:07:59.810923 00776cf9-176e-40dd-9957-a99d7bc46604 {"md5": "3f77c23bcee1458ec22a459a1176d549", "pid": "A027468424", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027468424", "source": "RERO"}], "preferred_name": "Hérault", "authorized_access_point": "Hérault"} 1 +2024-09-11 09:07:59.865975 2024-09-11 09:07:59.865978 0b742756-912f-4957-aa79-d20cdf195595 {"md5": "657ccc37eaf7302d2f1ca4d4070550a3", "pid": "A027470672", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027470672", "source": "RERO"}], "date_of_birth": "1980", "preferred_name": "Antoniuk, Mateusz,", "authorized_access_point": "Antoniuk, Mateusz, 1980-"} 1 +2024-09-11 09:07:59.91854 2024-09-11 09:07:59.918544 bd8005d0-08e2-4ba9-8c95-72815d3c5b9d {"md5": "f0abd953dfffd54843f49ac51ce50998", "pid": "A027477458", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027477458", "source": "RERO"}], "preferred_name": "Cousin, Grégoire", "authorized_access_point": "Cousin, Grégoire"} 1 +2024-09-11 09:07:59.972726 2024-09-11 09:07:59.972729 8f2a3df6-fb30-40ab-b69b-513d540acff2 {"md5": "2d4e54cfa91a6e60b82df4e6c58ed0c9", "pid": "A027477867", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027477867", "source": "RERO"}], "preferred_name": "European Conference on Machine Learning (2017 :", "authorized_access_point": "European Conference on Machine Learning (2017 : Skopje)"} 1 +2024-09-11 09:08:00.028476 2024-09-11 09:08:00.02848 1c2240fc-9555-40ce-af1a-a85a26b2aac7 {"md5": "6aa1baaa78d220424e8e36db92a69b09", "pid": "A027483344", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027483344", "source": "RERO"}], "preferred_name": "Pic, Camille", "authorized_access_point": "Pic, Camille"} 1 +2024-09-11 09:08:00.085556 2024-09-11 09:08:00.08556 e23697e7-7e4c-4954-a7e6-643d589ffd15 {"md5": "6f58908522d5d779c1d5879f5c71baa3", "pid": "A027488596", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027488596", "source": "RERO"}], "preferred_name": "Mergers & Acquisitions 2017 :", "authorized_access_point": "Mergers & Acquisitions (20 : 2017 : Zürich)"} 1 +2024-09-11 09:08:00.143662 2024-09-11 09:08:00.143666 0282eae0-e677-4cb0-b49c-d60eb518e550 {"md5": "803feecd29a353fe89765d45b9568959", "pid": "A027490804", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027490804", "source": "RERO"}], "preferred_name": "Chételat, Lorène", "authorized_access_point": "Chételat, Lorène"} 1 +2024-09-11 09:08:00.203376 2024-09-11 09:08:00.203379 04baa8aa-1cac-4783-85be-b64bfbd0f285 {"md5": "9d5052ffdfffbaffc326b7f7258fed6f", "pid": "A027498782", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027498782", "source": "RERO"}], "preferred_name": "Al Yafi, Jamil", "authorized_access_point": "Al Yafi, Jamil"} 1 +2024-09-11 09:08:00.257304 2024-09-11 09:08:00.257307 5c556fe5-0832-4675-bb06-a90c9442cf6d {"md5": "040f2746efccc8c5b87af5a060127359", "pid": "A027507344", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027507344", "source": "RERO"}], "date_of_birth": "1966", "preferred_name": "Rauber, Thomas,", "authorized_access_point": "Rauber, Thomas, 1966-", "biographical_information": ["Economiste, fondateur de TR Invest, membre du Conseil d'administration de la banque Raiffeisen. Politicien (Parti démocrate-chrétien), député au Grand Conseil du canton de Fribourg, conseiller communal à Tavel. Président de la Gewerbeverband Sense. Licencié en sc. économique Univ. Fribourg Suisse"]} 1 +2024-09-11 09:08:00.307587 2024-09-11 09:08:00.307591 0c177c68-164e-4d04-91ff-08e8c4b7d2e3 {"md5": "b62c58f304e08aa59ff25bc0ddc11134", "pid": "A027508686", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027508686", "source": "RERO"}], "preferred_name": "Haselmayr, Andrea", "authorized_access_point": "Haselmayr, Andrea"} 1 +2024-09-11 09:08:00.364905 2024-09-11 09:08:00.364908 7678b0ff-7a30-4cbc-8efd-6041a8dad106 {"md5": "611fd1a5c941eb79bd0c0a14a2fecc32", "pid": "A027518436", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027518436", "source": "RERO"}], "preferred_name": "Quintanilla, Marlene", "authorized_access_point": "Quintanilla, Marlene"} 1 +2024-09-11 09:08:00.429557 2024-09-11 09:08:00.429563 0ca066d8-4f76-444c-a995-39e9cf5b75b4 {"md5": "74bdeb947162225c5792ec04c25aac3a", "pid": "A027523029", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027523029", "source": "RERO"}], "preferred_name": "Zweypfenning, R. C. V. J", "authorized_access_point": "Zweypfenning, R. C. V. J"} 1 +2024-09-11 09:08:00.496541 2024-09-11 09:08:00.496546 d2202db9-5a73-4b71-b26f-6849d4a83fd1 {"md5": "1d366379e3547368f5c22144a3b9ca07", "pid": "A027523482", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027523482", "source": "RERO"}], "preferred_name": "Imrie, Alex", "authorized_access_point": "Imrie, Alex"} 1 +2024-09-11 09:08:00.549866 2024-09-11 09:08:00.549869 3da2b7eb-3eb0-4101-9eef-0e2e962abd19 {"md5": "79045d569240f871f3b2e489ebdc7225", "pid": "A027543659", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027543659", "source": "RERO"}], "preferred_name": "Goossens, Elise", "authorized_access_point": "Goossens, Elise"} 1 +2024-09-11 09:08:00.606996 2024-09-11 09:08:00.607 f5f81cc8-188b-4206-af60-6c5a3def3a4e {"md5": "b5c5835c2d1d53d83d31727b3736a64f", "pid": "A027544307", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027544307", "source": "RERO"}], "preferred_name": "Didier, Fredie", "authorized_access_point": "Didier, Fredie"} 1 +2024-09-11 09:08:00.665066 2024-09-11 09:08:00.665072 c48e8ee9-9286-4e20-ad5a-fbc1f8fa3c87 {"md5": "0b3f90694952b141c919934b51eed413", "pid": "A027545859", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027545859", "source": "RERO"}], "preferred_name": "Ermis-Krohs, Selmin", "authorized_access_point": "Ermis-Krohs, Selmin"} 1 +2024-09-11 09:08:00.738804 2024-09-11 09:08:00.738807 938229a4-673c-4610-ad89-bc0d9c6b7692 {"md5": "501c7389bf9dbc8bafd466cfb3ce06cd", "pid": "A027565229", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027565229", "source": "RERO"}], "date_of_birth": "1985", "preferred_name": "Jeger, Silvan,", "authorized_access_point": "Jeger, Silvan, 1985-", "biographical_information": ["Compositeur, contrebassiste et violoncelliste de jazz"]} 1 +2024-09-11 09:08:00.792537 2024-09-11 09:08:00.792541 2fade8a0-b7f7-4ffa-b459-ffd6c37b1d1f {"md5": "f01d240cc32d0513f8578e288456fee6", "pid": "A027568451", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027568451", "source": "RERO"}], "preferred_name": "Embassy (Fribourg)", "authorized_access_point": "Embassy (Fribourg)"} 1 +2024-09-11 09:08:01.77463 2024-09-11 09:08:01.774633 fa8f949e-6d66-4800-9d25-085ae701e489 {"md5": "7ddc54960b9ac03c1fc0eca250a3f6d6", "pid": "A027716766", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027716766", "source": "RERO"}], "preferred_name": "Tesón, Eliseo", "authorized_access_point": "Tesón, Eliseo"} 1 +2024-09-11 09:08:00.847229 2024-09-11 09:08:00.847232 ce7d90c6-092c-4080-8538-f2571625576f {"md5": "10f164bd6c1eada6834acfd65f6569cf", "pid": "A027582518", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027582518", "source": "RERO"}], "date_of_birth": "1944", "preferred_name": "Wiedemann, Herbert,", "authorized_access_point": "Wiedemann, Herbert, 1944-", "biographical_information": ["Professeur de piano spécialisé en improvisation à l'Université des arts de Berlin de 1988 à 2016"]} 1 +2024-09-11 09:08:00.910531 2024-09-11 09:08:00.910534 a4bb3c6a-d5cc-4869-9732-6d4de02e7a0e {"md5": "39c9b1201ae6ba9248925c6e7d38a927", "pid": "A027587471", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027587471", "source": "RERO"}], "preferred_name": "BEP (Lausanne)", "authorized_access_point": "BEP (Lausanne)"} 1 +2024-09-11 09:08:00.964037 2024-09-11 09:08:00.964042 94268268-9e2c-45fb-81e3-864b6642957d {"md5": "040198c0f2cb5bdc99d395638a00f7a3", "pid": "A027588056", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027588056", "source": "RERO"}], "preferred_name": "Dumbarton Oaks Colloquium on the History of Landscape Architecture 2015 :", "authorized_access_point": "Dumbarton Oaks Colloquium on the History of Landscape Architecture (39 : 2015 : Washington)"} 1 +2024-09-11 09:08:01.022505 2024-09-11 09:08:01.022509 d2db05f7-d3a4-478d-8e8a-99d7162e4baa {"md5": "553fa702f066249a5fa18016412c1e7c", "pid": "A027604812", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027604812", "source": "RERO"}], "preferred_name": "Tabin", "authorized_access_point": "Tabin"} 1 +2024-09-11 09:08:01.084494 2024-09-11 09:08:01.084499 83dd1129-8faa-4809-a588-8c735e8838cd {"md5": "4dfed0fcbd092daac4ca837115ebeada", "pid": "A027608462", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027608462", "source": "RERO"}], "preferred_name": "Wirz Werbeberatung (Zürich)", "authorized_access_point": "Wirz Werbeberatung (Zürich)"} 1 +2024-09-11 09:08:01.14242 2024-09-11 09:08:01.142424 83a47bf5-d3f4-4e95-aeff-c02923c77cf4 {"md5": "fa5384979603f3dc5a08c2f609e5c537", "pid": "A027643343", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027643343", "source": "RERO"}], "preferred_name": "Ruehl, Christopher", "authorized_access_point": "Ruehl, Christopher"} 1 +2024-09-11 09:08:01.196442 2024-09-11 09:08:01.196447 3fa4c52a-ea7e-47b7-b8e0-0e37ec5abb9f {"md5": "ead72332a37df6bc0b196237e07ce4ed", "pid": "A027644407", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027644407", "source": "RERO"}], "preferred_name": "Boileau, Géry", "authorized_access_point": "Boileau, Géry"} 1 +2024-09-11 09:08:01.258277 2024-09-11 09:08:01.258282 92b6e97f-1a60-4a63-aa31-74a3936c60c1 {"md5": "d7428d5810ec8cbe34203137ff1e1bd3", "pid": "A027649761", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027649761", "source": "RERO"}], "preferred_name": "Guangdong Zhonghua min zu wen hua cu jin hui", "authorized_access_point": "Guangdong Zhonghua min zu wen hua cu jin hui"} 1 +2024-09-11 09:08:01.309372 2024-09-11 09:08:01.309375 31b55a72-3c00-428d-8dbe-933d4e2be81b {"md5": "ff93f0d74b62eeeac752ae4966b0bff7", "pid": "A027652944", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027652944", "source": "RERO"}], "variant_name": ["Salau, Mohammed Bashir,"], "date_of_birth": "1966", "preferred_name": "Bashir Salau, Mohammed,", "variant_access_point": ["Salau, Mohammed Bashir, 1966-"], "authorized_access_point": "Bashir Salau, Mohammed, 1966-"} 1 +2024-09-11 09:08:01.366393 2024-09-11 09:08:01.366396 f305afd8-e4b2-4c62-8b0f-96a9392c0795 {"md5": "3252eb53061656ffbe2767ae39e566e2", "pid": "A027653000", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027653000", "source": "RERO"}], "date_of_birth": "1888", "preferred_name": "Wray, D.A.", "authorized_access_point": "Wray, D.A. (Disney Alexander), 1888-"} 1 +2024-09-11 09:08:01.427018 2024-09-11 09:08:01.427021 51e9475c-c5b2-443b-80e0-1265fcaef5b1 {"md5": "de7364e735fede6727d1c2119fe00a9e", "pid": "A027655212", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027655212", "source": "RERO"}], "preferred_name": "Guillon, Emmanuelle", "authorized_access_point": "Guillon, Emmanuelle"} 1 +2024-09-11 09:08:01.482402 2024-09-11 09:08:01.482405 5fda4dbd-0c73-4bc4-a67c-07cfb858b589 {"md5": "0c91c15bb70e140b3dccf0a9a36c1c68", "pid": "A027661275", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027661275", "source": "RERO"}], "preferred_name": "Woedtke, Friederike von", "authorized_access_point": "Woedtke, Friederike von"} 1 +2024-09-11 09:08:01.536421 2024-09-11 09:08:01.536425 ef90c48d-46d9-4273-ac17-150e08447d5d {"md5": "30baef823ef91a3942ecf52391e08e1a", "pid": "A027664950", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027664950", "source": "RERO"}], "preferred_name": "Leunen, Nico", "authorized_access_point": "Leunen, Nico"} 1 +2024-09-11 09:08:01.595527 2024-09-11 09:08:01.595532 9990b915-4a5a-4a6e-b915-31f773c9704b {"md5": "82b59dbbc51bb41bbe0d65fa62ed753c", "pid": "A027667116", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027667116", "source": "RERO"}], "variant_name": ["Scott, Kieran Edward"], "preferred_name": "Scott, Kieran E", "variant_access_point": ["Scott, Kieran Edward"], "authorized_access_point": "Scott, Kieran E", "biographical_information": ["Photographe neo-zélandais"]} 1 +2024-09-11 09:08:01.654056 2024-09-11 09:08:01.654061 0413cdf8-7e2c-4e08-82ca-9e7b8e8a02c4 {"md5": "dade622fd790443338c280fed055c4cd", "pid": "A027688556", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027688556", "source": "RERO"}], "variant_name": ["Schleich, Philipp Meier,", "Meier, Philipp,"], "date_of_birth": "1977", "preferred_name": "Meier Schleich, Philipp,", "variant_access_point": ["Schleich, Philipp Meier, 1977-", "Meier, Philipp, 1977-"], "authorized_access_point": "Meier Schleich, Philipp, 1977-"} 1 +2024-09-11 09:08:01.710833 2024-09-11 09:08:01.710837 4f6e4ebb-027c-4dd9-afc5-6d1f934352fd {"md5": "2bcfc30d60bb3579206f0fe091cdd842", "pid": "A027698830", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027698830", "source": "RERO"}], "date_of_birth": "1942", "preferred_name": "Davies, John,", "authorized_access_point": "Davies, John, 1942-"} 1 +2024-09-11 09:08:01.863278 2024-09-11 09:08:01.86328 8d7b8f4a-ca72-49b4-b4b0-05e2b3a00890 {"md5": "c95099e4633d9ee559f02df4ccfc2e3e", "pid": "A027736928", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027736928", "source": "RERO"}], "date_of_birth": "1886", "date_of_death": "1950", "preferred_name": "Couche, Gaston-Paul,", "authorized_access_point": "Couche, Gaston-Paul, 1886-1950"} 1 +2024-09-11 09:08:01.916208 2024-09-11 09:08:01.916214 ff9483b7-e3b5-4735-a63d-51f321027c41 {"md5": "6a758fcfd66119c5be8bae6b8767a1fa", "pid": "A027737227", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027737227", "source": "RERO"}], "date_of_birth": "1956", "preferred_name": "Arx, Urs von,", "authorized_access_point": "Arx, Urs von, 1956-", "biographical_information": ["Auteur de livre de voyage et économiste"]} 1 +2024-09-11 09:08:01.97153 2024-09-11 09:08:01.971536 3b376345-9229-4881-867c-13988a218756 {"md5": "a76d47415b18d8f12efa814f27ca8700", "pid": "A027737968", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027737968", "source": "RERO"}], "preferred_name": "Düsseldorfer Forum Politische Kommunikation 2016 :", "authorized_access_point": "Düsseldorfer Forum Politische Kommunikation (12 : 2016 : Düsseldorf)"} 1 +2024-09-11 09:08:02.025092 2024-09-11 09:08:02.025096 5af53c55-e4ce-4dcc-8ea5-46d89ed9e92f {"md5": "e67ff763005e7ff4b08cd72312f54053", "pid": "A027745860", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027745860", "source": "RERO"}], "preferred_name": "Flamant, Gaspard", "authorized_access_point": "Flamant, Gaspard"} 1 +2024-09-11 09:08:02.089688 2024-09-11 09:08:02.089692 17b9178f-fc15-4a56-80ae-c9dd8b520f4e {"md5": "b4981fbb8ffd6d00bfa3372df49bb6dd", "pid": "A027747343", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027747343", "source": "RERO"}], "preferred_name": "Gelbhaus, Tea", "authorized_access_point": "Gelbhaus, Tea"} 1 +2024-09-11 09:08:02.149406 2024-09-11 09:08:02.149412 7e9bef85-9544-471d-b202-a3a6d9c416c2 {"md5": "9a94fd71b110aff82095427c8eeefefe", "pid": "A027763919", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027763919", "source": "RERO"}], "preferred_name": "Palme, Thomas", "authorized_access_point": "Palme, Thomas", "biographical_information": ["Dates de vie: 1967-"]} 1 +2024-09-11 09:08:02.200953 2024-09-11 09:08:02.200958 ef737b05-d96a-4e32-b79b-b19ec1a62eff {"md5": "9763885e5913107293d6347f89ac300c", "pid": "A027766736", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027766736", "source": "RERO"}], "preferred_name": "Gigandet, Jean", "authorized_access_point": "Gigandet, Jean"} 1 +2024-09-11 09:08:02.25449 2024-09-11 09:08:02.254493 9795bf7b-4efe-43df-91fc-fdc9f1566d65 {"md5": "55b90b6f960a385c72d3eece6b85e0d9", "pid": "A027807323", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027807323", "source": "RERO"}], "date_of_birth": "1948", "preferred_name": "Pérez, Silverio,", "authorized_access_point": "Pérez, Silverio, 1948-", "biographical_information": ["Musicien, écrivain, humoriste, entrepreneur et animateur de média de radiodiffusion portoricain"]} 1 +2024-09-11 09:08:02.307769 2024-09-11 09:08:02.307773 a18f5231-cf25-47b7-b5a3-055aaf572b60 {"md5": "ee3dbf80ab7b8014e2024a836483148e", "pid": "A027811966", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027811966", "source": "RERO"}], "variant_name": ["Bednarek, Monika A.,"], "date_of_birth": "1977", "preferred_name": "Bednarek, Monika,", "variant_access_point": ["Bednarek, Monika A., 1977-"], "authorized_access_point": "Bednarek, Monika, 1977-", "biographical_information": ["Linguiste. - Professeure associée au Department of Linguistics, University of Sydney"]} 1 +2024-09-11 09:08:02.366139 2024-09-11 09:08:02.366142 e1468618-3afb-4264-90b4-21908202e91c {"md5": "ccd0160d33d98e707c0924784fb78c39", "pid": "A027817940", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027817940", "source": "RERO"}], "variant_name": ["Grandel, Saskia Antonia"], "preferred_name": "Grandel, Saskia", "variant_access_point": ["Grandel, Saskia Antonia"], "authorized_access_point": "Grandel, Saskia", "biographical_information": ["Germaniste"]} 1 +2024-09-11 09:08:02.417447 2024-09-11 09:08:02.417453 f9ec929f-780b-4ae5-b71d-436b1990b878 {"md5": "c6e90bfc18da859129c6994acc7669c0", "pid": "A027841998", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "(pasteur)", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A027841998", "source": "RERO"}], "preferred_name": "Comte, Louis (pasteur)", "authorized_access_point": "Comte, Louis (pasteur)", "biographical_information": ["Dates de vie: 1857-1926"]} 1 +2024-09-11 09:08:02.477229 2024-09-11 09:08:02.477234 7f446e75-aa8f-4be9-b464-a51cae98f5c3 {"md5": "3901f43c813b8d64210c1e600bab4ad8", "pid": "A028081955", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A028081955", "source": "RERO"}], "preferred_name": "Parcy, Elliott", "authorized_access_point": "Parcy, Elliott", "biographical_information": ["Illustrateur"]} 1 +2024-09-11 09:08:02.541183 2024-09-11 09:08:02.541186 a023c26e-104e-4d7e-8a4e-274377c64ac6 {"md5": "5e419223a209257ef21d05a0bfe880cc", "pid": "A028167226", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A028167226", "source": "RERO"}], "variant_name": ["Gadea, Germán Antonio Orozco‏"], "preferred_name": "Orozco Gadea, Germán Antonio", "variant_access_point": ["Gadea, Germán Antonio Orozco‏"], "authorized_access_point": "Orozco Gadea, Germán Antonio"} 1 +2024-09-11 09:08:02.593815 2024-09-11 09:08:02.59382 6df74844-20ce-4c1d-9900-f16b87823920 {"md5": "b5ae7a34335077bbb29155cffb65ebc9", "pid": "A028177834", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A028177834", "source": "RERO"}], "preferred_name": "Chine (République populaire). Cour populaire suprême. Shen pan shi wu gui fan bian ji xiao zu", "parallel_access_point": ["中华人民共和国. 最高人民法院. 审判实务规范编辑小组"], "authorized_access_point": "Chine (République populaire). Cour populaire suprême. Shen pan shi wu gui fan bian ji xiao zu"} 1 +2024-09-11 09:08:03.368298 2024-09-11 09:08:03.368301 583dcef6-75f5-49a8-b3b4-acdfbeb3fc17 {"md5": "42385ef3fd760781bd5509cc5c94f264", "pid": "A029002736", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A029002736", "source": "RERO"}], "date_of_birth": "1928", "date_of_death": "1971", "preferred_name": "Gygax, Ueli,", "authorized_access_point": "Gygax, Ueli, 1928-1971"} 1 +2024-09-11 09:08:02.649463 2024-09-11 09:08:02.649466 ee362d32-949a-4d8c-a18b-c5289695a1fd {"md5": "0d5b14a4a5d3ca2b07b9e8c2a37491d4", "pid": "A028331435", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A028331435", "source": "RERO"}], "variant_name": ["Börkur Sigthórsson,", "SigÞórsson, Börkur,", "Sigthórsson, Börkur,"], "date_of_birth": "1978", "preferred_name": "Börkur SigÞórsson,", "variant_access_point": ["Börkur Sigthórsson, 1978-", "SigÞórsson, Börkur, 1978-", "Sigthórsson, Börkur, 1978-"], "authorized_access_point": "Börkur SigÞórsson, 1978-", "biographical_information": ["Scénariste et réalisateur islandais"]} 1 +2024-09-11 09:08:02.704289 2024-09-11 09:08:02.704292 a32499a3-4e6f-4b28-a1b0-73d95871111f {"md5": "f42fcf7a3c30088bc0b1472023d0192f", "pid": "A028347593", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A028347593", "source": "RERO"}], "date_of_birth": "1990", "preferred_name": "Neuhaus, David,", "authorized_access_point": "Neuhaus, David, 1990-", "biographical_information": ["Biologiste et chef de choeur. Directeur du Choeur d'hommes du Gibloux et du Choeur mixte paroissial l'Espérance de Vuadens"]} 1 +2024-09-11 09:08:02.761355 2024-09-11 09:08:02.761359 44af218e-41b4-4f4a-8daf-3e0922d90741 {"md5": "8c1d05d7ac84f35fa93f0eede4e72223", "pid": "A028355646", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A028355646", "source": "RERO"}], "variant_name": ["Des Roziers, Laurent Burin", "Roziers, Laurent Burin des"], "preferred_name": "Burin Des Roziers, Laurent", "variant_access_point": ["Des Roziers, Laurent Burin", "Roziers, Laurent Burin des"], "authorized_access_point": "Burin Des Roziers, Laurent", "biographical_information": ["Haut fonctionnaire et universitaire. - Spécialiste des négociations internationales dans le secteur audiovisuel. - Enseigne à l'Institut d'études politiques de Paris (depuis 1988)"]} 1 +2024-09-11 09:08:02.82232 2024-09-11 09:08:02.822322 9dde3ee4-71fc-47be-a526-7afd325e5ca0 {"md5": "cc455372385753f9dfc1636e14fbc4a0", "pid": "A028357568", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A028357568", "source": "RERO"}], "date_of_birth": "1971", "preferred_name": "Apikian, Cédric,", "authorized_access_point": "Apikian, Cédric, 1971-", "biographical_information": ["Cinéaste, journaliste TV et scénariste de bandes dessinées"]} 1 +2024-09-11 09:08:02.874017 2024-09-11 09:08:02.874022 835f2287-f142-45cd-a8f7-137dce8c74b5 {"md5": "04bc6e442e0609daf910f88568ba5459", "pid": "A028447819", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A028447819", "source": "RERO"}], "preferred_name": "Barrès, Frankline", "authorized_access_point": "Barrès, Frankline", "biographical_information": ["Restauratrice de peintures de chevalet, professeur d'histoire de l'art et d'histoire des techniques de la peinture"]} 1 +2024-09-11 09:08:02.930732 2024-09-11 09:08:02.930736 5c86214e-d277-4d20-8cb3-84669478f21b {"md5": "43a0ab805bd49b2e20b0173b9bda0f00", "pid": "A028520087", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A028520087", "source": "RERO"}], "variant_name": ["AIESC (Association internationale pour l'enseignement social chrétien)"], "preferred_name": "Association internationale pour l'enseignement social chrétien", "variant_access_point": ["AIESC (Association internationale pour l'enseignement social chrétien)"], "authorized_access_point": "Association internationale pour l'enseignement social chrétien"} 1 +2024-09-11 09:08:02.983134 2024-09-11 09:08:02.983137 e631330e-926e-42b0-88d5-d3f895e3b44b {"md5": "ad807c4869aa53bf143d13880f9166a8", "pid": "A028529691", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A028529691", "source": "RERO"}], "date_of_birth": "1989", "preferred_name": "Wietlisbach, Stéphanie,", "authorized_access_point": "Wietlisbach, Stéphanie, 1989-", "biographical_information": ["Juriste"]} 1 +2024-09-11 09:08:03.046134 2024-09-11 09:08:03.046137 6f71580b-69ba-4590-b87a-608c499c187f {"md5": "3f19b624c0e0bda339b0cdf01e148cd2", "pid": "A028751062", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A028751062", "source": "RERO"}], "preferred_name": "Stras, Laurie", "authorized_access_point": "Stras, Laurie", "biographical_information": ["Auteur d'un ouvrage sur la musique populaire américaine et enseignante à l'Université de Southampton (2012)"]} 1 +2024-09-11 09:08:03.109634 2024-09-11 09:08:03.109636 c0835049-bae8-4089-a7e5-a3cee9b44157 {"md5": "31d8fecf04ea2adbf09b33284527c796", "pid": "A028868344", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A028868344", "source": "RERO"}], "variant_name": ["Caoursin, William,", "Caorsinus, Guilelmus,", "Caoursin, Guillelmus,", "Cahoursin, Guillaume,", "Caorsin, Gulielmo,", "Caorsin, Guillermus,", "Guillaume Caoursin,"], "date_of_birth": "(1430?", "date_of_death": "1501)", "preferred_name": "Caoursin, Guillaume,", "variant_access_point": ["Caoursin, William, (1430?-1501)", "Caorsinus, Guilelmus, (1430?-1501)", "Caoursin, Guillelmus, (1430?-1501)", "Cahoursin, Guillaume, (1430?-1501)", "Caorsin, Gulielmo, (1430?-1501)", "Caorsin, Guillermus, (1430?-1501)", "Guillaume Caoursin, (1430?-1501)"], "authorized_access_point": "Caoursin, Guillaume, (1430?-1501)", "biographical_information": ["Vice-chancelier de l'Ordre de Saint-Jean de Jérusalem"]} 1 +2024-09-11 09:08:03.183329 2024-09-11 09:08:03.183332 2540b0d0-51ea-4b37-80c1-08baab8687af {"md5": "05c2787a2bcd8f8d83d919a587463f1f", "pid": "A028868962", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A028868962", "source": "RERO"}], "date_of_birth": "1985", "preferred_name": "Miller, Ike,", "authorized_access_point": "Miller, Ike, 1985-", "biographical_information": ["Pasteur"]} 1 +2024-09-11 09:08:03.246191 2024-09-11 09:08:03.246195 f2b7de07-9ee8-420d-a9f0-855cd57fc35f {"md5": "dc1c3514b1881911e63320434477de4b", "pid": "A028986344", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A028986344", "source": "RERO"}], "preferred_name": "Association por International Servicie", "authorized_access_point": "Association por International Servicie"} 1 +2024-09-11 09:08:03.311675 2024-09-11 09:08:03.311679 9ae03b58-4215-4f53-86c7-444223b6c067 {"md5": "10dbb63558ce628ee3a7f79b0173083e", "pid": "A028989262", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A028989262", "source": "RERO"}], "preferred_name": "Bodoc, Clémence", "authorized_access_point": "Bodoc, Clémence"} 1 +2024-09-11 09:08:03.425795 2024-09-11 09:08:03.4258 5e68e7bb-a239-4ac4-9530-984bd92c7cb2 {"md5": "b53add6a0bf7d7daaf6d0b5b5570654e", "pid": "A029004750", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "qualifier": "professeur physique chimie", "identifiedBy": [{"type": "uri", "value": "http://data.rero.ch/02-A029004750", "source": "RERO"}], "preferred_name": "Martin, François professeur physique chimie", "authorized_access_point": "Martin, François professeur physique chimie"} 1 diff --git a/data/agrero_pidstore.csv b/data/agrero_pidstore.csv index 3f3ba3d2..ae345bab 100644 --- a/data/agrero_pidstore.csv +++ b/data/agrero_pidstore.csv @@ -1,1771 +1,1771 @@ -2023-07-08 08:23:23.956155 2023-07-08 08:23:23.956163 agrero A000003203 R rec a1df350e-3da3-4bb8-b131-5f6c71eae91a -2023-07-08 08:23:24.062838 2023-07-08 08:23:24.062843 agrero A000010540 R rec 4e62d12a-28a1-4075-a604-2abd631550b2 -2023-07-08 08:23:24.126231 2023-07-08 08:23:24.126236 agrero A000011132 R rec 7f46cf34-6bf8-4954-9caf-dc0662443972 -2023-07-08 08:23:24.187728 2023-07-08 08:23:24.187734 agrero A000012165 R rec 4d8ce15e-835d-469d-89a3-519fdc7413b3 -2023-07-08 08:23:24.256525 2023-07-08 08:23:24.256536 agrero A000014216 R rec 02231189-2c40-4486-844c-381b593a2e92 -2023-07-08 08:23:24.345238 2023-07-08 08:23:24.345254 agrero A000014650 R rec c944ccad-6548-49ed-9c1f-ab3cfb95d619 -2023-07-08 08:23:24.449929 2023-07-08 08:23:24.449945 agrero A000016955 R rec 918e3ff9-4a48-4695-bad0-ef43beac0cea -2023-07-08 08:23:24.565933 2023-07-08 08:23:24.565949 agrero A000018483 R rec 01a42a06-bbc7-4ff9-9e4f-f7216a5d1c24 -2023-07-08 08:23:24.67565 2023-07-08 08:23:24.675664 agrero A000018719 R rec 874ba76d-3299-4dfd-a09f-34ad0cfd5bcf -2023-07-08 08:23:24.767134 2023-07-08 08:23:24.76715 agrero A000022042 R rec c89f3191-7974-46cd-b1c0-3c7be5c7344d -2023-07-08 08:23:24.859836 2023-07-08 08:23:24.859853 agrero A000023938 R rec e22da35f-1fcc-485f-be90-4efb887fc1c1 -2023-07-08 08:23:24.954207 2023-07-08 08:23:24.954219 agrero A000026444 R rec e90dc2af-d986-4507-8f83-429811227205 -2023-07-08 08:23:25.038139 2023-07-08 08:23:25.038155 agrero A000031507 R rec 51000b76-93c5-4876-a1a9-1811aec1b803 -2023-07-08 08:23:25.146669 2023-07-08 08:23:25.146688 agrero A000032185 R rec 971cb2ee-8d7e-4506-b6c7-b0b498489380 -2023-07-08 08:23:25.243574 2023-07-08 08:23:25.243594 agrero A000033498 R rec f6ed3b52-7003-4699-9792-66eafe3085d5 -2023-07-08 08:23:25.347643 2023-07-08 08:23:25.347654 agrero A000035884 R rec 33a5f953-00b0-473e-88c0-31c6296c5df6 -2023-07-08 08:23:25.458036 2023-07-08 08:23:25.458048 agrero A000041054 R rec 433ad8a3-cbd2-4668-9f9d-368a60af26d1 -2023-07-08 08:23:25.557914 2023-07-08 08:23:25.557927 agrero A000042792 R rec 69a76fda-9359-4285-bb05-503828ec80be -2023-07-08 08:23:25.661046 2023-07-08 08:23:25.661061 agrero A000045285 R rec c4b5a36e-7f1e-4697-9fed-1a8003591fb9 -2023-07-08 08:23:25.76144 2023-07-08 08:23:25.761458 agrero A000047084 R rec ed5b1804-174b-4fb9-9358-6ef38e070cc5 -2023-07-08 08:23:25.866952 2023-07-08 08:23:25.866972 agrero A000047788 R rec d58a6f31-3800-4d6b-ba5b-e9fd71b5403e -2023-07-08 08:23:25.966489 2023-07-08 08:23:25.966501 agrero A000062707 R rec 4ab9d7ad-9263-4f06-8e5d-55d3f7cc7a2e -2023-07-08 08:23:26.069777 2023-07-08 08:23:26.069793 agrero A000063670 R rec 88fdc1fe-f26f-40b8-943d-6d179f2bf695 -2023-07-08 08:23:26.178471 2023-07-08 08:23:26.178483 agrero A000068070 R rec c24dc485-0093-472e-901b-5b64d73f637d -2023-07-08 08:23:26.277765 2023-07-08 08:23:26.27778 agrero A000069516 R rec 1631e00a-a5f5-4588-a8ec-dbe7a221446d -2023-07-08 08:23:26.382767 2023-07-08 08:23:26.382779 agrero A000074210 R rec d5a374cb-eebe-4957-90eb-5652174357ca -2023-07-08 08:23:26.498302 2023-07-08 08:23:26.498314 agrero A000075082 R rec ec9f9556-1275-46c4-aa80-aad141e3c2fb -2023-07-08 08:23:26.588396 2023-07-08 08:23:26.588414 agrero A000075825 R rec 907d7ff3-8227-402c-b51f-29e9235b5ae2 -2023-07-08 08:23:26.693179 2023-07-08 08:23:26.693195 agrero A000078192 R rec 4f50eedb-c5f9-4d09-87e2-421d87bceefa -2023-07-08 08:23:26.78641 2023-07-08 08:23:26.786456 agrero A000082809 R rec 9f9963ab-0d62-4d79-83e0-56f591817097 -2023-07-08 08:23:26.888098 2023-07-08 08:23:26.888114 agrero A000085441 R rec 5f5cfe82-1b3c-4416-b295-c98d61981b15 -2023-07-08 08:23:26.980934 2023-07-08 08:23:26.980945 agrero A000085746 R rec e0b9d309-c9e3-4949-8c24-6d491cf856da -2023-07-08 08:23:27.132857 2023-07-08 08:23:27.132862 agrero A000087771 R rec a3f6162b-aefa-4e4e-9a32-40ce122fd3e5 -2023-07-08 08:23:27.203307 2023-07-08 08:23:27.203313 agrero A000091274 R rec c2464179-df3a-42f2-98af-37581c11b757 -2023-07-08 08:23:27.284537 2023-07-08 08:23:27.284547 agrero A000092501 R rec 9d17c968-34d8-43e0-a041-ff354cd741f6 -2023-07-08 08:23:27.379545 2023-07-08 08:23:27.379556 agrero A000099346 R rec 2404ea22-e9e5-4f34-8f83-beba5cc13d43 -2023-07-08 08:23:27.498213 2023-07-08 08:23:27.498224 agrero A000100584 R rec 3416ded5-ac50-4d39-95f9-45fc2f817f2f -2023-07-08 08:23:27.61055 2023-07-08 08:23:27.610566 agrero A000102121 R rec eebc2d71-080f-4b3b-9b06-7c95636d4e8e -2023-07-08 08:23:27.720975 2023-07-08 08:23:27.720993 agrero A000103142 R rec b26268ea-774c-447a-b59e-3729edf9d62c -2023-07-08 08:23:27.844319 2023-07-08 08:23:27.844339 agrero A000104694 R rec 9b895a82-d256-4f2e-a0c3-74763eaf0243 -2023-07-08 08:23:27.961168 2023-07-08 08:23:27.96118 agrero A000107290 R rec 6a0e1c66-fca6-4c10-b00a-8178b4b23446 -2023-07-08 08:23:28.069371 2023-07-08 08:23:28.069389 agrero A000108532 R rec c4c3e1be-d797-4dbd-9b91-be33b865528a -2023-07-08 08:23:28.163585 2023-07-08 08:23:28.163596 agrero A000108719 R rec c16bf583-20ca-4f61-8757-405e244e82f4 -2023-07-08 08:23:28.265857 2023-07-08 08:23:28.265868 agrero A000110353 R rec 2d5bb3d3-ea6d-45c4-a1ec-a1b7a9bcc423 -2023-07-08 08:23:28.388016 2023-07-08 08:23:28.388031 agrero A000119730 R rec 7138f215-b660-42f3-852b-97c5baee5331 -2023-07-08 08:23:28.486407 2023-07-08 08:23:28.486796 agrero A000120627 R rec 14e11ae6-5a67-4f57-9ddd-331ae1651c66 -2023-07-08 08:23:28.611066 2023-07-08 08:23:28.611077 agrero A000124969 R rec aa37230d-29cc-4c72-9f99-5774ef867b12 -2023-07-08 08:23:28.709584 2023-07-08 08:23:28.709598 agrero A000132150 R rec 9b58b9c7-fb28-4195-b474-6e2bdb5c7ce1 -2023-07-08 08:23:28.81018 2023-07-08 08:23:28.810195 agrero A000135302 R rec 5e819152-11b9-46b0-b965-c7d9796bf8ba -2023-07-08 08:23:28.907785 2023-07-08 08:23:28.907796 agrero A000136441 R rec c06b6e93-f28a-47ea-8d54-cebcf2ed9a5b -2023-07-08 08:23:29.007006 2023-07-08 08:23:29.007022 agrero A000142799 R rec 53aefe59-7c9f-4b8a-a914-4141973b6eb2 -2023-07-08 08:23:29.124672 2023-07-08 08:23:29.124694 agrero A000144337 R rec c8c7049a-8a5f-4db5-a75f-98859c6d7277 -2023-07-08 08:23:29.250092 2023-07-08 08:23:29.250105 agrero A000147059 R rec 736d360a-cf6a-445a-bbe9-8b9889dd925c -2023-07-08 08:23:29.35708 2023-07-08 08:23:29.357091 agrero A000152472 R rec 5824ffb1-7b90-43ea-8210-2f317e8f7779 -2023-07-08 08:23:29.458413 2023-07-08 08:23:29.458429 agrero A000152802 R rec a2958b37-f075-47c8-a6d5-fc3ff2b611e2 -2023-07-08 08:23:29.594807 2023-07-08 08:23:29.594818 agrero A000156095 R rec eb704c14-a704-4caf-a22e-1c53c8cfbad8 -2023-07-08 08:23:29.736342 2023-07-08 08:23:29.736353 agrero A000157703 R rec d6594dcb-5978-4694-933e-1bfb3084b406 -2023-07-08 08:23:29.85729 2023-07-08 08:23:29.857305 agrero A000171374 R rec 473c868c-cc1b-453b-82d9-ca2417459e7f -2023-07-08 08:23:29.966271 2023-07-08 08:23:29.966284 agrero A000176762 R rec c709e172-98f5-41f2-b0e1-37b04c80ba34 -2023-07-08 08:23:30.079886 2023-07-08 08:23:30.079897 agrero A000181158 R rec 7044027d-0c33-414b-85b2-b4ca6d1d4bde -2023-07-08 08:23:30.198713 2023-07-08 08:23:30.19872 agrero A000183008 R rec fc2142b0-dafd-44c2-a593-613d009e89f3 -2023-07-08 08:23:30.305576 2023-07-08 08:23:30.30559 agrero A000183027 R rec fdc7f7f4-6177-4361-b6f7-a9632f4b70dd -2023-07-08 08:23:30.416667 2023-07-08 08:23:30.416678 agrero A000184256 R rec 149f88db-e2c6-4fa2-9403-1192a102c570 -2023-07-08 08:23:30.52897 2023-07-08 08:23:30.52899 agrero A000185690 R rec c23c2abf-e1b6-4a60-95d0-64e544959daf -2023-07-08 08:23:30.63582 2023-07-08 08:23:30.635836 agrero A000187213 R rec 79d44d73-c7c8-4fc0-8651-e511791fed31 -2023-07-08 08:23:30.764643 2023-07-08 08:23:30.764654 agrero A000187557 R rec 7edd0942-5263-429d-bdf1-abf76d02e679 -2023-07-08 08:23:30.915022 2023-07-08 08:23:30.915033 agrero A000189570 R rec 42603e36-8920-4475-b17c-c894249be2aa -2023-07-08 08:23:31.047859 2023-07-08 08:23:31.047872 agrero A000190495 R rec 906081fd-1c18-4a7b-86c6-dc57f7bc988d -2023-07-08 08:23:31.160051 2023-07-08 08:23:31.160071 agrero A000193226 R rec 7f4171dc-0571-447f-97d9-a28de570b982 -2023-07-08 08:23:31.292396 2023-07-08 08:23:31.29241 agrero A000193381 R rec 4c25821e-5ad3-4c14-8959-a336326bad38 -2023-07-08 08:23:31.412039 2023-07-08 08:23:31.412052 agrero A000193605 R rec 5227666c-72ce-4ce2-8bc5-9de0eab0f812 -2023-07-08 08:23:31.527768 2023-07-08 08:23:31.527784 agrero A000194499 R rec 50f6b56c-dcef-4a5c-b209-68d21f886efe -2023-07-08 08:23:31.637679 2023-07-08 08:23:31.637695 agrero A002910761 R rec df01d0d0-415b-49d0-a7ac-360c314f9403 -2023-07-08 08:23:31.768823 2023-07-08 08:23:31.768834 agrero A002912942 R rec 5d099133-4daa-4378-b0dc-8d7e2d0e5740 -2023-07-08 08:23:31.882116 2023-07-08 08:23:31.882127 agrero A002916477 R rec ef18667b-4947-4140-889d-ced7faf3ed0a -2023-07-08 08:23:32.001859 2023-07-08 08:23:32.00188 agrero A002922214 R rec 010a51ba-2e87-49fc-8570-257573c1979f -2023-07-08 08:23:32.115634 2023-07-08 08:23:32.115646 agrero A002922621 R rec 5b975fe7-433d-4aef-a4e6-3dcc4804f0ad -2023-07-08 08:23:32.238104 2023-07-08 08:23:32.238119 agrero A002928445 R rec b7a348d5-8efc-4e6b-ba73-767072ea8cfb -2023-07-08 08:23:32.351325 2023-07-08 08:23:32.351344 agrero A002929473 R rec b0c7d5aa-c1d7-48f4-b96b-8f0cd260c397 -2023-07-08 08:23:32.476425 2023-07-08 08:23:32.476442 agrero A002931456 R rec 3bdd95cd-0114-4390-b960-8d18c7e2fc4e -2023-07-08 08:23:32.577208 2023-07-08 08:23:32.577224 agrero A002933956 R rec 02fd644c-4ba7-4f58-a1a1-9687d5f14323 -2023-07-08 08:23:32.680197 2023-07-08 08:23:32.680213 agrero A002939215 R rec 614c57e5-0e7d-4eb4-850e-44ff68d0bf6b -2023-07-08 08:23:32.804122 2023-07-08 08:23:32.804137 agrero A002939817 R rec 982300a0-388b-41f3-bb68-91acdbf44b5d -2023-07-08 08:23:32.915409 2023-07-08 08:23:32.91542 agrero A002940438 R rec 25635e0e-3f60-410b-9b00-351510e2e4c7 -2023-07-08 08:23:33.036105 2023-07-08 08:23:33.036118 agrero A002940495 R rec 892fd918-1e53-471c-a710-df88a482ec07 -2023-07-08 08:23:33.150005 2023-07-08 08:23:33.150021 agrero A002941414 R rec 24ea813d-65d5-425f-b0f0-1a231f6c5eee -2023-07-08 08:23:33.266199 2023-07-08 08:23:33.266215 agrero A002941440 R rec 4575643b-cc45-4d5b-be31-6c240ee8bb8d -2023-07-08 08:23:33.390214 2023-07-08 08:23:33.390226 agrero A002942098 R rec c4449d67-2580-4145-8134-c79e2cfc4114 -2023-07-08 08:23:33.504483 2023-07-08 08:23:33.504492 agrero A002944324 R rec bee4582a-01e6-4fa3-864e-c061bafba15e -2023-07-08 08:23:33.598367 2023-07-08 08:23:33.598384 agrero A002947740 R rec 9fbeefc0-8dac-46fc-95df-94ea7e8c4015 -2023-07-08 08:23:33.718727 2023-07-08 08:23:33.718737 agrero A002953651 R rec 7cfa4f54-b8d8-41e6-a89d-b7e2b9c5c9de -2023-07-08 08:23:33.851637 2023-07-08 08:23:33.851646 agrero A002955901 R rec 29b6ad9a-0c1b-4aca-b380-787d905e23b0 -2023-07-08 08:23:33.965067 2023-07-08 08:23:33.965078 agrero A002961093 R rec 0d1c322f-e241-4e99-bea3-d1f581caaee7 -2023-07-08 08:23:34.078515 2023-07-08 08:23:34.078532 agrero A002963001 R rec b4f434b0-d966-442d-9a7d-8fda41e34a1c -2023-07-08 08:23:34.201038 2023-07-08 08:23:34.201055 agrero A002966255 R rec 8c1e4139-d3fc-4e87-9b01-93309c673dd0 -2023-07-08 08:23:34.310796 2023-07-08 08:23:34.310813 agrero A002968314 R rec 825dce97-4a47-477b-938f-2d139bd44a72 -2023-07-08 08:23:34.432434 2023-07-08 08:23:34.432445 agrero A002969933 R rec 1b74e922-ff81-41f9-b296-f6c73cbc5a94 -2023-07-08 08:23:34.559015 2023-07-08 08:23:34.559028 agrero A002971659 R rec e8bcc4f4-2c68-4fbc-9f13-7eee9d30e97f -2023-07-08 08:23:34.699736 2023-07-08 08:23:34.699744 agrero A002979038 R rec bf322407-5347-4f91-ae5c-f0431f98cb63 -2023-07-08 08:23:34.833745 2023-07-08 08:23:34.833764 agrero A002979177 R rec 9b522df1-7dc9-47b9-894b-5f14f553f91e -2023-07-08 08:23:34.957503 2023-07-08 08:23:34.957515 agrero A002981392 R rec d749cb4a-00ba-4999-8e22-2dd18d1eaae5 -2023-07-08 08:23:35.083709 2023-07-08 08:23:35.083731 agrero A002981924 R rec 55d3ccdc-7be1-4eff-9281-7b66ff989770 -2023-07-08 08:23:35.243062 2023-07-08 08:23:35.243074 agrero A002992084 R rec 323be086-d1a9-498b-93bb-90a153453c4e -2023-07-08 08:23:35.367545 2023-07-08 08:23:35.367563 agrero A002992522 R rec 99464997-d90b-4c6d-b35b-aaafd903b36c -2023-07-08 08:23:35.506979 2023-07-08 08:23:35.50699 agrero A002993107 R rec d84205e7-956a-4688-8d29-857763202004 -2023-07-08 08:23:35.631063 2023-07-08 08:23:35.63108 agrero A003003384 R rec 0f31a26e-4a53-492a-a123-28a12a1f24f4 -2023-07-08 08:23:35.745643 2023-07-08 08:23:35.745657 agrero A003005276 R rec 534c47f4-6622-47e3-9100-031dfd55a492 -2023-07-08 08:23:35.865179 2023-07-08 08:23:35.865195 agrero A003005486 R rec ad23b309-e841-4728-869a-2fceb89972f8 -2023-07-08 08:23:35.979233 2023-07-08 08:23:35.979243 agrero A003010065 R rec da63dd30-49d5-4fe9-94d1-c27100bf60c3 -2023-07-08 08:23:36.08888 2023-07-08 08:23:36.088887 agrero A003013653 R rec 408d4fb7-c418-4912-90c3-a480f907c488 -2023-07-08 08:23:36.200421 2023-07-08 08:23:36.200442 agrero A003017126 R rec f8cc6417-494e-4560-8af9-5d234b26aa1a -2023-07-08 08:23:36.310702 2023-07-08 08:23:36.31072 agrero A003019667 R rec f7ccc925-bfb5-4ea7-951c-8578f1953c8c -2023-07-08 08:23:36.433878 2023-07-08 08:23:36.434099 agrero A003020410 R rec 391024a4-4b3a-48d5-abef-287bcb9a0bab -2023-07-08 08:23:36.549296 2023-07-08 08:23:36.549311 agrero A003021395 R rec dafbb1e8-6fe5-4392-b526-82ea77fcf766 -2023-07-08 08:23:36.664403 2023-07-08 08:23:36.664423 agrero A003024732 R rec a43bcbc5-45db-4d5a-a07c-76ff8e996dc8 -2023-07-08 08:23:36.790744 2023-07-08 08:23:36.790761 agrero A003028730 R rec a78b108e-b20c-41ed-aa17-76337b8c338b -2023-07-08 08:23:36.895617 2023-07-08 08:23:36.89563 agrero A003031223 R rec aa1b9008-e228-463f-bd39-226311a357b7 -2023-07-08 08:23:37.015271 2023-07-08 08:23:37.015277 agrero A003037757 R rec e08f6317-4cfe-48c4-8ba8-c4a8451a0f60 -2023-07-08 08:23:37.133648 2023-07-08 08:23:37.133655 agrero A003037886 R rec 9c7f9642-7e81-41d3-a930-af2b385ff9fd -2023-07-08 08:23:37.243075 2023-07-08 08:23:37.24309 agrero A003042099 R rec 63c61a2b-d18f-45a4-80f6-98605e745c1f -2023-07-08 08:23:37.340511 2023-07-08 08:23:37.340528 agrero A003042520 R rec 40b45157-7b86-44e7-9b1a-389b54e21414 -2023-07-08 08:23:37.471035 2023-07-08 08:23:37.471053 agrero A003048129 R rec 8ee95cf2-b275-4be4-a794-c630d650c6fb -2023-07-08 08:23:37.609159 2023-07-08 08:23:37.60917 agrero A003050459 R rec d51dbf21-35bf-4c72-bf28-3efd4b75d2ed -2023-07-08 08:23:37.746281 2023-07-08 08:23:37.746296 agrero A003055215 R rec ff31aa5d-e66a-42a3-92f4-0b927512640e -2023-07-08 08:23:37.876072 2023-07-08 08:23:37.876083 agrero A003055423 R rec 8e15c1d6-f728-4801-b64f-738d15bdcbe1 -2023-07-08 08:23:37.993026 2023-07-08 08:23:37.99304 agrero A003061439 R rec 4b7eda95-f626-4c83-981f-e90908bdc6db -2023-07-08 08:23:38.108328 2023-07-08 08:23:38.108342 agrero A003061455 R rec 41d48299-0c87-43cc-8243-7888366818c7 -2023-07-08 08:23:38.226177 2023-07-08 08:23:38.22619 agrero A003063890 R rec c93c5d2c-c4d8-47a4-a805-a2af0c5bfc7f -2023-07-08 08:23:38.329283 2023-07-08 08:23:38.329294 agrero A003064605 R rec 8199d31d-9af5-4436-bf8f-783699601206 -2023-07-08 08:23:38.441728 2023-07-08 08:23:38.441739 agrero A003065345 R rec 849abb5e-3df0-4f91-9379-6d718b9701c4 -2023-07-08 08:23:38.578153 2023-07-08 08:23:38.57817 agrero A003066204 R rec 87695f15-950b-4bf6-96b5-d8ac855c93cd -2023-07-08 08:23:38.705268 2023-07-08 08:23:38.705279 agrero A003077749 R rec 35bfc929-4683-47e3-907a-76f0750172c9 -2023-07-08 08:23:38.858456 2023-07-08 08:23:38.858469 agrero A003080186 R rec 6ba19cf0-5d46-459f-82fa-60fd2d1c39a6 -2023-07-08 08:23:38.970604 2023-07-08 08:23:38.970619 agrero A003082787 R rec 559ddd91-340b-4323-bbb3-43f49ed8cce1 -2023-07-08 08:23:39.07857 2023-07-08 08:23:39.078587 agrero A003084316 R rec a6412167-0216-4145-9321-3c4906b223c9 -2023-07-08 08:23:39.213103 2023-07-08 08:23:39.21312 agrero A003085874 R rec 25a39d22-a5b6-46e8-b97b-bf4c84f3dcda -2023-07-08 08:23:39.340082 2023-07-08 08:23:39.340095 agrero A003086097 R rec bc46d3bf-48a3-427e-886b-bd54cde11a11 -2023-07-08 08:23:39.471238 2023-07-08 08:23:39.471251 agrero A003086874 R rec a35db46f-6efb-4ae7-bd31-b9a659e5696f -2023-07-08 08:23:39.583721 2023-07-08 08:23:39.583732 agrero A003089906 R rec 6c2796b4-6f65-4b97-b2da-a6cd16151eb9 -2023-07-08 08:23:39.727913 2023-07-08 08:23:39.72792 agrero A003093098 R rec d5671157-f0c9-4370-a35d-b13b5545960d -2023-07-08 08:23:39.86067 2023-07-08 08:23:39.860687 agrero A003093717 R rec 123e80b0-bddd-428c-b642-141b1d823381 -2023-07-08 08:23:39.986037 2023-07-08 08:23:39.986048 agrero A003094768 R rec db576743-aa97-4875-9252-af14a20df36b -2023-07-08 08:23:40.120299 2023-07-08 08:23:40.120315 agrero A003094880 R rec 6c543af5-3303-42bc-8f88-73a4802ff205 -2023-07-08 08:23:40.261372 2023-07-08 08:23:40.261388 agrero A003096778 R rec 0a951ac9-e2ed-48a1-97cd-5f417b3d657e -2023-07-08 08:23:40.400781 2023-07-08 08:23:40.400788 agrero A003098919 R rec fc6d7b9e-92a3-4b08-8ee9-63fb4a0f4a6c -2023-07-08 08:23:40.499374 2023-07-08 08:23:40.499389 agrero A003099881 R rec e6299683-4124-4eb8-ab1a-69e908f40ab7 -2023-07-08 08:23:40.62625 2023-07-08 08:23:40.626266 agrero A003100597 R rec 9d09c86a-dbc0-4aba-91de-3734ba4521bd -2023-07-08 08:23:40.746975 2023-07-08 08:23:40.746992 agrero A003101806 R rec 3d2b1f44-6e2a-4e27-9650-769b4f7352fb -2023-07-08 08:23:40.865395 2023-07-08 08:23:40.865408 agrero A003103435 R rec 02dc4a76-cd2a-4c10-9908-b17f7212d45f -2023-07-08 08:23:40.996448 2023-07-08 08:23:40.996459 agrero A003103659 R rec 3e71b9a1-c222-4182-994e-b7807930a883 -2023-07-08 08:23:41.121693 2023-07-08 08:23:41.121708 agrero A003104849 R rec 7df43f39-94b2-42f2-8d90-160750595194 -2023-07-08 08:23:41.250146 2023-07-08 08:23:41.250152 agrero A003111864 R rec cfa73563-11a2-4c01-9585-02774b231e68 -2023-07-08 08:23:41.363305 2023-07-08 08:23:41.363321 agrero A003112356 R rec ab105eb9-a252-474a-b98c-e1f2a8e3f712 -2023-07-08 08:23:41.467143 2023-07-08 08:23:41.467156 agrero A003113657 R rec 668fd537-fbd2-46e6-9314-56e7a3736ca2 -2023-07-08 08:23:41.571183 2023-07-08 08:23:41.571193 agrero A003114032 R rec faf2bd46-5131-4e81-acd6-c1f21b32cff0 -2023-07-08 08:23:41.673156 2023-07-08 08:23:41.67317 agrero A003114105 R rec 6892b4ef-5c09-46bd-b95f-97d46c4c3bce -2023-07-08 08:23:41.775325 2023-07-08 08:23:41.775336 agrero A003114110 R rec 957f8fb2-b59a-42ab-a4cc-1fee6bfcc68f -2023-07-08 08:23:41.907574 2023-07-08 08:23:41.907588 agrero A003116989 R rec d4dac554-8388-4248-9e8f-2d49c588eb52 -2023-07-08 08:23:42.032736 2023-07-08 08:23:42.032751 agrero A003121026 R rec 76a07063-2bb3-4112-b8d0-e771fc5ad1f7 -2023-07-08 08:23:42.171839 2023-07-08 08:23:42.17185 agrero A003121313 R rec 8030e6b6-ea1a-4e8d-9ee3-c74f883e5881 -2023-07-08 08:23:42.34381 2023-07-08 08:23:42.343825 agrero A003122042 R rec 01967b98-6788-475a-9d9b-03cff8e1ce06 -2023-07-08 08:23:42.472303 2023-07-08 08:23:42.472318 agrero A003122713 R rec 2d07f928-44c1-4e6b-bbd0-1fa2519433c6 -2023-07-08 08:23:42.591059 2023-07-08 08:23:42.591075 agrero A003123930 R rec 5a5f653e-fa62-4f62-8ba2-56003e68a80f -2023-07-08 08:23:42.70751 2023-07-08 08:23:42.707521 agrero A003131969 R rec a98987e2-9fa7-4ac6-b852-4feaed226f17 -2023-07-08 08:23:42.827515 2023-07-08 08:23:42.82753 agrero A003132079 R rec de32f34b-6418-4c19-87ca-06f9604bc87e -2023-07-08 08:23:42.955179 2023-07-08 08:23:42.95519 agrero A003134703 R rec b55c032e-7584-4883-a71b-0da1bdfa3bdc -2023-07-08 08:23:43.067625 2023-07-08 08:23:43.067633 agrero A003136891 R rec c6929cc2-d4df-450b-bee8-08e39ab6c124 -2023-07-08 08:23:43.210894 2023-07-08 08:23:43.210908 agrero A003141286 R rec 144e56ad-d50c-4064-94da-d8150a63b28a -2023-07-08 08:23:43.343391 2023-07-08 08:23:43.343402 agrero A003141352 R rec 05fa9298-6760-4dad-92ec-a4a8371dd49a -2023-07-08 08:23:43.473797 2023-07-08 08:23:43.473811 agrero A003142207 R rec dd6fe312-d9b0-4589-a274-a5d4c48e7361 -2023-07-08 08:23:43.600084 2023-07-08 08:23:43.600101 agrero A003145194 R rec fb27cf64-dd5e-4536-bf6c-e3ab185afe78 -2023-07-08 08:23:43.746085 2023-07-08 08:23:43.746092 agrero A003145393 R rec 172a9f99-8474-4784-ae1e-fba1474fbd7b -2023-07-08 08:23:43.854989 2023-07-08 08:23:43.854996 agrero A003146897 R rec d8a383fa-ee3b-4681-9455-3fe611b7da54 -2023-07-08 08:23:43.956226 2023-07-08 08:23:43.956232 agrero A003149155 R rec 26bcdc1a-346e-4578-b567-87f866314253 -2023-07-08 08:23:44.040066 2023-07-08 08:23:44.040073 agrero A003149182 R rec e5d5972d-58c3-469e-8d5e-ceba6900522e -2023-07-08 08:23:44.134193 2023-07-08 08:23:44.134205 agrero A003149832 R rec 91b6d4a9-5274-47dd-96d9-db9186846fa2 -2023-07-08 08:23:44.226266 2023-07-08 08:23:44.226279 agrero A003150269 R rec 5e8096a1-f2f4-4b53-aea8-bfe4ab2e2b45 -2023-07-08 08:23:44.358261 2023-07-08 08:23:44.358278 agrero A003151816 R rec 47cc8f85-9cd9-457a-8caf-3c4df444d90a -2023-07-08 08:23:44.480388 2023-07-08 08:23:44.480394 agrero A003154955 R rec cce8e953-0565-4c07-8c04-604e3ed8a98f -2023-07-08 08:23:44.571327 2023-07-08 08:23:44.571333 agrero A003155460 R rec 7b0c4152-e8b7-47aa-abc4-dc2ed2ad525e -2023-07-08 08:23:44.6627 2023-07-08 08:23:44.662706 agrero A003155524 R rec 95ec9aa2-12bf-447f-8648-9e77b1b85532 -2023-07-08 08:23:44.75256 2023-07-08 08:23:44.752572 agrero A003159779 R rec 3f1919ae-eada-44a6-be43-2664d443d924 -2023-07-08 08:23:44.857782 2023-07-08 08:23:44.857793 agrero A003162783 R rec 07b63b07-6dd7-4b53-870a-f877d453f3db -2023-07-08 08:23:44.971001 2023-07-08 08:23:44.971006 agrero A003170262 R rec e7247e6a-a056-4fc1-9864-3ba62ca080a7 -2023-07-08 08:23:45.065008 2023-07-08 08:23:45.065025 agrero A003171170 R rec f4e081ad-6ea6-4382-88d6-a92454267835 -2023-07-08 08:23:45.168737 2023-07-08 08:23:45.168743 agrero A003172151 R rec 4e01cdf3-ff7f-4190-832c-8149c033edca -2023-07-08 08:23:45.260016 2023-07-08 08:23:45.260022 agrero A003172474 R rec 25e74422-b6ed-4623-9c0b-3f8f17179dba -2023-07-08 08:23:45.344131 2023-07-08 08:23:45.344137 agrero A003173240 R rec d5f07ba4-de04-4c3b-ad58-dff3fee94aaa -2023-07-08 08:23:45.42131 2023-07-08 08:23:45.421316 agrero A003177980 R rec d507519d-930f-4203-8090-44e53bd0b6d9 -2023-07-08 08:23:45.50041 2023-07-08 08:23:45.500418 agrero A003178146 R rec 9edabfa7-82e5-471d-99f2-533b677639ad -2023-07-08 08:23:45.577459 2023-07-08 08:23:45.577464 agrero A003179452 R rec fdc247b3-649c-45e7-b2a8-d0fc91c7e4f7 -2023-07-08 08:23:45.681644 2023-07-08 08:23:45.681649 agrero A003182838 R rec 4a7306b1-e572-490c-ad19-23f278f4b425 -2023-07-08 08:23:45.788959 2023-07-08 08:23:45.788969 agrero A003184655 R rec f11515ba-94fb-4222-823c-3a812b3109e2 -2023-07-08 08:23:45.897924 2023-07-08 08:23:45.897937 agrero A003185209 R rec 49748dfd-a6b4-41f4-969b-dcb4e6edd6d4 -2023-07-08 08:23:46.040142 2023-07-08 08:23:46.040149 agrero A003188796 R rec e3ed6268-c09d-4acf-be87-89b439f7442c -2023-07-08 08:23:46.131718 2023-07-08 08:23:46.131728 agrero A003192212 R rec cc9a39cb-baea-48e1-9e85-75dfcfb62586 -2023-07-08 08:23:46.222331 2023-07-08 08:23:46.222343 agrero A003194582 R rec 02c09ad0-b74a-4e1e-85ec-0afbcba44b90 -2023-07-08 08:23:46.330011 2023-07-08 08:23:46.330022 agrero A003196110 R rec c81a9350-1889-4e5f-9f10-ae37e25bd9ff -2023-07-08 08:23:46.409024 2023-07-08 08:23:46.409035 agrero A003197536 R rec 2fa1fe10-c1d0-487f-8136-ef86d4789503 -2023-07-08 08:23:46.504404 2023-07-08 08:23:46.504415 agrero A003198713 R rec ba86995f-49df-4c32-bc69-2ddf7673ef44 -2023-07-08 08:23:46.601226 2023-07-08 08:23:46.601243 agrero A003199994 R rec f0a88eed-b4ed-4145-8cf0-1cdc38f492c0 -2023-07-08 08:23:46.695987 2023-07-08 08:23:46.696001 agrero A003201589 R rec a09caab7-f496-4aeb-bfec-b6a82afdb6ce -2023-07-08 08:23:46.792481 2023-07-08 08:23:46.792492 agrero A003203987 R rec 2678c33c-8329-4001-8433-b395ce7c3df9 -2023-07-08 08:23:46.898928 2023-07-08 08:23:46.898944 agrero A003206780 R rec 8303c926-5205-48ce-8888-79fe3dde9ef3 -2023-07-08 08:23:47.011549 2023-07-08 08:23:47.011556 agrero A003217486 R rec b46bea38-5e73-4e21-97b6-cad893c21b86 -2023-07-08 08:23:47.109579 2023-07-08 08:23:47.109585 agrero A003218658 R rec 4da28038-219d-4781-bd5e-2fd326c43230 -2023-07-08 08:23:47.209974 2023-07-08 08:23:47.20999 agrero A003218686 R rec f9fd97bf-3ed9-4451-84f4-37816f50b4a9 -2023-07-08 08:23:47.358623 2023-07-08 08:23:47.358635 agrero A003223430 R rec b4a4e726-67ae-40e5-9239-a595dbd302c8 -2023-07-08 08:23:47.456846 2023-07-08 08:23:47.456857 agrero A003230887 R rec 54a33889-6367-4b78-ae99-2667f54fa5ad -2023-07-08 08:23:47.558849 2023-07-08 08:23:47.55886 agrero A003235750 R rec 23845098-5009-4871-8d2f-d187377e5be5 -2023-07-08 08:23:47.648474 2023-07-08 08:23:47.648487 agrero A003235825 R rec 055f2f20-c5a2-4506-922e-ea84e8290784 -2023-07-08 08:23:47.734211 2023-07-08 08:23:47.734231 agrero A003236665 R rec 79a46d81-a0f9-4e42-a690-0e56ff649f0a -2023-07-08 08:23:47.834122 2023-07-08 08:23:47.834138 agrero A003237696 R rec 689c2a31-6d82-40e4-8a60-e0557ca8abca -2023-07-08 08:23:47.933663 2023-07-08 08:23:47.933677 agrero A003240957 R rec d9b3e9c5-0b1b-4aa2-8bcd-59d9c78635d1 -2023-07-08 08:23:48.031558 2023-07-08 08:23:48.031564 agrero A003242452 R rec 561e6b18-3afa-4d1a-9ad1-7d478c2bf5fd -2023-07-08 08:23:48.120767 2023-07-08 08:23:48.120773 agrero A003243348 R rec 415c5d5e-f435-4124-a9e6-d7544dac1ffd -2023-07-08 08:23:48.214148 2023-07-08 08:23:48.214162 agrero A003245434 R rec 06eb97da-fb82-4751-8f1d-251b95b411df -2023-07-08 08:23:48.313309 2023-07-08 08:23:48.313319 agrero A003246832 R rec 45d169da-aa97-4114-ab28-48b171902715 -2023-07-08 08:23:48.413215 2023-07-08 08:23:48.413231 agrero A003250020 R rec f8a0b8f9-e5a3-4b5e-b049-ddf0f72443cf -2023-07-08 08:23:48.503385 2023-07-08 08:23:48.503395 agrero A003250278 R rec 5c44d609-25db-497c-a6f8-97f64d79a221 -2023-07-08 08:23:48.600133 2023-07-08 08:23:48.600145 agrero A003250343 R rec 0f8cc79d-6094-4ecf-ab44-b68fde860685 -2023-07-08 08:23:48.709007 2023-07-08 08:23:48.709022 agrero A003250353 R rec 92a9b3cd-7464-4f5a-90d3-a9640b20696f -2023-07-08 08:23:48.81573 2023-07-08 08:23:48.815741 agrero A003251379 R rec 1e6b1741-42bc-4d71-b2c0-deae9c37c5a9 -2023-07-08 08:23:48.909765 2023-07-08 08:23:48.909779 agrero A003256978 R rec 8a40d119-9c81-421f-803f-863be9061e59 -2023-07-08 08:23:49.020622 2023-07-08 08:23:49.020628 agrero A003259324 R rec 9fb4dec2-dee5-4de4-9d27-e209c059795a -2023-07-08 08:23:49.111357 2023-07-08 08:23:49.111374 agrero A003259363 R rec c9aae96f-96a2-4e29-9a13-295dc78a428e -2023-07-08 08:23:49.222794 2023-07-08 08:23:49.222801 agrero A003261984 R rec e61b3cea-bc63-46ef-aa00-8c1d1f26ae72 -2023-07-08 08:23:49.325136 2023-07-08 08:23:49.325148 agrero A003262188 R rec 3d72528e-2c31-4046-8fa1-997db80a9098 -2023-07-08 08:23:49.420674 2023-07-08 08:23:49.420684 agrero A003263551 R rec 43251297-4547-423d-882b-efbaa7a258c1 -2023-07-08 08:23:49.512024 2023-07-08 08:23:49.512039 agrero A003264908 R rec bb340a85-fc9b-4477-b202-0d7af2c3c5b7 -2023-07-08 08:23:49.614967 2023-07-08 08:23:49.614983 agrero A003265730 R rec ef520aa8-0de6-435a-aa88-32c197735ced -2023-07-08 08:23:49.708618 2023-07-08 08:23:49.70863 agrero A003267103 R rec d74ba447-34e1-4fc0-a15d-440a0bfc05bc -2023-07-08 08:23:49.799024 2023-07-08 08:23:49.799036 agrero A003267500 R rec 8f461a0a-b708-49f0-a07b-3c6b3a66ec06 -2023-07-08 08:23:49.904652 2023-07-08 08:23:49.904658 agrero A003268129 R rec 4c7c859a-5fb8-4d3d-8e59-4b99dc111fdd -2023-07-08 08:23:49.993173 2023-07-08 08:23:49.993179 agrero A003272218 R rec cd605de8-afc1-4241-85ff-92b13256e1df -2023-07-08 08:23:50.088811 2023-07-08 08:23:50.088816 agrero A003272478 R rec d5ad8509-180f-46d8-9b04-64194c1cb1ba -2023-07-08 08:23:50.175616 2023-07-08 08:23:50.175623 agrero A003272492 R rec a366ad3d-93c4-4f18-a936-f8a931be8cb4 -2023-07-08 08:23:50.254886 2023-07-08 08:23:50.254893 agrero A003274907 R rec 92b2caff-8dd6-40c3-9d0d-8de0e4152b3b -2023-07-08 08:23:50.341224 2023-07-08 08:23:50.341246 agrero A003275937 R rec 2551840c-de41-4b53-aa01-789f9e1acd66 -2023-07-08 08:23:50.448672 2023-07-08 08:23:50.448683 agrero A003276590 R rec 793d1f1b-dfc9-408a-add5-7006fbaf3108 -2023-07-08 08:23:50.554998 2023-07-08 08:23:50.555005 agrero A003278829 R rec f9000dcb-d56c-4c5f-b960-f3342ffabbfb -2023-07-08 08:23:50.64759 2023-07-08 08:23:50.647602 agrero A003281452 R rec b7412d8d-102f-444b-b84c-f385c15e4af8 -2023-07-08 08:23:50.723642 2023-07-08 08:23:50.723649 agrero A003283186 R rec c21273ea-fc1c-4a0e-8cd9-41ca8bc384b7 -2023-07-08 08:23:50.808527 2023-07-08 08:23:50.808539 agrero A003288318 R rec c0c94eb6-7338-49ae-939e-5aeeb2105acd -2023-07-08 08:23:50.897168 2023-07-08 08:23:50.89718 agrero A003293538 R rec 8d946a9e-d979-4f0c-9fc4-38086c206915 -2023-07-08 08:23:51.006625 2023-07-08 08:23:51.006631 agrero A003299867 R rec 43c190ed-00db-4598-b922-1291b07552e2 -2023-07-08 08:23:51.097759 2023-07-08 08:23:51.097776 agrero A003300349 R rec 7f7bc6f3-5b09-4cfb-a4a2-c2da49f047f2 -2023-07-08 08:23:51.208566 2023-07-08 08:23:51.208577 agrero A003301693 R rec b422aa30-88e9-4b8d-91e7-1969ce8ea77c -2023-07-08 08:23:51.301221 2023-07-08 08:23:51.301237 agrero A003302604 R rec 34ee1255-280b-4f0d-bf1d-286959296a8e -2023-07-08 08:23:51.399044 2023-07-08 08:23:51.399054 agrero A003303466 R rec e718770a-58d9-4ba6-8db9-acf5addd9b12 -2023-07-08 08:23:51.489442 2023-07-08 08:23:51.489448 agrero A003303830 R rec bb08ef91-2742-4320-bf8c-3c63c964265a -2023-07-08 08:23:51.577072 2023-07-08 08:23:51.577091 agrero A003307504 R rec ecba3f29-30c1-40a4-bc88-57c51516dcdc -2023-07-08 08:23:51.6626 2023-07-08 08:23:51.662616 agrero A003308819 R rec 3c4efc6c-20fb-40ea-b055-7d9b3f536bf6 -2023-07-08 08:23:51.734109 2023-07-08 08:23:51.73412 agrero A003312980 R rec 650df516-ac06-4d3f-9029-912640f68efb -2023-07-08 08:23:51.820955 2023-07-08 08:23:51.82096 agrero A003314705 R rec 8b0af384-464e-4782-b7c7-2d87ae6d801b -2023-07-08 08:23:51.91522 2023-07-08 08:23:51.915231 agrero A003316151 R rec f3ff7637-f46d-4cdb-a93b-26e2ed1d5ea2 -2023-07-08 08:23:52.009606 2023-07-08 08:23:52.009612 agrero A003319632 R rec fe79b644-062f-4d22-a8aa-4d1e2e611fc7 -2023-07-08 08:23:52.102255 2023-07-08 08:23:52.102266 agrero A003320872 R rec 8b5f93ba-8646-434f-bf57-742e11990211 -2023-07-08 08:23:52.193576 2023-07-08 08:23:52.193584 agrero A003324081 R rec ad4cde44-0e64-4070-be90-7eee3618dd22 -2023-07-08 08:23:52.27414 2023-07-08 08:23:52.274156 agrero A003328096 R rec a1252b35-1d8c-42e5-a36c-2bc4dd0ce6b3 -2023-07-08 08:23:52.374184 2023-07-08 08:23:52.374201 agrero A003331851 R rec 421f57d8-718d-4108-9b24-14b0ac8d19b8 -2023-07-08 08:23:52.4605 2023-07-08 08:23:52.460516 agrero A003334623 R rec 71fa7557-aef1-4b2b-8bec-538edda4b85e -2023-07-08 08:23:52.554052 2023-07-08 08:23:52.554063 agrero A003337947 R rec f151b1ab-a911-43bc-bdca-d5d770c4eae8 -2023-07-08 08:23:52.64757 2023-07-08 08:23:52.647581 agrero A003351113 R rec b2e44365-f080-40c4-ae03-185c9901a64c -2023-07-08 08:23:52.752378 2023-07-08 08:23:52.752388 agrero A003352968 R rec 5de5bd3d-b8e7-44cb-9627-4d69c5e0e3f8 -2023-07-08 08:23:52.868888 2023-07-08 08:23:52.868898 agrero A003357999 R rec fa2cbe04-02c7-4d0d-8b97-4dcf0530eb61 -2023-07-08 08:23:52.971837 2023-07-08 08:23:52.971843 agrero A003359260 R rec ddfced85-4b98-4410-af7d-e9737b8343a9 -2023-07-08 08:23:53.072691 2023-07-08 08:23:53.072699 agrero A003360509 R rec 12f17e21-4ada-4ecd-bf53-1cc51465d246 -2023-07-08 08:23:53.176139 2023-07-08 08:23:53.176151 agrero A003361845 R rec d3434f0a-5cbf-4abd-89fc-2ddcec8e884c -2023-07-08 08:23:53.254809 2023-07-08 08:23:53.254814 agrero A003362103 R rec e161f2e5-ecca-439d-9bc2-c5d0c2d71725 -2023-07-08 08:23:53.35503 2023-07-08 08:23:53.355035 agrero A003363900 R rec 36b6b211-3a72-4bd3-a9c5-8b6f95ee0250 -2023-07-08 08:23:53.467528 2023-07-08 08:23:53.467539 agrero A003364295 R rec 4b6f1f89-8e22-4519-9427-1b78189ea551 -2023-07-08 08:23:53.56861 2023-07-08 08:23:53.56862 agrero A003370921 R rec 9b2b302e-631a-4848-95b4-4f4c802a9a4f -2023-07-08 08:23:53.673906 2023-07-08 08:23:53.673912 agrero A003375801 R rec 9d634e76-d45a-43c0-b731-b6a1d5c52bd7 -2023-07-08 08:23:53.765995 2023-07-08 08:23:53.766006 agrero A003378379 R rec 5686edc1-f3be-4de7-82f7-2881158eccf3 -2023-07-08 08:23:53.881948 2023-07-08 08:23:53.881957 agrero A003378581 R rec 5258fb11-6dfb-422d-9994-bf617541fdc5 -2023-07-08 08:23:53.990099 2023-07-08 08:23:53.990105 agrero A003378837 R rec d1174b32-03fc-43ed-8fa2-2b082f19df72 -2023-07-08 08:23:54.094866 2023-07-08 08:23:54.09488 agrero A003379503 R rec b72b6b6b-64b8-4861-a909-2e8a683f7dbe -2023-07-08 08:23:54.193184 2023-07-08 08:23:54.19319 agrero A003381861 R rec 5830864d-546a-4770-868d-c66cb9e5460a -2023-07-08 08:23:54.293841 2023-07-08 08:23:54.293852 agrero A003383105 R rec fe39aaf6-1aae-462d-81d2-0dad057f0494 -2023-07-08 08:23:54.401217 2023-07-08 08:23:54.401226 agrero A003385342 R rec aea02f5d-669f-49fb-9033-862efd4730c0 -2023-07-08 08:23:54.499203 2023-07-08 08:23:54.499223 agrero A003386566 R rec 2e7727d8-7759-4de9-95b2-ba4cc267eb8e -2023-07-08 08:23:54.596374 2023-07-08 08:23:54.596386 agrero A003388636 R rec 809c2194-f8ea-4f7b-b465-75b0a0ea896c -2023-07-08 08:23:54.681959 2023-07-08 08:23:54.681965 agrero A003389309 R rec f793579f-a835-4455-a7f7-bf3316e6c146 -2023-07-08 08:23:54.759078 2023-07-08 08:23:54.759091 agrero A003389620 R rec 475b4f97-dc46-4892-86f2-8165f6dea5dc -2023-07-08 08:23:54.860125 2023-07-08 08:23:54.860136 agrero A003389663 R rec 35a00c6b-23a3-4609-b4da-5b7ab5c06de3 -2023-07-08 08:23:54.954972 2023-07-08 08:23:54.954983 agrero A003395338 R rec 4e0cb000-c447-45d0-991a-c20deebf3784 -2023-07-08 08:23:55.0391 2023-07-08 08:23:55.039105 agrero A003398237 R rec 29e653ee-f8cf-423d-a210-4383a86eeb57 -2023-07-08 08:23:55.130585 2023-07-08 08:23:55.130597 agrero A003399031 R rec 57b4fd0f-1f3a-428a-9cbb-5a92c7225065 -2023-07-08 08:23:55.215565 2023-07-08 08:23:55.215582 agrero A003399240 R rec d5c3a88b-7b5e-48c2-8206-b1419b6055af -2023-07-08 08:23:55.302693 2023-07-08 08:23:55.302703 agrero A003399386 R rec c7708bcb-392d-4f94-b321-5f1e2d66b68d -2023-07-08 08:23:55.39591 2023-07-08 08:23:55.395921 agrero A003399601 R rec 7e33172c-d48e-429e-b683-50ef340f1eb8 -2023-07-08 08:23:55.500381 2023-07-08 08:23:55.500394 agrero A003401536 R rec 4119826a-9ed1-4bb9-b59e-e2a0ebf999a3 -2023-07-08 08:23:55.588763 2023-07-08 08:23:55.588769 agrero A003402056 R rec 3d70322e-5798-4e23-827f-034a6e25cf27 -2023-07-08 08:23:55.682138 2023-07-08 08:23:55.682144 agrero A003403470 R rec b5a23ab0-37cd-48da-9379-45d2b48db0c9 -2023-07-08 08:23:55.75116 2023-07-08 08:23:55.751171 agrero A003404800 R rec 067f05b5-6026-40e7-a243-96d4ac948477 -2023-07-08 08:23:55.847717 2023-07-08 08:23:55.847727 agrero A003406290 R rec 982ed946-4457-4d99-83e1-71d9df81995a -2023-07-08 08:23:55.941017 2023-07-08 08:23:55.941032 agrero A003411195 R rec 1129b0d7-9837-4f6e-8a58-37220e8be2ea -2023-07-08 08:23:56.048669 2023-07-08 08:23:56.048675 agrero A003413213 R rec 388b582b-703d-4504-be70-1a8e86856768 -2023-07-08 08:23:56.126338 2023-07-08 08:23:56.126353 agrero A003413435 R rec 3a99d956-0192-4fc2-ac87-0dd084e055d9 -2023-07-08 08:23:56.213649 2023-07-08 08:23:56.213658 agrero A003416346 R rec 4a27993c-00e3-48fe-87bd-9155bc473706 -2023-07-08 08:23:56.305873 2023-07-08 08:23:56.305879 agrero A003418109 R rec 84dae9f7-5a84-4100-a0f9-057fd20235ab -2023-07-08 08:23:56.403753 2023-07-08 08:23:56.403764 agrero A003418336 R rec bb4761ce-346c-4f53-a937-52bb9926f83f -2023-07-08 08:23:56.493014 2023-07-08 08:23:56.493031 agrero A003421420 R rec 2ebd75ba-9326-4254-8ae8-a24728d58f74 -2023-07-08 08:23:56.583421 2023-07-08 08:23:56.583431 agrero A003421797 R rec 7c7ef3c9-cbd9-4ea7-b6c8-801425b8b88a -2023-07-08 08:23:56.679244 2023-07-08 08:23:56.679256 agrero A003422794 R rec 5b72d098-c9bf-4ed3-83d6-75b2cca252f3 -2023-07-08 08:23:56.758951 2023-07-08 08:23:56.758968 agrero A003427813 R rec c3a89edd-0bc9-40fe-a9c2-e2e21a8034fb -2023-07-08 08:23:56.866638 2023-07-08 08:23:56.866654 agrero A003428330 R rec bba9fad9-400e-4ab5-8980-5bc42b44bcaa -2023-07-08 08:23:56.955975 2023-07-08 08:23:56.955981 agrero A003428443 R rec f08eb5ca-e444-48ba-af96-ec330c00bfbd -2023-07-08 08:23:57.033455 2023-07-08 08:23:57.033461 agrero A003435187 R rec f66c670e-9f77-41fd-ad9e-5de9662ef3e5 -2023-07-08 08:23:57.112552 2023-07-08 08:23:57.112557 agrero A003435467 R rec b73f238d-5fc7-4d5a-a128-d44e658181e4 -2023-07-08 08:23:57.186847 2023-07-08 08:23:57.186852 agrero A003436041 R rec 01de8fd0-ae0e-44af-890c-8f9f8b4d6372 -2023-07-08 08:23:57.275174 2023-07-08 08:23:57.27518 agrero A003441673 R rec a8749bb8-dfcf-4f55-bb94-9d20e0e888ee -2023-07-08 08:23:57.355369 2023-07-08 08:23:57.355374 agrero A003449705 R rec 3aacdb39-bd3a-41cf-9a6f-cfe15efbc86e -2023-07-08 08:23:57.424702 2023-07-08 08:23:57.424708 agrero A003449812 R rec 39c2e4f5-9bcb-41c5-91bb-94051a3f7ae4 -2023-07-08 08:23:57.485104 2023-07-08 08:23:57.485109 agrero A003450257 R rec 40f6fddc-7ac5-4fc7-961d-d481c6429547 -2023-07-08 08:23:57.545644 2023-07-08 08:23:57.54565 agrero A003451220 R rec dda5bcbd-41a5-42b4-93ea-c6d3ab4bef55 -2023-07-08 08:23:57.608868 2023-07-08 08:23:57.608874 agrero A003453966 R rec 7cd54f39-eafd-45cb-af39-f374830c8922 -2023-07-08 08:23:57.680113 2023-07-08 08:23:57.680119 agrero A003454418 R rec 96e98834-134a-4c68-bc84-1bde9dc137db -2023-07-08 08:23:57.750398 2023-07-08 08:23:57.750403 agrero A003454993 R rec 0db09652-73b8-4584-8521-fbbb9c46e7d0 -2023-07-08 08:23:57.82046 2023-07-08 08:23:57.820465 agrero A003462661 R rec f0974663-9745-45aa-b3d1-19dd03313ffe -2023-07-08 08:23:57.90491 2023-07-08 08:23:57.904917 agrero A003469619 R rec 1a657e01-7c38-463e-886d-e6108f12c3f2 -2023-07-08 08:23:58.005248 2023-07-08 08:23:58.005256 agrero A003471135 R rec 292a4595-9cc9-4310-ae82-98e8cb639555 -2023-07-08 08:23:58.094943 2023-07-08 08:23:58.094959 agrero A003471767 R rec 41be8a00-8db7-4b04-a079-f9c99c1db9fb -2023-07-08 08:23:58.183848 2023-07-08 08:23:58.183853 agrero A003477398 R rec 629c93de-ba5e-44fe-bc8c-8814ab126732 -2023-07-08 08:23:58.25557 2023-07-08 08:23:58.255576 agrero A003483779 R rec cbcd9b3a-dfd0-4dcc-8fab-fc663d557b89 -2023-07-08 08:23:58.340931 2023-07-08 08:23:58.340945 agrero A003483806 R rec 23eea8b6-a3d5-4990-8ef8-e3299c6c0ce9 -2023-07-08 08:23:58.42228 2023-07-08 08:23:58.422285 agrero A003484799 R rec 84c5070b-3be9-4a8e-9775-e4346214efa2 -2023-07-08 08:23:58.486688 2023-07-08 08:23:58.486693 agrero A003488727 R rec d337f3e2-bf30-45e7-866b-074e2c9db15c -2023-07-08 08:23:58.580723 2023-07-08 08:23:58.580728 agrero A003489212 R rec 4ab3c9f8-0624-4776-83d8-af157c92eaec -2023-07-08 08:23:58.676422 2023-07-08 08:23:58.676427 agrero A003489450 R rec 8e529aef-5e5f-4b27-bfe4-ce24513fba60 -2023-07-08 08:23:58.765518 2023-07-08 08:23:58.765529 agrero A003490603 R rec 3f5c4711-ad2d-4c6b-afe4-f5284a1602ac -2023-07-08 08:23:58.865985 2023-07-08 08:23:58.866001 agrero A003491429 R rec d328a042-1349-4041-a24c-a9bdbac11b74 -2023-07-08 08:23:58.955447 2023-07-08 08:23:58.955454 agrero A003491460 R rec 34008159-3937-48c4-bea2-d5f9355d3da0 -2023-07-08 08:23:59.039621 2023-07-08 08:23:59.039628 agrero A003491484 R rec 39d578d0-da23-4175-8e8d-a469b46e8478 -2023-07-08 08:23:59.146282 2023-07-08 08:23:59.146295 agrero A003492458 R rec 793c2482-e60b-43da-945a-160a0d858237 -2023-07-08 08:23:59.217 2023-07-08 08:23:59.217015 agrero A003494285 R rec e0ad8ee0-9bef-40b8-8233-c6e7d8ac92be -2023-07-08 08:23:59.309422 2023-07-08 08:23:59.309434 agrero A003497728 R rec c44f0827-4cb5-4e70-8c6d-4a426df15082 -2023-07-08 08:23:59.390735 2023-07-08 08:23:59.390747 agrero A003501142 R rec 27a11466-5eec-4678-8c67-d3bec4c16069 -2023-07-08 08:23:59.461651 2023-07-08 08:23:59.461664 agrero A003507812 R rec 3b39d40a-d682-4c69-9739-9b55d69ec749 -2023-07-08 08:23:59.553869 2023-07-08 08:23:59.55388 agrero A003508662 R rec e1016d29-0e8a-4bdc-90a0-e77198af5795 -2023-07-08 08:23:59.642403 2023-07-08 08:23:59.642415 agrero A003510150 R rec 0a3a6d6b-61ff-4fcf-b2e0-e68609bd13a4 -2023-07-08 08:23:59.717889 2023-07-08 08:23:59.717902 agrero A003511981 R rec 27eee3a1-6a69-45f9-8d09-070cbc901425 -2023-07-08 08:23:59.784031 2023-07-08 08:23:59.784042 agrero A003514292 R rec 90b7d8fa-ab09-4b2e-88bd-9380edbc430d -2023-07-08 08:23:59.87396 2023-07-08 08:23:59.873966 agrero A003516733 R rec 942e11b3-15c6-4344-8a45-abdbeb60d9a8 -2023-07-08 08:23:59.974211 2023-07-08 08:23:59.974218 agrero A003517040 R rec db046daa-7671-4c4e-9563-bd769acd371f -2023-07-08 08:24:00.065588 2023-07-08 08:24:00.065602 agrero A003517060 R rec d558a0b5-7cf8-4e94-86d4-18e264b27467 -2023-07-08 08:24:00.157317 2023-07-08 08:24:00.15733 agrero A003518724 R rec 1ab3a117-c751-4f99-93f9-c92f980fb8f5 -2023-07-08 08:24:00.229448 2023-07-08 08:24:00.229459 agrero A003520958 R rec c8a1bdcf-4f5f-4eed-b680-482bae00075f -2023-07-08 08:24:00.313951 2023-07-08 08:24:00.313957 agrero A003531526 R rec c58e6d10-37c9-46bb-a13c-24565ee06812 -2023-07-08 08:24:00.390573 2023-07-08 08:24:00.390584 agrero A003531595 R rec b29ffa57-a711-4930-904a-bddeeb18af8e -2023-07-08 08:24:00.484784 2023-07-08 08:24:00.484795 agrero A003531943 R rec 9b1bc156-9aa0-42af-a596-0daf704676a7 -2023-07-08 08:24:00.580491 2023-07-08 08:24:00.580502 agrero A003538407 R rec e040b78d-fa55-4f8a-b5c8-d454ff10ab8d -2023-07-08 08:24:00.651909 2023-07-08 08:24:00.651914 agrero A003542278 R rec f67da010-274a-4200-adf6-b47483db0282 -2023-07-08 08:24:00.73301 2023-07-08 08:24:00.733021 agrero A003543183 R rec cd2d5829-9a66-4dbc-88f3-2f505ecc03b0 -2023-07-08 08:24:00.837347 2023-07-08 08:24:00.837355 agrero A003544201 R rec 6d1efdfe-e189-4292-95d0-aa9927b63d25 -2023-07-08 08:24:00.946014 2023-07-08 08:24:00.946028 agrero A003546689 R rec 424dc523-85ad-4d90-b060-832b5c4d15b6 -2023-07-08 08:24:01.043836 2023-07-08 08:24:01.043843 agrero A003550856 R rec 81c6606c-958e-4b9f-b2fb-39ef1087f46b -2023-07-08 08:24:01.132377 2023-07-08 08:24:01.132388 agrero A003552034 R rec 543b782e-5c73-4879-b4fb-b94ddf250d88 -2023-07-08 08:24:01.214015 2023-07-08 08:24:01.21402 agrero A003552475 R rec 9efc503a-4d8e-40fc-904c-3ff7d2d326a6 -2023-07-08 08:24:01.300799 2023-07-08 08:24:01.30081 agrero A003556987 R rec f4eed5e4-8549-4d82-a5e8-97a36c1cde8e -2023-07-08 08:24:01.407171 2023-07-08 08:24:01.407182 agrero A003557648 R rec 80acf7ed-222b-483a-a703-5e741e4cd727 -2023-07-08 08:24:01.486443 2023-07-08 08:24:01.486448 agrero A003557956 R rec 77db8552-e86c-4a56-9a59-7912c820ee92 -2023-07-08 08:24:01.551527 2023-07-08 08:24:01.551538 agrero A003561750 R rec 98442130-5958-4717-ad31-433dc1e659bb -2023-07-08 08:24:01.634195 2023-07-08 08:24:01.634225 agrero A003562973 R rec c9e46f43-d16d-40db-89b6-dc2c2cc4a0d5 -2023-07-08 08:24:01.717668 2023-07-08 08:24:01.71768 agrero A003564111 R rec 531b0a90-7bfe-4e52-bf65-85e9b7a28e4e -2023-07-08 08:24:01.801404 2023-07-08 08:24:01.801415 agrero A003566329 R rec 39c97953-4a97-43a6-aae0-8ccfdab367e5 -2023-07-08 08:24:01.884071 2023-07-08 08:24:01.884082 agrero A003568779 R rec fd1cc132-5b22-4fa6-a171-05f3d120e350 -2023-07-08 08:24:01.981611 2023-07-08 08:24:01.981616 agrero A003569699 R rec eb3c5567-eff7-408d-ad5d-7e951ba95904 -2023-07-08 08:24:02.072764 2023-07-08 08:24:02.07277 agrero A003572511 R rec 78d73a71-af8f-4b92-a6fe-a71db590c15c -2023-07-08 08:24:02.162977 2023-07-08 08:24:02.162999 agrero A003572877 R rec 19868fec-c5b7-4154-86e3-d377b95ea51c -2023-07-08 08:24:02.269335 2023-07-08 08:24:02.269341 agrero A003575662 R rec 31b98e44-8f6d-4f6e-a3ca-ef9b91d2dbaf -2023-07-08 08:24:02.347825 2023-07-08 08:24:02.347838 agrero A003578228 R rec 874fa867-4825-4bc3-b877-73b162efb166 -2023-07-08 08:24:02.436851 2023-07-08 08:24:02.436865 agrero A003582881 R rec f94f0685-f35c-4ce2-8753-67536c943b7f -2023-07-08 08:24:02.535688 2023-07-08 08:24:02.535698 agrero A003588222 R rec d77db264-f05e-457c-a1fa-8f4f0f707ef4 -2023-07-08 08:24:02.603751 2023-07-08 08:24:02.603756 agrero A003588933 R rec ddd702e2-3ce1-43b1-8c64-3dc98cc42285 -2023-07-08 08:24:02.695611 2023-07-08 08:24:02.695616 agrero A003594199 R rec 8ff12dce-b6ec-45cc-b24d-70386e035aac -2023-07-08 08:24:02.787812 2023-07-08 08:24:02.787819 agrero A003596440 R rec 5ad82790-7a03-46db-ac23-6fa1c6c3ae48 -2023-07-08 08:24:02.879045 2023-07-08 08:24:02.879057 agrero A003597080 R rec 414d844d-155c-449c-8cdb-77cb1e3b6758 -2023-07-08 08:24:02.964675 2023-07-08 08:24:02.964696 agrero A003600525 R rec 28eb0fc1-a9d3-406f-bfe8-1a1c4a35c3e2 -2023-07-08 08:24:03.059378 2023-07-08 08:24:03.059389 agrero A003600526 R rec 6a2b1056-76fc-4099-963b-6353d84c4338 -2023-07-08 08:24:03.164134 2023-07-08 08:24:03.164139 agrero A003604534 R rec c7c00379-2a64-428d-a320-9fafc00ef09f -2023-07-08 08:24:03.241956 2023-07-08 08:24:03.241962 agrero A003610796 R rec ec97441e-bcee-42d8-bafe-2dfa56cfec15 -2023-07-08 08:24:03.316742 2023-07-08 08:24:03.316756 agrero A003611548 R rec 522892de-cd95-475e-b871-4cab2afc9212 -2023-07-08 08:24:03.416768 2023-07-08 08:24:03.416779 agrero A003613760 R rec 1b496ce4-3ddb-4ae8-b1d1-3d084ff58c22 -2023-07-08 08:24:03.515135 2023-07-08 08:24:03.515146 agrero A003618731 R rec d9794aa2-0a8f-4622-8e6e-67256d0df36f -2023-07-08 08:24:03.623666 2023-07-08 08:24:03.623678 agrero A003618791 R rec 31de85b0-8890-4a4a-b6c1-e8e065264466 -2023-07-08 08:24:03.705821 2023-07-08 08:24:03.705827 agrero A003618794 R rec 4d8e341f-98b5-41be-b3fa-2c4d86b2c932 -2023-07-08 08:24:03.784588 2023-07-08 08:24:03.784603 agrero A003619989 R rec 63a8f54e-6d81-420f-9b88-4526f9064bf0 -2023-07-08 08:24:03.888127 2023-07-08 08:24:03.888133 agrero A003620019 R rec f3bb9d20-904c-4f89-ba65-8cb598691f3e -2023-07-08 08:24:03.982737 2023-07-08 08:24:03.982743 agrero A003620351 R rec 4a60110f-5c75-4fd5-a576-efc8f13832e3 -2023-07-08 08:24:04.084041 2023-07-08 08:24:04.084047 agrero A003621449 R rec 69dec8a5-a6f8-4df0-abce-fde25a754a72 -2023-07-08 08:24:04.168407 2023-07-08 08:24:04.168417 agrero A003625161 R rec 3bd7829c-db1b-4968-9315-ba49b3118c3a -2023-07-08 08:24:04.257099 2023-07-08 08:24:04.257117 agrero A003630712 R rec b6856562-a34b-4ae3-ba30-4d007d9872f0 -2023-07-08 08:24:04.353788 2023-07-08 08:24:04.353794 agrero A003632361 R rec 3022ebc3-72bf-4f96-b3b8-3874e5356440 -2023-07-08 08:24:04.440646 2023-07-08 08:24:04.440654 agrero A003637861 R rec b36db8f1-0913-482b-8759-e40b7e7d42ee -2023-07-08 08:24:04.521007 2023-07-08 08:24:04.521018 agrero A003640740 R rec 54f0db2c-33e4-4cf0-beb3-26c85b441893 -2023-07-08 08:24:04.616213 2023-07-08 08:24:04.616229 agrero A003641265 R rec 94642545-e09c-4bc8-80d2-a5cb05dd83e4 -2023-07-08 08:24:04.706158 2023-07-08 08:24:04.706164 agrero A003645251 R rec 57b6ddbe-c039-4967-9d49-4d88fd1a7b0a -2023-07-08 08:24:04.797271 2023-07-08 08:24:04.797283 agrero A003648696 R rec c5fd685c-6429-42b3-b757-9705bdbb6538 -2023-07-08 08:24:04.877275 2023-07-08 08:24:04.877286 agrero A003650297 R rec 10f33162-16ea-4900-bc4c-145e30a816a2 -2023-07-08 08:24:04.966249 2023-07-08 08:24:04.96626 agrero A003650669 R rec f30b3101-fc48-4b9b-8ead-27f457dbe5f5 -2023-07-08 08:24:05.055749 2023-07-08 08:24:05.055756 agrero A003653616 R rec ab9fb5da-3822-4bee-9c07-ffb6d09579c7 -2023-07-08 08:24:05.145075 2023-07-08 08:24:05.145087 agrero A003658765 R rec 61e60f48-0d3f-43fe-b9c0-772142e9efdf -2023-07-08 08:24:05.230895 2023-07-08 08:24:05.230901 agrero A003660931 R rec fc876189-c763-4423-b65c-e95cf60ee93e -2023-07-08 08:24:05.304433 2023-07-08 08:24:05.304439 agrero A003662299 R rec 44a9238b-9690-49cb-8754-2f474d79ea8a -2023-07-08 08:24:05.378164 2023-07-08 08:24:05.378175 agrero A003662624 R rec c21b4b70-6fea-4953-8b7c-11214d2bd04d -2023-07-08 08:24:05.466841 2023-07-08 08:24:05.466858 agrero A003671506 R rec d17dc533-cf0f-489f-a1a7-7980c67be9b3 -2023-07-08 08:24:05.551245 2023-07-08 08:24:05.551263 agrero A003672170 R rec f431b935-5ea1-4005-b907-6585cb3a82b3 -2023-07-08 08:24:05.658872 2023-07-08 08:24:05.658889 agrero A003673634 R rec 6fe33a85-74cc-445c-833f-38a4b36a6d71 -2023-07-08 08:24:05.744462 2023-07-08 08:24:05.744479 agrero A003677375 R rec b513a598-d0e4-44d8-8bb5-4f86be60c3ff -2023-07-08 08:24:05.855574 2023-07-08 08:24:05.855579 agrero A003679975 R rec db1fb456-932f-4235-ac5c-14ac080a1172 -2023-07-08 08:24:05.945414 2023-07-08 08:24:05.94543 agrero A003681000 R rec 01b94a97-0301-46d9-9042-a58db6daaae9 -2023-07-08 08:24:06.037557 2023-07-08 08:24:06.037562 agrero A003685283 R rec 32a73f2d-cb9c-4396-936f-41aea83d8243 -2023-07-08 08:24:06.12763 2023-07-08 08:24:06.127638 agrero A003685465 R rec 9718eec1-a6d8-4f88-a3f6-1417c631c5d3 -2023-07-08 08:24:06.200562 2023-07-08 08:24:06.20057 agrero A003688082 R rec 6fdf3576-8319-4c96-9982-2d6675e9af0b -2023-07-08 08:24:06.286155 2023-07-08 08:24:06.286161 agrero A003688354 R rec 031bf98a-ec56-44cd-a277-6530b1b22cf8 -2023-07-08 08:24:06.367085 2023-07-08 08:24:06.367094 agrero A003696554 R rec d9628851-b54a-4bb6-802c-f8cf018a267c -2023-07-08 08:24:06.435089 2023-07-08 08:24:06.435093 agrero A003699041 R rec d7b807d5-bffc-446e-b112-ecd632029d18 -2023-07-08 08:24:06.504255 2023-07-08 08:24:06.50426 agrero A003703519 R rec 24c0221a-7046-4296-adec-5fc748d56d6f -2023-07-08 08:24:06.571989 2023-07-08 08:24:06.571997 agrero A003703655 R rec 7c9a316e-a5ba-412b-aa0b-f23e23ff31d4 -2023-07-08 08:24:06.638807 2023-07-08 08:24:06.638815 agrero A003706170 R rec ff76dda2-13f6-422e-9ab1-23302069dbbc -2023-07-08 08:24:06.718737 2023-07-08 08:24:06.718742 agrero A003710512 R rec 8f5ce99d-cd49-433b-8684-fc5d2ff0646f -2023-07-08 08:24:06.784149 2023-07-08 08:24:06.784155 agrero A003713064 R rec ba6223bd-62cb-4301-8c15-315878d45bf7 -2023-07-08 08:24:06.877055 2023-07-08 08:24:06.877067 agrero A003717532 R rec 208fbe91-bc51-42b6-b1b7-572815ef2903 -2023-07-08 08:24:06.984446 2023-07-08 08:24:06.984452 agrero A003719235 R rec bace7c12-2828-468a-91d5-b312e412b59e -2023-07-08 08:24:07.078578 2023-07-08 08:24:07.078595 agrero A003721710 R rec 76d1e1b2-de7c-4c65-9db3-275147fa6fdc -2023-07-08 08:24:07.17749 2023-07-08 08:24:07.177501 agrero A003728520 R rec 10676bbd-6b02-4149-b5c7-a5a531a85ff9 -2023-07-08 08:24:07.258752 2023-07-08 08:24:07.258764 agrero A003733566 R rec 7590b913-daf4-473f-a04a-363315d59a69 -2023-07-08 08:24:07.360133 2023-07-08 08:24:07.360145 agrero A003734370 R rec 0c31d5ee-f7ea-468b-990f-88e7f3355a5a -2023-07-08 08:24:07.456608 2023-07-08 08:24:07.456614 agrero A003736990 R rec 14dd9e8f-eaa9-4a2a-b831-60bcf0602f88 -2023-07-08 08:24:07.550452 2023-07-08 08:24:07.550464 agrero A003737238 R rec 99421aaf-1da9-4c22-b23b-739941e10aa1 -2023-07-08 08:24:07.644909 2023-07-08 08:24:07.644924 agrero A003743096 R rec 90decd4a-d6b2-40cc-86b0-5e2a33dffc27 -2023-07-08 08:24:07.734518 2023-07-08 08:24:07.73453 agrero A003743887 R rec d745c5fe-676f-4e33-b239-7259d15ed569 -2023-07-08 08:24:07.832569 2023-07-08 08:24:07.832583 agrero A003744787 R rec 1dc2e471-9b49-4bb4-b5fa-344736a7dc53 -2023-07-08 08:24:07.91666 2023-07-08 08:24:07.916672 agrero A003747661 R rec 0391d64a-63db-4ebc-be90-a038fc21cc79 -2023-07-08 08:24:08.006372 2023-07-08 08:24:08.006377 agrero A003751647 R rec 6884f5e2-3e59-4653-8712-3b118084cf53 -2023-07-08 08:24:08.073931 2023-07-08 08:24:08.073937 agrero A003752143 R rec e338e579-8cd4-4e9f-af72-3f34f5f2f9a2 -2023-07-08 08:24:08.150725 2023-07-08 08:24:08.150731 agrero A003755899 R rec 6aed21b9-b41f-4678-8c8d-fb81e3cfd516 -2023-07-08 08:24:08.221033 2023-07-08 08:24:08.221039 agrero A003759742 R rec b4d8dbc2-4646-4f21-92f9-59207875b038 -2023-07-08 08:24:08.29487 2023-07-08 08:24:08.294875 agrero A003763487 R rec ca1a386b-62da-421e-889c-4a814670a646 -2023-07-08 08:24:08.372118 2023-07-08 08:24:08.372124 agrero A003768835 R rec 6632af33-55ff-4e79-8e87-ecb4759476b0 -2023-07-08 08:24:08.453858 2023-07-08 08:24:08.453864 agrero A003780412 R rec 07e1d2c7-4708-481e-a037-ff605e188333 -2023-07-08 08:24:08.551049 2023-07-08 08:24:08.551055 agrero A003781775 R rec 04f0e9bb-6d0b-4baf-8f04-7a7f4f813c1f -2023-07-08 08:24:08.622674 2023-07-08 08:24:08.622679 agrero A003782234 R rec e7749fa7-2f8f-4a62-9592-bd47f6d6ccf5 -2023-07-08 08:24:08.700861 2023-07-08 08:24:08.700869 agrero A003783872 R rec aa4d7d6f-fdf1-4d41-b171-ee7af4210c8f -2023-07-08 08:24:08.77966 2023-07-08 08:24:08.779668 agrero A003788311 R rec 15c380f0-4535-48a1-9916-652786055f67 -2023-07-08 08:24:08.848531 2023-07-08 08:24:08.848537 agrero A003789261 R rec 33042b70-74c9-43dc-be2e-e7b39e8a3fd1 -2023-07-08 08:24:08.921489 2023-07-08 08:24:08.921495 agrero A003794166 R rec 9e089fac-ef4d-4bb5-a9d3-f819e80f336b -2023-07-08 08:24:08.989174 2023-07-08 08:24:08.989179 agrero A003794394 R rec a76b6cdd-1d94-4c5e-a996-24e328250cb2 -2023-07-08 08:24:09.059571 2023-07-08 08:24:09.059576 agrero A003794788 R rec f032eeed-ca47-4cae-abce-f5eb5c38da19 -2023-07-08 08:24:09.146132 2023-07-08 08:24:09.146146 agrero A003795823 R rec a43019ac-cc67-438f-887f-a08fb56ff56f -2023-07-08 08:24:09.241287 2023-07-08 08:24:09.2413 agrero A003795824 R rec 2b5cdc4f-5be3-4e2c-a8a5-0a65db6e7d7a -2023-07-08 08:24:09.335296 2023-07-08 08:24:09.3353 agrero A003797257 R rec bf405840-c69f-4c93-ae5e-74b644f68936 -2023-07-08 08:24:09.439927 2023-07-08 08:24:09.439934 agrero A003808479 R rec c51ebcc1-9a4c-4d88-be85-d21db2c48c40 -2023-07-08 08:24:09.528563 2023-07-08 08:24:09.528575 agrero A003808958 R rec 05a551b1-01fe-4446-95ec-8f75041e4bab -2023-07-08 08:24:09.616163 2023-07-08 08:24:09.616174 agrero A003809251 R rec 7133b890-c8d3-4d0f-a497-6eaa453578bb -2023-07-08 08:24:09.710335 2023-07-08 08:24:09.71034 agrero A003811660 R rec 8edaf9c5-ecc2-4d00-a703-937c2963bea7 -2023-07-08 08:24:09.799196 2023-07-08 08:24:09.799208 agrero A003813334 R rec d18d8002-cbc5-4ecf-8e66-6e16c1188c05 -2023-07-08 08:24:09.8995 2023-07-08 08:24:09.899512 agrero A003817832 R rec b0754bd2-e92f-4d54-93b0-b62aab72b27e -2023-07-08 08:24:09.99837 2023-07-08 08:24:09.998375 agrero A003819619 R rec 5f9718a0-a90b-40d0-a685-48881bf09b9a -2023-07-08 08:24:10.089759 2023-07-08 08:24:10.08977 agrero A003822497 R rec 4ebb68b1-1569-41da-9432-3968869a659d -2023-07-08 08:24:10.185184 2023-07-08 08:24:10.185194 agrero A003825451 R rec 0fb0108c-672e-41fb-8723-c5bbb029493b -2023-07-08 08:24:10.311782 2023-07-08 08:24:10.311799 agrero A003827438 R rec 99e1d2fb-be4d-4562-ab6e-9e34d70085c9 -2023-07-08 08:24:10.404864 2023-07-08 08:24:10.404871 agrero A003827929 R rec 4799672e-992d-4f70-912f-493a39f9b7c4 -2023-07-08 08:24:10.520255 2023-07-08 08:24:10.520265 agrero A003829549 R rec 7c7a3629-14d6-4a4f-9207-aeee74ea7f3b -2023-07-08 08:24:10.610277 2023-07-08 08:24:10.610288 agrero A003830445 R rec 02d13c38-0f1f-46ff-8ab4-c5750b12e081 -2023-07-08 08:24:10.69088 2023-07-08 08:24:10.690885 agrero A003833071 R rec d1e3a896-2eb2-43e8-90cc-098b611b116a -2023-07-08 08:24:10.772408 2023-07-08 08:24:10.772414 agrero A003835588 R rec 40700278-e760-4baa-a5db-e80d6f5db7eb -2023-07-08 08:24:10.846173 2023-07-08 08:24:10.846182 agrero A003839353 R rec e1826820-f930-48cb-b430-30e673cda688 -2023-07-08 08:24:10.92048 2023-07-08 08:24:10.920487 agrero A003840255 R rec 90378ad1-12a8-4035-8e74-2e0b8d2d70e9 -2023-07-08 08:24:11.017304 2023-07-08 08:24:11.017313 agrero A003840370 R rec 7ceafd90-8fa5-4022-9ec4-04148c835217 -2023-07-08 08:24:11.09848 2023-07-08 08:24:11.098487 agrero A003840561 R rec 6b5921d8-24b5-4bcc-bb81-52b9317a373e -2023-07-08 08:24:11.174231 2023-07-08 08:24:11.174236 agrero A003842524 R rec 28919a4c-a7f5-4fd8-9920-f08c2c0bff8c -2023-07-08 08:24:11.249447 2023-07-08 08:24:11.249453 agrero A003845264 R rec 7a8364ab-251b-4952-b540-820f08193b35 -2023-07-08 08:24:11.333082 2023-07-08 08:24:11.33309 agrero A003849275 R rec b4297480-b6f8-47cd-9e22-2abdb6202b94 -2023-07-08 08:24:11.406486 2023-07-08 08:24:11.406492 agrero A003849995 R rec 5474b3e3-5d15-4c24-9ddd-c87d7dacf451 -2023-07-08 08:24:11.480519 2023-07-08 08:24:11.480533 agrero A003852855 R rec 40a5ce83-9ec6-4837-8f37-534b05cebc64 -2023-07-08 08:24:11.578387 2023-07-08 08:24:11.578393 agrero A003853351 R rec 21226278-eb3d-4d2e-8816-01d7cdebc08f -2023-07-08 08:24:11.672728 2023-07-08 08:24:11.672734 agrero A003854679 R rec b1018a30-3681-4fe4-85a9-b3e9951914ad -2023-07-08 08:24:11.749859 2023-07-08 08:24:11.749864 agrero A003861370 R rec d39db5b1-297e-4db0-9280-b4b8750b4c1b -2023-07-08 08:24:11.839314 2023-07-08 08:24:11.839323 agrero A003863577 R rec 6a5bf673-8f73-469b-9654-bb3e530949f1 -2023-07-08 08:24:11.936026 2023-07-08 08:24:11.936031 agrero A003870613 R rec aae36e40-6614-47e1-a6be-973cc6c5160a -2023-07-08 08:24:12.010627 2023-07-08 08:24:12.010633 agrero A003881754 R rec df7d29df-e320-4fc3-a185-d47c16dcd4a2 -2023-07-08 08:24:12.086402 2023-07-08 08:24:12.086407 agrero A003883009 R rec a91f57b5-524b-46fa-b4df-f6a74c57e63c -2023-07-08 08:24:12.184968 2023-07-08 08:24:12.184973 agrero A003883330 R rec 60737cbd-082f-4b67-ba2f-6a5b4a2b2904 -2023-07-08 08:24:12.258087 2023-07-08 08:24:12.258093 agrero A003883717 R rec e6deaa96-2387-40e3-9a43-31bf6684b916 -2023-07-08 08:24:12.333644 2023-07-08 08:24:12.33365 agrero A003883777 R rec d953d1de-e10b-400a-aa74-5bdcbf1cda06 -2023-07-08 08:24:12.456652 2023-07-08 08:24:12.456658 agrero A003886758 R rec c07aebdf-27d5-4e51-848b-a649d690c13b -2023-07-08 08:24:12.51985 2023-07-08 08:24:12.519855 agrero A003889324 R rec 97c782c8-4978-4194-bbd5-3d8cba87beb6 -2023-07-08 08:24:12.59577 2023-07-08 08:24:12.595776 agrero A003890737 R rec bb9741dc-dd5b-43e2-96dc-973c6d8762cf -2023-07-08 08:24:12.676393 2023-07-08 08:24:12.676399 agrero A003895492 R rec 89b684ad-a84a-40a8-aebc-d6df48baa4a1 -2023-07-08 08:24:12.75093 2023-07-08 08:24:12.750937 agrero A003899816 R rec ce536baf-2c70-4c4d-a8e7-7fab37ec9c26 -2023-07-08 08:24:12.83623 2023-07-08 08:24:12.836239 agrero A003902263 R rec caae0acb-d74d-4b3d-9016-cdc1dfe82b85 -2023-07-08 08:24:12.909017 2023-07-08 08:24:12.909021 agrero A003905474 R rec e35d069f-a05a-40d5-bf28-8ecbc8e0d409 -2023-07-08 08:24:12.984808 2023-07-08 08:24:12.984813 agrero A003913856 R rec 9e8c9567-c7ac-4caa-bf75-85ff7ffd9f0e -2023-07-08 08:24:13.062309 2023-07-08 08:24:13.062315 agrero A003919082 R rec d0749aa0-de1a-44f3-a1ed-ef6d689a4f24 -2023-07-08 08:24:13.134562 2023-07-08 08:24:13.134567 agrero A003936311 R rec ea601aed-c942-4f8c-bf36-a749232f51f8 -2023-07-08 08:24:13.203202 2023-07-08 08:24:13.203208 agrero A003943767 R rec 77ecba36-c50f-4510-92ca-2945d9880c47 -2023-07-08 08:24:13.276279 2023-07-08 08:24:13.276285 agrero A003947464 R rec 487c3b25-3019-4e1b-afe6-11f0329c0247 -2023-07-08 08:24:13.356057 2023-07-08 08:24:13.356062 agrero A003948416 R rec 2aa94e1e-d121-4c27-bd68-6ffc1ce26c2e -2023-07-08 08:24:13.434467 2023-07-08 08:24:13.434473 agrero A003958822 R rec 053839cd-038c-4432-b9ef-78431fc39f7a -2023-07-08 08:24:13.507953 2023-07-08 08:24:13.507957 agrero A003966124 R rec 3ca72d30-76ed-42c3-a34b-d3a2d55322ac -2023-07-08 08:24:13.598121 2023-07-08 08:24:13.598128 agrero A003967245 R rec 472a1354-d2c3-48e7-bea8-427dc91ecc20 -2023-07-08 08:24:13.670743 2023-07-08 08:24:13.670748 agrero A003969580 R rec 3b5f6a9b-84bd-4575-b818-54b70a6cb796 -2023-07-08 08:24:13.746689 2023-07-08 08:24:13.746695 agrero A003969900 R rec 0a352b32-0cb5-461a-b267-f2cf3541a34b -2023-07-08 08:24:13.815661 2023-07-08 08:24:13.815666 agrero A003971618 R rec a65cac81-7453-4331-ba35-fb60ca56cab7 -2023-07-08 08:24:13.88664 2023-07-08 08:24:13.886648 agrero A003973251 R rec f31014bc-6e65-4194-8a41-6c9bb79480b6 -2023-07-08 08:24:13.958208 2023-07-08 08:24:13.958214 agrero A003975282 R rec cc6a097f-b95c-469c-be25-9a6184b7ef7e -2023-07-08 08:24:14.033804 2023-07-08 08:24:14.033809 agrero A003981555 R rec 6420af0d-ee6e-41e1-99e7-e827fda602d3 -2023-07-08 08:24:14.120072 2023-07-08 08:24:14.120077 agrero A003981870 R rec 21a89bad-91a4-4b11-aca4-64158643282a -2023-07-08 08:24:14.202957 2023-07-08 08:24:14.202963 agrero A003984942 R rec fa9ec863-bcae-4ab7-9c8e-62a69d889dd8 -2023-07-08 08:24:14.281553 2023-07-08 08:24:14.281557 agrero A003985806 R rec 996e0fee-e96a-4462-8061-e17e2c8bd50e -2023-07-08 08:24:14.352665 2023-07-08 08:24:14.352671 agrero A003988011 R rec 0a49efc4-561d-42b3-8e54-926944a12fec -2023-07-08 08:24:14.426718 2023-07-08 08:24:14.426724 agrero A003988126 R rec d44fd589-5765-4379-9eda-0521a99c9f55 -2023-07-08 08:24:14.488257 2023-07-08 08:24:14.488262 agrero A003990251 R rec 03739233-6fd6-40ad-9268-26b874cc871a -2023-07-08 08:24:14.555291 2023-07-08 08:24:14.555296 agrero A003991229 R rec 9a63d120-0a62-4686-968e-20d3f1f72dff -2023-07-08 08:24:14.624822 2023-07-08 08:24:14.624828 agrero A003994705 R rec 3ef67411-0aad-4306-9d06-0d94c129d053 -2023-07-08 08:24:14.695953 2023-07-08 08:24:14.69596 agrero A003995908 R rec beeed6d0-60e5-4e97-8578-0d8184237874 -2023-07-08 08:24:14.776307 2023-07-08 08:24:14.776313 agrero A003999648 R rec 6d5f9e02-2b50-4db6-bec8-368e8374bb74 -2023-07-08 08:24:14.852871 2023-07-08 08:24:14.852876 agrero A005312991 R rec e1218527-96a1-4b7e-983b-d3aac712702d -2023-07-08 08:24:14.918496 2023-07-08 08:24:14.918502 agrero A005368039 R rec 45ff616c-aafb-40c2-8646-369b32949709 -2023-07-08 08:24:14.98031 2023-07-08 08:24:14.980315 agrero A005460720 R rec 099bee13-dd38-4fbe-8d89-0efe433267cb -2023-07-08 08:24:15.053106 2023-07-08 08:24:15.053122 agrero A005463202 R rec 01178db6-a09e-4145-9787-57e0d9309ebd -2023-07-08 08:24:15.146265 2023-07-08 08:24:15.146277 agrero A005464802 R rec b09ea2d5-2a61-4041-9230-97495605fd12 -2023-07-08 08:24:15.240271 2023-07-08 08:24:15.240287 agrero A005466192 R rec ee8713be-bff2-445e-b3c4-b53fd3ff1a79 -2023-07-08 08:24:15.344057 2023-07-08 08:24:15.344073 agrero A005469950 R rec e092dbad-c343-4dee-b43b-77623c25dcf0 -2023-07-08 08:24:15.42415 2023-07-08 08:24:15.424167 agrero A005471055 R rec 39173f8d-09ce-40ae-bcea-b4ea42d2ee58 -2023-07-08 08:24:15.516397 2023-07-08 08:24:15.516416 agrero A005475587 R rec 5deb8e62-6a94-43dd-8c4b-d9c5d8d73fc3 -2023-07-08 08:24:15.605079 2023-07-08 08:24:15.605084 agrero A005480840 R rec b6556d08-337d-4de1-8569-f3a24354d6f5 -2023-07-08 08:24:15.693394 2023-07-08 08:24:15.693406 agrero A005495353 R rec 30d899f0-cd22-4c54-9e5f-a24c1e653e9e -2023-07-08 08:24:15.76693 2023-07-08 08:24:15.766935 agrero A005496746 R rec f902b1c7-817d-4aee-963f-1d4b0f505d64 -2023-07-08 08:24:15.852917 2023-07-08 08:24:15.852927 agrero A005513603 R rec cb7e602f-bce7-4c0a-aa59-c10ea800e3b4 -2023-07-08 08:24:15.94154 2023-07-08 08:24:15.941551 agrero A005522657 R rec c99dc645-aa44-485c-85b3-18cc225922be -2023-07-08 08:24:16.024154 2023-07-08 08:24:16.024159 agrero A005533991 R rec 852ec908-0ad1-4293-a0db-7287c8c5a089 -2023-07-08 08:24:16.105195 2023-07-08 08:24:16.105201 agrero A005558255 R rec a5481960-7dea-4351-bfa7-ca7d8bea239a -2023-07-08 08:24:16.188447 2023-07-08 08:24:16.188453 agrero A005570502 R rec 6ac5c7b5-a2ca-4858-ba40-f3ab67aab3c8 -2023-07-08 08:24:16.272089 2023-07-08 08:24:16.272103 agrero A005573785 R rec 42ad85b3-7323-4614-a49a-844f39803358 -2023-07-08 08:24:16.353742 2023-07-08 08:24:16.353748 agrero A005595559 R rec 7ae49789-40c0-435e-9730-05eeaa15d55f -2023-07-08 08:24:16.442656 2023-07-08 08:24:16.44267 agrero A005599445 R rec 4691b878-011b-4d9c-9285-5c7e0d01aa17 -2023-07-08 08:24:16.538802 2023-07-08 08:24:16.538808 agrero A005605846 R rec d62f627e-0577-47c6-80d3-3851a4844064 -2023-07-08 08:24:16.623926 2023-07-08 08:24:16.623938 agrero A005621817 R rec a747b27e-5eef-40fd-8621-ba96cc74ddd5 -2023-07-08 08:24:16.717395 2023-07-08 08:24:16.717412 agrero A005623637 R rec 18204c98-323a-4073-8e95-c7c02e50710b -2023-07-08 08:24:16.805183 2023-07-08 08:24:16.805188 agrero A005655274 R rec 94bb7e8b-0ea8-4a9d-b9d2-3d1b3ca5a33b -2023-07-08 08:24:16.889088 2023-07-08 08:24:16.889094 agrero A005663176 R rec a9fa030b-5677-4950-b9cd-67c16973d469 -2023-07-08 08:24:16.989501 2023-07-08 08:24:16.989507 agrero A005673019 R rec da6b354d-3ee0-4e28-9c86-81185471826a -2023-07-08 08:24:17.076018 2023-07-08 08:24:17.076024 agrero A005680197 R rec 6d1e536c-26a7-4002-91f3-a62da88825b6 -2023-07-08 08:24:17.172871 2023-07-08 08:24:17.172881 agrero A005718969 R rec 91c6ec20-59ef-483f-b07a-4df3b0830686 -2023-07-08 08:24:17.306463 2023-07-08 08:24:17.30647 agrero A005732208 R rec fbb15563-0d03-4f49-a9a6-14a43053009b -2023-07-08 08:24:17.4072 2023-07-08 08:24:17.407206 agrero A005753197 R rec 435e1265-1c65-49b8-bf6a-208e9494af11 -2023-07-08 08:24:17.501158 2023-07-08 08:24:17.501164 agrero A005770175 R rec 710a3428-aac7-442d-a18b-d57d0328e1c7 -2023-07-08 08:24:17.579025 2023-07-08 08:24:17.579031 agrero A005787734 R rec c790258d-ee79-4c01-8c1c-7cde9d788c6f -2023-07-08 08:24:17.658979 2023-07-08 08:24:17.658984 agrero A005794650 R rec 6819024f-845f-4729-91e2-03b65c0430b8 -2023-07-08 08:24:17.730918 2023-07-08 08:24:17.730923 agrero A005814757 R rec 9de010cb-e48f-4963-9930-51c3124e9680 -2023-07-08 08:24:17.799237 2023-07-08 08:24:17.799241 agrero A005821830 R rec 86241387-70c3-4619-9760-2c3f70981fdf -2023-07-08 08:24:17.874624 2023-07-08 08:24:17.87463 agrero A005915341 R rec 0e0d9f9a-be72-40a6-8bf5-3bf060b6a80b -2023-07-08 08:24:17.961885 2023-07-08 08:24:17.961898 agrero A005942520 R rec c36cfaa9-b327-42a4-aefe-9b03d7df7a93 -2023-07-08 08:24:18.056137 2023-07-08 08:24:18.056144 agrero A005944951 R rec 12fe27a6-b0ff-4791-8f90-ab240582daa9 -2023-07-08 08:24:18.136773 2023-07-08 08:24:18.136778 agrero A005945920 R rec 08f71c90-0860-4ac8-833b-542088b9cdac -2023-07-08 08:24:18.221226 2023-07-08 08:24:18.221232 agrero A005984015 R rec 4bb8572d-8206-4279-996c-07e0054eed34 -2023-07-08 08:24:18.294005 2023-07-08 08:24:18.294011 agrero A005995031 R rec 2a135d2e-c846-4d57-8eb3-dc1cdd003223 -2023-07-08 08:24:18.381734 2023-07-08 08:24:18.381742 agrero A006018560 R rec 1a959b14-3739-42ec-b6ad-d3ddb1682b4f -2023-07-08 08:24:18.449875 2023-07-08 08:24:18.449881 agrero A006023343 R rec e301a4e4-62d6-4ed7-b951-393dd48d925b -2023-07-08 08:24:18.521403 2023-07-08 08:24:18.521416 agrero A006035318 R rec 1c0f38b8-8308-46c9-8ad1-9b3d86ab2145 -2023-07-08 08:24:18.623871 2023-07-08 08:24:18.623878 agrero A006048308 R rec c5c8614d-c278-40f8-9fd4-aaf0822f4a0d -2023-07-08 08:24:18.727789 2023-07-08 08:24:18.727795 agrero A006055239 R rec d1d59750-08d0-4387-86a0-7788615f19f2 -2023-07-08 08:24:18.823398 2023-07-08 08:24:18.823403 agrero A006055590 R rec 2524b690-036b-4ef4-bf1c-425975bffc72 -2023-07-08 08:24:18.921816 2023-07-08 08:24:18.921831 agrero A006065033 R rec ed247af9-3db1-4c30-a73f-c608b0f8aef6 -2023-07-08 08:24:19.016878 2023-07-08 08:24:19.016891 agrero A006071676 R rec 4e1b5e6c-2394-4a49-be74-a2419b238259 -2023-07-08 08:24:19.105751 2023-07-08 08:24:19.105757 agrero A006094802 R rec 40852e30-c15f-406a-bf64-0aec6ccaba7d -2023-07-08 08:24:19.189586 2023-07-08 08:24:19.189591 agrero A006099782 R rec 8abdda89-180f-48ef-b1ba-a22c1a81b147 -2023-07-08 08:24:19.26159 2023-07-08 08:24:19.261602 agrero A006102670 R rec 0138bd70-12a1-4ef6-84b4-c0eff29aed2d -2023-07-08 08:24:19.34667 2023-07-08 08:24:19.346681 agrero A006154163 R rec ebb84236-d5f7-4b7a-970c-e12c8cc95caf -2023-07-08 08:24:19.438348 2023-07-08 08:24:19.438353 agrero A006159385 R rec c7974ed4-e084-4470-bcea-706ba89bfac4 -2023-07-08 08:24:19.530196 2023-07-08 08:24:19.530207 agrero A006173450 R rec c7b8c8e8-c34f-4c0a-bb35-04b0a43fec93 -2023-07-08 08:24:19.616108 2023-07-08 08:24:19.61612 agrero A006173574 R rec 2c064bf8-36c6-40c8-b915-baec61398b29 -2023-07-08 08:24:19.694089 2023-07-08 08:24:19.694095 agrero A006204823 R rec e345180f-b88b-4b91-b6fe-fe04312df449 -2023-07-08 08:24:19.775157 2023-07-08 08:24:19.775164 agrero A006210520 R rec 71debbf4-b197-4914-b35c-2082f63722a3 -2023-07-08 08:24:19.843593 2023-07-08 08:24:19.843598 agrero A006220068 R rec 580ef61b-539c-4bf7-8803-50345593e5e6 -2023-07-08 08:24:19.911892 2023-07-08 08:24:19.911901 agrero A006225272 R rec f01e3a6b-01ce-496b-933c-b9b14c292399 -2023-07-08 08:24:19.97558 2023-07-08 08:24:19.975585 agrero A006241487 R rec 18bb831d-bfe1-4d2f-b901-8995680811d2 -2023-07-08 08:24:20.039758 2023-07-08 08:24:20.039766 agrero A006246319 R rec 224a9317-d28b-4245-b14e-cd3e66d7f43e -2023-07-08 08:24:20.104088 2023-07-08 08:24:20.104095 agrero A006251854 R rec 9c52b015-43b5-438e-a6b2-f15d344d39c5 -2023-07-08 08:24:20.170986 2023-07-08 08:24:20.170992 agrero A006282682 R rec 7c6e63ea-3ede-4ace-a1db-d87f7fd3feb4 -2023-07-08 08:24:20.245164 2023-07-08 08:24:20.245175 agrero A006288245 R rec 147bc4c2-fe0f-4c1c-9e33-892a61cc8360 -2023-07-08 08:24:20.321013 2023-07-08 08:24:20.321019 agrero A006304507 R rec b4251c3f-e7aa-4cae-94da-b98d4a096c71 -2023-07-08 08:24:20.399234 2023-07-08 08:24:20.39924 agrero A006305372 R rec 4a43b7bb-f18f-4842-a9ef-ef4b35881180 -2023-07-08 08:24:20.475682 2023-07-08 08:24:20.475688 agrero A006319847 R rec 7dc0e71f-7791-4f78-98f2-a8652c60a841 -2023-07-08 08:24:20.539038 2023-07-08 08:24:20.539046 agrero A006331016 R rec 1d15569e-9da3-4923-8cb2-6af77958e16d -2023-07-08 08:24:20.60274 2023-07-08 08:24:20.602744 agrero A006378241 R rec 187d2f5a-8025-4ce0-8c9f-3bb53306b794 -2023-07-08 08:24:20.683009 2023-07-08 08:24:20.683024 agrero A006384206 R rec 68a1e341-5d00-45a9-be90-d744c71deb44 -2023-07-08 08:24:20.765782 2023-07-08 08:24:20.765796 agrero A006389498 R rec 90fee0b0-a90b-4278-9a67-96de9cf73e7e -2023-07-08 08:24:20.865086 2023-07-08 08:24:20.865097 agrero A006407470 R rec 0f0771ab-c790-4966-8f71-0887349c70cf -2023-07-08 08:24:20.943487 2023-07-08 08:24:20.943499 agrero A006417880 R rec 775fde13-301a-4845-aad4-04a05b527d5b -2023-07-08 08:24:21.025181 2023-07-08 08:24:21.025187 agrero A006417971 R rec 5b058448-db72-43fc-b918-987d7a48f868 -2023-07-08 08:24:21.094527 2023-07-08 08:24:21.094534 agrero A006451071 R rec f179aca2-74fd-4520-b05d-dc6f9e7837bd -2023-07-08 08:24:21.172254 2023-07-08 08:24:21.17226 agrero A006525884 R rec 41255fec-d19d-471d-9e9a-ce1295398f84 -2023-07-08 08:24:21.240636 2023-07-08 08:24:21.240642 agrero A006533818 R rec 4ec0ed17-5c43-4ab3-b009-6fd7add78eef -2023-07-08 08:24:21.306111 2023-07-08 08:24:21.306117 agrero A006534193 R rec b458e3ad-1f6e-43a9-8f0b-300eef33a22f -2023-07-08 08:24:21.371915 2023-07-08 08:24:21.37192 agrero A006581053 R rec e9752a67-6353-4322-ac30-77843b44c3f7 -2023-07-08 08:24:21.446466 2023-07-08 08:24:21.446473 agrero A008584612 R rec cb723f86-4f5e-4821-afa5-1d253c4a03de -2023-07-08 08:24:21.529066 2023-07-08 08:24:21.529073 agrero A008591482 R rec 67f6eaf2-f696-47f1-86b3-65f18d5dd1aa -2023-07-08 08:24:21.595721 2023-07-08 08:24:21.595728 agrero A008595638 R rec 760ec729-1377-45f2-afc1-5464814ddb3f -2023-07-08 08:24:21.667159 2023-07-08 08:24:21.667165 agrero A008660620 R rec 615f1168-b642-41c4-a861-777588267abb -2023-07-08 08:24:21.741813 2023-07-08 08:24:21.741818 agrero A008729062 R rec b5e5a6df-a04f-4f99-b1ff-d0e7fae27f52 -2023-07-08 08:24:21.819915 2023-07-08 08:24:21.819924 agrero A008730051 R rec d843f501-abed-4238-ab49-db83f383e474 -2023-07-08 08:24:21.896088 2023-07-08 08:24:21.896093 agrero A008794733 R rec a2c2819f-76e9-47a7-bae5-7c00148209ed -2023-07-08 08:24:21.962202 2023-07-08 08:24:21.962208 agrero A008799434 R rec 045556c9-e917-4b7d-a34b-65a13c402747 -2023-07-08 08:24:22.034432 2023-07-08 08:24:22.034437 agrero A008811165 R rec a9485f16-673f-41dd-8d4f-d870b6053714 -2023-07-08 08:24:22.105688 2023-07-08 08:24:22.105696 agrero A008813776 R rec dcdfade4-86ee-4994-bc72-81f9322fa2ac -2023-07-08 08:24:22.182148 2023-07-08 08:24:22.182154 agrero A008846996 R rec 280e2d45-5af2-4b49-8a4c-526058c37ab0 -2023-07-08 08:24:22.248844 2023-07-08 08:24:22.24885 agrero A008873000 R rec 8ed31232-5d0d-4f68-85d6-8ae5c49f814a -2023-07-08 08:24:22.315397 2023-07-08 08:24:22.315403 agrero A008883799 R rec 6230a705-8725-477d-88ba-5fa5d01bc9f8 -2023-07-08 08:24:22.392156 2023-07-08 08:24:22.392162 agrero A008902038 R rec 8e09b9b7-820a-4705-89d4-4557f1d52953 -2023-07-08 08:24:22.455498 2023-07-08 08:24:22.455504 agrero A008915559 R rec d635f09a-860e-4fc2-9c37-bd309f3e3d56 -2023-07-08 08:24:22.530985 2023-07-08 08:24:22.530991 agrero A008943784 R rec b01bf2ef-7600-421c-a14d-4325f7397f80 -2023-07-08 08:24:22.592663 2023-07-08 08:24:22.592672 agrero A008959724 R rec acaf3d62-f57b-4558-9fd7-f35c87e3a30e -2023-07-08 08:24:22.657096 2023-07-08 08:24:22.657101 agrero A008978887 R rec cff3d593-4a0d-4e2f-87d6-abbc5581245f -2023-07-08 08:24:22.722091 2023-07-08 08:24:22.722097 agrero A009007993 R rec 8187ee77-845c-4ba1-b05f-bc1bdc4186c5 -2023-07-08 08:24:22.795772 2023-07-08 08:24:22.795778 agrero A009035130 R rec eb07f32b-6b90-4a42-841c-8f1f0cbfd36b -2023-07-08 08:24:22.865965 2023-07-08 08:24:22.865974 agrero A009047642 R rec ab287f8e-9be8-466d-a26d-4fa5f7ef23d6 -2023-07-08 08:24:22.937307 2023-07-08 08:24:22.937316 agrero A009059078 R rec 929d0f0a-47ff-4f3f-8dc4-4dd30fc61f93 -2023-07-08 08:24:23.012136 2023-07-08 08:24:23.012142 agrero A009061697 R rec d6c9f43d-d905-433f-8f34-9ca7f3f52ec7 -2023-07-08 08:24:23.082977 2023-07-08 08:24:23.082983 agrero A009062623 R rec 2218bc3f-478d-4ed2-914e-b218244a2809 -2023-07-08 08:24:23.148819 2023-07-08 08:24:23.148825 agrero A009084334 R rec e6d7f717-385d-4215-9414-28517c39fd9b -2023-07-08 08:24:23.233269 2023-07-08 08:24:23.233275 agrero A009106239 R rec bd523df0-b89c-4b0d-b486-35f9cc89c025 -2023-07-08 08:24:23.313889 2023-07-08 08:24:23.313894 agrero A009112861 R rec 4c12fa49-3b4e-48a8-bff9-86ec5a8aee99 -2023-07-08 08:24:23.397192 2023-07-08 08:24:23.397207 agrero A009177536 R rec a5a5671d-d351-4215-bb32-1abc8205a0e3 -2023-07-08 08:24:23.472982 2023-07-08 08:24:23.472989 agrero A009187240 R rec 8c2b2ce1-ddbd-401d-8927-de02d8cbfe34 -2023-07-08 08:24:23.562065 2023-07-08 08:24:23.56208 agrero A009191402 R rec 3eadae25-4d7e-40f7-9ccb-38da15e8a30d -2023-07-08 08:24:23.645687 2023-07-08 08:24:23.645697 agrero A009191855 R rec 3fe7c1f0-1564-4b29-bcd1-f2e0ba7dfeea -2023-07-08 08:24:23.729748 2023-07-08 08:24:23.729754 agrero A009279090 R rec f96118e8-479b-4a90-bf19-5a4d407111e6 -2023-07-08 08:24:23.822036 2023-07-08 08:24:23.822042 agrero A009281447 R rec 80057019-e06c-4071-85e3-484fa5d739b5 -2023-07-08 08:24:23.910609 2023-07-08 08:24:23.910625 agrero A009303631 R rec 8926033b-87c5-4f11-ac42-3a57d99e6f33 -2023-07-08 08:24:24.001865 2023-07-08 08:24:24.001871 agrero A009306109 R rec 6d37fbc5-898a-4394-b4e4-05c4ebbc33db -2023-07-08 08:24:24.103314 2023-07-08 08:24:24.103325 agrero A009309124 R rec 934eda12-8ece-42f6-aef4-721073b7a589 -2023-07-08 08:24:24.194731 2023-07-08 08:24:24.194746 agrero A009315376 R rec 26f344e3-3f22-4ec4-b890-1bf8e24ce9f8 -2023-07-08 08:24:24.269146 2023-07-08 08:24:24.269161 agrero A009341300 R rec db0a18f1-b5c3-474d-989c-9aca75576333 -2023-07-08 08:24:24.357072 2023-07-08 08:24:24.357084 agrero A009366379 R rec b3e1bcbe-56cc-4b0a-8221-ced79802ab2d -2023-07-08 08:24:24.442859 2023-07-08 08:24:24.442872 agrero A009366743 R rec 9e48664a-ff45-4968-8826-9d5c9aedf58d -2023-07-08 08:24:24.524283 2023-07-08 08:24:24.5243 agrero A009390744 R rec c6ba0647-c1b3-4ef5-b42e-faa6eca59c18 -2023-07-08 08:24:24.615558 2023-07-08 08:24:24.615571 agrero A009403017 R rec 79ed2261-23d9-41e3-9bc1-4e05c78f468f -2023-07-08 08:24:24.697808 2023-07-08 08:24:24.697814 agrero A009426238 R rec bddaf017-9da6-4be5-9ccd-42ec84cba5c2 -2023-07-08 08:24:24.771049 2023-07-08 08:24:24.771055 agrero A009431913 R rec f41dcdb9-c44f-41a2-8785-a9c75d222f02 -2023-07-08 08:24:24.862537 2023-07-08 08:24:24.862555 agrero A009476519 R rec 45296749-106e-4d39-b555-6d24330ec5f5 -2023-07-08 08:24:24.944938 2023-07-08 08:24:24.944949 agrero A009505580 R rec c8111029-c460-448c-a215-a85c6265f48e -2023-07-08 08:24:25.03059 2023-07-08 08:24:25.030598 agrero A009519020 R rec c07dcfc0-5fcf-43e1-bca3-ff947ee592cf -2023-07-08 08:24:25.109681 2023-07-08 08:24:25.109692 agrero A009523157 R rec de8974df-c861-44aa-8024-2a78b326f4b8 -2023-07-08 08:24:25.197286 2023-07-08 08:24:25.197303 agrero A009541958 R rec 96b7f48d-a7d3-484f-b1af-95e7a2824532 -2023-07-08 08:24:25.279636 2023-07-08 08:24:25.279647 agrero A009544653 R rec bce6790f-3b02-415c-8756-28e19d73cf08 -2023-07-08 08:24:25.369036 2023-07-08 08:24:25.369048 agrero A009546303 R rec ba7fd74f-de05-4efd-bd05-70a4d0b78828 -2023-07-08 08:24:25.463761 2023-07-08 08:24:25.463773 agrero A009587127 R rec 04353d18-c40b-4147-9434-85b0435a6317 -2023-07-08 08:24:25.543287 2023-07-08 08:24:25.543298 agrero A009590113 R rec 62885e58-d31e-4ad3-af45-a0ce7db5b0b5 -2023-07-08 08:24:25.642428 2023-07-08 08:24:25.642435 agrero A009621407 R rec 61990230-6b20-4839-af42-d14aa351349e -2023-07-08 08:24:25.733048 2023-07-08 08:24:25.733054 agrero A009631364 R rec d614fc9a-a797-44bb-ba4e-4b1d3b536910 -2023-07-08 08:24:25.8085 2023-07-08 08:24:25.808519 agrero A009639453 R rec 67a1d3db-2b2e-4af9-9408-c5a0e5f4bc39 -2023-07-08 08:24:25.894756 2023-07-08 08:24:25.894773 agrero A009643309 R rec 7aa8eaaa-9cad-4493-b496-794d899fb6b4 -2023-07-08 08:24:25.978914 2023-07-08 08:24:25.97892 agrero A009673075 R rec fa7b4460-1386-4ee2-8095-ecbfd2fc16b2 -2023-07-08 08:24:26.070221 2023-07-08 08:24:26.070229 agrero A009687650 R rec aa2b804b-b91a-4a8a-92fb-3ea37e392403 -2023-07-08 08:24:26.16193 2023-07-08 08:24:26.161942 agrero A009754386 R rec dd1a7bbf-8160-4644-9532-dd9ce6ac2d32 -2023-07-08 08:24:26.236409 2023-07-08 08:24:26.236414 agrero A009973428 R rec f8f3d8dd-ead4-4e64-aeb7-1e274f0d70a0 -2023-07-08 08:24:26.310684 2023-07-08 08:24:26.3107 agrero A009989567 R rec eb9e5711-58bf-4847-ad4e-53030ea3188f -2023-07-08 08:24:26.398527 2023-07-08 08:24:26.398539 agrero A010006868 R rec 81031b64-952a-44e0-8a33-8c7c7ad1395e -2023-07-08 08:24:26.489217 2023-07-08 08:24:26.489231 agrero A010043080 R rec 2d702931-5c74-4d82-869a-39dc4440fa42 -2023-07-08 08:24:26.579752 2023-07-08 08:24:26.579764 agrero A010073993 R rec 3691bbdd-b6b4-49ee-b703-dcd05c69f823 -2023-07-08 08:24:26.679909 2023-07-08 08:24:26.679921 agrero A010086586 R rec 160e0825-e1db-419a-a0d8-268bcb69c122 -2023-07-08 08:24:26.761182 2023-07-08 08:24:26.761188 agrero A010104035 R rec 75bd7bed-4b25-438c-b86a-27f61aba325a -2023-07-08 08:24:26.852912 2023-07-08 08:24:26.852927 agrero A010152644 R rec 39aee56c-f7d2-4bd0-bc8e-8b1d314aca85 -2023-07-08 08:24:26.93857 2023-07-08 08:24:26.93858 agrero A010154587 R rec f0785464-f60c-4cb7-abdb-051c8d55d6d3 -2023-07-08 08:24:27.028312 2023-07-08 08:24:27.028317 agrero A010176792 R rec ad4c9a72-6373-46e2-84fe-49d763cc32e0 -2023-07-08 08:24:27.127829 2023-07-08 08:24:27.12784 agrero A010219336 R rec 570c2afb-8055-4b7a-98c0-7634a089176a -2023-07-08 08:24:27.230899 2023-07-08 08:24:27.230943 agrero A010244192 R rec ac79e59f-f820-408f-ac46-10c2d8f8788b -2023-07-08 08:24:27.309691 2023-07-08 08:24:27.309703 agrero A010938873 R rec d09b6f30-c128-46ee-a557-f98f87710b0a -2023-07-08 08:24:27.422227 2023-07-08 08:24:27.422233 agrero A010941010 R rec 5fa079b4-fb48-40f0-8cdb-9467f933d23e -2023-07-08 08:24:27.52571 2023-07-08 08:24:27.525726 agrero A010941759 R rec c376897b-cff7-49b7-966a-a5bf75681d49 -2023-07-08 08:24:27.620321 2023-07-08 08:24:27.620327 agrero A010952913 R rec b0b77bf4-5697-4969-85d8-afd618578888 -2023-07-08 08:24:27.706524 2023-07-08 08:24:27.706536 agrero A010959260 R rec 2ac6411a-cbd4-45b3-964b-327b36f41039 -2023-07-08 08:24:27.786479 2023-07-08 08:24:27.786489 agrero A011007424 R rec 520ff612-4012-4e54-ad04-6b26449a74e2 -2023-07-08 08:24:27.896421 2023-07-08 08:24:27.896435 agrero A011038799 R rec 079b25f3-e008-4a01-9cac-12b4f29e4800 -2023-07-08 08:24:27.983304 2023-07-08 08:24:27.983315 agrero A011078595 R rec d0f6ade5-c625-4aff-b373-6bf8103d752e -2023-07-08 08:24:28.06367 2023-07-08 08:24:28.063675 agrero A011089656 R rec 1f64d676-f7f7-4d51-9b55-62f6b1ca6a1a -2023-07-08 08:24:28.148533 2023-07-08 08:24:28.148544 agrero A011095417 R rec e189a88e-55aa-4948-b012-5f1a3e863ba1 -2023-07-08 08:24:28.246469 2023-07-08 08:24:28.246475 agrero A011106617 R rec e4212dd9-9693-46ed-8863-522e979fcffe -2023-07-08 08:24:28.336191 2023-07-08 08:24:28.336201 agrero A011113114 R rec 0696955a-7260-4958-aab5-b6cc75056970 -2023-07-08 08:24:28.435573 2023-07-08 08:24:28.435585 agrero A011132692 R rec 3cc2fae3-bc18-44e9-a7c0-05b9845108fd -2023-07-08 08:24:28.535656 2023-07-08 08:24:28.535666 agrero A011151957 R rec ae137769-5d75-4dd2-b5c7-cd15025a7100 -2023-07-08 08:24:28.637742 2023-07-08 08:24:28.637748 agrero A011157710 R rec ff051420-7bcf-4aac-9e3f-c11c6ea3d229 -2023-07-08 08:24:28.731011 2023-07-08 08:24:28.731027 agrero A011241983 R rec 171feec9-39ec-450f-b597-4db36d99f476 -2023-07-08 08:24:28.832489 2023-07-08 08:24:28.832501 agrero A011363373 R rec e526d66a-e16d-420c-9e5e-f64f547bcc6d -2023-07-08 08:24:28.923285 2023-07-08 08:24:28.923292 agrero A011377115 R rec 745ebc48-3ff7-4aa9-a7ed-dbf8915401e3 -2023-07-08 08:24:29.006222 2023-07-08 08:24:29.006229 agrero A011383290 R rec 4c3633f6-c7c0-40f9-bf32-f5efe268219e -2023-07-08 08:24:29.101785 2023-07-08 08:24:29.101791 agrero A011384771 R rec 7afe095c-7afa-4982-92cc-cba8a2422480 -2023-07-08 08:24:29.197203 2023-07-08 08:24:29.197214 agrero A011412011 R rec 2be5f8db-601e-487a-9770-08184c0d3d2a -2023-07-08 08:24:29.2734 2023-07-08 08:24:29.273411 agrero A011417162 R rec c6516c0f-955d-4b10-907e-11966818bae9 -2023-07-08 08:24:29.373542 2023-07-08 08:24:29.373554 agrero A011417535 R rec 610379bb-136c-4162-aa00-4134df05270c -2023-07-08 08:24:29.456679 2023-07-08 08:24:29.456688 agrero A011464222 R rec d7de7990-f322-40ad-b6c7-7c370ed35743 -2023-07-08 08:24:29.538592 2023-07-08 08:24:29.538597 agrero A011466531 R rec 59394b9f-5084-4733-ba4e-78c7b5b567bb -2023-07-08 08:24:29.634255 2023-07-08 08:24:29.634276 agrero A011466589 R rec 97ec5375-7e82-4893-8594-392b707ac4a5 -2023-07-08 08:24:29.735813 2023-07-08 08:24:29.735818 agrero A011493066 R rec 6ae74917-1f13-4dca-8801-1ad31bd5402b -2023-07-08 08:24:29.821763 2023-07-08 08:24:29.821771 agrero A011558774 R rec ab3c0da4-1b8f-440d-bf93-d168161a7b47 -2023-07-08 08:24:29.913817 2023-07-08 08:24:29.913829 agrero A011591041 R rec e60f5e02-5909-4df6-9223-bdafcfec167a -2023-07-08 08:24:29.9992 2023-07-08 08:24:29.999205 agrero A011627404 R rec 05be9d1c-95ce-4e64-8d2e-e8734dabec64 -2023-07-08 08:24:30.08444 2023-07-08 08:24:30.084452 agrero A011674667 R rec 7910db8e-2f67-4cf1-b5b2-e3b2a05fba78 -2023-07-08 08:24:30.183285 2023-07-08 08:24:30.1833 agrero A011686664 R rec 13fd7e97-fe11-4440-99a9-f0fe30f89aa7 -2023-07-08 08:24:30.279339 2023-07-08 08:24:30.279351 agrero A011733730 R rec 7e8c4df8-5de7-4035-bf34-e9b5104cf21d -2023-07-08 08:24:30.379741 2023-07-08 08:24:30.379753 agrero A011736857 R rec f85d58d3-d6e4-484b-b9f0-335e60a02bb4 -2023-07-08 08:24:30.48365 2023-07-08 08:24:30.483662 agrero A011743931 R rec e4af76d2-21f0-49e4-a0d7-48b048ce1bc0 -2023-07-08 08:24:30.571266 2023-07-08 08:24:30.571272 agrero A011755738 R rec 15e8486c-250e-41e5-953e-d9d770b6c772 -2023-07-08 08:24:30.666136 2023-07-08 08:24:30.666157 agrero A011817228 R rec 11ec5e16-ab9c-4d23-bda7-241ea596a8cb -2023-07-08 08:24:30.860896 2023-07-08 08:24:30.860902 agrero A011818787 R rec 0e319145-d371-4da2-b9d8-d6e8521e6d81 -2023-07-08 08:24:30.95334 2023-07-08 08:24:30.953353 agrero A011831186 R rec ec1ff979-92ca-4723-869a-821c65b9c088 -2023-07-08 08:24:31.047996 2023-07-08 08:24:31.048002 agrero A011875062 R rec d966c221-a4d4-4025-9c5d-95b4fd900b21 -2023-07-08 08:24:31.136717 2023-07-08 08:24:31.136728 agrero A011896248 R rec 7ab213aa-c8dd-4d23-aa40-4a57e42accff -2023-07-08 08:24:31.229053 2023-07-08 08:24:31.229065 agrero A011919031 R rec 12e4a57e-fffc-4ba7-af2c-4df47ef94494 -2023-07-08 08:24:31.301711 2023-07-08 08:24:31.301724 agrero A011935041 R rec f2d55d20-55e5-4308-87ea-6ac801bbe4da -2023-07-08 08:24:31.386315 2023-07-08 08:24:31.386331 agrero A011951291 R rec 97984114-65d2-4b07-af83-d604382f3ef6 -2023-07-08 08:24:31.486514 2023-07-08 08:24:31.486526 agrero A011958684 R rec ec19e00f-be15-4099-93f2-080aac641ab9 -2023-07-08 08:24:31.580663 2023-07-08 08:24:31.580675 agrero A011959589 R rec fcd74d9b-58d3-4fd9-b021-069006afb8ff -2023-07-08 08:24:31.683828 2023-07-08 08:24:31.68384 agrero A011961159 R rec 6ef6cadd-bac1-4992-9a99-dfbafc3dec4c -2023-07-08 08:24:31.77131 2023-07-08 08:24:31.771322 agrero A011964957 R rec 9b14a5ab-baee-4566-8718-bd97227570b4 -2023-07-08 08:24:31.883721 2023-07-08 08:24:31.883733 agrero A011971216 R rec 61befca7-a127-4aae-b2a1-723a66711e73 -2023-07-08 08:24:31.986859 2023-07-08 08:24:31.986871 agrero A011981174 R rec e57d9f8c-1f61-4e58-bc47-65c52178bfac -2023-07-08 08:24:32.079704 2023-07-08 08:24:32.07971 agrero A011983307 R rec aede8080-36d9-4a01-a8b9-124ec1551e8d -2023-07-08 08:24:32.18321 2023-07-08 08:24:32.18322 agrero A011992966 R rec c8cc76f7-aaa2-4dbb-a13f-3f4d2aa02410 -2023-07-08 08:24:32.271305 2023-07-08 08:24:32.271319 agrero A012003599 R rec 54b16379-38c2-40ab-b40c-1acf9a0ec06c -2023-07-08 08:24:32.358496 2023-07-08 08:24:32.358501 agrero A012045391 R rec 33863d8f-ac2c-414d-a649-a9aa6be83d62 -2023-07-08 08:24:32.443425 2023-07-08 08:24:32.44343 agrero A012045625 R rec d553e3db-c92a-4dd3-88ee-a64d2492418b -2023-07-08 08:24:32.535198 2023-07-08 08:24:32.53521 agrero A012053752 R rec 957920ba-d49a-4acf-935d-f0d65e11fe4a -2023-07-08 08:24:32.620171 2023-07-08 08:24:32.620187 agrero A012086274 R rec 314b7237-e59f-4ad3-9bba-4afbad035233 -2023-07-08 08:24:32.726683 2023-07-08 08:24:32.72669 agrero A012098479 R rec df29fe79-85f3-4f2a-92ac-7b062393b253 -2023-07-08 08:24:32.810574 2023-07-08 08:24:32.810581 agrero A012105454 R rec 8002954c-1fb4-453b-b1d9-11058fed12bd -2023-07-08 08:24:32.899695 2023-07-08 08:24:32.899715 agrero A012128366 R rec 23d4fdf5-c91d-41f9-8c76-3387074a1c03 -2023-07-08 08:24:32.988036 2023-07-08 08:24:32.988048 agrero A012136328 R rec 9db5958c-d225-4b66-9561-8a78337ad9a3 -2023-07-08 08:24:33.079481 2023-07-08 08:24:33.079487 agrero A012311534 R rec 06aca602-57ba-4697-8005-186493484c4e -2023-07-08 08:24:33.181294 2023-07-08 08:24:33.181306 agrero A012313581 R rec 940c428c-dc52-4fd6-9320-1985dcd56a81 -2023-07-08 08:24:33.278225 2023-07-08 08:24:33.278234 agrero A012313815 R rec ec4c0a78-ac45-49e7-8b28-9a141a16a36d -2023-07-08 08:24:33.382087 2023-07-08 08:24:33.382098 agrero A012315468 R rec f6ed0b01-94de-4a19-b198-b0c848340a28 -2023-07-08 08:24:33.478786 2023-07-08 08:24:33.478793 agrero A012322962 R rec e7e8377f-9b12-4e5e-8e93-5851f245e33f -2023-07-08 08:24:33.580352 2023-07-08 08:24:33.580362 agrero A012323710 R rec 27bf269a-84a4-4f6f-96a4-7576bbe405d8 -2023-07-08 08:24:33.667854 2023-07-08 08:24:33.667865 agrero A012325371 R rec ce9e981f-6aa1-4514-b8bf-d666e1c8ebb3 -2023-07-08 08:24:33.767986 2023-07-08 08:24:33.768003 agrero A012329066 R rec 8b774daf-db0b-4ea2-8d85-0316ea074149 -2023-07-08 08:24:33.86252 2023-07-08 08:24:33.862532 agrero A012332893 R rec 76f96c34-3e53-44c0-adcc-3dad7b39bf79 -2023-07-08 08:24:33.948749 2023-07-08 08:24:33.948764 agrero A012335428 R rec 0b7d4a87-6ba0-4306-83ce-8d236bd4cafd -2023-07-08 08:24:34.039867 2023-07-08 08:24:34.039872 agrero A012338211 R rec 509a40f3-d756-4e74-99f2-0e7174718386 -2023-07-08 08:24:34.145606 2023-07-08 08:24:34.145613 agrero A012343378 R rec 8e292923-839f-4642-91d7-6ea5a2ef2dce -2023-07-08 08:24:34.232577 2023-07-08 08:24:34.232588 agrero A012346177 R rec 22cb3040-7596-4312-8602-1cda5d04be23 -2023-07-08 08:24:34.313824 2023-07-08 08:24:34.313835 agrero A012346982 R rec ba78f7a0-3f5b-4ca0-8ee7-558d8226ad1c -2023-07-08 08:24:34.419874 2023-07-08 08:24:34.419886 agrero A012349826 R rec 2728ed2d-e372-4311-88e6-db40def0c561 -2023-07-08 08:24:34.513315 2023-07-08 08:24:34.513326 agrero A012350932 R rec c842296b-7ecc-4492-aa3b-f32acc149011 -2023-07-08 08:24:34.598117 2023-07-08 08:24:34.598128 agrero A012352585 R rec 38edbf6a-90cb-43e9-a577-379f0462b328 -2023-07-08 08:24:34.695909 2023-07-08 08:24:34.69592 agrero A012353728 R rec f40eb909-1a42-45e3-b350-0427e005e949 -2023-07-08 08:24:34.78439 2023-07-08 08:24:34.784404 agrero A012366684 R rec d7853a52-8c05-4f97-a227-6b6e1d4ecc3d -2023-07-08 08:24:34.8845 2023-07-08 08:24:34.884512 agrero A012368293 R rec d2fb224b-ad5c-450a-9e7b-a184ccd97d24 -2023-07-08 08:24:34.982922 2023-07-08 08:24:34.982934 agrero A012368815 R rec b3cb3d5e-bfff-4720-aa3e-4241fc46a77e -2023-07-08 08:24:35.073696 2023-07-08 08:24:35.073701 agrero A012371308 R rec d19ea5b3-b1ab-4826-a199-59823a6fca06 -2023-07-08 08:24:35.162018 2023-07-08 08:24:35.162025 agrero A012374691 R rec 08806bd6-bdce-4197-b32f-177de2c61626 -2023-07-08 08:24:35.247691 2023-07-08 08:24:35.2477 agrero A012374741 R rec 6902dcff-cf3f-4873-a2f4-4ee9e33cd897 -2023-07-08 08:24:35.332278 2023-07-08 08:24:35.332294 agrero A012377358 R rec 77b3423d-f390-4a27-a146-5d740936d3cb -2023-07-08 08:24:35.434164 2023-07-08 08:24:35.434174 agrero A012377584 R rec ab647696-0612-4693-a23e-528d14ad5a2b -2023-07-08 08:24:35.53064 2023-07-08 08:24:35.530647 agrero A012378544 R rec 139be5ad-9a38-4421-8c0e-fe99973652b6 -2023-07-08 08:24:35.628527 2023-07-08 08:24:35.628534 agrero A012385634 R rec c20a0990-027d-4f5a-9d7f-90f08a5025a8 -2023-07-08 08:24:35.731128 2023-07-08 08:24:35.731134 agrero A012387266 R rec 06afa9f0-1b68-4b08-9222-d01ae8b9870c -2023-07-08 08:24:35.843544 2023-07-08 08:24:35.843549 agrero A012387358 R rec c9528999-ccb4-4a50-a485-71ff7adc5b67 -2023-07-08 08:24:35.9444 2023-07-08 08:24:35.944405 agrero A012387899 R rec 5ddbbbcb-16b1-4759-92e9-318314a853b0 -2023-07-08 08:24:36.042623 2023-07-08 08:24:36.042629 agrero A012388774 R rec 091c83bf-84f5-4006-8cfb-491b4d1eb7f4 -2023-07-08 08:24:36.161159 2023-07-08 08:24:36.161165 agrero A012388884 R rec 72121f13-6ead-40b3-8727-74a96c81871c -2023-07-08 08:24:36.249216 2023-07-08 08:24:36.249222 agrero A012390212 R rec 396e60ff-2902-4711-a138-ba2f1f1eb8dd -2023-07-08 08:24:36.325917 2023-07-08 08:24:36.325923 agrero A012391465 R rec fac7a575-f894-4dba-b047-2017ac823019 -2023-07-08 08:24:36.426937 2023-07-08 08:24:36.426943 agrero A012393385 R rec ca5a1327-c307-4f99-a3ad-2c0338e532e0 -2023-07-08 08:24:36.539418 2023-07-08 08:24:36.53943 agrero A012394672 R rec f468cf9c-2bce-4603-98ba-6c28b47f1cf5 -2023-07-08 08:24:36.612281 2023-07-08 08:24:36.612288 agrero A012396940 R rec e89523d9-4ffb-4689-a03b-bcf1ed8fd25e -2023-07-08 08:24:36.713827 2023-07-08 08:24:36.713833 agrero A012397510 R rec 2b0781e7-ae40-4398-b28d-df910a60970a -2023-07-08 08:24:36.790591 2023-07-08 08:24:36.790602 agrero A012402163 R rec cc70b8fd-cd40-460e-84c7-5cf3344f9866 -2023-07-08 08:24:36.878541 2023-07-08 08:24:36.878548 agrero A012406670 R rec ef5a343e-42ee-4800-a694-3320eaa3a26c -2023-07-08 08:24:36.967348 2023-07-08 08:24:36.967359 agrero A012408608 R rec ddb03887-3e18-4fdd-9e30-9e96ea0cc96c -2023-07-08 08:24:37.087892 2023-07-08 08:24:37.087902 agrero A012409616 R rec fac2ac30-6f07-48a8-81e5-06ce012c8dd0 -2023-07-08 08:24:37.179277 2023-07-08 08:24:37.179282 agrero A012409972 R rec a6ff34f0-9aa5-4213-887e-49c28e95ca99 -2023-07-08 08:24:37.27257 2023-07-08 08:24:37.272581 agrero A012416360 R rec 11a5ca50-c55a-4fde-8430-911bf47bedfa -2023-07-08 08:24:37.365292 2023-07-08 08:24:37.365307 agrero A012416378 R rec 8ec0c828-8bd0-4625-a83a-ff5a278a8149 -2023-07-08 08:24:37.45953 2023-07-08 08:24:37.459542 agrero A012416611 R rec 96ed9989-b87d-4320-8575-f7fa29114bc3 -2023-07-08 08:24:37.551533 2023-07-08 08:24:37.551545 agrero A012417107 R rec a565ed03-33e7-4471-9dcf-f47e514a967f -2023-07-08 08:24:37.658241 2023-07-08 08:24:37.658258 agrero A012417957 R rec 8e0cf972-2a82-4e8e-a208-16ffd396fbb8 -2023-07-08 08:24:37.749709 2023-07-08 08:24:37.749715 agrero A012418542 R rec 496d3279-b0c8-44ef-bba3-e63f95b89552 -2023-07-08 08:24:37.841577 2023-07-08 08:24:37.841589 agrero A012419821 R rec 14acadfd-f8f6-436d-8218-c85384178579 -2023-07-08 08:24:37.949483 2023-07-08 08:24:37.949488 agrero A012419929 R rec 59e861c2-d8d8-4cbb-93b9-968f3d21c813 -2023-07-08 08:24:38.055134 2023-07-08 08:24:38.055139 agrero A012425753 R rec 3f90a1b9-7e7d-428b-9b64-8bfad880d5ae -2023-07-08 08:24:38.138984 2023-07-08 08:24:38.138997 agrero A012427298 R rec b3a213f3-c544-4090-a472-c442354af12d -2023-07-08 08:24:38.241001 2023-07-08 08:24:38.241018 agrero A012430693 R rec 2c02188c-ce10-43f5-aee7-8095e19ae016 -2023-07-08 08:24:38.345571 2023-07-08 08:24:38.345578 agrero A012431216 R rec 567f0040-5745-4cc9-8582-c5a7a867f176 -2023-07-08 08:24:38.450133 2023-07-08 08:24:38.450145 agrero A012431876 R rec 3eef4d92-aa2d-4dd1-8f5f-31a2a1f4315f -2023-07-08 08:24:38.56784 2023-07-08 08:24:38.567851 agrero A012432065 R rec 00bab439-7fd8-4b04-a12a-22623e5ebc3f -2023-07-08 08:24:38.6549 2023-07-08 08:24:38.654912 agrero A012435871 R rec b5e5a116-9aed-42e7-84ee-2b21a2e7fec3 -2023-07-08 08:24:38.738806 2023-07-08 08:24:38.738821 agrero A012437354 R rec 46bebc32-5f35-4952-adf3-9645a459a7d1 -2023-07-08 08:24:38.836434 2023-07-08 08:24:38.836446 agrero A012440656 R rec 1625889c-0231-4678-84ba-492e772d12e0 -2023-07-08 08:24:38.935394 2023-07-08 08:24:38.935411 agrero A012442567 R rec 201490bb-4396-49a0-b531-b1bebcff7120 -2023-07-08 08:24:39.022447 2023-07-08 08:24:39.022452 agrero A012442717 R rec c4d91390-44db-4d1f-b498-fe25ef4a292a -2023-07-08 08:24:39.148608 2023-07-08 08:24:39.148614 agrero A012443563 R rec 8e7617c1-628e-48e6-94d0-602a1e4a2219 -2023-07-08 08:24:39.221015 2023-07-08 08:24:39.221021 agrero A012448425 R rec 9f3b03d7-4626-4edc-9112-f3d9ba58a9b4 -2023-07-08 08:24:39.288906 2023-07-08 08:24:39.288912 agrero A012454917 R rec 1e81ab06-401d-4e41-a1b6-7a7f5c19723a -2023-07-08 08:24:39.348588 2023-07-08 08:24:39.348594 agrero A012457267 R rec d5aca790-6947-4ca9-8ae6-fb0075b9115a -2023-07-08 08:24:39.420267 2023-07-08 08:24:39.420272 agrero A012457605 R rec 6beb4a2d-51d3-4a61-9a47-ed7070651bde -2023-07-08 08:24:39.495278 2023-07-08 08:24:39.495284 agrero A012460208 R rec b7ccec0e-18fb-43b0-839b-ba12dd9ffdef -2023-07-08 08:24:39.580802 2023-07-08 08:24:39.580807 agrero A012462643 R rec 3f1cb93e-90de-48f1-b38a-cdf020815271 -2023-07-08 08:24:39.672796 2023-07-08 08:24:39.672815 agrero A012465613 R rec f8c79703-25e1-47ca-a2c0-ed06943d8506 -2023-07-08 08:24:39.765732 2023-07-08 08:24:39.765738 agrero A012468081 R rec a5ceadf4-b1dc-4997-8be1-2fba8648ceed -2023-07-08 08:24:39.827849 2023-07-08 08:24:39.827854 agrero A012468192 R rec 17b88723-3fc9-4c0d-ab5a-13174ac27669 -2023-07-08 08:24:39.893558 2023-07-08 08:24:39.893563 agrero A012470496 R rec 5ad5df17-bec6-4038-b200-3b99e58bfe18 -2023-07-08 08:24:39.970436 2023-07-08 08:24:39.970452 agrero A012470564 R rec a4fe8d7d-efab-45e3-968a-bbe603e0d06d -2023-07-08 08:24:40.073691 2023-07-08 08:24:40.073697 agrero A012470848 R rec 635b7d4d-eeac-4d20-9c97-cfde431e19ed -2023-07-08 08:24:40.172293 2023-07-08 08:24:40.172309 agrero A012473809 R rec 4426651e-7556-41a6-b3ed-a8b1026841b1 -2023-07-08 08:24:40.262814 2023-07-08 08:24:40.262823 agrero A012474515 R rec 2d94fdd3-80d7-4d45-9adf-751caf2b471b -2023-07-08 08:24:40.329389 2023-07-08 08:24:40.329394 agrero A012479271 R rec 56533463-fec3-4ad6-942d-bbd864dddd9d -2023-07-08 08:24:40.415878 2023-07-08 08:24:40.41589 agrero A012480008 R rec 0f1789bc-8520-4d36-b2a5-1eb7d4705a32 -2023-07-08 08:24:40.500902 2023-07-08 08:24:40.500914 agrero A012480139 R rec b15ced40-b06e-4b2c-ad96-12712d491f06 -2023-07-08 08:24:40.59472 2023-07-08 08:24:40.594733 agrero A012484207 R rec 7444a49e-7f7a-449a-b61a-ec8d8344e6df -2023-07-08 08:24:40.694342 2023-07-08 08:24:40.694356 agrero A012487640 R rec e2d19a2a-0ea3-49b8-8d89-8021b6e38a13 -2023-07-08 08:24:40.767993 2023-07-08 08:24:40.768 agrero A012487887 R rec 63ac5d70-660a-4136-9b37-2559d8aa8d71 -2023-07-08 08:24:40.841048 2023-07-08 08:24:40.841064 agrero A012488018 R rec 19e070f6-b51e-4853-a0e2-9aa599b0b3f3 -2023-07-08 08:24:40.936172 2023-07-08 08:24:40.936188 agrero A012489633 R rec 5ff34bd8-607a-4193-b25e-31bbea01813f -2023-07-08 08:24:41.019121 2023-07-08 08:24:41.019127 agrero A012490094 R rec bbed1a05-381a-4ba8-88fa-b90d32fdfbb3 -2023-07-08 08:24:41.093456 2023-07-08 08:24:41.095647 agrero A012493490 R rec 650f444f-5710-4a93-b803-6331d4316888 -2023-07-08 08:24:41.191675 2023-07-08 08:24:41.191691 agrero A012494600 R rec 4ec1b530-fde2-4f21-aef1-14d6968d581d -2023-07-08 08:24:41.279356 2023-07-08 08:24:41.279361 agrero A012495733 R rec 629bd77e-af17-4f55-8728-17f061f4c064 -2023-07-08 08:24:41.35864 2023-07-08 08:24:41.358656 agrero A012497106 R rec 4c48d4ae-4f36-4785-bffb-afc0c0b368d3 -2023-07-08 08:24:41.446824 2023-07-08 08:24:41.446836 agrero A012497126 R rec 66cd8a69-c735-4e5d-8da6-b4f669fc5325 -2023-07-08 08:24:41.534672 2023-07-08 08:24:41.534685 agrero A012497225 R rec e1279237-9060-416c-a862-b9a70145f6e1 -2023-07-08 08:24:41.617005 2023-07-08 08:24:41.617024 agrero A012498346 R rec f46c84f7-d566-4187-b719-4daec6ce6254 -2023-07-08 08:24:41.718222 2023-07-08 08:24:41.718236 agrero A012506176 R rec a20d6724-68ae-4a39-b47c-c3629be2e419 -2023-07-08 08:24:41.802738 2023-07-08 08:24:41.80275 agrero A012506256 R rec cdaa17bd-ffc2-4c71-846b-cabf4cc503e6 -2023-07-08 08:24:41.897719 2023-07-08 08:24:41.89773 agrero A012506339 R rec 2e17f4b5-9303-403d-88e2-09f0fed7f27c -2023-07-08 08:24:41.985449 2023-07-08 08:24:41.985459 agrero A012506877 R rec 12c5d409-2e91-4664-bd00-cf27efd9efa6 -2023-07-08 08:24:42.091033 2023-07-08 08:24:42.091036 agrero A012507478 R rec 59fd21cc-e67d-4615-9784-4335a7d04096 -2023-07-08 08:24:42.194181 2023-07-08 08:24:42.194192 agrero A012508085 R rec 71dc286a-7d90-49e4-b8ff-06f5fd1f1b97 -2023-07-08 08:24:42.288426 2023-07-08 08:24:42.288439 agrero A012508468 R rec 9a34f91f-faff-4150-822f-b119cde90e96 -2023-07-08 08:24:42.418438 2023-07-08 08:24:42.418451 agrero A012508709 R rec 99b37f8b-7aba-4a40-9d06-964b8cbe5b2b -2023-07-08 08:24:42.506024 2023-07-08 08:24:42.506036 agrero A012509199 R rec c79a5084-a398-4fa2-9e19-89a1a8c654fe -2023-07-08 08:24:42.612461 2023-07-08 08:24:42.612473 agrero A012512864 R rec 7dc4e7d7-376e-4ad9-ba07-d3cef5fd6e50 -2023-07-08 08:24:42.705008 2023-07-08 08:24:42.70502 agrero A012513294 R rec fa4a806f-defb-4e95-a73b-24a089fcb86c -2023-07-08 08:24:42.793378 2023-07-08 08:24:42.793386 agrero A012517704 R rec ccfac04c-0207-4424-ab31-09822117e816 -2023-07-08 08:24:42.885768 2023-07-08 08:24:42.88578 agrero A012518029 R rec 5bc6b340-1d4d-4a34-be33-acc61b432111 -2023-07-08 08:24:42.973603 2023-07-08 08:24:42.973614 agrero A012519806 R rec dbe720c1-3e89-482e-a03b-2c5cc7f85a3e -2023-07-08 08:24:43.060874 2023-07-08 08:24:43.060884 agrero A012523458 R rec 9a270100-c8c8-4952-aa68-35dbba9df450 -2023-07-08 08:24:43.138343 2023-07-08 08:24:43.138354 agrero A012525949 R rec af18277f-7c12-4a7e-bdca-0764419c9355 -2023-07-08 08:24:43.245854 2023-07-08 08:24:43.245865 agrero A012525951 R rec 1413ce73-136b-47d7-aaec-13c829b8a571 -2023-07-08 08:24:43.325662 2023-07-08 08:24:43.325676 agrero A012527268 R rec 62b0a2ab-ef2d-4da7-b48e-818f149aefe8 -2023-07-08 08:24:43.435009 2023-07-08 08:24:43.435021 agrero A012527993 R rec 71d98c1f-252d-44f5-b988-7f98f781db4d -2023-07-08 08:24:43.531183 2023-07-08 08:24:43.531195 agrero A012528466 R rec 64dcee9e-2f68-41da-983e-ddee04333ca0 -2023-07-08 08:24:43.621828 2023-07-08 08:24:43.621847 agrero A012529768 R rec b797863b-9051-4e59-bae4-d1d3599bd2b6 -2023-07-08 08:24:43.721007 2023-07-08 08:24:43.721019 agrero A012533386 R rec 801985e9-0380-4f19-a234-ef7894d0261e -2023-07-08 08:24:43.804573 2023-07-08 08:24:43.804592 agrero A012534909 R rec 93f7d7e9-d911-4bc1-b18b-912a6812ac2d -2023-07-08 08:24:43.916799 2023-07-08 08:24:43.916811 agrero A012534932 R rec 0097c429-b7ab-41b7-9c56-b51c4b073efa -2023-07-08 08:24:44.009076 2023-07-08 08:24:44.00908 agrero A012571346 R rec 5f4c2009-b4e0-4245-9752-29716d87338d -2023-07-08 08:24:44.11505 2023-07-08 08:24:44.115056 agrero A012572265 R rec 89b58690-a321-4994-9c9f-62c655de907e -2023-07-08 08:24:44.208041 2023-07-08 08:24:44.208052 agrero A012591999 R rec 560a6cb2-eebe-48ba-85ed-fe9b19b9ea77 -2023-07-08 08:24:44.305952 2023-07-08 08:24:44.305966 agrero A012597330 R rec b9e32ec5-46dd-4a51-bfc2-285a06339ef4 -2023-07-08 08:24:44.397084 2023-07-08 08:24:44.397089 agrero A012598301 R rec 422681db-321b-41b0-b64a-029b81b1886e -2023-07-08 08:24:44.489845 2023-07-08 08:24:44.489851 agrero A012623821 R rec f7610108-e833-4ab4-86c7-629469011d7c -2023-07-08 08:24:44.567169 2023-07-08 08:24:44.567181 agrero A012636366 R rec 45a225b0-ce25-4875-8a41-ded2ab80e0af -2023-07-08 08:24:44.65514 2023-07-08 08:24:44.655157 agrero A012674280 R rec 152221ac-435e-4530-b9eb-2a20fac8e835 -2023-07-08 08:24:44.740188 2023-07-08 08:24:44.740204 agrero A012692359 R rec e5b11a21-bbbc-412d-bce8-8f61372647b4 -2023-07-08 08:24:44.829779 2023-07-08 08:24:44.829784 agrero A012707155 R rec acead35d-ab7e-49de-825d-ccd93d81a24c -2023-07-08 08:24:44.911919 2023-07-08 08:24:44.911925 agrero A012707480 R rec f50f94a4-5555-43ff-af28-d8dc10cf5579 -2023-07-08 08:24:44.997357 2023-07-08 08:24:44.997368 agrero A012722635 R rec d2baed7f-c447-42c5-b891-a15bb157accd -2023-07-08 08:24:45.081793 2023-07-08 08:24:45.081799 agrero A012726948 R rec ee44bdce-5f62-4f4f-9086-9f07e7c56739 -2023-07-08 08:24:45.166898 2023-07-08 08:24:45.16691 agrero A012744465 R rec 2232aa69-351d-434e-a7c6-fefe18f3f8ac -2023-07-08 08:24:45.25987 2023-07-08 08:24:45.259877 agrero A012765564 R rec f5fa4247-dadd-4f84-986d-16f944707908 -2023-07-08 08:24:45.352576 2023-07-08 08:24:45.352592 agrero A012771324 R rec 1e675fdd-4b72-4b33-875d-326e2466f124 -2023-07-08 08:24:45.44974 2023-07-08 08:24:45.449752 agrero A012774842 R rec fe158047-4c25-4888-83f0-8eea528d3932 -2023-07-08 08:24:45.538045 2023-07-08 08:24:45.538057 agrero A012780830 R rec 982f4a5b-a9b0-48a7-ac01-aec4b4775da0 -2023-07-08 08:24:45.631659 2023-07-08 08:24:45.631672 agrero A012781952 R rec 33ff14a0-5405-4021-8396-83a427b319da -2023-07-08 08:24:45.715283 2023-07-08 08:24:45.715295 agrero A012784906 R rec 2176c253-c41d-420e-afe9-ef04d37907a7 -2023-07-08 08:24:45.804651 2023-07-08 08:24:45.804657 agrero A012785250 R rec eb9a6b81-cafe-4c69-b5f6-a37ee178e3b8 -2023-07-08 08:24:45.874266 2023-07-08 08:24:45.874272 agrero A012791691 R rec 5580496d-ac64-4903-90ba-bfe1524a6bb7 -2023-07-08 08:24:45.943219 2023-07-08 08:24:45.94323 agrero A012808722 R rec ed970a48-004b-42e3-a5ec-3fb63c54b53a -2023-07-08 08:24:46.036431 2023-07-08 08:24:46.036435 agrero A012816863 R rec ad364046-9cbc-4ecf-a847-a0e385ea9bd4 -2023-07-08 08:24:46.118102 2023-07-08 08:24:46.118113 agrero A012833174 R rec 1d35bf05-298f-43e1-8cf1-a710e9314c5e -2023-07-08 08:24:46.197838 2023-07-08 08:24:46.197844 agrero A012856933 R rec 7fc8699d-2937-48e1-9ca9-7d5c51ec4523 -2023-07-08 08:24:46.281566 2023-07-08 08:24:46.281571 agrero A012895540 R rec f06b1544-a561-46a5-8cbb-db325adfd82c -2023-07-08 08:24:46.35472 2023-07-08 08:24:46.354733 agrero A012907177 R rec 75a8cbca-9bde-4b34-a52a-b9fb13b37f7d -2023-07-08 08:24:46.452437 2023-07-08 08:24:46.452449 agrero A012928427 R rec b2ec7b84-0e03-4291-9bf3-866086cf0dcc -2023-07-08 08:24:46.542058 2023-07-08 08:24:46.542089 agrero A012937900 R rec 22a5951e-415d-4c5a-8878-923152561937 -2023-07-08 08:24:46.640292 2023-07-08 08:24:46.640304 agrero A012950169 R rec b73139ef-5468-47c3-ab1c-c46731cad173 -2023-07-08 08:24:46.732922 2023-07-08 08:24:46.732932 agrero A012957396 R rec 6908cc09-b4cf-4583-bb27-bb119f410003 -2023-07-08 08:24:46.831398 2023-07-08 08:24:46.831408 agrero A012963166 R rec 7cb01271-be7d-4340-90f5-76cb78413d95 -2023-07-08 08:24:46.92577 2023-07-08 08:24:46.925783 agrero A012966636 R rec 19c65a67-1f3b-4b49-b4c5-3eb617412524 -2023-07-08 08:24:47.008004 2023-07-08 08:24:47.008021 agrero A013062530 R rec eb662295-a42a-44d7-b830-64c3c5620d69 -2023-07-08 08:24:47.09943 2023-07-08 08:24:47.099436 agrero A013071942 R rec 738f761e-4cbf-4703-80eb-6c5e6a06c156 -2023-07-08 08:24:47.184923 2023-07-08 08:24:47.184935 agrero A013084243 R rec 6169334a-4aee-432a-8e48-7ae4e3f94e83 -2023-07-08 08:24:47.277834 2023-07-08 08:24:47.277839 agrero A013088320 R rec 707569a3-0934-41ec-a6a1-86a4ceb7c3fb -2023-07-08 08:24:47.349175 2023-07-08 08:24:47.34918 agrero A013094655 R rec b96d4f6f-c2b7-420f-95cb-27e794cf1adf -2023-07-08 08:24:47.4508 2023-07-08 08:24:47.450813 agrero A013096212 R rec bd3976eb-ae16-4051-adbe-183bf8060696 -2023-07-08 08:24:47.54046 2023-07-08 08:24:47.540471 agrero A013128887 R rec 403e6b08-3192-4989-9694-958aff3f51f0 -2023-07-08 08:24:47.640875 2023-07-08 08:24:47.640891 agrero A013135052 R rec c32176d3-f3c8-4625-96a3-fc4d69505fc4 -2023-07-08 08:24:47.740243 2023-07-08 08:24:47.740256 agrero A013137641 R rec dd91eb33-f607-43e4-9452-dfb07ffe9099 -2023-07-08 08:24:47.834627 2023-07-08 08:24:47.83464 agrero A013151927 R rec e805dcd9-1375-406d-88dc-e53f12cfeed0 -2023-07-08 08:24:47.932444 2023-07-08 08:24:47.932451 agrero A013160840 R rec ab4b6912-a9a4-4cfa-8979-d8bdf2531b71 -2023-07-08 08:24:48.037379 2023-07-08 08:24:48.037387 agrero A013187480 R rec de83e3c5-794c-4e70-87e7-dda29cdee233 -2023-07-08 08:24:48.133438 2023-07-08 08:24:48.13345 agrero A013188863 R rec c026be47-a4dc-4e1c-a5f6-c6f88ab2e939 -2023-07-08 08:24:48.22101 2023-07-08 08:24:48.221016 agrero A013193457 R rec 70cb8881-35cd-45b2-99ac-0ff1be118d4e -2023-07-08 08:24:48.308128 2023-07-08 08:24:48.308134 agrero A013199001 R rec 01fc9b5a-63f0-4ece-a68d-257ec091c229 -2023-07-08 08:24:48.384777 2023-07-08 08:24:48.384783 agrero A013216832 R rec 6badc474-43e4-4ac2-ad42-edacd1d0be06 -2023-07-08 08:24:48.47372 2023-07-08 08:24:48.47373 agrero A013218412 R rec 86a1fe34-d7b2-450a-89f6-b27137a3dd77 -2023-07-08 08:24:48.587849 2023-07-08 08:24:48.587863 agrero A013222117 R rec 4c8daa1b-07fe-4b8a-af58-52c5bdf4b548 -2023-07-08 08:24:48.682488 2023-07-08 08:24:48.682501 agrero A013234989 R rec 68de0fa5-e809-48d4-b5c6-aac2ed22d770 -2023-07-08 08:24:48.79044 2023-07-08 08:24:48.790453 agrero A013238298 R rec 64c4a07c-3a1f-4b57-8c02-da2f03c0a85a -2023-07-08 08:24:48.903223 2023-07-08 08:24:48.903242 agrero A013254669 R rec b21db200-a6a1-47c0-9918-22f6c02db899 -2023-07-08 08:24:49.019797 2023-07-08 08:24:49.019812 agrero A013254904 R rec 514795ba-3988-40d5-bce7-7f488f8b117e -2023-07-08 08:24:49.142715 2023-07-08 08:24:49.142726 agrero A013264678 R rec 01c3a185-b4f9-4793-96e2-96c2b91e4686 -2023-07-08 08:24:49.261322 2023-07-08 08:24:49.261339 agrero A013278476 R rec 06c89279-0e76-4fe2-920d-d9b2b7b4b8ab -2023-07-08 08:24:49.393671 2023-07-08 08:24:49.393681 agrero A013288987 R rec d82ee74f-9485-4369-8e3c-e439f2dbad43 -2023-07-08 08:24:49.503749 2023-07-08 08:24:49.503762 agrero A013298285 R rec 705fd0c1-7672-4708-a458-5541a68133d8 -2023-07-08 08:24:49.642713 2023-07-08 08:24:49.642718 agrero A013325785 R rec 8ad437f7-bcc5-45e7-be2e-10c52578742a -2023-07-08 08:24:49.760346 2023-07-08 08:24:49.760361 agrero A013328589 R rec d02c2ca2-e7f3-437c-9979-8873d760dde5 -2023-07-08 08:24:49.868475 2023-07-08 08:24:49.868494 agrero A013346407 R rec e1a3ecbb-ed1d-4716-80f5-9e267a5235f8 -2023-07-08 08:24:50.015053 2023-07-08 08:24:50.015068 agrero A013388531 R rec 51a547ca-7b42-4cf6-ad14-219a185ae521 -2023-07-08 08:24:50.120183 2023-07-08 08:24:50.120197 agrero A013395525 R rec 19e73f29-1e99-4fdc-955a-08cb3e6648cc -2023-07-08 08:24:50.223022 2023-07-08 08:24:50.223041 agrero A013406985 R rec cf60b82c-5537-4e2d-88c4-85d262906b0c -2023-07-08 08:24:50.32371 2023-07-08 08:24:50.323732 agrero A013436592 R rec 18c308a5-5d76-4b13-babe-f5cce363da8d -2023-07-08 08:24:50.443727 2023-07-08 08:24:50.443738 agrero A013461986 R rec 113cfe28-a398-4edb-98f4-6c37681792af -2023-07-08 08:24:50.605845 2023-07-08 08:24:50.605856 agrero A013469717 R rec a03b31b2-33be-4c32-bf06-6b9d084103ff -2023-07-08 08:24:50.75429 2023-07-08 08:24:50.754306 agrero A013472806 R rec 9e6e6d67-2ad7-464b-8e3f-e444cbe9f407 -2023-07-08 08:24:50.874501 2023-07-08 08:24:50.874517 agrero A013486130 R rec 6759244c-85cf-405c-b087-b7b1d2a9f46a -2023-07-08 08:24:51.008369 2023-07-08 08:24:51.008381 agrero A013491491 R rec 9316d2ae-28c8-4a92-a23e-d390495d2e67 -2023-07-08 08:24:51.174566 2023-07-08 08:24:51.174579 agrero A013496961 R rec 4bb59c05-b76a-4f7a-8b9a-edc921217cab -2023-07-08 08:24:51.27442 2023-07-08 08:24:51.274436 agrero A013498494 R rec 4bfe9a2e-31df-4592-a173-5ee36a2b1190 -2023-07-08 08:24:51.380197 2023-07-08 08:24:51.380208 agrero A013503465 R rec ec5e8871-ebea-4c51-9140-5c56e6b95c13 -2023-07-08 08:24:51.484773 2023-07-08 08:24:51.484788 agrero A013503508 R rec 45658af5-5da6-478c-9c53-1facc445da3d -2023-07-08 08:24:51.593977 2023-07-08 08:24:51.59399 agrero A013505068 R rec fa39dd8e-9d07-4ff3-901c-b0b2d0dc3300 -2023-07-08 08:24:51.696055 2023-07-08 08:24:51.696068 agrero A013505146 R rec dd2f77e0-3126-4038-9da3-bbf0eaa0bd31 -2023-07-08 08:24:51.810288 2023-07-08 08:24:51.810302 agrero A013505439 R rec fe1eb473-bfcf-4d45-aae4-ac5c56f041cb -2023-07-08 08:24:51.915848 2023-07-08 08:24:51.915867 agrero A013506588 R rec 9ac796de-44bf-47fc-9e1b-60590b1a99b2 -2023-07-08 08:24:52.048149 2023-07-08 08:24:52.048163 agrero A013518111 R rec 4d8dc596-80a9-4d79-bf23-a997377d7a44 -2023-07-08 08:24:52.155762 2023-07-08 08:24:52.155778 agrero A013519314 R rec beae6bdd-7b0b-424b-83dc-9e7cf66cd518 -2023-07-08 08:24:52.279747 2023-07-08 08:24:52.27976 agrero A013521342 R rec b2fba77c-2894-448a-b394-50cc8c8e0ef2 -2023-07-08 08:24:52.39246 2023-07-08 08:24:52.392471 agrero A013544891 R rec 4b4b47f5-c563-464c-abd5-38b2abe2b60d -2023-07-08 08:24:52.491793 2023-07-08 08:24:52.491804 agrero A013552965 R rec 9c7747be-19c5-4830-b1a0-af57e7c50d20 -2023-07-08 08:24:52.612361 2023-07-08 08:24:52.612374 agrero A013553997 R rec 9fda9063-68ab-48be-8814-7fd5930f330e -2023-07-08 08:24:52.733878 2023-07-08 08:24:52.733987 agrero A013583535 R rec e6c7b0dc-fe4e-4d6a-8195-66cd2301596e -2023-07-08 08:24:52.866487 2023-07-08 08:24:52.866503 agrero A013585039 R rec bb552fc1-8fbb-49f4-bd73-b09bd2f3054b -2023-07-08 08:24:52.962927 2023-07-08 08:24:52.962945 agrero A013595086 R rec a585c3de-1644-4364-98f8-76eaff4adcbd -2023-07-08 08:24:53.084802 2023-07-08 08:24:53.084812 agrero A013595372 R rec b1783114-342d-486f-8c53-9f93a389f364 -2023-07-08 08:24:53.216787 2023-07-08 08:24:53.216804 agrero A013621306 R rec 8aa9bea8-1bf7-4b6a-8daf-6f5104668517 -2023-07-08 08:24:53.334501 2023-07-08 08:24:53.334517 agrero A013627680 R rec 82323eaa-5199-44e0-b9f6-1eaa4fca059d -2023-07-08 08:24:53.444572 2023-07-08 08:24:53.444591 agrero A013629529 R rec 12be84ed-825d-402b-b63a-06205f6bb69a -2023-07-08 08:24:53.535312 2023-07-08 08:24:53.535326 agrero A013654911 R rec e7161910-b811-43a2-ac80-f5a639920cc5 -2023-07-08 08:24:53.653284 2023-07-08 08:24:53.653295 agrero A013663807 R rec daf2ca16-f422-4412-9097-ac76c2124cbb -2023-07-08 08:24:53.778642 2023-07-08 08:24:53.778659 agrero A013675118 R rec 99f7a3bb-5fa5-488d-bada-28a9ff2419d8 -2023-07-08 08:24:53.893308 2023-07-08 08:24:53.893324 agrero A013683105 R rec b3a1c73f-fd88-4b73-aa58-b1e467a07313 -2023-07-08 08:24:54.015636 2023-07-08 08:24:54.015648 agrero A013688478 R rec 143f38d0-c90a-4b8c-8445-031b297f139a -2023-07-08 08:24:54.175372 2023-07-08 08:24:54.175384 agrero A013706277 R rec b1083a74-07d6-4508-a60f-8dc3f8cc6e35 -2023-07-08 08:24:54.325472 2023-07-08 08:24:54.325486 agrero A013720765 R rec 7fc98c91-8d1c-46ce-8a40-6f030fe3d6e1 -2023-07-08 08:24:54.433383 2023-07-08 08:24:54.433399 agrero A013753495 R rec 3110e583-724d-432f-9d0c-208d097d8d09 -2023-07-08 08:24:54.562229 2023-07-08 08:24:54.562246 agrero A013763647 R rec b305fff1-455f-4b22-bee8-ab1899b10aff -2023-07-08 08:24:54.699432 2023-07-08 08:24:54.699449 agrero A013784156 R rec 544cf724-9b97-4579-9dbe-c98c699b7aa5 -2023-07-08 08:24:54.823321 2023-07-08 08:24:54.823334 agrero A013786026 R rec 42caaf69-e7b9-4541-a042-f0841f065e91 -2023-07-08 08:24:54.944035 2023-07-08 08:24:54.944054 agrero A013793627 R rec d178bf8b-4135-47b2-8eb7-373120455510 -2023-07-08 08:24:55.072487 2023-07-08 08:24:55.072501 agrero A013796408 R rec 3494b086-b446-4e64-9a6c-a8e0306b0345 -2023-07-08 08:24:55.165949 2023-07-08 08:24:55.16596 agrero A013815334 R rec b9ef28c0-f04a-4ea5-8eb1-5b2c5e360ddb -2023-07-08 08:24:55.280595 2023-07-08 08:24:55.280608 agrero A013839708 R rec 1b9cd752-c50b-4b8c-ba89-e743eeee33a5 -2023-07-08 08:24:55.392169 2023-07-08 08:24:55.392185 agrero A013851171 R rec 7c2296b5-091a-45d8-86e1-e878eb43b28f -2023-07-08 08:24:55.516708 2023-07-08 08:24:55.51672 agrero A013863028 R rec c5413b5c-de48-4d24-8de2-a5862f76f157 -2023-07-08 08:24:55.644854 2023-07-08 08:24:55.644865 agrero A013902798 R rec c10ae1ee-0e2e-400d-837c-52549bb30a62 -2023-07-08 08:24:55.763956 2023-07-08 08:24:55.76397 agrero A013936998 R rec 229cbcdb-7a0f-4a29-8b78-e74c2ace3ace -2023-07-08 08:24:55.880065 2023-07-08 08:24:55.880078 agrero A013939562 R rec 594533f7-8343-4756-bec4-56f2a79592c5 -2023-07-08 08:24:55.998139 2023-07-08 08:24:55.998153 agrero A013941086 R rec 230d15b1-c4e2-4700-bccf-52b0c3328a78 -2023-07-08 08:24:56.095605 2023-07-08 08:24:56.095619 agrero A013948865 R rec 109d003a-9446-49ee-b547-216cf9354dcf -2023-07-08 08:24:56.203851 2023-07-08 08:24:56.203863 agrero A013952563 R rec d5853da2-cb2b-400b-ad4c-82cc6237a4c5 -2023-07-08 08:24:56.310472 2023-07-08 08:24:56.310489 agrero A013970354 R rec f8645dde-90b2-4753-a7f4-477b2175025b -2023-07-08 08:24:56.428795 2023-07-08 08:24:56.428807 agrero A013986424 R rec 66812f8b-3b19-4e23-8465-2fd9268a6f5f -2023-07-08 08:24:56.533172 2023-07-08 08:24:56.533183 agrero A013993183 R rec 0e4b9fa7-3247-4687-b243-d08400037c21 -2023-07-08 08:24:56.64648 2023-07-08 08:24:56.646497 agrero A013995035 R rec 28e2ebc9-eeee-43fc-bf87-2e8bf86bf245 -2023-07-08 08:24:56.760424 2023-07-08 08:24:56.760437 agrero A014012002 R rec d9832867-b3e5-482f-ad68-729c15f790e1 -2023-07-08 08:24:56.865496 2023-07-08 08:24:56.865516 agrero A014025587 R rec 413c85a1-8f01-48f5-84b4-33a6f97eea10 -2023-07-08 08:24:56.978155 2023-07-08 08:24:56.978167 agrero A014026079 R rec 75d98aaa-ba64-4e6b-bc26-51672a7a7f02 -2023-07-08 08:24:57.086736 2023-07-08 08:24:57.086771 agrero A014036096 R rec 70b0ecb2-ea57-42b9-9e76-8cafdbfd99cc -2023-07-08 08:24:57.20022 2023-07-08 08:24:57.200237 agrero A014037717 R rec 334dc7a9-12ed-48b3-ad27-541ffeb067a2 -2023-07-08 08:24:57.326834 2023-07-08 08:24:57.328386 agrero A014059339 R rec 0f055c93-c52c-4640-8dba-aadbe2545b62 -2023-07-08 08:24:57.447618 2023-07-08 08:24:57.447632 agrero A014065225 R rec b85a42a5-1cb5-4fd6-b188-732b85661c54 -2023-07-08 08:24:57.584023 2023-07-08 08:24:57.584034 agrero A014070967 R rec 501d4fe2-0cad-44ae-bb43-f1fd88504d84 -2023-07-08 08:24:57.717096 2023-07-08 08:24:57.717115 agrero A014074228 R rec eaa957b6-084a-41bf-a615-1628625ab4fe -2023-07-08 08:24:57.843752 2023-07-08 08:24:57.843768 agrero A014087607 R rec abd99b94-d992-42dd-ae25-02b071f14513 -2023-07-08 08:24:57.979597 2023-07-08 08:24:57.979609 agrero A014087918 R rec 9e810c1a-a393-4e1f-b302-7282424a2fa0 -2023-07-08 08:24:58.121392 2023-07-08 08:24:58.121411 agrero A014091750 R rec 37a18df0-a148-4498-ac28-de91de551782 -2023-07-08 08:24:58.24858 2023-07-08 08:24:58.248594 agrero A014094375 R rec 8604ccaa-938f-4ea5-a041-e57def776def -2023-07-08 08:24:58.342261 2023-07-08 08:24:58.342276 agrero A014111148 R rec 4ec97034-932d-4a8e-9a1f-ad7e70dea6e6 -2023-07-08 08:24:58.455975 2023-07-08 08:24:58.45599 agrero A014127767 R rec 7bba5cb0-c7b7-4a0d-bc24-2a6f574d7447 -2023-07-08 08:24:58.560501 2023-07-08 08:24:58.560518 agrero A014139981 R rec 785041ae-e259-4517-abf7-a40897e121fc -2023-07-08 08:24:58.671779 2023-07-08 08:24:58.671788 agrero A014145274 R rec a1e60beb-99d4-4525-9c75-00a201bd8cf7 -2023-07-08 08:24:58.797542 2023-07-08 08:24:58.797559 agrero A014193528 R rec 51f13e7a-0f55-426a-b3d3-abeebe6dfbf5 -2023-07-08 08:24:58.925204 2023-07-08 08:24:58.925228 agrero A014201130 R rec fb83b24f-187f-435f-8a83-a77e71085696 -2023-07-08 08:24:59.061845 2023-07-08 08:24:59.061857 agrero A014202551 R rec 2cb346f5-8e09-41cc-9202-ba35c5d24ff4 -2023-07-08 08:24:59.177239 2023-07-08 08:24:59.177255 agrero A014219231 R rec 7f7d50be-369d-4e84-a319-aa2f79ff1c8d -2023-07-08 08:24:59.294622 2023-07-08 08:24:59.29468 agrero A014222396 R rec 7852f380-730d-45ac-94b6-7d0faa517237 -2023-07-08 08:24:59.400361 2023-07-08 08:24:59.400377 agrero A014224284 R rec 0ba6a371-4835-4a57-9723-d95c0e72821e -2023-07-08 08:24:59.528983 2023-07-08 08:24:59.528994 agrero A014242112 R rec bb577618-c7ea-4e4a-a11c-b705e75d2728 -2023-07-08 08:24:59.655138 2023-07-08 08:24:59.655148 agrero A014246692 R rec 8bbb18db-0af2-44d4-b5bd-6b49d4c3083a -2023-07-08 08:24:59.772605 2023-07-08 08:24:59.772621 agrero A014251795 R rec 63d84bcb-5548-406c-9401-5a52c3421f84 -2023-07-08 08:24:59.904658 2023-07-08 08:24:59.904674 agrero A014255110 R rec 724e7525-b897-4dbd-850e-cce2dcb1c499 -2023-07-08 08:25:00.016237 2023-07-08 08:25:00.016243 agrero A014258973 R rec 32250090-9c74-4c58-9753-11a27b57f8f6 -2023-07-08 08:25:00.133294 2023-07-08 08:25:00.133305 agrero A014273717 R rec 2e56e08f-6ea7-4cea-9113-e0df58110c0d -2023-07-08 08:25:00.260646 2023-07-08 08:25:00.260656 agrero A014276779 R rec 86917bae-9f3f-47ae-ae12-4add18dd5dda -2023-07-08 08:25:00.372885 2023-07-08 08:25:00.372898 agrero A014313002 R rec 7ee342b2-44d3-427f-b529-df63705dfd86 -2023-07-08 08:25:00.497144 2023-07-08 08:25:00.497161 agrero A014336689 R rec 0a4d91b3-5217-4541-b527-968243862d07 -2023-07-08 08:25:00.60835 2023-07-08 08:25:00.60836 agrero A014337377 R rec 483aa2cc-d8cb-47aa-a4b6-738f847bfc74 -2023-07-08 08:25:00.730204 2023-07-08 08:25:00.73022 agrero A014352979 R rec 1a47b4da-5992-419e-8c92-55b6ff461ac4 -2023-07-08 08:25:00.882969 2023-07-08 08:25:00.882984 agrero A014357923 R rec 9597e441-bd54-426e-b1ed-92b23079201b -2023-07-08 08:25:01.010503 2023-07-08 08:25:01.010522 agrero A016238365 R rec a2b65939-53d5-4766-894a-7d747e8d998a -2023-07-08 08:25:01.133312 2023-07-08 08:25:01.133336 agrero A016298786 R rec afdf706f-432e-4914-a876-75caead7a433 -2023-07-08 08:25:01.260831 2023-07-08 08:25:01.260841 agrero A016303136 R rec 06b2e992-8ac8-4a00-bdca-c9eca0c1f2f3 -2023-07-08 08:25:01.382448 2023-07-08 08:25:01.382462 agrero A016318307 R rec 6784e7be-de9e-4e78-84a0-f27487af60d3 -2023-07-08 08:25:01.496621 2023-07-08 08:25:01.49664 agrero A016389042 R rec 7ec18cea-ce26-4f59-a64b-041eaad83f0d -2023-07-08 08:25:01.605177 2023-07-08 08:25:01.605189 agrero A016404123 R rec 7c295791-54cf-457c-ac66-37d0e60fd62c -2023-07-08 08:25:01.706548 2023-07-08 08:25:01.706558 agrero A016411096 R rec d2e0360e-57ec-4e6f-9fca-12b65bbec570 -2023-07-08 08:25:01.811081 2023-07-08 08:25:01.811097 agrero A016415566 R rec c1085f50-d36a-47e4-9225-dfd17675d7a1 -2023-07-08 08:25:01.922231 2023-07-08 08:25:01.922246 agrero A016426300 R rec c82a93ef-93bd-43d2-b88d-11e2d069d936 -2023-07-08 08:25:02.031816 2023-07-08 08:25:02.031827 agrero A016444932 R rec ef0aff8f-350e-4c36-82ed-9286a1ddf688 -2023-07-08 08:25:02.135976 2023-07-08 08:25:02.135991 agrero A016459229 R rec 7fd3afdf-e4de-457c-8188-b94dcdba28ab -2023-07-08 08:25:02.236224 2023-07-08 08:25:02.236236 agrero A016459550 R rec 6daf8d5d-4261-46e7-9267-400d2a53f124 -2023-07-08 08:25:02.343155 2023-07-08 08:25:02.343173 agrero A016477477 R rec 694dc277-8307-4b45-b116-f52579eda343 -2023-07-08 08:25:02.451436 2023-07-08 08:25:02.451448 agrero A016482621 R rec f8d8244b-cbcd-4bbb-97af-12ca73d1cb94 -2023-07-08 08:25:02.553104 2023-07-08 08:25:02.553118 agrero A016484771 R rec f96dd35d-cc83-42df-93c6-6bef0a3a0e24 -2023-07-08 08:25:02.66234 2023-07-08 08:25:02.662357 agrero A016506102 R rec 0e3880fb-c732-4298-9617-fcd633882af9 -2023-07-08 08:25:02.788456 2023-07-08 08:25:02.788467 agrero A016511435 R rec 344b8dd5-7c17-4e05-9eca-0c91cc0189d9 -2023-07-08 08:25:02.89538 2023-07-08 08:25:02.895395 agrero A016513981 R rec 68d83e6c-9af0-4697-b07e-80cbc73d3cf0 -2023-07-08 08:25:02.995654 2023-07-08 08:25:02.995673 agrero A016514568 R rec 33c69a02-68ff-46b8-bba3-67667c21c655 -2023-07-08 08:25:03.11566 2023-07-08 08:25:03.115674 agrero A016521212 R rec 3660791d-6a52-4f1b-8d49-14a87051bb01 -2023-07-08 08:25:03.22979 2023-07-08 08:25:03.229801 agrero A016528677 R rec aebebdd2-427f-41ef-be16-0493350816a8 -2023-07-08 08:25:03.331138 2023-07-08 08:25:03.33115 agrero A016535988 R rec 9d90c991-e55d-45fe-9a56-e285c9678682 -2023-07-08 08:25:03.427535 2023-07-08 08:25:03.427547 agrero A016548812 R rec 2d86cd87-2bd3-4176-a915-bde89c738bd3 -2023-07-08 08:25:03.529512 2023-07-08 08:25:03.529529 agrero A016550065 R rec af52cdb8-519e-4f81-8395-a23b7ffc81af -2023-07-08 08:25:03.648905 2023-07-08 08:25:03.648916 agrero A016568873 R rec 27b52c27-6df3-4443-bf09-868118585731 -2023-07-08 08:25:03.763989 2023-07-08 08:25:03.764004 agrero A016604176 R rec 768f379b-c493-4adf-96bc-c9008820798a -2023-07-08 08:25:03.8628 2023-07-08 08:25:03.862816 agrero A016614032 R rec 0d048ce7-08a1-478c-89e2-6e7417f94353 -2023-07-08 08:25:03.976127 2023-07-08 08:25:03.976143 agrero A016637978 R rec 31bd3b4a-e727-416d-8061-bd928aa9db5e -2023-07-08 08:25:04.088656 2023-07-08 08:25:04.088668 agrero A016638657 R rec dfcf80d2-cec9-4af9-8a2f-ef6ed1ce7066 -2023-07-08 08:25:04.211358 2023-07-08 08:25:04.211374 agrero A016638677 R rec a7508340-7c9c-42b1-a7ae-ba2c5d9cc066 -2023-07-08 08:25:04.339984 2023-07-08 08:25:04.339998 agrero A016651275 R rec 1e03a49e-5ed0-4302-bb10-2d6bcdfcf926 -2023-07-08 08:25:04.445351 2023-07-08 08:25:04.445367 agrero A016655749 R rec b66dc130-7ac6-43af-86a9-ab297f37397e -2023-07-08 08:25:04.560948 2023-07-08 08:25:04.560969 agrero A016666286 R rec f2c9f1df-7503-4142-9df3-74b907393b66 -2023-07-08 08:25:04.670958 2023-07-08 08:25:04.670973 agrero A016675995 R rec 1447cbb0-eda8-4d3d-9ede-7dee59c1ed63 -2023-07-08 08:25:04.772949 2023-07-08 08:25:04.772965 agrero A016678629 R rec 18dbc96f-3851-49ec-a724-b5863c564540 -2023-07-08 08:25:04.896824 2023-07-08 08:25:04.896843 agrero A016688565 R rec 4e6e57c5-97a1-4cc9-9a3e-31ac65865bc5 -2023-07-08 08:25:05.012171 2023-07-08 08:25:05.012182 agrero A016697578 R rec 910b1369-e96b-43ad-926e-841effdf765b -2023-07-08 08:25:05.133407 2023-07-08 08:25:05.133422 agrero A016697664 R rec 025f6d40-5081-45a1-8377-619acec7a450 -2023-07-08 08:25:05.259841 2023-07-08 08:25:05.259855 agrero A016744040 R rec 0de61f8b-ee58-4db8-9960-3c573b3e331d -2023-07-08 08:25:05.373838 2023-07-08 08:25:05.373851 agrero A016755736 R rec 02492588-9896-4772-8cf6-93d95cffe8ca -2023-07-08 08:25:05.4845 2023-07-08 08:25:05.484512 agrero A016768352 R rec d21a61a8-377f-40de-bca0-768217491bc1 -2023-07-08 08:25:05.594769 2023-07-08 08:25:05.594788 agrero A016787995 R rec 07d6d250-14a3-41d7-ac0b-a12330abc4e1 -2023-07-08 08:25:05.698013 2023-07-08 08:25:05.698029 agrero A016799486 R rec ef4a7dba-bb71-4254-a62a-14876d8507d3 -2023-07-08 08:25:05.797967 2023-07-08 08:25:05.797978 agrero A016809743 R rec 0dd0cafe-802f-4f98-81f6-29f5d61e3c6c -2023-07-08 08:25:05.912617 2023-07-08 08:25:05.912634 agrero A016813599 R rec 49a0f381-e7bc-4b46-8925-86e853490372 -2023-07-08 08:25:06.031192 2023-07-08 08:25:06.031203 agrero A016814681 R rec fc1dc2b9-05c0-4523-b031-70c8e88280ec -2023-07-08 08:25:06.133241 2023-07-08 08:25:06.133253 agrero A016816789 R rec 8da60836-2cec-43a5-9b09-f7979c6c2bda -2023-07-08 08:25:06.244175 2023-07-08 08:25:06.244191 agrero A016818796 R rec 827f0f72-e6d8-42f7-846d-412d78b491a6 -2023-07-08 08:25:06.341134 2023-07-08 08:25:06.341145 agrero A016841342 R rec f7692f17-7e1d-4654-b77b-780887169a33 -2023-07-08 08:25:06.447117 2023-07-08 08:25:06.447133 agrero A016871460 R rec 833f7979-63e9-4f1c-93ba-2af6557fe3db -2023-07-08 08:25:06.56119 2023-07-08 08:25:06.561201 agrero A016877431 R rec d50dab18-046b-4b99-ac93-b05d638fe779 -2023-07-08 08:25:06.666646 2023-07-08 08:25:06.666662 agrero A016969116 R rec 9dc1cfaa-cc2e-4b7a-b27d-bd47a1504310 -2023-07-08 08:25:06.775489 2023-07-08 08:25:06.775505 agrero A016972683 R rec f89f4f60-a2f4-43b3-ad89-3ab07fa0e8ac -2023-07-08 08:25:06.880939 2023-07-08 08:25:06.880951 agrero A017020235 R rec aa00574f-0449-4e0a-b8b5-d646bef81a7e -2023-07-08 08:25:06.996197 2023-07-08 08:25:06.996214 agrero A017025989 R rec 4a6b1f06-e7c2-4425-8bd3-d01ac4407566 -2023-07-08 08:25:07.11396 2023-07-08 08:25:07.113974 agrero A017057870 R rec 5266c6a7-d6b9-46d5-99dd-1af69f63b3b0 -2023-07-08 08:25:07.22865 2023-07-08 08:25:07.228664 agrero A017097186 R rec fef3531d-6aca-43a0-9d12-0b4c5df99f22 -2023-07-08 08:25:07.341525 2023-07-08 08:25:07.342047 agrero A017122036 R rec f91f26d9-9a2f-4e9c-a4c6-d11ac7d1806f -2023-07-08 08:25:07.458875 2023-07-08 08:25:07.458891 agrero A017130152 R rec 8020544b-9491-4f2c-9591-e60c39d63f63 -2023-07-08 08:25:07.562484 2023-07-08 08:25:07.5625 agrero A017132207 R rec 522973f8-0509-4a58-86e6-6526525c7e12 -2023-07-08 08:25:07.666453 2023-07-08 08:25:07.666465 agrero A017139224 R rec 56b992af-73df-4737-adbc-2e74eccd3cec -2023-07-08 08:25:07.789446 2023-07-08 08:25:07.789459 agrero A017158101 R rec 2b5479b2-ac4f-40d3-be83-a30ff80d536f -2023-07-08 08:25:07.906925 2023-07-08 08:25:07.908536 agrero A017173033 R rec 965df9dd-0028-4dde-aeea-bfb9e191df82 -2023-07-08 08:25:08.013653 2023-07-08 08:25:08.013669 agrero A017178153 R rec 30027dbf-5239-45a8-8c0c-8a56432fd8fa -2023-07-08 08:25:08.121231 2023-07-08 08:25:08.121247 agrero A017187491 R rec 197646ce-72dc-4d80-8b6a-5f0739409b6d -2023-07-08 08:25:08.232516 2023-07-08 08:25:08.232529 agrero A017202523 R rec 4964a3b7-43e3-47df-b38c-00da5dba78f5 -2023-07-08 08:25:08.33519 2023-07-08 08:25:08.335202 agrero A017237082 R rec 98516772-3beb-4fa7-a457-8ee12b6515ae -2023-07-08 08:25:08.442095 2023-07-08 08:25:08.442112 agrero A017314321 R rec 10ece84c-4797-419b-b4af-bec2625a5b75 -2023-07-08 08:25:08.554533 2023-07-08 08:25:08.554546 agrero A017326126 R rec f221fd34-50dc-4581-bae8-85458fed6d4d -2023-07-08 08:25:08.661063 2023-07-08 08:25:08.661078 agrero A017377907 R rec b7ffd439-6fc1-4d06-9801-47a861d93585 -2023-07-08 08:25:08.75954 2023-07-08 08:25:08.759554 agrero A017383534 R rec 7fe8b9a8-d4c0-4be1-8ca2-7532651ac3d7 -2023-07-08 08:25:08.87031 2023-07-08 08:25:08.870326 agrero A017410230 R rec 59ddd4e9-18e7-494d-af4b-67cba905b280 -2023-07-08 08:25:08.976744 2023-07-08 08:25:08.976758 agrero A017429783 R rec 5afa33a8-d8eb-488a-9a9f-4255ec43d21a -2023-07-08 08:25:09.089848 2023-07-08 08:25:09.090115 agrero A017435658 R rec 5f4c879c-5f98-44b0-a43e-36bdcaac540a -2023-07-08 08:25:09.20171 2023-07-08 08:25:09.201726 agrero A017451803 R rec 7dc6119c-6aed-4f71-ad4f-39f34d89d02d -2023-07-08 08:25:09.308045 2023-07-08 08:25:09.308065 agrero A017458456 R rec 9e42bbd4-2cb4-43e9-b938-05773fe2c14c -2023-07-08 08:25:09.413341 2023-07-08 08:25:09.413357 agrero A017468446 R rec d5139c08-a3c1-49ab-be52-88e2b7fcd466 -2023-07-08 08:25:09.526501 2023-07-08 08:25:09.526513 agrero A017513975 R rec 9f93264b-efa0-4c60-9cf6-9ad03ecb5de8 -2023-07-08 08:25:09.66061 2023-07-08 08:25:09.660626 agrero A017556608 R rec f10a501c-76e5-4df8-9c31-9924a5b44fba -2023-07-08 08:25:09.781841 2023-07-08 08:25:09.781856 agrero A017565309 R rec 964cd232-2b29-4030-80d4-e3b1e54aa7ce -2023-07-08 08:25:09.901292 2023-07-08 08:25:09.901311 agrero A017572454 R rec eff53b03-d104-4e50-9463-6efc7c78f682 -2023-07-08 08:25:10.002285 2023-07-08 08:25:10.0023 agrero A017578807 R rec 60858ee4-b17f-4d81-952f-8c7159e2a5a3 -2023-07-08 08:25:10.101324 2023-07-08 08:25:10.101339 agrero A017581317 R rec 347d59ae-339b-4617-9f75-adce7f62c539 -2023-07-08 08:25:10.19803 2023-07-08 08:25:10.198044 agrero A017594651 R rec f6f0bd72-b288-4659-9c92-655a31debd5c -2023-07-08 08:25:10.314547 2023-07-08 08:25:10.314559 agrero A017596294 R rec e1a0c60c-b9f6-4e99-a8d5-6188e24c0a88 -2023-07-08 08:25:10.422093 2023-07-08 08:25:10.422108 agrero A017602316 R rec c1e47669-e351-481e-8e30-8b6fbcd78c2c -2023-07-08 08:25:10.531606 2023-07-08 08:25:10.531622 agrero A017611108 R rec cafc15e2-3797-4fe2-a843-10f674435512 -2023-07-08 08:25:10.63236 2023-07-08 08:25:10.632373 agrero A017635757 R rec 45b14420-8e19-4713-9a04-fb76b3a1066f -2023-07-08 08:25:10.738833 2023-07-08 08:25:10.739235 agrero A017650142 R rec 4518011d-7e29-4abc-9b7d-ff1adc62cc80 -2023-07-08 08:25:10.840058 2023-07-08 08:25:10.84007 agrero A017676479 R rec 1944f604-a328-4ca6-a41d-73e175dac939 -2023-07-08 08:25:10.938379 2023-07-08 08:25:10.938394 agrero A017678297 R rec 52409069-ba66-447e-804b-e7650b6b7c40 -2023-07-08 08:25:11.036393 2023-07-08 08:25:11.036405 agrero A017696857 R rec a104da20-ff18-4606-97dd-eb5f605b4b4d -2023-07-08 08:25:11.146388 2023-07-08 08:25:11.1464 agrero A017737385 R rec 2c1cd0f4-6936-4610-bdba-50dba2de5679 -2023-07-08 08:25:11.247625 2023-07-08 08:25:11.247636 agrero A017743945 R rec 19ccdbf8-cad8-4798-9710-7b777a3c8fa2 -2023-07-08 08:25:11.336237 2023-07-08 08:25:11.336249 agrero A017761491 R rec d59c89ac-cb62-4b7a-97a9-eae1eb37acd8 -2023-07-08 08:25:11.431654 2023-07-08 08:25:11.431667 agrero A017762299 R rec 12514599-7984-4029-8f3e-cc41490b4b0d -2023-07-08 08:25:11.530751 2023-07-08 08:25:11.530766 agrero A017784112 R rec 8a887936-158f-4d79-8106-bc6f120315de -2023-07-08 08:25:11.633617 2023-07-08 08:25:11.633628 agrero A017798464 R rec e5fc055e-8d15-452a-afad-6b83c0606ca0 -2023-07-08 08:25:11.734257 2023-07-08 08:25:11.734271 agrero A017940250 R rec 4aa11015-894f-4fd6-8570-bf2f78ca9193 -2023-07-08 08:25:11.835671 2023-07-08 08:25:11.835687 agrero A017944030 R rec ef170f54-11f7-437b-a768-14a4c69a3241 -2023-07-08 08:25:11.954732 2023-07-08 08:25:11.954747 agrero A017944947 R rec 06eae3b2-f301-41b6-9c4f-83a433c323cb -2023-07-08 08:25:12.050446 2023-07-08 08:25:12.050462 agrero A017955463 R rec 02b1f7c3-a79e-425d-a53e-e027fc1bea8d -2023-07-08 08:25:12.149804 2023-07-08 08:25:12.149817 agrero A017961866 R rec 86bed6cd-7605-45df-861d-d1885a4f0737 -2023-07-08 08:25:12.265348 2023-07-08 08:25:12.265361 agrero A017970655 R rec 97755b03-9c5c-4f1a-92d2-eaa04e6e5a82 -2023-07-08 08:25:12.362767 2023-07-08 08:25:12.36278 agrero A017977912 R rec 0a6e0a04-56f8-48ac-8d9f-c2044f677bcf -2023-07-08 08:25:12.455894 2023-07-08 08:25:12.455907 agrero A017990946 R rec f82cab25-e225-4df3-a9ae-333eb1f5570d -2023-07-08 08:25:12.558354 2023-07-08 08:25:12.558366 agrero A017997426 R rec ef85a145-31ca-4069-a7ba-e1312ab155b6 -2023-07-08 08:25:12.687883 2023-07-08 08:25:12.687902 agrero A017998485 R rec 8431df40-553b-43bf-9f00-9bd15f4c5f6d -2023-07-08 08:25:12.77758 2023-07-08 08:25:12.77759 agrero A018022500 R rec 9c20114e-663b-4f08-9d4c-032b41e2fa58 -2023-07-08 08:25:12.880032 2023-07-08 08:25:12.880043 agrero A018042156 R rec b8e65d35-94f7-4a92-a293-08426151d078 -2023-07-08 08:25:12.976776 2023-07-08 08:25:12.977296 agrero A018051739 R rec 6e2ba190-d7f7-48bd-abc7-a995e22891f3 -2023-07-08 08:25:13.089315 2023-07-08 08:25:13.089328 agrero A018052277 R rec 63bb6541-4834-4e18-9432-06c8511493bd -2023-07-08 08:25:13.185714 2023-07-08 08:25:13.185725 agrero A018063051 R rec dc954bcf-69e5-459e-847e-0bda718997f5 -2023-07-08 08:25:13.314373 2023-07-08 08:25:13.314387 agrero A018070048 R rec 383dda05-2939-44f3-b81b-dc378154aca6 -2023-07-08 08:25:13.432729 2023-07-08 08:25:13.432743 agrero A018080715 R rec e157753d-1834-482d-8211-9ee1b1e12e28 -2023-07-08 08:25:13.564032 2023-07-08 08:25:13.564044 agrero A018087920 R rec 7a6e381e-ceb5-48f6-a682-16e827d44087 -2023-07-08 08:25:13.702717 2023-07-08 08:25:13.702729 agrero A018093417 R rec d6c3d3c8-b7c7-454e-99ad-0a8aea94a3f1 -2023-07-08 08:25:13.837914 2023-07-08 08:25:13.837929 agrero A018105228 R rec ed5309c9-0aee-4d3b-8c8c-4ec16c2cf9a7 -2023-07-08 08:25:13.946434 2023-07-08 08:25:13.946446 agrero A018108985 R rec aa1ab79e-4a8f-4bd5-bcf0-f07d420defdc -2023-07-08 08:25:14.067141 2023-07-08 08:25:14.067148 agrero A018112339 R rec 24306c57-9a8f-426e-b548-c6e62c9d31dc -2023-07-08 08:25:14.165066 2023-07-08 08:25:14.165077 agrero A018117701 R rec f0c9d171-5013-4e0d-992d-b29c57501b19 -2023-07-08 08:25:14.2813 2023-07-08 08:25:14.281319 agrero A018138835 R rec fccf3191-75b9-45b4-83e1-2a1b9334f625 -2023-07-08 08:25:14.391786 2023-07-08 08:25:14.391796 agrero A018140650 R rec 74fb1020-81bb-49cc-8603-c04b937aff42 -2023-07-08 08:25:14.50696 2023-07-08 08:25:14.50697 agrero A018155271 R rec dc0691c5-e729-4fbc-8ad2-d0d0d425d601 -2023-07-08 08:25:14.624612 2023-07-08 08:25:14.624618 agrero A018157124 R rec acd5df54-6939-4781-9571-3813b2e208b3 -2023-07-08 08:25:14.721131 2023-07-08 08:25:14.721142 agrero A018172231 R rec b6534eaa-9313-4e47-88a3-2e87c9811dab -2023-07-08 08:25:14.846581 2023-07-08 08:25:14.846598 agrero A018201635 R rec 538439a7-788b-48b3-af17-1f8f47327bb8 -2023-07-08 08:25:14.959342 2023-07-08 08:25:14.959355 agrero A018206914 R rec f9ca3d79-b98f-4465-bd99-d41f1421c0a0 -2023-07-08 08:25:15.067831 2023-07-08 08:25:15.067843 agrero A018237999 R rec 4d8645aa-17c6-43e5-8833-fd7fef265528 -2023-07-08 08:25:15.198604 2023-07-08 08:25:15.198612 agrero A018243805 R rec 081d6f9c-e9a2-4cbf-a41b-f55928fb50ec -2023-07-08 08:25:15.29875 2023-07-08 08:25:15.298762 agrero A018251580 R rec 99122312-78bf-46fe-a066-35010bdadc52 -2023-07-08 08:25:15.405218 2023-07-08 08:25:15.405231 agrero A018310828 R rec 733f7f21-940f-467d-8985-6482ca8526f7 -2023-07-08 08:25:15.515418 2023-07-08 08:25:15.515494 agrero A018321048 R rec d7b80b81-7b5a-41d6-bce6-7438c3f1804d -2023-07-08 08:25:15.624694 2023-07-08 08:25:15.624706 agrero A018322337 R rec 2e086172-1365-4a3a-8009-ace995989378 -2023-07-08 08:25:15.757023 2023-07-08 08:25:15.757166 agrero A018324391 R rec 374dece9-b28e-48b0-8959-17ed23aacb99 -2023-07-08 08:25:15.879033 2023-07-08 08:25:15.879046 agrero A018331793 R rec 1b639ef5-431c-4971-b16d-b441720a0d70 -2023-07-08 08:25:15.98325 2023-07-08 08:25:15.983263 agrero A018332342 R rec 6640573a-3d1e-4548-9197-7b0bbc8bfd22 -2023-07-08 08:25:16.080191 2023-07-08 08:25:16.080201 agrero A018345923 R rec 50aa91f5-615e-4234-b31e-2daa7a1b4cfd -2023-07-08 08:25:16.175857 2023-07-08 08:25:16.175871 agrero A018346336 R rec f2560b66-c266-46a8-831b-41108bf629e9 -2023-07-08 08:25:16.27334 2023-07-08 08:25:16.273353 agrero A018351276 R rec 77e3809c-f819-4d5d-b8a5-2d1dd2431b84 -2023-07-08 08:25:16.380343 2023-07-08 08:25:16.380356 agrero A018387362 R rec 49c30bf6-1a94-4c25-a5b2-fafe34c26331 -2023-07-08 08:25:16.483487 2023-07-08 08:25:16.4835 agrero A018391771 R rec 6e933cbd-f948-4ec8-bd1f-91d53f3b6423 -2023-07-08 08:25:16.582219 2023-07-08 08:25:16.582231 agrero A018394246 R rec f5055fca-5807-4406-877c-518ba1957dc2 -2023-07-08 08:25:16.680814 2023-07-08 08:25:16.680826 agrero A018395567 R rec 72ae25bc-b754-464c-a64d-516430d56361 -2023-07-08 08:25:16.792863 2023-07-08 08:25:16.792876 agrero A018410690 R rec e7e44c1d-27cc-4892-9d04-9a730424eaf5 -2023-07-08 08:25:16.90181 2023-07-08 08:25:16.901823 agrero A018418232 R rec 5295496a-9868-4429-b74d-82c288058fcc -2023-07-08 08:25:17.004727 2023-07-08 08:25:17.004742 agrero A018432097 R rec b06bdd11-e05b-43be-8378-d1b2154fa063 -2023-07-08 08:25:17.111391 2023-07-08 08:25:17.111404 agrero A018440172 R rec 29e54a5c-18d2-49fe-930e-951ef60ec079 -2023-07-08 08:25:17.202488 2023-07-08 08:25:17.202499 agrero A018456288 R rec 240179be-cb1a-4002-be8d-2d8ad78bc9dd -2023-07-08 08:25:17.318395 2023-07-08 08:25:17.318409 agrero A018459512 R rec 94f2bd18-ed0c-42ab-a37f-6c4007091862 -2023-07-08 08:25:17.428549 2023-07-08 08:25:17.428569 agrero A018463176 R rec a15475f2-fbcc-4690-9df7-c390a5d2b58e -2023-07-08 08:25:17.542195 2023-07-08 08:25:17.542212 agrero A018475973 R rec b74aeb55-1443-4c56-8215-c814c85ef45b -2023-07-08 08:25:17.660962 2023-07-08 08:25:17.660974 agrero A018477130 R rec 58268634-14c7-4768-99bb-6473ebb68b7b -2023-07-08 08:25:17.789255 2023-07-08 08:25:17.789261 agrero A018486553 R rec 90fef43f-3173-4795-93c4-be0f00f2163a -2023-07-08 08:25:17.899353 2023-07-08 08:25:17.899369 agrero A018541924 R rec f7a4f2e0-b058-4612-b91c-c1981393d39f -2023-07-08 08:25:18.001725 2023-07-08 08:25:18.001736 agrero A018548221 R rec 31436399-795a-48f0-943b-b8cf46c2fc86 -2023-07-08 08:25:18.142952 2023-07-08 08:25:18.142957 agrero A018556919 R rec ba7fccc7-9f6d-474b-b130-b29d54aadf22 -2023-07-08 08:25:18.243674 2023-07-08 08:25:18.243686 agrero A018562369 R rec 044e6dbf-7184-4f3e-a4d2-0df24106099a -2023-07-08 08:25:18.341466 2023-07-08 08:25:18.341478 agrero A018581906 R rec a8378394-9c87-4353-9d2a-ec2da9d13e9f -2023-07-08 08:25:18.434442 2023-07-08 08:25:18.434455 agrero A018584020 R rec 4311b9cd-a829-49ea-92cd-2e5aeca0c7eb -2023-07-08 08:25:18.545706 2023-07-08 08:25:18.545721 agrero A018585140 R rec ed7779de-a6bb-4ccd-9189-db46d84b5bf4 -2023-07-08 08:25:18.655101 2023-07-08 08:25:18.655112 agrero A018591525 R rec 11a0e404-156a-49d2-b37b-13745afd5bc6 -2023-07-08 08:25:18.764737 2023-07-08 08:25:18.764749 agrero A018606059 R rec a75437fe-4abd-4a3b-8396-5898d2862e69 -2023-07-08 08:25:18.871043 2023-07-08 08:25:18.871053 agrero A018606217 R rec fab8c58b-6ca7-4d6f-a0e9-164531aee7b6 -2023-07-08 08:25:18.985281 2023-07-08 08:25:18.985287 agrero A018610634 R rec 6c7a5f5c-5def-4ad0-9a90-686ee47dfeb9 -2023-07-08 08:25:19.081382 2023-07-08 08:25:19.081396 agrero A018613224 R rec 27c7c3d1-c256-4be2-9102-d012a162efd9 -2023-07-08 08:25:19.205077 2023-07-08 08:25:19.205091 agrero A018617749 R rec c8fc8ab8-6232-4f31-b3c0-ae10913b77aa -2023-07-08 08:25:19.331838 2023-07-08 08:25:19.33185 agrero A018623512 R rec 2a6febc2-4386-467b-bd3d-96cb66159b80 -2023-07-08 08:25:19.432678 2023-07-08 08:25:19.432689 agrero A018651679 R rec dad6da7e-5005-4b44-bf8c-8948501cd12e -2023-07-08 08:25:19.544379 2023-07-08 08:25:19.544396 agrero A018655587 R rec f0f3b190-699a-4cd0-a20e-bcf5dfdeadda -2023-07-08 08:25:19.647106 2023-07-08 08:25:19.647125 agrero A018689283 R rec f58c519c-e6cf-4cbe-a41d-c9374e8e2431 -2023-07-08 08:25:19.744192 2023-07-08 08:25:19.744209 agrero A018689940 R rec 81399bca-0915-482a-80ba-198e527f8544 -2023-07-08 08:25:19.850061 2023-07-08 08:25:19.850077 agrero A018699407 R rec 7608ddca-4851-4ca1-a264-17698bcbcddc -2023-07-08 08:25:19.956268 2023-07-08 08:25:19.95628 agrero A018703625 R rec 41937f7d-7ebd-4f23-bb74-8ce481093fd6 -2023-07-08 08:25:20.051261 2023-07-08 08:25:20.051273 agrero A018726776 R rec 67926c9c-ec33-4415-bc21-0f8b1a223179 -2023-07-08 08:25:20.162393 2023-07-08 08:25:20.162408 agrero A018750238 R rec 873fd855-38fd-44eb-b078-6d2caacbb334 -2023-07-08 08:25:20.256734 2023-07-08 08:25:20.256745 agrero A018777696 R rec 428b9d03-ddc0-4e41-8d82-2039f855c901 -2023-07-08 08:25:20.3685 2023-07-08 08:25:20.368516 agrero A018790254 R rec 3cc27c4a-acee-4963-a074-8ee7ae84ebcb -2023-07-08 08:25:20.470133 2023-07-08 08:25:20.470146 agrero A018795339 R rec e4ab7dbf-64fc-4959-b70b-49c2cf9c4a39 -2023-07-08 08:25:20.581711 2023-07-08 08:25:20.581723 agrero A018796853 R rec fb45d434-2d88-4e18-a3d4-0e2a37dc4fea -2023-07-08 08:25:20.684932 2023-07-08 08:25:20.684943 agrero A018810961 R rec 7a7bc8d5-01dd-43e5-a06c-1628837f39b7 -2023-07-08 08:25:20.806308 2023-07-08 08:25:20.806323 agrero A018836965 R rec b0e70be4-86a6-4b4f-b6c3-52b3d196b508 -2023-07-08 08:25:20.904931 2023-07-08 08:25:20.904947 agrero A018838435 R rec 08b6a48e-2454-485e-8a2f-426e7ce6ebde -2023-07-08 08:25:20.999632 2023-07-08 08:25:20.999644 agrero A018857106 R rec c93a8d11-7b9a-4359-856c-d4f0c65dcf2b -2023-07-08 08:25:21.128633 2023-07-08 08:25:21.128643 agrero A018863994 R rec 5ab21250-448d-4e77-bb6f-2882a6ff4e31 -2023-07-08 08:25:21.222983 2023-07-08 08:25:21.222995 agrero A018867909 R rec 3069c25d-8a04-4350-a127-e70b517ac3eb -2023-07-08 08:25:21.310493 2023-07-08 08:25:21.310509 agrero A018875034 R rec 9693b69b-e2b6-4727-bfba-9d4f79604edc -2023-07-08 08:25:21.430822 2023-07-08 08:25:21.430839 agrero A018879902 R rec 98944616-dccf-470d-afd9-e6258e78de5c -2023-07-08 08:25:21.563714 2023-07-08 08:25:21.56373 agrero A018880000 R rec 4e7e79ac-8502-4ff1-805f-52000871e87a -2023-07-08 08:25:21.670979 2023-07-08 08:25:21.670997 agrero A018906120 R rec b5f39801-09bc-42f6-af6f-3f7b0a874663 -2023-07-08 08:25:21.790259 2023-07-08 08:25:21.790278 agrero A018910104 R rec 248a3c86-164e-4d84-88f5-2fec2ec5c89b -2023-07-08 08:25:21.900102 2023-07-08 08:25:21.900114 agrero A018913029 R rec 5c0ef43e-cfaa-4d86-a4a7-af849403e166 -2023-07-08 08:25:22.021556 2023-07-08 08:25:22.021566 agrero A018939247 R rec 97aa12d0-b40e-4f76-b963-a28a3b3b9e27 -2023-07-08 08:25:22.138838 2023-07-08 08:25:22.138843 agrero A018946790 R rec 7e74928c-3249-4318-886e-e3d5348e8177 -2023-07-08 08:25:22.253623 2023-07-08 08:25:22.253915 agrero A018953919 R rec 07a4c80f-9b38-462c-ae16-8920a2998061 -2023-07-08 08:25:22.357962 2023-07-08 08:25:22.357975 agrero A018954799 R rec ce6c46ca-df60-49a6-a0fb-671f56be4fd2 -2023-07-08 08:25:22.4617 2023-07-08 08:25:22.46171 agrero A018986263 R rec 860236b2-1142-46df-a666-0b2364f1f9c6 -2023-07-08 08:25:22.567406 2023-07-08 08:25:22.567421 agrero A019010974 R rec 5138013c-0877-46e8-9eb5-963200405fb8 -2023-07-08 08:25:22.709013 2023-07-08 08:25:22.709027 agrero A019019750 R rec c901cbfa-7a2e-4cf5-9b53-2a7a5b2a069b -2023-07-08 08:25:22.852583 2023-07-08 08:25:22.8526 agrero A019033792 R rec 45dbc8d9-7063-4fb2-a1dc-cdaa6b463e77 -2023-07-08 08:25:22.969493 2023-07-08 08:25:22.969503 agrero A019052882 R rec 6fbdf168-42b7-4db8-b711-48724a6c867e -2023-07-08 08:25:23.109847 2023-07-08 08:25:23.10986 agrero A019060042 R rec bde44de9-6051-468f-8b89-bf4c533ef236 -2023-07-08 08:25:23.215321 2023-07-08 08:25:23.215332 agrero A019072876 R rec f6bacaf1-868b-43b0-aa07-7f1144f28570 -2023-07-08 08:25:23.372746 2023-07-08 08:25:23.372757 agrero A019100305 R rec c62aad05-a74e-4a00-80de-626bc6a2463a -2023-07-08 08:25:23.495802 2023-07-08 08:25:23.495813 agrero A019104065 R rec 749fd72a-09bb-415e-aa68-f05645a1e900 -2023-07-08 08:25:23.608013 2023-07-08 08:25:23.608027 agrero A019111556 R rec 100fa43c-54fc-4f32-8d5f-9c249fb2ae68 -2023-07-08 08:25:23.741322 2023-07-08 08:25:23.741335 agrero A019131066 R rec 34cf5d87-86d3-4c13-aa8d-16e15b29ca24 -2023-07-08 08:25:23.86383 2023-07-08 08:25:23.863847 agrero A019135541 R rec 0ed3c95d-fbc9-45b0-a912-35ff619d3eb1 -2023-07-08 08:25:24.014684 2023-07-08 08:25:24.0147 agrero A019156002 R rec 298a4324-2f9f-494c-b4b2-39ec9e85800f -2023-07-08 08:25:24.147156 2023-07-08 08:25:24.147167 agrero A019212102 R rec 1219ddc4-3530-4c81-9d67-4ead0a31d60d -2023-07-08 08:25:24.268694 2023-07-08 08:25:24.2687 agrero A019243832 R rec e1499dd7-d130-4df9-9a13-16e5127a4e57 -2023-07-08 08:25:24.379936 2023-07-08 08:25:24.37995 agrero A020002432 R rec 0c058b08-a23b-4661-91cc-637be36f484b -2023-07-08 08:25:24.499556 2023-07-08 08:25:24.499568 agrero A020018697 R rec 4f458fc1-6815-4450-866d-1a6ac1a285df -2023-07-08 08:25:24.612942 2023-07-08 08:25:24.612953 agrero A020026743 R rec 05c0f383-4bc5-41ea-96e1-1debfbc34e83 -2023-07-08 08:25:24.727871 2023-07-08 08:25:24.727882 agrero A020053143 R rec 99e1bde1-6187-4d56-bc00-6191ea561296 -2023-07-08 08:25:24.849159 2023-07-08 08:25:24.84917 agrero A020057293 R rec c3ae8c61-cb5f-4e79-b881-202a0c04c544 -2023-07-08 08:25:24.96514 2023-07-08 08:25:24.965151 agrero A020059215 R rec 16a62983-4c10-4085-b4fa-a5b85340b170 -2023-07-08 08:25:25.080817 2023-07-08 08:25:25.080828 agrero A020064866 R rec 421b57cd-fef7-4f6a-a6db-f75735797fa2 -2023-07-08 08:25:25.211702 2023-07-08 08:25:25.211715 agrero A020072898 R rec 30c2c22c-d5c1-4aa8-ab15-0f587f1c4114 -2023-07-08 08:25:25.31253 2023-07-08 08:25:25.31254 agrero A020078206 R rec eeca2b97-243c-45d5-a063-488f53ca6db3 -2023-07-08 08:25:25.403841 2023-07-08 08:25:25.403856 agrero A020092031 R rec 29afa6dd-c3af-420a-b0e9-4adf3b516066 -2023-07-08 08:25:25.507095 2023-07-08 08:25:25.507111 agrero A020092462 R rec 2e8f2abf-68d2-468c-8203-8e1151cf508a -2023-07-08 08:25:25.612051 2023-07-08 08:25:25.612065 agrero A020092476 R rec 6c42a102-c2f4-4ac4-814a-7c7a82de177d -2023-07-08 08:25:25.708168 2023-07-08 08:25:25.708184 agrero A020103298 R rec 7834f61f-c8a6-460a-a199-4222af55bebd -2023-07-08 08:25:25.830242 2023-07-08 08:25:25.830258 agrero A020121326 R rec 3a1f0d21-578c-490a-8634-4cd17b225b60 -2023-07-08 08:25:25.934024 2023-07-08 08:25:25.934038 agrero A020122182 R rec 2652c301-0e78-4b24-936a-33d6a543688d -2023-07-08 08:25:26.030945 2023-07-08 08:25:26.030955 agrero A020122584 R rec e2a49daf-c698-49f5-be3c-434dc1242a5d -2023-07-08 08:25:26.132378 2023-07-08 08:25:26.132389 agrero A020128356 R rec 76139889-e790-4985-b136-6ef472b45ac5 -2023-07-08 08:25:26.224929 2023-07-08 08:25:26.224943 agrero A020139475 R rec c0ec0614-4a29-42e7-9c23-0531c6634b54 -2023-07-08 08:25:26.325608 2023-07-08 08:25:26.325625 agrero A020148399 R rec 01bfc1a3-553a-43a8-81d5-53d75ffaf706 -2023-07-08 08:25:26.430938 2023-07-08 08:25:26.430951 agrero A020157288 R rec d4e95c8f-6aab-4652-88c9-bf5b5b3ea7cd -2023-07-08 08:25:26.534115 2023-07-08 08:25:26.534128 agrero A020168707 R rec 68857ef4-c311-4bf5-b79d-cb4c5d6b4f5a -2023-07-08 08:25:26.630862 2023-07-08 08:25:26.630874 agrero A020209272 R rec 9c76c61c-7d12-4c31-af7d-6193c633f87c -2023-07-08 08:25:26.729205 2023-07-08 08:25:26.729217 agrero A020211267 R rec 65d14b1a-b0e1-41f0-ab4a-41f67cb79513 -2023-07-08 08:25:26.838457 2023-07-08 08:25:26.838473 agrero A020228645 R rec bfc6ba1e-1848-48ac-bd99-5b5c1dfa8e0b -2023-07-08 08:25:26.953436 2023-07-08 08:25:26.953451 agrero A020232527 R rec 28bf98d9-8507-4cec-8c39-7501aaaabdd9 -2023-07-08 08:25:27.065926 2023-07-08 08:25:27.065945 agrero A020244189 R rec 56cc86e1-1ba1-4486-a3d4-411b0eba396f -2023-07-08 08:25:27.17983 2023-07-08 08:25:27.179841 agrero A020276000 R rec 3ec1532c-8132-4aa3-9807-c855c39029b1 -2023-07-08 08:25:27.282062 2023-07-08 08:25:27.282075 agrero A020278434 R rec ed01275d-0ae6-4db7-9700-6e6b18a885f5 -2023-07-08 08:25:27.37959 2023-07-08 08:25:27.379602 agrero A020285886 R rec df66e7f7-0719-49dc-b118-1f350ca6dca8 -2023-07-08 08:25:27.490992 2023-07-08 08:25:27.491004 agrero A020287613 R rec 4d0014ce-7af8-42d5-8b6b-f1def44bd133 -2023-07-08 08:25:27.602942 2023-07-08 08:25:27.602952 agrero A020317114 R rec b0ee4573-8785-4da3-9f93-740fc5cb825a -2023-07-08 08:25:27.724804 2023-07-08 08:25:27.724817 agrero A020337204 R rec cc7d8cdd-9682-49d9-b315-84149719ea2e -2023-07-08 08:25:27.856295 2023-07-08 08:25:27.856305 agrero A020340385 R rec 7c17a687-232a-41fa-b828-baf12b9276e5 -2023-07-08 08:25:27.961068 2023-07-08 08:25:27.961084 agrero A020351109 R rec ce4fd4dc-3637-426b-a098-d500bb757238 -2023-07-08 08:25:28.071959 2023-07-08 08:25:28.071974 agrero A020355982 R rec 3eced153-a670-44f0-a917-6f07856a2cdb -2023-07-08 08:25:28.180045 2023-07-08 08:25:28.180058 agrero A020360095 R rec 7c4ed818-6ab9-4192-b05f-37dde925dc6b -2023-07-08 08:25:28.275581 2023-07-08 08:25:28.275597 agrero A020370205 R rec ac12b11f-0033-4d83-bfc6-eb6a8ea6cadf -2023-07-08 08:25:28.3805 2023-07-08 08:25:28.380511 agrero A020376367 R rec e16cacca-d880-4c1f-b455-ff91c0d14ce4 -2023-07-08 08:25:28.487368 2023-07-08 08:25:28.48738 agrero A020377292 R rec 1719a6cd-0ba3-438f-bdf0-68a738a03bea -2023-07-08 08:25:28.608893 2023-07-08 08:25:28.608907 agrero A020398544 R rec 96bb0f74-226a-40cb-a2a8-00f3094eab7f -2023-07-08 08:25:28.708632 2023-07-08 08:25:28.708648 agrero A020413592 R rec 8fd322c2-646d-48c1-99d7-9bc8af40c359 -2023-07-08 08:25:28.814559 2023-07-08 08:25:28.814575 agrero A020415873 R rec 397daf74-f420-4c6f-bdf1-9d70c870c7f2 -2023-07-08 08:25:28.910818 2023-07-08 08:25:28.910829 agrero A020417148 R rec 383930d2-79ee-44c3-94e6-63844ead78df -2023-07-08 08:25:29.009056 2023-07-08 08:25:29.009069 agrero A020436263 R rec 0233a90c-f316-4157-ac6f-3ab622dab657 -2023-07-08 08:25:29.1145 2023-07-08 08:25:29.114511 agrero A020461666 R rec 3bd80d74-04d0-4c33-acb1-60f4a5a249eb -2023-07-08 08:25:29.224687 2023-07-08 08:25:29.224702 agrero A020462104 R rec 0cc69238-01da-4436-a513-145b89734be7 -2023-07-08 08:25:29.32951 2023-07-08 08:25:29.329522 agrero A020465572 R rec e710fd18-e344-48a0-93e1-64ee87210443 -2023-07-08 08:25:29.44051 2023-07-08 08:25:29.440839 agrero A020465592 R rec 4c89b7dc-743b-4e0a-9755-fff2aea065d5 -2023-07-08 08:25:29.54531 2023-07-08 08:25:29.545325 agrero A020471717 R rec a2992607-f03c-4f9e-860c-5d046d784878 -2023-07-08 08:25:29.651892 2023-07-08 08:25:29.651909 agrero A020478658 R rec 656c30f6-3adf-40e1-8df3-95ae45d2e12a -2023-07-08 08:25:29.778974 2023-07-08 08:25:29.778985 agrero A020487139 R rec 953ba3de-1b5e-401b-b55a-9a360338037b -2023-07-08 08:25:29.877273 2023-07-08 08:25:29.877285 agrero A020500799 R rec 2f076a1e-ba4d-4b82-befd-fda10b8098f3 -2023-07-08 08:25:29.985485 2023-07-08 08:25:29.985502 agrero A021510454 R rec b34be0e7-0844-44cd-a203-28611f726c85 -2023-07-08 08:25:30.096441 2023-07-08 08:25:30.096454 agrero A021514179 R rec ab1877d4-9321-4865-9156-19e2cb445a28 -2023-07-08 08:25:30.214849 2023-07-08 08:25:30.214867 agrero A021535410 R rec 8190f346-5fe2-4489-bc38-ccff1b2adacb -2023-07-08 08:25:30.326923 2023-07-08 08:25:30.326935 agrero A021609811 R rec 150b40e6-a222-43b2-b219-eba1af441f97 -2023-07-08 08:25:30.443948 2023-07-08 08:25:30.443959 agrero A021617173 R rec 713bfa21-ec74-4bb4-abaf-1b808afad9de -2023-07-08 08:25:30.565784 2023-07-08 08:25:30.565797 agrero A021621256 R rec f555ef32-dbe6-4f9e-ba1e-30f29b9c2a84 -2023-07-08 08:25:30.668647 2023-07-08 08:25:30.668663 agrero A021627558 R rec c85d31e5-80e3-43a6-8ea1-d2ec40b6f2e5 -2023-07-08 08:25:30.81717 2023-07-08 08:25:30.817181 agrero A021643724 R rec b0402ea2-e24d-4bc5-b8f4-11cf13f96b84 -2023-07-08 08:25:30.954291 2023-07-08 08:25:30.954307 agrero A021650553 R rec 847a11b3-3e9f-4981-9e5c-f22dcc3c6b0e -2023-07-08 08:25:31.087523 2023-07-08 08:25:31.087537 agrero A021653398 R rec 809533b4-e43d-4918-a445-c6882a07ac11 -2023-07-08 08:25:31.2026 2023-07-08 08:25:31.202613 agrero A021657316 R rec a4b8dbd6-b8a6-4d1a-9868-24aeed0292da -2023-07-08 08:25:31.340749 2023-07-08 08:25:31.340764 agrero A021665049 R rec 7a907444-526d-42f3-bab1-379e8c949633 -2023-07-08 08:25:31.524769 2023-07-08 08:25:31.524785 agrero A021681210 R rec e59951cb-ab5a-4279-a6b7-bc4508a8e570 -2023-07-08 08:25:31.660478 2023-07-08 08:25:31.660493 agrero A021706387 R rec 2d5b9c32-323a-40a4-a997-4cad3aa71f2a -2023-07-08 08:25:31.770392 2023-07-08 08:25:31.770408 agrero A021753974 R rec 44583d70-f407-4e53-bbf5-5fb132ce6c69 -2023-07-08 08:25:31.896542 2023-07-08 08:25:31.896553 agrero A021794133 R rec d2af0132-137e-448c-8543-05832f83948a -2023-07-08 08:25:31.999753 2023-07-08 08:25:31.99977 agrero A021819945 R rec c26b36f0-0bc4-4855-b449-31c430d0b1e6 -2023-07-08 08:25:32.134022 2023-07-08 08:25:32.134033 agrero A021917468 R rec 7a8dba84-3660-4b2d-bf93-73bc88f890dc -2023-07-08 08:25:32.270658 2023-07-08 08:25:32.270673 agrero A021918604 R rec 8b75bb12-ce06-4848-bf9a-7caff046f1c2 -2023-07-08 08:25:32.38681 2023-07-08 08:25:32.386825 agrero A021921193 R rec abae90ed-fa40-4bdc-b101-a158d323b199 -2023-07-08 08:25:32.492103 2023-07-08 08:25:32.492131 agrero A021975601 R rec 7fbb088c-9b89-493a-9ee1-2b366283b8db -2023-07-08 08:25:32.598354 2023-07-08 08:25:32.598366 agrero A021988179 R rec 5e24220b-cc3e-40b1-bffc-22e82e68f2cd -2023-07-08 08:25:32.729555 2023-07-08 08:25:32.729569 agrero A021992182 R rec 1dd9bcb6-3c0f-4304-928a-524f5a110b01 -2023-07-08 08:25:32.858551 2023-07-08 08:25:32.858565 agrero A021995847 R rec 277692be-577f-469c-ba08-c97d9528e1c1 -2023-07-08 08:25:32.979378 2023-07-08 08:25:32.979389 agrero A022010442 R rec 81e31d7c-5da0-49c7-ad41-95333130722b -2023-07-08 08:25:33.09776 2023-07-08 08:25:33.097773 agrero A022253194 R rec 975f057f-26f7-4fc0-a1ed-7a79fc15f822 -2023-07-08 08:25:33.214375 2023-07-08 08:25:33.214394 agrero A022261345 R rec 919a953d-d039-462e-8ebc-0a64fd6d9322 -2023-07-08 08:25:33.346376 2023-07-08 08:25:33.346392 agrero A022263478 R rec 4eeb62df-2bd3-4b66-b1d5-9bc32b49b658 -2023-07-08 08:25:33.452709 2023-07-08 08:25:33.452725 agrero A022416217 R rec dabed84b-d426-44dd-9b04-621d941613e4 -2023-07-08 08:25:33.560963 2023-07-08 08:25:33.560975 agrero A022476006 R rec 2a55f422-bf7f-4249-9f6b-bba5c93caab4 -2023-07-08 08:25:33.719134 2023-07-08 08:25:33.71914 agrero A022502492 R rec 2615416a-3659-44c1-aaf7-ef7770989c45 -2023-07-08 08:25:33.816054 2023-07-08 08:25:33.816066 agrero A022508588 R rec 8d78096f-62f8-44b5-b930-a438f9a9e2d4 -2023-07-08 08:25:33.934141 2023-07-08 08:25:33.934163 agrero A022508598 R rec 60cbe99d-a6ab-4fac-afca-4698c33cb7a4 -2023-07-08 08:25:34.034607 2023-07-08 08:25:34.034623 agrero A022512216 R rec 83e985bc-f941-41b4-8dae-89f65d5252b9 -2023-07-08 08:25:34.142704 2023-07-08 08:25:34.142716 agrero A022533394 R rec d317ee90-3ae3-489c-8517-f5383996607e -2023-07-08 08:25:34.275796 2023-07-08 08:25:34.275813 agrero A022545173 R rec 6d12c382-21f1-4e1a-b422-998aef525c4f -2023-07-08 08:25:34.378292 2023-07-08 08:25:34.378307 agrero A022553969 R rec 2682c0bf-c2a6-45d0-a3db-fd26fa6a7448 -2023-07-08 08:25:34.504879 2023-07-08 08:25:34.50489 agrero A022563739 R rec 620f2917-91fa-43f7-baee-2a197f1de7f5 -2023-07-08 08:25:34.630217 2023-07-08 08:25:34.63023 agrero A022609222 R rec 55e109ed-4682-46e4-bd21-a199d8869554 -2023-07-08 08:25:34.730622 2023-07-08 08:25:34.730634 agrero A022669691 R rec 8b66dc15-5b3e-44b7-8209-3f474694d1eb -2023-07-08 08:25:34.83698 2023-07-08 08:25:34.836996 agrero A022727201 R rec b2e19fd7-8bae-4acf-be91-c91236693959 -2023-07-08 08:25:34.953178 2023-07-08 08:25:34.953191 agrero A022728227 R rec cc75faaf-f0cb-4c27-b5b7-985a29031ec8 -2023-07-08 08:25:35.060823 2023-07-08 08:25:35.060835 agrero A022750943 R rec 6a1a429a-c763-4da4-a451-1aff0687e4f4 -2023-07-08 08:25:35.162754 2023-07-08 08:25:35.162767 agrero A022755606 R rec cf9c08d2-8d77-45de-adfc-750397e65529 -2023-07-08 08:25:35.264689 2023-07-08 08:25:35.264705 agrero A022762257 R rec 08c30458-d25f-4e15-9429-e2611ef7d125 -2023-07-08 08:25:35.370496 2023-07-08 08:25:35.370511 agrero A022774320 R rec 0b0f2a0a-4435-4b1f-ab16-c0d626e53b00 -2023-07-08 08:25:35.485356 2023-07-08 08:25:35.485367 agrero A022779592 R rec 1ac2a737-1b72-43df-b45f-2177f9686909 -2023-07-08 08:25:35.592772 2023-07-08 08:25:35.59279 agrero A022780159 R rec 74c15326-04fc-42d2-8e6e-d707bc662dd6 -2023-07-08 08:25:35.705035 2023-07-08 08:25:35.70505 agrero A022784340 R rec 4c74fb9a-be07-4314-aff8-1350c9330922 -2023-07-08 08:25:35.834362 2023-07-08 08:25:35.834367 agrero A022788140 R rec 2b63cbb6-2acc-4cb2-a6e2-2a2e25339b12 -2023-07-08 08:25:35.940241 2023-07-08 08:25:35.940258 agrero A022802138 R rec 8964e456-b34e-45d0-8a17-a2a318846839 -2023-07-08 08:25:36.042323 2023-07-08 08:25:36.042339 agrero A022802695 R rec 9cde9e2c-2f69-4eb8-aa78-08bdfd458b4d -2023-07-08 08:25:36.17006 2023-07-08 08:25:36.170072 agrero A022817751 R rec 799bcd8d-b523-425b-a1e6-ad57ac0e2d3d -2023-07-08 08:25:36.275251 2023-07-08 08:25:36.275269 agrero A022823883 R rec 8221048d-2826-46c7-a3e1-c9195e9da350 -2023-07-08 08:25:36.37998 2023-07-08 08:25:36.379992 agrero A022833947 R rec d4bb785d-d230-4380-88fb-b6e8b0ed485a -2023-07-08 08:25:36.478531 2023-07-08 08:25:36.478544 agrero A022844215 R rec 485992a5-f0bd-4c65-b7b8-78090b6ad63c -2023-07-08 08:25:36.594 2023-07-08 08:25:36.594014 agrero A022850968 R rec 47773a4e-f0d4-4c01-aa49-7dea259044fe -2023-07-08 08:25:36.69585 2023-07-08 08:25:36.695867 agrero A022851528 R rec e2e5421b-2e35-44ed-b30f-2ffc9643e89a -2023-07-08 08:25:36.80176 2023-07-08 08:25:36.801772 agrero A022851951 R rec 123fe111-456c-4480-a969-1351faf3c611 -2023-07-08 08:25:36.922212 2023-07-08 08:25:36.922222 agrero A022877330 R rec b192b04c-2281-436c-9a46-fdcfd0a923d0 -2023-07-08 08:25:37.023235 2023-07-08 08:25:37.02325 agrero A022879961 R rec b40946a8-71fe-4769-b5f2-3d00f170ad85 -2023-07-08 08:25:37.135772 2023-07-08 08:25:37.135787 agrero A022889884 R rec c7b46287-c380-4aab-8019-734afcc5a037 -2023-07-08 08:25:37.243794 2023-07-08 08:25:37.243811 agrero A022899841 R rec 402305fa-9f51-4463-94db-850fee76cd13 -2023-07-08 08:25:37.348634 2023-07-08 08:25:37.348653 agrero A022904210 R rec dd36b1f6-db23-46cc-af55-3eba767f73a8 -2023-07-08 08:25:37.458465 2023-07-08 08:25:37.458479 agrero A022916519 R rec 935158af-f290-42e5-81b9-7aa0ce9c902b -2023-07-08 08:25:37.559439 2023-07-08 08:25:37.559452 agrero A022917527 R rec 10cb9511-c215-439a-8a45-5364223fc70e -2023-07-08 08:25:37.658723 2023-07-08 08:25:37.658742 agrero A022925286 R rec 46c5ae62-6bf9-4894-828a-6b657f8180fa -2023-07-08 08:25:37.770646 2023-07-08 08:25:37.770661 agrero A022944034 R rec 6560fe16-3194-48dd-8d92-b787dce45fe6 -2023-07-08 08:25:37.896855 2023-07-08 08:25:37.896872 agrero A022959371 R rec b740ab90-b7c3-41c6-a423-05384e3d8477 -2023-07-08 08:25:38.023578 2023-07-08 08:25:38.023597 agrero A022966454 R rec cf4b9f57-2531-4ee4-b381-4959833e0346 -2023-07-08 08:25:38.132377 2023-07-08 08:25:38.13239 agrero A022967536 R rec b62708b5-0c50-4306-803c-b9a08ed8af85 -2023-07-08 08:25:38.234603 2023-07-08 08:25:38.234617 agrero A022968022 R rec 1bacc9ed-6238-43f3-9f40-2fedf0d1c4e9 -2023-07-08 08:25:38.367851 2023-07-08 08:25:38.367863 agrero A022977898 R rec 7495f3e8-0962-4c62-9365-abca41ea88b4 -2023-07-08 08:25:38.482147 2023-07-08 08:25:38.482158 agrero A022983847 R rec 51672e41-e4a5-43f2-a846-c35fc298ae27 -2023-07-08 08:25:38.591669 2023-07-08 08:25:38.591684 agrero A022990131 R rec 21af170b-bb78-4082-862c-e7c0e8ae9e16 -2023-07-08 08:25:38.706628 2023-07-08 08:25:38.706645 agrero A022997177 R rec 3d7ea23e-cf83-4771-ad2b-b507a8755cd9 -2023-07-08 08:25:38.820768 2023-07-08 08:25:38.820783 agrero A023068067 R rec 2331242c-0164-4c34-ba0b-6eefb7ad4352 -2023-07-08 08:25:38.956859 2023-07-08 08:25:38.956872 agrero A023086196 R rec cba001d0-b99f-4cad-83b2-37b753867178 -2023-07-08 08:25:39.06351 2023-07-08 08:25:39.063527 agrero A023112678 R rec 06136631-5dec-4a3d-b4a8-802b38354fad -2023-07-08 08:25:39.174152 2023-07-08 08:25:39.174164 agrero A023114350 R rec ee735cd2-45f8-4488-93b0-61ca871b9b86 -2023-07-08 08:25:39.281449 2023-07-08 08:25:39.281461 agrero A023116130 R rec 7ff781ef-5f51-4035-88f6-4d3ca75cd8e5 -2023-07-08 08:25:39.395498 2023-07-08 08:25:39.395518 agrero A023116917 R rec 3248354a-6a2c-4b16-82d6-e2319a4630c6 -2023-07-08 08:25:39.514047 2023-07-08 08:25:39.514058 agrero A023154358 R rec 1bd312ae-cdd5-414c-9e9c-d6723ffd4cc1 -2023-07-08 08:25:39.630899 2023-07-08 08:25:39.63091 agrero A023158576 R rec f16ab95a-d1ab-4634-af2b-6d021fe8da17 -2023-07-08 08:25:39.733313 2023-07-08 08:25:39.733327 agrero A023166695 R rec 43ed28c8-c1c8-418f-943e-1f7ecadb86c4 -2023-07-08 08:25:39.865174 2023-07-08 08:25:39.865193 agrero A023168629 R rec c95c59e1-cbf6-4a17-9b54-40b25d83a99e -2023-07-08 08:25:39.972609 2023-07-08 08:25:39.972619 agrero A023182560 R rec 608da636-615a-48c1-b7af-b0cae59ca3b7 -2023-07-08 08:25:40.097069 2023-07-08 08:25:40.097082 agrero A023188004 R rec 1e2da133-bd5e-4b36-8106-5b8212b4b2a9 -2023-07-08 08:25:40.198044 2023-07-08 08:25:40.19806 agrero A023189262 R rec 61c04cc4-fb9e-4d92-bfef-194852c5a9da -2023-07-08 08:25:40.335237 2023-07-08 08:25:40.335243 agrero A023193920 R rec 4d27368c-bc94-4422-9b23-21b62ed8cb2c -2023-07-08 08:25:40.436718 2023-07-08 08:25:40.436732 agrero A023196927 R rec 4f98bc8d-0d0d-4f58-a6be-a6b8c0e4cbc7 -2023-07-08 08:25:40.539888 2023-07-08 08:25:40.539903 agrero A023205283 R rec fd30c8a9-4754-423c-9ed5-a1ba5982dda3 -2023-07-08 08:25:40.640677 2023-07-08 08:25:40.640697 agrero A023227823 R rec c18ff892-f196-4684-b41e-596bdfcd69d4 -2023-07-08 08:25:40.747347 2023-07-08 08:25:40.747359 agrero A023237776 R rec 53d5f04a-4776-4197-bd0a-92628c407981 -2023-07-08 08:25:40.844202 2023-07-08 08:25:40.844219 agrero A023249408 R rec 5be0f3c5-16cb-438e-9c9b-8e474addacf6 -2023-07-08 08:25:40.984713 2023-07-08 08:25:40.984723 agrero A023286352 R rec 8ca994f8-c59b-49d4-8175-6c6a17af1b89 -2023-07-08 08:25:41.107048 2023-07-08 08:25:41.107063 agrero A023294886 R rec e34abc60-26ce-4679-9be9-cba8f3f7cc6f -2023-07-08 08:25:41.20828 2023-07-08 08:25:41.208299 agrero A023325251 R rec 2170d825-40ad-493b-a58e-3f934f42ec20 -2023-07-08 08:25:41.313126 2023-07-08 08:25:41.313142 agrero A023343244 R rec f22941ba-ffc7-4762-88c2-d961bbe69002 -2023-07-08 08:25:41.421157 2023-07-08 08:25:41.421167 agrero A023361460 R rec f4d442eb-e73c-46f0-b3df-a9aa4b4bd6e7 -2023-07-08 08:25:41.535989 2023-07-08 08:25:41.536 agrero A023366781 R rec 7c6ade01-a8fd-4d9e-b059-93f2b75b157b -2023-07-08 08:25:41.666467 2023-07-08 08:25:41.666473 agrero A023417604 R rec 556b320c-95aa-4ec0-a0a4-d9adeb5ad1ad -2023-07-08 08:25:41.763286 2023-07-08 08:25:41.763306 agrero A023417887 R rec 4c4218c1-f9ca-4a83-be1d-b692c8ec772a -2023-07-08 08:25:41.867338 2023-07-08 08:25:41.867355 agrero A023419144 R rec 90469801-5ce7-4d26-8b36-31a1d47de7b5 -2023-07-08 08:25:41.972076 2023-07-08 08:25:41.972091 agrero A023422393 R rec dc9f1d6b-16bd-4535-b2ef-a915d2dfe87f -2023-07-08 08:25:42.098693 2023-07-08 08:25:42.098704 agrero A023425677 R rec 60fd791a-f542-4fde-8609-d292e3ae0f03 -2023-07-08 08:25:42.241357 2023-07-08 08:25:42.241369 agrero A023432176 R rec df9f50b7-27c9-44c4-8da1-2481871e5509 -2023-07-08 08:25:42.368584 2023-07-08 08:25:42.368593 agrero A023438761 R rec 491662d4-c316-4b80-8295-e70a993e03d6 -2023-07-08 08:25:42.482522 2023-07-08 08:25:42.482533 agrero A023440649 R rec dff6ed02-d5ed-47ec-926d-04c9a8a9d711 -2023-07-08 08:25:42.58218 2023-07-08 08:25:42.582191 agrero A023442924 R rec 39ae958b-ca2e-4923-9ac6-a80b7020b6c7 -2023-07-08 08:25:42.691863 2023-07-08 08:25:42.691874 agrero A023452640 R rec 7e17501b-9060-4d3a-ad1c-e256d5b47b60 -2023-07-08 08:25:42.810949 2023-07-08 08:25:42.810968 agrero A023455691 R rec 655325a9-43fb-4867-9ea5-d8e507b427c1 -2023-07-08 08:25:42.915485 2023-07-08 08:25:42.915502 agrero A023474915 R rec cc54f067-091b-43e2-9634-6fd4a287d16a -2023-07-08 08:25:43.033188 2023-07-08 08:25:43.033201 agrero A023516300 R rec c6b1415e-9045-4c5b-a495-e1741b45cb7e -2023-07-08 08:25:43.161151 2023-07-08 08:25:43.161167 agrero A023516798 R rec 72581a81-3753-4821-a01a-b5fa33258d86 -2023-07-08 08:25:43.29477 2023-07-08 08:25:43.294826 agrero A023520416 R rec 3a8e0711-eaf3-491a-8bbf-017917f9b4e8 -2023-07-08 08:25:43.392001 2023-07-08 08:25:43.392012 agrero A023524669 R rec 98070174-18fb-45a1-9963-ad2518d96c28 -2023-07-08 08:25:43.495695 2023-07-08 08:25:43.495707 agrero A023533143 R rec d14c7b41-4506-4ccb-a869-e83a8e313e0b -2023-07-08 08:25:43.610194 2023-07-08 08:25:43.610211 agrero A023570716 R rec 6f2b4cde-1817-4a28-b96c-2349cc43dd79 -2023-07-08 08:25:43.712451 2023-07-08 08:25:43.71247 agrero A023604346 R rec b4fe2bee-1bb7-45c0-a857-6cbc4067ad54 -2023-07-08 08:25:43.804561 2023-07-08 08:25:43.804575 agrero A023605931 R rec 0268f5b5-f03d-4673-bdf5-165d456b3af6 -2023-07-08 08:25:43.89456 2023-07-08 08:25:43.894577 agrero A023608022 R rec 59ac546d-3434-4cf7-b296-8c9ea8941710 -2023-07-08 08:25:43.990839 2023-07-08 08:25:43.990854 agrero A023613346 R rec a3ec9cb9-4bd3-4459-b66b-d6da47a3968f -2023-07-08 08:25:44.084539 2023-07-08 08:25:44.084552 agrero A023626167 R rec 208190e3-6c14-4513-a4d6-3ecd92d3fb55 -2023-07-08 08:25:44.185076 2023-07-08 08:25:44.185089 agrero A023644947 R rec 5f60f90f-ab4a-43fb-b829-7f0a13a6fd81 -2023-07-08 08:25:44.285343 2023-07-08 08:25:44.285359 agrero A023655893 R rec d2aa44e3-2dbc-4da2-81d4-760834953156 -2023-07-08 08:25:44.391558 2023-07-08 08:25:44.39157 agrero A023668772 R rec 074723f4-b7ce-4dfa-9ba5-23564efc889a -2023-07-08 08:25:44.512595 2023-07-08 08:25:44.512607 agrero A023690762 R rec cc433400-33d7-419a-aba1-af43bd207af0 -2023-07-08 08:25:44.608575 2023-07-08 08:25:44.608591 agrero A023693839 R rec cba98d5b-8b70-4d26-9240-2858340df3a1 -2023-07-08 08:25:44.719689 2023-07-08 08:25:44.719703 agrero A023699946 R rec e4ba07ac-c157-416a-ac0b-a02407dc3a58 -2023-07-08 08:25:44.81748 2023-07-08 08:25:44.817491 agrero A023700595 R rec 51ed4877-66bd-4f83-ac86-0c19bc22a853 -2023-07-08 08:25:44.927491 2023-07-08 08:25:44.927502 agrero A023701973 R rec 75dbdf9c-b566-46ac-8f24-58ce4071993a -2023-07-08 08:25:45.028466 2023-07-08 08:25:45.028478 agrero A023712980 R rec 96cfd35e-fd79-498b-8e2c-c490ab437132 -2023-07-08 08:25:45.12426 2023-07-08 08:25:45.124273 agrero A023720699 R rec cf681693-3dca-44ca-b1ec-a76ee42532a3 -2023-07-08 08:25:45.23204 2023-07-08 08:25:45.232052 agrero A023741754 R rec 16071e54-fbe6-46ca-aef0-39b9661279b2 -2023-07-08 08:25:45.351534 2023-07-08 08:25:45.351553 agrero A023763587 R rec 467746ec-4534-4f08-9a92-4b796aa0aff8 -2023-07-08 08:25:45.463763 2023-07-08 08:25:45.463777 agrero A023783324 R rec ae5cb8da-d8a1-4084-b4e1-f36a799247d2 -2023-07-08 08:25:45.581199 2023-07-08 08:25:45.581212 agrero A023806510 R rec 7bdd0a05-6bef-4bd8-b941-f787f20c6553 -2023-07-08 08:25:45.694934 2023-07-08 08:25:45.694951 agrero A023814163 R rec a5d8300c-a377-415d-9bd4-4b02c230e8e8 -2023-07-08 08:25:45.814278 2023-07-08 08:25:45.814296 agrero A023822688 R rec 146f80f6-35af-4594-b31e-a1880f4b6d06 -2023-07-08 08:25:45.920918 2023-07-08 08:25:45.920934 agrero A023822699 R rec b445a9c8-b899-44fc-a4f8-dcf57461fa45 -2023-07-08 08:25:46.031218 2023-07-08 08:25:46.031231 agrero A023822966 R rec a6476569-8ec8-4424-8db0-3f4677b4261b -2023-07-08 08:25:46.131617 2023-07-08 08:25:46.13163 agrero A023823517 R rec 0f027b7f-fd68-4c9a-a26c-c54b19912d3c -2023-07-08 08:25:46.236348 2023-07-08 08:25:46.236358 agrero A023823557 R rec 38c99b72-7bf6-44c2-aa64-37f2b5d4c507 -2023-07-08 08:25:46.341007 2023-07-08 08:25:46.34102 agrero A023848289 R rec edc87e7b-f846-448f-b06e-44024fb86104 -2023-07-08 08:25:46.440352 2023-07-08 08:25:46.440368 agrero A023869329 R rec ed8aac31-5617-4137-a28b-25a651cfdaa8 -2023-07-08 08:25:46.554142 2023-07-08 08:25:46.554157 agrero A023948966 R rec 3fbe071e-e73e-4f14-a337-2160985bcb50 -2023-07-08 08:25:46.667721 2023-07-08 08:25:46.667739 agrero A023960471 R rec 0c03b86e-22c9-48ea-b81b-49b127d6d995 -2023-07-08 08:25:46.784511 2023-07-08 08:25:46.784527 agrero A023966957 R rec d8a66ff2-b761-4ab6-9754-d41a69bb5801 -2023-07-08 08:25:46.908949 2023-07-08 08:25:46.908965 agrero A023969519 R rec 3bb06766-231b-4112-b826-6e63d5a7cb1c -2023-07-08 08:25:47.028505 2023-07-08 08:25:47.028518 agrero A023985610 R rec 5962c889-cd3f-474b-aa2c-c80f8f4f1cb5 -2023-07-08 08:25:47.131822 2023-07-08 08:25:47.131834 agrero A023993514 R rec 61957b5c-fb55-485f-b579-b080dc27749e -2023-07-08 08:25:47.243062 2023-07-08 08:25:47.243082 agrero A023994589 R rec 8d0e3990-6cd2-45f7-8be7-693e251ca24b -2023-07-08 08:25:47.350872 2023-07-08 08:25:47.350888 agrero A024017606 R rec a5ba7e63-1628-4ee0-87c3-3c244a19317a -2023-07-08 08:25:47.461494 2023-07-08 08:25:47.461512 agrero A024032635 R rec fb91054d-dfbb-442b-be1f-ddcfaf0d9dc8 -2023-07-08 08:25:47.568348 2023-07-08 08:25:47.568368 agrero A024034240 R rec a7122675-2458-4a7f-86c7-1fbd33d5ec89 -2023-07-08 08:25:47.686292 2023-07-08 08:25:47.686307 agrero A024042745 R rec 87b6998f-f49b-4936-a29d-73e31f012e8b -2023-07-08 08:25:47.797231 2023-07-08 08:25:47.797248 agrero A024043552 R rec 3969dd92-0888-439f-a7fb-b2b5865e4b98 -2023-07-08 08:25:47.921648 2023-07-08 08:25:47.921664 agrero A024063413 R rec 859f6b90-30dc-4aa2-99a3-4fe9f3433d03 -2023-07-08 08:25:48.026532 2023-07-08 08:25:48.026548 agrero A024072354 R rec a3ee4119-7a3f-4619-b15d-5a92626359a9 -2023-07-08 08:25:48.126906 2023-07-08 08:25:48.126922 agrero A024073610 R rec 0d3f8598-b648-4cdf-984d-0b4c218461fd -2023-07-08 08:25:48.231914 2023-07-08 08:25:48.231927 agrero A024075381 R rec 870492f7-fe60-4473-bb4b-08cee9a251fa -2023-07-08 08:25:48.35682 2023-07-08 08:25:48.356837 agrero A024079443 R rec 7c18e203-cfd7-4875-add1-783dea5c36b0 -2023-07-08 08:25:48.465257 2023-07-08 08:25:48.465274 agrero A024083167 R rec 947dc55c-814c-444a-b8b7-b70b73dacafe -2023-07-08 08:25:48.570997 2023-07-08 08:25:48.571007 agrero A024099458 R rec 504685e7-498d-42bf-be52-d2f107c84833 -2023-07-08 08:25:48.683063 2023-07-08 08:25:48.683074 agrero A024107085 R rec cd3aacf9-af54-4cd1-bb29-ec525e4878f9 -2023-07-08 08:25:48.789811 2023-07-08 08:25:48.789828 agrero A024109666 R rec da719cb7-eec8-4e06-967e-30bd2204ac1f -2023-07-08 08:25:48.887388 2023-07-08 08:25:48.887398 agrero A024119960 R rec a75cd37e-c08f-4762-8119-f4b1c09878f1 -2023-07-08 08:25:48.988508 2023-07-08 08:25:48.988523 agrero A024120760 R rec 03eae6e2-b330-40cd-a59d-352df02d672f -2023-07-08 08:25:49.104494 2023-07-08 08:25:49.10458 agrero A024123847 R rec 9b54aed1-6edb-4014-8b34-adc07a308fef -2023-07-08 08:25:49.208645 2023-07-08 08:25:49.208667 agrero A024135505 R rec 403ef8a6-1c0a-48a3-9689-1b36acd6e36a -2023-07-08 08:25:49.318839 2023-07-08 08:25:49.318852 agrero A024137299 R rec ed0f49d2-2614-45d9-b031-2c1a850b9e10 -2023-07-08 08:25:49.418369 2023-07-08 08:25:49.418388 agrero A024141965 R rec f9cd78d7-9130-457f-8c81-734a2e511c20 -2023-07-08 08:25:49.522979 2023-07-08 08:25:49.522993 agrero A024152276 R rec eece8386-b5e1-465f-a9ad-8d2cc6fb5f44 -2023-07-08 08:25:49.633506 2023-07-08 08:25:49.633521 agrero A024180345 R rec 20747071-eced-4e06-8e5a-35e849ff5636 -2023-07-08 08:25:49.734098 2023-07-08 08:25:49.734112 agrero A024182024 R rec c2e3bf57-9aa5-4b84-b63d-71590d2ea671 -2023-07-08 08:25:49.841974 2023-07-08 08:25:49.841991 agrero A024188404 R rec 213af179-a678-4903-b495-703cd0e1fd79 -2023-07-08 08:25:49.938163 2023-07-08 08:25:49.938179 agrero A024193588 R rec e6e36478-881f-4696-b04c-ccba31b9d34e -2023-07-08 08:25:50.042606 2023-07-08 08:25:50.042622 agrero A024201811 R rec 00b79903-ed03-46cc-bf8b-7264cf25da54 -2023-07-08 08:25:50.149171 2023-07-08 08:25:50.149186 agrero A024207312 R rec b48ec327-e007-442f-90f8-cc94c4226116 -2023-07-08 08:25:50.253523 2023-07-08 08:25:50.253532 agrero A024239773 R rec ec89f8ce-0564-4ede-b16f-8ed43b806e28 -2023-07-08 08:25:50.35717 2023-07-08 08:25:50.357186 agrero A024248736 R rec e51fb398-c42f-4451-8edf-66111ad5373b -2023-07-08 08:25:50.461591 2023-07-08 08:25:50.461607 agrero A024250351 R rec d673d59b-e545-496c-a7fa-1643aeae5b61 -2023-07-08 08:25:50.566166 2023-07-08 08:25:50.566177 agrero A024250841 R rec 05040c3e-96f4-4241-9c89-6c244bf6eddb -2023-07-08 08:25:50.670512 2023-07-08 08:25:50.670527 agrero A024251528 R rec 8c8b18ab-59cd-4177-bdef-0c0e9cfc1bbe -2023-07-08 08:25:50.779314 2023-07-08 08:25:50.779326 agrero A024255039 R rec 94df9a6e-f1b3-4444-b62b-49b035a6aa98 -2023-07-08 08:25:50.885222 2023-07-08 08:25:50.885234 agrero A024295112 R rec cc94cc88-41a9-403c-b0fb-119dd004dc4e -2023-07-08 08:25:50.992525 2023-07-08 08:25:50.992542 agrero A024305757 R rec d44d361a-42d7-451f-b6c2-7421aa90b985 -2023-07-08 08:25:51.092633 2023-07-08 08:25:51.092649 agrero A024311492 R rec 3d4ec6d5-1e32-4d15-8f5b-b9afff58c09c -2023-07-08 08:25:51.198459 2023-07-08 08:25:51.198474 agrero A024314866 R rec 87516789-6fbc-4562-81b5-c5574a654ccd -2023-07-08 08:25:51.30113 2023-07-08 08:25:51.301147 agrero A024316631 R rec dd9fd70b-8712-4f98-bd0d-aad38187f179 -2023-07-08 08:25:51.401445 2023-07-08 08:25:51.401459 agrero A024326128 R rec 5ece4f1b-77da-42d3-b08c-c7f1637672c0 -2023-07-08 08:25:51.506383 2023-07-08 08:25:51.506398 agrero A024329523 R rec 14620d15-f808-4757-b69a-c5b1aecbf16a -2023-07-08 08:25:51.622665 2023-07-08 08:25:51.622698 agrero A024329741 R rec d7c71fa4-5347-4da2-93d7-6f502e9bae5f -2023-07-08 08:25:51.730242 2023-07-08 08:25:51.730254 agrero A024333154 R rec 90ee706d-8e46-491a-b30b-2b2d57a82996 -2023-07-08 08:25:51.842706 2023-07-08 08:25:51.842718 agrero A024352277 R rec 51dd7d90-195c-4bf8-b30a-aedd0c55b9d8 -2023-07-08 08:25:51.938327 2023-07-08 08:25:51.938339 agrero A024368303 R rec fc65c429-3e93-48f3-a397-84a59c5b0eac -2023-07-08 08:25:52.057768 2023-07-08 08:25:52.057785 agrero A024370974 R rec 84eeaba6-3e04-4eae-8e1f-235e5f921135 -2023-07-08 08:25:52.175762 2023-07-08 08:25:52.175778 agrero A024377672 R rec ed62a0da-228e-4ce6-bc24-15bde4a16461 -2023-07-08 08:25:52.281047 2023-07-08 08:25:52.281061 agrero A024381221 R rec f500264f-9e64-4ab7-84b6-444a82dfb0b0 -2023-07-08 08:25:52.391337 2023-07-08 08:25:52.391407 agrero A024413945 R rec b1f0c306-fa3d-479f-9d7b-7193d4df06e1 -2023-07-08 08:25:52.501039 2023-07-08 08:25:52.501055 agrero A024416324 R rec 08c10676-c601-4197-ac82-2bcafd6c78d7 -2023-07-08 08:25:52.611382 2023-07-08 08:25:52.611399 agrero A024424763 R rec af20015a-5cbf-463b-b5f2-7d28af038bb1 -2023-07-08 08:25:52.715542 2023-07-08 08:25:52.715558 agrero A024446255 R rec b2bbf82d-5895-4ced-80a7-63675d9c089e -2023-07-08 08:25:52.819922 2023-07-08 08:25:52.819933 agrero A024465489 R rec 2e12a684-cd6c-41b7-90bc-c7633b240d1d -2023-07-08 08:25:52.918806 2023-07-08 08:25:52.918822 agrero A024466417 R rec fb8a7976-5637-4052-ad92-147967737d65 -2023-07-08 08:25:53.03268 2023-07-08 08:25:53.032694 agrero A024471669 R rec b281d4cf-c54b-4bd1-8a5f-fbb941b562fa -2023-07-08 08:25:53.136464 2023-07-08 08:25:53.136479 agrero A024478155 R rec 56d8e906-2014-40bb-9ee4-9c125213a439 -2023-07-08 08:25:53.242286 2023-07-08 08:25:53.242301 agrero A024478463 R rec 90d4a967-1ce3-4337-a37e-0e312297c0a4 -2023-07-08 08:25:53.348758 2023-07-08 08:25:53.348777 agrero A024478863 R rec 05e0af98-ad84-40bb-84e7-b66e201c9bb3 -2023-07-08 08:25:53.449679 2023-07-08 08:25:53.449695 agrero A024480400 R rec 91595081-1f2c-45ee-aa57-f30e9e69c5f2 -2023-07-08 08:25:53.552963 2023-07-08 08:25:53.55298 agrero A024491342 R rec 3da9d219-004d-40ac-b0fd-5061c589c8a2 -2023-07-08 08:25:53.665276 2023-07-08 08:25:53.665292 agrero A024527296 R rec fb3294ee-5e01-4b4a-9962-40a0139bdb4e -2023-07-08 08:25:53.772842 2023-07-08 08:25:53.772857 agrero A024528563 R rec e5a37f20-1d7e-4346-b38b-57db31c4985c -2023-07-08 08:25:53.886008 2023-07-08 08:25:53.886021 agrero A024529059 R rec 94c78e67-8f56-4827-8930-1919e9f4a8ef -2023-07-08 08:25:53.988569 2023-07-08 08:25:53.988585 agrero A024541309 R rec 6be05c9a-aae4-4c8f-9a84-bcbc8f721c59 -2023-07-08 08:25:54.107723 2023-07-08 08:25:54.107734 agrero A024566467 R rec c6ce264d-54c0-4170-bc02-594333d330db -2023-07-08 08:25:54.222355 2023-07-08 08:25:54.22237 agrero A024569645 R rec a42f47d6-364f-44bc-827c-146b10b6c109 -2023-07-08 08:25:54.339498 2023-07-08 08:25:54.339508 agrero A024595109 R rec 333bf170-ffed-4565-920f-77f89157070d -2023-07-08 08:25:54.478836 2023-07-08 08:25:54.478853 agrero A024595509 R rec f900f339-7a43-439c-bfe0-edd6b504ddac -2023-07-08 08:25:54.596746 2023-07-08 08:25:54.596757 agrero A024600161 R rec 2cc5c958-fcc0-4dda-8242-d15ea9a0a985 -2023-07-08 08:25:54.705348 2023-07-08 08:25:54.705364 agrero A024602006 R rec 906234fb-7b89-42fd-8f6a-1a9afda0fe3f -2023-07-08 08:25:54.822192 2023-07-08 08:25:54.822203 agrero A024707851 R rec 850ee5e9-06ed-44af-b692-d95327711cd2 -2023-07-08 08:25:54.930645 2023-07-08 08:25:54.930656 agrero A024728544 R rec 742617b6-e3f4-42e7-acc5-a2b52107debd -2023-07-08 08:25:55.03067 2023-07-08 08:25:55.030687 agrero A024729479 R rec b5fee03f-9479-42fe-9fc5-e0cf56e5c6b9 -2023-07-08 08:25:55.146103 2023-07-08 08:25:55.146116 agrero A024746147 R rec 27d7bc81-9413-46fc-b30e-1ee8a5c6f4dd -2023-07-08 08:25:55.248674 2023-07-08 08:25:55.248687 agrero A024770093 R rec 1cc57f1b-1e6e-47a5-96a0-c1fbb86b0ca9 -2023-07-08 08:25:55.3607 2023-07-08 08:25:55.360717 agrero A024774397 R rec e120f5d0-9088-4c0e-b17d-d079dd9bac1e -2023-07-08 08:25:55.463352 2023-07-08 08:25:55.463365 agrero A024790283 R rec ba358297-569b-4459-9175-e8f74dc4017a -2023-07-08 08:25:55.579939 2023-07-08 08:25:55.57995 agrero A024801676 R rec 464a4eda-36d3-44a0-ba98-0b80015bf17b -2023-07-08 08:25:55.692278 2023-07-08 08:25:55.692289 agrero A024814391 R rec 091062ee-6817-42f8-b86e-aac85c8db8a7 -2023-07-08 08:25:55.830391 2023-07-08 08:25:55.830407 agrero A024843767 R rec f261023f-5856-4738-b9a8-768e36dda177 -2023-07-08 08:25:55.957519 2023-07-08 08:25:55.957531 agrero A024846924 R rec 39a1e2e8-3633-4d47-8520-1919825c4c7f -2023-07-08 08:25:56.083072 2023-07-08 08:25:56.083092 agrero A024866515 R rec b3a42382-fb1e-47f1-ad22-4e4a37bb7e27 -2023-07-08 08:25:56.203727 2023-07-08 08:25:56.203745 agrero A024878364 R rec aa94f6ed-b438-4b8d-8de3-935da2c36563 -2023-07-08 08:25:56.33012 2023-07-08 08:25:56.330139 agrero A024884886 R rec c01f1e27-3818-461d-83d4-2574b9e67b09 -2023-07-08 08:25:56.447962 2023-07-08 08:25:56.447981 agrero A024896750 R rec 851f92e0-ba11-47aa-a32b-1d3729ebde5f -2023-07-08 08:25:56.564191 2023-07-08 08:25:56.564207 agrero A024897034 R rec 831a1850-e6ba-4756-861a-c668f2eb4445 -2023-07-08 08:25:56.672865 2023-07-08 08:25:56.67288 agrero A024917771 R rec cc48c84a-5533-433e-a4fa-862046c82073 -2023-07-08 08:25:56.78356 2023-07-08 08:25:56.783571 agrero A024919899 R rec 83acc9b9-b2ed-4b77-9e42-2b21e1f5cffa -2023-07-08 08:25:56.903215 2023-07-08 08:25:56.903232 agrero A024930424 R rec ed120042-8a12-4f49-9d2e-3e59087a8389 -2023-07-08 08:25:57.013297 2023-07-08 08:25:57.013316 agrero A024960848 R rec 29d0f710-b2c0-473a-99c1-e2ba179c47ef -2023-07-08 08:25:57.119485 2023-07-08 08:25:57.119496 agrero A024966631 R rec 36941f87-a142-487b-8b9a-97dfc92180b0 -2023-07-08 08:25:57.222711 2023-07-08 08:25:57.222721 agrero A024969731 R rec 1730346f-b2b9-49b1-878e-08c4bf57abba -2023-07-08 08:25:57.331276 2023-07-08 08:25:57.331287 agrero A024978532 R rec 4d552d11-eb97-4082-9e11-d5fa0febffee -2023-07-08 08:25:57.431695 2023-07-08 08:25:57.431709 agrero A024983874 R rec b454bdc9-9e45-46ea-b429-29096c25ef80 -2023-07-08 08:25:57.541728 2023-07-08 08:25:57.541744 agrero A025024778 R rec a8650990-12d2-4325-9317-adc685a8fc19 -2023-07-08 08:25:57.658645 2023-07-08 08:25:57.658661 agrero A025029914 R rec 8c65642e-c024-4708-983c-4771ae396234 -2023-07-08 08:25:57.770661 2023-07-08 08:25:57.770676 agrero A025056747 R rec cec8a0de-7e84-4852-bfd1-4292d830cebb -2023-07-08 08:25:57.886897 2023-07-08 08:25:57.886913 agrero A025075603 R rec 279ad39b-feaa-4052-adf6-dadf76eef322 -2023-07-08 08:25:57.99493 2023-07-08 08:25:57.994942 agrero A025086688 R rec 1bbf6f36-7c25-4ddc-bf01-b0272acf30ab -2023-07-08 08:25:58.102018 2023-07-08 08:25:58.102038 agrero A025119661 R rec 267327ba-f8f6-481b-9704-3a1d27e02cdf -2023-07-08 08:25:58.212533 2023-07-08 08:25:58.212549 agrero A025121507 R rec 5b0a0fae-9f19-4b28-9634-f12a05ebb53a -2023-07-08 08:25:58.312686 2023-07-08 08:25:58.312703 agrero A025244362 R rec 14c5ff21-04fd-4cc1-88b9-a20c831a225e -2023-07-08 08:25:58.435924 2023-07-08 08:25:58.435946 agrero A025252592 R rec 874698c6-5ae0-4442-90b2-a1a253c28969 -2023-07-08 08:25:58.544665 2023-07-08 08:25:58.544682 agrero A025258576 R rec 6d941067-9a85-4473-a26e-df410a58e66a -2023-07-08 08:25:58.667246 2023-07-08 08:25:58.667262 agrero A025259137 R rec 1049bcd3-52a2-4bdb-8ebc-129a3a71fbfb -2023-07-08 08:25:58.768937 2023-07-08 08:25:58.768955 agrero A025287146 R rec 74800e41-4908-4892-9149-71ad97ce6aea -2023-07-08 08:25:58.8745 2023-07-08 08:25:58.874517 agrero A025328121 R rec b00db072-42d2-4faa-af35-7351e5f4c959 -2023-07-08 08:25:58.995171 2023-07-08 08:25:58.995188 agrero A025329777 R rec 0bcd3b1f-8ff1-4376-923e-2891ffdbb33a -2023-07-08 08:25:59.106216 2023-07-08 08:25:59.106229 agrero A025330235 R rec 946f5920-2397-406f-9db2-31c3b688f69b -2023-07-08 08:25:59.222648 2023-07-08 08:25:59.222665 agrero A025337143 R rec 3bf93799-69b3-4488-92f0-59c45e3f90de -2023-07-08 08:25:59.335388 2023-07-08 08:25:59.335399 agrero A025360796 R rec b7f3e753-1973-4bf4-afc5-d3ff04b2d51a -2023-07-08 08:25:59.445057 2023-07-08 08:25:59.445068 agrero A025367912 R rec 81379039-569d-48bf-a069-21ecec0de05c -2023-07-08 08:25:59.563841 2023-07-08 08:25:59.56386 agrero A025387385 R rec ada21491-ec3e-4d0d-87a8-2b579d90e15e -2023-07-08 08:25:59.670928 2023-07-08 08:25:59.670944 agrero A025397944 R rec a6358e42-6e69-4718-8d82-b08f8eafdce5 -2023-07-08 08:25:59.775491 2023-07-08 08:25:59.775505 agrero A025418238 R rec ef4b7941-275e-4b7c-9d06-a9d93a43f87d -2023-07-08 08:25:59.896358 2023-07-08 08:25:59.89637 agrero A025435600 R rec 210cf93e-a6f6-4af3-ad8e-d8e0abc4d01c -2023-07-08 08:26:00.024677 2023-07-08 08:26:00.024683 agrero A025454683 R rec bd9fafaa-c489-460a-9494-aabc46556b80 -2023-07-08 08:26:00.114712 2023-07-08 08:26:00.114728 agrero A025477095 R rec 5be774ab-c899-42ec-a03e-2d1f830cd7f2 -2023-07-08 08:26:00.230241 2023-07-08 08:26:00.230253 agrero A025504164 R rec a8cd5b23-5367-4083-be4b-953c059a521f -2023-07-08 08:26:00.368185 2023-07-08 08:26:00.368199 agrero A025537929 R rec 5be309a8-fcb4-4ca7-979e-c4219603f4b9 -2023-07-08 08:26:00.48126 2023-07-08 08:26:00.481271 agrero A025540309 R rec 0265d941-3aa8-4899-87a4-6c61c03270cf -2023-07-08 08:26:00.590363 2023-07-08 08:26:00.590381 agrero A025581873 R rec bcae8ae5-e947-4e40-b75b-5611e4ec4292 -2023-07-08 08:26:00.764993 2023-07-08 08:26:00.765004 agrero A025582144 R rec 1610077c-85cb-457e-a832-6694b1219ca3 -2023-07-08 08:26:00.994168 2023-07-08 08:26:00.994179 agrero A025610247 R rec ddf6c31c-b62c-4f8a-b7b7-538907c3e7a3 -2023-07-08 08:26:01.128338 2023-07-08 08:26:01.128349 agrero A025614399 R rec 937812ce-c59b-4273-b76e-9a0fa8cdfda5 -2023-07-08 08:26:01.257315 2023-07-08 08:26:01.257325 agrero A025630450 R rec 0b3b8e3e-c215-41f5-bf62-54f3f7c4a059 -2023-07-08 08:26:01.375257 2023-07-08 08:26:01.375268 agrero A025632565 R rec 35f21778-c9d0-4917-b64a-597b990c447c -2023-07-08 08:26:01.482168 2023-07-08 08:26:01.482179 agrero A025639432 R rec 43795bfd-9d65-44c3-9e6a-3127a1a9e094 -2023-07-08 08:26:01.611071 2023-07-08 08:26:01.611082 agrero A025669520 R rec 3ece9f6b-ddfd-4c29-adec-b6370a0a025b -2023-07-08 08:26:01.752969 2023-07-08 08:26:01.75298 agrero A025676459 R rec 792844b0-5b36-41c5-9560-c4a36d0b1631 -2023-07-08 08:26:01.90485 2023-07-08 08:26:01.904862 agrero A025678092 R rec 18fc4047-a479-4b57-8ef5-2911d4e32d68 -2023-07-08 08:26:02.030617 2023-07-08 08:26:02.030633 agrero A025679166 R rec 36f0ae91-ef49-4f7c-b5ae-b51ae938862e -2023-07-08 08:26:02.154664 2023-07-08 08:26:02.154674 agrero A025681987 R rec 210a7f07-bc92-4167-be18-164d55fb9789 -2023-07-08 08:26:02.287221 2023-07-08 08:26:02.287232 agrero A025688432 R rec fca008b8-d17c-4636-8a96-78c046cd4e74 -2023-07-08 08:26:02.435764 2023-07-08 08:26:02.435769 agrero A025691379 R rec 17b9328a-64f7-409f-84e8-0e73b9079e14 -2023-07-08 08:26:02.555278 2023-07-08 08:26:02.555289 agrero A025694319 R rec ab12f8b4-ee3c-425f-8629-82dc8bf98f55 -2023-07-08 08:26:02.673498 2023-07-08 08:26:02.673514 agrero A025711026 R rec b4433caa-cacc-48c6-a368-6c4e54dceb3d -2023-07-08 08:26:02.791766 2023-07-08 08:26:02.791782 agrero A025712587 R rec 2bd95df8-967f-4401-bbef-ed8ef7da7643 -2023-07-08 08:26:02.909192 2023-07-08 08:26:02.909205 agrero A025721356 R rec 8f68dc51-ba29-45b0-8561-d6409ab16e55 -2023-07-08 08:26:03.019446 2023-07-08 08:26:03.019463 agrero A025723446 R rec 52ef8712-0d84-4791-8b1d-cf5b8757d133 -2023-07-08 08:26:03.134397 2023-07-08 08:26:03.13441 agrero A025730129 R rec b4f307c0-e19d-4d19-9887-d2a4399f25ac -2023-07-08 08:26:03.24213 2023-07-08 08:26:03.24214 agrero A025745173 R rec 6f989dc1-c1cc-401a-9fb4-8fc71ed28887 -2023-07-08 08:26:03.360051 2023-07-08 08:26:03.360068 agrero A025772014 R rec 08887566-7393-451d-badd-31d93a81cd99 -2023-07-08 08:26:03.464862 2023-07-08 08:26:03.464878 agrero A025773339 R rec f2db710c-1958-4ed7-96e6-18f85aaf1498 -2023-07-08 08:26:03.580563 2023-07-08 08:26:03.580573 agrero A025780261 R rec 6599c27f-c4b0-43a5-ad21-c78679cc8f75 -2023-07-08 08:26:03.684766 2023-07-08 08:26:03.684781 agrero A025785978 R rec c666f4cb-f21f-4e70-abf5-0348dd8bab1d -2023-07-08 08:26:03.795913 2023-07-08 08:26:03.795928 agrero A025796144 R rec 5b189e40-a12d-4bea-aff3-e7f8af6c115f -2023-07-08 08:26:03.935001 2023-07-08 08:26:03.935017 agrero A025797147 R rec 06682490-c691-41b0-a729-5da1fe406494 -2023-07-08 08:26:04.048211 2023-07-08 08:26:04.048227 agrero A025804299 R rec 8da8db31-f4ad-49b7-8090-52213cf07e22 -2023-07-08 08:26:04.158428 2023-07-08 08:26:04.158444 agrero A025826851 R rec 7acce30a-1990-4805-a36c-bdc1e6646359 -2023-07-08 08:26:04.272893 2023-07-08 08:26:04.272908 agrero A025833339 R rec 6caeb0cf-9ab2-4396-80ef-ed993df080d1 -2023-07-08 08:26:04.381778 2023-07-08 08:26:04.381788 agrero A025835776 R rec af27cf35-49bc-425f-843b-39f109d15fbe -2023-07-08 08:26:04.489138 2023-07-08 08:26:04.489154 agrero A025837185 R rec 6af7fad8-4ddd-42f2-b97a-77781ebb38ad -2023-07-08 08:26:04.619718 2023-07-08 08:26:04.61973 agrero A025845397 R rec 3c396464-3a95-4a91-8339-15af3c4882d4 -2023-07-08 08:26:04.760065 2023-07-08 08:26:04.760082 agrero A025848952 R rec 6c927a3c-33c0-4d48-aac2-576520630c5a -2023-07-08 08:26:04.869553 2023-07-08 08:26:04.869568 agrero A025851501 R rec ff3ee9a6-e3ba-4b1f-91fb-1c84aed776e8 -2023-07-08 08:26:04.982801 2023-07-08 08:26:04.982813 agrero A025884069 R rec 342c5ebc-d1df-460b-9947-15172f478687 -2023-07-08 08:26:05.120075 2023-07-08 08:26:05.120085 agrero A025890846 R rec b6f0993f-d58c-491e-a8be-c2d3a3df7a8d -2023-07-08 08:26:05.231602 2023-07-08 08:26:05.231618 agrero A025893734 R rec 0cbdc85e-51d3-432c-9eb5-919c3925547e -2023-07-08 08:26:05.357982 2023-07-08 08:26:05.357994 agrero A025926750 R rec afcb4b24-759e-464d-a51f-0637545b7dfe -2023-07-08 08:26:05.496515 2023-07-08 08:26:05.496527 agrero A025930633 R rec 753035ce-0c68-469d-a379-1992eaae7674 -2023-07-08 08:26:05.612672 2023-07-08 08:26:05.612688 agrero A025932364 R rec fb77445b-b0a4-42d0-a001-8d97b9fb6fa2 -2023-07-08 08:26:05.76965 2023-07-08 08:26:05.769664 agrero A025951707 R rec de28a926-45d2-4a13-96b3-cb5d27321820 -2023-07-08 08:26:05.897078 2023-07-08 08:26:05.897093 agrero A025956739 R rec cdb56294-5150-49ea-a598-f3902cbedf2c -2023-07-08 08:26:06.039374 2023-07-08 08:26:06.039393 agrero A025958419 R rec ea1390e9-b290-43db-85a8-c442cc98509f -2023-07-08 08:26:06.173248 2023-07-08 08:26:06.17326 agrero A025965491 R rec 22abc4ff-6b43-4a74-b806-2a1c758f5aca -2023-07-08 08:26:06.303621 2023-07-08 08:26:06.303637 agrero A025967759 R rec 2028d331-cada-4839-bdf9-b58716f61398 -2023-07-08 08:26:06.433729 2023-07-08 08:26:06.433745 agrero A025976492 R rec 62971685-7850-4b6c-8f12-f593c6a15247 -2023-07-08 08:26:06.556943 2023-07-08 08:26:06.556958 agrero A025983847 R rec efc2f80c-bf98-4056-a48f-3e427138b264 -2023-07-08 08:26:06.693222 2023-07-08 08:26:06.693244 agrero A025987021 R rec 983de835-1d7f-4853-a197-0e36812f6e6e -2023-07-08 08:26:06.831839 2023-07-08 08:26:06.831853 agrero A026005729 R rec fe087b24-bb4c-4277-96c2-4ef7a7d54473 -2023-07-08 08:26:06.952358 2023-07-08 08:26:06.952374 agrero A026012565 R rec 8be03b86-da47-49fe-9ff8-926ef7ae225f -2023-07-08 08:26:07.10653 2023-07-08 08:26:07.106534 agrero A026015516 R rec 6d3d0af4-f28f-4978-9752-43b7c7ac9e9a -2023-07-08 08:26:07.173605 2023-07-08 08:26:07.173611 agrero A026028252 R rec 9a661978-41ff-440c-9082-ff4d474989f1 -2023-07-08 08:26:07.269298 2023-07-08 08:26:07.269308 agrero A026028546 R rec bb92cae3-878d-4863-b83a-5409a915709a -2023-07-08 08:26:07.388023 2023-07-08 08:26:07.388034 agrero A026050339 R rec 58f8811c-fbf1-402c-872f-5817563a80d2 -2023-07-08 08:26:07.493198 2023-07-08 08:26:07.494555 agrero A026066357 R rec c43d033b-3973-4d16-a243-54a180274197 -2023-07-08 08:26:07.612119 2023-07-08 08:26:07.612131 agrero A026085043 R rec 3fe2fb34-96ff-43dd-ad2a-03b17b804a48 -2023-07-08 08:26:07.711305 2023-07-08 08:26:07.711316 agrero A026091329 R rec acef9d8d-fc28-4b5f-8953-e27e5b20f683 -2023-07-08 08:26:07.819617 2023-07-08 08:26:07.819629 agrero A026115092 R rec 8a14b101-1c1a-4d3e-9f7c-27b25c905e58 -2023-07-08 08:26:07.929502 2023-07-08 08:26:07.929518 agrero A026120339 R rec 07fb1e3c-41d6-4351-aec2-c42d3ed768e1 -2023-07-08 08:26:08.048603 2023-07-08 08:26:08.048616 agrero A026122888 R rec aa6c6f46-7952-46a6-8eb6-3f42fd61fefc -2023-07-08 08:26:08.165028 2023-07-08 08:26:08.165043 agrero A026123991 R rec e6fd4f7b-87e4-4fd7-a76f-fa47301c7c78 -2023-07-08 08:26:08.275554 2023-07-08 08:26:08.275565 agrero A026129158 R rec 8b8b4e55-dd29-43d6-90b8-d364e26c185e -2023-07-08 08:26:08.402269 2023-07-08 08:26:08.402284 agrero A026132029 R rec 98f7e54d-6ead-42d6-a7ff-7173b53859be -2023-07-08 08:26:08.507156 2023-07-08 08:26:08.507172 agrero A026144791 R rec ef3245d8-7cd7-468f-9b47-80c7a9cc97d2 -2023-07-08 08:26:08.617036 2023-07-08 08:26:08.617052 agrero A026155985 R rec 143e6164-1c10-43ec-afc1-0bff52558382 -2023-07-08 08:26:08.742723 2023-07-08 08:26:08.74274 agrero A026164040 R rec 104c342d-3635-4561-be6b-1b6ca91f3e4b -2023-07-08 08:26:08.852374 2023-07-08 08:26:08.852395 agrero A026168031 R rec 1eea5e3d-6566-40ab-959c-f87c69d1c8cb -2023-07-08 08:26:08.960297 2023-07-08 08:26:08.960313 agrero A026168151 R rec 32084f28-a1d6-4aad-a128-645c97bd37a0 -2023-07-08 08:26:09.069293 2023-07-08 08:26:09.06931 agrero A026169859 R rec cc3ffce7-cb88-41e6-a194-dcb46e224348 -2023-07-08 08:26:09.181424 2023-07-08 08:26:09.181435 agrero A026174573 R rec 25ec71e1-2c58-4d3a-b41f-b0cd52c89ed5 -2023-07-08 08:26:09.303142 2023-07-08 08:26:09.303157 agrero A026408718 R rec 87bca90d-6ad8-4f02-af87-905a5e5f0f8d -2023-07-08 08:26:09.418593 2023-07-08 08:26:09.418605 agrero A026432303 R rec c257b916-7b77-4a60-bdc2-9cd99b411274 -2023-07-08 08:26:09.531069 2023-07-08 08:26:09.531079 agrero A026434702 R rec 380db8ff-b02c-44a8-87fb-52f6641cfeef -2023-07-08 08:26:09.638266 2023-07-08 08:26:09.638281 agrero A026439717 R rec e0ab25b1-0d53-4ddf-bbc0-2dc06d3f072c -2023-07-08 08:26:09.754908 2023-07-08 08:26:09.754919 agrero A026450966 R rec 1d926238-fc2c-43b1-95fb-6f00818f5fa2 -2023-07-08 08:26:09.866659 2023-07-08 08:26:09.866677 agrero A026459182 R rec 2cf21512-60a2-4fc3-9fe0-050edcd6477c -2023-07-08 08:26:09.96725 2023-07-08 08:26:09.967266 agrero A026462220 R rec dea410cc-058b-4aad-813d-6ae6837888d7 -2023-07-08 08:26:10.07217 2023-07-08 08:26:10.072186 agrero A026466905 R rec f3b0d1a0-7e8e-471b-bb18-acf5ee8922c8 -2023-07-08 08:26:10.194647 2023-07-08 08:26:10.194657 agrero A026474353 R rec a35f5fee-ae23-4fb4-a993-0c33aa924bf9 -2023-07-08 08:26:10.3043 2023-07-08 08:26:10.304315 agrero A026534148 R rec ad8c157e-5bc7-46fd-9887-0616488f60b0 -2023-07-08 08:26:10.412822 2023-07-08 08:26:10.412844 agrero A026548298 R rec d805503c-ef39-46ee-af10-0ba2dc9c6fd9 -2023-07-08 08:26:10.5256 2023-07-08 08:26:10.525611 agrero A026554111 R rec cb49c0d8-8056-4c61-a404-43fa40f39641 -2023-07-08 08:26:10.651258 2023-07-08 08:26:10.651274 agrero A026558985 R rec b5c3759c-2822-4101-adc3-e1f6e7f99771 -2023-07-08 08:26:10.759237 2023-07-08 08:26:10.759255 agrero A026586322 R rec 8e3d706a-b805-4442-aeb1-d82ee599457f -2023-07-08 08:26:10.866121 2023-07-08 08:26:10.86614 agrero A026596122 R rec 86142897-7163-465d-aece-2ff1c6e236a3 -2023-07-08 08:26:10.985858 2023-07-08 08:26:10.985876 agrero A026608425 R rec 352cf1f2-5241-40bf-a545-a640e88ea34d -2023-07-08 08:26:11.09837 2023-07-08 08:26:11.098386 agrero A026614309 R rec e59a7e55-1271-4f47-a7d5-bdb52a58ab85 -2023-07-08 08:26:11.206028 2023-07-08 08:26:11.206047 agrero A026614954 R rec 290f21c6-b8ca-455a-80ef-502850bf4cfe -2023-07-08 08:26:11.336531 2023-07-08 08:26:11.336541 agrero A026623687 R rec 9d8de056-21f9-44a4-9f79-f3968db1ed1c -2023-07-08 08:26:11.457043 2023-07-08 08:26:11.457059 agrero A026636855 R rec 73f43925-ed5b-4cc4-be4d-ac1dc65a110a -2023-07-08 08:26:11.570647 2023-07-08 08:26:11.570658 agrero A026642855 R rec e8a2c54c-61f5-412d-bc1a-474bd20266e9 -2023-07-08 08:26:11.686446 2023-07-08 08:26:11.686462 agrero A026652068 R rec 0ff34c5c-6dd1-4175-9842-93f042500221 -2023-07-08 08:26:11.81358 2023-07-08 08:26:11.813597 agrero A026654612 R rec 2526b465-c5ea-46ef-8178-6986e9b5557a -2023-07-08 08:26:11.933006 2023-07-08 08:26:11.933017 agrero A026685590 R rec 487cdbc5-8847-4289-9fe6-297f5755f6ec -2023-07-08 08:26:12.047752 2023-07-08 08:26:12.047762 agrero A026722774 R rec 0f9ee463-6d4e-4244-96f6-2c3ea92b66f5 -2023-07-08 08:26:12.163041 2023-07-08 08:26:12.163053 agrero A026723222 R rec 50555003-7aff-4da0-a63b-7ebdf21e7f52 -2023-07-08 08:26:12.304358 2023-07-08 08:26:12.304369 agrero A026724664 R rec 92caca1f-f051-45e2-a459-6731d7cd52b7 -2023-07-08 08:26:12.420217 2023-07-08 08:26:12.420228 agrero A026736945 R rec 213a29d4-894a-453f-8558-5ff6dd47d382 -2023-07-08 08:26:12.528274 2023-07-08 08:26:12.528285 agrero A026740856 R rec b03b596d-8ece-413c-b369-27fc59669e10 -2023-07-08 08:26:12.659888 2023-07-08 08:26:12.659899 agrero A026741839 R rec b0520618-93d7-47c9-966a-6612e0fc467d -2023-07-08 08:26:12.760095 2023-07-08 08:26:12.760115 agrero A026748269 R rec 01283a8b-0213-4b82-95bd-93151a4fd375 -2023-07-08 08:26:12.872446 2023-07-08 08:26:12.872459 agrero A026774834 R rec b306a3da-08f2-43fa-bee7-e2e48d9f6d97 -2023-07-08 08:26:12.97999 2023-07-08 08:26:12.980004 agrero A026783817 R rec 690c43fd-d0cb-42c6-9734-fc2100a91176 -2023-07-08 08:26:13.086451 2023-07-08 08:26:13.086465 agrero A026785791 R rec 236a1235-666d-4ad4-a812-b9348d8d7381 -2023-07-08 08:26:13.228292 2023-07-08 08:26:13.228309 agrero A026813025 R rec da9eeeda-ccb4-4fe0-97ef-ff850824acfb -2023-07-08 08:26:13.341786 2023-07-08 08:26:13.341797 agrero A026828697 R rec 0dd69451-0321-4c95-ab81-71ee6c81e1b3 -2023-07-08 08:26:13.446197 2023-07-08 08:26:13.446209 agrero A026835388 R rec 33d9bd63-d39a-4470-98b5-9217266f4c2a -2023-07-08 08:26:13.585695 2023-07-08 08:26:13.585713 agrero A026839306 R rec a696c075-812e-41cf-a9dd-25a4259e49fd -2023-07-08 08:26:13.717877 2023-07-08 08:26:13.717893 agrero A026846628 R rec 300ee22d-ec3d-4a6c-b767-993ffde92cd8 -2023-07-08 08:26:13.861152 2023-07-08 08:26:13.86117 agrero A026847441 R rec 341682b0-1e84-4a98-bc6c-2acb350cdf3d -2023-07-08 08:26:13.971815 2023-07-08 08:26:13.971834 agrero A026864091 R rec 57699389-a15a-4e95-8be3-ad1b3931a7fd -2023-07-08 08:26:14.093593 2023-07-08 08:26:14.093604 agrero A026894353 R rec beadc732-a830-4976-8b9d-0c9f23558ae9 -2023-07-08 08:26:14.205477 2023-07-08 08:26:14.205493 agrero A026898077 R rec d7578b4e-926c-48c2-9734-23a6ceafb6e5 -2023-07-08 08:26:14.321373 2023-07-08 08:26:14.321388 agrero A026907243 R rec 8e3ce485-b35d-4d95-bdfe-62ee079579e5 -2023-07-08 08:26:14.432002 2023-07-08 08:26:14.432017 agrero A026919795 R rec 124b290b-5d29-4597-8a2b-a05f60580936 -2023-07-08 08:26:14.536761 2023-07-08 08:26:14.536777 agrero A026951773 R rec b72704cc-19ad-416e-8357-04f948824389 -2023-07-08 08:26:14.646142 2023-07-08 08:26:14.646156 agrero A026952894 R rec 70c6b90e-f858-4514-a5fc-11bad4163522 -2023-07-08 08:26:14.758417 2023-07-08 08:26:14.758437 agrero A026958334 R rec 297f0222-8a1e-4a23-88fa-3875fdf4c62e -2023-07-08 08:26:14.859366 2023-07-08 08:26:14.859384 agrero A026964890 R rec 1dcc32f0-45c9-4187-b1c5-1fba8da6a6f5 -2023-07-08 08:26:14.974383 2023-07-08 08:26:14.974394 agrero A026978679 R rec cd580802-7c7d-4ceb-ae15-8986e868cb31 -2023-07-08 08:26:15.093371 2023-07-08 08:26:15.093387 agrero A027062343 R rec cfa1b5c2-3baa-467e-9f06-9f8852b217c6 -2023-07-08 08:26:15.20734 2023-07-08 08:26:15.207357 agrero A027068066 R rec 62dbc923-5ac6-46c5-975a-fe4771ce00ec -2023-07-08 08:26:15.336174 2023-07-08 08:26:15.336179 agrero A027089118 R rec 71b2a83c-3e2f-4cd4-9452-61f601e355aa -2023-07-08 08:26:15.438568 2023-07-08 08:26:15.438646 agrero A027092266 R rec 08151e8e-dc1a-4159-a4ca-1603097f7bcc -2023-07-08 08:26:15.541255 2023-07-08 08:26:15.541267 agrero A027102482 R rec 458aa968-54df-4754-bcb2-ccf4091ffc36 -2023-07-08 08:26:15.625246 2023-07-08 08:26:15.625258 agrero A027103123 R rec d6c10c86-8f48-41f9-b374-05e6b96bc355 -2023-07-08 08:26:15.71447 2023-07-08 08:26:15.714481 agrero A027116952 R rec 12abe032-f372-48e5-82f8-08f4a66c19bf -2023-07-08 08:26:15.830368 2023-07-08 08:26:15.830379 agrero A027118711 R rec 82b2b5e3-b175-4b4a-bd79-dd0be1c64195 -2023-07-08 08:26:15.939755 2023-07-08 08:26:15.939772 agrero A027119572 R rec d3700bab-c9e9-40b3-87b0-6d2b0a8d4356 -2023-07-08 08:26:16.051389 2023-07-08 08:26:16.051405 agrero A027138153 R rec 0aea0f70-aa49-49c1-934e-0c44d07fed54 -2023-07-08 08:26:16.172529 2023-07-08 08:26:16.17254 agrero A027139051 R rec c902c694-1c1a-4df5-8150-f37f4317c0ce -2023-07-08 08:26:16.295232 2023-07-08 08:26:16.295248 agrero A027149145 R rec 23224ad3-579b-42c4-9b38-c860d98fe97a -2023-07-08 08:26:16.399155 2023-07-08 08:26:16.399171 agrero A027149446 R rec 3e7f2c9b-2c01-437b-ad8a-fc4ff45f7e7f -2023-07-08 08:26:16.503958 2023-07-08 08:26:16.503974 agrero A027157860 R rec be134ed1-9211-44db-85e9-9225b8761a8f -2023-07-08 08:26:16.633578 2023-07-08 08:26:16.633594 agrero A027180250 R rec c3303e50-ad57-42c3-94fa-f1d2dabe0a0d -2023-07-08 08:26:16.740069 2023-07-08 08:26:16.740088 agrero A027184035 R rec 3f5ac235-e1f3-4d56-b7e3-496ea5d182f2 -2023-07-08 08:26:16.859631 2023-07-08 08:26:16.859648 agrero A027191227 R rec 9c9e90d4-8988-4352-ab28-e98a8b4d01bb -2023-07-08 08:26:16.971757 2023-07-08 08:26:16.971774 agrero A027194665 R rec 767a5154-4076-4379-b04b-e030472c5f2e -2023-07-08 08:26:17.098847 2023-07-08 08:26:17.098861 agrero A027201602 R rec 13e00ab4-0c6c-49d7-95de-68d8c84002a6 -2023-07-08 08:26:17.220604 2023-07-08 08:26:17.220619 agrero A027205240 R rec d248f53e-1669-4ee6-afba-adab427fb959 -2023-07-08 08:26:17.325997 2023-07-08 08:26:17.32601 agrero A027205480 R rec 8091e36c-a5c5-4ed9-8988-95ac2e8fd573 -2023-07-08 08:26:17.440647 2023-07-08 08:26:17.440664 agrero A027220118 R rec 74a3bb01-4f08-4316-8b5d-89aac1d5837c -2023-07-08 08:26:17.55606 2023-07-08 08:26:17.556077 agrero A027221608 R rec dad9f442-0d68-4f40-bdf0-61f6b7b969b1 -2023-07-08 08:26:17.663938 2023-07-08 08:26:17.663953 agrero A027237908 R rec ef4f18ea-e574-4f57-86c3-4873ccd08494 -2023-07-08 08:26:17.772828 2023-07-08 08:26:17.772847 agrero A027289406 R rec 1f23f2b4-7990-48ab-8333-a4eebd77995a -2023-07-08 08:26:17.891753 2023-07-08 08:26:17.891765 agrero A027297912 R rec 30542de1-31f4-4a29-b42e-3d7b5de9f75d -2023-07-08 08:26:18.011604 2023-07-08 08:26:18.011619 agrero A027302854 R rec d99fa925-b060-47e1-99ba-14e172f09590 -2023-07-08 08:26:18.115552 2023-07-08 08:26:18.115568 agrero A027307709 R rec 16c96c9b-26a5-44c0-9399-30dc5c1416f3 -2023-07-08 08:26:18.231323 2023-07-08 08:26:18.231337 agrero A027316896 R rec 4af23715-1cff-45a4-81d7-784656207fe4 -2023-07-08 08:26:18.340467 2023-07-08 08:26:18.340477 agrero A027333148 R rec 1e9ce257-4d2b-4e4b-9268-5941fabc5858 -2023-07-08 08:26:18.44265 2023-07-08 08:26:18.442663 agrero A027339987 R rec 01c2fafc-e0c1-4191-94fd-6350ba6fe064 -2023-07-08 08:26:18.53851 2023-07-08 08:26:18.538531 agrero A027342850 R rec 02548e16-2265-4c52-9604-bc826e62787a -2023-07-08 08:26:18.636911 2023-07-08 08:26:18.636922 agrero A027355955 R rec 0748a90a-ed76-40c1-83f1-e46b8aa78687 -2023-07-08 08:26:18.742076 2023-07-08 08:26:18.742095 agrero A027394831 R rec 808ba895-f9a7-4e0c-ad02-4de090e96178 -2023-07-08 08:26:18.855529 2023-07-08 08:26:18.855545 agrero A027401068 R rec 03ba1f16-2350-4cbc-ac67-07a36944e54e -2023-07-08 08:26:18.970115 2023-07-08 08:26:18.970131 agrero A027420393 R rec 84a53884-2bb1-4b52-9353-9e68a0db3f6c -2023-07-08 08:26:19.077527 2023-07-08 08:26:19.077543 agrero A027429159 R rec c56bc87a-9397-44d5-9ecf-59f7b81e725d -2023-07-08 08:26:19.195801 2023-07-08 08:26:19.195817 agrero A027433246 R rec 90ac9bd3-8440-4087-95eb-c65477d93221 -2023-07-08 08:26:19.304 2023-07-08 08:26:19.304015 agrero A027441359 R rec a5fb1798-5441-49b3-b97a-d8cb8308f28d -2023-07-08 08:26:19.412398 2023-07-08 08:26:19.412414 agrero A027443542 R rec ecdb7e8e-202b-44f3-b3c3-5631639855b2 -2023-07-08 08:26:19.535139 2023-07-08 08:26:19.535157 agrero A027444942 R rec 5bab36c7-8e69-4a46-9848-396f0961e62f -2023-07-08 08:26:19.659134 2023-07-08 08:26:19.659153 agrero A027445987 R rec 4ea431d6-7e6a-4c88-b70f-33bc89044b9a -2023-07-08 08:26:19.767624 2023-07-08 08:26:19.767641 agrero A027448978 R rec 7bc5de4d-5b80-4d2f-b803-1feb0280a29b -2023-07-08 08:26:19.892623 2023-07-08 08:26:19.892639 agrero A027449905 R rec 173dd737-bd2b-4f0f-8b79-ac5667b13ea6 -2023-07-08 08:26:20.022818 2023-07-08 08:26:20.022836 agrero A027457648 R rec 05dc4ad4-cede-4a2e-bdb3-6c8a89d39255 -2023-07-08 08:26:20.142736 2023-07-08 08:26:20.142752 agrero A027468424 R rec 328bcead-c6ff-47cb-bbec-988fa6c8d2aa -2023-07-08 08:26:20.249706 2023-07-08 08:26:20.249721 agrero A027470672 R rec 6a2b4502-c852-40ac-8f5e-9c546825a480 -2023-07-08 08:26:20.366826 2023-07-08 08:26:20.366842 agrero A027477458 R rec 0d437842-d557-48ff-8d5b-00cdbfa4f664 -2023-07-08 08:26:20.486535 2023-07-08 08:26:20.486549 agrero A027477867 R rec 1bcebd12-045c-4db3-a562-eb097b16b1b6 -2023-07-08 08:26:20.59779 2023-07-08 08:26:20.597803 agrero A027483344 R rec 800478a2-7900-488c-9839-165f04373ed2 -2023-07-08 08:26:20.705195 2023-07-08 08:26:20.705212 agrero A027488596 R rec 097a889e-3848-452a-bb9d-db78049e4adb -2023-07-08 08:26:20.826793 2023-07-08 08:26:20.826809 agrero A027490804 R rec fe996874-4c83-4d79-a893-ec596d1930bb -2023-07-08 08:26:20.949124 2023-07-08 08:26:20.949203 agrero A027498782 R rec 587a6054-4a53-4880-9e3f-eea7a1cd3c69 -2023-07-08 08:26:21.083325 2023-07-08 08:26:21.083337 agrero A027507344 R rec ef2b79a7-66be-4d3f-a7f5-e9713c098099 -2023-07-08 08:26:21.18974 2023-07-08 08:26:21.189752 agrero A027508686 R rec d18c3921-e140-4714-962b-8ee979602958 -2023-07-08 08:26:21.30873 2023-07-08 08:26:21.308745 agrero A027518436 R rec 9aea3148-5a36-4ccf-b69c-d4028716cdf4 -2023-07-08 08:26:21.422405 2023-07-08 08:26:21.422415 agrero A027523029 R rec 1b6f78a0-65ae-4058-8cf0-d7af95e32de1 -2023-07-08 08:26:21.534987 2023-07-08 08:26:21.534997 agrero A027523482 R rec 91abc060-6a16-4fdb-ab97-057921bc9ab2 -2023-07-08 08:26:21.655903 2023-07-08 08:26:21.655919 agrero A027543659 R rec 9f4cd7c5-c790-43ab-9612-5655afcf2eb1 -2023-07-08 08:26:21.786375 2023-07-08 08:26:21.786386 agrero A027544307 R rec 004d794e-68f1-4689-9cbf-694a0cddb8e9 -2023-07-08 08:26:21.906997 2023-07-08 08:26:21.907013 agrero A027545859 R rec 1f1882fc-8bd2-4a80-8e4e-76d28478e551 -2023-07-08 08:26:22.031627 2023-07-08 08:26:22.031639 agrero A027565229 R rec 5e1cb864-5bd2-470f-84e4-8d05de8f5739 -2023-07-08 08:26:22.146243 2023-07-08 08:26:22.146258 agrero A027568451 R rec b90abe60-81ff-429f-94da-5c6dd19e7d59 -2023-07-08 08:26:22.260793 2023-07-08 08:26:22.260805 agrero A027582518 R rec b401db8d-c629-40c5-938f-b98df84758dd -2023-07-08 08:26:22.387386 2023-07-08 08:26:22.387402 agrero A027587471 R rec 261d5996-93e4-42d7-a174-e3f30739da7d -2023-07-08 08:26:22.501833 2023-07-08 08:26:22.501849 agrero A027588056 R rec 52532879-4337-4361-abab-4a75003487ce -2023-07-08 08:26:22.611664 2023-07-08 08:26:22.611679 agrero A027604812 R rec dcc3e7db-41c3-4795-bd01-cba72fd9af27 -2023-07-08 08:26:22.723523 2023-07-08 08:26:22.72354 agrero A027608462 R rec 2243c235-55f9-427c-b187-50ccb0763b5d -2023-07-08 08:26:22.842503 2023-07-08 08:26:22.84252 agrero A027643343 R rec 46902bf0-43d7-44a9-95f8-64753c95670f -2023-07-08 08:26:22.97048 2023-07-08 08:26:22.970491 agrero A027644407 R rec c7804b8a-181f-4593-8699-689b8d74fe20 -2023-07-08 08:26:23.08513 2023-07-08 08:26:23.085145 agrero A027649761 R rec 3d7eea0e-78a8-4ad1-9931-187b273ad801 -2023-07-08 08:26:23.207754 2023-07-08 08:26:23.207765 agrero A027652944 R rec 7e4a5118-dd89-4ded-89d8-27d521d975ef -2023-07-08 08:26:23.312492 2023-07-08 08:26:23.312505 agrero A027653000 R rec 44e0f7e0-bf0a-4181-a014-2a041ee01ed2 -2023-07-08 08:26:23.409949 2023-07-08 08:26:23.409965 agrero A027655212 R rec aadaf31b-77b9-4ce8-94af-be5bbff2c18b -2023-07-08 08:26:23.512778 2023-07-08 08:26:23.512788 agrero A027661275 R rec 812df44b-ae4e-495d-b25a-8d24c3ea9f9a -2023-07-08 08:26:23.626305 2023-07-08 08:26:23.626343 agrero A027664950 R rec 583eb2f5-a1c7-4ff4-be84-01166e31adc8 -2023-07-08 08:26:23.737463 2023-07-08 08:26:23.737474 agrero A027667116 R rec 015c75ec-3395-49c0-b81f-d4d8d7d816f8 -2023-07-08 08:26:23.845644 2023-07-08 08:26:23.845659 agrero A027688556 R rec cd8101be-d418-41f3-bf9c-2cbfb71e1174 -2023-07-08 08:26:23.948914 2023-07-08 08:26:23.948924 agrero A027698830 R rec 8d9252f9-4561-4b8d-9597-14af9c8b503a -2023-07-08 08:26:24.050139 2023-07-08 08:26:24.050155 agrero A027716766 R rec 91811515-9f5a-4eb6-9123-d99eda992075 -2023-07-08 08:26:24.167667 2023-07-08 08:26:24.167865 agrero A027736928 R rec 09f0c5e6-a3c5-4cea-8c59-86b5b00b7528 -2023-07-08 08:26:24.2885 2023-07-08 08:26:24.288516 agrero A027737227 R rec 94e095db-3ea9-4685-9c4c-f6f82db770e9 -2023-07-08 08:26:24.390176 2023-07-08 08:26:24.390191 agrero A027737968 R rec f485ffd0-3319-4605-ab1b-2a5c7fceeb4e -2023-07-08 08:26:24.499499 2023-07-08 08:26:24.499514 agrero A027745860 R rec f8289fb6-2102-4c6e-bd4c-bf00c94c6365 -2023-07-08 08:26:24.617611 2023-07-08 08:26:24.617626 agrero A027747343 R rec 3e3b3b7a-76c3-44f7-b87a-bcd0c126adaa -2023-07-08 08:26:24.738074 2023-07-08 08:26:24.738085 agrero A027763919 R rec f0b25d84-298a-4fe5-bb64-555327dcb578 -2023-07-08 08:26:24.84436 2023-07-08 08:26:24.844377 agrero A027766736 R rec bd59b261-d9e6-4a16-b665-8e59f23e49ec -2023-07-08 08:26:24.957032 2023-07-08 08:26:24.957049 agrero A027807323 R rec b2231203-017a-4d98-b1fb-9c49a7c3c3da -2023-07-08 08:26:25.067808 2023-07-08 08:26:25.067819 agrero A027811966 R rec b8a95785-77eb-4601-a524-c1cd7fd66387 -2023-07-08 08:26:25.1805 2023-07-08 08:26:25.180516 agrero A027817940 R rec 05f9f3c6-c1b8-42e0-b7f4-09631b5c04b8 -2023-07-08 08:26:25.294839 2023-07-08 08:26:25.294852 agrero A027841998 R rec 45e32cac-51b0-4849-ad39-6be915002f45 -2023-07-08 08:26:25.396405 2023-07-08 08:26:25.396416 agrero A028081955 R rec 05055549-5a64-4730-bc0b-732eb4dfb7bf -2023-07-08 08:26:25.502877 2023-07-08 08:26:25.502893 agrero A028167226 R rec e2e8db63-2973-4050-be7e-1cce7340b696 -2023-07-08 08:26:25.623869 2023-07-08 08:26:25.623885 agrero A028177834 R rec e9546b1e-24ff-4c44-9c63-9342ffafc424 -2023-07-08 08:26:25.737677 2023-07-08 08:26:25.737692 agrero A028331435 R rec 6d588021-3a50-43ce-8710-a9453d494609 -2023-07-08 08:26:25.850981 2023-07-08 08:26:25.850996 agrero A028347593 R rec 43b2185c-0b42-4a3d-a578-c2dc2eef7445 -2023-07-08 08:26:25.956836 2023-07-08 08:26:25.956847 agrero A028355646 R rec cf52be68-2eaf-4e3d-a6b3-6d74df99da09 -2023-07-08 08:26:26.084964 2023-07-08 08:26:26.084979 agrero A028357568 R rec d5ba43a0-583c-4f8f-a1c0-f50aca598141 -2023-07-08 08:26:26.195971 2023-07-08 08:26:26.195986 agrero A028447819 R rec 7684c03c-15e0-4e72-89f5-4eb0fc3ebd76 -2023-07-08 08:26:26.301092 2023-07-08 08:26:26.301107 agrero A028520087 R rec 72d04248-72b8-45a7-8b35-6f3c02d330f9 -2023-07-08 08:26:26.401247 2023-07-08 08:26:26.401263 agrero A028529691 R rec 38f9ada5-dc72-4b14-934c-d21a0f4dfa02 -2023-07-08 08:26:26.518837 2023-07-08 08:26:26.518854 agrero A028751062 R rec 83c67557-f6e7-4de2-8d2a-f0c197fc59e1 -2023-07-08 08:26:26.639969 2023-07-08 08:26:26.64001 agrero A028868344 R rec 6329d758-f756-46f4-b6c6-c05557c991e2 -2023-07-08 08:26:26.766359 2023-07-08 08:26:26.766374 agrero A028868962 R rec 9584dfc7-288e-4ab7-a40a-aea730b8fb46 -2023-07-08 08:26:26.887876 2023-07-08 08:26:26.887893 agrero A028986344 R rec 066f2843-4d73-43d6-9c07-7a270fb13be7 -2023-07-08 08:26:27.019284 2023-07-08 08:26:27.019303 agrero A028989262 R rec a5b8498e-479a-4254-bfd9-e0783753855c -2023-07-08 08:26:27.133414 2023-07-08 08:26:27.133425 agrero A029002736 R rec d80284c2-f290-47b9-8b11-8c34fb04a365 -2023-07-08 08:26:27.257943 2023-07-08 08:26:27.25796 agrero A029004750 R rec 907fd4bc-3bc8-4b5e-82fb-4d30ae40bb24 +2024-09-11 09:06:19.951703 2024-09-11 09:06:19.951708 agrero A000003203 R rec 0c8e1296-c766-4ddb-9028-0de9b79c1b77 +2024-09-11 09:06:20.03206 2024-09-11 09:06:20.032066 agrero A000010540 R rec d09ebda1-a30e-44a8-957a-9794edfc5fb2 +2024-09-11 09:06:20.084482 2024-09-11 09:06:20.084487 agrero A000011132 R rec a656130d-6edb-460a-831b-ee0b98c4fc24 +2024-09-11 09:06:20.136813 2024-09-11 09:06:20.136818 agrero A000012165 R rec be963e1e-81c2-4eeb-bebe-37f481845821 +2024-09-11 09:06:20.191223 2024-09-11 09:06:20.191229 agrero A000014216 R rec 4807caff-e8a8-4ec1-b4f1-81624d5db978 +2024-09-11 09:06:20.240999 2024-09-11 09:06:20.241003 agrero A000014650 R rec d291c213-b6b3-4be2-87ef-2e6d4e77c392 +2024-09-11 09:06:20.300383 2024-09-11 09:06:20.300388 agrero A000016955 R rec 890bd8fd-5343-4dc0-849b-f51e9f4957fa +2024-09-11 09:06:20.37468 2024-09-11 09:06:20.374685 agrero A000018483 R rec b6261c2d-f69a-4980-90f1-a2ddee88765f +2024-09-11 09:06:20.430226 2024-09-11 09:06:20.430231 agrero A000018719 R rec 4ab3b0ff-2744-497b-b75e-afceb4f046c2 +2024-09-11 09:06:20.484099 2024-09-11 09:06:20.484104 agrero A000022042 R rec 405a6228-80db-474e-bb93-64b06d12d4f3 +2024-09-11 09:06:20.537281 2024-09-11 09:06:20.537286 agrero A000023938 R rec 5dd07a95-e2cb-43e7-9cb8-e944b144f4be +2024-09-11 09:06:20.588392 2024-09-11 09:06:20.588397 agrero A000026444 R rec 2c3fa1f1-ed0b-41d5-9a08-13ff2a3b0747 +2024-09-11 09:06:20.638028 2024-09-11 09:06:20.638033 agrero A000031507 R rec bf9d416f-e642-4654-b96c-ef7b213809e9 +2024-09-11 09:06:20.690502 2024-09-11 09:06:20.690507 agrero A000032185 R rec 010e7344-07b2-4717-8fcd-929948e992d7 +2024-09-11 09:06:20.744486 2024-09-11 09:06:20.744491 agrero A000033498 R rec f4c89b0b-7490-4374-9503-cbd79138b12f +2024-09-11 09:06:20.798465 2024-09-11 09:06:20.798472 agrero A000035884 R rec 302f7b23-e935-4347-b371-6279da8a0bf3 +2024-09-11 09:06:20.847661 2024-09-11 09:06:20.847666 agrero A000041054 R rec dbfa2e8a-7090-410f-bebc-47f83dc85bd8 +2024-09-11 09:06:20.896286 2024-09-11 09:06:20.896291 agrero A000042792 R rec 8f1635af-cdf1-4734-a4e0-a40db380cf90 +2024-09-11 09:06:20.979173 2024-09-11 09:06:20.979179 agrero A000045285 R rec fbe9c07d-4168-4fda-ac16-1ac33bfc11bc +2024-09-11 09:06:21.029387 2024-09-11 09:06:21.029392 agrero A000047084 R rec 683487f9-7163-4e58-9e38-58147ef01ce2 +2024-09-11 09:06:21.088638 2024-09-11 09:06:21.088643 agrero A000047788 R rec bd2eeeff-9724-4a5e-a5bc-28011caf617d +2024-09-11 09:06:21.136137 2024-09-11 09:06:21.136142 agrero A000062707 R rec 347c5d14-83fc-469e-a25d-88eff9565bb1 +2024-09-11 09:06:21.188772 2024-09-11 09:06:21.188777 agrero A000063670 R rec 40bae67a-089f-40e8-8208-1b74786c458e +2024-09-11 09:06:21.243325 2024-09-11 09:06:21.243329 agrero A000068070 R rec d16e8047-83c6-4fa9-b755-202bb6a105ed +2024-09-11 09:06:21.291583 2024-09-11 09:06:21.29159 agrero A000069516 R rec 5e4dc1f5-2638-4101-add4-4f79088ee2cd +2024-09-11 09:06:21.339045 2024-09-11 09:06:21.33905 agrero A000074210 R rec 313d98fb-5b27-46d8-ad5a-325b3059ab3e +2024-09-11 09:06:21.38927 2024-09-11 09:06:21.389275 agrero A000075082 R rec 7fa44812-dec0-4a5a-80cd-67c48ddd1801 +2024-09-11 09:06:21.445882 2024-09-11 09:06:21.445896 agrero A000075825 R rec 4048341a-a38c-491b-a181-d24666d2c368 +2024-09-11 09:06:21.498806 2024-09-11 09:06:21.498812 agrero A000078192 R rec 13abc03c-ead7-4c28-8848-69ff9e7b3b90 +2024-09-11 09:06:21.559164 2024-09-11 09:06:21.559169 agrero A000082809 R rec 1f4b8303-f4dc-40b7-83b3-d5d93cf5823a +2024-09-11 09:06:21.609904 2024-09-11 09:06:21.60991 agrero A000085441 R rec 3f58a503-153b-4459-841e-afd90d1eae15 +2024-09-11 09:06:21.662882 2024-09-11 09:06:21.662887 agrero A000085746 R rec 3b84d9e1-f911-43c8-b58a-8ad616dc2b31 +2024-09-11 09:06:21.712587 2024-09-11 09:06:21.712593 agrero A000087771 R rec 5516b23a-d91b-41e2-8429-4d1ceac4212f +2024-09-11 09:06:21.759313 2024-09-11 09:06:21.759319 agrero A000091274 R rec 7d8e31de-6c04-41ab-9b15-18a2a3924b41 +2024-09-11 09:06:21.809475 2024-09-11 09:06:21.809481 agrero A000092501 R rec 7b87f8b6-f2ce-47c4-9ac5-6823157653fa +2024-09-11 09:06:21.857906 2024-09-11 09:06:21.857912 agrero A000099346 R rec 2ca691b1-d0b3-45e0-bd93-a8b9a2f8637e +2024-09-11 09:06:21.906344 2024-09-11 09:06:21.906349 agrero A000100584 R rec efa03eca-11ee-4e49-ac4d-6e2440cdf347 +2024-09-11 09:06:21.958697 2024-09-11 09:06:21.958702 agrero A000102121 R rec d10e3658-808e-43d2-b1ec-0ca1eeba489d +2024-09-11 09:06:22.014276 2024-09-11 09:06:22.014281 agrero A000103142 R rec 53bf898d-afbb-4419-97d4-b757c67e6aab +2024-09-11 09:06:22.086636 2024-09-11 09:06:22.086641 agrero A000104694 R rec 9979e2a4-3f7d-4395-8b34-90fd1bc7c34a +2024-09-11 09:06:22.161457 2024-09-11 09:06:22.161462 agrero A000107290 R rec 557ad864-4078-4121-9332-641de3940669 +2024-09-11 09:06:22.215914 2024-09-11 09:06:22.215919 agrero A000108532 R rec 3decd614-f6f3-427a-b4f4-d2b8e38114fb +2024-09-11 09:06:22.266539 2024-09-11 09:06:22.266544 agrero A000108719 R rec dbc800a7-a7fa-4ec8-8dee-39a494ea6806 +2024-09-11 09:06:22.331562 2024-09-11 09:06:22.331568 agrero A000110353 R rec 9104e8cb-592d-4a43-9e6f-360c391895f1 +2024-09-11 09:06:22.383057 2024-09-11 09:06:22.383062 agrero A000119730 R rec 25e361d8-fcf3-4aa9-8fba-cc8ea236f893 +2024-09-11 09:06:22.437139 2024-09-11 09:06:22.437144 agrero A000120627 R rec 76514f8c-1de2-480a-be78-9eb0ab8e6a34 +2024-09-11 09:06:22.494934 2024-09-11 09:06:22.494938 agrero A000124969 R rec b2fa15d3-3b36-49ad-b11d-259dd2f1ad4e +2024-09-11 09:06:22.547618 2024-09-11 09:06:22.547623 agrero A000132150 R rec 515fd2d6-3cf5-4d86-b61f-9d4169f82705 +2024-09-11 09:06:22.598221 2024-09-11 09:06:22.598227 agrero A000135302 R rec a7827a95-3add-40a5-ad96-4f01389bfa1f +2024-09-11 09:06:22.648152 2024-09-11 09:06:22.648157 agrero A000136441 R rec 44b1559e-9ce0-4d85-8a2a-75e9c660ed58 +2024-09-11 09:06:22.699845 2024-09-11 09:06:22.69985 agrero A000142799 R rec 0acaaf8e-df88-41dd-8398-8e56094e472c +2024-09-11 09:06:22.758231 2024-09-11 09:06:22.758237 agrero A000144337 R rec c725bee7-64c3-4463-b68a-60f39be17680 +2024-09-11 09:06:22.814918 2024-09-11 09:06:22.814922 agrero A000147059 R rec fb109311-3c92-471c-b0f3-794dd8f36078 +2024-09-11 09:06:22.869152 2024-09-11 09:06:22.869157 agrero A000152472 R rec 59b45902-9352-4962-8ac9-fb615759833a +2024-09-11 09:06:22.918645 2024-09-11 09:06:22.918651 agrero A000152802 R rec 11935762-f812-4375-81ad-b4773127ce26 +2024-09-11 09:06:22.9701 2024-09-11 09:06:22.970105 agrero A000156095 R rec bf1b2f25-c8d0-4344-bbbb-4cec7dad1f05 +2024-09-11 09:06:23.021923 2024-09-11 09:06:23.021928 agrero A000157703 R rec 7765f7bc-d2c7-466a-84ba-d8828f3a6c7d +2024-09-11 09:06:23.078151 2024-09-11 09:06:23.078157 agrero A000171374 R rec 097bcc2f-b0b7-47c6-9039-fa8374ca031c +2024-09-11 09:06:23.13661 2024-09-11 09:06:23.136614 agrero A000176762 R rec 97e4c4a8-5576-40b0-b175-c495588384b0 +2024-09-11 09:06:23.18569 2024-09-11 09:06:23.185695 agrero A000181158 R rec 0fefdff5-40ed-43a8-9430-5346ee788f02 +2024-09-11 09:06:23.236509 2024-09-11 09:06:23.236515 agrero A000183008 R rec 5f53bd3e-daa1-4f8c-8b99-d6cadf1c156e +2024-09-11 09:06:23.314352 2024-09-11 09:06:23.314357 agrero A000183027 R rec 22a98b66-12bf-4da3-99a8-c0b6d4da86ef +2024-09-11 09:06:23.371466 2024-09-11 09:06:23.37147 agrero A000184256 R rec cb84f29e-4502-445a-9b82-bf853964980b +2024-09-11 09:06:23.422012 2024-09-11 09:06:23.422017 agrero A000185690 R rec ca179893-6bb6-4c2b-b69d-499dcd71de31 +2024-09-11 09:06:23.472032 2024-09-11 09:06:23.472038 agrero A000187213 R rec 55620ea2-758a-4506-81df-65048f7791d5 +2024-09-11 09:06:23.526609 2024-09-11 09:06:23.526615 agrero A000187557 R rec ae81ca0f-bd51-4011-994d-a236931f3e8c +2024-09-11 09:06:23.578826 2024-09-11 09:06:23.578832 agrero A000189570 R rec a13a42ec-d70c-4972-860d-45b8f1bd5aa2 +2024-09-11 09:06:23.631852 2024-09-11 09:06:23.631857 agrero A000190495 R rec 84d78f45-0e51-48da-9699-2223042bad66 +2024-09-11 09:06:23.680629 2024-09-11 09:06:23.680635 agrero A000193226 R rec 22f53321-da32-41b9-ad53-d1d181b4c4e2 +2024-09-11 09:06:23.734723 2024-09-11 09:06:23.734728 agrero A000193381 R rec 5858a998-ce7a-4e23-b5ea-f061dd649689 +2024-09-11 09:06:23.78886 2024-09-11 09:06:23.788866 agrero A000193605 R rec e6d5fb41-7141-4c74-89a3-b3a18e11b0e1 +2024-09-11 09:06:23.841328 2024-09-11 09:06:23.841334 agrero A000194499 R rec c6c28665-1037-43a0-bac9-9c5d8fede271 +2024-09-11 09:06:23.903026 2024-09-11 09:06:23.903031 agrero A002910761 R rec c555e9f9-f7ff-4227-9dfd-cd1bc9297e7f +2024-09-11 09:06:23.957441 2024-09-11 09:06:23.957446 agrero A002912942 R rec b5219bb5-c583-4e36-817e-53cd6a5c6f42 +2024-09-11 09:06:24.025115 2024-09-11 09:06:24.025121 agrero A002916477 R rec 898ff846-9e68-4509-a0df-cd18f304a0c0 +2024-09-11 09:06:24.07751 2024-09-11 09:06:24.077515 agrero A002922214 R rec ab4f40f1-ea1e-4e5a-aef4-29f5922049a2 +2024-09-11 09:06:24.130885 2024-09-11 09:06:24.130892 agrero A002922621 R rec 9c5d9b67-b15e-4f5c-bade-82d1b55f84d6 +2024-09-11 09:06:24.192652 2024-09-11 09:06:24.192658 agrero A002928445 R rec 97ba4e28-b9ad-4ed4-b53e-78934fb1cfbf +2024-09-11 09:06:24.242336 2024-09-11 09:06:24.242341 agrero A002929473 R rec e43613d5-7f3f-4a2d-9ff6-ab6f8413293b +2024-09-11 09:06:24.299378 2024-09-11 09:06:24.299383 agrero A002931456 R rec 500f235c-641b-4b7d-9a15-4371924c6b16 +2024-09-11 09:06:24.348834 2024-09-11 09:06:24.348839 agrero A002933956 R rec b759012c-4fc9-40bf-9996-383f47a64f02 +2024-09-11 09:06:24.404004 2024-09-11 09:06:24.40401 agrero A002939215 R rec 55b08063-422f-4b29-8542-51da16f87a84 +2024-09-11 09:06:24.459127 2024-09-11 09:06:24.459133 agrero A002939817 R rec 049ffe26-3fbd-4aff-9934-13c222030931 +2024-09-11 09:06:24.531937 2024-09-11 09:06:24.531942 agrero A002940438 R rec 417b9b53-8d9c-4731-a781-b3f8e920eb03 +2024-09-11 09:06:24.596374 2024-09-11 09:06:24.596381 agrero A002940495 R rec 4d2d1b0c-cef1-42f6-8c2c-803a57da4da3 +2024-09-11 09:06:24.658169 2024-09-11 09:06:24.658174 agrero A002941414 R rec 3e95759d-bc10-43d0-bb27-e5ea198c7cb8 +2024-09-11 09:06:24.724021 2024-09-11 09:06:24.724026 agrero A002941440 R rec 35943490-eab5-4a70-ae81-9246f223cd28 +2024-09-11 09:06:24.781476 2024-09-11 09:06:24.781482 agrero A002942098 R rec 300b153a-0b55-4781-aa7a-6b98e44963e9 +2024-09-11 09:06:24.838791 2024-09-11 09:06:24.838796 agrero A002944324 R rec 3fe7f14a-57a3-44e4-b0d0-e7dbdbdc94fb +2024-09-11 09:06:24.888552 2024-09-11 09:06:24.88856 agrero A002947740 R rec 962e1fbe-5bb5-47c4-9038-dc5e96f43fba +2024-09-11 09:06:24.942272 2024-09-11 09:06:24.942278 agrero A002953651 R rec fb461f8e-a8b9-44e8-a0bd-6618f5b4c4c6 +2024-09-11 09:06:24.995992 2024-09-11 09:06:24.995996 agrero A002955901 R rec 76bb7f98-5340-4121-8fb6-414b776f3038 +2024-09-11 09:06:25.046479 2024-09-11 09:06:25.046484 agrero A002961093 R rec 5f5b9684-4470-4a40-8f49-db2381dabafe +2024-09-11 09:06:25.110085 2024-09-11 09:06:25.11009 agrero A002963001 R rec 79573700-7766-49e5-ba7b-08192acf1059 +2024-09-11 09:06:25.172994 2024-09-11 09:06:25.172999 agrero A002966255 R rec 778ac0fb-44d3-4b6c-9a79-b51fc7c8bc45 +2024-09-11 09:06:25.24246 2024-09-11 09:06:25.242465 agrero A002968314 R rec d9754c71-ca37-4d5f-adc2-4cad88aaf047 +2024-09-11 09:06:25.301332 2024-09-11 09:06:25.301337 agrero A002969933 R rec de43fc4a-12ec-47fd-91cd-974c652d894c +2024-09-11 09:06:25.352741 2024-09-11 09:06:25.352747 agrero A002971659 R rec 622f5084-a415-49d3-9537-c26af788e107 +2024-09-11 09:06:25.412874 2024-09-11 09:06:25.41288 agrero A002979038 R rec 4b65ed8b-e0b8-4e63-89d2-d5718938e10e +2024-09-11 09:06:25.466292 2024-09-11 09:06:25.466297 agrero A002979177 R rec 761ec120-e5c7-4021-be0f-0f61642d4f0f +2024-09-11 09:06:25.520262 2024-09-11 09:06:25.520267 agrero A002981392 R rec 22df092d-1398-403e-ad38-f3ac08221b64 +2024-09-11 09:06:25.575349 2024-09-11 09:06:25.575354 agrero A002981924 R rec 4758e651-fb76-4345-9a0d-80970535a7fa +2024-09-11 09:06:25.639231 2024-09-11 09:06:25.639236 agrero A002992084 R rec d6496a23-8a99-4df3-9033-03bdcd182e82 +2024-09-11 09:06:25.717024 2024-09-11 09:06:25.71703 agrero A002992522 R rec 828699d5-66a1-4003-8969-24621d3be6f8 +2024-09-11 09:06:25.794894 2024-09-11 09:06:25.794899 agrero A002993107 R rec 81686704-68d8-44c1-853b-b4924dc66154 +2024-09-11 09:06:25.845495 2024-09-11 09:06:25.8455 agrero A003003384 R rec 1aaafc19-1e1c-4e2e-b7b4-d2dd45a6aab3 +2024-09-11 09:06:25.900118 2024-09-11 09:06:25.900123 agrero A003005276 R rec bec0a1d9-a59f-4c11-8cbb-7616bcb32faa +2024-09-11 09:06:25.951433 2024-09-11 09:06:25.951438 agrero A003005486 R rec 3c7e0d24-d46f-4f5f-9d50-3c9844bcaa7e +2024-09-11 09:06:26.006316 2024-09-11 09:06:26.006321 agrero A003010065 R rec 89ec09df-c65e-4b5e-8fe4-dfd74e77f50d +2024-09-11 09:06:26.058007 2024-09-11 09:06:26.058012 agrero A003013653 R rec bc8fbbba-157c-4b6f-aa4f-ef399285dc3b +2024-09-11 09:06:26.10828 2024-09-11 09:06:26.108285 agrero A003017126 R rec 35c85637-7fe5-488a-9eec-3d8cfafd360b +2024-09-11 09:06:26.161359 2024-09-11 09:06:26.161365 agrero A003019667 R rec 52b3e893-a94c-4f6e-8dd3-bea6347cd3db +2024-09-11 09:06:26.218214 2024-09-11 09:06:26.218222 agrero A003020410 R rec 282b8c48-99c9-460e-bde8-3fe0bee6306d +2024-09-11 09:06:26.270491 2024-09-11 09:06:26.270495 agrero A003021395 R rec 508fc366-565d-4114-888c-d43f86fe19e7 +2024-09-11 09:06:26.323904 2024-09-11 09:06:26.323909 agrero A003024732 R rec 0ed860bd-9293-4091-a93b-ff4564c6718d +2024-09-11 09:06:26.377904 2024-09-11 09:06:26.377909 agrero A003028730 R rec 127abfa4-0093-46dc-94d8-ce5cccea7941 +2024-09-11 09:06:26.434517 2024-09-11 09:06:26.434522 agrero A003031223 R rec 4642975d-7047-4a01-893c-845fdb0dfcdf +2024-09-11 09:06:26.487612 2024-09-11 09:06:26.487618 agrero A003037757 R rec 307e046d-eef6-42c1-b8fb-5ec5ff05bb46 +2024-09-11 09:06:26.544995 2024-09-11 09:06:26.545001 agrero A003037886 R rec 8a7db173-63a6-4f31-b51c-57db18b17a14 +2024-09-11 09:06:26.605225 2024-09-11 09:06:26.60523 agrero A003042099 R rec ba7a7cff-2ac2-45c3-9335-58a10097a37a +2024-09-11 09:06:26.656545 2024-09-11 09:06:26.65655 agrero A003042520 R rec 609a641d-d107-40a0-96d4-5117a43115ff +2024-09-11 09:06:26.707132 2024-09-11 09:06:26.707137 agrero A003048129 R rec 0e4e7ae1-414f-4b87-b66a-9c100315c0a3 +2024-09-11 09:06:26.761728 2024-09-11 09:06:26.761733 agrero A003050459 R rec 27aef18c-0d07-43f9-8b95-0bf37f90e29d +2024-09-11 09:06:26.814089 2024-09-11 09:06:26.814094 agrero A003055215 R rec 4bc56d19-1bfb-4d10-b8df-89e1dcf0cbba +2024-09-11 09:06:26.879057 2024-09-11 09:06:26.879062 agrero A003055423 R rec 1dae8f9d-21bd-4462-b9b2-8258a1e7a6a9 +2024-09-11 09:06:26.946349 2024-09-11 09:06:26.946354 agrero A003061439 R rec 5ddbfb53-0325-4861-ba93-f61e7da88a0a +2024-09-11 09:06:27.020059 2024-09-11 09:06:27.020067 agrero A003061455 R rec ec67545e-4b7c-4266-9c25-f02b309e1013 +2024-09-11 09:06:27.098683 2024-09-11 09:06:27.098688 agrero A003063890 R rec 96dd3c49-3d1a-42bc-ae18-ef3679e659af +2024-09-11 09:06:27.15207 2024-09-11 09:06:27.152075 agrero A003064605 R rec e913e789-daf4-4e8b-8868-17b71324bab6 +2024-09-11 09:06:27.203063 2024-09-11 09:06:27.203069 agrero A003065345 R rec e896a922-289a-428e-aca1-800d4593ad0c +2024-09-11 09:06:27.2544 2024-09-11 09:06:27.254406 agrero A003066204 R rec 0dc79655-fa3b-464c-8c04-3687a64e1c16 +2024-09-11 09:06:27.318419 2024-09-11 09:06:27.318425 agrero A003077749 R rec 2225716f-80fb-4aa1-91f2-b7b3b500136a +2024-09-11 09:06:27.386857 2024-09-11 09:06:27.386864 agrero A003080186 R rec d095370a-500b-40ea-bc5b-f67389d1bfea +2024-09-11 09:06:27.441098 2024-09-11 09:06:27.441102 agrero A003082787 R rec 542f702c-b7a5-4a5d-9643-fd72c4247dc5 +2024-09-11 09:06:27.500904 2024-09-11 09:06:27.50091 agrero A003084316 R rec b3b46c77-6e3d-4fc6-9f58-8a9ed14fd729 +2024-09-11 09:06:27.557046 2024-09-11 09:06:27.557051 agrero A003085874 R rec 09eb33a8-ad75-4549-8038-f9faa5e65ea0 +2024-09-11 09:06:27.631707 2024-09-11 09:06:27.631713 agrero A003086097 R rec 521e2377-5a5b-4b04-b84e-b9fbc9027e3d +2024-09-11 09:06:27.692755 2024-09-11 09:06:27.69276 agrero A003086874 R rec 105dc545-85aa-4873-a941-568db94efe38 +2024-09-11 09:06:27.755991 2024-09-11 09:06:27.755996 agrero A003089906 R rec fe140ac5-df9c-4d3e-8a26-7eae457ee891 +2024-09-11 09:06:27.806222 2024-09-11 09:06:27.806227 agrero A003093098 R rec 3dc209bf-9d8f-46e4-bdef-ba6e4311c548 +2024-09-11 09:06:27.857698 2024-09-11 09:06:27.857702 agrero A003093717 R rec a55df433-be9d-4f18-9578-e3032b47c713 +2024-09-11 09:06:27.919378 2024-09-11 09:06:27.919386 agrero A003094768 R rec ce7b6518-baf2-460e-8c7b-c93b401da7f9 +2024-09-11 09:06:27.971731 2024-09-11 09:06:27.971736 agrero A003094880 R rec 9584bf2d-4c59-4891-a332-6df821778d3d +2024-09-11 09:06:28.029073 2024-09-11 09:06:28.02908 agrero A003096778 R rec aac9ee41-b637-4896-a461-b5f0564d0ad4 +2024-09-11 09:06:28.081453 2024-09-11 09:06:28.081458 agrero A003098919 R rec fb42561a-d9ad-4610-a6fc-1f6d0038d279 +2024-09-11 09:06:28.131964 2024-09-11 09:06:28.13197 agrero A003099881 R rec 1eaacdce-9243-4586-9e8e-0c7dcd89d52f +2024-09-11 09:06:28.185134 2024-09-11 09:06:28.185139 agrero A003100597 R rec 8f33b897-e1c6-47ef-93f1-c0da592f71f9 +2024-09-11 09:06:28.235629 2024-09-11 09:06:28.235634 agrero A003101806 R rec ff2df582-13d5-4194-bfc9-78de91c58ca1 +2024-09-11 09:06:28.30073 2024-09-11 09:06:28.300735 agrero A003103435 R rec e8312a7d-cc57-426d-b242-16b70b6ac8bc +2024-09-11 09:06:28.351151 2024-09-11 09:06:28.351157 agrero A003103659 R rec 3f678721-27ae-4561-bc8c-f643840b49f0 +2024-09-11 09:06:28.410367 2024-09-11 09:06:28.410372 agrero A003104849 R rec 19686ff9-d59a-4edf-83ad-d62d4456a6ec +2024-09-11 09:06:28.500167 2024-09-11 09:06:28.500172 agrero A003111864 R rec d89f2bcf-96c3-442a-8ccb-3b035227a92d +2024-09-11 09:06:28.565345 2024-09-11 09:06:28.565351 agrero A003112356 R rec 06cf43ce-72b8-44d5-977f-79bb983613c9 +2024-09-11 09:06:28.616885 2024-09-11 09:06:28.61689 agrero A003113657 R rec fdf32373-5ec9-4e6f-8f17-347af35d9347 +2024-09-11 09:06:28.670219 2024-09-11 09:06:28.670223 agrero A003114032 R rec e04fc7fc-ea09-435b-b28b-6d8d59f25f66 +2024-09-11 09:06:28.720756 2024-09-11 09:06:28.720762 agrero A003114105 R rec b79343ee-ae02-4f9d-b920-b7191046a51c +2024-09-11 09:06:28.775456 2024-09-11 09:06:28.775461 agrero A003114110 R rec e9d05e5e-483e-4a29-b361-342c3aca27e0 +2024-09-11 09:06:28.831448 2024-09-11 09:06:28.831453 agrero A003116989 R rec f541936b-f165-4d3e-bdfe-8f47c15480dc +2024-09-11 09:06:28.883153 2024-09-11 09:06:28.883158 agrero A003121026 R rec a3512b9e-78c2-467b-87e1-cd4443474495 +2024-09-11 09:06:28.937583 2024-09-11 09:06:28.937588 agrero A003121313 R rec adb4500f-8063-4d1d-8312-126041cc7ac3 +2024-09-11 09:06:28.989545 2024-09-11 09:06:28.98955 agrero A003122042 R rec 3efc97a2-356c-449d-91d3-61f1aec4e92b +2024-09-11 09:06:29.039239 2024-09-11 09:06:29.039244 agrero A003122713 R rec 11ab4778-0a8e-4bea-a67e-eaef5ad741a9 +2024-09-11 09:06:29.091722 2024-09-11 09:06:29.091727 agrero A003123930 R rec 0b87937c-c5bd-45cf-bc58-595912f5c9dd +2024-09-11 09:06:29.14327 2024-09-11 09:06:29.143275 agrero A003131969 R rec a1b6f83e-dbb0-468d-834c-56c22da5e63b +2024-09-11 09:06:29.195466 2024-09-11 09:06:29.195471 agrero A003132079 R rec a6b3aa03-2630-4cb2-a07d-48bd10fb4a86 +2024-09-11 09:06:29.258549 2024-09-11 09:06:29.258554 agrero A003134703 R rec 95079df8-2bca-4d29-bb67-6b2cd87fd3aa +2024-09-11 09:06:29.310292 2024-09-11 09:06:29.310297 agrero A003136891 R rec b4bceed3-c1b8-4c1f-8ad4-a2959da5e9ba +2024-09-11 09:06:29.363082 2024-09-11 09:06:29.363089 agrero A003141286 R rec ce4f9058-68bc-48a2-a243-8bdcb29db835 +2024-09-11 09:06:29.417479 2024-09-11 09:06:29.417486 agrero A003141352 R rec 72dc05f3-39f2-498e-82f1-d86f1121b094 +2024-09-11 09:06:29.489406 2024-09-11 09:06:29.489411 agrero A003142207 R rec 2666fa14-8f51-4c6a-b548-686f6438b9ac +2024-09-11 09:06:29.541362 2024-09-11 09:06:29.541368 agrero A003145194 R rec 6491f4cf-2e81-4778-8e7f-2d3d02aca9f6 +2024-09-11 09:06:29.597632 2024-09-11 09:06:29.597638 agrero A003145393 R rec af685bfc-4d9b-40cf-b406-53a5805bed02 +2024-09-11 09:06:29.656184 2024-09-11 09:06:29.65619 agrero A003146897 R rec ed98ead4-ab82-4ff9-aa43-6773bcb1393d +2024-09-11 09:06:29.722515 2024-09-11 09:06:29.72252 agrero A003149155 R rec 4cb4b2af-3895-4c19-b87a-2a4bf497c10e +2024-09-11 09:06:29.805767 2024-09-11 09:06:29.805772 agrero A003149182 R rec 6b32a058-a6ad-4c0f-b684-a980827b4538 +2024-09-11 09:06:29.858769 2024-09-11 09:06:29.858774 agrero A003149832 R rec e0122920-767d-4183-8ddf-7ecd69c95e5a +2024-09-11 09:06:29.911875 2024-09-11 09:06:29.91188 agrero A003150269 R rec 3dc20891-1acb-492d-8422-793a691b0051 +2024-09-11 09:06:29.964909 2024-09-11 09:06:29.964914 agrero A003151816 R rec d401f57b-e5ae-4046-8d5c-10473da1c2cd +2024-09-11 09:06:30.022348 2024-09-11 09:06:30.022353 agrero A003154955 R rec 02d30f8a-17c0-4747-a1ec-f317d5002bd6 +2024-09-11 09:06:30.076078 2024-09-11 09:06:30.076084 agrero A003155460 R rec d9a20480-5ec3-4665-9e44-b7c7be9c0374 +2024-09-11 09:06:30.13165 2024-09-11 09:06:30.131656 agrero A003155524 R rec d50c795a-a7da-4356-b8ff-1fd20bf7882d +2024-09-11 09:06:30.190178 2024-09-11 09:06:30.190183 agrero A003159779 R rec 9bfb5def-8364-4b34-bd8b-4491f5465348 +2024-09-11 09:06:30.240263 2024-09-11 09:06:30.240268 agrero A003162783 R rec a177af00-e77c-49d7-83ec-8694da1a4d0f +2024-09-11 09:06:30.294845 2024-09-11 09:06:30.29485 agrero A003170262 R rec 68225dab-9904-4a3a-ba71-7420db3ea91b +2024-09-11 09:06:30.352542 2024-09-11 09:06:30.352547 agrero A003171170 R rec 7e1cf7d6-3a81-4610-8490-de08ae2d295d +2024-09-11 09:06:30.416084 2024-09-11 09:06:30.416089 agrero A003172151 R rec b8587448-1b12-4308-b4d1-a9978c5b5d1f +2024-09-11 09:06:30.469233 2024-09-11 09:06:30.469238 agrero A003172474 R rec 8616e698-19ab-4ce8-8049-6d32e0b3ed11 +2024-09-11 09:06:30.522439 2024-09-11 09:06:30.522443 agrero A003173240 R rec eee0d625-241f-4635-89e3-1b30e156457e +2024-09-11 09:06:30.573854 2024-09-11 09:06:30.573858 agrero A003177980 R rec 9cd08ad9-80ff-4cba-a3e6-fa3960ded46e +2024-09-11 09:06:30.624975 2024-09-11 09:06:30.62498 agrero A003178146 R rec 9256b0cb-1420-4d95-b440-b6818dd93019 +2024-09-11 09:06:30.675278 2024-09-11 09:06:30.675283 agrero A003179452 R rec 605dd86a-77b4-4b0d-a06f-a173823c8714 +2024-09-11 09:06:30.725709 2024-09-11 09:06:30.725714 agrero A003182838 R rec 430fdc56-ec0a-4e2b-97f4-a858d315d116 +2024-09-11 09:06:30.781367 2024-09-11 09:06:30.781372 agrero A003184655 R rec 564bbdab-cdf5-4616-87cd-3b7aab8af7bc +2024-09-11 09:06:30.865533 2024-09-11 09:06:30.865539 agrero A003185209 R rec 37cff5ba-4d2f-4ea7-87d3-280e8be36ef1 +2024-09-11 09:06:30.927257 2024-09-11 09:06:30.927262 agrero A003188796 R rec ab836f96-9a4a-491c-9ce9-150cd62dd019 +2024-09-11 09:06:30.991714 2024-09-11 09:06:30.991718 agrero A003192212 R rec d76eb3e8-c35f-4377-98ed-28324730c503 +2024-09-11 09:06:31.042921 2024-09-11 09:06:31.042927 agrero A003194582 R rec b4faac7d-ed82-445b-9bac-eef63e90052c +2024-09-11 09:06:31.095838 2024-09-11 09:06:31.095843 agrero A003196110 R rec aa750269-2eef-4b0c-a223-6d7c92f25d6d +2024-09-11 09:06:31.146615 2024-09-11 09:06:31.14662 agrero A003197536 R rec 5d76ab23-637f-49e1-a784-7560d9aabbd6 +2024-09-11 09:06:31.196107 2024-09-11 09:06:31.196113 agrero A003198713 R rec 13a1a265-d9e7-49ba-8af3-b4fd1e6a5258 +2024-09-11 09:06:31.252428 2024-09-11 09:06:31.252433 agrero A003199994 R rec c6a6404d-7b4a-4511-a221-369683ce0187 +2024-09-11 09:06:31.30475 2024-09-11 09:06:31.304755 agrero A003201589 R rec d7650468-e785-42e6-b440-407954a5af9b +2024-09-11 09:06:31.360282 2024-09-11 09:06:31.360288 agrero A003203987 R rec d847a5af-a1a2-4c55-a8b0-0437bb62b3ab +2024-09-11 09:06:31.42323 2024-09-11 09:06:31.423236 agrero A003206780 R rec e8cdd013-7d89-4ba5-85c3-6d671d92643e +2024-09-11 09:06:31.488676 2024-09-11 09:06:31.488681 agrero A003217486 R rec 5cf90abd-54a9-464d-82ea-3da32c159216 +2024-09-11 09:06:31.540606 2024-09-11 09:06:31.54061 agrero A003218658 R rec d4f10d2a-8664-4836-89c2-dbe91d40ed46 +2024-09-11 09:06:31.596961 2024-09-11 09:06:31.596966 agrero A003218686 R rec 010b59ba-1ae2-447a-8c7a-0ee888a125b8 +2024-09-11 09:06:31.654651 2024-09-11 09:06:31.654662 agrero A003223430 R rec 2a8067c5-f679-44d7-9f5b-4158f41bba9e +2024-09-11 09:06:31.717072 2024-09-11 09:06:31.717077 agrero A003230887 R rec 5576caf0-e2a1-440a-85ec-1294683214bc +2024-09-11 09:06:31.769004 2024-09-11 09:06:31.769009 agrero A003235750 R rec cfc8ea46-d68e-46ad-9eac-ad581b1423b9 +2024-09-11 09:06:31.820169 2024-09-11 09:06:31.820175 agrero A003235825 R rec 048f55b0-9b09-4739-aba3-9ad08676fe4e +2024-09-11 09:06:31.876277 2024-09-11 09:06:31.876282 agrero A003236665 R rec 8e6e9a14-19b1-4069-9944-77e3da0f18b5 +2024-09-11 09:06:31.930418 2024-09-11 09:06:31.930423 agrero A003237696 R rec be38a155-e53e-46f7-b50b-197365a67fb2 +2024-09-11 09:06:31.981067 2024-09-11 09:06:31.981073 agrero A003240957 R rec 7442f2e5-7865-422e-8542-1a70d0af4e92 +2024-09-11 09:06:32.036068 2024-09-11 09:06:32.036074 agrero A003242452 R rec c2c4a22b-6242-4897-a46d-046a2ebda0d4 +2024-09-11 09:06:32.087369 2024-09-11 09:06:32.087373 agrero A003243348 R rec 9dd08cca-ff8f-4e45-88e3-abd4c45eaae0 +2024-09-11 09:06:32.149241 2024-09-11 09:06:32.149246 agrero A003245434 R rec 578f8c73-d9d7-4f2f-af7f-b87908d3dcda +2024-09-11 09:06:32.212981 2024-09-11 09:06:32.212987 agrero A003246832 R rec 83766caa-cf29-4c37-9aba-4c7fe48a7f52 +2024-09-11 09:06:32.265715 2024-09-11 09:06:32.265721 agrero A003250020 R rec c34d4080-e434-482e-8bf6-866111251529 +2024-09-11 09:06:32.330391 2024-09-11 09:06:32.330396 agrero A003250278 R rec a5c72e55-e7fe-4cb5-a474-90a806089c76 +2024-09-11 09:06:32.38632 2024-09-11 09:06:32.386327 agrero A003250343 R rec ed0c5aaa-6481-4526-b6bf-66d6aef62c28 +2024-09-11 09:06:32.439841 2024-09-11 09:06:32.439845 agrero A003250353 R rec 7f77ba62-c2cc-4aa0-a8b2-b3336f565c6d +2024-09-11 09:06:32.493653 2024-09-11 09:06:32.493658 agrero A003251379 R rec be20407d-d94b-48c8-ade3-9ea5ec3a84c9 +2024-09-11 09:06:32.554305 2024-09-11 09:06:32.55431 agrero A003256978 R rec 220aa930-7fb0-4bf5-b4b5-24ce95621fda +2024-09-11 09:06:32.627469 2024-09-11 09:06:32.627475 agrero A003259324 R rec 7af62d7b-aaf2-4903-914d-8a218336a241 +2024-09-11 09:06:32.689665 2024-09-11 09:06:32.68967 agrero A003259363 R rec 98d4e51a-2a95-4a62-92c9-e312bc34e5d5 +2024-09-11 09:06:32.742871 2024-09-11 09:06:32.742877 agrero A003261984 R rec 2ffa1bed-adf9-445f-b01f-909eaf6acc32 +2024-09-11 09:06:32.797561 2024-09-11 09:06:32.797567 agrero A003262188 R rec bdfe805a-567f-4043-a681-9d4b741de684 +2024-09-11 09:06:32.854822 2024-09-11 09:06:32.854827 agrero A003263551 R rec 890361f0-cb94-48a9-9c6b-59ed206a8003 +2024-09-11 09:06:32.913798 2024-09-11 09:06:32.913804 agrero A003264908 R rec 4050b496-a98b-4d7b-8510-74e83273793a +2024-09-11 09:06:32.979982 2024-09-11 09:06:32.979988 agrero A003265730 R rec c03c85c7-4644-445a-807a-8c1e2bab4f70 +2024-09-11 09:06:33.042974 2024-09-11 09:06:33.04298 agrero A003267103 R rec 5747374f-070f-4bc1-8491-7bf47c035c6c +2024-09-11 09:06:33.099112 2024-09-11 09:06:33.099117 agrero A003267500 R rec aeb2c13f-06fc-4609-9bf6-1012e0be4c1b +2024-09-11 09:06:33.15256 2024-09-11 09:06:33.152565 agrero A003268129 R rec 203f9212-5263-48b9-894a-085423b4baa0 +2024-09-11 09:06:33.206333 2024-09-11 09:06:33.206338 agrero A003272218 R rec 46e9f598-a690-4067-895e-0b700e28544a +2024-09-11 09:06:33.262178 2024-09-11 09:06:33.262192 agrero A003272478 R rec 98fc952b-71fc-423a-bee8-fd52a1d664b9 +2024-09-11 09:06:33.315464 2024-09-11 09:06:33.315469 agrero A003272492 R rec 0cbe314e-a252-40bd-aa81-98a63da73bdd +2024-09-11 09:06:33.393831 2024-09-11 09:06:33.393836 agrero A003274907 R rec 0b6f2bf8-d4a1-4e7b-945e-d4b5ab01e9e0 +2024-09-11 09:06:33.456146 2024-09-11 09:06:33.456151 agrero A003275937 R rec 1abc014f-d01a-41e0-9c9b-35f60f56e1b7 +2024-09-11 09:06:33.520718 2024-09-11 09:06:33.520723 agrero A003276590 R rec fc335a99-7a36-4f97-ad44-5b334dafd604 +2024-09-11 09:06:33.57837 2024-09-11 09:06:33.578375 agrero A003278829 R rec d8a1d09e-5f92-4b0c-ada6-c1ffa1ff76d2 +2024-09-11 09:06:33.62987 2024-09-11 09:06:33.629876 agrero A003281452 R rec d6fbc21d-5441-44d2-920a-d0daaae71028 +2024-09-11 09:06:33.688059 2024-09-11 09:06:33.688065 agrero A003283186 R rec 600cb3aa-78a0-41ee-8b98-efde98ebce87 +2024-09-11 09:06:33.743445 2024-09-11 09:06:33.74345 agrero A003288318 R rec c54d00cd-00cb-45a1-bc03-6be5c3696111 +2024-09-11 09:06:33.794549 2024-09-11 09:06:33.794554 agrero A003293538 R rec f762073a-335e-4ade-a976-5ac39448a4e1 +2024-09-11 09:06:33.849657 2024-09-11 09:06:33.849663 agrero A003299867 R rec d74dd4b6-0b19-4ed0-8cdf-b47aca3e5e9f +2024-09-11 09:06:33.902349 2024-09-11 09:06:33.902355 agrero A003300349 R rec 47463234-66e8-42a8-a05d-63a6d2e18b7b +2024-09-11 09:06:33.965342 2024-09-11 09:06:33.965347 agrero A003301693 R rec d38f5505-8939-49a9-8bd6-a0b9ee40717e +2024-09-11 09:06:34.032751 2024-09-11 09:06:34.032756 agrero A003302604 R rec ae7dbcf4-c5a4-473e-804e-f9b09d35cf38 +2024-09-11 09:06:34.092243 2024-09-11 09:06:34.092249 agrero A003303466 R rec 0379fdfe-82e1-4e03-b2e8-73788d8fc4a4 +2024-09-11 09:06:34.145297 2024-09-11 09:06:34.145303 agrero A003303830 R rec bd948ef0-e470-4e73-8a1b-4f7e1040804d +2024-09-11 09:06:34.202378 2024-09-11 09:06:34.202383 agrero A003307504 R rec 77d7c3d0-3b21-4285-8d2b-bc383a0c3d0c +2024-09-11 09:06:34.254375 2024-09-11 09:06:34.254383 agrero A003308819 R rec 21cbd33b-a157-4d4d-a98d-25fa8bafe7e5 +2024-09-11 09:06:34.306914 2024-09-11 09:06:34.30692 agrero A003312980 R rec 7e65a4e8-7fab-410a-8f72-038d12686600 +2024-09-11 09:06:34.368422 2024-09-11 09:06:34.368427 agrero A003314705 R rec 71888975-fbdf-4a3d-a1bc-d81534124714 +2024-09-11 09:06:34.419132 2024-09-11 09:06:34.419137 agrero A003316151 R rec 369a2631-2d42-4445-bf84-5b36a6cd9edd +2024-09-11 09:06:34.471571 2024-09-11 09:06:34.471577 agrero A003319632 R rec 243b1374-ccca-4ec6-a435-ec5d14c88c25 +2024-09-11 09:06:34.541574 2024-09-11 09:06:34.54158 agrero A003320872 R rec e0bd4692-af54-4c00-a514-f7e98989f269 +2024-09-11 09:06:34.609576 2024-09-11 09:06:34.609581 agrero A003324081 R rec b0928fe7-7951-4c48-9db7-a06d74e49ede +2024-09-11 09:06:34.664651 2024-09-11 09:06:34.664657 agrero A003328096 R rec d8b3d88b-595d-4ebf-8333-50c0301fc0d0 +2024-09-11 09:06:34.762211 2024-09-11 09:06:34.762217 agrero A003331851 R rec 2acebc2c-b021-42a1-b671-102300bb23ab +2024-09-11 09:06:34.816166 2024-09-11 09:06:34.816171 agrero A003334623 R rec 815ca416-e14d-4e32-ba2f-ba9d4c5ed91c +2024-09-11 09:06:34.867658 2024-09-11 09:06:34.867663 agrero A003337947 R rec 3a961d5b-646d-4485-af3d-8d4c05ea547c +2024-09-11 09:06:34.921401 2024-09-11 09:06:34.921406 agrero A003351113 R rec 2781a52e-bd95-4c26-96e6-3e883c1cd939 +2024-09-11 09:06:34.979797 2024-09-11 09:06:34.979803 agrero A003352968 R rec bf022cdc-77ae-4bb9-ade4-e1425df471ec +2024-09-11 09:06:35.049078 2024-09-11 09:06:35.049084 agrero A003357999 R rec 110b2703-06fc-46d2-9f19-3a8f32c31642 +2024-09-11 09:06:35.103899 2024-09-11 09:06:35.103904 agrero A003359260 R rec 772fe1ea-8e72-4495-b1b0-0bf631800c31 +2024-09-11 09:06:35.156112 2024-09-11 09:06:35.156117 agrero A003360509 R rec ecc1b600-e7a3-4f74-a748-96c41788328c +2024-09-11 09:06:35.220738 2024-09-11 09:06:35.220744 agrero A003361845 R rec b28f656e-90b3-4de2-87c6-11295789963e +2024-09-11 09:06:35.272458 2024-09-11 09:06:35.272463 agrero A003362103 R rec 777d55d6-9522-4440-a537-3a2b3bf11ca7 +2024-09-11 09:06:35.328308 2024-09-11 09:06:35.328313 agrero A003363900 R rec 62f324b5-27c0-482a-beb3-dc3210d042a2 +2024-09-11 09:06:35.394052 2024-09-11 09:06:35.394058 agrero A003364295 R rec c2f72b99-09e7-4b90-8cb6-8fdb536d39a6 +2024-09-11 09:06:35.457488 2024-09-11 09:06:35.457493 agrero A003370921 R rec 72728d3e-36f9-4dd5-829f-2c4f37edfd21 +2024-09-11 09:06:35.526792 2024-09-11 09:06:35.526798 agrero A003375801 R rec deaeee79-e3d3-405e-a035-e986523e1204 +2024-09-11 09:06:35.593284 2024-09-11 09:06:35.593291 agrero A003378379 R rec 8072bf1e-1d56-4c47-9ded-03444a3fffec +2024-09-11 09:06:35.658282 2024-09-11 09:06:35.658288 agrero A003378581 R rec 00518c5e-5d29-4f78-954b-a43387c6c05c +2024-09-11 09:06:35.732077 2024-09-11 09:06:35.732083 agrero A003378837 R rec c69efcbd-3b2f-4ac8-a122-9da8e32eeb2d +2024-09-11 09:06:35.797235 2024-09-11 09:06:35.797241 agrero A003379503 R rec e72d11ec-44a2-4445-8dc4-ac6f7ea7848d +2024-09-11 09:06:35.894258 2024-09-11 09:06:35.894264 agrero A003381861 R rec 4bd92d48-7c37-4c26-81e8-e2b9f9418b61 +2024-09-11 09:06:35.948091 2024-09-11 09:06:35.948096 agrero A003383105 R rec 1789039d-c023-4466-bcf8-bc44cdc71b97 +2024-09-11 09:06:35.999181 2024-09-11 09:06:35.999187 agrero A003385342 R rec fe7abe34-aade-4d9c-80eb-c79779634461 +2024-09-11 09:06:36.052401 2024-09-11 09:06:36.052409 agrero A003386566 R rec 59eebea1-fcb7-41f0-b45d-58f2898b6426 +2024-09-11 09:06:36.10197 2024-09-11 09:06:36.101975 agrero A003388636 R rec ed54011a-df2c-4dd5-a16c-242340b087ed +2024-09-11 09:06:36.155841 2024-09-11 09:06:36.155845 agrero A003389309 R rec f18b7851-a834-4b9d-ac8b-5f175248b535 +2024-09-11 09:06:36.223008 2024-09-11 09:06:36.223014 agrero A003389620 R rec 5a24fafe-178d-44c7-8c90-1c904ec1bb1c +2024-09-11 09:06:36.290227 2024-09-11 09:06:36.290231 agrero A003389663 R rec 0daa45d2-e556-4fa6-a15a-8f34d611d014 +2024-09-11 09:06:36.355101 2024-09-11 09:06:36.355106 agrero A003395338 R rec 5b5de984-b390-4dfa-9caa-4f72d0ec05ae +2024-09-11 09:06:36.411281 2024-09-11 09:06:36.411287 agrero A003398237 R rec bb53ae89-49f3-4ea4-92b8-b7987b3c796a +2024-09-11 09:06:36.473057 2024-09-11 09:06:36.473062 agrero A003399031 R rec 33458f35-e56b-4400-b81a-b0200739868e +2024-09-11 09:06:36.525314 2024-09-11 09:06:36.525319 agrero A003399240 R rec 4ffc8d1d-07e4-4725-96e5-c2c55acd3510 +2024-09-11 09:06:36.577135 2024-09-11 09:06:36.57714 agrero A003399386 R rec 98e0addc-e3c0-46a1-912f-d5d804867478 +2024-09-11 09:06:36.633366 2024-09-11 09:06:36.633372 agrero A003399601 R rec 2d64ee6e-a1ed-400c-8713-e616b9229c5f +2024-09-11 09:06:36.689831 2024-09-11 09:06:36.689836 agrero A003401536 R rec 7c18168d-d3d4-492b-9b64-94dd3cff84f6 +2024-09-11 09:06:36.741306 2024-09-11 09:06:36.741311 agrero A003402056 R rec 055da805-e988-4fa0-bcd8-404a881291f8 +2024-09-11 09:06:36.793278 2024-09-11 09:06:36.793283 agrero A003403470 R rec 2e657f6e-459b-4043-8363-fcf9e9120108 +2024-09-11 09:06:36.842165 2024-09-11 09:06:36.842171 agrero A003404800 R rec 3a63ccbb-475c-41cb-bb6a-afcdde5e1564 +2024-09-11 09:06:36.895619 2024-09-11 09:06:36.895625 agrero A003406290 R rec f81ac5e9-6e8e-441b-8e07-98c9253854b3 +2024-09-11 09:06:36.950054 2024-09-11 09:06:36.950059 agrero A003411195 R rec 05634571-b4d3-478a-ac7a-875d487a65c9 +2024-09-11 09:06:37.004401 2024-09-11 09:06:37.004407 agrero A003413213 R rec a420d31e-1caf-44a8-888b-a3a11f23193e +2024-09-11 09:06:37.056379 2024-09-11 09:06:37.056385 agrero A003413435 R rec 6af44fdf-eaf9-44c0-a7a2-931c2e60d3e2 +2024-09-11 09:06:37.110414 2024-09-11 09:06:37.110419 agrero A003416346 R rec 81f9c769-0dd9-47bb-881b-9612cba8ab03 +2024-09-11 09:06:37.206049 2024-09-11 09:06:37.206055 agrero A003418109 R rec 357fbb1c-a5ef-422b-bb46-01891237553f +2024-09-11 09:06:37.280576 2024-09-11 09:06:37.280581 agrero A003418336 R rec 7df4e867-c609-4058-8df1-d6300a2a638b +2024-09-11 09:06:37.333681 2024-09-11 09:06:37.333686 agrero A003421420 R rec 0b6b37ca-f312-4f9d-8785-672aa261362b +2024-09-11 09:06:37.383795 2024-09-11 09:06:37.383801 agrero A003421797 R rec bbc3f8da-c234-4b46-926a-32315ef4dbeb +2024-09-11 09:06:37.441673 2024-09-11 09:06:37.441679 agrero A003422794 R rec 15cc3716-cbbb-4096-88f1-4a88293a4a26 +2024-09-11 09:06:37.494502 2024-09-11 09:06:37.494507 agrero A003427813 R rec 4af60499-1458-4e49-b805-07f326656d7a +2024-09-11 09:06:37.557439 2024-09-11 09:06:37.557444 agrero A003428330 R rec b7fbfdff-f1d4-427c-80c1-7385e07ec111 +2024-09-11 09:06:37.609758 2024-09-11 09:06:37.609764 agrero A003428443 R rec d1dc1bc3-8e19-45c4-94fb-744a177a2228 +2024-09-11 09:06:37.66312 2024-09-11 09:06:37.663127 agrero A003435187 R rec 3a7cdfff-0918-4180-91ae-d6b45373edeb +2024-09-11 09:06:37.718665 2024-09-11 09:06:37.718671 agrero A003435467 R rec efd43f1b-2008-4426-a712-9b7ea495ae24 +2024-09-11 09:06:37.773178 2024-09-11 09:06:37.773183 agrero A003436041 R rec ad03bf3a-aeaa-4b65-a35f-c79a29894a9a +2024-09-11 09:06:37.854009 2024-09-11 09:06:37.854019 agrero A003441673 R rec 6b3e99d3-437f-4e03-99f5-fd0d078c96c5 +2024-09-11 09:06:37.926493 2024-09-11 09:06:37.926498 agrero A003449705 R rec a70559f4-91e9-4d3b-a20e-0f0802090057 +2024-09-11 09:06:37.979747 2024-09-11 09:06:37.979752 agrero A003449812 R rec 116b76df-f6b3-44d1-9df3-06e34a3e0961 +2024-09-11 09:06:38.032653 2024-09-11 09:06:38.032658 agrero A003450257 R rec 369f49e1-6d30-4660-8082-338dbf9413ca +2024-09-11 09:06:38.086443 2024-09-11 09:06:38.086449 agrero A003451220 R rec ac0665b8-1a43-4d7d-9629-d223b3585fc4 +2024-09-11 09:06:38.138214 2024-09-11 09:06:38.13822 agrero A003453966 R rec 0b837e88-b4fe-457c-97c0-0af962d0f60e +2024-09-11 09:06:38.190788 2024-09-11 09:06:38.190795 agrero A003454418 R rec 7baf40c7-b27b-461c-9655-95751a02fc31 +2024-09-11 09:06:38.244586 2024-09-11 09:06:38.244591 agrero A003454993 R rec 03b3ea13-f456-4818-835f-130ea496d423 +2024-09-11 09:06:38.307085 2024-09-11 09:06:38.30709 agrero A003462661 R rec 1cc952eb-b6b1-42a8-9c63-96712b5cb49e +2024-09-11 09:06:38.360926 2024-09-11 09:06:38.36093 agrero A003469619 R rec bef72ac5-2d4a-48ae-bba5-c4785fa0b2b4 +2024-09-11 09:06:38.41676 2024-09-11 09:06:38.416766 agrero A003471135 R rec 91697a6c-8323-4807-9818-bebddb2db014 +2024-09-11 09:06:38.505868 2024-09-11 09:06:38.505873 agrero A003471767 R rec 3c48a65d-8428-44d8-963c-17b743dfcdc0 +2024-09-11 09:06:38.568168 2024-09-11 09:06:38.568173 agrero A003477398 R rec e1427395-129f-411c-a957-196019184647 +2024-09-11 09:06:38.628191 2024-09-11 09:06:38.628196 agrero A003483779 R rec 75691c0d-0992-4fa6-aab2-20ccf4fad0ee +2024-09-11 09:06:38.68207 2024-09-11 09:06:38.682074 agrero A003483806 R rec 6bc97720-2472-4dfd-b72d-68a1ff9188ec +2024-09-11 09:06:38.741034 2024-09-11 09:06:38.741039 agrero A003484799 R rec d0bb8168-973b-4210-a255-092e6af660d5 +2024-09-11 09:06:38.796863 2024-09-11 09:06:38.796868 agrero A003488727 R rec 4b948961-c493-4bc9-a92a-d3abc0a9af60 +2024-09-11 09:06:38.861938 2024-09-11 09:06:38.861943 agrero A003489212 R rec 82d75cb9-146e-4c8d-ba73-6fe2ae43463f +2024-09-11 09:06:38.919235 2024-09-11 09:06:38.919239 agrero A003489450 R rec 7e2cc628-3a88-4e78-bd08-944ed0e6eb97 +2024-09-11 09:06:38.988353 2024-09-11 09:06:38.988358 agrero A003490603 R rec d53045bc-d00c-4f39-be7e-d5ffd53268f5 +2024-09-11 09:06:39.045449 2024-09-11 09:06:39.045454 agrero A003491429 R rec 4f52c075-1386-49d1-b3b6-8d7423edbfc8 +2024-09-11 09:06:39.110163 2024-09-11 09:06:39.110169 agrero A003491460 R rec e2f01289-fcd0-40a7-ab61-bc74533ff0cb +2024-09-11 09:06:39.167194 2024-09-11 09:06:39.167199 agrero A003491484 R rec becdd82c-b54d-41bb-9582-75829d643f66 +2024-09-11 09:06:39.2309 2024-09-11 09:06:39.230906 agrero A003492458 R rec 9c59c581-79ae-49c0-9bdb-368fac2ed4d8 +2024-09-11 09:06:39.281334 2024-09-11 09:06:39.281339 agrero A003494285 R rec 72ef4cfd-59d2-4dd6-a669-082b9374a441 +2024-09-11 09:06:39.34651 2024-09-11 09:06:39.346515 agrero A003497728 R rec b074d547-02bc-49ae-9f16-6b968978b040 +2024-09-11 09:06:39.433443 2024-09-11 09:06:39.433449 agrero A003501142 R rec 96dca268-8ecc-4053-bd66-942b2ca6b78b +2024-09-11 09:06:39.492892 2024-09-11 09:06:39.492897 agrero A003507812 R rec 48572e8f-71b8-4182-9675-02c173599819 +2024-09-11 09:06:39.543853 2024-09-11 09:06:39.543856 agrero A003508662 R rec 04a8cb80-b26f-48ab-b61c-19a9728cdc41 +2024-09-11 09:06:39.606885 2024-09-11 09:06:39.60689 agrero A003510150 R rec 19775d10-b7cb-4336-8ee8-9bbc75abd5c0 +2024-09-11 09:06:39.659458 2024-09-11 09:06:39.659463 agrero A003511981 R rec 8c6f85d1-bc91-45e5-bac4-6f29a6e90551 +2024-09-11 09:06:39.71542 2024-09-11 09:06:39.715426 agrero A003514292 R rec 6404155d-31d6-43c0-a0b9-0ff10b2cd7e8 +2024-09-11 09:06:39.77881 2024-09-11 09:06:39.778815 agrero A003516733 R rec 90644685-b6f2-4d31-b720-64333f7423fd +2024-09-11 09:06:39.843446 2024-09-11 09:06:39.843452 agrero A003517040 R rec 76fac601-0763-42ee-905c-56e01aa87c25 +2024-09-11 09:06:39.899197 2024-09-11 09:06:39.899201 agrero A003517060 R rec 2fbee953-7a02-427e-81af-9e0b0a54d21e +2024-09-11 09:06:39.954023 2024-09-11 09:06:39.954028 agrero A003518724 R rec 91434d37-4892-4e7b-abca-26ea72983c3d +2024-09-11 09:06:40.005342 2024-09-11 09:06:40.005347 agrero A003520958 R rec d67996b9-a813-4055-9528-1e99958c3652 +2024-09-11 09:06:40.069606 2024-09-11 09:06:40.069611 agrero A003531526 R rec 74248fa5-7437-4d07-92f7-3f9d8934f17f +2024-09-11 09:06:40.131669 2024-09-11 09:06:40.131675 agrero A003531595 R rec 22d329fc-ad8d-4da7-ab88-8da027b96f7e +2024-09-11 09:06:40.195068 2024-09-11 09:06:40.195073 agrero A003531943 R rec 3a8b0a68-502c-4332-97d6-98a29c6e52af +2024-09-11 09:06:40.257085 2024-09-11 09:06:40.25709 agrero A003538407 R rec 230ec401-ed51-4c6c-815e-455a199611e0 +2024-09-11 09:06:40.30998 2024-09-11 09:06:40.309986 agrero A003542278 R rec ed021c51-1cee-4ea0-af32-b90c0ba8eecd +2024-09-11 09:06:40.363548 2024-09-11 09:06:40.363553 agrero A003543183 R rec f72eb702-ec0a-4d7a-8734-cd7ac99ad40a +2024-09-11 09:06:40.412859 2024-09-11 09:06:40.412865 agrero A003544201 R rec f20b80c8-e05c-4cc7-b1eb-e5601f0882ec +2024-09-11 09:06:40.468091 2024-09-11 09:06:40.468096 agrero A003546689 R rec 5fb08c8c-9057-4f97-9057-6ebb4108a1ef +2024-09-11 09:06:40.537129 2024-09-11 09:06:40.537133 agrero A003550856 R rec f7e791c0-cbfb-4a9b-bf51-f74c156c0cee +2024-09-11 09:06:40.589865 2024-09-11 09:06:40.589871 agrero A003552034 R rec 46ae6eac-d516-40a4-b4b0-57333b676d14 +2024-09-11 09:06:40.652467 2024-09-11 09:06:40.652473 agrero A003552475 R rec d8b549a3-773f-4ee5-a375-5827204753af +2024-09-11 09:06:40.722511 2024-09-11 09:06:40.722516 agrero A003556987 R rec 0f538920-f3de-4051-8cbb-899da492f464 +2024-09-11 09:06:40.782019 2024-09-11 09:06:40.782023 agrero A003557648 R rec b94ecf38-0938-40ca-b8e5-a1811c6de4d4 +2024-09-11 09:06:40.833554 2024-09-11 09:06:40.833561 agrero A003557956 R rec 73faa2ac-5665-45cd-96dd-aa0c499d9c6c +2024-09-11 09:06:40.885068 2024-09-11 09:06:40.885073 agrero A003561750 R rec e1a6e7c8-6226-42a4-abc9-c47901a73a03 +2024-09-11 09:06:40.937238 2024-09-11 09:06:40.937242 agrero A003562973 R rec 8cc6d2f2-2cab-4011-a7e0-236798fa91bd +2024-09-11 09:06:40.997702 2024-09-11 09:06:40.997708 agrero A003564111 R rec 149df399-4f52-4a78-be35-1f6d7e09d5f3 +2024-09-11 09:06:41.053894 2024-09-11 09:06:41.053899 agrero A003566329 R rec ba5c0f79-2aff-4c46-b6a5-728fc7985429 +2024-09-11 09:06:41.111009 2024-09-11 09:06:41.111015 agrero A003568779 R rec 230e0102-e64e-45e6-8ffb-ae828df58030 +2024-09-11 09:06:41.162945 2024-09-11 09:06:41.16295 agrero A003569699 R rec 3217c3f8-263c-4549-8a41-b02266adbbb0 +2024-09-11 09:06:41.218519 2024-09-11 09:06:41.218525 agrero A003572511 R rec f3472ec7-04a4-4e6e-971c-a72ab5812aa9 +2024-09-11 09:06:41.28929 2024-09-11 09:06:41.289295 agrero A003572877 R rec c01dffbc-6a65-423b-a851-1fc76d2fe739 +2024-09-11 09:06:41.346557 2024-09-11 09:06:41.346563 agrero A003575662 R rec 9d4414a2-25b5-478e-9928-b734848425da +2024-09-11 09:06:41.417868 2024-09-11 09:06:41.417873 agrero A003578228 R rec d11e83d7-2ad9-4599-94a5-01cb4766d1d9 +2024-09-11 09:06:41.477023 2024-09-11 09:06:41.477029 agrero A003582881 R rec 25d74ae7-9629-4257-8565-3bad8592ae1f +2024-09-11 09:06:41.53395 2024-09-11 09:06:41.533955 agrero A003588222 R rec 1013373d-8954-4c1b-8c1f-50848bf3f4c3 +2024-09-11 09:06:41.585765 2024-09-11 09:06:41.585769 agrero A003588933 R rec cf606944-3fae-4588-b743-ac932f9011ff +2024-09-11 09:06:41.647506 2024-09-11 09:06:41.647511 agrero A003594199 R rec e92500ce-f798-4164-80ef-a5d86cc03a10 +2024-09-11 09:06:41.708136 2024-09-11 09:06:41.708141 agrero A003596440 R rec dac0fb19-4625-4549-bf7e-c4583990894e +2024-09-11 09:06:41.764104 2024-09-11 09:06:41.76411 agrero A003597080 R rec b2116f3a-7e16-4b87-8083-eb080df63e53 +2024-09-11 09:06:41.817898 2024-09-11 09:06:41.817903 agrero A003600525 R rec c3225cb9-111e-4b2f-af6e-10fca750e25c +2024-09-11 09:06:41.885257 2024-09-11 09:06:41.885265 agrero A003600526 R rec fb9cf3c6-b96c-455c-94dd-d7b3e0ee4421 +2024-09-11 09:06:41.941281 2024-09-11 09:06:41.941286 agrero A003604534 R rec 5c4770e4-4ba8-40fd-9717-8ba55a56cad3 +2024-09-11 09:06:41.991817 2024-09-11 09:06:41.991821 agrero A003610796 R rec a392f70f-eb36-4bb2-99f8-c6bddb84c054 +2024-09-11 09:06:42.046412 2024-09-11 09:06:42.046417 agrero A003611548 R rec 5ef9ab4e-23c3-491b-ba91-99388d5c3250 +2024-09-11 09:06:42.101127 2024-09-11 09:06:42.101132 agrero A003613760 R rec 901d64dc-be05-4573-a219-e2bc2600876a +2024-09-11 09:06:42.156526 2024-09-11 09:06:42.156533 agrero A003618731 R rec 8ad598e9-b278-4c0d-abf3-2c8a1bb54896 +2024-09-11 09:06:42.210991 2024-09-11 09:06:42.210996 agrero A003618791 R rec a7e0469d-2d05-4d85-8b33-008a1485cee7 +2024-09-11 09:06:42.262492 2024-09-11 09:06:42.262497 agrero A003618794 R rec 8805c615-0ddd-4f3d-8b81-fd2c78f7129e +2024-09-11 09:06:42.328344 2024-09-11 09:06:42.328349 agrero A003619989 R rec 97c12a76-fc53-485f-a0df-a0b36cbfc559 +2024-09-11 09:06:42.384708 2024-09-11 09:06:42.384713 agrero A003620019 R rec d9a62819-2fa0-4d59-ac50-5dece000d181 +2024-09-11 09:06:42.440384 2024-09-11 09:06:42.440388 agrero A003620351 R rec 13838039-880c-4bc8-a717-7c7b45ff6524 +2024-09-11 09:06:42.494424 2024-09-11 09:06:42.494429 agrero A003621449 R rec 8ec6b58d-feb7-4f6f-87c7-4d9cee0d2cd8 +2024-09-11 09:06:42.546976 2024-09-11 09:06:42.546982 agrero A003625161 R rec 44241709-7f40-4864-8704-05c71af57e3f +2024-09-11 09:06:42.606343 2024-09-11 09:06:42.606348 agrero A003630712 R rec 44106e24-79be-45e9-a874-44f595e78fe1 +2024-09-11 09:06:42.659341 2024-09-11 09:06:42.659346 agrero A003632361 R rec d792b965-c749-4b74-ad51-d95467d61591 +2024-09-11 09:06:42.723616 2024-09-11 09:06:42.72362 agrero A003637861 R rec d1380bfd-01f2-4ecc-814c-9dc090922e1b +2024-09-11 09:06:42.775995 2024-09-11 09:06:42.776 agrero A003640740 R rec 4ffb922d-3850-4c2b-96b2-5d421ad529bb +2024-09-11 09:06:42.830434 2024-09-11 09:06:42.83044 agrero A003641265 R rec b366275a-ecfb-4e5a-b184-e23e2dd82f26 +2024-09-11 09:06:42.897105 2024-09-11 09:06:42.897111 agrero A003645251 R rec 82da7811-65bb-4ca6-944b-1fc037f8f336 +2024-09-11 09:06:42.962117 2024-09-11 09:06:42.962122 agrero A003648696 R rec f021a336-91ea-4d80-b977-737eb7e7a9c2 +2024-09-11 09:06:43.016124 2024-09-11 09:06:43.016129 agrero A003650297 R rec 46a4e221-db73-45b7-b3b1-e2ccce8f649d +2024-09-11 09:06:43.068768 2024-09-11 09:06:43.068774 agrero A003650669 R rec 56ab7802-c8c3-4ee4-b1ec-d1cbe177188b +2024-09-11 09:06:43.123759 2024-09-11 09:06:43.123764 agrero A003653616 R rec 6b02963f-7757-433a-a399-d6165210fd18 +2024-09-11 09:06:43.181517 2024-09-11 09:06:43.181536 agrero A003658765 R rec db9409bc-5db2-40e5-8b8a-cfa86e80f640 +2024-09-11 09:06:43.24697 2024-09-11 09:06:43.246975 agrero A003660931 R rec 05b49b8f-21a1-4526-b0a6-f80bc3b0bd91 +2024-09-11 09:06:43.303442 2024-09-11 09:06:43.303452 agrero A003662299 R rec 06268937-617f-42c4-a81c-36f8a1e6d717 +2024-09-11 09:06:43.372653 2024-09-11 09:06:43.372659 agrero A003662624 R rec fa786878-29b4-460c-96dd-5c8eb37370b5 +2024-09-11 09:06:43.422878 2024-09-11 09:06:43.422883 agrero A003671506 R rec a04c3160-ecf6-4dd8-ba84-295e13565936 +2024-09-11 09:06:43.472999 2024-09-11 09:06:43.473009 agrero A003672170 R rec 9027d473-b2dc-4a06-8720-d0d8905cebce +2024-09-11 09:06:43.526072 2024-09-11 09:06:43.526076 agrero A003673634 R rec 3d4f5ac9-2cc9-4bc0-9ed5-90d6057c888f +2024-09-11 09:06:43.576824 2024-09-11 09:06:43.576829 agrero A003677375 R rec 5a5a122d-6337-42bd-86e1-f414e41b01b2 +2024-09-11 09:06:43.630778 2024-09-11 09:06:43.630782 agrero A003679975 R rec 587474b5-2845-4e99-9926-961df2286b23 +2024-09-11 09:06:43.681283 2024-09-11 09:06:43.681288 agrero A003681000 R rec e9dd5df0-8446-44dc-a4ef-5e81af3ccdb9 +2024-09-11 09:06:43.735797 2024-09-11 09:06:43.735803 agrero A003685283 R rec e1048551-4a59-4e87-afe7-24672de53f42 +2024-09-11 09:06:43.803475 2024-09-11 09:06:43.803481 agrero A003685465 R rec 7edea4e5-f3d0-4dff-85c1-c30bf65aa6b8 +2024-09-11 09:06:43.864964 2024-09-11 09:06:43.86497 agrero A003688082 R rec 6283ebd1-55aa-42c3-be74-e71d6cb94b02 +2024-09-11 09:06:43.925956 2024-09-11 09:06:43.925962 agrero A003688354 R rec d3ed93b3-d477-4762-a2fc-41a335819c4d +2024-09-11 09:06:43.98067 2024-09-11 09:06:43.980675 agrero A003696554 R rec e2dec192-ffe5-4851-9cb9-787a4ecb2d81 +2024-09-11 09:06:44.035681 2024-09-11 09:06:44.035686 agrero A003699041 R rec 2cedfd62-e916-48ee-96db-bd8787da5d5b +2024-09-11 09:06:44.093206 2024-09-11 09:06:44.093212 agrero A003703519 R rec f7c9ed4f-9437-4b34-a023-d478e26748b2 +2024-09-11 09:06:44.145825 2024-09-11 09:06:44.14583 agrero A003703655 R rec 800652dc-0ec5-49cd-84c5-59634d6e2a99 +2024-09-11 09:06:44.204246 2024-09-11 09:06:44.204251 agrero A003706170 R rec 461d5a71-817e-4fb6-b7d6-e018302ddc0e +2024-09-11 09:06:44.265679 2024-09-11 09:06:44.265685 agrero A003710512 R rec 1e98bbad-5a8f-44ca-beb8-5c05a9044119 +2024-09-11 09:06:44.322605 2024-09-11 09:06:44.322611 agrero A003713064 R rec 241213c8-eea2-4221-ab7f-caa821e88680 +2024-09-11 09:06:44.376052 2024-09-11 09:06:44.376057 agrero A003717532 R rec 03708fc5-7af0-4c14-963d-166ba2bd3611 +2024-09-11 09:06:44.426555 2024-09-11 09:06:44.42656 agrero A003719235 R rec bc184090-baa0-4f5d-9c57-90baadb93c27 +2024-09-11 09:06:44.482607 2024-09-11 09:06:44.482612 agrero A003721710 R rec 0152ae0d-2ebe-42f6-9dd9-3d378d0dc035 +2024-09-11 09:06:44.544604 2024-09-11 09:06:44.544609 agrero A003728520 R rec 259dc843-665b-4ed8-a0a8-8b8e36979013 +2024-09-11 09:06:44.619135 2024-09-11 09:06:44.61914 agrero A003733566 R rec 69853ed1-3f4b-4107-896d-8e3821f96bdd +2024-09-11 09:06:44.678648 2024-09-11 09:06:44.678653 agrero A003734370 R rec 4d95f45c-305b-428e-9e4c-f4981604cbec +2024-09-11 09:06:44.738661 2024-09-11 09:06:44.738666 agrero A003736990 R rec 1f47f026-d8c5-442d-8767-ca5dc12b2f61 +2024-09-11 09:06:44.790135 2024-09-11 09:06:44.79014 agrero A003737238 R rec 1e801482-f413-4d54-8616-6c67fe6042a6 +2024-09-11 09:06:44.842547 2024-09-11 09:06:44.842552 agrero A003743096 R rec 603a697b-f0a8-40e7-ab98-6b8b7a818061 +2024-09-11 09:06:44.896949 2024-09-11 09:06:44.896955 agrero A003743887 R rec 91dbd880-59a8-423b-864a-f01d7e72da53 +2024-09-11 09:06:44.963937 2024-09-11 09:06:44.963943 agrero A003744787 R rec a2d303c8-d988-4152-9c14-e54e5b28e492 +2024-09-11 09:06:45.026513 2024-09-11 09:06:45.026518 agrero A003747661 R rec e17c3392-90ed-412a-b016-eaa80d098daa +2024-09-11 09:06:45.085819 2024-09-11 09:06:45.085825 agrero A003751647 R rec d16d98c4-afdd-4023-b232-439a732c7a7e +2024-09-11 09:06:45.137422 2024-09-11 09:06:45.137427 agrero A003752143 R rec 64e7c7fd-1cb6-4bde-aafe-20817973e777 +2024-09-11 09:06:45.199621 2024-09-11 09:06:45.199626 agrero A003755899 R rec cdc61b70-af3b-475d-b775-75eaaea429f8 +2024-09-11 09:06:45.25812 2024-09-11 09:06:45.258125 agrero A003759742 R rec ff97030f-9f74-41b0-8622-4601e9560d3a +2024-09-11 09:06:45.308418 2024-09-11 09:06:45.308423 agrero A003763487 R rec 3cc4f377-9543-4727-87de-b6f6b2d49651 +2024-09-11 09:06:45.364248 2024-09-11 09:06:45.364252 agrero A003768835 R rec dfffc325-a70c-4b0d-9bf6-98daddf05a33 +2024-09-11 09:06:45.413979 2024-09-11 09:06:45.413984 agrero A003780412 R rec f1676545-3682-4596-a948-00f7954f51fc +2024-09-11 09:06:45.480405 2024-09-11 09:06:45.48041 agrero A003781775 R rec d5ab1882-3d71-41a0-87b1-02e60457493d +2024-09-11 09:06:45.532492 2024-09-11 09:06:45.532496 agrero A003782234 R rec 5a381a2a-1428-4fc6-8773-f5b50119a820 +2024-09-11 09:06:45.589368 2024-09-11 09:06:45.589373 agrero A003783872 R rec 35ae062f-a845-4f20-8208-99a56f786438 +2024-09-11 09:06:45.671919 2024-09-11 09:06:45.671924 agrero A003788311 R rec 47afab12-e51c-49e0-b186-f440cd0ecc06 +2024-09-11 09:06:45.727194 2024-09-11 09:06:45.7272 agrero A003789261 R rec 5757677f-dccc-48c6-93d2-28b4f4591415 +2024-09-11 09:06:45.797456 2024-09-11 09:06:45.797462 agrero A003794166 R rec aea37b8a-9cd5-4a3c-a697-34778240a0d9 +2024-09-11 09:06:45.854521 2024-09-11 09:06:45.854526 agrero A003794394 R rec 9bcbf1c5-4386-4680-8ac0-07c233cd1c47 +2024-09-11 09:06:45.908794 2024-09-11 09:06:45.908799 agrero A003794788 R rec 90821213-a569-4eb2-a1eb-1137fa837b5d +2024-09-11 09:06:45.963939 2024-09-11 09:06:45.963944 agrero A003795823 R rec 3a6fbaf8-5836-467c-aa64-c50c334051c1 +2024-09-11 09:06:46.025557 2024-09-11 09:06:46.025562 agrero A003795824 R rec 228ce378-4915-4ad5-b5a4-ff6bc3697f4e +2024-09-11 09:06:46.084934 2024-09-11 09:06:46.084939 agrero A003797257 R rec 0c5aa765-3997-4970-97bf-c2a91c7de594 +2024-09-11 09:06:46.145043 2024-09-11 09:06:46.145048 agrero A003808479 R rec 209e8fe5-d5de-4d26-969e-04a6437cab26 +2024-09-11 09:06:46.20228 2024-09-11 09:06:46.202285 agrero A003808958 R rec afe64049-eabe-498b-89b2-63f3a890e84f +2024-09-11 09:06:46.251849 2024-09-11 09:06:46.251854 agrero A003809251 R rec eae51a5c-bdd6-40c3-a73c-9db81eb730d1 +2024-09-11 09:06:46.303399 2024-09-11 09:06:46.303405 agrero A003811660 R rec f1e9b0b8-0f05-4483-be80-87e055f366a9 +2024-09-11 09:06:46.352738 2024-09-11 09:06:46.352744 agrero A003813334 R rec 24ab1d1c-2fa1-4eab-9cbb-04d86a3dd1a5 +2024-09-11 09:06:46.403962 2024-09-11 09:06:46.403967 agrero A003817832 R rec 6f6a1c11-96b1-4fa0-8f38-98839c4c6e22 +2024-09-11 09:06:46.470288 2024-09-11 09:06:46.470293 agrero A003819619 R rec 9ae93851-629b-447b-93d6-50e593c8ec18 +2024-09-11 09:06:46.522907 2024-09-11 09:06:46.522912 agrero A003822497 R rec 0cb46a9d-a056-46f6-bf7b-516db701f76f +2024-09-11 09:06:46.576368 2024-09-11 09:06:46.576373 agrero A003825451 R rec 08090831-56f8-4cb2-ac5f-5bde7b930b45 +2024-09-11 09:06:46.639629 2024-09-11 09:06:46.639634 agrero A003827438 R rec 6b543676-9a54-496c-b060-912848a428c5 +2024-09-11 09:06:46.693793 2024-09-11 09:06:46.693797 agrero A003827929 R rec 86d97622-66d5-4dfb-bf88-364403bfd26b +2024-09-11 09:06:46.756745 2024-09-11 09:06:46.75675 agrero A003829549 R rec b25bc061-9bbd-4dbe-96a1-d1befece1753 +2024-09-11 09:06:46.851359 2024-09-11 09:06:46.851365 agrero A003830445 R rec d1ec0042-6e92-4a04-b1f7-df2e352a74c8 +2024-09-11 09:06:46.910034 2024-09-11 09:06:46.910038 agrero A003833071 R rec 0fcb1960-49e0-4f3d-bc03-1b56c63e5714 +2024-09-11 09:06:46.973557 2024-09-11 09:06:46.973562 agrero A003835588 R rec 94c384bc-edb4-4c88-9445-217e7f723a84 +2024-09-11 09:06:47.024306 2024-09-11 09:06:47.024311 agrero A003839353 R rec 8cf8c0d9-8302-462e-ac84-b7429560dd65 +2024-09-11 09:06:47.087941 2024-09-11 09:06:47.087945 agrero A003840255 R rec fb06b849-bc23-4827-b011-3aba5ad70f4f +2024-09-11 09:06:47.139987 2024-09-11 09:06:47.139992 agrero A003840370 R rec fe5d8dea-cffb-42f3-8f17-c0a4276fbe9b +2024-09-11 09:06:47.187357 2024-09-11 09:06:47.187363 agrero A003840561 R rec 24784cdc-244e-4490-a587-6c4a37e35689 +2024-09-11 09:06:47.240237 2024-09-11 09:06:47.240242 agrero A003842524 R rec 21cd1c99-4d3f-4f96-b68f-08b39082da45 +2024-09-11 09:06:47.29512 2024-09-11 09:06:47.295126 agrero A003845264 R rec 1c315809-1c70-4e16-8ca1-39aefa994f87 +2024-09-11 09:06:47.354215 2024-09-11 09:06:47.35422 agrero A003849275 R rec db9b009b-a697-444b-b999-31bf954061a9 +2024-09-11 09:06:47.413758 2024-09-11 09:06:47.413763 agrero A003849995 R rec 4247ae05-5fbc-49ef-997c-b0466a344247 +2024-09-11 09:06:47.466381 2024-09-11 09:06:47.466387 agrero A003852855 R rec 87b1b18a-de37-4e20-a9b1-515a1ef665bc +2024-09-11 09:06:47.519329 2024-09-11 09:06:47.519334 agrero A003853351 R rec 377ccee9-a99b-43dd-80cb-b54f72cbb306 +2024-09-11 09:06:47.583127 2024-09-11 09:06:47.583133 agrero A003854679 R rec e8f32c40-11a1-4ac9-b32f-226257796e3f +2024-09-11 09:06:47.635224 2024-09-11 09:06:47.63523 agrero A003861370 R rec 3637eb03-113a-47c8-abdf-b46296ee9d74 +2024-09-11 09:06:47.706125 2024-09-11 09:06:47.70613 agrero A003863577 R rec 56dc8ea3-759d-4a52-9cb8-87b4d498a764 +2024-09-11 09:06:47.787974 2024-09-11 09:06:47.787979 agrero A003870613 R rec e683532c-5ff2-4494-bc3d-38494f6a9168 +2024-09-11 09:06:47.846179 2024-09-11 09:06:47.846184 agrero A003881754 R rec c19cc74f-3919-4d7f-8d71-df163905a5dd +2024-09-11 09:06:47.900136 2024-09-11 09:06:47.900141 agrero A003883009 R rec 3c9ae873-2eb3-4dcd-b63a-04c05a19d5c9 +2024-09-11 09:06:47.992324 2024-09-11 09:06:47.99233 agrero A003883330 R rec fe27972c-4db2-4d14-877f-23bd0c56beb6 +2024-09-11 09:06:48.048068 2024-09-11 09:06:48.048073 agrero A003883717 R rec f7e3c160-b377-402f-9c42-d40891f08659 +2024-09-11 09:06:48.111766 2024-09-11 09:06:48.111771 agrero A003883777 R rec d743dbf6-e1df-462f-97ce-02ce793c3672 +2024-09-11 09:06:48.170505 2024-09-11 09:06:48.170511 agrero A003886758 R rec 20b03a87-62d6-4ff7-84e6-1f8bff927402 +2024-09-11 09:06:48.22322 2024-09-11 09:06:48.223225 agrero A003889324 R rec d422f108-e0fb-4df0-b895-101bec9fbd57 +2024-09-11 09:06:48.294063 2024-09-11 09:06:48.294068 agrero A003890737 R rec 6b62eba8-60df-4abb-9e92-9c6fafb20a4f +2024-09-11 09:06:48.349307 2024-09-11 09:06:48.349312 agrero A003895492 R rec 00214337-1c22-495a-a44c-f9636f4a483c +2024-09-11 09:06:48.402729 2024-09-11 09:06:48.402734 agrero A003899816 R rec d4d9d170-2409-4e2f-a7cc-5203be0b66f1 +2024-09-11 09:06:48.463741 2024-09-11 09:06:48.463746 agrero A003902263 R rec 45a5d2e5-203e-4965-9fb4-65b262a5b0ce +2024-09-11 09:06:48.550259 2024-09-11 09:06:48.550265 agrero A003905474 R rec d1fa05bc-6c2a-41e4-a0ba-7227b8b6f34f +2024-09-11 09:06:48.60861 2024-09-11 09:06:48.608615 agrero A003913856 R rec e0b17468-6c72-41ff-9dd7-a06c505d458f +2024-09-11 09:06:48.674824 2024-09-11 09:06:48.674829 agrero A003919082 R rec c24a23da-ccf8-43ae-a5ee-f04df9795560 +2024-09-11 09:06:48.798601 2024-09-11 09:06:48.798605 agrero A003936311 R rec 9daa571e-d498-4ff1-b47e-7e72d5b97d44 +2024-09-11 09:06:48.857298 2024-09-11 09:06:48.857303 agrero A003943767 R rec 5679cef8-ab6d-4cab-8256-249893f2af45 +2024-09-11 09:06:48.922825 2024-09-11 09:06:48.92283 agrero A003947464 R rec 7318763a-41b4-4ab6-9020-afb6c36c8a33 +2024-09-11 09:06:48.987171 2024-09-11 09:06:48.987176 agrero A003948416 R rec ec342717-960c-42a8-b87f-287b79e6b7f8 +2024-09-11 09:06:49.036911 2024-09-11 09:06:49.036917 agrero A003958822 R rec ad832565-819b-49ef-8408-bf19e99dd184 +2024-09-11 09:06:49.09093 2024-09-11 09:06:49.090935 agrero A003966124 R rec 6a62edaf-9370-43eb-9101-b23e93870567 +2024-09-11 09:06:49.151939 2024-09-11 09:06:49.151946 agrero A003967245 R rec d3450e14-c800-40f5-8c6d-1808b326cc45 +2024-09-11 09:06:49.202594 2024-09-11 09:06:49.202599 agrero A003969580 R rec b605c657-4cb5-42dd-8a62-05ae6234afe0 +2024-09-11 09:06:49.287376 2024-09-11 09:06:49.287382 agrero A003969900 R rec 53ce4685-1787-4408-9565-eb0e7ee76aad +2024-09-11 09:06:49.350739 2024-09-11 09:06:49.350745 agrero A003971618 R rec cfd12bfa-42ac-4a3b-a9f9-1ee421d5eb06 +2024-09-11 09:06:49.414092 2024-09-11 09:06:49.414097 agrero A003973251 R rec 476c29e9-bc1f-4d1e-af93-8ad357ce6d8b +2024-09-11 09:06:49.474974 2024-09-11 09:06:49.47498 agrero A003975282 R rec 2ac7d001-0030-4e2c-a64c-e78a6ca93578 +2024-09-11 09:06:49.53914 2024-09-11 09:06:49.539149 agrero A003981555 R rec c478175a-b695-4ab1-94a5-2a6350334118 +2024-09-11 09:06:49.611654 2024-09-11 09:06:49.61166 agrero A003981870 R rec 8ab094ed-062b-40a8-93cd-672718be49bd +2024-09-11 09:06:49.678434 2024-09-11 09:06:49.678439 agrero A003984942 R rec 0ebf241c-bf6d-409f-9f04-870f8975ce63 +2024-09-11 09:06:49.731103 2024-09-11 09:06:49.731109 agrero A003985806 R rec d11c1fa4-caac-4042-bb4f-bd20800ea331 +2024-09-11 09:06:49.79604 2024-09-11 09:06:49.796044 agrero A003988011 R rec cc9ac90b-15bb-482d-a4e4-c7c842c65875 +2024-09-11 09:06:49.84678 2024-09-11 09:06:49.846786 agrero A003988126 R rec 53737e99-2f4e-48b8-bb84-a4a508dbf0a8 +2024-09-11 09:06:49.904395 2024-09-11 09:06:49.904401 agrero A003990251 R rec 235cd468-4f9f-4f11-b4a3-5b09149d85c9 +2024-09-11 09:06:49.956559 2024-09-11 09:06:49.956564 agrero A003991229 R rec 9fee0fe0-d716-492f-8613-031d5f29d54a +2024-09-11 09:06:50.008163 2024-09-11 09:06:50.008169 agrero A003994705 R rec 7444efb2-4919-4c51-8981-4c875a838fd9 +2024-09-11 09:06:50.063235 2024-09-11 09:06:50.06324 agrero A003995908 R rec 109e3ddd-b86d-400a-a6ce-a72bc176e437 +2024-09-11 09:06:50.122765 2024-09-11 09:06:50.12277 agrero A003999648 R rec 5953c864-02d1-45d1-b301-e42f4ee35eb6 +2024-09-11 09:06:50.17655 2024-09-11 09:06:50.176555 agrero A005312991 R rec cd0a7c5b-0bef-4699-a531-cad796c30cf6 +2024-09-11 09:06:50.230682 2024-09-11 09:06:50.230687 agrero A005368039 R rec c5a3905d-8c0f-413f-b5fe-89403ed9fc11 +2024-09-11 09:06:50.285515 2024-09-11 09:06:50.285521 agrero A005460720 R rec ff286897-e276-4f46-9448-932408758d1c +2024-09-11 09:06:50.344179 2024-09-11 09:06:50.344184 agrero A005463202 R rec d64fa789-0705-4c5b-ab12-81e889cb0d17 +2024-09-11 09:06:50.396635 2024-09-11 09:06:50.39664 agrero A005464802 R rec 8442c880-ba27-4886-b0dd-f6517c5b4f0f +2024-09-11 09:06:50.45087 2024-09-11 09:06:50.450876 agrero A005466192 R rec 4cc7d51b-944e-4ee6-aa81-67d6aeef01de +2024-09-11 09:06:50.503353 2024-09-11 09:06:50.50336 agrero A005469950 R rec 706fb12a-e6cb-48e8-853b-a9d34b4c6fff +2024-09-11 09:06:50.583157 2024-09-11 09:06:50.583163 agrero A005471055 R rec 30c4387d-c686-4f30-a147-9468868573b1 +2024-09-11 09:06:50.635771 2024-09-11 09:06:50.635776 agrero A005475587 R rec 57ba5ef2-d1bd-4970-9e9b-79c97191a6c0 +2024-09-11 09:06:50.690616 2024-09-11 09:06:50.690622 agrero A005480840 R rec ef5abaed-ac9c-4898-9fc9-55300588d0ff +2024-09-11 09:06:50.744148 2024-09-11 09:06:50.744154 agrero A005495353 R rec a964e020-8301-439d-ae39-4c727f1b57db +2024-09-11 09:06:50.794511 2024-09-11 09:06:50.794516 agrero A005496746 R rec f5e12453-815b-4fe2-8a8d-0705386d933d +2024-09-11 09:06:50.852568 2024-09-11 09:06:50.852573 agrero A005513603 R rec 5b443ec9-0723-4599-aea5-a8b951e7d828 +2024-09-11 09:06:50.908055 2024-09-11 09:06:50.90806 agrero A005522657 R rec 218e2f48-b241-4f73-9081-abe57c034d07 +2024-09-11 09:06:50.96061 2024-09-11 09:06:50.960615 agrero A005533991 R rec e0ed2a99-f7b6-4846-80f5-c14655dffa88 +2024-09-11 09:06:51.013917 2024-09-11 09:06:51.013923 agrero A005558255 R rec e47c29e9-02e6-4dbd-9cd7-fa650ccfe24a +2024-09-11 09:06:51.070466 2024-09-11 09:06:51.070473 agrero A005570502 R rec 640de76d-1062-44b7-af60-f0b630e3f2a0 +2024-09-11 09:06:51.126635 2024-09-11 09:06:51.126641 agrero A005573785 R rec 169b5afc-f2a0-4a4a-b740-eeabd0a7836f +2024-09-11 09:06:51.179868 2024-09-11 09:06:51.179874 agrero A005595559 R rec ad077e7d-8058-44dd-adda-c345585d42c2 +2024-09-11 09:06:51.235903 2024-09-11 09:06:51.235909 agrero A005599445 R rec 0ae6c98f-7990-40e7-92c0-bb06deb92500 +2024-09-11 09:06:51.294114 2024-09-11 09:06:51.29412 agrero A005605846 R rec 579ad2b7-fe23-49f7-8a01-e25ed3c80563 +2024-09-11 09:06:51.353586 2024-09-11 09:06:51.353591 agrero A005621817 R rec aa1e5e7d-3f96-44a5-a66d-95c8955891ac +2024-09-11 09:06:51.408205 2024-09-11 09:06:51.40821 agrero A005623637 R rec 7ca5b506-5209-41ce-9dfe-317ea17d9c90 +2024-09-11 09:06:51.461536 2024-09-11 09:06:51.461541 agrero A005655274 R rec 49c42a3b-04fb-49c6-9c49-bf7769be272a +2024-09-11 09:06:51.520115 2024-09-11 09:06:51.52012 agrero A005663176 R rec e9da73fe-3cb9-474e-b574-a71f45451204 +2024-09-11 09:06:51.57694 2024-09-11 09:06:51.576945 agrero A005673019 R rec 80eb7681-dfe8-473f-af37-63930d977238 +2024-09-11 09:06:51.63227 2024-09-11 09:06:51.632275 agrero A005680197 R rec aa38cd2a-9158-40db-998d-c45a574e8504 +2024-09-11 09:06:51.687561 2024-09-11 09:06:51.687566 agrero A005718969 R rec 75bc2f18-9fd5-4418-873e-df1ba8873ce6 +2024-09-11 09:06:51.739028 2024-09-11 09:06:51.739033 agrero A005732208 R rec 06190cd0-8cef-418f-af45-b34538f137cd +2024-09-11 09:06:51.80227 2024-09-11 09:06:51.802275 agrero A005753197 R rec 09c79da0-ed28-4ccf-8126-88837109f15d +2024-09-11 09:06:51.867989 2024-09-11 09:06:51.867997 agrero A005770175 R rec 9c57ad44-7f16-42f8-b5ce-42351750552e +2024-09-11 09:06:51.93977 2024-09-11 09:06:51.939775 agrero A005787734 R rec 52226884-6673-46e5-9c6f-3398aaba9479 +2024-09-11 09:06:51.999416 2024-09-11 09:06:51.999421 agrero A005794650 R rec fae344b9-5b04-4653-b202-b02885f40b66 +2024-09-11 09:06:52.053568 2024-09-11 09:06:52.053573 agrero A005814757 R rec f3e00ad0-38cd-4f27-97de-46f1f2b6069a +2024-09-11 09:06:52.107474 2024-09-11 09:06:52.107479 agrero A005821830 R rec 69987d1d-82d7-479d-b351-7d430011223a +2024-09-11 09:06:52.163997 2024-09-11 09:06:52.164002 agrero A005915341 R rec bec4027a-846b-4ba0-818a-eb0c3e50f22a +2024-09-11 09:06:52.217105 2024-09-11 09:06:52.217111 agrero A005942520 R rec 51f06bef-2d9f-4cda-bbb8-fa3d93ff21a5 +2024-09-11 09:06:52.274943 2024-09-11 09:06:52.274949 agrero A005944951 R rec d0b3b63d-f4bd-4fed-8ae6-c08fc14ecc5a +2024-09-11 09:06:52.333779 2024-09-11 09:06:52.333783 agrero A005945920 R rec a5e32541-82bc-4f4b-af4a-952f04ff547a +2024-09-11 09:06:52.385845 2024-09-11 09:06:52.385851 agrero A005984015 R rec b764cca3-89f4-4599-90e6-8951f20f4f24 +2024-09-11 09:06:52.439311 2024-09-11 09:06:52.439315 agrero A005995031 R rec bd61de93-da62-43ca-8641-24c3c606e99e +2024-09-11 09:06:52.503665 2024-09-11 09:06:52.503672 agrero A006018560 R rec a3f687f2-15de-43d0-a608-61cee986062c +2024-09-11 09:06:52.558053 2024-09-11 09:06:52.558059 agrero A006023343 R rec 6f45cc73-d341-46c7-817f-27709cae779a +2024-09-11 09:06:52.610477 2024-09-11 09:06:52.610482 agrero A006035318 R rec 11ef1fc1-7242-4989-9ee2-8708726b3356 +2024-09-11 09:06:52.670989 2024-09-11 09:06:52.670995 agrero A006048308 R rec 953efba5-c50c-47d7-8293-e6a7f29f4ad9 +2024-09-11 09:06:52.729585 2024-09-11 09:06:52.729591 agrero A006055239 R rec 3f4d07e5-9265-40ea-991d-228c383aa0bb +2024-09-11 09:06:52.780676 2024-09-11 09:06:52.780682 agrero A006055590 R rec 4675f222-b2a5-4681-b910-8e36ff4b8f3b +2024-09-11 09:06:52.835126 2024-09-11 09:06:52.835132 agrero A006065033 R rec 57ae578f-83de-4276-8910-a3813f92ead1 +2024-09-11 09:06:52.900023 2024-09-11 09:06:52.900029 agrero A006071676 R rec 8a7bf35f-ce23-474f-9db6-39aa59ea3e07 +2024-09-11 09:06:52.953006 2024-09-11 09:06:52.953011 agrero A006094802 R rec c278e019-bbdf-4bfb-8b80-b676196bde44 +2024-09-11 09:06:53.003946 2024-09-11 09:06:53.003951 agrero A006099782 R rec 7722b6a7-f831-47bc-9fe0-e63dcf3543fb +2024-09-11 09:06:53.061486 2024-09-11 09:06:53.061492 agrero A006102670 R rec 1f2e4372-8e8d-4a5e-98d8-fe1c3e46b332 +2024-09-11 09:06:53.116339 2024-09-11 09:06:53.116345 agrero A006154163 R rec 5733bdfa-d22f-4f44-a565-1880b77bd2a2 +2024-09-11 09:06:53.175572 2024-09-11 09:06:53.175578 agrero A006159385 R rec 10b2bdb0-f823-4154-91ac-85df46570b36 +2024-09-11 09:06:53.245822 2024-09-11 09:06:53.245828 agrero A006173450 R rec 0ab0e016-d02c-407b-9adf-ee371e5fdcfd +2024-09-11 09:06:53.298235 2024-09-11 09:06:53.29824 agrero A006173574 R rec 6b129cd8-52c6-4659-a5cb-5cc2ae68aaa6 +2024-09-11 09:06:53.364252 2024-09-11 09:06:53.364257 agrero A006204823 R rec 868309ae-a97b-4e3e-8f34-c1a2bb5354bf +2024-09-11 09:06:53.416887 2024-09-11 09:06:53.416893 agrero A006210520 R rec fbfd57e3-4b6e-4853-a7d0-a72de0611653 +2024-09-11 09:06:53.472226 2024-09-11 09:06:53.472231 agrero A006220068 R rec c443c416-5e84-4c61-8cd2-227ed8b867e6 +2024-09-11 09:06:53.525086 2024-09-11 09:06:53.525091 agrero A006225272 R rec 30a05034-f777-42f1-ad88-c19619e98fe5 +2024-09-11 09:06:53.578761 2024-09-11 09:06:53.578766 agrero A006241487 R rec a5769150-5f9b-408c-b6da-bd5185eca314 +2024-09-11 09:06:53.631546 2024-09-11 09:06:53.631551 agrero A006246319 R rec 4fea2334-484e-448b-acfc-5d9ce2adbe1d +2024-09-11 09:06:53.68806 2024-09-11 09:06:53.688067 agrero A006251854 R rec 34dd546d-b215-478e-b133-a25f34ac5648 +2024-09-11 09:06:53.746749 2024-09-11 09:06:53.746754 agrero A006282682 R rec b6d59c58-7457-42bd-9a91-5665c781bdba +2024-09-11 09:06:53.80587 2024-09-11 09:06:53.805876 agrero A006288245 R rec 65cc5d9d-c27a-4c0e-b11f-dd045dff93cc +2024-09-11 09:06:53.879655 2024-09-11 09:06:53.879661 agrero A006304507 R rec f70b6fa4-5cf0-45b0-af84-e40cff41ebc0 +2024-09-11 09:06:53.939515 2024-09-11 09:06:53.93952 agrero A006305372 R rec f4fa7bd3-3286-4cf7-869f-afe1a8104954 +2024-09-11 09:06:53.999333 2024-09-11 09:06:53.999338 agrero A006319847 R rec 51436969-3dd0-40e8-9fcd-0d991a0a5536 +2024-09-11 09:06:54.056043 2024-09-11 09:06:54.056048 agrero A006331016 R rec 4daa3408-3a5d-4551-87b7-52a00687f781 +2024-09-11 09:06:54.117295 2024-09-11 09:06:54.117301 agrero A006378241 R rec 8c104204-8ad0-4f3d-8158-14705301ad52 +2024-09-11 09:06:54.176916 2024-09-11 09:06:54.176922 agrero A006384206 R rec 0ea947fa-417e-45cb-8683-549e647a3d63 +2024-09-11 09:06:54.241708 2024-09-11 09:06:54.241713 agrero A006389498 R rec a36924bc-f35a-42c8-bc5e-378f50ae02e0 +2024-09-11 09:06:54.302122 2024-09-11 09:06:54.302128 agrero A006407470 R rec 7cd0cacd-bad3-46d4-8d08-a2f69c1cc4a5 +2024-09-11 09:06:54.359187 2024-09-11 09:06:54.359192 agrero A006417880 R rec e980f9b0-e3e6-4886-b05c-708192791544 +2024-09-11 09:06:54.409949 2024-09-11 09:06:54.409954 agrero A006417971 R rec f32c512b-5761-42aa-a25a-044cc24f68f0 +2024-09-11 09:06:54.465666 2024-09-11 09:06:54.465672 agrero A006451071 R rec 1eec50dd-5e0c-4270-9c45-c37423d82e53 +2024-09-11 09:06:54.520252 2024-09-11 09:06:54.520258 agrero A006525884 R rec 623771d5-f641-4872-bb96-709d12e5ce53 +2024-09-11 09:06:54.570818 2024-09-11 09:06:54.570823 agrero A006533818 R rec bedf12df-4a0d-40ec-a98d-40dfc1d85119 +2024-09-11 09:06:54.62361 2024-09-11 09:06:54.623616 agrero A006534193 R rec 9c11e58b-4a98-4897-9737-7900efac82bb +2024-09-11 09:06:54.677331 2024-09-11 09:06:54.677336 agrero A006581053 R rec 0f6ea832-0000-44c8-b91c-acbe28e8aea9 +2024-09-11 09:06:54.73401 2024-09-11 09:06:54.734015 agrero A008584612 R rec c552d99f-52e1-4c1e-b36c-bc0816b8505b +2024-09-11 09:06:54.797202 2024-09-11 09:06:54.797207 agrero A008591482 R rec 33903b2b-e8c1-4452-afcb-0bd3fc0bb182 +2024-09-11 09:06:54.852316 2024-09-11 09:06:54.852322 agrero A008595638 R rec c2c7febf-3f28-4cd1-8935-7c07d154b02c +2024-09-11 09:06:54.911103 2024-09-11 09:06:54.911108 agrero A008660620 R rec 70331efd-9950-49ef-afee-498a501a9a36 +2024-09-11 09:06:54.972 2024-09-11 09:06:54.972006 agrero A008729062 R rec ce937d9c-2f3a-4a71-9ee0-dfbde9a4d074 +2024-09-11 09:06:55.03547 2024-09-11 09:06:55.035477 agrero A008730051 R rec ec6781ae-308c-42ac-8ead-39c8b0bb5e2c +2024-09-11 09:06:55.093271 2024-09-11 09:06:55.093276 agrero A008794733 R rec 90efa9d4-a0d9-4930-8c6a-3636a4591097 +2024-09-11 09:06:55.154784 2024-09-11 09:06:55.15479 agrero A008799434 R rec 7988b6dc-d9b3-4fdd-bf9b-a11e47503b38 +2024-09-11 09:06:55.209004 2024-09-11 09:06:55.209009 agrero A008811165 R rec 55062502-1628-4013-ac53-2c7434585253 +2024-09-11 09:06:55.264411 2024-09-11 09:06:55.264416 agrero A008813776 R rec 3e5059f5-e2da-4099-99e9-39d6a3e9d25d +2024-09-11 09:06:55.322807 2024-09-11 09:06:55.322812 agrero A008846996 R rec c3c1a5b6-98b2-4dee-9897-173298f53699 +2024-09-11 09:06:55.371775 2024-09-11 09:06:55.37178 agrero A008873000 R rec ee016dce-dbc1-4b38-873f-95535a5a2400 +2024-09-11 09:06:55.423683 2024-09-11 09:06:55.423688 agrero A008883799 R rec d3f51e8e-e1af-4c08-939d-df0366c82a0f +2024-09-11 09:06:55.476146 2024-09-11 09:06:55.47615 agrero A008902038 R rec 7c4e7395-1144-4a51-b4ee-0a836bf04f13 +2024-09-11 09:06:55.526285 2024-09-11 09:06:55.526291 agrero A008915559 R rec 6706a858-3163-40e4-87e2-53f1c70919f4 +2024-09-11 09:06:55.579928 2024-09-11 09:06:55.579932 agrero A008943784 R rec 483cbdce-f293-4bbd-9497-23394efd7e5d +2024-09-11 09:06:55.630197 2024-09-11 09:06:55.630202 agrero A008959724 R rec 3d5dff5d-3294-487d-8e9f-efe15a070919 +2024-09-11 09:06:55.712012 2024-09-11 09:06:55.712017 agrero A008978887 R rec f4c98d82-e842-4e40-9dfa-e30eac34b1ab +2024-09-11 09:06:55.796149 2024-09-11 09:06:55.796155 agrero A009007993 R rec 3c4ff07d-abac-473b-8316-6c4ac3b35e02 +2024-09-11 09:06:55.856955 2024-09-11 09:06:55.85696 agrero A009035130 R rec e3e56ff1-b407-49bb-9237-26c9af80e86d +2024-09-11 09:06:55.909687 2024-09-11 09:06:55.909692 agrero A009047642 R rec 0d79979d-473b-48af-8423-1406f928c62a +2024-09-11 09:06:55.963184 2024-09-11 09:06:55.963189 agrero A009059078 R rec 278f4999-61a4-4dbd-9f05-75d81e7b4948 +2024-09-11 09:06:56.014469 2024-09-11 09:06:56.014475 agrero A009061697 R rec 04db3913-83bb-4636-ad33-20eaeaf01bd1 +2024-09-11 09:06:56.074817 2024-09-11 09:06:56.074822 agrero A009062623 R rec df0ab822-179f-4292-acbc-595e31c81506 +2024-09-11 09:06:56.126724 2024-09-11 09:06:56.12673 agrero A009084334 R rec b911a050-3347-4d08-a0a9-bf1b7f3f34b0 +2024-09-11 09:06:56.183834 2024-09-11 09:06:56.18384 agrero A009106239 R rec 45130d56-b27b-4942-8317-8320536866b0 +2024-09-11 09:06:56.242999 2024-09-11 09:06:56.243005 agrero A009112861 R rec caa969d0-791b-48f3-a7f5-4ba2d26a55b7 +2024-09-11 09:06:56.30041 2024-09-11 09:06:56.300414 agrero A009177536 R rec 99f82a13-4aa7-40ad-a479-24b5fb253899 +2024-09-11 09:06:56.355016 2024-09-11 09:06:56.35502 agrero A009187240 R rec 8bf02f3c-a4f2-4fb6-a1e0-70dfb025c2ab +2024-09-11 09:06:56.407501 2024-09-11 09:06:56.407505 agrero A009191402 R rec 67f09aee-414e-4a2a-9add-5aefeeb6e801 +2024-09-11 09:06:56.46195 2024-09-11 09:06:56.461956 agrero A009191855 R rec a778e40d-80c6-4304-80f0-0719e6b5e129 +2024-09-11 09:06:56.518915 2024-09-11 09:06:56.51892 agrero A009279090 R rec 7c768a85-3d5e-4317-bdf0-fe484225f6a1 +2024-09-11 09:06:56.578899 2024-09-11 09:06:56.578904 agrero A009281447 R rec 7090372a-025f-4146-91ce-a907c74c20f7 +2024-09-11 09:06:56.633924 2024-09-11 09:06:56.63393 agrero A009303631 R rec ac203aca-8230-476a-afa9-2ad4dfce6dd0 +2024-09-11 09:06:56.6899 2024-09-11 09:06:56.689905 agrero A009306109 R rec 8b546209-32b2-4774-8c98-098d0f01f316 +2024-09-11 09:06:56.746579 2024-09-11 09:06:56.746584 agrero A009309124 R rec 7e6ee393-75f3-4036-b6e4-2f0d572e2e80 +2024-09-11 09:06:56.798957 2024-09-11 09:06:56.798961 agrero A009315376 R rec 46c25a26-8299-4303-9ccf-2d7ddd668e55 +2024-09-11 09:06:56.850527 2024-09-11 09:06:56.850533 agrero A009341300 R rec cfa155c9-2962-493b-8432-46b3dc07292a +2024-09-11 09:06:56.904355 2024-09-11 09:06:56.904361 agrero A009366379 R rec 3f789c05-9214-48a8-a11c-6f2b692e7ff1 +2024-09-11 09:06:56.95657 2024-09-11 09:06:56.956575 agrero A009366743 R rec 2135b7ff-9a52-4b0d-bfde-1d94089d4a70 +2024-09-11 09:06:57.01152 2024-09-11 09:06:57.011526 agrero A009390744 R rec 9f668bb8-bf5e-424b-a872-ddf2a1b39213 +2024-09-11 09:06:57.065804 2024-09-11 09:06:57.06581 agrero A009403017 R rec ba18e6a2-eb83-43f9-a1e8-822f269b112c +2024-09-11 09:06:57.11846 2024-09-11 09:06:57.118465 agrero A009426238 R rec ace5ea48-58b4-4a78-ac46-5d7fcda181cc +2024-09-11 09:06:57.196199 2024-09-11 09:06:57.196205 agrero A009431913 R rec 84a5e2eb-540e-4978-9b34-780c1d97ad20 +2024-09-11 09:06:57.249637 2024-09-11 09:06:57.249642 agrero A009476519 R rec afbcbcf1-b0da-4161-a755-aef88715d164 +2024-09-11 09:06:57.30667 2024-09-11 09:06:57.306676 agrero A009505580 R rec 636ed93c-7a82-4de0-9660-7aeb3a4ad29f +2024-09-11 09:06:57.362379 2024-09-11 09:06:57.362384 agrero A009519020 R rec 45e47b13-dc79-4dff-9735-c370ca9a0855 +2024-09-11 09:06:57.428287 2024-09-11 09:06:57.428292 agrero A009523157 R rec c0bd806a-960e-4e91-a052-7f24a4fd39d0 +2024-09-11 09:06:57.487121 2024-09-11 09:06:57.487128 agrero A009541958 R rec cac94b45-0c10-462f-82fc-ff469bf06b7f +2024-09-11 09:06:57.541158 2024-09-11 09:06:57.541163 agrero A009544653 R rec bfd4f281-82e4-456b-9e7a-aff34c3da1f4 +2024-09-11 09:06:57.593439 2024-09-11 09:06:57.593444 agrero A009546303 R rec 3a887ce2-052f-4fc4-9db3-a5e58f45de14 +2024-09-11 09:06:57.647611 2024-09-11 09:06:57.647617 agrero A009587127 R rec ec58bfcb-def4-42bb-b69d-68f0e785bf0f +2024-09-11 09:06:57.704848 2024-09-11 09:06:57.704853 agrero A009590113 R rec e5f42d90-6228-4b74-80bc-7ef54da5ce93 +2024-09-11 09:06:57.768647 2024-09-11 09:06:57.768653 agrero A009621407 R rec c215dcc7-f849-4fe1-9e9a-e51ef7bb61d8 +2024-09-11 09:06:57.826082 2024-09-11 09:06:57.826088 agrero A009631364 R rec 06bc49df-2085-4bb4-a04f-bb9034885c9e +2024-09-11 09:06:57.886939 2024-09-11 09:06:57.886944 agrero A009639453 R rec 2890e528-b5db-4255-b831-70c5b358ab7e +2024-09-11 09:06:57.946839 2024-09-11 09:06:57.946844 agrero A009643309 R rec 2c51faf3-ef49-42a0-b1ed-b92b07c1e9bc +2024-09-11 09:06:58.004372 2024-09-11 09:06:58.004377 agrero A009673075 R rec bb6be5f9-3527-4638-bf2d-1c73cfd3fa6a +2024-09-11 09:06:58.060082 2024-09-11 09:06:58.060088 agrero A009687650 R rec f9b3720f-f02c-4216-b3d5-b739d1f3a206 +2024-09-11 09:06:58.128859 2024-09-11 09:06:58.128864 agrero A009754386 R rec 0a492848-0439-404a-857f-f627ba97380a +2024-09-11 09:06:58.19792 2024-09-11 09:06:58.197925 agrero A009973428 R rec 96b837cb-55d0-4f9b-8ac9-def2432944ad +2024-09-11 09:06:58.25399 2024-09-11 09:06:58.253996 agrero A009989567 R rec 1c234ef7-f80b-4335-b934-355f16ccd046 +2024-09-11 09:06:58.306564 2024-09-11 09:06:58.306569 agrero A010006868 R rec 2b3ac2e0-15dd-4e42-b617-64063c66550a +2024-09-11 09:06:58.361165 2024-09-11 09:06:58.36117 agrero A010043080 R rec 41ea65ca-2791-484e-bc84-642c90774115 +2024-09-11 09:06:58.417025 2024-09-11 09:06:58.417031 agrero A010073993 R rec b4c0f04c-425d-463b-a992-4ac40fee6c28 +2024-09-11 09:06:58.471615 2024-09-11 09:06:58.471619 agrero A010086586 R rec 1a2a0175-5460-4294-838e-dd6acee054c4 +2024-09-11 09:06:58.523696 2024-09-11 09:06:58.523701 agrero A010104035 R rec 83069a30-08a1-4c35-8747-401b6cc40704 +2024-09-11 09:06:58.574589 2024-09-11 09:06:58.574593 agrero A010152644 R rec 669a853f-8010-4115-a293-7e52df457925 +2024-09-11 09:06:58.631128 2024-09-11 09:06:58.631133 agrero A010154587 R rec 5319609d-fa79-4e72-ba67-9a3e821529f5 +2024-09-11 09:06:58.683299 2024-09-11 09:06:58.683304 agrero A010176792 R rec 5dff3301-3c81-4f11-83ba-bfeef47f7f0c +2024-09-11 09:06:58.745058 2024-09-11 09:06:58.745063 agrero A010219336 R rec 11901837-3c09-48e1-b5c6-d96d8aa4762b +2024-09-11 09:06:58.802825 2024-09-11 09:06:58.80283 agrero A010244192 R rec 6ccb346b-5943-4982-9ac5-16220f3d26b9 +2024-09-11 09:06:58.855701 2024-09-11 09:06:58.855707 agrero A010938873 R rec 0e98a4a8-db54-4e5b-b749-c1d35a777dc5 +2024-09-11 09:06:58.916425 2024-09-11 09:06:58.916431 agrero A010941010 R rec 1e3133ac-7e15-457e-890a-e0a223604a91 +2024-09-11 09:06:58.972619 2024-09-11 09:06:58.972626 agrero A010941759 R rec 078a54b0-9bd8-4633-8f13-fc42ac79683a +2024-09-11 09:06:59.030802 2024-09-11 09:06:59.030808 agrero A010952913 R rec ac3084f5-d0d7-4bac-8ff9-700e5f6534ef +2024-09-11 09:06:59.086931 2024-09-11 09:06:59.086937 agrero A010959260 R rec ed6e29fb-c3b8-4074-b5ea-2fb4cc305feb +2024-09-11 09:06:59.138865 2024-09-11 09:06:59.138871 agrero A011007424 R rec 494101c4-7b95-40b6-8a19-99cab1d51130 +2024-09-11 09:06:59.203534 2024-09-11 09:06:59.203539 agrero A011038799 R rec bc468d7b-878e-40f4-84b5-06854a46910b +2024-09-11 09:06:59.255573 2024-09-11 09:06:59.255578 agrero A011078595 R rec d5ce8288-4a34-4e3f-8c92-8ff3b4bdfc0c +2024-09-11 09:06:59.30607 2024-09-11 09:06:59.306075 agrero A011089656 R rec d2ab1117-4335-48f5-8557-977f4169ffc1 +2024-09-11 09:06:59.363553 2024-09-11 09:06:59.363558 agrero A011095417 R rec a5ac1d94-5f42-4918-ad67-054123b8da27 +2024-09-11 09:06:59.423024 2024-09-11 09:06:59.423029 agrero A011106617 R rec 4cf0edc4-e429-4aee-b928-595183dd0d4e +2024-09-11 09:06:59.478531 2024-09-11 09:06:59.478537 agrero A011113114 R rec 6c859973-4cfe-4e86-82f3-9b84ea4247c9 +2024-09-11 09:06:59.5366 2024-09-11 09:06:59.536605 agrero A011132692 R rec a57d5210-c6c2-4317-ab30-7c5373ac8e46 +2024-09-11 09:06:59.594463 2024-09-11 09:06:59.594467 agrero A011151957 R rec 2a1eb234-b5fd-4be5-bca8-3ce55dcb37b2 +2024-09-11 09:06:59.645305 2024-09-11 09:06:59.64531 agrero A011157710 R rec 14aa125e-772e-44c8-a724-ef3f05971f1c +2024-09-11 09:06:59.69899 2024-09-11 09:06:59.698996 agrero A011241983 R rec 9b1daf38-b3bf-455c-851e-d5567f3a7047 +2024-09-11 09:06:59.751591 2024-09-11 09:06:59.751597 agrero A011363373 R rec 7c0f2874-3b68-41ad-bf98-f72df9282576 +2024-09-11 09:06:59.801444 2024-09-11 09:06:59.801449 agrero A011377115 R rec 7e6c4ccd-42bc-48b6-be8f-bd2793b0089c +2024-09-11 09:06:59.856424 2024-09-11 09:06:59.856429 agrero A011383290 R rec 3d702d31-2f82-4e43-a459-eec619822f72 +2024-09-11 09:06:59.911149 2024-09-11 09:06:59.911155 agrero A011384771 R rec cb4954c9-d704-4e82-a486-4acc283f8b47 +2024-09-11 09:06:59.965556 2024-09-11 09:06:59.965563 agrero A011412011 R rec 6f398f39-fb67-4fdd-90f4-a7afca6db08b +2024-09-11 09:07:00.01937 2024-09-11 09:07:00.019375 agrero A011417162 R rec 1e2347e3-9577-40ee-a4ae-3e350aeb4fa5 +2024-09-11 09:07:00.08038 2024-09-11 09:07:00.080386 agrero A011417535 R rec 038acced-156c-4829-a8b2-3d70dfc91ac6 +2024-09-11 09:07:00.133703 2024-09-11 09:07:00.13371 agrero A011464222 R rec 2909a83a-c0b8-4879-82df-f76754c312ec +2024-09-11 09:07:00.189384 2024-09-11 09:07:00.18939 agrero A011466531 R rec 86a88389-debe-4b80-863b-7f513a917879 +2024-09-11 09:07:00.252011 2024-09-11 09:07:00.252016 agrero A011466589 R rec 9e10f647-a5e8-4d74-bb15-fa997ad332f7 +2024-09-11 09:07:00.310005 2024-09-11 09:07:00.310011 agrero A011493066 R rec 0b9ed5cf-2847-4597-9276-9f86fc6faa22 +2024-09-11 09:07:00.377974 2024-09-11 09:07:00.377979 agrero A011558774 R rec ed9f6aef-be4d-415f-a0b9-496f4fa01d37 +2024-09-11 09:07:00.429153 2024-09-11 09:07:00.429158 agrero A011591041 R rec e6fcbfd2-18a2-480e-b278-386a36ed5b94 +2024-09-11 09:07:00.482205 2024-09-11 09:07:00.482211 agrero A011627404 R rec 21175a3a-e985-473e-86fe-34e90a266780 +2024-09-11 09:07:00.536411 2024-09-11 09:07:00.53642 agrero A011674667 R rec 2312dbb8-e931-407d-b4ec-ad6cb36b1fd2 +2024-09-11 09:07:00.60079 2024-09-11 09:07:00.600796 agrero A011686664 R rec 242eea76-9716-4a4e-89c8-bf0fe838c008 +2024-09-11 09:07:00.679047 2024-09-11 09:07:00.679052 agrero A011733730 R rec 80f4ac22-0e8a-4068-9c71-1b82758e3a52 +2024-09-11 09:07:00.732042 2024-09-11 09:07:00.732047 agrero A011736857 R rec 6e52dca0-a5fd-4937-a47b-eade71b965a1 +2024-09-11 09:07:00.795334 2024-09-11 09:07:00.79534 agrero A011743931 R rec 971f2165-e79f-4b54-ae51-b07773904ab7 +2024-09-11 09:07:00.849236 2024-09-11 09:07:00.849242 agrero A011755738 R rec 276ce4f3-91ac-4427-8741-2f717671a935 +2024-09-11 09:07:00.901088 2024-09-11 09:07:00.901094 agrero A011817228 R rec 6f4f9e13-ad9d-4fe7-be95-4d08c88e9277 +2024-09-11 09:07:00.961833 2024-09-11 09:07:00.961839 agrero A011818787 R rec a43c4e0a-2560-44cc-be53-d4c8c4cbdb06 +2024-09-11 09:07:01.014083 2024-09-11 09:07:01.014088 agrero A011831186 R rec 99222f47-350b-4702-bbd0-d1ac83a8eff9 +2024-09-11 09:07:01.069588 2024-09-11 09:07:01.069597 agrero A011875062 R rec b263147e-d1e2-497b-9a28-74e3c1bc7ceb +2024-09-11 09:07:01.121343 2024-09-11 09:07:01.121348 agrero A011896248 R rec 06457b55-c3b6-47fc-96de-e370ed24c108 +2024-09-11 09:07:01.176264 2024-09-11 09:07:01.17627 agrero A011919031 R rec 0b668cfd-a363-418d-99ca-150f86e6ace2 +2024-09-11 09:07:01.242152 2024-09-11 09:07:01.242157 agrero A011935041 R rec 65550a5f-9393-46b1-8f92-4991ef1ee57a +2024-09-11 09:07:01.292896 2024-09-11 09:07:01.292901 agrero A011951291 R rec e57078af-5cc9-46bb-a439-c62634ae8037 +2024-09-11 09:07:01.345322 2024-09-11 09:07:01.345327 agrero A011958684 R rec 0cd33305-4c4b-47a6-9146-232901af2ad7 +2024-09-11 09:07:01.395921 2024-09-11 09:07:01.395926 agrero A011959589 R rec a487b991-7753-4d19-84a6-44f87a39751c +2024-09-11 09:07:01.452034 2024-09-11 09:07:01.452039 agrero A011961159 R rec d70fc12e-2565-4a58-9346-761bca31cdfd +2024-09-11 09:07:01.50883 2024-09-11 09:07:01.508836 agrero A011964957 R rec 9f01da8d-6182-4fee-b768-6ae8ed5abb0f +2024-09-11 09:07:01.560886 2024-09-11 09:07:01.560891 agrero A011971216 R rec 6724ab2e-f9cb-40f1-aa4b-0ba0feeeb62d +2024-09-11 09:07:01.615104 2024-09-11 09:07:01.615108 agrero A011981174 R rec 06de1c4f-ecb6-4a2d-a6ca-1bb9fbed5506 +2024-09-11 09:07:01.676248 2024-09-11 09:07:01.676254 agrero A011983307 R rec 441b7f99-eea5-42ef-9433-6cbca2d79018 +2024-09-11 09:07:01.741454 2024-09-11 09:07:01.741459 agrero A011992966 R rec b5b15f08-b8b9-4f15-ad04-5d50d5cb2cd4 +2024-09-11 09:07:01.79273 2024-09-11 09:07:01.792736 agrero A012003599 R rec e9424de2-80e4-4de3-a50e-8fa135b12546 +2024-09-11 09:07:01.845324 2024-09-11 09:07:01.845329 agrero A012045391 R rec 17037dd9-69d1-42cc-8405-224dfb275d10 +2024-09-11 09:07:01.912302 2024-09-11 09:07:01.912307 agrero A012045625 R rec 7abe023e-b2f6-45a5-99fc-b96b11271fb8 +2024-09-11 09:07:01.976032 2024-09-11 09:07:01.976038 agrero A012053752 R rec 81068ef1-e9e7-477d-aa4f-4235b5a29101 +2024-09-11 09:07:02.028891 2024-09-11 09:07:02.028896 agrero A012086274 R rec 08b283f2-b9d3-4892-bbee-18f10f4f7922 +2024-09-11 09:07:02.086349 2024-09-11 09:07:02.086355 agrero A012098479 R rec f1582167-da1b-4030-8d98-045ade73b7da +2024-09-11 09:07:02.138817 2024-09-11 09:07:02.138822 agrero A012105454 R rec 372f775c-90e4-4c55-8f7d-28676de7c1ac +2024-09-11 09:07:02.203273 2024-09-11 09:07:02.203281 agrero A012128366 R rec 0e88bae3-056a-40b9-ab46-07c31934d3b7 +2024-09-11 09:07:02.259129 2024-09-11 09:07:02.259135 agrero A012136328 R rec ee05542d-6d79-4363-aa14-252e82aedaa6 +2024-09-11 09:07:02.316292 2024-09-11 09:07:02.316297 agrero A012311534 R rec 08efdf97-a144-4c2f-b50b-6515c86e37d3 +2024-09-11 09:07:02.369157 2024-09-11 09:07:02.369162 agrero A012313581 R rec 67838bd4-ff02-4119-a212-a9aac0a76c88 +2024-09-11 09:07:02.425394 2024-09-11 09:07:02.425399 agrero A012313815 R rec 7d9427c7-7832-4c11-b192-4e9439dfe84a +2024-09-11 09:07:02.495759 2024-09-11 09:07:02.495765 agrero A012315468 R rec f1528d1e-1da3-4bb5-a893-90872c3430a0 +2024-09-11 09:07:02.551193 2024-09-11 09:07:02.551199 agrero A012322962 R rec ddefda09-e507-4d17-9cbe-b0e9417b2e94 +2024-09-11 09:07:02.604759 2024-09-11 09:07:02.604764 agrero A012323710 R rec 5ae02d31-8699-42a7-b04e-4212ba1718b6 +2024-09-11 09:07:02.658503 2024-09-11 09:07:02.658508 agrero A012325371 R rec 27b7c245-8cdd-470b-abc2-69068d79fd1c +2024-09-11 09:07:02.713116 2024-09-11 09:07:02.713121 agrero A012329066 R rec 4e6a758e-abcb-434d-b6c7-2f9ca3c268c2 +2024-09-11 09:07:02.779571 2024-09-11 09:07:02.779576 agrero A012332893 R rec 96d05404-d6f9-4c64-91cd-de5319f7f874 +2024-09-11 09:07:02.835898 2024-09-11 09:07:02.835905 agrero A012335428 R rec ab48ef90-d14a-49fc-afbe-ee046130b746 +2024-09-11 09:07:02.8935 2024-09-11 09:07:02.893506 agrero A012338211 R rec 197e919d-d5a3-452e-a1fd-417df55bc7c3 +2024-09-11 09:07:02.951543 2024-09-11 09:07:02.951548 agrero A012343378 R rec 419e430b-1010-4955-8227-32d51836ff8a +2024-09-11 09:07:03.012325 2024-09-11 09:07:03.012331 agrero A012346177 R rec 21746cd7-2394-4e84-87d4-3fc3696c5be0 +2024-09-11 09:07:03.072968 2024-09-11 09:07:03.072979 agrero A012346982 R rec abaf71ec-3411-4bcb-9f16-8e4773fb126c +2024-09-11 09:07:03.136001 2024-09-11 09:07:03.136005 agrero A012349826 R rec 2342c843-7b62-4b22-8643-f5dd2593c150 +2024-09-11 09:07:03.190104 2024-09-11 09:07:03.190109 agrero A012350932 R rec a0869a29-3b66-44b0-9fda-d12096cd605e +2024-09-11 09:07:03.241111 2024-09-11 09:07:03.241116 agrero A012352585 R rec 7310e095-3539-41d9-8891-8b3a828092e2 +2024-09-11 09:07:03.29545 2024-09-11 09:07:03.295455 agrero A012353728 R rec 195c3220-df1b-44b7-aece-e650d27d1ff7 +2024-09-11 09:07:03.354431 2024-09-11 09:07:03.354437 agrero A012366684 R rec d342d302-031c-4682-9480-d7aab542edaa +2024-09-11 09:07:03.404684 2024-09-11 09:07:03.404689 agrero A012368293 R rec 8ce79951-ab42-4301-85e5-e82db64e073b +2024-09-11 09:07:03.46479 2024-09-11 09:07:03.464794 agrero A012368815 R rec a44ecf05-951a-45b4-a500-dd8511b1d9b7 +2024-09-11 09:07:03.526442 2024-09-11 09:07:03.526448 agrero A012371308 R rec 538a307d-435c-4b81-a0c0-c4662fa74343 +2024-09-11 09:07:03.57974 2024-09-11 09:07:03.579745 agrero A012374691 R rec ba720068-c7c0-43c3-97fc-daf2334b2d9c +2024-09-11 09:07:03.630445 2024-09-11 09:07:03.630451 agrero A012374741 R rec 710ff3b7-2205-4be5-a8aa-d30b08cf9b0f +2024-09-11 09:07:03.688195 2024-09-11 09:07:03.6882 agrero A012377358 R rec e6f2a1b9-bb74-4aaf-86ca-b918a8297206 +2024-09-11 09:07:03.740958 2024-09-11 09:07:03.740964 agrero A012377584 R rec 41f14056-bf27-45db-9922-6942d4e4cbcc +2024-09-11 09:07:03.790111 2024-09-11 09:07:03.790117 agrero A012378544 R rec ee8985d5-780d-4c21-a2f8-cdce6ca8c8c6 +2024-09-11 09:07:03.84783 2024-09-11 09:07:03.847836 agrero A012385634 R rec 7e9d426a-b60b-4400-a80b-a2776e7bdbc1 +2024-09-11 09:07:03.90201 2024-09-11 09:07:03.902015 agrero A012387266 R rec e5df2521-722a-40e1-95b5-4dc9acd9a2ed +2024-09-11 09:07:03.961607 2024-09-11 09:07:03.961613 agrero A012387358 R rec f99daf94-5c4e-47af-aab6-f0cc79e6e12a +2024-09-11 09:07:04.018937 2024-09-11 09:07:04.018943 agrero A012387899 R rec 1a7f770d-09df-4986-8546-f2106d33eb49 +2024-09-11 09:07:04.074822 2024-09-11 09:07:04.074828 agrero A012388774 R rec c3f467c8-a513-485d-be1e-dc72e7d7839e +2024-09-11 09:07:04.139229 2024-09-11 09:07:04.139234 agrero A012388884 R rec af0c8c7b-2bd6-40d6-b33b-ccdcc53c8a11 +2024-09-11 09:07:04.191274 2024-09-11 09:07:04.19128 agrero A012390212 R rec c1f7e72c-9529-4359-bf92-ee35171e4ec7 +2024-09-11 09:07:04.242424 2024-09-11 09:07:04.242429 agrero A012391465 R rec 15ae47e9-cfb6-4801-ac89-22d9fc780a51 +2024-09-11 09:07:04.305688 2024-09-11 09:07:04.305693 agrero A012393385 R rec 28986809-9d79-415e-b3d4-096afd2b21da +2024-09-11 09:07:04.378626 2024-09-11 09:07:04.378631 agrero A012394672 R rec 7f3289e9-26b8-4d38-a7a5-6cbba13ae0ba +2024-09-11 09:07:04.434158 2024-09-11 09:07:04.434164 agrero A012396940 R rec 88b0776f-ebca-4cc6-a651-c73662fb11c9 +2024-09-11 09:07:04.49901 2024-09-11 09:07:04.499015 agrero A012397510 R rec 1babde00-2850-44b0-8032-235c57f01e49 +2024-09-11 09:07:04.554353 2024-09-11 09:07:04.554358 agrero A012402163 R rec d34fb629-d2b4-48ca-bee7-fa1d6c099f7a +2024-09-11 09:07:04.674617 2024-09-11 09:07:04.674623 agrero A012406670 R rec 9fc3b079-81c8-4248-973b-af7b29eb1e48 +2024-09-11 09:07:04.725522 2024-09-11 09:07:04.725528 agrero A012408608 R rec a913dba2-0cd4-437e-82d0-c76b0e0fd5d6 +2024-09-11 09:07:04.786939 2024-09-11 09:07:04.786945 agrero A012409616 R rec 70831a95-0f46-4897-9706-87a91207b603 +2024-09-11 09:07:04.843092 2024-09-11 09:07:04.843097 agrero A012409972 R rec f8630753-ca07-453e-841d-47949a83c00c +2024-09-11 09:07:04.899165 2024-09-11 09:07:04.89917 agrero A012416360 R rec 41efa22f-5f56-4209-8a92-89b2b34e20a9 +2024-09-11 09:07:04.952194 2024-09-11 09:07:04.952199 agrero A012416378 R rec 46918aa1-7fb9-4871-aa51-79fbcc36d809 +2024-09-11 09:07:05.010474 2024-09-11 09:07:05.010479 agrero A012416611 R rec 357d9baf-2f02-4c97-8ab0-de6fc08e8270 +2024-09-11 09:07:05.07223 2024-09-11 09:07:05.072237 agrero A012417107 R rec 7d62c8eb-3b34-4bdd-a05f-670ef1eb2de4 +2024-09-11 09:07:05.132412 2024-09-11 09:07:05.132417 agrero A012417957 R rec 4be2f619-6fbe-48aa-a73a-058e5ed3e5e0 +2024-09-11 09:07:05.1871 2024-09-11 09:07:05.187106 agrero A012418542 R rec 6d67b995-0d00-4576-ba0f-342d509eac13 +2024-09-11 09:07:05.242087 2024-09-11 09:07:05.242092 agrero A012419821 R rec 99774cda-8201-42e0-8442-24d41f69813b +2024-09-11 09:07:05.298111 2024-09-11 09:07:05.298116 agrero A012419929 R rec 9765a587-b966-4d70-be8c-9efb7d4a1898 +2024-09-11 09:07:05.356591 2024-09-11 09:07:05.356597 agrero A012425753 R rec 36831789-d3ad-4928-833f-530d0be4aa14 +2024-09-11 09:07:05.436627 2024-09-11 09:07:05.436633 agrero A012427298 R rec f0d42b34-c213-42e9-838e-39f73c0dbf36 +2024-09-11 09:07:05.493654 2024-09-11 09:07:05.49366 agrero A012430693 R rec 33f4c8c9-c4e2-45fd-9ee7-ccbccea23ad3 +2024-09-11 09:07:05.555146 2024-09-11 09:07:05.555152 agrero A012431216 R rec cb8e2e76-d652-4e04-9b5d-f663384bd557 +2024-09-11 09:07:05.616807 2024-09-11 09:07:05.616813 agrero A012431876 R rec 8c131704-910c-449a-ad41-e6d9d9bbbdda +2024-09-11 09:07:05.699245 2024-09-11 09:07:05.699251 agrero A012432065 R rec 816dfc21-a219-46fc-952b-38381a84d549 +2024-09-11 09:07:05.758766 2024-09-11 09:07:05.758772 agrero A012435871 R rec aaa51427-24d3-4544-964c-2b2087500b99 +2024-09-11 09:07:05.820816 2024-09-11 09:07:05.820823 agrero A012437354 R rec 48645685-cd2b-4604-acc7-84e462c00db9 +2024-09-11 09:07:05.880571 2024-09-11 09:07:05.880577 agrero A012440656 R rec 7a54a9cd-be3c-457f-b853-5f1edfb70c9b +2024-09-11 09:07:05.952232 2024-09-11 09:07:05.952239 agrero A012442567 R rec 4bd9d880-b0e7-4c91-b290-e20e38184948 +2024-09-11 09:07:06.012747 2024-09-11 09:07:06.012754 agrero A012442717 R rec da592f08-845a-4b15-9916-d3405bc63d7f +2024-09-11 09:07:06.089399 2024-09-11 09:07:06.089404 agrero A012443563 R rec 240bbfb7-4cbb-4582-b722-c75979389b66 +2024-09-11 09:07:06.155219 2024-09-11 09:07:06.155225 agrero A012448425 R rec 6e31d6eb-fdd0-4b36-af87-75f58c045e5f +2024-09-11 09:07:06.220428 2024-09-11 09:07:06.220433 agrero A012454917 R rec 996db13e-cb2f-4fd4-9303-3f92fcafcf7c +2024-09-11 09:07:06.279359 2024-09-11 09:07:06.279366 agrero A012457267 R rec 5d3a976f-e586-41bc-9137-6f42d540c7e1 +2024-09-11 09:07:06.351967 2024-09-11 09:07:06.351974 agrero A012457605 R rec 41222b1c-a5b7-4fed-9a42-76d42cf0fd36 +2024-09-11 09:07:06.41898 2024-09-11 09:07:06.418987 agrero A012460208 R rec 02e7d747-8ba9-41b6-be97-f57216c09fb6 +2024-09-11 09:07:06.489683 2024-09-11 09:07:06.489689 agrero A012462643 R rec 1a137ef8-2e0f-4ed7-85ff-f40cc2ed6d02 +2024-09-11 09:07:06.55431 2024-09-11 09:07:06.554316 agrero A012465613 R rec ab6b583a-c29e-45cc-9a58-9db7d9083d14 +2024-09-11 09:07:06.619838 2024-09-11 09:07:06.619844 agrero A012468081 R rec 488d4cae-b00f-4379-b3e0-0ab6d2e0e13a +2024-09-11 09:07:06.678222 2024-09-11 09:07:06.678228 agrero A012468192 R rec 88803533-26a6-4e4c-920a-1b8f2bc9359b +2024-09-11 09:07:06.740749 2024-09-11 09:07:06.740755 agrero A012470496 R rec 8aedcdfd-7846-4758-8d6b-57d4122b5e27 +2024-09-11 09:07:06.801852 2024-09-11 09:07:06.801858 agrero A012470564 R rec f83d0cfd-fd1a-4345-b508-7071f38378ee +2024-09-11 09:07:06.877259 2024-09-11 09:07:06.877264 agrero A012470848 R rec 5078ee09-6b13-4af5-8e5f-bbd7a0abaf49 +2024-09-11 09:07:06.938047 2024-09-11 09:07:06.938053 agrero A012473809 R rec 6629de37-2951-4d9f-a2e1-4487b62888ba +2024-09-11 09:07:07.015107 2024-09-11 09:07:07.015112 agrero A012474515 R rec 7382b1c5-65d8-4acb-bb75-060283a14769 +2024-09-11 09:07:07.074804 2024-09-11 09:07:07.07481 agrero A012479271 R rec d48d8a7d-07c4-40d7-a3aa-82ab7bd3964f +2024-09-11 09:07:07.126792 2024-09-11 09:07:07.126797 agrero A012480008 R rec f9db39ef-19dd-4b21-8bba-bac95cd1eb05 +2024-09-11 09:07:07.180562 2024-09-11 09:07:07.180567 agrero A012480139 R rec bd7059ca-8185-4908-8dd0-7965986a2a37 +2024-09-11 09:07:07.231008 2024-09-11 09:07:07.231014 agrero A012484207 R rec 50fb65f9-b7fb-4228-8015-a9aa9e70b63f +2024-09-11 09:07:07.29163 2024-09-11 09:07:07.291636 agrero A012487640 R rec c8a4cc0d-a2ec-49c2-8ef7-8837650a5c66 +2024-09-11 09:07:07.344774 2024-09-11 09:07:07.344779 agrero A012487887 R rec 924d7ba5-dd3e-427c-b7e2-0f0dddb7e32e +2024-09-11 09:07:07.394584 2024-09-11 09:07:07.394589 agrero A012488018 R rec bf4b8cf3-d9cb-4331-9f3d-0a17d4e0b92c +2024-09-11 09:07:07.447817 2024-09-11 09:07:07.447823 agrero A012489633 R rec c14f771f-dcc7-43b6-990e-d62f815f2788 +2024-09-11 09:07:07.503985 2024-09-11 09:07:07.50399 agrero A012490094 R rec 411b79fa-02ef-428c-b538-17f4bb7073f1 +2024-09-11 09:07:07.556965 2024-09-11 09:07:07.556971 agrero A012493490 R rec ede6e87b-0704-45d5-bcb7-d30c800569b0 +2024-09-11 09:07:07.608638 2024-09-11 09:07:07.608643 agrero A012494600 R rec b616dd9d-0251-401f-86ca-1e9ab907c3ee +2024-09-11 09:07:07.666806 2024-09-11 09:07:07.666812 agrero A012495733 R rec e3030593-b86e-4102-9a83-44ca7725e840 +2024-09-11 09:07:07.723288 2024-09-11 09:07:07.723293 agrero A012497106 R rec e86fae59-46bb-4227-b320-3e7660ee7121 +2024-09-11 09:07:07.781881 2024-09-11 09:07:07.781886 agrero A012497126 R rec 261f12ea-63f5-4fd6-b649-9a2759b7379d +2024-09-11 09:07:07.838528 2024-09-11 09:07:07.838533 agrero A012497225 R rec 5d4c476b-f1de-4698-a5af-f7eb4943da74 +2024-09-11 09:07:07.896897 2024-09-11 09:07:07.896902 agrero A012498346 R rec c12e1aa2-af63-4fc6-9a34-7f3e64f8e289 +2024-09-11 09:07:07.961956 2024-09-11 09:07:07.961961 agrero A012506176 R rec 72de1761-346c-4ba9-a7ed-985e504ae26c +2024-09-11 09:07:08.021174 2024-09-11 09:07:08.021179 agrero A012506256 R rec b212f072-e15a-44d1-be4e-c63f8ebe31cf +2024-09-11 09:07:08.078663 2024-09-11 09:07:08.078669 agrero A012506339 R rec 208bb252-92cf-4221-9941-c27ce26980df +2024-09-11 09:07:08.129262 2024-09-11 09:07:08.129266 agrero A012506877 R rec f422c1cb-5098-4fb2-adcc-6d7ad1848df4 +2024-09-11 09:07:08.187021 2024-09-11 09:07:08.187027 agrero A012507478 R rec 95f7511e-80c3-410b-bb6c-a15a799d549a +2024-09-11 09:07:08.240051 2024-09-11 09:07:08.240056 agrero A012508085 R rec 9269d280-c5f4-4466-8723-110468c7ac22 +2024-09-11 09:07:08.292112 2024-09-11 09:07:08.292118 agrero A012508468 R rec 840bd2f8-ee2c-4c89-ad83-26db0075a418 +2024-09-11 09:07:08.345098 2024-09-11 09:07:08.345103 agrero A012508709 R rec c7ba7790-8f46-472c-9b5f-36a02e3169a1 +2024-09-11 09:07:08.398225 2024-09-11 09:07:08.39823 agrero A012509199 R rec 2074661b-c1fb-4799-ab1a-386f38913467 +2024-09-11 09:07:08.487842 2024-09-11 09:07:08.487848 agrero A012512864 R rec 34c42320-152c-43ca-8695-20c4c349283e +2024-09-11 09:07:08.542795 2024-09-11 09:07:08.542801 agrero A012513294 R rec 971a52a9-6324-4272-84b7-314dd97d6bb9 +2024-09-11 09:07:08.60244 2024-09-11 09:07:08.602445 agrero A012517704 R rec 7fc503ac-fcd7-4144-85d6-39edbe7d7e2b +2024-09-11 09:07:08.656259 2024-09-11 09:07:08.656264 agrero A012518029 R rec c2a210a8-14dc-4949-8d67-2fb974b7ad70 +2024-09-11 09:07:08.706966 2024-09-11 09:07:08.706972 agrero A012519806 R rec 52405d13-a263-4548-aad3-3a480e8ccf2e +2024-09-11 09:07:08.762373 2024-09-11 09:07:08.762377 agrero A012523458 R rec 04560873-70d3-4e80-a973-45e8bce87ac7 +2024-09-11 09:07:08.820281 2024-09-11 09:07:08.820286 agrero A012525949 R rec 78d8cc2a-299b-47ba-95af-84023cb06b0b +2024-09-11 09:07:08.877194 2024-09-11 09:07:08.877199 agrero A012525951 R rec 14b554c6-eb5e-428b-b642-2a9f41ecfe0f +2024-09-11 09:07:08.931677 2024-09-11 09:07:08.931682 agrero A012527268 R rec f276ef33-5262-4287-9359-7d9e879cb01a +2024-09-11 09:07:08.994431 2024-09-11 09:07:08.994437 agrero A012527993 R rec 090da0a7-507f-4c1e-940c-c4269641c3b6 +2024-09-11 09:07:09.052651 2024-09-11 09:07:09.052655 agrero A012528466 R rec e32c0b8a-bfc1-4964-923c-2de5d4f072a2 +2024-09-11 09:07:09.110162 2024-09-11 09:07:09.110167 agrero A012529768 R rec a110f1d2-9235-4201-aa9d-abddf7dc8c46 +2024-09-11 09:07:09.167241 2024-09-11 09:07:09.167254 agrero A012533386 R rec e9962fc7-cc91-4c40-b883-4989a119cc82 +2024-09-11 09:07:09.218626 2024-09-11 09:07:09.218632 agrero A012534909 R rec d49172bc-f1ff-4ed5-bdcd-0932dc1f92dd +2024-09-11 09:07:09.268804 2024-09-11 09:07:09.268811 agrero A012534932 R rec 4cae355a-fbb2-4c3c-b209-dec51fa19f68 +2024-09-11 09:07:09.327104 2024-09-11 09:07:09.32711 agrero A012571346 R rec 884253b3-5783-4332-9f18-81ec35dd2d51 +2024-09-11 09:07:09.379299 2024-09-11 09:07:09.379305 agrero A012572265 R rec 02ad4fa4-6118-4d48-b323-d14edbaad1df +2024-09-11 09:07:09.431672 2024-09-11 09:07:09.431677 agrero A012591999 R rec 239ca520-e866-4b43-9fa2-293c4076a6ad +2024-09-11 09:07:09.49003 2024-09-11 09:07:09.490034 agrero A012597330 R rec 38e54046-d93f-45cd-b1cf-5f37d41c6a50 +2024-09-11 09:07:09.544978 2024-09-11 09:07:09.544983 agrero A012598301 R rec 2d982a72-8c68-4cef-babd-dab3286aa987 +2024-09-11 09:07:09.612927 2024-09-11 09:07:09.612933 agrero A012623821 R rec 32af4b42-e61b-4da7-9e51-50ca7854cc77 +2024-09-11 09:07:09.671967 2024-09-11 09:07:09.671974 agrero A012636366 R rec 3979035d-57a9-4fae-b69d-38a0bb384609 +2024-09-11 09:07:09.729655 2024-09-11 09:07:09.72966 agrero A012674280 R rec 9b695485-2aa6-454c-a83a-42aceaf5cfd1 +2024-09-11 09:07:09.783922 2024-09-11 09:07:09.783928 agrero A012692359 R rec 9f486f25-70b5-4ffc-a216-dde5b4ee63a2 +2024-09-11 09:07:09.833482 2024-09-11 09:07:09.833487 agrero A012707155 R rec f66b84ea-e5b8-4b20-808e-9357e6667190 +2024-09-11 09:07:09.887334 2024-09-11 09:07:09.887341 agrero A012707480 R rec 3df1d764-def3-4b11-ac4a-3c48c77cf97e +2024-09-11 09:07:09.942338 2024-09-11 09:07:09.942343 agrero A012722635 R rec 3ca2f4f4-6ac7-43f0-b0cb-4cc2ae2bb7bd +2024-09-11 09:07:10.001073 2024-09-11 09:07:10.001079 agrero A012726948 R rec 68f073d8-4316-47ba-9eb3-d116aa425c0d +2024-09-11 09:07:10.074076 2024-09-11 09:07:10.074081 agrero A012744465 R rec 707cfbfd-8665-4452-8348-068a3f2fda9f +2024-09-11 09:07:10.134953 2024-09-11 09:07:10.13496 agrero A012765564 R rec fab0fcc7-4a8a-4086-b3eb-1e9616b02cfa +2024-09-11 09:07:10.230485 2024-09-11 09:07:10.230491 agrero A012771324 R rec 8f563867-1362-4b1d-b111-052c7a156a3f +2024-09-11 09:07:10.288375 2024-09-11 09:07:10.28838 agrero A012774842 R rec faf167b0-6ff2-459e-b227-8d5de07abfa0 +2024-09-11 09:07:10.341674 2024-09-11 09:07:10.34168 agrero A012780830 R rec 838ce593-b7f1-470f-b8d3-de0b4c055392 +2024-09-11 09:07:10.392861 2024-09-11 09:07:10.392866 agrero A012781952 R rec c35654ec-dfb9-4961-af66-0f3d7b8bd4ff +2024-09-11 09:07:10.444955 2024-09-11 09:07:10.444961 agrero A012784906 R rec 557e8c8e-efe4-4214-981a-abb773e653d8 +2024-09-11 09:07:10.497269 2024-09-11 09:07:10.497273 agrero A012785250 R rec 7d3664aa-03b3-487c-bcd4-a51cc2ee2a7b +2024-09-11 09:07:10.551007 2024-09-11 09:07:10.551012 agrero A012791691 R rec 1f68530e-f97f-44d6-bcfc-f07d51f129c4 +2024-09-11 09:07:10.607285 2024-09-11 09:07:10.607291 agrero A012808722 R rec 45b501c0-7ec4-4c42-9873-becec83365a5 +2024-09-11 09:07:10.658727 2024-09-11 09:07:10.658733 agrero A012816863 R rec 40dd28a5-2b35-4f86-aaa8-fb92c64eb9ed +2024-09-11 09:07:10.710752 2024-09-11 09:07:10.710757 agrero A012833174 R rec b0dca134-d050-4221-ac72-99f0a90c90e4 +2024-09-11 09:07:10.764348 2024-09-11 09:07:10.764353 agrero A012856933 R rec 9915aa9c-aad3-45c4-bea5-5760d6509789 +2024-09-11 09:07:10.823682 2024-09-11 09:07:10.823687 agrero A012895540 R rec 2b40da48-027d-4a68-af93-64b034a085e1 +2024-09-11 09:07:10.88861 2024-09-11 09:07:10.888615 agrero A012907177 R rec 32df30dc-c0bc-49a0-9b16-e62faf5f98fc +2024-09-11 09:07:10.942974 2024-09-11 09:07:10.942978 agrero A012928427 R rec 4b5eb27d-a39d-4617-824f-3f03f1203918 +2024-09-11 09:07:10.998874 2024-09-11 09:07:10.998879 agrero A012937900 R rec ddfa9508-7446-4e1e-89b9-6c58473d23bb +2024-09-11 09:07:11.054764 2024-09-11 09:07:11.054769 agrero A012950169 R rec cb54dfb7-47c0-44d2-9c18-eb199778d3a2 +2024-09-11 09:07:11.113478 2024-09-11 09:07:11.113484 agrero A012957396 R rec ab08421b-cc1d-48ae-823c-6a3ce4997771 +2024-09-11 09:07:11.164446 2024-09-11 09:07:11.164452 agrero A012963166 R rec 52a2105d-3bc2-44a4-a6ba-83d9a06b9570 +2024-09-11 09:07:11.215475 2024-09-11 09:07:11.21548 agrero A012966636 R rec 1a19b0c4-0402-4d64-9e47-d07d30add801 +2024-09-11 09:07:11.270632 2024-09-11 09:07:11.270637 agrero A013062530 R rec 4a462fcf-f77a-49e0-8e29-7b09d09408db +2024-09-11 09:07:11.327643 2024-09-11 09:07:11.327648 agrero A013071942 R rec 3fad17fe-1ead-4d4e-b79c-1641a090a02e +2024-09-11 09:07:11.380278 2024-09-11 09:07:11.380284 agrero A013084243 R rec 72883d6d-90b9-40c8-8141-40b17ec6f386 +2024-09-11 09:07:11.432626 2024-09-11 09:07:11.432631 agrero A013088320 R rec db26b358-816b-4132-9a06-0ec71cef119f +2024-09-11 09:07:11.484394 2024-09-11 09:07:11.484399 agrero A013094655 R rec 71535ccb-9b73-4103-a5dd-18b7443793a9 +2024-09-11 09:07:11.545714 2024-09-11 09:07:11.54572 agrero A013096212 R rec 2b5d8700-b716-41c6-a765-e72973973208 +2024-09-11 09:07:11.604906 2024-09-11 09:07:11.604912 agrero A013128887 R rec 58cb4a7f-cfee-4cc2-b116-16f4fd9fc61e +2024-09-11 09:07:11.658891 2024-09-11 09:07:11.658897 agrero A013135052 R rec f4e64175-4393-4594-8314-e5d2a2478d76 +2024-09-11 09:07:11.719166 2024-09-11 09:07:11.719171 agrero A013137641 R rec e8de7cb0-08bb-4d00-a1f1-c22c2c117dee +2024-09-11 09:07:11.773672 2024-09-11 09:07:11.773678 agrero A013151927 R rec 7ccc02a0-c262-4569-b28f-e3fc317822e4 +2024-09-11 09:07:11.825813 2024-09-11 09:07:11.825819 agrero A013160840 R rec ecd29aec-4ab4-4702-82b4-e25c8943918d +2024-09-11 09:07:11.878889 2024-09-11 09:07:11.878894 agrero A013187480 R rec 60c1d434-413b-4158-aac6-77a5a7f09e8b +2024-09-11 09:07:11.937062 2024-09-11 09:07:11.937069 agrero A013188863 R rec 0265f754-3482-4469-a3d2-519de9eccb31 +2024-09-11 09:07:11.999206 2024-09-11 09:07:11.999212 agrero A013193457 R rec 60059d04-ce8c-44e1-9ef3-9622375247f0 +2024-09-11 09:07:12.056787 2024-09-11 09:07:12.056792 agrero A013199001 R rec 3172bfdd-bf50-48da-aadb-6be54f8395b5 +2024-09-11 09:07:12.106151 2024-09-11 09:07:12.106156 agrero A013216832 R rec aacba92e-598d-4381-ab57-0e98b2082046 +2024-09-11 09:07:12.184427 2024-09-11 09:07:12.184433 agrero A013218412 R rec c0e806da-02e4-480f-9262-9b022bf61ae1 +2024-09-11 09:07:12.246597 2024-09-11 09:07:12.246603 agrero A013222117 R rec bebc8938-f7d1-4d08-9990-1dad01edf3a8 +2024-09-11 09:07:12.298981 2024-09-11 09:07:12.298986 agrero A013234989 R rec 7c8321aa-ee72-45f2-a16a-00cd11f140d0 +2024-09-11 09:07:12.35087 2024-09-11 09:07:12.350876 agrero A013238298 R rec d4c5f842-cdd0-4382-9808-2acf45327f5d +2024-09-11 09:07:12.402782 2024-09-11 09:07:12.402787 agrero A013254669 R rec a5acf1c7-8eea-4f18-9413-2efed35db35f +2024-09-11 09:07:12.461483 2024-09-11 09:07:12.461488 agrero A013254904 R rec 030240c8-f0bc-4600-8c21-bbc82564d6bc +2024-09-11 09:07:12.511035 2024-09-11 09:07:12.511041 agrero A013264678 R rec 1bbbbed1-100d-4545-9948-da0b8d3f19d9 +2024-09-11 09:07:12.565745 2024-09-11 09:07:12.56575 agrero A013278476 R rec 9bd7a18c-ad6f-42d2-96f2-55fe774d153a +2024-09-11 09:07:12.626143 2024-09-11 09:07:12.626149 agrero A013288987 R rec f685ff0b-1d93-4ba0-8e74-1febb2fda193 +2024-09-11 09:07:12.683807 2024-09-11 09:07:12.683813 agrero A013298285 R rec a2e66049-8881-408b-9858-c0ae0797fa8c +2024-09-11 09:07:12.735156 2024-09-11 09:07:12.735162 agrero A013325785 R rec 1c2611f6-2cf2-4214-b323-c66f891d3671 +2024-09-11 09:07:12.787142 2024-09-11 09:07:12.787147 agrero A013328589 R rec ebf2e0be-8416-4a2c-bcf7-3a0f4332b956 +2024-09-11 09:07:12.838893 2024-09-11 09:07:12.838898 agrero A013346407 R rec cf818d8f-eb54-4e7b-be76-2cb9058c18dc +2024-09-11 09:07:12.893921 2024-09-11 09:07:12.893926 agrero A013388531 R rec 109e31d8-b2f3-4fde-b282-2c947683fee0 +2024-09-11 09:07:12.949824 2024-09-11 09:07:12.94983 agrero A013395525 R rec 1b1f9664-d1fb-4eeb-b44e-cf58d3867200 +2024-09-11 09:07:13.004323 2024-09-11 09:07:13.004329 agrero A013406985 R rec 087595b4-607e-41f9-9e89-76a9ce78d4f8 +2024-09-11 09:07:13.057871 2024-09-11 09:07:13.057877 agrero A013436592 R rec 63399b11-5704-4f9c-9963-25fc704cbe22 +2024-09-11 09:07:13.115067 2024-09-11 09:07:13.115072 agrero A013461986 R rec 59198332-1a80-4062-bc5b-d1b005090137 +2024-09-11 09:07:13.167627 2024-09-11 09:07:13.167632 agrero A013469717 R rec 2d644bd3-8f6e-461d-b434-d4bc3bffb551 +2024-09-11 09:07:13.221219 2024-09-11 09:07:13.221224 agrero A013472806 R rec 72d230b7-3039-4281-aa9f-89b01bcdfadc +2024-09-11 09:07:13.270981 2024-09-11 09:07:13.270987 agrero A013486130 R rec 8fb3bcad-e0f5-470f-9b19-9561315a1906 +2024-09-11 09:07:13.326303 2024-09-11 09:07:13.32631 agrero A013491491 R rec fcad57dc-a034-4c0d-8c5f-23bf598e21d9 +2024-09-11 09:07:13.376806 2024-09-11 09:07:13.376812 agrero A013496961 R rec 4ed9cedb-7833-4d03-8d28-a6d81694bfec +2024-09-11 09:07:13.429592 2024-09-11 09:07:13.429596 agrero A013498494 R rec 915c14fd-64e0-4371-966b-c48d066ba6f7 +2024-09-11 09:07:13.487699 2024-09-11 09:07:13.487705 agrero A013503465 R rec 621e0e60-c80c-456f-970b-4fc893b70fff +2024-09-11 09:07:13.55444 2024-09-11 09:07:13.554445 agrero A013503508 R rec 6d9c5f75-9666-4ac3-8522-adeb3ec86bf8 +2024-09-11 09:07:13.611127 2024-09-11 09:07:13.611132 agrero A013505068 R rec 532027b7-129b-42ac-8e70-3c2af1848e9f +2024-09-11 09:07:13.662326 2024-09-11 09:07:13.662331 agrero A013505146 R rec 84d85b13-366a-45c1-bc2b-338e3b817dfd +2024-09-11 09:07:13.725895 2024-09-11 09:07:13.7259 agrero A013505439 R rec facd04b3-b2cf-480e-b0d8-1b67e7a2d1ab +2024-09-11 09:07:13.777554 2024-09-11 09:07:13.777559 agrero A013506588 R rec 152bd1db-1221-4c7a-8f52-381486ea3168 +2024-09-11 09:07:13.831191 2024-09-11 09:07:13.831197 agrero A013518111 R rec 81bb5ba5-770a-4d2c-9141-221a1d4822a6 +2024-09-11 09:07:13.887458 2024-09-11 09:07:13.887463 agrero A013519314 R rec 45e58104-e50a-41be-b61b-6208fc49dc88 +2024-09-11 09:07:13.939433 2024-09-11 09:07:13.939438 agrero A013521342 R rec 356584c4-ddcf-430a-ba54-4245930d9f3b +2024-09-11 09:07:13.994359 2024-09-11 09:07:13.994364 agrero A013544891 R rec 8de55062-af68-455e-a000-043028eedcd8 +2024-09-11 09:07:14.051733 2024-09-11 09:07:14.051739 agrero A013552965 R rec 83ba824b-3d51-4b0a-b168-f5b733e53427 +2024-09-11 09:07:14.105164 2024-09-11 09:07:14.105169 agrero A013553997 R rec ac0c691d-beb9-4da2-a46a-70ef31f414f9 +2024-09-11 09:07:14.157277 2024-09-11 09:07:14.157282 agrero A013583535 R rec d3a9d8e4-3123-4a6f-94f4-e444bc3895e8 +2024-09-11 09:07:14.222056 2024-09-11 09:07:14.222061 agrero A013585039 R rec 7ac85b29-0066-47f1-bf2f-527bc739d081 +2024-09-11 09:07:14.281287 2024-09-11 09:07:14.281292 agrero A013595086 R rec a45c0498-6b12-4737-922a-b5fd2ba9c698 +2024-09-11 09:07:14.333805 2024-09-11 09:07:14.333809 agrero A013595372 R rec 3d0c30de-65c3-41da-96f3-4d9d94266bcb +2024-09-11 09:07:14.393787 2024-09-11 09:07:14.393792 agrero A013621306 R rec 4d56ce4e-f185-47ae-948b-9145b778e331 +2024-09-11 09:07:14.448475 2024-09-11 09:07:14.448479 agrero A013627680 R rec 6a8c221a-4d04-47c6-a0d6-a36bf91ebd65 +2024-09-11 09:07:14.512172 2024-09-11 09:07:14.512176 agrero A013629529 R rec 38c19713-5ab6-4f2e-85e2-f81538e637fb +2024-09-11 09:07:14.568557 2024-09-11 09:07:14.568564 agrero A013654911 R rec 20b2ba21-baac-48e6-b59b-1ed0f2475412 +2024-09-11 09:07:14.651108 2024-09-11 09:07:14.651114 agrero A013663807 R rec 1175bbdc-dbdf-4092-9147-d0bfd06632f1 +2024-09-11 09:07:14.772473 2024-09-11 09:07:14.772479 agrero A013675118 R rec c2f91a95-a173-40e7-b4ba-8165b0f9335f +2024-09-11 09:07:14.824514 2024-09-11 09:07:14.824519 agrero A013683105 R rec e619e4be-54cf-4100-8cc7-9aeff5cda280 +2024-09-11 09:07:14.877112 2024-09-11 09:07:14.877118 agrero A013688478 R rec 550b3b1d-1422-4086-b33a-f5b8a1fa1bb7 +2024-09-11 09:07:14.938339 2024-09-11 09:07:14.938344 agrero A013706277 R rec 3b15829c-74c8-4ebb-89bc-d1a4b5770800 +2024-09-11 09:07:15.004307 2024-09-11 09:07:15.004311 agrero A013720765 R rec 87cc8d7d-0be5-4305-95be-fa6180fed257 +2024-09-11 09:07:15.059058 2024-09-11 09:07:15.059064 agrero A013753495 R rec 180ab2f9-ade2-4473-8872-25e6b4eee7fe +2024-09-11 09:07:15.121342 2024-09-11 09:07:15.121347 agrero A013763647 R rec d2dc583b-daf8-43f1-bbc9-fd98bd1443d4 +2024-09-11 09:07:15.175307 2024-09-11 09:07:15.175312 agrero A013784156 R rec d2f66362-b478-4be6-bb31-dcb6f9b409e4 +2024-09-11 09:07:15.229343 2024-09-11 09:07:15.229348 agrero A013786026 R rec f5f7bc57-6423-47b2-a841-aa04f6e96bac +2024-09-11 09:07:15.285569 2024-09-11 09:07:15.285574 agrero A013793627 R rec 502d9528-0f7b-4088-951f-76905d3881ef +2024-09-11 09:07:15.343388 2024-09-11 09:07:15.343394 agrero A013796408 R rec cd5844a7-a398-4877-8abe-d318fd08bd3e +2024-09-11 09:07:15.405956 2024-09-11 09:07:15.405961 agrero A013815334 R rec c80d059f-9c0e-4c95-b8b7-997250cfc025 +2024-09-11 09:07:15.461563 2024-09-11 09:07:15.461568 agrero A013839708 R rec 152c2f10-bab2-4ae7-a9f4-8230c4b35180 +2024-09-11 09:07:15.516504 2024-09-11 09:07:15.516511 agrero A013851171 R rec 6e30da6c-2473-49bc-b28d-56e380d93c77 +2024-09-11 09:07:15.577268 2024-09-11 09:07:15.577273 agrero A013863028 R rec 6abbbee7-68c5-4602-bbcd-aeed803f6182 +2024-09-11 09:07:15.644292 2024-09-11 09:07:15.644298 agrero A013902798 R rec 0a26d46e-4139-4044-9537-85ab86e69d36 +2024-09-11 09:07:15.70964 2024-09-11 09:07:15.709646 agrero A013936998 R rec e68a865f-9460-42d8-89a1-65dbfec78455 +2024-09-11 09:07:15.769967 2024-09-11 09:07:15.769981 agrero A013939562 R rec b7f47f18-b070-4373-8f1a-507348260684 +2024-09-11 09:07:15.828461 2024-09-11 09:07:15.828466 agrero A013941086 R rec 65998d98-059c-4d41-9821-700130e4894c +2024-09-11 09:07:15.89829 2024-09-11 09:07:15.898296 agrero A013948865 R rec efbdc2e8-fa8d-4ffc-9225-725d6ef86d69 +2024-09-11 09:07:15.979592 2024-09-11 09:07:15.979597 agrero A013952563 R rec 92f098b9-dbe6-40c2-bcdb-c5011a4c556d +2024-09-11 09:07:16.044671 2024-09-11 09:07:16.044677 agrero A013970354 R rec d8d30e6c-748f-4630-8504-11455d96ecef +2024-09-11 09:07:16.129153 2024-09-11 09:07:16.129158 agrero A013986424 R rec 20284c26-6c32-4b1e-ad02-1d52e62abbd9 +2024-09-11 09:07:16.190354 2024-09-11 09:07:16.19036 agrero A013993183 R rec b2917cd5-024d-4684-8285-b1f7700ab689 +2024-09-11 09:07:16.266938 2024-09-11 09:07:16.266943 agrero A013995035 R rec 712141e8-c64e-4367-bcbe-aaa4d232862a +2024-09-11 09:07:16.324625 2024-09-11 09:07:16.324631 agrero A014012002 R rec 5aeeb360-774e-475f-a7d5-120c11a56d20 +2024-09-11 09:07:16.377252 2024-09-11 09:07:16.377257 agrero A014025587 R rec f7cc776e-dfaa-4255-a818-0478faf2d750 +2024-09-11 09:07:16.434083 2024-09-11 09:07:16.434088 agrero A014026079 R rec dbbd53ee-298c-4bd1-a330-24b046b14042 +2024-09-11 09:07:16.50384 2024-09-11 09:07:16.503848 agrero A014036096 R rec 1fd38bcb-b374-488c-a586-7d15d099a2bc +2024-09-11 09:07:16.563721 2024-09-11 09:07:16.563725 agrero A014037717 R rec fe7b82d5-4c55-445b-8301-dd2caa8cac57 +2024-09-11 09:07:16.6272 2024-09-11 09:07:16.627206 agrero A014059339 R rec b8c25128-a074-4327-94f1-6b06a0a56b6f +2024-09-11 09:07:16.683449 2024-09-11 09:07:16.683454 agrero A014065225 R rec c473b68d-f011-471a-8ae1-9eb2cdc34414 +2024-09-11 09:07:16.755525 2024-09-11 09:07:16.75553 agrero A014070967 R rec 4567eff6-1621-4702-8ad6-88d12be53c34 +2024-09-11 09:07:16.809757 2024-09-11 09:07:16.809762 agrero A014074228 R rec cd722886-769d-4704-b71d-1e356c90a574 +2024-09-11 09:07:16.864477 2024-09-11 09:07:16.864483 agrero A014087607 R rec 55f45fb7-a205-41a3-a7bd-f08cffd242a3 +2024-09-11 09:07:16.926183 2024-09-11 09:07:16.926189 agrero A014087918 R rec ed27ecc8-cb56-4c6a-8bbc-e2ad59a6f474 +2024-09-11 09:07:16.979186 2024-09-11 09:07:16.979191 agrero A014091750 R rec a4dc682f-acc2-4805-afb9-44d19dbbb4f8 +2024-09-11 09:07:17.047284 2024-09-11 09:07:17.047289 agrero A014094375 R rec 02613d6d-cc27-4a39-8a4c-483b9cffb582 +2024-09-11 09:07:17.110924 2024-09-11 09:07:17.11093 agrero A014111148 R rec 4a69d739-19ca-4291-a00c-759475943be3 +2024-09-11 09:07:17.16212 2024-09-11 09:07:17.162125 agrero A014127767 R rec f8342064-8f9e-4d3b-8836-888b642a23ea +2024-09-11 09:07:17.217393 2024-09-11 09:07:17.217399 agrero A014139981 R rec ef8c72c5-1c96-4939-9bb8-fc0b969d1b14 +2024-09-11 09:07:17.272423 2024-09-11 09:07:17.272428 agrero A014145274 R rec 6ebeba13-bd9b-4418-99b3-1eae31f8261f +2024-09-11 09:07:17.326786 2024-09-11 09:07:17.326792 agrero A014193528 R rec ca428326-967c-4ff6-936e-9fd6e2cd764b +2024-09-11 09:07:17.382467 2024-09-11 09:07:17.382473 agrero A014201130 R rec da3d7798-269c-46ca-a5a9-12a6128b163d +2024-09-11 09:07:17.45481 2024-09-11 09:07:17.454815 agrero A014202551 R rec 537a6d28-f656-44fd-869e-3ffcc33aceec +2024-09-11 09:07:17.516691 2024-09-11 09:07:17.516697 agrero A014219231 R rec 8d8914cb-0422-4d51-b88c-fb1cd6d1be85 +2024-09-11 09:07:17.572551 2024-09-11 09:07:17.572555 agrero A014222396 R rec bdd2bdde-44f4-4eb2-bfef-852bb8ad1f62 +2024-09-11 09:07:17.629547 2024-09-11 09:07:17.629553 agrero A014224284 R rec 277aa4d1-eaaf-4a4b-b636-586e08c81e90 +2024-09-11 09:07:17.684827 2024-09-11 09:07:17.684832 agrero A014242112 R rec 264fc94b-2b60-4fed-b849-86da4f6e810f +2024-09-11 09:07:17.744998 2024-09-11 09:07:17.745003 agrero A014246692 R rec 4aceab48-1a7a-460b-8f2a-eecdecfb411c +2024-09-11 09:07:17.804439 2024-09-11 09:07:17.804445 agrero A014251795 R rec f32af1ec-ad70-478f-9152-37038a2efbc6 +2024-09-11 09:07:17.877142 2024-09-11 09:07:17.877147 agrero A014255110 R rec 519b603e-6f32-4f99-a808-8ab0954d4b83 +2024-09-11 09:07:17.938662 2024-09-11 09:07:17.938669 agrero A014258973 R rec 9fb684ee-1e2d-4401-8d98-21ef136a1bd0 +2024-09-11 09:07:17.999786 2024-09-11 09:07:17.999792 agrero A014273717 R rec 4f45d3b0-1a78-4576-990c-29fb3693fea8 +2024-09-11 09:07:18.058906 2024-09-11 09:07:18.058911 agrero A014276779 R rec 66103777-0125-4d3c-bd6c-354b9c5a5c45 +2024-09-11 09:07:18.114091 2024-09-11 09:07:18.114096 agrero A014313002 R rec 93717d05-6a08-49e8-8cfd-0042a19ea701 +2024-09-11 09:07:18.172136 2024-09-11 09:07:18.17214 agrero A014336689 R rec d6af2436-45ad-40ce-b97f-c1b0d8843f61 +2024-09-11 09:07:18.225505 2024-09-11 09:07:18.22551 agrero A014337377 R rec 983225f1-c096-416e-913d-9e769c472f96 +2024-09-11 09:07:18.279764 2024-09-11 09:07:18.279769 agrero A014352979 R rec 66796057-68ee-410f-8c6f-300e0de0a27e +2024-09-11 09:07:18.335961 2024-09-11 09:07:18.335966 agrero A014357923 R rec ec372d06-4adf-43b6-93f0-96be0323b37e +2024-09-11 09:07:18.387614 2024-09-11 09:07:18.387619 agrero A016238365 R rec 91f70f15-fa10-48d0-ad8d-6f5be12fd19a +2024-09-11 09:07:18.443173 2024-09-11 09:07:18.443178 agrero A016298786 R rec 485eb108-11ac-468e-82d6-15a64255a926 +2024-09-11 09:07:18.508657 2024-09-11 09:07:18.508663 agrero A016303136 R rec 7d591edb-1af0-4c73-be01-af88ee7a0093 +2024-09-11 09:07:18.573458 2024-09-11 09:07:18.573464 agrero A016318307 R rec bd8dfb96-fadc-4f7b-ad2d-f147322b0d9a +2024-09-11 09:07:18.635839 2024-09-11 09:07:18.635846 agrero A016389042 R rec 0829999d-57d0-46ea-8371-680aacd36540 +2024-09-11 09:07:18.691507 2024-09-11 09:07:18.691513 agrero A016404123 R rec 38b912b3-3375-4be3-8e69-85b7361687f1 +2024-09-11 09:07:18.744361 2024-09-11 09:07:18.744366 agrero A016411096 R rec 429e6eb2-998a-4009-85d6-f94b035ae638 +2024-09-11 09:07:18.802985 2024-09-11 09:07:18.802991 agrero A016415566 R rec 309b15df-2899-4917-9961-18bec5b39fc6 +2024-09-11 09:07:18.86498 2024-09-11 09:07:18.864984 agrero A016426300 R rec 4cd10bfc-a19a-4e39-a2f1-c5addd6c1614 +2024-09-11 09:07:18.917279 2024-09-11 09:07:18.917285 agrero A016444932 R rec 44737135-10f5-4ac5-a1bf-6a5c81f47e4c +2024-09-11 09:07:18.971822 2024-09-11 09:07:18.971829 agrero A016459229 R rec d896d6a2-a65e-4f20-ac5a-4c6e486740a1 +2024-09-11 09:07:19.024661 2024-09-11 09:07:19.024667 agrero A016459550 R rec 4e9d593a-442e-4258-9b32-d9bc18d359ee +2024-09-11 09:07:19.079311 2024-09-11 09:07:19.079317 agrero A016477477 R rec b43450d9-f6d8-4bd9-9c49-c9629d832fde +2024-09-11 09:07:19.131677 2024-09-11 09:07:19.131683 agrero A016482621 R rec 3915050f-01b5-40f7-afd1-246d8e3231f8 +2024-09-11 09:07:19.186195 2024-09-11 09:07:19.186201 agrero A016484771 R rec 0577f5f4-a1cb-4e74-bde3-301988664e67 +2024-09-11 09:07:19.243899 2024-09-11 09:07:19.243903 agrero A016506102 R rec 84e98993-4a97-4814-bb96-c46340b60b2c +2024-09-11 09:07:19.295992 2024-09-11 09:07:19.295997 agrero A016511435 R rec 0993d1bd-0179-4170-8d62-4cedf31ac24e +2024-09-11 09:07:19.348762 2024-09-11 09:07:19.348767 agrero A016513981 R rec f0209122-9b6c-4122-a3b5-17e08af69e7a +2024-09-11 09:07:19.413229 2024-09-11 09:07:19.413235 agrero A016514568 R rec 0a890f51-b48b-469a-9ffe-3d240084a5e7 +2024-09-11 09:07:19.472129 2024-09-11 09:07:19.472134 agrero A016521212 R rec 5acfcd9a-7024-4f93-a2e1-36245e12e658 +2024-09-11 09:07:19.526677 2024-09-11 09:07:19.526682 agrero A016528677 R rec e782ed11-a6d6-4262-8618-3ce9fa68b744 +2024-09-11 09:07:19.579096 2024-09-11 09:07:19.579101 agrero A016535988 R rec 23117e43-293f-4d07-b99d-fefd91c8d3b8 +2024-09-11 09:07:19.639931 2024-09-11 09:07:19.639936 agrero A016548812 R rec 4d696b53-b57a-4407-909a-93a2716f66bc +2024-09-11 09:07:19.69879 2024-09-11 09:07:19.698795 agrero A016550065 R rec b4385986-ba8c-44b5-a784-48bdb6b6287c +2024-09-11 09:07:19.755612 2024-09-11 09:07:19.755617 agrero A016568873 R rec c8b0b064-29e2-422b-9890-31e6c6f300d9 +2024-09-11 09:07:19.850419 2024-09-11 09:07:19.850425 agrero A016604176 R rec ea1835d5-7f85-4ff2-b5a7-e8d57ca67666 +2024-09-11 09:07:19.90879 2024-09-11 09:07:19.908795 agrero A016614032 R rec 16334e47-17c1-4426-af41-170b6a4bd507 +2024-09-11 09:07:19.961369 2024-09-11 09:07:19.961375 agrero A016637978 R rec 484a3c1e-7448-4b8a-92dd-797dd0ab17b2 +2024-09-11 09:07:20.015343 2024-09-11 09:07:20.015348 agrero A016638657 R rec 34a76e79-4211-46f2-98fb-9c8cd22becb4 +2024-09-11 09:07:20.070838 2024-09-11 09:07:20.070844 agrero A016638677 R rec b354d43c-f087-4e77-bc3a-f40012f8deec +2024-09-11 09:07:20.133361 2024-09-11 09:07:20.133367 agrero A016651275 R rec 8671cb58-3707-43d4-969a-87844250ba8f +2024-09-11 09:07:20.187982 2024-09-11 09:07:20.187987 agrero A016655749 R rec d80aabc0-4226-4d31-a5db-c70daa79a42a +2024-09-11 09:07:20.256546 2024-09-11 09:07:20.256552 agrero A016666286 R rec 50d65514-ba72-4236-828c-33be2bd75904 +2024-09-11 09:07:20.312053 2024-09-11 09:07:20.312059 agrero A016675995 R rec fe5b3abb-f87e-4672-ab59-cb19f928d737 +2024-09-11 09:07:20.372417 2024-09-11 09:07:20.372422 agrero A016678629 R rec 9f38a8df-22bc-4b0f-a3d3-a1340dfa4e52 +2024-09-11 09:07:20.44575 2024-09-11 09:07:20.445755 agrero A016688565 R rec 7ba60ab1-ee8e-4721-8c5a-0fce47cad638 +2024-09-11 09:07:20.504546 2024-09-11 09:07:20.504551 agrero A016697578 R rec 0cdf800b-0c23-4817-9d43-5e07532806dd +2024-09-11 09:07:20.564742 2024-09-11 09:07:20.564747 agrero A016697664 R rec 8054236b-a0a6-4d32-b4b5-b533e2bd0b89 +2024-09-11 09:07:20.622383 2024-09-11 09:07:20.622388 agrero A016744040 R rec c646c4e5-ac48-4081-a110-2d0faba76be6 +2024-09-11 09:07:20.680287 2024-09-11 09:07:20.680293 agrero A016755736 R rec da5c9df4-6e5e-49f0-b706-799cf3d0c8d1 +2024-09-11 09:07:20.733211 2024-09-11 09:07:20.733216 agrero A016768352 R rec 47e1df1f-48ce-4058-96a1-3627f230ca83 +2024-09-11 09:07:20.794458 2024-09-11 09:07:20.794463 agrero A016787995 R rec f8c63c5d-9bd2-4d61-aff2-048575453e05 +2024-09-11 09:07:20.856212 2024-09-11 09:07:20.856217 agrero A016799486 R rec ee41712b-9e27-450a-ab2a-66efd62812e9 +2024-09-11 09:07:20.918973 2024-09-11 09:07:20.918979 agrero A016809743 R rec 91ccdedf-e24f-46ec-8315-48749793e346 +2024-09-11 09:07:20.977035 2024-09-11 09:07:20.977041 agrero A016813599 R rec 97ba6de8-e8ec-4a17-a409-7fcdbd59d0b3 +2024-09-11 09:07:21.033731 2024-09-11 09:07:21.033736 agrero A016814681 R rec 2385708e-7398-4d36-9e43-75ac3e270bd8 +2024-09-11 09:07:21.107246 2024-09-11 09:07:21.10725 agrero A016816789 R rec c1d36f4e-2bf8-4506-8085-e8efda42a800 +2024-09-11 09:07:21.177066 2024-09-11 09:07:21.177071 agrero A016818796 R rec 36c15720-0822-4299-bba9-ef713f346413 +2024-09-11 09:07:21.230401 2024-09-11 09:07:21.230407 agrero A016841342 R rec 39d0a131-e3d0-4c25-9819-e28b7330160a +2024-09-11 09:07:21.289329 2024-09-11 09:07:21.289334 agrero A016871460 R rec 6f20658a-95ee-430f-8722-def98663744f +2024-09-11 09:07:21.354611 2024-09-11 09:07:21.354617 agrero A016877431 R rec 9cab3124-3d43-46e1-ac5e-d0275db2b613 +2024-09-11 09:07:21.405768 2024-09-11 09:07:21.405773 agrero A016969116 R rec f3c201f5-874a-4e8e-95ad-c8564a075799 +2024-09-11 09:07:21.460113 2024-09-11 09:07:21.460118 agrero A016972683 R rec 865e8d11-64ea-48a7-8623-386ef6035d96 +2024-09-11 09:07:21.512536 2024-09-11 09:07:21.51254 agrero A017020235 R rec 924cbdfa-dd71-4fbe-9e30-72c7664d5c17 +2024-09-11 09:07:21.567249 2024-09-11 09:07:21.567255 agrero A017025989 R rec 20af53b9-3459-4b60-8995-e8ea41463f1c +2024-09-11 09:07:21.622856 2024-09-11 09:07:21.622861 agrero A017057870 R rec d6deb5f7-2a11-443f-ad66-8b6602afe3fa +2024-09-11 09:07:21.674581 2024-09-11 09:07:21.674585 agrero A017097186 R rec 299dce0a-f509-4eab-8552-c06714628209 +2024-09-11 09:07:21.734229 2024-09-11 09:07:21.734235 agrero A017122036 R rec 5dfa16b0-0c94-42bd-9daa-4999e5c848db +2024-09-11 09:07:21.789822 2024-09-11 09:07:21.789827 agrero A017130152 R rec f357332f-ab71-46ad-bc29-b8e6c7cd81e0 +2024-09-11 09:07:21.841997 2024-09-11 09:07:21.842002 agrero A017132207 R rec 1c0a5296-1bcb-4416-81fb-15e481ac4dca +2024-09-11 09:07:21.895243 2024-09-11 09:07:21.895249 agrero A017139224 R rec 366be754-61dc-4357-b08f-8cee1792d93b +2024-09-11 09:07:21.945232 2024-09-11 09:07:21.945238 agrero A017158101 R rec e61d8ac4-9dfa-4ec7-ba7f-41614c93a612 +2024-09-11 09:07:22.00613 2024-09-11 09:07:22.006135 agrero A017173033 R rec 74cbd0d7-77c2-4fb5-9613-198621a82173 +2024-09-11 09:07:22.065354 2024-09-11 09:07:22.065359 agrero A017178153 R rec 69daea18-a48e-4fef-8828-15d75cd40b5c +2024-09-11 09:07:22.128381 2024-09-11 09:07:22.128386 agrero A017187491 R rec 3316384b-d0a5-4cfc-9ee1-2ca891adeba4 +2024-09-11 09:07:22.185136 2024-09-11 09:07:22.185142 agrero A017202523 R rec 6f53c7d0-334c-495b-89d8-1063d2bde946 +2024-09-11 09:07:22.236926 2024-09-11 09:07:22.236933 agrero A017237082 R rec 6fb53561-5fd9-4348-9eb9-71158452a534 +2024-09-11 09:07:22.290055 2024-09-11 09:07:22.290061 agrero A017314321 R rec 114617cc-c173-42c7-ac1b-241f5d882798 +2024-09-11 09:07:22.343132 2024-09-11 09:07:22.343138 agrero A017326126 R rec d0e557c9-a6d1-497c-9495-d34a8d849f7a +2024-09-11 09:07:22.435262 2024-09-11 09:07:22.435268 agrero A017377907 R rec 57afdfc1-9f9a-4aa3-9e90-6323ceaf7eb9 +2024-09-11 09:07:22.508741 2024-09-11 09:07:22.508747 agrero A017383534 R rec 7b384b55-34af-4e15-beb6-a0d43d4502bf +2024-09-11 09:07:22.577821 2024-09-11 09:07:22.577828 agrero A017410230 R rec 79492f72-fd7e-4031-b149-ec44c8312407 +2024-09-11 09:07:22.644135 2024-09-11 09:07:22.64414 agrero A017429783 R rec af801d88-46e2-47e2-a063-4f5a0a63be31 +2024-09-11 09:07:22.694852 2024-09-11 09:07:22.694857 agrero A017435658 R rec abef1608-fc0c-4cd9-b4a7-2ea2555e5014 +2024-09-11 09:07:22.758275 2024-09-11 09:07:22.758281 agrero A017451803 R rec fa756ed9-d946-4e3c-8d21-040670fcd227 +2024-09-11 09:07:22.811845 2024-09-11 09:07:22.81185 agrero A017458456 R rec af599227-2dd1-4039-9f7f-60ecfbb76ff6 +2024-09-11 09:07:22.869294 2024-09-11 09:07:22.869299 agrero A017468446 R rec e67ed0c7-5d23-40f4-b7cd-5e18e0a86341 +2024-09-11 09:07:22.931617 2024-09-11 09:07:22.931622 agrero A017513975 R rec 24d11d1a-5506-483c-9ad6-fd1a9d04d654 +2024-09-11 09:07:22.988361 2024-09-11 09:07:22.988366 agrero A017556608 R rec c361e780-3b0e-4bec-8caa-800cf4a69e0c +2024-09-11 09:07:23.04791 2024-09-11 09:07:23.047915 agrero A017565309 R rec 9159985e-93a4-4420-b0c8-1f14d9cea3a5 +2024-09-11 09:07:23.116479 2024-09-11 09:07:23.116485 agrero A017572454 R rec 8ad2b49c-3e45-416b-be0f-82c55153576e +2024-09-11 09:07:23.17574 2024-09-11 09:07:23.175745 agrero A017578807 R rec 14024e24-be8e-4741-b696-d9fb8ba6630d +2024-09-11 09:07:23.22831 2024-09-11 09:07:23.228316 agrero A017581317 R rec b84ca29a-d586-418d-89aa-7d27390874a7 +2024-09-11 09:07:23.281334 2024-09-11 09:07:23.281339 agrero A017594651 R rec ff480b11-ac8e-495b-ba29-65750e0f87c5 +2024-09-11 09:07:23.337026 2024-09-11 09:07:23.337032 agrero A017596294 R rec 804f2601-67b3-472c-8297-73fe16894c2e +2024-09-11 09:07:23.388026 2024-09-11 09:07:23.388031 agrero A017602316 R rec 2dd37b82-be7f-49e7-9065-56870363b980 +2024-09-11 09:07:23.439712 2024-09-11 09:07:23.439718 agrero A017611108 R rec 39a38024-d24c-40d2-9555-fd3e880adb0e +2024-09-11 09:07:23.492058 2024-09-11 09:07:23.492063 agrero A017635757 R rec fb0835e7-5a49-4a98-a554-c1e726926b8a +2024-09-11 09:07:23.544515 2024-09-11 09:07:23.544521 agrero A017650142 R rec 333380c3-3912-4b20-b91b-efd2f370306e +2024-09-11 09:07:23.637293 2024-09-11 09:07:23.6373 agrero A017676479 R rec 7ccd4196-f1fc-4ff3-8aff-d1f7f5249176 +2024-09-11 09:07:23.6927 2024-09-11 09:07:23.692706 agrero A017678297 R rec 23dd0361-8b84-4200-a5fa-3c77ae62d894 +2024-09-11 09:07:23.750318 2024-09-11 09:07:23.750323 agrero A017696857 R rec b64928db-b001-4ed1-b71f-33f4ab9d3ad3 +2024-09-11 09:07:23.807927 2024-09-11 09:07:23.807932 agrero A017737385 R rec 48922a0a-981e-4398-8369-c9c97bdbdcf4 +2024-09-11 09:07:23.863428 2024-09-11 09:07:23.863434 agrero A017743945 R rec 4841b5f3-1cf5-4eab-a8e3-f89ccec002c9 +2024-09-11 09:07:23.919149 2024-09-11 09:07:23.919155 agrero A017761491 R rec f0c67d63-f206-4438-b418-ca4e78abd9f8 +2024-09-11 09:07:23.97131 2024-09-11 09:07:23.971316 agrero A017762299 R rec 0fbdac5c-c480-44c9-aaff-10c6abbca2db +2024-09-11 09:07:24.026259 2024-09-11 09:07:24.026265 agrero A017784112 R rec 32bcdf20-ce09-4adb-83da-3d6ffe3794c7 +2024-09-11 09:07:24.088485 2024-09-11 09:07:24.088491 agrero A017798464 R rec 86ddef91-b4ef-485c-8bde-347c05dd2488 +2024-09-11 09:07:24.144188 2024-09-11 09:07:24.144193 agrero A017940250 R rec 93d54d85-67eb-46a4-ad71-2c661c2de87b +2024-09-11 09:07:24.196232 2024-09-11 09:07:24.196237 agrero A017944030 R rec 53fdd8a3-2ccd-4e5a-83e2-24e53a004e48 +2024-09-11 09:07:24.261935 2024-09-11 09:07:24.26194 agrero A017944947 R rec 6e8f3fbe-9e68-49fe-8248-10ae91a284b3 +2024-09-11 09:07:24.314743 2024-09-11 09:07:24.314749 agrero A017955463 R rec 3b748129-39ef-436c-ada4-5925bcab8ea1 +2024-09-11 09:07:24.366378 2024-09-11 09:07:24.366383 agrero A017961866 R rec ba2b20e7-b679-4a95-a770-0801f005e8bd +2024-09-11 09:07:24.419697 2024-09-11 09:07:24.419702 agrero A017970655 R rec 0f0e2e0a-16da-4763-94e3-44262a0509cc +2024-09-11 09:07:24.473578 2024-09-11 09:07:24.473582 agrero A017977912 R rec dfda99a3-0b64-44b1-9368-0fbe7603797f +2024-09-11 09:07:24.529586 2024-09-11 09:07:24.529591 agrero A017990946 R rec 14474d9f-2e6c-491d-95ca-db3f9300f764 +2024-09-11 09:07:24.592767 2024-09-11 09:07:24.592773 agrero A017997426 R rec 8926dd62-0bc9-48e2-badc-4ee7162ff948 +2024-09-11 09:07:24.646046 2024-09-11 09:07:24.64605 agrero A017998485 R rec f674cb8f-038e-489c-ad8b-9dd5ce00c382 +2024-09-11 09:07:24.697976 2024-09-11 09:07:24.697981 agrero A018022500 R rec 93741c5e-6453-4625-adbb-d3be38fe15e9 +2024-09-11 09:07:24.752992 2024-09-11 09:07:24.752998 agrero A018042156 R rec a926b340-8862-40cc-8214-4b431908e500 +2024-09-11 09:07:24.806919 2024-09-11 09:07:24.806924 agrero A018051739 R rec 72c068d8-f7da-46bc-ab55-e2cb57579cf1 +2024-09-11 09:07:24.866845 2024-09-11 09:07:24.866851 agrero A018052277 R rec 0b971108-2fbc-4a3f-813d-5fd1800f624d +2024-09-11 09:07:24.954431 2024-09-11 09:07:24.954437 agrero A018063051 R rec e34dc67c-ee9f-4872-9cd1-99215facc32e +2024-09-11 09:07:25.009984 2024-09-11 09:07:25.009989 agrero A018070048 R rec 096a9607-7ac6-46ce-bea0-1e2c0c6aa7ad +2024-09-11 09:07:25.081619 2024-09-11 09:07:25.081623 agrero A018080715 R rec 6151e8c7-e8e3-4427-b8b2-930caf55ca1f +2024-09-11 09:07:25.135008 2024-09-11 09:07:25.135014 agrero A018087920 R rec 57b89d69-e390-426e-9d1f-d3dce0cbb5e3 +2024-09-11 09:07:25.19549 2024-09-11 09:07:25.195496 agrero A018093417 R rec 051255be-8f23-43f9-a68c-b02497347019 +2024-09-11 09:07:25.255422 2024-09-11 09:07:25.255427 agrero A018105228 R rec e82badf5-d6f2-4fc2-9e11-15527cc78fdc +2024-09-11 09:07:25.313272 2024-09-11 09:07:25.313279 agrero A018108985 R rec 49731b4f-c0b7-4c4a-bf35-58bba38154b8 +2024-09-11 09:07:25.366973 2024-09-11 09:07:25.366978 agrero A018112339 R rec 2b830bf8-1d65-4825-b549-ef3331572440 +2024-09-11 09:07:25.418642 2024-09-11 09:07:25.418648 agrero A018117701 R rec 4fd3c763-09ed-4805-bbcb-fb330139bf1a +2024-09-11 09:07:25.484691 2024-09-11 09:07:25.484696 agrero A018138835 R rec 72a588dd-52cc-4f7c-a8f1-56e5c3ca96a0 +2024-09-11 09:07:25.542123 2024-09-11 09:07:25.542129 agrero A018140650 R rec 1e5dff74-adad-46a4-af48-f962775fe070 +2024-09-11 09:07:25.593706 2024-09-11 09:07:25.593712 agrero A018155271 R rec 86881023-8b59-4295-a732-2795b240c656 +2024-09-11 09:07:25.646201 2024-09-11 09:07:25.646207 agrero A018157124 R rec 77ce9a11-8610-4879-8ff2-9615051e7742 +2024-09-11 09:07:25.701382 2024-09-11 09:07:25.701387 agrero A018172231 R rec 4acfc735-ad46-4c10-9ca5-af1821c4cb24 +2024-09-11 09:07:25.763437 2024-09-11 09:07:25.763443 agrero A018201635 R rec 12402046-aafc-42da-9a6e-17c643dbd19b +2024-09-11 09:07:25.817272 2024-09-11 09:07:25.817278 agrero A018206914 R rec 87acb530-ae46-4e92-aa4f-f322ab522d46 +2024-09-11 09:07:25.868486 2024-09-11 09:07:25.868492 agrero A018237999 R rec f5763f4f-e6c8-4859-8a6f-07195fbcd15c +2024-09-11 09:07:25.923048 2024-09-11 09:07:25.923053 agrero A018243805 R rec 59f52a49-beeb-481d-816c-2fbfb5c1c023 +2024-09-11 09:07:25.97258 2024-09-11 09:07:25.972587 agrero A018251580 R rec 96ce9f9c-fb31-4014-bd1a-6156a9092c3d +2024-09-11 09:07:26.029064 2024-09-11 09:07:26.029069 agrero A018310828 R rec 5051beba-7a9c-436b-a14c-334433781793 +2024-09-11 09:07:26.113678 2024-09-11 09:07:26.113684 agrero A018321048 R rec 644d41a2-a01f-42e5-bf1f-7581d8a07539 +2024-09-11 09:07:26.172297 2024-09-11 09:07:26.172304 agrero A018322337 R rec f0161e69-8efa-4adf-a31d-a649497bda43 +2024-09-11 09:07:26.230561 2024-09-11 09:07:26.230566 agrero A018324391 R rec 14e48b8d-a744-49aa-b8cf-62a755967f25 +2024-09-11 09:07:26.289844 2024-09-11 09:07:26.289849 agrero A018331793 R rec 37c0473c-d6fa-4d71-b09a-aa745d6d112e +2024-09-11 09:07:26.346796 2024-09-11 09:07:26.346802 agrero A018332342 R rec c88de566-6d7e-467b-82ac-b3384acf19a2 +2024-09-11 09:07:26.399321 2024-09-11 09:07:26.399326 agrero A018345923 R rec 343660a0-9d79-44bf-9fb6-be01a3101bc7 +2024-09-11 09:07:26.467578 2024-09-11 09:07:26.467583 agrero A018346336 R rec 7557da3f-c6aa-49d1-ad19-80b2d2f8e58a +2024-09-11 09:07:26.53028 2024-09-11 09:07:26.530285 agrero A018351276 R rec 39f7389c-1876-4c41-86c5-d81ada3e4299 +2024-09-11 09:07:26.591449 2024-09-11 09:07:26.591454 agrero A018387362 R rec aaa6cd83-9f9d-47bc-ba9b-65dfd76dc3d9 +2024-09-11 09:07:26.643937 2024-09-11 09:07:26.643942 agrero A018391771 R rec e4d7b418-a5db-4046-be77-2b4b0f007f4b +2024-09-11 09:07:26.701718 2024-09-11 09:07:26.701725 agrero A018394246 R rec e019cd5e-a406-4c9f-84cd-abea60deb610 +2024-09-11 09:07:26.75577 2024-09-11 09:07:26.755774 agrero A018395567 R rec ebb29ac8-f2d1-4e62-9e91-1a82f33b9f3c +2024-09-11 09:07:26.810392 2024-09-11 09:07:26.810397 agrero A018410690 R rec 2f3af1f9-5b97-40a4-87be-74501d6515e6 +2024-09-11 09:07:26.864419 2024-09-11 09:07:26.864425 agrero A018418232 R rec 409e5582-8df7-4cc2-8004-af7cc308d1ec +2024-09-11 09:07:26.916454 2024-09-11 09:07:26.91646 agrero A018432097 R rec 953c0711-b754-4f96-90dc-01b62eff8e14 +2024-09-11 09:07:26.976127 2024-09-11 09:07:26.976132 agrero A018440172 R rec 1da90ae9-bfbe-43aa-9300-2c505492ffad +2024-09-11 09:07:27.027957 2024-09-11 09:07:27.027964 agrero A018456288 R rec 7cf292ef-ce87-4ce3-a32f-cecd2eec9323 +2024-09-11 09:07:27.090345 2024-09-11 09:07:27.09035 agrero A018459512 R rec cd4dae5f-aebf-4e33-ab7d-5d2aca22c4eb +2024-09-11 09:07:27.150683 2024-09-11 09:07:27.150689 agrero A018463176 R rec cf15e917-e848-47eb-8301-5056105e76f4 +2024-09-11 09:07:27.20216 2024-09-11 09:07:27.202167 agrero A018475973 R rec be307f07-6c2d-4d01-9621-ebab9ba704da +2024-09-11 09:07:27.27105 2024-09-11 09:07:27.271057 agrero A018477130 R rec f85f9d9c-c58d-444c-afe4-6fee1de0efbf +2024-09-11 09:07:27.343294 2024-09-11 09:07:27.343299 agrero A018486553 R rec 86a47390-613f-45b6-945d-569cfdcf86e3 +2024-09-11 09:07:27.404212 2024-09-11 09:07:27.404219 agrero A018541924 R rec 16eea608-1d37-433f-9f16-7cc189be6f34 +2024-09-11 09:07:27.456143 2024-09-11 09:07:27.456147 agrero A018548221 R rec 98230efb-3083-4359-932e-a8a184b7b8de +2024-09-11 09:07:27.516349 2024-09-11 09:07:27.516354 agrero A018556919 R rec c856c9c1-3d3f-47ac-b3e7-f7d5a3203470 +2024-09-11 09:07:27.575487 2024-09-11 09:07:27.575492 agrero A018562369 R rec 8b08b2d3-e53b-497a-a532-291f8a7ae837 +2024-09-11 09:07:27.63073 2024-09-11 09:07:27.630735 agrero A018581906 R rec 5c062b0d-cfa2-4b5d-8c24-23eb50abe97f +2024-09-11 09:07:27.683859 2024-09-11 09:07:27.683865 agrero A018584020 R rec d66c1208-263e-4f8f-8e39-93041375b670 +2024-09-11 09:07:27.736548 2024-09-11 09:07:27.736553 agrero A018585140 R rec 76905521-a295-423b-bbf7-fbadc208dae0 +2024-09-11 09:07:27.792094 2024-09-11 09:07:27.792099 agrero A018591525 R rec cfc6d4b8-2603-4c42-b85e-06cd95129fbc +2024-09-11 09:07:27.862343 2024-09-11 09:07:27.862348 agrero A018606059 R rec f38aff2f-2ba3-4f80-8550-f1db4651ffae +2024-09-11 09:07:27.918419 2024-09-11 09:07:27.918425 agrero A018606217 R rec e754d82f-8d21-4d3c-9e1e-5c8fe6f3138c +2024-09-11 09:07:27.972629 2024-09-11 09:07:27.972635 agrero A018610634 R rec 7c193a42-3e39-4a8d-8e48-5ebc5fb595a5 +2024-09-11 09:07:28.048881 2024-09-11 09:07:28.048886 agrero A018613224 R rec 2b7979a1-507d-4763-a09e-69c15deb3ded +2024-09-11 09:07:28.115375 2024-09-11 09:07:28.11538 agrero A018617749 R rec 40d4813e-674e-4699-99e4-b822ab5a59cf +2024-09-11 09:07:28.176467 2024-09-11 09:07:28.176473 agrero A018623512 R rec 58f3cf85-7c07-46d4-8ed7-b432e4ea8bba +2024-09-11 09:07:28.236143 2024-09-11 09:07:28.236148 agrero A018651679 R rec 4e9aad91-9a78-475c-9155-621919444dc8 +2024-09-11 09:07:28.294155 2024-09-11 09:07:28.29416 agrero A018655587 R rec 2794ec08-ccc2-4d59-b1f7-6d81ea9a017b +2024-09-11 09:07:28.350653 2024-09-11 09:07:28.350659 agrero A018689283 R rec d9cc0177-dbc0-4629-bff8-23eb47a5eecc +2024-09-11 09:07:28.40809 2024-09-11 09:07:28.408096 agrero A018689940 R rec 0bb77046-76d4-4fc5-aca0-c00d0dcfb056 +2024-09-11 09:07:28.464223 2024-09-11 09:07:28.464227 agrero A018699407 R rec dc0f4541-9595-47a6-bba3-b4fd13c5e243 +2024-09-11 09:07:28.521117 2024-09-11 09:07:28.521122 agrero A018703625 R rec f6bd2365-276f-46f2-9529-f6275cdd6fd7 +2024-09-11 09:07:28.574852 2024-09-11 09:07:28.574858 agrero A018726776 R rec 622ea8ca-bf75-4f59-b35e-55411a242621 +2024-09-11 09:07:28.663894 2024-09-11 09:07:28.663899 agrero A018750238 R rec 7ac6933d-e6d2-4e6f-be56-4a978dc4845a +2024-09-11 09:07:28.71962 2024-09-11 09:07:28.719624 agrero A018777696 R rec c363fd9d-d028-4da7-9bb1-5ca152ab1fdd +2024-09-11 09:07:28.773469 2024-09-11 09:07:28.773474 agrero A018790254 R rec 501222a8-3dbe-49ea-931e-1b1b6b89fb1b +2024-09-11 09:07:28.822977 2024-09-11 09:07:28.822982 agrero A018795339 R rec 042c7afa-00bb-4b5c-a715-37e5f91b838a +2024-09-11 09:07:28.883129 2024-09-11 09:07:28.883136 agrero A018796853 R rec 0dceb193-bda4-4838-ba65-575a175009ef +2024-09-11 09:07:28.933981 2024-09-11 09:07:28.933986 agrero A018810961 R rec ab68f6be-0493-4e88-9270-e50f9c588061 +2024-09-11 09:07:28.996939 2024-09-11 09:07:28.996944 agrero A018836965 R rec 8564a9ad-fcbc-4554-8433-6d6990804e73 +2024-09-11 09:07:29.060503 2024-09-11 09:07:29.060509 agrero A018838435 R rec f4bfec51-cf68-4fd0-baee-7f303221b97b +2024-09-11 09:07:29.111121 2024-09-11 09:07:29.111126 agrero A018857106 R rec 3a63ca6d-9b15-4907-9ad6-4e2b1327be9d +2024-09-11 09:07:29.168037 2024-09-11 09:07:29.168042 agrero A018863994 R rec 3ef30185-f009-4359-92b4-da27fd1ff892 +2024-09-11 09:07:29.222226 2024-09-11 09:07:29.222231 agrero A018867909 R rec ce47cf75-5370-42f5-9dca-a275a0987ab8 +2024-09-11 09:07:29.273294 2024-09-11 09:07:29.2733 agrero A018875034 R rec 91cb1a59-b86f-4b01-98f0-7ec154925771 +2024-09-11 09:07:29.326668 2024-09-11 09:07:29.326674 agrero A018879902 R rec 3419a3a7-c949-4d30-8b2d-12a9e09ee4df +2024-09-11 09:07:29.386354 2024-09-11 09:07:29.386359 agrero A018880000 R rec f8bc0b18-2f22-473e-ac1c-1bd84cdb70dc +2024-09-11 09:07:29.437929 2024-09-11 09:07:29.437934 agrero A018906120 R rec 6e03da16-e0e0-43df-aa57-788423e61e82 +2024-09-11 09:07:29.49772 2024-09-11 09:07:29.497725 agrero A018910104 R rec 488ee110-e15f-43fb-a9d1-31a1dfbeb86f +2024-09-11 09:07:29.554923 2024-09-11 09:07:29.554929 agrero A018913029 R rec ba5b3f75-7f96-4d98-90b9-1b55a43cc7e1 +2024-09-11 09:07:29.607245 2024-09-11 09:07:29.607251 agrero A018939247 R rec 0aea0911-670b-4de3-a227-453c04819fe5 +2024-09-11 09:07:29.661398 2024-09-11 09:07:29.661403 agrero A018946790 R rec 394c2da1-b55b-4a53-8d69-a73e694798e9 +2024-09-11 09:07:29.713924 2024-09-11 09:07:29.713929 agrero A018953919 R rec 7568432f-b67e-4152-8245-14c918caa2d1 +2024-09-11 09:07:29.769312 2024-09-11 09:07:29.769318 agrero A018954799 R rec 0adf3c7d-e566-4e8d-9e01-b22f97a15a44 +2024-09-11 09:07:29.822583 2024-09-11 09:07:29.822588 agrero A018986263 R rec bb0048f5-66aa-4385-b31d-b69f5b39f486 +2024-09-11 09:07:29.886521 2024-09-11 09:07:29.886526 agrero A019010974 R rec c452ae55-6ce6-4a83-92c2-34d2504fb881 +2024-09-11 09:07:29.955758 2024-09-11 09:07:29.955763 agrero A019019750 R rec 7ef3ed1c-21df-46cf-9931-d5ce49c5da06 +2024-09-11 09:07:30.008796 2024-09-11 09:07:30.008801 agrero A019033792 R rec 14739344-915a-4154-8e89-6cded7bb9bb9 +2024-09-11 09:07:30.06471 2024-09-11 09:07:30.064716 agrero A019052882 R rec 4484fb0e-eeea-40ef-99aa-73eabbbf76b3 +2024-09-11 09:07:30.118236 2024-09-11 09:07:30.118241 agrero A019060042 R rec 8d41efbb-04b4-4338-8ebe-2f59bb94adbb +2024-09-11 09:07:30.175287 2024-09-11 09:07:30.175292 agrero A019072876 R rec eeca6a76-2f68-4069-9a1f-4eff8f8d3932 +2024-09-11 09:07:30.231375 2024-09-11 09:07:30.23138 agrero A019100305 R rec 3503b1de-0b86-4932-862c-95a2f52a7e7f +2024-09-11 09:07:30.2853 2024-09-11 09:07:30.285304 agrero A019104065 R rec af624b58-64fc-449e-b14f-a91d1a0a0e0d +2024-09-11 09:07:30.33823 2024-09-11 09:07:30.338235 agrero A019111556 R rec d7a9a809-0665-4f9e-a640-de3fb11c4687 +2024-09-11 09:07:30.391393 2024-09-11 09:07:30.391398 agrero A019131066 R rec 7f07d9e2-0a5b-4f9c-8a63-45fa4b42b1c1 +2024-09-11 09:07:30.451332 2024-09-11 09:07:30.451338 agrero A019135541 R rec 743264cb-1434-42f1-8659-98f5ce823ddf +2024-09-11 09:07:30.508353 2024-09-11 09:07:30.508359 agrero A019156002 R rec 86b0873b-6d5a-4163-a41a-d104f6312748 +2024-09-11 09:07:30.567214 2024-09-11 09:07:30.567219 agrero A019212102 R rec 691cc3cd-1d92-4b8f-951c-dd1ca8d880bd +2024-09-11 09:07:30.619388 2024-09-11 09:07:30.619393 agrero A019243832 R rec a5cb7281-794a-4290-9dc6-d10752f88e2c +2024-09-11 09:07:30.674328 2024-09-11 09:07:30.674333 agrero A020002432 R rec 11d9845d-0f5c-4b48-8272-931bc917a8d1 +2024-09-11 09:07:30.728391 2024-09-11 09:07:30.728397 agrero A020018697 R rec 7dff709b-a52d-4fba-b9a8-f0e285eb1c7e +2024-09-11 09:07:30.786972 2024-09-11 09:07:30.786977 agrero A020026743 R rec 73a30b5d-83f0-4462-91fd-ebecc14e3097 +2024-09-11 09:07:30.844298 2024-09-11 09:07:30.844304 agrero A020053143 R rec 195938fc-d9aa-43e0-83dc-6c853d9ab8a2 +2024-09-11 09:07:30.90371 2024-09-11 09:07:30.903715 agrero A020057293 R rec 7c1dd901-3957-4a6f-a894-58bc3d2e2c67 +2024-09-11 09:07:30.957945 2024-09-11 09:07:30.957951 agrero A020059215 R rec 8431111d-ca6b-498a-9786-8ea29e0aec46 +2024-09-11 09:07:31.009619 2024-09-11 09:07:31.009625 agrero A020064866 R rec 54395db5-902d-49c3-a097-1bc4e355e240 +2024-09-11 09:07:31.070471 2024-09-11 09:07:31.070476 agrero A020072898 R rec c3e129cc-4544-45c3-b832-cecaadc89e64 +2024-09-11 09:07:31.125751 2024-09-11 09:07:31.125756 agrero A020078206 R rec b98af9cf-d700-4110-95ee-392927bf24df +2024-09-11 09:07:31.189958 2024-09-11 09:07:31.189964 agrero A020092031 R rec 7d71f302-23a4-4243-9033-597536be46d4 +2024-09-11 09:07:31.243997 2024-09-11 09:07:31.244002 agrero A020092462 R rec 63ee3d06-301c-42a0-ab5a-f63308acc065 +2024-09-11 09:07:31.301895 2024-09-11 09:07:31.301901 agrero A020092476 R rec ccfa8c4a-c6c7-44aa-9780-5a60b7187b5b +2024-09-11 09:07:31.353385 2024-09-11 09:07:31.35339 agrero A020103298 R rec cf93ec5f-7e14-4456-94e9-f2a540308e3c +2024-09-11 09:07:31.409902 2024-09-11 09:07:31.409906 agrero A020121326 R rec 9e4e0262-e8f4-40f3-afd4-b03386bd50ff +2024-09-11 09:07:31.464269 2024-09-11 09:07:31.464274 agrero A020122182 R rec 3dede6cd-3d0a-49b1-907c-4715bfc45374 +2024-09-11 09:07:31.517796 2024-09-11 09:07:31.517803 agrero A020122584 R rec a99919b5-8f5f-4fa4-8dc2-ac95162dffa1 +2024-09-11 09:07:31.577341 2024-09-11 09:07:31.577346 agrero A020128356 R rec 4c3f076b-c728-418d-ac1a-0ecf858bacbc +2024-09-11 09:07:31.631569 2024-09-11 09:07:31.631573 agrero A020139475 R rec d45d739c-b2ef-47c0-948e-56b8d08ccae0 +2024-09-11 09:07:31.687697 2024-09-11 09:07:31.687703 agrero A020148399 R rec a4d4db1e-37c5-45f4-8cfe-dea5ff625cb5 +2024-09-11 09:07:31.743069 2024-09-11 09:07:31.743075 agrero A020157288 R rec 3bf620e2-aa3c-4878-a732-3f9900718417 +2024-09-11 09:07:31.796902 2024-09-11 09:07:31.796908 agrero A020168707 R rec 1b6e5004-2c34-4631-9f34-375dae9b976c +2024-09-11 09:07:31.851169 2024-09-11 09:07:31.851175 agrero A020209272 R rec 4035f28d-3b94-44a2-88c0-e10931841584 +2024-09-11 09:07:31.906899 2024-09-11 09:07:31.906904 agrero A020211267 R rec e45c3fac-6bc8-4de2-846e-8d8c536908ec +2024-09-11 09:07:31.961463 2024-09-11 09:07:31.961468 agrero A020228645 R rec 896e0163-9d45-4736-96de-2e619c20dd09 +2024-09-11 09:07:32.030049 2024-09-11 09:07:32.030055 agrero A020232527 R rec 69800064-0d90-4a1b-bdf7-29941d39b52a +2024-09-11 09:07:32.089435 2024-09-11 09:07:32.08944 agrero A020244189 R rec ce320126-1e24-4bb4-bb51-4ca53bd3b027 +2024-09-11 09:07:32.137882 2024-09-11 09:07:32.137889 agrero A020276000 R rec e2f1c9d9-5f44-4d38-8cfa-b5feeb0a68ad +2024-09-11 09:07:32.192558 2024-09-11 09:07:32.192564 agrero A020278434 R rec 6070a8ef-0364-4418-8a5e-08dcbfb04388 +2024-09-11 09:07:32.244816 2024-09-11 09:07:32.244821 agrero A020285886 R rec db7a447d-9026-4325-8dcd-a39408e842e6 +2024-09-11 09:07:32.303433 2024-09-11 09:07:32.303439 agrero A020287613 R rec f95281f0-1ac4-4f3f-ac5a-f46c09932092 +2024-09-11 09:07:32.358563 2024-09-11 09:07:32.358568 agrero A020317114 R rec 5496945a-022d-4072-b084-4bfcb4b7094c +2024-09-11 09:07:32.419491 2024-09-11 09:07:32.419497 agrero A020337204 R rec 6e2bf8af-4d95-454b-88f3-73c6b8dd47fe +2024-09-11 09:07:32.490782 2024-09-11 09:07:32.490787 agrero A020340385 R rec 5034d9c9-ea6c-4afa-bae3-680654577ca1 +2024-09-11 09:07:32.542539 2024-09-11 09:07:32.542544 agrero A020351109 R rec 6e16b24c-359c-4971-a998-8248fa2a7039 +2024-09-11 09:07:32.598516 2024-09-11 09:07:32.598521 agrero A020355982 R rec f888ef9e-2b38-4aa2-b186-b121f2137d8a +2024-09-11 09:07:32.650492 2024-09-11 09:07:32.650498 agrero A020360095 R rec 29c9b8ca-79df-4623-aa04-75289da50cc0 +2024-09-11 09:07:32.706155 2024-09-11 09:07:32.70616 agrero A020370205 R rec 145219ac-3c7d-4982-863d-e896359b6159 +2024-09-11 09:07:32.759834 2024-09-11 09:07:32.75984 agrero A020376367 R rec b140e374-2f3a-41ee-bf71-4e5764bbd548 +2024-09-11 09:07:32.816913 2024-09-11 09:07:32.816919 agrero A020377292 R rec feb5af82-d75d-431f-9e12-88db69e71dca +2024-09-11 09:07:32.874317 2024-09-11 09:07:32.874323 agrero A020398544 R rec 99507deb-1ae7-4f1b-b74c-806def0c08e0 +2024-09-11 09:07:32.925263 2024-09-11 09:07:32.925269 agrero A020413592 R rec d4a038a7-762a-45fe-b188-aedd6af336f8 +2024-09-11 09:07:32.977951 2024-09-11 09:07:32.977956 agrero A020415873 R rec 1c927370-5793-4023-8e6c-3bb71e021c2a +2024-09-11 09:07:33.033431 2024-09-11 09:07:33.033436 agrero A020417148 R rec 7cc19e60-d018-4eb0-8aa8-17e374f9736f +2024-09-11 09:07:33.087859 2024-09-11 09:07:33.087865 agrero A020436263 R rec 706c2829-e6a9-440e-985d-babf4d2966a1 +2024-09-11 09:07:33.148014 2024-09-11 09:07:33.14802 agrero A020461666 R rec dc03aa47-859c-421c-9a12-0722f92a2723 +2024-09-11 09:07:33.21347 2024-09-11 09:07:33.213475 agrero A020462104 R rec 04541a13-d996-4487-8eaa-4289b0c7638e +2024-09-11 09:07:33.268496 2024-09-11 09:07:33.268503 agrero A020465572 R rec c254edb0-c172-434f-8e66-6c85c57ccfb3 +2024-09-11 09:07:33.323426 2024-09-11 09:07:33.323432 agrero A020465592 R rec 094f092f-5cf5-4f85-a7a7-c9f05e4e8ff0 +2024-09-11 09:07:33.378882 2024-09-11 09:07:33.378888 agrero A020471717 R rec 04f96ef7-e75a-4c61-8437-57a8eb895515 +2024-09-11 09:07:33.440929 2024-09-11 09:07:33.440934 agrero A020478658 R rec 0d84c150-c948-437f-a997-41591cfd88ee +2024-09-11 09:07:33.496304 2024-09-11 09:07:33.496309 agrero A020487139 R rec f7a5b530-b9c4-4694-9422-d9ed34fa79e6 +2024-09-11 09:07:33.552469 2024-09-11 09:07:33.552474 agrero A020500799 R rec eff81e1f-3be8-4fac-a094-2e795555095f +2024-09-11 09:07:33.619968 2024-09-11 09:07:33.619974 agrero A021510454 R rec da1fd24b-0e12-4317-bd09-3c9fc575558f +2024-09-11 09:07:33.676859 2024-09-11 09:07:33.676864 agrero A021514179 R rec bbacf90b-b476-47a1-8dfd-6a04af48f082 +2024-09-11 09:07:33.746997 2024-09-11 09:07:33.747002 agrero A021535410 R rec d0dd6a62-37da-4acc-9d99-c9e866a3fae1 +2024-09-11 09:07:33.80928 2024-09-11 09:07:33.809285 agrero A021609811 R rec 7dabea62-99f1-42fb-a15b-288d2c08f195 +2024-09-11 09:07:33.867433 2024-09-11 09:07:33.867437 agrero A021617173 R rec aab2c13f-fd0e-41cb-ad7e-0b1d376ff8e9 +2024-09-11 09:07:33.924655 2024-09-11 09:07:33.924661 agrero A021621256 R rec b132c69a-f7d0-455b-86b3-001b851048c5 +2024-09-11 09:07:33.991853 2024-09-11 09:07:33.991858 agrero A021627558 R rec bcc27576-39d8-4b3c-8d94-35bea0411cfe +2024-09-11 09:07:34.045499 2024-09-11 09:07:34.045504 agrero A021643724 R rec 1b30c7a1-939a-4d64-82d2-781077911025 +2024-09-11 09:07:34.108428 2024-09-11 09:07:34.108434 agrero A021650553 R rec 5140f835-e68e-4a97-baae-5d85c9442b60 +2024-09-11 09:07:34.173555 2024-09-11 09:07:34.173561 agrero A021653398 R rec 919d62cb-2b9e-479b-a393-6cbca91e404f +2024-09-11 09:07:34.242656 2024-09-11 09:07:34.242661 agrero A021657316 R rec 825d294c-a8fd-4ca2-bbc0-6be0071f958e +2024-09-11 09:07:34.295315 2024-09-11 09:07:34.29532 agrero A021665049 R rec c1feea8e-9395-4edd-916b-0050b5294ac0 +2024-09-11 09:07:34.356233 2024-09-11 09:07:34.356238 agrero A021681210 R rec 2e2b5e3a-d02a-4045-8da6-cc21bba84042 +2024-09-11 09:07:34.408763 2024-09-11 09:07:34.408769 agrero A021706387 R rec 97061014-d88f-4ee2-a7f3-5b4a7ea28815 +2024-09-11 09:07:34.467087 2024-09-11 09:07:34.467092 agrero A021753974 R rec 4b6c834a-25f2-47c3-99bd-0ddcd3ffdb83 +2024-09-11 09:07:34.522321 2024-09-11 09:07:34.522326 agrero A021794133 R rec 6ca0acd6-c442-4458-94ec-5d4cba6c12f8 +2024-09-11 09:07:34.576026 2024-09-11 09:07:34.576032 agrero A021819945 R rec b81be558-52f4-4132-b175-4a0f5500744e +2024-09-11 09:07:34.634958 2024-09-11 09:07:34.634965 agrero A021917468 R rec 6bd6e644-d517-4a16-a650-d90d43a2c810 +2024-09-11 09:07:34.739724 2024-09-11 09:07:34.739729 agrero A021918604 R rec f8662894-a9e9-431d-bb4b-1b7e1e5fe4f2 +2024-09-11 09:07:34.804214 2024-09-11 09:07:34.804219 agrero A021921193 R rec fa698306-7a4d-4c1a-bea7-49c7300a2b75 +2024-09-11 09:07:34.858287 2024-09-11 09:07:34.858293 agrero A021975601 R rec d3bd155a-9815-49fd-9b28-8a7cfcdbf801 +2024-09-11 09:07:34.930247 2024-09-11 09:07:34.930252 agrero A021988179 R rec 60e2316f-6bab-46f2-9e87-8dd58c913e7a +2024-09-11 09:07:34.988777 2024-09-11 09:07:34.988783 agrero A021992182 R rec da67a2ab-96fa-4730-967e-3b213519e1e5 +2024-09-11 09:07:35.05545 2024-09-11 09:07:35.055456 agrero A021995847 R rec cb37916b-0f53-4510-a675-edce0cf255e8 +2024-09-11 09:07:35.108216 2024-09-11 09:07:35.108221 agrero A022010442 R rec c1dbd5a1-0d28-4530-83cd-f5e556b70a50 +2024-09-11 09:07:35.166105 2024-09-11 09:07:35.16611 agrero A022253194 R rec 5a53c25a-fe7f-4709-9b60-7cea2f3e25d2 +2024-09-11 09:07:35.224461 2024-09-11 09:07:35.224466 agrero A022261345 R rec 093a5ccf-ef26-4d20-8235-e03c344127f0 +2024-09-11 09:07:35.278619 2024-09-11 09:07:35.278625 agrero A022263478 R rec d5337102-3201-45cf-937c-c5c342569f79 +2024-09-11 09:07:35.333364 2024-09-11 09:07:35.333368 agrero A022416217 R rec ada65de4-f5dc-4ebd-829f-9a715a9213c2 +2024-09-11 09:07:35.387322 2024-09-11 09:07:35.387328 agrero A022476006 R rec d6434bc8-a5d3-42ef-8b33-a627d40cffb8 +2024-09-11 09:07:35.449024 2024-09-11 09:07:35.44903 agrero A022502492 R rec 1e29177f-3308-48d1-90ec-e96eb62cb318 +2024-09-11 09:07:35.506369 2024-09-11 09:07:35.506375 agrero A022508588 R rec 59ecb3a7-5422-4ea4-974a-5809b1f297e0 +2024-09-11 09:07:35.570276 2024-09-11 09:07:35.570283 agrero A022508598 R rec 2e4e1593-07f2-4f24-9ce9-a0df778d3354 +2024-09-11 09:07:35.623789 2024-09-11 09:07:35.623794 agrero A022512216 R rec 28105b53-6201-48f4-abea-207ba056d611 +2024-09-11 09:07:35.680281 2024-09-11 09:07:35.680286 agrero A022533394 R rec c6aa340a-5a8e-43b9-bd9c-97efdea41107 +2024-09-11 09:07:35.741864 2024-09-11 09:07:35.74187 agrero A022545173 R rec 5424862a-be48-4fb9-933e-0073c7634b5d +2024-09-11 09:07:35.803174 2024-09-11 09:07:35.80318 agrero A022553969 R rec 1aa220d2-72da-4b36-a0e4-b701a44ba7a7 +2024-09-11 09:07:35.867115 2024-09-11 09:07:35.867119 agrero A022563739 R rec 15a5cc28-a9e8-4056-b81d-176683d88038 +2024-09-11 09:07:35.926516 2024-09-11 09:07:35.926522 agrero A022609222 R rec 9438148f-8d70-4a93-af3d-90e4e3d991c8 +2024-09-11 09:07:35.981865 2024-09-11 09:07:35.98187 agrero A022669691 R rec e18df1f8-498a-4302-ac66-fbfa13e482f6 +2024-09-11 09:07:36.047242 2024-09-11 09:07:36.047248 agrero A022727201 R rec 388b47e2-bf60-4d22-9b80-e3f29752d6b0 +2024-09-11 09:07:36.113031 2024-09-11 09:07:36.113036 agrero A022728227 R rec 73803711-d98e-4805-b368-5de0b5a9d6fb +2024-09-11 09:07:36.167236 2024-09-11 09:07:36.167241 agrero A022750943 R rec 613b4d73-4654-41f1-90f9-242963ebe5e2 +2024-09-11 09:07:36.226 2024-09-11 09:07:36.226005 agrero A022755606 R rec 8c597c47-5667-469a-bde2-3df22dfff6b8 +2024-09-11 09:07:36.280067 2024-09-11 09:07:36.280072 agrero A022762257 R rec 4a1a970d-462e-4b98-a48f-b3aa81f27829 +2024-09-11 09:07:36.335025 2024-09-11 09:07:36.33503 agrero A022774320 R rec 75186ea0-3969-49e8-a533-5c26126ce1e0 +2024-09-11 09:07:36.400234 2024-09-11 09:07:36.400238 agrero A022779592 R rec 011d62cb-751b-4e64-b4e6-c65b0e51e328 +2024-09-11 09:07:36.466517 2024-09-11 09:07:36.466522 agrero A022780159 R rec 0cf80d2f-f9e6-471a-ad8c-b9c638633dae +2024-09-11 09:07:36.532162 2024-09-11 09:07:36.532167 agrero A022784340 R rec 09b03c9e-1f32-403c-b6a9-95436400be44 +2024-09-11 09:07:36.602331 2024-09-11 09:07:36.602337 agrero A022788140 R rec b4bfd758-15dc-4289-a083-e09fe685b300 +2024-09-11 09:07:36.660222 2024-09-11 09:07:36.660227 agrero A022802138 R rec 592ab2d8-86b2-4e2d-b29a-1c14d7050b1b +2024-09-11 09:07:36.710578 2024-09-11 09:07:36.710583 agrero A022802695 R rec ace80be2-1ed7-45b9-b012-c8bca473e649 +2024-09-11 09:07:36.764757 2024-09-11 09:07:36.764762 agrero A022817751 R rec cf6ec4be-a7e3-4e8a-81bd-8ecbfec5ffcb +2024-09-11 09:07:36.824112 2024-09-11 09:07:36.824117 agrero A022823883 R rec bcc640b2-9a54-4c6d-ac98-41206d2ddfcf +2024-09-11 09:07:36.878532 2024-09-11 09:07:36.878537 agrero A022833947 R rec c266ec9a-dfdb-4635-ae8c-510419ddefb1 +2024-09-11 09:07:36.944664 2024-09-11 09:07:36.944669 agrero A022844215 R rec 0905bb44-6995-40a6-a1a1-852935feeee3 +2024-09-11 09:07:36.998769 2024-09-11 09:07:36.998773 agrero A022850968 R rec 615b46bf-200d-422a-8e2d-2249405e2fef +2024-09-11 09:07:37.055252 2024-09-11 09:07:37.055258 agrero A022851528 R rec f546e396-5ea4-4786-b418-8eb26681806a +2024-09-11 09:07:37.111288 2024-09-11 09:07:37.111294 agrero A022851951 R rec dabcfbe0-b2fa-4a54-af29-021996ecc6d1 +2024-09-11 09:07:37.17881 2024-09-11 09:07:37.178815 agrero A022877330 R rec 9a34e620-175e-4838-8df5-7652cf7f8a6f +2024-09-11 09:07:37.235809 2024-09-11 09:07:37.235815 agrero A022879961 R rec 6f1d6fbc-f174-4572-aab6-99fa57d8b386 +2024-09-11 09:07:37.295032 2024-09-11 09:07:37.295037 agrero A022889884 R rec 4bbb257b-5ec5-4426-b0f8-a303b127dc4f +2024-09-11 09:07:37.349082 2024-09-11 09:07:37.349088 agrero A022899841 R rec 0970c820-8474-4aa8-a2b3-9bf4f10312c9 +2024-09-11 09:07:37.40265 2024-09-11 09:07:37.402657 agrero A022904210 R rec e5fe8a01-6b17-430d-97a9-81d646b71653 +2024-09-11 09:07:37.477307 2024-09-11 09:07:37.477313 agrero A022916519 R rec 8e59e7c9-7fd4-4e3d-8bbd-4a9b9b51a21f +2024-09-11 09:07:37.536072 2024-09-11 09:07:37.536077 agrero A022917527 R rec 0ad01d7e-139f-43cd-ae9a-7812a7a59609 +2024-09-11 09:07:37.590487 2024-09-11 09:07:37.590492 agrero A022925286 R rec df023468-f496-4119-a8a9-1d0d3dc84aef +2024-09-11 09:07:37.645453 2024-09-11 09:07:37.645457 agrero A022944034 R rec 770ed9b5-ad76-433a-af5e-7f583a5381fc +2024-09-11 09:07:37.704953 2024-09-11 09:07:37.704958 agrero A022959371 R rec f805ed9e-03c1-46a2-a746-c448c7d4def2 +2024-09-11 09:07:37.757911 2024-09-11 09:07:37.757917 agrero A022966454 R rec 718065ca-4b59-45aa-9cbf-07ae78f9567d +2024-09-11 09:07:37.810794 2024-09-11 09:07:37.810799 agrero A022967536 R rec 1ceafa20-d917-4150-8ac3-3bbb16372a6b +2024-09-11 09:07:37.872283 2024-09-11 09:07:37.872288 agrero A022968022 R rec 51f996ac-c45a-43b1-bb98-e84c6da62b26 +2024-09-11 09:07:37.938268 2024-09-11 09:07:37.938275 agrero A022977898 R rec b6bf124a-109c-49bd-9c54-db59f402300b +2024-09-11 09:07:37.995238 2024-09-11 09:07:37.995243 agrero A022983847 R rec fa166371-8125-4f2d-b597-f70337c6662c +2024-09-11 09:07:38.051033 2024-09-11 09:07:38.051038 agrero A022990131 R rec 86678c63-f74b-4a23-a5ea-d1477c17efd4 +2024-09-11 09:07:38.16672 2024-09-11 09:07:38.166726 agrero A022997177 R rec b4ffc200-9022-4a16-bdc1-e7cf5190ecd6 +2024-09-11 09:07:38.225442 2024-09-11 09:07:38.225448 agrero A023068067 R rec f1581367-301e-4fcd-bfdb-e51bf894fd2e +2024-09-11 09:07:38.280677 2024-09-11 09:07:38.280682 agrero A023086196 R rec e11e1810-64f0-448f-9e93-fb9f247608c3 +2024-09-11 09:07:38.330965 2024-09-11 09:07:38.330969 agrero A023112678 R rec 8d3fb005-f567-4836-a53c-8a1300bcfb42 +2024-09-11 09:07:38.385399 2024-09-11 09:07:38.385404 agrero A023114350 R rec d09c967f-de76-4b54-93b8-2c41315c658d +2024-09-11 09:07:38.449303 2024-09-11 09:07:38.449309 agrero A023116130 R rec 3b85fc61-565a-4242-9d42-f4a715f52689 +2024-09-11 09:07:38.503074 2024-09-11 09:07:38.503078 agrero A023116917 R rec dcee4b44-ca1a-40d2-a43e-e526f4dc4139 +2024-09-11 09:07:38.560637 2024-09-11 09:07:38.560642 agrero A023154358 R rec c4f7be17-b67f-4a16-b2e1-a6a83f66527b +2024-09-11 09:07:38.618306 2024-09-11 09:07:38.618312 agrero A023158576 R rec 3784523d-904d-4ba9-beab-d68d4b5f21c2 +2024-09-11 09:07:38.673191 2024-09-11 09:07:38.673196 agrero A023166695 R rec 58f2c6c7-e504-461d-a45a-a48d3cb9ee6c +2024-09-11 09:07:38.738085 2024-09-11 09:07:38.738091 agrero A023168629 R rec 8bde71f9-1cc2-43d4-bb1a-4acf4c4e7acd +2024-09-11 09:07:38.795446 2024-09-11 09:07:38.795451 agrero A023182560 R rec acf24231-c666-4b7a-bfde-02275becbd50 +2024-09-11 09:07:38.862047 2024-09-11 09:07:38.862052 agrero A023188004 R rec 1b74910f-b183-4526-8f0d-e0087e3bab49 +2024-09-11 09:07:38.915796 2024-09-11 09:07:38.915802 agrero A023189262 R rec 82ecc359-8fda-4bef-8115-da11a3c92512 +2024-09-11 09:07:38.973834 2024-09-11 09:07:38.973839 agrero A023193920 R rec f627cca5-4bc3-4c9a-8e3d-1d166446369d +2024-09-11 09:07:39.038296 2024-09-11 09:07:39.038301 agrero A023196927 R rec ec0d2fec-8da6-4cfa-a815-7f72c53bd108 +2024-09-11 09:07:39.094492 2024-09-11 09:07:39.094497 agrero A023205283 R rec 12c94b17-568b-4c62-96c8-d12149b035a7 +2024-09-11 09:07:39.149138 2024-09-11 09:07:39.149144 agrero A023227823 R rec 88b267f4-8f79-4951-9f4d-03f6c49cdf20 +2024-09-11 09:07:39.210563 2024-09-11 09:07:39.210568 agrero A023237776 R rec ea7e1960-e421-413a-9c5d-7fbf899f10f9 +2024-09-11 09:07:39.267096 2024-09-11 09:07:39.267101 agrero A023249408 R rec 8e024595-9bc6-4b47-9a3e-2ac225572434 +2024-09-11 09:07:39.324791 2024-09-11 09:07:39.324796 agrero A023286352 R rec 21861ed2-8b95-49e8-baf9-11b021ecd5d0 +2024-09-11 09:07:39.381748 2024-09-11 09:07:39.381753 agrero A023294886 R rec 577cc109-f309-4b7b-9ed4-2a16d13e38e1 +2024-09-11 09:07:39.439583 2024-09-11 09:07:39.439589 agrero A023325251 R rec 4a27f87a-7b8a-4b5e-93f7-3f0dc1619dda +2024-09-11 09:07:39.495275 2024-09-11 09:07:39.49528 agrero A023343244 R rec bc521899-ac26-4a17-86d2-f9f0dfa20b7b +2024-09-11 09:07:39.550044 2024-09-11 09:07:39.55005 agrero A023361460 R rec 41c87888-eec7-4f1f-bf6e-678c30049364 +2024-09-11 09:07:39.604673 2024-09-11 09:07:39.604678 agrero A023366781 R rec 63137381-4bbd-41de-b2a8-0426631c42b0 +2024-09-11 09:07:39.667031 2024-09-11 09:07:39.667036 agrero A023417604 R rec 32c2c447-cd6a-4e74-92ce-94c0191f229f +2024-09-11 09:07:39.727672 2024-09-11 09:07:39.727676 agrero A023417887 R rec aabad0fd-c5d4-4ab0-848b-cb76a2f55433 +2024-09-11 09:07:39.784713 2024-09-11 09:07:39.784719 agrero A023419144 R rec 70b97c44-c776-4c7d-8db3-88be2174532b +2024-09-11 09:07:39.846396 2024-09-11 09:07:39.846401 agrero A023422393 R rec 8c2f1968-538c-45bb-8621-0cde6e0149ad +2024-09-11 09:07:39.903986 2024-09-11 09:07:39.903992 agrero A023425677 R rec 52a65fd1-6ddd-4dca-b890-483b2fc52525 +2024-09-11 09:07:39.972329 2024-09-11 09:07:39.972334 agrero A023432176 R rec 9612febf-380d-46f6-864d-e7930589e5dc +2024-09-11 09:07:40.026346 2024-09-11 09:07:40.026352 agrero A023438761 R rec 532e120f-166b-4119-aac1-518974f76fd7 +2024-09-11 09:07:40.081526 2024-09-11 09:07:40.081531 agrero A023440649 R rec 140a9280-a3f1-494d-b815-8d67a5ad3291 +2024-09-11 09:07:40.142655 2024-09-11 09:07:40.142661 agrero A023442924 R rec eca14364-8446-425f-b223-fc6f7f911d71 +2024-09-11 09:07:40.22407 2024-09-11 09:07:40.224076 agrero A023452640 R rec a3220f7b-c646-4446-9a37-b4552a0356b6 +2024-09-11 09:07:40.299169 2024-09-11 09:07:40.299174 agrero A023455691 R rec 86215c59-8de2-4243-875e-7bcfca04a50b +2024-09-11 09:07:40.35194 2024-09-11 09:07:40.351945 agrero A023474915 R rec 021f1e62-153d-4012-a44f-d918e6852110 +2024-09-11 09:07:40.406388 2024-09-11 09:07:40.406393 agrero A023516300 R rec 9f2f2faf-539e-4916-a4f7-3772fa2e740b +2024-09-11 09:07:40.461281 2024-09-11 09:07:40.461286 agrero A023516798 R rec 96377d94-7416-4350-95c5-21c9a2a36769 +2024-09-11 09:07:40.522143 2024-09-11 09:07:40.522154 agrero A023520416 R rec 6dc67818-403d-47f1-82d9-c0b0bbc1931c +2024-09-11 09:07:40.586351 2024-09-11 09:07:40.586356 agrero A023524669 R rec edc2e611-cff7-4237-9b2f-580235a264ca +2024-09-11 09:07:40.638647 2024-09-11 09:07:40.638652 agrero A023533143 R rec 46a298ec-d9eb-4704-b3d9-92448d4e263a +2024-09-11 09:07:40.692411 2024-09-11 09:07:40.692417 agrero A023570716 R rec 8fc993d9-1465-4969-9e02-ba590a217e71 +2024-09-11 09:07:40.744778 2024-09-11 09:07:40.744784 agrero A023604346 R rec f238c2a4-4810-4a97-b3ca-39db951e532d +2024-09-11 09:07:40.799841 2024-09-11 09:07:40.799847 agrero A023605931 R rec 98c05ed5-2b3e-4a2c-911c-9b00eef1d3ff +2024-09-11 09:07:40.866395 2024-09-11 09:07:40.8664 agrero A023608022 R rec ddb2f17e-99f3-4f28-a19e-9458180854b8 +2024-09-11 09:07:40.925532 2024-09-11 09:07:40.925537 agrero A023613346 R rec 9a30b600-f5f8-429e-93dd-f6e4f139a3ca +2024-09-11 09:07:40.985851 2024-09-11 09:07:40.985857 agrero A023626167 R rec 83fe1ab9-3d7d-495b-bc7c-12c5763f1f6d +2024-09-11 09:07:41.051775 2024-09-11 09:07:41.051781 agrero A023644947 R rec cab57aa0-b092-48d6-80ff-9050960ce239 +2024-09-11 09:07:41.121916 2024-09-11 09:07:41.121921 agrero A023655893 R rec 627a9507-e91c-4302-9596-2f9db598078f +2024-09-11 09:07:41.180375 2024-09-11 09:07:41.18038 agrero A023668772 R rec bb7d7da2-e9f8-4cbe-a369-a0b8345b7b88 +2024-09-11 09:07:41.247392 2024-09-11 09:07:41.247397 agrero A023690762 R rec 6f27c29e-dbaf-4c0f-b9ea-6f6cf1114e63 +2024-09-11 09:07:41.326284 2024-09-11 09:07:41.326289 agrero A023693839 R rec 5bc3aea7-0643-4232-a649-ecd999c35f9f +2024-09-11 09:07:41.41452 2024-09-11 09:07:41.414525 agrero A023699946 R rec 7717df52-0bd3-4b4e-93d1-33153626d892 +2024-09-11 09:07:41.475318 2024-09-11 09:07:41.475324 agrero A023700595 R rec 9a5d5a7b-6890-420f-890e-e10dd6699a5b +2024-09-11 09:07:41.547908 2024-09-11 09:07:41.547914 agrero A023701973 R rec 43b122e2-ad60-4bc3-8bba-cf809408a3fa +2024-09-11 09:07:41.626452 2024-09-11 09:07:41.626458 agrero A023712980 R rec 5d8fe0eb-0950-46d1-82dc-eff51281461a +2024-09-11 09:07:41.703502 2024-09-11 09:07:41.703508 agrero A023720699 R rec a1faf067-819b-4e20-ad4c-eab70e266e72 +2024-09-11 09:07:41.779629 2024-09-11 09:07:41.779635 agrero A023741754 R rec 53f31958-3900-4717-bfdc-ab497ca89255 +2024-09-11 09:07:41.84548 2024-09-11 09:07:41.845486 agrero A023763587 R rec 4db10380-a6bd-4ef7-b083-fe6e3cf0fd1f +2024-09-11 09:07:41.910669 2024-09-11 09:07:41.910673 agrero A023783324 R rec 265f82ed-935a-49ee-8f5c-92e0166a6d3c +2024-09-11 09:07:41.97105 2024-09-11 09:07:41.971055 agrero A023806510 R rec 765da1a7-7caf-4858-8799-7f343c0894d8 +2024-09-11 09:07:42.02862 2024-09-11 09:07:42.028625 agrero A023814163 R rec 6bb9e817-fa2f-4016-9dd8-4cb01774b1b9 +2024-09-11 09:07:42.091062 2024-09-11 09:07:42.091066 agrero A023822688 R rec 52c28a93-5baf-476b-b76b-59227884d0b0 +2024-09-11 09:07:42.147991 2024-09-11 09:07:42.147997 agrero A023822699 R rec e55f1394-d393-4fbc-8cbb-fa001c17b773 +2024-09-11 09:07:42.208188 2024-09-11 09:07:42.208193 agrero A023822966 R rec e7e67d24-c8de-4f5d-afa8-ceedba9f6264 +2024-09-11 09:07:42.270288 2024-09-11 09:07:42.270294 agrero A023823517 R rec 4cc9d932-f2ac-4488-acc1-cbf032161cff +2024-09-11 09:07:42.329405 2024-09-11 09:07:42.329411 agrero A023823557 R rec b58b40cb-faf5-4352-8244-61cb53c9eec8 +2024-09-11 09:07:42.394311 2024-09-11 09:07:42.394315 agrero A023848289 R rec 4b3d5281-8500-4f45-9ed7-d875a5dd5985 +2024-09-11 09:07:42.456276 2024-09-11 09:07:42.456281 agrero A023869329 R rec 0675f34b-bf40-443d-8a47-97635348ecce +2024-09-11 09:07:42.511684 2024-09-11 09:07:42.511689 agrero A023948966 R rec 3d5ed09e-fcf7-45c3-b455-ceb3298e3569 +2024-09-11 09:07:42.567742 2024-09-11 09:07:42.567747 agrero A023960471 R rec 470f055b-4fdc-4dab-ab11-e38dc2989842 +2024-09-11 09:07:42.625205 2024-09-11 09:07:42.62521 agrero A023966957 R rec a5932406-0956-4fbc-bcd1-b8592f74e4b0 +2024-09-11 09:07:42.693434 2024-09-11 09:07:42.69344 agrero A023969519 R rec 2195e445-127f-4ee5-a6c0-496ad9d4b20d +2024-09-11 09:07:42.786498 2024-09-11 09:07:42.786504 agrero A023985610 R rec 0826f1ca-9a5c-4ed4-a518-7491ba533259 +2024-09-11 09:07:42.842847 2024-09-11 09:07:42.842852 agrero A023993514 R rec 9e36e78c-b0df-4ceb-b5e9-0f1710f86a41 +2024-09-11 09:07:42.914431 2024-09-11 09:07:42.914437 agrero A023994589 R rec 2bdd5b98-84f3-4afe-a49a-eced167ec560 +2024-09-11 09:07:42.967762 2024-09-11 09:07:42.967768 agrero A024017606 R rec d087b923-b3c8-4303-bae6-ae11c90608de +2024-09-11 09:07:43.027457 2024-09-11 09:07:43.027463 agrero A024032635 R rec e975ba40-a0f5-4972-9947-fd47c8ca4363 +2024-09-11 09:07:43.086372 2024-09-11 09:07:43.086381 agrero A024034240 R rec 567703a0-65e4-4451-b254-9a5dda52acc7 +2024-09-11 09:07:43.173729 2024-09-11 09:07:43.173734 agrero A024042745 R rec 9a90415b-9092-4ea2-a091-6d7544e5651a +2024-09-11 09:07:43.251034 2024-09-11 09:07:43.251041 agrero A024043552 R rec edf845e5-978c-4e3e-8de9-ae8b60588d59 +2024-09-11 09:07:43.319471 2024-09-11 09:07:43.319477 agrero A024063413 R rec 5964da1c-bc4d-4208-b09e-a0ae8f0f242b +2024-09-11 09:07:43.379006 2024-09-11 09:07:43.379012 agrero A024072354 R rec 032635d1-1649-470b-ac05-10dad5ed2241 +2024-09-11 09:07:43.443017 2024-09-11 09:07:43.443022 agrero A024073610 R rec 54f1d459-5c5a-4697-ba71-d8feac1fd699 +2024-09-11 09:07:43.50298 2024-09-11 09:07:43.502986 agrero A024075381 R rec 3a52d0c4-aa3a-45aa-a649-9f9bcaa43b45 +2024-09-11 09:07:43.570966 2024-09-11 09:07:43.570972 agrero A024079443 R rec 1ace69c6-b824-46f9-8b3e-53435b3f038d +2024-09-11 09:07:43.628198 2024-09-11 09:07:43.628203 agrero A024083167 R rec 07270570-e7f1-4426-93a9-8b502ef06acd +2024-09-11 09:07:43.696883 2024-09-11 09:07:43.696889 agrero A024099458 R rec cbb562dd-7e55-4a63-8574-ac6534a4ec90 +2024-09-11 09:07:43.762071 2024-09-11 09:07:43.762077 agrero A024107085 R rec dac43e41-f6be-4442-be97-fd9087d49989 +2024-09-11 09:07:43.818642 2024-09-11 09:07:43.818647 agrero A024109666 R rec 4ed9c6ce-beec-4f73-9d7b-7f7e864d0222 +2024-09-11 09:07:43.87267 2024-09-11 09:07:43.872676 agrero A024119960 R rec d38424ab-84e5-473e-b441-dac00cb18ef2 +2024-09-11 09:07:43.931133 2024-09-11 09:07:43.931138 agrero A024120760 R rec c3e1d52a-455c-474f-824a-1ed110401f2e +2024-09-11 09:07:43.991041 2024-09-11 09:07:43.991047 agrero A024123847 R rec 4203093d-a675-43a6-89ef-39a3db1a6b37 +2024-09-11 09:07:44.052401 2024-09-11 09:07:44.052407 agrero A024135505 R rec e6eedd8c-85a2-4139-8cbc-35bbaded20f9 +2024-09-11 09:07:44.102958 2024-09-11 09:07:44.102963 agrero A024137299 R rec 3c868a75-8a57-4336-94cb-a5457d48a7a4 +2024-09-11 09:07:44.155323 2024-09-11 09:07:44.155327 agrero A024141965 R rec 25177d3f-3c81-4e81-b89e-a13e9f3ce712 +2024-09-11 09:07:44.217731 2024-09-11 09:07:44.217736 agrero A024152276 R rec 8a5cec9f-53f5-44f1-9010-05f38a7f236a +2024-09-11 09:07:44.275823 2024-09-11 09:07:44.275829 agrero A024180345 R rec ea5cca6d-dd9a-410a-a700-63750e16110a +2024-09-11 09:07:44.33216 2024-09-11 09:07:44.332165 agrero A024182024 R rec a32b6ce5-5861-4868-91ba-a58f886955da +2024-09-11 09:07:44.388002 2024-09-11 09:07:44.388008 agrero A024188404 R rec ca993f1a-cfbc-429e-a498-1ff476976552 +2024-09-11 09:07:44.462693 2024-09-11 09:07:44.462698 agrero A024193588 R rec 58d9a7b0-5bde-4e96-af77-089f244fd7ca +2024-09-11 09:07:44.522455 2024-09-11 09:07:44.52246 agrero A024201811 R rec 367839dc-ac1d-478b-8918-db4d2867a149 +2024-09-11 09:07:44.582901 2024-09-11 09:07:44.582907 agrero A024207312 R rec 5337ec93-83ba-4192-ad26-5485544f64d0 +2024-09-11 09:07:44.638583 2024-09-11 09:07:44.638589 agrero A024239773 R rec 9b2c2785-e89d-464b-b814-bfebb7bb8aa7 +2024-09-11 09:07:44.694713 2024-09-11 09:07:44.694719 agrero A024248736 R rec 1a1a4768-46d5-4817-917e-f57de7dd1194 +2024-09-11 09:07:44.74915 2024-09-11 09:07:44.749156 agrero A024250351 R rec 9f4b3c85-7373-4b2a-9b59-344091f8a795 +2024-09-11 09:07:44.81319 2024-09-11 09:07:44.813196 agrero A024250841 R rec 555ce354-f668-4f9b-87b8-7b4d8f403014 +2024-09-11 09:07:44.86967 2024-09-11 09:07:44.869677 agrero A024251528 R rec d590e210-da4b-42dc-ae20-118906b5ae72 +2024-09-11 09:07:44.92659 2024-09-11 09:07:44.926596 agrero A024255039 R rec e31410df-0e03-497c-a22d-bb7b11ff5553 +2024-09-11 09:07:44.991139 2024-09-11 09:07:44.991144 agrero A024295112 R rec 366b4d6b-2367-4954-8f22-b94ef24a9b4d +2024-09-11 09:07:45.046395 2024-09-11 09:07:45.046401 agrero A024305757 R rec ca724c94-93ed-4811-9236-227dc2fb36c7 +2024-09-11 09:07:45.107569 2024-09-11 09:07:45.107574 agrero A024311492 R rec 2e6a16b5-dc48-4969-b749-646ac55a10f0 +2024-09-11 09:07:45.169246 2024-09-11 09:07:45.169252 agrero A024314866 R rec 9f094484-4dc7-40ab-a873-7147437ef223 +2024-09-11 09:07:45.237942 2024-09-11 09:07:45.237948 agrero A024316631 R rec aff0a66c-4625-40c2-a727-08d07802dcaf +2024-09-11 09:07:45.300265 2024-09-11 09:07:45.30027 agrero A024326128 R rec fdca1beb-6185-4665-be71-8930f10400a3 +2024-09-11 09:07:45.363213 2024-09-11 09:07:45.363218 agrero A024329523 R rec 6bbbf098-e1c9-4747-a519-9ec5ef6cee5f +2024-09-11 09:07:45.423832 2024-09-11 09:07:45.423837 agrero A024329741 R rec d0ed1066-bee4-47f6-8b8b-41bc062a6310 +2024-09-11 09:07:45.477937 2024-09-11 09:07:45.477942 agrero A024333154 R rec 05081872-7191-4ff0-928d-44d1e8a154d0 +2024-09-11 09:07:45.532139 2024-09-11 09:07:45.532143 agrero A024352277 R rec ee5b735d-8bb5-4f79-8bfe-914193584c7b +2024-09-11 09:07:45.599065 2024-09-11 09:07:45.59907 agrero A024368303 R rec e2f7c7e9-04f9-49ca-8e13-2c79f9cb332e +2024-09-11 09:07:45.655255 2024-09-11 09:07:45.65526 agrero A024370974 R rec 1cde3a79-d0e0-4912-9dd8-4084b7f1a286 +2024-09-11 09:07:45.710788 2024-09-11 09:07:45.710794 agrero A024377672 R rec ff5102a6-bdaf-4600-a002-de3e40555260 +2024-09-11 09:07:45.765747 2024-09-11 09:07:45.765752 agrero A024381221 R rec fc413041-9fb6-4cdc-a5f6-89ffe6573a4b +2024-09-11 09:07:45.821415 2024-09-11 09:07:45.82142 agrero A024413945 R rec b249d8fe-4690-4396-ade7-80f025295c70 +2024-09-11 09:07:45.885306 2024-09-11 09:07:45.885311 agrero A024416324 R rec 8395fdbe-1f76-4f32-a679-19bbdc6a2d5e +2024-09-11 09:07:45.957972 2024-09-11 09:07:45.957977 agrero A024424763 R rec ffdf2224-8d90-480c-b287-7cdaf26a5a27 +2024-09-11 09:07:46.025456 2024-09-11 09:07:46.025462 agrero A024446255 R rec 48f49f33-eee6-4c9d-bef0-81d7d6a0ecb7 +2024-09-11 09:07:46.085197 2024-09-11 09:07:46.085203 agrero A024465489 R rec e10137ec-5ef8-4f70-9ad4-27270ae9d585 +2024-09-11 09:07:46.143957 2024-09-11 09:07:46.143962 agrero A024466417 R rec f704d788-bcd1-43e0-901d-86a38793d35c +2024-09-11 09:07:46.195004 2024-09-11 09:07:46.195009 agrero A024471669 R rec 56268aa9-5068-4612-8175-7bb8f61644a6 +2024-09-11 09:07:46.259299 2024-09-11 09:07:46.259304 agrero A024478155 R rec 45f31a36-03a6-4fb6-8a5d-9c6c2abd5bb3 +2024-09-11 09:07:46.31463 2024-09-11 09:07:46.314635 agrero A024478463 R rec c2674e35-419d-4f90-8d79-8e703571a67f +2024-09-11 09:07:46.370525 2024-09-11 09:07:46.37053 agrero A024478863 R rec dc40a475-1343-48b1-88f9-0e2cd6fd2b55 +2024-09-11 09:07:46.428744 2024-09-11 09:07:46.42875 agrero A024480400 R rec a86ad7eb-2612-4f81-9172-4fd498462939 +2024-09-11 09:07:46.483888 2024-09-11 09:07:46.483893 agrero A024491342 R rec 2fb1e75a-6d56-4f03-8ed9-e605013c5ac5 +2024-09-11 09:07:46.536832 2024-09-11 09:07:46.536837 agrero A024527296 R rec 6d36e314-8972-4363-bb15-eabce495897e +2024-09-11 09:07:46.600403 2024-09-11 09:07:46.600409 agrero A024528563 R rec bdcc24db-ff6c-42c7-ae7a-710e2c266d89 +2024-09-11 09:07:46.662549 2024-09-11 09:07:46.662554 agrero A024529059 R rec fa9f592d-b24f-462b-a7bd-4be681311fa2 +2024-09-11 09:07:46.725403 2024-09-11 09:07:46.725409 agrero A024541309 R rec 35ffc22a-2b31-4150-8507-80df3d79e7aa +2024-09-11 09:07:46.785987 2024-09-11 09:07:46.785992 agrero A024566467 R rec 90063fbd-290e-4b3a-9941-6168c69357cd +2024-09-11 09:07:46.847616 2024-09-11 09:07:46.847622 agrero A024569645 R rec 9b419d0d-c421-4729-b18e-734318ebf3d2 +2024-09-11 09:07:46.909989 2024-09-11 09:07:46.909994 agrero A024595109 R rec 17328d8d-60db-46cb-a545-4948bad37601 +2024-09-11 09:07:46.965246 2024-09-11 09:07:46.965251 agrero A024595509 R rec 2867b1c9-23ad-4a6b-a5d5-67c9f410ae5c +2024-09-11 09:07:47.024299 2024-09-11 09:07:47.024304 agrero A024600161 R rec 08c4146c-f7a3-465a-bd54-68d50fc4ea97 +2024-09-11 09:07:47.076281 2024-09-11 09:07:47.076287 agrero A024602006 R rec 5636984e-b633-41ef-8089-2fb62d1897bd +2024-09-11 09:07:47.130385 2024-09-11 09:07:47.13039 agrero A024707851 R rec a4ea4fef-02ba-41b9-9554-da3deb49d7e7 +2024-09-11 09:07:47.181976 2024-09-11 09:07:47.181982 agrero A024728544 R rec 7773e7f7-b222-4e8b-82b3-4614b4dba43c +2024-09-11 09:07:47.241085 2024-09-11 09:07:47.241091 agrero A024729479 R rec db784038-be1d-40a1-9372-2cd4cde65814 +2024-09-11 09:07:47.294685 2024-09-11 09:07:47.29469 agrero A024746147 R rec 0ce1a654-f5fe-4f4a-b289-9871e83c4c25 +2024-09-11 09:07:47.350393 2024-09-11 09:07:47.350398 agrero A024770093 R rec 1e1a8856-f255-41da-80e9-fdb7aa21c12b +2024-09-11 09:07:47.40432 2024-09-11 09:07:47.404325 agrero A024774397 R rec 69975918-fcb8-47c9-9eb4-a8d29d035c3a +2024-09-11 09:07:47.458501 2024-09-11 09:07:47.458506 agrero A024790283 R rec 0e483cd1-4591-4c2d-85b2-18c171c483c4 +2024-09-11 09:07:47.516987 2024-09-11 09:07:47.516992 agrero A024801676 R rec 360f0d73-e88a-4ef2-bc78-ceace50c5f34 +2024-09-11 09:07:47.580508 2024-09-11 09:07:47.580514 agrero A024814391 R rec c7946236-1d41-4029-bc27-44c61ba344a2 +2024-09-11 09:07:47.639372 2024-09-11 09:07:47.639377 agrero A024843767 R rec e36e1701-db27-4e9e-bb3a-cc3bd1bff885 +2024-09-11 09:07:47.700853 2024-09-11 09:07:47.700859 agrero A024846924 R rec 8760f2c7-68b2-4216-a368-6c7ef6588ed5 +2024-09-11 09:07:47.758989 2024-09-11 09:07:47.758995 agrero A024866515 R rec fc10e092-f3f2-4417-ad39-0b90958a7ca9 +2024-09-11 09:07:47.814887 2024-09-11 09:07:47.814893 agrero A024878364 R rec da952ba2-e89b-4e48-9c81-50aa17b542ef +2024-09-11 09:07:47.870324 2024-09-11 09:07:47.87033 agrero A024884886 R rec 72e2eca5-bf68-468c-a298-5290a54a6aaa +2024-09-11 09:07:47.927721 2024-09-11 09:07:47.927725 agrero A024896750 R rec 3dc0ac7a-bb9d-408e-8a3d-08afb3c2dbe5 +2024-09-11 09:07:47.984029 2024-09-11 09:07:47.984034 agrero A024897034 R rec e29a13d4-1b8c-40bb-812a-0d2142fd4452 +2024-09-11 09:07:48.044886 2024-09-11 09:07:48.044892 agrero A024917771 R rec d480deed-7c62-4b5c-8d70-5f3484494469 +2024-09-11 09:07:48.098963 2024-09-11 09:07:48.098968 agrero A024919899 R rec ca480427-27d4-4bfe-97e3-ac520364cdd7 +2024-09-11 09:07:48.159389 2024-09-11 09:07:48.159394 agrero A024930424 R rec 417b093a-802c-44f4-8e42-405dd67d4be9 +2024-09-11 09:07:48.229496 2024-09-11 09:07:48.229501 agrero A024960848 R rec e85ce678-8ea2-4040-b742-f5a2a69748a8 +2024-09-11 09:07:48.28381 2024-09-11 09:07:48.283816 agrero A024966631 R rec 1afaf727-b534-436c-800c-f632293075f9 +2024-09-11 09:07:48.339547 2024-09-11 09:07:48.339574 agrero A024969731 R rec 4875f7a6-5980-4f50-b242-5bdd7c8ddde1 +2024-09-11 09:07:48.398332 2024-09-11 09:07:48.398337 agrero A024978532 R rec ffacb729-91e6-489b-93c0-e07ea487cded +2024-09-11 09:07:48.458049 2024-09-11 09:07:48.458054 agrero A024983874 R rec 5eb0b4aa-c332-4dc2-b14b-2fd4b92f7379 +2024-09-11 09:07:48.516036 2024-09-11 09:07:48.516043 agrero A025024778 R rec a0fecccd-fa80-4098-9737-f2a65c8a4a78 +2024-09-11 09:07:48.574477 2024-09-11 09:07:48.574483 agrero A025029914 R rec 56e84780-ea46-4c9d-9ee2-e98b6a510470 +2024-09-11 09:07:48.631853 2024-09-11 09:07:48.631858 agrero A025056747 R rec 4bf25b17-a1b3-4b2a-8dd4-53f1bfd13eab +2024-09-11 09:07:48.685223 2024-09-11 09:07:48.685228 agrero A025075603 R rec 1ecbefd2-4e0b-4181-9230-3ec7d0b4cdf9 +2024-09-11 09:07:48.74013 2024-09-11 09:07:48.740136 agrero A025086688 R rec 3ac97fc3-286f-494d-93bf-61fbbae2d77e +2024-09-11 09:07:48.794953 2024-09-11 09:07:48.794958 agrero A025119661 R rec 2d47cd44-dafd-4fb9-b0df-e9e2d554a6cf +2024-09-11 09:07:48.851212 2024-09-11 09:07:48.851217 agrero A025121507 R rec d6ff44f0-ffd5-4517-97e0-8dc3eebb5f27 +2024-09-11 09:07:48.906505 2024-09-11 09:07:48.90651 agrero A025244362 R rec b3b8673b-2c10-4bcc-9945-e34781a01fe3 +2024-09-11 09:07:48.96414 2024-09-11 09:07:48.964145 agrero A025252592 R rec 33b1029a-59cc-4fcd-b0ee-e956489be2e9 +2024-09-11 09:07:49.02205 2024-09-11 09:07:49.022055 agrero A025258576 R rec e47b8bdf-8c34-4cc6-b148-4ad2375383a4 +2024-09-11 09:07:49.074698 2024-09-11 09:07:49.074703 agrero A025259137 R rec e86b8051-6d6e-441d-b4c2-d5cdec069fd1 +2024-09-11 09:07:49.129497 2024-09-11 09:07:49.129502 agrero A025287146 R rec f90dbe5e-8cb5-424c-9be2-e2d4ec7344a2 +2024-09-11 09:07:49.187689 2024-09-11 09:07:49.187694 agrero A025328121 R rec 01c7c2f5-eff9-4e7e-9e93-532fcccd77cd +2024-09-11 09:07:49.245823 2024-09-11 09:07:49.245829 agrero A025329777 R rec 6208b77c-7b12-4932-bb49-c039e30987d2 +2024-09-11 09:07:49.304098 2024-09-11 09:07:49.304103 agrero A025330235 R rec 5e9e1373-1688-4c1f-8927-179aefc08664 +2024-09-11 09:07:49.359439 2024-09-11 09:07:49.359445 agrero A025337143 R rec f982af05-6971-4766-9733-735fc6360b60 +2024-09-11 09:07:49.416957 2024-09-11 09:07:49.416962 agrero A025360796 R rec d584151d-9202-4e1d-974b-9fc247d38fd9 +2024-09-11 09:07:49.472964 2024-09-11 09:07:49.472984 agrero A025367912 R rec abef2a11-acb0-436f-9de4-3078ca37eeaf +2024-09-11 09:07:49.534517 2024-09-11 09:07:49.534523 agrero A025387385 R rec c3b2d02e-b2b2-44cc-804d-c9dcb841b612 +2024-09-11 09:07:49.593831 2024-09-11 09:07:49.593836 agrero A025397944 R rec bacebb3f-6828-4b1d-8058-e3ce5d09c953 +2024-09-11 09:07:49.649612 2024-09-11 09:07:49.649618 agrero A025418238 R rec b8ef4d30-69d9-4fe3-aef0-a6a16065ff24 +2024-09-11 09:07:49.720223 2024-09-11 09:07:49.720228 agrero A025435600 R rec a6f1cbfe-2add-470f-b3de-362672cbd509 +2024-09-11 09:07:49.77848 2024-09-11 09:07:49.778485 agrero A025454683 R rec 78d3cfae-8b0b-4062-bb41-9c50ff62a4ea +2024-09-11 09:07:49.856752 2024-09-11 09:07:49.856757 agrero A025477095 R rec 8a4404a3-8335-412e-82a2-1ce1bdda5d5b +2024-09-11 09:07:49.919353 2024-09-11 09:07:49.919358 agrero A025504164 R rec cb7d3a8e-ae9b-4cdb-8f44-56f66e910dd3 +2024-09-11 09:07:49.995876 2024-09-11 09:07:49.995882 agrero A025537929 R rec aa9fbfa7-399c-45c2-a243-4c624f31a53a +2024-09-11 09:07:50.059871 2024-09-11 09:07:50.059876 agrero A025540309 R rec c0991b4d-c6b8-4440-aff3-5d166e2478a9 +2024-09-11 09:07:50.116062 2024-09-11 09:07:50.116068 agrero A025581873 R rec 3ba7c7b2-9990-4a29-95ee-a601f5e81c73 +2024-09-11 09:07:50.175134 2024-09-11 09:07:50.17514 agrero A025582144 R rec 3b435c79-644a-4217-ad83-a35d74eb083c +2024-09-11 09:07:50.237359 2024-09-11 09:07:50.237364 agrero A025610247 R rec 12a3f2d9-d42d-4be4-b99d-c19dd1232b0a +2024-09-11 09:07:50.296462 2024-09-11 09:07:50.296469 agrero A025614399 R rec 44cc2d59-eb86-45da-a6a3-88ac712fb824 +2024-09-11 09:07:50.35123 2024-09-11 09:07:50.351235 agrero A025630450 R rec 56045ba9-ce93-4335-8f07-43e218fafcd0 +2024-09-11 09:07:50.414743 2024-09-11 09:07:50.414748 agrero A025632565 R rec 23a9b1bb-ddd7-4ded-b1aa-6e60d8b3d852 +2024-09-11 09:07:50.473253 2024-09-11 09:07:50.473257 agrero A025639432 R rec fba3323b-12b9-4042-97bd-17af8f097f40 +2024-09-11 09:07:50.537202 2024-09-11 09:07:50.537207 agrero A025669520 R rec e482ab79-ecc7-41cd-80f3-5690bf303215 +2024-09-11 09:07:50.594233 2024-09-11 09:07:50.594238 agrero A025676459 R rec 566211ca-1793-4ca9-9401-3e3aa9e83128 +2024-09-11 09:07:50.653942 2024-09-11 09:07:50.653948 agrero A025678092 R rec 7288f008-f0b9-498b-87a5-2c7f01d3118c +2024-09-11 09:07:50.711994 2024-09-11 09:07:50.711999 agrero A025679166 R rec 4af9320c-3ef9-487c-a5ae-4de683f9f400 +2024-09-11 09:07:50.784334 2024-09-11 09:07:50.78434 agrero A025681987 R rec f3283b88-28dd-40e7-aa67-60b82468b787 +2024-09-11 09:07:50.845121 2024-09-11 09:07:50.845126 agrero A025688432 R rec 3a02f255-81d6-4400-a439-ef36be781643 +2024-09-11 09:07:50.917088 2024-09-11 09:07:50.917093 agrero A025691379 R rec ea57db4c-59c0-428a-b6ed-e7c2062c5ac2 +2024-09-11 09:07:50.973213 2024-09-11 09:07:50.973217 agrero A025694319 R rec 29f3a287-790d-4814-94c5-af73567cc46d +2024-09-11 09:07:51.038314 2024-09-11 09:07:51.038319 agrero A025711026 R rec 92e2555b-246c-4e32-90f9-d32290f39cdb +2024-09-11 09:07:51.098167 2024-09-11 09:07:51.098172 agrero A025712587 R rec 250c1f43-c659-4daa-af4a-c867499e8daa +2024-09-11 09:07:51.15963 2024-09-11 09:07:51.159636 agrero A025721356 R rec f2f6c13f-0c3d-49cf-99c3-813af2d8bebe +2024-09-11 09:07:51.21753 2024-09-11 09:07:51.217535 agrero A025723446 R rec 05cd7cbb-7763-4468-99e2-f15740893953 +2024-09-11 09:07:51.279812 2024-09-11 09:07:51.279817 agrero A025730129 R rec f7d0669a-ff48-4f71-8aab-c3efb1762ff8 +2024-09-11 09:07:51.344972 2024-09-11 09:07:51.344977 agrero A025745173 R rec dfc57342-734e-4d57-823b-656118e5844e +2024-09-11 09:07:51.396804 2024-09-11 09:07:51.39681 agrero A025772014 R rec 5b4c9c9a-3d31-45de-bda1-1bad4396dab5 +2024-09-11 09:07:51.455445 2024-09-11 09:07:51.45545 agrero A025773339 R rec 9c6ccf70-8de4-4b24-891b-094613ca53da +2024-09-11 09:07:51.508726 2024-09-11 09:07:51.508732 agrero A025780261 R rec 6fa84da6-4089-4144-a2ed-d0079d6ae3fe +2024-09-11 09:07:51.566604 2024-09-11 09:07:51.566609 agrero A025785978 R rec c4a0dfd7-3abf-4580-881c-e6efc2221154 +2024-09-11 09:07:51.626487 2024-09-11 09:07:51.626493 agrero A025796144 R rec d4b132aa-b87b-4c8a-b260-f3be3a613749 +2024-09-11 09:07:51.680882 2024-09-11 09:07:51.680887 agrero A025797147 R rec a545d26a-b8f1-4930-bfa8-c1c09b547e40 +2024-09-11 09:07:51.735471 2024-09-11 09:07:51.735476 agrero A025804299 R rec f6f2f70c-08e2-4311-8ba2-c680c387ef53 +2024-09-11 09:07:51.787694 2024-09-11 09:07:51.7877 agrero A025826851 R rec 163b964b-4e6d-44c5-8794-4eb023e91ff2 +2024-09-11 09:07:51.844175 2024-09-11 09:07:51.844181 agrero A025833339 R rec 8523d2a0-193c-4bfb-90a9-b3819c97ad5e +2024-09-11 09:07:51.89939 2024-09-11 09:07:51.899396 agrero A025835776 R rec bb7e71ae-c0b7-4b7f-ac0b-21b6391e4896 +2024-09-11 09:07:51.95758 2024-09-11 09:07:51.957585 agrero A025837185 R rec 39aa3f05-41a3-499a-a0c5-0f6632559fe6 +2024-09-11 09:07:52.029959 2024-09-11 09:07:52.029965 agrero A025845397 R rec 85fadb3a-4a87-48f2-9092-7355b063f238 +2024-09-11 09:07:52.086457 2024-09-11 09:07:52.086462 agrero A025848952 R rec 1f3a0a53-7805-46c4-a235-9cb380fe0af5 +2024-09-11 09:07:52.139632 2024-09-11 09:07:52.139637 agrero A025851501 R rec 652808bc-309d-4720-9ed7-a91ae1c47c5b +2024-09-11 09:07:52.201902 2024-09-11 09:07:52.201907 agrero A025884069 R rec 9e9f98db-8d29-426b-a345-51359aac9fc2 +2024-09-11 09:07:52.255515 2024-09-11 09:07:52.255521 agrero A025890846 R rec fd4f702d-e1c1-4704-b058-16ef8fe60f2a +2024-09-11 09:07:52.308998 2024-09-11 09:07:52.309003 agrero A025893734 R rec 58479797-c831-41d9-9584-d3d8c6b93445 +2024-09-11 09:07:52.362584 2024-09-11 09:07:52.362589 agrero A025926750 R rec 302ec246-1fc0-422b-a339-89e8035398ea +2024-09-11 09:07:52.427756 2024-09-11 09:07:52.427761 agrero A025930633 R rec 37aadd45-9037-44f2-ba49-db4cdd9b6879 +2024-09-11 09:07:52.480901 2024-09-11 09:07:52.480907 agrero A025932364 R rec 01d94f18-d074-4c4c-bcd6-bf83182bfe33 +2024-09-11 09:07:52.539354 2024-09-11 09:07:52.539359 agrero A025951707 R rec 810ea87c-7fab-48f7-9fd9-4b616aceba2b +2024-09-11 09:07:52.601763 2024-09-11 09:07:52.601767 agrero A025956739 R rec 6b9c6340-db69-4002-94c5-fd9cb4aab998 +2024-09-11 09:07:52.659007 2024-09-11 09:07:52.659013 agrero A025958419 R rec 097dc88b-0949-48c5-bfc0-419d6fcdb6d0 +2024-09-11 09:07:52.720288 2024-09-11 09:07:52.720294 agrero A025965491 R rec dc9f86d0-d51b-4f02-8922-5c9bdca4c224 +2024-09-11 09:07:52.776703 2024-09-11 09:07:52.776708 agrero A025967759 R rec cfac8be1-6a31-497a-84ff-cb73f916305e +2024-09-11 09:07:52.8381 2024-09-11 09:07:52.838105 agrero A025976492 R rec 4bf334c2-47d0-44bf-b0e5-a526e8712a88 +2024-09-11 09:07:52.890377 2024-09-11 09:07:52.890381 agrero A025983847 R rec 06f8e2b1-1c96-4b6e-8d29-37f16afa9cf1 +2024-09-11 09:07:52.960332 2024-09-11 09:07:52.960337 agrero A025987021 R rec b24b3c6c-8c0d-4da7-a7de-8f6894de4116 +2024-09-11 09:07:53.038981 2024-09-11 09:07:53.038987 agrero A026005729 R rec 73d1c6c5-4a8b-4094-815c-9c946e5c8eb0 +2024-09-11 09:07:53.094638 2024-09-11 09:07:53.094643 agrero A026012565 R rec f3fa45ea-982d-4c53-812d-a518afd67978 +2024-09-11 09:07:53.14969 2024-09-11 09:07:53.149696 agrero A026015516 R rec 0b3b2bd2-ba3e-44c2-9141-e25872c4e250 +2024-09-11 09:07:53.202654 2024-09-11 09:07:53.202675 agrero A026028252 R rec a145e2b2-87f5-48ff-adce-1da2f8ea51dc +2024-09-11 09:07:53.256564 2024-09-11 09:07:53.256569 agrero A026028546 R rec 84abce12-ca43-44f3-9208-237098ff7661 +2024-09-11 09:07:53.307395 2024-09-11 09:07:53.3074 agrero A026050339 R rec da04237e-7379-4427-a84d-f564f32f7a5d +2024-09-11 09:07:53.36036 2024-09-11 09:07:53.360366 agrero A026066357 R rec 8acfbc20-583b-4362-a2a5-98cf8e18f586 +2024-09-11 09:07:53.414003 2024-09-11 09:07:53.414009 agrero A026085043 R rec ef94de5f-d347-4ab5-97f2-c5ca586d3403 +2024-09-11 09:07:53.468409 2024-09-11 09:07:53.468414 agrero A026091329 R rec df1ab8df-14e1-475b-87f8-0830b75c1fe4 +2024-09-11 09:07:53.523746 2024-09-11 09:07:53.523751 agrero A026115092 R rec 8299bc96-2ba4-49f2-9d2c-54b92e60bc3e +2024-09-11 09:07:53.578726 2024-09-11 09:07:53.578732 agrero A026120339 R rec bdf09a49-c1bf-45ca-acd0-de8cd135994c +2024-09-11 09:07:53.637395 2024-09-11 09:07:53.6374 agrero A026122888 R rec a1fc6dfd-8508-4587-a92c-6d9f90700f59 +2024-09-11 09:07:53.693712 2024-09-11 09:07:53.693718 agrero A026123991 R rec 6c7e0504-7a76-4ac3-a45b-e0c096397219 +2024-09-11 09:07:53.767593 2024-09-11 09:07:53.767598 agrero A026129158 R rec 4d74caad-35a1-45ce-92c1-691b20595d9f +2024-09-11 09:07:53.826448 2024-09-11 09:07:53.826454 agrero A026132029 R rec 63255358-79b8-470b-bbf6-99f4235d16fb +2024-09-11 09:07:53.879372 2024-09-11 09:07:53.879377 agrero A026144791 R rec 51385a6c-6bc4-425a-ac4e-1f03e4072b1c +2024-09-11 09:07:53.935654 2024-09-11 09:07:53.935679 agrero A026155985 R rec 9b67fbdb-cd12-428a-bbc6-2df0bf30577e +2024-09-11 09:07:53.992784 2024-09-11 09:07:53.99279 agrero A026164040 R rec 8c877e58-b0a1-407a-8bbb-445b7b02982d +2024-09-11 09:07:54.052624 2024-09-11 09:07:54.05263 agrero A026168031 R rec 5249f234-8963-4b73-8e33-7a9ff4104728 +2024-09-11 09:07:54.105388 2024-09-11 09:07:54.105392 agrero A026168151 R rec 478c4c2a-b030-41ac-93b0-64b397e6cb47 +2024-09-11 09:07:54.15947 2024-09-11 09:07:54.159476 agrero A026169859 R rec ef6069f3-4344-42f4-ba32-3bf61754f046 +2024-09-11 09:07:54.212282 2024-09-11 09:07:54.212287 agrero A026174573 R rec 0835aa0e-962e-4249-bbdb-d99544b38b47 +2024-09-11 09:07:54.267424 2024-09-11 09:07:54.26743 agrero A026408718 R rec 4823e5e3-df88-4f37-9370-15b6d8b0ef97 +2024-09-11 09:07:54.330667 2024-09-11 09:07:54.330673 agrero A026432303 R rec 356e1da8-e1db-4dab-8e3d-e7de9245ba61 +2024-09-11 09:07:54.385426 2024-09-11 09:07:54.385432 agrero A026434702 R rec 5af2bf15-e855-4f72-96d6-95cf638284e3 +2024-09-11 09:07:54.467497 2024-09-11 09:07:54.467502 agrero A026439717 R rec c5468b87-f6e0-492d-ae73-0aec109066cc +2024-09-11 09:07:54.528485 2024-09-11 09:07:54.52849 agrero A026450966 R rec 2071288d-93b6-4a4f-a18b-cd66f5100927 +2024-09-11 09:07:54.593676 2024-09-11 09:07:54.593682 agrero A026459182 R rec 7f5564c3-6d6e-4037-b5ea-95e42953ab03 +2024-09-11 09:07:54.653128 2024-09-11 09:07:54.653134 agrero A026462220 R rec e86f76bd-09c7-4747-a136-a76e1a04070d +2024-09-11 09:07:54.711525 2024-09-11 09:07:54.71153 agrero A026466905 R rec 7920f3f7-0cb3-4163-95f7-ab0e1a16cd1e +2024-09-11 09:07:54.765115 2024-09-11 09:07:54.76512 agrero A026474353 R rec 8dcead69-ba95-4327-938c-1388a65c668b +2024-09-11 09:07:54.823441 2024-09-11 09:07:54.823447 agrero A026534148 R rec e95fdeac-d36a-4207-99ad-c34b329feb4a +2024-09-11 09:07:54.87977 2024-09-11 09:07:54.879776 agrero A026548298 R rec e79d42bc-6477-49e8-970c-c0cc91ff71a4 +2024-09-11 09:07:54.933923 2024-09-11 09:07:54.933928 agrero A026554111 R rec f9740f6b-e34c-426e-9eb0-8f01281c1a8a +2024-09-11 09:07:54.993991 2024-09-11 09:07:54.993996 agrero A026558985 R rec 80d28178-5b07-4ac0-907b-b20ba7b44331 +2024-09-11 09:07:55.057055 2024-09-11 09:07:55.05706 agrero A026586322 R rec 3faf0e34-712e-4650-a452-ec9c0d28bbe5 +2024-09-11 09:07:55.113686 2024-09-11 09:07:55.113691 agrero A026596122 R rec 1552f2c4-76cb-4c2e-a22f-c90aee354001 +2024-09-11 09:07:55.166257 2024-09-11 09:07:55.166262 agrero A026608425 R rec 205bcbf8-9ef7-47ed-ae16-94c8246b8020 +2024-09-11 09:07:55.223501 2024-09-11 09:07:55.223506 agrero A026614309 R rec 8594b99e-78fc-4421-8ff9-8eb012432ebd +2024-09-11 09:07:55.33015 2024-09-11 09:07:55.330155 agrero A026614954 R rec 252033d0-693c-4ef4-839d-b80394ec2e6b +2024-09-11 09:07:55.385456 2024-09-11 09:07:55.385462 agrero A026623687 R rec b1fb5261-3c71-40a3-834b-688505beb018 +2024-09-11 09:07:55.439006 2024-09-11 09:07:55.439012 agrero A026636855 R rec a90dad7c-d6c8-45ff-a4fd-46152e16bb91 +2024-09-11 09:07:55.495727 2024-09-11 09:07:55.495733 agrero A026642855 R rec be823144-475f-4e35-9bd0-5c730fdd04a1 +2024-09-11 09:07:55.552279 2024-09-11 09:07:55.552284 agrero A026652068 R rec 343eece5-aaea-445d-bd4c-9f97217aa39d +2024-09-11 09:07:55.61269 2024-09-11 09:07:55.612696 agrero A026654612 R rec ecad4336-d6f3-45f7-b8dd-6f6020295ce5 +2024-09-11 09:07:55.669675 2024-09-11 09:07:55.66968 agrero A026685590 R rec 9ac94dfc-ba85-48fc-8235-c354e8e338c0 +2024-09-11 09:07:55.729962 2024-09-11 09:07:55.729968 agrero A026722774 R rec 84ccaba9-4dde-43ec-a798-8845ef8c12e2 +2024-09-11 09:07:55.788277 2024-09-11 09:07:55.788285 agrero A026723222 R rec 7b1048e9-40b1-406e-afda-d42f7c8131ed +2024-09-11 09:07:55.842361 2024-09-11 09:07:55.842366 agrero A026724664 R rec c5ed4aa4-6d8a-4b9a-9764-faaf56310375 +2024-09-11 09:07:55.896852 2024-09-11 09:07:55.896858 agrero A026736945 R rec dd173c5a-7c89-4a3f-b047-3be742e94fd9 +2024-09-11 09:07:55.951515 2024-09-11 09:07:55.951523 agrero A026740856 R rec 91a1c301-5c7f-4145-afc9-7726a2680b08 +2024-09-11 09:07:56.00841 2024-09-11 09:07:56.008415 agrero A026741839 R rec b2925efa-c0a5-4532-bcdb-a736c4ca01ba +2024-09-11 09:07:56.06225 2024-09-11 09:07:56.062256 agrero A026748269 R rec 1d5b9d20-68d9-4cfd-9b85-7ad5c9bea3a4 +2024-09-11 09:07:56.111984 2024-09-11 09:07:56.111989 agrero A026774834 R rec 4fa487c6-c3d3-41ad-8266-815d25e120d2 +2024-09-11 09:07:56.166617 2024-09-11 09:07:56.166622 agrero A026783817 R rec 4194dfe5-0a84-49f9-90f7-10ff8a0c2c8d +2024-09-11 09:07:56.223749 2024-09-11 09:07:56.223755 agrero A026785791 R rec 808e05dc-65ca-4f7e-bb8c-fcc5c4eacff9 +2024-09-11 09:07:56.279265 2024-09-11 09:07:56.279271 agrero A026813025 R rec 5c322c98-93d4-4a64-a86a-5ad8bda041f6 +2024-09-11 09:07:56.330778 2024-09-11 09:07:56.330784 agrero A026828697 R rec 15f7a671-893d-4ca1-a52a-001b4617a56e +2024-09-11 09:07:56.387895 2024-09-11 09:07:56.3879 agrero A026835388 R rec c80381f6-3a2f-465f-8167-fd96f09d5787 +2024-09-11 09:07:56.442792 2024-09-11 09:07:56.442798 agrero A026839306 R rec d1594cb4-1f3d-465d-8fa0-1479556ac092 +2024-09-11 09:07:56.499915 2024-09-11 09:07:56.49992 agrero A026846628 R rec 33d9c772-ae60-4d22-a315-d361c84c0d31 +2024-09-11 09:07:56.558139 2024-09-11 09:07:56.558144 agrero A026847441 R rec 7463cee8-3ec4-41e5-9c60-b4b560be5fa4 +2024-09-11 09:07:56.614317 2024-09-11 09:07:56.614323 agrero A026864091 R rec 5ff21264-ce6d-4c75-a40d-cf8ac26f7563 +2024-09-11 09:07:56.668589 2024-09-11 09:07:56.668594 agrero A026894353 R rec d6125c9e-a21f-4173-92f6-4de4c8b56799 +2024-09-11 09:07:56.722649 2024-09-11 09:07:56.722655 agrero A026898077 R rec 2a42d60d-0788-45f6-8fa6-7bc08e361e45 +2024-09-11 09:07:56.778334 2024-09-11 09:07:56.77834 agrero A026907243 R rec 9336266e-74c5-420a-9a4d-0ecdaa55c185 +2024-09-11 09:07:56.833266 2024-09-11 09:07:56.833271 agrero A026919795 R rec f908a701-1c9a-4255-9593-6bcd56a8c87f +2024-09-11 09:07:56.886395 2024-09-11 09:07:56.8864 agrero A026951773 R rec ed9e83e5-305d-4af3-921c-5839d48a711c +2024-09-11 09:07:56.937446 2024-09-11 09:07:56.937451 agrero A026952894 R rec 917a8edf-caae-406d-8fd4-9bff48de3ede +2024-09-11 09:07:56.987842 2024-09-11 09:07:56.987852 agrero A026958334 R rec dbd4929a-82ea-47b7-9417-5b6cdf0a7755 +2024-09-11 09:07:57.046122 2024-09-11 09:07:57.046129 agrero A026964890 R rec 8f68e7fa-1cb4-4fda-9315-75ccca6f1d96 +2024-09-11 09:07:57.131403 2024-09-11 09:07:57.131409 agrero A026978679 R rec 20831778-8811-4c5e-88b1-4222a6116a3c +2024-09-11 09:07:57.190289 2024-09-11 09:07:57.190294 agrero A027062343 R rec a558a2bd-f979-4dfd-905d-db41975ada26 +2024-09-11 09:07:57.258758 2024-09-11 09:07:57.258763 agrero A027068066 R rec e9916d85-25c4-4983-8cbf-cd4acb7fc733 +2024-09-11 09:07:57.31608 2024-09-11 09:07:57.316085 agrero A027089118 R rec 6143095a-3f84-4902-9665-c42723d0f195 +2024-09-11 09:07:57.368724 2024-09-11 09:07:57.368729 agrero A027092266 R rec 4963a435-e601-41b6-8498-5fe565df8a5b +2024-09-11 09:07:57.421454 2024-09-11 09:07:57.421459 agrero A027102482 R rec 4ec8e8a2-6907-4c37-8fa8-d5d6b5fc29ac +2024-09-11 09:07:57.475844 2024-09-11 09:07:57.47585 agrero A027103123 R rec e0d64c4c-3ad1-4903-a3b3-95f4594ff04a +2024-09-11 09:07:57.531223 2024-09-11 09:07:57.531229 agrero A027116952 R rec 5f9c3b93-e74b-435c-960c-0949e777bace +2024-09-11 09:07:57.587892 2024-09-11 09:07:57.587897 agrero A027118711 R rec 6a8cbf46-6a4d-47be-9a32-4dc0c8a9065e +2024-09-11 09:07:57.648729 2024-09-11 09:07:57.648734 agrero A027119572 R rec 455d92c0-62b3-4c31-8821-d1b773484f53 +2024-09-11 09:07:57.709186 2024-09-11 09:07:57.709191 agrero A027138153 R rec 6f87dea6-770b-405f-917a-49b266da4de8 +2024-09-11 09:07:57.765472 2024-09-11 09:07:57.765478 agrero A027139051 R rec 6052a6e1-9d3a-4f58-bf21-d929ddebcf83 +2024-09-11 09:07:57.819518 2024-09-11 09:07:57.819523 agrero A027149145 R rec dfc13fa3-a400-46a8-b398-3a08f967eefe +2024-09-11 09:07:57.87739 2024-09-11 09:07:57.877396 agrero A027149446 R rec 4342bdc7-d912-451c-b9a8-e19405972f4c +2024-09-11 09:07:57.937977 2024-09-11 09:07:57.937982 agrero A027157860 R rec 1b51f8d3-d9b2-48ac-bf9c-9732c3942a3f +2024-09-11 09:07:57.997102 2024-09-11 09:07:57.997109 agrero A027180250 R rec 9bce0eef-2746-419d-8b9f-242b76bcfe28 +2024-09-11 09:07:58.057638 2024-09-11 09:07:58.057645 agrero A027184035 R rec 2901c08f-2a6f-428d-af9c-bc1015c06cc8 +2024-09-11 09:07:58.121514 2024-09-11 09:07:58.12152 agrero A027191227 R rec de579217-5c07-4840-9f0e-6e943465a3a9 +2024-09-11 09:07:58.185532 2024-09-11 09:07:58.185538 agrero A027194665 R rec 9892c46a-042c-4fc0-a823-65e6208fa26f +2024-09-11 09:07:58.243585 2024-09-11 09:07:58.243591 agrero A027201602 R rec 53f5b618-6a09-43d3-b401-b064ba2be648 +2024-09-11 09:07:58.29705 2024-09-11 09:07:58.297056 agrero A027205240 R rec 8ece635d-ca1c-4507-a0e1-53077521c331 +2024-09-11 09:07:58.354486 2024-09-11 09:07:58.354492 agrero A027205480 R rec 1a174e9c-e739-4d98-8ad4-3fbd62e21d90 +2024-09-11 09:07:58.426488 2024-09-11 09:07:58.426494 agrero A027220118 R rec bd595d7b-c840-4000-8302-3dc741eb68ef +2024-09-11 09:07:58.480703 2024-09-11 09:07:58.480709 agrero A027221608 R rec cc77ec67-d5d0-41a4-ba6e-4c55bd0b7391 +2024-09-11 09:07:58.5413 2024-09-11 09:07:58.541305 agrero A027237908 R rec fcbeb89b-6497-43a1-87b9-da2c57807c89 +2024-09-11 09:07:58.597149 2024-09-11 09:07:58.597154 agrero A027289406 R rec 8538f670-ac8e-4c8c-a226-fff74f4c3add +2024-09-11 09:07:58.660855 2024-09-11 09:07:58.660861 agrero A027297912 R rec 18603afd-85de-47f8-8622-1b5c0e401e93 +2024-09-11 09:07:58.720569 2024-09-11 09:07:58.720573 agrero A027302854 R rec 1da649f6-0cb2-4fac-914e-11a4da306e6d +2024-09-11 09:07:58.779482 2024-09-11 09:07:58.779487 agrero A027307709 R rec 7efd5c76-c9fe-4e74-8ad4-27223d0a7d28 +2024-09-11 09:07:58.83695 2024-09-11 09:07:58.836955 agrero A027316896 R rec 19ec994e-3f0e-4079-a676-bf42c79bf59b +2024-09-11 09:07:58.89338 2024-09-11 09:07:58.893386 agrero A027333148 R rec 9d87e7e0-9dc7-4000-88a2-1e7a57c7ccff +2024-09-11 09:07:58.949224 2024-09-11 09:07:58.949229 agrero A027339987 R rec 6b3df772-feaf-4126-bc5a-f621a4aac835 +2024-09-11 09:07:59.006774 2024-09-11 09:07:59.006779 agrero A027342850 R rec 1d80afe6-e6b0-4292-885e-7db5df0f56be +2024-09-11 09:07:59.065472 2024-09-11 09:07:59.065478 agrero A027355955 R rec 3b50f535-20f9-4dc9-9c73-0d6eec3f8d14 +2024-09-11 09:07:59.118228 2024-09-11 09:07:59.118235 agrero A027394831 R rec bc700cec-0eb1-4cd2-a6e1-379bb13d0467 +2024-09-11 09:07:59.172522 2024-09-11 09:07:59.172527 agrero A027401068 R rec 463f5e0b-32ed-4cf2-bec5-0ab1a1a37bbc +2024-09-11 09:07:59.225231 2024-09-11 09:07:59.225236 agrero A027420393 R rec 556bbcbb-2e14-40bb-befd-f21f6f44f29a +2024-09-11 09:07:59.279818 2024-09-11 09:07:59.279824 agrero A027429159 R rec ad11ac7f-5dc0-4ffd-953d-b25dfbe345d8 +2024-09-11 09:07:59.337121 2024-09-11 09:07:59.337127 agrero A027433246 R rec cb7bcdf1-3e63-4020-ab50-e139dabc2724 +2024-09-11 09:07:59.395175 2024-09-11 09:07:59.39518 agrero A027441359 R rec 2807a52d-ed22-48da-b83d-d33e9c79e627 +2024-09-11 09:07:59.458074 2024-09-11 09:07:59.45808 agrero A027443542 R rec e0f33d6f-1843-46f0-9903-19ef60c7c661 +2024-09-11 09:07:59.516075 2024-09-11 09:07:59.51608 agrero A027444942 R rec 6596412c-d655-4c6c-a48b-721bc4c01809 +2024-09-11 09:07:59.579969 2024-09-11 09:07:59.579974 agrero A027445987 R rec cc789834-35cc-4e1f-a571-69ba890132c9 +2024-09-11 09:07:59.636309 2024-09-11 09:07:59.636314 agrero A027448978 R rec 17e00d3b-8d74-4711-9f4a-ac6fe9690009 +2024-09-11 09:07:59.693951 2024-09-11 09:07:59.693957 agrero A027449905 R rec 354d3a49-bfe1-4f68-b862-b14875bdd3c3 +2024-09-11 09:07:59.755413 2024-09-11 09:07:59.755418 agrero A027457648 R rec 4e6d8f99-8461-4d10-bc3c-1dc59bbc7356 +2024-09-11 09:07:59.80825 2024-09-11 09:07:59.808256 agrero A027468424 R rec 00776cf9-176e-40dd-9957-a99d7bc46604 +2024-09-11 09:07:59.863775 2024-09-11 09:07:59.86378 agrero A027470672 R rec 0b742756-912f-4957-aa79-d20cdf195595 +2024-09-11 09:07:59.916256 2024-09-11 09:07:59.916262 agrero A027477458 R rec bd8005d0-08e2-4ba9-8c95-72815d3c5b9d +2024-09-11 09:07:59.970594 2024-09-11 09:07:59.970599 agrero A027477867 R rec 8f2a3df6-fb30-40ab-b69b-513d540acff2 +2024-09-11 09:08:00.025931 2024-09-11 09:08:00.025937 agrero A027483344 R rec 1c2240fc-9555-40ce-af1a-a85a26b2aac7 +2024-09-11 09:08:00.083352 2024-09-11 09:08:00.083357 agrero A027488596 R rec e23697e7-7e4c-4954-a7e6-643d589ffd15 +2024-09-11 09:08:00.141124 2024-09-11 09:08:00.14113 agrero A027490804 R rec 0282eae0-e677-4cb0-b49c-d60eb518e550 +2024-09-11 09:08:00.200692 2024-09-11 09:08:00.200696 agrero A027498782 R rec 04baa8aa-1cac-4783-85be-b64bfbd0f285 +2024-09-11 09:08:00.254925 2024-09-11 09:08:00.25493 agrero A027507344 R rec 5c556fe5-0832-4675-bb06-a90c9442cf6d +2024-09-11 09:08:00.305262 2024-09-11 09:08:00.305268 agrero A027508686 R rec 0c177c68-164e-4d04-91ff-08e8c4b7d2e3 +2024-09-11 09:08:00.362675 2024-09-11 09:08:00.362681 agrero A027518436 R rec 7678b0ff-7a30-4cbc-8efd-6041a8dad106 +2024-09-11 09:08:00.426255 2024-09-11 09:08:00.426261 agrero A027523029 R rec 0ca066d8-4f76-444c-a995-39e9cf5b75b4 +2024-09-11 09:08:00.493953 2024-09-11 09:08:00.493958 agrero A027523482 R rec d2202db9-5a73-4b71-b26f-6849d4a83fd1 +2024-09-11 09:08:00.547688 2024-09-11 09:08:00.547693 agrero A027543659 R rec 3da2b7eb-3eb0-4101-9eef-0e2e962abd19 +2024-09-11 09:08:00.604492 2024-09-11 09:08:00.604497 agrero A027544307 R rec f5f81cc8-188b-4206-af60-6c5a3def3a4e +2024-09-11 09:08:00.662442 2024-09-11 09:08:00.662447 agrero A027545859 R rec c48e8ee9-9286-4e20-ad5a-fbc1f8fa3c87 +2024-09-11 09:08:00.736547 2024-09-11 09:08:00.736552 agrero A027565229 R rec 938229a4-673c-4610-ad89-bc0d9c6b7692 +2024-09-11 09:08:00.790048 2024-09-11 09:08:00.790053 agrero A027568451 R rec 2fade8a0-b7f7-4ffa-b459-ffd6c37b1d1f +2024-09-11 09:08:00.844971 2024-09-11 09:08:00.844976 agrero A027582518 R rec ce7d90c6-092c-4080-8538-f2571625576f +2024-09-11 09:08:00.908254 2024-09-11 09:08:00.90826 agrero A027587471 R rec a4bb3c6a-d5cc-4869-9732-6d4de02e7a0e +2024-09-11 09:08:00.961067 2024-09-11 09:08:00.961072 agrero A027588056 R rec 94268268-9e2c-45fb-81e3-864b6642957d +2024-09-11 09:08:01.019884 2024-09-11 09:08:01.019889 agrero A027604812 R rec d2db05f7-d3a4-478d-8e8a-99d7162e4baa +2024-09-11 09:08:01.08196 2024-09-11 09:08:01.081965 agrero A027608462 R rec 83dd1129-8faa-4809-a588-8c735e8838cd +2024-09-11 09:08:01.139719 2024-09-11 09:08:01.139724 agrero A027643343 R rec 83a47bf5-d3f4-4e95-aeff-c02923c77cf4 +2024-09-11 09:08:01.193906 2024-09-11 09:08:01.193911 agrero A027644407 R rec 3fa4c52a-ea7e-47b7-b8e0-0e37ec5abb9f +2024-09-11 09:08:01.255648 2024-09-11 09:08:01.255654 agrero A027649761 R rec 92b6e97f-1a60-4a63-aa31-74a3936c60c1 +2024-09-11 09:08:01.307202 2024-09-11 09:08:01.307208 agrero A027652944 R rec 31b55a72-3c00-428d-8dbe-933d4e2be81b +2024-09-11 09:08:01.364009 2024-09-11 09:08:01.364015 agrero A027653000 R rec f305afd8-e4b2-4c62-8b0f-96a9392c0795 +2024-09-11 09:08:01.42458 2024-09-11 09:08:01.424585 agrero A027655212 R rec 51e9475c-c5b2-443b-80e0-1265fcaef5b1 +2024-09-11 09:08:01.480278 2024-09-11 09:08:01.48031 agrero A027661275 R rec 5fda4dbd-0c73-4bc4-a67c-07cfb858b589 +2024-09-11 09:08:01.534129 2024-09-11 09:08:01.534134 agrero A027664950 R rec ef90c48d-46d9-4273-ac17-150e08447d5d +2024-09-11 09:08:01.592967 2024-09-11 09:08:01.592973 agrero A027667116 R rec 9990b915-4a5a-4a6e-b915-31f773c9704b +2024-09-11 09:08:01.651546 2024-09-11 09:08:01.651551 agrero A027688556 R rec 0413cdf8-7e2c-4e08-82ca-9e7b8e8a02c4 +2024-09-11 09:08:01.708438 2024-09-11 09:08:01.708444 agrero A027698830 R rec 4f6e4ebb-027c-4dd9-afc5-6d1f934352fd +2024-09-11 09:08:01.772584 2024-09-11 09:08:01.772588 agrero A027716766 R rec fa8f949e-6d66-4800-9d25-085ae701e489 +2024-09-11 09:08:01.861158 2024-09-11 09:08:01.861164 agrero A027736928 R rec 8d7b8f4a-ca72-49b4-b4b0-05e2b3a00890 +2024-09-11 09:08:01.91357 2024-09-11 09:08:01.913576 agrero A027737227 R rec ff9483b7-e3b5-4735-a63d-51f321027c41 +2024-09-11 09:08:01.968809 2024-09-11 09:08:01.968815 agrero A027737968 R rec 3b376345-9229-4881-867c-13988a218756 +2024-09-11 09:08:02.022801 2024-09-11 09:08:02.022806 agrero A027745860 R rec 5af53c55-e4ce-4dcc-8ea5-46d89ed9e92f +2024-09-11 09:08:02.087449 2024-09-11 09:08:02.087454 agrero A027747343 R rec 17b9178f-fc15-4a56-80ae-c9dd8b520f4e +2024-09-11 09:08:02.146865 2024-09-11 09:08:02.146871 agrero A027763919 R rec 7e9bef85-9544-471d-b202-a3a6d9c416c2 +2024-09-11 09:08:02.198727 2024-09-11 09:08:02.198732 agrero A027766736 R rec ef737b05-d96a-4e32-b79b-b19ec1a62eff +2024-09-11 09:08:02.252472 2024-09-11 09:08:02.252478 agrero A027807323 R rec 9795bf7b-4efe-43df-91fc-fdc9f1566d65 +2024-09-11 09:08:02.305151 2024-09-11 09:08:02.305157 agrero A027811966 R rec a18f5231-cf25-47b7-b5a3-055aaf572b60 +2024-09-11 09:08:02.364089 2024-09-11 09:08:02.364095 agrero A027817940 R rec e1468618-3afb-4264-90b4-21908202e91c +2024-09-11 09:08:02.414607 2024-09-11 09:08:02.414613 agrero A027841998 R rec f9ec929f-780b-4ae5-b71d-436b1990b878 +2024-09-11 09:08:02.473854 2024-09-11 09:08:02.473861 agrero A028081955 R rec 7f446e75-aa8f-4be9-b464-a51cae98f5c3 +2024-09-11 09:08:02.538424 2024-09-11 09:08:02.538429 agrero A028167226 R rec a023c26e-104e-4d7e-8a4e-274377c64ac6 +2024-09-11 09:08:02.591138 2024-09-11 09:08:02.591144 agrero A028177834 R rec 6df74844-20ce-4c1d-9900-f16b87823920 +2024-09-11 09:08:02.647376 2024-09-11 09:08:02.647381 agrero A028331435 R rec ee362d32-949a-4d8c-a18b-c5289695a1fd +2024-09-11 09:08:02.702093 2024-09-11 09:08:02.702097 agrero A028347593 R rec a32499a3-4e6f-4b28-a1b0-73d95871111f +2024-09-11 09:08:02.758825 2024-09-11 09:08:02.758831 agrero A028355646 R rec 44af218e-41b4-4f4a-8daf-3e0922d90741 +2024-09-11 09:08:02.819986 2024-09-11 09:08:02.819992 agrero A028357568 R rec 9dde3ee4-71fc-47be-a526-7afd325e5ca0 +2024-09-11 09:08:02.871551 2024-09-11 09:08:02.871557 agrero A028447819 R rec 835f2287-f142-45cd-a8f7-137dce8c74b5 +2024-09-11 09:08:02.928281 2024-09-11 09:08:02.928286 agrero A028520087 R rec 5c86214e-d277-4d20-8cb3-84669478f21b +2024-09-11 09:08:02.981158 2024-09-11 09:08:02.981163 agrero A028529691 R rec e631330e-926e-42b0-88d5-d3f895e3b44b +2024-09-11 09:08:03.043808 2024-09-11 09:08:03.043812 agrero A028751062 R rec 6f71580b-69ba-4590-b87a-608c499c187f +2024-09-11 09:08:03.106964 2024-09-11 09:08:03.106969 agrero A028868344 R rec c0835049-bae8-4089-a7e5-a3cee9b44157 +2024-09-11 09:08:03.181215 2024-09-11 09:08:03.18122 agrero A028868962 R rec 2540b0d0-51ea-4b37-80c1-08baab8687af +2024-09-11 09:08:03.243837 2024-09-11 09:08:03.243842 agrero A028986344 R rec f2b7de07-9ee8-420d-a9f0-855cd57fc35f +2024-09-11 09:08:03.309386 2024-09-11 09:08:03.309392 agrero A028989262 R rec 9ae03b58-4215-4f53-86c7-444223b6c067 +2024-09-11 09:08:03.365848 2024-09-11 09:08:03.365854 agrero A029002736 R rec 583dcef6-75f5-49a8-b3b4-acdfbeb3fc17 +2024-09-11 09:08:03.423152 2024-09-11 09:08:03.423157 agrero A029004750 R rec 5e68e7bb-a239-4ac4-9530-984bd92c7cb2 diff --git a/data/aidref.json b/data/aidref.json index 561916ac..33b84475 100644 --- a/data/aidref.json +++ b/data/aidref.json @@ -7,7 +7,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/026361477", "identifiedBy": [ { "type": "uri", @@ -40,7 +39,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/026366231", "identifiedBy": [ { "type": "uri", @@ -75,7 +73,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/026393190", "identifiedBy": [ { "type": "uri", @@ -111,7 +108,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/026398257", "identifiedBy": [ { "type": "uri", @@ -134,7 +130,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/026403161", "identifiedBy": [ { "type": "uri", @@ -165,7 +160,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/026408805", "identifiedBy": [ { "type": "uri", @@ -206,7 +200,6 @@ "mul" ], "conference": false, - "identifier": "http://www.idref.fr/026418460", "identifiedBy": [ { "type": "uri", @@ -239,7 +232,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/026428636", "identifiedBy": [ { "type": "uri", @@ -262,7 +254,6 @@ "ita" ], "conference": false, - "identifier": "http://www.idref.fr/026430746", "identifiedBy": [ { "type": "uri", @@ -295,7 +286,6 @@ "spa" ], "conference": false, - "identifier": "http://www.idref.fr/026446278", "identifiedBy": [ { "type": "uri", @@ -323,7 +313,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/026450038", "identifiedBy": [ { "type": "uri", @@ -365,7 +354,6 @@ "mul" ], "conference": false, - "identifier": "http://www.idref.fr/026452057", "identifiedBy": [ { "type": "uri", @@ -403,7 +391,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/026471396", "identifiedBy": [ { "type": "uri", @@ -433,7 +420,6 @@ "ita" ], "conference": false, - "identifier": "http://www.idref.fr/026483157", "identifiedBy": [ { "type": "uri", @@ -469,7 +455,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/026488582", "identifiedBy": [ { "type": "uri", @@ -501,7 +486,6 @@ "ita" ], "conference": false, - "identifier": "http://www.idref.fr/026501228", "identifiedBy": [ { "type": "uri", @@ -531,7 +515,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/026524759", "identifiedBy": [ { "type": "uri", @@ -565,7 +548,6 @@ "mul" ], "conference": false, - "identifier": "http://www.idref.fr/026526980", "identifiedBy": [ { "type": "uri", @@ -596,7 +578,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/026528290", "identifiedBy": [ { "type": "uri", @@ -632,7 +613,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/026529890", "identifiedBy": [ { "type": "uri", @@ -663,7 +643,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/026530538", "identifiedBy": [ { "type": "uri", @@ -689,7 +668,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/026536625", "identifiedBy": [ { "type": "uri", @@ -718,7 +696,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/02654606X", "identifiedBy": [ { "type": "uri", @@ -752,7 +729,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/02654637X", "identifiedBy": [ { "type": "uri", @@ -786,7 +762,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/026561328", "identifiedBy": [ { "type": "uri", @@ -818,7 +793,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/026562170", "identifiedBy": [ { "type": "uri", @@ -849,7 +823,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/02656453X", "identifiedBy": [ { "type": "uri", @@ -882,7 +855,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/026567695", "identifiedBy": [ { "type": "uri", @@ -902,7 +874,6 @@ "mul" ], "conference": false, - "identifier": "http://www.idref.fr/026583135", "identifiedBy": [ { "type": "uri", @@ -938,7 +909,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/02658672X", "identifiedBy": [ { "type": "uri", @@ -961,7 +931,6 @@ "mul" ], "conference": false, - "identifier": "http://www.idref.fr/026614421", "identifiedBy": [ { "type": "uri", @@ -988,7 +957,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/026626373", "identifiedBy": [ { "type": "uri", @@ -1008,7 +976,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/026631342", "identifiedBy": [ { "type": "uri", @@ -1037,7 +1004,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/026646862", "identifiedBy": [ { "type": "uri", @@ -1075,7 +1041,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/02672698X", "identifiedBy": [ { "type": "uri", @@ -1098,7 +1063,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/02675181X", "identifiedBy": [ { "type": "uri", @@ -1128,7 +1092,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/026847655", "identifiedBy": [ { "type": "uri", @@ -1153,7 +1116,6 @@ "fre" ], "qualifier": "\u00e9conomiste", - "identifier": "http://www.idref.fr/026868482", "identifiedBy": [ { "type": "uri", @@ -1181,7 +1143,6 @@ "fre" ], "qualifier": "\u00e9diteur", - "identifier": "http://www.idref.fr/026895056", "identifiedBy": [ { "type": "uri", @@ -1210,7 +1171,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/026916134", "identifiedBy": [ { "type": "uri", @@ -1234,7 +1194,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/026924498", "identifiedBy": [ { "type": "uri", @@ -1262,7 +1221,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/026959852", "identifiedBy": [ { "type": "uri", @@ -1286,7 +1244,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/026994801", "identifiedBy": [ { "type": "uri", @@ -1319,7 +1276,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/026995050", "identifiedBy": [ { "type": "uri", @@ -1343,7 +1299,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/02700273X", "identifiedBy": [ { "type": "uri", @@ -1364,7 +1319,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/027006344", "identifiedBy": [ { "type": "uri", @@ -1402,7 +1356,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/027019837", "identifiedBy": [ { "type": "uri", @@ -1435,7 +1388,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/02703819X", "identifiedBy": [ { "type": "uri", @@ -1475,7 +1427,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/027135985", "identifiedBy": [ { "type": "uri", @@ -1500,7 +1451,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/027215008", "identifiedBy": [ { "type": "uri", @@ -1518,7 +1468,6 @@ "pid": "027486028", "type": "bf:Organisation", "conference": false, - "identifier": "http://www.idref.fr/027486028", "identifiedBy": [ { "type": "uri", @@ -1562,7 +1511,6 @@ "mul" ], "conference": false, - "identifier": "http://www.idref.fr/027632288", "identifiedBy": [ { "type": "uri", @@ -1591,7 +1539,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/027767744", "identifiedBy": [ { "type": "uri", @@ -1622,7 +1569,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/027896781", "identifiedBy": [ { "type": "uri", @@ -1651,7 +1597,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/027912760", "identifiedBy": [ { "type": "uri", @@ -1680,7 +1625,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/02796096X", "identifiedBy": [ { "type": "uri", @@ -1703,7 +1647,6 @@ "mul" ], "conference": false, - "identifier": "http://www.idref.fr/027969428", "identifiedBy": [ { "type": "uri", @@ -1730,7 +1673,6 @@ "mul" ], "conference": true, - "identifier": "http://www.idref.fr/028071670", "identifiedBy": [ { "type": "uri", @@ -1757,7 +1699,6 @@ "ger" ], "conference": false, - "identifier": "http://www.idref.fr/028082788", "identifiedBy": [ { "type": "uri", @@ -1781,7 +1722,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/02809364X", "identifiedBy": [ { "type": "uri", @@ -1802,7 +1742,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/028166027", "identifiedBy": [ { "type": "uri", @@ -1840,7 +1779,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/028259866", "identifiedBy": [ { "type": "uri", @@ -1866,7 +1804,6 @@ "pid": "028302435", "type": "bf:Organisation", "conference": false, - "identifier": "http://www.idref.fr/028302435", "identifiedBy": [ { "type": "uri", @@ -1885,7 +1822,6 @@ "spa" ], "conference": false, - "identifier": "http://www.idref.fr/02832787X", "identifiedBy": [ { "type": "uri", @@ -1921,7 +1857,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/028330943", "identifiedBy": [ { "type": "uri", @@ -1949,7 +1884,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/028354753", "identifiedBy": [ { "type": "uri", @@ -1968,7 +1902,6 @@ "language": [ "dut" ], - "identifier": "http://www.idref.fr/028357531", "identifiedBy": [ { "type": "uri", @@ -1999,7 +1932,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/028416171", "identifiedBy": [ { "type": "uri", @@ -2032,7 +1964,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/028419790", "identifiedBy": [ { "type": "uri", @@ -2055,7 +1986,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/028442717", "identifiedBy": [ { "type": "uri", @@ -2079,7 +2009,6 @@ "ger" ], "conference": false, - "identifier": "http://www.idref.fr/028470141", "identifiedBy": [ { "type": "uri", @@ -2110,7 +2039,6 @@ "ger" ], "qualifier": "m\u00e9di\u00e9viste", - "identifier": "http://www.idref.fr/028495764", "identifiedBy": [ { "type": "uri", @@ -2133,7 +2061,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/028500490", "identifiedBy": [ { "type": "uri", @@ -2158,7 +2085,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/028503112", "identifiedBy": [ { "type": "uri", @@ -2181,7 +2107,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/028522206", "identifiedBy": [ { "type": "uri", @@ -2208,7 +2133,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/028523555", "identifiedBy": [ { "type": "uri", @@ -2228,7 +2152,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/028529677", "identifiedBy": [ { "type": "uri", @@ -2251,7 +2174,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/028541634", "identifiedBy": [ { "type": "uri", @@ -2271,7 +2193,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/028542770", "identifiedBy": [ { "type": "uri", @@ -2292,7 +2213,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/028558200", "identifiedBy": [ { "type": "uri", @@ -2328,7 +2248,6 @@ "fre" ], "qualifier": "cardiologue", - "identifier": "http://www.idref.fr/028615719", "identifiedBy": [ { "type": "uri", @@ -2348,7 +2267,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/028666925", "identifiedBy": [ { "type": "uri", @@ -2379,7 +2297,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/028681673", "identifiedBy": [ { "type": "uri", @@ -2398,7 +2315,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/028735498", "identifiedBy": [ { "type": "uri", @@ -2422,7 +2338,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/028766857", "identifiedBy": [ { "type": "uri", @@ -2446,7 +2361,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/028882199", "identifiedBy": [ { "type": "uri", @@ -2476,7 +2390,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/028902661", "identifiedBy": [ { "type": "uri", @@ -2496,7 +2409,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/02893010X", "identifiedBy": [ { "type": "uri", @@ -2536,7 +2448,6 @@ "hun" ], "conference": false, - "identifier": "http://www.idref.fr/02903096X", "identifiedBy": [ { "type": "uri", @@ -2568,7 +2479,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/02907309X", "identifiedBy": [ { "type": "uri", @@ -2591,7 +2501,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/029077087", "identifiedBy": [ { "type": "uri", @@ -2622,7 +2531,6 @@ "mul" ], "conference": false, - "identifier": "http://www.idref.fr/029195640", "identifiedBy": [ { "type": "uri", @@ -2651,7 +2559,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/029214084", "identifiedBy": [ { "type": "uri", @@ -2671,7 +2578,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/029218977", "identifiedBy": [ { "type": "uri", @@ -2694,7 +2600,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/029470293", "identifiedBy": [ { "type": "uri", @@ -2723,7 +2628,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/029580293", "identifiedBy": [ { "type": "uri", @@ -2756,7 +2660,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/029589681", "identifiedBy": [ { "type": "uri", @@ -2783,7 +2686,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/029598982", "identifiedBy": [ { "type": "uri", @@ -2812,7 +2714,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/029652138", "identifiedBy": [ { "type": "uri", @@ -2844,7 +2745,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/029688019", "identifiedBy": [ { "type": "uri", @@ -2868,7 +2768,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/029698510", "identifiedBy": [ { "type": "uri", @@ -2899,7 +2798,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/029733944", "identifiedBy": [ { "type": "uri", @@ -2923,7 +2821,6 @@ "language": [ "srp" ], - "identifier": "http://www.idref.fr/029761867", "identifiedBy": [ { "type": "uri", @@ -2953,7 +2850,6 @@ "spa" ], "conference": false, - "identifier": "http://www.idref.fr/029767849", "identifiedBy": [ { "type": "uri", @@ -2980,7 +2876,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/02982480X", "identifiedBy": [ { "type": "uri", @@ -3004,7 +2899,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/029869587", "identifiedBy": [ { "type": "uri", @@ -3037,7 +2931,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/029872235", "identifiedBy": [ { "type": "uri", @@ -3060,7 +2953,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/029924480", "identifiedBy": [ { "type": "uri", @@ -3094,7 +2986,6 @@ "fre" ], "qualifier": "conservateur des biblioth\u00e8ques", - "identifier": "http://www.idref.fr/029986761", "identifiedBy": [ { "type": "uri", @@ -3122,7 +3013,6 @@ "ger" ], "conference": true, - "identifier": "http://www.idref.fr/029994861", "identifiedBy": [ { "type": "uri", @@ -3147,7 +3037,6 @@ "ger" ], "conference": false, - "identifier": "http://www.idref.fr/030045614", "identifiedBy": [ { "type": "uri", @@ -3168,7 +3057,6 @@ "pid": "030086329", "type": "bf:Organisation", "conference": false, - "identifier": "http://www.idref.fr/030086329", "identifiedBy": [ { "type": "uri", @@ -3188,7 +3076,6 @@ "mul" ], "conference": false, - "identifier": "http://www.idref.fr/030097886", "identifiedBy": [ { "type": "uri", @@ -3216,7 +3103,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/030132711", "identifiedBy": [ { "type": "uri", @@ -3238,7 +3124,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/03013739X", "identifiedBy": [ { "type": "uri", @@ -3262,7 +3147,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/030187400", "identifiedBy": [ { "type": "uri", @@ -3297,7 +3181,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/030198011", "identifiedBy": [ { "type": "uri", @@ -3325,7 +3208,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/030223415", "identifiedBy": [ { "type": "uri", @@ -3354,7 +3236,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/030254515", "identifiedBy": [ { "type": "uri", @@ -3391,7 +3272,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/03025843X", "identifiedBy": [ { "type": "uri", @@ -3414,7 +3294,6 @@ "por" ], "conference": false, - "identifier": "http://www.idref.fr/030281342", "identifiedBy": [ { "type": "uri", @@ -3447,7 +3326,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/030322995", "identifiedBy": [ { "type": "uri", @@ -3491,7 +3369,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/030327687", "identifiedBy": [ { "type": "uri", @@ -3514,7 +3391,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/030343429", "identifiedBy": [ { "type": "uri", @@ -3533,7 +3409,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/030415357", "identifiedBy": [ { "type": "uri", @@ -3564,7 +3439,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/030459249", "identifiedBy": [ { "type": "uri", @@ -3583,7 +3457,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/030486882", "identifiedBy": [ { "type": "uri", @@ -3609,7 +3482,6 @@ "ita" ], "conference": false, - "identifier": "http://www.idref.fr/030490855", "identifiedBy": [ { "type": "uri", @@ -3638,7 +3510,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/030542650", "identifiedBy": [ { "type": "uri", @@ -3662,7 +3533,6 @@ "fre" ], "conference": true, - "identifier": "http://www.idref.fr/030557585", "identifiedBy": [ { "type": "uri", @@ -3680,7 +3550,6 @@ "md5": "e5d8122a710d864242d7a83098fb58a3", "pid": "030575230", "type": "bf:Person", - "identifier": "http://www.idref.fr/030575230", "identifiedBy": [ { "type": "uri", @@ -3703,7 +3572,6 @@ "nor" ], "qualifier": "romancier", - "identifier": "http://www.idref.fr/030633176", "identifiedBy": [ { "type": "uri", @@ -3727,7 +3595,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/030713234", "identifiedBy": [ { "type": "uri", @@ -3757,7 +3624,6 @@ "vie" ], "conference": false, - "identifier": "http://www.idref.fr/03074198X", "identifiedBy": [ { "type": "uri", @@ -3778,7 +3644,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/030745551", "identifiedBy": [ { "type": "uri", @@ -3804,7 +3669,6 @@ "swe" ], "conference": false, - "identifier": "http://www.idref.fr/030782465", "identifiedBy": [ { "type": "uri", @@ -3832,7 +3696,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/030802997", "identifiedBy": [ { "type": "uri", @@ -3862,7 +3725,6 @@ "fre" ], "conference": true, - "identifier": "http://www.idref.fr/030818095", "identifiedBy": [ { "type": "uri", @@ -3884,7 +3746,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/030835828", "identifiedBy": [ { "type": "uri", @@ -3912,7 +3773,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/030851025", "identifiedBy": [ { "type": "uri", @@ -3940,7 +3800,6 @@ "spa" ], "conference": false, - "identifier": "http://www.idref.fr/030875277", "identifiedBy": [ { "type": "uri", @@ -3960,7 +3819,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/03089719X", "identifiedBy": [ { "type": "uri", @@ -3985,7 +3843,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/030907667", "identifiedBy": [ { "type": "uri", @@ -4009,7 +3866,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/030913632", "identifiedBy": [ { "type": "uri", @@ -4032,7 +3888,6 @@ "ita" ], "conference": false, - "identifier": "http://www.idref.fr/031015808", "identifiedBy": [ { "type": "uri", @@ -4068,7 +3923,6 @@ "ger" ], "conference": false, - "identifier": "http://www.idref.fr/031060102", "identifiedBy": [ { "type": "uri", @@ -4094,7 +3948,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/031064442", "identifiedBy": [ { "type": "uri", @@ -4126,7 +3979,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/031133231", "identifiedBy": [ { "type": "uri", @@ -4165,7 +4017,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/031162568", "identifiedBy": [ { "type": "uri", @@ -4191,7 +4042,6 @@ "ita" ], "conference": false, - "identifier": "http://www.idref.fr/031226396", "identifiedBy": [ { "type": "uri", @@ -4220,7 +4070,6 @@ "fre" ], "qualifier": "juriste", - "identifier": "http://www.idref.fr/031344712", "identifiedBy": [ { "type": "uri", @@ -4243,7 +4092,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/031382584", "identifiedBy": [ { "type": "uri", @@ -4268,7 +4116,6 @@ "ger" ], "conference": false, - "identifier": "http://www.idref.fr/031416349", "identifiedBy": [ { "type": "uri", @@ -4291,7 +4138,6 @@ "vie", "eng" ], - "identifier": "http://www.idref.fr/031419763", "identifiedBy": [ { "type": "uri", @@ -4323,7 +4169,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/031461034", "identifiedBy": [ { "type": "uri", @@ -4345,7 +4190,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/031598285", "identifiedBy": [ { "type": "uri", @@ -4373,7 +4217,6 @@ "lat" ], "qualifier": "m\u00e9decin", - "identifier": "http://www.idref.fr/031639704", "identifiedBy": [ { "type": "uri", @@ -4399,7 +4242,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/03165746X", "identifiedBy": [ { "type": "uri", @@ -4418,7 +4260,6 @@ "language": [ "por" ], - "identifier": "http://www.idref.fr/031718752", "identifiedBy": [ { "type": "uri", @@ -4452,7 +4293,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/03172406X", "identifiedBy": [ { "type": "uri", @@ -4483,7 +4323,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/03175709X", "identifiedBy": [ { "type": "uri", @@ -4506,7 +4345,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/03180862X", "identifiedBy": [ { "type": "uri", @@ -4528,7 +4366,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/031854575", "identifiedBy": [ { "type": "uri", @@ -4551,7 +4388,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/031859259", "identifiedBy": [ { "type": "uri", @@ -4579,7 +4415,6 @@ "pid": "031867359", "type": "bf:Organisation", "conference": false, - "identifier": "http://www.idref.fr/031867359", "identifiedBy": [ { "type": "uri", @@ -4600,7 +4435,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/031876633", "identifiedBy": [ { "type": "uri", @@ -4625,7 +4459,6 @@ "fre" ], "qualifier": "interpr\u00e8te", - "identifier": "http://www.idref.fr/031962963", "identifiedBy": [ { "type": "uri", @@ -4648,7 +4481,6 @@ "language": [ "fin" ], - "identifier": "http://www.idref.fr/032004184", "identifiedBy": [ { "type": "uri", @@ -4672,7 +4504,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/032063830", "identifiedBy": [ { "type": "uri", @@ -4709,7 +4540,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/032075049", "identifiedBy": [ { "type": "uri", @@ -4732,7 +4562,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/032099886", "identifiedBy": [ { "type": "uri", @@ -4754,7 +4583,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/032207107", "identifiedBy": [ { "type": "uri", @@ -4784,7 +4612,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/03225413X", "identifiedBy": [ { "type": "uri", @@ -4808,7 +4635,6 @@ "mul" ], "conference": false, - "identifier": "http://www.idref.fr/032316704", "identifiedBy": [ { "type": "uri", @@ -4832,7 +4658,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/032353618", "identifiedBy": [ { "type": "uri", @@ -4862,7 +4687,6 @@ "fre" ], "conference": true, - "identifier": "http://www.idref.fr/032395116", "identifiedBy": [ { "type": "uri", @@ -4883,7 +4707,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/032397402", "identifiedBy": [ { "type": "uri", @@ -4905,7 +4728,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/032401248", "identifiedBy": [ { "type": "uri", @@ -4928,7 +4750,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/032477449", "identifiedBy": [ { "type": "uri", @@ -4956,7 +4777,6 @@ "mul" ], "conference": false, - "identifier": "http://www.idref.fr/032498179", "identifiedBy": [ { "type": "uri", @@ -4986,7 +4806,6 @@ "mul" ], "conference": true, - "identifier": "http://www.idref.fr/03259626X", "identifiedBy": [ { "type": "uri", @@ -5016,7 +4835,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/032605641", "identifiedBy": [ { "type": "uri", @@ -5043,7 +4861,6 @@ "ger" ], "qualifier": "entomologiste", - "identifier": "http://www.idref.fr/032613237", "identifiedBy": [ { "type": "uri", @@ -5067,7 +4884,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/032638116", "identifiedBy": [ { "type": "uri", @@ -5089,7 +4905,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/032649789", "identifiedBy": [ { "type": "uri", @@ -5120,7 +4935,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/032679629", "identifiedBy": [ { "type": "uri", @@ -5143,7 +4957,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/032706391", "identifiedBy": [ { "type": "uri", @@ -5167,7 +4980,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/032722567", "identifiedBy": [ { "type": "uri", @@ -5190,7 +5002,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/032801009", "identifiedBy": [ { "type": "uri", @@ -5214,7 +5025,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/032807589", "identifiedBy": [ { "type": "uri", @@ -5240,7 +5050,6 @@ "fre" ], "qualifier": "urologue", - "identifier": "http://www.idref.fr/032842694", "identifiedBy": [ { "type": "uri", @@ -5262,7 +5071,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/032846908", "identifiedBy": [ { "type": "uri", @@ -5295,7 +5103,6 @@ "nor", "eng" ], - "identifier": "http://www.idref.fr/032975856", "identifiedBy": [ { "type": "uri", @@ -5324,7 +5131,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/033004633", "identifiedBy": [ { "type": "uri", @@ -5352,7 +5158,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/033033269", "identifiedBy": [ { "type": "uri", @@ -5376,7 +5181,6 @@ "fre" ], "conference": true, - "identifier": "http://www.idref.fr/033070245", "identifiedBy": [ { "type": "uri", @@ -5398,7 +5202,6 @@ "ita" ], "conference": false, - "identifier": "http://www.idref.fr/033079595", "identifiedBy": [ { "type": "uri", @@ -5418,7 +5221,6 @@ "language": [ "dut" ], - "identifier": "http://www.idref.fr/033151571", "identifiedBy": [ { "type": "uri", @@ -5441,7 +5243,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/03321994X", "identifiedBy": [ { "type": "uri", @@ -5464,7 +5265,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/033239568", "identifiedBy": [ { "type": "uri", @@ -5483,7 +5283,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/033386242", "identifiedBy": [ { "type": "uri", @@ -5517,7 +5316,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/033392757", "identifiedBy": [ { "type": "uri", @@ -5545,7 +5343,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/033454175", "identifiedBy": [ { "type": "uri", @@ -5568,7 +5365,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/033478686", "identifiedBy": [ { "type": "uri", @@ -5591,7 +5387,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/033596344", "identifiedBy": [ { "type": "uri", @@ -5615,7 +5410,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/033614717", "identifiedBy": [ { "type": "uri", @@ -5662,7 +5456,6 @@ "mul" ], "conference": true, - "identifier": "http://www.idref.fr/033846987", "identifiedBy": [ { "type": "uri", @@ -5685,7 +5478,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/033864357", "identifiedBy": [ { "type": "uri", @@ -5708,7 +5500,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/03386540X", "identifiedBy": [ { "type": "uri", @@ -5736,7 +5527,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/033883262", "identifiedBy": [ { "type": "uri", @@ -5759,7 +5549,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/033900795", "identifiedBy": [ { "type": "uri", @@ -5782,7 +5571,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/03391737X", "identifiedBy": [ { "type": "uri", @@ -5813,7 +5601,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/033922055", "identifiedBy": [ { "type": "uri", @@ -5835,7 +5622,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/033931941", "identifiedBy": [ { "type": "uri", @@ -5857,7 +5643,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/033938989", "identifiedBy": [ { "type": "uri", @@ -5881,7 +5666,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/033976171", "identifiedBy": [ { "type": "uri", @@ -5910,7 +5694,6 @@ "pro" ], "conference": false, - "identifier": "http://www.idref.fr/034035370", "identifiedBy": [ { "type": "uri", @@ -5942,7 +5725,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/034035818", "identifiedBy": [ { "type": "uri", @@ -5966,7 +5748,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/034075763", "identifiedBy": [ { "type": "uri", @@ -5988,7 +5769,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/034085289", "identifiedBy": [ { "type": "uri", @@ -6012,7 +5792,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/034112774", "identifiedBy": [ { "type": "uri", @@ -6036,7 +5815,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/034263802", "identifiedBy": [ { "type": "uri", @@ -6072,7 +5850,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/034287728", "identifiedBy": [ { "type": "uri", @@ -6108,7 +5885,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/034310770", "identifiedBy": [ { "type": "uri", @@ -6132,7 +5908,6 @@ "tur" ], "conference": false, - "identifier": "http://www.idref.fr/034314873", "identifiedBy": [ { "type": "uri", @@ -6160,7 +5935,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/03433999X", "identifiedBy": [ { "type": "uri", @@ -6189,7 +5963,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/034343237", "identifiedBy": [ { "type": "uri", @@ -6215,7 +5988,6 @@ "mul" ], "conference": false, - "identifier": "http://www.idref.fr/034358218", "identifiedBy": [ { "type": "uri", @@ -6243,7 +6015,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/034388397", "identifiedBy": [ { "type": "uri", @@ -6272,7 +6043,6 @@ "dut", "eng" ], - "identifier": "http://www.idref.fr/034511474", "identifiedBy": [ { "type": "uri", @@ -6309,7 +6079,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/034517928", "identifiedBy": [ { "type": "uri", @@ -6342,7 +6111,6 @@ "mul" ], "conference": false, - "identifier": "http://www.idref.fr/034537015", "identifiedBy": [ { "type": "uri", @@ -6368,7 +6136,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/034561528", "identifiedBy": [ { "type": "uri", @@ -6397,7 +6164,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/034612998", "identifiedBy": [ { "type": "uri", @@ -6419,7 +6185,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/034663525", "identifiedBy": [ { "type": "uri", @@ -6439,7 +6204,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/034692711", "identifiedBy": [ { "type": "uri", @@ -6468,7 +6232,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/034696601", "identifiedBy": [ { "type": "uri", @@ -6487,7 +6250,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/034702105", "identifiedBy": [ { "type": "uri", @@ -6511,7 +6273,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/034710647", "identifiedBy": [ { "type": "uri", @@ -6560,7 +6321,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/034731695", "identifiedBy": [ { "type": "uri", @@ -6584,7 +6344,6 @@ "fin", "eng" ], - "identifier": "http://www.idref.fr/034830936", "identifiedBy": [ { "type": "uri", @@ -6605,7 +6364,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/034833064", "identifiedBy": [ { "type": "uri", @@ -6625,7 +6383,6 @@ "dut" ], "conference": false, - "identifier": "http://www.idref.fr/034886060", "identifiedBy": [ { "type": "uri", @@ -6651,7 +6408,6 @@ "mul" ], "conference": false, - "identifier": "http://www.idref.fr/034922903", "identifiedBy": [ { "type": "uri", @@ -6685,7 +6441,6 @@ "language": [ "swe" ], - "identifier": "http://www.idref.fr/034931929", "identifiedBy": [ { "type": "uri", @@ -6708,7 +6463,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/034938656", "identifiedBy": [ { "type": "uri", @@ -6732,7 +6486,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/034953809", "identifiedBy": [ { "type": "uri", @@ -6752,7 +6505,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/035009039", "identifiedBy": [ { "type": "uri", @@ -6773,7 +6525,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/035068825", "identifiedBy": [ { "type": "uri", @@ -6795,7 +6546,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/035124199", "identifiedBy": [ { "type": "uri", @@ -6818,7 +6568,6 @@ "language": [ "tur" ], - "identifier": "http://www.idref.fr/035137045", "identifiedBy": [ { "type": "uri", @@ -6837,7 +6586,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/035170867", "identifiedBy": [ { "type": "uri", @@ -6862,7 +6610,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/035347988", "identifiedBy": [ { "type": "uri", @@ -6886,7 +6633,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/035348879", "identifiedBy": [ { "type": "uri", @@ -6908,7 +6654,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/035370572", "identifiedBy": [ { "type": "uri", @@ -6933,7 +6678,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/035451793", "identifiedBy": [ { "type": "uri", @@ -6955,7 +6699,6 @@ "language": [ "und" ], - "identifier": "http://www.idref.fr/035466278", "identifiedBy": [ { "type": "uri", @@ -6977,7 +6720,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/035467207", "identifiedBy": [ { "type": "uri", @@ -6997,7 +6739,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/035550767", "identifiedBy": [ { "type": "uri", @@ -7020,7 +6761,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/035552913", "identifiedBy": [ { "type": "uri", @@ -7040,7 +6780,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/035560754", "identifiedBy": [ { "type": "uri", @@ -7068,7 +6807,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/035599634", "identifiedBy": [ { "type": "uri", @@ -7091,7 +6829,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/035617179", "identifiedBy": [ { "type": "uri", @@ -7114,7 +6851,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/035695161", "identifiedBy": [ { "type": "uri", @@ -7143,7 +6879,6 @@ "hun" ], "conference": false, - "identifier": "http://www.idref.fr/050162373", "identifiedBy": [ { "type": "uri", @@ -7162,7 +6897,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/050191101", "identifiedBy": [ { "type": "uri", @@ -7184,7 +6918,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/050212265", "identifiedBy": [ { "type": "uri", @@ -7215,7 +6948,6 @@ "jpn" ], "conference": false, - "identifier": "http://www.idref.fr/05021425X", "identifiedBy": [ { "type": "uri", @@ -7243,7 +6975,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/050225146", "identifiedBy": [ { "type": "uri", @@ -7275,7 +7006,6 @@ "mul" ], "conference": true, - "identifier": "http://www.idref.fr/050262645", "identifiedBy": [ { "type": "uri", @@ -7302,7 +7032,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/050270982", "identifiedBy": [ { "type": "uri", @@ -7331,7 +7060,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/050313800", "identifiedBy": [ { "type": "uri", @@ -7360,7 +7088,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/050321692", "identifiedBy": [ { "type": "uri", @@ -7388,7 +7115,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/050323474", "identifiedBy": [ { "type": "uri", @@ -7407,7 +7133,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/050329332", "identifiedBy": [ { "type": "uri", @@ -7430,7 +7155,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/050348736", "identifiedBy": [ { "type": "uri", @@ -7450,7 +7174,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/050593587", "identifiedBy": [ { "type": "uri", @@ -7486,7 +7209,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/05066302X", "identifiedBy": [ { "type": "uri", @@ -7510,7 +7232,6 @@ "ger" ], "qualifier": "\u00e9crivain", - "identifier": "http://www.idref.fr/050667947", "identifiedBy": [ { "type": "uri", @@ -7541,7 +7262,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/050709585", "identifiedBy": [ { "type": "uri", @@ -7564,7 +7284,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/050723634", "identifiedBy": [ { "type": "uri", @@ -7594,7 +7313,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/050785745", "identifiedBy": [ { "type": "uri", @@ -7620,7 +7338,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/050798928", "identifiedBy": [ { "type": "uri", @@ -7648,7 +7365,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/050822551", "identifiedBy": [ { "type": "uri", @@ -7679,7 +7395,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/052206327", "identifiedBy": [ { "type": "uri", @@ -7698,7 +7413,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/052460819", "identifiedBy": [ { "type": "uri", @@ -7728,7 +7442,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/052470911", "identifiedBy": [ { "type": "uri", @@ -7750,7 +7463,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/052470989", "identifiedBy": [ { "type": "uri", @@ -7778,7 +7490,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/052556220", "identifiedBy": [ { "type": "uri", @@ -7810,7 +7521,6 @@ "mul" ], "conference": true, - "identifier": "http://www.idref.fr/052737284", "identifiedBy": [ { "type": "uri", @@ -7830,7 +7540,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/053434080", "identifiedBy": [ { "type": "uri", @@ -7858,7 +7567,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/053500679", "identifiedBy": [ { "type": "uri", @@ -7881,7 +7589,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/053516184", "identifiedBy": [ { "type": "uri", @@ -7905,7 +7612,6 @@ "language": [ "dan" ], - "identifier": "http://www.idref.fr/055333893", "identifiedBy": [ { "type": "uri", @@ -7930,7 +7636,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/055386806", "identifiedBy": [ { "type": "uri", @@ -7955,7 +7660,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/056579780", "identifiedBy": [ { "type": "uri", @@ -7979,7 +7683,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/056753950", "identifiedBy": [ { "type": "uri", @@ -8007,7 +7710,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/056755759", "identifiedBy": [ { "type": "uri", @@ -8025,7 +7727,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/056764073", "identifiedBy": [ { "type": "uri", @@ -8044,7 +7745,6 @@ "language": [ "und" ], - "identifier": "http://www.idref.fr/056766378", "identifiedBy": [ { "type": "uri", @@ -8063,7 +7763,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/056810741", "identifiedBy": [ { "type": "uri", @@ -8083,7 +7782,6 @@ "language": [ "nor" ], - "identifier": "http://www.idref.fr/056810881", "identifiedBy": [ { "type": "uri", @@ -8101,7 +7799,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/056820151", "identifiedBy": [ { "type": "uri", @@ -8119,7 +7816,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/056821840", "identifiedBy": [ { "type": "uri", @@ -8137,7 +7833,6 @@ "language": [ "und" ], - "identifier": "http://www.idref.fr/056844093", "identifiedBy": [ { "type": "uri", @@ -8157,7 +7852,6 @@ "fre" ], "qualifier": "juriste", - "identifier": "http://www.idref.fr/056857276", "identifiedBy": [ { "type": "uri", @@ -8177,7 +7871,6 @@ "language": [ "und" ], - "identifier": "http://www.idref.fr/056868324", "identifiedBy": [ { "type": "uri", @@ -8204,7 +7897,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/056926650", "identifiedBy": [ { "type": "uri", @@ -8234,7 +7926,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/056955669", "identifiedBy": [ { "type": "uri", @@ -8258,7 +7949,6 @@ "und" ], "conference": false, - "identifier": "http://www.idref.fr/057030448", "identifiedBy": [ { "type": "uri", @@ -8277,7 +7967,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/057097909", "identifiedBy": [ { "type": "uri", @@ -8297,7 +7986,6 @@ "und" ], "conference": false, - "identifier": "http://www.idref.fr/057101795", "identifiedBy": [ { "type": "uri", @@ -8317,7 +8005,6 @@ "und" ], "conference": false, - "identifier": "http://www.idref.fr/057110662", "identifiedBy": [ { "type": "uri", @@ -8336,7 +8023,6 @@ "language": [ "und" ], - "identifier": "http://www.idref.fr/057199892", "identifiedBy": [ { "type": "uri", @@ -8355,7 +8041,6 @@ "language": [ "und" ], - "identifier": "http://www.idref.fr/057249660", "identifiedBy": [ { "type": "uri", @@ -8375,7 +8060,6 @@ "und" ], "conference": false, - "identifier": "http://www.idref.fr/057271372", "identifiedBy": [ { "type": "uri", @@ -8394,7 +8078,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/057329850", "identifiedBy": [ { "type": "uri", @@ -8419,7 +8102,6 @@ "und" ], "conference": false, - "identifier": "http://www.idref.fr/057345627", "identifiedBy": [ { "type": "uri", @@ -8439,7 +8121,6 @@ "und" ], "conference": false, - "identifier": "http://www.idref.fr/057376719", "identifiedBy": [ { "type": "uri", @@ -8458,7 +8139,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/057556474", "identifiedBy": [ { "type": "uri", @@ -8483,7 +8163,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/057564647", "identifiedBy": [ { "type": "uri", @@ -8507,7 +8186,6 @@ "und" ], "conference": false, - "identifier": "http://www.idref.fr/057564876", "identifiedBy": [ { "type": "uri", @@ -8526,7 +8204,6 @@ "language": [ "und" ], - "identifier": "http://www.idref.fr/057687242", "identifiedBy": [ { "type": "uri", @@ -8545,7 +8222,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/05769009X", "identifiedBy": [ { "type": "uri", @@ -8568,7 +8244,6 @@ "language": [ "und" ], - "identifier": "http://www.idref.fr/05776171X", "identifiedBy": [ { "type": "uri", @@ -8588,7 +8263,6 @@ "fre" ], "qualifier": "expert-comptable", - "identifier": "http://www.idref.fr/057791511", "identifiedBy": [ { "type": "uri", @@ -8626,7 +8300,6 @@ "ger" ], "conference": false, - "identifier": "http://www.idref.fr/057941386", "identifiedBy": [ { "type": "uri", @@ -8672,7 +8345,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/058054529", "identifiedBy": [ { "type": "uri", @@ -8695,7 +8367,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/058114491", "identifiedBy": [ { "type": "uri", @@ -8724,7 +8395,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/058598928", "identifiedBy": [ { "type": "uri", @@ -8747,7 +8417,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/058861998", "identifiedBy": [ { "type": "uri", @@ -8767,7 +8436,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/058993789", "identifiedBy": [ { "type": "uri", @@ -8796,7 +8464,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/059051051", "identifiedBy": [ { "type": "uri", @@ -8815,7 +8482,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/059202491", "identifiedBy": [ { "type": "uri", @@ -8838,7 +8504,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/059213523", "identifiedBy": [ { "type": "uri", @@ -8860,7 +8525,6 @@ "language": [ "por" ], - "identifier": "http://www.idref.fr/059412720", "identifiedBy": [ { "type": "uri", @@ -8892,7 +8556,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/05961398X", "identifiedBy": [ { "type": "uri", @@ -8923,7 +8586,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/059742984", "identifiedBy": [ { "type": "uri", @@ -8948,7 +8610,6 @@ "fre" ], "conference": true, - "identifier": "http://www.idref.fr/059774177", "identifiedBy": [ { "type": "uri", @@ -8969,7 +8630,6 @@ "language": [ "und" ], - "identifier": "http://www.idref.fr/059780843", "identifiedBy": [ { "type": "uri", @@ -8994,7 +8654,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/059922184", "identifiedBy": [ { "type": "uri", @@ -9015,7 +8674,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/059943696", "identifiedBy": [ { "type": "uri", @@ -9038,7 +8696,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/060104406", "identifiedBy": [ { "type": "uri", @@ -9062,7 +8719,6 @@ "ger" ], "qualifier": "Dr.", - "identifier": "http://www.idref.fr/060167181", "identifiedBy": [ { "type": "uri", @@ -9085,7 +8741,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/060256982", "identifiedBy": [ { "type": "uri", @@ -9120,7 +8775,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/060459743", "identifiedBy": [ { "type": "uri", @@ -9145,7 +8799,6 @@ "ita" ], "qualifier": "traducteur", - "identifier": "http://www.idref.fr/060721995", "identifiedBy": [ { "type": "uri", @@ -9168,7 +8821,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/060722320", "identifiedBy": [ { "type": "uri", @@ -9192,7 +8844,6 @@ "eng" ], "qualifier": "missionnaire", - "identifier": "http://www.idref.fr/060754435", "identifiedBy": [ { "type": "uri", @@ -9216,7 +8867,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/060756985", "identifiedBy": [ { "type": "uri", @@ -9237,7 +8887,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/060819529", "identifiedBy": [ { "type": "uri", @@ -9260,7 +8909,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/060890932", "identifiedBy": [ { "type": "uri", @@ -9282,7 +8930,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/061077690", "identifiedBy": [ { "type": "uri", @@ -9304,7 +8951,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/061113603", "identifiedBy": [ { "type": "uri", @@ -9326,7 +8972,6 @@ "ger" ], "conference": false, - "identifier": "http://www.idref.fr/061131547", "identifiedBy": [ { "type": "uri", @@ -9366,7 +9011,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/061135437", "identifiedBy": [ { "type": "uri", @@ -9388,7 +9032,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/061190586", "identifiedBy": [ { "type": "uri", @@ -9410,7 +9053,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/063876981", "identifiedBy": [ { "type": "uri", @@ -9433,7 +9075,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/066759099", "identifiedBy": [ { "type": "uri", @@ -9461,7 +9102,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/066764602", "identifiedBy": [ { "type": "uri", @@ -9484,7 +9124,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/066772834", "identifiedBy": [ { "type": "uri", @@ -9503,7 +9142,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/06685086X", "identifiedBy": [ { "type": "uri", @@ -9525,7 +9163,6 @@ "language": [ "cat" ], - "identifier": "http://www.idref.fr/066879353", "identifiedBy": [ { "type": "uri", @@ -9544,7 +9181,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/066897815", "identifiedBy": [ { "type": "uri", @@ -9574,7 +9210,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/066902096", "identifiedBy": [ { "type": "uri", @@ -9597,7 +9232,6 @@ "por" ], "conference": true, - "identifier": "http://www.idref.fr/066986540", "identifiedBy": [ { "type": "uri", @@ -9618,7 +9252,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/066993709", "identifiedBy": [ { "type": "uri", @@ -9645,7 +9278,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/06703098X", "identifiedBy": [ { "type": "uri", @@ -9668,7 +9300,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/067042767", "identifiedBy": [ { "type": "uri", @@ -9705,7 +9336,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/067071333", "identifiedBy": [ { "type": "uri", @@ -9731,7 +9361,6 @@ "spa" ], "conference": false, - "identifier": "http://www.idref.fr/067071740", "identifiedBy": [ { "type": "uri", @@ -9757,7 +9386,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/067073204", "identifiedBy": [ { "type": "uri", @@ -9787,7 +9415,6 @@ "und" ], "conference": false, - "identifier": "http://www.idref.fr/067086055", "identifiedBy": [ { "type": "uri", @@ -9807,7 +9434,6 @@ "und" ], "conference": false, - "identifier": "http://www.idref.fr/067096441", "identifiedBy": [ { "type": "uri", @@ -9827,7 +9453,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/067096824", "identifiedBy": [ { "type": "uri", @@ -9853,7 +9478,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/067174299", "identifiedBy": [ { "type": "uri", @@ -9881,7 +9505,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/067181562", "identifiedBy": [ { "type": "uri", @@ -9906,7 +9529,6 @@ "eng" ], "qualifier": "informaticien", - "identifier": "http://www.idref.fr/067223613", "identifiedBy": [ { "type": "uri", @@ -9930,7 +9552,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/067285716", "identifiedBy": [ { "type": "uri", @@ -9959,7 +9580,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/067321666", "identifiedBy": [ { "type": "uri", @@ -9983,7 +9603,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/067345395", "identifiedBy": [ { "type": "uri", @@ -10006,7 +9625,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/067692753", "identifiedBy": [ { "type": "uri", @@ -10028,7 +9646,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/06771496X", "identifiedBy": [ { "type": "uri", @@ -10050,7 +9667,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/067732003", "identifiedBy": [ { "type": "uri", @@ -10071,7 +9687,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/068703597", "identifiedBy": [ { "type": "uri", @@ -10093,7 +9708,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/069064830", "identifiedBy": [ { "type": "uri", @@ -10120,7 +9734,6 @@ "grc", "eng" ], - "identifier": "http://www.idref.fr/069116458", "identifiedBy": [ { "type": "uri", @@ -10150,7 +9763,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/069130817", "identifiedBy": [ { "type": "uri", @@ -10173,7 +9785,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/069148155", "identifiedBy": [ { "type": "uri", @@ -10195,7 +9806,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/06915547X", "identifiedBy": [ { "type": "uri", @@ -10218,7 +9828,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/069156964", "identifiedBy": [ { "type": "uri", @@ -10238,7 +9847,6 @@ "fre" ], "qualifier": "consultant en management", - "identifier": "http://www.idref.fr/069265860", "identifiedBy": [ { "type": "uri", @@ -10261,7 +9869,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/069379777", "identifiedBy": [ { "type": "uri", @@ -10284,7 +9891,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/069487332", "identifiedBy": [ { "type": "uri", @@ -10305,7 +9911,6 @@ "spa" ], "qualifier": "grammairienne", - "identifier": "http://www.idref.fr/069679908", "identifiedBy": [ { "type": "uri", @@ -10333,7 +9938,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/069781524", "identifiedBy": [ { "type": "uri", @@ -10352,7 +9956,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/069782768", "identifiedBy": [ { "type": "uri", @@ -10374,7 +9977,6 @@ "fre" ], "conference": true, - "identifier": "http://www.idref.fr/069843783", "identifiedBy": [ { "type": "uri", @@ -10395,7 +9997,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/069844119", "identifiedBy": [ { "type": "uri", @@ -10428,7 +10029,6 @@ "eng" ], "conference": true, - "identifier": "http://www.idref.fr/069886687", "identifiedBy": [ { "type": "uri", @@ -10450,7 +10050,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/070054878", "identifiedBy": [ { "type": "uri", @@ -10487,7 +10086,6 @@ "por" ], "conference": false, - "identifier": "http://www.idref.fr/070150737", "identifiedBy": [ { "type": "uri", @@ -10513,7 +10111,6 @@ "cat" ], "conference": false, - "identifier": "http://www.idref.fr/070160538", "identifiedBy": [ { "type": "uri", @@ -10537,7 +10134,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/070199736", "identifiedBy": [ { "type": "uri", @@ -10560,7 +10156,6 @@ "language": [ "ara" ], - "identifier": "http://www.idref.fr/070328005", "identifiedBy": [ { "type": "uri", @@ -10595,7 +10190,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/070377510", "identifiedBy": [ { "type": "uri", @@ -10616,7 +10210,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/070400229", "identifiedBy": [ { "type": "uri", @@ -10634,7 +10227,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/070478015", "identifiedBy": [ { "type": "uri", @@ -10657,7 +10249,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/070664900", "identifiedBy": [ { "type": "uri", @@ -10679,7 +10270,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/070977275", "identifiedBy": [ { "type": "uri", @@ -10700,7 +10290,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/071004092", "identifiedBy": [ { "type": "uri", @@ -10720,7 +10309,6 @@ "md5": "ce337010faef159dc75582152ef7b450", "pid": "07101120X", "type": "bf:Person", - "identifier": "http://www.idref.fr/07101120X", "identifiedBy": [ { "type": "uri", @@ -10741,7 +10329,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/071088679", "identifiedBy": [ { "type": "uri", @@ -10760,7 +10347,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/071120637", "identifiedBy": [ { "type": "uri", @@ -10789,7 +10375,6 @@ "fre" ], "qualifier": "m\u00e9decin", - "identifier": "http://www.idref.fr/071285571", "identifiedBy": [ { "type": "uri", @@ -10813,7 +10398,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/071324380", "identifiedBy": [ { "type": "uri", @@ -10842,7 +10426,6 @@ "language": [ "jpn" ], - "identifier": "http://www.idref.fr/071344241", "identifiedBy": [ { "type": "uri", @@ -10866,7 +10449,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/071531149", "identifiedBy": [ { "type": "uri", @@ -10892,7 +10474,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/071535616", "identifiedBy": [ { "type": "uri", @@ -10914,7 +10495,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/071555994", "identifiedBy": [ { "type": "uri", @@ -10942,7 +10522,6 @@ "ger" ], "qualifier": "Th\u00e9ologien", - "identifier": "http://www.idref.fr/07162080X", "identifiedBy": [ { "type": "uri", @@ -10972,7 +10551,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/071960651", "identifiedBy": [ { "type": "uri", @@ -10997,7 +10575,6 @@ "ger", "eng" ], - "identifier": "http://www.idref.fr/072291826", "identifiedBy": [ { "type": "uri", @@ -11022,7 +10599,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/073256897", "identifiedBy": [ { "type": "uri", @@ -11047,7 +10623,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/07327822X", "identifiedBy": [ { "type": "uri", @@ -11066,7 +10641,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/073281794", "identifiedBy": [ { "type": "uri", @@ -11091,7 +10665,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/07330235X", "identifiedBy": [ { "type": "uri", @@ -11115,7 +10688,6 @@ "ita" ], "conference": false, - "identifier": "http://www.idref.fr/073312673", "identifiedBy": [ { "type": "uri", @@ -11141,7 +10713,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/073329673", "identifiedBy": [ { "type": "uri", @@ -11164,7 +10735,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/073368989", "identifiedBy": [ { "type": "uri", @@ -11189,7 +10759,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/07338206X", "identifiedBy": [ { "type": "uri", @@ -11219,7 +10788,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/073432865", "identifiedBy": [ { "type": "uri", @@ -11241,7 +10809,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/073648027", "identifiedBy": [ { "type": "uri", @@ -11264,7 +10831,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/073673986", "identifiedBy": [ { "type": "uri", @@ -11288,7 +10854,6 @@ "dut", "eng" ], - "identifier": "http://www.idref.fr/073704199", "identifiedBy": [ { "type": "uri", @@ -11315,7 +10880,6 @@ "spa" ], "conference": true, - "identifier": "http://www.idref.fr/073875724", "identifiedBy": [ { "type": "uri", @@ -11336,7 +10900,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/073949183", "identifiedBy": [ { "type": "uri", @@ -11359,7 +10922,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/074008552", "identifiedBy": [ { "type": "uri", @@ -11384,7 +10946,6 @@ "eng" ], "conference": true, - "identifier": "http://www.idref.fr/074011278", "identifiedBy": [ { "type": "uri", @@ -11411,7 +10972,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/074092855", "identifiedBy": [ { "type": "uri", @@ -11435,7 +10995,6 @@ "eng" ], "qualifier": "juriste", - "identifier": "http://www.idref.fr/074110217", "identifiedBy": [ { "type": "uri", @@ -11460,7 +11019,6 @@ "eng", "heb" ], - "identifier": "http://www.idref.fr/074287680", "identifiedBy": [ { "type": "uri", @@ -11497,7 +11055,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/07432389X", "identifiedBy": [ { "type": "uri", @@ -11519,7 +11076,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/074552996", "identifiedBy": [ { "type": "uri", @@ -11541,7 +11097,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/074594788", "identifiedBy": [ { "type": "uri", @@ -11564,7 +11119,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/075029189", "identifiedBy": [ { "type": "uri", @@ -11595,7 +11149,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/07505924X", "identifiedBy": [ { "type": "uri", @@ -11618,7 +11171,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/075103672", "identifiedBy": [ { "type": "uri", @@ -11640,7 +11192,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/075129094", "identifiedBy": [ { "type": "uri", @@ -11663,7 +11214,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/075134438", "identifiedBy": [ { "type": "uri", @@ -11688,7 +11238,6 @@ "spa" ], "conference": true, - "identifier": "http://www.idref.fr/075146975", "identifiedBy": [ { "type": "uri", @@ -11710,7 +11259,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/075434008", "identifiedBy": [ { "type": "uri", @@ -11738,7 +11286,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/075435179", "identifiedBy": [ { "type": "uri", @@ -11761,7 +11308,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/075612178", "identifiedBy": [ { "type": "uri", @@ -11784,7 +11330,6 @@ "ita" ], "conference": false, - "identifier": "http://www.idref.fr/075690632", "identifiedBy": [ { "type": "uri", @@ -11806,7 +11351,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/075866307", "identifiedBy": [ { "type": "uri", @@ -11828,7 +11372,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/075899655", "identifiedBy": [ { "type": "uri", @@ -11855,7 +11398,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/075912872", "identifiedBy": [ { "type": "uri", @@ -11875,7 +11417,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/075964686", "identifiedBy": [ { "type": "uri", @@ -11897,7 +11438,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/076007316", "identifiedBy": [ { "type": "uri", @@ -11921,7 +11461,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/076054241", "identifiedBy": [ { "type": "uri", @@ -11948,7 +11487,6 @@ "fre" ], "conference": true, - "identifier": "http://www.idref.fr/076340384", "identifiedBy": [ { "type": "uri", @@ -11981,7 +11519,6 @@ "pid": "076418731", "type": "bf:Organisation", "conference": false, - "identifier": "http://www.idref.fr/076418731", "identifiedBy": [ { "type": "uri", @@ -12000,7 +11537,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/076680819", "identifiedBy": [ { "type": "uri", @@ -12023,7 +11559,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/076709116", "identifiedBy": [ { "type": "uri", @@ -12042,7 +11577,6 @@ "language": [ "und" ], - "identifier": "http://www.idref.fr/076721256", "identifiedBy": [ { "type": "uri", @@ -12061,7 +11595,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/076752054", "identifiedBy": [ { "type": "uri", @@ -12080,7 +11613,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/076905470", "identifiedBy": [ { "type": "uri", @@ -12103,7 +11635,6 @@ "por" ], "conference": true, - "identifier": "http://www.idref.fr/076968537", "identifiedBy": [ { "type": "uri", @@ -12125,7 +11656,6 @@ "eng" ], "qualifier": "math\u00e9maticien", - "identifier": "http://www.idref.fr/077006453", "identifiedBy": [ { "type": "uri", @@ -12147,7 +11677,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/077053869", "identifiedBy": [ { "type": "uri", @@ -12170,7 +11699,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/077119428", "identifiedBy": [ { "type": "uri", @@ -12193,7 +11721,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/077143043", "identifiedBy": [ { "type": "uri", @@ -12215,7 +11742,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/077162617", "identifiedBy": [ { "type": "uri", @@ -12246,7 +11772,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/077335996", "identifiedBy": [ { "type": "uri", @@ -12270,7 +11795,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/07733826X", "identifiedBy": [ { "type": "uri", @@ -12305,7 +11829,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/077342097", "identifiedBy": [ { "type": "uri", @@ -12336,7 +11859,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/07741084X", "identifiedBy": [ { "type": "uri", @@ -12356,7 +11878,6 @@ "eng" ], "qualifier": "romancier", - "identifier": "http://www.idref.fr/077437209", "identifiedBy": [ { "type": "uri", @@ -12380,7 +11901,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/077446534", "identifiedBy": [ { "type": "uri", @@ -12405,7 +11925,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/07750528X", "identifiedBy": [ { "type": "uri", @@ -12428,7 +11947,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/077763009", "identifiedBy": [ { "type": "uri", @@ -12452,7 +11970,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/077775430", "identifiedBy": [ { "type": "uri", @@ -12475,7 +11992,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/077813138", "identifiedBy": [ { "type": "uri", @@ -12497,7 +12013,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/078038766", "identifiedBy": [ { "type": "uri", @@ -12518,7 +12033,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/078054982", "identifiedBy": [ { "type": "uri", @@ -12546,7 +12060,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/078075467", "identifiedBy": [ { "type": "uri", @@ -12563,7 +12076,6 @@ "md5": "ab0a3bb2602ea7faad3959541dccabdf", "pid": "078076641", "type": "bf:Person", - "identifier": "http://www.idref.fr/078076641", "identifiedBy": [ { "type": "uri", @@ -12588,7 +12100,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/078079330", "identifiedBy": [ { "type": "uri", @@ -12610,7 +12121,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/078118948", "identifiedBy": [ { "type": "uri", @@ -12634,7 +12144,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/078185556", "identifiedBy": [ { "type": "uri", @@ -12658,7 +12167,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/078607078", "identifiedBy": [ { "type": "uri", @@ -12690,7 +12198,6 @@ "pid": "078619505", "type": "bf:Organisation", "conference": false, - "identifier": "http://www.idref.fr/078619505", "identifiedBy": [ { "type": "uri", @@ -12716,7 +12223,6 @@ "baq", "eng" ], - "identifier": "http://www.idref.fr/078640997", "identifiedBy": [ { "type": "uri", @@ -12742,7 +12248,6 @@ "dut" ], "qualifier": "actrice", - "identifier": "http://www.idref.fr/078763487", "identifiedBy": [ { "type": "uri", @@ -12765,7 +12270,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/078835089", "identifiedBy": [ { "type": "uri", @@ -12788,7 +12292,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/078835186", "identifiedBy": [ { "type": "uri", @@ -12817,7 +12320,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/079020933", "identifiedBy": [ { "type": "uri", @@ -12837,7 +12339,6 @@ "ger" ], "qualifier": "philosophe", - "identifier": "http://www.idref.fr/07904011X", "identifiedBy": [ { "type": "uri", @@ -12861,7 +12362,6 @@ "eng" ], "qualifier": "psychologue", - "identifier": "http://www.idref.fr/079112943", "identifiedBy": [ { "type": "uri", @@ -12884,7 +12384,6 @@ "language": [ "ara" ], - "identifier": "http://www.idref.fr/079151639", "identifiedBy": [ { "type": "uri", @@ -12902,7 +12401,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/079157106", "identifiedBy": [ { "type": "uri", @@ -12927,7 +12425,6 @@ "fre" ], "conference": true, - "identifier": "http://www.idref.fr/07925814X", "identifiedBy": [ { "type": "uri", @@ -12948,7 +12445,6 @@ "md5": "dceed72126d2301077d325fa93455aaf", "pid": "079303315", "type": "bf:Person", - "identifier": "http://www.idref.fr/079303315", "identifiedBy": [ { "type": "uri", @@ -12982,7 +12478,6 @@ "por" ], "conference": false, - "identifier": "http://www.idref.fr/079436870", "identifiedBy": [ { "type": "uri", @@ -13012,7 +12507,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/07948901X", "identifiedBy": [ { "type": "uri", @@ -13053,7 +12547,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/079506151", "identifiedBy": [ { "type": "uri", @@ -13090,7 +12583,6 @@ "dut", "eng" ], - "identifier": "http://www.idref.fr/079550746", "identifiedBy": [ { "type": "uri", @@ -13119,7 +12611,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/079890849", "identifiedBy": [ { "type": "uri", @@ -13137,7 +12628,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/07992056X", "identifiedBy": [ { "type": "uri", @@ -13160,7 +12650,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/080088325", "identifiedBy": [ { "type": "uri", @@ -13184,7 +12673,6 @@ "eng" ], "conference": true, - "identifier": "http://www.idref.fr/080102859", "identifiedBy": [ { "type": "uri", @@ -13205,7 +12693,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/08013484X", "identifiedBy": [ { "type": "uri", @@ -13225,7 +12712,6 @@ "fre" ], "qualifier": "chercheur", - "identifier": "http://www.idref.fr/080152503", "identifiedBy": [ { "type": "uri", @@ -13250,7 +12736,6 @@ "eng", "nep" ], - "identifier": "http://www.idref.fr/080164994", "identifiedBy": [ { "type": "uri", @@ -13279,7 +12764,6 @@ "pid": "08018734X", "type": "bf:Organisation", "conference": false, - "identifier": "http://www.idref.fr/08018734X", "identifiedBy": [ { "type": "uri", @@ -13298,7 +12782,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/080307426", "identifiedBy": [ { "type": "uri", @@ -13321,7 +12804,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/080487238", "identifiedBy": [ { "type": "uri", @@ -13359,7 +12841,6 @@ "rum" ], "conference": false, - "identifier": "http://www.idref.fr/080529712", "identifiedBy": [ { "type": "uri", @@ -13404,7 +12885,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/080557732", "identifiedBy": [ { "type": "uri", @@ -13427,7 +12907,6 @@ "eng" ], "conference": true, - "identifier": "http://www.idref.fr/080577350", "identifiedBy": [ { "type": "uri", @@ -13457,7 +12936,6 @@ "fre" ], "conference": true, - "identifier": "http://www.idref.fr/080596649", "identifiedBy": [ { "type": "uri", @@ -13478,7 +12956,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/080608825", "identifiedBy": [ { "type": "uri", @@ -13496,7 +12973,6 @@ "md5": "b4bcc763b6f45f6ae6c247355bb87b46", "pid": "080622151", "type": "bf:Person", - "identifier": "http://www.idref.fr/080622151", "identifiedBy": [ { "type": "uri", @@ -13521,7 +12997,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/080641024", "identifiedBy": [ { "type": "uri", @@ -13543,7 +13018,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/080647359", "identifiedBy": [ { "type": "uri", @@ -13563,7 +13037,6 @@ "eng" ], "qualifier": "physicien", - "identifier": "http://www.idref.fr/080678971", "identifiedBy": [ { "type": "uri", @@ -13586,7 +13059,6 @@ "language": [ "por" ], - "identifier": "http://www.idref.fr/080683851", "identifiedBy": [ { "type": "uri", @@ -13615,7 +13087,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/080722555", "identifiedBy": [ { "type": "uri", @@ -13634,7 +13105,6 @@ "dut" ], "conference": false, - "identifier": "http://www.idref.fr/080824072", "identifiedBy": [ { "type": "uri", @@ -13657,7 +13127,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/080923690", "identifiedBy": [ { "type": "uri", @@ -13682,7 +13151,6 @@ "language": [ "hau" ], - "identifier": "http://www.idref.fr/081103131", "identifiedBy": [ { "type": "uri", @@ -13710,7 +13178,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/081199392", "identifiedBy": [ { "type": "uri", @@ -13733,7 +13200,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/081232683", "identifiedBy": [ { "type": "uri", @@ -13763,7 +13229,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/081271395", "identifiedBy": [ { "type": "uri", @@ -13796,7 +13261,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/081311249", "identifiedBy": [ { "type": "uri", @@ -13817,7 +13281,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/081402880", "identifiedBy": [ { "type": "uri", @@ -13837,7 +13300,6 @@ "pid": "081435827", "type": "bf:Organisation", "conference": false, - "identifier": "http://www.idref.fr/081435827", "identifiedBy": [ { "type": "uri", @@ -13856,7 +13318,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/081436351", "identifiedBy": [ { "type": "uri", @@ -13879,7 +13340,6 @@ "language": [ "und" ], - "identifier": "http://www.idref.fr/08147475X", "identifiedBy": [ { "type": "uri", @@ -13910,7 +13370,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/081544693", "identifiedBy": [ { "type": "uri", @@ -13929,7 +13388,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/081600356", "identifiedBy": [ { "type": "uri", @@ -13950,7 +13408,6 @@ "ara" ], "conference": false, - "identifier": "http://www.idref.fr/081609558", "identifiedBy": [ { "type": "uri", @@ -13978,7 +13435,6 @@ "fre" ], "conference": true, - "identifier": "http://www.idref.fr/081719752", "identifiedBy": [ { "type": "uri", @@ -14003,7 +13459,6 @@ "chi" ], "conference": false, - "identifier": "http://www.idref.fr/081801793", "identifiedBy": [ { "type": "uri", @@ -14029,7 +13484,6 @@ "language": [ "ind" ], - "identifier": "http://www.idref.fr/081895046", "identifiedBy": [ { "type": "uri", @@ -14060,7 +13514,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/082025398", "identifiedBy": [ { "type": "uri", @@ -14083,7 +13536,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/082057826", "identifiedBy": [ { "type": "uri", @@ -14104,7 +13556,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/082085072", "identifiedBy": [ { "type": "uri", @@ -14136,7 +13587,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/082091943", "identifiedBy": [ { "type": "uri", @@ -14156,7 +13606,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/082116008", "identifiedBy": [ { "type": "uri", @@ -14179,7 +13628,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/082333173", "identifiedBy": [ { "type": "uri", @@ -14205,7 +13653,6 @@ "md5": "bf799422864d67415193c465e6907ea1", "pid": "082560757", "type": "bf:Person", - "identifier": "http://www.idref.fr/082560757", "identifiedBy": [ { "type": "uri", @@ -14223,7 +13670,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/082609675", "identifiedBy": [ { "type": "uri", @@ -14243,7 +13689,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/082702446", "identifiedBy": [ { "type": "uri", @@ -14266,7 +13711,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/083069119", "identifiedBy": [ { "type": "uri", @@ -14296,7 +13740,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/083194037", "identifiedBy": [ { "type": "uri", @@ -14319,7 +13762,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/083221689", "identifiedBy": [ { "type": "uri", @@ -14351,7 +13793,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/083252819", "identifiedBy": [ { "type": "uri", @@ -14374,7 +13815,6 @@ "language": [ "und" ], - "identifier": "http://www.idref.fr/083373365", "identifiedBy": [ { "type": "uri", @@ -14393,7 +13833,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/083467815", "identifiedBy": [ { "type": "uri", @@ -14413,7 +13852,6 @@ "pid": "083488790", "type": "bf:Organisation", "conference": false, - "identifier": "http://www.idref.fr/083488790", "identifiedBy": [ { "type": "uri", @@ -14438,7 +13876,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/083493778", "identifiedBy": [ { "type": "uri", @@ -14456,7 +13893,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/083553843", "identifiedBy": [ { "type": "uri", @@ -14479,7 +13915,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/083568077", "identifiedBy": [ { "type": "uri", @@ -14502,7 +13937,6 @@ "mul" ], "conference": false, - "identifier": "http://www.idref.fr/083580522", "identifiedBy": [ { "type": "uri", @@ -14531,7 +13965,6 @@ "eng" ], "conference": true, - "identifier": "http://www.idref.fr/083680683", "identifiedBy": [ { "type": "uri", @@ -14560,7 +13993,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/083712941", "identifiedBy": [ { "type": "uri", @@ -14580,7 +14012,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/083715789", "identifiedBy": [ { "type": "uri", @@ -14607,7 +14038,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/083726861", "identifiedBy": [ { "type": "uri", @@ -14627,7 +14057,6 @@ "language": [ "rus" ], - "identifier": "http://www.idref.fr/083737499", "identifiedBy": [ { "type": "uri", @@ -14666,7 +14095,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/083767827", "identifiedBy": [ { "type": "uri", @@ -14685,7 +14113,6 @@ "language": [ "ori" ], - "identifier": "http://www.idref.fr/083843361", "identifiedBy": [ { "type": "uri", @@ -14713,7 +14140,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/083843981", "identifiedBy": [ { "type": "uri", @@ -14735,7 +14161,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/083885463", "identifiedBy": [ { "type": "uri", @@ -14757,7 +14182,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/083928715", "identifiedBy": [ { "type": "uri", @@ -14774,7 +14198,6 @@ "pid": "083961488", "type": "bf:Organisation", "conference": false, - "identifier": "http://www.idref.fr/083961488", "identifiedBy": [ { "type": "uri", @@ -14801,7 +14224,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/083970592", "identifiedBy": [ { "type": "uri", @@ -14827,7 +14249,6 @@ "md5": "03aae8038f1c1b25af9b6cc4b28b511e", "pid": "084028750", "type": "bf:Person", - "identifier": "http://www.idref.fr/084028750", "identifiedBy": [ { "type": "uri", @@ -14842,7 +14263,6 @@ "md5": "a3c0d041000f81ef3fe46af445bad77d", "pid": "084029463", "type": "bf:Person", - "identifier": "http://www.idref.fr/084029463", "identifiedBy": [ { "type": "uri", @@ -14864,7 +14284,6 @@ "spa" ], "conference": false, - "identifier": "http://www.idref.fr/084037407", "identifiedBy": [ { "type": "uri", @@ -14892,7 +14311,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/084062320", "identifiedBy": [ { "type": "uri", @@ -14926,7 +14344,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/084074752", "identifiedBy": [ { "type": "uri", @@ -14947,7 +14364,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/084147385", "identifiedBy": [ { "type": "uri", @@ -14967,7 +14383,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/084324856", "identifiedBy": [ { "type": "uri", @@ -14990,7 +14405,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/08433293X", "identifiedBy": [ { "type": "uri", @@ -15014,7 +14428,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/084346450", "identifiedBy": [ { "type": "uri", @@ -15038,7 +14451,6 @@ "eng" ], "qualifier": "cryptologue", - "identifier": "http://www.idref.fr/084531029", "identifiedBy": [ { "type": "uri", @@ -15062,7 +14474,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/084675810", "identifiedBy": [ { "type": "uri", @@ -15084,7 +14495,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/084728949", "identifiedBy": [ { "type": "uri", @@ -15118,7 +14528,6 @@ "baq", "spa" ], - "identifier": "http://www.idref.fr/085001392", "identifiedBy": [ { "type": "uri", @@ -15150,7 +14559,6 @@ "eng" ], "conference": true, - "identifier": "http://www.idref.fr/085232629", "identifiedBy": [ { "type": "uri", @@ -15171,7 +14579,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/085232815", "identifiedBy": [ { "type": "uri", @@ -15190,7 +14597,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/085535621", "identifiedBy": [ { "type": "uri", @@ -15214,7 +14620,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/085598143", "identifiedBy": [ { "type": "uri", @@ -15232,7 +14637,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/085617598", "identifiedBy": [ { "type": "uri", @@ -15253,7 +14657,6 @@ "md5": "150c160a3a019d3137a8a0dea0eddae3", "pid": "085647640", "type": "bf:Person", - "identifier": "http://www.idref.fr/085647640", "identifiedBy": [ { "type": "uri", @@ -15282,7 +14685,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/085731390", "identifiedBy": [ { "type": "uri", @@ -15305,7 +14707,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/085825069", "identifiedBy": [ { "type": "uri", @@ -15328,7 +14729,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/085826367", "identifiedBy": [ { "type": "uri", @@ -15356,7 +14756,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/085835943", "identifiedBy": [ { "type": "uri", @@ -15376,7 +14775,6 @@ "ger" ], "qualifier": "archiviste", - "identifier": "http://www.idref.fr/085856525", "identifiedBy": [ { "type": "uri", @@ -15399,7 +14797,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/08589320X", "identifiedBy": [ { "type": "uri", @@ -15428,7 +14825,6 @@ "spa" ], "conference": false, - "identifier": "http://www.idref.fr/086019740", "identifiedBy": [ { "type": "uri", @@ -15454,7 +14850,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/086021311", "identifiedBy": [ { "type": "uri", @@ -15499,7 +14894,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/08602308X", "identifiedBy": [ { "type": "uri", @@ -15529,7 +14923,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/086069527", "identifiedBy": [ { "type": "uri", @@ -15548,7 +14941,6 @@ "spa" ], "conference": false, - "identifier": "http://www.idref.fr/086069888", "identifiedBy": [ { "type": "uri", @@ -15579,7 +14971,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/08608416X", "identifiedBy": [ { "type": "uri", @@ -15602,7 +14993,6 @@ "ita" ], "conference": false, - "identifier": "http://www.idref.fr/086094602", "identifiedBy": [ { "type": "uri", @@ -15632,7 +15022,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/086124641", "identifiedBy": [ { "type": "uri", @@ -15651,7 +15040,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/086139096", "identifiedBy": [ { "type": "uri", @@ -15670,7 +15058,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/086168312", "identifiedBy": [ { "type": "uri", @@ -15690,7 +15077,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/086232827", "identifiedBy": [ { "type": "uri", @@ -15713,7 +15099,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/086845659", "identifiedBy": [ { "type": "uri", @@ -15746,7 +15131,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/086849786", "identifiedBy": [ { "type": "uri", @@ -15768,7 +15152,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/087190087", "identifiedBy": [ { "type": "uri", @@ -15789,7 +15172,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/087239981", "identifiedBy": [ { "type": "uri", @@ -15809,7 +15191,6 @@ "eng", "ger" ], - "identifier": "http://www.idref.fr/087402467", "identifiedBy": [ { "type": "uri", @@ -15831,7 +15212,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/087470659", "identifiedBy": [ { "type": "uri", @@ -15851,7 +15231,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/087504146", "identifiedBy": [ { "type": "uri", @@ -15870,7 +15249,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/087535300", "identifiedBy": [ { "type": "uri", @@ -15892,7 +15270,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/087635585", "identifiedBy": [ { "type": "uri", @@ -15911,7 +15288,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/087649535", "identifiedBy": [ { "type": "uri", @@ -15939,7 +15315,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/087823535", "identifiedBy": [ { "type": "uri", @@ -15961,7 +15336,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/087958686", "identifiedBy": [ { "type": "uri", @@ -15983,7 +15357,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/088014029", "identifiedBy": [ { "type": "uri", @@ -16027,7 +15400,6 @@ "ara" ], "qualifier": "acteur", - "identifier": "http://www.idref.fr/088042944", "identifiedBy": [ { "type": "uri", @@ -16058,7 +15430,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/088082776", "identifiedBy": [ { "type": "uri", @@ -16080,7 +15451,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/088088944", "identifiedBy": [ { "type": "uri", @@ -16103,7 +15473,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/088106926", "identifiedBy": [ { "type": "uri", @@ -16127,7 +15496,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/088397599", "identifiedBy": [ { "type": "uri", @@ -16146,7 +15514,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/088404587", "identifiedBy": [ { "type": "uri", @@ -16175,7 +15542,6 @@ "eng", "ben" ], - "identifier": "http://www.idref.fr/088453022", "identifiedBy": [ { "type": "uri", @@ -16208,7 +15574,6 @@ "hin", "eng" ], - "identifier": "http://www.idref.fr/088540235", "identifiedBy": [ { "type": "uri", @@ -16233,7 +15598,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/08870078X", "identifiedBy": [ { "type": "uri", @@ -16254,7 +15618,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/08871246X", "identifiedBy": [ { "type": "uri", @@ -16279,7 +15642,6 @@ "spa" ], "qualifier": "imprimeur", - "identifier": "http://www.idref.fr/08875975X", "identifiedBy": [ { "type": "uri", @@ -16304,7 +15666,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/08880058X", "identifiedBy": [ { "type": "uri", @@ -16323,7 +15684,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/088888177", "identifiedBy": [ { "type": "uri", @@ -16353,7 +15713,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/088920763", "identifiedBy": [ { "type": "uri", @@ -16372,7 +15731,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/088945332", "identifiedBy": [ { "type": "uri", @@ -16390,7 +15748,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/088984141", "identifiedBy": [ { "type": "uri", @@ -16410,7 +15767,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/088997464", "identifiedBy": [ { "type": "uri", @@ -16431,7 +15787,6 @@ "eng" ], "qualifier": "professeur de biologie cellulaire", - "identifier": "http://www.idref.fr/089425596", "identifiedBy": [ { "type": "uri", @@ -16456,7 +15811,6 @@ "eng", "fre" ], - "identifier": "http://www.idref.fr/089443675", "identifiedBy": [ { "type": "uri", @@ -16488,7 +15842,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/090159225", "identifiedBy": [ { "type": "uri", @@ -16507,7 +15860,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/09042333X", "identifiedBy": [ { "type": "uri", @@ -16529,7 +15881,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/091257174", "identifiedBy": [ { "type": "uri", @@ -16551,7 +15902,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/091546230", "identifiedBy": [ { "type": "uri", @@ -16570,7 +15920,6 @@ "language": [ "hin" ], - "identifier": "http://www.idref.fr/092002781", "identifiedBy": [ { "type": "uri", @@ -16608,7 +15957,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/092098649", "identifiedBy": [ { "type": "uri", @@ -16630,7 +15978,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/092124356", "identifiedBy": [ { "type": "uri", @@ -16648,7 +15995,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/092149561", "identifiedBy": [ { "type": "uri", @@ -16670,7 +16016,6 @@ "language": [ "tur" ], - "identifier": "http://www.idref.fr/092241549", "identifiedBy": [ { "type": "uri", @@ -16692,7 +16037,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/092249760", "identifiedBy": [ { "type": "uri", @@ -16714,7 +16058,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/092359116", "identifiedBy": [ { "type": "uri", @@ -16743,7 +16086,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/092613314", "identifiedBy": [ { "type": "uri", @@ -16763,7 +16105,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/092699987", "identifiedBy": [ { "type": "uri", @@ -16786,7 +16127,6 @@ "eng" ], "conference": true, - "identifier": "http://www.idref.fr/092726542", "identifiedBy": [ { "type": "uri", @@ -16805,7 +16145,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/092792642", "identifiedBy": [ { "type": "uri", @@ -16833,7 +16172,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/092846653", "identifiedBy": [ { "type": "uri", @@ -16855,7 +16193,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/093834470", "identifiedBy": [ { "type": "uri", @@ -16877,7 +16214,6 @@ "language": [ "hau" ], - "identifier": "http://www.idref.fr/09396997X", "identifiedBy": [ { "type": "uri", @@ -16903,7 +16239,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/094133344", "identifiedBy": [ { "type": "uri", @@ -16923,7 +16258,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/094225230", "identifiedBy": [ { "type": "uri", @@ -16946,7 +16280,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/09433434X", "identifiedBy": [ { "type": "uri", @@ -16969,7 +16302,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/094460922", "identifiedBy": [ { "type": "uri", @@ -16993,7 +16325,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/094563152", "identifiedBy": [ { "type": "uri", @@ -17013,7 +16344,6 @@ "ger" ], "conference": false, - "identifier": "http://www.idref.fr/094648980", "identifiedBy": [ { "type": "uri", @@ -17047,7 +16377,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/095038426", "identifiedBy": [ { "type": "uri", @@ -17069,7 +16398,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/095087044", "identifiedBy": [ { "type": "uri", @@ -17093,7 +16421,6 @@ "spa" ], "conference": true, - "identifier": "http://www.idref.fr/09512795X", "identifiedBy": [ { "type": "uri", @@ -17120,7 +16447,6 @@ "ger" ], "conference": false, - "identifier": "http://www.idref.fr/095171738", "identifiedBy": [ { "type": "uri", @@ -17146,7 +16472,6 @@ "bur" ], "qualifier": "Mo\u1e45\u02bf", - "identifier": "http://www.idref.fr/095227415", "identifiedBy": [ { "type": "uri", @@ -17181,7 +16506,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/095344691", "identifiedBy": [ { "type": "uri", @@ -17204,7 +16528,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/09564766X", "identifiedBy": [ { "type": "uri", @@ -17223,7 +16546,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/095775757", "identifiedBy": [ { "type": "uri", @@ -17250,7 +16572,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/095813225", "identifiedBy": [ { "type": "uri", @@ -17275,7 +16596,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/095998160", "identifiedBy": [ { "type": "uri", @@ -17294,7 +16614,6 @@ "md5": "fbdde47e08e46d0a4cdd66aa14fdb8b5", "pid": "096644389", "type": "bf:Person", - "identifier": "http://www.idref.fr/096644389", "identifiedBy": [ { "type": "uri", @@ -17315,7 +16634,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/09715010X", "identifiedBy": [ { "type": "uri", @@ -17337,7 +16655,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/097502146", "identifiedBy": [ { "type": "uri", @@ -17362,7 +16679,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/097587222", "identifiedBy": [ { "type": "uri", @@ -17393,7 +16709,6 @@ "por" ], "conference": false, - "identifier": "http://www.idref.fr/09794226X", "identifiedBy": [ { "type": "uri", @@ -17411,7 +16726,6 @@ "language": [ "dut" ], - "identifier": "http://www.idref.fr/098214381", "identifiedBy": [ { "type": "uri", @@ -17431,7 +16745,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/098413406", "identifiedBy": [ { "type": "uri", @@ -17449,7 +16762,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/09883312X", "identifiedBy": [ { "type": "uri", @@ -17471,7 +16783,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/100484522", "identifiedBy": [ { "type": "uri", @@ -17489,7 +16800,6 @@ "pid": "100570453", "type": "bf:Organisation", "conference": false, - "identifier": "http://www.idref.fr/100570453", "identifiedBy": [ { "type": "uri", @@ -17516,7 +16826,6 @@ "fre" ], "conference": true, - "identifier": "http://www.idref.fr/100930778", "identifiedBy": [ { "type": "uri", @@ -17537,7 +16846,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/101023235", "identifiedBy": [ { "type": "uri", @@ -17556,7 +16864,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/101283407", "identifiedBy": [ { "type": "uri", @@ -17575,7 +16882,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/101346654", "identifiedBy": [ { "type": "uri", @@ -17603,7 +16909,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/101397321", "identifiedBy": [ { "type": "uri", @@ -17626,7 +16931,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/101448597", "identifiedBy": [ { "type": "uri", @@ -17650,7 +16954,6 @@ "language": [ "dut" ], - "identifier": "http://www.idref.fr/102076855", "identifiedBy": [ { "type": "uri", @@ -17676,7 +16979,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/102129150", "identifiedBy": [ { "type": "uri", @@ -17695,7 +16997,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/102522170", "identifiedBy": [ { "type": "uri", @@ -17718,7 +17019,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/102616221", "identifiedBy": [ { "type": "uri", @@ -17737,7 +17037,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/103208348", "identifiedBy": [ { "type": "uri", @@ -17765,7 +17064,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/103396063", "identifiedBy": [ { "type": "uri", @@ -17787,7 +17085,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/103540695", "identifiedBy": [ { "type": "uri", @@ -17809,7 +17106,6 @@ "language": [ "ara" ], - "identifier": "http://www.idref.fr/103578560", "identifiedBy": [ { "type": "uri", @@ -17837,7 +17133,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/10359342X", "identifiedBy": [ { "type": "uri", @@ -17860,7 +17155,6 @@ "language": [ "swa" ], - "identifier": "http://www.idref.fr/103613838", "identifiedBy": [ { "type": "uri", @@ -17879,7 +17173,6 @@ "language": [ "rus" ], - "identifier": "http://www.idref.fr/10368607X", "identifiedBy": [ { "type": "uri", @@ -17904,7 +17197,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/103835458", "identifiedBy": [ { "type": "uri", @@ -17928,7 +17220,6 @@ "language": [ "und" ], - "identifier": "http://www.idref.fr/103919511", "identifiedBy": [ { "type": "uri", @@ -17948,7 +17239,6 @@ "mul" ], "conference": true, - "identifier": "http://www.idref.fr/104444126", "identifiedBy": [ { "type": "uri", @@ -17977,7 +17267,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/104506830", "identifiedBy": [ { "type": "uri", @@ -17999,7 +17288,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/105998168", "identifiedBy": [ { "type": "uri", @@ -18017,7 +17305,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/106028723", "identifiedBy": [ { "type": "uri", @@ -18041,7 +17328,6 @@ "pol" ], "conference": false, - "identifier": "http://www.idref.fr/10694956X", "identifiedBy": [ { "type": "uri", @@ -18060,7 +17346,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/106952587", "identifiedBy": [ { "type": "uri", @@ -18090,7 +17375,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/106968696", "identifiedBy": [ { "type": "uri", @@ -18109,7 +17393,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/107090538", "identifiedBy": [ { "type": "uri", @@ -18128,7 +17411,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/107702746", "identifiedBy": [ { "type": "uri", @@ -18150,7 +17432,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/108090450", "identifiedBy": [ { "type": "uri", @@ -18174,7 +17455,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/108093875", "identifiedBy": [ { "type": "uri", @@ -18194,7 +17474,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/108157873", "identifiedBy": [ { "type": "uri", @@ -18218,7 +17497,6 @@ "ita" ], "conference": false, - "identifier": "http://www.idref.fr/108462897", "identifiedBy": [ { "type": "uri", @@ -18238,7 +17516,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/108510638", "identifiedBy": [ { "type": "uri", @@ -18259,7 +17536,6 @@ "mul" ], "conference": true, - "identifier": "http://www.idref.fr/10853961X", "identifiedBy": [ { "type": "uri", @@ -18286,7 +17562,6 @@ "spa" ], "conference": true, - "identifier": "http://www.idref.fr/108882861", "identifiedBy": [ { "type": "uri", @@ -18305,7 +17580,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/108960811", "identifiedBy": [ { "type": "uri", @@ -18325,7 +17599,6 @@ "srp", "eng" ], - "identifier": "http://www.idref.fr/109075013", "identifiedBy": [ { "type": "uri", @@ -18347,7 +17620,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/109149327", "identifiedBy": [ { "type": "uri", @@ -18376,7 +17648,6 @@ "jpn", "eng" ], - "identifier": "http://www.idref.fr/109154746", "identifiedBy": [ { "type": "uri", @@ -18399,7 +17670,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/10935026X", "identifiedBy": [ { "type": "uri", @@ -18421,7 +17691,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/110078810", "identifiedBy": [ { "type": "uri", @@ -18442,7 +17711,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/110124596", "identifiedBy": [ { "type": "uri", @@ -18465,7 +17733,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/110124863", "identifiedBy": [ { "type": "uri", @@ -18493,7 +17760,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/11013253X", "identifiedBy": [ { "type": "uri", @@ -18517,7 +17783,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/11015469X", "identifiedBy": [ { "type": "uri", @@ -18544,7 +17809,6 @@ "language": [ "jpn" ], - "identifier": "http://www.idref.fr/110185366", "identifiedBy": [ { "type": "uri", @@ -18578,7 +17842,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/110195019", "identifiedBy": [ { "type": "uri", @@ -18597,7 +17860,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/11020414X", "identifiedBy": [ { "type": "uri", @@ -18617,7 +17879,6 @@ "chi" ], "qualifier": "acteur", - "identifier": "http://www.idref.fr/110240723", "identifiedBy": [ { "type": "uri", @@ -18641,7 +17902,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/110458087", "identifiedBy": [ { "type": "uri", @@ -18662,7 +17922,6 @@ "fre" ], "conference": true, - "identifier": "http://www.idref.fr/110510631", "identifiedBy": [ { "type": "uri", @@ -18693,7 +17952,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/110591119", "identifiedBy": [ { "type": "uri", @@ -18716,7 +17974,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/110725476", "identifiedBy": [ { "type": "uri", @@ -18737,7 +17994,6 @@ "language": [ "rus" ], - "identifier": "http://www.idref.fr/110735714", "identifiedBy": [ { "type": "uri", @@ -18756,7 +18012,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/11114261X", "identifiedBy": [ { "type": "uri", @@ -18776,7 +18031,6 @@ "md5": "4ad81aa99b2fee78a3093fb6f5052575", "pid": "111315387", "type": "bf:Person", - "identifier": "http://www.idref.fr/111315387", "identifiedBy": [ { "type": "uri", @@ -18798,7 +18052,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/111318459", "identifiedBy": [ { "type": "uri", @@ -18818,7 +18071,6 @@ "language": [ "lat" ], - "identifier": "http://www.idref.fr/111515890", "identifiedBy": [ { "type": "uri", @@ -18858,7 +18110,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/111524679", "identifiedBy": [ { "type": "uri", @@ -18883,7 +18134,6 @@ "ara" ], "conference": false, - "identifier": "http://www.idref.fr/111755220", "identifiedBy": [ { "type": "uri", @@ -18922,7 +18172,6 @@ "fre" ], "qualifier": "professeur de physique", - "identifier": "http://www.idref.fr/112030777", "identifiedBy": [ { "type": "uri", @@ -18944,7 +18193,6 @@ "chi" ], "conference": false, - "identifier": "http://www.idref.fr/112074863", "identifiedBy": [ { "type": "uri", @@ -18969,7 +18217,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/112113028", "identifiedBy": [ { "type": "uri", @@ -18989,7 +18236,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/112169678", "identifiedBy": [ { "type": "uri", @@ -19020,7 +18266,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/11219222X", "identifiedBy": [ { "type": "uri", @@ -19043,7 +18288,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/112238181", "identifiedBy": [ { "type": "uri", @@ -19066,7 +18310,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/11246355X", "identifiedBy": [ { "type": "uri", @@ -19084,7 +18327,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/112722024", "identifiedBy": [ { "type": "uri", @@ -19108,7 +18350,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/112795889", "identifiedBy": [ { "type": "uri", @@ -19128,7 +18369,6 @@ "fre" ], "qualifier": "auteur d'un m\u00e9moire de g\u00e9riatrie", - "identifier": "http://www.idref.fr/112913202", "identifiedBy": [ { "type": "uri", @@ -19151,7 +18391,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/112961401", "identifiedBy": [ { "type": "uri", @@ -19175,7 +18414,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/113120362", "identifiedBy": [ { "type": "uri", @@ -19204,7 +18442,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/113195931", "identifiedBy": [ { "type": "uri", @@ -19222,7 +18459,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/113204442", "identifiedBy": [ { "type": "uri", @@ -19245,7 +18481,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/113372213", "identifiedBy": [ { "type": "uri", @@ -19269,7 +18504,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/113737041", "identifiedBy": [ { "type": "uri", @@ -19288,7 +18522,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/113738048", "identifiedBy": [ { "type": "uri", @@ -19307,7 +18540,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/113753764", "identifiedBy": [ { "type": "uri", @@ -19331,7 +18563,6 @@ "spa" ], "conference": true, - "identifier": "http://www.idref.fr/113834535", "identifiedBy": [ { "type": "uri", @@ -19359,7 +18590,6 @@ "dut", "eng" ], - "identifier": "http://www.idref.fr/113915845", "identifiedBy": [ { "type": "uri", @@ -19379,7 +18609,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/114044104", "identifiedBy": [ { "type": "uri", @@ -19400,7 +18629,6 @@ "pid": "114141606", "type": "bf:Organisation", "conference": false, - "identifier": "http://www.idref.fr/114141606", "identifiedBy": [ { "type": "uri", @@ -19434,7 +18662,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/114173699", "identifiedBy": [ { "type": "uri", @@ -19464,7 +18691,6 @@ "mul" ], "conference": true, - "identifier": "http://www.idref.fr/114244057", "identifiedBy": [ { "type": "uri", @@ -19485,7 +18711,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/114270813", "identifiedBy": [ { "type": "uri", @@ -19509,7 +18734,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/11449973X", "identifiedBy": [ { "type": "uri", @@ -19531,7 +18755,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/114570337", "identifiedBy": [ { "type": "uri", @@ -19554,7 +18777,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/114673128", "identifiedBy": [ { "type": "uri", @@ -19576,7 +18798,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/11499899X", "identifiedBy": [ { "type": "uri", @@ -19599,7 +18820,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/115046917", "identifiedBy": [ { "type": "uri", @@ -19622,7 +18842,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/115078630", "identifiedBy": [ { "type": "uri", @@ -19645,7 +18864,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/115277684", "identifiedBy": [ { "type": "uri", @@ -19664,7 +18882,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/115564535", "identifiedBy": [ { "type": "uri", @@ -19681,7 +18898,6 @@ "pid": "11570793X", "type": "bf:Person", "qualifier": "chanteuse", - "identifier": "http://www.idref.fr/11570793X", "identifiedBy": [ { "type": "uri", @@ -19704,7 +18920,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/115842993", "identifiedBy": [ { "type": "uri", @@ -19723,7 +18938,6 @@ "language": [ "rus" ], - "identifier": "http://www.idref.fr/116055669", "identifiedBy": [ { "type": "uri", @@ -19748,7 +18962,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/116121556", "identifiedBy": [ { "type": "uri", @@ -19769,7 +18982,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/116142219", "identifiedBy": [ { "type": "uri", @@ -19793,7 +19005,6 @@ "fre" ], "conference": true, - "identifier": "http://www.idref.fr/11627753X", "identifiedBy": [ { "type": "uri", @@ -19820,7 +19031,6 @@ "language": [ "jpn" ], - "identifier": "http://www.idref.fr/116285125", "identifiedBy": [ { "type": "uri", @@ -19850,7 +19060,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/116293020", "identifiedBy": [ { "type": "uri", @@ -19872,7 +19081,6 @@ "language": [ "ind" ], - "identifier": "http://www.idref.fr/116436840", "identifiedBy": [ { "type": "uri", @@ -19904,7 +19112,6 @@ "language": [ "srp" ], - "identifier": "http://www.idref.fr/11649736X", "identifiedBy": [ { "type": "uri", @@ -19922,7 +19129,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/116539313", "identifiedBy": [ { "type": "uri", @@ -19949,7 +19155,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/116542306", "identifiedBy": [ { "type": "uri", @@ -19973,7 +19178,6 @@ "ita" ], "conference": false, - "identifier": "http://www.idref.fr/116771763", "identifiedBy": [ { "type": "uri", @@ -20006,7 +19210,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/117328383", "identifiedBy": [ { "type": "uri", @@ -20047,7 +19250,6 @@ "eng" ], "qualifier": "Sir", - "identifier": "http://www.idref.fr/11749464X", "identifiedBy": [ { "type": "uri", @@ -20072,7 +19274,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/117780081", "identifiedBy": [ { "type": "uri", @@ -20095,7 +19296,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/117829226", "identifiedBy": [ { "type": "uri", @@ -20117,7 +19317,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/117886920", "identifiedBy": [ { "type": "uri", @@ -20139,7 +19338,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/117982067", "identifiedBy": [ { "type": "uri", @@ -20161,7 +19359,6 @@ "mul" ], "conference": false, - "identifier": "http://www.idref.fr/118249487", "identifiedBy": [ { "type": "uri", @@ -20183,7 +19380,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/118275593", "identifiedBy": [ { "type": "uri", @@ -20213,7 +19409,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/118630245", "identifiedBy": [ { "type": "uri", @@ -20233,7 +19428,6 @@ "pid": "118895729", "type": "bf:Organisation", "conference": false, - "identifier": "http://www.idref.fr/118895729", "identifiedBy": [ { "type": "uri", @@ -20257,7 +19451,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/118964534", "identifiedBy": [ { "type": "uri", @@ -20275,7 +19468,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/119176114", "identifiedBy": [ { "type": "uri", @@ -20295,7 +19487,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/119349043", "identifiedBy": [ { "type": "uri", @@ -20317,7 +19508,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/11954945X", "identifiedBy": [ { "type": "uri", @@ -20339,7 +19529,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/119926350", "identifiedBy": [ { "type": "uri", @@ -20362,7 +19551,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/119945290", "identifiedBy": [ { "type": "uri", @@ -20386,7 +19574,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/119980924", "identifiedBy": [ { "type": "uri", @@ -20417,7 +19604,6 @@ "language": [ "jpn" ], - "identifier": "http://www.idref.fr/120051575", "identifiedBy": [ { "type": "uri", @@ -20447,7 +19633,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/120122545", "identifiedBy": [ { "type": "uri", @@ -20466,7 +19651,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/120196204", "identifiedBy": [ { "type": "uri", @@ -20488,7 +19672,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/120483076", "identifiedBy": [ { "type": "uri", @@ -20519,7 +19702,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/120678918", "identifiedBy": [ { "type": "uri", @@ -20541,7 +19723,6 @@ "mul" ], "conference": true, - "identifier": "http://www.idref.fr/120767848", "identifiedBy": [ { "type": "uri", @@ -20562,7 +19743,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/120895579", "identifiedBy": [ { "type": "uri", @@ -20581,7 +19761,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/121150283", "identifiedBy": [ { "type": "uri", @@ -20604,7 +19783,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/121151778", "identifiedBy": [ { "type": "uri", @@ -20633,7 +19811,6 @@ "ita" ], "conference": true, - "identifier": "http://www.idref.fr/121294757", "identifiedBy": [ { "type": "uri", @@ -20654,7 +19831,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/121469395", "identifiedBy": [ { "type": "uri", @@ -20678,7 +19854,6 @@ "ger" ], "conference": true, - "identifier": "http://www.idref.fr/121758419", "identifiedBy": [ { "type": "uri", @@ -20699,7 +19874,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/121801713", "identifiedBy": [ { "type": "uri", @@ -20719,7 +19893,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/121832260", "identifiedBy": [ { "type": "uri", @@ -20742,7 +19915,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/122093186", "identifiedBy": [ { "type": "uri", @@ -20761,7 +19933,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/122301374", "identifiedBy": [ { "type": "uri", @@ -20781,7 +19952,6 @@ "mul" ], "conference": false, - "identifier": "http://www.idref.fr/122411749", "identifiedBy": [ { "type": "uri", @@ -20815,7 +19985,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/122514904", "identifiedBy": [ { "type": "uri", @@ -20837,7 +20006,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/122677315", "identifiedBy": [ { "type": "uri", @@ -20858,7 +20026,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/122762142", "identifiedBy": [ { "type": "uri", @@ -20887,7 +20054,6 @@ "ita" ], "conference": false, - "identifier": "http://www.idref.fr/123006287", "identifiedBy": [ { "type": "uri", @@ -20907,7 +20073,6 @@ "rum", "fre" ], - "identifier": "http://www.idref.fr/123007089", "identifiedBy": [ { "type": "uri", @@ -20925,7 +20090,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/123240638", "identifiedBy": [ { "type": "uri", @@ -20954,7 +20118,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/123395321", "identifiedBy": [ { "type": "uri", @@ -20985,7 +20148,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/123474825", "identifiedBy": [ { "type": "uri", @@ -21008,7 +20170,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/123496225", "identifiedBy": [ { "type": "uri", @@ -21030,7 +20191,6 @@ "language": [ "tur" ], - "identifier": "http://www.idref.fr/123609836", "identifiedBy": [ { "type": "uri", @@ -21054,7 +20214,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/124179290", "identifiedBy": [ { "type": "uri", @@ -21077,7 +20236,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/12420709X", "identifiedBy": [ { "type": "uri", @@ -21100,7 +20258,6 @@ "eng", "ita" ], - "identifier": "http://www.idref.fr/124217273", "identifiedBy": [ { "type": "uri", @@ -21122,7 +20279,6 @@ "language": [ "pol" ], - "identifier": "http://www.idref.fr/12430284X", "identifiedBy": [ { "type": "uri", @@ -21143,7 +20299,6 @@ "tha" ], "conference": false, - "identifier": "http://www.idref.fr/124342078", "identifiedBy": [ { "type": "uri", @@ -21196,7 +20351,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/124497209", "identifiedBy": [ { "type": "uri", @@ -21219,7 +20373,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/124508758", "identifiedBy": [ { "type": "uri", @@ -21243,7 +20396,6 @@ "cze" ], "conference": false, - "identifier": "http://www.idref.fr/124670954", "identifiedBy": [ { "type": "uri", @@ -21265,7 +20417,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/124764916", "identifiedBy": [ { "type": "uri", @@ -21295,7 +20446,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/124806376", "identifiedBy": [ { "type": "uri", @@ -21323,7 +20473,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/125074506", "identifiedBy": [ { "type": "uri", @@ -21346,7 +20495,6 @@ "chi" ], "conference": false, - "identifier": "http://www.idref.fr/125871074", "identifiedBy": [ { "type": "uri", @@ -21379,7 +20527,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/126029784", "identifiedBy": [ { "type": "uri", @@ -21402,7 +20549,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/126078858", "identifiedBy": [ { "type": "uri", @@ -21427,7 +20573,6 @@ "ita" ], "conference": true, - "identifier": "http://www.idref.fr/126483361", "identifiedBy": [ { "type": "uri", @@ -21448,7 +20593,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/126596131", "identifiedBy": [ { "type": "uri", @@ -21468,7 +20612,6 @@ "ger" ], "conference": true, - "identifier": "http://www.idref.fr/126598371", "identifiedBy": [ { "type": "uri", @@ -21495,7 +20638,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/126698104", "identifiedBy": [ { "type": "uri", @@ -21517,7 +20659,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/127065113", "identifiedBy": [ { "type": "uri", @@ -21541,7 +20682,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/127163905", "identifiedBy": [ { "type": "uri", @@ -21563,7 +20703,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/127251502", "identifiedBy": [ { "type": "uri", @@ -21585,7 +20724,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/127287159", "identifiedBy": [ { "type": "uri", @@ -21618,7 +20756,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/127334807", "identifiedBy": [ { "type": "uri", @@ -21639,7 +20776,6 @@ "fre" ], "conference": true, - "identifier": "http://www.idref.fr/127364013", "identifiedBy": [ { "type": "uri", @@ -21660,7 +20796,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/127488790", "identifiedBy": [ { "type": "uri", @@ -21682,7 +20817,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/127521038", "identifiedBy": [ { "type": "uri", @@ -21705,7 +20839,6 @@ "eng" ], "conference": true, - "identifier": "http://www.idref.fr/127789111", "identifiedBy": [ { "type": "uri", @@ -21737,7 +20870,6 @@ "ger" ], "conference": false, - "identifier": "http://www.idref.fr/127838732", "identifiedBy": [ { "type": "uri", @@ -21768,7 +20900,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/127859829", "identifiedBy": [ { "type": "uri", @@ -21787,7 +20918,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/128116951", "identifiedBy": [ { "type": "uri", @@ -21808,7 +20938,6 @@ "eng" ], "qualifier": "Sir", - "identifier": "http://www.idref.fr/128258365", "identifiedBy": [ { "type": "uri", @@ -21827,7 +20956,6 @@ "language": [ "ara" ], - "identifier": "http://www.idref.fr/128283661", "identifiedBy": [ { "type": "uri", @@ -21856,7 +20984,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/128499877", "identifiedBy": [ { "type": "uri", @@ -21879,7 +21006,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/128529202", "identifiedBy": [ { "type": "uri", @@ -21903,7 +21029,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/128537663", "identifiedBy": [ { "type": "uri", @@ -21928,7 +21053,6 @@ "fre", "ger" ], - "identifier": "http://www.idref.fr/128585544", "identifiedBy": [ { "type": "uri", @@ -21958,7 +21082,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/128587679", "identifiedBy": [ { "type": "uri", @@ -21978,7 +21101,6 @@ "md5": "a175da0b0eea7e01193fb8c812067db2", "pid": "128590874", "type": "bf:Person", - "identifier": "http://www.idref.fr/128590874", "identifiedBy": [ { "type": "uri", @@ -21998,7 +21120,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/128657642", "identifiedBy": [ { "type": "uri", @@ -22018,7 +21139,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/129182176", "identifiedBy": [ { "type": "uri", @@ -22047,7 +21167,6 @@ "chi" ], "conference": false, - "identifier": "http://www.idref.fr/129211273", "identifiedBy": [ { "type": "uri", @@ -22080,7 +21199,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/129419915", "identifiedBy": [ { "type": "uri", @@ -22102,7 +21220,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/129558311", "identifiedBy": [ { "type": "uri", @@ -22118,7 +21235,6 @@ "md5": "b2dce3142ac020e4a0d2a2d2c6a763bf", "pid": "129801577", "type": "bf:Person", - "identifier": "http://www.idref.fr/129801577", "identifiedBy": [ { "type": "uri", @@ -22139,7 +21255,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/129871303", "identifiedBy": [ { "type": "uri", @@ -22159,7 +21274,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/129966053", "identifiedBy": [ { "type": "uri", @@ -22181,7 +21295,6 @@ "por" ], "conference": false, - "identifier": "http://www.idref.fr/129988758", "identifiedBy": [ { "type": "uri", @@ -22210,7 +21323,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/130017256", "identifiedBy": [ { "type": "uri", @@ -22232,7 +21344,6 @@ "ger" ], "conference": false, - "identifier": "http://www.idref.fr/13037962X", "identifiedBy": [ { "type": "uri", @@ -22251,7 +21362,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/130434795", "identifiedBy": [ { "type": "uri", @@ -22273,7 +21383,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/130521973", "identifiedBy": [ { "type": "uri", @@ -22297,7 +21406,6 @@ "fre" ], "qualifier": "inspectrice d\u00e9partementale de l'\u00e9ducation", - "identifier": "http://www.idref.fr/130648396", "identifiedBy": [ { "type": "uri", @@ -22317,7 +21425,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/130807508", "identifiedBy": [ { "type": "uri", @@ -22339,7 +21446,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/130809217", "identifiedBy": [ { "type": "uri", @@ -22362,7 +21468,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/131054937", "identifiedBy": [ { "type": "uri", @@ -22384,7 +21489,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/131245759", "identifiedBy": [ { "type": "uri", @@ -22408,7 +21512,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/13145269X", "identifiedBy": [ { "type": "uri", @@ -22430,7 +21533,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/131529595", "identifiedBy": [ { "type": "uri", @@ -22450,7 +21552,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/131808206", "identifiedBy": [ { "type": "uri", @@ -22479,7 +21580,6 @@ "fre" ], "qualifier": "enseignant-chercheur en math\u00e9matiques", - "identifier": "http://www.idref.fr/13185254X", "identifiedBy": [ { "type": "uri", @@ -22503,7 +21603,6 @@ "language": [ "pol" ], - "identifier": "http://www.idref.fr/132110520", "identifiedBy": [ { "type": "uri", @@ -22523,7 +21622,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/132337282", "identifiedBy": [ { "type": "uri", @@ -22546,7 +21644,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/132394065", "identifiedBy": [ { "type": "uri", @@ -22568,7 +21665,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/132436620", "identifiedBy": [ { "type": "uri", @@ -22592,7 +21688,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/132521326", "identifiedBy": [ { "type": "uri", @@ -22629,7 +21724,6 @@ "ita", "eng" ], - "identifier": "http://www.idref.fr/132740966", "identifiedBy": [ { "type": "uri", @@ -22648,7 +21742,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/132750368", "identifiedBy": [ { "type": "uri", @@ -22668,7 +21761,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/132844036", "identifiedBy": [ { "type": "uri", @@ -22687,7 +21779,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/133004503", "identifiedBy": [ { "type": "uri", @@ -22707,7 +21798,6 @@ "md5": "de13fc76021a5b187480d4e619455c1d", "pid": "13318479X", "type": "bf:Person", - "identifier": "http://www.idref.fr/13318479X", "identifiedBy": [ { "type": "uri", @@ -22725,7 +21815,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/133250717", "identifiedBy": [ { "type": "uri", @@ -22745,7 +21834,6 @@ "md5": "64a798ae49257fcc4750bbd99ca0c909", "pid": "133383369", "type": "bf:Person", - "identifier": "http://www.idref.fr/133383369", "identifiedBy": [ { "type": "uri", @@ -22763,7 +21851,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/133418278", "identifiedBy": [ { "type": "uri", @@ -22793,7 +21880,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/133532542", "identifiedBy": [ { "type": "uri", @@ -22817,7 +21903,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/133564649", "identifiedBy": [ { "type": "uri", @@ -22840,7 +21925,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/13375412X", "identifiedBy": [ { "type": "uri", @@ -22862,7 +21946,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/133765687", "identifiedBy": [ { "type": "uri", @@ -22886,7 +21969,6 @@ "ita" ], "conference": false, - "identifier": "http://www.idref.fr/133823261", "identifiedBy": [ { "type": "uri", @@ -22918,7 +22000,6 @@ "eng", "fre" ], - "identifier": "http://www.idref.fr/133972887", "identifiedBy": [ { "type": "uri", @@ -22938,7 +22019,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/134024672", "identifiedBy": [ { "type": "uri", @@ -22959,7 +22039,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/134273850", "identifiedBy": [ { "type": "uri", @@ -22985,7 +22064,6 @@ "md5": "d32aafc0e83198dcb0b31f9d45bc6c7d", "pid": "134382005", "type": "bf:Person", - "identifier": "http://www.idref.fr/134382005", "identifiedBy": [ { "type": "uri", @@ -23021,7 +22099,6 @@ "fre" ], "qualifier": "m\u00e9decin", - "identifier": "http://www.idref.fr/134448251", "identifiedBy": [ { "type": "uri", @@ -23045,7 +22122,6 @@ "fre" ], "conference": true, - "identifier": "http://www.idref.fr/134449568", "identifiedBy": [ { "type": "uri", @@ -23072,7 +22148,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/134489500", "identifiedBy": [ { "type": "uri", @@ -23100,7 +22175,6 @@ "ita", "fre" ], - "identifier": "http://www.idref.fr/135192013", "identifiedBy": [ { "type": "uri", @@ -23123,7 +22197,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/135315042", "identifiedBy": [ { "type": "uri", @@ -23146,7 +22219,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/135562120", "identifiedBy": [ { "type": "uri", @@ -23168,7 +22240,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/135612934", "identifiedBy": [ { "type": "uri", @@ -23185,7 +22256,6 @@ "md5": "7bd930e0142a7d8a977f3ef32df57355", "pid": "135683122", "type": "bf:Person", - "identifier": "http://www.idref.fr/135683122", "identifiedBy": [ { "type": "uri", @@ -23203,7 +22273,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/135688590", "identifiedBy": [ { "type": "uri", @@ -23229,7 +22298,6 @@ "por" ], "conference": false, - "identifier": "http://www.idref.fr/135736234", "identifiedBy": [ { "type": "uri", @@ -23254,7 +22322,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/135975484", "identifiedBy": [ { "type": "uri", @@ -23279,7 +22346,6 @@ "eng" ], "conference": true, - "identifier": "http://www.idref.fr/136123821", "identifiedBy": [ { "type": "uri", @@ -23300,7 +22366,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/136235212", "identifiedBy": [ { "type": "uri", @@ -23322,7 +22387,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/13632536X", "identifiedBy": [ { "type": "uri", @@ -23345,7 +22409,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/136495117", "identifiedBy": [ { "type": "uri", @@ -23371,7 +22434,6 @@ "eng" ], "conference": true, - "identifier": "http://www.idref.fr/136556906", "identifiedBy": [ { "type": "uri", @@ -23393,7 +22455,6 @@ "ita" ], "conference": false, - "identifier": "http://www.idref.fr/136738850", "identifiedBy": [ { "type": "uri", @@ -23424,7 +22485,6 @@ "language": [ "jpn" ], - "identifier": "http://www.idref.fr/136803784", "identifiedBy": [ { "type": "uri", @@ -23448,7 +22508,6 @@ "ita" ], "conference": true, - "identifier": "http://www.idref.fr/136864279", "identifiedBy": [ { "type": "uri", @@ -23472,7 +22531,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/136864473", "identifiedBy": [ { "type": "uri", @@ -23492,7 +22550,6 @@ "language": [ "mul" ], - "identifier": "http://www.idref.fr/136864554", "identifiedBy": [ { "type": "uri", @@ -23511,7 +22568,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/136893163", "identifiedBy": [ { "type": "uri", @@ -23542,7 +22598,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/137193548", "identifiedBy": [ { "type": "uri", @@ -23564,7 +22619,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/137341563", "identifiedBy": [ { "type": "uri", @@ -23588,7 +22642,6 @@ "language": [ "chi" ], - "identifier": "http://www.idref.fr/137405723", "identifiedBy": [ { "type": "uri", @@ -23614,7 +22667,6 @@ "dut" ], "conference": false, - "identifier": "http://www.idref.fr/137424795", "identifiedBy": [ { "type": "uri", @@ -23638,7 +22690,6 @@ "chi" ], "conference": false, - "identifier": "http://www.idref.fr/137586248", "identifiedBy": [ { "type": "uri", @@ -23686,7 +22737,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/137635400", "identifiedBy": [ { "type": "uri", @@ -23708,7 +22758,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/137657412", "identifiedBy": [ { "type": "uri", @@ -23735,7 +22784,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/137724780", "identifiedBy": [ { "type": "uri", @@ -23758,7 +22806,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/137773927", "identifiedBy": [ { "type": "uri", @@ -23781,7 +22828,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/137790872", "identifiedBy": [ { "type": "uri", @@ -23805,7 +22851,6 @@ "language": [ "por" ], - "identifier": "http://www.idref.fr/138022550", "identifiedBy": [ { "type": "uri", @@ -23845,7 +22890,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/138023468", "identifiedBy": [ { "type": "uri", @@ -23873,7 +22917,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/138484945", "identifiedBy": [ { "type": "uri", @@ -23896,7 +22939,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/138508518", "identifiedBy": [ { "type": "uri", @@ -23931,7 +22973,6 @@ "eng" ], "conference": true, - "identifier": "http://www.idref.fr/138783578", "identifiedBy": [ { "type": "uri", @@ -23953,7 +22994,6 @@ "fre" ], "qualifier": "docteur en chirurgie dentaire", - "identifier": "http://www.idref.fr/138905312", "identifiedBy": [ { "type": "uri", @@ -23974,7 +23014,6 @@ "ita" ], "conference": false, - "identifier": "http://www.idref.fr/138933871", "identifiedBy": [ { "type": "uri", @@ -23997,7 +23036,6 @@ "eng" ], "conference": true, - "identifier": "http://www.idref.fr/13905443X", "identifiedBy": [ { "type": "uri", @@ -24020,7 +23058,6 @@ "language": [ "jpn" ], - "identifier": "http://www.idref.fr/139135723", "identifiedBy": [ { "type": "uri", @@ -24049,7 +23086,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/139148256", "identifiedBy": [ { "type": "uri", @@ -24072,7 +23108,6 @@ "language": [ "hrv" ], - "identifier": "http://www.idref.fr/139175520", "identifiedBy": [ { "type": "uri", @@ -24092,7 +23127,6 @@ "eng", "chi" ], - "identifier": "http://www.idref.fr/139416846", "identifiedBy": [ { "type": "uri", @@ -24115,7 +23149,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/139490752", "identifiedBy": [ { "type": "uri", @@ -24137,7 +23170,6 @@ "language": [ "arm" ], - "identifier": "http://www.idref.fr/13949992X", "identifiedBy": [ { "type": "uri", @@ -24173,7 +23205,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/139513760", "identifiedBy": [ { "type": "uri", @@ -24197,7 +23228,6 @@ "ger" ], "conference": false, - "identifier": "http://www.idref.fr/139752528", "identifiedBy": [ { "type": "uri", @@ -24223,7 +23253,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/139755969", "identifiedBy": [ { "type": "uri", @@ -24243,7 +23272,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/139815201", "identifiedBy": [ { "type": "uri", @@ -24262,7 +23290,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/139830383", "identifiedBy": [ { "type": "uri", @@ -24286,7 +23313,6 @@ "eng" ], "conference": true, - "identifier": "http://www.idref.fr/139890629", "identifiedBy": [ { "type": "uri", @@ -24311,7 +23337,6 @@ "pid": "139975055", "type": "bf:Person", "qualifier": "r\u00e9alisateur", - "identifier": "http://www.idref.fr/139975055", "identifiedBy": [ { "type": "uri", @@ -24334,7 +23359,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/140038493", "identifiedBy": [ { "type": "uri", @@ -24354,7 +23378,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/140057196", "identifiedBy": [ { "type": "uri", @@ -24376,7 +23399,6 @@ "language": [ "hin" ], - "identifier": "http://www.idref.fr/140162070", "identifiedBy": [ { "type": "uri", @@ -24413,7 +23435,6 @@ "eng", "ger" ], - "identifier": "http://www.idref.fr/140317414", "identifiedBy": [ { "type": "uri", @@ -24434,7 +23455,6 @@ "md5": "e393dd5afc591beb763f721552355dcc", "pid": "140354336", "type": "bf:Person", - "identifier": "http://www.idref.fr/140354336", "identifiedBy": [ { "type": "uri", @@ -24456,7 +23476,6 @@ "por" ], "conference": false, - "identifier": "http://www.idref.fr/140407235", "identifiedBy": [ { "type": "uri", @@ -24482,7 +23501,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/140489436", "identifiedBy": [ { "type": "uri", @@ -24502,7 +23520,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/140494383", "identifiedBy": [ { "type": "uri", @@ -24526,7 +23543,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/140558756", "identifiedBy": [ { "type": "uri", @@ -24555,7 +23571,6 @@ "language": [ "pol" ], - "identifier": "http://www.idref.fr/140708987", "identifiedBy": [ { "type": "uri", @@ -24577,7 +23592,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/140773118", "identifiedBy": [ { "type": "uri", @@ -24606,7 +23620,6 @@ "mul" ], "conference": true, - "identifier": "http://www.idref.fr/140821325", "identifiedBy": [ { "type": "uri", @@ -24629,7 +23642,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/142598542", "identifiedBy": [ { "type": "uri", @@ -24651,7 +23663,6 @@ "language": [ "por" ], - "identifier": "http://www.idref.fr/142611379", "identifiedBy": [ { "type": "uri", @@ -24683,7 +23694,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/142638145", "identifiedBy": [ { "type": "uri", @@ -24707,7 +23717,6 @@ "spa" ], "conference": false, - "identifier": "http://www.idref.fr/142668745", "identifiedBy": [ { "type": "uri", @@ -24742,7 +23751,6 @@ "eng", "cze" ], - "identifier": "http://www.idref.fr/142741299", "identifiedBy": [ { "type": "uri", @@ -24765,7 +23773,6 @@ "chi" ], "conference": false, - "identifier": "http://www.idref.fr/142838411", "identifiedBy": [ { "type": "uri", @@ -24824,7 +23831,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/142843229", "identifiedBy": [ { "type": "uri", @@ -24843,7 +23849,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/142877832", "identifiedBy": [ { "type": "uri", @@ -24865,7 +23870,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/142918342", "identifiedBy": [ { "type": "uri", @@ -24894,7 +23898,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/14299443X", "identifiedBy": [ { "type": "uri", @@ -24917,7 +23920,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/142996734", "identifiedBy": [ { "type": "uri", @@ -24939,7 +23941,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/143028537", "identifiedBy": [ { "type": "uri", @@ -24963,7 +23964,6 @@ "spa" ], "conference": false, - "identifier": "http://www.idref.fr/143076310", "identifiedBy": [ { "type": "uri", @@ -24988,7 +23988,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/143098713", "identifiedBy": [ { "type": "uri", @@ -25017,7 +24016,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/143120743", "identifiedBy": [ { "type": "uri", @@ -25041,7 +24039,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/143151851", "identifiedBy": [ { "type": "uri", @@ -25060,7 +24057,6 @@ "language": [ "pol" ], - "identifier": "http://www.idref.fr/143329790", "identifiedBy": [ { "type": "uri", @@ -25084,7 +24080,6 @@ "language": [ "egy" ], - "identifier": "http://www.idref.fr/143330772", "identifiedBy": [ { "type": "uri", @@ -25114,7 +24109,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/143403826", "identifiedBy": [ { "type": "uri", @@ -25134,7 +24128,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/143470280", "identifiedBy": [ { "type": "uri", @@ -25161,7 +24154,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/143860747", "identifiedBy": [ { "type": "uri", @@ -25185,7 +24177,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/144467909", "identifiedBy": [ { "type": "uri", @@ -25205,7 +24196,6 @@ "fre", "dut" ], - "identifier": "http://www.idref.fr/144487179", "identifiedBy": [ { "type": "uri", @@ -25224,7 +24214,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/144499401", "identifiedBy": [ { "type": "uri", @@ -25248,7 +24237,6 @@ "mul" ], "conference": false, - "identifier": "http://www.idref.fr/144580403", "identifiedBy": [ { "type": "uri", @@ -25274,7 +24262,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/144614421", "identifiedBy": [ { "type": "uri", @@ -25303,7 +24290,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/144636077", "identifiedBy": [ { "type": "uri", @@ -25323,7 +24309,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/145090515", "identifiedBy": [ { "type": "uri", @@ -25341,7 +24326,6 @@ "language": [ "pol" ], - "identifier": "http://www.idref.fr/145209512", "identifiedBy": [ { "type": "uri", @@ -25360,7 +24344,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/145286444", "identifiedBy": [ { "type": "uri", @@ -25379,7 +24362,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/145296741", "identifiedBy": [ { "type": "uri", @@ -25399,7 +24381,6 @@ "language": [ "rus" ], - "identifier": "http://www.idref.fr/145350177", "identifiedBy": [ { "type": "uri", @@ -25433,7 +24414,6 @@ "und", "kor" ], - "identifier": "http://www.idref.fr/145351297", "identifiedBy": [ { "type": "uri", @@ -25455,7 +24435,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/145373487", "identifiedBy": [ { "type": "uri", @@ -25478,7 +24457,6 @@ "spa" ], "conference": false, - "identifier": "http://www.idref.fr/145630218", "identifiedBy": [ { "type": "uri", @@ -25497,7 +24475,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/145636496", "identifiedBy": [ { "type": "uri", @@ -25519,7 +24496,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/145661806", "identifiedBy": [ { "type": "uri", @@ -25538,7 +24514,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/14566841X", "identifiedBy": [ { "type": "uri", @@ -25567,7 +24542,6 @@ "language": [ "rum" ], - "identifier": "http://www.idref.fr/145729613", "identifiedBy": [ { "type": "uri", @@ -25589,7 +24563,6 @@ "language": [ "gre" ], - "identifier": "http://www.idref.fr/14577838X", "identifiedBy": [ { "type": "uri", @@ -25617,7 +24590,6 @@ "language": [ "rus" ], - "identifier": "http://www.idref.fr/145888185", "identifiedBy": [ { "type": "uri", @@ -25645,7 +24617,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/145959783", "identifiedBy": [ { "type": "uri", @@ -25664,7 +24635,6 @@ "fre" ], "conference": true, - "identifier": "http://www.idref.fr/146054210", "identifiedBy": [ { "type": "uri", @@ -25686,7 +24656,6 @@ "language": [ "dut" ], - "identifier": "http://www.idref.fr/146086457", "identifiedBy": [ { "type": "uri", @@ -25703,7 +24672,6 @@ "pid": "146148754", "type": "bf:Organisation", "conference": false, - "identifier": "http://www.idref.fr/146148754", "identifiedBy": [ { "type": "uri", @@ -25728,7 +24696,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/146270401", "identifiedBy": [ { "type": "uri", @@ -25751,7 +24718,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/146872584", "identifiedBy": [ { "type": "uri", @@ -25775,7 +24741,6 @@ "chi", "eng" ], - "identifier": "http://www.idref.fr/146874595", "identifiedBy": [ { "type": "uri", @@ -25798,7 +24763,6 @@ "fre" ], "qualifier": "moniale rasophore", - "identifier": "http://www.idref.fr/146985109", "identifiedBy": [ { "type": "uri", @@ -25827,7 +24791,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/147004268", "identifiedBy": [ { "type": "uri", @@ -25849,7 +24812,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/147054672", "identifiedBy": [ { "type": "uri", @@ -25868,7 +24830,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/147179955", "identifiedBy": [ { "type": "uri", @@ -25897,7 +24858,6 @@ "language": [ "rus" ], - "identifier": "http://www.idref.fr/147233429", "identifiedBy": [ { "type": "uri", @@ -25919,7 +24879,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/147297192", "identifiedBy": [ { "type": "uri", @@ -25941,7 +24900,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/147331781", "identifiedBy": [ { "type": "uri", @@ -25967,7 +24925,6 @@ "language": [ "und" ], - "identifier": "http://www.idref.fr/147383579", "identifiedBy": [ { "type": "uri", @@ -25990,7 +24947,6 @@ "ger" ], "conference": false, - "identifier": "http://www.idref.fr/147406889", "identifiedBy": [ { "type": "uri", @@ -26022,7 +24978,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/147465885", "identifiedBy": [ { "type": "uri", @@ -26047,7 +25002,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/147528712", "identifiedBy": [ { "type": "uri", @@ -26076,7 +25030,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/147644305", "identifiedBy": [ { "type": "uri", @@ -26099,7 +25052,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/147700094", "identifiedBy": [ { "type": "uri", @@ -26122,7 +25074,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/147759420", "identifiedBy": [ { "type": "uri", @@ -26146,7 +25097,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/147906423", "identifiedBy": [ { "type": "uri", @@ -26168,7 +25118,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/147934540", "identifiedBy": [ { "type": "uri", @@ -26191,7 +25140,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/148064884", "identifiedBy": [ { "type": "uri", @@ -26218,7 +25166,6 @@ "eng" ], "qualifier": "pasteur", - "identifier": "http://www.idref.fr/148113761", "identifiedBy": [ { "type": "uri", @@ -26238,7 +25185,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/148169643", "identifiedBy": [ { "type": "uri", @@ -26261,7 +25207,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/148202330", "identifiedBy": [ { "type": "uri", @@ -26281,7 +25226,6 @@ "md5": "a7209789df758b4c4448492171557f15", "pid": "148265286", "type": "bf:Person", - "identifier": "http://www.idref.fr/148265286", "identifiedBy": [ { "type": "uri", @@ -26305,7 +25249,6 @@ "language": [ "ind" ], - "identifier": "http://www.idref.fr/148350887", "identifiedBy": [ { "type": "uri", @@ -26335,7 +25278,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/148352006", "identifiedBy": [ { "type": "uri", @@ -26364,7 +25306,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/148411754", "identifiedBy": [ { "type": "uri", @@ -26386,7 +25327,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/148443230", "identifiedBy": [ { "type": "uri", @@ -26407,7 +25347,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/148457568", "identifiedBy": [ { "type": "uri", @@ -26430,7 +25369,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/148462081", "identifiedBy": [ { "type": "uri", @@ -26453,7 +25391,6 @@ "ita" ], "conference": true, - "identifier": "http://www.idref.fr/148468020", "identifiedBy": [ { "type": "uri", @@ -26474,7 +25411,6 @@ "eng" ], "conference": true, - "identifier": "http://www.idref.fr/148481418", "identifiedBy": [ { "type": "uri", @@ -26495,7 +25431,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/14849952X", "identifiedBy": [ { "type": "uri", @@ -26518,7 +25453,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/148509088", "identifiedBy": [ { "type": "uri", @@ -26541,7 +25475,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/148637450", "identifiedBy": [ { "type": "uri", @@ -26561,7 +25494,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/14869506X", "identifiedBy": [ { "type": "uri", @@ -26584,7 +25516,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/148702090", "identifiedBy": [ { "type": "uri", @@ -26607,7 +25538,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/148746349", "identifiedBy": [ { "type": "uri", @@ -26629,7 +25559,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/148754899", "identifiedBy": [ { "type": "uri", @@ -26650,7 +25579,6 @@ "pid": "148755097", "type": "bf:Organisation", "conference": false, - "identifier": "http://www.idref.fr/148755097", "identifiedBy": [ { "type": "uri", @@ -26678,7 +25606,6 @@ "language": [ "und" ], - "identifier": "http://www.idref.fr/148766587", "identifiedBy": [ { "type": "uri", @@ -26697,7 +25624,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/148833101", "identifiedBy": [ { "type": "uri", @@ -26720,7 +25646,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/148842836", "identifiedBy": [ { "type": "uri", @@ -26742,7 +25667,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/148913679", "identifiedBy": [ { "type": "uri", @@ -26758,7 +25682,6 @@ "md5": "6aec83727b6de4b4b42f3593e105bdbc", "pid": "148935710", "type": "bf:Person", - "identifier": "http://www.idref.fr/148935710", "identifiedBy": [ { "type": "uri", @@ -26777,7 +25700,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/14894227X", "identifiedBy": [ { "type": "uri", @@ -26800,7 +25722,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/148944000", "identifiedBy": [ { "type": "uri", @@ -26823,7 +25744,6 @@ "language": [ "tam" ], - "identifier": "http://www.idref.fr/149110804", "identifiedBy": [ { "type": "uri", @@ -26853,7 +25773,6 @@ "language": [ "rus" ], - "identifier": "http://www.idref.fr/149112866", "identifiedBy": [ { "type": "uri", @@ -26883,7 +25802,6 @@ "language": [ "por" ], - "identifier": "http://www.idref.fr/149224516", "identifiedBy": [ { "type": "uri", @@ -26899,7 +25817,6 @@ "md5": "191849ff6efcbd2e07ddade04683febd", "pid": "149233949", "type": "bf:Person", - "identifier": "http://www.idref.fr/149233949", "identifiedBy": [ { "type": "uri", @@ -26917,7 +25834,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/149252161", "identifiedBy": [ { "type": "uri", @@ -26939,7 +25855,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/149264380", "identifiedBy": [ { "type": "uri", @@ -26958,7 +25873,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/14928053X", "identifiedBy": [ { "type": "uri", @@ -26982,7 +25896,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/149301065", "identifiedBy": [ { "type": "uri", @@ -27004,7 +25917,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/149357826", "identifiedBy": [ { "type": "uri", @@ -27027,7 +25939,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/149375565", "identifiedBy": [ { "type": "uri", @@ -27050,7 +25961,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/149501706", "identifiedBy": [ { "type": "uri", @@ -27073,7 +25983,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/149728182", "identifiedBy": [ { "type": "uri", @@ -27096,7 +26005,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/149733100", "identifiedBy": [ { "type": "uri", @@ -27117,7 +26025,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/149834802", "identifiedBy": [ { "type": "uri", @@ -27140,7 +26047,6 @@ "language": [ "pol" ], - "identifier": "http://www.idref.fr/149877706", "identifiedBy": [ { "type": "uri", @@ -27162,7 +26068,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/149944586", "identifiedBy": [ { "type": "uri", @@ -27181,7 +26086,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/149955847", "identifiedBy": [ { "type": "uri", @@ -27202,7 +26106,6 @@ "ara", "fre" ], - "identifier": "http://www.idref.fr/149968302", "identifiedBy": [ { "type": "uri", @@ -27224,7 +26127,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/149990871", "identifiedBy": [ { "type": "uri", @@ -27247,7 +26149,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/149999399", "identifiedBy": [ { "type": "uri", @@ -27269,7 +26170,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/150102836", "identifiedBy": [ { "type": "uri", @@ -27288,7 +26188,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/150196261", "identifiedBy": [ { "type": "uri", @@ -27311,7 +26210,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/150296541", "identifiedBy": [ { "type": "uri", @@ -27334,7 +26232,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/150503717", "identifiedBy": [ { "type": "uri", @@ -27359,7 +26256,6 @@ "md5": "4ec1630cad122f25eb879bd00bbaaba9", "pid": "150552343", "type": "bf:Person", - "identifier": "http://www.idref.fr/150552343", "identifiedBy": [ { "type": "uri", @@ -27381,7 +26277,6 @@ "fre" ], "qualifier": "commissaire d'exposition", - "identifier": "http://www.idref.fr/150572492", "identifiedBy": [ { "type": "uri", @@ -27401,7 +26296,6 @@ "md5": "9df0ea9fe2cbd61868a20afcfb7c217f", "pid": "150592884", "type": "bf:Person", - "identifier": "http://www.idref.fr/150592884", "identifiedBy": [ { "type": "uri", @@ -27428,7 +26322,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/150599811", "identifiedBy": [ { "type": "uri", @@ -27450,7 +26343,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/150610203", "identifiedBy": [ { "type": "uri", @@ -27473,7 +26365,6 @@ "ger" ], "conference": false, - "identifier": "http://www.idref.fr/150630085", "identifiedBy": [ { "type": "uri", @@ -27493,7 +26384,6 @@ "md5": "9742d7d84594bde0ce537214a3c3b0f9", "pid": "150685793", "type": "bf:Person", - "identifier": "http://www.idref.fr/150685793", "identifiedBy": [ { "type": "uri", @@ -27513,7 +26403,6 @@ "pid": "150700768", "type": "bf:Person", "qualifier": "photographe", - "identifier": "http://www.idref.fr/150700768", "identifiedBy": [ { "type": "uri", @@ -27534,7 +26423,6 @@ "language": [ "pol" ], - "identifier": "http://www.idref.fr/150724527", "identifiedBy": [ { "type": "uri", @@ -27566,7 +26454,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/150813325", "identifiedBy": [ { "type": "uri", @@ -27596,7 +26483,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/150840691", "identifiedBy": [ { "type": "uri", @@ -27625,7 +26511,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/151028702", "identifiedBy": [ { "type": "uri", @@ -27645,7 +26530,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/15117430X", "identifiedBy": [ { "type": "uri", @@ -27666,7 +26550,6 @@ "chi" ], "conference": false, - "identifier": "http://www.idref.fr/151217742", "identifiedBy": [ { "type": "uri", @@ -27699,7 +26582,6 @@ "fre", "lat" ], - "identifier": "http://www.idref.fr/151341885", "identifiedBy": [ { "type": "uri", @@ -27722,7 +26604,6 @@ "language": [ "por" ], - "identifier": "http://www.idref.fr/151481733", "identifiedBy": [ { "type": "uri", @@ -27746,7 +26627,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/151508712", "identifiedBy": [ { "type": "uri", @@ -27769,7 +26649,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/151580715", "identifiedBy": [ { "type": "uri", @@ -27785,7 +26664,6 @@ "md5": "99665f930f699b3ecbd396d991122eb3", "pid": "151775192", "type": "bf:Person", - "identifier": "http://www.idref.fr/151775192", "identifiedBy": [ { "type": "uri", @@ -27806,7 +26684,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/151813590", "identifiedBy": [ { "type": "uri", @@ -27827,7 +26704,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/151884951", "identifiedBy": [ { "type": "uri", @@ -27846,7 +26722,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/151889511", "identifiedBy": [ { "type": "uri", @@ -27869,7 +26744,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/152016872", "identifiedBy": [ { "type": "uri", @@ -27889,7 +26763,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/152049193", "identifiedBy": [ { "type": "uri", @@ -27912,7 +26785,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/152071210", "identifiedBy": [ { "type": "uri", @@ -27935,7 +26807,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/152270345", "identifiedBy": [ { "type": "uri", @@ -27966,7 +26837,6 @@ "ara", "fre" ], - "identifier": "http://www.idref.fr/152355731", "identifiedBy": [ { "type": "uri", @@ -27989,7 +26859,6 @@ "dut" ], "conference": false, - "identifier": "http://www.idref.fr/152491589", "identifiedBy": [ { "type": "uri", @@ -28011,7 +26880,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/152513655", "identifiedBy": [ { "type": "uri", @@ -28042,7 +26910,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/152519866", "identifiedBy": [ { "type": "uri", @@ -28072,7 +26939,6 @@ "rus" ], "conference": false, - "identifier": "http://www.idref.fr/152563024", "identifiedBy": [ { "type": "uri", @@ -28104,7 +26970,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/152706038", "identifiedBy": [ { "type": "uri", @@ -28126,7 +26991,6 @@ "language": [ "chi" ], - "identifier": "http://www.idref.fr/152722270", "identifiedBy": [ { "type": "uri", @@ -28151,7 +27015,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/15282300X", "identifiedBy": [ { "type": "uri", @@ -28174,7 +27037,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/152852093", "identifiedBy": [ { "type": "uri", @@ -28196,7 +27058,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/152901353", "identifiedBy": [ { "type": "uri", @@ -28218,7 +27079,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/152940898", "identifiedBy": [ { "type": "uri", @@ -28240,7 +27100,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/15295208X", "identifiedBy": [ { "type": "uri", @@ -28263,7 +27122,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/152972250", "identifiedBy": [ { "type": "uri", @@ -28283,7 +27141,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/153081147", "identifiedBy": [ { "type": "uri", @@ -28306,7 +27163,6 @@ "mul" ], "conference": true, - "identifier": "http://www.idref.fr/153136480", "identifiedBy": [ { "type": "uri", @@ -28333,7 +27189,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/153410647", "identifiedBy": [ { "type": "uri", @@ -28364,7 +27219,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/153446544", "identifiedBy": [ { "type": "uri", @@ -28383,7 +27237,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/153516631", "identifiedBy": [ { "type": "uri", @@ -28405,7 +27258,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/153533056", "identifiedBy": [ { "type": "uri", @@ -28427,7 +27279,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/153541342", "identifiedBy": [ { "type": "uri", @@ -28449,7 +27300,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/153546247", "identifiedBy": [ { "type": "uri", @@ -28472,7 +27322,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/153613556", "identifiedBy": [ { "type": "uri", @@ -28492,7 +27341,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/153776951", "identifiedBy": [ { "type": "uri", @@ -28514,7 +27362,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/153973145", "identifiedBy": [ { "type": "uri", @@ -28537,7 +27384,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/15401916X", "identifiedBy": [ { "type": "uri", @@ -28560,7 +27406,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/154190551", "identifiedBy": [ { "type": "uri", @@ -28582,7 +27427,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/154659622", "identifiedBy": [ { "type": "uri", @@ -28602,7 +27446,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/154744395", "identifiedBy": [ { "type": "uri", @@ -28631,7 +27474,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/154778532", "identifiedBy": [ { "type": "uri", @@ -28650,7 +27492,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/154820903", "identifiedBy": [ { "type": "uri", @@ -28673,7 +27514,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/154833649", "identifiedBy": [ { "type": "uri", @@ -28695,7 +27535,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/154889415", "identifiedBy": [ { "type": "uri", @@ -28718,7 +27557,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/154972673", "identifiedBy": [ { "type": "uri", @@ -28739,7 +27577,6 @@ "spa" ], "conference": false, - "identifier": "http://www.idref.fr/155128965", "identifiedBy": [ { "type": "uri", @@ -28762,7 +27599,6 @@ "eng" ], "conference": true, - "identifier": "http://www.idref.fr/155289292", "identifiedBy": [ { "type": "uri", @@ -28789,7 +27625,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/155309668", "identifiedBy": [ { "type": "uri", @@ -28810,7 +27645,6 @@ "spa" ], "conference": false, - "identifier": "http://www.idref.fr/155413163", "identifiedBy": [ { "type": "uri", @@ -28840,7 +27674,6 @@ "spa" ], "conference": false, - "identifier": "http://www.idref.fr/155413414", "identifiedBy": [ { "type": "uri", @@ -28867,7 +27700,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/155519107", "identifiedBy": [ { "type": "uri", @@ -28898,7 +27730,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/155533797", "identifiedBy": [ { "type": "uri", @@ -28922,7 +27753,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/155592122", "identifiedBy": [ { "type": "uri", @@ -28942,7 +27772,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/155733370", "identifiedBy": [ { "type": "uri", @@ -28966,7 +27795,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/155746936", "identifiedBy": [ { "type": "uri", @@ -28999,7 +27827,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/155760947", "identifiedBy": [ { "type": "uri", @@ -29021,7 +27848,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/155852639", "identifiedBy": [ { "type": "uri", @@ -29043,7 +27869,6 @@ "language": [ "und" ], - "identifier": "http://www.idref.fr/15589899X", "identifiedBy": [ { "type": "uri", @@ -29062,7 +27887,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/155925261", "identifiedBy": [ { "type": "uri", @@ -29082,7 +27906,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/155933604", "identifiedBy": [ { "type": "uri", @@ -29105,7 +27928,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/155942204", "identifiedBy": [ { "type": "uri", @@ -29128,7 +27950,6 @@ "language": [ "por" ], - "identifier": "http://www.idref.fr/156048701", "identifiedBy": [ { "type": "uri", @@ -29151,7 +27972,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/156053241", "identifiedBy": [ { "type": "uri", @@ -29178,7 +27998,6 @@ "pid": "156252813", "type": "bf:Organisation", "conference": false, - "identifier": "http://www.idref.fr/156252813", "identifiedBy": [ { "type": "uri", @@ -29204,7 +28023,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/156288435", "identifiedBy": [ { "type": "uri", @@ -29227,7 +28045,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/156335336", "identifiedBy": [ { "type": "uri", @@ -29250,7 +28067,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/156363690", "identifiedBy": [ { "type": "uri", @@ -29277,7 +28093,6 @@ "md5": "4e23cce18d93c88247a1da5d115da155", "pid": "156539063", "type": "bf:Person", - "identifier": "http://www.idref.fr/156539063", "identifiedBy": [ { "type": "uri", @@ -29300,7 +28115,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/156563932", "identifiedBy": [ { "type": "uri", @@ -29324,7 +28138,6 @@ "language": [ "pol" ], - "identifier": "http://www.idref.fr/156590948", "identifiedBy": [ { "type": "uri", @@ -29344,7 +28157,6 @@ "pid": "156838524", "type": "bf:Organisation", "conference": false, - "identifier": "http://www.idref.fr/156838524", "identifiedBy": [ { "type": "uri", @@ -29365,7 +28177,6 @@ "pid": "156838613", "type": "bf:Organisation", "conference": false, - "identifier": "http://www.idref.fr/156838613", "identifiedBy": [ { "type": "uri", @@ -29398,7 +28209,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/156954761", "identifiedBy": [ { "type": "uri", @@ -29419,7 +28229,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/15704856X", "identifiedBy": [ { "type": "uri", @@ -29441,7 +28250,6 @@ "language": [ "ara" ], - "identifier": "http://www.idref.fr/157222330", "identifiedBy": [ { "type": "uri", @@ -29483,7 +28291,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/157227170", "identifiedBy": [ { "type": "uri", @@ -29510,7 +28317,6 @@ "pid": "157315088", "type": "bf:Organisation", "conference": false, - "identifier": "http://www.idref.fr/157315088", "identifiedBy": [ { "type": "uri", @@ -29532,7 +28338,6 @@ "pid": "157332047", "type": "bf:Organisation", "conference": false, - "identifier": "http://www.idref.fr/157332047", "identifiedBy": [ { "type": "uri", @@ -29555,7 +28360,6 @@ "pid": "157333507", "type": "bf:Organisation", "conference": false, - "identifier": "http://www.idref.fr/157333507", "identifiedBy": [ { "type": "uri", @@ -29580,7 +28384,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/157526860", "identifiedBy": [ { "type": "uri", @@ -29604,7 +28407,6 @@ "ita" ], "qualifier": "auteur de bandes dessin\u00e9es", - "identifier": "http://www.idref.fr/157650154", "identifiedBy": [ { "type": "uri", @@ -29633,7 +28435,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/157856283", "identifiedBy": [ { "type": "uri", @@ -29655,7 +28456,6 @@ "language": [ "pol" ], - "identifier": "http://www.idref.fr/157881997", "identifiedBy": [ { "type": "uri", @@ -29674,7 +28474,6 @@ "language": [ "slv" ], - "identifier": "http://www.idref.fr/157995860", "identifiedBy": [ { "type": "uri", @@ -29694,7 +28493,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/158085647", "identifiedBy": [ { "type": "uri", @@ -29717,7 +28515,6 @@ "spa" ], "conference": false, - "identifier": "http://www.idref.fr/158118294", "identifiedBy": [ { "type": "uri", @@ -29733,7 +28530,6 @@ "md5": "8267cdb6fb8734cc3ea325b2fddb1a0d", "pid": "158365186", "type": "bf:Person", - "identifier": "http://www.idref.fr/158365186", "identifiedBy": [ { "type": "uri", @@ -29757,7 +28553,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/158552180", "identifiedBy": [ { "type": "uri", @@ -29779,7 +28574,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/158638247", "identifiedBy": [ { "type": "uri", @@ -29796,7 +28590,6 @@ "md5": "84e1812b19990780938658aef3a847fb", "pid": "158762274", "type": "bf:Person", - "identifier": "http://www.idref.fr/158762274", "identifiedBy": [ { "type": "uri", @@ -29832,7 +28625,6 @@ "fre" ], "qualifier": "g\u00e9ologue", - "identifier": "http://www.idref.fr/158778235", "identifiedBy": [ { "type": "uri", @@ -29861,7 +28653,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/158991583", "identifiedBy": [ { "type": "uri", @@ -29877,7 +28668,6 @@ "md5": "9e006b16bec2af6c58b6af29cebd7709", "pid": "158996577", "type": "bf:Person", - "identifier": "http://www.idref.fr/158996577", "identifiedBy": [ { "type": "uri", @@ -29906,7 +28696,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/159184495", "identifiedBy": [ { "type": "uri", @@ -29927,7 +28716,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/159278201", "identifiedBy": [ { "type": "uri", @@ -29948,7 +28736,6 @@ "md5": "718aa2ed5df92c8b8a770f4da0f61a15", "pid": "159640989", "type": "bf:Person", - "identifier": "http://www.idref.fr/159640989", "identifiedBy": [ { "type": "uri", @@ -29964,7 +28751,6 @@ "pid": "159658152", "type": "bf:Person", "qualifier": "musicien", - "identifier": "http://www.idref.fr/159658152", "identifiedBy": [ { "type": "uri", @@ -29987,7 +28773,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/159687306", "identifiedBy": [ { "type": "uri", @@ -30010,7 +28795,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/159765315", "identifiedBy": [ { "type": "uri", @@ -30030,7 +28814,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/159775744", "identifiedBy": [ { "type": "uri", @@ -30053,7 +28836,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/159852684", "identifiedBy": [ { "type": "uri", @@ -30076,7 +28858,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/160193974", "identifiedBy": [ { "type": "uri", @@ -30102,7 +28883,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/160196620", "identifiedBy": [ { "type": "uri", @@ -30134,7 +28914,6 @@ "eng" ], "conference": true, - "identifier": "http://www.idref.fr/160342465", "identifiedBy": [ { "type": "uri", @@ -30155,7 +28934,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/160359619", "identifiedBy": [ { "type": "uri", @@ -30179,7 +28957,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/160424275", "identifiedBy": [ { "type": "uri", @@ -30198,7 +28975,6 @@ "md5": "090f077e3b629e97e15613df09cd95be", "pid": "160613701", "type": "bf:Person", - "identifier": "http://www.idref.fr/160613701", "identifiedBy": [ { "type": "uri", @@ -30221,7 +28997,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/160635543", "identifiedBy": [ { "type": "uri", @@ -30241,7 +29016,6 @@ "md5": "97122e0c35f6cfa198bf03b000fd2377", "pid": "160773318", "type": "bf:Person", - "identifier": "http://www.idref.fr/160773318", "identifiedBy": [ { "type": "uri", @@ -30271,7 +29045,6 @@ "eng" ], "conference": true, - "identifier": "http://www.idref.fr/160837065", "identifiedBy": [ { "type": "uri", @@ -30292,7 +29065,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/16113307X", "identifiedBy": [ { "type": "uri", @@ -30315,7 +29087,6 @@ "spa", "eng" ], - "identifier": "http://www.idref.fr/161148689", "identifiedBy": [ { "type": "uri", @@ -30337,7 +29108,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/161301142", "identifiedBy": [ { "type": "uri", @@ -30357,7 +29127,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/161367070", "identifiedBy": [ { "type": "uri", @@ -30378,7 +29147,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/16165407X", "identifiedBy": [ { "type": "uri", @@ -30407,7 +29175,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/161696325", "identifiedBy": [ { "type": "uri", @@ -30429,7 +29196,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/161996302", "identifiedBy": [ { "type": "uri", @@ -30449,7 +29215,6 @@ "language": [ "dut" ], - "identifier": "http://www.idref.fr/162046065", "identifiedBy": [ { "type": "uri", @@ -30480,7 +29245,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/162138997", "identifiedBy": [ { "type": "uri", @@ -30499,7 +29263,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/162154224", "identifiedBy": [ { "type": "uri", @@ -30522,7 +29285,6 @@ "language": [ "jpn" ], - "identifier": "http://www.idref.fr/16216193X", "identifiedBy": [ { "type": "uri", @@ -30552,7 +29314,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/162196407", "identifiedBy": [ { "type": "uri", @@ -30575,7 +29336,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/162320264", "identifiedBy": [ { "type": "uri", @@ -30597,7 +29357,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/162452659", "identifiedBy": [ { "type": "uri", @@ -30629,7 +29388,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/162460163", "identifiedBy": [ { "type": "uri", @@ -30649,7 +29407,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/163232857", "identifiedBy": [ { "type": "uri", @@ -30682,7 +29439,6 @@ "md5": "09158a99c7e85c240dca92e7d8b35837", "pid": "163250030", "type": "bf:Person", - "identifier": "http://www.idref.fr/163250030", "identifiedBy": [ { "type": "uri", @@ -30705,7 +29461,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/163880433", "identifiedBy": [ { "type": "uri", @@ -30729,7 +29484,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/164105301", "identifiedBy": [ { "type": "uri", @@ -30751,7 +29505,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/164529640", "identifiedBy": [ { "type": "uri", @@ -30772,7 +29525,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/164530363", "identifiedBy": [ { "type": "uri", @@ -30802,7 +29554,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/164539972", "identifiedBy": [ { "type": "uri", @@ -30828,7 +29579,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/164600620", "identifiedBy": [ { "type": "uri", @@ -30851,7 +29601,6 @@ "mul" ], "conference": true, - "identifier": "http://www.idref.fr/164604820", "identifiedBy": [ { "type": "uri", @@ -30879,7 +29628,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/164708782", "identifiedBy": [ { "type": "uri", @@ -30904,7 +29652,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/16480224X", "identifiedBy": [ { "type": "uri", @@ -30926,7 +29673,6 @@ "language": [ "jpn" ], - "identifier": "http://www.idref.fr/16481079X", "identifiedBy": [ { "type": "uri", @@ -30956,7 +29702,6 @@ "ukr" ], "conference": false, - "identifier": "http://www.idref.fr/164855580", "identifiedBy": [ { "type": "uri", @@ -31006,7 +29751,6 @@ "language": [ "rus" ], - "identifier": "http://www.idref.fr/164948368", "identifiedBy": [ { "type": "uri", @@ -31032,7 +29776,6 @@ "fin", "eng" ], - "identifier": "http://www.idref.fr/165030968", "identifiedBy": [ { "type": "uri", @@ -31055,7 +29798,6 @@ "language": [ "jpn" ], - "identifier": "http://www.idref.fr/165099054", "identifiedBy": [ { "type": "uri", @@ -31084,7 +29826,6 @@ "language": [ "jpn" ], - "identifier": "http://www.idref.fr/165139455", "identifiedBy": [ { "type": "uri", @@ -31120,7 +29861,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/165153687", "identifiedBy": [ { "type": "uri", @@ -31140,7 +29880,6 @@ "kor", "eng" ], - "identifier": "http://www.idref.fr/16530569X", "identifiedBy": [ { "type": "uri", @@ -31161,7 +29900,6 @@ "jpn" ], "conference": false, - "identifier": "http://www.idref.fr/165425229", "identifiedBy": [ { "type": "uri", @@ -31188,7 +29926,6 @@ "ger" ], "conference": false, - "identifier": "http://www.idref.fr/165647876", "identifiedBy": [ { "type": "uri", @@ -31205,7 +29942,6 @@ "pid": "165825324", "type": "bf:Organisation", "conference": false, - "identifier": "http://www.idref.fr/165825324", "identifiedBy": [ { "type": "uri", @@ -31234,7 +29970,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/165842822", "identifiedBy": [ { "type": "uri", @@ -31257,7 +29992,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/165846771", "identifiedBy": [ { "type": "uri", @@ -31290,7 +30024,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/166452912", "identifiedBy": [ { "type": "uri", @@ -31320,7 +30053,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/166452955", "identifiedBy": [ { "type": "uri", @@ -31343,7 +30075,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/16647729X", "identifiedBy": [ { "type": "uri", @@ -31375,7 +30106,6 @@ "jpn" ], "conference": false, - "identifier": "http://www.idref.fr/166533971", "identifiedBy": [ { "type": "uri", @@ -31404,7 +30134,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/166601551", "identifiedBy": [ { "type": "uri", @@ -31423,7 +30152,6 @@ "pid": "166827886", "type": "bf:Organisation", "conference": false, - "identifier": "http://www.idref.fr/166827886", "identifiedBy": [ { "type": "uri", @@ -31445,7 +30173,6 @@ "md5": "4a4292029369f29d2ae5f43e0b116ae7", "pid": "167143565", "type": "bf:Person", - "identifier": "http://www.idref.fr/167143565", "identifiedBy": [ { "type": "uri", @@ -31476,7 +30203,6 @@ "spa" ], "conference": false, - "identifier": "http://www.idref.fr/167149369", "identifiedBy": [ { "type": "uri", @@ -31497,7 +30223,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/167228862", "identifiedBy": [ { "type": "uri", @@ -31522,7 +30247,6 @@ "eng" ], "conference": true, - "identifier": "http://www.idref.fr/16734613X", "identifiedBy": [ { "type": "uri", @@ -31543,7 +30267,6 @@ "language": [ "hin" ], - "identifier": "http://www.idref.fr/16737740X", "identifiedBy": [ { "type": "uri", @@ -31565,7 +30288,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/16746499X", "identifiedBy": [ { "type": "uri", @@ -31585,7 +30307,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/167467549", "identifiedBy": [ { "type": "uri", @@ -31605,7 +30326,6 @@ "language": [ "dut" ], - "identifier": "http://www.idref.fr/167597213", "identifiedBy": [ { "type": "uri", @@ -31633,7 +30353,6 @@ "language": [ "pol" ], - "identifier": "http://www.idref.fr/167843052", "identifiedBy": [ { "type": "uri", @@ -31649,7 +30368,6 @@ "md5": "6915c2f50fec0f92fca1659827ed175d", "pid": "167900587", "type": "bf:Person", - "identifier": "http://www.idref.fr/167900587", "identifiedBy": [ { "type": "uri", @@ -31667,7 +30385,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/167901842", "identifiedBy": [ { "type": "uri", @@ -31685,7 +30402,6 @@ "pid": "167994689", "type": "bf:Organisation", "conference": false, - "identifier": "http://www.idref.fr/167994689", "identifiedBy": [ { "type": "uri", @@ -31719,7 +30435,6 @@ "language": [ "cze" ], - "identifier": "http://www.idref.fr/168060973", "identifiedBy": [ { "type": "uri", @@ -31738,7 +30453,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/168391996", "identifiedBy": [ { "type": "uri", @@ -31762,7 +30476,6 @@ "dut" ], "conference": false, - "identifier": "http://www.idref.fr/168510332", "identifiedBy": [ { "type": "uri", @@ -31793,7 +30506,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/168633248", "identifiedBy": [ { "type": "uri", @@ -31816,7 +30528,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/168647567", "identifiedBy": [ { "type": "uri", @@ -31836,7 +30547,6 @@ "mul" ], "conference": false, - "identifier": "http://www.idref.fr/168676761", "identifiedBy": [ { "type": "uri", @@ -31873,7 +30583,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/168926962", "identifiedBy": [ { "type": "uri", @@ -31895,7 +30604,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/168968614", "identifiedBy": [ { "type": "uri", @@ -31917,7 +30625,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/169159914", "identifiedBy": [ { "type": "uri", @@ -31940,7 +30647,6 @@ "chi" ], "conference": false, - "identifier": "http://www.idref.fr/169352501", "identifiedBy": [ { "type": "uri", @@ -31965,7 +30671,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/169383695", "identifiedBy": [ { "type": "uri", @@ -31987,7 +30692,6 @@ "language": [ "por" ], - "identifier": "http://www.idref.fr/16961834X", "identifiedBy": [ { "type": "uri", @@ -32007,7 +30711,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/169818098", "identifiedBy": [ { "type": "uri", @@ -32025,7 +30728,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/169852253", "identifiedBy": [ { "type": "uri", @@ -32044,7 +30746,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/169905187", "identifiedBy": [ { "type": "uri", @@ -32066,7 +30767,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/17000404X", "identifiedBy": [ { "type": "uri", @@ -32085,7 +30785,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/170042650", "identifiedBy": [ { "type": "uri", @@ -32111,7 +30810,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/170128687", "identifiedBy": [ { "type": "uri", @@ -32134,7 +30832,6 @@ "language": [ "rus" ], - "identifier": "http://www.idref.fr/170276708", "identifiedBy": [ { "type": "uri", @@ -32163,7 +30860,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/170444368", "identifiedBy": [ { "type": "uri", @@ -32197,7 +30893,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/170457257", "identifiedBy": [ { "type": "uri", @@ -32220,7 +30915,6 @@ "spa" ], "conference": false, - "identifier": "http://www.idref.fr/170479862", "identifiedBy": [ { "type": "uri", @@ -32242,7 +30936,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/170696413", "identifiedBy": [ { "type": "uri", @@ -32272,7 +30965,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/170792188", "identifiedBy": [ { "type": "uri", @@ -32296,7 +30988,6 @@ "eng" ], "qualifier": "baron Oriel", - "identifier": "http://www.idref.fr/170798828", "identifiedBy": [ { "type": "uri", @@ -32322,7 +31013,6 @@ "md5": "8960a52ab7b7048843ba4e55fcee4ca9", "pid": "170804291", "type": "bf:Person", - "identifier": "http://www.idref.fr/170804291", "identifiedBy": [ { "type": "uri", @@ -32345,7 +31035,6 @@ "ita" ], "conference": false, - "identifier": "http://www.idref.fr/171073444", "identifiedBy": [ { "type": "uri", @@ -32380,7 +31069,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/171330943", "identifiedBy": [ { "type": "uri", @@ -32402,7 +31090,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/17141599X", "identifiedBy": [ { "type": "uri", @@ -32426,7 +31113,6 @@ "md5": "a34580c57bd46a9f89a0c3aad5a9ac5a", "pid": "171790944", "type": "bf:Person", - "identifier": "http://www.idref.fr/171790944", "identifiedBy": [ { "type": "uri", @@ -32448,7 +31134,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/171811534", "identifiedBy": [ { "type": "uri", @@ -32465,7 +31150,6 @@ "md5": "2b0700e555e62081af72b30169c4fd77", "pid": "172309239", "type": "bf:Person", - "identifier": "http://www.idref.fr/172309239", "identifiedBy": [ { "type": "uri", @@ -32494,7 +31178,6 @@ "language": [ "ukr" ], - "identifier": "http://www.idref.fr/172595347", "identifiedBy": [ { "type": "uri", @@ -32526,7 +31209,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/172735319", "identifiedBy": [ { "type": "uri", @@ -32548,7 +31230,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/174120745", "identifiedBy": [ { "type": "uri", @@ -32567,7 +31248,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/174162790", "identifiedBy": [ { "type": "uri", @@ -32593,7 +31273,6 @@ "ger" ], "qualifier": "m\u00e9decin", - "identifier": "http://www.idref.fr/174180039", "identifiedBy": [ { "type": "uri", @@ -32619,7 +31298,6 @@ "md5": "6cb3ed4de2e1518e4a9a6956f520220e", "pid": "174469470", "type": "bf:Person", - "identifier": "http://www.idref.fr/174469470", "identifiedBy": [ { "type": "uri", @@ -32642,7 +31320,6 @@ "language": [ "jpn" ], - "identifier": "http://www.idref.fr/174571623", "identifiedBy": [ { "type": "uri", @@ -32673,7 +31350,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/174595174", "identifiedBy": [ { "type": "uri", @@ -32695,7 +31371,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/174757131", "identifiedBy": [ { "type": "uri", @@ -32714,7 +31389,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/175070180", "identifiedBy": [ { "type": "uri", @@ -32734,7 +31408,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/175084661", "identifiedBy": [ { "type": "uri", @@ -32754,7 +31427,6 @@ "language": [ "rus" ], - "identifier": "http://www.idref.fr/175177880", "identifiedBy": [ { "type": "uri", @@ -32783,7 +31455,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/175622914", "identifiedBy": [ { "type": "uri", @@ -32802,7 +31473,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/175664528", "identifiedBy": [ { "type": "uri", @@ -32825,7 +31495,6 @@ "language": [ "por" ], - "identifier": "http://www.idref.fr/175917434", "identifiedBy": [ { "type": "uri", @@ -32857,7 +31526,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/17637874X", "identifiedBy": [ { "type": "uri", @@ -32875,7 +31543,6 @@ "md5": "12b26a3b9683e7ad2ab086e71b265897", "pid": "176586350", "type": "bf:Person", - "identifier": "http://www.idref.fr/176586350", "identifiedBy": [ { "type": "uri", @@ -32893,7 +31560,6 @@ "md5": "b17b43e3841c9dd344b1d5789cf9ddd2", "pid": "176752781", "type": "bf:Person", - "identifier": "http://www.idref.fr/176752781", "identifiedBy": [ { "type": "uri", @@ -32921,7 +31587,6 @@ "fre" ], "qualifier": "\u00e9crivain", - "identifier": "http://www.idref.fr/176776613", "identifiedBy": [ { "type": "uri", @@ -32951,7 +31616,6 @@ "eng" ], "conference": true, - "identifier": "http://www.idref.fr/176834540", "identifiedBy": [ { "type": "uri", @@ -32978,7 +31642,6 @@ "language": [ "cze" ], - "identifier": "http://www.idref.fr/176929738", "identifiedBy": [ { "type": "uri", @@ -33003,7 +31666,6 @@ "ita", "eng" ], - "identifier": "http://www.idref.fr/177081724", "identifiedBy": [ { "type": "uri", @@ -33026,7 +31688,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/17718101X", "identifiedBy": [ { "type": "uri", @@ -33049,7 +31710,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/177181516", "identifiedBy": [ { "type": "uri", @@ -33073,7 +31733,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/17719166X", "identifiedBy": [ { "type": "uri", @@ -33091,7 +31750,6 @@ "md5": "86d019869feef5098c61250243c7e950", "pid": "177498056", "type": "bf:Person", - "identifier": "http://www.idref.fr/177498056", "identifiedBy": [ { "type": "uri", @@ -33109,7 +31767,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/177564229", "identifiedBy": [ { "type": "uri", @@ -33139,7 +31796,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/177597933", "identifiedBy": [ { "type": "uri", @@ -33160,7 +31816,6 @@ "eng" ], "conference": true, - "identifier": "http://www.idref.fr/177966793", "identifiedBy": [ { "type": "uri", @@ -33181,7 +31836,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/178055328", "identifiedBy": [ { "type": "uri", @@ -33205,7 +31859,6 @@ "mul" ], "conference": false, - "identifier": "http://www.idref.fr/178123889", "identifiedBy": [ { "type": "uri", @@ -33236,7 +31889,6 @@ "spa" ], "conference": false, - "identifier": "http://www.idref.fr/178129887", "identifiedBy": [ { "type": "uri", @@ -33252,7 +31904,6 @@ "md5": "1abf3261aed5a5796ad7479a2b59ce7e", "pid": "178131059", "type": "bf:Person", - "identifier": "http://www.idref.fr/178131059", "identifiedBy": [ { "type": "uri", @@ -33271,7 +31922,6 @@ "spa" ], "conference": false, - "identifier": "http://www.idref.fr/178302430", "identifiedBy": [ { "type": "uri", @@ -33303,7 +31953,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/178403431", "identifiedBy": [ { "type": "uri", @@ -33324,7 +31973,6 @@ "md5": "89752487158603599f93a073308a3111", "pid": "178642932", "type": "bf:Person", - "identifier": "http://www.idref.fr/178642932", "identifiedBy": [ { "type": "uri", @@ -33343,7 +31991,6 @@ "pid": "178656275", "type": "bf:Organisation", "conference": true, - "identifier": "http://www.idref.fr/178656275", "identifiedBy": [ { "type": "uri", @@ -33362,7 +32009,6 @@ "language": [ "jpn" ], - "identifier": "http://www.idref.fr/178750166", "identifiedBy": [ { "type": "uri", @@ -33392,7 +32038,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/178887463", "identifiedBy": [ { "type": "uri", @@ -33416,7 +32061,6 @@ "ita" ], "conference": false, - "identifier": "http://www.idref.fr/178950823", "identifiedBy": [ { "type": "uri", @@ -33443,7 +32087,6 @@ "md5": "3b978a0ad4161f1a18771473637e5335", "pid": "179358103", "type": "bf:Person", - "identifier": "http://www.idref.fr/179358103", "identifiedBy": [ { "type": "uri", @@ -33459,7 +32102,6 @@ "md5": "5cd65b839e8f82d23db2952865919723", "pid": "179410059", "type": "bf:Person", - "identifier": "http://www.idref.fr/179410059", "identifiedBy": [ { "type": "uri", @@ -33478,7 +32120,6 @@ "mul" ], "conference": true, - "identifier": "http://www.idref.fr/179487183", "identifiedBy": [ { "type": "uri", @@ -33507,7 +32148,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/179957805", "identifiedBy": [ { "type": "uri", @@ -33529,7 +32169,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/180123580", "identifiedBy": [ { "type": "uri", @@ -33565,7 +32204,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/180177494", "identifiedBy": [ { "type": "uri", @@ -33596,7 +32234,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/180568892", "identifiedBy": [ { "type": "uri", @@ -33618,7 +32255,6 @@ "language": [ "por" ], - "identifier": "http://www.idref.fr/180999699", "identifiedBy": [ { "type": "uri", @@ -33649,7 +32285,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/18102540X", "identifiedBy": [ { "type": "uri", @@ -33664,7 +32299,6 @@ "md5": "0051a1ee2aebb40775fe1cd637ccf873", "pid": "181054825", "type": "bf:Person", - "identifier": "http://www.idref.fr/181054825", "identifiedBy": [ { "type": "uri", @@ -33680,7 +32314,6 @@ "md5": "e8a391a854b9501b3c119e9cb1e68dc3", "pid": "181132931", "type": "bf:Person", - "identifier": "http://www.idref.fr/181132931", "identifiedBy": [ { "type": "uri", @@ -33698,7 +32331,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/181254506", "identifiedBy": [ { "type": "uri", @@ -33721,7 +32353,6 @@ "mul" ], "conference": false, - "identifier": "http://www.idref.fr/181256037", "identifiedBy": [ { "type": "uri", @@ -33752,7 +32383,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/181345404", "identifiedBy": [ { "type": "uri", @@ -33771,7 +32401,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/181448793", "identifiedBy": [ { "type": "uri", @@ -33799,7 +32428,6 @@ "language": [ "chi" ], - "identifier": "http://www.idref.fr/181483513", "identifiedBy": [ { "type": "uri", @@ -33826,7 +32454,6 @@ "md5": "e99a131286907bbac5d21bc817ff5d41", "pid": "181732149", "type": "bf:Person", - "identifier": "http://www.idref.fr/181732149", "identifiedBy": [ { "type": "uri", @@ -33847,7 +32474,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/181863111", "identifiedBy": [ { "type": "uri", @@ -33874,7 +32500,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/182214184", "identifiedBy": [ { "type": "uri", @@ -33897,7 +32522,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/182358534", "identifiedBy": [ { "type": "uri", @@ -33919,7 +32543,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/182624250", "identifiedBy": [ { "type": "uri", @@ -33941,7 +32564,6 @@ "language": [ "por" ], - "identifier": "http://www.idref.fr/182625575", "identifiedBy": [ { "type": "uri", @@ -33964,7 +32586,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/182629589", "identifiedBy": [ { "type": "uri", @@ -33983,7 +32604,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/182693198", "identifiedBy": [ { "type": "uri", @@ -33998,7 +32618,6 @@ "md5": "bf94d4f6baabb7237cb537ee64aa676a", "pid": "182842819", "type": "bf:Person", - "identifier": "http://www.idref.fr/182842819", "identifiedBy": [ { "type": "uri", @@ -34025,7 +32644,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/183243641", "identifiedBy": [ { "type": "uri", @@ -34046,7 +32664,6 @@ "srp" ], "conference": true, - "identifier": "http://www.idref.fr/183245504", "identifiedBy": [ { "type": "uri", @@ -34072,7 +32689,6 @@ "language": [ "rus" ], - "identifier": "http://www.idref.fr/183295765", "identifiedBy": [ { "type": "uri", @@ -34102,7 +32718,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/183379861", "identifiedBy": [ { "type": "uri", @@ -34123,7 +32738,6 @@ "fre" ], "qualifier": "agr\u00e9g\u00e9 de physique", - "identifier": "http://www.idref.fr/183426967", "identifiedBy": [ { "type": "uri", @@ -34144,7 +32758,6 @@ "pid": "183511956", "type": "bf:Organisation", "conference": false, - "identifier": "http://www.idref.fr/183511956", "identifiedBy": [ { "type": "uri", @@ -34174,7 +32787,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/183544129", "identifiedBy": [ { "type": "uri", @@ -34199,7 +32811,6 @@ "eng", "fre" ], - "identifier": "http://www.idref.fr/183723341", "identifiedBy": [ { "type": "uri", @@ -34224,7 +32835,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/183871065", "identifiedBy": [ { "type": "uri", @@ -34254,7 +32864,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/18397574X", "identifiedBy": [ { "type": "uri", @@ -34274,7 +32883,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/184093546", "identifiedBy": [ { "type": "uri", @@ -34300,7 +32908,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/18439631X", "identifiedBy": [ { "type": "uri", @@ -34331,7 +32938,6 @@ "fre" ], "qualifier": "photographe", - "identifier": "http://www.idref.fr/184529891", "identifiedBy": [ { "type": "uri", @@ -34355,7 +32961,6 @@ "por", "eng" ], - "identifier": "http://www.idref.fr/184614686", "identifiedBy": [ { "type": "uri", @@ -34378,7 +32983,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/184909961", "identifiedBy": [ { "type": "uri", @@ -34398,7 +33002,6 @@ "dut" ], "conference": false, - "identifier": "http://www.idref.fr/185067050", "identifiedBy": [ { "type": "uri", @@ -34430,7 +33033,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/185108385", "identifiedBy": [ { "type": "uri", @@ -34459,7 +33061,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/185152023", "identifiedBy": [ { "type": "uri", @@ -34483,7 +33084,6 @@ "fre" ], "conference": true, - "identifier": "http://www.idref.fr/185165249", "identifiedBy": [ { "type": "uri", @@ -34504,7 +33104,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/185264352", "identifiedBy": [ { "type": "uri", @@ -34527,7 +33126,6 @@ "spa" ], "conference": false, - "identifier": "http://www.idref.fr/18526557X", "identifiedBy": [ { "type": "uri", @@ -34551,7 +33149,6 @@ "md5": "0f21fc47d74ffb96d920c53e3c77691e", "pid": "18530396X", "type": "bf:Person", - "identifier": "http://www.idref.fr/18530396X", "identifiedBy": [ { "type": "uri", @@ -34571,7 +33168,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/185446167", "identifiedBy": [ { "type": "uri", @@ -34596,7 +33192,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/185446221", "identifiedBy": [ { "type": "uri", @@ -34642,7 +33237,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/185512461", "identifiedBy": [ { "type": "uri", @@ -34664,7 +33258,6 @@ "language": [ "hun" ], - "identifier": "http://www.idref.fr/185627935", "identifiedBy": [ { "type": "uri", @@ -34688,7 +33281,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/185740936", "identifiedBy": [ { "type": "uri", @@ -34710,7 +33302,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/185904300", "identifiedBy": [ { "type": "uri", @@ -34739,7 +33330,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/186075480", "identifiedBy": [ { "type": "uri", @@ -34762,7 +33352,6 @@ "ita" ], "qualifier": "b\u00e9n\u00e9dictin", - "identifier": "http://www.idref.fr/186152396", "identifiedBy": [ { "type": "uri", @@ -34795,7 +33384,6 @@ "language": [ "jpn" ], - "identifier": "http://www.idref.fr/186272758", "identifiedBy": [ { "type": "uri", @@ -34824,7 +33412,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/186354614", "identifiedBy": [ { "type": "uri", @@ -34850,7 +33437,6 @@ "tam" ], "qualifier": "\u0b95\u0ba3\u0bc7\u0b9a\u0ba9\u0bcd", - "identifier": "http://www.idref.fr/18642597X", "identifiedBy": [ { "type": "uri", @@ -34880,7 +33466,6 @@ "language": [ "tam" ], - "identifier": "http://www.idref.fr/186429495", "identifiedBy": [ { "type": "uri", @@ -34911,7 +33496,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/187118914", "identifiedBy": [ { "type": "uri", @@ -34939,7 +33523,6 @@ "language": [ "zul" ], - "identifier": "http://www.idref.fr/187432627", "identifiedBy": [ { "type": "uri", @@ -34958,7 +33541,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/187440085", "identifiedBy": [ { "type": "uri", @@ -34982,7 +33564,6 @@ "tha" ], "qualifier": "\u0e2d\u0e19\u0e31\u0e19\u0e15\u0e4c \u0e21\u0e42\u0e19\u0e27\u0e07\u0e28\u0e4c", - "identifier": "http://www.idref.fr/187474192", "identifiedBy": [ { "type": "uri", @@ -35017,7 +33598,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/187512272", "identifiedBy": [ { "type": "uri", @@ -35041,7 +33621,6 @@ "spa" ], "conference": false, - "identifier": "http://www.idref.fr/187515441", "identifiedBy": [ { "type": "uri", @@ -35062,7 +33641,6 @@ "eng", "fre" ], - "identifier": "http://www.idref.fr/187519374", "identifiedBy": [ { "type": "uri", @@ -35084,7 +33662,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/18786893X", "identifiedBy": [ { "type": "uri", @@ -35101,7 +33678,6 @@ "md5": "13406a4dbe956521d025892367e5839f", "pid": "188048383", "type": "bf:Person", - "identifier": "http://www.idref.fr/188048383", "identifiedBy": [ { "type": "uri", @@ -35119,7 +33695,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/188624295", "identifiedBy": [ { "type": "uri", @@ -35141,7 +33716,6 @@ "language": [ "cze" ], - "identifier": "http://www.idref.fr/188652647", "identifiedBy": [ { "type": "uri", @@ -35163,7 +33737,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/188721665", "identifiedBy": [ { "type": "uri", @@ -35186,7 +33759,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/188848614", "identifiedBy": [ { "type": "uri", @@ -35208,7 +33780,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/18897394X", "identifiedBy": [ { "type": "uri", @@ -35232,7 +33803,6 @@ "cze", "slv" ], - "identifier": "http://www.idref.fr/189006161", "identifiedBy": [ { "type": "uri", @@ -35254,7 +33824,6 @@ "fre", "ira" ], - "identifier": "http://www.idref.fr/189240113", "identifiedBy": [ { "type": "uri", @@ -35277,7 +33846,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/189252138", "identifiedBy": [ { "type": "uri", @@ -35301,7 +33869,6 @@ "chi" ], "qualifier": "professeur de fran\u00e7ais", - "identifier": "http://www.idref.fr/189322454", "identifiedBy": [ { "type": "uri", @@ -35328,7 +33895,6 @@ "ger" ], "conference": false, - "identifier": "http://www.idref.fr/189510145", "identifiedBy": [ { "type": "uri", @@ -35347,7 +33913,6 @@ "language": [ "jpn" ], - "identifier": "http://www.idref.fr/189789581", "identifiedBy": [ { "type": "uri", @@ -35377,7 +33942,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/189897678", "identifiedBy": [ { "type": "uri", @@ -35396,7 +33960,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/189921080", "identifiedBy": [ { "type": "uri", @@ -35419,7 +33982,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/190050721", "identifiedBy": [ { "type": "uri", @@ -35438,7 +34000,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/190056002", "identifiedBy": [ { "type": "uri", @@ -35464,7 +34025,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/190064323", "identifiedBy": [ { "type": "uri", @@ -35479,7 +34039,6 @@ "md5": "e0a5a7d78adba6083735272b6d0d8c34", "pid": "190122277", "type": "bf:Person", - "identifier": "http://www.idref.fr/190122277", "identifiedBy": [ { "type": "uri", @@ -35498,7 +34057,6 @@ "eng" ], "conference": true, - "identifier": "http://www.idref.fr/190133139", "identifiedBy": [ { "type": "uri", @@ -35525,7 +34083,6 @@ "ita" ], "conference": false, - "identifier": "http://www.idref.fr/190148667", "identifiedBy": [ { "type": "uri", @@ -35555,7 +34112,6 @@ "language": [ "hrv" ], - "identifier": "http://www.idref.fr/19024951X", "identifiedBy": [ { "type": "uri", @@ -35586,7 +34142,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/190365420", "identifiedBy": [ { "type": "uri", @@ -35605,7 +34160,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/190401370", "identifiedBy": [ { "type": "uri", @@ -35624,7 +34178,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/190408413", "identifiedBy": [ { "type": "uri", @@ -35648,7 +34201,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/190629525", "identifiedBy": [ { "type": "uri", @@ -35678,7 +34230,6 @@ "spa", "eng" ], - "identifier": "http://www.idref.fr/190679204", "identifiedBy": [ { "type": "uri", @@ -35701,7 +34252,6 @@ "language": [ "dut" ], - "identifier": "http://www.idref.fr/190701285", "identifiedBy": [ { "type": "uri", @@ -35730,7 +34280,6 @@ "language": [ "rus" ], - "identifier": "http://www.idref.fr/190708085", "identifiedBy": [ { "type": "uri", @@ -35769,7 +34318,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/190712120", "identifiedBy": [ { "type": "uri", @@ -35790,7 +34338,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/190913142", "identifiedBy": [ { "type": "uri", @@ -35817,7 +34364,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/19105254X", "identifiedBy": [ { "type": "uri", @@ -35840,7 +34386,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/191057142", "identifiedBy": [ { "type": "uri", @@ -35855,7 +34400,6 @@ "md5": "641f7ce3670aa0538b080fe4d6cf89ec", "pid": "19107425X", "type": "bf:Person", - "identifier": "http://www.idref.fr/19107425X", "identifiedBy": [ { "type": "uri", @@ -35874,7 +34418,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/191305928", "identifiedBy": [ { "type": "uri", @@ -35896,7 +34439,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/191591335", "identifiedBy": [ { "type": "uri", @@ -35916,7 +34458,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/191603449", "identifiedBy": [ { "type": "uri", @@ -35939,7 +34480,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/191644315", "identifiedBy": [ { "type": "uri", @@ -35969,7 +34509,6 @@ "ger" ], "qualifier": "M\u00e9decin", - "identifier": "http://www.idref.fr/191710849", "numeration": "19..-19..?", "identifiedBy": [ { @@ -35993,7 +34532,6 @@ "fre" ], "conference": true, - "identifier": "http://www.idref.fr/191721166", "identifiedBy": [ { "type": "uri", @@ -36027,7 +34565,6 @@ "gre" ], "conference": false, - "identifier": "http://www.idref.fr/191808105", "identifiedBy": [ { "type": "uri", @@ -36060,7 +34597,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/192012401", "identifiedBy": [ { "type": "uri", @@ -36081,7 +34617,6 @@ "pid": "192166506", "type": "bf:Organisation", "conference": false, - "identifier": "http://www.idref.fr/192166506", "identifiedBy": [ { "type": "uri", @@ -36105,7 +34640,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/192198149", "identifiedBy": [ { "type": "uri", @@ -36129,7 +34663,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/192269097", "identifiedBy": [ { "type": "uri", @@ -36158,7 +34691,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/192280953", "identifiedBy": [ { "type": "uri", @@ -36182,7 +34714,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/192298348", "identifiedBy": [ { "type": "uri", @@ -36201,7 +34732,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/192319116", "identifiedBy": [ { "type": "uri", @@ -36226,7 +34756,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/19239486X", "identifiedBy": [ { "type": "uri", @@ -36257,7 +34786,6 @@ "fre", "bul" ], - "identifier": "http://www.idref.fr/192408909", "identifiedBy": [ { "type": "uri", @@ -36278,7 +34806,6 @@ "pid": "192529641", "type": "bf:Organisation", "conference": false, - "identifier": "http://www.idref.fr/192529641", "identifiedBy": [ { "type": "uri", @@ -36303,7 +34830,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/192628496", "identifiedBy": [ { "type": "uri", @@ -36322,7 +34848,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/192640895", "identifiedBy": [ { "type": "uri", @@ -36344,7 +34869,6 @@ "language": [ "por" ], - "identifier": "http://www.idref.fr/192658697", "identifiedBy": [ { "type": "uri", @@ -36367,7 +34891,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/192776851", "identifiedBy": [ { "type": "uri", @@ -36390,7 +34913,6 @@ "ger" ], "conference": false, - "identifier": "http://www.idref.fr/192790099", "identifiedBy": [ { "type": "uri", @@ -36419,7 +34941,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/192856200", "identifiedBy": [ { "type": "uri", @@ -36441,7 +34962,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/192883313", "identifiedBy": [ { "type": "uri", @@ -36462,7 +34982,6 @@ "pid": "192969285", "type": "bf:Organisation", "conference": false, - "identifier": "http://www.idref.fr/192969285", "identifiedBy": [ { "type": "uri", @@ -36492,7 +35011,6 @@ "eng", "fre" ], - "identifier": "http://www.idref.fr/193161109", "identifiedBy": [ { "type": "uri", @@ -36520,7 +35038,6 @@ "pid": "193173328", "type": "bf:Organisation", "conference": false, - "identifier": "http://www.idref.fr/193173328", "identifiedBy": [ { "type": "uri", @@ -36540,7 +35057,6 @@ "md5": "0da6c1f1dd8b7a501e614d8483b57d4b", "pid": "193181878", "type": "bf:Person", - "identifier": "http://www.idref.fr/193181878", "identifiedBy": [ { "type": "uri", @@ -36561,7 +35077,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/193183226", "identifiedBy": [ { "type": "uri", @@ -36584,7 +35099,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/193223287", "identifiedBy": [ { "type": "uri", @@ -36607,7 +35121,6 @@ "ita" ], "conference": true, - "identifier": "http://www.idref.fr/193276348", "identifiedBy": [ { "type": "uri", @@ -36628,7 +35141,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/193284065", "identifiedBy": [ { "type": "uri", @@ -36651,7 +35163,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/19329074X", "identifiedBy": [ { "type": "uri", @@ -36674,7 +35185,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/193499975", "identifiedBy": [ { "type": "uri", @@ -36693,7 +35203,6 @@ "md5": "f6c63b33ed0e2ae2a4d6b995dd381afb", "pid": "193585057", "type": "bf:Person", - "identifier": "http://www.idref.fr/193585057", "identifiedBy": [ { "type": "uri", @@ -36711,7 +35220,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/193705974", "identifiedBy": [ { "type": "uri", @@ -36734,7 +35242,6 @@ "language": [ "chi" ], - "identifier": "http://www.idref.fr/193736063", "identifiedBy": [ { "type": "uri", @@ -36765,7 +35272,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/193779587", "identifiedBy": [ { "type": "uri", @@ -36780,7 +35286,6 @@ "md5": "b4b6ec3882a26915687f6537a5c1c688", "pid": "193809699", "type": "bf:Person", - "identifier": "http://www.idref.fr/193809699", "identifiedBy": [ { "type": "uri", @@ -36798,7 +35303,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/193825813", "identifiedBy": [ { "type": "uri", @@ -36821,7 +35325,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/193876191", "identifiedBy": [ { "type": "uri", @@ -36844,7 +35347,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/193955482", "identifiedBy": [ { "type": "uri", @@ -36865,7 +35367,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/193982269", "identifiedBy": [ { "type": "uri", @@ -36884,7 +35385,6 @@ "language": [ "geo" ], - "identifier": "http://www.idref.fr/194122603", "identifiedBy": [ { "type": "uri", @@ -36915,7 +35415,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/194162419", "identifiedBy": [ { "type": "uri", @@ -36934,7 +35433,6 @@ "language": [ "ara" ], - "identifier": "http://www.idref.fr/194167070", "identifiedBy": [ { "type": "uri", @@ -36960,7 +35458,6 @@ "md5": "817c3292042793d7ca6002629c6af6c9", "pid": "194445089", "type": "bf:Person", - "identifier": "http://www.idref.fr/194445089", "identifiedBy": [ { "type": "uri", @@ -36978,7 +35475,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/194503941", "identifiedBy": [ { "type": "uri", @@ -36998,7 +35494,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/194564932", "identifiedBy": [ { "type": "uri", @@ -37020,7 +35515,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/194577058", "identifiedBy": [ { "type": "uri", @@ -37045,7 +35539,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/194588718", "identifiedBy": [ { "type": "uri", @@ -37070,7 +35563,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/194616320", "identifiedBy": [ { "type": "uri", @@ -37092,7 +35584,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/194625036", "identifiedBy": [ { "type": "uri", @@ -37118,7 +35609,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/194925625", "identifiedBy": [ { "type": "uri", @@ -37140,7 +35630,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/195021371", "identifiedBy": [ { "type": "uri", @@ -37169,7 +35658,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/195226267", "identifiedBy": [ { "type": "uri", @@ -37185,7 +35673,6 @@ "md5": "9a74357e6e1debea79257a65ceb79932", "pid": "195247922", "type": "bf:Person", - "identifier": "http://www.idref.fr/195247922", "identifiedBy": [ { "type": "uri", @@ -37203,7 +35690,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/195263472", "identifiedBy": [ { "type": "uri", @@ -37226,7 +35712,6 @@ "language": [ "rus" ], - "identifier": "http://www.idref.fr/195274059", "identifiedBy": [ { "type": "uri", @@ -37255,7 +35740,6 @@ "ita" ], "conference": false, - "identifier": "http://www.idref.fr/195276205", "identifiedBy": [ { "type": "uri", @@ -37271,7 +35755,6 @@ "md5": "78fd92f82ca4aacba2e7526f2f98a2f1", "pid": "195286227", "type": "bf:Person", - "identifier": "http://www.idref.fr/195286227", "identifiedBy": [ { "type": "uri", @@ -37292,7 +35775,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/19529534X", "identifiedBy": [ { "type": "uri", @@ -37312,7 +35794,6 @@ "md5": "29d62b5b4987f2e3f70b0a638db57809", "pid": "195370317", "type": "bf:Person", - "identifier": "http://www.idref.fr/195370317", "identifiedBy": [ { "type": "uri", @@ -37340,7 +35821,6 @@ "language": [ "per" ], - "identifier": "http://www.idref.fr/195403460", "identifiedBy": [ { "type": "uri", @@ -37382,7 +35862,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/195430662", "identifiedBy": [ { "type": "uri", @@ -37405,7 +35884,6 @@ "language": [ "ara" ], - "identifier": "http://www.idref.fr/19544504X", "identifiedBy": [ { "type": "uri", @@ -37435,7 +35913,6 @@ "ita" ], "conference": false, - "identifier": "http://www.idref.fr/195458575", "identifiedBy": [ { "type": "uri", @@ -37463,7 +35940,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/195541855", "identifiedBy": [ { "type": "uri", @@ -37486,7 +35962,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/195544439", "identifiedBy": [ { "type": "uri", @@ -37506,7 +35981,6 @@ "fre" ], "conference": true, - "identifier": "http://www.idref.fr/195555228", "identifiedBy": [ { "type": "uri", @@ -37534,7 +36008,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/195708814", "identifiedBy": [ { "type": "uri", @@ -37564,7 +36037,6 @@ "language": [ "ice" ], - "identifier": "http://www.idref.fr/195713133", "identifiedBy": [ { "type": "uri", @@ -37592,7 +36064,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/195791258", "identifiedBy": [ { "type": "uri", @@ -37612,7 +36083,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/195824431", "identifiedBy": [ { "type": "uri", @@ -37641,7 +36111,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/195941942", "identifiedBy": [ { "type": "uri", @@ -37664,7 +36133,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/196095700", "identifiedBy": [ { "type": "uri", @@ -37687,7 +36155,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/196155487", "identifiedBy": [ { "type": "uri", @@ -37706,7 +36173,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/196254795", "identifiedBy": [ { "type": "uri", @@ -37725,7 +36191,6 @@ "md5": "a82b6d93fbb74ad74f2baa41702fb7f9", "pid": "196282411", "type": "bf:Person", - "identifier": "http://www.idref.fr/196282411", "identifiedBy": [ { "type": "uri", @@ -37745,7 +36210,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/196313910", "identifiedBy": [ { "type": "uri", @@ -37772,7 +36236,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/196337208", "identifiedBy": [ { "type": "uri", @@ -37796,7 +36259,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/196341280", "identifiedBy": [ { "type": "uri", @@ -37819,7 +36281,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/196405750", "identifiedBy": [ { "type": "uri", @@ -37842,7 +36303,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/196409500", "identifiedBy": [ { "type": "uri", @@ -37872,7 +36332,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/196425840", "identifiedBy": [ { "type": "uri", @@ -37894,7 +36353,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/196435099", "identifiedBy": [ { "type": "uri", @@ -37921,7 +36379,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/196452341", "identifiedBy": [ { "type": "uri", @@ -37943,7 +36400,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/196511275", "identifiedBy": [ { "type": "uri", @@ -37963,7 +36419,6 @@ "md5": "df4d183aca063f1cb039c3336bdc7646", "pid": "196538637", "type": "bf:Person", - "identifier": "http://www.idref.fr/196538637", "identifiedBy": [ { "type": "uri", @@ -37982,7 +36437,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/196539102", "identifiedBy": [ { "type": "uri", @@ -38001,7 +36455,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/196540429", "identifiedBy": [ { "type": "uri", @@ -38024,7 +36477,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/196575214", "identifiedBy": [ { "type": "uri", @@ -38049,7 +36501,6 @@ "fre" ], "conference": true, - "identifier": "http://www.idref.fr/196694531", "identifiedBy": [ { "type": "uri", @@ -38076,7 +36527,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/196706831", "identifiedBy": [ { "type": "uri", @@ -38099,7 +36549,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/196728711", "identifiedBy": [ { "type": "uri", @@ -38122,7 +36571,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/196814944", "identifiedBy": [ { "type": "uri", @@ -38142,7 +36590,6 @@ "pid": "196859883", "type": "bf:Organisation", "conference": false, - "identifier": "http://www.idref.fr/196859883", "identifiedBy": [ { "type": "uri", @@ -38165,7 +36612,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/196887429", "identifiedBy": [ { "type": "uri", @@ -38188,7 +36634,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/197014984", "identifiedBy": [ { "type": "uri", @@ -38222,7 +36667,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/197035167", "identifiedBy": [ { "type": "uri", @@ -38246,7 +36690,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/197073077", "identifiedBy": [ { "type": "uri", @@ -38282,7 +36725,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/197115047", "identifiedBy": [ { "type": "uri", @@ -38303,7 +36745,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/197132588", "identifiedBy": [ { "type": "uri", @@ -38329,7 +36770,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/197226809", "identifiedBy": [ { "type": "uri", @@ -38351,7 +36791,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/197280544", "identifiedBy": [ { "type": "uri", @@ -38374,7 +36813,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/197391648", "identifiedBy": [ { "type": "uri", @@ -38394,7 +36832,6 @@ "fre", "eng" ], - "identifier": "http://www.idref.fr/197394795", "identifiedBy": [ { "type": "uri", @@ -38416,7 +36853,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/197444067", "identifiedBy": [ { "type": "uri", @@ -38434,7 +36870,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/197444881", "identifiedBy": [ { "type": "uri", @@ -38459,7 +36894,6 @@ "eng" ], "conference": true, - "identifier": "http://www.idref.fr/197511392", "identifiedBy": [ { "type": "uri", @@ -38480,7 +36914,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/197533590", "identifiedBy": [ { "type": "uri", @@ -38502,7 +36935,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/197593968", "identifiedBy": [ { "type": "uri", @@ -38525,7 +36957,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/197623549", "identifiedBy": [ { "type": "uri", @@ -38547,7 +36978,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/197687717", "identifiedBy": [ { "type": "uri", @@ -38569,7 +36999,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/197696597", "identifiedBy": [ { "type": "uri", @@ -38588,7 +37017,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/197997961", "identifiedBy": [ { "type": "uri", @@ -38615,7 +37043,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/198193327", "identifiedBy": [ { "type": "uri", @@ -38634,7 +37061,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/198217447", "identifiedBy": [ { "type": "uri", @@ -38657,7 +37083,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/198395361", "identifiedBy": [ { "type": "uri", @@ -38680,7 +37105,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/198493231", "identifiedBy": [ { "type": "uri", @@ -38702,7 +37126,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/198494289", "identifiedBy": [ { "type": "uri", @@ -38725,7 +37148,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/19859318X", "identifiedBy": [ { "type": "uri", @@ -38743,7 +37165,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/19870125X", "identifiedBy": [ { "type": "uri", @@ -38761,7 +37182,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/199108617", "identifiedBy": [ { "type": "uri", @@ -38785,7 +37205,6 @@ "ger" ], "qualifier": "historien", - "identifier": "http://www.idref.fr/199119961", "identifiedBy": [ { "type": "uri", @@ -38808,7 +37227,6 @@ "fre" ], "conference": true, - "identifier": "http://www.idref.fr/19915631X", "identifiedBy": [ { "type": "uri", @@ -38838,7 +37256,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/199168326", "identifiedBy": [ { "type": "uri", @@ -38860,7 +37277,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/199187606", "identifiedBy": [ { "type": "uri", @@ -38882,7 +37298,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/19921347X", "identifiedBy": [ { "type": "uri", @@ -38909,7 +37324,6 @@ "eng" ], "conference": true, - "identifier": "http://www.idref.fr/199238324", "identifiedBy": [ { "type": "uri", @@ -38938,7 +37352,6 @@ "language": [ "kor" ], - "identifier": "http://www.idref.fr/199257213", "identifiedBy": [ { "type": "uri", @@ -38965,7 +37378,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/199258813", "identifiedBy": [ { "type": "uri", @@ -38987,7 +37399,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/199336776", "identifiedBy": [ { "type": "uri", @@ -39010,7 +37421,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/199441863", "identifiedBy": [ { "type": "uri", @@ -39033,7 +37443,6 @@ "ger" ], "conference": false, - "identifier": "http://www.idref.fr/199452857", "identifiedBy": [ { "type": "uri", @@ -39060,7 +37469,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/199464669", "identifiedBy": [ { "type": "uri", @@ -39081,7 +37489,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/19954770X", "identifiedBy": [ { "type": "uri", @@ -39100,7 +37507,6 @@ "language": [ "gre" ], - "identifier": "http://www.idref.fr/199555907", "identifiedBy": [ { "type": "uri", @@ -39126,7 +37532,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/19960097X", "identifiedBy": [ { "type": "uri", @@ -39145,7 +37550,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/199679150", "identifiedBy": [ { "type": "uri", @@ -39165,7 +37569,6 @@ "eng" ], "conference": true, - "identifier": "http://www.idref.fr/199716498", "identifiedBy": [ { "type": "uri", @@ -39192,7 +37595,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/199742022", "identifiedBy": [ { "type": "uri", @@ -39215,7 +37617,6 @@ "fre" ], "conference": true, - "identifier": "http://www.idref.fr/199749736", "identifiedBy": [ { "type": "uri", @@ -39240,7 +37641,6 @@ "rus" ], "conference": false, - "identifier": "http://www.idref.fr/199777381", "identifiedBy": [ { "type": "uri", @@ -39265,7 +37665,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/199828121", "identifiedBy": [ { "type": "uri", @@ -39285,7 +37684,6 @@ "md5": "5001966278465c933c574d783b748eba", "pid": "200127748", "type": "bf:Person", - "identifier": "http://www.idref.fr/200127748", "identifiedBy": [ { "type": "uri", @@ -39304,7 +37702,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/200138766", "identifiedBy": [ { "type": "uri", @@ -39327,7 +37724,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/200141163", "identifiedBy": [ { "type": "uri", @@ -39351,7 +37747,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/200238574", "identifiedBy": [ { "type": "uri", @@ -39370,7 +37765,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/200252933", "identifiedBy": [ { "type": "uri", @@ -39393,7 +37787,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/200400525", "identifiedBy": [ { "type": "uri", @@ -39417,7 +37810,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/200469169", "identifiedBy": [ { "type": "uri", @@ -39433,7 +37825,6 @@ "md5": "fac3fcc304f4c1061289e75948080253", "pid": "200480111", "type": "bf:Person", - "identifier": "http://www.idref.fr/200480111", "identifiedBy": [ { "type": "uri", @@ -39455,7 +37846,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/200480391", "identifiedBy": [ { "type": "uri", @@ -39478,7 +37868,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/200497065", "identifiedBy": [ { "type": "uri", @@ -39501,7 +37890,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/200524925", "identifiedBy": [ { "type": "uri", @@ -39523,7 +37911,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/200581627", "identifiedBy": [ { "type": "uri", @@ -39545,7 +37932,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/200646788", "identifiedBy": [ { "type": "uri", @@ -39565,7 +37951,6 @@ "md5": "0ce072af410f2c92430ad66be2c446a6", "pid": "200661531", "type": "bf:Person", - "identifier": "http://www.idref.fr/200661531", "identifiedBy": [ { "type": "uri", @@ -39588,7 +37973,6 @@ "ger" ], "conference": false, - "identifier": "http://www.idref.fr/20071659X", "identifiedBy": [ { "type": "uri", @@ -39612,7 +37996,6 @@ "md5": "b29da01017f7c7a4b9b2d1b6a778ef55", "pid": "200723421", "type": "bf:Person", - "identifier": "http://www.idref.fr/200723421", "identifiedBy": [ { "type": "uri", @@ -39633,7 +38016,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/20082807X", "identifiedBy": [ { "type": "uri", @@ -39655,7 +38037,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/201287617", "identifiedBy": [ { "type": "uri", @@ -39677,7 +38058,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/201289377", "identifiedBy": [ { "type": "uri", @@ -39701,7 +38081,6 @@ "mul" ], "conference": true, - "identifier": "http://www.idref.fr/201301040", "identifiedBy": [ { "type": "uri", @@ -39731,7 +38110,6 @@ "eng" ], "conference": true, - "identifier": "http://www.idref.fr/201306824", "identifiedBy": [ { "type": "uri", @@ -39750,7 +38128,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/201480034", "identifiedBy": [ { "type": "uri", @@ -39768,7 +38145,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/201609924", "identifiedBy": [ { "type": "uri", @@ -39792,7 +38168,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/201643936", "identifiedBy": [ { "type": "uri", @@ -39825,7 +38200,6 @@ "language": [ "kor" ], - "identifier": "http://www.idref.fr/201672618", "identifiedBy": [ { "type": "uri", @@ -39852,7 +38226,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/201683636", "identifiedBy": [ { "type": "uri", @@ -39874,7 +38247,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/20169106X", "identifiedBy": [ { "type": "uri", @@ -39897,7 +38269,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/201716461", "identifiedBy": [ { "type": "uri", @@ -39920,7 +38291,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/201724588", "identifiedBy": [ { "type": "uri", @@ -39943,7 +38313,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/201753413", "identifiedBy": [ { "type": "uri", @@ -39967,7 +38336,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/201756463", "identifiedBy": [ { "type": "uri", @@ -39989,7 +38357,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/201762641", "identifiedBy": [ { "type": "uri", @@ -40014,7 +38381,6 @@ "rus" ], "conference": true, - "identifier": "http://www.idref.fr/201790017", "identifiedBy": [ { "type": "uri", @@ -40035,7 +38401,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/201827581", "identifiedBy": [ { "type": "uri", @@ -40060,7 +38425,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/201830507", "identifiedBy": [ { "type": "uri", @@ -40083,7 +38447,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/201849534", "identifiedBy": [ { "type": "uri", @@ -40106,7 +38469,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/20185080X", "identifiedBy": [ { "type": "uri", @@ -40130,7 +38492,6 @@ "md5": "881522cd9dde5afe17349a17582c33b8", "pid": "202400263", "type": "bf:Person", - "identifier": "http://www.idref.fr/202400263", "identifiedBy": [ { "type": "uri", @@ -40148,7 +38509,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/202446573", "identifiedBy": [ { "type": "uri", @@ -40167,7 +38527,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/202513645", "identifiedBy": [ { "type": "uri", @@ -40190,7 +38549,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/202637417", "identifiedBy": [ { "type": "uri", @@ -40213,7 +38571,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/202648087", "identifiedBy": [ { "type": "uri", @@ -40236,7 +38593,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/202681793", "identifiedBy": [ { "type": "uri", @@ -40256,7 +38612,6 @@ "md5": "2a2ad7d775f88f78589e1706d72f5a9d", "pid": "202685144", "type": "bf:Person", - "identifier": "http://www.idref.fr/202685144", "identifiedBy": [ { "type": "uri", @@ -40276,7 +38631,6 @@ "fre" ], "qualifier": "traductrice", - "identifier": "http://www.idref.fr/202745279", "identifiedBy": [ { "type": "uri", @@ -40298,7 +38652,6 @@ "language": [ "cat" ], - "identifier": "http://www.idref.fr/202768740", "identifiedBy": [ { "type": "uri", @@ -40321,7 +38674,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/202773663", "identifiedBy": [ { "type": "uri", @@ -40344,7 +38696,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/202908097", "identifiedBy": [ { "type": "uri", @@ -40368,7 +38719,6 @@ "fre", "spa" ], - "identifier": "http://www.idref.fr/202971511", "identifiedBy": [ { "type": "uri", @@ -40393,7 +38743,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/202987752", "identifiedBy": [ { "type": "uri", @@ -40417,7 +38766,6 @@ "language": [ "rus" ], - "identifier": "http://www.idref.fr/20307324X", "identifiedBy": [ { "type": "uri", @@ -40446,7 +38794,6 @@ "language": [ "tha" ], - "identifier": "http://www.idref.fr/203079442", "identifiedBy": [ { "type": "uri", @@ -40472,7 +38819,6 @@ "md5": "25ae7ee1439156fb913a61b8d8255bdb", "pid": "203120752", "type": "bf:Person", - "identifier": "http://www.idref.fr/203120752", "identifiedBy": [ { "type": "uri", @@ -40490,7 +38836,6 @@ "language": [ "pol" ], - "identifier": "http://www.idref.fr/203121953", "identifiedBy": [ { "type": "uri", @@ -40512,7 +38857,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/203168712", "identifiedBy": [ { "type": "uri", @@ -40530,7 +38874,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/203351312", "identifiedBy": [ { "type": "uri", @@ -40552,7 +38895,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/203359321", "identifiedBy": [ { "type": "uri", @@ -40572,7 +38914,6 @@ "md5": "6e437bf1e5cda644b7e9834b708b6d6b", "pid": "203372514", "type": "bf:Person", - "identifier": "http://www.idref.fr/203372514", "identifiedBy": [ { "type": "uri", @@ -40609,7 +38950,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/203387279", "identifiedBy": [ { "type": "uri", @@ -40632,7 +38972,6 @@ "language": [ "cze" ], - "identifier": "http://www.idref.fr/20354014X", "identifiedBy": [ { "type": "uri", @@ -40650,7 +38989,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/203603141", "identifiedBy": [ { "type": "uri", @@ -40676,7 +39014,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/203620941", "identifiedBy": [ { "type": "uri", @@ -40699,7 +39036,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/203662997", "identifiedBy": [ { "type": "uri", @@ -40721,7 +39057,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/203861108", "identifiedBy": [ { "type": "uri", @@ -40745,7 +39080,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/203863232", "identifiedBy": [ { "type": "uri", @@ -40768,7 +39102,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/203926625", "identifiedBy": [ { "type": "uri", @@ -40790,7 +39123,6 @@ "spa" ], "qualifier": "sociologue", - "identifier": "http://www.idref.fr/203929594", "identifiedBy": [ { "type": "uri", @@ -40812,7 +39144,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/203933036", "identifiedBy": [ { "type": "uri", @@ -40835,7 +39166,6 @@ "language": [ "ara" ], - "identifier": "http://www.idref.fr/203935616", "identifiedBy": [ { "type": "uri", @@ -40869,7 +39199,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/203937740", "identifiedBy": [ { "type": "uri", @@ -40892,7 +39221,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/20394562X", "identifiedBy": [ { "type": "uri", @@ -40908,7 +39236,6 @@ "md5": "3bcef2b4fa6cc41319d6a153d25c5bd1", "pid": "203971051", "type": "bf:Person", - "identifier": "http://www.idref.fr/203971051", "identifiedBy": [ { "type": "uri", @@ -40929,7 +39256,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/204040388", "identifiedBy": [ { "type": "uri", @@ -40957,7 +39283,6 @@ "language": [ "pol" ], - "identifier": "http://www.idref.fr/204097428", "identifiedBy": [ { "type": "uri", @@ -40973,7 +39298,6 @@ "md5": "b8a5f1e1313828e1627aca3a570ab30d", "pid": "204167000", "type": "bf:Person", - "identifier": "http://www.idref.fr/204167000", "identifiedBy": [ { "type": "uri", @@ -40992,7 +39316,6 @@ "eng" ], "conference": true, - "identifier": "http://www.idref.fr/204208246", "identifiedBy": [ { "type": "uri", @@ -41008,7 +39331,6 @@ "md5": "82d293be3f3809ee4e9d5bc13fbe3add", "pid": "20422280X", "type": "bf:Person", - "identifier": "http://www.idref.fr/20422280X", "identifiedBy": [ { "type": "uri", @@ -41026,7 +39348,6 @@ "md5": "69a6869fbc1c265c1bef54cd3f8347f9", "pid": "204242479", "type": "bf:Person", - "identifier": "http://www.idref.fr/204242479", "identifiedBy": [ { "type": "uri", @@ -41048,7 +39369,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/204251206", "identifiedBy": [ { "type": "uri", @@ -41072,7 +39392,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/20436678X", "identifiedBy": [ { "type": "uri", @@ -41095,7 +39414,6 @@ "eng" ], "conference": true, - "identifier": "http://www.idref.fr/204436869", "identifiedBy": [ { "type": "uri", @@ -41116,7 +39434,6 @@ "language": [ "rum" ], - "identifier": "http://www.idref.fr/204581745", "identifiedBy": [ { "type": "uri", @@ -41135,7 +39452,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/204651913", "identifiedBy": [ { "type": "uri", @@ -41157,7 +39473,6 @@ "language": [ "hun" ], - "identifier": "http://www.idref.fr/204719593", "identifiedBy": [ { "type": "uri", @@ -41181,7 +39496,6 @@ "language": [ "jpn" ], - "identifier": "http://www.idref.fr/204750032", "identifiedBy": [ { "type": "uri", @@ -41210,7 +39524,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/204755824", "identifiedBy": [ { "type": "uri", @@ -41229,7 +39542,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/20476209X", "identifiedBy": [ { "type": "uri", @@ -41260,7 +39572,6 @@ "fre" ], "qualifier": "dentiste", - "identifier": "http://www.idref.fr/204801923", "identifiedBy": [ { "type": "uri", @@ -41281,7 +39592,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/219558523", "identifiedBy": [ { "type": "uri", @@ -41304,7 +39614,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/219844496", "identifiedBy": [ { "type": "uri", @@ -41325,7 +39634,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/219895058", "identifiedBy": [ { "type": "uri", @@ -41348,7 +39656,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/219901015", "identifiedBy": [ { "type": "uri", @@ -41378,7 +39685,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/219918252", "identifiedBy": [ { "type": "uri", @@ -41401,7 +39707,6 @@ "swe" ], "conference": false, - "identifier": "http://www.idref.fr/219992657", "identifiedBy": [ { "type": "uri", @@ -41429,7 +39734,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/220045143", "identifiedBy": [ { "type": "uri", @@ -41458,7 +39762,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/220058784", "identifiedBy": [ { "type": "uri", @@ -41481,7 +39784,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/220068062", "identifiedBy": [ { "type": "uri", @@ -41498,7 +39800,6 @@ "pid": "220075247", "type": "bf:Organisation", "conference": false, - "identifier": "http://www.idref.fr/220075247", "identifiedBy": [ { "type": "uri", @@ -41516,7 +39817,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/220078440", "identifiedBy": [ { "type": "uri", @@ -41535,7 +39835,6 @@ "language": [ "fin" ], - "identifier": "http://www.idref.fr/220159157", "identifiedBy": [ { "type": "uri", @@ -41557,7 +39856,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/220178003", "identifiedBy": [ { "type": "uri", @@ -41580,7 +39878,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/220196133", "identifiedBy": [ { "type": "uri", @@ -41603,7 +39900,6 @@ "language": [ "chi" ], - "identifier": "http://www.idref.fr/220218919", "identifiedBy": [ { "type": "uri", @@ -41629,7 +39925,6 @@ "md5": "a92532fd6b8a6ab8197af3e441fbbbbf", "pid": "220304114", "type": "bf:Person", - "identifier": "http://www.idref.fr/220304114", "identifiedBy": [ { "type": "uri", @@ -41647,7 +39942,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/220457220", "identifiedBy": [ { "type": "uri", @@ -41666,7 +39960,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/220609829", "identifiedBy": [ { "type": "uri", @@ -41687,7 +39980,6 @@ "fre" ], "qualifier": "dentiste", - "identifier": "http://www.idref.fr/220828164", "identifiedBy": [ { "type": "uri", @@ -41708,7 +40000,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/22088787X", "identifiedBy": [ { "type": "uri", @@ -41728,7 +40019,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/220890056", "identifiedBy": [ { "type": "uri", @@ -41750,7 +40040,6 @@ "language": [ "per" ], - "identifier": "http://www.idref.fr/221211810", "identifiedBy": [ { "type": "uri", @@ -41784,7 +40073,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/221276904", "identifiedBy": [ { "type": "uri", @@ -41805,7 +40093,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/221337571", "identifiedBy": [ { "type": "uri", @@ -41829,7 +40116,6 @@ "md5": "4e1203c8df18fdbb7ed0c7de2178281f", "pid": "221337806", "type": "bf:Person", - "identifier": "http://www.idref.fr/221337806", "identifiedBy": [ { "type": "uri", @@ -41847,7 +40133,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/221343555", "identifiedBy": [ { "type": "uri", @@ -41872,7 +40157,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/221345477", "identifiedBy": [ { "type": "uri", @@ -41907,7 +40191,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/221427767", "identifiedBy": [ { "type": "uri", @@ -41927,7 +40210,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/221465480", "identifiedBy": [ { "type": "uri", @@ -41950,7 +40232,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/221485554", "identifiedBy": [ { "type": "uri", @@ -41971,7 +40252,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/221493646", "identifiedBy": [ { "type": "uri", @@ -41995,7 +40275,6 @@ "spa" ], "conference": false, - "identifier": "http://www.idref.fr/221661425", "identifiedBy": [ { "type": "uri", @@ -42031,7 +40310,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/221728856", "identifiedBy": [ { "type": "uri", @@ -42065,7 +40343,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/22175167X", "identifiedBy": [ { "type": "uri", @@ -42084,7 +40361,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/221761942", "identifiedBy": [ { "type": "uri", @@ -42112,7 +40388,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/22344250X", "identifiedBy": [ { "type": "uri", @@ -42134,7 +40409,6 @@ "pid": "223483516", "type": "bf:Organisation", "conference": true, - "identifier": "http://www.idref.fr/223483516", "identifiedBy": [ { "type": "uri", @@ -42155,7 +40429,6 @@ "fre" ], "qualifier": "physicien", - "identifier": "http://www.idref.fr/223491071", "identifiedBy": [ { "type": "uri", @@ -42179,7 +40452,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/223505056", "identifiedBy": [ { "type": "uri", @@ -42202,7 +40474,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/223537616", "identifiedBy": [ { "type": "uri", @@ -42225,7 +40496,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/223609935", "identifiedBy": [ { "type": "uri", @@ -42248,7 +40518,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/223614866", "identifiedBy": [ { "type": "uri", @@ -42268,7 +40537,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/223652555", "identifiedBy": [ { "type": "uri", @@ -42291,7 +40559,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/223704288", "identifiedBy": [ { "type": "uri", @@ -42314,7 +40581,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/22376423X", "identifiedBy": [ { "type": "uri", @@ -42333,7 +40599,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/223847585", "identifiedBy": [ { "type": "uri", @@ -42352,7 +40617,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/223852481", "identifiedBy": [ { "type": "uri", @@ -42376,7 +40640,6 @@ "eng" ], "conference": true, - "identifier": "http://www.idref.fr/223890472", "identifiedBy": [ { "type": "uri", @@ -42397,7 +40660,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/224016806", "identifiedBy": [ { "type": "uri", @@ -42416,7 +40678,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/224210963", "identifiedBy": [ { "type": "uri", @@ -42438,7 +40699,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/224227815", "identifiedBy": [ { "type": "uri", @@ -42461,7 +40721,6 @@ "language": [ "srp" ], - "identifier": "http://www.idref.fr/224319418", "identifiedBy": [ { "type": "uri", @@ -42487,7 +40746,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/224335081", "identifiedBy": [ { "type": "uri", @@ -42506,7 +40764,6 @@ "language": [ "kor" ], - "identifier": "http://www.idref.fr/22438306X", "identifiedBy": [ { "type": "uri", @@ -42529,7 +40786,6 @@ "language": [ "chi" ], - "identifier": "http://www.idref.fr/224404717", "identifiedBy": [ { "type": "uri", @@ -42558,7 +40814,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/224452630", "identifiedBy": [ { "type": "uri", @@ -42577,7 +40832,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/224502557", "identifiedBy": [ { "type": "uri", @@ -42599,7 +40853,6 @@ "language": [ "nor" ], - "identifier": "http://www.idref.fr/224542249", "identifiedBy": [ { "type": "uri", @@ -42623,7 +40876,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/224544411", "identifiedBy": [ { "type": "uri", @@ -42646,7 +40898,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/224701592", "identifiedBy": [ { "type": "uri", @@ -42668,7 +40919,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/22472178X", "identifiedBy": [ { "type": "uri", @@ -42691,7 +40941,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/224789147", "identifiedBy": [ { "type": "uri", @@ -42713,7 +40962,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/224794272", "identifiedBy": [ { "type": "uri", @@ -42736,7 +40984,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/224842722", "identifiedBy": [ { "type": "uri", @@ -42760,7 +41007,6 @@ "ita" ], "conference": true, - "identifier": "http://www.idref.fr/224847333", "identifiedBy": [ { "type": "uri", @@ -42790,7 +41036,6 @@ "fre", "eng" ], - "identifier": "http://www.idref.fr/224875868", "identifiedBy": [ { "type": "uri", @@ -42814,7 +41059,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/224900536", "identifiedBy": [ { "type": "uri", @@ -42837,7 +41081,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/224972065", "identifiedBy": [ { "type": "uri", @@ -42860,7 +41103,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/224991523", "identifiedBy": [ { "type": "uri", @@ -42883,7 +41125,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/225224054", "identifiedBy": [ { "type": "uri", @@ -42902,7 +41143,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/225402475", "identifiedBy": [ { "type": "uri", @@ -42922,7 +41162,6 @@ "md5": "f4788d924b24d6bf9f37db1e91c72a07", "pid": "225406292", "type": "bf:Person", - "identifier": "http://www.idref.fr/225406292", "identifiedBy": [ { "type": "uri", @@ -42947,7 +41186,6 @@ "md5": "61588d85602bfa695f868327b896a27c", "pid": "225412632", "type": "bf:Person", - "identifier": "http://www.idref.fr/225412632", "identifiedBy": [ { "type": "uri", @@ -42969,7 +41207,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/225448475", "identifiedBy": [ { "type": "uri", @@ -42991,7 +41228,6 @@ "language": [ "hun" ], - "identifier": "http://www.idref.fr/225463121", "identifiedBy": [ { "type": "uri", @@ -43016,7 +41252,6 @@ "ger", "jpn" ], - "identifier": "http://www.idref.fr/225512521", "identifiedBy": [ { "type": "uri", @@ -43039,7 +41274,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/225514451", "identifiedBy": [ { "type": "uri", @@ -43062,7 +41296,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/225603128", "identifiedBy": [ { "type": "uri", @@ -43096,7 +41329,6 @@ "pid": "225616459", "type": "bf:Organisation", "conference": false, - "identifier": "http://www.idref.fr/225616459", "identifiedBy": [ { "type": "uri", @@ -43117,7 +41349,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/225732394", "identifiedBy": [ { "type": "uri", @@ -43137,7 +41368,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/225791153", "identifiedBy": [ { "type": "uri", @@ -43159,7 +41389,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/225800373", "identifiedBy": [ { "type": "uri", @@ -43181,7 +41410,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/225803658", "identifiedBy": [ { "type": "uri", @@ -43204,7 +41432,6 @@ "md5": "92db144b04275b085cd562f8df3689ca", "pid": "226149390", "type": "bf:Person", - "identifier": "http://www.idref.fr/226149390", "identifiedBy": [ { "type": "uri", @@ -43222,7 +41449,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/226257444", "identifiedBy": [ { "type": "uri", @@ -43246,7 +41472,6 @@ "mul" ], "conference": true, - "identifier": "http://www.idref.fr/226272893", "identifiedBy": [ { "type": "uri", @@ -43267,7 +41492,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/226304108", "identifiedBy": [ { "type": "uri", @@ -43297,7 +41521,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/226336328", "identifiedBy": [ { "type": "uri", @@ -43318,7 +41541,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/226372294", "identifiedBy": [ { "type": "uri", @@ -43337,7 +41559,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/226411354", "identifiedBy": [ { "type": "uri", @@ -43367,7 +41588,6 @@ "fre" ], "conference": true, - "identifier": "http://www.idref.fr/22676026X", "identifiedBy": [ { "type": "uri", @@ -43387,7 +41607,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/226865037", "identifiedBy": [ { "type": "uri", @@ -43411,7 +41630,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/226921670", "identifiedBy": [ { "type": "uri", @@ -43432,7 +41650,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/226932141", "identifiedBy": [ { "type": "uri", @@ -43460,7 +41677,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/226958728", "identifiedBy": [ { "type": "uri", @@ -43484,7 +41700,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/226964736", "identifiedBy": [ { "type": "uri", @@ -43504,7 +41719,6 @@ "md5": "93a1f0ab1bd0b122632790cfdffea49b", "pid": "227130812", "type": "bf:Person", - "identifier": "http://www.idref.fr/227130812", "identifiedBy": [ { "type": "uri", @@ -43525,7 +41739,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/227218493", "identifiedBy": [ { "type": "uri", @@ -43547,7 +41760,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/227236610", "identifiedBy": [ { "type": "uri", @@ -43568,7 +41780,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/227237382", "identifiedBy": [ { "type": "uri", @@ -43591,7 +41802,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/227302370", "identifiedBy": [ { "type": "uri", @@ -43611,7 +41821,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/227327551", "identifiedBy": [ { "type": "uri", @@ -43633,7 +41842,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/227475453", "identifiedBy": [ { "type": "uri", @@ -43657,7 +41865,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/22749900X", "identifiedBy": [ { "type": "uri", @@ -43681,7 +41888,6 @@ "eng", "per" ], - "identifier": "http://www.idref.fr/227511980", "identifiedBy": [ { "type": "uri", @@ -43711,7 +41917,6 @@ "language": [ "chi" ], - "identifier": "http://www.idref.fr/227583752", "identifiedBy": [ { "type": "uri", @@ -43733,7 +41938,6 @@ "language": [ "gre" ], - "identifier": "http://www.idref.fr/227594509", "identifiedBy": [ { "type": "uri", @@ -43756,7 +41960,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/227599055", "identifiedBy": [ { "type": "uri", @@ -43778,7 +41981,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/227616839", "identifiedBy": [ { "type": "uri", @@ -43801,7 +42003,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/227645278", "identifiedBy": [ { "type": "uri", @@ -43824,7 +42025,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/227762045", "identifiedBy": [ { "type": "uri", @@ -43847,7 +42047,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/22779222X", "identifiedBy": [ { "type": "uri", @@ -43869,7 +42068,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/227806646", "identifiedBy": [ { "type": "uri", @@ -43893,7 +42091,6 @@ "eng" ], "conference": true, - "identifier": "http://www.idref.fr/227845307", "identifiedBy": [ { "type": "uri", @@ -43914,7 +42111,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/227933923", "identifiedBy": [ { "type": "uri", @@ -43936,7 +42132,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/22793492X", "identifiedBy": [ { "type": "uri", @@ -43956,7 +42151,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/227979303", "identifiedBy": [ { "type": "uri", @@ -43979,7 +42173,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/228238714", "identifiedBy": [ { "type": "uri", @@ -44002,7 +42195,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/228263050", "identifiedBy": [ { "type": "uri", @@ -44025,7 +42217,6 @@ "language": [ "ara" ], - "identifier": "http://www.idref.fr/228795990", "identifiedBy": [ { "type": "uri", @@ -44046,7 +42237,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/228853214", "identifiedBy": [ { "type": "uri", @@ -44069,7 +42259,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/228947545", "identifiedBy": [ { "type": "uri", @@ -44088,7 +42277,6 @@ "language": [ "pol" ], - "identifier": "http://www.idref.fr/229034713", "identifiedBy": [ { "type": "uri", @@ -44125,7 +42313,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/229300324", "identifiedBy": [ { "type": "uri", @@ -44144,7 +42331,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/229580165", "identifiedBy": [ { "type": "uri", @@ -44167,7 +42353,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/229619231", "identifiedBy": [ { "type": "uri", @@ -44189,7 +42374,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/229650473", "identifiedBy": [ { "type": "uri", @@ -44212,7 +42396,6 @@ "language": [ "dan" ], - "identifier": "http://www.idref.fr/229663362", "identifiedBy": [ { "type": "uri", @@ -44232,7 +42415,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/229665470", "identifiedBy": [ { "type": "uri", @@ -44255,7 +42437,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/229675018", "identifiedBy": [ { "type": "uri", @@ -44278,7 +42459,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/229703747", "identifiedBy": [ { "type": "uri", @@ -44300,7 +42480,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/229818676", "identifiedBy": [ { "type": "uri", @@ -44322,7 +42501,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/229845606", "identifiedBy": [ { "type": "uri", @@ -44345,7 +42523,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/23008964X", "identifiedBy": [ { "type": "uri", @@ -44364,7 +42541,6 @@ "md5": "0cb15cc16466848796107f022e680f94", "pid": "230158145", "type": "bf:Person", - "identifier": "http://www.idref.fr/230158145", "identifiedBy": [ { "type": "uri", @@ -44382,7 +42558,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/230252427", "identifiedBy": [ { "type": "uri", @@ -44402,7 +42577,6 @@ "eng" ], "qualifier": "journaliste", - "identifier": "http://www.idref.fr/230252575", "identifiedBy": [ { "type": "uri", @@ -44432,7 +42606,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/230306365", "identifiedBy": [ { "type": "uri", @@ -44451,7 +42624,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/230333885", "identifiedBy": [ { "type": "uri", @@ -44475,7 +42647,6 @@ "chi" ], "conference": false, - "identifier": "http://www.idref.fr/230389597", "identifiedBy": [ { "type": "uri", @@ -44500,7 +42671,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/230392407", "identifiedBy": [ { "type": "uri", @@ -44523,7 +42693,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/230394477", "identifiedBy": [ { "type": "uri", @@ -44542,7 +42711,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/230409261", "identifiedBy": [ { "type": "uri", @@ -44572,7 +42740,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/230421075", "identifiedBy": [ { "type": "uri", @@ -44602,7 +42769,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/230487653", "identifiedBy": [ { "type": "uri", @@ -44618,7 +42784,6 @@ "md5": "c56b241a131a59e0bbade37eb1268e56", "pid": "230499805", "type": "bf:Person", - "identifier": "http://www.idref.fr/230499805", "identifiedBy": [ { "type": "uri", @@ -44640,7 +42805,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/23054634X", "identifiedBy": [ { "type": "uri", @@ -44662,7 +42826,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/230568378", "identifiedBy": [ { "type": "uri", @@ -44683,7 +42846,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/230663338", "identifiedBy": [ { "type": "uri", @@ -44705,7 +42867,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/230746608", "identifiedBy": [ { "type": "uri", @@ -44730,7 +42891,6 @@ "ger" ], "conference": false, - "identifier": "http://www.idref.fr/230769373", "identifiedBy": [ { "type": "uri", @@ -44767,7 +42927,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/230818846", "identifiedBy": [ { "type": "uri", @@ -44790,7 +42949,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/230825478", "identifiedBy": [ { "type": "uri", @@ -44812,7 +42970,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/230880525", "identifiedBy": [ { "type": "uri", @@ -44835,7 +42992,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/230910793", "identifiedBy": [ { "type": "uri", @@ -44855,7 +43011,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/230956866", "identifiedBy": [ { "type": "uri", @@ -44891,7 +43046,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/230969267", "identifiedBy": [ { "type": "uri", @@ -44914,7 +43068,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/231084056", "identifiedBy": [ { "type": "uri", @@ -44933,7 +43086,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/231252188", "identifiedBy": [ { "type": "uri", @@ -44953,7 +43105,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/231276729", "identifiedBy": [ { "type": "uri", @@ -44977,7 +43128,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/231291779", "identifiedBy": [ { "type": "uri", @@ -45001,7 +43151,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/231292856", "identifiedBy": [ { "type": "uri", @@ -45025,7 +43174,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/231295405", "identifiedBy": [ { "type": "uri", @@ -45048,7 +43196,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/231314116", "identifiedBy": [ { "type": "uri", @@ -45072,7 +43219,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/231372507", "identifiedBy": [ { "type": "uri", @@ -45096,7 +43242,6 @@ "mul" ], "conference": true, - "identifier": "http://www.idref.fr/231381476", "identifiedBy": [ { "type": "uri", @@ -45117,7 +43262,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/231381964", "identifiedBy": [ { "type": "uri", @@ -45140,7 +43284,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/231451555", "identifiedBy": [ { "type": "uri", @@ -45162,7 +43305,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/231480520", "identifiedBy": [ { "type": "uri", @@ -45184,7 +43326,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/231537743", "identifiedBy": [ { "type": "uri", @@ -45206,7 +43347,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/231540957", "identifiedBy": [ { "type": "uri", @@ -45225,7 +43365,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/231623739", "identifiedBy": [ { "type": "uri", @@ -45245,7 +43384,6 @@ "md5": "af80f451b45aa676c76034505481f2da", "pid": "231934203", "type": "bf:Person", - "identifier": "http://www.idref.fr/231934203", "identifiedBy": [ { "type": "uri", @@ -45272,7 +43410,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/232202699", "identifiedBy": [ { "type": "uri", @@ -45299,7 +43436,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/232278431", "identifiedBy": [ { "type": "uri", @@ -45322,7 +43458,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/232343446", "identifiedBy": [ { "type": "uri", @@ -45341,7 +43476,6 @@ "md5": "61c1252eac7178f529c4529825498806", "pid": "232523703", "type": "bf:Person", - "identifier": "http://www.idref.fr/232523703", "identifiedBy": [ { "type": "uri", @@ -45375,7 +43509,6 @@ "geo", "fre" ], - "identifier": "http://www.idref.fr/232530343", "identifiedBy": [ { "type": "uri", @@ -45403,7 +43536,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/232640858", "identifiedBy": [ { "type": "uri", @@ -45423,7 +43555,6 @@ "md5": "024b82eea1ee6f6e883b4103a525dd8d", "pid": "232656770", "type": "bf:Person", - "identifier": "http://www.idref.fr/232656770", "identifiedBy": [ { "type": "uri", @@ -45441,7 +43572,6 @@ "md5": "1b5fb42e65e730af5d9759bab7d5917c", "pid": "232674450", "type": "bf:Person", - "identifier": "http://www.idref.fr/232674450", "identifiedBy": [ { "type": "uri", @@ -45460,7 +43590,6 @@ "fre" ], "qualifier": "praticienne en massage ayurv\u00e9dique", - "identifier": "http://www.idref.fr/232696551", "identifiedBy": [ { "type": "uri", @@ -45483,7 +43612,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/232702845", "identifiedBy": [ { "type": "uri", @@ -45506,7 +43634,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/23272377X", "identifiedBy": [ { "type": "uri", @@ -45528,7 +43655,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/23272380X", "identifiedBy": [ { "type": "uri", @@ -45550,7 +43676,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/232774072", "identifiedBy": [ { "type": "uri", @@ -45576,7 +43701,6 @@ "heb" ], "conference": false, - "identifier": "http://www.idref.fr/232796734", "identifiedBy": [ { "type": "uri", @@ -45604,7 +43728,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/232804788", "identifiedBy": [ { "type": "uri", @@ -45637,7 +43760,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/232805636", "identifiedBy": [ { "type": "uri", @@ -45656,7 +43778,6 @@ "md5": "2e38736572b91074bba9ec1c94c223f8", "pid": "232810265", "type": "bf:Person", - "identifier": "http://www.idref.fr/232810265", "identifiedBy": [ { "type": "uri", @@ -45676,7 +43797,6 @@ "pid": "232813116", "type": "bf:Person", "qualifier": "photographe", - "identifier": "http://www.idref.fr/232813116", "identifiedBy": [ { "type": "uri", @@ -45697,7 +43817,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/232862583", "identifiedBy": [ { "type": "uri", @@ -45730,7 +43849,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/232868468", "identifiedBy": [ { "type": "uri", @@ -45750,7 +43868,6 @@ "md5": "20bf7a778d4ab87942fa08d394fdfb35", "pid": "232869278", "type": "bf:Person", - "identifier": "http://www.idref.fr/232869278", "identifiedBy": [ { "type": "uri", @@ -45771,7 +43888,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/232895651", "identifiedBy": [ { "type": "uri", @@ -45795,7 +43911,6 @@ "ice", "eng" ], - "identifier": "http://www.idref.fr/232897964", "identifiedBy": [ { "type": "uri", @@ -45828,7 +43943,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/232915741", "identifiedBy": [ { "type": "uri", @@ -45852,7 +43966,6 @@ "jpn" ], "conference": false, - "identifier": "http://www.idref.fr/232934436", "identifiedBy": [ { "type": "uri", @@ -45886,7 +43999,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/233220984", "identifiedBy": [ { "type": "uri", @@ -45910,7 +44022,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/23322758X", "identifiedBy": [ { "type": "uri", @@ -45933,7 +44044,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/233251073", "identifiedBy": [ { "type": "uri", @@ -45957,7 +44067,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/233326103", "identifiedBy": [ { "type": "uri", @@ -45977,7 +44086,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/233342575", "identifiedBy": [ { "type": "uri", @@ -46002,7 +44110,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/233346562", "identifiedBy": [ { "type": "uri", @@ -46025,7 +44132,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/23352391X", "identifiedBy": [ { "type": "uri", @@ -46055,7 +44161,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/233537155", "identifiedBy": [ { "type": "uri", @@ -46084,7 +44189,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/233564373", "identifiedBy": [ { "type": "uri", @@ -46107,7 +44211,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/233619771", "identifiedBy": [ { "type": "uri", @@ -46129,7 +44232,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/233969829", "identifiedBy": [ { "type": "uri", @@ -46158,7 +44260,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/234087080", "identifiedBy": [ { "type": "uri", @@ -46177,7 +44278,6 @@ "md5": "c1c29a6db7bb710aa4472fc754be8871", "pid": "234195576", "type": "bf:Person", - "identifier": "http://www.idref.fr/234195576", "identifiedBy": [ { "type": "uri", @@ -46198,7 +44298,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/234199180", "identifiedBy": [ { "type": "uri", @@ -46221,7 +44320,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/234246820", "identifiedBy": [ { "type": "uri", @@ -46244,7 +44342,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/234251433", "identifiedBy": [ { "type": "uri", @@ -46266,7 +44363,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/234251867", "identifiedBy": [ { "type": "uri", @@ -46288,7 +44384,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/234252006", "identifiedBy": [ { "type": "uri", @@ -46311,7 +44406,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/234273771", "identifiedBy": [ { "type": "uri", @@ -46333,7 +44427,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/234277602", "identifiedBy": [ { "type": "uri", @@ -46357,7 +44450,6 @@ "fre" ], "conference": true, - "identifier": "http://www.idref.fr/234278390", "identifiedBy": [ { "type": "uri", @@ -46388,7 +44480,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/234317566", "identifiedBy": [ { "type": "uri", @@ -46407,7 +44498,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/234340487", "identifiedBy": [ { "type": "uri", @@ -46426,7 +44516,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/234363053", "identifiedBy": [ { "type": "uri", @@ -46449,7 +44538,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/234417765", "identifiedBy": [ { "type": "uri", @@ -46474,7 +44562,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/234443693", "identifiedBy": [ { "type": "uri", @@ -46503,7 +44590,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/234449381", "identifiedBy": [ { "type": "uri", @@ -46525,7 +44611,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/234468718", "identifiedBy": [ { "type": "uri", @@ -46547,7 +44632,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/234477644", "identifiedBy": [ { "type": "uri", @@ -46571,7 +44655,6 @@ "fre" ], "qualifier": "sage-femme", - "identifier": "http://www.idref.fr/23449140X", "identifiedBy": [ { "type": "uri", @@ -46591,7 +44674,6 @@ "md5": "11d9b2eed892860897900c093beff35d", "pid": "234536535", "type": "bf:Person", - "identifier": "http://www.idref.fr/234536535", "identifiedBy": [ { "type": "uri", @@ -46609,7 +44691,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/234569182", "identifiedBy": [ { "type": "uri", @@ -46628,7 +44709,6 @@ "language": [ "jpn" ], - "identifier": "http://www.idref.fr/234587989", "identifiedBy": [ { "type": "uri", @@ -46659,7 +44739,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/23459313X", "identifiedBy": [ { "type": "uri", @@ -46687,7 +44766,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/234622512", "identifiedBy": [ { "type": "uri", @@ -46706,7 +44784,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/234673672", "identifiedBy": [ { "type": "uri", @@ -46730,7 +44807,6 @@ "language": [ "jpn" ], - "identifier": "http://www.idref.fr/234715723", "identifiedBy": [ { "type": "uri", @@ -46756,7 +44832,6 @@ "md5": "268bba3e70955569fccfb82b65ef481d", "pid": "234745479", "type": "bf:Person", - "identifier": "http://www.idref.fr/234745479", "identifiedBy": [ { "type": "uri", @@ -46791,7 +44866,6 @@ "ita" ], "conference": false, - "identifier": "http://www.idref.fr/23475382X", "identifiedBy": [ { "type": "uri", @@ -46825,7 +44899,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/234776439", "identifiedBy": [ { "type": "uri", @@ -46846,7 +44919,6 @@ "pid": "234777079", "type": "bf:Organisation", "conference": false, - "identifier": "http://www.idref.fr/234777079", "identifiedBy": [ { "type": "uri", @@ -46872,7 +44944,6 @@ "srp" ], "conference": false, - "identifier": "http://www.idref.fr/234811080", "identifiedBy": [ { "type": "uri", @@ -46898,7 +44969,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/234843160", "identifiedBy": [ { "type": "uri", @@ -46915,7 +44985,6 @@ "md5": "03aa8b2922e141d27062320ce14f4995", "pid": "234849223", "type": "bf:Person", - "identifier": "http://www.idref.fr/234849223", "identifiedBy": [ { "type": "uri", @@ -46938,7 +45007,6 @@ "language": [ "por" ], - "identifier": "http://www.idref.fr/235030929", "identifiedBy": [ { "type": "uri", @@ -46960,7 +45028,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/235031771", "identifiedBy": [ { "type": "uri", @@ -47004,7 +45071,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/235057657", "identifiedBy": [ { "type": "uri", @@ -47023,7 +45089,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/235095273", "identifiedBy": [ { "type": "uri", @@ -47045,7 +45110,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/235097306", "identifiedBy": [ { "type": "uri", @@ -47067,7 +45131,6 @@ "language": [ "pol" ], - "identifier": "http://www.idref.fr/23515606X", "identifiedBy": [ { "type": "uri", @@ -47087,7 +45150,6 @@ "language": [ "ara" ], - "identifier": "http://www.idref.fr/235183881", "identifiedBy": [ { "type": "uri", @@ -47103,7 +45165,6 @@ "md5": "ad7f08155f4280cec3b341cd04dc9465", "pid": "235239593", "type": "bf:Person", - "identifier": "http://www.idref.fr/235239593", "identifiedBy": [ { "type": "uri", @@ -47121,7 +45182,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/235262927", "identifiedBy": [ { "type": "uri", @@ -47141,7 +45201,6 @@ "language": [ "ara" ], - "identifier": "http://www.idref.fr/23527125X", "identifiedBy": [ { "type": "uri", @@ -47171,7 +45230,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/235301108", "identifiedBy": [ { "type": "uri", @@ -47199,7 +45257,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/235301787", "identifiedBy": [ { "type": "uri", @@ -47222,7 +45279,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/235328790", "identifiedBy": [ { "type": "uri", @@ -47244,7 +45300,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/235561584", "identifiedBy": [ { "type": "uri", @@ -47266,7 +45321,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/235598720", "identifiedBy": [ { "type": "uri", @@ -47286,7 +45340,6 @@ "md5": "74c913caba23006990f9bfb8c5c006be", "pid": "235711667", "type": "bf:Person", - "identifier": "http://www.idref.fr/235711667", "identifiedBy": [ { "type": "uri", @@ -47301,7 +45354,6 @@ "md5": "b0c32e38f0b6afe519cfc41043fb6d34", "pid": "235718211", "type": "bf:Person", - "identifier": "http://www.idref.fr/235718211", "identifiedBy": [ { "type": "uri", @@ -47319,7 +45371,6 @@ "language": [ "hrv" ], - "identifier": "http://www.idref.fr/235835943", "identifiedBy": [ { "type": "uri", @@ -47343,7 +45394,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/235860131", "identifiedBy": [ { "type": "uri", @@ -47363,7 +45413,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/235909025", "identifiedBy": [ { "type": "uri", @@ -47382,7 +45431,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/236048198", "identifiedBy": [ { "type": "uri", @@ -47403,7 +45451,6 @@ "pid": "236052616", "type": "bf:Organisation", "conference": false, - "identifier": "http://www.idref.fr/236052616", "identifiedBy": [ { "type": "uri", @@ -47418,7 +45465,6 @@ "md5": "d7325474aa7c9818faa2325896fb6d88", "pid": "236100599", "type": "bf:Person", - "identifier": "http://www.idref.fr/236100599", "identifiedBy": [ { "type": "uri", @@ -47442,7 +45488,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/236101706", "identifiedBy": [ { "type": "uri", @@ -47465,7 +45510,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/236118668", "identifiedBy": [ { "type": "uri", @@ -47487,7 +45531,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/236167510", "identifiedBy": [ { "type": "uri", @@ -47506,7 +45549,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/236210424", "identifiedBy": [ { "type": "uri", @@ -47528,7 +45570,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/236421603", "identifiedBy": [ { "type": "uri", @@ -47548,7 +45589,6 @@ "mul" ], "conference": true, - "identifier": "http://www.idref.fr/236517627", "identifiedBy": [ { "type": "uri", @@ -47582,7 +45622,6 @@ "pid": "236553917", "type": "bf:Organisation", "conference": false, - "identifier": "http://www.idref.fr/236553917", "identifiedBy": [ { "type": "uri", @@ -47614,7 +45653,6 @@ "language": [ "chi" ], - "identifier": "http://www.idref.fr/236613529", "identifiedBy": [ { "type": "uri", @@ -47643,7 +45681,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/236615165", "identifiedBy": [ { "type": "uri", @@ -47667,7 +45704,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/236625284", "identifiedBy": [ { "type": "uri", @@ -47689,7 +45725,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/236722344", "identifiedBy": [ { "type": "uri", @@ -47713,7 +45748,6 @@ "eng", "spa" ], - "identifier": "http://www.idref.fr/236724371", "identifiedBy": [ { "type": "uri", @@ -47744,7 +45778,6 @@ "language": [ "tha" ], - "identifier": "http://www.idref.fr/236751964", "identifiedBy": [ { "type": "uri", @@ -47781,7 +45814,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/236752677", "identifiedBy": [ { "type": "uri", @@ -47803,7 +45835,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/236755889", "identifiedBy": [ { "type": "uri", @@ -47827,7 +45858,6 @@ "jpn" ], "conference": false, - "identifier": "http://www.idref.fr/236758349", "identifiedBy": [ { "type": "uri", @@ -47849,7 +45879,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/236760378", "identifiedBy": [ { "type": "uri", @@ -47873,7 +45902,6 @@ "per", "eng" ], - "identifier": "http://www.idref.fr/236792539", "identifiedBy": [ { "type": "uri", @@ -47900,7 +45928,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/237190109", "identifiedBy": [ { "type": "uri", @@ -47923,7 +45950,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/237257521", "identifiedBy": [ { "type": "uri", @@ -47942,7 +45968,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/237613883", "identifiedBy": [ { "type": "uri", @@ -47969,7 +45994,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/237634260", "identifiedBy": [ { "type": "uri", @@ -47988,7 +46012,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/237678373", "identifiedBy": [ { "type": "uri", @@ -48011,7 +46034,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/23771745X", "identifiedBy": [ { "type": "uri", @@ -48034,7 +46056,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/237781565", "identifiedBy": [ { "type": "uri", @@ -48054,7 +46075,6 @@ "md5": "fd1ef781181c6729c8999e5c99584c13", "pid": "237801221", "type": "bf:Person", - "identifier": "http://www.idref.fr/237801221", "identifiedBy": [ { "type": "uri", @@ -48072,7 +46092,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/237825457", "identifiedBy": [ { "type": "uri", @@ -48094,7 +46113,6 @@ "language": [ "nor" ], - "identifier": "http://www.idref.fr/237851539", "identifiedBy": [ { "type": "uri", @@ -48117,7 +46135,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/23789615X", "identifiedBy": [ { "type": "uri", @@ -48138,7 +46155,6 @@ "fre" ], "qualifier": "comte de", - "identifier": "http://www.idref.fr/238282694", "identifiedBy": [ { "type": "uri", @@ -48159,7 +46175,6 @@ "md5": "6822b26299a2e09fa8d16eefd8cf2cee", "pid": "238303845", "type": "bf:Person", - "identifier": "http://www.idref.fr/238303845", "identifiedBy": [ { "type": "uri", @@ -48184,7 +46199,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/23830566X", "identifiedBy": [ { "type": "uri", @@ -48207,7 +46221,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/238472345", "identifiedBy": [ { "type": "uri", @@ -48229,7 +46242,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/238526852", "identifiedBy": [ { "type": "uri", @@ -48249,7 +46261,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/238572366", "identifiedBy": [ { "type": "uri", @@ -48271,7 +46282,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/238704750", "identifiedBy": [ { "type": "uri", @@ -48294,7 +46304,6 @@ "fre" ], "qualifier": "po\u00e8te", - "identifier": "http://www.idref.fr/238709906", "identifiedBy": [ { "type": "uri", @@ -48322,7 +46331,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/238712435", "identifiedBy": [ { "type": "uri", @@ -48345,7 +46353,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/238721892", "identifiedBy": [ { "type": "uri", @@ -48368,7 +46375,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/240085930", "identifiedBy": [ { "type": "uri", @@ -48387,7 +46393,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/240100786", "identifiedBy": [ { "type": "uri", @@ -48402,7 +46407,6 @@ "md5": "829e1246d0e8d125677058f9bdb35da1", "pid": "240195523", "type": "bf:Person", - "identifier": "http://www.idref.fr/240195523", "identifiedBy": [ { "type": "uri", @@ -48420,7 +46424,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/240228448", "identifiedBy": [ { "type": "uri", @@ -48440,7 +46443,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/240238117", "identifiedBy": [ { "type": "uri", @@ -48468,7 +46470,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/240280539", "identifiedBy": [ { "type": "uri", @@ -48490,7 +46491,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/240312724", "identifiedBy": [ { "type": "uri", @@ -48513,7 +46513,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/240401891", "identifiedBy": [ { "type": "uri", @@ -48536,7 +46535,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/240413741", "identifiedBy": [ { "type": "uri", @@ -48554,7 +46552,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/240416082", "identifiedBy": [ { "type": "uri", @@ -48576,7 +46573,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/240441516", "identifiedBy": [ { "type": "uri", @@ -48607,7 +46603,6 @@ "heb" ], "conference": false, - "identifier": "http://www.idref.fr/240465067", "identifiedBy": [ { "type": "uri", @@ -48644,7 +46639,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/240522737", "identifiedBy": [ { "type": "uri", @@ -48666,7 +46660,6 @@ "language": [ "srp" ], - "identifier": "http://www.idref.fr/240554868", "identifiedBy": [ { "type": "uri", @@ -48691,7 +46684,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/240646339", "identifiedBy": [ { "type": "uri", @@ -48714,7 +46706,6 @@ "language": [ "nor" ], - "identifier": "http://www.idref.fr/240748069", "identifiedBy": [ { "type": "uri", @@ -48736,7 +46727,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/240816773", "identifiedBy": [ { "type": "uri", @@ -48755,7 +46745,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/240825187", "identifiedBy": [ { "type": "uri", @@ -48778,7 +46767,6 @@ "fre" ], "qualifier": "professeur d'histoire g\u00e9ographie", - "identifier": "http://www.idref.fr/240863062", "identifiedBy": [ { "type": "uri", @@ -48801,7 +46789,6 @@ "language": [ "srp" ], - "identifier": "http://www.idref.fr/240922344", "identifiedBy": [ { "type": "uri", @@ -48829,7 +46816,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/240936094", "identifiedBy": [ { "type": "uri", @@ -48849,7 +46835,6 @@ "ger", "chi" ], - "identifier": "http://www.idref.fr/240965280", "identifiedBy": [ { "type": "uri", @@ -48873,7 +46858,6 @@ "dut", "eng" ], - "identifier": "http://www.idref.fr/240984374", "identifiedBy": [ { "type": "uri", @@ -48896,7 +46880,6 @@ "ger", "gre" ], - "identifier": "http://www.idref.fr/240987195", "identifiedBy": [ { "type": "uri", @@ -48925,7 +46908,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/241130921", "identifiedBy": [ { "type": "uri", @@ -48948,7 +46930,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/241164168", "identifiedBy": [ { "type": "uri", @@ -48971,7 +46952,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/241297230", "identifiedBy": [ { "type": "uri", @@ -48994,7 +46974,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/241375908", "identifiedBy": [ { "type": "uri", @@ -49022,7 +47001,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/241428017", "identifiedBy": [ { "type": "uri", @@ -49044,7 +47022,6 @@ "language": [ "por" ], - "identifier": "http://www.idref.fr/241442567", "identifiedBy": [ { "type": "uri", @@ -49072,7 +47049,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/241463548", "identifiedBy": [ { "type": "uri", @@ -49094,7 +47070,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/241506662", "identifiedBy": [ { "type": "uri", @@ -49117,7 +47092,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/241515033", "identifiedBy": [ { "type": "uri", @@ -49139,7 +47113,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/241527104", "identifiedBy": [ { "type": "uri", @@ -49162,7 +47135,6 @@ "eng" ], "conference": true, - "identifier": "http://www.idref.fr/241542162", "identifiedBy": [ { "type": "uri", @@ -49183,7 +47155,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/241568137", "identifiedBy": [ { "type": "uri", @@ -49203,7 +47174,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/24157899X", "identifiedBy": [ { "type": "uri", @@ -49225,7 +47195,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/241716853", "identifiedBy": [ { "type": "uri", @@ -49248,7 +47217,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/24172726X", "identifiedBy": [ { "type": "uri", @@ -49272,7 +47240,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/241765528", "identifiedBy": [ { "type": "uri", @@ -49294,7 +47261,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/241771188", "identifiedBy": [ { "type": "uri", @@ -49316,7 +47282,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/24185055X", "identifiedBy": [ { "type": "uri", @@ -49336,7 +47301,6 @@ "md5": "28c7556b6c9e037e9aaee8e2de302532", "pid": "241923018", "type": "bf:Person", - "identifier": "http://www.idref.fr/241923018", "identifiedBy": [ { "type": "uri", @@ -49354,7 +47318,6 @@ "language": [ "jpn" ], - "identifier": "http://www.idref.fr/241957176", "identifiedBy": [ { "type": "uri", @@ -49383,7 +47346,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/242007481", "identifiedBy": [ { "type": "uri", @@ -49402,7 +47364,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/242143814", "identifiedBy": [ { "type": "uri", @@ -49420,7 +47381,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/242274455", "identifiedBy": [ { "type": "uri", @@ -49443,7 +47403,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/242293557", "identifiedBy": [ { "type": "uri", @@ -49466,7 +47425,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/242323375", "identifiedBy": [ { "type": "uri", @@ -49494,7 +47452,6 @@ "eng" ], "conference": true, - "identifier": "http://www.idref.fr/242335608", "identifiedBy": [ { "type": "uri", @@ -49513,7 +47470,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/242414826", "identifiedBy": [ { "type": "uri", @@ -49536,7 +47492,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/242426832", "identifiedBy": [ { "type": "uri", @@ -49558,7 +47513,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/242433995", "identifiedBy": [ { "type": "uri", @@ -49581,7 +47535,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/242448771", "identifiedBy": [ { "type": "uri", @@ -49603,7 +47556,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/242451098", "identifiedBy": [ { "type": "uri", @@ -49625,7 +47577,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/24245383X", "identifiedBy": [ { "type": "uri", @@ -49645,7 +47596,6 @@ "md5": "2d3563ae50750f99968ac9dbe16518d7", "pid": "242518664", "type": "bf:Person", - "identifier": "http://www.idref.fr/242518664", "identifiedBy": [ { "type": "uri", @@ -49667,7 +47617,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/242542948", "identifiedBy": [ { "type": "uri", @@ -49691,7 +47640,6 @@ "fre" ], "qualifier": "auteur d'une th\u00e8se en informatique", - "identifier": "http://www.idref.fr/242557139", "identifiedBy": [ { "type": "uri", @@ -49714,7 +47662,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/242723470", "identifiedBy": [ { "type": "uri", @@ -49733,7 +47680,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/242740065", "identifiedBy": [ { "type": "uri", @@ -49752,7 +47698,6 @@ "md5": "ea71c6d513b3603bcada28b03eb28bc9", "pid": "242756220", "type": "bf:Person", - "identifier": "http://www.idref.fr/242756220", "identifiedBy": [ { "type": "uri", @@ -49773,7 +47718,6 @@ "language": [ "ara" ], - "identifier": "http://www.idref.fr/242866441", "identifiedBy": [ { "type": "uri", @@ -49796,7 +47740,6 @@ "language": [ "pol" ], - "identifier": "http://www.idref.fr/242927351", "identifiedBy": [ { "type": "uri", @@ -49819,7 +47762,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/243004028", "identifiedBy": [ { "type": "uri", @@ -49842,7 +47784,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/243016271", "identifiedBy": [ { "type": "uri", @@ -49865,7 +47806,6 @@ "eng", "ita" ], - "identifier": "http://www.idref.fr/243031599", "identifiedBy": [ { "type": "uri", @@ -49889,7 +47829,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/243035411", "identifiedBy": [ { "type": "uri", @@ -49912,7 +47851,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/243035632", "identifiedBy": [ { "type": "uri", @@ -49932,7 +47870,6 @@ "fre" ], "qualifier": "neurochirurgien", - "identifier": "http://www.idref.fr/243036620", "identifiedBy": [ { "type": "uri", @@ -49955,7 +47892,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/243043619", "identifiedBy": [ { "type": "uri", @@ -49978,7 +47914,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/243137400", "identifiedBy": [ { "type": "uri", @@ -49996,7 +47931,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/243138016", "identifiedBy": [ { "type": "uri", @@ -50019,7 +47953,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/243154666", "identifiedBy": [ { "type": "uri", @@ -50039,7 +47972,6 @@ "md5": "d4c8cb18e622f22202010c3ac476166e", "pid": "243208294", "type": "bf:Person", - "identifier": "http://www.idref.fr/243208294", "identifiedBy": [ { "type": "uri", @@ -50057,7 +47989,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/243209983", "identifiedBy": [ { "type": "uri", @@ -50086,7 +48017,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/243266413", "identifiedBy": [ { "type": "uri", @@ -50110,7 +48040,6 @@ "eng", "swe" ], - "identifier": "http://www.idref.fr/243279795", "identifiedBy": [ { "type": "uri", @@ -50136,7 +48065,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/243300131", "identifiedBy": [ { "type": "uri", @@ -50158,7 +48086,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/243306032", "identifiedBy": [ { "type": "uri", @@ -50180,7 +48107,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/243308442", "identifiedBy": [ { "type": "uri", @@ -50202,7 +48128,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/243327463", "identifiedBy": [ { "type": "uri", @@ -50232,7 +48157,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/243330715", "identifiedBy": [ { "type": "uri", @@ -50254,7 +48178,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/243363796", "identifiedBy": [ { "type": "uri", @@ -50276,7 +48199,6 @@ "language": [ "pol" ], - "identifier": "http://www.idref.fr/243370261", "identifiedBy": [ { "type": "uri", @@ -50295,7 +48217,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/243382731", "identifiedBy": [ { "type": "uri", @@ -50314,7 +48235,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/243407998", "identifiedBy": [ { "type": "uri", @@ -50334,7 +48254,6 @@ "language": [ "por" ], - "identifier": "http://www.idref.fr/243428421", "identifiedBy": [ { "type": "uri", @@ -50352,7 +48271,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/243433913", "identifiedBy": [ { "type": "uri", @@ -50367,7 +48285,6 @@ "md5": "f14fd204865a48025b6752e76277ae47", "pid": "243488785", "type": "bf:Person", - "identifier": "http://www.idref.fr/243488785", "identifiedBy": [ { "type": "uri", @@ -50390,7 +48307,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/24348951X", "identifiedBy": [ { "type": "uri", @@ -50413,7 +48329,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/243512155", "identifiedBy": [ { "type": "uri", @@ -50431,7 +48346,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/243530080", "identifiedBy": [ { "type": "uri", @@ -50449,7 +48363,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/243540434", "identifiedBy": [ { "type": "uri", @@ -50467,7 +48380,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/243554001", "identifiedBy": [ { "type": "uri", @@ -50485,7 +48397,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/24355933X", "identifiedBy": [ { "type": "uri", @@ -50503,7 +48414,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/243567634", "identifiedBy": [ { "type": "uri", @@ -50521,7 +48431,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/243577583", "identifiedBy": [ { "type": "uri", @@ -50539,7 +48448,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/243578482", "identifiedBy": [ { "type": "uri", @@ -50557,7 +48465,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/243583133", "identifiedBy": [ { "type": "uri", @@ -50585,7 +48492,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/243594895", "identifiedBy": [ { "type": "uri", @@ -50608,7 +48514,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/243597827", "identifiedBy": [ { "type": "uri", @@ -50628,7 +48533,6 @@ "eng" ], "conference": true, - "identifier": "http://www.idref.fr/243602049", "identifiedBy": [ { "type": "uri", @@ -50649,7 +48553,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/24360405X", "identifiedBy": [ { "type": "uri", @@ -50672,7 +48575,6 @@ "eng" ], "conference": true, - "identifier": "http://www.idref.fr/243621418", "identifiedBy": [ { "type": "uri", @@ -50690,7 +48592,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/243630832", "identifiedBy": [ { "type": "uri", @@ -50712,7 +48613,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/243644124", "identifiedBy": [ { "type": "uri", @@ -50733,7 +48633,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/243654510", "identifiedBy": [ { "type": "uri", @@ -50755,7 +48654,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/243677596", "identifiedBy": [ { "type": "uri", @@ -50777,7 +48675,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/243682603", "identifiedBy": [ { "type": "uri", @@ -50801,7 +48698,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/243689616", "identifiedBy": [ { "type": "uri", @@ -50824,7 +48720,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/243691041", "identifiedBy": [ { "type": "uri", @@ -50857,7 +48752,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/243694911", "identifiedBy": [ { "type": "uri", @@ -50878,7 +48772,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/243698267", "identifiedBy": [ { "type": "uri", @@ -50903,7 +48796,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/24370206X", "identifiedBy": [ { "type": "uri", @@ -50922,7 +48814,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/243703597", "identifiedBy": [ { "type": "uri", @@ -50945,7 +48836,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/243712979", "identifiedBy": [ { "type": "uri", @@ -50964,7 +48854,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/243737823", "identifiedBy": [ { "type": "uri", @@ -50987,7 +48876,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/243741138", "identifiedBy": [ { "type": "uri", @@ -51006,7 +48894,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/243749120", "identifiedBy": [ { "type": "uri", @@ -51031,7 +48918,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/243803133", "identifiedBy": [ { "type": "uri", @@ -51054,7 +48940,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/243814682", "identifiedBy": [ { "type": "uri", @@ -51077,7 +48962,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/243820984", "identifiedBy": [ { "type": "uri", @@ -51096,7 +48980,6 @@ "language": [ "ara" ], - "identifier": "http://www.idref.fr/243828446", "identifiedBy": [ { "type": "uri", @@ -51115,7 +48998,6 @@ "language": [ "rus" ], - "identifier": "http://www.idref.fr/243832206", "identifiedBy": [ { "type": "uri", @@ -51133,7 +49015,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/24384025X", "identifiedBy": [ { "type": "uri", @@ -51152,7 +49033,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/243868065", "identifiedBy": [ { "type": "uri", @@ -51171,7 +49051,6 @@ "language": [ "chi" ], - "identifier": "http://www.idref.fr/24388303X", "identifiedBy": [ { "type": "uri", @@ -51189,7 +49068,6 @@ "language": [ "gre" ], - "identifier": "http://www.idref.fr/243886179", "identifiedBy": [ { "type": "uri", @@ -51208,7 +49086,6 @@ "language": [ "jpn" ], - "identifier": "http://www.idref.fr/243894910", "identifiedBy": [ { "type": "uri", @@ -51227,7 +49104,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/243895046", "identifiedBy": [ { "type": "uri", @@ -51246,7 +49122,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/243937075", "identifiedBy": [ { "type": "uri", @@ -51268,7 +49143,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/244010218", "identifiedBy": [ { "type": "uri", @@ -51290,7 +49164,6 @@ "language": [ "rus" ], - "identifier": "http://www.idref.fr/244049882", "identifiedBy": [ { "type": "uri", @@ -51308,7 +49181,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/244052468", "identifiedBy": [ { "type": "uri", @@ -51327,7 +49199,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/24406024X", "identifiedBy": [ { "type": "uri", @@ -51346,7 +49217,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/244061092", "identifiedBy": [ { "type": "uri", @@ -51364,7 +49234,6 @@ "language": [ "rus" ], - "identifier": "http://www.idref.fr/244072922", "identifiedBy": [ { "type": "uri", @@ -51383,7 +49252,6 @@ "language": [ "rus" ], - "identifier": "http://www.idref.fr/244077878", "identifiedBy": [ { "type": "uri", @@ -51404,7 +49272,6 @@ "md5": "a18d416feaaaa7fb67a86c418060fd4e", "pid": "244092389", "type": "bf:Person", - "identifier": "http://www.idref.fr/244092389", "identifiedBy": [ { "type": "uri", @@ -51426,7 +49293,6 @@ "language": [ "rus" ], - "identifier": "http://www.idref.fr/244098972", "identifiedBy": [ { "type": "uri", @@ -51444,7 +49310,6 @@ "language": [ "rus" ], - "identifier": "http://www.idref.fr/244117802", "identifiedBy": [ { "type": "uri", @@ -51462,7 +49327,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/244121095", "identifiedBy": [ { "type": "uri", @@ -51481,7 +49345,6 @@ "language": [ "rus" ], - "identifier": "http://www.idref.fr/244126283", "identifiedBy": [ { "type": "uri", @@ -51499,7 +49362,6 @@ "language": [ "rus" ], - "identifier": "http://www.idref.fr/244135282", "identifiedBy": [ { "type": "uri", @@ -51518,7 +49380,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/244139563", "identifiedBy": [ { "type": "uri", @@ -51537,7 +49398,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/244165610", "identifiedBy": [ { "type": "uri", @@ -51559,7 +49419,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/24416603X", "identifiedBy": [ { "type": "uri", @@ -51582,7 +49441,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/244233403", "identifiedBy": [ { "type": "uri", @@ -51601,7 +49459,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/244251568", "identifiedBy": [ { "type": "uri", @@ -51622,7 +49479,6 @@ "md5": "55670c904c6ab518371de3c0eba08743", "pid": "244257469", "type": "bf:Person", - "identifier": "http://www.idref.fr/244257469", "identifiedBy": [ { "type": "uri", @@ -51643,7 +49499,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/244273111", "identifiedBy": [ { "type": "uri", @@ -51663,7 +49518,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/244318301", "identifiedBy": [ { "type": "uri", @@ -51686,7 +49540,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/244324913", "identifiedBy": [ { "type": "uri", @@ -51710,7 +49563,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/244341672", "identifiedBy": [ { "type": "uri", @@ -51736,7 +49588,6 @@ "md5": "e4d9d0cb3746b476e2c9d06dd7af8599", "pid": "244341796", "type": "bf:Person", - "identifier": "http://www.idref.fr/244341796", "identifiedBy": [ { "type": "uri", @@ -51754,7 +49605,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/244350329", "identifiedBy": [ { "type": "uri", @@ -51783,7 +49633,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/244402515", "identifiedBy": [ { "type": "uri", @@ -51802,7 +49651,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/244420645", "identifiedBy": [ { "type": "uri", @@ -51824,7 +49672,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/244433577", "identifiedBy": [ { "type": "uri", @@ -51843,7 +49690,6 @@ "language": [ "swe" ], - "identifier": "http://www.idref.fr/244450765", "identifiedBy": [ { "type": "uri", @@ -51862,7 +49708,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/244788987", "identifiedBy": [ { "type": "uri", @@ -51887,7 +49732,6 @@ "md5": "645522b7d37a57cdef93a395a4d92adf", "pid": "244799768", "type": "bf:Person", - "identifier": "http://www.idref.fr/244799768", "identifiedBy": [ { "type": "uri", @@ -51905,7 +49749,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/244882908", "identifiedBy": [ { "type": "uri", @@ -51930,7 +49773,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/24488451X", "identifiedBy": [ { "type": "uri", @@ -51949,7 +49791,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/244888558", "identifiedBy": [ { "type": "uri", @@ -51967,7 +49808,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/244922624", "identifiedBy": [ { "type": "uri", @@ -51989,7 +49829,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/244934894", "identifiedBy": [ { "type": "uri", @@ -52013,7 +49852,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/245023542", "identifiedBy": [ { "type": "uri", @@ -52042,7 +49880,6 @@ "pid": "245054200", "type": "bf:Organisation", "conference": true, - "identifier": "http://www.idref.fr/245054200", "identifiedBy": [ { "type": "uri", @@ -52059,7 +49896,6 @@ "md5": "dd7d1d7593d01cc609370298d281c77e", "pid": "24507869X", "type": "bf:Person", - "identifier": "http://www.idref.fr/24507869X", "identifiedBy": [ { "type": "uri", @@ -52077,7 +49913,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/24515969X", "identifiedBy": [ { "type": "uri", @@ -52101,7 +49936,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/245200142", "identifiedBy": [ { "type": "uri", @@ -52129,7 +49963,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/245235949", "identifiedBy": [ { "type": "uri", @@ -52153,7 +49986,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/245265805", "identifiedBy": [ { "type": "uri", @@ -52173,7 +50005,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/245313486", "identifiedBy": [ { "type": "uri", @@ -52197,7 +50028,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/248175920", "identifiedBy": [ { "type": "uri", @@ -52213,7 +50043,6 @@ "md5": "151cda6010d675e1b85c09be1e6fcdeb", "pid": "248213032", "type": "bf:Person", - "identifier": "http://www.idref.fr/248213032", "identifiedBy": [ { "type": "uri", @@ -52254,7 +50083,6 @@ "fre" ], "qualifier": "M.", - "identifier": "http://www.idref.fr/248374249", "identifiedBy": [ { "type": "uri", @@ -52273,7 +50101,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/248391038", "identifiedBy": [ { "type": "uri", @@ -52294,7 +50121,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/248436074", "identifiedBy": [ { "type": "uri", @@ -52314,7 +50140,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/248958445", "identifiedBy": [ { "type": "uri", @@ -52337,7 +50162,6 @@ "language": [ "heb" ], - "identifier": "http://www.idref.fr/248982621", "identifiedBy": [ { "type": "uri", @@ -52372,7 +50196,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/249008173", "identifiedBy": [ { "type": "uri", @@ -52395,7 +50218,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/249129019", "identifiedBy": [ { "type": "uri", @@ -52418,7 +50240,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/24913344X", "identifiedBy": [ { "type": "uri", @@ -52437,7 +50258,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/249284472", "identifiedBy": [ { "type": "uri", @@ -52459,7 +50279,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/249311461", "identifiedBy": [ { "type": "uri", @@ -52482,7 +50301,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/249406845", "identifiedBy": [ { "type": "uri", @@ -52504,7 +50322,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/249486504", "identifiedBy": [ { "type": "uri", @@ -52530,7 +50347,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/249730375", "identifiedBy": [ { "type": "uri", @@ -52550,7 +50366,6 @@ "md5": "81546b21dbf215224da5b0a1bf754a10", "pid": "249743523", "type": "bf:Person", - "identifier": "http://www.idref.fr/249743523", "identifiedBy": [ { "type": "uri", @@ -52571,7 +50386,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/249775441", "identifiedBy": [ { "type": "uri", @@ -52592,7 +50406,6 @@ "ger" ], "conference": false, - "identifier": "http://www.idref.fr/249825074", "identifiedBy": [ { "type": "uri", @@ -52621,7 +50434,6 @@ "dut" ], "conference": false, - "identifier": "http://www.idref.fr/249834472", "identifiedBy": [ { "type": "uri", @@ -52642,7 +50454,6 @@ "ger" ], "conference": false, - "identifier": "http://www.idref.fr/249952378", "identifiedBy": [ { "type": "uri", @@ -52687,7 +50498,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/249981394", "identifiedBy": [ { "type": "uri", @@ -52709,7 +50519,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/250341611", "identifiedBy": [ { "type": "uri", @@ -52731,7 +50540,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/250364913", "identifiedBy": [ { "type": "uri", @@ -52751,7 +50559,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/250368196", "identifiedBy": [ { "type": "uri", @@ -52768,7 +50575,6 @@ "md5": "416f346f8136dba9f78f7d0f51bb9e8d", "pid": "250382598", "type": "bf:Person", - "identifier": "http://www.idref.fr/250382598", "identifiedBy": [ { "type": "uri", @@ -52785,7 +50591,6 @@ "md5": "89a8c3bae1bb5e5808590ff9037151b2", "pid": "250383926", "type": "bf:Person", - "identifier": "http://www.idref.fr/250383926", "identifiedBy": [ { "type": "uri", @@ -52802,7 +50607,6 @@ "md5": "a846e8fc21ddf62b82c8f89fc6d56aa5", "pid": "250384183", "type": "bf:Person", - "identifier": "http://www.idref.fr/250384183", "identifiedBy": [ { "type": "uri", @@ -52819,7 +50623,6 @@ "md5": "3693ecdb560fb413e04a1941370c2e75", "pid": "250397072", "type": "bf:Person", - "identifier": "http://www.idref.fr/250397072", "identifiedBy": [ { "type": "uri", @@ -52836,7 +50639,6 @@ "md5": "cfd02121df7f37ba491723f91b67fc25", "pid": "250402823", "type": "bf:Person", - "identifier": "http://www.idref.fr/250402823", "identifiedBy": [ { "type": "uri", @@ -52856,7 +50658,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/250416468", "identifiedBy": [ { "type": "uri", @@ -52876,7 +50677,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/250507617", "identifiedBy": [ { "type": "uri", @@ -52896,7 +50696,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/250599325", "identifiedBy": [ { "type": "uri", @@ -52920,7 +50719,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/250603187", "identifiedBy": [ { "type": "uri", @@ -52943,7 +50741,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/250620499", "identifiedBy": [ { "type": "uri", @@ -52963,7 +50760,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/250649691", "identifiedBy": [ { "type": "uri", @@ -52986,7 +50782,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/250664968", "identifiedBy": [ { "type": "uri", @@ -53010,7 +50805,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/250680505", "identifiedBy": [ { "type": "uri", @@ -53034,7 +50828,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/250907801", "identifiedBy": [ { "type": "uri", @@ -53055,7 +50848,6 @@ "eng" ], "conference": true, - "identifier": "http://www.idref.fr/250949903", "identifiedBy": [ { "type": "uri", @@ -53082,7 +50874,6 @@ "language": [ "rus" ], - "identifier": "http://www.idref.fr/251014878", "identifiedBy": [ { "type": "uri", @@ -53109,7 +50900,6 @@ "ile" ], "conference": false, - "identifier": "http://www.idref.fr/251123022", "identifiedBy": [ { "type": "uri", @@ -53128,7 +50918,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/251131807", "identifiedBy": [ { "type": "uri", @@ -53147,7 +50936,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/251138607", "identifiedBy": [ { "type": "uri", @@ -53176,7 +50964,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/251195627", "identifiedBy": [ { "type": "uri", @@ -53198,7 +50985,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/251202283", "identifiedBy": [ { "type": "uri", @@ -53223,7 +51009,6 @@ "language": [ "pol" ], - "identifier": "http://www.idref.fr/251278492", "identifiedBy": [ { "type": "uri", @@ -53242,7 +51027,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/251314677", "identifiedBy": [ { "type": "uri", @@ -53265,7 +51049,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/251360164", "identifiedBy": [ { "type": "uri", @@ -53285,7 +51068,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/251394581", "identifiedBy": [ { "type": "uri", @@ -53305,7 +51087,6 @@ "md5": "c3714dbf6b66c132de3f4954c455898e", "pid": "251396312", "type": "bf:Person", - "identifier": "http://www.idref.fr/251396312", "identifiedBy": [ { "type": "uri", @@ -53325,7 +51106,6 @@ "md5": "dc8a87303b2a96e0abe19bac96a202a3", "pid": "251411699", "type": "bf:Person", - "identifier": "http://www.idref.fr/251411699", "identifiedBy": [ { "type": "uri", @@ -53348,7 +51128,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/251429180", "identifiedBy": [ { "type": "uri", @@ -53368,7 +51147,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/251432122", "identifiedBy": [ { "type": "uri", @@ -53391,7 +51169,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/251443361", "identifiedBy": [ { "type": "uri", @@ -53414,7 +51191,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/251455394", "identifiedBy": [ { "type": "uri", @@ -53437,7 +51213,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/251520528", "identifiedBy": [ { "type": "uri", @@ -53457,7 +51232,6 @@ "md5": "664ca22885f144816a1afc9124d3a5c7", "pid": "25154091X", "type": "bf:Person", - "identifier": "http://www.idref.fr/25154091X", "identifiedBy": [ { "type": "uri", @@ -53477,7 +51251,6 @@ "md5": "ccfc90b1cd10f7857fd94b8d02a5827f", "pid": "25156584X", "type": "bf:Person", - "identifier": "http://www.idref.fr/25156584X", "identifiedBy": [ { "type": "uri", @@ -53499,7 +51272,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/25158917X", "identifiedBy": [ { "type": "uri", @@ -53524,7 +51296,6 @@ "ger", "spa" ], - "identifier": "http://www.idref.fr/251615014", "identifiedBy": [ { "type": "uri", @@ -53545,7 +51316,6 @@ "md5": "2446a9a0e87b142cbe6a7c889ea32ad5", "pid": "251625338", "type": "bf:Person", - "identifier": "http://www.idref.fr/251625338", "identifiedBy": [ { "type": "uri", @@ -53579,7 +51349,6 @@ "arm", "fre" ], - "identifier": "http://www.idref.fr/251629783", "identifiedBy": [ { "type": "uri", @@ -53607,7 +51376,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/251650375", "identifiedBy": [ { "type": "uri", @@ -53630,7 +51398,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/251660346", "identifiedBy": [ { "type": "uri", @@ -53654,7 +51421,6 @@ "dut" ], "conference": false, - "identifier": "http://www.idref.fr/251871533", "identifiedBy": [ { "type": "uri", @@ -53675,7 +51441,6 @@ "pid": "252252799", "type": "bf:Organisation", "conference": true, - "identifier": "http://www.idref.fr/252252799", "identifiedBy": [ { "type": "uri", @@ -53693,7 +51458,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/25234717X", "identifiedBy": [ { "type": "uri", @@ -53716,7 +51480,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/252382781", "identifiedBy": [ { "type": "uri", @@ -53740,7 +51503,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/252388208", "identifiedBy": [ { "type": "uri", @@ -53768,7 +51530,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/252426398", "identifiedBy": [ { "type": "uri", @@ -53791,7 +51552,6 @@ "fre" ], "qualifier": "m\u00e9decin", - "identifier": "http://www.idref.fr/252437888", "identifiedBy": [ { "type": "uri", @@ -53815,7 +51575,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/252443748", "identifiedBy": [ { "type": "uri", @@ -53840,7 +51599,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/252462599", "identifiedBy": [ { "type": "uri", @@ -53863,7 +51621,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/25256541X", "identifiedBy": [ { "type": "uri", @@ -53887,7 +51644,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/25268088X", "identifiedBy": [ { "type": "uri", @@ -53911,7 +51667,6 @@ "tam", "eng" ], - "identifier": "http://www.idref.fr/252755294", "identifiedBy": [ { "type": "uri", @@ -53938,7 +51693,6 @@ "md5": "c9987967f581c7f34ca74b1311a8ce93", "pid": "252764277", "type": "bf:Person", - "identifier": "http://www.idref.fr/252764277", "identifiedBy": [ { "type": "uri", @@ -53963,7 +51717,6 @@ "language": [ "dut" ], - "identifier": "http://www.idref.fr/252855477", "identifiedBy": [ { "type": "uri", @@ -53995,7 +51748,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/252916263", "identifiedBy": [ { "type": "uri", @@ -54017,7 +51769,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/25295114X", "identifiedBy": [ { "type": "uri", @@ -54041,7 +51792,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/25304653X", "identifiedBy": [ { "type": "uri", @@ -54063,7 +51813,6 @@ "language": [ "lit" ], - "identifier": "http://www.idref.fr/253143462", "identifiedBy": [ { "type": "uri", @@ -54083,7 +51832,6 @@ "md5": "03f7dd0755b5686330bc27c8d9111499", "pid": "253180627", "type": "bf:Person", - "identifier": "http://www.idref.fr/253180627", "identifiedBy": [ { "type": "uri", @@ -54105,7 +51853,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/253203155", "identifiedBy": [ { "type": "uri", @@ -54128,7 +51875,6 @@ "language": [ "jpn" ], - "identifier": "http://www.idref.fr/25322859X", "identifiedBy": [ { "type": "uri", @@ -54154,7 +51900,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/25324403X", "identifiedBy": [ { "type": "uri", @@ -54183,7 +51928,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/253263298", "identifiedBy": [ { "type": "uri", @@ -54202,7 +51946,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/253507790", "identifiedBy": [ { "type": "uri", @@ -54226,7 +51969,6 @@ "vie" ], "conference": false, - "identifier": "http://www.idref.fr/253610958", "identifiedBy": [ { "type": "uri", @@ -54273,7 +52015,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/253613957", "identifiedBy": [ { "type": "uri", @@ -54303,7 +52044,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/253654041", "identifiedBy": [ { "type": "uri", @@ -54335,7 +52075,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/253760844", "identifiedBy": [ { "type": "uri", @@ -54357,7 +52096,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/253765005", "identifiedBy": [ { "type": "uri", @@ -54377,7 +52115,6 @@ "eng" ], "conference": true, - "identifier": "http://www.idref.fr/253814103", "identifiedBy": [ { "type": "uri", @@ -54406,7 +52143,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/253879965", "identifiedBy": [ { "type": "uri", @@ -54435,7 +52171,6 @@ "language": [ "pol" ], - "identifier": "http://www.idref.fr/25394144X", "identifiedBy": [ { "type": "uri", @@ -54458,7 +52193,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/253973031", "identifiedBy": [ { "type": "uri", @@ -54481,7 +52215,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/254069606", "identifiedBy": [ { "type": "uri", @@ -54506,7 +52239,6 @@ "language": [ "pol" ], - "identifier": "http://www.idref.fr/254110754", "identifiedBy": [ { "type": "uri", @@ -54537,7 +52269,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/254146279", "identifiedBy": [ { "type": "uri", @@ -54560,7 +52291,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/254215696", "identifiedBy": [ { "type": "uri", @@ -54585,7 +52315,6 @@ "eng" ], "conference": true, - "identifier": "http://www.idref.fr/254232787", "identifiedBy": [ { "type": "uri", @@ -54607,7 +52336,6 @@ "eng" ], "conference": true, - "identifier": "http://www.idref.fr/254344445", "identifiedBy": [ { "type": "uri", @@ -54626,7 +52354,6 @@ "pid": "254374557", "type": "bf:Organisation", "conference": true, - "identifier": "http://www.idref.fr/254374557", "identifiedBy": [ { "type": "uri", @@ -54650,7 +52377,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/254391508", "identifiedBy": [ { "type": "uri", @@ -54673,7 +52399,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/254418422", "identifiedBy": [ { "type": "uri", @@ -54697,7 +52422,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/254429521", "identifiedBy": [ { "type": "uri", @@ -54735,7 +52459,6 @@ "language": [ "rum" ], - "identifier": "http://www.idref.fr/254455565", "identifiedBy": [ { "type": "uri", @@ -54756,7 +52479,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/254491758", "identifiedBy": [ { "type": "uri", @@ -54779,7 +52501,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/254522564", "identifiedBy": [ { "type": "uri", @@ -54809,7 +52530,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/254587763", "identifiedBy": [ { "type": "uri", @@ -54829,7 +52549,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/254630618", "identifiedBy": [ { "type": "uri", @@ -54849,7 +52568,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/254678475", "identifiedBy": [ { "type": "uri", @@ -54872,7 +52590,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/254738591", "identifiedBy": [ { "type": "uri", @@ -54894,7 +52611,6 @@ "fre" ], "conference": true, - "identifier": "http://www.idref.fr/254743048", "identifiedBy": [ { "type": "uri", @@ -54914,7 +52630,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/254747086", "identifiedBy": [ { "type": "uri", @@ -54937,7 +52652,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/254775578", "identifiedBy": [ { "type": "uri", @@ -54961,7 +52675,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/254778569", "identifiedBy": [ { "type": "uri", @@ -54993,7 +52706,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/254816568", "identifiedBy": [ { "type": "uri", @@ -55016,7 +52728,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/25483180X", "identifiedBy": [ { "type": "uri", @@ -55039,7 +52750,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/254929192", "identifiedBy": [ { "type": "uri", @@ -55062,7 +52772,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/254941540", "identifiedBy": [ { "type": "uri", @@ -55085,7 +52794,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/254976719", "identifiedBy": [ { "type": "uri", @@ -55108,7 +52816,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/254994024", "identifiedBy": [ { "type": "uri", @@ -55131,7 +52838,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/255028679", "identifiedBy": [ { "type": "uri", @@ -55151,7 +52857,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/25508255X", "identifiedBy": [ { "type": "uri", @@ -55174,7 +52879,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/255083556", "identifiedBy": [ { "type": "uri", @@ -55196,7 +52900,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/255144490", "identifiedBy": [ { "type": "uri", @@ -55215,7 +52918,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/255241518", "identifiedBy": [ { "type": "uri", @@ -55237,7 +52939,6 @@ "language": [ "lat" ], - "identifier": "http://www.idref.fr/255348517", "identifiedBy": [ { "type": "uri", @@ -55267,7 +52968,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/255361343", "identifiedBy": [ { "type": "uri", @@ -55289,7 +52989,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/255386419", "identifiedBy": [ { "type": "uri", @@ -55311,7 +53010,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/255415184", "identifiedBy": [ { "type": "uri", @@ -55335,7 +53033,6 @@ "por" ], "conference": false, - "identifier": "http://www.idref.fr/255430760", "identifiedBy": [ { "type": "uri", @@ -55359,7 +53056,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/255435169", "identifiedBy": [ { "type": "uri", @@ -55384,7 +53080,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/255444478", "identifiedBy": [ { "type": "uri", @@ -55407,7 +53102,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/255445075", "identifiedBy": [ { "type": "uri", @@ -55429,7 +53123,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/255453876", "identifiedBy": [ { "type": "uri", @@ -55446,7 +53139,6 @@ "md5": "ffeeb880a54e1f5c3ab66fa2a8a89ea8", "pid": "255473532", "type": "bf:Person", - "identifier": "http://www.idref.fr/255473532", "identifiedBy": [ { "type": "uri", @@ -55467,7 +53159,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/255495269", "identifiedBy": [ { "type": "uri", @@ -55490,7 +53181,6 @@ "language": [ "ara" ], - "identifier": "http://www.idref.fr/255554338", "identifiedBy": [ { "type": "uri", @@ -55519,7 +53209,6 @@ "md5": "034924604c308a9519275803f0a1be76", "pid": "255666594", "type": "bf:Person", - "identifier": "http://www.idref.fr/255666594", "identifiedBy": [ { "type": "uri", @@ -55540,7 +53229,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/255733151", "identifiedBy": [ { "type": "uri", @@ -55563,7 +53251,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/255923058", "identifiedBy": [ { "type": "uri", @@ -55592,7 +53279,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/255939248", "identifiedBy": [ { "type": "uri", @@ -55616,7 +53302,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/255998880", "identifiedBy": [ { "type": "uri", @@ -55640,7 +53325,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/256075980", "identifiedBy": [ { "type": "uri", @@ -55660,7 +53344,6 @@ "spa", "eng" ], - "identifier": "http://www.idref.fr/256123829", "identifiedBy": [ { "type": "uri", @@ -55681,7 +53364,6 @@ "md5": "a20c8db9be57b86773e343964da5cecb", "pid": "25623650X", "type": "bf:Person", - "identifier": "http://www.idref.fr/25623650X", "identifiedBy": [ { "type": "uri", @@ -55702,7 +53384,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/256322325", "identifiedBy": [ { "type": "uri", @@ -55732,7 +53413,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/25640772X", "identifiedBy": [ { "type": "uri", @@ -55755,7 +53435,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/256435847", "identifiedBy": [ { "type": "uri", @@ -55778,7 +53457,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/256458391", "identifiedBy": [ { "type": "uri", @@ -55802,7 +53480,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/25650945X", "identifiedBy": [ { "type": "uri", @@ -55822,7 +53499,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/256515417", "identifiedBy": [ { "type": "uri", @@ -55847,7 +53523,6 @@ "mul" ], "conference": false, - "identifier": "http://www.idref.fr/256606625", "identifiedBy": [ { "type": "uri", @@ -55873,7 +53548,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/256607982", "identifiedBy": [ { "type": "uri", @@ -55896,7 +53570,6 @@ "language": [ "per" ], - "identifier": "http://www.idref.fr/256622302", "identifiedBy": [ { "type": "uri", @@ -55929,7 +53602,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/256653992", "identifiedBy": [ { "type": "uri", @@ -55952,7 +53624,6 @@ "eng" ], "conference": true, - "identifier": "http://www.idref.fr/256728682", "identifiedBy": [ { "type": "uri", @@ -55974,7 +53645,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/256767483", "identifiedBy": [ { "type": "uri", @@ -55995,7 +53665,6 @@ "nor" ], "conference": false, - "identifier": "http://www.idref.fr/256769044", "identifiedBy": [ { "type": "uri", @@ -56024,7 +53693,6 @@ "language": [ "dut" ], - "identifier": "http://www.idref.fr/256910200", "identifiedBy": [ { "type": "uri", @@ -56042,7 +53710,6 @@ "md5": "786e24adab8446e04877ee7465574b94", "pid": "256931038", "type": "bf:Person", - "identifier": "http://www.idref.fr/256931038", "identifiedBy": [ { "type": "uri", @@ -56060,7 +53727,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/256938660", "identifiedBy": [ { "type": "uri", @@ -56083,7 +53749,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/256975485", "identifiedBy": [ { "type": "uri", @@ -56103,7 +53768,6 @@ "md5": "95145cabb5bdb45fdab4c8558a73a2f2", "pid": "256977178", "type": "bf:Person", - "identifier": "http://www.idref.fr/256977178", "identifiedBy": [ { "type": "uri", @@ -56121,7 +53785,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/257161775", "identifiedBy": [ { "type": "uri", @@ -56141,7 +53804,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/257283994", "identifiedBy": [ { "type": "uri", @@ -56161,7 +53823,6 @@ "language": [ "lat" ], - "identifier": "http://www.idref.fr/257341730", "identifiedBy": [ { "type": "uri", @@ -56185,7 +53846,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/257342818", "identifiedBy": [ { "type": "uri", @@ -56214,7 +53874,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/257348328", "identifiedBy": [ { "type": "uri", @@ -56235,7 +53894,6 @@ "jpn", "fre" ], - "identifier": "http://www.idref.fr/257382968", "identifiedBy": [ { "type": "uri", @@ -56259,7 +53917,6 @@ "fre", "eng" ], - "identifier": "http://www.idref.fr/257433422", "identifiedBy": [ { "type": "uri", @@ -56282,7 +53939,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/257473459", "identifiedBy": [ { "type": "uri", @@ -56309,7 +53965,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/257484167", "identifiedBy": [ { "type": "uri", @@ -56332,7 +53987,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/257484434", "identifiedBy": [ { "type": "uri", @@ -56360,7 +54014,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/257494138", "identifiedBy": [ { "type": "uri", @@ -56378,7 +54031,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/25752214X", "identifiedBy": [ { "type": "uri", @@ -56402,7 +54054,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/257572481", "identifiedBy": [ { "type": "uri", @@ -56425,7 +54076,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/257572732", "identifiedBy": [ { "type": "uri", @@ -56449,7 +54099,6 @@ "eng" ], "conference": true, - "identifier": "http://www.idref.fr/257647007", "identifiedBy": [ { "type": "uri", @@ -56476,7 +54125,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/257647805", "identifiedBy": [ { "type": "uri", @@ -56498,7 +54146,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/25773855X", "identifiedBy": [ { "type": "uri", @@ -56521,7 +54168,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/257862544", "identifiedBy": [ { "type": "uri", @@ -56547,7 +54193,6 @@ "md5": "155c58f85deb05fff93006284be544ae", "pid": "257890505", "type": "bf:Person", - "identifier": "http://www.idref.fr/257890505", "identifiedBy": [ { "type": "uri", @@ -56569,7 +54214,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/257908870", "identifiedBy": [ { "type": "uri", @@ -56598,7 +54242,6 @@ "language": [ "rum" ], - "identifier": "http://www.idref.fr/257937730", "identifiedBy": [ { "type": "uri", @@ -56627,7 +54270,6 @@ "language": [ "jpn" ], - "identifier": "http://www.idref.fr/257974350", "identifiedBy": [ { "type": "uri", @@ -56651,7 +54293,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/25808524X", "identifiedBy": [ { "type": "uri", @@ -56673,7 +54314,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/258134178", "identifiedBy": [ { "type": "uri", @@ -56696,7 +54336,6 @@ "language": [ "dut" ], - "identifier": "http://www.idref.fr/258183659", "identifiedBy": [ { "type": "uri", @@ -56717,7 +54356,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/258220724", "identifiedBy": [ { "type": "uri", @@ -56760,7 +54398,6 @@ "language": [ "por" ], - "identifier": "http://www.idref.fr/258241985", "identifiedBy": [ { "type": "uri", @@ -56782,7 +54419,6 @@ "md5": "56d084f753e5bb3b9dea2986eaa1421d", "pid": "258266457", "type": "bf:Person", - "identifier": "http://www.idref.fr/258266457", "identifiedBy": [ { "type": "uri", @@ -56806,7 +54442,6 @@ "srp", "eng" ], - "identifier": "http://www.idref.fr/258291524", "identifiedBy": [ { "type": "uri", @@ -56830,7 +54465,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/258322020", "identifiedBy": [ { "type": "uri", @@ -56853,7 +54487,6 @@ "language": [ "swe" ], - "identifier": "http://www.idref.fr/258325089", "identifiedBy": [ { "type": "uri", @@ -56877,7 +54510,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/258363355", "identifiedBy": [ { "type": "uri", @@ -56900,7 +54532,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/258385138", "identifiedBy": [ { "type": "uri", @@ -56924,7 +54555,6 @@ "fre" ], "conference": true, - "identifier": "http://www.idref.fr/258433914", "identifiedBy": [ { "type": "uri", @@ -56945,7 +54575,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/258437855", "identifiedBy": [ { "type": "uri", @@ -56969,7 +54598,6 @@ "ara" ], "conference": false, - "identifier": "http://www.idref.fr/25844939X", "identifiedBy": [ { "type": "uri", @@ -56990,7 +54618,6 @@ "language": [ "cat" ], - "identifier": "http://www.idref.fr/258454458", "identifiedBy": [ { "type": "uri", @@ -57014,7 +54641,6 @@ "ita" ], "conference": false, - "identifier": "http://www.idref.fr/258520191", "identifiedBy": [ { "type": "uri", @@ -57047,7 +54673,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/258528079", "identifiedBy": [ { "type": "uri", @@ -57071,7 +54696,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/258546417", "identifiedBy": [ { "type": "uri", @@ -57094,7 +54718,6 @@ "language": [ "rus" ], - "identifier": "http://www.idref.fr/258552778", "identifiedBy": [ { "type": "uri", @@ -57120,7 +54743,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/258575719", "identifiedBy": [ { "type": "uri", @@ -57143,7 +54765,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/258640731", "identifiedBy": [ { "type": "uri", @@ -57166,7 +54787,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/258645172", "identifiedBy": [ { "type": "uri", @@ -57189,7 +54809,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/258645563", "identifiedBy": [ { "type": "uri", @@ -57212,7 +54831,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/259100056", "identifiedBy": [ { "type": "uri", @@ -57236,7 +54854,6 @@ "fre" ], "qualifier": "auteure en biologie mol\u00e9culaire", - "identifier": "http://www.idref.fr/259230197", "identifiedBy": [ { "type": "uri", @@ -57259,7 +54876,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/259270482", "identifiedBy": [ { "type": "uri", @@ -57281,7 +54897,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/25929070X", "identifiedBy": [ { "type": "uri", @@ -57304,7 +54919,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/259327735", "identifiedBy": [ { "type": "uri", @@ -57329,7 +54943,6 @@ "fre" ], "qualifier": "dentiste", - "identifier": "http://www.idref.fr/259329657", "identifiedBy": [ { "type": "uri", @@ -57352,7 +54965,6 @@ "language": [ "por" ], - "identifier": "http://www.idref.fr/259367516", "identifiedBy": [ { "type": "uri", @@ -57375,7 +54987,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/25943812X", "identifiedBy": [ { "type": "uri", @@ -57392,7 +55003,6 @@ "md5": "d40b491781f75ef2e78119e8f1fce46f", "pid": "259789798", "type": "bf:Person", - "identifier": "http://www.idref.fr/259789798", "identifiedBy": [ { "type": "uri", @@ -57410,7 +55020,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/25982142X", "identifiedBy": [ { "type": "uri", @@ -57435,7 +55044,6 @@ "eng", "spa" ], - "identifier": "http://www.idref.fr/259847127", "identifiedBy": [ { "type": "uri", @@ -57466,7 +55074,6 @@ "ger" ], "qualifier": "philosophe", - "identifier": "http://www.idref.fr/259860778", "identifiedBy": [ { "type": "uri", @@ -57489,7 +55096,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/259863424", "identifiedBy": [ { "type": "uri", @@ -57512,7 +55118,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/259907448", "identifiedBy": [ { "type": "uri", @@ -57532,7 +55137,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/259908142", "identifiedBy": [ { "type": "uri", @@ -57555,7 +55159,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/259925993", "identifiedBy": [ { "type": "uri", @@ -57578,7 +55181,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/259928844", "identifiedBy": [ { "type": "uri", @@ -57597,7 +55199,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/259991724", "identifiedBy": [ { "type": "uri", @@ -57620,7 +55221,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/260074969", "identifiedBy": [ { "type": "uri", @@ -57639,7 +55239,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/26009773X", "identifiedBy": [ { "type": "uri", @@ -57662,7 +55261,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/260176893", "identifiedBy": [ { "type": "uri", @@ -57682,7 +55280,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/260238570", "identifiedBy": [ { "type": "uri", @@ -57705,7 +55302,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/260322393", "identifiedBy": [ { "type": "uri", @@ -57728,7 +55324,6 @@ "language": [ "hun" ], - "identifier": "http://www.idref.fr/260328065", "identifiedBy": [ { "type": "uri", @@ -57751,7 +55346,6 @@ "language": [ "ara" ], - "identifier": "http://www.idref.fr/26040862X", "identifiedBy": [ { "type": "uri", @@ -57783,7 +55377,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/260480584", "identifiedBy": [ { "type": "uri", @@ -57803,7 +55396,6 @@ "spa", "por" ], - "identifier": "http://www.idref.fr/260499021", "identifiedBy": [ { "type": "uri", @@ -57826,7 +55418,6 @@ "language": [ "ita" ], - "identifier": "http://www.idref.fr/260505269", "identifiedBy": [ { "type": "uri", @@ -57849,7 +55440,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/260578045", "identifiedBy": [ { "type": "uri", @@ -57872,7 +55462,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/260582808", "identifiedBy": [ { "type": "uri", @@ -57900,7 +55489,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/260592404", "identifiedBy": [ { "type": "uri", @@ -57923,7 +55511,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/260735353", "identifiedBy": [ { "type": "uri", @@ -57947,7 +55534,6 @@ "und" ], "conference": false, - "identifier": "http://www.idref.fr/260775967", "identifiedBy": [ { "type": "uri", @@ -57966,7 +55552,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/260782955", "identifiedBy": [ { "type": "uri", @@ -57989,7 +55574,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/260807710", "identifiedBy": [ { "type": "uri", @@ -58013,7 +55597,6 @@ "fre" ], "qualifier": "professeure des \u00e9coles", - "identifier": "http://www.idref.fr/260812374", "identifiedBy": [ { "type": "uri", @@ -58037,7 +55620,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/260844578", "identifiedBy": [ { "type": "uri", @@ -58060,7 +55642,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/260864811", "identifiedBy": [ { "type": "uri", @@ -58082,7 +55663,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/260877484", "identifiedBy": [ { "type": "uri", @@ -58105,7 +55685,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/26091164X", "identifiedBy": [ { "type": "uri", @@ -58128,7 +55707,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/260925810", "identifiedBy": [ { "type": "uri", @@ -58151,7 +55729,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/260929905", "identifiedBy": [ { "type": "uri", @@ -58174,7 +55751,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/260939587", "identifiedBy": [ { "type": "uri", @@ -58199,7 +55775,6 @@ "ger" ], "conference": false, - "identifier": "http://www.idref.fr/260943193", "identifiedBy": [ { "type": "uri", @@ -58230,7 +55805,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/260977756", "identifiedBy": [ { "type": "uri", @@ -58251,7 +55825,6 @@ "fre" ], "qualifier": "magistrat", - "identifier": "http://www.idref.fr/260987204", "identifiedBy": [ { "type": "uri", @@ -58276,7 +55849,6 @@ "ger" ], "conference": false, - "identifier": "http://www.idref.fr/260995223", "identifiedBy": [ { "type": "uri", @@ -58296,7 +55868,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/261067079", "identifiedBy": [ { "type": "uri", @@ -58317,7 +55888,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/261116274", "identifiedBy": [ { "type": "uri", @@ -58340,7 +55910,6 @@ "language": [ "fin" ], - "identifier": "http://www.idref.fr/261144588", "identifiedBy": [ { "type": "uri", @@ -58359,7 +55928,6 @@ "language": [ "may" ], - "identifier": "http://www.idref.fr/261155210", "identifiedBy": [ { "type": "uri", @@ -58382,7 +55950,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/26124096X", "identifiedBy": [ { "type": "uri", @@ -58402,7 +55969,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/261260987", "identifiedBy": [ { "type": "uri", @@ -58425,7 +55991,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/261270206", "identifiedBy": [ { "type": "uri", @@ -58448,7 +56013,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/261515632", "identifiedBy": [ { "type": "uri", @@ -58471,7 +56035,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/261606441", "identifiedBy": [ { "type": "uri", @@ -58494,7 +56057,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/261732722", "identifiedBy": [ { "type": "uri", @@ -58516,7 +56078,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/261805762", "identifiedBy": [ { "type": "uri", @@ -58546,7 +56107,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/261809911", "identifiedBy": [ { "type": "uri", @@ -58566,7 +56126,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/261814176", "identifiedBy": [ { "type": "uri", @@ -58588,7 +56147,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/261876007", "identifiedBy": [ { "type": "uri", @@ -58608,7 +56166,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/261892169", "identifiedBy": [ { "type": "uri", @@ -58627,7 +56184,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/261974580", "identifiedBy": [ { "type": "uri", @@ -58651,7 +56207,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/26212369X", "identifiedBy": [ { "type": "uri", @@ -58674,7 +56229,6 @@ "language": [ "spa" ], - "identifier": "http://www.idref.fr/26221007X", "identifiedBy": [ { "type": "uri", @@ -58692,7 +56246,6 @@ "md5": "0aaa9611b435c3281f734acf7ae5f86c", "pid": "262212129", "type": "bf:Person", - "identifier": "http://www.idref.fr/262212129", "identifiedBy": [ { "type": "uri", @@ -58710,7 +56263,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/262213656", "identifiedBy": [ { "type": "uri", @@ -58731,7 +56283,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/262246619", "identifiedBy": [ { "type": "uri", @@ -58760,7 +56311,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/262262940", "identifiedBy": [ { "type": "uri", @@ -58783,7 +56333,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/262286394", "identifiedBy": [ { "type": "uri", @@ -58804,7 +56353,6 @@ "language": [ "rus" ], - "identifier": "http://www.idref.fr/26232217X", "identifiedBy": [ { "type": "uri", @@ -58829,7 +56377,6 @@ "md5": "4caa83e946cdc756493eeaecbc1bca1c", "pid": "262328836", "type": "bf:Person", - "identifier": "http://www.idref.fr/262328836", "identifiedBy": [ { "type": "uri", @@ -58848,7 +56395,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/262350459", "identifiedBy": [ { "type": "uri", @@ -58870,7 +56416,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/262354659", "identifiedBy": [ { "type": "uri", @@ -58887,7 +56432,6 @@ "md5": "4b8929b57c9ca1229387b189de898467", "pid": "262398516", "type": "bf:Person", - "identifier": "http://www.idref.fr/262398516", "identifiedBy": [ { "type": "uri", @@ -58909,7 +56453,6 @@ "fre", "eng" ], - "identifier": "http://www.idref.fr/262403242", "identifiedBy": [ { "type": "uri", @@ -58933,7 +56476,6 @@ "eng" ], "conference": true, - "identifier": "http://www.idref.fr/262436574", "identifiedBy": [ { "type": "uri", @@ -58955,7 +56497,6 @@ "eng", "chi" ], - "identifier": "http://www.idref.fr/262452979", "identifiedBy": [ { "type": "uri", @@ -58985,7 +56526,6 @@ "fre" ], "qualifier": "auteur(e) en physique", - "identifier": "http://www.idref.fr/262466724", "identifiedBy": [ { "type": "uri", @@ -59008,7 +56548,6 @@ "language": [ "chi" ], - "identifier": "http://www.idref.fr/262469561", "identifiedBy": [ { "type": "uri", @@ -59034,7 +56573,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/262471116", "identifiedBy": [ { "type": "uri", @@ -59057,7 +56595,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/262486636", "identifiedBy": [ { "type": "uri", @@ -59080,7 +56617,6 @@ "language": [ "por" ], - "identifier": "http://www.idref.fr/26249714X", "identifiedBy": [ { "type": "uri", @@ -59102,7 +56638,6 @@ "eng" ], "conference": false, - "identifier": "http://www.idref.fr/262504391", "identifiedBy": [ { "type": "uri", @@ -59133,7 +56668,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/262615223", "identifiedBy": [ { "type": "uri", @@ -59156,7 +56690,6 @@ "fre" ], "conference": false, - "identifier": "http://www.idref.fr/262645882", "identifiedBy": [ { "type": "uri", @@ -59180,7 +56713,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/26282180X", "identifiedBy": [ { "type": "uri", @@ -59204,7 +56736,6 @@ "fre" ], "qualifier": "docteur en pharmacie", - "identifier": "http://www.idref.fr/26285242X", "identifiedBy": [ { "type": "uri", @@ -59224,7 +56755,6 @@ "md5": "63ef029c0c1eb6a5e7c78b22598f9717", "pid": "262888467", "type": "bf:Person", - "identifier": "http://www.idref.fr/262888467", "identifiedBy": [ { "type": "uri", @@ -59242,7 +56772,6 @@ "language": [ "chi" ], - "identifier": "http://www.idref.fr/263082091", "identifiedBy": [ { "type": "uri", @@ -59270,7 +56799,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/263195449", "identifiedBy": [ { "type": "uri", @@ -59292,7 +56820,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/263217442", "identifiedBy": [ { "type": "uri", @@ -59314,7 +56841,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/263267466", "identifiedBy": [ { "type": "uri", @@ -59336,7 +56862,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/263445194", "identifiedBy": [ { "type": "uri", @@ -59359,7 +56884,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/26347318X", "identifiedBy": [ { "type": "uri", @@ -59382,7 +56906,6 @@ "language": [ "jpn" ], - "identifier": "http://www.idref.fr/263491455", "identifiedBy": [ { "type": "uri", @@ -59401,7 +56924,6 @@ "md5": "c4d02be650a0519c927b7718b2f36def", "pid": "263502627", "type": "bf:Person", - "identifier": "http://www.idref.fr/263502627", "identifiedBy": [ { "type": "uri", @@ -59423,7 +56945,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/263581780", "identifiedBy": [ { "type": "uri", @@ -59446,7 +56967,6 @@ "language": [ "cat" ], - "identifier": "http://www.idref.fr/263587339", "identifiedBy": [ { "type": "uri", @@ -59477,7 +56997,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/263603652", "identifiedBy": [ { "type": "uri", @@ -59500,7 +57019,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/263626687", "identifiedBy": [ { "type": "uri", @@ -59528,7 +57046,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/263671372", "identifiedBy": [ { "type": "uri", @@ -59552,7 +57069,6 @@ "dan" ], "qualifier": "M\u00e9decin", - "identifier": "http://www.idref.fr/263671887", "identifiedBy": [ { "type": "uri", @@ -59576,7 +57092,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/263682471", "identifiedBy": [ { "type": "uri", @@ -59596,7 +57111,6 @@ "language": [ "ger" ], - "identifier": "http://www.idref.fr/263722198", "identifiedBy": [ { "type": "uri", @@ -59616,7 +57130,6 @@ "md5": "90d30d594d2fe08662b30e527da14e92", "pid": "263908038", "type": "bf:Person", - "identifier": "http://www.idref.fr/263908038", "identifiedBy": [ { "type": "uri", @@ -59638,7 +57151,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/26428058X", "identifiedBy": [ { "type": "uri", @@ -59661,7 +57173,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/264703227", "identifiedBy": [ { "type": "uri", @@ -59684,7 +57195,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/264982959", "identifiedBy": [ { "type": "uri", @@ -59706,7 +57216,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/265219493", "identifiedBy": [ { "type": "uri", @@ -59734,7 +57243,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/26525969X", "identifiedBy": [ { "type": "uri", @@ -59756,7 +57264,6 @@ "language": [ "fre" ], - "identifier": "http://www.idref.fr/26528774X", "identifiedBy": [ { "type": "uri", @@ -59778,7 +57285,6 @@ "language": [ "eng" ], - "identifier": "http://www.idref.fr/265836905", "identifiedBy": [ { "type": "uri", @@ -59800,7 +57306,6 @@ "language": [ "cze" ], - "identifier": "http://www.idref.fr/267373414", "identifiedBy": [ { "type": "uri", @@ -59815,4 +57320,4 @@ "Juriste" ] } -] \ No newline at end of file +] diff --git a/data/aidref_metadata.csv b/data/aidref_metadata.csv index 6c1d5422..6474585b 100644 --- a/data/aidref_metadata.csv +++ b/data/aidref_metadata.csv @@ -1,2495 +1,2495 @@ -2023-07-08 08:19:11.318517 2023-07-08 08:19:11.318521 883c3c72-fd06-4477-8fd0-58c4362d7924 {"md5": "82d5da99d41060f31f4c95b56605ec6e", "pid": "026361477", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/026361477", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026361477", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "027643239"}, "variant_name": ["Epinal. Bibliothèque municipale"], "preferred_name": "Bibliothèque municipale (Epinal)", "country_associated": "fr", "variant_access_point": ["Epinal. Bibliothèque municipale"], "authorized_access_point": "Bibliothèque municipale (Epinal)", "biographical_information": ["2 rue de Nancy, 88025 Epinal Cedex"]} 1 -2023-07-08 08:19:11.43028 2023-07-08 08:19:11.430284 8012dde0-bef1-4530-9b6c-0de69bb45357 {"md5": "e913632b59aa90930876391b13d5ee65", "pid": "026366231", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/026366231", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026366231", "source": "IDREF"}], "variant_name": ["CRESAS", "Institut national de recherche pédagogique (France). Centre de recherche de l'éducation spécialisée et de l'adaptation scolaire", "Section de recherche de l'éducation spécialisée et de l'adaptation scolaire", "SRESAS"], "preferred_name": "Centre de recherche de l'éducation spécialisée et de l'adaptation scolaire (Paris)", "country_associated": "fr", "variant_access_point": ["CRESAS", "Institut national de recherche pédagogique (France). Centre de recherche de l'éducation spécialisée et de l'adaptation scolaire", "Section de recherche de l'éducation spécialisée et de l'adaptation scolaire", "SRESAS"], "authorized_access_point": "Centre de recherche de l'éducation spécialisée et de l'adaptation scolaire (Paris)", "biographical_information": ["29 rue d'Ulm, 75230 Paris Cedex"]} 1 -2023-07-08 08:19:11.497768 2023-07-08 08:19:11.497771 c4a65708-28af-4e1d-bb59-c6321bb4d764 {"md5": "4f22d7dc55e30e56c281f753430143b2", "pid": "026393190", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/026393190", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026393190", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "027608328"}, "variant_name": ["Musée Antoine Bourdelle (Paris)", "Paris. Musée Bourdelle"], "preferred_name": "Musée Bourdelle (Paris, France)", "country_associated": "fr", "variant_access_point": ["Musée Antoine Bourdelle (Paris)", "Paris. Musée Bourdelle"], "date_of_establishment": "1949", "authorized_access_point": "Musée Bourdelle (Paris, France)", "biographical_information": ["16 rue Antoine-Bourdelle, 75015 Paris"]} 1 -2023-07-08 08:19:11.592409 2023-07-08 08:19:11.592413 9e6f77c7-a80d-4970-a477-10d9a6ae797f {"md5": "fcd246f9646e74850748c7afc1ed31d5", "pid": "026398257", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/026398257", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026398257", "source": "IDREF"}], "preferred_name": "Philadelphie (Pa.)", "country_associated": "xxu", "parallel_access_point": ["Philadelphia (Pa.)"], "authorized_access_point": "Philadelphie (Pa.)"} 1 -2023-07-08 08:19:11.693045 2023-07-08 08:19:11.693051 aba47eca-642c-45ab-8539-81f844d4504e {"md5": "eb453f1ce537bbd65bf944a5fdc98b7c", "pid": "026403161", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/026403161", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026403161", "source": "IDREF"}], "variant_name": ["Université Paul Cézanne-Aix-Marseille III. Faculté d'économie appliquée", "Faculté d'économie appliquée d'Aix-Marseille"], "preferred_name": "Université Paul Cézanne (Aix-Marseille). Faculté d'économie appliquée", "country_associated": "fr", "variant_access_point": ["Université Paul Cézanne-Aix-Marseille III. Faculté d'économie appliquée", "Faculté d'économie appliquée d'Aix-Marseille"], "authorized_access_point": "Université Paul Cézanne (Aix-Marseille). Faculté d'économie appliquée", "biographical_information": ["3 av. Robert Schuman, 13628 Aix-en-Provence Cedex"]} 1 -2023-07-08 08:19:11.798701 2023-07-08 08:19:11.798707 a93e305f-00f9-44c1-a860-c6b57d40506a {"md5": "a508e8280570f6466f1fe362caaedd14", "pid": "026408805", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/026408805", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026408805", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "151875030"}, "variant_name": ["Ecole nationale supérieure des mines (Paris). Centre de gestion scientifique", "ENSMP CGS", "ENSMP. CGS", "CGS (Paris)"], "preferred_name": "Centre de gestion scientifique (Paris)", "country_associated": "fr", "variant_access_point": ["Ecole nationale supérieure des mines (Paris). Centre de gestion scientifique", "ENSMP CGS", "ENSMP. CGS", "CGS (Paris)"], "date_of_establishment": "1967", "authorized_access_point": "Centre de gestion scientifique (Paris)", "biographical_information": ["60 bd Saint-Michel, 75006 Paris", "Centre fondé en 1967"]} 1 -2023-07-08 08:19:11.895807 2023-07-08 08:19:11.895818 be86f282-1e8c-4120-87aa-c71ea4099877 {"md5": "d3fd851f6b4b53d9c539dc1cc4aa8799", "pid": "026418460", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": false, "identifier": "http://www.idref.fr/026418460", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026418460", "source": "IDREF"}], "variant_name": ["Pontifical institute of Christian archaeology"], "preferred_name": "Pontificio istituto di archeologia cristiana", "country_associated": "vc", "variant_access_point": ["Pontifical institute of Christian archaeology"], "date_of_establishment": "1925", "parallel_access_point": ["Pontificium institutum archeologiae christianae"], "authorized_access_point": "Pontificio istituto di archeologia cristiana", "biographical_information": ["Via Napoleone III 1, 00185 Rome"]} 1 -2023-07-08 08:19:11.998867 2023-07-08 08:19:11.998879 a3aab4b7-7305-4a00-b616-fe1a7ad93507 {"md5": "e68164ed2e5cad28f15f41c95f6914ee", "pid": "026428636", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/026428636", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026428636", "source": "IDREF"}], "preferred_name": "Union des syndicats et coopératives de vente de lait du châtillonnais (Côte-d'Or)", "country_associated": "fr", "authorized_access_point": "Union des syndicats et coopératives de vente de lait du châtillonnais (Côte-d'Or)", "biographical_information": ["3 route de Dijon, 21150 Les Laumes"]} 1 -2023-07-08 08:19:12.112532 2023-07-08 08:19:12.112536 99cff842-b084-4a85-9efa-286800bad3f7 {"md5": "44d6a489824afad7cfa77144e55b7e7b", "pid": "026430746", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifier": "http://www.idref.fr/026430746", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026430746", "source": "IDREF"}], "variant_name": ["Università degli studi di Salerno", "Università di Salerno", "University of Salerno", "Université de Salerne"], "preferred_name": "Università degli studi (Salerne, Italie)", "country_associated": "it", "variant_access_point": ["Università degli studi di Salerno", "Università di Salerno", "University of Salerno", "Université de Salerne"], "date_of_establishment": "1970", "authorized_access_point": "Università degli studi (Salerne, Italie)"} 1 -2023-07-08 08:19:12.210685 2023-07-08 08:19:12.210696 76e5fa1f-6dbb-4f14-a5fb-0f1c5f5504ef {"md5": "e1f48c20d223abd59aeee44dab517540", "pid": "026446278", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": false, "identifier": "http://www.idref.fr/026446278", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026446278", "source": "IDREF"}], "variant_name": ["EDIS", "E.D.I.S"], "preferred_name": "Equipo de investigación sociologica (Madrid)", "country_associated": "sp", "variant_access_point": ["EDIS", "E.D.I.S"], "authorized_access_point": "Equipo de investigación sociologica (Madrid)"} 1 -2023-07-08 08:19:12.340836 2023-07-08 08:19:12.340844 fdd31486-7101-46bc-97dc-eb61e1f7be4a {"md5": "deeb8d06428f637d3985c507735eb4c1", "pid": "026450038", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/026450038", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026450038", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "02924806X"}, "variant_name": ["FFC", "Francas", "Fédération nationale lai͏̈que des centres de loisirs éducatifs pour l'enfance et l'adolescence (France)", "Fédération des francs et franches camarades (France)", "Fédération nationale des patronages lai͏̈ques et des centres aérés (France)"], "preferred_name": "Francs et franches camarades (France)", "country_associated": "fr", "variant_access_point": ["FFC", "Francas", "Fédération nationale lai͏̈que des centres de loisirs éducatifs pour l'enfance et l'adolescence (France)", "Fédération des francs et franches camarades (France)", "Fédération nationale des patronages lai͏̈ques et des centres aérés (France)"], "date_of_establishment": "1944", "authorized_access_point": "Francs et franches camarades (France)", "biographical_information": ["10-14 rue Tolain, 75020 Paris"]} 1 -2023-07-08 08:19:12.454677 2023-07-08 08:19:12.454691 b8f39144-6b38-493c-890b-761dbfa9ad87 {"md5": "84074e39bd5e463f67f116a44c88710b", "pid": "026452057", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": false, "identifier": "http://www.idref.fr/026452057", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026452057", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "086021192"}, "variant_name": ["GRET", "Groupe de recherches et d'échanges technologiques", "Research and technological exchange group"], "preferred_name": "Groupe de recherche et d'échanges technologiques (Paris)", "variant_access_point": ["GRET", "Groupe de recherches et d'échanges technologiques", "Research and technological exchange group"], "date_of_establishment": "1976", "authorized_access_point": "Groupe de recherche et d'échanges technologiques (Paris)", "biographical_information": ["Fondé par d'anciens coopérants français dans le Tiers-monde", "Adresse : 211-213 rue La Fayette, 75010 Paris"]} 1 -2023-07-08 08:19:12.562356 2023-07-08 08:19:12.562362 fb57f654-95c6-424a-aa81-c7e404b5fec9 {"md5": "4a42fe6da923367a12c4943179460e1d", "pid": "026471396", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/026471396", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026471396", "source": "IDREF"}], "variant_name": ["BPROP"], "preferred_name": "Banque populaire de la région ouest de Paris", "country_associated": "fr", "variant_access_point": ["BPROP"], "date_of_establishment": "1919", "authorized_access_point": "Banque populaire de la région ouest de Paris", "biographical_information": ["9 Av. Newton, 78183 Saint-Quentin-en-Yvelines Cedex"]} 1 -2023-07-08 08:19:12.655125 2023-07-08 08:19:12.655139 61847724-dc88-4f81-beaf-24e12821cef1 {"md5": "608abf13858fd05de5a64ee8bffe199a", "pid": "026483157", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifier": "http://www.idref.fr/026483157", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026483157", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "027230716"}, "variant_name": ["CGIL", "Confédération générale italienne du travail"], "preferred_name": "Confederazione generale italiana del lavoro (Italie, 1944-...)", "country_associated": "it", "variant_access_point": ["CGIL", "Confédération générale italienne du travail"], "date_of_establishment": "1944-06-03", "authorized_access_point": "Confederazione generale italiana del lavoro (Italie, 1944-...)", "biographical_information": ["Confédération syndicale qui succède après guerre à la Confederazione generale del lavoro (1906-1926) en remplacement des organisations syndicales fascistes. Fondée en juin 1944 comme centrale unique (Patto di Roma entre le PCI, la DC et le PSI), la CGIL est démembrée à partir d'août 1948 (création de la CISL (Confederazione italiana sindacati lavoratori) et de l'UIL (Unione italiana del lavoro) en 1950) et demeurera dès lors communiste"]} 1 -2023-07-08 08:19:12.75526 2023-07-08 08:19:12.755277 d153bdad-853f-4af3-a36e-0618271e63d2 {"md5": "fd5cb68ac4014383fbd509a1888b2364", "pid": "026488582", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/026488582", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026488582", "source": "IDREF"}], "variant_name": ["INA"], "preferred_name": "Institut national de la communication audiovisuelle (France; 1982-1986)", "country_associated": "fr", "date_of_termination": "1986-09-30", "variant_access_point": ["INA"], "date_of_establishment": "1982-07-29", "authorized_access_point": "Institut national de la communication audiovisuelle (France; 1982-1986)", "biographical_information": ["Etablissement public à caractère industriel et commercial créé par la loi du 29 juillet 1982", "4 av. de l'Europe, 94360 Bry-sur-Marne"]} 1 -2023-07-08 08:20:36.143895 2023-07-08 08:20:36.143904 5257fc10-8036-4701-b823-fa6704aafc93 {"md5": "5f96a5171e72d3ba9d0e3e328ca62541", "pid": "118964534", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/118964534", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/118964534", "source": "IDREF"}], "preferred_name": "Peterson, Rudolph A.", "authorized_access_point": "Peterson, Rudolph A."} 1 -2023-07-08 08:19:12.852869 2023-07-08 08:19:12.852886 7bfabcc0-a8c9-453b-b0ca-506caa835fbf {"md5": "d0ef3945890c65670e8b83fbc8d6de5e", "pid": "026501228", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifier": "http://www.idref.fr/026501228", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026501228", "source": "IDREF"}], "variant_name": ["Bompiani e compagnia (Milan)"], "preferred_name": "Bompiani", "country_associated": "it", "variant_access_point": ["Bompiani e compagnia (Milan)"], "date_of_establishment": "1929", "authorized_access_point": "Bompiani", "biographical_information": ["Maison d'édition fondée par Valentino Bompiani"]} 1 -2023-07-08 08:19:12.963509 2023-07-08 08:19:12.96352 48d69ad9-95ab-4576-99e5-f837b3fcef23 {"md5": "f8ce041f71604560ef1105f5ee9fc4ca", "pid": "026524759", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/026524759", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026524759", "source": "IDREF"}], "variant_name": ["EPI", "Enseignement public et informatique (France)", "Association EPI"], "preferred_name": "Association Enseignement public et informatique (France)", "country_associated": "fr", "variant_access_point": ["EPI", "Enseignement public et informatique (France)", "Association EPI"], "authorized_access_point": "Association Enseignement public et informatique (France)", "biographical_information": ["Association loi 1901", "13 rue du Jura, 75013 Paris. Secrétariat : 1 av. Pierre Corneille, 78170 La Celle Saint-Cloud"]} 1 -2023-07-08 08:19:13.063047 2023-07-08 08:19:13.063115 2d449991-9c1c-4b62-a8a7-d0859bc03e45 {"md5": "39c5dcbc7c55898ef5be536312e00166", "pid": "026526980", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": false, "identifier": "http://www.idref.fr/026526980", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026526980", "source": "IDREF"}], "variant_name": ["Groupe de travail sur la description bibliographique internationale normalisée générale", "Fédération internationale des associations de bibliothécaires et des bibliothèques. Grup de treball sobre la descripció bibliogràfica normalitzado internacional general", "Fédération internationale des associations de bibliothécaires et des bibliothèques. Working group on the general international standard bibliographic description", "Fédération internationale des associations de bibliothécaires et des bibliothèques. Section on cataloguing. Groupe de travail sur la description bibliographique internationale normalisée générale"], "preferred_name": "Fédération internationale des associations de bibliothécaires et des bibliothèques. Groupe de travail sur la description bibliographique internationale normalisée générale", "variant_access_point": ["Groupe de travail sur la description bibliographique internationale normalisée générale", "Fédération internationale des associations de bibliothécaires et des bibliothèques. Grup de treball sobre la descripció bibliogràfica normalitzado internacional general", "Fédération internationale des associations de bibliothécaires et des bibliothèques. Working group on the general international standard bibliographic description", "Fédération internationale des associations de bibliothécaires et des bibliothèques. Section on cataloguing. Groupe de travail sur la description bibliographique internationale normalisée générale"], "authorized_access_point": "Fédération internationale des associations de bibliothécaires et des bibliothèques. Groupe de travail sur la description bibliographique internationale normalisée générale"} 1 -2023-07-08 08:19:13.230911 2023-07-08 08:19:13.230916 6039bc58-1d4f-43f6-936c-fe51a30fc1ad {"md5": "17709cf93b9da28817c7efc652b9dab1", "pid": "026528290", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/026528290", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026528290", "source": "IDREF"}], "variant_name": ["FFN", "IFN", "Fondation française de la nutrition", "Fondation française pour la nutrition"], "preferred_name": "Institut français pour la nutrition", "country_associated": "fr", "variant_access_point": ["FFN", "IFN", "Fondation française de la nutrition", "Fondation française pour la nutrition"], "authorized_access_point": "Institut français pour la nutrition", "biographical_information": ["En janvier 1992, la Fondation française pour la nutrition devient l'Institut français pour la nutrition", "71 av. Victor Hugo, 75116 Paris. Tél.45.00.92.50"]} 1 -2023-07-08 08:19:13.297793 2023-07-08 08:19:13.297797 6f668d0c-4aeb-4fc1-abf2-c2e28978f34b {"md5": "5e00a754b60f4df74769906edf7bf89b", "pid": "026529890", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/026529890", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026529890", "source": "IDREF"}], "variant_name": ["Ville de Pointe-à-Pitre (Guadeloupe)", "Mairie de Pointe-à-Pitre (Guadeloupe)"], "preferred_name": "Pointe-à-Pitre (Guadeloupe)", "country_associated": "gp", "variant_access_point": ["Ville de Pointe-à-Pitre (Guadeloupe)", "Mairie de Pointe-à-Pitre (Guadeloupe)"], "authorized_access_point": "Pointe-à-Pitre (Guadeloupe)", "biographical_information": ["97110 Pointe-à-Pitre"]} 1 -2023-07-08 08:19:13.374501 2023-07-08 08:19:13.374512 425a262a-0730-4a09-a3a4-74955b2b43ba {"md5": "fc0d3eb8f65d5cf11dbe4141f376e1a4", "pid": "026530538", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/026530538", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026530538", "source": "IDREF"}], "variant_name": ["France. Ministère de l'équipement. Service des affaires économiques et internationales"], "preferred_name": "France. Service des affaires économiques et internationales", "country_associated": "fr", "variant_access_point": ["France. Ministère de l'équipement. Service des affaires économiques et internationales"], "authorized_access_point": "France. Service des affaires économiques et internationales"} 1 -2023-07-08 08:19:13.492953 2023-07-08 08:19:13.492958 36e31831-295e-47ba-9a12-b8d721f24e04 {"md5": "4afff702aae44569f274a8c5a12669c1", "pid": "026536625", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/026536625", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026536625", "source": "IDREF"}], "variant_name": ["IRSA"], "preferred_name": "Institut de recherches sociologiques appliquées (Paris)", "country_associated": "fr", "variant_access_point": ["IRSA"], "authorized_access_point": "Institut de recherches sociologiques appliquées (Paris)", "biographical_information": ["37 rue Etienne-Marcel, 75001 Paris (en 1975)"]} 1 -2023-07-08 08:19:13.614251 2023-07-08 08:19:13.614259 012793c7-5ac8-4e63-92cc-1b4aecec84e8 {"md5": "3a9cd95896066d3d30464fd3acc1e0cd", "pid": "02654606X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/02654606X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02654606X", "source": "IDREF"}], "variant_name": ["Musée Charles Crozatier (Le Puy-en-Velay)", "Musée du Puy", "Le Puy-en-Velay. Musée Crozatier"], "preferred_name": "Musée Crozatier (Le Puy-en-Velay)", "country_associated": "fr", "variant_access_point": ["Musée Charles Crozatier (Le Puy-en-Velay)", "Musée du Puy", "Le Puy-en-Velay. Musée Crozatier"], "date_of_establishment": "1820", "authorized_access_point": "Musée Crozatier (Le Puy-en-Velay)", "biographical_information": ["Jardin Vinay, 43000 Le Puy"]} 1 -2023-07-08 08:19:14.595832 2023-07-08 08:19:14.595841 64561962-30ff-4ce9-bb95-6e807c2ff7db {"md5": "b2b3ecc607a316e75203f1f251cf4253", "pid": "026626373", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/026626373", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026626373", "source": "IDREF"}], "preferred_name": "Institut de recherche et d'histoire des textes (France). Section romane", "country_associated": "fr", "authorized_access_point": "Institut de recherche et d'histoire des textes (France). Section romane"} 1 -2023-07-08 08:19:13.708409 2023-07-08 08:19:13.708419 243400b5-c445-4298-bbae-a951a556e580 {"md5": "bbb9cd241d8fd33711a33d8f1448764a", "pid": "02654637X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/02654637X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02654637X", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "028202848"}, "variant_name": ["La Rochelle. Musée d'Orbigny-Bernon"], "preferred_name": "Musée d'Orbigny-Bernon (La Rochelle)", "country_associated": "fr", "variant_access_point": ["La Rochelle. Musée d'Orbigny-Bernon"], "date_of_establishment": "1917", "authorized_access_point": "Musée d'Orbigny-Bernon (La Rochelle)", "biographical_information": ["2 rue Saint-Côme, 17000 La Rochelle"]} 1 -2023-07-08 08:19:13.809874 2023-07-08 08:19:13.809882 6f8064ec-c425-4e23-8f7f-45023b0471b2 {"md5": "c4a2f1fd6393328ed4fafedf7efbbc3d", "pid": "026561328", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/026561328", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026561328", "source": "IDREF"}], "variant_name": ["SMF"], "preferred_name": "Société mycologique de France", "country_associated": "fr", "variant_access_point": ["SMF"], "date_of_establishment": "1884", "authorized_access_point": "Société mycologique de France", "biographical_information": ["Association à but non lucratif, fondée en 1884, régie par la loi du 1er juillet 1901, déclarée d’utilité publique par décret du 20 mars 1929. La Société mycologique de France a pour objectifs d'accroître et de diffuser les connaissances relatives aux champignons, et de prévenir les intoxications de type mycétisme (consécutives à l’ingestion de macromycètes toxiques). Elle publie le \\"Bulletin trimestriel de la Société mycologique de France\\" (depuis 1885)", "Adresse postale : 20, rue Rottembourg, 75012 Paris (en 2015)", "Ancienne adresse : 36 rue Geoffroy-Saint-Hilaire, 75005 Paris"]} 1 -2023-07-08 08:19:13.942227 2023-07-08 08:19:13.94224 d2dae5fc-b9f7-4783-9b10-92650f0895ab {"md5": "8c4efaa252550ac1d115158b465a1d0e", "pid": "026562170", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/026562170", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026562170", "source": "IDREF"}], "variant_name": ["Musées de Strasbourg", "Musées de la Ville de Strasbourg"], "preferred_name": "Strasbourg. Direction des musées", "country_associated": "fr", "variant_access_point": ["Musées de Strasbourg", "Musées de la Ville de Strasbourg"], "authorized_access_point": "Strasbourg. Direction des musées", "biographical_information": ["5 pl. du Château, 67000 Strasbourg"]} 1 -2023-07-08 08:19:14.049877 2023-07-08 08:19:14.049881 6932d9bf-6877-4636-9c4a-4fb0be15e826 {"md5": "f2da8e0bf9471e839d2129456f0f880c", "pid": "02656453X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/02656453X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02656453X", "source": "IDREF"}], "variant_name": ["EMF", "Eglises méthodistes de France", "Union des églises évangéliques méthodistes de France"], "preferred_name": "Union des associations cultuelles évangéliques des églises méthodistes de France", "country_associated": "fr", "variant_access_point": ["EMF", "Eglises méthodistes de France", "Union des églises évangéliques méthodistes de France"], "authorized_access_point": "Union des associations cultuelles évangéliques des églises méthodistes de France", "biographical_information": ["3 rue Saint-Dominique, 30000 Nîmes"]} 1 -2023-07-08 08:19:14.160858 2023-07-08 08:19:14.160862 865c63ed-6913-4d9e-8aa2-02649631976a {"md5": "d44dc50ed0623c0b99ec7c522dd40681", "pid": "026567695", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/026567695", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026567695", "source": "IDREF"}], "preferred_name": "Institut de médecine (Liège, Belgique). Département de clinique et de sémiologie médicales", "country_associated": "be", "authorized_access_point": "Institut de médecine (Liège, Belgique). Département de clinique et de sémiologie médicales"} 1 -2023-07-08 08:19:14.257939 2023-07-08 08:19:14.257948 f5cdd582-5c07-4c2d-bd79-650f9c24df26 {"md5": "36be0726ac8d4dd08ec0cd1a4d1867fd", "pid": "026583135", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": false, "identifier": "http://www.idref.fr/026583135", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026583135", "source": "IDREF"}], "variant_name": ["Association internationale d'études byzantines", "Societas internationalis studiis Byzantinis provehendis destinata"], "preferred_name": "Association internationale des études byzantines", "variant_access_point": ["Association internationale d'études byzantines", "Societas internationalis studiis Byzantinis provehendis destinata"], "date_of_establishment": "1948", "parallel_access_point": ["International association for Byzantine studies", "Diethnis enosis vyzantinon spoudon", "Diethnēs 'enōsis byzantinōn spoudōn"], "authorized_access_point": "Association internationale des études byzantines", "biographical_information": ["Siège à Thessalonique (en 1989)"]} 1 -2023-07-08 08:19:14.363004 2023-07-08 08:19:14.363016 47c9d238-9397-4fbd-b6da-659aee60f8b8 {"md5": "71cc570627a985de5d02f42c6bd418e0", "pid": "02658672X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/02658672X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02658672X", "source": "IDREF"}], "preferred_name": "Groupe d'action municipale (Puteaux, Hauts-de-Seine)", "country_associated": "fr", "authorized_access_point": "Groupe d'action municipale (Puteaux, Hauts-de-Seine)", "biographical_information": ["16 rue Anatole France, 92800 Puteaux"]} 1 -2023-07-08 08:19:14.481009 2023-07-08 08:19:14.481016 d640f25b-fb78-4414-9d4f-f47a14753474 {"md5": "896a75f3cef8e4041b6a4031c933913e", "pid": "026614421", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": false, "identifier": "http://www.idref.fr/026614421", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026614421", "source": "IDREF"}], "preferred_name": "Philippines", "country_associated": "ph", "parallel_access_point": ["Filipinas", "Pilipinas"], "authorized_access_point": "Philippines", "biographical_information": ["Etat indépendant depuis le 4 juillet 1946 ; langue officielle pilipino (non codé ISO), anglais très employé ; capitale Manille"]} 1 -2023-07-08 08:19:14.730562 2023-07-08 08:19:14.730573 7ebbe6a3-ce48-4852-b1f6-53dff09a9670 {"md5": "13e790155a17df316a0c05e20e273eef", "pid": "026631342", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/026631342", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026631342", "source": "IDREF"}], "variant_name": ["Commission nationale française de géographie de la mer"], "preferred_name": "Comité national français de géographie. Commission Géographie de la mer", "country_associated": "fr", "variant_access_point": ["Commission nationale française de géographie de la mer"], "authorized_access_point": "Comité national français de géographie. Commission Géographie de la mer", "biographical_information": ["Cette commission organise des colloques annuels"]} 1 -2023-07-08 08:19:14.840628 2023-07-08 08:19:14.840642 427e029a-0438-466f-9293-6c04142371fc {"md5": "04be669ae86162e260afad80f96ace3c", "pid": "026646862", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/026646862", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026646862", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "163399395"}, "variant_name": ["Syndicat d'agglomération nouvelle du Val Maubuée", "Syndicat d'agglomération nouvelle (Marne-la-Vallée, Seine-et-Marne)", "Syndicat d'agglomération nouvelle Marne-la-Vallée-Val-Maubuée (Torcy, Seine-et-Marne)"], "preferred_name": "Syndicat d'agglomération nouvelle de Marne-la-Vallée-Val Maubuée", "country_associated": "fr", "date_of_termination": "2013", "variant_access_point": ["Syndicat d'agglomération nouvelle du Val Maubuée", "Syndicat d'agglomération nouvelle (Marne-la-Vallée, Seine-et-Marne)", "Syndicat d'agglomération nouvelle Marne-la-Vallée-Val-Maubuée (Torcy, Seine-et-Marne)"], "date_of_establishment": "1984", "authorized_access_point": "Syndicat d'agglomération nouvelle de Marne-la-Vallée-Val Maubuée", "biographical_information": ["Adresse : 5 place de l'Arche Guédon, Torcy, 77207 Marne-la-Vallée cedex 1. Tél. 01.60.37.24.24. Fax 01.60.37.24.34. Mél : san@san-valmaubuee.fr"]} 1 -2023-07-08 08:19:14.952111 2023-07-08 08:19:14.952125 aaaac4c2-4d17-44e3-910b-dfc8f4f83283 {"md5": "8aa241df54bea16f4999c57863fe2f94", "pid": "02672698X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/02672698X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02672698X", "source": "IDREF"}], "date_of_birth": "1946", "preferred_name": "Bharucha, Janine", "country_associated": "fr", "authorized_access_point": "Bharucha, Janine, 1946-....", "biographical_information": ["Traductrice de l'anglais en français"]} 1 -2023-07-08 08:19:15.065537 2023-07-08 08:19:15.065548 d3bd5ac5-7a10-47da-bff5-5ed6a7ec90db {"md5": "feb6346c72c189ee4a8ca4527b15e307", "pid": "02675181X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/02675181X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02675181X", "source": "IDREF"}], "variant_name": ["Bretécher"], "date_of_birth": "1940-04-17", "date_of_death": "2020-02-11", "preferred_name": "Bretécher, Claire", "country_associated": "fr", "variant_access_point": ["Bretécher"], "authorized_access_point": "Bretécher, Claire, 1940-2020", "biographical_information": ["Dessinatrice et scénariste de bandes dessinées"]} 1 -2023-07-08 08:19:15.192486 2023-07-08 08:19:15.192491 75099e46-736d-484e-a9fc-c4c17ed73bdb {"md5": "21ea9564f1a8cba991b5e47dc0e9357f", "pid": "026847655", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/026847655", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026847655", "source": "IDREF"}], "date_of_birth": "1940", "date_of_death": "1983", "preferred_name": "Duviard, Dominique", "country_associated": "fr", "authorized_access_point": "Duviard, Dominique, 1940-1983", "biographical_information": ["Spécialiste des problèmes d'écologie animale. Docteur en sciences"]} 1 -2023-07-08 08:19:15.442869 2023-07-08 08:19:15.442872 a426df57-dba0-4e6b-8e4c-12737dd6cde0 {"md5": "b006c282b71c31a174876ffe93cd5ae7", "pid": "026895056", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "éditeur", "identifier": "http://www.idref.fr/026895056", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026895056", "source": "IDREF"}], "variant_name": ["Godefroy, Christian"], "date_of_birth": "1948-10-25", "preferred_name": "Godefroy, Christian Henri, éditeur", "country_associated": "fr", "variant_access_point": ["Godefroy, Christian"], "authorized_access_point": "Godefroy, Christian Henri, 1948-...., éditeur", "biographical_information": ["Éditeur"]} 1 -2023-07-08 08:19:15.635944 2023-07-08 08:19:15.635957 637feb75-c8c6-4746-8ae9-2e27188721d4 {"md5": "766a2be5fb6c8ad9cb9eb01dab43d1d5", "pid": "026924498", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/026924498", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026924498", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "027469107"}, "date_of_birth": "1895-02-14", "date_of_death": "1973-07-07", "preferred_name": "Horkheimer, Max", "country_associated": "gw", "authorized_access_point": "Horkheimer, Max, 1895-1973", "biographical_information": ["Philosophe et sociologue"]} 1 -2023-07-08 08:19:15.298993 2023-07-08 10:31:30.105977 dc6e45e5-2c1d-4514-8e71-dd39d747b0d7 {"md5": "e497d8d54793473b663ea1a0750c6c58", "pid": "026868482", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "économiste", "identifier": "http://www.idref.fr/026868482", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026868482", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "108076628"}, "date_of_birth": "1942-10-06", "preferred_name": "Fontaine, Jean-Marc, économiste", "country_associated": "fr", "authorized_access_point": "Fontaine, Jean-Marc, 1942-...., économiste", "biographical_information": ["Maître de conférences en sciences économiques et directeur du Centre de recherche économique de l'IEDES, Université Panthéon-Sorbonne, Paris I (en 1992)"]} 2 -2023-07-08 08:19:16.187384 2023-07-08 08:19:16.187393 73f65333-2bfb-48cb-92b1-3034220ec358 {"md5": "dead91d28ebe99732098fe132ae2f6cf", "pid": "02700273X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/02700273X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02700273X", "source": "IDREF"}], "date_of_birth": "1928", "date_of_death": "2004-05-13", "preferred_name": "Mainié, Philippe", "country_associated": "fr", "authorized_access_point": "Mainié, Philippe, 1928-2004"} 1 -2023-07-08 08:19:16.295188 2023-07-08 08:19:16.295194 89acfd6b-70e0-4f99-9d91-a17b93af09f5 {"md5": "f17de04f400b25769061091290c30d2d", "pid": "027006344", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/027006344", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027006344", "source": "IDREF"}], "variant_name": ["Manoury, H. de", "Ectot, H. de Mannoury", "Nicolas Le Blanc, H", "Le Blanc, H. Nicolas", "Coeur-Brûlant, Vicomtesse de"], "date_of_birth": "18..", "date_of_death": "18..?", "preferred_name": "Mannoury d'Ectot, H. de", "country_associated": "fr", "variant_access_point": ["Manoury, H. de", "Ectot, H. de Mannoury", "Nicolas Le Blanc, H", "Le Blanc, H. Nicolas", "Coeur-Brûlant, Vicomtesse de"], "authorized_access_point": "Mannoury d'Ectot, H. de, 18..-18..?", "biographical_information": ["Marquise de Mannoury d'Ectot, née H. Nicolas Le Blanc"]} 1 -2023-07-08 08:19:16.499527 2023-07-08 08:19:16.499538 f7f1504b-b7ba-4bf2-ac91-139a9428a88d {"md5": "66d7e900713f5937cba75b85f8e9822a", "pid": "02703819X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/02703819X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02703819X", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "031784283"}, "variant_name": ["M., A.", "A. M.", "M. L. M.", "M., M. L."], "date_of_birth": "1727-03-07", "date_of_death": "1819-01-12", "preferred_name": "Morellet, André", "country_associated": "fr", "variant_access_point": ["M., A.", "A. M.", "M. L. M.", "M., M. L."], "authorized_access_point": "Morellet, André, 1727-1819", "biographical_information": ["Traduit de l'italien et du latin en français. Ecclésiastique. Économiste. Membre de l'Académie française (élu en 1785 et nommé en 1803)"]} 1 -2023-07-08 08:19:16.733179 2023-07-08 08:19:16.733189 14f6d5ce-f14e-4a13-92ae-2d1d500a3173 {"md5": "22cc11e92d71decbc008696a449a922a", "pid": "027215008", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/027215008", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027215008", "source": "IDREF"}], "preferred_name": "Centre d'expérimentation des packages (Paris)", "country_associated": "fr", "date_of_termination": "1978-06-27", "authorized_access_point": "Centre d'expérimentation des packages (Paris)"} 1 -2023-07-08 08:19:19.959854 2023-07-08 08:19:19.960263 113037dc-f62d-4d7e-9b18-12d2f7e25a1e {"md5": "75f1cdd1a846a8d7fa15c5f192dfa133", "pid": "028541634", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/028541634", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028541634", "source": "IDREF"}], "date_of_birth": "1937", "preferred_name": "Harrison, Peter D", "country_associated": "xxu", "authorized_access_point": "Harrison, Peter D, 1937-...."} 1 -2023-07-08 08:19:16.38902 2023-07-08 10:28:28.448011 dcfa5c80-4c57-4396-b199-28e372318df7 {"md5": "6c4e3d5bab6f4660e66bd80c4ed74e19", "pid": "027019837", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/027019837", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027019837", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "085841943"}, "variant_name": ["Mayer, Arno J."], "date_of_birth": "1926-06-19", "preferred_name": "Mayer, Arno", "country_associated": "xxu", "variant_access_point": ["Mayer, Arno J."], "authorized_access_point": "Mayer, Arno, 1926-....", "biographical_information": ["Professeur d'histoire européenne à Princeton university, New Jersey (en 1990)"]} 2 -2023-07-08 08:19:16.619518 2023-07-08 10:29:02.374686 825c3dbb-4a7e-49c9-bacb-dc036f68917c {"md5": "bcc12599e0acf03bc3e95b3b3684445c", "pid": "027135985", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/027135985", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027135985", "source": "IDREF"}], "date_of_birth": "1919", "date_of_death": "1986", "preferred_name": "Shackleton, Robert", "country_associated": "xxk", "authorized_access_point": "Shackleton, Robert, 1919-1986", "biographical_information": ["Professeur de littérature française à l'Université d'Oxford, GB"]} 2 -2023-07-08 08:19:15.750257 2023-07-08 10:30:34.124522 67f0af77-f608-4a59-a79f-cff03eb4c255 {"md5": "1b09ebfe98b6fcbc097b139809cbf4ef", "pid": "026959852", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/026959852", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026959852", "source": "IDREF"}], "date_of_birth": "1913-03-12", "date_of_death": "1993-03-17", "preferred_name": "Laffont, Pierre", "country_associated": "fr", "authorized_access_point": "Laffont, Pierre, 1913-1993", "biographical_information": ["Directeur général de l'\\"Echo d'Oran\\" (1945-1963). Député d'Oran-campagne (1958-1961). Administrateur des éditions Robert Laffont (de 1964 à 1978)"]} 2 -2023-07-08 08:19:16.852881 2023-07-08 08:19:16.852892 cd78346c-ec2f-4185-95d8-db3b2d50f5a5 {"md5": "bca95a4d7812df31cebf0be9380aec32", "pid": "027486028", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifier": "http://www.idref.fr/027486028", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027486028", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "086101293"}, "variant_name": ["Abadia Santa Maria de Poblet", "Monasterio de Poblet", "Monasterio Santa María de Poblet", "Monestir Santa Maria de Poblet", "Poblet", "Santa Maria de Poblet"], "preferred_name": "Monestir de Poblet", "country_associated": "sp", "variant_access_point": ["Abadia Santa Maria de Poblet", "Monasterio de Poblet", "Monasterio Santa María de Poblet", "Monestir Santa Maria de Poblet", "Poblet", "Santa Maria de Poblet"], "date_of_establishment": "1150", "authorized_access_point": "Monestir de Poblet", "biographical_information": ["Monastère cistercien situé sur la commune de Vimbodí (prov. de Tarragone). Fondé par des moines de Fontfroide sur des terres données par le comte Raymond-Bérenger IV de Barcelone en 1150 ; abbaye à partir de 1153. Mis à sac par les Français en 1809, puis supprimé en 1835. Rendu aux Cisterciens en 1940. Tombeaux des rois d'Aragon"]} 1 -2023-07-08 08:19:16.97115 2023-07-08 08:19:16.971157 70d4a73c-36d1-4844-af43-7b334014ce7b {"md5": "3f3877f53e5e47285d86014c9f33d443", "pid": "027632288", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": false, "identifier": "http://www.idref.fr/027632288", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027632288", "source": "IDREF"}], "variant_name": ["Canada. Parliament"], "preferred_name": "Canada. Parlement", "country_associated": "xxc", "variant_access_point": ["Canada. Parliament"], "authorized_access_point": "Canada. Parlement", "biographical_information": ["Parlement composé de 2 chambres aux pouvoirs inégaux : le Sénat (membres nommés à vie) et la Chambre des communes qui seule vote les lois ; elle est élue pour 5 ans au scrutin uninominal à un tour"]} 1 -2023-07-08 08:19:17.071221 2023-07-08 08:19:17.071232 116e8d48-f873-488e-9025-eeefe1665e40 {"md5": "0158278597edda1077c7ecd34537b0a4", "pid": "027767744", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/027767744", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027767744", "source": "IDREF"}], "variant_name": ["Maquis de Plésidy", "Plésidy"], "preferred_name": "Forces françaises de l'intérieur. Maquis de Plésidy", "country_associated": "fr", "variant_access_point": ["Maquis de Plésidy", "Plésidy"], "authorized_access_point": "Forces françaises de l'intérieur. Maquis de Plésidy", "biographical_information": ["Basé dans le bois de Coat-Mallouen, dépendait du M.C.O. de Guingamp"]} 1 -2023-07-08 08:19:17.172307 2023-07-08 08:19:17.172316 e5202a07-8cae-4fea-bc80-12b21feaf75c {"md5": "e48497ea4e08cbbda91b5a1f693224d5", "pid": "027896781", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/027896781", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027896781", "source": "IDREF"}], "variant_name": ["SCSP"], "preferred_name": "Société cévenole de spéléologie et de préhistoire", "country_associated": "fr", "variant_access_point": ["SCSP"], "authorized_access_point": "Société cévenole de spéléologie et de préhistoire", "biographical_information": ["Siège au Centre culturel communal, pl. Henri-Barbusse, 30100 Alès"]} 1 -2023-07-08 08:19:17.265796 2023-07-08 08:19:17.265808 dbf1ae8d-7a01-4f91-9de4-0f610892d3bc {"md5": "091bda26c24571691d7cef9ed1af2724", "pid": "027912760", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/027912760", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027912760", "source": "IDREF"}], "variant_name": ["Département du Cher"], "preferred_name": "Cher", "country_associated": "fr", "variant_access_point": ["Département du Cher"], "authorized_access_point": "Cher", "biographical_information": ["Hôtel du Département, pl. Marcel-Plaisant, 18014 cedex"]} 1 -2023-07-08 08:19:17.354341 2023-07-08 08:19:17.354353 6edba6f3-7d51-4c10-9d16-4cf886ae2875 {"md5": "8f1644d3058a22d4ca5a904850b84858", "pid": "02796096X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/02796096X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02796096X", "source": "IDREF"}], "preferred_name": "Var. Inspection académique", "country_associated": "fr", "authorized_access_point": "Var. Inspection académique", "biographical_information": ["Rue Montebello, BP 1204, 83070 Toulon Cedex"]} 1 -2023-07-08 08:19:17.456326 2023-07-08 08:19:17.456341 e5a59021-0a41-4f08-b5fe-58dd6d7b7e03 {"md5": "d60237bd1700d4efe1bc05553597f084", "pid": "027969428", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": false, "identifier": "http://www.idref.fr/027969428", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027969428", "source": "IDREF"}], "variant_name": ["Organisation de coopération et de développement économiques. Comité sur les marchés financiers", "Organisation for Economic Co-operation and Development. Committee on financial markets"], "preferred_name": "Organisation de coopération et de développement économiques. Comité des marchés financiers", "variant_access_point": ["Organisation de coopération et de développement économiques. Comité sur les marchés financiers", "Organisation for Economic Co-operation and Development. Committee on financial markets"], "authorized_access_point": "Organisation de coopération et de développement économiques. Comité des marchés financiers"} 1 -2023-07-08 08:19:17.573607 2023-07-08 08:19:17.573612 de27d2f3-a174-4165-b9eb-0dc8e976de98 {"md5": "24c0db3d3cebdef90b7aac7de45afa66", "pid": "028071670", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": true, "identifier": "http://www.idref.fr/028071670", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028071670", "source": "IDREF"}], "preferred_name": "Symposium sur les expériences in situ dans du granite relatives à l'évacuation des déchets radiactifs", "date_of_termination": "1985-06-06", "date_of_establishment": "1985-06-04", "parallel_access_point": ["Symposium on in situ experiments in granite associated with the disposal of radioactive waste (1985 ; Stockholm)"], "authorized_access_point": "Symposium sur les expériences in situ dans du granite relatives à l'évacuation des déchets radiactifs (1985 ; Stockholm)", "biographical_information": ["Organisé l'Agence de l'O.C.D.E. pour l'énergie nucléaire et la Société suédoise d'approvisionnement en combustible nucléaire, Division K.B.S. dans le cadre du Projet international de Stripa"]} 1 -2023-07-08 08:19:17.688903 2023-07-08 08:19:17.688909 e028cd71-a705-49ee-add3-9ba42c81cfc6 {"md5": "6082e3da57c435082d2fa5147b58e3e1", "pid": "028082788", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": false, "identifier": "http://www.idref.fr/028082788", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028082788", "source": "IDREF"}], "preferred_name": "Kloster Blaubeuren", "country_associated": "gw", "date_of_establishment": "1085", "authorized_access_point": "Kloster Blaubeuren", "biographical_information": ["Abbaye de bénédictins (1085-1535), puis séminaire de théologie évangélique depuis 1562"]} 1 -2023-07-08 08:19:17.79939 2023-07-08 08:19:17.799399 3c4c24d9-dffe-44ea-a172-b80087d47626 {"md5": "45f51b4601e3e91b44874575907c81a4", "pid": "02809364X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/02809364X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02809364X", "source": "IDREF"}], "preferred_name": "Sangamon State university (Springfield, Ill)", "country_associated": "xxu", "date_of_establishment": "1969", "authorized_access_point": "Sangamon State university (Springfield, Ill)"} 1 -2023-07-08 08:19:17.933854 2023-07-08 08:19:17.933864 e1ef2c80-6774-49f6-944a-8911d165d02c {"md5": "aa847d8646b07d44d919ea6bb39c1df8", "pid": "028166027", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/028166027", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028166027", "source": "IDREF"}], "variant_name": ["AFAI", "AFAI-EDPAA", "Association française d'audit et du conseil informatiques", "Association française d'audit et de conseil informatique", "Information systems audit and control association. Association française d'audit informatique"], "preferred_name": "Association française d'audit informatique", "country_associated": "fr", "variant_access_point": ["AFAI", "AFAI-EDPAA", "Association française d'audit et du conseil informatiques", "Association française d'audit et de conseil informatique", "Information systems audit and control association. Association française d'audit informatique"], "date_of_establishment": "1982", "authorized_access_point": "Association française d'audit informatique", "biographical_information": ["Chapitre français de l'Information systems audit and control association (avant 1996 : International EDP auditors association = EDPAA)", "88 rue de Courcelles, 75008 Paris. Tél. 01.55.61.07.07. Fax 01.55.62.12.12. E-mail : afai@afai.asso.fr. Ancienne adresse : Centre HEC, 1 rue de la Libération, 78350 Jouy-en-Josas"]} 1 -2023-07-08 08:19:18.146134 2023-07-08 08:19:18.146142 70cde825-5f96-4c3b-9587-638096b24441 {"md5": "ec6558bd53f6ded342e1163d85607a6b", "pid": "028302435", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifier": "http://www.idref.fr/028302435", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028302435", "source": "IDREF"}], "preferred_name": "Parc naturel régional de Saint-Amand Raismes", "authorized_access_point": "Parc naturel régional de Saint-Amand Raismes"} 1 -2023-07-08 08:19:18.280136 2023-07-08 08:19:18.280149 07172da7-38c8-4dc2-8ecc-db62806ce85c {"md5": "503d8e57ad888c6f8a81639ea7b21adc", "pid": "02832787X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": false, "identifier": "http://www.idref.fr/02832787X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02832787X", "source": "IDREF"}], "variant_name": ["Centro de investigación y desarrollo de Petróleos de Venezuela", "INTEVEP", "Instituto venezolano tecnológico de Petróleos", "Petróleos de Venezuela. Centro de investigación y apoyo tecnológico"], "preferred_name": "Centro de investigación y apoyo tecnológico de Petróleos de Venezuela", "country_associated": "ve", "variant_access_point": ["Centro de investigación y desarrollo de Petróleos de Venezuela", "INTEVEP", "Instituto venezolano tecnológico de Petróleos", "Petróleos de Venezuela. Centro de investigación y apoyo tecnológico"], "date_of_establishment": "1979", "authorized_access_point": "Centro de investigación y apoyo tecnológico de Petróleos de Venezuela", "biographical_information": ["Centre de recherche appliquée au développement de produits nouveaux et à l'amélioration de produits existants. Le centre est une filiale de Petróleos de Venezuela, SA. Les chercheurs trouvent dans le centre une assitance technique et de la documentation", "Apdo 76343, Caracas 1070A, Vénézuéla"]} 1 -2023-07-08 08:19:18.534984 2023-07-08 08:19:18.535 01d8729e-5310-4f40-b603-7269b53dcaf1 {"md5": "07e39c37cda9ae0965b8e19ff9c7cf58", "pid": "028354753", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/028354753", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028354753", "source": "IDREF"}], "preferred_name": "Venturelli, Aldo", "country_associated": "it", "authorized_access_point": "Venturelli, Aldo"} 1 -2023-07-08 08:19:19.852581 2023-07-08 08:19:19.852591 42e02683-ec0e-4def-a949-8bb186206cdb {"md5": "2a31b631c811a753d6b5a3b1a1f89c3b", "pid": "028529677", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/028529677", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028529677", "source": "IDREF"}], "date_of_birth": "1911-02-11", "preferred_name": "Osthoff, Hans Werner", "country_associated": "gw", "authorized_access_point": "Osthoff, Hans Werner, 1911-....", "biographical_information": ["Juriste. Spécialiste en droit de l'économie"]} 1 -2023-07-08 08:19:18.42289 2023-07-08 10:30:16.538215 923be530-8a91-4258-b426-9473e00c5e6e {"md5": "91f0c9e2346a91767a972a20a2eb9ff2", "pid": "028330943", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/028330943", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028330943", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "033174377"}, "date_of_birth": "1920", "date_of_death": "1996-06-14", "preferred_name": "Bufalino, Gesualdo", "country_associated": "it", "authorized_access_point": "Bufalino, Gesualdo, 1920-1996", "biographical_information": ["Romancier et essayiste"]} 2 -2023-07-08 08:19:18.648462 2023-07-08 08:19:18.648477 64bcd4b8-64a4-4a4c-a420-277f077d4583 {"md5": "ae0fcc0a8f243741dd8a63c0bbf1ffda", "pid": "028357531", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut"], "identifier": "http://www.idref.fr/028357531", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028357531", "source": "IDREF"}], "variant_name": ["Kossmann, E. H"], "date_of_birth": "1922", "date_of_death": "2003", "preferred_name": "Kossmann, Ernst Heinrich", "country_associated": "ne", "variant_access_point": ["Kossmann, E. H"], "authorized_access_point": "Kossmann, Ernst Heinrich, 1922-2003", "biographical_information": ["Écrit aussi en anglais", "Professeur d'histoire à l'Université de Groningue (en 1987)"]} 1 -2023-07-08 08:19:18.768543 2023-07-08 08:19:18.768555 f3b792ca-dd9b-4400-b50a-2baea1d0e83a {"md5": "f7993440592739fb5833a28bb96cd2dd", "pid": "028416171", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/028416171", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028416171", "source": "IDREF"}], "variant_name": ["Coward, Harold", "Coward, H. G.", "Coward, H."], "date_of_birth": "1936", "preferred_name": "Coward, Harold G.", "country_associated": "xxc", "variant_access_point": ["Coward, Harold", "Coward, H. G.", "Coward, H."], "authorized_access_point": "Coward, Harold G., 1936-....", "biographical_information": ["Professeur de sciences religieuses, titulaire d'un doctorat en philosophie et religion indiennes (Université McMaster). Directeur, Humanities Institute, University of Calgary, Canada (en 1989). Éditeur de \\"Mystics and Scholars\\" (1977)"]} 1 -2023-07-08 08:19:18.912575 2023-07-08 08:19:18.912582 b4cc5f0b-d75b-4c9d-88e3-491d82b6953e {"md5": "1110c0316a2a77c739acee6e65970f61", "pid": "028419790", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/028419790", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028419790", "source": "IDREF"}], "date_of_birth": "1918-12-08", "preferred_name": "Kessler, Herbert", "country_associated": "gw", "authorized_access_point": "Kessler, Herbert, 1918-....", "biographical_information": ["Spécialiste de droit et de philosophie"]} 1 -2023-07-08 08:19:19.147148 2023-07-08 08:19:19.147165 b98984f6-c78e-42ae-8c6c-1780155ddd49 {"md5": "ae281c5d11f8f45c289f220029286b6b", "pid": "028470141", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": false, "identifier": "http://www.idref.fr/028470141", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028470141", "source": "IDREF"}], "variant_name": ["Allgemeiner deutscher Verband"], "preferred_name": "Alldeutscher Verband", "country_associated": "gw", "date_of_termination": "1939", "variant_access_point": ["Allgemeiner deutscher Verband"], "date_of_establishment": "1891", "authorized_access_point": "Alldeutscher Verband", "biographical_information": ["Ligue pangermaniste fondée à Berlin en 1891 : Allgemeiner deutscher Verband, puis (01-07-1894) Alldeutscher Verband ; interdite en 1939"]} 1 -2023-07-08 08:19:19.250551 2023-07-08 08:19:19.250561 5c5becf2-d59e-4449-a7c7-20683383f217 {"md5": "b1ff30f3ff5250b10e9d8704fd8b1d77", "pid": "028495764", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "qualifier": "médiéviste", "identifier": "http://www.idref.fr/028495764", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028495764", "source": "IDREF"}], "date_of_birth": "1920-05-15", "preferred_name": "Krüger, Sabine, médiéviste", "country_associated": "gw", "authorized_access_point": "Krüger, Sabine, 1920-...., médiéviste", "biographical_information": ["Médiéviste"]} 1 -2023-07-08 08:19:19.477344 2023-07-08 08:19:19.477351 3d85e863-6743-48ca-9bb9-e8c2d38d9f6d {"md5": "1f1eeea1fe49244492f2cc6658db914d", "pid": "028503112", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/028503112", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028503112", "source": "IDREF"}], "date_of_birth": "1947-04-03", "preferred_name": "Bartsch, Kurt", "country_associated": "au", "authorized_access_point": "Bartsch, Kurt, 1947-....", "biographical_information": ["Professeur de littérature allemande moderne à l'Université de Graz depuis 1987 (en 1992)"]} 1 -2023-07-08 08:19:19.591393 2023-07-08 08:19:19.591399 ba74b773-dbce-4a9f-ab0f-10a33fe9d6d6 {"md5": "cb3aa2aa3b2c325bcbe67e469afe975d", "pid": "028522206", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/028522206", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028522206", "source": "IDREF"}], "variant_name": ["MacConnell, Robert A", "MacConnell, R. A."], "preferred_name": "McConnell, Robert A", "country_associated": "xxu", "variant_access_point": ["MacConnell, Robert A", "MacConnell, R. A."], "authorized_access_point": "McConnell, Robert A"} 1 -2023-07-08 08:19:19.714642 2023-07-08 10:28:40.766439 09771313-23f8-49a3-b0e2-7fa2c54b6376 {"md5": "759c265ca8ca38b479d3a9764d4b88bd", "pid": "028523555", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/028523555", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028523555", "source": "IDREF"}], "date_of_birth": "1949", "preferred_name": "Aronoff, Mark", "country_associated": "xxu", "authorized_access_point": "Aronoff, Mark, 1949-...."} 2 -2023-07-08 08:19:19.351579 2023-07-08 10:28:52.183449 4f2848e8-ef92-4446-b3c4-14130b07848d {"md5": "5b6c120d89b298589b3164bf53c0d644", "pid": "028500490", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/028500490", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028500490", "source": "IDREF"}], "date_of_birth": "1934-07-07", "date_of_death": "2014", "preferred_name": "Seebohm, Thomas M", "country_associated": "gw", "authorized_access_point": "Seebohm, Thomas M, 1934-2014", "biographical_information": ["Écrit aussi en anglais", "Professeur de philosophie à l'Université Johannes Gutenberg de Mayence, Allemagne (en 1992)"]} 2 -2023-07-08 08:19:20.173851 2023-07-08 08:19:20.173861 62e2bc2e-b55b-47e3-b166-cb2c500e06de {"md5": "97095630188da808124a553635829602", "pid": "028558200", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/028558200", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028558200", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "085994995"}, "variant_name": ["Smyth, Alfred Patrick"], "date_of_birth": "1942-07-01", "date_of_death": "2016-10-16", "preferred_name": "Smyth, Alfred P.", "country_associated": "ie", "variant_access_point": ["Smyth, Alfred Patrick"], "authorized_access_point": "Smyth, Alfred P., 1942-2016", "biographical_information": ["Doyen, Canterbury Christ Church University (1999-2007). - Professeur émérite d'histoire médievale, University of Kent, Canterbury, GB (en 2006)", "Lieu de naissance Tara (Comté de Meath, Irlande). Lieu de décès Godmersham (Kent, Royaume-Uni)"]} 1 -2023-07-08 08:19:20.284316 2023-07-08 08:19:20.28432 aba83508-d334-461a-b50a-47329179827f {"md5": "8381ce3107c34fb611f34ed5a4fbbf79", "pid": "028615719", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "cardiologue", "identifier": "http://www.idref.fr/028615719", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028615719", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Rousseau, Georges, cardiologue", "country_associated": "fr", "authorized_access_point": "Rousseau, Georges, 19..-...., cardiologue"} 1 -2023-07-08 08:19:20.37101 2023-07-08 08:19:20.371023 74d09852-a4e5-471d-94f5-bc6e0ed16105 {"md5": "72d7af6aa7f52ec64bb5aef632a2d994", "pid": "028666925", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/028666925", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028666925", "source": "IDREF"}], "variant_name": ["Om Prakash Ralhan", "Ralhan, O. P."], "date_of_birth": "1936", "preferred_name": "Ralhan, Om Prakash", "country_associated": "ii", "variant_access_point": ["Om Prakash Ralhan", "Ralhan, O. P."], "authorized_access_point": "Ralhan, Om Prakash, 1936-....", "biographical_information": ["En poste au Nehru Memorial Museum and Library, New Delhi, Inde (en 1983)"]} 1 -2023-07-08 08:19:20.586726 2023-07-08 08:19:20.586739 87d3f351-7599-4a4d-95ee-781d18718a88 {"md5": "3bdbc54c684f01cbbcd37a8f45607c92", "pid": "028735498", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/028735498", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028735498", "source": "IDREF"}], "date_of_birth": "1946-10-17", "date_of_death": "2009", "preferred_name": "Maniguet, Xavier", "country_associated": "fr", "authorized_access_point": "Maniguet, Xavier, 1946-2009", "biographical_information": ["Médecin, spécialiste de médecine aéronautique, de médecine hyperbarre et de médecine du sport"]} 1 -2023-07-08 08:19:20.860346 2023-07-08 08:19:20.860352 fbd6eb9e-b619-4eca-99f2-72f3d1795328 {"md5": "a0d8d082eed1b85390e85f4ece77908b", "pid": "028882199", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/028882199", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028882199", "source": "IDREF"}], "variant_name": ["Amis du Châtillonnais (Châtillon-sur-Seine, Côte-d'Or)", "Société des amis de Châtillon-sur-Seine (Châtillon-sur-Seine, Côte-d'Or)"], "preferred_name": "Association des amis du Châtillonnais (Châtillon-sur-Seine, Côte-d'Or)", "country_associated": "fr", "variant_access_point": ["Amis du Châtillonnais (Châtillon-sur-Seine, Côte-d'Or)", "Société des amis de Châtillon-sur-Seine (Châtillon-sur-Seine, Côte-d'Or)"], "authorized_access_point": "Association des amis du Châtillonnais (Châtillon-sur-Seine, Côte-d'Or)", "biographical_information": ["Siège social : Mairie, 21400 Châtillon-sur-Seine. Courrier : 123 rue Docteur-Robert, 21400 Châtillon-sur-Seine"]} 1 -2023-07-08 08:19:22.930578 2023-07-08 08:19:22.930586 aabebae6-e5bf-495e-8b33-a6eab4dc73fb {"md5": "0ed88f8f48d7213a64f3472e7ef63363", "pid": "029767849", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": false, "identifier": "http://www.idref.fr/029767849", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029767849", "source": "IDREF"}], "variant_name": ["AMIA", "Comunidad judía de Buenos Aires"], "preferred_name": "Asociación mutual israelita argentina", "country_associated": "ag", "variant_access_point": ["AMIA", "Comunidad judía de Buenos Aires"], "authorized_access_point": "Asociación mutual israelita argentina"} 1 -2023-07-08 08:19:20.061824 2023-07-08 10:26:31.782932 97469af2-92bb-4040-9a69-b15a90a2d87f {"md5": "771101fd424d201c8428a6fa11390871", "pid": "028542770", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/028542770", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028542770", "source": "IDREF"}], "date_of_birth": "1925", "date_of_death": "2015", "preferred_name": "Higham, Robin", "country_associated": "xxu", "authorized_access_point": "Higham, Robin, 1925-2015"} 2 -2023-07-08 08:19:20.489535 2023-07-08 10:29:10.564773 ecb5bae9-ee5c-40dc-a416-ee78a87b1b3a {"md5": "9df2efed046a8460ef239209a6c09eba", "pid": "028681673", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/028681673", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028681673", "source": "IDREF"}], "preferred_name": "Sanchez, Denise", "country_associated": "xx", "authorized_access_point": "Sanchez, Denise"} 2 -2023-07-08 08:19:20.972502 2023-07-08 10:30:48.700439 486b3bce-9153-4789-9336-f8758a658e80 {"md5": "2c313724201dc6402ecffe9e490fb4ee", "pid": "028902661", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/028902661", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028902661", "source": "IDREF"}], "preferred_name": "Cloonan, Michèle Valerie", "country_associated": "xxu", "authorized_access_point": "Cloonan, Michèle Valerie"} 2 -2023-07-08 08:19:21.117106 2023-07-08 08:19:21.117114 ea4a2195-ce95-403b-ba8b-90e2ed8dc405 {"md5": "2ee6b87231ab083a31ac95d6cf675a7b", "pid": "02893010X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/02893010X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02893010X", "source": "IDREF"}], "variant_name": ["SESPA", "SFTP", "SSPA", "Scientists and engineers for social and political action (Etats-Unis)", "Scientists for social and political action (Etats-Unis)"], "preferred_name": "Science for the people (Etats-Unis)", "country_associated": "xxu", "variant_access_point": ["SESPA", "SFTP", "SSPA", "Scientists and engineers for social and political action (Etats-Unis)", "Scientists for social and political action (Etats-Unis)"], "date_of_establishment": "1969", "authorized_access_point": "Science for the people (Etats-Unis)", "biographical_information": ["A porté, de févr.? à août 1969, le nom de \\"Scientists for Social and Political Action\\" puis, de sept. 1969 à sept. 1975, celui de \\"Scientists and Engineers for Social and Political Action\\"", "Édite un périodique de même nom : \\"Science for the people\\"", "897 Main Street, Cambridge, MA 02139"]} 1 -2023-07-08 08:19:21.221433 2023-07-08 08:19:21.221439 2fb38f0b-0d11-4ff7-897e-799c666947b0 {"md5": "6b091fc0da08c7c1d87bed54004f30cb", "pid": "02903096X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["hun"], "conference": false, "identifier": "http://www.idref.fr/02903096X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02903096X", "source": "IDREF"}], "variant_name": ["Institut für Parteigeschichte (Hongrie)", "Magyar szocialista munkáspárt. Párttörténeti intézet", "Magyar szocialista munkáspárt. Központi bizottság. Párttörténeti intézet"], "preferred_name": "Párttörténeti intézet (Hongrie)", "country_associated": "hu", "variant_access_point": ["Institut für Parteigeschichte (Hongrie)", "Magyar szocialista munkáspárt. Párttörténeti intézet", "Magyar szocialista munkáspárt. Központi bizottság. Párttörténeti intézet"], "authorized_access_point": "Párttörténeti intézet (Hongrie)", "biographical_information": ["Institut pour l'histoire des partis"]} 1 -2023-07-08 08:19:21.305691 2023-07-08 08:19:21.305703 b648c48a-7a5b-4cf7-81f5-4f8eb0c64724 {"md5": "ca635ea4f8b218500ed79e84f4c74f9e", "pid": "02907309X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/02907309X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02907309X", "source": "IDREF"}], "preferred_name": "Lanati, Barbara", "country_associated": "it", "authorized_access_point": "Lanati, Barbara", "biographical_information": ["Enseigne la littérature américaine à l' Université de Turin (en 1987)"]} 1 -2023-07-08 08:19:21.426256 2023-07-08 08:19:21.426263 147e424e-73e5-4378-b1a9-866e0911c099 {"md5": "9c0409b25ec297029b1a99bbf994e84c", "pid": "029077087", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/029077087", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029077087", "source": "IDREF"}], "variant_name": ["MNE", "Maison nationale des éleveurs (Paris)"], "preferred_name": "Maison nationale des éleveurs (France)", "country_associated": "fr", "variant_access_point": ["MNE", "Maison nationale des éleveurs (Paris)"], "authorized_access_point": "Maison nationale des éleveurs (France)", "biographical_information": ["149 rue de Bercy, 75012 Paris. Tél.43.46.12.20"]} 1 -2023-07-08 08:19:21.559085 2023-07-08 08:19:21.559089 52daae62-6b83-40de-9edc-7a6d5457f9f5 {"md5": "c1a5532fd324b06d78c43bb1358fc376", "pid": "029195640", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": false, "identifier": "http://www.idref.fr/029195640", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029195640", "source": "IDREF"}], "variant_name": ["Coopération CEE-Yougoslavie"], "preferred_name": "Coopération entre la Communauté économique européenne et la République socialiste fédérative de Yougoslavie", "variant_access_point": ["Coopération CEE-Yougoslavie"], "date_of_establishment": "1980-04-02", "authorized_access_point": "Coopération entre la Communauté économique européenne et la République socialiste fédérative de Yougoslavie", "biographical_information": ["Créée par accord du 2-4-1980 signé à Belgrade"]} 1 -2023-07-08 08:19:21.667288 2023-07-08 08:19:21.667298 b07c957c-441b-4d25-b8ac-fbe2ffe73a05 {"md5": "c148aa0b169bc78426b73ea57dbecc3c", "pid": "029214084", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/029214084", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029214084", "source": "IDREF"}], "preferred_name": "Amicale des sapeurs-pompiers de Fougères (Ille-et-Vilaine)", "country_associated": "fr", "authorized_access_point": "Amicale des sapeurs-pompiers de Fougères (Ille-et-Vilaine)"} 1 -2023-07-08 08:19:21.786243 2023-07-08 08:19:21.786258 9de35bf0-9133-41cc-a64b-db9bf622902e {"md5": "03e1fca20e50e09c86c4bf9f719999b7", "pid": "029218977", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/029218977", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029218977", "source": "IDREF"}], "preferred_name": "Fondation pour les arts et les sciences de la communication", "country_associated": "fr", "authorized_access_point": "Fondation pour les arts et les sciences de la communication", "biographical_information": ["1 rue Didienne, BP 67, 44003 Nantes cedex"]} 1 -2023-07-08 08:19:21.879203 2023-07-08 08:19:21.879206 bfb4b60e-cba1-4c4c-a0eb-0d9c730e6d8f {"md5": "0498c11782a742405dd9c845b2e43695", "pid": "029470293", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/029470293", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029470293", "source": "IDREF"}], "variant_name": ["Département de l'Hérault"], "preferred_name": "Hérault", "country_associated": "fr", "variant_access_point": ["Département de l'Hérault"], "authorized_access_point": "Hérault", "biographical_information": ["Hôtel du Département, pl. des Martyrs-de-la-Résistance, 34062 Montpellier cedex. Tél. 67.52.88.88"]} 1 -2023-07-08 08:19:21.985619 2023-07-08 08:19:21.98563 ec54cfdc-93ce-49aa-8f3d-aaa6e2af4a75 {"md5": "c90cc786c14b7fcb4170f55b431e2160", "pid": "029580293", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/029580293", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029580293", "source": "IDREF"}], "variant_name": ["Service national du catéchuménat (France)", "Eglise catholique. Conférence épiscopale française. Commission épiscopale de l'enseignement religieux. Service national du catéchuménat"], "preferred_name": "Eglise catholique. Conférence épiscopale française. Service national du catéchuménat", "country_associated": "fr", "variant_access_point": ["Service national du catéchuménat (France)", "Eglise catholique. Conférence épiscopale française. Commission épiscopale de l'enseignement religieux. Service national du catéchuménat"], "date_of_establishment": "1964-10", "authorized_access_point": "Eglise catholique. Conférence épiscopale française. Service national du catéchuménat", "biographical_information": ["Fondé en 1964 par la Commission épiscopale de l'enseignement religieux, il est placé sous sa dépendance directe", "4 av. Vavin, 75006 Paris. Tél. 43.54.45.43"]} 1 -2023-07-08 08:19:22.10368 2023-07-08 08:19:22.103689 4be8e14d-5dce-4ec3-8ba9-6bc33c174b29 {"md5": "c3de47d7709cc6bd281ed20e2f1c388d", "pid": "029589681", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/029589681", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029589681", "source": "IDREF"}], "variant_name": ["Commission académique Réussir au collège (Amiens)", "Réussir au collège (Amiens)"], "preferred_name": "France. Académie (Amiens). Commission académique Réussir au collège", "country_associated": "fr", "variant_access_point": ["Commission académique Réussir au collège (Amiens)", "Réussir au collège (Amiens)"], "authorized_access_point": "France. Académie (Amiens). Commission académique Réussir au collège"} 1 -2023-07-08 08:19:22.353681 2023-07-08 08:19:22.353692 4b718733-451c-4801-9f22-cb11e9e51fc4 {"md5": "b30c59f9c36e658de1de8e026f44a362", "pid": "029652138", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/029652138", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029652138", "source": "IDREF"}], "variant_name": ["HFC", "Société anonyme des hauts-fourneaux de La Chiers"], "preferred_name": "Société des hauts-fourneaux de La Chiers", "country_associated": "fr", "date_of_termination": "1976", "variant_access_point": ["HFC", "Société anonyme des hauts-fourneaux de La Chiers"], "authorized_access_point": "Société des hauts-fourneaux de La Chiers", "biographical_information": ["En 1969, absorbe les Tréfileries et câbleries de Bourg et du Havre qui deviennent le Département des tréfileries et câbleries de la société ; en 1976, fusion avec la Compagnie des forges de Châtillon, Commentry, Biachet avec la Société des aciéries et tréfileries de Neuves-Maisons, Châtillon pour former le holding Chiers-Châtillon", "54400 Longwy"]} 1 -2023-07-08 08:19:22.46149 2023-07-08 08:19:22.461502 de025f31-0858-4926-b91a-6dedb238338b {"md5": "f789e680383612a1b74a8c32b3736c78", "pid": "029688019", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/029688019", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029688019", "source": "IDREF"}], "date_of_birth": "1938-08-15", "date_of_death": "2013", "preferred_name": "Mills, David", "country_associated": "xxk", "authorized_access_point": "Mills, David, 1938-2013", "biographical_information": ["Professeurd'anglais à l'Université de Liverpool"]} 1 -2023-07-08 08:19:22.618355 2023-07-08 08:19:22.618361 b88f4d75-e8a5-45c0-a1a1-e78f9052937a {"md5": "2d0e6d273824ecd091d95b86d84bd820", "pid": "029698510", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/029698510", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029698510", "source": "IDREF"}], "variant_name": ["Ramahatra, Pierre", "Ramahatra, Pierre Olivier"], "date_of_birth": "1943-11-01", "preferred_name": "Ramahatra, Olivier", "country_associated": "mg", "variant_access_point": ["Ramahatra, Pierre", "Ramahatra, Pierre Olivier"], "authorized_access_point": "Ramahatra, Olivier, 1943-....", "biographical_information": ["Ingénieur diplômé de l'ENST. Docteur en sciences économiques (Paris 10, 1986). Enseigne à l'Université d'Antananarivo (Madagascar) (en 1989)"]} 1 -2023-07-08 08:19:22.816597 2023-07-08 08:19:22.816607 13258887-747f-41db-97a9-77a2221b85c7 {"md5": "fe8f090b4ad9957d8ac00ed665a7da3a", "pid": "029761867", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["srp"], "identifier": "http://www.idref.fr/029761867", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029761867", "source": "IDREF"}], "variant_name": ["Павловић, Живојин"], "date_of_birth": "1933-04-15", "date_of_death": "1998-11-29", "preferred_name": "Pavlović, Živojin", "variant_access_point": ["Павловић, Живојин, 1933-1998"], "authorized_access_point": "Pavlović, Živojin, 1933-1998", "biographical_information": ["Réalisateur, écrivain et peintre serbe"]} 1 -2023-07-08 08:19:22.7225 2023-07-08 10:30:12.29826 4ea11b28-633b-4292-b09b-52a7d3dd82e8 {"md5": "b43cf46faf274db2463cbc718cf11621", "pid": "029733944", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/029733944", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029733944", "source": "IDREF"}], "date_of_birth": "1939", "date_of_death": "2004", "preferred_name": "Artioli, Umberto", "country_associated": "it", "authorized_access_point": "Artioli, Umberto, 1939-2004", "biographical_information": ["Théoricien et historien du théâtre"]} 2 -2023-07-08 08:19:23.171366 2023-07-08 08:19:23.171375 567ba390-7f69-4a4b-8547-35ce11fe3d4a {"md5": "0743cc6ea76e83d4ac3cf4de8e1b2072", "pid": "029869587", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/029869587", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029869587", "source": "IDREF"}], "variant_name": ["SEL", "Association SEL (France)", "Alliance évangélique française. Service d'entraide et de liaison"], "preferred_name": "Service d'entraide et de liaison (France)", "country_associated": "fr", "variant_access_point": ["SEL", "Association SEL (France)", "Alliance évangélique française. Service d'entraide et de liaison"], "authorized_access_point": "Service d'entraide et de liaison (France)", "biographical_information": ["Oeuvre humanitaire française travaillant en liaison avec des organismes internationaux mais sans avoir de lien juridique avec eux et dont une partie du Conseil d'administration est nommée par l'Alliance évangélique française", "Siège social : 47 rue de Clichy, 75009 Paris. Bureaux : 9 rue de la Gare, 94230 Cachan. Tél. 46.65.83.03"]} 1 -2023-07-08 08:19:23.279365 2023-07-08 08:19:23.279375 75be771b-537d-41f1-8151-30f336c924e3 {"md5": "df615199718739c4deb97d4e7bb3e8e3", "pid": "029872235", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/029872235", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029872235", "source": "IDREF"}], "date_of_birth": "1948", "preferred_name": "Piper, Ronald Allen", "country_associated": "xx", "authorized_access_point": "Piper, Ronald Allen, 1948-....", "biographical_information": ["Exégète, spécialiste du Nouveau Testament. Enseigne à l'University of St Andrews (en 1995)"]} 1 -2023-07-08 08:19:23.498836 2023-07-08 08:19:23.498847 1be13245-f370-422a-941e-23e65d403883 {"md5": "c91ab3897d5c33923da48ce77c1791fd", "pid": "029986761", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "conservateur des bibliothèques", "identifier": "http://www.idref.fr/029986761", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029986761", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "265606527"}, "date_of_birth": "1949-11-02", "preferred_name": "Martin, Gérard, conservateur des bibliothèques", "country_associated": "fr", "authorized_access_point": "Martin, Gérard, 1949-...., conservateur des bibliothèques", "biographical_information": ["Bibliothécaire. Conservateur de la Bibliothèque municipale de Charleville-Mézières."]} 1 -2023-07-08 08:19:23.596492 2023-07-08 08:19:23.596502 4bccf08c-b4af-468a-b651-3eeb631636ff {"md5": "e29a3d5b66cdbc8bb6a2a8f57473d09b", "pid": "029994861", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": true, "identifier": "http://www.idref.fr/029994861", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029994861", "source": "IDREF"}], "preferred_name": "Symposium Popper", "country_associated": "au", "date_of_termination": "1983-05-26", "date_of_establishment": "1983-05-24", "authorized_access_point": "Symposium Popper (1983 ; Vienne)", "biographical_information": ["Organisé par l'Österreichischer Rundfunk et la ville de Vienne"]} 1 -2023-07-08 08:19:23.73367 2023-07-08 08:19:23.733678 cbf1c180-a3c5-423b-bf58-cb07e35a6818 {"md5": "f9a9123ffd4b357722512ea0b6551c53", "pid": "030045614", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": false, "identifier": "http://www.idref.fr/030045614", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030045614", "source": "IDREF"}], "preferred_name": "Museum für hamburgische Geschichte", "country_associated": "gw", "date_of_establishment": "1839", "authorized_access_point": "Museum für hamburgische Geschichte", "biographical_information": ["Holstenwall, W-2000 Hambourg 36, Allemagne"]} 1 -2023-07-08 08:19:23.849257 2023-07-08 08:19:23.849272 4cdcd038-34e7-493f-b715-acd2bffd8a56 {"md5": "00f8e9472241ae49e923517d4307d63b", "pid": "030086329", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifier": "http://www.idref.fr/030086329", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030086329", "source": "IDREF"}], "preferred_name": "Somerville college (Oxford, GB)", "authorized_access_point": "Somerville college (Oxford, GB)"} 1 -2023-07-08 08:19:23.937543 2023-07-08 08:19:23.937553 b5b71adb-2729-497e-9841-ded7e1800a90 {"md5": "6151da81d3a2eb587f5e7ade018f6453", "pid": "030097886", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "deleted": "2023-05-02T15:49:27.476865+00:00", "language": ["mul"], "conference": false, "identifier": "http://www.idref.fr/030097886", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030097886", "source": "IDREF"}], "variant_name": ["Nations Unies. Conseil économique et social. Comité de l'habitation, de la construction et de la planification", "United nations committee on housing, building and planning"], "preferred_name": "Nations Unies. Comité de l'habitation, de la construction et de la planification", "date_of_termination": "1976", "variant_access_point": ["Nations Unies. Conseil économique et social. Comité de l'habitation, de la construction et de la planification", "United nations committee on housing, building and planning"], "date_of_establishment": "19XX", "authorized_access_point": "Nations Unies. Comité de l'habitation, de la construction et de la planification"} 1 -2023-07-08 08:19:24.048326 2023-07-08 08:19:24.048337 34538664-3190-4b00-880d-831e48cfab35 {"md5": "68ca20b9938cd631e4c0c9cdf601bd44", "pid": "030132711", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/030132711", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030132711", "source": "IDREF"}], "preferred_name": "Oakes, Guy", "country_associated": "xxu", "authorized_access_point": "Oakes, Guy", "biographical_information": ["Professeur de philosophie, Monmouth college, et de sociologie, New school for social research"]} 1 -2023-07-08 08:19:24.168724 2023-07-08 08:19:24.168731 cd2279dd-605c-41b0-8dad-dae9e4fd96c5 {"md5": "b6c310f777056e91d8edd1d3bdf63586", "pid": "03013739X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/03013739X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03013739X", "source": "IDREF"}], "date_of_birth": "1381?", "date_of_death": "1451?", "preferred_name": "Cavalcanti, Giovanni", "country_associated": "xx", "authorized_access_point": "Cavalcanti, Giovanni, 1381?-1451?", "biographical_information": ["Historien florentin"]} 1 -2023-07-08 08:19:24.281051 2023-07-08 08:19:24.281062 6ea2aa9c-c508-46d8-ad35-264aaef4889f {"md5": "d7e13850c67566bff690184052fbfccc", "pid": "030187400", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/030187400", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030187400", "source": "IDREF"}], "variant_name": ["Boyer, Claudette Oriol-", "Boyer, Claudette", "Boyer Oriol, Claudette"], "date_of_birth": "1941-01-31", "date_of_death": "2015-12-22", "preferred_name": "Oriol-Boyer, Claudette", "country_associated": "fr", "variant_access_point": ["Boyer, Claudette Oriol-", "Boyer, Claudette", "Boyer Oriol, Claudette"], "authorized_access_point": "Oriol-Boyer, Claudette, 1941-2015", "biographical_information": ["Maître de conférence à l'Université Stendhal-Grenoble 3 (en 1990)", "Auteur(e) d'une thèse de 3e cycle en études littéraires françaises comparées (Grenoble 3, 1979) et d'une thèse d'État en littérature française (Paris 8, 1989)"]} 1 -2023-07-08 08:19:24.399767 2023-07-08 08:19:24.399773 05002680-7799-4948-8c50-5e367b369242 {"md5": "8afedeba514924b87922efaabc69693a", "pid": "030198011", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/030198011", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030198011", "source": "IDREF"}], "variant_name": ["Laflèche, André Marin"], "preferred_name": "Marin-Laflèche, André", "country_associated": "fr", "variant_access_point": ["Laflèche, André Marin"], "authorized_access_point": "Marin-Laflèche, André", "biographical_information": ["En poste à la Station d'agronomie INRA de Laon-Péronne, Aisne (en 1990)"]} 1 -2023-07-08 08:19:24.818929 2023-07-08 08:19:24.818939 626be363-b193-4b62-891a-6649e5d819c4 {"md5": "5d7637040dbcba7b6afb27d1e6a3b090", "pid": "03025843X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/03025843X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03025843X", "source": "IDREF"}], "preferred_name": "Société d'émulation des Côtes-du-Nord", "country_associated": "fr", "authorized_access_point": "Société d'émulation des Côtes-du-Nord", "biographical_information": ["Centre d'action culturelle, place de la Résistance, 22000 Saint-Brieuc"]} 1 -2023-07-08 08:19:24.926229 2023-07-08 08:19:24.926247 f6b7d0e1-98cf-4a10-b0a6-0d2b40f650f4 {"md5": "4cc9b94814102432bb89a584dd7b9898", "pid": "030281342", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "conference": false, "identifier": "http://www.idref.fr/030281342", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030281342", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "083249745"}, "variant_name": ["UFF"], "preferred_name": "Universidade federal fluminense (Niteroi, Brésil)", "country_associated": "bl", "variant_access_point": ["UFF"], "date_of_establishment": "1960", "authorized_access_point": "Universidade federal fluminense (Niteroi, Brésil)", "biographical_information": ["Université installée à Niteroi, dans l'État de Rio de Janeiro."]} 1 -2023-07-08 08:19:29.624905 2023-07-08 08:19:29.624973 bdc73e84-b3fe-4f3a-a582-2e0e42c8e41d {"md5": "772045d463b26d538ec6d9135cafc05b", "pid": "03180862X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/03180862X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03180862X", "source": "IDREF"}], "preferred_name": "Ouellet, Raymond", "country_associated": "fr", "authorized_access_point": "Ouellet, Raymond", "biographical_information": ["Professeur à l'Université américaine de Paris et chargé de cours à l'École nationale supérieure d'arts et métiers de Paris (en 1992)"]} 1 -2023-07-08 08:19:24.684821 2023-07-08 10:23:39.880984 c109eae6-ce01-463a-a705-cbe9bdbda4b4 {"md5": "8bde86d85c92bf1c76ff2b0f92ba97f3", "pid": "030254515", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/030254515", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030254515", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "085788066"}, "variant_name": ["Richelet, César-Pierre", "Richelet, César Pierre"], "date_of_birth": "1626-11", "date_of_death": "1698-11-23", "preferred_name": "Richelet, Pierre", "country_associated": "fr", "variant_access_point": ["Richelet, César-Pierre", "Richelet, César Pierre"], "authorized_access_point": "Richelet, Pierre, 1626-1698", "biographical_information": ["Lexicographe français"]} 2 -2023-07-08 08:19:24.532644 2023-07-08 10:31:29.081904 863950f2-0b71-4e46-80c2-4f1e115fe88c {"md5": "d60ca91cbb9d30523da0c2cf953c5efb", "pid": "030223415", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/030223415", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030223415", "source": "IDREF"}], "variant_name": ["Legorjus, Philippe Louis Yves"], "date_of_birth": "1951-12-08", "preferred_name": "Legorjus, Philippe", "country_associated": "fr", "variant_access_point": ["Legorjus, Philippe Louis Yves"], "authorized_access_point": "Legorjus, Philippe, 1951-....", "biographical_information": ["Directeur du GIGN de 1985 à 1989. Diplomé de droit, président de sociétés"]} 2 -2023-07-08 08:19:25.135909 2023-07-08 08:19:25.13592 d417b636-a17c-4442-a944-bded2ac97117 {"md5": "942c35da1cb53a0358198b3c44fd03a1", "pid": "030327687", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/030327687", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030327687", "source": "IDREF"}], "preferred_name": "Office national d'information sur les enseignements et les professions (France). Délégation régionale (Montpellier)", "country_associated": "fr", "authorized_access_point": "Office national d'information sur les enseignements et les professions (France). Délégation régionale (Montpellier)", "biographical_information": ["31 rue de l'Université, 34064 Montpellier cedex. Tél. 67.60.55.85"]} 1 -2023-07-08 08:19:25.245068 2023-07-08 08:19:25.245075 6d3fbfa0-f697-41a1-b983-3e443b76170d {"md5": "6d85b88416ca74c8d6dea5dc332f3384", "pid": "030343429", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/030343429", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030343429", "source": "IDREF"}], "preferred_name": "Rhône-Alpes. Direction régionale de l'équipement. Division Actions foncières", "country_associated": "fr", "authorized_access_point": "Rhône-Alpes. Direction régionale de l'équipement. Division Actions foncières"} 1 -2023-07-08 08:19:25.516097 2023-07-08 08:19:25.516109 8199149c-5d52-4b4c-85ac-9ab3d5070e59 {"md5": "8ec9c0042fe3348b5df25c733c92bba2", "pid": "030459249", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/030459249", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030459249", "source": "IDREF"}], "preferred_name": "Etats-Unis. Department of the Army. General staff", "country_associated": "xxu", "authorized_access_point": "Etats-Unis. Department of the Army. General staff"} 1 -2023-07-08 08:19:25.61773 2023-07-08 08:19:25.617738 1d1b0717-d131-48d7-ada6-57ba1336ef81 {"md5": "33f518a6ae42b0b9025b463fcb8f73bf", "pid": "030486882", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/030486882", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030486882", "source": "IDREF"}], "variant_name": ["Mylaporte Selvaraj Krishnamoorthy"], "preferred_name": "Krishnamoorthy, Mylaporte Selvaraj", "country_associated": "ii", "variant_access_point": ["Mylaporte Selvaraj Krishnamoorthy"], "authorized_access_point": "Krishnamoorthy, Mylaporte Selvaraj"} 1 -2023-07-08 08:19:25.739183 2023-07-08 08:19:25.739194 666247cc-9bb3-4c59-8de0-84f4e484bbce {"md5": "dc102bfef5cb6ad7472093f7d597657e", "pid": "030490855", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifier": "http://www.idref.fr/030490855", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030490855", "source": "IDREF"}], "variant_name": ["CCSA"], "preferred_name": "Centro di cultura e storia amalfitana", "country_associated": "it", "variant_access_point": ["CCSA"], "date_of_establishment": "1975-05", "authorized_access_point": "Centro di cultura e storia amalfitana", "biographical_information": ["Adresse : Via Annunziatella, 44, 84011 Amalfi. Contact : 089. 871170. Télécopie : 089. 873143"]} 1 -2023-07-08 08:19:25.999357 2023-07-08 08:19:25.99937 92a30b0f-06c8-4747-be89-5c82072a7185 {"md5": "389374a7b50a92c50e36b3fea0d7b549", "pid": "030557585", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifier": "http://www.idref.fr/030557585", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030557585", "source": "IDREF"}], "preferred_name": "Congrès médico-social protestant", "country_associated": "fr", "date_of_termination": "1973-05", "date_of_establishment": "1973-05", "authorized_access_point": "Congrès médico-social protestant (10 ; 1973 ; Lausanne, Suisse)"} 1 -2023-07-08 08:19:26.129768 2023-07-08 08:19:26.129785 be7c734f-c6be-4fe7-bbae-96c1b14960bc {"md5": "e5d8122a710d864242d7a83098fb58a3", "pid": "030575230", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/030575230", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030575230", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Bosmans, André", "authorized_access_point": "Bosmans, André, 19..-....", "biographical_information": ["Poète"]} 1 -2023-07-08 08:19:26.26686 2023-07-08 08:19:26.266867 4709640e-2b45-4a9f-9f14-4094a69895ed {"md5": "39f8867c16766267edb2a54aefa554e3", "pid": "030633176", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["nor"], "qualifier": "romancier", "identifier": "http://www.idref.fr/030633176", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030633176", "source": "IDREF"}], "date_of_birth": "1945", "preferred_name": "Botn, Ståle, romancier", "country_associated": "no", "authorized_access_point": "Botn, Ståle, 1945-...., romancier", "biographical_information": ["Romancier"]} 1 -2023-07-08 08:19:41.115773 2023-07-08 08:19:41.115786 881f144e-deeb-4f0d-97d1-fb4e0afbae2b {"md5": "d897272f21fdcce45900e926f2393044", "pid": "035467207", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/035467207", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035467207", "source": "IDREF"}], "date_of_birth": "1952-09-24", "preferred_name": "Sullivan, Margaret Wolan", "country_associated": "xxu", "authorized_access_point": "Sullivan, Margaret Wolan, 1952-...."} 1 -2023-07-08 08:19:26.365357 2023-07-08 08:19:26.365366 05efdc26-dc57-43fc-a58e-b927471134fe {"md5": "ca58c84c8bfa233264ac2d7ee888e303", "pid": "030713234", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/030713234", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030713234", "source": "IDREF"}], "variant_name": ["Euronotation France"], "preferred_name": "IBCA notation (France)", "country_associated": "fr", "variant_access_point": ["Euronotation France"], "authorized_access_point": "IBCA notation (France)", "biographical_information": ["Changement de nom en mars 1993", "87 bd Haussmann, 75008 Paris. Tél. 49.24.00.03"]} 1 -2023-07-08 08:19:26.491221 2023-07-08 08:19:26.491228 692d0ac1-654f-4270-ba6b-61f20e0f6013 {"md5": "7b1932c93a63a1a1d568f412727c125d", "pid": "03074198X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["vie"], "conference": false, "identifier": "http://www.idref.fr/03074198X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03074198X", "source": "IDREF"}], "preferred_name": "Viet-Nam (République). Ministry of agriculture and land development", "country_associated": "xx", "date_of_establishment": "1973?", "authorized_access_point": "Viet-Nam (République). Ministry of agriculture and land development"} 1 -2023-07-08 08:19:26.615777 2023-07-08 08:19:26.615789 4e635fc6-6573-47bb-992f-562606e1d49b {"md5": "5591b6680a7081f7aeda566eccf3848a", "pid": "030745551", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/030745551", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030745551", "source": "IDREF"}], "variant_name": ["Centre d'hydrogéologie (Bordeaux). Association des anciens élèves"], "preferred_name": "Association des anciens élèves du Centre d'hydrogeologie (Bordeaux)", "country_associated": "fr", "variant_access_point": ["Centre d'hydrogéologie (Bordeaux). Association des anciens élèves"], "authorized_access_point": "Association des anciens élèves du Centre d'hydrogeologie (Bordeaux)"} 1 -2023-07-08 08:19:26.735704 2023-07-08 08:19:26.73571 513e0209-42b3-47f3-8628-2d334c994fc8 {"md5": "7c43952b3c39f16c382df09f7a559c64", "pid": "030782465", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["swe"], "conference": false, "identifier": "http://www.idref.fr/030782465", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030782465", "source": "IDREF"}], "variant_name": ["Göteborgs universitet. Department of business administration", "Göteborgs universitet. Företagsekonomiska institutionen"], "preferred_name": "Företagsekonomiska institutionen (Göteborg, Suède)", "country_associated": "sw", "variant_access_point": ["Göteborgs universitet. Department of business administration", "Göteborgs universitet. Företagsekonomiska institutionen"], "authorized_access_point": "Företagsekonomiska institutionen (Göteborg, Suède)"} 1 -2023-07-08 08:19:26.844077 2023-07-08 08:19:26.844088 ce6b9029-64e3-48a2-bb96-f7e6708bcc7d {"md5": "0cb51fa7a0f4a47d2946f256b464b476", "pid": "030802997", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/030802997", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030802997", "source": "IDREF"}], "variant_name": ["MEG"], "preferred_name": "Matériels équipements graphiques", "country_associated": "fr", "variant_access_point": ["MEG"], "date_of_establishment": "1967", "authorized_access_point": "Matériels équipements graphiques", "biographical_information": ["ZI Les Malines, 91027 Evry. Tél. 69.89.47.93"]} 1 -2023-07-08 08:19:26.964777 2023-07-08 08:19:26.964789 7a9a69db-b6d4-4e22-92ef-fb16661af1d1 {"md5": "b594bcc80c3698ef443963d974702090", "pid": "030818095", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifier": "http://www.idref.fr/030818095", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030818095", "source": "IDREF"}], "preferred_name": "Salon de mai", "country_associated": "fr", "date_of_termination": "1991-03-10", "date_of_establishment": "1991-02-24", "authorized_access_point": "Salon de mai (46 ; 1991 ; Paris)"} 1 -2023-07-08 08:19:27.070643 2023-07-08 08:19:27.070654 7f991970-bde3-4946-82be-5cf815a35f3b {"md5": "5b5a8525a1f7665a9dcc76aa48e16f35", "pid": "030835828", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/030835828", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030835828", "source": "IDREF"}], "variant_name": ["SFOM", "Société française d'ostéopathie médicale"], "preferred_name": "Société française d'ostéopathie-myothérapie", "country_associated": "fr", "variant_access_point": ["SFOM", "Société française d'ostéopathie médicale"], "date_of_establishment": "1990", "authorized_access_point": "Société française d'ostéopathie-myothérapie"} 1 -2023-07-08 08:19:27.186537 2023-07-08 08:19:27.186547 f3c9a005-65b0-4099-a5da-189ce0784897 {"md5": "ae3b24b6e00d9cbc45b79ad803afd270", "pid": "030851025", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/030851025", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030851025", "source": "IDREF"}], "variant_name": ["Béranger Beaujeu, Claude-Marie", "Beaujeu, Claude-Marie Béranger"], "preferred_name": "Beaujeu, Claude-Marie", "country_associated": "fr", "variant_access_point": ["Béranger Beaujeu, Claude-Marie", "Beaujeu, Claude-Marie Béranger"], "authorized_access_point": "Beaujeu, Claude-Marie"} 1 -2023-07-08 08:19:27.293472 2023-07-08 08:19:27.293481 ebe0d005-d45d-4f32-a671-62250105cb75 {"md5": "1df372702e504ebd160b5a171eda1b6b", "pid": "030875277", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": false, "identifier": "http://www.idref.fr/030875277", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030875277", "source": "IDREF"}], "preferred_name": "Comunicología aplicada de México", "country_associated": "mx", "authorized_access_point": "Comunicología aplicada de México"} 1 -2023-07-08 08:19:28.306326 2023-07-08 08:19:28.30634 ef582a1b-ef9e-40a4-afa6-bbdb1eb795b9 {"md5": "00fbf44197c05e3dedf6f91ead41caaf", "pid": "031226396", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifier": "http://www.idref.fr/031226396", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031226396", "source": "IDREF"}], "variant_name": ["Opificio fiorentino delle pietre dure", "Opificio delle pietre dure e laboratori di restauro"], "preferred_name": "Opificio delle pietre dure (Florence, Italie)", "country_associated": "it", "variant_access_point": ["Opificio fiorentino delle pietre dure", "Opificio delle pietre dure e laboratori di restauro"], "date_of_establishment": "1588-09-03", "authorized_access_point": "Opificio delle pietre dure (Florence, Italie)"} 1 -2023-07-08 08:19:27.392513 2023-07-08 08:19:27.39252 3e228194-eae4-4803-89fd-54e2878bebc7 {"md5": "b1ef6ab0451d7bccf18d43aa32eda075", "pid": "03089719X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/03089719X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03089719X", "source": "IDREF"}], "variant_name": ["Université de Nancy II. Centre d'information et de documentation Le monde grec antique et ses zones de contact"], "preferred_name": "Centre d'information et de documentation Le monde grec antique et ses zones de contact (Nancy)", "country_associated": "fr", "variant_access_point": ["Université de Nancy II. Centre d'information et de documentation Le monde grec antique et ses zones de contact"], "authorized_access_point": "Centre d'information et de documentation Le monde grec antique et ses zones de contact (Nancy)"} 1 -2023-07-08 08:19:27.502482 2023-07-08 08:19:27.502493 67520dcf-546a-4010-9316-0c637e4bdf24 {"md5": "b98737bd86c580b3b260918b4bafc37b", "pid": "030907667", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/030907667", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030907667", "source": "IDREF"}], "preferred_name": "Smoje, Dujka", "country_associated": "xx", "authorized_access_point": "Smoje, Dujka", "biographical_information": ["Traduit de l'allemand en français", "Professeur à la Faculté de musique de l'université de Montréal ( en 1989)"]} 1 -2023-07-08 08:19:27.631164 2023-07-08 08:19:27.631175 be91bbbe-0d42-48fb-b53b-a826d10537ed {"md5": "b8fa31a3a29dd344b713052bfd5b2c18", "pid": "030913632", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/030913632", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030913632", "source": "IDREF"}], "preferred_name": "Association pour la communication et les libertés en Rhône-Alpes", "country_associated": "fr", "authorized_access_point": "Association pour la communication et les libertés en Rhône-Alpes", "biographical_information": ["1 pl. Championnet, 26000 Valence. Tél. 75.55.44.88"]} 1 -2023-07-08 08:19:27.738356 2023-07-08 08:19:27.738367 3ba3887f-2cea-45ea-867b-94884db70344 {"md5": "5bbdba590ef744f00836c395869b2ff4", "pid": "031015808", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifier": "http://www.idref.fr/031015808", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031015808", "source": "IDREF"}], "variant_name": ["Museo di Palazzo di Venezia (Rome, Italie)", "Museo del Palazzo Venezia (Rome, Italie)", "Museo nazionale del Palazzo di Venezia (Rome, Italie)", "Museo nazionale Palazzo Venezia (Rome, Italie)", "National Museum of Palazzo Venezia (Rome, Italie)", "Museo nazionale di Palazzo Venezia (Rome, Italie)"], "preferred_name": "Museo di Palazzo Venezia (Rome, Italie)", "country_associated": "it", "variant_access_point": ["Museo di Palazzo di Venezia (Rome, Italie)", "Museo del Palazzo Venezia (Rome, Italie)", "Museo nazionale del Palazzo di Venezia (Rome, Italie)", "Museo nazionale Palazzo Venezia (Rome, Italie)", "National Museum of Palazzo Venezia (Rome, Italie)", "Museo nazionale di Palazzo Venezia (Rome, Italie)"], "authorized_access_point": "Museo di Palazzo Venezia (Rome, Italie)"} 1 -2023-07-08 08:19:27.845654 2023-07-08 08:19:27.845669 a2dc8d2c-8166-4a79-b740-98f7cb466c29 {"md5": "9276c5405fd85618ef3639ee33c9e665", "pid": "031060102", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": false, "identifier": "http://www.idref.fr/031060102", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031060102", "source": "IDREF"}], "variant_name": ["BGA"], "preferred_name": "Allemagne. Bundesgesundheitsamt", "country_associated": "gw", "variant_access_point": ["BGA"], "date_of_establishment": "1991", "authorized_access_point": "Allemagne. Bundesgesundheitsamt"} 1 -2023-07-08 08:19:27.953109 2023-07-08 08:19:27.953122 abf2eeb7-dda0-4266-9642-759ca2fb7e3f {"md5": "050834ae5ee2443cd077e9e44348cfdb", "pid": "031064442", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/031064442", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031064442", "source": "IDREF"}], "variant_name": ["Meunier, Bernadette Bouchon-", "Bouchon, Bernadette"], "date_of_birth": "1948-10-07", "preferred_name": "Bouchon-Meunier, Bernadette", "country_associated": "fr", "variant_access_point": ["Meunier, Bernadette Bouchon-", "Bouchon, Bernadette"], "authorized_access_point": "Bouchon-Meunier, Bernadette, 1948-....", "biographical_information": ["Ancienne élève de l'ENSET. Docteur ès sciences. Directeur de recherche au CNRS. Présidente d'honneur du Collège de systémique de l'AFCET (en 1992)", "Directrice de thèse à l'Université Pierre et Marie Curie (en 2007)"]} 1 -2023-07-08 08:19:28.071205 2023-07-08 08:19:28.07122 cbdb35c1-4b52-4ff1-8202-af1396aeb910 {"md5": "63859797688feb140f7d87ee26c02252", "pid": "031133231", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/031133231", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031133231", "source": "IDREF"}], "variant_name": ["Eskreich, Pierre", "Vase, Pierre", "Du Vase, Pierre", "Cruche, Pierre", "Krug, Pierre"], "date_of_birth": "1520?", "date_of_death": "159.?", "preferred_name": "Eskrich, Pierre", "country_associated": "fr", "variant_access_point": ["Eskreich, Pierre", "Vase, Pierre", "Du Vase, Pierre", "Cruche, Pierre", "Krug, Pierre"], "authorized_access_point": "Eskrich, Pierre, 1520?-159.?", "biographical_information": ["Peintre, cartographe, dessinateur et brodeur. - Auteur de poèmes. - Mort après 1590. - Né à Paris"]} 1 -2023-07-08 08:19:28.184361 2023-07-08 08:19:28.18437 d6992927-ed65-48ef-a4bd-dd10e9fff67c {"md5": "34c32ff0ea37287a6ffa44f52297a6d0", "pid": "031162568", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/031162568", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031162568", "source": "IDREF"}], "variant_name": ["Archaeological rescue corps (Kent, GB)"], "preferred_name": "Kent archaeological rescue unit", "country_associated": "xxk", "variant_access_point": ["Archaeological rescue corps (Kent, GB)"], "authorized_access_point": "Kent archaeological rescue unit"} 1 -2023-07-08 08:19:29.521142 2023-07-08 08:19:29.521153 c9f1388c-4765-4858-bba0-c570d230959d {"md5": "4eaf553761157155f8c94e7e6768b721", "pid": "03175709X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/03175709X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03175709X", "source": "IDREF"}], "date_of_birth": "1944-04-29", "preferred_name": "Volk, Klaus", "country_associated": "gw", "authorized_access_point": "Volk, Klaus, 1944-....", "biographical_information": ["Juriste. Spécialiste de droit pénal et de la criminologie. Professeur à l'Universität München, RFA (en 1987)"]} 1 -2023-07-08 08:19:28.436613 2023-07-08 08:19:28.436622 ba41896a-bdc3-4f71-a173-9e4916850d9b {"md5": "f73565f7aeb9c90c2087f68251a92f34", "pid": "031344712", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "juriste", "identifier": "http://www.idref.fr/031344712", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031344712", "source": "IDREF"}], "date_of_birth": "1943-08-07", "preferred_name": "Schneider, Bernard, juriste", "country_associated": "sz", "authorized_access_point": "Schneider, Bernard, 1943-...., juriste", "biographical_information": ["Juriste neuchâtelois. Docteur en droit de l'Université de Neuchâtel (1973). Séjours d'études à Cologne, à La Haye et au Canada. Collaborateur scientifique à la faculté de droit de l'Université de Genève. Président du Tribunal de district du Val-de-Travers à Môtiers (1978-1996)"]} 1 -2023-07-08 08:19:28.551206 2023-07-08 08:19:28.551213 b1fb5685-4571-49d1-ba3f-3ea29341d19f {"md5": "b89bfc0c65f96db583a43798009c50c7", "pid": "031382584", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/031382584", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031382584", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "168135663"}, "date_of_birth": "19XX", "preferred_name": "Brunel, Bernard", "country_associated": "fr", "authorized_access_point": "Brunel, Bernard, 19..-...."} 1 -2023-07-08 08:19:28.646473 2023-07-08 08:19:28.646482 248ddea5-c6d3-48e6-ba0d-8ecac7b709ba {"md5": "5abc9c48c3dce86a5b529c698ec01f60", "pid": "031416349", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": false, "identifier": "http://www.idref.fr/031416349", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031416349", "source": "IDREF"}], "preferred_name": "Thomas-Morus-Gesellschaft", "country_associated": "gw", "authorized_access_point": "Thomas-Morus-Gesellschaft", "biographical_information": ["Düsseldorf"]} 1 -2023-07-08 08:19:28.869847 2023-07-08 08:19:28.869856 90da73f9-31ac-42b1-b8ff-1b966f546962 {"md5": "4e3c643f011d0729a6c002e815673bd3", "pid": "031461034", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/031461034", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031461034", "source": "IDREF"}], "preferred_name": "Rath, Ingo W", "country_associated": "gw", "authorized_access_point": "Rath, Ingo W", "biographical_information": ["Docteur en philosophie"]} 1 -2023-07-08 08:19:28.964568 2023-07-08 08:19:28.964577 e6d0216a-f6ba-4b52-aa64-4357b735c146 {"md5": "dc617cc688cbf49ae60282c5bc8e31cf", "pid": "031598285", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/031598285", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031598285", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "085941042"}, "date_of_birth": "1948-05-10", "preferred_name": "Ricketts, Martin J.", "country_associated": "xxk", "authorized_access_point": "Ricketts, Martin J., 1948-....", "biographical_information": ["Economiste"]} 1 -2023-07-08 08:19:29.08222 2023-07-08 08:19:29.082238 664799f2-fdce-428c-ae60-1fdd7cd89b9f {"md5": "6f2480adccda5f77b7d724ccadd169e4", "pid": "031639704", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["lat"], "qualifier": "médecin", "identifier": "http://www.idref.fr/031639704", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031639704", "source": "IDREF"}], "date_of_birth": "15..", "date_of_death": "15..", "preferred_name": "Mantinus, Jacobus, médecin", "country_associated": "it", "authorized_access_point": "Mantinus, Jacobus, 15..-15.., médecin", "biographical_information": ["Médecin", "Traduit de l'hébreu en latin"]} 1 -2023-07-08 08:19:29.184436 2023-07-08 08:19:29.184445 ed4f4348-72f2-4d91-b871-3b7106d0120f {"md5": "e67a9591955b9c6884fa7326d90ec8e9", "pid": "03165746X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/03165746X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03165746X", "source": "IDREF"}], "preferred_name": "Print council of America", "country_associated": "xxu", "authorized_access_point": "Print council of America"} 1 -2023-07-08 08:19:29.285977 2023-07-08 08:19:29.285987 f0b62288-4c64-46d6-adbb-7818948913be {"md5": "43b58873d04dc521d78b5caa9a163b14", "pid": "031718752", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "identifier": "http://www.idref.fr/031718752", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031718752", "source": "IDREF"}], "variant_name": ["Assaré, Patativa do", "Silva, Antonio Gonçalves da", "Gonçalves da Silva, Antonio"], "date_of_birth": "1909-03-05", "date_of_death": "2002-07-08", "preferred_name": "Patativa, do Assaré", "country_associated": "bl", "variant_access_point": ["Assaré, Patativa do", "Silva, Antonio Gonçalves da", "Gonçalves da Silva, Antonio"], "authorized_access_point": "Patativa, do Assaré, 1909-2002", "biographical_information": ["Poète, compositeur et chanteur brésilien. Né Antônio Gonçalves da Silva, plus connu sous le nom Patativa do Assaré"]} 1 -2023-07-08 08:19:29.387814 2023-07-08 08:19:29.387828 58bf840b-43bf-4d94-b5ee-c9f563239439 {"md5": "4ce8c6c01fca0ac7021134bee151e42c", "pid": "03172406X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/03172406X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03172406X", "source": "IDREF"}], "variant_name": ["Brousse, Hélène Homps-", "Homps, Hélène"], "date_of_birth": "19XX", "preferred_name": "Homps-Brousse, Hélène", "country_associated": "fr", "variant_access_point": ["Brousse, Hélène Homps-", "Homps, Hélène"], "authorized_access_point": "Homps-Brousse, Hélène, 19..-....", "biographical_information": ["Conservateur au Musée de la Vallée, Barcelonnette (en 1992)"]} 1 -2023-07-08 08:19:29.859136 2023-07-08 08:19:29.859153 96a2f85a-b45c-4521-b6f5-db9343dc1653 {"md5": "6a35202a26f4e48f956e85ddc495b7c5", "pid": "031859259", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/031859259", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031859259", "source": "IDREF"}], "variant_name": ["Morse, Harold Calvin Marston"], "date_of_birth": "1892-03-24", "date_of_death": "1977-06-22", "preferred_name": "Morse, Marston", "country_associated": "xxu", "variant_access_point": ["Morse, Harold Calvin Marston"], "authorized_access_point": "Morse, Marston, 1892-1977", "biographical_information": ["Mathématicien. A été en poste à l'Institute for advanced study, Princeton NJ, USA (en 1947)"]} 1 -2023-07-08 08:19:29.999907 2023-07-08 08:19:29.999914 efe6cbb1-5397-4f59-97e3-9d5eff051608 {"md5": "3728cf277f0a9a20f962fcc272876e5f", "pid": "031867359", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifier": "http://www.idref.fr/031867359", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031867359", "source": "IDREF"}], "preferred_name": "Prämonstratenserkloster Ursberg", "authorized_access_point": "Prämonstratenserkloster Ursberg", "biographical_information": ["Monastère de Prémontrés fondé en 1125, reconstruit au XVIIe siècle en style baroque, sécularisé en 1802. Les bâtiments abritent aujourd'hui une institution pour enfants handicapés"]} 1 -2023-07-08 08:19:30.115913 2023-07-08 08:19:30.115926 17a7d334-6a84-48fc-8b79-3f330d3cb116 {"md5": "5e0eca27546b9574167545a18b3df199", "pid": "031876633", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/031876633", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031876633", "source": "IDREF"}], "date_of_birth": "1832", "date_of_death": "1917", "preferred_name": "Choate, Joseph Hodges", "country_associated": "xx", "authorized_access_point": "Choate, Joseph Hodges, 1832-1917", "biographical_information": ["Juriste. Spécialiste de droit international. Ambassadeur des Etats-Unis à Londres"]} 1 -2023-07-08 08:19:30.236214 2023-07-08 08:19:30.236225 161eb635-9104-479d-9ca4-3f6914d4c5f8 {"md5": "ce7f7ca30e871ab57e8b82f618bbb0ca", "pid": "031962963", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "interprète", "identifier": "http://www.idref.fr/031962963", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031962963", "source": "IDREF"}], "date_of_birth": "1936", "preferred_name": "Gorboff, Marina, interprète", "country_associated": "fr", "authorized_access_point": "Gorboff, Marina, 1936-...., interprète", "biographical_information": ["Interprète"]} 1 -2023-07-08 08:19:30.397288 2023-07-08 08:19:30.397294 741e1d82-d56b-46a8-9f52-7e8e70dad3eb {"md5": "cf2470f579d4bc9b16bbf9e894391541", "pid": "032004184", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fin"], "identifier": "http://www.idref.fr/032004184", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032004184", "source": "IDREF"}], "date_of_birth": "1953", "preferred_name": "Nykänen, Harri", "country_associated": "fi", "authorized_access_point": "Nykänen, Harri, 1953-....", "biographical_information": ["Auteur de romans policiers"]} 1 -2023-07-08 08:19:30.518871 2023-07-08 08:19:30.518881 490d90f6-221f-41f3-9e9a-69fd1a3dd1f6 {"md5": "b78a3628b4f301127e20324a23c62f12", "pid": "032063830", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/032063830", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032063830", "source": "IDREF"}], "variant_name": ["LSI", "University of Rhode Island. Law of the sea institute", "William S. Richardson school of law (Honolulu, T.H). Law of the sea institute", "University of Hawaii at Manoa. Law of the sea institute", "University of Hawaii at Manoa. William S. Richardson school of law. Law of the sea institute"], "preferred_name": "Law of the sea institute (Honolulu, T.H)", "country_associated": "xxu", "variant_access_point": ["LSI", "University of Rhode Island. Law of the sea institute", "William S. Richardson school of law (Honolulu, T.H). Law of the sea institute", "University of Hawaii at Manoa. Law of the sea institute", "University of Hawaii at Manoa. William S. Richardson school of law. Law of the sea institute"], "authorized_access_point": "Law of the sea institute (Honolulu, T.H)", "biographical_information": ["Dépendait auparavant de l'University of Rhode Island"]} 1 -2023-07-08 08:19:30.629855 2023-07-08 08:19:30.629866 21300af5-ecbb-4142-8c02-e93069133a51 {"md5": "1368f3a34dc82b970183795455ff3dff", "pid": "032075049", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/032075049", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032075049", "source": "IDREF"}], "preferred_name": "Siporex", "country_associated": "fr", "authorized_access_point": "Siporex", "biographical_information": ["Béton cellulaire léger autoclavé", "2 av. du 1er-mai, 91124 Palaiseau Cedex. Tél. 69.20.51.27"]} 1 -2023-07-08 08:19:30.752027 2023-07-08 08:19:30.752037 3c7a2073-d465-426e-8162-deec38e3f981 {"md5": "7d0a6503134af4a3b54a414bb42bbb72", "pid": "032099886", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/032099886", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032099886", "source": "IDREF"}], "preferred_name": "Planche, Robert", "country_associated": "fr", "authorized_access_point": "Planche, Robert", "biographical_information": ["Ingénieur. En poste à l'EDF, Direction du développement et de la stratégie commerciale (en 1992)"]} 1 -2023-07-08 08:19:33.017945 2023-07-08 08:19:33.017957 0a042cf7-882e-4acf-b7d9-a5172e79ecfb {"md5": "0137834fb0eb8a7ab90519c25d3b5f46", "pid": "032807589", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/032807589", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032807589", "source": "IDREF"}], "variant_name": ["University of California, Berkeley. Bancroft library"], "preferred_name": "Bancroft library (Berkeley, Calif)", "country_associated": "xxu", "variant_access_point": ["University of California, Berkeley. Bancroft library"], "authorized_access_point": "Bancroft library (Berkeley, Calif)"} 1 -2023-07-08 08:19:31.113297 2023-07-08 08:19:31.113309 d9161d88-3759-476d-82bb-8b34f26f4cbd {"md5": "e0c285139bcf7136b35e16be626b7307", "pid": "032316704", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": false, "identifier": "http://www.idref.fr/032316704", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032316704", "source": "IDREF"}], "preferred_name": "Gaskiya Corporation (Zaria, Nigeria)", "country_associated": "nr", "date_of_establishment": "1931", "authorized_access_point": "Gaskiya Corporation (Zaria, Nigeria)", "biographical_information": ["Maison d'édition nigériane. Gaskiya signifie en haoussa : Truth"]} 1 -2023-07-08 08:19:31.246576 2023-07-08 08:19:31.24659 bee6555b-77aa-4715-8f90-ddb0c5e3b6c0 {"md5": "b52d98de8dbcf94ab45a3d69bb4e845d", "pid": "032353618", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/032353618", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032353618", "source": "IDREF"}], "variant_name": ["SAF"], "preferred_name": "Society of American foresters", "country_associated": "xxu", "variant_access_point": ["SAF"], "date_of_establishment": "1900", "authorized_access_point": "Society of American foresters", "biographical_information": ["5400 Grosvenor Lane, Bethesda, Md., USA"]} 1 -2023-07-08 08:19:31.366072 2023-07-08 08:19:31.366079 1feea346-a8a0-4253-99e9-4725e5536e44 {"md5": "ec2fa2900cf947b5bd4dc725faca993d", "pid": "032395116", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifier": "http://www.idref.fr/032395116", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032395116", "source": "IDREF"}], "preferred_name": "Association française de science économique. Colloque", "country_associated": "fr", "date_of_termination": "1988", "date_of_establishment": "1988", "authorized_access_point": "Association française de science économique. Colloque (1988)"} 1 -2023-07-08 08:19:31.482349 2023-07-08 08:19:31.48236 cf34bdc5-d82c-4447-984e-2b2a1e032025 {"md5": "4da0af2f235f1f7b11a4862e94969fbb", "pid": "032397402", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/032397402", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032397402", "source": "IDREF"}], "preferred_name": "Feldman, Stanley", "country_associated": "xx", "authorized_access_point": "Feldman, Stanley", "biographical_information": ["Professeur de sciences politiques à l'Université d'état de New York (en 1985)"]} 1 -2023-07-08 08:19:31.727191 2023-07-08 08:19:31.727198 3955d80a-66f2-42eb-82b9-b6544f3cc4ee {"md5": "3bc672bc11fa896c01c390f5fbd49a16", "pid": "032477449", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/032477449", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032477449", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "087583461"}, "date_of_birth": "1934--.-..", "preferred_name": "Stolte, Dieter", "country_associated": "gw", "authorized_access_point": "Stolte, Dieter, 1934-....", "biographical_information": ["Intendant à la ZDF, RFA (en 1989)"]} 1 -2023-07-08 08:19:31.828256 2023-07-08 08:19:31.828269 857763bf-1dce-4f7e-850a-3e22e5485f6a {"md5": "00fa22eaa26855da545173875e5d2ed7", "pid": "032498179", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": false, "identifier": "http://www.idref.fr/032498179", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032498179", "source": "IDREF"}], "variant_name": ["Association Memòri de Castéu-Reinard"], "preferred_name": "Memòri de Castéu-Reinard", "country_associated": "fr", "variant_access_point": ["Association Memòri de Castéu-Reinard"], "date_of_establishment": "1988", "authorized_access_point": "Memòri de Castéu-Reinard", "biographical_information": ["18 rue Antoine-Ginoux, 13160 Châteaurenard"]} 1 -2023-07-08 08:19:33.164416 2023-07-08 08:19:33.164424 4c1fb326-cad2-4127-bfc0-a31b99c57ebb {"md5": "1c3734d5b2fb08e65f571957431a2828", "pid": "032842694", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "urologue", "identifier": "http://www.idref.fr/032842694", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032842694", "source": "IDREF"}], "preferred_name": "Vanwaeyenberg, Jos, urologue", "country_associated": "be", "authorized_access_point": "Vanwaeyenberg, Jos, urologue", "biographical_information": ["Urologue"]} 1 -2023-07-08 08:19:31.613348 2023-07-08 10:28:47.415105 6a874f40-e31f-409a-a35b-568f77468384 {"md5": "1042acb76130e6d727b6a3cbdb1b5a0d", "pid": "032401248", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/032401248", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032401248", "source": "IDREF"}], "date_of_birth": "1929-27-08", "preferred_name": "Schick, Frederic", "country_associated": "xx", "authorized_access_point": "Schick, Frederic, 1929-....", "biographical_information": ["Professeur de philosophie. S'est intéressé à la théorie de l'action et de la décision. En poste au Département de philosophie de la Rutgers university, New Brunswick, New Jersey, USA (en 1983)"]} 2 -2023-07-08 08:19:31.002801 2023-07-08 10:29:13.829935 3d419a53-7540-45e1-9a04-94d8e14847ff {"md5": "68387eae9ab49106fe7763051b27e9da", "pid": "03225413X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/03225413X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03225413X", "source": "IDREF"}], "date_of_birth": "1937-05-15", "preferred_name": "Benzoni, Gino", "country_associated": "it", "authorized_access_point": "Benzoni, Gino, 1937-....", "biographical_information": ["Historien. Professeur d'histoire de l'historiographie à l'Université de Venise (en 2001)"]} 2 -2023-07-08 08:19:31.923915 2023-07-08 08:19:31.923927 0024a3c1-7785-47b7-bc29-f1220c184a98 {"md5": "b4042724e86d892630d685986e261d03", "pid": "03259626X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": true, "identifier": "http://www.idref.fr/03259626X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03259626X", "source": "IDREF"}], "variant_name": ["OPOPAC"], "preferred_name": "Journées internationales sur les problèmes fondamentaux de l'informatique parallèle et distribuée", "date_of_termination": "1993-11-26", "variant_access_point": ["OPOPAC (1993 ; Lacanau, Gironde)"], "date_of_establishment": "1993-11-23", "parallel_access_point": ["International workshop on principles of parallel computing (1993 ; Lacanau, Gironde)"], "authorized_access_point": "Journées internationales sur les problèmes fondamentaux de l'informatique parallèle et distribuée (1993 ; Lacanau, Gironde)"} 1 -2023-07-08 08:19:32.04704 2023-07-08 08:19:32.047052 6e4c9a89-2f3a-4308-9df7-7e2d8a363730 {"md5": "c861ff3ef6f4df03a15043e08bc14c8d", "pid": "032605641", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/032605641", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032605641", "source": "IDREF"}], "variant_name": ["Institut de recherche en agronomie tropicale (France). Programme de recherche CIRAD, IRAT-AGRICONGO", "Institut de recherche pour l'appui au développement agricole en zones tropicales (Congo). Programme de recherche CIRAD, IRAT-AGRICONGO"], "preferred_name": "Programme de recherche CIRAD, IRAT-AGRICONGO", "variant_access_point": ["Institut de recherche en agronomie tropicale (France). Programme de recherche CIRAD, IRAT-AGRICONGO", "Institut de recherche pour l'appui au développement agricole en zones tropicales (Congo). Programme de recherche CIRAD, IRAT-AGRICONGO"], "authorized_access_point": "Programme de recherche CIRAD, IRAT-AGRICONGO"} 1 -2023-07-08 08:19:32.525352 2023-07-08 08:19:32.525359 12202f5f-4cb3-498e-b887-5b544e33ba87 {"md5": "a296b9c104111378ca207634ac202117", "pid": "032679629", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/032679629", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032679629", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Depelchin, Jacques", "country_associated": "xx", "authorized_access_point": "Depelchin, Jacques, 19..-....", "biographical_information": ["Professeur à l'université de Dar-es-Salaam (Tanzanie) (de 1975 à 1979), au Centre des études africaines de l'université Eduardo Mondlane (Mozambique) (de 1980 à 1987), professeur associé à l'université de Californie (en 1993)"]} 1 -2023-07-08 08:19:32.62806 2023-07-08 08:19:32.628569 17a18f0b-4372-45af-9fe4-227193307998 {"md5": "81baa6372e480c4837f6135fac03d822", "pid": "032706391", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/032706391", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032706391", "source": "IDREF"}], "date_of_birth": "1954-12-29", "preferred_name": "Böttcher, Albrecht", "country_associated": "gw", "authorized_access_point": "Böttcher, Albrecht, 1954-....", "biographical_information": ["Écrit aussi en anglais", "Mathématicien. En poste à la Technische Universität Chemnitz, Sektion Mathematik, Wissenschaftsbereich Analysis, Chemnitz, Allemagne (en 1990)"]} 1 -2023-07-08 08:19:32.731283 2023-07-08 08:19:32.731293 8b4baed4-21c5-4c36-ac9c-91ec30d69647 {"md5": "50acf3d0c8131d13cbda0735f7b153f0", "pid": "032722567", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/032722567", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032722567", "source": "IDREF"}], "date_of_birth": "1939-07-02", "preferred_name": "Larchier, Alain", "country_associated": "fr", "authorized_access_point": "Larchier, Alain, 1939-....", "biographical_information": ["Titulaire d'une maîtrise de physique. Romancier"]} 1 -2023-07-08 08:19:38.416239 2023-07-08 08:19:38.416248 3c28729d-6f41-44d6-b5ba-3f56b289954d {"md5": "4ef7a4fdbb090f30f684c06071c59ef0", "pid": "034663525", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/034663525", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034663525", "source": "IDREF"}], "preferred_name": "Dardenne, Henriette", "country_associated": "fr", "authorized_access_point": "Dardenne, Henriette"} 1 -2023-07-08 08:19:32.151222 2023-07-08 10:26:49.055659 26a7c944-5f2f-4e65-9ec5-3dd307b84137 {"md5": "a6f9cc1b329787dbe173cd9a67d54b3d", "pid": "032613237", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "qualifier": "entomologiste", "identifier": "http://www.idref.fr/032613237", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032613237", "source": "IDREF"}], "date_of_birth": "1929-07-06", "preferred_name": "Fischer, Max, entomologiste", "country_associated": "au", "authorized_access_point": "Fischer, Max, 1929-, entomologiste", "biographical_information": ["Écrit aussi en anglais", "Entomologiste"]} 2 -2023-07-08 08:19:32.886514 2023-07-08 10:28:25.588721 a41d88ef-1fda-4124-8eff-aee4c4a758bf {"md5": "ccdbe914ae5d7b17b84a5793fd7c3fac", "pid": "032801009", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/032801009", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032801009", "source": "IDREF"}], "date_of_birth": "1908-11-04", "preferred_name": "Salisbury, Harrison Evans", "country_associated": "xxu", "authorized_access_point": "Salisbury, Harrison Evans, 1908-1993", "biographical_information": ["Historien"]} 2 -2023-07-08 08:19:33.272568 2023-07-08 08:19:33.272583 86e2c99e-f201-445e-8bc9-40e2eb28b252 {"md5": "8da7497cdc2371abc1d2839aa0e78ff8", "pid": "032846908", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/032846908", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032846908", "source": "IDREF"}], "variant_name": ["Garayoa, Jesús María Usunáriz", "Usunáriz, Jesús María"], "date_of_birth": "1964", "preferred_name": "Usunáriz Garayoa, Jesús María", "country_associated": "sp", "variant_access_point": ["Garayoa, Jesús María Usunáriz", "Usunáriz, Jesús María"], "authorized_access_point": "Usunáriz Garayoa, Jesús María, 1964-....", "biographical_information": ["Historien. Professeur d'histoire moderne, Universidad de Navarra, Espagne (en 2022). Membre de la Sociedad de estudios históricos de Navarra (en 1992)"]} 1 -2023-07-08 08:19:33.49782 2023-07-08 08:19:33.497828 1f924e14-f5c3-42f5-9ac4-2951e0c1cdce {"md5": "281cb32cddd61ee7bafd92704cb45f0f", "pid": "033004633", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/033004633", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033004633", "source": "IDREF"}], "variant_name": ["Leifur Grimson, William Eric"], "preferred_name": "Grimson, William Eric Leifur", "country_associated": "xx", "variant_access_point": ["Leifur Grimson, William Eric"], "authorized_access_point": "Grimson, William Eric Leifur", "biographical_information": ["Spécialiste de l'intelligence artificielle. Professeur au Department of electrical engineering, Massachusetts institute of technology, Cambridge, Massachusetts, USA (en 1990)"]} 1 -2023-07-08 08:19:33.702474 2023-07-08 08:19:33.702488 39c65e9c-a4d9-4173-8350-cd8f1895861a {"md5": "c69e16624e4b7150f5ebae63fc874c43", "pid": "033070245", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifier": "http://www.idref.fr/033070245", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033070245", "source": "IDREF"}], "preferred_name": "Assemblée plénière de l'Episcopat français", "country_associated": "fr", "date_of_termination": "1993-11-08", "date_of_establishment": "1993-11-04", "authorized_access_point": "Assemblée plénière de l'Episcopat français (1993 ; Lourdes, Hautes-Pyrénées)"} 1 -2023-07-08 08:19:33.815086 2023-07-08 08:19:33.815092 24154353-f50e-4fee-ad65-205834dd2ad6 {"md5": "f4d5fecd7d71b39db74cfd49114695c2", "pid": "033079595", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifier": "http://www.idref.fr/033079595", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033079595", "source": "IDREF"}], "preferred_name": "Credito bergamasco", "country_associated": "it", "date_of_establishment": "1891", "authorized_access_point": "Credito bergamasco"} 1 -2023-07-08 08:19:34.157778 2023-07-08 08:19:34.157787 f87e7f8b-8d92-476c-8000-0a901458993e {"md5": "113cc9bde2972cbfb3a2963a8ccabb6e", "pid": "033239568", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/033239568", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033239568", "source": "IDREF"}], "preferred_name": "Streif, Karl", "country_associated": "gw", "authorized_access_point": "Streif, Karl"} 1 -2023-07-08 08:19:34.274911 2023-07-08 08:19:34.274921 11c3cc62-c9d8-4136-bd36-9b51c9a59d25 {"md5": "97efb1250d7307aef4ee2734a35bd107", "pid": "033386242", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/033386242", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033386242", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "193120321"}, "variant_name": ["Schick, Friederike"], "date_of_birth": "1960-08-02", "preferred_name": "Schick, Friedrike", "country_associated": "gw", "variant_access_point": ["Schick, Friederike"], "authorized_access_point": "Schick, Friedrike, 1960-....", "biographical_information": ["Philosophe. Professeure de philosophie, Philosophisches Seminar, Eberhard-Karls-Universität, Tübingen, Allemagne, depuis 2007 (en 2021)"]} 1 -2023-07-08 08:19:34.042704 2023-07-08 10:28:45.587392 4bb871f2-3713-48cc-875e-bf87df1771e2 {"md5": "4e6181b7b46954773e3957212a79c781", "pid": "03321994X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/03321994X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03321994X", "source": "IDREF"}], "date_of_birth": "1931", "preferred_name": "Aiken, Lewis R.", "country_associated": "xxu", "authorized_access_point": "Aiken, Lewis R., 1931-....", "biographical_information": ["Psychologue. En poste à Pepperdine university, Malibu, Californie, USA (en 1993)"]} 2 -2023-07-08 08:19:33.59836 2023-07-08 10:29:18.043872 307d4fe3-4353-47da-b3a8-b58d0a50acdf {"md5": "de69430753cb46bd8ed3de2e6d696212", "pid": "033033269", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/033033269", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033033269", "source": "IDREF"}], "date_of_birth": "1951-05-13", "preferred_name": "Mavituna, Ferda", "country_associated": "xxk", "authorized_access_point": "Mavituna, Ferda, 1951-....", "biographical_information": ["Ingénieur en biochimie"]} 2 -2023-07-08 08:19:33.388039 2023-07-08 10:31:41.150457 9cd8032f-92bb-4efd-9f35-163ecb6a794e {"md5": "0678e8e99c33830a82a4f298626fa1fb", "pid": "032975856", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dan", "nor", "eng"], "identifier": "http://www.idref.fr/032975856", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032975856", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "119246236"}, "date_of_birth": "1941", "preferred_name": "Alver, Bente Gullveig", "country_associated": "dk", "authorized_access_point": "Alver, Bente Gullveig, 1941-....", "biographical_information": ["Professeur de folkloristique à l'Université de Bergen en Norvège (en 1990)", "Ecrit aussi en anglais", "Ethnologue"]} 2 -2023-07-08 08:19:34.386878 2023-07-08 08:19:34.386889 92807bf1-d009-4650-9427-42d03cec85e2 {"md5": "006b4659cc2804e20c3f60c2e0ed4a5b", "pid": "033392757", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/033392757", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033392757", "source": "IDREF"}], "variant_name": ["Linguistique africaine (Vitry-sur-Seine, Val-de-Marne)"], "preferred_name": "Association Linguistique africaine (Vitry-sur-Seine, Val-de-Marne)", "country_associated": "fr", "variant_access_point": ["Linguistique africaine (Vitry-sur-Seine, Val-de-Marne)"], "authorized_access_point": "Association Linguistique africaine (Vitry-sur-Seine, Val-de-Marne)", "biographical_information": ["1 rue Arthur-Rimbaud, 94400 Vitry-sur-Seine"]} 1 -2023-07-08 08:19:34.489215 2023-07-08 08:19:34.489228 800e3cac-4c4a-4d25-bf98-b82b5979be35 {"md5": "b747b2134b14586e605889fb8b7f65f2", "pid": "033454175", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/033454175", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033454175", "source": "IDREF"}], "date_of_birth": "1960-08-08", "preferred_name": "Amrani, Abdelouahab", "country_associated": "ae", "authorized_access_point": "Amrani, Abdelouahab, 1960-....", "biographical_information": ["Titulaire d'un doctorat d'université en électronique (Toulouse 3, 1988)"]} 1 -2023-07-08 08:19:34.716862 2023-07-08 08:19:34.716873 8fbdccc9-e4d8-49b0-8992-20d387cff3ea {"md5": "241409d878020b9964e701c796a86183", "pid": "033596344", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/033596344", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033596344", "source": "IDREF"}], "date_of_birth": "1960-10-31", "preferred_name": "Chapalain, Georges", "country_associated": "fr", "authorized_access_point": "Chapalain, Georges, 1960-....", "biographical_information": ["Chercheur en mécanique"]} 1 -2023-07-08 08:19:34.834583 2023-07-08 08:19:34.834595 e07bcc70-7e99-4304-bc33-bb3f2db15ac7 {"md5": "4f8ae6d843e9ff4855e73fc43d9f0915", "pid": "033614717", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/033614717", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033614717", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "057120641"}, "variant_name": ["CPNT", "Chasse, pêche, nature et tradition (France)", "Chasse, pêche, nature et traditions (France)", "Chasse, pêche, nature, tradition (France)", "Chasse, pêche, traditions (France)", "Mouvement Chasse, pêche, nature, traditions (France)", "Mouvement Chasse, pêche, traditions (France)"], "preferred_name": "Chasse, pêche, nature et traditions (France)", "country_associated": "fr", "variant_access_point": ["CPNT", "Chasse, pêche, nature et tradition (France)", "Chasse, pêche, nature et traditions (France)", "Chasse, pêche, nature, tradition (France)", "Chasse, pêche, traditions (France)", "Mouvement Chasse, pêche, nature, traditions (France)", "Mouvement Chasse, pêche, traditions (France)"], "date_of_establishment": "1989", "authorized_access_point": "Chasse, pêche, nature et traditions (France)", "biographical_information": ["Mouvement politique né à l'issue des manifestations de chasseurs (1989) contre la directive européenne sur la conservation des oiseaux sauvages (n° 79-409) ; créé par André Goustat, président du Syndicat national des chasseurs, entré ainsi dans l'action politique nationale : d'abord constitué localement en vue des élections européennes de 1989 (Liste Chasse-pêche-traditions), le mouvement s'est ensuite organisé au niveau national, devenant CPNT", "Centre d'affaires Praxis, 245 bd de la Paix, 64000 Pau. Avant juil. 2000 : 60 bd Voltaire, 75011 Paris"]} 1 -2023-07-08 08:19:34.948159 2023-07-08 08:19:34.94817 b9ec94e8-9bfd-4887-8c3a-4b7ea189617e {"md5": "bd01ee195b2c65875002d3a53ce9fc99", "pid": "033846987", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": true, "identifier": "http://www.idref.fr/033846987", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033846987", "source": "IDREF"}], "preferred_name": "Colloque international Acquisition d'une langue étrangère", "date_of_termination": "1993-05", "date_of_establishment": "1993-05", "authorized_access_point": "Colloque international Acquisition d'une langue étrangère (09 ; 1993 ; Saint-Etienne)", "biographical_information": ["Organisé par le Centre international de langue et de civilisation de l'Université Jean Monnet, Saint-Etienne"]} 1 -2023-07-08 08:19:41.003614 2023-07-08 08:19:41.003625 20421d45-8e16-4ed5-9379-5c6404772e0a {"md5": "82256b622a5558fd6bc165f930eed394", "pid": "035466278", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "identifier": "http://www.idref.fr/035466278", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035466278", "source": "IDREF"}], "preferred_name": "Houtman, Irene", "country_associated": "xx", "authorized_access_point": "Houtman, Irene", "biographical_information": ["En poste à NIA TNO (en 1998)"]} 1 -2023-07-08 08:19:34.612726 2023-07-08 10:29:12.442851 e3d7e8f1-d227-4457-b014-be953d85e2ed {"md5": "13dcecc2bd1f789119a84b98d9833e0a", "pid": "033478686", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/033478686", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033478686", "source": "IDREF"}], "date_of_birth": "1929", "preferred_name": "Hollander, John", "country_associated": "xxu", "authorized_access_point": "Hollander, John, 1929-2013", "biographical_information": ["Spécialiste de Robert Frost, poète américain"]} 2 -2023-07-08 08:19:35.486128 2023-07-08 08:19:35.486142 33ea2031-9fbd-45d0-92d5-bf1d567ee0f4 {"md5": "c6e08ecf87d27fbdb9a1c37431740075", "pid": "033900795", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/033900795", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033900795", "source": "IDREF"}], "preferred_name": "Milne, Herbert John Mansfield", "country_associated": "xxk", "authorized_access_point": "Milne, Herbert John Mansfield", "biographical_information": ["Conservateur-assistant, Department of manuscripts, British museum (en 1934)"]} 1 -2023-07-08 08:19:35.617622 2023-07-08 08:19:35.617632 1d15782e-c413-4aaa-88c5-f323f100ccdc {"md5": "743349155963a6a95ecfdf0c29d09bc3", "pid": "03391737X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/03391737X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03391737X", "source": "IDREF"}], "variant_name": ["CIRILLIS", "Université de Poitiers. Centre interuniversitaire de recherches sur l'Italie (langue, littérature, interactions culturelles, société et mentalités)", "Université de Toulouse-Le Mirail. Centre interuniversitaire de recherches sur l'Italie (langue, littérature, interactions culturelles, société et mentalités)", "Université Michel de Montaigne-Bordeaux III. Centre interuniversitaire de recherches sur l'Italie (langue, littérature, interactions culturelles, société et mentalités)"], "preferred_name": "Centre interuniversitaire de recherches sur l'Italie (langue, littérature, interactions culturelles, société et mentalités) (Talence, Gironde)", "country_associated": "fr", "variant_access_point": ["CIRILLIS", "Université de Poitiers. Centre interuniversitaire de recherches sur l'Italie (langue, littérature, interactions culturelles, société et mentalités)", "Université de Toulouse-Le Mirail. Centre interuniversitaire de recherches sur l'Italie (langue, littérature, interactions culturelles, société et mentalités)", "Université Michel de Montaigne-Bordeaux III. Centre interuniversitaire de recherches sur l'Italie (langue, littérature, interactions culturelles, société et mentalités)"], "authorized_access_point": "Centre interuniversitaire de recherches sur l'Italie (langue, littérature, interactions culturelles, société et mentalités) (Talence, Gironde)"} 1 -2023-07-08 08:19:35.900407 2023-07-08 08:19:35.900419 0901b5b2-f84e-446d-95be-4d3810b76ade {"md5": "08bd57502655b44bb30186af4609c644", "pid": "033931941", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/033931941", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033931941", "source": "IDREF"}], "preferred_name": "Theureau, Louis", "country_associated": "fr", "authorized_access_point": "Theureau, Louis", "biographical_information": ["Avocat et publiciste, membre de l'Académie impériale des sciences, arts et belles lettres de Caen"]} 1 -2023-07-08 08:19:36.03017 2023-07-08 08:19:36.030181 33b7743d-3037-4882-8883-6ea34997ff01 {"md5": "8b0336fcc35fd0a541ad2763638e23d9", "pid": "033938989", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/033938989", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033938989", "source": "IDREF"}], "date_of_birth": "1959-12-31", "preferred_name": "Plasa, Carl", "country_associated": "xxk", "authorized_access_point": "Plasa, Carl, 1959-....", "biographical_information": ["Professeur d'anglais, School of English, University of Wales College of Cardiff, GB (en 1994)"]} 1 -2023-07-08 08:19:36.151064 2023-07-08 08:19:36.151075 83222325-5eec-4e1f-89db-fe41c5e4f0c5 {"md5": "a89a2f28f256ebd41d2a106fe0337f07", "pid": "033976171", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/033976171", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033976171", "source": "IDREF"}], "variant_name": ["JF omnisports (Cholet, Maine-et-Loire)"], "preferred_name": "Jeune France omnisports (Cholet, Maine-et-Loire)", "country_associated": "fr", "variant_access_point": ["JF omnisports (Cholet, Maine-et-Loire)"], "authorized_access_point": "Jeune France omnisports (Cholet, Maine-et-Loire)", "biographical_information": ["47 rue Alphonse-Darmaillacq, 49300 Cholet. Tél. 41.62.28.80"]} 1 -2023-07-08 08:19:36.262602 2023-07-08 08:19:36.262613 45650f84-1fb8-4cf4-82db-3cfd1bd21328 {"md5": "673c95e87181a42a0eace18f996a18d3", "pid": "034035370", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["pro"], "conference": false, "identifier": "http://www.idref.fr/034035370", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034035370", "source": "IDREF"}], "variant_name": ["Compagnie très gaie des sept troubadours de Toulouse", "Consistoire du gay savoir (Toulouse)"], "preferred_name": "Sobregaya companhia dels VII trobadors de Tolosa", "country_associated": "fr", "variant_access_point": ["Compagnie très gaie des sept troubadours de Toulouse", "Consistoire du gay savoir (Toulouse)"], "date_of_establishment": "1323", "authorized_access_point": "Sobregaya companhia dels VII trobadors de Tolosa", "biographical_information": ["Académie de poésie de langue d'oc"]} 1 -2023-07-08 08:19:36.429764 2023-07-08 08:19:36.429774 57d6ffd2-85d8-43eb-a64f-15012dd579e3 {"md5": "c426cff7d9be3a1629b4f6a38d9c1c4f", "pid": "034035818", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/034035818", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034035818", "source": "IDREF"}], "preferred_name": "Stendhal-Club", "country_associated": "fr", "date_of_establishment": "1904?", "authorized_access_point": "Stendhal-Club", "biographical_information": ["Association consacrée à l'étude et à la diffusion de l'oeuvre de Stendhal"]} 1 -2023-07-08 08:19:35.766111 2023-07-08 10:29:34.47428 50c14072-af47-4b3a-8ce7-33d82cf00483 {"md5": "5c12bf0cf2dbd401c5659b3d510d3017", "pid": "033922055", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/033922055", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033922055", "source": "IDREF"}], "preferred_name": "Vimond, Jack", "country_associated": "fr", "authorized_access_point": "Vimond, Jack", "biographical_information": ["Attaché au Service des statistiques industrielles (en 1995)"]} 2 -2023-07-08 08:19:36.571947 2023-07-08 08:19:36.571958 906db075-50bb-453a-a320-b6d4db093988 {"md5": "901b0a8d7bf743481480d4c9be915340", "pid": "034075763", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/034075763", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034075763", "source": "IDREF"}], "preferred_name": "Association des membres de la Légion d'Honneur décorés au péril de leur vie (France)", "country_associated": "fr", "authorized_access_point": "Association des membres de la Légion d'Honneur décorés au péril de leur vie (France)", "biographical_information": ["32 av. de l'Opéra, 75002 Paris (1977)"]} 1 -2023-07-08 08:19:36.698152 2023-07-08 08:19:36.698163 2f9c0508-639e-4f60-8ee4-897c88f8cf46 {"md5": "6f0ddd2d1858ce80e90e759202f18b06", "pid": "034085289", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/034085289", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034085289", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "085867284"}, "preferred_name": "Servant, M.", "country_associated": "fr", "authorized_access_point": "Servant, M."} 1 -2023-07-08 08:19:36.827705 2023-07-08 08:19:36.827718 5a43efc1-fdb3-4abd-926b-291748842d58 {"md5": "e5e7b5e0011f8135afd420e85781f24b", "pid": "034112774", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/034112774", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034112774", "source": "IDREF"}], "preferred_name": "Association libre (Paris)", "country_associated": "fr", "authorized_access_point": "Association libre (Paris)", "biographical_information": ["Assoc. L. de 1901", "13 allée Anne de Beaujeu, 75019 Paris. Tél. 42.08.40.89"]} 1 -2023-07-08 08:19:36.952794 2023-07-08 08:19:36.9528 ac8da3d0-bed8-4009-8fb2-290eea75989b {"md5": "39f0e8e9773ab688847663381f2053da", "pid": "034263802", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/034263802", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034263802", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "027526976"}, "variant_name": ["FLNC", "Ex-FLNC"], "preferred_name": "Front de libération nationale de la Corse", "country_associated": "fr", "variant_access_point": ["FLNC", "Ex-FLNC"], "date_of_establishment": "1976-05-05", "authorized_access_point": "Front de libération nationale de la Corse", "biographical_information": ["Mouvement nationaliste corse issu le 5 mai 1976 du Front paysan de libération de la Corse (1975) et de l'Action pour la renaissance de la Corse (1967). Dissout par le gouvernement de Pierre Mauroy en janvier 1983, il devient alors clandestin sous le nom de Ex-FLNC et se dote d'une \\"vitrine poltique\\" en 1987 : A cuncolta naziunalista. Fin 89-début 90, le mouvement éclate en trois : Accolta naziunale corsa et sa branche armée Resistanza, le Mouvement pour l'autodetermination et sa branche armée FLNC Canal habituel et enfin perdure A cuncolta naziunalista avec le FLNC Canal historique comme branche armée"]} 1 -2023-07-08 08:19:37.05668 2023-07-08 08:19:37.056692 bec8c488-2de2-4d1b-a393-d7467cceb1e8 {"md5": "28b2827ebf0e32aded06f2108d5a15aa", "pid": "034287728", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/034287728", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034287728", "source": "IDREF"}], "variant_name": ["NSSAR", "SAR", "Sons of the American revolution", "Society of the sons of American revolution"], "preferred_name": "National society of the sons of American revolution", "country_associated": "xxu", "variant_access_point": ["NSSAR", "SAR", "Sons of the American revolution", "Society of the sons of American revolution"], "date_of_establishment": "1889", "authorized_access_point": "National society of the sons of American revolution", "biographical_information": ["Association regroupant des descendants de combattants de la guerre d'Indépendance des Etats-Unis (1775-1783)"]} 1 -2023-07-08 08:19:37.178155 2023-07-08 08:19:37.178166 ededc4a9-3b2a-4304-8f31-189314d8690c {"md5": "4c710763eec7776cd173fe90a53677ca", "pid": "034310770", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/034310770", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034310770", "source": "IDREF"}], "preferred_name": "Cariplo foundation for scientific research", "country_associated": "xx", "date_of_establishment": "1991", "authorized_access_point": "Cariplo foundation for scientific research", "biographical_information": ["Cette fondation se préocupe des problèmes de qualité de vie induits par le développement économique, social et technologique"]} 1 -2023-07-08 08:19:37.289837 2023-07-08 08:19:37.289849 b59ee00d-656a-4939-bcad-37c8c399c2b9 {"md5": "772548e122fa5b563ab8475b5b305152", "pid": "034314873", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["tur"], "conference": false, "identifier": "http://www.idref.fr/034314873", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034314873", "source": "IDREF"}], "variant_name": ["Ankara üniversitesi. İlâhihât fakültesi. Türk ve i̇slâm sanatlari tarihi enstitüsü", "Ankara üniversitesi. Türk ve i̇slâm sanatlari tarihi enstitüsü"], "preferred_name": "Türk ve i̇slâm sanatlari tarihi enstitüsü (Ankara)", "country_associated": "tu", "variant_access_point": ["Ankara üniversitesi. İlâhihât fakültesi. Türk ve i̇slâm sanatlari tarihi enstitüsü", "Ankara üniversitesi. Türk ve i̇slâm sanatlari tarihi enstitüsü"], "authorized_access_point": "Türk ve i̇slâm sanatlari tarihi enstitüsü (Ankara)"} 1 -2023-07-08 08:19:37.41129 2023-07-08 08:19:37.411301 a687cb2a-8e0a-447c-baae-cec63fe7ea9b {"md5": "274df1c2a2d243d9acd5dfb6c1c47354", "pid": "03433999X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/03433999X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03433999X", "source": "IDREF"}], "variant_name": ["ENSOCAT"], "preferred_name": "Ecole nationale des sous-officiers du Commissariat de l'armée de terre (Auch)", "country_associated": "fr", "variant_access_point": ["ENSOCAT"], "authorized_access_point": "Ecole nationale des sous-officiers du Commissariat de l'armée de terre (Auch)", "biographical_information": ["Quartier Espagne, BP 402, 32008 Auch cedex. Tél. 62.63.08.22"]} 1 -2023-07-08 08:19:49.013684 2023-07-08 08:19:49.013697 41fbffe6-283d-4e2b-b0b2-920ea1d36517 {"md5": "44d3b47a1369784ccb7c69e01d6c884c", "pid": "057564876", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "conference": false, "identifier": "http://www.idref.fr/057564876", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/057564876", "source": "IDREF"}], "preferred_name": "Cap entreprise", "country_associated": "xx", "authorized_access_point": "Cap entreprise"} 1 -2023-07-08 08:19:37.517562 2023-07-08 08:19:37.51757 bb7d441b-33cf-41ef-97c2-31c9c510ac82 {"md5": "4c23ecdbe9a57512e042de0a8a33755d", "pid": "034343237", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/034343237", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034343237", "source": "IDREF"}], "variant_name": ["Massachusetts institute of technology. Union of concerned scientists"], "preferred_name": "Union of concerned scientists (Cambridge, Mass)", "country_associated": "xxu", "variant_access_point": ["Massachusetts institute of technology. Union of concerned scientists"], "authorized_access_point": "Union of concerned scientists (Cambridge, Mass)"} 1 -2023-07-08 08:19:37.616624 2023-07-08 08:19:37.616636 4179f17d-2d2b-4806-9a72-ddcc331ab14c {"md5": "495d75c3923670d1907f3c073490b890", "pid": "034358218", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": false, "identifier": "http://www.idref.fr/034358218", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034358218", "source": "IDREF"}], "variant_name": ["WTCA"], "preferred_name": "World trade centers association", "variant_access_point": ["WTCA"], "date_of_establishment": "1968", "authorized_access_point": "World trade centers association", "biographical_information": ["One World trade center, Suite 7701 New York, N.Y. 10048"]} 1 -2023-07-08 08:19:37.85956 2023-07-08 08:19:37.859575 a369774f-4b5f-4aed-a4f6-6ee0cce16850 {"md5": "144ec92c6095bc4ad36e8ac1b43ffd39", "pid": "034511474", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut", "eng"], "identifier": "http://www.idref.fr/034511474", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034511474", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "086006452"}, "variant_name": ["Schrijverr, Emile George Lodewijk", "Schrijverr, E. G. L."], "date_of_birth": "1962", "preferred_name": "Schrijver, Emile G. L.", "country_associated": "ne", "variant_access_point": ["Schrijverr, Emile George Lodewijk", "Schrijverr, E. G. L."], "authorized_access_point": "Schrijver, Emile G. L., 1962-....", "biographical_information": ["Traduit de l'hébreu en anglais.", "Spécialiste des manuscrits et des imprimés hébreux. - Directeur, Menasseh ben Israel Institute for Jewish social and cultural studies, Amsterdam (1996-2004). - Conservateur, Bibliotheca Rosenthaliana, University of Amsterdam (en 2011)."]} 1 -2023-07-08 08:19:37.960058 2023-07-08 08:19:37.960066 f7f5037f-693f-4316-99a1-dc82aec5b715 {"md5": "0ec454bf8c9c2c3f2fd7e1d6f0b1b624", "pid": "034517928", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/034517928", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034517928", "source": "IDREF"}], "variant_name": ["Association des amis du vieux Chamalières", "Société des amis de Chamalières"], "preferred_name": "Société des amis du vieux Chamalières", "country_associated": "fr", "variant_access_point": ["Association des amis du vieux Chamalières", "Société des amis de Chamalières"], "date_of_establishment": "1977-02-08", "authorized_access_point": "Société des amis du vieux Chamalières", "biographical_information": ["Changement de dénomination le 15 décembre 1995", "Mairie, 63400 Chamalières"]} 1 -2023-07-08 08:19:38.078162 2023-07-08 08:19:38.078177 21f42ec3-a80f-4b62-b1e3-180b91ff4362 {"md5": "f90b11cbcaf8a957bfcb8f0ae2fe2401", "pid": "034537015", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": false, "identifier": "http://www.idref.fr/034537015", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034537015", "source": "IDREF"}], "variant_name": ["Finlande. Miljöministeriet"], "preferred_name": "Finlande. Ympäristöministeriö", "country_associated": "fi", "variant_access_point": ["Finlande. Miljöministeriet"], "authorized_access_point": "Finlande. Ympäristöministeriö"} 1 -2023-07-08 08:19:38.183287 2023-07-08 08:19:38.183295 1cba11e6-cdc8-4e5c-afa9-46aefb6f8d0c {"md5": "118a6c3267b0d61b79c9aae59927e6d1", "pid": "034561528", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/034561528", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034561528", "source": "IDREF"}], "variant_name": ["SEAE-CFDT", "Confédération française démocratique du travail. Fédération des personnels de la Défense nationale. Syndicat des établissements et arsenaux de l'état, des états-majors du Var et de la région maritime", "Confédération française démocratique du travail. Syndicat des établissements et arsenaux de l'état, des états-majors du Var et de la région maritime"], "preferred_name": "Syndicat des établissements et arsenaux de l'état, des états-majors du Var et de la région maritime-CFDT", "country_associated": "fr", "variant_access_point": ["SEAE-CFDT", "Confédération française démocratique du travail. Fédération des personnels de la Défense nationale. Syndicat des établissements et arsenaux de l'état, des états-majors du Var et de la région maritime", "Confédération française démocratique du travail. Syndicat des établissements et arsenaux de l'état, des états-majors du Var et de la région maritime"], "authorized_access_point": "Syndicat des établissements et arsenaux de l'état, des états-majors du Var et de la région maritime-CFDT"} 1 -2023-07-08 08:19:38.301411 2023-07-08 08:19:38.301421 343bd04b-65b7-4cd3-9444-364fc2ecc569 {"md5": "52bde35a9facfca8726c22d74854301b", "pid": "034612998", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/034612998", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034612998", "source": "IDREF"}], "preferred_name": "Cherry, Steven", "country_associated": "xxk", "authorized_access_point": "Cherry, Steven", "biographical_information": ["Historien en économie et en sciences sociales. En poste : University of East Anglia, Norwich, GB (en 1996)"]} 1 -2023-07-08 08:19:38.537386 2023-07-08 08:19:38.537399 d6762ddf-20a7-4ec5-891d-c63f1f937181 {"md5": "82b58b0773b106badd40d4cd56eb19b0", "pid": "034692711", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/034692711", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034692711", "source": "IDREF"}], "variant_name": ["Institut français (Taipei). Service économique et commercial"], "preferred_name": "Institut français (Taipei). Poste d'expansion économique", "country_associated": "fr", "variant_access_point": ["Institut français (Taipei). Service économique et commercial"], "authorized_access_point": "Institut français (Taipei). Poste d'expansion économique", "biographical_information": ["Suite 1401, 14/F Bank Tower, N° 205 Tunhwa North Road, PO Box 87-781, Taipei-Taiwan. Mél : taipei@dree.org"]} 1 -2023-07-08 08:19:38.647581 2023-07-08 08:19:38.647591 a87f83de-86f3-40fc-89ef-3794995756c2 {"md5": "988d8277a6de096a99212466cccb677e", "pid": "034696601", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/034696601", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034696601", "source": "IDREF"}], "preferred_name": "Syndicat central des vétérinaires-inspecteurs de boucherie (France)", "country_associated": "fr", "authorized_access_point": "Syndicat central des vétérinaires-inspecteurs de boucherie (France)"} 1 -2023-07-08 08:19:38.878062 2023-07-08 08:19:38.878074 dd74c72f-c710-49ca-a37a-70680b8fe038 {"md5": "0ea1ad5853569cdaeda2c9d34dd1f4f4", "pid": "034710647", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/034710647", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034710647", "source": "IDREF"}], "variant_name": ["Centre hospitalier spécialisé (Cadillac, Gironde)", "CHS (Cadillac, Gironde)", "Hôpital psychiatrique autonome de Cadillac (Gironde)", "HPAC", "Hôpital Sainte-Marguerite (Cadillac, Gironde)", "Asile d'aliénés (Cadillac, Gironde)", "Asile public autonome d'aliénés (Cadillac, Gironde)", "Asile public d'aliénés (Cadillac, Gironde)", "Asile public (Cadillac, Gironde)", "Hospice de la Charité (Cadillac, Gironde)", "Hôpital de la Charité (Cadillac, Gironde)"], "preferred_name": "Hôpital psychiatrique départemental (Cadillac, Gironde)", "country_associated": "fr", "variant_access_point": ["Centre hospitalier spécialisé (Cadillac, Gironde)", "CHS (Cadillac, Gironde)", "Hôpital psychiatrique autonome de Cadillac (Gironde)", "HPAC", "Hôpital Sainte-Marguerite (Cadillac, Gironde)", "Asile d'aliénés (Cadillac, Gironde)", "Asile public autonome d'aliénés (Cadillac, Gironde)", "Asile public d'aliénés (Cadillac, Gironde)", "Asile public (Cadillac, Gironde)", "Hospice de la Charité (Cadillac, Gironde)", "Hôpital de la Charité (Cadillac, Gironde)"], "date_of_establishment": "1617", "authorized_access_point": "Hôpital psychiatrique départemental (Cadillac, Gironde)", "biographical_information": ["Fondé en remplacement de l'Hôpital Saint-Léonard qui datait vraisemblablement du XIe s., il est aussi appelé Hôpital Sainte-Marguerite. - Créé en 1617 par Jean-Louis de Nogaret pour soigner les pélerins malades sur le chemin de Saint-Jacques, l'hôpital, géré par les Frères de la Charité se spécialise très tôt dans les maladies mentales. - Géré par les Frères de la Charité de Saint-Jean-de-Dieu jusqu'à la Révolution, puis par les Soeurs de la Sagesse à partir de 1808. - Devenu Asile des aliénés en 1838, puis Hôpital psychiatrique autonome au XXe s. puis Hôpital psychiatrique départemental en 1970"]} 1 -2023-07-08 08:19:39.135393 2023-07-08 08:19:39.135405 6819eb00-73fe-4542-aba7-7dec43610223 {"md5": "d3813b9e8dab46ed0bfa63c35c7821ee", "pid": "034830936", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fin", "eng"], "identifier": "http://www.idref.fr/034830936", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034830936", "source": "IDREF"}], "date_of_birth": "1952", "preferred_name": "Syreeni, Kari", "country_associated": "fi", "authorized_access_point": "Syreeni, Kari, 1952-...."} 1 -2023-07-08 08:19:39.25596 2023-07-08 08:19:39.25597 6489547d-d3ee-4674-9977-0fa1927b05a5 {"md5": "85f0512c0d186970a0600a8641ae49b2", "pid": "034833064", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/034833064", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034833064", "source": "IDREF"}], "preferred_name": "Companhia Jaufré Rudel (Toulouse)", "country_associated": "fr", "authorized_access_point": "Companhia Jaufré Rudel (Toulouse)"} 1 -2023-07-08 08:19:39.364721 2023-07-08 08:19:39.364732 06218b88-28dd-4ca6-81f8-3e4d76235f9b {"md5": "46b5f67021f0e011424e55fdc0e7600d", "pid": "034886060", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut"], "conference": false, "identifier": "http://www.idref.fr/034886060", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034886060", "source": "IDREF"}], "variant_name": ["Erasmus universiteit (Rotterdam, Pays-Bas). Juridisch instituut"], "preferred_name": "Juridisch instituut (Rotterdam, Pays-Bas)", "country_associated": "ne", "variant_access_point": ["Erasmus universiteit (Rotterdam, Pays-Bas). Juridisch instituut"], "authorized_access_point": "Juridisch instituut (Rotterdam, Pays-Bas)"} 1 -2023-07-08 08:19:39.465776 2023-07-08 08:19:39.465781 2734deab-6212-4df0-9a51-4219baa4fb7b {"md5": "1768b750c8bc14cb906352508822ce4b", "pid": "034922903", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": false, "identifier": "http://www.idref.fr/034922903", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034922903", "source": "IDREF"}], "variant_name": ["DAH", "DHA", "United nations. Department of humanitarian affairs"], "preferred_name": "Nations Unies. Département des affaires humanitaires", "country_associated": "xx", "variant_access_point": ["DAH", "DHA", "United nations. Department of humanitarian affairs"], "date_of_establishment": "1992", "authorized_access_point": "Nations Unies. Département des affaires humanitaires", "biographical_information": ["Succède au Bureau de coordonnateur des Nations Unies pour les secours en cas de catastrophe", "Palais des Nations, CH-1211 Genève 10"]} 1 -2023-07-08 08:19:38.773459 2023-07-08 10:29:21.225839 2dd65fcc-902f-4551-922e-8f89e342641f {"md5": "8434c87548ebf0f94bf5b5e0f7470bce", "pid": "034702105", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/034702105", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034702105", "source": "IDREF"}], "date_of_birth": "1954", "preferred_name": "Corcos, Daniel M", "country_associated": "xxu", "authorized_access_point": "Corcos, Daniel M, 1954-....", "biographical_information": ["En poste : University of Illinois at Chicago, USA (en 1993)"]} 2 -2023-07-08 08:19:39.69211 2023-07-08 08:19:39.692122 9517caaf-48d9-4344-9268-aaeaede0c8d9 {"md5": "1601bc1110cfeb310718600ab3a3bca4", "pid": "034938656", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/034938656", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034938656", "source": "IDREF"}], "date_of_birth": "1946-02-15", "preferred_name": "Gänzl, Kurt", "country_associated": "at", "authorized_access_point": "Gänzl, Kurt, 1946-....", "biographical_information": ["Pseudonyme de Brian Roy Gallas. Auteur d'ouvrages sur le théâtre musical. A été chanteur, New Zealand Opera company et ensuite agent et directeur artistique dans le domaine de la comédie musicale"]} 1 -2023-07-08 08:19:39.796078 2023-07-08 08:19:39.796084 082f673d-8ffa-4840-9e25-39735cb3ccc0 {"md5": "d8eff83097546fd50511090b055a241e", "pid": "034953809", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/034953809", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034953809", "source": "IDREF"}], "preferred_name": "Garden society (New York)", "country_associated": "xxu", "authorized_access_point": "Garden society (New York)"} 1 -2023-07-08 08:19:39.921717 2023-07-08 08:19:39.921724 5110d019-e099-4ebc-af37-d01f5fdcbfeb {"md5": "48f2a7d0f664c2020ca22ff3b6bb1193", "pid": "035009039", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/035009039", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035009039", "source": "IDREF"}], "preferred_name": "Ecole nationale de médecine et de pharmacie (Caen)", "country_associated": "fr", "date_of_termination": "1968-10-01", "authorized_access_point": "Ecole nationale de médecine et de pharmacie (Caen)"} 1 -2023-07-08 08:19:40.038062 2023-07-08 08:19:40.038083 4576d301-a6d8-4102-898a-ad346474088c {"md5": "6fa85ed0cd59c5632e5d1e79ba7b587f", "pid": "035068825", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/035068825", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035068825", "source": "IDREF"}], "preferred_name": "Bresson (Isère)", "country_associated": "fr", "authorized_access_point": "Bresson (Isère)", "biographical_information": ["38057 Bresson"]} 1 -2023-07-08 08:19:40.166239 2023-07-08 08:19:40.166252 1073573e-b5e8-497c-b3ed-cb490d398ffb {"md5": "8c03fdf5131d90f1302501973a6758ac", "pid": "035124199", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/035124199", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035124199", "source": "IDREF"}], "date_of_birth": "1955-09-07", "preferred_name": "Cooper, Alice Holmes", "country_associated": "xxu", "authorized_access_point": "Cooper, Alice Holmes, 1955-....", "biographical_information": ["Politologue. En poste à l'Université du Mississippi (en 1996)"]} 1 -2023-07-08 08:19:40.283793 2023-07-08 08:19:40.283799 cbbdcd23-4847-40a6-97ec-c4c31c4cf1c4 {"md5": "b50e6eed3124e129a45408181f24a60a", "pid": "035137045", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["tur"], "identifier": "http://www.idref.fr/035137045", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035137045", "source": "IDREF"}], "preferred_name": "Karaer, İbrahim", "country_associated": "tu", "authorized_access_point": "Karaer, İbrahim"} 1 -2023-07-08 08:19:40.381325 2023-07-08 08:19:40.381334 a822d3c1-bbc3-40b5-ab11-470304ea930e {"md5": "d7e77af70d255accb2ef717b43ffb546", "pid": "035170867", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/035170867", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035170867", "source": "IDREF"}], "date_of_birth": "1937-06-16", "preferred_name": "Lamberti, Franco", "country_associated": "it", "authorized_access_point": "Lamberti, Franco, 1937-....", "biographical_information": ["Ecrit aussi en anglais", "Agronome. Spécialiste en phytopathologie. Directeur de : Istituto di nematologia agraria, Bari, Italie (en 1986)"]} 1 -2023-07-08 08:19:40.493844 2023-07-08 08:19:40.49385 b4fa21e8-b7ea-434d-9c64-9c220ebd2c66 {"md5": "1718101bfccc2ca3f384ac9eff14be91", "pid": "035347988", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/035347988", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035347988", "source": "IDREF"}], "preferred_name": "Syndicat intercommunal à vocation multiple du Pays de Longuyon", "country_associated": "fr", "date_of_establishment": "1997", "authorized_access_point": "Syndicat intercommunal à vocation multiple du Pays de Longuyon", "biographical_information": ["Regroupe 22 communes des cantons de Longuyon, Rupt-sur-Othain et Damvillers", "4 route de Sorbey, 54260 Longuyon. Tél. 03.82.26.45.18"]} 1 -2023-07-08 08:19:40.617409 2023-07-08 08:19:40.617419 6336caa8-85df-44d4-9598-5ac6d77a2eb7 {"md5": "a5fbe92cfb2d1e81ac28a8ff6f81da61", "pid": "035348879", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/035348879", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035348879", "source": "IDREF"}], "preferred_name": "Fragnet, Michel", "country_associated": "fr", "authorized_access_point": "Fragnet, Michel", "biographical_information": ["En poste au SETRA.Centre des techniques d'ouvrages d'art.Cellule Équipement des ponts (en 1994, en 1996, en 1997)"]} 1 -2023-07-08 08:19:40.736955 2023-07-08 08:19:40.736967 f45808ee-e6c3-47db-8994-dd096b290df8 {"md5": "b2d9694ab87b3c2169d1e5fc70ea117c", "pid": "035370572", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/035370572", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035370572", "source": "IDREF"}], "date_of_birth": "1764-01-06", "date_of_death": "1843-06-11", "preferred_name": "Donzelot, François-Xavier", "country_associated": "fr", "authorized_access_point": "Donzelot, François-Xavier, 1764-1843", "biographical_information": ["Général français"]} 1 -2023-07-08 08:19:40.866518 2023-07-08 08:19:40.866528 0ad1e744-7a42-46b5-8537-984125e53637 {"md5": "9340db05b4415f0660a6b54759c00dea", "pid": "035451793", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/035451793", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035451793", "source": "IDREF"}], "preferred_name": "Centre départemental de la météorologie (Essonne)", "country_associated": "fr", "authorized_access_point": "Centre départemental de la météorologie (Essonne)", "biographical_information": ["CEV Aérodrome, 91228 Brétigny-sur-Orge cedex. Tél. 01.60.84.91.00"]} 1 -2023-07-08 08:19:41.234411 2023-07-08 08:19:41.234422 e55effcb-ae48-46f0-ab4a-0daad9356804 {"md5": "ac8f962d6c184fa3d5f744ce72436a3e", "pid": "035550767", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/035550767", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035550767", "source": "IDREF"}], "date_of_birth": "1962", "preferred_name": "Fineman, Daniel", "country_associated": "xxu", "authorized_access_point": "Fineman, Daniel, 1962-....", "biographical_information": ["Titulaire d'un doctorat d'histoire, Yale university, New Haven, Conn. Analyste financier, Jardine Fleming Thanakom securities, Bangkok (en 1997)"]} 1 -2023-07-08 08:19:41.349488 2023-07-08 08:19:41.349496 c713baee-abc0-4387-bae2-268595582804 {"md5": "b3244b89bc06a67ab0c5ae57b05671e9", "pid": "035552913", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/035552913", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035552913", "source": "IDREF"}], "preferred_name": "Hernández, Antonio", "country_associated": "sp", "authorized_access_point": "Hernández, Antonio"} 1 -2023-07-08 08:19:41.45416 2023-07-08 08:19:41.454169 7cd5d4a2-5c6f-496a-af4b-9f2b754388a2 {"md5": "df98254d5aa30e16648162f91d6c63cf", "pid": "035560754", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/035560754", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035560754", "source": "IDREF"}], "variant_name": ["INRETS-ESTAS"], "preferred_name": "Institut national de recherche sur les transports et leur sécurité (France). Unité de recherche Evaluation des systèmes de transports automatisés et de leur sécurité", "country_associated": "fr", "variant_access_point": ["INRETS-ESTAS"], "authorized_access_point": "Institut national de recherche sur les transports et leur sécurité (France). Unité de recherche Evaluation des systèmes de transports automatisés et de leur sécurité", "biographical_information": ["20 rue Elisée-Reclus, 59650 Villeneuve-d'Ascq. Tél. 03.20.43.83.43. Fax 03.20.43.83.59"]} 1 -2023-07-08 08:19:41.571617 2023-07-08 08:19:41.571628 8e2e5b60-69c8-4e48-9636-55a12d1a820e {"md5": "541f7f76257ef727ead6e3fa3eda4456", "pid": "035599634", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/035599634", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035599634", "source": "IDREF"}], "date_of_birth": "1954-06-17", "preferred_name": "Gadiollet, Jean-Yves", "country_associated": "fr", "authorized_access_point": "Gadiollet, Jean-Yves, 1954-....", "biographical_information": ["Docteur en médecine (Paris XII, Créteil : 1983)"]} 1 -2023-07-08 08:19:41.687385 2023-07-08 08:19:41.687395 92e1daca-b209-45ab-853a-f41a3b9c1ebd {"md5": "5c97016a3aff23f9c0107142feef059c", "pid": "035617179", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/035617179", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035617179", "source": "IDREF"}], "date_of_birth": "1965-02-17", "preferred_name": "Polley, Martin", "country_associated": "xxk", "authorized_access_point": "Polley, Martin, 1965-....", "biographical_information": ["En poste : King Alfred's College, Winchester (en 2000)"]} 1 -2023-07-08 08:19:41.786785 2023-07-08 08:19:41.786797 e17c570e-36c5-4387-b850-1fd1dbbda764 {"md5": "e7263a6cbe627676f25d7a1c3fba32e4", "pid": "035695161", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/035695161", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035695161", "source": "IDREF"}], "variant_name": ["Eyoum, Isabelle Defives-", "Defives, Isabelle Eyoum-"], "date_of_birth": "1945-05-23", "preferred_name": "Defives-Eyoum, Isabelle", "country_associated": "fr", "variant_access_point": ["Eyoum, Isabelle Defives-", "Defives, Isabelle Eyoum-"], "authorized_access_point": "Defives-Eyoum, Isabelle, 1945-...."} 1 -2023-07-08 08:19:41.916014 2023-07-08 08:19:41.916026 4b980e03-2da2-48ff-84e2-b628b8ba2c81 {"md5": "43913fc7ab204cc7aecf91c5621e1186", "pid": "050162373", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["hun"], "conference": false, "identifier": "http://www.idref.fr/050162373", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050162373", "source": "IDREF"}], "preferred_name": "Eötvös Loránd tudományegyetem (Budapest). Román filológiai tanszék", "country_associated": "hu", "authorized_access_point": "Eötvös Loránd tudományegyetem (Budapest). Román filológiai tanszék"} 1 -2023-07-08 08:19:42.054693 2023-07-08 08:19:42.054704 bb0c9e85-4cf1-4723-b3ec-0f27c9880915 {"md5": "39f9954cef9b586bc1050f98d2cc016b", "pid": "050191101", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/050191101", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050191101", "source": "IDREF"}], "preferred_name": "Lhuillier, Stéphanie", "country_associated": "fr", "authorized_access_point": "Lhuillier, Stéphanie", "biographical_information": ["Diplômé de l'ESSEC. Haut fonctionnaire dans une administration économique nationale (en 1998)"]} 1 -2023-07-08 08:19:42.302543 2023-07-08 08:19:42.302554 693e6edb-c85c-4447-b4cf-4ef09ef83c83 {"md5": "f37e0d05ca8aeeb88a4c6e0e28fecdfd", "pid": "05021425X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "conference": false, "identifier": "http://www.idref.fr/05021425X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/05021425X", "source": "IDREF"}], "variant_name": ["Doshitsu kō-gakkai (Japon)"], "preferred_name": "Japanese geotechnical society", "country_associated": "ja", "variant_access_point": ["Doshitsu kō-gakkai (Japon)"], "parallel_access_point": ["Jiban kō-gakkai"], "authorized_access_point": "Japanese geotechnical society"} 1 -2023-07-08 08:20:06.46551 2023-07-08 08:20:06.465515 d648b591-c889-4f1f-a004-9bd7f881cbed {"md5": "1d2e3f5d5a7c5ccd7d40f8348c4e4679", "pid": "076709116", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/076709116", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/076709116", "source": "IDREF"}], "preferred_name": "Ziv, Meira", "country_associated": "is", "authorized_access_point": "Ziv, Meira"} 1 -2023-07-08 08:19:42.517551 2023-07-08 08:19:42.517561 751e39a2-70b3-4c14-8e07-62a7b8a14a96 {"md5": "f01da33cd9dbdf1cb2f18f667e8f130c", "pid": "050262645", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": true, "identifier": "http://www.idref.fr/050262645", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050262645", "source": "IDREF"}], "variant_name": ["International conference on the Dead Sea scrolls"], "preferred_name": "Provo international conference on the Dead Sea scrolls", "date_of_termination": "1996-07-17", "variant_access_point": ["International conference on the Dead Sea scrolls (1996 ; Provo, Utah)"], "date_of_establishment": "1996-07-15", "authorized_access_point": "Provo international conference on the Dead Sea scrolls (1996)"} 1 -2023-07-08 08:19:42.640439 2023-07-08 08:19:42.640444 6d72a1df-9419-48ee-b31c-035c6b7c8039 {"md5": "e6e08719659fec6e6761443383b26d08", "pid": "050270982", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/050270982", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050270982", "source": "IDREF"}], "variant_name": ["Lorraine. Comité régional pour l'information et la communication (Centre d'information et de communication)"], "preferred_name": "Centre d'information et de communication (Lorraine)", "country_associated": "fr", "variant_access_point": ["Lorraine. Comité régional pour l'information et la communication (Centre d'information et de communication)"], "authorized_access_point": "Centre d'information et de communication (Lorraine)", "biographical_information": ["4 rue du Chanoine-Collin, BP 4061, 5704 Metz cedex 1. Tél. 03.87.76.21.71"]} 1 -2023-07-08 08:19:42.750996 2023-07-08 08:19:42.751003 1b2b787e-c72a-4d4e-8241-bbce46911af3 {"md5": "9c7cc8622976237b212626de9fbb35e9", "pid": "050313800", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/050313800", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050313800", "source": "IDREF"}], "variant_name": ["SMHV"], "preferred_name": "Société mycologique des Hautes-Vosges", "country_associated": "fr", "variant_access_point": ["SMHV"], "authorized_access_point": "Société mycologique des Hautes-Vosges", "biographical_information": ["26 route du Repas, 88520 Wisembach. Tél. 03.29.57.39.13"]} 1 -2023-07-08 08:19:42.862616 2023-07-08 08:19:42.862624 365ff6f4-3d83-4097-be85-61c1a04b1617 {"md5": "8dc2f1e0873d2689694d1f119a850b4a", "pid": "050321692", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/050321692", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050321692", "source": "IDREF"}], "variant_name": ["Observatoire de l'ANPE (France)"], "preferred_name": "Agence nationale pour l'emploi (France). Observatoire", "country_associated": "fr", "variant_access_point": ["Observatoire de l'ANPE (France)"], "authorized_access_point": "Agence nationale pour l'emploi (France). Observatoire", "biographical_information": ["4 rue Galilée, 93198 Noisy-le-Grand cedex"]} 1 -2023-07-08 08:19:42.98151 2023-07-08 08:19:42.98152 8abfd09d-d462-40bf-9efb-84a41a08c6b5 {"md5": "700a535506da960e12158014756d4bbc", "pid": "050323474", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/050323474", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050323474", "source": "IDREF"}], "preferred_name": "Blau, Tatjana", "country_associated": "gw", "authorized_access_point": "Blau, Tatjana"} 1 -2023-07-08 08:19:43.113009 2023-07-08 08:19:43.113021 66df5c55-b76c-42d6-951f-3155e42c407e {"md5": "95b6d08f933c5316b48c36b9e1d96b1f", "pid": "050329332", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/050329332", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050329332", "source": "IDREF"}], "date_of_birth": "1947", "preferred_name": "Johnstone, Christopher Lyle", "country_associated": "xxu", "authorized_access_point": "Johnstone, Christopher Lyle, 1947-....", "biographical_information": ["Professeur de rhétorique, Pennsylvania state university, Philadelphie (en 1996)"]} 1 -2023-07-08 08:19:43.402082 2023-07-08 08:19:43.402097 363a3e30-bed6-496d-972c-8a52e33bff9d {"md5": "055503a272f5cbe24290abe2ecdf946d", "pid": "050593587", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/050593587", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050593587", "source": "IDREF"}], "variant_name": ["Balmis y Berenguer, Francisco Xavier de", "Balmis, Franz Xaver", "Balmis, Francesco Saverio", "Berenguer, Francisco Xavier de Balmis y"], "date_of_birth": "1753", "date_of_death": "1819", "preferred_name": "Balmis, Francisco Xavier de", "country_associated": "sp", "variant_access_point": ["Balmis y Berenguer, Francisco Xavier de", "Balmis, Franz Xaver", "Balmis, Francesco Saverio", "Berenguer, Francisco Xavier de Balmis y"], "authorized_access_point": "Balmis, Francisco Xavier de, 1753-1819", "biographical_information": ["Médecin. Célèbre pour avoir dirigé une compagne de vaccination contre la variole (entre 1803 et 1810), connue sous le nom de \\"Expedición de Balmis\\" ou \\"Real Expedición Filantrópica de la Vacuna\\" dans les colonies espagnoles, en particulier en Amérique du Sud et aux Philippines"]} 1 -2023-07-08 08:19:43.222284 2023-07-08 10:31:34.657566 75c3e94c-bd73-4cd3-a24c-7be7ff1d4426 {"md5": "a16acfc36d16afe8306bb6ff15e69885", "pid": "050348736", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/050348736", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050348736", "source": "IDREF"}], "date_of_birth": "1947", "preferred_name": "Munslow, Alun", "country_associated": "xxk", "authorized_access_point": "Munslow, Alun, 1947-...."} 2 -2023-07-08 08:19:43.529575 2023-07-08 08:19:43.529599 b58c38e1-579f-4bce-9f37-a724d00ef400 {"md5": "3edd3ca6cff1c9a1982e82377a309d35", "pid": "05066302X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/05066302X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/05066302X", "source": "IDREF"}], "date_of_birth": "1978?", "preferred_name": "Tali, Farid", "country_associated": "mr", "authorized_access_point": "Tali, Farid, 1978?-....", "biographical_information": ["Étudiant marocain"]} 1 -2023-07-08 08:19:43.638969 2023-07-08 08:19:43.638981 4e81b07b-1581-45f7-bf72-7a84055a38e2 {"md5": "488ff489ad07b0efd6c7997ff1b9d266", "pid": "050667947", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "qualifier": "écrivain", "identifier": "http://www.idref.fr/050667947", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050667947", "source": "IDREF"}], "variant_name": ["LeBlanc, Thomas", "Blanc, Thomas Le"], "date_of_birth": "1951", "preferred_name": "Le Blanc, Thomas, écrivain", "country_associated": "gw", "variant_access_point": ["LeBlanc, Thomas", "Blanc, Thomas Le"], "authorized_access_point": "Le Blanc, Thomas, 1951-...., écrivain", "biographical_information": ["Écrivain"]} 1 -2023-07-08 08:19:43.885473 2023-07-08 08:19:43.885482 bbede9cf-6d20-49cd-9b67-c1f6ab380bee {"md5": "d58b3497106258bfb5fb7f54c2ea2f9d", "pid": "050723634", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/050723634", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050723634", "source": "IDREF"}], "variant_name": ["Morrison, Margie"], "date_of_birth": "1954-05-19", "date_of_death": "2021-01-09", "preferred_name": "Morrison, Margaret C.", "country_associated": "xxc", "variant_access_point": ["Morrison, Margie"], "authorized_access_point": "Morrison, Margaret C., 1954-2021", "biographical_information": ["Philosophe des sciences canadienne"]} 1 -2023-07-08 08:19:44.003063 2023-07-08 08:19:44.003074 fa754ea3-6232-44e9-874f-18b1430f57b3 {"md5": "46ad5f123f6f2bc17fb376d8db40b3ff", "pid": "050785745", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/050785745", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050785745", "source": "IDREF"}], "variant_name": ["Bappenheim, Italo Testa"], "preferred_name": "Testa Bappenheim, Italo", "country_associated": "xx", "variant_access_point": ["Bappenheim, Italo Testa"], "authorized_access_point": "Testa Bappenheim, Italo"} 1 -2023-07-08 08:19:44.116592 2023-07-08 08:19:44.116603 7caa49d0-f237-49a5-a2f1-885a28c1d112 {"md5": "708868789b03052be75aba7fe1afe5c5", "pid": "050798928", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/050798928", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050798928", "source": "IDREF"}], "variant_name": ["CLEF"], "preferred_name": "Club littéraire d'expression française (Marseille)", "country_associated": "fr", "variant_access_point": ["CLEF"], "authorized_access_point": "Club littéraire d'expression française (Marseille)", "biographical_information": ["BP 32, 13191 Marseille cedex"]} 1 -2023-07-08 08:19:44.371026 2023-07-08 08:19:44.371037 9e7ad483-2df8-4322-900e-71de1bf1e106 {"md5": "325dcfa2bff531ba3e7d2eda605dac96", "pid": "052206327", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/052206327", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/052206327", "source": "IDREF"}], "preferred_name": "Isabella Stewart Gardner Museum (Boston, Mass.)", "country_associated": "xxu", "authorized_access_point": "Isabella Stewart Gardner Museum (Boston, Mass.)"} 1 -2023-07-08 08:19:44.471703 2023-07-08 08:19:44.471708 5a71116f-2720-4a4a-8b95-b76ae4430f9d {"md5": "888ec2a191abac8e37d13b5e3ae6590a", "pid": "052460819", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/052460819", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/052460819", "source": "IDREF"}], "variant_name": ["Pavón, Francisco García"], "date_of_birth": "1919-09-04", "date_of_death": "1989-03-18", "preferred_name": "García Pavón, Francisco", "country_associated": "sp", "variant_access_point": ["Pavón, Francisco García"], "authorized_access_point": "García Pavón, Francisco, 1919-1989", "biographical_information": ["Ecrivain espagnol"]} 1 -2023-07-08 08:19:44.569099 2023-07-08 08:19:44.571005 969338c6-412e-45c2-91e4-e7777378fbe7 {"md5": "ad630d8dfb3555f1793b9aa8ce760e3f", "pid": "052470911", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/052470911", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/052470911", "source": "IDREF"}], "preferred_name": "Morozzi, Cristina", "country_associated": "it", "authorized_access_point": "Morozzi, Cristina", "biographical_information": ["Journaliste, spécialiste de design. Diplômée de philosophie, a étudié l'architecture. Éditrice et directrice de la revue semestrielle DE, Driade edizioni (en 1996)"]} 1 -2023-07-08 08:19:44.232693 2023-07-08 10:30:35.156252 894bdc57-9773-42e9-93fc-51ed393e35f1 {"md5": "3cbf75a30c4b835f5e7b3abbd0b1eac3", "pid": "050822551", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/050822551", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050822551", "source": "IDREF"}], "variant_name": ["Zamora, Juan Guerrero"], "date_of_birth": "1927", "date_of_death": "2002", "preferred_name": "Guerrero Zamora, Juan", "country_associated": "sp", "variant_access_point": ["Zamora, Juan Guerrero"], "authorized_access_point": "Guerrero Zamora, Juan, 1927-2002", "biographical_information": ["Licencié en philosophie et lettres"]} 2 -2023-07-08 08:19:44.831853 2023-07-08 08:19:44.831864 a1329135-0282-4ec8-b1b3-833f49335524 {"md5": "e49ebc8399663c23ff6e23fcd3f33cb9", "pid": "052556220", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/052556220", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/052556220", "source": "IDREF"}], "variant_name": ["OESC", "Haras nationaux (France). Observatoire économique et social du cheval"], "preferred_name": "Observatoire économique et social du cheval (France)", "country_associated": "fr", "variant_access_point": ["OESC", "Haras nationaux (France). Observatoire économique et social du cheval"], "date_of_establishment": "1998-01", "authorized_access_point": "Observatoire économique et social du cheval (France)", "biographical_information": ["Haras national du Lion-d'Angers, Domaine de l'Isle-Briand, 49220 Lion-d'Angers. Tél. 02.41.18.22.28. Fax 02.41.22.78. Mél : obseco@haras-nationaux.fr"]} 1 -2023-07-08 08:19:44.956511 2023-07-08 08:19:44.956522 1122c271-91cc-4622-a989-906c88dd5b1f {"md5": "5dd955d31aee4ab028eda3cfcc4f41fd", "pid": "052737284", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": true, "identifier": "http://www.idref.fr/052737284", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/052737284", "source": "IDREF"}], "preferred_name": "Groupe de recherche et d'études nord-américaines (Aix-en-Provence, Bouches-du-Rhône). Colloque", "date_of_termination": "1997-03-23", "date_of_establishment": "1997-03-21", "authorized_access_point": "Groupe de recherche et d'études nord-américaines (Aix-en-Provence, Bouches-du-Rhône). Colloque (17 ; 1996)"} 1 -2023-07-08 08:19:45.211447 2023-07-08 08:19:45.211458 5c0b7c55-a0c1-48ae-b6b5-8646dba00457 {"md5": "43cd95818f59714ffe69d3223a092315", "pid": "053500679", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/053500679", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/053500679", "source": "IDREF"}], "date_of_birth": "1950", "preferred_name": "Manoury, Mathilde", "country_associated": "fr", "authorized_access_point": "Manoury, Mathilde, 1950-....", "biographical_information": ["Professeur en lettres modernes, nouvelliste"]} 1 -2023-07-08 08:19:45.596246 2023-07-08 08:19:45.596257 0a13f8b7-45ed-4506-83c0-884e74c70cae {"md5": "a76ec32677e2ed85eac341e6e60e8565", "pid": "055386806", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/055386806", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/055386806", "source": "IDREF"}], "variant_name": ["AMP"], "preferred_name": "Association for molecular pathology", "country_associated": "xxu", "variant_access_point": ["AMP"], "authorized_access_point": "Association for molecular pathology"} 1 -2023-07-08 08:19:45.716987 2023-07-08 08:19:45.717 37eb8994-0229-4ce0-9aad-58cd469bac02 {"md5": "eb1d1766d4144ae99c8f17829d437aff", "pid": "056579780", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/056579780", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/056579780", "source": "IDREF"}], "date_of_birth": "1971", "preferred_name": "Rogue, Christophe", "country_associated": "fr", "authorized_access_point": "Rogue, Christophe, 1971-....", "biographical_information": ["Ancien élève de l'École normale supérieure. Agrégé de philosophie (en 2001)"]} 1 -2023-07-08 08:19:47.310521 2023-07-08 08:19:47.310551 f61a6c76-da21-4428-85c3-6f6e4f9ea212 {"md5": "1283cd1233739aa61039b5578e990d29", "pid": "056955669", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/056955669", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/056955669", "source": "IDREF"}], "date_of_birth": "1963-10-31", "preferred_name": "Deguilloux, Laurence", "country_associated": "fr", "authorized_access_point": "Deguilloux, Laurence, 1963-....", "biographical_information": ["Enseignante en 2011"]} 1 -2023-07-08 08:19:45.325806 2023-07-08 10:28:38.839328 6ee85309-c9fe-4f32-a7c2-a654a32f1ce7 {"md5": "1548e64468a2a159de58d511fb1a60c0", "pid": "053516184", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/053516184", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/053516184", "source": "IDREF"}], "date_of_birth": "1922", "preferred_name": "Stern, Guy", "country_associated": "xx", "authorized_access_point": "Stern, Guy, 1922-....", "biographical_information": ["Écrit aussi en anglais", "Spécialiste de la littérature d'exil allemande. Professeur, Wayne state university, Detroit, Mich. (en 1989)"]} 2 -2023-07-08 08:19:45.453014 2023-07-08 10:29:23.165031 85bd5b48-4585-4cc2-8b25-456a3b54adfb {"md5": "a4c167e8cd4c865615c4ded21379f4f2", "pid": "055333893", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dan"], "identifier": "http://www.idref.fr/055333893", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/055333893", "source": "IDREF"}], "date_of_birth": "1941", "preferred_name": "Ulstrup, Jens", "country_associated": "dk", "authorized_access_point": "Ulstrup, Jens, 1941-....", "biographical_information": ["Ecrit aussi en anglais", "Chimiste. Professeur, Department of chemistry, Technical university of Denmark, Lyngby (en 1998)"]} 2 -2023-07-08 08:19:45.844675 2023-07-08 08:19:45.844692 c94fa4ea-4b98-4222-b500-25df97f5b264 {"md5": "3e0fb6e40f495adc6f5fe61a6443b27d", "pid": "056753950", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/056753950", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/056753950", "source": "IDREF"}], "variant_name": ["SOFMIS"], "preferred_name": "Société française de mastologie et d'imagerie du sein", "country_associated": "fr", "variant_access_point": ["SOFMIS"], "authorized_access_point": "Société française de mastologie et d'imagerie du sein", "biographical_information": ["Mél : yves.grumbach@chu-amiens.fr"]} 1 -2023-07-08 08:19:45.956045 2023-07-08 08:19:45.956058 4a6c4eed-0330-49d0-8d58-415087776bab {"md5": "5d65d221301cb08ca13b85fb51b291c4", "pid": "056755759", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/056755759", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/056755759", "source": "IDREF"}], "preferred_name": "Cazin, Bernadette", "authorized_access_point": "Cazin, Bernadette"} 1 -2023-07-08 08:19:46.056675 2023-07-08 08:19:46.056683 835ee85e-e577-49e8-bfe4-42a1afbb6854 {"md5": "0bce8bf986d06138ce2cee39e72423a0", "pid": "056764073", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/056764073", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/056764073", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Continati, Dolores", "authorized_access_point": "Continati, Dolores, 19..-...."} 1 -2023-07-08 08:19:46.16769 2023-07-08 08:19:46.167697 46990e3e-e6c9-4de3-a386-b60e2900a7fc {"md5": "5bc0f6a4cdc8b7dff9c8cf390b37ae57", "pid": "056766378", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "identifier": "http://www.idref.fr/056766378", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/056766378", "source": "IDREF"}], "preferred_name": "Arnaud, Hélène", "country_associated": "xx", "authorized_access_point": "Arnaud, Hélène"} 1 -2023-07-08 08:19:46.416977 2023-07-08 08:19:46.41699 b69fceca-94b4-434a-8f10-b4c2db329991 {"md5": "06bfa4cfa643fae1c7927dc3e52c3b8a", "pid": "056810881", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["nor"], "identifier": "http://www.idref.fr/056810881", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/056810881", "source": "IDREF"}], "preferred_name": "Finserås, Bente Elisabeth", "authorized_access_point": "Finserås, Bente Elisabeth"} 1 -2023-07-08 08:19:46.791474 2023-07-08 08:19:46.791491 6f31c57c-18e0-4074-82f1-a4aaca2712fd {"md5": "647343c9e72e545095242b242342dd53", "pid": "056844093", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "identifier": "http://www.idref.fr/056844093", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/056844093", "source": "IDREF"}], "preferred_name": "Griepentrog, Wolfgang", "country_associated": "xx", "authorized_access_point": "Griepentrog, Wolfgang"} 1 -2023-07-08 08:19:46.913125 2023-07-08 08:19:46.913133 30a9440c-570f-4b50-8f9c-1a09c372f6fe {"md5": "398d8b4e34072faa1a3d7d381eb03c06", "pid": "056857276", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "juriste", "identifier": "http://www.idref.fr/056857276", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/056857276", "source": "IDREF"}], "date_of_birth": "1941-09-08", "preferred_name": "Billard, Pierre, juriste", "country_associated": "fr", "authorized_access_point": "Billard, Pierre, 1941-...., juriste"} 1 -2023-07-08 08:19:47.045542 2023-07-08 08:19:47.04556 f079ac53-874a-41a3-ac83-7505c437e163 {"md5": "f695b83d9a4f9892355617f46be46b54", "pid": "056868324", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "identifier": "http://www.idref.fr/056868324", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/056868324", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "224842080"}, "date_of_birth": "1959", "preferred_name": "Berg, Stephan", "country_associated": "xx", "authorized_access_point": "Berg, Stephan, 1959-....", "biographical_information": ["1990-2000 directeur du Kunstverein Freiburg. 2001-2008 directeur du Kunstverein Hannover. Depuis avril 2008 directeur du Kunstmuseum Bonn. Professeur honoraire à la Hochschule für Bildende Künste de Braunschweig"]} 1 -2023-07-08 08:19:46.295948 2023-07-08 10:29:14.876849 f6354a09-856e-4e26-972b-874097440f4c {"md5": "5938bdb985a336b7478d1bf184dd60ec", "pid": "056810741", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/056810741", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/056810741", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Tsuda, Yukio", "country_associated": "xx", "authorized_access_point": "Tsuda, Yukio, 19..-...."} 2 -2023-07-08 08:19:47.176333 2023-07-08 10:29:25.321814 a02a8b0d-847e-42bd-b455-e8f75e91565e {"md5": "b9b43839d1bd80c24bd85c7b5cc706b4", "pid": "056926650", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/056926650", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/056926650", "source": "IDREF"}], "variant_name": ["Roustand de Navacelle, Geoffroy Maurice Albert Cady"], "date_of_birth": "1918-05-06", "date_of_death": "2015-05-05", "preferred_name": "Navacelle, Geoffroy de", "country_associated": "fr", "variant_access_point": ["Roustand de Navacelle, Geoffroy Maurice Albert Cady"], "authorized_access_point": "Navacelle, Geoffroy de, 1918-2015", "biographical_information": ["Membre du Comité français Pierre de Coubertin"]} 2 -2023-07-08 08:19:46.652139 2023-07-08 10:30:20.804788 defba508-c525-4121-828b-084688baa833 {"md5": "9077dfc38565ef01ce3811b8b38de82b", "pid": "056821840", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/056821840", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/056821840", "source": "IDREF"}], "preferred_name": "Carlson, Sven H", "authorized_access_point": "Carlson, Sven H"} 2 -2023-07-08 08:19:47.427481 2023-07-08 08:19:47.427505 b9902730-01f7-449d-8f5a-14234da8c269 {"md5": "5acab7c2913e7d8c809bc2975a20d299", "pid": "057030448", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "conference": false, "identifier": "http://www.idref.fr/057030448", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/057030448", "source": "IDREF"}], "preferred_name": "Association des amis de Chanteloup (Amboise, Indre-et-Loire)", "country_associated": "xx", "authorized_access_point": "Association des amis de Chanteloup (Amboise, Indre-et-Loire)"} 1 -2023-07-08 08:19:47.558622 2023-07-08 08:19:47.558633 1a9abf29-88f0-4bc9-ab08-5ca93d6ef7d8 {"md5": "a9b6fc793e62df1b13a2ef067d1e3e52", "pid": "057097909", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/057097909", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/057097909", "source": "IDREF"}], "preferred_name": "Guareschi, Alberto", "country_associated": "it", "authorized_access_point": "Guareschi, Alberto"} 1 -2023-07-08 08:19:47.67886 2023-07-08 08:19:47.678876 3052630c-84f8-452d-8819-a12dedc499ec {"md5": "99a8dd01c4f56b49d63c800722fcc6a3", "pid": "057101795", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "conference": false, "identifier": "http://www.idref.fr/057101795", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/057101795", "source": "IDREF"}], "preferred_name": "Ego comme X (Angoulême)", "country_associated": "xx", "authorized_access_point": "Ego comme X (Angoulême)"} 1 -2023-07-08 08:19:47.801892 2023-07-08 08:19:47.801901 699efbca-ad27-4c39-bd56-2d9acd86d2c4 {"md5": "820c8ef1a9a2ecf06e24aea6cd7aeec1", "pid": "057110662", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "conference": false, "identifier": "http://www.idref.fr/057110662", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/057110662", "source": "IDREF"}], "preferred_name": "MC2 (Saint-Clair-sur-Epte, Val-d'Oise)", "country_associated": "xx", "authorized_access_point": "MC2 (Saint-Clair-sur-Epte, Val-d'Oise)"} 1 -2023-07-08 08:19:47.947057 2023-07-08 08:19:47.947069 657ab248-d4c0-4daf-a301-16bcfec8f378 {"md5": "c97d518a053c409b7cff5ef54ac6183b", "pid": "057199892", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "identifier": "http://www.idref.fr/057199892", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/057199892", "source": "IDREF"}], "preferred_name": "Coghlan, Ronan", "country_associated": "xx", "authorized_access_point": "Coghlan, Ronan"} 1 -2023-07-08 08:19:48.082499 2023-07-08 08:19:48.082514 233b169c-f5d2-438f-81ee-7282b89c5c94 {"md5": "ffdc561f12d3d4a20cc3c0a1ea131ad8", "pid": "057249660", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "identifier": "http://www.idref.fr/057249660", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/057249660", "source": "IDREF"}], "preferred_name": "Jarnet, Michel", "country_associated": "xx", "authorized_access_point": "Jarnet, Michel"} 1 -2023-07-08 08:19:48.216563 2023-07-08 08:19:48.216577 c28f145c-fc7e-44cf-8ff7-0ccb33b6d16a {"md5": "27b1e7d95ba3f6bf8138f9ba510cca95", "pid": "057271372", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "conference": false, "identifier": "http://www.idref.fr/057271372", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/057271372", "source": "IDREF"}], "preferred_name": "Association des anciens des affaires algériennes", "country_associated": "xx", "authorized_access_point": "Association des anciens des affaires algériennes"} 1 -2023-07-08 08:19:48.354813 2023-07-08 08:19:48.354831 1c223b37-3026-495a-ac17-715e8ec3c346 {"md5": "b5bafc5d0113eb866263a04654ae4135", "pid": "057329850", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/057329850", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/057329850", "source": "IDREF"}], "variant_name": ["Komissarzhevsky, Viktor Grigoryevich"], "preferred_name": "Komissarjevski, Viktor Grigoryevich", "variant_access_point": ["Komissarzhevsky, Viktor Grigoryevich"], "authorized_access_point": "Komissarjevski, Viktor Grigoryevich"} 1 -2023-07-08 08:19:48.502906 2023-07-08 08:19:48.50292 0cee1b25-8443-475a-aae6-0dd3bff6dbec {"md5": "b5dcc27e817070b45f199d854e75f6f1", "pid": "057345627", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "conference": false, "identifier": "http://www.idref.fr/057345627", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/057345627", "source": "IDREF"}], "preferred_name": "Centre d'études et de recherches interculturelles européennes", "country_associated": "xx", "authorized_access_point": "Centre d'études et de recherches interculturelles européennes"} 1 -2023-07-08 08:19:48.639538 2023-07-08 08:19:48.639548 437cfe4d-252e-438e-8b71-7ccbab66498b {"md5": "b4cd8f436748fb5d2a493418d2b25aca", "pid": "057376719", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "conference": false, "identifier": "http://www.idref.fr/057376719", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/057376719", "source": "IDREF"}], "preferred_name": "Cercle des retraités de Normandie-Matériaux de friction", "country_associated": "xx", "authorized_access_point": "Cercle des retraités de Normandie-Matériaux de friction"} 1 -2023-07-08 08:19:48.77431 2023-07-08 08:19:48.774323 0e5cf8a0-6509-4525-b701-234e6abe4ed4 {"md5": "d2fd01bc004e3cc5d8140ad53e99e40f", "pid": "057556474", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/057556474", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/057556474", "source": "IDREF"}], "variant_name": ["Sarro, Thierry di"], "preferred_name": "Di Sarro, Thierry", "country_associated": "xx", "variant_access_point": ["Sarro, Thierry di"], "authorized_access_point": "Di Sarro, Thierry"} 1 -2023-07-08 08:19:48.901103 2023-07-08 08:19:48.901114 fed630f8-2147-4dfa-addb-ca3c57542f81 {"md5": "976c33d29fcd7272ca36c6e860330f3e", "pid": "057564647", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/057564647", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/057564647", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Bielfeld, Horst", "country_associated": "gw", "authorized_access_point": "Bielfeld, Horst", "biographical_information": ["Photographe animalier. Spécialiste des oiseaux de volière."]} 1 -2023-07-08 08:19:49.128093 2023-07-08 08:19:49.128102 896b68e2-4219-48f8-b4fc-745aff2ff3f3 {"md5": "c128b05ee9abf3efd255de67104c5ad8", "pid": "057687242", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "identifier": "http://www.idref.fr/057687242", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/057687242", "source": "IDREF"}], "preferred_name": "Bayili, Emmanuel", "country_associated": "xx", "authorized_access_point": "Bayili, Emmanuel"} 1 -2023-07-08 08:19:49.246145 2023-07-08 08:19:49.246158 61e43774-a7c2-4adc-b4b4-88634af2b7cf {"md5": "a43bdc02b914b2e208ff4d8800f311bf", "pid": "05769009X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/05769009X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/05769009X", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Lasserre, Solange", "country_associated": "fr", "authorized_access_point": "Lasserre, Solange", "biographical_information": ["Auteure de romans"]} 1 -2023-07-08 08:19:49.376652 2023-07-08 08:19:49.37666 0ea35d02-38f5-410b-94b9-c855dca796a9 {"md5": "32d9b790a2606a5517fad5f5e0eccab7", "pid": "05776171X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "identifier": "http://www.idref.fr/05776171X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/05776171X", "source": "IDREF"}], "preferred_name": "Noël, Jean-Pascal", "country_associated": "xx", "authorized_access_point": "Noël, Jean-Pascal"} 1 -2023-07-08 08:19:49.495752 2023-07-08 08:19:49.495765 f2e37a59-9030-4f8c-8c65-aa827f007af4 {"md5": "ca8f192bc5bfc2622bd36d92ef705577", "pid": "057791511", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "expert-comptable", "identifier": "http://www.idref.fr/057791511", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/057791511", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "144710196"}, "variant_name": ["Maillet-Baudrier, Catherine", "Baudrier, Catherine Maillet-"], "date_of_birth": "1956-06-08", "preferred_name": "Maillet, Catherine, expert-comptable", "country_associated": "fr", "variant_access_point": ["Maillet-Baudrier, Catherine", "Baudrier, Catherine Maillet-"], "authorized_access_point": "Maillet, Catherine, 1956-...., expert-comptable", "biographical_information": ["Professeure associée à l'ESCP Europe. Expert comptable. Commissaire aux comptes (en 2019)"]} 1 -2023-07-08 08:19:49.616831 2023-07-08 08:19:49.61684 b33a8cb6-e256-47d0-b166-9e2e2612d791 {"md5": "386eccf8450126f36a302f44381889a5", "pid": "057941386", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre", "ita", "ger"], "conference": false, "identifier": "http://www.idref.fr/057941386", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/057941386", "source": "IDREF"}], "variant_name": ["OFEFP (Suisse)", "Suisse. Ufficio federale per la protezione dell'ambiente", "Suisse. Bundesamt für Umweltschutz", "Suisse. Office de la protection de l'environnement", "OFEV (Suisse)", "Suisse. Département fédéral de l'environnement, des transports, de l'énergie et de la communication. Office féréral de l'environnement, des forêts et du paysage"], "preferred_name": "Suisse. Office fédéral de l'environnement, des forêts et du paysage", "country_associated": "sz", "date_of_termination": "2005-12-31", "variant_access_point": ["OFEFP (Suisse)", "Suisse. Ufficio federale per la protezione dell'ambiente", "Suisse. Bundesamt für Umweltschutz", "Suisse. Office de la protection de l'environnement", "OFEV (Suisse)", "Suisse. Département fédéral de l'environnement, des transports, de l'énergie et de la communication. Office féréral de l'environnement, des forêts et du paysage"], "date_of_establishment": "1971", "parallel_access_point": ["Schweiz. Bundesamt für Umwelt, Wald und Landschaft", "Svizzera. Ufficio federale dell'ambiente, delle foreste e del paesaggio"], "authorized_access_point": "Suisse. Office fédéral de l'environnement, des forêts et du paysage", "biographical_information": ["OFEFP 3003 Berne", "De 1971 à 1988: Office fédéral de la protection de l'environnement. - De 1989 à 2005: Office fédéral de l'environnement, des forêts et du paysage", "Devient le 1er janvier 2006 Office fédéral de l'environnement par fusion avec l'Office des eaux et de la géologie"]} 1 -2023-07-08 08:19:49.736077 2023-07-08 08:19:49.73609 a077955f-4a2f-48ea-b5ae-7f92f960c697 {"md5": "3bf9695d844dc19a664efe80516bd5c1", "pid": "058054529", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/058054529", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/058054529", "source": "IDREF"}], "preferred_name": "Durieu, Jacques", "country_associated": "fr", "authorized_access_point": "Durieu, Jacques", "biographical_information": ["Université Jean Monnet-Saint-Etienne-CREUSET", "Professeur de sciences économiques à l'Université de Grenoble 2 et membre du Centre de recherche en économie de Grenoble (CREG) en 2011"]} 1 -2023-07-08 08:19:49.853887 2023-07-08 08:19:49.853896 3aa5bad8-d944-4aa1-a5d1-330fb3293aa3 {"md5": "c7e13f3c4eb93627bdbeebc2e6623ddb", "pid": "058114491", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/058114491", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/058114491", "source": "IDREF"}], "variant_name": ["Wells Clark, Chester"], "preferred_name": "Clark, Chester Wells", "country_associated": "xxu", "variant_access_point": ["Wells Clark, Chester"], "authorized_access_point": "Clark, Chester Wells", "biographical_information": ["Professeur d'histoire à l'Université de Princeton en 1934", "Auteur d'une thèse sur les relations austro-prussiennes dans la première moitié du 19° siècle"]} 1 -2023-07-08 08:19:50.109416 2023-07-08 08:19:50.109426 d5123dff-fd65-45b4-84f5-f3615f2146de {"md5": "0657fe37d6727f2c8a97e225642c4be3", "pid": "058861998", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/058861998", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/058861998", "source": "IDREF"}], "preferred_name": "Engelhard, Hermann", "country_associated": "gw", "authorized_access_point": "Engelhard, Hermann"} 1 -2023-07-08 08:19:50.246702 2023-07-08 08:19:50.246714 6e2ffdb2-cd63-4c24-accb-11e33fa48cf3 {"md5": "1fd207578601e2d48ebae2bd61fef888", "pid": "058993789", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/058993789", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/058993789", "source": "IDREF"}], "variant_name": ["Groupe Ethos"], "preferred_name": "Institut national de la recherche agronomique (France). Groupe Ethos", "country_associated": "fr", "variant_access_point": ["Groupe Ethos"], "date_of_establishment": "1999", "authorized_access_point": "Institut national de la recherche agronomique (France). Groupe Ethos", "biographical_information": ["Groupe de réflexion et de débat constitué en 1999 au sein de l'INRA"]} 1 -2023-07-08 08:19:50.365047 2023-07-08 08:19:50.365068 70f557f4-eb9a-4f6c-ba2e-b53e92f2377e {"md5": "38753f1570f12e8dcd5eae141924dfe8", "pid": "059051051", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/059051051", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/059051051", "source": "IDREF"}], "preferred_name": "Anderson, Mike", "country_associated": "at", "authorized_access_point": "Anderson, Mike"} 1 -2023-07-08 08:19:50.476224 2023-07-08 08:19:50.47624 a1fe3c67-b9e8-4d25-b3e7-babb2bfc8447 {"md5": "6b608282acea69572fb61a794f4d7057", "pid": "059202491", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/059202491", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/059202491", "source": "IDREF"}], "date_of_birth": "1944-12-13", "preferred_name": "Robert, Hugues", "country_associated": "fr", "authorized_access_point": "Robert, Hugues, 1944-....", "biographical_information": ["Professeur de pharmacie clinique à la Faculté des sciences pharmaceutiques et biologiques de Lille 2 en 1996"]} 1 -2023-07-08 08:19:50.997928 2023-07-08 08:19:50.997943 d4ecc9eb-94d8-4c0d-83f8-d0a367f968c4 {"md5": "eba3e24361d518f3f1d3da16b426223f", "pid": "059742984", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/059742984", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/059742984", "source": "IDREF"}], "date_of_birth": "1947", "preferred_name": "Pichler, Meinrad", "country_associated": "au", "authorized_access_point": "Pichler, Meinrad, 1947-....", "biographical_information": ["Historien ; Enseignant à Dornbirn (Autriche)"]} 1 -2023-07-08 08:19:51.141636 2023-07-08 08:19:51.141651 91745c1e-ebaf-4c0f-b1a9-bacfc69f7878 {"md5": "28563923157a988530e47d8c06734c38", "pid": "059774177", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "fre"], "conference": true, "identifier": "http://www.idref.fr/059774177", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/059774177", "source": "IDREF"}], "preferred_name": "Conférence internationale sur les ponts en arc", "country_associated": "fr", "date_of_termination": "2001-09-21", "date_of_establishment": "2001-09-19", "authorized_access_point": "Conférence internationale sur les ponts en arc (3 ; 2001 ; Paris)"} 1 -2023-07-08 08:19:51.284974 2023-07-08 08:19:51.284982 3f4371e3-28cc-454d-88d0-78fe83a42117 {"md5": "9764aae4f084b173daef7a924b159d01", "pid": "059780843", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "identifier": "http://www.idref.fr/059780843", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/059780843", "source": "IDREF"}], "date_of_birth": "1624-10-28", "date_of_death": "1701-07-01", "preferred_name": "Cavelier, Jean", "country_associated": "fr", "authorized_access_point": "Cavelier, Jean, 1624-1701", "biographical_information": ["Imprimeur-libraire ; imprimeur du Roi et de l'université [de Caen]. - Fils et successeur de l'imprimeur-libraire de Caen Adam Cavelier, chez qui il \\"a fait 7 ans d'apprentissage\\", d'après sa déclaration à l'enquête de 1700-1701. Obtient des lettres de provision comme imprimeur du Roi le 9 fév. 1654 après démission de son père en sa faveur. Auteur de poésies et d'opuscules en latin. Échevin de Caen. Dit à tort âgé de 78 ans lors de l'enquête de 1700-1701. Décédé à Caen le 1er juillet 1701 ; dit alors âgé, à tort, de 72 ans. Travaille en association avec son père en 1654-1656", "Lieu d'activité : Caen. - Dates d'activité : 1654-1701"]} 1 -2023-07-08 08:19:51.40287 2023-07-08 08:19:51.402884 5eebf350-c453-43e8-bbbd-5aff446ebe25 {"md5": "1579c9fda2a57546463869d640065063", "pid": "059922184", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/059922184", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/059922184", "source": "IDREF"}], "preferred_name": "Hensley, Larry D.", "authorized_access_point": "Hensley, Larry D.", "biographical_information": ["En poste à l'University of Nothern Iowa (en 2002)"]} 1 -2023-07-08 08:19:51.529624 2023-07-08 08:19:51.529635 0fc01fc0-c8b0-452a-85d6-66a79bc98e44 {"md5": "3a5c4b7fda61f28f5eb4ab0452b36e42", "pid": "059943696", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/059943696", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/059943696", "source": "IDREF"}], "date_of_birth": "1943", "preferred_name": "Puza, Richard", "country_associated": "gw", "authorized_access_point": "Puza, Richard, 1943-....", "biographical_information": ["Dr.jur.Professor für Kirchenrecht,Katholisch-Theologischen Fakultät der Universität Tübingen"]} 1 -2023-07-08 08:19:50.858977 2023-07-08 10:29:59.156028 e562dcf1-92dd-4262-95ae-1b57a8c2880e {"md5": "cadba0fabc50f928b202d3ffccd9c0cd", "pid": "05961398X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/05961398X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/05961398X", "source": "IDREF"}], "variant_name": ["Nanjappa Shamanna Subba Rao", "Rao, Nanjappa Shamanna Subba"], "date_of_birth": "1926", "preferred_name": "Subba Rao, Nanjappa Shamanna", "country_associated": "ii", "variant_access_point": ["Nanjappa Shamanna Subba Rao", "Rao, Nanjappa Shamanna Subba"], "authorized_access_point": "Subba Rao, Nanjappa Shamanna, 1926-....", "biographical_information": ["Microbiologiste. En poste à la Division de microbiologie, Agricultural research institute, New Delhi, Inde (en 1984)"]} 2 -2023-07-08 08:19:51.640805 2023-07-08 08:19:51.640815 396bded8-09d1-4ff6-9132-ce3e1cb6a956 {"md5": "634c6bd9b8191d32f144cd105ccd30ea", "pid": "060104406", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/060104406", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/060104406", "source": "IDREF"}], "date_of_birth": "1958", "preferred_name": "Hütter, Reinhard", "country_associated": "gw", "authorized_access_point": "Hütter, Reinhard, 1958-....", "biographical_information": ["Professeur de théologie chrétienne à la Duke University School"]} 1 -2023-07-08 08:19:51.909914 2023-07-08 08:19:51.909926 41cc8411-67f5-4b26-9599-737211507dae {"md5": "a0799a81d26c18c35cd457688c25e5af", "pid": "060256982", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/060256982", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/060256982", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "086698850"}, "variant_name": ["Gielgud, Arthur John"], "date_of_birth": "1904-04-14", "date_of_death": "2000-05-21", "preferred_name": "Gielgud, John", "country_associated": "xxk", "variant_access_point": ["Gielgud, Arthur John"], "authorized_access_point": "Gielgud, John, 1904-2000", "biographical_information": ["Acteur. Réalisateur. Sir", "En 1994, le \\"Globe Theatre\\" de Londres est renommé le \\"Gielgud Theatre\\" en son honneur."]} 1 -2023-07-08 08:19:52.030929 2023-07-08 08:19:52.030939 f7f46e90-f021-4bc1-881e-52bc2871cce7 {"md5": "a1c79b853b0938da9b940d33ad4f0ce1", "pid": "060459743", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/060459743", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/060459743", "source": "IDREF"}], "date_of_birth": "1638?", "preferred_name": "Brossard de Montaney, Jacques", "country_associated": "fr", "authorized_access_point": "Brossard de Montaney, Jacques, 1638?-....", "biographical_information": ["Conseiller au présidial, acteur et auteur de \\"Noëls bressans\\", et d'une comédie bressane, \\"l'Enrôlement de Tivan\\", composée en 1675. Cette pièce fut publiée pour la première fois à Bourg en 1783."]} 1 -2023-07-08 08:19:52.301229 2023-07-08 08:19:52.301238 b9587a7f-fbe8-407b-b9f3-8fc96ad94dd4 {"md5": "8b5fffa5c8e7a0ef5bb6701baca138ee", "pid": "060722320", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/060722320", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/060722320", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Sánchez Caro, José Manuel", "country_associated": "sp", "authorized_access_point": "Sánchez Caro, José Manuel, 19..-....", "biographical_information": ["En 2013 : Directeur de l'intitut biblique et archéologique espagnol à la Casa de Santiago à Jerusalem. Membre de l'université pontifical de Salamanque"]} 1 -2023-07-08 08:19:52.413039 2023-07-08 08:19:52.41305 4d168b61-9678-44c3-b8c0-dc6255e0f5fc {"md5": "c059a1308d747183bddcce7e21000221", "pid": "060754435", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "qualifier": "missionnaire", "identifier": "http://www.idref.fr/060754435", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/060754435", "source": "IDREF"}], "date_of_birth": "1851", "date_of_death": "1932", "preferred_name": "Booth, Joseph, missionnaire", "country_associated": "xx", "authorized_access_point": "Booth, Joseph, 1851-1932, missionnaire", "biographical_information": ["Missionnaire"]} 1 -2023-07-08 08:19:52.510463 2023-07-08 08:19:52.510476 842b49af-7f5e-44db-9664-570e874c3fef {"md5": "0494158902f639c26abccd48c2a029d6", "pid": "060756985", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/060756985", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/060756985", "source": "IDREF"}], "preferred_name": "Doussin, L.", "authorized_access_point": "Doussin, L.", "biographical_information": ["Licenciée ès sciences (en 1936)"]} 1 -2023-07-08 08:19:52.62728 2023-07-08 08:19:52.627289 d4dae91e-9221-4ba8-812d-59dbb9bb4db5 {"md5": "1f19bff933b19aff8560705b1ba0e076", "pid": "060819529", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/060819529", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/060819529", "source": "IDREF"}], "date_of_birth": "1961-10-04", "preferred_name": "Lenfant, Anne-Yvonne", "country_associated": "fr", "authorized_access_point": "Lenfant, Anne-Yvonne, 1961-....", "biographical_information": ["Praticien hospitalier au service de psychiatrie infanto-juvénile au Centre Hospitalier de Lommelet dans le Nord"]} 1 -2023-07-08 08:19:52.749861 2023-07-08 08:19:52.749873 bb4bc6d1-0a74-4f10-92e5-10f406283b32 {"md5": "f918a90eeabb245f16ebc251527a7242", "pid": "060890932", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/060890932", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/060890932", "source": "IDREF"}], "preferred_name": "Deutsch, Hermann", "country_associated": "gw", "authorized_access_point": "Deutsch, Hermann", "biographical_information": ["Philosophe et théologien allemand, a étudié la religion juive en Hongrie durant trois ans"]} 1 -2023-07-08 08:19:52.170668 2023-07-08 10:23:58.640466 60bb0d08-dcbb-4d30-a9f9-7347dce73348 {"md5": "b5d83bca3d524fb9e609a8a24d0eab8c", "pid": "060721995", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre", "ita"], "qualifier": "traducteur", "identifier": "http://www.idref.fr/060721995", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/060721995", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Mansouri, Nadia, traducteur", "country_associated": "fr", "authorized_access_point": "Mansouri, Nadia, 19..-...., traducteur", "biographical_information": ["Trad. d'italien en français"]} 2 -2023-07-08 08:19:52.863182 2023-07-08 08:19:52.863194 e52bb530-d6c8-4acc-bab0-2d3a2c0cb471 {"md5": "8a6044de3a2d758dcee53edd3086ee33", "pid": "061077690", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/061077690", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/061077690", "source": "IDREF"}], "preferred_name": "Poiroux, François", "country_associated": "fr", "authorized_access_point": "Poiroux, François", "biographical_information": ["Docteur en chirurgie dentaire"]} 1 -2023-07-08 08:19:52.987511 2023-07-08 08:19:52.987521 3695b07b-8990-47d2-8c8b-fb413b8ec11d {"md5": "613dd68a21ec9d88ac58a90d8ece212e", "pid": "061113603", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/061113603", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/061113603", "source": "IDREF"}], "preferred_name": "Agostini, Léon", "authorized_access_point": "Agostini, Léon", "biographical_information": ["Agrégé de physique. Docteur ès sciences (vers 1948)"]} 1 -2023-07-08 08:19:53.110355 2023-07-08 08:19:53.110366 70f28f31-589c-4cbc-aba0-d173e05e7cb2 {"md5": "a00ba91176e72734dcb3a08893df8fc1", "pid": "061131547", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": false, "identifier": "http://www.idref.fr/061131547", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/061131547", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "077338669"}, "variant_name": ["Stadtgalerie (Sarrebruck, Allemagne)", "Stadtgalerie Saarbrücken", "Sarrebruck (Allemagne). Stadtgalerie", "Stiftung Saarländischer Kulturbesitz. Stadtgalerie (Sarrebruck, Allemagne)"], "preferred_name": "Stadtgalerie (Saarbrücken, Allemagne)", "country_associated": "gw", "variant_access_point": ["Stadtgalerie (Sarrebruck, Allemagne)", "Stadtgalerie Saarbrücken", "Sarrebruck (Allemagne). Stadtgalerie", "Stiftung Saarländischer Kulturbesitz. Stadtgalerie (Sarrebruck, Allemagne)"], "date_of_establishment": "1985", "authorized_access_point": "Stadtgalerie (Saarbrücken, Allemagne)", "biographical_information": ["Adresse : Sankt-Johanner Markt 24, 66111 Sarrebruck. Adresse électronique : info@stadtgalerie.de", "Fondée en tant qu'institution municipale, avant d'intégrer en 1994 la Stiftung Saarländischer Kulturbesitz (Fondation du patrimoine culturel sarrois)"]} 1 -2023-07-08 08:19:53.245252 2023-07-08 08:19:53.245264 3856ca16-bbbe-40c9-acab-62a33712a1fb {"md5": "f3ecd3076bbe496f9433066dbd027b6b", "pid": "061135437", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/061135437", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/061135437", "source": "IDREF"}], "preferred_name": "Labbé, Daniel", "country_associated": "fr", "authorized_access_point": "Labbé, Daniel", "biographical_information": ["Chirurgien plasticien, praticien hospitalier, CHU de Caen, France (2001)"]} 1 -2023-07-08 08:19:53.36347 2023-07-08 08:19:53.363478 45d3fefe-d3df-447f-9243-c7b80efc87ac {"md5": "db2c00995195ec5e428cd9c0e4d0b1b0", "pid": "061190586", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/061190586", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/061190586", "source": "IDREF"}], "preferred_name": "Duval, Jean-Marc", "country_associated": "fr", "authorized_access_point": "Duval, Jean-Marc", "biographical_information": ["Docteur en droit, maître de conférences à la Faculté de droit et de science politique d'Aix-Marseille, en 2002"]} 1 -2023-07-08 08:19:53.481055 2023-07-08 08:19:53.481069 a61af887-1756-489f-88bf-b500a5a7bf0f {"md5": "9b2cf19f2373b6dd626d815eeec636b6", "pid": "063876981", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/063876981", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/063876981", "source": "IDREF"}], "date_of_birth": "1909", "preferred_name": "Hanser, Richard", "country_associated": "xxu", "authorized_access_point": "Hanser, Richard, 1909-", "biographical_information": ["Journaliste. Spécialiste de l'histoire du national-socialisme (1984)"]} 1 -2023-07-08 08:19:53.598061 2023-07-08 08:19:53.598074 44297980-1172-4949-94fb-59fc513c67c7 {"md5": "c99a932353418c0af890df9872ef7598", "pid": "066759099", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/066759099", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/066759099", "source": "IDREF"}], "variant_name": ["Kershaw, Paul J.E."], "preferred_name": "Kershaw, Paul", "country_associated": "xxk", "variant_access_point": ["Kershaw, Paul J.E."], "authorized_access_point": "Kershaw, Paul", "biographical_information": ["Travaille à l'University College London"]} 1 -2023-07-08 08:19:53.723728 2023-07-08 08:19:53.723739 3f23016e-831c-4fff-a283-8afb81085e94 {"md5": "4fcf0833c09c01e8c59305e883b222cf", "pid": "066764602", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/066764602", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/066764602", "source": "IDREF"}], "date_of_birth": "1946", "preferred_name": "Rohatynskyj, Marta R.", "country_associated": "xxu", "authorized_access_point": "Rohatynskyj, Marta R., 1946-....", "biographical_information": ["Professeur associé d'anthropologie à l'université de Guelph, Ontario"]} 1 -2023-07-08 08:19:53.85421 2023-07-08 08:19:53.85422 c30c5d4c-5e2b-41ba-a958-c4fcefd19f12 {"md5": "c676b37ff6ff86a7f1e485eb31519cc4", "pid": "066772834", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/066772834", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/066772834", "source": "IDREF"}], "preferred_name": "Beck, Marli", "country_associated": "gw", "authorized_access_point": "Beck, Marli"} 1 -2023-07-08 08:19:53.981105 2023-07-08 08:19:53.981116 2a0ce128-29e5-4375-9849-8af35d456896 {"md5": "c3914a11a33bde4b4c9dbfc7eeb23245", "pid": "06685086X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/06685086X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/06685086X", "source": "IDREF"}], "preferred_name": "El Boudali, Farid", "country_associated": "fr", "authorized_access_point": "El Boudali, Farid", "biographical_information": ["Titulaire d'un doctorat en Physique soutenu à l'Université de Metz (2001)"]} 1 -2023-07-08 08:19:54.104292 2023-07-08 08:19:54.104305 c1c4cd9c-c45c-4d42-9fcb-249ae782aa42 {"md5": "31eeabd5853581ff8b7d56abda54d005", "pid": "066879353", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["cat"], "identifier": "http://www.idref.fr/066879353", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/066879353", "source": "IDREF"}], "preferred_name": "Serrat, Carles", "country_associated": "sp", "authorized_access_point": "Serrat, Carles"} 1 -2023-07-08 08:19:54.223882 2023-07-08 08:19:54.223886 71f2375e-44c9-4739-b18b-4734b86ad90b {"md5": "72ff1cf24eaa3b4f0a1fb98f47a0dbb9", "pid": "066897815", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/066897815", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/066897815", "source": "IDREF"}], "variant_name": ["Mc Eachern, Claire", "MacEachern, Claire", "Mac Eachern, Claire"], "date_of_birth": "1963", "preferred_name": "McEachern, Claire", "country_associated": "xxk", "variant_access_point": ["Mc Eachern, Claire", "MacEachern, Claire", "Mac Eachern, Claire"], "authorized_access_point": "McEachern, Claire, 1963-...."} 1 -2023-07-08 08:19:54.336981 2023-07-08 08:19:54.336992 1acf0643-eb9d-4864-bdb3-bfa1ebedd1ef {"md5": "c1c8b8706d30a5013fa322e86cdb6175", "pid": "066902096", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/066902096", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/066902096", "source": "IDREF"}], "preferred_name": "Lampe, Fabienne", "country_associated": "fr", "authorized_access_point": "Lampe, Fabienne", "biographical_information": ["Adjointe au Délégué du RMI, Revenu minimum d'insertion"]} 1 -2023-07-08 08:19:54.455075 2023-07-08 08:19:54.455083 373e6423-b9b1-453d-8fcd-9546ee71c501 {"md5": "3c95a3d9a2568148361d7dc8af29476b", "pid": "066986540", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "conference": true, "identifier": "http://www.idref.fr/066986540", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/066986540", "source": "IDREF"}], "preferred_name": "Seminario o franciscanismo em Portugal", "country_associated": "po", "date_of_termination": "1994-04-24", "date_of_establishment": "1994-04-22", "authorized_access_point": "Seminario o franciscanismo em Portugal"} 1 -2023-07-08 08:19:54.561112 2023-07-08 08:19:54.561121 87a08279-3a51-4b97-8a2c-24d773551fa8 {"md5": "aa2ec709beb01b3392a036b4bdfeb43a", "pid": "066993709", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/066993709", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/066993709", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "067017932"}, "date_of_birth": "1843", "date_of_death": "1915", "preferred_name": "Roberty, Eugène de", "authorized_access_point": "Roberty, Eugène de, 1843-1915", "biographical_information": ["Philosophe. A aussi écrit en russe"]} 1 -2023-07-08 08:19:54.803877 2023-07-08 08:19:54.803891 ca8110f9-8edc-4837-90e6-fbee4595b5e8 {"md5": "7766c8b4d39082a70571d81621f3db42", "pid": "067042767", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/067042767", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/067042767", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "080408788"}, "variant_name": ["Benjamin, Cornelius", "Benjamin, A. Cornelius"], "date_of_birth": "1897", "date_of_death": "1968", "preferred_name": "Benjamin, Abram Cornelius", "country_associated": "xxu", "variant_access_point": ["Benjamin, Cornelius", "Benjamin, A. Cornelius"], "authorized_access_point": "Benjamin, Abram Cornelius, 1897-1968", "biographical_information": ["Professeur de philosophie. A enseigné à l'Université du Missouri, USA. Spécialiste de la philosophie des sciences et de l'épistémologie. A été président de la Western division of the American philosophical association"]} 1 -2023-07-08 08:19:54.943222 2023-07-08 08:19:54.943234 2237c0ae-650a-4ccb-8cc9-f24d4134a889 {"md5": "a2f0352cd891df294e9c94d29d52548f", "pid": "067071333", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/067071333", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/067071333", "source": "IDREF"}], "variant_name": ["Université de Strasbourg. Institut de sciences criminelles et pénitentiaires"], "preferred_name": "Institut de sciences criminelles et pénitentiaires (Strasbourg)", "country_associated": "fr", "variant_access_point": ["Université de Strasbourg. Institut de sciences criminelles et pénitentiaires"], "authorized_access_point": "Institut de sciences criminelles et pénitentiaires (Strasbourg)"} 1 -2023-07-08 08:19:55.060503 2023-07-08 08:19:55.060515 0bf68ab4-77c3-4f5f-a653-5c81489837fc {"md5": "ef240aa2caab10b7e49842a75f73577e", "pid": "067071740", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": false, "identifier": "http://www.idref.fr/067071740", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/067071740", "source": "IDREF"}], "variant_name": ["REBIUN"], "preferred_name": "Red de bibliotecas universitarias", "country_associated": "sp", "variant_access_point": ["REBIUN"], "authorized_access_point": "Red de bibliotecas universitarias"} 1 -2023-07-08 08:19:55.180473 2023-07-08 08:19:55.180489 112718cb-ff46-4dd8-a083-4e8d62624675 {"md5": "e4ba8e0203979d008610477f872f64dc", "pid": "067073204", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/067073204", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/067073204", "source": "IDREF"}], "variant_name": ["Eglise catholique. Diocèse (Perpignan)"], "preferred_name": "Eglise catholique. Diocèse (Perpignan-Elne)", "country_associated": "fr", "variant_access_point": ["Eglise catholique. Diocèse (Perpignan)"], "date_of_establishment": "1822", "authorized_access_point": "Eglise catholique. Diocèse (Perpignan-Elne)", "biographical_information": ["Le 6 octobre 1822, Pie VII rétablit le diocèse de Perpignan-Elne. Il couvre le département des Pyrénées-Orientales et est suffragant de l'archidiocèse d'Albi. À la suite de la loi de séparation des Églises et de l'État du 9 décembre 1905, le diocèse de Perpignan-Elne devient une association diocésaine. Par un décret du 8 décembre 2002, la Congrégation pour les évêques élève le diocèse de Montpellier au rang d'archidiocèse métropolitain et fait du diocèse de Perpignan-Elne un de ses suffragants."]} 1 -2023-07-08 08:19:55.2987 2023-07-08 08:19:55.298712 14b636a0-a040-47ea-83b6-6424d62878c1 {"md5": "ab0b622a8a429f88eaca1327c585043f", "pid": "067086055", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "conference": false, "identifier": "http://www.idref.fr/067086055", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/067086055", "source": "IDREF"}], "preferred_name": "Association pour le développement de l'action entre avocats et juristes étudiants (La Varenne-Saint-Hilaire)", "country_associated": "xx", "authorized_access_point": "Association pour le développement de l'action entre avocats et juristes étudiants (La Varenne-Saint-Hilaire)"} 1 -2023-07-08 08:19:55.405371 2023-07-08 08:19:55.405382 68bc27ab-5b32-48ee-b7c0-d137d69c416e {"md5": "607dc6c0dabddb5716df57f506dbda63", "pid": "067096441", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "conference": false, "identifier": "http://www.idref.fr/067096441", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/067096441", "source": "IDREF"}], "preferred_name": "SANINORD", "country_associated": "xx", "authorized_access_point": "SANINORD"} 1 -2023-07-08 08:19:55.530887 2023-07-08 08:19:55.530896 a11d3b66-5b63-4cab-afc1-24bed210eaec {"md5": "d0763614a4765b19f9e713a21233e54a", "pid": "067096824", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/067096824", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/067096824", "source": "IDREF"}], "variant_name": ["AS Police (Nouméa)"], "preferred_name": "Association sportive de la police (Nouméa)", "country_associated": "nl", "variant_access_point": ["AS Police (Nouméa)"], "date_of_establishment": "1974", "authorized_access_point": "Association sportive de la police (Nouméa)"} 1 -2023-07-08 08:19:55.777734 2023-07-08 08:19:55.777743 63336dcf-84e5-46cf-ac32-d34f4d55f71b {"md5": "51d288bb4b1d883c90793496ef4b6e2a", "pid": "067181562", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/067181562", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/067181562", "source": "IDREF"}], "preferred_name": "Baker Röben, Betsy", "country_associated": "gw", "authorized_access_point": "Baker Röben, Betsy", "biographical_information": ["Écrit aussi en anglais", "Docteur en droit, Akademie der Wissenschaften, Heidelberg"]} 1 -2023-07-08 08:19:55.894668 2023-07-08 08:19:55.894689 265a1eb8-3fcd-4215-8d3d-92775b5614c5 {"md5": "dec981c78f399acdaa3d56d73fb46126", "pid": "067223613", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre", "eng"], "qualifier": "informaticien", "identifier": "http://www.idref.fr/067223613", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/067223613", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Habib, Michel, informaticien", "country_associated": "fr", "authorized_access_point": "Habib, Michel, 19..-...., informaticien", "biographical_information": ["Professeur des Universités. Laboratoire d'Informatique, de Robotique et de Micro-électronique, Montpellier (2004). Professeur au LIAFA (Laboratoire d'Informatique Algorythmique : Fondements et Applications), Paris, en 2005. Professeur émérite d'informatique à l'Université de Paris (en 2021)"]} 1 -2023-07-08 08:19:56.005811 2023-07-08 08:19:56.005819 ae82cadc-10c1-495d-8804-b21cf13b78e9 {"md5": "2b89d445cae78862fb9b2eeb7e2a4bfb", "pid": "067285716", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/067285716", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/067285716", "source": "IDREF"}], "variant_name": ["ISEH"], "preferred_name": "International society for experimental hematology", "country_associated": "xxu", "variant_access_point": ["ISEH"], "date_of_establishment": "1950", "authorized_access_point": "International society for experimental hematology", "biographical_information": ["Edite le périodique : Experimental hematology ; adresse en octobre 2002 : ISEH, 2025 M Street, N.W., Suite 800, Washington, DC 20036-3309, USA"]} 1 -2023-07-08 08:19:56.119962 2023-07-08 08:19:56.119973 a38dc0f6-ceac-4b17-b7a9-82516db03b1e {"md5": "25d0f69b8d807ecc70853a7c2a0faa21", "pid": "067321666", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/067321666", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/067321666", "source": "IDREF"}], "date_of_birth": "1812", "date_of_death": "1871", "preferred_name": "Dain, Charles", "country_associated": "fr", "authorized_access_point": "Dain, Charles, 1812-1871", "biographical_information": ["Représentant de la Guadeloupe à la Constituante de 1848"]} 1 -2023-07-08 08:19:56.26155 2023-07-08 08:19:56.26156 545065d3-13cc-4c58-a688-6c00c7dbc7b4 {"md5": "c2db0f1575efdb03e7659d38c3a3b365", "pid": "067345395", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/067345395", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/067345395", "source": "IDREF"}], "date_of_birth": "1968-03-27", "preferred_name": "Badilita, Cristian", "country_associated": "rm", "authorized_access_point": "Badilita, Cristian, 1968-....", "biographical_information": ["Docteur en histoire du christianisme ancien (Paris 4, 2002)"]} 1 -2023-07-08 08:19:56.378998 2023-07-08 08:19:56.379012 478d47d7-e16b-48db-9133-434d8dba693c {"md5": "3b70d1b3ee3c3d8b0bf9a8912f806c1c", "pid": "067692753", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/067692753", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/067692753", "source": "IDREF"}], "preferred_name": "Rehm, K.E.", "country_associated": "gw", "authorized_access_point": "Rehm, K.E.", "biographical_information": ["Professeur de médecine. Köln"]} 1 -2023-07-08 08:20:14.353175 2023-07-08 10:24:08.458312 7e4abdeb-4dda-43bb-bee6-be28a059966b {"md5": "bf799422864d67415193c465e6907ea1", "pid": "082560757", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/082560757", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/082560757", "source": "IDREF"}], "preferred_name": "Florent, Romain", "authorized_access_point": "Florent, Romain"} 2 -2023-07-08 08:19:56.634803 2023-07-08 08:19:56.634816 87eb8d6f-fd03-45f9-b94f-45822f2bd4da {"md5": "fa3391a93a0f3ca34256682b3a23fb91", "pid": "067732003", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/067732003", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/067732003", "source": "IDREF"}], "date_of_birth": "18XX", "date_of_death": "18XX", "preferred_name": "Mahlow, Georg Heinrich", "country_associated": "gw", "authorized_access_point": "Mahlow, Georg Heinrich, 18..-19.."} 1 -2023-07-08 08:19:56.753994 2023-07-08 08:19:56.754006 67a44541-3e01-45e6-b6eb-0e2bc04810a8 {"md5": "32bf894a59d5fa6544b9acc3cdda2d14", "pid": "068703597", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/068703597", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/068703597", "source": "IDREF"}], "preferred_name": "Parks, Ronald D.", "country_associated": "xxu", "authorized_access_point": "Parks, Ronald D.", "biographical_information": ["University of Rochester, Rochester, N.Y."]} 1 -2023-07-08 08:19:56.980424 2023-07-08 08:19:56.980437 ed5f19f7-e89f-4c63-bd29-472e46a59e0f {"md5": "98be9404ef11e0e75056ec864ef49c56", "pid": "069116458", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["gre", "grc", "eng"], "identifier": "http://www.idref.fr/069116458", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/069116458", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "075726858"}, "variant_name": ["Kantirea, M."], "date_of_birth": "1970", "preferred_name": "Kantiréa, Maria", "country_associated": "gr", "variant_access_point": ["Kantirea, M."], "authorized_access_point": "Kantiréa, Maria, 1970-...."} 1 -2023-07-08 08:19:57.091398 2023-07-08 08:19:57.091421 8e1ef684-89bc-4b39-becb-127f3021798f {"md5": "b5caecabffde34c0da1648377846f666", "pid": "069130817", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/069130817", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/069130817", "source": "IDREF"}], "date_of_birth": "1934", "preferred_name": "Parry, Hugh", "country_associated": "xxu", "authorized_access_point": "Parry, Hugh, 1934-....", "biographical_information": ["Professeur de lettres classiques."]} 1 -2023-07-08 08:19:57.316021 2023-07-08 08:19:57.31603 013629a5-7459-4f0a-8321-062a0ca52c52 {"md5": "d94be1da07f4d8444dadd22349746d8d", "pid": "06915547X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/06915547X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/06915547X", "source": "IDREF"}], "date_of_birth": "1975-09-03", "preferred_name": "Gibelin, Pierre-Antoine", "country_associated": "fr", "authorized_access_point": "Gibelin, Pierre-Antoine, 1975-....", "biographical_information": ["Auteur d'une thèse d'exercice en Pharmacie, soutenue le 19 avril 2001 à l'Université Montpellier 1"]} 1 -2023-07-08 08:19:57.415689 2023-07-08 08:19:57.415699 11f0e92a-225f-447a-b29a-5f31f2f477c0 {"md5": "5253012657e025d8be5210d36401b9f5", "pid": "069156964", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/069156964", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/069156964", "source": "IDREF"}], "preferred_name": "Matasar, Ann B.", "country_associated": "xxu", "authorized_access_point": "Matasar, Ann B."} 1 -2023-07-08 08:19:57.538555 2023-07-08 08:19:57.538563 65408f93-7186-474f-aae1-832995509290 {"md5": "1da2ea6b8899c7854e814bb7e36c34f1", "pid": "069265860", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "consultant en management", "identifier": "http://www.idref.fr/069265860", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/069265860", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Robinet, Jean-Claude, consultant en management", "country_associated": "fr", "authorized_access_point": "Robinet, Jean-Claude, 19..-...., consultant en management", "biographical_information": ["Consultant en management hôtelier"]} 1 -2023-07-08 08:19:57.654143 2023-07-08 08:19:57.654154 30a4c7a7-4a9a-4e31-8742-e1632ab1e466 {"md5": "e9d3e17e34739f2b248385f183d89c24", "pid": "069379777", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/069379777", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/069379777", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Portier, Guillaume", "country_associated": "fr", "authorized_access_point": "Portier, Guillaume, 19..-....", "biographical_information": ["Directeur de thèse, Université Paul Sabatier, Toulouse (en 2002)"]} 1 -2023-07-08 08:19:56.50155 2023-07-08 10:29:24.134764 b094f461-dad7-4753-838a-fb122b61d1ba {"md5": "91e5a06dd38c99af486b1ae1b1b75209", "pid": "06771496X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/06771496X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/06771496X", "source": "IDREF"}], "preferred_name": "Jain, Mahendra Kumar", "country_associated": "xxu", "authorized_access_point": "Jain, Mahendra Kumar", "biographical_information": ["En poste à l'Université de Delaware aux Etats-Unis."]} 2 -2023-07-08 08:19:57.208609 2023-07-08 10:29:52.262868 0b5c411b-5c4d-4455-be08-f9239ec2f102 {"md5": "29a1141f6d2c4d664f8fc728620a03df", "pid": "069148155", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/069148155", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/069148155", "source": "IDREF"}], "preferred_name": "Strobel, Howard A.", "country_associated": "xxu", "authorized_access_point": "Strobel, Howard A.", "biographical_information": ["En poste : Duke university, Durham, N.C. (en 1962)"]} 2 -2023-07-08 08:19:57.910061 2023-07-08 08:19:57.910072 7812ce51-5b92-44e5-87bb-c432732181df {"md5": "3a9bbcb3568670c39591886779b8a06f", "pid": "069679908", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "qualifier": "grammairienne", "identifier": "http://www.idref.fr/069679908", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/069679908", "source": "IDREF"}], "variant_name": ["García, Josefa Martín"], "preferred_name": "Martín García, Josefa, grammairienne", "country_associated": "sp", "variant_access_point": ["García, Josefa Martín"], "authorized_access_point": "Martín García, Josefa, grammairienne", "biographical_information": ["Grammairienne"]} 1 -2023-07-08 08:19:58.035116 2023-07-08 08:19:58.035129 6929ddbd-1fbb-4203-9a8d-efbaf4d1de47 {"md5": "2da51cc85afc6600c704fcab27a7f266", "pid": "069781524", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/069781524", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/069781524", "source": "IDREF"}], "preferred_name": "Pelizza, Giovanna", "country_associated": "it", "authorized_access_point": "Pelizza, Giovanna"} 1 -2023-07-08 08:19:58.297912 2023-07-08 08:19:58.297922 051ef117-5a08-448d-b0af-d6c12d7d57ec {"md5": "5d2f98d400a6c67ac2cd70f63fa98583", "pid": "069843783", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifier": "http://www.idref.fr/069843783", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/069843783", "source": "IDREF"}], "preferred_name": "Colloque d'histoire sociale", "country_associated": "fr", "date_of_termination": "1970-04-21", "date_of_establishment": "1970-04-20", "authorized_access_point": "Colloque d'histoire sociale (1970 ; Besançon)"} 1 -2023-07-08 08:19:58.436958 2023-07-08 08:19:58.43697 36dc64fe-6f64-435e-bdaf-5ea29df47d68 {"md5": "fcc8025935cb0796fe03c960969e8652", "pid": "069844119", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/069844119", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/069844119", "source": "IDREF"}], "variant_name": ["Barkmann, Udo"], "date_of_birth": "1955", "preferred_name": "Barkmann, Udo B.", "country_associated": "gw", "variant_access_point": ["Barkmann, Udo"], "parallel_access_point": ["Barkmann, Udo B."], "authorized_access_point": "Barkmann, Udo B., 1955-....", "biographical_information": ["Mongoliste allemand"]} 1 -2023-07-08 08:19:58.570389 2023-07-08 08:19:58.570406 e78349a6-3e53-4e82-bcd2-8005ac06fa89 {"md5": "8a206e32971501b3328528a2a2fb9b0f", "pid": "069886687", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifier": "http://www.idref.fr/069886687", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/069886687", "source": "IDREF"}], "preferred_name": "International conference on numerical methods in fluid dynamics", "country_associated": "xx", "date_of_termination": "1998-07-10", "date_of_establishment": "1998-07-06", "authorized_access_point": "International conference on numerical methods in fluid dynamics (16 ; 1998 ; Arcachon, Gironde)"} 1 -2023-07-08 08:19:58.695379 2023-07-08 08:19:58.695393 6a116775-9c0e-4f2a-89a9-a59adac8a943 {"md5": "a5eefa3e23666c01f892d0d5cf237cc3", "pid": "070054878", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/070054878", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/070054878", "source": "IDREF"}], "variant_name": ["Université de Bordeaux II. UFR des sciences de l'homme. Département des sciences de l'éducation", "Université de Bordeaux 2 Victor Segalen. UFR des Sciences sociales et psychologiques. Département des sciences de l'éducation", "Université de Bordeaux 2. Département des sciences de l'éducation", "Université de Bordeaux II. UFR des Sciences sociales et psychologiques. Département des sciences de l'éducation", "Université de Bordeaux 2. UFR des sciences de l'homme. Département des sciences de l'éducation"], "preferred_name": "Université Bordeaux-II. Département des sciences de l'éducation", "country_associated": "fr", "variant_access_point": ["Université de Bordeaux II. UFR des sciences de l'homme. Département des sciences de l'éducation", "Université de Bordeaux 2 Victor Segalen. UFR des Sciences sociales et psychologiques. Département des sciences de l'éducation", "Université de Bordeaux 2. Département des sciences de l'éducation", "Université de Bordeaux II. UFR des Sciences sociales et psychologiques. Département des sciences de l'éducation", "Université de Bordeaux 2. UFR des sciences de l'homme. Département des sciences de l'éducation"], "authorized_access_point": "Université Bordeaux-II. Département des sciences de l'éducation", "biographical_information": ["3ter Place de la Victoire - Bordeaux - Attaché à l'UFR des sciences sociales et psychologiques devenu l'UFR des sciences de l'Homme"]} 1 -2023-07-08 08:19:58.858629 2023-07-08 08:19:58.858664 eda2d38a-181b-4664-a091-4d9083c96bdb {"md5": "1b4f13c899588d1bf53d13ae74c62213", "pid": "070150737", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "conference": false, "identifier": "http://www.idref.fr/070150737", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/070150737", "source": "IDREF"}], "variant_name": ["Portugal. Comissão para a igualdade e para os direitos das mulheres"], "preferred_name": "Portugal. Comissão para a igualdade e direitos das mulheres", "country_associated": "po", "variant_access_point": ["Portugal. Comissão para a igualdade e para os direitos das mulheres"], "authorized_access_point": "Portugal. Comissão para a igualdade e direitos das mulheres"} 1 -2023-07-08 08:19:57.780941 2023-07-08 10:28:46.532223 6619293e-7fd0-49cc-9088-990ef28b3a25 {"md5": "753adb85207ac1968512ae4e64e5a2e0", "pid": "069487332", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/069487332", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/069487332", "source": "IDREF"}], "date_of_birth": "1942", "preferred_name": "Shimizu, Akitoshi", "country_associated": "xxk", "authorized_access_point": "Shimizu, Akitoshi, 1942-"} 2 -2023-07-08 08:19:58.990425 2023-07-08 08:19:58.990439 b33235d4-7706-44aa-b3af-88c8d98ade68 {"md5": "79d03335b8f1570f4802d8548da59883", "pid": "070160538", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["cat"], "conference": false, "identifier": "http://www.idref.fr/070160538", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/070160538", "source": "IDREF"}], "preferred_name": "Fundació Josep Pla (Palafrugell, Espagne)", "country_associated": "sp", "date_of_establishment": "1973", "authorized_access_point": "Fundació Josep Pla (Palafrugell, Espagne)", "biographical_information": ["Carrer Nou, 49-51 17200 Palafrugell ; courriel : fjpla@ddgi.es", "Créée en 1973 sous le nom de Fundació Privada Biblioteca Josep Pla"]} 1 -2023-07-08 08:19:59.37476 2023-07-08 08:19:59.374775 debb6255-82b9-470a-af30-841cd2cb87e7 {"md5": "933b90047535b52bdfb02836bd299a03", "pid": "070377510", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/070377510", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/070377510", "source": "IDREF"}], "preferred_name": "Coughanowr, Donald Ray", "authorized_access_point": "Coughanowr, Donald Ray", "biographical_information": ["Enseignant associé en génie chimique à Purdue University (1965)"]} 1 -2023-07-08 08:19:59.493508 2023-07-08 08:19:59.49352 8b85475a-4d1c-4688-90cd-7ae5930508bc {"md5": "889868caf91f6fa91721beb15130d844", "pid": "070400229", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/070400229", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/070400229", "source": "IDREF"}], "preferred_name": "Zárate Morán, Roberto", "authorized_access_point": "Zárate Morán, Roberto"} 1 -2023-07-08 08:19:59.613476 2023-07-08 08:19:59.613491 23d1931d-3250-4a30-8fba-17120a858764 {"md5": "8ade3f4f72e491f8875b403cf8bcdb37", "pid": "070478015", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/070478015", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/070478015", "source": "IDREF"}], "date_of_birth": "1973-04-17", "preferred_name": "Butavand, Alexis", "country_associated": "fr", "authorized_access_point": "Butavand, Alexis, 1973-....", "biographical_information": ["Docteur en médecine (Dijon, 2003)"]} 1 -2023-07-08 08:19:59.73823 2023-07-08 08:19:59.738246 4e77a713-b6c4-4a88-965b-32107c7e9b59 {"md5": "551552f57da2cd9217ff005d196fb1e8", "pid": "070664900", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/070664900", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/070664900", "source": "IDREF"}], "preferred_name": "Roth, Anthony", "country_associated": "xxk", "authorized_access_point": "Roth, Anthony", "biographical_information": ["Professeur : University college London doctoral programme in clinical psychology (en 1996)"]} 1 -2023-07-08 08:19:59.856377 2023-07-08 08:19:59.856395 270ed668-b7c3-4313-88bc-f93452c3be48 {"md5": "d53eb86c4acb52744a8e24792e37ce5a", "pid": "070977275", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/070977275", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/070977275", "source": "IDREF"}], "date_of_birth": "1971", "preferred_name": "Turner, Sharon", "country_associated": "sa", "authorized_access_point": "Turner, Sharon, 1971-...."} 1 -2023-07-08 08:19:59.99003 2023-07-08 08:19:59.99004 dc4aa60e-7cc2-4eb3-9176-d3f682f02f08 {"md5": "afca759509fc6d230bae461cc0771569", "pid": "071004092", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/071004092", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/071004092", "source": "IDREF"}], "preferred_name": "Freedmen and southern society project", "country_associated": "xxu", "date_of_establishment": "1976", "authorized_access_point": "Freedmen and southern society project", "biographical_information": ["Société crée en 1976 s'interesse à l'émancipation des esclaves noirs américains après la guerre de sécession (1861-1865)"]} 1 -2023-07-08 08:20:00.260792 2023-07-08 08:20:00.260807 d44ee0cf-ffd2-4be1-8200-509f456dce98 {"md5": "23103ff14d9dcf4bd20cd1f6a136f347", "pid": "071088679", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/071088679", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/071088679", "source": "IDREF"}], "preferred_name": "Chirol, Marie-Magdeleine", "country_associated": "xx", "authorized_access_point": "Chirol, Marie-Magdeleine"} 1 -2023-07-08 08:19:59.244284 2023-07-08 10:24:04.644111 bd8c4115-ccb0-4dee-8310-b930a112bb14 {"md5": "3bf5b60673ab413a142f5b25fcd8ea96", "pid": "070328005", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ara"], "identifier": "http://www.idref.fr/070328005", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/070328005", "source": "IDREF"}], "variant_name": ["ناجي, هلال", "Hilāl Nāǧī", "Nājī, Hilāl", "Naji, Hilel"], "date_of_birth": "1929", "date_of_death": "2011", "preferred_name": "Nāǧī, Hilāl", "country_associated": "iq", "variant_access_point": ["Hilāl Nāǧī", "Nājī, Hilāl", "Naji, Hilel"], "authorized_access_point": "Nāǧī, Hilāl, 1929-2011", "biographical_information": ["Professeur de langue arabe et historien."]} 2 -2023-07-08 08:19:59.110447 2023-07-08 10:30:31.326391 00e5dc80-9828-4822-8a44-f46a7d868290 {"md5": "3063eebf20ec89d390b11e59e1438790", "pid": "070199736", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/070199736", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/070199736", "source": "IDREF"}], "date_of_birth": "1953", "preferred_name": "Lornell, Kip", "country_associated": "xxu", "authorized_access_point": "Lornell, Kip, 1953-...", "biographical_information": ["Professeur au College of William and Mary puis à Smithsonian Institution puis à University of Virginia...(1995)"]} 2 -2023-07-08 08:20:00.382832 2023-07-08 08:20:00.382848 21ff8741-39f6-4e28-a840-643c67d7fbda {"md5": "1723ce825733a5de993bceed19208f8e", "pid": "071120637", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/071120637", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/071120637", "source": "IDREF"}], "variant_name": ["Binkley, David Aaron"], "preferred_name": "Binkley, David A.", "country_associated": "xx", "variant_access_point": ["Binkley, David Aaron"], "authorized_access_point": "Binkley, David A.", "biographical_information": ["Conservateur en chef au National Museum of African Arts, Smithsonian Institution, Washington, D. C."]} 1 -2023-07-08 08:20:00.631927 2023-07-08 08:20:00.631941 955965c6-e81d-4c9c-9f4d-d42e0676a476 {"md5": "c5b2f5595404a3fbf2e2e174511b6df1", "pid": "071324380", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/071324380", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/071324380", "source": "IDREF"}], "variant_name": ["Mineo, E. Igor"], "date_of_birth": "1959", "preferred_name": "Mineo, Ennio Igor", "country_associated": "it", "variant_access_point": ["Mineo, E. Igor"], "authorized_access_point": "Mineo, Ennio Igor, 1959-....", "biographical_information": ["Enseigne à l'université de Palerme"]} 1 -2023-07-08 08:20:01.201675 2023-07-08 08:20:01.201684 91d52324-e38c-4bd4-ab22-73d9c4736ec7 {"md5": "b481ee15cebf69966a5a125203934eeb", "pid": "071555994", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/071555994", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/071555994", "source": "IDREF"}], "variant_name": ["FAS", "Fédération des associations d'actionnaires salariés et anciens salariés"], "preferred_name": "Fédération française des associations d'actionnaires salariés et anciens salariés", "country_associated": "fr", "variant_access_point": ["FAS", "Fédération des associations d'actionnaires salariés et anciens salariés"], "authorized_access_point": "Fédération française des associations d'actionnaires salariés et anciens salariés"} 1 -2023-07-08 08:20:01.31473 2023-07-08 08:20:01.314741 8d9ff3e1-a0dd-4efd-a70d-3198b3570809 {"md5": "4fcb0d883d07cfaa86ba4147861cd149", "pid": "07162080X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "qualifier": "Théologien", "identifier": "http://www.idref.fr/07162080X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/07162080X", "source": "IDREF"}], "variant_name": ["Küchlin, Jean, Théologien"], "date_of_birth": "1546", "date_of_death": "1606-07-02", "preferred_name": "Küchlein, Johann, Théologien", "country_associated": "gw", "variant_access_point": ["Küchlin, Jean, Théologien"], "authorized_access_point": "Küchlein, Johann, 1546-1606, Théologien", "biographical_information": ["Théologien allemand. Ministre protestant et professeur en théologie. Il naquit à Wetterau (Hesse) en 1546, mourut à Leyde, le 2 juillet 1606. Après avoir terminé ses études à Heidelberg, il fut reçu ministre et attaché à l'église de Tackenheim. Les pasteurs calvinistes ayant été chassés du pays, en 1576, par l'électeur Louis, qui se prétendait luthérien, Johann Küchlein passa en Hollande, enseigna pendant dix-huit ans la théologie à Amsterdam, et dirigea, depuis 1595, le collège de Leyde. Devant lui, de nombreuses thèses furent soutenues. En 1613, ces travaux ont été publiés, à Genève, en un seul volume in-quarto, sous le titre : \\"Theologicae disputationes de religionis christianae capitibus praecipuis...\\". Selon Bayle, Guy Patin l'a fort loué, et un peu trop, car il le nommait \\"un des plus savants hommes de son siècle\\"."]} 1 -2023-07-08 08:20:01.431597 2023-07-08 08:20:01.431609 ef09ccb9-9a30-4382-bc9a-b2c1d4832b66 {"md5": "648813e8ef08e700a8d582707728d06b", "pid": "071960651", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/071960651", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/071960651", "source": "IDREF"}], "date_of_birth": "1926-05-04", "date_of_death": "2012-08-29", "preferred_name": "Wullaert, Pierre", "country_associated": "fr", "authorized_access_point": "Wullaert, Pierre, 1926-....", "biographical_information": ["Titulaire d'une thèse en Médecine (Lyon, 1956).- Chargé de cours à la faculté de Médecine. Attaché en premier au Centre Hospitalier Universitaire d'Angers (1984)"]} 1 -2023-07-08 08:20:00.503674 2023-07-08 10:27:53.422204 17ada3f7-d1ab-4e22-82ad-15ee8d3049da {"md5": "721dc0c8c3f0dc556495b6e58ea3338e", "pid": "071285571", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "médecin", "identifier": "http://www.idref.fr/071285571", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/071285571", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Louis, Edouard, médecin", "country_associated": "be", "authorized_access_point": "Louis, Edouard, 19..-...., médecin", "biographical_information": ["Docteur en médecine", "Travaille au CHU de Liège (Belgique) en 2023"]} 2 -2023-07-08 08:20:00.915589 2023-07-08 10:28:18.786638 0714a0a5-73a9-47fd-ae7b-9aa5b2eb5829 {"md5": "977a9268234b6d3ff63d25c531b0fe43", "pid": "071531149", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/071531149", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/071531149", "source": "IDREF"}], "variant_name": ["Arnold, G. C."], "date_of_birth": "1944", "preferred_name": "Arnold, Gregory C.", "country_associated": "nz", "variant_access_point": ["Arnold, G. C."], "authorized_access_point": "Arnold, Gregory C., 1944-...."} 2 -2023-07-08 08:20:00.756421 2023-07-08 10:28:31.633939 4fbc5765-5ac5-4654-a7cf-4ff5c9da3421 {"md5": "3c0d2d55088d56dd66d7ce51688cf151", "pid": "071344241", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "identifier": "http://www.idref.fr/071344241", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/071344241", "source": "IDREF"}], "date_of_birth": "1952", "preferred_name": "Ihori, Toshihiro", "country_associated": "ja", "authorized_access_point": "Ihori, Toshihiro, 1952-....", "biographical_information": ["Écrit aussi en anglais", "Économiste. Professeur d'économie à l'Université de la Ville de Tokyo, Japon (en 1993)"]} 2 -2023-07-08 08:20:01.540599 2023-07-08 08:20:01.540608 c08ca322-a4c1-4cef-b3b9-f5624d3e1bdd {"md5": "83ab0bf94d91a239cbf768b69ec31869", "pid": "072291826", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger", "eng"], "identifier": "http://www.idref.fr/072291826", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/072291826", "source": "IDREF"}], "date_of_birth": "1966", "preferred_name": "Schulenberg, Ulf", "country_associated": "gw", "authorized_access_point": "Schulenberg, Ulf, 1966-....", "biographical_information": ["Ecrit aussi en anglais", "Professeur d'études américaines à l'université de Brême (Allemagne)"]} 1 -2023-07-08 08:20:01.679581 2023-07-08 08:20:01.679592 905bd722-dfff-44bf-8c7e-cef497dd434d {"md5": "b6c068122b462c936237d40c304fbc75", "pid": "073256897", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/073256897", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/073256897", "source": "IDREF"}], "variant_name": ["RIRELF"], "preferred_name": "Réseau inter-universitaire de recherche sur l'évaluation en langue française", "country_associated": "fr", "variant_access_point": ["RIRELF"], "authorized_access_point": "Réseau inter-universitaire de recherche sur l'évaluation en langue française"} 1 -2023-07-08 08:20:01.809696 2023-07-08 08:20:01.809706 b5751fb2-7c55-4b70-ab1c-18fcf1e66359 {"md5": "5129829d3676e8bcf44b876077aaad08", "pid": "07327822X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/07327822X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/07327822X", "source": "IDREF"}], "preferred_name": "Beil, Brigitte", "country_associated": "gw", "authorized_access_point": "Beil, Brigitte"} 1 -2023-07-08 08:20:01.935261 2023-07-08 08:20:01.935274 fe87d98b-47e6-4887-8b21-dc90ade3e225 {"md5": "95be5620f840557368cb63a5b76db10d", "pid": "073281794", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/073281794", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/073281794", "source": "IDREF"}], "date_of_birth": "1953-07-01", "preferred_name": "Fosse, Thierry", "country_associated": "fr", "authorized_access_point": "Fosse, Thierry, 1953-....", "biographical_information": ["Maître de conférences des Universités, spécialisé en bactériologie", "Praticien hospitalier au CHU de Nice", "Titulaire d'une thèse de doctorat en Chimie, soutenue à l'université de Nice-Sophia Antipolis en 2009"]} 1 -2023-07-08 08:20:02.043976 2023-07-08 08:20:02.043989 97beab62-417c-4e20-9585-c6d6a1f1adfa {"md5": "4ee7f1c9e5f42d6fb17df9dcf926e7e3", "pid": "07330235X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/07330235X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/07330235X", "source": "IDREF"}], "date_of_birth": "1975-11-01", "preferred_name": "Raynaud, Elisabeth", "country_associated": "fr", "authorized_access_point": "Raynaud, Elisabeth, 1975-....", "biographical_information": ["Titulaire du Diplome d'Etat de Docteur en Pharmacie (Clermont-Ferrand 2002)"]} 1 -2023-07-08 08:20:02.16906 2023-07-08 08:20:02.169069 91da3d8c-08e8-4b7f-94cf-6b5c9b4e5680 {"md5": "6fc7d828787e0caa01e80d40f44c53b8", "pid": "073312673", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifier": "http://www.idref.fr/073312673", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/073312673", "source": "IDREF"}], "variant_name": ["Università degli studi (Lecce, Italie). Facoltà di magistero. Istituto di filosofia"], "preferred_name": "Università degli studi (Lecce, Italie). Istituto di filosofia", "country_associated": "it", "variant_access_point": ["Università degli studi (Lecce, Italie). Facoltà di magistero. Istituto di filosofia"], "authorized_access_point": "Università degli studi (Lecce, Italie). Istituto di filosofia"} 1 -2023-07-08 08:20:02.286727 2023-07-08 08:20:02.286741 438f1908-be8b-44f2-b0ba-501b8e4d2577 {"md5": "4dc889cc502af58540297b4720f36cff", "pid": "073329673", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/073329673", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/073329673", "source": "IDREF"}], "preferred_name": "Société française de psychologie. Département des applications et interventions en psychologie", "country_associated": "fr", "authorized_access_point": "Société française de psychologie. Département des applications et interventions en psychologie", "biographical_information": ["28/32 rue Serpente, 75006 Paris"]} 1 -2023-07-08 08:20:02.401001 2023-07-08 08:20:02.401015 f2fb494b-cde3-4a61-944c-87b941e3d254 {"md5": "50622a49221a2596b549d55e5ac71901", "pid": "073368989", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/073368989", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/073368989", "source": "IDREF"}], "variant_name": ["IAFSS"], "preferred_name": "International association for fire safety science", "country_associated": "xxk", "variant_access_point": ["IAFSS"], "authorized_access_point": "International association for fire safety science"} 1 -2023-07-08 08:20:02.514954 2023-07-08 08:20:02.514965 db1dfb1f-a08c-48d5-b6d7-4f8e31a69f2d {"md5": "31e0c7327d5365e4bcbc8f3d29e8a03b", "pid": "07338206X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/07338206X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/07338206X", "source": "IDREF"}], "variant_name": ["Duchesne, Gaston"], "date_of_birth": "1876", "date_of_death": "1909", "preferred_name": "Duchesne, Henri-Gaston", "country_associated": "fr", "variant_access_point": ["Duchesne, Gaston"], "authorized_access_point": "Duchesne, Henri-Gaston, 1876-1909", "biographical_information": ["Auteur d'ouvrages d'histoire et de littérature. A collaboré au \\"Bulletin de la Société historique d'Auteuil et de Passy"]} 1 -2023-07-08 08:20:02.629359 2023-07-08 08:20:02.629372 d1aa9070-209a-48bb-bac8-37e17bfa832e {"md5": "56834e49763f4def90ed5c2ff543d10d", "pid": "073432865", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/073432865", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/073432865", "source": "IDREF"}], "preferred_name": "Leclerc, Jérôme", "country_associated": "fr", "authorized_access_point": "Leclerc, Jérôme", "biographical_information": ["Ancien chef de clinique assistant d'anesthésie et de réanimation chirurgicale au CHU de Lille, praticien libéral au sein de la maternité Sainte Famille, Lille"]} 1 -2023-07-08 08:20:02.751838 2023-07-08 08:20:02.75185 9b8ee00a-2f54-42eb-bbbf-ff985175520b {"md5": "b3cab13f4797d61ec34bd2dbbcfa0acd", "pid": "073648027", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/073648027", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/073648027", "source": "IDREF"}], "date_of_birth": "1942-10-06", "preferred_name": "Bonjour, Pierre", "country_associated": "fr", "authorized_access_point": "Bonjour, Pierre, 1942-....", "biographical_information": ["Docteur en sciences de l'éducation. Directeur d'un centre médico-psycho-pédagogique (en 2000)"]} 1 -2023-07-08 08:20:02.980401 2023-07-08 08:20:02.980409 223f90a2-57b8-4eec-bd99-85679d25c76d {"md5": "bd42c3d5aa425de2c9f3246de60fb155", "pid": "073704199", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut", "eng"], "identifier": "http://www.idref.fr/073704199", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/073704199", "source": "IDREF"}], "variant_name": ["Wilke, Marieke"], "date_of_birth": "1971-07-17", "preferred_name": "Wilke, Marieke Johanna Lucinda", "country_associated": "ne", "variant_access_point": ["Wilke, Marieke"], "authorized_access_point": "Wilke, Marieke Johanna Lucinda, 1971-..."} 1 -2023-07-08 08:20:03.090696 2023-07-08 08:20:03.09071 adc833b8-5c95-4d37-8ec8-b3c05971caa8 {"md5": "c7603d2d4e2bc307001c7b83a1b283bc", "pid": "073875724", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": true, "identifier": "http://www.idref.fr/073875724", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/073875724", "source": "IDREF"}], "preferred_name": "Simposio Internacional de Literatura", "country_associated": "sp", "date_of_termination": "1998-07-31", "date_of_establishment": "1998-07-27", "authorized_access_point": "Simposio Internacional de Literatura (16 ; 1998 ; Madrid)"} 1 -2023-07-08 08:20:03.209493 2023-07-08 08:20:03.209506 e72a1e45-85af-43cc-8a3a-113ed4f58a5e {"md5": "812ff7a1dd54dbe9699f7a215361c7b0", "pid": "073949183", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/073949183", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/073949183", "source": "IDREF"}], "date_of_birth": "1960", "preferred_name": "Tamassia, Roberto", "country_associated": "xxu", "authorized_access_point": "Tamassia, Roberto, 1960-....", "biographical_information": ["En poste au département informatique de l'université Brown (en 2001)"]} 1 -2023-07-08 08:20:03.318387 2023-07-08 08:20:03.318399 695a53a9-3afa-47d9-8ed6-dac725277e93 {"md5": "ecfa754cb2ab872c338e4a3d05b12a0e", "pid": "074008552", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/074008552", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/074008552", "source": "IDREF"}], "date_of_birth": "1935-05-08", "date_of_death": "2011", "preferred_name": "Bouligand, Yves", "country_associated": "fr", "authorized_access_point": "Bouligand, Yves, 1935-2011", "biographical_information": ["En poste à la section des sciences de la vie et de la terre à l'Ecole pratique des hautes études (en 1989)"]} 1 -2023-07-08 08:20:03.427891 2023-07-08 08:20:03.427908 f930b07e-0abb-4644-96df-16637fa5d9a3 {"md5": "1abeaf317ab1b5de3b3d0f733e901bfa", "pid": "074011278", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifier": "http://www.idref.fr/074011278", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/074011278", "source": "IDREF"}], "variant_name": ["Heritage of Ancient Indian Astronomy"], "preferred_name": "Workshop on \\"Heritage of Ancient Indian Astronomy", "country_associated": "ii", "variant_access_point": ["Heritage of Ancient Indian Astronomy (1994 ; IUCAA)"], "date_of_establishment": "1994", "authorized_access_point": "Workshop on \\"Heritage of Ancient Indian Astronomy (1994 ; IUCAA)"} 1 -2023-07-08 08:20:03.549899 2023-07-08 08:20:03.549911 1636321d-61ee-423d-81c7-2b95e8582e21 {"md5": "69b2e9a0ca955abe3872ac3af1713a84", "pid": "074092855", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/074092855", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/074092855", "source": "IDREF"}], "preferred_name": "Nuttall ornithological club (Cambridge, Mass.)", "country_associated": "xxu", "date_of_establishment": "1873", "authorized_access_point": "Nuttall ornithological club (Cambridge, Mass.)", "biographical_information": ["c/o Museum of comparative zoology, Harvard university, Cambridge, Massachussettss 02138"]} 1 -2023-07-08 08:20:03.675048 2023-07-08 08:20:03.67506 7a3f9cfd-284f-4bad-b059-20ecc8a43d87 {"md5": "1ac636daeb53847ad5a79a058f546f62", "pid": "074110217", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "qualifier": "juriste", "identifier": "http://www.idref.fr/074110217", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/074110217", "source": "IDREF"}], "date_of_birth": "1948", "preferred_name": "Mosteller, Robert P., juriste", "country_associated": "xxu", "authorized_access_point": "Mosteller, Robert P., 1948-...., juriste", "biographical_information": ["Juriste", "Professeur à la Duke University, Durham, N.C., USA (en 2002)"]} 1 -2023-07-08 08:20:03.779463 2023-07-08 08:20:03.779471 d4bdec59-7b5c-4ac1-b75e-6b5a06e1fe9b {"md5": "0df9f34a6eec2d6a219c5bcfee689a49", "pid": "074287680", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "heb"], "identifier": "http://www.idref.fr/074287680", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/074287680", "source": "IDREF"}], "variant_name": ["Newman, Jacob Israel", "Nyuman, Yaàkov", "Nyuman, Yiśra'el Yaàkov", "Newman, Yacov", "Newman, J."], "date_of_birth": "1914-07-29", "preferred_name": "Newman, Jacob", "country_associated": "is", "variant_access_point": ["Newman, Jacob Israel", "Nyuman, Yaàkov", "Nyuman, Yiśra'el Yaàkov", "Newman, Yacov", "Newman, J."], "authorized_access_point": "Newman, Jacob, 1914-....", "biographical_information": ["Rabbin"]} 1 -2023-07-08 08:20:03.884544 2023-07-08 08:20:03.884555 2e2f349c-2471-4856-90d6-fed3b33729fd {"md5": "4105699694ae92a510d596c7417a0205", "pid": "07432389X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/07432389X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/07432389X", "source": "IDREF"}], "preferred_name": "Saint, Fabien", "country_associated": "fr", "authorized_access_point": "Saint, Fabien", "biographical_information": ["Praticien hospitalier en urologie"]} 1 -2023-07-08 08:20:03.992354 2023-07-08 08:20:03.992366 1b914204-1846-4650-922c-16d308737d3b {"md5": "fd899bb6cedb4d54d349218ed900111e", "pid": "074552996", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/074552996", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/074552996", "source": "IDREF"}], "preferred_name": "Boussi, Pierre", "country_associated": "fr", "authorized_access_point": "Boussi, Pierre", "biographical_information": ["Docteur en Mathématiques à l'Université d'Orléans (en 1979)"]} 1 -2023-07-08 08:20:04.10157 2023-07-08 08:20:04.101583 07521269-0664-4955-8b42-23503463bd01 {"md5": "7197dfa1462e7c8feef2315a27e19ac8", "pid": "074594788", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/074594788", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/074594788", "source": "IDREF"}], "date_of_birth": "1951", "preferred_name": "Clare, Johanne", "country_associated": "xx", "authorized_access_point": "Clare, Johanne, 1951-...", "biographical_information": ["Auteur d'un livre sur John Clare (1987)"]} 1 -2023-07-08 08:20:04.231063 2023-07-08 08:20:04.231072 5d850876-0495-47fd-8a5f-aa9f9b72f459 {"md5": "b1ab61c543367c5be659e75d2419e45a", "pid": "075029189", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/075029189", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/075029189", "source": "IDREF"}], "variant_name": ["Carles, Caroline", "Dumazer, Caroline"], "date_of_birth": "19XX", "preferred_name": "Dumazer-Carles, Caroline", "country_associated": "fr", "variant_access_point": ["Carles, Caroline", "Dumazer, Caroline"], "authorized_access_point": "Dumazer-Carles, Caroline, 19..-....", "biographical_information": ["Auteur d'une thèse d'exercice en Pharmacie, soutenue le 4 avril 1991 à l'Université Montpellier 1"]} 1 -2023-07-08 08:20:04.536821 2023-07-08 08:20:04.536836 ed2d8b6b-72c3-4b99-ac63-5dd9044bd211 {"md5": "4d0cf8c6bdc4c988fe6acf8514c1eae2", "pid": "075103672", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/075103672", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/075103672", "source": "IDREF"}], "preferred_name": "Dumax, Bernard", "country_associated": "fr", "authorized_access_point": "Dumax, Bernard", "biographical_information": ["Docteur en Physique des milieux ionisés à l'Université d'Orléans (en 1978)"]} 1 -2023-07-08 08:20:04.66474 2023-07-08 08:20:04.664748 805670fb-bd80-4492-ad3a-99ede8a9682c {"md5": "826d813f4900136e5cba0554ec6271be", "pid": "075129094", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/075129094", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/075129094", "source": "IDREF"}], "date_of_birth": "1957-08-06", "preferred_name": "Buss, Samuel R.", "country_associated": "xxu", "authorized_access_point": "Buss, Samuel R., 1957-....", "biographical_information": ["Professeur de mathématique et d'informatique à l'Université de Californie, San Diego (en 2003)"]} 1 -2023-07-08 08:20:04.786796 2023-07-08 08:20:04.786811 1b0ef3c1-b428-41f5-bc48-cc2493ec606d {"md5": "ce6685d0db1ca991fba9f0212e2730f1", "pid": "075134438", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/075134438", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/075134438", "source": "IDREF"}], "date_of_birth": "1879", "date_of_death": "1961", "preferred_name": "Chavance, René", "country_associated": "fr", "authorized_access_point": "Chavance, René, 1879-1961", "biographical_information": ["Artiste, écrivain"]} 1 -2023-07-08 08:20:04.899364 2023-07-08 08:20:04.899378 ac02289c-8907-4619-855d-4f581c1ee3aa {"md5": "e466e54690ecbc4e22b8a295d2150a82", "pid": "075146975", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": true, "identifier": "http://www.idref.fr/075146975", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/075146975", "source": "IDREF"}], "preferred_name": "Seminario Sociedad y oligarquías en la España moderna", "country_associated": "sp", "date_of_termination": "1998-12-17", "date_of_establishment": "1998-12-16", "authorized_access_point": "Seminario Sociedad y oligarquías en la España moderna (02 ; 1998 ; Ciudad Real)"} 1 -2023-07-08 08:20:05.019959 2023-07-08 08:20:05.019974 9777b140-9062-4a18-a584-cfcb5cc71b36 {"md5": "a85a57140994d016578c02a823a1d35b", "pid": "075434008", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/075434008", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/075434008", "source": "IDREF"}], "variant_name": ["Université de Poitiers. Centre documentaire coopératif EXC-1"], "preferred_name": "Centre documentaire coopératif EXC-1 (Poitiers)", "country_associated": "fr", "variant_access_point": ["Université de Poitiers. Centre documentaire coopératif EXC-1"], "authorized_access_point": "Centre documentaire coopératif EXC-1 (Poitiers)", "biographical_information": ["40 av. du Recteur Pineau, 86022 Poitiers Cedex"]} 1 -2023-07-08 08:20:05.173068 2023-07-08 08:20:05.173078 08ce9548-cc21-4798-8dfc-6c98e09f49e4 {"md5": "9692eb116af71fc5beef85834f40a568", "pid": "075435179", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/075435179", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/075435179", "source": "IDREF"}], "date_of_birth": "1961", "preferred_name": "Lemos, Rogerio de", "country_associated": "bl", "authorized_access_point": "Lemos, Rogerio de, 1961-...", "biographical_information": ["Université du Kent, Laboratoire d'informatique (Canterbury, Kent, Royaume-Uni)"]} 1 -2023-07-08 08:20:05.316281 2023-07-08 08:20:05.316294 751eebd2-4d05-4693-a284-c85436cc5efb {"md5": "653fd072e77efb3c7c81aa2c734c4b09", "pid": "075612178", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/075612178", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/075612178", "source": "IDREF"}], "preferred_name": "Scott, Susannah L.", "country_associated": "xxc", "authorized_access_point": "Scott, Susannah L.", "biographical_information": ["Chimiste, Université d'Ottawa, Canada (2003)"]} 1 -2023-07-08 08:20:05.439348 2023-07-08 08:20:05.439357 d66c1469-9053-411f-a87d-c11471e6fcb4 {"md5": "d6d16a4eddb10de5e7d0f496eb5da487", "pid": "075690632", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifier": "http://www.idref.fr/075690632", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/075690632", "source": "IDREF"}], "preferred_name": "Piccole Terme Traianee", "country_associated": "it", "authorized_access_point": "Piccole Terme Traianee", "biographical_information": ["Musée du Palazzo Valentini, Rome, Italie"]} 1 -2023-07-08 08:20:05.848049 2023-07-08 08:20:05.848056 ad32db52-0e7f-4cf7-ad2c-09f24817f8c5 {"md5": "69442a3c5a995721dd0c761586387486", "pid": "075912872", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/075912872", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/075912872", "source": "IDREF"}], "date_of_birth": "1980-07-03", "preferred_name": "Fayard, Valérie", "country_associated": "xx", "authorized_access_point": "Fayard, Valérie, 1980-...."} 1 -2023-07-08 08:20:06.118178 2023-07-08 08:20:06.118183 917d6acb-3702-4d34-924a-99ef8736fdda {"md5": "4807b49c2a5a3834f810cfdfefe48ffd", "pid": "076054241", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/076054241", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/076054241", "source": "IDREF"}], "variant_name": ["Archives départementales du Tarn-et-Garonne. Service éducatif"], "preferred_name": "Tarn-et-Garonne. Archives départementales. Service éducatif", "country_associated": "fr", "variant_access_point": ["Archives départementales du Tarn-et-Garonne. Service éducatif"], "authorized_access_point": "Tarn-et-Garonne. Archives départementales. Service éducatif"} 1 -2023-07-08 08:20:06.191657 2023-07-08 08:20:06.191662 3861a1a0-c9ca-44a0-90a0-6dc0ccb2f61f {"md5": "e69d5439884e667b98da91ceeb582923", "pid": "076340384", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "fre"], "conference": true, "identifier": "http://www.idref.fr/076340384", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/076340384", "source": "IDREF"}], "variant_name": ["École d'été de physique des Houches", "Les Houches Summer School", "Les Houches 2002", "Euro summer school", "NATO advanced study institute"], "preferred_name": "École d'été de physique théorique", "country_associated": "fr", "date_of_termination": "2002", "variant_access_point": ["École d'été de physique des Houches (78 ; 2002 ; Les Houches, Haute-Savoie, France)", "Les Houches Summer School (078 ; 2002 ; Les Houches, Haute-Savoie, France)", "Les Houches 2002", "Euro summer school (2002 ; Les Houches, Haute-Savoie, France)", "NATO advanced study institute (2002 ; Les Houches, Haute-Savoie, France)"], "date_of_establishment": "2002", "authorized_access_point": "École d'été de physique théorique (078 ; 2002 ; Les Houches, Haute-Savoie, France)"} 1 -2023-07-08 08:20:06.264663 2023-07-08 08:20:06.264668 7bf2d10e-629d-45aa-8dea-67d57e22da01 {"md5": "010512cac4d205da44ff0f5ac980087c", "pid": "076418731", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifier": "http://www.idref.fr/076418731", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/076418731", "source": "IDREF"}], "preferred_name": "Stiftung Vergessene Kulturgüter", "country_associated": "gw", "authorized_access_point": "Stiftung Vergessene Kulturgüter"} 1 -2023-07-08 08:20:06.367499 2023-07-08 08:20:06.367504 71c5d696-4865-42c6-a018-04eb59d73581 {"md5": "cb03d52149acf07e08e74f51b0877132", "pid": "076680819", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/076680819", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/076680819", "source": "IDREF"}], "date_of_birth": "1956", "preferred_name": "Perry, Martin", "country_associated": "nz", "authorized_access_point": "Perry, Martin, 1956-....", "biographical_information": ["Professeur de gestion à la Massey University, Nouvelle-Zélande"]} 1 -2023-07-08 08:20:05.550179 2023-07-08 10:25:37.751196 b619d351-cf55-42ff-b310-95925a0e84b6 {"md5": "517b11a5b9c72c6343b1021fa6cd9601", "pid": "075866307", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/075866307", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/075866307", "source": "IDREF"}], "preferred_name": "Henriot, Jean-Claude", "country_associated": "fr", "authorized_access_point": "Henriot, Jean-Claude", "biographical_information": ["Traduit de l'anglais en français"]} 2 -2023-07-08 08:20:05.94357 2023-07-08 10:26:51.45071 a8869615-8b17-4656-82c6-07f5a2f15f26 {"md5": "ed2a9642457f12f0e497117417ba9e39", "pid": "075964686", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/075964686", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/075964686", "source": "IDREF"}], "preferred_name": "Genest, Daniel", "country_associated": "fr", "authorized_access_point": "Genest, Daniel", "biographical_information": ["Docteur en sciences physiques à l'Université d'Orléans (en 1976)"]} 2 -2023-07-08 08:20:06.03049 2023-07-08 10:31:31.875774 1a719fa2-1d1a-41a6-954f-3e4215dcddab {"md5": "0a9e313dc5ae46cc6d5dc05c8c4c1e5e", "pid": "076007316", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/076007316", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/076007316", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Horosko, Marian", "country_associated": "xxu", "authorized_access_point": "Horosko, Marian, 19..-....", "biographical_information": ["Danseuse et pianiste"]} 2 -2023-07-08 08:20:06.560731 2023-07-08 08:20:06.560736 3abfb648-67ed-476f-aa9f-f5f11ac60623 {"md5": "ca9b14e0087120c49a1b02d2ae6794fa", "pid": "076721256", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "identifier": "http://www.idref.fr/076721256", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/076721256", "source": "IDREF"}], "preferred_name": "Kannae, F. K.", "country_associated": "xx", "authorized_access_point": "Kannae, F. K."} 1 -2023-07-08 08:20:06.637353 2023-07-08 08:20:06.637359 10618cc3-97c6-4985-bb87-b8f8e95367f1 {"md5": "ae4515029d2397b2084ae950365d0cb2", "pid": "076752054", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/076752054", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/076752054", "source": "IDREF"}], "preferred_name": "Imbert, Jean-Louis", "country_associated": "fr", "authorized_access_point": "Imbert, Jean-Louis"} 1 -2023-07-08 08:20:06.730232 2023-07-08 08:20:06.730238 a0fc73b3-2c78-44d4-9b50-eaeab2bbe5ec {"md5": "e4f07eb41ccc00a41c88d2a4166e5be5", "pid": "076905470", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/076905470", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/076905470", "source": "IDREF"}], "preferred_name": "Zameenzad, Adam", "country_associated": "pk", "authorized_access_point": "Zameenzad, Adam", "biographical_information": ["Ecrivain pakistanais d'expression anglaise"]} 1 -2023-07-08 08:20:06.836122 2023-07-08 08:20:06.836131 293498f5-792b-4646-9be0-7aa01e504e96 {"md5": "306f9fbb5ec66b8d2a5412f944422975", "pid": "076968537", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "conference": true, "identifier": "http://www.idref.fr/076968537", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/076968537", "source": "IDREF"}], "preferred_name": "Congresso brasileiro de automática", "country_associated": "bl", "date_of_termination": "1980-09-19", "date_of_establishment": "1980-09-16", "authorized_access_point": "Congresso brasileiro de automática (3 ; 1980 ; Rio de Janeiro, Brésil)"} 1 -2023-07-08 08:20:06.922804 2023-07-08 08:20:06.922809 29048f2e-5381-4523-a3ba-55b2051438dd {"md5": "cf564f094829d267cb456ba688daa533", "pid": "077006453", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "qualifier": "mathématicien", "identifier": "http://www.idref.fr/077006453", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077006453", "source": "IDREF"}], "preferred_name": "Yetter, David N., mathématicien", "country_associated": "xxu", "authorized_access_point": "Yetter, David N., mathématicien", "biographical_information": ["Mathématicien"]} 1 -2023-07-08 08:20:07.100712 2023-07-08 08:20:07.100717 06362bf7-e54b-4b9b-9ced-afba139a7785 {"md5": "b21f05c7a59f6fabfc76aaf610462e4c", "pid": "077119428", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/077119428", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077119428", "source": "IDREF"}], "date_of_birth": "1969-10-10", "preferred_name": "Bouamer, Salah", "country_associated": "xx", "authorized_access_point": "Bouamer, Salah, 1969-....", "biographical_information": ["Auteur d'une thèse en biologie animale option parasitologie soutenue en 2003 à l'Université de Perpignan"]} 1 -2023-07-08 08:20:07.196469 2023-07-08 08:20:07.196478 2206de12-e57e-44ec-961a-a8726d37aff4 {"md5": "412b9b7a4509568b785c906179772fd4", "pid": "077143043", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/077143043", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077143043", "source": "IDREF"}], "preferred_name": "Bencze, Lajos", "country_associated": "hu", "authorized_access_point": "Bencze, Lajos", "biographical_information": ["Université de Veszprem, Département de chimie organique, Hongrie"]} 1 -2023-07-08 08:20:07.289483 2023-07-08 08:20:07.289492 83a3ee79-4327-471e-8897-c7305eeac38b {"md5": "388a549e69376f791de2696af3abdc5c", "pid": "077162617", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/077162617", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077162617", "source": "IDREF"}], "variant_name": ["König, Hans Ludwig"], "date_of_birth": "16XX", "date_of_death": "1750", "preferred_name": "König, Johann Ludwig", "country_associated": "sz", "variant_access_point": ["König, Hans Ludwig"], "authorized_access_point": "König, Johann Ludwig, 16..-1750", "biographical_information": ["Libraire. - Bâle : 1707-1723? ; Offenbach : 1730-1750. - Père de Rudolf Emmanuel König"]} 1 -2023-07-08 08:20:07.359598 2023-07-08 08:20:07.359604 da2b384f-0180-4019-b87a-0fae9c4d79d9 {"md5": "9ff87c7df5fbfaf0269febc45a0782f0", "pid": "077335996", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/077335996", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077335996", "source": "IDREF"}], "preferred_name": "QualiContact (Clichy, Hauts-de-Seine)", "country_associated": "fr", "authorized_access_point": "QualiContact (Clichy, Hauts-de-Seine)", "biographical_information": ["Entreprise de marketing téléphonique", "Adresse : Espace Clichy, 38 rue Mozart, 92110 Clichy. Contact : 01.41.40.40.00. Télécopie : 01.41.40.40.24. Adresse électronique : info@qualicontact.com"]} 1 -2023-07-08 08:20:08.318695 2023-07-08 08:20:08.318702 42379c54-3402-4945-b193-f9786eb880f4 {"md5": "aec00c2170a1c691c6ba8a3db27d77a8", "pid": "078054982", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/078054982", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/078054982", "source": "IDREF"}], "variant_name": ["Géo-magazine"], "preferred_name": "Géo (Périodique)", "country_associated": "fr", "variant_access_point": ["Géo-magazine"], "authorized_access_point": "Géo (Périodique)", "biographical_information": ["Appartient au groupe Prisma Presse"]} 1 -2023-07-08 08:20:07.427894 2023-07-08 08:20:07.427901 dda47faf-a3df-4204-9194-4ff7fb09869d {"md5": "d877925f85b59b284868810741d6c000", "pid": "07733826X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/07733826X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/07733826X", "source": "IDREF"}], "variant_name": ["SNUEP", "SNUEP-FSU", "Fédération syndicale unitaire de l'enseignement, de l'éducation, de la recherche et de la culture (France). Syndicat national unitaire de l'enseignement professionnel"], "preferred_name": "Syndicat national unitaire de l'enseignement professionnel (France)", "country_associated": "fr", "variant_access_point": ["SNUEP", "SNUEP-FSU", "Fédération syndicale unitaire de l'enseignement, de l'éducation, de la recherche et de la culture (France). Syndicat national unitaire de l'enseignement professionnel"], "date_of_establishment": "2001", "authorized_access_point": "Syndicat national unitaire de l'enseignement professionnel (France)", "biographical_information": ["Créé à l'occasion de l'exclusion du Syndicat national de l'enseignement technique-Apprentissage autonome (SNETAA) de la Fédération syndicale unitaire de l'enseignement, de l'éducation, de la recherche et de la culture (FSU). Existence attestée dès juin 2001, congrès fondateur les 13 et 14 déc. 2001", "Adresse : 12 rue Cabanis, 75014 Paris. Tél. 01.45.65.02.56"]} 1 -2023-07-08 08:20:07.513886 2023-07-08 08:20:07.513889 efea17d8-c7dd-424a-890f-5c3719b3d4a9 {"md5": "b92dfb9261ae063688dd0c19b53b09a2", "pid": "077342097", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/077342097", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077342097", "source": "IDREF"}], "variant_name": ["ADIE", "Association pour le droit initiative économie (France)"], "preferred_name": "Association pour le droit à l'initiative économique (France)", "country_associated": "fr", "variant_access_point": ["ADIE", "Association pour le droit initiative économie (France)"], "date_of_establishment": "1990", "authorized_access_point": "Association pour le droit à l'initiative économique (France)", "biographical_information": ["Adresse : 4 bd Poissonnière : 75009 Paris. Contact : Tél. 01.56.03.59.00"]} 1 -2023-07-08 08:20:07.585321 2023-07-08 08:20:07.585326 c8e0e9b9-4ea5-4461-a832-d5e11f8706c4 {"md5": "042388d2c8b273aed4501c30feeafa99", "pid": "07741084X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/07741084X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/07741084X", "source": "IDREF"}], "preferred_name": "Ulma, Antoine", "country_associated": "fr", "authorized_access_point": "Ulma, Antoine"} 1 -2023-07-08 08:20:07.749795 2023-07-08 08:20:07.749801 fb77963e-a3bc-4022-b078-e121a50318b4 {"md5": "4be6c34f437ca480088309556e2ed800", "pid": "077446534", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/077446534", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077446534", "source": "IDREF"}], "preferred_name": "Slipknot", "country_associated": "xxu", "date_of_establishment": "1995", "authorized_access_point": "Slipknot", "biographical_information": ["Groupe de hard-rock", "Adresse : Des Moines (Iowa)", "Anders, chant (1994-1997)"]} 1 -2023-07-08 08:20:07.852258 2023-07-08 08:20:07.852263 25a45412-92d2-45c0-a84b-b70bb66a29e5 {"md5": "ff234a81f85656e76292046763f217d4", "pid": "07750528X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/07750528X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/07750528X", "source": "IDREF"}], "date_of_death": "2003", "preferred_name": "Grorud, Axel", "country_associated": "xx", "authorized_access_point": "Grorud, Axel, 19??-2003", "biographical_information": ["Titulaire d'un doctorat en sciences (Montpellier, 1978). Directeur de thèse en 2003"]} 1 -2023-07-08 08:20:07.94293 2023-07-08 08:20:07.942934 5fec3af9-9ea9-4a23-b6cd-e8336d01d395 {"md5": "279d7df00b920d67130f3a40a2aeee98", "pid": "077763009", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/077763009", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077763009", "source": "IDREF"}], "date_of_birth": "1964-05-02", "preferred_name": "Lynch, Stephen", "country_associated": "xxk", "authorized_access_point": "Lynch, Stephen, 1964-....", "biographical_information": ["En poste à l'Université de Manchester Metropolitan au Département de calcul et mathématiques, Royaume-Uni (2008)", "Maître de conférences (Catégorie de Conférencier B) depuis 1995"]} 1 -2023-07-08 08:20:08.233816 2023-07-08 08:20:08.233821 000370a4-2e7b-4613-b132-fdbb3de4a457 {"md5": "2375fdc29b517fab34490f04bc241bc4", "pid": "078038766", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/078038766", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/078038766", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Joop, Gerhard", "country_associated": "gw", "authorized_access_point": "Joop, Gerhard, 19..-...."} 1 -2023-07-08 08:20:08.1313 2023-07-08 10:24:35.839452 0fc2b47a-8f03-4b5f-8ab4-3577d39d4276 {"md5": "9469de81fa467173e7f285afe7796417", "pid": "077813138", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/077813138", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077813138", "source": "IDREF"}], "preferred_name": "Schneikert, Elisabeth", "country_associated": "fr", "authorized_access_point": "Schneikert, Elisabeth", "biographical_information": ["Titulaire d'un doctorat en Littérature française, Strasbourg 2, 2004"]} 2 -2023-07-08 08:20:08.027327 2023-07-08 10:29:16.165896 c84d97ea-9e5c-4c15-98e7-9719d8f1aaac {"md5": "3ae9f320ef04ac7e9f3967ab668c5c7c", "pid": "077775430", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/077775430", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077775430", "source": "IDREF"}], "date_of_birth": "1925-01-04", "preferred_name": "Gleitman, Henry", "country_associated": "xx", "authorized_access_point": "Gleitman, Henry, 1925-....", "biographical_information": ["Professeur de psychologie"]} 2 -2023-07-08 08:20:08.404414 2023-07-08 08:20:08.404421 556813fc-dee5-4a9a-9580-80b8da602785 {"md5": "678fc6c8594189d78e12806320aa8c1c", "pid": "078075467", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/078075467", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/078075467", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Kennedy, Ron", "country_associated": "xx", "authorized_access_point": "Kennedy, Ron, 19..-...."} 1 -2023-07-08 08:20:08.507378 2023-07-08 08:20:08.507381 0892ec7a-260d-4347-b4ad-4e69a4b88c42 {"md5": "ab0a3bb2602ea7faad3959541dccabdf", "pid": "078076641", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/078076641", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/078076641", "source": "IDREF"}], "date_of_birth": "1912", "date_of_death": "1976", "preferred_name": "Peyron, Joseph", "country_associated": "fr", "authorized_access_point": "Peyron, Joseph, 1912-1976", "biographical_information": ["Artiste lyrique (ténor) & chanteur de variétés", "Lieu de naissance Saint-Étienne"]} 1 -2023-07-08 08:20:08.577842 2023-07-08 08:20:08.577846 cfa5eb63-aeaa-4f4b-95f1-76d1d8c886d2 {"md5": "9354efe79ab33ad30268e8d41f1515c3", "pid": "078079330", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/078079330", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/078079330", "source": "IDREF"}], "preferred_name": "Bilchak, Vasilij S.", "country_associated": "ru", "authorized_access_point": "Bilchak, Vasilij S.", "biographical_information": ["Professeur d'économie à l'Université d'Etat d Kaliningrad, Russie."]} 1 -2023-07-08 08:20:08.647451 2023-07-08 08:20:08.647458 22e49685-0d09-4b26-b0ee-8d96efd6444a {"md5": "c12f5e99dab8e2430eb1e865379d8f7d", "pid": "078118948", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/078118948", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/078118948", "source": "IDREF"}], "date_of_birth": "1964", "preferred_name": "Ganeshamoorthy, Murugesu", "country_associated": "ce", "authorized_access_point": "Ganeshamoorthy, Murugesu, 1964-....", "biographical_information": ["Economiste."]} 1 -2023-07-08 08:20:08.722064 2023-07-08 08:20:08.722067 378b61a6-b6a1-4a80-a305-4e6129d1723b {"md5": "2fa519ebc3549396c90b8e4e29411edd", "pid": "078185556", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/078185556", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/078185556", "source": "IDREF"}], "preferred_name": "Réunion Internationale des Mathématiciens", "date_of_termination": "1937-07-10", "date_of_establishment": "1937-07-07", "authorized_access_point": "Réunion Internationale des Mathématiciens (1937 ; Paris)", "biographical_information": ["Cette réunion s'est tenue à l'occasion de l'Exposition de 1937"]} 1 -2023-07-08 08:20:08.794338 2023-07-08 08:20:08.794342 f8e84753-c5d8-4945-925f-d273b99dd1c9 {"md5": "49cb3820eb1bdd4cb3b3a027f93b0089", "pid": "078607078", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/078607078", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/078607078", "source": "IDREF"}], "variant_name": ["Abbaye de Candeil (Labessière-Candeil, Tarn)", "Abbaye royale de Notre-Dame de Candeil (Labessière-Candeil, Tarn)", "Abbaye de Cisterciens (Labessière-Candeil, Tarn ; Notre-Dame de Candeil, 1152-1790)"], "preferred_name": "Abbaye Notre-Dame de Candeil (Labessière-Candeil, Tarn)", "country_associated": "fr", "date_of_termination": "1790", "variant_access_point": ["Abbaye de Candeil (Labessière-Candeil, Tarn)", "Abbaye royale de Notre-Dame de Candeil (Labessière-Candeil, Tarn)", "Abbaye de Cisterciens (Labessière-Candeil, Tarn ; Notre-Dame de Candeil, 1152-1790)"], "date_of_establishment": "1152", "authorized_access_point": "Abbaye Notre-Dame de Candeil (Labessière-Candeil, Tarn)", "biographical_information": ["Abbaye de Cisterciens, fille de Clairvaux, fondée en 1152 par Raymond, comte de Toulouse. Elle fonda l'abbaye de Bonnecombe en Rouergue. Il y restait 5 religieux en 1768. Fermée à la Révolution puis démolie"]} 1 -2023-07-08 08:20:08.874885 2023-07-08 08:20:08.874891 7aee6e44-9fb5-4079-9028-e39127d82fd2 {"md5": "cc7cea0175bc3a03237951f2ad9b56bb", "pid": "078619505", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifier": "http://www.idref.fr/078619505", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/078619505", "source": "IDREF"}], "preferred_name": "Polyphony", "country_associated": "xxk", "date_of_establishment": "1986", "authorized_access_point": "Polyphony", "biographical_information": ["Choeur fondé par Stephen Layton. Au départ basé à Cambridge, il s'établit ensuite à Londres", "Adresse : Londres. Contact : 0870.742.4011. Télécopie : 0870.742.4012. Adresse électronique : info@polyphony.co.uk"]} 1 -2023-07-08 08:20:08.944514 2023-07-08 08:20:08.944519 26d6ad5f-e515-44d7-8462-276a32f99c6f {"md5": "847fe57fb220a7d7c36d6b59222108b5", "pid": "078640997", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa", "baq", "eng"], "identifier": "http://www.idref.fr/078640997", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/078640997", "source": "IDREF"}], "variant_name": ["Rubio Pilarte, Xabier"], "preferred_name": "Pilarte, Xabier Rubio", "country_associated": "sp", "variant_access_point": ["Rubio Pilarte, Xabier"], "authorized_access_point": "Pilarte, Xabier Rubio"} 1 -2023-07-08 08:20:09.024176 2023-07-08 08:20:09.02418 b6b5650c-2dfc-4386-8ebc-3d7738ddb784 {"md5": "634599666d5bc08b834c076d216cad4f", "pid": "078763487", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut"], "qualifier": "actrice", "identifier": "http://www.idref.fr/078763487", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/078763487", "source": "IDREF"}], "date_of_birth": "1962", "preferred_name": "Detmers, Maruschka, actrice", "country_associated": "ne", "authorized_access_point": "Detmers, Maruschka, 1962-..., actrice", "biographical_information": ["Actrice"]} 1 -2023-07-08 08:20:09.097825 2023-07-08 08:20:09.097831 b82363d0-2af6-4085-bc11-4f398c605f26 {"md5": "5ca215915f4fe911244970ca888d162f", "pid": "078835089", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/078835089", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/078835089", "source": "IDREF"}], "date_of_birth": "1958", "preferred_name": "Schmidt-Welle, Friedhelm", "country_associated": "gw", "authorized_access_point": "Schmidt-Welle, Friedhelm, 1958-....", "biographical_information": ["Chercheur de l'Institut latino-américain de Berlin dans le secteur de littérature et etudes culturelles (2003)"]} 1 -2023-07-08 08:20:09.346445 2023-07-08 08:20:09.346448 56af93bb-48c9-47fd-8dbd-6e4bb7b954fd {"md5": "922b8c0ee6df7d91451117b823682938", "pid": "07904011X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "qualifier": "philosophe", "identifier": "http://www.idref.fr/07904011X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/07904011X", "source": "IDREF"}], "date_of_birth": "1968", "preferred_name": "Weiberg, Anja, philosophe", "country_associated": "gw", "authorized_access_point": "Weiberg, Anja, 1968-...., philosophe", "biographical_information": ["Philosophe. Enseigne la philosophie à l'université de Vienne en 2016. Spécialités : philosophie de Wittgenstein, éthique, éthique appliquée, philosophie du viellissement"]} 1 -2023-07-08 08:20:09.544624 2023-07-08 08:20:09.544629 568f9b33-5b8e-4bd4-9d41-15667e630b58 {"md5": "55c474515822284d0bb4091289c1353c", "pid": "079151639", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ara"], "identifier": "http://www.idref.fr/079151639", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/079151639", "source": "IDREF"}], "preferred_name": "Ibn Ǧaddū, Aḥmad", "authorized_access_point": "Ibn Ǧaddū, Aḥmad"} 1 -2023-07-08 08:20:09.627535 2023-07-08 08:20:09.627542 43beb76c-247e-45cc-8f16-8c03c44bf082 {"md5": "2d3ecdad9d48b260896205f42356d255", "pid": "079157106", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/079157106", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/079157106", "source": "IDREF"}], "date_of_birth": "1914-07-05", "date_of_death": "1998-07-08", "preferred_name": "Garzetti, Albino", "country_associated": "it", "authorized_access_point": "Garzetti, Albino, 1914-1998", "biographical_information": ["Historien. Professeur d'histoire grecque et romaine à l'Université catholique de Milan (1951-1969). A aussi traduit du latin en italien et écrit en latin"]} 1 -2023-07-08 08:20:09.729111 2023-07-08 08:20:09.729119 601ee920-eb7a-4192-92e1-b12c074f687f {"md5": "9b96ce34e1b64ea9f577e7384b395299", "pid": "07925814X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifier": "http://www.idref.fr/07925814X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/07925814X", "source": "IDREF"}], "preferred_name": "Semaines sociales de France", "country_associated": "fr", "date_of_termination": "2003-11-16", "date_of_establishment": "2003-11-14", "authorized_access_point": "Semaines sociales de France (78 ; 2003 ; Paris)", "biographical_information": ["Du 14 au 16 novembre 2003"]} 1 -2023-07-08 08:20:09.91475 2023-07-08 08:20:09.914755 8d63fb73-e344-4c90-96af-84e5ccabdb43 {"md5": "3c6c57389dabbd23572e9416b908f2e2", "pid": "079436870", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "conference": false, "identifier": "http://www.idref.fr/079436870", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/079436870", "source": "IDREF"}], "variant_name": ["Universidade de São Paulo. Instituto oceanográfico"], "preferred_name": "Instituto oceanográfico (São Paulo, Brazil)", "country_associated": "bl", "variant_access_point": ["Universidade de São Paulo. Instituto oceanográfico"], "date_of_establishment": "1951", "authorized_access_point": "Instituto oceanográfico (São Paulo, Brazil)", "biographical_information": ["Praça do Oceanográfico, 191 - Cidade Universitária - 05508-900 - São Paulo, SP - Brazil"]} 1 -2023-07-08 08:20:10.881528 2023-07-08 08:20:10.881534 a85dfe3f-7820-4387-a18d-4564b6668149 {"md5": "8eeeefaa6bf0fd573c5baf5b0ed90d09", "pid": "08018734X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifier": "http://www.idref.fr/08018734X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/08018734X", "source": "IDREF"}], "preferred_name": "Studienkommission für die Reform des Offentlichen Dienstrechts (Allemagne)", "country_associated": "gw", "authorized_access_point": "Studienkommission für die Reform des Offentlichen Dienstrechts (Allemagne)"} 1 -2023-07-08 08:20:09.436228 2023-07-08 10:28:34.876456 c840a73b-66da-4680-9085-11072bcb3299 {"md5": "9a22ff0930e30f7f66574d7886e8c466", "pid": "079112943", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "qualifier": "psychologue", "identifier": "http://www.idref.fr/079112943", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/079112943", "source": "IDREF"}], "date_of_birth": "1919", "preferred_name": "Lambert, William Wilson, psychologue", "country_associated": "xxu", "authorized_access_point": "Lambert, William Wilson, 1919-...., psychologue", "biographical_information": ["Psychologue"]} 2 -2023-07-08 08:20:09.255257 2023-07-08 10:30:15.584193 05217ed2-ba6d-46a1-9afb-f636f89feab6 {"md5": "d161703de2446e5c132227702d8fcef9", "pid": "079020933", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/079020933", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/079020933", "source": "IDREF"}], "date_of_birth": "1940", "preferred_name": "Hull, Richard W.", "authorized_access_point": "Hull, Richard W., 1940-...."} 2 -2023-07-08 08:20:09.167567 2023-07-08 10:31:06.795757 ae56b421-73c6-4e59-93a7-61c513d38cf1 {"md5": "8e49b4a0cc9e2b158a37f091cd517637", "pid": "078835186", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/078835186", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/078835186", "source": "IDREF"}], "variant_name": ["Estle, Thomas L."], "date_of_birth": "1931", "preferred_name": "Estle, Thomas Leo", "country_associated": "xxu", "variant_access_point": ["Estle, Thomas L."], "authorized_access_point": "Estle, Thomas Leo, 1931-....", "biographical_information": ["Physicien, Professeur à la Rice University, Houston, Tex. (en 1976)"]} 2 -2023-07-08 08:20:10.015271 2023-07-08 08:20:10.015275 bbb8e964-d5f1-4f73-b090-91834b824508 {"md5": "2b96ff4c16a498e77e83db569f5182f7", "pid": "07948901X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/07948901X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/07948901X", "source": "IDREF"}], "variant_name": ["LAT", "Centre national de la recherche scientifique (France). Laboratoire Archéologie et territoires", "Centre national de la recherche scientifique (France). Unité mixte de recherche (6575)", "Centre national de la recherche scientifique (France). Unité mixte de recherche (9966)", "Centre national de la recherche scientifique (France). Unité propre de recherche (9018)", "Centre de recherches archéologiques (Valbonne, Alpes-maritimes). Equipe de recherche archéologique (0040)", "Université François Rabelais (Tours). Laboratoire Archéologie et territoires"], "preferred_name": "Laboratoire Archéologie et territoires (Tours)", "country_associated": "fr", "variant_access_point": ["LAT", "Centre national de la recherche scientifique (France). Laboratoire Archéologie et territoires", "Centre national de la recherche scientifique (France). Unité mixte de recherche (6575)", "Centre national de la recherche scientifique (France). Unité mixte de recherche (9966)", "Centre national de la recherche scientifique (France). Unité propre de recherche (9018)", "Centre de recherches archéologiques (Valbonne, Alpes-maritimes). Equipe de recherche archéologique (0040)", "Université François Rabelais (Tours). Laboratoire Archéologie et territoires"], "date_of_establishment": "1996-01-01", "authorized_access_point": "Laboratoire Archéologie et territoires (Tours)", "biographical_information": ["Le 01-01-1996, absorbe le GDR 0094 du CNRS \\"Société et cadre de vie au Moyen âge\\" qui devient un programme spécifique au sein du laboratoire ; le 01-01-2000, absorbe le GDR 0893 \\"Topographie chrétienne des cités de la Gaule"]} 1 -2023-07-08 08:20:10.107213 2023-07-08 08:20:10.107222 4bb5487a-874b-4344-9238-2292c5c9535a {"md5": "2360c9f4eff2ca6a1ad7b628d00069a2", "pid": "079506151", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/079506151", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/079506151", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "079505325"}, "variant_name": ["Bussano, Giovanni Francesco", "Bussani, Giacomo Francesco", "Bussano, Giacomo Francesco"], "preferred_name": "Bussani, Giovanni Francesco", "country_associated": "it", "variant_access_point": ["Bussano, Giovanni Francesco", "Bussani, Giacomo Francesco", "Bussano, Giacomo Francesco"], "authorized_access_point": "Bussani, Giovanni Francesco, 16..?-....", "biographical_information": ["Lbrettiste"]} 1 -2023-07-08 08:20:10.198873 2023-07-08 08:20:10.198879 44d3dec7-80f3-4edf-95c2-376984159f22 {"md5": "d1587189a8989bc339d0e2998b88515f", "pid": "079550746", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut", "eng"], "identifier": "http://www.idref.fr/079550746", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/079550746", "source": "IDREF"}], "variant_name": ["Venner, C. H."], "date_of_birth": "1963", "preferred_name": "Venner, Cormelis Henricus", "country_associated": "ne", "variant_access_point": ["Venner, C. H."], "authorized_access_point": "Venner, Cormelis Henricus, 1963-....", "biographical_information": ["En poste à : \\"Faculty of Mechanical Engineering, University of Twente\\" (Pays-Bas) en 2000"]} 1 -2023-07-08 08:20:10.355236 2023-07-08 08:20:10.355244 deca1141-a95b-4d0c-838d-b129c0c87ade {"md5": "799add8e0d6ef226e1d2666c4c13a1bb", "pid": "07992056X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/07992056X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/07992056X", "source": "IDREF"}], "date_of_birth": "1930", "preferred_name": "Monroe, Burt Leavelle", "country_associated": "xxu", "authorized_access_point": "Monroe, Burt Leavelle, 1930-....", "biographical_information": ["Biologiste. En poste au Biology department de l'University of Louisville, Kentucky, USA (en 1990)"]} 1 -2023-07-08 08:20:10.438265 2023-07-08 08:20:10.438273 d7c2ab76-f1e2-45ad-adb4-eecc5d937623 {"md5": "915d84a4cb4907601f5feb6f73b1322d", "pid": "080088325", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/080088325", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/080088325", "source": "IDREF"}], "date_of_birth": "18XX", "preferred_name": "Barberen, Pierre", "country_associated": "fr", "authorized_access_point": "Barberen, Pierre, 18..-....", "biographical_information": ["Avocat"]} 1 -2023-07-08 08:20:10.520908 2023-07-08 08:20:10.520911 6b6c4578-028a-453a-bb26-1a026e02fbac {"md5": "64b49f82121cfa2d56239e6a2058f356", "pid": "080102859", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifier": "http://www.idref.fr/080102859", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/080102859", "source": "IDREF"}], "preferred_name": "International Conference on Options for the Control of Influenza", "country_associated": "ja", "date_of_termination": "2003", "date_of_establishment": "2003", "authorized_access_point": "International Conference on Options for the Control of Influenza (5 ; 2003 ; Okinawa, Japan)"} 1 -2023-07-08 08:20:10.599454 2023-07-08 08:20:10.599461 ebecdbf4-bc8b-4108-9d7f-39e3eb3bae53 {"md5": "dd42f32a8d2e45c2153efdd6082818b4", "pid": "08013484X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/08013484X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/08013484X", "source": "IDREF"}], "preferred_name": "Delumeau, Martine", "country_associated": "fr", "authorized_access_point": "Delumeau, Martine"} 1 -2023-07-08 08:20:10.785842 2023-07-08 08:20:10.785849 228c4dd5-8cb8-42e2-b185-1362195dc753 {"md5": "07e074f27fbd638f2b8ba7138b891872", "pid": "080164994", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "nep"], "identifier": "http://www.idref.fr/080164994", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/080164994", "source": "IDREF"}], "variant_name": ["Pramode S. J. B. Rana", "Pramode Shamshere Rana"], "date_of_birth": "1932", "preferred_name": "Rana, Pramode Shamshere", "country_associated": "np", "variant_access_point": ["Pramode S. J. B. Rana", "Pramode Shamshere Rana"], "authorized_access_point": "Rana, Pramode Shamshere, 1932-....", "biographical_information": ["Juriste, avocat à la Cour Suprême du Népal"]} 1 -2023-07-08 08:20:10.274668 2023-07-08 10:31:02.752038 322dbc97-eb28-46c7-a79b-2e4df1f9200e {"md5": "db7f003f445f0c6bc52e7e7a2b4c30c1", "pid": "079890849", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/079890849", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/079890849", "source": "IDREF"}], "preferred_name": "Cazenave, Philippe", "authorized_access_point": "Cazenave, Philippe"} 2 -2023-07-08 08:20:10.99396 2023-07-08 08:20:10.99397 b70bbe73-9839-4290-8625-cf9bdd3d7f9c {"md5": "f31e674912e6f47460b18fc4be254ea2", "pid": "080307426", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/080307426", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/080307426", "source": "IDREF"}], "date_of_birth": "1957", "preferred_name": "Nicholson, Heather Norris", "country_associated": "xxk", "authorized_access_point": "Nicholson, Heather Norris, 1957-", "biographical_information": ["Chercheur honoraire à Birkbeck, University of London"]} 1 -2023-07-08 08:20:11.084723 2023-07-08 08:20:11.084729 c0ddc394-c060-4319-be76-97cb93a1b86c {"md5": "a1e7f82f721a3cc62b08ca76f71e1d19", "pid": "080487238", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/080487238", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/080487238", "source": "IDREF"}], "variant_name": ["Cancellerius, Franciscus", "Cancellierius, Franciscus", "Cancellieri, François", "Cancelieri, François"], "date_of_birth": "1751-10-10", "date_of_death": "1826-12-29", "preferred_name": "Cancellieri, Francesco", "country_associated": "it", "variant_access_point": ["Cancellerius, Franciscus", "Cancellierius, Franciscus", "Cancellieri, François", "Cancelieri, François"], "authorized_access_point": "Cancellieri, Francesco, 1751-1826", "biographical_information": ["A aussi écrit en latin et en français", "Lieu de naissance Rome. Lieu de décès Rome"]} 1 -2023-07-08 08:20:11.18136 2023-07-08 08:20:11.181365 2fa97918-33e9-4c52-8bfa-86baa46f6561 {"md5": "f96003948e4a596fdbad67e3f8d36c99", "pid": "080529712", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rum"], "conference": false, "identifier": "http://www.idref.fr/080529712", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/080529712", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "176034587"}, "variant_name": ["Universitatea tehnică din Cluj-Napoca", "Université technique de Cluj-Napoca (Roumanie)", "Technical university of Cluj-Napoca (Romania)", "École Supérieure Industrielle", "Școala Superioară Industrială", "Institut Polytechnique", "Institutul Politehnic"], "preferred_name": "Universitatea tehnică (Cluj-Napoca, Roumanie)", "country_associated": "rm", "variant_access_point": ["Universitatea tehnică din Cluj-Napoca", "Université technique de Cluj-Napoca (Roumanie)", "Technical university of Cluj-Napoca (Romania)", "École Supérieure Industrielle", "Școala Superioară Industrială", "Institut Polytechnique", "Institutul Politehnic"], "date_of_establishment": "1920", "authorized_access_point": "Universitatea tehnică (Cluj-Napoca, Roumanie)", "biographical_information": ["15 Str. Constantin Daicoviciu 3400 Cluj-Napoca (Roumanie)"]} 1 -2023-07-08 08:20:11.281534 2023-07-08 08:20:11.281539 e32af767-433c-47f3-9da3-5cf00c44aabd {"md5": "b1dc4433edb2374bed517ac1cea0e929", "pid": "080557732", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/080557732", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/080557732", "source": "IDREF"}], "preferred_name": "Belorgey, Marie-Ange", "country_associated": "fr", "authorized_access_point": "Belorgey, Marie-Ange", "biographical_information": ["Illustratrice. Éditeur-Imprimeur"]} 1 -2023-07-08 08:20:11.365837 2023-07-08 08:20:11.365844 0818edba-a87e-43ff-8a27-eba2b9ea94d7 {"md5": "f7c953358e3136cb2a7b56e2ecc245f5", "pid": "080577350", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifier": "http://www.idref.fr/080577350", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/080577350", "source": "IDREF"}], "variant_name": ["WEEC"], "preferred_name": "World environmental education congress", "date_of_termination": "2003-09-24", "variant_access_point": ["WEEC (1 ; 2003 ; Espinho, Portugal)"], "date_of_establishment": "2003-09-20", "parallel_access_point": ["Congreso mundial de educación ambiental (1 ; 2003 ; Espinho, Portugal)"], "authorized_access_point": "World environmental education congress (1 ; 2003 ; Espinho, Portugal)"} 1 -2023-07-08 08:20:11.454184 2023-07-08 08:20:11.454193 c582cdc7-8c29-41a3-a256-80e3434fb0d2 {"md5": "f86e742062109eec4065e3e46ba33205", "pid": "080596649", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifier": "http://www.idref.fr/080596649", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/080596649", "source": "IDREF"}], "preferred_name": "Journées françaises d'endocrinologie clinique, nutrition et métabolisme", "country_associated": "fr", "date_of_termination": "2000-11-25", "date_of_establishment": "2000-11-24", "authorized_access_point": "Journées françaises d'endocrinologie clinique, nutrition et métabolisme (20 ; 2000 ; Paris)"} 1 -2023-07-08 08:20:11.757304 2023-07-08 08:20:11.757312 e5701eba-bacf-43fa-bcc0-d01d380dc782 {"md5": "c05026c254d7cd76aaaf174b13af4b0f", "pid": "080641024", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/080641024", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/080641024", "source": "IDREF"}], "date_of_birth": "1938", "preferred_name": "Lamsdorff-Galagane, Vladimiro", "authorized_access_point": "Lamsdorff-Galagane, Vladimiro, 1938-....", "biographical_information": ["Professeur d'université à la faculté de droit de Santiago"]} 1 -2023-07-08 08:20:11.83512 2023-07-08 08:20:11.835123 916ce665-4824-40d6-83df-b3f52520df8a {"md5": "3a8714066dfd72c64b619ca09dd34ef0", "pid": "080647359", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/080647359", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/080647359", "source": "IDREF"}], "preferred_name": "Stephan, Werner", "authorized_access_point": "Stephan, Werner"} 1 -2023-07-08 08:20:11.649172 2023-07-08 10:30:05.891983 9a40a533-bedc-4621-b75f-ba7b453b7c12 {"md5": "b4bcc763b6f45f6ae6c247355bb87b46", "pid": "080622151", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/080622151", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/080622151", "source": "IDREF"}], "variant_name": ["竹內, 順一"], "date_of_birth": "1941", "preferred_name": "Takeuchi, Jun'ichi", "variant_access_point": ["竹內, 順一, 1941-...."], "authorized_access_point": "Takeuchi, Jun'ichi, 1941-...."} 2 -2023-07-08 08:20:11.915484 2023-07-08 08:20:11.915488 dc9f47c1-de1b-4d70-843a-947ba6b9666d {"md5": "67b5343d93fda4432bb6c29deb0f265f", "pid": "080678971", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn", "eng"], "qualifier": "physicien", "identifier": "http://www.idref.fr/080678971", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/080678971", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Ohta, Hiroshi, physicien", "country_associated": "ja", "authorized_access_point": "Ohta, Hiroshi, 19..-...., physicien", "biographical_information": ["Physicien, membre de la Physical society of Japan"]} 1 -2023-07-08 08:20:12.015218 2023-07-08 08:20:12.015222 4a3814ed-47d9-4f54-90ef-da3179c53c21 {"md5": "6ec218c72a492ad7a0113d7509bed4f6", "pid": "080683851", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "identifier": "http://www.idref.fr/080683851", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/080683851", "source": "IDREF"}], "variant_name": ["Palma Dias, Francisco"], "date_of_birth": "1942", "preferred_name": "Dias, Francisco Palma", "country_associated": "po", "variant_access_point": ["Palma Dias, Francisco"], "authorized_access_point": "Dias, Francisco Palma, 1942-....", "biographical_information": ["Poète"]} 1 -2023-07-08 08:20:12.131031 2023-07-08 08:20:12.131034 6b7daa24-9366-499d-b7eb-a6b622228a56 {"md5": "dc1c1d0ad296e0bddf7a98f0054bb4d9", "pid": "080722555", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/080722555", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/080722555", "source": "IDREF"}], "preferred_name": "Burris, William C.", "authorized_access_point": "Burris, William C."} 1 -2023-07-08 08:20:12.23492 2023-07-08 08:20:12.234926 adb22339-6e0a-43e9-bb4d-04e8af6a48e5 {"md5": "4aeb54a649201623857f26f28fd2c02c", "pid": "080824072", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut"], "conference": false, "identifier": "http://www.idref.fr/080824072", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/080824072", "source": "IDREF"}], "preferred_name": "Vereniging Bijstandsbond Amsterdam", "country_associated": "ne", "authorized_access_point": "Vereniging Bijstandsbond Amsterdam", "biographical_information": ["Adresse : Da Costakade 158, NL-1053 XC Amsterdam. Adresse électronique : bijsbnd@xs4all.nl"]} 1 -2023-07-08 08:20:12.327676 2023-07-08 08:20:12.327684 17e1aade-c6cc-49db-aa77-980c2d09ee56 {"md5": "0eb2cc270794dba3eec74a7771c8281a", "pid": "080923690", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/080923690", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/080923690", "source": "IDREF"}], "variant_name": ["ANP"], "preferred_name": "Association of Namibian Publishers", "country_associated": "sx", "variant_access_point": ["ANP"], "authorized_access_point": "Association of Namibian Publishers"} 1 -2023-07-08 08:20:12.418571 2023-07-08 08:20:12.418576 b10f3449-295c-4173-b5c0-8150f7ec44fc {"md5": "99b62918324ab30b8aa977cb0b98e9b9", "pid": "081103131", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["hau"], "identifier": "http://www.idref.fr/081103131", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/081103131", "source": "IDREF"}], "variant_name": ["Sahabi Liman, Maryam", "Maryam, Hajiya"], "date_of_birth": "1973", "preferred_name": "Liman, Maryam Sahabi", "country_associated": "nr", "variant_access_point": ["Sahabi Liman, Maryam", "Maryam, Hajiya"], "authorized_access_point": "Liman, Maryam Sahabi, 1973-...."} 1 -2023-07-08 08:20:12.512952 2023-07-08 08:20:12.512957 4423aab6-3918-453e-b150-19a5d8e5f3c4 {"md5": "945ea46c1d8a452065786fd278c6ff13", "pid": "081199392", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/081199392", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/081199392", "source": "IDREF"}], "date_of_birth": "1961", "preferred_name": "Mishra, Omprakash", "country_associated": "ii", "authorized_access_point": "Mishra, Omprakash, 1961-....", "biographical_information": ["Professeur de relations internationales, Jadavpur University, Calcutta"]} 1 -2023-07-08 08:20:12.699649 2023-07-08 08:20:12.699655 6a3eb4b2-4a20-4a37-8b0d-2475def36bc1 {"md5": "81dba2975e3e0ee966871e276946cae4", "pid": "081271395", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/081271395", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/081271395", "source": "IDREF"}], "variant_name": ["MacBeth, Brian Stuart", "Mc Beth, Brian Stuart", "Mac Beth, Brian Stuart"], "date_of_birth": "1951-01-15", "preferred_name": "McBeth, Brian Stuart", "country_associated": "xxk", "variant_access_point": ["MacBeth, Brian Stuart", "Mc Beth, Brian Stuart", "Mac Beth, Brian Stuart"], "authorized_access_point": "McBeth, Brian Stuart, 1951-....", "biographical_information": ["Economiste. Consultant indépendant spécialisé dans le domaine de l'énergie (en 1994)"]} 1 -2023-07-08 08:20:12.880384 2023-07-08 08:20:12.880388 863f67b1-033c-459c-afde-41e4ca44b440 {"md5": "85caae2defb88133e13d901ac2946160", "pid": "081402880", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/081402880", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/081402880", "source": "IDREF"}], "preferred_name": "Welter, Corine", "country_associated": "fr", "authorized_access_point": "Welter, Corine", "biographical_information": ["Titulaire d'un diplôme d'Etat de sage-femme"]} 1 -2023-07-08 08:20:12.603468 2023-07-08 10:29:30.800985 2dbe017a-03ca-4f50-8972-1fb23d9a7e54 {"md5": "aa829bbe1f8b40457c0a5ef62331ef1e", "pid": "081232683", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/081232683", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/081232683", "source": "IDREF"}], "variant_name": ["Das Gupta, Jyotirindra", "Gupta, Jyotirindra Das", "Jyotirindra, Dasgupta", "Jyotirindra, Das Gupta"], "preferred_name": "Dasgupta, Jyotirindra", "variant_access_point": ["Das Gupta, Jyotirindra", "Gupta, Jyotirindra Das", "Jyotirindra, Dasgupta", "Jyotirindra, Das Gupta"], "authorized_access_point": "Dasgupta, Jyotirindra"} 2 -2023-07-08 08:20:12.975116 2023-07-08 08:20:12.975124 a04e821b-1ee2-49d6-9de2-34730c0e1f1f {"md5": "0f605d61ba6203b0a6bf8b2dfb0b8af9", "pid": "081435827", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifier": "http://www.idref.fr/081435827", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/081435827", "source": "IDREF"}], "preferred_name": "India League (Londres)", "country_associated": "xxk", "authorized_access_point": "India League (Londres)"} 1 -2023-07-08 08:20:13.059029 2023-07-08 08:20:13.059037 d887da01-5e5b-4735-86af-848683ba6121 {"md5": "1e7d1ce5569b017ff6849b3c825e96af", "pid": "081436351", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/081436351", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/081436351", "source": "IDREF"}], "date_of_birth": "1973-11-07", "preferred_name": "Forey, Peggy", "country_associated": "fr", "authorized_access_point": "Forey, Peggy, 1973-....", "biographical_information": ["Médecin"]} 1 -2023-07-08 08:20:13.147712 2023-07-08 08:20:13.147717 a1eefea4-b725-4e2e-863b-b9d42384e36e {"md5": "2fa1ecd16b6a5da0e8268c6b89309046", "pid": "08147475X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "identifier": "http://www.idref.fr/08147475X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/08147475X", "source": "IDREF"}], "variant_name": ["Прейс, Александр Германович", "Preis, Alexandre G."], "date_of_birth": "1905", "date_of_death": "1942", "preferred_name": "Prejs, Aleksandr Germanovič", "country_associated": "ru", "variant_access_point": ["Preis, Alexandre G."], "authorized_access_point": "Prejs, Aleksandr Germanovič, 1905-1942", "biographical_information": ["Écrivain russe, auteur de nombreuses pièces de théâtre et de livrets d'opéra, notamment ceux de Chostakovitch, Le Nez et Lady Macbeth du district de Mtsensk."]} 1 -2023-07-08 08:20:13.234053 2023-07-08 08:20:13.234058 8df4a4d7-4ed1-470b-ba55-b5263228b7b7 {"md5": "373b853a74963603bd2d03929302cb5d", "pid": "081544693", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/081544693", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/081544693", "source": "IDREF"}], "preferred_name": "Pasquier, René", "country_associated": "fr", "authorized_access_point": "Pasquier, René"} 1 -2023-07-08 08:20:13.315461 2023-07-08 08:20:13.315467 d3e47265-118b-4ea5-8fdb-46260a5dd9e2 {"md5": "d000fa680c523d0330ab977e5524d1e2", "pid": "081600356", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/081600356", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/081600356", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Kenton, Susannah.", "authorized_access_point": "Kenton, Susannah., 19..-...."} 1 -2023-07-08 08:20:13.398909 2023-07-08 08:20:13.398914 e7d0459b-fffe-411b-8eb2-88e717df94b3 {"md5": "f9c720c9f7a51438053f966114f481c9", "pid": "081609558", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "ara"], "conference": false, "identifier": "http://www.idref.fr/081609558", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/081609558", "source": "IDREF"}], "variant_name": ["Oman. Minerals, Directorate General of", "Oman. Mudīrīyah al-ʿĀmmah lil-Maʿādin"], "preferred_name": "Oman. Directorate General of Minerals", "country_associated": "mk", "variant_access_point": ["Oman. Minerals, Directorate General of", "Oman. Mudīrīyah al-ʿĀmmah lil-Maʿādin"], "authorized_access_point": "Oman. Directorate General of Minerals"} 1 -2023-07-08 08:20:13.484332 2023-07-08 08:20:13.484337 0a6d7b0b-1ba1-41b7-8291-82c925728d3a {"md5": "929ebc67fe4364f943e738cd9c400dbe", "pid": "081719752", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifier": "http://www.idref.fr/081719752", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/081719752", "source": "IDREF"}], "preferred_name": "Colloque Hommage à Claude Allaigre", "country_associated": "fr", "date_of_termination": "2002-03", "date_of_establishment": "2002-03", "authorized_access_point": "Colloque Hommage à Claude Allaigre (2002 ; Pau)", "biographical_information": ["Organisé par le Laboratoire de recherches en langues et littératures romanes, études basques, espace carai͏̈be de l'Université de Pau et des Pays de l'Adour"]} 1 -2023-07-08 08:20:13.573203 2023-07-08 08:20:13.573212 5de01010-a5a3-4221-bf0a-3f5543100c95 {"md5": "fb15dfbeafb87fe0b269cbd36c557593", "pid": "081801793", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["chi"], "conference": false, "identifier": "http://www.idref.fr/081801793", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/081801793", "source": "IDREF"}], "preferred_name": "Zhongguo ren quan fa zhan ji jin hui", "country_associated": "cc", "parallel_access_point": ["China foundation for human rights development", "CFHRD"], "authorized_access_point": "Zhongguo ren quan fa zhan ji jin hui", "biographical_information": ["Organisation non-gouvernementale pour le développement des droits de l'homme en Chine"]} 1 -2023-07-08 08:20:13.667328 2023-07-08 08:20:13.667335 d1f35300-2cdc-4851-abde-798d864fb4f5 {"md5": "b91a475d458e984ced1c1f45673b32e6", "pid": "081895046", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ind"], "identifier": "http://www.idref.fr/081895046", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/081895046", "source": "IDREF"}], "variant_name": ["Airlangga Pribadi", "Kusman, Airlangga Pribadi"], "date_of_birth": "1976", "preferred_name": "Pribadi, Airlangga", "country_associated": "io", "variant_access_point": ["Airlangga Pribadi", "Kusman, Airlangga Pribadi"], "authorized_access_point": "Pribadi, Airlangga, 1976-", "biographical_information": ["Chercheur (Gugus Visioner Indonesia - GVI)"]} 1 -2023-07-08 08:20:13.772074 2023-07-08 08:20:13.772082 27b3de93-8dd6-48cf-9e1f-000fd617c871 {"md5": "f474551cf76f99c7ca77a44abbe8518b", "pid": "082025398", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/082025398", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/082025398", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Matteaccioli, Andrée", "country_associated": "fr", "authorized_access_point": "Matteaccioli, Andrée, 19..-....", "biographical_information": ["A enseigné à l'Université de Paris I Panthéon-Sorbonne, elle est chercheur-associée au MATISS"]} 1 -2023-07-08 08:20:20.462978 2023-07-08 08:20:20.462983 6a60de8d-9571-4124-8f90-5c731a868342 {"md5": "dabd37d16870bd9b1315680fe3d824a8", "pid": "087504146", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/087504146", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/087504146", "source": "IDREF"}], "date_of_birth": "1923", "preferred_name": "Rose, Harold", "authorized_access_point": "Rose, Harold, 1923-"} 1 -2023-07-08 08:20:13.870697 2023-07-08 08:20:13.870704 33ba0322-dece-4aeb-808a-b984a97633b0 {"md5": "ddb0cd35b39d75f328f93700d0c6351b", "pid": "082057826", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/082057826", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/082057826", "source": "IDREF"}], "date_of_birth": "1932", "preferred_name": "Herrera Montesinos, Guillermo", "country_associated": "pe", "authorized_access_point": "Herrera Montesinos, Guillermo, 1932-...."} 1 -2023-07-08 08:20:13.959069 2023-07-08 08:20:13.959081 df9277fe-8b99-4e9b-b869-cebf35e278f4 {"md5": "b4e834afb47e1d1cab2698ed41993195", "pid": "082085072", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/082085072", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/082085072", "source": "IDREF"}], "variant_name": ["G.R.I.A", "GRIA"], "preferred_name": "Groupe de réflexion interafricain (Paris)", "country_associated": "fr", "variant_access_point": ["G.R.I.A", "GRIA"], "date_of_establishment": "1986", "authorized_access_point": "Groupe de réflexion interafricain (Paris)", "biographical_information": ["Groupe consacré à la promotion des sciences physiques et technologiques en Afrique", "Adresse : 103 Bd. Saint-Michel, 75005 Paris"]} 1 -2023-07-08 08:20:14.156309 2023-07-08 08:20:14.15632 ca298eb2-3e06-481e-9474-a1b05cdad8e5 {"md5": "e457a4de54872473e8975f56195f1cd3", "pid": "082116008", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/082116008", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/082116008", "source": "IDREF"}], "date_of_birth": "1975-12-16", "preferred_name": "Duton, Frédéric", "country_associated": "fr", "authorized_access_point": "Duton, Frédéric, 1975-....", "biographical_information": ["Conservateur de bibliothèque : ENSSIB, promotion année 2005."]} 1 -2023-07-08 08:20:14.24242 2023-07-08 08:20:14.242431 307710b7-64fd-4e15-8a88-8792604a65d4 {"md5": "190ff32cbc589efb657b2989ddcb9069", "pid": "082333173", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/082333173", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/082333173", "source": "IDREF"}], "variant_name": ["Tartarat, Suzanne Boireau-"], "date_of_birth": "19XX", "preferred_name": "Boireau-Tartarat, Suzanne", "country_associated": "fr", "variant_access_point": ["Tartarat, Suzanne Boireau-"], "authorized_access_point": "Boireau-Tartarat, Suzanne, 19..-....", "biographical_information": ["Journaliste. Chargée des publications de la ville de Périgueux (en 2000)"]} 1 -2023-07-08 08:20:14.480358 2023-07-08 08:20:14.480366 7da1cf06-2674-473b-ab33-68170357746e {"md5": "75f1cacd4a5051e963a8c569e3fb36a8", "pid": "082609675", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/082609675", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/082609675", "source": "IDREF"}], "date_of_birth": "1966-08-28", "preferred_name": "Aboul-Fotouh, Anas", "country_associated": "ua", "authorized_access_point": "Aboul-Fotouh, Anas, 1966-...."} 1 -2023-07-08 08:20:14.592883 2023-07-08 08:20:14.592886 a70ab9b5-3930-445b-872c-655f917bcd15 {"md5": "7dfa91deacb716cb04980878d8238988", "pid": "082702446", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/082702446", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/082702446", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Malfait, Torkild", "country_associated": "xx", "authorized_access_point": "Malfait, Torkild, 19..-....", "biographical_information": ["Spécialiste d'art"]} 1 -2023-07-08 08:20:14.691716 2023-07-08 08:20:14.691726 da62907d-02f3-4302-98ef-00eca1bab26b {"md5": "b833d61347788e3249507f131f18d9c1", "pid": "083069119", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/083069119", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083069119", "source": "IDREF"}], "variant_name": ["Auberjonois, René Murat"], "date_of_birth": "1940-06-01", "date_of_death": "2019-12-08", "preferred_name": "Auberjonois, René", "country_associated": "xxu", "variant_access_point": ["Auberjonois, René Murat"], "authorized_access_point": "Auberjonois, René, 1940-2019", "biographical_information": ["Acteur"]} 1 -2023-07-08 08:20:14.799374 2023-07-08 08:20:14.79938 9458a958-37e6-43a5-a265-44dfabf6af94 {"md5": "e7d4dd5449296e0860bf74d3893408b3", "pid": "083194037", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/083194037", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083194037", "source": "IDREF"}], "date_of_birth": "1935-03-11", "preferred_name": "Levine, Daniel Urey", "country_associated": "xxu", "authorized_access_point": "Levine, Daniel Urey, 1935-....", "biographical_information": ["Possède un doctorat, en poste à l'université du Nebraska à Omaha"]} 1 -2023-07-08 08:20:14.892366 2023-07-08 08:20:14.892376 c93b044a-d564-4f17-9e53-018f1ca64d5a {"md5": "9eb389f67b31e6113af7b5eceabbccb4", "pid": "083221689", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/083221689", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083221689", "source": "IDREF"}], "variant_name": ["Breithaupt, Max", "Breithaupt, Maximilian K."], "date_of_birth": "1888", "date_of_death": "1965", "preferred_name": "Breithaupt, Maximilian", "country_associated": "gw", "variant_access_point": ["Breithaupt, Max", "Breithaupt, Maximilian K."], "authorized_access_point": "Breithaupt, Maximilian, 1888-1965", "biographical_information": ["Philologue"]} 1 -2023-07-08 08:20:14.050722 2023-07-08 10:28:27.517204 351783b1-a9b7-4c4f-83a9-49f91dfd3051 {"md5": "26cf161b4cbda2f902d1dbb0042b2e57", "pid": "082091943", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/082091943", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/082091943", "source": "IDREF"}], "date_of_birth": "1938", "preferred_name": "Normann, Reinhard von", "country_associated": "sz", "authorized_access_point": "Normann, Reinhard von, 1938-...."} 2 -2023-07-08 08:20:14.982572 2023-07-08 08:20:14.982578 78b8a950-55f6-49fc-8e8a-94e65d414c89 {"md5": "462f407392fec4b25e42cf2d1c545966", "pid": "083252819", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/083252819", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083252819", "source": "IDREF"}], "date_of_birth": "1940-12-05", "preferred_name": "Padmanabhan, Sundararajan", "country_associated": "ii", "authorized_access_point": "Padmanabhan, Sundararajan, 1940-....", "biographical_information": ["Chef de l'armée indienne de septembre 2000 à décembre 2002"]} 1 -2023-07-08 08:20:15.082023 2023-07-08 08:20:15.082032 22cff0f1-156c-4dd3-a439-401cb5b57323 {"md5": "c34219c8be84193ec8437b6b856952aa", "pid": "083373365", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "identifier": "http://www.idref.fr/083373365", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083373365", "source": "IDREF"}], "preferred_name": "Hámos, L. von", "country_associated": "xx", "authorized_access_point": "Hámos, L. von"} 1 -2023-07-08 08:20:15.164872 2023-07-08 08:20:15.164879 281e0167-8aa0-4ea1-85cb-dfbe68953559 {"md5": "6f0cf8d132cc4b4a88cb69b18eb44410", "pid": "083467815", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/083467815", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083467815", "source": "IDREF"}], "preferred_name": "Chen, E. C. M.", "country_associated": "xxu", "authorized_access_point": "Chen, E. C. M.", "biographical_information": ["En poste : Professor in the Department of Natural and Applied Sciences at the University of Houston-Clear Lake, Tex. (2004)"]} 1 -2023-07-08 08:20:15.249441 2023-07-08 08:20:15.249447 4279871f-aab1-4e92-bd0a-5b359848336a {"md5": "a9885b1712d2a30020c2372364e6e584", "pid": "083488790", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifier": "http://www.idref.fr/083488790", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083488790", "source": "IDREF"}], "preferred_name": "Einstürzende Neubauten", "country_associated": "gw", "date_of_establishment": "1980", "authorized_access_point": "Einstürzende Neubauten", "biographical_information": ["Groupe de rock industriel", "Adresse : Hambourg (Allemagne)", "Unruh, N. U., batterie"]} 1 -2023-07-08 08:20:15.336894 2023-07-08 08:20:15.336897 0db5a466-da70-490d-913a-b50b2534813a {"md5": "8c5c8ac667d552df2a19d3584cb2df89", "pid": "083493778", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/083493778", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083493778", "source": "IDREF"}], "preferred_name": "Kaewthep, Kanoksak", "authorized_access_point": "Kaewthep, Kanoksak"} 1 -2023-07-08 08:20:15.411926 2023-07-08 08:20:15.41193 918f25f6-4949-463a-8b67-ba3f7dfab006 {"md5": "43d33f0b337321c4b407aa286005c827", "pid": "083553843", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/083553843", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083553843", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Ponchel, Arnaud", "country_associated": "fr", "authorized_access_point": "Ponchel, Arnaud, 19..-....", "biographical_information": ["Thèse de doctorat en Sciences des matériaux soutenue en 2001 à l'Université de Paris 6"]} 1 -2023-07-08 08:20:15.499704 2023-07-08 08:20:15.499711 a61f4980-a709-498a-8622-f91c16d50332 {"md5": "17f1d40e87fbbe4aecbcf0087a54d601", "pid": "083568077", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/083568077", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083568077", "source": "IDREF"}], "preferred_name": "Petropoulos, Marios", "country_associated": "fr", "authorized_access_point": "Petropoulos, Marios", "biographical_information": ["Physicien, en poste à l'École polytechnique depuis 2000, conférencier dans le cadre de \\"l'Université de tous les savoirs - la suite\\""]} 1 -2023-07-08 08:20:15.592236 2023-07-08 08:20:15.592242 37591088-0ff6-49e1-b4a8-bd300b7a1438 {"md5": "05fbd5207a3233c94be3a1a2ef73f065", "pid": "083580522", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": false, "identifier": "http://www.idref.fr/083580522", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083580522", "source": "IDREF"}], "variant_name": ["OIE"], "preferred_name": "Organisation internationale des employeurs", "variant_access_point": ["OIE"], "authorized_access_point": "Organisation internationale des employeurs", "biographical_information": ["Réseau de 136 organisations nationales d'employeurs dans 132 pays dont la mission est de promouvoir et de défendre les intérets des employeurs dans les forums internationaux.", "26 chemin de Joinville 1216 Cointrin Genève Suisse, tél (41) 22 929 0000"]} 1 -2023-07-08 08:20:15.689259 2023-07-08 08:20:15.689268 7d3048ec-168c-4039-a82d-f4088f61e5c6 {"md5": "60b5259b17abe4fa8e32ea9eade1a34b", "pid": "083680683", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifier": "http://www.idref.fr/083680683", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083680683", "source": "IDREF"}], "variant_name": ["Annual SIGCSE Conference on Innovation and Technology in Computer Science Education", "ITiCSE'99"], "preferred_name": "Annual SIGCSE-SIGCUE Conference on Innovation and Technology in Computer Science Education", "country_associated": "pl", "date_of_termination": "1999-07-01", "variant_access_point": ["Annual SIGCSE Conference on Innovation and Technology in Computer Science Education (4 ; 1999 ; Cracow, Poland)", "ITiCSE'99"], "date_of_establishment": "1999-06-27", "authorized_access_point": "Annual SIGCSE-SIGCUE Conference on Innovation and Technology in Computer Science Education (4 ; 1999 ; Cracow, Poland)"} 1 -2023-07-08 08:20:15.789671 2023-07-08 08:20:15.789683 7424ae40-1609-4e61-a018-0ee58d7c462e {"md5": "5be88531ba8bf73a41327940eef37cee", "pid": "083712941", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/083712941", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083712941", "source": "IDREF"}], "preferred_name": "Rowland, James R.", "country_associated": "xxu", "authorized_access_point": "Rowland, James R."} 1 -2023-07-08 08:20:16.873106 2023-07-08 08:20:16.873111 d8b7fb1e-9bd6-48f8-9d77-2a2b7760054b {"md5": "a3c0d041000f81ef3fe46af445bad77d", "pid": "084029463", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/084029463", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/084029463", "source": "IDREF"}], "preferred_name": "Samba, Désiré", "authorized_access_point": "Samba, Désiré", "biographical_information": ["Praticien hospitalier au service d'Anesthésie Réanimation Chirurgicale et SAMU du CHU de Caen (en 2004)"]} 1 -2023-07-08 08:20:15.874741 2023-07-08 08:20:15.874752 a237bf1c-0eaf-47b4-ae15-5b79bf494d89 {"md5": "fd137b57523d1e665e73ac534a28a725", "pid": "083715789", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/083715789", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083715789", "source": "IDREF"}], "variant_name": ["CLAM", "Université de Paris VII. Centre d'études comparatistes des littératures antiques et modernes"], "preferred_name": "Centre d'études comparatistes des littératures antiques et modernes", "country_associated": "fr", "variant_access_point": ["CLAM", "Université de Paris VII. Centre d'études comparatistes des littératures antiques et modernes"], "authorized_access_point": "Centre d'études comparatistes des littératures antiques et modernes"} 1 -2023-07-08 08:20:15.964425 2023-07-08 08:20:15.964436 ec29d574-6ca8-437d-8636-83d9afff8bd8 {"md5": "44cc8a69bc05fd2bd705a1f2fe46083e", "pid": "083726861", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/083726861", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083726861", "source": "IDREF"}], "date_of_birth": "1970-11-08", "preferred_name": "Fernandez, Frédéric", "country_associated": "fr", "authorized_access_point": "Fernandez, Frédéric, 1970-..."} 1 -2023-07-08 08:20:16.063973 2023-07-08 08:20:16.063978 7716111c-a668-4891-a314-38dfc81b7b10 {"md5": "c43dc747c3e3ab65cbd2062feba3ff4b", "pid": "083737499", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifier": "http://www.idref.fr/083737499", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083737499", "source": "IDREF"}], "variant_name": ["Негин, Олег", "Негин, Олег Игоревич", "Negin, Oleg Grigorevič", "Негин, О. И.", "Negin, O. G."], "date_of_birth": "1970-07-02", "preferred_name": "Neguine, Oleg", "country_associated": "ru", "variant_access_point": ["Негин, Олег Игоревич", "Negin, Oleg Grigorevič", "Негин, О. И.", "Negin, O. G."], "parallel_access_point": ["Negin, Oleg"], "authorized_access_point": "Neguine, Oleg, 1970-....", "biographical_information": ["Ecrivain et scénariste"]} 1 -2023-07-08 08:20:16.166616 2023-07-08 08:20:16.166621 b6fb8b8d-9da4-4e38-b683-336a515eaf5d {"md5": "6c7801e948262cd65a32c020abd49060", "pid": "083767827", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/083767827", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083767827", "source": "IDREF"}], "preferred_name": "Olivier, Jean-Baptiste", "country_associated": "fr", "authorized_access_point": "Olivier, Jean-Baptiste"} 1 -2023-07-08 08:20:16.281059 2023-07-08 08:20:16.281068 3c1f3ff9-a545-444b-a8e0-2b477502eb53 {"md5": "c5191be41f4e6c0ef739bcf56e0cdd4e", "pid": "083843361", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ori"], "identifier": "http://www.idref.fr/083843361", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083843361", "source": "IDREF"}], "variant_name": ["Dungdung, Daud"], "preferred_name": "Dungadunga, Dāud", "country_associated": "ii", "variant_access_point": ["Dungdung, Daud"], "authorized_access_point": "Dungadunga, Dāud", "biographical_information": ["Linguiste"]} 1 -2023-07-08 08:20:16.376702 2023-07-08 08:20:16.376711 794de230-a3ec-4bed-ab2f-2550bcc7384e {"md5": "4172f5618042b2d747f13a05a1d87cbb", "pid": "083843981", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/083843981", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083843981", "source": "IDREF"}], "preferred_name": "Mazo, Robert M.", "country_associated": "xxu", "authorized_access_point": "Mazo, Robert M.", "biographical_information": ["University of Oregon, Eugene, USA (en 2001)"]} 1 -2023-07-08 08:20:16.457189 2023-07-08 08:20:16.457201 d02609f0-0019-42d8-97c7-aed7dfe1688c {"md5": "24cb17acc68c73640df30641cc706e86", "pid": "083885463", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/083885463", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083885463", "source": "IDREF"}], "preferred_name": "Uzan, Michel", "country_associated": "xx", "authorized_access_point": "Uzan, Michel", "biographical_information": ["Docteur en Chirurgie dentaire, ancien assistant hospitalo-universitaire en parodontologie à la Faculté de Chirurgie dentaire de Paris 5, (en 2005)"]} 1 -2023-07-08 08:20:16.547327 2023-07-08 08:20:16.547332 2695b2f8-9a45-4603-86f9-3453c4deb2ca {"md5": "b3688eabcfe96ee8421d58f417b59447", "pid": "083928715", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/083928715", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083928715", "source": "IDREF"}], "preferred_name": "Moisson, Stéphanie", "country_associated": "fr", "authorized_access_point": "Moisson, Stéphanie"} 1 -2023-07-08 08:20:16.638384 2023-07-08 08:20:16.638391 1167a5e8-59c5-474f-ab81-9cf9625ce131 {"md5": "852d780dece09c192e700f4075394d11", "pid": "083961488", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifier": "http://www.idref.fr/083961488", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083961488", "source": "IDREF"}], "variant_name": ["University of Cambridge. Hamilton Kerr Institute"], "preferred_name": "Hamilton Kerr Institute (Cambridge)", "variant_access_point": ["University of Cambridge. Hamilton Kerr Institute"], "authorized_access_point": "Hamilton Kerr Institute (Cambridge)", "biographical_information": ["Hamilton Kerr Institute - Whittlesford - Cambridge CB2 4NE"]} 1 -2023-07-08 08:20:16.713475 2023-07-08 08:20:16.713479 425f52a0-6ddf-459b-a5ce-85a7c2f508d7 {"md5": "d42cd49a7c7ea3d5101df39a20deb584", "pid": "083970592", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/083970592", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083970592", "source": "IDREF"}], "variant_name": ["El Houssaini, Souhail"], "date_of_birth": "19..", "preferred_name": "El Ghazi El Houssaini, Souhail", "country_associated": "fr", "variant_access_point": ["El Houssaini, Souhail"], "authorized_access_point": "El Ghazi El Houssaini, Souhail, 19..-", "biographical_information": ["Auteur d'une thèse de doc. univ. en informatique fondamentale et sciences de la computation (Aix-Marseille 2, fac de Luminy, 1986)"]} 1 -2023-07-08 08:20:16.940556 2023-07-08 08:20:16.940561 2e1f1b56-51c9-467e-931b-ee11ce0a6409 {"md5": "8febfa17d72a635189d3a7354cb7bb10", "pid": "084037407", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": false, "identifier": "http://www.idref.fr/084037407", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/084037407", "source": "IDREF"}], "variant_name": ["Editorial Planeta", "Grupo Planeta"], "preferred_name": "Grupo editorial Planeta", "country_associated": "sp", "variant_access_point": ["Editorial Planeta", "Grupo Planeta"], "date_of_establishment": "1949", "authorized_access_point": "Grupo editorial Planeta"} 1 -2023-07-08 08:20:17.024497 2023-07-08 08:20:17.024502 cea66064-03be-42ed-a6e8-ab849c34b074 {"md5": "3684834c20980e4dec78288a805ca146", "pid": "084062320", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/084062320", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/084062320", "source": "IDREF"}], "variant_name": ["Riba, Marie-Louise", "De Bonald-Riba, Marie-Louise", "Riba-Bonald, Marie-Louise de", "Riba de Bonald, Marie-Louise"], "preferred_name": "Bonald, Marie-Louise de", "country_associated": "fr", "variant_access_point": ["Riba, Marie-Louise", "De Bonald-Riba, Marie-Louise", "Riba-Bonald, Marie-Louise de", "Riba de Bonald, Marie-Louise"], "authorized_access_point": "Bonald, Marie-Louise de", "biographical_information": ["Titulaire d'un doctorat en Sciences à l'Institut national polytechnique de Toulouse, en 1991"]} 1 -2023-07-08 08:20:17.111733 2023-07-08 08:20:17.111743 ed2e98a8-2a22-445b-a470-52bbc79eadf1 {"md5": "d18a5bfadb01c9b5d7617a8ed415e5b4", "pid": "084074752", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/084074752", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/084074752", "source": "IDREF"}], "date_of_birth": "17XX", "date_of_death": "18..", "preferred_name": "Lacoste, D.", "country_associated": "fr", "authorized_access_point": "Lacoste, D., 17..-...."} 1 -2023-07-08 08:20:17.296301 2023-07-08 08:20:17.296306 5678486a-75ba-4d54-b8b7-c2cfd91e8406 {"md5": "06311d53a7811e867700bde36f5bbc84", "pid": "084324856", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/084324856", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/084324856", "source": "IDREF"}], "date_of_birth": "1975-01-07", "preferred_name": "Masutti, Christophe", "country_associated": "fr", "authorized_access_point": "Masutti, Christophe, 1975-....", "biographical_information": ["Titulaire d'un doctorat en épistémologie, histoire des sciences et techniques (Strasbourg 1, 2004)"]} 1 -2023-07-08 08:20:17.381015 2023-07-08 08:20:17.381022 9a544c4c-dd09-4b59-939d-4b998e08f52a {"md5": "aa151d2a8c234a35fbea69956e256734", "pid": "08433293X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/08433293X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/08433293X", "source": "IDREF"}], "date_of_birth": "1814", "date_of_death": "1890", "preferred_name": "Scarth, Harry Mengden", "country_associated": "xxk", "authorized_access_point": "Scarth, Harry Mengden, 1814-1890", "biographical_information": ["Historien"]} 1 -2023-07-08 08:20:17.475064 2023-07-08 08:20:17.475074 9f2d4a08-fffa-415e-a6c9-c996ed4bbea7 {"md5": "d335b2f88d35167eab2a6d7fb6aef624", "pid": "084346450", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/084346450", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/084346450", "source": "IDREF"}], "date_of_birth": "1963", "preferred_name": "Lin, Xiaoqing Diana", "country_associated": "xxu", "authorized_access_point": "Lin, Xiaoqing Diana, 1963-....", "biographical_information": ["Professeur associé d'histoire à l'Université d'Indiana Northwest (en 2005)"]} 1 -2023-07-08 08:20:17.750703 2023-07-08 08:20:17.75071 d1e9ca23-67b6-484b-8a77-a8e8095c549c {"md5": "2dca86760592f455f86d5cc87be8726f", "pid": "084728949", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/084728949", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/084728949", "source": "IDREF"}], "variant_name": ["Kabbaj, Fouzia", "Baghery Kabbaj, Fouzia", "Baghery-Kabbaj, Fouzia"], "date_of_birth": "1953-07-05", "preferred_name": "Baghery, Fouzia", "country_associated": "fr", "variant_access_point": ["Kabbaj, Fouzia", "Baghery Kabbaj, Fouzia", "Baghery-Kabbaj, Fouzia"], "authorized_access_point": "Baghery, Fouzia, 1953-....", "biographical_information": ["Enseignante chercheuse en mathématiques appliquées à l'université polytechnique Hauts-de-France (UPHF) et rattachée au laboratoire de mathématiques et leurs applications de Valenciennes (LAMAV) en 2018."]} 1 -2023-07-08 08:20:17.57078 2023-07-08 10:29:50.030261 217724f9-9d53-4c0c-ba35-b534f692275f {"md5": "a390eca9690c2c83c7f1b6d8613a0fba", "pid": "084531029", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "qualifier": "cryptologue", "identifier": "http://www.idref.fr/084531029", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/084531029", "source": "IDREF"}], "date_of_birth": "1891-09-24", "date_of_death": "1969-11-12", "preferred_name": "Friedman, William Frederick, cryptologue", "country_associated": "xxu", "authorized_access_point": "Friedman, William Frederick, 1891-1969, cryptologue", "biographical_information": ["Crytologue"]} 2 -2023-07-08 08:20:17.659607 2023-07-08 10:31:37.889608 f13d9e32-94f2-4510-bf32-7f4cf34e38e0 {"md5": "3d038758267993ea774e682e21154b5c", "pid": "084675810", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/084675810", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/084675810", "source": "IDREF"}], "preferred_name": "Johansson, Thomas B.", "country_associated": "sw", "authorized_access_point": "Johansson, Thomas B.", "biographical_information": ["Directeur du Programme Energie et Atmosphère du Programme des Nations Unies pour le Développement et professeur d'analyse de systèmes énergétiques, détaché de l'Université de Lund (Suède)"]} 2 -2023-07-08 08:20:17.843583 2023-07-08 08:20:17.843586 43d8fc46-e18c-4f0b-b10a-5e53d9227131 {"md5": "5a0aea88719ef135e25695e8d9b905b5", "pid": "085001392", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["baq", "spa"], "identifier": "http://www.idref.fr/085001392", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/085001392", "source": "IDREF"}], "variant_name": ["Quejata Gárate, Elías", "Gárate, Elías Quejata"], "date_of_birth": "1934-10-26", "preferred_name": "Quejeta, Elías", "country_associated": "sp", "variant_access_point": ["Quejata Gárate, Elías", "Gárate, Elías Quejata"], "authorized_access_point": "Quejeta, Elías, 1934-....", "biographical_information": ["Cinéaste et producteur basque"]} 1 -2023-07-08 08:20:17.922441 2023-07-08 08:20:17.92245 c102ee7b-f63f-48f7-8874-df0ee86015b4 {"md5": "720e7fb9de0d23e6363dbdc944196b08", "pid": "085232629", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifier": "http://www.idref.fr/085232629", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/085232629", "source": "IDREF"}], "preferred_name": "Colloquium on Cellular and Biochemical Aspects in Diabetic Retinopathy", "country_associated": "fr", "date_of_termination": "1978-02-03", "date_of_establishment": "1978-02-02", "authorized_access_point": "Colloquium on Cellular and Biochemical Aspects in Diabetic Retinopathy (1978 ; Paris, France)"} 1 -2023-07-08 08:20:18.0184 2023-07-08 08:20:18.018406 d314cd8a-e98e-4491-8391-db9c4e9ea282 {"md5": "3a0d57b18b60736809e467b9c3968b05", "pid": "085232815", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/085232815", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/085232815", "source": "IDREF"}], "preferred_name": "Duhault, J.", "country_associated": "fr", "authorized_access_point": "Duhault, J."} 1 -2023-07-08 08:20:18.298058 2023-07-08 08:20:18.298064 b5abb4bd-e477-4b29-9a6d-04ff7ae0d92f {"md5": "e4d7e6e07f0cbb9128bcac5564d793b7", "pid": "085617598", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/085617598", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/085617598", "source": "IDREF"}], "date_of_birth": "1978-01-04", "preferred_name": "Marie-Cousin, Alexia", "country_associated": "fr", "authorized_access_point": "Marie-Cousin, Alexia, 1978-....", "biographical_information": ["Titulaire d'un doctorat d'exercice en chirurgie dentaire (Rennes : 2005)", "Directeur d'une thèse d'exercice en chirurgie dentaire (Rennes : 2011)"]} 1 -2023-07-08 08:20:18.482637 2023-07-08 08:20:18.482647 7b68b208-47e4-4727-b7f6-9eed428cc242 {"md5": "ca5205bebde6f8c02380e74d69e1aaed", "pid": "085731390", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/085731390", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/085731390", "source": "IDREF"}], "date_of_birth": "1957-08-15", "preferred_name": "Grandgirard, Alain", "country_associated": "fr", "authorized_access_point": "Grandgirard, Alain, 1957-....", "biographical_information": ["Docteur en médecine (Besançon, 1986)"]} 1 -2023-07-08 08:20:18.569001 2023-07-08 08:20:18.56901 2e42f631-b3ca-489c-9807-7e1a4365afae {"md5": "f2279ea4528e0c5ab90e760b77ac29ec", "pid": "085825069", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/085825069", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/085825069", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Leimberg, Inge", "country_associated": "gw", "authorized_access_point": "Leimberg, Inge, 19..-....", "biographical_information": ["Spécialiste de la littérature anglaise"]} 1 -2023-07-08 08:20:18.679276 2023-07-08 08:20:18.67928 bb3b7d38-9a1d-49a4-852d-0c39d654b6aa {"md5": "884875bf71aacfd86734555f35661a4d", "pid": "085826367", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/085826367", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/085826367", "source": "IDREF"}], "variant_name": ["Hebert, Anne-Sophie", "Vidal, Anne-Sophie"], "date_of_birth": "19XX", "preferred_name": "Hebert-Vidal, Anne-Sophie", "country_associated": "fr", "variant_access_point": ["Hebert, Anne-Sophie", "Vidal, Anne-Sophie"], "authorized_access_point": "Hebert-Vidal, Anne-Sophie, 19..-...."} 1 -2023-07-08 08:20:18.772813 2023-07-08 08:20:18.772822 96c3b530-3424-4b3a-a990-815ae4524409 {"md5": "9484881a248a0ca4b794032235395802", "pid": "085835943", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/085835943", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/085835943", "source": "IDREF"}], "preferred_name": "Finney, Ruth S.", "country_associated": "xx", "authorized_access_point": "Finney, Ruth S."} 1 -2023-07-08 08:20:18.109765 2023-07-08 10:28:54.460687 9a1dd2e2-322d-41c8-9999-8eefe7ce52e4 {"md5": "f2eb751ba671f1dbcafca3e74e5b6c4f", "pid": "085535621", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/085535621", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/085535621", "source": "IDREF"}], "date_of_birth": "1904", "date_of_death": "1976", "preferred_name": "Hoijer, Harry", "country_associated": "xxu", "authorized_access_point": "Hoijer, Harry, 1904-1976", "biographical_information": ["Anthropologue américain"]} 2 -2023-07-08 08:20:18.197954 2023-07-08 10:30:21.203538 465027a0-0ece-418c-82d7-d22aecc88f99 {"md5": "f869cd5185f451c9b94d0f80b5398b58", "pid": "085598143", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/085598143", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/085598143", "source": "IDREF"}], "preferred_name": "Berger-Perrin, René", "authorized_access_point": "Berger-Perrin, René"} 2 -2023-07-08 08:20:18.859471 2023-07-08 08:20:18.859479 3211fbdd-43b6-4093-b2c5-71f38a1fa218 {"md5": "978e093ae6b1adbdd53268180a68ddb1", "pid": "085856525", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "qualifier": "archiviste", "identifier": "http://www.idref.fr/085856525", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/085856525", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Lichter, Eduard, archiviste", "country_associated": "gw", "authorized_access_point": "Lichter, Eduard, 19..-...., archiviste", "biographical_information": ["Archiviste"]} 1 -2023-07-08 08:20:19.051444 2023-07-08 08:20:19.051449 ae584c6f-aab7-40af-a768-9dd8aa983213 {"md5": "66f497bbc265c5704f4683c595778f19", "pid": "086019740", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": false, "identifier": "http://www.idref.fr/086019740", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/086019740", "source": "IDREF"}], "variant_name": ["Universidad complutense de Madrid. Facultad de ciencias políticas y sociología. Departamento de antropología social"], "preferred_name": "Universidad complutense de Madrid. Departamento de antropología social", "country_associated": "sp", "variant_access_point": ["Universidad complutense de Madrid. Facultad de ciencias políticas y sociología. Departamento de antropología social"], "authorized_access_point": "Universidad complutense de Madrid. Departamento de antropología social"} 1 -2023-07-08 08:20:19.158433 2023-07-08 08:20:19.158444 030c8fb6-dad6-43c3-be9c-19735e092b73 {"md5": "4d12eda8e5487888f2c3bd4b3fca3e11", "pid": "086021311", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/086021311", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/086021311", "source": "IDREF"}], "variant_name": ["Stichting Onderzoekscentrum Turkestan en Azerbaycan", "Stichting Onderzoekscentrum Türkistan en Azerbaycan", "S.O.T.A.", "SOTA", "Türkistan ve Azerbaycan Ara ̧stirma Merkezi", "Research Centre for Turkestan and Azerbaijan", "TSentr issledovaniia Turkestan - Azerbaidzhan", "Turkestan and Azerbaijan Research Centre", "Research Centre for Turkestan, Azerbaijan, Crimea, Caucuasus, and Siberia"], "preferred_name": "Stichting Onderzoekscentrum Turkestan en Azerbaidzjan", "country_associated": "ne", "variant_access_point": ["Stichting Onderzoekscentrum Turkestan en Azerbaycan", "Stichting Onderzoekscentrum Türkistan en Azerbaycan", "S.O.T.A.", "SOTA", "Türkistan ve Azerbaycan Ara ̧stirma Merkezi", "Research Centre for Turkestan and Azerbaijan", "TSentr issledovaniia Turkestan - Azerbaidzhan", "Turkestan and Azerbaijan Research Centre", "Research Centre for Turkestan, Azerbaijan, Crimea, Caucuasus, and Siberia"], "authorized_access_point": "Stichting Onderzoekscentrum Turkestan en Azerbaidzjan", "biographical_information": ["Adresse : Postbus 9642, 2003 LP Haarlem. Contact : 31 23 529 28 83. Adresse électronique : sota@wanadoo.nl"]} 1 -2023-07-08 08:20:19.263093 2023-07-08 08:20:19.263105 c67f5779-28da-4f10-99c0-efd7d130c451 {"md5": "0506350f67d8165ef2edd21d1ac976e3", "pid": "08602308X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/08602308X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/08602308X", "source": "IDREF"}], "variant_name": ["Fédération française de football. District du Cantal", "Fédération française de football. Ligue (Auvergne). District (Cantal)"], "preferred_name": "Fédération française de football. District (Cantal)", "country_associated": "fr", "variant_access_point": ["Fédération française de football. District du Cantal", "Fédération française de football. Ligue (Auvergne). District (Cantal)"], "authorized_access_point": "Fédération française de football. District (Cantal)", "biographical_information": ["Adresse : Maison départementale des sports, BP 425, La Ponétie, 15004 Aurillac cedex. Tél. 71.64.24.24"]} 1 -2023-07-08 08:20:19.358816 2023-07-08 08:20:19.358825 a3169627-b47d-42cc-94c7-15c568e61986 {"md5": "95e0c47cd4c5f66467b11e169844139d", "pid": "086069527", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/086069527", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/086069527", "source": "IDREF"}], "preferred_name": "Roland, Alfredo E.", "authorized_access_point": "Roland, Alfredo E."} 1 -2023-07-08 08:20:19.456803 2023-07-08 08:20:19.456811 39f1a0d6-a192-4127-9364-d2a3c7a74ba4 {"md5": "ca1760d2b25f58fd212e5a30b67c3362", "pid": "086069888", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": false, "identifier": "http://www.idref.fr/086069888", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/086069888", "source": "IDREF"}], "variant_name": ["Hermandad de Las Penas de San Vicente (Espagne)", "Hermandad de Las Penas"], "preferred_name": "Hermandad y Cofradía de Nazarenos de Nuestro Padre Jesús de las Penas y María Santísima de los Dolores (Espagne)", "country_associated": "sp", "variant_access_point": ["Hermandad de Las Penas de San Vicente (Espagne)", "Hermandad de Las Penas"], "date_of_establishment": "1875", "authorized_access_point": "Hermandad y Cofradía de Nazarenos de Nuestro Padre Jesús de las Penas y María Santísima de los Dolores (Espagne)", "biographical_information": ["Corporation religieuse de Séville"]} 1 -2023-07-08 08:20:19.532648 2023-07-08 08:20:19.532652 838de247-8391-42c2-8f1f-5907320f2610 {"md5": "f262b51c7a15b8acedb49f53f5cf2d82", "pid": "08608416X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/08608416X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/08608416X", "source": "IDREF"}], "preferred_name": "Junod, Samuel", "country_associated": "xxu", "authorized_access_point": "Junod, Samuel", "biographical_information": ["Professeur assistant de français à l'Université du Colorado à Boulder, spécialiste de littérature française de la Renaissance"]} 1 -2023-07-08 08:20:19.613062 2023-07-08 08:20:19.613068 5105f5c6-5739-4135-813b-96b0bbb146d4 {"md5": "9da1d600e204d6de285551c46934c020", "pid": "086094602", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifier": "http://www.idref.fr/086094602", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/086094602", "source": "IDREF"}], "variant_name": ["Biblioteca Monte Cappuccini (Turin, Italie)", "Convento del Monte dei Cappuccini (Turin, Italie). Biblioteca", "Monte dei Cappuccini (Turin, Italie). Biblioteca"], "preferred_name": "Biblioteca del Monte dei Cappuccini (Turin, Italie)", "country_associated": "it", "variant_access_point": ["Biblioteca Monte Cappuccini (Turin, Italie)", "Convento del Monte dei Cappuccini (Turin, Italie). Biblioteca", "Monte dei Cappuccini (Turin, Italie). Biblioteca"], "date_of_establishment": "1596", "authorized_access_point": "Biblioteca del Monte dei Cappuccini (Turin, Italie)"} 1 -2023-07-08 08:20:19.69468 2023-07-08 08:20:19.694686 dff41c56-c937-4e95-ab53-ae305b791ce3 {"md5": "22d16535252c9f35b413a188a0dd8f3f", "pid": "086124641", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/086124641", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/086124641", "source": "IDREF"}], "preferred_name": "Road, Sinclair", "country_associated": "xxk", "authorized_access_point": "Road, Sinclair"} 1 -2023-07-08 08:20:19.769359 2023-07-08 08:20:19.769364 490b18f5-04cd-4969-a9ea-99db44c288e8 {"md5": "76099f29e6c39df801e06aadc7bd25a1", "pid": "086139096", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/086139096", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/086139096", "source": "IDREF"}], "preferred_name": "O'Brien, Kathleen", "country_associated": "xx", "authorized_access_point": "O'Brien, Kathleen"} 1 -2023-07-08 08:20:19.853214 2023-07-08 08:20:19.853219 bb5e987c-dbf4-43a0-a464-806841f982c1 {"md5": "d7d211ca1c1fee70975b7b3786a2a3ce", "pid": "086168312", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/086168312", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/086168312", "source": "IDREF"}], "preferred_name": "Smithback, John B.", "country_associated": "xxk", "authorized_access_point": "Smithback, John B."} 1 -2023-07-08 08:20:19.935859 2023-07-08 08:20:19.935864 ef3656b9-7705-449b-b370-cf2c7249436c {"md5": "b1b530e01afc95aa6f9a0661f7e8c2c0", "pid": "086232827", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/086232827", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/086232827", "source": "IDREF"}], "preferred_name": "Laboratoires Winthrop", "country_associated": "fr", "authorized_access_point": "Laboratoires Winthrop", "biographical_information": ["Adresse : 92-98, bd Victor-Hugo, 92115 Clichy. Tél. 42.70.72.40"]} 1 -2023-07-08 08:20:20.009248 2023-07-08 08:20:20.009251 00705348-91a7-498e-b23d-dcd979c7580e {"md5": "35f6a35d6bd1ec610b71bb7bafa42de3", "pid": "086845659", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/086845659", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/086845659", "source": "IDREF"}], "variant_name": ["Tours (Intendance)", "Tours (Généralité)", "Généralité de Tours"], "preferred_name": "France. Intendance (Tours)", "country_associated": "fr", "variant_access_point": ["Tours (Intendance)", "Tours (Généralité)", "Généralité de Tours"], "date_of_establishment": "1542", "authorized_access_point": "France. Intendance (Tours)", "biographical_information": ["La généralité de Tours a été créée en 1542. Tours fut siège d'une des dix-sept recettes générales créées par Henri II et confiées à des trésoriers généraux (Édit donné à Blois en janvier 1551). Elle se composait de seize élections ; vingt-une subdélégations (intendance)."]} 1 -2023-07-08 08:20:20.077648 2023-07-08 08:20:20.077655 be1c7777-d804-4abc-89ca-c2d9ac26d629 {"md5": "b4d07ba7f5685bf3b01d41eba8fe7fbe", "pid": "086849786", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/086849786", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/086849786", "source": "IDREF"}], "preferred_name": "Serena, Pedro A.", "country_associated": "sp", "authorized_access_point": "Serena, Pedro A.", "biographical_information": ["Laboratorio de Fisica de Sistema Pequeños y nanotecnologia, Consejo Superior de Investigaciones Cientificas (CSIC) (1997)"]} 1 -2023-07-08 08:20:20.143341 2023-07-08 08:20:20.143346 583893c4-73ec-4988-9178-ef535642d31d {"md5": "f2d74aef124a2521f979ef221ecfddc8", "pid": "087190087", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/087190087", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/087190087", "source": "IDREF"}], "date_of_birth": "1882", "date_of_death": "1951", "preferred_name": "Börner, Wilhelm", "country_associated": "gw", "authorized_access_point": "Börner, Wilhelm, 1882-1951"} 1 -2023-07-08 08:20:20.283666 2023-07-08 08:20:20.283668 876977f0-c880-4563-a3b7-b1eaab4b9611 {"md5": "dd38522ed486a177fe9813d894b2af40", "pid": "087402467", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "ger"], "identifier": "http://www.idref.fr/087402467", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/087402467", "source": "IDREF"}], "preferred_name": "Kempis, Rolf-Dieter", "country_associated": "gw", "authorized_access_point": "Kempis, Rolf-Dieter", "biographical_information": ["Directeur de l'agence de Düsseldorf de l'entreprise McKinsey & Company"]} 1 -2023-07-08 08:20:20.211307 2023-07-08 10:31:33.950221 eeabc4bf-387a-43e5-93a1-569f3bf3485d {"md5": "e3e5e914ce53265d16009f478682a935", "pid": "087239981", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/087239981", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/087239981", "source": "IDREF"}], "date_of_birth": "1907", "preferred_name": "Venkatappiah, B.", "authorized_access_point": "Venkatappiah, B., 1907-...."} 2 -2023-07-08 08:20:20.552697 2023-07-08 08:20:20.5527 7cb535bb-6467-4090-bd24-79d141a50e8e {"md5": "bd3b75a96e4d5653e0c7ec2850552880", "pid": "087535300", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/087535300", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/087535300", "source": "IDREF"}], "preferred_name": "Waxler, Caroline", "country_associated": "xxu", "authorized_access_point": "Waxler, Caroline", "biographical_information": ["Journaliste financière"]} 1 -2023-07-08 08:20:20.649891 2023-07-08 08:20:20.649898 94af72ce-d145-4f49-89cb-c3afc8cd5220 {"md5": "c5a531908684fd959dfa8d373718078e", "pid": "087635585", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/087635585", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/087635585", "source": "IDREF"}], "preferred_name": "Laurent, Marguerite-Marie", "country_associated": "fr", "authorized_access_point": "Laurent, Marguerite-Marie"} 1 -2023-07-08 08:20:20.739392 2023-07-08 08:20:20.739401 690f5adb-d0a6-4157-a10a-3f2b5f3051d4 {"md5": "a52c2e23820f89155dcbd6dd3351a523", "pid": "087649535", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/087649535", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/087649535", "source": "IDREF"}], "variant_name": ["Heras, Esther Sampedro"], "preferred_name": "Sampedro Heras, Esther", "country_associated": "sp", "variant_access_point": ["Heras, Esther Sampedro"], "authorized_access_point": "Sampedro Heras, Esther", "biographical_information": ["Universitaire, spécialiste de la littérature médiévale"]} 1 -2023-07-08 08:20:20.835296 2023-07-08 08:20:20.835302 d03c7568-9c2c-4d55-a9c5-e4be92778506 {"md5": "87619402a8abd294b2cb0e8c8eed9fad", "pid": "087823535", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/087823535", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/087823535", "source": "IDREF"}], "preferred_name": "Onoge, Omafume F.", "country_associated": "nr", "authorized_access_point": "Onoge, Omafume F.", "biographical_information": ["Enseigne à la School of postgraduate studies, University of Jos, Nigeria (en 1993)"]} 1 -2023-07-08 08:20:20.937228 2023-07-08 08:20:20.937235 828ebf94-39ba-45e7-90a0-3b32d722d152 {"md5": "f6b40c76dc31c27b70485fa05cf32cdb", "pid": "087958686", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/087958686", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/087958686", "source": "IDREF"}], "preferred_name": "Deplanque, Laetitia", "country_associated": "be", "authorized_access_point": "Deplanque, Laetitia", "biographical_information": ["Licenciée en droit. Chercheur au Centre de recherche informatique et droit des facultés universitaires Notre-Dame de la paix de Namur (en 2004)."]} 1 -2023-07-08 08:20:21.029514 2023-07-08 08:20:21.029518 65236c44-1e23-4d71-aec7-413f5113f9f7 {"md5": "fe7dcadb9f50cbf2ed1a2dcb894d6eeb", "pid": "088014029", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/088014029", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/088014029", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "18345202X"}, "variant_name": ["Kolinus, Goswin", "Cholinus, Gosuinus", "Officina Mater. Cholini", "Officina Materni Cholini"], "date_of_birth": "15..", "date_of_death": "1612?", "preferred_name": "Cholinus, Goswin", "country_associated": "gw", "variant_access_point": ["Kolinus, Goswin", "Cholinus, Gosuinus", "Officina Mater. Cholini", "Officina Materni Cholini"], "parallel_access_point": ["Cholinus, Gosvinus, 15..-1612?"], "authorized_access_point": "Cholinus, Goswin, 15..-1612?", "biographical_information": ["Imprimeur-libraire actif à Cologne de 1583 ou 1588 à 1612?. A travaillé avec l'Officine de Maternus Cholinus."]} 1 -2023-07-08 08:20:21.127386 2023-07-08 08:20:21.127394 a47a55b9-4558-4531-b39f-9d75b479932c {"md5": "862642a117b295c828ba00854f30a8cb", "pid": "088042944", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ara"], "qualifier": "acteur", "identifier": "http://www.idref.fr/088042944", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/088042944", "source": "IDREF"}], "variant_name": ["El-Ğalĭl, ʽAmr ʽAbd", "Ğalĭl, ʽAmr ʽAbd", "ʽAbd El-Ğalĭl, ʽAmr"], "preferred_name": "Abd el-Guelil, Amr, acteur", "variant_access_point": ["El-Ğalĭl, ʽAmr ʽAbd", "Ğalĭl, ʽAmr ʽAbd", "ʽAbd El-Ğalĭl, ʽAmr"], "authorized_access_point": "Abd el-Guelil, Amr, acteur", "biographical_information": ["Acteur"]} 1 -2023-07-08 08:20:21.235306 2023-07-08 08:20:21.235312 37a54b94-b5c7-4e53-904b-d2f5211ece43 {"md5": "b165cb65879b9af787748e05c2d1286c", "pid": "088082776", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/088082776", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/088082776", "source": "IDREF"}], "preferred_name": "Roalson, Eric H.", "country_associated": "xxu", "authorized_access_point": "Roalson, Eric H.", "biographical_information": ["En poste : School of biological sciences, center for integrated biotechnology, Pullman, Washington."]} 1 -2023-07-08 08:20:21.335875 2023-07-08 08:20:21.335882 ee1f5ba4-18d4-4087-bc43-634d759c515d {"md5": "c84dd1dc3af3308360ce2a2945d6d859", "pid": "088088944", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/088088944", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/088088944", "source": "IDREF"}], "date_of_birth": "1969", "preferred_name": "Glasze, Georg", "country_associated": "gw", "authorized_access_point": "Glasze, Georg, 1969-....", "biographical_information": ["Chercheur en Géographie humaine à l'Université de Mainz (en 2003)"]} 1 -2023-07-08 08:20:21.411948 2023-07-08 08:20:21.411958 8147a4cb-2bf2-480c-97f9-a9451ec0f251 {"md5": "41e34f775200c69db67069a29ba19d31", "pid": "088106926", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/088106926", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/088106926", "source": "IDREF"}], "date_of_birth": "1888", "date_of_death": "1975", "preferred_name": "Souché, Aimé", "country_associated": "fr", "authorized_access_point": "Souché, Aimé, 1888-1975", "biographical_information": ["Grammairien et inspecteur de l'enseignement primaire"]} 1 -2023-07-08 08:20:21.691095 2023-07-08 08:20:21.691103 50c8c0ac-3261-405b-afb0-2503a30ee2f4 {"md5": "35d2cb65915043cc72c1e6c172580912", "pid": "088453022", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "ben"], "identifier": "http://www.idref.fr/088453022", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/088453022", "source": "IDREF"}], "variant_name": ["Ghose, Partha", "Ghosha, P¯artha", "P¯artha Ghosha"], "preferred_name": "Ghose, Partha", "country_associated": "ii", "variant_access_point": ["Ghose, Partha", "Ghosha, P¯artha", "P¯artha Ghosha"], "authorized_access_point": "Ghose, Partha", "biographical_information": ["Physicist: S.N. Bose National Centre for Basic Sciences, Calcutta, Inde"]} 1 -2023-07-08 08:20:21.782322 2023-07-08 08:20:21.782329 fd00cd08-3a7d-4d6c-ba92-228308214e8d {"md5": "fcfd139739431124f4ed7e0eaf660455", "pid": "088540235", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["hin", "eng"], "identifier": "http://www.idref.fr/088540235", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/088540235", "source": "IDREF"}], "variant_name": ["Khalid Ma'aroof, Mohammad"], "preferred_name": "Ma'aroof, Mohammad Khalid", "country_associated": "ii", "variant_access_point": ["Khalid Ma'aroof, Mohammad"], "authorized_access_point": "Ma'aroof, Mohammad Khalid"} 1 -2023-07-08 08:20:21.881811 2023-07-08 08:20:21.881817 689b4e58-6e46-4406-915c-3e9323d1678d {"md5": "95705046873088f3ad7ce15773a64096", "pid": "08870078X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/08870078X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/08870078X", "source": "IDREF"}], "preferred_name": "Cummings, Karen", "authorized_access_point": "Cummings, Karen", "biographical_information": ["Southern Connecticut State University, New Haven , Connecticut"]} 1 -2023-07-08 08:20:21.970914 2023-07-08 08:20:21.970925 e3b87ab1-edb4-491a-8c53-72a9c63bc5af {"md5": "56e30027af4ecdd4f03523dafab1f174", "pid": "08871246X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/08871246X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/08871246X", "source": "IDREF"}], "date_of_birth": "1894", "date_of_death": "1977", "preferred_name": "Renard, Gabriel", "country_associated": "fr", "authorized_access_point": "Renard, Gabriel, 1894-1977", "biographical_information": ["Professeur de Clinique Ophtalmique à la Faculté de Médecine de Paris (1956), président de la Banque française des yeux (1967), membre de l'académie de Médecine (1969)"]} 1 -2023-07-08 08:20:22.050638 2023-07-08 08:20:22.050642 f9fece06-5244-4a30-a39f-1728dc98706e {"md5": "87ef635346a7b501ea4e723ab3c5333c", "pid": "08875975X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "qualifier": "imprimeur", "identifier": "http://www.idref.fr/08875975X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/08875975X", "source": "IDREF"}], "date_of_birth": "16XX", "date_of_death": "16XX", "preferred_name": "Grande, Andres, imprimeur", "country_associated": "sp", "authorized_access_point": "Grande, Andres, 16..?-16.., imprimeur", "biographical_information": ["Imprimeur.", "Seville : 1624-1651"]} 1 -2023-07-08 08:20:22.123219 2023-07-08 08:20:22.123223 79211c27-8fb8-4a21-8f76-855be051fda6 {"md5": "fd884f9b1f601d4bac0d630d5ca42437", "pid": "08880058X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/08880058X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/08880058X", "source": "IDREF"}], "preferred_name": "Hill, Darcy", "country_associated": "xxk", "authorized_access_point": "Hill, Darcy"} 1 -2023-07-08 08:20:22.195145 2023-07-08 08:20:22.19515 eb6b9e3c-d03b-4af7-9ede-8496cfb2a701 {"md5": "fe1dc9b6ba754a7e52267093fec6a9d7", "pid": "088888177", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/088888177", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/088888177", "source": "IDREF"}], "variant_name": ["Wahl, Philippe Marie Joseph"], "date_of_birth": "1956-03-11", "preferred_name": "Wahl, Philippe", "country_associated": "fr", "variant_access_point": ["Wahl, Philippe Marie Joseph"], "authorized_access_point": "Wahl, Philippe, 1956-....", "biographical_information": ["Membre du Conseil d'Etat, Directeur de société, Président-directeur général du groupe La Poste (2018)"]} 1 -2023-07-08 08:20:22.268094 2023-07-08 08:20:22.268098 2414ba99-04c0-4e3a-a270-4eda61370d4a {"md5": "f9deea929be86e1136332b76471711ce", "pid": "088920763", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/088920763", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/088920763", "source": "IDREF"}], "preferred_name": "Saudi Arabia. al-Mudīrīyah al-ʻĀmmah lil-Idhāʻah wa-al-Ṣiḥāfah wa-al-Nashr.", "country_associated": "su", "authorized_access_point": "Saudi Arabia. al-Mudīrīyah al-ʻĀmmah lil-Idhāʻah wa-al-Ṣiḥāfah wa-al-Nashr."} 1 -2023-07-08 08:20:22.342747 2023-07-08 08:20:22.342753 5e4656b3-5304-4eb6-8dc0-254d5e43bcd0 {"md5": "9eb210fa217e614de3e24c0cbaf410e7", "pid": "088945332", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/088945332", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/088945332", "source": "IDREF"}], "preferred_name": "Kubo, Hidebumi", "authorized_access_point": "Kubo, Hidebumi"} 1 -2023-07-08 08:20:22.437127 2023-07-08 08:20:22.437131 bb99cafd-a9fa-464a-bda2-9c7a9c6d512e {"md5": "b28729ce670cd21bdc2c9453400f75bb", "pid": "088984141", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/088984141", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/088984141", "source": "IDREF"}], "date_of_birth": "1960", "preferred_name": "Laue, Thomas", "country_associated": "gw", "authorized_access_point": "Laue, Thomas, 1960-...."} 1 -2023-07-08 08:20:22.507217 2023-07-08 08:20:22.50722 78771837-11be-4cc0-ac3c-86d6d9606a4b {"md5": "6bb6889a10ff35fb06aabbf19bb5462a", "pid": "088997464", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/088997464", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/088997464", "source": "IDREF"}], "date_of_birth": "1916", "preferred_name": "Baranès, André", "authorized_access_point": "Baranès, André, 1916-"} 1 -2023-07-08 08:20:22.586647 2023-07-08 08:20:22.586652 eb735289-f895-49e8-9733-0ebc8ef010e6 {"md5": "3a423e971ac29485157c1d2b68fa0de6", "pid": "089425596", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre", "eng"], "qualifier": "professeur de biologie cellulaire", "identifier": "http://www.idref.fr/089425596", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/089425596", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Mariani, Jean, professeur de biologie cellulaire", "country_associated": "fr", "authorized_access_point": "Mariani, Jean, 19..-...., professeur de biologie cellulaire", "biographical_information": ["Professeur de biologie cellulaire à Sorbonne université, Paris, UMR 8256 (en 2020)", "Directeur de thèse à l'Université Pierre et Marie Curie - Paris 6 (de 2003 à 2020)"]} 1 -2023-07-08 08:20:22.731983 2023-07-08 08:20:22.731987 69738443-bb17-43a1-82e2-57393c68d348 {"md5": "75a4ca7d17b61f52797f7afc22eb7d41", "pid": "090159225", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/090159225", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/090159225", "source": "IDREF"}], "preferred_name": "Dezes, Jean-Pierre", "country_associated": "fr", "authorized_access_point": "Dezes, Jean-Pierre"} 1 -2023-07-08 08:20:22.801499 2023-07-08 08:20:22.801502 000ec8f1-c426-42fd-9df6-98728ac6a95b {"md5": "988ce2e7cdbd398ab50233ac103c93d2", "pid": "09042333X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/09042333X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/09042333X", "source": "IDREF"}], "preferred_name": "Westland, Peter", "country_associated": "xxk", "authorized_access_point": "Westland, Peter", "biographical_information": ["Spécialiste de la littérature anglaise"]} 1 -2023-07-08 08:20:22.866889 2023-07-08 08:20:22.866892 a2cc3cf8-39f4-4678-b3c1-e3e2b1b94736 {"md5": "12c1aa845ae21871b02fb9dbebce7cfe", "pid": "091257174", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/091257174", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/091257174", "source": "IDREF"}], "preferred_name": "Freidberg, Susanne Elizabeth", "country_associated": "xxu", "authorized_access_point": "Freidberg, Susanne Elizabeth", "biographical_information": ["Enseignante au département de géographie à \\"Dartmouth college\\""]} 1 -2023-07-08 08:20:22.939485 2023-07-08 08:20:22.939494 816a288a-b8a2-41df-bd19-7878cf4c70a4 {"md5": "fb479f3815d03e61d74f196adcf81e2e", "pid": "091546230", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/091546230", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/091546230", "source": "IDREF"}], "preferred_name": "Desmond, John M.", "country_associated": "xxu", "authorized_access_point": "Desmond, John M."} 1 -2023-07-08 08:20:23.010954 2023-07-08 08:20:23.010958 e0775d77-6a19-4798-ae26-19149ceb8dbe {"md5": "970aca6c1398e6b0d34ee18d88bfea37", "pid": "092002781", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["hin"], "identifier": "http://www.idref.fr/092002781", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/092002781", "source": "IDREF"}], "variant_name": ["R¯ake´sa Vatsa", "Vats, Rakesh", "Rakesh Vats", "Vatsa, Rakesh", "Rakesh Vatsa"], "date_of_birth": "1941", "preferred_name": "Vatsa, R¯ake´sa", "country_associated": "ii", "variant_access_point": ["R¯ake´sa Vatsa", "Vats, Rakesh", "Rakesh Vats", "Vatsa, Rakesh", "Rakesh Vatsa"], "authorized_access_point": "Vatsa, R¯ake´sa, 1941-....", "biographical_information": ["Translittération ALA-LC", "Écrivain indien d'expression hindi"]} 1 -2023-07-08 08:20:23.086329 2023-07-08 08:20:23.086334 5ea2c224-8844-4830-a041-d2888e255516 {"md5": "3bccbf9c80a93b99b846fcd2b484ca22", "pid": "092098649", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/092098649", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/092098649", "source": "IDREF"}], "preferred_name": "Dumurgier, Hervé", "country_associated": "fr", "authorized_access_point": "Dumurgier, Hervé", "biographical_information": ["Chargé d'études au CERTU. (en 2005)"]} 1 -2023-07-08 08:20:23.232733 2023-07-08 08:20:23.232741 691c6ffc-1373-4c77-bd76-6c25ccc0b8aa {"md5": "1cc1919f4307ccac869b8bef85c89afe", "pid": "092149561", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/092149561", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/092149561", "source": "IDREF"}], "preferred_name": "Starck, Marie", "country_associated": "fr", "authorized_access_point": "Starck, Marie", "biographical_information": ["Titulaire d'un diplôme d'Etat de sage-femme"]} 1 -2023-07-08 08:20:25.514317 2023-07-08 08:20:25.514322 6a28130b-1845-458e-88ac-6be6c57ae9d1 {"md5": "72ad92b5db3bf510930f088e074db158", "pid": "09794226X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "conference": false, "identifier": "http://www.idref.fr/09794226X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/09794226X", "source": "IDREF"}], "preferred_name": "Gremio nacional dos editores e livreiros", "authorized_access_point": "Gremio nacional dos editores e livreiros"} 1 -2023-07-08 08:20:23.156108 2023-07-08 10:31:18.896889 d3c26b14-840c-4b1e-a24e-bba2c3a8ee53 {"md5": "b875037eec5ab1462187ad098c13c72f", "pid": "092124356", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/092124356", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/092124356", "source": "IDREF"}], "preferred_name": "Fronsac, Henri", "authorized_access_point": "Fronsac, Henri"} 2 -2023-07-08 08:20:23.300322 2023-07-08 08:20:23.300326 f82fcee4-993b-4e37-ac7a-666ff9cbe1a4 {"md5": "e8049587ae0f8393755d317dd7480f43", "pid": "092241549", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["tur"], "identifier": "http://www.idref.fr/092241549", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/092241549", "source": "IDREF"}], "preferred_name": "Hançerlioglu, Orhan", "country_associated": "tu", "authorized_access_point": "Hançerlioglu, Orhan", "biographical_information": ["Romancier turc"]} 1 -2023-07-08 08:20:23.373331 2023-07-08 08:20:23.373335 1666429f-b4af-4f1f-9a72-424d58daefc6 {"md5": "334037f4506c4a9e6034ca37b6e7b86a", "pid": "092249760", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/092249760", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/092249760", "source": "IDREF"}], "preferred_name": "Haberzettl, Anneliese", "country_associated": "fr", "authorized_access_point": "Haberzettl, Anneliese", "biographical_information": ["A présenté et soutenu publiquement sa thèse le 13 novembre 1961 devant la Faculté de pharmacie de Strasbourg pour obtenir le titre de Docteur de l'Université (mention : Pharmacie)"]} 1 -2023-07-08 08:20:23.600064 2023-07-08 08:20:23.60007 66146199-a0cb-4044-b492-26507d374410 {"md5": "bb7c2487e3cb2ebc7b022671c99bf56f", "pid": "092699987", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/092699987", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/092699987", "source": "IDREF"}], "preferred_name": "Clouard, Chantal", "country_associated": "fr", "authorized_access_point": "Clouard, Chantal", "biographical_information": ["Orthophoniste (en 2005). Docteur en psychologie, psychanalyste (en 2019)"]} 1 -2023-07-08 08:20:23.669785 2023-07-08 08:20:23.669789 016c112d-aca6-452c-a23a-9be95948dd1a {"md5": "a0dc994151951090cb09a38970e07a8b", "pid": "092726542", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifier": "http://www.idref.fr/092726542", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/092726542", "source": "IDREF"}], "preferred_name": "UMass/INAOE Conference", "country_associated": "xxu", "authorized_access_point": "UMass/INAOE Conference (1st ; 2000 ; Amherst, Mass.Etats-Unis)"} 1 -2023-07-08 08:20:23.743546 2023-07-08 08:20:23.74355 ce37f78f-cef9-4eb1-bcd3-d77608f96c45 {"md5": "3f2747f8fa4da12920269040d7342a5f", "pid": "092792642", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/092792642", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/092792642", "source": "IDREF"}], "variant_name": ["Pujol, Albert Ribas"], "preferred_name": "Ribas Pujol, Albert", "country_associated": "sp", "variant_access_point": ["Pujol, Albert Ribas"], "authorized_access_point": "Ribas Pujol, Albert", "biographical_information": ["Traduit du catalan en espagnol"]} 1 -2023-07-08 08:20:23.817447 2023-07-08 08:20:23.81745 f697d82d-98c6-471e-8015-128fe50b592f {"md5": "1e9c3657b3a8dc3605d0adede3af27d1", "pid": "092846653", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/092846653", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/092846653", "source": "IDREF"}], "preferred_name": "Jorgensen, James H.", "country_associated": "xxu", "authorized_access_point": "Jorgensen, James H.", "biographical_information": ["Professeur de pathologie, medecine, microbiologie et membre du laboratoire de sciences cliniques à l'universsité du Texas aux Etats-Unis. Directeur du laboratoire de microbiologie à l'université de San Antonio aux Etats-Unis (en 2004)"]} 1 -2023-07-08 08:20:23.885881 2023-07-08 08:20:23.885884 f8e417fc-04ff-42f8-8d71-091b409d18d3 {"md5": "94c9bfa97672013fb2417394ec1365ba", "pid": "093834470", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/093834470", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/093834470", "source": "IDREF"}], "preferred_name": "Murch, Susan J.", "country_associated": "xxu", "authorized_access_point": "Murch, Susan J.", "biographical_information": ["Membre de : Institute for ethnobotany, National tropical botanical garden, Kauai, Hawaii (en 2005)"]} 1 -2023-07-08 08:20:23.952012 2023-07-08 08:20:23.952016 07879842-eede-475a-9aaf-854139a47c20 {"md5": "cd64b4b0addb1eac1121eee32a887f1f", "pid": "09396997X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["hau"], "identifier": "http://www.idref.fr/09396997X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/09396997X", "source": "IDREF"}], "variant_name": ["Gamji, Tukur Mahmood"], "date_of_birth": "1976-03-13", "preferred_name": "Gamji, Tukur Mahmud", "country_associated": "nr", "variant_access_point": ["Gamji, Tukur Mahmood"], "authorized_access_point": "Gamji, Tukur Mahmud, 1976-...."} 1 -2023-07-08 08:20:24.019843 2023-07-08 08:20:24.019853 94ed9404-a1c8-49ba-afd7-a9fb2117e0d0 {"md5": "98baa6c90caac3d1f7f48e8820e384d7", "pid": "094133344", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/094133344", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/094133344", "source": "IDREF"}], "date_of_birth": "1977-04-08", "preferred_name": "Meaux, Caroline", "country_associated": "fr", "authorized_access_point": "Meaux, Caroline, 1977-...."} 1 -2023-07-08 08:20:23.522251 2023-07-08 10:31:30.99552 7696b6ea-c782-49a1-9505-928d2d5192ce {"md5": "9b3f3331ff097ff83f29e7bc44d081cb", "pid": "092613314", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/092613314", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/092613314", "source": "IDREF"}], "date_of_birth": "1947", "preferred_name": "Weaving, Rachel", "country_associated": "xxu", "authorized_access_point": "Weaving, Rachel, 1947-...."} 2 -2023-07-08 08:20:24.090724 2023-07-08 08:20:24.09073 f401e57e-aeb6-42ff-90e8-6104671365e4 {"md5": "48e22bd37ab74770c4073b6ef7fdbcd3", "pid": "094225230", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/094225230", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/094225230", "source": "IDREF"}], "date_of_birth": "1970", "preferred_name": "Gberie, Lansana", "country_associated": "gh", "authorized_access_point": "Gberie, Lansana, 1970-....", "biographical_information": ["Chercheur au \\"Kofi Annan International Peacekeeping Training Centre\\" , Ghana. Collabore à la revue \\"Africa Week\\", (en 2005)."]} 1 -2023-07-08 08:20:24.161031 2023-07-08 08:20:24.161035 be2d06ff-f348-4cf0-b8fc-00f6c85235b9 {"md5": "f879b0098bc095dc750f9bf2deb214b7", "pid": "09433434X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/09433434X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/09433434X", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Hadden, Don.", "country_associated": "xx", "authorized_access_point": "Hadden, Don., 19..-....", "biographical_information": ["Ornithologue, photographe, enseignant en poste : Middleton Grange School"]} 1 -2023-07-08 08:20:24.233575 2023-07-08 08:20:24.233579 a0ee3f48-f265-4924-8b53-4436e413eaa7 {"md5": "accd57a0b046656ce8ed82a65fc404a2", "pid": "094460922", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/094460922", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/094460922", "source": "IDREF"}], "date_of_birth": "1929-09-11", "preferred_name": "Jakoby, Richard", "country_associated": "gw", "authorized_access_point": "Jakoby, Richard, 1929-....", "biographical_information": ["Écrit aussi en anglais", "Musicologue. Critique musical et théâtral. Professeur à l'Université de Hanovre, Allemagne (en 1990). Critique musical et théâtral. Collabore à de nombreuses émissions radiophoniques. Président honoraire du Conseil de la musique allemand"]} 1 -2023-07-08 08:20:24.382927 2023-07-08 08:20:24.382931 0a12e79d-24e6-4761-8586-e213770cc30d {"md5": "92a9be84af8a6d478f68d9a0e2809d52", "pid": "094648980", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": false, "identifier": "http://www.idref.fr/094648980", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/094648980", "source": "IDREF"}], "variant_name": ["Gustav Lübcke Museum (Hamm, Allemagne)", "Gustav-Lübcke-Museum Hamm", "Lübcke-Museum (Hamm, Allemagne)", "Städtisches Gustav-Lübcke-Museum (Hamm, Allemagne)"], "preferred_name": "Gustav-Lübcke-Museum (Hamm, Allemagne)", "country_associated": "gw", "variant_access_point": ["Gustav Lübcke Museum (Hamm, Allemagne)", "Gustav-Lübcke-Museum Hamm", "Lübcke-Museum (Hamm, Allemagne)", "Städtisches Gustav-Lübcke-Museum (Hamm, Allemagne)"], "authorized_access_point": "Gustav-Lübcke-Museum (Hamm, Allemagne)", "biographical_information": ["Adresse : Neue Bahnhofstrasse 9, 59065 Hamm"]} 1 -2023-07-08 08:20:24.452267 2023-07-08 08:20:24.45227 18a40e65-59fb-46de-bf1f-0837c777b99b {"md5": "e6955c0fbab4d3e900d6a0381a476465", "pid": "095038426", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/095038426", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/095038426", "source": "IDREF"}], "preferred_name": "Mouché, Maman dan", "country_associated": "ng", "authorized_access_point": "Mouché, Maman dan", "biographical_information": ["Anthropologue (en 1968)"]} 1 -2023-07-08 08:20:24.526539 2023-07-08 08:20:24.526543 d1029c9a-7fcc-451f-8347-93f643645c48 {"md5": "7bfdfe5fcd49e8bc596695c715b90ee0", "pid": "095087044", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/095087044", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/095087044", "source": "IDREF"}], "date_of_birth": "1977-05-10", "preferred_name": "Pires, Virginie", "country_associated": "fr", "authorized_access_point": "Pires, Virginie, 1977-....", "biographical_information": ["Née le 10 mai 1977 à Paris XIV (75, France). Thèse déposée à la Bibliothèque universitaire Necker"]} 1 -2023-07-08 08:20:24.615029 2023-07-08 08:20:24.615036 af59a334-10fc-4e52-9e52-1e69fb4c707d {"md5": "7091d249fcdb80d9282c5482fe6f8141", "pid": "09512795X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": true, "identifier": "http://www.idref.fr/09512795X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/09512795X", "source": "IDREF"}], "variant_name": ["Rencontre interuniversitaire du programme universitaire ANPAZ"], "preferred_name": "Encuentro Interuniversitario del Programa de la Universidad de los Andes para la Paz (ANPAZ)", "country_associated": "ck", "variant_access_point": ["Rencontre interuniversitaire du programme universitaire ANPAZ (1 ; 1995 ; Bogotá, Colombie)"], "date_of_establishment": "1995", "authorized_access_point": "Encuentro Interuniversitario del Programa de la Universidad de los Andes para la Paz (ANPAZ) (1 ; 1995 ; Bogotá, Colombie)"} 1 -2023-07-08 08:20:24.695333 2023-07-08 08:20:24.695338 5500e8f9-d704-4863-a573-50e19492d872 {"md5": "548f53422bb0f7072c0d78bc8e4d01e1", "pid": "095171738", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": false, "identifier": "http://www.idref.fr/095171738", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/095171738", "source": "IDREF"}], "variant_name": ["Kunstverein (Ludwigshafen am Rhein, Allemagne)"], "preferred_name": "Kunstverein (Ludwigshafen, Allemagne)", "country_associated": "gw", "variant_access_point": ["Kunstverein (Ludwigshafen am Rhein, Allemagne)"], "authorized_access_point": "Kunstverein (Ludwigshafen, Allemagne)"} 1 -2023-07-08 08:20:25.614154 2023-07-08 08:20:25.61416 56a75424-758d-4339-8077-723d3f6a7740 {"md5": "6b049223358fcf5597f3844b5ef4815b", "pid": "098214381", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut"], "identifier": "http://www.idref.fr/098214381", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/098214381", "source": "IDREF"}], "date_of_birth": "1968", "preferred_name": "Koubaa, Bart", "country_associated": "ne", "authorized_access_point": "Koubaa, Bart, 1968-...."} 1 -2023-07-08 08:20:24.764855 2023-07-08 08:20:24.764861 c03a8826-8da9-4381-91b2-c7d6c36b245b {"md5": "c3ae487835cab1135e1270e0e1c8a1a2", "pid": "095227415", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["bur"], "qualifier": "Moṅʿ", "identifier": "http://www.idref.fr/095227415", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/095227415", "source": "IDREF"}], "variant_name": ["Kabyā charā Moṅʿ Khuiṅʿ Mā", "Kraññʿ Khuiṅʿ", "Moṅʿ Khuiṅʿ Mā"], "date_of_birth": "1943", "date_of_death": "2004-10-16", "preferred_name": "Khuiṅʿ Mā, Moṅʿ", "country_associated": "br", "variant_access_point": ["Kabyā charā Moṅʿ Khuiṅʿ Mā", "Kraññʿ Khuiṅʿ", "Moṅʿ Khuiṅʿ Mā"], "authorized_access_point": "Khuiṅʿ Mā, 1943-2004, Moṅʿ", "biographical_information": ["Translittération ALA-LC", "Poète"]} 1 -2023-07-08 08:20:24.839156 2023-07-08 08:20:24.839161 8cbb14fd-07a3-48b1-86d3-764d4b27c1d2 {"md5": "d5d8b6905637e81855c9333e57248b99", "pid": "095344691", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/095344691", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/095344691", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Shilstone, Arthur", "country_associated": "xxu", "authorized_access_point": "Shilstone, Arthur, 19..-....", "biographical_information": ["Illustrateur"]} 1 -2023-07-08 08:20:25.088153 2023-07-08 08:20:25.088157 ad1b8e3a-11a9-45a1-b0f1-041822dd284e {"md5": "51e5d5db71d0b0ad668cd47db5d2f8da", "pid": "095813225", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/095813225", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/095813225", "source": "IDREF"}], "variant_name": ["Jiménez, Marino Poves"], "preferred_name": "Poves Jiménez, Marino", "country_associated": "sp", "variant_access_point": ["Jiménez, Marino Poves"], "authorized_access_point": "Poves Jiménez, Marino"} 1 -2023-07-08 08:20:25.1555 2023-07-08 08:20:25.155502 994621f4-c09e-4f8c-ab86-201028587973 {"md5": "bb457eb483ca4d5e5875cc45b70230d5", "pid": "095998160", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/095998160", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/095998160", "source": "IDREF"}], "preferred_name": "Sache, Ivan", "country_associated": "fr", "authorized_access_point": "Sache, Ivan", "biographical_information": ["Directeur de thèse. Chargé de recherche INRA - Versailles-Grignon - UMR207 Pathologie végétale et épidémiologie"]} 1 -2023-07-08 08:20:25.220283 2023-07-08 08:20:25.220286 89c3e998-fc54-488a-8206-84401d94ed55 {"md5": "fbdde47e08e46d0a4cdd66aa14fdb8b5", "pid": "096644389", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/096644389", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/096644389", "source": "IDREF"}], "preferred_name": "Cogotti, Marina", "authorized_access_point": "Cogotti, Marina", "biographical_information": ["Architecte"]} 1 -2023-07-08 08:20:25.284405 2023-07-08 08:20:25.284408 408752ef-bdf8-44ba-92f6-31307871c75a {"md5": "8f529674de34632f0f1cdec47820681b", "pid": "09715010X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/09715010X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/09715010X", "source": "IDREF"}], "date_of_birth": "1916", "date_of_death": "1996", "preferred_name": "Heseltine, Nigel", "country_associated": "ie", "authorized_access_point": "Heseltine, Nigel, 1916-1996"} 1 -2023-07-08 08:20:25.35124 2023-07-08 08:20:25.351243 d40bb623-4fe6-4753-a28f-517d6143972f {"md5": "ba3a0cbe0f174ddfd8e589070388aeee", "pid": "097502146", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/097502146", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/097502146", "source": "IDREF"}], "variant_name": ["Gratz College (Philadelphie, Pa.). Archives sur l'histoire orale de l'Holocaost"], "preferred_name": "Gratz College (Philadelphia, Pa.). Holocaust Oral History Archive", "country_associated": "xxu", "variant_access_point": ["Gratz College (Philadelphie, Pa.). Archives sur l'histoire orale de l'Holocaost"], "authorized_access_point": "Gratz College (Philadelphia, Pa.). Holocaust Oral History Archive"} 1 -2023-07-08 08:20:25.420142 2023-07-08 08:20:25.420146 0daf5a07-c410-4914-a4ba-fca3ea017d3b {"md5": "a236aa9a57775b46d2477960bdfbdfb6", "pid": "097587222", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/097587222", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/097587222", "source": "IDREF"}], "variant_name": ["Durieu, Louis"], "date_of_birth": "1863", "date_of_death": "19XX", "preferred_name": "Blum, Eugène", "country_associated": "fr", "variant_access_point": ["Durieu, Louis"], "authorized_access_point": "Blum, Eugène, 1863-19..", "biographical_information": ["Professeur au lycée de Lyon, agrége de philosophie"]} 1 -2023-07-08 08:20:25.713934 2023-07-08 08:20:25.713941 35a73711-85a3-48df-9383-d59d51d60f12 {"md5": "ccb511604773dce378d20421be0e9b69", "pid": "098413406", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/098413406", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/098413406", "source": "IDREF"}], "preferred_name": "Csiba, Laszlo", "authorized_access_point": "Csiba, Laszlo"} 1 -2023-07-08 08:20:24.909754 2023-07-08 10:31:32.365309 1636cb90-7d8f-487c-b1af-7bf047da24b0 {"md5": "02ba573ee7b95a53ff478506cc99dd81", "pid": "09564766X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/09564766X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/09564766X", "source": "IDREF"}], "date_of_birth": "1905", "preferred_name": "Fisher, Jacob", "authorized_access_point": "Fisher, Jacob, 1905-...."} 2 -2023-07-08 08:20:25.81307 2023-07-08 08:20:25.813078 7abb51b9-0d56-4dd6-a4d9-4e0737675d5d {"md5": "683f50b225188502414dd83b67583993", "pid": "09883312X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/09883312X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/09883312X", "source": "IDREF"}], "preferred_name": "Zuschlag, Eckhard", "country_associated": "gw", "authorized_access_point": "Zuschlag, Eckhard", "biographical_information": ["Juriste"]} 1 -2023-07-08 08:20:25.897072 2023-07-08 08:20:25.89708 fd939678-2991-42b2-9a1e-f7bff60ff1d6 {"md5": "c3ba8a3144f063881127b90ffb9722a4", "pid": "100484522", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/100484522", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/100484522", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Waton, Hugues", "country_associated": "fr", "authorized_access_point": "Waton, Hugues, 19..-...."} 1 -2023-07-08 08:20:25.988966 2023-07-08 08:20:25.988974 62947ba0-f9f2-444a-9a7f-378250d5a56e {"md5": "5f777e08e03477eb5e5022c94d9e9714", "pid": "100570453", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifier": "http://www.idref.fr/100570453", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/100570453", "source": "IDREF"}], "variant_name": ["Nouvelles Hébrides. Geological Survey Department", "Nouvelles Hébrides. Geological Survey"], "preferred_name": "Geological Survey (Nouvelles Hébrides)", "variant_access_point": ["Nouvelles Hébrides. Geological Survey Department", "Nouvelles Hébrides. Geological Survey"], "authorized_access_point": "Geological Survey (Nouvelles Hébrides)"} 1 -2023-07-08 08:20:26.079322 2023-07-08 08:20:26.079328 4f94eb3d-16c6-4a02-8aa3-380ddfb905e2 {"md5": "eb428b4c814f19e9ea0b81b62cb30c19", "pid": "100930778", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifier": "http://www.idref.fr/100930778", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/100930778", "source": "IDREF"}], "preferred_name": "Congrès international de langue et littérature du midi de la France", "country_associated": "fr", "date_of_termination": "1955-09-11", "date_of_establishment": "1955-09-07", "authorized_access_point": "Congrès international de langue et littérature du midi de la France (1 ; 1955 ; Avignon)"} 1 -2023-07-08 08:20:26.281433 2023-07-08 08:20:26.281438 1641d3d2-95bf-46d2-9851-6bf6d4086247 {"md5": "abc6f7983505f12092d4c7f2222c8d9c", "pid": "101283407", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/101283407", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/101283407", "source": "IDREF"}], "preferred_name": "Lacalamita, Michele", "country_associated": "it", "authorized_access_point": "Lacalamita, Michele"} 1 -2023-07-08 08:20:26.391034 2023-07-08 08:20:26.391042 9c851cf9-15e8-4137-889f-1532998a8bb7 {"md5": "a2edd38ff0c5c404d5dffaf91eeffab1", "pid": "101346654", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/101346654", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/101346654", "source": "IDREF"}], "variant_name": ["Skinner, Roy"], "preferred_name": "Skinner, Roy E.", "country_associated": "at", "variant_access_point": ["Skinner, Roy"], "authorized_access_point": "Skinner, Roy E.", "biographical_information": ["Représentant des Nations-Unies dans la zone Moyen-Orient"]} 1 -2023-07-08 08:20:26.481376 2023-07-08 08:20:26.481382 eca81f08-4e8e-4274-993d-d1b46a3e2184 {"md5": "55141a2c6423125bb3d372938937b114", "pid": "101397321", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/101397321", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/101397321", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Risebro, Nils Henrik", "country_associated": "no", "authorized_access_point": "Risebro, Nils Henrik, 19..-....", "biographical_information": ["Mathématicien. En poste : Department of mathematics, University of Oslo (en 2002)"]} 1 -2023-07-08 08:20:26.700689 2023-07-08 08:20:26.700695 4914cb40-aeb2-4ec2-9049-def65fc211f4 {"md5": "1d498dade465528c65bb58e91dfccf05", "pid": "102076855", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut"], "identifier": "http://www.idref.fr/102076855", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/102076855", "source": "IDREF"}], "variant_name": ["Ittersum, Martine Julia van"], "date_of_birth": "1968", "preferred_name": "Van Ittersum, Martine Julia", "country_associated": "ne", "variant_access_point": ["Ittersum, Martine Julia van"], "authorized_access_point": "Van Ittersum, Martine Julia, 1968-...."} 1 -2023-07-08 08:20:26.803496 2023-07-08 08:20:26.803504 4c41e07e-cca7-4af8-aa3d-3091a28d03c9 {"md5": "4a9c2e8079df4744d107384465a790ad", "pid": "102129150", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/102129150", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/102129150", "source": "IDREF"}], "preferred_name": "Linder, Paul", "country_associated": "fr", "authorized_access_point": "Linder, Paul"} 1 -2023-07-08 08:20:26.177134 2023-07-08 10:30:54.722571 c6acc186-9ad2-412c-9f1b-9f329df0df61 {"md5": "a60216df5e2a1f157d1db7a605f2892d", "pid": "101023235", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/101023235", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/101023235", "source": "IDREF"}], "date_of_birth": "1897", "preferred_name": "Killough, Lucy Winsor", "authorized_access_point": "Killough, Lucy Winsor, 1897"} 2 -2023-07-08 08:20:26.892046 2023-07-08 08:20:26.892054 0011a877-dd77-4c55-8df9-1c9c28576f83 {"md5": "e5b52b66365d50264c432560f27f7643", "pid": "102522170", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/102522170", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/102522170", "source": "IDREF"}], "date_of_birth": "1982-12-14", "preferred_name": "Arcin, Christophe", "country_associated": "fr", "authorized_access_point": "Arcin, Christophe, 1982-....", "biographical_information": ["Titulaire d'une thèse d'exercice en Pharmacie (Lyon 1, 2006)"]} 1 -2023-07-08 08:20:27.063677 2023-07-08 08:20:27.063681 5775e68c-aba7-4816-89ae-740638522bcc {"md5": "d46f4654c0017b7bbc8a4ed7ead10e52", "pid": "103208348", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/103208348", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/103208348", "source": "IDREF"}], "variant_name": ["Benítez, Eva María Gil"], "preferred_name": "Gil Benítez, Eva María", "country_associated": "sp", "variant_access_point": ["Benítez, Eva María Gil"], "authorized_access_point": "Gil Benítez, Eva María", "biographical_information": ["En poste : Universidad de Málaga, Espagne (en 2002)"]} 1 -2023-07-08 08:20:27.156324 2023-07-08 08:20:27.156333 892f2cff-6079-4fa6-a22a-5639b18542cd {"md5": "84a2e6be62a9e099ad6775fe728720bd", "pid": "103396063", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/103396063", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/103396063", "source": "IDREF"}], "preferred_name": "Preisser, Michaël", "country_associated": "gw", "authorized_access_point": "Preisser, Michaël", "biographical_information": ["Professeur à l'université de Lüneburg. Expert fiscal à Hamburg"]} 1 -2023-07-08 08:20:27.247843 2023-07-08 08:20:27.247848 21f9d25a-e57a-4feb-8fbc-d6ecd98ad671 {"md5": "f18d8fcd75446d84bee4856750fc30ec", "pid": "103540695", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/103540695", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/103540695", "source": "IDREF"}], "date_of_birth": "1975-03-15", "preferred_name": "Saïdi, Samir", "authorized_access_point": "Saïdi, Samir, 1975-....", "biographical_information": ["Thèse de doctorat en Physique soutenue en 2005 à l' Université de Paris 6"]} 1 -2023-07-08 08:20:27.348608 2023-07-08 08:20:27.34862 b9eb960e-e610-400c-bd3d-9a97699cbae3 {"md5": "093b7cafc50cfd3cbf74f618c799bd3f", "pid": "103578560", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ara"], "identifier": "http://www.idref.fr/103578560", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/103578560", "source": "IDREF"}], "variant_name": ["Muḥammad Tawfīq Ṣādiq"], "date_of_birth": "1931", "preferred_name": "Ṣādiq, Muḥammad Tawfīq", "variant_access_point": ["Muḥammad Tawfīq Ṣādiq"], "authorized_access_point": "Ṣādiq, Muḥammad Tawfīq, 1931-", "biographical_information": ["Spécialiste de l'administration et de la planification dans les pays du Golfe ; conseiller à l'Institut koweitien de la Planification ."]} 1 -2023-07-08 08:20:27.439597 2023-07-08 08:20:27.439607 20d7e522-968e-4a26-848d-7e6677374f10 {"md5": "79ee7813797c77755a9d8fc9053486c8", "pid": "10359342X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/10359342X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/10359342X", "source": "IDREF"}], "date_of_birth": "1969-04-11", "preferred_name": "Federspiel, Valérie", "country_associated": "fr", "authorized_access_point": "Federspiel, Valérie, 1969-....", "biographical_information": ["Titulaire d' une thèse d' exercice de médecine soutenue à Caen le 29 mars 2006"]} 1 -2023-07-08 08:20:27.525536 2023-07-08 08:20:27.525541 ec3d713b-dd0d-42da-ba37-09fd1e3e87e0 {"md5": "a782e4cc5e2f3daff9c03ec739675c64", "pid": "103613838", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["swa"], "identifier": "http://www.idref.fr/103613838", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/103613838", "source": "IDREF"}], "preferred_name": "Mahimbali, Renatus", "country_associated": "tz", "authorized_access_point": "Mahimbali, Renatus"} 1 -2023-07-08 08:20:27.703027 2023-07-08 08:20:27.703035 30bb18da-b6f5-4db1-b8de-8c5a094397c1 {"md5": "b632a94075497a20b6f911171cc58871", "pid": "103835458", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/103835458", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/103835458", "source": "IDREF"}], "date_of_birth": "1975-12-19", "preferred_name": "Bergeron, Nicolas", "country_associated": "fr", "authorized_access_point": "Bergeron, Nicolas, 1975-....", "biographical_information": ["Ecrit également sous le pseudonyme collectif Henri Paul de Saint-Gervais", "Mathématicien. Professeur des universités en poste à Sorbonne Université (en 2020)"]} 1 -2023-07-08 08:20:27.80206 2023-07-08 08:20:27.802064 fcbeb7fe-4ed9-4482-9e90-7a5160985756 {"md5": "b0fb536ef66ebfb212a7f55efea08de3", "pid": "103919511", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "identifier": "http://www.idref.fr/103919511", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/103919511", "source": "IDREF"}], "preferred_name": "Branden, Elsa", "country_associated": "xx", "authorized_access_point": "Branden, Elsa"} 1 -2023-07-08 08:20:26.967706 2023-07-08 10:31:16.126225 5e5cbcde-2649-443b-9c82-25ec1c69eeee {"md5": "198bd18f58245255766d73e4fc6d0426", "pid": "102616221", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/102616221", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/102616221", "source": "IDREF"}], "preferred_name": "Moulik, T.K.", "country_associated": "xx", "authorized_access_point": "Moulik, T.K."} 2 -2023-07-08 08:20:27.876162 2023-07-08 08:20:27.876165 70f73862-e190-4e83-8a91-6532a67a3190 {"md5": "db15c18001f8d43b2d6b8b07b98508c0", "pid": "104444126", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": true, "identifier": "http://www.idref.fr/104444126", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/104444126", "source": "IDREF"}], "variant_name": ["Séminaire européen de géographie de l'eau", "Séminaire européen sur la géographie de l'eau"], "preferred_name": "Séminaire européen de géographie sur l'eau", "country_associated": "fr", "date_of_termination": "1995-09-16", "variant_access_point": ["Séminaire européen de géographie de l'eau (02 ; 1995 ; Saint-Victor-sur-Loire, Loire)", "Séminaire européen sur la géographie de l'eau (02 ; 1995 ; Saint-Victor-sur-Loire, Loire)"], "date_of_establishment": "1995-09-10", "authorized_access_point": "Séminaire européen de géographie sur l'eau (02 ; 1995 ; Saint-Victor-sur-Loire, Loire)"} 1 -2023-07-08 08:20:27.950281 2023-07-08 08:20:27.950286 720e797d-339d-46f5-9d6d-d54e5d7fa91f {"md5": "80ddc71bc30569f8aa3a8b165dee2c1a", "pid": "104506830", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/104506830", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/104506830", "source": "IDREF"}], "preferred_name": "Gaston, Marguerite", "country_associated": "fr", "authorized_access_point": "Gaston, Marguerite", "biographical_information": ["Titulaire d'un doctorat en Art et archéologie (Toulouse 2, 1970)"]} 1 -2023-07-08 08:20:28.048746 2023-07-08 08:20:28.048757 e4b0d497-541e-403f-a537-fe00659e13a8 {"md5": "c2b2ce069ff4d53b295247a665487e32", "pid": "105998168", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/105998168", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/105998168", "source": "IDREF"}], "preferred_name": "Tayui, Riuzaburo", "authorized_access_point": "Tayui, Riuzaburo"} 1 -2023-07-08 08:20:28.13488 2023-07-08 08:20:28.134886 ada65f18-7881-40f2-8f6a-2a4a9ce91cd6 {"md5": "30b69d31734d484ca55a23f372eaf52b", "pid": "106028723", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/106028723", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/106028723", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Grosclaude, Elodie", "country_associated": "fr", "authorized_access_point": "Grosclaude, Elodie, 19..-....", "biographical_information": ["Diplômée en art-thérapie (Tours, 2005)"]} 1 -2023-07-08 08:20:28.21861 2023-07-08 08:20:28.218616 d25a2235-5738-4406-9737-4a4fc006176f {"md5": "be39849ec245ce2022d0b19d80a584ce", "pid": "10694956X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["pol"], "conference": false, "identifier": "http://www.idref.fr/10694956X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/10694956X", "source": "IDREF"}], "preferred_name": "Polskie Towarzystwo Gleboznawcze", "country_associated": "pl", "authorized_access_point": "Polskie Towarzystwo Gleboznawcze"} 1 -2023-07-08 08:20:28.304035 2023-07-08 08:20:28.304044 945cb326-65f1-45b7-a2e5-9459965af8bb {"md5": "afd8a02a6649cf13fbe84167dccfc195", "pid": "106952587", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/106952587", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/106952587", "source": "IDREF"}], "variant_name": ["Laatikainen, Katie Verlin"], "date_of_birth": "1965", "preferred_name": "Verlin Laatikainen, Katie", "country_associated": "xx", "variant_access_point": ["Laatikainen, Katie Verlin"], "authorized_access_point": "Verlin Laatikainen, Katie, 1965-....", "biographical_information": ["Politologue", "Professeur au Department of Political Science, Adelphi University, Garden City, N.Y., USA (en 2006)"]} 1 -2023-07-08 08:20:28.389668 2023-07-08 08:20:28.389679 9f509c15-4d41-4742-a6ba-735851730d91 {"md5": "15f69cfbeda74bed6fb1188dacaafcde", "pid": "106968696", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/106968696", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/106968696", "source": "IDREF"}], "preferred_name": "Roëll, Paul", "country_associated": "gw", "authorized_access_point": "Roëll, Paul"} 1 -2023-07-08 08:20:28.586924 2023-07-08 08:20:28.586931 76c0d60c-9068-4aa8-8343-6cb5d71828e7 {"md5": "bb9d68eebb72667ae47b5d94c713511a", "pid": "107702746", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/107702746", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/107702746", "source": "IDREF"}], "preferred_name": "Corbu, Adrien C.", "country_associated": "fr", "authorized_access_point": "Corbu, Adrien C.", "biographical_information": ["Diplômé de l' Ecole des Hautes Etudes internationales de Paris"]} 1 -2023-07-08 08:20:28.743486 2023-07-08 08:20:28.743495 9d3aec7f-d540-4171-9fc5-d3762465ce1d {"md5": "1a5068e6dee7202d10d15c7047c6b5be", "pid": "108093875", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/108093875", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/108093875", "source": "IDREF"}], "date_of_birth": "1974", "preferred_name": "Albrecht, Joachim", "country_associated": "gw", "authorized_access_point": "Albrecht, Joachim, 1974-...."} 1 -2023-07-08 08:20:34.189244 2023-07-08 08:20:34.189255 02e56d19-b2c1-49e2-b3ef-5cd2d6ac2ed4 {"md5": "7a4d9882f3db27fc1dbabe9267bdb6bd", "pid": "115564535", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/115564535", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/115564535", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Dorfstecher, Ilse-Maria", "authorized_access_point": "Dorfstecher, Ilse-Maria, 19..-...."} 1 -2023-07-08 08:20:28.817941 2023-07-08 08:20:28.817946 72288ab2-9aad-4aa9-a687-4a345555352c {"md5": "13945558a8f6a4a1d0d2c9d8a18f84ae", "pid": "108157873", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/108157873", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/108157873", "source": "IDREF"}], "date_of_birth": "1981-04-23", "preferred_name": "Savoye, Nancy", "country_associated": "fr", "authorized_access_point": "Savoye, Nancy, 1981-....", "biographical_information": ["Titulaire d'une thèse d'exercice en Médecine Vétérinaire (Lyon 1, 2006)"]} 1 -2023-07-08 08:20:28.896273 2023-07-08 08:20:28.896284 142bd5fb-1bef-4c27-9207-74d5a12faa97 {"md5": "13d6b790fb912ecc4da2ec4f677e97da", "pid": "108462897", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifier": "http://www.idref.fr/108462897", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/108462897", "source": "IDREF"}], "preferred_name": "Banca Popolare dell'Emilia Romagna (Modène, Italie)", "country_associated": "it", "date_of_establishment": "1867", "authorized_access_point": "Banca Popolare dell'Emilia Romagna (Modène, Italie)"} 1 -2023-07-08 08:20:29.083379 2023-07-08 08:20:29.083384 2a859628-f38e-4266-b4ed-46d096939868 {"md5": "85ce70947173a45ca562e5ca96ad99ba", "pid": "10853961X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": true, "identifier": "http://www.idref.fr/10853961X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/10853961X", "source": "IDREF"}], "variant_name": ["Congrès international de sciences onomastiques"], "preferred_name": "Congrès international des sciences onomastiques", "date_of_termination": "1952-08-21", "variant_access_point": ["Congrès international de sciences onomastiques (4 ; 1952 ; Uppsala, Suède)"], "date_of_establishment": "1952-08-17", "authorized_access_point": "Congrès international des sciences onomastiques (04 ; 1952 ; Uppsala, Suède)"} 1 -2023-07-08 08:20:29.163665 2023-07-08 08:20:29.163673 63bb7a6b-5c2d-469c-87c7-02d56c525c9d {"md5": "210697b219b151f17fe3e545e2645fdf", "pid": "108882861", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": true, "identifier": "http://www.idref.fr/108882861", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/108882861", "source": "IDREF"}], "preferred_name": "Fundación española de historia moderna. Reunión científica", "country_associated": "sp", "authorized_access_point": "Fundación española de historia moderna. Reunión científica (6 ; 2000 ; Alcala de Henares, Espagne)"} 1 -2023-07-08 08:20:29.260731 2023-07-08 08:20:29.260736 bcc5fa0f-3314-4e66-a4e7-9dc4f7d49bbf {"md5": "58a12fe4158649c0a0e24173d6afd23e", "pid": "108960811", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/108960811", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/108960811", "source": "IDREF"}], "preferred_name": "Schouten, Matthijs G. C.", "country_associated": "ne", "authorized_access_point": "Schouten, Matthijs G. C."} 1 -2023-07-08 08:20:29.349774 2023-07-08 08:20:29.349781 f73899f0-ea4c-4f9e-b864-9891dad78366 {"md5": "eb5a0a7118836baad683d51cf30112c7", "pid": "109075013", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["srp", "eng"], "identifier": "http://www.idref.fr/109075013", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/109075013", "source": "IDREF"}], "preferred_name": "Ercegovac, Marko", "authorized_access_point": "Ercegovac, Marko", "biographical_information": ["Écrit aussi en anglais", "Géologue. En poste à la Serbian Academy of Sciences and Arts, Belgrade (en 2006)"]} 1 -2023-07-08 08:20:29.417671 2023-07-08 08:20:29.417676 077a817a-237b-4942-96a6-2106e45cb4aa {"md5": "34aae5a78c5ec025d36c874b6d3c6f3e", "pid": "109149327", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/109149327", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/109149327", "source": "IDREF"}], "variant_name": ["Horn, Charles N."], "preferred_name": "Horn, Charles Norman", "country_associated": "xxu", "variant_access_point": ["Horn, Charles N."], "authorized_access_point": "Horn, Charles Norman", "biographical_information": ["En poste au département de Biologie, Newberry College, USA (en 1994)"]} 1 -2023-07-08 08:20:29.493747 2023-07-08 08:20:29.493751 84a96fef-df7f-4f63-9d8d-1387ef4447a1 {"md5": "da5c7b6ce7ff06c291b21a1e16f245ab", "pid": "109154746", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn", "eng"], "identifier": "http://www.idref.fr/109154746", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/109154746", "source": "IDREF"}], "date_of_birth": "1963-10-23", "preferred_name": "Aoyagi, Hiroshi", "country_associated": "ja", "authorized_access_point": "Aoyagi, Hiroshi, 1963-", "biographical_information": ["Maître de conférence en anthropologie culturelle, Asia-Japan research center, Université Kokushikan, Tokyo"]} 1 -2023-07-08 08:20:29.566085 2023-07-08 08:20:29.566088 bb3df663-1e6d-4e0d-b537-a7f66af5550a {"md5": "a6ad9603df6e2dccac1f352edf052dc9", "pid": "10935026X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/10935026X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/10935026X", "source": "IDREF"}], "preferred_name": "Jaeck, Mélanie", "country_associated": "fr", "authorized_access_point": "Jaeck, Mélanie", "biographical_information": ["Titulaite d'un mémoire de Master II Professionnel"]} 1 -2023-07-08 08:20:29.657073 2023-07-08 08:20:29.657081 41526cd9-f56b-415f-9838-c979a45c060e {"md5": "0ee81cdd9228e1718ce4484349877df2", "pid": "110078810", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/110078810", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/110078810", "source": "IDREF"}], "preferred_name": "Hammarlund, Per A.", "authorized_access_point": "Hammarlund, Per A.", "biographical_information": ["Ph.D. de la London School of Economics. \\"Country risk researcher\\" dans une compagnie d'assurance de New York"]} 1 -2023-07-08 08:20:29.736238 2023-07-08 08:20:29.736243 9fc0b1f9-8d43-494a-b62d-68d2d504f769 {"md5": "d1fecee8a6a4ca50256d150d4c58ec1a", "pid": "110124596", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/110124596", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/110124596", "source": "IDREF"}], "date_of_birth": "1982-01-08", "preferred_name": "Lacroix, Damien", "country_associated": "fr", "authorized_access_point": "Lacroix, Damien, 1982-....", "biographical_information": ["Titulaire d'une thèse d'exercice de pharmacie (Limoges : 2006 ; 309)"]} 1 -2023-07-08 08:20:29.915074 2023-07-08 08:20:29.915081 6f3d3ba1-3295-4710-b4ba-4156b76cf968 {"md5": "02a3345fb803735ce995001c9ccc43bd", "pid": "11013253X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/11013253X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/11013253X", "source": "IDREF"}], "date_of_birth": "1980-04-13", "preferred_name": "Vioix, Hélène", "country_associated": "fr", "authorized_access_point": "Vioix, Hélène, 1980-...", "biographical_information": ["Auteur d'une thèse de : pharmacie, Université Paris-Sud 11, Châtenay-Malabry (en 2006)"]} 1 -2023-07-08 08:20:30.00639 2023-07-08 08:20:30.006398 fe70e62d-6bda-456b-8938-e43cafa76acf {"md5": "3ca709c7c7a9bb5f8382cb1fe187ec79", "pid": "11015469X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/11015469X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/11015469X", "source": "IDREF"}], "variant_name": ["Brown, Daltas & Associates"], "preferred_name": "Brown, Daltas and associates - Architects", "variant_access_point": ["Brown, Daltas & Associates"], "authorized_access_point": "Brown, Daltas and associates - Architects", "biographical_information": ["Cabinet d'architectes"]} 1 -2023-07-08 08:20:30.178711 2023-07-08 08:20:30.178716 c347d5a2-a715-42a6-9bc9-9d07073e6ced {"md5": "7f72b07a0bfcedcaba7fe31cca142ce8", "pid": "110195019", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/110195019", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/110195019", "source": "IDREF"}], "preferred_name": "Société d'études paléontologiques et palethnographiques de Provence", "country_associated": "fr", "authorized_access_point": "Société d'études paléontologiques et palethnographiques de Provence"} 1 -2023-07-08 08:20:30.25675 2023-07-08 08:20:30.256757 16e638b0-e7b4-49d7-892e-1fe36fe5a7a9 {"md5": "2bf93c1ce3df2fef01de49dd66cb27ed", "pid": "11020414X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/11020414X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/11020414X", "source": "IDREF"}], "preferred_name": "Hajatpour, Reza", "country_associated": "ir", "authorized_access_point": "Hajatpour, Reza"} 1 -2023-07-08 08:20:30.357087 2023-07-08 08:20:30.357097 a9d38936-899f-4f65-a800-8c22f432659e {"md5": "07daca0cbd5a5b0b0de13c3f2d3b0bf5", "pid": "110240723", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["chi"], "qualifier": "acteur", "identifier": "http://www.idref.fr/110240723", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/110240723", "source": "IDREF"}], "date_of_birth": "1952-12-27", "date_of_death": "1997-11-08", "preferred_name": "Lam, Ching-Ying, acteur", "country_associated": "cc", "authorized_access_point": "Lam, Ching-Ying, 1952-1997, acteur", "biographical_information": ["Acteur"]} 1 -2023-07-08 08:20:30.432248 2023-07-08 08:20:30.432254 ec11df29-bcbd-4a8f-8c7d-3a6cd21266e5 {"md5": "14b1622780b9b41e41a06053297cfef0", "pid": "110458087", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/110458087", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/110458087", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Davila, G. Willy", "country_associated": "xxu", "authorized_access_point": "Davila, G. Willy, 19..-...."} 1 -2023-07-08 08:20:30.515546 2023-07-08 08:20:30.515553 c2c53db2-0d1c-417b-a96a-e4aa547d596b {"md5": "edd5c1d8198562a9ec32a04ba233e279", "pid": "110510631", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifier": "http://www.idref.fr/110510631", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/110510631", "source": "IDREF"}], "variant_name": ["Colloques nationaux du Centre national de la recherche scientifique", "Colloque national de magnétisme", "CNRS. Colloque national"], "preferred_name": "Centre national de la recherche scientifique (France). Colloque national", "country_associated": "fr", "date_of_termination": "1957-07-10", "variant_access_point": ["Colloques nationaux du Centre national de la recherche scientifique (1957 ; Strasbourg)", "Colloque national de magnétisme (1957 ; Strasbourg)", "CNRS. Colloque national (1957 ; Strasbourg)"], "date_of_establishment": "1957-07-08", "authorized_access_point": "Centre national de la recherche scientifique (France). Colloque national (1957 ; Strasbourg)"} 1 -2023-07-08 08:20:29.819558 2023-07-08 10:31:33.496312 c931c83e-56f2-49ed-894d-1f1fd94635c5 {"md5": "1fff8387badc61a851d3a7b4dfeafc3d", "pid": "110124863", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/110124863", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/110124863", "source": "IDREF"}], "variant_name": ["Poolthupya, Srisurang"], "preferred_name": "Srisurang Poolthupya", "country_associated": "th", "variant_access_point": ["Poolthupya, Srisurang"], "authorized_access_point": "Srisurang Poolthupya", "biographical_information": ["Président du Thai P.E.N. Centre"]} 2 -2023-07-08 08:20:30.600661 2023-07-08 08:20:30.600666 bd9adada-1585-46bf-be8d-345323d68ca8 {"md5": "c935af641a3651c57a1d060b4b533792", "pid": "110591119", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/110591119", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/110591119", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Machtey, Michael", "country_associated": "xxu", "authorized_access_point": "Machtey, Michael, 19..-....", "biographical_information": ["Purdue University"]} 1 -2023-07-08 08:20:30.69601 2023-07-08 08:20:30.696014 c507ba67-0fd0-4ae9-b64b-53b0963d3cd1 {"md5": "683cdbd437f19d2065b12b1873e29251", "pid": "110725476", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/110725476", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/110725476", "source": "IDREF"}], "preferred_name": "Turkel, Ann Ruth", "authorized_access_point": "Turkel, Ann Ruth", "biographical_information": ["Professeur en psychiatrie"]} 1 -2023-07-08 08:20:30.832272 2023-07-08 08:20:30.832278 949185e1-c2ad-4c6c-8f4b-adb9db18fcab {"md5": "cc78a6fd7e248668e68f87d1c4b7b14f", "pid": "110735714", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifier": "http://www.idref.fr/110735714", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/110735714", "source": "IDREF"}], "preferred_name": "Žalinskij, Alʹfred Èrnestovič", "country_associated": "ru", "authorized_access_point": "Žalinskij, Alʹfred Èrnestovič"} 1 -2023-07-08 08:20:30.909583 2023-07-08 08:20:30.909591 573d43c2-d7ad-488d-bcd1-38e86412f679 {"md5": "0804733463c09606b7eb986ed7705e3a", "pid": "11114261X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/11114261X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/11114261X", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Zhang, Yongmin", "country_associated": "cc", "authorized_access_point": "Zhang, Yongmin, 19..-....", "biographical_information": ["Directeur de thèse à l'Université Pierre et Marie Curie - Paris 6 en 2005, 2011 et 2013. Directeur de recherche au CNRS. Laboratoire de Chimie de l'Ecole Normale Supérieure de Paris."]} 1 -2023-07-08 08:20:31.00033 2023-07-08 08:20:31.000335 b2ab18b5-c946-4736-8f39-7dde9932c589 {"md5": "4ad81aa99b2fee78a3093fb6f5052575", "pid": "111315387", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/111315387", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/111315387", "source": "IDREF"}], "date_of_birth": "1982", "preferred_name": "Dufeu, Amélie", "authorized_access_point": "Dufeu, Amélie, 1982-...", "biographical_information": ["Docteur en pharmacie, 2006"]} 1 -2023-07-08 08:20:31.098696 2023-07-08 08:20:31.0987 98e0e5b9-a4f9-499d-9083-dc3898dad368 {"md5": "ed25c2b55d9aca36dec4f322164fbe4d", "pid": "111318459", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/111318459", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/111318459", "source": "IDREF"}], "date_of_birth": "1966", "preferred_name": "Greve, Michael", "country_associated": "gw", "authorized_access_point": "Greve, Michael, 1966-...."} 1 -2023-07-08 08:20:31.182448 2023-07-08 08:20:31.182454 49c83726-2d7e-4918-8054-e53513260995 {"md5": "4d28a694f4c218076f419ddd812e7fe6", "pid": "111515890", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["lat"], "identifier": "http://www.idref.fr/111515890", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/111515890", "source": "IDREF"}], "variant_name": ["Woevre, Jean de", "Jean de Woëvre", "Woevre, Jean de", "Voevroeus, Joannes", "Voevroeus, Johannes", "Voeuroeus, Joannes"], "date_of_birth": "14..", "date_of_death": "15..?", "preferred_name": "Woëvre, Jean de", "country_associated": "fr", "variant_access_point": ["Woevre, Jean de", "Jean de Woëvre", "Woevre, Jean de", "Voevroeus, Joannes", "Voevroeus, Johannes", "Voeuroeus, Joannes"], "authorized_access_point": "Woëvre, Jean de, 14..-15..?", "biographical_information": ["Bibliothécaire de l'abbaye de Clairvaux à la fin du XVème. Il fut le copiste de l'unique manuscrit des \\"Lettres des deux Amants\\" (attribuées à Héloise et Abélard), datant du XIIe siècle."]} 1 -2023-07-08 08:20:31.278907 2023-07-08 08:20:31.278912 788ac08d-4557-4552-96b6-452296086986 {"md5": "64333ae91827c759e3e72d5336178263", "pid": "111524679", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/111524679", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/111524679", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Jafferali, Rafaël", "country_associated": "be", "authorized_access_point": "Jafferali, Rafaël, 19..-....", "biographical_information": ["Professeur de droit à l'Université libre de Bruxelles (en 2009). Avocat"]} 1 -2023-07-08 08:20:31.359782 2023-07-08 08:20:31.35979 69cc6115-7ff4-454e-9568-3e13a3511779 {"md5": "84501f3d36790d154d8208c55771c15b", "pid": "111755220", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre", "ara"], "conference": false, "identifier": "http://www.idref.fr/111755220", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/111755220", "source": "IDREF"}], "variant_name": ["INAG", "INA", "Ecole d'agriculture algérienne (El Harrach, Algérie)", "Institut agricole d'Algérie (El Harrach, Algérie)", "Ecole nationale d'agriculture (El Harrach, Algérie)"], "preferred_name": "Institut national agronomique (El Harrach, Algérie)", "country_associated": "ae", "variant_access_point": ["INAG", "INA", "Ecole d'agriculture algérienne (El Harrach, Algérie)", "Institut agricole d'Algérie (El Harrach, Algérie)", "Ecole nationale d'agriculture (El Harrach, Algérie)"], "date_of_establishment": "1967", "authorized_access_point": "Institut national agronomique (El Harrach, Algérie)", "biographical_information": ["Avenue Pasteur, Hassan Badi, El Harrach 16200 Alger", "Crée en 1905 l'Ecole d'agriculture algérienne devient en 1920 l'Institut agricole d'Algérie, en 1946 l'Ecole nationale d'agriculture et en 1967 l'Institut national agronomique (INA) ; en 2009 Ecole nationale supérieure agronomique (ENSA)"]} 1 -2023-07-08 08:20:31.434497 2023-07-08 08:20:31.434507 50b7e0a4-02b6-4d22-af37-322d3e8d0dfa {"md5": "edb801a9b35d7133e6c5f763a30288dd", "pid": "112030777", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "professeur de physique", "identifier": "http://www.idref.fr/112030777", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/112030777", "source": "IDREF"}], "preferred_name": "Lambin, Philippe, professeur de physique", "authorized_access_point": "Lambin, Philippe, professeur de physique", "biographical_information": ["Professeur, Département de Physique, Université de Namur, Belgique (en 2017)"]} 1 -2023-07-08 08:20:31.518059 2023-07-08 08:20:31.518064 b552d863-5434-4e63-8c51-0dba8b6d3484 {"md5": "2d48d04130f8fe191e4ffb67d0f9256a", "pid": "112074863", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["chi"], "conference": false, "identifier": "http://www.idref.fr/112074863", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/112074863", "source": "IDREF"}], "variant_name": ["《古本小說集成》編委會 (Chine)"], "preferred_name": "\\"Gu ben xiao shuo ji cheng\\" bian wei hui (Chine)", "country_associated": "cc", "variant_access_point": ["《古本小說集成》編委會 (Chine)"], "authorized_access_point": "\\"Gu ben xiao shuo ji cheng\\" bian wei hui (Chine)"} 1 -2023-07-08 08:20:31.608446 2023-07-08 08:20:31.608453 8a6b1a99-02c6-4f89-8ff8-72ac10e5d5c0 {"md5": "98c815a578dd5460482cb0574db6e006", "pid": "112113028", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/112113028", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/112113028", "source": "IDREF"}], "preferred_name": "Massenet, Jacques", "authorized_access_point": "Massenet, Jacques"} 1 -2023-07-08 08:20:31.691587 2023-07-08 08:20:31.691591 a2d3d27f-95ad-4143-8688-4b1569f315fd {"md5": "daeb3954bee98320242699c3509ff121", "pid": "112169678", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "fre"], "conference": false, "identifier": "http://www.idref.fr/112169678", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/112169678", "source": "IDREF"}], "variant_name": ["International Federation for Modern Languages and Literatures. Congrès", "FILLM. Congrès", "Internationale Vereinigung für Moderne Sprachen und Literaturen. Congrès"], "preferred_name": "Fédération internationale des langues et littératures modernes. Congrès", "country_associated": "gw", "date_of_termination": "1959-08-31", "variant_access_point": ["International Federation for Modern Languages and Literatures. Congrès (07 ; 11959 ; Heidelberg, Allemagne)", "FILLM. Congrès (07 ; 1959 ; Heidelberg, Allemagne)", "Internationale Vereinigung für Moderne Sprachen und Literaturen. Congrès (07 ; 1959 ; Heidelberg, Allemagne)"], "date_of_establishment": "1959-08-26", "authorized_access_point": "Fédération internationale des langues et littératures modernes. Congrès (07 ; 1959 ; Heidelberg, Allemagne)"} 1 -2023-07-08 08:20:31.784523 2023-07-08 08:20:31.784528 50030b83-1f0a-4af8-bc44-57b078c7ba8a {"md5": "4b377a840568b46739b2c7ba981419d2", "pid": "11219222X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/11219222X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/11219222X", "source": "IDREF"}], "date_of_birth": "1909", "date_of_death": "1980", "preferred_name": "Rollier, Mario Alberto", "authorized_access_point": "Rollier, Mario Alberto, 1909-1980", "biographical_information": ["Physicien, militant du parrti Azione"]} 1 -2023-07-08 08:20:31.896595 2023-07-08 08:20:31.896605 29b5e54a-afe3-43b5-90d9-c1784d6f1927 {"md5": "139d74bf6f351abd52baac10f5d1e1fb", "pid": "112238181", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/112238181", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/112238181", "source": "IDREF"}], "date_of_birth": "1967-03-03", "preferred_name": "Gourmelon, Michèle", "country_associated": "fr", "authorized_access_point": "Gourmelon, Michèle, 1967-....", "biographical_information": ["Titulaire d'un doctorat d'exercice de pharmacie (Rennes : 2006)"]} 1 -2023-07-08 08:20:31.992974 2023-07-08 08:20:31.99298 735cab93-7d0c-45d6-af51-3edadcf89e12 {"md5": "69cc2334db7ba6b4f7d88540dd5a8547", "pid": "11246355X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/11246355X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/11246355X", "source": "IDREF"}], "preferred_name": "Rakovszky, Iván de", "authorized_access_point": "Rakovszky, Iván de"} 1 -2023-07-08 08:20:32.111586 2023-07-08 08:20:32.111593 fb9e1b1b-a73c-47ad-8dcb-9d2c8820db4c {"md5": "1e4b654583bc74f26d838cc80fa78798", "pid": "112722024", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/112722024", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/112722024", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Vollaire, Christian", "country_associated": "fr", "authorized_access_point": "Vollaire, Christian, 19..-....", "biographical_information": ["Titulaire d'un doctorat en Génie électrique (Ecole Centrale de Lyon, 1997)", "Enseignant-chercheur au sein de l’Ecole Centrale de Lyon, directeur du laboratoire Ampère (UMR CNRS 5005)"]} 1 -2023-07-08 08:20:32.205082 2023-07-08 08:20:32.205094 1abd2373-94c0-4617-a745-30be0a2675f9 {"md5": "d1ad0d24e904551aa6879f5a2f40edf0", "pid": "112795889", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/112795889", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/112795889", "source": "IDREF"}], "preferred_name": "Mediavilla Martín, Benito", "country_associated": "sp", "authorized_access_point": "Mediavilla Martín, Benito"} 1 -2023-07-08 08:20:32.291798 2023-07-08 08:20:32.291806 a1ea04de-02ed-4582-8891-5fdfab70a08e {"md5": "0d075502dfe175bf737f980da20d6a7a", "pid": "112913202", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "auteur d'un mémoire de gériatrie", "identifier": "http://www.idref.fr/112913202", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/112913202", "source": "IDREF"}], "date_of_birth": "1961-10-14", "preferred_name": "Lefevre, François, auteur d'un mémoire de gériatrie", "country_associated": "fr", "authorized_access_point": "Lefevre, François, 1961-...., auteur d'un mémoire de gériatrie", "biographical_information": ["Titulaire d'une capacité de gériatrie (2006)"]} 1 -2023-07-08 08:20:32.381639 2023-07-08 08:20:32.381645 ec313875-24b2-48d4-9061-00c7253241ef {"md5": "c32f911eaeb38efbeafaa22df9a1573a", "pid": "112961401", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/112961401", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/112961401", "source": "IDREF"}], "date_of_birth": "1947", "preferred_name": "Gaumeton, Pierre", "country_associated": "fr", "authorized_access_point": "Gaumeton, Pierre, 1947-....", "biographical_information": ["Journaliste-Historien"]} 1 -2023-07-08 08:20:34.361303 2023-07-08 08:20:34.361308 a3a6caa4-90f2-440d-b6e1-d5dde2e6a5e3 {"md5": "942b8b7c859b9270ff66bc1632bd43cd", "pid": "115842993", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/115842993", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/115842993", "source": "IDREF"}], "preferred_name": "Liebelin, François", "country_associated": "fr", "authorized_access_point": "Liebelin, François"} 1 -2023-07-08 08:20:32.482816 2023-07-08 08:20:32.482823 c6d6015c-ffb3-4b43-b622-ace19ecce9d1 {"md5": "708a80cc929c9184e586492c57950445", "pid": "113120362", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/113120362", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/113120362", "source": "IDREF"}], "variant_name": ["Michigan. University. School of Natural Resources", "University of Michigan. School of Forestry and Conservation", "University of Michigan. School of Natural Resources and Environment"], "preferred_name": "University of Michigan. School of Natural Resources", "country_associated": "xxu", "variant_access_point": ["Michigan. University. School of Natural Resources", "University of Michigan. School of Forestry and Conservation", "University of Michigan. School of Natural Resources and Environment"], "authorized_access_point": "University of Michigan. School of Natural Resources"} 1 -2023-07-08 08:20:32.666921 2023-07-08 08:20:32.666926 db459ee4-a2f5-4c04-9f2b-057f20745075 {"md5": "34c219f73404972f950fd5fa5238fdd3", "pid": "113204442", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/113204442", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/113204442", "source": "IDREF"}], "date_of_birth": "1969-04-06", "preferred_name": "Simões, Aquiles", "country_associated": "bl", "authorized_access_point": "Simões, Aquiles, 1969-....", "biographical_information": ["Titulaire d'un doctorat en Sociologie. Etudes rurales (Toulouse 2, 2007)"]} 1 -2023-07-08 08:20:32.76927 2023-07-08 08:20:32.769275 f67096cd-1c05-4d18-9cac-8f32ee41f238 {"md5": "58351c648ee8e9c8451f7f70bda54abe", "pid": "113372213", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/113372213", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/113372213", "source": "IDREF"}], "date_of_birth": "1976-08-10", "preferred_name": "Simonetti, Mathieu", "country_associated": "fr", "authorized_access_point": "Simonetti, Mathieu, 1976-....", "biographical_information": ["Auteur d'une thèse d'exercice en Chirurgie dentaire (Lyon 1, 2002). Titulaire d'un diplôme universitaire de chirurgie buccale et d'implantologie (Dijon, 2011)"]} 1 -2023-07-08 08:20:32.852024 2023-07-08 08:20:32.852028 98b26cfa-bdb8-45d2-8ad1-9bc2942fa8b9 {"md5": "91159b3d9de105082dae4a7adfb7ed01", "pid": "113737041", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/113737041", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/113737041", "source": "IDREF"}], "preferred_name": "University of London. Institute of obstetrics and gynaecology", "country_associated": "xxk", "authorized_access_point": "University of London. Institute of obstetrics and gynaecology"} 1 -2023-07-08 08:20:33.013962 2023-07-08 08:20:33.013969 fcd2788e-96f8-4e47-983a-80871dbb465f {"md5": "e28a6045617b8c18d91d81ee59429427", "pid": "113753764", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/113753764", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/113753764", "source": "IDREF"}], "date_of_birth": "1977-01-16", "preferred_name": "Noomtong, Chaiwat", "country_associated": "fr", "authorized_access_point": "Noomtong, Chaiwat, 1977-....", "biographical_information": ["Titulaire d'un doctorat de l'Institut national polytechnique de Grenoble, spécialité \\"Mécanique : conception, géomécanique et matériaux\\""]} 1 -2023-07-08 08:20:33.099491 2023-07-08 08:20:33.099496 25d9f0fb-b39d-4ff7-9420-f2ee283bc3c4 {"md5": "66c9122ccc39d46f19270edf8048c94f", "pid": "113834535", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": true, "identifier": "http://www.idref.fr/113834535", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/113834535", "source": "IDREF"}], "variant_name": ["Curso de verano sobre el franciscanismo en Andalucía"], "preferred_name": "Curso de verano el franciscanismo en Andalucía", "country_associated": "sp", "date_of_termination": "1996-08-10", "variant_access_point": ["Curso de verano sobre el franciscanismo en Andalucía (3 ; 1997 ; Priego de Córdoba)"], "date_of_establishment": "1997-08-01", "authorized_access_point": "Curso de verano el franciscanismo en Andalucía (3 ; 1997 ; Priego de Córdoba)"} 1 -2023-07-08 08:20:33.18198 2023-07-08 08:20:33.181986 aef8f632-a2c6-4ffd-8266-39f040437d92 {"md5": "c2b16fad7b6ee68bb497244e5c03a5b8", "pid": "113915845", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut", "eng"], "identifier": "http://www.idref.fr/113915845", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/113915845", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Wattel, Evert", "country_associated": "ne", "authorized_access_point": "Wattel, Evert, 19..-...."} 1 -2023-07-08 08:20:33.250262 2023-07-08 08:20:33.250267 e6c73aa4-fefe-411f-95e5-f6e6089b7717 {"md5": "375ed5a44ed5136a453027f8cc861936", "pid": "114044104", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/114044104", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/114044104", "source": "IDREF"}], "date_of_birth": "1968", "preferred_name": "Frapiccini, David", "country_associated": "it", "authorized_access_point": "Frapiccini, David, 1968-....", "biographical_information": ["Professeur d'histoire de l'art moderne, Università degli studi La Sapienza, Rome (en 2013)"]} 1 -2023-07-08 08:20:34.278796 2023-07-08 08:20:34.278807 f1fdba2f-29c4-4d53-b584-536ef1e4f4b0 {"md5": "dcbf9d1fe5288b6bfe022181ab668662", "pid": "11570793X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "qualifier": "chanteuse", "identifier": "http://www.idref.fr/11570793X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/11570793X", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Tsarouska, Tanya, chanteuse", "country_associated": "xx", "authorized_access_point": "Tsarouska, Tanya, 19..-...., chanteuse", "biographical_information": ["Chanteuse"]} 1 -2023-07-08 08:20:32.568939 2023-07-08 10:26:21.382036 bb428668-bcb6-456a-939d-9deb001e4396 {"md5": "34d987a50e887d831db8739259f0d3c9", "pid": "113195931", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/113195931", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/113195931", "source": "IDREF"}], "preferred_name": "Boughton, Robert", "authorized_access_point": "Boughton, Robert"} 2 -2023-07-08 08:20:33.311958 2023-07-08 08:20:33.311962 047530d2-0f3c-44ed-9652-f04ee450d9eb {"md5": "0d886de3eed893686ac4d9f5c06535a2", "pid": "114141606", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifier": "http://www.idref.fr/114141606", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/114141606", "source": "IDREF"}], "variant_name": ["Russian entomological society", "Rossijskoe èntomologičeskoe obŝestvo", "RÈO", "RES"], "preferred_name": "Russkoe entomologičeskoe obŝestvo", "variant_access_point": ["Russian entomological society", "Rossijskoe èntomologičeskoe obŝestvo", "RÈO", "RES"], "authorized_access_point": "Russkoe entomologičeskoe obŝestvo", "biographical_information": ["Créée en 1859", "Universitetskaâ nab. 1, 1990934 Saint-Pétersbourg, Russie"]} 1 -2023-07-08 08:20:33.376872 2023-07-08 08:20:33.376875 a6743803-66e7-41e4-ad36-d3f232fa8d52 {"md5": "570de49d9784ec9d21722339226a3bc8", "pid": "114173699", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/114173699", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/114173699", "source": "IDREF"}], "variant_name": ["María Morales, Martín"], "date_of_birth": "1953", "preferred_name": "Morales, Martín María", "country_associated": "sp", "variant_access_point": ["María Morales, Martín"], "authorized_access_point": "Morales, Martín María, 1953-", "biographical_information": ["Jésuite et historien"]} 1 -2023-07-08 08:20:33.449622 2023-07-08 08:20:33.449625 09e8ffd1-9b66-4bbd-bd68-0d757dc20689 {"md5": "389e9afb9e3161c54db5a67b3f689a9b", "pid": "114244057", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": true, "identifier": "http://www.idref.fr/114244057", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/114244057", "source": "IDREF"}], "preferred_name": "Séminaire de probabilités", "country_associated": "fr", "date_of_termination": "1986", "date_of_establishment": "1985", "authorized_access_point": "Séminaire de probabilités (21 ; 1985-1986 ; Paris)"} 1 -2023-07-08 08:20:33.511338 2023-07-08 08:20:33.511341 b6564f18-1dc1-4bcb-bfea-a13ff4b6f73e {"md5": "d2e5f4c4231e65dec9380051b8681a96", "pid": "114270813", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/114270813", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/114270813", "source": "IDREF"}], "date_of_birth": "1977", "preferred_name": "Bednarek, Monika", "country_associated": "xx", "authorized_access_point": "Bednarek, Monika, 1977-....", "biographical_information": ["Professeur de linguistique"]} 1 -2023-07-08 08:20:33.574778 2023-07-08 08:20:33.574782 4cda57ea-f6d9-4947-a7b5-5be22b001b7f {"md5": "5d13504b3480a4ccce079b15885aa870", "pid": "11449973X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/11449973X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/11449973X", "source": "IDREF"}], "preferred_name": "Université Senghor (Alexandrie, Egypte). Département Gestion du patrimoine culturel", "country_associated": "ua", "authorized_access_point": "Université Senghor (Alexandrie, Egypte). Département Gestion du patrimoine culturel", "biographical_information": ["1 Pl. Ahmed-Orafi, El Mancheya, BP 21111-415, Alexandrie, Egypte"]} 1 -2023-07-08 08:20:33.637012 2023-07-08 08:20:33.637021 e9f76a7a-525d-446c-ad55-b68dcbb23f31 {"md5": "a82dbab80ebf58292b77ba3d54a1bba1", "pid": "114570337", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/114570337", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/114570337", "source": "IDREF"}], "date_of_birth": "1968", "preferred_name": "Jubin, Frédérique", "country_associated": "fr", "authorized_access_point": "Jubin, Frédérique, 1968-....", "biographical_information": ["Titulaire d'un doctorat d'arts et sciences de l'art à Paris 1 en 2007, spécialiste de danse"]} 1 -2023-07-08 08:20:33.905611 2023-07-08 08:20:33.90562 ec6b1b49-73cf-493d-84bb-ae7c2e94f6c5 {"md5": "09134d3ec57da2c364d64ee8d57a0d58", "pid": "115046917", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/115046917", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/115046917", "source": "IDREF"}], "date_of_birth": "1963-09-18", "preferred_name": "Simon, Isabelle", "country_associated": "fr", "authorized_access_point": "Simon, Isabelle, 1963-....", "biographical_information": ["Titulaire d'un doctorat d'exercice en pharmacie (Rennes : 1988)"]} 1 -2023-07-08 08:20:34.10229 2023-07-08 08:20:34.102295 5314aad7-cf82-4723-aab8-1d6adce193ed {"md5": "8829b3eb3268619290f423130bab7edd", "pid": "115277684", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/115277684", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/115277684", "source": "IDREF"}], "preferred_name": "Crouzet, F.", "country_associated": "fr", "authorized_access_point": "Crouzet, F."} 1 -2023-07-08 08:20:33.817117 2023-07-08 10:27:24.752798 aca19b9f-7722-4450-9714-f52b1e8cdb39 {"md5": "7790eff8afea01dcd9668e3f0039b0a6", "pid": "11499899X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/11499899X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/11499899X", "source": "IDREF"}], "date_of_birth": "1942", "preferred_name": "Parker, Gordon", "country_associated": "at", "authorized_access_point": "Parker, Gordon, 1942-", "biographical_information": ["Professeur. En poste à University of New South Wales. Directeur du Black Dog Institute, Sydney, Australie (en 2005)."]} 2 -2023-07-08 08:20:33.718967 2023-07-08 10:30:42.063557 56d623a3-3dd6-4ec9-ad85-85d3206c49ba {"md5": "fc9adddd2be6e1efa0829d088bd922c2", "pid": "114673128", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/114673128", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/114673128", "source": "IDREF"}], "preferred_name": "Pillay, M. G.", "country_associated": "sa", "authorized_access_point": "Pillay, M. G.", "biographical_information": ["Ecrivain"]} 2 -2023-07-08 08:20:34.541647 2023-07-08 08:20:34.541653 5604edc8-b7ee-42c1-9b2f-057732e3d93d {"md5": "78ae7d721c9d6cf5ef776b1fa3d80c67", "pid": "116121556", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/116121556", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/116121556", "source": "IDREF"}], "preferred_name": "Saunier, Richard E.", "authorized_access_point": "Saunier, Richard E.", "biographical_information": ["senior environmental management advisor in the Department of regional development and environment of the organization of American States"]} 1 -2023-07-08 08:20:34.626312 2023-07-08 08:20:34.626317 f8e6be0d-d411-4c29-81d6-07fa4ad9aa36 {"md5": "aeaa7dc0869c4e1223f79427ed5d7811", "pid": "116142219", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/116142219", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/116142219", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Sölter, Walter", "country_associated": "gw", "authorized_access_point": "Sölter, Walter, 19..-....", "biographical_information": ["Directeur du Ruhrlandmuseums à Essen, archéologue et enseignant (en 1989)"]} 1 -2023-07-08 08:20:34.694107 2023-07-08 08:20:34.694115 127e6a0b-54c6-4eb6-8397-129f43804dbc {"md5": "1c4c98d57d5b763d24a5e5d9f818db47", "pid": "11627753X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifier": "http://www.idref.fr/11627753X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/11627753X", "source": "IDREF"}], "variant_name": ["Congrès national d'orientation professionnelle"], "preferred_name": "Congrès national d'orientation professionnelle", "country_associated": "fr", "date_of_termination": "1960-06-06", "variant_access_point": ["Congrès national d'orientation professionnelle (13 ; 1960 ; Evreux)"], "date_of_establishment": "1960-06-03", "authorized_access_point": "Congrès national d'orientation professionnelle (13 ; 1960 ; Evreux)"} 1 -2023-07-08 08:20:34.780652 2023-07-08 08:20:34.780658 af815e65-bf4e-4598-b008-ce426864c8ad {"md5": "8bae063f8bebeebb416f144ccb1be696", "pid": "116285125", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "identifier": "http://www.idref.fr/116285125", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/116285125", "source": "IDREF"}], "variant_name": ["西村, 成雄"], "date_of_birth": "1944", "preferred_name": "Nishimura, Shigeo", "country_associated": "ja", "variant_access_point": ["西村, 成雄, 1944-...."], "authorized_access_point": "Nishimura, Shigeo, 1944-....", "biographical_information": ["Transcription Hepburn modifié", "Historien, spécialiste de l'Asie orientale. Professeur de Osaka University of Foreign Studies (en 2007)"]} 1 -2023-07-08 08:20:34.868685 2023-07-08 08:20:34.868688 c1adb56a-6a30-4c2d-9fe3-89e16c7bd01e {"md5": "08d649497da2a0eae339a3b45bb3d729", "pid": "116293020", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/116293020", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/116293020", "source": "IDREF"}], "date_of_birth": "1968", "preferred_name": "Hauenschild, Katrin", "authorized_access_point": "Hauenschild, Katrin, 1968-....", "biographical_information": ["Titulaire d'un doctorat, enseignante, chercheuse en éducation"]} 1 -2023-07-08 08:20:34.931034 2023-07-08 08:20:34.93104 927ac46b-cc59-4ec2-a296-dddf42bb8216 {"md5": "b4c6965c7d93aee451c7e216930d1d73", "pid": "116436840", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ind"], "identifier": "http://www.idref.fr/116436840", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/116436840", "source": "IDREF"}], "variant_name": ["Abdoel Fattah", "Fattah, Abdul", "Abdul Fattah"], "preferred_name": "Fattah, Abdoel", "country_associated": "io", "variant_access_point": ["Abdoel Fattah", "Fattah, Abdul", "Abdul Fattah"], "authorized_access_point": "Fattah, Abdoel", "biographical_information": ["Politologue"]} 1 -2023-07-08 08:20:35.008681 2023-07-08 08:20:35.008691 af6d043a-92cc-4dd1-82cb-33c810deea8b {"md5": "1b01cdad5b2f9701cf8d1786ad6a877f", "pid": "11649736X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["srp"], "identifier": "http://www.idref.fr/11649736X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/11649736X", "source": "IDREF"}], "preferred_name": "Štetić, Bogdan", "authorized_access_point": "Štetić, Bogdan"} 1 -2023-07-08 08:20:35.196064 2023-07-08 08:20:35.196068 e1421e9a-dca7-4809-bd2e-8fec81e71e81 {"md5": "72688170a0ba1319f8574e8aac46f69c", "pid": "116542306", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/116542306", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/116542306", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Popescu, Lucy", "country_associated": "xx", "authorized_access_point": "Popescu, Lucy, 19..-....", "biographical_information": ["Journaliste (en 2007"]} 1 -2023-07-08 08:20:36.056014 2023-07-08 08:20:36.056025 e450604c-2db4-446f-b9f5-5aa52ff38e7c {"md5": "d60666e8c6f9ffc0b6c4d88fb45c9cb2", "pid": "118895729", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifier": "http://www.idref.fr/118895729", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/118895729", "source": "IDREF"}], "variant_name": ["International catholic-jewish liaison committee"], "preferred_name": "Comité international de liaison catholique-juif", "variant_access_point": ["International catholic-jewish liaison committee"], "authorized_access_point": "Comité international de liaison catholique-juif"} 1 -2023-07-08 08:20:34.442322 2023-07-08 10:30:52.505346 ac957eb6-3a30-457c-b250-dddd78ccfd83 {"md5": "f9408f23ef5597ba2dc9888c9555bcd0", "pid": "116055669", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifier": "http://www.idref.fr/116055669", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/116055669", "source": "IDREF"}], "variant_name": ["Титаренко, Клександр Иванович"], "preferred_name": "Titarenko, Aleksandr Ivanovič", "country_associated": "ru", "variant_access_point": ["Титаренко, Клександр Иванович"], "authorized_access_point": "Titarenko, Aleksandr Ivanovič"} 2 -2023-07-08 08:20:35.28372 2023-07-08 08:20:35.283725 efa56e94-7f5e-4acc-b088-d2208e9d01bb {"md5": "02c1aa2645daa658902b7902923ef989", "pid": "116771763", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifier": "http://www.idref.fr/116771763", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/116771763", "source": "IDREF"}], "variant_name": ["Istituto di Scienze Militari Aeronautiche (Firenze, Italia)", "Scuola di Applicazione Aeronautica (Florence, Italie)", "Scuola di Applicazione Aeronautica (Firenze, Italia)", "Scuola di Applicazione della Regia Aeronautica (Florence, Italie)", "Scuola di Applicazione della Regia Aeronautica (Firenze, Italia)"], "preferred_name": "Istituto di Scienze Militari Aeronautiche (Florence, Italie)", "country_associated": "it", "variant_access_point": ["Istituto di Scienze Militari Aeronautiche (Firenze, Italia)", "Scuola di Applicazione Aeronautica (Florence, Italie)", "Scuola di Applicazione Aeronautica (Firenze, Italia)", "Scuola di Applicazione della Regia Aeronautica (Florence, Italie)", "Scuola di Applicazione della Regia Aeronautica (Firenze, Italia)"], "authorized_access_point": "Istituto di Scienze Militari Aeronautiche (Florence, Italie)"} 1 -2023-07-08 08:20:35.445657 2023-07-08 08:20:35.445666 30e756f3-95ef-401a-8b26-153022704ee5 {"md5": "2bfe3bb42790e5d7c3bdfdd4cd7a2b1b", "pid": "11749464X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "qualifier": "Sir", "identifier": "http://www.idref.fr/11749464X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/11749464X", "source": "IDREF"}], "variant_name": ["Bere, Ivan de la"], "preferred_name": "De la Bere, Ivan, Sir", "country_associated": "xxk", "variant_access_point": ["Bere, Ivan de la"], "authorized_access_point": "De la Bere, Ivan, Sir"} 1 -2023-07-08 08:20:35.571934 2023-07-08 08:20:35.571937 4cc0983f-6bcf-4435-b246-ba3c7e1f494b {"md5": "95e17e108168ca8d0625174d4b4b45e0", "pid": "117780081", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/117780081", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/117780081", "source": "IDREF"}], "date_of_birth": "1979-04-20", "preferred_name": "Llanes, Fabrice", "country_associated": "fr", "authorized_access_point": "Llanes, Fabrice, 1979-....", "biographical_information": ["Titulaire d'un doctorat en pharmacie, (Toulouse 3,2007)"]} 1 -2023-07-08 08:20:35.634233 2023-07-08 08:20:35.634236 2ee73cfb-0e20-42b5-ba3e-5fa455ce30c3 {"md5": "443485c7c7b18749b64dc9b31b52de7e", "pid": "117829226", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/117829226", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/117829226", "source": "IDREF"}], "date_of_birth": "1913", "preferred_name": "Nguyen-Van-Thoai", "authorized_access_point": "Nguyen-Van-Thoai, 1913-....", "biographical_information": ["Thèse de doctorat en Sciences naturelles soutenue à l'Université d'Aix en 1946"]} 1 -2023-07-08 08:20:35.69869 2023-07-08 08:20:35.698696 01d418f2-d9d2-4322-af11-4418752a9e0f {"md5": "722adf12948f90e70aca33a5152ab7ef", "pid": "117886920", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/117886920", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/117886920", "source": "IDREF"}], "preferred_name": "Fremaux, Benjamin", "country_associated": "fr", "authorized_access_point": "Fremaux, Benjamin", "biographical_information": ["Ingénieur des télécoms"]} 1 -2023-07-08 08:20:35.772997 2023-07-08 08:20:35.773 e843238f-ca01-4bc2-b20f-2276ba73206c {"md5": "9f8da7460209ffe77b6491e757f7beab", "pid": "117982067", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/117982067", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/117982067", "source": "IDREF"}], "preferred_name": "Brula, Pascal", "authorized_access_point": "Brula, Pascal", "biographical_information": ["Thèse de doctorat en Pétrologie soutenue à l'Université de Lyon1 en 1984"]} 1 -2023-07-08 08:20:35.835799 2023-07-08 08:20:35.835802 eb909e4b-9d21-42bf-9717-389c69a52ff1 {"md5": "9cf074b7862a053f9e51db5fae5635ec", "pid": "118249487", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": false, "identifier": "http://www.idref.fr/118249487", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/118249487", "source": "IDREF"}], "preferred_name": "TEAM Creatif", "country_associated": "fr", "authorized_access_point": "TEAM Creatif", "biographical_information": ["Agence indépendante de design depuis 1986"]} 1 -2023-07-08 08:20:35.90319 2023-07-08 08:20:35.903193 b29825a2-c805-4d11-9819-79efc61a9047 {"md5": "0018ca2d7fe7826ffafde3532b46e26d", "pid": "118275593", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/118275593", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/118275593", "source": "IDREF"}], "variant_name": ["Milford, T. A."], "date_of_birth": "1970", "preferred_name": "Milford, T. A.", "country_associated": "xxu", "variant_access_point": ["Milford, T. A."], "authorized_access_point": "Milford, T. A., 1970-", "biographical_information": ["Diplômé de Duke et d'Harward", "Prof. d'histoire"]} 1 -2023-07-08 08:20:35.965873 2023-07-08 08:20:35.965878 81cc9abb-3d3b-48c5-9812-ef80d2428f96 {"md5": "43948c535e33dc42545dec71bf18bbcb", "pid": "118630245", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/118630245", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/118630245", "source": "IDREF"}], "preferred_name": "Banyai, Andrew Ladislaus", "country_associated": "xxu", "authorized_access_point": "Banyai, Andrew Ladislaus", "biographical_information": ["Clinical professor of Medicine, Emeritus Marquette University school of medicine"]} 1 -2023-07-08 08:20:36.228428 2023-07-08 08:20:36.228433 e96e8185-5926-4da4-8ffd-f4568a4ca51a {"md5": "6afc6c446d8056cb07731958e9506f57", "pid": "119176114", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/119176114", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/119176114", "source": "IDREF"}], "date_of_birth": "1979", "preferred_name": "Zarzecka, Anna", "country_associated": "pl", "authorized_access_point": "Zarzecka, Anna, 1979-...."} 1 -2023-07-08 08:20:36.391861 2023-07-08 08:20:36.391869 af6d9b44-0e3f-4c6c-961f-9f4d4524522b {"md5": "13afa56cff19fc80fe6150a7f81e12f5", "pid": "11954945X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/11954945X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/11954945X", "source": "IDREF"}], "preferred_name": "Fanguin, Daniel", "country_associated": "fr", "authorized_access_point": "Fanguin, Daniel", "biographical_information": ["Docteur et enseignant en psychologie"]} 1 -2023-07-08 08:20:36.480617 2023-07-08 08:20:36.480625 6445feae-b3c9-430b-a1c0-808273556edf {"md5": "32f1bd230c2d4fa2e5c56c4d2ce357ad", "pid": "119926350", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/119926350", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/119926350", "source": "IDREF"}], "date_of_birth": "1979-08-28", "preferred_name": "Fraysse, Fabrice", "country_associated": "fr", "authorized_access_point": "Fraysse, Fabrice, 1979-....", "biographical_information": ["Titulaire d'un doctorat en biogéochimie expérimentale, soutenu à l'Université Paul Sabatier à Toulouse (en 2007)"]} 1 -2023-07-08 08:20:36.571392 2023-07-08 08:20:36.571395 c02b69aa-dd5b-4640-b10e-ce7fe5329edd {"md5": "66c05b6eca8eb2a4cd6d8c1d3fab38b2", "pid": "119945290", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/119945290", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/119945290", "source": "IDREF"}], "date_of_birth": "1954", "preferred_name": "Sylvain, Teva", "country_associated": "fr", "authorized_access_point": "Sylvain, Teva, 1954-....", "biographical_information": ["Photographe, né à Tahiti et fondateur en 1976 de la société \\" Pacific Promotion Tahiti \\""]} 1 -2023-07-08 08:20:36.648059 2023-07-08 08:20:36.648064 a25dbf9a-7811-456d-b9fc-9fac23bc68cd {"md5": "d14387f3dfa67b21938c2f9d1e8d7038", "pid": "119980924", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/119980924", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/119980924", "source": "IDREF"}], "variant_name": ["Chartered Financial Analysts Institute", "Institute of Chartered Financial Analysts"], "preferred_name": "CFA Institute", "country_associated": "xxu", "variant_access_point": ["Chartered Financial Analysts Institute", "Institute of Chartered Financial Analysts"], "date_of_establishment": "2004", "authorized_access_point": "CFA Institute", "biographical_information": ["Anciennement AIMR (Association for Investment Management and Research). Cet institut délivre le Chartered Financial Analyst, la certification professionnelle d'expertise financière. Etabli à Charlottesville (Va.) (en 2006)"]} 1 -2023-07-08 08:20:36.73442 2023-07-08 08:20:36.734426 f78ab193-3a6f-49fd-b229-c0756335f54d {"md5": "b93017b483a95ee83b031eec90dba834", "pid": "120051575", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "identifier": "http://www.idref.fr/120051575", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/120051575", "source": "IDREF"}], "variant_name": ["山下, 克明"], "date_of_birth": "1952", "preferred_name": "Yamashita, Katsuaki", "country_associated": "ja", "variant_access_point": ["山下, 克明, 1952-...."], "authorized_access_point": "Yamashita, Katsuaki, 1952-....", "biographical_information": ["Transcription Hepburn modifié", "Historien"]} 1 -2023-07-08 08:20:36.82882 2023-07-08 08:20:36.828829 ead52845-6e7b-4c1f-b41c-0473b54b682e {"md5": "ca69f51eb819d0e9a8ae3241ecdc3d00", "pid": "120122545", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/120122545", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/120122545", "source": "IDREF"}], "preferred_name": "Viel, Jean-Augustin-Pascal", "country_associated": "fr", "authorized_access_point": "Viel, Jean-Augustin-Pascal"} 1 -2023-07-08 08:20:36.907658 2023-07-08 08:20:36.907672 ee25f0b3-b2e8-4422-bd29-fcc2d2ffa738 {"md5": "2e62aa963a6245cad7869c6146f01755", "pid": "120196204", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/120196204", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/120196204", "source": "IDREF"}], "preferred_name": "Zakin, D.", "country_associated": "fr", "authorized_access_point": "Zakin, D.", "biographical_information": ["Docteur (1939)"]} 1 -2023-07-08 08:20:36.990413 2023-07-08 08:20:36.990424 85e900e1-3da8-4809-9d68-d498fa1d4a60 {"md5": "9f7fc7898bc4879dd9f02fe737f726b5", "pid": "120483076", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/120483076", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/120483076", "source": "IDREF"}], "variant_name": ["Veillon, Gabriel Isaac"], "date_of_birth": "1733-03-28", "date_of_death": "1807-06-09", "preferred_name": "Veillon, Isaac", "country_associated": "sz", "variant_access_point": ["Veillon, Gabriel Isaac"], "authorized_access_point": "Veillon, Isaac, 1733-1807", "biographical_information": ["Gabriel Isaac Veillon, né à Bex (Suisse), le 28 mars 1733, fondateur d'une maison de commerce à Nice. Député extraordinaire du comté de Nice, avec Jean Dominique Blanqui, auprès de la Convention, pour le rattachement du comté à la France (24 octobre 1792-31 janvier 1793). Décédé à Roche (canton de Vaud, Suisse), le 9 juin 1807"]} 1 -2023-07-08 08:20:38.029968 2023-07-08 08:20:38.029973 8a1263b7-ef8b-422d-add5-818513e978b5 {"md5": "477d4a8f26f8d1dc624349e04518fa48", "pid": "122301374", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/122301374", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/122301374", "source": "IDREF"}], "preferred_name": "Neveu, Auguste", "country_associated": "fr", "authorized_access_point": "Neveu, Auguste"} 1 -2023-07-08 08:20:37.081464 2023-07-08 08:20:37.081471 ef14fc05-4bdf-425f-9f39-8e09f061ce76 {"md5": "a083b9a67012965aba6d79f6509a4e48", "pid": "120678918", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/120678918", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/120678918", "source": "IDREF"}], "preferred_name": "Confédération générale de la production française", "country_associated": "fr", "date_of_termination": "1936", "date_of_establishment": "1919", "authorized_access_point": "Confédération générale de la production française"} 1 -2023-07-08 08:20:37.166025 2023-07-08 08:20:37.166031 6671aa2a-4ed7-47f0-98e2-3fe3761a0f81 {"md5": "63ac026783ae9cc0d2b459b929c4c8c5", "pid": "120767848", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": true, "identifier": "http://www.idref.fr/120767848", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/120767848", "source": "IDREF"}], "preferred_name": "Rencontre internationale de l'Assomption pour le dialogue", "date_of_termination": "2006-08-06", "date_of_establishment": "2006-07-27", "authorized_access_point": "Rencontre internationale de l'Assomption pour le dialogue (03 ; 2006 ; Nairobi)"} 1 -2023-07-08 08:20:37.260668 2023-07-08 08:20:37.260677 1983955f-8e7b-408d-a3e5-d4a2ceea8aa2 {"md5": "dbdca14805e9a8a0ac1d3211fbca3100", "pid": "120895579", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/120895579", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/120895579", "source": "IDREF"}], "preferred_name": "Comité d'experts sur la recherche en matière de sport", "country_associated": "fr", "authorized_access_point": "Comité d'experts sur la recherche en matière de sport"} 1 -2023-07-08 08:20:37.436915 2023-07-08 08:20:37.436919 05e931aa-c69a-46a8-8acc-0da70c81b921 {"md5": "c7799ea79b1a9a6017cbab1ab056c741", "pid": "121151778", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/121151778", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/121151778", "source": "IDREF"}], "variant_name": ["Bardin-Lesage, Pauline", "Bardin, Pauline"], "date_of_birth": "1970-04-14", "preferred_name": "Lesage, Pauline", "country_associated": "fr", "variant_access_point": ["Bardin-Lesage, Pauline", "Bardin, Pauline"], "authorized_access_point": "Lesage, Pauline, 1970-...."} 1 -2023-07-08 08:20:37.510063 2023-07-08 08:20:37.510075 b5fbc23e-e838-4a8f-a2e0-1edfc5d8e8f6 {"md5": "4e13dc3244fed381035859b1f8be6464", "pid": "121294757", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": true, "identifier": "http://www.idref.fr/121294757", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/121294757", "source": "IDREF"}], "preferred_name": "Congresso nazionale di archeologia medievale", "country_associated": "it", "date_of_termination": "2006-09-30", "date_of_establishment": "2006-09-26", "authorized_access_point": "Congresso nazionale di archeologia medievale (04 ; 2006 ; Sienne, Italie)"} 1 -2023-07-08 08:20:37.672525 2023-07-08 08:20:37.672534 89988b29-ee91-43d4-906e-ef61a5999fc1 {"md5": "573cee31ecfd566ca20c5bfe483ea274", "pid": "121758419", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": true, "identifier": "http://www.idref.fr/121758419", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/121758419", "source": "IDREF"}], "preferred_name": "Pharmaziehistorische Biennale", "country_associated": "gw", "date_of_termination": "2002-04-28", "date_of_establishment": "2002-04-26", "authorized_access_point": "Pharmaziehistorische Biennale (2002 ; Karlsruhe, Allemagne)"} 1 -2023-07-08 08:20:37.773375 2023-07-08 08:20:37.773382 d82f13dd-f94b-4d56-8919-2cb7b233676c {"md5": "06922db9c51919ad5c430995de12dc3e", "pid": "121801713", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/121801713", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/121801713", "source": "IDREF"}], "date_of_birth": "1973", "preferred_name": "Da Silva Lala, Amaral", "country_associated": "ao", "authorized_access_point": "Da Silva Lala, Amaral, 1973-...."} 1 -2023-07-08 08:20:37.862835 2023-07-08 08:20:37.86284 d57ed7a5-1a12-43db-8e65-a6b5743f4a23 {"md5": "d942f4f49f0be68a8d10809a2181add1", "pid": "121832260", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/121832260", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/121832260", "source": "IDREF"}], "date_of_birth": "1962", "preferred_name": "Hoppe, Albrecht", "country_associated": "gw", "authorized_access_point": "Hoppe, Albrecht, 1962-....", "biographical_information": ["Chercheur à l'Arbeitsstelle für Kommunikationsgeschichte und interkulturelle Publizistik ; puis chercheur à l'Otto-Friedrich-Universität Bamberg (en 2020)"]} 1 -2023-07-08 08:20:37.949915 2023-07-08 08:20:37.949921 750519f5-8cf1-43f6-bd05-00e2057a937e {"md5": "989bbf540e8ca99116268a8cff3a2fe3", "pid": "122093186", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/122093186", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/122093186", "source": "IDREF"}], "preferred_name": "Vitellaro Zuccarello, Piero", "country_associated": "it", "authorized_access_point": "Vitellaro Zuccarello, Piero"} 1 -2023-07-08 08:20:37.360709 2023-07-08 10:24:48.475544 89025000-1dfa-4552-9171-86fa1bcef3d7 {"md5": "e9ad847938c72e92f1b75c776d7814cc", "pid": "121150283", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/121150283", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/121150283", "source": "IDREF"}], "date_of_birth": "1952-07-07", "preferred_name": "Haas, Jean-François", "country_associated": "sz", "authorized_access_point": "Haas, Jean-François, 1952-....", "biographical_information": ["Écrivain. Carrière d'enseignant au Collège de Gambach à Fribourg (Suisse)"]} 2 -2023-07-08 08:20:38.123769 2023-07-08 08:20:38.123777 77875c25-4157-4236-88ab-126158fbfbc9 {"md5": "44108dfba4e40895dd4b905cc6a1f2c4", "pid": "122411749", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": false, "identifier": "http://www.idref.fr/122411749", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/122411749", "source": "IDREF"}], "variant_name": ["Katholieke universiteit Nijmegen. Faculteit der letteren. Afdeling taal en spraak", "Katholieke universiteit Nijmegen. Faculteit der letteren. Department of language and speech"], "preferred_name": "Katholieke universiteit Nijmegen. Afdeling taal en spraak", "country_associated": "ne", "variant_access_point": ["Katholieke universiteit Nijmegen. Faculteit der letteren. Afdeling taal en spraak", "Katholieke universiteit Nijmegen. Faculteit der letteren. Department of language and speech"], "date_of_establishment": "1988", "parallel_access_point": ["Katholieke universiteit Nijmegen. Department of language and speech"], "authorized_access_point": "Katholieke universiteit Nijmegen. Afdeling taal en spraak", "biographical_information": ["P.O. Box 9103, 6500 HD Nijmegen, Pays-Bas"]} 1 -2023-07-08 08:20:38.215191 2023-07-08 08:20:38.215196 0c4709cc-ce68-4072-ba0c-768162b635da {"md5": "0790e22374c15a77ee456e35dc66fb5f", "pid": "122514904", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/122514904", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/122514904", "source": "IDREF"}], "preferred_name": "Charvet, Pierre Alexandre", "country_associated": "fr", "authorized_access_point": "Charvet, Pierre Alexandre", "biographical_information": ["Docteur ès sciences, de Grenoble (de département de l'Isère)"]} 1 -2023-07-08 08:20:38.314113 2023-07-08 08:20:38.314119 8740f477-48d6-4753-bec0-9d772f423bfd {"md5": "0672c685aee47da1f29524d6404b7101", "pid": "122677315", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/122677315", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/122677315", "source": "IDREF"}], "preferred_name": "Florentz, Didier", "authorized_access_point": "Florentz, Didier", "biographical_information": ["Ilustrateur, coloriste de bande dessinée"]} 1 -2023-07-08 08:20:38.40783 2023-07-08 08:20:38.407839 d4a0d3a4-d8d3-469f-b716-d72ed5527f74 {"md5": "bd104f3d45305c460c30288d1be7b8c5", "pid": "122762142", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/122762142", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/122762142", "source": "IDREF"}], "variant_name": ["D'Hermies, François"], "preferred_name": "Hermies, François d'", "country_associated": "xx", "variant_access_point": ["D'Hermies, François"], "authorized_access_point": "Hermies, François d'", "biographical_information": ["Praticien hospitalier, service d'Ophtalmologie, Anatomo-pathologie tumeurs, Hôpital Hôtel-Dieu (75004 PARIS) en 2007"]} 1 -2023-07-08 08:20:38.492174 2023-07-08 08:20:38.492185 74dfb92f-ee37-4781-91ab-0c08d73e85ca {"md5": "a1c29e68c7e9df7805784712889cebb5", "pid": "123006287", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifier": "http://www.idref.fr/123006287", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/123006287", "source": "IDREF"}], "preferred_name": "Missione archeologica italiana a Hierapolis", "country_associated": "tu", "authorized_access_point": "Missione archeologica italiana a Hierapolis"} 1 -2023-07-08 08:20:38.559791 2023-07-08 08:20:38.559794 8f57ebdc-e4e0-45db-97f7-e526cc2fd20f {"md5": "475cb6a2dc82ae994314458531eab74c", "pid": "123007089", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rum", "fre"], "identifier": "http://www.idref.fr/123007089", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/123007089", "source": "IDREF"}], "preferred_name": "Macedonsky, Nikita", "authorized_access_point": "Macedonsky, Nikita"} 1 -2023-07-08 08:20:38.711522 2023-07-08 08:20:38.71153 a3a771d6-4c31-436c-bf93-7ea0ee2a6718 {"md5": "1aa8a2e3ef635676a1def4c7f036f758", "pid": "123395321", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/123395321", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/123395321", "source": "IDREF"}], "variant_name": ["Fischetti, Domenico"], "date_of_birth": "1725", "date_of_death": "1810", "preferred_name": "Fischietti, Domenico", "country_associated": "it", "variant_access_point": ["Fischetti, Domenico"], "authorized_access_point": "Fischietti, Domenico, 1725-1810", "biographical_information": ["Compositeur italien", "Collaboration avec Carlo Goldoni pour l'écriture de quatre opéras comiques"]} 1 -2023-07-08 08:20:38.884782 2023-07-08 08:20:38.884785 813d6b3c-fc87-4727-bcce-7af2e8ace7e0 {"md5": "a77f783722bf14da23cb005abdb427cd", "pid": "123496225", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/123496225", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/123496225", "source": "IDREF"}], "preferred_name": "Bouteiller, Jérôme", "country_associated": "fr", "authorized_access_point": "Bouteiller, Jérôme", "biographical_information": ["Fondateur et rédacteur en chef de Neteco, quotidien en ligne sur les nouvelles technologies"]} 1 -2023-07-08 08:20:38.632435 2023-07-08 10:27:13.956755 a0b63622-ad3e-417e-b890-a7b458833166 {"md5": "742a870de8ca40ad591a4ee1bf06c23f", "pid": "123240638", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/123240638", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/123240638", "source": "IDREF"}], "variant_name": ["Pénard-Morand, Céline"], "date_of_birth": "1977-11-16", "preferred_name": "Morand Céline", "country_associated": "fr", "variant_access_point": ["Pénard-Morand, Céline"], "authorized_access_point": "Morand Céline", "biographical_information": ["Docteur en médecine (2007)"]} 2 -2023-07-08 08:20:38.959571 2023-07-08 08:20:38.959575 c2523218-2845-4a0d-bb16-bfaebaf97327 {"md5": "8327c4a95a6fed8afc78373038925997", "pid": "123609836", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["tur"], "identifier": "http://www.idref.fr/123609836", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/123609836", "source": "IDREF"}], "date_of_birth": "1933", "date_of_death": "2015-11-04", "preferred_name": "Akın, Gülten", "country_associated": "tu", "authorized_access_point": "Akın, Gülten, 1933-2015", "biographical_information": ["Poète"]} 1 -2023-07-08 08:20:39.031581 2023-07-08 08:20:39.031585 8fdac59d-6e44-40d5-b9a2-1661fe85dcd2 {"md5": "b71bb9036a21c4e21350033ef479caa7", "pid": "124179290", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/124179290", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/124179290", "source": "IDREF"}], "date_of_birth": "1971", "preferred_name": "Lavelle, Patricia", "country_associated": "fr", "authorized_access_point": "Lavelle, Patricia, 1971-....", "biographical_information": ["Docteur en philosophie et sciences sociales. Chercheuse rattachée au Centre de recherches interdisciplinaires sur l'Allemagne de l'EHESS (en 2008)"]} 1 -2023-07-08 08:20:39.11458 2023-07-08 08:20:39.114588 391d6e2a-5b67-47e1-a19c-39d8596f2a05 {"md5": "27b3bac4d27fe9b067e86e664b11bac7", "pid": "12420709X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/12420709X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/12420709X", "source": "IDREF"}], "preferred_name": "Vidal, Nuno", "country_associated": "xx", "authorized_access_point": "Vidal, Nuno", "biographical_information": ["Enseignant à la Faculty of Economics, University of Coimbra, Portugal"]} 1 -2023-07-08 08:20:39.295901 2023-07-08 08:20:39.295906 c5782d3f-c474-45ca-8f54-dc5f2944aaef {"md5": "4410b7620cfe8d58a972a2b55c0792ae", "pid": "12430284X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["pol"], "identifier": "http://www.idref.fr/12430284X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/12430284X", "source": "IDREF"}], "date_of_birth": "1911", "preferred_name": "Ciętak, Zdzisław", "country_associated": "pl", "authorized_access_point": "Ciętak, Zdzisław, 1911-...."} 1 -2023-07-08 08:20:39.383588 2023-07-08 08:20:39.383594 0663ba8f-f068-40e3-8bcd-834e0ac08afe {"md5": "309a41c4b7fd17a92b337b176bae2ea4", "pid": "124342078", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["tha"], "conference": false, "identifier": "http://www.idref.fr/124342078", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/124342078", "source": "IDREF"}], "variant_name": ["สถาบันวิจัยชาวเขา (เชียงใหม่)", "Tribal Research Institute, Department of Public Welfare, Ministry of Labour and Social Welfare", "Tribal Research Institute, Department of Public Welfare", "Tribal Research Institute (Chiangmai, Thaïlande)", "Tribal Research Institute", "TRI", "Sathāban Wičhai Chāokhao", "Sathāban Wičhai Chāokhao Chīang Mai", "Sathāban Wičhai Chāokhao Čhangwat Chīang Mai", "สถาบันวิจัยชาวเขา", "Sathāban Wičhai Chāokhao", "สถาบันวิจัยชาวเขา จังหวัดเชียงใหม่", "Sathāban Wičhai Chāokhao Čhangwat Chīang Mai"], "preferred_name": "Sathāban Wičhai Chāokhao (Chīang Mai)", "country_associated": "th", "date_of_termination": "2002", "variant_access_point": ["Tribal Research Institute, Department of Public Welfare, Ministry of Labour and Social Welfare", "Tribal Research Institute, Department of Public Welfare", "Tribal Research Institute (Chiangmai, Thaïlande)", "Tribal Research Institute", "TRI", "Sathāban Wičhai Chāokhao", "Sathāban Wičhai Chāokhao Chīang Mai", "Sathāban Wičhai Chāokhao Čhangwat Chīang Mai", "สถาบันวิจัยชาวเขา", "Sathāban Wičhai Chāokhao", "สถาบันวิจัยชาวเขา จังหวัดเชียงใหม่", "Sathāban Wičhai Chāokhao Čhangwat Chīang Mai"], "date_of_establishment": "1965", "authorized_access_point": "Sathāban Wičhai Chāokhao (Chīang Mai)", "biographical_information": ["Institut national de recherche sur les montagnards en Thaïlande, situé à Chiang Mai"]} 1 -2023-07-08 08:20:39.468093 2023-07-08 08:20:39.468099 5429a4d6-bc17-4537-964a-af8175b8aa4e {"md5": "a4bb9f90e369b72c9d85ae05fe3b0b0f", "pid": "124497209", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/124497209", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/124497209", "source": "IDREF"}], "date_of_birth": "1939", "preferred_name": "Wickop, Hanne", "country_associated": "gw", "authorized_access_point": "Wickop, Hanne, 1939-...", "biographical_information": ["Artiste peintre et écrivain"]} 1 -2023-07-08 08:20:39.664109 2023-07-08 08:20:39.664112 ede5fd4d-5a71-4130-a3b8-ffa88a0909da {"md5": "f3afca6fa25991c024426c025efaf0fc", "pid": "124670954", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["cze"], "conference": false, "identifier": "http://www.idref.fr/124670954", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/124670954", "source": "IDREF"}], "preferred_name": "Galerie hlavního města Prahy (Prague)", "date_of_establishment": "1963", "authorized_access_point": "Galerie hlavního města Prahy (Prague)", "biographical_information": ["Galerie municipale fondée en 1963"]} 1 -2023-07-08 08:20:39.747193 2023-07-08 08:20:39.747202 5a0ea9b5-7c48-4134-b6ef-43bc7fe6a64a {"md5": "e05ebd2922ee9c62c55ab100da84f16d", "pid": "124764916", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/124764916", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/124764916", "source": "IDREF"}], "variant_name": ["Oberhauser, O.C."], "date_of_birth": "1951-..-..", "preferred_name": "Oberhauser, Otto", "country_associated": "au", "variant_access_point": ["Oberhauser, O.C."], "authorized_access_point": "Oberhauser, Otto, 1951-....", "biographical_information": ["Bibliothécaire et chercheur en sciences de l'information en poste à l'université technique de Vienne, Autriche (en 2008)"]} 1 -2023-07-08 08:20:41.662929 2023-07-08 08:20:41.662946 d484d3a5-908f-4302-ae36-0423c9714003 {"md5": "1600a7e5b2a2c2a293174a0125420904", "pid": "128116951", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/128116951", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/128116951", "source": "IDREF"}], "date_of_birth": "1967", "preferred_name": "Oppel, Kenneth", "country_associated": "xxc", "authorized_access_point": "Oppel, Kenneth, 1967-...."} 1 -2023-07-08 08:20:39.565748 2023-07-08 10:28:48.894155 96d7de0a-d1bd-44ee-9df9-cec2e7f9db9e {"md5": "e8bfd57dad323e9df5d34b89b334e26c", "pid": "124508758", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/124508758", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/124508758", "source": "IDREF"}], "date_of_birth": "1930-12-27", "preferred_name": "Matko, Dubravko J. I.", "country_associated": "xx", "authorized_access_point": "Matko, Dubravko J. I., 1930-", "biographical_information": ["Spécialiste de l'économie soviétique. Membre de l'institute of soviet and east european studies (Université de Glasgow)"]} 2 -2023-07-08 08:20:39.833615 2023-07-08 08:20:39.833621 7c9a9f45-9794-4c9b-bfa5-4027c4cce224 {"md5": "8a30ad81afdc1f26010fdf636379861e", "pid": "124806376", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/124806376", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/124806376", "source": "IDREF"}], "variant_name": ["France. Académie (Créteil). Mission d'action culturelle des cultures et langues régionales"], "preferred_name": "France. Académie (Créteil). Mission de l'action culturelle des cultures et langues régionales", "country_associated": "fr", "variant_access_point": ["France. Académie (Créteil). Mission d'action culturelle des cultures et langues régionales"], "authorized_access_point": "France. Académie (Créteil). Mission de l'action culturelle des cultures et langues régionales", "biographical_information": ["Adresse : 4 rue Georges-Enesco, 94010 Créteil Cedex"]} 1 -2023-07-08 08:20:39.911333 2023-07-08 08:20:39.911336 56be73c9-e6d3-4d8a-9a35-d3bf73feaaf1 {"md5": "7342cd01871c44ad7d082b8711da8f54", "pid": "125074506", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/125074506", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/125074506", "source": "IDREF"}], "preferred_name": "Grody, Steve", "country_associated": "xxu", "authorized_access_point": "Grody, Steve", "biographical_information": ["Spécialiste du graffiti américain"]} 1 -2023-07-08 08:20:40.011066 2023-07-08 08:20:40.011075 fde590f9-45da-48ab-b1fe-b41e9e6c0574 {"md5": "e2aa06b27f320227ec41607231e73b44", "pid": "125871074", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["chi"], "conference": false, "identifier": "http://www.idref.fr/125871074", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/125871074", "source": "IDREF"}], "variant_name": ["河北省 (Chine). 文物管理处", "Hebei sheng (Chine). Wenwu guanli chu", "Hebei sheng (Chine). Wen wu kuan li chʻu", "Hebei sheng (Chine). Wen-wu kuan-li chʻu"], "preferred_name": "Hebei sheng (Chine). Wen wu guan li chu", "country_associated": "cc", "variant_access_point": ["Hebei sheng (Chine). Wenwu guanli chu", "Hebei sheng (Chine). Wen wu kuan li chʻu", "Hebei sheng (Chine). Wen-wu kuan-li chʻu"], "authorized_access_point": "Hebei sheng (Chine). Wen wu guan li chu", "biographical_information": ["Transcription pin yin"]} 1 -2023-07-08 08:20:40.09855 2023-07-08 08:20:40.09856 f9a0d6a9-0076-4eee-9cf1-ec005674a535 {"md5": "7342b43d47105d3288900db91648940e", "pid": "126029784", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/126029784", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/126029784", "source": "IDREF"}], "date_of_birth": "1925", "preferred_name": "Khanna, Krishen", "country_associated": "ii", "authorized_access_point": "Khanna, Krishen, 1925-....", "biographical_information": ["Artiste"]} 1 -2023-07-08 08:20:40.183471 2023-07-08 08:20:40.183477 c794efc1-0ba7-460f-a232-6630527b0d31 {"md5": "8f02b1720361787c74ade539a9d74030", "pid": "126078858", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/126078858", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/126078858", "source": "IDREF"}], "date_of_birth": "1980-09-02", "preferred_name": "Luiggi, Yannick", "country_associated": "fr", "authorized_access_point": "Luiggi, Yannick, 1980-....", "biographical_information": ["Chirurgien-dentiste. Né le 2 septembre 1980 à Marseille. Thèse d'exercice soutenue à Marseille le 23 juin 2008"]} 1 -2023-07-08 08:20:40.273815 2023-07-08 08:20:40.273824 b851b518-ff40-4603-bdaa-1b964e240d6b {"md5": "a8f843054b68dec129c4217213aec6ba", "pid": "126483361", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa", "ita"], "conference": true, "identifier": "http://www.idref.fr/126483361", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/126483361", "source": "IDREF"}], "preferred_name": "Congreso Internacional Ciudades amuralladas", "country_associated": "sp", "date_of_termination": "2005-11-26", "date_of_establishment": "2005-11-24", "authorized_access_point": "Congreso Internacional Ciudades amuralladas (2005 ; Pamplona)"} 1 -2023-07-08 08:20:40.35808 2023-07-08 08:20:40.358088 dd91b439-40da-4288-a764-4aff4babd076 {"md5": "162cf5bbb3e5790d7a67fc83dbf29c46", "pid": "126596131", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/126596131", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/126596131", "source": "IDREF"}], "preferred_name": "Casanova, Christian", "country_associated": "sz", "authorized_access_point": "Casanova, Christian"} 1 -2023-07-08 08:20:40.425414 2023-07-08 08:20:40.425417 a7d07252-8dd7-4b8f-b598-08023aab8fbf {"md5": "23b02ae68cc1419ccbdf95e3da2cd6ea", "pid": "126598371", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": true, "identifier": "http://www.idref.fr/126598371", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/126598371", "source": "IDREF"}], "variant_name": ["Göppinger Staufertage"], "preferred_name": "Staufertage", "country_associated": "gw", "date_of_termination": "2004-11-14", "variant_access_point": ["Göppinger Staufertage (21 ; 2004)"], "date_of_establishment": "2004-11-12", "authorized_access_point": "Staufertage (21 ; 2004 ; Göppingen, Allemagne)"} 1 -2023-07-08 08:20:40.608533 2023-07-08 08:20:40.608536 8515290a-234a-4678-846b-12288743d5a9 {"md5": "b0feeaba92e9a1e4b67830cba69fba82", "pid": "127065113", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/127065113", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/127065113", "source": "IDREF"}], "date_of_birth": "1978", "preferred_name": "Scheffler, Thilo", "country_associated": "gw", "authorized_access_point": "Scheffler, Thilo, 1978-...", "biographical_information": ["Etudes d'histoire de l'art, de média et de communication"]} 1 -2023-07-08 08:20:40.694235 2023-07-08 08:20:40.694239 a189e1ef-1407-4893-b7c7-3d66e90b669a {"md5": "779e45337c10b8d046cf46181879a934", "pid": "127163905", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/127163905", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/127163905", "source": "IDREF"}], "preferred_name": "Chauvigny (Vienne, département). Musées", "country_associated": "fr", "authorized_access_point": "Chauvigny (Vienne, département). Musées", "biographical_information": ["Adresse : 3 rue Saint-Pierre, BP 64, 86300 Chauvigny. Contact : 05 49 46 35 45. Adresse électronique : musees.chauvigny@alienor.org"]} 1 -2023-07-08 08:20:40.781759 2023-07-08 08:20:40.781764 294343b9-98ec-48b5-a24a-9ce93eb2e342 {"md5": "daf5ffcaabdb83c73d13f3ec6e2f79e5", "pid": "127251502", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/127251502", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/127251502", "source": "IDREF"}], "date_of_birth": "1961", "preferred_name": "Zierl, Andreas", "authorized_access_point": "Zierl, Andreas, 1961-", "biographical_information": ["Professeur de philologie, Riemenschneider-Gymnasium di Würzburg (en 2006)"]} 1 -2023-07-08 08:20:40.861946 2023-07-08 08:20:40.861954 12cd9dec-e9e4-474d-b097-b03405b8c558 {"md5": "1e235c9985555fe444c8ea3429c08c29", "pid": "127287159", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/127287159", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/127287159", "source": "IDREF"}], "variant_name": ["Ormsby-Gore, W. G. A.", "Gore, William George Arthur Ormsby", "Harlech, W. George Arthur", "Harlech, William George Arthur Ormsby-Gore, Baron"], "date_of_birth": "1885", "date_of_death": "1964", "preferred_name": "Ormsby-Gore, William George Arthur", "country_associated": "xxk", "variant_access_point": ["Ormsby-Gore, W. G. A.", "Gore, William George Arthur Ormsby", "Harlech, W. George Arthur", "Harlech, William George Arthur Ormsby-Gore, Baron"], "authorized_access_point": "Ormsby-Gore, William George Arthur, 1885-1964"} 1 -2023-07-08 08:20:41.025037 2023-07-08 08:20:41.025048 7661ecb0-09aa-4b23-b274-490edb8f0d6b {"md5": "b80abc549332f1388cb22df23d7d0d6c", "pid": "127364013", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifier": "http://www.idref.fr/127364013", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/127364013", "source": "IDREF"}], "preferred_name": "Centre d'études et de recherches prémontrées. Colloque", "country_associated": "be", "date_of_termination": "1999", "date_of_establishment": "1999", "authorized_access_point": "Centre d'études et de recherches prémontrées. Colloque (24 ; 1998 ; Abbaye Saint-Michel de Frigolet, Bouches du Rhone et Prieuré Sainte-Anne de Bonlieu, Drôme)"} 1 -2023-07-08 08:20:41.121456 2023-07-08 08:20:41.121465 1250996a-eef8-411a-8888-71b3f9298d12 {"md5": "1eb836d59d50d88dd755ef54e2ab3b8f", "pid": "127488790", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/127488790", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/127488790", "source": "IDREF"}], "preferred_name": "Wündisch, Sebastian", "country_associated": "gw", "authorized_access_point": "Wündisch, Sebastian", "biographical_information": ["Avocat"]} 1 -2023-07-08 08:20:41.228813 2023-07-08 08:20:41.228818 eb1b155d-f164-4ec5-ae36-a8639c302d64 {"md5": "953a21ba573236e90c06a69f385ce9ec", "pid": "127521038", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/127521038", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/127521038", "source": "IDREF"}], "preferred_name": "Lambert, Nicolas C. G.", "country_associated": "xxc", "authorized_access_point": "Lambert, Nicolas C. G.", "biographical_information": ["Thèse de droit, Faculty of Law, McGill University, Montreal (Canada), 2005"]} 1 -2023-07-08 08:20:41.319031 2023-07-08 08:20:41.319045 12b07b76-7dbd-47ca-91f6-f9f17daf59be {"md5": "8a581ba3c1b8330022236dc3e10d14c4", "pid": "127789111", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifier": "http://www.idref.fr/127789111", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/127789111", "source": "IDREF"}], "variant_name": ["International geographical congress", "Union géographique internationale. Congrès international de géographie", "UGI. International geographical congress"], "preferred_name": "Congrès international de géographie", "country_associated": "ti", "date_of_termination": "2008-08-15", "variant_access_point": ["International geographical congress (31 ; 2008 ; Tunis)", "Union géographique internationale. Congrès international de géographie (31 ; 2008 ; Tunis)", "UGI. International geographical congress (31 ; 2008 ; Tunis)"], "date_of_establishment": "2008-08-12", "authorized_access_point": "Congrès international de géographie (31 ; 2008 ; Tunis)"} 1 -2023-07-08 08:20:41.444222 2023-07-08 08:20:41.444228 2b79a125-660a-45ed-b3f0-bc6217339dbf {"md5": "4b6824cac78449c511a095386374cffa", "pid": "127838732", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": false, "identifier": "http://www.idref.fr/127838732", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/127838732", "source": "IDREF"}], "variant_name": ["DGP", "German society for protozoologie"], "preferred_name": "Deutsche Gesellschaft für Protozoologie", "country_associated": "gw", "variant_access_point": ["DGP", "German society for protozoologie"], "date_of_establishment": "1981", "authorized_access_point": "Deutsche Gesellschaft für Protozoologie", "biographical_information": ["Société fondée à Münster en 1981"]} 1 -2023-07-08 08:20:41.56038 2023-07-08 08:20:41.560391 925ec9ea-2b51-416f-84e3-fed72fe67c92 {"md5": "19710a2836ab8bed63807dce64d539e4", "pid": "127859829", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/127859829", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/127859829", "source": "IDREF"}], "preferred_name": "Kolb, Erich", "country_associated": "gw", "authorized_access_point": "Kolb, Erich"} 1 -2023-07-08 08:20:41.796647 2023-07-08 08:20:41.796661 bfc4920a-79d4-461c-9077-b8840668e8b1 {"md5": "d2cd068a38edc5b98d1dcbe8f2ba8453", "pid": "128258365", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "qualifier": "Sir", "identifier": "http://www.idref.fr/128258365", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/128258365", "source": "IDREF"}], "preferred_name": "Willis, Frederick J., Sir", "country_associated": "xxk", "authorized_access_point": "Willis, Frederick J., Sir"} 1 -2023-07-08 08:20:41.914315 2023-07-08 08:20:41.914328 25f5d50d-31d7-4553-aea1-b1d81b6e1882 {"md5": "7dfd18e6f651d80b9d507b17588cc2e2", "pid": "128283661", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ara"], "identifier": "http://www.idref.fr/128283661", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/128283661", "source": "IDREF"}], "variant_name": ["Hāshim, ʿAbd al-Hādī", "ʿAbd al-Hādī Hāshim", "هاشم، عبد الهادي"], "preferred_name": "Hāšim, ʿAbd al-Hādī", "variant_access_point": ["Hāshim, ʿAbd al-Hādī", "ʿAbd al-Hādī Hāshim", "هاشم، عبد الهادي"], "authorized_access_point": "Hāšim, ʿAbd al-Hādī"} 1 -2023-07-08 08:20:42.026415 2023-07-08 08:20:42.026422 5e4b91eb-00c3-4d3a-925a-704ebe90256e {"md5": "d79e63d6b4638c83af1bbd66441d7a37", "pid": "128499877", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/128499877", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/128499877", "source": "IDREF"}], "preferred_name": "Union d'électricité", "country_associated": "fr", "date_of_establishment": "1904", "authorized_access_point": "Union d'électricité", "biographical_information": ["Adresse : 3 rue de Messine, 75008 Paris"]} 1 -2023-07-08 08:20:42.182317 2023-07-08 08:20:42.182329 c455c646-5a77-45ab-acd0-e86c9ad0eb63 {"md5": "5fa650ef6148e849a5dea142f2a06011", "pid": "128529202", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/128529202", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/128529202", "source": "IDREF"}], "date_of_birth": "1904-11-14", "date_of_death": "1963-01-02", "preferred_name": "Powell, Dick", "country_associated": "xxu", "authorized_access_point": "Powell, Dick, 1904-1963", "biographical_information": ["Acteur, réalisateur américain"]} 1 -2023-07-08 08:20:42.344489 2023-07-08 08:20:42.344496 1e4ab9ac-ef20-4d5f-b2e1-ca83cebece30 {"md5": "912f32c9ff1c6eb4af1cfea97766df87", "pid": "128537663", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/128537663", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/128537663", "source": "IDREF"}], "date_of_birth": "1920-..-..", "date_of_death": "2015-01-17", "preferred_name": "Blackadar, Alfred K.", "country_associated": "xxu", "authorized_access_point": "Blackadar, Alfred K., 1920-2015", "biographical_information": ["The Pennsylvania State University, Department of Meteorology, University Park, PA (USA)"]} 1 -2023-07-08 08:20:43.044453 2023-07-08 08:20:43.044466 3d50ef81-73a2-480c-b6cc-b9f85c50dd8c {"md5": "ff174ee94def1fc1ae17abbf12a8073e", "pid": "129182176", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/129182176", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/129182176", "source": "IDREF"}], "variant_name": ["Platt Gregory, Daniel"], "preferred_name": "Gregory, Daniel Platt", "country_associated": "xxu", "variant_access_point": ["Platt Gregory, Daniel"], "authorized_access_point": "Gregory, Daniel Platt", "biographical_information": ["Architecte, éditeur en chef de Houseplans.com"]} 1 -2023-07-08 08:20:44.464085 2023-07-08 08:20:44.464096 65d957fd-e739-4bbd-978c-48e1a9c1c8fe {"md5": "6544238976e6957d92c996baa7cba621", "pid": "130648396", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "inspectrice départementale de l'éducation", "identifier": "http://www.idref.fr/130648396", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/130648396", "source": "IDREF"}], "date_of_birth": "19...", "preferred_name": "Terras, Denise, inspectrice départementale de l'éducation", "country_associated": "fr", "authorized_access_point": "Terras, Denise, 19...-...., inspectrice départementale de l'éducation"} 1 -2023-07-08 08:20:42.906009 2023-07-08 10:26:01.408348 084ad643-bf43-40d2-81f8-c67016e4bb2b {"md5": "cf7722b3e2648a8636c35ac4c57df3f6", "pid": "128657642", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/128657642", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/128657642", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Scheidt, Petra", "country_associated": "gw", "authorized_access_point": "Scheidt, Petra, 19..-...."} 2 -2023-07-08 08:20:42.484766 2023-07-08 10:31:05.373689 4e9b294d-a9b2-4f12-9e96-f2522023af7a {"md5": "05cbc9a381bed429911973910413dbe4", "pid": "128585544", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre", "ger"], "identifier": "http://www.idref.fr/128585544", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/128585544", "source": "IDREF"}], "variant_name": ["Vrecken, Paul Jean Mathieu van der"], "date_of_birth": "1777", "date_of_death": "1868", "preferred_name": "Van der Vrecken, Paul van der", "country_associated": "gw", "variant_access_point": ["Vrecken, Paul Jean Mathieu van der"], "authorized_access_point": "Van der Vrecken, Paul van der, 1777-1868", "biographical_information": ["Agent du Saint Siège et comte romain"]} 2 -2023-07-08 08:20:42.764021 2023-07-08 10:31:38.904642 af9b5fcc-900e-4b41-922f-c24e41772c33 {"md5": "a175da0b0eea7e01193fb8c812067db2", "pid": "128590874", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/128590874", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/128590874", "source": "IDREF"}], "date_of_birth": "1947", "preferred_name": "Dholakia, Bakul H.", "country_associated": "ii", "authorized_access_point": "Dholakia, Bakul H., 1947-...."} 2 -2023-07-08 08:20:43.164187 2023-07-08 08:20:43.164211 4ebcf3b9-b18f-43dc-9764-64cd6384f8c5 {"md5": "c881a8402764bc4d80028f222b27d995", "pid": "129211273", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["chi"], "conference": false, "identifier": "http://www.idref.fr/129211273", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/129211273", "source": "IDREF"}], "variant_name": ["國家圖書館 (Taipei, Taiwan)", "Kuo chia tʻu shu kuan (Taipei, Taiwan)", "Guojia tushuguan (Taipei, Taiwan)", "Guojia tushuguan (Chine)"], "preferred_name": "Guo jia tu shu guan (Taipei, Taiwan)", "variant_access_point": ["Kuo chia tʻu shu kuan (Taipei, Taiwan)", "Guojia tushuguan (Taipei, Taiwan)", "Guojia tushuguan (Chine)"], "authorized_access_point": "Guo jia tu shu guan (Taipei, Taiwan)", "biographical_information": ["Transcription pin yin", "Le nom Guo li zhong yang tu shu guan a été changé en Guo jiao tu shu guan le 31 janvier 1996 par ordre du Président de la république de Taiwan"]} 1 -2023-07-08 08:20:43.418039 2023-07-08 08:20:43.418049 7e8704a2-bb2b-4c76-867d-4e33d83b08a9 {"md5": "5d581430dfdb46534ee383aa55cd2747", "pid": "129558311", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/129558311", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/129558311", "source": "IDREF"}], "preferred_name": "Sperry, Stuart M.", "country_associated": "xxu", "authorized_access_point": "Sperry, Stuart M."} 1 -2023-07-08 08:20:43.660344 2023-07-08 08:20:43.66036 7ada374d-69cf-496f-bc4c-f04d7cff8cd8 {"md5": "c13a3b535f67687e921849be37dc6096", "pid": "129871303", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/129871303", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/129871303", "source": "IDREF"}], "date_of_birth": "1963", "preferred_name": "Durst, David C.", "country_associated": "xxu", "authorized_access_point": "Durst, David C., 1963-...."} 1 -2023-07-08 08:20:43.775556 2023-07-08 08:20:43.775571 80d7cc89-a241-4f05-ad00-45b6cc109610 {"md5": "8f88ab5eaf16f2851d206dd98903585e", "pid": "129966053", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/129966053", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/129966053", "source": "IDREF"}], "preferred_name": "Rickitt, Richard", "authorized_access_point": "Rickitt, Richard", "biographical_information": ["Co-founder of Clockwork Digital; Specialised on the history and technology of special effects"]} 1 -2023-07-08 08:20:43.885455 2023-07-08 08:20:43.88547 04c582f8-08f1-408a-8046-f9a4b02b2ee9 {"md5": "3a1f639e0c49862a5939c75f0ae967f2", "pid": "129988758", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "conference": false, "identifier": "http://www.idref.fr/129988758", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/129988758", "source": "IDREF"}], "variant_name": ["Universidade do Porto. Faculdade de letras, linguas e literaturas. Instituto de cultura portuguesa", "Universidade do Porto. Instituto de cultura portuguesa", "Instituto de cultura portuguesa da Universidade do Porto"], "preferred_name": "Instituto de cultura portuguesa (Porto, Portugal)", "country_associated": "po", "variant_access_point": ["Universidade do Porto. Faculdade de letras, linguas e literaturas. Instituto de cultura portuguesa", "Universidade do Porto. Instituto de cultura portuguesa", "Instituto de cultura portuguesa da Universidade do Porto"], "authorized_access_point": "Instituto de cultura portuguesa (Porto, Portugal)"} 1 -2023-07-08 08:20:43.992453 2023-07-08 08:20:43.992463 4a904418-b1d6-4b54-b4ba-152d681f05be {"md5": "afa7994f35cea07597a5d6cc7f2ce0fd", "pid": "130017256", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/130017256", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/130017256", "source": "IDREF"}], "preferred_name": "Seurre, Geneviève", "authorized_access_point": "Seurre, Geneviève", "biographical_information": ["Titulaire d'un doctorat en Biologie médicale à Paris 13 en 1983"]} 1 -2023-07-08 08:20:44.109523 2023-07-08 08:20:44.109536 83e245cc-fdf6-492a-a460-bca763aff586 {"md5": "f8402ec0e1e0a01daa36677b6b81be8e", "pid": "13037962X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": false, "identifier": "http://www.idref.fr/13037962X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/13037962X", "source": "IDREF"}], "preferred_name": "Kurt Tucholsky-Gesellschaft (Berlin)", "country_associated": "gw", "authorized_access_point": "Kurt Tucholsky-Gesellschaft (Berlin)"} 1 -2023-07-08 08:20:44.215827 2023-07-08 08:20:44.21584 235d55d2-c68f-400f-bcbe-744efbff39ea {"md5": "0f40e8f92d1831af79d97a5805af62dd", "pid": "130434795", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/130434795", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/130434795", "source": "IDREF"}], "preferred_name": "Whisnant, Rebecca", "country_associated": "xxu", "authorized_access_point": "Whisnant, Rebecca", "biographical_information": ["Professeur de philosophie"]} 1 -2023-07-08 08:20:44.342611 2023-07-08 08:20:44.342626 422f6e5d-12c0-4ece-8759-1a37b068894e {"md5": "f150bffcaf9444ba1f9a501051f19a76", "pid": "130521973", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/130521973", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/130521973", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Hogan, Maurice P.", "country_associated": "ie", "authorized_access_point": "Hogan, Maurice P., 19..-....", "biographical_information": ["Professeur au St. Patrick's College de Maynooth (Ireland), spécialisé dans les Écritures sacrées (Ancient Testament)"]} 1 -2023-07-08 08:20:43.285706 2023-07-08 10:28:14.566228 3934fbed-0765-4f2b-afeb-359ec9757cb8 {"md5": "226d9b46810aa5567321abad19acbcae", "pid": "129419915", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/129419915", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/129419915", "source": "IDREF"}], "preferred_name": "Velásquez, Rafael", "country_associated": "cu", "authorized_access_point": "Velásquez, Rafael", "biographical_information": ["Auteur cubain"]} 2 -2023-07-08 08:20:44.574756 2023-07-08 08:20:44.57477 fbae373c-54a4-4272-bfc4-42be2dd0b928 {"md5": "598e917f4a312a1923f217be01a90e0c", "pid": "130807508", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/130807508", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/130807508", "source": "IDREF"}], "preferred_name": "Laurentin, Luc", "country_associated": "fr", "authorized_access_point": "Laurentin, Luc", "biographical_information": ["Entrepreneur. Professeur à Sciences Po Paris (en 2008)"]} 1 -2023-07-08 08:20:44.713529 2023-07-08 08:20:44.713541 fe043ce4-1e85-4fca-b9d2-0db8cefb8379 {"md5": "ca6001e657dff8ae303c7e623c963afd", "pid": "130809217", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/130809217", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/130809217", "source": "IDREF"}], "date_of_birth": "1926", "preferred_name": "Kelly, Robert E.", "country_associated": "xxu", "authorized_access_point": "Kelly, Robert E., 1926-....", "biographical_information": ["Retired CPA, corporate executive and management consultant (2008)"]} 1 -2023-07-08 08:20:44.846648 2023-07-08 08:20:44.84666 cbb7ed70-212e-43d5-936f-4bccbf41d9a6 {"md5": "d606d16f6df5f78ae8665f81cb6d7c0c", "pid": "131054937", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/131054937", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/131054937", "source": "IDREF"}], "preferred_name": "Borgne, Jean-Yves", "country_associated": "fr", "authorized_access_point": "Borgne, Jean-Yves", "biographical_information": ["Médecin généraliste à Ribemont sur Ancre (80), chargé d'enseignement à la faculté de médecine d'Amiens, actif en 2008"]} 1 -2023-07-08 08:20:44.976919 2023-07-08 08:20:44.976934 9470c466-8fcd-4cfd-9231-528b8f480af7 {"md5": "bc4d756d5c9730d74f3cce459ce124c3", "pid": "131245759", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/131245759", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/131245759", "source": "IDREF"}], "date_of_birth": "1875", "date_of_death": "1973", "preferred_name": "Dubus, Hermin", "country_associated": "fr", "authorized_access_point": "Dubus, Hermin, 1875-1973", "biographical_information": ["Auteur d'un ouvrage d'éducation musicale pour enfants"]} 1 -2023-07-08 08:20:45.094874 2023-07-08 08:20:45.094884 76941095-e65c-4fe0-bfcc-698d58fb4295 {"md5": "ea49dd30937aed8ef59bdd8e8eaf8ee8", "pid": "13145269X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/13145269X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/13145269X", "source": "IDREF"}], "preferred_name": "Folie, Jacqueline", "country_associated": "be", "authorized_access_point": "Folie, Jacqueline", "biographical_information": ["Rédactrice au \\"Bulletin de l'Institut royal du patrimoine artistique\\" (en 1987)"]} 1 -2023-07-08 08:20:45.221981 2023-07-08 08:20:45.221993 c446e9f0-7dee-43a1-8f09-d8e6c2877c17 {"md5": "f84985b2d7560ee64f24a118cdd8574b", "pid": "131529595", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/131529595", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/131529595", "source": "IDREF"}], "preferred_name": "Jiménes Blanco, María Dolores", "country_associated": "sp", "authorized_access_point": "Jiménes Blanco, María Dolores"} 1 -2023-07-08 08:20:45.334372 2023-07-08 08:20:45.334384 a6dfdc06-1fe2-4f37-a07e-22d10a16a500 {"md5": "3ec3c4c7f30ba7e5098e9bfe277c98b0", "pid": "131808206", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/131808206", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/131808206", "source": "IDREF"}], "variant_name": ["HIARPT"], "preferred_name": "Highlands institute for American religious and philosophical thought", "country_associated": "xxu", "variant_access_point": ["HIARPT"], "authorized_access_point": "Highlands institute for American religious and philosophical thought", "biographical_information": ["Adresse : P. O. Box 2009, Highlands, NC 28741-2009 USA"]} 1 -2023-07-08 08:20:45.494905 2023-07-08 08:20:45.494916 c6e51a31-d111-479b-8fc3-8979c5c04f1b {"md5": "4ace3898541006da5f867b7f68b1aa84", "pid": "13185254X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "enseignant-chercheur en mathématiques", "identifier": "http://www.idref.fr/13185254X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/13185254X", "source": "IDREF"}], "date_of_birth": "1954", "preferred_name": "Jouan, Philippe, enseignant-chercheur en mathématiques", "country_associated": "fr", "authorized_access_point": "Jouan, Philippe, 1954-...., enseignant-chercheur en mathématiques", "biographical_information": ["Maître de conférences HDR en poste à l'Université de Rouen. Membre du LMRS - Laboratoire de Mathématiques Raphaël Salem (en 2019)", "Auteur d'une thèse de doctorat en mathématiques à l'Université de Rouen en 1995"]} 1 -2023-07-08 08:20:45.761152 2023-07-08 08:20:45.761161 a7bb28e1-a7b0-405b-96c9-e3c319daa01d {"md5": "ecd369a5a5feef5a5965feef38ce782d", "pid": "132337282", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/132337282", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/132337282", "source": "IDREF"}], "date_of_birth": "1981-06-25", "preferred_name": "Pons, Anne-Laure", "country_associated": "fr", "authorized_access_point": "Pons, Anne-Laure, 1981-....", "biographical_information": ["Diplômée de l'Ecole de sages-femmes de Marseille"]} 1 -2023-07-08 08:20:45.610944 2023-07-08 10:24:56.5849 6797b855-5ae8-4ee4-bc31-8cdf4aeae9e2 {"md5": "1f5e37703aa7ac111ee268a6e60357f0", "pid": "132110520", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["pol"], "identifier": "http://www.idref.fr/132110520", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/132110520", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Bielawski, Józef", "country_associated": "pl", "authorized_access_point": "Bielawski, Józef, 19..-...."} 2 -2023-07-08 08:20:46.075821 2023-07-08 08:20:46.075833 ec58179d-d528-420a-985b-27eee9ee5fec {"md5": "598122e4e543eae1eeb48cc0819ee576", "pid": "132436620", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/132436620", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/132436620", "source": "IDREF"}], "preferred_name": "Bose, Arun Chand", "country_associated": "xxu", "authorized_access_point": "Bose, Arun Chand", "biographical_information": ["En poste : U.S. Department of Energy, National Energy Technology Laboratory, Pittsburgh (Pa.) Etats-Unis (en 2009)"]} 1 -2023-07-08 08:20:46.192941 2023-07-08 08:20:46.192956 e7cdd73e-a6b6-4e66-b5d9-155683768bc0 {"md5": "d77fa8d35daf457810ca553018de78bb", "pid": "132521326", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "fre"], "conference": false, "identifier": "http://www.idref.fr/132521326", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/132521326", "source": "IDREF"}], "variant_name": ["Communautés européennes. Direction générale Emploi et affaires sociales. Service de protection de l'Environnement et du Consommateur", "Communautés européennes. Commission. Direction générale Emploi et affaires sociales. Service de protection de l'Environnement et du Consommateur", "Commission des Communautés européennes. Direction générale de l'Emploi et des affaires sociales. Service de protection de l'Environnement et du Consommateur", "Commission of the European Communities. Directorate-General Employment and Social Affairs. Environment and Consumer Protection Service", "Environment and Consumer Protection Service of the EEC"], "preferred_name": "Communautés européennes. Service de protection de l'Environnement et du Consommateur", "country_associated": "be", "variant_access_point": ["Communautés européennes. Direction générale Emploi et affaires sociales. Service de protection de l'Environnement et du Consommateur", "Communautés européennes. Commission. Direction générale Emploi et affaires sociales. Service de protection de l'Environnement et du Consommateur", "Commission des Communautés européennes. Direction générale de l'Emploi et des affaires sociales. Service de protection de l'Environnement et du Consommateur", "Commission of the European Communities. Directorate-General Employment and Social Affairs. Environment and Consumer Protection Service", "Environment and Consumer Protection Service of the EEC"], "parallel_access_point": ["Commission of the European Communities. Environment and Consumer Protection Service"], "authorized_access_point": "Communautés européennes. Service de protection de l'Environnement et du Consommateur"} 1 -2023-07-08 08:20:46.441242 2023-07-08 08:20:46.441251 c75985b6-e0cd-4415-a2db-5ccfe3dd7f80 {"md5": "dcb8279256ac39fe2a4fd39c5b7912df", "pid": "132750368", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/132750368", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/132750368", "source": "IDREF"}], "preferred_name": "Ligue des droits de l'homme", "country_associated": "be", "authorized_access_point": "Ligue des droits de l'homme"} 1 -2023-07-08 08:20:46.564885 2023-07-08 08:20:46.564892 98b04521-5de1-4436-91bc-09a8850d597f {"md5": "e85acd85367dbd231ef47744e5b8948d", "pid": "132844036", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/132844036", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/132844036", "source": "IDREF"}], "preferred_name": "Haute-Normandie. Chambre régionale des comptes", "country_associated": "fr", "authorized_access_point": "Haute-Normandie. Chambre régionale des comptes"} 1 -2023-07-08 08:20:46.812987 2023-07-08 08:20:46.812996 98a6ca96-8b5d-4ee6-a1da-6e37f64c2451 {"md5": "de13fc76021a5b187480d4e619455c1d", "pid": "13318479X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/13318479X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/13318479X", "source": "IDREF"}], "preferred_name": "Mbéri, Martin", "authorized_access_point": "Mbéri, Martin"} 1 -2023-07-08 08:20:46.934388 2023-07-08 08:20:46.934399 558c9af4-0570-4dd1-a558-a3009508d35c {"md5": "818093b8c7c57cecd405b024ac20f75c", "pid": "133250717", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/133250717", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/133250717", "source": "IDREF"}], "date_of_birth": "1981", "preferred_name": "El Hawi, Nancy", "country_associated": "le", "authorized_access_point": "El Hawi, Nancy, 1981-....", "biographical_information": ["Diplômée de l'Institut national des sciences appliquées de Toulouse en 2009"]} 1 -2023-07-08 08:20:47.046541 2023-07-08 08:20:47.046552 fd3cf1ec-6dc1-46c4-b395-5458bb83d7ab {"md5": "64a798ae49257fcc4750bbd99ca0c909", "pid": "133383369", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/133383369", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/133383369", "source": "IDREF"}], "preferred_name": "Sotto, Wiveca", "authorized_access_point": "Sotto, Wiveca"} 1 -2023-07-08 08:20:47.159649 2023-07-08 08:20:47.159659 d83ea0ea-970d-47e0-92c9-5d7c0e71939e {"md5": "df8d7d7d9c73524092fd6b851fe1e325", "pid": "133418278", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/133418278", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/133418278", "source": "IDREF"}], "variant_name": ["Darcy, Henry"], "date_of_birth": "1803", "date_of_death": "1858", "preferred_name": "Darcy, Henry, Philibert, Gaspard", "country_associated": "fr", "variant_access_point": ["Darcy, Henry"], "authorized_access_point": "Darcy, Henry, Philibert, Gaspard, 1803-1858", "biographical_information": ["Inspecteur général des ponts et chaussées. Il est à l'origine de l'adduction d'eau (dérivation et distribution de sources d'eau potable) et du passage du chemin de fer à Dijon, contribuant grandement au développement de la ville."]} 1 -2023-07-08 08:20:47.264743 2023-07-08 08:20:47.264756 12c70121-8c0b-4009-941b-b682aa2e2c66 {"md5": "9c3ddadce08082e0885e6f6b79c87b2b", "pid": "133532542", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/133532542", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/133532542", "source": "IDREF"}], "date_of_birth": "1583-12-16", "date_of_death": "1661-08-16", "preferred_name": "Fevret, Charles", "country_associated": "fr", "authorized_access_point": "Fevret, Charles, 1583-1661", "biographical_information": ["Avocat. Né en 1583 à Sémur-en-Auxois, fils de Jacques Fevret, conseiller au Parlement de Bourgogne. Secrétaire de la cour sous Louis XIII, il meurt à Dijon en 1661. A écrit en français et en latin. Connu pour son \\"Traité de l'abus\\", dont la première édition est parue en 1653 à Dijon. Seigneur de Saint-Mesmin et Godan"]} 1 -2023-07-08 08:20:46.670802 2023-07-08 10:31:25.097537 30e339c0-1a77-41fb-b9e2-8facf8e5387c {"md5": "953d84aefccbfc0f3131522cb255254b", "pid": "133004503", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/133004503", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/133004503", "source": "IDREF"}], "date_of_birth": "1941", "preferred_name": "Portenier, Claude", "country_associated": "gw", "authorized_access_point": "Portenier, Claude, 1941-....", "biographical_information": ["Fachbereich Mathematik, Université de Marburg (Allemagne)"]} 2 -2023-07-08 08:20:47.37351 2023-07-08 08:20:47.373518 026461f1-78e7-4f33-8d58-bb7c485b03a0 {"md5": "f0d68ece7689581cf5ed06d7b8be7763", "pid": "133564649", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/133564649", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/133564649", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Center, Ted", "country_associated": "xxu", "authorized_access_point": "Center, Ted, 19..-....", "biographical_information": ["Chercheur agronome"]} 1 -2023-07-08 08:20:47.494424 2023-07-08 08:20:47.494439 09793d0f-cc58-4f10-bd98-46971785385d {"md5": "a6c01b5b14bfba4c6120d6e3f88aaa7d", "pid": "13375412X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/13375412X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/13375412X", "source": "IDREF"}], "preferred_name": "Bourrelier, S.", "country_associated": "fr", "authorized_access_point": "Bourrelier, S.", "biographical_information": ["Conseiller pédagogique d'éducation physique"]} 1 -2023-07-08 08:20:47.751792 2023-07-08 08:20:47.751805 89548512-7348-4ba8-873b-e5f626a379a0 {"md5": "4bd417415c2c3238c80b8e2bc1f337af", "pid": "133823261", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifier": "http://www.idref.fr/133823261", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/133823261", "source": "IDREF"}], "variant_name": ["SNSP", "Società Storica Napoletana"], "preferred_name": "Società napoletana di storia patria", "country_associated": "it", "variant_access_point": ["SNSP", "Società Storica Napoletana"], "date_of_establishment": "1875-12", "authorized_access_point": "Società napoletana di storia patria", "biographical_information": ["Crée en 1875 par Bartolommeo Capasso, Francesco Correale, Vincenzo Cuomo, Bernardo Gaetani, Giuseppe, Giorgio, Luigi et Scipione Volpicella. Première dénomination Società Storica Napoletana crée par Carlo Troya en 1843"]} 1 -2023-07-08 08:20:48.001789 2023-07-08 08:20:48.001799 fd2cfc0f-fb95-4651-90b2-9b3a4682ee09 {"md5": "09700233381e1f155c7df53e0fa2b231", "pid": "134024672", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/134024672", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/134024672", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Durel, Bernard", "country_associated": "fr", "authorized_access_point": "Durel, Bernard, 19..-...."} 1 -2023-07-08 08:20:48.114384 2023-07-08 08:20:48.114397 8fd46d36-a892-4666-9736-462f93b081f5 {"md5": "e8e5f56a308869b8e24554f5092d3d74", "pid": "134273850", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/134273850", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/134273850", "source": "IDREF"}], "variant_name": ["D.G.L.G.", "Grande-Bretagne. Derbyshire Gypsy Liaison Group", "Angleterre. Derbyshire Gypsy Liaison Group"], "preferred_name": "Derbyshire Gypsy Liaison Group", "country_associated": "xxk", "variant_access_point": ["D.G.L.G.", "Grande-Bretagne. Derbyshire Gypsy Liaison Group", "Angleterre. Derbyshire Gypsy Liaison Group"], "authorized_access_point": "Derbyshire Gypsy Liaison Group"} 1 -2023-07-08 08:20:48.235267 2023-07-08 08:20:48.235275 4ee6e901-29b9-4893-a5a1-965115f1fcab {"md5": "d32aafc0e83198dcb0b31f9d45bc6c7d", "pid": "134382005", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/134382005", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/134382005", "source": "IDREF"}], "variant_name": ["Duparq, Marie Alexandre"], "date_of_birth": "1760", "date_of_death": "1829", "preferred_name": "Duparc, Marie Alexandre", "country_associated": "fr", "variant_access_point": ["Duparq, Marie Alexandre"], "authorized_access_point": "Duparc, Marie Alexandre, 1760?-1829?", "biographical_information": ["Oeuvre d'après Lacombe : Voyage pittoresque de la France, T.V", "Lieu d'activité : Paris. Dates d'activité : 1804?. Adresse : rue Saint-Hyacinthe-Saint-Michel, n.2", "Actif entre 1781 et 1829. Illustre de nombreux livres de voyages", "graveur. dessinateur", "estampe. dessin", "Expose au Salon de 1822"]} 1 -2023-07-08 08:20:48.346941 2023-07-08 08:20:48.346951 c62f41a7-c2e1-430e-bec8-96aef0fbb6d7 {"md5": "f174805f5f0b9c65576ebf4fd6e7064b", "pid": "134448251", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "médecin", "identifier": "http://www.idref.fr/134448251", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/134448251", "source": "IDREF"}], "date_of_birth": "1977-11-16", "preferred_name": "Ikhlef, Linda, médecin", "country_associated": "fr", "authorized_access_point": "Ikhlef, Linda, médecin", "biographical_information": ["Titulaire d'un doctorat d'exercice en médecine (Poitiers, 2009)"]} 1 -2023-07-08 08:20:48.460244 2023-07-08 08:20:48.460259 9213f779-09ca-47cd-8443-60963bbade6c {"md5": "3732f3cd8733f59020db91f0f5e5e67c", "pid": "134449568", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifier": "http://www.idref.fr/134449568", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/134449568", "source": "IDREF"}], "variant_name": ["Colloque européen Surfaces - vide - métallurgie"], "preferred_name": "Survimet 78", "country_associated": "fr", "date_of_termination": "1978-05-12", "variant_access_point": ["Colloque européen Surfaces - vide - métallurgie (1978 ; Strasbourg, France)"], "date_of_establishment": "1978-05-09", "authorized_access_point": "Survimet 78"} 1 -2023-07-08 08:20:47.625499 2023-07-08 10:26:42.980936 e8d6fe61-d8f5-4abf-83bd-c0d97e0b58fd {"md5": "9bb0a999b6c882cf3f26c84efe7aa262", "pid": "133765687", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/133765687", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/133765687", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Leron, Uri", "country_associated": "is", "authorized_access_point": "Leron, Uri, 19..-....", "biographical_information": ["En poste au Department of science education, Technion, Israel institute of technology, Haifa (Israel)"]} 2 -2023-07-08 08:20:48.707122 2023-07-08 08:20:48.707136 b829989a-4ac0-449e-ac03-18db30556718 {"md5": "b58e0a38031a0653c8c5a1b2f438727e", "pid": "135192013", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita", "fre"], "identifier": "http://www.idref.fr/135192013", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/135192013", "source": "IDREF"}], "date_of_birth": "1970", "preferred_name": "Parisi, Chiara", "country_associated": "it", "authorized_access_point": "Parisi, Chiara, 1970-....", "biographical_information": ["Commissaire d'exposition. Directrice du Centre international d'art et du paysage de l'île de Vassivière (2004-2011). Directrice des programmes culturels de la Monnaie de Paris (2011-2016)"]} 1 -2023-07-08 08:20:48.829217 2023-07-08 08:20:48.829226 c96a1e2e-606f-4173-9063-73274a079fc5 {"md5": "c894399944a4e0bb4e09c6da401c202f", "pid": "135315042", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/135315042", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/135315042", "source": "IDREF"}], "date_of_birth": "1969", "preferred_name": "Moscovici, Claudia", "country_associated": "xx", "authorized_access_point": "Moscovici, Claudia, 1969-....", "biographical_information": ["Professeure de littérature française et de philosophie, Boston University, Mass., US (en 2002)"]} 1 -2023-07-08 08:20:48.950148 2023-07-08 08:20:48.950154 dd92f8c2-912b-4917-b196-4a2b68138cc9 {"md5": "61b100327a6de37a8f2c384e537f8973", "pid": "135562120", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/135562120", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/135562120", "source": "IDREF"}], "preferred_name": "Fenton, Terry", "country_associated": "fr", "authorized_access_point": "Fenton, Terry", "biographical_information": ["Critique d'art"]} 1 -2023-07-08 08:20:49.061052 2023-07-08 08:20:49.061064 bb027df1-9c7a-440d-b90f-9cfe7e2a4af1 {"md5": "dd898e553a90ef0af3c4a5657beedb19", "pid": "135612934", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/135612934", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/135612934", "source": "IDREF"}], "date_of_birth": "1897", "preferred_name": "Collins, Joseph Burns", "country_associated": "xxu", "authorized_access_point": "Collins, Joseph Burns, 1897-...."} 1 -2023-07-08 08:20:49.445827 2023-07-08 08:20:49.445837 22cab325-08b7-4c63-bbd3-2f63c62231b9 {"md5": "8d65141409c932f31b37cc5695ee5672", "pid": "135736234", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "conference": false, "identifier": "http://www.idref.fr/135736234", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/135736234", "source": "IDREF"}], "variant_name": ["Association brésilienne de géologie de l'ingénieur"], "preferred_name": "Associação brasileira de geologia de engenharia", "country_associated": "bl", "variant_access_point": ["Association brésilienne de géologie de l'ingénieur"], "authorized_access_point": "Associação brasileira de geologia de engenharia"} 1 -2023-07-08 08:20:49.571778 2023-07-08 08:20:49.571785 ca9f669f-47d9-4a8f-8dad-a4b4802621bb {"md5": "10bf60237f2cde0007161a800eda1415", "pid": "135975484", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/135975484", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/135975484", "source": "IDREF"}], "date_of_birth": "1575", "date_of_death": "1632", "preferred_name": "Mittner, Mathias", "country_associated": "gw", "authorized_access_point": "Mittner, Mathias, 1575-1632", "biographical_information": ["Né à Eichstädt, 1575-1632, jésuite puis chartreux. Mlodzianowski| 1622-1686, jésuite, apparenté à Kostka, fut théologien de l'évêque de Cracovie"]} 1 -2023-07-08 08:20:49.688455 2023-07-08 08:20:49.688467 00e21833-2319-4450-bdd7-3873abfdd0a5 {"md5": "3ea003229b77d125f403cc65e35e11db", "pid": "136123821", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifier": "http://www.idref.fr/136123821", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/136123821", "source": "IDREF"}], "preferred_name": "International zeolite conference", "country_associated": "ja", "date_of_termination": "1986-08-22", "date_of_establishment": "1986-08-17", "authorized_access_point": "International zeolite conference (07 ; 1986 ; Tokyo)"} 1 -2023-07-08 08:20:49.809316 2023-07-08 08:20:49.809323 480f2dbd-a3a0-4819-bd5f-4fa8c1f82c17 {"md5": "9dae6201ff4f8c3c411198986d89cab0", "pid": "136235212", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/136235212", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/136235212", "source": "IDREF"}], "preferred_name": "Drouillon, F.", "country_associated": "fr", "authorized_access_point": "Drouillon, F.", "biographical_information": ["Inspecteur d'Académie"]} 1 -2023-07-08 08:20:48.584705 2023-07-08 10:27:19.437879 30d589c8-7a67-487c-8298-a5f60c3e3470 {"md5": "62a259cf8ff467ed03531c0d1b18f1c8", "pid": "134489500", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/134489500", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/134489500", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "244365091"}, "date_of_birth": "1934", "preferred_name": "Diaz, Janet Winecoff", "country_associated": "xxu", "authorized_access_point": "Diaz, Janet Winecoff, 1934-....", "biographical_information": ["Enseigne (?) à ll'University of North Carolina à Chapel Hill, Department of Romance studies"]} 2 -2023-07-08 08:20:49.17179 2023-07-08 10:28:13.505491 01bbf5df-465f-4ec2-8c79-718100bf1e1e {"md5": "7bd930e0142a7d8a977f3ef32df57355", "pid": "135683122", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/135683122", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/135683122", "source": "IDREF"}], "preferred_name": "Kölling, Mario", "authorized_access_point": "Kölling, Mario"} 2 -2023-07-08 08:20:49.92605 2023-07-08 08:20:49.926059 ee7988d5-bd12-4ec4-9d73-d6594a405be5 {"md5": "cb8bfacbda087273bd142a68c292ae2d", "pid": "13632536X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/13632536X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/13632536X", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Hogan, Nick", "country_associated": "xx", "authorized_access_point": "Hogan, Nick, 19..-....", "biographical_information": ["Département d' archéologie, Université de Cork (Irlande) en 2009"]} 1 -2023-07-08 08:20:50.181022 2023-07-08 08:20:50.181032 68b4757d-52c9-4234-8684-dfd9f4f74240 {"md5": "52b6ba4eb2cf3331eed450a9441201f1", "pid": "136556906", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifier": "http://www.idref.fr/136556906", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/136556906", "source": "IDREF"}], "preferred_name": "Conference on radiation effects in semiconductors", "country_associated": "xxu", "date_of_termination": "1967-10-05", "date_of_establishment": "1967-10-03", "authorized_access_point": "Conference on radiation effects in semiconductors (1967 ; Santa Fe)"} 1 -2023-07-08 08:20:50.295405 2023-07-08 08:20:50.295418 75dd1671-f0f5-4f57-9729-7a98ed47040f {"md5": "458fdf2954ea36c63f4fe873d1ebbd96", "pid": "136738850", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifier": "http://www.idref.fr/136738850", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/136738850", "source": "IDREF"}], "variant_name": ["Università degli studi (Bologne, Italie). Facoltà di lettere e filosofia. Istituto di filologia classica", "Università degli studi di Bologna. Facoltà di lettere e filosofia. Istituto di filologia classica", "Università degli studi (Bologne, Italie). Istituto di filologia classica", "Università degli studi di Bologna. Istituto di filologia classica"], "preferred_name": "Istituto di filologia classica (Bologne, Italie)", "country_associated": "it", "variant_access_point": ["Università degli studi (Bologne, Italie). Facoltà di lettere e filosofia. Istituto di filologia classica", "Università degli studi di Bologna. Facoltà di lettere e filosofia. Istituto di filologia classica", "Università degli studi (Bologne, Italie). Istituto di filologia classica", "Università degli studi di Bologna. Istituto di filologia classica"], "authorized_access_point": "Istituto di filologia classica (Bologne, Italie)"} 1 -2023-07-08 08:20:50.507072 2023-07-08 08:20:50.507082 0459ebd0-c77b-4cab-b2a0-61df80b1ee96 {"md5": "387ff3e39c863e605d1838597066688e", "pid": "136864279", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": true, "identifier": "http://www.idref.fr/136864279", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/136864279", "source": "IDREF"}], "preferred_name": "Giornata di studi bizantini", "country_associated": "it", "date_of_termination": "1992-05-07", "date_of_establishment": "1992-05-06", "authorized_access_point": "Giornata di studi bizantini (2 ; 1992 ; Salerno)", "biographical_information": ["Congrès organisé par l'Associazione italiana di studi bizantini"]} 1 -2023-07-08 08:20:50.876231 2023-07-08 08:20:50.876243 557b2352-50f2-43bc-94af-b0eb681a6895 {"md5": "7650940e8970f4545e03f91ff17e755b", "pid": "136893163", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/136893163", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/136893163", "source": "IDREF"}], "variant_name": ["Haro, Sandrine", "Vialars Haro, Muriel"], "date_of_birth": "19XX", "preferred_name": "Vialars, Muriel", "country_associated": "fr", "variant_access_point": ["Haro, Sandrine", "Vialars Haro, Muriel"], "authorized_access_point": "Vialars, Muriel, 19..-....", "biographical_information": ["Titulaire d'un doctorat en médecine générale (Toulouse 3, 2000)"]} 1 -2023-07-08 08:20:50.992416 2023-07-08 08:20:50.992422 a24742d9-01d0-411a-8f0f-be4fdc904ff7 {"md5": "f7559b55365b3a6c0ec2441f76f2b24e", "pid": "137193548", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/137193548", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/137193548", "source": "IDREF"}], "preferred_name": "Cooper, Thomas D.", "country_associated": "xx", "authorized_access_point": "Cooper, Thomas D.", "biographical_information": ["Air force materials laboratory, Ohio"]} 1 -2023-07-08 08:20:50.75263 2023-07-08 10:27:04.751598 ef77d495-0365-45fa-997f-752ce6955944 {"md5": "0fecb8c31a29656fc648dc6a3880e280", "pid": "136864554", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "identifier": "http://www.idref.fr/136864554", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/136864554", "source": "IDREF"}], "preferred_name": "Yampolsky, Heather", "country_associated": "xx", "authorized_access_point": "Yampolsky, Heather"} 2 -2023-07-08 08:20:50.042892 2023-07-08 10:27:18.084254 38003d21-d5d8-4bc8-90b6-7e39baf04726 {"md5": "443071a956bf62700d785b2c5698bfb3", "pid": "136495117", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/136495117", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/136495117", "source": "IDREF"}], "variant_name": ["Hjarl, Jane Petersen"], "preferred_name": "Hjarl Petersen, Jane", "country_associated": "dk", "variant_access_point": ["Hjarl, Jane Petersen"], "authorized_access_point": "Hjarl Petersen, Jane"} 2 -2023-07-08 08:20:50.393463 2023-07-08 10:27:45.769202 d72d1466-c6a7-4987-b4b2-b3546327c01d {"md5": "c660107f47d0df5c8106cbfb1c138653", "pid": "136803784", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "identifier": "http://www.idref.fr/136803784", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/136803784", "source": "IDREF"}], "date_of_birth": "1980-04-14", "preferred_name": "Ito, Ayumi", "country_associated": "ja", "authorized_access_point": "Ito, Ayumi, 1980-....", "biographical_information": ["Actrice"]} 2 -2023-07-08 08:20:51.100047 2023-07-08 08:20:51.100059 6f29f38d-2442-4c12-afe9-4b2ba2fda5bc {"md5": "a9f6b112983410715f17311e015be1b7", "pid": "137341563", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/137341563", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/137341563", "source": "IDREF"}], "date_of_birth": "1904-08-03", "date_of_death": "1941-10-02", "preferred_name": "Mog, Aribert", "country_associated": "gw", "authorized_access_point": "Mog, Aribert, 1904-1941", "biographical_information": ["Acteur"]} 1 -2023-07-08 08:20:51.364899 2023-07-08 08:20:51.364908 b96760b3-adf5-4183-8564-51bc2273166c {"md5": "3ee64318de3023c97824387ae1dfc658", "pid": "137424795", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut"], "conference": false, "identifier": "http://www.idref.fr/137424795", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/137424795", "source": "IDREF"}], "preferred_name": "Soeters Van Eldonk Architecten (Pays-Bas)", "country_associated": "ne", "date_of_establishment": "1979", "authorized_access_point": "Soeters Van Eldonk Architecten (Pays-Bas)", "biographical_information": ["Adresse : Kerkstraat 204 1017 GV AMSTERDAM"]} 1 -2023-07-08 08:20:51.498864 2023-07-08 08:20:51.498874 52c41bf6-11be-414d-90c0-0961c2cdd40f {"md5": "bcc7b6cb8886ed82126b76fea3a5b6cf", "pid": "137586248", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["chi"], "conference": false, "identifier": "http://www.idref.fr/137586248", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/137586248", "source": "IDREF"}], "variant_name": ["国家档案局 (Chine)", "Zhongyang dang'anguan (Chine)", "Chung-yang tang-an-kuan (Chine)", "Guojia dang'an ju (Chine)", "Kuo-chia tang-an-chü (Chine)", "中央档案馆 (Chine)", "Zhong yang dang an guan (Chine)", "Chine. 国家档案局", "Chine. Guo jia dang an ju", "Chine. 中央档案馆", "Chine. Zhong yang dang an guan"], "preferred_name": "Guo jia dang an ju (Chine)", "country_associated": "cc", "variant_access_point": ["Zhongyang dang'anguan (Chine)", "Chung-yang tang-an-kuan (Chine)", "Guojia dang'an ju (Chine)", "Kuo-chia tang-an-chü (Chine)", "中央档案馆 (Chine)", "Zhong yang dang an guan (Chine)", "Chine. 国家档案局", "Chine. Guo jia dang an ju", "Chine. 中央档案馆", "Chine. Zhong yang dang an guan"], "date_of_establishment": "1959", "authorized_access_point": "Guo jia dang an ju (Chine)", "biographical_information": ["Bureau des archives centrales, établi en 1959, chargé de collecter et classer les archives du gouvernement et des institutions gouvernementales"]} 1 -2023-07-08 08:20:51.646363 2023-07-08 08:20:51.646374 8f90e571-10b4-4923-8cff-66495e8b29d9 {"md5": "108ecfc7bab5a5fbbdddbea09ebd10d0", "pid": "137635400", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/137635400", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/137635400", "source": "IDREF"}], "preferred_name": "Jones, Alan M.", "country_associated": "xxk", "authorized_access_point": "Jones, Alan M.", "biographical_information": ["Architecte. Président du RIBA (2019-21)"]} 1 -2023-07-08 08:20:51.759859 2023-07-08 08:20:51.759865 569ded96-3f4f-4ae9-a187-693ea21e0361 {"md5": "58a27161af643228e9e9b31504ce6da1", "pid": "137657412", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/137657412", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/137657412", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "245241582"}, "date_of_birth": "1979", "preferred_name": "Comberiati, Daniele", "country_associated": "it", "authorized_access_point": "Comberiati, Daniele, 1979-....", "biographical_information": ["Maître de conférences en littérature italienne à l'Université Paul-Valéry Montpellier 3 (2017)"]} 1 -2023-07-08 08:20:51.880064 2023-07-08 08:20:51.880077 7531c147-e99e-434b-a0ca-d7b1470107a9 {"md5": "0a66b1d4bd5a8a26ebb2f80464a0a09a", "pid": "137724780", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/137724780", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/137724780", "source": "IDREF"}], "date_of_birth": "1950-06-18", "preferred_name": "Roche, Jean-Michel", "country_associated": "fr", "authorized_access_point": "Roche, Jean-Michel, 1950-....", "biographical_information": ["Auteur d'une thèse d'exercice de médecine en 1976"]} 1 -2023-07-08 08:20:53.336113 2023-07-08 08:20:53.336123 00840830-2959-464d-9d50-8cf46148e4e8 {"md5": "ca89560c702cac6d26ea828c42cd6af5", "pid": "139148256", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/139148256", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/139148256", "source": "IDREF"}], "date_of_birth": "1978-08-11", "preferred_name": "Blum, Laurent", "country_associated": "fr", "authorized_access_point": "Blum, Laurent, 1978-....", "biographical_information": ["Auteur d'une thèse de Médecine soutenue à l'Université Bordeaux 2 le 09 octobre 2009"]} 1 -2023-07-08 08:20:52.00556 2023-07-08 10:24:32.330422 b163305d-f369-468b-a8df-0096393103b9 {"md5": "8e0e3e1891bdb35900a54fa480c28c99", "pid": "137773927", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/137773927", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/137773927", "source": "IDREF"}], "date_of_birth": "1968", "preferred_name": "Bernheimer, Andrew", "country_associated": "xxu", "authorized_access_point": "Bernheimer, Andrew, 1968-....", "biographical_information": ["Architecte américain. - Crée, en 1996, avec Jared Della Valle, l'agence Della Valle Bernheimer Design, basée à New-York, dissoute en 2010"]} 2 -2023-07-08 08:20:52.128702 2023-07-08 10:24:41.894493 6e61ae21-84b8-40c4-a56d-b711d5a68edf {"md5": "63c369e9c0c1cc92bc5969f79e39518c", "pid": "137790872", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/137790872", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/137790872", "source": "IDREF"}], "preferred_name": "Weber, Renaud", "country_associated": "sz", "authorized_access_point": "Weber, Renaud", "biographical_information": ["Juriste", "Avocat (en 2009)", "Juge d'instruction (Neuchâtel, Suisse) (en 2009)"]} 2 -2023-07-08 08:20:52.279519 2023-07-08 08:20:52.279523 92827906-ef2e-46de-909e-5c4bb3813b6f {"md5": "d5d97a82dc6ccc0a8a0f03b5eb943a39", "pid": "138022550", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "identifier": "http://www.idref.fr/138022550", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/138022550", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "027941949"}, "variant_name": ["Dias, Saúl", "Julio", "Maria dos Reis Pereira, Júlio", "Dos Reis Pereira, Júlio"], "date_of_birth": "1902", "date_of_death": "1983", "preferred_name": "Pereira, Júlio Maria dos Reis", "country_associated": "po", "variant_access_point": ["Dias, Saúl", "Julio", "Maria dos Reis Pereira, Júlio", "Dos Reis Pereira, Júlio"], "authorized_access_point": "Pereira, Júlio Maria dos Reis, 1902-1983", "biographical_information": ["Peintre, graveur, céramiste et poète"]} 1 -2023-07-08 08:20:52.413237 2023-07-08 08:20:52.41325 0235d803-82f9-4e37-9d41-7951da7871c7 {"md5": "f3c58d0d5fd2478e5d789c36a1dd8073", "pid": "138023468", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/138023468", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/138023468", "source": "IDREF"}], "variant_name": ["Vega Zuazua, Rita Esther"], "preferred_name": "Zuazua Vega, Rita Esther", "country_associated": "mx", "variant_access_point": ["Vega Zuazua, Rita Esther"], "authorized_access_point": "Zuazua Vega, Rita Esther", "biographical_information": ["Mathématicienne. En poste à l'université nationale autonome de Mexico."]} 1 -2023-07-08 08:20:52.659779 2023-07-08 08:20:52.659795 97bd65e2-2e8d-41f4-bbb7-a1b52f921afb {"md5": "a9b00a0b09f10678fb60c0c659fff472", "pid": "138508518", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/138508518", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/138508518", "source": "IDREF"}], "variant_name": ["Chicago State college", "Chicago teachers college South", "Illinois teachers college Chicago South"], "preferred_name": "Chicago State university", "country_associated": "xxu", "variant_access_point": ["Chicago State college", "Chicago teachers college South", "Illinois teachers college Chicago South"], "authorized_access_point": "Chicago State university", "biographical_information": ["Adresse : 9501 South King Drive, Chicago, Illinois 60628-1598", "Tél. : (773) 995-2387. Télécopie : (773) 995-3994. Courriel : u-relations@csu.edu", "A successivement porté le nom de : \\"Chicago Teachers College South\\", de : \\"Illinois Teachers College Chicago South\\" et de : \\"Chicago State College\\" (nom actuel depuis l'automne 1971)"]} 1 -2023-07-08 08:20:52.780684 2023-07-08 08:20:52.78069 1518091b-81a7-49f7-a5a1-3c475a480a88 {"md5": "9d93cb476d02d64f24a592e20106909a", "pid": "138783578", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifier": "http://www.idref.fr/138783578", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/138783578", "source": "IDREF"}], "preferred_name": "Hypoxia and Consequences : from molecule to malady", "country_associated": "xxu", "date_of_termination": "2009-03-14", "date_of_establishment": "2009-03-12", "authorized_access_point": "Hypoxia and Consequences : from molecule to malady (2009 ; New York City, N.Y.)"} 1 -2023-07-08 08:20:52.886293 2023-07-08 08:20:52.886303 f5dc99f5-4d69-42bc-a76c-1c17c0c90bff {"md5": "6936f0abae6fe552ca3eb258ac869536", "pid": "138905312", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "docteur en chirurgie dentaire", "identifier": "http://www.idref.fr/138905312", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/138905312", "source": "IDREF"}], "date_of_birth": "1982-03-17", "preferred_name": "Pujol, Cécile, docteur en chirurgie dentaire", "country_associated": "fr", "authorized_access_point": "Pujol, Cécile, 1982-...., docteur en chirurgie dentaire"} 1 -2023-07-08 08:20:52.996248 2023-07-08 08:20:52.996259 9f56be92-3b0b-4140-a636-02a64dc46df2 {"md5": "0db5df0feb90b519e2b848ebfd468490", "pid": "138933871", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifier": "http://www.idref.fr/138933871", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/138933871", "source": "IDREF"}], "preferred_name": "Chiesa del Pio Suffragio (Cotignola, Italie)", "country_associated": "it", "authorized_access_point": "Chiesa del Pio Suffragio (Cotignola, Italie)", "biographical_information": ["Construite en 1720"]} 1 -2023-07-08 08:20:53.109468 2023-07-08 08:20:53.109477 a90194c0-889f-4832-b05a-ff629ced5a35 {"md5": "d4bc7c2deeea978b8bea96971387b506", "pid": "13905443X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifier": "http://www.idref.fr/13905443X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/13905443X", "source": "IDREF"}], "preferred_name": "International school of physics \\"Enrico Fermi\\"", "date_of_termination": "2007-06-29", "date_of_establishment": "2007-06-19", "parallel_access_point": ["Scuola internazionale di fisica \\"Enrico Fermi\\" (167 ; 2007 ; Varenna, Italie)"], "authorized_access_point": "International school of physics \\"Enrico Fermi\\" (167 ; 2007 ; Varenna, Italie)"} 1 -2023-07-08 08:20:53.467573 2023-07-08 08:20:53.467579 164760e9-669f-448b-81e2-426f91b9b51b {"md5": "109baa91ec709810a5311a50ad04c564", "pid": "139175520", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["hrv"], "identifier": "http://www.idref.fr/139175520", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/139175520", "source": "IDREF"}], "preferred_name": "Buljević, Zrinka", "country_associated": "ci", "authorized_access_point": "Buljević, Zrinka"} 1 -2023-07-08 08:20:53.726491 2023-07-08 08:20:53.726501 1a1f2c08-2191-4e29-9d21-cd3755b52afb {"md5": "a083998f8332a0f2d69ecfdd84d7b6cb", "pid": "139490752", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/139490752", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/139490752", "source": "IDREF"}], "preferred_name": "Lipman, Leana", "country_associated": "xx", "authorized_access_point": "Lipman, Leana", "biographical_information": ["Journaliste"]} 1 -2023-07-08 08:20:53.834576 2023-07-08 08:20:53.834593 68c50f59-65ea-44f2-ab35-527b58e0e5eb {"md5": "c787db434ffc2b690f5980fa80fcbe24", "pid": "13949992X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["arm"], "identifier": "http://www.idref.fr/13949992X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/13949992X", "source": "IDREF"}], "variant_name": ["Եզեկյան, Լևոն", "Ezekian, Lewon", "Ezegian, Levon", "Ezekean, Lewon", "Yezekian, Levon"], "date_of_birth": "1941-06-13", "preferred_name": "Ezekyan, Lewon", "country_associated": "ai", "variant_access_point": ["Ezekian, Lewon", "Ezegian, Levon", "Ezekean, Lewon", "Yezekian, Levon"], "authorized_access_point": "Ezekyan, Lewon, 1941-....", "biographical_information": ["Linguiste et philologue."]} 1 -2023-07-08 08:20:53.959231 2023-07-08 08:20:53.959243 abf86b18-e8aa-48df-af42-cbbd62381358 {"md5": "acd279093db38ace9d59d6e5ede8f2bb", "pid": "139513760", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/139513760", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/139513760", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Pérez, Silverio", "country_associated": "pr", "authorized_access_point": "Pérez, Silverio, 19..-....", "biographical_information": ["Ecrivain et compositeur portoricain"]} 1 -2023-07-08 08:20:54.067036 2023-07-08 08:20:54.067048 5fd64984-0f63-4db2-930c-8eb2efb64adc {"md5": "51b00c1c90cddbd76108fbcfebd72f4f", "pid": "139752528", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": false, "identifier": "http://www.idref.fr/139752528", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/139752528", "source": "IDREF"}], "variant_name": ["NGS"], "preferred_name": "Numismatische Gesellschaft Speyer", "country_associated": "gw", "variant_access_point": ["NGS"], "date_of_establishment": "1965", "authorized_access_point": "Numismatische Gesellschaft Speyer"} 1 -2023-07-08 08:20:54.34724 2023-07-08 08:20:54.347253 75656ab3-9d60-4eae-a4e2-a0045b401edb {"md5": "31aadba4bad016b309141d10af6ff47c", "pid": "139815201", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/139815201", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/139815201", "source": "IDREF"}], "preferred_name": "Brault, Vanessa", "country_associated": "fr", "authorized_access_point": "Brault, Vanessa"} 1 -2023-07-08 08:20:54.469364 2023-07-08 08:20:54.46937 501843f3-23ac-45a1-b688-e66b460c72b7 {"md5": "c1a556395f474f1b37323f7675efcea7", "pid": "139830383", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/139830383", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/139830383", "source": "IDREF"}], "date_of_birth": "19..", "preferred_name": "Beurdeley, Didier", "country_associated": "fr", "authorized_access_point": "Beurdeley, Didier, 19..-", "biographical_information": ["Titulaire d'une thèse de 3ème cycle en Sciences Odontologiques à l'Université de Paris 7, 1985"]} 1 -2023-07-08 08:20:54.560839 2023-07-08 08:20:54.560844 8c50eac6-c0e8-44c2-b029-ad7d1832b2a7 {"md5": "df6e4829054463488629e3c15443bc99", "pid": "139890629", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifier": "http://www.idref.fr/139890629", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/139890629", "source": "IDREF"}], "variant_name": ["DD6 symposium"], "preferred_name": "Symposium on differential geometry and differential equations", "country_associated": "cc", "date_of_termination": "1985-07-06", "variant_access_point": ["DD6 symposium"], "date_of_establishment": "1985-06-21", "authorized_access_point": "Symposium on differential geometry and differential equations (06 ; 1985 ; Shanghai, Chine)"} 1 -2023-07-08 08:20:54.635561 2023-07-08 08:20:54.635564 62e0b7de-8f29-4e49-bf5b-e55c8d5495e7 {"md5": "29c095e4e903b37f8d67a0c223662051", "pid": "139975055", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "qualifier": "réalisateur", "identifier": "http://www.idref.fr/139975055", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/139975055", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Prouff, Philippe, réalisateur", "country_associated": "fr", "authorized_access_point": "Prouff, Philippe, 19..-...., réalisateur", "biographical_information": ["Réalisateur"]} 1 -2023-07-08 08:20:54.707194 2023-07-08 08:20:54.7072 26e1856d-12f4-4e9c-a522-073359e780f8 {"md5": "7ffcac4d300c91dbef07de3ec178181d", "pid": "140038493", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/140038493", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/140038493", "source": "IDREF"}], "date_of_death": "18", "preferred_name": "Herrmann, Immanuel", "country_associated": "gw", "authorized_access_point": "Herrmann, Immanuel"} 1 -2023-07-08 08:20:54.206481 2023-07-08 10:30:20.312219 9b080e3f-0aeb-4327-ae82-62fdfe37d366 {"md5": "0e6b093546b2ab243c874e9dac6a17d2", "pid": "139755969", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/139755969", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/139755969", "source": "IDREF"}], "date_of_birth": "1929", "preferred_name": "Lagowski, Jeanne Mund", "country_associated": "xx", "authorized_access_point": "Lagowski, Jeanne Mund, 1929-...."} 2 -2023-07-08 08:20:54.780484 2023-07-08 08:20:54.78049 f5f0a836-787b-4ee5-9190-4a812d9e30c6 {"md5": "d07fa05f1461673caf313fa2fc577f75", "pid": "140057196", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/140057196", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/140057196", "source": "IDREF"}], "preferred_name": "Fernandes, Aureliano", "country_associated": "ii", "authorized_access_point": "Fernandes, Aureliano", "biographical_information": ["Enseigne au département sciences politiques de l'université de Goa"]} 1 -2023-07-08 08:20:54.854831 2023-07-08 08:20:54.854833 28be32da-9126-4675-bac8-664e84fd8df0 {"md5": "2a9a1619d828ee2b8ad47fc73b89cccb", "pid": "140162070", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["hin"], "identifier": "http://www.idref.fr/140162070", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/140162070", "source": "IDREF"}], "variant_name": ["रामकुमार", "Kumāra, Rāma", "Rāmakumāra", "Kumār, Rām", "Rām Kumār"], "date_of_birth": "1924", "preferred_name": "Rāmkumār", "country_associated": "ii", "variant_access_point": ["Kumāra, Rāma", "Rāmakumāra", "Kumār, Rām", "Rām Kumār"], "authorized_access_point": "Rāmkumār, 1924-....", "biographical_information": ["Ecrivain de langue hindi, né à Shimla."]} 1 -2023-07-08 08:20:55.036854 2023-07-08 08:20:55.03686 93e0c1a8-a058-43cd-bdfd-a18bc0c02d6c {"md5": "e393dd5afc591beb763f721552355dcc", "pid": "140354336", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/140354336", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/140354336", "source": "IDREF"}], "preferred_name": "Klepeczko, Jamiscz", "authorized_access_point": "Klepeczko, Jamiscz", "biographical_information": ["Professeur à l'Université Paul Verlaine-Metz en 1992. Directeur de recherche au CNRS"]} 1 -2023-07-08 08:20:55.135936 2023-07-08 08:20:55.135942 9ee3daca-fa0e-40bb-8177-b60107bcfa5d {"md5": "b578fadb1fdb16269722049100b80150", "pid": "140407235", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "conference": false, "identifier": "http://www.idref.fr/140407235", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/140407235", "source": "IDREF"}], "variant_name": ["Casa Pia (Lisbonne). Centro Cultural Casapiano"], "preferred_name": "Centro Cultural Casapiano (Lisbonne)", "country_associated": "po", "variant_access_point": ["Casa Pia (Lisbonne). Centro Cultural Casapiano"], "date_of_establishment": "2000-07-03", "authorized_access_point": "Centro Cultural Casapiano (Lisbonne)"} 1 -2023-07-08 08:20:55.325322 2023-07-08 08:20:55.325334 9d48f376-a9d9-4c46-a731-976b6a263a1c {"md5": "4db0d1e7d65281c1791f9effaeea1ed1", "pid": "140494383", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/140494383", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/140494383", "source": "IDREF"}], "date_of_birth": "1980-12-03", "preferred_name": "Lesuffleur, Stéphanie", "country_associated": "fr", "authorized_access_point": "Lesuffleur, Stéphanie, 1980-....", "biographical_information": ["Titulaire d'un doctorat en droit privé à Paris 1 en 2009, spécialiste du droit des assurances"]} 1 -2023-07-08 08:20:55.434963 2023-07-08 08:20:55.43497 237112c4-ee33-402c-a271-0175fb3e61b7 {"md5": "385d3e9cf2e6b2f3bfea3a10e4e66e3f", "pid": "140558756", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/140558756", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/140558756", "source": "IDREF"}], "variant_name": ["Lesotho. Dept. of Water Affairs. Lowlands Water Supply Unit", "LWSU", "Lesotho. Lowlands Water Supply Scheme Unit"], "preferred_name": "Lesotho. Lowlands Water Supply Unit", "country_associated": "lo", "variant_access_point": ["Lesotho. Dept. of Water Affairs. Lowlands Water Supply Unit", "LWSU", "Lesotho. Lowlands Water Supply Scheme Unit"], "authorized_access_point": "Lesotho. Lowlands Water Supply Unit"} 1 -2023-07-08 08:20:55.621687 2023-07-08 08:20:55.621695 43f44d06-cb25-4572-b5ef-c4767c61518e {"md5": "6649c12d7bee7756ab59bd34745eb18f", "pid": "140773118", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/140773118", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/140773118", "source": "IDREF"}], "variant_name": ["Beynon, C. E."], "preferred_name": "Beynon, Cyril Ernest", "country_associated": "xxk", "variant_access_point": ["Beynon, C. E."], "authorized_access_point": "Beynon, Cyril Ernest", "biographical_information": ["Directeur de la section chimique et métallurgique du Collège technique de Wolverhampton-Stafforshire"]} 1 -2023-07-08 08:21:03.267014 2023-07-08 08:21:03.267021 e1643d98-7af4-4b96-baa2-e09af95abab4 {"md5": "bbb46e0d7b1dd0b2eb589233bcadc77e", "pid": "148766587", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "identifier": "http://www.idref.fr/148766587", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148766587", "source": "IDREF"}], "preferred_name": "Malkin, Borys", "country_associated": "xx", "authorized_access_point": "Malkin, Borys"} 1 -2023-07-08 08:20:55.225556 2023-07-08 10:25:13.53855 69f1ac4a-4e87-4152-b837-83c01cf68ece {"md5": "6491617b8a65a29e6831f263cb4ae874", "pid": "140489436", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/140489436", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/140489436", "source": "IDREF"}], "date_of_birth": "1936-10-13", "preferred_name": "Hancock, David", "country_associated": "xxk", "authorized_access_point": "Hancock, David, 1936-...."} 2 -2023-07-08 08:20:55.714815 2023-07-08 08:20:55.714823 ea7f36cd-882a-4710-8ae0-30d72df5b373 {"md5": "5fd84202a8d1225c1a074274cdec5f9b", "pid": "140821325", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": true, "identifier": "http://www.idref.fr/140821325", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/140821325", "source": "IDREF"}], "preferred_name": "Colloque international d'histoire", "date_of_termination": "1983-09-25", "date_of_establishment": "1983-09-18", "authorized_access_point": "Colloque international d'histoire (2 ; 1983 ; Athènes)", "biographical_information": ["Colloque organisé par le Centre de recherches néohelléniques de la Fondation nationale de la recherche scientifique de Grèce"]} 1 -2023-07-08 08:20:55.814811 2023-07-08 08:20:55.814819 2b9079e7-e11f-4a0b-aca0-8578cf3caee6 {"md5": "efc9805821a54dd1cd4f520695a97b67", "pid": "142598542", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/142598542", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/142598542", "source": "IDREF"}], "preferred_name": "Bréan, Aurore", "country_associated": "fr", "authorized_access_point": "Bréan, Aurore", "biographical_information": ["Titulaire du diplôme d'agronomie approfondie, spécialisation Génie de l'Environnement, option Préservation et Aménagement des Milieux - Ecologie Quantitative, Agrocampus-Ouest, 2009"]} 1 -2023-07-08 08:20:55.914712 2023-07-08 08:20:55.914724 6f7bae37-ec66-43e7-8ed0-1b9e27b07c31 {"md5": "719f34bc196479ed195c7fe9301a0602", "pid": "142611379", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "identifier": "http://www.idref.fr/142611379", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/142611379", "source": "IDREF"}], "variant_name": ["Salomão, Waly Dias", "Dias Salomão, Waly"], "date_of_birth": "1943", "date_of_death": "2003", "preferred_name": "Salomão, Waly", "country_associated": "bl", "variant_access_point": ["Salomão, Waly Dias", "Dias Salomão, Waly"], "authorized_access_point": "Salomão, Waly, 1943-2003", "biographical_information": ["Poète et essayiste"]} 1 -2023-07-08 08:20:56.087022 2023-07-08 08:20:56.087025 4bf275c9-cea6-4468-b6c2-0f82c766ce8c {"md5": "d841d4bca1aa39476ba870793dc3a87a", "pid": "142668745", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": false, "identifier": "http://www.idref.fr/142668745", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/142668745", "source": "IDREF"}], "variant_name": ["INC", "Instituto nacional de colonización (Espagne)", "Instituto nacional de colonización y desarrollo rural", "Espagne. Ministerio de agricultura. Instituto nacional de colonización y desarrollo rural"], "preferred_name": "Instituto nacional de colonizaciones (Espagne)", "country_associated": "sp", "variant_access_point": ["INC", "Instituto nacional de colonización (Espagne)", "Instituto nacional de colonización y desarrollo rural", "Espagne. Ministerio de agricultura. Instituto nacional de colonización y desarrollo rural"], "authorized_access_point": "Instituto nacional de colonizaciones (Espagne)", "biographical_information": ["Crée en octobre 1939 par le gouvernement franquiste pour la reconstruction du pays après la Guerre Civil et pour le développement économique et sociale des zones rurales"]} 1 -2023-07-08 08:20:56.160812 2023-07-08 08:20:56.160818 8f8c1443-5b93-40c3-a601-756f96300622 {"md5": "94afd3b2b26a8e575bc9b92930cc4b34", "pid": "142741299", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "cze"], "identifier": "http://www.idref.fr/142741299", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/142741299", "source": "IDREF"}], "preferred_name": "Petricek, Tomas", "authorized_access_point": "Petricek, Tomas", "biographical_information": ["Spécialiste du langage F#"]} 1 -2023-07-08 08:20:56.253012 2023-07-08 08:20:56.253017 d754bd66-19f7-440f-bfc5-778b3834eb07 {"md5": "88cdd900a20de4e93f514b2dea0fdf4a", "pid": "142838411", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["tha", "chi"], "conference": false, "identifier": "http://www.idref.fr/142838411", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/142838411", "source": "IDREF"}], "variant_name": ["มูลนิธิป่อเต็กตึ้ง (ประเทศไทย)", "華 僑 報 德 善 堂", "Fondation Pohtecktung", "Fondation Poh Teck Tung", "Pohtecktung Foundation", "Poh Teck Tung Foundation", "ป่อเต็กตึ้ง (ประเทศไทย)", "Pǭtektưng (Thaïlande)", "ป่อเต็กตึ้งประเทศไทย (มูลนิธิ)", "Pǭ Tek Tưng Prathēt Thai (Mūnlanithi)", "มูลนิธิฮั่วเคี้ยวป่อเต็กเซี่ยงตึ๊ง", "Mūnnithi Hūa Khīeo Pǭ Tek Sīang Tưng", "ฮั่วเคี้ยวป่อเต็กเซี่ยงตึ๊ง (มูลนิธิ)", "Hūa Khīeo Pǭ Tek Sīang Tưng (Mūnnithi)", "คณะเก็บศพไต้ฮงกง", "Khana Kep Sop Tai Hong Kong"], "preferred_name": "Mūnnithi Pǭ Tek Tưng (Thaïlande)", "country_associated": "th", "variant_access_point": ["華 僑 報 德 善 堂", "Fondation Pohtecktung", "Fondation Poh Teck Tung", "Pohtecktung Foundation", "Poh Teck Tung Foundation", "ป่อเต็กตึ้ง (ประเทศไทย)", "Pǭtektưng (Thaïlande)", "ป่อเต็กตึ้งประเทศไทย (มูลนิธิ)", "Pǭ Tek Tưng Prathēt Thai (Mūnlanithi)", "มูลนิธิฮั่วเคี้ยวป่อเต็กเซี่ยงตึ๊ง", "Mūnnithi Hūa Khīeo Pǭ Tek Sīang Tưng", "ฮั่วเคี้ยวป่อเต็กเซี่ยงตึ๊ง (มูลนิธิ)", "Hūa Khīeo Pǭ Tek Sīang Tưng (Mūnnithi)", "คณะเก็บศพไต้ฮงกง", "Khana Kep Sop Tai Hong Kong"], "date_of_establishment": "1937", "authorized_access_point": "Mūnnithi Pǭ Tek Tưng (Thaïlande)", "biographical_information": ["Translittération ALA-LOC", "Fondation bénévole d'origine chinoise créée officiellement à Bangkok en 1937 par un groupe de Thaïlandais d'origine chinoise, même si leur travail bénévole avait débuté dès 1910 sous le nom de คณะเก็บศพไต้ฮงกง [Khana Kep Sop Tai Hong Kong], pour but d'aider les pauvres, les sinistrés, les blessés d'accidents et de collecter les corps accidentés en lieu public, a reçu en 1992 un prix national pour son service social remarquable"]} 1 -2023-07-08 08:20:56.36253 2023-07-08 08:20:56.362539 ee4d1023-0ef2-49d4-9a78-cf297425d057 {"md5": "b84618c39e66caa94122eed4373d03fa", "pid": "142843229", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/142843229", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/142843229", "source": "IDREF"}], "preferred_name": "Renard, Éliane", "country_associated": "fr", "authorized_access_point": "Renard, Éliane"} 1 -2023-07-08 08:20:56.450988 2023-07-08 10:27:23.070657 775352ce-caf5-4a7e-8d4e-b36d7c3870af {"md5": "6ac1cc67c76a1df78025edd6ba51825a", "pid": "142877832", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/142877832", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/142877832", "source": "IDREF"}], "preferred_name": "McDonnell, Thomas Michael", "country_associated": "xxu", "authorized_access_point": "McDonnell, Thomas Michael", "biographical_information": ["Professeur de droit, Pace University School of Law (2010)"]} 2 -2023-07-08 08:20:56.552504 2023-07-08 08:20:56.552508 337f4310-c56c-4b6a-ba78-57c3bbed1246 {"md5": "64b9b9b04d27bb1abdb2ee891ab7dac3", "pid": "142918342", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/142918342", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/142918342", "source": "IDREF"}], "variant_name": ["Wolter, Rafael"], "date_of_birth": "1981-24-10", "preferred_name": "Pecly Wolter, Rafael", "country_associated": "fr", "variant_access_point": ["Wolter, Rafael"], "authorized_access_point": "Pecly Wolter, Rafael, 1981-....", "biographical_information": ["A soutenu une thèse de doctorat en psychologie sociale à l'Université René Descartes, le 28 novembre 2008."]} 1 -2023-07-08 08:20:56.618375 2023-07-08 08:20:56.618381 8f58d065-e2b1-4445-b8b3-8a9ab87385d7 {"md5": "ee355d51c5bff72d8de9e455901ab71b", "pid": "14299443X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/14299443X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/14299443X", "source": "IDREF"}], "date_of_birth": "1980-07-27", "preferred_name": "Barou, Fabrice", "country_associated": "fr", "authorized_access_point": "Barou, Fabrice, 1980-....", "biographical_information": ["Titulaire d'un doctorat de l'Ecole nationale supérieure des mines de Saint-Etienne, 2009"]} 1 -2023-07-08 08:20:56.757353 2023-07-08 08:20:56.757357 8daef28b-55e8-410b-ac97-27cf677f9c68 {"md5": "5225409a50cfd8d27bbf69384f7eb2e2", "pid": "143028537", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/143028537", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/143028537", "source": "IDREF"}], "date_of_birth": "1962", "preferred_name": "Encarnación, Omar Guillermo", "country_associated": "xx", "authorized_access_point": "Encarnación, Omar Guillermo, 1962-", "biographical_information": ["Enseigne la science politique à Bard College, N.Y. (en 2008)"]} 1 -2023-07-08 08:20:56.82591 2023-07-08 08:20:56.825916 d6fcf2df-2935-4c1b-89fc-5fbf22be8dff {"md5": "eccd3e3f6a3baabc6832210773bfc623", "pid": "143076310", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": false, "identifier": "http://www.idref.fr/143076310", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/143076310", "source": "IDREF"}], "variant_name": ["ALHSUD"], "preferred_name": "Asociación Latinoamericana de Hidrología Subterránea para el Desarrollo", "country_associated": "ag", "variant_access_point": ["ALHSUD"], "authorized_access_point": "Asociación Latinoamericana de Hidrología Subterránea para el Desarrollo"} 1 -2023-07-08 08:20:56.894679 2023-07-08 08:20:56.894682 00f07369-6dd5-47d9-8861-7e3423a6c487 {"md5": "aeb002669110449db574adef1a73a01f", "pid": "143098713", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/143098713", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/143098713", "source": "IDREF"}], "variant_name": ["Randriarison, Anjanirina"], "date_of_birth": "1980-01-08", "preferred_name": "Rahantamalala, Anjanirina", "country_associated": "mg", "variant_access_point": ["Randriarison, Anjanirina"], "authorized_access_point": "Rahantamalala, Anjanirina, 1980-....", "biographical_information": ["Titulaire d'une thèse de doctorat en biosciences végétales, biotechnologies végétales, Université Paul Sabatier, Toulouse 3 (en 2009)"]} 1 -2023-07-08 08:20:57.027895 2023-07-08 08:20:57.027899 70b05313-7193-4d15-a4a5-1f230a0ab677 {"md5": "f8e449c0cc8a4d211d4f2d27bd577c96", "pid": "143151851", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/143151851", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/143151851", "source": "IDREF"}], "preferred_name": "Wanderley, Germano", "country_associated": "gw", "authorized_access_point": "Wanderley, Germano"} 1 -2023-07-08 08:20:57.226812 2023-07-08 08:20:57.226817 95a6a673-a937-46b9-9c60-812ebbb23455 {"md5": "59296771a35d485f344a9742578ad4cd", "pid": "143330772", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["egy"], "identifier": "http://www.idref.fr/143330772", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/143330772", "source": "IDREF"}], "variant_name": ["Wanly, Ibrahim Adham"], "date_of_birth": "1908", "date_of_death": "1959", "preferred_name": "Wanly, Adham", "country_associated": "ua", "variant_access_point": ["Wanly, Ibrahim Adham"], "authorized_access_point": "Wanly, Adham, 1908-1959", "biographical_information": ["Peintre"]} 1 -2023-07-08 08:20:57.315583 2023-07-08 08:20:57.31559 8c73b25a-3293-4aac-882b-e79e01d504d6 {"md5": "f3b456eeb6fab00fc815a3f6a18df915", "pid": "143403826", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/143403826", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/143403826", "source": "IDREF"}], "date_of_birth": "1960-07-10", "preferred_name": "Martin, Gregory M.", "country_associated": "xxu", "authorized_access_point": "Martin, Gregory M., 1960-...."} 1 -2023-07-08 08:20:56.688258 2023-07-08 10:25:58.253069 45b721dd-20cd-4246-9667-ea420389679f {"md5": "2068664736f419b2ee69928a2b717e48", "pid": "142996734", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/142996734", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/142996734", "source": "IDREF"}], "preferred_name": "Koulouris, George", "country_associated": "at", "authorized_access_point": "Koulouris, George", "biographical_information": ["Directeur, Melbourne radiology clinic, East Melbourne, Australia"]} 2 -2023-07-08 08:20:57.488794 2023-07-08 08:20:57.488802 28a6e199-b374-4c39-8ebe-43de67397c64 {"md5": "0cf7fe90af88a4aede4ad282d4318e23", "pid": "143860747", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/143860747", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/143860747", "source": "IDREF"}], "date_of_birth": "1980-09-30", "preferred_name": "Scotet, Julie", "country_associated": "fr", "authorized_access_point": "Scotet, Julie, 1980-....", "biographical_information": ["Titulaire d'une thèse d'exercice en Pharmacie (Lyon 1, 2009)"]} 1 -2023-07-08 08:20:57.571907 2023-07-08 08:20:57.57191 da7281ea-8ffe-4729-8906-ee0b6a740e54 {"md5": "5ef3157c8aa8a6de60b30817dd2a059c", "pid": "144467909", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/144467909", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/144467909", "source": "IDREF"}], "preferred_name": "Institution interdépartementale du Bassin de la Sèvre nantaise", "country_associated": "fr", "authorized_access_point": "Institution interdépartementale du Bassin de la Sèvre nantaise"} 1 -2023-07-08 08:20:57.653541 2023-07-08 08:20:57.653547 7385bdd8-3d8c-4804-b13a-d6a970c528a7 {"md5": "ef4b6941a28bb39fdfb2dd12b78c761b", "pid": "144487179", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre", "dut"], "identifier": "http://www.idref.fr/144487179", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/144487179", "source": "IDREF"}], "preferred_name": "Van der Plancke, Véronique", "country_associated": "be", "authorized_access_point": "Van der Plancke, Véronique"} 1 -2023-07-08 08:20:57.742719 2023-07-08 08:20:57.742727 3f9969b7-ac00-4a82-be9a-ee3462c33baf {"md5": "4c48c325f3b0d1c34eaaa07a9217a9e1", "pid": "144499401", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/144499401", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/144499401", "source": "IDREF"}], "date_of_birth": "1972-08-07", "preferred_name": "Chevaillier, Béatrice", "country_associated": "fr", "authorized_access_point": "Chevaillier, Béatrice, 1972-....", "biographical_information": ["Titulaire d'un doctorat en Mathématiques soutenu à l'Université Paul Verlaine-Metz en 2010"]} 1 -2023-07-08 08:20:57.832605 2023-07-08 08:20:57.832609 eed4d1b2-867f-4fbc-9b8a-32b6c59aaeba {"md5": "7007b7d9d9c5a339eac2ade5e3073184", "pid": "144580403", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": false, "identifier": "http://www.idref.fr/144580403", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/144580403", "source": "IDREF"}], "variant_name": ["Israel medical association. Israel psychiatric association"], "preferred_name": "Israel psychiatric association", "country_associated": "is", "variant_access_point": ["Israel medical association. Israel psychiatric association"], "date_of_establishment": "1972", "authorized_access_point": "Israel psychiatric association"} 1 -2023-07-08 08:20:57.920559 2023-07-08 08:20:57.920565 2be966e0-a957-44ce-a58d-88998a9ac0f1 {"md5": "214d377c75384cecd5895d27b3521a25", "pid": "144614421", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/144614421", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/144614421", "source": "IDREF"}], "variant_name": ["Kibwanga, Joseph Senga"], "date_of_birth": "1956-01-17", "preferred_name": "Senga Kibwanga, Joseph", "country_associated": "cg", "variant_access_point": ["Kibwanga, Joseph Senga"], "authorized_access_point": "Senga Kibwanga, Joseph", "biographical_information": ["Auteur de bandes dessinées"]} 1 -2023-07-08 08:20:58.013262 2023-07-08 08:20:58.01327 e9abbc9c-003c-4d90-a929-0ec4dfb90bfb {"md5": "ea0923c13b98b94bc1d39536747c2115", "pid": "144636077", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/144636077", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/144636077", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Letelier, Mario", "country_associated": "xx", "authorized_access_point": "Letelier, Mario, 19..-...."} 1 -2023-07-08 08:20:58.091705 2023-07-08 08:20:58.091714 068e2501-444d-449c-acd2-f7ff0bbd163f {"md5": "b3296dc06d1fe12643d9f9b8c34e6430", "pid": "145090515", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/145090515", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/145090515", "source": "IDREF"}], "preferred_name": "Sedley, Liz", "authorized_access_point": "Sedley, Liz"} 1 -2023-07-08 08:20:58.370528 2023-07-08 08:20:58.370533 6c248ee3-a2c7-40a1-8cae-f35bc1254825 {"md5": "37224324eef48157c1c4889a81e86344", "pid": "145296741", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/145296741", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/145296741", "source": "IDREF"}], "date_of_birth": "1979", "preferred_name": "Bentancor, Martín", "country_associated": "uy", "authorized_access_point": "Bentancor, Martín, 1979-...."} 1 -2023-07-08 08:20:57.397678 2023-07-08 10:25:55.956651 b457251c-337a-4cb2-8778-b76df701d976 {"md5": "4578d6704c89b754350ea47251917cf2", "pid": "143470280", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/143470280", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/143470280", "source": "IDREF"}], "variant_name": ["Rodríguez, Rakel", "Rodríguez López, Raquel"], "preferred_name": "Rodríguez, Raquel", "country_associated": "sp", "variant_access_point": ["Rodríguez, Rakel", "Rodríguez López, Raquel"], "authorized_access_point": "Rodríguez, Raquel"} 2 -2023-07-08 08:20:58.26765 2023-07-08 10:27:03.806708 1feb8878-873c-4404-8e02-38837fee39bb {"md5": "2c1e24929f92379f2b24e5eb7ac70501", "pid": "145286444", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/145286444", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/145286444", "source": "IDREF"}], "preferred_name": "Erman, Elise", "country_associated": "gw", "authorized_access_point": "Erman, Elise"} 2 -2023-07-08 08:20:58.466485 2023-07-08 08:20:58.46649 fcbf229f-1f72-4c17-95f2-d364ae70eb1a {"md5": "9860fddd837a8ce1dc87203361635efd", "pid": "145350177", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifier": "http://www.idref.fr/145350177", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/145350177", "source": "IDREF"}], "variant_name": ["Нестерова, Наталья Игоревна", "Nesterova, Natalya"], "date_of_birth": "1944-04-23", "preferred_name": "Nesterova, Natalia Igorevna", "country_associated": "ru", "variant_access_point": ["Nesterova, Natalya"], "parallel_access_point": ["Nesterova, Natal'â, 1944-..."], "authorized_access_point": "Nesterova, Natalia Igorevna, 1944-...", "biographical_information": ["Peintre russe, vit à Moscou et aux Etats-Unis"]} 1 -2023-07-08 08:20:58.539336 2023-07-08 08:20:58.539345 51a2111d-9536-4044-9ac1-9dd15cdf344c {"md5": "12b14ecb7d23d4a7bfb97663822a6270", "pid": "145351297", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und", "kor"], "identifier": "http://www.idref.fr/145351297", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/145351297", "source": "IDREF"}], "preferred_name": "Westphal, Manfred", "country_associated": "gw", "authorized_access_point": "Westphal, Manfred", "biographical_information": ["Universitätsklinikum Hamburg, Klinik und Poliklinik für Neurochirurgie, Hamburg, Germany"]} 1 -2023-07-08 08:20:58.625862 2023-07-08 08:20:58.625865 151bec79-cb46-4823-b589-b77f3f802baf {"md5": "7762b2479859ed19ed77e4c748ed3452", "pid": "145373487", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/145373487", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/145373487", "source": "IDREF"}], "preferred_name": "Dumand, Dominique", "country_associated": "fr", "authorized_access_point": "Dumand, Dominique", "biographical_information": ["Est membre d'Aden-Arabie Atelier (2010)"]} 1 -2023-07-08 08:20:58.707687 2023-07-08 08:20:58.707695 aaa4ff1e-dc63-47c6-90a3-01f21a8bd2b1 {"md5": "91fd4700f648df8f9193411bcb5dd6b6", "pid": "145630218", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": false, "identifier": "http://www.idref.fr/145630218", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/145630218", "source": "IDREF"}], "preferred_name": "Fundación Española de Historia Moderna", "country_associated": "sp", "authorized_access_point": "Fundación Española de Historia Moderna"} 1 -2023-07-08 08:20:58.792874 2023-07-08 08:20:58.792888 d10a305a-a268-4b1b-906f-5a7ee2675168 {"md5": "02485f780b0218fdb65a08076eef9368", "pid": "145636496", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/145636496", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/145636496", "source": "IDREF"}], "preferred_name": "Dengler, Paul", "country_associated": "fr", "authorized_access_point": "Dengler, Paul", "biographical_information": ["Médecin"]} 1 -2023-07-08 08:20:58.984905 2023-07-08 08:20:58.984911 00797522-5f29-4544-9f05-772bd7063a7b {"md5": "83b7202b39da03a65c27cb94240f4e78", "pid": "14566841X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/14566841X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/14566841X", "source": "IDREF"}], "variant_name": ["Aliani, Sophie Verdier"], "date_of_birth": "1969-02-09", "preferred_name": "Verdier-Aliani, Sophie", "country_associated": "fr", "variant_access_point": ["Aliani, Sophie Verdier"], "authorized_access_point": "Verdier-Aliani, Sophie, 1969-....", "biographical_information": ["Titulaire du diplôme d'ingénieur du CNAM, 1997"]} 1 -2023-07-08 08:20:59.280727 2023-07-08 08:20:59.280732 6f4fdde2-9cfe-4374-a216-7b1a686c4159 {"md5": "d6a69aa77e3735c4f1c3170cc1b8434c", "pid": "145888185", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifier": "http://www.idref.fr/145888185", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/145888185", "source": "IDREF"}], "variant_name": ["Славянов, Николай Николаевич"], "preferred_name": "Slavjanov, Nikolaj Nikolaevich", "country_associated": "ru", "variant_access_point": ["Славянов, Николай Николаевич"], "parallel_access_point": ["Slavânov, Nikolaj Nikolaevič"], "authorized_access_point": "Slavjanov, Nikolaj Nikolaevich"} 1 -2023-07-08 08:20:59.371302 2023-07-08 08:20:59.371308 c79a27db-5139-4255-9078-12205f0aadbf {"md5": "1fe958823ac26917c571e036ffc548ec", "pid": "145959783", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/145959783", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/145959783", "source": "IDREF"}], "preferred_name": "Pellissier, Simone", "authorized_access_point": "Pellissier, Simone"} 1 -2023-07-08 08:21:17.608794 2023-07-08 08:21:17.608802 6f91bd4d-7e05-487a-aca7-5be3db39ca9b {"md5": "42bfde6bc85a640975b98eb6eb082c0f", "pid": "162138997", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/162138997", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/162138997", "source": "IDREF"}], "preferred_name": "Frey, Markus", "country_associated": "xxu", "authorized_access_point": "Frey, Markus"} 1 -2023-07-08 08:20:59.183651 2023-07-08 10:28:11.051936 966057df-7cdb-4a9c-945e-4ec66ceedd03 {"md5": "f2a703ce8811782fbf51804727f30d23", "pid": "14577838X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["gre"], "identifier": "http://www.idref.fr/14577838X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/14577838X", "source": "IDREF"}], "variant_name": ["Priftis, Kostas N."], "preferred_name": "Priftis, Kostas N.", "country_associated": "gr", "variant_access_point": ["Priftis, Kostas N."], "authorized_access_point": "Priftis, Kostas N.", "biographical_information": ["Pneumologue-allergologue"]} 2 -2023-07-08 08:20:59.465326 2023-07-08 08:20:59.465331 730890fe-8106-48e1-be0b-e5591935e980 {"md5": "3ada5cc0bdf4d71a3c0e7f84cc1a442f", "pid": "146054210", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifier": "http://www.idref.fr/146054210", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/146054210", "source": "IDREF"}], "preferred_name": "Lausanne jardins", "country_associated": "sz", "authorized_access_point": "Lausanne jardins (04 ; Lausanne ; 2009)", "biographical_information": ["Manifestation temporaire"]} 1 -2023-07-08 08:20:59.553188 2023-07-08 08:20:59.553194 9e24bd19-d968-40ae-80d7-e07033deddd1 {"md5": "424e1123febc55fc503c0e7f460e0b78", "pid": "146086457", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut"], "identifier": "http://www.idref.fr/146086457", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/146086457", "source": "IDREF"}], "preferred_name": "Petten-van Charante, Hanna van", "country_associated": "ne", "authorized_access_point": "Petten-van Charante, Hanna van"} 1 -2023-07-08 08:20:59.649583 2023-07-08 08:20:59.649592 7b64833b-446b-4552-8bcf-de13cd382703 {"md5": "ebef8fe55a3ea41c7069ba38da6d40f0", "pid": "146148754", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifier": "http://www.idref.fr/146148754", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/146148754", "source": "IDREF"}], "variant_name": ["Pinacoteca della Fondazione Cassa di risparmio di Tortona (Italie)"], "preferred_name": "Fondazione Cassa di risparmio di Tortona. Pinacoteca (Tortone, Italie)", "country_associated": "it", "variant_access_point": ["Pinacoteca della Fondazione Cassa di risparmio di Tortona (Italie)"], "authorized_access_point": "Fondazione Cassa di risparmio di Tortona. Pinacoteca (Tortone, Italie)"} 1 -2023-07-08 08:20:59.8728 2023-07-08 08:20:59.872808 ca52836e-2d9c-4157-a97d-fadfc15879a9 {"md5": "d43d167b66b26e44ef8c3698e9b959f6", "pid": "146872584", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/146872584", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/146872584", "source": "IDREF"}], "date_of_birth": "1952-06-22", "preferred_name": "Wempe, Johan Ferdinand Dietrich Bernardus", "country_associated": "ne", "authorized_access_point": "Wempe, Johan Ferdinand Dietrich Bernardus", "biographical_information": ["Spécialiste de morale des affaires"]} 1 -2023-07-08 08:21:00.066577 2023-07-08 08:21:00.066582 a2c9f2c5-ad49-40e4-a05a-be184650471c {"md5": "58f187de54ef3d9459fd2c1dd1991020", "pid": "146985109", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "moniale rasophore", "identifier": "http://www.idref.fr/146985109", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/146985109", "source": "IDREF"}], "variant_name": ["Élisabeth, Soeur"], "date_of_birth": "1940-02-29", "preferred_name": "Élisabeth, moniale rasophore", "country_associated": "be", "variant_access_point": ["Élisabeth, Soeur"], "authorized_access_point": "Élisabeth, 1940-...., moniale rasophore", "biographical_information": ["Moniale rasophore. - Collaboratrice de la revue \\"Diakonia\\", secrétaire de la Fraternité orthodoxe-Tous les saints de Belgique (en 2010)"]} 1 -2023-07-08 08:21:00.158386 2023-07-08 08:21:00.158395 7830c858-c36e-4602-9785-cf25ef806b99 {"md5": "08c006cb5e0c4ee2062dcd09e692fcd4", "pid": "147004268", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/147004268", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/147004268", "source": "IDREF"}], "preferred_name": "Mayle, B.A.", "country_associated": "xxk", "authorized_access_point": "Mayle, B.A.", "biographical_information": ["Wildlife & Conservation Research Branch, Forestry Authority"]} 1 -2023-07-08 08:21:00.243332 2023-07-08 08:21:00.243341 e90d2232-cb12-4a6c-a6bf-eebacdf8c636 {"md5": "6acbcdc76537433971336913a32badf0", "pid": "147054672", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/147054672", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/147054672", "source": "IDREF"}], "preferred_name": "Dreyer, P.", "country_associated": "fr", "authorized_access_point": "Dreyer, P."} 1 -2023-07-08 08:21:00.330442 2023-07-08 08:21:00.330453 180fa5c1-07d6-421d-aae2-8f2e64d229d2 {"md5": "18f852b9f95a9a5458d26f16817cd79d", "pid": "147179955", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/147179955", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/147179955", "source": "IDREF"}], "variant_name": ["Smith, Wendy Sutherland-"], "date_of_birth": "19XX", "preferred_name": "Sutherland-Smith, Wendy", "country_associated": "at", "variant_access_point": ["Smith, Wendy Sutherland-"], "authorized_access_point": "Sutherland-Smith, Wendy, 19..-....", "biographical_information": ["Senior lecturer à la Faculty of education at Monas, Australia"]} 1 -2023-07-08 08:20:59.967353 2023-07-08 10:25:38.71203 8a1513a7-7a5a-4955-8ad0-e90ad682ad60 {"md5": "a4542e2f39192e3a707656e2b454140b", "pid": "146874595", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["chi", "eng"], "identifier": "http://www.idref.fr/146874595", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/146874595", "source": "IDREF"}], "preferred_name": "Kee, Ming-Yuet", "country_associated": "xxu", "authorized_access_point": "Kee, Ming-Yuet", "biographical_information": ["Éducatrice ; collectionneuse de porcelaine chinoise peranakan"]} 2 -2023-07-08 08:20:59.754138 2023-07-08 10:26:06.749787 f32b0d2f-7a83-47e8-9919-41651a16a693 {"md5": "811bed6b53dd0765c6fd49d25d5f00d7", "pid": "146270401", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/146270401", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/146270401", "source": "IDREF"}], "date_of_birth": "1977", "preferred_name": "Mayer-Rossignol, Nicolas", "country_associated": "fr", "authorized_access_point": "Mayer-Rossignol, Nicolas, 1977-....", "biographical_information": ["Ingénieur du corps des Mines. Fonctionnaire européen. Maire de Rouen, président de la métropole Rouen-Normandie (élections en 2020)"]} 2 -2023-07-08 08:21:00.515649 2023-07-08 08:21:00.515653 26abf5dd-4dde-47b8-8503-6f37854fbb20 {"md5": "f12250633072522b9038b2308e030f3c", "pid": "147297192", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/147297192", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/147297192", "source": "IDREF"}], "preferred_name": "Broudic, Patrick", "country_associated": "xx", "authorized_access_point": "Broudic, Patrick", "biographical_information": ["Membre de l'inspection générale des affaires sociales (en 2010)"]} 1 -2023-07-08 08:21:00.602823 2023-07-08 08:21:00.602829 f3bc1524-d387-40b8-b994-251047031919 {"md5": "e0c2e4adef8d7e01da06df9393011e66", "pid": "147331781", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/147331781", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/147331781", "source": "IDREF"}], "variant_name": ["Spray, S. Lee"], "date_of_birth": "1935", "preferred_name": "Spray, Sherrad Lee", "country_associated": "xxu", "variant_access_point": ["Spray, S. Lee"], "authorized_access_point": "Spray, Sherrad Lee, 1935-...."} 1 -2023-07-08 08:21:00.698725 2023-07-08 08:21:00.698732 2e98f951-b3c3-498e-8365-093e15478cc6 {"md5": "45617d56b0902443364d16ad39b0b536", "pid": "147383579", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "identifier": "http://www.idref.fr/147383579", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/147383579", "source": "IDREF"}], "preferred_name": "Theimer, Uwe", "country_associated": "xx", "authorized_access_point": "Theimer, Uwe", "biographical_information": ["Chef de choeur. Dirige le Wiener Sängerknaben (en 1974)"]} 1 -2023-07-08 08:21:00.796171 2023-07-08 08:21:00.796177 e71c3d6f-d219-4fd4-9c0f-8671287e8e91 {"md5": "b5a734bf0fe78875e31f7c61025d44d1", "pid": "147406889", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": false, "identifier": "http://www.idref.fr/147406889", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/147406889", "source": "IDREF"}], "variant_name": ["Allemagne (1871-1945). Heer. Reserve-Infanterie-Regiment (16)", "RIR 16", "List Regiment"], "preferred_name": "Allemagne (1871-1945). Heer. Bayerisches Reserve-Infanterie-Regiment (16)", "country_associated": "gw", "date_of_termination": "1945", "variant_access_point": ["Allemagne (1871-1945). Heer. Reserve-Infanterie-Regiment (16)", "RIR 16", "List Regiment"], "date_of_establishment": "1871", "authorized_access_point": "Allemagne (1871-1945). Heer. Bayerisches Reserve-Infanterie-Regiment (16)"} 1 -2023-07-08 08:21:00.913203 2023-07-08 08:21:00.913209 1011c16c-1f46-4a9a-92db-7c77bc042c0d {"md5": "44c26b2375d0bcecf573712371375238", "pid": "147465885", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/147465885", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/147465885", "source": "IDREF"}], "variant_name": ["France. Ministère de l'agriculture (1881-1916). Service du crédit mutuel et de la coopération agricole"], "preferred_name": "France. Service du crédit mutuel et de la coopération agricole", "country_associated": "fr", "variant_access_point": ["France. Ministère de l'agriculture (1881-1916). Service du crédit mutuel et de la coopération agricole"], "authorized_access_point": "France. Service du crédit mutuel et de la coopération agricole"} 1 -2023-07-08 08:21:01.010838 2023-07-08 08:21:01.010843 427f1395-e1d7-4798-8aed-7adcd167c475 {"md5": "63d358d3b352c398b5c048df7c8ca42d", "pid": "147528712", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/147528712", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/147528712", "source": "IDREF"}], "variant_name": ["Osagie, Iyunolu"], "date_of_birth": "1960", "preferred_name": "Osagie, Iyunolu Folayan", "country_associated": "xxu", "variant_access_point": ["Osagie, Iyunolu"], "authorized_access_point": "Osagie, Iyunolu Folayan, 1960-....", "biographical_information": ["Professeur associé d'anglais at the Pennsylvania State University, recherche sur la littérature africaine et afro-américaine"]} 1 -2023-07-08 08:21:01.215262 2023-07-08 08:21:01.215267 fb753bdb-fee0-4eae-8b3e-e976f41a5ff7 {"md5": "415607e8898e26e0fdef20e498f0b196", "pid": "147700094", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/147700094", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/147700094", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Deschizeaux, Pierre", "country_associated": "fr", "authorized_access_point": "Deschizeaux, Pierre, 19..-....", "biographical_information": ["Auteur d'une thèse en sciences physiques (Grenoble, 1971). Directeur de thèse à l'Université de Haute-Alsace en 1995"]} 1 -2023-07-08 08:21:01.313304 2023-07-08 10:27:41.184451 cbf5e9aa-3adb-4450-9338-4d6074179a0c {"md5": "e287c590bea0829cd7dea40bd1bd3b78", "pid": "147759420", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/147759420", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/147759420", "source": "IDREF"}], "date_of_birth": "1590", "date_of_death": "1655", "preferred_name": "Vernazza, Livia", "country_associated": "it", "authorized_access_point": "Vernazza, Livia, 1590-1655", "biographical_information": ["Epouse de Jean de Medicis 1563-1621"]} 2 -2023-07-08 08:21:01.412725 2023-07-08 10:28:03.903024 d348beec-1298-48a7-8249-0fcd8d9a4596 {"md5": "ba465db3e2bcb350d625a68ae4376691", "pid": "147906423", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/147906423", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/147906423", "source": "IDREF"}], "preferred_name": "Figarova, Sophia R.", "country_associated": "aj", "authorized_access_point": "Figarova, Sophia R.", "biographical_information": ["En poste : Baku state university, Azerbaïdjan (en 2010)"]} 2 -2023-07-08 08:21:01.515453 2023-07-08 08:21:01.515461 ed8f27db-8754-4f5e-9bfc-210440fff7cd {"md5": "b4ea40426c5546e1e0e3dbc1bfac650f", "pid": "147934540", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/147934540", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/147934540", "source": "IDREF"}], "date_of_birth": "1975-07-04", "preferred_name": "Vernet, Marie-Christine", "country_associated": "fr", "authorized_access_point": "Vernet, Marie-Christine, 1975....", "biographical_information": ["Titulaire d'une thèse d'exercice en Pharmacie (Lyon 1, 2001)"]} 1 -2023-07-08 08:21:01.610503 2023-07-08 08:21:01.610511 12088399-fbdd-44ae-83a5-431e64d1388a {"md5": "08e57be5b584079629edaa602ac2e63a", "pid": "148064884", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/148064884", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148064884", "source": "IDREF"}], "variant_name": ["Revelo, Baudilio Hurtado"], "date_of_birth": "19XX", "preferred_name": "Revelo Hurtado, Baudilio", "country_associated": "ck", "variant_access_point": ["Revelo, Baudilio Hurtado"], "authorized_access_point": "Revelo Hurtado, Baudilio, 19..-...."} 1 -2023-07-08 08:21:01.704236 2023-07-08 08:21:01.704242 f91823a3-59a5-412f-aa59-e92dc10eeb8e {"md5": "11676c3085b4f27a6f9ed3be450e7205", "pid": "148113761", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "qualifier": "pasteur", "identifier": "http://www.idref.fr/148113761", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148113761", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Harper, Steve, pasteur", "country_associated": "xxu", "authorized_access_point": "Harper, Steve, 19..-...., pasteur"} 1 -2023-07-08 08:21:01.782601 2023-07-08 08:21:01.782606 35957f19-c32b-4671-b55f-b15c8ee57dae {"md5": "c4d1ac5ff2f668c0ada0bf3837be6081", "pid": "148169643", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/148169643", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148169643", "source": "IDREF"}], "date_of_birth": "1983-07-31", "preferred_name": "Manenc, Lauren", "country_associated": "fr", "authorized_access_point": "Manenc, Lauren, 1983-....", "biographical_information": ["Docteur en pharmacie (thèse d'exercice, Paris Descartes, 2010)"]} 1 -2023-07-08 08:21:01.866325 2023-07-08 08:21:01.86633 66342170-2cdc-4c64-8dd8-aa58a5a066f1 {"md5": "ff717d45dfac3291569f3cc583b5ca45", "pid": "148202330", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/148202330", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148202330", "source": "IDREF"}], "date_of_birth": "1982-09-06", "preferred_name": "Vanderkam, Lucie", "country_associated": "fr", "authorized_access_point": "Vanderkam, Lucie, 1982-....", "biographical_information": ["Titulaire d'une thèse d'exercice en Médecine (Lyon 1, 2010)"]} 1 -2023-07-08 08:21:01.949103 2023-07-08 08:21:01.949109 b534898b-5a6e-4737-a7ca-3a099b84502e {"md5": "a7209789df758b4c4448492171557f15", "pid": "148265286", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/148265286", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148265286", "source": "IDREF"}], "variant_name": ["Mel'vil', IU. K."], "preferred_name": "Melvil, IUrij Konstantinovič", "variant_access_point": ["Mel'vil', IU. K."], "authorized_access_point": "Melvil, IUrij Konstantinovič"} 1 -2023-07-08 08:21:02.022555 2023-07-08 08:21:02.022558 e7c77070-b4d4-49ea-9639-dc6aa0d51084 {"md5": "b4bc3ea63c814910516c9a74c60052ae", "pid": "148350887", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ind"], "identifier": "http://www.idref.fr/148350887", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148350887", "source": "IDREF"}], "variant_name": ["Sulistiawan, Iwan, \\"BK\\"", "Sulistiawan, Iwan, \\"Bung Kelinci\\""], "preferred_name": "Sulistiawan, Iwan", "country_associated": "io", "variant_access_point": ["Sulistiawan, Iwan, \\"BK\\"", "Sulistiawan, Iwan, \\"Bung Kelinci\\""], "authorized_access_point": "Sulistiawan, Iwan", "biographical_information": ["Enseignant à l'Ecole Supérieure des Langues Etrangères et artiste (metteur en scène de théâtre, journaliste, écrivain ...)"]} 1 -2023-07-08 08:21:02.096024 2023-07-08 08:21:02.096028 d824c375-8e38-4647-a07d-7a963458a281 {"md5": "8aafe6659e45c8c5480a571bd6ac2caf", "pid": "148352006", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/148352006", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148352006", "source": "IDREF"}], "variant_name": ["Hernández Aguilar, Mariana", "Aguilar, Mariana Hernández"], "date_of_birth": "1915", "date_of_death": "1992", "preferred_name": "Dorta, Mariana", "country_associated": "sp", "variant_access_point": ["Hernández Aguilar, Mariana", "Aguilar, Mariana Hernández"], "authorized_access_point": "Dorta, Mariana, 1915-1992"} 1 -2023-07-08 08:21:02.191989 2023-07-08 08:21:02.192002 6d5f71cd-6eb1-4001-8039-0513f04fb826 {"md5": "ab223cb6135c963c5e32c5d7681c1d73", "pid": "148411754", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/148411754", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148411754", "source": "IDREF"}], "preferred_name": "Wright, Sarah L.", "country_associated": "nz", "authorized_access_point": "Wright, Sarah L.", "biographical_information": ["Lecturer en comportement organisationel à l'Université de Canterbury, Nouvelle Zélande (2009)"]} 1 -2023-07-08 08:21:02.260388 2023-07-08 08:21:02.260391 69c1b537-9c9b-4c01-a678-1b877ced3930 {"md5": "e7d72c354adaa91722350d3b6330c7ec", "pid": "148443230", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/148443230", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148443230", "source": "IDREF"}], "preferred_name": "Dahl, Gina", "authorized_access_point": "Dahl, Gina", "biographical_information": ["Docteur en Histoire des religions. Post-doctorante à l'université de Bergen"]} 1 -2023-07-08 08:21:02.330938 2023-07-08 08:21:02.330943 900cc6cf-cafc-42a0-92fa-0a7fc4cf87e7 {"md5": "fe132a4714bf6768e54821e8a9c356e8", "pid": "148457568", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/148457568", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148457568", "source": "IDREF"}], "date_of_birth": "1985-11-06", "preferred_name": "Leguin, Kathleen", "country_associated": "fr", "authorized_access_point": "Leguin, Kathleen, 1985-....", "biographical_information": ["Docteur en médecine vétérinaire (en 2010)"]} 1 -2023-07-08 08:21:02.401755 2023-07-08 08:21:02.40176 179e0e95-cd30-46c2-b3ed-36a7a07dc73e {"md5": "6cf683a8acde56bd930dff4bddab2a58", "pid": "148462081", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/148462081", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148462081", "source": "IDREF"}], "preferred_name": "Sandtner, Markus", "country_associated": "au", "authorized_access_point": "Sandtner, Markus", "biographical_information": ["Historien de l'art"]} 1 -2023-07-08 08:21:02.48489 2023-07-08 08:21:02.484894 c60425e9-ef6e-43ec-8e53-783250c2a5ce {"md5": "7780164dd2c791f354380977f78bc4ef", "pid": "148468020", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": true, "identifier": "http://www.idref.fr/148468020", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148468020", "source": "IDREF"}], "preferred_name": "Convegno internazionale di studi georgiani", "country_associated": "it", "date_of_establishment": "1999", "authorized_access_point": "Convegno internazionale di studi georgiani"} 1 -2023-07-08 08:21:02.551794 2023-07-08 08:21:02.551797 bb826a18-bb2d-4bca-b759-2ba7312fbe04 {"md5": "7bd6ff16432c6a2c52a0be17dc237cea", "pid": "148481418", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifier": "http://www.idref.fr/148481418", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148481418", "source": "IDREF"}], "preferred_name": "American Society for Testing Materials. Pacific Area National Meeting", "country_associated": "xxu", "date_of_termination": "1956-09-18", "date_of_establishment": "1956-09-17", "authorized_access_point": "American Society for Testing Materials. Pacific Area National Meeting (2 ; 1956 ; Los Angeles, Calif.)"} 1 -2023-07-08 08:21:02.617215 2023-07-08 08:21:02.617219 0676f49a-ea8a-40f4-8808-79f9be629d60 {"md5": "a0fdf657dcac0456babd17d99ede3389", "pid": "14849952X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/14849952X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/14849952X", "source": "IDREF"}], "date_of_birth": "1976-12-06", "preferred_name": "Faurot, Eric", "country_associated": "fr", "authorized_access_point": "Faurot, Eric, 1976-...", "biographical_information": ["Titulaire d'une thèse de doctorat en Informatique et applications, soutenue à l'Université de Caen Basse-Normandie (en 2010)"]} 1 -2023-07-08 08:21:02.69219 2023-07-08 08:21:02.692194 e7020725-c031-4d84-9b3f-7e84aad7b9f8 {"md5": "e74b4d9815a17e9ec98155c634bbb5ee", "pid": "148509088", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/148509088", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148509088", "source": "IDREF"}], "date_of_birth": "1977-04-11", "preferred_name": "Magd, Siegfried", "country_associated": "mc", "authorized_access_point": "Magd, Siegfried, 1975-....", "biographical_information": ["Interne des Hôpitaux (2010)"]} 1 -2023-07-08 08:21:02.848046 2023-07-08 08:21:02.848051 345a742f-31a2-42e0-a784-b4d2f42c3080 {"md5": "9b39960104936d839da727447a8fe158", "pid": "14869506X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/14869506X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/14869506X", "source": "IDREF"}], "date_of_birth": "1980-08-13", "preferred_name": "Labadens, Isabelle", "country_associated": "fr", "authorized_access_point": "Labadens, Isabelle, 1980-....", "biographical_information": ["Titulaire d'un doctorat en pharmacie, (Toulouse 3, 2010)"]} 1 -2023-07-08 08:21:02.919254 2023-07-08 08:21:02.91926 25c4a2bf-bd8f-47ad-a6b8-2302dcc63f4b {"md5": "84c6b72023a81f7db5eeb0b868a8a8c1", "pid": "148702090", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/148702090", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148702090", "source": "IDREF"}], "date_of_birth": "1983-01-08", "preferred_name": "Chambon, Fabienne", "country_associated": "fr", "authorized_access_point": "Chambon, Fabienne, 1983-....", "biographical_information": ["Médecin. Née le 8 janvier 1983 à Aubenas (07). Thèse d'exercice soutenue à Aix-Marseille 2 le 6 décembre 2010"]} 1 -2023-07-08 08:21:02.988231 2023-07-08 08:21:02.988234 f4e2820d-11ce-44af-ad8a-1f50238dc6ac {"md5": "f9096a772675dcc66d9a469aa2804631", "pid": "148746349", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/148746349", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148746349", "source": "IDREF"}], "preferred_name": "Eychard, François", "country_associated": "fr", "authorized_access_point": "Eychard, François", "biographical_information": ["Enseignant"]} 1 -2023-07-08 08:21:03.081751 2023-07-08 08:21:03.081756 9b19b282-64b9-4469-a34a-d486906609b0 {"md5": "5c294581d4c0c05f0ecfdc1e5de6b178", "pid": "148754899", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/148754899", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148754899", "source": "IDREF"}], "date_of_birth": "1983-04-23", "preferred_name": "Nicolae, Bogdan", "country_associated": "xx", "authorized_access_point": "Nicolae, Bogdan, 1983-....", "biographical_information": ["Titulaire d'un doctorat en informatique à Rennes 1 en 2010"]} 1 -2023-07-08 08:21:03.177664 2023-07-08 08:21:03.177673 d40dc809-dccf-4f49-9467-35f1a3c4f7d4 {"md5": "05569a07d2db8d7e0b248f50327ca4e2", "pid": "148755097", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifier": "http://www.idref.fr/148755097", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148755097", "source": "IDREF"}], "variant_name": ["Oederan (Allemagne ; Saxe ; camp de concentration)"], "preferred_name": "Oederan (Allemagne ; camp de concentration)", "country_associated": "gw", "variant_access_point": ["Oederan (Allemagne ; Saxe ; camp de concentration)"], "authorized_access_point": "Oederan (Allemagne ; camp de concentration)", "biographical_information": ["Camp satellite du camp Flossenbürg, créé le 12 septembre 1944, évacué le 14 avril 1945, libéré le 8 mai 1945. Camp destiné aux femmes."]} 1 -2023-07-08 08:21:03.494818 2023-07-08 08:21:03.494822 8458ee8a-adda-48f3-82b2-8eb4653cd3fa {"md5": "89e79a57a3363138bb21a8041c2b311d", "pid": "148913679", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/148913679", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148913679", "source": "IDREF"}], "date_of_birth": "1978-04-10", "preferred_name": "Alarashi, Hala", "authorized_access_point": "Alarashi, Hala"} 1 -2023-07-08 08:21:03.660931 2023-07-08 08:21:03.660934 13b2f277-5197-4edf-9bc5-b4a5144341ad {"md5": "01da3fa65570bfc8e162a7b58a9eb117", "pid": "14894227X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/14894227X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/14894227X", "source": "IDREF"}], "preferred_name": "Pôle de ressources départemental Ville et développement social (Val-d'Oise)", "country_associated": "fr", "authorized_access_point": "Pôle de ressources départemental Ville et développement social (Val-d'Oise)", "biographical_information": ["Assoc. Loi de 1901. - Centre de ressources destiné aux acteurs de la ville et de l'intervention sociale du Val-d'Oise", "8 Pl. de France, 95200 Sarcelles. Contact : 01.34.04.12.12"]} 1 -2023-07-08 08:21:03.73918 2023-07-08 08:21:03.739184 1dc6dea3-bbb5-4d4f-aac8-d8578e0aa2c0 {"md5": "7c989c7205cf99218c03e7dda4bb15bf", "pid": "148944000", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/148944000", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148944000", "source": "IDREF"}], "date_of_birth": "1867", "preferred_name": "Cormier, Charles Louis Maurice", "country_associated": "fr", "authorized_access_point": "Cormier, Charles Louis Maurice, 1867-19..", "biographical_information": ["Vétérinaire militaire. Directeur de l'annexe de remonte du Busson, Indre (vers 1900)"]} 1 -2023-07-08 08:21:03.807065 2023-07-08 08:21:03.807073 82133181-6218-4aff-8027-2569df6da383 {"md5": "f45563df7c780c5458fe6958909e597b", "pid": "149110804", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["tam"], "identifier": "http://www.idref.fr/149110804", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/149110804", "source": "IDREF"}], "variant_name": ["நவீனன், 192.-....", "Naveen"], "date_of_birth": "192X", "preferred_name": "Navīṉaṉ", "country_associated": "ii", "variant_access_point": ["Naveen"], "authorized_access_point": "Navīṉaṉ, 192.-....", "biographical_information": ["Journaliste et écrivain tamoul du 20e siècle, Tamil Nadu, Inde"]} 1 -2023-07-08 08:21:03.886359 2023-07-08 08:21:03.886368 00874040-8e90-4ff3-9242-bc669d605abd {"md5": "eab654b411c831a46f86445cff3b9b63", "pid": "149112866", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifier": "http://www.idref.fr/149112866", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/149112866", "source": "IDREF"}], "variant_name": ["Ивановский, Николай Иванович"], "date_of_birth": "1840", "date_of_death": "1913", "preferred_name": "Ivanovskij, Nikolaj Ivanovič", "country_associated": "ru", "variant_access_point": ["Ивановский, Николай Иванович, 1840-1913"], "authorized_access_point": "Ivanovskij, Nikolaj Ivanovič, 1840-1913", "biographical_information": ["Historien du raskol"]} 1 -2023-07-08 08:21:03.981348 2023-07-08 08:21:03.981354 525f725a-d78f-446f-a6c7-bee27486c8e5 {"md5": "cee2df10ef78ec75fdf2f0c22edab602", "pid": "149224516", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "identifier": "http://www.idref.fr/149224516", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/149224516", "source": "IDREF"}], "preferred_name": "Fiori, Julio Cesar", "country_associated": "bl", "authorized_access_point": "Fiori, Julio Cesar"} 1 -2023-07-08 08:21:04.067702 2023-07-08 08:21:04.067708 bbff4a40-f807-4c2d-927b-aff375c058fa {"md5": "191849ff6efcbd2e07ddade04683febd", "pid": "149233949", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/149233949", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/149233949", "source": "IDREF"}], "preferred_name": "Rudiger, Anja", "authorized_access_point": "Rudiger, Anja"} 1 -2023-07-08 08:21:04.150778 2023-07-08 08:21:04.150784 1451ce3f-3487-477d-81bc-7d664c500b11 {"md5": "96a102b1ed0cc0470039ee18bd016402", "pid": "149252161", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/149252161", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/149252161", "source": "IDREF"}], "preferred_name": "Rollston, Christopher A.", "country_associated": "xxu", "authorized_access_point": "Rollston, Christopher A.", "biographical_information": ["Ph. D : Ancient Near Eastern Studies, Johns Hopkins University. Editeur de Maarav"]} 1 -2023-07-08 08:21:04.217891 2023-07-08 08:21:04.217898 de03c441-05ac-40ca-95c5-c2477d9d8d42 {"md5": "74efb757915936057e92612a18c5fd15", "pid": "149264380", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/149264380", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/149264380", "source": "IDREF"}], "preferred_name": "Saba, C.", "country_associated": "xx", "authorized_access_point": "Saba, C."} 1 -2023-07-08 08:21:03.570064 2023-07-08 10:25:59.157326 25e8b038-6eab-478c-a668-5edb850bdd19 {"md5": "6aec83727b6de4b4b42f3593e105bdbc", "pid": "148935710", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/148935710", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148935710", "source": "IDREF"}], "preferred_name": "Auger, Jean-François", "authorized_access_point": "Auger, Jean-François"} 2 -2023-07-08 08:21:03.341681 2023-07-08 10:27:06.408717 d7908778-950d-4016-b97a-7578f0371fa3 {"md5": "eae5d2a7a246556f8b5b152c13e96af9", "pid": "148833101", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/148833101", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148833101", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Parker, Ian C.", "country_associated": "xxc", "authorized_access_point": "Parker, Ian C., 19..-....", "biographical_information": ["Economiste. Professeur à l'Université de Toronto (en 2010)"]} 2 -2023-07-08 08:21:04.298156 2023-07-08 08:21:04.298161 e514eb1d-d025-45d4-bae7-be0454354d8c {"md5": "4aa5cb56ea37a41179a270030431c514", "pid": "14928053X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/14928053X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/14928053X", "source": "IDREF"}], "date_of_birth": "1843", "date_of_death": "1915", "preferred_name": "Agache, Alfred", "country_associated": "fr", "authorized_access_point": "Agache, Alfred, 1843-1915", "biographical_information": ["Peintre, né à Lille"]} 1 -2023-07-08 08:21:04.3861 2023-07-08 08:21:04.386105 79c35d48-324c-4cb8-9259-95ccf44ec024 {"md5": "03f41a90dda2c30fe0b16e2e1f737e2e", "pid": "149301065", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/149301065", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/149301065", "source": "IDREF"}], "preferred_name": "Saint-Pierre - Le Nezet, Anne", "country_associated": "fr", "authorized_access_point": "Saint-Pierre - Le Nezet, Anne", "biographical_information": ["Titulaire du Certificat de capacité en orthophonie"]} 1 -2023-07-08 08:21:04.469524 2023-07-08 08:21:04.469528 77083496-23df-46c5-99df-306188bee105 {"md5": "bb9cd7d45e6f52ed998c20c5694f12ef", "pid": "149357826", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/149357826", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/149357826", "source": "IDREF"}], "date_of_birth": "1980-09-10", "preferred_name": "Sitruk, David", "country_associated": "fr", "authorized_access_point": "Sitruk, David, 1980-....", "biographical_information": ["Titulaire d'un mémoire d'ingénieur en Informatique soutenu au CNAM en 2010"]} 1 -2023-07-08 08:21:04.535344 2023-07-08 08:21:04.535347 4e29e0d6-34a6-4612-bb97-e4c2cd36d0bc {"md5": "45ecb5fef59c3e0b7c6c76916c1c40b4", "pid": "149375565", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/149375565", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/149375565", "source": "IDREF"}], "date_of_birth": "1965-04-18", "preferred_name": "Le Febure du Bus, Alban", "country_associated": "fr", "authorized_access_point": "Le Febure du Bus, Alban, 1965-....", "biographical_information": ["Auteur d'une thèse en Histoire de la philosophie à Paris 4 en 2009"]} 1 -2023-07-08 08:21:04.603438 2023-07-08 08:21:04.603441 aea925a8-f7a2-452f-b20e-3a18e4e39d34 {"md5": "575b277920020075e8b7d347b235dc93", "pid": "149501706", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/149501706", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/149501706", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Moizard, Marie-Pierre", "country_associated": "fr", "authorized_access_point": "Moizard, Marie-Pierre, 19..-....", "biographical_information": ["Auteur d'une thèse de doctorat en sciences de la vie et de la santé (Tours, 1995)"]} 1 -2023-07-08 08:21:04.684367 2023-07-08 08:21:04.684373 cd285f63-8fd6-4c8d-8f94-14fc7cf00cf3 {"md5": "164346613e063c3f629b8cfb64145631", "pid": "149728182", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/149728182", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/149728182", "source": "IDREF"}], "date_of_birth": "18..--", "preferred_name": "Lambert", "country_associated": "fr", "authorized_access_point": "Lambert, 18..", "biographical_information": ["Contrôleur à Orléans"]} 1 -2023-07-08 08:21:04.782605 2023-07-08 08:21:04.782611 9d8f065d-b9b5-4188-8b36-331e29520c3e {"md5": "e779ebe783875f6d21639c3fdac73847", "pid": "149733100", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/149733100", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/149733100", "source": "IDREF"}], "preferred_name": "Koussoulou, Georghia", "authorized_access_point": "Koussoulou, Georghia", "biographical_information": ["Titulaire d'une thèse de 3e cycle en synthèse organique (Aix-Marseille 3, 1976)"]} 1 -2023-07-08 08:21:04.954399 2023-07-08 08:21:04.954404 22a554e8-b8bd-4719-90e9-d8275966bc64 {"md5": "cebb3c65436941696d2e351bb2a9aae2", "pid": "149877706", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["pol"], "identifier": "http://www.idref.fr/149877706", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/149877706", "source": "IDREF"}], "preferred_name": "Grochulski, Jerzy", "country_associated": "pl", "authorized_access_point": "Grochulski, Jerzy", "biographical_information": ["Président de la Stowarzyszenie architektów polskich"]} 1 -2023-07-08 08:21:05.240633 2023-07-08 08:21:05.240642 2e4feadd-a150-4977-aa2c-9a12832bf70b {"md5": "ef804d905df1f16455b9f30e9d4ba0b5", "pid": "149968302", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ara", "fre"], "identifier": "http://www.idref.fr/149968302", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/149968302", "source": "IDREF"}], "preferred_name": "Dridi, Lamjed", "country_associated": "ti", "authorized_access_point": "Dridi, Lamjed", "biographical_information": ["Archéologue et Historien, docteur de l'École pratique des hautes études"]} 1 -2023-07-08 08:21:05.132607 2023-07-08 10:25:45.203738 fc86007e-5d4b-4971-9b06-fdd4a1d42746 {"md5": "e5197af115210c8ad2a134b8981cb886", "pid": "149955847", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/149955847", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/149955847", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Schmid, Franziska Sibylle", "country_associated": "xx", "authorized_access_point": "Schmid, Franziska Sibylle, 19..-...."} 2 -2023-07-08 08:21:04.86723 2023-07-08 10:27:26.794742 dcea5c84-4825-4b9e-b425-26d3f5face9c {"md5": "b6ca91ea4d95214d194278b354f67a75", "pid": "149834802", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/149834802", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/149834802", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Fiore, Davide", "country_associated": "it", "authorized_access_point": "Fiore, Davide, 19..-....", "biographical_information": ["Critique d'art"]} 2 -2023-07-08 08:21:05.323322 2023-07-08 08:21:05.323334 823579e3-1f57-488a-b13f-5e782ddecfd3 {"md5": "055db2906338d1ff4e241c7c5e7cff20", "pid": "149990871", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/149990871", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/149990871", "source": "IDREF"}], "date_of_birth": "1985-05-31", "preferred_name": "Combes, Christophe", "country_associated": "fr", "authorized_access_point": "Combes, Christophe, 1985-....", "biographical_information": ["Titulaire d'un doctorat en pharmacie, (Toulouse 3, 2010)"]} 1 -2023-07-08 08:21:05.413643 2023-07-08 08:21:05.413649 d2bc89fb-6242-4971-92a6-14be9a0a1c57 {"md5": "92bea1f42126801e19be41c4c7d2498d", "pid": "149999399", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/149999399", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/149999399", "source": "IDREF"}], "preferred_name": "Ménard, Floriane", "country_associated": "fr", "authorized_access_point": "Ménard, Floriane", "biographical_information": ["Auteur d’un mémoire d'orthophonie soutenu à Caen en 2010"]} 1 -2023-07-08 08:21:05.50975 2023-07-08 08:21:05.509754 b6759b49-9e06-4124-8a86-e7c17744d5c1 {"md5": "94f57f588e334cb34e0cb58c2d1921fb", "pid": "150102836", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/150102836", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/150102836", "source": "IDREF"}], "preferred_name": "Avenell, Simon Andrew", "country_associated": "xxu", "authorized_access_point": "Avenell, Simon Andrew"} 1 -2023-07-08 08:21:05.670472 2023-07-08 08:21:05.670476 96bdae26-e5c0-41bb-af7a-c0a168724a0b {"md5": "a9ced3e5aa7c3334c68212ff7bc3d6db", "pid": "150296541", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/150296541", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/150296541", "source": "IDREF"}], "preferred_name": "Kinoshita, Hideki", "country_associated": "ja", "authorized_access_point": "Kinoshita, Hideki", "biographical_information": ["Chercheur à l'Hydrographic and Oceanographic Department, Japan Coast Guard"]} 1 -2023-07-08 08:21:05.769341 2023-07-08 08:21:05.769347 6f95fa65-4b0c-4e45-8502-2777ad7d5a29 {"md5": "d2d4c981b1a3b2e829588e3203985de9", "pid": "150503717", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/150503717", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/150503717", "source": "IDREF"}], "variant_name": ["Galerie Xavier Hufkens"], "preferred_name": "Xavier Hufkens (Bruxelles)", "country_associated": "be", "variant_access_point": ["Galerie Xavier Hufkens"], "authorized_access_point": "Xavier Hufkens (Bruxelles)", "biographical_information": ["Galerie d'exposition"]} 1 -2023-07-08 08:21:05.869498 2023-07-08 08:21:05.869505 762c8e25-9ea8-49e2-ad24-61d99319eda9 {"md5": "4ec1630cad122f25eb879bd00bbaaba9", "pid": "150552343", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/150552343", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/150552343", "source": "IDREF"}], "preferred_name": "Sherman, Paul B.", "authorized_access_point": "Sherman, Paul B.", "biographical_information": ["Economiste spécialisé en management environnemental. En 1989, en poste au East-West Center à Honolulu (Etats-Unis)"]} 1 -2023-07-08 08:21:05.963392 2023-07-08 08:21:05.9634 7cfc45c8-1c9d-4d3b-a815-415c7dc87bc9 {"md5": "b5b6317e7b47aa2168b089f99c1265b5", "pid": "150572492", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "commissaire d'exposition", "identifier": "http://www.idref.fr/150572492", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/150572492", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Guimard, Nathalie, commissaire d'exposition", "country_associated": "fr", "authorized_access_point": "Guimard, Nathalie, 19..-...., commissaire d'exposition", "biographical_information": ["Commissaire d'exposition. - Directrice de l'association Fotokino à Marseille, consacrée à la diffusion de travaux artistiques dans le champ des arts visuels (en 2011)"]} 1 -2023-07-08 08:21:06.032791 2023-07-08 08:21:06.032799 a9204151-b87a-4802-992e-05ce1d9e1bbf {"md5": "9df0ea9fe2cbd61868a20afcfb7c217f", "pid": "150592884", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/150592884", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/150592884", "source": "IDREF"}], "variant_name": ["Arranz, José Igor Prieto"], "preferred_name": "Prieto Arranz, José Igor", "variant_access_point": ["Arranz, José Igor Prieto"], "authorized_access_point": "Prieto Arranz, José Igor", "biographical_information": ["Maître de conférences à l'Universitat de les Illes Balears (en 2009). Titulaire d'un doctorat européen en Etudes anglaises de l'Université d'Oviedo"]} 1 -2023-07-08 08:21:06.211586 2023-07-08 08:21:06.211598 9d51779d-c0c2-47d4-9375-736c34a5ad52 {"md5": "2af3d26cca84e92dd1966a515849692f", "pid": "150610203", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/150610203", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/150610203", "source": "IDREF"}], "date_of_birth": "1983-07-20", "preferred_name": "Canet, Sigolène", "authorized_access_point": "Canet, Sigolène, 1983-....", "biographical_information": ["Auteure d'un mémoire de master de Sciences de l'éducation, Université de Bourgogne, 2010"]} 1 -2023-07-08 08:21:05.585595 2023-07-08 10:31:26.209977 3456fc7e-1353-4953-9e68-e4b8b8e06ad4 {"md5": "c87aa60bd0ecbf47fac1765f348cb9c9", "pid": "150196261", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/150196261", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/150196261", "source": "IDREF"}], "date_of_birth": "1956", "preferred_name": "Kraft, Roger", "country_associated": "xxu", "authorized_access_point": "Kraft, Roger, 1956-....", "biographical_information": ["Mathématicien"]} 2 -2023-07-08 08:21:06.299439 2023-07-08 08:21:06.299444 96dd4fd6-db90-44e3-95a3-29c7770b78c9 {"md5": "5d7b8defd09fdb6160045323544a6116", "pid": "150630085", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": false, "identifier": "http://www.idref.fr/150630085", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/150630085", "source": "IDREF"}], "preferred_name": "Pax. schweizerische Lebensversicherungsgesellschaft (Suisse)", "country_associated": "sz", "date_of_establishment": "1876", "authorized_access_point": "Pax. schweizerische Lebensversicherungsgesellschaft (Suisse)", "biographical_information": ["Société privée d'assurance sur la vie Suisse fondée en 1876. Siège à Bâle"]} 1 -2023-07-08 08:21:06.38568 2023-07-08 08:21:06.385686 0ada59f8-71b6-4ccd-8b7d-d246c605aeb4 {"md5": "9742d7d84594bde0ce537214a3c3b0f9", "pid": "150685793", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/150685793", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/150685793", "source": "IDREF"}], "date_of_birth": "1957", "preferred_name": "Filippi, Pierre", "authorized_access_point": "Filippi, Pierre, 1957", "biographical_information": ["Auteur d'une thèse en Chirurgie dentaire soutenue en 1981 à Bordeaux 2"]} 1 -2023-07-08 08:21:06.651589 2023-07-08 08:21:06.651595 90be7dcd-4290-4bd6-8159-8fcfc9f4e26f {"md5": "e9519fd3168a901c7796ae4d1273e4b1", "pid": "150813325", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/150813325", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/150813325", "source": "IDREF"}], "variant_name": ["Société royale des sciences et des arts du Cap Français"], "preferred_name": "Cercle des philadelphes (Saint-Domingue)", "country_associated": "fr", "date_of_termination": "1793", "variant_access_point": ["Société royale des sciences et des arts du Cap Français"], "date_of_establishment": "1784", "authorized_access_point": "Cercle des philadelphes (Saint-Domingue)", "biographical_information": ["Société ou académie scientifique et médicale créée au Cap Français à Saint-Domingue en 1784, avec une subvention royale. - Devenue par lettres patentes royales du 17 mai 1789 la \\"Société royale des sciences et des arts du Cap Français\\". - Disparaît de fait dès 1791, et en droit en 1793"]} 1 -2023-07-08 08:21:06.748133 2023-07-08 08:21:06.748142 a0c0ccdb-f79c-4885-a9e9-efab63307177 {"md5": "6b455c33f0decf055f0666d2ee4f2fe5", "pid": "150840691", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/150840691", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/150840691", "source": "IDREF"}], "variant_name": ["Capitaine Firmin, pseud."], "date_of_birth": "1902", "preferred_name": "Mey, Eugène", "country_associated": "fr", "variant_access_point": ["Capitaine Firmin, pseud."], "authorized_access_point": "Mey, Eugène, 1902-1985", "biographical_information": ["Professeur de lettres classiques au Lycée Fustel de Coulanges Strasbourg"]} 1 -2023-07-08 08:21:06.847928 2023-07-08 08:21:06.847932 265d8ecc-c104-4416-9101-f2e5f2943b16 {"md5": "f1550e863c507bae28300f500c17e112", "pid": "151028702", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/151028702", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/151028702", "source": "IDREF"}], "date_of_birth": "1979", "preferred_name": "Wallace, Andrew", "country_associated": "xx", "authorized_access_point": "Wallace, Andrew, 1979-...."} 1 -2023-07-08 08:21:07.033676 2023-07-08 08:21:07.033682 bbdd0bf1-34f1-4afc-9ce8-6908e775465b {"md5": "13ed0ccbd3bd4d9cf73c147c10edc6c5", "pid": "151217742", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "chi"], "conference": false, "identifier": "http://www.idref.fr/151217742", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/151217742", "source": "IDREF"}], "variant_name": ["植物研究所 (Pékin)", "IBCAS", "IB-CAS", "Chinese Academy of Sciences. Institute of botany", "中国科学院. 植物研究所"], "preferred_name": "Institute of botany (Pékin)", "country_associated": "cc", "variant_access_point": ["IBCAS", "IB-CAS", "Chinese Academy of Sciences. Institute of botany", "中国科学院. 植物研究所"], "authorized_access_point": "Institute of botany (Pékin)"} 1 -2023-07-08 08:21:07.117061 2023-07-08 08:21:07.117065 6b26a477-66f9-4f7a-8765-99f65482e466 {"md5": "764cd9a36ffd5051e82eb5569f3373a5", "pid": "151341885", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre", "lat"], "identifier": "http://www.idref.fr/151341885", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/151341885", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Bouette, Bruno", "country_associated": "fr", "authorized_access_point": "Bouette, Bruno, 19..-....", "biographical_information": ["Auteur d'une Thèse en sciences à l'ingénieur à l'Université de Franche-Comté"]} 1 -2023-07-08 08:21:06.480108 2023-07-08 10:25:29.601848 8b17deb7-8ac3-4b6f-955a-c5ab6c960ac1 {"md5": "9a7063f5387057aa94d8e3639d63a05f", "pid": "150700768", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "qualifier": "photographe", "identifier": "http://www.idref.fr/150700768", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/150700768", "source": "IDREF"}], "preferred_name": "Beckers, Stephan, photographe", "authorized_access_point": "Beckers, Stephan, photographe", "biographical_information": ["Photographe"]} 2 -2023-07-08 08:21:06.935081 2023-07-08 10:27:08.353083 035cf718-e503-4de1-aafe-a597e6035c46 {"md5": "11ca76f36c81e2e6fcf91b93b113352b", "pid": "15117430X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/15117430X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/15117430X", "source": "IDREF"}], "preferred_name": "Cadwaladr, Margaret", "country_associated": "xxc", "authorized_access_point": "Cadwaladr, Margaret"} 2 -2023-07-08 08:21:07.189032 2023-07-08 08:21:07.189036 eeefd890-53c9-4f42-a363-3e2c267ca5dd {"md5": "36b05466986f48e6b7777f9470c31906", "pid": "151481733", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "identifier": "http://www.idref.fr/151481733", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/151481733", "source": "IDREF"}], "date_of_birth": "1912", "date_of_death": "1994", "preferred_name": "Knoff, Udo", "country_associated": "bl", "authorized_access_point": "Knoff, Udo, 1912-1994", "biographical_information": ["Artiste céramiste"]} 1 -2023-07-08 08:21:07.27134 2023-07-08 08:21:07.271346 24f0dc28-da7e-45fe-b44b-bfd0af80d944 {"md5": "7b52189c35e80d734fedd25e3ee7cbdf", "pid": "151508712", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/151508712", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/151508712", "source": "IDREF"}], "date_of_birth": "1983", "preferred_name": "Zagari, Pascal", "country_associated": "fr", "authorized_access_point": "Zagari, Pascal, 1983-....", "biographical_information": ["Artiste"]} 1 -2023-07-08 08:21:07.358761 2023-07-08 08:21:07.358769 be944f02-82c7-40da-810f-4df71b62d5c7 {"md5": "5f8f6446412b03f5cb4483b4e384fc6a", "pid": "151580715", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/151580715", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/151580715", "source": "IDREF"}], "preferred_name": "Reibel, Olivier", "country_associated": "fr", "authorized_access_point": "Reibel, Olivier"} 1 -2023-07-08 08:21:07.447855 2023-07-08 08:21:07.44786 58daaccb-dc9f-4926-8a6a-e3ce55e03c46 {"md5": "99665f930f699b3ecbd396d991122eb3", "pid": "151775192", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/151775192", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/151775192", "source": "IDREF"}], "preferred_name": "Griffiths, John", "authorized_access_point": "Griffiths, John", "biographical_information": ["Membre de la Société Royale d'Edimbourg, et de plusieurs sociétés littéraires étrangères en 1812"]} 1 -2023-07-08 08:21:07.537886 2023-07-08 08:21:07.537892 2a34a629-323c-468b-b367-68702fe83574 {"md5": "299ac5e6d615121f96f0061faf6d89ca", "pid": "151813590", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/151813590", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/151813590", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Leray, Louis", "country_associated": "fr", "authorized_access_point": "Leray, Louis, 19..-...."} 1 -2023-07-08 08:21:07.625935 2023-07-08 08:21:07.625938 cf79a786-43de-4da6-b907-69b8cc31211c {"md5": "a9ca4143445d27857a3a856777607c04", "pid": "151884951", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/151884951", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/151884951", "source": "IDREF"}], "preferred_name": "Cité des sciences et de l'industrie (Paris). Observatoire des publics", "country_associated": "fr", "authorized_access_point": "Cité des sciences et de l'industrie (Paris). Observatoire des publics"} 1 -2023-07-08 08:21:07.694563 2023-07-08 08:21:07.694567 08951511-1d49-445c-84c4-51dafe27d931 {"md5": "c130a5278a71dde29a7845d8411af127", "pid": "151889511", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/151889511", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/151889511", "source": "IDREF"}], "date_of_birth": "1951-08-15", "preferred_name": "Choppin, Pierre-Marie", "country_associated": "fr", "authorized_access_point": "Choppin, Pierre-Marie", "biographical_information": ["Docteur en Médecine (Tours, 1978)"]} 1 -2023-07-08 08:21:07.840239 2023-07-08 08:21:07.840248 1634a46d-eb78-4cea-b3b7-635af5890ca9 {"md5": "b7624c832937671cb05d5524c1d4df6a", "pid": "152049193", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/152049193", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/152049193", "source": "IDREF"}], "date_of_birth": "1948", "preferred_name": "Tapia, Edmundo", "country_associated": "cl", "authorized_access_point": "Tapia, Edmundo, 1948-....", "biographical_information": ["Journaliste, a travaillé pour \\"Las últimas noticias\\" y canal 7"]} 1 -2023-07-08 08:21:07.931346 2023-07-08 08:21:07.931352 64b429f8-7caf-457c-8517-4a8c4e052a21 {"md5": "eaec9dac6c121694c0ebe61a31ee6aed", "pid": "152071210", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/152071210", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/152071210", "source": "IDREF"}], "date_of_birth": "1965-12-12", "preferred_name": "Cinelli, Luciano", "country_associated": "it", "authorized_access_point": "Cinelli, Luciano, 1965-....", "biographical_information": ["Dominicain. Historien médiéviste"]} 1 -2023-07-08 08:21:08.080084 2023-07-08 08:21:08.080088 d78038ff-20a1-4b9c-aefc-723ad89c8fdc {"md5": "c1339256d0b664daefe8b93e2b40bc22", "pid": "152355731", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ara", "fre"], "identifier": "http://www.idref.fr/152355731", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/152355731", "source": "IDREF"}], "preferred_name": "Keldany, Tamara", "country_associated": "xx", "authorized_access_point": "Keldany, Tamara", "biographical_information": ["Traduit du français en arabe"]} 1 -2023-07-08 08:21:07.99618 2023-07-08 10:27:43.567849 74ab0053-dcd3-4d47-896d-a99ae49f1e55 {"md5": "a7885b09fb9fd6fafb8a17ae2a021578", "pid": "152270345", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/152270345", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/152270345", "source": "IDREF"}], "variant_name": ["Serventy, D. L."], "date_of_birth": "1904", "date_of_death": "1988", "preferred_name": "Serventy, Dominic Louis", "country_associated": "at", "variant_access_point": ["Serventy, D. L."], "authorized_access_point": "Serventy, Dominic Louis, 1904-1988", "biographical_information": ["Ornithologue australien"]} 2 -2023-07-08 08:21:08.166426 2023-07-08 08:21:08.166431 c3349ce5-cf0a-40f0-ae27-15be5deb538f {"md5": "02eba5d818e2c1ef7c22dfd70e9515e0", "pid": "152491589", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut"], "conference": false, "identifier": "http://www.idref.fr/152491589", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/152491589", "source": "IDREF"}], "preferred_name": "Pastoe (Utrecht, Pays-Bas)", "country_associated": "ne", "authorized_access_point": "Pastoe (Utrecht, Pays-Bas)", "biographical_information": ["Bureau de design néerlandais, spécialisé dans le mobilier contemporain"]} 1 -2023-07-08 08:21:08.259129 2023-07-08 08:21:08.259138 48f659f7-5b7e-44ce-9822-26d0c077ce4a {"md5": "411bc317bb712a891d334279e4b8f158", "pid": "152513655", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/152513655", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/152513655", "source": "IDREF"}], "variant_name": ["Viglione, María Gabriela Bentancur", "Bentancur Viglione, Gabriela"], "date_of_birth": "19XX", "preferred_name": "Bentancur Viglione, María Gabriela", "country_associated": "uy", "variant_access_point": ["Viglione, María Gabriela Bentancur", "Bentancur Viglione, Gabriela"], "authorized_access_point": "Bentancur Viglione, María Gabriela, 19..-....", "biographical_information": ["Biologiste"]} 1 -2023-07-08 08:21:08.345772 2023-07-08 08:21:08.345778 e14f4bc8-a128-4574-bf02-161f45ead387 {"md5": "3036553c4c6e94551034b61f4679a7ed", "pid": "152519866", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/152519866", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/152519866", "source": "IDREF"}], "variant_name": ["Tezé, Virginie"], "date_of_birth": "19XX", "preferred_name": "Gausserès, Virginie", "country_associated": "fr", "variant_access_point": ["Tezé, Virginie"], "authorized_access_point": "Gausserès, Virginie, 19..-....", "biographical_information": ["Médecin, a soutenu un mémoire en médecine agricole (Tours, 2000)"]} 1 -2023-07-08 08:21:08.431599 2023-07-08 08:21:08.431605 e840c5ab-f1b4-4ab3-a65b-b964cbf7ff57 {"md5": "458793f13fddd2e2b3c45b820337ad27", "pid": "152563024", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "conference": false, "identifier": "http://www.idref.fr/152563024", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/152563024", "source": "IDREF"}], "variant_name": ["Магнитогорский государственный Университет (Магнитогорск, Россия)", "МаГУ", "MaGU"], "preferred_name": "Magnitogorskij gosudarstvennyj Universitet (Magnitogorsk, Russie)", "country_associated": "ru", "variant_access_point": ["МаГУ", "MaGU"], "date_of_establishment": "1932", "authorized_access_point": "Magnitogorskij gosudarstvennyj Universitet (Magnitogorsk, Russie)", "biographical_information": ["Magnitogorskij gosudarstvennyj Universitet a été fondé en 1932"]} 1 -2023-07-08 08:21:08.535268 2023-07-08 08:21:08.535274 5d4d9577-176d-4ee7-bf55-b1dda6803bb9 {"md5": "985ac881a2d19060ef49724bdac85052", "pid": "152706038", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/152706038", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/152706038", "source": "IDREF"}], "preferred_name": "Sardon, Camille", "country_associated": "fr", "authorized_access_point": "Sardon, Camille", "biographical_information": ["Pseudonyme collectif de l'association les Amis de l'Egalité"]} 1 -2023-07-08 08:21:08.616667 2023-07-08 08:21:08.616673 26f27694-c8a0-4c8e-abfe-d8347ff6f6f1 {"md5": "af1238737703a591b088947049bc8f1d", "pid": "152722270", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["chi"], "identifier": "http://www.idref.fr/152722270", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/152722270", "source": "IDREF"}], "variant_name": ["浅川敏"], "preferred_name": "Asakawa, Satoshi", "country_associated": "cc", "variant_access_point": ["浅川敏"], "authorized_access_point": "Asakawa, Satoshi"} 1 -2023-07-08 08:21:08.700077 2023-07-08 08:21:08.700082 2f989c97-39ac-41ac-b0ad-50b5be06749d {"md5": "146cede0c5df3a81a694197730cf7fd9", "pid": "15282300X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/15282300X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/15282300X", "source": "IDREF"}], "date_of_birth": "1953", "preferred_name": "Frénoy, Olivier", "country_associated": "fr", "authorized_access_point": "Frénoy, Olivier, 1953-....", "biographical_information": ["A suivi des études en design industriel à l'Ecole nationale supérieure des arts appliqués de Paris. A créé son agence de design industriel Concept Frénoy Design."]} 1 -2023-07-08 08:21:08.785483 2023-07-08 08:21:08.78549 73cd0252-015e-4070-89c6-3e73fe8baf4d {"md5": "cc549440c5001ffe0a09ee225de38af2", "pid": "152852093", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/152852093", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/152852093", "source": "IDREF"}], "preferred_name": "Clarke, William", "country_associated": "xxk", "authorized_access_point": "Clarke, William", "biographical_information": ["Artiste, ecrivain et commisaire d'exposition, vit et travaille à Glasgow."]} 1 -2023-07-08 08:21:08.86029 2023-07-08 08:21:08.860295 f61b2292-dfe2-4c13-b15a-68c332527737 {"md5": "0170c3c776fa3d64a3dea59e8665b3ee", "pid": "152901353", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/152901353", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/152901353", "source": "IDREF"}], "preferred_name": "Fohr, Andreas", "country_associated": "fr", "authorized_access_point": "Fohr, Andreas", "biographical_information": ["Artiste"]} 1 -2023-07-08 08:21:08.947996 2023-07-08 08:21:08.948001 cd6b720b-d4c2-4525-98e8-075eb07ac77c {"md5": "7c4d0922e34959c8d210a398eca1141b", "pid": "152940898", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/152940898", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/152940898", "source": "IDREF"}], "preferred_name": "Allen, Sarah", "country_associated": "xxu", "authorized_access_point": "Allen, Sarah", "biographical_information": ["Auteur spécialiste dans le domaine de la téléphonie mobile et de la programmation"]} 1 -2023-07-08 08:21:09.027372 2023-07-08 08:21:09.027377 bbd871bb-14ed-46fa-8303-c83b6eb1ef06 {"md5": "c0f84f66738d29ed3a8acf3b2d4ffefc", "pid": "15295208X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/15295208X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/15295208X", "source": "IDREF"}], "date_of_birth": "1959", "preferred_name": "Cramatte, Jean-Luc", "country_associated": "fr", "authorized_access_point": "Cramatte, Jean-Luc, 1959-....", "biographical_information": ["Photographe. - Fondateur de l'Agence Freenews à Fribourg, Suisse"]} 1 -2023-07-08 08:21:09.107071 2023-07-08 08:21:09.107076 1ba24621-5e62-44a9-a502-0c444ccee519 {"md5": "d7780bd8f229a573e09ed5223f80c194", "pid": "152972250", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/152972250", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/152972250", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Warren, Katherine F.", "country_associated": "xxu", "authorized_access_point": "Warren, Katherine F., 19..-...."} 1 -2023-07-08 08:21:09.170413 2023-07-08 08:21:09.170416 44e45ae4-2124-4ff3-8870-cdb4c654b865 {"md5": "d0ef52209aeb373d97ae93dd4f62753b", "pid": "153081147", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/153081147", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/153081147", "source": "IDREF"}], "preferred_name": "Condé, Mohamed", "country_associated": "gv", "authorized_access_point": "Condé, Mohamed", "biographical_information": ["Journaliste. Conseiller du ministre de la Communication, en Guinée (en 2011)"]} 1 -2023-07-08 08:21:09.252805 2023-07-08 08:21:09.252811 e6375f07-2b10-4520-aad3-7c28e9e9796e {"md5": "f8c20906220f07fe7e10db5ac44595e9", "pid": "153136480", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": true, "identifier": "http://www.idref.fr/153136480", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/153136480", "source": "IDREF"}], "variant_name": ["International conference on Economic and Social Aspects of Automation"], "preferred_name": "Journées internationales d'information sur les implications économiques et sociales de l'automation", "country_associated": "be", "date_of_termination": "1957-12-14", "variant_access_point": ["International conference on Economic and Social Aspects of Automation"], "date_of_establishment": "1957-12-13", "authorized_access_point": "Journées internationales d'information sur les implications économiques et sociales de l'automation (1957 ; Namur, Belgique)"} 1 -2023-07-08 08:21:09.341872 2023-07-08 08:21:09.34188 e212e89b-d90f-462c-8656-cf11d5d3fdcd {"md5": "cba43eb2bccf17202f964efaa024338d", "pid": "153410647", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/153410647", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/153410647", "source": "IDREF"}], "variant_name": ["Cauvin, Françoise", "Molines, Françoise"], "date_of_birth": "19XX", "preferred_name": "Cauvin-Molines, Françoise", "country_associated": "fr", "variant_access_point": ["Cauvin, Françoise", "Molines, Françoise"], "authorized_access_point": "Cauvin-Molines, Françoise, 19..-....", "biographical_information": ["Médecin, a soutenu un mémoire en médecine agricole (Tours, 1984)"]} 1 -2023-07-08 08:21:09.525403 2023-07-08 08:21:09.525407 35d8c30b-c947-4568-a9f0-1375836a3b09 {"md5": "d7120e7f19b4b8a2145a787df998ab5c", "pid": "153516631", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/153516631", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/153516631", "source": "IDREF"}], "preferred_name": "Jorio, Ettore", "country_associated": "it", "authorized_access_point": "Jorio, Ettore", "biographical_information": ["Avocat. Professeur de droit administratif, Université de Calabre"]} 1 -2023-07-08 08:21:09.620136 2023-07-08 08:21:09.620142 4aab6a70-9f39-45da-8245-e5ce2b328de1 {"md5": "42fcc7d786fb9a064d902139dac14aab", "pid": "153533056", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/153533056", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/153533056", "source": "IDREF"}], "preferred_name": "Capo, Giovanni", "country_associated": "it", "authorized_access_point": "Capo, Giovanni", "biographical_information": ["Juriste"]} 1 -2023-07-08 08:21:09.712672 2023-07-08 08:21:09.712679 16a07ef4-48a9-4ae3-b9cc-2cc5ec52c9d8 {"md5": "6807500dcb6c442965b7c8ea674faf8f", "pid": "153541342", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/153541342", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/153541342", "source": "IDREF"}], "preferred_name": "Thomas-Jones, Angela", "country_associated": "at", "authorized_access_point": "Thomas-Jones, Angela", "biographical_information": ["She is a part-time academic at Murdoch University, Western Australia, and editor of the popular culture collective's community and hub projects. Angela's research pieces focus on different aspects of popular culture such as fashion, body politics, the internet, creative industries and youth"]} 1 -2023-07-08 08:21:09.797074 2023-07-08 08:21:09.797081 bcc09d3d-6008-4077-b70e-a60cf12d512a {"md5": "36beaaadc9f8f171f8b788d3721f107d", "pid": "153546247", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/153546247", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/153546247", "source": "IDREF"}], "date_of_birth": "1953", "preferred_name": "Green, David", "country_associated": "xxk", "authorized_access_point": "Green, David, 1953-....", "biographical_information": ["Conférencier en histoire et théorie de l'art contemporain, University of Brighton"]} 1 -2023-07-08 08:21:09.881592 2023-07-08 08:21:09.881597 c3048b3e-b8de-4d13-8bbc-70acd8e68e2a {"md5": "772e2d68bd6623fd781bf060f253b00f", "pid": "153613556", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/153613556", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/153613556", "source": "IDREF"}], "date_of_birth": "1971-12-26", "preferred_name": "Zhou, Yiqun", "country_associated": "cc", "authorized_access_point": "Zhou, Yiqun, 1971-...."} 1 -2023-07-08 08:21:09.986367 2023-07-08 08:21:09.986373 8228790a-58c4-4590-94f7-3b7cf29709d3 {"md5": "c3d7b882b3ea029923f199d234e180b2", "pid": "153973145", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/153973145", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/153973145", "source": "IDREF"}], "date_of_birth": "1970", "preferred_name": "Onishi, Yoshitomo", "country_associated": "ja", "authorized_access_point": "Onishi, Yoshitomo, 1970-....", "biographical_information": ["Titulaire d'un doctorat d'histoire de la philosophie moderne à Paris 1 en 2011"]} 1 -2023-07-08 08:21:10.146795 2023-07-08 08:21:10.146803 4234c9c9-4873-412c-bfff-580dfe45efc1 {"md5": "3a48e0ab277213bd96fce5ec881c26be", "pid": "154190551", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/154190551", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/154190551", "source": "IDREF"}], "preferred_name": "McGehee, Abby", "country_associated": "xxu", "authorized_access_point": "McGehee, Abby", "biographical_information": ["Professeure associée à l'\\"Oregon College of Art and Craft\\" (en 2011)"]} 1 -2023-07-08 08:21:10.234852 2023-07-08 08:21:10.234858 af659261-26e1-48f8-9f11-7f9a08f323eb {"md5": "0e25528a0d008143f98b08888a039016", "pid": "154659622", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/154659622", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/154659622", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Kozmin, S. A.", "country_associated": "xx", "authorized_access_point": "Kozmin, S. A., 19..-...."} 1 -2023-07-08 08:21:10.320859 2023-07-08 08:21:10.320865 8b9b2dc2-a04e-45ce-976b-50bde042c59d {"md5": "8abd35e1f44fad4476713805009972b7", "pid": "154744395", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/154744395", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/154744395", "source": "IDREF"}], "variant_name": ["Furon, Frédéric"], "date_of_birth": "1969", "preferred_name": "Furon, Frédéric", "country_associated": "fr", "variant_access_point": ["Furon, Frédéric"], "authorized_access_point": "Furon, Frédéric, 1969-....", "biographical_information": ["Historien et guide conférencier des Villes et Pays d'Art et d'Histoire à Rouen"]} 1 -2023-07-08 08:21:10.415223 2023-07-08 08:21:10.415228 ef1b01a3-7ebd-403e-9eb7-e7a94c2e3de1 {"md5": "8920d58b4fc003e2c8010a02192542d2", "pid": "154778532", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/154778532", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/154778532", "source": "IDREF"}], "preferred_name": "Bird, Phillip I.", "country_associated": "at", "authorized_access_point": "Bird, Phillip I."} 1 -2023-07-08 08:21:10.498054 2023-07-08 08:21:10.498061 5015303a-feee-49b5-9029-1963ac476909 {"md5": "d4a0f3ac778861bad471a69a2359306f", "pid": "154820903", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/154820903", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/154820903", "source": "IDREF"}], "date_of_birth": "1971-09-12", "preferred_name": "Mintoume, Siméon Clotaire", "country_associated": "cm", "authorized_access_point": "Mintoume, Siméon Clotaire, 1971-....", "biographical_information": ["Docteur en philosophie. - Enseignant à l'Université de Douala (en 2011)"]} 1 -2023-07-08 08:21:10.588937 2023-07-08 08:21:10.588947 acc97078-decf-4bd1-a364-7af5f28772bc {"md5": "6c210e647a29b918f66b913b11745e2d", "pid": "154833649", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/154833649", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/154833649", "source": "IDREF"}], "date_of_birth": "1986-07-07", "preferred_name": "Lim, Vicheth", "authorized_access_point": "Lim, Vicheth, 1986-....", "biographical_information": ["Auteur d'une thèse d'exercice en Chirurgie dentaire (Lyon 1, 2011)"]} 1 -2023-07-08 08:21:10.868037 2023-07-08 08:21:10.868043 262706d6-635a-482d-851d-f43f26f78913 {"md5": "71214a9a7c1b3914a37f09f1029020e8", "pid": "155128965", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": false, "identifier": "http://www.idref.fr/155128965", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/155128965", "source": "IDREF"}], "preferred_name": "Alonso Balaguer y Arquitectos Asociados", "country_associated": "sp", "authorized_access_point": "Alonso Balaguer y Arquitectos Asociados", "biographical_information": ["Agence d'architecture fondée par Luis Alonso et Sergio Balaguer en 1978 à Barcelone."]} 1 -2023-07-08 08:21:52.182742 2023-07-08 08:21:52.182751 d97d61c5-0ee6-4d4d-9a10-549ca418db9d {"md5": "b29da01017f7c7a4b9b2d1b6a778ef55", "pid": "200723421", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/200723421", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/200723421", "source": "IDREF"}], "preferred_name": "Kielosto, Sakari", "authorized_access_point": "Kielosto, Sakari", "biographical_information": ["Géologue"]} 1 -2023-07-08 08:21:10.068418 2023-07-08 10:29:35.434563 e562fcdb-6c1e-4d3e-8d0e-169e4f3fd68b {"md5": "7d57ff0151ebd77cd5ba8b735925af4c", "pid": "15401916X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/15401916X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/15401916X", "source": "IDREF"}], "date_of_birth": "1944", "preferred_name": "Watkins, Peter Maitland", "country_associated": "xxk", "authorized_access_point": "Watkins, Peter Maitland, 1944-....", "biographical_information": ["Physicien, en poste à l'Université de Birmingham, en 1986"]} 2 -2023-07-08 08:21:10.966526 2023-07-08 08:21:10.966532 3c5febfb-9061-4dad-9a4a-0079bb4c38c0 {"md5": "45273f4f31e9ef8f4f466b9706c7a4b7", "pid": "155289292", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifier": "http://www.idref.fr/155289292", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/155289292", "source": "IDREF"}], "variant_name": ["International Conference on Coordination Models and Languages"], "preferred_name": "COORDINATION 2011", "country_associated": "ic", "date_of_termination": "2011-06-09", "variant_access_point": ["International Conference on Coordination Models and Languages (13 ; 2011 ; Reykjavik)"], "date_of_establishment": "2011-06-06", "authorized_access_point": "COORDINATION 2011 (13 ; 2011 ; Reykjavik)"} 1 -2023-07-08 08:21:11.132152 2023-07-08 08:21:11.132157 fec416c4-17b4-4907-911d-1e3983c4c60f {"md5": "4a674c3fbfa9be2fe5902f9b291ea23e", "pid": "155413163", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": false, "identifier": "http://www.idref.fr/155413163", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/155413163", "source": "IDREF"}], "variant_name": ["Organization of the People in Arms (Guatemala)‏", "Organización del Pueblo en Armas (Guatemala)‏", "O.R.P.A.‏"], "preferred_name": "ORPA (Organization)‏", "country_associated": "gt", "variant_access_point": ["Organization of the People in Arms (Guatemala)‏", "Organización del Pueblo en Armas (Guatemala)‏", "O.R.P.A.‏"], "authorized_access_point": "ORPA (Organization)‏"} 1 -2023-07-08 08:21:11.232908 2023-07-08 08:21:11.232914 3a4e355d-719d-4a9f-8ec4-3ed6e9eb6658 {"md5": "97e0c298600bfe17e65bec8a8ed9f7b4", "pid": "155413414", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": false, "identifier": "http://www.idref.fr/155413414", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/155413414", "source": "IDREF"}], "variant_name": ["Frente democratico contra la Represion‏ (Guatemala)", "FDCR‏"], "preferred_name": "Frente democrático contra la Represión (Guatemala)", "country_associated": "gt", "variant_access_point": ["Frente democratico contra la Represion‏ (Guatemala)", "FDCR‏"], "authorized_access_point": "Frente democrático contra la Represión (Guatemala)"} 1 -2023-07-08 08:21:11.336383 2023-07-08 08:21:11.336389 fe738b9f-467d-424b-a1e8-408cbfd983d8 {"md5": "705a3211c85a69ea78f799b0fe58160f", "pid": "155519107", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/155519107", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/155519107", "source": "IDREF"}], "variant_name": ["Bustos-Magalhaes, Natacha", "Magalhaes, Natacha Bustos"], "date_of_birth": "1981", "preferred_name": "Bustos, Natacha", "country_associated": "sp", "variant_access_point": ["Bustos-Magalhaes, Natacha", "Magalhaes, Natacha Bustos"], "authorized_access_point": "Bustos, Natacha, 1981-....", "biographical_information": ["Auteur de bandes dessinées"]} 1 -2023-07-08 08:21:11.433311 2023-07-08 08:21:11.433317 61466128-cdf7-49cc-85d0-0993d2092695 {"md5": "46d9a92ba1d6c39fcd53019929eb8dfb", "pid": "155533797", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/155533797", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/155533797", "source": "IDREF"}], "date_of_birth": "1943-11-12", "date_of_death": "2009-02-10", "preferred_name": "Salter, Richard", "country_associated": "xxk", "authorized_access_point": "Salter, Richard, 1943-2009", "biographical_information": ["Baryton, membre fondateur des King's Singers"]} 1 -2023-07-08 08:21:11.534647 2023-07-08 08:21:11.534653 8b60fd83-66c2-45d6-a3ac-d24d1a99d680 {"md5": "00394d0e33422dbdfd13dce6a13ad914", "pid": "155592122", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/155592122", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/155592122", "source": "IDREF"}], "date_of_birth": "1977", "preferred_name": "Stephens, Mark B.", "country_associated": "at", "authorized_access_point": "Stephens, Mark B., 1977"} 1 -2023-07-08 08:21:11.629291 2023-07-08 08:21:11.629295 bbbf2652-8c00-42ab-93a2-80cfb493f6e0 {"md5": "b436142a2c4d1f51c46926d0a98622ad", "pid": "155733370", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/155733370", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/155733370", "source": "IDREF"}], "date_of_birth": "1905", "date_of_death": "1990-12-18", "preferred_name": "Fried, John H. E.", "country_associated": "au", "authorized_access_point": "Fried, John H. E., 1905-1990", "biographical_information": ["Avocat, professeur de sciences politiques et militant des droits de l'homme"]} 1 -2023-07-08 08:21:11.81961 2023-07-08 08:21:11.819616 f5e14233-e7d0-4741-940f-d36c64720571 {"md5": "b33ba9f00dbb337e20d3870b37174013", "pid": "155760947", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/155760947", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/155760947", "source": "IDREF"}], "preferred_name": "Bernecker, Cathy", "country_associated": "fr", "authorized_access_point": "Bernecker, Cathy", "biographical_information": ["Comédienne"]} 1 -2023-07-08 08:21:11.044908 2023-07-08 10:24:00.917113 b9d93bd1-6472-43a8-ba71-95de29701375 {"md5": "e93333903cc5e0a576f463ed61c852c7", "pid": "155309668", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/155309668", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/155309668", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Sorrells, Felipe D.", "country_associated": "xxu", "authorized_access_point": "Sorrells, Felipe D., 19..-...."} 2 -2023-07-08 08:21:12.025746 2023-07-08 08:21:12.025755 a6820744-25b9-4a16-b6e3-5d40c6fff317 {"md5": "1ad16cb16fcb0a3145d20ad87ae05368", "pid": "15589899X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "identifier": "http://www.idref.fr/15589899X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/15589899X", "source": "IDREF"}], "preferred_name": "Grazzini, Athos D.", "country_associated": "xx", "authorized_access_point": "Grazzini, Athos D."} 1 -2023-07-08 08:21:12.114052 2023-07-08 08:21:12.114057 fb132a03-2089-4f9e-89eb-44988ffb1cf8 {"md5": "e4e3f96f8e8d0c2ea7e9f30f99346b5a", "pid": "155925261", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/155925261", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/155925261", "source": "IDREF"}], "date_of_birth": "1971", "preferred_name": "Lemon, Robert", "country_associated": "xx", "authorized_access_point": "Lemon, Robert, 1971-"} 1 -2023-07-08 08:21:12.230554 2023-07-08 08:21:12.230558 94624c4f-3073-458c-bd1d-ab7abcecb716 {"md5": "45673bfd8e73d1e80757cae37f755158", "pid": "155933604", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/155933604", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/155933604", "source": "IDREF"}], "date_of_birth": "1973", "preferred_name": "Taylor, Jeremy E.", "country_associated": "xxk", "authorized_access_point": "Taylor, Jeremy E., 1973-....", "biographical_information": ["Maître de conférences en études chinoises, School of East Asian studies, University of Sheffield, Grande-Bretagne (en 2011)"]} 1 -2023-07-08 08:21:12.332035 2023-07-08 08:21:12.332042 142ce9fd-d510-4a81-922e-048fcff5a9d2 {"md5": "cee8da58e9b15f006d42f1eed21fc242", "pid": "155942204", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/155942204", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/155942204", "source": "IDREF"}], "date_of_birth": "1980", "preferred_name": "Grosser, Florian", "country_associated": "gw", "authorized_access_point": "Grosser, Florian, 1980-....", "biographical_information": ["Enseigne la philosophie à l'Université Ludwig-Maximilian, München"]} 1 -2023-07-08 08:21:12.421574 2023-07-08 08:21:12.42158 7f4b2581-cc67-48af-9b84-ab372dff9908 {"md5": "2e8dc83fae67bb92236fadcb9b154a9e", "pid": "156048701", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "identifier": "http://www.idref.fr/156048701", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/156048701", "source": "IDREF"}], "date_of_birth": "1948-09-22", "preferred_name": "Aráujo, Maria", "country_associated": "bl", "authorized_access_point": "Aráujo, Maria, 1948-....", "biographical_information": ["Plasticienne, peintre, sculpteur. - Chercheur dans le domaine de la valorisation et de la consolidation du patrimoine culturel (en 2011)"]} 1 -2023-07-08 08:21:12.531413 2023-07-08 08:21:12.531417 092dcdea-70f9-44a0-bc71-745078efed79 {"md5": "bae296bd2268f2eee2e01060b4b5d116", "pid": "156053241", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/156053241", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/156053241", "source": "IDREF"}], "variant_name": ["Otmazgin, Nissim Kadosh"], "date_of_birth": "1973", "preferred_name": "Otmazgin, Nissim", "country_associated": "is", "variant_access_point": ["Otmazgin, Nissim Kadosh"], "authorized_access_point": "Otmazgin, Nissim, 1973-....", "biographical_information": ["Maître de conférences au département d'études d'Asie orientale de l'Université hébraïque de Jérusalem"]} 1 -2023-07-08 08:21:12.625217 2023-07-08 08:21:12.625222 d1f1ba04-b7cc-4ca9-98b9-7f310c5c388d {"md5": "d15d78308be3fe24101f849b9358330b", "pid": "156252813", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifier": "http://www.idref.fr/156252813", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/156252813", "source": "IDREF"}], "preferred_name": "Ensemble Wien-Berlin", "country_associated": "au", "date_of_establishment": "1983", "authorized_access_point": "Ensemble Wien-Berlin", "biographical_information": ["Ensemble instrumental. - Se compose de deux solistes de chacun des orchestres philharmoniques de Vienne et de Berlin, ainsi que d'un soliste de l'Orchestre symphonique de Vienne", "Adresse : Vienne", "Adresse : Berlin", "Schulz, Wolfgang, fl (1983-). Schellenberger, Hansjorg, htb (1983-). Leister, Karl, clar (1983-). Turkovic, Milan, basson (1983-). Hogner, Gunter, cor (1983-). Janezic, Willibald, cor. Süss, Margit-Anna, hrp. Hetzel, Gerhart, vl. Hell, Josef, vl. Christ, Wolfram, alto. Faust, Georg, vlc. Posch, Alois, cb"]} 1 -2023-07-08 08:21:12.717746 2023-07-08 08:21:12.717748 29809feb-2b41-4499-9243-aac4d5bc2e06 {"md5": "34768048d7c1514288afb5b293662fbe", "pid": "156288435", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/156288435", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/156288435", "source": "IDREF"}], "date_of_birth": "1978", "preferred_name": "Bo, Armando", "country_associated": "ag", "authorized_access_point": "Bo, Armando, 1978-....", "biographical_information": ["Réalisateur,Scénariste, producteur et interprète argentin. Petit-fils de l'acteur réalisateur Armando Bó (1914-1981) et fils de l'acteur Victor Bo (1943-....)"]} 1 -2023-07-08 08:21:21.599919 2023-07-08 10:26:43.425342 a2267cfb-c19e-4bed-947f-5bd9e7c51f19 {"md5": "1213e9bcdfc69d709ec5f9279e4ae878", "pid": "167467549", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/167467549", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/167467549", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Reynolds, Catherine", "country_associated": "xx", "authorized_access_point": "Reynolds, Catherine, 19..-...."} 2 -2023-07-08 08:21:11.924378 2023-07-08 10:27:17.066347 351fefcc-4fc3-4a43-a3fa-34ea19ec3434 {"md5": "bfe2e6b1c4505be7ddf4cc4a56a0ce41", "pid": "155852639", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/155852639", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/155852639", "source": "IDREF"}], "preferred_name": "Routon, Kenneth", "country_associated": "xxu", "authorized_access_point": "Routon, Kenneth", "biographical_information": ["Anthropologue culturel (2010)"]} 2 -2023-07-08 08:21:12.900663 2023-07-08 08:21:12.900674 7309e5a6-54e0-419d-a26f-2af5b5d5cde2 {"md5": "603e0a9dcc84fe463be9071d3810285a", "pid": "156363690", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/156363690", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/156363690", "source": "IDREF"}], "variant_name": ["Prasad Choudhary, Debi", "Prasad, Debi"], "preferred_name": "Choudhary, Debi Prasad", "country_associated": "xxk", "variant_access_point": ["Prasad Choudhary, Debi", "Prasad, Debi"], "authorized_access_point": "Choudhary, Debi Prasad", "biographical_information": ["En poste : Laboratory for Experiments in Optics, Department of Physics & Astronomy, California State University, Northridge, États-Unis (2011)"]} 1 -2023-07-08 08:21:12.992305 2023-07-08 08:21:12.99231 bef2c464-d436-4d07-b813-fca9acdbcc2c {"md5": "4e23cce18d93c88247a1da5d115da155", "pid": "156539063", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/156539063", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/156539063", "source": "IDREF"}], "date_of_birth": "1966", "preferred_name": "Scholl, Elisabeth", "country_associated": "gw", "authorized_access_point": "Scholl, Elisabeth, 1966-....", "biographical_information": ["Artiste lyrique (soprano)"]} 1 -2023-07-08 08:21:13.064277 2023-07-08 08:21:13.064283 b0817dc6-381e-455d-8139-0d0625aee16e {"md5": "09a1ae9b84921de925f14e51b48e37ce", "pid": "156563932", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/156563932", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/156563932", "source": "IDREF"}], "date_of_birth": "1959-03-26", "date_of_death": "2012-01-23", "preferred_name": "Lockhart, Robert", "country_associated": "xxk", "authorized_access_point": "Lockhart, Robert, 19..-....", "biographical_information": ["Pianiste, compositeur de musique de films"]} 1 -2023-07-08 08:21:13.153914 2023-07-08 08:21:13.15392 157d20a0-6c3c-4987-b35b-776814ede68f {"md5": "43ceb9e2b50a98aa75288e6fabba5fbd", "pid": "156590948", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["pol"], "identifier": "http://www.idref.fr/156590948", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/156590948", "source": "IDREF"}], "preferred_name": "Nowakowska, Wanda", "country_associated": "pl", "authorized_access_point": "Nowakowska, Wanda", "biographical_information": ["Historien d' art"]} 1 -2023-07-08 08:21:13.243603 2023-07-08 08:21:13.243614 dd60f257-38a2-48b4-98bb-3dfabe8a05f8 {"md5": "0eaae943838956e9e26cacfe8d6b74f4", "pid": "156838524", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifier": "http://www.idref.fr/156838524", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/156838524", "source": "IDREF"}], "preferred_name": "Joe Cuba Sextet", "country_associated": "cu", "date_of_establishment": "19XX", "authorized_access_point": "Joe Cuba Sextet", "biographical_information": ["Groupe de variétés latino américaines (mambo)"]} 1 -2023-07-08 08:21:13.338776 2023-07-08 08:21:13.338785 2ee39ee3-ed2d-44f6-972c-c4602e236a72 {"md5": "c038bbe083323ec3b24d003de4698ae0", "pid": "156838613", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifier": "http://www.idref.fr/156838613", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/156838613", "source": "IDREF"}], "variant_name": ["Quatuor à cordes Mikrokosmos", "Mikrokosmos string quartet"], "preferred_name": "Mikrokosmos Vonósnégyes", "country_associated": "hu", "variant_access_point": ["Quatuor à cordes Mikrokosmos", "Mikrokosmos string quartet"], "date_of_establishment": "1998", "authorized_access_point": "Mikrokosmos Vonósnégyes", "biographical_information": ["Quatuor à cordes fondé par Gábor Takács-Nagy", "Takács-Nagy, Gábor, violon. Tuska, Zoltán, violon. Papp, Sándor, alto. Perényi, Miklós, violoncelle"]} 1 -2023-07-08 08:21:13.435195 2023-07-08 08:21:13.435201 24a85583-24d6-4afd-bbac-7813c7937a90 {"md5": "9f8a64c842ad78e0d7acba505448e8c0", "pid": "156954761", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/156954761", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/156954761", "source": "IDREF"}], "preferred_name": "Institut du Champ freudien (Paris). Conversation", "country_associated": "fr", "date_of_termination": "2009?", "date_of_establishment": "2009?", "authorized_access_point": "Institut du Champ freudien (Paris). Conversation (2009 ; Paris)"} 1 -2023-07-08 08:21:13.519152 2023-07-08 08:21:13.519155 85c17578-0231-4314-a1a4-1a09f9264e6d {"md5": "1c1758af708da8fe4ee6f2d45d91d459", "pid": "15704856X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/15704856X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/15704856X", "source": "IDREF"}], "preferred_name": "Eastman, David L.", "country_associated": "xxu", "authorized_access_point": "Eastman, David L.", "biographical_information": ["Maître de conférences en histoire du Nouveau Testament grec et chrétien à la Yale Divinity School."]} 1 -2023-07-08 08:21:13.592014 2023-07-08 08:21:13.592018 ef74d8b6-6084-41ee-b0a7-7f85f8354503 {"md5": "e6ceb77a160a1e607d8f005a00017857", "pid": "157222330", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ara"], "identifier": "http://www.idref.fr/157222330", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157222330", "source": "IDREF"}], "variant_name": ["الخاني, عبد المجيد بن محمد", "عبد المجيد بن محمد بن محمد الخاني الدمشقي الشافعي", "ʿAbd al-Maǧīd Ibn Muḥammad al-Khāni al-Khālidī al-naqshabandī", "Al-Naqshabandī, ʿAbd al-Maǧīd Ibn Muḥammad", "Al-Naqšabandi, ʿAbd al-Maǧīd Ibn Muḥammad", "النقشبندي, عبد المجيد بن محمد", "الشافعي, عبد المجيد بن محمد", "عبد المجيد بن محمد بن محمد الخاني النقشبندي"], "date_of_birth": "1848", "date_of_death": "1901", "preferred_name": "H̱ānī, ʿAbd al-Maǧīd Ibn Muḥammad al-", "variant_access_point": ["عبد المجيد بن محمد بن محمد الخاني الدمشقي الشافعي", "ʿAbd al-Maǧīd Ibn Muḥammad al-Khāni al-Khālidī al-naqshabandī", "Al-Naqshabandī, ʿAbd al-Maǧīd Ibn Muḥammad", "Al-Naqšabandi, ʿAbd al-Maǧīd Ibn Muḥammad", "النقشبندي, عبد المجيد بن محمد", "الشافعي, عبد المجيد بن محمد", "عبد المجيد بن محمد بن محمد الخاني النقشبندي"], "authorized_access_point": "H̱ānī, ʿAbd al-Maǧīd Ibn Muḥammad al-, 1848-1901", "biographical_information": ["Maître sufi, historien et érudit dans les sciences religieuses islamiques"]} 1 -2023-07-08 08:21:13.667562 2023-07-08 08:21:13.667567 143bb7fc-1cb6-416b-9ef8-6bac65e35d46 {"md5": "7cacfe5ea510188c18cbc69492c958fb", "pid": "157227170", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/157227170", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157227170", "source": "IDREF"}], "variant_name": ["Meya, Raoul Kiyangi"], "date_of_birth": "1970--.-..", "preferred_name": "Kiyangi Meya, Raoul", "country_associated": "cg", "variant_access_point": ["Meya, Raoul Kiyangi"], "authorized_access_point": "Kiyangi Meya, Raoul, 1970....", "biographical_information": ["Docteur en Théologie"]} 1 -2023-07-08 08:21:13.782503 2023-07-08 08:21:13.782508 d51c41aa-354c-47a8-822e-f3430dd1c239 {"md5": "f4366300a37dcb93e5551a2f844f5890", "pid": "157315088", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifier": "http://www.idref.fr/157315088", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157315088", "source": "IDREF"}], "preferred_name": "La Boîte à bazar", "country_associated": "fr", "date_of_establishment": "2003", "authorized_access_point": "La Boîte à bazar", "biographical_information": ["Groupe de chansons françaises", "Clément, Grégory, chant. Giovannini, Cyrille, piano. Champeau, Thierry, saxophones. Gumez, Stéphane, contrebasse. Duval, Cyril, guitare"]} 1 -2023-07-08 08:21:13.86751 2023-07-08 08:21:13.867516 9b73255a-3a6f-4805-a040-2f00b7cf11b7 {"md5": "fbbeb66778646070e47f3034d40c3f40", "pid": "157332047", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifier": "http://www.idref.fr/157332047", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157332047", "source": "IDREF"}], "preferred_name": "Bad English", "country_associated": "xxu", "date_of_termination": "1991", "date_of_establishment": "1988", "authorized_access_point": "Bad English", "biographical_information": ["Groupe de rock", "Waite, John, chant (1988-1991). Schon, Neal, guitare, chant (1988-1991). Cain, Jonathan, claviers, chant (1988-1991). Phillips, Ricky, guitare basse (1988-1991). Castronovo, Deen, batterie, chant (1988-1991)"]} 1 -2023-07-08 08:21:13.962114 2023-07-08 08:21:13.962121 33174162-2aae-4c03-9bbd-51e65ee22c8c {"md5": "58ddf1cc074a8461828ca067e52198a6", "pid": "157333507", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifier": "http://www.idref.fr/157333507", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157333507", "source": "IDREF"}], "preferred_name": "Zefiro torna", "country_associated": "be", "date_of_establishment": "1996", "authorized_access_point": "Zefiro torna", "biographical_information": ["Ensemble vocal et instrumental de musique ancienne", "Adresse : Mechelen, Belgique", "Kempenaers, Cécile, chant. Van Laethem, Els, chant. De Bruyn, Jurgen, luth. Fennelly, Liam, viole de gambe"]} 1 -2023-07-08 08:21:14.055647 2023-07-08 08:21:14.055651 a5e0d662-fcbc-4970-979a-497c5062daba {"md5": "0a6f1a41b3a7ec8c4504e5af151602fa", "pid": "157526860", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/157526860", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157526860", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Schwartz, Baruch J.", "country_associated": "is", "authorized_access_point": "Schwartz, Baruch J., 19..-....", "biographical_information": ["Lecteur à : Hebrew University of Jerusalem"]} 1 -2023-07-08 08:21:14.144883 2023-07-08 08:21:14.144891 2d85cc1d-b987-43e7-951b-221c4d2a3ccf {"md5": "e72310e3e614e278eeb73be2a8347f0d", "pid": "157650154", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "qualifier": "auteur de bandes dessinées", "identifier": "http://www.idref.fr/157650154", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157650154", "source": "IDREF"}], "variant_name": ["Mino, Patrizio Di"], "date_of_birth": "19XX", "preferred_name": "Di Mino, Patrizio, auteur de bandes dessinées", "country_associated": "it", "variant_access_point": ["Mino, Patrizio Di"], "authorized_access_point": "Di Mino, Patrizio, 19..-...., auteur de bandes dessinées", "biographical_information": ["Scénariste de bandes dessinées"]} 1 -2023-07-08 08:21:14.326919 2023-07-08 08:21:14.32693 420676ea-de07-4604-b96a-6c54139af882 {"md5": "4b55e63eedc9241cf57257f313a01d2c", "pid": "157881997", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["pol"], "identifier": "http://www.idref.fr/157881997", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157881997", "source": "IDREF"}], "preferred_name": "Chojnacka, Halina", "country_associated": "pl", "authorized_access_point": "Chojnacka, Halina"} 1 -2023-07-08 08:21:14.416714 2023-07-08 08:21:14.416719 4f6597a4-d1f3-43de-a3e7-ab4590c6b5e5 {"md5": "a1c734352236cd1d19c096277dc9d11e", "pid": "157995860", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["slv"], "identifier": "http://www.idref.fr/157995860", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157995860", "source": "IDREF"}], "date_of_birth": "1937-03-06", "preferred_name": "Vojvoda, Metod", "country_associated": "xv", "authorized_access_point": "Vojvoda, Metod, 1937-...."} 1 -2023-07-08 08:21:14.509615 2023-07-08 08:21:14.50962 121260e2-0ae0-4671-95bb-ea4417aa04bf {"md5": "070b7712b12254f340d6fc5e078c9a7f", "pid": "158085647", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/158085647", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/158085647", "source": "IDREF"}], "preferred_name": "Lenaz, Luciano", "country_associated": "it", "authorized_access_point": "Lenaz, Luciano", "biographical_information": ["Latiniste"]} 1 -2023-07-08 08:21:14.607439 2023-07-08 08:21:14.607442 68c37aa5-11b6-4154-9a9f-bde7809b06fb {"md5": "a98dbf9e6009bea7d6be81d259e45b47", "pid": "158118294", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": false, "identifier": "http://www.idref.fr/158118294", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/158118294", "source": "IDREF"}], "preferred_name": "Sociedad Geográfica de Cuba (La Habana)", "country_associated": "cu", "authorized_access_point": "Sociedad Geográfica de Cuba (La Habana)"} 1 -2023-07-08 08:21:14.686759 2023-07-08 08:21:14.686767 be0a3ec5-33de-421f-8efd-6dbcf6ce103f {"md5": "8267cdb6fb8734cc3ea325b2fddb1a0d", "pid": "158365186", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/158365186", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/158365186", "source": "IDREF"}], "date_of_birth": "1952-04-10", "preferred_name": "Olsen, Frode", "country_associated": "no", "authorized_access_point": "Olsen, Frode, 1952-....", "biographical_information": ["Artiste lyrique (basse)", "Lieu de naissance Oslo"]} 1 -2023-07-08 08:21:14.868136 2023-07-08 08:21:14.868139 90d60c4e-287e-41ca-9b3f-a112e6fe839e {"md5": "3fbc3dd24cab811a38230c6a8bd847da", "pid": "158638247", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/158638247", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/158638247", "source": "IDREF"}], "date_of_death": "1894", "preferred_name": "Stephen, Alexander M.", "country_associated": "xxu", "authorized_access_point": "Stephen, Alexander M., d. 1894"} 1 -2023-07-08 08:21:14.965088 2023-07-08 08:21:14.965092 edda78e8-a57e-4850-a6ad-675c5776386c {"md5": "84e1812b19990780938658aef3a847fb", "pid": "158762274", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/158762274", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/158762274", "source": "IDREF"}], "variant_name": ["Angers, Mgr l'évêque d'", "Le Peletier, Michel, évêque d'Angers", "Le Pelletier, Michel", "Lepeletier, Michel"], "date_of_birth": "1663?", "date_of_death": "1706", "preferred_name": "Le Peletier, Michel", "variant_access_point": ["Angers, Mgr l'évêque d'", "Le Peletier, Michel, évêque d'Angers", "Le Pelletier, Michel", "Lepeletier, Michel"], "authorized_access_point": "Le Peletier, Michel, 1663?-1706", "biographical_information": ["Abbé de Jouy, évêque d'Angers puis d'Orléans. Fils du ministre d'état Claude Le Peletier. Evêque d'Angers en 1693. Il sera brièvement évêque d'Orléans en 1706."]} 1 -2023-07-08 08:21:15.052711 2023-07-08 08:21:15.052717 d38af590-147a-4681-ad13-a73fdad817c4 {"md5": "f8f60bba745593aeb97a8680ca367afc", "pid": "158778235", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "géologue", "identifier": "http://www.idref.fr/158778235", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/158778235", "source": "IDREF"}], "variant_name": ["Lombard, J."], "date_of_birth": "1895", "preferred_name": "Lombard, Jean, géologue", "country_associated": "xx", "variant_access_point": ["Lombard, J."], "authorized_access_point": "Lombard, Jean, 1895-...., géologue", "biographical_information": ["Géologue"]} 1 -2023-07-08 08:21:15.150623 2023-07-08 08:21:15.150628 d952128b-6262-479d-b615-76ad883d67e6 {"md5": "a37254272a432be57e3ea532f7989150", "pid": "158991583", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/158991583", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/158991583", "source": "IDREF"}], "preferred_name": "Senft, Albin-Friedrich", "country_associated": "gw", "authorized_access_point": "Senft, Albin-Friedrich"} 1 -2023-07-08 08:21:15.235541 2023-07-08 08:21:15.235546 1bf10d3d-09bb-443c-8b2c-dc934993137e {"md5": "9e006b16bec2af6c58b6af29cebd7709", "pid": "158996577", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/158996577", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/158996577", "source": "IDREF"}], "variant_name": ["De Souza, Rosalia"], "date_of_birth": "1966-07-04", "preferred_name": "Souza, Rosalia de", "country_associated": "bl", "variant_access_point": ["De Souza, Rosalia"], "authorized_access_point": "Souza, Rosalia de, 1966-....", "biographical_information": ["Chanteuse. - Vit en Italie"]} 1 -2023-07-08 08:21:15.319411 2023-07-08 08:21:15.319417 23e8d027-c6ac-4103-9017-7f88618c56c0 {"md5": "30f148e2796de58160e311cdf90b442b", "pid": "159184495", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/159184495", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/159184495", "source": "IDREF"}], "date_of_birth": "1976", "preferred_name": "Buccheri, Chiara", "country_associated": "fr", "authorized_access_point": "Buccheri, Chiara, 1976-...."} 1 -2023-07-08 08:21:15.405999 2023-07-08 08:21:15.406006 be1cce9f-9c21-45de-8af8-44ec88760d4b {"md5": "c7efb9f9a5fe60ed039c383b3f9395e6", "pid": "159278201", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/159278201", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/159278201", "source": "IDREF"}], "variant_name": ["EIA (London, Washington)"], "preferred_name": "Environmental Investigation Agency (London, Washington)", "variant_access_point": ["EIA (London, Washington)"], "authorized_access_point": "Environmental Investigation Agency (London, Washington)"} 1 -2023-07-08 08:21:15.499591 2023-07-08 08:21:15.499595 f7779d3e-c5d9-4779-9fe5-425e02d40ffd {"md5": "718aa2ed5df92c8b8a770f4da0f61a15", "pid": "159640989", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/159640989", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/159640989", "source": "IDREF"}], "preferred_name": "Terblanche, Simonet", "authorized_access_point": "Terblanche, Simonet"} 1 -2023-07-08 08:21:15.574076 2023-07-08 08:21:15.57408 d4caa392-4840-4ed3-ad18-5c74058cfc40 {"md5": "64b1c09f72261b5b1cc7ddb0c7b68525", "pid": "159658152", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "qualifier": "musicien", "identifier": "http://www.idref.fr/159658152", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/159658152", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Danieli, Marco, musicien", "country_associated": "it", "authorized_access_point": "Danieli, Marco, 19..-...., musicien", "biographical_information": ["Artiste lyrique (baryton)"]} 1 -2023-07-08 08:21:15.669251 2023-07-08 08:21:15.669256 d6d4c287-bfd3-43ab-a55c-04c599826931 {"md5": "bab31150ddfaad25e08c7e6424f88cfd", "pid": "159687306", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/159687306", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/159687306", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Caversaccio, Marco-Domenico", "country_associated": "sz", "authorized_access_point": "Caversaccio, Marco-Domenico, 19..-....", "biographical_information": ["Directeur du Département ENT, chirurgie de la tête et du cou, Hôpital universitaire d'Inselspital, Université de Bern (2011)"]} 1 -2023-07-08 08:21:15.750948 2023-07-08 08:21:15.750955 8ba20554-df73-4683-9e14-5f3d4cbce0c5 {"md5": "106c55f30e4bbf7581355a3523ba5ffb", "pid": "159765315", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/159765315", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/159765315", "source": "IDREF"}], "date_of_birth": "1949", "preferred_name": "Hull, Edmund James", "country_associated": "xxu", "authorized_access_point": "Hull, Edmund James, 1949-...."} 1 -2023-07-08 08:21:15.84968 2023-07-08 08:21:15.849685 6490876e-840c-4eae-9687-7b8279417cfd {"md5": "1d28cc91abfd4acd89cbb1dc3b86eb0d", "pid": "159775744", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/159775744", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/159775744", "source": "IDREF"}], "date_of_birth": "1936", "preferred_name": "Puthucheary, Rosaly", "country_associated": "si", "authorized_access_point": "Puthucheary, Rosaly, 1936-....", "biographical_information": ["Professeur d'anglais à la retraite, titulaire d'un doctorat en littérature anglaise de l'Université de Singapour (2006)"]} 1 -2023-07-08 08:21:15.946315 2023-07-08 08:21:15.946324 11f59cc5-8476-4cb5-af0c-95d8f71ab34e {"md5": "45d882b3d2c316e0c82f72c82371ee56", "pid": "159852684", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/159852684", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/159852684", "source": "IDREF"}], "date_of_birth": "1978", "preferred_name": "Paquin, Barbara", "authorized_access_point": "Paquin, Barbara, 1978-....", "biographical_information": ["Bachelière en administration des affaires de l'Université Laval"]} 1 -2023-07-08 08:21:16.042081 2023-07-08 08:21:16.042085 ed4e2f6a-9c65-4779-9fc9-bb32ac1a7a6a {"md5": "ace46237edd7475f5f706b8979d445e7", "pid": "160193974", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/160193974", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/160193974", "source": "IDREF"}], "variant_name": ["Amicale des originaires de l'arrondissement de Gourdon (Lot) à Paris"], "preferred_name": "Amicale des originaires de l'arrondissement de Gourdon (Lot) à Paris", "country_associated": "fr", "variant_access_point": ["Amicale des originaires de l'arrondissement de Gourdon (Lot) à Paris"], "authorized_access_point": "Amicale des originaires de l'arrondissement de Gourdon (Lot) à Paris"} 1 -2023-07-08 08:21:16.125349 2023-07-08 08:21:16.125354 2c577797-c117-4eea-a325-0d56156c2604 {"md5": "633f27a9dcbbd2c3e6bf2bc98a90d74f", "pid": "160196620", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/160196620", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/160196620", "source": "IDREF"}], "variant_name": ["ADETEF"], "preferred_name": "Association pour le développement des échanges en technologie économique et financière (France)", "country_associated": "fr", "variant_access_point": ["ADETEF"], "date_of_establishment": "19XX", "authorized_access_point": "Association pour le développement des échanges en technologie économique et financière (France)", "biographical_information": ["Groupement d'intérêt public. - Agence de coopération technique internationale des ministères chargés de l’économie et du budget", "Adresse : 5 place des Vins-de-France, 75573 Paris Cedex 12. Contact : 01 53 44 25 35. Télécopie : 01 53 44 25 31. Adresse électronique : adetef-contact@adetef.finances.gouv.fr", "Adresse : Ancienne adresse : 8 rue des Bons-Enfants, 75056 Paris. Tél. 42.60.33.00 p. 3876"]} 1 -2023-07-08 08:21:16.21748 2023-07-08 08:21:16.217486 9667411e-a18b-4ad4-9fc0-789cc736c278 {"md5": "dd6c9f20045fe3c855631afcfe5811e1", "pid": "160342465", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifier": "http://www.idref.fr/160342465", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/160342465", "source": "IDREF"}], "preferred_name": "New vision 400", "country_associated": "cc", "date_of_termination": "2008-10-15", "date_of_establishment": "2008-10-12", "authorized_access_point": "New vision 400 (2008 ; Beijing)"} 1 -2023-07-08 08:21:16.310327 2023-07-08 08:21:16.310338 287051f4-e883-4680-adb4-13f200dc1bdd {"md5": "0083b52ca32c0988296ee9787dc61a54", "pid": "160359619", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/160359619", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/160359619", "source": "IDREF"}], "date_of_birth": "1926-01-06", "preferred_name": "Silvestre, Armando Enrique", "country_associated": "mx", "authorized_access_point": "Silvestre, Armando Enrique, 1926-...", "biographical_information": ["Acteur mexicain né en Californie"]} 1 -2023-07-08 08:21:16.396676 2023-07-08 08:21:16.396684 e038be21-672b-43d1-bf3d-b9d2578b8f00 {"md5": "d316cf35a4afa21213c19839a32490c5", "pid": "160424275", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/160424275", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/160424275", "source": "IDREF"}], "preferred_name": "Abbaye de Saint-Benoît-en-Woëvre (Meuse)", "country_associated": "fr", "authorized_access_point": "Abbaye de Saint-Benoît-en-Woëvre (Meuse)", "biographical_information": ["Abbaye fondée en 1132 dans le diocèse de Metz. Une des quatre filiales de l'abbaye cistercienne de la Crête, située elle-même près de Bourdons-sur-Rognon."]} 1 -2023-07-08 08:21:16.563892 2023-07-08 08:21:16.563899 f6859cd2-701e-42bc-a785-42ed7ef5e226 {"md5": "23aacd3e699afe948ec3427e5516c5b4", "pid": "160635543", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/160635543", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/160635543", "source": "IDREF"}], "date_of_birth": "1938", "preferred_name": "Diodato, Baldo", "country_associated": "it", "authorized_access_point": "Diodato, Baldo, 1938-....", "biographical_information": ["Artiste italien"]} 1 -2023-07-08 08:21:16.661242 2023-07-08 08:21:16.661253 a31a4607-3054-419c-a703-dbb19f31e886 {"md5": "97122e0c35f6cfa198bf03b000fd2377", "pid": "160773318", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/160773318", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/160773318", "source": "IDREF"}], "variant_name": ["Burian, Peter Ferdinand"], "date_of_birth": "1951-02-16", "preferred_name": "Burian, Peter", "country_associated": "au", "variant_access_point": ["Burian, Peter Ferdinand"], "authorized_access_point": "Burian, Peter, 1951-....", "biographical_information": ["Chef de choeur et chef d'orchestre"]} 1 -2023-07-08 08:21:16.751619 2023-07-08 08:21:16.751624 ff3bc062-f25f-4306-9147-4c289746e2b4 {"md5": "f6f6f9a128eb55e3b9ad09b46177a3e1", "pid": "160837065", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifier": "http://www.idref.fr/160837065", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/160837065", "source": "IDREF"}], "preferred_name": "Symposium on H II Regions and Related Topics", "country_associated": "au", "date_of_termination": "1975-01-17", "date_of_establishment": "1975-01-13", "authorized_access_point": "Symposium on H II Regions and Related Topics (1975 ; Mittelberg, Autriche)"} 1 -2023-07-08 08:21:16.8476 2023-07-08 08:21:16.847605 101c1b8f-6808-408a-9e5d-079b3ff57e38 {"md5": "5fe1900f7500d78bffcaf2e0a5bfa645", "pid": "16113307X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/16113307X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/16113307X", "source": "IDREF"}], "preferred_name": "Korotkov, Dave", "country_associated": "xxc", "authorized_access_point": "Korotkov, Dave", "biographical_information": ["Associate Professor of Psychology at St. Thomas University in Fredericton, New Brunswick, Canada (2011)"]} 1 -2023-07-08 08:21:16.952895 2023-07-08 08:21:16.952901 237daa5c-3893-40c6-af0b-ddbe18e1c098 {"md5": "f10d9ebd081dc294b72cac48d858b4a9", "pid": "161148689", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa", "eng"], "identifier": "http://www.idref.fr/161148689", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/161148689", "source": "IDREF"}], "preferred_name": "Valdivielso, Joaquín", "country_associated": "sp", "authorized_access_point": "Valdivielso, Joaquín", "biographical_information": ["Traduit de l'anglais à l'espagnol."]} 1 -2023-07-08 08:21:17.045643 2023-07-08 08:21:17.045648 cdec73df-3e97-4240-99d1-5f4401ee27e2 {"md5": "b0b7bc4d47241c75be1ecf9c8dd02147", "pid": "161301142", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/161301142", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/161301142", "source": "IDREF"}], "date_of_birth": "1981", "preferred_name": "Bly, Adam", "country_associated": "xxu", "authorized_access_point": "Bly, Adam, 1981-...."} 1 -2023-07-08 08:21:17.235149 2023-07-08 08:21:17.235155 400c2552-0127-496b-8805-7d59fa0de213 {"md5": "d976a2609f0792a6f16d98a41a815757", "pid": "16165407X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/16165407X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/16165407X", "source": "IDREF"}], "variant_name": ["Rhône-Alpes. Service d'aménagement des eaux", "Service d'aménagement des eaux de Rhône-Alpes", "Service régional de l'aménagement des eaux de Rhône-Alpes"], "preferred_name": "Rhône-Alpes. Service régional de l'aménagement des eaux", "country_associated": "fr", "variant_access_point": ["Rhône-Alpes. Service d'aménagement des eaux", "Service d'aménagement des eaux de Rhône-Alpes", "Service régional de l'aménagement des eaux de Rhône-Alpes"], "authorized_access_point": "Rhône-Alpes. Service régional de l'aménagement des eaux"} 1 -2023-07-08 08:21:17.335124 2023-07-08 08:21:17.335132 52106af5-3b5d-42e2-8fbf-c7b4b1b87d91 {"md5": "dbaaaa02a93b6893302788f1acd80912", "pid": "161696325", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/161696325", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/161696325", "source": "IDREF"}], "preferred_name": "Heathcote, Gina", "country_associated": "xx", "authorized_access_point": "Heathcote, Gina", "biographical_information": ["Senior teaching fellow at the School of Oriental and African studies"]} 1 -2023-07-08 08:21:17.445721 2023-07-08 08:21:17.445728 ac1b5283-b264-47b1-a411-5f30c86f5128 {"md5": "d1b08e32da29504e0257d57af4790b09", "pid": "161996302", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/161996302", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/161996302", "source": "IDREF"}], "date_of_birth": "1952", "preferred_name": "Roach, Michael", "country_associated": "xxc", "authorized_access_point": "Roach, Michael, 1952-"} 1 -2023-07-08 08:21:17.523197 2023-07-08 08:21:17.523199 a090ad5d-53ce-493a-b0cb-78a7ad49b36e {"md5": "e72d4cd6189b9d13cc6ef8a732d10132", "pid": "162046065", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut"], "identifier": "http://www.idref.fr/162046065", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/162046065", "source": "IDREF"}], "variant_name": ["Anninga, A.Z.", "Anninga, A. Z."], "date_of_birth": "19XX", "preferred_name": "Anninga, Anniek Z.", "country_associated": "ne", "variant_access_point": ["Anninga, A.Z.", "Anninga, A. Z."], "authorized_access_point": "Anninga, Anniek Z., 19..-....", "biographical_information": ["Editrice. Spécialiste d'archéologie"]} 1 -2023-07-08 08:21:17.888079 2023-07-08 08:21:17.888087 833c6a2a-d111-4620-ba76-c8172539817c {"md5": "220fd38420b2018e1dcd3efd1a17fa5f", "pid": "162196407", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/162196407", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/162196407", "source": "IDREF"}], "preferred_name": "Ikeda, Yukihiro", "country_associated": "ja", "authorized_access_point": "Ikeda, Yukihiro", "biographical_information": ["Historien de la pensée économique. En poste à l'université de Keio au Japon (en 2012)."]} 1 -2023-07-08 08:21:17.98541 2023-07-08 08:21:17.985416 39094812-ed7b-4ec0-a890-e40d0066d5fb {"md5": "96a6ba197a68e57072483314511be6b8", "pid": "162320264", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/162320264", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/162320264", "source": "IDREF"}], "preferred_name": "Airbus Staff Council", "country_associated": "fr", "authorized_access_point": "Airbus Staff Council", "biographical_information": ["Comité central d'entreprise créé en mars 2002"]} 1 -2023-07-08 08:21:18.062408 2023-07-08 08:21:18.062413 1efd0abe-3788-4e6a-baec-ad721e0877ce {"md5": "dc544569dc056c22868577df21ef7e98", "pid": "162452659", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/162452659", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/162452659", "source": "IDREF"}], "variant_name": ["Paleotti, Ridolfo", "Palaeotus, Rodulphus"], "date_of_birth": "15", "date_of_death": "1619-05-23", "preferred_name": "Paleotti, Rodolfo", "country_associated": "it", "variant_access_point": ["Paleotti, Ridolfo", "Palaeotus, Rodulphus"], "authorized_access_point": "Paleotti, Rodolfo, 15..-1619", "biographical_information": ["Évêque d'Imola du 27 juin 1611 au 23 mai 1619"]} 1 -2023-07-08 08:21:18.247441 2023-07-08 08:21:18.247445 eac1e150-f637-44bb-9d11-d1c834a38938 {"md5": "9df105f90fa6b532547901ffb6ef2d63", "pid": "163232857", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/163232857", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/163232857", "source": "IDREF"}], "variant_name": ["4 C", "CCCC", "Quatre C", "Communauté de communes Concarneau Cornouaille"], "preferred_name": "Communauté de communes de Concarneau Cornouaille", "country_associated": "fr", "variant_access_point": ["4 C", "CCCC", "Quatre C", "Communauté de communes Concarneau Cornouaille"], "date_of_establishment": "1994-06-30", "authorized_access_point": "Communauté de communes de Concarneau Cornouaille", "biographical_information": ["Regroupe les communes de Concarneau, Elliant, Melgven, Névez, Pont-Aven, Rosporden, Saint-Yvi, Tourc’h, Trégunc", "Adresse : 52 rue Bayard, BP 636, 29186 Concarneau Cedex. Contact : 02 98 97 71 50. Télécopie : 02 98 97 71 51. Adresse électronique : contact@cc-concarneaucornouaille.fr"]} 1 -2023-07-08 08:21:18.349053 2023-07-08 08:21:18.349058 25c8258b-e4a1-4fee-8ad5-456254462175 {"md5": "09158a99c7e85c240dca92e7d8b35837", "pid": "163250030", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/163250030", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/163250030", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Chamontin, Marjorie", "country_associated": "fr", "authorized_access_point": "Chamontin, Marjorie, 19..-....", "biographical_information": ["Actrice et metteur en scène"]} 1 -2023-07-08 08:21:18.450943 2023-07-08 08:21:18.450948 489944d1-1a80-42c2-b687-756c90c63212 {"md5": "feaba591d4489c23180c1d454f31da77", "pid": "163880433", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/163880433", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/163880433", "source": "IDREF"}], "date_of_birth": "1967", "preferred_name": "Kern, Friederike", "country_associated": "gw", "authorized_access_point": "Kern, Friederike, 1967-....", "biographical_information": ["Professeur de linguistique"]} 1 -2023-07-08 08:21:18.549218 2023-07-08 08:21:18.549284 cc8e8727-2a6b-4f54-8481-bcd930cdb721 {"md5": "eeab70fc7cc1fff8375d2b4a3a575fb7", "pid": "164105301", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/164105301", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/164105301", "source": "IDREF"}], "preferred_name": "Boise Art Museum (Boise, ID)", "country_associated": "xxu", "authorized_access_point": "Boise Art Museum (Boise, ID)", "biographical_information": ["Adresse : Boise Art Museum , 670 Julia Davis Drive, Boise, Idaho 83702, 208-345-8330"]} 1 -2023-07-08 08:21:54.036157 2023-07-08 10:26:52.829279 da6545fd-9f00-4bf4-b003-fdb39daea257 {"md5": "881522cd9dde5afe17349a17582c33b8", "pid": "202400263", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/202400263", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/202400263", "source": "IDREF"}], "preferred_name": "King, G. G.", "authorized_access_point": "King, G. G."} 2 -2023-07-08 08:21:17.786503 2023-07-08 10:29:51.450033 b9adaa56-eb4f-4efe-b280-99594236f5b3 {"md5": "2522557b5efc49f9ab13b160ec98aba0", "pid": "16216193X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "identifier": "http://www.idref.fr/16216193X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/16216193X", "source": "IDREF"}], "variant_name": ["神田, 典城"], "date_of_birth": "1949", "preferred_name": "Kanda, Norishiro", "country_associated": "ja", "variant_access_point": ["神田, 典城, 1949-...."], "authorized_access_point": "Kanda, Norishiro, 1949-....", "biographical_information": ["Transcription Hepburn modifié", "Spécialiste de la mythologie japonaise"]} 2 -2023-07-08 08:21:18.733959 2023-07-08 08:21:18.733964 de669b13-425f-4e8b-9068-24b7120f10d7 {"md5": "54a2ad8d474641d9f023f83e57f8afec", "pid": "164530363", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/164530363", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/164530363", "source": "IDREF"}], "variant_name": ["Collectif d'action des sans-abri (Avignon)"], "preferred_name": "CASA (Avignon)", "country_associated": "fr", "variant_access_point": ["Collectif d'action des sans-abri (Avignon)"], "authorized_access_point": "CASA (Avignon)", "biographical_information": ["Association d'aide aux personnes sans-abri ou mal logées", "Adresse : 5 bis avenue du Blanchissage, 84000 Avignon"]} 1 -2023-07-08 08:21:18.826559 2023-07-08 08:21:18.826568 4065f3f6-7119-467f-9e56-39be2f1ef0a1 {"md5": "e60b30ad9493dea2650a9fc9dd3f1361", "pid": "164539972", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/164539972", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/164539972", "source": "IDREF"}], "variant_name": ["TFS"], "preferred_name": "Tennessee folklore society", "country_associated": "xxu", "variant_access_point": ["TFS"], "date_of_establishment": "1934", "authorized_access_point": "Tennessee folklore society"} 1 -2023-07-08 08:21:18.920332 2023-07-08 08:21:18.920338 247c84eb-d74e-44a6-9e42-0bd438c14d65 {"md5": "3b2957dc99b5ff5fa20544ab16049520", "pid": "164600620", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/164600620", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/164600620", "source": "IDREF"}], "preferred_name": "Rokotnitz, Naomi", "country_associated": "is", "authorized_access_point": "Rokotnitz, Naomi", "biographical_information": ["Enseigne au département d'anglais de la \\"Bar llan University\\" (Israël) en 2011"]} 1 -2023-07-08 08:21:19.012357 2023-07-08 08:21:19.012362 ba581772-a5ad-47d9-999f-7c0b7243e3ca {"md5": "3cc0f4c6519efbf0dc1d95fd54303297", "pid": "164604820", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": true, "identifier": "http://www.idref.fr/164604820", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/164604820", "source": "IDREF"}], "variant_name": ["13e Biennale internationale de Châteauroux", "Nouvelle biennale de céramique contemporaine de Châteauroux"], "preferred_name": "Biennale de céramique contemporaine de Châteauroux", "date_of_termination": "2005-12-04", "variant_access_point": ["13e Biennale internationale de Châteauroux", "Nouvelle biennale de céramique contemporaine de Châteauroux"], "date_of_establishment": "2005-09-17", "authorized_access_point": "Biennale de céramique contemporaine de Châteauroux (13 ; 2005)"} 1 -2023-07-08 08:21:19.117171 2023-07-08 08:21:19.11718 2ffcb0be-c3dd-499a-97d1-9dfd66c1fe6b {"md5": "6c14bf197cdf3e416f25d0e25fbe9382", "pid": "164708782", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/164708782", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/164708782", "source": "IDREF"}], "date_of_birth": "1923", "date_of_death": "1992-09", "preferred_name": "Burgaz, Janin", "country_associated": "fr", "authorized_access_point": "Burgaz, Janin, 1923-1992", "biographical_information": ["Épouse d'un homme d'affaires turc, elle arrive en Turquie en 1950. - A fondé un institut de beauté \\"Janin Surgen\\" à Istanbul", "Lieu de décès Bordeaux"]} 1 -2023-07-08 08:21:19.209545 2023-07-08 08:21:19.209552 36472c72-3d42-4358-9653-d0ed2a0d6b37 {"md5": "2c3a240672bc0491e91d8875e8da8bdc", "pid": "16480224X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/16480224X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/16480224X", "source": "IDREF"}], "preferred_name": "Hatzelhoffer, Lena", "country_associated": "gw", "authorized_access_point": "Hatzelhoffer, Lena", "biographical_information": ["Spécialiste d'urbanisme"]} 1 -2023-07-08 08:21:19.300551 2023-07-08 08:21:19.300557 5721fe68-a09b-4557-8f63-d290c2cd08eb {"md5": "6aeefcd68e4618cf72f72109346a4d1d", "pid": "16481079X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "identifier": "http://www.idref.fr/16481079X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/16481079X", "source": "IDREF"}], "variant_name": ["恩田, 陸"], "date_of_birth": "1964", "preferred_name": "Onda, Riku", "country_associated": "ja", "variant_access_point": ["恩田, 陸, 1964-...."], "authorized_access_point": "Onda, Riku, 1964-....", "biographical_information": ["Romancière japonaise (en 2012)"]} 1 -2023-07-08 08:21:19.400219 2023-07-08 08:21:19.400225 97d0e3ea-7bd1-4c9d-8164-d25f4e97296e {"md5": "0f206c071cdc38b13767240f28ca7a0b", "pid": "164855580", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ukr"], "conference": false, "identifier": "http://www.idref.fr/164855580", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/164855580", "source": "IDREF"}], "variant_name": ["Одеський національний університет імені І. І. Мечникова (Ukraine)", "Odessa State University (Ukraine)", "Université d'Etat d'Odessa (Ukraine)", "Universitas nationalis Odessae", "ОНУ (Ukraine)", "ONU (Ukraine)", "Мiнiстерство освiти i науки Украïни. Одеський державний університет (Ukraine)", "Ministerstvo osviti i nauki Ukraïni. Odesʹkij deržavnij uníversitet (Ukraine)", "Министерство образования и науки Украины. Одесский государственный университет (Ukraine)", "Ministerstvo obrazovaniâ i nauki Ukrainy. Odesskij gosudarstvennyj universitet (Ukraine)", "Одесский государственный университет (Ukraine)", "Odesskij gosudarstvennyj universitet (Ukraine)"], "preferred_name": "Odesʹkij nacíonalʹnij uníversitet ímení Í. Í. Mečnikova (Ukraine)", "country_associated": "un", "variant_access_point": ["Odessa State University (Ukraine)", "Université d'Etat d'Odessa (Ukraine)", "Universitas nationalis Odessae", "ОНУ (Ukraine)", "ONU (Ukraine)", "Мiнiстерство освiти i науки Украïни. Одеський державний університет (Ukraine)", "Ministerstvo osviti i nauki Ukraïni. Odesʹkij deržavnij uníversitet (Ukraine)", "Министерство образования и науки Украины. Одесский государственный университет (Ukraine)", "Ministerstvo obrazovaniâ i nauki Ukrainy. Odesskij gosudarstvennyj universitet (Ukraine)", "Одесский государственный университет (Ukraine)", "Odesskij gosudarstvennyj universitet (Ukraine)"], "date_of_establishment": "1865-05-13", "authorized_access_point": "Odesʹkij nacíonalʹnij uníversitet ímení Í. Í. Mečnikova (Ukraine)", "biographical_information": ["Adresse : вул. Дворянська, 2, Одеса, 65082, Україна"]} 1 -2023-07-08 08:21:19.49933 2023-07-08 08:21:19.499339 48d7ffeb-6e2e-4645-bc8b-d7e45800c778 {"md5": "69fb6d05e7fc6307054067a4fd291919", "pid": "164948368", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifier": "http://www.idref.fr/164948368", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/164948368", "source": "IDREF"}], "variant_name": ["Львов, С.В."], "preferred_name": "Lʹvov, S.V.", "country_associated": "ru", "variant_access_point": ["Львов, С.В."], "authorized_access_point": "Lʹvov, S.V."} 1 -2023-07-08 08:21:19.584859 2023-07-08 08:21:19.584864 83e0b697-5b33-45f4-ade4-ad3703e0dd19 {"md5": "735a2f18c3de11efad7ff3683039f3c6", "pid": "165030968", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fin", "eng"], "identifier": "http://www.idref.fr/165030968", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/165030968", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Sipilä, Jorma", "country_associated": "fi", "authorized_access_point": "Sipilä, Jorma, 19..-....", "biographical_information": ["Professeur à l'Université de Tempere (Finlande). Spécialiste de la politique sociale et du travail social. Professeur émérite en 2012"]} 1 -2023-07-08 08:21:19.67015 2023-07-08 08:21:19.670155 5887605d-b87c-45c9-9f76-aedc876e10a1 {"md5": "13637d0c676413b831b14003141e85ef", "pid": "165099054", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "identifier": "http://www.idref.fr/165099054", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/165099054", "source": "IDREF"}], "variant_name": ["藤井, 信幸"], "date_of_birth": "1956", "preferred_name": "Fujii, Nobuyuki", "country_associated": "ja", "variant_access_point": ["藤井, 信幸, 1956-...."], "authorized_access_point": "Fujii, Nobuyuki, 1956-....", "biographical_information": ["Historien, spécialiste de l'histoire contemporaine à l'Université de Waseda"]} 1 -2023-07-08 08:21:19.764204 2023-07-08 08:21:19.764216 aa1bc219-b6b7-464c-afc7-846e1fdcaf88 {"md5": "fc510a0c9d84a051ee1f4d99516bbcfb", "pid": "165139455", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "identifier": "http://www.idref.fr/165139455", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/165139455", "source": "IDREF"}], "variant_name": ["Aoki Kazuko", "青木 和子", "Kazuko Aoki"], "date_of_birth": "1953", "preferred_name": "Aoki, Kazuko", "country_associated": "ja", "variant_access_point": ["Aoki Kazuko", "青木 和子", "Kazuko Aoki"], "parallel_access_point": ["青木, 和子, 1953-...."], "authorized_access_point": "Aoki, Kazuko, 1953-....", "biographical_information": ["Brodeuse, créatrice de modèles de broderie"]} 1 -2023-07-08 08:21:19.845665 2023-07-08 08:21:19.845669 b29e25b4-b27e-44b6-a73a-6ce23dd4a8dd {"md5": "83e1d043b2e2ea9476aa01be4dcfaacc", "pid": "165153687", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/165153687", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/165153687", "source": "IDREF"}], "preferred_name": "Peske, Nancy K.", "country_associated": "xxu", "authorized_access_point": "Peske, Nancy K."} 1 -2023-07-08 08:21:19.938284 2023-07-08 08:21:19.938291 e85e552c-e0b8-4cc4-8a8e-4340260bad34 {"md5": "1ac11b5baadfd16a81edf7ed5aa44682", "pid": "16530569X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["kor", "eng"], "identifier": "http://www.idref.fr/16530569X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/16530569X", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Nam, Sŭng-ho", "country_associated": "ko", "authorized_access_point": "Nam, Sŭng-ho, 19..-...."} 1 -2023-07-08 08:21:20.032513 2023-07-08 08:21:20.032519 06045468-6b75-4b76-921e-a240cad8291a {"md5": "9da2e0a98dde3ce8840e4894673b42c4", "pid": "165425229", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "conference": false, "identifier": "http://www.idref.fr/165425229", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/165425229", "source": "IDREF"}], "variant_name": ["University of Tokyo. Earthquake research institute"], "preferred_name": "Earthquake research institute (Tokyo)", "country_associated": "ja", "variant_access_point": ["University of Tokyo. Earthquake research institute"], "date_of_establishment": "1925", "authorized_access_point": "Earthquake research institute (Tokyo)"} 1 -2023-07-08 08:21:20.136014 2023-07-08 08:21:20.136019 0dc09895-9646-4790-8feb-2275ef36e09d {"md5": "6b19e8872a6cae72ef1df84c5b5dfe29", "pid": "165647876", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": false, "identifier": "http://www.idref.fr/165647876", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/165647876", "source": "IDREF"}], "preferred_name": "Dombibliothek St. Nikolai (Greifswald, Allemagne)", "country_associated": "gw", "authorized_access_point": "Dombibliothek St. Nikolai (Greifswald, Allemagne)"} 1 -2023-07-08 08:21:20.222281 2023-07-08 08:21:20.222288 edd1e6d3-d72d-4cc6-a299-d17f653ba00d {"md5": "2a5641a9ec0df5f8381e64d8e09e5aec", "pid": "165825324", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifier": "http://www.idref.fr/165825324", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/165825324", "source": "IDREF"}], "variant_name": ["New power"], "preferred_name": "Zona marginal", "country_associated": "xxu", "variant_access_point": ["New power"], "date_of_establishment": "1995", "authorized_access_point": "Zona marginal", "biographical_information": ["Groupe vocal et instrumental latino"]} 1 -2023-07-08 08:21:20.314925 2023-07-08 08:21:20.314934 9ac7edeb-0bff-454b-af74-7d5fdc5bbe48 {"md5": "557a9d28d48478e86a17c053276f2b12", "pid": "165842822", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/165842822", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/165842822", "source": "IDREF"}], "preferred_name": "Steen, Walter", "country_associated": "gw", "authorized_access_point": "Steen, Walter", "biographical_information": ["Traduit du russe en allemand"]} 1 -2023-07-08 08:21:20.400549 2023-07-08 08:21:20.400554 215bcc15-800f-4eab-a383-91b126bfdd22 {"md5": "61accf04045eea239dea08793ac06c28", "pid": "165846771", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/165846771", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/165846771", "source": "IDREF"}], "variant_name": ["CERCEC", "Ecole des hautes études en sciences sociales (Paris). Centre d'études des mondes russe, caucasien et centre-européen"], "preferred_name": "Centre d'études des mondes russe, caucasien et centre-européen (Paris)", "country_associated": "fr", "variant_access_point": ["CERCEC", "Ecole des hautes études en sciences sociales (Paris). Centre d'études des mondes russe, caucasien et centre-européen"], "date_of_establishment": "2005", "parallel_access_point": ["Центр исследований России, Кавказа и Центральной Европы", "Centr issledovanij Rossii, Kavkaza i Centralʹnoj Evropy"], "authorized_access_point": "Centre d'études des mondes russe, caucasien et centre-européen (Paris)"} 1 -2023-07-08 08:21:20.493201 2023-07-08 08:21:20.493209 9521c0ab-1269-458c-8c12-62ccacc18c3f {"md5": "175a407379d5cb4d17cb997a98e4ac92", "pid": "166452912", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/166452912", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/166452912", "source": "IDREF"}], "variant_name": ["AFRELOCE", "Association française de recherches sur les livres et objets culturels de l'enfance"], "preferred_name": "Association française de recherche sur les livres et objets culturels de l'enfance", "country_associated": "fr", "variant_access_point": ["AFRELOCE", "Association française de recherches sur les livres et objets culturels de l'enfance"], "authorized_access_point": "Association française de recherche sur les livres et objets culturels de l'enfance", "biographical_information": ["Adresse : Université Paris 13, UFR LSHS ; 99 avenue J.B. Clément, 93140 Villetaneuse"]} 1 -2023-07-08 08:21:20.664385 2023-07-08 08:21:20.66439 da3d727b-0522-4bfd-a61b-63eb2cda6b6f {"md5": "c71ea739dc26effd1ecdaa31c276288f", "pid": "16647729X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/16647729X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/16647729X", "source": "IDREF"}], "variant_name": ["Fondation pour l'enfance. SOS enfants disparus", "Institut national d'aide aux victimes et de médiation (France). SOS enfants disparus"], "preferred_name": "SOS enfants disparus (France)", "country_associated": "fr", "variant_access_point": ["Fondation pour l'enfance. SOS enfants disparus", "Institut national d'aide aux victimes et de médiation (France). SOS enfants disparus"], "date_of_establishment": "2004-10", "authorized_access_point": "SOS enfants disparus (France)", "biographical_information": ["La Fondation pour l’enfance et l’Institut national d’aide aux victimes ont été mises en commun pour créer le dispositif SOS enfants disparus. - Service gratuit d’accompagnement des familles ayant un enfant disparu"]} 1 -2023-07-08 08:21:20.746421 2023-07-08 08:21:20.746425 d19e3f88-6f7f-438b-a163-0d4cddb2b298 {"md5": "26bdce9363168fd70f33372c92396dd0", "pid": "166533971", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "conference": false, "identifier": "http://www.idref.fr/166533971", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/166533971", "source": "IDREF"}], "variant_name": ["智山勧学会", "Chisan Kangakkai"], "preferred_name": "Chisan Kangakukai", "country_associated": "ja", "variant_access_point": ["Chisan Kangakkai"], "authorized_access_point": "Chisan Kangakukai", "biographical_information": ["Transcription Hepburn modifié"]} 1 -2023-07-08 08:21:20.830361 2023-07-08 08:21:20.830366 c56000a3-046c-4896-8762-bc92b6948499 {"md5": "f9ea5ccc466969a03bbf264afa4f1817", "pid": "166601551", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/166601551", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/166601551", "source": "IDREF"}], "date_of_birth": "15", "date_of_death": "1607", "preferred_name": "Cortesi, Cortese", "country_associated": "it", "authorized_access_point": "Cortesi, Cortese, 15..?-1617"} 1 -2023-07-08 08:21:20.922561 2023-07-08 08:21:20.92257 9f941c9c-c9e1-4e9a-8946-1205b008000d {"md5": "535bc66777b311e7636aadd0a4299729", "pid": "166827886", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifier": "http://www.idref.fr/166827886", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/166827886", "source": "IDREF"}], "variant_name": ["Grand orchestre Odéon (Paris)"], "preferred_name": "Orchestre Odéon (Paris)", "country_associated": "fr", "variant_access_point": ["Grand orchestre Odéon (Paris)"], "authorized_access_point": "Orchestre Odéon (Paris)"} 1 -2023-07-08 08:21:21.117318 2023-07-08 08:21:21.117325 b1fcf23d-08bf-449d-bba7-d26c5eab30ed {"md5": "0f4eb0ab13d4baf2557f71687be1b7a2", "pid": "167149369", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": false, "identifier": "http://www.idref.fr/167149369", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/167149369", "source": "IDREF"}], "preferred_name": "Centro Cultural Arte Contemporaneo (México)", "country_associated": "mx", "date_of_establishment": "1986", "authorized_access_point": "Centro Cultural Arte Contemporaneo (México)"} 1 -2023-07-08 08:21:21.33114 2023-07-08 08:21:21.331151 4106550a-12ce-435d-8b2d-f9151702e1b2 {"md5": "f3eaa4ae736d8664372d7b43ce28575c", "pid": "16734613X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifier": "http://www.idref.fr/16734613X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/16734613X", "source": "IDREF"}], "preferred_name": "Conference on book trade history", "country_associated": "xxk", "date_of_termination": "1990", "date_of_establishment": "1990", "authorized_access_point": "Conference on book trade history (12 ; 1990 ; Londres)"} 1 -2023-07-08 08:21:21.523716 2023-07-08 08:21:21.52372 30b2327f-109a-4828-a47e-a64f2c8b0afa {"md5": "038aeb478300d44edf1ad7cc847936b7", "pid": "16746499X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/16746499X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/16746499X", "source": "IDREF"}], "date_of_birth": "1981", "preferred_name": "Kömürcü, Cem", "country_associated": "xx", "authorized_access_point": "Kömürcü, Cem, 1981-...."} 1 -2023-07-08 08:21:21.433271 2023-07-08 10:25:35.270538 986b4e2b-2cb6-4860-8c77-119f1157ba7b {"md5": "32d7f5c4f6de48d28f334851eadc0b67", "pid": "16737740X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["hin"], "identifier": "http://www.idref.fr/16737740X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/16737740X", "source": "IDREF"}], "preferred_name": "Prapanna, Vandana", "country_associated": "ii", "authorized_access_point": "Prapanna, Vandana", "biographical_information": ["Historienne de l'art (en 2002)"]} 2 -2023-07-08 08:21:20.568862 2023-07-08 10:29:28.819054 c77b267a-61d7-40c0-92fb-7ba1d6ac3f7d {"md5": "1894e2d5feafab1a663341a5dd769630", "pid": "166452955", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/166452955", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/166452955", "source": "IDREF"}], "preferred_name": "Witte, Siegfried", "country_associated": "gw", "authorized_access_point": "Witte, Siegfried", "biographical_information": ["Auteur d'un ouvrage sur la greffe de moëlle osseuse"]} 2 -2023-07-08 08:21:21.685223 2023-07-08 08:21:21.685228 bcd48ce8-fce8-48c8-b743-948e19392ec6 {"md5": "ea51628d040791bba19fe85fdcc81511", "pid": "167597213", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut"], "identifier": "http://www.idref.fr/167597213", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/167597213", "source": "IDREF"}], "variant_name": ["Blom, Paul"], "preferred_name": "Blom, Paul W.", "country_associated": "ne", "variant_access_point": ["Blom, Paul"], "authorized_access_point": "Blom, Paul W.", "biographical_information": ["Spécialiste de l'histoire du théâtre et du cabaret aux Pays-Bas ; dirige le Nederlands Theater Instituut Amsterdam"]} 1 -2023-07-08 08:21:21.887871 2023-07-08 08:21:21.887876 9c49afe4-ac01-4461-9aea-5bdce98abd85 {"md5": "6915c2f50fec0f92fca1659827ed175d", "pid": "167900587", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/167900587", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/167900587", "source": "IDREF"}], "preferred_name": "Marquis, Jean-François", "authorized_access_point": "Marquis, Jean-François"} 1 -2023-07-08 08:21:22.061101 2023-07-08 08:21:22.061106 82b4ee9c-9e16-4fac-8a19-8858a9e98fda {"md5": "f0fe2c952f00541da66f5f3df6c0706f", "pid": "167994689", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifier": "http://www.idref.fr/167994689", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/167994689", "source": "IDREF"}], "variant_name": ["HSO", "Helsingborg symphony orchestra", "Orchestre symphonique d'Helsingborg"], "preferred_name": "Helsingborgs Symfoniorkester", "country_associated": "dk", "variant_access_point": ["HSO", "Helsingborg symphony orchestra", "Orchestre symphonique d'Helsingborg"], "date_of_establishment": "1912", "authorized_access_point": "Helsingborgs Symfoniorkester", "biographical_information": ["Adresse : Konserthuse, Drottninggatan 19, SE-252 21 Helsingborg. Contact : 042.10.42.70. Télécopie : 042.12.31.97. Adresse électronique : mona.wikstrom@helsingborg.se", "Lidner, Olof, chef d'orchestre (1912-1939). Frykberg, Sten, chef d'orchestre (1939-1945). Eichwald, Hokan von, chef d'orchestre (1945-1959). Axelson, Sten-Åke, chef d'orchestre (1962-1967). Frandsen, John, chef d'orchestre (1969-1980). Frank, Hans-Peter, chef d'orchestre (1980-1990). Kamu, Okko, chef d'orchestre (1991-1999). Lintu, Hannu, chef d'orchestre (1999-2005). Manze, Andrew, chef d'orchestre (2006-....)"]} 1 -2023-07-08 08:21:22.14952 2023-07-08 08:21:22.149525 91d09bd9-2d5f-4025-aa9e-780472266a6e {"md5": "d79c4ab52a7a1c4ecc5f5639457e9ceb", "pid": "168060973", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["cze"], "identifier": "http://www.idref.fr/168060973", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/168060973", "source": "IDREF"}], "date_of_birth": "1980", "preferred_name": "Lhoťan, Lukáš", "authorized_access_point": "Lhoťan, Lukáš, 1980-..."} 1 -2023-07-08 08:21:22.227225 2023-07-08 08:21:22.227233 169fb950-f797-44bd-9d02-81b91596fa25 {"md5": "2945001831152fe8050765d2f4452473", "pid": "168391996", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/168391996", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/168391996", "source": "IDREF"}], "date_of_birth": "1977", "preferred_name": "Scifo, Marco Maria Giuseppe", "country_associated": "it", "authorized_access_point": "Scifo, Marco Maria Giuseppe, 1977-....", "biographical_information": ["Artiste né à Augusta, Italie"]} 1 -2023-07-08 08:21:22.316643 2023-07-08 08:21:22.316648 4e17f6dd-3104-4378-8112-c89b6b381fd8 {"md5": "8e47296d0f60e9a97dfedf22bda1033e", "pid": "168510332", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut"], "conference": false, "identifier": "http://www.idref.fr/168510332", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/168510332", "source": "IDREF"}], "variant_name": ["Technische Hogeschool te Enschede", "Twente Institute of Technology", "Technical University of Twente", "Twente University of Technology"], "preferred_name": "Technische Hogeschool Twente (Enschede)", "country_associated": "ne", "variant_access_point": ["Technische Hogeschool te Enschede", "Twente Institute of Technology", "Technical University of Twente", "Twente University of Technology"], "authorized_access_point": "Technische Hogeschool Twente (Enschede)"} 1 -2023-07-08 08:21:27.162195 2023-07-08 08:21:27.162204 b77452c7-6b2b-472a-9f5e-3f4b1f87a7aa {"md5": "2b1ccf0f6282b3daadd54ccf2e661ec6", "pid": "17719166X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/17719166X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/17719166X", "source": "IDREF"}], "date_of_birth": "1935", "date_of_death": "1957", "preferred_name": "Goldner, Orville", "country_associated": "xxu", "authorized_access_point": "Goldner, Orville, 1935-1957"} 1 -2023-07-08 08:21:21.792552 2023-07-08 10:25:01.147233 c2a54f4a-3c9b-4ba1-82ec-0315e6eeb29b {"md5": "bad48bfe7e100cb488454460153b050a", "pid": "167843052", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["pol"], "identifier": "http://www.idref.fr/167843052", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/167843052", "source": "IDREF"}], "preferred_name": "Zbierski, Andrzej", "country_associated": "pl", "authorized_access_point": "Zbierski, Andrzej"} 2 -2023-07-08 08:21:21.975081 2023-07-08 10:27:15.126579 2570a5ec-1ef2-4e3e-9a4b-26a7a85aea64 {"md5": "10cc53c85efb65f9cd191565e3abec28", "pid": "167901842", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/167901842", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/167901842", "source": "IDREF"}], "date_of_birth": "1975", "preferred_name": "Jarvis, Mark D.", "country_associated": "xxc", "authorized_access_point": "Jarvis, Mark D., 1975-...."} 2 -2023-07-08 08:21:22.513997 2023-07-08 10:28:44.579389 ceb4c703-119d-40aa-be0d-2508312ef001 {"md5": "432191c5bf05652d2775a2531df38d5f", "pid": "168647567", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/168647567", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/168647567", "source": "IDREF"}], "preferred_name": "Gallahue, David L.", "country_associated": "xxu", "authorized_access_point": "Gallahue, David L."} 2 -2023-07-08 08:21:22.586693 2023-07-08 08:21:22.586695 152f2d2c-960a-4fa7-b7bd-543021b86530 {"md5": "be190daae2ea54369f4f81802d4eb0d8", "pid": "168676761", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": false, "identifier": "http://www.idref.fr/168676761", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/168676761", "source": "IDREF"}], "variant_name": ["Chanoinesses régulières de l'ordre du Saint-Sépulcre de Jérusalem", "Chanoinesses régulières du Saint-Sépulchre de Jérusalem", "Chanoinesses régulières du Saint-Sépulcre de Notre-Seigneur en Jérusalem", "Ordre du Saint-Sépulcre de Jérusalem. Chanoinesses régulières", "Sépulcrines"], "preferred_name": "Chanoinesses régulières du Saint-Sépulcre de Jérusalem", "date_of_termination": "11XX", "variant_access_point": ["Chanoinesses régulières de l'ordre du Saint-Sépulcre de Jérusalem", "Chanoinesses régulières du Saint-Sépulchre de Jérusalem", "Chanoinesses régulières du Saint-Sépulcre de Notre-Seigneur en Jérusalem", "Ordre du Saint-Sépulcre de Jérusalem. Chanoinesses régulières", "Sépulcrines"], "date_of_establishment": "11XX", "authorized_access_point": "Chanoinesses régulières du Saint-Sépulcre de Jérusalem", "biographical_information": ["L'ordre du Saint-Sépulcre fut fondé vers 1099 par Godefroy de Bouillon pour l'aide aux pèlerins en Terre Sainte et la protection du Saint Sépulcre. Au XIIIe siècle, près de 2000 maisons de l'ordre étaient déjà ouvertes en Europe, et parmis elles, le chapitre de Mont-Saint-Odile-les-Ruremonde, en Hollande, qui avait créé le monastère des chanoinesses de Kinroi, origine de toutes les communautés de Sépulcrines. Elles restèrent sous l'autorité du grand-maître de l'ordre. En 1999, 416 moniales étaient réparties dans 29 maisons"]} 1 -2023-07-08 08:21:22.670828 2023-07-08 08:21:22.670834 b66f376d-49da-4e03-a56e-8ea0beb70fe6 {"md5": "dc0c286586f08d9db4e4a81e5a83db49", "pid": "168926962", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/168926962", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/168926962", "source": "IDREF"}], "preferred_name": "Combray, Richard de", "country_associated": "fr", "authorized_access_point": "Combray, Richard de", "biographical_information": ["Photographe"]} 1 -2023-07-08 08:21:22.858828 2023-07-08 08:21:22.858836 d7601a1b-963d-469e-94b4-a00bed3e8c5a {"md5": "63e0774df0477ce0c2d7e31666b9cf8f", "pid": "169159914", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/169159914", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/169159914", "source": "IDREF"}], "preferred_name": "Metrick-Chen, Lenore", "country_associated": "xxu", "authorized_access_point": "Metrick-Chen, Lenore", "biographical_information": ["Professeur adjoint en histoire d'art à Drake University, Des Moines, Iowa, USA (2012)"]} 1 -2023-07-08 08:21:22.961348 2023-07-08 08:21:22.961357 0edf225c-fabc-4405-87d6-dfba0c7e1e85 {"md5": "41ca98118314832db17376908dd5093b", "pid": "169352501", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["chi"], "conference": false, "identifier": "http://www.idref.fr/169352501", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/169352501", "source": "IDREF"}], "variant_name": ["Faculty of architecture"], "preferred_name": "University of Hong Kong. Faculty of architecture", "variant_access_point": ["Faculty of architecture"], "authorized_access_point": "University of Hong Kong. Faculty of architecture"} 1 -2023-07-08 08:21:23.048483 2023-07-08 08:21:23.048487 2e5118cd-f6b5-4091-899f-32606ff1826d {"md5": "1f9e50338d5104e6099d70fe1f287857", "pid": "169383695", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/169383695", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/169383695", "source": "IDREF"}], "preferred_name": "Modern critical theory group (GB)", "country_associated": "xxk", "authorized_access_point": "Modern critical theory group (GB)", "biographical_information": ["Adresse : Cambridge"]} 1 -2023-07-08 08:21:23.290517 2023-07-08 08:21:23.290538 09a0581a-faa8-44ae-a90e-9787b181b2a6 {"md5": "d177464fd654f19fe86feed657d21e8e", "pid": "169852253", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/169852253", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/169852253", "source": "IDREF"}], "preferred_name": "Kale, Vivek", "country_associated": "xx", "authorized_access_point": "Kale, Vivek"} 1 -2023-07-08 08:21:23.381042 2023-07-08 08:21:23.381047 273d3d41-0e1c-4d47-8c2a-048d06d5b7f4 {"md5": "3f6d4abb9958880da168f9a7712d1c99", "pid": "169905187", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/169905187", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/169905187", "source": "IDREF"}], "preferred_name": "Kalb, Luigi", "country_associated": "it", "authorized_access_point": "Kalb, Luigi", "biographical_information": ["Juriste"]} 1 -2023-07-08 08:21:23.471622 2023-07-08 08:21:23.471628 ce6f6509-701e-44a6-b422-3d7f8250274d {"md5": "04ca3876d4f4820bc4256e8f98ec8fc3", "pid": "17000404X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/17000404X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/17000404X", "source": "IDREF"}], "preferred_name": "Burakowska, Barbara", "country_associated": "fr", "authorized_access_point": "Burakowska, Barbara"} 1 -2023-07-08 08:21:23.196392 2023-07-08 10:25:55.086576 180044d0-03ac-4ef2-a3dc-3f002ca05546 {"md5": "24e7d631e1965c6de8efa51a4237f9bf", "pid": "169818098", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/169818098", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/169818098", "source": "IDREF"}], "preferred_name": "McCarthy, Rebecca Lea", "authorized_access_point": "McCarthy, Rebecca Lea"} 2 -2023-07-08 08:21:23.558295 2023-07-08 08:21:23.558304 defa5cfe-256c-4df1-b584-8c0940e90e77 {"md5": "0c67c54c3f49b5c5f6d1c805606a5330", "pid": "170042650", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/170042650", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/170042650", "source": "IDREF"}], "variant_name": ["Codrington, O."], "date_of_death": "1921", "preferred_name": "Codrington, Oliver", "country_associated": "xx", "variant_access_point": ["Codrington, O."], "authorized_access_point": "Codrington, Oliver, ....-1921"} 1 -2023-07-08 08:21:23.751787 2023-07-08 08:21:23.751796 51fa7c49-7b7e-4b8a-93e6-4d858d7880c2 {"md5": "4080b54895d1d5152b13588d34b53609", "pid": "170276708", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifier": "http://www.idref.fr/170276708", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/170276708", "source": "IDREF"}], "variant_name": ["Степанченко, Иван Иванович", "Stepancenko, Ivan Ivanovic", "Stepanchenko, Ivan Ivanovich"], "preferred_name": "Stepančenko, Ivan Ivanovič", "country_associated": "ru", "variant_access_point": ["Stepancenko, Ivan Ivanovic", "Stepanchenko, Ivan Ivanovich"], "authorized_access_point": "Stepančenko, Ivan Ivanovič"} 1 -2023-07-08 08:21:23.848719 2023-07-08 08:21:23.848724 684636a6-4587-4198-a91b-5677552292de {"md5": "c38791aff9680039b92bf28eec8daece", "pid": "170444368", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/170444368", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/170444368", "source": "IDREF"}], "variant_name": ["EBA (Lyon)", "ENSBA (Lyon)", "ENSB-A (Lyon)", "École des beaux-arts (Lyon)", "École nationale et spéciale des beaux-arts (Lyon)"], "preferred_name": "École nationale supérieure des beaux-arts (Lyon)", "country_associated": "fr", "variant_access_point": ["EBA (Lyon)", "ENSBA (Lyon)", "ENSB-A (Lyon)", "École des beaux-arts (Lyon)", "École nationale et spéciale des beaux-arts (Lyon)"], "date_of_establishment": "1756", "authorized_access_point": "École nationale supérieure des beaux-arts (Lyon)"} 1 -2023-07-08 08:21:24.028303 2023-07-08 08:21:24.028307 a12ba674-2414-4efb-8e31-dda8f92f5135 {"md5": "71a8582bafe70eb764b50da2120c27e4", "pid": "170479862", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": false, "identifier": "http://www.idref.fr/170479862", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/170479862", "source": "IDREF"}], "preferred_name": "Hotel de Mar (Majorque)", "country_associated": "sp", "authorized_access_point": "Hotel de Mar (Majorque)", "biographical_information": ["Construit par José Antonio Coderch de Sentmenat"]} 1 -2023-07-08 08:21:24.10091 2023-07-08 08:21:24.100917 5bb12c08-9a08-4150-9581-a84e8be06f77 {"md5": "f5ae2ca45c217528d37a4f7b6589abf3", "pid": "170696413", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/170696413", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/170696413", "source": "IDREF"}], "variant_name": ["De Oviedo, Gabriel"], "date_of_birth": "15", "date_of_death": "15?", "preferred_name": "Oviedo, Gabriel de", "country_associated": "pe", "variant_access_point": ["De Oviedo, Gabriel"], "authorized_access_point": "Oviedo, Gabriel de, 15..-15..?", "biographical_information": ["Prieur au couvent de Santo Domingo, Cuzco, Pérou (en 1573)"]} 1 -2023-07-08 08:21:24.196229 2023-07-08 08:21:24.196237 4f8520a8-8f37-45c0-a2d6-66fc6afaf6e6 {"md5": "d4170b4d52e70e2327fb65c408027d96", "pid": "170792188", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/170792188", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/170792188", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Cuaz, Bruno", "country_associated": "fr", "authorized_access_point": "Cuaz, Bruno, 19..-....", "biographical_information": ["Journaliste sportif (chaîne Eurosport et \\"Tennis Magazine\\")"]} 1 -2023-07-08 08:21:24.280427 2023-07-08 08:21:24.280435 231e2471-9afe-4039-8067-6c76a267d4a9 {"md5": "6d8c60c381908dba10605dc8234c7c70", "pid": "170798828", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "qualifier": "baron Oriel", "identifier": "http://www.idref.fr/170798828", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/170798828", "source": "IDREF"}], "variant_name": ["Oriel, John Foster, baron"], "date_of_birth": "1740", "date_of_death": "1828-08-23", "preferred_name": "Foster, John, baron Oriel", "variant_access_point": ["Oriel, John Foster, baron"], "authorized_access_point": "Foster, John, 1740-1828, baron Oriel", "biographical_information": ["Noble, homme politique"]} 1 -2023-07-08 08:21:24.361437 2023-07-08 08:21:24.361441 3d81ed2a-3cbb-4eee-92ec-c1864e7a66db {"md5": "8960a52ab7b7048843ba4e55fcee4ca9", "pid": "170804291", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/170804291", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/170804291", "source": "IDREF"}], "preferred_name": "Apicella, Vincenzo", "country_associated": "it", "authorized_access_point": "Apicella, Vincenzo", "biographical_information": ["En poste au Ministero Partecipazioni Stafali, Rome"]} 1 -2023-07-08 08:21:27.244932 2023-07-08 08:21:27.244944 fc705fe3-7265-4e44-a87f-9673a2e93049 {"md5": "86d019869feef5098c61250243c7e950", "pid": "177498056", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/177498056", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/177498056", "source": "IDREF"}], "preferred_name": "Fitzgerald, Brian F.", "authorized_access_point": "Fitzgerald, Brian F."} 1 -2023-07-08 08:21:23.937339 2023-07-08 10:25:56.361801 cc9189ea-d25b-4720-a6f1-d5c480f8df4a {"md5": "8d8caaccbe1fe3e3d42b12d3312f1c6d", "pid": "170457257", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/170457257", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/170457257", "source": "IDREF"}], "preferred_name": "Stras, Laurie", "country_associated": "xxk", "authorized_access_point": "Stras, Laurie", "biographical_information": ["Auteur d'un ouvrage sur la musique populaire américaine et enseignante à l'Université de Southampton (2012)"]} 2 -2023-07-08 08:21:24.432061 2023-07-08 08:21:24.432066 251912ee-51b5-4b3b-90e0-4f4ca58517a7 {"md5": "6e43c18d4a11382a57531adc7b06caaf", "pid": "171073444", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifier": "http://www.idref.fr/171073444", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/171073444", "source": "IDREF"}], "variant_name": ["Università di Padova. Dipartimento di archeologia", "Università di Padova. Dipartimento di storia dell'arte", "Università di Padova. Dipartimento del cinema e della musica", "Università degli studi di Padova. Dipartimento di archeologia", "Università degli studi di Padova. Dipartimento di storia dell'arte", "Università degli studi di Padova. Dipartimento del cinema e della musica"], "preferred_name": "Università degli studi (Padoue, Italie). Dipartimento dei beni culturali", "country_associated": "it", "variant_access_point": ["Università di Padova. Dipartimento di archeologia", "Università di Padova. Dipartimento di storia dell'arte", "Università di Padova. Dipartimento del cinema e della musica", "Università degli studi di Padova. Dipartimento di archeologia", "Università degli studi di Padova. Dipartimento di storia dell'arte", "Università degli studi di Padova. Dipartimento del cinema e della musica"], "authorized_access_point": "Università degli studi (Padoue, Italie). Dipartimento dei beni culturali"} 1 -2023-07-08 08:21:24.519385 2023-07-08 08:21:24.51939 647e7a11-f6d3-43d9-ac04-ed227b2340ba {"md5": "4d8199164666ad15b639a13f3e4e1e22", "pid": "171330943", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/171330943", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/171330943", "source": "IDREF"}], "preferred_name": "Kozłowski, Ryszard M.", "country_associated": "pl", "authorized_access_point": "Kozłowski, Ryszard M.", "biographical_information": ["Spécialiste des fibres naturelles"]} 1 -2023-07-08 08:21:24.60339 2023-07-08 08:21:24.603398 33610236-ef00-4a48-ab27-4d6493aca954 {"md5": "24f10a845e6836005a7a4c89d3b090da", "pid": "17141599X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/17141599X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/17141599X", "source": "IDREF"}], "variant_name": ["Wolfe, James P.", "Wolfe, J. P."], "date_of_birth": "1943", "preferred_name": "Wolfe, James Philip", "variant_access_point": ["Wolfe, James P.", "Wolfe, J. P."], "authorized_access_point": "Wolfe, James Philip, 1943-...."} 1 -2023-07-08 08:21:24.697816 2023-07-08 08:21:24.69782 2b102691-8598-48a6-af03-61f12f056e56 {"md5": "a34580c57bd46a9f89a0c3aad5a9ac5a", "pid": "171790944", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/171790944", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/171790944", "source": "IDREF"}], "date_of_birth": "1975", "preferred_name": "Alemazung, Joy Asongazoh", "authorized_access_point": "Alemazung, Joy Asongazoh, 1975-....", "biographical_information": ["A senior analyst in the Peace and Security section of the Global Governance Institute in Brussels, focusing on state transformation and good governance in Sub-Saharan Africa. He holds a double MA in Political Science and Sociology from the University of Erlangen-Nuremberg and PhD in Political Science from the University of Kiel."]} 1 -2023-07-08 08:21:24.785545 2023-07-08 08:21:24.785552 0fad8452-5d50-42ee-a188-cf1623cdd09d {"md5": "3f29c006fe5dd7508eecb36a44972e3e", "pid": "171811534", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/171811534", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/171811534", "source": "IDREF"}], "date_of_birth": "1936", "preferred_name": "Ridington, Jillian", "country_associated": "xxc", "authorized_access_point": "Ridington, Jillian, 1936-...."} 1 -2023-07-08 08:21:24.873748 2023-07-08 08:21:24.873759 e692c59e-b032-4f00-b95d-3942612d9d17 {"md5": "2b0700e555e62081af72b30169c4fd77", "pid": "172309239", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/172309239", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/172309239", "source": "IDREF"}], "variant_name": ["Arizcuren Escuhra, Elias"], "date_of_birth": "19XX", "preferred_name": "Arizcuren, Elias", "country_associated": "sp", "variant_access_point": ["Arizcuren Escuhra, Elias"], "authorized_access_point": "Arizcuren, Elias, 19..-....", "biographical_information": ["Violoncelliste et chef d'orchestre. Membre et fondateur du Cello octet conjunto Ibérico et du trio Mendelssohn"]} 1 -2023-07-08 08:21:24.952761 2023-07-08 08:21:24.952764 8706cfd1-7333-4655-94b7-2510cc413665 {"md5": "3bf4d539706f44d94584d4bbe8283140", "pid": "172595347", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ukr"], "identifier": "http://www.idref.fr/172595347", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/172595347", "source": "IDREF"}], "variant_name": ["Кочан, Ирина Миколаївна", "Кочан, И. М.", "Kočan, I. M."], "date_of_birth": "1949", "preferred_name": "Kočan, Irina Mikolaїvna", "country_associated": "un", "variant_access_point": ["Кочан, И. М.", "Kočan, I. M."], "authorized_access_point": "Kočan, Irina Mikolaїvna, 1949-....", "biographical_information": ["Linguiste"]} 1 -2023-07-08 08:21:25.030896 2023-07-08 08:21:25.030901 027ef4be-ff1e-4f90-877e-7381d7de2a90 {"md5": "568bb292542915cb460d5c08a72c3985", "pid": "172735319", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/172735319", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/172735319", "source": "IDREF"}], "preferred_name": "Kogler, Dieter F.", "country_associated": "ie", "authorized_access_point": "Kogler, Dieter F.", "biographical_information": ["\\"School of Geography, Planning & Environmental Policy, University College Dublin\\", Irlande"]} 1 -2023-07-08 08:21:25.104282 2023-07-08 08:21:25.104289 3ad35c8a-bc52-47db-ba7a-0b7ce50480c9 {"md5": "c60348d0287e9c0428d6bf3fbea48596", "pid": "174120745", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/174120745", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/174120745", "source": "IDREF"}], "preferred_name": "Sigl, Eduard", "country_associated": "gw", "authorized_access_point": "Sigl, Eduard"} 1 -2023-07-08 08:21:25.309117 2023-07-08 08:21:25.30912 db9a516d-b30c-47ab-9021-50f760867f4e {"md5": "403c92851ca148c77b45b68b4f4ef888", "pid": "174180039", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "qualifier": "médecin", "identifier": "http://www.idref.fr/174180039", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/174180039", "source": "IDREF"}], "variant_name": ["Peter, K."], "date_of_birth": "1938", "preferred_name": "Peter, Klaus, médecin", "country_associated": "gw", "variant_access_point": ["Peter, K."], "authorized_access_point": "Peter, Klaus, 1938-, médecin", "biographical_information": ["Médecin anesthésiste, professeur au \\" Ludwig-Maximilians-Universität, Institut für Anaesthesiologie\\" à Munich"]} 1 -2023-07-08 08:21:25.682192 2023-07-08 08:21:25.682197 dd7e85d8-f76b-4084-b296-6e2ebc727057 {"md5": "78b6f5f34160ea682e40459e84f29e73", "pid": "174757131", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/174757131", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/174757131", "source": "IDREF"}], "preferred_name": "Rathburn, Arthur", "country_associated": "fr", "authorized_access_point": "Rathburn, Arthur"} 1 -2023-07-08 08:21:25.78361 2023-07-08 08:21:25.783615 75927f66-8cd6-4c1b-9b68-1d061c95ea37 {"md5": "d4896a0fc791bfc294a1bd33bf105d25", "pid": "175070180", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/175070180", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/175070180", "source": "IDREF"}], "date_of_birth": "18..", "preferred_name": "Quijada B., Bernardino", "country_associated": "cl", "authorized_access_point": "Quijada B., Bernardino, 18..-...."} 1 -2023-07-08 08:21:25.867328 2023-07-08 08:21:25.867334 77849ef5-9858-4c42-b77b-91d8aa913770 {"md5": "f2a3654cd5568e408408e7052335525f", "pid": "175084661", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/175084661", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/175084661", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Diamond, Nicola", "country_associated": "xxk", "authorized_access_point": "Diamond, Nicola, 19..-...."} 1 -2023-07-08 08:21:25.945541 2023-07-08 08:21:25.945545 f4e0ffd0-306f-47c1-93fd-6ef430632293 {"md5": "66046258f101e3c80360e7138a8fa0f2", "pid": "175177880", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifier": "http://www.idref.fr/175177880", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/175177880", "source": "IDREF"}], "variant_name": ["Елкин, Анатолий Сергеевич", "Elkin, Anatolij Sergeevic", "Elkin, Anatoliï Sergeevich"], "date_of_birth": "1929", "preferred_name": "Elkin, Anatolij Sergeevič", "country_associated": "ru", "variant_access_point": ["Elkin, Anatolij Sergeevic", "Elkin, Anatoliï Sergeevich"], "authorized_access_point": "Elkin, Anatolij Sergeevič, 1929-...."} 1 -2023-07-08 08:21:26.134596 2023-07-08 08:21:26.134602 1e0c60b5-eea3-49ef-bf53-622d5ca90b80 {"md5": "5742f43e8c0be067ff19df2957cb4abb", "pid": "175664528", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/175664528", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/175664528", "source": "IDREF"}], "date_of_birth": "1958", "preferred_name": "Kanemitsu, Yoshihiko", "country_associated": "ja", "authorized_access_point": "Kanemitsu, Yoshihiko, 1958-", "biographical_information": ["professeur au Research Center for Elements Science"]} 1 -2023-07-08 08:21:27.34623 2023-07-08 08:21:27.346235 d449ac00-2593-4394-83cc-873f42c4498f {"md5": "b459e9c4839b237e9af0ed40e4270f5f", "pid": "177564229", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/177564229", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/177564229", "source": "IDREF"}], "variant_name": ["Parker, C. Stratton"], "date_of_birth": "1885-09-01", "date_of_death": "1972-02", "preferred_name": "Parker Stratton, Cornelia", "country_associated": "xxu", "variant_access_point": ["Parker, C. Stratton"], "authorized_access_point": "Parker Stratton, Cornelia, 1885-1972", "biographical_information": ["Ecrivain"]} 1 -2023-07-08 08:21:25.38571 2023-07-08 10:26:14.086657 25192e37-7828-40cb-8d07-90a87699d4aa {"md5": "6cb3ed4de2e1518e4a9a6956f520220e", "pid": "174469470", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/174469470", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/174469470", "source": "IDREF"}], "date_of_birth": "1924-01-18", "preferred_name": "Gordon, William J.", "country_associated": "xxc", "authorized_access_point": "Gordon, William J., 1924-....", "biographical_information": ["Chef d'orchestre de la Fanfare nationale des Forces Armées Canadiennes"]} 2 -2023-07-08 08:21:25.590097 2023-07-08 10:29:06.220286 5cfd4f57-84ca-4815-bf0e-32c1c4a44f73 {"md5": "924323eeeb4bf1e72a892f23a212c7b8", "pid": "174595174", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/174595174", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/174595174", "source": "IDREF"}], "preferred_name": "Woolson, Robert F.", "country_associated": "xxu", "authorized_access_point": "Woolson, Robert F.", "biographical_information": ["2002 : The university of Iowa, Iowa City, Iowa"]} 2 -2023-07-08 08:21:26.225177 2023-07-08 08:21:26.225181 0b178208-f48c-4e52-aaf3-1b245c0314e6 {"md5": "3ef909ff5c5baa0582feb81829070f39", "pid": "175917434", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "identifier": "http://www.idref.fr/175917434", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/175917434", "source": "IDREF"}], "variant_name": ["Conceição e Silva, Domingos da", "Silva, Domingos da Conceição e"], "date_of_birth": "1643", "date_of_death": "1718", "preferred_name": "Conceição, Domingos da", "country_associated": "po", "variant_access_point": ["Conceição e Silva, Domingos da", "Silva, Domingos da Conceição e"], "authorized_access_point": "Conceição, Domingos da, ca 1643-1718", "biographical_information": ["Moine franciscain ; artiste plasticien, il fut aussi capellan de l'armée du marquis Das Minas durant la Guerra de sucesión et il faisait partie de l'armée portugaise en terres espagnoles entre 1706 et 1713 (période de rédaction de son Diario bellico) ; il meurt à Rio de Janeiro (Bresil)"]} 1 -2023-07-08 08:21:26.414076 2023-07-08 08:21:26.414084 dab06544-804f-4d9e-81d1-7218446d388c {"md5": "12b26a3b9683e7ad2ab086e71b265897", "pid": "176586350", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/176586350", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/176586350", "source": "IDREF"}], "date_of_birth": "1938", "date_of_death": "1916", "preferred_name": "Kaiser, Pieter Jan", "country_associated": "ne", "authorized_access_point": "Kaiser, Pieter Jan, 1838-1916"} 1 -2023-07-08 08:21:26.501076 2023-07-08 08:21:26.501083 1852f0ec-4da9-4de4-ab65-9e3f55818f92 {"md5": "b17b43e3841c9dd344b1d5789cf9ddd2", "pid": "176752781", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/176752781", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/176752781", "source": "IDREF"}], "variant_name": ["Sciortino, Kellie L.", "Sciortino, Kellie Filter"], "date_of_birth": "19XX", "preferred_name": "Sciortino, Kellie", "variant_access_point": ["Sciortino, Kellie L.", "Sciortino, Kellie Filter"], "authorized_access_point": "Sciortino, Kellie, 19..-...."} 1 -2023-07-08 08:21:26.724047 2023-07-08 08:21:26.724056 d00a5c31-ae78-4f34-afdd-9316dec6ee0c {"md5": "c23d1f73e781541179e1e0c4f94c5e31", "pid": "176834540", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifier": "http://www.idref.fr/176834540", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/176834540", "source": "IDREF"}], "variant_name": ["Symposium on Nonlinear Functional Analysis"], "preferred_name": "Symposium in pure mathematics of the American mathematical society", "country_associated": "xxu", "date_of_termination": "1968-04-19", "variant_access_point": ["Symposium on Nonlinear Functional Analysis"], "date_of_establishment": "1968-04-16", "authorized_access_point": "Symposium in pure mathematics of the American mathematical society (1968 ; Chicago, Ill.)"} 1 -2023-07-08 08:21:27.015814 2023-07-08 08:21:27.015819 4eee5669-f914-4ad4-9acc-658beee9f32a {"md5": "a733ceadcfe3f27bdece97617c69afc3", "pid": "17718101X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/17718101X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/17718101X", "source": "IDREF"}], "date_of_birth": "1969", "preferred_name": "Dupont-Belrhali, Karine", "country_associated": "fr", "authorized_access_point": "Dupont-Belrhali, Karine, 1969-...", "biographical_information": ["Karine Dupont-Belrhali est née à Grenoble en 1969. Aujourd’hui, elle vit entourée de montagnes, avec son mari et ses trois enfants, Nathan, François et Nina.Après de très sérieuses études de sciences politiques et d’économie, Karine a fait de la communication. Maintenant, elle écrit pour les plus petits, et aussi pour les plus grands, chez Milan et Bayard. Ce qu’elle préfère ? Les enquêtes à suspense et les énigmes mystérieuses… Enfin, elle aime aller dans des écoles pour imaginer des histoires avec les enfants."]} 1 -2023-07-08 08:21:27.084477 2023-07-08 08:21:27.084482 f4016283-a339-4ad8-b672-e132450f248d {"md5": "3e131d9d585616132192a73840b5ef15", "pid": "177181516", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/177181516", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/177181516", "source": "IDREF"}], "date_of_birth": "1810", "date_of_death": "1893", "preferred_name": "Arnoul, Honoré", "country_associated": "fr", "authorized_access_point": "Arnoul, Honoré, 1810-1893", "biographical_information": ["Société royale d'instruction élémentaire"]} 1 -2023-07-08 08:21:26.913204 2023-07-08 10:27:28.674693 5efa69e5-b274-481c-b421-ead53e5a5ea1 {"md5": "0403c446c8bd7cac3d5785b64f9f1847", "pid": "177081724", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre", "ita", "eng"], "identifier": "http://www.idref.fr/177081724", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/177081724", "source": "IDREF"}], "date_of_birth": "1973", "preferred_name": "Stampone, Giuseppe", "country_associated": "fr", "authorized_access_point": "Stampone, Giuseppe, 1973-....", "biographical_information": ["Artiste (Installation) né en France, vit et travaille à Teramo et New York"]} 2 -2023-07-08 08:21:26.815967 2023-07-08 10:27:54.2371 30b63751-aa4d-4058-a18d-fe8591120f4b {"md5": "ff4681884d47a5e1f6827a9322cbf67b", "pid": "176929738", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["cze"], "identifier": "http://www.idref.fr/176929738", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/176929738", "source": "IDREF"}], "date_of_birth": "1956-06-03", "date_of_death": "1994-04-03", "preferred_name": "Rákos, Petr", "authorized_access_point": "Rákos, Petr, 1956-1994", "biographical_information": ["Psychiatre, traducteur, écrivain"]} 2 -2023-07-08 08:21:26.314315 2023-07-08 10:29:44.184948 9efabea3-35b1-4654-97a4-d7f36565556f {"md5": "0c1e2ccb08f6ee0ee50e91f8671e0814", "pid": "17637874X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/17637874X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/17637874X", "source": "IDREF"}], "preferred_name": "Arizmendi, Luis", "authorized_access_point": "Arizmendi, Luis", "biographical_information": ["Docteur à l'université de Madrid"]} 2 -2023-07-08 08:21:27.414012 2023-07-08 08:21:27.414017 bc3816db-625b-4417-a0b6-3cb481cce40c {"md5": "d0af5de89d98438d59a37f48747b3bf1", "pid": "177597933", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/177597933", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/177597933", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Estrade, Laëtitia", "country_associated": "fr", "authorized_access_point": "Estrade, Laëtitia, 19..-...."} 1 -2023-07-08 08:21:27.498466 2023-07-08 08:21:27.498474 c807af14-7381-45ef-adda-91eb27c4cedb {"md5": "529d69c2d7abfc9858fa93fa8382fd3d", "pid": "177966793", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifier": "http://www.idref.fr/177966793", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/177966793", "source": "IDREF"}], "preferred_name": "Conference on the role of education in the early stages of development", "country_associated": "xxu", "date_of_termination": "1963-04-06", "date_of_establishment": "1963-04-04", "authorized_access_point": "Conference on the role of education in the early stages of development (1963 ; Chicago)"} 1 -2023-07-08 08:21:27.661616 2023-07-08 08:21:27.661619 6909a67f-cb89-4b08-ada0-e08084389507 {"md5": "42b41001e0f3a7bae1976b68c885b5d3", "pid": "178123889", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": false, "identifier": "http://www.idref.fr/178123889", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/178123889", "source": "IDREF"}], "variant_name": ["Bezirkstag des Ober-Elsass"], "preferred_name": "Ober-Elsass. Bezirkstag", "country_associated": "fr", "date_of_termination": "1918", "variant_access_point": ["Bezirkstag des Ober-Elsass"], "date_of_establishment": "1871", "authorized_access_point": "Ober-Elsass. Bezirkstag", "biographical_information": ["Le Bezirk Oberelsass était l'une des trois divisions administratives du Reichsland Elsaß-Lothringen. Le district allemand de Haute-Alsace, chef-lieu Colmar, correspondait à l'actuel Haut-Rhin."]} 1 -2023-07-08 08:21:27.752591 2023-07-08 08:21:27.752598 b70b7e4b-c5a9-4e3f-a201-fdf68664dbea {"md5": "4f9e2c08e46648def1c0721cfd486451", "pid": "178129887", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": false, "identifier": "http://www.idref.fr/178129887", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/178129887", "source": "IDREF"}], "preferred_name": "Instituto de matematica \\"Beppo Levi\\" (Rosario, Argentine)", "country_associated": "ag", "authorized_access_point": "Instituto de matematica \\"Beppo Levi\\" (Rosario, Argentine)"} 1 -2023-07-08 08:21:27.962032 2023-07-08 08:21:27.962043 58821318-2c03-430d-9dae-341cb3e4046c {"md5": "ef8226cdf138784f87fdb678979dc512", "pid": "178302430", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": false, "identifier": "http://www.idref.fr/178302430", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/178302430", "source": "IDREF"}], "variant_name": ["Espagne. Ministerio de guerra", "Espagne. Ministerio de la guerra y ultramar"], "preferred_name": "Espagne. Ministerio de la guerra", "country_associated": "sp", "date_of_termination": "1937", "variant_access_point": ["Espagne. Ministerio de guerra", "Espagne. Ministerio de la guerra y ultramar"], "date_of_establishment": "1808", "authorized_access_point": "Espagne. Ministerio de la guerra", "biographical_information": ["Créé en 1808, disparait en 1937, remplacé par le \\"Ministerio de defensa nacional\\", puis en 1977 par le \\"Ministerio de la defensa\\" ; de 1858 à 1863 s'est appelé \\"Ministerio de la guerra y ultramar\\", et de 1928 a 1931 (et de 1939 à 1977), \\"Ministerio del ejército"]} 1 -2023-07-08 08:21:28.06673 2023-07-08 08:21:28.066735 fd40f3ad-4ce4-45b1-984a-8cf2102d0f05 {"md5": "72ff512e266eae828c6003069e74739f", "pid": "178403431", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/178403431", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/178403431", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Arkapaw, Adam", "country_associated": "at", "authorized_access_point": "Arkapaw, Adam, 19..-....", "biographical_information": ["Directeur de la photographie", "Animal Kingdom [images animées] / David Michôd, réal."]} 1 -2023-07-08 08:21:28.259861 2023-07-08 08:21:28.259864 0d8938e3-681d-40b4-96da-9051a0cb7d6a {"md5": "d6208ec00b3e9dbf75ebb7741947864b", "pid": "178656275", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": true, "identifier": "http://www.idref.fr/178656275", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/178656275", "source": "IDREF"}], "preferred_name": "TAPPI Coating Binders Short Course", "country_associated": "xxu", "authorized_access_point": "TAPPI Coating Binders Short Course (1996 ; Baton Rouge (La.))"} 1 -2023-07-08 08:21:32.073186 2023-07-08 08:21:32.073195 1cdf389b-e77c-47fc-bafc-182873799376 {"md5": "2d31a2f592d563da9d1b59bb7b48bc95", "pid": "184614686", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por", "eng"], "identifier": "http://www.idref.fr/184614686", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/184614686", "source": "IDREF"}], "preferred_name": "Santos, Raul", "country_associated": "po", "authorized_access_point": "Santos, Raul", "biographical_information": ["Spécialiste des questions environnementales"]} 1 -2023-07-08 08:21:28.172449 2023-07-08 10:26:31.467497 e84b6c91-13bd-46ed-8cbd-a94943f558a4 {"md5": "89752487158603599f93a073308a3111", "pid": "178642932", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/178642932", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/178642932", "source": "IDREF"}], "preferred_name": "Lamoureux, Jocelyne", "authorized_access_point": "Lamoureux, Jocelyne", "biographical_information": ["Professeur à l'université du Québec à Montréal (UQAM)"]} 2 -2023-07-08 08:21:27.85959 2023-07-08 10:30:51.705262 d87db551-6f22-48c4-aef6-81c40757ac0d {"md5": "1abf3261aed5a5796ad7479a2b59ce7e", "pid": "178131059", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/178131059", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/178131059", "source": "IDREF"}], "preferred_name": "Cheng, Herbert S.", "authorized_access_point": "Cheng, Herbert S."} 2 -2023-07-08 08:21:28.454003 2023-07-08 08:21:28.454008 27b66205-2a02-4767-af94-01ce6a96f46e {"md5": "3774c893eda7249cf416125ee3500c61", "pid": "178887463", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/178887463", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/178887463", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Meighan, Melissa", "country_associated": "xxu", "authorized_access_point": "Meighan, Melissa, 19..-....", "biographical_information": ["Spécialiste d'art"]} 1 -2023-07-08 08:21:28.536888 2023-07-08 08:21:28.536892 6fe82567-4663-436b-88c7-f4bdf4aaaa64 {"md5": "5611e15c89d99bcace2619f37c20144f", "pid": "178950823", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifier": "http://www.idref.fr/178950823", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/178950823", "source": "IDREF"}], "variant_name": ["CAM (Padoue, Italie)", "Università degli studi (Padoue, Italie). Centro di Ateneo per i Musei"], "preferred_name": "Centro di ateneo per i musei (Padoue, Italie)", "country_associated": "it", "variant_access_point": ["CAM (Padoue, Italie)", "Università degli studi (Padoue, Italie). Centro di Ateneo per i Musei"], "authorized_access_point": "Centro di ateneo per i musei (Padoue, Italie)", "biographical_information": ["Adresse : Via Orto Botanico, 15 - 35122 Padova"]} 1 -2023-07-08 08:21:28.685861 2023-07-08 08:21:28.685867 3b39200d-fe11-4026-8df7-35e511f15363 {"md5": "5cd65b839e8f82d23db2952865919723", "pid": "179410059", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/179410059", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/179410059", "source": "IDREF"}], "preferred_name": "Daniel, Ron W.", "authorized_access_point": "Daniel, Ron W."} 1 -2023-07-08 08:21:28.771405 2023-07-08 08:21:28.77141 cdf5f306-10f0-4761-ab7d-9ca518b1a0ae {"md5": "45dd0e786e0db6e2d3081d2bfa498ed0", "pid": "179487183", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": true, "identifier": "http://www.idref.fr/179487183", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/179487183", "source": "IDREF"}], "variant_name": ["La dérive des francophonies", "La deriva delle francofonie"], "preferred_name": "Seminari annuali di letterature francofone", "country_associated": "it", "date_of_termination": "1986-10-23", "variant_access_point": ["La dérive des francophonies", "La deriva delle francofonie"], "date_of_establishment": "1986-10-22", "authorized_access_point": "Seminari annuali di letterature francofone (1986 ; Bagni di Lucca, Italie)"} 1 -2023-07-08 08:21:28.862007 2023-07-08 08:21:28.862023 d15d8fb5-f786-449d-a782-8dcb863f91a4 {"md5": "92bcf6c4376a20f2c10ab9101ca88a35", "pid": "179957805", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/179957805", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/179957805", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Lobel, Cindy R.", "country_associated": "xxu", "authorized_access_point": "Lobel, Cindy R., 19..-...."} 1 -2023-07-08 08:21:28.950481 2023-07-08 08:21:28.950487 87e66fa3-ce4b-4122-a397-aa1959e6b879 {"md5": "c4bab303c9b7ad8ad83f877abcd43642", "pid": "180123580", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por", "fre"], "conference": false, "identifier": "http://www.idref.fr/180123580", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/180123580", "source": "IDREF"}], "variant_name": ["CEDOUA", "Centre d'études de droit de l'aménagement, de l'urbanisme et de l'environnement (Coimbra, Portugal)", "Universidade de Coimbra. Centro de estudos de direito do ordenamento, do urbanismo e do ambiente", "Universidade de Coimbra. Faculdade de direito. Centro de estudos de direito do ordenamento, do urbanismo e do ambiente"], "preferred_name": "Centro de estudos de direito do ordenamento, do urbanismo e do ambiente (Coimbra, Portugal)", "country_associated": "po", "variant_access_point": ["CEDOUA", "Centre d'études de droit de l'aménagement, de l'urbanisme et de l'environnement (Coimbra, Portugal)", "Universidade de Coimbra. Centro de estudos de direito do ordenamento, do urbanismo e do ambiente", "Universidade de Coimbra. Faculdade de direito. Centro de estudos de direito do ordenamento, do urbanismo e do ambiente"], "date_of_establishment": "1994", "authorized_access_point": "Centro de estudos de direito do ordenamento, do urbanismo e do ambiente (Coimbra, Portugal)", "biographical_information": ["Fondé en1994. Centre de recherche de la Faculdade de Direito da Universidade de Coimbra, associé à l'ANMP (Associação Nacional de Municípios Portugueses), et à la Fundação CEFA"]} 1 -2023-07-08 08:21:29.035682 2023-07-08 08:21:29.035685 5896dc86-6b4e-42e0-925e-433a51648041 {"md5": "c9a7afdf7ab66f5c7702cb95729963cb", "pid": "180177494", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/180177494", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/180177494", "source": "IDREF"}], "variant_name": ["Carter sisters & Mother Maybelle"], "preferred_name": "Carter family", "country_associated": "xxu", "date_of_termination": "1943", "variant_access_point": ["Carter sisters & Mother Maybelle"], "date_of_establishment": "1927", "authorized_access_point": "Carter family", "biographical_information": ["Groupe vocal et instrumental de musique country. - Composé de Sara Carter, chant, guitare et harpe, Alvin Pleasant Carter, chant, Maybelle Carter, chant et guitare", "Attention à partir de 1941 Le groupe semble se diviser puis il produit un nouvel album en 1967 d'après LCNA"]} 1 -2023-07-08 08:21:28.35183 2023-07-08 10:31:12.272455 166166ab-36e4-4201-9b5e-eef83e0422e1 {"md5": "739e8d862baf267b62336d88ef703369", "pid": "178750166", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "identifier": "http://www.idref.fr/178750166", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/178750166", "source": "IDREF"}], "variant_name": ["小山, いと子"], "date_of_birth": "1901", "date_of_death": "1989", "preferred_name": "Koyama, Itoko", "country_associated": "ja", "variant_access_point": ["小山, いと子, 1901-1989"], "authorized_access_point": "Koyama, Itoko, 1901-1989", "biographical_information": ["écrivaine"]} 2 -2023-07-08 08:21:29.111714 2023-07-08 08:21:29.111719 c1e8da66-9ba0-41e2-bb14-c89eccb53a3f {"md5": "7ff9255c9f45c3a66911cd12682cc4cb", "pid": "180568892", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/180568892", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/180568892", "source": "IDREF"}], "preferred_name": "Mikhailov, Zdenka Kadla", "country_associated": "xx", "authorized_access_point": "Mikhailov, Zdenka Kadla", "biographical_information": ["En poste en 1962 au Pulkovo Observatory"]} 1 -2023-07-08 08:21:29.201521 2023-07-08 08:21:29.20153 16448d4e-e70c-43f3-b242-57c801f6775e {"md5": "9d4ca69a1bbfa31947d75fff25884408", "pid": "180999699", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "identifier": "http://www.idref.fr/180999699", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/180999699", "source": "IDREF"}], "variant_name": ["Magalhães, Joaquim Antonio de", "Magalhaens, J. A. de", "Magalhaens, Joaquim Antonio de"], "date_of_birth": "1795", "date_of_death": "1848", "preferred_name": "Magalhães, J. A. de", "country_associated": "po", "variant_access_point": ["Magalhães, Joaquim Antonio de", "Magalhaens, J. A. de", "Magalhaens, Joaquim Antonio de"], "authorized_access_point": "Magalhães, J. A. de, 1795-1848"} 1 -2023-07-08 08:21:29.557937 2023-07-08 08:21:29.557945 e9eb14b7-357d-4bf4-a7a7-9d87c3fd2b0d {"md5": "d77d34be44a982889232fa1a1e684a42", "pid": "181254506", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/181254506", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/181254506", "source": "IDREF"}], "preferred_name": "Dagneaux, Estelle", "country_associated": "be", "authorized_access_point": "Dagneaux, Estelle", "biographical_information": ["Linguiste"]} 1 -2023-07-08 08:21:29.637416 2023-07-08 08:21:29.63742 5175104a-3333-4ba1-ba5d-65da418fd488 {"md5": "6651c8ed6bc74c21aea98bb85e96f321", "pid": "181256037", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": false, "identifier": "http://www.idref.fr/181256037", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/181256037", "source": "IDREF"}], "variant_name": ["EuroMemo group"], "preferred_name": "Économistes européens pour une politique économique alternative en Europe", "variant_access_point": ["EuroMemo group"], "date_of_establishment": "1995", "parallel_access_point": ["European economists for an alternative economic policy in Europe"], "authorized_access_point": "Économistes européens pour une politique économique alternative en Europe", "biographical_information": ["Adresse : info@euromemo.eu"]} 1 -2023-07-08 08:21:29.714785 2023-07-08 08:21:29.71479 4ecad305-fa00-40ab-a084-3e651353f86c {"md5": "63e3c2bc3b3660d71986e3ef82aae3a1", "pid": "181345404", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/181345404", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/181345404", "source": "IDREF"}], "preferred_name": "Kämmerer, Wolfgang", "country_associated": "gw", "authorized_access_point": "Kämmerer, Wolfgang"} 1 -2023-07-08 08:21:29.993086 2023-07-08 08:21:29.993095 f2c474d5-f752-4665-ac7f-46519d1b8c59 {"md5": "e99a131286907bbac5d21bc817ff5d41", "pid": "181732149", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/181732149", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/181732149", "source": "IDREF"}], "preferred_name": "Gutschera, Karl Robert", "authorized_access_point": "Gutschera, Karl Robert", "biographical_information": ["Concepteur en chef au sein de la société de conception de logiciel Secret Identity Studios, équipe formée par d'anciens membres d'entreprises mondiales de création de jeux vidéo"]} 1 -2023-07-08 08:21:33.054819 2023-07-08 08:21:33.054821 09df536a-671c-468a-9583-7720f4dccadf {"md5": "434dbac6f10864594dbdfeda0875d410", "pid": "185512461", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/185512461", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/185512461", "source": "IDREF"}], "preferred_name": "Weber, Uli", "country_associated": "xxk", "authorized_access_point": "Weber, Uli", "biographical_information": ["Photographe"]} 1 -2023-07-08 08:21:29.383146 2023-07-08 10:26:14.456223 5f0b9eda-ab98-4347-aa5b-3bc785929c37 {"md5": "0051a1ee2aebb40775fe1cd637ccf873", "pid": "181054825", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/181054825", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/181054825", "source": "IDREF"}], "date_of_birth": "1923", "preferred_name": "Ruggles, Richard I.", "authorized_access_point": "Ruggles, Richard I., 1928-...."} 2 -2023-07-08 08:21:29.462095 2023-07-08 10:26:31.04709 99bd9061-fe51-49bd-a80c-ffae80472f4f {"md5": "e8a391a854b9501b3c119e9cb1e68dc3", "pid": "181132931", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/181132931", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/181132931", "source": "IDREF"}], "preferred_name": "Lawrence, Julian", "authorized_access_point": "Lawrence, Julian"} 2 -2023-07-08 08:21:29.895552 2023-07-08 10:31:08.604098 bedfee82-aa65-423a-9aca-15ebdabfa388 {"md5": "642cad048375ffddd254cf8c2d91981c", "pid": "181483513", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["chi"], "identifier": "http://www.idref.fr/181483513", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/181483513", "source": "IDREF"}], "variant_name": ["房, 玄齡"], "date_of_birth": "0578", "date_of_death": "0648", "preferred_name": "Fang, Xuanling", "country_associated": "cc", "variant_access_point": ["房, 玄齡, 0578-0648"], "authorized_access_point": "Fang, Xuanling, 0578-0648", "biographical_information": ["Historien chinois"]} 2 -2023-07-08 08:21:30.065328 2023-07-08 08:21:30.065331 9b374f1f-65ca-4f9e-9f6a-403d34976223 {"md5": "cc1ec3309874adbcafad2079407e2d41", "pid": "181863111", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/181863111", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/181863111", "source": "IDREF"}], "variant_name": ["Raumer, Siegmund von"], "date_of_birth": "1860", "date_of_death": "1939", "preferred_name": "Raumer, Sigmund von", "country_associated": "gw", "variant_access_point": ["Raumer, Siegmund von"], "authorized_access_point": "Raumer, Sigmund von, 1860-1939"} 1 -2023-07-08 08:21:30.150171 2023-07-08 08:21:30.150175 26a49b62-38df-43ce-90c1-0dde0b108694 {"md5": "1430229625e0119338dce43401d92723", "pid": "182214184", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/182214184", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/182214184", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Griffith, Terri", "country_associated": "xxu", "authorized_access_point": "Griffith, Terri, 19..-....", "biographical_information": ["Ecrivain, journaliste, spécialiste d'art contemporain"]} 1 -2023-07-08 08:21:30.233413 2023-07-08 08:21:30.233417 d496c23c-632d-43a9-9db6-76b30e615a0a {"md5": "73c9d9a78cd18a30a67efa66ebd49c9f", "pid": "182358534", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/182358534", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/182358534", "source": "IDREF"}], "preferred_name": "Moore, Tomás", "country_associated": "cl", "authorized_access_point": "Moore, Tomás", "biographical_information": ["Entomologiste."]} 1 -2023-07-08 08:21:30.315389 2023-07-08 08:21:30.315393 ac8ebfa4-62dd-49eb-8b81-6d975d9841ac {"md5": "cba9b2b836dfb91f02313b8f6393c490", "pid": "182624250", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/182624250", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/182624250", "source": "IDREF"}], "preferred_name": "Ades, Gary W.J.", "country_associated": "xx", "authorized_access_point": "Ades, Gary W.J.", "biographical_information": ["Ornithologue"]} 1 -2023-07-08 08:21:30.395579 2023-07-08 08:21:30.395593 e5aa4a37-edaa-4a96-8d6e-c443003d49cf {"md5": "c1e1d44202585d12b2efcd0361c12822", "pid": "182625575", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "identifier": "http://www.idref.fr/182625575", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/182625575", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Sachetti, António", "country_associated": "po", "authorized_access_point": "Sachetti, António, 19..-....", "biographical_information": ["Photographe portugais."]} 1 -2023-07-08 08:21:30.490966 2023-07-08 08:21:30.490976 412552b4-8b2e-4c26-97fd-1b98020b859e {"md5": "4b9f3bca5f408fa618e4d58f7b55f469", "pid": "182629589", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/182629589", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/182629589", "source": "IDREF"}], "preferred_name": "Ay, Andreas", "country_associated": "gw", "authorized_access_point": "Ay, Andreas"} 1 -2023-07-08 08:21:30.570866 2023-07-08 08:21:30.570868 61299c74-6128-4638-9c3a-6ec2a49d1fec {"md5": "007cceaacabeb37d34affc3cee37b780", "pid": "182693198", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/182693198", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/182693198", "source": "IDREF"}], "preferred_name": "Stapleton, Anne McKee", "authorized_access_point": "Stapleton, Anne McKee"} 1 -2023-07-08 08:21:30.773727 2023-07-08 08:21:30.773736 9f4cec56-5d18-458b-82d6-18c90b0d2614 {"md5": "533560017f4015fe5ea3b43d1d0c64e4", "pid": "183243641", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/183243641", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/183243641", "source": "IDREF"}], "date_of_birth": "1947-10-01", "preferred_name": "Vauléon, Bernard", "country_associated": "fr", "authorized_access_point": "Vauléon, Bernard, 1947-...."} 1 -2023-07-08 08:21:30.867025 2023-07-08 08:21:30.867032 12d6f62c-5661-49ef-a113-ffc29defb437 {"md5": "49abfaad1977a17a76c937beb28f9707", "pid": "183245504", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["srp"], "conference": true, "identifier": "http://www.idref.fr/183245504", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/183245504", "source": "IDREF"}], "variant_name": ["Научни cастанак cлависта у Вукове Дане"], "preferred_name": "Naučni sastanak slavista u Vukove Dane", "date_of_termination": "2008-09-07", "variant_access_point": ["Научни cастанак cлависта у Вукове Дане (38 ; 2008 ; Belgrade)"], "date_of_establishment": "2008-09-04", "authorized_access_point": "Naučni sastanak slavista u Vukove Dane (38 ; 2008 ; Belgrade)"} 1 -2023-07-08 08:21:30.97541 2023-07-08 08:21:30.975413 d3b47eae-4ef4-4634-862e-d544d82daea6 {"md5": "f9d3d83fa5690433773ef233381538bc", "pid": "183295765", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifier": "http://www.idref.fr/183295765", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/183295765", "source": "IDREF"}], "variant_name": ["Грибков, Виталий Cтепанович", "Gribkov, V. S."], "date_of_birth": "1936", "preferred_name": "Gribkov, Vitalij Stepanovič", "country_associated": "ru", "variant_access_point": ["Gribkov, V. S."], "authorized_access_point": "Gribkov, Vitalij Stepanovič, 1936-", "biographical_information": ["Peintre russe"]} 1 -2023-07-08 08:21:31.061817 2023-07-08 08:21:31.06183 179421b8-3727-4ab5-b803-16b1549c6add {"md5": "14fbc859603c2e990071082d79878891", "pid": "183379861", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/183379861", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/183379861", "source": "IDREF"}], "date_of_birth": "1947", "preferred_name": "Murray, Kate", "country_associated": "xxu", "authorized_access_point": "Murray, Kate, 1947-"} 1 -2023-07-08 08:21:31.164268 2023-07-08 08:21:31.164277 8b1804f0-756a-4c13-ba77-8b515ed1913f {"md5": "e6140a94961ee395a7b9207ea97b31f0", "pid": "183426967", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "agrégé de physique", "identifier": "http://www.idref.fr/183426967", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/183426967", "source": "IDREF"}], "date_of_birth": "19..", "preferred_name": "Martin, François, agrégé de physique", "country_associated": "xx", "authorized_access_point": "Martin, François, 19..-...., agrégé de physique", "biographical_information": ["Professeur certifié de physique-chimie, il a enseigné douze ans au collège. En poste au lycée général et technologique (en 2014).."]} 1 -2023-07-08 08:21:31.268847 2023-07-08 08:21:31.268851 afbe2ffa-21a5-4cb6-99f6-cabfefeed0f0 {"md5": "fca7f8cdf9e134a9f0dc73ba2b92a75d", "pid": "183511956", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifier": "http://www.idref.fr/183511956", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/183511956", "source": "IDREF"}], "variant_name": ["CERAFIA", "Université Omar Bongo (Libreville). Centre d'études et de recherches afro-ibéro-américaines"], "preferred_name": "Centre d'études et de recherches afro-ibéro-américaines (Libreville, Gabon)", "variant_access_point": ["CERAFIA", "Université Omar Bongo (Libreville). Centre d'études et de recherches afro-ibéro-américaines"], "date_of_establishment": "1998", "authorized_access_point": "Centre d'études et de recherches afro-ibéro-américaines (Libreville, Gabon)", "biographical_information": ["Laboratoire de recherche pluridisciplinaire de l'Université Omar Bongo"]} 1 -2023-07-08 08:21:31.528838 2023-07-08 08:21:31.528843 62167dd6-12b9-498a-91d5-11efc8a6e40d {"md5": "e44d889a57ad84e12870fd2e4505b724", "pid": "183723341", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "fre"], "identifier": "http://www.idref.fr/183723341", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/183723341", "source": "IDREF"}], "date_of_birth": "1931-06-13", "date_of_death": "2020-05-28", "preferred_name": "Scowen, Reedf1931-2020", "country_associated": "xxc", "authorized_access_point": "Scowen, Reedf1931-2020", "biographical_information": ["Politicien"]} 1 -2023-07-08 08:21:31.641007 2023-07-08 08:21:31.641013 5c294bb8-fa81-426e-ab65-bc80cc877665 {"md5": "645d03b931b482dc178f99930bafe56c", "pid": "183871065", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/183871065", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/183871065", "source": "IDREF"}], "variant_name": ["FAEPHSA"], "preferred_name": "Fédération des associations pour l'étude et la mise en valeur du patrimoine hospitalier et de la santé en Alsace", "country_associated": "fr", "variant_access_point": ["FAEPHSA"], "date_of_establishment": "2005-11-08", "authorized_access_point": "Fédération des associations pour l'étude et la mise en valeur du patrimoine hospitalier et de la santé en Alsace", "biographical_information": ["Adresse : Institut d'histoire de la médecine et des sciences humaines, Département d'histoire de la médecine, Hôpitaux universitaires de Strasbourg, 1 place de L'Hôpital, BP 426, 67091 Strasbourg Cedex"]} 1 -2023-07-08 08:21:31.740131 2023-07-08 08:21:31.740137 65bd8dad-838b-4225-9daa-bbd3de65ff0a {"md5": "6d5640a43ff348134717f82c05aadc8f", "pid": "18397574X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/18397574X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/18397574X", "source": "IDREF"}], "preferred_name": "William Herschel Society", "country_associated": "xxk", "authorized_access_point": "William Herschel Society"} 1 -2023-07-08 08:21:31.818204 2023-07-08 08:21:31.818209 ca84bf42-57ec-49e3-8799-8cd8a5100e01 {"md5": "3e0f248cb4f1bcb1b359bb000cc81094", "pid": "184093546", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/184093546", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/184093546", "source": "IDREF"}], "variant_name": ["AAPPFID"], "preferred_name": "Association des amis passés, présents et futurs d'Isidore Ducasse", "country_associated": "fr", "variant_access_point": ["AAPPFID"], "authorized_access_point": "Association des amis passés, présents et futurs d'Isidore Ducasse"} 1 -2023-07-08 08:21:31.902523 2023-07-08 08:21:31.902529 3d108894-fabe-4ea6-a33e-e38f61b5f0a6 {"md5": "c8a6473b67202fa631f4fec1d2d3eacc", "pid": "18439631X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/18439631X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/18439631X", "source": "IDREF"}], "variant_name": ["ARPFMC"], "preferred_name": "Association de recherches sur la poésie française moderne et contemporaine", "country_associated": "fr", "date_of_termination": "1983", "variant_access_point": ["ARPFMC"], "date_of_establishment": "1971", "authorized_access_point": "Association de recherches sur la poésie française moderne et contemporaine", "biographical_information": ["Fondée en 1971 et dirigée par Marie-Jeanne Durry. Editrice de la collection \\"Création\\"."]} 1 -2023-07-08 08:21:32.003041 2023-07-08 08:21:32.003047 850cf994-e92b-4c70-bb16-f7526eb398fa {"md5": "54642b186025681058c33410efcb8416", "pid": "184529891", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "photographe", "identifier": "http://www.idref.fr/184529891", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/184529891", "source": "IDREF"}], "date_of_birth": "1944-08-05", "preferred_name": "Leroy, Bernard, photographe", "country_associated": "fr", "authorized_access_point": "Leroy, Bernard, 1944-...., photographe", "biographical_information": ["Photographe"]} 1 -2023-07-08 08:21:34.002836 2023-07-08 08:21:34.002842 a6f475db-50c4-4182-835d-03f29c8e1af6 {"md5": "51b90f3fc741be514c0c037f0a063c03", "pid": "187432627", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["zul"], "identifier": "http://www.idref.fr/187432627", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/187432627", "source": "IDREF"}], "preferred_name": "Zulu, Nhlakanipho", "country_associated": "sa", "authorized_access_point": "Zulu, Nhlakanipho"} 1 -2023-07-08 08:21:32.152715 2023-07-08 08:21:32.152721 c67c7339-714f-4d87-a8d0-a47337bd67e7 {"md5": "067857b1290e18aa6e00591b8124a19f", "pid": "184909961", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/184909961", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/184909961", "source": "IDREF"}], "preferred_name": "Association française des catalanistes", "country_associated": "fr", "authorized_access_point": "Association française des catalanistes"} 1 -2023-07-08 08:21:32.237252 2023-07-08 08:21:32.237256 b18ff35b-7a74-4645-8cf4-ff61d5505d21 {"md5": "01ab8e8f82d33b8b829a88f37fa3b43a", "pid": "185067050", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut"], "conference": false, "identifier": "http://www.idref.fr/185067050", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/185067050", "source": "IDREF"}], "variant_name": ["Choeur du Concertgebouw d'Amsterdam", "Concertgebouw chorus (Amsterdam)", "Concertgebouw (Amsterdam). Koor"], "preferred_name": "Concergebouw-Koor (Amsterdam)", "country_associated": "ne", "variant_access_point": ["Choeur du Concertgebouw d'Amsterdam", "Concertgebouw chorus (Amsterdam)", "Concertgebouw (Amsterdam). Koor"], "authorized_access_point": "Concergebouw-Koor (Amsterdam)", "biographical_information": ["Amsterdam"]} 1 -2023-07-08 08:21:32.434772 2023-07-08 08:21:32.434779 9eb47dbe-0d57-426d-8796-fb8fb5f22da4 {"md5": "6696ee82c628823b1d80e14d8f4ef780", "pid": "185152023", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/185152023", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/185152023", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Prou, Marc", "country_associated": "xxu", "authorized_access_point": "Prou, Marc, 19..-....", "biographical_information": ["Professeur, Africana studies department, University of Massachusetts, Boston, Mass. (en 2010)"]} 1 -2023-07-08 08:21:32.531143 2023-07-08 08:21:32.531147 91cc227d-a1c6-4ac9-82bf-66e3a0a366b5 {"md5": "b9dd8fa9b66820ec3155aeef11eed844", "pid": "185165249", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifier": "http://www.idref.fr/185165249", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/185165249", "source": "IDREF"}], "preferred_name": "Congrès européen Sciences de l'homme et sociétés", "country_associated": "fr", "date_of_termination": "2003-06-07", "date_of_establishment": "2003-06-04", "authorized_access_point": "Congrès européen Sciences de l'homme et sociétés (04 ; 2003 ; Montpellier)"} 1 -2023-07-08 08:21:32.701119 2023-07-08 08:21:32.701125 5f0a93bd-d6ad-41aa-8efb-6a8996c949b9 {"md5": "05a7913319d14b6c96d74b7a2cf403ac", "pid": "18526557X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": false, "identifier": "http://www.idref.fr/18526557X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/18526557X", "source": "IDREF"}], "variant_name": ["Instituto de España (Munich, Allemagne)", "Instituto Español de Cultura (Munich, Allemagne)"], "preferred_name": "Spanisches Kulturinstitut (Munich, Allemagne)", "country_associated": "gw", "variant_access_point": ["Instituto de España (Munich, Allemagne)", "Instituto Español de Cultura (Munich, Allemagne)"], "authorized_access_point": "Spanisches Kulturinstitut (Munich, Allemagne)"} 1 -2023-07-08 08:21:32.89641 2023-07-08 08:21:32.896418 7a5bfcad-9aee-465c-a5a7-de0b2fb43ddd {"md5": "afc8cf83b730c01846b9eef83ed318b0", "pid": "185446167", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/185446167", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/185446167", "source": "IDREF"}], "variant_name": ["TSC (Brownsville, Etats-Unis)"], "preferred_name": "Texas Southmost College (Brownsville, Etats-Unis)", "country_associated": "xxu", "variant_access_point": ["TSC (Brownsville, Etats-Unis)"], "authorized_access_point": "Texas Southmost College (Brownsville, Etats-Unis)"} 1 -2023-07-08 08:21:32.975613 2023-07-08 08:21:32.975623 95c64954-b726-4ab9-a6bd-dd983f3b6f5c {"md5": "9e5d89dff3423407fe62c114545fe7d1", "pid": "185446221", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/185446221", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/185446221", "source": "IDREF"}], "variant_name": ["Comte, Nicolas le", "Le Comte, François", "Le Comte, F.", "Le Comte, Frère", "Le Comte, Frère", "Le Comte, François", "L. P. L. C. C.", "Le père Le Comte Célestin", "Comte, François Célestin le"], "date_of_birth": "1620", "date_of_death": "1689-02-10", "preferred_name": "Le Comte, Nicolas", "country_associated": "fr", "variant_access_point": ["Comte, Nicolas le", "Le Comte, François", "Le Comte, F.", "Le Comte, Frère", "Le Comte, Frère", "Le Comte, François", "L. P. L. C. C.", "Le père Le Comte Célestin", "Comte, François Célestin le"], "authorized_access_point": "Le Comte, Nicolas, 1620 ?-1689", "biographical_information": ["Célestin parisien. Entra dans l'ordre des Célestins le 28 septembre 1639. Décédé le 10 février 1689. A traduit de l'italien en français"]} 1 -2023-07-08 08:21:32.608922 2023-07-08 10:24:25.426562 6274bda9-8d29-48b6-8905-bbf0c63a01d2 {"md5": "e9ede90426e8a46892a31741cf9c464c", "pid": "185264352", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/185264352", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/185264352", "source": "IDREF"}], "preferred_name": "Keckler, Stephen W.", "country_associated": "xxu", "authorized_access_point": "Keckler, Stephen W.", "biographical_information": ["En poste : University of Texas, Austin, États-Unis (en 2009)"]} 2 -2023-07-08 08:21:32.793822 2023-07-08 10:30:07.729649 55cac6bd-5d0f-4b97-827d-0531a416144c {"md5": "0f21fc47d74ffb96d920c53e3c77691e", "pid": "18530396X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/18530396X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/18530396X", "source": "IDREF"}], "preferred_name": "Obi, Ajuruchukwu", "country_associated": "sa", "authorized_access_point": "Obi, Ajuruchukwu"} 2 -2023-07-08 08:21:33.132037 2023-07-08 08:21:33.132043 368d7d04-a245-4d65-8aae-c0b6017fcf88 {"md5": "a824af93fd8f6d06796228390b143cc5", "pid": "185627935", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["hun"], "identifier": "http://www.idref.fr/185627935", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/185627935", "source": "IDREF"}], "date_of_birth": "1941-09-17", "preferred_name": "Szántó, Erika", "country_associated": "hu", "authorized_access_point": "Szántó, Erika, 1941-....", "biographical_information": ["Réalisatrice, scénariste"]} 1 -2023-07-08 08:21:33.232404 2023-07-08 08:21:33.232409 365697e2-b043-4989-82ab-7bbb856df9bd {"md5": "523c95f943f50d93efa0011277eabc02", "pid": "185740936", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/185740936", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/185740936", "source": "IDREF"}], "preferred_name": "Académie du cirque et du music-hall", "country_associated": "fr", "authorized_access_point": "Académie du cirque et du music-hall", "biographical_information": ["Membres : Maurice Feaudierre dit Serge (président), Edouard Beaudu, Pierre Bost, Robert Baze, Yves Brayer, Jacques Chesnais, Marcel Duvau, Paul Gilson, Fernand Mery, Jean Texcier."]} 1 -2023-07-08 08:21:33.329621 2023-07-08 08:21:33.329636 f7760adc-e36a-4b86-815e-b21a6d0e48d7 {"md5": "deebeb5cf0fbfd35daf20383c982713b", "pid": "185904300", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/185904300", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/185904300", "source": "IDREF"}], "variant_name": ["Hoult, Nicholas Caradoc"], "date_of_birth": "1989-12-07", "preferred_name": "Hoult, Nicholas", "country_associated": "xxk", "variant_access_point": ["Hoult, Nicholas Caradoc"], "authorized_access_point": "Hoult, Nicholas, 1989-....", "biographical_information": ["Acteur"]} 1 -2023-07-08 08:21:33.417985 2023-07-08 08:21:33.41799 00aa2649-3e87-43f4-a873-46f9d4d7c09b {"md5": "ea3dab8c0d6c1f0809dfad42892ed4fc", "pid": "186075480", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/186075480", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/186075480", "source": "IDREF"}], "preferred_name": "Wood, Donald F.", "country_associated": "xxk", "authorized_access_point": "Wood, Donald F.", "biographical_information": ["En poste à l'Imperial Metal Industries Limited, Witton, Birmingham (1971)"]} 1 -2023-07-08 08:21:33.500458 2023-07-08 08:21:33.500472 1b65c571-d939-4c77-a908-18a67a6e3954 {"md5": "760e1d97bda743b8a9eeeb70a45e5caf", "pid": "186152396", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "qualifier": "bénédictin", "identifier": "http://www.idref.fr/186152396", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/186152396", "source": "IDREF"}], "variant_name": ["Semeraro, Michael Davide", "Semeraro, MichaelDavide", "Michael Davide, bénédictin"], "date_of_birth": "1964", "preferred_name": "MichaelDavide, bénédictin", "country_associated": "it", "variant_access_point": ["Semeraro, Michael Davide", "Semeraro, MichaelDavide", "Michael Davide, bénédictin"], "authorized_access_point": "MichaelDavide, 1964-...., bénédictin", "biographical_information": ["Moine bénédictin du monastère de Germagno (Italie). Docteur en théologie spirituelle"]} 1 -2023-07-08 08:21:33.581952 2023-07-08 08:21:33.581956 4ca742ee-083d-4d74-a323-cb847dce6be4 {"md5": "f39b2fd497d1a76621ec785e24522073", "pid": "186272758", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "identifier": "http://www.idref.fr/186272758", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/186272758", "source": "IDREF"}], "variant_name": ["村上, 世彰"], "date_of_birth": "1959", "preferred_name": "Murakami, Yoshiaki", "country_associated": "ja", "variant_access_point": ["村上, 世彰, 1959-...."], "authorized_access_point": "Murakami, Yoshiaki, 1959-....", "biographical_information": ["Transcription Hepburn modifié"]} 1 -2023-07-08 08:21:33.66911 2023-07-08 08:21:33.669119 49b6ad23-c213-4600-b26f-bc6985568755 {"md5": "94dbf7e31a20f2aa1eeb878788b19f86", "pid": "186354614", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/186354614", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/186354614", "source": "IDREF"}], "variant_name": ["Vrettos, Maria Adrienne"], "preferred_name": "Vrettos, Adrienne Maria", "country_associated": "xxu", "variant_access_point": ["Vrettos, Maria Adrienne"], "authorized_access_point": "Vrettos, Adrienne Maria"} 1 -2023-07-08 08:21:33.753172 2023-07-08 08:21:33.753177 347ad50c-04c9-4a24-93cf-de5d251867e0 {"md5": "f1b509535a4d51bb098f4a7634c21f96", "pid": "18642597X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["tam"], "qualifier": "கணேசன்", "identifier": "http://www.idref.fr/18642597X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/18642597X", "source": "IDREF"}], "variant_name": ["மனோகரன், க., கணேசன்", "Manoharan, K."], "date_of_birth": "19XX", "preferred_name": "Man̲ōkaran̲, Ka., Kanēcaṉ", "country_associated": "ii", "variant_access_point": ["Manoharan, K."], "authorized_access_point": "Man̲ōkaran̲, Ka., 19..-...., Kanēcaṉ", "biographical_information": ["Romancier tamoul du 21e siècle, Ramanathapuram, Inde du Sud"]} 1 -2023-07-08 08:21:33.834862 2023-07-08 08:21:33.834868 e6d54e4f-e79f-489f-ba4b-8153ae1bcd07 {"md5": "d00260e07469d8e385f37c359b57cfda", "pid": "186429495", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["tam"], "identifier": "http://www.idref.fr/186429495", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/186429495", "source": "IDREF"}], "variant_name": ["வெங்கடேசன், இரா.", "Venkatesan, R."], "date_of_birth": "19XX", "preferred_name": "Veṅkaṭēcaṉ, Irā.", "country_associated": "ii", "variant_access_point": ["Venkatesan, R."], "authorized_access_point": "Veṅkaṭēcaṉ, Irā., 19..-....", "biographical_information": ["Littéraire tamoul du 21e siècle, Tamil Nadu, Inde du sud"]} 1 -2023-07-08 08:21:33.919312 2023-07-08 08:21:33.919322 6faed544-61ae-4ab6-836a-981775625197 {"md5": "b62afb5be13e260994bcb97e271f3647", "pid": "187118914", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/187118914", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/187118914", "source": "IDREF"}], "variant_name": ["GOMA"], "preferred_name": "Gallery of Modern Art (Brisbane, Australie)", "country_associated": "at", "variant_access_point": ["GOMA"], "authorized_access_point": "Gallery of Modern Art (Brisbane, Australie)", "biographical_information": ["Galerie d'art; Adresse : Stanley Place, South Brisbane QLD 4101, Australie"]} 1 -2023-07-08 08:21:34.079889 2023-07-08 08:21:34.079893 2d3370a9-a3d0-45ee-ae03-a89424a44d67 {"md5": "98bcdcd2f08fa990cf29a51195538825", "pid": "187440085", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/187440085", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/187440085", "source": "IDREF"}], "date_of_birth": "1988-10-31", "preferred_name": "Remilien, Cindy", "country_associated": "fr", "authorized_access_point": "Remilien, Cindy, 1988-....", "biographical_information": ["Titulaire du Doctorat en Médecine Vétérinaire (Alfort, 2014)"]} 1 -2023-07-08 08:21:34.269267 2023-07-08 08:21:34.269273 15301db6-9ca6-4c7e-b5d1-0e11ee5f61d0 {"md5": "f4ec5e14f1b1b8313902d69d4b43ed50", "pid": "187512272", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/187512272", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/187512272", "source": "IDREF"}], "date_of_birth": "1985-11-11", "preferred_name": "Aubineau, Béatrice", "country_associated": "fr", "authorized_access_point": "Aubineau, Béatrice", "biographical_information": ["Titulaire d'un Diplôme supérieur du Notariat de l'Université de Bordeaux en 2014"]} 1 -2023-07-08 08:21:34.366107 2023-07-08 08:21:34.366115 2cd7da63-6dcb-4e97-bcce-fded62f68c9a {"md5": "6522b1307f6a05273e9ccdebcb69f983", "pid": "187515441", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": false, "identifier": "http://www.idref.fr/187515441", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/187515441", "source": "IDREF"}], "preferred_name": "Coordinadora de Defensa del Agua y de la Vida (Cochabamba, Bolivie)", "country_associated": "bo", "date_of_establishment": "1999-11-12", "authorized_access_point": "Coordinadora de Defensa del Agua y de la Vida (Cochabamba, Bolivie)"} 1 -2023-07-08 08:21:34.45047 2023-07-08 08:21:34.450477 0d675be8-10cb-4d92-aa0e-e9a12e65c87d {"md5": "4a2bd33f8c1cd85d25c39463dd37cf8a", "pid": "187519374", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "fre"], "identifier": "http://www.idref.fr/187519374", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/187519374", "source": "IDREF"}], "preferred_name": "Guerid, Samia", "country_associated": "fr", "authorized_access_point": "Guerid, Samia", "biographical_information": ["Traduit de l'anglais vers le français"]} 1 -2023-07-08 08:21:34.616616 2023-07-08 08:21:34.616622 ee78ea32-2036-456e-a2bc-a398e3535c05 {"md5": "13406a4dbe956521d025892367e5839f", "pid": "188048383", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/188048383", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/188048383", "source": "IDREF"}], "preferred_name": "Sanin, Francisco", "authorized_access_point": "Sanin, Francisco"} 1 -2023-07-08 08:21:34.684972 2023-07-08 08:21:34.684977 7c01e3be-2dd9-4c39-8a45-3a6f5e62ed2b {"md5": "5183b43384d64d5d7961d510bf34f977", "pid": "188624295", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/188624295", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/188624295", "source": "IDREF"}], "preferred_name": "Aernecke, Susanne", "country_associated": "sa", "authorized_access_point": "Aernecke, Susanne", "biographical_information": ["Écrivain allemand"]} 1 -2023-07-08 08:21:34.857695 2023-07-08 08:21:34.857703 64242839-5188-42e8-af68-ae49287fa7c1 {"md5": "56f4f37875b0834f966cb756994b59f9", "pid": "188721665", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/188721665", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/188721665", "source": "IDREF"}], "date_of_birth": "1947-08-05", "preferred_name": "Rissel, Alain", "country_associated": "fr", "authorized_access_point": "Rissel, Alain, 1947-....", "biographical_information": ["Sociologue du développement et de l'aménagement des territoires ruraux"]} 1 -2023-07-08 08:21:34.943752 2023-07-08 08:21:34.943766 ecce95af-8b52-45d6-96fd-26bcc91e60a2 {"md5": "a5dd6a9d2c80b200a9bd803576b3ecaa", "pid": "188848614", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/188848614", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/188848614", "source": "IDREF"}], "preferred_name": "Barreiro, Pilar", "country_associated": "sp", "authorized_access_point": "Barreiro, Pilar", "biographical_information": ["Maire de Carthagène de 1995 à 2015"]} 1 -2023-07-08 08:21:34.540986 2023-07-08 10:27:53.777644 bfc447cf-68e5-43a2-80e6-88cd25d61910 {"md5": "4bcaf7e455285d5db83274f6786151b3", "pid": "18786893X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/18786893X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/18786893X", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Laval, Roseline", "country_associated": "fr", "authorized_access_point": "Laval, Roseline, 19..-...."} 2 -2023-07-08 08:21:35.118843 2023-07-08 08:21:35.11885 c6def61d-5175-4fd4-820c-874775ac7ea4 {"md5": "7e6e4c8b5d063d46573dba870da3c1c9", "pid": "189006161", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["cze", "slv"], "identifier": "http://www.idref.fr/189006161", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/189006161", "source": "IDREF"}], "preferred_name": "Benhart, František", "authorized_access_point": "Benhart, František", "biographical_information": ["Traducteur"]} 1 -2023-07-08 08:21:35.204339 2023-07-08 08:21:35.204345 b8b3d583-8d83-4b8a-80a1-299a389794f9 {"md5": "b44390e11c62db57a3a3409d82fbc272", "pid": "189240113", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre", "ira"], "identifier": "http://www.idref.fr/189240113", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/189240113", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Salahshour Dehchali, Jamshid", "country_associated": "fr", "authorized_access_point": "Salahshour Dehchali, Jamshid, 19..-....", "biographical_information": ["Titulaire d’un doctorat en Urbanisme (INSA Lyon 1997)"]} 1 -2023-07-08 08:21:35.293593 2023-07-08 08:21:35.293599 070f647e-d5a2-4e6a-b56b-dae535628f2a {"md5": "5979c9704dac1a158483f27463cefcb0", "pid": "189252138", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/189252138", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/189252138", "source": "IDREF"}], "date_of_birth": "1989-10-08", "preferred_name": "Biaudis, Marine", "country_associated": "fr", "authorized_access_point": "Biaudis, Marine", "biographical_information": ["Titulaire d'une thèse d'exercice de pharmacie (Limoges : 2015 ; 3302)"]} 1 -2023-07-08 08:21:35.382273 2023-07-08 08:21:35.382278 49b1be2b-56a9-48eb-aede-472baae56115 {"md5": "4a13ace0c2ef86e258f2fafcc218bdc3", "pid": "189322454", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["chi"], "qualifier": "professeur de français", "identifier": "http://www.idref.fr/189322454", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/189322454", "source": "IDREF"}], "variant_name": ["李, 军, professeur de français"], "date_of_birth": "1956", "preferred_name": "Li, Jun, professeur de français", "country_associated": "cc", "variant_access_point": ["李, 军, 1956-...., professeur de français"], "authorized_access_point": "Li, Jun, 1956-....., professeur de français"} 1 -2023-07-08 08:21:35.466823 2023-07-08 08:21:35.466829 90d7b723-ceb3-4a72-a288-b597abc3cc0b {"md5": "9322a1bbe9428ee5afa0810a53a6fc4f", "pid": "189510145", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": false, "identifier": "http://www.idref.fr/189510145", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/189510145", "source": "IDREF"}], "preferred_name": "Institut für Jugendkunde (Brême, Allemagne)", "country_associated": "gw", "authorized_access_point": "Institut für Jugendkunde (Brême, Allemagne)"} 1 -2023-07-08 08:21:35.637866 2023-07-08 08:21:35.637875 8c288053-0fe8-4dd9-ab34-5cbd71801bfd {"md5": "6cdabb43a73655bdd8ace187d44b7497", "pid": "189897678", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/189897678", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/189897678", "source": "IDREF"}], "preferred_name": "Te Riele, G.-J.-M.-J.", "country_associated": "ne", "authorized_access_point": "Te Riele, G.-J.-M.-J."} 1 -2023-07-08 08:21:35.750232 2023-07-08 08:21:35.75024 4f9344e6-81a5-415d-8ad3-3232aa97fcc1 {"md5": "95fef52c9acb1ccd1600bd678c28d2c2", "pid": "189921080", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/189921080", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/189921080", "source": "IDREF"}], "date_of_birth": "1979", "preferred_name": "Mishara, Sara", "country_associated": "xxc", "authorized_access_point": "Mishara, Sara, 1979-....", "biographical_information": ["Directrice de la photographie"]} 1 -2023-07-08 08:21:35.915931 2023-07-08 08:21:35.915939 9322dc5d-8ab1-4aa0-93f2-8b0f4e2219ac {"md5": "63f628b1fb5d88f94bbd2875877bea55", "pid": "190056002", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/190056002", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/190056002", "source": "IDREF"}], "variant_name": ["McBride, Christopher"], "date_of_birth": "1941", "preferred_name": "McBride, Chris", "country_associated": "xx", "variant_access_point": ["McBride, Christopher"], "authorized_access_point": "McBride, Chris, 1941-...."} 1 -2023-07-08 08:21:36.010236 2023-07-08 08:21:36.010244 835dd65d-9584-4246-a959-6b7420b81a73 {"md5": "f5451ec29770975f1a2cf362214b544b", "pid": "190064323", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/190064323", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/190064323", "source": "IDREF"}], "preferred_name": "Wilkins, William George", "authorized_access_point": "Wilkins, William George"} 1 -2023-07-08 08:21:35.552415 2023-07-08 10:29:58.238539 51a7d375-eaa5-4f58-be8b-8587d1be138c {"md5": "363d5debc653e6b26b94b42fe413a533", "pid": "189789581", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "identifier": "http://www.idref.fr/189789581", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/189789581", "source": "IDREF"}], "variant_name": ["石踊, 紘一"], "date_of_birth": "1941", "preferred_name": "Ishiodori, Kōichi", "country_associated": "ja", "variant_access_point": ["石踊, 紘一, 1941-...."], "authorized_access_point": "Ishiodori, Kōichi, 1941-....", "biographical_information": ["Transcription Hepburn modifiée", "Peintre"]} 2 -2023-07-08 08:21:35.836589 2023-07-08 10:30:36.686981 a2cae0be-b2e3-4c1d-b913-483e3ccece63 {"md5": "d0399654532d3ba8cd5229fb8124b939", "pid": "190050721", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/190050721", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/190050721", "source": "IDREF"}], "preferred_name": "Feroumont, Bernadette", "country_associated": "fr", "authorized_access_point": "Feroumont, Bernadette"} 2 -2023-07-08 08:21:36.201436 2023-07-08 08:21:36.201441 fcca8e9f-cc21-437b-a234-83486dd620b7 {"md5": "6e2a13dfc8a3d906db1c4baff4d1bf13", "pid": "190133139", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifier": "http://www.idref.fr/190133139", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/190133139", "source": "IDREF"}], "variant_name": ["ISE 8"], "preferred_name": "International symposium on electrets", "date_of_termination": "1994-09-09", "variant_access_point": ["ISE 8"], "date_of_establishment": "1994-09-07", "authorized_access_point": "International symposium on electrets (8 ; 1994 ; Paris)"} 1 -2023-07-08 08:21:36.296001 2023-07-08 08:21:36.296006 1a64048a-0f05-4466-be71-3c4013b60f1d {"md5": "446b06758515b8050f12984f8521e981", "pid": "190148667", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifier": "http://www.idref.fr/190148667", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/190148667", "source": "IDREF"}], "variant_name": ["Facoltà giuridica (Naples, Italie)"], "preferred_name": "Università degli studi (Naples, Italie). Facoltà giuridica", "country_associated": "it", "date_of_termination": "1991", "variant_access_point": ["Facoltà giuridica (Naples, Italie)"], "date_of_establishment": "1948", "parallel_access_point": ["Université de Naples (Naples, Italie). Faculté de droit"], "authorized_access_point": "Università degli studi (Naples, Italie). Facoltà giuridica"} 1 -2023-07-08 08:21:36.398458 2023-07-08 08:21:36.398466 6667c210-5218-4072-be62-37ccaae6bd1d {"md5": "2abf6fa83c3fc293122d1fcac59fc27f", "pid": "19024951X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["hrv"], "identifier": "http://www.idref.fr/19024951X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/19024951X", "source": "IDREF"}], "variant_name": ["Божић, Иван"], "date_of_birth": "1915-04-23", "date_of_death": "1977-08-20", "preferred_name": "Božić, Ivan", "country_associated": "ci", "variant_access_point": ["Божић, Иван, 1915-1977"], "authorized_access_point": "Božić, Ivan, 1915-1977", "biographical_information": ["Historien croate", "Lieu de naissance Makarska (Croatie). Lieu de décès Belgrade"]} 1 -2023-07-08 08:21:36.502893 2023-07-08 08:21:36.502898 0cc594dd-7aec-4042-a6e9-7926544c38d6 {"md5": "e2cc66e9c671108abc8e27e59321194b", "pid": "190365420", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/190365420", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/190365420", "source": "IDREF"}], "preferred_name": "Borgnet, Jules", "country_associated": "be", "authorized_access_point": "Borgnet, Jules"} 1 -2023-07-08 08:21:36.683101 2023-07-08 08:21:36.683106 9738ade3-135f-4b6c-8f87-3c8dd67d1bae {"md5": "112c91e3bb3f6955a9ad198929712485", "pid": "190408413", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/190408413", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/190408413", "source": "IDREF"}], "preferred_name": "Chanut, Valérie", "country_associated": "fr", "authorized_access_point": "Chanut, Valérie", "biographical_information": ["Adresse : 41 rue Mazarine, 75006 Paris. Tél. : 01 43 54 04 70", "Libraire, expert"]} 1 -2023-07-08 08:21:36.776869 2023-07-08 08:21:36.776877 c3894a86-77c2-4b52-bc65-70a0c369ad16 {"md5": "01e187ea04811f49da7b4628b4a5fd64", "pid": "190629525", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/190629525", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/190629525", "source": "IDREF"}], "variant_name": ["AAMB"], "preferred_name": "Association des amis de Marius Borgeaud", "country_associated": "sz", "variant_access_point": ["AAMB"], "date_of_establishment": "1993", "authorized_access_point": "Association des amis de Marius Borgeaud", "biographical_information": ["Adresse : Condémine 9, CH-1315 La Sarraz (Suisse)"]} 1 -2023-07-08 08:21:36.86376 2023-07-08 08:21:36.863771 f42e3219-4cfb-4b9f-8b77-4244275fae49 {"md5": "a0a225925ec8acd12706a71295ef2ab2", "pid": "190679204", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa", "eng"], "identifier": "http://www.idref.fr/190679204", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/190679204", "source": "IDREF"}], "date_of_birth": "1949", "preferred_name": "Bustamante, Maris", "country_associated": "xxu", "authorized_access_point": "Bustamante, Maris, 1949-...", "biographical_information": ["Artiste"]} 1 -2023-07-08 08:21:36.945495 2023-07-08 08:21:36.945502 75cc78eb-fc15-4773-9d13-11924935d9c3 {"md5": "2125b3f381ce55280e3b59ada2e91052", "pid": "190701285", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut"], "identifier": "http://www.idref.fr/190701285", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/190701285", "source": "IDREF"}], "variant_name": ["De Roo, Ruben"], "date_of_birth": "19XX", "preferred_name": "Roo, Ruben de", "country_associated": "ne", "variant_access_point": ["De Roo, Ruben"], "authorized_access_point": "Roo, Ruben de, 19..-....", "biographical_information": ["Historien d'art et historien du théâtre"]} 1 -2023-07-08 08:21:37.028426 2023-07-08 08:21:37.028432 eee41ca6-dc95-4465-be96-c3f55f6edf38 {"md5": "de72d3ca8682cd3877cce1687de6a02e", "pid": "190708085", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifier": "http://www.idref.fr/190708085", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/190708085", "source": "IDREF"}], "variant_name": ["Винокур, Раиса Даниловна", "Vinokour, Raïssa Danilovna", "Vinokour, Raïssa", "Vinokour, R. D.", "Винокур, Раиса", "Винокур, Р. Д.", "Винокур, Р."], "preferred_name": "Vinokur, Raisa Danilovna", "country_associated": "ru", "variant_access_point": ["Vinokour, Raïssa Danilovna", "Vinokour, Raïssa", "Vinokour, R. D.", "Винокур, Раиса", "Винокур, Р. Д.", "Винокур, Р."], "authorized_access_point": "Vinokur, Raisa Danilovna", "biographical_information": ["Maître de conférence à l'Institut d’État des finances de Moscou"]} 1 -2023-07-08 08:21:37.098327 2023-07-08 08:21:37.098332 156d1389-b1e5-47c8-83d0-0e9e54327fe9 {"md5": "7a58a92770f34ad504861d3703b2df6a", "pid": "190712120", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/190712120", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/190712120", "source": "IDREF"}], "preferred_name": "Brázdová, Veronika", "authorized_access_point": "Brázdová, Veronika", "biographical_information": ["En poste au Département de physique et d'astronomie de l'Université College London"]} 1 -2023-07-08 08:21:37.178462 2023-07-08 08:21:37.17847 95206f06-e83e-480c-8015-0515dd6d492a {"md5": "4f510b6676b101ccadf522ce5e920669", "pid": "190913142", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/190913142", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/190913142", "source": "IDREF"}], "variant_name": ["Milligan, Jean Callender"], "preferred_name": "Milligan, Jean C.", "variant_access_point": ["Milligan, Jean Callender"], "authorized_access_point": "Milligan, Jean C.", "biographical_information": ["Spécialiste des danses folkloriques écossaises"]} 1 -2023-07-08 08:21:37.281719 2023-07-08 08:21:37.281726 7f31c8c0-be96-437e-9caf-807996aaa93d {"md5": "43407394243ba24f58f685709fa40126", "pid": "19105254X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/19105254X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/19105254X", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Henry, Manuel", "country_associated": "fr", "authorized_access_point": "Henry, Manuel, 19..-....", "biographical_information": ["Titulaire du Doctorat en Sciences (Lyon 1, 2006). Ingénieur CPE Lyon"]} 1 -2023-07-08 08:21:37.372546 2023-07-08 08:21:37.37255 e31e5ea6-7d98-479e-97ef-f2023c37fa3c {"md5": "a63aadfad6aa2b62fcaede5da7c0731b", "pid": "191057142", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/191057142", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/191057142", "source": "IDREF"}], "preferred_name": "Lanman, Thomas Hinckley", "authorized_access_point": "Lanman, Thomas Hinckley"} 1 -2023-07-08 08:21:37.578345 2023-07-08 08:21:37.578349 c4da6b68-df6f-4499-8a18-87cfe69249b9 {"md5": "75dceb9e8c148a8adcc0fa81c7021a80", "pid": "191305928", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/191305928", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/191305928", "source": "IDREF"}], "preferred_name": "Tessoni, Eugenio", "country_associated": "it", "authorized_access_point": "Tessoni, Eugenio", "biographical_information": ["Spécialiste d'architecture"]} 1 -2023-07-08 08:21:37.669434 2023-07-08 08:21:37.669441 6ac83675-c07e-49a9-9d32-f05cf0ede15f {"md5": "8091da3cca0fbe207a9ccda0c23f28b7", "pid": "191591335", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/191591335", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/191591335", "source": "IDREF"}], "date_of_birth": "1980-03-13", "preferred_name": "Lavaux, François", "country_associated": "fr", "authorized_access_point": "Lavaux, François, 1980-...."} 1 -2023-07-08 08:21:37.768907 2023-07-08 08:21:37.768914 86be8193-b731-4d83-a2a2-49e78ca8b33e {"md5": "3108013fcafd60b4b70484343ef42df9", "pid": "191603449", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/191603449", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/191603449", "source": "IDREF"}], "date_of_birth": "1965", "preferred_name": "Tosi, Maria Chiara", "country_associated": "it", "authorized_access_point": "Tosi, Maria Chiara, 1965-....", "biographical_information": ["Professeur d'Urban design, IUAV (2013)"]} 1 -2023-07-08 08:21:37.864078 2023-07-08 08:21:37.864082 4f53af8c-fc69-477b-8b8f-29bf17256353 {"md5": "58216ffd3f6a7f39eb029e90d238ce4b", "pid": "191644315", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/191644315", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/191644315", "source": "IDREF"}], "variant_name": ["Josa, Pedro F. R."], "date_of_birth": "1975", "preferred_name": "Josa, Pedro Francisco Ramos", "country_associated": "sp", "variant_access_point": ["Josa, Pedro F. R."], "authorized_access_point": "Josa, Pedro Francisco Ramos, 1975-....", "biographical_information": ["Licencié en science politique et sociologie. Titulaire d'un doctorat sur la paix et la sécurité internationale : Instituto General Gutiérrez Mellado (UNED), Madrid, Espagne. Collaborateur : Instituto Conde de Floridablanca, Espagne, et de la revue électronique : \\"kosmos-polis"]} 1 -2023-07-08 08:21:37.962015 2023-07-08 08:21:37.962025 536388f4-b129-4c22-95f8-d75b0dea6315 {"md5": "5fe0816fbf4acb64c07f2747ff3269c3", "pid": "191710849", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "qualifier": "Médecin", "identifier": "http://www.idref.fr/191710849", "numeration": "19..-19..?", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/191710849", "source": "IDREF"}], "preferred_name": "Hangleiter, H., Médecin", "country_associated": "gw", "authorized_access_point": "Hangleiter, H., 19..-19..?, Médecin", "biographical_information": ["Médecin. Chef-médecin de l'hôpital Karl-Olga de Stuttgart."]} 1 -2023-07-08 08:21:37.469235 2023-07-08 10:31:13.102824 f57afd81-6770-4f0a-9bff-387f45c58380 {"md5": "641f7ce3670aa0538b080fe4d6cf89ec", "pid": "19107425X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/19107425X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/19107425X", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Boileau, Géry", "authorized_access_point": "Boileau, Géry, 19..-...."} 2 -2023-07-08 08:21:38.054591 2023-07-08 08:21:38.054595 0043f8ba-7d22-4584-ad52-bd4d5f0b18e6 {"md5": "0d63b89ca46d4b7032a12b6848a2d8ba", "pid": "191721166", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifier": "http://www.idref.fr/191721166", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/191721166", "source": "IDREF"}], "variant_name": ["Conférence intercantonale des chefs des départements de l'instruction publique de la Suisse romande et du Tessin. Délégation à la langue française", "Conférence intercantonale des chefs des départements de l'instruction publique de la Suisse romande et du Tessin. DLF", "CIIP. DLF", "DLF", "Délégation à la langue française"], "preferred_name": "Conférence intercantonale de l'instruction publique de la Suisse romande et du Tessin. Délégation à la langue française", "country_associated": "sz", "variant_access_point": ["Conférence intercantonale des chefs des départements de l'instruction publique de la Suisse romande et du Tessin. Délégation à la langue française", "Conférence intercantonale des chefs des départements de l'instruction publique de la Suisse romande et du Tessin. DLF", "CIIP. DLF", "DLF", "Délégation à la langue française"], "authorized_access_point": "Conférence intercantonale de l'instruction publique de la Suisse romande et du Tessin. Délégation à la langue française"} 1 -2023-07-08 08:21:38.366839 2023-07-08 08:21:38.366843 3069e65d-4566-4c90-9e13-311c9c22c599 {"md5": "a8c1e6baa6cd6f62b4035c7be331b70c", "pid": "192166506", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifier": "http://www.idref.fr/192166506", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/192166506", "source": "IDREF"}], "variant_name": ["DJH"], "preferred_name": "Deutsches Jugendherbergswerk", "variant_access_point": ["DJH"], "authorized_access_point": "Deutsches Jugendherbergswerk"} 1 -2023-07-08 08:21:38.450813 2023-07-08 08:21:38.450817 a02ea485-e8d2-413f-b4a8-ca552fce56dd {"md5": "9a3bdb4a5e698ac65a3a63c8b7f75a66", "pid": "192198149", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/192198149", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/192198149", "source": "IDREF"}], "date_of_birth": "1990-12-31", "preferred_name": "Scheer, Marianne", "country_associated": "fr", "authorized_access_point": "Scheer, Marianne, 1990-", "biographical_information": ["Auteur d'une thèse d'exercice de chirurgie dentaire soutenue à Paris Diderot - Paris 7 en 2015"]} 1 -2023-07-08 08:21:38.551051 2023-07-08 08:21:38.551059 0d015800-8645-424c-8576-e16a10b45b91 {"md5": "fca58597e3c85420e9a8d538b9878ab5", "pid": "192269097", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/192269097", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/192269097", "source": "IDREF"}], "variant_name": ["Union nationale des fédérations départementales des chasseurs (France). Région cynégétique du Sud-Ouest"], "preferred_name": "Région cynégétique du Sud-Ouest", "country_associated": "fr", "variant_access_point": ["Union nationale des fédérations départementales des chasseurs (France). Région cynégétique du Sud-Ouest"], "authorized_access_point": "Région cynégétique du Sud-Ouest", "biographical_information": ["Regroupe les 13 fédérations départementales des chasseurs du Sud-Ouest", "Adresse : C/o Fédération départementale des chasseurs des Landes, 151 av. Georges-Clemenceau, BP 172, 40104 Dax Cedex. Tél. 58.90.18.69"]} 1 -2023-07-08 08:21:38.637058 2023-07-08 08:21:38.637061 d9ad9ea3-d726-4001-8f49-e5dc1ffe2122 {"md5": "0ceef9b908422d1880032be50a2eb4e2", "pid": "192280953", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/192280953", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/192280953", "source": "IDREF"}], "date_of_birth": "18", "date_of_death": "18", "preferred_name": "Leharivel, Pierre-Théodose-Constant", "country_associated": "fr", "authorized_access_point": "Leharivel, Pierre-Théodose-Constant, 18..-....", "biographical_information": ["Docteur ès Lettres de l'Université de Caen (en 1841)"]} 1 -2023-07-08 08:21:38.850349 2023-07-08 08:21:38.850353 44416270-2055-47ea-8fd2-f2e576574bd4 {"md5": "226e8fd276b8949bc29c5296cf42be1c", "pid": "192319116", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/192319116", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/192319116", "source": "IDREF"}], "date_of_birth": "1906", "date_of_death": "1973", "preferred_name": "Dye, Charlie", "country_associated": "xxu", "authorized_access_point": "Dye, Charlie, 1906-1973", "biographical_information": ["Artiste américain, connu pour ses peintures de cowboys"]} 1 -2023-07-08 08:21:38.939449 2023-07-08 08:21:38.939458 23ec43e6-fb25-4319-bc17-1459aa39eafe {"md5": "f26d29cc209b232a35ba6f9de29c42c2", "pid": "19239486X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/19239486X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/19239486X", "source": "IDREF"}], "variant_name": ["Recherche et pratique sur les activités (Vitry-sur-Seine, Val-de-Marne)", "ARPACT"], "preferred_name": "Association Recherche et pratique sur les activités (Vitry-sur-Seine, Val-de-Marne)", "country_associated": "fr", "variant_access_point": ["Recherche et pratique sur les activités (Vitry-sur-Seine, Val-de-Marne)", "ARPACT"], "authorized_access_point": "Association Recherche et pratique sur les activités (Vitry-sur-Seine, Val-de-Marne)", "biographical_information": ["Adresse : 7 av. de la République, 94400 Vitry-sur-Seine"]} 1 -2023-07-08 08:21:38.259406 2023-07-08 10:30:21.956762 9029c896-0131-4e13-9870-e29308a1a92c {"md5": "571c13f48daf740bfda8f084493d2695", "pid": "192012401", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/192012401", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/192012401", "source": "IDREF"}], "date_of_birth": "1991-01-29", "preferred_name": "Gout, Laure", "country_associated": "fr", "authorized_access_point": "Gout, Laure, 1991-....", "biographical_information": ["A soutenu un mémoire d'orthophonie à l'école d'orthophonie de l'Université de Nice en 2015"]} 2 -2023-07-08 08:21:39.024254 2023-07-08 08:21:39.02426 16d15982-e7d0-45a5-a8fa-ab744ba0d026 {"md5": "afe4212d64601fe90664563cdaece324", "pid": "192408909", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre", "bul"], "identifier": "http://www.idref.fr/192408909", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/192408909", "source": "IDREF"}], "preferred_name": "Baracoff-Dimitre", "country_associated": "bu", "authorized_access_point": "Baracoff-Dimitre", "biographical_information": ["Né à Pechtera (Bulgarie)", "Auteur d'une thèse de doctorat en médecine (Paris, 1902)"]} 1 -2023-07-08 08:21:39.094282 2023-07-08 08:21:39.094285 2ecee4f3-cd01-4f60-b6b2-22fa21b1fb89 {"md5": "689493b3654b94fcbe8ecd8b09116db4", "pid": "192529641", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifier": "http://www.idref.fr/192529641", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/192529641", "source": "IDREF"}], "variant_name": ["APPMSA"], "preferred_name": "American Pulp and Paper Mill Superintendents Association", "country_associated": "xxu", "variant_access_point": ["APPMSA"], "authorized_access_point": "American Pulp and Paper Mill Superintendents Association"} 1 -2023-07-08 08:21:39.176581 2023-07-08 08:21:39.176593 da4673e2-2597-464e-9716-66e5583d1eec {"md5": "a8dce0f7df4c396d04f6144fe121aa34", "pid": "192628496", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/192628496", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/192628496", "source": "IDREF"}], "preferred_name": "Yashinsky, Jack", "country_associated": "fr", "authorized_access_point": "Yashinsky, Jack"} 1 -2023-07-08 08:21:39.266793 2023-07-08 08:21:39.2668 990b3f90-96d2-49c5-9978-c08a75846e30 {"md5": "05012c873751c76fd96eb6eb63d7665f", "pid": "192640895", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/192640895", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/192640895", "source": "IDREF"}], "preferred_name": "Pla, Jacqueline", "country_associated": "fr", "authorized_access_point": "Pla, Jacqueline", "biographical_information": ["Auteur en médecine"]} 1 -2023-07-08 08:21:39.371313 2023-07-08 08:21:39.371318 cd14fb8a-daa4-4c33-85d5-17e86ae565ec {"md5": "6eb5be7f56e85befca9c45c1353464ac", "pid": "192658697", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "identifier": "http://www.idref.fr/192658697", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/192658697", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Casanova, Tiago", "country_associated": "po", "authorized_access_point": "Casanova, Tiago, 19..-....", "biographical_information": ["Photographe portugais."]} 1 -2023-07-08 08:21:39.590389 2023-07-08 08:21:39.590394 3977c7b5-c78d-4917-b07b-3ae9baa919a6 {"md5": "49bc939838462bc3d6248384404ac2b1", "pid": "192790099", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": false, "identifier": "http://www.idref.fr/192790099", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/192790099", "source": "IDREF"}], "variant_name": ["Klinkhardt und Biermann. Verlag von (Leipzig)"], "preferred_name": "Klinkhardt & Biermann (Leipzig)", "country_associated": "gw", "variant_access_point": ["Klinkhardt und Biermann. Verlag von (Leipzig)"], "date_of_establishment": "1907", "authorized_access_point": "Klinkhardt & Biermann (Leipzig)", "biographical_information": ["éditeurs allemands du début du 20e siècle"]} 1 -2023-07-08 08:21:39.77835 2023-07-08 08:21:39.778354 23710495-6431-465c-bb2f-a72fa716ffe0 {"md5": "b2af448ed81acd28536baaf17dc60fe1", "pid": "192883313", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/192883313", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/192883313", "source": "IDREF"}], "date_of_birth": "1954", "preferred_name": "Fuchino, Sakaé", "country_associated": "gw", "authorized_access_point": "Fuchino, Sakaé, 1954-....", "biographical_information": ["Mathématicien en poste à l'Université de Kobe, Japon"]} 1 -2023-07-08 08:21:39.869393 2023-07-08 08:21:39.869399 7b051aaa-a2de-4543-9e60-979cb1ceae86 {"md5": "b6ef28d557ac01b520039732e6b271a2", "pid": "192969285", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifier": "http://www.idref.fr/192969285", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/192969285", "source": "IDREF"}], "variant_name": ["Priorato cluniacense dei Santi Pietro e Paolo (Castelletto Cervo, Italie)", "Monastero dei Santi Pietro e Paolo (Castelletto Cervo, Italie)", "Monastero di Castelletto"], "preferred_name": "Priorato cluniacense dei S. S. Pietro e Paolo (Castelletto Cervo, Italie)", "country_associated": "it", "variant_access_point": ["Priorato cluniacense dei Santi Pietro e Paolo (Castelletto Cervo, Italie)", "Monastero dei Santi Pietro e Paolo (Castelletto Cervo, Italie)", "Monastero di Castelletto"], "authorized_access_point": "Priorato cluniacense dei S. S. Pietro e Paolo (Castelletto Cervo, Italie)"} 1 -2023-07-08 08:21:39.68251 2023-07-08 10:27:50.622979 66088f59-3df5-4eb1-84a7-9b53fa8ced28 {"md5": "8f45fc469ffb945abb94937e3ce933e1", "pid": "192856200", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/192856200", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/192856200", "source": "IDREF"}], "preferred_name": "Siss, William", "country_associated": "fr", "authorized_access_point": "Siss, William", "biographical_information": ["Peintres aux armées"]} 2 -2023-07-08 08:21:40.061681 2023-07-08 08:21:40.061686 799e5984-72f9-4f41-985a-21dafb59c722 {"md5": "5bd018dcaac37e49e9c1ab16bd18b40c", "pid": "193173328", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifier": "http://www.idref.fr/193173328", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/193173328", "source": "IDREF"}], "preferred_name": "Ensemble Kapsberger", "country_associated": "xx", "date_of_establishment": "19XX", "authorized_access_point": "Ensemble Kapsberger", "biographical_information": ["Ensemble instrumental"]} 1 -2023-07-08 08:21:40.237993 2023-07-08 08:21:40.238001 549bcca1-9f7f-47f4-a755-fc2dc381192f {"md5": "fee5be5d84dd19d4bd4c42936020b3b5", "pid": "193183226", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/193183226", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/193183226", "source": "IDREF"}], "date_of_birth": "1988-02-25", "preferred_name": "Stahl, Hélène", "country_associated": "fr", "authorized_access_point": "Stahl, Hélène", "biographical_information": ["Titulaire d'une thèse de docteur en médecine (Strasbourg, 2016)."]} 1 -2023-07-08 08:21:40.349195 2023-07-08 08:21:40.349203 f3dcfde2-abdc-4dd8-86e5-0f70e4c6fa9c {"md5": "88230a3a1f874be45812ce0a2a64cb19", "pid": "193223287", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/193223287", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/193223287", "source": "IDREF"}], "preferred_name": "Mackiewicz, Andrea", "country_associated": "xx", "authorized_access_point": "Mackiewicz, Andrea", "biographical_information": ["Editeur de The Economist Intelligence Unit"]} 1 -2023-07-08 08:21:40.544116 2023-07-08 08:21:40.544124 52ff7054-a108-42c4-b042-3b1e1d4d5c36 {"md5": "d8f2d3bd807c6944cae6d66d25ab6cb8", "pid": "193284065", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/193284065", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/193284065", "source": "IDREF"}], "date_of_birth": "1965-07-23", "preferred_name": "Minguez, Elvira", "country_associated": "sp", "authorized_access_point": "Minguez, Elvira, 1965-....", "biographical_information": ["Actrice"]} 1 -2023-07-08 08:21:40.829973 2023-07-08 08:21:40.829976 0178db4c-48d1-46df-a6ce-62ab2ab1d5a8 {"md5": "f6c63b33ed0e2ae2a4d6b995dd381afb", "pid": "193585057", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/193585057", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/193585057", "source": "IDREF"}], "preferred_name": "Pingree, Isabelle", "authorized_access_point": "Pingree, Isabelle"} 1 -2023-07-08 08:21:41.03542 2023-07-08 08:21:41.035425 ff0c2cc5-c35f-4dc7-8988-7053e489bfd9 {"md5": "e10b88f6443e5dc84b03bb9eac4cd31b", "pid": "193736063", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["chi"], "identifier": "http://www.idref.fr/193736063", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/193736063", "source": "IDREF"}], "variant_name": ["莫, 莉花", "茉莉", "Moli"], "preferred_name": "Mo, Lihua", "country_associated": "cc", "variant_access_point": ["茉莉", "Moli"], "authorized_access_point": "Mo, Lihua", "biographical_information": ["Écrivain dissident"]} 1 -2023-07-08 08:21:40.637605 2023-07-08 10:27:30.267373 e7073816-ad58-46c1-928c-29268fbf34af {"md5": "13eb47aa5640f1401b53c3e2b0ab4ada", "pid": "19329074X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/19329074X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/19329074X", "source": "IDREF"}], "date_of_birth": "1989-09-16", "preferred_name": "David, Leslie", "country_associated": "fr", "authorized_access_point": "David, Leslie, 1989-....", "biographical_information": ["Auteur d'une thèse en Sciences de l'environnement à Paris 6 en 2015"]} 2 -2023-07-08 08:21:40.146676 2023-07-08 10:28:17.541775 eff0b66c-0506-441d-8f5a-f41cde30cf54 {"md5": "0da6c1f1dd8b7a501e614d8483b57d4b", "pid": "193181878", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/193181878", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/193181878", "source": "IDREF"}], "preferred_name": "Mir, Mark Stephen", "authorized_access_point": "Mir, Mark Stephen", "biographical_information": ["Archiviste"]} 2 -2023-07-08 08:21:40.934588 2023-07-08 10:31:17.756094 2c96c494-c149-47be-81b8-e56bd3990e1d {"md5": "134056d828cfbf1f0ad15bb3eae6db9b", "pid": "193705974", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/193705974", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/193705974", "source": "IDREF"}], "date_of_birth": "1986-01-28", "preferred_name": "Jury, Mickaël", "country_associated": "fr", "authorized_access_point": "Jury, Mickaël, 1986-....", "biographical_information": ["Auteur d'une thèse en Psychologie à Clermont-Ferrand 2 en 2014"]} 2 -2023-07-08 08:21:40.743197 2023-07-08 10:31:18.130566 53ad880d-71a0-408f-adda-50c994168079 {"md5": "eb4716822597065b421492db697209d7", "pid": "193499975", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/193499975", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/193499975", "source": "IDREF"}], "preferred_name": "Castéra, Nadine", "country_associated": "fr", "authorized_access_point": "Castéra, Nadine", "biographical_information": ["Auteur de manuels scolaires d'espagnol, en poste au collège Jean-Claude Sescousse (40) (en 2016)"]} 2 -2023-07-08 08:21:41.315826 2023-07-08 08:21:41.315833 0dac9275-7724-4552-a02e-78cffe3ed738 {"md5": "6d5dfa648ffca098a6a39ec3e9f82c04", "pid": "193825813", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/193825813", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/193825813", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Kazhdan, Michael", "country_associated": "xx", "authorized_access_point": "Kazhdan, Michael, 19..-....", "biographical_information": ["Membre du jury d'une thèse en Informatique soutenue à Lyon 1 en 2015"]} 1 -2023-07-08 08:21:41.393676 2023-07-08 08:21:41.393681 bcbad836-261a-4b62-b57f-32f446fa7ba0 {"md5": "8164e06555b05b7cb9eed57ad9e06bef", "pid": "193876191", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/193876191", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/193876191", "source": "IDREF"}], "date_of_birth": "1965", "preferred_name": "Vietti, Stefano", "country_associated": "it", "authorized_access_point": "Vietti, Stefano, 1965-....", "biographical_information": ["Auteur de bandes dessinées"]} 1 -2023-07-08 08:21:41.578486 2023-07-08 08:21:41.578489 fdfeb891-ef45-4d9d-b944-d66c3570fa7f {"md5": "75613ace42893b33ab542c0dcb2c25d8", "pid": "193982269", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/193982269", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/193982269", "source": "IDREF"}], "preferred_name": "Larribere, Céline", "country_associated": "fr", "authorized_access_point": "Larribere, Céline"} 1 -2023-07-08 08:21:41.666787 2023-07-08 08:21:41.666794 cadf773d-fdf1-4748-b7ad-fbb8d2ca9aeb {"md5": "855ddc1f888cf73c344710b254e6afc0", "pid": "194122603", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["geo"], "identifier": "http://www.idref.fr/194122603", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/194122603", "source": "IDREF"}], "variant_name": ["კეკელიძე, გიორგი", "Kekelidze, Giorgi"], "date_of_birth": "1984", "preferred_name": "Kekelije, Giorgi", "country_associated": "gau", "variant_access_point": ["Kekelidze, Giorgi"], "authorized_access_point": "Kekelije, Giorgi, 1984-", "biographical_information": ["Ecrivain géorgien"]} 1 -2023-07-08 08:21:41.752239 2023-07-08 08:21:41.752245 002bf907-393b-414a-aeea-4f537228a90f {"md5": "309811b812c9e3613c5e1b2d0ef46efc", "pid": "194162419", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/194162419", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/194162419", "source": "IDREF"}], "preferred_name": "Gallery K (Los Angeles)", "country_associated": "xxu", "authorized_access_point": "Gallery K (Los Angeles)"} 1 -2023-07-08 08:21:41.848934 2023-07-08 08:21:41.848942 b8f58cac-b8c9-40e7-b46b-5cd23338cbf9 {"md5": "5e13a88d595d459f85fbbe40fc567d05", "pid": "194167070", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ara"], "identifier": "http://www.idref.fr/194167070", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/194167070", "source": "IDREF"}], "variant_name": ["سليمان, عبد الله محم"], "date_of_birth": "19XX", "preferred_name": "Sulaymān, ʿAbd Allāh Muḥammad", "country_associated": "sj", "variant_access_point": ["سليمان, عبد الله محم, 19..-...."], "authorized_access_point": "Sulaymān, ʿAbd Allāh Muḥammad, 19..-....", "biographical_information": ["Poète soudanais"]} 1 -2023-07-08 08:21:42.050162 2023-07-08 08:21:42.050167 97bfe34f-8dc4-471f-b666-9e3dc142289e {"md5": "50c017bf395038b6eb7bfe0835a689b3", "pid": "194503941", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/194503941", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/194503941", "source": "IDREF"}], "preferred_name": "Contri, Giacomo B.", "country_associated": "it", "authorized_access_point": "Contri, Giacomo B."} 1 -2023-07-08 08:21:42.130675 2023-07-08 08:21:42.130684 99117e3c-afcb-4399-9d08-9f13edcbdd98 {"md5": "e23030b73670f7ddf2828370afd1aaa4", "pid": "194564932", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/194564932", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/194564932", "source": "IDREF"}], "preferred_name": "Texas State library and archives commission", "country_associated": "xxu", "authorized_access_point": "Texas State library and archives commission", "biographical_information": ["Adresse : Capitol complex : 1201 Brazos St., Austin. Adresse électronique : info@tsl.state.tx.us"]} 1 -2023-07-08 08:21:42.247643 2023-07-08 08:21:42.247648 4ef2a2c6-c616-4196-b98a-4f0b48045368 {"md5": "f552a46e3eec1276d8b4f92166af1f5f", "pid": "194577058", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/194577058", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/194577058", "source": "IDREF"}], "date_of_birth": "1880", "date_of_death": "1957", "preferred_name": "Hommel, Paul", "country_associated": "gw", "authorized_access_point": "Hommel, Paul, 1880-1957", "biographical_information": ["Photographe"]} 1 -2023-07-08 08:21:41.482204 2023-07-08 10:27:30.70452 7a520a6a-ad4f-4a1b-a6f8-6a388ae8150f {"md5": "04d7b4ded800ff74dc3fcea078c8a028", "pid": "193955482", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/193955482", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/193955482", "source": "IDREF"}], "preferred_name": "Micheli, Delphine", "authorized_access_point": "Micheli, Delphine", "biographical_information": ["Photographe"]} 2 -2023-07-08 08:21:42.347631 2023-07-08 08:21:42.347637 039ab2ae-8968-4fe2-a29f-ec625bafc6d8 {"md5": "509e933446efd712e36c097020759f21", "pid": "194588718", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/194588718", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/194588718", "source": "IDREF"}], "variant_name": ["International council on archives. Architectural records section"], "preferred_name": "Conseil international des archives. Section des archives d'architecture", "country_associated": "fr", "variant_access_point": ["International council on archives. Architectural records section"], "authorized_access_point": "Conseil international des archives. Section des archives d'architecture"} 1 -2023-07-08 08:21:42.466366 2023-07-08 08:21:42.466371 0fa4b4f1-1576-42c7-9376-1ce886732776 {"md5": "c670a732e10444381a620d044c4f9ce7", "pid": "194616320", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/194616320", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/194616320", "source": "IDREF"}], "preferred_name": "Windeck, Georg", "country_associated": "xxu", "authorized_access_point": "Windeck, Georg", "biographical_information": ["Spécialiste"]} 1 -2023-07-08 08:21:42.553976 2023-07-08 08:21:42.553982 6b98e64b-894b-4e02-8d63-4a03e004c7c2 {"md5": "ddf915b60c72216068cfcf0996481700", "pid": "194625036", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/194625036", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/194625036", "source": "IDREF"}], "variant_name": ["Salomon, Richard Siegfried Harry"], "date_of_birth": "1876-06-21", "preferred_name": "Salomon, Harry", "country_associated": "gw", "variant_access_point": ["Salomon, Richard Siegfried Harry"], "authorized_access_point": "Salomon, Harry, 1876-...."} 1 -2023-07-08 08:21:42.625188 2023-07-08 08:21:42.625191 036cc008-604d-4904-8fc3-7f155f8b237e {"md5": "35e244da58abbd1eb4931b35f9414881", "pid": "194925625", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/194925625", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/194925625", "source": "IDREF"}], "preferred_name": "Hoffmann, M.", "country_associated": "gw", "authorized_access_point": "Hoffmann, M.", "biographical_information": ["ingénieur en électronique numérique"]} 1 -2023-07-08 08:21:42.714078 2023-07-08 08:21:42.714086 fb335e2d-5118-4f62-9929-d336b6a5a34b {"md5": "255f084a03d725adc76d07dcc94c692a", "pid": "195021371", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/195021371", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/195021371", "source": "IDREF"}], "variant_name": ["Pantoja, Elías Serrano"], "date_of_birth": "1948", "preferred_name": "Serrano Pantoja, Elías", "country_associated": "bo", "variant_access_point": ["Pantoja, Elías Serrano"], "authorized_access_point": "Serrano Pantoja, Elías, 1948-....", "biographical_information": ["Poète, acteur"]} 1 -2023-07-08 08:21:42.911261 2023-07-08 08:21:42.911268 ab049b05-0b8b-421f-b275-56b59765e782 {"md5": "9a74357e6e1debea79257a65ceb79932", "pid": "195247922", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/195247922", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/195247922", "source": "IDREF"}], "preferred_name": "Heilperin, Michel Angelo", "authorized_access_point": "Heilperin, Michel Angelo"} 1 -2023-07-08 08:21:43.017469 2023-07-08 08:21:43.017477 6ba6158e-e956-4c92-8eae-83a233278188 {"md5": "548c4b2905e7480c6b6caa37af103516", "pid": "195263472", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/195263472", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/195263472", "source": "IDREF"}], "date_of_birth": "1987-01-27", "preferred_name": "Cazaux, Guillaume", "country_associated": "fr", "authorized_access_point": "Cazaux, Guillaume, 1987-....", "biographical_information": ["Docteur en Mécanique et matériaux (Le Havre, 2016)"]} 1 -2023-07-08 08:21:43.11396 2023-07-08 08:21:43.113969 8d109e4c-a8db-4879-a282-129cade82a06 {"md5": "8592a535eaa92b0a309ab1dd3b8788c4", "pid": "195274059", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifier": "http://www.idref.fr/195274059", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/195274059", "source": "IDREF"}], "variant_name": ["Зеленин, Александр Владимирович", "Зеленин, А.В.", "Zelenin, A.V."], "preferred_name": "Zelenin, Aleksandr Vladimirovič", "country_associated": "ru", "variant_access_point": ["Зеленин, А.В.", "Zelenin, A.V."], "authorized_access_point": "Zelenin, Aleksandr Vladimirovič"} 1 -2023-07-08 08:21:43.196775 2023-07-08 08:21:43.196785 ff8fcac3-b24c-4ded-952a-abafdcfd1116 {"md5": "8c4394916a07b11885980f4c502f71ce", "pid": "195276205", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifier": "http://www.idref.fr/195276205", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/195276205", "source": "IDREF"}], "preferred_name": "Associazione artistica culturale G. Pallavicini", "country_associated": "it", "authorized_access_point": "Associazione artistica culturale G. Pallavicini"} 1 -2023-07-08 08:21:43.278022 2023-07-08 08:21:43.278032 ccc238e3-7824-4e89-98f2-46014852925b {"md5": "78fd92f82ca4aacba2e7526f2f98a2f1", "pid": "195286227", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/195286227", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/195286227", "source": "IDREF"}], "preferred_name": "Nicodeau, A.", "authorized_access_point": "Nicodeau, A.", "biographical_information": ["Officier de l'Instruction publique, directeur honoraire d'école communale"]} 1 -2023-07-08 08:21:51.054584 2023-07-08 08:21:51.05459 24beb3b6-87a5-482c-b302-8a86e62256de {"md5": "18f3150933051916fe71507e13b3169a", "pid": "200238574", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/200238574", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/200238574", "source": "IDREF"}], "preferred_name": "Sørensen, Majken Jul", "country_associated": "at", "authorized_access_point": "Sørensen, Majken Jul"} 1 -2023-07-08 08:21:43.478872 2023-07-08 08:21:43.478881 c1a99fdf-23f8-4e75-bc66-48da89d42a11 {"md5": "29d62b5b4987f2e3f70b0a638db57809", "pid": "195370317", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/195370317", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/195370317", "source": "IDREF"}], "variant_name": ["Navette, Sophie"], "date_of_birth": "1987", "preferred_name": "Masse-Navette, Sophie", "variant_access_point": ["Navette, Sophie"], "authorized_access_point": "Masse-Navette, Sophie, 1987-....", "biographical_information": ["Auteur d'une thèse en médecine spécialisée en 2016"]} 1 -2023-07-08 08:21:43.568398 2023-07-08 08:21:43.568406 a130be0c-9e7e-4ab5-b0ec-c301ebeec17b {"md5": "6ca8bee05f694b3b963edcdd5b7de687", "pid": "195403460", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["per"], "identifier": "http://www.idref.fr/195403460", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/195403460", "source": "IDREF"}], "variant_name": ["رضائى, اسد الله", "Riz̤āʼī, Asad Allāh", "Riz̤āyī, Asad Allāh", "Rezaei, Asadallah", "Rezaei, Asadollah", "Rezaei, Asad Allah", "Rezayi, Asadallah", "Rezaei, Asad o llah"], "date_of_birth": "1965", "preferred_name": "Riḍāʼī, Asad Allāh", "country_associated": "ir", "variant_access_point": ["Riz̤āʼī, Asad Allāh", "Riz̤āyī, Asad Allāh", "Rezaei, Asadallah", "Rezaei, Asadollah", "Rezaei, Asad Allah", "Rezayi, Asadallah", "Rezaei, Asad o llah"], "authorized_access_point": "Riḍāʼī, Asad Allāh, 1965-....", "biographical_information": ["Auteur iranien."]} 1 -2023-07-08 08:21:43.654815 2023-07-08 08:21:43.654821 e9cf9193-5841-4561-a41b-96b13f065b3f {"md5": "19d928f3f9e7f6001a547d8ece6bd7bc", "pid": "195430662", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/195430662", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/195430662", "source": "IDREF"}], "date_of_birth": "1990-12-20", "preferred_name": "Gilbert, Amandine", "country_associated": "fr", "authorized_access_point": "Gilbert, Amandine, 1990-....", "biographical_information": ["Titulaire d'un master 2 en études théâtrales de l'Université Paris 3 - Sorbonne nouvelle"]} 1 -2023-07-08 08:21:43.727983 2023-07-08 08:21:43.727991 ed364f85-afc5-49c1-9f7c-f5a92a30deb9 {"md5": "cc55c5f087cb8c824b07531f5b90338a", "pid": "19544504X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ara"], "identifier": "http://www.idref.fr/19544504X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/19544504X", "source": "IDREF"}], "variant_name": ["خمار, عبد الله", "Khammār, ʿAbd Allāh"], "date_of_birth": "1939", "preferred_name": "H̱ammār, ʿAbd Allāh", "variant_access_point": ["Khammār, ʿAbd Allāh"], "authorized_access_point": "H̱ammār, ʿAbd Allāh, 1939-....", "biographical_information": ["Auteur Syrien"]} 1 -2023-07-08 08:21:43.81739 2023-07-08 08:21:43.8174 25a9204d-e784-4db9-aa12-de822c50ee20 {"md5": "819572a1afd4830028549e1d07326300", "pid": "195458575", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifier": "http://www.idref.fr/195458575", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/195458575", "source": "IDREF"}], "variant_name": ["Domenicani del Santuario di S. Maria della Quercia (Viterbe, Italie)"], "preferred_name": "Santuario di S. Maria della Quercia (Viterbe, Italie)", "country_associated": "it", "variant_access_point": ["Domenicani del Santuario di S. Maria della Quercia (Viterbe, Italie)"], "authorized_access_point": "Santuario di S. Maria della Quercia (Viterbe, Italie)", "biographical_information": ["Sanctuaire de frères dominicains"]} 1 -2023-07-08 08:21:44.013956 2023-07-08 08:21:44.01396 46011454-67e5-44da-a2de-5ed77a5e81c0 {"md5": "ccadcbf0e7154af0b09689530efb35ad", "pid": "195544439", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/195544439", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/195544439", "source": "IDREF"}], "preferred_name": "Tournier, Vincent", "country_associated": "fr", "authorized_access_point": "Tournier, Vincent"} 1 -2023-07-08 08:21:44.10367 2023-07-08 08:21:44.103676 9b53cec3-37ad-4cd1-9eea-d2a09771b116 {"md5": "792b92c35e6cb9fbc30e637d180a95b8", "pid": "195555228", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifier": "http://www.idref.fr/195555228", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/195555228", "source": "IDREF"}], "variant_name": ["Colloque \\"Handicaps et insertion sociale\\""], "preferred_name": "Colloque \\"Handicaps et insertion sociale dans le Val de Marne\\"", "country_associated": "fr", "date_of_termination": "1985-12-14", "variant_access_point": ["Colloque \\"Handicaps et insertion sociale\\" (5 ; 1985 ; Créteil)"], "date_of_establishment": "1985-12-14", "authorized_access_point": "Colloque \\"Handicaps et insertion sociale dans le Val de Marne\\" (5 ; 1985 ; Créteil)"} 1 -2023-07-08 08:21:44.195453 2023-07-08 08:21:44.195462 8ca866cf-b47a-4a09-9db6-1855c8d7f492 {"md5": "dd0b664183a0394a0b22003f7ee2ee3e", "pid": "195708814", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/195708814", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/195708814", "source": "IDREF"}], "variant_name": ["INSEE Picardie", "Institut national de la statistique et des études économiques (France). Direction régionale (Amiens)"], "preferred_name": "Institut national de la statistique et des études économiques (France). Direction régionale (Picardie)", "country_associated": "fr", "variant_access_point": ["INSEE Picardie", "Institut national de la statistique et des études économiques (France). Direction régionale (Amiens)"], "authorized_access_point": "Institut national de la statistique et des études économiques (France). Direction régionale (Picardie)", "biographical_information": ["Adresse : 21, Rue des Otages, 80040 Amiens cedex 1. Contact : 03.22.97.32.00"]} 1 -2023-07-08 08:21:44.283977 2023-07-08 08:21:44.283983 87f7e163-3330-413f-ba28-5597fc34f7bb {"md5": "39c96bbf9f0a8a6008f0763b50cf47df", "pid": "195713133", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ice"], "identifier": "http://www.idref.fr/195713133", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/195713133", "source": "IDREF"}], "variant_name": ["Sigþórsson, Börkur"], "preferred_name": "Börkur Sigþórsson", "country_associated": "ic", "variant_access_point": ["Sigþórsson, Börkur"], "authorized_access_point": "Börkur Sigþórsson", "biographical_information": ["Réalisateur islandais"]} 1 -2023-07-08 08:21:44.371576 2023-07-08 08:21:44.371581 ce69dce3-407d-479b-9b1c-307995bb6e36 {"md5": "25b039f85a727662cccf441d68dc5325", "pid": "195791258", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/195791258", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/195791258", "source": "IDREF"}], "date_of_birth": "1987-06-24", "preferred_name": "Paulillo, Bruno", "country_associated": "it", "authorized_access_point": "Paulillo, Bruno, 1987-...."} 1 -2023-07-08 08:21:44.462273 2023-07-08 08:21:44.462277 8f893500-18e0-4e2f-9f4c-e419ccbfe0e7 {"md5": "e9725007db66b291e900ceb07d47717f", "pid": "195824431", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/195824431", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/195824431", "source": "IDREF"}], "variant_name": ["Morlanes, María Jose Martínez"], "date_of_birth": "19XX", "preferred_name": "Martínez Morlanes, María Jose", "country_associated": "sp", "variant_access_point": ["Morlanes, María Jose Martínez"], "authorized_access_point": "Martínez Morlanes, María Jose, 19..-....", "biographical_information": ["Titulaire d'un doctorat en science des matériaux et de l'ingénierie, Zaragova University, Espagne (en 2014)"]} 1 -2023-07-08 08:21:44.549648 2023-07-08 08:21:44.549656 e03ca1c6-9979-409a-b14e-ec10461341c1 {"md5": "4585311f7b5f2307b9ca2769441c7990", "pid": "195941942", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/195941942", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/195941942", "source": "IDREF"}], "date_of_birth": "1941", "preferred_name": "Shaw, Frederick John Jr.", "country_associated": "xxu", "authorized_access_point": "Shaw, Frederick John Jr., 1941-....", "biographical_information": ["Auteur d'une thèse en histoire moderne soutenue à Miami en 1975"]} 1 -2023-07-08 08:21:44.61874 2023-07-08 08:21:44.618742 b9801312-098c-4fef-b275-f52d5c51395e {"md5": "29c44cbbdb8818df50078a49a6cb9191", "pid": "196095700", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/196095700", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196095700", "source": "IDREF"}], "date_of_birth": "1988-10-22", "preferred_name": "Juery, Damien", "country_associated": "fr", "authorized_access_point": "Juery, Damien, 1988-....", "biographical_information": ["Titulaire d'un doctorat de Sciences, spécialité biostatistique (Montpellier 2, 2014)"]} 1 -2023-07-08 08:21:44.688887 2023-07-08 08:21:44.688891 487bfff1-4e44-4ec9-b58c-ef3bf4a87d7e {"md5": "f9be2c64cb8bbc943209a9ff4565ec61", "pid": "196155487", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/196155487", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196155487", "source": "IDREF"}], "preferred_name": "Counts, Clement L.", "country_associated": "xxu", "authorized_access_point": "Counts, Clement L."} 1 -2023-07-08 08:21:44.766176 2023-07-08 08:21:44.76618 1c376893-fc28-47ee-823c-8c415bd83929 {"md5": "597283e3a272077ce7fa8e7e05b2e80f", "pid": "196254795", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/196254795", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196254795", "source": "IDREF"}], "preferred_name": "DePaor, Tom", "country_associated": "ie", "authorized_access_point": "DePaor, Tom", "biographical_information": ["Spécialiste de l'art"]} 1 -2023-07-08 08:21:44.859315 2023-07-08 08:21:44.859338 40f11ff8-9bb6-445b-be0a-74a72cb95b45 {"md5": "a82b6d93fbb74ad74f2baa41702fb7f9", "pid": "196282411", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/196282411", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196282411", "source": "IDREF"}], "date_of_birth": "1992-06-17", "preferred_name": "Lambert, Isaac", "authorized_access_point": "Lambert, Isaac, 1992-...."} 1 -2023-07-08 08:21:44.950437 2023-07-08 08:21:44.95044 4c83d0ae-f14c-4dc8-b275-630d2a9a2532 {"md5": "7012f41a6cc5580c05cf02352bfa5ac6", "pid": "196313910", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/196313910", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196313910", "source": "IDREF"}], "variant_name": ["Conseil traditionnel mohawk de Kahnawake", "Mohawk council of Kahnawàke"], "preferred_name": "Mohawk council of Kahnawà:ke", "country_associated": "xxc", "variant_access_point": ["Conseil traditionnel mohawk de Kahnawake", "Mohawk council of Kahnawàke"], "authorized_access_point": "Mohawk council of Kahnawà:ke"} 1 -2023-07-08 08:21:45.04823 2023-07-08 08:21:45.048238 93e5e60b-19a4-4b70-850a-aa9f71a8ba05 {"md5": "c546679f699be77ef1ef008b45de2e94", "pid": "196337208", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/196337208", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196337208", "source": "IDREF"}], "date_of_birth": "1881-05-03", "date_of_death": "19..", "preferred_name": "Augier, Dominique-Marie-Joseph-Charles", "country_associated": "fr", "authorized_access_point": "Augier, Dominique-Marie-Joseph-Charles, 1881-19..", "biographical_information": ["Docteur en médecine (Lille, 1906)"]} 1 -2023-07-08 08:21:45.126226 2023-07-08 08:21:45.126232 2e117ecb-c9c3-4994-8d00-b7f428cb8581 {"md5": "edf9d3b11567dc8d0df8fa372f633f3a", "pid": "196341280", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/196341280", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196341280", "source": "IDREF"}], "date_of_birth": "1984-01-10", "preferred_name": "Bourotte, Marc", "country_associated": "fr", "authorized_access_point": "Bourotte, Marc, 1984-....", "biographical_information": ["Auteur d'une thèse en Mathématiques à Avignon en 2016"]} 1 -2023-07-08 08:21:45.221038 2023-07-08 08:21:45.221042 c65b599b-8db3-43cc-a24e-cd077e5336b2 {"md5": "f9fd9a7dcdefb82d81648f09cba91b9d", "pid": "196405750", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/196405750", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196405750", "source": "IDREF"}], "date_of_birth": "1889-11-27", "preferred_name": "Michot, Joseph", "country_associated": "fr", "authorized_access_point": "Michot, Joseph, 1889-....", "biographical_information": ["Docteur en médecine (Lyon, 1913)"]} 1 -2023-07-08 08:21:45.31432 2023-07-08 08:21:45.314329 311ad2bf-5678-4c04-90c7-5622f3b8c7c7 {"md5": "4ef6ca77eaba9758a26a4dfef18fd9ec", "pid": "196409500", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/196409500", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196409500", "source": "IDREF"}], "variant_name": ["Vos, Stephan de"], "date_of_birth": "19XX", "preferred_name": "De Vos, Stephan", "country_associated": "xx", "variant_access_point": ["Vos, Stephan de"], "authorized_access_point": "De Vos, Stephan, 19..-....", "biographical_information": ["Traduit du français en anglais"]} 1 -2023-07-08 08:21:45.520216 2023-07-08 08:21:45.520223 83c62daa-d20f-4d51-ac66-5d1e8cdedb0b {"md5": "8167ac3395562d512123b04ac16cbba5", "pid": "196435099", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/196435099", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196435099", "source": "IDREF"}], "variant_name": ["Laprugne, Marie-Thérèse", "Jacoulet, Marie-Thérèse"], "preferred_name": "Laprugne-Jacoulet, Marie-Thérèse", "country_associated": "fr", "variant_access_point": ["Laprugne, Marie-Thérèse", "Jacoulet, Marie-Thérèse"], "authorized_access_point": "Laprugne-Jacoulet, Marie-Thérèse"} 1 -2023-07-08 08:21:45.615475 2023-07-08 08:21:45.615479 f8292028-7f8d-4a0a-a8c3-913d49bdfa6c {"md5": "472bbc5f3418b5f37ddf28b4f84a2865", "pid": "196452341", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/196452341", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196452341", "source": "IDREF"}], "preferred_name": "Drouot, Benoît", "country_associated": "fr", "authorized_access_point": "Drouot, Benoît", "biographical_information": ["Professeur agrégé d'histoire"]} 1 -2023-07-08 08:21:45.698525 2023-07-08 08:21:45.698533 7a7ba348-6807-4485-a5d5-9738d925c2e2 {"md5": "ba49518991acdede6efced72f558a923", "pid": "196511275", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/196511275", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196511275", "source": "IDREF"}], "date_of_birth": "1990-03-13", "preferred_name": "Lefort, Agnès", "country_associated": "fr", "authorized_access_point": "Lefort, Agnès, 1990-....", "biographical_information": ["Titulaire d'une thèse d'exercice de pharmacie soutenue à Caen le 30 septembre 2016"]} 1 -2023-07-08 08:21:45.805741 2023-07-08 08:21:45.805746 8f0d24e1-d7ce-4407-a906-06f12554ed79 {"md5": "df4d183aca063f1cb039c3336bdc7646", "pid": "196538637", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/196538637", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196538637", "source": "IDREF"}], "preferred_name": "Okuda, Y", "country_associated": "ja", "authorized_access_point": "Okuda, Y"} 1 -2023-07-08 08:21:45.895175 2023-07-08 08:21:45.895184 de21d019-e881-4413-a1b5-b85a41b3363b {"md5": "6d76f06f819359ddd43f324b4cf616dc", "pid": "196539102", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/196539102", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196539102", "source": "IDREF"}], "preferred_name": "Perol, R.", "country_associated": "fr", "authorized_access_point": "Perol, R."} 1 -2023-07-08 08:21:45.985989 2023-07-08 08:21:45.985994 7d038be6-7376-4b09-85c3-42713469e8c5 {"md5": "718f209757f70b222ab85174f25e9f1e", "pid": "196540429", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/196540429", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196540429", "source": "IDREF"}], "date_of_birth": "1989-01-14", "preferred_name": "Greenwell, Emma", "country_associated": "xxu", "authorized_access_point": "Greenwell, Emma, 1989-...", "biographical_information": ["Actrice américaine"]} 1 -2023-07-08 08:21:46.078106 2023-07-08 08:21:46.078109 692fb20a-f231-4afe-b847-0c8743bcd3f0 {"md5": "9d37b01f0ababe5d571697aae0fc3786", "pid": "196575214", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/196575214", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196575214", "source": "IDREF"}], "date_of_birth": "1989-10-01", "preferred_name": "Laurent, Elodie", "country_associated": "fr", "authorized_access_point": "Laurent, Elodie, 1989-....", "biographical_information": ["Auteur en médecine"]} 1 -2023-07-08 08:21:46.181761 2023-07-08 08:21:46.181766 14d18e1b-f4c9-4363-a9a1-1299f2a7503e {"md5": "d4b3282d7dbbcd6fe4d4fa1cf860e101", "pid": "196694531", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "fre"], "conference": true, "identifier": "http://www.idref.fr/196694531", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196694531", "source": "IDREF"}], "variant_name": ["ECIFUAS"], "preferred_name": "European Conference on Internal Friction and Ultrasonic Attenuation in Solids", "country_associated": "fr", "date_of_termination": "1983-06-07", "variant_access_point": ["ECIFUAS (4 ; 1983 ; Villeurbanne)"], "date_of_establishment": "1983-06-05", "authorized_access_point": "European Conference on Internal Friction and Ultrasonic Attenuation in Solids (4 ; 1983 ; Villeurbanne)"} 1 -2023-07-08 08:21:46.280295 2023-07-08 08:21:46.2803 c773bae5-5798-4305-893c-b4e0b62f9d97 {"md5": "5033bac9040bc5d1f039318fb6da4143", "pid": "196706831", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/196706831", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196706831", "source": "IDREF"}], "date_of_birth": "19..", "preferred_name": "Bassono, Caroline", "country_associated": "fr", "authorized_access_point": "Bassono, Caroline, 19..-", "biographical_information": ["Titulaire du diplôme d’Ingénieur Agronome Spécialisation Sciences et Productions Végétales Option Ingénierie des Agrosystèmes (Agrocampus-Ouest Rennes, 2016)"]} 1 -2023-07-08 08:21:46.385056 2023-07-08 08:21:46.38506 fc26d09f-13ad-417a-b405-87a28b8567da {"md5": "cf29bc00a48a60f1928fe874b2ff55a1", "pid": "196728711", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/196728711", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196728711", "source": "IDREF"}], "date_of_birth": "1879-01-11", "preferred_name": "Basso, Ludovic", "country_associated": "fr", "authorized_access_point": "Basso, Ludovic, 1879-....", "biographical_information": ["Titulaire d'une thèse en médecine (Lyon, 1904)"]} 1 -2023-07-08 08:21:46.486568 2023-07-08 08:21:46.486574 fecf7216-15c3-462e-bb96-7acd49938794 {"md5": "19fbcfd1fd2087ecdfecd0bf2eff766a", "pid": "196814944", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/196814944", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196814944", "source": "IDREF"}], "preferred_name": "Fosse, C.", "country_associated": "fr", "authorized_access_point": "Fosse, C.", "biographical_information": ["Travaille à L'Institut Français du Pétrole (en 1958)"]} 1 -2023-07-08 08:21:46.572532 2023-07-08 08:21:46.572535 7ba3f954-a6b9-471c-b8a1-b23bc7d35e02 {"md5": "0c185ba72bfbaff12bcea3cd74c9609e", "pid": "196859883", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifier": "http://www.idref.fr/196859883", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196859883", "source": "IDREF"}], "preferred_name": "Lucky Thompson's all stars", "country_associated": "xx", "date_of_establishment": "19XX", "authorized_access_point": "Lucky Thompson's all stars", "biographical_information": ["Ensemble de jazz"]} 1 -2023-07-08 08:21:46.647642 2023-07-08 08:21:46.647648 a53572d4-9b02-4227-a6da-3a4a8989ba73 {"md5": "5f4e7993e8dfb18d2b7867d9722e8798", "pid": "196887429", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/196887429", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196887429", "source": "IDREF"}], "preferred_name": "Hendricks, Nancy", "country_associated": "xxu", "authorized_access_point": "Hendricks, Nancy", "biographical_information": ["Auteur américaine"]} 1 -2023-07-08 08:21:46.735211 2023-07-08 08:21:46.735217 3ac02705-7ef3-4f8d-94c5-83df5724e760 {"md5": "80ccd45a1e7ee8868d6879d09f34e123", "pid": "197014984", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/197014984", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/197014984", "source": "IDREF"}], "variant_name": ["Université de Marne-la-Vallée. Institut francilien d'ingénierie des services", "IFIS", "Université de Paris-Est Marne-la-Vallée. Institut francilien d'ingénierie des services", "UPEM-IFIS"], "preferred_name": "Institut francilien d'ingénierie des services", "country_associated": "fr", "variant_access_point": ["Université de Marne-la-Vallée. Institut francilien d'ingénierie des services", "IFIS", "Université de Paris-Est Marne-la-Vallée. Institut francilien d'ingénierie des services", "UPEM-IFIS"], "authorized_access_point": "Institut francilien d'ingénierie des services", "biographical_information": ["Adresse : IFIS-Institut francilien d'ingénierie des services (UPEM), Bâtiment Erasme, 6-8 cours du Danube, 77700 Serris"]} 1 -2023-07-08 08:21:46.831282 2023-07-08 08:21:46.831287 7f411de2-58e6-4fcc-923e-0a32040f5a98 {"md5": "8a972555b9ec3cd97f60fce947be6f47", "pid": "197035167", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/197035167", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/197035167", "source": "IDREF"}], "date_of_birth": "1893-07-23", "preferred_name": "Despeignes, Henri", "country_associated": "fr", "authorized_access_point": "Despeignes, Henri, 1893-....", "biographical_information": ["Titulaire d'une thèse en médecine (Lyon, 1925)"]} 1 -2023-07-08 08:21:46.922059 2023-07-08 08:21:46.922062 19175b11-bfdc-4030-83ad-73c37d3f502b {"md5": "9c5c6695c05bbd704d576531926eb694", "pid": "197073077", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/197073077", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/197073077", "source": "IDREF"}], "variant_name": ["CFE", "Comité français des expositions", "Comité français des expositions à l'étranger", "Comité français des expositions à l'étranger (Paris)"], "preferred_name": "Comité français des expositions et conventions", "country_associated": "fr", "variant_access_point": ["CFE", "Comité français des expositions", "Comité français des expositions à l'étranger", "Comité français des expositions à l'étranger (Paris)"], "date_of_establishment": "1885", "authorized_access_point": "Comité français des expositions et conventions", "biographical_information": ["Adresse : Ancienne adresse : 22 avenue Franklin-Roosevelt, 75008 Paris. 55 avenue Kleber, 75784 Paris Cedex 16", "Reconnu d'utilité publique en 1900. A fusionné le 10 juin 1925 avec le \\"Comité national des expositions coloniales\\". Décret modifié le 1er mars 1993"]} 1 -2023-07-08 08:21:47.007389 2023-07-08 08:21:47.007396 9b287a6b-0b7d-4ee6-905f-aef3ee5edb06 {"md5": "a7acda967ecbe27e552adefc67bb2951", "pid": "197115047", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/197115047", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/197115047", "source": "IDREF"}], "date_of_birth": "1975", "preferred_name": "Klunker, Christoph Kai", "country_associated": "gw", "authorized_access_point": "Klunker, Christoph Kai, 1975-...."} 1 -2023-07-08 08:21:47.094579 2023-07-08 08:21:47.094589 5a1f669a-7643-4ebb-a3a0-b732849f3ed3 {"md5": "f07b80763721f1854e894ea061943fc2", "pid": "197132588", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/197132588", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/197132588", "source": "IDREF"}], "variant_name": ["Jardin botanique (Laval)"], "preferred_name": "Jardin de la Perrine (Laval)", "country_associated": "fr", "variant_access_point": ["Jardin botanique (Laval)"], "date_of_establishment": "1885", "authorized_access_point": "Jardin de la Perrine (Laval)"} 1 -2023-07-08 08:21:47.184368 2023-07-08 08:21:47.184374 49143877-3b86-4617-99cc-0c008c9c68c0 {"md5": "051ce10302def9d534e6d546afb0929f", "pid": "197226809", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/197226809", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/197226809", "source": "IDREF"}], "preferred_name": "Byeragi Safary, Georges", "country_associated": "cf", "authorized_access_point": "Byeragi Safary, Georges", "biographical_information": ["Docteur en Administration des Affaires de l'Université de Berkeley (USA). Professeur à l'Institut Supérieur de Statistique (ISS) à Kinshasa en République démocratique du Congo (en 2016)"]} 1 -2023-07-08 08:21:47.270864 2023-07-08 08:21:47.27087 908bbfcd-3a2a-4cea-be8d-c0b5c362b0ef {"md5": "8e56b9d99038ef0d2c845f4341d7a96b", "pid": "197280544", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/197280544", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/197280544", "source": "IDREF"}], "preferred_name": "Hammad, Ahmed", "country_associated": "ti", "authorized_access_point": "Hammad, Ahmed", "biographical_information": ["Maitre de conférences à l'université de Franche-Comté.", "Titulaire d'un doctorat Informatique et analyse de données soutenu à l'université de Toulouse 3 en 1991"]} 1 -2023-07-08 08:21:47.368991 2023-07-08 08:21:47.368998 99ff4c94-d3dd-414f-9cbb-3f8c10436762 {"md5": "54e2c6825d9ccc9184c383785a998f1e", "pid": "197391648", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/197391648", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/197391648", "source": "IDREF"}], "preferred_name": "Caplanne, Pierre-Paulin", "country_associated": "fr", "authorized_access_point": "Caplanne, Pierre-Paulin"} 1 -2023-07-08 08:21:47.459232 2023-07-08 08:21:47.459241 0912ce6f-0109-45c5-96c2-aefefa314dbd {"md5": "d7218a158ecf92c361df626acbc3c4ee", "pid": "197394795", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre", "eng"], "identifier": "http://www.idref.fr/197394795", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/197394795", "source": "IDREF"}], "preferred_name": "Collins, Gary S.", "country_associated": "xxk", "authorized_access_point": "Collins, Gary S.", "biographical_information": ["Professeur à l' Université d'Oxford; Examinateur d'une thèse en Sciences Chimiques et Biologiques pour la Santé à Montpellier en 2016"]} 1 -2023-07-08 08:21:47.561644 2023-07-08 08:21:47.561652 61ad4376-97b1-4557-acab-556e0b939393 {"md5": "4b544951920808138ef3010d51681578", "pid": "197444067", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/197444067", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/197444067", "source": "IDREF"}], "preferred_name": "Coustaury, Annabelle", "authorized_access_point": "Coustaury, Annabelle"} 1 -2023-07-08 08:21:47.631633 2023-07-08 08:21:47.631639 a36abce3-fc72-4774-82f4-761271f5add0 {"md5": "ba1bdb52f6dafcaacdfc99578af0290b", "pid": "197444881", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/197444881", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/197444881", "source": "IDREF"}], "date_of_birth": "1859", "date_of_death": "1908", "preferred_name": "Apprin, Joseph", "country_associated": "fr", "authorized_access_point": "Apprin, Joseph, 1859-....", "biographical_information": ["Photographe"]} 1 -2023-07-08 08:21:47.70813 2023-07-08 08:21:47.708141 72764168-6e03-43f1-aecb-050731eb9179 {"md5": "f2e31120cee751425410b77905d54039", "pid": "197511392", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifier": "http://www.idref.fr/197511392", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/197511392", "source": "IDREF"}], "preferred_name": "Midwestern Conference on Fluid Mechanics", "country_associated": "xxu", "date_of_termination": "1961", "date_of_establishment": "1961", "authorized_access_point": "Midwestern Conference on Fluid Mechanics (07 ; 1961 ; East Lansing, Mich.)"} 1 -2023-07-08 08:21:47.800578 2023-07-08 08:21:47.800583 9bf5dc20-5261-4f3c-b0db-00ab9acd466c {"md5": "21da3749866a7f52643a7c1fbd8586b8", "pid": "197533590", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/197533590", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/197533590", "source": "IDREF"}], "preferred_name": "Mayer, María Susana", "country_associated": "ag", "authorized_access_point": "Mayer, María Susana", "biographical_information": ["Professeur, Universidad Nacional de Entre Ríos"]} 1 -2023-07-08 08:21:47.884891 2023-07-08 08:21:47.884897 2e55b1d5-670c-410f-9d40-c96e90dd97eb {"md5": "19978c8ca4780ddda78d1386a10437a1", "pid": "197593968", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/197593968", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/197593968", "source": "IDREF"}], "date_of_birth": "1982-09-09", "preferred_name": "Dumas, Christine", "country_associated": "fr", "authorized_access_point": "Dumas, Christine, 1982-....", "biographical_information": ["Enseignant-chercheur à l'Université de Strasbourg - Institut pluridisciplinaire Hubert Curien (IPHC); membre du jury lors d’une soutenance de thèse de doctorat de Chimie, à l’Université de Strasbourg, 2016"]} 1 -2023-07-08 08:21:47.96558 2023-07-08 08:21:47.965585 6a529e27-fdad-4f72-bc95-a6ac3e06877d {"md5": "6d55c9e7764126adb2fca170e45ef7f9", "pid": "197623549", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/197623549", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/197623549", "source": "IDREF"}], "preferred_name": "Basso, Matías", "country_associated": "xx", "authorized_access_point": "Basso, Matías", "biographical_information": ["Réalisateur"]} 1 -2023-07-08 08:21:48.051334 2023-07-08 08:21:48.051339 601b9ce3-7587-4c05-b6a3-b736905eed65 {"md5": "fc0043c1c9f762b60d5d7326294655a2", "pid": "197687717", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/197687717", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/197687717", "source": "IDREF"}], "preferred_name": "Surraco, Oscar", "country_associated": "fr", "authorized_access_point": "Surraco, Oscar", "biographical_information": ["Auteur d'une thèse en Droit à Nice"]} 1 -2023-07-08 08:21:48.129767 2023-07-08 08:21:48.129772 e02f3751-eae3-4ac6-8f2d-3b2a7c3cc15b {"md5": "16a1cf9e55bf685f9fafc867ff0c8023", "pid": "197696597", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/197696597", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/197696597", "source": "IDREF"}], "preferred_name": "Bonnière, Laurent", "country_associated": "fr", "authorized_access_point": "Bonnière, Laurent"} 1 -2023-07-08 08:21:48.217067 2023-07-08 08:21:48.217071 719b7bf9-0d68-41bf-ada9-4b0af8172c1f {"md5": "f608a016d890428c68d5985628390c05", "pid": "197997961", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/197997961", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/197997961", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "237481952"}, "date_of_birth": "1974-07-14", "preferred_name": "Bruneau, Antoine", "country_associated": "fr", "authorized_access_point": "Bruneau, Antoine, 1974-....", "biographical_information": ["Clerc de notaire, historien."]} 1 -2023-07-08 08:21:48.502176 2023-07-08 08:21:48.502182 f2350a7f-eb79-4b47-a7bf-1d8947e32ef0 {"md5": "d7d3f443520cda03a79269b4d7346f8b", "pid": "198395361", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/198395361", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/198395361", "source": "IDREF"}], "date_of_birth": "1988-06-01", "preferred_name": "Kaddour, Mahmoud", "country_associated": "le", "authorized_access_point": "Kaddour, Mahmoud, 1988-....", "biographical_information": ["Titulaire d'un doctorat en Automatique, génie informatique, traitement du signal et des images (Lille 1, 2016)"]} 1 -2023-07-08 08:21:48.575809 2023-07-08 08:21:48.575813 94dcb6fb-065c-4fac-b7f9-20823f17a8a7 {"md5": "23a75add1fa31b67d7852e9ccdd36daf", "pid": "198493231", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/198493231", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/198493231", "source": "IDREF"}], "preferred_name": "Colo, Jean-Michel", "country_associated": "fr", "authorized_access_point": "Colo, Jean-Michel", "biographical_information": ["Maire d'Arcangues (Pyrénées-Atlantiques) de 1983 à 2014"]} 1 -2023-07-08 08:21:48.64189 2023-07-08 08:21:48.641895 4fda34da-b0ab-45c1-9541-e9fcdb5852c9 {"md5": "069ef1bb909a252e620b2932ab19d8db", "pid": "198494289", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/198494289", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/198494289", "source": "IDREF"}], "date_of_birth": "1977-05-26", "preferred_name": "Flament, Vincent", "country_associated": "fr", "authorized_access_point": "Flament, Vincent, 1977-....", "biographical_information": ["Agrégé de sciences physiques. - Cofondateur du Cours Laplace (Charleville-Mézières, Ardennes / Douzy, Ardennes)"]} 1 -2023-07-08 08:21:48.823036 2023-07-08 08:21:48.823046 dcc0ac10-3160-42dd-861a-dd5ca296ca17 {"md5": "53c66a769a7babc6da13e1531d72ee12", "pid": "19870125X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/19870125X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/19870125X", "source": "IDREF"}], "preferred_name": "Chauvel, Jacques", "authorized_access_point": "Chauvel, Jacques"} 1 -2023-07-08 08:21:49.085424 2023-07-08 08:21:49.085427 ccba6c06-a4bf-4218-9015-c07d0a2832e4 {"md5": "3315ed6b3e6838c1d37836d2b4d9c4fc", "pid": "19915631X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifier": "http://www.idref.fr/19915631X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/19915631X", "source": "IDREF"}], "variant_name": ["Fotofever-Photography art fair"], "preferred_name": "Fotofever", "country_associated": "fr", "date_of_termination": "2016-11-13", "variant_access_point": ["Fotofever-Photography art fair (2016 ; Paris)"], "date_of_establishment": "2016-11-11", "authorized_access_point": "Fotofever (2016 ; Paris)", "biographical_information": ["Foire internationale de photographie contemporaine qui se tient à Paris"]} 1 -2023-07-08 08:21:48.722503 2023-07-08 10:26:36.030676 0432bf25-2d0a-414d-b501-92e46d2fee89 {"md5": "b88ac25b1ff175845488e9f49a64aab3", "pid": "19859318X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/19859318X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/19859318X", "source": "IDREF"}], "preferred_name": "Gregerson, Patrick", "authorized_access_point": "Gregerson, Patrick"} 2 -2023-07-08 08:21:48.89864 2023-07-08 10:26:36.852054 60720e2b-cd39-4986-b3ba-7fc54b1bf8f3 {"md5": "c48d7131e51660e92a6181c22974e3f0", "pid": "199108617", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/199108617", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/199108617", "source": "IDREF"}], "date_of_birth": "1972-03-24", "preferred_name": "Pralong, Corinne", "country_associated": "fr", "authorized_access_point": "Pralong, Corinne", "biographical_information": ["Titulaire d'une thèse d'exercice de médecine (Limoges : 1998 ; 147)"]} 2 -2023-07-08 08:21:48.307967 2023-07-08 10:27:51.823943 aa3a662a-05aa-4646-97df-1c7dbdef84af {"md5": "0cc381415b16cc91a9ebae09f14d02cd", "pid": "198193327", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/198193327", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/198193327", "source": "IDREF"}], "preferred_name": "Régis, Roger", "country_associated": "fr", "authorized_access_point": "Régis, Roger"} 2 -2023-07-08 08:21:48.409647 2023-07-08 10:29:17.095914 67276895-2e94-441f-81ee-f44ae7c7cf15 {"md5": "e5c7a267fad51365ed315b84155c0854", "pid": "198217447", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/198217447", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/198217447", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Gabathuler, Chloé", "country_associated": "sz", "authorized_access_point": "Gabathuler, Chloé, 19..-....", "biographical_information": ["Enseignante-chercheuse à l'Université de Genève en didactique du français et de la littérature"]} 2 -2023-07-08 08:21:49.160747 2023-07-08 08:21:49.160761 228ccb47-4e8e-47d4-8599-a0761c586d08 {"md5": "26aee24b452de15e7c9ae4588064cec8", "pid": "199168326", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/199168326", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/199168326", "source": "IDREF"}], "preferred_name": "Barbier, Mathilde", "country_associated": "fr", "authorized_access_point": "Barbier, Mathilde", "biographical_information": ["A soutenu un Master 2 recherche \\"Histoire de la philosophie\\" à l'Université Paris 1 Panthéon Sorbonne"]} 1 -2023-07-08 08:21:49.251016 2023-07-08 08:21:49.251022 c64f6189-3a34-45f0-8275-0fe87493ac50 {"md5": "351cc97ad5259e380b6b55fe6300718b", "pid": "199187606", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/199187606", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/199187606", "source": "IDREF"}], "date_of_birth": "1947-11-27", "preferred_name": "Brun, Marc", "authorized_access_point": "Brun, Marc, 1947-....", "biographical_information": ["Médecin"]} 1 -2023-07-08 08:21:49.337052 2023-07-08 08:21:49.337057 24cbc3a8-ac0b-4df9-8624-44a9578d675b {"md5": "79a186f04dc3bd028d276a4e848addf4", "pid": "19921347X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/19921347X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/19921347X", "source": "IDREF"}], "variant_name": ["Ramírez, Miguel Leiva"], "date_of_birth": "1959", "preferred_name": "Leiva Ramírez, Miguel", "country_associated": "sp", "variant_access_point": ["Ramírez, Miguel Leiva"], "authorized_access_point": "Leiva Ramírez, Miguel, 1959-...."} 1 -2023-07-08 08:21:49.420263 2023-07-08 08:21:49.420268 ceb7948f-6018-4c2b-8001-0d6d821e22c2 {"md5": "8be84fc3d77c6d8a439b1694dc46116a", "pid": "199238324", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifier": "http://www.idref.fr/199238324", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/199238324", "source": "IDREF"}], "variant_name": ["CIME. Summer course", "CIME Summer course Exploiting hidden structure in matrix computations, algorithms and applications"], "preferred_name": "Centro internazionale matematico estivo. Summer course", "country_associated": "it", "date_of_termination": "2015-06-26", "variant_access_point": ["CIME. Summer course (2015 ; Cetraro, Italie)", "CIME Summer course Exploiting hidden structure in matrix computations, algorithms and applications (2015 ; Cetraro, Italie)"], "date_of_establishment": "2015-06-22", "authorized_access_point": "Centro internazionale matematico estivo. Summer course (2015 ; Cetraro, Italie)"} 1 -2023-07-08 08:21:49.505598 2023-07-08 08:21:49.505601 555234e5-e342-4e68-85c3-634ab8097408 {"md5": "244a12a8d4c8b5dabdfaf2a9536cadfe", "pid": "199257213", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["kor"], "identifier": "http://www.idref.fr/199257213", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/199257213", "source": "IDREF"}], "variant_name": ["김, 호림", "Ho-rim, Kim"], "date_of_birth": "1966", "preferred_name": "Kim, Ho-rim", "country_associated": "ko", "variant_access_point": ["Ho-rim, Kim"], "authorized_access_point": "Kim, Ho-rim, 1966-"} 1 -2023-07-08 08:21:49.648204 2023-07-08 08:21:49.64821 45d049d7-eb27-4254-810f-ea597420e841 {"md5": "2d3bcb8bee690f5e0a9a89caafc8d606", "pid": "199336776", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/199336776", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/199336776", "source": "IDREF"}], "date_of_birth": "1870-01-02", "preferred_name": "Pruneau, Amédée", "country_associated": "fr", "authorized_access_point": "Pruneau, Amédée, 1870-....", "biographical_information": ["Titulaire d'une thèse en médecine (Lyon, 1912)"]} 1 -2023-07-08 08:21:49.742021 2023-07-08 08:21:49.74203 826b3586-0833-4118-8fea-eb2568af1fff {"md5": "1ee2d9a3867d3051aed52d7b257f8a0f", "pid": "199441863", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/199441863", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/199441863", "source": "IDREF"}], "date_of_birth": "1946-06-19", "preferred_name": "Diaz, Claude", "authorized_access_point": "Diaz, Claude, 1946-....", "biographical_information": ["Médecin (Paris, 1974)"]} 1 -2023-07-08 08:21:49.822064 2023-07-08 08:21:49.822071 711c5001-17bb-40ca-a7fb-79bbdec2bb4f {"md5": "1d160513ff7262c9c34ede579fad1a52", "pid": "199452857", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": false, "identifier": "http://www.idref.fr/199452857", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/199452857", "source": "IDREF"}], "variant_name": ["Universität Erlangen-Nürnberg. Juristische Fakultät", "Juristische Fakultät (Erlangen-Nürnberg)"], "preferred_name": "Friedrich-Alexander-Universität (Erlangen-Nürnberg). Juristische Fakultät", "country_associated": "gw", "variant_access_point": ["Universität Erlangen-Nürnberg. Juristische Fakultät", "Juristische Fakultät (Erlangen-Nürnberg)"], "authorized_access_point": "Friedrich-Alexander-Universität (Erlangen-Nürnberg). Juristische Fakultät"} 1 -2023-07-08 08:21:49.903432 2023-07-08 08:21:49.90344 5ee18b47-a8a3-4701-8e73-3c76fcd8eb6a {"md5": "9d27f9a3e9803667c0488066916058d3", "pid": "199464669", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/199464669", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/199464669", "source": "IDREF"}], "preferred_name": "Bénistant, Alix", "authorized_access_point": "Bénistant, Alix", "biographical_information": ["Titulaire d'une thèse de doctorat en Sciences de l'information et de la communication (Paris 8, 2016)"]} 1 -2023-07-08 08:21:49.997174 2023-07-08 08:21:49.997183 2f13a3e6-a64f-40c8-9113-7c73ba538c9b {"md5": "e5b839b8c1ad4ecf610787a151c99d25", "pid": "19954770X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/19954770X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/19954770X", "source": "IDREF"}], "preferred_name": "Biron, Aurélie", "country_associated": "fr", "authorized_access_point": "Biron, Aurélie"} 1 -2023-07-08 08:21:50.077656 2023-07-08 08:21:50.077663 a9dee7fc-cd2d-415a-ba17-0373f57430d6 {"md5": "e441ea36720032aa4bfaf40d4117e236", "pid": "199555907", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["gre"], "identifier": "http://www.idref.fr/199555907", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/199555907", "source": "IDREF"}], "variant_name": ["Μαραζόπουλος, Χρῆστος"], "date_of_birth": "1954", "preferred_name": "Marazópoulos, CHrī̂stos", "country_associated": "gr", "variant_access_point": ["Μαραζόπουλος, Χρῆστος, 1954-...."], "authorized_access_point": "Marazópoulos, CHrī̂stos, 1954-...."} 1 -2023-07-08 08:21:50.154121 2023-07-08 08:21:50.154126 d41dfc25-7cf3-498c-a90d-d191c86cb54e {"md5": "61bedc317952aa1b3963451ed9831876", "pid": "19960097X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/19960097X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/19960097X", "source": "IDREF"}], "preferred_name": "Figurey, Ernest", "country_associated": "fr", "authorized_access_point": "Figurey, Ernest"} 1 -2023-07-08 08:21:50.328849 2023-07-08 08:21:50.328851 4c0d652a-e8fa-45dc-ba9b-2a3c8ae7e26c {"md5": "1d3fba2be59c37cef3708c649599d118", "pid": "199716498", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifier": "http://www.idref.fr/199716498", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/199716498", "source": "IDREF"}], "variant_name": ["PMS 200"], "preferred_name": "Seventh international workshop on project management and scheduling", "country_associated": "gw", "date_of_termination": "2000-04-19", "variant_access_point": ["PMS 200"], "date_of_establishment": "2000-04-17", "authorized_access_point": "Seventh international workshop on project management and scheduling (17-19 Avril ; 2000 ; Osnabrück, Germany)"} 1 -2023-07-08 08:21:50.49399 2023-07-08 08:21:50.493998 c96405dd-adc6-4daa-a8cf-a049053dfaed {"md5": "cf60e8870fa806ef7dccc8c1771490b6", "pid": "199749736", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifier": "http://www.idref.fr/199749736", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/199749736", "source": "IDREF"}], "preferred_name": "Organisation de coopération et de développement économiques", "country_associated": "xxu", "date_of_termination": "1971-09-23", "date_of_establishment": "1971-09-19", "authorized_access_point": "Organisation de coopération et de développement économiques (1971 ; Allerton Park, Monticello, Ill., États-Unis)", "biographical_information": ["Organisation de coopération et de développement économiques (O.C.D.E.)"]} 1 -2023-07-08 08:21:50.583378 2023-07-08 08:21:50.583382 cdbae739-0f71-4cf9-8303-d8dfd658e79c {"md5": "bda7d4d0ec2f3754d8e8342a8dd58975", "pid": "199777381", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "conference": false, "identifier": "http://www.idref.fr/199777381", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/199777381", "source": "IDREF"}], "variant_name": ["Централн́ый комитет и централы́й совет всесойужной пионерской органисации им. в.и. ленина"], "preferred_name": "Centralńyj komitet i centralýj sovet vsesojužnoj pionerskoj organisacii im. v.i. lenina", "country_associated": "ru", "variant_access_point": ["Централн́ый комитет и централы́й совет всесойужной пионерской органисации им. в.и. ленина"], "authorized_access_point": "Centralńyj komitet i centralýj sovet vsesojužnoj pionerskoj organisacii im. v.i. lenina"} 1 -2023-07-08 08:21:50.767235 2023-07-08 08:21:50.767239 34ad6354-2d08-4378-8723-24275fea0b78 {"md5": "5001966278465c933c574d783b748eba", "pid": "200127748", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/200127748", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/200127748", "source": "IDREF"}], "date_of_birth": "1962", "preferred_name": "Mayar, Vipin", "authorized_access_point": "Mayar, Vipin, 1962-"} 1 -2023-07-08 08:21:50.865343 2023-07-08 08:21:50.865354 0144ef55-79d3-447c-9608-6c7ad465f715 {"md5": "bd76f16eb3907141f14671438842efed", "pid": "200138766", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/200138766", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/200138766", "source": "IDREF"}], "date_of_birth": "1990-15-01", "preferred_name": "Thouvenin, Amanda", "country_associated": "fr", "authorized_access_point": "Thouvenin, Amanda, 1990-....", "biographical_information": ["Auteure d'une thèse en Physique des Plasmas"]} 1 -2023-07-08 08:21:50.659303 2023-07-08 10:25:06.378111 5f9827d0-3190-4c5e-b034-9f13953b1e74 {"md5": "648dbab873042cf1e0ff7ee1be9ed28e", "pid": "199828121", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/199828121", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/199828121", "source": "IDREF"}], "date_of_birth": "1991-06-24", "preferred_name": "Girardo, Claudine", "country_associated": "fr", "authorized_access_point": "Girardo, Claudine, 1991-....", "biographical_information": ["Titulaire d'une thèse d'exercice en Médecine Vétérinaire (Lyon 1, 2016)"]} 2 -2023-07-08 08:21:50.398882 2023-07-08 10:25:06.731441 bb686dc1-6fe8-41e2-b3c6-c298b2606c58 {"md5": "b3a3766d1cae95c1a0b9de62d5c81856", "pid": "199742022", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/199742022", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/199742022", "source": "IDREF"}], "preferred_name": "Trinquet, Paulette", "country_associated": "fr", "authorized_access_point": "Trinquet, Paulette", "biographical_information": ["Inspectrice de l'Éducation nationale"]} 2 -2023-07-08 08:21:50.236963 2023-07-08 10:27:31.422089 03c58d2d-82a0-43db-8c15-d3b9f2b22843 {"md5": "9fc0f9405350d18693ca4601617a285e", "pid": "199679150", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/199679150", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/199679150", "source": "IDREF"}], "preferred_name": "Larivain, Henri", "country_associated": "fr", "authorized_access_point": "Larivain, Henri"} 2 -2023-07-08 08:21:51.142629 2023-07-08 08:21:51.142639 fa3663e8-1250-428f-bad5-2ad565f6ab06 {"md5": "19c94b70470559423d0177150333d491", "pid": "200252933", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/200252933", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/200252933", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Bayala, Apollinaire Bapio", "country_associated": "fr", "authorized_access_point": "Bayala, Apollinaire Bapio, 19..-....", "biographical_information": ["Titulaire d'un doctorat en troisième cylce en Physiologie animale appliquée à Rennes 1 en 1980"]} 1 -2023-07-08 08:21:51.25119 2023-07-08 08:21:51.251194 4c7666ac-2dff-420b-a512-09c26c1224d4 {"md5": "98301b491aa910759e5aa442a84b9d00", "pid": "200400525", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/200400525", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/200400525", "source": "IDREF"}], "date_of_birth": "1904", "date_of_death": "1998-01-23", "preferred_name": "Morris, Dorothy", "country_associated": "nz", "authorized_access_point": "Morris, Dorothy, 1904-1998", "biographical_information": ["Infirmière"]} 1 -2023-07-08 08:21:51.446969 2023-07-08 08:21:51.446978 2d2ec3f4-c1fb-4258-ba8e-6db153180d34 {"md5": "fac3fcc304f4c1061289e75948080253", "pid": "200480111", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/200480111", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/200480111", "source": "IDREF"}], "date_of_birth": "1966", "preferred_name": "Pinkowski, Heiko", "authorized_access_point": "Pinkowski, Heiko, 1966-....", "biographical_information": ["acteur"]} 1 -2023-07-08 08:21:51.559378 2023-07-08 08:21:51.559387 4aecdac5-7ee9-4182-9638-de40efba3c29 {"md5": "97920bcdce00eb3f142500560f479a78", "pid": "200480391", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/200480391", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/200480391", "source": "IDREF"}], "date_of_birth": "1981-02-10", "preferred_name": "Corswarem, Émilie", "country_associated": "be", "authorized_access_point": "Corswarem, Émilie, 1981-....", "biographical_information": ["Docteur en musicologie de l’Université de Liège (2008), Émilie Corswarem est chercheur qualifié FRS-FNRS (Université de Liège) et maître de conférences à l’Université de Liège."]} 1 -2023-07-08 08:21:51.759032 2023-07-08 08:21:51.759035 967aca35-d2dc-4a1c-8155-d0a76c54c274 {"md5": "fbb5b14cd36f516e74beb1eefb0e2828", "pid": "200524925", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/200524925", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/200524925", "source": "IDREF"}], "preferred_name": "Bineau, Mathieu", "country_associated": "fr", "authorized_access_point": "Bineau, Mathieu", "biographical_information": ["Ingénieur du Corps des Mines"]} 1 -2023-07-08 08:21:51.829539 2023-07-08 08:21:51.829544 dee020bc-c441-4c07-845e-4a7eb65e62c2 {"md5": "087f86aff529471ddae97955ce12e798", "pid": "200581627", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/200581627", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/200581627", "source": "IDREF"}], "preferred_name": "Cousty, Jacques-Pierre", "country_associated": "fr", "authorized_access_point": "Cousty, Jacques-Pierre", "biographical_information": ["Titulaire d'un doctorat en sciences physiques (Paris 11, 1981)"]} 1 -2023-07-08 08:21:51.919299 2023-07-08 08:21:51.919304 b277d8fe-2412-4732-9d69-a9ddfc4322d1 {"md5": "44629dc11c9293c39583f92dceeb1918", "pid": "200646788", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/200646788", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/200646788", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Rozo-Rincon, Maria Cristina", "country_associated": "fr", "authorized_access_point": "Rozo-Rincon, Maria Cristina, 19..-....", "biographical_information": ["Docteur en Sciences appliquées (Université Paris-Dauphine, 1993)"]} 1 -2023-07-08 08:21:52.079034 2023-07-08 08:21:52.079039 16b4762e-80e5-4a12-ba97-f6d5f7289e24 {"md5": "97c314cd5d02d596bbefade70b220d64", "pid": "20071659X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": false, "identifier": "http://www.idref.fr/20071659X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/20071659X", "source": "IDREF"}], "variant_name": ["Auskunftsbüro der deutschen Bibliotheken (Berlin)"], "preferred_name": "Auskunftsbureau der deutschen Bibliotheken (Berlin)", "country_associated": "gw", "date_of_termination": "1945", "variant_access_point": ["Auskunftsbüro der deutschen Bibliotheken (Berlin)"], "date_of_establishment": "1871", "authorized_access_point": "Auskunftsbureau der deutschen Bibliotheken (Berlin)"} 1 -2023-07-08 08:21:51.681025 2023-07-08 10:29:01.285963 275bfbac-3c5b-4fa9-9a28-86518925db46 {"md5": "e031884404e84f09322341bed3bbba02", "pid": "200497065", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/200497065", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/200497065", "source": "IDREF"}], "date_of_birth": "1987", "preferred_name": "El Mechta, Zackaria", "country_associated": "fr", "authorized_access_point": "El Mechta, Zackaria, 1987-....", "biographical_information": ["Auteur d'une thèse en médecine générale en 2017"]} 2 -2023-07-08 08:21:51.341483 2023-07-08 10:31:43.137213 1b1397fd-c14a-4ad5-9465-6dc2c2aac544 {"md5": "fd66d13258578f89eb8b0dbe4e101107", "pid": "200469169", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/200469169", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/200469169", "source": "IDREF"}], "preferred_name": "Gimenez, Pauline", "country_associated": "fr", "authorized_access_point": "Gimenez, Pauline"} 2 -2023-07-08 08:21:52.277237 2023-07-08 08:21:52.277245 a28d1282-a819-42e0-aec9-0a8739dad356 {"md5": "f286cfd23a1f727a099fb27d8e2a52f2", "pid": "20082807X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/20082807X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/20082807X", "source": "IDREF"}], "date_of_birth": "1943-10-10", "preferred_name": "Le Picard, Pierre", "authorized_access_point": "Le Picard, Pierre, 1943-....", "biographical_information": ["Médecin"]} 1 -2023-07-08 08:21:52.359737 2023-07-08 08:21:52.359745 85c30c6b-10ad-4806-8259-a9b3df1bd5a0 {"md5": "a404df0c7e984db1afc287663d087d57", "pid": "201287617", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/201287617", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/201287617", "source": "IDREF"}], "preferred_name": "Warren, Richard", "country_associated": "xxk", "authorized_access_point": "Warren, Richard", "biographical_information": ["Spécialiste de l'histoire et de la civilisation classique. - Chercheur associé Royal Holloway, University of London, GB (en 2016)"]} 1 -2023-07-08 08:21:52.452963 2023-07-08 08:21:52.452969 9d942f1e-dc09-4ff5-bb7e-e9831e44a9fa {"md5": "7d41596caaa216c7c2589b2cac1420b4", "pid": "201289377", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/201289377", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/201289377", "source": "IDREF"}], "date_of_birth": "1985", "preferred_name": "Assouline, Alice", "country_associated": "fr", "authorized_access_point": "Assouline, Alice, 1985-....", "biographical_information": ["Artiste grenobloise"]} 1 -2023-07-08 08:21:52.550432 2023-07-08 08:21:52.550436 035d4095-e59e-48d6-ba00-bdf2d3c09eb1 {"md5": "f45ef7343481af48316884bd2cf5bbcf", "pid": "201301040", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": true, "identifier": "http://www.idref.fr/201301040", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/201301040", "source": "IDREF"}], "variant_name": ["Actes de la première Conférence européenne sur les Crustacés, Paris, 31 août-5 septembre 1992 (résumés)", "Proceedings of the First European Crustacean Conference, Paris August 31-September 5, 1992 (abstracts)"], "preferred_name": "Conférence européenne sur les crustacés", "country_associated": "fr", "date_of_termination": "1992-09-05", "variant_access_point": ["Actes de la première Conférence européenne sur les Crustacés, Paris, 31 août-5 septembre 1992 (résumés)", "Proceedings of the First European Crustacean Conference, Paris August 31-September 5, 1992 (abstracts)"], "date_of_establishment": "1992-08-31", "authorized_access_point": "Conférence européenne sur les crustacés (01 ; 1992 ; Paris)"} 1 -2023-07-08 08:21:52.616131 2023-07-08 08:21:52.616137 3f9ec8fb-5735-45d0-9efc-57126846be58 {"md5": "1b7a2b33b0ff2fab2a790e3fa8204913", "pid": "201306824", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifier": "http://www.idref.fr/201306824", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/201306824", "source": "IDREF"}], "preferred_name": "Colloquium on Precious Metals and Ceramics in the Muslim, Chinese, and Graeco-Roman Worlds", "country_associated": "xxk", "authorized_access_point": "Colloquium on Precious Metals and Ceramics in the Muslim, Chinese, and Graeco-Roman Worlds (1985 ; Oxford, England)"} 1 -2023-07-08 08:21:52.707558 2023-07-08 08:21:52.70757 fe49945f-c6d3-49ff-bb9f-7bd3cf7015ca {"md5": "d3eed21f888845322c4cc1cfcbfbaf68", "pid": "201480034", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/201480034", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/201480034", "source": "IDREF"}], "preferred_name": "Derrick, G. H.", "authorized_access_point": "Derrick, G. H."} 1 -2023-07-08 08:21:52.886117 2023-07-08 08:21:52.886122 c99d483e-f9fd-4da5-a3ab-5238165dd1bd {"md5": "68c68c6c466341cef61b194c991de2fe", "pid": "201643936", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/201643936", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/201643936", "source": "IDREF"}], "variant_name": ["Manufacture alsacienne d'outils (Zornhoff, Bas-Rhin)", "Manufacture française d'outils (Tronville, Meuse)", "Anciens établissements Goldenberg et Cie"], "preferred_name": "Goldenberg", "country_associated": "fr", "variant_access_point": ["Manufacture alsacienne d'outils (Zornhoff, Bas-Rhin)", "Manufacture française d'outils (Tronville, Meuse)", "Anciens établissements Goldenberg et Cie"], "date_of_establishment": "1850", "authorized_access_point": "Goldenberg", "biographical_information": ["Issu d'une manufacture d'armes blanches, en 1850 la Société fondée par Gustave Goldenberg comprend une usine à Dorlisheim et une autre à Zornhoff. Vers 1870 une troisième usine est construite à Tronville en Barrois. Cette \\"Manufacture française d'outils\\" reste autonome. En même temps la maison-mêre est transformée en société anonyme sous le nom \\"Manufacture alsacienne d'outils-Zornhoff\\". En 1924, les deux sociétés fusionnent sous le nom \\"Anciens établissements Goldenberg et Cie"]} 1 -2023-07-08 08:21:52.983081 2023-07-08 08:21:52.983086 77613771-2928-4890-b78e-751938655a35 {"md5": "1f243e6a8cb9a13b54baa846acda1f66", "pid": "201672618", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["kor"], "identifier": "http://www.idref.fr/201672618", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/201672618", "source": "IDREF"}], "variant_name": ["박, 철상", "Ch'ŏl-sang, Pak"], "date_of_birth": "1967", "preferred_name": "Pak, Ch'ŏl-sang", "country_associated": "ko", "variant_access_point": ["Ch'ŏl-sang, Pak"], "authorized_access_point": "Pak, Ch'ŏl-sang, 1967-...."} 1 -2023-07-08 08:21:53.069611 2023-07-08 08:21:53.069618 9fd47dcd-aa9c-4d69-8667-37638081d9a5 {"md5": "1eb08215f274c87ed522ff2a13d5ff2f", "pid": "201683636", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/201683636", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/201683636", "source": "IDREF"}], "preferred_name": "Ruffert, Maximillian", "country_associated": "xxk", "authorized_access_point": "Ruffert, Maximillian", "biographical_information": ["Professeur à l'Université d'Edimbourg (Ecosse) en 2016"]} 1 -2023-07-08 08:21:53.144766 2023-07-08 08:21:53.144774 12709a7d-e563-4e97-b36f-8248ad167308 {"md5": "739844de70cc0fed57611509469b64fd", "pid": "20169106X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/20169106X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/20169106X", "source": "IDREF"}], "date_of_birth": "1984-08-30", "preferred_name": "Bufi, Elio Antonio", "country_associated": "it", "authorized_access_point": "Bufi, Elio Antonio, 1984-....", "biographical_information": ["Auteur d'une thèse en Mécanique des fluides à Paris, ENSAM en 2016"]} 1 -2023-07-08 08:21:53.234307 2023-07-08 08:21:53.23431 4163157c-a169-45a2-b58e-9f4dea135ac5 {"md5": "bae660c11e6875cf77364e0f3af779cf", "pid": "201716461", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/201716461", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/201716461", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Simon, Bernard", "country_associated": "fr", "authorized_access_point": "Simon, Bernard, 19..-....", "biographical_information": ["Enseignant-chercheur en Physiologie à l'ORPHY (Optimisation des Régulations Physiologiques) à l'UBO (Université de Bretagne Occidentale, Brest)"]} 1 -2023-07-08 08:21:53.311106 2023-07-08 08:21:53.311116 6d74290c-4b2c-4167-9bd0-2d73d6d868b5 {"md5": "b5693b1b88305f9bdfd6e3ac77f904f6", "pid": "201724588", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/201724588", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/201724588", "source": "IDREF"}], "date_of_birth": "1977-12-11", "preferred_name": "Lemrabott Lewfah, Mohamed Aly", "country_associated": "mu", "authorized_access_point": "Lemrabott Lewfah, Mohamed Aly, 1977-....", "biographical_information": ["Auteur d'une thèse en Droit privé à Aix-Marseille en 2016"]} 1 -2023-07-08 08:21:53.402515 2023-07-08 08:21:53.402519 94ecf6c1-8ce8-4bf6-a8c8-7b4ef4a36359 {"md5": "d233edf2cda6bc47bedc37d9455e888a", "pid": "201753413", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/201753413", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/201753413", "source": "IDREF"}], "date_of_birth": "1927-12-06", "date_of_death": "1991-10-04", "preferred_name": "Diguet, Charles", "country_associated": "fr", "authorized_access_point": "Diguet, Charles, 1927-....", "biographical_information": ["Titulaire d'une thèse d'exercice en Médecine (Rennes 1 : 1962 )"]} 1 -2023-07-08 08:21:53.482362 2023-07-08 08:21:53.482366 b2d0b6de-98ae-4c5b-8b84-29c9743998e6 {"md5": "b3126aeb29dad18e58707cc8536a2abb", "pid": "201756463", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/201756463", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/201756463", "source": "IDREF"}], "preferred_name": "Bitat, Amor", "country_associated": "fr", "authorized_access_point": "Bitat, Amor", "biographical_information": ["Auteur d'une thèse de 3e cycle soutenue à l'Université de Nancy II en 1985"]} 1 -2023-07-08 08:21:53.630925 2023-07-08 08:21:53.630928 28302f64-2d69-4532-baf4-ccc9765c770e {"md5": "40e8f1582957b66bbf08f8d0c2aad5ce", "pid": "201790017", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "rus"], "conference": true, "identifier": "http://www.idref.fr/201790017", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/201790017", "source": "IDREF"}], "preferred_name": "Colloquium on Microwave Communication", "country_associated": "hu", "date_of_termination": "1970-04-24", "date_of_establishment": "1970-04-21", "authorized_access_point": "Colloquium on Microwave Communication (4 ; 1970 ; Budapest)"} 1 -2023-07-08 08:21:53.708583 2023-07-08 08:21:53.708586 5d59137f-9b02-4786-9628-454883619dfa {"md5": "9025cf45ab92deb302b4f1f05b0b4ea3", "pid": "201827581", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/201827581", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/201827581", "source": "IDREF"}], "variant_name": ["Valat, Sarah Obert"], "preferred_name": "Obert-Valat, Sarah", "country_associated": "fr", "variant_access_point": ["Valat, Sarah Obert"], "authorized_access_point": "Obert-Valat, Sarah"} 1 -2023-07-08 08:21:53.78237 2023-07-08 08:21:53.782381 5cd3142d-a8be-4790-9f0f-235cb4dd69bd {"md5": "a896164482e3b02d827fc1407f1b162b", "pid": "201830507", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/201830507", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/201830507", "source": "IDREF"}], "date_of_birth": "1988-08-30", "preferred_name": "Beaudoux, Xavier", "country_associated": "fr", "authorized_access_point": "Beaudoux, Xavier, 1988-....", "biographical_information": ["Titulaire d'un doctorat en chimie et physico-chimie des Matériaux (Université de Montpellier, 2015)"]} 1 -2023-07-08 08:21:53.869072 2023-07-08 08:21:53.869078 a5f1eade-b660-44c5-acc7-85285bca90ab {"md5": "fedb40e796ee45254dbc54c57da69a97", "pid": "201849534", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/201849534", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/201849534", "source": "IDREF"}], "date_of_birth": "1987-12-11", "preferred_name": "Roos, Antoine", "country_associated": "fr", "authorized_access_point": "Roos, Antoine", "biographical_information": ["Titulaire d'une thèse de docteur en médecine (Strasbourg, 2017)."]} 1 -2023-07-08 08:21:53.955892 2023-07-08 08:21:53.955895 c1afa8f6-54e3-4c22-a8e7-32591305d451 {"md5": "ba0203e6948e79695b18ce3370e5a5ff", "pid": "20185080X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/20185080X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/20185080X", "source": "IDREF"}], "variant_name": ["Vuillemin, Nicole Seibert-"], "preferred_name": "Seibert-Vuillemin, Nicole", "variant_access_point": ["Vuillemin, Nicole Seibert-"], "authorized_access_point": "Seibert-Vuillemin, Nicole", "biographical_information": ["Médecin"]} 1 -2023-07-08 08:21:54.227553 2023-07-08 08:21:54.227566 d19736b5-8e53-46fe-beab-6c7560dcef78 {"md5": "ef1b66bbf7c0f03528ea077d6a9e9a93", "pid": "202513645", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/202513645", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/202513645", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Chakrabarti, Nina", "country_associated": "xx", "authorized_access_point": "Chakrabarti, Nina, 19..-....", "biographical_information": ["Graphiste et illustratrice"]} 1 -2023-07-08 08:21:54.297276 2023-07-08 08:21:54.297282 3c44d2bf-1da2-4e31-9107-98e47e47fc79 {"md5": "1267aa714e29d5b8b0fc9a0e9d64163a", "pid": "202637417", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/202637417", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/202637417", "source": "IDREF"}], "date_of_birth": "1985-03-11", "preferred_name": "Berbiche, Amine", "country_associated": "ae", "authorized_access_point": "Berbiche, Amine, 1985-....", "biographical_information": ["Auteur d'une thèse en Acoustique à Aix-Marseille en 2016"]} 1 -2023-07-08 08:21:54.624662 2023-07-08 08:21:54.624665 66d1715a-e693-47fd-9f75-64261a9656a3 {"md5": "ed2ff5ef1a8cbd2d75f6a1855634b627", "pid": "202745279", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "traductrice", "identifier": "http://www.idref.fr/202745279", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/202745279", "source": "IDREF"}], "preferred_name": "Reilly, Joan, traductrice", "country_associated": "sz", "authorized_access_point": "Reilly, Joan, traductrice", "biographical_information": ["Traduit du français en anglais"]} 1 -2023-07-08 08:21:54.691636 2023-07-08 08:21:54.69164 bc937fc0-c670-43a8-baa7-3908583e71de {"md5": "1dd13934c1941ca61ddc0c5f527beb79", "pid": "202768740", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["cat"], "identifier": "http://www.idref.fr/202768740", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/202768740", "source": "IDREF"}], "date_of_birth": "1980", "preferred_name": "Darné, Txell", "country_associated": "sp", "authorized_access_point": "Darné, Txell, 1980-....", "biographical_information": ["Illustratrice, diplômée de l'école Massana de Barcelonne"]} 1 -2023-07-08 08:21:54.832666 2023-07-08 08:21:54.832671 fbc0cd7f-03ba-4302-8146-c2f2eab8e9f8 {"md5": "e13d003b59e498e38def96b126c5ab56", "pid": "202908097", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/202908097", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/202908097", "source": "IDREF"}], "date_of_birth": "1986-03-30", "preferred_name": "Ruiz, Mathieu", "country_associated": "fr", "authorized_access_point": "Ruiz, Mathieu, 1986-....", "biographical_information": ["Auteur d'une thèse en Sciences cognitives, psychologie et neurocognition à Grenoble en 2014"]} 1 -2023-07-08 08:21:54.465152 2023-07-08 10:25:49.622684 aef17f7f-bfc7-476d-81b4-8d6f9892d73b {"md5": "8f06f8b037ef4e77d5482db1e46fe119", "pid": "202681793", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/202681793", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/202681793", "source": "IDREF"}], "date_of_birth": "1978--", "preferred_name": "Ponce de León, Facundo", "country_associated": "uy", "authorized_access_point": "Ponce de León, Facundo, 1978-....", "biographical_information": ["Journaliste. Professeur d'anthropologie philosophique à l'Università della República Cattolica dell' Uruguay."]} 2 -2023-07-08 08:21:54.929414 2023-07-08 10:26:55.464899 9e713611-3f9b-46f4-9cc7-362430531307 {"md5": "ac2de297b2f2e7de270fa4e53072afb0", "pid": "202971511", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre", "spa"], "identifier": "http://www.idref.fr/202971511", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/202971511", "source": "IDREF"}], "variant_name": ["Connan, Christophe François"], "preferred_name": "François-Connan, Christophe", "country_associated": "fr", "variant_access_point": ["Connan, Christophe François"], "authorized_access_point": "François-Connan, Christophe"} 2 -2023-07-08 08:21:54.126438 2023-07-08 10:26:55.910757 8df80107-aa3d-458a-8d7a-795e8fc8d5d3 {"md5": "6a658b6b78f0485e2e824c70047f1532", "pid": "202446573", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/202446573", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/202446573", "source": "IDREF"}], "preferred_name": "Durante, Janet", "country_associated": "fr", "authorized_access_point": "Durante, Janet"} 2 -2023-07-08 08:21:54.549554 2023-07-08 10:29:19.394507 9d9c8077-fd2d-4031-b021-1e86f531ece4 {"md5": "2a2ad7d775f88f78589e1706d72f5a9d", "pid": "202685144", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/202685144", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/202685144", "source": "IDREF"}], "date_of_birth": "1903", "preferred_name": "Horton, Donald Clare", "authorized_access_point": "Horton, Donald Clare, 1903-...."} 2 -2023-07-08 08:21:54.755812 2023-07-08 10:30:23.167919 77091c9f-1333-48fe-9fe9-54fb3840cf68 {"md5": "9cef154c3edd72f94b7db67ac482a4dd", "pid": "202773663", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/202773663", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/202773663", "source": "IDREF"}], "date_of_birth": "1990-08-30", "preferred_name": "Rouchon, Thibaut", "country_associated": "fr", "authorized_access_point": "Rouchon, Thibaut, 1990-....", "biographical_information": ["Auteur d'une thèse en Mécanique-matériaux à Paris, ENSAM en 2015"]} 2 -2023-07-08 08:21:55.022019 2023-07-08 08:21:55.022028 afefe466-b17a-4fbe-bd8a-bc489bf28de6 {"md5": "a3d3574509cd64c187a3a8aca574af0c", "pid": "202987752", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/202987752", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/202987752", "source": "IDREF"}], "date_of_birth": "1809-07-31", "date_of_death": "1879-05-15", "preferred_name": "Godeboeuf, Eugène", "country_associated": "fr", "authorized_access_point": "Godeboeuf, Eugène, 1809-1879", "biographical_information": ["Architecte"]} 1 -2023-07-08 08:21:55.115737 2023-07-08 08:21:55.115743 85e1baec-400f-43e2-bbe0-88ce703cf77e {"md5": "5f19c1d685aa8b0ccb6cfa6557ce59a7", "pid": "20307324X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifier": "http://www.idref.fr/20307324X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/20307324X", "source": "IDREF"}], "variant_name": ["Пильщикова, Нина Н.", "Pilszczikowa, Nina", "Pilʹshchikova, Nina"], "date_of_birth": "19XX", "preferred_name": "Pilʹŝikova, Nina N.", "country_associated": "ru", "variant_access_point": ["Pilszczikowa, Nina", "Pilʹshchikova, Nina"], "authorized_access_point": "Pilʹŝikova, Nina N., 19..-...."} 1 -2023-07-08 08:21:55.185566 2023-07-08 08:21:55.185572 843831ca-c0b1-4dff-b479-ea4e281e6f29 {"md5": "07e2c40adcb4088fa675f42eabb03a2e", "pid": "203079442", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["tha"], "identifier": "http://www.idref.fr/203079442", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/203079442", "source": "IDREF"}], "variant_name": ["ล.พ."], "preferred_name": "Lǭ. Phǭ.", "country_associated": "th", "variant_access_point": ["ล.พ."], "authorized_access_point": "Lǭ. Phǭ.", "biographical_information": ["Translittération ALA-LC", "Pseudonyme d’un auteur thaï."]} 1 -2023-07-08 08:21:55.363051 2023-07-08 08:21:55.363055 c6db4071-17b9-41d1-abe1-533665957dda {"md5": "be89fc1692ffe269a5c058adceabf379", "pid": "203121953", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["pol"], "identifier": "http://www.idref.fr/203121953", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/203121953", "source": "IDREF"}], "preferred_name": "Orłowski, Tomasz", "country_associated": "pl", "authorized_access_point": "Orłowski, Tomasz", "biographical_information": ["Diplomate polonais"]} 1 -2023-07-08 08:21:55.444098 2023-07-08 08:21:55.444109 30470da4-11c6-4901-8aeb-c7c59edaa8b7 {"md5": "10731d2658400c69d0ca7b3462679657", "pid": "203168712", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/203168712", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/203168712", "source": "IDREF"}], "preferred_name": "Agius, Raymond", "authorized_access_point": "Agius, Raymond"} 1 -2023-07-08 08:21:55.718726 2023-07-08 08:21:55.718733 aaac0381-f025-4b14-b9f8-483b30e21a4e {"md5": "6e437bf1e5cda644b7e9834b708b6d6b", "pid": "203372514", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/203372514", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/203372514", "source": "IDREF"}], "variant_name": ["Martilliat, Joachim Enjobert de", "Martillat, Joachim-Enjobert de", "Ma, Qingshan", "De Martiliat, Joachim Enjobert", "Enjobert de Martiliat, Joachim"], "date_of_birth": "1706-06-11", "date_of_death": "1755-08-24", "preferred_name": "Martiliat, Joachim Enjobert de", "variant_access_point": ["Martilliat, Joachim Enjobert de", "Martillat, Joachim-Enjobert de", "Ma, Qingshan", "De Martiliat, Joachim Enjobert", "Enjobert de Martiliat, Joachim"], "authorized_access_point": "Martiliat, Joachim Enjobert de, 1706-1755", "biographical_information": ["Missionnaire en Chine, évêque d'Ecrinée. A traduit du chinois."]} 1 -2023-07-08 08:21:55.826385 2023-07-08 08:21:55.826391 692f2fb1-e3b7-4f52-9783-9e8a3b56dce4 {"md5": "4db87b21549d10b0bea9521d74dfc00a", "pid": "203387279", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/203387279", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/203387279", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Rigolot, Irénée", "country_associated": "fr", "authorized_access_point": "Rigolot, Irénée, 19..-....", "biographical_information": ["Moine cistercien, abbaye de Timadeuc"]} 1 -2023-07-08 08:21:55.896962 2023-07-08 08:21:55.896967 bc96099b-a0b9-48c8-b0fa-246a552e8341 {"md5": "c0c10e4cc37f28b4bd3fd47b1d9bbb64", "pid": "20354014X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["cze"], "identifier": "http://www.idref.fr/20354014X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/20354014X", "source": "IDREF"}], "preferred_name": "Zelenková, Petra", "authorized_access_point": "Zelenková, Petra"} 1 -2023-07-08 08:21:55.982472 2023-07-08 08:21:55.982482 b71fea1c-542e-4545-8902-605bba56e5db {"md5": "9560484d7df8f92f1cd1be02d68f19e7", "pid": "203603141", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/203603141", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/203603141", "source": "IDREF"}], "variant_name": ["Santis, Juan Antonio"], "date_of_birth": "1964", "preferred_name": "Santis Márquez, Juan Antonio", "country_associated": "cl", "variant_access_point": ["Santis, Juan Antonio"], "authorized_access_point": "Santis Márquez, Juan Antonio, 1964-...."} 1 -2023-07-08 08:21:55.26787 2023-07-08 10:28:21.177357 ebf25c42-bde8-4d3f-aaa7-e48fa985fef3 {"md5": "25ae7ee1439156fb913a61b8d8255bdb", "pid": "203120752", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/203120752", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/203120752", "source": "IDREF"}], "preferred_name": "Lataste, Flore", "authorized_access_point": "Lataste, Flore"} 2 -2023-07-08 08:21:55.53515 2023-07-08 10:29:01.662195 0de66cee-b161-42b7-bcdf-786db637979c {"md5": "4e462ede856cb57b534a916b4ed3800b", "pid": "203351312", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/203351312", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/203351312", "source": "IDREF"}], "preferred_name": "Urquidi Anaya, Martha", "country_associated": "bo", "authorized_access_point": "Urquidi Anaya, Martha", "biographical_information": ["Poète, écrivain"]} 2 -2023-07-08 08:21:56.125679 2023-07-08 08:21:56.125687 af3a7d5f-4232-491d-afc8-2469f361c747 {"md5": "fe1fe3bacb70ee7327dda424e838d56d", "pid": "203620941", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/203620941", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/203620941", "source": "IDREF"}], "date_of_birth": "1923-10-15", "preferred_name": "Moissi, Bettina", "country_associated": "gw", "authorized_access_point": "Moissi, Bettina, 1923-....", "biographical_information": ["Actrice allemande"]} 1 -2023-07-08 08:21:56.261382 2023-07-08 08:21:56.261395 ba0e27c5-9e96-4505-a8cd-a8c378ecd34a {"md5": "8f520ff0c6aa09b3b9e3b5b8e4353564", "pid": "203662997", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/203662997", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/203662997", "source": "IDREF"}], "preferred_name": "Kubba, Samira", "country_associated": "fr", "authorized_access_point": "Kubba, Samira", "biographical_information": ["Titulaire d'un doctorat en traitement de l'information (Paris 11, 1980)"]} 1 -2023-07-08 08:21:56.352071 2023-07-08 08:21:56.352077 405eecaa-412f-4a14-a6bf-e00e1411e85f {"md5": "9e4efee8d9cec88c1b7f4d4911dcea42", "pid": "203861108", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/203861108", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/203861108", "source": "IDREF"}], "date_of_birth": "17..", "date_of_death": "18..", "preferred_name": "Mittler", "country_associated": "gw", "authorized_access_point": "Mittler, 17..-18..", "biographical_information": ["Libraire à Leipsik. Travaille en association avec Besson."]} 1 -2023-07-08 08:21:56.445299 2023-07-08 08:21:56.445305 7f20c163-47b0-4e1b-8bfa-84baa816b940 {"md5": "cc7f80b67e612e9d3d3a124387cf0982", "pid": "203863232", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/203863232", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/203863232", "source": "IDREF"}], "date_of_birth": "1994-10-02", "preferred_name": "Sorlin, Delphine", "country_associated": "fr", "authorized_access_point": "Sorlin, Delphine, 1994-....", "biographical_information": ["Auteur d'un mémoire de kinésithérapie soutenu en 2017 à l'Université de Lyon I"]} 1 -2023-07-08 08:21:56.563467 2023-07-08 08:21:56.563476 a47ed013-ae17-42f8-bc03-649766f34381 {"md5": "230ab4f24273adfccd0cdedebffeacd5", "pid": "203926625", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/203926625", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/203926625", "source": "IDREF"}], "preferred_name": "Ter Mikelian-Calhoun, C.", "authorized_access_point": "Ter Mikelian-Calhoun, C.", "biographical_information": ["Titulaire dun mémoire de maîtrise en sociologie soutenu à l'université Paris VIII en [1975]"]} 1 -2023-07-08 08:21:56.675758 2023-07-08 08:21:56.675762 8779d4ad-4417-4432-aaf2-727bfab2288e {"md5": "26b5f696e89048417fb9044f05b89ab2", "pid": "203929594", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "qualifier": "sociologue", "identifier": "http://www.idref.fr/203929594", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/203929594", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Álvarez, Marcelo, sociologue", "authorized_access_point": "Álvarez, Marcelo, 19..-...., sociologue", "biographical_information": ["Anthropologue de l'Université de Buenos Aires et chercheur spécialisé en anthropologie alimantaire à l'Instituto Nacional de Antropología y Pensamiento Latinoamericano (Argentine) en 2015."]} 1 -2023-07-08 08:21:56.762877 2023-07-08 08:21:56.76289 8c2372fc-1e6f-434e-a229-495eb94256f5 {"md5": "bb04b2668f206f58a045ab49d6ca51ec", "pid": "203933036", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/203933036", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/203933036", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Huet, Pauline", "country_associated": "fr", "authorized_access_point": "Huet, Pauline, 19..-....", "biographical_information": ["Titulaire du diplôme d’Ingénieur de l’Institut Supérieur des Sciences Agronomiques, Agroalimentaires, Horticoles et du Paysage Option Horticulture Ornementale et Valorisation (Agrocampus Ouest Angers, 2012)"]} 1 -2023-07-08 08:21:56.894767 2023-07-08 08:21:56.894778 77508039-5a5c-4857-9b0e-51e413656fff {"md5": "1c47d64645a3dbb99b178dffb6cb0421", "pid": "203935616", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ara"], "identifier": "http://www.idref.fr/203935616", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/203935616", "source": "IDREF"}], "variant_name": ["Bicar, Hussein", "Hussein, Bikar", "Bicar, Hussein Amin Ibrahim"], "date_of_birth": "1913", "date_of_death": "2002", "preferred_name": "Bikar, Hussein Amin Ibrahim", "country_associated": "ua", "variant_access_point": ["Bicar, Hussein", "Hussein, Bikar", "Bicar, Hussein Amin Ibrahim"], "authorized_access_point": "Bikar, Hussein Amin Ibrahim, 1913-2002", "biographical_information": ["Artiste"]} 1 -2023-07-08 08:21:56.996269 2023-07-08 08:21:56.996282 e188e663-e07f-479e-bf0c-8e0f2ed63916 {"md5": "0645130ba2a5ea7f222d0fcb38cc9a57", "pid": "203937740", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/203937740", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/203937740", "source": "IDREF"}], "date_of_birth": "1987-04-20", "preferred_name": "Marre, Caroline", "country_associated": "fr", "authorized_access_point": "Marre, Caroline, 1987-....", "biographical_information": ["Auteur d'un mémoire de master 2 soutenu en 2012 à l'Université Paris 7-Denis Diderot"]} 1 -2023-07-08 08:21:57.132343 2023-07-08 08:21:57.132349 e25e24a7-d84c-4bdf-be21-e5314fe526af {"md5": "d25108f7d33e41d7cc349c5cf54a902d", "pid": "20394562X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/20394562X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/20394562X", "source": "IDREF"}], "preferred_name": "Shakeshaft, E.", "country_associated": "fr", "authorized_access_point": "Shakeshaft, E."} 1 -2023-07-08 08:21:57.22737 2023-07-08 08:21:57.22738 61da99a0-0760-4ce2-a9b5-d4b6bde35158 {"md5": "3bcef2b4fa6cc41319d6a153d25c5bd1", "pid": "203971051", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/203971051", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/203971051", "source": "IDREF"}], "preferred_name": "Leirs, Herwig", "authorized_access_point": "Leirs, Herwig", "biographical_information": ["Professeur de biologie, Université d'Anvers, Campus Groenenborger, Belgique (en 2017)"]} 1 -2023-07-08 08:21:57.434966 2023-07-08 08:21:57.434978 0c7cf4a5-90c6-4650-a4ff-4c2409432b6f {"md5": "79f74114f9e36a5b0b74ebd442784ecd", "pid": "204097428", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["pol"], "identifier": "http://www.idref.fr/204097428", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/204097428", "source": "IDREF"}], "preferred_name": "Turski, Ryszard", "country_associated": "pl", "authorized_access_point": "Turski, Ryszard"} 1 -2023-07-08 08:21:57.642272 2023-07-08 08:21:57.642278 b4fb1484-dcbf-4bde-b5ce-5285a3db0fb7 {"md5": "63bdb0c7617fffd5d6a452b4c8dcddc6", "pid": "204208246", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifier": "http://www.idref.fr/204208246", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/204208246", "source": "IDREF"}], "preferred_name": "TAPPI PaperCon", "country_associated": "xxu", "authorized_access_point": "TAPPI PaperCon (2016 ; Cincinnati (Ohio))"} 1 -2023-07-08 08:21:57.748484 2023-07-08 08:21:57.748495 9b3ebb77-431d-4d10-8fc1-6380cd3331f0 {"md5": "82d293be3f3809ee4e9d5bc13fbe3add", "pid": "20422280X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/20422280X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/20422280X", "source": "IDREF"}], "preferred_name": "Emnet, Charlotte", "authorized_access_point": "Emnet, Charlotte", "biographical_information": ["aAuteur d'une thèse en Médecine à l'Université de Lorraine en 2017"]} 1 -2023-07-08 08:21:57.846551 2023-07-08 08:21:57.846559 f7a4a59c-aa1f-48a2-a952-2d88b90b9a01 {"md5": "69a6869fbc1c265c1bef54cd3f8347f9", "pid": "204242479", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/204242479", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/204242479", "source": "IDREF"}], "preferred_name": "Brudal, Holger", "country_associated": "no", "authorized_access_point": "Brudal, Holger", "biographical_information": ["Directeur Verglaboratoriet, Oslo"]} 1 -2023-07-08 08:21:58.084945 2023-07-08 08:21:58.084957 b907f496-0676-49a2-a718-e6492f2bc6b6 {"md5": "5099e233663b9d64238033518a7751ff", "pid": "20436678X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/20436678X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/20436678X", "source": "IDREF"}], "preferred_name": "Shano, Philip D.", "country_associated": "xxc", "authorized_access_point": "Shano, Philip D.", "biographical_information": ["Jésuite ordonné prêtre en 1988. Maître de conférence : Regis College, University of Toronto (en 2017)"]} 1 -2023-07-08 08:21:58.189784 2023-07-08 08:21:58.189793 10f97a6e-994b-4904-b294-17bbc0051904 {"md5": "9635ac703f8f9349b7798cd5e8fe43e7", "pid": "204436869", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifier": "http://www.idref.fr/204436869", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/204436869", "source": "IDREF"}], "preferred_name": "Symposium on Archaean geochemistry", "country_associated": "ii", "date_of_termination": "1977-11-19", "date_of_establishment": "1977-11-15", "authorized_access_point": "Symposium on Archaean geochemistry (1977 ; Hyderabad, India)"} 1 -2023-07-08 08:21:58.518462 2023-07-08 08:21:58.518469 5b766149-5887-4528-b58d-cee658add4b9 {"md5": "bdcc13411cbbecf4a5e70fca3b2aa863", "pid": "204719593", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["hun"], "identifier": "http://www.idref.fr/204719593", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/204719593", "source": "IDREF"}], "date_of_birth": "1950-12-05", "date_of_death": "2XXX", "preferred_name": "Salusinsky, Gábor", "country_associated": "hu", "authorized_access_point": "Salusinsky, Gábor, 1950-....", "biographical_information": ["Professeur d'italien.Traducteur du hongrois en italien"]} 1 -2023-07-08 08:21:57.541893 2023-07-08 10:28:49.335852 6a8de648-39f6-4759-954f-5165544ff08a {"md5": "b8a5f1e1313828e1627aca3a570ab30d", "pid": "204167000", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/204167000", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/204167000", "source": "IDREF"}], "preferred_name": "Bhatt, Anil", "authorized_access_point": "Bhatt, Anil"} 2 -2023-07-08 08:21:57.317343 2023-07-08 10:29:42.092424 5866f28e-056f-4e33-848a-8b97acc2aafe {"md5": "35b2b343e4660df13638e9a5874f1594", "pid": "204040388", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/204040388", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/204040388", "source": "IDREF"}], "variant_name": ["Laplace, Marina Christiane"], "date_of_birth": "1993-04-27", "preferred_name": "Laplace, Marina", "variant_access_point": ["Laplace, Marina Christiane"], "authorized_access_point": "Laplace, Marina", "biographical_information": ["Sage-femme"]} 2 -2023-07-08 08:21:58.2833 2023-07-08 10:29:42.512084 dc0e22b1-d27b-44ef-a00a-e801f47a0c5f {"md5": "05c6da6604f799ec0df6e3557bc8e64b", "pid": "204581745", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rum"], "identifier": "http://www.idref.fr/204581745", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/204581745", "source": "IDREF"}], "preferred_name": "Andreescu, Dan", "country_associated": "rm", "authorized_access_point": "Andreescu, Dan"} 2 -2023-07-08 08:21:57.966482 2023-07-08 10:31:19.292581 a1945f19-6d81-44af-a79e-50d4cd82f0a8 {"md5": "7db16a42382d4524feac5a6e98023c72", "pid": "204251206", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/204251206", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/204251206", "source": "IDREF"}], "date_of_birth": "18XX", "date_of_death": "19XX", "preferred_name": "Peulevey, G. L.", "country_associated": "fr", "authorized_access_point": "Peulevey, G. L., 18..-....", "biographical_information": ["Sous-lieutenant"]} 2 -2023-07-08 08:21:58.613124 2023-07-08 08:21:58.613138 e968cc62-447f-4690-878b-ced30ece037d {"md5": "d3d2e98aa001a5885ec52fa95359dfb4", "pid": "204750032", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "identifier": "http://www.idref.fr/204750032", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/204750032", "source": "IDREF"}], "variant_name": ["池田, 節子"], "date_of_birth": "1955", "preferred_name": "Ikeda, Setsuko", "country_associated": "ja", "variant_access_point": ["池田, 節子, 1955-...."], "authorized_access_point": "Ikeda, Setsuko, 1955-....", "biographical_information": ["Sp. littérature japonaise"]} 1 -2023-07-08 08:21:58.746459 2023-07-08 08:21:58.746468 86de4884-dd21-496c-9631-e0df7bb6ae1a {"md5": "5144369c26de673176205655c94cd2c0", "pid": "204755824", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/204755824", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/204755824", "source": "IDREF"}], "preferred_name": "Brock, Janice", "country_associated": "xxk", "authorized_access_point": "Brock, Janice"} 1 -2023-07-08 08:21:58.845538 2023-07-08 08:21:58.845546 fb9c65b0-b220-4a44-9104-dc2817219446 {"md5": "5aad75277acad3d0bba9299f921b4612", "pid": "20476209X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/20476209X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/20476209X", "source": "IDREF"}], "variant_name": ["Telmini, Boutheina Maraoui", "Maraoui, Boutheina"], "preferred_name": "Maraoui Telmini, Boutheina", "country_associated": "ti", "variant_access_point": ["Telmini, Boutheina Maraoui", "Maraoui, Boutheina"], "authorized_access_point": "Maraoui Telmini, Boutheina", "biographical_information": ["Archéologue"]} 1 -2023-07-08 08:21:58.962008 2023-07-08 08:21:58.96202 cf2c0b05-d047-4ea3-830d-0fa15a92374d {"md5": "6bce0e9e116ec46e1343035904dddd39", "pid": "204801923", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "dentiste", "identifier": "http://www.idref.fr/204801923", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/204801923", "source": "IDREF"}], "preferred_name": "Michel, Elisabeth, dentiste", "authorized_access_point": "Michel, Elisabeth, dentiste", "biographical_information": ["Chirurgien dentiste"]} 1 -2023-07-08 08:21:59.071942 2023-07-08 08:21:59.071954 4a703784-d5ca-436e-945f-b2aa92cc5065 {"md5": "0ccf3143df1e81dae8f0c5a787a3d0d1", "pid": "219558523", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/219558523", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/219558523", "source": "IDREF"}], "date_of_birth": "17XX", "preferred_name": "Satur, M.-Joseph", "country_associated": "fr", "authorized_access_point": "Satur, M.-Joseph, 17..-....", "biographical_information": ["Chansonnier révolutionnaire"]} 1 -2023-07-08 08:21:59.161937 2023-07-08 08:21:59.161946 297dd9d8-6cc4-4b98-9486-556c1f76f52d {"md5": "65b1db8f345fd5ebf9a5bd941b38a4ab", "pid": "219844496", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/219844496", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/219844496", "source": "IDREF"}], "preferred_name": "Bouricha, Mohamed", "authorized_access_point": "Bouricha, Mohamed", "biographical_information": ["Chirurgien dentiste"]} 1 -2023-07-08 08:21:59.272428 2023-07-08 08:21:59.272435 8e4ef6ea-b0f2-4157-8d7e-dbe9ef366ae6 {"md5": "15db3d885e047b00c9326b0f271dc75e", "pid": "219895058", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/219895058", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/219895058", "source": "IDREF"}], "preferred_name": "Farougou, Souaibou", "country_associated": "dm", "authorized_access_point": "Farougou, Souaibou", "biographical_information": ["Professeur à l'Université d'Abomey-Calavi, Bénin; Co-Directeur d'une thèse de doctorat de Sciences, spécialité Biologie des Interactions (Université de Montpellier, 2016)"]} 1 -2023-07-08 08:21:59.365615 2023-07-08 08:21:59.365626 2c6877c0-dc7b-4389-866f-2f4147d34319 {"md5": "a48a4b26c34d18725c28fc4d8b9403f1", "pid": "219901015", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/219901015", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/219901015", "source": "IDREF"}], "variant_name": ["Compagnie générale des omnibus (CGO)"], "preferred_name": "Compagnie générale des omnibus (CGO). Compagnie générale des transports parisiens par le matériel des omnibus (Paris)", "country_associated": "fr", "date_of_termination": "1921", "variant_access_point": ["Compagnie générale des omnibus (CGO)"], "date_of_establishment": "1855", "authorized_access_point": "Compagnie générale des omnibus (CGO). Compagnie générale des transports parisiens par le matériel des omnibus (Paris)", "biographical_information": ["Créée en 1855 par fusion de plusieurs compagnies de transports urbains parisien afin d'organiser le transport public de voyageurs à Paris. Cette société privée, titulaire d'une concession délivrée par la Ville de Paris, est intégrée le 1er janvier 1921 à la Société des transports en commun de la région parisienne (STCRP), et se trouve être ainsi un lointain ancêtre de l'actuelle Régie autonome des transports parisiens (RATP)."]} 1 -2023-07-08 08:21:59.489639 2023-07-08 08:21:59.489645 87b671f9-6d86-4bf9-b667-5cd808149272 {"md5": "064e1629c1afbc3278ce8d8349eb807c", "pid": "219918252", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/219918252", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/219918252", "source": "IDREF"}], "preferred_name": "Ceccaroni, Alessandro", "country_associated": "it", "authorized_access_point": "Ceccaroni, Alessandro", "biographical_information": ["Historien"]} 1 -2023-07-08 08:21:59.697393 2023-07-08 08:21:59.697402 035da096-76ad-46e0-836a-e2f5f1c371b6 {"md5": "ad05d756a5fd18665d4eed5bef7b7e1d", "pid": "220045143", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/220045143", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/220045143", "source": "IDREF"}], "variant_name": ["Lochan, A."], "date_of_birth": "19XX", "preferred_name": "Lochan, Amarjiva", "country_associated": "th", "variant_access_point": ["Lochan, A."], "authorized_access_point": "Lochan, Amarjiva, 19..-....", "biographical_information": ["Spécialiste du bouddhisme"]} 1 -2023-07-08 08:21:59.811164 2023-07-08 08:21:59.811175 4e1dd282-870c-42ee-89df-9b22a9ecbbb3 {"md5": "e5e806b932054766e9b066ce318dbbcf", "pid": "220058784", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/220058784", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/220058784", "source": "IDREF"}], "date_of_birth": "1962", "preferred_name": "Hanna, Scott", "country_associated": "xxu", "authorized_access_point": "Hanna, Scott, 1962-....", "biographical_information": ["Illustrateur, encreur"]} 1 -2023-07-08 08:21:59.918103 2023-07-08 08:21:59.918112 ccdc3427-8b5f-43ab-8b21-b4c34ef34030 {"md5": "2692fd3aa77419c3e2944fc29404e583", "pid": "220068062", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/220068062", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/220068062", "source": "IDREF"}], "preferred_name": "Treadwell, James", "country_associated": "xxk", "authorized_access_point": "Treadwell, James"} 1 -2023-07-08 08:22:00.030313 2023-07-08 08:22:00.030325 fd93878c-94dc-45d5-8cc3-908758eb8c60 {"md5": "d0de71e8f86f7c93ae492da362162296", "pid": "220075247", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifier": "http://www.idref.fr/220075247", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/220075247", "source": "IDREF"}], "preferred_name": "Saratov Law Institute", "authorized_access_point": "Saratov Law Institute"} 1 -2023-07-08 08:22:00.113402 2023-07-08 08:22:00.113415 02099f5a-bc32-4a2f-950f-cd5f091d65ba {"md5": "57cbbdc6337ad7749d90e2cada4ecf01", "pid": "220078440", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/220078440", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/220078440", "source": "IDREF"}], "preferred_name": "Eyeghe-Ndong, Jean", "country_associated": "fr", "authorized_access_point": "Eyeghe-Ndong, Jean"} 1 -2023-07-08 08:22:00.211076 2023-07-08 08:22:00.211088 8bff22ad-6eb5-462d-904b-41e2baa44a4c {"md5": "1c63bb10779de95ceda07e814a2d7ef7", "pid": "220159157", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fin"], "identifier": "http://www.idref.fr/220159157", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/220159157", "source": "IDREF"}], "preferred_name": "Saarikalle, Anne", "country_associated": "fi", "authorized_access_point": "Saarikalle, Anne", "biographical_information": ["Linguiste"]} 1 -2023-07-08 08:22:00.414784 2023-07-08 08:22:00.414796 e2ab1982-ec97-4a9c-acb7-1fd04cfab6c2 {"md5": "0edc173dd1adf87fa631374d92fe011f", "pid": "220196133", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/220196133", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/220196133", "source": "IDREF"}], "date_of_birth": "19..", "preferred_name": "Dubois, Élisa", "country_associated": "fr", "authorized_access_point": "Dubois, Élisa, 19..-", "biographical_information": ["Titulaire du diplôme de Master 2 Spécialisation Sciences de l’Animal pour l’Elevage de Demain (Agrocampus-Ouest Rennes, 2017)"]} 1 -2023-07-08 08:22:00.504551 2023-07-08 08:22:00.504565 382bd38e-f48e-460c-a562-cfdb94886a6c {"md5": "25094f014691ed5194b87582cd0c504c", "pid": "220218919", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["chi"], "identifier": "http://www.idref.fr/220218919", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/220218919", "source": "IDREF"}], "variant_name": ["谢, 思全"], "date_of_birth": "1951", "preferred_name": "Xie, Siquan", "country_associated": "cc", "variant_access_point": ["谢, 思全, 1951-...."], "authorized_access_point": "Xie, Siquan, 1951-....", "biographical_information": ["Professeur d'économie à l'Université de Nankai"]} 1 -2023-07-08 08:22:00.944884 2023-07-08 10:30:23.584187 a559b92c-f855-48c9-bced-1a52cd2aab7c {"md5": "0de3135a383fd669eec64d25668da169", "pid": "220609829", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/220609829", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/220609829", "source": "IDREF"}], "date_of_birth": "1988-04-01", "preferred_name": "Peresson, François", "country_associated": "fr", "authorized_access_point": "Peresson, François, 1988-...."} 2 -2023-07-08 08:22:00.628412 2023-07-08 10:31:20.700644 75f696ee-4b77-42e1-8387-37b966ebba08 {"md5": "a92532fd6b8a6ab8197af3e441fbbbbf", "pid": "220304114", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/220304114", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/220304114", "source": "IDREF"}], "preferred_name": "Fouchier, Marion", "authorized_access_point": "Fouchier, Marion"} 2 -2023-07-08 08:22:00.311124 2023-07-08 10:31:44.00278 8aa1204c-146c-4bbb-ad34-a2274c0c211a {"md5": "fddcd67fb9ccd9b8af94e3f9f212428f", "pid": "220178003", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/220178003", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/220178003", "source": "IDREF"}], "date_of_birth": "1990-06-13", "preferred_name": "Borselli, Diane", "country_associated": "fr", "authorized_access_point": "Borselli, Diane, 1990-....", "biographical_information": ["Auteur d'une thèse en Biologie. Microbiologie à Aix-Marseille en 2017"]} 2 -2023-07-08 08:22:01.221842 2023-07-08 08:22:01.22185 d63bfad5-7400-4e33-96d5-1b1ee4ffc39a {"md5": "970f4d6c54dd2323ef1ef5d0feb971f0", "pid": "22088787X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/22088787X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/22088787X", "source": "IDREF"}], "date_of_birth": "1991-11-26", "preferred_name": "Prévost, Corentin", "country_associated": "fr", "authorized_access_point": "Prévost, Corentin"} 1 -2023-07-08 08:22:01.483163 2023-07-08 08:22:01.483169 2a5b266e-eaa0-4f71-a64a-b7e78307fe93 {"md5": "eaa08c7459a14cec2d748dcb96614f04", "pid": "221211810", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["per"], "identifier": "http://www.idref.fr/221211810", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/221211810", "source": "IDREF"}], "variant_name": ["علی الدین, مفتی", "Ali-ud-Din, Mufti", "Mufti Ali-ud-Din", "مفتی علی الدین", "Muftī ʿAlī al-Dīn"], "date_of_birth": "18XX", "date_of_death": "18XX", "preferred_name": "ʿAlī al-Dīn, Muftī", "country_associated": "ii", "variant_access_point": ["Ali-ud-Din, Mufti", "Mufti Ali-ud-Din", "مفتی علی الدین", "Muftī ʿAlī al-Dīn"], "authorized_access_point": "ʿAlī al-Dīn, Muftī, 18..-18.."} 1 -2023-07-08 08:22:01.577785 2023-07-08 08:22:01.577791 cf00066f-b8bc-47ef-a2a8-44f875522eba {"md5": "fd447781c2562e2bd2acb5963cd9a493", "pid": "221276904", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/221276904", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/221276904", "source": "IDREF"}], "preferred_name": "Cerisier, Marie-Pierre", "country_associated": "fr", "authorized_access_point": "Cerisier, Marie-Pierre"} 1 -2023-07-08 08:22:01.678701 2023-07-08 08:22:01.67871 278a68a8-8cae-4bc2-bf57-b152319b82c9 {"md5": "43ab4133dda31cb7e28db99223ccd546", "pid": "221337571", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre", "eng"], "conference": false, "identifier": "http://www.idref.fr/221337571", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/221337571", "source": "IDREF"}], "variant_name": ["Mois de la photo à Montréal"], "preferred_name": "MOMENTA (biennale de l'image)", "country_associated": "xxc", "date_of_termination": "2017", "variant_access_point": ["Mois de la photo à Montréal (15 ; 2017 ; Montréal, Québec)"], "date_of_establishment": "2017", "authorized_access_point": "MOMENTA (biennale de l'image) (15 ; 2017 ; Montréal, Québec)"} 1 -2023-07-08 08:22:01.770257 2023-07-08 08:22:01.770263 ff9cf48a-b4ba-470c-ad3a-dcbae96338dd {"md5": "4e1203c8df18fdbb7ed0c7de2178281f", "pid": "221337806", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/221337806", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/221337806", "source": "IDREF"}], "preferred_name": "Moreno-Villamar, Itziri", "authorized_access_point": "Moreno-Villamar, Itziri"} 1 -2023-07-08 08:22:01.867904 2023-07-08 08:22:01.867915 369ba661-6b95-41f7-84be-b89895dfe29e {"md5": "6c05a7056a0c268b3d128d54fabd08ea", "pid": "221343555", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/221343555", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/221343555", "source": "IDREF"}], "date_of_birth": "1914-08-19", "date_of_death": "2002-04-05", "preferred_name": "Brenot, Jacques", "country_associated": "fr", "authorized_access_point": "Brenot, Jacques, 1914-....", "biographical_information": ["Titulaire d'une thèse en médecine (Lyon, 1941)"]} 1 -2023-07-08 08:22:01.979201 2023-07-08 08:22:01.979208 e50a8849-885f-462f-8914-aa84ea040d78 {"md5": "70e32925d2ea475c0d28bdb0eeacc009", "pid": "221345477", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/221345477", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/221345477", "source": "IDREF"}], "variant_name": ["RSCU", "RSCU/SIDA", "Regional Soil Conservation Unit (RSCU). Swedish International Development Authority (SIDA)", "SIDA's Regional Soil Conservation Unit", "SIDA Regional Soil Conservation Unit", "Regionala markvårdsenheten"], "preferred_name": "Regional Soil Conservation Unit/SIDA", "country_associated": "ke", "variant_access_point": ["RSCU", "RSCU/SIDA", "Regional Soil Conservation Unit (RSCU). Swedish International Development Authority (SIDA)", "SIDA's Regional Soil Conservation Unit", "SIDA Regional Soil Conservation Unit", "Regionala markvårdsenheten"], "authorized_access_point": "Regional Soil Conservation Unit/SIDA"} 1 -2023-07-08 08:22:02.192913 2023-07-08 08:22:02.192923 b99f7768-2fe9-4b42-8d79-88eecff3ef5f {"md5": "d707b0afe6258d1b30ece32af0764266", "pid": "221465480", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/221465480", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/221465480", "source": "IDREF"}], "date_of_birth": "1977-01-01", "preferred_name": "Nguyen, Duc-Quan", "country_associated": "fr", "authorized_access_point": "Nguyen, Duc-Quan, 1977-....", "biographical_information": ["Titulaire d'un doctorat en électronique et génie électrique (Nantes, 2015)"]} 1 -2023-07-08 08:22:02.291816 2023-07-08 08:22:02.291831 45c0f80d-a191-4d95-a647-d05e2f130ebd {"md5": "db2b695032416975334b01ef06e1bdaf", "pid": "221485554", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/221485554", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/221485554", "source": "IDREF"}], "preferred_name": "Dupuy, Hélène", "authorized_access_point": "Dupuy, Hélène", "biographical_information": ["A soutenu une thèse en Histoire à Paris 1 en 1995"]} 1 -2023-07-08 08:22:02.076903 2023-07-08 10:28:21.676756 493c8e43-60fc-4b04-ab18-ede59ed93780 {"md5": "2ba36d5f686d8f06e3c865e10c998b6a", "pid": "221427767", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/221427767", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/221427767", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Foulon, Véronique", "country_associated": "fr", "authorized_access_point": "Foulon, Véronique, 19..-...."} 2 -2023-07-08 08:22:02.411841 2023-07-08 08:22:02.41185 d9c3fed1-8301-4a68-b004-2bd94d9ee703 {"md5": "078cc3795a980bbf4ed54a5381914d20", "pid": "221493646", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/221493646", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/221493646", "source": "IDREF"}], "date_of_birth": "1988-05-29", "preferred_name": "Thiefine, Marina", "country_associated": "fr", "authorized_access_point": "Thiefine, Marina, 1988-...", "biographical_information": ["Auteur d'une thèse d'exercice en Médecine soutenue le 6 juillet 2017 à l'Université de Bordeaux"]} 1 -2023-07-08 08:22:02.523988 2023-07-08 08:22:02.524002 a729bfc2-f8f1-46d1-9084-6f8665ed13f6 {"md5": "70aaa4feb322cffa7a06cb45e602880c", "pid": "221661425", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": false, "identifier": "http://www.idref.fr/221661425", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/221661425", "source": "IDREF"}], "variant_name": ["MASM", "Museo de arte de la Universidad de San Marcos (Lima)", "Museo de arte e historia (Lima)", "Universidad nacional mayor de San Marcos (Lima). Museo de arte"], "preferred_name": "Museo de arte de San Marcos (Lima)", "country_associated": "pe", "variant_access_point": ["MASM", "Museo de arte de la Universidad de San Marcos (Lima)", "Museo de arte e historia (Lima)", "Universidad nacional mayor de San Marcos (Lima). Museo de arte"], "date_of_establishment": "1970", "authorized_access_point": "Museo de arte de San Marcos (Lima)", "biographical_information": ["Musée fondé en 1970 par Francisco Stastny, sous le nom de : \\"Museo de arte e historia\\". - En 1996, a pris le nom de \\"Museo de arte de San Marcos\\". - Le musée fait partie du \\"Centro cultural de San Marcos\\" qui dépend de la \\"Universidad nacional mayor de San Marcos", "Adresse : Av. Nicolás de Piérola 1222 : Parque Universitario, Lima"]} 1 -2023-07-08 08:22:02.650322 2023-07-08 08:22:02.65033 1ca368dc-18e0-4316-866a-65c7d931fff7 {"md5": "0930da9eccfdd9b2fa9ce9627fe7e6b3", "pid": "221728856", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/221728856", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/221728856", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "244359857"}, "variant_name": ["Morgan, Karl Z."], "date_of_birth": "1907-09-27", "date_of_death": "1999-06-08", "preferred_name": "Morgan, Karl Ziegler", "country_associated": "xxu", "variant_access_point": ["Morgan, Karl Z."], "authorized_access_point": "Morgan, Karl Ziegler, 1907-1999", "biographical_information": ["Physicien américain, précurseur des recherches sur l'impact de la radioactivité en matière de santé publique, critique de la production en énergie nucléaire et sur l'arme nucléaire"]} 1 -2023-07-08 08:22:02.742444 2023-07-08 08:22:02.74245 84b78b7d-767b-4519-842c-5bffc9cea86f {"md5": "bcfcb061c6a37c52a109d65f84e3d670", "pid": "22175167X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/22175167X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/22175167X", "source": "IDREF"}], "preferred_name": "Morelle, Bruno", "country_associated": "fr", "authorized_access_point": "Morelle, Bruno"} 1 -2023-07-08 08:22:03.061272 2023-07-08 08:22:03.061305 24cccca3-16ee-4da5-bb21-633a136d97f5 {"md5": "19988c3bd159e8257171b7c8f24f819c", "pid": "223483516", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": true, "identifier": "http://www.idref.fr/223483516", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/223483516", "source": "IDREF"}], "preferred_name": "Comparative Education Society in Europe. Conference", "country_associated": "gw", "date_of_establishment": "1983", "authorized_access_point": "Comparative Education Society in Europe. Conference (11 ; 1983 ; Würzburg, Allemagne)"} 1 -2023-07-08 08:22:03.326924 2023-07-08 08:22:03.32693 4fba2d65-bf45-44f8-84e0-b83437778f32 {"md5": "91902272f2495330a1701d43133199e4", "pid": "223505056", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/223505056", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/223505056", "source": "IDREF"}], "date_of_birth": "1986-07-19", "preferred_name": "Zhou, Tao", "country_associated": "cc", "authorized_access_point": "Zhou, Tao, 1986-....", "biographical_information": ["Auteur d'une thèse en Physique de la Matière Condensée et du Rayonnement à Grenoble Alpes en 2015"]} 1 -2023-07-08 08:22:03.429269 2023-07-08 08:22:03.42928 ecceba9d-295c-4095-94dd-da8b53b779e2 {"md5": "88c0d7696b4cd41dab90bdf68584c584", "pid": "223537616", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/223537616", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/223537616", "source": "IDREF"}], "date_of_birth": "1898-06-13", "preferred_name": "Pétrovitch, Yovan", "country_associated": "fr", "authorized_access_point": "Pétrovitch, Yovan, 1898-....", "biographical_information": ["Titulaire d'une thèse en médecine (Lyon, 1924)"]} 1 -2023-07-08 08:22:02.9593 2023-07-08 10:26:18.163007 84066f57-7868-4c59-a4a4-d9c23796db90 {"md5": "d0cdc9e5dfaf7c990803ff2a3a63632e", "pid": "22344250X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/22344250X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/22344250X", "source": "IDREF"}], "date_of_birth": "18XX", "date_of_death": "19XX", "preferred_name": "Schwörbel, Heribert", "country_associated": "gw", "authorized_access_point": "Schwörbel, Heribert, 18..-19..", "biographical_information": ["Auteur d'une thèse de droit soutenue à l'Université d'Erlangen, Allemagne, en 1906."]} 2 -2023-07-08 08:22:02.836282 2023-07-08 10:27:47.887326 050fb066-350a-4290-a18c-ca3d48439a54 {"md5": "4c9ee63b9a6dcd518fc2068388658824", "pid": "221761942", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/221761942", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/221761942", "source": "IDREF"}], "variant_name": ["Laveaga, Mario Hinojos", "Hinojos, Mario"], "date_of_birth": "1982", "preferred_name": "Hinojos Laveaga, Mario", "country_associated": "mx", "variant_access_point": ["Laveaga, Mario Hinojos", "Hinojos, Mario"], "authorized_access_point": "Hinojos Laveaga, Mario, 1982-...."} 2 -2023-07-08 08:22:03.558717 2023-07-08 08:22:03.558728 8dea58b7-3aeb-4719-817a-96691e422be2 {"md5": "fa6cc6178099620f6721f51f10a30e3b", "pid": "223609935", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/223609935", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/223609935", "source": "IDREF"}], "date_of_birth": "1987-02-24", "preferred_name": "Petermann, Julie", "country_associated": "fr", "authorized_access_point": "Petermann, Julie, 1987-", "biographical_information": ["Docteur en médecine vétérinaire (en 2012)"]} 1 -2023-07-08 08:22:03.68547 2023-07-08 08:22:03.685483 90100f7d-97fc-47a9-b2d7-4e0220bd3ef9 {"md5": "ea3da5d9792a7203ada52e3a6c911e7a", "pid": "223614866", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/223614866", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/223614866", "source": "IDREF"}], "date_of_birth": "1979-10-27", "preferred_name": "Mélis, Noémie", "country_associated": "fr", "authorized_access_point": "Mélis, Noémie"} 1 -2023-07-08 08:22:03.795222 2023-07-08 08:22:03.795239 1df286b5-0282-4443-847b-1ff9ab2e6b2f {"md5": "0d4a20501e588421ff5b4c9321e3ba49", "pid": "223652555", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/223652555", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/223652555", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Saritas, Ozcan", "country_associated": "ru", "authorized_access_point": "Saritas, Ozcan, 19..-....", "biographical_information": ["National Research University Higher school of Economics, Moscou"]} 1 -2023-07-08 08:22:03.899252 2023-07-08 08:22:03.899264 7bd460e8-bacc-44ba-ad21-eff299e35692 {"md5": "488806985aff6876241697d7a14cd577", "pid": "223704288", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/223704288", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/223704288", "source": "IDREF"}], "date_of_birth": "1990-12-11", "preferred_name": "Mifsud, Alexis", "country_associated": "fr", "authorized_access_point": "Mifsud, Alexis, 1990-....", "biographical_information": ["Auteur d'une thèse en Robotique à Toulouse, INPT en 2017"]} 1 -2023-07-08 08:22:04.000095 2023-07-08 08:22:04.000104 621af4c1-4538-4def-91d0-01ee4e02ce06 {"md5": "a520dea4689f2b4c112aababa709e4a5", "pid": "22376423X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/22376423X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/22376423X", "source": "IDREF"}], "preferred_name": "Starr, Norton", "country_associated": "xx", "authorized_access_point": "Starr, Norton"} 1 -2023-07-08 08:22:04.265655 2023-07-08 08:22:04.265664 7ed9ba78-c138-47c3-a732-f0e6682cf191 {"md5": "7b6930be41025e829748932b24a7c877", "pid": "223852481", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/223852481", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/223852481", "source": "IDREF"}], "date_of_birth": "1909-06-04", "preferred_name": "Gradon, Hersz-Dawid", "country_associated": "fr", "authorized_access_point": "Gradon, Hersz-Dawid, 1909-....", "biographical_information": ["Titulaire d'une thèse en Médecine (Lyon, 1934)"]} 1 -2023-07-08 08:22:04.385818 2023-07-08 08:22:04.38583 a74781c7-02d4-4986-8953-864352253bd7 {"md5": "fa4412d65e317397812fe1e4ab270dde", "pid": "223890472", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifier": "http://www.idref.fr/223890472", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/223890472", "source": "IDREF"}], "preferred_name": "AMS Special Session on Banach spaces of analytic functions‎", "country_associated": "xxu", "date_of_termination": "2006-04-23", "date_of_establishment": "2006-04-22", "authorized_access_point": "AMS Special Session on Banach spaces of analytic functions‎ (2006‎ ; Durham, N.H.)"} 1 -2023-07-08 08:22:04.50193 2023-07-08 08:22:04.501944 aff09496-ac37-4024-aa79-a981fc66fb2c {"md5": "90b046ddb022c61f577c5cb6f2209825", "pid": "224016806", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/224016806", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/224016806", "source": "IDREF"}], "preferred_name": "Halpern, Alan", "country_associated": "xxu", "authorized_access_point": "Halpern, Alan"} 1 -2023-07-08 08:22:04.834867 2023-07-08 08:22:04.835271 6a8a0c45-8155-4b0e-8fb3-743fee133f43 {"md5": "7ec5f59d67686ed5850c00cd3dbbc148", "pid": "224319418", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["srp"], "identifier": "http://www.idref.fr/224319418", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/224319418", "source": "IDREF"}], "variant_name": ["Николић, Иван"], "date_of_birth": "19xx", "preferred_name": "Nikolić, Ivan", "variant_access_point": ["Николић, Иван, 19..-...."], "authorized_access_point": "Nikolić, Ivan, 19..-...."} 1 -2023-07-08 08:22:04.129834 2023-07-08 10:29:42.915364 48bf160d-e989-4ab6-80d7-6ff7b2659efd {"md5": "801fc97195a0a900de6b69cbfb8fb1e5", "pid": "223847585", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/223847585", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/223847585", "source": "IDREF"}], "preferred_name": "Joye, Isabelle", "country_associated": "fr", "authorized_access_point": "Joye, Isabelle"} 2 -2023-07-08 08:22:04.727647 2023-07-08 10:30:24.317481 6bc912c3-0d99-46aa-a765-3c2a5ad50939 {"md5": "7b24e2b98876f963d49244a9adb1a0b1", "pid": "224227815", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/224227815", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/224227815", "source": "IDREF"}], "date_of_birth": "1975-08-09", "preferred_name": "Roche, Jeanne", "country_associated": "fr", "authorized_access_point": "Roche, Jeanne, 1975-....", "biographical_information": ["Auteur d'une thèse en Psychologie à Angers en 2017"]} 2 -2023-07-08 08:22:04.96248 2023-07-08 08:22:04.962494 1cfd12ed-7a29-48f1-b115-66ba7ad8848b {"md5": "7ac7434552f94bd27b51e1d307404978", "pid": "224335081", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/224335081", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/224335081", "source": "IDREF"}], "preferred_name": "Animage. Association (Saint Rogatien)", "country_associated": "fr", "authorized_access_point": "Animage. Association (Saint Rogatien)"} 1 -2023-07-08 08:22:05.092196 2023-07-08 08:22:05.092202 a063624c-98a6-42f6-93fe-37dc7ce8f264 {"md5": "2303b00517c990255edfebd48f0428c8", "pid": "22438306X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["kor"], "identifier": "http://www.idref.fr/22438306X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/22438306X", "source": "IDREF"}], "date_of_birth": "1973-01-09", "preferred_name": "Park, Sung-woong", "country_associated": "ko", "authorized_access_point": "Park, Sung-woong", "biographical_information": ["Acteur"]} 1 -2023-07-08 08:22:05.198642 2023-07-08 08:22:05.198651 7e7aec5a-fa70-4bdd-bf00-e3974df7d5c8 {"md5": "0ef30806f61fb4dc457f36e180d8c386", "pid": "224404717", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["chi"], "identifier": "http://www.idref.fr/224404717", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/224404717", "source": "IDREF"}], "variant_name": ["袁, 蓉"], "date_of_birth": "1977", "preferred_name": "Yuan, Rong", "country_associated": "cc", "variant_access_point": ["袁, 蓉, 1977-...."], "authorized_access_point": "Yuan, Rong, 1977-....", "biographical_information": ["Historienne. Maitre de conférence à l'Université de Shanghai (上海大学)"]} 1 -2023-07-08 08:22:05.31105 2023-07-08 08:22:05.311062 cd615999-45ee-4e41-b3c4-ccf7cf8ce9a9 {"md5": "57d2b8f5efb26f85eef2302e335a636b", "pid": "224452630", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/224452630", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/224452630", "source": "IDREF"}], "preferred_name": "Davis, Arthur G.", "country_associated": "xxu", "authorized_access_point": "Davis, Arthur G."} 1 -2023-07-08 08:22:05.433437 2023-07-08 08:22:05.433448 3ffa0fd1-f3b6-4a5e-93fb-965d7251f674 {"md5": "c5b3f3bafe4987ca6838e8b4513085d9", "pid": "224502557", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/224502557", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/224502557", "source": "IDREF"}], "preferred_name": "Theurer, Anna", "country_associated": "fr", "authorized_access_point": "Theurer, Anna", "biographical_information": ["Titulaire d'un master 2 recherche en Droit des affaires de l'Université de Bordeaux en 2017"]} 1 -2023-07-08 08:22:05.559447 2023-07-08 08:22:05.559458 3b9eb91c-2bfb-42e8-ad99-b881e1876e66 {"md5": "3d69c8df473485b755e182a6fec00df1", "pid": "224542249", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["nor"], "identifier": "http://www.idref.fr/224542249", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/224542249", "source": "IDREF"}], "date_of_birth": "1963", "preferred_name": "Hølmebakk, Beate", "country_associated": "no", "authorized_access_point": "Hølmebakk, Beate, 1963-....", "biographical_information": ["Architecte"]} 1 -2023-07-08 08:22:05.673826 2023-07-08 08:22:05.673831 a4de8a72-b1c5-4917-9448-6f93309ab685 {"md5": "78126efea98c3a6bc40d2ef819d59d29", "pid": "224544411", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "deleted": "2023-05-02T15:14:40.693107+00:00", "language": ["fre"], "identifier": "http://www.idref.fr/224544411", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/224544411", "source": "IDREF"}], "date_of_birth": "1983-08-06", "preferred_name": "Hordeaux, Juliette", "country_associated": "fr", "authorized_access_point": "Hordeaux, Juliette, 1983-....", "biographical_information": ["Titulaire d'un doctorat en Biologie, médecine et santé (Nantes, 2014)"]} 1 -2023-07-08 08:22:05.797802 2023-07-08 08:22:05.797808 cd63d25d-7530-435c-ab00-44cd9f24544c {"md5": "0353e96d537a7ce47d24174a2d8e8330", "pid": "224701592", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/224701592", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/224701592", "source": "IDREF"}], "preferred_name": "Commencais, Coralie", "country_associated": "fr", "authorized_access_point": "Commencais, Coralie", "biographical_information": ["Artiste-peintre. Illustratrice dans le webzine \\"Le Shaker\\""]} 1 -2023-07-08 08:22:05.913074 2023-07-08 08:22:05.913088 64d69b92-1789-4d99-ab38-671362fd62ce {"md5": "d30d7be0c98e80bd9582c8924a79c6a3", "pid": "22472178X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/22472178X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/22472178X", "source": "IDREF"}], "date_of_birth": "1946-02-15", "preferred_name": "Bouinidane, Abdallah", "country_associated": "fr", "authorized_access_point": "Bouinidane, Abdallah, 1946-....", "biographical_information": ["Titulaire d'une thèse en médecine (Lyon, 1971). Ancien élève de l'Ecole du Service de Santé Militaire"]} 1 -2023-07-08 08:22:10.00415 2023-07-08 10:31:21.597296 4b19e5ee-7ef1-4727-8d52-031c5798cff0 {"md5": "93a1f0ab1bd0b122632790cfdffea49b", "pid": "227130812", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/227130812", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/227130812", "source": "IDREF"}], "preferred_name": "Paletto, Patrice", "authorized_access_point": "Paletto, Patrice", "biographical_information": ["Ingénieur, Directeur Produit de Renault-Trucks de 2005 à 2015"]} 2 -2023-07-08 08:22:06.292011 2023-07-08 08:22:06.292028 1f27dc68-2b0e-4968-b80e-01ea3a4a9d7a {"md5": "93205255fb0e307ab470ae42e22a245b", "pid": "224842722", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/224842722", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/224842722", "source": "IDREF"}], "date_of_birth": "1992-04-13", "preferred_name": "Monie, Virginie", "country_associated": "fr", "authorized_access_point": "Monie, Virginie", "biographical_information": ["Auteur d'une thèse en chirurgie dentaire"]} 1 -2023-07-08 08:22:06.410377 2023-07-08 08:22:06.410387 b43616f9-4895-40ca-93ae-fd50eec4be30 {"md5": "9f6af22eef19e0b75a11868630371c78", "pid": "224847333", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": true, "identifier": "http://www.idref.fr/224847333", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/224847333", "source": "IDREF"}], "variant_name": ["Quadriennale d'arte di Roma"], "preferred_name": "Quadriennale di Roma", "country_associated": "it", "variant_access_point": ["Quadriennale d'arte di Roma"], "authorized_access_point": "Quadriennale di Roma (09 ; 1965)", "biographical_information": ["Fondation pour la promotion de l'art contemporain italien"]} 1 -2023-07-08 08:22:06.618329 2023-07-08 08:22:06.618335 dece56d8-3dd7-4e1e-a2d7-c9f43f574e43 {"md5": "1968bcf3316dcd35a7075da4ea351921", "pid": "224900536", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/224900536", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/224900536", "source": "IDREF"}], "date_of_birth": "1957-02-08", "preferred_name": "Guirao, Eric", "country_associated": "fr", "authorized_access_point": "Guirao, Eric, 1957-...", "biographical_information": ["Auteur d'une thèse pratique d'exercice (Pharmacie) à l'université de Tours en 1984"]} 1 -2023-07-08 08:22:06.719559 2023-07-08 08:22:06.719572 599d70fb-e4ed-4619-b9a7-85d6a5efea49 {"md5": "64180859044ff46497154e61ce8db163", "pid": "224972065", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/224972065", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/224972065", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Flood, Victoria", "country_associated": "xxk", "authorized_access_point": "Flood, Victoria, 19..-....", "biographical_information": ["Professeure de littérature médiévale et moderne à l'Université de Birmingham (en 2016)"]} 1 -2023-07-08 08:22:07.210204 2023-07-08 08:22:07.210301 3c8308d0-1f9b-4e1c-a890-1d42a43d5b56 {"md5": "f4788d924b24d6bf9f37db1e91c72a07", "pid": "225406292", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/225406292", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/225406292", "source": "IDREF"}], "variant_name": ["Deluca, Francisco A."], "date_of_birth": "19XX", "preferred_name": "Deluca, Francisco A.", "variant_access_point": ["Deluca, Francisco A."], "authorized_access_point": "Deluca, Francisco A., 19..-....", "biographical_information": ["Prosector de la clinica obstétrica y ginecologia"]} 1 -2023-07-08 08:22:07.315154 2023-07-08 08:22:07.315163 222aee29-2190-4c96-b9db-fd98611fbfec {"md5": "61588d85602bfa695f868327b896a27c", "pid": "225412632", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/225412632", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/225412632", "source": "IDREF"}], "preferred_name": "Grobler, D. F.", "country_associated": "sa", "authorized_access_point": "Grobler, D. F.", "biographical_information": ["Géologue"]} 1 -2023-07-08 08:22:07.427157 2023-07-08 08:22:07.427169 9cae4b1a-0bce-4aa6-b03d-3fe6821d7345 {"md5": "bc4b5452c8f8f1df316cbc6199894f91", "pid": "225448475", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/225448475", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/225448475", "source": "IDREF"}], "preferred_name": "Chaplet, John", "country_associated": "fr", "authorized_access_point": "Chaplet, John", "biographical_information": ["Auteur d'un mémoire en Santé publique soutenu en octobre 1999 à l'Université de Bordeaux 2"]} 1 -2023-07-08 08:22:07.08463 2023-07-08 10:26:57.068032 57c43645-35f6-466d-a6dc-c08426477c0d {"md5": "48dde6da34e82448a8437a4930a9e529", "pid": "225402475", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/225402475", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/225402475", "source": "IDREF"}], "date_of_birth": "1991-03-18", "preferred_name": "Bahri, Racha", "country_associated": "fr", "authorized_access_point": "Bahri, Racha, 1991-....", "biographical_information": ["Auteur d'une thèse en Immunologie, oncologie et infectiologie à Limoges en 2017"]} 2 -2023-07-08 08:22:06.960135 2023-07-08 10:30:21.604707 a498439a-8be0-4dd3-9d8b-eb5f03200101 {"md5": "7cc6f4b509df291526ddf286a82f95de", "pid": "225224054", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/225224054", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/225224054", "source": "IDREF"}], "preferred_name": "Timmons, Edward H.", "country_associated": "xxu", "authorized_access_point": "Timmons, Edward H."} 2 -2023-07-08 08:22:07.537665 2023-07-08 08:22:07.537676 ab3dd73f-5322-4ee1-b1ba-63efc4fd34e7 {"md5": "6149cdcd7faa51b9072c2961b687bf82", "pid": "225463121", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["hun"], "identifier": "http://www.idref.fr/225463121", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/225463121", "source": "IDREF"}], "date_of_birth": "1883", "date_of_death": "1959", "preferred_name": "Verebély, László", "country_associated": "hu", "authorized_access_point": "Verebély, László, 1883-1959", "biographical_information": ["ingénieur électricien"]} 1 -2023-07-08 08:22:07.649711 2023-07-08 08:22:07.649725 c4d1d6ee-31aa-4b52-8d06-d9b5b0f38633 {"md5": "a67ea1af3324fcdef897433b9e6b32cc", "pid": "225512521", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger", "jpn"], "identifier": "http://www.idref.fr/225512521", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/225512521", "source": "IDREF"}], "preferred_name": "Ikari, Yuki", "country_associated": "ja", "authorized_access_point": "Ikari, Yuki", "biographical_information": ["Doctorat en histoire à l'université de Bonn en 2006"]} 1 -2023-07-08 08:22:07.758561 2023-07-08 08:22:07.758588 99b475c9-3421-4a75-8041-d49f0f7eb935 {"md5": "a3d5e41095fbb5ac40fae8b12193db46", "pid": "225514451", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/225514451", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/225514451", "source": "IDREF"}], "preferred_name": "Inspection générale des services sanitaires et médicaux civils (Brazzaville)", "country_associated": "cg", "date_of_termination": "19XX", "date_of_establishment": "19XX", "authorized_access_point": "Inspection générale des services sanitaires et médicaux civils (Brazzaville)"} 1 -2023-07-08 08:22:07.856707 2023-07-08 08:22:07.856713 b7a111cb-1c09-478e-b6bf-8f40dce47acb {"md5": "53320a04f8768ff67c3cf97666a8eee8", "pid": "225603128", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["tam", "eng"], "conference": false, "identifier": "http://www.idref.fr/225603128", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/225603128", "source": "IDREF"}], "variant_name": ["திருநெல்வேலி, தென்னிந்திய சைவசித்தாந்த நூற்பதிப்புக் கழகம் (ஆள்வார்பேட்டை, சென்னை)", "The South India Saiva Siddhanta Works Publishing Society (Tinnevelly)", "Kaḻaka Veḷiyīṭu", "Saiva Siddhanta Nurpatippuk Kazhakam", "Kazhaka Veliyidu"], "preferred_name": "Tirunelvēli, Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam (Ālvarpeṭṭai, Ceṉṉai)", "country_associated": "ii", "variant_access_point": ["The South India Saiva Siddhanta Works Publishing Society (Tinnevelly)", "Kaḻaka Veḷiyīṭu", "Saiva Siddhanta Nurpatippuk Kazhakam", "Kazhaka Veliyidu"], "date_of_establishment": "19XX", "authorized_access_point": "Tirunelvēli, Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam (Ālvarpeṭṭai, Ceṉṉai)", "biographical_information": ["Alvarpettai, Chennai, India"]} 1 -2023-07-08 08:22:07.952664 2023-07-08 08:22:07.952678 f23a863e-bd50-4e65-a4e4-63cd28cce074 {"md5": "17e659a3d784bb15ee64df926cae3e7e", "pid": "225616459", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifier": "http://www.idref.fr/225616459", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/225616459", "source": "IDREF"}], "preferred_name": "Swiss Design Network Symposium", "country_associated": "sz", "date_of_termination": "2008-05-31", "date_of_establishment": "2008-05-30", "authorized_access_point": "Swiss Design Network Symposium (2008 ; Berne)"} 1 -2023-07-08 08:22:08.060251 2023-07-08 08:22:08.060262 c9398d34-a4a8-46e9-a174-260be04f84d2 {"md5": "57bc409afd15690ace34dca1d45116b9", "pid": "225732394", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/225732394", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/225732394", "source": "IDREF"}], "date_of_birth": "1939", "preferred_name": "Riley, Barry", "country_associated": "xxu", "authorized_access_point": "Riley, Barry, 1939-...."} 1 -2023-07-08 08:22:08.166005 2023-07-08 08:22:08.166021 55d02290-7b74-4c07-aa73-b9b5f3c400f2 {"md5": "42f7a24fba2a53ecc72b3e48628995b3", "pid": "225791153", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/225791153", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/225791153", "source": "IDREF"}], "preferred_name": "Miles, Liz", "country_associated": "xxk", "authorized_access_point": "Miles, Liz", "biographical_information": ["Auteur de littérature de jeunesse"]} 1 -2023-07-08 08:22:08.281152 2023-07-08 08:22:08.281162 cd920fab-7209-45f3-a426-c68204def4b8 {"md5": "94bdbbfe112d8863a4c14691b8d36791", "pid": "225800373", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/225800373", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/225800373", "source": "IDREF"}], "preferred_name": "Meysembourg, Sandra", "country_associated": "fr", "authorized_access_point": "Meysembourg, Sandra", "biographical_information": ["Auteur d'un mémoire de master 1 en musicologie à l'université Nancy 2 en 2009"]} 1 -2023-07-08 08:22:08.492972 2023-07-08 10:25:46.098971 3449ac82-0b6e-499f-82e2-e4f733f7c39c {"md5": "92db144b04275b085cd562f8df3689ca", "pid": "226149390", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/226149390", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/226149390", "source": "IDREF"}], "preferred_name": "Taragonet, M.E.", "authorized_access_point": "Taragonet, M.E."} 2 -2023-07-08 08:22:08.641893 2023-07-08 10:27:44.810015 d18f392b-e36d-4210-bdc7-e1d01f484ed2 {"md5": "fb7a5c7601c87832670e377be3199b57", "pid": "226257444", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/226257444", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/226257444", "source": "IDREF"}], "date_of_birth": "1990-07-13", "preferred_name": "Gosselin, David", "country_associated": "fr", "authorized_access_point": "Gosselin, David, 1990-....", "biographical_information": ["Auteur d'une thèse en Mécanique des fluides Energétique, Procédés à Grenoble Alpes en 2017"]} 2 -2023-07-08 08:22:08.758797 2023-07-08 08:22:08.758807 e3411a5c-41ec-475a-b8eb-e90a51839af5 {"md5": "e8c9fbdfa26e6e6212ad16db346e3a9d", "pid": "226272893", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": true, "identifier": "http://www.idref.fr/226272893", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/226272893", "source": "IDREF"}], "preferred_name": "Institut international de philosophie. Entretiens", "country_associated": "gr", "date_of_termination": "1955-04-06", "date_of_establishment": "1955-04-02", "authorized_access_point": "Institut international de philosophie. Entretiens (1955 ; Athènes)"} 1 -2023-07-08 08:22:08.901515 2023-07-08 08:22:08.901525 e5b93ad4-4142-4e07-907b-68848d17c149 {"md5": "8f650907095c17b386e3887b1d1ce755", "pid": "226304108", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/226304108", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/226304108", "source": "IDREF"}], "variant_name": ["Mandra, Marguerite"], "date_of_birth": "19XX", "preferred_name": "Cazeau, Marguerite", "country_associated": "fr", "variant_access_point": ["Mandra, Marguerite"], "authorized_access_point": "Cazeau, Marguerite, 19..-....", "biographical_information": ["Surveillante des services médicaux de l'hôpital d'instruction des armées Percy, à Clamart. Auteure d'un mémoire pour le diplôme technique d'infirmier, soutenu à Clamart, en 1991"]} 1 -2023-07-08 08:22:09.014691 2023-07-08 08:22:09.014695 19673c33-b622-44e1-8222-9baba47b2b15 {"md5": "704347e862c82495aac8f9ca4f90e6a6", "pid": "226336328", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/226336328", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/226336328", "source": "IDREF"}], "preferred_name": "American fisheries society. Annual meeting", "country_associated": "xxu", "date_of_termination": "1964-09", "date_of_establishment": "1964-09", "authorized_access_point": "American fisheries society. Annual meeting (94 ; 1964 ; Atlantic City, New Jersey)"} 1 -2023-07-08 08:22:09.113717 2023-07-08 08:22:09.113734 e1467245-59fa-47b1-b481-b2fab9bd916d {"md5": "66312fb1fc96c8361b9616bef25f44e2", "pid": "226372294", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/226372294", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/226372294", "source": "IDREF"}], "preferred_name": "Pupponi, Jean-Marc", "country_associated": "fr", "authorized_access_point": "Pupponi, Jean-Marc"} 1 -2023-07-08 08:22:09.231276 2023-07-08 08:22:09.231282 16477f0a-16a5-409f-b19b-b0378acdeea0 {"md5": "ae77516b0639f4279e2be9fbaef90f1a", "pid": "226411354", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/226411354", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/226411354", "source": "IDREF"}], "variant_name": ["Bouchard, Anaïs"], "date_of_birth": "1987-10-05", "preferred_name": "David, Anaïs", "country_associated": "fr", "variant_access_point": ["Bouchard, Anaïs"], "authorized_access_point": "David, Anaïs, 1987-....", "biographical_information": ["Titulaire d'une thèse d'exercice de médecine soutenue à Paris-Sud le 16 /10/ 2017"]} 1 -2023-07-08 08:22:09.337392 2023-07-08 08:22:09.337401 51f21775-35a9-4db9-932c-6af54c288615 {"md5": "d115e606649f499547c3dc200430c923", "pid": "22676026X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifier": "http://www.idref.fr/22676026X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/22676026X", "source": "IDREF"}], "preferred_name": "Colloque d'Istanbul \\"La Turquie, les Turcs et la presse\\"", "country_associated": "tu", "date_of_establishment": "1986", "authorized_access_point": "Colloque d'Istanbul \\"La Turquie, les Turcs et la presse\\" (1986 ; École supérieure de journalisme de l'université de la Marmara, Istanbul, Turquie)"} 1 -2023-07-08 08:22:09.442851 2023-07-08 08:22:09.442863 7b5b65a3-5718-4f05-b433-b3b7f0e3e034 {"md5": "7e5673d0b211030e01aae1472de43c12", "pid": "226865037", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/226865037", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/226865037", "source": "IDREF"}], "preferred_name": "Piderit, Georg Ludwig", "parallel_access_point": ["Piderit, Georg Ludewig"], "authorized_access_point": "Piderit, Georg Ludwig", "biographical_information": ["Traduit de l'anglais en allemand"]} 1 -2023-07-08 08:22:09.557708 2023-07-08 08:22:09.557722 9dbebdf1-a6b6-4938-ae38-f2681d597cfa {"md5": "c07a9fe606957c5893113f552774b3ce", "pid": "226921670", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/226921670", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/226921670", "source": "IDREF"}], "date_of_birth": "18..", "date_of_death": "19..", "preferred_name": "Gaudard, Erman", "country_associated": "fr", "authorized_access_point": "Gaudard, Erman, 18..-19.."} 1 -2023-07-08 08:22:09.659753 2023-07-08 08:22:09.659756 1d71b620-6b14-4ac5-afc2-f99218888e4b {"md5": "48be440a900183240160aa842c4bed35", "pid": "226932141", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/226932141", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/226932141", "source": "IDREF"}], "variant_name": ["Jarmillo, C., Luis"], "preferred_name": "Luis Jarmillo, C.", "country_associated": "ck", "variant_access_point": ["Jarmillo, C., Luis"], "authorized_access_point": "Luis Jarmillo, C.", "biographical_information": ["géologue"]} 1 -2023-07-08 08:22:09.881683 2023-07-08 08:22:09.881694 93717707-9c94-40f6-bbb1-62a5cf148a98 {"md5": "d2e11ac047716c3a0c56d77ab1ac6323", "pid": "226964736", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/226964736", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/226964736", "source": "IDREF"}], "preferred_name": "Chaire UNESCO Santé sexuelle et droits humains (Paris)", "country_associated": "fr", "date_of_establishment": "2010-12-01", "authorized_access_point": "Chaire UNESCO Santé sexuelle et droits humains (Paris)", "biographical_information": ["Créée en décembre 2010. www.santesexuelle-droitshumains.org"]} 1 -2023-07-08 08:22:10.24364 2023-07-08 08:22:10.243651 0f496bb9-172b-4f63-9f6e-2061bead5395 {"md5": "a8119d748516e366c70cd389f70bb3a1", "pid": "227236610", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/227236610", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/227236610", "source": "IDREF"}], "preferred_name": "Kornaropoulou, Sotiria", "authorized_access_point": "Kornaropoulou, Sotiria", "biographical_information": ["Architecte et membre de l'agence d'architecture 51N4E"]} 1 -2023-07-08 08:22:10.363142 2023-07-08 08:22:10.363156 42af6612-ab63-4402-907e-2883651eb827 {"md5": "1690d2c6fc9494ab93e834d82613af02", "pid": "227237382", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/227237382", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/227237382", "source": "IDREF"}], "date_of_birth": "1954-09-13", "preferred_name": "Bijaoui, Martine", "country_associated": "fr", "authorized_access_point": "Bijaoui, Martine, 1954-....", "biographical_information": ["Auteur d'une thèse d'exercice de médecine à l'Université Paris Diderot - Paris 7"]} 1 -2023-07-08 08:22:10.67651 2023-07-08 08:22:10.676519 4824bdfe-0e66-4a1d-800a-43c7fb6ff3ab {"md5": "81668faa75386769ebcf892f4f352df1", "pid": "227475453", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/227475453", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/227475453", "source": "IDREF"}], "date_of_birth": "1937-XX-XX", "date_of_death": "2022-01-XX", "preferred_name": "Deslarzes, Béatrice", "country_associated": "sz", "authorized_access_point": "Deslarzes, Béatrice, 1937-2022", "biographical_information": ["Médecin, musicienne et mécène"]} 1 -2023-07-08 08:22:10.931502 2023-07-08 08:22:10.931515 5e22443c-dff3-4e19-a3b1-b59ccf34cf6b {"md5": "66bee5264c3cce6700701bc140c1025c", "pid": "227511980", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "per"], "identifier": "http://www.idref.fr/227511980", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/227511980", "source": "IDREF"}], "variant_name": ["Gunga Din"], "date_of_birth": "19XX", "date_of_death": "1964", "preferred_name": "Mirdrekvandi, Ali", "country_associated": "ir", "variant_access_point": ["Gunga Din"], "authorized_access_point": "Mirdrekvandi, Ali, 19..-1964", "biographical_information": ["Roman traduit en 1965"]} 1 -2023-07-08 08:22:11.138598 2023-07-08 08:22:11.138604 2b4879f4-b964-421b-828d-ca6a1db2e453 {"md5": "46b590a778df2363324d13b3ad91f9c2", "pid": "227594509", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["gre"], "identifier": "http://www.idref.fr/227594509", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/227594509", "source": "IDREF"}], "date_of_birth": "1972", "preferred_name": "Yannaras, Spyros", "country_associated": "gr", "authorized_access_point": "Yannaras, Spyros, 1972-....", "biographical_information": ["Journaliste, écrivain"]} 1 -2023-07-08 08:22:11.229176 2023-07-08 08:22:11.229185 e30e749e-0640-4cfd-9f69-79ef8ebc85dc {"md5": "4a944b44351868f11c3c669d88a3eb10", "pid": "227599055", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/227599055", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/227599055", "source": "IDREF"}], "preferred_name": "Coblentz, Suzanne", "country_associated": "fr", "authorized_access_point": "Coblentz, Suzanne", "biographical_information": ["Auteur d'un mémoire à l'Ecole du Louvre"]} 1 -2023-07-08 08:22:11.345406 2023-07-08 08:22:11.345421 5b068d4f-7b57-4b3c-97d4-db00ff7ce498 {"md5": "151d6c16e4cc2818fa73bd7231d64e81", "pid": "227616839", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/227616839", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/227616839", "source": "IDREF"}], "date_of_birth": "1989-08-30", "preferred_name": "Bernard, Clarisse", "country_associated": "fr", "authorized_access_point": "Bernard, Clarisse, 1989-....", "biographical_information": ["Titulaire d'une thèse d'exercice en pharmacie (Rennes 1 : 2017 )"]} 1 -2023-07-08 08:22:11.025795 2023-07-08 10:25:42.852224 443de1b5-4a23-46ae-9fdb-890ee1813a32 {"md5": "ed3ecf369e4eb68ea3bd54b727911320", "pid": "227583752", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["chi"], "identifier": "http://www.idref.fr/227583752", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/227583752", "source": "IDREF"}], "preferred_name": "Zheng, Ming", "country_associated": "cc", "authorized_access_point": "Zheng, Ming", "biographical_information": ["Traducteur (chinois-français)"]} 2 -2023-07-08 08:22:10.579224 2023-07-08 10:25:43.141091 0b198ca6-e751-4b38-adde-7dfa64c7da6e {"md5": "4b5f45a2c52e61504a2c973494e28623", "pid": "227327551", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/227327551", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/227327551", "source": "IDREF"}], "preferred_name": "Ringard, Justine", "country_associated": "fr", "authorized_access_point": "Ringard, Justine", "biographical_information": ["Titulaire d'une thèse de sciences de l'environnement soutenue à l'Université de Guyane le 25 septembre 2017"]} 2 -2023-07-08 08:22:10.127787 2023-07-08 10:29:11.457044 baa6ac24-4dc5-4db0-b637-c1f611f43805 {"md5": "bc5a8347da290c7d0777c0172ab0b0ea", "pid": "227218493", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/227218493", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/227218493", "source": "IDREF"}], "preferred_name": "Robinson, J.M.", "country_associated": "xxu", "authorized_access_point": "Robinson, J.M.", "biographical_information": ["Professeur University of Manitoba (en 1972)"]} 2 -2023-07-08 08:22:10.478156 2023-07-08 10:29:13.413514 05e11f12-80c5-49bb-b9df-cc4f5134cc1d {"md5": "b508f85cc036b147577378d8ca6d0ded", "pid": "227302370", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/227302370", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/227302370", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Zatouroff, M.", "country_associated": "xxk", "authorized_access_point": "Zatouroff, M., 19..-...."} 2 -2023-07-08 08:22:11.460078 2023-07-08 08:22:11.46009 217c23d7-4bb1-4ae4-be13-e72e3037eb13 {"md5": "07b85706fb6e2be7c281677009425b75", "pid": "227645278", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/227645278", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/227645278", "source": "IDREF"}], "date_of_birth": "1990-03-29", "preferred_name": "Thomas, Amélie", "country_associated": "fr", "authorized_access_point": "Thomas, Amélie, 1990-....", "biographical_information": ["Auteur d'une thèse en Mécanique à l'université de Bordeaux en 2017"]} 1 -2023-07-08 08:22:11.560351 2023-07-08 08:22:11.560362 acd07403-e1d9-4fa7-b655-0a76a6ad5dd3 {"md5": "c2a8b912e0b71af44c967728a425c351", "pid": "227762045", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/227762045", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/227762045", "source": "IDREF"}], "date_of_birth": "1987-11-05", "preferred_name": "Amieux, Aurélie", "country_associated": "fr", "authorized_access_point": "Amieux, Aurélie, 1987-....", "biographical_information": ["Titulaire d'une thèse d'exercice en Médecine (Lyon 1, 2018)"]} 1 -2023-07-08 08:22:11.659035 2023-07-08 08:22:11.659041 b9c9a2f1-941e-43de-ba0a-f10cf5928ce5 {"md5": "52ee481650c8de0935a11e5d78c5f8d9", "pid": "22779222X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/22779222X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/22779222X", "source": "IDREF"}], "preferred_name": "Thierry, Didier", "country_associated": "fr", "authorized_access_point": "Thierry, Didier", "biographical_information": ["Spécialiste de Serge Gainsboug"]} 1 -2023-07-08 08:22:11.76116 2023-07-08 08:22:11.761173 aa3dede9-2bcd-451a-9335-910ae01bb06c {"md5": "fe2c6b5eb12031fdf05d4145f789e052", "pid": "227806646", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/227806646", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/227806646", "source": "IDREF"}], "date_of_birth": "1949", "preferred_name": "Koschorke, Martin", "country_associated": "gw", "authorized_access_point": "Koschorke, Martin, 1949-....", "biographical_information": ["Sociologue, thérapeute familial"]} 1 -2023-07-08 08:22:11.875447 2023-07-08 08:22:11.875453 e313ac7d-afa9-4e93-a374-b912e82bcdfd {"md5": "917a5ceabe80c1e0926fada2291b2f4f", "pid": "227845307", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifier": "http://www.idref.fr/227845307", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/227845307", "source": "IDREF"}], "preferred_name": "Symposium on New Directions in Electroanalytical Chemistry II", "country_associated": "xxu", "date_of_termination": "1999-05-04", "date_of_establishment": "1999-05-03", "authorized_access_point": "Symposium on New Directions in Electroanalytical Chemistry II (1999 ; Seattle, Wash.)"} 1 -2023-07-08 08:22:11.97058 2023-07-08 08:22:11.970592 aff508db-e3e4-48e7-9fd7-bf30b4905019 {"md5": "a902904bfe1d6409aa0c689dc1700520", "pid": "227933923", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/227933923", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/227933923", "source": "IDREF"}], "preferred_name": "Drakoulis, Nikolaos", "country_associated": "gr", "authorized_access_point": "Drakoulis, Nikolaos", "biographical_information": ["Rapporteur d'une thèse en Sciences de la vie et de la santé"]} 1 -2023-07-08 08:22:12.079669 2023-07-08 08:22:12.079686 16aaf4a9-3551-43a9-831c-f9ca510fd6bc {"md5": "df37ba00465b5227b7f5bd8fab801cf6", "pid": "22793492X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/22793492X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/22793492X", "source": "IDREF"}], "date_of_birth": "1993-05-07", "preferred_name": "Lavaux, Vincent", "country_associated": "fr", "authorized_access_point": "Lavaux, Vincent"} 1 -2023-07-08 08:22:12.223802 2023-07-08 08:22:12.223808 8aea1aa8-497b-4df8-a0bc-81fc24bc508c {"md5": "edb3becf2c0335ec1d4ed6266074296e", "pid": "227979303", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/227979303", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/227979303", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Goulabchand, Sobaguechand", "country_associated": "fr", "authorized_access_point": "Goulabchand, Sobaguechand, 19..-....", "biographical_information": ["Docteur en pharmacie (en 1984)"]} 1 -2023-07-08 08:22:12.351861 2023-07-08 08:22:12.351875 e1986f8a-5110-4ce7-99e6-dcab7710e52d {"md5": "e327a4b78c0fd1c924cb1205fb3421d8", "pid": "228238714", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/228238714", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/228238714", "source": "IDREF"}], "date_of_birth": "1986", "preferred_name": "Coutelier, Clément", "country_associated": "fr", "authorized_access_point": "Coutelier, Clément, 1986-....", "biographical_information": ["Rattaché à l'Université Bordeaux Montaigne, (en 2018)"]} 1 -2023-07-08 08:22:12.603908 2023-07-08 08:22:12.60392 fe4e1ec6-f4f6-4223-ada0-ab1484098952 {"md5": "1323c0d0606c8cdf3d5ef22fdce7751f", "pid": "228795990", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ara"], "identifier": "http://www.idref.fr/228795990", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/228795990", "source": "IDREF"}], "date_of_birth": "19xx", "date_of_death": "19xx", "preferred_name": "Diab, Nadia", "country_associated": "fr", "authorized_access_point": "Diab, Nadia, 19..-...."} 1 -2023-07-08 08:22:12.707266 2023-07-08 10:30:40.261163 190e6380-64bf-4f84-9378-2153b6323385 {"md5": "8306f6c8987b3229f9b4121a0d6b9b45", "pid": "228853214", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/228853214", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/228853214", "source": "IDREF"}], "preferred_name": "Lynn, Thomas Jay", "country_associated": "xxu", "authorized_access_point": "Lynn, Thomas Jay", "biographical_information": ["Maître de conférence en anglais à la Penn State Berks (en 2017)"]} 2 -2023-07-08 08:22:12.821054 2023-07-08 08:22:12.821069 5a988b99-c213-4de4-b0d8-fee26850966d {"md5": "d90b78e0542d4c1442d04eef5deec3c2", "pid": "228947545", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/228947545", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/228947545", "source": "IDREF"}], "preferred_name": "Communauté de communes de la Région de Saverne", "country_associated": "fr", "authorized_access_point": "Communauté de communes de la Région de Saverne"} 1 -2023-07-08 08:22:12.935439 2023-07-08 08:22:12.935447 275b2390-6589-4951-a478-4a8d9919fb89 {"md5": "e50845648fb7ed669bcea13c636f030c", "pid": "229034713", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["pol"], "identifier": "http://www.idref.fr/229034713", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/229034713", "source": "IDREF"}], "variant_name": ["Мінейка, Зыгмунт Станіслававіч", "Мінейка-Газдава, Зыгмунт Станіслававіч", "Mìnejka-Gazdava, Zygmunt Stanìslavavìč"], "date_of_birth": "1840", "date_of_death": "1925", "preferred_name": "Mìnejka, Zygmunt Stanìslavavìč", "country_associated": "gr", "variant_access_point": ["Мінейка-Газдава, Зыгмунт Станіслававіч", "Mìnejka-Gazdava, Zygmunt Stanìslavavìč"], "parallel_access_point": ["Mineiko, Zygmunt", "Mineyko, Zygmunt"], "authorized_access_point": "Mìnejka, Zygmunt Stanìslavavìč, 1840-1925", "biographical_information": ["Aristocrate, officier de l'armée, scientifique et ingénieur. Figure publique en Grèce. Né à Balvanishki, Empire russe (de nos jours : Zyalyony Bor, région de Grodno, Biélorussie)"]} 1 -2023-07-08 08:22:13.031478 2023-07-08 08:22:13.031489 951b25a6-feb2-4e42-8fb5-f6cf04e772bf {"md5": "dabe72cd6371c55f982342ead5911000", "pid": "229300324", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/229300324", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/229300324", "source": "IDREF"}], "preferred_name": "Schmidt, Hans", "country_associated": "xxu", "authorized_access_point": "Schmidt, Hans"} 1 -2023-07-08 08:22:13.145787 2023-07-08 08:22:13.1458 0a89df77-0449-4a43-8b77-8d7696509380 {"md5": "8be3e886155c5445d189aed6e788aeae", "pid": "229580165", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/229580165", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/229580165", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Canzano, Davide", "country_associated": "it", "authorized_access_point": "Canzano, Davide, 19..-....", "biographical_information": ["Historien de l'art italien"]} 1 -2023-07-08 08:22:13.396537 2023-07-08 08:22:13.396548 bbf29df7-e075-4c0d-b5b6-962bab3fc705 {"md5": "4ebe884ddaa70cb84a9aecd618d364a7", "pid": "229650473", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/229650473", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/229650473", "source": "IDREF"}], "date_of_birth": "1954-12-09", "preferred_name": "Hervé, Pierre", "country_associated": "fr", "authorized_access_point": "Hervé, Pierre, 1954-....", "biographical_information": ["Docteur en médecine (Lyon 1, 1981)"]} 1 -2023-07-08 08:22:13.497152 2023-07-08 08:22:13.497161 f8cdd4ee-4ce6-40d9-9684-754b1b20b2dd {"md5": "422bb54816062292fc837a2650ba4cbf", "pid": "229663362", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dan"], "identifier": "http://www.idref.fr/229663362", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/229663362", "source": "IDREF"}], "date_of_birth": "1932", "preferred_name": "Andersen, Karen", "country_associated": "dk", "authorized_access_point": "Andersen, Karen, 1932-..."} 1 -2023-07-08 08:22:13.614522 2023-07-08 08:22:13.614533 f1bb54c8-cda3-44bf-8ab9-30848adcee1f {"md5": "47a93292060d067cdbc5922450d536ee", "pid": "229665470", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/229665470", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/229665470", "source": "IDREF"}], "date_of_birth": "1944", "preferred_name": "Laroussi, Rahma", "country_associated": "mr", "authorized_access_point": "Laroussi, Rahma, 1944-....", "biographical_information": ["Peintre"]} 1 -2023-07-08 08:22:13.725487 2023-07-08 08:22:13.725496 7ce72ce4-19c6-4624-90f2-0894fdbf779b {"md5": "48006f5147336089522d4407bc16f656", "pid": "229675018", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/229675018", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/229675018", "source": "IDREF"}], "date_of_birth": "1986?", "preferred_name": "Pic, Camille", "country_associated": "fr", "authorized_access_point": "Pic, Camille, 1986?-....", "biographical_information": ["Naturopathe. - Auteur du blog Mangeteslegumes.net"]} 1 -2023-07-08 08:22:13.832785 2023-07-08 08:22:13.832794 cfaec539-5fdb-4cc2-ba88-60151854df53 {"md5": "759c24cca9d1c30a2bcee91e1ecc3e45", "pid": "229703747", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/229703747", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/229703747", "source": "IDREF"}], "preferred_name": "Giot, Jean-François", "country_associated": "fr", "authorized_access_point": "Giot, Jean-François", "biographical_information": ["Titulaire d'une thèse en médecine (Lyon, 1992)"]} 1 -2023-07-08 08:22:13.943844 2023-07-08 08:22:13.943855 e7ac383c-c721-4ab8-8652-a1ba6efa390a {"md5": "c27d11e727bd64957850a9aad59b353c", "pid": "229818676", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/229818676", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/229818676", "source": "IDREF"}], "preferred_name": "Marouby, Eric", "country_associated": "fr", "authorized_access_point": "Marouby, Eric", "biographical_information": ["Invité d'un jury de thèse de doctorat en Optique et radiofréquences soutenue à Grenoble Alpes en 2018"]} 1 -2023-07-08 08:22:14.060726 2023-07-08 08:22:14.06073 3457f550-de99-4201-a113-0d12c6b2e9f8 {"md5": "2074279b1d01f857888b0bca72d984dc", "pid": "229845606", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/229845606", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/229845606", "source": "IDREF"}], "date_of_birth": "1641-02-28", "preferred_name": "Estrades, Jean-François d'", "country_associated": "fr", "authorized_access_point": "Estrades, Jean-François d', 1641?-1715", "biographical_information": ["Abbé de Moissac (1675 à 1678), Saint-Melaine, Rennes, et prior de Mont-aux-Malades, ambassadeur à Venise (1675 à 1678), à Turin en 1679. Mort à 74 ans"]} 1 -2023-07-08 08:22:14.190591 2023-07-08 08:22:14.190602 219fb871-1e02-4d9e-92bd-20997c843e06 {"md5": "89b650539961944c0d0b8e324dc8b9f0", "pid": "23008964X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/23008964X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/23008964X", "source": "IDREF"}], "preferred_name": "Imrie, Alex", "country_associated": "xxk", "authorized_access_point": "Imrie, Alex", "biographical_information": ["Auteur d'articles de revues d'Histoire antique (en 2018)"]} 1 -2023-07-08 08:22:14.295221 2023-07-08 08:22:14.295234 d41210ff-b1be-4205-884a-360ad968f6f1 {"md5": "0cb15cc16466848796107f022e680f94", "pid": "230158145", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/230158145", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230158145", "source": "IDREF"}], "preferred_name": "Bergmeier, Lesley Ann", "authorized_access_point": "Bergmeier, Lesley Ann"} 1 -2023-07-08 08:22:14.410305 2023-07-08 08:22:14.410316 630d30d9-af8e-49ee-a4ef-3b7355a1bc8e {"md5": "17eeb6b4a79feb6ed36a64e8803f911c", "pid": "230252427", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/230252427", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230252427", "source": "IDREF"}], "preferred_name": "Vasseur, Yasmine", "country_associated": "fr", "authorized_access_point": "Vasseur, Yasmine"} 1 -2023-07-08 08:22:14.520795 2023-07-08 08:22:14.520802 762a8df5-6e92-4bea-a7ed-3f4b481c5ad4 {"md5": "3b945aa4df841f1a968a8335664e3ec8", "pid": "230252575", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "qualifier": "journaliste", "identifier": "http://www.idref.fr/230252575", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230252575", "source": "IDREF"}], "variant_name": ["جونز, كيفن", "Ǧūnz, Kīfin"], "preferred_name": "Jones, Kevin, journaliste", "country_associated": "xxu", "variant_access_point": ["جونز, كيفن", "Ǧūnz, Kīfin"], "authorized_access_point": "Jones, Kevin, journaliste", "biographical_information": ["Journaliste, critique d'art. Né à New-York. Diplômé en littérature anglaise et journalisme (Northwestern University) ainsi qu'en linguistique (Master, Paris 3)"]} 1 -2023-07-08 08:22:14.642425 2023-07-08 08:22:14.642436 b42b2727-aa2a-4ee7-a362-b30b603286e6 {"md5": "3181a8f5da558dfb94290c1c1847cd6b", "pid": "230306365", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/230306365", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230306365", "source": "IDREF"}], "preferred_name": "Marty-Wollman, Nadine", "country_associated": "fr", "authorized_access_point": "Marty-Wollman, Nadine"} 1 -2023-07-08 08:22:14.749399 2023-07-08 08:22:14.749409 338de4b9-08a6-42ef-9b3d-3fa0a72f7991 {"md5": "3225c5f55c68fcab97fe47bedfd9dc4c", "pid": "230333885", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/230333885", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230333885", "source": "IDREF"}], "date_of_birth": "1988-05-19", "preferred_name": "Mohamed-Saïd, Maalek", "country_associated": "fr", "authorized_access_point": "Mohamed-Saïd, Maalek, 1988-....", "biographical_information": ["Auteur d'une thèse en Chimie Physique à Bourgogne Franche-Comté en 2018"]} 1 -2023-07-08 08:22:14.837601 2023-07-08 08:22:14.837612 09fecd9b-d997-4c9b-a1e1-2297f575d8be {"md5": "38dd11597e4cb114675e884c3835ba6a", "pid": "230389597", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["chi"], "conference": false, "identifier": "http://www.idref.fr/230389597", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230389597", "source": "IDREF"}], "variant_name": ["海洋史叢書編輯委員會"], "preferred_name": "Hai yang shi cong shu bian ji wei yuan hui", "country_associated": "cc", "variant_access_point": ["海洋史叢書編輯委員會"], "authorized_access_point": "Hai yang shi cong shu bian ji wei yuan hui"} 1 -2023-07-08 08:22:14.946892 2023-07-08 08:22:14.946902 c1889db4-8b24-4a86-ba7b-483bfae42f13 {"md5": "1555028265b344ad3514968d210447d4", "pid": "230392407", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/230392407", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230392407", "source": "IDREF"}], "date_of_birth": "1982-10-14", "preferred_name": "Madrigal Calderón, Johanna", "country_associated": "cl", "authorized_access_point": "Madrigal Calderón, Johanna, 1982-....", "biographical_information": ["Auteur d'une thèse de doctorat de Sociologie, Université de Strasbourg, 2018"]} 1 -2023-07-08 08:22:15.083535 2023-07-08 08:22:15.08355 86c776fa-2152-4183-a908-b1f5eb8201cc {"md5": "3ac8858e9853fc463670f2678517558a", "pid": "230394477", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/230394477", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230394477", "source": "IDREF"}], "preferred_name": "Glass, C.E.", "country_associated": "xxu", "authorized_access_point": "Glass, C.E."} 1 -2023-07-08 08:22:15.196606 2023-07-08 08:22:15.196622 a044ab99-6e69-4a8c-8fea-6c8812f32bdf {"md5": "8f848b4179a790a21e08e9e1545ad75d", "pid": "230409261", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/230409261", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230409261", "source": "IDREF"}], "variant_name": ["Wray, D. A."], "date_of_birth": "1888-06-17", "date_of_death": "1982", "preferred_name": "Wray, Disney Alexander", "country_associated": "xxk", "variant_access_point": ["Wray, D. A."], "authorized_access_point": "Wray, Disney Alexander, 1888-1982", "biographical_information": ["Géologue (BGS à partir de 1913)"]} 1 -2023-07-08 08:22:15.324179 2023-07-08 08:22:15.324193 9bbdc30f-536d-4ff7-adce-38666d79daf2 {"md5": "cbb967ea635e89872cc79a1744f9502a", "pid": "230421075", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/230421075", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230421075", "source": "IDREF"}], "variant_name": ["Greenall, Annjo K.", "Klungervik Greenall, Annjo"], "preferred_name": "Greenall, Annjo Klungervik", "variant_access_point": ["Greenall, Annjo K.", "Klungervik Greenall, Annjo"], "authorized_access_point": "Greenall, Annjo Klungervik", "biographical_information": ["Enseigne l'anglais et la traduction à l'université norvégienne de sciences et de technologie (en 2017)"]} 1 -2023-07-08 08:22:15.434571 2023-07-08 08:22:15.434586 3373d276-3556-4c59-9885-28a694166766 {"md5": "dac3af371c5889814eec515bba0c020e", "pid": "230487653", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/230487653", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230487653", "source": "IDREF"}], "preferred_name": "Association Renaissance Ville vieille de Nancy (Nancy)", "country_associated": "fr", "authorized_access_point": "Association Renaissance Ville vieille de Nancy (Nancy)"} 1 -2023-07-08 08:22:15.564517 2023-07-08 08:22:15.564528 ac2c69f4-103e-4bc8-8f17-d8b7e79c1454 {"md5": "c56b241a131a59e0bbade37eb1268e56", "pid": "230499805", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/230499805", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230499805", "source": "IDREF"}], "preferred_name": "Kristóf, Ildikó", "country_associated": "hu", "authorized_access_point": "Kristóf, Ildikó", "biographical_information": ["Ethnologue"]} 1 -2023-07-08 08:22:15.665364 2023-07-08 08:22:15.665374 2e02fb62-f826-4352-a2db-005bb9716a5a {"md5": "4c72c7d825c41c05ae1d18a6bffdc37d", "pid": "23054634X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/23054634X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/23054634X", "source": "IDREF"}], "preferred_name": "Muzzioli, Maria Pia", "country_associated": "it", "authorized_access_point": "Muzzioli, Maria Pia", "biographical_information": ["Archéologue, professeur de topographie antique de l'Université Tor Vergata à Rome"]} 1 -2023-07-08 08:22:15.789591 2023-07-08 08:22:15.789599 c9f1aba7-daf4-48b5-bf13-4ab1d1cc62f7 {"md5": "3cc7000acc7458ab00a8328bab391019", "pid": "230568378", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/230568378", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230568378", "source": "IDREF"}], "preferred_name": "Chang, Soonpeel Edgar", "authorized_access_point": "Chang, Soonpeel Edgar", "biographical_information": ["Responsable juridique du groupe Korindo et administrateur d'une société aux Pays-Bas (en 2018)"]} 1 -2023-07-08 08:22:15.998337 2023-07-08 08:22:15.998357 9b74f38c-083b-42f7-be32-4f56a787251f {"md5": "cec7fc2af4808cdaf40690c09b06595b", "pid": "230746608", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/230746608", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230746608", "source": "IDREF"}], "date_of_birth": "1987-09-01", "preferred_name": "Sánchez Trávez, Digna Elizabeth", "country_associated": "ec", "authorized_access_point": "Sánchez Trávez, Digna Elizabeth, 1987-....", "biographical_information": ["Ingénieur"]} 1 -2023-07-08 08:22:16.11918 2023-07-08 08:22:16.119189 7b82b45a-9fa7-4b10-a228-70d262d57cc8 {"md5": "ec574a8f8a28125832269b72354b0721", "pid": "230769373", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre", "ger"], "conference": false, "identifier": "http://www.idref.fr/230769373", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230769373", "source": "IDREF"}], "variant_name": ["Katholischer Charitas-Verband (Metz)", "Caritas-Verband für die Diözese Metz", "Caritasverband für die Diözese Metz", "Fédération des Oeuvres de charité du diocèse de Metz", "Fédération de charité du diocèse de Metz"], "preferred_name": "Fédération des Oeuvres catholiques de charité (Metz)", "country_associated": "fr", "variant_access_point": ["Katholischer Charitas-Verband (Metz)", "Caritas-Verband für die Diözese Metz", "Caritasverband für die Diözese Metz", "Fédération des Oeuvres de charité du diocèse de Metz", "Fédération de charité du diocèse de Metz"], "date_of_establishment": "1906", "authorized_access_point": "Fédération des Oeuvres catholiques de charité (Metz)", "biographical_information": ["Création en 1906"]} 1 -2023-07-08 08:22:16.231569 2023-07-08 08:22:16.231581 f832c410-bd7d-43d1-b3db-9b0f5240946f {"md5": "fd19ff6edc1ca9ac205c0df96b10e089", "pid": "230818846", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/230818846", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230818846", "source": "IDREF"}], "date_of_birth": "1931-07-05", "preferred_name": "Taupin, Jean-Louis", "country_associated": "fr", "authorized_access_point": "Taupin, Jean-Louis, 1931-....", "biographical_information": ["Architecte DPLG (1963)"]} 1 -2023-07-08 08:22:16.35627 2023-07-08 08:22:16.356282 6cfb9c93-ffb2-4ac1-a293-68338adf9808 {"md5": "5d5b6c0495ba1578b1a09846e65e437d", "pid": "230825478", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/230825478", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230825478", "source": "IDREF"}], "date_of_birth": "1922-06-11", "preferred_name": "Seguin, Jeanne", "authorized_access_point": "Seguin, Jeanne, 1922-....", "biographical_information": ["Chirurgien dentiste"]} 1 -2023-07-08 08:22:16.459749 2023-07-08 08:22:16.459761 7bfc3910-4058-45a8-aafb-e6ac20e5cce4 {"md5": "ebda1f4cc926c6ede3b1e0d070bec15d", "pid": "230880525", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/230880525", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230880525", "source": "IDREF"}], "date_of_birth": "1988-04-21", "preferred_name": "Breton, Julie", "country_associated": "fr", "authorized_access_point": "Breton, Julie, 1988-....", "biographical_information": ["Auteur en médecine"]} 1 -2023-07-08 08:22:16.797292 2023-07-08 08:22:16.797297 0fa02154-42f2-447b-8c03-0ad86819b099 {"md5": "917e86d0c8f2be12ba456cb7d96d2efa", "pid": "230969267", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/230969267", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230969267", "source": "IDREF"}], "date_of_birth": "1991-03-14", "preferred_name": "Senger, Clémence", "country_associated": "fr", "authorized_access_point": "Senger, Clémence, 1991-....", "biographical_information": ["Auteur en médecine"]} 1 -2023-07-08 08:22:16.897917 2023-07-08 08:22:16.897927 9da07c96-bc56-4181-8180-732ce45514e4 {"md5": "ecd3ce99e313a711734753b0152b6c5a", "pid": "231084056", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/231084056", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/231084056", "source": "IDREF"}], "preferred_name": "Yue, Gang", "country_associated": "xxu", "authorized_access_point": "Yue, Gang"} 1 -2023-07-08 08:22:17.000196 2023-07-08 08:22:17.000204 88ed4ec8-f2c2-4d2e-971f-0996b7d719d7 {"md5": "71b948f0953b616fac817bc607594878", "pid": "231252188", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/231252188", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/231252188", "source": "IDREF"}], "date_of_birth": "1988-03-25", "preferred_name": "Denis, Faustine", "country_associated": "fr", "authorized_access_point": "Denis, Faustine, 1988-...."} 1 -2023-07-08 08:22:17.114562 2023-07-08 08:22:17.114572 4787ee5b-936e-4c26-9ab8-b7d3f2ed01ba {"md5": "88dd64d655382272beb10adea980be30", "pid": "231276729", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/231276729", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/231276729", "source": "IDREF"}], "date_of_birth": "19XX", "date_of_death": "19XX", "preferred_name": "Adelet, Natan", "country_associated": "fr", "authorized_access_point": "Adelet, Natan, 19..-19..", "biographical_information": ["Auteur d'une Thèse en Médecine à Paris en 1949"]} 1 -2023-07-08 08:22:17.236531 2023-07-08 08:22:17.236544 cc04d003-e7d2-4af7-808a-611dcccda195 {"md5": "93c20a8c025e4a3d847fd6bbe9a2ef1f", "pid": "231291779", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/231291779", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/231291779", "source": "IDREF"}], "date_of_birth": "19XX", "date_of_death": "..", "preferred_name": "Bereyziat, Jean", "country_associated": "fr", "authorized_access_point": "Bereyziat, Jean, 19..-..", "biographical_information": ["Auteur d'une Thèse de Doctorat à Université de Paris en 1964"]} 1 -2023-07-08 08:22:17.337443 2023-07-08 08:22:17.337455 d5a3dde5-5e1b-4b86-9905-0f4fd186cc70 {"md5": "79674f0a92c0fe44c32773c9edcc94a2", "pid": "231292856", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/231292856", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/231292856", "source": "IDREF"}], "date_of_birth": "19XX", "date_of_death": "..", "preferred_name": "Chassonneau, Marie-Annick", "country_associated": "fr", "authorized_access_point": "Chassonneau, Marie-Annick, 19..-..", "biographical_information": ["Auteur d'une Thèse de 3e Cycle en Chimie - Physique à Bordeaux en 1971"]} 1 -2023-07-08 08:22:17.443178 2023-07-08 08:22:17.443185 cc8ef4aa-9853-4d5f-b10c-2bf6aba03257 {"md5": "f2f13122ec908b7caaf89226e977ddf0", "pid": "231295405", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/231295405", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/231295405", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Abdary, Hamid el", "country_associated": "fr", "authorized_access_point": "Abdary, Hamid el, 19..-....", "biographical_information": ["Auteur d'une Thèse de Doctorat en Electronique à Toulouse 3 en 1992"]} 1 -2023-07-08 08:22:17.538652 2023-07-08 08:22:17.538664 ffb3cee7-dc32-4988-a88d-f0612745ac4e {"md5": "ee9783f625f77267f8aa78e1ec004b34", "pid": "231314116", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/231314116", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/231314116", "source": "IDREF"}], "date_of_birth": "17..", "date_of_death": "17..", "preferred_name": "Bachoven, Hermann Theodor", "country_associated": "gw", "authorized_access_point": "Bachoven, Hermann Theodor, 17..-17..", "biographical_information": ["Auteur d'une Thèse en Médecine à Duisburg (Allemagne) en 1736"]} 1 -2023-07-08 08:22:17.64462 2023-07-08 08:22:17.644635 9d6a25b6-73f5-4afb-9871-0e5db83de766 {"md5": "a8c13c7181fcb965d60d131b06b7fb8f", "pid": "231372507", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/231372507", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/231372507", "source": "IDREF"}], "date_of_birth": "1991-10-09", "preferred_name": "Mikula, Laura", "country_associated": "fr", "authorized_access_point": "Mikula, Laura, 1991-....", "biographical_information": ["Auteur d'une thèse en Neurosciences soutenue à l'Université de Lyon en 2018"]} 1 -2023-07-08 08:22:16.56411 2023-07-08 10:29:21.52696 f5b7a122-9af1-4d3d-a256-5cac7d14cdfc {"md5": "0d20ab76c1d7891b96fefc7ccf2b092c", "pid": "230910793", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/230910793", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230910793", "source": "IDREF"}], "date_of_birth": "1884-09-26", "preferred_name": "Weiglin, Paul", "country_associated": "gw", "authorized_access_point": "Weiglin, Paul"} 2 -2023-07-08 08:22:17.74917 2023-07-08 08:22:17.74918 91f5ec7e-43c1-444c-b88d-0f4b33ead475 {"md5": "6c6ab83238dfcef461f5734595b3cd2a", "pid": "231381476", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": true, "identifier": "http://www.idref.fr/231381476", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/231381476", "source": "IDREF"}], "preferred_name": "Incontro di studiosi dell'antichità cristiana", "country_associated": "it", "date_of_termination": "2002-05-04", "date_of_establishment": "2002-05-02", "authorized_access_point": "Incontro di studiosi dell'antichità cristiana (31 ; 2002 ; Rome)"} 1 -2023-07-08 08:22:17.863813 2023-07-08 08:22:17.863818 e33e3740-a3ee-4479-bae4-9ee2b538631a {"md5": "ddd6967cb12dd7fe8c3f489f9d87fbf1", "pid": "231381964", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/231381964", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/231381964", "source": "IDREF"}], "date_of_birth": "1985-05-25", "preferred_name": "Aouimeur, Walid", "country_associated": "ae", "authorized_access_point": "Aouimeur, Walid, 1985-....", "biographical_information": ["Auteur d'une thèse en Optique et radiofrequences à Grenoble Alpes en 2018"]} 1 -2023-07-08 08:22:17.938108 2023-07-08 08:22:17.938114 f42e0a59-262f-4a65-8da4-13f3ac8530d1 {"md5": "c3c57585e5467dac6c604636a7574685", "pid": "231451555", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/231451555", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/231451555", "source": "IDREF"}], "preferred_name": "Palesse, Stephanie", "country_associated": "fr", "authorized_access_point": "Palesse, Stephanie", "biographical_information": ["Auteur d'une thèse en Ecologie Microbienne à Clermont-Ferrand 2 en 2014"]} 1 -2023-07-08 08:22:18.031616 2023-07-08 08:22:18.031627 b2a464fd-9604-4b23-aaf1-e11239173111 {"md5": "163756ff97064ebb45445c39f12d54fc", "pid": "231480520", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/231480520", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/231480520", "source": "IDREF"}], "preferred_name": "Boldorini, Alberto M.", "country_associated": "it", "authorized_access_point": "Boldorini, Alberto M.", "biographical_information": ["Historien"]} 1 -2023-07-08 08:22:18.23161 2023-07-08 08:22:18.231622 e313fbbf-596c-4318-8189-a41b56f79953 {"md5": "99438065d8b17b5c65d77d8599ab878f", "pid": "231540957", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/231540957", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/231540957", "source": "IDREF"}], "preferred_name": "Chiffert, L.", "country_associated": "fr", "authorized_access_point": "Chiffert, L."} 1 -2023-07-08 08:22:18.332729 2023-07-08 08:22:18.332742 add15f80-31cd-4522-b3fe-37cf1e255c6c {"md5": "623fc8145ec50506dc67e026fe8e1859", "pid": "231623739", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/231623739", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/231623739", "source": "IDREF"}], "date_of_birth": "1988-10-02", "preferred_name": "Braglia, Michele", "country_associated": "it", "authorized_access_point": "Braglia, Michele, 1988-....", "biographical_information": ["Titulaire d'un doctorat en Physique et sciences de la matière. Matière condensée et nanosciences à Aix-Marseille Université en 2017"]} 1 -2023-07-08 08:22:18.453128 2023-07-08 08:22:18.453142 638281e6-1908-4dbc-abaf-48bf98e0d8f4 {"md5": "af80f451b45aa676c76034505481f2da", "pid": "231934203", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/231934203", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/231934203", "source": "IDREF"}], "variant_name": ["Pardo, Rebeca Díaz"], "preferred_name": "Díaz Pardo, Rebeca", "variant_access_point": ["Pardo, Rebeca Díaz"], "authorized_access_point": "Díaz Pardo, Rebeca", "biographical_information": ["Titulaire d'un doctorat en Physique de la matière condensée (Paris Saclay, 2018)"]} 1 -2023-07-08 08:22:18.548398 2023-07-08 08:22:18.548411 4192e44e-adf8-448d-9bab-f097e4beeea1 {"md5": "d0f7d9e2d89975acaeff4f065369df27", "pid": "232202699", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/232202699", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232202699", "source": "IDREF"}], "variant_name": ["Obama Etoundi, Etienne"], "preferred_name": "Etoundi Obama, Etienne", "variant_access_point": ["Obama Etoundi, Etienne"], "authorized_access_point": "Etoundi Obama, Etienne", "biographical_information": ["Titulaire d'un mémoire de maîtrise en économie politique, soutenu à l'université Paris VIII en 1977"]} 1 -2023-07-08 08:22:18.757376 2023-07-08 08:22:18.757382 8a91d6a1-152f-4882-a465-3a8082340bb2 {"md5": "eb6178668ecd846d20d41f6addd326ec", "pid": "232343446", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/232343446", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232343446", "source": "IDREF"}], "preferred_name": "Rey, José Antonio", "country_associated": "pe", "authorized_access_point": "Rey, José Antonio", "biographical_information": ["Informaticien. Spécialiste d'Ubuntu"]} 1 -2023-07-08 08:22:18.13601 2023-07-08 10:31:34.333756 82f08253-3a51-43bd-8d1f-75657a282544 {"md5": "b234a18576dc828d67a02a6e39f73ddc", "pid": "231537743", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/231537743", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/231537743", "source": "IDREF"}], "preferred_name": "Bagchi, Kalyan", "country_associated": "xx", "authorized_access_point": "Bagchi, Kalyan", "biographical_information": ["Auteur"]} 2 -2023-07-08 08:22:18.839047 2023-07-08 08:22:18.839056 9e6ac26b-f575-4f74-8aed-5e28d15952d3 {"md5": "61c1252eac7178f529c4529825498806", "pid": "232523703", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/232523703", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232523703", "source": "IDREF"}], "variant_name": ["Romero, Joseito", "Romero Bello, José", "Bello, José Romero"], "date_of_birth": "1922", "preferred_name": "Romero, José", "country_associated": "ve", "variant_access_point": ["Romero, Joseito", "Romero Bello, José", "Bello, José Romero"], "authorized_access_point": "Romero, José, 1922-....", "biographical_information": ["Compositeur-interprète. - Chanteur et harpiste"]} 1 -2023-07-08 08:22:19.060679 2023-07-08 08:22:19.060748 e78c324e-20d6-4da7-8863-1d599ad979c0 {"md5": "194613da542252d697948c47012f5e9b", "pid": "232640858", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/232640858", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232640858", "source": "IDREF"}], "date_of_birth": "1989-02-22", "preferred_name": "Marc, Sylvain", "country_associated": "fr", "authorized_access_point": "Marc, Sylvain, 1989-....", "biographical_information": ["Auteur d'une thèse en Sciences pour l'Ingénieur à Lorient en 2017"]} 1 -2023-07-08 08:22:19.391935 2023-07-08 08:22:19.391944 effbf331-9c5b-44c6-bbcd-a332e1427920 {"md5": "bf0c555cea7f43adf4217be205a90f9a", "pid": "232696551", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "praticienne en massage ayurvédique", "identifier": "http://www.idref.fr/232696551", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232696551", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Marie, Stéphanie, praticienne en massage ayurvédique", "country_associated": "fr", "authorized_access_point": "Marie, Stéphanie, 19..-...., praticienne en massage ayurvédique", "biographical_information": ["Praticienne en massage ayurvédique, conseillère en nutrition selon l'ayurvéda"]} 1 -2023-07-08 08:22:19.511792 2023-07-08 08:22:19.511806 2027909c-9b84-4cb1-8faa-02fb1e2a6b77 {"md5": "fea933e27a63a809e77c5b242153e5e2", "pid": "232702845", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/232702845", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232702845", "source": "IDREF"}], "date_of_birth": "1850", "preferred_name": "Pellereau, Louis-Emile", "country_associated": "fr", "authorized_access_point": "Pellereau, Louis-Emile, 1850-....", "biographical_information": ["Médecin. Auteur d'une thèse d'exercice; présentée et soutenue à Bordeaux le 12 aout 1882. Né à Saint-denis (Ile de la Réunion). Ex-médecin à Saint-Seurin-de-Cadourne (Médoc)."]} 1 -2023-07-08 08:22:19.617085 2023-07-08 08:22:19.617098 e0f4a77c-0143-4efb-b6ae-98f8c6b3986c {"md5": "ecd1510539c6ecd4c0649a96badb94c0", "pid": "23272377X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/23272377X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/23272377X", "source": "IDREF"}], "preferred_name": "Mezzez Hmaied, Dorra", "country_associated": "fr", "authorized_access_point": "Mezzez Hmaied, Dorra", "biographical_information": ["Titulaire d'un doctorat en gestion de l'Université Paris-Dauphine (1997)."]} 1 -2023-07-08 08:22:19.71811 2023-07-08 08:22:19.718118 49152f4c-46d6-4402-a1da-5540ed9cc06e {"md5": "38f53370e2b0dba594acba95150d5526", "pid": "23272380X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/23272380X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/23272380X", "source": "IDREF"}], "date_of_birth": "1987-07-14", "preferred_name": "Jehin, Elina", "authorized_access_point": "Jehin, Elina", "biographical_information": ["Titulaire d'une thèse d'exercice de docteur en médecine générale soutenue à Strasbourg en 2018"]} 1 -2023-07-08 08:22:19.818773 2023-07-08 08:22:19.818786 74b67353-afdd-42b8-8899-8810342dfb00 {"md5": "10639a714398194c712dd27337ded0ae", "pid": "232774072", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/232774072", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232774072", "source": "IDREF"}], "variant_name": ["Mackenzie, J. Ross"], "preferred_name": "Mackenzie, James Ross", "country_associated": "xxk", "variant_access_point": ["Mackenzie, J. Ross"], "authorized_access_point": "Mackenzie, James Ross"} 1 -2023-07-08 08:22:19.917535 2023-07-08 08:22:19.91755 87db4990-9558-4089-858f-1ae36c0cc9f5 {"md5": "53d88c45ab0af135ce8cc12f2e22ea08", "pid": "232796734", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["heb"], "conference": false, "identifier": "http://www.idref.fr/232796734", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232796734", "source": "IDREF"}], "variant_name": ["Ramat Gan Museum of Israeli Art"], "preferred_name": "The Museum of Israeli Art (Ramat Gan, Israël)", "country_associated": "is", "variant_access_point": ["Ramat Gan Museum of Israeli Art"], "authorized_access_point": "The Museum of Israeli Art (Ramat Gan, Israël)", "biographical_information": ["Adresse : Abba Hillel Silver Rd 146, Ramat Gan, Israël"]} 1 -2023-07-08 08:22:19.177811 2023-07-08 10:25:43.52969 718caa99-a53e-465e-b230-936ed11b278a {"md5": "024b82eea1ee6f6e883b4103a525dd8d", "pid": "232656770", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/232656770", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232656770", "source": "IDREF"}], "preferred_name": "Alves de Oliveira Melo, Alfredo", "authorized_access_point": "Alves de Oliveira Melo, Alfredo", "biographical_information": ["Titulaire d'un doctorat en sciences de gestion à l'Université Paris-Dauphine (1983)"]} 2 -2023-07-08 08:22:19.290302 2023-07-08 10:29:43.291427 ad930cc9-af47-415f-af06-53dd5414470e {"md5": "1b5fb42e65e730af5d9759bab7d5917c", "pid": "232674450", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/232674450", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232674450", "source": "IDREF"}], "preferred_name": "Paturel, David", "authorized_access_point": "Paturel, David"} 2 -2023-07-08 08:22:20.113689 2023-07-08 08:22:20.1137 dd3eb377-2825-46fd-875b-c5b0efd52262 {"md5": "2523578cdac09b355ae8d8138a796b5e", "pid": "232805636", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/232805636", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232805636", "source": "IDREF"}], "preferred_name": "Sims Reed Gallery (Londres, Royaume-Uni de Grande-Bretagne)", "country_associated": "xxk", "authorized_access_point": "Sims Reed Gallery (Londres, Royaume-Uni de Grande-Bretagne)", "biographical_information": ["Galerie d'art moderne spécialisée en estampes et oeuvres sur papier."]} 1 -2023-07-08 08:22:20.234747 2023-07-08 08:22:20.234751 d5aa14c0-b663-45d9-b218-878e04503d9c {"md5": "2e38736572b91074bba9ec1c94c223f8", "pid": "232810265", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/232810265", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232810265", "source": "IDREF"}], "date_of_birth": "1974", "preferred_name": "Leunen, Nico", "authorized_access_point": "Leunen, Nico, 1974-....", "biographical_information": ["Scénariste"]} 1 -2023-07-08 08:22:20.327363 2023-07-08 08:22:20.327376 2b381690-995d-4b4c-b285-81e92013d1eb {"md5": "ffb2781b5ac3a9570862d503a27efb77", "pid": "232813116", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "qualifier": "photographe", "identifier": "http://www.idref.fr/232813116", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232813116", "source": "IDREF"}], "preferred_name": "Scott, Kieran E., photographe", "authorized_access_point": "Scott, Kieran E., photographe", "biographical_information": ["Photographe"]} 1 -2023-07-08 08:22:20.430419 2023-07-08 08:22:20.430431 e66a970c-ec9c-4731-91ac-2d573a5d476c {"md5": "6bf16a36188ad687a654654c375d910c", "pid": "232862583", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/232862583", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232862583", "source": "IDREF"}], "variant_name": ["Khan Shaghaghi, Richard", "Shaghaghi Legrand, Richard Khan", "Legrand, Richard Khan Shaghaghi"], "date_of_birth": "1982-10-13", "preferred_name": "Khan Shaghaghi Legrand, Richard", "country_associated": "fr", "variant_access_point": ["Khan Shaghaghi, Richard", "Shaghaghi Legrand, Richard Khan", "Legrand, Richard Khan Shaghaghi"], "authorized_access_point": "Khan Shaghaghi Legrand, Richard, 1982-....", "biographical_information": ["Auteur d'une thèse de doctorat en Droit privé soutenue à l'Université Sorbonne Paris Cité en 2018"]} 1 -2023-07-08 08:22:20.526939 2023-07-08 08:22:20.526948 38daa3b7-a629-446f-b9c7-c0f3b7bed173 {"md5": "0357e222773384c10c597279bd970205", "pid": "232868468", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/232868468", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232868468", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Rothrock, Paul Ernest", "country_associated": "xxu", "authorized_access_point": "Rothrock, Paul Ernest, 19..-....", "biographical_information": ["Biologiste"]} 1 -2023-07-08 08:22:20.623768 2023-07-08 08:22:20.623779 338fecdd-e0bc-4b1e-a7c9-638598d8c1ee {"md5": "20bf7a778d4ab87942fa08d394fdfb35", "pid": "232869278", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/232869278", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232869278", "source": "IDREF"}], "preferred_name": "Benhamou, Meziane", "authorized_access_point": "Benhamou, Meziane", "biographical_information": ["Titulaire d'un doctorat en gestion (Université Paris-Dauphine, 1985)"]} 1 -2023-07-08 08:22:20.833922 2023-07-08 08:22:20.833927 d8b54add-bfc2-48c3-9062-6e7fbf229d4a {"md5": "378966ade7e08d317b1cfcb8f67c6ac3", "pid": "232897964", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ice", "eng"], "identifier": "http://www.idref.fr/232897964", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232897964", "source": "IDREF"}], "variant_name": ["Reed, Heida", "Sigurðardóttir, Heiða Rún", "Rún Sigurðardóttir, Heiða"], "date_of_birth": "1988-05-22", "preferred_name": "Heiða Rún Sigurðardóttir", "country_associated": "ic", "variant_access_point": ["Reed, Heida", "Sigurðardóttir, Heiða Rún", "Rún Sigurðardóttir, Heiða"], "authorized_access_point": "Heiða Rún Sigurðardóttir, 1988-....", "biographical_information": ["Actrice"]} 1 -2023-07-08 08:22:20.928743 2023-07-08 08:22:20.92875 b6b3363e-bf9a-4f1f-a3e1-76f6b630ccc8 {"md5": "b6b8d0688b1357cb0ecc85bc37025955", "pid": "232915741", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/232915741", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232915741", "source": "IDREF"}], "date_of_birth": "1986-12-09", "preferred_name": "Semerdjian, Yoann", "country_associated": "fr", "authorized_access_point": "Semerdjian, Yoann, 1986-....", "biographical_information": ["Auteur d'une thèse en Droit public à l'Université de Lorraine en 2018"]} 1 -2023-07-08 08:22:24.432972 2023-07-08 08:22:24.432978 5fb5bec7-7ca4-4299-93d1-ea6c23cc4fa8 {"md5": "cedc60df06099780799f919c8ee14f7a", "pid": "234569182", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/234569182", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234569182", "source": "IDREF"}], "preferred_name": "Tanazacq, Pierre", "country_associated": "fr", "authorized_access_point": "Tanazacq, Pierre"} 1 -2023-07-08 08:22:20.71968 2023-07-08 10:30:09.909521 e31104e4-9a4a-49ea-801b-9d63b265fee4 {"md5": "cae7e3c3f109bc258c429e6c054cb22f", "pid": "232895651", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/232895651", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232895651", "source": "IDREF"}], "date_of_birth": "1957", "preferred_name": "Bowes, David", "country_associated": "xxu", "authorized_access_point": "Bowes, David, 1957-....", "biographical_information": ["Peintre américain."]} 2 -2023-07-08 08:22:21.032366 2023-07-08 08:22:21.032375 b70b0eeb-dd66-4c17-b669-f9295d5ddd1b {"md5": "5decfede93f7db1a218e932648bfe881", "pid": "232934436", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "conference": false, "identifier": "http://www.idref.fr/232934436", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232934436", "source": "IDREF"}], "variant_name": ["大丸ミュージアム (Kyoto, Japon)", "Daimaru Museum Kyoto (Kyoto, Japan)", "大丸ミュージアム・京都", "Daimaru Myūjiamu, Kyōto"], "preferred_name": "Daimaru Myūjiamu (Kyoto, Japon)", "country_associated": "ja", "variant_access_point": ["Daimaru Museum Kyoto (Kyoto, Japan)", "大丸ミュージアム・京都", "Daimaru Myūjiamu, Kyōto"], "authorized_access_point": "Daimaru Myūjiamu (Kyoto, Japon)", "biographical_information": ["Système de transcription Hepburn modifié", "Musée d'art situé à Kyoto (Japon)"]} 1 -2023-07-08 08:22:21.360219 2023-07-08 08:22:21.360232 80439b98-a18c-494d-84a2-0cec3b246540 {"md5": "3f1a64e389b71cb47b2d713defdcccb5", "pid": "233251073", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/233251073", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/233251073", "source": "IDREF"}], "date_of_birth": "18XX", "date_of_death": "1XXX", "preferred_name": "Caizergues, Raymond", "country_associated": "fr", "authorized_access_point": "Caizergues, Raymond, 18..-1...", "biographical_information": ["Auteur d'une thèse de doctorat en médecine (Paris, 1878)"]} 1 -2023-07-08 08:22:21.557652 2023-07-08 08:22:21.557662 f595a22b-3966-4896-96d1-c2313b5b4bf8 {"md5": "d9ff98fdc7c7e2720346bdaff322fe8f", "pid": "233342575", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/233342575", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/233342575", "source": "IDREF"}], "variant_name": ["Marchand, Doris Dagri"], "preferred_name": "Dagri Marchand, Doris", "country_associated": "fr", "variant_access_point": ["Marchand, Doris Dagri"], "authorized_access_point": "Dagri Marchand, Doris"} 1 -2023-07-08 08:22:21.6592 2023-07-08 08:22:21.659207 09443133-7561-47f8-87bc-6923a6523037 {"md5": "434faa414c407a4a684e52b540c5118c", "pid": "233346562", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/233346562", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/233346562", "source": "IDREF"}], "date_of_birth": "1989-12-08", "preferred_name": "Saulière, Guillaume", "country_associated": "fr", "authorized_access_point": "Saulière, Guillaume, 1989-....", "biographical_information": ["Auteur d'une thèse en Santé publique - biostatistiques (Paris Saclay, 2018)"]} 1 -2023-07-08 08:22:21.769781 2023-07-08 08:22:21.769794 24d9ee41-38f2-4206-a088-185fd7c491a6 {"md5": "320c1f8cd2a18c7efce21c6bc6034642", "pid": "23352391X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/23352391X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/23352391X", "source": "IDREF"}], "variant_name": ["Grimaux, Claire", "Le Gall, Claire"], "date_of_birth": "1990-11-30", "preferred_name": "Le Gall-Grimaux, Claire", "variant_access_point": ["Grimaux, Claire", "Le Gall, Claire"], "authorized_access_point": "Le Gall-Grimaux, Claire, 1990-..", "biographical_information": ["Auteur d'une thèse d'exercice en médecine soutenue à Angers le 13 septembre 2018"]} 1 -2023-07-08 08:22:21.869 2023-07-08 08:22:21.869012 f41f94b6-ba93-46ee-80b8-082c594ef12d {"md5": "b8510c2ceb252df4a49f8f29800bf41b", "pid": "233537155", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/233537155", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/233537155", "source": "IDREF"}], "variant_name": ["Taxis, Samuel"], "date_of_birth": "1989-06-18", "preferred_name": "Taxis, Samuel", "country_associated": "fr", "variant_access_point": ["Taxis, Samuel"], "authorized_access_point": "Taxis, Samuel, 1989-....", "biographical_information": ["Docteur en médecine (en 2018)"]} 1 -2023-07-08 08:22:21.965311 2023-07-08 08:22:21.965322 21e53054-f3ab-4bc2-b93c-26a5e87c9a6a {"md5": "200bc0363905e4edf4ee7087c0f30413", "pid": "233564373", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/233564373", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/233564373", "source": "IDREF"}], "date_of_birth": "1988-04-05", "preferred_name": "Mezrani, Mehdi", "country_associated": "fr", "authorized_access_point": "Mezrani, Mehdi, 1988-...", "biographical_information": ["Auteur d’une thèse d’exercice en Médecine, soutenue le 17/09/2018, à l’Université de Montpellier"]} 1 -2023-07-08 08:22:21.138392 2023-07-08 10:26:39.151968 9fc27f61-74e9-46a7-92b2-beab7109f988 {"md5": "cf72f53ae881cca2b18c0832518439ae", "pid": "233220984", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/233220984", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/233220984", "source": "IDREF"}], "date_of_birth": "1878", "date_of_death": "1954", "preferred_name": "Sergent, Louis", "country_associated": "fr", "authorized_access_point": "Sergent, Louis, 1878-1954", "biographical_information": ["Pharmacien"]} 2 -2023-07-08 08:22:21.463701 2023-07-08 10:29:01.952243 1fcccb3c-92d0-426a-a93e-f67720cca51e {"md5": "28bc5dcbde8421198a752ee12c7fe2eb", "pid": "233326103", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/233326103", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/233326103", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Deperthuis, Anne", "country_associated": "fr", "authorized_access_point": "Deperthuis, Anne, 19..-...."} 2 -2023-07-08 08:22:32.635977 2023-07-08 10:31:44.424222 104d5e44-6e48-4276-aa5d-6384534126a9 {"md5": "ae8da8983b9772a0c375e63c510d055c", "pid": "240228448", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/240228448", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240228448", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Filippi, Alexandra", "country_associated": "fr", "authorized_access_point": "Filippi, Alexandra, 19..-...."} 2 -2023-07-08 08:22:22.092139 2023-07-08 08:22:22.092152 91bc5d28-a806-4d72-8ad4-15505fe5381e {"md5": "43c5f9edf99e478116a4a052de579e3f", "pid": "233619771", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/233619771", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/233619771", "source": "IDREF"}], "preferred_name": "Barres, Frankline", "country_associated": "xx", "authorized_access_point": "Barres, Frankline", "biographical_information": ["Auteur d'un mémoire de DEA à Paris 4 en 2005"]} 1 -2023-07-08 08:22:22.210121 2023-07-08 08:22:22.210132 a3e70389-8b0c-4ae5-b26a-dd51fd05e07a {"md5": "e2cd5b5ceca318b101199dd5082e84d6", "pid": "233969829", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/233969829", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/233969829", "source": "IDREF"}], "variant_name": ["Alrassy, Nathalie"], "date_of_birth": "1991-11-26", "preferred_name": "Al Rassy, Nathalie", "country_associated": "le", "variant_access_point": ["Alrassy, Nathalie"], "authorized_access_point": "Al Rassy, Nathalie, 1991-....", "biographical_information": ["Auteur d'une thèse en Sciences et techniques des activités physiques et sportives soutenue à l'Université du Littoral Côte d'Opale en 2018."]} 1 -2023-07-08 08:22:22.309736 2023-07-08 08:22:22.309749 d4acc5b0-f69e-4673-85f1-12491024ae28 {"md5": "9c23913922415045cbadb5c575c34e12", "pid": "234087080", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/234087080", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234087080", "source": "IDREF"}], "preferred_name": "Sluyter, David J.", "country_associated": "xxu", "authorized_access_point": "Sluyter, David J.", "biographical_information": ["En poste à the Fetzer Institute à l'Université de Kalamazoo dans le Michigan en 1997"]} 1 -2023-07-08 08:22:22.562798 2023-07-08 08:22:22.562807 592d3f4b-f9e3-435c-a0db-d14383c3944c {"md5": "fa1ce09ed189846a01288dc203f5dba8", "pid": "234199180", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/234199180", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234199180", "source": "IDREF"}], "date_of_birth": "1983-02-02", "preferred_name": "Terrail Lormel, Sarah", "country_associated": "fr", "authorized_access_point": "Terrail Lormel, Sarah, 1983-....", "biographical_information": ["Auteur d'une thèse en Épistémologie, histoire des sciences à Sorbonne Paris Cité en 2018"]} 1 -2023-07-08 08:22:22.977138 2023-07-08 08:22:22.977148 abe1c728-c14b-4a11-9296-45f58c0d5a7f {"md5": "08b89d237b52c18f500c6e0bb3dc1db8", "pid": "234252006", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/234252006", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234252006", "source": "IDREF"}], "preferred_name": "Dru, François", "country_associated": "fr", "authorized_access_point": "Dru, François", "biographical_information": ["Musicologue, trompettiste, producteur pour Radio-France et chroniqueur pour les magazines Diapason et Classica, conseiller et administrateur artistique pour différents orchestres (Les Siècles, Orchestre national de Paris et de Lyon...)"]} 1 -2023-07-08 08:22:23.079189 2023-07-08 08:22:23.079199 12303680-d3d7-4b28-97c3-2e7bdc441e68 {"md5": "cc6431b95de05ad8107dda18b8144e00", "pid": "234273771", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/234273771", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234273771", "source": "IDREF"}], "preferred_name": "Département de Psychologie clinique du sujet de Toulouse 2", "country_associated": "fr", "authorized_access_point": "Département de Psychologie clinique du sujet de Toulouse 2", "biographical_information": ["Département de l'UFR de Psychologie de l'Université Toulouse II-Jean Jaurès"]} 1 -2023-07-08 08:22:23.177378 2023-07-08 08:22:23.177388 8c35e182-2f74-4c6f-8026-5c27dd5510ab {"md5": "65d2a7d21c2c40b191cc75bd6a806f87", "pid": "234277602", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/234277602", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234277602", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Riou, Patrice", "country_associated": "fr", "authorized_access_point": "Riou, Patrice, 19..-....", "biographical_information": ["Titulaire du Doctorat en Virologie (Lyon 1, 2001)"]} 1 -2023-07-08 08:22:22.754977 2023-07-08 10:26:58.916897 515891eb-fd39-40ac-98c7-128a36598fa7 {"md5": "f2125f7f5337046b053f6b8eed968e87", "pid": "234251433", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/234251433", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234251433", "source": "IDREF"}], "preferred_name": "Gagnière, Claude-Jean", "country_associated": "fr", "authorized_access_point": "Gagnière, Claude-Jean", "biographical_information": ["Auteur d'une thèse soutenue à la Faculté de Droit de Montpellier en 1952"]} 2 -2023-07-08 08:22:22.421315 2023-07-08 10:27:34.878207 cec3ded7-6fa3-4f79-aafc-4a42b539b6cd {"md5": "c1c29a6db7bb710aa4472fc754be8871", "pid": "234195576", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/234195576", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234195576", "source": "IDREF"}], "preferred_name": "Cabaleiro-Jouadé, Irène", "authorized_access_point": "Cabaleiro-Jouadé, Irène", "biographical_information": ["Illustratrice, directrice d'école"]} 2 -2023-07-08 08:22:22.862896 2023-07-08 10:29:03.640887 6388cff0-febf-4eff-a441-7bea6d8251a1 {"md5": "44d66b2b466c5dc36290e957f0c05d75", "pid": "234251867", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/234251867", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234251867", "source": "IDREF"}], "preferred_name": "Baltes, Camille", "country_associated": "fr", "authorized_access_point": "Baltes, Camille", "biographical_information": ["Auteur d'un mémoire à l'Ecole du Louvre"]} 2 -2023-07-08 08:22:23.304324 2023-07-08 08:22:23.304336 8c96d718-2284-4082-9a6a-69a93e870009 {"md5": "69ab4d39963b9c0a6c0a1a305bdb6582", "pid": "234278390", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifier": "http://www.idref.fr/234278390", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234278390", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "248917137"}, "variant_name": ["Colloque de Cerisy"], "preferred_name": "Centre culturel international (Cerisy-la-Salle, Manche). Colloque", "country_associated": "fr", "date_of_termination": "2016-06-30", "variant_access_point": ["Colloque de Cerisy (2016)"], "date_of_establishment": "2016-06-23", "authorized_access_point": "Centre culturel international (Cerisy-la-Salle, Manche). Colloque (2016-06-23/ 2016-06-30)"} 1 -2023-07-08 08:22:23.407568 2023-07-08 08:22:23.407581 b70f3ce6-35df-41b8-a8b5-1152f9f27fcd {"md5": "ff065dfe26e0352ebc37f159a5e9be8b", "pid": "234317566", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/234317566", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234317566", "source": "IDREF"}], "preferred_name": "Prost, Louise", "country_associated": "fr", "authorized_access_point": "Prost, Louise"} 1 -2023-07-08 08:22:23.514854 2023-07-08 08:22:23.51487 8dc5e632-a2a1-4dee-9a28-d2b9167485e9 {"md5": "d1ce1956a1897caade6406df61230708", "pid": "234340487", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/234340487", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234340487", "source": "IDREF"}], "preferred_name": "Raffaello, Anna", "country_associated": "it", "authorized_access_point": "Raffaello, Anna"} 1 -2023-07-08 08:22:23.622294 2023-07-08 08:22:23.622306 d0437411-8f8f-46cc-b867-2c09256a0d9e {"md5": "aa91155b64f8f50a5ed180a42a197af8", "pid": "234363053", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/234363053", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234363053", "source": "IDREF"}], "preferred_name": "Maynaud, Ernest", "country_associated": "fr", "authorized_access_point": "Maynaud, Ernest", "biographical_information": ["Titulaire d'une thèse de médecine (Paris, 1934)"]} 1 -2023-07-08 08:22:23.7119 2023-07-08 08:22:23.71191 8931767b-c953-42ba-860a-94999a39f693 {"md5": "9eb39697879782a269bfdaf6008ac43a", "pid": "234417765", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/234417765", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234417765", "source": "IDREF"}], "variant_name": ["GREHAS"], "preferred_name": "Groupe réunionnais d'étude sur l'habitat social", "country_associated": "re", "variant_access_point": ["GREHAS"], "authorized_access_point": "Groupe réunionnais d'étude sur l'habitat social"} 1 -2023-07-08 08:22:23.814882 2023-07-08 08:22:23.814887 24300526-ad52-4a91-81b2-2a61393cf6e2 {"md5": "3733702454a92dff61d25a5eb2f25ba2", "pid": "234443693", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/234443693", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234443693", "source": "IDREF"}], "variant_name": ["Cañuelo, Pedro Garcia del", "Del Cañuelo, Pedro Garcia"], "date_of_birth": "1746", "date_of_death": "18??", "preferred_name": "Garcia del Cañuelo, Pedro", "country_associated": "sp", "variant_access_point": ["Cañuelo, Pedro Garcia del", "Del Cañuelo, Pedro Garcia"], "authorized_access_point": "Garcia del Cañuelo, Pedro, 1746-18??"} 1 -2023-07-08 08:22:23.907627 2023-07-08 08:22:23.907637 94b85e62-760d-4305-9914-9a472bac508d {"md5": "a2801e6fc9a5b3a96b91304f0fbe68c4", "pid": "234449381", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/234449381", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234449381", "source": "IDREF"}], "preferred_name": "Adarraga, Idoia", "country_associated": "sp", "authorized_access_point": "Adarraga, Idoia", "biographical_information": ["En poste à la sociedad cultural INSUB de Saint-Sébastien (2018)"]} 1 -2023-07-08 08:22:24.009614 2023-07-08 08:22:24.009619 3ad7cf52-c6f6-4d5e-ae2a-0a5dd183db1e {"md5": "b2dc1387a2ea2fdd1a44acb205781d3c", "pid": "234468718", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/234468718", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234468718", "source": "IDREF"}], "preferred_name": "Bronsard, efli", "country_associated": "xx", "authorized_access_point": "Bronsard, efli", "biographical_information": ["Auteur d'un mémoire de maîtrise à Paris 4 en 2005"]} 1 -2023-07-08 08:22:24.116926 2023-07-08 08:22:24.116941 48a56a5c-bf7e-41f7-94a2-b7018a7b9c5f {"md5": "dd9aefb34f09113a53d95c4c382e29db", "pid": "234477644", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/234477644", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234477644", "source": "IDREF"}], "date_of_birth": "1991-10-23", "preferred_name": "Fabri-Ruiz, Salomé", "country_associated": "fr", "authorized_access_point": "Fabri-Ruiz, Salomé, 1991-....", "biographical_information": ["Auteur d'une thèse en Biologie des populations et écologie à Bourgogne Franche-Comté en 2018"]} 1 -2023-07-08 08:22:24.228045 2023-07-08 08:22:24.228054 bb297cf0-fa8b-43a4-8b03-1037242dacd3 {"md5": "dacebfe8372b0d63c05d1b06f9dc53b4", "pid": "23449140X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "sage-femme", "identifier": "http://www.idref.fr/23449140X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/23449140X", "source": "IDREF"}], "date_of_birth": "1993-02-21", "preferred_name": "Drouvin, Clotilde, sage-femme", "country_associated": "fr", "authorized_access_point": "Drouvin, Clotilde, 1993-...., sage-femme", "biographical_information": ["Titulaire d'un diplôme d'État de sage-femme (Rennes, 2018)"]} 1 -2023-07-08 08:22:24.32852 2023-07-08 08:22:24.328533 fe2a4e8c-9c98-4e1b-970c-fa1971be27e2 {"md5": "11d9b2eed892860897900c093beff35d", "pid": "234536535", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/234536535", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234536535", "source": "IDREF"}], "preferred_name": "O'Hara, S. Paul", "authorized_access_point": "O'Hara, S. Paul"} 1 -2023-07-08 08:22:24.642634 2023-07-08 08:22:24.642645 9c9e7e71-12fa-4394-af79-dfd9dcb09d35 {"md5": "b6d3d4eaba2a5d2781096815e01e2368", "pid": "23459313X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/23459313X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/23459313X", "source": "IDREF"}], "variant_name": ["González, Mario Duque"], "preferred_name": "Duque González, Mario", "country_associated": "sp", "variant_access_point": ["González, Mario Duque"], "authorized_access_point": "Duque González, Mario", "biographical_information": ["Juriste."]} 1 -2023-07-08 08:22:24.737021 2023-07-08 08:22:24.737034 2d538be4-24a5-4113-bb08-c8e7e81f329c {"md5": "170720401998978daf2ad426bee0a15f", "pid": "234622512", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/234622512", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234622512", "source": "IDREF"}], "date_of_birth": "1957-11-05", "preferred_name": "Rochoux, Gilles", "authorized_access_point": "Rochoux, Gilles"} 1 -2023-07-08 08:22:24.832765 2023-07-08 08:22:24.832775 71d4d4a8-c640-453c-ac8e-7bd4acf34fc6 {"md5": "266fa5ac06c587c986b6ce0404dcf505", "pid": "234673672", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/234673672", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234673672", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Cohen, Raphaël P.", "country_associated": "fr", "authorized_access_point": "Cohen, Raphaël P., 19..-....", "biographical_information": ["Co-auteur d'un article en aéronautique", "Doctorant en cotutelle de thèse internationale entre l’ISAE-SUPAERO et Georgia Tech (en 2018)"]} 1 -2023-07-08 08:22:25.033231 2023-07-08 08:22:25.033239 969abc3d-0553-4fb1-82fc-503a3ad7f77e {"md5": "268bba3e70955569fccfb82b65ef481d", "pid": "234745479", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/234745479", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234745479", "source": "IDREF"}], "variant_name": ["Braithwait, William", "Braithwayte, William", "Braithwaitus, Willihelmus"], "date_of_birth": "15XX", "date_of_death": "16XX", "preferred_name": "Braithwaite, William", "country_associated": "xxk", "variant_access_point": ["Braithwait, William", "Braithwayte, William", "Braithwaitus, Willihelmus"], "authorized_access_point": "Braithwaite, William, 15..-16..", "biographical_information": ["Membre de St. John's college, Cambridge. Ecclésiastique, enseignant, musicologue"]} 1 -2023-07-08 08:22:25.127651 2023-07-08 08:22:25.127657 b4865cac-1572-4094-9c2a-54e888f89c58 {"md5": "2a60cdb7af1c568495efea8824be448d", "pid": "23475382X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifier": "http://www.idref.fr/23475382X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/23475382X", "source": "IDREF"}], "variant_name": ["CNTP", "Opera nazionale dopolavoro (Italie). Comitato nazionale italiano per le arti popolari", "O N D (Italie). Comitato nazionale italiano per le arti popolari", "Partito nazionale fascista (Italie). Comitato nazionale italiano per arti popolari", "Accademia d'Italia. Comitato nazionale italiano per le arti popolari"], "preferred_name": "Comitato nazionale italiano per le arti popolari (Italie)", "country_associated": "it", "variant_access_point": ["CNTP", "Opera nazionale dopolavoro (Italie). Comitato nazionale italiano per le arti popolari", "O N D (Italie). Comitato nazionale italiano per le arti popolari", "Partito nazionale fascista (Italie). Comitato nazionale italiano per arti popolari", "Accademia d'Italia. Comitato nazionale italiano per le arti popolari"], "date_of_establishment": "1928", "authorized_access_point": "Comitato nazionale italiano per le arti popolari (Italie)"} 1 -2023-07-08 08:22:25.214752 2023-07-08 08:22:25.214765 3a9a8cb9-835b-4c19-ad9e-ff3da7a5697a {"md5": "8293924412f2275189ea39cc8e4babf6", "pid": "234776439", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/234776439", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234776439", "source": "IDREF"}], "date_of_birth": "1972-12-26", "preferred_name": "Theodore, Emmanuel", "country_associated": "fr", "authorized_access_point": "Theodore, Emmanuel, 1972-....", "biographical_information": ["Auteur d'une thèse en Droit public à Reims en 2017"]} 1 -2023-07-08 08:22:25.309562 2023-07-08 08:22:25.309566 34d6216b-dbb6-413c-bff2-10e1fb292863 {"md5": "8d6c171f1583c4da3bc00f00e393b312", "pid": "234777079", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifier": "http://www.idref.fr/234777079", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234777079", "source": "IDREF"}], "variant_name": ["National Institute of Population Studies (Pakistan)"], "preferred_name": "Pakistan. National Institute of Population Studies", "country_associated": "pk", "variant_access_point": ["National Institute of Population Studies (Pakistan)"], "authorized_access_point": "Pakistan. National Institute of Population Studies"} 1 -2023-07-08 08:22:39.028311 2023-07-08 08:22:39.028324 1eb6b4fa-4b9f-4452-b836-978632984ec5 {"md5": "3bf0646b41f7ff577b290a456dd0ee67", "pid": "242723470", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/242723470", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/242723470", "source": "IDREF"}], "preferred_name": "Menal, Esther", "country_associated": "fr", "authorized_access_point": "Menal, Esther"} 1 -2023-07-08 08:22:24.930529 2023-07-08 10:28:33.883887 17cef28c-8970-47a6-a74b-1e4f1c08f32e {"md5": "2934c26909e643954d0c655bbf295b1b", "pid": "234715723", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "identifier": "http://www.idref.fr/234715723", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234715723", "source": "IDREF"}], "variant_name": ["江口, 正弘"], "date_of_birth": "1930", "preferred_name": "Eguchi, Masahiro", "country_associated": "ja", "variant_access_point": ["江口, 正弘, 1930-...."], "authorized_access_point": "Eguchi, Masahiro, 1930-....", "biographical_information": ["Transcription Hepburn modifié"]} 2 -2023-07-08 08:22:25.38983 2023-07-08 08:22:25.389839 b5b7a2bf-d7f8-49ca-9ec7-621044b0a71f {"md5": "6f0043946d45d8b81bd7dc5ed91d62b0", "pid": "234811080", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["srp"], "conference": false, "identifier": "http://www.idref.fr/234811080", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234811080", "source": "IDREF"}], "variant_name": ["Studentischen Kulturzentrum (Belgrad)", "Centre culturel étudiant (Belgrade, Serbie)"], "preferred_name": "Studentski kulturni centar u Beogradu (Belgrade, Serbie)", "variant_access_point": ["Studentischen Kulturzentrum (Belgrad)", "Centre culturel étudiant (Belgrade, Serbie)"], "authorized_access_point": "Studentski kulturni centar u Beogradu (Belgrade, Serbie)"} 1 -2023-07-08 08:22:25.499625 2023-07-08 08:22:25.499628 e33d3dc8-0b9a-48e2-aa06-b16d291cbf7f {"md5": "1842996995d5a8d758e3d636b2686d3f", "pid": "234843160", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/234843160", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234843160", "source": "IDREF"}], "date_of_birth": "1989-02-04", "preferred_name": "Moesch, Aude", "country_associated": "fr", "authorized_access_point": "Moesch, Aude"} 1 -2023-07-08 08:22:25.589984 2023-07-08 08:22:25.589999 21d35075-9a61-4302-9832-972cecf7fbfd {"md5": "03aa8b2922e141d27062320ce14f4995", "pid": "234849223", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/234849223", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234849223", "source": "IDREF"}], "date_of_birth": "1982-01-22", "preferred_name": "Pajek, Marta", "country_associated": "pl", "authorized_access_point": "Pajek, Marta, 1982-....", "biographical_information": ["Réalisatrice de film d'animation. - Artiste peintre, graphiste"]} 1 -2023-07-08 08:22:25.818677 2023-07-08 08:22:25.818687 0dc8c5c4-cb62-4e1f-90b4-875ea4264537 {"md5": "3d9293d9cf133e644d3c8f3204dbbb79", "pid": "235031771", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/235031771", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/235031771", "source": "IDREF"}], "variant_name": ["Cissarz, J. v", "Cissarz, Johann W.", "Cissarz, Johann Winzenz", "Cissarz, Johannes", "Cissarz, Johannes Joseph Vincenz", "Cissarz, Johann Vinzenz", "Cissarz, J. Vincenz", "Cissarz, Johann V."], "date_of_birth": "1873", "date_of_death": "1942", "preferred_name": "Cissarz, Johann Vincenz", "country_associated": "gw", "variant_access_point": ["Cissarz, J. v", "Cissarz, Johann W.", "Cissarz, Johann Winzenz", "Cissarz, Johannes", "Cissarz, Johannes Joseph Vincenz", "Cissarz, Johann Vinzenz", "Cissarz, J. Vincenz", "Cissarz, Johann V."], "authorized_access_point": "Cissarz, Johann Vincenz, 1873-1942", "biographical_information": ["Artiste allemand"]} 1 -2023-07-08 08:22:26.042787 2023-07-08 08:22:26.042799 410f1ada-d41b-4b5a-ac39-0a3b5f200c96 {"md5": "df9801f992cfa944780bbb7d5f3ca7c4", "pid": "235095273", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/235095273", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/235095273", "source": "IDREF"}], "preferred_name": "Petit, Christophe", "country_associated": "fr", "authorized_access_point": "Petit, Christophe", "biographical_information": ["Doctorant en pharmacie (en 1999)"]} 1 -2023-07-08 08:22:26.244285 2023-07-08 08:22:26.244298 d4b78786-05bc-461a-8747-c722e1c686f9 {"md5": "0e84574b0fabb1b70e8c24caa709a7d5", "pid": "23515606X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["pol"], "identifier": "http://www.idref.fr/23515606X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/23515606X", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Antoniuk, Mateusz", "country_associated": "pl", "authorized_access_point": "Antoniuk, Mateusz, 19..-...."} 1 -2023-07-08 08:22:26.36119 2023-07-08 08:22:26.361202 b6808a8f-d06e-44fe-8434-d6939c85aa65 {"md5": "45807d3e1bd6c5c4274dc3be263a5c86", "pid": "235183881", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ara"], "identifier": "http://www.idref.fr/235183881", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/235183881", "source": "IDREF"}], "preferred_name": "الزموري, محمد", "country_associated": "mr", "authorized_access_point": "الزموري, محمد"} 1 -2023-07-08 08:22:26.452215 2023-07-08 08:22:26.452223 5a9e3542-0dd7-4f6a-83b3-8b4f000a30d7 {"md5": "ad7f08155f4280cec3b341cd04dc9465", "pid": "235239593", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/235239593", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/235239593", "source": "IDREF"}], "preferred_name": "Eymond, Gabriel", "authorized_access_point": "Eymond, Gabriel"} 1 -2023-07-08 08:22:26.546376 2023-07-08 08:22:26.54638 3fdf4cc2-ced7-4520-a639-4cadffe792f1 {"md5": "11086ee795efdfea8278f24634b168f5", "pid": "235262927", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/235262927", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/235262927", "source": "IDREF"}], "date_of_birth": "1979-07-02", "preferred_name": "Selmani, Zohair", "country_associated": "fr", "authorized_access_point": "Selmani, Zohair"} 1 -2023-07-08 08:22:25.927172 2023-07-08 10:28:22.001539 056ddecf-b6f5-4eb0-aef3-746aa6586924 {"md5": "2bd93b7e16c1d596801f2f66a91e6ee7", "pid": "235057657", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/235057657", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/235057657", "source": "IDREF"}], "preferred_name": "Goldrach, Noah", "country_associated": "xxk", "authorized_access_point": "Goldrach, Noah"} 2 -2023-07-08 08:22:26.142301 2023-07-08 10:30:24.693979 74ea964b-b5d7-40d3-8d33-46f7b576dd00 {"md5": "64a223e5ae51e29139f8c19ac58526ca", "pid": "235097306", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/235097306", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/235097306", "source": "IDREF"}], "preferred_name": "Commanay-Agnès, Colette", "country_associated": "fr", "authorized_access_point": "Commanay-Agnès, Colette", "biographical_information": ["Archiviste paléographe promotion 1963"]} 2 -2023-07-08 08:22:26.742443 2023-07-08 08:22:26.742457 e04c5fd2-b711-4e35-87d2-357fcfa1a15e {"md5": "bbe3aae040b5865e495470e04ed2e0bc", "pid": "235301108", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/235301108", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/235301108", "source": "IDREF"}], "variant_name": ["Rissman, Jeffrey"], "preferred_name": "Rissman, Jeffrey", "country_associated": "xxu", "variant_access_point": ["Rissman, Jeffrey"], "authorized_access_point": "Rissman, Jeffrey", "biographical_information": ["Industry Program Director and Head of Modeling at Energy Innovation"]} 1 -2023-07-08 08:22:26.979748 2023-07-08 08:22:26.979758 b89293de-4e9d-4f31-afe5-f454b9428765 {"md5": "991aad4e77095525970e15ecaac1e445", "pid": "235328790", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/235328790", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/235328790", "source": "IDREF"}], "preferred_name": "Caratelli, Renata", "country_associated": "it", "authorized_access_point": "Caratelli, Renata", "biographical_information": ["Ancienne professeur de langue et civilisation françaises dans les lycées italiens"]} 1 -2023-07-08 08:22:27.182342 2023-07-08 08:22:27.182351 9bba8f34-a112-418f-a104-94397a3cab3b {"md5": "2f63220a5ca1c0330b491a88213b8c8c", "pid": "235598720", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/235598720", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/235598720", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Janji, Bassam", "country_associated": "fr", "authorized_access_point": "Janji, Bassam, 19..-....", "biographical_information": ["Auteur d'une Thèse de doctorat en Sciences médicales à Paris 6 en 2000"]} 1 -2023-07-08 08:22:27.279414 2023-07-08 08:22:27.279425 ee4d5b22-4e25-486a-bd47-70fa202a85ea {"md5": "74c913caba23006990f9bfb8c5c006be", "pid": "235711667", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/235711667", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/235711667", "source": "IDREF"}], "preferred_name": "Guerrero, Sabine", "authorized_access_point": "Guerrero, Sabine"} 1 -2023-07-08 08:22:27.374255 2023-07-08 08:22:27.374265 f0627adf-a882-4e9c-8174-ced9f5e1e344 {"md5": "b0c32e38f0b6afe519cfc41043fb6d34", "pid": "235718211", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/235718211", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/235718211", "source": "IDREF"}], "preferred_name": "Asher, Rita Ann", "authorized_access_point": "Asher, Rita Ann"} 1 -2023-07-08 08:22:27.463468 2023-07-08 08:22:27.463484 86d0ed57-b8d7-4393-a7ba-ff2793a92222 {"md5": "5ae2389a90c7cb6b9b472bae16eb0ee9", "pid": "235835943", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["hrv"], "identifier": "http://www.idref.fr/235835943", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/235835943", "source": "IDREF"}], "date_of_birth": "1903", "date_of_death": "1985", "preferred_name": "Weissmann, Ernest", "country_associated": "ci", "authorized_access_point": "Weissmann, Ernest, 1903-1985", "biographical_information": ["Architecte"]} 1 -2023-07-08 08:22:27.560596 2023-07-08 08:22:27.560606 0e717660-72ce-4322-abad-d8960d4a0d6c {"md5": "906ce8251ece16d9412dc1f42081c571", "pid": "235860131", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/235860131", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/235860131", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Buj, A.", "country_associated": "fr", "authorized_access_point": "Buj, A., 19..-...."} 1 -2023-07-08 08:22:27.6673 2023-07-08 08:22:27.667315 e9b1c6ff-b99a-4a92-8a25-cce2b7e278e9 {"md5": "7eca191bf02111f051ee13cc0b4201fe", "pid": "235909025", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/235909025", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/235909025", "source": "IDREF"}], "preferred_name": "Chabry, Etienne", "country_associated": "fr", "authorized_access_point": "Chabry, Etienne"} 1 -2023-07-08 08:22:27.793748 2023-07-08 08:22:27.793758 46ec0236-94c7-459b-82ac-11ff0df6e444 {"md5": "a74897e7da06f3cab35d46bc18fd9b99", "pid": "236048198", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/236048198", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/236048198", "source": "IDREF"}], "date_of_birth": "1949-10-01", "preferred_name": "Harroch, Myriam", "country_associated": "fr", "authorized_access_point": "Harroch, Myriam", "biographical_information": ["Doctorante en chirurgie dentaire (en 1974)"]} 1 -2023-07-08 08:22:26.873717 2023-07-08 10:26:23.612094 b537b07b-ef68-461e-84c0-b948c34d261f {"md5": "cfe21424ce43647e1ec55ceff01169a6", "pid": "235301787", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/235301787", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/235301787", "source": "IDREF"}], "date_of_birth": "...", "preferred_name": "Ribeiro, Marc H.", "country_associated": "fr", "authorized_access_point": "Ribeiro, Marc H.", "biographical_information": ["Créateur de jeux"]} 2 -2023-07-08 08:22:27.081877 2023-07-08 10:30:42.477863 5bdd9445-2c28-4d54-989a-31e4efabc692 {"md5": "57f08640ce2339e44cbc500ba86cb648", "pid": "235561584", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/235561584", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/235561584", "source": "IDREF"}], "preferred_name": "Flamant, Gaspard", "country_associated": "fr", "authorized_access_point": "Flamant, Gaspard", "biographical_information": ["Auteur de romans jeunesse pour adolescents (en 2018)"]} 2 -2023-07-08 08:22:27.901819 2023-07-08 08:22:27.901835 0468e221-1977-4a53-8fd8-2fb33ac63550 {"md5": "f85fec9a14b9591cbe02b59c996ebfe7", "pid": "236052616", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifier": "http://www.idref.fr/236052616", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/236052616", "source": "IDREF"}], "preferred_name": "WHO Study Group on the Role of Research and Information Systems in Decision-Making for the Development of Human Resources for Health", "authorized_access_point": "WHO Study Group on the Role of Research and Information Systems in Decision-Making for the Development of Human Resources for Health"} 1 -2023-07-08 08:22:27.992045 2023-07-08 08:22:27.992055 273d48dc-2d2a-4e6d-9b77-029f05708b02 {"md5": "d7325474aa7c9818faa2325896fb6d88", "pid": "236100599", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/236100599", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/236100599", "source": "IDREF"}], "variant_name": ["Bard, Sandrine"], "preferred_name": "Sorel, Sandrine", "variant_access_point": ["Bard, Sandrine"], "authorized_access_point": "Sorel, Sandrine"} 1 -2023-07-08 08:22:28.093633 2023-07-08 08:22:28.093646 3d3d2264-043c-464b-a7d8-8ad0311c8696 {"md5": "e0c9777cfcbd1d4350498d6cb3b1d623", "pid": "236101706", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/236101706", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/236101706", "source": "IDREF"}], "date_of_birth": "1984-08-04", "preferred_name": "Le Foulher, Fabrice", "country_associated": "fr", "authorized_access_point": "Le Foulher, Fabrice, 1984-....", "biographical_information": ["Auteur d'une thèse en Physique nucléaire soutenue à Lyon 1 en 2010"]} 1 -2023-07-08 08:22:28.194612 2023-07-08 08:22:28.194622 cb63e980-7abe-454f-8d42-93bd4d6c9838 {"md5": "580502faadfb6e11de789a8f683af82b", "pid": "236118668", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/236118668", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/236118668", "source": "IDREF"}], "preferred_name": "Gardner, Peter", "country_associated": "xxk", "authorized_access_point": "Gardner, Peter", "biographical_information": ["Professeur au Manchester Institute of Biotechnology, Université de Manchester (Royaume-Uni)"]} 1 -2023-07-08 08:22:28.294084 2023-07-08 08:22:28.294089 92459c2e-6fdf-4000-b813-6fa28d4f4598 {"md5": "ad807b317fa690ca5ac4c8ce7893f601", "pid": "236167510", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/236167510", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/236167510", "source": "IDREF"}], "preferred_name": "Parcy, Elliott", "country_associated": "fr", "authorized_access_point": "Parcy, Elliott"} 1 -2023-07-08 08:22:28.383359 2023-07-08 08:22:28.38337 25d5dd2d-6437-4ba7-8df4-37e2545ab150 {"md5": "ca677c43649be70d6beb2814905905fa", "pid": "236210424", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/236210424", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/236210424", "source": "IDREF"}], "preferred_name": "Perney, Christine", "country_associated": "fr", "authorized_access_point": "Perney, Christine", "biographical_information": ["Responsable du projet Histoires d'art à l'école, chargée de Projets culturels \\"Réseaux éducatifs\\", cellule médiation-éducation RMN Grand Palais"]} 1 -2023-07-08 08:22:28.473452 2023-07-08 08:22:28.473465 2931a7be-ce59-45ef-93a3-4051437ca3bb {"md5": "10bf1b9fb195d384e54e243b791e095d", "pid": "236421603", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/236421603", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/236421603", "source": "IDREF"}], "preferred_name": "Benetti, Jacopo", "country_associated": "it", "authorized_access_point": "Benetti, Jacopo"} 1 -2023-07-08 08:22:28.718165 2023-07-08 08:22:28.718178 df59e03d-96d5-4acd-8fea-1a45ef9f8e79 {"md5": "2b0f811fe551ef5a7b290db028699ddd", "pid": "236553917", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifier": "http://www.idref.fr/236553917", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/236553917", "source": "IDREF"}], "variant_name": ["SMT", "Tunisian mathematical society"], "preferred_name": "Société mathématique de Tunisie (Tunis)", "country_associated": "ti", "variant_access_point": ["SMT", "Tunisian mathematical society"], "date_of_establishment": "2019", "authorized_access_point": "Société mathématique de Tunisie (Tunis)", "biographical_information": ["Société de recherche créée en 1992.", "2092, Faculté des Sciences de Tunis, Campus Universitaire, Tunis, Tunisie"]} 1 -2023-07-08 08:22:28.81475 2023-07-08 08:22:28.814761 294c497d-30f1-4c41-a5f2-904cd4addebe {"md5": "230446885b48b0226f94fb5b5157cd77", "pid": "236613529", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["chi"], "identifier": "http://www.idref.fr/236613529", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/236613529", "source": "IDREF"}], "variant_name": ["李, 良志"], "date_of_birth": "1928", "preferred_name": "Li, Liangzhi", "country_associated": "cc", "variant_access_point": ["李, 良志, 1928-...."], "authorized_access_point": "Li, Liangzhi, 1928-....", "biographical_information": ["Professeur de l'Université Renmin de Chine. Auteur d'ouvrages sur les partis politiques chinois."]} 1 -2023-07-08 08:22:28.930833 2023-07-08 08:22:28.93084 4baab978-b03e-455c-b81d-499360fbf386 {"md5": "25d66e71ed2c450050c9f7bd107416a3", "pid": "236615165", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/236615165", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/236615165", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Fayat, Alexis", "country_associated": "fr", "authorized_access_point": "Fayat, Alexis, 19..-....", "biographical_information": ["Co-auteur d'un article en biologie", "Membre du laboratoire Dynamiques et écologie des paysages agriforestiers - DYNAFOR (Castanet-Tolosan, Haute-Garonne) (en 2019)"]} 1 -2023-07-08 08:22:29.091673 2023-07-08 08:22:29.091685 3fd158c6-a28f-4297-b534-da7c66d247af {"md5": "b9211b690cda7b0af345dd6d2c5ad400", "pid": "236625284", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/236625284", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/236625284", "source": "IDREF"}], "preferred_name": "Cormier, Pénélope", "country_associated": "xxc", "authorized_access_point": "Cormier, Pénélope", "biographical_information": ["Professeur de littérature à l'université de Moncton"]} 1 -2023-07-08 08:22:29.217335 2023-07-08 08:22:29.217341 fd16fb9b-cfd2-4467-8aeb-a69346335042 {"md5": "49c3d274fc8a53b61dd91b37c44e06b9", "pid": "236722344", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/236722344", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/236722344", "source": "IDREF"}], "date_of_birth": "1949-07-26", "preferred_name": "Midon, Patrick", "country_associated": "fr", "authorized_access_point": "Midon, Patrick", "biographical_information": ["Doctorant en chirurgie dentaire (en 1977)"]} 1 -2023-07-08 08:22:29.329882 2023-07-08 08:22:29.329894 70bee8e4-4a55-4b48-9055-4db000fd6a61 {"md5": "1413daaa57787383a43520a01c6c4bff", "pid": "236724371", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "spa"], "identifier": "http://www.idref.fr/236724371", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/236724371", "source": "IDREF"}], "variant_name": ["Caldito, Lidia", "Andrades, Lidia"], "date_of_birth": "19XX", "preferred_name": "Andrades Caldito, Lidia", "country_associated": "sp", "variant_access_point": ["Caldito, Lidia", "Andrades, Lidia"], "authorized_access_point": "Andrades Caldito, Lidia, 19..-....", "biographical_information": ["Maître de conférence en marketing à l'Université d'Extremadura, en Espagne."]} 1 -2023-07-08 08:22:29.446951 2023-07-08 08:22:29.446962 a55ecd3a-6c3e-4561-aa61-6ab2764bf596 {"md5": "a312641689c82ba9288089e870a97d50", "pid": "236751964", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["tha"], "identifier": "http://www.idref.fr/236751964", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/236751964", "source": "IDREF"}], "variant_name": ["ดลมนรรจน์ บากา", "Donmanat Baka", "Baka, Donmanat", "บากา, ดลมนรรจน์", "Bākā, Donmanat"], "date_of_birth": "19XX", "preferred_name": "Donmanat Bākā", "country_associated": "th", "variant_access_point": ["Donmanat Baka", "Baka, Donmanat", "บากา, ดลมนรรจน์", "Bākā, Donmanat"], "authorized_access_point": "Donmanat Bākā, 19..-....", "biographical_information": ["Translittération ALA-LOC", "Enseignant thaïlandais"]} 1 -2023-07-08 08:22:29.562733 2023-07-08 08:22:29.562746 dc185848-1276-43e0-8d3d-670080cb955f {"md5": "ae84027c34b0dface6ebfcdb12db1a15", "pid": "236752677", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/236752677", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/236752677", "source": "IDREF"}], "preferred_name": "Sandral, Céline", "country_associated": "fr", "authorized_access_point": "Sandral, Céline", "biographical_information": ["Co-auteur d'un mémoire de master 1 de psychologie cognitive et ergonomie"]} 1 -2023-07-08 08:22:29.681419 2023-07-08 08:22:29.681431 dc3f1c64-b4aa-46a3-a3aa-75c9401c6609 {"md5": "ce04d119f756889e9ecc651405411159", "pid": "236755889", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/236755889", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/236755889", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Georgescu, Delia", "country_associated": "gw", "authorized_access_point": "Georgescu, Delia, 19..-....", "biographical_information": ["Autrice d'articles sur la littérature québécoise. Docteur ès Lettres de l'Université de Bucarest"]} 1 -2023-07-08 08:22:29.786418 2023-07-08 08:22:29.786425 4534bcd6-69d8-43d9-a8a3-25223a6adbf9 {"md5": "e7ad0bd63ecd72b87592b793e30b97c3", "pid": "236758349", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "conference": false, "identifier": "http://www.idref.fr/236758349", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/236758349", "source": "IDREF"}], "preferred_name": "Provoke (photographie) (Japon)", "country_associated": "ja", "authorized_access_point": "Provoke (photographie) (Japon)", "biographical_information": ["Collectif de photographes japonais d'après-guerre"]} 1 -2023-07-08 08:22:29.892702 2023-07-08 08:22:29.892716 ea5ba1c9-45bb-4c4c-b602-ed4285fcf80e {"md5": "76408ab0d953f86614033a96c6b50362", "pid": "236760378", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/236760378", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/236760378", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Little, Joyce Currie", "country_associated": "xxu", "authorized_access_point": "Little, Joyce Currie, 19..-....", "biographical_information": ["Progframmeur. En poste à Baltimore (en 1971)"]} 1 -2023-07-08 08:22:29.993595 2023-07-08 08:22:29.99361 c3758e99-61dc-40db-b4df-53f413b4d332 {"md5": "479b999f414f9580571c78b11b0edc9d", "pid": "236792539", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["per", "eng"], "identifier": "http://www.idref.fr/236792539", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/236792539", "source": "IDREF"}], "variant_name": ["عنقا, حميده بانو", "Anqa, Hamideh Banu"], "date_of_birth": "1940", "preferred_name": "ʻAnqā, Ḥamīdah Bānū", "country_associated": "ir", "variant_access_point": ["Anqa, Hamideh Banu"], "authorized_access_point": "ʻAnqā, Ḥamīdah Bānū, 1940-...."} 1 -2023-07-08 08:22:30.085718 2023-07-08 08:22:30.08573 ad3199e1-4069-4f2c-924f-73d3a516b45d {"md5": "dd1add491e97d0c678d71dabeab92931", "pid": "237190109", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/237190109", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/237190109", "source": "IDREF"}], "date_of_birth": "1908-01-16", "preferred_name": "Deburge, Albert-François", "country_associated": "fr", "authorized_access_point": "Deburge, Albert-François, 1908-....", "biographical_information": ["Docteur en médecine (Lille, 1935)"]} 1 -2023-07-08 08:22:30.279172 2023-07-08 08:22:30.279183 2dca849b-2a12-4e39-aa11-e6e0aef17860 {"md5": "7fbfe04767f2c526d4d27fd8ce690219", "pid": "237613883", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/237613883", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/237613883", "source": "IDREF"}], "variant_name": ["Jiao, Jiu Jimmy"], "preferred_name": "Jiao, Jimmy", "variant_access_point": ["Jiao, Jiu Jimmy"], "authorized_access_point": "Jiao, Jimmy", "biographical_information": ["BEng and MEng from China University of Geosciences (Wuhan), China, and PhD from the University of Birmingham, UK. Assistant professor, Department of Earth Sciences, University of Hong Kong (HKU) depuis 1997."]} 1 -2023-07-08 08:22:30.47542 2023-07-08 08:22:30.475429 d3e0d551-3257-4452-9fb3-ebf1805341f1 {"md5": "0491d8349848c2dd8f9b4d2db92d671a", "pid": "237678373", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/237678373", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/237678373", "source": "IDREF"}], "date_of_birth": "1989-03-12", "preferred_name": "Otandault Aviviani, Amaelle Cherone", "country_associated": "go", "authorized_access_point": "Otandault Aviviani, Amaelle Cherone, 1989-....", "biographical_information": ["Auteur d'une thèse en Biologie Santé à l'Université de Montpellier en 2019."]} 1 -2023-07-08 08:22:30.577478 2023-07-08 08:22:30.577482 98815c94-5096-43fa-b0f2-beea2c705200 {"md5": "4df51d526645c412a721e16c206a58f8", "pid": "23771745X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/23771745X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/23771745X", "source": "IDREF"}], "date_of_birth": "1980", "preferred_name": "Grujičić, Milica", "country_associated": "gw", "authorized_access_point": "Grujičić, Milica, 1980-....", "biographical_information": ["En 2017 a eu sa thèse à l'Université Friedrich-Schiller d'Iéna (études sur l'Europe du Sud-Est). Ses recherches portent sur des questions comparatives sur la littérature liée à la migration"]} 1 -2023-07-08 08:22:30.695222 2023-07-08 08:22:30.695229 e3290375-10c0-443b-90d3-f01823fd9415 {"md5": "f592de19c77f88aabdfbae7d22da07f0", "pid": "237781565", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/237781565", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/237781565", "source": "IDREF"}], "date_of_birth": "1952-06-09", "preferred_name": "Hentzgen, Jean", "country_associated": "fr", "authorized_access_point": "Hentzgen, Jean, 1952-....", "biographical_information": ["Auteur d'une thèse en Histoire à Normandie en 2019"]} 1 -2023-07-08 08:22:30.841803 2023-07-08 08:22:30.841808 4df12b4e-d508-45f3-b9c4-32c152a32916 {"md5": "fd1ef781181c6729c8999e5c99584c13", "pid": "237801221", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/237801221", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/237801221", "source": "IDREF"}], "preferred_name": "Browarczyk, Monika", "authorized_access_point": "Browarczyk, Monika"} 1 -2023-07-08 08:22:30.96883 2023-07-08 08:22:30.968836 e230b3db-2f14-4e99-b60e-53a4a849a8f6 {"md5": "ae6814202b8dea481d00d7affd4e26c9", "pid": "237825457", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/237825457", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/237825457", "source": "IDREF"}], "preferred_name": "Avigdor, Eve-Laure", "country_associated": "fr", "authorized_access_point": "Avigdor, Eve-Laure", "biographical_information": ["Etudiante en 2004 à l'Université Paul Valéry Montpellier 3"]} 1 -2023-07-08 08:22:31.178191 2023-07-08 08:22:31.178205 2eef85ed-cf2b-4e23-bade-069f3e806db9 {"md5": "886df4a1b2f27347b54b1eeb9ae67d82", "pid": "23789615X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/23789615X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/23789615X", "source": "IDREF"}], "date_of_birth": "1993-10-27", "preferred_name": "Maghezzi, Leïla", "country_associated": "fr", "authorized_access_point": "Maghezzi, Leïla"} 1 -2023-07-08 08:22:32.435693 2023-07-08 08:22:32.435704 c278de54-e4c4-4f9f-8569-a8de574e57e3 {"md5": "fc1b872e1af4846670d41290dcb588bb", "pid": "240100786", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/240100786", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240100786", "source": "IDREF"}], "preferred_name": "International Forum of Educational Technology & Society", "authorized_access_point": "International Forum of Educational Technology & Society"} 1 -2023-07-08 08:22:30.376746 2023-07-08 10:30:42.85434 3c4825b6-56ae-441b-ab7c-87aaa0221567 {"md5": "f59615f839f8da7be0a919b874fdd228", "pid": "237634260", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/237634260", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/237634260", "source": "IDREF"}], "preferred_name": "Vizcaino Ruiz, Marta", "country_associated": "sp", "authorized_access_point": "Vizcaino Ruiz, Marta"} 2 -2023-07-08 08:22:31.383561 2023-07-08 08:22:31.383572 59dfc931-4eea-4d4a-899a-a3c0c847cba0 {"md5": "6822b26299a2e09fa8d16eefd8cf2cee", "pid": "238303845", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/238303845", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/238303845", "source": "IDREF"}], "variant_name": ["Маляков, Лев Иванович", "Maliakov, Lev Ivanovich"], "preferred_name": "Malâkov, Lev Ivanovič", "variant_access_point": ["Maliakov, Lev Ivanovich"], "authorized_access_point": "Malâkov, Lev Ivanovič"} 1 -2023-07-08 08:22:31.487629 2023-07-08 08:22:31.487645 54bc990c-76e8-4f7a-964f-c7e114d8b8f9 {"md5": "757dfc12eec21c2e0fed6c9f636d3efd", "pid": "23830566X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/23830566X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/23830566X", "source": "IDREF"}], "date_of_birth": "1988-09-10", "preferred_name": "Strubel, David", "country_associated": "fr", "authorized_access_point": "Strubel, David, 1988-....", "biographical_information": ["Auteur d'une thèse en Instrumentation et informatique de l'image à Bourgogne Franche-Comté en 2019"]} 1 -2023-07-08 08:22:31.621385 2023-07-08 08:22:31.621396 79d5026d-dd01-4451-afaf-97fe7009940c {"md5": "bcc5c74557b299d32c4e1b6f063d4d97", "pid": "238472345", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/238472345", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/238472345", "source": "IDREF"}], "preferred_name": "Xardel, N.", "country_associated": "fr", "authorized_access_point": "Xardel, N.", "biographical_information": ["Économiste"]} 1 -2023-07-08 08:22:31.711078 2023-07-08 08:22:31.711084 639d44c5-320f-42a6-9fae-500c6fab02c5 {"md5": "e9fdd7ffd18acc4be277174247e3561b", "pid": "238526852", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/238526852", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/238526852", "source": "IDREF"}], "date_of_birth": "1995-10-31", "preferred_name": "Zajaczkowski, Sophie", "country_associated": "fr", "authorized_access_point": "Zajaczkowski, Sophie"} 1 -2023-07-08 08:22:31.806233 2023-07-08 08:22:31.806244 2f9f5fd1-1dbc-4006-b9c6-d9773a132bb0 {"md5": "7d920bb6b487eae6cb798609c8cb9ada", "pid": "238572366", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/238572366", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/238572366", "source": "IDREF"}], "preferred_name": "Fortunel, Claire", "country_associated": "fr", "authorized_access_point": "Fortunel, Claire", "biographical_information": ["Chargée de recherches à l'IRD en 2018 (Guyane)"]} 1 -2023-07-08 08:22:31.912242 2023-07-08 08:22:31.912256 9821d964-0b66-4039-8987-93b42280f788 {"md5": "16350ac78e8c15f268268e861a9f177e", "pid": "238704750", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/238704750", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/238704750", "source": "IDREF"}], "preferred_name": "Renaud, Jean-Sébastien", "country_associated": "xxc", "authorized_access_point": "Renaud, Jean-Sébastien", "biographical_information": ["Professeur en mesure et évaluation au Département de médecine familiale et de médecine d'urgence de l'Université de Laval"]} 1 -2023-07-08 08:22:31.999688 2023-07-08 08:22:31.999695 4d2c63f9-8659-4016-a8ce-ee559a952421 {"md5": "730c5d9a769e95c417d18fc71895d2da", "pid": "238709906", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "poète", "identifier": "http://www.idref.fr/238709906", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/238709906", "source": "IDREF"}], "variant_name": ["El Raby"], "preferred_name": "Diouf, Ousmane El Raby, poète", "country_associated": "sg", "variant_access_point": ["El Raby"], "authorized_access_point": "Diouf, Ousmane El Raby, poète", "biographical_information": ["Poète"]} 1 -2023-07-08 08:22:32.230448 2023-07-08 08:22:32.230462 e0a44da4-8282-4819-ac12-538146c055b2 {"md5": "aa95dd4f3ff7b2e4058b5a8b56b70d5b", "pid": "238721892", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/238721892", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/238721892", "source": "IDREF"}], "date_of_birth": "1995-11-22", "preferred_name": "Fabie, Marie", "country_associated": "fr", "authorized_access_point": "Fabie, Marie, 1995-....", "biographical_information": ["Auteur d'un mémoire d'orthoptie soutenu à Lyon 1"]} 1 -2023-07-08 08:22:32.329175 2023-07-08 08:22:32.32919 b2426182-0625-4793-b1d7-c28ac9221a50 {"md5": "fd839ec71c5e829a9582c49a6a4623f9", "pid": "240085930", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/240085930", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240085930", "source": "IDREF"}], "preferred_name": "Hess, Friedrich", "authorized_access_point": "Hess, Friedrich"} 1 -2023-07-08 08:22:32.535296 2023-07-08 08:22:32.53532 cac6d4f8-f904-476a-a8cc-f718f0a5a44b {"md5": "829e1246d0e8d125677058f9bdb35da1", "pid": "240195523", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/240195523", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240195523", "source": "IDREF"}], "preferred_name": "Tollier, Marie-Thérèse", "authorized_access_point": "Tollier, Marie-Thérèse"} 1 -2023-07-08 08:22:31.26506 2023-07-08 10:27:07.286294 a67c7e13-2ed5-4e96-9647-659dacd82d3d {"md5": "9ce2c4d380a4c77167e209914728b84e", "pid": "238282694", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "comte de", "identifier": "http://www.idref.fr/238282694", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/238282694", "source": "IDREF"}], "date_of_birth": "1732", "date_of_death": "1808", "preferred_name": "La Roque-Mons, Jean-François, comte de", "country_associated": "fr", "authorized_access_point": "La Roque-Mons, Jean-François, 1732-1808, comte de", "biographical_information": ["Député de la noblesse de Périgueux"]} 2 -2023-07-08 08:22:32.849041 2023-07-08 08:22:32.849047 4132a4dc-78ee-4d65-bd5c-152e8331dc2a {"md5": "d8b206b5752e59c7074ca34ca403dbd9", "pid": "240280539", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/240280539", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240280539", "source": "IDREF"}], "preferred_name": "Henry, Lorène", "country_associated": "fr", "authorized_access_point": "Henry, Lorène", "biographical_information": ["Etudiante en 2012 à l'Université Paul Valéry Montpellier 3"]} 1 -2023-07-08 08:22:33.038436 2023-07-08 08:22:33.038446 c0c005b8-38f1-4d4a-af03-8f84e7ff3be2 {"md5": "692c927111515e71cdb8f8a717785530", "pid": "240401891", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/240401891", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240401891", "source": "IDREF"}], "date_of_birth": "1992-03-15", "preferred_name": "Caigny, Arno de", "country_associated": "be", "authorized_access_point": "Caigny, Arno de, 1992-....", "biographical_information": ["Titulaire d'un doctorat en Science économique (Université de Lille, 2019)"]} 1 -2023-07-08 08:22:33.133313 2023-07-08 08:22:33.133324 a49828d1-fc49-481f-84df-130ef93e877c {"md5": "da67740d6563d54119c1219b4d1de80d", "pid": "240413741", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/240413741", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240413741", "source": "IDREF"}], "preferred_name": "Dorian, Diego", "authorized_access_point": "Dorian, Diego"} 1 -2023-07-08 08:22:33.23486 2023-07-08 08:22:33.234874 1f5c766d-fc20-4162-b667-1b37064c2108 {"md5": "985b35939445ca67600947687cc7e285", "pid": "240416082", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/240416082", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240416082", "source": "IDREF"}], "preferred_name": "Omawari, Keiko", "country_associated": "fr", "authorized_access_point": "Omawari, Keiko", "biographical_information": ["Etudiante en 2012 à l'Université Paul Valéry Montpellier 3"]} 1 -2023-07-08 08:22:33.333142 2023-07-08 08:22:33.33315 225730f2-ded9-4cee-b492-e2c9acc5ce71 {"md5": "0aa25d6dd7ac4c517f94524902e41cd8", "pid": "240441516", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/240441516", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240441516", "source": "IDREF"}], "variant_name": ["Salau, Mohammed Bashir"], "date_of_birth": "1966-06-02", "preferred_name": "Bashir Salau, Mohammed", "country_associated": "xx", "variant_access_point": ["Salau, Mohammed Bashir"], "authorized_access_point": "Bashir Salau, Mohammed, 1966-....", "biographical_information": ["Maître de conférence en histoire à l'Université de Mississippi (en 2018)"]} 1 -2023-07-08 08:22:33.430574 2023-07-08 08:22:33.430583 71ea8f0b-4b4a-4e18-be48-bfb070a2847c {"md5": "b3ae71a79d7274acfbcce05df4dfb50e", "pid": "240465067", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "heb"], "conference": false, "identifier": "http://www.idref.fr/240465067", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240465067", "source": "IDREF"}], "variant_name": ["Brith shalom society (Palestine)", "Peace association (Palestine)"], "preferred_name": "Berit shalom (Palestine)", "date_of_termination": "193.", "variant_access_point": ["Brith shalom society (Palestine)", "Peace association (Palestine)"], "date_of_establishment": "1925", "parallel_access_point": ["Briyt šalwm (Palestine)", "Briyt šalwm (Pilasṭiyn)", "ברית שלום (פלסטין)"], "authorized_access_point": "Berit shalom (Palestine)", "biographical_information": ["Société fondée en 1925 à Jérusalem et dirigée par Arthur Ruppin pour favoriser les relations amicales entre les Juifs et les Arabes en étudiant le conflit judéo-arabe et en essayant de trouver des arrangements juridiques dans leurs relations", "Adresse : Jérusalem"]} 1 -2023-07-08 08:22:33.535933 2023-07-08 08:22:33.535943 73e934eb-3183-4451-abbc-9017b56eb77e {"md5": "8afc452258c81f2cc488c390cfd78e72", "pid": "240522737", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/240522737", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240522737", "source": "IDREF"}], "preferred_name": "Lefèvre, Laëtitia", "country_associated": "fr", "authorized_access_point": "Lefèvre, Laëtitia", "biographical_information": ["Professeure agrégée de SVT"]} 1 -2023-07-08 08:22:33.635572 2023-07-08 08:22:33.635585 d10b3d84-0a2a-4df7-ae7c-ad6eb6ab79e8 {"md5": "c3ced25b3c916ea5dbeab0812d3d8155", "pid": "240554868", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["srp"], "identifier": "http://www.idref.fr/240554868", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240554868", "source": "IDREF"}], "variant_name": ["Глигоријевић, Милан"], "date_of_birth": "1951", "preferred_name": "Gligorijević, Milan", "variant_access_point": ["Глигоријевић, Милан, 1951-...."], "authorized_access_point": "Gligorijević, Milan, 1951-...."} 1 -2023-07-08 08:22:43.054141 2023-07-08 08:22:43.054154 b0e40f34-debb-4cfc-8be7-9aab09206d38 {"md5": "ad8233bfa050bcde80082b31476b8732", "pid": "243577583", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/243577583", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243577583", "source": "IDREF"}], "preferred_name": "Aller, Jésus", "authorized_access_point": "Aller, Jésus"} 1 -2023-07-08 08:22:33.731646 2023-07-08 08:22:33.731654 ecb7e6be-6e90-43a7-9d5c-dec0fab914ac {"md5": "31ef430796b93cc201c6fbcc255c3bf3", "pid": "240646339", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/240646339", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240646339", "source": "IDREF"}], "date_of_birth": "1956", "preferred_name": "Heitz, Claude", "country_associated": "fr", "authorized_access_point": "Heitz, Claude, 1956-....", "biographical_information": ["Né à Strasbourg le 04.09.1956. Historien de l'Alsace et photographe"]} 1 -2023-07-08 08:22:34.225018 2023-07-08 08:22:34.225031 80cc6958-4324-4e65-9397-ffaa9a716bfe {"md5": "daa0121641dde4a9fd4ae4ce78618d1c", "pid": "240863062", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "professeur d'histoire géographie", "identifier": "http://www.idref.fr/240863062", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240863062", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Gomès, José, professeur d'histoire géographie", "country_associated": "fr", "authorized_access_point": "Gomès, José, 19..-...., professeur d'histoire géographie", "biographical_information": ["Professeur certifié d'histoire-géographie, certifié DNL (discipline non linguistique) histoire-géographie en espagnol, enseignant en Bachibac (section binationale français / espagnol)"]} 1 -2023-07-08 08:22:34.343579 2023-07-08 08:22:34.343594 f5786bc3-ab0a-4ca8-a15a-c427b8aaf0a1 {"md5": "99b2edcc25821dc38af0c0c9698f9dc1", "pid": "240922344", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["srp"], "identifier": "http://www.idref.fr/240922344", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240922344", "source": "IDREF"}], "variant_name": ["Вуковић, Валентина"], "date_of_birth": "1975", "preferred_name": "Vuković, Valentina", "variant_access_point": ["Вуковић, Валентина, 1975-...."], "authorized_access_point": "Vuković, Valentina, 1975-....", "biographical_information": ["Historienne de l'art"]} 1 -2023-07-08 08:22:34.452239 2023-07-08 08:22:34.45225 f318768f-c0ab-4ca4-bde1-a0f3c8003dc2 {"md5": "c53e9e41c5c998f853f9a2d0893f8ee9", "pid": "240936094", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/240936094", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240936094", "source": "IDREF"}], "preferred_name": "Lissom, Justin", "country_associated": "fr", "authorized_access_point": "Lissom, Justin"} 1 -2023-07-08 08:22:34.593194 2023-07-08 08:22:34.593205 8fdf6657-29f7-42ea-a711-aa0a87a171eb {"md5": "a37a38abd8347e293aa50e13160f03da", "pid": "240965280", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger", "chi"], "identifier": "http://www.idref.fr/240965280", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240965280", "source": "IDREF"}], "date_of_birth": "1976", "preferred_name": "Meyer, Florian Kaǧan", "country_associated": "gw", "authorized_access_point": "Meyer, Florian Kaǧan, 1976-....", "biographical_information": ["A étudié la sinologie, les sciences de la communication et le coréen à l'université libre de Berlin (Freie Universität Berlin) et le chinois à l'université de Pékin. Il a enseigné le chinois moderne à l'Université de la Ruhr à Bochum (Ruhr-Universität Bochum, RUB), Allemagne."]} 1 -2023-07-08 08:22:34.720982 2023-07-08 08:22:34.720995 3f12ea5a-12df-419e-a17d-508e1a5fea56 {"md5": "bdd4eaec25d9c19b424a6f52b8f90d02", "pid": "240984374", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut", "eng"], "identifier": "http://www.idref.fr/240984374", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240984374", "source": "IDREF"}], "preferred_name": "Moran, Sarah Joan", "country_associated": "ne", "authorized_access_point": "Moran, Sarah Joan", "biographical_information": ["Professeur d'histoire de l'art"]} 1 -2023-07-08 08:22:34.982159 2023-07-08 08:22:34.982169 b8119f1c-6613-400d-a993-c7ec4673094a {"md5": "e6b5ce3e1451be0c457ad3d7a44f46cc", "pid": "241130921", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/241130921", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/241130921", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Martin, Chris William", "country_associated": "xxc", "authorized_access_point": "Martin, Chris William, 19..-....", "biographical_information": ["Professeur de sciences sociales à l'Algonquin College, Canada (2019)"]} 1 -2023-07-08 08:22:33.829152 2023-07-08 10:24:34.95958 6cc1bd93-b820-4124-b1e3-4e4bb4baad6b {"md5": "82a325041645ca45d19bf1ec560e65be", "pid": "240748069", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["nor"], "identifier": "http://www.idref.fr/240748069", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240748069", "source": "IDREF"}], "preferred_name": "Lavold, Bente", "country_associated": "no", "authorized_access_point": "Lavold, Bente", "biographical_information": ["Etudes d'histoire et de philosophie. Travaille à la Nationalbiblioteket Oslo en 2017"]} 2 -2023-07-08 08:22:33.964958 2023-07-08 10:28:19.776099 f9fca512-72b5-47d3-9757-f8f400a21db1 {"md5": "7971aade1b48ee863c36efcc4c978efd", "pid": "240816773", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/240816773", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240816773", "source": "IDREF"}], "preferred_name": "Lovec, Marko", "country_associated": "xv", "authorized_access_point": "Lovec, Marko"} 2 -2023-07-08 08:22:34.102443 2023-07-08 10:31:44.862012 ff9a68c5-93f5-4cb0-b102-6a6c0b217f94 {"md5": "83d1f729750c35c2b85592e3db648c37", "pid": "240825187", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/240825187", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240825187", "source": "IDREF"}], "preferred_name": "Leboucher, Caroline", "country_associated": "fr", "authorized_access_point": "Leboucher, Caroline", "biographical_information": ["Directrice générale d'Atout France (Agence de Développement Touristique de la France)"]} 2 -2023-07-08 08:22:35.222502 2023-07-08 08:22:35.222515 1994cb94-b595-4054-a53e-6655191c4f81 {"md5": "c0ae194d82af37d1b2128cbb68962848", "pid": "241297230", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/241297230", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/241297230", "source": "IDREF"}], "date_of_birth": "1988-12-06", "preferred_name": "Bourgeois, Laurent", "country_associated": "fr", "authorized_access_point": "Bourgeois, Laurent, 1988-....", "biographical_information": ["Danseur de hip-hop et acteur français"]} 1 -2023-07-08 08:22:35.468494 2023-07-08 08:22:35.4685 5b426bea-739e-4de9-9ca8-394a75ca77c5 {"md5": "2b13d1bb5689982e08b8762b02e60248", "pid": "241428017", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/241428017", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/241428017", "source": "IDREF"}], "preferred_name": "Dejouy, Marie", "country_associated": "fr", "authorized_access_point": "Dejouy, Marie", "biographical_information": ["Auteur d'un master 1 Métiers de l'enseignement, de l'éducation et de la formation (MEEF), 1er degré. Professeur des écoles, à l'Université de Franche-Comté, en 2018"]} 1 -2023-07-08 08:22:35.582571 2023-07-08 08:22:35.582583 6b6ff44c-3025-44cb-b534-24bc0a3c0f9e {"md5": "edd46a6ae115eaa3dceb69f912107585", "pid": "241442567", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "identifier": "http://www.idref.fr/241442567", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/241442567", "source": "IDREF"}], "variant_name": ["Silva, Antônio Álvares da"], "preferred_name": "Álvares da Silva, Antônio", "country_associated": "bl", "variant_access_point": ["Silva, Antônio Álvares da"], "authorized_access_point": "Álvares da Silva, Antônio", "biographical_information": ["Juriste"]} 1 -2023-07-08 08:22:35.706224 2023-07-08 08:22:35.706234 5210a15a-8482-429c-829a-2be5aa4261fd {"md5": "a408cb0e8cdc89934575ffa672030fd4", "pid": "241463548", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/241463548", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/241463548", "source": "IDREF"}], "preferred_name": "Hughes, Gordon", "country_associated": "xxk", "authorized_access_point": "Hughes, Gordon", "biographical_information": ["Juriste. Chaire de criminologie à l'Université de Cardiff (en 2018)"]} 1 -2023-07-08 08:22:35.8128 2023-07-08 08:22:35.812814 5918d9e2-cf54-433e-8fb5-42dc28804a29 {"md5": "ede785a4b46cd1e2ea78dcfef266e0de", "pid": "241506662", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/241506662", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/241506662", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Apikian, Cédric", "country_associated": "fr", "authorized_access_point": "Apikian, Cédric, 19..-....", "biographical_information": ["Scénariste de bandes dessinées"]} 1 -2023-07-08 08:22:36.196285 2023-07-08 08:22:36.196292 4ef63bde-97d3-45e7-9eca-2ae46cb8f3a9 {"md5": "a04072d7a9f7ab299a0332ecc1078c2e", "pid": "241542162", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifier": "http://www.idref.fr/241542162", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/241542162", "source": "IDREF"}], "preferred_name": "Lie superalgebras", "country_associated": "it", "date_of_termination": "2012-12-19", "date_of_establishment": "2012-12-14", "authorized_access_point": "Lie superalgebras (2012 ; Rome)"} 1 -2023-07-08 08:22:43.173295 2023-07-08 08:22:43.173308 c59e5862-5404-444c-a4c5-69bc9c5bf0bc {"md5": "903899b63e821c3e4b62b8ea97276891", "pid": "243578482", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/243578482", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243578482", "source": "IDREF"}], "preferred_name": "Abonnat Ruggeri, Elise", "authorized_access_point": "Abonnat Ruggeri, Elise"} 1 -2023-07-08 08:22:35.938483 2023-07-08 10:26:59.75898 de8f2c07-48e4-467a-a325-50517946278b {"md5": "0d755526181cd6cab083c1d712a91024", "pid": "241515033", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/241515033", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/241515033", "source": "IDREF"}], "preferred_name": "Guilloux, Sylvie", "country_associated": "fr", "authorized_access_point": "Guilloux, Sylvie", "biographical_information": ["Titulaire d'une thèse d'exercice en Chirurgie dentaire (Rennes : 1981)"]} 2 -2023-07-08 08:22:36.313872 2023-07-08 10:29:44.684079 f89b8fef-db68-4782-8a0e-f40d60044f39 {"md5": "2142e65bf84305b5c96f6fba59a0a80a", "pid": "241568137", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/241568137", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/241568137", "source": "IDREF"}], "date_of_birth": "1991-03-11", "preferred_name": "Tierny, Alix", "country_associated": "fr", "authorized_access_point": "Tierny, Alix, 1991-...."} 2 -2023-07-08 08:22:36.067463 2023-07-08 10:31:23.271771 1e7ee7e2-8a0c-4d9e-a528-e1266f91f846 {"md5": "10a5b4045feec881c1b06faa027a39df", "pid": "241527104", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/241527104", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/241527104", "source": "IDREF"}], "preferred_name": "Cordier, Pauline", "country_associated": "fr", "authorized_access_point": "Cordier, Pauline", "biographical_information": ["Docteur en pharmacie. Thèse soutenue à Strasbourg le 15 novembre 2019"]} 2 -2023-07-08 08:22:36.43141 2023-07-08 08:22:36.431421 6655455b-fea4-4189-bc90-6eeef3ee7449 {"md5": "792858df36eb1ec7f3b678b2b42746d5", "pid": "24157899X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/24157899X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/24157899X", "source": "IDREF"}], "preferred_name": "Metzger, Othmar", "country_associated": "gw", "authorized_access_point": "Metzger, Othmar", "biographical_information": ["Historien de l'art"]} 1 -2023-07-08 08:22:36.760514 2023-07-08 08:22:36.760525 4907b03f-cb05-4f55-98a0-a89f16f20a50 {"md5": "66134586e0cb3fd7591d7a7d5561e0f1", "pid": "241765528", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/241765528", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/241765528", "source": "IDREF"}], "preferred_name": "Unanue, Ander", "country_associated": "fr", "authorized_access_point": "Unanue, Ander", "biographical_information": ["Docteur ès sciences physiques de l'université de Bordeaux en 1965"]} 1 -2023-07-08 08:22:36.877339 2023-07-08 08:22:36.877351 06f8e9d1-ff7d-4bfe-a19a-93c2b5c92b4f {"md5": "2cf61f5729dffa597ee545405760d1e2", "pid": "241771188", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/241771188", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/241771188", "source": "IDREF"}], "preferred_name": "Esfahani, Reza", "country_associated": "fr", "authorized_access_point": "Esfahani, Reza", "biographical_information": ["Docteur ès sciences de l'université de Bordeaux en 1966"]} 1 -2023-07-08 08:22:36.997996 2023-07-08 08:22:36.998004 c72b5b50-c80e-4e1d-aa31-7a650dd5b838 {"md5": "088b200fe00dac7b9ff7698d45a9bdfd", "pid": "24185055X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/24185055X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/24185055X", "source": "IDREF"}], "date_of_birth": "1989-08-19", "preferred_name": "Gay, Marie", "country_associated": "fr", "authorized_access_point": "Gay, Marie, 1989-....", "biographical_information": ["Docteur en médecine (en 2019)"]} 1 -2023-07-08 08:22:37.127181 2023-07-08 08:22:37.127198 4f906f10-2f9b-4868-b03d-b02c91c4d2d8 {"md5": "28c7556b6c9e037e9aaee8e2de302532", "pid": "241923018", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/241923018", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/241923018", "source": "IDREF"}], "preferred_name": "El-Khoury, Ghazi Boulos", "authorized_access_point": "El-Khoury, Ghazi Boulos"} 1 -2023-07-08 08:22:37.238479 2023-07-08 08:22:37.238491 55be52d4-27ee-41a1-ad36-75a3f6792bda {"md5": "f749797bfbe2d17f938107f1c907f5a3", "pid": "241957176", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "identifier": "http://www.idref.fr/241957176", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/241957176", "source": "IDREF"}], "variant_name": ["植村, 玉枝子"], "preferred_name": "Uemura, Gyokushishi", "country_associated": "ja", "variant_access_point": ["植村, 玉枝子"], "authorized_access_point": "Uemura, Gyokushishi", "biographical_information": ["Transcription Hepburn modifié", "Actif à la fin de la période Edo et au début de l'ère Meiji"]} 1 -2023-07-08 08:22:37.592284 2023-07-08 10:25:44.276135 d9e132a7-ed42-4726-afb6-ff1f433de8b6 {"md5": "72a59c2c72694c2176a9cd131aa7b6e7", "pid": "242274455", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/242274455", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/242274455", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Baltzer, Théo", "country_associated": "fr", "authorized_access_point": "Baltzer, Théo, 19..-....", "biographical_information": ["Auteur d’un mémoire de Master de Contrôle de Gestion, soutenu à l'Université de Strasbourg en 2019"]} 2 -2023-07-08 08:22:36.654714 2023-07-08 10:26:19.530289 2f547e67-c586-4dda-94a8-20e7835dd288 {"md5": "68cc8b61d269ad0bd743099a3c799b93", "pid": "24172726X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/24172726X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/24172726X", "source": "IDREF"}], "date_of_birth": "18XX", "date_of_death": "19..", "preferred_name": "Guillochon, R.", "country_associated": "fr", "authorized_access_point": "Guillochon, R., 18..-....", "biographical_information": ["Ingénieur agronome, inspecteur adjoint à la caisse nationale de crédit agricole"]} 2 -2023-07-08 08:22:37.705902 2023-07-08 10:26:39.907222 36397e72-ba38-467b-9c43-ca87be0eb6aa {"md5": "566dc68bbc250dc0e5fd5af2e9c18255", "pid": "242293557", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/242293557", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/242293557", "source": "IDREF"}], "preferred_name": "Goepogui, Serge Moriba", "country_associated": "fr", "authorized_access_point": "Goepogui, Serge Moriba", "biographical_information": ["Titulaire d'un master 1 Sciences du langage, spécialité Analyse du discours, à Besançon, Université de Franche-Comté, en 2019"]} 2 -2023-07-08 08:22:37.350093 2023-07-08 10:28:16.547419 b6035927-ed4e-4f43-baf6-cdf8afa302cc {"md5": "0f2d3041234e648bf328e85eee1d6959", "pid": "242007481", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/242007481", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/242007481", "source": "IDREF"}], "preferred_name": "Lindblad, Waldemar", "country_associated": "fi", "authorized_access_point": "Lindblad, Waldemar"} 2 -2023-07-08 08:22:37.469567 2023-07-08 10:28:22.49234 787ce18a-59e8-406a-bb36-3eb0c66a20d3 {"md5": "7b4f68696def76edff9ce92c8a87de35", "pid": "242143814", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/242143814", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/242143814", "source": "IDREF"}], "preferred_name": "Murphy, James P.", "authorized_access_point": "Murphy, James P."} 2 -2023-07-08 08:22:37.821412 2023-07-08 08:22:37.821422 22edc808-63d8-4afa-b5f2-57b76b7d753f {"md5": "5d913f1f967217f09e7754730da5595d", "pid": "242323375", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/242323375", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/242323375", "source": "IDREF"}], "variant_name": ["Aquascop biologie", "Aquascop pôle technologique"], "preferred_name": "Aquascop", "country_associated": "fr", "variant_access_point": ["Aquascop biologie", "Aquascop pôle technologique"], "authorized_access_point": "Aquascop"} 1 -2023-07-08 08:22:37.931582 2023-07-08 08:22:37.931592 bcaa5d31-53a3-4101-a74f-c0488dfa347a {"md5": "98ee31237b090ecf602f866891e5db99", "pid": "242335608", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifier": "http://www.idref.fr/242335608", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/242335608", "source": "IDREF"}], "preferred_name": "Birmingham city university (Angleterre)", "country_associated": "xxk", "authorized_access_point": "Birmingham city university (Angleterre)"} 1 -2023-07-08 08:22:38.026199 2023-07-08 08:22:38.026213 b3f6dd32-64f1-48f5-978f-8149a13cd128 {"md5": "cb5ab2552b9facccf4fa35e805583486", "pid": "242414826", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/242414826", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/242414826", "source": "IDREF"}], "date_of_birth": "1985", "preferred_name": "Tracqui, Hitivai", "country_associated": "fp", "authorized_access_point": "Tracqui, Hitivai", "biographical_information": ["auteure"]} 1 -2023-07-08 08:22:38.13056 2023-07-08 08:22:38.130576 bc974d01-3efc-4969-9217-a269087718ad {"md5": "26d2391ffe36a8469c2d06822b541060", "pid": "242426832", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/242426832", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/242426832", "source": "IDREF"}], "preferred_name": "Etchart, Pierre", "country_associated": "fr", "authorized_access_point": "Etchart, Pierre", "biographical_information": ["Est psychologue et psychanalyste équipe AES et formateur sur les maltraitances sexuelles."]} 1 -2023-07-08 08:22:38.244454 2023-07-08 08:22:38.244468 b1daae8a-74fe-4598-b2d5-704991abb3db {"md5": "40147b406ed87cd21027eb11a919b0f8", "pid": "242433995", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/242433995", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/242433995", "source": "IDREF"}], "preferred_name": "Bernstein, Georges", "country_associated": "fr", "authorized_access_point": "Bernstein, Georges", "biographical_information": ["Docteur en médecine. Thèse d'exercice soutenue à la faculté de médecine de l'Université d'Aix-Marseille 2 en 1973"]} 1 -2023-07-08 08:22:38.353613 2023-07-08 08:22:38.353627 23f13582-6e34-4e0b-83cc-a9dccf9a6e3c {"md5": "86626ac82fed6ae202d6f22ded513114", "pid": "242448771", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/242448771", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/242448771", "source": "IDREF"}], "preferred_name": "Surfacedesign", "country_associated": "xxu", "authorized_access_point": "Surfacedesign", "biographical_information": ["Agence d'architecture du paysage"]} 1 -2023-07-08 08:22:38.46944 2023-07-08 08:22:38.469452 caf45696-b4f0-48d9-961f-10aa5f3a20b2 {"md5": "1cad4cc4965fedab3a9e5ddb13dd2ca0", "pid": "242451098", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/242451098", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/242451098", "source": "IDREF"}], "preferred_name": "Mossé, Marie", "country_associated": "fr", "authorized_access_point": "Mossé, Marie", "biographical_information": ["Doctorante en littératures comparées à l'université de Lorraine et à l'université du Québec à Montréal"]} 1 -2023-07-08 08:22:38.69864 2023-07-08 08:22:38.698651 1f991607-ab4c-485a-be1a-0527087f854f {"md5": "2d3563ae50750f99968ac9dbe16518d7", "pid": "242518664", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/242518664", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/242518664", "source": "IDREF"}], "date_of_birth": "969", "preferred_name": "Artun, Ömer", "authorized_access_point": "Artun, Ömer, 969-", "biographical_information": ["Fondateur de AgilOne."]} 1 -2023-07-08 08:22:38.788893 2023-07-08 08:22:38.788904 d99260d4-7c10-43fd-b6f9-0adb4586846b {"md5": "21b17fb407f12036e6bb6f2b366643ea", "pid": "242542948", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/242542948", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/242542948", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Macalou, Mamadou", "country_associated": "ml", "authorized_access_point": "Macalou, Mamadou, 19..-....", "biographical_information": ["Directeur de Pyramide business consulting, société de conseil (en 2019)"]} 1 -2023-07-08 08:22:38.90623 2023-07-08 08:22:38.906245 f3ff0932-cd4d-4603-b764-c810b79b21e5 {"md5": "cb4741f63feac13113a0a334eee2e88d", "pid": "242557139", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "auteur d'une thèse en informatique", "identifier": "http://www.idref.fr/242557139", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/242557139", "source": "IDREF"}], "date_of_birth": "1991-07-20", "preferred_name": "Duval, Sébastien, auteur d'une thèse en informatique", "country_associated": "fr", "authorized_access_point": "Duval, Sébastien, 1991-...., auteur d'une thèse en informatique", "biographical_information": ["Auteur d'une thèse en Informatique soutenue à Sorbonne université, Paris, en 2018"]} 1 -2023-07-08 08:22:39.120513 2023-07-08 08:22:39.120524 0b94254c-d436-4693-b5c4-da5ec7b784cd {"md5": "d279214c41737ca00fc6da2c43640c65", "pid": "242740065", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/242740065", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/242740065", "source": "IDREF"}], "preferred_name": "Simon, Blaise", "country_associated": "fr", "authorized_access_point": "Simon, Blaise", "biographical_information": ["Illustrateur de livres pour enfants"]} 1 -2023-07-08 08:22:39.22912 2023-07-08 08:22:39.229132 8e03d8ab-f5eb-485b-b55f-aa121539a927 {"md5": "ea71c6d513b3603bcada28b03eb28bc9", "pid": "242756220", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/242756220", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/242756220", "source": "IDREF"}], "preferred_name": "Saddy, Claire", "authorized_access_point": "Saddy, Claire", "biographical_information": ["Formatrice à l'ENA, au CNFPT et à l'INSET, elle accompagne les collectivités territoriales, ministères et groupes privés. Elle est maire adjointe du 7è arrondissement de Lyon, en charge de l'entrepreneuriat et de l'économie. En 2017, elle a reçu la médaille du Mérite pour ses engagements associatifs"]} 1 -2023-07-08 08:22:39.349726 2023-07-08 08:22:39.349737 43c6764d-85ba-4715-9766-3ec0afb1a7d4 {"md5": "a5a84590ac145bd2db8305b97037435f", "pid": "242866441", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ara"], "identifier": "http://www.idref.fr/242866441", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/242866441", "source": "IDREF"}], "date_of_birth": "1985-06-24", "preferred_name": "Ghoudi, Hamza", "country_associated": "ti", "authorized_access_point": "Ghoudi, Hamza, 1985-....", "biographical_information": ["Docteur en Sciences, spécialité Mathématiques (Toulon/Sfax, Laboratoire CPT, 2019)"]} 1 -2023-07-08 08:22:39.56645 2023-07-08 08:22:39.566457 b2d316ab-2fdf-4b92-ba62-7f4a30cf5503 {"md5": "29bcf257f4ff6e8565d4a3180dcb7cc4", "pid": "243004028", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/243004028", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243004028", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Benarroch, Elie", "country_associated": "fr", "authorized_access_point": "Benarroch, Elie, 19..-....", "biographical_information": ["Auteur d'un mémoire de 3ème cycle. : Histoire : Université Provence : 1984"]} 1 -2023-07-08 08:22:39.683826 2023-07-08 08:22:39.683835 32a041be-15e1-4de9-ba91-82e632655787 {"md5": "bb44d3a2d0008f30a80930b3178b7c26", "pid": "243016271", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/243016271", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243016271", "source": "IDREF"}], "preferred_name": "Bejarano Beltran, Carmen Ofelia", "country_associated": "fr", "authorized_access_point": "Bejarano Beltran, Carmen Ofelia", "biographical_information": ["auteur d'une thèse d'état en psychologie de l’université de Bordeaux en 1967"]} 1 -2023-07-08 08:22:39.794094 2023-07-08 08:22:39.794107 776efc9c-6ac0-4183-82db-b162fea2f745 {"md5": "0aee1d302b70759e7973c2b0cee22906", "pid": "243031599", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "ita"], "identifier": "http://www.idref.fr/243031599", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243031599", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Laio, Alessandro", "country_associated": "it", "authorized_access_point": "Laio, Alessandro, 19..-....", "biographical_information": ["Professeur de Physique Biologique et Statistique à l'International School for Advanced Studies (SISSA), Italie, en 2018", "Rapporteur d'une thèse en Informatique soutenue à Sorbonne université en 2018"]} 1 -2023-07-08 08:22:39.896866 2023-07-08 08:22:39.896881 f2d72752-a8dc-41f1-bd5b-2de6f84a8c70 {"md5": "eaff1f8e7e601ff87066b749444ccc26", "pid": "243035411", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/243035411", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243035411", "source": "IDREF"}], "preferred_name": "Bridoux, Maxime", "country_associated": "fr", "authorized_access_point": "Bridoux, Maxime", "biographical_information": ["Ingénieur-chercheur au CEA (Commissariat à l'énergie atomique et aux énergies alternatives) en 2018", "Membre du jury d'une thèse de Chimie soutenue à Sorbonne université en 2018"]} 1 -2023-07-08 08:22:39.989283 2023-07-08 08:22:39.989292 a3583301-8fc1-481c-a5b0-0943a0d6f6b5 {"md5": "b461017c8739d0410d99314e5e1cf14c", "pid": "243035632", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/243035632", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243035632", "source": "IDREF"}], "preferred_name": "Moulin, M. A.", "country_associated": "fr", "authorized_access_point": "Moulin, M. A."} 1 -2023-07-08 08:22:40.084922 2023-07-08 08:22:40.084928 295a9b8a-c05d-4582-a2de-ebe085d91c51 {"md5": "cf793241eb2bcf14065eac62dd3854f6", "pid": "243036620", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "neurochirurgien", "identifier": "http://www.idref.fr/243036620", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243036620", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Martin, Didier, neurochirurgien", "country_associated": "be", "authorized_access_point": "Martin, Didier, 19..-...., neurochirurgien", "biographical_information": ["Président du jury d'une thèse en Sciences de la vie et de la santé"]} 1 -2023-07-08 08:22:40.185229 2023-07-08 08:22:40.185243 befdc6a6-e050-4baf-b07c-209646ff08b9 {"md5": "b380786854df2500159f45b4d6aa217e", "pid": "243043619", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/243043619", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243043619", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Maeder, Marc", "country_associated": "fr", "authorized_access_point": "Maeder, Marc, 19XX -….", "biographical_information": ["Auteur d’un mémoire de Master de Conseiller Clientèle de Professionnels, soutenu à l'Université de Strasbourg en 2015"]} 1 -2023-07-08 08:22:40.411278 2023-07-08 08:22:40.411292 d4947e95-0e73-4f7b-8d85-8b94d3a87b6d {"md5": "151cdc5ba91542e5bcf5e298a6a34d4d", "pid": "243138016", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/243138016", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243138016", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Gerwig, Sébastien", "country_associated": "fr", "authorized_access_point": "Gerwig, Sébastien, 19XX -….", "biographical_information": ["Auteur d’un mémoire de Master de Comptabilité Contrôle Audit, soutenu à l'Université de Strasbourg en 2015"]} 1 -2023-07-08 08:22:40.518062 2023-07-08 08:22:40.518075 6ddb32ca-d64f-4030-bb5e-3496d7bfd217 {"md5": "c71db83830132c2bb156ded0d5eafb0b", "pid": "243154666", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/243154666", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243154666", "source": "IDREF"}], "date_of_birth": "1985-06-04", "preferred_name": "Atiezo, Megbeme Komla", "country_associated": "tg", "authorized_access_point": "Atiezo, Megbeme Komla, 1985-....", "biographical_information": ["Auteur d'une thèse en Mécanique des matériaux à l'Université de Lorraine en 2019"]} 1 -2023-07-08 08:22:40.628878 2023-07-08 08:22:40.628887 c515af93-f65a-41a7-b78c-9c22bbfd7729 {"md5": "d4c8cb18e622f22202010c3ac476166e", "pid": "243208294", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/243208294", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243208294", "source": "IDREF"}], "preferred_name": "Salcedo, Elisa", "authorized_access_point": "Salcedo, Elisa"} 1 -2023-07-08 08:22:40.735211 2023-07-08 08:22:40.735221 a4a0f5f0-5e73-4efd-a14f-a15658a7efb2 {"md5": "b78c54398540e4ce00afeda717e7d063", "pid": "243209983", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/243209983", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243209983", "source": "IDREF"}], "variant_name": ["Gustave, Guilhem Jacques-"], "date_of_birth": "1989-03-20", "preferred_name": "Jacques-Gustave, Guilhem", "country_associated": "fr", "variant_access_point": ["Gustave, Guilhem Jacques-"], "authorized_access_point": "Jacques-Gustave, Guilhem, 1989-...", "biographical_information": ["Auteur d'une thèse d'exercice en Pharmacie soutenue le 22 Novembre 2019"]} 1 -2023-07-08 08:22:40.84226 2023-07-08 08:22:40.842265 7c36d3f4-d229-4208-ac6c-b79e42a79f6d {"md5": "677bb24fa49c79abb25c3cd0f4167f6e", "pid": "243266413", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/243266413", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243266413", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Bou-Nouh, J. M.", "country_associated": "xx", "authorized_access_point": "Bou-Nouh, J. M., 19..-....", "biographical_information": ["Auteur"]} 1 -2023-07-08 08:22:40.931415 2023-07-08 08:22:40.931425 42e6777d-129b-4c21-b7a4-bf2eee12484c {"md5": "86afca48c8da2f616a5a4236cf6cf912", "pid": "243279795", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "swe"], "identifier": "http://www.idref.fr/243279795", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243279795", "source": "IDREF"}], "variant_name": ["Axelsson, V."], "date_of_birth": "1924", "preferred_name": "Axelsson, Valte", "country_associated": "xx", "variant_access_point": ["Axelsson, V."], "authorized_access_point": "Axelsson, Valte, 1924-...."} 1 -2023-07-08 08:22:41.034269 2023-07-08 08:22:41.034282 6ec91e0f-280d-43b6-8367-c341441c8afa {"md5": "74ab73602c59cf0f5884e9ced731b2df", "pid": "243300131", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/243300131", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243300131", "source": "IDREF"}], "preferred_name": "Voyle, Christine", "country_associated": "fr", "authorized_access_point": "Voyle, Christine", "biographical_information": ["Titulaire d'une thèse en Médecine (Lyon 1, 1983)"]} 1 -2023-07-08 08:22:41.142755 2023-07-08 08:22:41.142761 f5945596-38e0-4357-87c1-f879153274fe {"md5": "dbd84216337b6ea9fd5f5410453e9121", "pid": "243306032", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/243306032", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243306032", "source": "IDREF"}], "preferred_name": "Aubert, Hervey", "country_associated": "fr", "authorized_access_point": "Aubert, Hervey", "biographical_information": ["Docteur en médecine. Thèse d'exercice soutenue à la faculté de médecine de l'Université d'Aix-Marseille 2 en 1982"]} 1 -2023-07-08 08:22:41.253462 2023-07-08 08:22:41.253468 7d803523-a913-49f6-841f-9d7e03de9f71 {"md5": "0bbc94305261aae43c5f6ca92c7e8ac9", "pid": "243308442", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/243308442", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243308442", "source": "IDREF"}], "preferred_name": "Lestage, Colette", "country_associated": "fr", "authorized_access_point": "Lestage, Colette", "biographical_information": ["auteur d'un mémoire de maîtrise‎ en ethnologie‎ de l'université de Bordeaux 2‎ en 1998"]} 1 -2023-07-08 08:22:41.36757 2023-07-08 08:22:41.367582 c94fd385-02a6-4501-afc1-f573e06f4ef8 {"md5": "c5ddb5af73739030e9d5afba1d6b507b", "pid": "243327463", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/243327463", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243327463", "source": "IDREF"}], "variant_name": ["Regnard, Joannes"], "date_of_birth": "16XX", "date_of_death": "16XX", "preferred_name": "Regnard, Jean", "country_associated": "fr", "variant_access_point": ["Regnard, Joannes"], "authorized_access_point": "Regnard, Jean, 16..-16..", "biographical_information": ["Auteur"]} 1 -2023-07-08 08:22:41.470301 2023-07-08 08:22:41.470312 56de9ac4-7d5e-4aaf-9536-3f6183f19219 {"md5": "f42685c0775e7d336cd597e9be055992", "pid": "243330715", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/243330715", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243330715", "source": "IDREF"}], "preferred_name": "Odelin, Patrick", "country_associated": "fr", "authorized_access_point": "Odelin, Patrick", "biographical_information": ["Titulaire d'une thèse en Médecine (Lyon 1, 1983)"]} 1 -2023-07-08 08:22:41.568522 2023-07-08 08:22:41.568529 d98a1801-fa82-4d69-9378-8420e1337ab1 {"md5": "96c023bcfc5df6317c90767571c10f14", "pid": "243363796", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/243363796", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243363796", "source": "IDREF"}], "preferred_name": "Cianea, Guy", "country_associated": "fr", "authorized_access_point": "Cianea, Guy", "biographical_information": ["Docteur en médecine. Thèse d'exercice soutenue à la faculté de médecine de l'Université d'Aix-Marseille 2 en 1975"]} 1 -2023-07-08 08:22:41.65964 2023-07-08 08:22:41.659652 15ae2c6a-2721-4f67-a07d-76353805b40e {"md5": "37061d4541c061e1efcb52e23b0c3f07", "pid": "243370261", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["pol"], "identifier": "http://www.idref.fr/243370261", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243370261", "source": "IDREF"}], "preferred_name": "Martyniuk-Pęczek, Justyny", "authorized_access_point": "Martyniuk-Pęczek, Justyny"} 1 -2023-07-08 08:22:41.757568 2023-07-08 08:22:41.757577 fd9bce7d-244c-47a7-8d87-d35fb99702bd {"md5": "40533bf6b35c5d82f57655b5119eb566", "pid": "243382731", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/243382731", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243382731", "source": "IDREF"}], "preferred_name": "Koché (Paris)", "country_associated": "fr", "authorized_access_point": "Koché (Paris)"} 1 -2023-07-08 08:22:41.857964 2023-07-08 08:22:41.857976 d73864db-922f-4990-89c7-c6d077eec433 {"md5": "21729ba52a2e6c27f35c1250db08f942", "pid": "243407998", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/243407998", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243407998", "source": "IDREF"}], "date_of_birth": "1989-05-26", "preferred_name": "Bouty, Marion", "country_associated": "fr", "authorized_access_point": "Bouty, Marion, 1989-..."} 1 -2023-07-08 08:22:41.953352 2023-07-08 08:22:41.95336 dabf8ca5-bcad-4e2b-9f85-aed4e9eb239a {"md5": "ac8a49cc590a23f3e59cbc9a068da1dc", "pid": "243428421", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "identifier": "http://www.idref.fr/243428421", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243428421", "source": "IDREF"}], "preferred_name": "Cintrão, Rosângela", "authorized_access_point": "Cintrão, Rosângela"} 1 -2023-07-08 08:22:42.050507 2023-07-08 08:22:42.050518 1c5ed172-b724-46d6-9f07-cb3b13c0dbb5 {"md5": "086a66b3138ddb9c98ed891c332f22eb", "pid": "243433913", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/243433913", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243433913", "source": "IDREF"}], "preferred_name": "Formigaro, Fulvia", "authorized_access_point": "Formigaro, Fulvia"} 1 -2023-07-08 08:22:42.170454 2023-07-08 08:22:42.170464 889e7b06-ddfd-40ba-bcc8-02d1d9470b4d {"md5": "f14fd204865a48025b6752e76277ae47", "pid": "243488785", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/243488785", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243488785", "source": "IDREF"}], "date_of_birth": "17XX", "date_of_death": "18XX", "preferred_name": "Ségur, Octave", "authorized_access_point": "Ségur, Octave, 17..-....", "biographical_information": ["Ex-Elève de Polytechnique en 1803"]} 1 -2023-07-08 08:22:42.288749 2023-07-08 08:22:42.288759 5ac7e2dd-2ea8-4ce6-a6fe-7da74db1dc09 {"md5": "3a7071e06837579f263ef38085eebb29", "pid": "24348951X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/24348951X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/24348951X", "source": "IDREF"}], "date_of_birth": "1985-03-16", "preferred_name": "Laborde, Julio", "country_associated": "fr", "authorized_access_point": "Laborde, Julio, 1985-....", "biographical_information": ["Auteur d'une thèse en Informatique, statistiques et cognition à Paris Sciences et Lettres en 2019"]} 1 -2023-07-08 08:22:42.398119 2023-07-08 08:22:42.39813 378d8568-7683-4a21-b9c2-27077aa20141 {"md5": "21ec629cea785c405e22e8242cab6a07", "pid": "243512155", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/243512155", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243512155", "source": "IDREF"}], "preferred_name": "Sellem, Denis", "authorized_access_point": "Sellem, Denis"} 1 -2023-07-08 08:22:42.510928 2023-07-08 08:22:42.510941 1bbd8b18-1419-451d-b947-b5c3e46f72e8 {"md5": "4f6ee6e7a79f44ae2710e4892bac73c3", "pid": "243530080", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/243530080", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243530080", "source": "IDREF"}], "preferred_name": "Mehault, Olivier", "authorized_access_point": "Mehault, Olivier"} 1 -2023-07-08 08:22:42.629629 2023-07-08 08:22:42.629641 c38273f1-bbab-4a04-82ed-b935425f8d69 {"md5": "4c28e57682492f9d4c3227d82e455093", "pid": "243540434", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/243540434", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243540434", "source": "IDREF"}], "preferred_name": "Kanie, Akira", "authorized_access_point": "Kanie, Akira"} 1 -2023-07-08 08:22:42.734559 2023-07-08 08:22:42.734569 164f27c7-0547-4738-ad8c-a41ec23299c6 {"md5": "8c246a15a6545ea73fb572a453ed7724", "pid": "243554001", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/243554001", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243554001", "source": "IDREF"}], "preferred_name": "Escoda I Murria, Coia", "authorized_access_point": "Escoda I Murria, Coia"} 1 -2023-07-08 08:22:42.832509 2023-07-08 08:22:42.832518 23e647f3-2ac9-4a23-bc65-e102f1d94994 {"md5": "619ea5bab9465cb3f10c35f2f6c0fb3d", "pid": "24355933X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/24355933X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/24355933X", "source": "IDREF"}], "preferred_name": "Deflorenne, Caroline", "authorized_access_point": "Deflorenne, Caroline"} 1 -2023-07-08 08:22:42.945523 2023-07-08 08:22:42.945538 f8973c31-f157-4aa7-a3ae-57eeb971759f {"md5": "dbdf7086d16a4ef444f646f867326d04", "pid": "243567634", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/243567634", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243567634", "source": "IDREF"}], "preferred_name": "Burer, Catherine", "authorized_access_point": "Burer, Catherine"} 1 -2023-07-08 08:22:43.283524 2023-07-08 08:22:43.28353 f6e2ebc4-1fe1-4274-907c-a3327afb0d75 {"md5": "115458797773b375887d20331684beae", "pid": "243583133", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/243583133", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243583133", "source": "IDREF"}], "variant_name": ["Botovavy, Lucie Martin"], "preferred_name": "Martin Botovavy, Lucie", "country_associated": "fr", "variant_access_point": ["Botovavy, Lucie Martin"], "authorized_access_point": "Martin Botovavy, Lucie", "biographical_information": ["Titulaire d'une thèse en Pharmacie (Clermont-Ferrand 1, 1993)"]} 1 -2023-07-08 08:22:43.40499 2023-07-08 08:22:43.405002 129eeafb-96fd-4154-afa8-68819dab35f7 {"md5": "c58c0db77ac8a226f0cd2135b599f28a", "pid": "243594895", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/243594895", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243594895", "source": "IDREF"}], "date_of_birth": "1986-05-26", "preferred_name": "Granados alfaro, Ricardo", "country_associated": "mx", "authorized_access_point": "Granados alfaro, Ricardo, 1986-....", "biographical_information": ["Auteur d'une thèse en Optique et radiofréquence à Grenoble Alpes en 2019"]} 1 -2023-07-08 08:22:43.519295 2023-07-08 08:22:43.519306 c4d56f4a-0989-4c2a-8301-6523cf58222a {"md5": "11bfc61a52133b936b9f9715ebc11604", "pid": "243597827", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/243597827", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243597827", "source": "IDREF"}], "preferred_name": "aDragoni, Bianca", "country_associated": "it", "authorized_access_point": "aDragoni, Bianca"} 1 -2023-07-08 08:22:43.630637 2023-07-08 08:22:43.630648 69ac701a-400a-4cb0-8698-83cac3378a87 {"md5": "794331aab5194cb2e6bd9be49d4ea920", "pid": "243602049", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifier": "http://www.idref.fr/243602049", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243602049", "source": "IDREF"}], "preferred_name": "Eugenics Society (Londres). Symposium", "country_associated": "xxk", "date_of_termination": "1978", "date_of_establishment": "1978", "authorized_access_point": "Eugenics Society (Londres). Symposium (14 ; 1978 ; Londres)"} 1 -2023-07-08 08:22:43.737101 2023-07-08 08:22:43.737111 22e41a7a-0c59-4319-94fa-802a8ffb4843 {"md5": "5c5090aee7e9d2ae67861c80e01e8bf8", "pid": "24360405X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/24360405X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/24360405X", "source": "IDREF"}], "preferred_name": "Vignal-Gachignat, Laurence", "country_associated": "fr", "authorized_access_point": "Vignal-Gachignat, Laurence", "biographical_information": ["Docteur en informatique de l'université de Bordeaux 1‎ en 1997"]} 1 -2023-07-08 08:22:43.835605 2023-07-08 08:22:43.835609 3c6194e6-5a4b-46bb-8b67-0094ac2e08aa {"md5": "d238ebc2eb7cc4414585207655573a1f", "pid": "243621418", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifier": "http://www.idref.fr/243621418", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243621418", "source": "IDREF"}], "preferred_name": "European conference on organised films", "authorized_access_point": "European conference on organised films (8 ; 2002 ; Otranto (Lecce), Italy)"} 1 -2023-07-08 08:22:43.92386 2023-07-08 08:22:43.923866 b93f7307-34ad-4756-a457-a846c5b78639 {"md5": "d71e63e0731ed838bffec3cbb64411fb", "pid": "243630832", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/243630832", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243630832", "source": "IDREF"}], "preferred_name": "Gourmelon, Isabelle", "country_associated": "fr", "authorized_access_point": "Gourmelon, Isabelle", "biographical_information": ["Titulaire d'une thèse en Pharmacie (Rennes 1, 1994)"]} 1 -2023-07-08 08:22:44.021293 2023-07-08 08:22:44.021306 41168d84-fd31-4511-9090-8d5fcfdc781b {"md5": "82616edf92c14ca908907712f728b6bf", "pid": "243644124", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/243644124", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243644124", "source": "IDREF"}], "preferred_name": "Guillemot, Patrick", "authorized_access_point": "Guillemot, Patrick", "biographical_information": ["Titulaire d'une DEA soutenu à l'Université de Bretagne en 1986 : Traitements de données sismiques réflexion très haute résolution numérisées"]} 1 -2023-07-08 08:22:44.138367 2023-07-08 08:22:44.138379 5cdd6e61-5e24-4c68-8aac-ed230d8eb5e7 {"md5": "9ed52011e6ca185eeb13f7b453938c22", "pid": "243654510", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/243654510", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243654510", "source": "IDREF"}], "preferred_name": "Harouna, Hamidou", "country_associated": "fr", "authorized_access_point": "Harouna, Hamidou", "biographical_information": ["Titulaire d'une thèse en Pharmacie (Lyon 1, 1983)"]} 1 -2023-07-08 08:22:44.261077 2023-07-08 08:22:44.261087 8fcc41cc-c64d-4494-9bbf-28b5b3e1ecbf {"md5": "6ccf34a0d3fd9db18153ce3ab16a9298", "pid": "243677596", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/243677596", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243677596", "source": "IDREF"}], "preferred_name": "Vigier, Véronique", "country_associated": "fr", "authorized_access_point": "Vigier, Véronique", "biographical_information": ["Titulaire d'une thèse en Pharmacie (Clermont-Ferrand 1, 1996)"]} 1 -2023-07-08 08:22:44.366785 2023-07-08 08:22:44.366865 af4027ec-9d08-415d-b58b-2eeecc7148b9 {"md5": "5f770afd33fc50d36b589b49bd91a040", "pid": "243682603", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/243682603", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243682603", "source": "IDREF"}], "date_of_birth": "187.", "date_of_death": "19..", "preferred_name": "Garnier, Armand", "country_associated": "fr", "authorized_access_point": "Garnier, Armand, 187.-19..", "biographical_information": ["Ancien élève de l'École normale supérieure (promotion 1895 l). Agrégé de lettres (1898). Spécialiste de d'Aubigné"]} 1 -2023-07-08 08:22:44.485641 2023-07-08 08:22:44.485649 2ea46b6d-ef13-43e2-9ceb-3d49f9464b71 {"md5": "381b5a238bfc96c151d650c9a31211ce", "pid": "243689616", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/243689616", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243689616", "source": "IDREF"}], "preferred_name": "Schaffer, Arthur A.", "country_associated": "is", "authorized_access_point": "Schaffer, Arthur A.", "biographical_information": ["En poste au Centre de recherche agricole Volcani, Bet-Dagan (en 1996)"]} 1 -2023-07-08 08:22:44.597689 2023-07-08 08:22:44.597703 d2d0c6a4-3abf-49be-b226-71288af30720 {"md5": "7add6422a0e7a572c21fe3d2dde0f133", "pid": "243691041", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/243691041", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243691041", "source": "IDREF"}], "variant_name": ["A.D.E.N.A.S.", "ADENAS", "Association pour le développement des énergies nouvelles dans les Alpes-du-Sud"], "preferred_name": "Association pour le développement des énergies nouvelles dans les Alpes du sud", "country_associated": "fr", "variant_access_point": ["A.D.E.N.A.S.", "ADENAS", "Association pour le développement des énergies nouvelles dans les Alpes-du-Sud"], "authorized_access_point": "Association pour le développement des énergies nouvelles dans les Alpes du sud", "biographical_information": ["Adresse : c/o C.I.H.R., 05600 Montdauphin"]} 1 -2023-07-08 08:22:44.69655 2023-07-08 08:22:44.696554 2623e0b6-b332-4826-9836-e37c6b35b803 {"md5": "2f5566ba9c3a00a328c20d5dcc70487b", "pid": "243694911", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/243694911", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243694911", "source": "IDREF"}], "preferred_name": "International Symposium Commemorating the Semi-Centennial of Hanyang University1989", "country_associated": "ko", "date_of_termination": "1989-05-11", "date_of_establishment": "1989-05-10", "authorized_access_point": "International Symposium Commemorating the Semi-Centennial of Hanyang University1989 (Seoul, Corée)"} 1 -2023-07-08 08:22:44.783715 2023-07-08 08:22:44.78373 297e629f-627a-4736-8106-42e383f1ed91 {"md5": "bcd6c864902fd696c9d6c5fe09f83618", "pid": "243698267", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/243698267", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243698267", "source": "IDREF"}], "date_of_birth": "1870-04-16", "date_of_death": "1934", "preferred_name": "Faralicq, Gaston", "country_associated": "fr", "authorized_access_point": "Faralicq, Gaston, 1870-1934", "biographical_information": ["Entre dans la police parisienne comme secrétaire suppléant près les commissariats de la Ville de Paris. - Secrétaire au commissariat de l'Odéon (1897-). - Officier de paix (1903-1914), puis commissaire aux délégations judiciaires, il prend sa retraite en 1932. - Ancien cuirassier. - Bachelier ès lettres. - Fondateur de l'ASPP, Association Sportive de la Préfecture de Police."]} 1 -2023-07-08 08:22:44.897711 2023-07-08 08:22:44.897717 cece59e0-d90d-436d-bb10-974367ad9fcb {"md5": "60155d1a38072c688fb9cd911b3a6bfb", "pid": "24370206X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/24370206X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/24370206X", "source": "IDREF"}], "preferred_name": "Reserve Bank of Zimbabwe", "country_associated": "rh", "authorized_access_point": "Reserve Bank of Zimbabwe"} 1 -2023-07-08 08:22:44.999666 2023-07-08 08:22:44.99968 668d413d-ea21-47d3-b9f5-167b6b86aee3 {"md5": "cd68595fb02b8e835ac531e57a77ea72", "pid": "243703597", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/243703597", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243703597", "source": "IDREF"}], "preferred_name": "Breton, Cyrille-Pierre", "country_associated": "fr", "authorized_access_point": "Breton, Cyrille-Pierre", "biographical_information": ["Docteur en médecine. Thèse d'exercice soutenue à la faculté de médecine de l'Université d'Aix-Marseille 2 en 1976"]} 1 -2023-07-08 08:22:45.112184 2023-07-08 08:22:45.1122 8845fa73-740a-498e-9489-a36ab9d44e69 {"md5": "e4d189d50c1be1cf25fb668d5faecd1f", "pid": "243712979", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/243712979", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243712979", "source": "IDREF"}], "preferred_name": "University of Wyoming. Department of geology and geophysics", "country_associated": "xxu", "authorized_access_point": "University of Wyoming. Department of geology and geophysics"} 1 -2023-07-08 08:22:45.223085 2023-07-08 08:22:45.223095 f78423ca-a8e1-41a8-a395-e544bda91982 {"md5": "8eaf9535718cbfe816c53e2d9534d46b", "pid": "243737823", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/243737823", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243737823", "source": "IDREF"}], "date_of_birth": "1937", "preferred_name": "Renault, Jean", "country_associated": "fr", "authorized_access_point": "Renault, Jean, 1937-....", "biographical_information": ["auteur dramatique"]} 1 -2023-07-08 08:22:45.327394 2023-07-08 08:22:45.327406 1a22801c-dd90-441f-a969-de2c477a077e {"md5": "1910299e7af651629619429700781da2", "pid": "243741138", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/243741138", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243741138", "source": "IDREF"}], "preferred_name": "Ballon, Félix Arthur", "country_associated": "fr", "authorized_access_point": "Ballon, Félix Arthur"} 1 -2023-07-08 08:22:47.264853 2023-07-08 08:22:47.264863 d8bf3a67-7381-4263-9631-976157d0fede {"md5": "1f576a47ea1a3fafa933028c77db2f20", "pid": "244052468", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/244052468", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244052468", "source": "IDREF"}], "preferred_name": "Ambunda, Lotta N", "country_associated": "sx", "authorized_access_point": "Ambunda, Lotta N"} 1 -2023-07-08 08:22:45.582126 2023-07-08 08:22:45.582138 73939c3e-b876-454b-ba6d-e55f06c2f64a {"md5": "f85a28dc8e1d06aa41719d98dfb358a6", "pid": "243803133", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/243803133", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243803133", "source": "IDREF"}], "date_of_birth": "1980-03-09", "preferred_name": "Babou, Ousseynou", "country_associated": "fr", "authorized_access_point": "Babou, Ousseynou, 1980-....", "biographical_information": ["Auteur d'une thèse en Droit à Paris 1 en 2015"]} 1 -2023-07-08 08:22:45.683899 2023-07-08 08:22:45.68391 61321691-3d8b-4006-9c54-c8c6593259d6 {"md5": "1dc444cba84faad67dd2e9d76a7bffbb", "pid": "243814682", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/243814682", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243814682", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Le Carlier de Veslud, Cécile", "country_associated": "fr", "authorized_access_point": "Le Carlier de Veslud, Cécile, 19..-....", "biographical_information": ["Ingeńieur de Recherche archéométallurgiste au CNRS, à l' UMR 6566, CReAAH, Laboratoire Archéosciences de l'Université de Rennes 1 en 2019."]} 1 -2023-07-08 08:22:45.792837 2023-07-08 08:22:45.79285 81a5e2ce-8bf0-437b-af04-fecab59b7f22 {"md5": "822fc5c47ab8c105c445f57f0c4a38c1", "pid": "243820984", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/243820984", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243820984", "source": "IDREF"}], "preferred_name": "Kuprii︠a︡nova, V.R", "country_associated": "xxk", "authorized_access_point": "Kuprii︠a︡nova, V.R"} 1 -2023-07-08 08:22:45.90181 2023-07-08 08:22:45.901822 9ab7835c-6a8e-4e33-b7e2-45531d46e31d {"md5": "2c2f94d303d531c68868f7c5281da725", "pid": "243828446", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ara"], "identifier": "http://www.idref.fr/243828446", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243828446", "source": "IDREF"}], "preferred_name": "Fānik, Fahd", "country_associated": "jo", "authorized_access_point": "Fānik, Fahd"} 1 -2023-07-08 08:22:46.018064 2023-07-08 08:22:46.018073 d1168b62-d84f-452c-92f4-b361c8998616 {"md5": "25c94d974201082ae7c99762293b33c8", "pid": "243832206", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifier": "http://www.idref.fr/243832206", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243832206", "source": "IDREF"}], "preferred_name": "Shushurin, S.F", "authorized_access_point": "Shushurin, S.F"} 1 -2023-07-08 08:22:46.148261 2023-07-08 08:22:46.148274 8a58e561-c600-4df9-86f5-8aca06dc5f23 {"md5": "aea4129c9a93abb619efc17b049dea7c", "pid": "24384025X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/24384025X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/24384025X", "source": "IDREF"}], "preferred_name": "Wills Rivera, Lourdes", "country_associated": "ve", "authorized_access_point": "Wills Rivera, Lourdes"} 1 -2023-07-08 08:22:46.270986 2023-07-08 08:22:46.270999 1c89da5d-b8cd-4461-ad52-a48446d351d9 {"md5": "31b0aa4342884209870a966254b87ba0", "pid": "243868065", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/243868065", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243868065", "source": "IDREF"}], "preferred_name": "Lalia Verpelli, Silvia", "country_associated": "it", "authorized_access_point": "Lalia Verpelli, Silvia"} 1 -2023-07-08 08:22:46.387801 2023-07-08 08:22:46.387815 1264da63-1ba7-4eae-b56f-e9fab1b089a2 {"md5": "ca25019a30452db933301d6aecc14073", "pid": "24388303X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["chi"], "identifier": "http://www.idref.fr/24388303X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/24388303X", "source": "IDREF"}], "preferred_name": "Zhai, Yiwuo", "authorized_access_point": "Zhai, Yiwuo"} 1 -2023-07-08 08:22:46.631498 2023-07-08 08:22:46.631506 f3d48dc9-73d1-4591-854d-6054d6587c12 {"md5": "0dd7c40a31339af37bb691635b7a024f", "pid": "243894910", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "identifier": "http://www.idref.fr/243894910", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243894910", "source": "IDREF"}], "preferred_name": "Sagami, Yoshikazu", "country_associated": "ja", "authorized_access_point": "Sagami, Yoshikazu"} 1 -2023-07-08 08:22:46.749814 2023-07-08 08:22:46.749822 9068097a-291f-4642-87f0-7531a97499a9 {"md5": "a6ab85fe4674dff3df74f2c5a9b6a651", "pid": "243895046", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/243895046", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243895046", "source": "IDREF"}], "preferred_name": "Elperin, I︠U︡riĭ", "country_associated": "gw", "authorized_access_point": "Elperin, I︠U︡riĭ"} 1 -2023-07-08 08:22:46.852155 2023-07-08 08:22:46.852169 643a7f07-c980-409b-8f9b-c948a902e555 {"md5": "dbe6242069d1219dac894880b3bf0a82", "pid": "243937075", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/243937075", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243937075", "source": "IDREF"}], "date_of_birth": "1957", "preferred_name": "Jolliet, Philippe", "authorized_access_point": "Jolliet, Philippe, 1957-....", "biographical_information": ["Dr sciences Univ. Fribourg Suisse 1987, chimiste"]} 1 -2023-07-08 08:22:46.996807 2023-07-08 08:22:46.996818 894dc797-540a-4a9d-b7da-4c824c0f6488 {"md5": "1c55a9d43b289b2b6d6aed2645520fd3", "pid": "244010218", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/244010218", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244010218", "source": "IDREF"}], "preferred_name": "Grandel, Saskia", "country_associated": "gw", "authorized_access_point": "Grandel, Saskia", "biographical_information": ["Germaniste"]} 1 -2023-07-08 08:22:47.402135 2023-07-08 08:22:47.402143 69dfd94d-5c17-41d8-a4d8-9b28ac8df1b0 {"md5": "c4f3ca9fd8fefa2f2b91c811dde21d65", "pid": "24406024X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/24406024X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/24406024X", "source": "IDREF"}], "preferred_name": "Bácares Jara, Camilo", "country_associated": "pe", "authorized_access_point": "Bácares Jara, Camilo"} 1 -2023-07-08 08:22:47.534942 2023-07-08 08:22:47.534951 510e0514-0783-4232-b155-33b88ec18c5e {"md5": "77d5c8d7252a822363fe464154aa917d", "pid": "244061092", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/244061092", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244061092", "source": "IDREF"}], "preferred_name": "Richterich, Lukas", "authorized_access_point": "Richterich, Lukas"} 1 -2023-07-08 08:22:47.651937 2023-07-08 08:22:47.651942 f67d91e0-bcb6-41d4-9bfc-06dfc9d80985 {"md5": "f5974ce62624fc33aa8ff89c6989b353", "pid": "244072922", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifier": "http://www.idref.fr/244072922", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244072922", "source": "IDREF"}], "preferred_name": "Nazarevskiĭ, Aleksandr Adrianovich", "country_associated": "eg", "authorized_access_point": "Nazarevskiĭ, Aleksandr Adrianovich"} 1 -2023-07-08 08:22:47.735561 2023-07-08 08:22:47.735564 a2b45575-e3ff-454a-9f76-3b3335a12046 {"md5": "9cbe28c6b64b5330af347e7292878d39", "pid": "244077878", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifier": "http://www.idref.fr/244077878", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244077878", "source": "IDREF"}], "variant_name": ["Mneva, Nadezhda Evgenʹevna"], "preferred_name": "Мнева, Надежда Евгеньевна", "variant_access_point": ["Mneva, Nadezhda Evgenʹevna"], "authorized_access_point": "Мнева, Надежда Евгеньевна"} 1 -2023-07-08 08:22:47.820808 2023-07-08 08:22:47.820814 4bce9eaa-3718-4546-ae7f-fec291b1fcb5 {"md5": "a18d416feaaaa7fb67a86c418060fd4e", "pid": "244092389", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/244092389", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244092389", "source": "IDREF"}], "date_of_birth": "1985", "preferred_name": "Jeger, Silvan", "authorized_access_point": "Jeger, Silvan, 1985-….", "biographical_information": ["Compositeur, contrebassiste et violoncelliste de jazz"]} 1 -2023-07-08 08:22:47.895241 2023-07-08 08:22:47.895244 079f3b53-585d-4ecd-baaf-f60422d3267e {"md5": "e4093b43902932a2888477a5ea453476", "pid": "244098972", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifier": "http://www.idref.fr/244098972", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244098972", "source": "IDREF"}], "preferred_name": "Vardomat︠s︡kiĭ, Andreĭ Petrovich", "authorized_access_point": "Vardomat︠s︡kiĭ, Andreĭ Petrovich"} 1 -2023-07-08 08:22:47.972749 2023-07-08 08:22:47.972755 de9b440b-dcb5-4350-9e0e-d68faff6a23f {"md5": "2aaa28374f31c640b53a1c11e3cd1b94", "pid": "244117802", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifier": "http://www.idref.fr/244117802", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244117802", "source": "IDREF"}], "preferred_name": "Glinskij, B.B", "authorized_access_point": "Glinskij, B.B"} 1 -2023-07-08 08:22:48.14805 2023-07-08 08:22:48.148054 44a2f394-96f6-4fbf-a5aa-c9972434054c {"md5": "c047760e935891f7d7491d91f604de28", "pid": "244126283", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifier": "http://www.idref.fr/244126283", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244126283", "source": "IDREF"}], "preferred_name": "Ruvinskiĭ, Leonid Izotovich", "authorized_access_point": "Ruvinskiĭ, Leonid Izotovich"} 1 -2023-07-08 08:22:48.215937 2023-07-08 08:22:48.215941 e869150d-1f10-498d-9daa-7fe6fcb81bbe {"md5": "a5a5887073d7b4e68d5f260039f0f2cc", "pid": "244135282", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifier": "http://www.idref.fr/244135282", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244135282", "source": "IDREF"}], "preferred_name": "Topuridze, Elena Ivanovna", "country_associated": "gau", "authorized_access_point": "Topuridze, Elena Ivanovna"} 1 -2023-07-08 08:22:48.282919 2023-07-08 08:22:48.282922 deb020a7-6b70-4d2f-a9eb-2567e9478b3a {"md5": "cd4a5e80adbf06a93dbb0f2958640778", "pid": "244139563", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/244139563", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244139563", "source": "IDREF"}], "preferred_name": "Heinecke, H.", "country_associated": "fr", "authorized_access_point": "Heinecke, H."} 1 -2023-07-08 08:22:48.395113 2023-07-08 08:22:48.395118 4c80211c-246f-44e7-bfbe-62ce13ea5d7f {"md5": "ac69474ea14a14f751d44ebc3bdff3b9", "pid": "244165610", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/244165610", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244165610", "source": "IDREF"}], "preferred_name": "Papadopoulos, Dimitrios N", "country_associated": "fr", "authorized_access_point": "Papadopoulos, Dimitrios N", "biographical_information": ["Ingénieur, chargé de recherche au Laboratoire Pour l'Utilisation des Lasers Intenses (LULI), École Polytechnique"]} 1 -2023-07-08 08:22:48.480676 2023-07-08 08:22:48.48068 a492b725-3fd3-4230-92c0-dc7dfd14a559 {"md5": "5a3977eac08077826c1b9a1ffa924d05", "pid": "24416603X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/24416603X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/24416603X", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Pilot, Gilbert", "country_associated": "xxc", "authorized_access_point": "Pilot, Gilbert, 19..-....", "biographical_information": ["Chef d'entreprise"]} 1 -2023-07-08 08:22:48.65207 2023-07-08 08:22:48.652075 79c86f15-1ad2-4afd-8cf2-92bd6d7b83b5 {"md5": "673d9830b88107b9d39d970d68bbbdc5", "pid": "244251568", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/244251568", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244251568", "source": "IDREF"}], "date_of_birth": "1765", "date_of_death": "1833", "preferred_name": "Latour, Joseph", "country_associated": "fr", "authorized_access_point": "Latour, Joseph, 1765-1833", "biographical_information": ["Général de la Révolution et de l'Empire"]} 1 -2023-07-08 08:22:48.726999 2023-07-08 08:22:48.727012 7cd5f5ba-8aa1-4eaa-81a8-cdfef4dd3a74 {"md5": "55670c904c6ab518371de3c0eba08743", "pid": "244257469", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/244257469", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244257469", "source": "IDREF"}], "preferred_name": "Abi-Rached, Antoine", "authorized_access_point": "Abi-Rached, Antoine", "biographical_information": ["Editeur scientifique"]} 1 -2023-07-08 08:22:48.799823 2023-07-08 08:22:48.799831 6fcd558b-d69a-4982-b706-d33cd87cfe2b {"md5": "983cc77b754786ff5190f2623474bc92", "pid": "244273111", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/244273111", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244273111", "source": "IDREF"}], "date_of_birth": "1982-03-12", "preferred_name": "Roussel, Karl", "country_associated": "fr", "authorized_access_point": "Roussel, Karl, 1982-...."} 1 -2023-07-08 08:22:48.891287 2023-07-08 08:22:48.891294 390c2c97-98a0-4eea-bf44-02eaad49cd26 {"md5": "ccfe14fef8bbf52b601d5379f6047669", "pid": "244318301", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/244318301", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244318301", "source": "IDREF"}], "date_of_birth": "1993", "preferred_name": "Chritakis, Apolline", "country_associated": "fr", "authorized_access_point": "Chritakis, Apolline, 1993", "biographical_information": ["Auteure d'un mémoire de master recherche 2ème année soutenu en 2017 à l'Université de Caen"]} 1 -2023-07-08 08:22:48.991964 2023-07-08 08:22:48.991969 cfcbd396-209c-4c0d-911b-d2da8e9e9aad {"md5": "9f9ed009b687aaf13fa9c377e019f98f", "pid": "244324913", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/244324913", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244324913", "source": "IDREF"}], "date_of_birth": "19..", "preferred_name": "Kerlor, Anne", "country_associated": "fr", "authorized_access_point": "Kerlor, Anne, 19..-....", "biographical_information": ["Ecrivain"]} 1 -2023-07-08 08:22:49.083315 2023-07-08 08:22:49.083327 c80f510e-f85b-40d5-9318-8ad7a4220687 {"md5": "c1cab9a361a41072eae8f7e4a6fd03e4", "pid": "244341672", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/244341672", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244341672", "source": "IDREF"}], "variant_name": ["MJS - Bas-Rhin - France", "Mouvement de la jeunesse socialiste. Fédération Bas-Rhin", "Mouvement des jeunes socialistes (Bas-Rhin, France)"], "preferred_name": "Mouvement de la jeunesse socialiste (Bas-Rhin, France)", "country_associated": "fr", "variant_access_point": ["MJS - Bas-Rhin - France", "Mouvement de la jeunesse socialiste. Fédération Bas-Rhin", "Mouvement des jeunes socialistes (Bas-Rhin, France)"], "authorized_access_point": "Mouvement de la jeunesse socialiste (Bas-Rhin, France)"} 1 -2023-07-08 08:22:49.15964 2023-07-08 08:22:49.159647 2f508523-59e1-416b-bc9b-97a8b4a1be5c {"md5": "e4d9d0cb3746b476e2c9d06dd7af8599", "pid": "244341796", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/244341796", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244341796", "source": "IDREF"}], "preferred_name": "Cederna, Giulio", "authorized_access_point": "Cederna, Giulio"} 1 -2023-07-08 08:22:49.247048 2023-07-08 08:22:49.247056 21cf8ff4-1df8-4acb-9a1b-698f6529f74e {"md5": "0d4b4a7ccae6d2cf9b592394ad11527e", "pid": "244350329", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/244350329", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244350329", "source": "IDREF"}], "variant_name": ["Peccoud, Elisabeth"], "date_of_birth": "1944-06-05", "preferred_name": "Defour, Elisabeth", "country_associated": "fr", "variant_access_point": ["Peccoud, Elisabeth"], "authorized_access_point": "Defour, Elisabeth, 1944-....", "biographical_information": ["Auteur en médecine"]} 1 -2023-07-08 08:22:49.340134 2023-07-08 08:22:49.340139 1ab0a247-4794-451b-9ffa-a9554f50d2af {"md5": "e9784c9b095982ae04d2e3e081c41efa", "pid": "244402515", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/244402515", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244402515", "source": "IDREF"}], "preferred_name": "Saintigny, Gabriel", "country_associated": "fr", "authorized_access_point": "Saintigny, Gabriel"} 1 -2023-07-08 08:22:49.42516 2023-07-08 08:22:49.425166 5ab9c7d3-ed1b-4dae-80a7-3a62c9028aa8 {"md5": "6d6323b4d5b2e17a632d862d966e00f4", "pid": "244420645", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/244420645", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244420645", "source": "IDREF"}], "preferred_name": "Caniot, Valérie", "country_associated": "fr", "authorized_access_point": "Caniot, Valérie", "biographical_information": ["Titulaire d'une thèse en Médecine vétérinaire (Lyon 1, 1997)"]} 1 -2023-07-08 08:22:49.513611 2023-07-08 08:22:49.513616 193e3cb0-ceda-4156-9a2f-ba3adf122c14 {"md5": "13c4ff1d2f92cea935584158672844a5", "pid": "244433577", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/244433577", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244433577", "source": "IDREF"}], "preferred_name": "Astle, Julian", "country_associated": "xxk", "authorized_access_point": "Astle, Julian"} 1 -2023-07-08 08:22:49.609443 2023-07-08 08:22:49.609449 0f9134b6-853a-453e-ad02-372d94019fa8 {"md5": "5408232b98c47e54bd2614674ce8d3c9", "pid": "244450765", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["swe"], "identifier": "http://www.idref.fr/244450765", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244450765", "source": "IDREF"}], "preferred_name": "Zennström, Per-Olov", "country_associated": "sw", "authorized_access_point": "Zennström, Per-Olov"} 1 -2023-07-08 08:22:49.673239 2023-07-08 08:22:49.673246 e438ee95-4853-42a5-8394-76444588f43b {"md5": "dea49d74d0813224c74c7e1087141648", "pid": "244788987", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/244788987", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244788987", "source": "IDREF"}], "variant_name": ["Lacoste, Raymond Maisonneufve"], "preferred_name": "Maisonneufve-Lacoste, Raymond", "country_associated": "fr", "variant_access_point": ["Lacoste, Raymond Maisonneufve"], "authorized_access_point": "Maisonneufve-Lacoste, Raymond", "biographical_information": ["Fut avocat général"]} 1 -2023-07-08 08:22:49.748328 2023-07-08 08:22:49.748336 81fd43d4-7270-49b7-abf8-fbfcf6ec4d44 {"md5": "645522b7d37a57cdef93a395a4d92adf", "pid": "244799768", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/244799768", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244799768", "source": "IDREF"}], "preferred_name": "Chasles, Bernard", "authorized_access_point": "Chasles, Bernard"} 1 -2023-07-08 08:22:49.822864 2023-07-08 08:22:49.822869 40a24887-c589-4e11-80fc-d78f0c473860 {"md5": "c5c9714a1b611841169f031157475adb", "pid": "244882908", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/244882908", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244882908", "source": "IDREF"}], "variant_name": ["Wesley, George R."], "date_of_birth": "1931", "preferred_name": "Wesley, George Randolph", "variant_access_point": ["Wesley, George R."], "authorized_access_point": "Wesley, George Randolph, 1931-..."} 1 -2023-07-08 08:22:49.916758 2023-07-08 08:22:49.916767 009073bc-b625-4040-85e5-73e647ee876a {"md5": "9cf6c73a761c2b68d7e73738f69d35ae", "pid": "24488451X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/24488451X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/24488451X", "source": "IDREF"}], "preferred_name": "Roberteau-Baudry", "country_associated": "fr", "authorized_access_point": "Roberteau-Baudry"} 1 -2023-07-08 08:22:50.106873 2023-07-08 08:22:50.106878 76e85d8e-aef4-4547-9c62-6364161a95fe {"md5": "2fa648f92b6c81181191caf77a7e06c9", "pid": "244922624", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/244922624", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244922624", "source": "IDREF"}], "preferred_name": "Lauer, O.", "country_associated": "fr", "authorized_access_point": "Lauer, O.", "biographical_information": ["Scientifique"]} 1 -2023-07-08 08:22:50.183578 2023-07-08 08:22:50.183585 db974a61-5695-4754-a050-5b7fa4821d72 {"md5": "2c67c6d325607e69395d51ab2d84c755", "pid": "244934894", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/244934894", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244934894", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Anstice, Ian", "country_associated": "xxk", "authorized_access_point": "Anstice, Ian, 19..-....", "biographical_information": ["Bibliothécaire"]} 1 -2023-07-08 08:22:50.284318 2023-07-08 08:22:50.284328 0a24bb72-d770-4340-903c-5ae5730193c1 {"md5": "0cbbd65c61389deb477c78bcd853b0ab", "pid": "245023542", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/245023542", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/245023542", "source": "IDREF"}], "variant_name": ["ULCO. Atelier culture (Dunkerque, Nord)", "UL. Atelier culture (Dunkerque, Nord)", "Université du Littoral. Atelier culture (Dunkerque, Nord)", "Université du Littoral Côte d'Opale (France)"], "preferred_name": "Université du littoral-Côte d'Opale. Atelier culture (Dunkerque, Nord)", "country_associated": "fr", "variant_access_point": ["ULCO. Atelier culture (Dunkerque, Nord)", "UL. Atelier culture (Dunkerque, Nord)", "Université du Littoral. Atelier culture (Dunkerque, Nord)", "Université du Littoral Côte d'Opale (France)"], "authorized_access_point": "Université du littoral-Côte d'Opale. Atelier culture (Dunkerque, Nord)"} 1 -2023-07-08 08:22:50.490859 2023-07-08 10:26:22.179663 fbfa68e8-6034-4b4e-bb4f-4eb5ec261eea {"md5": "dd7d1d7593d01cc609370298d281c77e", "pid": "24507869X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/24507869X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/24507869X", "source": "IDREF"}], "preferred_name": "Caldwel, Robert J.", "authorized_access_point": "Caldwel, Robert J."} 2 -2023-07-08 08:22:50.583666 2023-07-08 10:26:35.177537 8f8049a0-f339-4833-840d-644f3e092508 {"md5": "e94cdaec0a18da92de8bc4675196a045", "pid": "24515969X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/24515969X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/24515969X", "source": "IDREF"}], "date_of_birth": "18..", "date_of_death": "18..", "preferred_name": "Prieur, Edme-André Séverin", "country_associated": "fr", "authorized_access_point": "Prieur, Edme-André Séverin, 18..-18..", "biographical_information": ["Médecin"]} 2 -2023-07-08 08:22:50.392084 2023-07-08 10:26:53.919142 d070c257-cf57-42f1-98d6-fe34b5b2e2a2 {"md5": "bd1a9dc26ac0609687ec1fb22ea2e4be", "pid": "245054200", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": true, "identifier": "http://www.idref.fr/245054200", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/245054200", "source": "IDREF"}], "preferred_name": "OSL Workshop on Electromechanical Coupling of the Solar Atmosphere", "date_of_termination": "1991-05-31", "date_of_establishment": "1991-05-27", "authorized_access_point": "OSL Workshop on Electromechanical Coupling of the Solar Atmosphere (1991 ; Capri, Italie)"} 2 -2023-07-08 08:22:50.768999 2023-07-08 08:22:50.769003 c24b893b-a801-4a86-b600-7c03256a6d8d {"md5": "f6f95f248690a7b8368c7b6f34b646f5", "pid": "245235949", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/245235949", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/245235949", "source": "IDREF"}], "date_of_birth": "1990-03-01", "preferred_name": "Abdelkareem, Moamen", "country_associated": "ua", "authorized_access_point": "Abdelkareem, Moamen, 1990-....", "biographical_information": ["Auteur d'une thèse de doctorat en Biophysique et biologie structurale à Strasbourg en 2019"]} 1 -2023-07-08 08:22:50.843809 2023-07-08 08:22:50.843813 2bbfbd40-71de-4ae8-afb7-578c5ae2b773 {"md5": "77a75e3c23e7b2598bc7ced92780155e", "pid": "245265805", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/245265805", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/245265805", "source": "IDREF"}], "preferred_name": "Musée de l'homme. Département Océanie (Paris)", "country_associated": "fr", "date_of_establishment": "1936", "authorized_access_point": "Musée de l'homme. Département Océanie (Paris)"} 1 -2023-07-08 08:22:50.956115 2023-07-08 08:22:50.956119 f4e633f0-0807-4f9f-802c-1b3d5cb482da {"md5": "4dd82facedcc314019ebed59ea3771c7", "pid": "245313486", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/245313486", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/245313486", "source": "IDREF"}], "date_of_birth": "1787", "date_of_death": "1863", "preferred_name": "Wilson, Thomas", "country_associated": "xxk", "authorized_access_point": "Wilson, Thomas, 1787-1863", "biographical_information": ["Collectionneur d'art anglais, notamment des estampes de Rembrandt. Vit en Australie à partir de 1838 où il est avocat"]} 1 -2023-07-08 08:22:51.040396 2023-07-08 08:22:51.0404 d1ca131d-f9c6-47d8-b5cc-d22a9bf9c436 {"md5": "f7c0475a2de8323e388d0ecc7eca9b0b", "pid": "248175920", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/248175920", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/248175920", "source": "IDREF"}], "preferred_name": "Dalmat, Syanie", "country_associated": "fr", "authorized_access_point": "Dalmat, Syanie"} 1 -2023-07-08 08:22:51.205141 2023-07-08 08:22:51.205151 88cb3373-e4bc-4c70-a5b7-63095bcdbd1c {"md5": "10eb2c41abb9382403555db4e407a941", "pid": "248374249", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "M.", "identifier": "http://www.idref.fr/248374249", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/248374249", "source": "IDREF"}], "preferred_name": "Rougeot, M.", "country_associated": "xx", "authorized_access_point": "Rougeot, M."} 1 -2023-07-08 08:22:51.393023 2023-07-08 08:22:51.393029 2eba2463-8f7d-49c1-9c8e-4ba22fefa7a6 {"md5": "2fc2381aa90c7bbc9b8a89f746f74370", "pid": "248436074", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/248436074", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/248436074", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Lataillade, Pierre", "country_associated": "fr", "authorized_access_point": "Lataillade, Pierre, 19..-...."} 1 -2023-07-08 08:22:51.60823 2023-07-08 08:22:51.608234 27aaa16e-e072-4c87-b192-80bd45cdc8a9 {"md5": "804ed124bae3498ae583f6023e6d96f3", "pid": "248982621", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["heb"], "identifier": "http://www.idref.fr/248982621", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/248982621", "source": "IDREF"}], "variant_name": ["ברסלבסקי, משה"], "date_of_birth": "1903", "date_of_death": "1961", "preferred_name": "Braslavski, Moshe", "country_associated": "is", "variant_access_point": ["ברסלבסקי, משה, 1903-1961"], "parallel_access_point": ["braslabsqy, mos̆eh, 1903-1961", "Braslavsḳi, Mosheh"], "authorized_access_point": "Braslavski, Moshe, 1903-1961", "biographical_information": ["Né en 1903 en Ukraine. A émigré en Palestine en 1905. Décédé en 1961", "Écrivain et historien israélien spécialisé dans les mouvements de travailleurs israéliens"]} 1 -2023-07-08 08:22:51.48726 2023-07-08 10:27:24.432109 2aa765f2-a386-414b-827b-09da26dcbc77 {"md5": "0693ec8fb4e66bba650a269bfd4b6246", "pid": "248958445", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/248958445", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/248958445", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Fleming, Pat", "country_associated": "xxk", "authorized_access_point": "Fleming, Pat, 19..-....", "biographical_information": ["Elle a travaillé intensivement avec Joanna Macy pendant 25 ans . A participer à la création du \\"Council of All Beings\\"."]} 2 -2023-07-08 08:22:51.29857 2023-07-08 10:30:25.238645 e780e2c3-51a8-4206-ac1e-484983f9e618 {"md5": "db5cf390d8b5d8a16a3da1f95e919579", "pid": "248391038", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/248391038", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/248391038", "source": "IDREF"}], "preferred_name": "Niel, Paul", "authorized_access_point": "Niel, Paul", "biographical_information": ["Il a collaboré par les fac-similés"]} 2 -2023-07-08 08:22:51.682799 2023-07-08 08:22:51.682803 7c2bf468-3e3e-4d9b-b98d-12ffbc22ad54 {"md5": "3b26e784cbd7b03bd16a45a6a9014306", "pid": "249008173", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/249008173", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/249008173", "source": "IDREF"}], "date_of_birth": "19..", "preferred_name": "Rand, Emily", "country_associated": "xxk", "authorized_access_point": "Rand, Emily, 19..-....", "biographical_information": ["Autrice-illustratrice anglaise"]} 1 -2023-07-08 08:22:51.786831 2023-07-08 08:22:51.786838 31d92c5a-7ff6-4ec0-be9a-af194420c883 {"md5": "8e84bf274e53daa317d9dbf6bd599aa5", "pid": "249129019", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/249129019", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/249129019", "source": "IDREF"}], "date_of_birth": "1984-07-02", "preferred_name": "Aljane, Nabil", "country_associated": "ti", "authorized_access_point": "Aljane, Nabil, 1984-....", "biographical_information": ["Auteur d'une thèse en Géographie et aménagement de l'espace à Montpellier 3 en 2019"]} 1 -2023-07-08 08:22:51.88261 2023-07-08 08:22:51.882614 cb7fbb5a-12f9-4770-83dd-c1b45e45d6c6 {"md5": "c5a0c5d2dbe511e568feae027d947aae", "pid": "24913344X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/24913344X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/24913344X", "source": "IDREF"}], "preferred_name": "McRae, Carla", "country_associated": "at", "authorized_access_point": "McRae, Carla"} 1 -2023-07-08 08:22:52.082175 2023-07-08 08:22:52.082187 56aa7022-a693-4a3b-9ee8-007301fdef2f {"md5": "a3b4763a10e6e7e2a304a766e865b4ed", "pid": "249311461", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/249311461", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/249311461", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Le Brun-Lefèvre, Marie-Ange", "country_associated": "fr", "authorized_access_point": "Le Brun-Lefèvre, Marie-Ange, 19..-....", "biographical_information": ["Pédiatre en PMI, adhérente au centre international de recherche et de développement de l'haptonomie"]} 1 -2023-07-08 08:22:52.158181 2023-07-08 08:22:52.158183 76f6204e-7eca-4ecb-a156-38863006e19b {"md5": "35ea1a2a3946ee45449f5a378e8f9f97", "pid": "249406845", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/249406845", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/249406845", "source": "IDREF"}], "preferred_name": "Steyn, Johanna", "country_associated": "sa", "authorized_access_point": "Steyn, Johanna", "biographical_information": ["Professeur de français au Département de Langues vivantes étrangères de l’Université de Stellenbosch"]} 1 -2023-07-08 08:22:52.233721 2023-07-08 08:22:52.233733 af2d50f7-b077-4496-b035-43a59528a319 {"md5": "041c17867edd695fa331288b91c563a7", "pid": "249486504", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/249486504", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/249486504", "source": "IDREF"}], "variant_name": ["Reszkiewiczowa, Anna"], "date_of_death": "2000", "preferred_name": "Reszkiewicz, Anna", "country_associated": "pl", "variant_access_point": ["Reszkiewiczowa, Anna"], "authorized_access_point": "Reszkiewicz, Anna, ....-2000)"} 1 -2023-07-08 08:22:52.324511 2023-07-08 08:22:52.324517 e295dd7e-b353-4de8-b342-536a38571c3c {"md5": "93ea88dbafb38f44682b44f33e0b5975", "pid": "249730375", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/249730375", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/249730375", "source": "IDREF"}], "date_of_birth": "1984", "preferred_name": "Hasnain, Md Saquib", "country_associated": "xx", "authorized_access_point": "Hasnain, Md Saquib, 1984-....", "biographical_information": ["En poste : Department of pharmacy, Shri Venkateshwara university, Gajraula, Uttar Pradesh, Inde (en 2019)"]} 1 -2023-07-08 08:22:52.423331 2023-07-08 08:22:52.423335 c099ddf3-c137-4c60-b7a2-8b612102d431 {"md5": "81546b21dbf215224da5b0a1bf754a10", "pid": "249743523", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/249743523", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/249743523", "source": "IDREF"}], "preferred_name": "Li, Guangquan", "authorized_access_point": "Li, Guangquan", "biographical_information": ["Statisticien à Northumbria University, Newcastle (UK)"]} 1 -2023-07-08 08:22:52.517336 2023-07-08 08:22:52.517347 462d2de9-1c09-4af6-90ab-84c17fd4f193 {"md5": "a62a1d08406e2f7d6f3c572320e50441", "pid": "249775441", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/249775441", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/249775441", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Ribes, david", "country_associated": "xxu", "authorized_access_point": "Ribes, david, 19..-...."} 1 -2023-07-08 08:22:52.60745 2023-07-08 08:22:52.607456 0f63f759-a5b2-4bc4-bb8a-2906595ea772 {"md5": "3edea30eebc37a6b36480c4c1bab93ef", "pid": "249825074", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": false, "identifier": "http://www.idref.fr/249825074", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/249825074", "source": "IDREF"}], "variant_name": ["Klemm's (Berlin)"], "preferred_name": "Galerie Klemm's (Berlin)", "country_associated": "gw", "variant_access_point": ["Klemm's (Berlin)"], "authorized_access_point": "Galerie Klemm's (Berlin)", "biographical_information": ["La galerie KLEMM'S située dans le quartier de Kreuzberg à Berlin est une galerie d'art contemporain jeune et conceptuelle représentant des artistes internationaux de tous les média, elle a été fondée par Sebastian Klemm et Silvia Bonsiepe (en 2020)"]} 1 -2023-07-08 08:22:52.708757 2023-07-08 08:22:52.708762 aaa1a377-fc91-403a-9838-e4b030448b3a {"md5": "9ff809a99234e729cd2959a65bd30212", "pid": "249834472", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut"], "conference": false, "identifier": "http://www.idref.fr/249834472", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/249834472", "source": "IDREF"}], "preferred_name": "Provinciale Bibliotheek van Limburg (Bibliothèque publique et patrimoniale, bibliothèque scientifique)", "country_associated": "be", "date_of_establishment": "1946", "authorized_access_point": "Provinciale Bibliotheek van Limburg (Bibliothèque publique et patrimoniale, bibliothèque scientifique)"} 1 -2023-07-08 08:22:52.777386 2023-07-08 08:22:52.777389 5a9faa14-cd35-4d31-8b11-bf493c99af6b {"md5": "e976584d5d3152aa24b92d8a9717a883", "pid": "249952378", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": false, "identifier": "http://www.idref.fr/249952378", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/249952378", "source": "IDREF"}], "variant_name": ["Berliner lithographisches Institut", "Königl. Lith. Institut (Berlin)", "Königl. Lithographisches Institut (Berlin)", "Berliner Lithographisches Institut", "Lithographisches Institut (Berlin)", "Königliches Lithographisches Institut (Berlin)", "Geographisch-Lithographisches Institut zu Berlin", "Geographisch-Lithographisches Institut in Berlin", "Geographisch-Lithographisches Institut von J. Sulzer (Berlin)"], "preferred_name": "Geographisch-Lithographisches Institut (Berlin)", "country_associated": "gw", "variant_access_point": ["Berliner lithographisches Institut", "Königl. Lith. Institut (Berlin)", "Königl. Lithographisches Institut (Berlin)", "Berliner Lithographisches Institut", "Lithographisches Institut (Berlin)", "Königliches Lithographisches Institut (Berlin)", "Geographisch-Lithographisches Institut zu Berlin", "Geographisch-Lithographisches Institut in Berlin", "Geographisch-Lithographisches Institut von J. Sulzer (Berlin)"], "date_of_establishment": "1818", "authorized_access_point": "Geographisch-Lithographisches Institut (Berlin)", "biographical_information": ["Fondé en 1818 sous le nom de : Institut royal de lithographie à Berlin. - Devient en 1858: Institut de lithographie géographique de Berlin"]} 1 -2023-07-08 08:22:52.868965 2023-07-08 08:22:52.868975 caf5f878-3ef5-4ef3-80c4-66202cbb37d3 {"md5": "af81e82d9f55a0916c85e805c9d66b18", "pid": "249981394", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/249981394", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/249981394", "source": "IDREF"}], "preferred_name": "Rousset, Vincent", "country_associated": "fr", "authorized_access_point": "Rousset, Vincent", "biographical_information": ["Biologiste"]} 1 -2023-07-08 08:22:52.958822 2023-07-08 08:22:52.958827 52927b6c-36eb-400d-849d-4ff75f534603 {"md5": "88f4784e47b30c6acaca09a38a1cee99", "pid": "250341611", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/250341611", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/250341611", "source": "IDREF"}], "preferred_name": "Marinho, Orlando", "country_associated": "fr", "authorized_access_point": "Marinho, Orlando", "biographical_information": ["Auteur d'un mémoire en histoire du droit et des institutions à l'Université de Nancy 2 en 2004"]} 1 -2023-07-08 08:22:53.039412 2023-07-08 08:22:53.039418 25725146-6345-4993-9ed7-b37655d35c51 {"md5": "6f2f3e3c8009c2d3708fb80f80797491", "pid": "250364913", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/250364913", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/250364913", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Assi, Clair Brice Judicaël", "country_associated": "fr", "authorized_access_point": "Assi, Clair Brice Judicaël, 19..-...."} 1 -2023-07-08 08:22:53.141599 2023-07-08 08:22:53.141606 ff3cf69f-6cdd-4309-a59a-09fbf5dc3be8 {"md5": "71649eecd8bbb37c91e16c08c94002b1", "pid": "250368196", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/250368196", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/250368196", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Shoman, Aruzhan", "country_associated": "fr", "authorized_access_point": "Shoman, Aruzhan, 19..-...."} 1 -2023-07-08 08:22:53.239305 2023-07-08 08:22:53.239312 0be48035-aa59-4d1c-b3b7-2e421808b9b7 {"md5": "416f346f8136dba9f78f7d0f51bb9e8d", "pid": "250382598", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/250382598", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/250382598", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Agusti, Barnadas", "country_associated": "fr", "authorized_access_point": "Agusti, Barnadas, 19..-...."} 1 -2023-07-08 08:22:53.331782 2023-07-08 08:22:53.331787 f21a7c0a-f407-40c0-ba85-5262e863c5f5 {"md5": "89a8c3bae1bb5e5808590ff9037151b2", "pid": "250383926", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/250383926", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/250383926", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Bejanin, Estelle", "country_associated": "fr", "authorized_access_point": "Bejanin, Estelle, 19..-...."} 1 -2023-07-08 08:22:53.41798 2023-07-08 08:22:53.417988 7a81361e-d111-4240-8ecc-8afd3658e8ca {"md5": "a846e8fc21ddf62b82c8f89fc6d56aa5", "pid": "250384183", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/250384183", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/250384183", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Bertagnolli, Caroline", "country_associated": "fr", "authorized_access_point": "Bertagnolli, Caroline, 19..-...."} 1 -2023-07-08 08:22:53.489972 2023-07-08 08:22:53.489979 7fc332fb-0d43-45b0-b8bb-10b287868c12 {"md5": "3693ecdb560fb413e04a1941370c2e75", "pid": "250397072", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/250397072", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/250397072", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Troquier, Christophe", "country_associated": "fr", "authorized_access_point": "Troquier, Christophe, 19..-...."} 1 -2023-07-08 08:22:53.650089 2023-07-08 08:22:53.650097 7b62dc92-daa8-4fd3-8d39-0a84b7e33089 {"md5": "a69ba759159774cadcae3e5408151662", "pid": "250416468", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/250416468", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/250416468", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Leger, Lucas", "country_associated": "fr", "authorized_access_point": "Leger, Lucas, 19..-...."} 1 -2023-07-08 08:22:53.818748 2023-07-08 08:22:53.818752 70f92590-cc47-4fe0-816c-7b3b7ed46c21 {"md5": "cd0d647eb1f1cd39c9c3120619c266ef", "pid": "250599325", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/250599325", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/250599325", "source": "IDREF"}], "date_of_birth": "1944-12-14", "preferred_name": "Kind, Norbert", "country_associated": "gw", "authorized_access_point": "Kind, Norbert, 1944-....", "biographical_information": ["Spécialiste de philologie anglaise et allemande", "Enseignant au lycée de Hürth, Allemagne (en 1989)"]} 1 -2023-07-08 08:22:53.890438 2023-07-08 08:22:53.890444 3c905af2-8f4d-49a9-b64f-99aedd473273 {"md5": "5589ef023eaff83d4302b4ab0db17329", "pid": "250603187", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/250603187", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/250603187", "source": "IDREF"}], "date_of_birth": "1950", "preferred_name": "Bodman, Whitney S.", "country_associated": "xxu", "authorized_access_point": "Bodman, Whitney S., 1950-....", "biographical_information": ["Professeur de religions comparées, Austin Seminary, Tex. (en 2011)"]} 1 -2023-07-08 08:22:53.983499 2023-07-08 08:22:53.983507 f449c005-af6c-48a1-a46e-4a2cf40e6e15 {"md5": "8d86b13fddc0f815dd49b793891c0646", "pid": "250620499", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/250620499", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/250620499", "source": "IDREF"}], "date_of_birth": "1932", "preferred_name": "Jungkuntz, Theodore R.", "country_associated": "xx", "authorized_access_point": "Jungkuntz, Theodore R., 1932-...."} 1 -2023-07-08 08:22:54.281672 2023-07-08 08:22:54.281679 1c62241c-9864-4f0f-9c97-9b9a7ce61cd4 {"md5": "565985f16de02b100edd28252f6d16af", "pid": "250680505", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/250680505", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/250680505", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Maringue, Liliane", "country_associated": "fr", "authorized_access_point": "Maringue, Liliane, 19..-....", "biographical_information": ["A soutenu un mémoire en médecine agricole (Tours, 1977)"]} 1 -2023-07-08 08:22:54.365443 2023-07-08 08:22:54.365452 d0454b41-6645-4021-9541-88938b52c6cd {"md5": "91604018e92c9d213a2698ee80d89eda", "pid": "250907801", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/250907801", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/250907801", "source": "IDREF"}], "preferred_name": "National center for atmospheric research (Etats-Unis). Atmospheric chemistry division", "country_associated": "xxu", "date_of_establishment": "19XX", "authorized_access_point": "National center for atmospheric research (Etats-Unis). Atmospheric chemistry division"} 1 -2023-07-08 08:22:54.450382 2023-07-08 08:22:54.450389 a97e8a02-6d5d-46e1-a8a9-afd10bf9a4e4 {"md5": "57a5d2d55c69264936e4ed5bdaa9f040", "pid": "250949903", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifier": "http://www.idref.fr/250949903", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/250949903", "source": "IDREF"}], "variant_name": ["JCDCG 2000"], "preferred_name": "Japan Conference on Discrete and Computational Geometry", "country_associated": "ja", "date_of_termination": "2000-11-25", "variant_access_point": ["JCDCG 2000"], "date_of_establishment": "2000-11-22", "authorized_access_point": "Japan Conference on Discrete and Computational Geometry (2000 ; Tokyo)"} 1 -2023-07-08 08:22:54.548827 2023-07-08 08:22:54.548836 9f3cc579-0076-44fd-80d7-8f027e313a44 {"md5": "e70b3717adac7ab5f34cd89db0ee49d4", "pid": "251014878", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifier": "http://www.idref.fr/251014878", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251014878", "source": "IDREF"}], "variant_name": ["Khrustalev, A. V."], "date_of_birth": "19XX", "preferred_name": "Hrustalev, A. V.", "country_associated": "ru", "variant_access_point": ["Khrustalev, A. V."], "authorized_access_point": "Hrustalev, A. V., 19..-...."} 1 -2023-07-08 08:22:54.068092 2023-07-08 10:26:40.401896 52c5309c-354b-446c-b711-cafe2c86e772 {"md5": "fce1dfdcda0c482ee0aeb45b99766bbb", "pid": "250649691", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/250649691", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/250649691", "source": "IDREF"}], "date_of_birth": "1930-01-12", "preferred_name": "Pretre, Gilbert", "country_associated": "fr", "authorized_access_point": "Pretre, Gilbert, 1930-....", "biographical_information": ["Titulaire d'une thèse en Médecine (Lyon, 1957)"]} 2 -2023-07-08 08:22:53.736261 2023-07-08 10:29:33.293492 84c3d278-a204-41a5-b726-ceb4ac5cf977 {"md5": "e81dc3963192a389985dfc6632a88018", "pid": "250507617", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/250507617", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/250507617", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Slaouti, Omar", "country_associated": "fr", "authorized_access_point": "Slaouti, Omar, 19..-...."} 2 -2023-07-08 08:22:54.801841 2023-07-08 08:22:54.801848 6f3ab365-a651-45af-beeb-298de34e3efa {"md5": "41baff037f89c186bff003d0033ec8d6", "pid": "251138607", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/251138607", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251138607", "source": "IDREF"}], "variant_name": ["Lewandowski, Hervé"], "date_of_birth": "1964", "preferred_name": "Lewandowski, Hervé", "country_associated": "fr", "variant_access_point": ["Lewandowski, Hervé"], "authorized_access_point": "Lewandowski, Hervé, 1964-....", "biographical_information": ["Photographe d'objets d'Art"]} 1 -2023-07-08 08:22:55.062534 2023-07-08 08:22:55.062542 4d07905f-4b09-4919-b4a7-914dd6c63d0b {"md5": "b44bd0753b40d8de5a0574a1a40f002a", "pid": "251278492", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["pol"], "identifier": "http://www.idref.fr/251278492", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251278492", "source": "IDREF"}], "preferred_name": "Pomian, Andrzej", "country_associated": "pl", "authorized_access_point": "Pomian, Andrzej"} 1 -2023-07-08 08:22:55.132165 2023-07-08 08:22:55.132171 2f7a0e89-7b29-4a8a-8bb6-0f9011728bad {"md5": "de1a8212c2fb082c9cdf59b18f4b3196", "pid": "251314677", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/251314677", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251314677", "source": "IDREF"}], "date_of_birth": "1934", "preferred_name": "Bergsma, Jurrit", "country_associated": "xx", "authorized_access_point": "Bergsma, Jurrit, 1934-....", "biographical_information": ["En poste:Loyola university of Chicago, Ill"]} 1 -2023-07-08 08:22:55.209287 2023-07-08 08:22:55.209292 e9079e31-df38-4b76-a0b7-f8b349d16c8c {"md5": "72680ebf2a25a41f498abc100d62aec2", "pid": "251360164", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/251360164", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251360164", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Bernabé, Claude", "country_associated": "fr", "authorized_access_point": "Bernabé, Claude, 19..-...."} 1 -2023-07-08 08:22:55.291367 2023-07-08 08:22:55.291372 574c9073-c8be-4e95-bfcd-065c3a8ec0d9 {"md5": "7a843091a3d6800e143b93352024e578", "pid": "251394581", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/251394581", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251394581", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Forgács, Robert", "country_associated": "at", "authorized_access_point": "Forgács, Robert, 19..-....", "biographical_information": ["Musicologue. - Traducteur"]} 1 -2023-07-08 08:22:55.379664 2023-07-08 08:22:55.379671 e6adfd3a-2040-4b9d-b7c4-5b6f4972d315 {"md5": "c3714dbf6b66c132de3f4954c455898e", "pid": "251396312", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/251396312", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251396312", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Martine, Layng Junior", "country_associated": "xx", "authorized_access_point": "Martine, Layng Junior, 19..-....", "biographical_information": ["Musicien et parolier"]} 1 -2023-07-08 08:22:55.453422 2023-07-08 08:22:55.453437 3f0e3558-d916-479f-8a69-91d2fd0e59b6 {"md5": "dc8a87303b2a96e0abe19bac96a202a3", "pid": "251411699", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/251411699", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251411699", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Panas, Mario", "country_associated": "xx", "authorized_access_point": "Panas, Mario, 19..-....", "biographical_information": ["Compositeur de chansons"]} 1 -2023-07-08 08:22:55.540496 2023-07-08 08:22:55.540501 1e6edcfc-d8a4-45ba-b46f-501d212bae5d {"md5": "e2fee55a6ad85da7e8a13a7c4d174ee1", "pid": "251429180", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/251429180", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251429180", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Henriot, Véronique", "country_associated": "fr", "authorized_access_point": "Henriot, Véronique, 19..-...."} 1 -2023-07-08 08:22:54.704239 2023-07-08 10:28:43.627279 4cd3dd98-f0e1-4023-b097-b437ac90338a {"md5": "59c79aa7c7de8b17ba24c524dfa2fc1a", "pid": "251131807", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/251131807", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251131807", "source": "IDREF"}], "preferred_name": "Hurst, R.C.", "country_associated": "xxk", "authorized_access_point": "Hurst, R.C."} 2 -2023-07-08 08:22:54.876633 2023-07-08 10:29:04.866104 6464f042-46aa-45a7-a82d-c65a7650bec0 {"md5": "0aae897287a5aa7b0e0aa8ac98ed7c4b", "pid": "251195627", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/251195627", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251195627", "source": "IDREF"}], "preferred_name": "Vuittenez, Florence", "country_associated": "fr", "authorized_access_point": "Vuittenez, Florence", "biographical_information": ["Pharmacienne d'officine à Mondoubleau (Loir et Cher, France). Directrice d’une thèse pratique d'exercice (Pharmacie) à l'université de Tours en 2020"]} 2 -2023-07-08 08:22:54.974734 2023-07-08 10:29:05.20537 d309f17e-d511-4d8c-877d-8758449d8c52 {"md5": "3d03190b8fddd8ab35cfe40f4fe78a90", "pid": "251202283", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/251202283", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251202283", "source": "IDREF"}], "date_of_birth": "1912-05-09", "date_of_death": "2001-02-13", "preferred_name": "Simon, George Thomas", "country_associated": "xxu", "authorized_access_point": "Simon, George Thomas, 1912-2001", "biographical_information": ["Musicologue", "Lieu de naissance New York. Lieu de décès New York"]} 2 -2023-07-08 08:22:55.609573 2023-07-08 08:22:55.609578 4abfe909-3800-42a9-94a8-1bec63b45df5 {"md5": "cbbdefc504539b943b0c766eb701fb07", "pid": "251432122", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/251432122", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251432122", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Lauren, Jillian", "country_associated": "xxu", "authorized_access_point": "Lauren, Jillian, 19..-....", "biographical_information": ["Master en \\"écriture créative\\". - Écrivain et comédienne"]} 1 -2023-07-08 08:22:55.677772 2023-07-08 08:22:55.677777 9060e2ca-0c2e-43ea-a4e7-088bb7d118c0 {"md5": "0336601e6d54a73dd3b31b445623a138", "pid": "251443361", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/251443361", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251443361", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Valdambrini, Fabio", "country_associated": "it", "authorized_access_point": "Valdambrini, Fabio, 19..-....", "biographical_information": ["Auteur de bandes dessinées"]} 1 -2023-07-08 08:22:55.767552 2023-07-08 08:22:55.767561 5faaeebf-9307-42ba-8088-7cb0fc3744ca {"md5": "9f801ade26d86d0c43db10fbef7d4ae8", "pid": "251455394", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/251455394", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251455394", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Lancaster, Mike A.", "country_associated": "xxk", "authorized_access_point": "Lancaster, Mike A., 19..-....", "biographical_information": ["Auteur de science-fiction"]} 1 -2023-07-08 08:22:55.839742 2023-07-08 08:22:55.839748 380c054b-8615-4c7f-ae46-72aa21f84a57 {"md5": "2b84c7bb4523f4f12e4e0a20b30820c1", "pid": "251520528", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/251520528", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251520528", "source": "IDREF"}], "date_of_birth": "1940", "preferred_name": "Lye, Kåre Arnstein", "country_associated": "no", "authorized_access_point": "Lye, Kåre Arnstein, 1940-....", "biographical_information": ["En poste : Department of ecology and natural resources management, Norwegian university of life sciences, Ås (en 2012)"]} 1 -2023-07-08 08:22:55.932959 2023-07-08 08:22:55.932974 92a884d1-1054-4869-8672-ef2eacc595c7 {"md5": "664ca22885f144816a1afc9124d3a5c7", "pid": "25154091X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/25154091X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25154091X", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Levine, Carin", "country_associated": "xxu", "authorized_access_point": "Levine, Carin, 19..-....", "biographical_information": ["Flûtiste"]} 1 -2023-07-08 08:22:56.027557 2023-07-08 08:22:56.027562 7dbb6ed3-ea09-4f21-bc6b-d07b8a12e40b {"md5": "ccfc90b1cd10f7857fd94b8d02a5827f", "pid": "25156584X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/25156584X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25156584X", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Marcinkowska, Barbara", "authorized_access_point": "Marcinkowska, Barbara, 19..-....", "biographical_information": ["Violoncelliste"]} 1 -2023-07-08 08:22:56.114043 2023-07-08 08:22:56.114047 4e3a9d8a-f62d-4179-a93c-74c62ed694d5 {"md5": "441ae073d9a0d7d6c643b739127f7807", "pid": "25158917X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/25158917X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25158917X", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Metzler, Berenike", "country_associated": "gw", "authorized_access_point": "Metzler, Berenike, 19..-....", "biographical_information": ["Écrit aussi en arabe", "Chaire de philologie orientale et d'études islamiques : Lehrstuhl für Orientalische Philologie und Islamwissenschaft, Friedrich-Alexander-Universität Erlangen-Nürnberg, Erlangen, Allemagne (en 2017)"]} 1 -2023-07-08 08:22:56.178664 2023-07-08 08:22:56.178667 f8fa3421-b107-48e9-a614-e612a6e61e1c {"md5": "931c41d36d2f177040149f60ff153ccf", "pid": "251615014", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger", "spa"], "identifier": "http://www.idref.fr/251615014", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251615014", "source": "IDREF"}], "date_of_birth": "1906", "date_of_death": "1993", "preferred_name": "Blum, Sigwart", "country_associated": "ag", "authorized_access_point": "Blum, Sigwart, 1906-1993", "biographical_information": ["Historien d'art. - Photographe. - Né en Allemagne, s'installe en Argentine en 1936"]} 1 -2023-07-08 08:22:56.259831 2023-07-08 08:22:56.259837 06926ad8-dbea-4a58-95b8-9046442cf275 {"md5": "2446a9a0e87b142cbe6a7c889ea32ad5", "pid": "251625338", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/251625338", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251625338", "source": "IDREF"}], "variant_name": ["Gortchakova, A. A."], "date_of_birth": "1842", "date_of_death": "1913", "preferred_name": "Gorčakova, Aleksandra Aleksandrovna", "country_associated": "ru", "variant_access_point": ["Gortchakova, A. A."], "parallel_access_point": ["Горчакова, Александра Александровна, 1842-1913"], "authorized_access_point": "Gorčakova, Aleksandra Aleksandrovna, 1842-1913", "biographical_information": ["Artiste lyrique (soprano). - Traductrice. - Pédagogue. - Connue aussi sous le pseudonyme : Santagano"]} 1 -2023-07-08 08:22:56.439646 2023-07-08 08:22:56.439657 968ba176-f45b-41b0-80c9-31f9189ba666 {"md5": "8467901454d0a42067f8266c2f16d554", "pid": "251650375", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/251650375", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251650375", "source": "IDREF"}], "date_of_birth": "1981-03-15", "preferred_name": "Djeya kamdom, Yves gabriel", "country_associated": "cm", "authorized_access_point": "Djeya kamdom, Yves gabriel, 1981-....", "biographical_information": ["Auteur d'une thèse en Droit public à Lille 2 en 2019"]} 1 -2023-07-08 08:22:56.525613 2023-07-08 08:22:56.525622 fc918d6a-f3c4-45bf-895d-88ef9a1a07de {"md5": "288c63dccf7bf22a2726fd849c445765", "pid": "251660346", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/251660346", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251660346", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Bodoc, Clémence", "country_associated": "fr", "authorized_access_point": "Bodoc, Clémence, 19..-....", "biographical_information": ["Diplômée de Science po Lille, rédactrice en chef d'un magazine féminin, elle se partage aujourd'hui entre un projet créateur de valeur et sa série de podcast"]} 1 -2023-07-08 08:22:56.600656 2023-07-08 08:22:56.600661 e3559913-ae6c-4f3c-b684-6529e4595f12 {"md5": "cdd370540937bf299e7b66cd68720e1c", "pid": "251871533", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut"], "conference": false, "identifier": "http://www.idref.fr/251871533", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251871533", "source": "IDREF"}], "preferred_name": "Stichting H.N. Werkman (Pays-Bas)", "country_associated": "ne", "date_of_establishment": "1962", "authorized_access_point": "Stichting H.N. Werkman (Pays-Bas)", "biographical_information": ["Fondation créée dans le but de promouvoir l'oeuvre de Hendrik Nicolaas Werman, artiste et imprimeur, auprès d'un large public, en partie grâce à la publication d'un catalogue raisonné. Son premier président fut Piet Sanders."]} 1 -2023-07-08 08:22:56.682118 2023-07-08 08:22:56.682121 5dd1edf8-ae59-453e-93f7-7e160b786a8e {"md5": "bce7a48efefda98e163216fc4d8ad84a", "pid": "252252799", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": true, "identifier": "http://www.idref.fr/252252799", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/252252799", "source": "IDREF"}], "preferred_name": "Les journées de l'énergie", "authorized_access_point": "Les journées de l'énergie (2001 ; Palais de la découverte, Paris)"} 1 -2023-07-08 08:22:56.774472 2023-07-08 08:22:56.774478 2bfe4960-bfcd-49c4-9922-6665fce3192a {"md5": "af70d66d15f80a4887b1a880923fad89", "pid": "25234717X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/25234717X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25234717X", "source": "IDREF"}], "date_of_birth": "1990-10-06", "preferred_name": "Desidera, Elena", "country_associated": "it", "authorized_access_point": "Desidera, Elena, 1990-....", "biographical_information": ["Auteur d'une thèse en Sciences de l'environnement à Université Côte d'Azur en 2020"]} 1 -2023-07-08 08:22:56.85812 2023-07-08 08:22:56.858126 ef954ad2-255e-4546-a77e-112c756c458e {"md5": "1323a46cb2e317e0c21e86402ac7037e", "pid": "252382781", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/252382781", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/252382781", "source": "IDREF"}], "date_of_birth": "1988-12-16", "preferred_name": "Leglise, Joris", "country_associated": "fr", "authorized_access_point": "Leglise, Joris, 1988-....", "biographical_information": ["Auteur d'une thèse en Chimie et Physique de l’Environnement à Orléans en 2019"]} 1 -2023-07-08 08:22:56.965035 2023-07-08 08:22:56.96504 1433d4ea-7185-4fb3-917d-24f95b2e70cb {"md5": "2f6957b23fcf0f83b5a4f1cf41235d73", "pid": "252388208", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/252388208", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/252388208", "source": "IDREF"}], "variant_name": ["Sussman/Prejza and company"], "preferred_name": "Sussman / Prejza & company", "country_associated": "xxu", "variant_access_point": ["Sussman/Prejza and company"], "authorized_access_point": "Sussman / Prejza & company", "biographical_information": ["Agence d'architecture"]} 1 -2023-07-08 08:22:57.080415 2023-07-08 08:22:57.080419 8d3707da-c13c-4151-9b17-a4f38941cfb2 {"md5": "6ef6a15eec7cbd12806dddc4899424db", "pid": "252426398", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/252426398", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/252426398", "source": "IDREF"}], "preferred_name": "Combes-Deslaugiers, Barbara", "country_associated": "fr", "authorized_access_point": "Combes-Deslaugiers, Barbara", "biographical_information": ["Médecin"]} 1 -2023-07-08 08:22:57.166939 2023-07-08 08:22:57.166943 277c6556-5f88-4b22-88b2-14648b230183 {"md5": "050c7a9c7038810a714ae5c661fd759b", "pid": "252437888", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "médecin", "identifier": "http://www.idref.fr/252437888", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/252437888", "source": "IDREF"}], "date_of_birth": "18XX", "date_of_death": "19XX", "preferred_name": "Gleize, P., médecin", "authorized_access_point": "Gleize, P., 18..-19.., médecin", "biographical_information": ["Médecin"]} 1 -2023-07-08 08:22:57.249229 2023-07-08 08:22:57.249237 92d29883-523e-4240-b12a-557b465650ff {"md5": "948ae6aeda31d48dbe1287eac1d3af4a", "pid": "252443748", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/252443748", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/252443748", "source": "IDREF"}], "variant_name": ["Navailles-Angos, Pyrénées-Atlantiques. Bibliothèque municipale"], "preferred_name": "Bibliothèque municipale (Navailles-Angos, Pyrénées-Atlantiques)", "country_associated": "fr", "variant_access_point": ["Navailles-Angos, Pyrénées-Atlantiques. Bibliothèque municipale"], "authorized_access_point": "Bibliothèque municipale (Navailles-Angos, Pyrénées-Atlantiques)"} 1 -2023-07-08 08:22:57.330214 2023-07-08 08:22:57.330222 763a65b2-59b5-471e-982a-55fa969531ed {"md5": "abcdaabe906b3babea27895750ad887f", "pid": "252462599", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/252462599", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/252462599", "source": "IDREF"}], "date_of_birth": "1956", "preferred_name": "Raja, Raffaele", "country_associated": "it", "authorized_access_point": "Raja, Raffaele, 1956-....", "biographical_information": ["Architecte"]} 1 -2023-07-08 08:22:57.413198 2023-07-08 08:22:57.413201 85706f7d-1dc6-440f-b7f6-70d74141bf98 {"md5": "1cf8ae036f4f460535f7c022a5c5ad0e", "pid": "25256541X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/25256541X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25256541X", "source": "IDREF"}], "date_of_birth": "1790", "date_of_death": "1840", "preferred_name": "Agazzini, Michele", "country_associated": "it", "authorized_access_point": "Agazzini, Michele, 1790-1840", "biographical_information": ["Auteur"]} 1 -2023-07-08 08:22:57.492425 2023-07-08 08:22:57.492432 11cc98e5-4878-4db8-a5fd-b819966422e8 {"md5": "9cb1f309d13a6aea445b739ab8b8c203", "pid": "25268088X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/25268088X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25268088X", "source": "IDREF"}], "date_of_birth": "1964", "preferred_name": "Göben, Jens", "country_associated": "xx", "authorized_access_point": "Göben, Jens, 1964-....", "biographical_information": ["En poste, Bundesinstitut für Arzneimittel und Medizinprodukte, Bonn, Allemagne (en 2004)"]} 1 -2023-07-08 08:22:57.57257 2023-07-08 08:22:57.572574 09d72383-d5cd-4acb-8c71-fb8a3ad4be54 {"md5": "5335799893f1b5b7e433a7eeeee9ec63", "pid": "252755294", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["tam", "eng"], "identifier": "http://www.idref.fr/252755294", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/252755294", "source": "IDREF"}], "variant_name": ["சோமசுந்தரம், பி. எஸ்.", "Somasundaram, P.S."], "date_of_birth": "1932", "preferred_name": "Cōmacuntaram, Pi. Es.", "country_associated": "ii", "variant_access_point": ["Somasundaram, P.S."], "authorized_access_point": "Cōmacuntaram, Pi. Es., 1932-....", "biographical_information": ["Professeur et chef du département de tamoul, D.G. Vaishnava collège, Chennai, TN, Inde du Sud"]} 1 -2023-07-08 08:22:57.67013 2023-07-08 08:22:57.670134 4de82472-3e54-459b-9f5f-afc80fbe1c4e {"md5": "c9987967f581c7f34ca74b1311a8ce93", "pid": "252764277", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/252764277", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/252764277", "source": "IDREF"}], "date_of_birth": "1939-03-22", "preferred_name": "Westi, Kurt", "country_associated": "dk", "authorized_access_point": "Westi, Kurt, 1939-....", "biographical_information": ["Ténor", "Débute en 1960 à l'Opéra de Fionie, Odense", "Membre de la troupe de l'Opéra d'Oslo (de 1980 à 1986) et de Nationaltheater, Mannheim (depuis 1986)"]} 1 -2023-07-08 08:22:57.755183 2023-07-08 08:22:57.755189 8f9b2f59-b4ab-412d-b405-f7df3c93fc4d {"md5": "663ee2500e50c500e1c96715028be16f", "pid": "252855477", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut"], "identifier": "http://www.idref.fr/252855477", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/252855477", "source": "IDREF"}], "variant_name": ["Hendriks, Louis", "Hendrix, Léon-Louis"], "date_of_birth": "1827", "date_of_death": "1888-09-22", "preferred_name": "Hendrix, Louis", "country_associated": "be", "variant_access_point": ["Hendriks, Louis", "Hendrix, Léon-Louis"], "authorized_access_point": "Hendrix, Louis, 1827-1888", "biographical_information": ["Peintre"]} 1 -2023-07-08 08:22:57.830074 2023-07-08 08:22:57.830087 d698ffd6-9511-4847-8623-41885b462c57 {"md5": "780983c5dfe7c14289d187e262d91e08", "pid": "252916263", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/252916263", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/252916263", "source": "IDREF"}], "preferred_name": "Glöckner, Melanie", "country_associated": "gw", "authorized_access_point": "Glöckner, Melanie", "biographical_information": ["Etudiante en égyptologie"]} 1 -2023-07-08 08:22:57.910967 2023-07-08 08:22:57.910971 5f3de714-937b-4776-a462-f7c89c26b650 {"md5": "6245bc2061a9b467a9f7c1fe59811350", "pid": "25295114X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/25295114X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25295114X", "source": "IDREF"}], "date_of_birth": "1928-08-27", "date_of_death": "1971-02-03", "preferred_name": "Gygax, Ueli", "country_associated": "sz", "authorized_access_point": "Gygax, Ueli, 1928-1971", "biographical_information": ["Peintre suisse"]} 1 -2023-07-08 08:22:57.990736 2023-07-08 08:22:57.990741 4b651254-ada6-4fea-bcf0-43a1d8560a93 {"md5": "ed0952b64c559ca2790303942368540c", "pid": "25304653X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/25304653X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25304653X", "source": "IDREF"}], "preferred_name": "Schwartz, Robert B.", "country_associated": "xxk", "authorized_access_point": "Schwartz, Robert B.", "biographical_information": ["Educateur"]} 1 -2023-07-08 08:22:58.172742 2023-07-08 08:22:58.172747 637635e3-4840-4634-bce7-a34c39129b76 {"md5": "03f7dd0755b5686330bc27c8d9111499", "pid": "253180627", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/253180627", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/253180627", "source": "IDREF"}], "date_of_birth": "19?", "preferred_name": "Katz, Gal", "authorized_access_point": "Katz, Gal, 19?-....", "biographical_information": ["Auteur"]} 1 -2023-07-08 08:22:58.256548 2023-07-08 08:22:58.256557 d8c4f0b6-518d-4c6c-8f28-0bd2b70bb54f {"md5": "eb2be833e4c77d0e6852dafac1f8780a", "pid": "253203155", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/253203155", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/253203155", "source": "IDREF"}], "preferred_name": "Fincham, Walter Henry Angel", "country_associated": "xxk", "authorized_access_point": "Fincham, Walter Henry Angel", "biographical_information": ["Physicien", "Spécialiste de physique optique"]} 1 -2023-07-08 08:22:58.355027 2023-07-08 08:22:58.355033 b4f20f8f-411d-47ab-9b8e-ec68e9115af8 {"md5": "6bf288807c5f484fe428fcf6e0623a5b", "pid": "25322859X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "identifier": "http://www.idref.fr/25322859X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25322859X", "source": "IDREF"}], "variant_name": ["神田, 由築"], "date_of_birth": "1965", "preferred_name": "Kanda, Yutsuki", "country_associated": "ja", "variant_access_point": ["神田, 由築, 1965-...."], "authorized_access_point": "Kanda, Yutsuki, 1965-...."} 1 -2023-07-08 08:22:58.424751 2023-07-08 08:22:58.424757 2566698a-9d88-43f2-8372-63bb2d6275b3 {"md5": "71464c7ca91a6a201e73d59472f02225", "pid": "25324403X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/25324403X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25324403X", "source": "IDREF"}], "variant_name": ["Arnal, Nikita Emilie Marie"], "date_of_birth": "1994-10-12", "preferred_name": "Arnal, Nikita", "country_associated": "fr", "variant_access_point": ["Arnal, Nikita Emilie Marie"], "authorized_access_point": "Arnal, Nikita, 1994-....", "biographical_information": ["Titulaire d'une thèse d'exercice en médecine vétérinaire (Lyon 1, 2020)"]} 1 -2023-07-08 08:22:58.525926 2023-07-08 08:22:58.525933 842e6681-1e37-40a1-b310-4745399dc7b5 {"md5": "7647a827fe437bb2d53237e200379ce2", "pid": "253263298", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/253263298", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/253263298", "source": "IDREF"}], "preferred_name": "Baweja, Priyanka", "country_associated": "ii", "authorized_access_point": "Baweja, Priyanka"} 1 -2023-07-08 08:22:58.687605 2023-07-08 08:22:58.68761 5e569515-999c-425d-9d9f-edb862af889f {"md5": "e82d93caf7e9682b5042df25e1599ccc", "pid": "253610958", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["vie"], "conference": false, "identifier": "http://www.idref.fr/253610958", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/253610958", "source": "IDREF"}], "variant_name": ["Vietnam. Viện Nghiên cứu Trung Quốc", "Institut de recherches de Chine (Vietnam)", "Uỷ ban khoa học xã hội (Việt Nam). Viện Nghiên cứu Trung Quốc", "Trung tâm nghiên cứu Trung Quốc", "Comité des Sciences sociales du Viet Nam. Institut de recherches de Chine", "Trung tâm khoa học xã hội và nhân văn quốc gia (Việt Nam). Institut de recherches de Chine", "Centre national des Sciences sociales et Humaines (Việt Nam). Institut de recherches de Chine", "Viện Hàn lâm Khoa học xã hội Việt Nam. Viện Nghiên cứu Trung Quốc", "Trung tâm khoa học xã hội và nhân văn quốc gia (Việt Nam). Viện Nghiên cứu Trung Quốc", "Académie des sciences sociales. Institut de recherches de Chine", "Studie Center for China (Vietnam)", "Studie Center for China of Vietnam"], "preferred_name": "Viện Nghiên cứu Trung Quốc (Việt Nam)", "country_associated": "vm", "variant_access_point": ["Vietnam. Viện Nghiên cứu Trung Quốc", "Institut de recherches de Chine (Vietnam)", "Uỷ ban khoa học xã hội (Việt Nam). Viện Nghiên cứu Trung Quốc", "Trung tâm nghiên cứu Trung Quốc", "Comité des Sciences sociales du Viet Nam. Institut de recherches de Chine", "Trung tâm khoa học xã hội và nhân văn quốc gia (Việt Nam). Institut de recherches de Chine", "Centre national des Sciences sociales et Humaines (Việt Nam). Institut de recherches de Chine", "Viện Hàn lâm Khoa học xã hội Việt Nam. Viện Nghiên cứu Trung Quốc", "Trung tâm khoa học xã hội và nhân văn quốc gia (Việt Nam). Viện Nghiên cứu Trung Quốc", "Académie des sciences sociales. Institut de recherches de Chine", "Studie Center for China (Vietnam)", "Studie Center for China of Vietnam"], "authorized_access_point": "Viện Nghiên cứu Trung Quốc (Việt Nam)"} 1 -2023-07-08 08:22:58.770464 2023-07-08 08:22:58.77047 2bcb2b21-d68e-49a7-bb26-3c61640a9511 {"md5": "df7c2e1c314f3a5b3d21ceef5a09c36b", "pid": "253613957", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/253613957", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/253613957", "source": "IDREF"}], "variant_name": ["Joffres, Pierre-Didier"], "date_of_birth": "17XX", "date_of_death": "18XX", "preferred_name": "Joffrès, Pierre-Didier", "country_associated": "fr", "variant_access_point": ["Joffres, Pierre-Didier"], "authorized_access_point": "Joffrès, Pierre-Didier, 17..-18..", "biographical_information": ["Avocat à la Cour royale de Paris"]} 1 -2023-07-08 08:22:58.881136 2023-07-08 08:22:58.881146 18b48a42-e6ae-4fee-a9e8-b2f295d76c14 {"md5": "de01ea6e01e935c86b914e4875c3e97f", "pid": "253654041", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/253654041", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/253654041", "source": "IDREF"}], "variant_name": ["Dupasquier, Jacques-Louis", "Pasquier, Jacques-Louis du"], "date_of_birth": "1762", "date_of_death": "1830", "preferred_name": "Du Pasquier, Jacques-Louis", "country_associated": "sz", "variant_access_point": ["Dupasquier, Jacques-Louis", "Pasquier, Jacques-Louis du"], "authorized_access_point": "Du Pasquier, Jacques-Louis, 1762-1830", "biographical_information": ["Pasteur neuchâtelois (consacré le 6 août 1783). - Chapelain du roi de Prusse à Berlin (1789-ca.1791). - Député aux Audiences générales. - Un des fondateurs de la Caisse d'épargne (1812). - Aumônier du contingent neuchâtelois levé en 1815. - Rédacteur du \\"Messager boiteux de Neuchâtel\\" (1805-1830)"]} 1 -2023-07-08 08:22:58.967032 2023-07-08 08:22:58.967041 dfc13aaf-9a84-484a-babc-646f2a0c8950 {"md5": "58f71ce81651c4047b1705a8656748ea", "pid": "253760844", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/253760844", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/253760844", "source": "IDREF"}], "preferred_name": "Lazana, Aikaterini", "country_associated": "xx", "authorized_access_point": "Lazana, Aikaterini", "biographical_information": ["Juriste"]} 1 -2023-07-08 08:22:59.144911 2023-07-08 08:22:59.144914 5eb442a8-bfbe-402e-aa39-adc0b74eb0b3 {"md5": "79ed7d0fbce6eab90e9efba42fde5a0c", "pid": "253814103", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifier": "http://www.idref.fr/253814103", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/253814103", "source": "IDREF"}], "variant_name": ["FST TCS 2000", "FSTTCS 2000"], "preferred_name": "Conference on foundations of software technology and theoretical computer science", "country_associated": "ii", "date_of_termination": "2000-12-15", "variant_access_point": ["FST TCS 2000", "FSTTCS 2000"], "date_of_establishment": "2000-12-13", "authorized_access_point": "Conference on foundations of software technology and theoretical computer science (20 ; 2000 ; New Delhi)"} 1 -2023-07-08 08:22:58.607783 2023-07-08 10:27:35.578303 1fb2d860-d701-4cd0-bf0b-3c79bfead796 {"md5": "941ebbc4e22e7506224c16b4730e7906", "pid": "253507790", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/253507790", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/253507790", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Kapfer, Bruno", "country_associated": "fr", "authorized_access_point": "Kapfer, Bruno, 19..-....", "biographical_information": ["Auteur(e) d'une thèse de docteur-ingénieur en électrochimie analytique (Grenoble INPG, 1982)"]} 2 -2023-07-08 08:22:59.230982 2023-07-08 08:22:59.230992 867764fd-65de-4afe-a191-55f72ec390ad {"md5": "890f377504f9a59e7ef3925a8dc4cb6a", "pid": "253879965", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/253879965", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/253879965", "source": "IDREF"}], "variant_name": ["Wohlfahrt, Joannes Augustus"], "date_of_birth": "1750?", "preferred_name": "Wohlfahrt, Johann August", "country_associated": "gw", "variant_access_point": ["Wohlfahrt, Joannes Augustus, 1750?-...."], "authorized_access_point": "Wohlfahrt, Johann August, 1750?-....", "biographical_information": ["Médecin"]} 1 -2023-07-08 08:22:59.583431 2023-07-08 08:22:59.58344 84e948b1-68d9-4820-bb1d-03ad7096cf02 {"md5": "083a125349e6c4db2e8dcebb6401d87b", "pid": "254110754", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["pol"], "identifier": "http://www.idref.fr/254110754", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254110754", "source": "IDREF"}], "variant_name": ["Kavalec, Stefan", "Kavalec, stepan"], "date_of_birth": "1953", "preferred_name": "Kawalec, Stefan", "country_associated": "pl", "variant_access_point": ["Kavalec, Stefan", "Kavalec, stepan"], "authorized_access_point": "Kawalec, Stefan, 1953-....", "biographical_information": ["Née en 1953. Economiste."]} 1 -2023-07-08 08:22:59.666035 2023-07-08 08:22:59.666039 697c7820-f4ca-4e9e-82a3-322df2b0dac1 {"md5": "0374c66514d171976f49c08039c47bf1", "pid": "254146279", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/254146279", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254146279", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Ster, François", "country_associated": "fr", "authorized_access_point": "Ster, François, 19..-....", "biographical_information": ["Auteur en médecine"]} 1 -2023-07-08 08:22:59.74861 2023-07-08 08:22:59.748624 fa39662e-01f9-48b1-9cd6-669e11412fba {"md5": "c0c21bc3b3215d87223a14efa0ae4224", "pid": "254215696", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/254215696", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254215696", "source": "IDREF"}], "date_of_birth": "1932", "date_of_death": "2015", "preferred_name": "Green, Martin", "country_associated": "xxk", "authorized_access_point": "Green, Martin, 1932-2015", "biographical_information": ["Ecrivain, poète anglais né à Stockport (Cheshire). Il fonde le magasine littéraire \\"Nimbus\\" avec Tristram Hull en 1951."]} 1 -2023-07-08 08:22:59.836785 2023-07-08 08:22:59.836793 bc76ff3e-851a-4cf7-98d8-c5ad559c39e3 {"md5": "c2310f7188c574bbe6d181593b5a50ae", "pid": "254232787", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifier": "http://www.idref.fr/254232787", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254232787", "source": "IDREF"}], "preferred_name": "Symposium on foundations of computer science", "country_associated": "xxu", "date_of_termination": "1993-11-05", "date_of_establishment": "1993-11-03", "authorized_access_point": "Symposium on foundations of computer science (34 ; 1993 ; Palo Alto, Calif.)"} 1 -2023-07-08 08:22:59.933796 2023-07-08 08:22:59.933805 d33a8e11-bfc5-41b4-a743-68246000a82d {"md5": "1fc5c35aaeffaa67996a145669656693", "pid": "254344445", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifier": "http://www.idref.fr/254344445", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254344445", "source": "IDREF"}], "preferred_name": "IMA Conference on Cryptography and coding", "country_associated": "xxk", "date_of_termination": "1997-12-19", "date_of_establishment": "1997-12-17", "authorized_access_point": "IMA Conference on Cryptography and coding (06 ; 1997 ; Cirencester, Royaume-Uni)"} 1 -2023-07-08 08:23:03.012719 2023-07-08 08:23:03.012732 670fd45c-ae7e-40a3-a6cd-9c49175202aa {"md5": "8f9c677c30b0c62002fefa534b1d0f41", "pid": "255453876", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/255453876", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255453876", "source": "IDREF"}], "date_of_birth": "1993-06-01", "preferred_name": "Temperman, Manon", "country_associated": "fr", "authorized_access_point": "Temperman, Manon, 1993-...."} 1 -2023-07-08 08:22:59.48803 2023-07-08 10:30:09.030135 a9142a91-585c-4fd7-9cfa-56390089c504 {"md5": "221fcf1339d2eec21856fa8651939a81", "pid": "254069606", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/254069606", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254069606", "source": "IDREF"}], "variant_name": ["Philippe Durand, Claude-"], "preferred_name": "Durand, Claude-Philippe", "country_associated": "fr", "variant_access_point": ["Philippe Durand, Claude-, ....-...."], "authorized_access_point": "Durand, Claude-Philippe, ....-...."} 2 -2023-07-08 08:23:00.024708 2023-07-08 10:30:26.426141 8c51ed2d-67d1-4a61-916b-c1cf982d7850 {"md5": "15832b1ba5603aa65a008f14264ef4b4", "pid": "254374557", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": true, "identifier": "http://www.idref.fr/254374557", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254374557", "source": "IDREF"}], "variant_name": ["Isotopes in weed research"], "preferred_name": "Proceedings of the symposium on the use of Isotopes in weed research", "variant_access_point": ["Isotopes in weed research (Vienna ; 25-29 october 1965)"], "authorized_access_point": "Proceedings of the symposium on the use of Isotopes in weed research (Vienna ; 25-29 october 1965)"} 2 -2023-07-08 08:23:00.114178 2023-07-08 08:23:00.114183 11b85613-1b3b-41f5-8b14-ccdeea50db74 {"md5": "189cbb811186dbd3225bace8f33ce480", "pid": "254391508", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/254391508", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254391508", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Heckman, Christina M.", "country_associated": "xxu", "authorized_access_point": "Heckman, Christina M., 19..-....", "biographical_information": ["Professeur d'Anglais à Augusta University, Georgie"]} 1 -2023-07-08 08:23:00.25688 2023-07-08 08:23:00.256885 923aaf90-aee5-4391-81c9-7bc4b7a78e41 {"md5": "2a4783da8275cbfc22495ea4693434a3", "pid": "254429521", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/254429521", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254429521", "source": "IDREF"}], "variant_name": ["Éditions Féret (Bordeaux)", "Librairie Féret (Bordeaux)", "Féret et Fils (Bordeaux)", "Féret & Fils (Bordeaux)"], "preferred_name": "Féret (Bordeaux)", "country_associated": "fr", "variant_access_point": ["Éditions Féret (Bordeaux)", "Librairie Féret (Bordeaux)", "Féret et Fils (Bordeaux)", "Féret & Fils (Bordeaux)"], "date_of_establishment": "1812", "authorized_access_point": "Féret (Bordeaux)", "biographical_information": ["Éditeur spécialisé en oenologie", "La librairie Féret a été fondée par Jean-Baptiste Féret ; son fils Michel-Édouard Féret développe dès 1841 les éditions et la librairie sous le nom de Féret et Fils", "La librairie Féret a cessé son activité en 1983 mais la maison d'édition perdure", "Adresse : 24 allées de Tourny, 33000 Bordeaux"]} 1 -2023-07-08 08:23:00.340071 2023-07-08 08:23:00.340077 046107e4-6977-419b-b50d-0ad9a5702dc3 {"md5": "d0e8260df18d6b92bcc5d773be2dcecd", "pid": "254455565", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rum"], "identifier": "http://www.idref.fr/254455565", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254455565", "source": "IDREF"}], "preferred_name": "Mangu, I. Gheorghe", "authorized_access_point": "Mangu, I. Gheorghe", "biographical_information": ["Médecin"]} 1 -2023-07-08 08:23:00.422619 2023-07-08 08:23:00.422625 4641fd7b-f3f4-4177-8274-46fe0b294f4e {"md5": "c1ffb00fbfa021a9e08085821d811fad", "pid": "254491758", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/254491758", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254491758", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Emma, Eraldo", "country_associated": "sz", "authorized_access_point": "Emma, Eraldo, 19..-....", "biographical_information": ["Capucin"]} 1 -2023-07-08 08:23:00.506385 2023-07-08 08:23:00.506396 b111689f-c6e6-40c1-a5d3-d76bd5641060 {"md5": "1df242c0c45315956a51275c5232d2dd", "pid": "254522564", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/254522564", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254522564", "source": "IDREF"}], "variant_name": ["Biboum, Hugues B."], "date_of_birth": "19..", "preferred_name": "Biboum, Hugues Bertrand", "country_associated": "cm", "variant_access_point": ["Biboum, Hugues B."], "authorized_access_point": "Biboum, Hugues Bertrand, 19..-....", "biographical_information": ["Bédéiste camerounais"]} 1 -2023-07-08 08:23:00.589257 2023-07-08 08:23:00.589262 abbce305-82df-441f-b055-e46579178e40 {"md5": "70ea6f3db7d636c28ea32947cdf2cddd", "pid": "254587763", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/254587763", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254587763", "source": "IDREF"}], "preferred_name": "Cordell Expeditions", "country_associated": "xxu", "authorized_access_point": "Cordell Expeditions"} 1 -2023-07-08 08:23:00.676094 2023-07-08 08:23:00.676099 e7405957-179b-4e90-b83a-9ddb12a18146 {"md5": "53b881bea4f69db294b387ba4a29268b", "pid": "254630618", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/254630618", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254630618", "source": "IDREF"}], "preferred_name": "Association des poètes éditeurs régionaux opérateurs sur Provence-Alpes-Côte d'Azur (Aix-en-Provence)", "country_associated": "fr", "date_of_establishment": "1985", "authorized_access_point": "Association des poètes éditeurs régionaux opérateurs sur Provence-Alpes-Côte d'Azur (Aix-en-Provence)"} 1 -2023-07-08 08:23:00.908854 2023-07-08 08:23:00.908859 4070d383-8512-47c6-82f4-17bb1b11b8a7 {"md5": "23307aba00a9903955078cbba0b43668", "pid": "254738591", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/254738591", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254738591", "source": "IDREF"}], "date_of_birth": "1919", "date_of_death": "1945", "preferred_name": "Richards, Albert", "country_associated": "xxk", "authorized_access_point": "Richards, Albert, 1919-1945"} 1 -2023-07-08 08:23:01.005448 2023-07-08 08:23:01.005452 6945d913-f27f-4dad-b843-eb8c1f358fb5 {"md5": "3aef760b677f2ffc6f66af9597670b4c", "pid": "254743048", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifier": "http://www.idref.fr/254743048", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254743048", "source": "IDREF"}], "preferred_name": "Symposium Gambro", "country_associated": "fr", "date_of_establishment": "1995", "authorized_access_point": "Symposium Gambro (16 ; 1995 ; Saint-Etienne)"} 1 -2023-07-08 08:23:00.179302 2023-07-08 10:30:26.054837 d40324b3-73bb-44b0-87a6-c9f1a82595f0 {"md5": "58a8f278d7aa882fc3abefa6bc2811bf", "pid": "254418422", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/254418422", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254418422", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Zehtabchi, Parvine", "country_associated": "ir", "authorized_access_point": "Zehtabchi, Parvine, 19..-....", "biographical_information": ["Auteur(e) d'une thèse d'université en littérature comparée (Grenoble 3, 1985)"]} 2 -2023-07-08 08:23:01.097735 2023-07-08 08:23:01.097742 4de3cfdc-962f-43db-8673-17a5f65f1587 {"md5": "7f01ca4b6f3e4b3487fd12358734cd7f", "pid": "254747086", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/254747086", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254747086", "source": "IDREF"}], "date_of_birth": "1986", "preferred_name": "Jaouen, Annaïck", "country_associated": "fr", "authorized_access_point": "Jaouen, Annaïck, 1986-", "biographical_information": ["Docteur en médecine (2013, Brest). -Née le 5 août 1986 à Hennebont. -Élève de l'Université de Bretagne Occidentale - Brest. -Ancienne élève de l'Université Victor Segalen, Bordeaux"]} 1 -2023-07-08 08:23:01.163782 2023-07-08 08:23:01.163785 7b34ac8a-7a9a-49fa-abc4-b687a7c2b71b {"md5": "1ed39dc86fe78e4daa6456aead2f0b16", "pid": "254775578", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/254775578", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254775578", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Rollins, Alison C.", "country_associated": "xxu", "authorized_access_point": "Rollins, Alison C., 19..-....", "biographical_information": ["Poète, bibliothécaire et enseignante américaine"]} 1 -2023-07-08 08:23:01.238201 2023-07-08 08:23:01.238205 f6ab6e8b-649d-465b-b656-213b2ab5afa1 {"md5": "a8e2f264612309c82df839cd6c547981", "pid": "254778569", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/254778569", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254778569", "source": "IDREF"}], "variant_name": ["ASF"], "preferred_name": "Atlantic salmon federation", "country_associated": "xxc", "variant_access_point": ["ASF"], "date_of_establishment": "1981", "parallel_access_point": ["Fédération du saumon atlantique"], "authorized_access_point": "Atlantic salmon federation", "biographical_information": ["Formée en 1981 par la fusion de l'ASA (Atlantic salmon association) et de l'IASF (International atlantic salmon foundation)"]} 1 -2023-07-08 08:23:01.337091 2023-07-08 08:23:01.337096 d296eb15-8db1-4e92-b511-b0dbfd7544d3 {"md5": "4c953121537bc5172e3680ed34c3ba8e", "pid": "254816568", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/254816568", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254816568", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Hayfield, Nikki", "country_associated": "xxk", "authorized_access_point": "Hayfield, Nikki, 19..-....", "biographical_information": ["Psychologue sociale. - Travaille sur les différents types de sexualité"]} 1 -2023-07-08 08:23:01.443206 2023-07-08 08:23:01.443212 0d38bfdf-0802-48ee-8bb1-5c7dc8a016a9 {"md5": "299a4038329265c1c6502e3c325a3f67", "pid": "25483180X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/25483180X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25483180X", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Gouraud, Pamela", "country_associated": "fr", "authorized_access_point": "Gouraud, Pamela, 19..-....", "biographical_information": ["Avocate depuis 2016. Juriste au sein d'organismes d'assurances et autorités de contrôle (en 2021)"]} 1 -2023-07-08 08:23:01.532938 2023-07-08 08:23:01.532943 8e00222b-7ab8-4b6b-a0f2-b911599509f4 {"md5": "d34c733ce7d4e8d53211c0101a7bb542", "pid": "254929192", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/254929192", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254929192", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Brillouet, François", "country_associated": "fr", "authorized_access_point": "Brillouet, François, 19..-....", "biographical_information": ["Auteur(e) d'une thèse de docteur-ingénieur en physique (Grenoble 1, 1975)"]} 1 -2023-07-08 08:23:01.608052 2023-07-08 08:23:01.608064 98ae0b78-023f-4c2d-83d3-76b293e67898 {"md5": "682b416ecf228692ec5a89bb97abdf1a", "pid": "254941540", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/254941540", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254941540", "source": "IDREF"}], "date_of_birth": "1992-03-27", "preferred_name": "Trincherini, Romain", "country_associated": "fr", "authorized_access_point": "Trincherini, Romain, 1992-....", "biographical_information": ["Auteur d'une thèse en Psychologie à Bordeaux en 2021"]} 1 -2023-07-08 08:23:01.893876 2023-07-08 08:23:01.893882 0a073449-9283-46c6-bac3-5f8fd12225bc {"md5": "48f4803d679a7c7433de66fa41d328df", "pid": "255028679", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/255028679", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255028679", "source": "IDREF"}], "date_of_birth": "1972", "preferred_name": "Amesbury, Richard", "country_associated": "xxu", "authorized_access_point": "Amesbury, Richard, 1972-...."} 1 -2023-07-08 08:23:02.918675 2023-07-08 08:23:02.918684 d89b8fe3-57c9-4a23-a333-e99b110fba3a {"md5": "272f88c3e4f4d2ae58434871b9693760", "pid": "255445075", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/255445075", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255445075", "source": "IDREF"}], "preferred_name": "Drapeau, Vicky", "country_associated": "fr", "authorized_access_point": "Drapeau, Vicky", "biographical_information": ["Université de Laval en 2020"]} 1 -2023-07-08 08:23:01.686536 2023-07-08 10:29:45.222419 cf470978-8c16-4611-b036-45700451fd74 {"md5": "d0d3b53fc1ffb4f6f47bc7ff626b7ca6", "pid": "254976719", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/254976719", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254976719", "source": "IDREF"}], "date_of_birth": "1947-09-03", "preferred_name": "Dorai, Périaswami", "country_associated": "fr", "authorized_access_point": "Dorai, Périaswami, 1947-....", "biographical_information": ["Auteur d'une thèse en Langues et littératures étrangères. Langue et cultures des sociétés anglophones à Université de Paris (2019-....) en 2019"]} 2 -2023-07-08 08:23:01.97407 2023-07-08 08:23:01.974074 263977d5-893a-424b-b353-51e62ac4542c {"md5": "2d50a5fdec262f89f1e21e73bc262c81", "pid": "25508255X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/25508255X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25508255X", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Pannecocke, Laetitia", "country_associated": "fr", "authorized_access_point": "Pannecocke, Laetitia, 19..-....", "biographical_information": ["Club de prévention Rencontres et loisirs, 937 rue du faubourg de Béthune, 59500 Douai."]} 1 -2023-07-08 08:23:02.059135 2023-07-08 08:23:02.05914 ede122f0-5e26-418e-bd8d-fcef24150977 {"md5": "a5373faa94643a8d1dfdbb25c2e15518", "pid": "255083556", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/255083556", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255083556", "source": "IDREF"}], "preferred_name": "Seida, Kimberly", "country_associated": "xxc", "authorized_access_point": "Seida, Kimberly", "biographical_information": ["McGill University, Department of Sociology"]} 1 -2023-07-08 08:23:02.150569 2023-07-08 08:23:02.150572 7a3e22b3-eb9e-4ab6-b3bf-8adbd7377350 {"md5": "2145afb3e9803a5059817301227d3dc3", "pid": "255144490", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/255144490", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255144490", "source": "IDREF"}], "preferred_name": "Deener, Andrew", "country_associated": "xxu", "authorized_access_point": "Deener, Andrew"} 1 -2023-07-08 08:23:02.324831 2023-07-08 08:23:02.324838 af6e79df-786b-4337-a90b-bfd6da57bdeb {"md5": "2ed5658596a27ccc62dff07f8e6bb1dc", "pid": "255348517", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["lat"], "identifier": "http://www.idref.fr/255348517", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255348517", "source": "IDREF"}], "variant_name": ["Porée du Parcq, Renatus"], "date_of_birth": "16XX", "date_of_death": "16XX", "preferred_name": "Porée du Parcq, René", "country_associated": "xx", "variant_access_point": ["Porée du Parcq, Renatus, 16..?-16..?"], "authorized_access_point": "Porée du Parcq, René, 16..?-16..?", "biographical_information": ["Auteur d'une thèse (théologie) soutenue à Paris en 1661"]} 1 -2023-07-08 08:23:02.421869 2023-07-08 08:23:02.421873 6abbc7f9-084f-4076-8b31-225b4e6d5907 {"md5": "661fb6447cd65fe84462afd4fc835bbf", "pid": "255361343", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/255361343", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255361343", "source": "IDREF"}], "preferred_name": "Reiter, J. D.", "country_associated": "gw", "authorized_access_point": "Reiter, J. D.", "biographical_information": ["Botaniste"]} 1 -2023-07-08 08:23:02.513713 2023-07-08 08:23:02.513721 335c3d3b-6065-49f4-b654-4910eeb75fe8 {"md5": "d4f5054d7ebd5e490473a526d06ca18c", "pid": "255386419", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/255386419", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255386419", "source": "IDREF"}], "preferred_name": "Lamothe, Nathalie", "country_associated": "fr", "authorized_access_point": "Lamothe, Nathalie", "biographical_information": ["Titulaire d'un mémoire de DEA‎ en Économie du développement : innovation et dynamique spatiale‎ de l'université Bordeaux IV en 1997"]} 1 -2023-07-08 08:23:02.599176 2023-07-08 08:23:02.599184 9370c199-bda5-470e-a089-66faab225346 {"md5": "8f163ccacb9784823765a1d29f527414", "pid": "255415184", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/255415184", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255415184", "source": "IDREF"}], "date_of_birth": "1987-06-08", "preferred_name": "De Figueiredo Barroso, Nelson", "country_associated": "bl", "authorized_access_point": "De Figueiredo Barroso, Nelson, 1987-....", "biographical_information": ["Titulaire d'un doctorat en Automatique, productique (Université de Lille, 2020)"]} 1 -2023-07-08 08:23:02.67653 2023-07-08 08:23:02.676535 f9130daa-1056-4bc9-8fcd-62a16a2b1e26 {"md5": "01b8b39f16ef23c9f6b26684c5a4d8b2", "pid": "255430760", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "conference": false, "identifier": "http://www.idref.fr/255430760", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255430760", "source": "IDREF"}], "preferred_name": "Agência F4 (Agence de photographie)", "country_associated": "bl", "date_of_termination": "1991", "date_of_establishment": "1979", "authorized_access_point": "Agência F4 (Agence de photographie)", "biographical_information": ["Agence de photographies de presse brésilienne"]} 1 -2023-07-08 08:23:02.76056 2023-07-08 08:23:02.760563 15930ef5-7a84-4cb9-9bbe-d635db101c9f {"md5": "203692d40839db7299d25363b3825cf6", "pid": "255435169", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/255435169", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255435169", "source": "IDREF"}], "date_of_birth": "1859-07-16", "date_of_death": "1929-05-15", "preferred_name": "Fardin, Alphonse", "country_associated": "fr", "authorized_access_point": "Fardin, Alphonse, 1859-1929", "biographical_information": ["Compagnon cordonnier-bottier. - Parolier, poète", "Lieu de naissance Avranches (Manche). Lieu de décès Montfermeil (Seine-Saint-Denis)"]} 1 -2023-07-08 08:23:02.845586 2023-07-08 08:23:02.845589 96adab99-cd1a-4531-ae4d-da4dd89b9007 {"md5": "37cbd95ef576dc5781879092074fad91", "pid": "255444478", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/255444478", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255444478", "source": "IDREF"}], "date_of_birth": "18XX", "preferred_name": "Monier, Eug.", "country_associated": "fr", "authorized_access_point": "Monier, Eug., 18..-....", "biographical_information": ["Licencié en droit en 1875 à la Faculté d'Aix-en-Provence, né à Piolenc (Vaucluse)"]} 1 -2023-07-08 08:23:03.099717 2023-07-08 08:23:03.099728 eab12fd2-c462-4665-a854-60aa29c3c1d2 {"md5": "ffeeb880a54e1f5c3ab66fa2a8a89ea8", "pid": "255473532", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/255473532", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255473532", "source": "IDREF"}], "preferred_name": "Engelke, Wilfried", "authorized_access_point": "Engelke, Wilfried", "biographical_information": ["Professeur, Département de chirurgie orale, Ecole dentaire, Université Georges-Auguste, Göttingen, Allemagne (2011)"]} 1 -2023-07-08 08:23:03.193582 2023-07-08 08:23:03.193587 8068f669-fbd6-4af7-877d-3606c3afc367 {"md5": "8eb9e305c8f9589d0f4746c079be5511", "pid": "255495269", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/255495269", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255495269", "source": "IDREF"}], "date_of_birth": "1991-04-02", "preferred_name": "Mbengue, Adja", "country_associated": "fr", "authorized_access_point": "Mbengue, Adja, 1991-....", "biographical_information": ["Auteur d'une thèse en Droit public à Paris 1 en 2020"]} 1 -2023-07-08 08:23:03.299557 2023-07-08 08:23:03.299561 67856211-e4ce-4360-a094-74f0a93cab9f {"md5": "fee694ddef970ddf72b4462378db26ba", "pid": "255554338", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ara"], "identifier": "http://www.idref.fr/255554338", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255554338", "source": "IDREF"}], "variant_name": ["طرزي, محمد", "Tarzi, Muhammad", "Ṭarazī, Muḥammad"], "date_of_birth": "1983", "preferred_name": "Ṭarzī, Muḥammad", "country_associated": "le", "variant_access_point": ["Tarzi, Muhammad", "Ṭarazī, Muḥammad"], "authorized_access_point": "Ṭarzī, Muḥammad, 1983-....", "biographical_information": ["Écrivain libanais"]} 1 -2023-07-08 08:23:03.388846 2023-07-08 08:23:03.388854 f731fb3c-5661-4d3d-9a07-280076a07573 {"md5": "034924604c308a9519275803f0a1be76", "pid": "255666594", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/255666594", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255666594", "source": "IDREF"}], "preferred_name": "Santalla, Frédéric", "authorized_access_point": "Santalla, Frédéric", "biographical_information": ["Baryton"]} 1 -2023-07-08 08:23:03.475662 2023-07-08 08:23:03.475669 90404c44-944a-467d-9fe8-b4984692cc4f {"md5": "9fbd47ec05db47debaa8ef6f0baa9bfb", "pid": "255733151", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/255733151", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255733151", "source": "IDREF"}], "date_of_birth": "1979", "preferred_name": "Schreiber, Constantin", "country_associated": "gw", "authorized_access_point": "Schreiber, Constantin, 1979-....", "biographical_information": ["Journaliste, présentateur TV, écrivain"]} 1 -2023-07-08 08:23:03.682898 2023-07-08 08:23:03.682907 b7e26d36-82fa-4c84-a5a2-e3dc90116034 {"md5": "8bbbbb05a466d300c56efcb49a3b950b", "pid": "255939248", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/255939248", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255939248", "source": "IDREF"}], "date_of_birth": "1981-05-12", "preferred_name": "Couteaux, Cécile", "country_associated": "fr", "authorized_access_point": "Couteaux, Cécile, 1981-....", "biographical_information": ["Université Toulouse - Jean Jaurès. Laboratoire « Lettres, langages et arts » (LLA-CRÉATIS) en 2022", "Auteur d'une thèse en Langues et littératures françaises à Toulouse 2 en 2022"]} 1 -2023-07-08 08:23:03.778134 2023-07-08 08:23:03.778138 39773cca-d911-4e70-a961-c0b262f8b372 {"md5": "ad26d119f4c1727c43bdf40025929dd9", "pid": "255998880", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/255998880", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255998880", "source": "IDREF"}], "date_of_birth": "1907", "date_of_death": "1991", "preferred_name": "Söyrinki, Niilo", "country_associated": "gw", "authorized_access_point": "Söyrinki, Niilo, 1907-1991", "biographical_information": ["Botaniste"]} 1 -2023-07-08 08:23:03.854591 2023-07-08 08:23:03.854596 1d975c47-bedf-47e5-b849-63e749a1994e {"md5": "3275018683bc0234d6b0206b8a89dcf8", "pid": "256075980", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/256075980", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/256075980", "source": "IDREF"}], "preferred_name": "Montañés, Julio G.", "country_associated": "sp", "authorized_access_point": "Montañés, Julio G."} 1 -2023-07-08 08:23:03.948785 2023-07-08 08:23:03.94879 d1b0afbf-f2b6-4ccd-88d9-af21b734b1bf {"md5": "3181be5a0084a69299dd8919c7da6ec9", "pid": "256123829", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa", "eng"], "identifier": "http://www.idref.fr/256123829", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/256123829", "source": "IDREF"}], "date_of_birth": "1934", "date_of_death": "2001", "preferred_name": "Torroja, Enrique", "country_associated": "ag", "authorized_access_point": "Torroja, Enrique, 1934-2001", "biographical_information": ["Peintre argentin"]} 1 -2023-07-08 08:23:04.032609 2023-07-08 08:23:04.032614 35f7483f-f634-4254-b058-a11f5471835a {"md5": "a20c8db9be57b86773e343964da5cecb", "pid": "25623650X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/25623650X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25623650X", "source": "IDREF"}], "preferred_name": "Ostergaard, Kim", "authorized_access_point": "Ostergaard, Kim", "biographical_information": ["Associate professor, Ph.D. Law Department - Copenhagen Business School"]} 1 -2023-07-08 08:23:04.209323 2023-07-08 08:23:04.20933 3ef6b911-6576-4336-9352-7ff56ba8633c {"md5": "8b30b09b2cdb12d6de9f98b2361c2421", "pid": "25640772X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/25640772X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25640772X", "source": "IDREF"}], "preferred_name": "La Petite République Française et autres publications", "country_associated": "fr", "date_of_establishment": "1876", "authorized_access_point": "La Petite République Française et autres publications", "biographical_information": ["Société anonyme fondé en 1876, dans lequel Jean Jaurès a publié les preuves concernant l'Affaire Dreyfus à la fin du XIXe siècle. Siège social à Paris, 53 Chaussée d'Antin"]} 1 -2023-07-08 08:23:04.299539 2023-07-08 08:23:04.299548 acf3133e-2e75-440c-a7a4-bcb8147f60c5 {"md5": "9fc8d000074613f8f1993b032659efa2", "pid": "256435847", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/256435847", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/256435847", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Pagliarino, Elena", "country_associated": "fr", "authorized_access_point": "Pagliarino, Elena, 19..-....", "biographical_information": ["Agronomie, Conseil national des recherches, Institut de recherche sur la croissance économique durable (IRCrES-CNR), Moncalieri (Turin), Italie"]} 1 -2023-07-08 08:23:04.490779 2023-07-08 08:23:04.490785 74186ed7-c1c0-4d93-a39f-c4a34c577cca {"md5": "b016de65f043169c64d4aaf9e57aebce", "pid": "25650945X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/25650945X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25650945X", "source": "IDREF"}], "date_of_birth": "19..", "preferred_name": "Sugawa, Sakiko", "country_associated": "nz", "authorized_access_point": "Sugawa, Sakiko, 19..-...."} 1 -2023-07-08 08:23:04.582302 2023-07-08 08:23:04.582313 908b1edc-a8b4-4c90-acf7-cebd6aac8975 {"md5": "7596d04374b9d93f5016bdf70f34bba5", "pid": "256515417", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/256515417", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/256515417", "source": "IDREF"}], "date_of_birth": "17..", "date_of_death": "18..", "preferred_name": "Leudière, Fr.", "country_associated": "fr", "authorized_access_point": "Leudière, Fr., 17..-18..", "biographical_information": ["Latiniste, principal du collège de Soissons (Aisne)"]} 1 -2023-07-08 08:23:04.666594 2023-07-08 08:23:04.666603 dcc76435-7aac-47e6-ab10-e0e035f94fd0 {"md5": "5af3c80d69636a08ae2b82f244cd703b", "pid": "256606625", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": false, "identifier": "http://www.idref.fr/256606625", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/256606625", "source": "IDREF"}], "variant_name": ["وزارة التربية الوطنية، قسم الشبيبة والرياضة (الرباط)", "Maroc. Ministère de l'éducation nationale de la jeunesse et des sports"], "preferred_name": "Wazāraẗ al-ṭarbiyyaẗ al-waẗaniyyaẗ qism al-šabībaẗ wa al-riyāḍaẗ (al-Ribāṭ)", "country_associated": "mr", "variant_access_point": ["Maroc. Ministère de l'éducation nationale de la jeunesse et des sports"], "authorized_access_point": "Wazāraẗ al-ṭarbiyyaẗ al-waẗaniyyaẗ qism al-šabībaẗ wa al-riyāḍaẗ (al-Ribāṭ)"} 1 -2023-07-08 08:23:04.741167 2023-07-08 08:23:04.741173 df614dee-ac76-48b6-b12b-5407170c17d9 {"md5": "44e701b07785af4c043e99b58ae5c439", "pid": "256607982", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/256607982", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/256607982", "source": "IDREF"}], "date_of_birth": "1993-10-22", "preferred_name": "Sanchez, Julia", "country_associated": "fr", "authorized_access_point": "Sanchez, Julia, 1993-....", "biographical_information": ["Auteur d'une thèse en Informatique soutenue à l'Université de Lyon en 2020"]} 1 -2023-07-08 08:23:04.828206 2023-07-08 08:23:04.82821 e87dbaca-792f-4e42-9578-5b2b794bbe1a {"md5": "feb086de11c77bd862f1b371403f37ac", "pid": "256622302", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["per"], "identifier": "http://www.idref.fr/256622302", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/256622302", "source": "IDREF"}], "variant_name": ["انتخابی, حشمت الله", "Intikhābī, Ḥashmat Allāh", "Intikhābī, Ḥishmat Allāh"], "date_of_birth": "1954?", "preferred_name": "Intiẖābī, Ḥišmat Allāh", "country_associated": "ir", "variant_access_point": ["Intikhābī, Ḥashmat Allāh", "Intikhābī, Ḥishmat Allāh"], "authorized_access_point": "Intiẖābī, Ḥišmat Allāh, 1954?-....", "biographical_information": ["Editeur scientifique", "Né en 1954 ou 1955 (1333 du calendrier solaire)"]} 1 -2023-07-08 08:23:05.742693 2023-07-08 08:23:05.742698 1cdc3d57-7f3d-48e6-8208-3d8023c66a13 {"md5": "98e7f90d282b7d75a4b764adb8874ed0", "pid": "257283994", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/257283994", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257283994", "source": "IDREF"}], "date_of_birth": "1980", "preferred_name": "Borge, Jessica", "country_associated": "xxc", "authorized_access_point": "Borge, Jessica, 1980-...."} 1 -2023-07-08 08:23:04.389726 2023-07-08 10:31:23.68367 2748401f-94bd-426f-bfdc-1f8191a5f638 {"md5": "78926acd5391f9bc5d8e26f30b42fb6f", "pid": "256458391", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/256458391", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/256458391", "source": "IDREF"}], "date_of_birth": "18XX", "preferred_name": "Prestat, Émile", "country_associated": "fr", "authorized_access_point": "Prestat, Émile, 18..-....", "biographical_information": ["Né à Nîmes", "Licencié en droit en 1880 à la Faculté d'Aix"]} 2 -2023-07-08 08:23:04.914123 2023-07-08 08:23:04.91413 08382518-495b-499f-afef-d121b3bc39b9 {"md5": "9582365b1907b10c3704c3c8afa82912", "pid": "256653992", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/256653992", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/256653992", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Winickoff, David", "authorized_access_point": "Winickoff, David, 19..-....", "biographical_information": ["Senior Policy Analyst at the Organisation for Economic Cooperation and Development (OECD) in Paris where he is Secretary of the Working Party on Bio-, Nano- and Converging Technology. In this capacity, he leads research, policy work, and soft law development in the area of science, technology, and innovation at the national and international levels. He is also an Affiliated Professor at SciencesPo Law School where teaches biotechnology and ethics in global governance. He is a graduate of Harvard Law School, Cambridge University, and Yale College. Prior to his work at the OECD, he was a tenured professor at the University of California, Berkeley, where he directed the Program on Science and Technology Studies and supervised PhD students in law, STS, and Environmental Policy. David Winickoff has published over 60 articles at the intersection of technology and governance, appearing in e.g. Science, New England Journal of Medicine, Berkeley Technology Law Journal, Nature Climate Change, Social Studies of Science and the Yale Journal of International Law. He has served on expert panels of the US National Academies, UK Royal Academy, and the Bipartisan Policy Center think tank in Washington DC. He is on the Programme Board of the Rathenau Institute in The Hague."]} 1 -2023-07-08 08:23:05.013104 2023-07-08 08:23:05.013111 c634f746-e14e-4924-946a-62b62b2bc3e4 {"md5": "1d985e3b4918411be210d973b55d430f", "pid": "256728682", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifier": "http://www.idref.fr/256728682", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/256728682", "source": "IDREF"}], "preferred_name": "International Law and Economics Conference", "country_associated": "ii", "authorized_access_point": "International Law and Economics Conference (2nd ; 2016 ; Kanpur, India)", "biographical_information": ["Note biographique (informations à justifier par des sources mentionnées en zone 810)"]} 1 -2023-07-08 08:23:05.105074 2023-07-08 08:23:05.105079 3ad9e759-f027-45a2-ad52-06f980b407bc {"md5": "909bae10087c27c902b711a09adff43d", "pid": "256767483", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/256767483", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/256767483", "source": "IDREF"}], "date_of_birth": "19..", "preferred_name": "Jones, Maggie", "country_associated": "xx", "authorized_access_point": "Jones, Maggie, 19..-...."} 1 -2023-07-08 08:23:05.181992 2023-07-08 08:23:05.182001 d2361722-0000-4f49-a7c9-73a03c99d268 {"md5": "4c428261def1e808113a1ca0173735d7", "pid": "256769044", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["nor"], "conference": false, "identifier": "http://www.idref.fr/256769044", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/256769044", "source": "IDREF"}], "variant_name": ["Norvège. Cour suprême", "Cour suprême (Norvège)", "Norges Høyesterett"], "preferred_name": "Norvège. Høyesterett", "country_associated": "no", "variant_access_point": ["Norvège. Cour suprême", "Cour suprême (Norvège)", "Norges Høyesterett"], "authorized_access_point": "Norvège. Høyesterett"} 1 -2023-07-08 08:23:05.367169 2023-07-08 08:23:05.367172 12b0cbd8-382b-4637-9b35-10b6cf3f80eb {"md5": "786e24adab8446e04877ee7465574b94", "pid": "256931038", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/256931038", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/256931038", "source": "IDREF"}], "preferred_name": "Gruet, Jacques", "authorized_access_point": "Gruet, Jacques"} 1 -2023-07-08 08:23:05.445733 2023-07-08 08:23:05.445737 22867d57-e970-48bb-b17d-71ddd3ee9f52 {"md5": "498fc5fcaa3baaa3b7cda5e47d6c52fa", "pid": "256938660", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/256938660", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/256938660", "source": "IDREF"}], "date_of_birth": "1990", "preferred_name": "Carter, Bryan", "country_associated": "xxu", "authorized_access_point": "Carter, Bryan, 1990-....", "biographical_information": ["Batteur, compositeur et chef d'orchestre de jazz"]} 1 -2023-07-08 08:23:05.671208 2023-07-08 08:23:05.671214 efc910fe-7aff-424b-bfc9-b6838e21733c {"md5": "a5801652e9c8f2b0abc9ab3de2bae410", "pid": "257161775", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/257161775", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257161775", "source": "IDREF"}], "date_of_birth": "1992-03-13", "preferred_name": "Heyman, Quentin", "country_associated": "fr", "authorized_access_point": "Heyman, Quentin, 1992-...."} 1 -2023-07-08 08:23:05.596018 2023-07-08 10:27:36.201915 f57be9be-7ed7-44bf-a642-e0f86f43f041 {"md5": "95145cabb5bdb45fdab4c8558a73a2f2", "pid": "256977178", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/256977178", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/256977178", "source": "IDREF"}], "preferred_name": "Wallepe, Djoëlla", "authorized_access_point": "Wallepe, Djoëlla"} 2 -2023-07-08 08:23:05.515461 2023-07-08 10:29:46.364102 b5add7de-481b-43f6-86c1-04f87e754152 {"md5": "20c2f22c0656ca7323abcf5e845b5315", "pid": "256975485", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/256975485", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/256975485", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Narbey, Jean-Philippe", "country_associated": "fr", "authorized_access_point": "Narbey, Jean-Philippe, 19..-....", "biographical_information": ["Docteur en médecine à Bordeaux 2 en 1988"]} 2 -2023-07-08 08:23:05.819955 2023-07-08 08:23:05.819959 e07c4fda-92f2-4f37-a96a-087511ed0b00 {"md5": "597537f4b20a9163bffb50b5190fff1b", "pid": "257341730", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["lat"], "identifier": "http://www.idref.fr/257341730", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257341730", "source": "IDREF"}], "date_of_birth": "16XX", "date_of_death": "17XX", "preferred_name": "Lepack, Daniel", "country_associated": "fr", "authorized_access_point": "Lepack, Daniel, 16..-17..", "biographical_information": ["Auteur d'une thèse à Strasbourg en 1699"]} 1 -2023-07-08 08:23:05.978935 2023-07-08 08:23:05.978938 62c0ae4f-8538-47af-91dc-d49796166ae4 {"md5": "a19a9e624c63bd5d7f54bc77bac39a36", "pid": "257348328", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/257348328", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257348328", "source": "IDREF"}], "date_of_birth": "1882", "preferred_name": "Feltgen, Eduard", "country_associated": "gw", "authorized_access_point": "Feltgen, Eduard, 1882-...."} 1 -2023-07-08 08:23:06.136044 2023-07-08 08:23:06.136048 b56cd3a2-5f9c-491f-836d-a444c9be5e0e {"md5": "e480122b886a2d5a5f020eaba095990e", "pid": "257433422", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre", "eng"], "identifier": "http://www.idref.fr/257433422", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257433422", "source": "IDREF"}], "date_of_birth": "1993-07-13", "preferred_name": "Jerusalem, Sophie", "country_associated": "fr", "authorized_access_point": "Jerusalem, Sophie, 1993-....", "biographical_information": ["Auteure d'une thèse d'exercice en médecine (spécialité : anesthésie-réanimation) (Université Grenoble Alpes, 2021)"]} 1 -2023-07-08 08:23:06.211864 2023-07-08 08:23:06.21187 3bcb8a46-a318-4646-ad34-5f7fa0d91dca {"md5": "2fc427ff9f6482e8defd45705a52c701", "pid": "257473459", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/257473459", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257473459", "source": "IDREF"}], "variant_name": ["Sinclair Smith, Ed"], "preferred_name": "Smith, Ed Sinclair", "variant_access_point": ["Sinclair Smith, Ed"], "authorized_access_point": "Smith, Ed Sinclair", "biographical_information": ["Membre de l'American Society of Mechanical Engineer; agent de brevets agréé ; ingénieur de recherche (division eclipse-pioneer de Bendix Aviation Corporation) ; anciennement ingénieur chargé des brevets (C. J. Tagliabue Mfg. Co.) ; anciennement ingénieur hydraulique (Builders Iron Foundry)."]} 1 -2023-07-08 08:23:06.280053 2023-07-08 08:23:06.280058 d401d02d-a220-4a7c-b9eb-4e4e573cbb03 {"md5": "8de8e96263645bec1916c583d294bee1", "pid": "257484167", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/257484167", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257484167", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Maritsch, Michael", "country_associated": "au", "authorized_access_point": "Maritsch, Michael, 19..-....", "biographical_information": ["Photographe"]} 1 -2023-07-08 08:23:06.362331 2023-07-08 08:23:06.362335 a2b277af-d009-41ec-b354-95bccf0bf087 {"md5": "c5c27ef6c5ca5963ab85dbf816bdd775", "pid": "257484434", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/257484434", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257484434", "source": "IDREF"}], "variant_name": ["Calderón, F. L."], "preferred_name": "Calderón, F. León", "country_associated": "mx", "variant_access_point": ["Calderón, F. L."], "authorized_access_point": "Calderón, F. León", "biographical_information": ["Cartographe"]} 1 -2023-07-08 08:23:06.43327 2023-07-08 08:23:06.433273 d42c78cd-4b7f-4a16-a0f5-7ab55ae0648d {"md5": "c6b0f038ff175b99e51813100dbc34e8", "pid": "257494138", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/257494138", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257494138", "source": "IDREF"}], "preferred_name": "Heys, J. A.", "authorized_access_point": "Heys, J. A."} 1 -2023-07-08 08:23:06.525296 2023-07-08 08:23:06.525302 ff37d92b-27d7-40a7-9926-bd5f7ff5f134 {"md5": "06ffbaadfba08dfab4eea7039f45a164", "pid": "25752214X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/25752214X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25752214X", "source": "IDREF"}], "date_of_birth": "1933", "date_of_death": "1998", "preferred_name": "Weber, Willy", "country_associated": "sz", "authorized_access_point": "Weber, Willy, 1933-1998", "biographical_information": ["Artiste visuel"]} 1 -2023-07-08 08:23:06.613622 2023-07-08 08:23:06.613626 f6de07cd-c42b-43b0-b91c-99edfebe77e7 {"md5": "394840f8c35253bef7d842e8753052f2", "pid": "257572481", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/257572481", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257572481", "source": "IDREF"}], "date_of_birth": "1992-03-10", "preferred_name": "Das, Souvik", "country_associated": "ii", "authorized_access_point": "Das, Souvik, 1992-....", "biographical_information": ["Auteur d'une thèse de doctorat en Biologie-Santé. Physiopathologie humaine soutenue à Amiens en 2020"]} 1 -2023-07-08 08:23:05.901332 2023-07-08 10:30:52.939692 7b5d2836-5e7c-406a-94e6-bca5c61b1aeb {"md5": "468fdd2d55d7ce05c3cdb54e630f3fa5", "pid": "257342818", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/257342818", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257342818", "source": "IDREF"}], "variant_name": ["Von Kruedener, Claudia"], "preferred_name": "Kruedener, Claudia von", "country_associated": "gw", "variant_access_point": ["Von Kruedener, Claudia"], "authorized_access_point": "Kruedener, Claudia von", "biographical_information": ["Historienne independante", "Titulaire d'un doctorat en histoire (Universität Bayreuth, Allemagne, 2014)"]} 2 -2023-07-08 08:23:06.789901 2023-07-08 08:23:06.789907 449a4a11-15b0-4fa6-8909-957ba8167030 {"md5": "309dd15afb3e8164d93e7399a42bfedd", "pid": "257647007", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifier": "http://www.idref.fr/257647007", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257647007", "source": "IDREF"}], "variant_name": ["Croatian-Hungarian PhD Conference on ancient history and archaeology"], "preferred_name": "Croatian-Hungarian PhD Conference on ancient history and archaeology", "country_associated": "hu", "date_of_termination": "2019-03-22", "variant_access_point": ["Croatian-Hungarian PhD Conference on ancient history and archaeology (3 ; Budapest, Hungary ; 2019)"], "date_of_establishment": "2019-03-22", "authorized_access_point": "Croatian-Hungarian PhD Conference on ancient history and archaeology (3 ; Budapest, Hongrie ; 2019)"} 1 -2023-07-08 08:23:06.974368 2023-07-08 08:23:06.974374 05808717-39d8-4ed2-bfe1-62cf71d8812c {"md5": "0f3d288776a3a34c44f8920490314ad3", "pid": "25773855X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/25773855X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25773855X", "source": "IDREF"}], "date_of_birth": "1977-XX-XX", "preferred_name": "Meier Schleich, Philipp", "country_associated": "sz", "authorized_access_point": "Meier Schleich, Philipp, 1977-....", "biographical_information": ["Juriste. Avocat chez LANTER, Anwälte & Steuerberater, Zürich (2018-)"]} 1 -2023-07-08 08:23:07.066068 2023-07-08 08:23:07.066076 8a4ae9d7-5445-4f99-9805-ec662e917b31 {"md5": "92dac72818cfa4a28410dce0346b58ad", "pid": "257862544", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/257862544", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257862544", "source": "IDREF"}], "variant_name": ["Mejía, Gema Catalán"], "date_of_birth": "19XX", "preferred_name": "Catalán Mejía, Gema", "country_associated": "sp", "variant_access_point": ["Mejía, Gema Catalán"], "authorized_access_point": "Catalán Mejía, Gema, 19..-....", "biographical_information": ["Universitaire à la Faculté de droit de l'Université Internationale de la Rioja (UNIR) en Espagne (en 2021)"]} 1 -2023-07-08 08:23:07.242149 2023-07-08 08:23:07.242156 2b0438f3-e993-4594-ac1c-bfddb5c8ea3f {"md5": "644ace772056497a55c86177d2463aa9", "pid": "257908870", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/257908870", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257908870", "source": "IDREF"}], "variant_name": ["Barbin, Marie-Louise"], "date_of_birth": "1940-10-24", "preferred_name": "Baille, Marie-Louise", "country_associated": "fr", "variant_access_point": ["Barbin, Marie-Louise"], "authorized_access_point": "Baille, Marie-Louise, 1940-....", "biographical_information": ["Titulaire d'une thèse en Médecine (Lyon, 1970)"]} 1 -2023-07-08 08:23:07.35077 2023-07-08 08:23:07.35078 9f7277ca-5f83-414e-8122-632259574927 {"md5": "620aaaacbc7f79350d37538f4129bcb5", "pid": "257937730", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rum"], "identifier": "http://www.idref.fr/257937730", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257937730", "source": "IDREF"}], "variant_name": ["Căpus̜e, I."], "date_of_birth": "1935", "preferred_name": "Căpus̜e, Iosif", "country_associated": "rm", "variant_access_point": ["Căpus̜e, I., 1935-...."], "authorized_access_point": "Căpus̜e, Iosif, 1935-....", "biographical_information": ["Entomologiste roumain"]} 1 -2023-07-08 08:23:07.440089 2023-07-08 08:23:07.440096 4aaf1b04-9281-49f7-8336-c2e819cb43a6 {"md5": "c26ccc15f5a9290a2881ad052541bc55", "pid": "257974350", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "identifier": "http://www.idref.fr/257974350", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257974350", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Oda, Serina", "country_associated": "ja", "authorized_access_point": "Oda, Serina, 19..-....", "biographical_information": ["Mangaka"]} 1 -2023-07-08 08:23:07.528927 2023-07-08 08:23:07.528933 4d138cdf-c4da-47da-af42-8e24d967a612 {"md5": "fdfd38c9af93d4b9aff379141f099af6", "pid": "25808524X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/25808524X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25808524X", "source": "IDREF"}], "preferred_name": "Blackburn Architects (Washington)", "country_associated": "xxu", "authorized_access_point": "Blackburn Architects (Washington)", "biographical_information": ["Cabinet d'architectes fondé en 1983, reconnue pour son expertise particulière dans la planification, la conception et la préservation d'établissements équestres, des résidences privées et des fermes d'élevage."]} 1 -2023-07-08 08:23:06.696025 2023-07-08 10:26:40.836361 a11b75ec-5b46-4ed5-b7c8-78572effa177 {"md5": "5a7d4febf3b5eff87eae8fa4398e678d", "pid": "257572732", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/257572732", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257572732", "source": "IDREF"}], "date_of_birth": "14XX", "preferred_name": "Grünenbächin, Barbara", "country_associated": "gw", "authorized_access_point": "Grünenbächin, Barbara, 14..-....", "biographical_information": ["Ecrivain"]} 2 -2023-07-08 08:23:07.150363 2023-07-08 10:29:46.791986 28d4bbf2-ab89-4264-aad3-8cf4c037f610 {"md5": "155c58f85deb05fff93006284be544ae", "pid": "257890505", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/257890505", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257890505", "source": "IDREF"}], "preferred_name": "Zhong, Sabilla", "country_associated": "gw", "authorized_access_point": "Zhong, Sabilla", "biographical_information": ["Institute of Organic Chemistry, Karlsruhe Institute of Technology (KIT), Karlsruhe, Germany"]} 2 -2023-07-08 08:23:07.71664 2023-07-08 08:23:07.716648 a90fbe61-7d1d-4554-a18c-351e2da8f3b9 {"md5": "855320ce9e02cdd0a068cc901530ecff", "pid": "258183659", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut"], "identifier": "http://www.idref.fr/258183659", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258183659", "source": "IDREF"}], "date_of_birth": "1957", "preferred_name": "Op de Beeck, Johan", "country_associated": "be", "authorized_access_point": "Op de Beeck, Johan, 1957-...."} 1 -2023-07-08 08:23:07.815865 2023-07-08 08:23:07.815869 ed945c6d-0f39-4b59-bff7-e3aa7fc3aa41 {"md5": "7ea1abf7b1fd40a278ad4e71d9f66a81", "pid": "258220724", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/258220724", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258220724", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "256104042"}, "variant_name": ["Centre de formation professionnelle du Littoral neuchâtelois (CPLN) (Neuchâtel, Suisse)", "Centre de formation professionnelle neuchâtelois (CPNE) (La Chaux-de-Fonds, Neuchâtel, Suisse)", "Ecole technique (Neuchâtel, Suisse)", "Ecole de mécanique et d'électricité (Neuchâtel, Suisse)", "Ecole d'horlogerie et de mécanique (Neuchâtel, Suisse)", "Ecole d'horlogerie (Neuchâtel, Suisse)"], "preferred_name": "Centre professionnel du Littoral neuchâtelois (Neuchâtel, Neuchâtel, Suisse)", "country_associated": "sz", "variant_access_point": ["Centre de formation professionnelle du Littoral neuchâtelois (CPLN) (Neuchâtel, Suisse)", "Centre de formation professionnelle neuchâtelois (CPNE) (La Chaux-de-Fonds, Neuchâtel, Suisse)", "Ecole technique (Neuchâtel, Suisse)", "Ecole de mécanique et d'électricité (Neuchâtel, Suisse)", "Ecole d'horlogerie et de mécanique (Neuchâtel, Suisse)", "Ecole d'horlogerie (Neuchâtel, Suisse)"], "date_of_establishment": "1871", "authorized_access_point": "Centre professionnel du Littoral neuchâtelois (Neuchâtel, Neuchâtel, Suisse)", "biographical_information": ["De 1871 à 1909: \\"Ecole d'horlogerie (Neuchâtel)\\". De 1910 à 1935: \\"Ecole d'horlogerie et de mécanique (Neuchâtel)\\". De 1936 à 1968: \\"Ecole de mécanique et d'électricité (Neuchâtel)\\". 1969?/1974?: \\"Ecole technique de Neuchâtel\\" intégrée dans les bâtiments du \\"Centre professionnel du Littoral neuchâtelois (Neuchâtel)\\". Jusqu'en 1993: CPLN - Centre de formation professionnelle du Littoral neuchâtelois. Dès 1994: CPLN - Centre professionnel du Littoral neuchâtelois. Dès 2022, le CPLN, le CIFOM et le CPMB sont groupés sous l'appellation CPNE (Centre de formation professionnelle neuchâtelois."]} 1 -2023-07-08 08:23:08.143894 2023-07-08 08:23:08.143901 7293e644-e26a-4390-8604-f29cd9dc6d4c {"md5": "a3a2d12a63eb10c614f631d1429db69f", "pid": "258291524", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["srp", "eng"], "identifier": "http://www.idref.fr/258291524", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258291524", "source": "IDREF"}], "variant_name": ["Кондић, Јелена"], "preferred_name": "Kondić, Jelena", "variant_access_point": ["Кондић, Јелена"], "authorized_access_point": "Kondić, Jelena"} 1 -2023-07-08 08:23:08.488956 2023-07-08 08:23:08.488969 32ab9991-091d-4526-b7d4-29a02a28b6df {"md5": "397f9a86427deb4d0aa7f5eafb3d3b4f", "pid": "258363355", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/258363355", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258363355", "source": "IDREF"}], "date_of_birth": "1990-08-19", "preferred_name": "Sauvage, Alexis", "country_associated": "fr", "authorized_access_point": "Sauvage, Alexis", "biographical_information": ["Auteur d’une thèse de médecine"]} 1 -2023-07-08 08:23:08.715856 2023-07-08 08:23:08.715868 103ae437-3296-4d57-8d23-e96d9f4c4045 {"md5": "50f05b546ddfa5371f5a16a7fddc4008", "pid": "258433914", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifier": "http://www.idref.fr/258433914", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258433914", "source": "IDREF"}], "preferred_name": "Convention Euro-Africaine", "country_associated": "fr", "date_of_termination": "1996-05-13", "date_of_establishment": "1996-05-13", "authorized_access_point": "Convention Euro-Africaine (1996 ; Bordeaux)"} 1 -2023-07-08 08:23:08.603426 2023-07-08 10:23:36.749075 0e5e8411-85ca-4933-91dd-a91eba33e927 {"md5": "e78f5af358c0c577152d23e78798456f", "pid": "258385138", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/258385138", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258385138", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Zell, Jean-Luc", "country_associated": "fr", "authorized_access_point": "Zell, Jean-Luc, 19..-....", "biographical_information": ["Étudiant en œnologie à l'Université de Bordeaux II en 1991 (DEA en œnologie)"]} 2 -2023-07-08 08:23:08.033611 2023-07-08 10:23:46.89027 17188ac7-7a4c-47fa-9488-5acbd022da46 {"md5": "56d084f753e5bb3b9dea2986eaa1421d", "pid": "258266457", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/258266457", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258266457", "source": "IDREF"}], "date_of_birth": "1965?", "preferred_name": "Mekon", "country_associated": "xxu", "authorized_access_point": "Mekon, 1965?-....", "biographical_information": ["Musicien de trip hop"]} 2 -2023-07-08 08:23:08.221396 2023-07-08 10:24:08.924739 225bb3a7-5340-4705-bba7-156df5baebf0 {"md5": "57dbf00491cfd97ac970021ce8c3faba", "pid": "258322020", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/258322020", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258322020", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Polans, Arthur", "country_associated": "xx", "authorized_access_point": "Polans, Arthur, 19..-....", "biographical_information": ["University of Wisconsin medical school Madison, USA (2003)"]} 2 -2023-07-08 08:23:08.35303 2023-07-08 10:24:09.682946 f05bec78-a724-4dcf-a78a-fc0cf5852a91 {"md5": "64e7f843daadbc0ca52bd568a223d4c3", "pid": "258325089", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["swe"], "identifier": "http://www.idref.fr/258325089", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258325089", "source": "IDREF"}], "date_of_birth": "1949", "preferred_name": "Josephson, Magnus", "country_associated": "sw", "authorized_access_point": "Josephson, Magnus, 1949-....", "biographical_information": ["Ecrit aussi en anglais", "En poste : Södermanland museum, Nyköping, Suède (en 1996)"]} 2 -2023-07-08 08:23:07.63773 2023-07-08 10:27:00.995964 3f7e617c-db74-45d3-9fa2-1d14d3d4aecb {"md5": "ebae506df0e578a3ce8988671980d79f", "pid": "258134178", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/258134178", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258134178", "source": "IDREF"}], "date_of_birth": "1991-05-27", "preferred_name": "Tuna, Çaglayan", "country_associated": "tu", "authorized_access_point": "Tuna, Çaglayan, 1991-....", "biographical_information": ["Auteur d'une thèse en Signal, Image, Vision à Lorient en 2020"]} 2 -2023-07-08 08:23:08.949406 2023-07-08 08:23:08.949418 89164272-39a4-4492-bfb2-126b11a29a03 {"md5": "3d5a1838b15bcc212933cab58ac8e736", "pid": "25844939X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre", "ara"], "conference": false, "identifier": "http://www.idref.fr/25844939X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25844939X", "source": "IDREF"}], "preferred_name": "Association suisse-arabe. Assemblée générale annuelle", "country_associated": "sz", "date_of_termination": "1974-05-18", "date_of_establishment": "1974-05-18", "authorized_access_point": "Association suisse-arabe. Assemblée générale annuelle (1974 ; Lausanne)"} 1 -2023-07-08 08:23:09.053006 2023-07-08 08:23:09.053017 a4f20e1b-ef2b-4479-8f77-966ef3c64dee {"md5": "19839ef727cc3b77694ebacba64a8f09", "pid": "258454458", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["cat"], "identifier": "http://www.idref.fr/258454458", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258454458", "source": "IDREF"}], "date_of_birth": "1979", "preferred_name": "Alcaraz i Frasquet, Maria", "country_associated": "sp", "authorized_access_point": "Alcaraz i Frasquet, Maria, 1979-....", "biographical_information": ["Illustratrice"]} 1 -2023-07-08 08:23:09.168105 2023-07-08 08:23:09.168111 9f188965-637b-436b-973a-af7d83c4ee81 {"md5": "6555706a22745f11f54f3831ee45b310", "pid": "258520191", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifier": "http://www.idref.fr/258520191", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258520191", "source": "IDREF"}], "variant_name": ["Istituto italiano per la storia della musica (Rome)", "Italie. Ministero per i Beni e le Attività culturali. Direzione generale per le Biblioteche e gli Istituti culturali. Istituto italiano per la storia della musica", "Direzione generale per le Biblioteche e Istituti culturali (Rome)"], "preferred_name": "Istituto italiano per la storia della musica", "country_associated": "it", "variant_access_point": ["Istituto italiano per la storia della musica (Rome)", "Italie. Ministero per i Beni e le Attività culturali. Direzione generale per le Biblioteche e gli Istituti culturali. Istituto italiano per la storia della musica", "Direzione generale per le Biblioteche e Istituti culturali (Rome)"], "date_of_establishment": "1938", "authorized_access_point": "Istituto italiano per la storia della musica", "biographical_information": ["Via Vittoria 6, 00187 Rome. Tél. (06) 4880597"]} 1 -2023-07-08 08:23:09.270469 2023-07-08 08:23:09.270479 22837bf8-dea1-41a9-9181-b98223201583 {"md5": "db4fdda9bb70a2b080a73f325378851f", "pid": "258528079", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/258528079", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258528079", "source": "IDREF"}], "variant_name": ["Paolo, Euclide di"], "preferred_name": "Di Paolo, Euclide", "variant_access_point": ["Paolo, Euclide di"], "authorized_access_point": "Di Paolo, Euclide"} 1 -2023-07-08 08:23:09.390803 2023-07-08 08:23:09.390808 0d2f1894-bece-44e8-95c6-1e2728313952 {"md5": "4451c1b8dba7531c64fafa22d8b2732e", "pid": "258546417", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/258546417", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258546417", "source": "IDREF"}], "date_of_birth": "19..", "preferred_name": "Stryckers, Piet", "country_associated": "xxk", "authorized_access_point": "Stryckers, Piet, 19..-....", "biographical_information": ["Musicien"]} 1 -2023-07-08 08:23:09.502923 2023-07-08 08:23:09.502933 78f260fa-8813-47e2-98e1-853997744292 {"md5": "37d156cd1dcdc585db7f9fdc77cf08e5", "pid": "258552778", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifier": "http://www.idref.fr/258552778", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258552778", "source": "IDREF"}], "variant_name": ["Давыдов, Виктор Дмитриевич", "Давыдов, В. Д"], "preferred_name": "Davydov, Viktor Dmitrievič", "country_associated": "ru", "variant_access_point": ["Давыдов, В. Д"], "authorized_access_point": "Davydov, Viktor Dmitrievič"} 1 -2023-07-08 08:23:09.612348 2023-07-08 08:23:09.612361 df53646e-a292-4467-9c27-569e3f22bb9b {"md5": "42f3805f49deba3aeed10295fcdb4e9c", "pid": "258575719", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/258575719", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258575719", "source": "IDREF"}], "date_of_birth": "1971-06-13", "preferred_name": "Atgé, Sandra", "country_associated": "fr", "authorized_access_point": "Atgé, Sandra, 1971-....", "biographical_information": ["Auteur d’un mémoire en Géographie, soutenue en 1994, à l’Université Montpellier 3"]} 1 -2023-07-08 08:23:09.735272 2023-07-08 08:23:09.735285 dad6e2fd-0382-4054-9b41-6f8a456985d5 {"md5": "e73c5419778bfc9fb13241e14783b5d4", "pid": "258640731", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/258640731", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258640731", "source": "IDREF"}], "date_of_birth": "1948-07-20", "preferred_name": "Djebar, Mohamed", "country_associated": "ae", "authorized_access_point": "Djebar, Mohamed, 1948 -....", "biographical_information": ["Auteur d'une thèse de médecine soutenue en 1973 à l'Université d'Alger"]} 1 -2023-07-08 08:23:09.836485 2023-07-08 08:23:09.836497 3ce475ee-c247-4d77-8560-3040bd79f926 {"md5": "dfa3d1ba09808b714b384ca73db44e3e", "pid": "258645172", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/258645172", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258645172", "source": "IDREF"}], "date_of_birth": "1996-11-25", "preferred_name": "Monhurel, Margaux", "country_associated": "fr", "authorized_access_point": "Monhurel, Margaux, 1996-....", "biographical_information": ["Titulaire d'une thèse d'exercice de pharmacie soutenue à Caen le 18 mai 2021"]} 1 -2023-07-08 08:23:10.088577 2023-07-08 08:23:10.08859 cfca57df-0b91-4062-bba4-28c80d5c6c4d {"md5": "46568e2a635c28f9fa1126381716f89a", "pid": "259100056", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/259100056", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/259100056", "source": "IDREF"}], "date_of_birth": "1982-04-03", "preferred_name": "Crop, Aurélie", "country_associated": "fr", "authorized_access_point": "Crop, Aurélie, 1982-....", "biographical_information": ["Graphiste, écrivaine et dessinatrice"]} 1 -2023-07-08 08:23:10.20046 2023-07-08 08:23:10.200473 b2d0d4b4-0f89-4650-a6e4-afb49d943a79 {"md5": "36978ec7743aa7f9b37014dbba253d74", "pid": "259230197", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "auteure en biologie moléculaire", "identifier": "http://www.idref.fr/259230197", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/259230197", "source": "IDREF"}], "date_of_birth": "1984-08-05", "preferred_name": "Laval, Marie, auteure en biologie moléculaire", "country_associated": "fr", "authorized_access_point": "Laval, Marie, 1984-...., auteure en biologie moléculaire", "biographical_information": ["Auteur d'une thèse de doctorat en Aspects moléculaires et cellulaires de la biologie à Strasbourg en 2020"]} 1 -2023-07-08 08:23:10.333244 2023-07-08 08:23:10.333256 0921329c-2e0b-43b1-9d98-203bdc47a218 {"md5": "85caadf17716da2aa23400e5cfb3413c", "pid": "259270482", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/259270482", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/259270482", "source": "IDREF"}], "preferred_name": "Piovaticci, Paolo", "country_associated": "it", "authorized_access_point": "Piovaticci, Paolo", "biographical_information": ["Historien d'art italien. Spécialiste de la céramique"]} 1 -2023-07-08 08:23:10.427958 2023-07-08 08:23:10.427965 f6a9a970-79ff-473b-b7b5-2e2b1b27a530 {"md5": "aa92bcbf923c3f7be7e0b85750405e56", "pid": "25929070X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/25929070X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25929070X", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Nduka-Agwu, Adibeli", "country_associated": "xxk", "authorized_access_point": "Nduka-Agwu, Adibeli, 19..-....", "biographical_information": ["Corédacteur en chef du \\"Harvard Africa Policy Journals\\", a étudié les sciences politiques et sociales au Emmanuel College of Cambridge University"]} 1 -2023-07-08 08:23:10.954855 2023-07-08 08:23:10.954869 0d9f4762-95e8-4595-8721-ca67faa86b53 {"md5": "9a8d33a0f851e2f167952eb41cb79689", "pid": "25943812X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/25943812X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25943812X", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Maucotel, Nikita", "country_associated": "fr", "authorized_access_point": "Maucotel, Nikita, 19..-...."} 1 -2023-07-08 08:23:11.070508 2023-07-08 08:23:11.07052 8f625d99-b6b8-4217-9bc3-d916f8628985 {"md5": "d40b491781f75ef2e78119e8f1fce46f", "pid": "259789798", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/259789798", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/259789798", "source": "IDREF"}], "preferred_name": "Ventista, Ourania Maria", "authorized_access_point": "Ventista, Ourania Maria"} 1 -2023-07-08 08:23:09.955152 2023-07-08 10:27:38.854313 2b677f22-728b-4d86-99eb-f8b8554013e6 {"md5": "7b0cf81d02bf316897b63b3744d445af", "pid": "258645563", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/258645563", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258645563", "source": "IDREF"}], "date_of_birth": "1981", "preferred_name": "Boseckert, Christian", "country_associated": "gw", "authorized_access_point": "Boseckert, Christian, 1981-....", "biographical_information": ["Spécialiste de l'histoire de la ville de Cobourg. Maître de conférences en histoire de la Franconie à Würzburg depuis 2017 (en 2022)"]} 2 -2023-07-08 08:23:10.53323 2023-07-08 10:28:23.218821 31897212-0854-4443-be05-ec1be2f27b77 {"md5": "5abde86c96b7acbe2e062f0bdbea8913", "pid": "259327735", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/259327735", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/259327735", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Liroy", "country_associated": "be", "authorized_access_point": "Liroy, 19..-....", "biographical_information": ["Auteur de bandes dessinées", "Pseudonyme de Rémi Leroy"]} 2 -2023-07-08 08:23:12.644769 2023-07-08 10:31:13.518251 6fa53a6d-ce66-48cb-9bbc-111c9d7cbcf2 {"md5": "7a64ebf2e04f629f4f87a60e98378dfa", "pid": "260176893", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/260176893", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260176893", "source": "IDREF"}], "date_of_birth": "1950--", "preferred_name": "Dertouzos, James, N.", "country_associated": "xxu", "authorized_access_point": "Dertouzos, James, N., 1950-"} 2 -2023-07-08 08:23:10.818083 2023-07-08 10:31:23.993992 21b68d9d-cf64-424d-ba75-e52a34101e43 {"md5": "655276d933c092b30f34b185ea4337b4", "pid": "259367516", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "identifier": "http://www.idref.fr/259367516", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/259367516", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Alves Paim Filho, Ignacio", "country_associated": "bl", "authorized_access_point": "Alves Paim Filho, Ignacio, 19..-....", "biographical_information": ["Rua Félix da Cunha 737/410, Porto Alegre – RS, 90570-001 Brésil"]} 2 -2023-07-08 08:23:11.20569 2023-07-08 08:23:11.205702 f8716d0c-ba1c-4429-8168-087ff8421465 {"md5": "5b4333767e39d36b7774b2eb8d30bef4", "pid": "25982142X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/25982142X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25982142X", "source": "IDREF"}], "date_of_birth": "1865", "date_of_death": "1935", "preferred_name": "Colin, Louis-Victor", "country_associated": "fr", "authorized_access_point": "Colin, Louis-Victor, 1865-1935", "biographical_information": ["Ingénieur français né en 1865 à Troyes (Aube) et décédé en 1935 à Guise (Aisne). Diplômé de l'École des arts et métiers de Châlons-en-Champagne, il entre en 1886 au service de la Société du Familistère. Directeur de l'atelier des modèles de l'usine du Familistère (1889). Administrateur-gérant de l'Association coopérative du capital et du travail (1897-1933)."]} 1 -2023-07-08 08:23:11.322823 2023-07-08 08:23:11.322835 7e4f4ef0-0f06-47a6-a641-364c13939d11 {"md5": "eeb19ffaa92c3d5c844037948c074b92", "pid": "259847127", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "spa"], "identifier": "http://www.idref.fr/259847127", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/259847127", "source": "IDREF"}], "variant_name": ["Badillo, Jorell A. Meléndez-"], "date_of_birth": "19XX", "preferred_name": "Meléndez-Badillo, Jorell A.", "country_associated": "xxu", "variant_access_point": ["Badillo, Jorell A. Meléndez-"], "authorized_access_point": "Meléndez-Badillo, Jorell A., 19..-....", "biographical_information": ["Historien américaniste"]} 1 -2023-07-08 08:23:11.45354 2023-07-08 08:23:11.453546 0cb78bf7-d6d2-40fb-8c9f-d87bf9a7f58e {"md5": "28c23beac58eac55f10a8d5e7b96904d", "pid": "259860778", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "ger"], "qualifier": "philosophe", "identifier": "http://www.idref.fr/259860778", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/259860778", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Pietsch, Wolfgang, philosophe", "country_associated": "gw", "authorized_access_point": "Pietsch, Wolfgang, 19..-...., philosophe", "biographical_information": ["Philosophe des sciences"]} 1 -2023-07-08 08:23:11.572206 2023-07-08 08:23:11.57222 c5152175-36ae-4e67-ac3b-e60ccad6341a {"md5": "5fc230511b3a9b0a3d8f7138c4482bfd", "pid": "259863424", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/259863424", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/259863424", "source": "IDREF"}], "date_of_birth": "1991-08-20", "preferred_name": "Forret, Amaury", "country_associated": "fr", "authorized_access_point": "Forret, Amaury, 1991-....", "biographical_information": ["Docteur en médecine (Amiens, 2021)"]} 1 -2023-07-08 08:23:11.702628 2023-07-08 08:23:11.702679 b536e4af-3798-46ef-8f03-30c7350f01e1 {"md5": "a13eadc72cb2370e0b33d870e1059374", "pid": "259907448", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/259907448", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/259907448", "source": "IDREF"}], "date_of_birth": "1992-03-16", "preferred_name": "Florin, Louis", "country_associated": "fr", "authorized_access_point": "Florin, Louis, 1992-...."} 1 -2023-07-08 08:23:11.843523 2023-07-08 08:23:11.843536 59872922-985c-46fa-a3e4-d243ec703b5c {"md5": "693d1659b08332e489e1c83e033b09dd", "pid": "259908142", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/259908142", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/259908142", "source": "IDREF"}], "date_of_birth": "19..", "preferred_name": "Point, Claude-Michel", "country_associated": "fr", "authorized_access_point": "Point, Claude-Michel, 19..-....", "biographical_information": ["Titulaire d'une thèse en Médecine (Lyon 1, 1986)"]} 1 -2023-07-08 08:23:11.97163 2023-07-08 08:23:11.97164 61c19fab-65bc-47da-ba22-aaf198e68836 {"md5": "d2b790692232e99ba4a7d49aa992ed7b", "pid": "259925993", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/259925993", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/259925993", "source": "IDREF"}], "date_of_birth": "19..", "preferred_name": "Cretinon, Hubert", "country_associated": "fr", "authorized_access_point": "Cretinon, Hubert, 19..-....", "biographical_information": ["Titulaire d'une thèse en Médecine (Lyon 1, 1986)"]} 1 -2023-07-08 08:23:12.104754 2023-07-08 08:23:12.104766 a779b0b6-a405-42f1-afd7-3b4014f3a31b {"md5": "9a3b7b3f60ca89be0aff147000d2d5a5", "pid": "259928844", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/259928844", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/259928844", "source": "IDREF"}], "preferred_name": "Gantiez, Antoine", "country_associated": "fr", "authorized_access_point": "Gantiez, Antoine"} 1 -2023-07-08 08:23:12.250407 2023-07-08 08:23:12.250422 6512101c-bb1f-46ca-b6ae-d2647b1a1abf {"md5": "c194949cc9f63619bbea8df18bb9db4a", "pid": "259991724", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/259991724", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/259991724", "source": "IDREF"}], "date_of_birth": "1997-08-25", "preferred_name": "Meyer, Tess", "country_associated": "fr", "authorized_access_point": "Meyer, Tess, 1997-....", "biographical_information": ["A soutenu un mémoire d'orthophonie à l'école d'orthophonie de l'Université Côte d'Azur en 2021"]} 1 -2023-07-08 08:23:12.424238 2023-07-08 08:23:12.424248 1152ab43-aaeb-4e61-80cb-cb83c245920c {"md5": "7f0eda36c2ad85bd5d84b36f8ddb1094", "pid": "260074969", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/260074969", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260074969", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Fernández Fernández, Álvaro", "authorized_access_point": "Fernández Fernández, Álvaro, 19..-...."} 1 -2023-07-08 08:23:12.540377 2023-07-08 08:23:12.540388 33f03578-0030-437a-9d09-34b31fc6c463 {"md5": "64c83ab0cf89fd9823a4995c52324234", "pid": "26009773X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/26009773X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26009773X", "source": "IDREF"}], "date_of_birth": "1990-07-22", "preferred_name": "Fahrni, Anne-Claude", "country_associated": "sz", "authorized_access_point": "Fahrni, Anne-Claude, 1990-....", "biographical_information": ["Médecin. Docteure de l'Université de Fribourg, Suisse (2021)"]} 1 -2023-07-08 08:23:12.859226 2023-07-08 08:23:12.859239 d8617b53-e64a-46dc-a040-8e3a07857093 {"md5": "aedcccdd5c442f3ab30ba093f6734ae5", "pid": "260322393", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/260322393", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260322393", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Bonfim, Carolina", "country_associated": "be", "authorized_access_point": "Bonfim, Carolina, 19..-....", "biographical_information": ["Carolina BONFIM est artiste, enseignante et chercheuse. Docteure en arts et sciences de l'art (Université Libre de Bruxelles et École nationale supérieure des arts visuels de La Cambre). Centrée sur la question des archives immatérielles, sa pratique se base sur le développement et la mise en œuvre de modes expérimentaux de transmission et de traduction. Au cours de ces dernières années, elle a mené à bien différents projets artistiques et de recherche, qui ont en commun l’établissement d’un dialogue étroit avec la pensée critique."]} 1 -2023-07-08 08:23:12.966049 2023-07-08 08:23:12.966063 7ab90685-9528-4be2-a10f-223c515ec05b {"md5": "ea8b2f5ecc7bf00f68ea0351a77de5cf", "pid": "26040862X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ara"], "identifier": "http://www.idref.fr/26040862X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26040862X", "source": "IDREF"}], "variant_name": ["مونة, أحمد", "Mūnah, Aḥmad", "Mouna, Ahmed"], "date_of_birth": "19XX", "preferred_name": "Mūnaẗ, Aḥmad", "country_associated": "xx", "variant_access_point": ["Mūnah, Aḥmad", "Mouna, Ahmed"], "authorized_access_point": "Mūnaẗ, Aḥmad, 19..-....", "biographical_information": ["Professeur de logique et de droit islamique"]} 1 -2023-07-08 08:23:13.096572 2023-07-08 08:23:13.096584 bbad58fa-2a40-4d72-ac0b-89e003aaabbd {"md5": "d33da4fdef6561fdd0417dc65529e046", "pid": "260480584", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/260480584", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260480584", "source": "IDREF"}], "preferred_name": "Neitzel, Hartmut", "country_associated": "gw", "authorized_access_point": "Neitzel, Hartmut"} 1 -2023-07-08 08:23:13.20197 2023-07-08 08:23:13.201978 8ddec8ed-fedd-4651-8126-e9655b823b6c {"md5": "d320cd46e3a45e02f69cc0ce78403d75", "pid": "260499021", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa", "por"], "identifier": "http://www.idref.fr/260499021", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260499021", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Maiz Montanaro, Marcos", "country_associated": "py", "authorized_access_point": "Maiz Montanaro, Marcos, 19..-....", "biographical_information": ["Traducteur"]} 1 -2023-07-08 08:23:13.310363 2023-07-08 08:23:13.310375 615fc0e3-7700-4aae-afe6-458c46d25718 {"md5": "a275806e59342668c515b7c9f059ac32", "pid": "260505269", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/260505269", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260505269", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Giovagnoli, Alessandra", "country_associated": "it", "authorized_access_point": "Giovagnoli, Alessandra", "biographical_information": ["Dipt. di Scienze Statistiche, University of Bologna"]} 1 -2023-07-08 08:23:13.426619 2023-07-08 08:23:13.42663 48687f32-c2ff-4eb3-a420-4dca89edf97e {"md5": "73b9a895f6beb64268dee66eb6a27225", "pid": "260578045", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/260578045", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260578045", "source": "IDREF"}], "date_of_birth": "1991-09-15", "preferred_name": "Viaouët, Alexis-(1991. ....)", "country_associated": "fr", "authorized_access_point": "Viaouët, Alexis-(1991. ....)", "biographical_information": ["Auteur d'une thèse d'exercice en Médecine spécialisée soutenue le 14 octobre 2021 à l'Université de Bordeaux"]} 1 -2023-07-08 08:23:13.5321 2023-07-08 08:23:13.532111 a8637449-6a8e-4865-bd03-aa21279ba1c1 {"md5": "36cedf99db8fd8494b3b186a072410ca", "pid": "260582808", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/260582808", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260582808", "source": "IDREF"}], "variant_name": ["Blavia, Francisco"], "preferred_name": "Blavia B., Francisco", "country_associated": "ve", "variant_access_point": ["Blavia, Francisco"], "authorized_access_point": "Blavia B., Francisco", "biographical_information": ["Ingénieur agronome"]} 1 -2023-07-08 08:23:17.513395 2023-07-08 08:23:17.513403 fce0cc53-564f-4f9a-9685-488282c4a048 {"md5": "0aaa9611b435c3281f734acf7ae5f86c", "pid": "262212129", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/262212129", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262212129", "source": "IDREF"}], "preferred_name": "Campbell, Julieann", "authorized_access_point": "Campbell, Julieann"} 1 -2023-07-08 08:23:13.631241 2023-07-08 10:26:41.219189 028ab0a9-5573-4338-ba78-fa1f9530b0ed {"md5": "b7d4b0d15609372a4100f3ca3e2e1f7e", "pid": "260592404", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/260592404", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260592404", "source": "IDREF"}], "date_of_birth": "1995-10-09", "preferred_name": "Uhlrich, Grégoire", "country_associated": "fr", "authorized_access_point": "Uhlrich, Grégoire, 1995-....", "biographical_information": ["Auteur d'une thèse en Physique théorique soutenue à l'Université de Lyon en 2021"]} 2 -2023-07-08 08:23:13.765073 2023-07-08 10:31:24.390559 eca1ae42-4ce7-4939-997c-788d7e825d46 {"md5": "01677bf4b7ba4fbe57599d9055d58c50", "pid": "260735353", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/260735353", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260735353", "source": "IDREF"}], "date_of_birth": "1994-07-31", "preferred_name": "Mancini, Maxence", "country_associated": "fr", "authorized_access_point": "Mancini, Maxence, 1994-....", "biographical_information": ["Docteur en Pharmacie (2021)"]} 2 -2023-07-08 08:23:13.88017 2023-07-08 08:23:13.880178 3b5e0a29-f695-4842-8564-04d1e3fa3f82 {"md5": "11941ad488c1bd67f72399be8734f7de", "pid": "260775967", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "conference": false, "identifier": "http://www.idref.fr/260775967", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260775967", "source": "IDREF"}], "preferred_name": "Bureau Emmenegger (Fribourg, Suisse)", "country_associated": "sz", "authorized_access_point": "Bureau Emmenegger (Fribourg, Suisse)"} 1 -2023-07-08 08:23:14.12291 2023-07-08 08:23:14.122921 289cd3db-b39d-459a-acfe-bcf8cb4e3aec {"md5": "c8e5926e807c3c0feeba89fd57347a02", "pid": "260807710", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/260807710", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260807710", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Hardt, Mathilde", "country_associated": "be", "authorized_access_point": "Hardt, Mathilde, 19..-....", "biographical_information": ["Professeure à temps partiel à l’ULB, professeure invitée à l’USL-B et chercheuse post-doctorante F.R.S.-FNRS"]} 1 -2023-07-08 08:23:14.246522 2023-07-08 08:23:14.246533 f4d25f1f-a2f8-4769-a037-b8fe88897e62 {"md5": "59704bfc519bce58a086953ac4db6ef1", "pid": "260812374", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "professeure des écoles", "identifier": "http://www.idref.fr/260812374", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260812374", "source": "IDREF"}], "date_of_birth": "19..", "preferred_name": "Rivière, Jennifer, professeure des écoles", "country_associated": "fr", "authorized_access_point": "Rivière, Jennifer, 19.., professeure des écoles", "biographical_information": ["Professeure des écoles"]} 1 -2023-07-08 08:23:14.687626 2023-07-08 08:23:14.687631 6b941998-8ada-4d59-ae30-4e80d9e28217 {"md5": "ecd00392f342ad40f79cac8c780bf192", "pid": "26091164X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/26091164X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26091164X", "source": "IDREF"}], "date_of_birth": "1994-05-17", "preferred_name": "Mérou, Nicolas", "country_associated": "fr", "authorized_access_point": "Mérou, Nicolas, 1994-....", "biographical_information": ["Auteur d'une thèse en Biologie de l'environnement, des populations, écologie à La Rochelle en 2021"]} 1 -2023-07-08 08:23:14.793402 2023-07-08 08:23:14.793414 af362186-b057-4151-909d-4e3ad1aa5deb {"md5": "445c2f020345ac4a8248cda505f89253", "pid": "260925810", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/260925810", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260925810", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Lacadée, Jean-Pierre", "country_associated": "fr", "authorized_access_point": "Lacadée, Jean-Pierre, 19..-....", "biographical_information": ["Docteur en médecine à Bordeaux 2 en 1987"]} 1 -2023-07-08 08:23:14.888758 2023-07-08 08:23:14.888771 8daafaeb-0225-4e2c-b4d4-3c0d9fd3d79c {"md5": "4a9e9351c3d638f1182a637b1e1ba9fe", "pid": "260929905", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/260929905", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260929905", "source": "IDREF"}], "date_of_birth": "1994-01-75", "preferred_name": "Carbillet, Morgane", "country_associated": "fr", "authorized_access_point": "Carbillet, Morgane, 1994-....", "biographical_information": ["Auteur d'une thèse d'exercice en Chirurgie dentaire (Toulouse 3, 2020)"]} 1 -2023-07-08 08:23:15.014302 2023-07-08 08:23:15.014309 32cd5d20-fffb-4144-ac9b-bfadd1e86fde {"md5": "9dd5be9adc832c80bf36ad61286980dd", "pid": "260939587", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/260939587", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260939587", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Gay, Sylvie", "country_associated": "sz", "authorized_access_point": "Gay, Sylvie, 19..-....", "biographical_information": ["Autrice de poésie originaire du Valais (Suisse)"]} 1 -2023-07-08 08:23:14.515796 2023-07-08 10:24:24.301606 89454a0e-e079-4e87-b9b1-3885e17dc028 {"md5": "6ab120ad61fd09f83064730b3ab40265", "pid": "260864811", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/260864811", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260864811", "source": "IDREF"}], "preferred_name": "Sayegh, Faouzi", "country_associated": "fr", "authorized_access_point": "Sayegh, Faouzi", "biographical_information": ["Auteur d'une thèse de Psychologie à Nice en 1984"]} 2 -2023-07-08 08:23:13.995146 2023-07-08 10:25:08.45082 06490e42-aa0e-409e-8c51-4ab0e0c009c3 {"md5": "f6b1014f7aad600c69b003c1db5f19ef", "pid": "260782955", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/260782955", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260782955", "source": "IDREF"}], "date_of_birth": "1992-10-10", "preferred_name": "Schulz, Aurélie", "country_associated": "fr", "authorized_access_point": "Schulz, Aurélie, 1992-....", "biographical_information": ["Auteur d'une thèse en Géochimie à Strasbourg en 2020"]} 2 -2023-07-08 08:23:14.358971 2023-07-08 10:27:36.566656 f2f122ce-aeaa-4253-a051-e416abd0edba {"md5": "e30c93f056defa56f4b584eb55ac5593", "pid": "260844578", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/260844578", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260844578", "source": "IDREF"}], "preferred_name": "Government of Gibraltar", "country_associated": "gi", "date_of_establishment": "19XX", "authorized_access_point": "Government of Gibraltar", "biographical_information": ["Mécène"]} 2 -2023-07-08 08:23:15.113474 2023-07-08 08:23:15.113485 82bd69de-4573-4a3e-a107-3e225fd4e7bc {"md5": "1047f840a8a3ec53b65df7fd97fe7bf1", "pid": "260943193", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["hun", "ger"], "conference": false, "identifier": "http://www.idref.fr/260943193", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260943193", "source": "IDREF"}], "variant_name": ["Állami Főgymnasium (Hermannstadt)", "Staatliches Gymnasium Hermannstadt", "Staatliches Hauptgymnasium Groß-Szeben", "Hauptgymnasium (Hermannstadt)"], "preferred_name": "Nagyszebeni Állami Főgymnasium (Sibiu)", "country_associated": "rm", "variant_access_point": ["Állami Főgymnasium (Hermannstadt)", "Staatliches Gymnasium Hermannstadt", "Staatliches Hauptgymnasium Groß-Szeben", "Hauptgymnasium (Hermannstadt)"], "authorized_access_point": "Nagyszebeni Állami Főgymnasium (Sibiu)"} 1 -2023-07-08 08:23:15.209931 2023-07-08 08:23:15.20994 ec478bc9-8bf7-47e8-98bd-6013094761e4 {"md5": "fa508aa135a0643002ef2ac3cd11aeee", "pid": "260977756", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/260977756", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260977756", "source": "IDREF"}], "date_of_birth": "1951-08-09", "preferred_name": "Lavalette, Béatrice de", "country_associated": "fr", "authorized_access_point": "Lavalette, Béatrice de, 1951-...."} 1 -2023-07-08 08:23:15.438711 2023-07-08 08:23:15.438725 46ca87ca-fa6e-4878-9a71-2942e5c324fc {"md5": "62bb949fca0437ac21697add1438fc17", "pid": "260995223", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre", "ger"], "conference": false, "identifier": "http://www.idref.fr/260995223", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260995223", "source": "IDREF"}], "preferred_name": "Galerie Laeubli (Zürich, Suisse)", "country_associated": "sz", "date_of_establishment": "XXXX", "authorized_access_point": "Galerie Laeubli (Zürich, Suisse)"} 1 -2023-07-08 08:23:15.544615 2023-07-08 08:23:15.544626 92361212-3cb5-4a83-bd3b-baede5f50670 {"md5": "2babc7c885775ee488ea034e731461ee", "pid": "261067079", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/261067079", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261067079", "source": "IDREF"}], "preferred_name": "Leonelli Cantergiani, Gina Natalie", "authorized_access_point": "Leonelli Cantergiani, Gina Natalie", "biographical_information": ["Auteur d'une thèse en Sciences et procédés des aliments et bioproduits à Paris, AgroParisTech en 2011"]} 1 -2023-07-08 08:23:15.647302 2023-07-08 08:23:15.647315 fd6dcdc0-4603-496b-bf33-136d8a2fd86b {"md5": "e676c1a7d3b24fe93f028374d1a8e153", "pid": "261116274", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/261116274", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261116274", "source": "IDREF"}], "date_of_birth": "19..", "preferred_name": "Gauducheau, Anne", "country_associated": "fr", "authorized_access_point": "Gauducheau, Anne, 19..-....", "biographical_information": ["Docteur en médecine (en 1988)"]} 1 -2023-07-08 08:23:15.740308 2023-07-08 08:23:15.740316 e4906330-f7d9-4b01-9bdb-003b8c36185d {"md5": "c7db50a09f2e7749972370ab65dcf3f6", "pid": "261144588", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fin"], "identifier": "http://www.idref.fr/261144588", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261144588", "source": "IDREF"}], "preferred_name": "Palomäki, Mauri", "country_associated": "fi", "authorized_access_point": "Palomäki, Mauri"} 1 -2023-07-08 08:23:15.979839 2023-07-08 08:23:15.979844 d7938734-86e5-44d1-b28d-d0c095aafae9 {"md5": "ec9c6d9d2f044f06cb3dc052d68811bc", "pid": "26124096X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/26124096X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26124096X", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Lachowicz, Loïs", "country_associated": "fr", "authorized_access_point": "Lachowicz, Loïs, 19..-...."} 1 -2023-07-08 08:23:16.082804 2023-07-08 08:23:16.082816 63dc95e1-8d6c-4408-a6b1-3a5e1c85d9b7 {"md5": "162496a82be36dbbe184dc5ab7afe1ce", "pid": "261260987", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/261260987", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261260987", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Dubuis, Anouck", "country_associated": "sz", "authorized_access_point": "Dubuis, Anouck, 19..-....", "biographical_information": ["Auteur d'un mémoire de master en droit à Université de Lausanne en 2021"]} 1 -2023-07-08 08:23:16.195203 2023-07-08 08:23:16.195209 b1c9649b-3871-4113-a647-6ce1e0c94aa6 {"md5": "99d996522766818e3d80615127f646c6", "pid": "261270206", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/261270206", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261270206", "source": "IDREF"}], "date_of_birth": "19..-.", "preferred_name": "Ariane", "country_associated": "fr", "authorized_access_point": "Ariane", "biographical_information": ["1re youtubeuse de yoga en France"]} 1 -2023-07-08 08:23:15.842841 2023-07-08 10:30:27.759975 201136a6-b996-4e49-9028-1d9e343f0ccb {"md5": "2422dcf372a75e2dcdc6cb377d79401d", "pid": "261155210", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["may"], "identifier": "http://www.idref.fr/261155210", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261155210", "source": "IDREF"}], "date_of_birth": "19..", "preferred_name": "Abdullah, Nor Rul Hasma", "country_associated": "my", "authorized_access_point": "Abdullah, Nor Rul Hasma, 19..-....", "biographical_information": ["Faculté d'électricité et d'électronique. Université de Malaisie Pahang Pekan, Pahang, Malaisie"]} 2 -2023-07-08 08:23:16.288918 2023-07-08 08:23:16.288924 34c716a5-87fd-427d-83dd-36a1aa637148 {"md5": "86fb28fb64e9e015d0f088192ad1c752", "pid": "261515632", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/261515632", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261515632", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Thoma, Ulrike", "country_associated": "gw", "authorized_access_point": "Thoma, Ulrike", "biographical_information": ["HISKP Universität Bonn"]} 1 -2023-07-08 08:23:16.396798 2023-07-08 08:23:16.396807 e1906289-eb72-455d-88ca-7ba639cdab8f {"md5": "59a3d0e12136eb17cc796acf48f44b12", "pid": "261606441", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/261606441", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261606441", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Hall, Eilidh AB", "country_associated": "xxk", "authorized_access_point": "Hall, Eilidh AB", "biographical_information": ["Docteur études américaines à l'Université East Anglia (Royaume Uni)"]} 1 -2023-07-08 08:23:16.503874 2023-07-08 08:23:16.503886 9b08ab77-1ccc-4cc1-a562-58da6ba2bc1c {"md5": "5cda4e32ea7c9b336c03f3a302b1a9ab", "pid": "261732722", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/261732722", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261732722", "source": "IDREF"}], "preferred_name": "Sasaki, Lidia", "country_associated": "ja", "authorized_access_point": "Sasaki, Lidia", "biographical_information": ["Professeur assistant, International Center, Tokyo Metropolitan University"]} 1 -2023-07-08 08:23:16.619089 2023-07-08 08:23:16.619099 b8976370-b626-4a06-80ed-b0d029d26e57 {"md5": "7b12ca33c9dfee8cd1f35b9e73b19d98", "pid": "261805762", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/261805762", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261805762", "source": "IDREF"}], "variant_name": ["Druba, Bernd Brandes-"], "date_of_birth": "1960", "preferred_name": "Brandes-Druba, Bernd", "country_associated": "gw", "variant_access_point": ["Druba, Bernd Brandes-, 1960-...."], "authorized_access_point": "Brandes-Druba, Bernd, 1960-....", "biographical_information": ["Archéologue et historien d'art", "Lieu de naissance : Celle, Allemagne."]} 1 -2023-07-08 08:23:16.737469 2023-07-08 08:23:16.737482 ca92e4b8-9530-4c2f-81a5-d591a7925116 {"md5": "afac96d70ace5fb20b81be5d49f2deda", "pid": "261809911", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/261809911", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261809911", "source": "IDREF"}], "date_of_birth": "19..", "preferred_name": "Bricault, Robert", "country_associated": "fr", "authorized_access_point": "Bricault, Robert"} 1 -2023-07-08 08:23:16.992074 2023-07-08 08:23:16.992085 02cb2936-8ecd-4b9a-a442-a2f4e6610865 {"md5": "99283e147fdae5dee0d452811efbf9d0", "pid": "261876007", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/261876007", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261876007", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Siddiqi, M.M.", "country_associated": "ii", "authorized_access_point": "Siddiqi, M.M."} 1 -2023-07-08 08:23:17.087957 2023-07-08 08:23:17.087969 634590e7-f339-4492-9787-7d2034cccfe4 {"md5": "0c9e68bd8cc5a85b77e926bdac012937", "pid": "261892169", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/261892169", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261892169", "source": "IDREF"}], "preferred_name": "Hyatt, Laura", "country_associated": "xxu", "authorized_access_point": "Hyatt, Laura"} 1 -2023-07-08 08:23:17.193241 2023-07-08 08:23:17.193253 a5a2f529-f99f-4bd7-bc99-a5f66004c490 {"md5": "cd18cdb5467e245f1016a376384cb0ba", "pid": "261974580", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/261974580", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261974580", "source": "IDREF"}], "date_of_birth": "1960-09-04", "preferred_name": "Mallet, Thierry", "country_associated": "fr", "authorized_access_point": "Mallet, Thierry, 1960-....", "biographical_information": ["Diplômé de l’École Polytechnique (1980), de l’École nationale des Ponts et Chaussées (1985) et titulaire d’un MSC en Transport du MIT – Massachusetts Institute of Technology – (1986)", "Depuis 2016, Président directeur général de Transdev, groupe français multinational de transport"]} 1 -2023-07-08 08:23:17.292634 2023-07-08 08:23:17.292648 cfeb9d3b-cec7-4a87-9e32-99235b81e1d4 {"md5": "8b67a47090620a1b6dda42bbfdac9e99", "pid": "26212369X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/26212369X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26212369X", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "de Souza Matos, Lorena Bezerra", "country_associated": "xxu", "authorized_access_point": "de Souza Matos, Lorena Bezerra, 19..-....", "biographical_information": ["Enseignante et chercheuse en management et membre de l’Institut de recherche en gestion. Elle développe des recherches théoriques et empiriques qualitatives, en particulier la gestion de l’innovation, le bien-être, la bureaucratie et la création de sens. Ses recherches actuelles portent sur l’impact des espaces verts urbains sur le bien-être des citoyens. Ses publications les plus récentes sont parues dans les revues rausp Management Journal et Mackenzie Management Review."]} 1 -2023-07-08 08:23:17.40231 2023-07-08 08:23:17.402323 309062f5-db0b-4b2a-8c4c-26bff0f7be7e {"md5": "fe6df2bd6e0d13f162720337a7b71a67", "pid": "26221007X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/26221007X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26221007X", "source": "IDREF"}], "preferred_name": "Araque, Ricardo", "authorized_access_point": "Araque, Ricardo", "biographical_information": ["Ingénieur agronome"]} 1 -2023-07-08 08:23:17.61363 2023-07-08 08:23:17.613637 60e5007b-d008-423e-b879-59caa6e7feb6 {"md5": "a90e886e8c680aa9a37f8ecfb1454086", "pid": "262213656", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/262213656", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262213656", "source": "IDREF"}], "preferred_name": "Smith, Christopher B.R.", "authorized_access_point": "Smith, Christopher B.R.", "biographical_information": ["Chercheur à la Memorial University's School of Social Work"]} 1 -2023-07-08 08:23:17.727207 2023-07-08 08:23:17.727221 db31c132-4057-4fa8-b0b0-4a965be83d9b {"md5": "8329a3e6018fd0ab5533a5468d30f60f", "pid": "262246619", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/262246619", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262246619", "source": "IDREF"}], "variant_name": ["Blanc, Candice Joyce"], "date_of_birth": "19XX", "preferred_name": "Blanc, Candice", "country_associated": "sz", "variant_access_point": ["Blanc, Candice Joyce"], "authorized_access_point": "Blanc, Candice, 19..-....", "biographical_information": ["Architecte"]} 1 -2023-07-08 08:23:17.932332 2023-07-08 08:23:17.932343 8a3dae2c-3b6a-41f8-85be-7328a910e1d9 {"md5": "5f42d3aaf46e7be12abfab97948c95f4", "pid": "262286394", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/262286394", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262286394", "source": "IDREF"}], "preferred_name": "Deslandes, Geneviève", "authorized_access_point": "Deslandes, Geneviève", "biographical_information": ["Cégep de Saint-Hyacinthe, Canada"]} 1 -2023-07-08 08:23:18.027669 2023-07-08 08:23:18.027681 b40d3550-e9eb-42c1-886c-74cdca2239e7 {"md5": "5f3db69f1ea12d579d1a3576eba23fe1", "pid": "26232217X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifier": "http://www.idref.fr/26232217X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26232217X", "source": "IDREF"}], "variant_name": ["Коршунов, В.Г."], "preferred_name": "Koršunov, V.G.", "country_associated": "ru", "variant_access_point": ["Коршунов, В.Г."], "authorized_access_point": "Koršunov, V.G.", "biographical_information": ["Militaire soviétique"]} 1 -2023-07-08 08:23:18.144688 2023-07-08 08:23:18.144699 d1869760-6218-4c86-8539-e81eabf33a95 {"md5": "4caa83e946cdc756493eeaecbc1bca1c", "pid": "262328836", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/262328836", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262328836", "source": "IDREF"}], "preferred_name": "Berengueras, Jennifer", "authorized_access_point": "Berengueras, Jennifer"} 1 -2023-07-08 08:23:18.23711 2023-07-08 08:23:18.237122 a028b63e-bc0e-459c-9126-6c71253d979b {"md5": "9424a90711e10b5d61f20829ef42f9ab", "pid": "262350459", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/262350459", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262350459", "source": "IDREF"}], "preferred_name": "Sanlam Art Gallery (Bellville, Afrique du Sud)", "country_associated": "sa", "authorized_access_point": "Sanlam Art Gallery (Bellville, Afrique du Sud)", "biographical_information": ["Galerie d'art"]} 1 -2023-07-08 08:23:18.329257 2023-07-08 08:23:18.329267 04637b47-8d81-405b-887d-fd1217974790 {"md5": "c7b8616a347ffdeeb9f8c81d2ddacc30", "pid": "262354659", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/262354659", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262354659", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Abrash, Merritt", "country_associated": "xxu", "authorized_access_point": "Abrash, Merritt"} 1 -2023-07-08 08:23:18.678357 2023-07-08 08:23:18.67837 2940a785-441c-4dc9-93c4-6dc2cd69b3a0 {"md5": "167bc814007eb78097fe1c95f2670b80", "pid": "262436574", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifier": "http://www.idref.fr/262436574", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262436574", "source": "IDREF"}], "preferred_name": "Workshop on Japan Linear Collider (JLC)", "country_associated": "ja", "date_of_termination": "1992-02-20", "date_of_establishment": "1992-02-18", "authorized_access_point": "Workshop on Japan Linear Collider (JLC) (1992)"} 1 -2023-07-08 08:23:18.78526 2023-07-08 08:23:18.785369 8fcde187-23e5-47b7-8ed5-5b95beca464b {"md5": "0ef60e3171a3a9e4197aa3a1bedbeb96", "pid": "262452979", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "chi"], "identifier": "http://www.idref.fr/262452979", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262452979", "source": "IDREF"}], "variant_name": ["冯, 秋香"], "date_of_birth": "19XX", "preferred_name": "Feng, Qiuxiang", "country_associated": "cc", "variant_access_point": ["冯, 秋香, 19..-...."], "authorized_access_point": "Feng, Qiuxiang, 19..-....", "biographical_information": ["Traductrice"]} 1 -2023-07-08 08:23:18.435732 2023-07-08 10:26:41.522988 85b90a7a-ff72-4031-8ab7-af3e07cef907 {"md5": "4b8929b57c9ca1229387b189de898467", "pid": "262398516", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/262398516", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262398516", "source": "IDREF"}], "preferred_name": "Ducret, Sylvie", "authorized_access_point": "Ducret, Sylvie", "biographical_information": ["Directeur de thèse"]} 2 -2023-07-08 08:23:17.831221 2023-07-08 10:27:01.985346 f8875704-fac4-4617-af77-25056fee4346 {"md5": "978b1a9c98079d0dd13c7f4bc6a577fe", "pid": "262262940", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/262262940", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262262940", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Mersha, Genet", "country_associated": "et", "authorized_access_point": "Mersha, Genet, 19..-....", "biographical_information": ["Analyste principale à Ethio Quest News, portail d’information, d’étude et d’analyse sur l’Éthiopie."]} 2 -2023-07-08 08:23:18.911951 2023-07-08 08:23:18.911962 0d52314e-c605-4867-a472-66c0f22c19e6 {"md5": "3a8f045db273f9675c01da7fbfbfc55e", "pid": "262466724", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "auteur(e) en physique", "identifier": "http://www.idref.fr/262466724", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262466724", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Veitshans, Thomas, auteur(e) en physique", "country_associated": "fr", "authorized_access_point": "Veitshans, Thomas, 19..-...., auteur(e) en physique", "biographical_information": ["Auteur(e) d'une thèse de doctorat en physique (Grenoble 1, 1998)"]} 1 -2023-07-08 08:23:19.143209 2023-07-08 08:23:19.143221 b986eff1-0fda-43d5-933a-b4c78e66a085 {"md5": "cc9e262cb72c1fbb5d1e85d79135c07f", "pid": "262471116", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/262471116", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262471116", "source": "IDREF"}], "date_of_birth": "1958", "preferred_name": "Bossbach, Christel", "country_associated": "gw", "authorized_access_point": "Bossbach, Christel, 1958-....", "biographical_information": ["Rédactrice radio et journaliste"]} 1 -2023-07-08 08:23:19.243805 2023-07-08 08:23:19.243818 58e254b4-3b70-41bc-a85f-537ac1ffd8d4 {"md5": "35549d2c220d2f99aaf7548f20e47f32", "pid": "262486636", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/262486636", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262486636", "source": "IDREF"}], "date_of_birth": "1990-10-26", "preferred_name": "Petitmangin, Alizée", "country_associated": "fr", "authorized_access_point": "Petitmangin, Alizée, 1990-....", "biographical_information": ["Auteur d'une thèse en Droit privé à Université de Lille (2018-2021) en 2021"]} 1 -2023-07-08 08:23:19.361444 2023-07-08 08:23:19.361459 aab84fa2-6be3-40c8-9de3-ad779f93cbcb {"md5": "6d89f7a8c20053d5c60eeffe6f4ec8cb", "pid": "26249714X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "identifier": "http://www.idref.fr/26249714X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26249714X", "source": "IDREF"}], "date_of_birth": "1913", "date_of_death": "1933", "preferred_name": "Palmeira, José Amaral", "country_associated": "bl", "authorized_access_point": "Palmeira, José Amaral, 1913-1933"} 1 -2023-07-08 08:23:19.470569 2023-07-08 08:23:19.470581 ecde4d75-ad28-4d4d-b6f7-183238f8d277 {"md5": "9c694f6d7ea7f3e0239a916df6732cf8", "pid": "262504391", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/262504391", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262504391", "source": "IDREF"}], "variant_name": ["University of Wisconsin-Milwaukee. Center for Great Lakes studies", "CGLS"], "preferred_name": "Center for Great Lakes studies (Milwaukee, Wis.)", "country_associated": "xxu", "variant_access_point": ["University of Wisconsin-Milwaukee. Center for Great Lakes studies", "CGLS"], "date_of_establishment": "1966", "authorized_access_point": "Center for Great Lakes studies (Milwaukee, Wis.)", "biographical_information": ["Association étudiante dédiée à la recherche sur les sciences aquatiques, centrée sur les Grands Lacs."]} 1 -2023-07-08 08:23:19.580778 2023-07-08 08:23:19.580792 14f4b878-d963-4463-bbed-8466759b37a7 {"md5": "60453224d43f2193b067f5eeb4aece11", "pid": "262615223", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/262615223", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262615223", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Bolster, Diogo", "authorized_access_point": "Bolster, Diogo, 19..-....", "biographical_information": ["Professeur, University of Notre Dame, Etats-Unis en 2021"]} 1 -2023-07-08 08:23:19.699348 2023-07-08 08:23:19.699358 49a68587-f07d-4df6-83e8-b1aadff3a519 {"md5": "fe05b2de7b73e1944eadc6e3a777740c", "pid": "262645882", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/262645882", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262645882", "source": "IDREF"}], "variant_name": ["Alliance française de Plzen"], "preferred_name": "Alliance française (Pilsen, République tchèque)", "variant_access_point": ["Alliance française de Plzen"], "authorized_access_point": "Alliance française (Pilsen, République tchèque)"} 1 -2023-07-08 08:23:19.801727 2023-07-08 08:23:19.801737 a446587e-c0a3-4e80-8ddf-7bb5a8470e35 {"md5": "7f0283fe0166292c2bcbf83c5f63dd89", "pid": "26282180X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/26282180X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26282180X", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Bechetoille, Edouard", "country_associated": "fr", "authorized_access_point": "Bechetoille, Edouard, 19..-....", "biographical_information": ["Ingénieur de recherche au CNRS, laboratoire IN2P3 en poste en 2021. Co-encadrant d'une thèse en Microélectronique soutenue à l'Université de Lyon en 2021"]} 1 -2023-07-08 08:23:19.910855 2023-07-08 08:23:19.910867 451d18ef-1468-442f-9538-20e0af21cf7d {"md5": "bc0e69f5a2135a754808bda1f690c0cf", "pid": "26285242X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "docteur en pharmacie", "identifier": "http://www.idref.fr/26285242X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26285242X", "source": "IDREF"}], "date_of_birth": "19..", "preferred_name": "David, Catherine, docteur en pharmacie", "country_associated": "fr", "authorized_access_point": "David, Catherine, 19..-...., docteur en pharmacie", "biographical_information": ["Docteur en pharmacie (en 2022)"]} 1 -2023-07-08 08:23:20.02531 2023-07-08 08:23:20.025324 054c63ee-2fa5-40f7-9f00-0c1eefaa0731 {"md5": "63ef029c0c1eb6a5e7c78b22598f9717", "pid": "262888467", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/262888467", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262888467", "source": "IDREF"}], "preferred_name": "Smith, Grant W.", "authorized_access_point": "Smith, Grant W."} 1 -2023-07-08 08:23:20.282488 2023-07-08 08:23:20.282499 c29dbe79-f7d1-4922-8b08-bdbff021fd20 {"md5": "4f031fb37bfa6301659ad57dc97bb2e8", "pid": "263195449", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/263195449", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263195449", "source": "IDREF"}], "preferred_name": "Périsson, Caroline", "country_associated": "fr", "authorized_access_point": "Périsson, Caroline", "biographical_information": ["Médecine pédiatre au centre hospitalier universitaire situé à Saint-Pierre de La Réunion en 2022"]} 1 -2023-07-08 08:23:20.403393 2023-07-08 08:23:20.403406 d17886ac-1437-4206-a895-f04a3b1c51c1 {"md5": "058d60968971a331891519b2c9c4f19f", "pid": "263217442", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/263217442", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263217442", "source": "IDREF"}], "preferred_name": "Carraz, Alexia", "country_associated": "fr", "authorized_access_point": "Carraz, Alexia", "biographical_information": ["Etudiante en histoire de l'art (en 1998)."]} 1 -2023-07-08 08:23:20.533693 2023-07-08 08:23:20.533705 6bcfce35-721a-4d02-9a26-26d463b804b9 {"md5": "2638cbec7554b3737791df06a1c4c0a0", "pid": "263267466", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/263267466", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263267466", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Calteau-Perronet, Virginie", "authorized_access_point": "Calteau-Perronet, Virginie, 19..-....", "biographical_information": ["Avocat à la Cour. Médiateur avocat . Médiateur familial DE. Formateur"]} 1 -2023-07-08 08:23:20.632661 2023-07-08 08:23:20.632716 70830541-d212-4d6b-a747-ad8a1e1b52c9 {"md5": "1f0fc4a5e19b9f5536155e61c93c64c7", "pid": "263445194", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/263445194", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263445194", "source": "IDREF"}], "date_of_birth": "19..", "preferred_name": "Bauer, Benedikt.C", "country_associated": "gw", "authorized_access_point": "Bauer, Benedikt.C, 19..-....", "biographical_information": ["Spécialiste de l'art"]} 1 -2023-07-08 08:23:20.738694 2023-07-08 08:23:20.738708 6b97a36d-7d58-49b7-b071-c8f1e2a38629 {"md5": "821f9cf1967aaf3a4f1832a5ffeedbdf", "pid": "26347318X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/26347318X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26347318X", "source": "IDREF"}], "date_of_birth": "1993-01-24", "preferred_name": "Risch, Sandrine", "country_associated": "lu", "authorized_access_point": "Risch, Sandrine", "biographical_information": ["Auteur d’une thèse de médecine"]} 1 -2023-07-08 08:23:20.851818 2023-07-08 08:23:20.85183 939747ae-1254-483c-be82-877d9397ef64 {"md5": "0e7e26062f658c0710f4638c1ec91b68", "pid": "263491455", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "identifier": "http://www.idref.fr/263491455", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263491455", "source": "IDREF"}], "preferred_name": "Takahashi, Yuri", "country_associated": "ja", "authorized_access_point": "Takahashi, Yuri", "biographical_information": ["Spécialiste de la Birmanie. Enseigne à l'Australian National University (en 2022)"]} 1 -2023-07-08 08:23:21.112149 2023-07-08 08:23:21.11216 8d4c47e2-2cd1-46a8-8293-3805ca1251ec {"md5": "f26ec96c21011781c88953bbf2d1b68c", "pid": "263581780", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/263581780", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263581780", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Ouaziz, Adnane", "country_associated": "fr", "authorized_access_point": "Ouaziz, Adnane, 19..-....", "biographical_information": ["CIC 1404 CHU Rouen - Rouen (France)"]} 1 -2023-07-08 08:23:21.232673 2023-07-08 08:23:21.232678 28d20e02-3009-4e74-922c-67303a473f48 {"md5": "276ae2dfa0ae0d4478aa83b1cbbb1775", "pid": "263587339", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["cat"], "identifier": "http://www.idref.fr/263587339", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263587339", "source": "IDREF"}], "variant_name": ["Aguilar, Estel", "Miró Aguilar, Estel Maria"], "date_of_birth": "1990-04-08", "preferred_name": "Aguilar Miró, Estel Maria", "country_associated": "sp", "variant_access_point": ["Aguilar, Estel", "Miró Aguilar, Estel Maria"], "authorized_access_point": "Aguilar Miró, Estel Maria, 1990-....", "biographical_information": ["Auteur d'une thèse en Etudes catalanes et transfrontalières à Perpignan en 2022"]} 1 -2023-07-08 08:23:20.984105 2023-07-08 10:28:23.609525 ba8a3284-12a4-4c1f-ac95-4449921d4142 {"md5": "c4d02be650a0519c927b7718b2f36def", "pid": "263502627", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/263502627", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263502627", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "King, Georgina", "authorized_access_point": "King, Georgina, 19..-....", "biographical_information": ["Assistant professor, Institut des dynamiques de la surface terrestre, Université de Lausanne (en 2022)"]} 2 -2023-07-08 10:22:52.851021 2023-07-08 10:30:28.264508 2483dd64-47f4-40a2-834f-b363cd8bd879 {"md5": "90d30d594d2fe08662b30e527da14e92", "pid": "263908038", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/263908038", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263908038", "source": "IDREF"}], "date_of_birth": "1992", "preferred_name": "Charpentier, Bryan", "authorized_access_point": "Charpentier, Bryan, 1992-....", "biographical_information": ["Titulaire d’une thèse d’exercice de médecine soutenue à l’université Paris-Saclay en 2021"]} 2 -2023-07-08 08:23:21.327874 2023-07-08 08:23:21.327886 90f76a7e-ca08-40bb-abe3-6b19011d0012 {"md5": "385560789b7b604331951a02f7b2c630", "pid": "263603652", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/263603652", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263603652", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Huot, Charles", "country_associated": "fr", "authorized_access_point": "Huot, Charles, 19..-....", "biographical_information": ["Président du plus grand pôle de compétitivité français, Cap Digital, association qui anime sur la région Ile-de-France et Haut-de-France, les acteurs économiques et de la recherche dans l’innovation digitale collaborative."]} 1 -2023-07-08 08:23:21.424518 2023-07-08 08:23:21.424527 8762f1c5-a5e9-44ea-8c6e-2aa7353a8052 {"md5": "935683fe59c5c306692c3471e254d3b9", "pid": "263626687", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/263626687", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263626687", "source": "IDREF"}], "variant_name": ["Stenger, M."], "preferred_name": "Stenger, Matthias", "country_associated": "gw", "variant_access_point": ["Stenger, M."], "authorized_access_point": "Stenger, Matthias", "biographical_information": ["Spécialiste de porcelaine"]} 1 -2023-07-08 08:23:21.528752 2023-07-08 08:23:21.528765 16772c32-738b-4842-a2a4-22e9593a8f38 {"md5": "d71c85c95725a9e0b83e54261d363b4d", "pid": "263671372", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/263671372", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263671372", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Woodend, Kirsten", "country_associated": "xxc", "authorized_access_point": "Woodend, Kirsten, 19..-....", "biographical_information": ["PhD, Responsable, recherche clinique, Institut de cardiologie, Ottawa"]} 1 -2023-07-08 08:23:21.629654 2023-07-08 08:23:21.629661 f7b88101-c4fc-46ff-b7be-ea18772bed08 {"md5": "6bd93efcaa6aa569a9c101ea4ccf0118", "pid": "263671887", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dan"], "qualifier": "Médecin", "identifier": "http://www.idref.fr/263671887", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263671887", "source": "IDREF"}], "date_of_birth": "19XX", "date_of_death": "19XX", "preferred_name": "Sindbjerg-Hansen, Vagn, Médecin", "country_associated": "dk", "authorized_access_point": "Sindbjerg-Hansen, Vagn, 19XX-19XX, Médecin", "biographical_information": ["Médecin. Soutient sa thèse de médecine pour le grade de docteur en 1943 à l'Université de Copenhague"]} 1 -2023-07-08 08:23:21.740462 2023-07-08 08:23:21.740491 feeac164-5cec-4a94-bbbb-52433f048106 {"md5": "f27ee841908486e5a2a87ab65937eb5d", "pid": "263682471", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/263682471", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263682471", "source": "IDREF"}], "date_of_birth": "19..", "preferred_name": "Protais, Laetitia", "country_associated": "fr", "authorized_access_point": "Protais, Laetitia, 19..-...."} 1 -2023-07-08 08:23:21.852348 2023-07-08 08:23:21.852358 85f9f624-cfcf-47d5-b22a-043b2fafac2f {"md5": "3cb04b317fc7ea3f1b2c41b08c198bfd", "pid": "263722198", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/263722198", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263722198", "source": "IDREF"}], "date_of_birth": "1996-06-05", "preferred_name": "Wiedmer, Fabienne", "country_associated": "sz", "authorized_access_point": "Wiedmer, Fabienne, 1996-....", "biographical_information": ["Titulaire d'un master en lettres de l'Université de Fribourg, Suisse (pédagogie spécialisée)"]} 1 -2023-07-08 10:22:23.25139 2023-07-08 10:26:21.774584 f5a9fd22-0636-461a-91f6-fc084916fc65 {"md5": "06ca763dc1c4e307c466e22abd2c56e9", "pid": "153776951", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/153776951", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/153776951", "source": "IDREF"}], "preferred_name": "Servant, Marcelle", "country_associated": "xxc", "authorized_access_point": "Servant, Marcelle", "biographical_information": ["Professeur au Cegep Ahunstic (Québec, Canada) (en 1983)"]} 2 -2023-07-08 10:22:28.274666 2023-07-08 10:27:02.519561 308a8750-bcbb-47fb-8b00-719a45d0c121 {"md5": "f02bb5907e34d34fa9da59c45d933ddc", "pid": "26428058X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/26428058X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26428058X", "source": "IDREF"}], "date_of_birth": "1986-05-03", "preferred_name": "Pratico, Valentina", "country_associated": "it", "authorized_access_point": "Pratico, Valentina, 1986-....", "biographical_information": ["Auteur d'une thèse en Droit privé à Aix-Marseille en 2022"]} 2 -2023-07-08 10:22:28.566341 2023-07-08 10:27:02.90116 9d3239c9-aa9e-4dca-af54-e84994bff445 {"md5": "6542ff2d3868cca3aa83cc5ccf6d02f9", "pid": "265219493", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/265219493", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/265219493", "source": "IDREF"}], "variant_name": ["Wilde, Catherine Lhomme de"], "preferred_name": "Lhomme de Wilde, Catherine", "country_associated": "fr", "variant_access_point": ["Wilde, Catherine Lhomme de"], "authorized_access_point": "Lhomme de Wilde, Catherine", "biographical_information": ["Auteur d'une thèse en pharmacie"]} 2 -2023-07-08 10:22:50.258053 2023-07-08 10:29:48.464848 6c00ab50-2bb7-4289-9dba-941226d0e24b {"md5": "c5764b750e037f76aa79e57d73227396", "pid": "264703227", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/264703227", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264703227", "source": "IDREF"}], "date_of_birth": "1886-01-02", "preferred_name": "Blazy, Joseph-Célestin", "country_associated": "fr", "authorized_access_point": "Blazy, Joseph-Célestin, 1886-....", "biographical_information": ["Auteur d'une Thèse d'exercice en Médecine à l’Université de Bordeaux en 1910"]} 2 -2023-07-08 08:21:34.758491 2023-07-08 10:23:29.867987 b2367b92-e13f-4e2c-96b3-177788af51b6 {"md5": "de8ad1ca4a24ab4a7f2db9ed233c5533", "pid": "188652647", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["cze"], "identifier": "http://www.idref.fr/188652647", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/188652647", "source": "IDREF"}], "date_of_birth": "1947-12-19", "preferred_name": "Hrach, Pavel", "authorized_access_point": "Hrach, Pavel, 1947-....", "biographical_information": ["Artiste peintre, graphiste designer, illustrateur et typographe. - Directeur artistique du Typo+ graphic design studio, Prague (en 2009)"]} 2 -2023-07-08 08:21:23.116209 2023-07-08 10:23:30.96624 34766301-482d-40c1-8e7c-958192fb3b37 {"md5": "af02d6fe511ca17dd23fa0b9e7969278", "pid": "16961834X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "identifier": "http://www.idref.fr/16961834X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/16961834X", "source": "IDREF"}], "date_of_birth": "1967", "preferred_name": "Sousa, Lúcio", "country_associated": "bl", "authorized_access_point": "Sousa, Lúcio, 1967-...."} 2 -2023-07-08 08:19:45.080895 2023-07-08 10:23:31.325045 41a56d93-264b-4bf8-936e-38f9e1b552fe {"md5": "5fb032b421612a86307f17fc9f4f3fe4", "pid": "053434080", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/053434080", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/053434080", "source": "IDREF"}], "variant_name": ["Subbaratnam Muthukrishnan"], "preferred_name": "Muthukrishnan, Subbaratnam", "country_associated": "ii", "variant_access_point": ["Subbaratnam Muthukrishnan"], "authorized_access_point": "Muthukrishnan, Subbaratnam", "biographical_information": ["Biologiste. En poste : Department of biochemistry, Kansas state university, Manhattan (en 1999)"]} 2 -2023-07-08 08:23:07.916034 2023-07-08 10:23:32.689595 c2ca9b9a-afbb-4b69-a37c-f6a6af3b689d {"md5": "60da4af257d343b134cc89dc8ffd86d8", "pid": "258241985", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "identifier": "http://www.idref.fr/258241985", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258241985", "source": "IDREF"}], "date_of_birth": "1932", "preferred_name": "Cardoso, António", "country_associated": "po", "authorized_access_point": "Cardoso, António, 1932-....", "biographical_information": ["Docteur en histoire de l'art, spécialiste du XXe siècle, auteur de publications et d'articles sur l'art et l'architecture portugais", "Directeur du Musée Amadeu de Souza Cardoso, Amarante, Portugal (en 1997)", "Lieu de naissance : Amarante, Portugal."]} 2 -2023-07-08 08:21:53.553296 2023-07-08 10:23:33.590424 a8667058-2b1a-4185-a69d-eb165c22e03b {"md5": "7220ce5b2f99d4412c59a0f713cbeb69", "pid": "201762641", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/201762641", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/201762641", "source": "IDREF"}], "date_of_birth": "1955-06-21", "preferred_name": "Weksler, Marcelo", "country_associated": "fr", "authorized_access_point": "Weksler, Marcelo, 1955-....", "biographical_information": ["Auteur d'une thèse en Sciences de l'éducation à Sorbonne Paris Cité en 2015"]} 2 -2023-07-08 08:22:01.095903 2023-07-08 10:23:34.004655 e9f1b618-2c4c-4c8b-8e91-0a790ab074ef {"md5": "e5a43ab5f98714b96f0e7aa87003eea4", "pid": "220828164", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "dentiste", "identifier": "http://www.idref.fr/220828164", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/220828164", "source": "IDREF"}], "preferred_name": "André, Corinne, dentiste", "authorized_access_point": "André, Corinne, dentiste", "biographical_information": ["Chirurgien dentiste"]} 2 -2023-07-08 08:22:03.182174 2023-07-08 10:23:34.457616 4d99b988-e32e-4c44-b778-01b5b45acaf4 {"md5": "a9a4b95975dc5e213e255fd9432489a9", "pid": "223491071", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "physicien", "identifier": "http://www.idref.fr/223491071", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/223491071", "source": "IDREF"}], "date_of_birth": "1936-06-14", "date_of_death": "2008-10-02", "preferred_name": "Driole, Jean, physicien", "country_associated": "fr", "authorized_access_point": "Driole, Jean, 1936-2008, physicien", "biographical_information": ["Auteur d'une thèse de docteur-ingénieur en [Sciences appliquées] (Grenoble, Faculté des sciences, 1965). - Directeur de recherche au CNRS/Grenoble INPG (-1974-1994-). - Directeur de thèse à Grenoble INPG"]} 2 -2023-07-08 10:22:56.169851 2023-07-08 10:30:46.437021 01eccfe8-3ea9-474e-8aea-7ae589902fb4 {"md5": "bc2f365efac7be850c458eae88622e15", "pid": "264982959", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/264982959", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264982959", "source": "IDREF"}], "preferred_name": "Heard, Wendy", "country_associated": "xxu", "authorized_access_point": "Heard, Wendy", "biographical_information": ["Ecrivaine de thrillers"]} 2 -2023-07-08 10:22:56.922966 2023-07-08 10:30:47.335529 fb6e3ae9-5fbe-494f-875f-80bf42f78bd1 {"md5": "025e15272fbb3cddf3717bdabd9c4cd8", "pid": "267373414", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["cze"], "identifier": "http://www.idref.fr/267373414", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/267373414", "source": "IDREF"}], "date_of_birth": "1978", "preferred_name": "Janšová, Marie", "authorized_access_point": "Janšová, Marie, 1978-....", "biographical_information": ["Juriste"]} 2 -2023-07-08 10:23:02.201524 2023-07-08 10:31:24.777057 0267c9af-8b87-4bdb-a600-f85c6c9482c7 {"md5": "ac2610513a6041aafc179c2ca5e0ef51", "pid": "26528774X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/26528774X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26528774X", "source": "IDREF"}], "date_of_birth": "1942-11-13", "preferred_name": "Truffet, Gérard", "authorized_access_point": "Truffet, Gérard", "biographical_information": ["Médecin (Paris 1970)"]} 2 -2023-07-08 08:22:06.825883 2023-07-08 10:23:34.798342 c14f17c8-393c-43b6-9740-d5750da0eeb0 {"md5": "2a10ad313bfbe3a8d8a941ffc88633be", "pid": "224991523", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/224991523", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/224991523", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Mathéo, Christine", "country_associated": "fr", "authorized_access_point": "Mathéo, Christine, 19..-....", "biographical_information": ["Comédienne, clown dans les services pédiatriques pour l'association Théodora, 2018"]} 2 -2023-07-08 08:22:25.70489 2023-07-08 10:23:35.21524 94e37e44-c19f-4afe-a548-82c00f60abce {"md5": "3e00221619a2aca8972d5946e608eacc", "pid": "235030929", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "identifier": "http://www.idref.fr/235030929", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/235030929", "source": "IDREF"}], "preferred_name": "Afonso, Rui Braz", "country_associated": "po", "authorized_access_point": "Afonso, Rui Braz", "biographical_information": ["Professeur d'urbanisme, FAUP, Porto"]} 2 -2023-07-08 08:22:22.658403 2023-07-08 10:23:35.609682 9774c4c6-e139-41a6-ba30-dc2a0800aa6c {"md5": "118399ab37386cb18e3776197e66081f", "pid": "234246820", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/234246820", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234246820", "source": "IDREF"}], "date_of_birth": "1990-01-26", "preferred_name": "Fasquelle, Justine", "country_associated": "fr", "authorized_access_point": "Fasquelle, Justine, 1990-....", "biographical_information": ["Auteur d'une thèse en Sciences de gestion à Grenoble Alpes en 2018"]} 2 -2023-07-08 08:22:32.943963 2023-07-08 10:23:35.938298 8944b172-3595-4f75-954a-c459c38d9c23 {"md5": "0e1af9ed53527df7fc45c9dbe808ee67", "pid": "240312724", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/240312724", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240312724", "source": "IDREF"}], "date_of_birth": "1990-07-09", "preferred_name": "Quentin, Floriane", "country_associated": "fr", "authorized_access_point": "Quentin, Floriane, 1990-....", "biographical_information": ["Auteur en médecine"]} 2 -2023-07-08 08:22:36.533573 2023-07-08 10:23:36.426383 385d2632-3c04-428d-927b-1cf1cba1aa94 {"md5": "2249a09a6ce180a353cb1ff875a8109f", "pid": "241716853", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/241716853", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/241716853", "source": "IDREF"}], "date_of_birth": "1993-04-28", "preferred_name": "Bonnefoy, Astrid", "country_associated": "fr", "authorized_access_point": "Bonnefoy, Astrid, 1993-....", "biographical_information": ["Titulaire d'une thèse d'exercice de pharmacie soutenue à Caen le 17 juin 2019"]} 2 -2023-07-08 08:23:14.611101 2023-07-08 10:23:37.063039 4d150310-fdf1-4f37-b2a6-0e4c3d9d52c2 {"md5": "2e5f411de8d0e432d39d2f190f802748", "pid": "260877484", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/260877484", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260877484", "source": "IDREF"}], "date_of_birth": "1994-12-28", "preferred_name": "Taylor, William", "country_associated": "xxk", "authorized_access_point": "Taylor, William, 1994-....", "biographical_information": ["Titulaire d'un doctorat en cancérologie à Rennes 1 en 2021"]} 2 -2023-07-08 08:19:25.023128 2023-07-08 10:23:37.414262 e2d00a92-6e79-40dc-a260-6bcff930d839 {"md5": "bf781a9003c013692020295458b41e9a", "pid": "030322995", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/030322995", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030322995", "source": "IDREF"}], "variant_name": ["Caoursin, William", "Caorsinus, Guilelmus", "Caoursin, Guillelmus", "Cahoursin, Guillaume", "Caorsin, Gulielmo", "Caorsin, Guillermus", "Guillaume Caoursin"], "date_of_birth": "1430?", "date_of_death": "1455-08-24", "preferred_name": "Caoursin, Guillaume", "country_associated": "fr", "variant_access_point": ["Caoursin, William", "Caorsinus, Guilelmus", "Caoursin, Guillelmus", "Cahoursin, Guillaume", "Caorsin, Gulielmo", "Caorsin, Guillermus", "Guillaume Caoursin"], "authorized_access_point": "Caoursin, Guillaume, 1430?-1501", "biographical_information": ["Vice-chancelier de l'Ordre de Saint-Jean de Jérusalem à partir de 1456 - Homme de cabinet et diplomate, il mena plusieurs ambassades en Italie en particulier à Rome, puis à Naples (1485)", "Lieu de naissance Douai (Nord). Lieu de décès Rhodes"]} 2 -2023-07-08 08:19:51.770569 2023-07-08 10:23:40.882167 8727eeec-3de1-47ba-b8f9-eba1425a2adf {"md5": "c47515dffead94f2fbaea48f7c8ff978", "pid": "060167181", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "qualifier": "Dr.", "identifier": "http://www.idref.fr/060167181", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/060167181", "source": "IDREF"}], "date_of_birth": "1970", "preferred_name": "Leitner, Marina, Dr.", "country_associated": "au", "authorized_access_point": "Leitner, Marina, 1970-...., Dr.", "biographical_information": ["Psychologue, en 2001 travaille à un programme de recherche sur l'histoire de l'évolution des technique et thérapie psychanalytiques. Nombreuses publications sur l'histoire de la psychanalyse."]} 2 -2023-07-08 08:20:33.99721 2023-07-08 10:23:41.717254 cd4cbd53-1582-4430-af54-8109ebc19a4c {"md5": "d25c0c67e7d77e4afeed3a91d85c0608", "pid": "115078630", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/115078630", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/115078630", "source": "IDREF"}], "date_of_birth": "1921", "preferred_name": "Weisz, Paul B.", "country_associated": "xxu", "authorized_access_point": "Weisz, Paul B., 1921-....", "biographical_information": ["Professeur de biologie, Brown university (1961)"]} 2 -2023-07-08 08:20:07.670165 2023-07-08 10:23:42.137693 a011ce96-3186-4528-95e5-07db486622bc {"md5": "06445d94f1be512776160305cafdd72f", "pid": "077437209", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "qualifier": "romancier", "identifier": "http://www.idref.fr/077437209", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077437209", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Thompson, Paul B., romancier", "country_associated": "xxu", "authorized_access_point": "Thompson, Paul B., 19..-...., romancier", "biographical_information": ["Romancier"]} 2 -2023-07-08 08:19:16.044392 2023-07-08 10:23:42.53509 bdd3f989-5d04-478f-8054-1122e10f8439 {"md5": "1e2dca234a550732d009373860903eb0", "pid": "026995050", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/026995050", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026995050", "source": "IDREF"}], "date_of_birth": "1902", "date_of_death": "1986", "preferred_name": "Lot, Fernand", "country_associated": "fr", "authorized_access_point": "Lot, Fernand, 1902-1986", "biographical_information": ["Poète, essayiste, écrivain scientifique, botaniste"]} 2 -2023-07-08 08:19:50.598975 2023-07-08 10:23:43.394208 56605d82-d14d-4c40-8fd8-3662e3abf43f {"md5": "cbcd9744eaa0f53e895138e974ad3094", "pid": "059213523", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/059213523", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/059213523", "source": "IDREF"}], "preferred_name": "Anzemberger, Guy P.", "country_associated": "fr", "authorized_access_point": "Anzemberger, Guy P.", "biographical_information": ["Consultant développement et recrutement"]} 2 -2023-07-08 08:21:48.992293 2023-07-08 10:23:43.907179 6945d0f4-d88e-4433-ab15-038da4d284e0 {"md5": "7c0594c11ec73d6b1e922ff3277adab8", "pid": "199119961", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "qualifier": "historien", "identifier": "http://www.idref.fr/199119961", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/199119961", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Hübner, Hans, historien", "authorized_access_point": "Hübner, Hans, 19..-...., historien", "biographical_information": ["Professeur à l'Université de Halle - Wittenberg, Section Histoire et instruction civique (Staatsbürgerkunde) (en 1986)"]} 2 -2023-07-08 08:21:21.216414 2023-07-08 10:23:44.388959 2af9607f-4fc9-4eca-a63b-09196300c374 {"md5": "2ec0c4b591b78f3fea7f7afed98ee53f", "pid": "167228862", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "deleted": "2023-07-08T10:23:44.366911+00:00", "language": ["fre"], "identifier": "http://www.idref.fr/167228862", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/167228862", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Chaoui-Derieux, Dorothée", "country_associated": "fr", "authorized_access_point": "Chaoui-Derieux, Dorothée, 19..-....", "biographical_information": ["Archéologue. Ministère de la Culture, Service régional de l'archéologie (SRA)", "Conservateur en chef du patrimoine au service régional de l'archéologie de la direction régionale des affaires culturelles d'Île-de-France (en 2023)"]} 2 -2023-07-08 08:19:15.890057 2023-07-08 10:23:44.763753 39149e89-b1e7-4ffa-9d2b-c21dc79f59f5 {"md5": "c13a1663e360c58d697398460ae87e53", "pid": "026994801", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/026994801", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026994801", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "078621461"}, "variant_name": ["Jacob, Bernard Lortat-"], "date_of_birth": "1941-01-01", "preferred_name": "Lortat-Jacob, Bernard", "country_associated": "fr", "variant_access_point": ["Jacob, Bernard Lortat-"], "authorized_access_point": "Lortat-Jacob, Bernard, 1941-....", "biographical_information": ["Ethnomusicologue. Directeur de recherche au CNRS et responsable du Laboratoire d'ethnomusicologie CBRS du Musée de l'homme, Paris (en 2001)"]} 2 -2023-07-08 08:21:11.720317 2023-07-08 10:23:47.676376 33464cc3-4a7b-48f0-abc7-5835571ce399 {"md5": "f137c7608301577a3053ee6eae59fc63", "pid": "155746936", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/155746936", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/155746936", "source": "IDREF"}], "variant_name": ["Dochier, Luc", "Luc, moine de Tibhirine"], "date_of_birth": "1914-01-31", "date_of_death": "1996-05-21", "preferred_name": "Dochier, Paul", "country_associated": "fr", "variant_access_point": ["Dochier, Luc", "Luc, moine de Tibhirine"], "authorized_access_point": "Dochier, Paul, 1914-1996", "biographical_information": ["Moine de l'Ordre des Cisterciens de la stricte observance (à partir de 1941/1949). - Moine de l'Abbaye Notre-Dame d'Aiguebelle (à Montjoyer, Drôme ; 1941-1946), puis du Prieuré de Notre-Dame-de-l'Atlas (à Tibhirine, Algérie). - Docteur en médecine (Lyon, 1939/1940)", "Lieu de naissance Bourg-de-Péage (Drôme). Lieu de décès Près de Lemdiyya (ou Médéa, Algérie)"]} 2 -2023-07-08 08:21:32.331794 2023-07-08 10:23:48.034427 33e13b17-f965-45fa-8c68-438d4c4d19a2 {"md5": "0b3ee17222774be1943fbfc1ca95ffcd", "pid": "185108385", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/185108385", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/185108385", "source": "IDREF"}], "variant_name": ["Madani El-, Rahma Benhamou"], "date_of_birth": "1966-09-07", "preferred_name": "Benhamou El Madani, Rahma", "country_associated": "ae", "variant_access_point": ["Madani El-, Rahma Benhamou"], "authorized_access_point": "Benhamou El Madani, Rahma, 1966-....", "biographical_information": ["Réalisatrice algérienne"]} 2 -2023-07-08 08:20:10.682801 2023-07-08 10:23:48.516691 7dcaf933-929b-44ae-a405-e5fee9798137 {"md5": "7f594acfb6bb835de8bf7428f592094a", "pid": "080152503", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "chercheur", "identifier": "http://www.idref.fr/080152503", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/080152503", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Fages, Jacques, chercheur", "country_associated": "fr", "authorized_access_point": "Fages, Jacques, 19..-...., chercheur", "biographical_information": ["Ingénieur INSA-Toulouse, DEA en Sciences alimentaires. Professeur, en poste à l'Ecole des Mines d'Albi-Carmaux (depuis 1996), directeur de thèse de doctorat en Génie des procédés à l'Ecole nationale supérieure des Mines de Paris (2003). Spécialiste en génie des procédés, biochimie, biotechnologies.", "Membre du jury lors de la soutenance de la thèse en Chimie et Physicochimie des matériaux par Mathieu Chirat(ENSCM, Montpellier, 2012)."]} 2 -2023-07-08 08:20:00.127147 2023-07-08 10:23:48.988691 5ccc2931-9e7b-47b6-9092-9c70cd60b668 {"md5": "ce337010faef159dc75582152ef7b450", "pid": "07101120X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/07101120X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/07101120X", "source": "IDREF"}], "preferred_name": "Barrett-Ayres, Reginald", "authorized_access_point": "Barrett-Ayres, Reginald", "biographical_information": ["Musicologue. Spécialiste de Mozart et de Haydn"]} 2 -2023-07-08 08:20:30.086421 2023-07-08 10:23:51.30382 a972ecad-bf33-4b1c-8ab8-b38641b19bdf {"md5": "bc03e7245f728249e3771f0f6d4bf69f", "pid": "110185366", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "identifier": "http://www.idref.fr/110185366", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/110185366", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "184480418"}, "variant_name": ["小和田, 哲男"], "date_of_birth": "1944", "preferred_name": "Owada, Tetsuo", "country_associated": "ja", "variant_access_point": ["小和田, 哲男, 1944-"], "authorized_access_point": "Owada, Tetsuo, 1944-", "biographical_information": ["Professeur à l'Université de Shizuoka, Spécialist de l'histoire japonaise (en 2008)"]} 2 -2023-07-08 08:20:32.91685 2023-07-08 10:23:55.033492 0aa986bc-f511-4311-9513-f78440949f50 {"md5": "f34c93852998641f96f01479787296c1", "pid": "113738048", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/113738048", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/113738048", "source": "IDREF"}], "preferred_name": "Wiese, René", "country_associated": "gw", "authorized_access_point": "Wiese, René"} 2 -2023-07-08 08:22:50.004319 2023-07-08 10:23:57.783382 4fd0eebc-a3a9-4bb3-b5b7-476309cb089d {"md5": "69de3c0106c214419cc637a875c406da", "pid": "244888558", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/244888558", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244888558", "source": "IDREF"}], "preferred_name": "Moore, Nigel", "authorized_access_point": "Moore, Nigel"} 2 -2023-07-08 08:20:42.631684 2023-07-08 10:23:59.03071 131e204f-ccce-496b-af68-94642447b004 {"md5": "8f9e2abc8f60bb79c3d972a3d3fc9cde", "pid": "128587679", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/128587679", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/128587679", "source": "IDREF"}], "date_of_birth": "1951-11-10", "preferred_name": "Redner, Sidney", "country_associated": "xxu", "authorized_access_point": "Redner, Sidney, 1951-....", "biographical_information": ["Physicien. Professeur de physique à l'université de Boston, Mass., depuis 1989 (en 2017)"]} 2 -2023-07-08 08:22:54.167086 2023-07-08 10:23:59.95802 bc1ff675-122b-4686-b89b-2b0c1738fa14 {"md5": "822eed912e5d8d5f6f45c8afae56a3ac", "pid": "250664968", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/250664968", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/250664968", "source": "IDREF"}], "date_of_birth": "1758", "date_of_death": "1829", "preferred_name": "Giusti, Giambattista", "country_associated": "it", "authorized_access_point": "Giusti, Giambattista, 1758-1829", "biographical_information": ["Librettiste"]} 2 -2023-07-08 08:21:23.659213 2023-07-08 10:24:02.731232 c1de0416-102e-4b74-9100-f9e692de8a1d {"md5": "7aa32d88782bd777cd3a02535a2ea98a", "pid": "170128687", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/170128687", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/170128687", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Luard, Honey", "country_associated": "xxk", "authorized_access_point": "Luard, Honey, 19..-....", "biographical_information": ["Directrice de publication. Spécialiste d'art"]} 2 -2023-07-08 08:20:16.79377 2023-07-08 10:24:03.782061 60e933b1-b355-4959-abc3-b8ebf3653fc8 {"md5": "03aae8038f1c1b25af9b6cc4b28b511e", "pid": "084028750", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/084028750", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/084028750", "source": "IDREF"}], "preferred_name": "Bulut, Tarik", "authorized_access_point": "Bulut, Tarik"} 2 -2023-07-08 08:21:22.401676 2023-07-08 10:24:04.274601 abf38974-06b8-4a39-bc43-9a15494a68e9 {"md5": "7e22e74e749954c29786444ecdc20659", "pid": "168633248", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/168633248", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/168633248", "source": "IDREF"}], "date_of_birth": "1948", "preferred_name": "Martin, Lee-Ann", "country_associated": "xx", "authorized_access_point": "Martin, Lee-Ann, 1948-....", "biographical_information": ["Conservatrice de l'art amérindien, Musée canadien des civilisations, Ottawa (en 1992)"]} 2 -2023-07-08 08:22:26.641865 2023-07-08 10:24:05.592778 e1455ef8-8a83-4bb0-95f8-74cb50f1bd54 {"md5": "c2ac202afc5107db54a4f1fd578232ee", "pid": "23527125X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ara"], "identifier": "http://www.idref.fr/23527125X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/23527125X", "source": "IDREF"}], "variant_name": ["نصر, مرسل", "Naṣr, Mursil"], "date_of_birth": "1937", "preferred_name": "Naṣr, Mursal", "country_associated": "le", "variant_access_point": ["Naṣr, Mursil"], "authorized_access_point": "Naṣr, Mursal, 1937-....", "biographical_information": ["Juge. - Ancien président de la Cour d'appel druze"]} 2 -2023-07-08 08:19:42.398993 2023-07-08 10:24:05.965785 62b33c5d-9d15-4dbf-b060-89f31698785a {"md5": "26ce3582ae020a86cb8ca6eb7fc8db96", "pid": "050225146", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/050225146", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050225146", "source": "IDREF"}], "variant_name": ["Henschel, G. A. L"], "date_of_birth": "1806", "date_of_death": "1852", "preferred_name": "Henschel, G. A. Louis", "country_associated": "fr", "variant_access_point": ["Henschel, G. A. L"], "authorized_access_point": "Henschel, G. A. Louis, 1806-1852", "biographical_information": ["A aussi écrit en allemand et en latin", "Philologue et lexicographe. Né à Minden (Allemagne), meurt à Paris"]} 2 -2023-07-08 08:22:34.830992 2023-07-08 10:24:07.548638 e4df8d8f-4cc9-4eb5-842b-043abb842ee7 {"md5": "4bd7d34c9bbf31a067a8196ddae28876", "pid": "240987195", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger", "gre"], "identifier": "http://www.idref.fr/240987195", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240987195", "source": "IDREF"}], "variant_name": ["Καλιφατίδης, Γιάννης"], "date_of_birth": "19XX", "preferred_name": "Kalifatidis, Giannis", "country_associated": "gr", "variant_access_point": ["Καλιφατίδης, Γιάννης, 19..-...."], "authorized_access_point": "Kalifatidis, Giannis, 19..-....", "biographical_information": ["Traducteur"]} 2 -2023-07-08 08:19:32.271757 2023-07-08 10:24:09.28068 865408c4-5c86-4e81-96c2-5fa32d14e186 {"md5": "587eac9ad62f9c6b37c37b7acd1a6bc0", "pid": "032638116", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/032638116", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032638116", "source": "IDREF"}], "preferred_name": "Kaplan, Frederick S.", "country_associated": "xxu", "authorized_access_point": "Kaplan, Frederick S.", "biographical_information": ["Chirurgien, spécialisé en chirurgie orthopédique"]} 2 -2023-07-08 08:21:00.416176 2023-07-08 10:24:10.04969 f33401b4-22e0-485e-8e7f-293eb502f939 {"md5": "eb510c8c674f079b56be47659a18a704", "pid": "147233429", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifier": "http://www.idref.fr/147233429", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/147233429", "source": "IDREF"}], "preferred_name": "Lekhina, Ekaterina", "country_associated": "ru", "authorized_access_point": "Lekhina, Ekaterina", "biographical_information": ["Soprano"]} 2 -2023-07-08 08:19:49.965519 2023-07-08 10:24:10.550286 555dfe1d-0ca3-42ea-adde-428e119eb885 {"md5": "67b77223636ad2a945ae3a2a99352d18", "pid": "058598928", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/058598928", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/058598928", "source": "IDREF"}], "date_of_birth": "1944", "preferred_name": "Nieto-Sampedro, Manuel", "country_associated": "sp", "authorized_access_point": "Nieto-Sampedro, Manuel, 1944-....", "biographical_information": ["En poste à \\"Instituto Cajal (CSIC), Madrid, Spain, en 2001"]} 2 -2023-07-08 08:21:50.949605 2023-07-08 10:24:10.927792 7775eaf5-30bb-48d2-a280-b63adaf4f5a1 {"md5": "fe7acbd74c4d9537453224824a31c028", "pid": "200141163", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/200141163", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/200141163", "source": "IDREF"}], "date_of_birth": "1894-05-14", "date_of_death": "1973-12-16", "preferred_name": "Rollin, Louis", "country_associated": "fr", "authorized_access_point": "Rollin, Louis, 1894-1973", "biographical_information": ["Titulaire d'une thèse en médecine (Lyon, 1927)"]} 2 -2023-07-08 08:21:05.033449 2023-07-08 10:24:11.737695 1b5a31ec-4046-422b-9004-f4da4a96789f {"md5": "aa80c7d38e937da5e69fa10f9aecd09d", "pid": "149944586", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/149944586", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/149944586", "source": "IDREF"}], "preferred_name": "Salem, Maurice", "country_associated": "fr", "authorized_access_point": "Salem, Maurice"} 2 -2023-07-08 08:21:17.124051 2023-07-08 10:24:12.115108 68456ea1-d5b9-444d-abdc-d010412aade0 {"md5": "893c2717993df1ad075e2c3bddd84e9a", "pid": "161367070", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/161367070", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/161367070", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Merran, Stéphanie", "country_associated": "fr", "authorized_access_point": "Merran, Stéphanie, 19..-...."} 2 -2023-07-08 08:20:28.478975 2023-07-08 10:24:12.454422 2851d959-9f60-413d-a0ee-5786f0036f0e {"md5": "4ddf8071530f64590478a66d8da5af97", "pid": "107090538", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/107090538", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/107090538", "source": "IDREF"}], "date_of_birth": "1937", "preferred_name": "Richter, Werner", "authorized_access_point": "Richter, Werner, 1937-...."} 2 -2023-07-08 08:20:11.545658 2023-07-08 10:24:13.291077 77994d73-7cb2-4067-a8c3-bfa84e538475 {"md5": "bbfddaf8a2d0e7c9a15aac5c44ca5361", "pid": "080608825", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/080608825", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/080608825", "source": "IDREF"}], "preferred_name": "Joseph, Branden Wayne", "authorized_access_point": "Joseph, Branden Wayne", "biographical_information": ["Professeur d'histoire de l'art, Université de Califorie (en 2003)"]} 2 -2023-07-08 08:19:46.530515 2023-07-08 10:24:15.533394 0c1b8cf8-634e-413c-a5f7-6c05a2f38f58 {"md5": "fb5e5b59fe260aa01cb339cb118fff2e", "pid": "056820151", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/056820151", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/056820151", "source": "IDREF"}], "preferred_name": "Frisch, Christine", "authorized_access_point": "Frisch, Christine"} 2 -2023-07-08 08:20:37.583292 2023-07-08 10:24:16.856882 fd9ebbbc-dbdf-4d2b-8ef2-61e71ee24ef3 {"md5": "a18efcfed7c488492d36b2633ee44f73", "pid": "121469395", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/121469395", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/121469395", "source": "IDREF"}], "date_of_birth": "1943", "preferred_name": "Jurjevics, Juris", "country_associated": "xxu", "authorized_access_point": "Jurjevics, Juris, 1943-....", "biographical_information": ["Né en Lituanie"]} 2 -2023-07-08 08:20:51.243006 2023-07-08 10:24:21.006668 459d2d67-78e0-406a-ac1d-9202ea19d3ea {"md5": "c8bddbe04e43de55ffd8715335b8fc4e", "pid": "137405723", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["chi"], "identifier": "http://www.idref.fr/137405723", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/137405723", "source": "IDREF"}], "variant_name": ["徐, 敏", "Hsü, Min"], "preferred_name": "Xu, Min", "variant_access_point": ["Hsü, Min"], "authorized_access_point": "Xu, Min"} 2 -2023-07-08 08:23:04.124613 2023-07-08 10:24:21.424512 9e14cc44-71d9-4d0b-8044-3c3c9365325e {"md5": "e8de92fb4341575e596d6bb01985a97a", "pid": "256322325", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/256322325", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/256322325", "source": "IDREF"}], "variant_name": ["Carpentier, Louis-Laurent"], "date_of_birth": "1968", "preferred_name": "Laurent", "country_associated": "be", "variant_access_point": ["Carpentier, Louis-Laurent"], "authorized_access_point": "Laurent, 1968-....", "biographical_information": ["Dessinateur et coloriste de bande dessinée"]} 2 -2023-07-08 08:22:12.479424 2023-07-08 10:24:22.163777 ffc79833-bea2-47cd-8538-5d5864142a76 {"md5": "2f338c30901d726fc3e35b15878c463a", "pid": "228263050", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/228263050", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/228263050", "source": "IDREF"}], "date_of_birth": "1991-11-18", "preferred_name": "Frajer, Gaëlla", "country_associated": "fr", "authorized_access_point": "Frajer, Gaëlla, 1991-....", "biographical_information": ["Auteur d'une thèse en Physique des matériaux à Grenoble Alpes en 2018"]} 2 -2023-07-08 08:23:01.800217 2023-07-08 10:24:22.684722 62d0a357-bcfa-4771-b933-53be9328cbed {"md5": "9042ed919d36c41ca95ad6c7cd77e82f", "pid": "254994024", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/254994024", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254994024", "source": "IDREF"}], "date_of_birth": "19..--", "preferred_name": "Fitzgibbon, Alexa", "country_associated": "fr", "authorized_access_point": "Fitzgibbon, Alexa, 19..-", "biographical_information": ["Auteur d'une Master 2 en Anthropologie à l'Université de Provence : Aix-Marseille I en 2007"]} 2 -2023-07-08 08:21:18.151581 2023-07-08 10:24:23.056233 db7717bf-6937-490f-a01f-d88bad58b95d {"md5": "06f7aa4cd200a52894e57b401ff98fca", "pid": "162460163", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/162460163", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/162460163", "source": "IDREF"}], "preferred_name": "Georgoulas, Stratos", "country_associated": "gw", "authorized_access_point": "Georgoulas, Stratos"} 2 -2023-07-08 08:23:10.663461 2023-07-08 10:24:23.97731 bdf0eb7b-cb87-4998-8d44-4ae9c06e78de {"md5": "0e5bc8e4bb52e0601c632bb4fe5df5ea", "pid": "259329657", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "dentiste", "identifier": "http://www.idref.fr/259329657", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/259329657", "source": "IDREF"}], "date_of_birth": "1993-03-18", "preferred_name": "Bensouilah, Cherifa, dentiste", "country_associated": "fr", "authorized_access_point": "Bensouilah, Cherifa, 1993-..., dentiste", "biographical_information": ["Docteur d'exercice en chirurgie dentaire. Université de Montpellier. UFR d'Odontologie. A présentée et soutenue publiquement la thèse le 12 juillet 2021"]} 2 -2023-07-08 08:23:18.569735 2023-07-08 10:24:24.707486 4b0ad931-03c3-487c-957b-2cfe6e53ec54 {"md5": "40ca5af928728e8d88b3abaf2408a49d", "pid": "262403242", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre", "eng"], "identifier": "http://www.idref.fr/262403242", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262403242", "source": "IDREF"}], "date_of_birth": "1994-10-18", "preferred_name": "Petit, Quentin", "country_associated": "fr", "authorized_access_point": "Petit, Quentin, 1994-....", "biographical_information": ["Auteur d'une thèse en Mathématiques appliquées à Université Paris sciences et lettres en 2022"]} 2 -2023-07-08 10:22:01.543436 2023-07-08 10:24:25.102683 8c7619b1-25fc-4b0c-b529-1c22fbc3c282 {"md5": "12e8bd75ff198d71a84f49794953d3b9", "pid": "26525969X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/26525969X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26525969X", "source": "IDREF"}], "preferred_name": "Rivoallan, Céline", "country_associated": "fr", "authorized_access_point": "Rivoallan, Céline", "biographical_information": ["Mémoire de DESS Urbanisme, Habitat, Aménagement sous la direction de Guillaume Lacquement, soutenu à Perpignan, 2000"]} 2 -2023-07-08 08:19:56.866745 2023-07-08 10:24:25.931697 47cb4d4e-91a0-4beb-95a3-2cd5d7e8e9e8 {"md5": "5d859d713ac90415884cf509a1f6b031", "pid": "069064830", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/069064830", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/069064830", "source": "IDREF"}], "date_of_birth": "1857-10-25", "date_of_death": "1938-02-10", "preferred_name": "Buland, Émile", "country_associated": "fr", "authorized_access_point": "Buland, Émile, 1857-1938", "biographical_information": ["Prénoms complets : Jean Emile", "Graveur. Elu, le 19 décembre 1925, membre titulaire de l'Académie des Beaux-Arts"]} 2 -2023-07-08 08:20:58.884649 2023-07-08 10:24:27.793356 31f8dc3d-7238-406d-b352-1e3bdcec9ccc {"md5": "e13bce257ab4909bcbf3b1cb53b6e92c", "pid": "145661806", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/145661806", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/145661806", "source": "IDREF"}], "preferred_name": "Finke, Timo", "country_associated": "gw", "authorized_access_point": "Finke, Timo"} 2 -2023-07-08 08:22:59.304654 2023-07-08 10:24:28.579687 47243355-c112-48c0-80a4-7c7a8355c175 {"md5": "549ed4f3154d99d531a83ce62bac284e", "pid": "25394144X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["pol"], "identifier": "http://www.idref.fr/25394144X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25394144X", "source": "IDREF"}], "date_of_birth": "1977", "preferred_name": "Nowak, Jacek", "country_associated": "pl", "authorized_access_point": "Nowak, Jacek, 1977-....", "biographical_information": ["Sociologue"]} 2 -2023-07-08 08:20:04.389691 2023-07-08 10:24:33.149889 573f7c89-777a-4468-9b5c-c38dda12e608 {"md5": "4ce939d3b3f202d510a7e5ebb5591fea", "pid": "07505924X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/07505924X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/07505924X", "source": "IDREF"}], "date_of_birth": "1944-06-24", "preferred_name": "Goetz, Arturo", "country_associated": "ag", "authorized_access_point": "Goetz, Arturo, 1944-....", "biographical_information": ["Acteur argentin"]} 2 -2023-07-08 08:21:12.802621 2023-07-08 10:24:33.949129 aec2755a-cc5a-435f-aa07-3f98364c60e9 {"md5": "817ccaaeb160061691a23057120728d7", "pid": "156335336", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/156335336", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/156335336", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Dubbini, Rachele", "country_associated": "it", "authorized_access_point": "Dubbini, Rachele, 19..-....", "biographical_information": ["Archéologue"]} 2 -2023-07-08 08:22:59.393297 2023-07-08 10:24:36.878532 dc347573-a4ad-45d3-8633-530cca038ff5 {"md5": "f3226faf5d9a1a0a90ca5425d237f232", "pid": "253973031", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/253973031", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/253973031", "source": "IDREF"}], "date_of_birth": "1970", "preferred_name": "Bulliard, Éric", "country_associated": "sz", "authorized_access_point": "Bulliard, Éric, 1970-....", "biographical_information": ["Journaliste à La Gruyère, responsable de la rubrique culture (en 2020). Titulaire d’une licence en lettres (littérature française et histoire de l’art) de l’Université de Fribourg (Suisse)"]} 2 -2023-07-08 08:21:07.75754 2023-07-08 10:24:37.749467 ada12e92-1a50-422e-ba24-042b910a75ba {"md5": "a6c163e11ce94b17581fc697d3a0491f", "pid": "152016872", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/152016872", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/152016872", "source": "IDREF"}], "date_of_birth": "1943-11-13", "preferred_name": "Hilliard, Raymond F.", "country_associated": "xx", "authorized_access_point": "Hilliard, Raymond F., 1943-...."} 2 -2023-07-08 08:20:05.680589 2023-07-08 10:24:39.425723 474f63b5-9b07-4ea0-bf6a-86c5208391de {"md5": "713ef46062cfdd662423ece5a57639b3", "pid": "075899655", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/075899655", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/075899655", "source": "IDREF"}], "variant_name": ["Tavares da Costa, Carla", "Da Costa, Carla Tavares"], "preferred_name": "Costa, Carla Tavares da", "country_associated": "xx", "variant_access_point": ["Tavares da Costa, Carla", "Da Costa, Carla Tavares"], "authorized_access_point": "Costa, Carla Tavares da"} 2 -2023-07-08 08:21:38.733649 2023-07-08 10:24:39.913965 a3d3e6b8-9fb3-45d8-83e2-a426e3fe3f08 {"md5": "2bb2912e6983a9cbab97919d836cb96a", "pid": "192298348", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/192298348", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/192298348", "source": "IDREF"}], "preferred_name": "Santini, Gianfranco", "country_associated": "it", "authorized_access_point": "Santini, Gianfranco"} 2 -2023-07-08 08:21:39.486347 2023-07-08 10:24:40.301684 419259dd-793a-41f7-82bc-ee1e0112de2a {"md5": "eda818d4e108efea48cb3317422a3b9e", "pid": "192776851", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/192776851", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/192776851", "source": "IDREF"}], "preferred_name": "Vavouras, Ioannis", "country_associated": "gr", "authorized_access_point": "Vavouras, Ioannis", "biographical_information": ["En poste, Sociology Department, University of Aegean, Greece"]} 2 -2023-07-08 08:22:08.38881 2023-07-08 10:24:40.956923 0842c832-62df-490a-8d57-e47b867328ca {"md5": "2c243e967dbd14cee9eb1c3bc47cd43a", "pid": "225803658", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/225803658", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/225803658", "source": "IDREF"}], "variant_name": ["Davies, John, John Michael"], "date_of_birth": "1942-06-01", "preferred_name": "Davies, John Michael", "country_associated": "xxu", "variant_access_point": ["Davies, John, John Michael"], "authorized_access_point": "Davies, John Michael, 1942-...."} 2 -2023-07-08 08:21:27.570517 2023-07-08 10:24:44.921159 10807e3c-b846-406c-9e0e-a8cf2993ff20 {"md5": "d5e213bc1ecdfea646ffdba63870c449", "pid": "178055328", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/178055328", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/178055328", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Cahill, Kay", "country_associated": "xx", "authorized_access_point": "Cahill, Kay, 19..-....", "biographical_information": ["Bibliothécaire, Vancouver public library, Canada (en 2010). - Spécialiste des sites web et des services de références virtuelles"]} 2 -2023-07-08 08:20:40.515135 2023-07-08 10:24:46.346629 24def518-d6b5-40d3-afb7-08ec00ed9ae2 {"md5": "22eab56d31b503e3ae2105a1cfb886e2", "pid": "126698104", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/126698104", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/126698104", "source": "IDREF"}], "date_of_birth": "1965", "preferred_name": "Matthews, Gelien", "authorized_access_point": "Matthews, Gelien, 1965-....", "biographical_information": ["Enseigne l'histoire à Caribbean Nazarene College, Trinidad et Tobago"]} 2 -2023-07-08 08:21:25.197478 2023-07-08 10:24:47.156191 236a742c-be42-42ad-82b7-214170359cfb {"md5": "f4f2d689a971fa4174a82939e1a0ea09", "pid": "174162790", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/174162790", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/174162790", "source": "IDREF"}], "variant_name": ["Millamoto, MaríaEsther Quintana"], "preferred_name": "Quintana Millamoto, María Esther", "country_associated": "uy", "variant_access_point": ["Millamoto, MaríaEsther Quintana"], "authorized_access_point": "Quintana Millamoto, María Esther"} 2 -2023-07-08 08:20:36.3008 2023-07-08 10:24:49.805628 28ac18b7-1762-4739-92ea-3dc1080c1c29 {"md5": "bdddd50d4a4672d6e2a9ffab384c40e8", "pid": "119349043", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/119349043", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/119349043", "source": "IDREF"}], "preferred_name": "Bogdan-Verger, Olimpia", "country_associated": "fr", "authorized_access_point": "Bogdan-Verger, Olimpia", "biographical_information": ["Traduit du roumain au français"]} 2 -2023-07-08 08:23:20.130546 2023-07-08 10:24:51.248342 f4c7cd26-4975-4ce9-9c3c-714100411439 {"md5": "c031f62633bf130a4aa1542aa8e5160a", "pid": "263082091", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["chi"], "identifier": "http://www.idref.fr/263082091", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263082091", "source": "IDREF"}], "variant_name": ["齐宸"], "preferred_name": "Qi, Chen", "country_associated": "cc", "variant_access_point": ["齐宸"], "authorized_access_point": "Qi, Chen", "biographical_information": ["Docteure en droit., chercheuse postdoctorale à la Faculté de droit de l'Université de technologie de Pékin et à l'Institut de prévention et de résolution des conflits internationaux. Ses principaux domaines de recherche sont le droit international privé, le droit de la procédure civile internationale, le droit de l'arbitrage commercial international et les organisations à but non lucratif."]} 2 -2023-07-08 08:22:39.455301 2023-07-08 10:24:54.221224 ed71fca8-0d7e-47d7-837d-33caf621d7bc {"md5": "2024a4a9014aa65a4191b7f73e94756d", "pid": "242927351", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["pol"], "identifier": "http://www.idref.fr/242927351", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/242927351", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Sperka, Jerzy", "country_associated": "pl", "authorized_access_point": "Sperka, Jerzy, 19..-....", "biographical_information": ["Historien"]} 2 -2023-07-08 08:20:45.927797 2023-07-08 10:24:55.657361 cbdd6d14-4a46-4150-8e6f-7b78d840bb6d {"md5": "e3977283a74271250a6341acbcdf1b30", "pid": "132394065", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/132394065", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/132394065", "source": "IDREF"}], "preferred_name": "Isabella, Giovanni", "country_associated": "it", "authorized_access_point": "Isabella, Giovanni", "biographical_information": ["Historien. Traduit de l'anglais à l'italien"]} 2 -2023-07-08 08:21:06.553898 2023-07-08 10:24:57.567673 5f495d7e-463d-45d4-8b64-1220de8baed7 {"md5": "e8bc4d85bc216d1e4485f2747a6dafc5", "pid": "150724527", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["pol"], "identifier": "http://www.idref.fr/150724527", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/150724527", "source": "IDREF"}], "variant_name": ["Morelowski, Marjan"], "date_of_birth": "1884-03-06", "date_of_death": "1963-07-24", "preferred_name": "Morelowski, Marian", "country_associated": "pl", "variant_access_point": ["Morelowski, Marjan"], "authorized_access_point": "Morelowski, Marian, 1884-1963", "biographical_information": ["Historien d'art. - Professeur aux universités de Wroclaw et de Vilnius", "Lieu de naissance Wadowice, Pologne. Lieu de décès Wroclaw, Pologne"]} 2 -2023-07-08 08:20:58.174182 2023-07-08 10:24:58.860063 cef716d6-631c-4f2c-b298-5f47b2271ca2 {"md5": "968b0410063dbc3417d640dec2cb6a79", "pid": "145209512", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["pol"], "identifier": "http://www.idref.fr/145209512", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/145209512", "source": "IDREF"}], "preferred_name": "Dlugajczyk, Beata", "country_associated": "pl", "authorized_access_point": "Dlugajczyk, Beata"} 2 -2023-07-08 08:20:55.518738 2023-07-08 10:24:59.765809 d13b0f14-b322-4c50-9bf8-87f4a9cc0807 {"md5": "54cf7fa950cd5a66a868daf73595ffdb", "pid": "140708987", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["pol"], "identifier": "http://www.idref.fr/140708987", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/140708987", "source": "IDREF"}], "preferred_name": "Wandowski, Henryk", "country_associated": "pl", "authorized_access_point": "Wandowski, Henryk", "biographical_information": ["Traducteur"]} 2 -2023-07-08 08:20:57.11544 2023-07-08 10:25:03.992464 9b1287ac-4390-49fe-8ab5-2c5017154931 {"md5": "c53150765cc8bb9330ae047c3d8b55d3", "pid": "143329790", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["pol"], "identifier": "http://www.idref.fr/143329790", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/143329790", "source": "IDREF"}], "date_of_birth": "1931", "date_of_death": "2022", "preferred_name": "Kruppé, Jerzy", "country_associated": "pl", "authorized_access_point": "Kruppé, Jerzy, 1931-2022", "biographical_information": ["Archéologue"]} 2 -2023-07-08 08:23:16.844221 2023-07-08 10:25:05.098429 85a6dd18-5a0c-4c79-a5af-3d1b6ab5122a {"md5": "c267794c22178fbfb9b30aa59f83ddc5", "pid": "261814176", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/261814176", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261814176", "source": "IDREF"}], "preferred_name": "Agbayissah, Sena", "country_associated": "tg", "authorized_access_point": "Agbayissah, Sena", "biographical_information": ["Avocat associé dans le cabinet Hughes Hubbard & Reed LLP (Paris), membre du conseil d'administration de l'Association européenne de droit bancaire et financier (AEDBF)."]} 2 -2023-07-08 08:22:10.793809 2023-07-08 10:25:07.522795 b69645dc-879f-4775-9726-ff33c23004b8 {"md5": "acc13fcab218bf11308346d544143108", "pid": "22749900X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/22749900X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/22749900X", "source": "IDREF"}], "date_of_birth": "1991-06-04", "preferred_name": "Dupont, Clément", "country_associated": "fr", "authorized_access_point": "Dupont, Clément, 1991-....", "biographical_information": ["Auteur d'une thèse en Biophysique (Médecine) à Lille 2 en 2017"]} 2 -2023-07-08 08:23:19.020572 2023-07-08 10:25:08.766759 3623380a-bc02-45fb-806a-68207f2ee743 {"md5": "ec29c83ad9763d2263057cec0e48e343", "pid": "262469561", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["chi"], "identifier": "http://www.idref.fr/262469561", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262469561", "source": "IDREF"}], "variant_name": ["刘, 兴建"], "date_of_birth": "19XX", "preferred_name": "Liu, Xingjian", "country_associated": "cc", "variant_access_point": ["刘, 兴建"], "authorized_access_point": "Liu, Xingjian, 19..-...."} 2 -2023-07-08 08:22:54.630427 2023-07-08 10:25:09.206868 ba909cc5-0a2a-484f-8173-1398f7c5791a {"md5": "fa207af4fefa6ad9a1846c4dbe5bc8c7", "pid": "251123022", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ile"], "conference": false, "identifier": "http://www.idref.fr/251123022", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251123022", "source": "IDREF"}], "preferred_name": "Association por International Servicie", "country_associated": "sz", "authorized_access_point": "Association por International Servicie"} 2 -2023-07-08 08:21:29.285784 2023-07-08 10:25:10.901896 570db107-c428-4db7-a6ec-24bdcf1e2222 {"md5": "3590aab30c54a111b7e5ffa9f8568662", "pid": "18102540X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/18102540X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/18102540X", "source": "IDREF"}], "preferred_name": "Nievelstein, Ralf", "authorized_access_point": "Nievelstein, Ralf"} 2 -2023-07-08 08:20:50.628996 2023-07-08 10:25:33.934675 4fa0edd2-2ee9-47d5-a023-983e0c557a23 {"md5": "64574d5bfd9676f0d9f1cad7703f6f53", "pid": "136864473", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/136864473", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/136864473", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Dumouchel, Jacques", "country_associated": "fr", "authorized_access_point": "Dumouchel, Jacques, 19..-...."} 2 -2023-07-08 08:20:09.81677 2023-07-08 10:25:14.49865 0fa1dfd4-926b-49fe-9d5e-2f55a4408bac {"md5": "dceed72126d2301077d325fa93455aaf", "pid": "079303315", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/079303315", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/079303315", "source": "IDREF"}], "variant_name": ["Bernardino de Arevalo", "Bernardino de Arevallo", "Arevalo, Bernardin d'"], "date_of_birth": "1492", "date_of_death": "1553", "preferred_name": "Bernardinus de Arevalo", "variant_access_point": ["Bernardino de Arevalo", "Bernardino de Arevallo", "Arevalo, Bernardin d'"], "authorized_access_point": "Bernardinus de Arevalo, 1492-1553", "biographical_information": ["Religieux espagnol. Prédicateur renommé. Plusieurs fois ministre provincial de la Province de la Conception. Séjourna au Mexique comme missionnaire, et premier Commissaire général des \\"Indes Occidentales\\"."]} 2 -2023-07-08 08:23:00.775138 2023-07-08 10:25:14.899336 3edb3964-2db8-48de-8950-55d788db5fce {"md5": "6eeca73fb287bd57d029f09846a0d24b", "pid": "254678475", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/254678475", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254678475", "source": "IDREF"}], "date_of_birth": "1885-05-05", "preferred_name": "Cinquin, François", "country_associated": "fr", "authorized_access_point": "Cinquin, François, 1885-....", "biographical_information": ["Docteur en droit, lauréat de la faculté"]} 2 -2023-07-08 08:19:30.879983 2023-07-08 10:25:15.34989 181b01c1-0632-465b-b37e-d80d98135c6f {"md5": "8d7424eaa27a408bdaf0113b3ad027ff", "pid": "032207107", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/032207107", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032207107", "source": "IDREF"}], "variant_name": ["Savigny"], "date_of_birth": "1820-01-19", "date_of_death": "1892-10-23", "preferred_name": "Lavoix, Henri", "country_associated": "fr", "variant_access_point": ["Savigny"], "authorized_access_point": "Lavoix, Henri, 1820-1892", "biographical_information": ["Bibliographe. Conservateur au Département des médailles et antiques de la Bibliothèque Nationale, Paris. Critique dramatique et musical à l'\\"Illustration\\" sous le pseudonyme de Savigny"]} 2 -2023-07-08 08:19:39.581765 2023-07-08 10:25:16.19687 27cb804b-96a2-4e10-9e23-d495b62072ea {"md5": "b56a282874aaa52a8c869d7cf578e39b", "pid": "034931929", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["swe"], "identifier": "http://www.idref.fr/034931929", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034931929", "source": "IDREF"}], "date_of_birth": "1959", "preferred_name": "Hansen, Peter", "country_associated": "sw", "authorized_access_point": "Hansen, Peter, 1959-....", "biographical_information": ["Historien de la littérature"]} 2 -2023-07-08 08:22:46.519728 2023-07-08 10:25:21.391986 da76d768-48b3-4040-a5ad-3020b9c958cd {"md5": "7dd72f6b98438f77b3020fb6b84d467b", "pid": "243886179", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["gre"], "identifier": "http://www.idref.fr/243886179", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243886179", "source": "IDREF"}], "preferred_name": "Spēliōtakēs, K.K", "country_associated": "gr", "authorized_access_point": "Spēliōtakēs, K.K"} 2 -2023-07-08 08:23:05.273021 2023-07-08 10:25:23.445314 7e6e4810-df94-4894-bbb3-b6bc5b6baf58 {"md5": "eff4bf548bbf745ee315131fc9de625c", "pid": "256910200", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut"], "identifier": "http://www.idref.fr/256910200", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/256910200", "source": "IDREF"}], "date_of_birth": "1644-09-30", "date_of_death": "1691-10-02", "preferred_name": "Hinlopen, Gerard", "country_associated": "ne", "authorized_access_point": "Hinlopen, Gerard, 1644-1691"} 2 -2023-07-08 08:21:17.702002 2023-07-08 10:25:27.249498 dac99a3a-2ece-4198-be04-71877598fdc0 {"md5": "1f04e08b262078a1676e2d9b38da4e43", "pid": "162154224", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/162154224", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/162154224", "source": "IDREF"}], "date_of_birth": "1973", "preferred_name": "Popp, Julius", "country_associated": "gw", "authorized_access_point": "Popp, Julius, 1973-....", "biographical_information": ["Artiste plasticien. Installateur. Photographe. Né à Nuremberg. Vit à Leipzig, Allemagne"]} 2 -2023-07-08 08:20:53.590363 2023-07-08 10:25:28.744604 0409c7d9-877b-4aff-a12d-ecdb339659da {"md5": "08780bc5dc6fa5f7b4f1608a524e5444", "pid": "139416846", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "chi"], "identifier": "http://www.idref.fr/139416846", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/139416846", "source": "IDREF"}], "date_of_birth": "1962", "preferred_name": "Lee, Vivian P. Y.", "country_associated": "xx", "authorized_access_point": "Lee, Vivian P. Y., 1962-....", "biographical_information": ["Enseigne au Département de chinois, de traduction et de linguistique à la Cité universitaire de Hong Kong (en 2009). Ses publications portent sur la littérature chinoise contemporain et sur le cinéma chinois et apparaissent dans des journaux universitaires tels que \\"Modern Chinese literature and culture\\", \\"Journal of Chinese cinemas\\", \\"Scope\\" et \\"Chinese films in focus II\\""]} 2 -2023-07-08 08:21:06.11775 2023-07-08 10:25:31.741773 426b534a-0ea6-4bf3-9d40-8aa0256e5c6b {"md5": "e72a16d09065ea07982cab7d18a10bc6", "pid": "150599811", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/150599811", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/150599811", "source": "IDREF"}], "preferred_name": "Walsh, Christine A.", "country_associated": "xxc", "authorized_access_point": "Walsh, Christine A.", "biographical_information": ["Professeur associé, University of Calgary (Canada), Faculty of social work"]} 2 -2023-07-08 08:21:14.772023 2023-07-08 10:25:33.468952 414d2c7e-dc3f-408b-9c64-01e94299ebc1 {"md5": "42ecd334f9c4b739c19f5748ddcec7e9", "pid": "158552180", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/158552180", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/158552180", "source": "IDREF"}], "preferred_name": "Paquet, François", "country_associated": "xxc", "authorized_access_point": "Paquet, François", "biographical_information": ["Psychologue. Enseigne la psychologie depuis une vingtaine d'années au Collège Jean-de-Brébeuf."]} 2 -2023-07-08 08:22:18.944406 2023-07-08 10:25:34.395897 b107ece1-a1a2-4788-8c0e-5f3c70c63e54 {"md5": "f7d200fe806f18fea2ac8ff9be6d8f79", "pid": "232530343", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["geo", "fre"], "identifier": "http://www.idref.fr/232530343", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232530343", "source": "IDREF"}], "variant_name": ["Bibileichvili, Tsissana", "Bibileišvili, Cʻisana"], "date_of_birth": "19XX", "preferred_name": "Bibiléichvili, Tsissana", "country_associated": "gau", "variant_access_point": ["Bibileichvili, Tsissana", "Bibileišvili, Cʻisana"], "authorized_access_point": "Bibiléichvili, Tsissana, 19..-...."} 2 -2023-07-08 08:21:03.421372 2023-07-08 10:25:36.126067 ead8843f-b19c-4601-addd-f6133de7d31c {"md5": "9fb8eceadc5d144b9a905f16fc5c8512", "pid": "148842836", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/148842836", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148842836", "source": "IDREF"}], "preferred_name": "Brandolin, Mario", "country_associated": "it", "authorized_access_point": "Brandolin, Mario", "biographical_information": ["Critique de théatre, directeur artistique."]} 2 -2023-07-08 08:21:43.91674 2023-07-08 10:25:40.869521 05815b73-70ee-4b0c-a1e1-3afefbd48f95 {"md5": "58f45a089bc579d7b1fc87772b76dad3", "pid": "195541855", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/195541855", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/195541855", "source": "IDREF"}], "date_of_birth": "1861-06-17", "preferred_name": "Ducroquet, Jean-Baptiste", "country_associated": "fr", "authorized_access_point": "Ducroquet, Jean-Baptiste, 1861-....", "biographical_information": ["Docteur en médecine (Lille, 1891)"]} 2 -2023-07-08 08:21:55.620064 2023-07-08 10:25:41.209627 63a79193-3a6e-4d1f-aa3a-28dd06fb021a {"md5": "79baf0b28513df5e997376286a4a40aa", "pid": "203359321", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/203359321", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/203359321", "source": "IDREF"}], "date_of_birth": "1980-08-29", "preferred_name": "Morin, Damien", "country_associated": "fr", "authorized_access_point": "Morin, Damien, 1980-....", "biographical_information": ["Docteur en médecine (en 2017)"]} 2 -2023-07-08 08:21:54.374138 2023-07-08 10:25:41.581095 b1b0f9ed-aefe-4f14-8c80-8b21f9d1caac {"md5": "6e4532b944bab045bed27a213f7503ae", "pid": "202648087", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/202648087", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/202648087", "source": "IDREF"}], "date_of_birth": "1963-04-09", "preferred_name": "Lesieur, Olivier", "country_associated": "fr", "authorized_access_point": "Lesieur, Olivier, 1963-....", "biographical_information": ["Auteur d'une thèse de doctorat en Ethique médicale soutenue à l'Université Sorbonne Paris Cité en 2015"]} 2 -2023-07-08 08:21:59.581859 2023-07-08 10:25:42.048767 666fdc61-7c2a-496f-a100-6ce402a18c3a {"md5": "712e76d6d01c08e399d10b5bd3ebaafd", "pid": "219992657", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["swe"], "conference": false, "identifier": "http://www.idref.fr/219992657", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/219992657", "source": "IDREF"}], "variant_name": ["Université de Borås (Suède)"], "preferred_name": "Högskolan i Borås (Suède)", "country_associated": "sw", "variant_access_point": ["Université de Borås (Suède)"], "parallel_access_point": ["University of Borås (Suède)"], "authorized_access_point": "Högskolan i Borås (Suède)"} 2 -2023-07-08 08:22:06.506369 2023-07-08 10:25:42.453129 3cdf8cfc-61d2-42d3-b293-9c97901567b2 {"md5": "89e250f7f077bc11b930e1738f6cfa18", "pid": "224875868", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita", "fre", "eng"], "identifier": "http://www.idref.fr/224875868", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/224875868", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Bacci, Alberto", "country_associated": "it", "authorized_access_point": "Bacci, Alberto", "biographical_information": ["Neuroscientifique. Directeur de recherche CNRS, responsable de l'équipe Physiologie cellulaire des microcircuits corticaux, Institut du cerveau et de la moëlle épinière (ICM, UMR 7225 CNRS - U975 INSERM), Sorbonne université, Paris (en 2023)", "Doctorat en pharmacologie expérimentale et thérapeutique (Università degli studi, Milan, Italie, 2000)"]} 2 -2023-07-08 08:22:38.576094 2023-07-08 10:25:43.933149 0e89b676-5521-473d-a35d-ecb62b91ede1 {"md5": "343e0f4cb35870feb0042ece0861d7cf", "pid": "24245383X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/24245383X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/24245383X", "source": "IDREF"}], "date_of_birth": "1989-08-28", "preferred_name": "Belmaati cherkaoui, Mehdi", "country_associated": "fr", "authorized_access_point": "Belmaati cherkaoui, Mehdi, 1989-....", "biographical_information": ["Auteur d'une thèse en Sciences de la vie et de la santé à Université Paris-Saclay (ComUE) en 2019"]} 2 -2023-07-08 08:23:12.746075 2023-07-08 10:25:44.80023 ef28938a-45c6-4654-8259-0c454b929266 {"md5": "08e87f4780cc5899733c9b408cb69e88", "pid": "260238570", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/260238570", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260238570", "source": "IDREF"}], "date_of_birth": "1993-06-10", "preferred_name": "Lécuyer, Ophélie", "country_associated": "fr", "authorized_access_point": "Lécuyer, Ophélie, 1993-....", "biographical_information": ["Auteur d'une thèse de doctorat d'Histoire ancienne, Université de Strasbourg, 2021"]} 2 -2023-07-08 08:20:26.575711 2023-07-08 10:25:46.415241 fb6a9e79-a9ad-466d-acdc-6d1e7e611d79 {"md5": "f51d92e20a17ae1c08267c6b0927b588", "pid": "101448597", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/101448597", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/101448597", "source": "IDREF"}], "date_of_birth": "1974-08-31", "preferred_name": "Déflacieux, Martial", "country_associated": "fr", "authorized_access_point": "Déflacieux, Martial", "biographical_information": ["Fait partie de l' association \\"Volksystem.cie\\", dont l' objet est l' organisation de programmes culturels.", "Auteur d'une thèse en Histoire et histoire de l'art à l'Université Clermont Auvergne‎ (2017-2020) en 2020"]} 2 -2023-07-08 08:20:52.543976 2023-07-08 10:25:47.437699 b9cac360-ea6d-4957-957c-3a61673dc074 {"md5": "829e8b16125d687c7bce84bcc7b9f891", "pid": "138484945", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/138484945", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/138484945", "source": "IDREF"}], "preferred_name": "Lanoë, Samuel", "country_associated": "fr", "authorized_access_point": "Lanoë, Samuel", "biographical_information": ["Ingénieur en sciences de l'environnement (en 2008)"]} 2 -2023-07-08 08:20:40.930502 2023-07-08 10:25:47.834072 0f09283a-371c-4cf2-8d08-6a632bed0ab1 {"md5": "d70aaa4bf56e11e51fdf6df95a2fb50d", "pid": "127334807", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/127334807", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/127334807", "source": "IDREF"}], "date_of_birth": "1957-01-10", "preferred_name": "Deloupy, Bernard", "country_associated": "fr", "authorized_access_point": "Deloupy, Bernard, 1957-...."} 2 -2023-07-08 08:20:23.445486 2023-07-08 10:25:53.773612 4445f2c6-a6fa-4dea-acb1-69a2f3cbcecf {"md5": "678dfc3764ef4a29deff6e22f904aa14", "pid": "092359116", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/092359116", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/092359116", "source": "IDREF"}], "variant_name": ["Matsen, Bradford"], "date_of_birth": "19XX", "preferred_name": "Matsen, Brad", "country_associated": "xxu", "variant_access_point": ["Matsen, Bradford"], "authorized_access_point": "Matsen, Brad, 19..-....", "biographical_information": ["Auteur, documentariste et photographe. Auteur de \\"Titanic's last secrets\\", \\"Descent : the heroic discovery of the abyss\\",.. et de nombreux articles sur les sciences marines. Réalisateur pour la télévision de \\"The shape of life\\""]} 2 -2023-07-08 08:21:35.041702 2023-07-08 10:25:57.261234 c092f797-42bc-4105-9e85-13d1798752ee {"md5": "380d65c769a218912fe139a670eb9b05", "pid": "18897394X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/18897394X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/18897394X", "source": "IDREF"}], "date_of_birth": "19..", "preferred_name": "Gandhi, Nighat M.", "country_associated": "ii", "authorized_access_point": "Gandhi, Nighat M., 19..-", "biographical_information": ["Journaliste"]} 2 -2023-07-08 08:20:49.31705 2023-07-08 10:25:59.522596 d14ec8e2-2b15-4946-a6d7-da639abb1730 {"md5": "ee2bdc5b28451fc7e081cf6258f13d7c", "pid": "135688590", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/135688590", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/135688590", "source": "IDREF"}], "variant_name": ["Carazo, Pedro Pérez"], "preferred_name": "Pérez Carazo, Pedro", "country_associated": "sp", "variant_access_point": ["Carazo, Pedro Pérez"], "authorized_access_point": "Pérez Carazo, Pedro"} 2 -2023-07-08 08:19:29.732459 2023-07-08 10:26:00.474432 f8e85bdc-ad6d-4f0c-a04e-9ab37f857991 {"md5": "560099482e1c3de932d89d1525f39551", "pid": "031854575", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/031854575", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031854575", "source": "IDREF"}], "date_of_birth": "1952", "preferred_name": "Hulme, David", "country_associated": "xxu", "authorized_access_point": "Hulme, David, 1952-....", "biographical_information": ["Spécialiste de la sociologie du développement économique"]} 2 -2023-07-08 08:20:56.008921 2023-07-08 10:26:02.330289 0725e4eb-d5c4-4a8b-b9cd-bd2e789ff611 {"md5": "4ec4d1a9f28de9327b325690bb922730", "pid": "142638145", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/142638145", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/142638145", "source": "IDREF"}], "date_of_birth": "1973", "preferred_name": "Michel, Ariane", "country_associated": "fr", "authorized_access_point": "Michel, Ariane, 1973-....", "biographical_information": ["Réalisatrice de documentaires"]} 2 -2023-07-08 08:21:18.636726 2023-07-08 10:26:02.630457 1ecc0ae9-361c-4bf8-ab24-b83ca3a0a3ca {"md5": "ba1095981407bafd8171f32720f3b9b4", "pid": "164529640", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/164529640", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/164529640", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Pierré, Michaël", "country_associated": "fr", "authorized_access_point": "Pierré, Michaël, 19..-...."} 2 -2023-07-08 08:21:16.484439 2023-07-08 10:26:03.005942 2560bbb7-f9fa-4b02-acd2-19f831b7b36c {"md5": "090f077e3b629e97e15613df09cd95be", "pid": "160613701", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/160613701", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/160613701", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Obed", "country_associated": "xx", "authorized_access_point": "Obed, 19..-....", "biographical_information": ["Chanteur de variétés antillaises et de dancehall"]} 2 -2023-07-08 08:20:24.992277 2023-07-08 10:26:05.814198 1da5d69a-1998-4cf4-8615-f240a83b7214 {"md5": "785c035a30dad1d949eed421e5ca7b44", "pid": "095775757", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/095775757", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/095775757", "source": "IDREF"}], "date_of_birth": "1977-01-02", "preferred_name": "Galanopoulos, Philippe", "country_associated": "fr", "authorized_access_point": "Galanopoulos, Philippe, 1977-....", "biographical_information": ["Docteur en histoire (Université de Versailles-St Quentin en Yvelines, 2005)", "Diplôme d'archiviste paléographe (École nationale des chartes, 2009)", "Diplôme de conservateur des bibliothèques (École nationale supérieure des sciences de l'information et des bibliothèques, 2010)", "Directeur de la Bibliothèque de la Cour de cassation (Paris) [depuis le 01/11/2015]", "Conservateur à la Bibliothèque interuniversitaire de Santé (Paris), Pôle Pharmacie-biologie-cosmétologie (2011-2015)"]} 2 -2023-07-08 08:20:38.795119 2023-07-08 10:26:07.959061 dd995f39-7787-434c-b1aa-4ec54ac3e34e {"md5": "b236bd85a8d138ce42ca2cfeb48050d8", "pid": "123474825", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/123474825", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/123474825", "source": "IDREF"}], "date_of_birth": "1968", "preferred_name": "Moskowitz, Marina", "country_associated": "xxk", "authorized_access_point": "Moskowitz, Marina, 1968-....", "biographical_information": ["Historienne"]} 2 -2023-07-08 08:21:26.030129 2023-07-08 10:26:08.85534 fa91f8d9-927a-4cb4-8c1d-b3ec992cc34c {"md5": "728bae7b3374dd1879db970a136984c8", "pid": "175622914", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/175622914", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/175622914", "source": "IDREF"}], "preferred_name": "Thomson, Erik MacDonald", "country_associated": "xxu", "authorized_access_point": "Thomson, Erik MacDonald"} 2 -2023-07-08 08:20:47.882773 2023-07-08 10:26:09.138368 2a3985b1-b36e-4da5-a699-24705c695d26 {"md5": "e52284e230c6c4547256e04659bfa0de", "pid": "133972887", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "fre"], "identifier": "http://www.idref.fr/133972887", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/133972887", "source": "IDREF"}], "date_of_birth": "1909", "preferred_name": "Savile, Douglas B. O.", "country_associated": "xxc", "authorized_access_point": "Savile, Douglas B. O., 1909-...."} 2 -2023-07-08 08:21:26.620189 2023-07-08 10:26:10.25061 1e411467-5c6e-46b3-80a9-8400c2eae17f {"md5": "f37a76f352df31c22c4eb036390325bf", "pid": "176776613", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "écrivain", "identifier": "http://www.idref.fr/176776613", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/176776613", "source": "IDREF"}], "variant_name": ["Sarrazin, Pierre"], "date_of_birth": "1944", "preferred_name": "Sarrazin, Michel-Pierre, écrivain", "country_associated": "xxc", "variant_access_point": ["Sarrazin, Pierre"], "authorized_access_point": "Sarrazin, Michel-Pierre, 1944-...., écrivain", "biographical_information": ["Ecrivain"]} 2 -2023-07-08 08:19:32.386782 2023-07-08 10:26:10.7028 d6fc3f19-1ea9-4f60-b8ef-c812f675dcb6 {"md5": "8127bfd1b725b561a304213683f27058", "pid": "032649789", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/032649789", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032649789", "source": "IDREF"}], "variant_name": ["Lee, Danielle Juteau", "Juteau Lee, Danielle"], "date_of_birth": "1942-10-13", "preferred_name": "Juteau, Danielle", "country_associated": "xxc", "variant_access_point": ["Lee, Danielle Juteau", "Juteau Lee, Danielle"], "authorized_access_point": "Juteau, Danielle, 1942-....", "biographical_information": ["Sociologue. Professeur à l'Université d'Ottawa (en 1979)"]} 2 -2023-07-08 08:21:01.111621 2023-07-08 10:26:11.669358 75f78e67-e874-4c78-97e4-8edacbb41041 {"md5": "520b993f866c83425d09541c4fe4737a", "pid": "147644305", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/147644305", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/147644305", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Spiess, Bernhard", "country_associated": "sz", "authorized_access_point": "Spiess, Bernhard, 19..-....", "biographical_information": ["Professor veterinary ophtalmology : Department for small animals, Ophtalmology unit, Vetsuisse faculty, University of Zurich (Switzerland)"]} 2 -2023-07-08 08:19:37.731341 2023-07-08 10:26:12.627875 992f2043-2365-4f1c-bda4-cd57b606ca63 {"md5": "b02d5cb7925984c75c11fb6c21922656", "pid": "034388397", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/034388397", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034388397", "source": "IDREF"}], "variant_name": ["Maister, David H"], "preferred_name": "Maister, David", "country_associated": "xxu", "variant_access_point": ["Maister, David H"], "authorized_access_point": "Maister, David", "biographical_information": ["Ancien professeur à la Harvard Business School. Spécialisé dans le conseil en gestion (en 1996)"]} 2 -2023-07-08 08:21:41.939707 2023-07-08 10:26:16.369116 bc0582e6-261a-4086-bd38-4f26166dd429 {"md5": "817c3292042793d7ca6002629c6af6c9", "pid": "194445089", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/194445089", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/194445089", "source": "IDREF"}], "preferred_name": "Lizarzaburu, Véra", "authorized_access_point": "Lizarzaburu, Véra"} 2 -2023-07-08 08:20:12.792951 2023-07-08 10:26:16.697986 26aeabac-54b2-4719-937d-b9f3d0f20f30 {"md5": "446cfd542e772703ce2dc62bb18979d0", "pid": "081311249", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/081311249", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/081311249", "source": "IDREF"}], "preferred_name": "Owen, John Wyn", "authorized_access_point": "Owen, John Wyn", "biographical_information": ["Secrétaire au Nuffield Trust, Londres"]} 2 -2023-07-08 08:21:58.40858 2023-07-08 10:26:17.054509 888ab591-b117-4bbf-a15f-6f3bf7d16f4a {"md5": "77cde31d19c9d32b29926c8b61c92752", "pid": "204651913", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/204651913", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/204651913", "source": "IDREF"}], "date_of_birth": "1933-12-17", "preferred_name": "Chiarini, Claude", "authorized_access_point": "Chiarini, Claude", "biographical_information": ["Médecin"]} 2 -2023-07-08 08:22:04.613186 2023-07-08 10:26:18.793092 9a822747-5f7b-4d3d-ba68-02f2c8b9a92b {"md5": "3da491896165256a08c44465cb9774af", "pid": "224210963", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/224210963", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/224210963", "source": "IDREF"}], "preferred_name": "Peyré, Frédéric", "country_associated": "fr", "authorized_access_point": "Peyré, Frédéric", "biographical_information": ["Maître de conférences en langue et civilisation anglaises, à l'université de Lille Sciences humaines et sociales (2018)"]} 2 -2023-07-08 08:22:16.674967 2023-07-08 10:26:19.124782 6e5ca953-3fd1-4b2a-9ba2-e696ccc0309f {"md5": "7dafdc76b8a4b86296bf33ac16624d90", "pid": "230956866", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/230956866", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230956866", "source": "IDREF"}], "variant_name": ["Bennetot-Olive, Stéphanie Cotton de", "Cotton de Bennetot, Stéphanie", "Olive, Stéphanie", "Olive, Stéphanie Cotton de Bennetot-"], "date_of_birth": "19XX", "preferred_name": "Cotton de Bennetot-Olive, Stéphanie", "country_associated": "fr", "variant_access_point": ["Bennetot-Olive, Stéphanie Cotton de", "Cotton de Bennetot, Stéphanie", "Olive, Stéphanie", "Olive, Stéphanie Cotton de Bennetot-"], "authorized_access_point": "Cotton de Bennetot-Olive, Stéphanie, 19..-....", "biographical_information": ["Médecin. Auteur d'un mémoire pour l'obtention du master 2 \\"Risques sanitaires radionucléaires, biologiques, chimiques et explosifs\\" (2018, Sorbonne Université)", "Docteur en médecine générale à Bordeaux 2 en 1994"]} 2 -2023-07-08 08:23:08.827114 2023-07-08 10:26:21.002775 5f46a16d-1fbe-4adb-b5a1-eeebcded422f {"md5": "fded29ee47100e00c18af2655f8907e7", "pid": "258437855", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/258437855", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258437855", "source": "IDREF"}], "date_of_birth": "1993-03-20", "preferred_name": "Darrius, Rémi", "authorized_access_point": "Darrius, Rémi", "biographical_information": ["Hépato-gastro-entérologue (Strasbourg 2021)"]} 2 -2023-07-08 08:23:06.876326 2023-07-08 10:26:24.585126 f49a8e0e-394e-4dbd-a087-d77e98fedc36 {"md5": "6a587ca723f494a8b2a96a863977d21d", "pid": "257647805", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/257647805", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257647805", "source": "IDREF"}], "preferred_name": "Sandner, Henrike", "country_associated": "gw", "authorized_access_point": "Sandner, Henrike", "biographical_information": ["Réalisateur de documentaires"]} 2 -2023-07-08 08:22:45.470744 2023-07-08 10:26:27.461953 7cdff419-cf27-435a-81cd-745c54eee805 {"md5": "da293ca79f88ecf84c3b4139b9f74ebf", "pid": "243749120", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/243749120", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243749120", "source": "IDREF"}], "variant_name": ["Guay, L."], "date_of_birth": "1949", "preferred_name": "Guay, Luc", "variant_access_point": ["Guay, L."], "authorized_access_point": "Guay, Luc, 1949-...."} 2 -2023-07-08 08:19:20.717911 2023-07-08 10:26:27.876341 499a4a2a-de90-40fa-8fbb-dbd39dc6cc3d {"md5": "ff5500959c85e0c49c24f593cdb0a545", "pid": "028766857", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/028766857", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028766857", "source": "IDREF"}], "date_of_birth": "1935", "preferred_name": "Helbich, Wolfgang Johannes", "country_associated": "gw", "authorized_access_point": "Helbich, Wolfgang Johannes, 1935-....", "biographical_information": ["Professeur d'histoire moderne à l'Université de Bochum (en 1988)"]} 2 -2023-07-08 08:19:33.932013 2023-07-08 10:26:32.966824 ea21eb74-07e5-4104-9e9d-cf69eba565b7 {"md5": "0fc8e090e4ac20f7f1d7eecce3b40e3b", "pid": "033151571", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut"], "identifier": "http://www.idref.fr/033151571", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033151571", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "085899976"}, "preferred_name": "Kingma, J.", "country_associated": "ne", "authorized_access_point": "Kingma, J."} 2 -2023-07-08 08:21:38.149768 2023-07-08 10:26:33.468061 c0f14941-e8cc-4155-8a77-cb834d8f62c0 {"md5": "f7c35970a16da8276761c071ab71c834", "pid": "191808105", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["gre"], "conference": false, "identifier": "http://www.idref.fr/191808105", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/191808105", "source": "IDREF"}], "variant_name": ["Design Museum of Thessaloniki", "Mouseio Design (Thessalonique)", "Mouseio Design Thessaloniki"], "preferred_name": "Design Museum (Thessalonique, Grèce)", "country_associated": "gr", "variant_access_point": ["Design Museum of Thessaloniki", "Mouseio Design (Thessalonique)", "Mouseio Design Thessaloniki"], "date_of_establishment": "1993", "authorized_access_point": "Design Museum (Thessalonique, Grèce)", "biographical_information": ["Adresse : 43, Mitropoleos St., GR-546 23 Thessaloniki"]} 2 -2023-07-08 08:22:21.240039 2023-07-08 10:26:34.391217 d4752307-b816-43a6-9b7b-9ac1bc85d98d {"md5": "b21799ae70cb235d8433fb4bad5812ed", "pid": "23322758X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/23322758X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/23322758X", "source": "IDREF"}], "date_of_birth": "1955", "date_of_death": "2017", "preferred_name": "Dick, Beau", "authorized_access_point": "Dick, Beau, 1955-2017", "biographical_information": ["Sculpteur. Chef kwakwaka'wakw de la côte nord-ouest d'Alert Bay, en Colombie-Britannique, au Canada"]} 2 -2023-07-08 08:21:43.369201 2023-07-08 10:26:35.627364 2a152767-be01-44a3-84a5-9aeb0cf429d2 {"md5": "13003bc8795a01ec722bcf89cd33362a", "pid": "19529534X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/19529534X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/19529534X", "source": "IDREF"}], "date_of_birth": "1990-05-16", "preferred_name": "Hutchinson, Steve", "country_associated": "fr", "authorized_access_point": "Hutchinson, Steve, 1990-....", "biographical_information": ["Auteur d’une thèse d’exercice en Pharmacie, soutenue le 20 septembre 2016, à l’Université de Montpellier"]} 2 -2023-07-08 08:21:49.57566 2023-07-08 10:26:36.470734 0ae97835-7593-411c-810c-6e0fab4dfa6b {"md5": "f020d95f43a75b10bb7b686614f43268", "pid": "199258813", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/199258813", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/199258813", "source": "IDREF"}], "preferred_name": "Razetti, Ricardo", "country_associated": "ck", "authorized_access_point": "Razetti, Ricardo", "biographical_information": ["ingénieur"]} 2 -2023-07-08 08:22:09.765791 2023-07-08 10:26:38.459561 a9e7a619-0491-400c-910c-d32e80070c3b {"md5": "afa42f5cd86a4f0ad7c7beb81219eed0", "pid": "226958728", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/226958728", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/226958728", "source": "IDREF"}], "date_of_birth": "1984", "preferred_name": "Bouhia, Manal", "country_associated": "fr", "authorized_access_point": "Bouhia, Manal, 1984-....", "biographical_information": ["Élève ingénieur ENSAIT"]} 2 -2023-07-08 08:22:20.015605 2023-07-08 10:26:38.808036 c7c11c60-ac0e-4a1a-8e05-3ee374d97f93 {"md5": "1bca648f914cddbd0391e91214866a98", "pid": "232804788", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/232804788", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232804788", "source": "IDREF"}], "variant_name": ["Pierce, William Jr.", "William Pierce of Georgia"], "date_of_birth": "1753", "date_of_death": "1789", "preferred_name": "Pierce, William", "country_associated": "xxu", "variant_access_point": ["Pierce, William Jr.", "William Pierce of Georgia"], "authorized_access_point": "Pierce, William, 1753-1789", "biographical_information": ["Officier de l'armée pendant la guerre d'indépendance américaine et un membre de la Convention constitutionnelle des États-Unis de 1787"]} 2 -2023-07-08 08:22:32.106678 2023-07-08 10:26:39.476402 fd78a6e0-0bb6-4aa9-a101-677e876bf136 {"md5": "2ded7ef39ff6cbd2f401c43210ec8cb9", "pid": "238712435", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/238712435", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/238712435", "source": "IDREF"}], "date_of_birth": "19..", "preferred_name": "Chabannes, Axelle", "country_associated": "fr", "authorized_access_point": "Chabannes, Axelle, 19..-....", "biographical_information": ["Ingénieur en prévention des risques. Mémoire de Master Prévention des Risques et Nuisances Technologiques industriels spécialité risques professionnels soutenu à la faculté de pharmacie d'Aix-Marseille Université en septembre 2019"]} 2 -2023-07-08 08:21:30.644324 2023-07-08 10:26:44.342798 c8c3399d-c5c6-4d87-840b-c1e7e93fa368 {"md5": "bf94d4f6baabb7237cb537ee64aa676a", "pid": "182842819", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/182842819", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/182842819", "source": "IDREF"}], "variant_name": ["Dalphond, J.E."], "preferred_name": "Dalphond, Julie E.", "variant_access_point": ["Dalphond, J.E."], "authorized_access_point": "Dalphond, Julie E.", "biographical_information": ["Auteur"]} 2 -2023-07-08 08:22:50.670422 2023-07-08 10:26:44.842796 e097efe1-4ce9-4e58-a1ee-0795a13cd577 {"md5": "ddb1586cfc3ab1276695f2a18b4acadc", "pid": "245200142", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/245200142", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/245200142", "source": "IDREF"}], "variant_name": ["Barbaro, Luca Massino"], "preferred_name": "Massino Barbero, Luca", "country_associated": "it", "variant_access_point": ["Barbaro, Luca Massino"], "authorized_access_point": "Massino Barbero, Luca", "biographical_information": ["écrit sur l'art"]} 2 -2023-07-08 08:22:01.359979 2023-07-08 10:26:56.695451 b3ba1cdc-22ef-4298-b29d-895e944705f4 {"md5": "9043baa0a619445d3dfbc28c8205963e", "pid": "220890056", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/220890056", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/220890056", "source": "IDREF"}], "preferred_name": "Kraba, Karen Cheryl", "country_associated": "iv", "authorized_access_point": "Kraba, Karen Cheryl", "biographical_information": ["Titulaire d'une maitrise en Droit public, droit privé obtenue en 2016"]} 2 -2023-07-08 08:22:06.02559 2023-07-08 10:26:57.484212 c045a711-e113-4958-8df6-d879e4f16360 {"md5": "bf28e4a78cf1478c4e0500f0e97f88af", "pid": "224789147", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/224789147", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/224789147", "source": "IDREF"}], "preferred_name": "Lemus, Samuel Bernardo", "country_associated": "mx", "authorized_access_point": "Lemus, Samuel Bernardo", "biographical_information": ["Auteur d'un ouvrage de chansons mexicaines"]} 2 -2023-07-08 08:22:35.097999 2023-07-08 10:26:59.344849 dcd2b3a9-518b-41dc-9637-d21e84f492ee {"md5": "a4bac930f1068d565a0099de5d628b52", "pid": "241164168", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/241164168", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/241164168", "source": "IDREF"}], "date_of_birth": "1982-06-26", "preferred_name": "Foroughi Nik, Rahim", "country_associated": "ir", "authorized_access_point": "Foroughi Nik, Rahim, 1982-....", "biographical_information": ["Auteur d'une thèse en Droit privé à Nantes en 2019"]} 2 -2023-07-08 08:19:58.172041 2023-07-08 10:27:00.162386 a05e3267-7718-4967-92fc-bc610ac5d028 {"md5": "01d2b3bef297942cb3bda7a3c84a4c17", "pid": "069782768", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/069782768", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/069782768", "source": "IDREF"}], "date_of_birth": "1860", "date_of_death": "1946", "preferred_name": "Loesch, Ernst", "country_associated": "sz", "authorized_access_point": "Loesch, Ernst, 1860-1946"} 2 -2023-07-08 08:21:14.228516 2023-07-08 10:27:05.56356 e9649142-228a-476a-bc18-72bdf69f0fc3 {"md5": "e074db3b3d3e9564a8caf2f64ee5a447", "pid": "157856283", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/157856283", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157856283", "source": "IDREF"}], "preferred_name": "Thomas, Corinne", "country_associated": "fr", "authorized_access_point": "Thomas, Corinne", "biographical_information": ["Titulaire d'un doctorat en Production Automatisée de l'Université Henri Poincaré (Nancy 1) en 1999"]} 2 -2023-07-08 08:21:22.758955 2023-07-08 10:27:07.646509 d955ca52-f6a2-41a5-b937-360c633741d0 {"md5": "1cbe740a1125245fadae981dfe9ce879", "pid": "168968614", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/168968614", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/168968614", "source": "IDREF"}], "preferred_name": "Gagnier, Serge", "country_associated": "xxc", "authorized_access_point": "Gagnier, Serge", "biographical_information": ["Auteur pour la jeunesse"]} 2 -2023-07-08 08:20:43.539749 2023-07-08 10:27:07.974334 d8fb29ec-3682-4ee5-8862-4e784a44a5fe {"md5": "b2dce3142ac020e4a0d2a2d2c6a763bf", "pid": "129801577", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/129801577", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/129801577", "source": "IDREF"}], "preferred_name": "Koizumi, Hiroyasu", "authorized_access_point": "Koizumi, Hiroyasu", "biographical_information": ["Mathématicien. En poste à la faculté de Science de l'Institut de technologie d'Himeji au Japon en 2003."]} 2 -2023-07-08 08:20:22.656648 2023-07-08 10:27:09.603623 8911aed8-921e-49b8-adc7-14bfe6254549 {"md5": "8ab6f5a1cafbd890be390fb1b913726a", "pid": "089443675", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "fre"], "identifier": "http://www.idref.fr/089443675", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/089443675", "source": "IDREF"}], "variant_name": ["Ritch, Katharine Janet", "Ritch, Janet"], "date_of_birth": "1955", "date_of_death": "2014", "preferred_name": "Ritch, K. Janet", "country_associated": "xxc", "variant_access_point": ["Ritch, Katharine Janet", "Ritch, Janet"], "authorized_access_point": "Ritch, K. Janet, 1955-2014", "biographical_information": ["Enseigne à l'université de Toronto, traduit en français"]} 2 -2023-07-08 08:20:18.382068 2023-07-08 10:27:10.007715 c6859c61-0564-4671-8ede-7849ffcdc048 {"md5": "150c160a3a019d3137a8a0dea0eddae3", "pid": "085647640", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/085647640", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/085647640", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "086928341"}, "date_of_birth": "1839-11-07", "date_of_death": "1900-05-13", "preferred_name": "Levi, Hermann", "country_associated": "gw", "authorized_access_point": "Levi, Hermann, 1839-1900", "biographical_information": ["Chef d'orchestre et compositeur allemand. 1859 directeur général de la musique à Sarrebruck, 1861 chef assistant à l'Opéra National de Mannheim, 1861-64 chef à l'Opéra de Rotterdam, 1864-72 chef à la Cour de Karlsruhe,1872-90 chef à la Cour de Munich, 1894 directeur général de la musique à Munich. Il cesse de diriger en 1896", "Lieu de naissance Giessen. Lieu de décès Munich"]} 2 -2023-07-08 08:21:09.439291 2023-07-08 10:27:12.230307 b3eabfad-9872-44fb-bf9a-afc2f7892066 {"md5": "db90a68cf2721c89dc3eeb1b1e86a727", "pid": "153446544", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/153446544", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/153446544", "source": "IDREF"}], "preferred_name": "Abbott, Colleen", "country_associated": "at", "authorized_access_point": "Abbott, Colleen"} 2 -2023-07-08 08:20:01.058208 2023-07-08 10:27:20.33689 f1a7b361-eab8-4d3a-9175-40007b841d03 {"md5": "10d6da51b4272514ad009a39c05db894", "pid": "071535616", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/071535616", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/071535616", "source": "IDREF"}], "preferred_name": "Lamberton, Charles", "authorized_access_point": "Lamberton, Charles", "biographical_information": ["Professeur au Lycée Gallieni, secrétaire perpétuel de l'Académie Malgache"]} 2 -2023-07-08 08:22:18.644972 2023-07-08 10:27:21.734535 ade15400-cad5-4296-96bd-2d1053a25e25 {"md5": "b5a1814b9415f82b498347e61c6ca3ed", "pid": "232278431", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/232278431", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232278431", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Douglas, Claire", "country_associated": "xxu", "authorized_access_point": "Douglas, Claire, 19..-....", "biographical_information": ["Psychologue clinicienne et psychanalyste jungienne. - Membre de : C. G. Jung society of Southern California, Los Angeles, Calif., États-Unis (en 1997)"]} 2 -2023-07-08 08:21:36.100267 2023-07-08 10:27:22.567497 c1a71e2b-9cf2-4c4d-8c6c-238bad512250 {"md5": "e0a5a7d78adba6083735272b6d0d8c34", "pid": "190122277", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/190122277", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/190122277", "source": "IDREF"}], "preferred_name": "Wildeboer, Ina Hinderika", "authorized_access_point": "Wildeboer, Ina Hinderika"} 2 -2023-07-08 08:21:10.765796 2023-07-08 10:27:23.505006 57f20288-503f-412b-bf7b-4f7f19c907ec {"md5": "5f90fae2faa74b7f9ce9ba19453022c5", "pid": "154972673", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/154972673", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/154972673", "source": "IDREF"}], "date_of_birth": "1970", "preferred_name": "Lange, Bastian", "country_associated": "gw", "authorized_access_point": "Lange, Bastian, 1970-...."} 2 -2023-07-08 08:20:21.50233 2023-07-08 10:27:25.572023 e72b4a24-b5dd-4e7e-9090-ff89442bcb50 {"md5": "7976a950a66dd89187f26ed3dc91dfb0", "pid": "088397599", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/088397599", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/088397599", "source": "IDREF"}], "preferred_name": "Rodríguez Gómez, José M.", "country_associated": "sp", "authorized_access_point": "Rodríguez Gómez, José M."} 2 -2023-07-08 08:19:35.071012 2023-07-08 10:27:25.950609 0a42ccf6-810c-49cb-bc4a-5d68ffa417ff {"md5": "0938ae05e71e3235082c90f58443b732", "pid": "033864357", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/033864357", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033864357", "source": "IDREF"}], "date_of_birth": "1954", "preferred_name": "Séébold, Éric", "country_associated": "fr", "authorized_access_point": "Séébold, Éric, 1954-....", "biographical_information": ["Spécialiste de littérature française"]} 2 -2023-07-08 08:21:41.110929 2023-07-08 10:27:26.419569 3001c499-1e30-4f4f-9ac8-1526b665bed6 {"md5": "95046d18a1c4a7a3ea56ff74675cc573", "pid": "193779587", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/193779587", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/193779587", "source": "IDREF"}], "preferred_name": "Coulet, Michel", "authorized_access_point": "Coulet, Michel"} 2 -2023-07-08 08:21:45.40152 2023-07-08 10:27:31.05772 316950d6-fa54-40d6-b28b-271308aea8d1 {"md5": "c785838f887bf64706eacacdfcecd129", "pid": "196425840", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/196425840", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196425840", "source": "IDREF"}], "preferred_name": "L'Atelier des Bassins (Bordeaux)", "country_associated": "fr", "authorized_access_point": "L'Atelier des Bassins (Bordeaux)", "biographical_information": ["Regroupement de la ville de Bordeaux, Bordeaux Métropole, Bordeaux Port Atlantique et l'ANMA"]} 2 -2023-07-08 08:21:51.996106 2023-07-08 10:27:31.79364 ae067374-3b12-4844-83bc-2ed224ee8d93 {"md5": "0ce072af410f2c92430ad66be2c446a6", "pid": "200661531", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/200661531", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/200661531", "source": "IDREF"}], "date_of_birth": "1986-01-30", "preferred_name": "Aiello, Angèle d'", "authorized_access_point": "Aiello, Angèle d', 1986-....", "biographical_information": ["Médecin militaire français (en 2016). Docteur en médecine (Brest, 2016)"]} 2 -2023-07-08 08:21:52.804318 2023-07-08 10:27:32.259874 71c81d9c-066a-4500-bb20-010acbf18c33 {"md5": "4ca97ebf2fa89d993b04e13853554bc5", "pid": "201609924", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/201609924", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/201609924", "source": "IDREF"}], "date_of_birth": "1987-01-19", "preferred_name": "Djaziri, Sarah", "country_associated": "fr", "authorized_access_point": "Djaziri, Sarah, 1987-....", "biographical_information": ["Titulaire d'une thèse d'exercice en Médecine (Lyon 1, 2017)"]} 2 -2023-07-08 08:22:06.147786 2023-07-08 10:27:33.16225 bba78020-a11e-44ad-ab34-2ec2bfb28c3a {"md5": "0aa608a83215bf6d64253ff3707a2746", "pid": "224794272", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/224794272", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/224794272", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Fiedrich, Frank", "country_associated": "gw", "authorized_access_point": "Fiedrich, Frank, 19..-....", "biographical_information": ["Institute for Public Safety and Emergency Management, Université de Wuppertal, Allemagne"]} 2 -2023-07-08 08:22:13.274168 2023-07-08 10:27:34.031789 fa5961d0-3407-480a-a36c-2f41a8e2b523 {"md5": "8e84204d925b5068f81790a2096478da", "pid": "229619231", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/229619231", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/229619231", "source": "IDREF"}], "preferred_name": "Muratti, Louna", "country_associated": "fr", "authorized_access_point": "Muratti, Louna", "biographical_information": ["Comédienne"]} 2 -2023-07-08 08:22:59.051005 2023-07-08 10:27:35.264257 c4d13eed-51d0-4fce-b162-d241fa6e9cc5 {"md5": "e3a74ca53489d5b0168dd54e3be44d2a", "pid": "253765005", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/253765005", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/253765005", "source": "IDREF"}], "preferred_name": "Perdu, Pierre", "country_associated": "fr", "authorized_access_point": "Perdu, Pierre"} 2 -2023-07-08 08:21:02.764206 2023-07-08 10:27:45.37077 f8695014-1522-4256-8803-abd8aebc07f5 {"md5": "2ad02c9df070aa1189b8a6601648357e", "pid": "148637450", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/148637450", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148637450", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Hepner, Gershon", "country_associated": "xxu", "authorized_access_point": "Hepner, Gershon, 19..-...."} 2 -2023-07-08 08:20:24.307566 2023-07-08 10:27:49.64361 c94f79fa-b24f-49ce-8e0a-bd733c55e77e {"md5": "9bace0a9915fd532311facf76b2e51a3", "pid": "094563152", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/094563152", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/094563152", "source": "IDREF"}], "preferred_name": "Nievergelt, Dieter", "country_associated": "gw", "authorized_access_point": "Nievergelt, Dieter"} 2 -2023-07-08 08:20:18.954001 2023-07-08 10:27:52.295315 15be064d-7170-437f-b6e8-5fa554df7687 {"md5": "a2e86b542f7b8f9e7e3f408a223612e1", "pid": "08589320X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/08589320X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/08589320X", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "066889359"}, "date_of_birth": "1813-06-22", "date_of_death": "1882-07", "preferred_name": "Batissier, Louis", "country_associated": "fr", "authorized_access_point": "Batissier, Louis, 1813-1882", "biographical_information": ["Médecin. Inspecteur de monuments historiques de l'Allier. Chargé de mission en Grèce, Syrie et Asie Mineure. Vice-consul de France à Suez"]} 2 -2023-07-08 08:20:39.202381 2023-07-08 10:27:55.972258 1b60546e-fbf7-4dd2-8f9e-9cc53c63b890 {"md5": "da43a5a7df0c6575a5367aff591a5f30", "pid": "124217273", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "ita"], "identifier": "http://www.idref.fr/124217273", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/124217273", "source": "IDREF"}], "preferred_name": "Barbi, Elisabetta", "country_associated": "it", "authorized_access_point": "Barbi, Elisabetta", "biographical_information": ["Professeur à l'Université de Messina (Italie) au département Economie, Statistique, Mathématiques et Sociologie \\"W. Pareto\\" (en 2008)."]} 2 -2023-07-08 08:19:50.719197 2023-07-08 10:27:58.344044 36ecaa86-d7a6-47e5-98b9-77e891af0e29 {"md5": "d31005b9d155a11b8aeeb05a328bc929", "pid": "059412720", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "identifier": "http://www.idref.fr/059412720", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/059412720", "source": "IDREF"}], "variant_name": ["Echevarría Ferrreira, Fernando", "Ferrreira, Fernando Echevarría"], "date_of_birth": "1929-02-26", "date_of_death": "2021-10-04", "preferred_name": "Echevarría, Fernando", "country_associated": "po", "variant_access_point": ["Echevarría Ferrreira, Fernando", "Ferrreira, Fernando Echevarría"], "authorized_access_point": "Echevarría, Fernando, 1929-2021", "biographical_information": ["Poète portugais du 20e siècle"]} 2 -2023-07-08 08:20:28.982438 2023-07-08 10:28:03.036318 ea34bcfa-9374-40ea-8088-0c8dc31931ca {"md5": "6974f48aad25d462f4344b24b9951a90", "pid": "108510638", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/108510638", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/108510638", "source": "IDREF"}], "date_of_birth": "1956-09-13", "preferred_name": "Jennex, Murray E.", "country_associated": "xxu", "authorized_access_point": "Jennex, Murray E., 1956-...."} 2 -2023-07-08 08:20:59.076535 2023-07-08 10:28:04.758977 9888f4e9-1a94-4792-b644-47cc1f53c010 {"md5": "ce9d9f3c63e9dd8aff02743a6f411fb5", "pid": "145729613", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rum"], "identifier": "http://www.idref.fr/145729613", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/145729613", "source": "IDREF"}], "preferred_name": "Stanciu, Augustina", "country_associated": "rm", "authorized_access_point": "Stanciu, Augustina", "biographical_information": ["Scénariste"]} 2 -2023-07-08 08:21:10.676752 2023-07-08 10:28:09.598878 38f6cdfb-8d3f-4b0f-aee4-5894317c806e {"md5": "474b639655e176085b8053f67308ae0d", "pid": "154889415", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/154889415", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/154889415", "source": "IDREF"}], "date_of_birth": "1971", "preferred_name": "Kay, Tamara", "country_associated": "xxu", "authorized_access_point": "Kay, Tamara, 1971-....", "biographical_information": ["Professeur de sociologie à l'Université de Harvard et codirectrice de : Harvard's Transnational Studies iniative"]} 2 -2023-07-08 08:22:53.573904 2023-07-08 10:29:04.501636 4368b554-c5f9-4235-a8f1-74e12e9400a1 {"md5": "cfd02121df7f37ba491723f91b67fc25", "pid": "250402823", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/250402823", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/250402823", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Ghionoiu, Claudia-Irina", "country_associated": "fr", "authorized_access_point": "Ghionoiu, Claudia-Irina, 19..-...."} 2 -2023-07-08 08:20:56.956529 2023-07-08 10:28:12.641246 cb14b903-e1b1-45e6-9ba9-ca067dc412f8 {"md5": "5c875e23a8e4a537851ab773ce2b2a29", "pid": "143120743", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/143120743", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/143120743", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Saul, Matthew", "country_associated": "xxk", "authorized_access_point": "Saul, Matthew, 19..-....", "biographical_information": ["Assistant en droit à Durham Law School, Université de Durham, en Angleterre (en 2010)", "Chercheur en droit à Department of Public and International Law, Université d'Oslo, Norvège (en 2014)"]} 2 -2023-07-08 08:22:30.176592 2023-07-08 10:28:14.91259 b3355a60-8382-4da1-8e5c-43f70f04b1f4 {"md5": "f91babe4a35dd34563dd2f24ada2d41d", "pid": "237257521", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/237257521", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/237257521", "source": "IDREF"}], "preferred_name": "Lapp, Axel", "country_associated": "xx", "authorized_access_point": "Lapp, Axel"} 2 -2023-07-08 08:23:06.051728 2023-07-08 10:28:22.868421 340d94fe-b7fd-4472-bbf7-bb50d3057fe8 {"md5": "4d223325eb5253c58c83ba8b11e4096e", "pid": "257382968", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn", "fre"], "identifier": "http://www.idref.fr/257382968", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257382968", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Azure", "country_associated": "ja", "authorized_access_point": "Azure, 19..-....", "biographical_information": ["illustratrice japonaise de light novel"]} 2 -2023-07-08 08:22:24.531677 2023-07-08 10:28:24.30754 c1e391ac-b75f-4584-b922-7de24f3f497b {"md5": "091e77df1f16e33ffc9d98f5972e49a4", "pid": "234587989", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "identifier": "http://www.idref.fr/234587989", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234587989", "source": "IDREF"}], "variant_name": ["橋本, 義彦"], "date_of_birth": "1924", "date_of_death": "2015", "preferred_name": "Hashimoto, Yoshihiko", "country_associated": "ja", "variant_access_point": ["橋本, 義彦, 1924-2015"], "authorized_access_point": "Hashimoto, Yoshihiko, 1924-2015", "biographical_information": ["Transcription Hepburn modifié", "Historien japonais spécialiste de la noblesse et de la cour japonaises durant la période Heian"]} 2 -2023-07-08 08:21:25.487915 2023-07-08 10:28:25.174559 dbc72487-178b-4a85-a458-a944e0921e02 {"md5": "cf2867466d510f4ba8f94d5f9feed0ca", "pid": "174571623", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "identifier": "http://www.idref.fr/174571623", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/174571623", "source": "IDREF"}], "variant_name": ["大島, 清次"], "date_of_birth": "1924", "date_of_death": "2006", "preferred_name": "Ōshima, Seiji", "country_associated": "ja", "variant_access_point": ["大島, 清次, 1924-2006"], "authorized_access_point": "Ōshima, Seiji, 1924-2006", "biographical_information": ["Transcription Hepburn modifié", "Historien de l'art, Critique d'art, membre de l'AICA JAPON, directeur du Musée préfectoral des Beaux-arts de Tochigi (en 1981) ainsi que du Musée d'Art de Setagaya (1986-2005)."]} 2 -2023-07-08 08:20:28.664937 2023-07-08 10:28:26.407296 a7e997c9-d359-437b-b1e6-518fd2b1b245 {"md5": "9774d65f6c62956b94cd42913fe4abfe", "pid": "108090450", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/108090450", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/108090450", "source": "IDREF"}], "date_of_birth": "1914", "date_of_death": "1994", "preferred_name": "Cullen, Gordon", "country_associated": "xxk", "authorized_access_point": "Cullen, Gordon, 1914-1994", "biographical_information": ["Architecte et urbaniste britannique"]} 2 -2023-07-08 08:19:19.032942 2023-07-08 10:28:29.372858 0d123aa6-da4a-4e55-ae86-780905046523 {"md5": "afc61e37ed2eb748fee777cd830ee8fc", "pid": "028442717", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/028442717", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028442717", "source": "IDREF"}], "date_of_birth": "1931", "preferred_name": "Echard, William E", "country_associated": "xxc", "authorized_access_point": "Echard, William E, 1931-....", "biographical_information": ["Professeur d'histoire, Glendon college of York university, Toronto"]} 2 -2023-07-08 08:19:42.173644 2023-07-08 10:28:30.484209 14b43259-3126-4932-a566-bc72629e4db3 {"md5": "23e0a408e61c48ef756bc3fc14555325", "pid": "050212265", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/050212265", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050212265", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "086112740"}, "variant_name": ["卡, 普兰"], "date_of_birth": "19..", "preferred_name": "Kaplan, Robert B.", "country_associated": "xxu", "variant_access_point": ["卡, 普兰, 19..-...."], "authorized_access_point": "Kaplan, Robert B., 19..-...."} 2 -2023-07-08 08:19:22.251065 2023-07-08 10:28:32.601546 da3899a6-e310-4380-abf9-9f9e1e0645da {"md5": "a11336565058606ee0af0df7fdcf01bc", "pid": "029598982", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/029598982", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029598982", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "071392238"}, "date_of_birth": "1943", "preferred_name": "Pestieau, Pierre", "country_associated": "xx", "authorized_access_point": "Pestieau, Pierre, 1943-....", "biographical_information": ["Ecrit aussi en anglais", "Docteur en sciences économiques. Professeur à l'Université de Liège (en 1989). Professeur émérite et membre du CORE (en 2017)"]} 2 -2023-07-08 08:20:53.228996 2023-07-08 10:28:36.490321 7a0f8a7c-f21d-4110-b777-f793af14a2c6 {"md5": "109195d6290630e844e1fb2c8e87cb18", "pid": "139135723", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "identifier": "http://www.idref.fr/139135723", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/139135723", "source": "IDREF"}], "variant_name": ["戸川, 芳郎"], "date_of_birth": "1931", "preferred_name": "Togawa, Yoshio", "country_associated": "ja", "variant_access_point": ["戸川, 芳郎, 1931-...."], "authorized_access_point": "Togawa, Yoshio, 1931-....", "biographical_information": ["Sp. philosophie chinoise, prof. émérite Tōkyō Daigaku et Nishōgakusha Daigaku"]} 2 -2023-07-08 08:19:18.032039 2023-07-08 10:28:41.767183 b5686308-ce8b-4ca6-abf6-24d8dbb5dda7 {"md5": "945efbbb6bf36c251376dee5c6a0e06f", "pid": "028259866", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/028259866", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028259866", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "086736442"}, "date_of_birth": "1939-07-15", "date_of_death": "2022-01-18", "preferred_name": "Brown, Jonathan", "country_associated": "xxu", "authorized_access_point": "Brown, Jonathan, 1939-2022", "biographical_information": ["Historien d'art. Professeur à l'Institut des beaux-arts de l'Université de New-York (1988)"]} 2 -2023-07-08 08:20:02.871534 2023-07-08 10:28:48.424223 d0e6d6f6-75e4-4c5a-a142-929372dfbfaa {"md5": "eee836f3794803ad2087d3fdbb642e24", "pid": "073673986", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/073673986", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/073673986", "source": "IDREF"}], "date_of_birth": "1919--", "preferred_name": "Barbizet, Jacques", "country_associated": "fr", "authorized_access_point": "Barbizet, Jacques, 1919-....", "biographical_information": ["Neuropsychologue. Professeur à la Faculté de médecine de Paris (en 1970)"]} 2 -2023-07-08 08:20:17.206834 2023-07-08 10:28:50.17272 410da261-729c-4802-8e9c-0724f753907b {"md5": "e408969da67439cb22017375a1fc1ab0", "pid": "084147385", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/084147385", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/084147385", "source": "IDREF"}], "date_of_birth": "1917", "preferred_name": "Shanks, Daniel", "country_associated": "xxu", "authorized_access_point": "Shanks, Daniel, 1917-...."} 2 -2023-07-08 08:22:51.123104 2023-07-08 10:28:51.149392 81b37696-4a3a-474f-9242-107aed3411cc {"md5": "151cda6010d675e1b85c09be1e6fcdeb", "pid": "248213032", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/248213032", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/248213032", "source": "IDREF"}], "variant_name": ["Rotta, Julius Karl", "Rotta, J.", "Rotta, J. C.", "Rotta, J.-C.", "Rotta, Julius", "Rotta, Julius Christian", "Rotta, Julius-Christian", "Rotta, Julius Carl"], "date_of_birth": "1912", "date_of_death": "2005", "preferred_name": "Rotta, Julius C.", "variant_access_point": ["Rotta, Julius Karl", "Rotta, J.", "Rotta, J. C.", "Rotta, J.-C.", "Rotta, Julius", "Rotta, Julius Christian", "Rotta, Julius-Christian", "Rotta, Julius Carl"], "authorized_access_point": "Rotta, Julius C., 1912-2005"} 2 -2023-07-08 08:19:39.000327 2023-07-08 10:28:53.148145 857fe4f6-8214-4144-9ad1-d63b289eb0a9 {"md5": "3d5c830288ad32730d4ca0493ea1e7a2", "pid": "034731695", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/034731695", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034731695", "source": "IDREF"}], "date_of_birth": "1947-11-24", "preferred_name": "Findlay, William", "country_associated": "xxk", "authorized_access_point": "Findlay, William, 1947-....", "biographical_information": ["Informaticien. En poste à l'université de Glasgow, GB (en 1987)"]} 2 -2023-07-08 08:19:28.747363 2023-07-08 10:28:53.63236 deb2969f-e48e-4d7f-b283-7887357e7c25 {"md5": "13a9bb7966e730dbe3e44d7cd0a0c12b", "pid": "031419763", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["vie", "eng"], "identifier": "http://www.idref.fr/031419763", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031419763", "source": "IDREF"}], "variant_name": ["Phạm Cao Dương"], "date_of_birth": "1937-10-10", "preferred_name": "Phạm, Cao Dương", "country_associated": "vm", "variant_access_point": ["Phạm Cao Dương"], "parallel_access_point": ["ương, Phạm Cao, 1937-...."], "authorized_access_point": "Phạm, Cao Dương, 1937-....", "biographical_information": ["Enseignant à l'Université de Saigon (jusqu'en 1975)"]} 2 -2023-07-08 08:22:40.290302 2023-07-08 10:28:57.631003 7300fd8e-10f2-4655-8f2a-bc01112cecc0 {"md5": "8bf45d2e6459b503bd4cdb16e1287a62", "pid": "243137400", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/243137400", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243137400", "source": "IDREF"}], "preferred_name": "Aronson, Robert H.", "authorized_access_point": "Aronson, Robert H."} 2 -2023-07-08 10:28:59.099135 2023-07-08 10:28:59.09915 ed1d2036-1c45-4f41-884c-7aa1d48aedc9 {"md5": "33c479fed70b501e8bc75be1c88cfb14", "pid": "265836905", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/265836905", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/265836905", "source": "IDREF"}], "preferred_name": "Frager, Robert", "country_associated": "xxu", "authorized_access_point": "Frager, Robert", "biographical_information": ["En poste à California Institute of Interpersonal Psychology en 1976"]} 1 -2023-07-08 08:22:28.589888 2023-07-08 10:29:03.210479 438859c5-a7e3-4043-990d-c8ae2a65b281 {"md5": "2107c42573886ce79ea1201c265a45cb", "pid": "236517627", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": true, "identifier": "http://www.idref.fr/236517627", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/236517627", "source": "IDREF"}], "variant_name": ["Exposition internationale", "Exposition universelle de l’agriculture, de l’industrie, de l’horticulture et des beaux-arts", "Exposition régionale", "Exposition de Metz"], "preferred_name": "Exposition universelle", "country_associated": "fr", "date_of_termination": "1861-09-24", "variant_access_point": ["Exposition internationale (1861 ; Metz)", "Exposition universelle de l’agriculture, de l’industrie, de l’horticulture et des beaux-arts (1861 ; Metz)", "Exposition régionale (1861 ; Metz)", "Exposition de Metz (1861)"], "date_of_establishment": "1861-06-01", "authorized_access_point": "Exposition universelle (1861 ; Metz)", "biographical_information": ["Exposition tenue à Metz de mai à septembre 1861. Elle se déroulait sur la Place royale, l'Esplanade et le quai des régates. Inaugurée le 1er juin 1861, elle se termine le 24 septembre"]} 2 -2023-07-08 08:22:51.981063 2023-07-08 10:29:04.068775 50933576-edbc-435a-beab-6679409a6641 {"md5": "e39ed52f5fe76ac042eac257ff1156aa", "pid": "249284472", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/249284472", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/249284472", "source": "IDREF"}], "preferred_name": "Brogniart, Yves", "country_associated": "fr", "authorized_access_point": "Brogniart, Yves", "biographical_information": ["Auteur d'une thèse en Droit, Université de Dijon, 1970"]} 2 -2023-07-08 08:22:56.353464 2023-07-08 10:29:06.712866 0b8bc674-2add-4f4d-bda4-604d7d8212a9 {"md5": "db7b5e1ca0164c76e2dcbeeb96ce6b47", "pid": "251629783", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["arm", "fre"], "identifier": "http://www.idref.fr/251629783", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251629783", "source": "IDREF"}], "date_of_birth": "1926", "preferred_name": "Aprikian, Garbis", "country_associated": "fr", "parallel_access_point": ["Ap̕rikean, Karpis, 1926-....", "Ափրիկեան, Կարպիս, 1926-...."], "authorized_access_point": "Aprikian, Garbis, 1926-....", "biographical_information": ["Compositeur, chef de choeur et chef d'orchestre. - Élève de Frapicini. - A fondé le choeur Hamazkaïne en 1948 au Caire. - A dirigé à Paris la chorale arménienne Sipan-Komitas (1953-2009)", "Lieu de naissance Alexandrie (Egypte)"]} 2 -2023-07-08 08:19:35.363641 2023-07-08 10:29:15.823768 b9d48631-55ed-44fe-ac5c-773f9e1c5d02 {"md5": "26d75f30b4c9ee08c0107a1b9b3f6a70", "pid": "033883262", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/033883262", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033883262", "source": "IDREF"}], "date_of_birth": "1940-02-06", "preferred_name": "Kalaoui, Ghassan", "country_associated": "ts", "authorized_access_point": "Kalaoui, Ghassan, 1940-....", "biographical_information": ["Titulaire d'un doctorat de 3e cycle en sciences économiques (Montpellier 1, 1988)"]} 2 -2023-07-08 08:22:00.744567 2023-07-08 10:29:19.017112 31331893-fd2e-4f71-9d09-b64056de9a54 {"md5": "2d836267f9ad1d950a50dc2545315057", "pid": "220457220", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/220457220", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/220457220", "source": "IDREF"}], "preferred_name": "Luke, Jeffrey Scott", "country_associated": "xxu", "authorized_access_point": "Luke, Jeffrey Scott"} 2 -2023-07-08 08:19:25.867518 2023-07-08 10:29:25.759603 c1e6e75e-263b-44a8-9db0-88336ffea6b9 {"md5": "babd6f9bf6cb70452ac55bcdf674389c", "pid": "030542650", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/030542650", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030542650", "source": "IDREF"}], "date_of_birth": "1936", "preferred_name": "Hocks, Richard A.", "country_associated": "xxu", "authorized_access_point": "Hocks, Richard A., 1936-....", "biographical_information": ["Professeur d'anglais à l' Université du Missouri, Columbia, où il enseigne la littérature américaine (en 1990)"]} 2 -2023-07-08 08:20:07.000287 2023-07-08 10:29:32.209097 7f5e6d73-68e5-457d-8664-47985553f3d8 {"md5": "b78529ad7184639a1fafacd0870e7e1b", "pid": "077053869", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/077053869", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077053869", "source": "IDREF"}], "date_of_birth": "1943-05-30", "preferred_name": "McLaughlin, John Adams", "country_associated": "xxu", "authorized_access_point": "McLaughlin, John Adams, 1943-....", "biographical_information": ["Directeur de la recherche et de l'évaluation pour le département de l'éducation de Virginie. Il s'intéresse à l'évaluation des politiques de l'éducation sur les enfants avec des difficultés d'apprentissage."]} 2 -2023-07-08 08:21:29.792993 2023-07-08 10:29:34.117645 498ab595-47f1-4f1f-bc8c-04bb2e104d9d {"md5": "97c2fade953e598d350753a2c978749e", "pid": "181448793", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/181448793", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/181448793", "source": "IDREF"}], "variant_name": ["Melin, Pierre"], "preferred_name": "Mélin, Pierre", "country_associated": "fr", "variant_access_point": ["Melin, Pierre"], "authorized_access_point": "Mélin, Pierre", "biographical_information": ["Titulaire du DU en Anatomie appliquée à l'implantologie (Lyon 1, 2000)"]} 2 -2023-07-08 08:21:34.170987 2023-07-08 10:29:43.743455 ed35b967-0dd3-4118-80e4-6b52056c655c {"md5": "66427f949568ecb64c0916cff90dcdec", "pid": "187474192", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["tha"], "qualifier": "อนันต์ มโนวงศ์", "identifier": "http://www.idref.fr/187474192", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/187474192", "source": "IDREF"}], "variant_name": ["พระครูพิศิษฏ์สรการ, อนันต์ มโนวงศ์", "อนันต์ มโนวงศ์", "ʿAnan Manōwong", "มโนวงศ์, อนันต์", "Manōwong, ʿAnan"], "preferred_name": "Phrakhrū Phisitsǭrakān, ʿAnan Manōwong", "country_associated": "th", "variant_access_point": ["อนันต์ มโนวงศ์", "ʿAnan Manōwong", "มโนวงศ์, อนันต์", "Manōwong, ʿAnan"], "authorized_access_point": "Phrakhrū Phisitsǭrakān, ʿAnan Manōwong", "biographical_information": ["Écrivain thaïlandais."]} 2 -2023-07-08 08:23:02.235591 2023-07-08 10:29:45.586768 30db6c2e-7ee3-4841-9540-3744c1109040 {"md5": "0b1de03a562d54e92411f5b80d7f88fb", "pid": "255241518", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/255241518", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255241518", "source": "IDREF"}], "preferred_name": "Candeal, Juan C.", "country_associated": "sp", "authorized_access_point": "Candeal, Juan C.", "biographical_information": ["Faculté d'économie et de commerce. Département d'analyse économique. Université de Saragosse, Espagne"]} 2 -2023-07-08 08:23:15.321021 2023-07-08 10:29:47.575208 cf4d7f21-1edd-4dc5-8d78-6bafe011286a {"md5": "d09ee91ca4ef8d2e7fc576c8d9b96107", "pid": "260987204", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "magistrat", "identifier": "http://www.idref.fr/260987204", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260987204", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Giraud, Benoît, magistrat", "country_associated": "fr", "authorized_access_point": "Giraud, Benoît, magistrat", "biographical_information": ["Président du tribunal judiciaire de Limoges, membre du Conseil supérieur de la magistrature (en 2022)"]} 2 -2023-07-08 08:19:54.688449 2023-07-08 10:29:53.103118 3bb64616-c407-4fb2-af6e-2fd377ad1340 {"md5": "969eeb8902618a1c28a9848d7adebdfb", "pid": "06703098X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/06703098X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/06703098X", "source": "IDREF"}], "date_of_birth": "1893", "preferred_name": "Smith, Hilrie Shelton", "country_associated": "xxu", "authorized_access_point": "Smith, Hilrie Shelton, 1893-....", "biographical_information": ["Professeur d'éducation religieuse, Duke university, Durham, N.C. (en 1960)"]} 2 -2023-07-08 08:22:48.065053 2023-07-08 10:29:54.64013 9a317e70-2786-4f50-87a4-5f09c48f53de {"md5": "d2a2dd46764d1a81200759f003bffd75", "pid": "244121095", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/244121095", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244121095", "source": "IDREF"}], "preferred_name": "Macclaskey, Marilyn H", "country_associated": "xxu", "authorized_access_point": "Macclaskey, Marilyn H"} 2 -2023-07-08 08:20:35.362887 2023-07-08 10:29:56.03555 0be3ba8e-c196-47f3-b825-748683a913aa {"md5": "93347a551054bb4e687f88874d334217", "pid": "117328383", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/117328383", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/117328383", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "196326761"}, "variant_name": ["Howard, Taubman", "Taubman, Hyman Howard", "Taubman, H. H.", "Taubman, Howard"], "date_of_birth": "1907", "date_of_death": "1996", "preferred_name": "Taubman, Hyman Howard", "country_associated": "xxu", "variant_access_point": ["Howard, Taubman", "Taubman, Hyman Howard", "Taubman, H. H.", "Taubman, Howard"], "authorized_access_point": "Taubman, Hyman Howard, 1907-1996", "biographical_information": ["Critique américain de musique, de théâtre et d'art ; écrivit pour le New York Times jusqu'en 1972."]} 2 -2023-07-08 08:21:21.022192 2023-07-08 10:29:56.931456 33617581-7e2c-43ef-b7f4-a84e8193626b {"md5": "4a4292029369f29d2ae5f43e0b116ae7", "pid": "167143565", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/167143565", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/167143565", "source": "IDREF"}], "variant_name": ["Banks, Anthony"], "date_of_birth": "1950-03-27", "preferred_name": "Banks, Tony", "country_associated": "xxk", "variant_access_point": ["Banks, Anthony"], "authorized_access_point": "Banks, Tony, 1950-....", "biographical_information": ["Claviériste, guitariste et bassiste de pop music. - Prénoms complets : Anthony George", "Lieu de naissance East Heathly (GB)"]} 2 -2023-07-08 08:20:27.613739 2023-07-08 10:30:04.935322 c4e54107-e690-4d50-9572-4c28b455a03d {"md5": "ef338a2c68d5c641b4a3962721b0beb5", "pid": "10368607X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifier": "http://www.idref.fr/10368607X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/10368607X", "source": "IDREF"}], "variant_name": ["Ivanova, Li︠u︡dmila Vladimirovna"], "preferred_name": "Ivanova, Lûdmila Vladimirovna", "country_associated": "ru", "variant_access_point": ["Ivanova, Li︠u︡dmila Vladimirovna"], "authorized_access_point": "Ivanova, Lûdmila Vladimirovna"} 2 -2023-07-08 08:20:35.096495 2023-07-08 10:30:06.728868 529c0904-a87f-444a-95e1-b41d1357ded5 {"md5": "2ead59014eafb41d63537e2eb28efdcf", "pid": "116539313", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/116539313", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/116539313", "source": "IDREF"}], "variant_name": ["Hohenberger, A."], "date_of_birth": "1888", "date_of_death": "1966", "preferred_name": "Hohenberger, Adam", "country_associated": "gw", "variant_access_point": ["Hohenberger, A."], "authorized_access_point": "Hohenberger, Adam, 1888-1966"} 2 -2023-07-08 08:19:25.380377 2023-07-08 10:30:11.381197 626d5770-f5cc-4b99-b8dc-7223be4e0fe7 {"md5": "92f19bf7e0bc8a6fb7dab347b4f1ddd5", "pid": "030415357", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/030415357", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030415357", "source": "IDREF"}], "variant_name": ["Jacobsen, Thorkild Peter Rudolph"], "date_of_birth": "1904-06-07", "date_of_death": "1993-05-02", "preferred_name": "Jacobsen, Thorkild", "country_associated": "dk", "variant_access_point": ["Jacobsen, Thorkild Peter Rudolph"], "authorized_access_point": "Jacobsen, Thorkild, 1904-1993", "biographical_information": ["Spécialiste en assyriologie et en littérature sumérienne"]} 2 -2023-07-08 08:19:15.525386 2023-07-08 10:30:14.612764 68a960ec-7846-498f-86eb-6e27a33c6c6c {"md5": "7bbba519a35e8ab7ac9957a2037c74f0", "pid": "026916134", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/026916134", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026916134", "source": "IDREF"}], "date_of_birth": "1934-05-28", "date_of_death": "2023-05-23", "preferred_name": "Haudry, Jean", "country_associated": "fr", "authorized_access_point": "Haudry, Jean, 1934-2023", "biographical_information": ["Directeur du Centre de linguistique appliquée de l'Université de Lyon III en 1987. Directeur d'études de grammaire comparée des langues indo-européennes à la IVe section de l'École pratique des hautes études en 1987"]} 2 -2023-07-08 08:21:40.440088 2023-07-08 10:30:22.301372 4c2128c9-3de5-4aac-87bb-912c5e3ec31b {"md5": "695814b4e8d31b7c1afb013734e05184", "pid": "193276348", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": true, "identifier": "http://www.idref.fr/193276348", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/193276348", "source": "IDREF"}], "preferred_name": "Convegno di studi sulla figura, sull'opera e sull'attualità di Francesco Domenico Falcucci", "country_associated": "it", "date_of_termination": "2004", "date_of_establishment": "2004", "authorized_access_point": "Convegno di studi sulla figura, sull'opera e sull'attualità di Francesco Domenico Falcucci (2002 ; Laerru)"} 2 -2023-07-08 08:22:48.561065 2023-07-08 10:30:23.999951 44b72ced-8813-449a-a0de-64e90a2ac56d {"md5": "6624ce7b679c30e20d465b8b31e57c43", "pid": "244233403", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/244233403", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244233403", "source": "IDREF"}], "preferred_name": "Bahti, Mark", "country_associated": "xxu", "authorized_access_point": "Bahti, Mark"} 2 -2023-07-08 08:22:58.072065 2023-07-08 10:30:25.655077 fcf9364d-9246-4350-8c84-52550fa4e0d8 {"md5": "10e252291b4b55669551a7c3949a66b2", "pid": "253143462", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["lit"], "identifier": "http://www.idref.fr/253143462", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/253143462", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Aviženis, Jūra", "country_associated": "li", "authorized_access_point": "Aviženis, Jūra, 19..-....", "biographical_information": ["Traduit du lituanien à l'anglais"]} 2 -2023-07-08 08:23:03.566318 2023-07-08 10:30:26.87932 392cffe3-3d93-4f4f-be6c-70d9bde6fa5b {"md5": "ae5176223cb885fe5021c613bf2d6484", "pid": "255923058", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/255923058", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255923058", "source": "IDREF"}], "variant_name": ["Tirch, Laura R. Silberstein-"], "date_of_birth": "19XX", "preferred_name": "Silberstein-Tirch, Laura R.", "country_associated": "xxu", "variant_access_point": ["Tirch, Laura R. Silberstein-"], "authorized_access_point": "Silberstein-Tirch, Laura R., 19..-....", "biographical_information": ["Docteure en psychologie"]} 2 -2023-07-08 08:19:43.757724 2023-07-08 10:30:30.286959 7aa85e3a-8b07-4868-825e-fb6c65e35746 {"md5": "fb3ab8f034ca9a539ed3c547e666c175", "pid": "050709585", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifier": "http://www.idref.fr/050709585", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050709585", "source": "IDREF"}], "date_of_birth": "1952", "preferred_name": "Baldi, Marialuisa", "country_associated": "it", "authorized_access_point": "Baldi, Marialuisa, 1952-....", "biographical_information": ["Professeur au Département de philosophie de l'Université de Milan (en 2000). Collabore à la \\"Rivista di storia della filosofia"]} 2 -2023-07-08 08:21:41.220346 2023-07-08 10:30:32.762216 bf64075f-d1d1-4ef3-b589-8b25925f0f72 {"md5": "b4b6ec3882a26915687f6537a5c1c688", "pid": "193809699", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/193809699", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/193809699", "source": "IDREF"}], "preferred_name": "Roche, Cristal de", "authorized_access_point": "Roche, Cristal de"} 2 -2023-07-08 08:22:31.083316 2023-07-08 10:30:38.150374 336494a6-42b5-4b37-9ea3-41ff558e182e {"md5": "aca8572c873c2535ba08099a70bcfb05", "pid": "237851539", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["nor"], "identifier": "http://www.idref.fr/237851539", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/237851539", "source": "IDREF"}], "date_of_birth": "1951", "preferred_name": "Bardal, Kjell Erling", "country_associated": "no", "authorized_access_point": "Bardal, Kjell Erling, 1951-....", "biographical_information": ["Romancier norvégien"]} 2 -2023-07-08 08:20:21.596535 2023-07-08 10:30:39.304812 594546bb-ba58-46c5-912f-faea5d97c542 {"md5": "a75cbbe94cca4c565d8a4d6b3c694d42", "pid": "088404587", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/088404587", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/088404587", "source": "IDREF"}], "variant_name": ["With, Hans Joachim de"], "preferred_name": "With, Hans de", "variant_access_point": ["With, Hans Joachim de"], "authorized_access_point": "With, Hans de", "biographical_information": ["Juriste", "Avocat (Bamberg, Allemagne)"]} 2 -2023-07-08 08:19:35.207136 2023-07-08 10:30:44.204202 7dfa95a7-2bb5-42c1-b702-5bf2659f4dc4 {"md5": "f29406085706cc266a1d9ac538c84bad", "pid": "03386540X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/03386540X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03386540X", "source": "IDREF"}], "variant_name": ["Hallett, Penelope Hugues-"], "preferred_name": "Hugues-Hallett, Penelope", "country_associated": "xxk", "variant_access_point": ["Hallett, Penelope Hugues-"], "authorized_access_point": "Hugues-Hallett, Penelope", "biographical_information": ["Professeur de littérature anglaise à Oxford, spécialiste de littérature enfantine du XIXe siècle (en 1994)"]} 2 -2023-07-08 10:22:55.384225 2023-07-08 10:30:45.491023 6d847d8e-7262-42bc-bc5f-2fc6f90f111d {"md5": "ac21ed163eeb967aa7b40749cabd6de7", "pid": "260328065", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["hun"], "identifier": "http://www.idref.fr/260328065", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260328065", "source": "IDREF"}], "date_of_birth": "1883", "date_of_death": "1976", "preferred_name": "Bihari, Mór", "authorized_access_point": "Bihari, Mór, 1883-1976", "biographical_information": ["Instituteur hongrois, membre influent du Syndicat des enseignants. Un des responsables de la politique éducative de la République des Conseils (en 1919)."]} 2 -2023-07-08 08:22:47.116032 2023-07-08 10:30:50.740751 b5244c2a-d1e9-4055-b3c6-edb1b1c73905 {"md5": "afaa247c46413bbc959c277c26178733", "pid": "244049882", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifier": "http://www.idref.fr/244049882", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244049882", "source": "IDREF"}], "preferred_name": "Timchenko, Irina Petrovna", "authorized_access_point": "Timchenko, Irina Petrovna"} 2 -2023-07-08 08:22:35.333766 2023-07-08 10:31:01.860982 51f8508e-752f-489d-8e9a-a0a740ab3898 {"md5": "6418c6cb464b1c50dde45eb01f37dbe7", "pid": "241375908", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifier": "http://www.idref.fr/241375908", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/241375908", "source": "IDREF"}], "variant_name": ["Medina, Silvina Álvarez"], "preferred_name": "Álvarez Medina, Silvina", "country_associated": "sp", "variant_access_point": ["Medina, Silvina Álvarez"], "authorized_access_point": "Álvarez Medina, Silvina", "biographical_information": ["Juriste."]} 2 -2023-07-08 08:21:28.602882 2023-07-08 10:31:06.331896 16b34a76-4634-45cc-b085-6bee3ef54517 {"md5": "3b978a0ad4161f1a18771473637e5335", "pid": "179358103", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifier": "http://www.idref.fr/179358103", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/179358103", "source": "IDREF"}], "date_of_birth": "1948", "preferred_name": "Markham, Adam", "authorized_access_point": "Markham, Adam, 1948"} 2 -2023-07-08 08:19:23.048385 2023-07-08 10:31:07.70965 815d9798-7685-41f1-87d1-c659cb5693c6 {"md5": "816cd847ecfc2d5da4c80da265de3000", "pid": "02982480X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/02982480X", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02982480X", "source": "IDREF"}], "date_of_birth": "1941", "preferred_name": "Novak, David", "country_associated": "xxu", "authorized_access_point": "Novak, David, 1941-....", "biographical_information": ["Professeur d'études modernes judai͏̈ques à l'University of Virginia, Charlottesville, USA (en 1995)"]} 2 -2023-07-08 08:19:55.645871 2023-07-08 10:31:09.902245 e332c9c6-c7ad-4fdb-9d01-7d1cfe14ea5f {"md5": "c5c0b73813a355284e783b11c415e45a", "pid": "067174299", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/067174299", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/067174299", "source": "IDREF"}], "variant_name": ["Westbrook, J.H."], "date_of_birth": "1924", "preferred_name": "Westbrook, Jack Hall", "variant_access_point": ["Westbrook, J.H."], "authorized_access_point": "Westbrook, Jack Hall, 1924-....", "biographical_information": ["Spécialiste des matériaux. - En poste : Brookline technologies, Ballstone Spa, N.Y. (en 1998)"]} 2 -2023-07-08 08:20:46.308914 2023-07-08 10:31:11.844893 393a40b4-791b-4258-8c1e-f6e322bafe37 {"md5": "fa9a8a3bb0a7a29ed8ca948fc332aa45", "pid": "132740966", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita", "eng"], "identifier": "http://www.idref.fr/132740966", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/132740966", "source": "IDREF"}], "preferred_name": "Valloni, Renzo", "authorized_access_point": "Valloni, Renzo"} 2 -2023-07-08 08:20:20.365783 2023-07-08 10:31:14.333885 8685bd3d-1b94-4df5-b878-ac0be88f6d05 {"md5": "d2b4bbd9433eb29fc6ce1fafe08f4121", "pid": "087470659", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/087470659", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/087470659", "source": "IDREF"}], "date_of_birth": "1904", "date_of_death": "1988", "preferred_name": "Hutton, Graham", "authorized_access_point": "Hutton, Graham, 1904-1988"} 2 -2023-07-08 08:20:54.94042 2023-07-08 10:31:15.22317 d3062e6c-a1bc-4dec-bac4-2b40b8bfbeb4 {"md5": "995b9396ae93e752056a734ff716fadf", "pid": "140317414", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "ger"], "identifier": "http://www.idref.fr/140317414", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/140317414", "source": "IDREF"}], "date_of_birth": "1891", "date_of_death": "1990", "preferred_name": "Rosenthal-Schneider, Ilse", "country_associated": "gw", "authorized_access_point": "Rosenthal-Schneider, Ilse, 1891-1990", "biographical_information": ["Professeur d'histoire et de philosophie des sciences à l'université de Syndey (à partir de 1945). Docteur en philsophie en en physique de l'université de Berlin (en 1920)"]} 2 -2023-07-08 08:21:36.583661 2023-07-08 10:31:17.004729 52bfed24-2d9a-4cae-8468-3cfe61c5e0e1 {"md5": "0538fad09e7db7e558620fb97ed55022", "pid": "190401370", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/190401370", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/190401370", "source": "IDREF"}], "preferred_name": "Droniou, Claire", "country_associated": "fr", "authorized_access_point": "Droniou, Claire"} 2 -2023-07-08 08:21:39.954978 2023-07-08 10:31:17.375927 a40c7cf2-e8c1-47b0-a7d7-4d983ee211c7 {"md5": "2a010a9b19cd8491c2bd4f9609bd6738", "pid": "193161109", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "fre"], "identifier": "http://www.idref.fr/193161109", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/193161109", "source": "IDREF"}], "variant_name": ["Thériault, Claudia M.", "Whalen, Claudia M. Thériault"], "preferred_name": "Thériault-Whalen, Claudia M.", "country_associated": "fr", "variant_access_point": ["Thériault, Claudia M.", "Whalen, Claudia M. Thériault"], "authorized_access_point": "Thériault-Whalen, Claudia M.", "biographical_information": ["Doctorat à l' université René Descartes à Paris V, professeure au département de psychologie à l'université Saint Thomas, Frédéricton au Canada (1993)"]} 2 -2023-07-08 08:21:42.802073 2023-07-08 10:31:18.478064 64a61f3c-f9b4-4dc7-b3d9-370bc860af5f {"md5": "8d0ba3d95df5d8ccb129a8f7afdad945", "pid": "195226267", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/195226267", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/195226267", "source": "IDREF"}], "preferred_name": "Chartier, J.-Jacques", "country_associated": "fr", "authorized_access_point": "Chartier, J.-Jacques"} 2 -2023-07-08 08:22:15.890506 2023-07-08 10:31:21.936029 c6a7c6a5-16c3-4763-bad2-423bc438b59c {"md5": "657cb60acb506d588f0fa6e0a1103bfc", "pid": "230663338", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/230663338", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230663338", "source": "IDREF"}], "preferred_name": "Sow-Mbaye, Sainabou", "country_associated": "fr", "authorized_access_point": "Sow-Mbaye, Sainabou", "biographical_information": ["Auteur d'une thèse en Droit à Paris 2"]} 2 -2023-07-08 08:22:32.735071 2023-07-08 10:31:22.372304 f2ebb20c-0a2f-41ee-ba0e-c7c46373a191 {"md5": "2a2fcb648f396947ddce23117ecef3ee", "pid": "240238117", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifier": "http://www.idref.fr/240238117", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240238117", "source": "IDREF"}], "variant_name": ["De Villaine, Hortense"], "preferred_name": "Villaine, Hortense de", "country_associated": "fr", "variant_access_point": ["De Villaine, Hortense"], "authorized_access_point": "Villaine, Hortense de", "biographical_information": ["Doctorante en philosophie (2019). Auteure d'une thèse en Philosophie à Paris Nanterre en 2020"]} 2 -2023-07-08 08:19:23.400109 2023-07-08 10:31:28.130392 8a6986c3-2f32-4901-9a7a-7f1b2e8f5ec2 {"md5": "2a6161c0a9b66228973405f14ddfc3f2", "pid": "029924480", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/029924480", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029924480", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "125209991"}, "variant_name": ["Steinbrügge, Liselotte"], "date_of_birth": "1953", "preferred_name": "Steinbrügge, Liselotte", "country_associated": "gw", "variant_access_point": ["Steinbrügge, Liselotte"], "authorized_access_point": "Steinbrügge, Liselotte, 1953-....", "biographical_information": ["Enseignante en littérature française. Professeur de philologie romaine. En poste à la Freie Universität Berlin (en 1995)"]} 2 -2023-07-08 08:19:44.702758 2023-07-08 10:31:36.599351 d104066f-83b3-4ad4-946d-e6ff663a6c06 {"md5": "969c3bf3c7183cca6e7e3360ae727768", "pid": "052470989", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifier": "http://www.idref.fr/052470989", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/052470989", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "12138540X"}, "date_of_birth": "1959", "preferred_name": "Schönwälder, Karen", "country_associated": "gw", "authorized_access_point": "Schönwälder, Karen, 1959-....", "biographical_information": ["Maître de conférences en histoire allemande, School of Slavonic and East European studies, University of London (de 1992 à 1997). Dirige un groupe de recherche à l'Institut Max Planck en Etudes Religieuses et Diversité Ethnique. Enseigne à l'Université de Göttigen."]} 2 -2023-07-08 08:21:31.394644 2023-07-08 10:31:40.34103 86ca0425-018d-4741-b15f-5df116a07fb4 {"md5": "d2c523bd2d2b3aa6f3007a16fa77af31", "pid": "183544129", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifier": "http://www.idref.fr/183544129", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/183544129", "source": "IDREF"}], "date_of_birth": "1912", "date_of_death": "1982", "preferred_name": "Taylor, Duncan Burnett", "country_associated": "xxk", "authorized_access_point": "Taylor, Duncan Burnett, 1912-1982", "biographical_information": ["Spécialiste de l'histoire de l'Angleterre"]} 2 +2024-09-11 09:03:46.806562 2024-09-11 09:03:46.806566 5d2667b5-2c5b-400b-a3b1-05de53f4c85b {"md5": "d885a43385b3eb4848a8798c7db16421", "pid": "026361477", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026361477", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "027643239"}, "variant_name": ["Epinal. Bibliothèque municipale"], "preferred_name": "Bibliothèque municipale (Epinal)", "country_associated": "fr", "variant_access_point": ["Epinal. Bibliothèque municipale"], "authorized_access_point": "Bibliothèque municipale (Epinal)", "biographical_information": ["2 rue de Nancy, 88025 Epinal Cedex"]} 1 +2024-09-11 09:03:46.876059 2024-09-11 09:03:46.876063 873d61b4-9c1c-4e9a-b11d-7dc201680f6e {"md5": "fb13ef8a9e34777c8b231cb3d00c8dcb", "pid": "026366231", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026366231", "source": "IDREF"}], "variant_name": ["CRESAS", "Institut national de recherche pédagogique (France). Centre de recherche de l'éducation spécialisée et de l'adaptation scolaire", "Section de recherche de l'éducation spécialisée et de l'adaptation scolaire", "SRESAS"], "preferred_name": "Centre de recherche de l'éducation spécialisée et de l'adaptation scolaire (Paris)", "country_associated": "fr", "variant_access_point": ["CRESAS", "Institut national de recherche pédagogique (France). Centre de recherche de l'éducation spécialisée et de l'adaptation scolaire", "Section de recherche de l'éducation spécialisée et de l'adaptation scolaire", "SRESAS"], "authorized_access_point": "Centre de recherche de l'éducation spécialisée et de l'adaptation scolaire (Paris)", "biographical_information": ["29 rue d'Ulm, 75230 Paris Cedex"]} 1 +2024-09-11 09:03:46.936044 2024-09-11 09:03:46.936047 83245cfe-42ea-447a-873e-0dc3a8e34c9c {"md5": "fe8c5c506410fdfa12e0e5a255b87816", "pid": "026393190", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026393190", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "027608328"}, "variant_name": ["Musée Antoine Bourdelle (Paris)", "Paris. Musée Bourdelle"], "preferred_name": "Musée Bourdelle (Paris, France)", "country_associated": "fr", "variant_access_point": ["Musée Antoine Bourdelle (Paris)", "Paris. Musée Bourdelle"], "date_of_establishment": "1949", "authorized_access_point": "Musée Bourdelle (Paris, France)", "biographical_information": ["16 rue Antoine-Bourdelle, 75015 Paris"]} 1 +2024-09-11 09:03:47.001659 2024-09-11 09:03:47.001664 3a9b9f39-2d30-4fff-a5b5-6e8b70774d60 {"md5": "a5c92592f382f97891d1d3559efb5c8e", "pid": "026398257", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026398257", "source": "IDREF"}], "preferred_name": "Philadelphie (Pa.)", "country_associated": "xxu", "parallel_access_point": ["Philadelphia (Pa.)"], "authorized_access_point": "Philadelphie (Pa.)"} 1 +2024-09-11 09:03:47.060927 2024-09-11 09:03:47.060931 7322a145-7da9-4b20-8595-d9e6f8295c37 {"md5": "b45e428778c7c764741a478e1f51aa2f", "pid": "026403161", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026403161", "source": "IDREF"}], "variant_name": ["Université Paul Cézanne-Aix-Marseille III. Faculté d'économie appliquée", "Faculté d'économie appliquée d'Aix-Marseille"], "preferred_name": "Université Paul Cézanne (Aix-Marseille). Faculté d'économie appliquée", "country_associated": "fr", "variant_access_point": ["Université Paul Cézanne-Aix-Marseille III. Faculté d'économie appliquée", "Faculté d'économie appliquée d'Aix-Marseille"], "authorized_access_point": "Université Paul Cézanne (Aix-Marseille). Faculté d'économie appliquée", "biographical_information": ["3 av. Robert Schuman, 13628 Aix-en-Provence Cedex"]} 1 +2024-09-11 09:03:47.114223 2024-09-11 09:03:47.114226 bca81253-a399-44ae-8aa2-70ebab289629 {"md5": "ae6abee607fef5fbc1b059779394e5a1", "pid": "026408805", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026408805", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "151875030"}, "variant_name": ["Ecole nationale supérieure des mines (Paris). Centre de gestion scientifique", "ENSMP CGS", "ENSMP. CGS", "CGS (Paris)"], "preferred_name": "Centre de gestion scientifique (Paris)", "country_associated": "fr", "variant_access_point": ["Ecole nationale supérieure des mines (Paris). Centre de gestion scientifique", "ENSMP CGS", "ENSMP. CGS", "CGS (Paris)"], "date_of_establishment": "1967", "authorized_access_point": "Centre de gestion scientifique (Paris)", "biographical_information": ["60 bd Saint-Michel, 75006 Paris", "Centre fondé en 1967"]} 1 +2024-09-11 09:03:47.208836 2024-09-11 09:03:47.20884 dc3a3faf-5b3e-4fab-9f30-55218caec444 {"md5": "2745e52eb17281123e102c148098aa15", "pid": "026418460", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026418460", "source": "IDREF"}], "variant_name": ["Pontifical institute of Christian archaeology"], "preferred_name": "Pontificio istituto di archeologia cristiana", "country_associated": "vc", "variant_access_point": ["Pontifical institute of Christian archaeology"], "date_of_establishment": "1925", "parallel_access_point": ["Pontificium institutum archeologiae christianae"], "authorized_access_point": "Pontificio istituto di archeologia cristiana", "biographical_information": ["Via Napoleone III 1, 00185 Rome"]} 1 +2024-09-11 09:03:47.266248 2024-09-11 09:03:47.266253 098e86cf-b5c2-4bd3-bbd4-95b2e1f41005 {"md5": "76aa5bef91dfbb4864ecb22f791f89b8", "pid": "026428636", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026428636", "source": "IDREF"}], "preferred_name": "Union des syndicats et coopératives de vente de lait du châtillonnais (Côte-d'Or)", "country_associated": "fr", "authorized_access_point": "Union des syndicats et coopératives de vente de lait du châtillonnais (Côte-d'Or)", "biographical_information": ["3 route de Dijon, 21150 Les Laumes"]} 1 +2024-09-11 09:03:49.499299 2024-09-11 09:03:49.499303 da53e0f7-bee7-4109-872f-6eb27b6130e8 {"md5": "a64ca23a02c4a35a60e45a753a243f31", "pid": "02700273X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02700273X", "source": "IDREF"}], "date_of_birth": "1928", "date_of_death": "2004-05-13", "preferred_name": "Mainié, Philippe", "country_associated": "fr", "authorized_access_point": "Mainié, Philippe, 1928-2004"} 1 +2024-09-11 09:03:47.320538 2024-09-11 09:03:47.320545 bd7d8904-7040-4745-be39-3244a8352539 {"md5": "6ed107eebd3eac59ffa9cfc47ea94a74", "pid": "026430746", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026430746", "source": "IDREF"}], "variant_name": ["Università degli studi di Salerno", "Università di Salerno", "University of Salerno", "Université de Salerne"], "preferred_name": "Università degli studi (Salerne, Italie)", "country_associated": "it", "variant_access_point": ["Università degli studi di Salerno", "Università di Salerno", "University of Salerno", "Université de Salerne"], "date_of_establishment": "1970", "authorized_access_point": "Università degli studi (Salerne, Italie)"} 1 +2024-09-11 09:03:47.374408 2024-09-11 09:03:47.374412 ed3acbd9-c8fd-43b9-a149-31e0e89610af {"md5": "72e74dcb4efa1dfd640daf17137ccc3b", "pid": "026446278", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026446278", "source": "IDREF"}], "variant_name": ["EDIS", "E.D.I.S"], "preferred_name": "Equipo de investigación sociologica (Madrid)", "country_associated": "sp", "variant_access_point": ["EDIS", "E.D.I.S"], "authorized_access_point": "Equipo de investigación sociologica (Madrid)"} 1 +2024-09-11 09:03:47.431857 2024-09-11 09:03:47.431861 2c7144fd-0eb9-42d8-8883-50f2a84eb6a2 {"md5": "4d5a2d1e6fbef5f4434ef5efe59d2986", "pid": "026450038", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026450038", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "02924806X"}, "variant_name": ["FFC", "Francas", "Fédération nationale lai͏̈que des centres de loisirs éducatifs pour l'enfance et l'adolescence (France)", "Fédération des francs et franches camarades (France)", "Fédération nationale des patronages lai͏̈ques et des centres aérés (France)"], "preferred_name": "Francs et franches camarades (France)", "country_associated": "fr", "variant_access_point": ["FFC", "Francas", "Fédération nationale lai͏̈que des centres de loisirs éducatifs pour l'enfance et l'adolescence (France)", "Fédération des francs et franches camarades (France)", "Fédération nationale des patronages lai͏̈ques et des centres aérés (France)"], "date_of_establishment": "1944", "authorized_access_point": "Francs et franches camarades (France)", "biographical_information": ["10-14 rue Tolain, 75020 Paris"]} 1 +2024-09-11 09:03:47.484616 2024-09-11 09:03:47.484621 4044ff78-6cda-4fa0-b1d5-5ba1a7371ce7 {"md5": "c978de77f2cf996333d76c4bf8d75d20", "pid": "026452057", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026452057", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "086021192"}, "variant_name": ["GRET", "Groupe de recherches et d'échanges technologiques", "Research and technological exchange group"], "preferred_name": "Groupe de recherche et d'échanges technologiques (Paris)", "variant_access_point": ["GRET", "Groupe de recherches et d'échanges technologiques", "Research and technological exchange group"], "date_of_establishment": "1976", "authorized_access_point": "Groupe de recherche et d'échanges technologiques (Paris)", "biographical_information": ["Fondé par d'anciens coopérants français dans le Tiers-monde", "Adresse : 211-213 rue La Fayette, 75010 Paris"]} 1 +2024-09-11 09:03:47.542637 2024-09-11 09:03:47.542642 bd1f15ae-2806-402b-aa8d-aec51c7e685f {"md5": "37a2362ddc3b2206333a790789d99e68", "pid": "026471396", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026471396", "source": "IDREF"}], "variant_name": ["BPROP"], "preferred_name": "Banque populaire de la région ouest de Paris", "country_associated": "fr", "variant_access_point": ["BPROP"], "date_of_establishment": "1919", "authorized_access_point": "Banque populaire de la région ouest de Paris", "biographical_information": ["9 Av. Newton, 78183 Saint-Quentin-en-Yvelines Cedex"]} 1 +2024-09-11 09:03:47.605518 2024-09-11 09:03:47.605521 d0c81c2d-4619-49a8-a951-0ce22b057631 {"md5": "e48ed73d6c622d4d84b05f6e990d217a", "pid": "026483157", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026483157", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "027230716"}, "variant_name": ["CGIL", "Confédération générale italienne du travail"], "preferred_name": "Confederazione generale italiana del lavoro (Italie, 1944-...)", "country_associated": "it", "variant_access_point": ["CGIL", "Confédération générale italienne du travail"], "date_of_establishment": "1944-06-03", "authorized_access_point": "Confederazione generale italiana del lavoro (Italie, 1944-...)", "biographical_information": ["Confédération syndicale qui succède après guerre à la Confederazione generale del lavoro (1906-1926) en remplacement des organisations syndicales fascistes. Fondée en juin 1944 comme centrale unique (Patto di Roma entre le PCI, la DC et le PSI), la CGIL est démembrée à partir d'août 1948 (création de la CISL (Confederazione italiana sindacati lavoratori) et de l'UIL (Unione italiana del lavoro) en 1950) et demeurera dès lors communiste"]} 1 +2024-09-11 09:03:47.658392 2024-09-11 09:03:47.658396 61b69120-071d-4b0d-ae31-9a7d15b24e29 {"md5": "9be5c1db5f58de84cb4aee5e1967f702", "pid": "026488582", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026488582", "source": "IDREF"}], "variant_name": ["INA"], "preferred_name": "Institut national de la communication audiovisuelle (France; 1982-1986)", "country_associated": "fr", "date_of_termination": "1986-09-30", "variant_access_point": ["INA"], "date_of_establishment": "1982-07-29", "authorized_access_point": "Institut national de la communication audiovisuelle (France; 1982-1986)", "biographical_information": ["Etablissement public à caractère industriel et commercial créé par la loi du 29 juillet 1982", "4 av. de l'Europe, 94360 Bry-sur-Marne"]} 1 +2024-09-11 09:03:47.71354 2024-09-11 09:03:47.713544 4506dcc7-6cfc-4a43-a5fd-047eb8fd09a4 {"md5": "7bad7c6f7d6d5c083096a98a0125f29b", "pid": "026501228", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026501228", "source": "IDREF"}], "variant_name": ["Bompiani e compagnia (Milan)"], "preferred_name": "Bompiani", "country_associated": "it", "variant_access_point": ["Bompiani e compagnia (Milan)"], "date_of_establishment": "1929", "authorized_access_point": "Bompiani", "biographical_information": ["Maison d'édition fondée par Valentino Bompiani"]} 1 +2024-09-11 09:03:47.769498 2024-09-11 09:03:47.769502 9553bc92-0788-40b7-898f-b0025479cf32 {"md5": "29f8b4ffd22fb2172b6d580247e11176", "pid": "026524759", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026524759", "source": "IDREF"}], "variant_name": ["EPI", "Enseignement public et informatique (France)", "Association EPI"], "preferred_name": "Association Enseignement public et informatique (France)", "country_associated": "fr", "variant_access_point": ["EPI", "Enseignement public et informatique (France)", "Association EPI"], "authorized_access_point": "Association Enseignement public et informatique (France)", "biographical_information": ["Association loi 1901", "13 rue du Jura, 75013 Paris. Secrétariat : 1 av. Pierre Corneille, 78170 La Celle Saint-Cloud"]} 1 +2024-09-11 09:03:47.82772 2024-09-11 09:03:47.827725 0e4b27df-feaf-4e09-a216-58b75252c673 {"md5": "90fa539017bc7038103f771076315bfa", "pid": "026526980", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026526980", "source": "IDREF"}], "variant_name": ["Groupe de travail sur la description bibliographique internationale normalisée générale", "Fédération internationale des associations de bibliothécaires et des bibliothèques. Grup de treball sobre la descripció bibliogràfica normalitzado internacional general", "Fédération internationale des associations de bibliothécaires et des bibliothèques. Working group on the general international standard bibliographic description", "Fédération internationale des associations de bibliothécaires et des bibliothèques. Section on cataloguing. Groupe de travail sur la description bibliographique internationale normalisée générale"], "preferred_name": "Fédération internationale des associations de bibliothécaires et des bibliothèques. Groupe de travail sur la description bibliographique internationale normalisée générale", "variant_access_point": ["Groupe de travail sur la description bibliographique internationale normalisée générale", "Fédération internationale des associations de bibliothécaires et des bibliothèques. Grup de treball sobre la descripció bibliogràfica normalitzado internacional general", "Fédération internationale des associations de bibliothécaires et des bibliothèques. Working group on the general international standard bibliographic description", "Fédération internationale des associations de bibliothécaires et des bibliothèques. Section on cataloguing. Groupe de travail sur la description bibliographique internationale normalisée générale"], "authorized_access_point": "Fédération internationale des associations de bibliothécaires et des bibliothèques. Groupe de travail sur la description bibliographique internationale normalisée générale"} 1 +2024-09-11 09:03:47.892733 2024-09-11 09:03:47.892737 320461b4-594d-4ec2-86b3-71b67a136d12 {"md5": "bf104a5b29987efe6d34c84ad1b21e9e", "pid": "026528290", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026528290", "source": "IDREF"}], "variant_name": ["FFN", "IFN", "Fondation française de la nutrition", "Fondation française pour la nutrition"], "preferred_name": "Institut français pour la nutrition", "country_associated": "fr", "variant_access_point": ["FFN", "IFN", "Fondation française de la nutrition", "Fondation française pour la nutrition"], "authorized_access_point": "Institut français pour la nutrition", "biographical_information": ["En janvier 1992, la Fondation française pour la nutrition devient l'Institut français pour la nutrition", "71 av. Victor Hugo, 75116 Paris. Tél.45.00.92.50"]} 1 +2024-09-11 09:03:47.946699 2024-09-11 09:03:47.946701 109340bf-8841-41ee-ba15-96ec8b65dec5 {"md5": "3507406825d025c842a7fb8bb39096ac", "pid": "026529890", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026529890", "source": "IDREF"}], "variant_name": ["Ville de Pointe-à-Pitre (Guadeloupe)", "Mairie de Pointe-à-Pitre (Guadeloupe)"], "preferred_name": "Pointe-à-Pitre (Guadeloupe)", "country_associated": "gp", "variant_access_point": ["Ville de Pointe-à-Pitre (Guadeloupe)", "Mairie de Pointe-à-Pitre (Guadeloupe)"], "authorized_access_point": "Pointe-à-Pitre (Guadeloupe)", "biographical_information": ["97110 Pointe-à-Pitre"]} 1 +2024-09-11 09:03:48.004695 2024-09-11 09:03:48.004699 68e629ee-1fa6-4420-beee-1747c52ba928 {"md5": "192ff6d54dec8170037e697a95c9ff80", "pid": "026530538", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026530538", "source": "IDREF"}], "variant_name": ["France. Ministère de l'équipement. Service des affaires économiques et internationales"], "preferred_name": "France. Service des affaires économiques et internationales", "country_associated": "fr", "variant_access_point": ["France. Ministère de l'équipement. Service des affaires économiques et internationales"], "authorized_access_point": "France. Service des affaires économiques et internationales"} 1 +2024-09-11 09:03:48.06605 2024-09-11 09:03:48.066055 badcc0ba-ddd6-4789-b1bb-edc61171e48c {"md5": "4378d47aa3b36dc10dc6b1a4947aa3ec", "pid": "026536625", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026536625", "source": "IDREF"}], "variant_name": ["IRSA"], "preferred_name": "Institut de recherches sociologiques appliquées (Paris)", "country_associated": "fr", "variant_access_point": ["IRSA"], "authorized_access_point": "Institut de recherches sociologiques appliquées (Paris)", "biographical_information": ["37 rue Etienne-Marcel, 75001 Paris (en 1975)"]} 1 +2024-09-11 09:03:48.122612 2024-09-11 09:03:48.122617 f96e2b89-655b-4adb-9cf5-3fa5fa08b01c {"md5": "2c2f29483e5536063026fe44cd6d6a33", "pid": "02654606X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02654606X", "source": "IDREF"}], "variant_name": ["Musée Charles Crozatier (Le Puy-en-Velay)", "Musée du Puy", "Le Puy-en-Velay. Musée Crozatier"], "preferred_name": "Musée Crozatier (Le Puy-en-Velay)", "country_associated": "fr", "variant_access_point": ["Musée Charles Crozatier (Le Puy-en-Velay)", "Musée du Puy", "Le Puy-en-Velay. Musée Crozatier"], "date_of_establishment": "1820", "authorized_access_point": "Musée Crozatier (Le Puy-en-Velay)", "biographical_information": ["Jardin Vinay, 43000 Le Puy"]} 1 +2024-09-11 09:03:48.178913 2024-09-11 09:03:48.178917 a9354150-3c51-4bbd-9799-ceb7a8bcf1ed {"md5": "683516040ada12b8344529749578db57", "pid": "02654637X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02654637X", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "028202848"}, "variant_name": ["La Rochelle. Musée d'Orbigny-Bernon"], "preferred_name": "Musée d'Orbigny-Bernon (La Rochelle)", "country_associated": "fr", "variant_access_point": ["La Rochelle. Musée d'Orbigny-Bernon"], "date_of_establishment": "1917", "authorized_access_point": "Musée d'Orbigny-Bernon (La Rochelle)", "biographical_information": ["2 rue Saint-Côme, 17000 La Rochelle"]} 1 +2024-09-11 09:03:49.367587 2024-09-11 09:03:49.367592 648215f1-3d6b-4f92-81e9-2c2f56d593d2 {"md5": "7ca09094759a050beb67d253b1b7c571", "pid": "026994801", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026994801", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "078621461"}, "variant_name": ["Jacob, Bernard Lortat-"], "date_of_birth": "1941-01-01", "preferred_name": "Lortat-Jacob, Bernard", "country_associated": "fr", "variant_access_point": ["Jacob, Bernard Lortat-"], "authorized_access_point": "Lortat-Jacob, Bernard, 1941-....", "biographical_information": ["Ethnomusicologue. Directeur de recherche au CNRS et responsable du Laboratoire d'ethnomusicologie CBRS du Musée de l'homme, Paris (en 2001)"]} 1 +2024-09-11 09:03:48.238571 2024-09-11 09:03:48.238576 38692305-ffdc-4da7-b45d-b748eeaf08c5 {"md5": "d073639d875246eec99397cfa57eae05", "pid": "026561328", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026561328", "source": "IDREF"}], "variant_name": ["SMF"], "preferred_name": "Société mycologique de France", "country_associated": "fr", "variant_access_point": ["SMF"], "date_of_establishment": "1884", "authorized_access_point": "Société mycologique de France", "biographical_information": ["Association à but non lucratif, fondée en 1884, régie par la loi du 1er juillet 1901, déclarée d’utilité publique par décret du 20 mars 1929. La Société mycologique de France a pour objectifs d'accroître et de diffuser les connaissances relatives aux champignons, et de prévenir les intoxications de type mycétisme (consécutives à l’ingestion de macromycètes toxiques). Elle publie le \\"Bulletin trimestriel de la Société mycologique de France\\" (depuis 1885)", "Adresse postale : 20, rue Rottembourg, 75012 Paris (en 2015)", "Ancienne adresse : 36 rue Geoffroy-Saint-Hilaire, 75005 Paris"]} 1 +2024-09-11 09:03:48.305002 2024-09-11 09:03:48.305006 ce92c130-bff1-4674-af3b-d6640d2dfd38 {"md5": "3e9b33c1617fbfc29558e1e6da2a174e", "pid": "026562170", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026562170", "source": "IDREF"}], "variant_name": ["Musées de Strasbourg", "Musées de la Ville de Strasbourg"], "preferred_name": "Strasbourg. Direction des musées", "country_associated": "fr", "variant_access_point": ["Musées de Strasbourg", "Musées de la Ville de Strasbourg"], "authorized_access_point": "Strasbourg. Direction des musées", "biographical_information": ["5 pl. du Château, 67000 Strasbourg"]} 1 +2024-09-11 09:03:48.360775 2024-09-11 09:03:48.360779 0c76f16e-ee07-4289-ba80-c94c8cc24ec7 {"md5": "bcc65ef29731bb7e0ee2547b8a9c91b1", "pid": "02656453X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02656453X", "source": "IDREF"}], "variant_name": ["EMF", "Eglises méthodistes de France", "Union des églises évangéliques méthodistes de France"], "preferred_name": "Union des associations cultuelles évangéliques des églises méthodistes de France", "country_associated": "fr", "variant_access_point": ["EMF", "Eglises méthodistes de France", "Union des églises évangéliques méthodistes de France"], "authorized_access_point": "Union des associations cultuelles évangéliques des églises méthodistes de France", "biographical_information": ["3 rue Saint-Dominique, 30000 Nîmes"]} 1 +2024-09-11 09:03:48.425255 2024-09-11 09:03:48.42526 c22c6364-ad89-449b-8f86-da27e8f67d7b {"md5": "37890742687134b1b3c086bb7eb358f1", "pid": "026567695", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026567695", "source": "IDREF"}], "preferred_name": "Institut de médecine (Liège, Belgique). Département de clinique et de sémiologie médicales", "country_associated": "be", "authorized_access_point": "Institut de médecine (Liège, Belgique). Département de clinique et de sémiologie médicales"} 1 +2024-09-11 09:03:48.50995 2024-09-11 09:03:48.509954 65eea9d2-cee9-4ca2-abcc-5314903643df {"md5": "24ab78f4b8e65e3f260adcfaee2ea556", "pid": "026583135", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026583135", "source": "IDREF"}], "variant_name": ["Association internationale d'études byzantines", "Societas internationalis studiis Byzantinis provehendis destinata"], "preferred_name": "Association internationale des études byzantines", "variant_access_point": ["Association internationale d'études byzantines", "Societas internationalis studiis Byzantinis provehendis destinata"], "date_of_establishment": "1948", "parallel_access_point": ["International association for Byzantine studies", "Diethnis enosis vyzantinon spoudon", "Diethnēs 'enōsis byzantinōn spoudōn"], "authorized_access_point": "Association internationale des études byzantines", "biographical_information": ["Siège à Thessalonique (en 1989)"]} 1 +2024-09-11 09:03:48.566382 2024-09-11 09:03:48.566387 2f1d7e09-e3e3-4784-96e3-ce0a4aef84fe {"md5": "80c214f70d77b1416637a49e3c8fa6ce", "pid": "02658672X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02658672X", "source": "IDREF"}], "preferred_name": "Groupe d'action municipale (Puteaux, Hauts-de-Seine)", "country_associated": "fr", "authorized_access_point": "Groupe d'action municipale (Puteaux, Hauts-de-Seine)", "biographical_information": ["16 rue Anatole France, 92800 Puteaux"]} 1 +2024-09-11 09:03:48.622128 2024-09-11 09:03:48.622133 580ce9eb-6bb1-41dd-8c54-3aec47a7e9a3 {"md5": "67e1cd14aecda0eac24b71334f316ce1", "pid": "026614421", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026614421", "source": "IDREF"}], "preferred_name": "Philippines", "country_associated": "ph", "parallel_access_point": ["Filipinas", "Pilipinas"], "authorized_access_point": "Philippines", "biographical_information": ["Etat indépendant depuis le 4 juillet 1946 ; langue officielle pilipino (non codé ISO), anglais très employé ; capitale Manille"]} 1 +2024-09-11 09:03:48.678962 2024-09-11 09:03:48.678966 2043cac3-8c02-464e-af9f-596b526e98a0 {"md5": "a9178456f367dbc8740eb7b77535195f", "pid": "026626373", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026626373", "source": "IDREF"}], "preferred_name": "Institut de recherche et d'histoire des textes (France). Section romane", "country_associated": "fr", "authorized_access_point": "Institut de recherche et d'histoire des textes (France). Section romane"} 1 +2024-09-11 09:03:48.734182 2024-09-11 09:03:48.734188 8dc74421-6c24-4334-b547-363206993056 {"md5": "e3ac06c67201523fa0a35bde4a2147fe", "pid": "026631342", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026631342", "source": "IDREF"}], "variant_name": ["Commission nationale française de géographie de la mer"], "preferred_name": "Comité national français de géographie. Commission Géographie de la mer", "country_associated": "fr", "variant_access_point": ["Commission nationale française de géographie de la mer"], "authorized_access_point": "Comité national français de géographie. Commission Géographie de la mer", "biographical_information": ["Cette commission organise des colloques annuels"]} 1 +2024-09-11 09:03:48.794565 2024-09-11 09:03:48.794569 7664c0d5-a83b-44ca-a057-4a114c36f5d6 {"md5": "2b9fb16b91ee9423f5d9e439c09a94b2", "pid": "026646862", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026646862", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "163399395"}, "variant_name": ["Syndicat d'agglomération nouvelle du Val Maubuée", "Syndicat d'agglomération nouvelle (Marne-la-Vallée, Seine-et-Marne)", "Syndicat d'agglomération nouvelle Marne-la-Vallée-Val-Maubuée (Torcy, Seine-et-Marne)"], "preferred_name": "Syndicat d'agglomération nouvelle de Marne-la-Vallée-Val Maubuée", "country_associated": "fr", "date_of_termination": "2013", "variant_access_point": ["Syndicat d'agglomération nouvelle du Val Maubuée", "Syndicat d'agglomération nouvelle (Marne-la-Vallée, Seine-et-Marne)", "Syndicat d'agglomération nouvelle Marne-la-Vallée-Val-Maubuée (Torcy, Seine-et-Marne)"], "date_of_establishment": "1984", "authorized_access_point": "Syndicat d'agglomération nouvelle de Marne-la-Vallée-Val Maubuée", "biographical_information": ["Adresse : 5 place de l'Arche Guédon, Torcy, 77207 Marne-la-Vallée cedex 1. Tél. 01.60.37.24.24. Fax 01.60.37.24.34. Mél : san@san-valmaubuee.fr"]} 1 +2024-09-11 09:03:48.856112 2024-09-11 09:03:48.856115 4e68f5af-6c47-4a47-8a5a-093417bfd1b7 {"md5": "2b2dec79edff94509e4bc585494fe01d", "pid": "02672698X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02672698X", "source": "IDREF"}], "date_of_birth": "1946", "preferred_name": "Bharucha, Janine", "country_associated": "fr", "authorized_access_point": "Bharucha, Janine, 1946-....", "biographical_information": ["Traductrice de l'anglais en français"]} 1 +2024-09-11 09:03:48.909751 2024-09-11 09:03:48.909756 4bd262dc-8f21-4885-bc15-0c6d42c039b2 {"md5": "a703c93d19296962810e4f226d1852dd", "pid": "02675181X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02675181X", "source": "IDREF"}], "variant_name": ["Bretécher"], "date_of_birth": "1940-04-17", "date_of_death": "2020-02-11", "preferred_name": "Bretécher, Claire", "country_associated": "fr", "variant_access_point": ["Bretécher"], "authorized_access_point": "Bretécher, Claire, 1940-2020", "biographical_information": ["Dessinatrice et scénariste de bandes dessinées"]} 1 +2024-09-11 09:03:48.964894 2024-09-11 09:03:48.964898 eb9f05cf-7054-475d-bf76-25520bb80959 {"md5": "4eb8d27af76e3e27ca52a1589a0c90e5", "pid": "026847655", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026847655", "source": "IDREF"}], "date_of_birth": "1940", "date_of_death": "1983", "preferred_name": "Duviard, Dominique", "country_associated": "fr", "authorized_access_point": "Duviard, Dominique, 1940-1983", "biographical_information": ["Spécialiste des problèmes d'écologie animale. Docteur en sciences"]} 1 +2024-09-11 09:03:49.023469 2024-09-11 09:03:49.023473 78f922de-11e1-481f-8dd9-bb432289b9de {"md5": "21dfd075e7b066b9251d93830b9e161d", "pid": "026868482", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "économiste", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026868482", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "108076628"}, "date_of_birth": "1942-10-06", "preferred_name": "Fontaine, Jean-Marc, économiste", "country_associated": "fr", "authorized_access_point": "Fontaine, Jean-Marc, 1942-...., économiste", "biographical_information": ["Maître de conférences en sciences économiques et directeur du Centre de recherche économique de l'IEDES, Université Panthéon-Sorbonne, Paris I (en 1992)"]} 1 +2024-09-11 09:03:49.094932 2024-09-11 09:03:49.094937 e47ea142-1aa5-4a0c-b612-6156d6c54652 {"md5": "ff815cdf475279ba85828f915a8d8169", "pid": "026895056", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "éditeur", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026895056", "source": "IDREF"}], "variant_name": ["Godefroy, Christian"], "date_of_birth": "1948-10-25", "preferred_name": "Godefroy, Christian Henri, éditeur", "country_associated": "fr", "variant_access_point": ["Godefroy, Christian"], "authorized_access_point": "Godefroy, Christian Henri, 1948-...., éditeur", "biographical_information": ["Éditeur"]} 1 +2024-09-11 09:03:49.160253 2024-09-11 09:03:49.160255 b2c01de5-ecca-4fcb-82e3-66355282b8c3 {"md5": "9183a53cdeaa4e8a0c8d2034a1ae8e4e", "pid": "026916134", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026916134", "source": "IDREF"}], "date_of_birth": "1934-05-28", "date_of_death": "2023-05-23", "preferred_name": "Haudry, Jean", "country_associated": "fr", "authorized_access_point": "Haudry, Jean, 1934-2023", "biographical_information": ["Directeur du Centre de linguistique appliquée de l'Université de Lyon III en 1987. Directeur d'études de grammaire comparée des langues indo-européennes à la IVe section de l'École pratique des hautes études en 1987"]} 1 +2024-09-11 09:03:49.224966 2024-09-11 09:03:49.224971 3aa966f8-d864-42f3-9554-42ef70bc848e {"md5": "dcc632c2c46d63114573e36a7641eda7", "pid": "026924498", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026924498", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "027469107"}, "date_of_birth": "1895-02-14", "date_of_death": "1973-07-07", "preferred_name": "Horkheimer, Max", "country_associated": "gw", "authorized_access_point": "Horkheimer, Max, 1895-1973", "biographical_information": ["Philosophe et sociologue"]} 1 +2024-09-11 09:03:49.291754 2024-09-11 09:03:49.291758 bdb00e13-a848-43eb-a2e6-09c181a2d832 {"md5": "c4207e4e4058b23976f1e880466453ab", "pid": "026959852", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026959852", "source": "IDREF"}], "date_of_birth": "1913-03-12", "date_of_death": "1993-03-17", "preferred_name": "Laffont, Pierre", "country_associated": "fr", "authorized_access_point": "Laffont, Pierre, 1913-1993", "biographical_information": ["Directeur général de l'\\"Echo d'Oran\\" (1945-1963). Député d'Oran-campagne (1958-1961). Administrateur des éditions Robert Laffont (de 1964 à 1978)"]} 1 +2024-09-11 09:03:49.433302 2024-09-11 09:03:49.433307 4bdb53cb-db6b-4f80-8633-18867a1f50c9 {"md5": "56e6c8eb7a61d332e4aa30d38f26e497", "pid": "026995050", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/026995050", "source": "IDREF"}], "date_of_birth": "1902", "date_of_death": "1986", "preferred_name": "Lot, Fernand", "country_associated": "fr", "authorized_access_point": "Lot, Fernand, 1902-1986", "biographical_information": ["Poète, essayiste, écrivain scientifique, botaniste"]} 1 +2024-09-11 09:03:49.553575 2024-09-11 09:03:49.55358 159e600d-d84d-4b73-9048-44cb5a573d7e {"md5": "3e72fbbd002857ee5fc30406dfdb0a3d", "pid": "027006344", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027006344", "source": "IDREF"}], "variant_name": ["Manoury, H. de", "Ectot, H. de Mannoury", "Nicolas Le Blanc, H", "Le Blanc, H. Nicolas", "Coeur-Brûlant, Vicomtesse de"], "date_of_birth": "18..", "date_of_death": "18..?", "preferred_name": "Mannoury d'Ectot, H. de", "country_associated": "fr", "variant_access_point": ["Manoury, H. de", "Ectot, H. de Mannoury", "Nicolas Le Blanc, H", "Le Blanc, H. Nicolas", "Coeur-Brûlant, Vicomtesse de"], "authorized_access_point": "Mannoury d'Ectot, H. de, 18..-18..?", "biographical_information": ["Marquise de Mannoury d'Ectot, née H. Nicolas Le Blanc"]} 1 +2024-09-11 09:03:49.611867 2024-09-11 09:03:49.611871 e2b28ec8-a89d-4de8-9a1d-24c3bc2d77ab {"md5": "84d00f8c7984f4d9f2dd0ebeb6e222e6", "pid": "027019837", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027019837", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "085841943"}, "variant_name": ["Mayer, Arno J."], "date_of_birth": "1926-06-19", "preferred_name": "Mayer, Arno", "country_associated": "xxu", "variant_access_point": ["Mayer, Arno J."], "authorized_access_point": "Mayer, Arno, 1926-....", "biographical_information": ["Professeur d'histoire européenne à Princeton university, New Jersey (en 1990)"]} 1 +2024-09-11 09:03:49.701782 2024-09-11 09:03:49.701787 ad22ace1-a39f-40cb-8607-8fe15ee2f2e0 {"md5": "9453ad840d673720fad575799ef91388", "pid": "02703819X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02703819X", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "031784283"}, "variant_name": ["M., A.", "A. M.", "M. L. M.", "M., M. L."], "date_of_birth": "1727-03-07", "date_of_death": "1819-01-12", "preferred_name": "Morellet, André", "country_associated": "fr", "variant_access_point": ["M., A.", "A. M.", "M. L. M.", "M., M. L."], "authorized_access_point": "Morellet, André, 1727-1819", "biographical_information": ["Traduit de l'italien et du latin en français. Ecclésiastique. Économiste. Membre de l'Académie française (élu en 1785 et nommé en 1803)"]} 1 +2024-09-11 09:03:49.768682 2024-09-11 09:03:49.768686 ea510bc0-84a8-4b56-982d-5a9364d85615 {"md5": "328a78cdc083e51b8ac4fc2c70f459af", "pid": "027135985", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027135985", "source": "IDREF"}], "date_of_birth": "1919", "date_of_death": "1986", "preferred_name": "Shackleton, Robert", "country_associated": "xxk", "authorized_access_point": "Shackleton, Robert, 1919-1986", "biographical_information": ["Professeur de littérature française à l'Université d'Oxford, GB"]} 1 +2024-09-11 09:03:49.836118 2024-09-11 09:03:49.836123 c7ce7217-6ed0-48ce-8851-76fc74a7845f {"md5": "5eaffbfd1649b54bea2bca641ba6b8f7", "pid": "027215008", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027215008", "source": "IDREF"}], "preferred_name": "Centre d'expérimentation des packages (Paris)", "country_associated": "fr", "date_of_termination": "1978-06-27", "authorized_access_point": "Centre d'expérimentation des packages (Paris)"} 1 +2024-09-11 09:03:49.891769 2024-09-11 09:03:49.891773 6e60b2b3-2ce1-45e8-95e5-213484590efd {"md5": "57e191312dfca362ded0743c4a5f0640", "pid": "027486028", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027486028", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "086101293"}, "variant_name": ["Abadia Santa Maria de Poblet", "Monasterio de Poblet", "Monasterio Santa María de Poblet", "Monestir Santa Maria de Poblet", "Poblet", "Santa Maria de Poblet"], "preferred_name": "Monestir de Poblet", "country_associated": "sp", "variant_access_point": ["Abadia Santa Maria de Poblet", "Monasterio de Poblet", "Monasterio Santa María de Poblet", "Monestir Santa Maria de Poblet", "Poblet", "Santa Maria de Poblet"], "date_of_establishment": "1150", "authorized_access_point": "Monestir de Poblet", "biographical_information": ["Monastère cistercien situé sur la commune de Vimbodí (prov. de Tarragone). Fondé par des moines de Fontfroide sur des terres données par le comte Raymond-Bérenger IV de Barcelone en 1150 ; abbaye à partir de 1153. Mis à sac par les Français en 1809, puis supprimé en 1835. Rendu aux Cisterciens en 1940. Tombeaux des rois d'Aragon"]} 1 +2024-09-11 09:03:49.946952 2024-09-11 09:03:49.946955 6abd45d4-f3aa-42a7-a2e9-e6863b8a8f59 {"md5": "d1f8e7fa4b8a1eafb6c28aadb47af57e", "pid": "027632288", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027632288", "source": "IDREF"}], "variant_name": ["Canada. Parliament"], "preferred_name": "Canada. Parlement", "country_associated": "xxc", "variant_access_point": ["Canada. Parliament"], "authorized_access_point": "Canada. Parlement", "biographical_information": ["Parlement composé de 2 chambres aux pouvoirs inégaux : le Sénat (membres nommés à vie) et la Chambre des communes qui seule vote les lois ; elle est élue pour 5 ans au scrutin uninominal à un tour"]} 1 +2024-09-11 09:03:50.001257 2024-09-11 09:03:50.001261 c4789952-f6ed-4e46-a859-f5012af5cf0c {"md5": "ab5807b40356222c9d07b31e4dfba4ed", "pid": "027767744", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027767744", "source": "IDREF"}], "variant_name": ["Maquis de Plésidy", "Plésidy"], "preferred_name": "Forces françaises de l'intérieur. Maquis de Plésidy", "country_associated": "fr", "variant_access_point": ["Maquis de Plésidy", "Plésidy"], "authorized_access_point": "Forces françaises de l'intérieur. Maquis de Plésidy", "biographical_information": ["Basé dans le bois de Coat-Mallouen, dépendait du M.C.O. de Guingamp"]} 1 +2024-09-11 09:03:50.061624 2024-09-11 09:03:50.061629 682b7797-c756-491d-8ded-de8034374ce6 {"md5": "212db8b4192d1db2161e773ae76c91dc", "pid": "027896781", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027896781", "source": "IDREF"}], "variant_name": ["SCSP"], "preferred_name": "Société cévenole de spéléologie et de préhistoire", "country_associated": "fr", "variant_access_point": ["SCSP"], "authorized_access_point": "Société cévenole de spéléologie et de préhistoire", "biographical_information": ["Siège au Centre culturel communal, pl. Henri-Barbusse, 30100 Alès"]} 1 +2024-09-11 09:03:50.114992 2024-09-11 09:03:50.114996 7e10c5f4-9934-4fb4-8975-3836ede2ad69 {"md5": "43e3eaf9779ad881fb6b25f5069e5d91", "pid": "027912760", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027912760", "source": "IDREF"}], "variant_name": ["Département du Cher"], "preferred_name": "Cher", "country_associated": "fr", "variant_access_point": ["Département du Cher"], "authorized_access_point": "Cher", "biographical_information": ["Hôtel du Département, pl. Marcel-Plaisant, 18014 cedex"]} 1 +2024-09-11 09:03:50.17608 2024-09-11 09:03:50.176084 1da286a4-5ef4-4e2e-8d27-e91452222685 {"md5": "cfbbdcffa41adc4023088be1d31a1dbd", "pid": "02796096X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02796096X", "source": "IDREF"}], "preferred_name": "Var. Inspection académique", "country_associated": "fr", "authorized_access_point": "Var. Inspection académique", "biographical_information": ["Rue Montebello, BP 1204, 83070 Toulon Cedex"]} 1 +2024-09-11 09:03:50.247023 2024-09-11 09:03:50.247026 e4739e98-2fd4-48e9-b78c-5f57d5707ea5 {"md5": "9dd3b28a0cb93ff1a4d4561a42b755ba", "pid": "027969428", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027969428", "source": "IDREF"}], "variant_name": ["Organisation de coopération et de développement économiques. Comité sur les marchés financiers", "Organisation for Economic Co-operation and Development. Committee on financial markets"], "preferred_name": "Organisation de coopération et de développement économiques. Comité des marchés financiers", "variant_access_point": ["Organisation de coopération et de développement économiques. Comité sur les marchés financiers", "Organisation for Economic Co-operation and Development. Committee on financial markets"], "authorized_access_point": "Organisation de coopération et de développement économiques. Comité des marchés financiers"} 1 +2024-09-11 09:03:50.304387 2024-09-11 09:03:50.304391 a239c83f-248e-411e-b0ed-72b765e7004a {"md5": "ba3d7ab87aa2bd0c5c81907ed7deec59", "pid": "028071670", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028071670", "source": "IDREF"}], "preferred_name": "Symposium sur les expériences in situ dans du granite relatives à l'évacuation des déchets radiactifs", "date_of_termination": "1985-06-06", "date_of_establishment": "1985-06-04", "parallel_access_point": ["Symposium on in situ experiments in granite associated with the disposal of radioactive waste (1985 ; Stockholm)"], "authorized_access_point": "Symposium sur les expériences in situ dans du granite relatives à l'évacuation des déchets radiactifs (1985 ; Stockholm)", "biographical_information": ["Organisé l'Agence de l'O.C.D.E. pour l'énergie nucléaire et la Société suédoise d'approvisionnement en combustible nucléaire, Division K.B.S. dans le cadre du Projet international de Stripa"]} 1 +2024-09-11 09:03:50.36158 2024-09-11 09:03:50.361584 0e51c517-eb9d-47dd-9683-3a8020078563 {"md5": "cff805036757b653cefc4c5bd269b78f", "pid": "028082788", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028082788", "source": "IDREF"}], "preferred_name": "Kloster Blaubeuren", "country_associated": "gw", "date_of_establishment": "1085", "authorized_access_point": "Kloster Blaubeuren", "biographical_information": ["Abbaye de bénédictins (1085-1535), puis séminaire de théologie évangélique depuis 1562"]} 1 +2024-09-11 09:03:50.420389 2024-09-11 09:03:50.420395 09e259fc-a5eb-4068-a7e2-beb77ebe05ac {"md5": "950131ae672a3212f76eadb6f3384d85", "pid": "02809364X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02809364X", "source": "IDREF"}], "preferred_name": "Sangamon State university (Springfield, Ill)", "country_associated": "xxu", "date_of_establishment": "1969", "authorized_access_point": "Sangamon State university (Springfield, Ill)"} 1 +2024-09-11 09:03:50.481793 2024-09-11 09:03:50.481797 0ee768ff-5ab1-47e2-86e7-b7ff19d7c075 {"md5": "6562067c55731102692f5955292166b6", "pid": "028166027", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028166027", "source": "IDREF"}], "variant_name": ["AFAI", "AFAI-EDPAA", "Association française d'audit et du conseil informatiques", "Association française d'audit et de conseil informatique", "Information systems audit and control association. Association française d'audit informatique"], "preferred_name": "Association française d'audit informatique", "country_associated": "fr", "variant_access_point": ["AFAI", "AFAI-EDPAA", "Association française d'audit et du conseil informatiques", "Association française d'audit et de conseil informatique", "Information systems audit and control association. Association française d'audit informatique"], "date_of_establishment": "1982", "authorized_access_point": "Association française d'audit informatique", "biographical_information": ["Chapitre français de l'Information systems audit and control association (avant 1996 : International EDP auditors association = EDPAA)", "88 rue de Courcelles, 75008 Paris. Tél. 01.55.61.07.07. Fax 01.55.62.12.12. E-mail : afai@afai.asso.fr. Ancienne adresse : Centre HEC, 1 rue de la Libération, 78350 Jouy-en-Josas"]} 1 +2024-09-11 09:03:50.542501 2024-09-11 09:03:50.542505 48f2b9cc-5b11-4cd7-937d-14bf7646e922 {"md5": "f1e03c7d720737d655067ae2bf50ece8", "pid": "028259866", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028259866", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "086736442"}, "date_of_birth": "1939-07-15", "date_of_death": "2022-01-18", "preferred_name": "Brown, Jonathan", "country_associated": "xxu", "authorized_access_point": "Brown, Jonathan, 1939-2022", "biographical_information": ["Historien d'art. Professeur à l'Institut des beaux-arts de l'Université de New-York (1988)"]} 1 +2024-09-11 09:03:50.613035 2024-09-11 09:03:50.613039 bda68e78-8e40-484e-bc13-179ea6707bc0 {"md5": "7e858865f4b342112b916f514e15558c", "pid": "028302435", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028302435", "source": "IDREF"}], "preferred_name": "Parc naturel régional de Saint-Amand Raismes", "authorized_access_point": "Parc naturel régional de Saint-Amand Raismes"} 1 +2024-09-11 09:04:00.467111 2024-09-11 09:04:00.467116 de56d664-9561-4b17-a6e4-b9172d66a1e6 {"md5": "0b8a831dc1def0d74e28b129c302886c", "pid": "034085289", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034085289", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "085867284"}, "preferred_name": "Servant, M.", "country_associated": "fr", "authorized_access_point": "Servant, M."} 1 +2024-09-11 09:03:50.670792 2024-09-11 09:03:50.670796 40e95c39-7438-4693-b7ee-4b28cc101497 {"md5": "5bd479d272f62847bfe4e28d96eee0e4", "pid": "02832787X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02832787X", "source": "IDREF"}], "variant_name": ["Centro de investigación y desarrollo de Petróleos de Venezuela", "INTEVEP", "Instituto venezolano tecnológico de Petróleos", "Petróleos de Venezuela. Centro de investigación y apoyo tecnológico"], "preferred_name": "Centro de investigación y apoyo tecnológico de Petróleos de Venezuela", "country_associated": "ve", "variant_access_point": ["Centro de investigación y desarrollo de Petróleos de Venezuela", "INTEVEP", "Instituto venezolano tecnológico de Petróleos", "Petróleos de Venezuela. Centro de investigación y apoyo tecnológico"], "date_of_establishment": "1979", "authorized_access_point": "Centro de investigación y apoyo tecnológico de Petróleos de Venezuela", "biographical_information": ["Centre de recherche appliquée au développement de produits nouveaux et à l'amélioration de produits existants. Le centre est une filiale de Petróleos de Venezuela, SA. Les chercheurs trouvent dans le centre une assitance technique et de la documentation", "Apdo 76343, Caracas 1070A, Vénézuéla"]} 1 +2024-09-11 09:03:50.727229 2024-09-11 09:03:50.727233 b5ec7a14-68e9-4a31-a89b-7b70c963f791 {"md5": "a4b407884116f7ed2a4324a89613596b", "pid": "028330943", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028330943", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "033174377"}, "date_of_birth": "1920", "date_of_death": "1996-06-14", "preferred_name": "Bufalino, Gesualdo", "country_associated": "it", "authorized_access_point": "Bufalino, Gesualdo, 1920-1996", "biographical_information": ["Romancier et essayiste"]} 1 +2024-09-11 09:03:50.796065 2024-09-11 09:03:50.79607 da63cd69-d414-4638-b00d-5e8c3aa9c4ab {"md5": "fd6ebfe8d116a4295cb2c1c6a11fa8b6", "pid": "028354753", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028354753", "source": "IDREF"}], "preferred_name": "Venturelli, Aldo", "country_associated": "it", "authorized_access_point": "Venturelli, Aldo"} 1 +2024-09-11 09:03:50.856655 2024-09-11 09:03:50.856659 a88dd133-1942-4c8f-aa06-371f269b3693 {"md5": "e4d52220ec82efb136192be256679645", "pid": "028357531", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028357531", "source": "IDREF"}], "variant_name": ["Kossmann, E. H"], "date_of_birth": "1922", "date_of_death": "2003", "preferred_name": "Kossmann, Ernst Heinrich", "country_associated": "ne", "variant_access_point": ["Kossmann, E. H"], "authorized_access_point": "Kossmann, Ernst Heinrich, 1922-2003", "biographical_information": ["Écrit aussi en anglais", "Professeur d'histoire à l'Université de Groningue (en 1987)"]} 1 +2024-09-11 09:03:50.917013 2024-09-11 09:03:50.917018 a947447b-e1b6-45b1-8c16-7e4c62f29044 {"md5": "3956ee96d85423068f3b35075189e75b", "pid": "028416171", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028416171", "source": "IDREF"}], "variant_name": ["Coward, Harold", "Coward, H. G.", "Coward, H."], "date_of_birth": "1936", "preferred_name": "Coward, Harold G.", "country_associated": "xxc", "variant_access_point": ["Coward, Harold", "Coward, H. G.", "Coward, H."], "authorized_access_point": "Coward, Harold G., 1936-....", "biographical_information": ["Professeur de sciences religieuses, titulaire d'un doctorat en philosophie et religion indiennes (Université McMaster). Directeur, Humanities Institute, University of Calgary, Canada (en 1989). Éditeur de \\"Mystics and Scholars\\" (1977)"]} 1 +2024-09-11 09:03:50.979555 2024-09-11 09:03:50.97956 5f5f8eb2-3092-4240-a493-3a0866ef2b4c {"md5": "d744e32bdd96d83cab26c7b261aafdfc", "pid": "028419790", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028419790", "source": "IDREF"}], "date_of_birth": "1918-12-08", "preferred_name": "Kessler, Herbert", "country_associated": "gw", "authorized_access_point": "Kessler, Herbert, 1918-....", "biographical_information": ["Spécialiste de droit et de philosophie"]} 1 +2024-09-11 09:03:51.048147 2024-09-11 09:03:51.048151 9e74543b-b05d-42fa-977d-7a7d6b508b94 {"md5": "7fc9a5c32c5f75fb81be98252d963079", "pid": "028442717", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028442717", "source": "IDREF"}], "date_of_birth": "1931", "preferred_name": "Echard, William E", "country_associated": "xxc", "authorized_access_point": "Echard, William E, 1931-....", "biographical_information": ["Professeur d'histoire, Glendon college of York university, Toronto"]} 1 +2024-09-11 09:03:51.114106 2024-09-11 09:03:51.11411 1263229e-f312-4209-8315-ed63bfeb88df {"md5": "ab542031e473e008eea2d5c58a80ca0a", "pid": "028470141", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028470141", "source": "IDREF"}], "variant_name": ["Allgemeiner deutscher Verband"], "preferred_name": "Alldeutscher Verband", "country_associated": "gw", "date_of_termination": "1939", "variant_access_point": ["Allgemeiner deutscher Verband"], "date_of_establishment": "1891", "authorized_access_point": "Alldeutscher Verband", "biographical_information": ["Ligue pangermaniste fondée à Berlin en 1891 : Allgemeiner deutscher Verband, puis (01-07-1894) Alldeutscher Verband ; interdite en 1939"]} 1 +2024-09-11 09:03:51.211396 2024-09-11 09:03:51.211401 be018df5-a4c7-4f8f-9fd1-d41dabbab928 {"md5": "18fdaf92fe4cabc4fe2570a59b438979", "pid": "028495764", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "qualifier": "médiéviste", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028495764", "source": "IDREF"}], "date_of_birth": "1920-05-15", "preferred_name": "Krüger, Sabine, médiéviste", "country_associated": "gw", "authorized_access_point": "Krüger, Sabine, 1920-...., médiéviste", "biographical_information": ["Médiéviste"]} 1 +2024-09-11 09:03:51.274027 2024-09-11 09:03:51.274031 8401a4a6-fe1b-4691-b5d6-4438b56b83e0 {"md5": "09b04f01ac85e0cb4603df937fdfe42b", "pid": "028500490", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028500490", "source": "IDREF"}], "date_of_birth": "1934-07-07", "date_of_death": "2014", "preferred_name": "Seebohm, Thomas M", "country_associated": "gw", "authorized_access_point": "Seebohm, Thomas M, 1934-2014", "biographical_information": ["Écrit aussi en anglais", "Professeur de philosophie à l'Université Johannes Gutenberg de Mayence, Allemagne (en 1992)"]} 1 +2024-09-11 09:03:51.337884 2024-09-11 09:03:51.337887 65f74894-7cd2-4ee0-9366-5d31ad9adf11 {"md5": "7b1da3a849f1e51ac0e04351354d40ff", "pid": "028503112", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028503112", "source": "IDREF"}], "date_of_birth": "1947-04-03", "preferred_name": "Bartsch, Kurt", "country_associated": "au", "authorized_access_point": "Bartsch, Kurt, 1947-....", "biographical_information": ["Professeur de littérature allemande moderne à l'Université de Graz depuis 1987 (en 1992)"]} 1 +2024-09-11 09:03:51.394215 2024-09-11 09:03:51.394219 8638f7aa-6aeb-477b-a317-2ebf965407e6 {"md5": "0eb070f09f76ac79deb8a4645aceee82", "pid": "028522206", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028522206", "source": "IDREF"}], "variant_name": ["MacConnell, Robert A", "MacConnell, R. A."], "preferred_name": "McConnell, Robert A", "country_associated": "xxu", "variant_access_point": ["MacConnell, Robert A", "MacConnell, R. A."], "authorized_access_point": "McConnell, Robert A"} 1 +2024-09-11 09:03:51.450726 2024-09-11 09:03:51.450731 247c48be-cfee-43e2-b4ae-b5207598648a {"md5": "5946fd39cfd77bf7ea59268ec41f8e88", "pid": "028523555", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028523555", "source": "IDREF"}], "date_of_birth": "1949", "preferred_name": "Aronoff, Mark", "country_associated": "xxu", "authorized_access_point": "Aronoff, Mark, 1949-...."} 1 +2024-09-11 09:03:51.528736 2024-09-11 09:03:51.52874 016d241d-2d3c-4bf6-acc6-06b986d9ad35 {"md5": "1255f395180fd269121cb5e43c5ce044", "pid": "028529677", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028529677", "source": "IDREF"}], "date_of_birth": "1911-02-11", "preferred_name": "Osthoff, Hans Werner", "country_associated": "gw", "authorized_access_point": "Osthoff, Hans Werner, 1911-....", "biographical_information": ["Juriste. Spécialiste en droit de l'économie"]} 1 +2024-09-11 09:03:51.5985 2024-09-11 09:03:51.598505 85f9ed8f-fda9-4a19-b1b0-ce77c49837e2 {"md5": "299677e1cd6f194726c13f14db46d03f", "pid": "028541634", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028541634", "source": "IDREF"}], "date_of_birth": "1937", "preferred_name": "Harrison, Peter D", "country_associated": "xxu", "authorized_access_point": "Harrison, Peter D, 1937-...."} 1 +2024-09-11 09:03:51.666156 2024-09-11 09:03:51.666162 70e37113-22c4-42b8-b342-a7b7d2da17a1 {"md5": "07a118420d381690ccfefd3983f3b7ea", "pid": "028542770", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028542770", "source": "IDREF"}], "date_of_birth": "1925", "date_of_death": "2015", "preferred_name": "Higham, Robin", "country_associated": "xxu", "authorized_access_point": "Higham, Robin, 1925-2015"} 1 +2024-09-11 09:03:51.734115 2024-09-11 09:03:51.73412 4dddaf68-fae4-4e26-b304-b8b0fb95b993 {"md5": "e000baacfa28d44fa7c7594e26a00389", "pid": "028558200", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028558200", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "085994995"}, "variant_name": ["Smyth, Alfred Patrick"], "date_of_birth": "1942-07-01", "date_of_death": "2016-10-16", "preferred_name": "Smyth, Alfred P.", "country_associated": "ie", "variant_access_point": ["Smyth, Alfred Patrick"], "authorized_access_point": "Smyth, Alfred P., 1942-2016", "biographical_information": ["Doyen, Canterbury Christ Church University (1999-2007). - Professeur émérite d'histoire médievale, University of Kent, Canterbury, GB (en 2006)", "Lieu de naissance Tara (Comté de Meath, Irlande). Lieu de décès Godmersham (Kent, Royaume-Uni)"]} 1 +2024-09-11 09:03:51.793639 2024-09-11 09:03:51.793642 308c23b4-3181-4c56-aed7-f69778dde244 {"md5": "4a1d898036ec3fe7817ad515e874738d", "pid": "028615719", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "cardiologue", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028615719", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Rousseau, Georges, cardiologue", "country_associated": "fr", "authorized_access_point": "Rousseau, Georges, 19..-...., cardiologue"} 1 +2024-09-11 09:03:51.849108 2024-09-11 09:03:51.849111 d900bdea-120e-4e16-a325-2e7fdb16bd22 {"md5": "ef36d607daa282c86e2c9a5e37e3970f", "pid": "028666925", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028666925", "source": "IDREF"}], "variant_name": ["Om Prakash Ralhan", "Ralhan, O. P."], "date_of_birth": "1936", "preferred_name": "Ralhan, Om Prakash", "country_associated": "ii", "variant_access_point": ["Om Prakash Ralhan", "Ralhan, O. P."], "authorized_access_point": "Ralhan, Om Prakash, 1936-....", "biographical_information": ["En poste au Nehru Memorial Museum and Library, New Delhi, Inde (en 1983)"]} 1 +2024-09-11 09:03:51.906355 2024-09-11 09:03:51.906359 52b5326f-5b2e-4301-ac9c-20f1d7f55af0 {"md5": "f261270df0444216dea8fe6ef8538f8b", "pid": "028681673", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028681673", "source": "IDREF"}], "preferred_name": "Sanchez, Denise", "country_associated": "xx", "authorized_access_point": "Sanchez, Denise"} 1 +2024-09-11 09:03:51.967876 2024-09-11 09:03:51.967881 b49e994e-0adf-4dee-a23b-162fdfe09c8d {"md5": "ac4129ed2d4a2062276682b264b776bd", "pid": "028735498", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028735498", "source": "IDREF"}], "date_of_birth": "1946-10-17", "date_of_death": "2009", "preferred_name": "Maniguet, Xavier", "country_associated": "fr", "authorized_access_point": "Maniguet, Xavier, 1946-2009", "biographical_information": ["Médecin, spécialiste de médecine aéronautique, de médecine hyperbarre et de médecine du sport"]} 1 +2024-09-11 09:03:52.029151 2024-09-11 09:03:52.029156 080b1b05-dcd8-4b22-998e-486c51bec952 {"md5": "de46a0fb726c412c00932c06871cb8d8", "pid": "028766857", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028766857", "source": "IDREF"}], "date_of_birth": "1935", "preferred_name": "Helbich, Wolfgang Johannes", "country_associated": "gw", "authorized_access_point": "Helbich, Wolfgang Johannes, 1935-....", "biographical_information": ["Professeur d'histoire moderne à l'Université de Bochum (en 1988)"]} 1 +2024-09-11 09:03:52.097013 2024-09-11 09:03:52.097017 5ab135a8-82d9-4fa2-905e-ae06ccea7331 {"md5": "1ae45ad89c42205b94a7c02748ca785e", "pid": "028882199", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028882199", "source": "IDREF"}], "variant_name": ["Amis du Châtillonnais (Châtillon-sur-Seine, Côte-d'Or)", "Société des amis de Châtillon-sur-Seine (Châtillon-sur-Seine, Côte-d'Or)"], "preferred_name": "Association des amis du Châtillonnais (Châtillon-sur-Seine, Côte-d'Or)", "country_associated": "fr", "variant_access_point": ["Amis du Châtillonnais (Châtillon-sur-Seine, Côte-d'Or)", "Société des amis de Châtillon-sur-Seine (Châtillon-sur-Seine, Côte-d'Or)"], "authorized_access_point": "Association des amis du Châtillonnais (Châtillon-sur-Seine, Côte-d'Or)", "biographical_information": ["Siège social : Mairie, 21400 Châtillon-sur-Seine. Courrier : 123 rue Docteur-Robert, 21400 Châtillon-sur-Seine"]} 1 +2024-09-11 09:03:52.162783 2024-09-11 09:03:52.162787 b79ae749-909b-4f3f-b26f-31e054749f2c {"md5": "499262cb72704f8dafb2aaca19ffae2e", "pid": "028902661", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028902661", "source": "IDREF"}], "preferred_name": "Cloonan, Michèle Valerie", "country_associated": "xxu", "authorized_access_point": "Cloonan, Michèle Valerie"} 1 +2024-09-11 09:03:52.230402 2024-09-11 09:03:52.230405 e1e8ec41-ab9b-4466-be9e-d24365911a2d {"md5": "933503ae1ee9ea99b8c8240104d05f4b", "pid": "02893010X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02893010X", "source": "IDREF"}], "variant_name": ["SESPA", "SFTP", "SSPA", "Scientists and engineers for social and political action (Etats-Unis)", "Scientists for social and political action (Etats-Unis)"], "preferred_name": "Science for the people (Etats-Unis)", "country_associated": "xxu", "variant_access_point": ["SESPA", "SFTP", "SSPA", "Scientists and engineers for social and political action (Etats-Unis)", "Scientists for social and political action (Etats-Unis)"], "date_of_establishment": "1969", "authorized_access_point": "Science for the people (Etats-Unis)", "biographical_information": ["A porté, de févr.? à août 1969, le nom de \\"Scientists for Social and Political Action\\" puis, de sept. 1969 à sept. 1975, celui de \\"Scientists and Engineers for Social and Political Action\\"", "Édite un périodique de même nom : \\"Science for the people\\"", "897 Main Street, Cambridge, MA 02139"]} 1 +2024-09-11 09:03:52.288311 2024-09-11 09:03:52.288316 bd74f45b-af5e-4554-be25-3506a831e1ee {"md5": "2b047f74b920a8f98e4a1e5a96fea55c", "pid": "02903096X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["hun"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02903096X", "source": "IDREF"}], "variant_name": ["Institut für Parteigeschichte (Hongrie)", "Magyar szocialista munkáspárt. Párttörténeti intézet", "Magyar szocialista munkáspárt. Központi bizottság. Párttörténeti intézet"], "preferred_name": "Párttörténeti intézet (Hongrie)", "country_associated": "hu", "variant_access_point": ["Institut für Parteigeschichte (Hongrie)", "Magyar szocialista munkáspárt. Párttörténeti intézet", "Magyar szocialista munkáspárt. Központi bizottság. Párttörténeti intézet"], "authorized_access_point": "Párttörténeti intézet (Hongrie)", "biographical_information": ["Institut pour l'histoire des partis"]} 1 +2024-09-11 09:03:52.346527 2024-09-11 09:03:52.346532 a76fa8e1-c558-4483-8944-c24a47aed797 {"md5": "25ef4d25be0fe56a90bc3e3011f2d92b", "pid": "02907309X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02907309X", "source": "IDREF"}], "preferred_name": "Lanati, Barbara", "country_associated": "it", "authorized_access_point": "Lanati, Barbara", "biographical_information": ["Enseigne la littérature américaine à l' Université de Turin (en 1987)"]} 1 +2024-09-11 09:03:52.403233 2024-09-11 09:03:52.403237 eca893ae-4a5d-46c6-8636-caf565d074d7 {"md5": "976abfe1bfdbc053aee42ee2310c3435", "pid": "029077087", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029077087", "source": "IDREF"}], "variant_name": ["MNE", "Maison nationale des éleveurs (Paris)"], "preferred_name": "Maison nationale des éleveurs (France)", "country_associated": "fr", "variant_access_point": ["MNE", "Maison nationale des éleveurs (Paris)"], "authorized_access_point": "Maison nationale des éleveurs (France)", "biographical_information": ["149 rue de Bercy, 75012 Paris. Tél.43.46.12.20"]} 1 +2024-09-11 09:03:52.459231 2024-09-11 09:03:52.459235 fe19119c-44f3-49b0-9440-d8baaa6e881b {"md5": "0976c4414263c9d03f5a59671c73c4cb", "pid": "029195640", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029195640", "source": "IDREF"}], "variant_name": ["Coopération CEE-Yougoslavie"], "preferred_name": "Coopération entre la Communauté économique européenne et la République socialiste fédérative de Yougoslavie", "variant_access_point": ["Coopération CEE-Yougoslavie"], "date_of_establishment": "1980-04-02", "authorized_access_point": "Coopération entre la Communauté économique européenne et la République socialiste fédérative de Yougoslavie", "biographical_information": ["Créée par accord du 2-4-1980 signé à Belgrade"]} 1 +2024-09-11 09:03:52.534649 2024-09-11 09:03:52.534655 1213f31c-5c00-42d2-9830-652eaae19515 {"md5": "f8aa52e065e9c827f9b6900b40fdc063", "pid": "029214084", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029214084", "source": "IDREF"}], "preferred_name": "Amicale des sapeurs-pompiers de Fougères (Ille-et-Vilaine)", "country_associated": "fr", "authorized_access_point": "Amicale des sapeurs-pompiers de Fougères (Ille-et-Vilaine)"} 1 +2024-09-11 09:03:52.615619 2024-09-11 09:03:52.615623 225d7120-8f18-4ab5-865c-b9020b9b8dcd {"md5": "e155e7381bf09b6a618c498c603a7c18", "pid": "029218977", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029218977", "source": "IDREF"}], "preferred_name": "Fondation pour les arts et les sciences de la communication", "country_associated": "fr", "authorized_access_point": "Fondation pour les arts et les sciences de la communication", "biographical_information": ["1 rue Didienne, BP 67, 44003 Nantes cedex"]} 1 +2024-09-11 09:04:07.262353 2024-09-11 09:04:07.262358 3f57b5f0-6fa7-4fe1-8df9-122eec3c0297 {"md5": "f4b58a8bcbd664577babfc84d8453e0e", "pid": "057687242", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/057687242", "source": "IDREF"}], "preferred_name": "Bayili, Emmanuel", "country_associated": "xx", "authorized_access_point": "Bayili, Emmanuel"} 1 +2024-09-11 09:03:52.670837 2024-09-11 09:03:52.67084 f349f214-e8d2-4557-b8e7-74c1446c975d {"md5": "6ef8acb73052863ef1ba04a7d2affaea", "pid": "029470293", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029470293", "source": "IDREF"}], "variant_name": ["Département de l'Hérault"], "preferred_name": "Hérault", "country_associated": "fr", "variant_access_point": ["Département de l'Hérault"], "authorized_access_point": "Hérault", "biographical_information": ["Hôtel du Département, pl. des Martyrs-de-la-Résistance, 34062 Montpellier cedex. Tél. 67.52.88.88"]} 1 +2024-09-11 09:03:52.739324 2024-09-11 09:03:52.739329 a7d9c640-56d5-47a1-a44a-383764b8cad2 {"md5": "7622a07037cd18e91b95e9ad6e322b6f", "pid": "029580293", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029580293", "source": "IDREF"}], "variant_name": ["Service national du catéchuménat (France)", "Eglise catholique. Conférence épiscopale française. Commission épiscopale de l'enseignement religieux. Service national du catéchuménat"], "preferred_name": "Eglise catholique. Conférence épiscopale française. Service national du catéchuménat", "country_associated": "fr", "variant_access_point": ["Service national du catéchuménat (France)", "Eglise catholique. Conférence épiscopale française. Commission épiscopale de l'enseignement religieux. Service national du catéchuménat"], "date_of_establishment": "1964-10", "authorized_access_point": "Eglise catholique. Conférence épiscopale française. Service national du catéchuménat", "biographical_information": ["Fondé en 1964 par la Commission épiscopale de l'enseignement religieux, il est placé sous sa dépendance directe", "4 av. Vavin, 75006 Paris. Tél. 43.54.45.43"]} 1 +2024-09-11 09:03:52.800331 2024-09-11 09:03:52.800337 ad87ddab-5d3c-4a5d-a5e8-50d72f17cf42 {"md5": "5cfada9dbeda17dd9b40efaaf7443637", "pid": "029589681", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029589681", "source": "IDREF"}], "variant_name": ["Commission académique Réussir au collège (Amiens)", "Réussir au collège (Amiens)"], "preferred_name": "France. Académie (Amiens). Commission académique Réussir au collège", "country_associated": "fr", "variant_access_point": ["Commission académique Réussir au collège (Amiens)", "Réussir au collège (Amiens)"], "authorized_access_point": "France. Académie (Amiens). Commission académique Réussir au collège"} 1 +2024-09-11 09:03:52.879614 2024-09-11 09:03:52.87962 24f50cda-f396-4d87-9d7b-d0453a6e2d99 {"md5": "e6405639c2f00a4263f186e830219b1a", "pid": "029598982", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029598982", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "071392238"}, "date_of_birth": "1943", "preferred_name": "Pestieau, Pierre", "country_associated": "xx", "authorized_access_point": "Pestieau, Pierre, 1943-....", "biographical_information": ["Ecrit aussi en anglais", "Docteur en sciences économiques. Professeur à l'Université de Liège (en 1989). Professeur émérite et membre du CORE (en 2017)"]} 1 +2024-09-11 09:03:52.94514 2024-09-11 09:03:52.945144 f3a069e9-614b-41df-84a5-1bc433a0b93d {"md5": "3a2b68120864e3eaba86beaa58c26e9e", "pid": "029652138", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029652138", "source": "IDREF"}], "variant_name": ["HFC", "Société anonyme des hauts-fourneaux de La Chiers"], "preferred_name": "Société des hauts-fourneaux de La Chiers", "country_associated": "fr", "date_of_termination": "1976", "variant_access_point": ["HFC", "Société anonyme des hauts-fourneaux de La Chiers"], "authorized_access_point": "Société des hauts-fourneaux de La Chiers", "biographical_information": ["En 1969, absorbe les Tréfileries et câbleries de Bourg et du Havre qui deviennent le Département des tréfileries et câbleries de la société ; en 1976, fusion avec la Compagnie des forges de Châtillon, Commentry, Biachet avec la Société des aciéries et tréfileries de Neuves-Maisons, Châtillon pour former le holding Chiers-Châtillon", "54400 Longwy"]} 1 +2024-09-11 09:03:53.002376 2024-09-11 09:03:53.002383 f02c7927-ac3b-4c6f-bc9d-e2a09a89871e {"md5": "b45c0da6487396e25f12f83b3518aa6f", "pid": "029688019", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029688019", "source": "IDREF"}], "date_of_birth": "1938-08-15", "date_of_death": "2013", "preferred_name": "Mills, David", "country_associated": "xxk", "authorized_access_point": "Mills, David, 1938-2013", "biographical_information": ["Professeurd'anglais à l'Université de Liverpool"]} 1 +2024-09-11 09:03:53.057965 2024-09-11 09:03:53.057969 cecae26a-b517-44b2-aeff-1e33038ea505 {"md5": "2435d30e4c7ed14039a33093d07d9cbd", "pid": "029698510", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029698510", "source": "IDREF"}], "variant_name": ["Ramahatra, Pierre", "Ramahatra, Pierre Olivier"], "date_of_birth": "1943-11-01", "preferred_name": "Ramahatra, Olivier", "country_associated": "mg", "variant_access_point": ["Ramahatra, Pierre", "Ramahatra, Pierre Olivier"], "authorized_access_point": "Ramahatra, Olivier, 1943-....", "biographical_information": ["Ingénieur diplômé de l'ENST. Docteur en sciences économiques (Paris 10, 1986). Enseigne à l'Université d'Antananarivo (Madagascar) (en 1989)"]} 1 +2024-09-11 09:03:53.112309 2024-09-11 09:03:53.112313 cd2ea083-218a-45db-ac6d-03c3906775f2 {"md5": "8f19ecfa328d22ca84956426ae1ad245", "pid": "029733944", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029733944", "source": "IDREF"}], "date_of_birth": "1939", "date_of_death": "2004", "preferred_name": "Artioli, Umberto", "country_associated": "it", "authorized_access_point": "Artioli, Umberto, 1939-2004", "biographical_information": ["Théoricien et historien du théâtre"]} 1 +2024-09-11 09:03:53.174627 2024-09-11 09:03:53.174631 ec0d79d2-6e64-4b8b-8261-215cc94b2fb9 {"md5": "8b4325da8c0b1f1d3f93f56b5e191756", "pid": "029761867", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["srp"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029761867", "source": "IDREF"}], "variant_name": ["Павловић, Живојин"], "date_of_birth": "1933-04-15", "date_of_death": "1998-11-29", "preferred_name": "Pavlović, Živojin", "variant_access_point": ["Павловић, Живојин, 1933-1998"], "authorized_access_point": "Pavlović, Živojin, 1933-1998", "biographical_information": ["Réalisateur, écrivain et peintre serbe"]} 1 +2024-09-11 09:03:53.227441 2024-09-11 09:03:53.227445 2693de32-5de6-4417-a99e-5e17ed0e2b0c {"md5": "5d8a6fd5d312d0e98acbc1fc4ffb2cd3", "pid": "029767849", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029767849", "source": "IDREF"}], "variant_name": ["AMIA", "Comunidad judía de Buenos Aires"], "preferred_name": "Asociación mutual israelita argentina", "country_associated": "ag", "variant_access_point": ["AMIA", "Comunidad judía de Buenos Aires"], "authorized_access_point": "Asociación mutual israelita argentina"} 1 +2024-09-11 09:03:53.280313 2024-09-11 09:03:53.280317 1c0bd3b4-7525-4551-93dc-fc066f1ab6bc {"md5": "34c5b9e50c65bd343a3bb85f818ccf0f", "pid": "02982480X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02982480X", "source": "IDREF"}], "date_of_birth": "1941", "preferred_name": "Novak, David", "country_associated": "xxu", "authorized_access_point": "Novak, David, 1941-....", "biographical_information": ["Professeur d'études modernes judai͏̈ques à l'University of Virginia, Charlottesville, USA (en 1995)"]} 1 +2024-09-11 09:03:53.341699 2024-09-11 09:03:53.341704 370eb6a0-0d7d-4aa5-876a-f7b19fb9e6b6 {"md5": "84daca96e562dc443a35a38282c9ce68", "pid": "029869587", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029869587", "source": "IDREF"}], "variant_name": ["SEL", "Association SEL (France)", "Alliance évangélique française. Service d'entraide et de liaison"], "preferred_name": "Service d'entraide et de liaison (France)", "country_associated": "fr", "variant_access_point": ["SEL", "Association SEL (France)", "Alliance évangélique française. Service d'entraide et de liaison"], "authorized_access_point": "Service d'entraide et de liaison (France)", "biographical_information": ["Oeuvre humanitaire française travaillant en liaison avec des organismes internationaux mais sans avoir de lien juridique avec eux et dont une partie du Conseil d'administration est nommée par l'Alliance évangélique française", "Siège social : 47 rue de Clichy, 75009 Paris. Bureaux : 9 rue de la Gare, 94230 Cachan. Tél. 46.65.83.03"]} 1 +2024-09-11 09:03:53.397109 2024-09-11 09:03:53.397114 f151333d-8ac0-4611-8284-1ccbf106865c {"md5": "c01c9696ecb66ba7ff5dc16c866d4e9f", "pid": "029872235", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029872235", "source": "IDREF"}], "date_of_birth": "1948", "preferred_name": "Piper, Ronald Allen", "country_associated": "xx", "authorized_access_point": "Piper, Ronald Allen, 1948-....", "biographical_information": ["Exégète, spécialiste du Nouveau Testament. Enseigne à l'University of St Andrews (en 1995)"]} 1 +2024-09-11 09:03:53.451269 2024-09-11 09:03:53.451273 dac6d54d-21d8-4fb0-aba1-ffb7e0713906 {"md5": "6bba8ada4e018beb156843e43a82dbd0", "pid": "029924480", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029924480", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "125209991"}, "variant_name": ["Steinbrügge, Liselotte"], "date_of_birth": "1953", "preferred_name": "Steinbrügge, Liselotte", "country_associated": "gw", "variant_access_point": ["Steinbrügge, Liselotte"], "authorized_access_point": "Steinbrügge, Liselotte, 1953-....", "biographical_information": ["Enseignante en littérature française. Professeur de philologie romaine. En poste à la Freie Universität Berlin (en 1995)"]} 1 +2024-09-11 09:03:53.530845 2024-09-11 09:03:53.530851 0285cb56-ec26-4d3c-8452-bdf344d2170d {"md5": "4f1e299548dbf61474fe0f6c35fb9d67", "pid": "029986761", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "conservateur des bibliothèques", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029986761", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "265606527"}, "date_of_birth": "1949-11-02", "preferred_name": "Martin, Gérard, conservateur des bibliothèques", "country_associated": "fr", "authorized_access_point": "Martin, Gérard, 1949-...., conservateur des bibliothèques", "biographical_information": ["Bibliothécaire. Conservateur de la Bibliothèque municipale de Charleville-Mézières."]} 1 +2024-09-11 09:03:53.610029 2024-09-11 09:03:53.610034 38686b99-22c7-4033-a2d8-dfb9ce827c6c {"md5": "11c1c2321b1560476fa1b3afed5803f4", "pid": "029994861", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029994861", "source": "IDREF"}], "preferred_name": "Symposium Popper", "country_associated": "au", "date_of_termination": "1983-05-26", "date_of_establishment": "1983-05-24", "authorized_access_point": "Symposium Popper (1983 ; Vienne)", "biographical_information": ["Organisé par l'Österreichischer Rundfunk et la ville de Vienne"]} 1 +2024-09-11 09:03:53.662372 2024-09-11 09:03:53.662376 62870964-f272-46be-8e84-257fb98d64d5 {"md5": "a4211018cad34653ff64499166944b31", "pid": "030045614", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030045614", "source": "IDREF"}], "preferred_name": "Museum für hamburgische Geschichte", "country_associated": "gw", "date_of_establishment": "1839", "authorized_access_point": "Museum für hamburgische Geschichte", "biographical_information": ["Holstenwall, W-2000 Hambourg 36, Allemagne"]} 1 +2024-09-11 09:03:53.716936 2024-09-11 09:03:53.716939 8c360c7c-16c1-4447-8f8b-1760b599f64a {"md5": "ce2a6a8d8d6e9373515c9cd3fb021e8d", "pid": "030086329", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030086329", "source": "IDREF"}], "preferred_name": "Somerville college (Oxford, GB)", "authorized_access_point": "Somerville college (Oxford, GB)"} 1 +2024-09-11 09:03:53.77135 2024-09-11 09:03:53.771355 c72de5b1-198c-4f3b-bdab-4bb9bc0d0149 {"md5": "1b582d834118f7ced6f63151d23c7cc9", "pid": "030097886", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "deleted": "2023-05-02T15:49:27.476865+00:00", "language": ["mul"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030097886", "source": "IDREF"}], "variant_name": ["Nations Unies. Conseil économique et social. Comité de l'habitation, de la construction et de la planification", "United nations committee on housing, building and planning"], "preferred_name": "Nations Unies. Comité de l'habitation, de la construction et de la planification", "date_of_termination": "1976", "variant_access_point": ["Nations Unies. Conseil économique et social. Comité de l'habitation, de la construction et de la planification", "United nations committee on housing, building and planning"], "date_of_establishment": "19XX", "authorized_access_point": "Nations Unies. Comité de l'habitation, de la construction et de la planification"} 1 +2024-09-11 09:03:53.838884 2024-09-11 09:03:53.838887 3a0b75c7-238a-400d-a960-7b2f4c98586d {"md5": "0aeb4b3f7409e8cc3ee65c0596c6f988", "pid": "030132711", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030132711", "source": "IDREF"}], "preferred_name": "Oakes, Guy", "country_associated": "xxu", "authorized_access_point": "Oakes, Guy", "biographical_information": ["Professeur de philosophie, Monmouth college, et de sociologie, New school for social research"]} 1 +2024-09-11 09:03:53.89124 2024-09-11 09:03:53.891245 bd8804a1-2aca-405b-a406-538d2903289f {"md5": "b7189dc1599a8b203ad1b44b0083229c", "pid": "03013739X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03013739X", "source": "IDREF"}], "date_of_birth": "1381?", "date_of_death": "1451?", "preferred_name": "Cavalcanti, Giovanni", "country_associated": "xx", "authorized_access_point": "Cavalcanti, Giovanni, 1381?-1451?", "biographical_information": ["Historien florentin"]} 1 +2024-09-11 09:03:53.945758 2024-09-11 09:03:53.945765 1fd29360-d092-43e6-b093-3a40d6dca8b4 {"md5": "53c30ae30d057c3bb6249bcda97492eb", "pid": "030187400", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030187400", "source": "IDREF"}], "variant_name": ["Boyer, Claudette Oriol-", "Boyer, Claudette", "Boyer Oriol, Claudette"], "date_of_birth": "1941-01-31", "date_of_death": "2015-12-22", "preferred_name": "Oriol-Boyer, Claudette", "country_associated": "fr", "variant_access_point": ["Boyer, Claudette Oriol-", "Boyer, Claudette", "Boyer Oriol, Claudette"], "authorized_access_point": "Oriol-Boyer, Claudette, 1941-2015", "biographical_information": ["Maître de conférence à l'Université Stendhal-Grenoble 3 (en 1990)", "Auteur(e) d'une thèse de 3e cycle en études littéraires françaises comparées (Grenoble 3, 1979) et d'une thèse d'État en littérature française (Paris 8, 1989)"]} 1 +2024-09-11 09:03:54.003604 2024-09-11 09:03:54.00361 19346191-65fb-44e5-8dc7-2a29eba78490 {"md5": "e4d57b3b28318fbe265791c243726ef3", "pid": "030198011", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030198011", "source": "IDREF"}], "variant_name": ["Laflèche, André Marin"], "preferred_name": "Marin-Laflèche, André", "country_associated": "fr", "variant_access_point": ["Laflèche, André Marin"], "authorized_access_point": "Marin-Laflèche, André", "biographical_information": ["En poste à la Station d'agronomie INRA de Laon-Péronne, Aisne (en 1990)"]} 1 +2024-09-11 09:03:54.057312 2024-09-11 09:03:54.057316 c3f984ef-1383-4138-96b5-3c43255ae070 {"md5": "528edf300819142bc1f65e4c1739c90a", "pid": "030223415", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030223415", "source": "IDREF"}], "variant_name": ["Legorjus, Philippe Louis Yves"], "date_of_birth": "1951-12-08", "preferred_name": "Legorjus, Philippe", "country_associated": "fr", "variant_access_point": ["Legorjus, Philippe Louis Yves"], "authorized_access_point": "Legorjus, Philippe, 1951-....", "biographical_information": ["Directeur du GIGN de 1985 à 1989. Diplomé de droit, président de sociétés"]} 1 +2024-09-11 09:03:54.12586 2024-09-11 09:03:54.125865 857abd0c-a77e-49d5-9136-e9732bfd67fa {"md5": "7618c06c31eca2aea0ac4cabafe59b47", "pid": "030254515", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030254515", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "085788066"}, "variant_name": ["Richelet, César-Pierre", "Richelet, César Pierre"], "date_of_birth": "1626-11", "date_of_death": "1698-11-23", "preferred_name": "Richelet, Pierre", "country_associated": "fr", "variant_access_point": ["Richelet, César-Pierre", "Richelet, César Pierre"], "authorized_access_point": "Richelet, Pierre, 1626-1698", "biographical_information": ["Lexicographe français"]} 1 +2024-09-11 09:03:54.182957 2024-09-11 09:03:54.182961 01de9dc8-fb71-481d-830e-dd051863786a {"md5": "27fd034eb2b1e2c706d595e0da5b8f99", "pid": "03025843X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03025843X", "source": "IDREF"}], "preferred_name": "Société d'émulation des Côtes-du-Nord", "country_associated": "fr", "authorized_access_point": "Société d'émulation des Côtes-du-Nord", "biographical_information": ["Centre d'action culturelle, place de la Résistance, 22000 Saint-Brieuc"]} 1 +2024-09-11 09:03:54.24004 2024-09-11 09:03:54.240043 8082b4d5-421d-4380-b916-cacc8138eecf {"md5": "ef8b34599020b75679ea572feed5dd86", "pid": "030281342", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030281342", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "083249745"}, "variant_name": ["UFF"], "preferred_name": "Universidade federal fluminense (Niteroi, Brésil)", "country_associated": "bl", "variant_access_point": ["UFF"], "date_of_establishment": "1960", "authorized_access_point": "Universidade federal fluminense (Niteroi, Brésil)", "biographical_information": ["Université installée à Niteroi, dans l'État de Rio de Janeiro."]} 1 +2024-09-11 09:03:54.290867 2024-09-11 09:03:54.290871 503fa9d9-06b6-49e2-b3da-c8ad9c266480 {"md5": "db7c57d19c7eee84943b6dcc5e85d679", "pid": "030322995", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030322995", "source": "IDREF"}], "variant_name": ["Caoursin, William", "Caorsinus, Guilelmus", "Caoursin, Guillelmus", "Cahoursin, Guillaume", "Caorsin, Gulielmo", "Caorsin, Guillermus", "Guillaume Caoursin"], "date_of_birth": "1430?", "date_of_death": "1455-08-24", "preferred_name": "Caoursin, Guillaume", "country_associated": "fr", "variant_access_point": ["Caoursin, William", "Caorsinus, Guilelmus", "Caoursin, Guillelmus", "Cahoursin, Guillaume", "Caorsin, Gulielmo", "Caorsin, Guillermus", "Guillaume Caoursin"], "authorized_access_point": "Caoursin, Guillaume, 1430?-1501", "biographical_information": ["Vice-chancelier de l'Ordre de Saint-Jean de Jérusalem à partir de 1456 - Homme de cabinet et diplomate, il mena plusieurs ambassades en Italie en particulier à Rome, puis à Naples (1485)", "Lieu de naissance Douai (Nord). Lieu de décès Rhodes"]} 1 +2024-09-11 09:03:54.983037 2024-09-11 09:03:54.983042 caffa3cc-f7bf-4b5b-8696-ad597552fad8 {"md5": "55f511a8d19ffb4b9d9417d1ffd28e47", "pid": "03074198X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["vie"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03074198X", "source": "IDREF"}], "preferred_name": "Viet-Nam (République). Ministry of agriculture and land development", "country_associated": "xx", "date_of_establishment": "1973?", "authorized_access_point": "Viet-Nam (République). Ministry of agriculture and land development"} 1 +2024-09-11 09:03:54.366079 2024-09-11 09:03:54.366083 717382b5-6ba0-4c93-aeb7-0be5f20d21b9 {"md5": "32dd536a2606e97ce777c0a77b711c5a", "pid": "030327687", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030327687", "source": "IDREF"}], "preferred_name": "Office national d'information sur les enseignements et les professions (France). Délégation régionale (Montpellier)", "country_associated": "fr", "authorized_access_point": "Office national d'information sur les enseignements et les professions (France). Délégation régionale (Montpellier)", "biographical_information": ["31 rue de l'Université, 34064 Montpellier cedex. Tél. 67.60.55.85"]} 1 +2024-09-11 09:03:54.420018 2024-09-11 09:03:54.420026 a066ec9f-5160-47b3-93a9-bc179dc80398 {"md5": "0d9cab9069f7a92125d13e5a92aa330c", "pid": "030343429", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030343429", "source": "IDREF"}], "preferred_name": "Rhône-Alpes. Direction régionale de l'équipement. Division Actions foncières", "country_associated": "fr", "authorized_access_point": "Rhône-Alpes. Direction régionale de l'équipement. Division Actions foncières"} 1 +2024-09-11 09:03:54.477034 2024-09-11 09:03:54.477039 ec3dd823-e444-47b6-abf2-5b9b99e05ff8 {"md5": "99449d26de279fd7b2f9a861933eba8b", "pid": "030415357", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030415357", "source": "IDREF"}], "variant_name": ["Jacobsen, Thorkild Peter Rudolph"], "date_of_birth": "1904-06-07", "date_of_death": "1993-05-02", "preferred_name": "Jacobsen, Thorkild", "country_associated": "dk", "variant_access_point": ["Jacobsen, Thorkild Peter Rudolph"], "authorized_access_point": "Jacobsen, Thorkild, 1904-1993", "biographical_information": ["Spécialiste en assyriologie et en littérature sumérienne"]} 1 +2024-09-11 09:03:54.538769 2024-09-11 09:03:54.538773 4d83e7e1-4812-4529-ab79-0d6017f0c16b {"md5": "a38ddebe0e71939eb1d360a7be146920", "pid": "030459249", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030459249", "source": "IDREF"}], "preferred_name": "Etats-Unis. Department of the Army. General staff", "country_associated": "xxu", "authorized_access_point": "Etats-Unis. Department of the Army. General staff"} 1 +2024-09-11 09:03:54.5905 2024-09-11 09:03:54.590504 6261b4a3-655a-465d-a848-63793690fe28 {"md5": "4d99874857ee41dda2ddd2a6a425e0fb", "pid": "030486882", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030486882", "source": "IDREF"}], "variant_name": ["Mylaporte Selvaraj Krishnamoorthy"], "preferred_name": "Krishnamoorthy, Mylaporte Selvaraj", "country_associated": "ii", "variant_access_point": ["Mylaporte Selvaraj Krishnamoorthy"], "authorized_access_point": "Krishnamoorthy, Mylaporte Selvaraj"} 1 +2024-09-11 09:03:54.644524 2024-09-11 09:03:54.644527 6251b8a1-e414-49c7-8820-c6ca83121282 {"md5": "83c6d714498593f6c6e38cce88862261", "pid": "030490855", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030490855", "source": "IDREF"}], "variant_name": ["CCSA"], "preferred_name": "Centro di cultura e storia amalfitana", "country_associated": "it", "variant_access_point": ["CCSA"], "date_of_establishment": "1975-05", "authorized_access_point": "Centro di cultura e storia amalfitana", "biographical_information": ["Adresse : Via Annunziatella, 44, 84011 Amalfi. Contact : 089. 871170. Télécopie : 089. 873143"]} 1 +2024-09-11 09:03:54.702045 2024-09-11 09:03:54.702049 718e7ac2-a199-483e-9107-6371906fadcd {"md5": "a61459156be7f95629d9a24baacbee8b", "pid": "030542650", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030542650", "source": "IDREF"}], "date_of_birth": "1936", "preferred_name": "Hocks, Richard A.", "country_associated": "xxu", "authorized_access_point": "Hocks, Richard A., 1936-....", "biographical_information": ["Professeur d'anglais à l' Université du Missouri, Columbia, où il enseigne la littérature américaine (en 1990)"]} 1 +2024-09-11 09:03:54.77402 2024-09-11 09:03:54.774024 6ce20316-7a8d-4a77-bb21-ed5f0d531a5f {"md5": "e0d70a298ededabace6095466721781a", "pid": "030557585", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030557585", "source": "IDREF"}], "preferred_name": "Congrès médico-social protestant", "country_associated": "fr", "date_of_termination": "1973-05", "date_of_establishment": "1973-05", "authorized_access_point": "Congrès médico-social protestant (10 ; 1973 ; Lausanne, Suisse)"} 1 +2024-09-11 09:03:54.827282 2024-09-11 09:03:54.827286 f772f3b9-1baf-4192-a97b-1fdde45e5ff7 {"md5": "51540653b58c569c55ab7f37bc328e85", "pid": "030575230", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030575230", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Bosmans, André", "authorized_access_point": "Bosmans, André, 19..-....", "biographical_information": ["Poète"]} 1 +2024-09-11 09:03:54.880068 2024-09-11 09:03:54.880072 6c91a637-13db-4a0e-9e54-45592f53bb0f {"md5": "240ac331258ad81f467117380854ee81", "pid": "030633176", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["nor"], "qualifier": "romancier", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030633176", "source": "IDREF"}], "date_of_birth": "1945", "preferred_name": "Botn, Ståle, romancier", "country_associated": "no", "authorized_access_point": "Botn, Ståle, 1945-...., romancier", "biographical_information": ["Romancier"]} 1 +2024-09-11 09:03:54.932403 2024-09-11 09:03:54.932407 7bd67868-ece0-4433-aaf7-98a37994d7d9 {"md5": "327979a584d2b68ea212150502087669", "pid": "030713234", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030713234", "source": "IDREF"}], "variant_name": ["Euronotation France"], "preferred_name": "IBCA notation (France)", "country_associated": "fr", "variant_access_point": ["Euronotation France"], "authorized_access_point": "IBCA notation (France)", "biographical_information": ["Changement de nom en mars 1993", "87 bd Haussmann, 75008 Paris. Tél. 49.24.00.03"]} 1 +2024-09-11 09:03:56.93592 2024-09-11 09:03:56.935925 477cb35e-eee6-4dfc-b9ab-80fde482adea {"md5": "bc161b415070bf793dfa1781b4aad127", "pid": "031962963", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "interprète", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031962963", "source": "IDREF"}], "date_of_birth": "1936", "preferred_name": "Gorboff, Marina, interprète", "country_associated": "fr", "authorized_access_point": "Gorboff, Marina, 1936-...., interprète", "biographical_information": ["Interprète"]} 1 +2024-09-11 09:03:55.039327 2024-09-11 09:03:55.039332 6429828b-410a-4d4f-bb26-2a3bfae65527 {"md5": "780acffdd2a78579fd4995a6b837ac82", "pid": "030745551", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030745551", "source": "IDREF"}], "variant_name": ["Centre d'hydrogéologie (Bordeaux). Association des anciens élèves"], "preferred_name": "Association des anciens élèves du Centre d'hydrogeologie (Bordeaux)", "country_associated": "fr", "variant_access_point": ["Centre d'hydrogéologie (Bordeaux). Association des anciens élèves"], "authorized_access_point": "Association des anciens élèves du Centre d'hydrogeologie (Bordeaux)"} 1 +2024-09-11 09:03:55.089736 2024-09-11 09:03:55.089741 a18601f0-1a23-443e-9d61-fff24d6b305f {"md5": "6edd3297e27cfa90084b1d19c6c889c2", "pid": "030782465", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["swe"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030782465", "source": "IDREF"}], "variant_name": ["Göteborgs universitet. Department of business administration", "Göteborgs universitet. Företagsekonomiska institutionen"], "preferred_name": "Företagsekonomiska institutionen (Göteborg, Suède)", "country_associated": "sw", "variant_access_point": ["Göteborgs universitet. Department of business administration", "Göteborgs universitet. Företagsekonomiska institutionen"], "authorized_access_point": "Företagsekonomiska institutionen (Göteborg, Suède)"} 1 +2024-09-11 09:03:55.142975 2024-09-11 09:03:55.142979 251912e8-3bd5-4f96-9b34-1667fa1c0796 {"md5": "93c6c71c4db94a4009074eebb3b58dbc", "pid": "030802997", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030802997", "source": "IDREF"}], "variant_name": ["MEG"], "preferred_name": "Matériels équipements graphiques", "country_associated": "fr", "variant_access_point": ["MEG"], "date_of_establishment": "1967", "authorized_access_point": "Matériels équipements graphiques", "biographical_information": ["ZI Les Malines, 91027 Evry. Tél. 69.89.47.93"]} 1 +2024-09-11 09:03:55.194939 2024-09-11 09:03:55.194943 b007449c-48ca-4ab9-a60e-c584400f52e0 {"md5": "39afc3ec1c826c32ebf97095a207610c", "pid": "030818095", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030818095", "source": "IDREF"}], "preferred_name": "Salon de mai", "country_associated": "fr", "date_of_termination": "1991-03-10", "date_of_establishment": "1991-02-24", "authorized_access_point": "Salon de mai (46 ; 1991 ; Paris)"} 1 +2024-09-11 09:03:55.250214 2024-09-11 09:03:55.250219 aeca5a12-9012-4e9e-ac19-ed9163edfda9 {"md5": "e16ad9583d9a474b46f021da9d7c525a", "pid": "030835828", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030835828", "source": "IDREF"}], "variant_name": ["SFOM", "Société française d'ostéopathie médicale"], "preferred_name": "Société française d'ostéopathie-myothérapie", "country_associated": "fr", "variant_access_point": ["SFOM", "Société française d'ostéopathie médicale"], "date_of_establishment": "1990", "authorized_access_point": "Société française d'ostéopathie-myothérapie"} 1 +2024-09-11 09:03:55.318874 2024-09-11 09:03:55.318878 a7963b86-dbf0-4c21-9b91-2dd36874a5e3 {"md5": "4006ba3cc1ea3f3c24b4d612767ded68", "pid": "030851025", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030851025", "source": "IDREF"}], "variant_name": ["Béranger Beaujeu, Claude-Marie", "Beaujeu, Claude-Marie Béranger"], "preferred_name": "Beaujeu, Claude-Marie", "country_associated": "fr", "variant_access_point": ["Béranger Beaujeu, Claude-Marie", "Beaujeu, Claude-Marie Béranger"], "authorized_access_point": "Beaujeu, Claude-Marie"} 1 +2024-09-11 09:03:55.3755 2024-09-11 09:03:55.375503 0e013f03-c087-468a-b939-1142813a1df6 {"md5": "0f5ece12a7ee7ed81daa202b1156acd6", "pid": "030875277", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030875277", "source": "IDREF"}], "preferred_name": "Comunicología aplicada de México", "country_associated": "mx", "authorized_access_point": "Comunicología aplicada de México"} 1 +2024-09-11 09:03:55.426673 2024-09-11 09:03:55.426677 b9c01753-ae7c-4a56-9c2d-2171d8404c50 {"md5": "3e15a635b0b3911e31121dbb7c7d447b", "pid": "03089719X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03089719X", "source": "IDREF"}], "variant_name": ["Université de Nancy II. Centre d'information et de documentation Le monde grec antique et ses zones de contact"], "preferred_name": "Centre d'information et de documentation Le monde grec antique et ses zones de contact (Nancy)", "country_associated": "fr", "variant_access_point": ["Université de Nancy II. Centre d'information et de documentation Le monde grec antique et ses zones de contact"], "authorized_access_point": "Centre d'information et de documentation Le monde grec antique et ses zones de contact (Nancy)"} 1 +2024-09-11 09:03:55.481327 2024-09-11 09:03:55.48133 cda3dd1e-8c5a-4d14-bdd9-405dd729204c {"md5": "2b22bf902632c0989e216ad65030c6e2", "pid": "030907667", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030907667", "source": "IDREF"}], "preferred_name": "Smoje, Dujka", "country_associated": "xx", "authorized_access_point": "Smoje, Dujka", "biographical_information": ["Traduit de l'allemand en français", "Professeur à la Faculté de musique de l'université de Montréal ( en 1989)"]} 1 +2024-09-11 09:03:55.531382 2024-09-11 09:03:55.531387 376f4e87-6106-4929-854d-e7c5688e2d91 {"md5": "8910a427ca3d9e9bc8327a85e88c0e02", "pid": "030913632", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030913632", "source": "IDREF"}], "preferred_name": "Association pour la communication et les libertés en Rhône-Alpes", "country_associated": "fr", "authorized_access_point": "Association pour la communication et les libertés en Rhône-Alpes", "biographical_information": ["1 pl. Championnet, 26000 Valence. Tél. 75.55.44.88"]} 1 +2024-09-11 09:03:56.819103 2024-09-11 09:03:56.819112 43b4c4e5-3e8b-4c1a-be88-df0029e93fe4 {"md5": "fdd943b7ce421df93c0df5ccb8b7ec3d", "pid": "031867359", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031867359", "source": "IDREF"}], "preferred_name": "Prämonstratenserkloster Ursberg", "authorized_access_point": "Prämonstratenserkloster Ursberg", "biographical_information": ["Monastère de Prémontrés fondé en 1125, reconstruit au XVIIe siècle en style baroque, sécularisé en 1802. Les bâtiments abritent aujourd'hui une institution pour enfants handicapés"]} 1 +2024-09-11 09:03:55.607138 2024-09-11 09:03:55.607143 51e8c01a-2511-4cbe-914a-93f5140589f7 {"md5": "c32de2eda26585d3e16a79bad6977dc1", "pid": "031015808", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031015808", "source": "IDREF"}], "variant_name": ["Museo di Palazzo di Venezia (Rome, Italie)", "Museo del Palazzo Venezia (Rome, Italie)", "Museo nazionale del Palazzo di Venezia (Rome, Italie)", "Museo nazionale Palazzo Venezia (Rome, Italie)", "National Museum of Palazzo Venezia (Rome, Italie)", "Museo nazionale di Palazzo Venezia (Rome, Italie)"], "preferred_name": "Museo di Palazzo Venezia (Rome, Italie)", "country_associated": "it", "variant_access_point": ["Museo di Palazzo di Venezia (Rome, Italie)", "Museo del Palazzo Venezia (Rome, Italie)", "Museo nazionale del Palazzo di Venezia (Rome, Italie)", "Museo nazionale Palazzo Venezia (Rome, Italie)", "National Museum of Palazzo Venezia (Rome, Italie)", "Museo nazionale di Palazzo Venezia (Rome, Italie)"], "authorized_access_point": "Museo di Palazzo Venezia (Rome, Italie)"} 1 +2024-09-11 09:03:55.663143 2024-09-11 09:03:55.663147 432f264f-880c-4f39-af8c-83295474fe9f {"md5": "b01a4cacdae050e097a513360ec1de13", "pid": "031060102", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031060102", "source": "IDREF"}], "variant_name": ["BGA"], "preferred_name": "Allemagne. Bundesgesundheitsamt", "country_associated": "gw", "variant_access_point": ["BGA"], "date_of_establishment": "1991", "authorized_access_point": "Allemagne. Bundesgesundheitsamt"} 1 +2024-09-11 09:03:55.719661 2024-09-11 09:03:55.719666 3b798601-175e-48ac-b04f-72e7ceec29d7 {"md5": "c86245ba4739f5e3f076aacb0e209815", "pid": "031064442", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031064442", "source": "IDREF"}], "variant_name": ["Meunier, Bernadette Bouchon-", "Bouchon, Bernadette"], "date_of_birth": "1948-10-07", "preferred_name": "Bouchon-Meunier, Bernadette", "country_associated": "fr", "variant_access_point": ["Meunier, Bernadette Bouchon-", "Bouchon, Bernadette"], "authorized_access_point": "Bouchon-Meunier, Bernadette, 1948-....", "biographical_information": ["Ancienne élève de l'ENSET. Docteur ès sciences. Directeur de recherche au CNRS. Présidente d'honneur du Collège de systémique de l'AFCET (en 1992)", "Directrice de thèse à l'Université Pierre et Marie Curie (en 2007)"]} 1 +2024-09-11 09:03:55.772486 2024-09-11 09:03:55.77249 7f5dbe29-b24d-42c8-bb60-878d8e8fb0fe {"md5": "73f39d50ee644338d333cf806b665479", "pid": "031133231", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031133231", "source": "IDREF"}], "variant_name": ["Eskreich, Pierre", "Vase, Pierre", "Du Vase, Pierre", "Cruche, Pierre", "Krug, Pierre"], "date_of_birth": "1520?", "date_of_death": "159.?", "preferred_name": "Eskrich, Pierre", "country_associated": "fr", "variant_access_point": ["Eskreich, Pierre", "Vase, Pierre", "Du Vase, Pierre", "Cruche, Pierre", "Krug, Pierre"], "authorized_access_point": "Eskrich, Pierre, 1520?-159.?", "biographical_information": ["Peintre, cartographe, dessinateur et brodeur. - Auteur de poèmes. - Mort après 1590. - Né à Paris"]} 1 +2024-09-11 09:03:55.825513 2024-09-11 09:03:55.825518 19c8e959-1903-4b5c-85b9-21a863900f2d {"md5": "e481b2e547586a24104bcec043f17d43", "pid": "031162568", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031162568", "source": "IDREF"}], "variant_name": ["Archaeological rescue corps (Kent, GB)"], "preferred_name": "Kent archaeological rescue unit", "country_associated": "xxk", "variant_access_point": ["Archaeological rescue corps (Kent, GB)"], "authorized_access_point": "Kent archaeological rescue unit"} 1 +2024-09-11 09:03:55.878916 2024-09-11 09:03:55.878922 0f8f7b27-8f94-4af0-aeaa-39e4395c32e3 {"md5": "6938fc2362559e1746d9aba655d88342", "pid": "031226396", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031226396", "source": "IDREF"}], "variant_name": ["Opificio fiorentino delle pietre dure", "Opificio delle pietre dure e laboratori di restauro"], "preferred_name": "Opificio delle pietre dure (Florence, Italie)", "country_associated": "it", "variant_access_point": ["Opificio fiorentino delle pietre dure", "Opificio delle pietre dure e laboratori di restauro"], "date_of_establishment": "1588-09-03", "authorized_access_point": "Opificio delle pietre dure (Florence, Italie)"} 1 +2024-09-11 09:03:55.933159 2024-09-11 09:03:55.933164 ad7682cc-80eb-40ba-b67c-9709349cf2fd {"md5": "0269267caa7b96d886f99ca3851a6a1f", "pid": "031344712", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "juriste", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031344712", "source": "IDREF"}], "date_of_birth": "1943-08-07", "preferred_name": "Schneider, Bernard, juriste", "country_associated": "sz", "authorized_access_point": "Schneider, Bernard, 1943-...., juriste", "biographical_information": ["Juriste neuchâtelois. Docteur en droit de l'Université de Neuchâtel (1973). Séjours d'études à Cologne, à La Haye et au Canada. Collaborateur scientifique à la faculté de droit de l'Université de Genève. Président du Tribunal de district du Val-de-Travers à Môtiers (1978-1996)"]} 1 +2024-09-11 09:03:55.994626 2024-09-11 09:03:55.994629 0f12ff73-78b7-4a85-bd1d-62d77e3f4671 {"md5": "f2304eed3f31ee8ae5556a59d0afd04f", "pid": "031382584", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031382584", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "168135663"}, "date_of_birth": "19XX", "preferred_name": "Brunel, Bernard", "country_associated": "fr", "authorized_access_point": "Brunel, Bernard, 19..-...."} 1 +2024-09-11 09:03:56.057077 2024-09-11 09:03:56.057081 c7e42673-80b7-4f81-aa6c-ba64dae0c173 {"md5": "9ede118883ef47473a0b23895f7eed33", "pid": "031416349", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031416349", "source": "IDREF"}], "preferred_name": "Thomas-Morus-Gesellschaft", "country_associated": "gw", "authorized_access_point": "Thomas-Morus-Gesellschaft", "biographical_information": ["Düsseldorf"]} 1 +2024-09-11 09:03:56.877351 2024-09-11 09:03:56.877355 79e59749-19ff-453e-8157-30bb8d6f27f8 {"md5": "87a3c52d1e8e096a09433a1e69b5a3b6", "pid": "031876633", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031876633", "source": "IDREF"}], "date_of_birth": "1832", "date_of_death": "1917", "preferred_name": "Choate, Joseph Hodges", "country_associated": "xx", "authorized_access_point": "Choate, Joseph Hodges, 1832-1917", "biographical_information": ["Juriste. Spécialiste de droit international. Ambassadeur des Etats-Unis à Londres"]} 1 +2024-09-11 09:03:56.11641 2024-09-11 09:03:56.116413 09b12674-8872-4dc4-bc68-0e3227cb05bf {"md5": "d256b11272b2f7fdd973d5f7a4fc813b", "pid": "031419763", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["vie", "eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031419763", "source": "IDREF"}], "variant_name": ["Phạm Cao Dương"], "date_of_birth": "1937-10-10", "preferred_name": "Phạm, Cao Dương", "country_associated": "vm", "variant_access_point": ["Phạm Cao Dương"], "parallel_access_point": ["ương, Phạm Cao, 1937-...."], "authorized_access_point": "Phạm, Cao Dương, 1937-....", "biographical_information": ["Enseignant à l'Université de Saigon (jusqu'en 1975)"]} 1 +2024-09-11 09:03:56.181355 2024-09-11 09:03:56.181359 ba680c76-be7e-4e14-836b-00281f4c0a0d {"md5": "0ff9b02eb64e23f42a495dd7cd89b1c7", "pid": "031461034", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031461034", "source": "IDREF"}], "preferred_name": "Rath, Ingo W", "country_associated": "gw", "authorized_access_point": "Rath, Ingo W", "biographical_information": ["Docteur en philosophie"]} 1 +2024-09-11 09:03:56.238158 2024-09-11 09:03:56.238162 80f5b643-2cf4-4380-be6f-9d34d080745d {"md5": "5b48737a2dccd8ccba62cd81b98a3d61", "pid": "031598285", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031598285", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "085941042"}, "date_of_birth": "1948-05-10", "preferred_name": "Ricketts, Martin J.", "country_associated": "xxk", "authorized_access_point": "Ricketts, Martin J., 1948-....", "biographical_information": ["Economiste"]} 1 +2024-09-11 09:03:56.307997 2024-09-11 09:03:56.308001 53b1378d-3fdb-4925-a93d-2774af856799 {"md5": "06ea33869e89e66ef53dd6d0f0ffb884", "pid": "031639704", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["lat"], "qualifier": "médecin", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031639704", "source": "IDREF"}], "date_of_birth": "15..", "date_of_death": "15..", "preferred_name": "Mantinus, Jacobus, médecin", "country_associated": "it", "authorized_access_point": "Mantinus, Jacobus, 15..-15.., médecin", "biographical_information": ["Médecin", "Traduit de l'hébreu en latin"]} 1 +2024-09-11 09:03:56.363664 2024-09-11 09:03:56.363668 1cf6834d-17d7-4706-b280-700c8a7cbc6d {"md5": "dc6fb19cb369d3cde29b581ec48398f5", "pid": "03165746X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03165746X", "source": "IDREF"}], "preferred_name": "Print council of America", "country_associated": "xxu", "authorized_access_point": "Print council of America"} 1 +2024-09-11 09:03:56.43193 2024-09-11 09:03:56.431935 109f7ed7-3915-450f-a60d-a44648960108 {"md5": "18e15d45d4c86de801b6068a7869102a", "pid": "031718752", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031718752", "source": "IDREF"}], "variant_name": ["Assaré, Patativa do", "Silva, Antonio Gonçalves da", "Gonçalves da Silva, Antonio"], "date_of_birth": "1909-03-05", "date_of_death": "2002-07-08", "preferred_name": "Patativa, do Assaré", "country_associated": "bl", "variant_access_point": ["Assaré, Patativa do", "Silva, Antonio Gonçalves da", "Gonçalves da Silva, Antonio"], "authorized_access_point": "Patativa, do Assaré, 1909-2002", "biographical_information": ["Poète, compositeur et chanteur brésilien. Né Antônio Gonçalves da Silva, plus connu sous le nom Patativa do Assaré"]} 1 +2024-09-11 09:03:56.489837 2024-09-11 09:03:56.489843 bcb34524-7db3-4543-ad27-bae088532b3b {"md5": "16fa32a368ac48c4fb22b0ceb81df164", "pid": "03172406X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03172406X", "source": "IDREF"}], "variant_name": ["Brousse, Hélène Homps-", "Homps, Hélène"], "date_of_birth": "19XX", "preferred_name": "Homps-Brousse, Hélène", "country_associated": "fr", "variant_access_point": ["Brousse, Hélène Homps-", "Homps, Hélène"], "authorized_access_point": "Homps-Brousse, Hélène, 19..-....", "biographical_information": ["Conservateur au Musée de la Vallée, Barcelonnette (en 1992)"]} 1 +2024-09-11 09:03:56.548806 2024-09-11 09:03:56.54881 fa4bcfb4-8656-4224-9d56-c22aa4f6eba5 {"md5": "b1cc32dec53a5d68a0d1675bddb6ee35", "pid": "03175709X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03175709X", "source": "IDREF"}], "date_of_birth": "1944-04-29", "preferred_name": "Volk, Klaus", "country_associated": "gw", "authorized_access_point": "Volk, Klaus, 1944-....", "biographical_information": ["Juriste. Spécialiste de droit pénal et de la criminologie. Professeur à l'Universität München, RFA (en 1987)"]} 1 +2024-09-11 09:03:56.62281 2024-09-11 09:03:56.622816 fc2f7b4c-2de5-4ed0-b4c7-7f771cb83e2e {"md5": "9166cfb52c4e26c97d3de7a49af984ab", "pid": "03180862X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03180862X", "source": "IDREF"}], "preferred_name": "Ouellet, Raymond", "country_associated": "fr", "authorized_access_point": "Ouellet, Raymond", "biographical_information": ["Professeur à l'Université américaine de Paris et chargé de cours à l'École nationale supérieure d'arts et métiers de Paris (en 1992)"]} 1 +2024-09-11 09:03:56.693519 2024-09-11 09:03:56.693524 e4442300-fffa-4230-b0c1-be5def01866a {"md5": "f6bb70be626d3b0a4176b6f00227be67", "pid": "031854575", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031854575", "source": "IDREF"}], "date_of_birth": "1952", "preferred_name": "Hulme, David", "country_associated": "xxu", "authorized_access_point": "Hulme, David, 1952-....", "biographical_information": ["Spécialiste de la sociologie du développement économique"]} 1 +2024-09-11 09:03:56.760555 2024-09-11 09:03:56.760557 2ea838d6-1a9e-4632-b6d6-d8f3628de0f4 {"md5": "a45940cc69d518fd6ef45c68bf012b50", "pid": "031859259", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031859259", "source": "IDREF"}], "variant_name": ["Morse, Harold Calvin Marston"], "date_of_birth": "1892-03-24", "date_of_death": "1977-06-22", "preferred_name": "Morse, Marston", "country_associated": "xxu", "variant_access_point": ["Morse, Harold Calvin Marston"], "authorized_access_point": "Morse, Marston, 1892-1977", "biographical_information": ["Mathématicien. A été en poste à l'Institute for advanced study, Princeton NJ, USA (en 1947)"]} 1 +2024-09-11 09:03:56.996202 2024-09-11 09:03:56.996205 480e034c-88af-4c20-bf52-42957a586168 {"md5": "a59fc7104872d546179e0611782eaae6", "pid": "032004184", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fin"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032004184", "source": "IDREF"}], "date_of_birth": "1953", "preferred_name": "Nykänen, Harri", "country_associated": "fi", "authorized_access_point": "Nykänen, Harri, 1953-....", "biographical_information": ["Auteur de romans policiers"]} 1 +2024-09-11 09:03:57.058449 2024-09-11 09:03:57.058452 ad1652a0-322b-464b-8876-7c79d3153ce9 {"md5": "ba32c2d999a1810fefa55ded69acdb58", "pid": "032063830", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032063830", "source": "IDREF"}], "variant_name": ["LSI", "University of Rhode Island. Law of the sea institute", "William S. Richardson school of law (Honolulu, T.H). Law of the sea institute", "University of Hawaii at Manoa. Law of the sea institute", "University of Hawaii at Manoa. William S. Richardson school of law. Law of the sea institute"], "preferred_name": "Law of the sea institute (Honolulu, T.H)", "country_associated": "xxu", "variant_access_point": ["LSI", "University of Rhode Island. Law of the sea institute", "William S. Richardson school of law (Honolulu, T.H). Law of the sea institute", "University of Hawaii at Manoa. Law of the sea institute", "University of Hawaii at Manoa. William S. Richardson school of law. Law of the sea institute"], "authorized_access_point": "Law of the sea institute (Honolulu, T.H)", "biographical_information": ["Dépendait auparavant de l'University of Rhode Island"]} 1 +2024-09-11 09:03:57.117435 2024-09-11 09:03:57.117439 da4c7b31-d370-4ac1-84f8-12bc1f3d371c {"md5": "926c5d3ba1526cbf65cc516fb3e4367a", "pid": "032075049", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032075049", "source": "IDREF"}], "preferred_name": "Siporex", "country_associated": "fr", "authorized_access_point": "Siporex", "biographical_information": ["Béton cellulaire léger autoclavé", "2 av. du 1er-mai, 91124 Palaiseau Cedex. Tél. 69.20.51.27"]} 1 +2024-09-11 09:03:57.175852 2024-09-11 09:03:57.175856 909ff9c7-5e8d-4677-96fb-6ca10cd16d40 {"md5": "c8fd4dc8739ef663d5c90efcf7f5ac1f", "pid": "032099886", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032099886", "source": "IDREF"}], "preferred_name": "Planche, Robert", "country_associated": "fr", "authorized_access_point": "Planche, Robert", "biographical_information": ["Ingénieur. En poste à l'EDF, Direction du développement et de la stratégie commerciale (en 1992)"]} 1 +2024-09-11 09:03:57.244809 2024-09-11 09:03:57.244813 9bc0d11c-f89e-49e9-a4ca-a695a015c728 {"md5": "f99c1e112c8c8892805afc67bbec7819", "pid": "032207107", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032207107", "source": "IDREF"}], "variant_name": ["Savigny"], "date_of_birth": "1820-01-19", "date_of_death": "1892-10-23", "preferred_name": "Lavoix, Henri", "country_associated": "fr", "variant_access_point": ["Savigny"], "authorized_access_point": "Lavoix, Henri, 1820-1892", "biographical_information": ["Bibliographe. Conservateur au Département des médailles et antiques de la Bibliothèque Nationale, Paris. Critique dramatique et musical à l'\\"Illustration\\" sous le pseudonyme de Savigny"]} 1 +2024-09-11 09:03:57.349051 2024-09-11 09:03:57.349058 262d53fa-1ceb-455d-9570-7fe5885bc3aa {"md5": "6a86c98752752a3213180c00da863fc9", "pid": "03225413X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03225413X", "source": "IDREF"}], "date_of_birth": "1937-05-15", "preferred_name": "Benzoni, Gino", "country_associated": "it", "authorized_access_point": "Benzoni, Gino, 1937-....", "biographical_information": ["Historien. Professeur d'histoire de l'historiographie à l'Université de Venise (en 2001)"]} 1 +2024-09-11 09:03:57.426134 2024-09-11 09:03:57.426139 5edb4875-6766-4f50-b49a-9eb9c6a3f590 {"md5": "adad905abc18ab9a266f649dea4a59e9", "pid": "032316704", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032316704", "source": "IDREF"}], "preferred_name": "Gaskiya Corporation (Zaria, Nigeria)", "country_associated": "nr", "date_of_establishment": "1931", "authorized_access_point": "Gaskiya Corporation (Zaria, Nigeria)", "biographical_information": ["Maison d'édition nigériane. Gaskiya signifie en haoussa : Truth"]} 1 +2024-09-11 09:03:57.488722 2024-09-11 09:03:57.488728 48adfe8b-6ddc-4001-bdbf-6a41c6a1a894 {"md5": "844292134622385acd994c7310668991", "pid": "032353618", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032353618", "source": "IDREF"}], "variant_name": ["SAF"], "preferred_name": "Society of American foresters", "country_associated": "xxu", "variant_access_point": ["SAF"], "date_of_establishment": "1900", "authorized_access_point": "Society of American foresters", "biographical_information": ["5400 Grosvenor Lane, Bethesda, Md., USA"]} 1 +2024-09-11 09:03:57.554337 2024-09-11 09:03:57.554342 87e8be7e-1809-4a3c-ab96-26da4740a77a {"md5": "b759a61a6e543aa20f26d056811342f7", "pid": "032395116", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032395116", "source": "IDREF"}], "preferred_name": "Association française de science économique. Colloque", "country_associated": "fr", "date_of_termination": "1988", "date_of_establishment": "1988", "authorized_access_point": "Association française de science économique. Colloque (1988)"} 1 +2024-09-11 09:03:57.626796 2024-09-11 09:03:57.6268 bd3e7307-a27c-4397-b051-403fd3d91fed {"md5": "d5391afd93157e4e7d73a0f4faec49ba", "pid": "032397402", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032397402", "source": "IDREF"}], "preferred_name": "Feldman, Stanley", "country_associated": "xx", "authorized_access_point": "Feldman, Stanley", "biographical_information": ["Professeur de sciences politiques à l'Université d'état de New York (en 1985)"]} 1 +2024-09-11 09:03:57.701323 2024-09-11 09:03:57.701328 79865d69-a11a-4942-95e3-8b54014e6605 {"md5": "d131b1f9fcfa41956b197b7cdf60e2a9", "pid": "032401248", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032401248", "source": "IDREF"}], "date_of_birth": "1929-27-08", "preferred_name": "Schick, Frederic", "country_associated": "xx", "authorized_access_point": "Schick, Frederic, 1929-....", "biographical_information": ["Professeur de philosophie. S'est intéressé à la théorie de l'action et de la décision. En poste au Département de philosophie de la Rutgers university, New Brunswick, New Jersey, USA (en 1983)"]} 1 +2024-09-11 09:03:57.77474 2024-09-11 09:03:57.774744 b35ee740-ad14-4f1e-8cb7-f9bc6dc630ca {"md5": "b4a31a483d4a8d400cd27a90fadb8bb2", "pid": "032477449", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032477449", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "087583461"}, "date_of_birth": "1934--.-..", "preferred_name": "Stolte, Dieter", "country_associated": "gw", "authorized_access_point": "Stolte, Dieter, 1934-....", "biographical_information": ["Intendant à la ZDF, RFA (en 1989)"]} 1 +2024-09-11 09:03:57.83457 2024-09-11 09:03:57.834576 d6c45fdf-26b4-46e4-a409-7f6f2c2688db {"md5": "2df47cd05cf957f5e4141595518b32c8", "pid": "032498179", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032498179", "source": "IDREF"}], "variant_name": ["Association Memòri de Castéu-Reinard"], "preferred_name": "Memòri de Castéu-Reinard", "country_associated": "fr", "variant_access_point": ["Association Memòri de Castéu-Reinard"], "date_of_establishment": "1988", "authorized_access_point": "Memòri de Castéu-Reinard", "biographical_information": ["18 rue Antoine-Ginoux, 13160 Châteaurenard"]} 1 +2024-09-11 09:03:57.91809 2024-09-11 09:03:57.918096 3f76381a-5113-4472-9a02-cb5d5f7c3e8a {"md5": "4f9a37eb1db637050104ef727054fab5", "pid": "03259626X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03259626X", "source": "IDREF"}], "variant_name": ["OPOPAC"], "preferred_name": "Journées internationales sur les problèmes fondamentaux de l'informatique parallèle et distribuée", "date_of_termination": "1993-11-26", "variant_access_point": ["OPOPAC (1993 ; Lacanau, Gironde)"], "date_of_establishment": "1993-11-23", "parallel_access_point": ["International workshop on principles of parallel computing (1993 ; Lacanau, Gironde)"], "authorized_access_point": "Journées internationales sur les problèmes fondamentaux de l'informatique parallèle et distribuée (1993 ; Lacanau, Gironde)"} 1 +2024-09-11 09:03:57.989404 2024-09-11 09:03:57.989409 1f1d3a3b-d4b3-4d1b-94cb-3fece35da319 {"md5": "7be740271e063c243a470239551d38a9", "pid": "032605641", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032605641", "source": "IDREF"}], "variant_name": ["Institut de recherche en agronomie tropicale (France). Programme de recherche CIRAD, IRAT-AGRICONGO", "Institut de recherche pour l'appui au développement agricole en zones tropicales (Congo). Programme de recherche CIRAD, IRAT-AGRICONGO"], "preferred_name": "Programme de recherche CIRAD, IRAT-AGRICONGO", "variant_access_point": ["Institut de recherche en agronomie tropicale (France). Programme de recherche CIRAD, IRAT-AGRICONGO", "Institut de recherche pour l'appui au développement agricole en zones tropicales (Congo). Programme de recherche CIRAD, IRAT-AGRICONGO"], "authorized_access_point": "Programme de recherche CIRAD, IRAT-AGRICONGO"} 1 +2024-09-11 09:03:58.051833 2024-09-11 09:03:58.051838 f469571f-d2d2-4c59-8664-115e703329d2 {"md5": "f3e54704ac1e4710ec95861a61e06614", "pid": "032613237", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "qualifier": "entomologiste", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032613237", "source": "IDREF"}], "date_of_birth": "1929-07-06", "preferred_name": "Fischer, Max, entomologiste", "country_associated": "au", "authorized_access_point": "Fischer, Max, 1929-, entomologiste", "biographical_information": ["Écrit aussi en anglais", "Entomologiste"]} 1 +2024-09-11 09:03:58.127663 2024-09-11 09:03:58.127668 f5a5775d-841a-44a8-8703-5566eafb09c0 {"md5": "6b022396c61c64066e797d3d7c98e0b5", "pid": "032638116", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032638116", "source": "IDREF"}], "preferred_name": "Kaplan, Frederick S.", "country_associated": "xxu", "authorized_access_point": "Kaplan, Frederick S.", "biographical_information": ["Chirurgien, spécialisé en chirurgie orthopédique"]} 1 +2024-09-11 09:03:58.197806 2024-09-11 09:03:58.19781 f20f172d-0c33-4bab-9a66-4555ce147f6e {"md5": "7cc3639d13d7208e25559fa57edf5800", "pid": "032649789", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032649789", "source": "IDREF"}], "variant_name": ["Lee, Danielle Juteau", "Juteau Lee, Danielle"], "date_of_birth": "1942-10-13", "preferred_name": "Juteau, Danielle", "country_associated": "xxc", "variant_access_point": ["Lee, Danielle Juteau", "Juteau Lee, Danielle"], "authorized_access_point": "Juteau, Danielle, 1942-....", "biographical_information": ["Sociologue. Professeur à l'Université d'Ottawa (en 1979)"]} 1 +2024-09-11 09:03:58.268459 2024-09-11 09:03:58.268464 e18bdeb6-c868-44cd-bf14-c634c278897f {"md5": "2d1a0f0352c281a0ba4e63b681ad3f8c", "pid": "032679629", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032679629", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Depelchin, Jacques", "country_associated": "xx", "authorized_access_point": "Depelchin, Jacques, 19..-....", "biographical_information": ["Professeur à l'université de Dar-es-Salaam (Tanzanie) (de 1975 à 1979), au Centre des études africaines de l'université Eduardo Mondlane (Mozambique) (de 1980 à 1987), professeur associé à l'université de Californie (en 1993)"]} 1 +2024-09-11 09:03:58.324912 2024-09-11 09:03:58.324916 3b9f3fb6-ee2c-4bcb-959e-d3b966ea9d34 {"md5": "804b7ecd86fc917f0030938097e47f1e", "pid": "032706391", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032706391", "source": "IDREF"}], "date_of_birth": "1954-12-29", "preferred_name": "Böttcher, Albrecht", "country_associated": "gw", "authorized_access_point": "Böttcher, Albrecht, 1954-....", "biographical_information": ["Écrit aussi en anglais", "Mathématicien. En poste à la Technische Universität Chemnitz, Sektion Mathematik, Wissenschaftsbereich Analysis, Chemnitz, Allemagne (en 1990)"]} 1 +2024-09-11 09:03:58.38136 2024-09-11 09:03:58.381364 15262a4c-612b-408b-a8eb-4f7bdd03ee86 {"md5": "d357d0659ae2d147cfbfc0c637462e14", "pid": "032722567", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032722567", "source": "IDREF"}], "date_of_birth": "1939-07-02", "preferred_name": "Larchier, Alain", "country_associated": "fr", "authorized_access_point": "Larchier, Alain, 1939-....", "biographical_information": ["Titulaire d'une maîtrise de physique. Romancier"]} 1 +2024-09-11 09:03:58.439638 2024-09-11 09:03:58.439641 6d51c044-20ff-4247-8708-3c2411d34639 {"md5": "d391989937a5df54473e1f10795471fa", "pid": "032801009", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032801009", "source": "IDREF"}], "date_of_birth": "1908-11-04", "preferred_name": "Salisbury, Harrison Evans", "country_associated": "xxu", "authorized_access_point": "Salisbury, Harrison Evans, 1908-1993", "biographical_information": ["Historien"]} 1 +2024-09-11 09:03:58.51439 2024-09-11 09:03:58.514395 00a64d84-3226-47c4-9ae6-42f0a823dc8d {"md5": "801725ce72df8654edcd617b10c692ef", "pid": "032807589", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032807589", "source": "IDREF"}], "variant_name": ["University of California, Berkeley. Bancroft library"], "preferred_name": "Bancroft library (Berkeley, Calif)", "country_associated": "xxu", "variant_access_point": ["University of California, Berkeley. Bancroft library"], "authorized_access_point": "Bancroft library (Berkeley, Calif)"} 1 +2024-09-11 09:03:58.612897 2024-09-11 09:03:58.612901 5156cbe1-633b-40c8-bdeb-559ffc34e788 {"md5": "94621447836fedbd540ef2872e975575", "pid": "032842694", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "urologue", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032842694", "source": "IDREF"}], "preferred_name": "Vanwaeyenberg, Jos, urologue", "country_associated": "be", "authorized_access_point": "Vanwaeyenberg, Jos, urologue", "biographical_information": ["Urologue"]} 1 +2024-09-11 09:03:58.700303 2024-09-11 09:03:58.700309 9610b614-86f1-411b-8c9c-e23010f70dfa {"md5": "829132f2e09413481d1f2fafd134c11a", "pid": "032846908", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032846908", "source": "IDREF"}], "variant_name": ["Garayoa, Jesús María Usunáriz", "Usunáriz, Jesús María"], "date_of_birth": "1964", "preferred_name": "Usunáriz Garayoa, Jesús María", "country_associated": "sp", "variant_access_point": ["Garayoa, Jesús María Usunáriz", "Usunáriz, Jesús María"], "authorized_access_point": "Usunáriz Garayoa, Jesús María, 1964-....", "biographical_information": ["Historien. Professeur d'histoire moderne, Universidad de Navarra, Espagne (en 2022). Membre de la Sociedad de estudios históricos de Navarra (en 1992)"]} 1 +2024-09-11 09:03:58.756978 2024-09-11 09:03:58.756982 6cf6c459-21c8-4415-8b2c-b935477ce777 {"md5": "f0cc9aa085ffd4780ebf823815a36819", "pid": "032975856", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dan", "nor", "eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032975856", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "119246236"}, "date_of_birth": "1941", "preferred_name": "Alver, Bente Gullveig", "country_associated": "dk", "authorized_access_point": "Alver, Bente Gullveig, 1941-....", "biographical_information": ["Professeur de folkloristique à l'Université de Bergen en Norvège (en 1990)", "Ecrit aussi en anglais", "Ethnologue"]} 1 +2024-09-11 09:03:58.827899 2024-09-11 09:03:58.827903 6e988b79-e38e-4609-8a90-d15d3d966159 {"md5": "ab4314f773b460f4fd9418020ee2ea23", "pid": "033004633", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033004633", "source": "IDREF"}], "variant_name": ["Leifur Grimson, William Eric"], "preferred_name": "Grimson, William Eric Leifur", "country_associated": "xx", "variant_access_point": ["Leifur Grimson, William Eric"], "authorized_access_point": "Grimson, William Eric Leifur", "biographical_information": ["Spécialiste de l'intelligence artificielle. Professeur au Department of electrical engineering, Massachusetts institute of technology, Cambridge, Massachusetts, USA (en 1990)"]} 1 +2024-09-11 09:03:58.886731 2024-09-11 09:03:58.886737 66fd39df-e471-45d3-8898-da657fbaf723 {"md5": "5c49d83285b183cb078f9bc7ee0dd195", "pid": "033033269", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033033269", "source": "IDREF"}], "date_of_birth": "1951-05-13", "preferred_name": "Mavituna, Ferda", "country_associated": "xxk", "authorized_access_point": "Mavituna, Ferda, 1951-....", "biographical_information": ["Ingénieur en biochimie"]} 1 +2024-09-11 09:03:58.954185 2024-09-11 09:03:58.954195 b59eb43e-8b23-414c-a66e-5f8efb883655 {"md5": "fc34e209698b2af50fd48dfd406fcbf2", "pid": "033070245", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033070245", "source": "IDREF"}], "preferred_name": "Assemblée plénière de l'Episcopat français", "country_associated": "fr", "date_of_termination": "1993-11-08", "date_of_establishment": "1993-11-04", "authorized_access_point": "Assemblée plénière de l'Episcopat français (1993 ; Lourdes, Hautes-Pyrénées)"} 1 +2024-09-11 09:03:59.012373 2024-09-11 09:03:59.012379 098f1329-59e9-478d-a77a-71596155808c {"md5": "0e45b1c75c0432a4218f11c028bf21a9", "pid": "033079595", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033079595", "source": "IDREF"}], "preferred_name": "Credito bergamasco", "country_associated": "it", "date_of_establishment": "1891", "authorized_access_point": "Credito bergamasco"} 1 +2024-09-11 09:03:59.071312 2024-09-11 09:03:59.071317 dc3ce167-0c0d-49b9-bed3-b5407bbf0a13 {"md5": "b6d769d1cca4fd4642439f773d83d232", "pid": "033151571", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033151571", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "085899976"}, "preferred_name": "Kingma, J.", "country_associated": "ne", "authorized_access_point": "Kingma, J."} 1 +2024-09-11 09:03:59.137158 2024-09-11 09:03:59.137162 67533de9-4706-439f-a42a-0d1eeb4dc635 {"md5": "5c172ad0b6ff988a627235f84e9e9dc8", "pid": "03321994X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03321994X", "source": "IDREF"}], "date_of_birth": "1931", "preferred_name": "Aiken, Lewis R.", "country_associated": "xxu", "authorized_access_point": "Aiken, Lewis R., 1931-....", "biographical_information": ["Psychologue. En poste à Pepperdine university, Malibu, Californie, USA (en 1993)"]} 1 +2024-09-11 09:03:59.205981 2024-09-11 09:03:59.205985 1a4f4b5a-89ff-4ee6-b737-766c60c04d02 {"md5": "a931a0b02cc477d2f68e3dd600f5b792", "pid": "033239568", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033239568", "source": "IDREF"}], "preferred_name": "Streif, Karl", "country_associated": "gw", "authorized_access_point": "Streif, Karl"} 1 +2024-09-11 09:03:59.275832 2024-09-11 09:03:59.275836 c12e44fd-a59c-46cc-853e-71fe345e3727 {"md5": "8216d39fdeb2ae99e6e6c6eb08d09d69", "pid": "033386242", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033386242", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "193120321"}, "variant_name": ["Schick, Friederike"], "date_of_birth": "1960-08-02", "preferred_name": "Schick, Friedrike", "country_associated": "gw", "variant_access_point": ["Schick, Friederike"], "authorized_access_point": "Schick, Friedrike, 1960-....", "biographical_information": ["Philosophe. Professeure de philosophie, Philosophisches Seminar, Eberhard-Karls-Universität, Tübingen, Allemagne, depuis 2007 (en 2021)"]} 1 +2024-09-11 09:03:59.331917 2024-09-11 09:03:59.331923 7b058371-0d7c-4da2-a020-f7dbca7bc891 {"md5": "80495084411199a8f60c9a771c74c148", "pid": "033392757", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033392757", "source": "IDREF"}], "variant_name": ["Linguistique africaine (Vitry-sur-Seine, Val-de-Marne)"], "preferred_name": "Association Linguistique africaine (Vitry-sur-Seine, Val-de-Marne)", "country_associated": "fr", "variant_access_point": ["Linguistique africaine (Vitry-sur-Seine, Val-de-Marne)"], "authorized_access_point": "Association Linguistique africaine (Vitry-sur-Seine, Val-de-Marne)", "biographical_information": ["1 rue Arthur-Rimbaud, 94400 Vitry-sur-Seine"]} 1 +2024-09-11 09:03:59.389072 2024-09-11 09:03:59.389079 519cb2b8-1ccc-4a95-ae09-4237458d6317 {"md5": "cc503b6d4fb2bb9b5d3414d8f912e0da", "pid": "033454175", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033454175", "source": "IDREF"}], "date_of_birth": "1960-08-08", "preferred_name": "Amrani, Abdelouahab", "country_associated": "ae", "authorized_access_point": "Amrani, Abdelouahab, 1960-....", "biographical_information": ["Titulaire d'un doctorat d'université en électronique (Toulouse 3, 1988)"]} 1 +2024-09-11 09:03:59.445554 2024-09-11 09:03:59.445558 3022b529-239f-4a77-a1ca-1621c772cf44 {"md5": "ec90b27730ae5ea065d1613675cfc483", "pid": "033478686", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033478686", "source": "IDREF"}], "date_of_birth": "1929", "preferred_name": "Hollander, John", "country_associated": "xxu", "authorized_access_point": "Hollander, John, 1929-2013", "biographical_information": ["Spécialiste de Robert Frost, poète américain"]} 1 +2024-09-11 09:03:59.511723 2024-09-11 09:03:59.511727 2f2857dd-8f0b-4bb5-b38c-6eb55767ad5c {"md5": "7a2f393351fe30a654e3a0eca415ec27", "pid": "033596344", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033596344", "source": "IDREF"}], "date_of_birth": "1960-10-31", "preferred_name": "Chapalain, Georges", "country_associated": "fr", "authorized_access_point": "Chapalain, Georges, 1960-....", "biographical_information": ["Chercheur en mécanique"]} 1 +2024-09-11 09:03:59.573971 2024-09-11 09:03:59.573975 f086dbfe-6dfb-4408-9df7-5968d56d2600 {"md5": "ff4a627be036e57856a504ea0445755e", "pid": "033614717", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033614717", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "057120641"}, "variant_name": ["CPNT", "Chasse, pêche, nature et tradition (France)", "Chasse, pêche, nature et traditions (France)", "Chasse, pêche, nature, tradition (France)", "Chasse, pêche, traditions (France)", "Mouvement Chasse, pêche, nature, traditions (France)", "Mouvement Chasse, pêche, traditions (France)"], "preferred_name": "Chasse, pêche, nature et traditions (France)", "country_associated": "fr", "variant_access_point": ["CPNT", "Chasse, pêche, nature et tradition (France)", "Chasse, pêche, nature et traditions (France)", "Chasse, pêche, nature, tradition (France)", "Chasse, pêche, traditions (France)", "Mouvement Chasse, pêche, nature, traditions (France)", "Mouvement Chasse, pêche, traditions (France)"], "date_of_establishment": "1989", "authorized_access_point": "Chasse, pêche, nature et traditions (France)", "biographical_information": ["Mouvement politique né à l'issue des manifestations de chasseurs (1989) contre la directive européenne sur la conservation des oiseaux sauvages (n° 79-409) ; créé par André Goustat, président du Syndicat national des chasseurs, entré ainsi dans l'action politique nationale : d'abord constitué localement en vue des élections européennes de 1989 (Liste Chasse-pêche-traditions), le mouvement s'est ensuite organisé au niveau national, devenant CPNT", "Centre d'affaires Praxis, 245 bd de la Paix, 64000 Pau. Avant juil. 2000 : 60 bd Voltaire, 75011 Paris"]} 1 +2024-09-11 09:03:59.635416 2024-09-11 09:03:59.63542 73731c0c-4261-436e-9c7c-967c445dee46 {"md5": "d6ace434c4c420cd36632e0d4967cb74", "pid": "033846987", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033846987", "source": "IDREF"}], "preferred_name": "Colloque international Acquisition d'une langue étrangère", "date_of_termination": "1993-05", "date_of_establishment": "1993-05", "authorized_access_point": "Colloque international Acquisition d'une langue étrangère (09 ; 1993 ; Saint-Etienne)", "biographical_information": ["Organisé par le Centre international de langue et de civilisation de l'Université Jean Monnet, Saint-Etienne"]} 1 +2024-09-11 09:03:59.694104 2024-09-11 09:03:59.694109 e026f916-990e-4275-bb6d-f53b2475eef4 {"md5": "8542cdb3efdc039ce7ecc7f738bac8b2", "pid": "033864357", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033864357", "source": "IDREF"}], "date_of_birth": "1954", "preferred_name": "Séébold, Éric", "country_associated": "fr", "authorized_access_point": "Séébold, Éric, 1954-....", "biographical_information": ["Spécialiste de littérature française"]} 1 +2024-09-11 09:03:59.75603 2024-09-11 09:03:59.756035 7b8cba54-f60a-4ec5-aa56-4db7f31897c8 {"md5": "0360180657861e5653c645ed992296d7", "pid": "03386540X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03386540X", "source": "IDREF"}], "variant_name": ["Hallett, Penelope Hugues-"], "preferred_name": "Hugues-Hallett, Penelope", "country_associated": "xxk", "variant_access_point": ["Hallett, Penelope Hugues-"], "authorized_access_point": "Hugues-Hallett, Penelope", "biographical_information": ["Professeur de littérature anglaise à Oxford, spécialiste de littérature enfantine du XIXe siècle (en 1994)"]} 1 +2024-09-11 09:03:59.818969 2024-09-11 09:03:59.818971 1eadd65d-f103-4703-badc-cf1da911bb97 {"md5": "c9b0f2e7775df2c946c0cb724a480f0e", "pid": "033883262", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033883262", "source": "IDREF"}], "date_of_birth": "1940-02-06", "preferred_name": "Kalaoui, Ghassan", "country_associated": "ts", "authorized_access_point": "Kalaoui, Ghassan, 1940-....", "biographical_information": ["Titulaire d'un doctorat de 3e cycle en sciences économiques (Montpellier 1, 1988)"]} 1 +2024-09-11 09:03:59.883407 2024-09-11 09:03:59.883411 9ce64de3-2ab3-488b-b3dd-9f9ed6e43db6 {"md5": "5d35871a08484dbe93882ce17b302393", "pid": "033900795", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033900795", "source": "IDREF"}], "preferred_name": "Milne, Herbert John Mansfield", "country_associated": "xxk", "authorized_access_point": "Milne, Herbert John Mansfield", "biographical_information": ["Conservateur-assistant, Department of manuscripts, British museum (en 1934)"]} 1 +2024-09-11 09:03:59.943395 2024-09-11 09:03:59.943399 d5358790-5644-462b-8caa-6187bca3b374 {"md5": "f3be8e5f2cc3eef407cb4a9f5357a4dc", "pid": "03391737X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03391737X", "source": "IDREF"}], "variant_name": ["CIRILLIS", "Université de Poitiers. Centre interuniversitaire de recherches sur l'Italie (langue, littérature, interactions culturelles, société et mentalités)", "Université de Toulouse-Le Mirail. Centre interuniversitaire de recherches sur l'Italie (langue, littérature, interactions culturelles, société et mentalités)", "Université Michel de Montaigne-Bordeaux III. Centre interuniversitaire de recherches sur l'Italie (langue, littérature, interactions culturelles, société et mentalités)"], "preferred_name": "Centre interuniversitaire de recherches sur l'Italie (langue, littérature, interactions culturelles, société et mentalités) (Talence, Gironde)", "country_associated": "fr", "variant_access_point": ["CIRILLIS", "Université de Poitiers. Centre interuniversitaire de recherches sur l'Italie (langue, littérature, interactions culturelles, société et mentalités)", "Université de Toulouse-Le Mirail. Centre interuniversitaire de recherches sur l'Italie (langue, littérature, interactions culturelles, société et mentalités)", "Université Michel de Montaigne-Bordeaux III. Centre interuniversitaire de recherches sur l'Italie (langue, littérature, interactions culturelles, société et mentalités)"], "authorized_access_point": "Centre interuniversitaire de recherches sur l'Italie (langue, littérature, interactions culturelles, société et mentalités) (Talence, Gironde)"} 1 +2024-09-11 09:04:00.035091 2024-09-11 09:04:00.035098 dec5e7cf-b41b-4af6-b3e5-888fb8845d9d {"md5": "9c25e82cd1a97cc233e2b7cc0ce09ab2", "pid": "033922055", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033922055", "source": "IDREF"}], "preferred_name": "Vimond, Jack", "country_associated": "fr", "authorized_access_point": "Vimond, Jack", "biographical_information": ["Attaché au Service des statistiques industrielles (en 1995)"]} 1 +2024-09-11 09:04:00.09776 2024-09-11 09:04:00.097765 f53b9136-a595-4a53-991b-31e2dc736f37 {"md5": "5f4ebe0ce53fcab0b9697e7cc3dd359f", "pid": "033931941", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033931941", "source": "IDREF"}], "preferred_name": "Theureau, Louis", "country_associated": "fr", "authorized_access_point": "Theureau, Louis", "biographical_information": ["Avocat et publiciste, membre de l'Académie impériale des sciences, arts et belles lettres de Caen"]} 1 +2024-09-11 09:04:00.159938 2024-09-11 09:04:00.159942 d63d9d4c-3945-4ac5-915a-7944d2671ece {"md5": "7fba0d5537e558b0dc61cbdb1c8cc8ba", "pid": "033938989", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033938989", "source": "IDREF"}], "date_of_birth": "1959-12-31", "preferred_name": "Plasa, Carl", "country_associated": "xxk", "authorized_access_point": "Plasa, Carl, 1959-....", "biographical_information": ["Professeur d'anglais, School of English, University of Wales College of Cardiff, GB (en 1994)"]} 1 +2024-09-11 09:04:00.218694 2024-09-11 09:04:00.218703 6916e74e-632f-430f-b17e-2609e59245f2 {"md5": "5f54543504f5740181a589ac62c46fb4", "pid": "033976171", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033976171", "source": "IDREF"}], "variant_name": ["JF omnisports (Cholet, Maine-et-Loire)"], "preferred_name": "Jeune France omnisports (Cholet, Maine-et-Loire)", "country_associated": "fr", "variant_access_point": ["JF omnisports (Cholet, Maine-et-Loire)"], "authorized_access_point": "Jeune France omnisports (Cholet, Maine-et-Loire)", "biographical_information": ["47 rue Alphonse-Darmaillacq, 49300 Cholet. Tél. 41.62.28.80"]} 1 +2024-09-11 09:04:00.285173 2024-09-11 09:04:00.285176 ded38ec1-4272-4d2a-a85d-4402d8ff956a {"md5": "a3f880307573478675512c443e4c8f3b", "pid": "034035370", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["pro"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034035370", "source": "IDREF"}], "variant_name": ["Compagnie très gaie des sept troubadours de Toulouse", "Consistoire du gay savoir (Toulouse)"], "preferred_name": "Sobregaya companhia dels VII trobadors de Tolosa", "country_associated": "fr", "variant_access_point": ["Compagnie très gaie des sept troubadours de Toulouse", "Consistoire du gay savoir (Toulouse)"], "date_of_establishment": "1323", "authorized_access_point": "Sobregaya companhia dels VII trobadors de Tolosa", "biographical_information": ["Académie de poésie de langue d'oc"]} 1 +2024-09-11 09:04:00.344418 2024-09-11 09:04:00.344422 5e03b084-1bdb-4bfe-bc0e-da2dbbbbe03b {"md5": "67548f291ae532718c55e2cbdf930fa2", "pid": "034035818", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034035818", "source": "IDREF"}], "preferred_name": "Stendhal-Club", "country_associated": "fr", "date_of_establishment": "1904?", "authorized_access_point": "Stendhal-Club", "biographical_information": ["Association consacrée à l'étude et à la diffusion de l'oeuvre de Stendhal"]} 1 +2024-09-11 09:04:00.402249 2024-09-11 09:04:00.402256 ab9c0308-8a64-4435-b074-f17a30f4222c {"md5": "64ad3c3e393c926ac03718ce3435faf7", "pid": "034075763", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034075763", "source": "IDREF"}], "preferred_name": "Association des membres de la Légion d'Honneur décorés au péril de leur vie (France)", "country_associated": "fr", "authorized_access_point": "Association des membres de la Légion d'Honneur décorés au péril de leur vie (France)", "biographical_information": ["32 av. de l'Opéra, 75002 Paris (1977)"]} 1 +2024-09-11 09:04:00.525343 2024-09-11 09:04:00.525347 4a820ed0-4f18-4c50-8774-47a64bc6fabd {"md5": "cb9ffa60ec1f877c6b7b755e9114109f", "pid": "034112774", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034112774", "source": "IDREF"}], "preferred_name": "Association libre (Paris)", "country_associated": "fr", "authorized_access_point": "Association libre (Paris)", "biographical_information": ["Assoc. L. de 1901", "13 allée Anne de Beaujeu, 75019 Paris. Tél. 42.08.40.89"]} 1 +2024-09-11 09:04:00.580274 2024-09-11 09:04:00.580278 a223fde1-88c0-404d-b238-9588c44603ad {"md5": "bfd0e31712c05fa10739f78df62213b6", "pid": "034263802", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034263802", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "027526976"}, "variant_name": ["FLNC", "Ex-FLNC"], "preferred_name": "Front de libération nationale de la Corse", "country_associated": "fr", "variant_access_point": ["FLNC", "Ex-FLNC"], "date_of_establishment": "1976-05-05", "authorized_access_point": "Front de libération nationale de la Corse", "biographical_information": ["Mouvement nationaliste corse issu le 5 mai 1976 du Front paysan de libération de la Corse (1975) et de l'Action pour la renaissance de la Corse (1967). Dissout par le gouvernement de Pierre Mauroy en janvier 1983, il devient alors clandestin sous le nom de Ex-FLNC et se dote d'une \\"vitrine poltique\\" en 1987 : A cuncolta naziunalista. Fin 89-début 90, le mouvement éclate en trois : Accolta naziunale corsa et sa branche armée Resistanza, le Mouvement pour l'autodetermination et sa branche armée FLNC Canal habituel et enfin perdure A cuncolta naziunalista avec le FLNC Canal historique comme branche armée"]} 1 +2024-09-11 09:04:00.639183 2024-09-11 09:04:00.639187 0e8bb849-c4e1-4d43-812c-3115ff987878 {"md5": "c9a13fb2275ab029e0bf9d0cc1b6d767", "pid": "034287728", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034287728", "source": "IDREF"}], "variant_name": ["NSSAR", "SAR", "Sons of the American revolution", "Society of the sons of American revolution"], "preferred_name": "National society of the sons of American revolution", "country_associated": "xxu", "variant_access_point": ["NSSAR", "SAR", "Sons of the American revolution", "Society of the sons of American revolution"], "date_of_establishment": "1889", "authorized_access_point": "National society of the sons of American revolution", "biographical_information": ["Association regroupant des descendants de combattants de la guerre d'Indépendance des Etats-Unis (1775-1783)"]} 1 +2024-09-11 09:04:00.699712 2024-09-11 09:04:00.699717 c9cf51dc-3ca3-492d-a96f-f83c6f58f49e {"md5": "9b1d22e83c86dca1cca8420a7829e97a", "pid": "034310770", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034310770", "source": "IDREF"}], "preferred_name": "Cariplo foundation for scientific research", "country_associated": "xx", "date_of_establishment": "1991", "authorized_access_point": "Cariplo foundation for scientific research", "biographical_information": ["Cette fondation se préocupe des problèmes de qualité de vie induits par le développement économique, social et technologique"]} 1 +2024-09-11 09:04:00.759138 2024-09-11 09:04:00.759143 80b4febe-9912-4367-a5ff-84d2305895c9 {"md5": "8c2ce27b74620a0269b9f8d960862b9f", "pid": "034314873", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["tur"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034314873", "source": "IDREF"}], "variant_name": ["Ankara üniversitesi. İlâhihât fakültesi. Türk ve i̇slâm sanatlari tarihi enstitüsü", "Ankara üniversitesi. Türk ve i̇slâm sanatlari tarihi enstitüsü"], "preferred_name": "Türk ve i̇slâm sanatlari tarihi enstitüsü (Ankara)", "country_associated": "tu", "variant_access_point": ["Ankara üniversitesi. İlâhihât fakültesi. Türk ve i̇slâm sanatlari tarihi enstitüsü", "Ankara üniversitesi. Türk ve i̇slâm sanatlari tarihi enstitüsü"], "authorized_access_point": "Türk ve i̇slâm sanatlari tarihi enstitüsü (Ankara)"} 1 +2024-09-11 09:04:00.822399 2024-09-11 09:04:00.822404 ba384e4b-9690-4f49-9992-3c0286dd0029 {"md5": "bd92a3c98fac8c0a166f54996a35f8d6", "pid": "03433999X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03433999X", "source": "IDREF"}], "variant_name": ["ENSOCAT"], "preferred_name": "Ecole nationale des sous-officiers du Commissariat de l'armée de terre (Auch)", "country_associated": "fr", "variant_access_point": ["ENSOCAT"], "authorized_access_point": "Ecole nationale des sous-officiers du Commissariat de l'armée de terre (Auch)", "biographical_information": ["Quartier Espagne, BP 402, 32008 Auch cedex. Tél. 62.63.08.22"]} 1 +2024-09-11 09:04:00.89848 2024-09-11 09:04:00.898485 60b7fb9b-a6c5-4777-8dea-4715da3bd321 {"md5": "5f35291baa6c98305751ceca926a9e2e", "pid": "034343237", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034343237", "source": "IDREF"}], "variant_name": ["Massachusetts institute of technology. Union of concerned scientists"], "preferred_name": "Union of concerned scientists (Cambridge, Mass)", "country_associated": "xxu", "variant_access_point": ["Massachusetts institute of technology. Union of concerned scientists"], "authorized_access_point": "Union of concerned scientists (Cambridge, Mass)"} 1 +2024-09-11 09:04:00.957926 2024-09-11 09:04:00.957929 ce49f490-7bb6-477a-be5b-7cdda7dc3e62 {"md5": "3fe47e50dcb55f363287452dfc9aeee8", "pid": "034358218", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034358218", "source": "IDREF"}], "variant_name": ["WTCA"], "preferred_name": "World trade centers association", "variant_access_point": ["WTCA"], "date_of_establishment": "1968", "authorized_access_point": "World trade centers association", "biographical_information": ["One World trade center, Suite 7701 New York, N.Y. 10048"]} 1 +2024-09-11 09:04:01.019437 2024-09-11 09:04:01.019445 3a52c361-5eda-4df7-b7da-68171d90374b {"md5": "fd5f9ef3efd1001327d7bf07ab283f80", "pid": "034388397", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034388397", "source": "IDREF"}], "variant_name": ["Maister, David H"], "preferred_name": "Maister, David", "country_associated": "xxu", "variant_access_point": ["Maister, David H"], "authorized_access_point": "Maister, David", "biographical_information": ["Ancien professeur à la Harvard Business School. Spécialisé dans le conseil en gestion (en 1996)"]} 1 +2024-09-11 09:04:01.095164 2024-09-11 09:04:01.095168 995eea93-cdf5-49ec-b80a-822b89be92ec {"md5": "b5d2a8758d19675f62b18be598f1c0e4", "pid": "034511474", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut", "eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034511474", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "086006452"}, "variant_name": ["Schrijverr, Emile George Lodewijk", "Schrijverr, E. G. L."], "date_of_birth": "1962", "preferred_name": "Schrijver, Emile G. L.", "country_associated": "ne", "variant_access_point": ["Schrijverr, Emile George Lodewijk", "Schrijverr, E. G. L."], "authorized_access_point": "Schrijver, Emile G. L., 1962-....", "biographical_information": ["Traduit de l'hébreu en anglais.", "Spécialiste des manuscrits et des imprimés hébreux. - Directeur, Menasseh ben Israel Institute for Jewish social and cultural studies, Amsterdam (1996-2004). - Conservateur, Bibliotheca Rosenthaliana, University of Amsterdam (en 2011)."]} 1 +2024-09-11 09:04:01.153352 2024-09-11 09:04:01.153357 14a5311c-719a-4b27-b97d-69f9b758b995 {"md5": "efb1b969c3892126a920ecc15d5d55a8", "pid": "034517928", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034517928", "source": "IDREF"}], "variant_name": ["Association des amis du vieux Chamalières", "Société des amis de Chamalières"], "preferred_name": "Société des amis du vieux Chamalières", "country_associated": "fr", "variant_access_point": ["Association des amis du vieux Chamalières", "Société des amis de Chamalières"], "date_of_establishment": "1977-02-08", "authorized_access_point": "Société des amis du vieux Chamalières", "biographical_information": ["Changement de dénomination le 15 décembre 1995", "Mairie, 63400 Chamalières"]} 1 +2024-09-11 09:04:01.242761 2024-09-11 09:04:01.242767 28ea5ab4-11a0-4b86-bcf8-b9607572a78b {"md5": "9c06115146e6440d5ada4f3923208c27", "pid": "034537015", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034537015", "source": "IDREF"}], "variant_name": ["Finlande. Miljöministeriet"], "preferred_name": "Finlande. Ympäristöministeriö", "country_associated": "fi", "variant_access_point": ["Finlande. Miljöministeriet"], "authorized_access_point": "Finlande. Ympäristöministeriö"} 1 +2024-09-11 09:04:01.310467 2024-09-11 09:04:01.310471 fc2e09f6-ed97-4e91-830e-01b2cc092df3 {"md5": "99e82da8bf473a179886f0dc762e24a4", "pid": "034561528", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034561528", "source": "IDREF"}], "variant_name": ["SEAE-CFDT", "Confédération française démocratique du travail. Fédération des personnels de la Défense nationale. Syndicat des établissements et arsenaux de l'état, des états-majors du Var et de la région maritime", "Confédération française démocratique du travail. Syndicat des établissements et arsenaux de l'état, des états-majors du Var et de la région maritime"], "preferred_name": "Syndicat des établissements et arsenaux de l'état, des états-majors du Var et de la région maritime-CFDT", "country_associated": "fr", "variant_access_point": ["SEAE-CFDT", "Confédération française démocratique du travail. Fédération des personnels de la Défense nationale. Syndicat des établissements et arsenaux de l'état, des états-majors du Var et de la région maritime", "Confédération française démocratique du travail. Syndicat des établissements et arsenaux de l'état, des états-majors du Var et de la région maritime"], "authorized_access_point": "Syndicat des établissements et arsenaux de l'état, des états-majors du Var et de la région maritime-CFDT"} 1 +2024-09-11 09:04:01.369669 2024-09-11 09:04:01.369674 b6c9f377-b9c7-4a83-94a2-3701c94cfa21 {"md5": "15ec4db4aef6ffa388333ddff85fc402", "pid": "034612998", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034612998", "source": "IDREF"}], "preferred_name": "Cherry, Steven", "country_associated": "xxk", "authorized_access_point": "Cherry, Steven", "biographical_information": ["Historien en économie et en sciences sociales. En poste : University of East Anglia, Norwich, GB (en 1996)"]} 1 +2024-09-11 09:04:01.440638 2024-09-11 09:04:01.440642 43e03c22-dfa0-43ef-9ad9-84f4aadc5387 {"md5": "30e3bd7e8229faf77b16ccac6d52106d", "pid": "034663525", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034663525", "source": "IDREF"}], "preferred_name": "Dardenne, Henriette", "country_associated": "fr", "authorized_access_point": "Dardenne, Henriette"} 1 +2024-09-11 09:04:01.496955 2024-09-11 09:04:01.49696 8bf2917d-be7d-45f7-8841-dab6fc9528fe {"md5": "972434e2a2134271ea943b86ee1bbc0c", "pid": "034692711", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034692711", "source": "IDREF"}], "variant_name": ["Institut français (Taipei). Service économique et commercial"], "preferred_name": "Institut français (Taipei). Poste d'expansion économique", "country_associated": "fr", "variant_access_point": ["Institut français (Taipei). Service économique et commercial"], "authorized_access_point": "Institut français (Taipei). Poste d'expansion économique", "biographical_information": ["Suite 1401, 14/F Bank Tower, N° 205 Tunhwa North Road, PO Box 87-781, Taipei-Taiwan. Mél : taipei@dree.org"]} 1 +2024-09-11 09:04:01.556788 2024-09-11 09:04:01.556792 3f5f586a-3dea-4263-84d8-a9fc27402f86 {"md5": "5f15e323e15435813a061ec363a7e636", "pid": "034696601", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034696601", "source": "IDREF"}], "preferred_name": "Syndicat central des vétérinaires-inspecteurs de boucherie (France)", "country_associated": "fr", "authorized_access_point": "Syndicat central des vétérinaires-inspecteurs de boucherie (France)"} 1 +2024-09-11 09:04:01.6134 2024-09-11 09:04:01.613404 f55617f9-899e-4e4a-ac1e-78fffef9a0e4 {"md5": "a54a4b0f1790245dfcec6d505f61ee65", "pid": "034702105", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034702105", "source": "IDREF"}], "date_of_birth": "1954", "preferred_name": "Corcos, Daniel M", "country_associated": "xxu", "authorized_access_point": "Corcos, Daniel M, 1954-....", "biographical_information": ["En poste : University of Illinois at Chicago, USA (en 1993)"]} 1 +2024-09-11 09:04:07.328689 2024-09-11 09:04:07.328693 f04638dd-b1d9-4bd1-b8b5-49a75a54cb65 {"md5": "fbb0041dcf8007ee1d8d12624a62f23f", "pid": "05769009X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/05769009X", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Lasserre, Solange", "country_associated": "fr", "authorized_access_point": "Lasserre, Solange", "biographical_information": ["Auteure de romans"]} 1 +2024-09-11 09:04:01.679809 2024-09-11 09:04:01.679814 3a56173b-f7ed-4e14-88bb-057ce1656e56 {"md5": "6e18c65f90b803bac0b55c5afec57a3e", "pid": "034710647", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034710647", "source": "IDREF"}], "variant_name": ["Centre hospitalier spécialisé (Cadillac, Gironde)", "CHS (Cadillac, Gironde)", "Hôpital psychiatrique autonome de Cadillac (Gironde)", "HPAC", "Hôpital Sainte-Marguerite (Cadillac, Gironde)", "Asile d'aliénés (Cadillac, Gironde)", "Asile public autonome d'aliénés (Cadillac, Gironde)", "Asile public d'aliénés (Cadillac, Gironde)", "Asile public (Cadillac, Gironde)", "Hospice de la Charité (Cadillac, Gironde)", "Hôpital de la Charité (Cadillac, Gironde)"], "preferred_name": "Hôpital psychiatrique départemental (Cadillac, Gironde)", "country_associated": "fr", "variant_access_point": ["Centre hospitalier spécialisé (Cadillac, Gironde)", "CHS (Cadillac, Gironde)", "Hôpital psychiatrique autonome de Cadillac (Gironde)", "HPAC", "Hôpital Sainte-Marguerite (Cadillac, Gironde)", "Asile d'aliénés (Cadillac, Gironde)", "Asile public autonome d'aliénés (Cadillac, Gironde)", "Asile public d'aliénés (Cadillac, Gironde)", "Asile public (Cadillac, Gironde)", "Hospice de la Charité (Cadillac, Gironde)", "Hôpital de la Charité (Cadillac, Gironde)"], "date_of_establishment": "1617", "authorized_access_point": "Hôpital psychiatrique départemental (Cadillac, Gironde)", "biographical_information": ["Fondé en remplacement de l'Hôpital Saint-Léonard qui datait vraisemblablement du XIe s., il est aussi appelé Hôpital Sainte-Marguerite. - Créé en 1617 par Jean-Louis de Nogaret pour soigner les pélerins malades sur le chemin de Saint-Jacques, l'hôpital, géré par les Frères de la Charité se spécialise très tôt dans les maladies mentales. - Géré par les Frères de la Charité de Saint-Jean-de-Dieu jusqu'à la Révolution, puis par les Soeurs de la Sagesse à partir de 1808. - Devenu Asile des aliénés en 1838, puis Hôpital psychiatrique autonome au XXe s. puis Hôpital psychiatrique départemental en 1970"]} 1 +2024-09-11 09:04:01.74733 2024-09-11 09:04:01.747334 e1e3d81e-dc0f-46ce-8e44-83c639e9461f {"md5": "bb2084ccf0a90e5b143ca475aa1b7f0f", "pid": "034731695", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034731695", "source": "IDREF"}], "date_of_birth": "1947-11-24", "preferred_name": "Findlay, William", "country_associated": "xxk", "authorized_access_point": "Findlay, William, 1947-....", "biographical_information": ["Informaticien. En poste à l'université de Glasgow, GB (en 1987)"]} 1 +2024-09-11 09:04:01.812775 2024-09-11 09:04:01.812779 5055a9de-170b-4a7b-bb3f-80bea98671b1 {"md5": "b76b45ff33ac98e2aa7ff1a66976a879", "pid": "034830936", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fin", "eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034830936", "source": "IDREF"}], "date_of_birth": "1952", "preferred_name": "Syreeni, Kari", "country_associated": "fi", "authorized_access_point": "Syreeni, Kari, 1952-...."} 1 +2024-09-11 09:04:01.888859 2024-09-11 09:04:01.888864 f295196b-6393-430d-80c0-91c7d847a049 {"md5": "ffeb01d5bc6439deee6392739662d3da", "pid": "034833064", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034833064", "source": "IDREF"}], "preferred_name": "Companhia Jaufré Rudel (Toulouse)", "country_associated": "fr", "authorized_access_point": "Companhia Jaufré Rudel (Toulouse)"} 1 +2024-09-11 09:04:01.944953 2024-09-11 09:04:01.944957 d2406bb1-a814-453e-8a25-86fffa579277 {"md5": "fe71580921ebe96dd622dd4a43200af0", "pid": "034886060", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034886060", "source": "IDREF"}], "variant_name": ["Erasmus universiteit (Rotterdam, Pays-Bas). Juridisch instituut"], "preferred_name": "Juridisch instituut (Rotterdam, Pays-Bas)", "country_associated": "ne", "variant_access_point": ["Erasmus universiteit (Rotterdam, Pays-Bas). Juridisch instituut"], "authorized_access_point": "Juridisch instituut (Rotterdam, Pays-Bas)"} 1 +2024-09-11 09:04:02.003581 2024-09-11 09:04:02.003586 04cb9c17-ca84-4021-88f3-bd913c8a3b3e {"md5": "da83672822c0028ccd8e795f5706db5d", "pid": "034922903", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034922903", "source": "IDREF"}], "variant_name": ["DAH", "DHA", "United nations. Department of humanitarian affairs"], "preferred_name": "Nations Unies. Département des affaires humanitaires", "country_associated": "xx", "variant_access_point": ["DAH", "DHA", "United nations. Department of humanitarian affairs"], "date_of_establishment": "1992", "authorized_access_point": "Nations Unies. Département des affaires humanitaires", "biographical_information": ["Succède au Bureau de coordonnateur des Nations Unies pour les secours en cas de catastrophe", "Palais des Nations, CH-1211 Genève 10"]} 1 +2024-09-11 09:04:02.075043 2024-09-11 09:04:02.075048 3996c0ce-91d4-42e8-abd5-699c4d72a237 {"md5": "f4cb6d49deb8758e0f07e142f4c55e9f", "pid": "034931929", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["swe"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034931929", "source": "IDREF"}], "date_of_birth": "1959", "preferred_name": "Hansen, Peter", "country_associated": "sw", "authorized_access_point": "Hansen, Peter, 1959-....", "biographical_information": ["Historien de la littérature"]} 1 +2024-09-11 09:04:02.13786 2024-09-11 09:04:02.137865 511b21fc-0dc7-4fb7-b86a-fdfdb899b543 {"md5": "95aea11caaa7627cfe9b3648d51bed3f", "pid": "034938656", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034938656", "source": "IDREF"}], "date_of_birth": "1946-02-15", "preferred_name": "Gänzl, Kurt", "country_associated": "at", "authorized_access_point": "Gänzl, Kurt, 1946-....", "biographical_information": ["Pseudonyme de Brian Roy Gallas. Auteur d'ouvrages sur le théâtre musical. A été chanteur, New Zealand Opera company et ensuite agent et directeur artistique dans le domaine de la comédie musicale"]} 1 +2024-09-11 09:04:02.196533 2024-09-11 09:04:02.196536 9fc86227-2b21-44cc-b23f-9ece8fc7b4be {"md5": "971e4195e03f38ab32bad16cc80307a4", "pid": "034953809", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034953809", "source": "IDREF"}], "preferred_name": "Garden society (New York)", "country_associated": "xxu", "authorized_access_point": "Garden society (New York)"} 1 +2024-09-11 09:04:02.25912 2024-09-11 09:04:02.259125 795ff95d-3d86-4ff9-89f1-5d37ade1ff42 {"md5": "c8da14046d8953190e1306d0386bf0b4", "pid": "035009039", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035009039", "source": "IDREF"}], "preferred_name": "Ecole nationale de médecine et de pharmacie (Caen)", "country_associated": "fr", "date_of_termination": "1968-10-01", "authorized_access_point": "Ecole nationale de médecine et de pharmacie (Caen)"} 1 +2024-09-11 09:04:02.31529 2024-09-11 09:04:02.315293 2ef49862-5abc-4b42-80f9-fdbe30f04365 {"md5": "4876dd35857c771c31dd6986a9103628", "pid": "035068825", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035068825", "source": "IDREF"}], "preferred_name": "Bresson (Isère)", "country_associated": "fr", "authorized_access_point": "Bresson (Isère)", "biographical_information": ["38057 Bresson"]} 1 +2024-09-11 09:04:02.377513 2024-09-11 09:04:02.377518 0cb1374e-54db-4edb-babb-4fe6e89b668d {"md5": "3f5a4972db017593bc0e6388123b1715", "pid": "035124199", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035124199", "source": "IDREF"}], "date_of_birth": "1955-09-07", "preferred_name": "Cooper, Alice Holmes", "country_associated": "xxu", "authorized_access_point": "Cooper, Alice Holmes, 1955-....", "biographical_information": ["Politologue. En poste à l'Université du Mississippi (en 1996)"]} 1 +2024-09-11 09:04:02.434742 2024-09-11 09:04:02.434747 982cc9d6-cf9e-42f0-8d07-af4f18acfe7d {"md5": "f12b4363427ea2ec7489dea6ba1c387f", "pid": "035137045", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["tur"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035137045", "source": "IDREF"}], "preferred_name": "Karaer, İbrahim", "country_associated": "tu", "authorized_access_point": "Karaer, İbrahim"} 1 +2024-09-11 09:04:02.502515 2024-09-11 09:04:02.502519 9e8bec85-6635-4f7a-8ea4-a715014ab8c5 {"md5": "5222552856e6e348bc87cccf9018ef72", "pid": "035170867", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035170867", "source": "IDREF"}], "date_of_birth": "1937-06-16", "preferred_name": "Lamberti, Franco", "country_associated": "it", "authorized_access_point": "Lamberti, Franco, 1937-....", "biographical_information": ["Ecrit aussi en anglais", "Agronome. Spécialiste en phytopathologie. Directeur de : Istituto di nematologia agraria, Bari, Italie (en 1986)"]} 1 +2024-09-11 09:04:02.57831 2024-09-11 09:04:02.578313 0c3e18fe-8a98-4dce-b4a0-9c4d7092ec9b {"md5": "3745d7b0d761ff363a8894dd3177645c", "pid": "035347988", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035347988", "source": "IDREF"}], "preferred_name": "Syndicat intercommunal à vocation multiple du Pays de Longuyon", "country_associated": "fr", "date_of_establishment": "1997", "authorized_access_point": "Syndicat intercommunal à vocation multiple du Pays de Longuyon", "biographical_information": ["Regroupe 22 communes des cantons de Longuyon, Rupt-sur-Othain et Damvillers", "4 route de Sorbey, 54260 Longuyon. Tél. 03.82.26.45.18"]} 1 +2024-09-11 09:04:02.636762 2024-09-11 09:04:02.636766 7c662abf-5c62-4d93-868d-ed9d70206afd {"md5": "e02a8e0fe82adbe33e0f14f5724e3e05", "pid": "035348879", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035348879", "source": "IDREF"}], "preferred_name": "Fragnet, Michel", "country_associated": "fr", "authorized_access_point": "Fragnet, Michel", "biographical_information": ["En poste au SETRA.Centre des techniques d'ouvrages d'art.Cellule Équipement des ponts (en 1994, en 1996, en 1997)"]} 1 +2024-09-11 09:04:02.694071 2024-09-11 09:04:02.694075 c31f7243-31a3-45ba-8eab-91c8c94846a0 {"md5": "aaf0052f4db0e57943b1173bfa3f4a8d", "pid": "035370572", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035370572", "source": "IDREF"}], "date_of_birth": "1764-01-06", "date_of_death": "1843-06-11", "preferred_name": "Donzelot, François-Xavier", "country_associated": "fr", "authorized_access_point": "Donzelot, François-Xavier, 1764-1843", "biographical_information": ["Général français"]} 1 +2024-09-11 09:04:02.753603 2024-09-11 09:04:02.75361 baf4ad99-aec3-4414-b0ee-f460a0f07c17 {"md5": "6dda400f0bcb5a754a55ed833090bd86", "pid": "035451793", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035451793", "source": "IDREF"}], "preferred_name": "Centre départemental de la météorologie (Essonne)", "country_associated": "fr", "authorized_access_point": "Centre départemental de la météorologie (Essonne)", "biographical_information": ["CEV Aérodrome, 91228 Brétigny-sur-Orge cedex. Tél. 01.60.84.91.00"]} 1 +2024-09-11 09:04:02.81494 2024-09-11 09:04:02.814945 f643b1f7-fcb4-4756-90e4-b1b840bf2928 {"md5": "cfa86af6bf6884e1f2a71562b5bc19aa", "pid": "035466278", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035466278", "source": "IDREF"}], "preferred_name": "Houtman, Irene", "country_associated": "xx", "authorized_access_point": "Houtman, Irene", "biographical_information": ["En poste à NIA TNO (en 1998)"]} 1 +2024-09-11 09:04:02.873033 2024-09-11 09:04:02.873037 5b238879-c7fc-400e-8784-0803a144c3f8 {"md5": "fd6623ca372a58c69c9fc161222dcf44", "pid": "035467207", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035467207", "source": "IDREF"}], "date_of_birth": "1952-09-24", "preferred_name": "Sullivan, Margaret Wolan", "country_associated": "xxu", "authorized_access_point": "Sullivan, Margaret Wolan, 1952-...."} 1 +2024-09-11 09:04:02.931223 2024-09-11 09:04:02.931226 aee9e978-5ca6-402e-8014-a312645fcf96 {"md5": "8f086c21e463a68d8d2c5d7d12e260cd", "pid": "035550767", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035550767", "source": "IDREF"}], "date_of_birth": "1962", "preferred_name": "Fineman, Daniel", "country_associated": "xxu", "authorized_access_point": "Fineman, Daniel, 1962-....", "biographical_information": ["Titulaire d'un doctorat d'histoire, Yale university, New Haven, Conn. Analyste financier, Jardine Fleming Thanakom securities, Bangkok (en 1997)"]} 1 +2024-09-11 09:04:02.990242 2024-09-11 09:04:02.990246 5f055486-be8c-441d-89d0-89a5021e4181 {"md5": "f9048a9f1739e466c6d8a6a6cdfbd01d", "pid": "035552913", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035552913", "source": "IDREF"}], "preferred_name": "Hernández, Antonio", "country_associated": "sp", "authorized_access_point": "Hernández, Antonio"} 1 +2024-09-11 09:04:03.05104 2024-09-11 09:04:03.051043 58c83ed3-de04-4cb2-a48f-c1289b937fbc {"md5": "66abed68097e2696b344d68aff7c3f36", "pid": "035560754", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035560754", "source": "IDREF"}], "variant_name": ["INRETS-ESTAS"], "preferred_name": "Institut national de recherche sur les transports et leur sécurité (France). Unité de recherche Evaluation des systèmes de transports automatisés et de leur sécurité", "country_associated": "fr", "variant_access_point": ["INRETS-ESTAS"], "authorized_access_point": "Institut national de recherche sur les transports et leur sécurité (France). Unité de recherche Evaluation des systèmes de transports automatisés et de leur sécurité", "biographical_information": ["20 rue Elisée-Reclus, 59650 Villeneuve-d'Ascq. Tél. 03.20.43.83.43. Fax 03.20.43.83.59"]} 1 +2024-09-11 09:04:03.11099 2024-09-11 09:04:03.110994 462de466-bf64-41a2-b258-4afd62061e95 {"md5": "039d6f186f3b09352d9ade4704ce6abe", "pid": "035599634", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035599634", "source": "IDREF"}], "date_of_birth": "1954-06-17", "preferred_name": "Gadiollet, Jean-Yves", "country_associated": "fr", "authorized_access_point": "Gadiollet, Jean-Yves, 1954-....", "biographical_information": ["Docteur en médecine (Paris XII, Créteil : 1983)"]} 1 +2024-09-11 09:04:03.171272 2024-09-11 09:04:03.171275 5b7a8238-27f9-47a3-a9ef-54fd00e7d14b {"md5": "064ffa5f6b0f56884405e8eff8322e1e", "pid": "035617179", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035617179", "source": "IDREF"}], "date_of_birth": "1965-02-17", "preferred_name": "Polley, Martin", "country_associated": "xxk", "authorized_access_point": "Polley, Martin, 1965-....", "biographical_information": ["En poste : King Alfred's College, Winchester (en 2000)"]} 1 +2024-09-11 09:04:03.240992 2024-09-11 09:04:03.240995 68eae65c-a5ff-4602-a6cd-2ce0d3e60f9f {"md5": "2c2472396f2c5c8b81d5f6d7ec3d3e7d", "pid": "035695161", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035695161", "source": "IDREF"}], "variant_name": ["Eyoum, Isabelle Defives-", "Defives, Isabelle Eyoum-"], "date_of_birth": "1945-05-23", "preferred_name": "Defives-Eyoum, Isabelle", "country_associated": "fr", "variant_access_point": ["Eyoum, Isabelle Defives-", "Defives, Isabelle Eyoum-"], "authorized_access_point": "Defives-Eyoum, Isabelle, 1945-...."} 1 +2024-09-11 09:04:03.303779 2024-09-11 09:04:03.303783 d72717a3-6862-4e54-9a87-dd23fec5344b {"md5": "29376dbd7a41912b444b65766628b34b", "pid": "050162373", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["hun"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050162373", "source": "IDREF"}], "preferred_name": "Eötvös Loránd tudományegyetem (Budapest). Román filológiai tanszék", "country_associated": "hu", "authorized_access_point": "Eötvös Loránd tudományegyetem (Budapest). Román filológiai tanszék"} 1 +2024-09-11 09:04:03.360894 2024-09-11 09:04:03.360897 20e3a9dc-de7f-443d-80d4-6758ab8a70be {"md5": "06975749495581bc3ec58bc353e6b598", "pid": "050191101", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050191101", "source": "IDREF"}], "preferred_name": "Lhuillier, Stéphanie", "country_associated": "fr", "authorized_access_point": "Lhuillier, Stéphanie", "biographical_information": ["Diplômé de l'ESSEC. Haut fonctionnaire dans une administration économique nationale (en 1998)"]} 1 +2024-09-11 09:04:03.423831 2024-09-11 09:04:03.423834 c078ae8e-dff0-4109-8478-a62b79a6b92f {"md5": "ca15ff40722a8c2958cefb8b95f8b2bc", "pid": "050212265", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050212265", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "086112740"}, "variant_name": ["卡, 普兰"], "date_of_birth": "19..", "preferred_name": "Kaplan, Robert B.", "country_associated": "xxu", "variant_access_point": ["卡, 普兰, 19..-...."], "authorized_access_point": "Kaplan, Robert B., 19..-...."} 1 +2024-09-11 09:04:03.489961 2024-09-11 09:04:03.489966 2f1118f1-5a74-44ae-9e19-2fff1fd420e5 {"md5": "b39e827b3b693cda94eaddf62648f8bf", "pid": "05021425X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/05021425X", "source": "IDREF"}], "variant_name": ["Doshitsu kō-gakkai (Japon)"], "preferred_name": "Japanese geotechnical society", "country_associated": "ja", "variant_access_point": ["Doshitsu kō-gakkai (Japon)"], "parallel_access_point": ["Jiban kō-gakkai"], "authorized_access_point": "Japanese geotechnical society"} 1 +2024-09-11 09:04:03.551239 2024-09-11 09:04:03.551242 a07705e7-4e3a-4d10-b2f0-fc6df8fab7d2 {"md5": "add744aa8295f85ba2e8524f5b15fe7a", "pid": "050225146", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050225146", "source": "IDREF"}], "variant_name": ["Henschel, G. A. L"], "date_of_birth": "1806", "date_of_death": "1852", "preferred_name": "Henschel, G. A. Louis", "country_associated": "fr", "variant_access_point": ["Henschel, G. A. L"], "authorized_access_point": "Henschel, G. A. Louis, 1806-1852", "biographical_information": ["A aussi écrit en allemand et en latin", "Philologue et lexicographe. Né à Minden (Allemagne), meurt à Paris"]} 1 +2024-09-11 09:04:03.617702 2024-09-11 09:04:03.617707 15735080-cdaf-4e2a-8b6c-c41b28828122 {"md5": "b9186df900089c979b850aa7b96923a3", "pid": "050262645", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050262645", "source": "IDREF"}], "variant_name": ["International conference on the Dead Sea scrolls"], "preferred_name": "Provo international conference on the Dead Sea scrolls", "date_of_termination": "1996-07-17", "variant_access_point": ["International conference on the Dead Sea scrolls (1996 ; Provo, Utah)"], "date_of_establishment": "1996-07-15", "authorized_access_point": "Provo international conference on the Dead Sea scrolls (1996)"} 1 +2024-09-11 09:04:03.672909 2024-09-11 09:04:03.672913 b2722e3b-651a-47ff-af29-88c7385f0c54 {"md5": "1659d657ca084cc936999eba36e78113", "pid": "050270982", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050270982", "source": "IDREF"}], "variant_name": ["Lorraine. Comité régional pour l'information et la communication (Centre d'information et de communication)"], "preferred_name": "Centre d'information et de communication (Lorraine)", "country_associated": "fr", "variant_access_point": ["Lorraine. Comité régional pour l'information et la communication (Centre d'information et de communication)"], "authorized_access_point": "Centre d'information et de communication (Lorraine)", "biographical_information": ["4 rue du Chanoine-Collin, BP 4061, 5704 Metz cedex 1. Tél. 03.87.76.21.71"]} 1 +2024-09-11 09:04:03.731927 2024-09-11 09:04:03.731931 74080c3c-a388-4626-9e93-84c4240a4aae {"md5": "4857c5880908370599ee8a7466162d6b", "pid": "050313800", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050313800", "source": "IDREF"}], "variant_name": ["SMHV"], "preferred_name": "Société mycologique des Hautes-Vosges", "country_associated": "fr", "variant_access_point": ["SMHV"], "authorized_access_point": "Société mycologique des Hautes-Vosges", "biographical_information": ["26 route du Repas, 88520 Wisembach. Tél. 03.29.57.39.13"]} 1 +2024-09-11 09:04:03.789298 2024-09-11 09:04:03.789303 67abc43b-9f5a-42c6-9d58-83d5a0ceb60d {"md5": "90180a2cf92e1eb80921bb9b6158fec4", "pid": "050321692", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050321692", "source": "IDREF"}], "variant_name": ["Observatoire de l'ANPE (France)"], "preferred_name": "Agence nationale pour l'emploi (France). Observatoire", "country_associated": "fr", "variant_access_point": ["Observatoire de l'ANPE (France)"], "authorized_access_point": "Agence nationale pour l'emploi (France). Observatoire", "biographical_information": ["4 rue Galilée, 93198 Noisy-le-Grand cedex"]} 1 +2024-09-11 09:04:03.849561 2024-09-11 09:04:03.849565 f8eb01f4-5134-4445-b307-bb03aaf9ea35 {"md5": "8bf8c98176206dfacc70273d4d22d712", "pid": "050323474", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050323474", "source": "IDREF"}], "preferred_name": "Blau, Tatjana", "country_associated": "gw", "authorized_access_point": "Blau, Tatjana"} 1 +2024-09-11 09:04:03.906551 2024-09-11 09:04:03.906555 bd550946-5232-4dba-91dd-01f3b8b9b9db {"md5": "b8b185f5c647dc92c03168147ba43fde", "pid": "050329332", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050329332", "source": "IDREF"}], "date_of_birth": "1947", "preferred_name": "Johnstone, Christopher Lyle", "country_associated": "xxu", "authorized_access_point": "Johnstone, Christopher Lyle, 1947-....", "biographical_information": ["Professeur de rhétorique, Pennsylvania state university, Philadelphie (en 1996)"]} 1 +2024-09-11 09:04:04.007323 2024-09-11 09:04:04.007327 083f099b-4a5d-4977-95f0-e57901d810a1 {"md5": "1bb20f04bf1804befd368e66e2cef408", "pid": "050348736", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050348736", "source": "IDREF"}], "date_of_birth": "1947", "preferred_name": "Munslow, Alun", "country_associated": "xxk", "authorized_access_point": "Munslow, Alun, 1947-...."} 1 +2024-09-11 09:04:04.087496 2024-09-11 09:04:04.087499 386ac2e0-172e-4155-9925-fcdb1f17bd3c {"md5": "308df062b9b7f62175954b4d48691ab2", "pid": "050593587", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050593587", "source": "IDREF"}], "variant_name": ["Balmis y Berenguer, Francisco Xavier de", "Balmis, Franz Xaver", "Balmis, Francesco Saverio", "Berenguer, Francisco Xavier de Balmis y"], "date_of_birth": "1753", "date_of_death": "1819", "preferred_name": "Balmis, Francisco Xavier de", "country_associated": "sp", "variant_access_point": ["Balmis y Berenguer, Francisco Xavier de", "Balmis, Franz Xaver", "Balmis, Francesco Saverio", "Berenguer, Francisco Xavier de Balmis y"], "authorized_access_point": "Balmis, Francisco Xavier de, 1753-1819", "biographical_information": ["Médecin. Célèbre pour avoir dirigé une compagne de vaccination contre la variole (entre 1803 et 1810), connue sous le nom de \\"Expedición de Balmis\\" ou \\"Real Expedición Filantrópica de la Vacuna\\" dans les colonies espagnoles, en particulier en Amérique du Sud et aux Philippines"]} 1 +2024-09-11 09:04:04.164412 2024-09-11 09:04:04.164417 f667cae5-67d1-4c2a-b48f-576c5e0e4e22 {"md5": "6e4e773ddb713b4fb467bb76cd4e29ca", "pid": "05066302X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/05066302X", "source": "IDREF"}], "date_of_birth": "1978?", "preferred_name": "Tali, Farid", "country_associated": "mr", "authorized_access_point": "Tali, Farid, 1978?-....", "biographical_information": ["Étudiant marocain"]} 1 +2024-09-11 09:04:04.230956 2024-09-11 09:04:04.230961 90371d76-e8f5-472f-86b9-0ebf9b4f2bd1 {"md5": "a42348f2748eeb1536801acae0f12c4c", "pid": "050667947", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "qualifier": "écrivain", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050667947", "source": "IDREF"}], "variant_name": ["LeBlanc, Thomas", "Blanc, Thomas Le"], "date_of_birth": "1951", "preferred_name": "Le Blanc, Thomas, écrivain", "country_associated": "gw", "variant_access_point": ["LeBlanc, Thomas", "Blanc, Thomas Le"], "authorized_access_point": "Le Blanc, Thomas, 1951-...., écrivain", "biographical_information": ["Écrivain"]} 1 +2024-09-11 09:04:04.287656 2024-09-11 09:04:04.28766 c5741c57-563c-449b-8d82-36c848724095 {"md5": "9dce5d5ac8e92271d19ffaecf1d894bc", "pid": "050709585", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050709585", "source": "IDREF"}], "date_of_birth": "1952", "preferred_name": "Baldi, Marialuisa", "country_associated": "it", "authorized_access_point": "Baldi, Marialuisa, 1952-....", "biographical_information": ["Professeur au Département de philosophie de l'Université de Milan (en 2000). Collabore à la \\"Rivista di storia della filosofia"]} 1 +2024-09-11 09:04:04.357623 2024-09-11 09:04:04.357627 5021f30f-2222-4296-b53e-397aa84317a7 {"md5": "3d5c7fd6f9ae6f954076aceebfa4ce58", "pid": "050723634", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050723634", "source": "IDREF"}], "variant_name": ["Morrison, Margie"], "date_of_birth": "1954-05-19", "date_of_death": "2021-01-09", "preferred_name": "Morrison, Margaret C.", "country_associated": "xxc", "variant_access_point": ["Morrison, Margie"], "authorized_access_point": "Morrison, Margaret C., 1954-2021", "biographical_information": ["Philosophe des sciences canadienne"]} 1 +2024-09-11 09:04:04.421458 2024-09-11 09:04:04.421463 f98d1645-e807-4f41-98d2-3bca3f242e92 {"md5": "e76e0ca9ab10bbd7a6f29ee709208cad", "pid": "050785745", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050785745", "source": "IDREF"}], "variant_name": ["Bappenheim, Italo Testa"], "preferred_name": "Testa Bappenheim, Italo", "country_associated": "xx", "variant_access_point": ["Bappenheim, Italo Testa"], "authorized_access_point": "Testa Bappenheim, Italo"} 1 +2024-09-11 09:04:04.480265 2024-09-11 09:04:04.480269 a81182b9-214e-49cb-9d90-101a8d721e4d {"md5": "526c831b85f8d35e475eb3d605876fb9", "pid": "050798928", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050798928", "source": "IDREF"}], "variant_name": ["CLEF"], "preferred_name": "Club littéraire d'expression française (Marseille)", "country_associated": "fr", "variant_access_point": ["CLEF"], "authorized_access_point": "Club littéraire d'expression française (Marseille)", "biographical_information": ["BP 32, 13191 Marseille cedex"]} 1 +2024-09-11 09:04:04.540887 2024-09-11 09:04:04.540889 e833d090-ec5e-49d1-88e4-d4880e033512 {"md5": "a237663d5a9806542c541a37bb313dcb", "pid": "050822551", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050822551", "source": "IDREF"}], "variant_name": ["Zamora, Juan Guerrero"], "date_of_birth": "1927", "date_of_death": "2002", "preferred_name": "Guerrero Zamora, Juan", "country_associated": "sp", "variant_access_point": ["Zamora, Juan Guerrero"], "authorized_access_point": "Guerrero Zamora, Juan, 1927-2002", "biographical_information": ["Licencié en philosophie et lettres"]} 1 +2024-09-11 09:04:04.609455 2024-09-11 09:04:04.609459 fcf73824-19c8-45dc-a8e9-220ef9d26859 {"md5": "bfa7af7c411ef153d860f9eb4599688f", "pid": "052206327", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/052206327", "source": "IDREF"}], "preferred_name": "Isabella Stewart Gardner Museum (Boston, Mass.)", "country_associated": "xxu", "authorized_access_point": "Isabella Stewart Gardner Museum (Boston, Mass.)"} 1 +2024-09-11 09:04:04.672697 2024-09-11 09:04:04.672701 9625d8d5-1817-48d8-bf85-653b9602abfe {"md5": "02e985b420073d32185e91094106c598", "pid": "052460819", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/052460819", "source": "IDREF"}], "variant_name": ["Pavón, Francisco García"], "date_of_birth": "1919-09-04", "date_of_death": "1989-03-18", "preferred_name": "García Pavón, Francisco", "country_associated": "sp", "variant_access_point": ["Pavón, Francisco García"], "authorized_access_point": "García Pavón, Francisco, 1919-1989", "biographical_information": ["Ecrivain espagnol"]} 1 +2024-09-11 09:04:04.745016 2024-09-11 09:04:04.745021 adf13548-2a26-460d-b083-946d71fbd9e3 {"md5": "18d1ea393069884c1d5cb04c3c5da978", "pid": "052470911", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/052470911", "source": "IDREF"}], "preferred_name": "Morozzi, Cristina", "country_associated": "it", "authorized_access_point": "Morozzi, Cristina", "biographical_information": ["Journaliste, spécialiste de design. Diplômée de philosophie, a étudié l'architecture. Éditrice et directrice de la revue semestrielle DE, Driade edizioni (en 1996)"]} 1 +2024-09-11 09:04:04.827369 2024-09-11 09:04:04.827373 d02f7eca-7cc7-437f-b149-fa1efec4a41d {"md5": "7d0e118fd4bffaa8657e41e746c13179", "pid": "052470989", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/052470989", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "12138540X"}, "date_of_birth": "1959", "preferred_name": "Schönwälder, Karen", "country_associated": "gw", "authorized_access_point": "Schönwälder, Karen, 1959-....", "biographical_information": ["Maître de conférences en histoire allemande, School of Slavonic and East European studies, University of London (de 1992 à 1997). Dirige un groupe de recherche à l'Institut Max Planck en Etudes Religieuses et Diversité Ethnique. Enseigne à l'Université de Göttigen."]} 1 +2024-09-11 09:04:04.895647 2024-09-11 09:04:04.895652 383aa35d-2104-4630-8a25-8230cd336a9b {"md5": "dd860cc9ba5fff17910994d344cc2820", "pid": "052556220", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/052556220", "source": "IDREF"}], "variant_name": ["OESC", "Haras nationaux (France). Observatoire économique et social du cheval"], "preferred_name": "Observatoire économique et social du cheval (France)", "country_associated": "fr", "variant_access_point": ["OESC", "Haras nationaux (France). Observatoire économique et social du cheval"], "date_of_establishment": "1998-01", "authorized_access_point": "Observatoire économique et social du cheval (France)", "biographical_information": ["Haras national du Lion-d'Angers, Domaine de l'Isle-Briand, 49220 Lion-d'Angers. Tél. 02.41.18.22.28. Fax 02.41.22.78. Mél : obseco@haras-nationaux.fr"]} 1 +2024-09-11 09:04:04.949925 2024-09-11 09:04:04.949928 8de95a41-513f-4292-8e53-fb1012693032 {"md5": "13f8a544586c5980a990dac1f6f76a79", "pid": "052737284", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/052737284", "source": "IDREF"}], "preferred_name": "Groupe de recherche et d'études nord-américaines (Aix-en-Provence, Bouches-du-Rhône). Colloque", "date_of_termination": "1997-03-23", "date_of_establishment": "1997-03-21", "authorized_access_point": "Groupe de recherche et d'études nord-américaines (Aix-en-Provence, Bouches-du-Rhône). Colloque (17 ; 1996)"} 1 +2024-09-11 09:04:05.010305 2024-09-11 09:04:05.010308 e987a93a-e80a-4a80-8eb7-0d6d684a8836 {"md5": "5c77fe4cf8e00ee066ff0c4900a5bc2c", "pid": "053434080", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/053434080", "source": "IDREF"}], "variant_name": ["Subbaratnam Muthukrishnan"], "preferred_name": "Muthukrishnan, Subbaratnam", "country_associated": "ii", "variant_access_point": ["Subbaratnam Muthukrishnan"], "authorized_access_point": "Muthukrishnan, Subbaratnam", "biographical_information": ["Biologiste. En poste : Department of biochemistry, Kansas state university, Manhattan (en 1999)"]} 1 +2024-09-11 09:04:05.080857 2024-09-11 09:04:05.08086 ddfc10f3-acbc-49e4-864f-a36766c6bb13 {"md5": "6c2d7b692a3d8847c2e68dbb31aa89df", "pid": "053500679", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/053500679", "source": "IDREF"}], "date_of_birth": "1950", "preferred_name": "Manoury, Mathilde", "country_associated": "fr", "authorized_access_point": "Manoury, Mathilde, 1950-....", "biographical_information": ["Professeur en lettres modernes, nouvelliste"]} 1 +2024-09-11 09:04:05.147237 2024-09-11 09:04:05.14724 c7093526-7b28-44ba-b5dc-9b6e9eb3cad1 {"md5": "0750c6e35293512e3f060c883c79109b", "pid": "053516184", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/053516184", "source": "IDREF"}], "date_of_birth": "1922", "preferred_name": "Stern, Guy", "country_associated": "xx", "authorized_access_point": "Stern, Guy, 1922-....", "biographical_information": ["Écrit aussi en anglais", "Spécialiste de la littérature d'exil allemande. Professeur, Wayne state university, Detroit, Mich. (en 1989)"]} 1 +2024-09-11 09:04:07.13824 2024-09-11 09:04:07.138244 be0c2f99-2300-4780-8483-5fbac33c55db {"md5": "d40eaddc8e6ec32764e963906706c98f", "pid": "057564647", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/057564647", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Bielfeld, Horst", "country_associated": "gw", "authorized_access_point": "Bielfeld, Horst", "biographical_information": ["Photographe animalier. Spécialiste des oiseaux de volière."]} 1 +2024-09-11 09:04:05.211805 2024-09-11 09:04:05.21181 bf63c2bd-218d-4750-afb0-94f02c0dd185 {"md5": "db5cfcb4a46c1cc6ecaa4611e19d628e", "pid": "055333893", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dan"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/055333893", "source": "IDREF"}], "date_of_birth": "1941", "preferred_name": "Ulstrup, Jens", "country_associated": "dk", "authorized_access_point": "Ulstrup, Jens, 1941-....", "biographical_information": ["Ecrit aussi en anglais", "Chimiste. Professeur, Department of chemistry, Technical university of Denmark, Lyngby (en 1998)"]} 1 +2024-09-11 09:04:05.321201 2024-09-11 09:04:05.321205 c4ee1503-b1af-48cd-8175-f28b81849360 {"md5": "980c433bb156c07d8b4403ac473c91c4", "pid": "055386806", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/055386806", "source": "IDREF"}], "variant_name": ["AMP"], "preferred_name": "Association for molecular pathology", "country_associated": "xxu", "variant_access_point": ["AMP"], "authorized_access_point": "Association for molecular pathology"} 1 +2024-09-11 09:04:05.388834 2024-09-11 09:04:05.388838 f0f490e0-15ed-4aaa-a96b-f6e22087e60c {"md5": "cddbfa05c47b16b6052dc99b03100fef", "pid": "056579780", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/056579780", "source": "IDREF"}], "date_of_birth": "1971", "preferred_name": "Rogue, Christophe", "country_associated": "fr", "authorized_access_point": "Rogue, Christophe, 1971-....", "biographical_information": ["Ancien élève de l'École normale supérieure. Agrégé de philosophie (en 2001)"]} 1 +2024-09-11 09:04:05.449465 2024-09-11 09:04:05.449468 72ca7cb8-35d3-454f-9adc-917461bde70f {"md5": "756b2be479678fc935f5831d86eeb21d", "pid": "056753950", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/056753950", "source": "IDREF"}], "variant_name": ["SOFMIS"], "preferred_name": "Société française de mastologie et d'imagerie du sein", "country_associated": "fr", "variant_access_point": ["SOFMIS"], "authorized_access_point": "Société française de mastologie et d'imagerie du sein", "biographical_information": ["Mél : yves.grumbach@chu-amiens.fr"]} 1 +2024-09-11 09:04:05.509125 2024-09-11 09:04:05.50913 34165c19-2ce5-4ea6-9fc5-9a93c18d18f9 {"md5": "d3a25a3871cae82803d75a56da72b9c2", "pid": "056755759", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/056755759", "source": "IDREF"}], "preferred_name": "Cazin, Bernadette", "authorized_access_point": "Cazin, Bernadette"} 1 +2024-09-11 09:04:05.592331 2024-09-11 09:04:05.592336 ebed3979-b031-451b-8081-8a697d14fdf9 {"md5": "3aab659a37894f33da7b6cb38dc427e0", "pid": "056764073", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/056764073", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Continati, Dolores", "authorized_access_point": "Continati, Dolores, 19..-...."} 1 +2024-09-11 09:04:05.667006 2024-09-11 09:04:05.667011 ff42644f-44f2-484f-a721-25ebabac2bd0 {"md5": "cb4113479314385874319cd01ebb288f", "pid": "056766378", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/056766378", "source": "IDREF"}], "preferred_name": "Arnaud, Hélène", "country_associated": "xx", "authorized_access_point": "Arnaud, Hélène"} 1 +2024-09-11 09:04:05.730566 2024-09-11 09:04:05.73057 d5046aec-4f1c-4a17-905f-6aee36ef455b {"md5": "cd98ba22b05d3a19a2b8ce260aa46a23", "pid": "056810741", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/056810741", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Tsuda, Yukio", "country_associated": "xx", "authorized_access_point": "Tsuda, Yukio, 19..-...."} 1 +2024-09-11 09:04:05.806856 2024-09-11 09:04:05.806861 cb036b3f-1050-47d9-995c-587aeb47c6d7 {"md5": "1c664f58f4911509e81de2c6694aac9a", "pid": "056810881", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["nor"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/056810881", "source": "IDREF"}], "preferred_name": "Finserås, Bente Elisabeth", "authorized_access_point": "Finserås, Bente Elisabeth"} 1 +2024-09-11 09:04:05.873882 2024-09-11 09:04:05.873886 9ccbc535-aee1-40ee-b776-a0a9716328aa {"md5": "00e7b03a5b7530baa868298f9c1666f9", "pid": "056820151", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/056820151", "source": "IDREF"}], "preferred_name": "Frisch, Christine", "authorized_access_point": "Frisch, Christine"} 1 +2024-09-11 09:04:05.957363 2024-09-11 09:04:05.957367 bb14338d-396e-4b79-a30a-1e1e2d42146f {"md5": "ca33b4d7a1b4285a02e3fc97bdf26de0", "pid": "056821840", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/056821840", "source": "IDREF"}], "preferred_name": "Carlson, Sven H", "authorized_access_point": "Carlson, Sven H"} 1 +2024-09-11 09:04:06.042171 2024-09-11 09:04:06.042176 838b18e3-d04a-478b-9fd6-2d6989214893 {"md5": "0d2bbca14cca8d3cd140de5e948dba70", "pid": "056844093", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/056844093", "source": "IDREF"}], "preferred_name": "Griepentrog, Wolfgang", "country_associated": "xx", "authorized_access_point": "Griepentrog, Wolfgang"} 1 +2024-09-11 09:04:06.121825 2024-09-11 09:04:06.121831 a7e84388-9bc3-4289-b922-d539032a8b42 {"md5": "5ef4b1be25038e9fb5f8886e2ef9647b", "pid": "056857276", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "juriste", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/056857276", "source": "IDREF"}], "date_of_birth": "1941-09-08", "preferred_name": "Billard, Pierre, juriste", "country_associated": "fr", "authorized_access_point": "Billard, Pierre, 1941-...., juriste"} 1 +2024-09-11 09:04:06.192339 2024-09-11 09:04:06.192344 9d3419f1-7b6c-4628-8549-daf0b94b2331 {"md5": "451a26eeabeccacffed962a966855130", "pid": "056868324", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/056868324", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "224842080"}, "date_of_birth": "1959", "preferred_name": "Berg, Stephan", "country_associated": "xx", "authorized_access_point": "Berg, Stephan, 1959-....", "biographical_information": ["1990-2000 directeur du Kunstverein Freiburg. 2001-2008 directeur du Kunstverein Hannover. Depuis avril 2008 directeur du Kunstmuseum Bonn. Professeur honoraire à la Hochschule für Bildende Künste de Braunschweig"]} 1 +2024-09-11 09:04:06.269946 2024-09-11 09:04:06.269949 68543cfb-b330-494f-8485-d30f159af220 {"md5": "2ca630ab09619a431807791f2d25ec27", "pid": "056926650", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/056926650", "source": "IDREF"}], "variant_name": ["Roustand de Navacelle, Geoffroy Maurice Albert Cady"], "date_of_birth": "1918-05-06", "date_of_death": "2015-05-05", "preferred_name": "Navacelle, Geoffroy de", "country_associated": "fr", "variant_access_point": ["Roustand de Navacelle, Geoffroy Maurice Albert Cady"], "authorized_access_point": "Navacelle, Geoffroy de, 1918-2015", "biographical_information": ["Membre du Comité français Pierre de Coubertin"]} 1 +2024-09-11 09:04:06.332402 2024-09-11 09:04:06.332406 1cc69c1b-d80f-46ef-981c-a8abfdd061ec {"md5": "f5db2af76d0fcfc4dd5d09a498995904", "pid": "056955669", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/056955669", "source": "IDREF"}], "date_of_birth": "1963-10-31", "preferred_name": "Deguilloux, Laurence", "country_associated": "fr", "authorized_access_point": "Deguilloux, Laurence, 1963-....", "biographical_information": ["Enseignante en 2011"]} 1 +2024-09-11 09:04:06.402623 2024-09-11 09:04:06.402629 a2c26fa9-8216-446e-aeb7-4866a0240721 {"md5": "37d2f8ca3a86c9d9b18bd377b358ddab", "pid": "057030448", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/057030448", "source": "IDREF"}], "preferred_name": "Association des amis de Chanteloup (Amboise, Indre-et-Loire)", "country_associated": "xx", "authorized_access_point": "Association des amis de Chanteloup (Amboise, Indre-et-Loire)"} 1 +2024-09-11 09:04:06.468885 2024-09-11 09:04:06.468891 bddfaa6c-83a3-4bf8-94cf-bd2fd03f12bc {"md5": "4a98627c31d9e14ffa8cce3eb693f286", "pid": "057097909", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/057097909", "source": "IDREF"}], "preferred_name": "Guareschi, Alberto", "country_associated": "it", "authorized_access_point": "Guareschi, Alberto"} 1 +2024-09-11 09:04:06.5378 2024-09-11 09:04:06.537805 86319a7b-9793-4fef-8b40-4f0989605670 {"md5": "ef5ba40332c8d8cfd7808ab40a5f1e88", "pid": "057101795", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/057101795", "source": "IDREF"}], "preferred_name": "Ego comme X (Angoulême)", "country_associated": "xx", "authorized_access_point": "Ego comme X (Angoulême)"} 1 +2024-09-11 09:04:06.645067 2024-09-11 09:04:06.645072 a2a9143d-0dcb-4137-99c9-f7038a3251a9 {"md5": "65406e3753e73ccea8302d3948821a19", "pid": "057110662", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/057110662", "source": "IDREF"}], "preferred_name": "MC2 (Saint-Clair-sur-Epte, Val-d'Oise)", "country_associated": "xx", "authorized_access_point": "MC2 (Saint-Clair-sur-Epte, Val-d'Oise)"} 1 +2024-09-11 09:04:06.709509 2024-09-11 09:04:06.709514 c7c859f1-5139-4948-aaac-9a6238fb1976 {"md5": "2f20dc97194bfa4dcada8bfc0058de60", "pid": "057199892", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/057199892", "source": "IDREF"}], "preferred_name": "Coghlan, Ronan", "country_associated": "xx", "authorized_access_point": "Coghlan, Ronan"} 1 +2024-09-11 09:04:06.779715 2024-09-11 09:04:06.779719 8e715290-692f-4b6b-8e16-20083a5f16a1 {"md5": "3108b847ae6985424bf3cadf5b16ec39", "pid": "057249660", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/057249660", "source": "IDREF"}], "preferred_name": "Jarnet, Michel", "country_associated": "xx", "authorized_access_point": "Jarnet, Michel"} 1 +2024-09-11 09:04:06.846233 2024-09-11 09:04:06.846238 d7a75bcf-539a-491e-bb1b-5cd839124c45 {"md5": "b002a62fee1d8dfc9941e529bf3dc313", "pid": "057271372", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/057271372", "source": "IDREF"}], "preferred_name": "Association des anciens des affaires algériennes", "country_associated": "xx", "authorized_access_point": "Association des anciens des affaires algériennes"} 1 +2024-09-11 09:04:06.906191 2024-09-11 09:04:06.906195 7becc500-34cd-439b-813d-3ebd0e8edef0 {"md5": "95e8aab804ed0c323cf67cce4a7aa71d", "pid": "057329850", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/057329850", "source": "IDREF"}], "variant_name": ["Komissarzhevsky, Viktor Grigoryevich"], "preferred_name": "Komissarjevski, Viktor Grigoryevich", "variant_access_point": ["Komissarzhevsky, Viktor Grigoryevich"], "authorized_access_point": "Komissarjevski, Viktor Grigoryevich"} 1 +2024-09-11 09:04:06.963409 2024-09-11 09:04:06.963412 25f55739-55ef-41dc-b87f-2053378bbafa {"md5": "ed57dabd846b2075d677834d7be489e5", "pid": "057345627", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/057345627", "source": "IDREF"}], "preferred_name": "Centre d'études et de recherches interculturelles européennes", "country_associated": "xx", "authorized_access_point": "Centre d'études et de recherches interculturelles européennes"} 1 +2024-09-11 09:04:07.020203 2024-09-11 09:04:07.020211 c62263bd-2f2a-4704-83ee-7cf2a11cca65 {"md5": "a2120ff88060d59fadd44fd0f588366a", "pid": "057376719", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/057376719", "source": "IDREF"}], "preferred_name": "Cercle des retraités de Normandie-Matériaux de friction", "country_associated": "xx", "authorized_access_point": "Cercle des retraités de Normandie-Matériaux de friction"} 1 +2024-09-11 09:04:07.080101 2024-09-11 09:04:07.080104 85e8ed80-c7a2-48f1-8e43-bec2209a247e {"md5": "2697cc49e29338df584d68c5459047b9", "pid": "057556474", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/057556474", "source": "IDREF"}], "variant_name": ["Sarro, Thierry di"], "preferred_name": "Di Sarro, Thierry", "country_associated": "xx", "variant_access_point": ["Sarro, Thierry di"], "authorized_access_point": "Di Sarro, Thierry"} 1 +2024-09-11 09:04:07.192765 2024-09-11 09:04:07.192769 367498a5-f169-438b-a778-b0199a39ccbc {"md5": "7f4af3bedaa11d7b35ff6481525b0b86", "pid": "057564876", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/057564876", "source": "IDREF"}], "preferred_name": "Cap entreprise", "country_associated": "xx", "authorized_access_point": "Cap entreprise"} 1 +2024-09-11 09:04:07.388315 2024-09-11 09:04:07.388319 3ef47df2-3c2f-449c-961a-b4b58cadabbd {"md5": "2b805a4ee3b250fafb703f6122f403cc", "pid": "05776171X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/05776171X", "source": "IDREF"}], "preferred_name": "Noël, Jean-Pascal", "country_associated": "xx", "authorized_access_point": "Noël, Jean-Pascal"} 1 +2024-09-11 09:04:07.445619 2024-09-11 09:04:07.445623 c238bbb7-2eca-4633-9d75-15f43380dd9c {"md5": "54a15a264d78ee5f3b93f702f5fdd938", "pid": "057791511", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "expert-comptable", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/057791511", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "144710196"}, "variant_name": ["Maillet-Baudrier, Catherine", "Baudrier, Catherine Maillet-"], "date_of_birth": "1956-06-08", "preferred_name": "Maillet, Catherine, expert-comptable", "country_associated": "fr", "variant_access_point": ["Maillet-Baudrier, Catherine", "Baudrier, Catherine Maillet-"], "authorized_access_point": "Maillet, Catherine, 1956-...., expert-comptable", "biographical_information": ["Professeure associée à l'ESCP Europe. Expert comptable. Commissaire aux comptes (en 2019)"]} 1 +2024-09-11 09:04:07.507009 2024-09-11 09:04:07.507014 162601bb-869b-4ac0-a2e9-0961aa825309 {"md5": "b8942a6f389a865f3efde0c5989ed731", "pid": "057941386", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre", "ita", "ger"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/057941386", "source": "IDREF"}], "variant_name": ["OFEFP (Suisse)", "Suisse. Ufficio federale per la protezione dell'ambiente", "Suisse. Bundesamt für Umweltschutz", "Suisse. Office de la protection de l'environnement", "OFEV (Suisse)", "Suisse. Département fédéral de l'environnement, des transports, de l'énergie et de la communication. Office féréral de l'environnement, des forêts et du paysage"], "preferred_name": "Suisse. Office fédéral de l'environnement, des forêts et du paysage", "country_associated": "sz", "date_of_termination": "2005-12-31", "variant_access_point": ["OFEFP (Suisse)", "Suisse. Ufficio federale per la protezione dell'ambiente", "Suisse. Bundesamt für Umweltschutz", "Suisse. Office de la protection de l'environnement", "OFEV (Suisse)", "Suisse. Département fédéral de l'environnement, des transports, de l'énergie et de la communication. Office féréral de l'environnement, des forêts et du paysage"], "date_of_establishment": "1971", "parallel_access_point": ["Schweiz. Bundesamt für Umwelt, Wald und Landschaft", "Svizzera. Ufficio federale dell'ambiente, delle foreste e del paesaggio"], "authorized_access_point": "Suisse. Office fédéral de l'environnement, des forêts et du paysage", "biographical_information": ["OFEFP 3003 Berne", "De 1971 à 1988: Office fédéral de la protection de l'environnement. - De 1989 à 2005: Office fédéral de l'environnement, des forêts et du paysage", "Devient le 1er janvier 2006 Office fédéral de l'environnement par fusion avec l'Office des eaux et de la géologie"]} 1 +2024-09-11 09:04:07.572507 2024-09-11 09:04:07.572511 7e2515a2-60de-4501-913e-5dc570528044 {"md5": "f3a60d43f9f488b2c7af263bb46c0757", "pid": "058054529", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/058054529", "source": "IDREF"}], "preferred_name": "Durieu, Jacques", "country_associated": "fr", "authorized_access_point": "Durieu, Jacques", "biographical_information": ["Université Jean Monnet-Saint-Etienne-CREUSET", "Professeur de sciences économiques à l'Université de Grenoble 2 et membre du Centre de recherche en économie de Grenoble (CREG) en 2011"]} 1 +2024-09-11 09:04:07.632342 2024-09-11 09:04:07.632345 e1b2f9db-4bc9-42b6-9919-decb0f67a2cc {"md5": "8f35346a66a9622521285b32e202b1ab", "pid": "058114491", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/058114491", "source": "IDREF"}], "variant_name": ["Wells Clark, Chester"], "preferred_name": "Clark, Chester Wells", "country_associated": "xxu", "variant_access_point": ["Wells Clark, Chester"], "authorized_access_point": "Clark, Chester Wells", "biographical_information": ["Professeur d'histoire à l'Université de Princeton en 1934", "Auteur d'une thèse sur les relations austro-prussiennes dans la première moitié du 19° siècle"]} 1 +2024-09-11 09:04:07.687783 2024-09-11 09:04:07.687787 6fc83d63-ad19-4a72-b0fb-ac441b187e41 {"md5": "51bf313275da3987f0306cf5310c85d0", "pid": "058598928", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/058598928", "source": "IDREF"}], "date_of_birth": "1944", "preferred_name": "Nieto-Sampedro, Manuel", "country_associated": "sp", "authorized_access_point": "Nieto-Sampedro, Manuel, 1944-....", "biographical_information": ["En poste à \\"Instituto Cajal (CSIC), Madrid, Spain, en 2001"]} 1 +2024-09-11 09:04:07.747464 2024-09-11 09:04:07.747468 f542d243-e4fe-4ef7-894b-72ab64d8c63d {"md5": "1c725d795be23bf63a30fea5c256ebab", "pid": "058861998", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/058861998", "source": "IDREF"}], "preferred_name": "Engelhard, Hermann", "country_associated": "gw", "authorized_access_point": "Engelhard, Hermann"} 1 +2024-09-11 09:04:07.805054 2024-09-11 09:04:07.805057 1d05da61-95f7-4da6-a374-48c9f751bad8 {"md5": "e7ec8007468939eb7f7afe1540edd777", "pid": "058993789", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/058993789", "source": "IDREF"}], "variant_name": ["Groupe Ethos"], "preferred_name": "Institut national de la recherche agronomique (France). Groupe Ethos", "country_associated": "fr", "variant_access_point": ["Groupe Ethos"], "date_of_establishment": "1999", "authorized_access_point": "Institut national de la recherche agronomique (France). Groupe Ethos", "biographical_information": ["Groupe de réflexion et de débat constitué en 1999 au sein de l'INRA"]} 1 +2024-09-11 09:04:07.860576 2024-09-11 09:04:07.86058 e1a78ca1-45ee-4466-9e0e-920c182df87a {"md5": "d61b465bd92e60d84a1b1f383d803f93", "pid": "059051051", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/059051051", "source": "IDREF"}], "preferred_name": "Anderson, Mike", "country_associated": "at", "authorized_access_point": "Anderson, Mike"} 1 +2024-09-11 09:04:07.922847 2024-09-11 09:04:07.92285 b56a8064-9187-4d63-9a1d-c147701d36a1 {"md5": "65b65a33965ed5d9454ab458083c22db", "pid": "059202491", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/059202491", "source": "IDREF"}], "date_of_birth": "1944-12-13", "preferred_name": "Robert, Hugues", "country_associated": "fr", "authorized_access_point": "Robert, Hugues, 1944-....", "biographical_information": ["Professeur de pharmacie clinique à la Faculté des sciences pharmaceutiques et biologiques de Lille 2 en 1996"]} 1 +2024-09-11 09:04:07.977534 2024-09-11 09:04:07.977538 44d86021-195f-421a-aede-abc5845485b9 {"md5": "c0d0e959b38c4e28f7345a6bafc4dc72", "pid": "059213523", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/059213523", "source": "IDREF"}], "preferred_name": "Anzemberger, Guy P.", "country_associated": "fr", "authorized_access_point": "Anzemberger, Guy P.", "biographical_information": ["Consultant développement et recrutement"]} 1 +2024-09-11 09:04:08.046381 2024-09-11 09:04:08.046385 24835594-56ee-494b-8d66-3b7a5689528c {"md5": "5c0ae00e042668df6a01bb73f0b0d5b0", "pid": "059412720", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/059412720", "source": "IDREF"}], "variant_name": ["Echevarría Ferrreira, Fernando", "Ferrreira, Fernando Echevarría"], "date_of_birth": "1929-02-26", "date_of_death": "2021-10-04", "preferred_name": "Echevarría, Fernando", "country_associated": "po", "variant_access_point": ["Echevarría Ferrreira, Fernando", "Ferrreira, Fernando Echevarría"], "authorized_access_point": "Echevarría, Fernando, 1929-2021", "biographical_information": ["Poète portugais du 20e siècle"]} 1 +2024-09-11 09:04:08.121091 2024-09-11 09:04:08.121096 89396a81-08d6-47b9-86d3-4e4f6e52ec0c {"md5": "a551100f65549d47a3845e35be549e63", "pid": "05961398X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/05961398X", "source": "IDREF"}], "variant_name": ["Nanjappa Shamanna Subba Rao", "Rao, Nanjappa Shamanna Subba"], "date_of_birth": "1926", "preferred_name": "Subba Rao, Nanjappa Shamanna", "country_associated": "ii", "variant_access_point": ["Nanjappa Shamanna Subba Rao", "Rao, Nanjappa Shamanna Subba"], "authorized_access_point": "Subba Rao, Nanjappa Shamanna, 1926-....", "biographical_information": ["Microbiologiste. En poste à la Division de microbiologie, Agricultural research institute, New Delhi, Inde (en 1984)"]} 1 +2024-09-11 09:04:08.19016 2024-09-11 09:04:08.190163 7a0e9a4c-417e-467b-9071-5f9b55a421ef {"md5": "849501091f5344e420c722e82379553a", "pid": "059742984", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/059742984", "source": "IDREF"}], "date_of_birth": "1947", "preferred_name": "Pichler, Meinrad", "country_associated": "au", "authorized_access_point": "Pichler, Meinrad, 1947-....", "biographical_information": ["Historien ; Enseignant à Dornbirn (Autriche)"]} 1 +2024-09-11 09:04:08.247346 2024-09-11 09:04:08.24735 eb798edd-cb60-4995-b76a-93041e0dcc66 {"md5": "7342c260c073fb20b29df1dca658f79e", "pid": "059774177", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "fre"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/059774177", "source": "IDREF"}], "preferred_name": "Conférence internationale sur les ponts en arc", "country_associated": "fr", "date_of_termination": "2001-09-21", "date_of_establishment": "2001-09-19", "authorized_access_point": "Conférence internationale sur les ponts en arc (3 ; 2001 ; Paris)"} 1 +2024-09-11 09:04:08.306598 2024-09-11 09:04:08.306601 6d7c272a-7839-4b23-be5e-6ee92ebc565e {"md5": "29afc62b277876614d1f84af51dd12dd", "pid": "059780843", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/059780843", "source": "IDREF"}], "date_of_birth": "1624-10-28", "date_of_death": "1701-07-01", "preferred_name": "Cavelier, Jean", "country_associated": "fr", "authorized_access_point": "Cavelier, Jean, 1624-1701", "biographical_information": ["Imprimeur-libraire ; imprimeur du Roi et de l'université [de Caen]. - Fils et successeur de l'imprimeur-libraire de Caen Adam Cavelier, chez qui il \\"a fait 7 ans d'apprentissage\\", d'après sa déclaration à l'enquête de 1700-1701. Obtient des lettres de provision comme imprimeur du Roi le 9 fév. 1654 après démission de son père en sa faveur. Auteur de poésies et d'opuscules en latin. Échevin de Caen. Dit à tort âgé de 78 ans lors de l'enquête de 1700-1701. Décédé à Caen le 1er juillet 1701 ; dit alors âgé, à tort, de 72 ans. Travaille en association avec son père en 1654-1656", "Lieu d'activité : Caen. - Dates d'activité : 1654-1701"]} 1 +2024-09-11 09:04:08.361165 2024-09-11 09:04:08.361169 f1a83b54-fd6b-4cb1-bb60-8d47bf417d43 {"md5": "8b5c5da823b0dab736eef0a7534ef651", "pid": "059922184", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/059922184", "source": "IDREF"}], "preferred_name": "Hensley, Larry D.", "authorized_access_point": "Hensley, Larry D.", "biographical_information": ["En poste à l'University of Nothern Iowa (en 2002)"]} 1 +2024-09-11 09:04:08.41896 2024-09-11 09:04:08.418965 3ca05069-8894-4792-b6da-8e3bf2e5a0e0 {"md5": "b48a659913161de1e3c9d69e1ae2f2ff", "pid": "059943696", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/059943696", "source": "IDREF"}], "date_of_birth": "1943", "preferred_name": "Puza, Richard", "country_associated": "gw", "authorized_access_point": "Puza, Richard, 1943-....", "biographical_information": ["Dr.jur.Professor für Kirchenrecht,Katholisch-Theologischen Fakultät der Universität Tübingen"]} 1 +2024-09-11 09:04:08.479944 2024-09-11 09:04:08.479947 9c2f0490-ef26-4c24-9f1f-5682d4bbcfb5 {"md5": "9b641e9f425d830cce8cfa6c4fbcd137", "pid": "060104406", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/060104406", "source": "IDREF"}], "date_of_birth": "1958", "preferred_name": "Hütter, Reinhard", "country_associated": "gw", "authorized_access_point": "Hütter, Reinhard, 1958-....", "biographical_information": ["Professeur de théologie chrétienne à la Duke University School"]} 1 +2024-09-11 09:04:08.541036 2024-09-11 09:04:08.541039 ab1cbc0b-971a-4f43-b099-54f98a109c51 {"md5": "b3d75e39dc4b6d5213c40a25794f1e36", "pid": "060167181", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "qualifier": "Dr.", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/060167181", "source": "IDREF"}], "date_of_birth": "1970", "preferred_name": "Leitner, Marina, Dr.", "country_associated": "au", "authorized_access_point": "Leitner, Marina, 1970-...., Dr.", "biographical_information": ["Psychologue, en 2001 travaille à un programme de recherche sur l'histoire de l'évolution des technique et thérapie psychanalytiques. Nombreuses publications sur l'histoire de la psychanalyse."]} 1 +2024-09-11 09:04:09.279041 2024-09-11 09:04:09.279046 123c65b0-69c6-4cc5-bf47-77c77c8a6c8f {"md5": "4a087a8fc19a8351a66c185893baa2f1", "pid": "061135437", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/061135437", "source": "IDREF"}], "preferred_name": "Labbé, Daniel", "country_associated": "fr", "authorized_access_point": "Labbé, Daniel", "biographical_information": ["Chirurgien plasticien, praticien hospitalier, CHU de Caen, France (2001)"]} 1 +2024-09-11 09:04:08.611858 2024-09-11 09:04:08.611862 e341b404-bb43-4434-9060-31e89b3feba7 {"md5": "f6608515bf3c517d8883a9b9ac85703a", "pid": "060256982", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/060256982", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "086698850"}, "variant_name": ["Gielgud, Arthur John"], "date_of_birth": "1904-04-14", "date_of_death": "2000-05-21", "preferred_name": "Gielgud, John", "country_associated": "xxk", "variant_access_point": ["Gielgud, Arthur John"], "authorized_access_point": "Gielgud, John, 1904-2000", "biographical_information": ["Acteur. Réalisateur. Sir", "En 1994, le \\"Globe Theatre\\" de Londres est renommé le \\"Gielgud Theatre\\" en son honneur."]} 1 +2024-09-11 09:04:08.674676 2024-09-11 09:04:08.674681 ff920853-7b85-410d-b69b-453fecd4f381 {"md5": "8c31cd6f976df88966972b04a11385d3", "pid": "060459743", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/060459743", "source": "IDREF"}], "date_of_birth": "1638?", "preferred_name": "Brossard de Montaney, Jacques", "country_associated": "fr", "authorized_access_point": "Brossard de Montaney, Jacques, 1638?-....", "biographical_information": ["Conseiller au présidial, acteur et auteur de \\"Noëls bressans\\", et d'une comédie bressane, \\"l'Enrôlement de Tivan\\", composée en 1675. Cette pièce fut publiée pour la première fois à Bourg en 1783."]} 1 +2024-09-11 09:04:08.733813 2024-09-11 09:04:08.733818 c0e10fed-4ac8-4b4d-b84a-677c40bda0be {"md5": "feea4c707889090706fee927498e34ce", "pid": "060721995", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre", "ita"], "qualifier": "traducteur", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/060721995", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Mansouri, Nadia, traducteur", "country_associated": "fr", "authorized_access_point": "Mansouri, Nadia, 19..-...., traducteur", "biographical_information": ["Trad. d'italien en français"]} 1 +2024-09-11 09:04:08.80198 2024-09-11 09:04:08.801986 ff28a965-0f9c-4465-b867-d687a10e797c {"md5": "50930a7f994216d907d4cf05af321eb6", "pid": "060722320", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/060722320", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Sánchez Caro, José Manuel", "country_associated": "sp", "authorized_access_point": "Sánchez Caro, José Manuel, 19..-....", "biographical_information": ["En 2013 : Directeur de l'intitut biblique et archéologique espagnol à la Casa de Santiago à Jerusalem. Membre de l'université pontifical de Salamanque"]} 1 +2024-09-11 09:04:08.861772 2024-09-11 09:04:08.861776 a3948245-4342-4b5e-a2e7-676ba96ca332 {"md5": "952809ff6fe178352cd10a57de21b4ce", "pid": "060754435", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "qualifier": "missionnaire", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/060754435", "source": "IDREF"}], "date_of_birth": "1851", "date_of_death": "1932", "preferred_name": "Booth, Joseph, missionnaire", "country_associated": "xx", "authorized_access_point": "Booth, Joseph, 1851-1932, missionnaire", "biographical_information": ["Missionnaire"]} 1 +2024-09-11 09:04:08.922631 2024-09-11 09:04:08.922635 c7245dd0-8c74-4020-9544-b805a5d381c3 {"md5": "629ce0b9cb35509613116c4a71fb6637", "pid": "060756985", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/060756985", "source": "IDREF"}], "preferred_name": "Doussin, L.", "authorized_access_point": "Doussin, L.", "biographical_information": ["Licenciée ès sciences (en 1936)"]} 1 +2024-09-11 09:04:08.980109 2024-09-11 09:04:08.980112 5e15e737-fcfe-4a96-898e-1097c77867da {"md5": "d082a9723f1cb148e1e0f5bdb542fbca", "pid": "060819529", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/060819529", "source": "IDREF"}], "date_of_birth": "1961-10-04", "preferred_name": "Lenfant, Anne-Yvonne", "country_associated": "fr", "authorized_access_point": "Lenfant, Anne-Yvonne, 1961-....", "biographical_information": ["Praticien hospitalier au service de psychiatrie infanto-juvénile au Centre Hospitalier de Lommelet dans le Nord"]} 1 +2024-09-11 09:04:09.036431 2024-09-11 09:04:09.036436 d4f0cdb3-e54a-430c-a7a9-53b2e0f3da1d {"md5": "ec18102020b1455252ce51f32a4b50e3", "pid": "060890932", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/060890932", "source": "IDREF"}], "preferred_name": "Deutsch, Hermann", "country_associated": "gw", "authorized_access_point": "Deutsch, Hermann", "biographical_information": ["Philosophe et théologien allemand, a étudié la religion juive en Hongrie durant trois ans"]} 1 +2024-09-11 09:04:09.095156 2024-09-11 09:04:09.095158 41d1e696-d3eb-44d3-92d5-acf03ce74ab6 {"md5": "16688c60a1077d741768bb40d6532788", "pid": "061077690", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/061077690", "source": "IDREF"}], "preferred_name": "Poiroux, François", "country_associated": "fr", "authorized_access_point": "Poiroux, François", "biographical_information": ["Docteur en chirurgie dentaire"]} 1 +2024-09-11 09:04:09.150693 2024-09-11 09:04:09.150696 bc4363cd-53e4-4b7f-bc94-a17c0b9c4c4a {"md5": "1fd17d5c0af52d276f6f539dc037a7b8", "pid": "061113603", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/061113603", "source": "IDREF"}], "preferred_name": "Agostini, Léon", "authorized_access_point": "Agostini, Léon", "biographical_information": ["Agrégé de physique. Docteur ès sciences (vers 1948)"]} 1 +2024-09-11 09:04:09.207735 2024-09-11 09:04:09.207738 50c2fbc4-03e4-40cb-9802-463a02705369 {"md5": "f0076f3e23c110937a67c80637425299", "pid": "061131547", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/061131547", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "077338669"}, "variant_name": ["Stadtgalerie (Sarrebruck, Allemagne)", "Stadtgalerie Saarbrücken", "Sarrebruck (Allemagne). Stadtgalerie", "Stiftung Saarländischer Kulturbesitz. Stadtgalerie (Sarrebruck, Allemagne)"], "preferred_name": "Stadtgalerie (Saarbrücken, Allemagne)", "country_associated": "gw", "variant_access_point": ["Stadtgalerie (Sarrebruck, Allemagne)", "Stadtgalerie Saarbrücken", "Sarrebruck (Allemagne). Stadtgalerie", "Stiftung Saarländischer Kulturbesitz. Stadtgalerie (Sarrebruck, Allemagne)"], "date_of_establishment": "1985", "authorized_access_point": "Stadtgalerie (Saarbrücken, Allemagne)", "biographical_information": ["Adresse : Sankt-Johanner Markt 24, 66111 Sarrebruck. Adresse électronique : info@stadtgalerie.de", "Fondée en tant qu'institution municipale, avant d'intégrer en 1994 la Stiftung Saarländischer Kulturbesitz (Fondation du patrimoine culturel sarrois)"]} 1 +2024-09-11 09:04:09.345135 2024-09-11 09:04:09.34514 c02ce918-c786-4b7c-a1ee-b1195aa16d1a {"md5": "1c4de99118c74f0da4912bde07f056d1", "pid": "061190586", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/061190586", "source": "IDREF"}], "preferred_name": "Duval, Jean-Marc", "country_associated": "fr", "authorized_access_point": "Duval, Jean-Marc", "biographical_information": ["Docteur en droit, maître de conférences à la Faculté de droit et de science politique d'Aix-Marseille, en 2002"]} 1 +2024-09-11 09:04:09.408543 2024-09-11 09:04:09.408548 5e48e748-a8d6-4f08-8658-97f2e557f214 {"md5": "5a097729373ee5fc083aa13500079dcb", "pid": "063876981", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/063876981", "source": "IDREF"}], "date_of_birth": "1909", "preferred_name": "Hanser, Richard", "country_associated": "xxu", "authorized_access_point": "Hanser, Richard, 1909-", "biographical_information": ["Journaliste. Spécialiste de l'histoire du national-socialisme (1984)"]} 1 +2024-09-11 09:04:09.484647 2024-09-11 09:04:09.484653 805e83d1-f9a2-4a8e-8f69-bcc219dd2d1a {"md5": "88930df432a578cd89ebe6505e720c5b", "pid": "066759099", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/066759099", "source": "IDREF"}], "variant_name": ["Kershaw, Paul J.E."], "preferred_name": "Kershaw, Paul", "country_associated": "xxk", "variant_access_point": ["Kershaw, Paul J.E."], "authorized_access_point": "Kershaw, Paul", "biographical_information": ["Travaille à l'University College London"]} 1 +2024-09-11 09:04:09.55316 2024-09-11 09:04:09.553165 99ae7658-c824-4f47-b0b0-459d12a92b81 {"md5": "591356ffb1956f2e5cefc441d1714260", "pid": "066764602", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/066764602", "source": "IDREF"}], "date_of_birth": "1946", "preferred_name": "Rohatynskyj, Marta R.", "country_associated": "xxu", "authorized_access_point": "Rohatynskyj, Marta R., 1946-....", "biographical_information": ["Professeur associé d'anthropologie à l'université de Guelph, Ontario"]} 1 +2024-09-11 09:04:09.623842 2024-09-11 09:04:09.623846 4af74716-6f64-45c1-9de2-98feb2bfe78b {"md5": "dfbd440e690e50f760070f786477a8dd", "pid": "066772834", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/066772834", "source": "IDREF"}], "preferred_name": "Beck, Marli", "country_associated": "gw", "authorized_access_point": "Beck, Marli"} 1 +2024-09-11 09:04:09.685041 2024-09-11 09:04:09.685044 61b4efc6-e216-4652-bdd7-5495644a36ef {"md5": "a1b57db4ae41e24bd0b1e4d0840290c7", "pid": "06685086X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/06685086X", "source": "IDREF"}], "preferred_name": "El Boudali, Farid", "country_associated": "fr", "authorized_access_point": "El Boudali, Farid", "biographical_information": ["Titulaire d'un doctorat en Physique soutenu à l'Université de Metz (2001)"]} 1 +2024-09-11 09:04:09.744247 2024-09-11 09:04:09.744252 96a824c4-d808-44a6-839c-e6a49fd38f0f {"md5": "2ff6fe3edff7a13a7253c3ca839e232d", "pid": "066879353", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["cat"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/066879353", "source": "IDREF"}], "preferred_name": "Serrat, Carles", "country_associated": "sp", "authorized_access_point": "Serrat, Carles"} 1 +2024-09-11 09:04:09.799485 2024-09-11 09:04:09.79949 ec4c91af-7455-4067-8e12-cb406722256a {"md5": "f9e1cf8efbae50639e9ed6f94c189479", "pid": "066897815", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/066897815", "source": "IDREF"}], "variant_name": ["Mc Eachern, Claire", "MacEachern, Claire", "Mac Eachern, Claire"], "date_of_birth": "1963", "preferred_name": "McEachern, Claire", "country_associated": "xxk", "variant_access_point": ["Mc Eachern, Claire", "MacEachern, Claire", "Mac Eachern, Claire"], "authorized_access_point": "McEachern, Claire, 1963-...."} 1 +2024-09-11 09:04:09.855484 2024-09-11 09:04:09.855489 d6805408-5157-492e-8e75-99dfb5a46375 {"md5": "84e8a800e2a58a5844dc984d66edd15c", "pid": "066902096", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/066902096", "source": "IDREF"}], "preferred_name": "Lampe, Fabienne", "country_associated": "fr", "authorized_access_point": "Lampe, Fabienne", "biographical_information": ["Adjointe au Délégué du RMI, Revenu minimum d'insertion"]} 1 +2024-09-11 09:04:09.915354 2024-09-11 09:04:09.915357 92c548a3-6f22-41db-a1ae-9bf80107a7c2 {"md5": "e4c7527ca8f24bf5cfb89ef23c9cf0da", "pid": "066986540", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/066986540", "source": "IDREF"}], "preferred_name": "Seminario o franciscanismo em Portugal", "country_associated": "po", "date_of_termination": "1994-04-24", "date_of_establishment": "1994-04-22", "authorized_access_point": "Seminario o franciscanismo em Portugal"} 1 +2024-09-11 09:04:09.973717 2024-09-11 09:04:09.97372 9754b32b-4ca2-4f98-bca0-3bc2557be3e9 {"md5": "f79a3814cde7380754f0c11ede70f16f", "pid": "066993709", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/066993709", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "067017932"}, "date_of_birth": "1843", "date_of_death": "1915", "preferred_name": "Roberty, Eugène de", "authorized_access_point": "Roberty, Eugène de, 1843-1915", "biographical_information": ["Philosophe. A aussi écrit en russe"]} 1 +2024-09-11 09:04:10.029153 2024-09-11 09:04:10.029156 ef4cac2e-48bb-4649-8180-9e0e407c4df0 {"md5": "57106776ff55d757e8e01eb5b86aba34", "pid": "06703098X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/06703098X", "source": "IDREF"}], "date_of_birth": "1893", "preferred_name": "Smith, Hilrie Shelton", "country_associated": "xxu", "authorized_access_point": "Smith, Hilrie Shelton, 1893-....", "biographical_information": ["Professeur d'éducation religieuse, Duke university, Durham, N.C. (en 1960)"]} 1 +2024-09-11 09:04:11.362994 2024-09-11 09:04:11.362998 cc2829a4-0871-4b0e-b5ee-c541d5311662 {"md5": "4c7f20ee4fe03c4436a33e70eaaf68e9", "pid": "069156964", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/069156964", "source": "IDREF"}], "preferred_name": "Matasar, Ann B.", "country_associated": "xxu", "authorized_access_point": "Matasar, Ann B."} 1 +2024-09-11 09:04:10.090963 2024-09-11 09:04:10.090967 60180755-e2a9-44c8-a169-023d4d5cc96c {"md5": "163bf4fb64197165f1f6d770e9c21ffc", "pid": "067042767", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/067042767", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "080408788"}, "variant_name": ["Benjamin, Cornelius", "Benjamin, A. Cornelius"], "date_of_birth": "1897", "date_of_death": "1968", "preferred_name": "Benjamin, Abram Cornelius", "country_associated": "xxu", "variant_access_point": ["Benjamin, Cornelius", "Benjamin, A. Cornelius"], "authorized_access_point": "Benjamin, Abram Cornelius, 1897-1968", "biographical_information": ["Professeur de philosophie. A enseigné à l'Université du Missouri, USA. Spécialiste de la philosophie des sciences et de l'épistémologie. A été président de la Western division of the American philosophical association"]} 1 +2024-09-11 09:04:10.147132 2024-09-11 09:04:10.147136 0b8263e3-cf1c-4ccf-bbbf-698c0a94a393 {"md5": "6cfa77241c087576b79b8ebb76ab023a", "pid": "067071333", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/067071333", "source": "IDREF"}], "variant_name": ["Université de Strasbourg. Institut de sciences criminelles et pénitentiaires"], "preferred_name": "Institut de sciences criminelles et pénitentiaires (Strasbourg)", "country_associated": "fr", "variant_access_point": ["Université de Strasbourg. Institut de sciences criminelles et pénitentiaires"], "authorized_access_point": "Institut de sciences criminelles et pénitentiaires (Strasbourg)"} 1 +2024-09-11 09:04:10.203697 2024-09-11 09:04:10.203701 8b2b4756-ba3f-4ef9-bf27-0861e40e563e {"md5": "6e02f81eb60808bb9ea863a25636a8ab", "pid": "067071740", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/067071740", "source": "IDREF"}], "variant_name": ["REBIUN"], "preferred_name": "Red de bibliotecas universitarias", "country_associated": "sp", "variant_access_point": ["REBIUN"], "authorized_access_point": "Red de bibliotecas universitarias"} 1 +2024-09-11 09:04:10.262137 2024-09-11 09:04:10.262142 b6f05f61-e109-41f7-b200-4e3cb1338fc3 {"md5": "7995b5669823bb2b15a34697f4a67b14", "pid": "067073204", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/067073204", "source": "IDREF"}], "variant_name": ["Eglise catholique. Diocèse (Perpignan)"], "preferred_name": "Eglise catholique. Diocèse (Perpignan-Elne)", "country_associated": "fr", "variant_access_point": ["Eglise catholique. Diocèse (Perpignan)"], "date_of_establishment": "1822", "authorized_access_point": "Eglise catholique. Diocèse (Perpignan-Elne)", "biographical_information": ["Le 6 octobre 1822, Pie VII rétablit le diocèse de Perpignan-Elne. Il couvre le département des Pyrénées-Orientales et est suffragant de l'archidiocèse d'Albi. À la suite de la loi de séparation des Églises et de l'État du 9 décembre 1905, le diocèse de Perpignan-Elne devient une association diocésaine. Par un décret du 8 décembre 2002, la Congrégation pour les évêques élève le diocèse de Montpellier au rang d'archidiocèse métropolitain et fait du diocèse de Perpignan-Elne un de ses suffragants."]} 1 +2024-09-11 09:04:10.31646 2024-09-11 09:04:10.316464 0d20c458-4425-44c2-a124-7ba253403252 {"md5": "df872e7a61e293d214804437531d3f99", "pid": "067086055", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/067086055", "source": "IDREF"}], "preferred_name": "Association pour le développement de l'action entre avocats et juristes étudiants (La Varenne-Saint-Hilaire)", "country_associated": "xx", "authorized_access_point": "Association pour le développement de l'action entre avocats et juristes étudiants (La Varenne-Saint-Hilaire)"} 1 +2024-09-11 09:04:10.375514 2024-09-11 09:04:10.375519 abcd6abc-b6d7-45c4-b07d-dff5cfc948ef {"md5": "34a3220a384eabf09b2dfd47f4ea55f5", "pid": "067096441", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/067096441", "source": "IDREF"}], "preferred_name": "SANINORD", "country_associated": "xx", "authorized_access_point": "SANINORD"} 1 +2024-09-11 09:04:10.431215 2024-09-11 09:04:10.43122 9626ddc7-d174-462d-acc8-a3f36958d274 {"md5": "5b53293137bf32dae624cd9c69cd3a52", "pid": "067096824", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/067096824", "source": "IDREF"}], "variant_name": ["AS Police (Nouméa)"], "preferred_name": "Association sportive de la police (Nouméa)", "country_associated": "nl", "variant_access_point": ["AS Police (Nouméa)"], "date_of_establishment": "1974", "authorized_access_point": "Association sportive de la police (Nouméa)"} 1 +2024-09-11 09:04:10.489483 2024-09-11 09:04:10.489487 c1cc5297-3865-4146-9ec5-d44f4341d3b8 {"md5": "739a3ac6b63396559ee3bac99e892ea7", "pid": "067174299", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/067174299", "source": "IDREF"}], "variant_name": ["Westbrook, J.H."], "date_of_birth": "1924", "preferred_name": "Westbrook, Jack Hall", "variant_access_point": ["Westbrook, J.H."], "authorized_access_point": "Westbrook, Jack Hall, 1924-....", "biographical_information": ["Spécialiste des matériaux. - En poste : Brookline technologies, Ballstone Spa, N.Y. (en 1998)"]} 1 +2024-09-11 09:04:10.556759 2024-09-11 09:04:10.556763 83809ecb-60b1-4635-8281-5c1847c18db6 {"md5": "2e4d2625ce0ec6487494f5bc785faf7e", "pid": "067181562", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/067181562", "source": "IDREF"}], "preferred_name": "Baker Röben, Betsy", "country_associated": "gw", "authorized_access_point": "Baker Röben, Betsy", "biographical_information": ["Écrit aussi en anglais", "Docteur en droit, Akademie der Wissenschaften, Heidelberg"]} 1 +2024-09-11 09:04:10.61587 2024-09-11 09:04:10.615874 52228ec6-9804-432d-9034-841a6b93659b {"md5": "2f23bc2fa09af055ef4506a94d99753e", "pid": "067223613", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre", "eng"], "qualifier": "informaticien", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/067223613", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Habib, Michel, informaticien", "country_associated": "fr", "authorized_access_point": "Habib, Michel, 19..-...., informaticien", "biographical_information": ["Professeur des Universités. Laboratoire d'Informatique, de Robotique et de Micro-électronique, Montpellier (2004). Professeur au LIAFA (Laboratoire d'Informatique Algorythmique : Fondements et Applications), Paris, en 2005. Professeur émérite d'informatique à l'Université de Paris (en 2021)"]} 1 +2024-09-11 09:04:10.672066 2024-09-11 09:04:10.672069 f9888fd2-b531-474d-897e-bb8e335daa0a {"md5": "f668b9543f6fd7f110814922b3d0416c", "pid": "067285716", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/067285716", "source": "IDREF"}], "variant_name": ["ISEH"], "preferred_name": "International society for experimental hematology", "country_associated": "xxu", "variant_access_point": ["ISEH"], "date_of_establishment": "1950", "authorized_access_point": "International society for experimental hematology", "biographical_information": ["Edite le périodique : Experimental hematology ; adresse en octobre 2002 : ISEH, 2025 M Street, N.W., Suite 800, Washington, DC 20036-3309, USA"]} 1 +2024-09-11 09:04:10.725644 2024-09-11 09:04:10.725648 4d806ad2-3ecf-4190-b56d-2ed080c34fbb {"md5": "8c06a1ff946992c966f57c3a94d35db4", "pid": "067321666", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/067321666", "source": "IDREF"}], "date_of_birth": "1812", "date_of_death": "1871", "preferred_name": "Dain, Charles", "country_associated": "fr", "authorized_access_point": "Dain, Charles, 1812-1871", "biographical_information": ["Représentant de la Guadeloupe à la Constituante de 1848"]} 1 +2024-09-11 09:04:10.780701 2024-09-11 09:04:10.780704 02b9485f-9b97-48e3-8145-50b0bce0cd1e {"md5": "f007e78fa053962a689053e1d5aa45e5", "pid": "067345395", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/067345395", "source": "IDREF"}], "date_of_birth": "1968-03-27", "preferred_name": "Badilita, Cristian", "country_associated": "rm", "authorized_access_point": "Badilita, Cristian, 1968-....", "biographical_information": ["Docteur en histoire du christianisme ancien (Paris 4, 2002)"]} 1 +2024-09-11 09:04:10.837651 2024-09-11 09:04:10.837655 65b19b4d-c546-48cd-8e49-bff5b17ff2e1 {"md5": "36f4a9efb4c9c19bfaa6d4d4ca569474", "pid": "067692753", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/067692753", "source": "IDREF"}], "preferred_name": "Rehm, K.E.", "country_associated": "gw", "authorized_access_point": "Rehm, K.E.", "biographical_information": ["Professeur de médecine. Köln"]} 1 +2024-09-11 09:04:10.894565 2024-09-11 09:04:10.894568 c751848a-00cc-4e93-a9c1-9016cf3159e5 {"md5": "7cc3913566427e0bff542e7cf9fb57bf", "pid": "06771496X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/06771496X", "source": "IDREF"}], "preferred_name": "Jain, Mahendra Kumar", "country_associated": "xxu", "authorized_access_point": "Jain, Mahendra Kumar", "biographical_information": ["En poste à l'Université de Delaware aux Etats-Unis."]} 1 +2024-09-11 09:04:10.958956 2024-09-11 09:04:10.95896 c40fef45-f0db-4937-a9a0-846fac8ed2e4 {"md5": "87e10f8d682f00f378fed46f37243007", "pid": "067732003", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/067732003", "source": "IDREF"}], "date_of_birth": "18XX", "date_of_death": "18XX", "preferred_name": "Mahlow, Georg Heinrich", "country_associated": "gw", "authorized_access_point": "Mahlow, Georg Heinrich, 18..-19.."} 1 +2024-09-11 09:04:11.015818 2024-09-11 09:04:11.015822 eb009186-137e-47bb-aeb6-3526decf1205 {"md5": "85f69b59f911eb5c75d031dade7b55ea", "pid": "068703597", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/068703597", "source": "IDREF"}], "preferred_name": "Parks, Ronald D.", "country_associated": "xxu", "authorized_access_point": "Parks, Ronald D.", "biographical_information": ["University of Rochester, Rochester, N.Y."]} 1 +2024-09-11 09:04:11.075081 2024-09-11 09:04:11.075085 4f076d5e-8bea-4794-bdfa-10f39f382e35 {"md5": "bf4ef360ecef22c5917b0510c605e842", "pid": "069064830", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/069064830", "source": "IDREF"}], "date_of_birth": "1857-10-25", "date_of_death": "1938-02-10", "preferred_name": "Buland, Émile", "country_associated": "fr", "authorized_access_point": "Buland, Émile, 1857-1938", "biographical_information": ["Prénoms complets : Jean Emile", "Graveur. Elu, le 19 décembre 1925, membre titulaire de l'Académie des Beaux-Arts"]} 1 +2024-09-11 09:04:11.140506 2024-09-11 09:04:11.140511 718d1f2c-5838-4ef8-925b-ac51f822c5b8 {"md5": "7d4e531e1f4a7e928bc25041933f7fc0", "pid": "069116458", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["gre", "grc", "eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/069116458", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "075726858"}, "variant_name": ["Kantirea, M."], "date_of_birth": "1970", "preferred_name": "Kantiréa, Maria", "country_associated": "gr", "variant_access_point": ["Kantirea, M."], "authorized_access_point": "Kantiréa, Maria, 1970-...."} 1 +2024-09-11 09:04:11.195869 2024-09-11 09:04:11.195871 346dc7d6-f389-4e06-bafc-a0f01c195acf {"md5": "9a8ac576fd52358b603f350e3117a5cf", "pid": "069130817", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/069130817", "source": "IDREF"}], "date_of_birth": "1934", "preferred_name": "Parry, Hugh", "country_associated": "xxu", "authorized_access_point": "Parry, Hugh, 1934-....", "biographical_information": ["Professeur de lettres classiques."]} 1 +2024-09-11 09:04:11.25043 2024-09-11 09:04:11.250435 0c4ac84a-5977-462b-8b13-b5e861cfdca0 {"md5": "cbf2b25580f4268ae56a93d0368ca976", "pid": "069148155", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/069148155", "source": "IDREF"}], "preferred_name": "Strobel, Howard A.", "country_associated": "xxu", "authorized_access_point": "Strobel, Howard A.", "biographical_information": ["En poste : Duke university, Durham, N.C. (en 1962)"]} 1 +2024-09-11 09:04:11.309936 2024-09-11 09:04:11.30994 47557508-cdc8-4d3b-8f57-8e655237260a {"md5": "5a42ccc93068e1a1855f2bd2204eaed4", "pid": "06915547X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/06915547X", "source": "IDREF"}], "date_of_birth": "1975-09-03", "preferred_name": "Gibelin, Pierre-Antoine", "country_associated": "fr", "authorized_access_point": "Gibelin, Pierre-Antoine, 1975-....", "biographical_information": ["Auteur d'une thèse d'exercice en Pharmacie, soutenue le 19 avril 2001 à l'Université Montpellier 1"]} 1 +2024-09-11 09:04:11.417129 2024-09-11 09:04:11.417133 3d960ec6-44f1-450d-95be-01334fc52814 {"md5": "1567c84a95e4862c793f1b420500ac6c", "pid": "069265860", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "consultant en management", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/069265860", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Robinet, Jean-Claude, consultant en management", "country_associated": "fr", "authorized_access_point": "Robinet, Jean-Claude, 19..-...., consultant en management", "biographical_information": ["Consultant en management hôtelier"]} 1 +2024-09-11 09:04:11.476131 2024-09-11 09:04:11.476135 4c6fc80b-03ec-4422-ab19-10568cebdd12 {"md5": "06e55827387abf1ec9110938e1660e52", "pid": "069379777", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/069379777", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Portier, Guillaume", "country_associated": "fr", "authorized_access_point": "Portier, Guillaume, 19..-....", "biographical_information": ["Directeur de thèse, Université Paul Sabatier, Toulouse (en 2002)"]} 1 +2024-09-11 09:04:11.530726 2024-09-11 09:04:11.53073 6acd6098-bc41-4402-a329-55e593ac3677 {"md5": "a5cfe3050a849ca0707b9a695015b3a0", "pid": "069487332", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/069487332", "source": "IDREF"}], "date_of_birth": "1942", "preferred_name": "Shimizu, Akitoshi", "country_associated": "xxk", "authorized_access_point": "Shimizu, Akitoshi, 1942-"} 1 +2024-09-11 09:04:11.594897 2024-09-11 09:04:11.594901 b8d464e8-f8d9-4b8e-a189-c47e265cd4a8 {"md5": "75e5aeaac32be8f5acabb4dd04619387", "pid": "069679908", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "qualifier": "grammairienne", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/069679908", "source": "IDREF"}], "variant_name": ["García, Josefa Martín"], "preferred_name": "Martín García, Josefa, grammairienne", "country_associated": "sp", "variant_access_point": ["García, Josefa Martín"], "authorized_access_point": "Martín García, Josefa, grammairienne", "biographical_information": ["Grammairienne"]} 1 +2024-09-11 09:04:11.647436 2024-09-11 09:04:11.647439 367b0763-341d-42d4-91e3-2b7dc783b653 {"md5": "c3135ee945a7a4bd6c375afc7454c3f1", "pid": "069781524", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/069781524", "source": "IDREF"}], "preferred_name": "Pelizza, Giovanna", "country_associated": "it", "authorized_access_point": "Pelizza, Giovanna"} 1 +2024-09-11 09:04:11.707028 2024-09-11 09:04:11.707032 969c0531-e459-4e24-9f62-b97ec982b18e {"md5": "bdc67934308c88e7f23fb5ee0822d9b0", "pid": "069782768", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/069782768", "source": "IDREF"}], "date_of_birth": "1860", "date_of_death": "1946", "preferred_name": "Loesch, Ernst", "country_associated": "sz", "authorized_access_point": "Loesch, Ernst, 1860-1946"} 1 +2024-09-11 09:04:11.783656 2024-09-11 09:04:11.78366 03d3978a-7d90-47d2-b8a2-9dae118c0b5a {"md5": "d4456c196b12d1431462266f90c213c6", "pid": "069843783", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/069843783", "source": "IDREF"}], "preferred_name": "Colloque d'histoire sociale", "country_associated": "fr", "date_of_termination": "1970-04-21", "date_of_establishment": "1970-04-20", "authorized_access_point": "Colloque d'histoire sociale (1970 ; Besançon)"} 1 +2024-09-11 09:04:11.856721 2024-09-11 09:04:11.856724 d7c5f40f-2837-4674-98b0-8c1e887f345f {"md5": "c239d39b1c3bffc9f07d71387f783a1f", "pid": "069844119", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/069844119", "source": "IDREF"}], "variant_name": ["Barkmann, Udo"], "date_of_birth": "1955", "preferred_name": "Barkmann, Udo B.", "country_associated": "gw", "variant_access_point": ["Barkmann, Udo"], "parallel_access_point": ["Barkmann, Udo B."], "authorized_access_point": "Barkmann, Udo B., 1955-....", "biographical_information": ["Mongoliste allemand"]} 1 +2024-09-11 09:04:11.974688 2024-09-11 09:04:11.974693 74de7083-09b7-4f3a-9c37-9946b089ff28 {"md5": "64f03399d32e9a3c0b962a2dbb8283ed", "pid": "069886687", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/069886687", "source": "IDREF"}], "preferred_name": "International conference on numerical methods in fluid dynamics", "country_associated": "xx", "date_of_termination": "1998-07-10", "date_of_establishment": "1998-07-06", "authorized_access_point": "International conference on numerical methods in fluid dynamics (16 ; 1998 ; Arcachon, Gironde)"} 1 +2024-09-11 09:04:12.037611 2024-09-11 09:04:12.037616 c0d2c1ae-3b8e-4180-a396-6eadab91f0bd {"md5": "c905d207980755d5d3f1d96ab5901399", "pid": "070054878", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/070054878", "source": "IDREF"}], "variant_name": ["Université de Bordeaux II. UFR des sciences de l'homme. Département des sciences de l'éducation", "Université de Bordeaux 2 Victor Segalen. UFR des Sciences sociales et psychologiques. Département des sciences de l'éducation", "Université de Bordeaux 2. Département des sciences de l'éducation", "Université de Bordeaux II. UFR des Sciences sociales et psychologiques. Département des sciences de l'éducation", "Université de Bordeaux 2. UFR des sciences de l'homme. Département des sciences de l'éducation"], "preferred_name": "Université Bordeaux-II. Département des sciences de l'éducation", "country_associated": "fr", "variant_access_point": ["Université de Bordeaux II. UFR des sciences de l'homme. Département des sciences de l'éducation", "Université de Bordeaux 2 Victor Segalen. UFR des Sciences sociales et psychologiques. Département des sciences de l'éducation", "Université de Bordeaux 2. Département des sciences de l'éducation", "Université de Bordeaux II. UFR des Sciences sociales et psychologiques. Département des sciences de l'éducation", "Université de Bordeaux 2. UFR des sciences de l'homme. Département des sciences de l'éducation"], "authorized_access_point": "Université Bordeaux-II. Département des sciences de l'éducation", "biographical_information": ["3ter Place de la Victoire - Bordeaux - Attaché à l'UFR des sciences sociales et psychologiques devenu l'UFR des sciences de l'Homme"]} 1 +2024-09-11 09:04:15.618407 2024-09-11 09:04:15.61841 71b2d38b-81e4-4ec1-9569-9cd8a23c2feb {"md5": "9838b85d6d5edd4240ea45683e329b59", "pid": "075912872", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/075912872", "source": "IDREF"}], "date_of_birth": "1980-07-03", "preferred_name": "Fayard, Valérie", "country_associated": "xx", "authorized_access_point": "Fayard, Valérie, 1980-...."} 1 +2024-09-11 09:04:12.098833 2024-09-11 09:04:12.098836 f7f11adb-7010-427e-aa8a-5b53644bc625 {"md5": "db49e575203079fbc261979be9d0217d", "pid": "070150737", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/070150737", "source": "IDREF"}], "variant_name": ["Portugal. Comissão para a igualdade e para os direitos das mulheres"], "preferred_name": "Portugal. Comissão para a igualdade e direitos das mulheres", "country_associated": "po", "variant_access_point": ["Portugal. Comissão para a igualdade e para os direitos das mulheres"], "authorized_access_point": "Portugal. Comissão para a igualdade e direitos das mulheres"} 1 +2024-09-11 09:04:12.158008 2024-09-11 09:04:12.158012 9aaa7965-b2a4-4c8e-a060-0d71e5962378 {"md5": "1da6bcb8f2a83f4045b67c73af5b1878", "pid": "070160538", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["cat"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/070160538", "source": "IDREF"}], "preferred_name": "Fundació Josep Pla (Palafrugell, Espagne)", "country_associated": "sp", "date_of_establishment": "1973", "authorized_access_point": "Fundació Josep Pla (Palafrugell, Espagne)", "biographical_information": ["Carrer Nou, 49-51 17200 Palafrugell ; courriel : fjpla@ddgi.es", "Créée en 1973 sous le nom de Fundació Privada Biblioteca Josep Pla"]} 1 +2024-09-11 09:04:12.21137 2024-09-11 09:04:12.211374 7e7466b9-e53e-4a3d-b41f-4c9dcf2c15e2 {"md5": "862f022fc2e79d75081a664bd577aee4", "pid": "070199736", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/070199736", "source": "IDREF"}], "date_of_birth": "1953", "preferred_name": "Lornell, Kip", "country_associated": "xxu", "authorized_access_point": "Lornell, Kip, 1953-...", "biographical_information": ["Professeur au College of William and Mary puis à Smithsonian Institution puis à University of Virginia...(1995)"]} 1 +2024-09-11 09:04:12.275041 2024-09-11 09:04:12.275046 e42990f7-2854-4a43-9d36-c93f2b61baa9 {"md5": "1661b4737d83407e6d6a1a1efd9c0e08", "pid": "070328005", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ara"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/070328005", "source": "IDREF"}], "variant_name": ["ناجي, هلال", "Hilāl Nāǧī", "Nājī, Hilāl", "Naji, Hilel"], "date_of_birth": "1929", "date_of_death": "2011", "preferred_name": "Nāǧī, Hilāl", "country_associated": "iq", "variant_access_point": ["Hilāl Nāǧī", "Nājī, Hilāl", "Naji, Hilel"], "authorized_access_point": "Nāǧī, Hilāl, 1929-2011", "biographical_information": ["Professeur de langue arabe et historien."]} 1 +2024-09-11 09:04:12.338802 2024-09-11 09:04:12.338805 3b2e2838-969b-4231-b17c-1c0554e568f3 {"md5": "badc824b827ea0982adc1c8f6e12197c", "pid": "070377510", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/070377510", "source": "IDREF"}], "preferred_name": "Coughanowr, Donald Ray", "authorized_access_point": "Coughanowr, Donald Ray", "biographical_information": ["Enseignant associé en génie chimique à Purdue University (1965)"]} 1 +2024-09-11 09:04:12.392058 2024-09-11 09:04:12.392061 9526b5fc-a262-4e50-aa14-2e1d2873c3e4 {"md5": "afa4adf58d5ebd4a449f972d915e78bc", "pid": "070400229", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/070400229", "source": "IDREF"}], "preferred_name": "Zárate Morán, Roberto", "authorized_access_point": "Zárate Morán, Roberto"} 1 +2024-09-11 09:04:12.443786 2024-09-11 09:04:12.44379 2fef4bf3-78f9-4c3a-b6a4-fc6334dfd489 {"md5": "4fbaa25791726c65abf23c1a93c0f571", "pid": "070478015", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/070478015", "source": "IDREF"}], "date_of_birth": "1973-04-17", "preferred_name": "Butavand, Alexis", "country_associated": "fr", "authorized_access_point": "Butavand, Alexis, 1973-....", "biographical_information": ["Docteur en médecine (Dijon, 2003)"]} 1 +2024-09-11 09:04:12.501476 2024-09-11 09:04:12.501482 b638edc2-a7c4-4602-a973-7d7104f07696 {"md5": "09495b5e1e33be608b4d0dca3425840c", "pid": "070664900", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/070664900", "source": "IDREF"}], "preferred_name": "Roth, Anthony", "country_associated": "xxk", "authorized_access_point": "Roth, Anthony", "biographical_information": ["Professeur : University college London doctoral programme in clinical psychology (en 1996)"]} 1 +2024-09-11 09:04:12.553374 2024-09-11 09:04:12.553379 612fd24d-6853-4327-8fcb-1b9cd0e016a9 {"md5": "d8809c5ee4a4610e7d9da48abc6dbc32", "pid": "070977275", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/070977275", "source": "IDREF"}], "date_of_birth": "1971", "preferred_name": "Turner, Sharon", "country_associated": "sa", "authorized_access_point": "Turner, Sharon, 1971-...."} 1 +2024-09-11 09:04:12.608416 2024-09-11 09:04:12.608421 f1b3c564-0e5c-4b1b-9fdf-f97caca7f839 {"md5": "26ba8c90ab46eebc29542585a112c1e8", "pid": "071004092", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/071004092", "source": "IDREF"}], "preferred_name": "Freedmen and southern society project", "country_associated": "xxu", "date_of_establishment": "1976", "authorized_access_point": "Freedmen and southern society project", "biographical_information": ["Société crée en 1976 s'interesse à l'émancipation des esclaves noirs américains après la guerre de sécession (1861-1865)"]} 1 +2024-09-11 09:04:12.660191 2024-09-11 09:04:12.660195 bca78390-6e3e-44eb-9f75-3f3bbe630358 {"md5": "497b52998f1388fb7949b3e49dfd5af1", "pid": "07101120X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/07101120X", "source": "IDREF"}], "preferred_name": "Barrett-Ayres, Reginald", "authorized_access_point": "Barrett-Ayres, Reginald", "biographical_information": ["Musicologue. Spécialiste de Mozart et de Haydn"]} 1 +2024-09-11 09:04:12.72529 2024-09-11 09:04:12.725294 d95add17-f860-401c-acc5-93cba1923271 {"md5": "17eb285be44dd532482248507ad65f30", "pid": "071088679", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/071088679", "source": "IDREF"}], "preferred_name": "Chirol, Marie-Magdeleine", "country_associated": "xx", "authorized_access_point": "Chirol, Marie-Magdeleine"} 1 +2024-09-11 09:04:19.964674 2024-09-11 09:04:19.964679 d2f5747f-d14d-4f30-86d8-37d89c773141 {"md5": "d687e696e8858095d5394d0ef68e4c24", "pid": "080647359", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/080647359", "source": "IDREF"}], "preferred_name": "Stephan, Werner", "authorized_access_point": "Stephan, Werner"} 1 +2024-09-11 09:04:12.787854 2024-09-11 09:04:12.787859 2e849fe6-0b33-4aca-9c9e-5501014bd2d5 {"md5": "fdc6630c41dbc7dfb93e6c53426ab83c", "pid": "071120637", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/071120637", "source": "IDREF"}], "variant_name": ["Binkley, David Aaron"], "preferred_name": "Binkley, David A.", "country_associated": "xx", "variant_access_point": ["Binkley, David Aaron"], "authorized_access_point": "Binkley, David A.", "biographical_information": ["Conservateur en chef au National Museum of African Arts, Smithsonian Institution, Washington, D. C."]} 1 +2024-09-11 09:04:12.842692 2024-09-11 09:04:12.842697 1080b122-52b4-40ea-a0ff-c488edb46c21 {"md5": "706f4d2195b43381bbb978d4b9f0c519", "pid": "071285571", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "médecin", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/071285571", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Louis, Edouard, médecin", "country_associated": "be", "authorized_access_point": "Louis, Edouard, 19..-...., médecin", "biographical_information": ["Docteur en médecine", "Travaille au CHU de Liège (Belgique) en 2023"]} 1 +2024-09-11 09:04:12.903094 2024-09-11 09:04:12.903098 297c6582-f1b3-4699-9a62-65dea2d63622 {"md5": "258877ca0561396dffa7bd7bd7704be0", "pid": "071324380", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/071324380", "source": "IDREF"}], "variant_name": ["Mineo, E. Igor"], "date_of_birth": "1959", "preferred_name": "Mineo, Ennio Igor", "country_associated": "it", "variant_access_point": ["Mineo, E. Igor"], "authorized_access_point": "Mineo, Ennio Igor, 1959-....", "biographical_information": ["Enseigne à l'université de Palerme"]} 1 +2024-09-11 09:04:12.95471 2024-09-11 09:04:12.954715 fcaf9ce4-8f18-4671-bd0a-a017616bba6a {"md5": "30135b8be97da266f08dfabd76d60fe8", "pid": "071344241", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/071344241", "source": "IDREF"}], "date_of_birth": "1952", "preferred_name": "Ihori, Toshihiro", "country_associated": "ja", "authorized_access_point": "Ihori, Toshihiro, 1952-....", "biographical_information": ["Écrit aussi en anglais", "Économiste. Professeur d'économie à l'Université de la Ville de Tokyo, Japon (en 1993)"]} 1 +2024-09-11 09:04:13.019508 2024-09-11 09:04:13.019514 bd242bc8-7144-4ba5-9783-35c20e31330b {"md5": "615e3b9715a0473ef8fb9fb02af26e3f", "pid": "071531149", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/071531149", "source": "IDREF"}], "variant_name": ["Arnold, G. C."], "date_of_birth": "1944", "preferred_name": "Arnold, Gregory C.", "country_associated": "nz", "variant_access_point": ["Arnold, G. C."], "authorized_access_point": "Arnold, Gregory C., 1944-...."} 1 +2024-09-11 09:04:13.129773 2024-09-11 09:04:13.129778 4079428e-b55a-4b88-985d-c77757f0e7fe {"md5": "4e3d122c7e60a8d2c2ba89e27ede0f76", "pid": "071535616", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/071535616", "source": "IDREF"}], "preferred_name": "Lamberton, Charles", "authorized_access_point": "Lamberton, Charles", "biographical_information": ["Professeur au Lycée Gallieni, secrétaire perpétuel de l'Académie Malgache"]} 1 +2024-09-11 09:04:13.194671 2024-09-11 09:04:13.194675 03ecf233-77df-4467-b09a-710003293459 {"md5": "32f019c8135ab71e5d8f000facb9680e", "pid": "071555994", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/071555994", "source": "IDREF"}], "variant_name": ["FAS", "Fédération des associations d'actionnaires salariés et anciens salariés"], "preferred_name": "Fédération française des associations d'actionnaires salariés et anciens salariés", "country_associated": "fr", "variant_access_point": ["FAS", "Fédération des associations d'actionnaires salariés et anciens salariés"], "authorized_access_point": "Fédération française des associations d'actionnaires salariés et anciens salariés"} 1 +2024-09-11 09:04:13.256338 2024-09-11 09:04:13.256343 f7ea4eb5-a005-4626-9183-83bc5f1cc17a {"md5": "87e6a049360b8fd9692f3344c74c7fb8", "pid": "07162080X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "qualifier": "Théologien", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/07162080X", "source": "IDREF"}], "variant_name": ["Küchlin, Jean, Théologien"], "date_of_birth": "1546", "date_of_death": "1606-07-02", "preferred_name": "Küchlein, Johann, Théologien", "country_associated": "gw", "variant_access_point": ["Küchlin, Jean, Théologien"], "authorized_access_point": "Küchlein, Johann, 1546-1606, Théologien", "biographical_information": ["Théologien allemand. Ministre protestant et professeur en théologie. Il naquit à Wetterau (Hesse) en 1546, mourut à Leyde, le 2 juillet 1606. Après avoir terminé ses études à Heidelberg, il fut reçu ministre et attaché à l'église de Tackenheim. Les pasteurs calvinistes ayant été chassés du pays, en 1576, par l'électeur Louis, qui se prétendait luthérien, Johann Küchlein passa en Hollande, enseigna pendant dix-huit ans la théologie à Amsterdam, et dirigea, depuis 1595, le collège de Leyde. Devant lui, de nombreuses thèses furent soutenues. En 1613, ces travaux ont été publiés, à Genève, en un seul volume in-quarto, sous le titre : \\"Theologicae disputationes de religionis christianae capitibus praecipuis...\\". Selon Bayle, Guy Patin l'a fort loué, et un peu trop, car il le nommait \\"un des plus savants hommes de son siècle\\"."]} 1 +2024-09-11 09:04:13.32765 2024-09-11 09:04:13.327653 9aabc8fa-c98e-4482-8cc0-7349f86e84b0 {"md5": "2ffe4e5e5b23b68320f8e2cdf0997eb8", "pid": "071960651", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/071960651", "source": "IDREF"}], "date_of_birth": "1926-05-04", "date_of_death": "2012-08-29", "preferred_name": "Wullaert, Pierre", "country_associated": "fr", "authorized_access_point": "Wullaert, Pierre, 1926-....", "biographical_information": ["Titulaire d'une thèse en Médecine (Lyon, 1956).- Chargé de cours à la faculté de Médecine. Attaché en premier au Centre Hospitalier Universitaire d'Angers (1984)"]} 1 +2024-09-11 09:04:13.386458 2024-09-11 09:04:13.386461 48e0bd57-a190-491a-b320-9bddef2a70d8 {"md5": "f6c2ac9fe27105f0cfecea594417f0b6", "pid": "072291826", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger", "eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/072291826", "source": "IDREF"}], "date_of_birth": "1966", "preferred_name": "Schulenberg, Ulf", "country_associated": "gw", "authorized_access_point": "Schulenberg, Ulf, 1966-....", "biographical_information": ["Ecrit aussi en anglais", "Professeur d'études américaines à l'université de Brême (Allemagne)"]} 1 +2024-09-11 09:04:13.447401 2024-09-11 09:04:13.447404 115f61f4-ef69-4d33-a785-684bba51940d {"md5": "dbff82d1877df64ec25052a42a2049c9", "pid": "073256897", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/073256897", "source": "IDREF"}], "variant_name": ["RIRELF"], "preferred_name": "Réseau inter-universitaire de recherche sur l'évaluation en langue française", "country_associated": "fr", "variant_access_point": ["RIRELF"], "authorized_access_point": "Réseau inter-universitaire de recherche sur l'évaluation en langue française"} 1 +2024-09-11 09:04:13.505792 2024-09-11 09:04:13.505796 cc8e1860-6e79-4364-aa48-8d672c484655 {"md5": "aee9185f4f58da47e7b33680a47caa1d", "pid": "07327822X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/07327822X", "source": "IDREF"}], "preferred_name": "Beil, Brigitte", "country_associated": "gw", "authorized_access_point": "Beil, Brigitte"} 1 +2024-09-11 09:04:13.562489 2024-09-11 09:04:13.562494 0cfc7256-59c8-4315-84ad-40bda83eae3b {"md5": "4299bb5428a797ddfc5453cd2def15fd", "pid": "073281794", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/073281794", "source": "IDREF"}], "date_of_birth": "1953-07-01", "preferred_name": "Fosse, Thierry", "country_associated": "fr", "authorized_access_point": "Fosse, Thierry, 1953-....", "biographical_information": ["Maître de conférences des Universités, spécialisé en bactériologie", "Praticien hospitalier au CHU de Nice", "Titulaire d'une thèse de doctorat en Chimie, soutenue à l'université de Nice-Sophia Antipolis en 2009"]} 1 +2024-09-11 09:04:13.631225 2024-09-11 09:04:13.631229 056a8185-2fd2-4a14-80bc-dd5c1483a095 {"md5": "5fd88b08e106d5d1ae29bc080541d494", "pid": "07330235X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/07330235X", "source": "IDREF"}], "date_of_birth": "1975-11-01", "preferred_name": "Raynaud, Elisabeth", "country_associated": "fr", "authorized_access_point": "Raynaud, Elisabeth, 1975-....", "biographical_information": ["Titulaire du Diplome d'Etat de Docteur en Pharmacie (Clermont-Ferrand 2002)"]} 1 +2024-09-11 09:04:13.695662 2024-09-11 09:04:13.695665 6ac9eae9-3aee-4e41-984a-5c46ba282017 {"md5": "4083c1001bc4ac60d1892c720996d7b8", "pid": "073312673", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/073312673", "source": "IDREF"}], "variant_name": ["Università degli studi (Lecce, Italie). Facoltà di magistero. Istituto di filosofia"], "preferred_name": "Università degli studi (Lecce, Italie). Istituto di filosofia", "country_associated": "it", "variant_access_point": ["Università degli studi (Lecce, Italie). Facoltà di magistero. Istituto di filosofia"], "authorized_access_point": "Università degli studi (Lecce, Italie). Istituto di filosofia"} 1 +2024-09-11 09:04:13.752599 2024-09-11 09:04:13.752607 4c1d7ca2-6584-43b6-bebb-a4004c135804 {"md5": "66b55cc481937935e5bdb4c18690ab8b", "pid": "073329673", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/073329673", "source": "IDREF"}], "preferred_name": "Société française de psychologie. Département des applications et interventions en psychologie", "country_associated": "fr", "authorized_access_point": "Société française de psychologie. Département des applications et interventions en psychologie", "biographical_information": ["28/32 rue Serpente, 75006 Paris"]} 1 +2024-09-11 09:04:13.813636 2024-09-11 09:04:13.813639 7e33d734-2fc0-43e8-beb4-087c556664b8 {"md5": "c60ae6d242cdfcbc28ffe303ab6c182a", "pid": "073368989", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/073368989", "source": "IDREF"}], "variant_name": ["IAFSS"], "preferred_name": "International association for fire safety science", "country_associated": "xxk", "variant_access_point": ["IAFSS"], "authorized_access_point": "International association for fire safety science"} 1 +2024-09-11 09:04:13.873254 2024-09-11 09:04:13.873257 684f3f59-6d44-4c31-8bf9-8f9f04600d6c {"md5": "820baf9e368ebd35019812826ffb2023", "pid": "07338206X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/07338206X", "source": "IDREF"}], "variant_name": ["Duchesne, Gaston"], "date_of_birth": "1876", "date_of_death": "1909", "preferred_name": "Duchesne, Henri-Gaston", "country_associated": "fr", "variant_access_point": ["Duchesne, Gaston"], "authorized_access_point": "Duchesne, Henri-Gaston, 1876-1909", "biographical_information": ["Auteur d'ouvrages d'histoire et de littérature. A collaboré au \\"Bulletin de la Société historique d'Auteuil et de Passy"]} 1 +2024-09-11 09:04:13.929524 2024-09-11 09:04:13.929528 3c3e5d6d-932d-4abb-9dd3-6693de627eca {"md5": "f93c91e0828a1e102c316f43844173c1", "pid": "073432865", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/073432865", "source": "IDREF"}], "preferred_name": "Leclerc, Jérôme", "country_associated": "fr", "authorized_access_point": "Leclerc, Jérôme", "biographical_information": ["Ancien chef de clinique assistant d'anesthésie et de réanimation chirurgicale au CHU de Lille, praticien libéral au sein de la maternité Sainte Famille, Lille"]} 1 +2024-09-11 09:04:13.986584 2024-09-11 09:04:13.986591 6d3fde35-9fa8-41e2-81db-31e437260a9c {"md5": "aa0359da7cd2c16ed2334ed0fc7bc4cf", "pid": "073648027", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/073648027", "source": "IDREF"}], "date_of_birth": "1942-10-06", "preferred_name": "Bonjour, Pierre", "country_associated": "fr", "authorized_access_point": "Bonjour, Pierre, 1942-....", "biographical_information": ["Docteur en sciences de l'éducation. Directeur d'un centre médico-psycho-pédagogique (en 2000)"]} 1 +2024-09-11 09:04:14.04784 2024-09-11 09:04:14.047845 64f47090-44ba-4d66-801e-8e234fb63e88 {"md5": "985a30be96d1c1a5ba6a37b1be1fd0e8", "pid": "073673986", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/073673986", "source": "IDREF"}], "date_of_birth": "1919--", "preferred_name": "Barbizet, Jacques", "country_associated": "fr", "authorized_access_point": "Barbizet, Jacques, 1919-....", "biographical_information": ["Neuropsychologue. Professeur à la Faculté de médecine de Paris (en 1970)"]} 1 +2024-09-11 09:04:14.121975 2024-09-11 09:04:14.121979 0a64102f-96a7-458c-a4a3-89d9ed841ac2 {"md5": "b3974ee3c2460b148bf4bba0c064e75e", "pid": "073704199", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut", "eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/073704199", "source": "IDREF"}], "variant_name": ["Wilke, Marieke"], "date_of_birth": "1971-07-17", "preferred_name": "Wilke, Marieke Johanna Lucinda", "country_associated": "ne", "variant_access_point": ["Wilke, Marieke"], "authorized_access_point": "Wilke, Marieke Johanna Lucinda, 1971-..."} 1 +2024-09-11 09:04:14.192056 2024-09-11 09:04:14.192062 11085743-3887-4142-8c39-eb6f0338abd8 {"md5": "d7fb4871d6b5ce997400b6a03e79b7d3", "pid": "073875724", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/073875724", "source": "IDREF"}], "preferred_name": "Simposio Internacional de Literatura", "country_associated": "sp", "date_of_termination": "1998-07-31", "date_of_establishment": "1998-07-27", "authorized_access_point": "Simposio Internacional de Literatura (16 ; 1998 ; Madrid)"} 1 +2024-09-11 09:04:14.257326 2024-09-11 09:04:14.257329 aef0c8a7-ecf3-45bc-80cf-357754171d65 {"md5": "8bd42eeee7ce007e1d4b7669ea6402a1", "pid": "073949183", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/073949183", "source": "IDREF"}], "date_of_birth": "1960", "preferred_name": "Tamassia, Roberto", "country_associated": "xxu", "authorized_access_point": "Tamassia, Roberto, 1960-....", "biographical_information": ["En poste au département informatique de l'université Brown (en 2001)"]} 1 +2024-09-11 09:04:14.360477 2024-09-11 09:04:14.36048 3f87966b-f8c6-4acb-a2af-16ad80639add {"md5": "a841db321f554aea8bdfb879d6c2c7db", "pid": "074008552", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/074008552", "source": "IDREF"}], "date_of_birth": "1935-05-08", "date_of_death": "2011", "preferred_name": "Bouligand, Yves", "country_associated": "fr", "authorized_access_point": "Bouligand, Yves, 1935-2011", "biographical_information": ["En poste à la section des sciences de la vie et de la terre à l'Ecole pratique des hautes études (en 1989)"]} 1 +2024-09-11 09:04:14.422449 2024-09-11 09:04:14.422452 7fa9a935-5f00-4653-837c-a6b91f210d09 {"md5": "cd3cffb93ba1605f68fb4cec4d157af7", "pid": "074011278", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/074011278", "source": "IDREF"}], "variant_name": ["Heritage of Ancient Indian Astronomy"], "preferred_name": "Workshop on \\"Heritage of Ancient Indian Astronomy", "country_associated": "ii", "variant_access_point": ["Heritage of Ancient Indian Astronomy (1994 ; IUCAA)"], "date_of_establishment": "1994", "authorized_access_point": "Workshop on \\"Heritage of Ancient Indian Astronomy (1994 ; IUCAA)"} 1 +2024-09-11 09:04:14.484286 2024-09-11 09:04:14.484291 38e3d149-b90c-4788-b31c-32c19b2301a7 {"md5": "f0e95e0ac3c592ae16528c9a89137894", "pid": "074092855", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/074092855", "source": "IDREF"}], "preferred_name": "Nuttall ornithological club (Cambridge, Mass.)", "country_associated": "xxu", "date_of_establishment": "1873", "authorized_access_point": "Nuttall ornithological club (Cambridge, Mass.)", "biographical_information": ["c/o Museum of comparative zoology, Harvard university, Cambridge, Massachussettss 02138"]} 1 +2024-09-11 09:04:14.553463 2024-09-11 09:04:14.553468 f7cb873f-dcfa-4d91-aa62-13f3daa0ae3d {"md5": "2d3c20c01e5569c1de0826d4cfd82b82", "pid": "074110217", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "qualifier": "juriste", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/074110217", "source": "IDREF"}], "date_of_birth": "1948", "preferred_name": "Mosteller, Robert P., juriste", "country_associated": "xxu", "authorized_access_point": "Mosteller, Robert P., 1948-...., juriste", "biographical_information": ["Juriste", "Professeur à la Duke University, Durham, N.C., USA (en 2002)"]} 1 +2024-09-11 09:04:14.611826 2024-09-11 09:04:14.611831 e20d4ede-e1f9-4782-b179-8df651917a4a {"md5": "41477028081b083035c5549f90c8e2e9", "pid": "074287680", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "heb"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/074287680", "source": "IDREF"}], "variant_name": ["Newman, Jacob Israel", "Nyuman, Yaàkov", "Nyuman, Yiśra'el Yaàkov", "Newman, Yacov", "Newman, J."], "date_of_birth": "1914-07-29", "preferred_name": "Newman, Jacob", "country_associated": "is", "variant_access_point": ["Newman, Jacob Israel", "Nyuman, Yaàkov", "Nyuman, Yiśra'el Yaàkov", "Newman, Yacov", "Newman, J."], "authorized_access_point": "Newman, Jacob, 1914-....", "biographical_information": ["Rabbin"]} 1 +2024-09-11 09:04:14.671193 2024-09-11 09:04:14.671196 8541b180-15d7-4e20-a2c0-02028d46790d {"md5": "dda954e9efec85beb7b59e082adff881", "pid": "07432389X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/07432389X", "source": "IDREF"}], "preferred_name": "Saint, Fabien", "country_associated": "fr", "authorized_access_point": "Saint, Fabien", "biographical_information": ["Praticien hospitalier en urologie"]} 1 +2024-09-11 09:04:14.72906 2024-09-11 09:04:14.729065 11cefe96-c2b2-4a8e-b7c4-121f2f2b15e5 {"md5": "540ac6383676323415c5f94fda559ccb", "pid": "074552996", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/074552996", "source": "IDREF"}], "preferred_name": "Boussi, Pierre", "country_associated": "fr", "authorized_access_point": "Boussi, Pierre", "biographical_information": ["Docteur en Mathématiques à l'Université d'Orléans (en 1979)"]} 1 +2024-09-11 09:04:14.787032 2024-09-11 09:04:14.787037 cf295d8b-406b-4a58-bef6-be5f6b8438d1 {"md5": "58699e10e4bde17f40bb8925b953eddf", "pid": "074594788", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/074594788", "source": "IDREF"}], "date_of_birth": "1951", "preferred_name": "Clare, Johanne", "country_associated": "xx", "authorized_access_point": "Clare, Johanne, 1951-...", "biographical_information": ["Auteur d'un livre sur John Clare (1987)"]} 1 +2024-09-11 09:04:15.682684 2024-09-11 09:04:15.68269 bc065220-a2cb-48b6-b519-fcaa9f61d2eb {"md5": "257c42b31542152de3420627e624b2c0", "pid": "075964686", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/075964686", "source": "IDREF"}], "preferred_name": "Genest, Daniel", "country_associated": "fr", "authorized_access_point": "Genest, Daniel", "biographical_information": ["Docteur en sciences physiques à l'Université d'Orléans (en 1976)"]} 1 +2024-09-11 09:04:14.847196 2024-09-11 09:04:14.847201 ae6dbeb9-d091-4e06-a0f1-de03ebeb827a {"md5": "f0ea8fddbf65ce08908c703434ebf184", "pid": "075029189", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/075029189", "source": "IDREF"}], "variant_name": ["Carles, Caroline", "Dumazer, Caroline"], "date_of_birth": "19XX", "preferred_name": "Dumazer-Carles, Caroline", "country_associated": "fr", "variant_access_point": ["Carles, Caroline", "Dumazer, Caroline"], "authorized_access_point": "Dumazer-Carles, Caroline, 19..-....", "biographical_information": ["Auteur d'une thèse d'exercice en Pharmacie, soutenue le 4 avril 1991 à l'Université Montpellier 1"]} 1 +2024-09-11 09:04:14.905277 2024-09-11 09:04:14.905281 36c003b1-954e-4034-98a6-299cf339fb37 {"md5": "bd73cdce08c9152aaf35ebd2e1d0071e", "pid": "07505924X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/07505924X", "source": "IDREF"}], "date_of_birth": "1944-06-24", "preferred_name": "Goetz, Arturo", "country_associated": "ag", "authorized_access_point": "Goetz, Arturo, 1944-....", "biographical_information": ["Acteur argentin"]} 1 +2024-09-11 09:04:14.974905 2024-09-11 09:04:14.97491 d0aef198-8102-4f87-a44c-1341eeab3e40 {"md5": "7a1780e5c29deafa1c1e068b8eec2915", "pid": "075103672", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/075103672", "source": "IDREF"}], "preferred_name": "Dumax, Bernard", "country_associated": "fr", "authorized_access_point": "Dumax, Bernard", "biographical_information": ["Docteur en Physique des milieux ionisés à l'Université d'Orléans (en 1978)"]} 1 +2024-09-11 09:04:15.036296 2024-09-11 09:04:15.036301 e031cebd-ddbe-4976-98d0-715e3f159a9b {"md5": "ea66b367499b2c4f59d1b5c2c29de59d", "pid": "075129094", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/075129094", "source": "IDREF"}], "date_of_birth": "1957-08-06", "preferred_name": "Buss, Samuel R.", "country_associated": "xxu", "authorized_access_point": "Buss, Samuel R., 1957-....", "biographical_information": ["Professeur de mathématique et d'informatique à l'Université de Californie, San Diego (en 2003)"]} 1 +2024-09-11 09:04:15.09595 2024-09-11 09:04:15.095953 c83632da-b4b8-40ba-af4c-e872d200d33b {"md5": "812349621dbc2fa72802286240f5d4dd", "pid": "075134438", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/075134438", "source": "IDREF"}], "date_of_birth": "1879", "date_of_death": "1961", "preferred_name": "Chavance, René", "country_associated": "fr", "authorized_access_point": "Chavance, René, 1879-1961", "biographical_information": ["Artiste, écrivain"]} 1 +2024-09-11 09:04:15.16035 2024-09-11 09:04:15.160354 8897e9d5-99a1-48cb-aa2c-a7627f5377ad {"md5": "af29910e048c1c0ed13c22685d2767d4", "pid": "075146975", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/075146975", "source": "IDREF"}], "preferred_name": "Seminario Sociedad y oligarquías en la España moderna", "country_associated": "sp", "date_of_termination": "1998-12-17", "date_of_establishment": "1998-12-16", "authorized_access_point": "Seminario Sociedad y oligarquías en la España moderna (02 ; 1998 ; Ciudad Real)"} 1 +2024-09-11 09:04:15.218124 2024-09-11 09:04:15.218127 5e7b75b6-ba36-437a-8b6e-259241d992fc {"md5": "2a12b769907bd901c9e72a5aad3ff4fd", "pid": "075434008", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/075434008", "source": "IDREF"}], "variant_name": ["Université de Poitiers. Centre documentaire coopératif EXC-1"], "preferred_name": "Centre documentaire coopératif EXC-1 (Poitiers)", "country_associated": "fr", "variant_access_point": ["Université de Poitiers. Centre documentaire coopératif EXC-1"], "authorized_access_point": "Centre documentaire coopératif EXC-1 (Poitiers)", "biographical_information": ["40 av. du Recteur Pineau, 86022 Poitiers Cedex"]} 1 +2024-09-11 09:04:15.274714 2024-09-11 09:04:15.274719 fd318cfa-13fd-4855-b1f1-4a547a5257b3 {"md5": "d203102ac43bd10f48b2cd2008ebeff3", "pid": "075435179", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/075435179", "source": "IDREF"}], "date_of_birth": "1961", "preferred_name": "Lemos, Rogerio de", "country_associated": "bl", "authorized_access_point": "Lemos, Rogerio de, 1961-...", "biographical_information": ["Université du Kent, Laboratoire d'informatique (Canterbury, Kent, Royaume-Uni)"]} 1 +2024-09-11 09:04:15.331211 2024-09-11 09:04:15.331223 cec33042-20fa-4187-8e47-50980f26b9e4 {"md5": "5e5cbe402979d8829eb6a69bed308282", "pid": "075612178", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/075612178", "source": "IDREF"}], "preferred_name": "Scott, Susannah L.", "country_associated": "xxc", "authorized_access_point": "Scott, Susannah L.", "biographical_information": ["Chimiste, Université d'Ottawa, Canada (2003)"]} 1 +2024-09-11 09:04:15.391566 2024-09-11 09:04:15.391571 1b5a9d88-dd28-4c0e-8623-40d8d9fd54b1 {"md5": "03bbafa59e399febbc894834db3ffa0f", "pid": "075690632", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/075690632", "source": "IDREF"}], "preferred_name": "Piccole Terme Traianee", "country_associated": "it", "authorized_access_point": "Piccole Terme Traianee", "biographical_information": ["Musée du Palazzo Valentini, Rome, Italie"]} 1 +2024-09-11 09:04:15.468163 2024-09-11 09:04:15.468167 7ad35398-088f-4789-a0f7-f8a92e1c5eef {"md5": "e23328193d7e19f2c24801ab9d405477", "pid": "075866307", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/075866307", "source": "IDREF"}], "preferred_name": "Henriot, Jean-Claude", "country_associated": "fr", "authorized_access_point": "Henriot, Jean-Claude", "biographical_information": ["Traduit de l'anglais en français"]} 1 +2024-09-11 09:04:15.542145 2024-09-11 09:04:15.54215 b4574105-b1e7-4f77-85dc-900dde5b5e5f {"md5": "20b8045f100d074e2f4b13e85a6da14c", "pid": "075899655", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/075899655", "source": "IDREF"}], "variant_name": ["Tavares da Costa, Carla", "Da Costa, Carla Tavares"], "preferred_name": "Costa, Carla Tavares da", "country_associated": "xx", "variant_access_point": ["Tavares da Costa, Carla", "Da Costa, Carla Tavares"], "authorized_access_point": "Costa, Carla Tavares da"} 1 +2024-09-11 09:04:15.743177 2024-09-11 09:04:15.743181 158882b2-8755-4371-ac58-a4a03150314d {"md5": "c8c0ad3f23e2aa3c0ff8d40ea255047e", "pid": "076007316", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/076007316", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Horosko, Marian", "country_associated": "xxu", "authorized_access_point": "Horosko, Marian, 19..-....", "biographical_information": ["Danseuse et pianiste"]} 1 +2024-09-11 09:04:15.824417 2024-09-11 09:04:15.824421 b485ab23-cacb-41b2-acd9-e0b8b45c59fb {"md5": "8c76f36e0216cb77af0c6fc02f8cf7f5", "pid": "076054241", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/076054241", "source": "IDREF"}], "variant_name": ["Archives départementales du Tarn-et-Garonne. Service éducatif"], "preferred_name": "Tarn-et-Garonne. Archives départementales. Service éducatif", "country_associated": "fr", "variant_access_point": ["Archives départementales du Tarn-et-Garonne. Service éducatif"], "authorized_access_point": "Tarn-et-Garonne. Archives départementales. Service éducatif"} 1 +2024-09-11 09:04:15.909229 2024-09-11 09:04:15.909233 d9289108-3e86-4e56-86ca-8a56a14c751b {"md5": "2acec202e0a1a778bed45c699f105212", "pid": "076340384", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "fre"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/076340384", "source": "IDREF"}], "variant_name": ["École d'été de physique des Houches", "Les Houches Summer School", "Les Houches 2002", "Euro summer school", "NATO advanced study institute"], "preferred_name": "École d'été de physique théorique", "country_associated": "fr", "date_of_termination": "2002", "variant_access_point": ["École d'été de physique des Houches (78 ; 2002 ; Les Houches, Haute-Savoie, France)", "Les Houches Summer School (078 ; 2002 ; Les Houches, Haute-Savoie, France)", "Les Houches 2002", "Euro summer school (2002 ; Les Houches, Haute-Savoie, France)", "NATO advanced study institute (2002 ; Les Houches, Haute-Savoie, France)"], "date_of_establishment": "2002", "authorized_access_point": "École d'été de physique théorique (078 ; 2002 ; Les Houches, Haute-Savoie, France)"} 1 +2024-09-11 09:04:15.962567 2024-09-11 09:04:15.962571 ee612839-0c0e-4e73-98a9-081ff5ef713b {"md5": "bdb5327bb602b58bc79196c896b3f922", "pid": "076418731", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/076418731", "source": "IDREF"}], "preferred_name": "Stiftung Vergessene Kulturgüter", "country_associated": "gw", "authorized_access_point": "Stiftung Vergessene Kulturgüter"} 1 +2024-09-11 09:04:16.025491 2024-09-11 09:04:16.025495 6f0e316d-aa8f-40c9-9359-ef90169c404f {"md5": "e4a99f7c318f440af308f120c1ad38b2", "pid": "076680819", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/076680819", "source": "IDREF"}], "date_of_birth": "1956", "preferred_name": "Perry, Martin", "country_associated": "nz", "authorized_access_point": "Perry, Martin, 1956-....", "biographical_information": ["Professeur de gestion à la Massey University, Nouvelle-Zélande"]} 1 +2024-09-11 09:04:16.093218 2024-09-11 09:04:16.093222 5309d35a-34ac-4771-ae4b-21396080c2ed {"md5": "e046edffc405f2f528df5bd1a9e93120", "pid": "076709116", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/076709116", "source": "IDREF"}], "preferred_name": "Ziv, Meira", "country_associated": "is", "authorized_access_point": "Ziv, Meira"} 1 +2024-09-11 09:04:16.160457 2024-09-11 09:04:16.160461 96adde94-831d-4536-a08b-eeaa5007175c {"md5": "eba28422283849a1d80a89e50c2c6a8c", "pid": "076721256", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/076721256", "source": "IDREF"}], "preferred_name": "Kannae, F. K.", "country_associated": "xx", "authorized_access_point": "Kannae, F. K."} 1 +2024-09-11 09:04:16.23464 2024-09-11 09:04:16.234645 15e8b8da-9b71-475b-89b5-6619a6d1bfaa {"md5": "f9b3df62d9e0dcda91bc4ab015c85c84", "pid": "076752054", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/076752054", "source": "IDREF"}], "preferred_name": "Imbert, Jean-Louis", "country_associated": "fr", "authorized_access_point": "Imbert, Jean-Louis"} 1 +2024-09-11 09:04:16.303587 2024-09-11 09:04:16.303591 43b7e260-b603-49a7-8ee8-a61494e5ab36 {"md5": "767854b9dd9456be5154b370f2570457", "pid": "076905470", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/076905470", "source": "IDREF"}], "preferred_name": "Zameenzad, Adam", "country_associated": "pk", "authorized_access_point": "Zameenzad, Adam", "biographical_information": ["Ecrivain pakistanais d'expression anglaise"]} 1 +2024-09-11 09:04:16.358424 2024-09-11 09:04:16.358428 dd59ddbb-3393-4bac-a279-2780edb653c9 {"md5": "1d1fad04599e0e5e78aa505c5093e3df", "pid": "076968537", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/076968537", "source": "IDREF"}], "preferred_name": "Congresso brasileiro de automática", "country_associated": "bl", "date_of_termination": "1980-09-19", "date_of_establishment": "1980-09-16", "authorized_access_point": "Congresso brasileiro de automática (3 ; 1980 ; Rio de Janeiro, Brésil)"} 1 +2024-09-11 09:04:16.417745 2024-09-11 09:04:16.417749 41082138-9ab4-42ae-8ed3-8f1053f1ce80 {"md5": "78205c6f619b1836bc7ad5c782428395", "pid": "077006453", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "qualifier": "mathématicien", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077006453", "source": "IDREF"}], "preferred_name": "Yetter, David N., mathématicien", "country_associated": "xxu", "authorized_access_point": "Yetter, David N., mathématicien", "biographical_information": ["Mathématicien"]} 1 +2024-09-11 09:04:16.493607 2024-09-11 09:04:16.493611 069bb869-7159-465e-9c22-5618216c71db {"md5": "f31caa3a505e2fc0c23e08e001452231", "pid": "077053869", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077053869", "source": "IDREF"}], "date_of_birth": "1943-05-30", "preferred_name": "McLaughlin, John Adams", "country_associated": "xxu", "authorized_access_point": "McLaughlin, John Adams, 1943-....", "biographical_information": ["Directeur de la recherche et de l'évaluation pour le département de l'éducation de Virginie. Il s'intéresse à l'évaluation des politiques de l'éducation sur les enfants avec des difficultés d'apprentissage."]} 1 +2024-09-11 09:04:16.574782 2024-09-11 09:04:16.574786 7e0d3763-063e-4e9d-8ed0-45b18cdd4d4a {"md5": "2928d2dab08bdce1b76cebb751d14c1a", "pid": "077119428", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077119428", "source": "IDREF"}], "date_of_birth": "1969-10-10", "preferred_name": "Bouamer, Salah", "country_associated": "xx", "authorized_access_point": "Bouamer, Salah, 1969-....", "biographical_information": ["Auteur d'une thèse en biologie animale option parasitologie soutenue en 2003 à l'Université de Perpignan"]} 1 +2024-09-11 09:04:16.629928 2024-09-11 09:04:16.629931 bd0fbbdc-f891-4d27-a4d7-f5728b64d6f9 {"md5": "e562c5f15aceaf9e5642afeda323d4fb", "pid": "077143043", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077143043", "source": "IDREF"}], "preferred_name": "Bencze, Lajos", "country_associated": "hu", "authorized_access_point": "Bencze, Lajos", "biographical_information": ["Université de Veszprem, Département de chimie organique, Hongrie"]} 1 +2024-09-11 09:04:16.68811 2024-09-11 09:04:16.688115 1bdc7967-9eed-46e6-a3df-975c5bc58449 {"md5": "e32b0c92991a74395f1d4426ddf18c94", "pid": "077162617", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077162617", "source": "IDREF"}], "variant_name": ["König, Hans Ludwig"], "date_of_birth": "16XX", "date_of_death": "1750", "preferred_name": "König, Johann Ludwig", "country_associated": "sz", "variant_access_point": ["König, Hans Ludwig"], "authorized_access_point": "König, Johann Ludwig, 16..-1750", "biographical_information": ["Libraire. - Bâle : 1707-1723? ; Offenbach : 1730-1750. - Père de Rudolf Emmanuel König"]} 1 +2024-09-11 09:04:16.746844 2024-09-11 09:04:16.746847 c7bc69c6-f771-443f-9faa-cef08749ced1 {"md5": "720a5e51eb8b3f50dcda2b4f480ac280", "pid": "077335996", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077335996", "source": "IDREF"}], "preferred_name": "QualiContact (Clichy, Hauts-de-Seine)", "country_associated": "fr", "authorized_access_point": "QualiContact (Clichy, Hauts-de-Seine)", "biographical_information": ["Entreprise de marketing téléphonique", "Adresse : Espace Clichy, 38 rue Mozart, 92110 Clichy. Contact : 01.41.40.40.00. Télécopie : 01.41.40.40.24. Adresse électronique : info@qualicontact.com"]} 1 +2024-09-11 09:04:16.806279 2024-09-11 09:04:16.806283 7606f697-d068-4472-b0ee-9b05b43345b2 {"md5": "ff7564a34485b15dc1ff62b115b2f82a", "pid": "07733826X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/07733826X", "source": "IDREF"}], "variant_name": ["SNUEP", "SNUEP-FSU", "Fédération syndicale unitaire de l'enseignement, de l'éducation, de la recherche et de la culture (France). Syndicat national unitaire de l'enseignement professionnel"], "preferred_name": "Syndicat national unitaire de l'enseignement professionnel (France)", "country_associated": "fr", "variant_access_point": ["SNUEP", "SNUEP-FSU", "Fédération syndicale unitaire de l'enseignement, de l'éducation, de la recherche et de la culture (France). Syndicat national unitaire de l'enseignement professionnel"], "date_of_establishment": "2001", "authorized_access_point": "Syndicat national unitaire de l'enseignement professionnel (France)", "biographical_information": ["Créé à l'occasion de l'exclusion du Syndicat national de l'enseignement technique-Apprentissage autonome (SNETAA) de la Fédération syndicale unitaire de l'enseignement, de l'éducation, de la recherche et de la culture (FSU). Existence attestée dès juin 2001, congrès fondateur les 13 et 14 déc. 2001", "Adresse : 12 rue Cabanis, 75014 Paris. Tél. 01.45.65.02.56"]} 1 +2024-09-11 09:04:16.865104 2024-09-11 09:04:16.865109 69227c7c-2b66-4c40-a3b9-3ba89f89c985 {"md5": "ac4f78928eeed85524b637be9c391d6c", "pid": "077342097", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077342097", "source": "IDREF"}], "variant_name": ["ADIE", "Association pour le droit initiative économie (France)"], "preferred_name": "Association pour le droit à l'initiative économique (France)", "country_associated": "fr", "variant_access_point": ["ADIE", "Association pour le droit initiative économie (France)"], "date_of_establishment": "1990", "authorized_access_point": "Association pour le droit à l'initiative économique (France)", "biographical_information": ["Adresse : 4 bd Poissonnière : 75009 Paris. Contact : Tél. 01.56.03.59.00"]} 1 +2024-09-11 09:04:16.921287 2024-09-11 09:04:16.921291 8c5108bd-5348-4373-be2d-1f2d33c6777a {"md5": "03332a5d9aa602eaf38e26557847d4ea", "pid": "07741084X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/07741084X", "source": "IDREF"}], "preferred_name": "Ulma, Antoine", "country_associated": "fr", "authorized_access_point": "Ulma, Antoine"} 1 +2024-09-11 09:04:16.977041 2024-09-11 09:04:16.977045 d6249c99-6120-4dfd-8f64-2d13cdffbb4e {"md5": "94b57032bb5bfea9898050b4850dcf82", "pid": "077437209", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "qualifier": "romancier", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077437209", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Thompson, Paul B., romancier", "country_associated": "xxu", "authorized_access_point": "Thompson, Paul B., 19..-...., romancier", "biographical_information": ["Romancier"]} 1 +2024-09-11 09:04:17.040003 2024-09-11 09:04:17.040008 46d197d2-714a-4f5a-a52f-9c188ba97853 {"md5": "f9eb3c2297e0516e0f5754f5a51d15e9", "pid": "077446534", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077446534", "source": "IDREF"}], "preferred_name": "Slipknot", "country_associated": "xxu", "date_of_establishment": "1995", "authorized_access_point": "Slipknot", "biographical_information": ["Groupe de hard-rock", "Adresse : Des Moines (Iowa)", "Anders, chant (1994-1997)"]} 1 +2024-09-11 09:04:17.102193 2024-09-11 09:04:17.102199 87646b08-fd06-4d3a-9c82-12994dfafe47 {"md5": "986b2894244fe2e1c2c564bcbde73c5e", "pid": "07750528X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/07750528X", "source": "IDREF"}], "date_of_death": "2003", "preferred_name": "Grorud, Axel", "country_associated": "xx", "authorized_access_point": "Grorud, Axel, 19??-2003", "biographical_information": ["Titulaire d'un doctorat en sciences (Montpellier, 1978). Directeur de thèse en 2003"]} 1 +2024-09-11 09:04:17.184119 2024-09-11 09:04:17.184125 d49939f4-a0f9-488b-a213-45a0b29eead6 {"md5": "c99013361dcd024007027abeb8f58b49", "pid": "077763009", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077763009", "source": "IDREF"}], "date_of_birth": "1964-05-02", "preferred_name": "Lynch, Stephen", "country_associated": "xxk", "authorized_access_point": "Lynch, Stephen, 1964-....", "biographical_information": ["En poste à l'Université de Manchester Metropolitan au Département de calcul et mathématiques, Royaume-Uni (2008)", "Maître de conférences (Catégorie de Conférencier B) depuis 1995"]} 1 +2024-09-11 09:04:17.254295 2024-09-11 09:04:17.254299 a9ef4cd3-71e5-4dcb-be92-a85b8bceb019 {"md5": "f9f5e2d9e528b38ac6667c6bb9d19704", "pid": "077775430", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077775430", "source": "IDREF"}], "date_of_birth": "1925-01-04", "preferred_name": "Gleitman, Henry", "country_associated": "xx", "authorized_access_point": "Gleitman, Henry, 1925-....", "biographical_information": ["Professeur de psychologie"]} 1 +2024-09-11 09:04:17.317137 2024-09-11 09:04:17.317141 1afa32c1-e4c9-4202-b3c2-5d9875a489f2 {"md5": "f5c25fd311455a60c86d72f26394d54d", "pid": "077813138", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077813138", "source": "IDREF"}], "preferred_name": "Schneikert, Elisabeth", "country_associated": "fr", "authorized_access_point": "Schneikert, Elisabeth", "biographical_information": ["Titulaire d'un doctorat en Littérature française, Strasbourg 2, 2004"]} 1 +2024-09-11 09:04:17.377964 2024-09-11 09:04:17.377967 324d7676-963d-4846-a4d4-b4f0bdc1c49c {"md5": "440d92dff3794df122879c47c9343132", "pid": "078038766", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/078038766", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Joop, Gerhard", "country_associated": "gw", "authorized_access_point": "Joop, Gerhard, 19..-...."} 1 +2024-09-11 09:04:17.433856 2024-09-11 09:04:17.433861 4db2b0d9-05a9-450a-b84d-0f60098bc1e0 {"md5": "a5fb3309c3e0f4f3dc21c5277fb725cb", "pid": "078054982", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/078054982", "source": "IDREF"}], "variant_name": ["Géo-magazine"], "preferred_name": "Géo (Périodique)", "country_associated": "fr", "variant_access_point": ["Géo-magazine"], "authorized_access_point": "Géo (Périodique)", "biographical_information": ["Appartient au groupe Prisma Presse"]} 1 +2024-09-11 09:04:17.511441 2024-09-11 09:04:17.511444 e9e6187a-411e-4a58-8999-59468d2b82f5 {"md5": "afa759f8dcea6d48973f63fc92f61e9e", "pid": "078075467", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/078075467", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Kennedy, Ron", "country_associated": "xx", "authorized_access_point": "Kennedy, Ron, 19..-...."} 1 +2024-09-11 09:04:17.569374 2024-09-11 09:04:17.569378 3a852e44-2e9d-479b-89f7-cc78bb8d56e0 {"md5": "0d3091823d80378d7104501ce978effb", "pid": "078076641", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/078076641", "source": "IDREF"}], "date_of_birth": "1912", "date_of_death": "1976", "preferred_name": "Peyron, Joseph", "country_associated": "fr", "authorized_access_point": "Peyron, Joseph, 1912-1976", "biographical_information": ["Artiste lyrique (ténor) & chanteur de variétés", "Lieu de naissance Saint-Étienne"]} 1 +2024-09-11 09:04:17.635953 2024-09-11 09:04:17.635958 56ae2bc4-89d8-4f07-9059-841ef72ea9d5 {"md5": "4e2d03cc757741825f3f2589cd7d9d35", "pid": "078079330", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/078079330", "source": "IDREF"}], "preferred_name": "Bilchak, Vasilij S.", "country_associated": "ru", "authorized_access_point": "Bilchak, Vasilij S.", "biographical_information": ["Professeur d'économie à l'Université d'Etat d Kaliningrad, Russie."]} 1 +2024-09-11 09:04:17.691446 2024-09-11 09:04:17.691449 69aa4d76-0f48-4072-9bee-dbcc6c065086 {"md5": "fbe745162885d5051570220cb2df2aa8", "pid": "078118948", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/078118948", "source": "IDREF"}], "date_of_birth": "1964", "preferred_name": "Ganeshamoorthy, Murugesu", "country_associated": "ce", "authorized_access_point": "Ganeshamoorthy, Murugesu, 1964-....", "biographical_information": ["Economiste."]} 1 +2024-09-11 09:04:17.749918 2024-09-11 09:04:17.749922 46a6326c-f8d1-497f-ac8e-719bd19e612c {"md5": "c3e66afbf0005b75e8c0a30d6a1c6a2a", "pid": "078185556", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/078185556", "source": "IDREF"}], "preferred_name": "Réunion Internationale des Mathématiciens", "date_of_termination": "1937-07-10", "date_of_establishment": "1937-07-07", "authorized_access_point": "Réunion Internationale des Mathématiciens (1937 ; Paris)", "biographical_information": ["Cette réunion s'est tenue à l'occasion de l'Exposition de 1937"]} 1 +2024-09-11 09:04:17.811573 2024-09-11 09:04:17.811577 38162447-cf0d-4f13-929f-9ee545f2e033 {"md5": "7098694bc4a7ba0e91496660c104d665", "pid": "078607078", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/078607078", "source": "IDREF"}], "variant_name": ["Abbaye de Candeil (Labessière-Candeil, Tarn)", "Abbaye royale de Notre-Dame de Candeil (Labessière-Candeil, Tarn)", "Abbaye de Cisterciens (Labessière-Candeil, Tarn ; Notre-Dame de Candeil, 1152-1790)"], "preferred_name": "Abbaye Notre-Dame de Candeil (Labessière-Candeil, Tarn)", "country_associated": "fr", "date_of_termination": "1790", "variant_access_point": ["Abbaye de Candeil (Labessière-Candeil, Tarn)", "Abbaye royale de Notre-Dame de Candeil (Labessière-Candeil, Tarn)", "Abbaye de Cisterciens (Labessière-Candeil, Tarn ; Notre-Dame de Candeil, 1152-1790)"], "date_of_establishment": "1152", "authorized_access_point": "Abbaye Notre-Dame de Candeil (Labessière-Candeil, Tarn)", "biographical_information": ["Abbaye de Cisterciens, fille de Clairvaux, fondée en 1152 par Raymond, comte de Toulouse. Elle fonda l'abbaye de Bonnecombe en Rouergue. Il y restait 5 religieux en 1768. Fermée à la Révolution puis démolie"]} 1 +2024-09-11 09:04:22.276161 2024-09-11 09:04:22.276165 a35de557-951e-4bbc-863f-03004c2e57fa {"md5": "5ed0df5912aa472912934bf7bd4dc8a1", "pid": "083493778", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083493778", "source": "IDREF"}], "preferred_name": "Kaewthep, Kanoksak", "authorized_access_point": "Kaewthep, Kanoksak"} 1 +2024-09-11 09:04:17.88134 2024-09-11 09:04:17.881345 de81227d-1fd4-4126-9bed-066c2f048af9 {"md5": "9606b479347342e95b14f6156007b043", "pid": "078619505", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/078619505", "source": "IDREF"}], "preferred_name": "Polyphony", "country_associated": "xxk", "date_of_establishment": "1986", "authorized_access_point": "Polyphony", "biographical_information": ["Choeur fondé par Stephen Layton. Au départ basé à Cambridge, il s'établit ensuite à Londres", "Adresse : Londres. Contact : 0870.742.4011. Télécopie : 0870.742.4012. Adresse électronique : info@polyphony.co.uk"]} 1 +2024-09-11 09:04:17.941459 2024-09-11 09:04:17.941463 42cc9252-4775-4305-9ccb-04611e6d5363 {"md5": "51544dac97ae4e287b46206f26fa27f7", "pid": "078640997", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa", "baq", "eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/078640997", "source": "IDREF"}], "variant_name": ["Rubio Pilarte, Xabier"], "preferred_name": "Pilarte, Xabier Rubio", "country_associated": "sp", "variant_access_point": ["Rubio Pilarte, Xabier"], "authorized_access_point": "Pilarte, Xabier Rubio"} 1 +2024-09-11 09:04:18.008933 2024-09-11 09:04:18.008962 b8c414f1-9d78-402a-9b48-6286576c020f {"md5": "f9f04aa08877e65338221ec27808141d", "pid": "078763487", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut"], "qualifier": "actrice", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/078763487", "source": "IDREF"}], "date_of_birth": "1962", "preferred_name": "Detmers, Maruschka, actrice", "country_associated": "ne", "authorized_access_point": "Detmers, Maruschka, 1962-..., actrice", "biographical_information": ["Actrice"]} 1 +2024-09-11 09:04:18.066664 2024-09-11 09:04:18.066669 db9fa1dd-47e4-4a80-babf-19472da189a4 {"md5": "d9ade110f0568645c0eea83ac418550f", "pid": "078835089", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/078835089", "source": "IDREF"}], "date_of_birth": "1958", "preferred_name": "Schmidt-Welle, Friedhelm", "country_associated": "gw", "authorized_access_point": "Schmidt-Welle, Friedhelm, 1958-....", "biographical_information": ["Chercheur de l'Institut latino-américain de Berlin dans le secteur de littérature et etudes culturelles (2003)"]} 1 +2024-09-11 09:04:18.127671 2024-09-11 09:04:18.127676 98d8de0c-cd2b-43f1-86c2-2666bfe55112 {"md5": "092c2bae619455f53341bbdfb55877a6", "pid": "078835186", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/078835186", "source": "IDREF"}], "variant_name": ["Estle, Thomas L."], "date_of_birth": "1931", "preferred_name": "Estle, Thomas Leo", "country_associated": "xxu", "variant_access_point": ["Estle, Thomas L."], "authorized_access_point": "Estle, Thomas Leo, 1931-....", "biographical_information": ["Physicien, Professeur à la Rice University, Houston, Tex. (en 1976)"]} 1 +2024-09-11 09:04:18.204715 2024-09-11 09:04:18.204719 7ad0da95-cf29-49b2-9a95-54f3e4723e53 {"md5": "228c5c6fd3e81248af11c8b12e0259d4", "pid": "079020933", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/079020933", "source": "IDREF"}], "date_of_birth": "1940", "preferred_name": "Hull, Richard W.", "authorized_access_point": "Hull, Richard W., 1940-...."} 1 +2024-09-11 09:04:18.27108 2024-09-11 09:04:18.271083 d78447f7-4655-4a5b-8028-85b590e86aa1 {"md5": "82b77903777c7aa1e78aee50e8affd17", "pid": "07904011X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "qualifier": "philosophe", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/07904011X", "source": "IDREF"}], "date_of_birth": "1968", "preferred_name": "Weiberg, Anja, philosophe", "country_associated": "gw", "authorized_access_point": "Weiberg, Anja, 1968-...., philosophe", "biographical_information": ["Philosophe. Enseigne la philosophie à l'université de Vienne en 2016. Spécialités : philosophie de Wittgenstein, éthique, éthique appliquée, philosophie du viellissement"]} 1 +2024-09-11 09:04:18.332129 2024-09-11 09:04:18.33213 ff187504-c958-409c-83a3-429c9ad160ad {"md5": "313c59ec6d84413eaa9b80734b3cae10", "pid": "079112943", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "qualifier": "psychologue", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/079112943", "source": "IDREF"}], "date_of_birth": "1919", "preferred_name": "Lambert, William Wilson, psychologue", "country_associated": "xxu", "authorized_access_point": "Lambert, William Wilson, 1919-...., psychologue", "biographical_information": ["Psychologue"]} 1 +2024-09-11 09:04:18.395902 2024-09-11 09:04:18.395906 7db086d8-c7ae-4f75-9333-16a5ff81822d {"md5": "806b1a20c67d84504d1c1f9a2f13f461", "pid": "079151639", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ara"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/079151639", "source": "IDREF"}], "preferred_name": "Ibn Ǧaddū, Aḥmad", "authorized_access_point": "Ibn Ǧaddū, Aḥmad"} 1 +2024-09-11 09:04:18.451971 2024-09-11 09:04:18.451973 fe23a167-b327-47e5-9d08-7bcbf99da971 {"md5": "2305c0a0de5a4027b337c79288b90cf3", "pid": "079157106", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/079157106", "source": "IDREF"}], "date_of_birth": "1914-07-05", "date_of_death": "1998-07-08", "preferred_name": "Garzetti, Albino", "country_associated": "it", "authorized_access_point": "Garzetti, Albino, 1914-1998", "biographical_information": ["Historien. Professeur d'histoire grecque et romaine à l'Université catholique de Milan (1951-1969). A aussi traduit du latin en italien et écrit en latin"]} 1 +2024-09-11 09:04:18.522915 2024-09-11 09:04:18.52292 fbdcd793-d963-4e26-95c1-33715754bfd2 {"md5": "dd3f847d7d00c7f65df0fdd721ae7eec", "pid": "07925814X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/07925814X", "source": "IDREF"}], "preferred_name": "Semaines sociales de France", "country_associated": "fr", "date_of_termination": "2003-11-16", "date_of_establishment": "2003-11-14", "authorized_access_point": "Semaines sociales de France (78 ; 2003 ; Paris)", "biographical_information": ["Du 14 au 16 novembre 2003"]} 1 +2024-09-11 09:04:19.810588 2024-09-11 09:04:19.810592 c734a135-6149-428a-8d86-93b28df7b67e {"md5": "162939367fcb587d9b7ee6ab13a955a3", "pid": "080622151", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/080622151", "source": "IDREF"}], "variant_name": ["竹內, 順一"], "date_of_birth": "1941", "preferred_name": "Takeuchi, Jun'ichi", "variant_access_point": ["竹內, 順一, 1941-...."], "authorized_access_point": "Takeuchi, Jun'ichi, 1941-...."} 1 +2024-09-11 09:04:18.57948 2024-09-11 09:04:18.579483 52426b04-9781-4f6b-a2f3-709bac828e9b {"md5": "539f447a81c4b200f55047a66c425ab4", "pid": "079303315", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/079303315", "source": "IDREF"}], "variant_name": ["Bernardino de Arevalo", "Bernardino de Arevallo", "Arevalo, Bernardin d'"], "date_of_birth": "1492", "date_of_death": "1553", "preferred_name": "Bernardinus de Arevalo", "variant_access_point": ["Bernardino de Arevalo", "Bernardino de Arevallo", "Arevalo, Bernardin d'"], "authorized_access_point": "Bernardinus de Arevalo, 1492-1553", "biographical_information": ["Religieux espagnol. Prédicateur renommé. Plusieurs fois ministre provincial de la Province de la Conception. Séjourna au Mexique comme missionnaire, et premier Commissaire général des \\"Indes Occidentales\\"."]} 1 +2024-09-11 09:04:18.639675 2024-09-11 09:04:18.639679 29b87d6b-b715-4808-b0f2-7506d60c99e0 {"md5": "e2d8d28fe9b552e14f2fe5ccc44ed70e", "pid": "079436870", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/079436870", "source": "IDREF"}], "variant_name": ["Universidade de São Paulo. Instituto oceanográfico"], "preferred_name": "Instituto oceanográfico (São Paulo, Brazil)", "country_associated": "bl", "variant_access_point": ["Universidade de São Paulo. Instituto oceanográfico"], "date_of_establishment": "1951", "authorized_access_point": "Instituto oceanográfico (São Paulo, Brazil)", "biographical_information": ["Praça do Oceanográfico, 191 - Cidade Universitária - 05508-900 - São Paulo, SP - Brazil"]} 1 +2024-09-11 09:04:18.701438 2024-09-11 09:04:18.701442 0e83a784-b84e-46d9-b5cc-39f5e52c7c0c {"md5": "7cbd20f03dbb8da0d40ea99e348312a2", "pid": "07948901X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/07948901X", "source": "IDREF"}], "variant_name": ["LAT", "Centre national de la recherche scientifique (France). Laboratoire Archéologie et territoires", "Centre national de la recherche scientifique (France). Unité mixte de recherche (6575)", "Centre national de la recherche scientifique (France). Unité mixte de recherche (9966)", "Centre national de la recherche scientifique (France). Unité propre de recherche (9018)", "Centre de recherches archéologiques (Valbonne, Alpes-maritimes). Equipe de recherche archéologique (0040)", "Université François Rabelais (Tours). Laboratoire Archéologie et territoires"], "preferred_name": "Laboratoire Archéologie et territoires (Tours)", "country_associated": "fr", "variant_access_point": ["LAT", "Centre national de la recherche scientifique (France). Laboratoire Archéologie et territoires", "Centre national de la recherche scientifique (France). Unité mixte de recherche (6575)", "Centre national de la recherche scientifique (France). Unité mixte de recherche (9966)", "Centre national de la recherche scientifique (France). Unité propre de recherche (9018)", "Centre de recherches archéologiques (Valbonne, Alpes-maritimes). Equipe de recherche archéologique (0040)", "Université François Rabelais (Tours). Laboratoire Archéologie et territoires"], "date_of_establishment": "1996-01-01", "authorized_access_point": "Laboratoire Archéologie et territoires (Tours)", "biographical_information": ["Le 01-01-1996, absorbe le GDR 0094 du CNRS \\"Société et cadre de vie au Moyen âge\\" qui devient un programme spécifique au sein du laboratoire ; le 01-01-2000, absorbe le GDR 0893 \\"Topographie chrétienne des cités de la Gaule"]} 1 +2024-09-11 09:04:18.772053 2024-09-11 09:04:18.772057 5605f4d8-4506-4409-8f65-e5121aa43073 {"md5": "ea953c4025341b4523a40c587d0fb881", "pid": "079506151", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/079506151", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "079505325"}, "variant_name": ["Bussano, Giovanni Francesco", "Bussani, Giacomo Francesco", "Bussano, Giacomo Francesco"], "preferred_name": "Bussani, Giovanni Francesco", "country_associated": "it", "variant_access_point": ["Bussano, Giovanni Francesco", "Bussani, Giacomo Francesco", "Bussano, Giacomo Francesco"], "authorized_access_point": "Bussani, Giovanni Francesco, 16..?-....", "biographical_information": ["Lbrettiste"]} 1 +2024-09-11 09:04:18.842878 2024-09-11 09:04:18.842883 3eabc19a-9115-401a-8331-81a3add8033a {"md5": "ba135ecd56ed8ec44cf6feacd3a689e9", "pid": "079550746", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut", "eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/079550746", "source": "IDREF"}], "variant_name": ["Venner, C. H."], "date_of_birth": "1963", "preferred_name": "Venner, Cormelis Henricus", "country_associated": "ne", "variant_access_point": ["Venner, C. H."], "authorized_access_point": "Venner, Cormelis Henricus, 1963-....", "biographical_information": ["En poste à : \\"Faculty of Mechanical Engineering, University of Twente\\" (Pays-Bas) en 2000"]} 1 +2024-09-11 09:04:18.901194 2024-09-11 09:04:18.901199 1ac44886-d129-4c14-a983-b512d5ff6b8f {"md5": "1792007a448146a1ec897f0bd53c0abb", "pid": "079890849", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/079890849", "source": "IDREF"}], "preferred_name": "Cazenave, Philippe", "authorized_access_point": "Cazenave, Philippe"} 1 +2024-09-11 09:04:18.965222 2024-09-11 09:04:18.965227 c842dccd-31e8-4cce-bdc8-97bde70737a7 {"md5": "26efff6a31a0d0f3b61c95e2d65654b2", "pid": "07992056X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/07992056X", "source": "IDREF"}], "date_of_birth": "1930", "preferred_name": "Monroe, Burt Leavelle", "country_associated": "xxu", "authorized_access_point": "Monroe, Burt Leavelle, 1930-....", "biographical_information": ["Biologiste. En poste au Biology department de l'University of Louisville, Kentucky, USA (en 1990)"]} 1 +2024-09-11 09:04:19.019157 2024-09-11 09:04:19.019161 34490718-e876-4f9d-ba3c-fe8d9aaac393 {"md5": "44c2fc93041abf5710f826d616175f80", "pid": "080088325", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/080088325", "source": "IDREF"}], "date_of_birth": "18XX", "preferred_name": "Barberen, Pierre", "country_associated": "fr", "authorized_access_point": "Barberen, Pierre, 18..-....", "biographical_information": ["Avocat"]} 1 +2024-09-11 09:04:19.077947 2024-09-11 09:04:19.077951 4838d6a5-5599-47b6-b92b-709b5e5769e9 {"md5": "d563526adcbc24af6280bd798c556669", "pid": "080102859", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/080102859", "source": "IDREF"}], "preferred_name": "International Conference on Options for the Control of Influenza", "country_associated": "ja", "date_of_termination": "2003", "date_of_establishment": "2003", "authorized_access_point": "International Conference on Options for the Control of Influenza (5 ; 2003 ; Okinawa, Japan)"} 1 +2024-09-11 09:04:19.148259 2024-09-11 09:04:19.148263 26d954a0-4cc5-454e-92c5-26eb4ccf803a {"md5": "3db3e2f1cbb7c9c3bfd50a6dc96a56e8", "pid": "08013484X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/08013484X", "source": "IDREF"}], "preferred_name": "Delumeau, Martine", "country_associated": "fr", "authorized_access_point": "Delumeau, Martine"} 1 +2024-09-11 09:04:19.888313 2024-09-11 09:04:19.888318 32ff702d-ed57-4a69-9daa-b78a6ad3337a {"md5": "278b6ddeaa576d893a5561bfccfbde1c", "pid": "080641024", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/080641024", "source": "IDREF"}], "date_of_birth": "1938", "preferred_name": "Lamsdorff-Galagane, Vladimiro", "authorized_access_point": "Lamsdorff-Galagane, Vladimiro, 1938-....", "biographical_information": ["Professeur d'université à la faculté de droit de Santiago"]} 1 +2024-09-11 09:04:19.206612 2024-09-11 09:04:19.206615 de8f638f-2096-4616-ad83-33b0f70803b6 {"md5": "885a72a12a643fab1e6b84129b4ee94d", "pid": "080152503", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "chercheur", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/080152503", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Fages, Jacques, chercheur", "country_associated": "fr", "authorized_access_point": "Fages, Jacques, 19..-...., chercheur", "biographical_information": ["Ingénieur INSA-Toulouse, DEA en Sciences alimentaires. Professeur, en poste à l'Ecole des Mines d'Albi-Carmaux (depuis 1996), directeur de thèse de doctorat en Génie des procédés à l'Ecole nationale supérieure des Mines de Paris (2003). Spécialiste en génie des procédés, biochimie, biotechnologies.", "Membre du jury lors de la soutenance de la thèse en Chimie et Physicochimie des matériaux par Mathieu Chirat(ENSCM, Montpellier, 2012)."]} 1 +2024-09-11 09:04:19.26873 2024-09-11 09:04:19.268735 29cfb3f7-ae3f-4059-a971-3d06c85319ce {"md5": "773231fec819767a8d8446d16209df67", "pid": "080164994", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "nep"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/080164994", "source": "IDREF"}], "variant_name": ["Pramode S. J. B. Rana", "Pramode Shamshere Rana"], "date_of_birth": "1932", "preferred_name": "Rana, Pramode Shamshere", "country_associated": "np", "variant_access_point": ["Pramode S. J. B. Rana", "Pramode Shamshere Rana"], "authorized_access_point": "Rana, Pramode Shamshere, 1932-....", "biographical_information": ["Juriste, avocat à la Cour Suprême du Népal"]} 1 +2024-09-11 09:04:19.325648 2024-09-11 09:04:19.325652 456cb0f2-c5e1-4f6a-bf4f-69c1757d478a {"md5": "663f5949a81fc8fbd8d921b150570ad3", "pid": "08018734X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/08018734X", "source": "IDREF"}], "preferred_name": "Studienkommission für die Reform des Offentlichen Dienstrechts (Allemagne)", "country_associated": "gw", "authorized_access_point": "Studienkommission für die Reform des Offentlichen Dienstrechts (Allemagne)"} 1 +2024-09-11 09:04:19.378797 2024-09-11 09:04:19.3788 44e59529-912b-4099-b459-4d5ced76c5f9 {"md5": "3947a7ea596deab66d87a3add03dff05", "pid": "080307426", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/080307426", "source": "IDREF"}], "date_of_birth": "1957", "preferred_name": "Nicholson, Heather Norris", "country_associated": "xxk", "authorized_access_point": "Nicholson, Heather Norris, 1957-", "biographical_information": ["Chercheur honoraire à Birkbeck, University of London"]} 1 +2024-09-11 09:04:19.438983 2024-09-11 09:04:19.438987 a0b45784-2154-47f6-b0e0-f2737fe0f9ba {"md5": "d92d6cc7b4c7c78c6db4dc33c67060b9", "pid": "080487238", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/080487238", "source": "IDREF"}], "variant_name": ["Cancellerius, Franciscus", "Cancellierius, Franciscus", "Cancellieri, François", "Cancelieri, François"], "date_of_birth": "1751-10-10", "date_of_death": "1826-12-29", "preferred_name": "Cancellieri, Francesco", "country_associated": "it", "variant_access_point": ["Cancellerius, Franciscus", "Cancellierius, Franciscus", "Cancellieri, François", "Cancelieri, François"], "authorized_access_point": "Cancellieri, Francesco, 1751-1826", "biographical_information": ["A aussi écrit en latin et en français", "Lieu de naissance Rome. Lieu de décès Rome"]} 1 +2024-09-11 09:04:19.511589 2024-09-11 09:04:19.511593 fcd9d088-c1bb-4849-b63a-2e7f3e134804 {"md5": "81043701b7e1abb0fc10a9e9e4188c88", "pid": "080529712", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rum"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/080529712", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "176034587"}, "variant_name": ["Universitatea tehnică din Cluj-Napoca", "Université technique de Cluj-Napoca (Roumanie)", "Technical university of Cluj-Napoca (Romania)", "École Supérieure Industrielle", "Școala Superioară Industrială", "Institut Polytechnique", "Institutul Politehnic"], "preferred_name": "Universitatea tehnică (Cluj-Napoca, Roumanie)", "country_associated": "rm", "variant_access_point": ["Universitatea tehnică din Cluj-Napoca", "Université technique de Cluj-Napoca (Roumanie)", "Technical university of Cluj-Napoca (Romania)", "École Supérieure Industrielle", "Școala Superioară Industrială", "Institut Polytechnique", "Institutul Politehnic"], "date_of_establishment": "1920", "authorized_access_point": "Universitatea tehnică (Cluj-Napoca, Roumanie)", "biographical_information": ["15 Str. Constantin Daicoviciu 3400 Cluj-Napoca (Roumanie)"]} 1 +2024-09-11 09:04:19.572551 2024-09-11 09:04:19.572554 e3c93d46-3348-4e0f-9f4f-deabc9351e86 {"md5": "bf75105d31069b8c96b871e85ff338fb", "pid": "080557732", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/080557732", "source": "IDREF"}], "preferred_name": "Belorgey, Marie-Ange", "country_associated": "fr", "authorized_access_point": "Belorgey, Marie-Ange", "biographical_information": ["Illustratrice. Éditeur-Imprimeur"]} 1 +2024-09-11 09:04:19.628648 2024-09-11 09:04:19.628652 22704d1e-acb8-477c-886f-8fe5d0fcfa1e {"md5": "91fa037069a3097fe50948b6b4d90689", "pid": "080577350", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/080577350", "source": "IDREF"}], "variant_name": ["WEEC"], "preferred_name": "World environmental education congress", "date_of_termination": "2003-09-24", "variant_access_point": ["WEEC (1 ; 2003 ; Espinho, Portugal)"], "date_of_establishment": "2003-09-20", "parallel_access_point": ["Congreso mundial de educación ambiental (1 ; 2003 ; Espinho, Portugal)"], "authorized_access_point": "World environmental education congress (1 ; 2003 ; Espinho, Portugal)"} 1 +2024-09-11 09:04:19.685549 2024-09-11 09:04:19.685552 4b07a3a2-4515-4b30-9a3e-8ec986cf60d3 {"md5": "026fe89c1a1805bf288abd4f2dc810b6", "pid": "080596649", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/080596649", "source": "IDREF"}], "preferred_name": "Journées françaises d'endocrinologie clinique, nutrition et métabolisme", "country_associated": "fr", "date_of_termination": "2000-11-25", "date_of_establishment": "2000-11-24", "authorized_access_point": "Journées françaises d'endocrinologie clinique, nutrition et métabolisme (20 ; 2000 ; Paris)"} 1 +2024-09-11 09:04:19.742994 2024-09-11 09:04:19.742996 c2ef274e-ab6a-4fef-a57c-d24b962853ba {"md5": "0dd9cc59b3a492907eb95568b88315c0", "pid": "080608825", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/080608825", "source": "IDREF"}], "preferred_name": "Joseph, Branden Wayne", "authorized_access_point": "Joseph, Branden Wayne", "biographical_information": ["Professeur d'histoire de l'art, Université de Califorie (en 2003)"]} 1 +2024-09-11 09:04:20.021384 2024-09-11 09:04:20.021388 8c7cf3ef-1d81-4d61-8775-a2df47b396c9 {"md5": "6709344f28f85f3d453c4c18c62ee882", "pid": "080678971", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn", "eng"], "qualifier": "physicien", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/080678971", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Ohta, Hiroshi, physicien", "country_associated": "ja", "authorized_access_point": "Ohta, Hiroshi, 19..-...., physicien", "biographical_information": ["Physicien, membre de la Physical society of Japan"]} 1 +2024-09-11 09:04:20.080298 2024-09-11 09:04:20.080302 88d45204-5788-48e0-948c-eb2f5f4e30ad {"md5": "938313b79b82b5ef2b86d6f77cb93dae", "pid": "080683851", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/080683851", "source": "IDREF"}], "variant_name": ["Palma Dias, Francisco"], "date_of_birth": "1942", "preferred_name": "Dias, Francisco Palma", "country_associated": "po", "variant_access_point": ["Palma Dias, Francisco"], "authorized_access_point": "Dias, Francisco Palma, 1942-....", "biographical_information": ["Poète"]} 1 +2024-09-11 09:04:20.144715 2024-09-11 09:04:20.144719 db02600f-a04c-4cf8-bbc8-5d1b6e71886f {"md5": "a463b8e219661184837e207d01f83f47", "pid": "080722555", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/080722555", "source": "IDREF"}], "preferred_name": "Burris, William C.", "authorized_access_point": "Burris, William C."} 1 +2024-09-11 09:04:20.201257 2024-09-11 09:04:20.201262 a01eec00-4886-4fba-808f-6d99a61f71f8 {"md5": "3487304a801662ca608c73437a284018", "pid": "080824072", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/080824072", "source": "IDREF"}], "preferred_name": "Vereniging Bijstandsbond Amsterdam", "country_associated": "ne", "authorized_access_point": "Vereniging Bijstandsbond Amsterdam", "biographical_information": ["Adresse : Da Costakade 158, NL-1053 XC Amsterdam. Adresse électronique : bijsbnd@xs4all.nl"]} 1 +2024-09-11 09:04:20.262168 2024-09-11 09:04:20.262173 4dc4d75c-2277-4ded-aa3f-bde489def46e {"md5": "8b4e18131954e98cbb2f95bba91e0163", "pid": "080923690", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/080923690", "source": "IDREF"}], "variant_name": ["ANP"], "preferred_name": "Association of Namibian Publishers", "country_associated": "sx", "variant_access_point": ["ANP"], "authorized_access_point": "Association of Namibian Publishers"} 1 +2024-09-11 09:04:20.3337 2024-09-11 09:04:20.333705 c40d4ce4-fc8e-41d2-a7f9-d4aaf4279547 {"md5": "1213bcf7fed88519cd8e89d2afe16a11", "pid": "081103131", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["hau"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/081103131", "source": "IDREF"}], "variant_name": ["Sahabi Liman, Maryam", "Maryam, Hajiya"], "date_of_birth": "1973", "preferred_name": "Liman, Maryam Sahabi", "country_associated": "nr", "variant_access_point": ["Sahabi Liman, Maryam", "Maryam, Hajiya"], "authorized_access_point": "Liman, Maryam Sahabi, 1973-...."} 1 +2024-09-11 09:04:20.404655 2024-09-11 09:04:20.404658 837ab626-4c3a-400d-a435-5364f4cecfc3 {"md5": "84df8d86acf62456fba09014c5504986", "pid": "081199392", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/081199392", "source": "IDREF"}], "date_of_birth": "1961", "preferred_name": "Mishra, Omprakash", "country_associated": "ii", "authorized_access_point": "Mishra, Omprakash, 1961-....", "biographical_information": ["Professeur de relations internationales, Jadavpur University, Calcutta"]} 1 +2024-09-11 09:04:20.465301 2024-09-11 09:04:20.465305 98876df9-e841-4759-a941-a738a39e5674 {"md5": "39ff8779de56139092f245067d259533", "pid": "081232683", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/081232683", "source": "IDREF"}], "variant_name": ["Das Gupta, Jyotirindra", "Gupta, Jyotirindra Das", "Jyotirindra, Dasgupta", "Jyotirindra, Das Gupta"], "preferred_name": "Dasgupta, Jyotirindra", "variant_access_point": ["Das Gupta, Jyotirindra", "Gupta, Jyotirindra Das", "Jyotirindra, Dasgupta", "Jyotirindra, Das Gupta"], "authorized_access_point": "Dasgupta, Jyotirindra"} 1 +2024-09-11 09:04:20.52864 2024-09-11 09:04:20.528643 7d57391e-bb81-4736-9f84-d5032d7befd9 {"md5": "145b89cf84d81ddce4a13cf8e6b0f923", "pid": "081271395", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/081271395", "source": "IDREF"}], "variant_name": ["MacBeth, Brian Stuart", "Mc Beth, Brian Stuart", "Mac Beth, Brian Stuart"], "date_of_birth": "1951-01-15", "preferred_name": "McBeth, Brian Stuart", "country_associated": "xxk", "variant_access_point": ["MacBeth, Brian Stuart", "Mc Beth, Brian Stuart", "Mac Beth, Brian Stuart"], "authorized_access_point": "McBeth, Brian Stuart, 1951-....", "biographical_information": ["Economiste. Consultant indépendant spécialisé dans le domaine de l'énergie (en 1994)"]} 1 +2024-09-11 09:04:20.582805 2024-09-11 09:04:20.582808 d45e76f4-4494-4bad-a95b-d91ba3fc6e85 {"md5": "a2c9d37a3e8ad14f38698f99a1235c00", "pid": "081311249", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/081311249", "source": "IDREF"}], "preferred_name": "Owen, John Wyn", "authorized_access_point": "Owen, John Wyn", "biographical_information": ["Secrétaire au Nuffield Trust, Londres"]} 1 +2024-09-11 09:04:20.644646 2024-09-11 09:04:20.64465 f1dfe589-6cbb-4785-836b-ae1710732af2 {"md5": "dc725f8a54718e8350a95cd91b92f84a", "pid": "081402880", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/081402880", "source": "IDREF"}], "preferred_name": "Welter, Corine", "country_associated": "fr", "authorized_access_point": "Welter, Corine", "biographical_information": ["Titulaire d'un diplôme d'Etat de sage-femme"]} 1 +2024-09-11 09:04:20.701338 2024-09-11 09:04:20.701342 6c24038c-d465-48e5-90c7-3fbfb8f1ede2 {"md5": "af62f8ebf0624f09ca7b5229a591c7b3", "pid": "081435827", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/081435827", "source": "IDREF"}], "preferred_name": "India League (Londres)", "country_associated": "xxk", "authorized_access_point": "India League (Londres)"} 1 +2024-09-11 09:04:27.313792 2024-09-11 09:04:27.313796 45fcf158-9142-4dd1-a2b8-8f66e3cc4050 {"md5": "ea356c77c4cea9b761ce22fc5cf6edc5", "pid": "088997464", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/088997464", "source": "IDREF"}], "date_of_birth": "1916", "preferred_name": "Baranès, André", "authorized_access_point": "Baranès, André, 1916-"} 1 +2024-09-11 09:04:20.758596 2024-09-11 09:04:20.7586 9bf54359-ac3e-4a5b-9fbe-d9b439029cb8 {"md5": "5b04d0240c0de234a51fabd9f7b88d8a", "pid": "081436351", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/081436351", "source": "IDREF"}], "date_of_birth": "1973-11-07", "preferred_name": "Forey, Peggy", "country_associated": "fr", "authorized_access_point": "Forey, Peggy, 1973-....", "biographical_information": ["Médecin"]} 1 +2024-09-11 09:04:20.820026 2024-09-11 09:04:20.820031 91ce4c95-3958-453b-8d6c-e235d6e1ad8f {"md5": "156cd8918617e5c0622b8290e826e487", "pid": "08147475X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/08147475X", "source": "IDREF"}], "variant_name": ["Прейс, Александр Германович", "Preis, Alexandre G."], "date_of_birth": "1905", "date_of_death": "1942", "preferred_name": "Prejs, Aleksandr Germanovič", "country_associated": "ru", "variant_access_point": ["Preis, Alexandre G."], "authorized_access_point": "Prejs, Aleksandr Germanovič, 1905-1942", "biographical_information": ["Écrivain russe, auteur de nombreuses pièces de théâtre et de livrets d'opéra, notamment ceux de Chostakovitch, Le Nez et Lady Macbeth du district de Mtsensk."]} 1 +2024-09-11 09:04:20.900155 2024-09-11 09:04:20.90016 f9d8b293-d99f-40b3-afb1-4a75384dc032 {"md5": "91066d3d223907bae440d101e7a9bb28", "pid": "081544693", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/081544693", "source": "IDREF"}], "preferred_name": "Pasquier, René", "country_associated": "fr", "authorized_access_point": "Pasquier, René"} 1 +2024-09-11 09:04:20.956856 2024-09-11 09:04:20.956859 6ec75a8f-07b1-4c76-9689-cc00dfd97eb7 {"md5": "d59629d2859cb2ae9b9629b1bc17377f", "pid": "081600356", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/081600356", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Kenton, Susannah.", "authorized_access_point": "Kenton, Susannah., 19..-...."} 1 +2024-09-11 09:04:21.014125 2024-09-11 09:04:21.01413 6ae32788-e0d1-4c6f-a1cf-f5dea8693034 {"md5": "dc7ec9e8dbc5767a764fbeb9d3e175c0", "pid": "081609558", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "ara"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/081609558", "source": "IDREF"}], "variant_name": ["Oman. Minerals, Directorate General of", "Oman. Mudīrīyah al-ʿĀmmah lil-Maʿādin"], "preferred_name": "Oman. Directorate General of Minerals", "country_associated": "mk", "variant_access_point": ["Oman. Minerals, Directorate General of", "Oman. Mudīrīyah al-ʿĀmmah lil-Maʿādin"], "authorized_access_point": "Oman. Directorate General of Minerals"} 1 +2024-09-11 09:04:21.085906 2024-09-11 09:04:21.085911 38699dbb-7ae2-4200-a31c-a856a0161fc0 {"md5": "1814d58a1156eb150a756e387845ac6f", "pid": "081719752", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/081719752", "source": "IDREF"}], "preferred_name": "Colloque Hommage à Claude Allaigre", "country_associated": "fr", "date_of_termination": "2002-03", "date_of_establishment": "2002-03", "authorized_access_point": "Colloque Hommage à Claude Allaigre (2002 ; Pau)", "biographical_information": ["Organisé par le Laboratoire de recherches en langues et littératures romanes, études basques, espace carai͏̈be de l'Université de Pau et des Pays de l'Adour"]} 1 +2024-09-11 09:04:21.150942 2024-09-11 09:04:21.150948 bc129d11-3273-4aca-b8bd-7fdfcec08dd1 {"md5": "37c6013bd8ad42e125e858a73b260ce2", "pid": "081801793", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["chi"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/081801793", "source": "IDREF"}], "preferred_name": "Zhongguo ren quan fa zhan ji jin hui", "country_associated": "cc", "parallel_access_point": ["China foundation for human rights development", "CFHRD"], "authorized_access_point": "Zhongguo ren quan fa zhan ji jin hui", "biographical_information": ["Organisation non-gouvernementale pour le développement des droits de l'homme en Chine"]} 1 +2024-09-11 09:04:21.220888 2024-09-11 09:04:21.220893 c73c5e35-7197-4717-8832-827519d994d3 {"md5": "dfae87df603ba396efb8dd1963333430", "pid": "081895046", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ind"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/081895046", "source": "IDREF"}], "variant_name": ["Airlangga Pribadi", "Kusman, Airlangga Pribadi"], "date_of_birth": "1976", "preferred_name": "Pribadi, Airlangga", "country_associated": "io", "variant_access_point": ["Airlangga Pribadi", "Kusman, Airlangga Pribadi"], "authorized_access_point": "Pribadi, Airlangga, 1976-", "biographical_information": ["Chercheur (Gugus Visioner Indonesia - GVI)"]} 1 +2024-09-11 09:04:21.287968 2024-09-11 09:04:21.287977 47877db4-975b-4ac1-b5dc-c51227e5b3fe {"md5": "e7298a9a683af7b21c4b30f57d0a939c", "pid": "082025398", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/082025398", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Matteaccioli, Andrée", "country_associated": "fr", "authorized_access_point": "Matteaccioli, Andrée, 19..-....", "biographical_information": ["A enseigné à l'Université de Paris I Panthéon-Sorbonne, elle est chercheur-associée au MATISS"]} 1 +2024-09-11 09:04:21.357159 2024-09-11 09:04:21.357162 51b94cad-e02d-407d-b9f8-8a5cafcc4182 {"md5": "cdc84f022c826963c8234ec27cc8005a", "pid": "082057826", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/082057826", "source": "IDREF"}], "date_of_birth": "1932", "preferred_name": "Herrera Montesinos, Guillermo", "country_associated": "pe", "authorized_access_point": "Herrera Montesinos, Guillermo, 1932-...."} 1 +2024-09-11 09:04:21.413043 2024-09-11 09:04:21.413047 5d011410-f9fe-4bf2-845a-656a0d2318f0 {"md5": "88e80ac81b836b85351a862841ecea90", "pid": "082085072", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/082085072", "source": "IDREF"}], "variant_name": ["G.R.I.A", "GRIA"], "preferred_name": "Groupe de réflexion interafricain (Paris)", "country_associated": "fr", "variant_access_point": ["G.R.I.A", "GRIA"], "date_of_establishment": "1986", "authorized_access_point": "Groupe de réflexion interafricain (Paris)", "biographical_information": ["Groupe consacré à la promotion des sciences physiques et technologiques en Afrique", "Adresse : 103 Bd. Saint-Michel, 75005 Paris"]} 1 +2024-09-11 09:04:21.472524 2024-09-11 09:04:21.472527 37629935-1301-40b0-9340-35a43236f1d4 {"md5": "5350ea5564bc64f29bb858a2beb82e55", "pid": "082091943", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/082091943", "source": "IDREF"}], "date_of_birth": "1938", "preferred_name": "Normann, Reinhard von", "country_associated": "sz", "authorized_access_point": "Normann, Reinhard von, 1938-...."} 1 +2024-09-11 09:04:21.542268 2024-09-11 09:04:21.542272 f1aeddfb-0690-46ef-877a-c297f34bb978 {"md5": "467aa4225cde8382c22d8a5448706ebe", "pid": "082116008", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/082116008", "source": "IDREF"}], "date_of_birth": "1975-12-16", "preferred_name": "Duton, Frédéric", "country_associated": "fr", "authorized_access_point": "Duton, Frédéric, 1975-....", "biographical_information": ["Conservateur de bibliothèque : ENSSIB, promotion année 2005."]} 1 +2024-09-11 09:04:21.600681 2024-09-11 09:04:21.600685 10acbc04-9f51-474f-a574-c23160b102a5 {"md5": "c9a114f42230d4248dde9ddbc308a24e", "pid": "082333173", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/082333173", "source": "IDREF"}], "variant_name": ["Tartarat, Suzanne Boireau-"], "date_of_birth": "19XX", "preferred_name": "Boireau-Tartarat, Suzanne", "country_associated": "fr", "variant_access_point": ["Tartarat, Suzanne Boireau-"], "authorized_access_point": "Boireau-Tartarat, Suzanne, 19..-....", "biographical_information": ["Journaliste. Chargée des publications de la ville de Périgueux (en 2000)"]} 1 +2024-09-11 09:04:21.656857 2024-09-11 09:04:21.656861 ff711ebf-a114-444c-a6df-31949c17c9bb {"md5": "d0427ff0d713f4669f0455c371bcb491", "pid": "082560757", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/082560757", "source": "IDREF"}], "preferred_name": "Florent, Romain", "authorized_access_point": "Florent, Romain"} 1 +2024-09-11 09:04:21.724896 2024-09-11 09:04:21.7249 37256327-2e2e-4ca1-9247-52a5b948f9c8 {"md5": "8faf83cbbee8a92f558ab0c15270b4b2", "pid": "082609675", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/082609675", "source": "IDREF"}], "date_of_birth": "1966-08-28", "preferred_name": "Aboul-Fotouh, Anas", "country_associated": "ua", "authorized_access_point": "Aboul-Fotouh, Anas, 1966-...."} 1 +2024-09-11 09:04:21.783113 2024-09-11 09:04:21.783117 c4be5313-7d7d-4e74-8ad9-9d90a95d6ca5 {"md5": "0df257101146bf765f695b5b2cb054b1", "pid": "082702446", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/082702446", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Malfait, Torkild", "country_associated": "xx", "authorized_access_point": "Malfait, Torkild, 19..-....", "biographical_information": ["Spécialiste d'art"]} 1 +2024-09-11 09:04:21.84001 2024-09-11 09:04:21.840015 25b98770-6db6-46d4-9728-63bd68660b30 {"md5": "9aed09a360a50524673c4d6eff9177d1", "pid": "083069119", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083069119", "source": "IDREF"}], "variant_name": ["Auberjonois, René Murat"], "date_of_birth": "1940-06-01", "date_of_death": "2019-12-08", "preferred_name": "Auberjonois, René", "country_associated": "xxu", "variant_access_point": ["Auberjonois, René Murat"], "authorized_access_point": "Auberjonois, René, 1940-2019", "biographical_information": ["Acteur"]} 1 +2024-09-11 09:04:21.906283 2024-09-11 09:04:21.906286 f40d6983-bf23-4c32-9b1e-68c4ffabc77e {"md5": "d5240735e6524511d27cf8fb766cc850", "pid": "083194037", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083194037", "source": "IDREF"}], "date_of_birth": "1935-03-11", "preferred_name": "Levine, Daniel Urey", "country_associated": "xxu", "authorized_access_point": "Levine, Daniel Urey, 1935-....", "biographical_information": ["Possède un doctorat, en poste à l'université du Nebraska à Omaha"]} 1 +2024-09-11 09:04:21.966583 2024-09-11 09:04:21.966588 52a57fbc-ecd5-4edf-a6e5-3cae6eff93da {"md5": "b68cc75359213ba7f706706d0e64e2bc", "pid": "083221689", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083221689", "source": "IDREF"}], "variant_name": ["Breithaupt, Max", "Breithaupt, Maximilian K."], "date_of_birth": "1888", "date_of_death": "1965", "preferred_name": "Breithaupt, Maximilian", "country_associated": "gw", "variant_access_point": ["Breithaupt, Max", "Breithaupt, Maximilian K."], "authorized_access_point": "Breithaupt, Maximilian, 1888-1965", "biographical_information": ["Philologue"]} 1 +2024-09-11 09:04:22.025273 2024-09-11 09:04:22.025277 0d88ff82-db05-4c54-bae3-8d26eb7fb5d6 {"md5": "f75a4fbe7b846b436c24a5ee16fcd65e", "pid": "083252819", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083252819", "source": "IDREF"}], "date_of_birth": "1940-12-05", "preferred_name": "Padmanabhan, Sundararajan", "country_associated": "ii", "authorized_access_point": "Padmanabhan, Sundararajan, 1940-....", "biographical_information": ["Chef de l'armée indienne de septembre 2000 à décembre 2002"]} 1 +2024-09-11 09:04:22.085108 2024-09-11 09:04:22.085111 10665929-1639-487c-9de4-1de020578c3b {"md5": "51f143a9645c4f3e6b152f6bbb4c3969", "pid": "083373365", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083373365", "source": "IDREF"}], "preferred_name": "Hámos, L. von", "country_associated": "xx", "authorized_access_point": "Hámos, L. von"} 1 +2024-09-11 09:04:22.153232 2024-09-11 09:04:22.153237 577c0051-ff8d-475e-8c5e-1a8f28f0cdd2 {"md5": "40adcca3838b425b7bfda3d5d914f1f4", "pid": "083467815", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083467815", "source": "IDREF"}], "preferred_name": "Chen, E. C. M.", "country_associated": "xxu", "authorized_access_point": "Chen, E. C. M.", "biographical_information": ["En poste : Professor in the Department of Natural and Applied Sciences at the University of Houston-Clear Lake, Tex. (2004)"]} 1 +2024-09-11 09:04:22.21781 2024-09-11 09:04:22.217815 f38334e5-e7e4-4e3c-ac74-7b5fecaf2035 {"md5": "c3b5066c82b1d3b737f925cc2394595f", "pid": "083488790", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083488790", "source": "IDREF"}], "preferred_name": "Einstürzende Neubauten", "country_associated": "gw", "date_of_establishment": "1980", "authorized_access_point": "Einstürzende Neubauten", "biographical_information": ["Groupe de rock industriel", "Adresse : Hambourg (Allemagne)", "Unruh, N. U., batterie"]} 1 +2024-09-11 09:04:22.340391 2024-09-11 09:04:22.340396 f19e83e8-e42f-4b27-80a7-02f9ef297b3e {"md5": "38b95d21bf0cd7c3e25951a533afa8f9", "pid": "083553843", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083553843", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Ponchel, Arnaud", "country_associated": "fr", "authorized_access_point": "Ponchel, Arnaud, 19..-....", "biographical_information": ["Thèse de doctorat en Sciences des matériaux soutenue en 2001 à l'Université de Paris 6"]} 1 +2024-09-11 09:04:22.407176 2024-09-11 09:04:22.40718 8fa9e077-cc05-4fba-a5c8-453a969f3964 {"md5": "132878ce638b76620b27f4da55734996", "pid": "083568077", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083568077", "source": "IDREF"}], "preferred_name": "Petropoulos, Marios", "country_associated": "fr", "authorized_access_point": "Petropoulos, Marios", "biographical_information": ["Physicien, en poste à l'École polytechnique depuis 2000, conférencier dans le cadre de \\"l'Université de tous les savoirs - la suite\\""]} 1 +2024-09-11 09:04:22.463903 2024-09-11 09:04:22.463907 2ee4a6b8-8e29-490c-b039-8fd80a81656f {"md5": "54ae143e8c2a27bd72017bc0e3a8b7e2", "pid": "083580522", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083580522", "source": "IDREF"}], "variant_name": ["OIE"], "preferred_name": "Organisation internationale des employeurs", "variant_access_point": ["OIE"], "authorized_access_point": "Organisation internationale des employeurs", "biographical_information": ["Réseau de 136 organisations nationales d'employeurs dans 132 pays dont la mission est de promouvoir et de défendre les intérets des employeurs dans les forums internationaux.", "26 chemin de Joinville 1216 Cointrin Genève Suisse, tél (41) 22 929 0000"]} 1 +2024-09-11 09:04:22.533844 2024-09-11 09:04:22.533849 214b71c7-98d0-40c1-8f63-ac2765076dd4 {"md5": "b6a8c6baf65c4a193202aef6ea0797b7", "pid": "083680683", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083680683", "source": "IDREF"}], "variant_name": ["Annual SIGCSE Conference on Innovation and Technology in Computer Science Education", "ITiCSE'99"], "preferred_name": "Annual SIGCSE-SIGCUE Conference on Innovation and Technology in Computer Science Education", "country_associated": "pl", "date_of_termination": "1999-07-01", "variant_access_point": ["Annual SIGCSE Conference on Innovation and Technology in Computer Science Education (4 ; 1999 ; Cracow, Poland)", "ITiCSE'99"], "date_of_establishment": "1999-06-27", "authorized_access_point": "Annual SIGCSE-SIGCUE Conference on Innovation and Technology in Computer Science Education (4 ; 1999 ; Cracow, Poland)"} 1 +2024-09-11 09:04:22.590865 2024-09-11 09:04:22.59087 c3f5bc61-a431-4f0f-949e-1a1d076dcedd {"md5": "675b24cd06c220711707ebf0bba659cb", "pid": "083712941", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083712941", "source": "IDREF"}], "preferred_name": "Rowland, James R.", "country_associated": "xxu", "authorized_access_point": "Rowland, James R."} 1 +2024-09-11 09:04:22.649323 2024-09-11 09:04:22.649326 953226d6-cf1a-47f2-8741-86e1dcf233e7 {"md5": "acbabca45741b9bcdedfe9197ba25e85", "pid": "083715789", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083715789", "source": "IDREF"}], "variant_name": ["CLAM", "Université de Paris VII. Centre d'études comparatistes des littératures antiques et modernes"], "preferred_name": "Centre d'études comparatistes des littératures antiques et modernes", "country_associated": "fr", "variant_access_point": ["CLAM", "Université de Paris VII. Centre d'études comparatistes des littératures antiques et modernes"], "authorized_access_point": "Centre d'études comparatistes des littératures antiques et modernes"} 1 +2024-09-11 09:04:22.704265 2024-09-11 09:04:22.704269 fb737661-34f7-40e6-87d6-96aee45b8b84 {"md5": "f25ab459a38d7e2bcd5db1f4894b2830", "pid": "083726861", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083726861", "source": "IDREF"}], "date_of_birth": "1970-11-08", "preferred_name": "Fernandez, Frédéric", "country_associated": "fr", "authorized_access_point": "Fernandez, Frédéric, 1970-..."} 1 +2024-09-11 09:04:22.760719 2024-09-11 09:04:22.760723 d9759dd0-33b0-4a96-a2be-988915ffa3f7 {"md5": "2a1d61e798c9f235b34a30b7958ea82b", "pid": "083737499", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083737499", "source": "IDREF"}], "variant_name": ["Негин, Олег", "Негин, Олег Игоревич", "Negin, Oleg Grigorevič", "Негин, О. И.", "Negin, O. G."], "date_of_birth": "1970-07-02", "preferred_name": "Neguine, Oleg", "country_associated": "ru", "variant_access_point": ["Негин, Олег Игоревич", "Negin, Oleg Grigorevič", "Негин, О. И.", "Negin, O. G."], "parallel_access_point": ["Negin, Oleg"], "authorized_access_point": "Neguine, Oleg, 1970-....", "biographical_information": ["Ecrivain et scénariste"]} 1 +2024-09-11 09:04:22.820247 2024-09-11 09:04:22.820251 6695c556-19e6-40ba-bd5d-7cc7d2b0abe9 {"md5": "a74957369c079b2ae11fcf4b7d092e48", "pid": "083767827", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083767827", "source": "IDREF"}], "preferred_name": "Olivier, Jean-Baptiste", "country_associated": "fr", "authorized_access_point": "Olivier, Jean-Baptiste"} 1 +2024-09-11 09:04:22.877337 2024-09-11 09:04:22.877341 346a0176-c1cb-4cbe-98e8-02d8b9fc6bab {"md5": "2045ca4f80333f67195d62010ae17352", "pid": "083843361", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ori"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083843361", "source": "IDREF"}], "variant_name": ["Dungdung, Daud"], "preferred_name": "Dungadunga, Dāud", "country_associated": "ii", "variant_access_point": ["Dungdung, Daud"], "authorized_access_point": "Dungadunga, Dāud", "biographical_information": ["Linguiste"]} 1 +2024-09-11 09:04:22.938524 2024-09-11 09:04:22.938528 6c8d7dd0-5d41-4e5b-9efb-87d482f31475 {"md5": "87c8a1b0fe1de6abc637b4841bd35aca", "pid": "083843981", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083843981", "source": "IDREF"}], "preferred_name": "Mazo, Robert M.", "country_associated": "xxu", "authorized_access_point": "Mazo, Robert M.", "biographical_information": ["University of Oregon, Eugene, USA (en 2001)"]} 1 +2024-09-11 09:04:22.993906 2024-09-11 09:04:22.99391 d71b1222-82cb-4fa0-8cb9-6186cad5c438 {"md5": "275046670870b9fd5206ff327d573be3", "pid": "083885463", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083885463", "source": "IDREF"}], "preferred_name": "Uzan, Michel", "country_associated": "xx", "authorized_access_point": "Uzan, Michel", "biographical_information": ["Docteur en Chirurgie dentaire, ancien assistant hospitalo-universitaire en parodontologie à la Faculté de Chirurgie dentaire de Paris 5, (en 2005)"]} 1 +2024-09-11 09:04:23.056044 2024-09-11 09:04:23.056047 7fcc5b39-bb94-4a26-a299-34f27b9bcd11 {"md5": "1f3fcc501d17a27160a26ef44ddfc649", "pid": "083928715", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083928715", "source": "IDREF"}], "preferred_name": "Moisson, Stéphanie", "country_associated": "fr", "authorized_access_point": "Moisson, Stéphanie"} 1 +2024-09-11 09:04:23.118205 2024-09-11 09:04:23.118209 b2bb65cb-9802-4daa-945b-0ca4a39af005 {"md5": "cf21950b2c08f8c0f2a6920abb301ddf", "pid": "083961488", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083961488", "source": "IDREF"}], "variant_name": ["University of Cambridge. Hamilton Kerr Institute"], "preferred_name": "Hamilton Kerr Institute (Cambridge)", "variant_access_point": ["University of Cambridge. Hamilton Kerr Institute"], "authorized_access_point": "Hamilton Kerr Institute (Cambridge)", "biographical_information": ["Hamilton Kerr Institute - Whittlesford - Cambridge CB2 4NE"]} 1 +2024-09-11 09:04:23.181067 2024-09-11 09:04:23.18107 77075ca4-1771-418a-b28c-0e90a91456f4 {"md5": "76adcefbd11ca923fd39d6e31f4998c1", "pid": "083970592", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083970592", "source": "IDREF"}], "variant_name": ["El Houssaini, Souhail"], "date_of_birth": "19..", "preferred_name": "El Ghazi El Houssaini, Souhail", "country_associated": "fr", "variant_access_point": ["El Houssaini, Souhail"], "authorized_access_point": "El Ghazi El Houssaini, Souhail, 19..-", "biographical_information": ["Auteur d'une thèse de doc. univ. en informatique fondamentale et sciences de la computation (Aix-Marseille 2, fac de Luminy, 1986)"]} 1 +2024-09-11 09:04:23.241148 2024-09-11 09:04:23.241152 f64993de-74d7-4218-9d7e-88f5d0d340f1 {"md5": "a61509614e59ab8de0df0035098c0a21", "pid": "084028750", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/084028750", "source": "IDREF"}], "preferred_name": "Bulut, Tarik", "authorized_access_point": "Bulut, Tarik"} 1 +2024-09-11 09:04:23.303582 2024-09-11 09:04:23.303587 8689fb08-a60b-4ab3-9635-6759cb995989 {"md5": "9cb126b0431e97e19d121c0184fae840", "pid": "084029463", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/084029463", "source": "IDREF"}], "preferred_name": "Samba, Désiré", "authorized_access_point": "Samba, Désiré", "biographical_information": ["Praticien hospitalier au service d'Anesthésie Réanimation Chirurgicale et SAMU du CHU de Caen (en 2004)"]} 1 +2024-09-11 09:04:23.361873 2024-09-11 09:04:23.361877 85c52822-afa2-450f-bd66-3862b47f15fa {"md5": "225e95859820ceadfc0cc22b24fbde1e", "pid": "084037407", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/084037407", "source": "IDREF"}], "variant_name": ["Editorial Planeta", "Grupo Planeta"], "preferred_name": "Grupo editorial Planeta", "country_associated": "sp", "variant_access_point": ["Editorial Planeta", "Grupo Planeta"], "date_of_establishment": "1949", "authorized_access_point": "Grupo editorial Planeta"} 1 +2024-09-11 09:04:23.437589 2024-09-11 09:04:23.437595 685f0d69-784f-4c3b-8528-dfd6c64b0a52 {"md5": "123c87cc2fac50a9d35470167a87d99b", "pid": "084062320", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/084062320", "source": "IDREF"}], "variant_name": ["Riba, Marie-Louise", "De Bonald-Riba, Marie-Louise", "Riba-Bonald, Marie-Louise de", "Riba de Bonald, Marie-Louise"], "preferred_name": "Bonald, Marie-Louise de", "country_associated": "fr", "variant_access_point": ["Riba, Marie-Louise", "De Bonald-Riba, Marie-Louise", "Riba-Bonald, Marie-Louise de", "Riba de Bonald, Marie-Louise"], "authorized_access_point": "Bonald, Marie-Louise de", "biographical_information": ["Titulaire d'un doctorat en Sciences à l'Institut national polytechnique de Toulouse, en 1991"]} 1 +2024-09-11 09:04:23.508405 2024-09-11 09:04:23.50841 e01c711b-468e-4a2d-bcee-4e50be44a3ae {"md5": "d88f9623f942662d168d799c591e540c", "pid": "084074752", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/084074752", "source": "IDREF"}], "date_of_birth": "17XX", "date_of_death": "18..", "preferred_name": "Lacoste, D.", "country_associated": "fr", "authorized_access_point": "Lacoste, D., 17..-...."} 1 +2024-09-11 09:04:23.592799 2024-09-11 09:04:23.592803 2d2471f4-c2ff-4208-974c-5e697b828692 {"md5": "304f9c462e0355ecffd12f6d9b44a66e", "pid": "084147385", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/084147385", "source": "IDREF"}], "date_of_birth": "1917", "preferred_name": "Shanks, Daniel", "country_associated": "xxu", "authorized_access_point": "Shanks, Daniel, 1917-...."} 1 +2024-09-11 09:04:23.679168 2024-09-11 09:04:23.679172 b6faa109-4dd2-4675-8336-4aa11f4d2641 {"md5": "0662144e7cee4909a555c258d4c426c4", "pid": "084324856", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/084324856", "source": "IDREF"}], "date_of_birth": "1975-01-07", "preferred_name": "Masutti, Christophe", "country_associated": "fr", "authorized_access_point": "Masutti, Christophe, 1975-....", "biographical_information": ["Titulaire d'un doctorat en épistémologie, histoire des sciences et techniques (Strasbourg 1, 2004)"]} 1 +2024-09-11 09:04:23.737095 2024-09-11 09:04:23.737099 bcad93aa-a1cd-46a0-8810-edb69082b1dc {"md5": "8350a7d00b09dd20a76cb98a6fceab00", "pid": "08433293X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/08433293X", "source": "IDREF"}], "date_of_birth": "1814", "date_of_death": "1890", "preferred_name": "Scarth, Harry Mengden", "country_associated": "xxk", "authorized_access_point": "Scarth, Harry Mengden, 1814-1890", "biographical_information": ["Historien"]} 1 +2024-09-11 09:04:23.793397 2024-09-11 09:04:23.793402 6c64da9c-f360-4aec-8257-6c0ce1c96508 {"md5": "4f02de042d4d8d498e62d4899f08a579", "pid": "084346450", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/084346450", "source": "IDREF"}], "date_of_birth": "1963", "preferred_name": "Lin, Xiaoqing Diana", "country_associated": "xxu", "authorized_access_point": "Lin, Xiaoqing Diana, 1963-....", "biographical_information": ["Professeur associé d'histoire à l'Université d'Indiana Northwest (en 2005)"]} 1 +2024-09-11 09:04:23.854282 2024-09-11 09:04:23.854289 b4f4c3c5-945b-418c-92d5-8d6cebd3b3ec {"md5": "b60dedd487594a2352c64e69e7178f2a", "pid": "084531029", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "qualifier": "cryptologue", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/084531029", "source": "IDREF"}], "date_of_birth": "1891-09-24", "date_of_death": "1969-11-12", "preferred_name": "Friedman, William Frederick, cryptologue", "country_associated": "xxu", "authorized_access_point": "Friedman, William Frederick, 1891-1969, cryptologue", "biographical_information": ["Crytologue"]} 1 +2024-09-11 09:04:23.917606 2024-09-11 09:04:23.917612 5f134eb8-1756-4e6b-ba94-591bf1915e61 {"md5": "6ec5980c544659598b593a73947faf60", "pid": "084675810", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/084675810", "source": "IDREF"}], "preferred_name": "Johansson, Thomas B.", "country_associated": "sw", "authorized_access_point": "Johansson, Thomas B.", "biographical_information": ["Directeur du Programme Energie et Atmosphère du Programme des Nations Unies pour le Développement et professeur d'analyse de systèmes énergétiques, détaché de l'Université de Lund (Suède)"]} 1 +2024-09-11 09:04:23.98908 2024-09-11 09:04:23.989084 73f2d00a-40e5-431d-b518-6dd70ce5e7b6 {"md5": "f567b407be01b637406ee14807c6dd1a", "pid": "084728949", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/084728949", "source": "IDREF"}], "variant_name": ["Kabbaj, Fouzia", "Baghery Kabbaj, Fouzia", "Baghery-Kabbaj, Fouzia"], "date_of_birth": "1953-07-05", "preferred_name": "Baghery, Fouzia", "country_associated": "fr", "variant_access_point": ["Kabbaj, Fouzia", "Baghery Kabbaj, Fouzia", "Baghery-Kabbaj, Fouzia"], "authorized_access_point": "Baghery, Fouzia, 1953-....", "biographical_information": ["Enseignante chercheuse en mathématiques appliquées à l'université polytechnique Hauts-de-France (UPHF) et rattachée au laboratoire de mathématiques et leurs applications de Valenciennes (LAMAV) en 2018."]} 1 +2024-09-11 09:04:24.047417 2024-09-11 09:04:24.04742 570be6fd-e15c-40c4-aead-40340d571ffb {"md5": "58a9f0ec38bf7ec3d2744047ee89b133", "pid": "085001392", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["baq", "spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/085001392", "source": "IDREF"}], "variant_name": ["Quejata Gárate, Elías", "Gárate, Elías Quejata"], "date_of_birth": "1934-10-26", "preferred_name": "Quejeta, Elías", "country_associated": "sp", "variant_access_point": ["Quejata Gárate, Elías", "Gárate, Elías Quejata"], "authorized_access_point": "Quejeta, Elías, 1934-....", "biographical_information": ["Cinéaste et producteur basque"]} 1 +2024-09-11 09:04:24.105564 2024-09-11 09:04:24.105569 75fbbe08-75c1-4ab9-827e-6ab2e5231de8 {"md5": "2798bb1a5a8c419b4d909acabab0a1ce", "pid": "085232629", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/085232629", "source": "IDREF"}], "preferred_name": "Colloquium on Cellular and Biochemical Aspects in Diabetic Retinopathy", "country_associated": "fr", "date_of_termination": "1978-02-03", "date_of_establishment": "1978-02-02", "authorized_access_point": "Colloquium on Cellular and Biochemical Aspects in Diabetic Retinopathy (1978 ; Paris, France)"} 1 +2024-09-11 09:04:24.166018 2024-09-11 09:04:24.166023 42019fe2-98ae-444f-b7db-9df5ae2a29c0 {"md5": "9f120e27436eeca47026a9421b0cb759", "pid": "085232815", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/085232815", "source": "IDREF"}], "preferred_name": "Duhault, J.", "country_associated": "fr", "authorized_access_point": "Duhault, J."} 1 +2024-09-11 09:04:24.228518 2024-09-11 09:04:24.228523 7185ce5f-dd42-452c-b333-7bdf2ef62e41 {"md5": "cba1b4581344fad67b347faf70e56f26", "pid": "085535621", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/085535621", "source": "IDREF"}], "date_of_birth": "1904", "date_of_death": "1976", "preferred_name": "Hoijer, Harry", "country_associated": "xxu", "authorized_access_point": "Hoijer, Harry, 1904-1976", "biographical_information": ["Anthropologue américain"]} 1 +2024-09-11 09:04:24.322994 2024-09-11 09:04:24.322996 7b34b1d3-7b00-4f53-be6c-c4e269a61515 {"md5": "069a893eb7bf149188021043a45feab6", "pid": "085598143", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/085598143", "source": "IDREF"}], "preferred_name": "Berger-Perrin, René", "authorized_access_point": "Berger-Perrin, René"} 1 +2024-09-11 09:04:24.389282 2024-09-11 09:04:24.389286 9516f005-9ca0-4344-9a73-8de691fe6a5c {"md5": "5cd9eddf4e9d4236bda0fb31bdc8cd73", "pid": "085617598", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/085617598", "source": "IDREF"}], "date_of_birth": "1978-01-04", "preferred_name": "Marie-Cousin, Alexia", "country_associated": "fr", "authorized_access_point": "Marie-Cousin, Alexia, 1978-....", "biographical_information": ["Titulaire d'un doctorat d'exercice en chirurgie dentaire (Rennes : 2005)", "Directeur d'une thèse d'exercice en chirurgie dentaire (Rennes : 2011)"]} 1 +2024-09-11 09:04:24.447174 2024-09-11 09:04:24.447178 801a9112-80a2-4c00-bf41-d028055f8e90 {"md5": "a00f64c32a7e3241584fc52771d34d03", "pid": "085647640", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/085647640", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "086928341"}, "date_of_birth": "1839-11-07", "date_of_death": "1900-05-13", "preferred_name": "Levi, Hermann", "country_associated": "gw", "authorized_access_point": "Levi, Hermann, 1839-1900", "biographical_information": ["Chef d'orchestre et compositeur allemand. 1859 directeur général de la musique à Sarrebruck, 1861 chef assistant à l'Opéra National de Mannheim, 1861-64 chef à l'Opéra de Rotterdam, 1864-72 chef à la Cour de Karlsruhe,1872-90 chef à la Cour de Munich, 1894 directeur général de la musique à Munich. Il cesse de diriger en 1896", "Lieu de naissance Giessen. Lieu de décès Munich"]} 1 +2024-09-11 09:04:24.529707 2024-09-11 09:04:24.529713 ff19886d-9a34-4acb-8628-5f4ebc8b680f {"md5": "d80316c5f1347da123a4abd51a365e29", "pid": "085731390", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/085731390", "source": "IDREF"}], "date_of_birth": "1957-08-15", "preferred_name": "Grandgirard, Alain", "country_associated": "fr", "authorized_access_point": "Grandgirard, Alain, 1957-....", "biographical_information": ["Docteur en médecine (Besançon, 1986)"]} 1 +2024-09-11 09:04:24.596706 2024-09-11 09:04:24.596709 43199a47-f147-4ef3-b531-7473c3e26617 {"md5": "6f6b259baa545282a032aa45259cd678", "pid": "085825069", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/085825069", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Leimberg, Inge", "country_associated": "gw", "authorized_access_point": "Leimberg, Inge, 19..-....", "biographical_information": ["Spécialiste de la littérature anglaise"]} 1 +2024-09-11 09:04:24.66403 2024-09-11 09:04:24.664035 d4a94f43-0c54-488e-b9aa-a54f61a69dfb {"md5": "e3a9c713a541c247d7542c3fb78e36bc", "pid": "085826367", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/085826367", "source": "IDREF"}], "variant_name": ["Hebert, Anne-Sophie", "Vidal, Anne-Sophie"], "date_of_birth": "19XX", "preferred_name": "Hebert-Vidal, Anne-Sophie", "country_associated": "fr", "variant_access_point": ["Hebert, Anne-Sophie", "Vidal, Anne-Sophie"], "authorized_access_point": "Hebert-Vidal, Anne-Sophie, 19..-...."} 1 +2024-09-11 09:04:24.723804 2024-09-11 09:04:24.723808 1752df38-92a3-41b7-b05c-cc3d051ec277 {"md5": "7fd7fd5fb043fec959dafbc4f1e9809a", "pid": "085835943", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/085835943", "source": "IDREF"}], "preferred_name": "Finney, Ruth S.", "country_associated": "xx", "authorized_access_point": "Finney, Ruth S."} 1 +2024-09-11 09:04:24.781881 2024-09-11 09:04:24.781885 9f044ac3-26ee-46d8-8cd4-bd07952fd271 {"md5": "4d7cb7b50acb44bbf436b110e1fef0f4", "pid": "085856525", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "qualifier": "archiviste", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/085856525", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Lichter, Eduard, archiviste", "country_associated": "gw", "authorized_access_point": "Lichter, Eduard, 19..-...., archiviste", "biographical_information": ["Archiviste"]} 1 +2024-09-11 09:04:24.840866 2024-09-11 09:04:24.84087 6d592d54-ec80-4fc6-ac1b-0b9d839fe22d {"md5": "70eb5c3552ac25a4fa5d087bee4d0f81", "pid": "08589320X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/08589320X", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "066889359"}, "date_of_birth": "1813-06-22", "date_of_death": "1882-07", "preferred_name": "Batissier, Louis", "country_associated": "fr", "authorized_access_point": "Batissier, Louis, 1813-1882", "biographical_information": ["Médecin. Inspecteur de monuments historiques de l'Allier. Chargé de mission en Grèce, Syrie et Asie Mineure. Vice-consul de France à Suez"]} 1 +2024-09-11 09:04:24.924354 2024-09-11 09:04:24.924357 c2636c71-45e9-4ad9-9d85-8a79225e568f {"md5": "139b5bddc8884ba1a678efff0f75b5e5", "pid": "086019740", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/086019740", "source": "IDREF"}], "variant_name": ["Universidad complutense de Madrid. Facultad de ciencias políticas y sociología. Departamento de antropología social"], "preferred_name": "Universidad complutense de Madrid. Departamento de antropología social", "country_associated": "sp", "variant_access_point": ["Universidad complutense de Madrid. Facultad de ciencias políticas y sociología. Departamento de antropología social"], "authorized_access_point": "Universidad complutense de Madrid. Departamento de antropología social"} 1 +2024-09-11 09:04:24.980376 2024-09-11 09:04:24.98038 de39ef29-275b-490b-ac3b-9911be2b6d2d {"md5": "c1c6a5c2335ac48e9b385a864485a403", "pid": "086021311", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/086021311", "source": "IDREF"}], "variant_name": ["Stichting Onderzoekscentrum Turkestan en Azerbaycan", "Stichting Onderzoekscentrum Türkistan en Azerbaycan", "S.O.T.A.", "SOTA", "Türkistan ve Azerbaycan Ara ̧stirma Merkezi", "Research Centre for Turkestan and Azerbaijan", "TSentr issledovaniia Turkestan - Azerbaidzhan", "Turkestan and Azerbaijan Research Centre", "Research Centre for Turkestan, Azerbaijan, Crimea, Caucuasus, and Siberia"], "preferred_name": "Stichting Onderzoekscentrum Turkestan en Azerbaidzjan", "country_associated": "ne", "variant_access_point": ["Stichting Onderzoekscentrum Turkestan en Azerbaycan", "Stichting Onderzoekscentrum Türkistan en Azerbaycan", "S.O.T.A.", "SOTA", "Türkistan ve Azerbaycan Ara ̧stirma Merkezi", "Research Centre for Turkestan and Azerbaijan", "TSentr issledovaniia Turkestan - Azerbaidzhan", "Turkestan and Azerbaijan Research Centre", "Research Centre for Turkestan, Azerbaijan, Crimea, Caucuasus, and Siberia"], "authorized_access_point": "Stichting Onderzoekscentrum Turkestan en Azerbaidzjan", "biographical_information": ["Adresse : Postbus 9642, 2003 LP Haarlem. Contact : 31 23 529 28 83. Adresse électronique : sota@wanadoo.nl"]} 1 +2024-09-11 09:04:25.03785 2024-09-11 09:04:25.037855 674ba655-9fce-4291-884a-23fd59efcaeb {"md5": "39fede2947d32d57d94ebba8b83e5516", "pid": "08602308X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/08602308X", "source": "IDREF"}], "variant_name": ["Fédération française de football. District du Cantal", "Fédération française de football. Ligue (Auvergne). District (Cantal)"], "preferred_name": "Fédération française de football. District (Cantal)", "country_associated": "fr", "variant_access_point": ["Fédération française de football. District du Cantal", "Fédération française de football. Ligue (Auvergne). District (Cantal)"], "authorized_access_point": "Fédération française de football. District (Cantal)", "biographical_information": ["Adresse : Maison départementale des sports, BP 425, La Ponétie, 15004 Aurillac cedex. Tél. 71.64.24.24"]} 1 +2024-09-11 09:04:25.09395 2024-09-11 09:04:25.093954 2872048e-d33e-4f56-92bc-f7e2254445ff {"md5": "2ddca925f80917e183797bd74690c52e", "pid": "086069527", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/086069527", "source": "IDREF"}], "preferred_name": "Roland, Alfredo E.", "authorized_access_point": "Roland, Alfredo E."} 1 +2024-09-11 09:04:25.151385 2024-09-11 09:04:25.151391 c8244f18-a91f-4366-a968-b6d0db5124df {"md5": "c4c7783c7d1ffc2e133b0bae0aba5b13", "pid": "086069888", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/086069888", "source": "IDREF"}], "variant_name": ["Hermandad de Las Penas de San Vicente (Espagne)", "Hermandad de Las Penas"], "preferred_name": "Hermandad y Cofradía de Nazarenos de Nuestro Padre Jesús de las Penas y María Santísima de los Dolores (Espagne)", "country_associated": "sp", "variant_access_point": ["Hermandad de Las Penas de San Vicente (Espagne)", "Hermandad de Las Penas"], "date_of_establishment": "1875", "authorized_access_point": "Hermandad y Cofradía de Nazarenos de Nuestro Padre Jesús de las Penas y María Santísima de los Dolores (Espagne)", "biographical_information": ["Corporation religieuse de Séville"]} 1 +2024-09-11 09:04:25.213488 2024-09-11 09:04:25.213491 789ab55d-e65a-4cf1-91d3-e626d124ac76 {"md5": "e3b15af2c24dc8960094365c48853aec", "pid": "08608416X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/08608416X", "source": "IDREF"}], "preferred_name": "Junod, Samuel", "country_associated": "xxu", "authorized_access_point": "Junod, Samuel", "biographical_information": ["Professeur assistant de français à l'Université du Colorado à Boulder, spécialiste de littérature française de la Renaissance"]} 1 +2024-09-11 09:04:25.269184 2024-09-11 09:04:25.269188 c86f42ed-9e27-49fe-9d39-c0f7a6d6e787 {"md5": "bc852c17a91886f93bd5908c92dd3004", "pid": "086094602", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/086094602", "source": "IDREF"}], "variant_name": ["Biblioteca Monte Cappuccini (Turin, Italie)", "Convento del Monte dei Cappuccini (Turin, Italie). Biblioteca", "Monte dei Cappuccini (Turin, Italie). Biblioteca"], "preferred_name": "Biblioteca del Monte dei Cappuccini (Turin, Italie)", "country_associated": "it", "variant_access_point": ["Biblioteca Monte Cappuccini (Turin, Italie)", "Convento del Monte dei Cappuccini (Turin, Italie). Biblioteca", "Monte dei Cappuccini (Turin, Italie). Biblioteca"], "date_of_establishment": "1596", "authorized_access_point": "Biblioteca del Monte dei Cappuccini (Turin, Italie)"} 1 +2024-09-11 09:04:25.330036 2024-09-11 09:04:25.330039 38a447e1-f147-4145-91b9-ece7515349f3 {"md5": "65e66e2bb511c7f1b35173ef668740bb", "pid": "086124641", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/086124641", "source": "IDREF"}], "preferred_name": "Road, Sinclair", "country_associated": "xxk", "authorized_access_point": "Road, Sinclair"} 1 +2024-09-11 09:04:25.386426 2024-09-11 09:04:25.386432 10f7699a-e27f-4b9c-bdbb-0f597e315d90 {"md5": "27e5224675c9136d9ec526dff564678a", "pid": "086139096", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/086139096", "source": "IDREF"}], "preferred_name": "O'Brien, Kathleen", "country_associated": "xx", "authorized_access_point": "O'Brien, Kathleen"} 1 +2024-09-11 09:04:25.445454 2024-09-11 09:04:25.44546 71778a35-47e8-4db9-98cb-1800bf6aa987 {"md5": "3238c15acff8a0cc3591588217deca8f", "pid": "086168312", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/086168312", "source": "IDREF"}], "preferred_name": "Smithback, John B.", "country_associated": "xxk", "authorized_access_point": "Smithback, John B."} 1 +2024-09-11 09:04:25.505457 2024-09-11 09:04:25.505461 92d99b19-a834-449e-8d39-1c029853dcd2 {"md5": "52a0562c91527e4736b48ccc4062e670", "pid": "086232827", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/086232827", "source": "IDREF"}], "preferred_name": "Laboratoires Winthrop", "country_associated": "fr", "authorized_access_point": "Laboratoires Winthrop", "biographical_information": ["Adresse : 92-98, bd Victor-Hugo, 92115 Clichy. Tél. 42.70.72.40"]} 1 +2024-09-11 09:04:25.571236 2024-09-11 09:04:25.57124 f1e2755c-d084-4844-8819-65174df2895a {"md5": "632ababe74ce83a4385ebd9287ccafa0", "pid": "086845659", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/086845659", "source": "IDREF"}], "variant_name": ["Tours (Intendance)", "Tours (Généralité)", "Généralité de Tours"], "preferred_name": "France. Intendance (Tours)", "country_associated": "fr", "variant_access_point": ["Tours (Intendance)", "Tours (Généralité)", "Généralité de Tours"], "date_of_establishment": "1542", "authorized_access_point": "France. Intendance (Tours)", "biographical_information": ["La généralité de Tours a été créée en 1542. Tours fut siège d'une des dix-sept recettes générales créées par Henri II et confiées à des trésoriers généraux (Édit donné à Blois en janvier 1551). Elle se composait de seize élections ; vingt-une subdélégations (intendance)."]} 1 +2024-09-11 09:04:25.640806 2024-09-11 09:04:25.64081 f87e1a75-bfdb-4d90-9e3d-a35436519b79 {"md5": "f81e4fba2a265c6179c67e4114b1e583", "pid": "086849786", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/086849786", "source": "IDREF"}], "preferred_name": "Serena, Pedro A.", "country_associated": "sp", "authorized_access_point": "Serena, Pedro A.", "biographical_information": ["Laboratorio de Fisica de Sistema Pequeños y nanotecnologia, Consejo Superior de Investigaciones Cientificas (CSIC) (1997)"]} 1 +2024-09-11 09:04:25.709955 2024-09-11 09:04:25.709959 9271a701-cad7-4f7f-bd32-190c1aa1e9f5 {"md5": "c2336adfb58b6cdb2d406a71601b6a54", "pid": "087190087", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/087190087", "source": "IDREF"}], "date_of_birth": "1882", "date_of_death": "1951", "preferred_name": "Börner, Wilhelm", "country_associated": "gw", "authorized_access_point": "Börner, Wilhelm, 1882-1951"} 1 +2024-09-11 09:04:25.76618 2024-09-11 09:04:25.766187 9f4fe3db-a680-469d-9ecb-5c870810257b {"md5": "26d85a01c02761dda0815c08c33faa9e", "pid": "087239981", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/087239981", "source": "IDREF"}], "date_of_birth": "1907", "preferred_name": "Venkatappiah, B.", "authorized_access_point": "Venkatappiah, B., 1907-...."} 1 +2024-09-11 09:04:28.755302 2024-09-11 09:04:28.755306 f2d12388-e595-443c-bd29-77e6ed299abb {"md5": "dee9edf2f8f287f456c21cee2e1d0a5d", "pid": "094563152", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/094563152", "source": "IDREF"}], "preferred_name": "Nievergelt, Dieter", "country_associated": "gw", "authorized_access_point": "Nievergelt, Dieter"} 1 +2024-09-11 09:04:25.836713 2024-09-11 09:04:25.836717 4eaee51a-9fc3-4219-8558-8df9d47ee865 {"md5": "8592a5ba7ec6e0c2ba182f7b97c8cf9c", "pid": "087402467", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/087402467", "source": "IDREF"}], "preferred_name": "Kempis, Rolf-Dieter", "country_associated": "gw", "authorized_access_point": "Kempis, Rolf-Dieter", "biographical_information": ["Directeur de l'agence de Düsseldorf de l'entreprise McKinsey & Company"]} 1 +2024-09-11 09:04:25.903149 2024-09-11 09:04:25.903153 b26af892-6ddb-4b03-9c85-148ca947aa0a {"md5": "dd6f6aa918b11f0b0d56b175afa3489e", "pid": "087470659", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/087470659", "source": "IDREF"}], "date_of_birth": "1904", "date_of_death": "1988", "preferred_name": "Hutton, Graham", "authorized_access_point": "Hutton, Graham, 1904-1988"} 1 +2024-09-11 09:04:25.971495 2024-09-11 09:04:25.971501 4db70b95-bbc0-4124-9d4a-6f851bf7caed {"md5": "0ca555063d6fb2554f2ee4e3624c99a0", "pid": "087504146", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/087504146", "source": "IDREF"}], "date_of_birth": "1923", "preferred_name": "Rose, Harold", "authorized_access_point": "Rose, Harold, 1923-"} 1 +2024-09-11 09:04:26.030612 2024-09-11 09:04:26.030616 b8f1a4d2-d21f-4a7d-8e02-a750ca005a6c {"md5": "9f1f8e5a77eea247ad227136a2943e1e", "pid": "087535300", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/087535300", "source": "IDREF"}], "preferred_name": "Waxler, Caroline", "country_associated": "xxu", "authorized_access_point": "Waxler, Caroline", "biographical_information": ["Journaliste financière"]} 1 +2024-09-11 09:04:26.099017 2024-09-11 09:04:26.099022 29cd8318-d632-4d73-b1a5-bcba3837ee6d {"md5": "4b6eca7d5fc0864ca0368b9ad4bf40fc", "pid": "087635585", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/087635585", "source": "IDREF"}], "preferred_name": "Laurent, Marguerite-Marie", "country_associated": "fr", "authorized_access_point": "Laurent, Marguerite-Marie"} 1 +2024-09-11 09:04:26.155773 2024-09-11 09:04:26.15578 fc754548-e94a-449b-9e19-b55716e69088 {"md5": "407f8e6e581d92a9c7f3a8ecf037388b", "pid": "087649535", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/087649535", "source": "IDREF"}], "variant_name": ["Heras, Esther Sampedro"], "preferred_name": "Sampedro Heras, Esther", "country_associated": "sp", "variant_access_point": ["Heras, Esther Sampedro"], "authorized_access_point": "Sampedro Heras, Esther", "biographical_information": ["Universitaire, spécialiste de la littérature médiévale"]} 1 +2024-09-11 09:04:26.216562 2024-09-11 09:04:26.216566 789929ad-4e27-4f9a-84b7-fe424613fd93 {"md5": "8be66bd85059f73e6e2af0d3ed84b0e4", "pid": "087823535", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/087823535", "source": "IDREF"}], "preferred_name": "Onoge, Omafume F.", "country_associated": "nr", "authorized_access_point": "Onoge, Omafume F.", "biographical_information": ["Enseigne à la School of postgraduate studies, University of Jos, Nigeria (en 1993)"]} 1 +2024-09-11 09:04:26.283132 2024-09-11 09:04:26.283135 40f27ba4-882e-4e50-b872-277cf8a99742 {"md5": "1e77c0cb00423f4bb431736883a18955", "pid": "087958686", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/087958686", "source": "IDREF"}], "preferred_name": "Deplanque, Laetitia", "country_associated": "be", "authorized_access_point": "Deplanque, Laetitia", "biographical_information": ["Licenciée en droit. Chercheur au Centre de recherche informatique et droit des facultés universitaires Notre-Dame de la paix de Namur (en 2004)."]} 1 +2024-09-11 09:04:26.343881 2024-09-11 09:04:26.343886 640608f0-45c9-4b74-bd64-8c8958b4b89e {"md5": "911c0f51616cc3e47c41cf14aadfa5aa", "pid": "088014029", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/088014029", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "18345202X"}, "variant_name": ["Kolinus, Goswin", "Cholinus, Gosuinus", "Officina Mater. Cholini", "Officina Materni Cholini"], "date_of_birth": "15..", "date_of_death": "1612?", "preferred_name": "Cholinus, Goswin", "country_associated": "gw", "variant_access_point": ["Kolinus, Goswin", "Cholinus, Gosuinus", "Officina Mater. Cholini", "Officina Materni Cholini"], "parallel_access_point": ["Cholinus, Gosvinus, 15..-1612?"], "authorized_access_point": "Cholinus, Goswin, 15..-1612?", "biographical_information": ["Imprimeur-libraire actif à Cologne de 1583 ou 1588 à 1612?. A travaillé avec l'Officine de Maternus Cholinus."]} 1 +2024-09-11 09:04:26.409106 2024-09-11 09:04:26.40911 9f8f5c8d-dbda-478d-993a-7858a508a7f8 {"md5": "e0250e6feb6f6adde57f4dabb94959bf", "pid": "088042944", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ara"], "qualifier": "acteur", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/088042944", "source": "IDREF"}], "variant_name": ["El-Ğalĭl, ʽAmr ʽAbd", "Ğalĭl, ʽAmr ʽAbd", "ʽAbd El-Ğalĭl, ʽAmr"], "preferred_name": "Abd el-Guelil, Amr, acteur", "variant_access_point": ["El-Ğalĭl, ʽAmr ʽAbd", "Ğalĭl, ʽAmr ʽAbd", "ʽAbd El-Ğalĭl, ʽAmr"], "authorized_access_point": "Abd el-Guelil, Amr, acteur", "biographical_information": ["Acteur"]} 1 +2024-09-11 09:04:26.465646 2024-09-11 09:04:26.46565 a57b05e4-7bc9-4d32-8d6d-fd133fb29c82 {"md5": "1d9382e23aa2597c852a50ffdaabf8be", "pid": "088082776", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/088082776", "source": "IDREF"}], "preferred_name": "Roalson, Eric H.", "country_associated": "xxu", "authorized_access_point": "Roalson, Eric H.", "biographical_information": ["En poste : School of biological sciences, center for integrated biotechnology, Pullman, Washington."]} 1 +2024-09-11 09:04:26.523602 2024-09-11 09:04:26.523604 9963cec4-62f9-4e1d-9feb-8bbe1951859a {"md5": "fcb465522648ad6adde4aa942c0fa582", "pid": "088088944", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/088088944", "source": "IDREF"}], "date_of_birth": "1969", "preferred_name": "Glasze, Georg", "country_associated": "gw", "authorized_access_point": "Glasze, Georg, 1969-....", "biographical_information": ["Chercheur en Géographie humaine à l'Université de Mainz (en 2003)"]} 1 +2024-09-11 09:04:26.580752 2024-09-11 09:04:26.580755 efd968bd-2963-4dcf-bf56-b10183aeb8bf {"md5": "411fec2984e5c4b509dbad9b03792d4d", "pid": "088106926", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/088106926", "source": "IDREF"}], "date_of_birth": "1888", "date_of_death": "1975", "preferred_name": "Souché, Aimé", "country_associated": "fr", "authorized_access_point": "Souché, Aimé, 1888-1975", "biographical_information": ["Grammairien et inspecteur de l'enseignement primaire"]} 1 +2024-09-11 09:04:26.643463 2024-09-11 09:04:26.643468 884ffad6-f46f-4ee0-914f-2c43f11db6e6 {"md5": "8f444e758fd04413339aa08dd000ec54", "pid": "088397599", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/088397599", "source": "IDREF"}], "preferred_name": "Rodríguez Gómez, José M.", "country_associated": "sp", "authorized_access_point": "Rodríguez Gómez, José M."} 1 +2024-09-11 09:04:26.704016 2024-09-11 09:04:26.70402 58f2a606-70cd-4123-9a51-37c54127b0ce {"md5": "05aea98cea2a62eaec2dcfb578c52407", "pid": "088404587", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/088404587", "source": "IDREF"}], "variant_name": ["With, Hans Joachim de"], "preferred_name": "With, Hans de", "variant_access_point": ["With, Hans Joachim de"], "authorized_access_point": "With, Hans de", "biographical_information": ["Juriste", "Avocat (Bamberg, Allemagne)"]} 1 +2024-09-11 09:04:26.777521 2024-09-11 09:04:26.777526 a2113958-387c-47ed-b93e-b3784b64d7aa {"md5": "4cd1089138187c5dac519108628c6726", "pid": "088453022", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "ben"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/088453022", "source": "IDREF"}], "variant_name": ["Ghose, Partha", "Ghosha, P¯artha", "P¯artha Ghosha"], "preferred_name": "Ghose, Partha", "country_associated": "ii", "variant_access_point": ["Ghose, Partha", "Ghosha, P¯artha", "P¯artha Ghosha"], "authorized_access_point": "Ghose, Partha", "biographical_information": ["Physicist: S.N. Bose National Centre for Basic Sciences, Calcutta, Inde"]} 1 +2024-09-11 09:04:26.833937 2024-09-11 09:04:26.833942 6fd59ad0-83dc-4dc6-afeb-ca9746ccee99 {"md5": "d0eb726a2bfd3447cc8c0157662d5e9f", "pid": "088540235", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["hin", "eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/088540235", "source": "IDREF"}], "variant_name": ["Khalid Ma'aroof, Mohammad"], "preferred_name": "Ma'aroof, Mohammad Khalid", "country_associated": "ii", "variant_access_point": ["Khalid Ma'aroof, Mohammad"], "authorized_access_point": "Ma'aroof, Mohammad Khalid"} 1 +2024-09-11 09:04:26.89008 2024-09-11 09:04:26.890085 ee46ffd6-c974-4162-b2a6-849f2ab1155b {"md5": "129d3527baa70e24a26036948c963292", "pid": "08870078X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/08870078X", "source": "IDREF"}], "preferred_name": "Cummings, Karen", "authorized_access_point": "Cummings, Karen", "biographical_information": ["Southern Connecticut State University, New Haven , Connecticut"]} 1 +2024-09-11 09:04:26.94172 2024-09-11 09:04:26.941724 d15fc872-6f67-4e58-9af9-aea561a52638 {"md5": "9a978520ce3a7b615bcb48b9b65961ee", "pid": "08871246X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/08871246X", "source": "IDREF"}], "date_of_birth": "1894", "date_of_death": "1977", "preferred_name": "Renard, Gabriel", "country_associated": "fr", "authorized_access_point": "Renard, Gabriel, 1894-1977", "biographical_information": ["Professeur de Clinique Ophtalmique à la Faculté de Médecine de Paris (1956), président de la Banque française des yeux (1967), membre de l'académie de Médecine (1969)"]} 1 +2024-09-11 09:04:26.996506 2024-09-11 09:04:26.99651 67f9aee4-cd15-4e4c-b7f1-f2ff65e7be88 {"md5": "86586d5b8559af9641b78e2d73053407", "pid": "08875975X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "qualifier": "imprimeur", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/08875975X", "source": "IDREF"}], "date_of_birth": "16XX", "date_of_death": "16XX", "preferred_name": "Grande, Andres, imprimeur", "country_associated": "sp", "authorized_access_point": "Grande, Andres, 16..?-16.., imprimeur", "biographical_information": ["Imprimeur.", "Seville : 1624-1651"]} 1 +2024-09-11 09:04:27.048204 2024-09-11 09:04:27.048207 e602356b-ebf0-477c-8ad1-397f64d91f48 {"md5": "0e4c90a2f0a979330e6afa0385481ee0", "pid": "08880058X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/08880058X", "source": "IDREF"}], "preferred_name": "Hill, Darcy", "country_associated": "xxk", "authorized_access_point": "Hill, Darcy"} 1 +2024-09-11 09:04:27.099367 2024-09-11 09:04:27.099371 022c311e-e99d-479b-ba9d-9ed8990d7938 {"md5": "1c00dfba5870a942417a2b1e718a3b5e", "pid": "088888177", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/088888177", "source": "IDREF"}], "variant_name": ["Wahl, Philippe Marie Joseph"], "date_of_birth": "1956-03-11", "preferred_name": "Wahl, Philippe", "country_associated": "fr", "variant_access_point": ["Wahl, Philippe Marie Joseph"], "authorized_access_point": "Wahl, Philippe, 1956-....", "biographical_information": ["Membre du Conseil d'Etat, Directeur de société, Président-directeur général du groupe La Poste (2018)"]} 1 +2024-09-11 09:04:27.152598 2024-09-11 09:04:27.152605 a697eaef-4a5d-451d-908d-58e8066d6867 {"md5": "cee5f1cd6c274dc4c9cfce45654fa045", "pid": "088920763", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/088920763", "source": "IDREF"}], "preferred_name": "Saudi Arabia. al-Mudīrīyah al-ʻĀmmah lil-Idhāʻah wa-al-Ṣiḥāfah wa-al-Nashr.", "country_associated": "su", "authorized_access_point": "Saudi Arabia. al-Mudīrīyah al-ʻĀmmah lil-Idhāʻah wa-al-Ṣiḥāfah wa-al-Nashr."} 1 +2024-09-11 09:04:27.206405 2024-09-11 09:04:27.206409 d65696da-41db-4626-89f7-5c9b6a2385ef {"md5": "a838c218957ceffdf9fec595169d3011", "pid": "088945332", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/088945332", "source": "IDREF"}], "preferred_name": "Kubo, Hidebumi", "authorized_access_point": "Kubo, Hidebumi"} 1 +2024-09-11 09:04:27.259165 2024-09-11 09:04:27.259169 8bbc8201-3b23-4bee-8146-e14e3542cd45 {"md5": "e2c99951f7cb598a30b0f86c694f8dcc", "pid": "088984141", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/088984141", "source": "IDREF"}], "date_of_birth": "1960", "preferred_name": "Laue, Thomas", "country_associated": "gw", "authorized_access_point": "Laue, Thomas, 1960-...."} 1 +2024-09-11 09:04:27.404807 2024-09-11 09:04:27.40481 2e6542a7-aea8-4dd7-871c-d457af7e9040 {"md5": "2ef34dc7d75b84305df66d7754db0229", "pid": "089425596", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre", "eng"], "qualifier": "professeur de biologie cellulaire", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/089425596", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Mariani, Jean, professeur de biologie cellulaire", "country_associated": "fr", "authorized_access_point": "Mariani, Jean, 19..-...., professeur de biologie cellulaire", "biographical_information": ["Professeur de biologie cellulaire à Sorbonne université, Paris, UMR 8256 (en 2020)", "Directeur de thèse à l'Université Pierre et Marie Curie - Paris 6 (de 2003 à 2020)"]} 1 +2024-09-11 09:04:27.458593 2024-09-11 09:04:27.458597 80476b74-3a75-4d74-bb63-06c2274fcf5e {"md5": "bf955960d0a12ec17b73df066f979639", "pid": "089443675", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/089443675", "source": "IDREF"}], "variant_name": ["Ritch, Katharine Janet", "Ritch, Janet"], "date_of_birth": "1955", "date_of_death": "2014", "preferred_name": "Ritch, K. Janet", "country_associated": "xxc", "variant_access_point": ["Ritch, Katharine Janet", "Ritch, Janet"], "authorized_access_point": "Ritch, K. Janet, 1955-2014", "biographical_information": ["Enseigne à l'université de Toronto, traduit en français"]} 1 +2024-09-11 09:04:27.519677 2024-09-11 09:04:27.519683 80b06ca7-80c2-419b-9023-8bd9e59681d7 {"md5": "f6e05b7dc17e922d45d34a850338019c", "pid": "090159225", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/090159225", "source": "IDREF"}], "preferred_name": "Dezes, Jean-Pierre", "country_associated": "fr", "authorized_access_point": "Dezes, Jean-Pierre"} 1 +2024-09-11 09:04:27.579451 2024-09-11 09:04:27.579457 3410f45a-ba8e-4947-a75d-0a65352986e3 {"md5": "a8c179adc1c2c24da2e16d674a0952aa", "pid": "09042333X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/09042333X", "source": "IDREF"}], "preferred_name": "Westland, Peter", "country_associated": "xxk", "authorized_access_point": "Westland, Peter", "biographical_information": ["Spécialiste de la littérature anglaise"]} 1 +2024-09-11 09:04:27.646092 2024-09-11 09:04:27.646095 51ce41a5-37ad-4579-b435-7a097386ed89 {"md5": "cec26d72e8fe36a09ce3c7b034a5e41a", "pid": "091257174", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/091257174", "source": "IDREF"}], "preferred_name": "Freidberg, Susanne Elizabeth", "country_associated": "xxu", "authorized_access_point": "Freidberg, Susanne Elizabeth", "biographical_information": ["Enseignante au département de géographie à \\"Dartmouth college\\""]} 1 +2024-09-11 09:04:27.700895 2024-09-11 09:04:27.700899 c750528d-bc78-4478-a039-56a5c5db8472 {"md5": "43c3e1a2e08edef380510c99a8bb37ac", "pid": "091546230", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/091546230", "source": "IDREF"}], "preferred_name": "Desmond, John M.", "country_associated": "xxu", "authorized_access_point": "Desmond, John M."} 1 +2024-09-11 09:04:27.754964 2024-09-11 09:04:27.754968 ca83ef2a-d3c6-4583-839e-d40ac76b23ac {"md5": "382d80ad20aeb3d6607ffc507fe2bf33", "pid": "092002781", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["hin"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/092002781", "source": "IDREF"}], "variant_name": ["R¯ake´sa Vatsa", "Vats, Rakesh", "Rakesh Vats", "Vatsa, Rakesh", "Rakesh Vatsa"], "date_of_birth": "1941", "preferred_name": "Vatsa, R¯ake´sa", "country_associated": "ii", "variant_access_point": ["R¯ake´sa Vatsa", "Vats, Rakesh", "Rakesh Vats", "Vatsa, Rakesh", "Rakesh Vatsa"], "authorized_access_point": "Vatsa, R¯ake´sa, 1941-....", "biographical_information": ["Translittération ALA-LC", "Écrivain indien d'expression hindi"]} 1 +2024-09-11 09:04:27.806839 2024-09-11 09:04:27.806843 0f58e904-5d17-4798-b111-e328e2c266ab {"md5": "102e2b3e5b4305d33b8acf245d00917c", "pid": "092098649", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/092098649", "source": "IDREF"}], "preferred_name": "Dumurgier, Hervé", "country_associated": "fr", "authorized_access_point": "Dumurgier, Hervé", "biographical_information": ["Chargé d'études au CERTU. (en 2005)"]} 1 +2024-09-11 09:04:27.861434 2024-09-11 09:04:27.861438 90a0b00f-75e1-4c53-a675-a99814f67951 {"md5": "b53636187d0a8eb1c65d21ea77cb4495", "pid": "092124356", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/092124356", "source": "IDREF"}], "preferred_name": "Fronsac, Henri", "authorized_access_point": "Fronsac, Henri"} 1 +2024-09-11 09:04:27.920868 2024-09-11 09:04:27.920873 8dd92bd4-3644-43b1-9c36-15afc997d323 {"md5": "71dc637086ce5c5c56648e94a4a1de4d", "pid": "092149561", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/092149561", "source": "IDREF"}], "preferred_name": "Starck, Marie", "country_associated": "fr", "authorized_access_point": "Starck, Marie", "biographical_information": ["Titulaire d'un diplôme d'Etat de sage-femme"]} 1 +2024-09-11 09:04:27.972094 2024-09-11 09:04:27.972097 41681a83-2836-440a-8bb6-3254c19f8c54 {"md5": "b7e2ecf2efe10f6ba3829ad0de3325f8", "pid": "092241549", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["tur"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/092241549", "source": "IDREF"}], "preferred_name": "Hançerlioglu, Orhan", "country_associated": "tu", "authorized_access_point": "Hançerlioglu, Orhan", "biographical_information": ["Romancier turc"]} 1 +2024-09-11 09:04:28.027506 2024-09-11 09:04:28.02751 1bb7609f-a430-466f-aff1-ff25f25f770d {"md5": "947a16e20abe52ffd922d43027bbecf6", "pid": "092249760", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/092249760", "source": "IDREF"}], "preferred_name": "Haberzettl, Anneliese", "country_associated": "fr", "authorized_access_point": "Haberzettl, Anneliese", "biographical_information": ["A présenté et soutenu publiquement sa thèse le 13 novembre 1961 devant la Faculté de pharmacie de Strasbourg pour obtenir le titre de Docteur de l'Université (mention : Pharmacie)"]} 1 +2024-09-11 09:04:30.199415 2024-09-11 09:04:30.19942 620fa301-9e07-4c2d-9e46-df9a94a7a545 {"md5": "e187db678e8fd3e49b17697f5ce505b9", "pid": "101283407", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/101283407", "source": "IDREF"}], "preferred_name": "Lacalamita, Michele", "country_associated": "it", "authorized_access_point": "Lacalamita, Michele"} 1 +2024-09-11 09:04:28.079977 2024-09-11 09:04:28.07998 8d15ab9e-8796-4ff3-ada5-bf5750642214 {"md5": "baa84fd9b8feedacf1888f81c55da8b5", "pid": "092359116", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/092359116", "source": "IDREF"}], "variant_name": ["Matsen, Bradford"], "date_of_birth": "19XX", "preferred_name": "Matsen, Brad", "country_associated": "xxu", "variant_access_point": ["Matsen, Bradford"], "authorized_access_point": "Matsen, Brad, 19..-....", "biographical_information": ["Auteur, documentariste et photographe. Auteur de \\"Titanic's last secrets\\", \\"Descent : the heroic discovery of the abyss\\",.. et de nombreux articles sur les sciences marines. Réalisateur pour la télévision de \\"The shape of life\\""]} 1 +2024-09-11 09:04:28.141573 2024-09-11 09:04:28.141578 b45d4ba1-fc79-4434-b2c0-d1085a9e116f {"md5": "c10a91760d1ca67c6e8490802e9de309", "pid": "092613314", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/092613314", "source": "IDREF"}], "date_of_birth": "1947", "preferred_name": "Weaving, Rachel", "country_associated": "xxu", "authorized_access_point": "Weaving, Rachel, 1947-...."} 1 +2024-09-11 09:04:28.202219 2024-09-11 09:04:28.202223 47c8092b-4a5c-49e0-b37f-44a8c4685218 {"md5": "d140c71aeb7fca317cfae9a65df2fc9d", "pid": "092699987", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/092699987", "source": "IDREF"}], "preferred_name": "Clouard, Chantal", "country_associated": "fr", "authorized_access_point": "Clouard, Chantal", "biographical_information": ["Orthophoniste (en 2005). Docteur en psychologie, psychanalyste (en 2019)"]} 1 +2024-09-11 09:04:28.25512 2024-09-11 09:04:28.255126 15c0a812-b4ad-4ee4-8bf8-0603d5686e56 {"md5": "c3be2464d09c57a01add60c79ebf5670", "pid": "092726542", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/092726542", "source": "IDREF"}], "preferred_name": "UMass/INAOE Conference", "country_associated": "xxu", "authorized_access_point": "UMass/INAOE Conference (1st ; 2000 ; Amherst, Mass.Etats-Unis)"} 1 +2024-09-11 09:04:28.308523 2024-09-11 09:04:28.308526 2e86296d-47ac-4cbb-bec0-4bf89898c2b5 {"md5": "264dd9261df5196bce8bf87ccfd2c39c", "pid": "092792642", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/092792642", "source": "IDREF"}], "variant_name": ["Pujol, Albert Ribas"], "preferred_name": "Ribas Pujol, Albert", "country_associated": "sp", "variant_access_point": ["Pujol, Albert Ribas"], "authorized_access_point": "Ribas Pujol, Albert", "biographical_information": ["Traduit du catalan en espagnol"]} 1 +2024-09-11 09:04:28.363039 2024-09-11 09:04:28.363043 5ad9761f-e053-4f8a-86bc-00baf7aae37d {"md5": "23afe991936799ce7c890c3495d837a2", "pid": "092846653", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/092846653", "source": "IDREF"}], "preferred_name": "Jorgensen, James H.", "country_associated": "xxu", "authorized_access_point": "Jorgensen, James H.", "biographical_information": ["Professeur de pathologie, medecine, microbiologie et membre du laboratoire de sciences cliniques à l'universsité du Texas aux Etats-Unis. Directeur du laboratoire de microbiologie à l'université de San Antonio aux Etats-Unis (en 2004)"]} 1 +2024-09-11 09:04:28.420053 2024-09-11 09:04:28.420058 b98ca39b-2db8-478e-8c90-be30e9a9e8a5 {"md5": "7dd77b6e6fbd3859f4ae2ad5ddbe0720", "pid": "093834470", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/093834470", "source": "IDREF"}], "preferred_name": "Murch, Susan J.", "country_associated": "xxu", "authorized_access_point": "Murch, Susan J.", "biographical_information": ["Membre de : Institute for ethnobotany, National tropical botanical garden, Kauai, Hawaii (en 2005)"]} 1 +2024-09-11 09:04:28.474296 2024-09-11 09:04:28.4743 f18033d8-efb6-47bd-9393-75cf87276fa4 {"md5": "c544ac63a0df5dd3d32ea17b31e26012", "pid": "09396997X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["hau"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/09396997X", "source": "IDREF"}], "variant_name": ["Gamji, Tukur Mahmood"], "date_of_birth": "1976-03-13", "preferred_name": "Gamji, Tukur Mahmud", "country_associated": "nr", "variant_access_point": ["Gamji, Tukur Mahmood"], "authorized_access_point": "Gamji, Tukur Mahmud, 1976-...."} 1 +2024-09-11 09:04:28.530797 2024-09-11 09:04:28.530803 42be478a-3501-4898-94d0-51531d9dcec5 {"md5": "6b67f7fd41fc26b6bd5874204a7fbde9", "pid": "094133344", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/094133344", "source": "IDREF"}], "date_of_birth": "1977-04-08", "preferred_name": "Meaux, Caroline", "country_associated": "fr", "authorized_access_point": "Meaux, Caroline, 1977-...."} 1 +2024-09-11 09:04:28.591404 2024-09-11 09:04:28.591408 e418f4f6-e0da-4220-b412-e0b7c6e60095 {"md5": "e04e786213e3626d8ba102425e2ebef6", "pid": "094225230", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/094225230", "source": "IDREF"}], "date_of_birth": "1970", "preferred_name": "Gberie, Lansana", "country_associated": "gh", "authorized_access_point": "Gberie, Lansana, 1970-....", "biographical_information": ["Chercheur au \\"Kofi Annan International Peacekeeping Training Centre\\" , Ghana. Collabore à la revue \\"Africa Week\\", (en 2005)."]} 1 +2024-09-11 09:04:28.645346 2024-09-11 09:04:28.645351 57cf6bf4-c949-46af-b54b-e676bbac4b60 {"md5": "d62d35bef50f001881aabaf7ff9b980e", "pid": "09433434X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/09433434X", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Hadden, Don.", "country_associated": "xx", "authorized_access_point": "Hadden, Don., 19..-....", "biographical_information": ["Ornithologue, photographe, enseignant en poste : Middleton Grange School"]} 1 +2024-09-11 09:04:28.701484 2024-09-11 09:04:28.701489 76689de2-cc56-4f4d-9c8e-0f16fcd580ce {"md5": "51d334d77510484112754eb2a6dbad16", "pid": "094460922", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/094460922", "source": "IDREF"}], "date_of_birth": "1929-09-11", "preferred_name": "Jakoby, Richard", "country_associated": "gw", "authorized_access_point": "Jakoby, Richard, 1929-....", "biographical_information": ["Écrit aussi en anglais", "Musicologue. Critique musical et théâtral. Professeur à l'Université de Hanovre, Allemagne (en 1990). Critique musical et théâtral. Collabore à de nombreuses émissions radiophoniques. Président honoraire du Conseil de la musique allemand"]} 1 +2024-09-11 09:04:28.820234 2024-09-11 09:04:28.82024 daa88aac-6e63-4f41-b840-4ed39be7a1ff {"md5": "d50a134555ccd82aba37a39f3d63a6b7", "pid": "094648980", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/094648980", "source": "IDREF"}], "variant_name": ["Gustav Lübcke Museum (Hamm, Allemagne)", "Gustav-Lübcke-Museum Hamm", "Lübcke-Museum (Hamm, Allemagne)", "Städtisches Gustav-Lübcke-Museum (Hamm, Allemagne)"], "preferred_name": "Gustav-Lübcke-Museum (Hamm, Allemagne)", "country_associated": "gw", "variant_access_point": ["Gustav Lübcke Museum (Hamm, Allemagne)", "Gustav-Lübcke-Museum Hamm", "Lübcke-Museum (Hamm, Allemagne)", "Städtisches Gustav-Lübcke-Museum (Hamm, Allemagne)"], "authorized_access_point": "Gustav-Lübcke-Museum (Hamm, Allemagne)", "biographical_information": ["Adresse : Neue Bahnhofstrasse 9, 59065 Hamm"]} 1 +2024-09-11 09:04:28.884639 2024-09-11 09:04:28.884643 5f4e89fd-76da-45d8-bc30-4ae68f47e767 {"md5": "36f52c25df204db5c3ed4c95cb9af552", "pid": "095038426", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/095038426", "source": "IDREF"}], "preferred_name": "Mouché, Maman dan", "country_associated": "ng", "authorized_access_point": "Mouché, Maman dan", "biographical_information": ["Anthropologue (en 1968)"]} 1 +2024-09-11 09:04:28.946609 2024-09-11 09:04:28.946613 d4e40737-ef79-409c-8575-a99e8fdce720 {"md5": "076e3bb383a9b529a476383361eef3ab", "pid": "095087044", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/095087044", "source": "IDREF"}], "date_of_birth": "1977-05-10", "preferred_name": "Pires, Virginie", "country_associated": "fr", "authorized_access_point": "Pires, Virginie, 1977-....", "biographical_information": ["Née le 10 mai 1977 à Paris XIV (75, France). Thèse déposée à la Bibliothèque universitaire Necker"]} 1 +2024-09-11 09:04:28.999628 2024-09-11 09:04:28.999634 287a19e8-d3c4-417c-9490-3a4dff13fda8 {"md5": "2386fc53b34f250c87abcdedc13b1fd1", "pid": "09512795X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/09512795X", "source": "IDREF"}], "variant_name": ["Rencontre interuniversitaire du programme universitaire ANPAZ"], "preferred_name": "Encuentro Interuniversitario del Programa de la Universidad de los Andes para la Paz (ANPAZ)", "country_associated": "ck", "variant_access_point": ["Rencontre interuniversitaire du programme universitaire ANPAZ (1 ; 1995 ; Bogotá, Colombie)"], "date_of_establishment": "1995", "authorized_access_point": "Encuentro Interuniversitario del Programa de la Universidad de los Andes para la Paz (ANPAZ) (1 ; 1995 ; Bogotá, Colombie)"} 1 +2024-09-11 09:04:29.057793 2024-09-11 09:04:29.057797 5171d4c2-d559-464e-a475-47c51533db7c {"md5": "d061f0b416fa12b0bebd18ee1c97a660", "pid": "095171738", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/095171738", "source": "IDREF"}], "variant_name": ["Kunstverein (Ludwigshafen am Rhein, Allemagne)"], "preferred_name": "Kunstverein (Ludwigshafen, Allemagne)", "country_associated": "gw", "variant_access_point": ["Kunstverein (Ludwigshafen am Rhein, Allemagne)"], "authorized_access_point": "Kunstverein (Ludwigshafen, Allemagne)"} 1 +2024-09-11 09:04:29.112866 2024-09-11 09:04:29.11287 fd92f6a9-ad28-4450-9854-3b9d744a462b {"md5": "fd1b80ff2f640250f62874e193c16845", "pid": "095227415", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["bur"], "qualifier": "Moṅʿ", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/095227415", "source": "IDREF"}], "variant_name": ["Kabyā charā Moṅʿ Khuiṅʿ Mā", "Kraññʿ Khuiṅʿ", "Moṅʿ Khuiṅʿ Mā"], "date_of_birth": "1943", "date_of_death": "2004-10-16", "preferred_name": "Khuiṅʿ Mā, Moṅʿ", "country_associated": "br", "variant_access_point": ["Kabyā charā Moṅʿ Khuiṅʿ Mā", "Kraññʿ Khuiṅʿ", "Moṅʿ Khuiṅʿ Mā"], "authorized_access_point": "Khuiṅʿ Mā, 1943-2004, Moṅʿ", "biographical_information": ["Translittération ALA-LC", "Poète"]} 1 +2024-09-11 09:04:29.168152 2024-09-11 09:04:29.168157 17cb17a9-2ef5-4380-925f-05b03b0a1913 {"md5": "55b54278b40772f2567aa62b7a92df8c", "pid": "095344691", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/095344691", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Shilstone, Arthur", "country_associated": "xxu", "authorized_access_point": "Shilstone, Arthur, 19..-....", "biographical_information": ["Illustrateur"]} 1 +2024-09-11 09:04:29.221992 2024-09-11 09:04:29.221997 3ce1b20e-2b25-4b6f-adaf-854093a099b3 {"md5": "fdf2bdd4fe1863db08e191c1406454b3", "pid": "09564766X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/09564766X", "source": "IDREF"}], "date_of_birth": "1905", "preferred_name": "Fisher, Jacob", "authorized_access_point": "Fisher, Jacob, 1905-...."} 1 +2024-09-11 09:04:29.28178 2024-09-11 09:04:29.281783 f1b2f845-cdc3-4331-9f03-b38456d2d33a {"md5": "c077a853581432e19479c1a21afcce8f", "pid": "095775757", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/095775757", "source": "IDREF"}], "date_of_birth": "1977-01-02", "preferred_name": "Galanopoulos, Philippe", "country_associated": "fr", "authorized_access_point": "Galanopoulos, Philippe, 1977-....", "biographical_information": ["Docteur en histoire (Université de Versailles-St Quentin en Yvelines, 2005)", "Diplôme d'archiviste paléographe (École nationale des chartes, 2009)", "Diplôme de conservateur des bibliothèques (École nationale supérieure des sciences de l'information et des bibliothèques, 2010)", "Directeur de la Bibliothèque de la Cour de cassation (Paris) [depuis le 01/11/2015]", "Conservateur à la Bibliothèque interuniversitaire de Santé (Paris), Pôle Pharmacie-biologie-cosmétologie (2011-2015)"]} 1 +2024-09-11 09:04:29.345496 2024-09-11 09:04:29.345501 12c4e730-bdc2-4950-80c3-0bce5a8152b4 {"md5": "a5e7bda479ebd2cb063dc6e19e362f1b", "pid": "095813225", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/095813225", "source": "IDREF"}], "variant_name": ["Jiménez, Marino Poves"], "preferred_name": "Poves Jiménez, Marino", "country_associated": "sp", "variant_access_point": ["Jiménez, Marino Poves"], "authorized_access_point": "Poves Jiménez, Marino"} 1 +2024-09-11 09:04:31.096908 2024-09-11 09:04:31.096912 6346df85-72e9-44b8-8c62-6d08788d50f3 {"md5": "c1ec50d48ed1171f3fe28972804e0237", "pid": "103613838", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["swa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/103613838", "source": "IDREF"}], "preferred_name": "Mahimbali, Renatus", "country_associated": "tz", "authorized_access_point": "Mahimbali, Renatus"} 1 +2024-09-11 09:04:29.400185 2024-09-11 09:04:29.40019 b77c4fb0-67b7-4231-9e8a-9faf7c5c328d {"md5": "2d5b9e3125c53ae6924206737a314d84", "pid": "095998160", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/095998160", "source": "IDREF"}], "preferred_name": "Sache, Ivan", "country_associated": "fr", "authorized_access_point": "Sache, Ivan", "biographical_information": ["Directeur de thèse. Chargé de recherche INRA - Versailles-Grignon - UMR207 Pathologie végétale et épidémiologie"]} 1 +2024-09-11 09:04:29.455265 2024-09-11 09:04:29.455269 9acfd197-37bc-437b-a303-113667ccdd62 {"md5": "f5b0ccbbd15416049ccf2fa7c8ab2f73", "pid": "096644389", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/096644389", "source": "IDREF"}], "preferred_name": "Cogotti, Marina", "authorized_access_point": "Cogotti, Marina", "biographical_information": ["Architecte"]} 1 +2024-09-11 09:04:29.524147 2024-09-11 09:04:29.524153 095c59af-70b1-4a65-a4c7-1da9c5af318b {"md5": "49b57e739cd92ed784fdfac05377e171", "pid": "09715010X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/09715010X", "source": "IDREF"}], "date_of_birth": "1916", "date_of_death": "1996", "preferred_name": "Heseltine, Nigel", "country_associated": "ie", "authorized_access_point": "Heseltine, Nigel, 1916-1996"} 1 +2024-09-11 09:04:29.582139 2024-09-11 09:04:29.582142 12da50a4-b28b-4e90-87c2-4f9fc5ae166f {"md5": "b9bf8a4daabc5af7e50dfbe11cdfba1a", "pid": "097502146", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/097502146", "source": "IDREF"}], "variant_name": ["Gratz College (Philadelphie, Pa.). Archives sur l'histoire orale de l'Holocaost"], "preferred_name": "Gratz College (Philadelphia, Pa.). Holocaust Oral History Archive", "country_associated": "xxu", "variant_access_point": ["Gratz College (Philadelphie, Pa.). Archives sur l'histoire orale de l'Holocaost"], "authorized_access_point": "Gratz College (Philadelphia, Pa.). Holocaust Oral History Archive"} 1 +2024-09-11 09:04:29.639965 2024-09-11 09:04:29.639969 d288374c-7a2f-440b-81eb-6d00a0b26d53 {"md5": "f89d055f548d739e1bf3a43d3b71be3b", "pid": "097587222", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/097587222", "source": "IDREF"}], "variant_name": ["Durieu, Louis"], "date_of_birth": "1863", "date_of_death": "19XX", "preferred_name": "Blum, Eugène", "country_associated": "fr", "variant_access_point": ["Durieu, Louis"], "authorized_access_point": "Blum, Eugène, 1863-19..", "biographical_information": ["Professeur au lycée de Lyon, agrége de philosophie"]} 1 +2024-09-11 09:04:29.694395 2024-09-11 09:04:29.694399 40413606-7668-4d0f-a33e-e50446713abc {"md5": "27d8b1afe33a008396ca7b348efb454a", "pid": "09794226X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/09794226X", "source": "IDREF"}], "preferred_name": "Gremio nacional dos editores e livreiros", "authorized_access_point": "Gremio nacional dos editores e livreiros"} 1 +2024-09-11 09:04:29.756513 2024-09-11 09:04:29.756518 e8a0deb3-96d3-4ef5-b41d-cf523bf32fd4 {"md5": "49a57b02934244bcea0590c50733ee50", "pid": "098214381", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/098214381", "source": "IDREF"}], "date_of_birth": "1968", "preferred_name": "Koubaa, Bart", "country_associated": "ne", "authorized_access_point": "Koubaa, Bart, 1968-...."} 1 +2024-09-11 09:04:29.817274 2024-09-11 09:04:29.817278 c6b74c59-a0b9-49e5-b63e-3c8c68bd5ce0 {"md5": "4d455f24670291eb18df03e533e4f669", "pid": "098413406", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/098413406", "source": "IDREF"}], "preferred_name": "Csiba, Laszlo", "authorized_access_point": "Csiba, Laszlo"} 1 +2024-09-11 09:04:29.876302 2024-09-11 09:04:29.876307 7c193b46-d149-496e-8a3f-b6f98c41a9b7 {"md5": "340b6327b3a7d2055df9beedca3a8797", "pid": "09883312X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/09883312X", "source": "IDREF"}], "preferred_name": "Zuschlag, Eckhard", "country_associated": "gw", "authorized_access_point": "Zuschlag, Eckhard", "biographical_information": ["Juriste"]} 1 +2024-09-11 09:04:29.937319 2024-09-11 09:04:29.937324 8c917dfe-eb13-4bd9-ad0e-205051f29f4a {"md5": "87ac57c24f32a3f8f4b00407b95e2003", "pid": "100484522", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/100484522", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Waton, Hugues", "country_associated": "fr", "authorized_access_point": "Waton, Hugues, 19..-...."} 1 +2024-09-11 09:04:30.0136 2024-09-11 09:04:30.013604 772c6769-864d-40a1-84fa-75154f2a0e83 {"md5": "7fcca759f7fa51021683b7308cb163ce", "pid": "100570453", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/100570453", "source": "IDREF"}], "variant_name": ["Nouvelles Hébrides. Geological Survey Department", "Nouvelles Hébrides. Geological Survey"], "preferred_name": "Geological Survey (Nouvelles Hébrides)", "variant_access_point": ["Nouvelles Hébrides. Geological Survey Department", "Nouvelles Hébrides. Geological Survey"], "authorized_access_point": "Geological Survey (Nouvelles Hébrides)"} 1 +2024-09-11 09:04:30.07115 2024-09-11 09:04:30.071154 4a5e292a-8e85-4b86-b59a-1bfa9a89bd96 {"md5": "a80dcf9f8f147ca287b920849abbf61c", "pid": "100930778", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/100930778", "source": "IDREF"}], "preferred_name": "Congrès international de langue et littérature du midi de la France", "country_associated": "fr", "date_of_termination": "1955-09-11", "date_of_establishment": "1955-09-07", "authorized_access_point": "Congrès international de langue et littérature du midi de la France (1 ; 1955 ; Avignon)"} 1 +2024-09-11 09:04:30.13085 2024-09-11 09:04:30.130852 6bfdb5eb-2f7e-4916-83a3-56fdf04954af {"md5": "9e0399b83c5453964fa1342d60bc54e1", "pid": "101023235", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/101023235", "source": "IDREF"}], "date_of_birth": "1897", "preferred_name": "Killough, Lucy Winsor", "authorized_access_point": "Killough, Lucy Winsor, 1897"} 1 +2024-09-11 09:04:30.267406 2024-09-11 09:04:30.267411 48b8d67f-a6c5-4619-a4c2-0e45ff75759e {"md5": "e77823000268db314d754171889d8ec8", "pid": "101346654", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/101346654", "source": "IDREF"}], "variant_name": ["Skinner, Roy"], "preferred_name": "Skinner, Roy E.", "country_associated": "at", "variant_access_point": ["Skinner, Roy"], "authorized_access_point": "Skinner, Roy E.", "biographical_information": ["Représentant des Nations-Unies dans la zone Moyen-Orient"]} 1 +2024-09-11 09:04:30.330112 2024-09-11 09:04:30.330116 17909ef8-914a-41dd-a6b6-feb7cac2e288 {"md5": "9c508d2cfa6f06183325129e1fb453fe", "pid": "101397321", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/101397321", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Risebro, Nils Henrik", "country_associated": "no", "authorized_access_point": "Risebro, Nils Henrik, 19..-....", "biographical_information": ["Mathématicien. En poste : Department of mathematics, University of Oslo (en 2002)"]} 1 +2024-09-11 09:04:30.395885 2024-09-11 09:04:30.395889 d36d6628-47d8-48a6-9849-aedf6853b2df {"md5": "7d5058ee5c97640e39dca4bda6f3ce08", "pid": "101448597", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/101448597", "source": "IDREF"}], "date_of_birth": "1974-08-31", "preferred_name": "Déflacieux, Martial", "country_associated": "fr", "authorized_access_point": "Déflacieux, Martial", "biographical_information": ["Fait partie de l' association \\"Volksystem.cie\\", dont l' objet est l' organisation de programmes culturels.", "Auteur d'une thèse en Histoire et histoire de l'art à l'Université Clermont Auvergne‎ (2017-2020) en 2020"]} 1 +2024-09-11 09:04:30.46663 2024-09-11 09:04:30.466636 0d7214e7-9282-453f-81b2-c4e284ac33ef {"md5": "06f280d305e5f804df6eb5de7d06c929", "pid": "102076855", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/102076855", "source": "IDREF"}], "variant_name": ["Ittersum, Martine Julia van"], "date_of_birth": "1968", "preferred_name": "Van Ittersum, Martine Julia", "country_associated": "ne", "variant_access_point": ["Ittersum, Martine Julia van"], "authorized_access_point": "Van Ittersum, Martine Julia, 1968-...."} 1 +2024-09-11 09:04:30.522772 2024-09-11 09:04:30.522776 23fb4e6a-b3c6-45bc-b4a3-bd801c9714c5 {"md5": "bf4e73d69ee7c8530342a13b019505a4", "pid": "102129150", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/102129150", "source": "IDREF"}], "preferred_name": "Linder, Paul", "country_associated": "fr", "authorized_access_point": "Linder, Paul"} 1 +2024-09-11 09:04:30.595396 2024-09-11 09:04:30.5954 96d3aeb3-9cee-4d98-8ec3-379f123896b6 {"md5": "689b63b1a48e3197135c303dfc8a88a2", "pid": "102522170", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/102522170", "source": "IDREF"}], "date_of_birth": "1982-12-14", "preferred_name": "Arcin, Christophe", "country_associated": "fr", "authorized_access_point": "Arcin, Christophe, 1982-....", "biographical_information": ["Titulaire d'une thèse d'exercice en Pharmacie (Lyon 1, 2006)"]} 1 +2024-09-11 09:04:30.707365 2024-09-11 09:04:30.707368 e283488b-19f0-4b4a-b3c7-a35789b0f53d {"md5": "61426bef2e8cb7590817672914735b3a", "pid": "102616221", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/102616221", "source": "IDREF"}], "preferred_name": "Moulik, T.K.", "country_associated": "xx", "authorized_access_point": "Moulik, T.K."} 1 +2024-09-11 09:04:30.773429 2024-09-11 09:04:30.773432 495ff110-4bee-45a8-9f8d-faf6d87bad88 {"md5": "1fe46a6a8cc754fad3edd3d2786af344", "pid": "103208348", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/103208348", "source": "IDREF"}], "variant_name": ["Benítez, Eva María Gil"], "preferred_name": "Gil Benítez, Eva María", "country_associated": "sp", "variant_access_point": ["Benítez, Eva María Gil"], "authorized_access_point": "Gil Benítez, Eva María", "biographical_information": ["En poste : Universidad de Málaga, Espagne (en 2002)"]} 1 +2024-09-11 09:04:30.838674 2024-09-11 09:04:30.83868 d402372f-52f5-4a40-9ffa-b69e424c3955 {"md5": "af6e697f644a0f1f933db79c2e844a95", "pid": "103396063", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/103396063", "source": "IDREF"}], "preferred_name": "Preisser, Michaël", "country_associated": "gw", "authorized_access_point": "Preisser, Michaël", "biographical_information": ["Professeur à l'université de Lüneburg. Expert fiscal à Hamburg"]} 1 +2024-09-11 09:04:30.9099 2024-09-11 09:04:30.909904 25671ed9-b739-4c64-b7e4-6231b927f5df {"md5": "45ccdf4d0ea730091c5af8817423146d", "pid": "103540695", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/103540695", "source": "IDREF"}], "date_of_birth": "1975-03-15", "preferred_name": "Saïdi, Samir", "authorized_access_point": "Saïdi, Samir, 1975-....", "biographical_information": ["Thèse de doctorat en Physique soutenue en 2005 à l' Université de Paris 6"]} 1 +2024-09-11 09:04:30.971323 2024-09-11 09:04:30.971327 7f75e18b-04a5-47bc-b81a-590dd133b179 {"md5": "de50f8b7bf73dc9a7dd62f00d788695e", "pid": "103578560", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ara"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/103578560", "source": "IDREF"}], "variant_name": ["Muḥammad Tawfīq Ṣādiq"], "date_of_birth": "1931", "preferred_name": "Ṣādiq, Muḥammad Tawfīq", "variant_access_point": ["Muḥammad Tawfīq Ṣādiq"], "authorized_access_point": "Ṣādiq, Muḥammad Tawfīq, 1931-", "biographical_information": ["Spécialiste de l'administration et de la planification dans les pays du Golfe ; conseiller à l'Institut koweitien de la Planification ."]} 1 +2024-09-11 09:04:31.039285 2024-09-11 09:04:31.039289 c6c844f8-9ed5-44f8-9af3-5ebddd3c1e98 {"md5": "bcf49903eb4c4d55bc2c49e6a756c6c3", "pid": "10359342X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/10359342X", "source": "IDREF"}], "date_of_birth": "1969-04-11", "preferred_name": "Federspiel, Valérie", "country_associated": "fr", "authorized_access_point": "Federspiel, Valérie, 1969-....", "biographical_information": ["Titulaire d' une thèse d' exercice de médecine soutenue à Caen le 29 mars 2006"]} 1 +2024-09-11 09:04:31.154347 2024-09-11 09:04:31.154352 2ab9ed84-9088-496e-b939-b4ee70a69362 {"md5": "3cc129d1906e494b6316f57e4d9a40c2", "pid": "10368607X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/10368607X", "source": "IDREF"}], "variant_name": ["Ivanova, Li︠u︡dmila Vladimirovna"], "preferred_name": "Ivanova, Lûdmila Vladimirovna", "country_associated": "ru", "variant_access_point": ["Ivanova, Li︠u︡dmila Vladimirovna"], "authorized_access_point": "Ivanova, Lûdmila Vladimirovna"} 1 +2024-09-11 09:04:31.221537 2024-09-11 09:04:31.221541 543ad314-cf30-4a0d-a2e6-6214210e0fde {"md5": "02434e41636f6462c7ca034b83ec8a0f", "pid": "103835458", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/103835458", "source": "IDREF"}], "date_of_birth": "1975-12-19", "preferred_name": "Bergeron, Nicolas", "country_associated": "fr", "authorized_access_point": "Bergeron, Nicolas, 1975-....", "biographical_information": ["Ecrit également sous le pseudonyme collectif Henri Paul de Saint-Gervais", "Mathématicien. Professeur des universités en poste à Sorbonne Université (en 2020)"]} 1 +2024-09-11 09:04:31.279746 2024-09-11 09:04:31.279748 ec1aeda5-35da-49a0-8e36-020efecbe9f0 {"md5": "6f9f8e95db4291668b4d5ba19ca33ead", "pid": "103919511", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/103919511", "source": "IDREF"}], "preferred_name": "Branden, Elsa", "country_associated": "xx", "authorized_access_point": "Branden, Elsa"} 1 +2024-09-11 09:04:31.344779 2024-09-11 09:04:31.344784 1c6cc816-9631-43ab-9604-09a23caf65d4 {"md5": "866a44547746d9cc56beac5b6a6882ed", "pid": "104444126", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/104444126", "source": "IDREF"}], "variant_name": ["Séminaire européen de géographie de l'eau", "Séminaire européen sur la géographie de l'eau"], "preferred_name": "Séminaire européen de géographie sur l'eau", "country_associated": "fr", "date_of_termination": "1995-09-16", "variant_access_point": ["Séminaire européen de géographie de l'eau (02 ; 1995 ; Saint-Victor-sur-Loire, Loire)", "Séminaire européen sur la géographie de l'eau (02 ; 1995 ; Saint-Victor-sur-Loire, Loire)"], "date_of_establishment": "1995-09-10", "authorized_access_point": "Séminaire européen de géographie sur l'eau (02 ; 1995 ; Saint-Victor-sur-Loire, Loire)"} 1 +2024-09-11 09:04:31.399388 2024-09-11 09:04:31.399391 12d33e2b-a33d-4920-a45b-ba3d1d1793c1 {"md5": "46708c06cccd9a98abc61f2da22a5d88", "pid": "104506830", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/104506830", "source": "IDREF"}], "preferred_name": "Gaston, Marguerite", "country_associated": "fr", "authorized_access_point": "Gaston, Marguerite", "biographical_information": ["Titulaire d'un doctorat en Art et archéologie (Toulouse 2, 1970)"]} 1 +2024-09-11 09:04:31.456945 2024-09-11 09:04:31.456948 6271711b-199e-4d78-b496-69b0b3bbe28b {"md5": "1f2d84f419656d8866231b6cf3042fe4", "pid": "105998168", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/105998168", "source": "IDREF"}], "preferred_name": "Tayui, Riuzaburo", "authorized_access_point": "Tayui, Riuzaburo"} 1 +2024-09-11 09:04:31.512924 2024-09-11 09:04:31.512927 bdd28440-9f12-4cbe-b4ed-b086e5343c88 {"md5": "2248c39ffcdfebe7b5c34dace38fd58e", "pid": "106028723", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/106028723", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Grosclaude, Elodie", "country_associated": "fr", "authorized_access_point": "Grosclaude, Elodie, 19..-....", "biographical_information": ["Diplômée en art-thérapie (Tours, 2005)"]} 1 +2024-09-11 09:04:31.572241 2024-09-11 09:04:31.572246 f3bfdc80-0a4d-42c9-86c1-ebc2f10e35ff {"md5": "a0ffb510a3e71cf4e1a67b8666335cc0", "pid": "10694956X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["pol"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/10694956X", "source": "IDREF"}], "preferred_name": "Polskie Towarzystwo Gleboznawcze", "country_associated": "pl", "authorized_access_point": "Polskie Towarzystwo Gleboznawcze"} 1 +2024-09-11 09:04:31.628441 2024-09-11 09:04:31.628445 f25e129b-9d36-4128-9245-c80342b479b9 {"md5": "89ce9a58bbeed886092ad814d0ed4fcb", "pid": "106952587", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/106952587", "source": "IDREF"}], "variant_name": ["Laatikainen, Katie Verlin"], "date_of_birth": "1965", "preferred_name": "Verlin Laatikainen, Katie", "country_associated": "xx", "variant_access_point": ["Laatikainen, Katie Verlin"], "authorized_access_point": "Verlin Laatikainen, Katie, 1965-....", "biographical_information": ["Politologue", "Professeur au Department of Political Science, Adelphi University, Garden City, N.Y., USA (en 2006)"]} 1 +2024-09-11 09:04:31.688719 2024-09-11 09:04:31.688724 71eaa6bf-6ad3-4f85-a1ce-1688d32c0084 {"md5": "9e983794022bbebc88109336faa50753", "pid": "106968696", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/106968696", "source": "IDREF"}], "preferred_name": "Roëll, Paul", "country_associated": "gw", "authorized_access_point": "Roëll, Paul"} 1 +2024-09-11 09:04:31.743477 2024-09-11 09:04:31.743481 70892e2a-1336-4fab-a007-47e704d787fc {"md5": "c66fa9f580ab452a0fe59a5ea1edcc92", "pid": "107090538", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/107090538", "source": "IDREF"}], "date_of_birth": "1937", "preferred_name": "Richter, Werner", "authorized_access_point": "Richter, Werner, 1937-...."} 1 +2024-09-11 09:04:31.811177 2024-09-11 09:04:31.811181 dd836759-b136-4d1f-9812-0220623f610f {"md5": "c5eca8fbb787aee97285d1645371f429", "pid": "107702746", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/107702746", "source": "IDREF"}], "preferred_name": "Corbu, Adrien C.", "country_associated": "fr", "authorized_access_point": "Corbu, Adrien C.", "biographical_information": ["Diplômé de l' Ecole des Hautes Etudes internationales de Paris"]} 1 +2024-09-11 09:04:31.868679 2024-09-11 09:04:31.868684 fae56ce2-e881-47bc-a6e5-7cf9d123ca6a {"md5": "e28d53930a53d23a89537ef42e4454cb", "pid": "108090450", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/108090450", "source": "IDREF"}], "date_of_birth": "1914", "date_of_death": "1994", "preferred_name": "Cullen, Gordon", "country_associated": "xxk", "authorized_access_point": "Cullen, Gordon, 1914-1994", "biographical_information": ["Architecte et urbaniste britannique"]} 1 +2024-09-11 09:04:31.941697 2024-09-11 09:04:31.941702 903445d6-b455-49a4-9207-a06251bd6052 {"md5": "68efc3cf75565301ebfc37ad849dc253", "pid": "108093875", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/108093875", "source": "IDREF"}], "date_of_birth": "1974", "preferred_name": "Albrecht, Joachim", "country_associated": "gw", "authorized_access_point": "Albrecht, Joachim, 1974-...."} 1 +2024-09-11 09:04:32.014146 2024-09-11 09:04:32.014151 e518a63b-5967-4b74-af80-175d2c4228d6 {"md5": "3844f4ad3261ddd174d411924041318e", "pid": "108157873", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/108157873", "source": "IDREF"}], "date_of_birth": "1981-04-23", "preferred_name": "Savoye, Nancy", "country_associated": "fr", "authorized_access_point": "Savoye, Nancy, 1981-....", "biographical_information": ["Titulaire d'une thèse d'exercice en Médecine Vétérinaire (Lyon 1, 2006)"]} 1 +2024-09-11 09:04:32.076818 2024-09-11 09:04:32.076822 cf9fa940-c1c8-4a23-84a9-c672beb67d26 {"md5": "cc18503e3160de26eaee0c8e55751d62", "pid": "108462897", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/108462897", "source": "IDREF"}], "preferred_name": "Banca Popolare dell'Emilia Romagna (Modène, Italie)", "country_associated": "it", "date_of_establishment": "1867", "authorized_access_point": "Banca Popolare dell'Emilia Romagna (Modène, Italie)"} 1 +2024-09-11 09:04:32.130614 2024-09-11 09:04:32.130618 9f933e11-c8c8-48ad-ac5c-4533f7029ff1 {"md5": "e4b44ccae6196c2e9266ccd7b6c5a915", "pid": "108510638", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/108510638", "source": "IDREF"}], "date_of_birth": "1956-09-13", "preferred_name": "Jennex, Murray E.", "country_associated": "xxu", "authorized_access_point": "Jennex, Murray E., 1956-...."} 1 +2024-09-11 09:04:32.196476 2024-09-11 09:04:32.196479 e080a3e0-da98-4905-b9e9-9235bc7ae811 {"md5": "25700d4fadeb564fd05b5129c827f281", "pid": "10853961X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/10853961X", "source": "IDREF"}], "variant_name": ["Congrès international de sciences onomastiques"], "preferred_name": "Congrès international des sciences onomastiques", "date_of_termination": "1952-08-21", "variant_access_point": ["Congrès international de sciences onomastiques (4 ; 1952 ; Uppsala, Suède)"], "date_of_establishment": "1952-08-17", "authorized_access_point": "Congrès international des sciences onomastiques (04 ; 1952 ; Uppsala, Suède)"} 1 +2024-09-11 09:04:32.259941 2024-09-11 09:04:32.259946 98ddfd3f-e82e-480a-915f-466127d4c48f {"md5": "c502fef8c4adf855e5de7f06c226a517", "pid": "108882861", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/108882861", "source": "IDREF"}], "preferred_name": "Fundación española de historia moderna. Reunión científica", "country_associated": "sp", "authorized_access_point": "Fundación española de historia moderna. Reunión científica (6 ; 2000 ; Alcala de Henares, Espagne)"} 1 +2024-09-11 09:04:32.327533 2024-09-11 09:04:32.327537 5923ba39-9cb7-4808-9532-7a1ed3d6ce6e {"md5": "3473af9afbcd0f0df42fde1db31c47bd", "pid": "108960811", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/108960811", "source": "IDREF"}], "preferred_name": "Schouten, Matthijs G. C.", "country_associated": "ne", "authorized_access_point": "Schouten, Matthijs G. C."} 1 +2024-09-11 09:04:32.382466 2024-09-11 09:04:32.38247 a5d33c92-97f1-450c-8f21-176b6a8764d7 {"md5": "2e177a32b9fb6987327222f0b3b09f2b", "pid": "109075013", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["srp", "eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/109075013", "source": "IDREF"}], "preferred_name": "Ercegovac, Marko", "authorized_access_point": "Ercegovac, Marko", "biographical_information": ["Écrit aussi en anglais", "Géologue. En poste à la Serbian Academy of Sciences and Arts, Belgrade (en 2006)"]} 1 +2024-09-11 09:04:32.446043 2024-09-11 09:04:32.446048 17b17b5b-2423-4a4e-9527-e9bcb5c03788 {"md5": "a91d046643dffadced42ee6257f3a9f2", "pid": "109149327", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/109149327", "source": "IDREF"}], "variant_name": ["Horn, Charles N."], "preferred_name": "Horn, Charles Norman", "country_associated": "xxu", "variant_access_point": ["Horn, Charles N."], "authorized_access_point": "Horn, Charles Norman", "biographical_information": ["En poste au département de Biologie, Newberry College, USA (en 1994)"]} 1 +2024-09-11 09:04:32.513135 2024-09-11 09:04:32.51314 1630542c-3f11-41a7-b0d8-7536ec5c3961 {"md5": "14a8c1cc11a98c7765ffc92a0f0b1ae4", "pid": "109154746", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn", "eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/109154746", "source": "IDREF"}], "date_of_birth": "1963-10-23", "preferred_name": "Aoyagi, Hiroshi", "country_associated": "ja", "authorized_access_point": "Aoyagi, Hiroshi, 1963-", "biographical_information": ["Maître de conférence en anthropologie culturelle, Asia-Japan research center, Université Kokushikan, Tokyo"]} 1 +2024-09-11 09:04:32.573494 2024-09-11 09:04:32.573497 a98b6038-65a2-4f7b-bb9d-78808395b30a {"md5": "e1e43a93fcff06afa0eed04f26900334", "pid": "10935026X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/10935026X", "source": "IDREF"}], "preferred_name": "Jaeck, Mélanie", "country_associated": "fr", "authorized_access_point": "Jaeck, Mélanie", "biographical_information": ["Titulaite d'un mémoire de Master II Professionnel"]} 1 +2024-09-11 09:04:32.627548 2024-09-11 09:04:32.627551 e20cd651-f025-4e92-95cc-75d550be5127 {"md5": "5a6454e0949a49b6cb1930322a43a008", "pid": "110078810", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/110078810", "source": "IDREF"}], "preferred_name": "Hammarlund, Per A.", "authorized_access_point": "Hammarlund, Per A.", "biographical_information": ["Ph.D. de la London School of Economics. \\"Country risk researcher\\" dans une compagnie d'assurance de New York"]} 1 +2024-09-11 09:04:32.696295 2024-09-11 09:04:32.696312 3860cc2f-e680-432f-a73e-7fa6dce55f5e {"md5": "8598db0f796bda64c84b596d7e47d160", "pid": "110124596", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/110124596", "source": "IDREF"}], "date_of_birth": "1982-01-08", "preferred_name": "Lacroix, Damien", "country_associated": "fr", "authorized_access_point": "Lacroix, Damien, 1982-....", "biographical_information": ["Titulaire d'une thèse d'exercice de pharmacie (Limoges : 2006 ; 309)"]} 1 +2024-09-11 09:04:32.751473 2024-09-11 09:04:32.751476 3c088f99-fd0d-461e-ba40-401d096a1535 {"md5": "85e5a2903b64027d90182d7586c90591", "pid": "110124863", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/110124863", "source": "IDREF"}], "variant_name": ["Poolthupya, Srisurang"], "preferred_name": "Srisurang Poolthupya", "country_associated": "th", "variant_access_point": ["Poolthupya, Srisurang"], "authorized_access_point": "Srisurang Poolthupya", "biographical_information": ["Président du Thai P.E.N. Centre"]} 1 +2024-09-11 09:04:32.814097 2024-09-11 09:04:32.814106 a0a5feee-d3a1-4acf-8647-5c3fd42fe512 {"md5": "2e1a15724713546152e00f5f8dbcaaad", "pid": "11013253X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/11013253X", "source": "IDREF"}], "date_of_birth": "1980-04-13", "preferred_name": "Vioix, Hélène", "country_associated": "fr", "authorized_access_point": "Vioix, Hélène, 1980-...", "biographical_information": ["Auteur d'une thèse de : pharmacie, Université Paris-Sud 11, Châtenay-Malabry (en 2006)"]} 1 +2024-09-11 09:04:32.877209 2024-09-11 09:04:32.877213 9c722571-f1d0-412e-bd05-21d2c7ddc47a {"md5": "9eaca53b87c3150a6bd020492ecf8f63", "pid": "11015469X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/11015469X", "source": "IDREF"}], "variant_name": ["Brown, Daltas & Associates"], "preferred_name": "Brown, Daltas and associates - Architects", "variant_access_point": ["Brown, Daltas & Associates"], "authorized_access_point": "Brown, Daltas and associates - Architects", "biographical_information": ["Cabinet d'architectes"]} 1 +2024-09-11 09:04:32.935563 2024-09-11 09:04:32.935568 52b2e889-215a-46ee-b9ad-c7326b7edc00 {"md5": "687e9edb5f5211bac9955fba6582fc29", "pid": "110185366", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/110185366", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "184480418"}, "variant_name": ["小和田, 哲男"], "date_of_birth": "1944", "preferred_name": "Owada, Tetsuo", "country_associated": "ja", "variant_access_point": ["小和田, 哲男, 1944-"], "authorized_access_point": "Owada, Tetsuo, 1944-", "biographical_information": ["Professeur à l'Université de Shizuoka, Spécialist de l'histoire japonaise (en 2008)"]} 1 +2024-09-11 09:04:33.005961 2024-09-11 09:04:33.005964 e48734b5-4d50-40d6-a7e5-6a4f628f98a8 {"md5": "17c8bca034cfe924ed75ed3955bff0df", "pid": "110195019", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/110195019", "source": "IDREF"}], "preferred_name": "Société d'études paléontologiques et palethnographiques de Provence", "country_associated": "fr", "authorized_access_point": "Société d'études paléontologiques et palethnographiques de Provence"} 1 +2024-09-11 09:04:33.077239 2024-09-11 09:04:33.077243 e1c64dc8-0961-48a8-88b0-390410c828e9 {"md5": "dd4ff818a3b7dd3c44d36ffe12856286", "pid": "11020414X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/11020414X", "source": "IDREF"}], "preferred_name": "Hajatpour, Reza", "country_associated": "ir", "authorized_access_point": "Hajatpour, Reza"} 1 +2024-09-11 09:04:33.133725 2024-09-11 09:04:33.13373 f55ff661-3435-4cee-8b67-ce1045ac99f3 {"md5": "6c65bae70e5c3c346c9257cb98a2a763", "pid": "110240723", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["chi"], "qualifier": "acteur", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/110240723", "source": "IDREF"}], "date_of_birth": "1952-12-27", "date_of_death": "1997-11-08", "preferred_name": "Lam, Ching-Ying, acteur", "country_associated": "cc", "authorized_access_point": "Lam, Ching-Ying, 1952-1997, acteur", "biographical_information": ["Acteur"]} 1 +2024-09-11 09:04:33.195175 2024-09-11 09:04:33.195179 3122347c-57ad-493b-89d6-d61a04f43271 {"md5": "fc1eec6a2c25acf5aaa598a3ddc9051d", "pid": "110458087", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/110458087", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Davila, G. Willy", "country_associated": "xxu", "authorized_access_point": "Davila, G. Willy, 19..-...."} 1 +2024-09-11 09:04:33.267297 2024-09-11 09:04:33.267303 e2160e7d-a140-4e15-bd21-6ce3059f975f {"md5": "bcf4cfd101d73130c6732b637d6d3370", "pid": "110510631", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/110510631", "source": "IDREF"}], "variant_name": ["Colloques nationaux du Centre national de la recherche scientifique", "Colloque national de magnétisme", "CNRS. Colloque national"], "preferred_name": "Centre national de la recherche scientifique (France). Colloque national", "country_associated": "fr", "date_of_termination": "1957-07-10", "variant_access_point": ["Colloques nationaux du Centre national de la recherche scientifique (1957 ; Strasbourg)", "Colloque national de magnétisme (1957 ; Strasbourg)", "CNRS. Colloque national (1957 ; Strasbourg)"], "date_of_establishment": "1957-07-08", "authorized_access_point": "Centre national de la recherche scientifique (France). Colloque national (1957 ; Strasbourg)"} 1 +2024-09-11 09:04:33.338239 2024-09-11 09:04:33.338243 0e5f57bd-18bb-4c99-b8ab-7f1ae209820a {"md5": "5d7d72b7abffee3c0ce9be5a9b20ec00", "pid": "110591119", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/110591119", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Machtey, Michael", "country_associated": "xxu", "authorized_access_point": "Machtey, Michael, 19..-....", "biographical_information": ["Purdue University"]} 1 +2024-09-11 09:04:33.397237 2024-09-11 09:04:33.397242 49923eab-0b14-41d8-afac-a7fe4b70d65a {"md5": "dc9fa3c7cc02256ccc589ad10a950262", "pid": "110725476", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/110725476", "source": "IDREF"}], "preferred_name": "Turkel, Ann Ruth", "authorized_access_point": "Turkel, Ann Ruth", "biographical_information": ["Professeur en psychiatrie"]} 1 +2024-09-11 09:04:33.455385 2024-09-11 09:04:33.455387 a15fbe24-b885-4540-bc21-a89423035bcd {"md5": "f7072bc75e16fba323539320a9b59d7b", "pid": "110735714", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/110735714", "source": "IDREF"}], "preferred_name": "Žalinskij, Alʹfred Èrnestovič", "country_associated": "ru", "authorized_access_point": "Žalinskij, Alʹfred Èrnestovič"} 1 +2024-09-11 09:04:33.514175 2024-09-11 09:04:33.514179 854faf0b-3a7e-4d17-94da-c35a4cc085e3 {"md5": "ff344a7a0a2d352b459d4abf136d1249", "pid": "11114261X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/11114261X", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Zhang, Yongmin", "country_associated": "cc", "authorized_access_point": "Zhang, Yongmin, 19..-....", "biographical_information": ["Directeur de thèse à l'Université Pierre et Marie Curie - Paris 6 en 2005, 2011 et 2013. Directeur de recherche au CNRS. Laboratoire de Chimie de l'Ecole Normale Supérieure de Paris."]} 1 +2024-09-11 09:04:33.574704 2024-09-11 09:04:33.574708 9d71432e-6b14-45c1-8504-13a89e1da0fd {"md5": "481613dc5099370f9153c3269a68217e", "pid": "111315387", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/111315387", "source": "IDREF"}], "date_of_birth": "1982", "preferred_name": "Dufeu, Amélie", "authorized_access_point": "Dufeu, Amélie, 1982-...", "biographical_information": ["Docteur en pharmacie, 2006"]} 1 +2024-09-11 09:04:33.632321 2024-09-11 09:04:33.632326 cdb40753-81d9-45c1-a313-3823016fb67c {"md5": "f5b578d86b5b26359bf588b60f28bbc0", "pid": "111318459", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/111318459", "source": "IDREF"}], "date_of_birth": "1966", "preferred_name": "Greve, Michael", "country_associated": "gw", "authorized_access_point": "Greve, Michael, 1966-...."} 1 +2024-09-11 09:04:33.701908 2024-09-11 09:04:33.701912 dcfdf23e-e7fd-4c68-9c36-7a0dd554898c {"md5": "144573cbfa167fbd3b8ea9634a417a99", "pid": "111515890", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["lat"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/111515890", "source": "IDREF"}], "variant_name": ["Woevre, Jean de", "Jean de Woëvre", "Woevre, Jean de", "Voevroeus, Joannes", "Voevroeus, Johannes", "Voeuroeus, Joannes"], "date_of_birth": "14..", "date_of_death": "15..?", "preferred_name": "Woëvre, Jean de", "country_associated": "fr", "variant_access_point": ["Woevre, Jean de", "Jean de Woëvre", "Woevre, Jean de", "Voevroeus, Joannes", "Voevroeus, Johannes", "Voeuroeus, Joannes"], "authorized_access_point": "Woëvre, Jean de, 14..-15..?", "biographical_information": ["Bibliothécaire de l'abbaye de Clairvaux à la fin du XVème. Il fut le copiste de l'unique manuscrit des \\"Lettres des deux Amants\\" (attribuées à Héloise et Abélard), datant du XIIe siècle."]} 1 +2024-09-11 09:04:33.758827 2024-09-11 09:04:33.758831 383e669a-c9e5-4f9c-9bb0-f68de2f16451 {"md5": "125374f09090af6523c8e988d1127878", "pid": "111524679", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/111524679", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Jafferali, Rafaël", "country_associated": "be", "authorized_access_point": "Jafferali, Rafaël, 19..-....", "biographical_information": ["Professeur de droit à l'Université libre de Bruxelles (en 2009). Avocat"]} 1 +2024-09-11 09:04:33.818046 2024-09-11 09:04:33.81805 9c1245a1-e9ee-460e-b88c-2881d4f98f4d {"md5": "002a4703fbea1964dc245ddc101a9f7f", "pid": "111755220", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre", "ara"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/111755220", "source": "IDREF"}], "variant_name": ["INAG", "INA", "Ecole d'agriculture algérienne (El Harrach, Algérie)", "Institut agricole d'Algérie (El Harrach, Algérie)", "Ecole nationale d'agriculture (El Harrach, Algérie)"], "preferred_name": "Institut national agronomique (El Harrach, Algérie)", "country_associated": "ae", "variant_access_point": ["INAG", "INA", "Ecole d'agriculture algérienne (El Harrach, Algérie)", "Institut agricole d'Algérie (El Harrach, Algérie)", "Ecole nationale d'agriculture (El Harrach, Algérie)"], "date_of_establishment": "1967", "authorized_access_point": "Institut national agronomique (El Harrach, Algérie)", "biographical_information": ["Avenue Pasteur, Hassan Badi, El Harrach 16200 Alger", "Crée en 1905 l'Ecole d'agriculture algérienne devient en 1920 l'Institut agricole d'Algérie, en 1946 l'Ecole nationale d'agriculture et en 1967 l'Institut national agronomique (INA) ; en 2009 Ecole nationale supérieure agronomique (ENSA)"]} 1 +2024-09-11 09:04:33.88762 2024-09-11 09:04:33.887628 adb62416-98a8-49da-9bde-3a1c30498ba0 {"md5": "aa1b4c560cf8aff2e3fa5f4fc758cbfa", "pid": "112030777", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "professeur de physique", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/112030777", "source": "IDREF"}], "preferred_name": "Lambin, Philippe, professeur de physique", "authorized_access_point": "Lambin, Philippe, professeur de physique", "biographical_information": ["Professeur, Département de Physique, Université de Namur, Belgique (en 2017)"]} 1 +2024-09-11 09:04:33.945427 2024-09-11 09:04:33.945428 d85c4add-786f-4ef1-9ea7-5db0242f2474 {"md5": "9a5af4e958224a19a5ddadde7c8f7084", "pid": "112074863", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["chi"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/112074863", "source": "IDREF"}], "variant_name": ["《古本小說集成》編委會 (Chine)"], "preferred_name": "\\"Gu ben xiao shuo ji cheng\\" bian wei hui (Chine)", "country_associated": "cc", "variant_access_point": ["《古本小說集成》編委會 (Chine)"], "authorized_access_point": "\\"Gu ben xiao shuo ji cheng\\" bian wei hui (Chine)"} 1 +2024-09-11 09:04:34.007133 2024-09-11 09:04:34.007136 3bbce017-2d57-41bf-92eb-d4bcc94a08d7 {"md5": "884daf1378c099aa1344ba48bb25ea6d", "pid": "112113028", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/112113028", "source": "IDREF"}], "preferred_name": "Massenet, Jacques", "authorized_access_point": "Massenet, Jacques"} 1 +2024-09-11 09:04:34.073152 2024-09-11 09:04:34.073156 3daa76cb-f979-4282-a3ac-6e0ebdb9135e {"md5": "115ee40dd818ecb6e4657efd074f2e70", "pid": "112169678", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/112169678", "source": "IDREF"}], "variant_name": ["International Federation for Modern Languages and Literatures. Congrès", "FILLM. Congrès", "Internationale Vereinigung für Moderne Sprachen und Literaturen. Congrès"], "preferred_name": "Fédération internationale des langues et littératures modernes. Congrès", "country_associated": "gw", "date_of_termination": "1959-08-31", "variant_access_point": ["International Federation for Modern Languages and Literatures. Congrès (07 ; 11959 ; Heidelberg, Allemagne)", "FILLM. Congrès (07 ; 1959 ; Heidelberg, Allemagne)", "Internationale Vereinigung für Moderne Sprachen und Literaturen. Congrès (07 ; 1959 ; Heidelberg, Allemagne)"], "date_of_establishment": "1959-08-26", "authorized_access_point": "Fédération internationale des langues et littératures modernes. Congrès (07 ; 1959 ; Heidelberg, Allemagne)"} 1 +2024-09-11 09:04:34.137774 2024-09-11 09:04:34.137778 bdb719a6-a7af-4265-a4d9-67451efbca14 {"md5": "350ad225aac8940f408b2038f1d04bc6", "pid": "11219222X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/11219222X", "source": "IDREF"}], "date_of_birth": "1909", "date_of_death": "1980", "preferred_name": "Rollier, Mario Alberto", "authorized_access_point": "Rollier, Mario Alberto, 1909-1980", "biographical_information": ["Physicien, militant du parrti Azione"]} 1 +2024-09-11 09:04:34.22689 2024-09-11 09:04:34.226894 0485e103-641e-467c-895b-313b52e07389 {"md5": "c0d15c1f62c548c7dc3661deb74d28e1", "pid": "112238181", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/112238181", "source": "IDREF"}], "date_of_birth": "1967-03-03", "preferred_name": "Gourmelon, Michèle", "country_associated": "fr", "authorized_access_point": "Gourmelon, Michèle, 1967-....", "biographical_information": ["Titulaire d'un doctorat d'exercice de pharmacie (Rennes : 2006)"]} 1 +2024-09-11 09:04:34.302108 2024-09-11 09:04:34.302114 cbe589b0-e13b-47c4-896f-28b1e61cb54d {"md5": "6f501495e763dd015478d2dd2eb477f6", "pid": "11246355X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/11246355X", "source": "IDREF"}], "preferred_name": "Rakovszky, Iván de", "authorized_access_point": "Rakovszky, Iván de"} 1 +2024-09-11 09:04:34.370721 2024-09-11 09:04:34.370726 6b84b3bc-209c-4075-b951-05c988750b1a {"md5": "4efa4e867f463019ba6d727750fe46a6", "pid": "112722024", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/112722024", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Vollaire, Christian", "country_associated": "fr", "authorized_access_point": "Vollaire, Christian, 19..-....", "biographical_information": ["Titulaire d'un doctorat en Génie électrique (Ecole Centrale de Lyon, 1997)", "Enseignant-chercheur au sein de l’Ecole Centrale de Lyon, directeur du laboratoire Ampère (UMR CNRS 5005)"]} 1 +2024-09-11 09:04:34.43077 2024-09-11 09:04:34.430777 5d277fce-54fe-4aff-847a-2f447e73f7f4 {"md5": "5b36eaa7fd4d566073ba1c805cbb32c8", "pid": "112795889", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/112795889", "source": "IDREF"}], "preferred_name": "Mediavilla Martín, Benito", "country_associated": "sp", "authorized_access_point": "Mediavilla Martín, Benito"} 1 +2024-09-11 09:04:34.508796 2024-09-11 09:04:34.508802 269beae5-34a4-45c1-9be0-53a199de85d6 {"md5": "c1aefcc959635e5888ccbb15d70c7792", "pid": "112913202", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "auteur d'un mémoire de gériatrie", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/112913202", "source": "IDREF"}], "date_of_birth": "1961-10-14", "preferred_name": "Lefevre, François, auteur d'un mémoire de gériatrie", "country_associated": "fr", "authorized_access_point": "Lefevre, François, 1961-...., auteur d'un mémoire de gériatrie", "biographical_information": ["Titulaire d'une capacité de gériatrie (2006)"]} 1 +2024-09-11 09:04:34.570239 2024-09-11 09:04:34.570245 63dee608-8352-41de-a83d-782ef8960391 {"md5": "be5a3c23ac923302563b29ec3a05e76d", "pid": "112961401", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/112961401", "source": "IDREF"}], "date_of_birth": "1947", "preferred_name": "Gaumeton, Pierre", "country_associated": "fr", "authorized_access_point": "Gaumeton, Pierre, 1947-....", "biographical_information": ["Journaliste-Historien"]} 1 +2024-09-11 09:04:34.635979 2024-09-11 09:04:34.635982 79c93934-f3d6-43da-9352-7960a3fad19f {"md5": "ba02057e1d404c6338e5ef6c7808b86c", "pid": "113120362", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/113120362", "source": "IDREF"}], "variant_name": ["Michigan. University. School of Natural Resources", "University of Michigan. School of Forestry and Conservation", "University of Michigan. School of Natural Resources and Environment"], "preferred_name": "University of Michigan. School of Natural Resources", "country_associated": "xxu", "variant_access_point": ["Michigan. University. School of Natural Resources", "University of Michigan. School of Forestry and Conservation", "University of Michigan. School of Natural Resources and Environment"], "authorized_access_point": "University of Michigan. School of Natural Resources"} 1 +2024-09-11 09:04:34.701186 2024-09-11 09:04:34.70119 97634582-6ea4-4d0c-9286-b08411aa0f3e {"md5": "940021540d1da490914b3c96e9b2da6e", "pid": "113195931", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/113195931", "source": "IDREF"}], "preferred_name": "Boughton, Robert", "authorized_access_point": "Boughton, Robert"} 1 +2024-09-11 09:04:34.765596 2024-09-11 09:04:34.7656 8f32a06c-b0cb-4ba6-a4a4-c63dff7aeb7e {"md5": "f16b9e1b8b5dc898e204ee55e0cd5779", "pid": "113204442", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/113204442", "source": "IDREF"}], "date_of_birth": "1969-04-06", "preferred_name": "Simões, Aquiles", "country_associated": "bl", "authorized_access_point": "Simões, Aquiles, 1969-....", "biographical_information": ["Titulaire d'un doctorat en Sociologie. Etudes rurales (Toulouse 2, 2007)"]} 1 +2024-09-11 09:04:34.82372 2024-09-11 09:04:34.823724 ba799426-104f-43d9-8e11-85a0427ef284 {"md5": "806989f6a51ee45d6d959f2e21899d94", "pid": "113372213", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/113372213", "source": "IDREF"}], "date_of_birth": "1976-08-10", "preferred_name": "Simonetti, Mathieu", "country_associated": "fr", "authorized_access_point": "Simonetti, Mathieu, 1976-....", "biographical_information": ["Auteur d'une thèse d'exercice en Chirurgie dentaire (Lyon 1, 2002). Titulaire d'un diplôme universitaire de chirurgie buccale et d'implantologie (Dijon, 2011)"]} 1 +2024-09-11 09:04:34.880197 2024-09-11 09:04:34.8802 229feaf3-1ea4-4212-98e8-df5da33b00a4 {"md5": "232a18ade2bbb631e076856881c7cc4e", "pid": "113737041", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/113737041", "source": "IDREF"}], "preferred_name": "University of London. Institute of obstetrics and gynaecology", "country_associated": "xxk", "authorized_access_point": "University of London. Institute of obstetrics and gynaecology"} 1 +2024-09-11 09:04:34.940692 2024-09-11 09:04:34.940696 5663401a-eeb7-4ecb-802e-37f9a54f1a09 {"md5": "d7d7539487f9e473985ce712a78c950e", "pid": "113738048", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/113738048", "source": "IDREF"}], "preferred_name": "Wiese, René", "country_associated": "gw", "authorized_access_point": "Wiese, René"} 1 +2024-09-11 09:04:35.007838 2024-09-11 09:04:35.007842 eee71dbb-f3fd-4b7f-a3b7-e3919143430f {"md5": "c33cdee584dd2a9943be770fd5727875", "pid": "113753764", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/113753764", "source": "IDREF"}], "date_of_birth": "1977-01-16", "preferred_name": "Noomtong, Chaiwat", "country_associated": "fr", "authorized_access_point": "Noomtong, Chaiwat, 1977-....", "biographical_information": ["Titulaire d'un doctorat de l'Institut national polytechnique de Grenoble, spécialité \\"Mécanique : conception, géomécanique et matériaux\\""]} 1 +2024-09-11 09:04:35.06824 2024-09-11 09:04:35.068243 a7141c19-4adc-4b0d-b939-ac82ba7777af {"md5": "f41a3dae9d95fbf9da79db0911d932b2", "pid": "113834535", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/113834535", "source": "IDREF"}], "variant_name": ["Curso de verano sobre el franciscanismo en Andalucía"], "preferred_name": "Curso de verano el franciscanismo en Andalucía", "country_associated": "sp", "date_of_termination": "1996-08-10", "variant_access_point": ["Curso de verano sobre el franciscanismo en Andalucía (3 ; 1997 ; Priego de Córdoba)"], "date_of_establishment": "1997-08-01", "authorized_access_point": "Curso de verano el franciscanismo en Andalucía (3 ; 1997 ; Priego de Córdoba)"} 1 +2024-09-11 09:04:35.137952 2024-09-11 09:04:35.137956 6ffd21b1-e117-4784-a9cf-1592104df1d2 {"md5": "75f8c880b3e035c30e3d4924f94ca20c", "pid": "113915845", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut", "eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/113915845", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Wattel, Evert", "country_associated": "ne", "authorized_access_point": "Wattel, Evert, 19..-...."} 1 +2024-09-11 09:04:35.195451 2024-09-11 09:04:35.195456 1a714997-d929-433a-b078-00a50eb33999 {"md5": "006dbbbcce7e08a46f5981088718704a", "pid": "114044104", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/114044104", "source": "IDREF"}], "date_of_birth": "1968", "preferred_name": "Frapiccini, David", "country_associated": "it", "authorized_access_point": "Frapiccini, David, 1968-....", "biographical_information": ["Professeur d'histoire de l'art moderne, Università degli studi La Sapienza, Rome (en 2013)"]} 1 +2024-09-11 09:04:35.257646 2024-09-11 09:04:35.257652 7582380c-29ce-4f32-86d5-7dcac5a016d0 {"md5": "926d195dfe5f9c1281c014f37f8314b3", "pid": "114141606", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/114141606", "source": "IDREF"}], "variant_name": ["Russian entomological society", "Rossijskoe èntomologičeskoe obŝestvo", "RÈO", "RES"], "preferred_name": "Russkoe entomologičeskoe obŝestvo", "variant_access_point": ["Russian entomological society", "Rossijskoe èntomologičeskoe obŝestvo", "RÈO", "RES"], "authorized_access_point": "Russkoe entomologičeskoe obŝestvo", "biographical_information": ["Créée en 1859", "Universitetskaâ nab. 1, 1990934 Saint-Pétersbourg, Russie"]} 1 +2024-09-11 09:04:35.333359 2024-09-11 09:04:35.333364 3df99884-e57b-44d1-8a29-37119214d507 {"md5": "966f5a163500e4888e71b70cb38f0891", "pid": "114173699", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/114173699", "source": "IDREF"}], "variant_name": ["María Morales, Martín"], "date_of_birth": "1953", "preferred_name": "Morales, Martín María", "country_associated": "sp", "variant_access_point": ["María Morales, Martín"], "authorized_access_point": "Morales, Martín María, 1953-", "biographical_information": ["Jésuite et historien"]} 1 +2024-09-11 09:04:35.396268 2024-09-11 09:04:35.396272 3515c67e-7e75-4ccf-80e8-ee93872e4362 {"md5": "d9e74cdcbef55004e8cd920f5417c3ff", "pid": "114244057", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/114244057", "source": "IDREF"}], "preferred_name": "Séminaire de probabilités", "country_associated": "fr", "date_of_termination": "1986", "date_of_establishment": "1985", "authorized_access_point": "Séminaire de probabilités (21 ; 1985-1986 ; Paris)"} 1 +2024-09-11 09:04:35.466728 2024-09-11 09:04:35.466734 640c883e-f76f-4979-bcad-36ed3f3b1cf5 {"md5": "5320f2c23ed38e407288ca2d0b7828de", "pid": "114270813", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/114270813", "source": "IDREF"}], "date_of_birth": "1977", "preferred_name": "Bednarek, Monika", "country_associated": "xx", "authorized_access_point": "Bednarek, Monika, 1977-....", "biographical_information": ["Professeur de linguistique"]} 1 +2024-09-11 09:04:35.527887 2024-09-11 09:04:35.527889 06464efa-3f12-4160-b8db-4c2d45db0429 {"md5": "9dabd79b77641b5580408f96889a1882", "pid": "11449973X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/11449973X", "source": "IDREF"}], "preferred_name": "Université Senghor (Alexandrie, Egypte). Département Gestion du patrimoine culturel", "country_associated": "ua", "authorized_access_point": "Université Senghor (Alexandrie, Egypte). Département Gestion du patrimoine culturel", "biographical_information": ["1 Pl. Ahmed-Orafi, El Mancheya, BP 21111-415, Alexandrie, Egypte"]} 1 +2024-09-11 09:04:35.586673 2024-09-11 09:04:35.586677 d874066b-ed76-4d47-84ce-4cf127baccba {"md5": "229d4699dbd6558680f86e594f5b5197", "pid": "114570337", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/114570337", "source": "IDREF"}], "date_of_birth": "1968", "preferred_name": "Jubin, Frédérique", "country_associated": "fr", "authorized_access_point": "Jubin, Frédérique, 1968-....", "biographical_information": ["Titulaire d'un doctorat d'arts et sciences de l'art à Paris 1 en 2007, spécialiste de danse"]} 1 +2024-09-11 09:04:35.646226 2024-09-11 09:04:35.64623 f434360e-d65a-4479-b704-4f4899aeb5d9 {"md5": "c3f5c41346a3af67d22e07ab48e1740c", "pid": "114673128", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/114673128", "source": "IDREF"}], "preferred_name": "Pillay, M. G.", "country_associated": "sa", "authorized_access_point": "Pillay, M. G.", "biographical_information": ["Ecrivain"]} 1 +2024-09-11 09:04:35.708312 2024-09-11 09:04:35.708316 3a56d8f1-d224-4dbe-b294-0515422a2ea3 {"md5": "7b092554281742c4e4e903529269e145", "pid": "11499899X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/11499899X", "source": "IDREF"}], "date_of_birth": "1942", "preferred_name": "Parker, Gordon", "country_associated": "at", "authorized_access_point": "Parker, Gordon, 1942-", "biographical_information": ["Professeur. En poste à University of New South Wales. Directeur du Black Dog Institute, Sydney, Australie (en 2005)."]} 1 +2024-09-11 09:04:35.780529 2024-09-11 09:04:35.780533 adefb1e0-5bc3-4452-8934-d54f74fa88d4 {"md5": "221e3b27c640032fef20d2dc5b4dd6a9", "pid": "115046917", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/115046917", "source": "IDREF"}], "date_of_birth": "1963-09-18", "preferred_name": "Simon, Isabelle", "country_associated": "fr", "authorized_access_point": "Simon, Isabelle, 1963-....", "biographical_information": ["Titulaire d'un doctorat d'exercice en pharmacie (Rennes : 1988)"]} 1 +2024-09-11 09:04:35.842123 2024-09-11 09:04:35.842127 c9edd216-3a70-411f-90d8-51a58e6a0ab1 {"md5": "a3736abeff1a778c037cba4b6d96f2aa", "pid": "115078630", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/115078630", "source": "IDREF"}], "date_of_birth": "1921", "preferred_name": "Weisz, Paul B.", "country_associated": "xxu", "authorized_access_point": "Weisz, Paul B., 1921-....", "biographical_information": ["Professeur de biologie, Brown university (1961)"]} 1 +2024-09-11 09:04:35.908859 2024-09-11 09:04:35.908862 82ca4302-7932-4d87-8bac-e41dfa1ac843 {"md5": "8ccd95be4d531de5213b4b9180726c71", "pid": "115277684", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/115277684", "source": "IDREF"}], "preferred_name": "Crouzet, F.", "country_associated": "fr", "authorized_access_point": "Crouzet, F."} 1 +2024-09-11 09:04:35.964433 2024-09-11 09:04:35.964438 735c97ec-bdc5-4e08-a9f4-a122f8a9dea7 {"md5": "a7ac33cbe33949fe9b0488efd4f8f85c", "pid": "115564535", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/115564535", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Dorfstecher, Ilse-Maria", "authorized_access_point": "Dorfstecher, Ilse-Maria, 19..-...."} 1 +2024-09-11 09:04:36.0233 2024-09-11 09:04:36.023305 907bb753-6cac-4f92-8a5f-8be947fae26a {"md5": "25993b03cb219ff7d134c7cbf3f710e2", "pid": "11570793X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "qualifier": "chanteuse", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/11570793X", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Tsarouska, Tanya, chanteuse", "country_associated": "xx", "authorized_access_point": "Tsarouska, Tanya, 19..-...., chanteuse", "biographical_information": ["Chanteuse"]} 1 +2024-09-11 09:04:36.080642 2024-09-11 09:04:36.080646 bfb72b91-74a9-4276-acb3-7dd0c3466d5a {"md5": "966366631099fe08004413571586c5d6", "pid": "115842993", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/115842993", "source": "IDREF"}], "preferred_name": "Liebelin, François", "country_associated": "fr", "authorized_access_point": "Liebelin, François"} 1 +2024-09-11 09:04:36.141545 2024-09-11 09:04:36.141549 aa46c4a8-0798-44f7-81d2-ba73187e042c {"md5": "3328128e02a0f48a6ba5daab36f02c7a", "pid": "116055669", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/116055669", "source": "IDREF"}], "variant_name": ["Титаренко, Клександр Иванович"], "preferred_name": "Titarenko, Aleksandr Ivanovič", "country_associated": "ru", "variant_access_point": ["Титаренко, Клександр Иванович"], "authorized_access_point": "Titarenko, Aleksandr Ivanovič"} 1 +2024-09-11 09:04:36.209948 2024-09-11 09:04:36.209951 11890c32-f68f-4035-b55a-c8a0a24e835d {"md5": "800ae6390503f3b431ed5c9b4c1be555", "pid": "116121556", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/116121556", "source": "IDREF"}], "preferred_name": "Saunier, Richard E.", "authorized_access_point": "Saunier, Richard E.", "biographical_information": ["senior environmental management advisor in the Department of regional development and environment of the organization of American States"]} 1 +2024-09-11 09:04:36.271458 2024-09-11 09:04:36.271461 9a641129-a3a6-40ac-9b45-eb935c37c569 {"md5": "11f24e13ae801fd0812a560cdbb21950", "pid": "116142219", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/116142219", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Sölter, Walter", "country_associated": "gw", "authorized_access_point": "Sölter, Walter, 19..-....", "biographical_information": ["Directeur du Ruhrlandmuseums à Essen, archéologue et enseignant (en 1989)"]} 1 +2024-09-11 09:04:36.350302 2024-09-11 09:04:36.350305 37a0a555-4b76-4568-983e-895b7a76377f {"md5": "39ecbd530e1cff0fe98edcea301c1179", "pid": "11627753X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/11627753X", "source": "IDREF"}], "variant_name": ["Congrès national d'orientation professionnelle"], "preferred_name": "Congrès national d'orientation professionnelle", "country_associated": "fr", "date_of_termination": "1960-06-06", "variant_access_point": ["Congrès national d'orientation professionnelle (13 ; 1960 ; Evreux)"], "date_of_establishment": "1960-06-03", "authorized_access_point": "Congrès national d'orientation professionnelle (13 ; 1960 ; Evreux)"} 1 +2024-09-11 09:04:36.406568 2024-09-11 09:04:36.406571 c8089c67-e5d4-436b-aa05-3b6e81678aba {"md5": "eed91efc9ba468c7464b0735ddafb7e0", "pid": "116285125", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/116285125", "source": "IDREF"}], "variant_name": ["西村, 成雄"], "date_of_birth": "1944", "preferred_name": "Nishimura, Shigeo", "country_associated": "ja", "variant_access_point": ["西村, 成雄, 1944-...."], "authorized_access_point": "Nishimura, Shigeo, 1944-....", "biographical_information": ["Transcription Hepburn modifié", "Historien, spécialiste de l'Asie orientale. Professeur de Osaka University of Foreign Studies (en 2007)"]} 1 +2024-09-11 09:04:45.868486 2024-09-11 09:04:45.868491 105f7819-9f61-4b96-8fa0-e6539345a541 {"md5": "2db657e06a1b196c0119f661076eaf3c", "pid": "136864554", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/136864554", "source": "IDREF"}], "preferred_name": "Yampolsky, Heather", "country_associated": "xx", "authorized_access_point": "Yampolsky, Heather"} 1 +2024-09-11 09:04:36.467642 2024-09-11 09:04:36.467648 ba4b97b5-2033-4dcc-8d4d-a9c7d7c95964 {"md5": "465a5acc0d81c8b78d3f8723bfb1db74", "pid": "116293020", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/116293020", "source": "IDREF"}], "date_of_birth": "1968", "preferred_name": "Hauenschild, Katrin", "authorized_access_point": "Hauenschild, Katrin, 1968-....", "biographical_information": ["Titulaire d'un doctorat, enseignante, chercheuse en éducation"]} 1 +2024-09-11 09:04:36.528434 2024-09-11 09:04:36.528437 14ede1f2-4822-4e62-9094-3796ef8891f7 {"md5": "3f62f76c7278273eb66f312d15db0449", "pid": "116436840", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ind"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/116436840", "source": "IDREF"}], "variant_name": ["Abdoel Fattah", "Fattah, Abdul", "Abdul Fattah"], "preferred_name": "Fattah, Abdoel", "country_associated": "io", "variant_access_point": ["Abdoel Fattah", "Fattah, Abdul", "Abdul Fattah"], "authorized_access_point": "Fattah, Abdoel", "biographical_information": ["Politologue"]} 1 +2024-09-11 09:04:36.597291 2024-09-11 09:04:36.597296 6460c31d-8cd2-4cc2-a833-ee98367736a8 {"md5": "b3c745234bb35558cb46c1f8da7bd88b", "pid": "11649736X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["srp"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/11649736X", "source": "IDREF"}], "preferred_name": "Štetić, Bogdan", "authorized_access_point": "Štetić, Bogdan"} 1 +2024-09-11 09:04:36.651885 2024-09-11 09:04:36.65189 1857b38e-0dea-471e-a774-0257228aa751 {"md5": "07514474ed61d12e8d8d233095dd800e", "pid": "116539313", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/116539313", "source": "IDREF"}], "variant_name": ["Hohenberger, A."], "date_of_birth": "1888", "date_of_death": "1966", "preferred_name": "Hohenberger, Adam", "country_associated": "gw", "variant_access_point": ["Hohenberger, A."], "authorized_access_point": "Hohenberger, Adam, 1888-1966"} 1 +2024-09-11 09:04:36.719874 2024-09-11 09:04:36.719879 a83be4ad-419c-44d6-9f1d-85d65df060b2 {"md5": "e30ad61fbe30d8e546e6954ad43bd55d", "pid": "116542306", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/116542306", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Popescu, Lucy", "country_associated": "xx", "authorized_access_point": "Popescu, Lucy, 19..-....", "biographical_information": ["Journaliste (en 2007"]} 1 +2024-09-11 09:04:36.791464 2024-09-11 09:04:36.791468 4b861bb9-fcdb-499c-adb5-c08c73537778 {"md5": "bd8189c92947a1abf160a421147383cb", "pid": "116771763", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/116771763", "source": "IDREF"}], "variant_name": ["Istituto di Scienze Militari Aeronautiche (Firenze, Italia)", "Scuola di Applicazione Aeronautica (Florence, Italie)", "Scuola di Applicazione Aeronautica (Firenze, Italia)", "Scuola di Applicazione della Regia Aeronautica (Florence, Italie)", "Scuola di Applicazione della Regia Aeronautica (Firenze, Italia)"], "preferred_name": "Istituto di Scienze Militari Aeronautiche (Florence, Italie)", "country_associated": "it", "variant_access_point": ["Istituto di Scienze Militari Aeronautiche (Firenze, Italia)", "Scuola di Applicazione Aeronautica (Florence, Italie)", "Scuola di Applicazione Aeronautica (Firenze, Italia)", "Scuola di Applicazione della Regia Aeronautica (Florence, Italie)", "Scuola di Applicazione della Regia Aeronautica (Firenze, Italia)"], "authorized_access_point": "Istituto di Scienze Militari Aeronautiche (Florence, Italie)"} 1 +2024-09-11 09:04:36.860601 2024-09-11 09:04:36.860605 0c6b1b6a-0e62-4218-a1be-3a958b20066f {"md5": "c1ac199672995debd7270f41fc167560", "pid": "117328383", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/117328383", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "196326761"}, "variant_name": ["Howard, Taubman", "Taubman, Hyman Howard", "Taubman, H. H.", "Taubman, Howard"], "date_of_birth": "1907", "date_of_death": "1996", "preferred_name": "Taubman, Hyman Howard", "country_associated": "xxu", "variant_access_point": ["Howard, Taubman", "Taubman, Hyman Howard", "Taubman, H. H.", "Taubman, Howard"], "authorized_access_point": "Taubman, Hyman Howard, 1907-1996", "biographical_information": ["Critique américain de musique, de théâtre et d'art ; écrivit pour le New York Times jusqu'en 1972."]} 1 +2024-09-11 09:04:36.92971 2024-09-11 09:04:36.929714 1793f47c-440c-4703-9cc8-a6b9f44532f2 {"md5": "fdc2c76b0e37b1a63e69fc939af5cc04", "pid": "11749464X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "qualifier": "Sir", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/11749464X", "source": "IDREF"}], "variant_name": ["Bere, Ivan de la"], "preferred_name": "De la Bere, Ivan, Sir", "country_associated": "xxk", "variant_access_point": ["Bere, Ivan de la"], "authorized_access_point": "De la Bere, Ivan, Sir"} 1 +2024-09-11 09:04:36.98792 2024-09-11 09:04:36.987924 5bb906f4-82de-4051-b11d-3625ab7974ac {"md5": "18e244a60473c9b1f56d29db32abd802", "pid": "117780081", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/117780081", "source": "IDREF"}], "date_of_birth": "1979-04-20", "preferred_name": "Llanes, Fabrice", "country_associated": "fr", "authorized_access_point": "Llanes, Fabrice, 1979-....", "biographical_information": ["Titulaire d'un doctorat en pharmacie, (Toulouse 3,2007)"]} 1 +2024-09-11 09:04:37.048972 2024-09-11 09:04:37.048976 10a44055-7989-45f4-835a-017208578bd3 {"md5": "f932af4c5500f108217a6ab3e5e12df7", "pid": "117829226", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/117829226", "source": "IDREF"}], "date_of_birth": "1913", "preferred_name": "Nguyen-Van-Thoai", "authorized_access_point": "Nguyen-Van-Thoai, 1913-....", "biographical_information": ["Thèse de doctorat en Sciences naturelles soutenue à l'Université d'Aix en 1946"]} 1 +2024-09-11 09:04:37.10645 2024-09-11 09:04:37.106454 96375c74-b229-4cee-95e0-dad6d9ac3588 {"md5": "5458abdc9792af75ddf6744db961ac0f", "pid": "117886920", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/117886920", "source": "IDREF"}], "preferred_name": "Fremaux, Benjamin", "country_associated": "fr", "authorized_access_point": "Fremaux, Benjamin", "biographical_information": ["Ingénieur des télécoms"]} 1 +2024-09-11 09:04:37.163997 2024-09-11 09:04:37.164002 f61d8cb0-d968-4695-9fed-801d6be1a72b {"md5": "19d4b940b8647cd4173c393d5a08527f", "pid": "117982067", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/117982067", "source": "IDREF"}], "preferred_name": "Brula, Pascal", "authorized_access_point": "Brula, Pascal", "biographical_information": ["Thèse de doctorat en Pétrologie soutenue à l'Université de Lyon1 en 1984"]} 1 +2024-09-11 09:04:37.222699 2024-09-11 09:04:37.222702 64f27279-27b4-40b4-af46-acf6da46176a {"md5": "1c211b5ea27e47d7b697fc6ec8c92879", "pid": "118249487", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/118249487", "source": "IDREF"}], "preferred_name": "TEAM Creatif", "country_associated": "fr", "authorized_access_point": "TEAM Creatif", "biographical_information": ["Agence indépendante de design depuis 1986"]} 1 +2024-09-11 09:04:37.282737 2024-09-11 09:04:37.28274 e7ee550d-b8f8-4977-aa2e-9314e7e45a92 {"md5": "dfc37da8b20a179424f301ca80003831", "pid": "118275593", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/118275593", "source": "IDREF"}], "variant_name": ["Milford, T. A."], "date_of_birth": "1970", "preferred_name": "Milford, T. A.", "country_associated": "xxu", "variant_access_point": ["Milford, T. A."], "authorized_access_point": "Milford, T. A., 1970-", "biographical_information": ["Diplômé de Duke et d'Harward", "Prof. d'histoire"]} 1 +2024-09-11 09:04:37.345673 2024-09-11 09:04:37.345677 3d549a6e-b64c-4c6d-813f-e06bd2d1178c {"md5": "ebaf94371222f8e8bf4a743896fbb5c6", "pid": "118630245", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/118630245", "source": "IDREF"}], "preferred_name": "Banyai, Andrew Ladislaus", "country_associated": "xxu", "authorized_access_point": "Banyai, Andrew Ladislaus", "biographical_information": ["Clinical professor of Medicine, Emeritus Marquette University school of medicine"]} 1 +2024-09-11 09:04:37.403529 2024-09-11 09:04:37.403533 cd3fc71e-b7e3-4a28-959d-87db89ae707b {"md5": "5d439a8d232575e63a931e7ac00cae4c", "pid": "118895729", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/118895729", "source": "IDREF"}], "variant_name": ["International catholic-jewish liaison committee"], "preferred_name": "Comité international de liaison catholique-juif", "variant_access_point": ["International catholic-jewish liaison committee"], "authorized_access_point": "Comité international de liaison catholique-juif"} 1 +2024-09-11 09:04:37.460537 2024-09-11 09:04:37.460541 685df50d-942b-478c-a376-d6bdd3a1d47e {"md5": "c4a3855f635269438455edfadbad446c", "pid": "118964534", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/118964534", "source": "IDREF"}], "preferred_name": "Peterson, Rudolph A.", "authorized_access_point": "Peterson, Rudolph A."} 1 +2024-09-11 09:04:37.513647 2024-09-11 09:04:37.51365 6e5c8b1f-f26d-488b-a246-d6f931112788 {"md5": "e7924c5f9da12204e42f5e1576d55f93", "pid": "119176114", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/119176114", "source": "IDREF"}], "date_of_birth": "1979", "preferred_name": "Zarzecka, Anna", "country_associated": "pl", "authorized_access_point": "Zarzecka, Anna, 1979-...."} 1 +2024-09-11 09:04:37.574925 2024-09-11 09:04:37.574929 8d0c042a-dbf7-4269-af68-88430ea8c561 {"md5": "5ec3b5038c75d9c8890585e63cf46360", "pid": "119349043", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/119349043", "source": "IDREF"}], "preferred_name": "Bogdan-Verger, Olimpia", "country_associated": "fr", "authorized_access_point": "Bogdan-Verger, Olimpia", "biographical_information": ["Traduit du roumain au français"]} 1 +2024-09-11 09:04:37.639492 2024-09-11 09:04:37.639495 5ae8d99e-aab0-49a5-8c69-c4c44ccd68a9 {"md5": "83d5e5c0f09ba9e38b0048f57afc9691", "pid": "11954945X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/11954945X", "source": "IDREF"}], "preferred_name": "Fanguin, Daniel", "country_associated": "fr", "authorized_access_point": "Fanguin, Daniel", "biographical_information": ["Docteur et enseignant en psychologie"]} 1 +2024-09-11 09:04:37.695171 2024-09-11 09:04:37.695175 d9bb0768-3e0e-4cc9-9249-e762e54ddcea {"md5": "912a0e7f871fb8644bd9a53f1530d3f9", "pid": "119926350", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/119926350", "source": "IDREF"}], "date_of_birth": "1979-08-28", "preferred_name": "Fraysse, Fabrice", "country_associated": "fr", "authorized_access_point": "Fraysse, Fabrice, 1979-....", "biographical_information": ["Titulaire d'un doctorat en biogéochimie expérimentale, soutenu à l'Université Paul Sabatier à Toulouse (en 2007)"]} 1 +2024-09-11 09:04:37.753152 2024-09-11 09:04:37.753155 249c1414-80b4-484d-8f33-aa2a4cfd9389 {"md5": "8e8eba3d6a3a0c202bc47224e603a993", "pid": "119945290", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/119945290", "source": "IDREF"}], "date_of_birth": "1954", "preferred_name": "Sylvain, Teva", "country_associated": "fr", "authorized_access_point": "Sylvain, Teva, 1954-....", "biographical_information": ["Photographe, né à Tahiti et fondateur en 1976 de la société \\" Pacific Promotion Tahiti \\""]} 1 +2024-09-11 09:04:37.812446 2024-09-11 09:04:37.812452 802dbc67-1367-46dd-a908-bf05725a1ee8 {"md5": "6a5c1a6c31c82b6ed5faffd40ddf9286", "pid": "119980924", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/119980924", "source": "IDREF"}], "variant_name": ["Chartered Financial Analysts Institute", "Institute of Chartered Financial Analysts"], "preferred_name": "CFA Institute", "country_associated": "xxu", "variant_access_point": ["Chartered Financial Analysts Institute", "Institute of Chartered Financial Analysts"], "date_of_establishment": "2004", "authorized_access_point": "CFA Institute", "biographical_information": ["Anciennement AIMR (Association for Investment Management and Research). Cet institut délivre le Chartered Financial Analyst, la certification professionnelle d'expertise financière. Etabli à Charlottesville (Va.) (en 2006)"]} 1 +2024-09-11 09:04:50.926917 2024-09-11 09:04:50.926919 d52e2e16-9ddf-418d-9f70-a388e98782f2 {"md5": "26d9e63a67c0b35ecac768378b5bb1b8", "pid": "145661806", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/145661806", "source": "IDREF"}], "preferred_name": "Finke, Timo", "country_associated": "gw", "authorized_access_point": "Finke, Timo"} 1 +2024-09-11 09:04:37.8808 2024-09-11 09:04:37.880804 0d70d143-8255-44d6-9798-cb4e9826b5cf {"md5": "0cd68d9258ed7e15f21db686cdd1cb51", "pid": "120051575", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/120051575", "source": "IDREF"}], "variant_name": ["山下, 克明"], "date_of_birth": "1952", "preferred_name": "Yamashita, Katsuaki", "country_associated": "ja", "variant_access_point": ["山下, 克明, 1952-...."], "authorized_access_point": "Yamashita, Katsuaki, 1952-....", "biographical_information": ["Transcription Hepburn modifié", "Historien"]} 1 +2024-09-11 09:04:37.941824 2024-09-11 09:04:37.941829 38359821-3277-4a5f-ac7e-5e0c1ea19bfc {"md5": "b6ca237e8e2def6247de942a5c3b1aed", "pid": "120122545", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/120122545", "source": "IDREF"}], "preferred_name": "Viel, Jean-Augustin-Pascal", "country_associated": "fr", "authorized_access_point": "Viel, Jean-Augustin-Pascal"} 1 +2024-09-11 09:04:38.021533 2024-09-11 09:04:38.021539 3980d44e-90e0-429b-9fde-cc8768e2d4a7 {"md5": "8ccb6873a74f272f8e18d42d460e777b", "pid": "120196204", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/120196204", "source": "IDREF"}], "preferred_name": "Zakin, D.", "country_associated": "fr", "authorized_access_point": "Zakin, D.", "biographical_information": ["Docteur (1939)"]} 1 +2024-09-11 09:04:38.081165 2024-09-11 09:04:38.081169 1ffa76f3-9511-4696-a48d-ce107293f743 {"md5": "81893dfc79d37f80b9314b013394642f", "pid": "120483076", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/120483076", "source": "IDREF"}], "variant_name": ["Veillon, Gabriel Isaac"], "date_of_birth": "1733-03-28", "date_of_death": "1807-06-09", "preferred_name": "Veillon, Isaac", "country_associated": "sz", "variant_access_point": ["Veillon, Gabriel Isaac"], "authorized_access_point": "Veillon, Isaac, 1733-1807", "biographical_information": ["Gabriel Isaac Veillon, né à Bex (Suisse), le 28 mars 1733, fondateur d'une maison de commerce à Nice. Député extraordinaire du comté de Nice, avec Jean Dominique Blanqui, auprès de la Convention, pour le rattachement du comté à la France (24 octobre 1792-31 janvier 1793). Décédé à Roche (canton de Vaud, Suisse), le 9 juin 1807"]} 1 +2024-09-11 09:04:38.149125 2024-09-11 09:04:38.149129 98d3f768-131d-42b0-824b-f4a7ceffc2d9 {"md5": "f6a3ff1804338c34474e30f645292b21", "pid": "120678918", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/120678918", "source": "IDREF"}], "preferred_name": "Confédération générale de la production française", "country_associated": "fr", "date_of_termination": "1936", "date_of_establishment": "1919", "authorized_access_point": "Confédération générale de la production française"} 1 +2024-09-11 09:04:38.216246 2024-09-11 09:04:38.216249 55f881f1-8ba0-4573-8061-1d7acef8bfbb {"md5": "db254a43eefe07377eccdb9fc4a43207", "pid": "120767848", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/120767848", "source": "IDREF"}], "preferred_name": "Rencontre internationale de l'Assomption pour le dialogue", "date_of_termination": "2006-08-06", "date_of_establishment": "2006-07-27", "authorized_access_point": "Rencontre internationale de l'Assomption pour le dialogue (03 ; 2006 ; Nairobi)"} 1 +2024-09-11 09:04:38.273975 2024-09-11 09:04:38.27398 7681e063-93d8-4261-aea3-a5e87a26e6d2 {"md5": "3ec89b195142ae72f68fcc4266ce12fd", "pid": "120895579", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/120895579", "source": "IDREF"}], "preferred_name": "Comité d'experts sur la recherche en matière de sport", "country_associated": "fr", "authorized_access_point": "Comité d'experts sur la recherche en matière de sport"} 1 +2024-09-11 09:04:38.335095 2024-09-11 09:04:38.3351 0a98aca1-22c1-497d-bee2-dbb092180553 {"md5": "58474185c76b402ef21480c3456fc4cc", "pid": "121150283", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/121150283", "source": "IDREF"}], "date_of_birth": "1952-07-07", "preferred_name": "Haas, Jean-François", "country_associated": "sz", "authorized_access_point": "Haas, Jean-François, 1952-....", "biographical_information": ["Écrivain. Carrière d'enseignant au Collège de Gambach à Fribourg (Suisse)"]} 1 +2024-09-11 09:04:38.402106 2024-09-11 09:04:38.402109 e3f0cbe9-e136-471a-8e21-ffc2f958d5ca {"md5": "72642a53e3b80b74d41c894553137795", "pid": "121151778", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/121151778", "source": "IDREF"}], "variant_name": ["Bardin-Lesage, Pauline", "Bardin, Pauline"], "date_of_birth": "1970-04-14", "preferred_name": "Lesage, Pauline", "country_associated": "fr", "variant_access_point": ["Bardin-Lesage, Pauline", "Bardin, Pauline"], "authorized_access_point": "Lesage, Pauline, 1970-...."} 1 +2024-09-11 09:04:38.459272 2024-09-11 09:04:38.459276 103b1395-177b-47f8-82a0-957e10896653 {"md5": "7c68078e74f7ef2ef6689b3d377a6100", "pid": "121294757", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/121294757", "source": "IDREF"}], "preferred_name": "Congresso nazionale di archeologia medievale", "country_associated": "it", "date_of_termination": "2006-09-30", "date_of_establishment": "2006-09-26", "authorized_access_point": "Congresso nazionale di archeologia medievale (04 ; 2006 ; Sienne, Italie)"} 1 +2024-09-11 09:04:38.537751 2024-09-11 09:04:38.537758 a5280d15-f460-4c9c-b1ca-6347fd39de28 {"md5": "a6493d74c31ba2001bf1aebf0471b5b9", "pid": "121469395", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/121469395", "source": "IDREF"}], "date_of_birth": "1943", "preferred_name": "Jurjevics, Juris", "country_associated": "xxu", "authorized_access_point": "Jurjevics, Juris, 1943-....", "biographical_information": ["Né en Lituanie"]} 1 +2024-09-11 09:04:38.61069 2024-09-11 09:04:38.610694 74d42321-4726-4045-8bac-0614b30e2e0a {"md5": "78f7887d1f072dc678b9b842a84cedda", "pid": "121758419", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/121758419", "source": "IDREF"}], "preferred_name": "Pharmaziehistorische Biennale", "country_associated": "gw", "date_of_termination": "2002-04-28", "date_of_establishment": "2002-04-26", "authorized_access_point": "Pharmaziehistorische Biennale (2002 ; Karlsruhe, Allemagne)"} 1 +2024-09-11 09:04:38.667495 2024-09-11 09:04:38.667499 957ca299-8671-4000-9be7-785d9f56f256 {"md5": "d81b56fbe9a2317a4e9c4647316a698e", "pid": "121801713", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/121801713", "source": "IDREF"}], "date_of_birth": "1973", "preferred_name": "Da Silva Lala, Amaral", "country_associated": "ao", "authorized_access_point": "Da Silva Lala, Amaral, 1973-...."} 1 +2024-09-11 09:04:38.722849 2024-09-11 09:04:38.722853 31a791aa-2803-4864-88f6-db4bdb18e7ab {"md5": "776c84c1778727415eeeeae1df191798", "pid": "121832260", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/121832260", "source": "IDREF"}], "date_of_birth": "1962", "preferred_name": "Hoppe, Albrecht", "country_associated": "gw", "authorized_access_point": "Hoppe, Albrecht, 1962-....", "biographical_information": ["Chercheur à l'Arbeitsstelle für Kommunikationsgeschichte und interkulturelle Publizistik ; puis chercheur à l'Otto-Friedrich-Universität Bamberg (en 2020)"]} 1 +2024-09-11 09:04:38.779079 2024-09-11 09:04:38.779082 b510aed0-c0a9-4233-a7d0-43c3b7e2572e {"md5": "e84df84e6fce22406ecefbf324b59338", "pid": "122093186", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/122093186", "source": "IDREF"}], "preferred_name": "Vitellaro Zuccarello, Piero", "country_associated": "it", "authorized_access_point": "Vitellaro Zuccarello, Piero"} 1 +2024-09-11 09:04:38.837081 2024-09-11 09:04:38.837086 57ad3884-b45b-4620-b4c9-2e43c750f5ab {"md5": "2eddd4bed99655469ffa394118faab1e", "pid": "122301374", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/122301374", "source": "IDREF"}], "preferred_name": "Neveu, Auguste", "country_associated": "fr", "authorized_access_point": "Neveu, Auguste"} 1 +2024-09-11 09:04:38.894195 2024-09-11 09:04:38.894199 c3a01d97-ffe4-4501-8607-2d274b9a0ad3 {"md5": "238421f46eb75a13a505c6ddeb9c79a0", "pid": "122411749", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/122411749", "source": "IDREF"}], "variant_name": ["Katholieke universiteit Nijmegen. Faculteit der letteren. Afdeling taal en spraak", "Katholieke universiteit Nijmegen. Faculteit der letteren. Department of language and speech"], "preferred_name": "Katholieke universiteit Nijmegen. Afdeling taal en spraak", "country_associated": "ne", "variant_access_point": ["Katholieke universiteit Nijmegen. Faculteit der letteren. Afdeling taal en spraak", "Katholieke universiteit Nijmegen. Faculteit der letteren. Department of language and speech"], "date_of_establishment": "1988", "parallel_access_point": ["Katholieke universiteit Nijmegen. Department of language and speech"], "authorized_access_point": "Katholieke universiteit Nijmegen. Afdeling taal en spraak", "biographical_information": ["P.O. Box 9103, 6500 HD Nijmegen, Pays-Bas"]} 1 +2024-09-11 09:04:38.9615 2024-09-11 09:04:38.961505 c5a00e6e-7aa7-4531-8bd4-1f08babe5f85 {"md5": "d0ab356d0b4e83e2a29e30adb8d43faf", "pid": "122514904", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/122514904", "source": "IDREF"}], "preferred_name": "Charvet, Pierre Alexandre", "country_associated": "fr", "authorized_access_point": "Charvet, Pierre Alexandre", "biographical_information": ["Docteur ès sciences, de Grenoble (de département de l'Isère)"]} 1 +2024-09-11 09:04:39.01711 2024-09-11 09:04:39.017113 d8580512-fa4a-4f16-ba4a-d55be4f7b352 {"md5": "b0e1e1166248379ca3268280aaa24686", "pid": "122677315", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/122677315", "source": "IDREF"}], "preferred_name": "Florentz, Didier", "authorized_access_point": "Florentz, Didier", "biographical_information": ["Ilustrateur, coloriste de bande dessinée"]} 1 +2024-09-11 09:04:39.074611 2024-09-11 09:04:39.074616 6f76f6fb-8c1e-40d3-af91-4f6e3284d30d {"md5": "a4e9a1926f3ccfdf71977ae28220c26a", "pid": "122762142", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/122762142", "source": "IDREF"}], "variant_name": ["D'Hermies, François"], "preferred_name": "Hermies, François d'", "country_associated": "xx", "variant_access_point": ["D'Hermies, François"], "authorized_access_point": "Hermies, François d'", "biographical_information": ["Praticien hospitalier, service d'Ophtalmologie, Anatomo-pathologie tumeurs, Hôpital Hôtel-Dieu (75004 PARIS) en 2007"]} 1 +2024-09-11 09:04:39.133901 2024-09-11 09:04:39.133906 0a324b67-2dfa-4e46-8c69-d5247bc29092 {"md5": "cbe511eae96f1deaf15c705e544d9dbd", "pid": "123006287", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/123006287", "source": "IDREF"}], "preferred_name": "Missione archeologica italiana a Hierapolis", "country_associated": "tu", "authorized_access_point": "Missione archeologica italiana a Hierapolis"} 1 +2024-09-11 09:04:39.196617 2024-09-11 09:04:39.19662 263a0b69-23b0-4360-a065-2e286a72785a {"md5": "3adf2d1e75eeb67482ae127d6b60c26c", "pid": "123007089", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rum", "fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/123007089", "source": "IDREF"}], "preferred_name": "Macedonsky, Nikita", "authorized_access_point": "Macedonsky, Nikita"} 1 +2024-09-11 09:04:39.263168 2024-09-11 09:04:39.263172 7d70d3df-b2d2-4db9-99cc-48ee3f0f436e {"md5": "d980fb3278aafe040936921379177dfd", "pid": "123240638", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/123240638", "source": "IDREF"}], "variant_name": ["Pénard-Morand, Céline"], "date_of_birth": "1977-11-16", "preferred_name": "Morand Céline", "country_associated": "fr", "variant_access_point": ["Pénard-Morand, Céline"], "authorized_access_point": "Morand Céline", "biographical_information": ["Docteur en médecine (2007)"]} 1 +2024-09-11 09:04:39.339684 2024-09-11 09:04:39.339688 616c2f70-cc7b-441e-a9aa-71b1f673356d {"md5": "306fceffec19d1e84ad72f08f7def95a", "pid": "123395321", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/123395321", "source": "IDREF"}], "variant_name": ["Fischetti, Domenico"], "date_of_birth": "1725", "date_of_death": "1810", "preferred_name": "Fischietti, Domenico", "country_associated": "it", "variant_access_point": ["Fischetti, Domenico"], "authorized_access_point": "Fischietti, Domenico, 1725-1810", "biographical_information": ["Compositeur italien", "Collaboration avec Carlo Goldoni pour l'écriture de quatre opéras comiques"]} 1 +2024-09-11 09:04:39.39685 2024-09-11 09:04:39.396853 d6ad4e2d-6f5c-4390-934a-dea4acedfe8e {"md5": "7b04d8389375fa276d68bf77d28cc29e", "pid": "123474825", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/123474825", "source": "IDREF"}], "date_of_birth": "1968", "preferred_name": "Moskowitz, Marina", "country_associated": "xxk", "authorized_access_point": "Moskowitz, Marina, 1968-....", "biographical_information": ["Historienne"]} 1 +2024-09-11 09:04:39.463348 2024-09-11 09:04:39.463353 14ee44d5-8586-4f94-8bb0-7c8c966d8833 {"md5": "9a6eed349f52ed6e4c8785eabcb44819", "pid": "123496225", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/123496225", "source": "IDREF"}], "preferred_name": "Bouteiller, Jérôme", "country_associated": "fr", "authorized_access_point": "Bouteiller, Jérôme", "biographical_information": ["Fondateur et rédacteur en chef de Neteco, quotidien en ligne sur les nouvelles technologies"]} 1 +2024-09-11 09:04:39.522466 2024-09-11 09:04:39.52247 8a341e99-2bb9-49d4-8590-cafb02be1fe6 {"md5": "8f4a729aeb2257d0064430d5d71779b0", "pid": "123609836", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["tur"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/123609836", "source": "IDREF"}], "date_of_birth": "1933", "date_of_death": "2015-11-04", "preferred_name": "Akın, Gülten", "country_associated": "tu", "authorized_access_point": "Akın, Gülten, 1933-2015", "biographical_information": ["Poète"]} 1 +2024-09-11 09:04:39.581623 2024-09-11 09:04:39.581627 7fcf734d-722d-4020-ac17-481ed92aef5b {"md5": "90c11519775d6aae12984918be13a9aa", "pid": "124179290", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/124179290", "source": "IDREF"}], "date_of_birth": "1971", "preferred_name": "Lavelle, Patricia", "country_associated": "fr", "authorized_access_point": "Lavelle, Patricia, 1971-....", "biographical_information": ["Docteur en philosophie et sciences sociales. Chercheuse rattachée au Centre de recherches interdisciplinaires sur l'Allemagne de l'EHESS (en 2008)"]} 1 +2024-09-11 09:04:39.64043 2024-09-11 09:04:39.640433 6c7580b7-c43b-41e5-863d-46b589eed0cd {"md5": "20c65711713c72a404af8b19108d968b", "pid": "12420709X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/12420709X", "source": "IDREF"}], "preferred_name": "Vidal, Nuno", "country_associated": "xx", "authorized_access_point": "Vidal, Nuno", "biographical_information": ["Enseignant à la Faculty of Economics, University of Coimbra, Portugal"]} 1 +2024-09-11 09:04:39.696216 2024-09-11 09:04:39.696221 cac4c222-8a4d-45f3-9d87-25e315016fe3 {"md5": "c7fc6309c6a67880abfc1ce3b0a0c29a", "pid": "124217273", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/124217273", "source": "IDREF"}], "preferred_name": "Barbi, Elisabetta", "country_associated": "it", "authorized_access_point": "Barbi, Elisabetta", "biographical_information": ["Professeur à l'Université de Messina (Italie) au département Economie, Statistique, Mathématiques et Sociologie \\"W. Pareto\\" (en 2008)."]} 1 +2024-09-11 09:04:39.762029 2024-09-11 09:04:39.762032 490c6984-120a-489d-a4be-95e9c08e92a3 {"md5": "6f67a23af153fd4c6ebdfc136da1da84", "pid": "12430284X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["pol"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/12430284X", "source": "IDREF"}], "date_of_birth": "1911", "preferred_name": "Ciętak, Zdzisław", "country_associated": "pl", "authorized_access_point": "Ciętak, Zdzisław, 1911-...."} 1 +2024-09-11 09:04:39.819521 2024-09-11 09:04:39.819526 3b24c1f5-9a51-40b3-9e61-6ab262805866 {"md5": "c832d731efd0cc318775463498cca51c", "pid": "124342078", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["tha"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/124342078", "source": "IDREF"}], "variant_name": ["สถาบันวิจัยชาวเขา (เชียงใหม่)", "Tribal Research Institute, Department of Public Welfare, Ministry of Labour and Social Welfare", "Tribal Research Institute, Department of Public Welfare", "Tribal Research Institute (Chiangmai, Thaïlande)", "Tribal Research Institute", "TRI", "Sathāban Wičhai Chāokhao", "Sathāban Wičhai Chāokhao Chīang Mai", "Sathāban Wičhai Chāokhao Čhangwat Chīang Mai", "สถาบันวิจัยชาวเขา", "Sathāban Wičhai Chāokhao", "สถาบันวิจัยชาวเขา จังหวัดเชียงใหม่", "Sathāban Wičhai Chāokhao Čhangwat Chīang Mai"], "preferred_name": "Sathāban Wičhai Chāokhao (Chīang Mai)", "country_associated": "th", "date_of_termination": "2002", "variant_access_point": ["Tribal Research Institute, Department of Public Welfare, Ministry of Labour and Social Welfare", "Tribal Research Institute, Department of Public Welfare", "Tribal Research Institute (Chiangmai, Thaïlande)", "Tribal Research Institute", "TRI", "Sathāban Wičhai Chāokhao", "Sathāban Wičhai Chāokhao Chīang Mai", "Sathāban Wičhai Chāokhao Čhangwat Chīang Mai", "สถาบันวิจัยชาวเขา", "Sathāban Wičhai Chāokhao", "สถาบันวิจัยชาวเขา จังหวัดเชียงใหม่", "Sathāban Wičhai Chāokhao Čhangwat Chīang Mai"], "date_of_establishment": "1965", "authorized_access_point": "Sathāban Wičhai Chāokhao (Chīang Mai)", "biographical_information": ["Institut national de recherche sur les montagnards en Thaïlande, situé à Chiang Mai"]} 1 +2024-09-11 09:04:39.880068 2024-09-11 09:04:39.880072 3fcc4f71-46c6-4d36-a1e8-8a4c228a6246 {"md5": "29dff47f65072ee9cc20ce13040e02f6", "pid": "124497209", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/124497209", "source": "IDREF"}], "date_of_birth": "1939", "preferred_name": "Wickop, Hanne", "country_associated": "gw", "authorized_access_point": "Wickop, Hanne, 1939-...", "biographical_information": ["Artiste peintre et écrivain"]} 1 +2024-09-11 09:04:39.938153 2024-09-11 09:04:39.938157 9815c7e5-0978-4e0f-b167-a4f7ee383767 {"md5": "1c85797296b5c6be384c6095a0c57f30", "pid": "124508758", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/124508758", "source": "IDREF"}], "date_of_birth": "1930-12-27", "preferred_name": "Matko, Dubravko J. I.", "country_associated": "xx", "authorized_access_point": "Matko, Dubravko J. I., 1930-", "biographical_information": ["Spécialiste de l'économie soviétique. Membre de l'institute of soviet and east european studies (Université de Glasgow)"]} 1 +2024-09-11 09:04:40.005884 2024-09-11 09:04:40.005888 661d4037-6485-4ac6-983d-f436b007e41f {"md5": "d09cc3fc0706d0f9fc46d91df8568c23", "pid": "124670954", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["cze"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/124670954", "source": "IDREF"}], "preferred_name": "Galerie hlavního města Prahy (Prague)", "date_of_establishment": "1963", "authorized_access_point": "Galerie hlavního města Prahy (Prague)", "biographical_information": ["Galerie municipale fondée en 1963"]} 1 +2024-09-11 09:04:40.073078 2024-09-11 09:04:40.073082 ca7df78e-2dbb-4e22-853d-0ff1d4470224 {"md5": "3ec287fccd0ae26893cdb94aebe6835e", "pid": "124764916", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/124764916", "source": "IDREF"}], "variant_name": ["Oberhauser, O.C."], "date_of_birth": "1951-..-..", "preferred_name": "Oberhauser, Otto", "country_associated": "au", "variant_access_point": ["Oberhauser, O.C."], "authorized_access_point": "Oberhauser, Otto, 1951-....", "biographical_information": ["Bibliothécaire et chercheur en sciences de l'information en poste à l'université technique de Vienne, Autriche (en 2008)"]} 1 +2024-09-11 09:04:40.133144 2024-09-11 09:04:40.13315 da98b8b9-346a-4ec5-bf6a-68bb53270ace {"md5": "cdeb903203cf15ea56873fc9235543cd", "pid": "124806376", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/124806376", "source": "IDREF"}], "variant_name": ["France. Académie (Créteil). Mission d'action culturelle des cultures et langues régionales"], "preferred_name": "France. Académie (Créteil). Mission de l'action culturelle des cultures et langues régionales", "country_associated": "fr", "variant_access_point": ["France. Académie (Créteil). Mission d'action culturelle des cultures et langues régionales"], "authorized_access_point": "France. Académie (Créteil). Mission de l'action culturelle des cultures et langues régionales", "biographical_information": ["Adresse : 4 rue Georges-Enesco, 94010 Créteil Cedex"]} 1 +2024-09-11 09:04:40.192811 2024-09-11 09:04:40.192815 1640d5b6-d643-4ae1-a0bc-cd4cf2969745 {"md5": "74d2b94848701e57732379b535392297", "pid": "125074506", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/125074506", "source": "IDREF"}], "preferred_name": "Grody, Steve", "country_associated": "xxu", "authorized_access_point": "Grody, Steve", "biographical_information": ["Spécialiste du graffiti américain"]} 1 +2024-09-11 09:04:40.249587 2024-09-11 09:04:40.249591 306c8e9e-db34-4a9f-ac14-1806a4da3ce6 {"md5": "ca218ef943f773c67c9594c0e3e71d83", "pid": "125871074", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["chi"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/125871074", "source": "IDREF"}], "variant_name": ["河北省 (Chine). 文物管理处", "Hebei sheng (Chine). Wenwu guanli chu", "Hebei sheng (Chine). Wen wu kuan li chʻu", "Hebei sheng (Chine). Wen-wu kuan-li chʻu"], "preferred_name": "Hebei sheng (Chine). Wen wu guan li chu", "country_associated": "cc", "variant_access_point": ["Hebei sheng (Chine). Wenwu guanli chu", "Hebei sheng (Chine). Wen wu kuan li chʻu", "Hebei sheng (Chine). Wen-wu kuan-li chʻu"], "authorized_access_point": "Hebei sheng (Chine). Wen wu guan li chu", "biographical_information": ["Transcription pin yin"]} 1 +2024-09-11 09:04:40.307565 2024-09-11 09:04:40.307567 ce95a789-ea2a-4ecb-93e4-e47b42058fca {"md5": "ae6bcdb2079ee0edccb5787a6cff9864", "pid": "126029784", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/126029784", "source": "IDREF"}], "date_of_birth": "1925", "preferred_name": "Khanna, Krishen", "country_associated": "ii", "authorized_access_point": "Khanna, Krishen, 1925-....", "biographical_information": ["Artiste"]} 1 +2024-09-11 09:04:40.366555 2024-09-11 09:04:40.366562 0edbe302-e21b-4cb9-a342-0d9e76b14349 {"md5": "f9b4bbb05c89ead69631383266269d01", "pid": "126078858", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/126078858", "source": "IDREF"}], "date_of_birth": "1980-09-02", "preferred_name": "Luiggi, Yannick", "country_associated": "fr", "authorized_access_point": "Luiggi, Yannick, 1980-....", "biographical_information": ["Chirurgien-dentiste. Né le 2 septembre 1980 à Marseille. Thèse d'exercice soutenue à Marseille le 23 juin 2008"]} 1 +2024-09-11 09:04:40.43448 2024-09-11 09:04:40.434486 02ea7a87-7024-4df1-b601-e165bba468ea {"md5": "590a3b511b42d8b34c3647398a5a3492", "pid": "126483361", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa", "ita"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/126483361", "source": "IDREF"}], "preferred_name": "Congreso Internacional Ciudades amuralladas", "country_associated": "sp", "date_of_termination": "2005-11-26", "date_of_establishment": "2005-11-24", "authorized_access_point": "Congreso Internacional Ciudades amuralladas (2005 ; Pamplona)"} 1 +2024-09-11 09:04:40.505244 2024-09-11 09:04:40.505251 087fe8d3-c660-42ad-9d20-aa119f232a7a {"md5": "2cfe88353f9fc4568d8a86bfb43e7384", "pid": "126596131", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/126596131", "source": "IDREF"}], "preferred_name": "Casanova, Christian", "country_associated": "sz", "authorized_access_point": "Casanova, Christian"} 1 +2024-09-11 09:04:40.579137 2024-09-11 09:04:40.579142 652e4325-c09a-4f41-a237-46676c44bb52 {"md5": "aecce7f1f9ba9caff0e490c540767b25", "pid": "126598371", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/126598371", "source": "IDREF"}], "variant_name": ["Göppinger Staufertage"], "preferred_name": "Staufertage", "country_associated": "gw", "date_of_termination": "2004-11-14", "variant_access_point": ["Göppinger Staufertage (21 ; 2004)"], "date_of_establishment": "2004-11-12", "authorized_access_point": "Staufertage (21 ; 2004 ; Göppingen, Allemagne)"} 1 +2024-09-11 09:04:40.636035 2024-09-11 09:04:40.636037 973a9785-4b08-4cf6-9c7f-eb10d8656cbc {"md5": "b481403157e76b38f55b2f0c3319b3b7", "pid": "126698104", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/126698104", "source": "IDREF"}], "date_of_birth": "1965", "preferred_name": "Matthews, Gelien", "authorized_access_point": "Matthews, Gelien, 1965-....", "biographical_information": ["Enseigne l'histoire à Caribbean Nazarene College, Trinidad et Tobago"]} 1 +2024-09-11 09:04:40.702411 2024-09-11 09:04:40.702415 e8b4d9ff-04d8-4f5d-b7c9-c61e0b09d74f {"md5": "d3b3d02afd842159715353a7d4608fd8", "pid": "127065113", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/127065113", "source": "IDREF"}], "date_of_birth": "1978", "preferred_name": "Scheffler, Thilo", "country_associated": "gw", "authorized_access_point": "Scheffler, Thilo, 1978-...", "biographical_information": ["Etudes d'histoire de l'art, de média et de communication"]} 1 +2024-09-11 09:04:40.759732 2024-09-11 09:04:40.759737 87f45309-6d18-4beb-bd69-ccf0a3dcde81 {"md5": "eb6a3607200d6a4feac39d41e6762467", "pid": "127163905", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/127163905", "source": "IDREF"}], "preferred_name": "Chauvigny (Vienne, département). Musées", "country_associated": "fr", "authorized_access_point": "Chauvigny (Vienne, département). Musées", "biographical_information": ["Adresse : 3 rue Saint-Pierre, BP 64, 86300 Chauvigny. Contact : 05 49 46 35 45. Adresse électronique : musees.chauvigny@alienor.org"]} 1 +2024-09-11 09:05:24.837543 2024-09-11 09:05:24.837548 c7750f5e-5ce7-47fc-a625-9ed77247e7e5 {"md5": "8a577ccff04a62f3da2f147a7dfd8213", "pid": "19859318X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/19859318X", "source": "IDREF"}], "preferred_name": "Gregerson, Patrick", "authorized_access_point": "Gregerson, Patrick"} 1 +2024-09-11 09:04:40.815749 2024-09-11 09:04:40.815753 b94a9d43-59d1-4a1a-bcfd-6caf651b563a {"md5": "1713cd5c55bded0cd95953bbcb41d735", "pid": "127251502", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/127251502", "source": "IDREF"}], "date_of_birth": "1961", "preferred_name": "Zierl, Andreas", "authorized_access_point": "Zierl, Andreas, 1961-", "biographical_information": ["Professeur de philologie, Riemenschneider-Gymnasium di Würzburg (en 2006)"]} 1 +2024-09-11 09:04:40.873513 2024-09-11 09:04:40.873516 c5d878d8-4ffb-42c7-a301-92bd2e302c76 {"md5": "c66c0cecaf5b9f97d3e4615ef35df802", "pid": "127287159", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/127287159", "source": "IDREF"}], "variant_name": ["Ormsby-Gore, W. G. A.", "Gore, William George Arthur Ormsby", "Harlech, W. George Arthur", "Harlech, William George Arthur Ormsby-Gore, Baron"], "date_of_birth": "1885", "date_of_death": "1964", "preferred_name": "Ormsby-Gore, William George Arthur", "country_associated": "xxk", "variant_access_point": ["Ormsby-Gore, W. G. A.", "Gore, William George Arthur Ormsby", "Harlech, W. George Arthur", "Harlech, William George Arthur Ormsby-Gore, Baron"], "authorized_access_point": "Ormsby-Gore, William George Arthur, 1885-1964"} 1 +2024-09-11 09:04:40.933887 2024-09-11 09:04:40.933892 1253829f-f801-4489-82c8-03880483bd30 {"md5": "dc153d0303dbb3b53b66e348763f8f6d", "pid": "127334807", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/127334807", "source": "IDREF"}], "date_of_birth": "1957-01-10", "preferred_name": "Deloupy, Bernard", "country_associated": "fr", "authorized_access_point": "Deloupy, Bernard, 1957-...."} 1 +2024-09-11 09:04:40.998077 2024-09-11 09:04:40.998081 5968da15-051b-453a-a3b3-3cf7d1701d39 {"md5": "bb459057fec1d84f1c0b9885bd48fa72", "pid": "127364013", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/127364013", "source": "IDREF"}], "preferred_name": "Centre d'études et de recherches prémontrées. Colloque", "country_associated": "be", "date_of_termination": "1999", "date_of_establishment": "1999", "authorized_access_point": "Centre d'études et de recherches prémontrées. Colloque (24 ; 1998 ; Abbaye Saint-Michel de Frigolet, Bouches du Rhone et Prieuré Sainte-Anne de Bonlieu, Drôme)"} 1 +2024-09-11 09:04:41.068241 2024-09-11 09:04:41.068245 aee37ba3-4566-441b-9eb6-f723c4d117af {"md5": "92b9b10878bb7a5df5712bad69194648", "pid": "127488790", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/127488790", "source": "IDREF"}], "preferred_name": "Wündisch, Sebastian", "country_associated": "gw", "authorized_access_point": "Wündisch, Sebastian", "biographical_information": ["Avocat"]} 1 +2024-09-11 09:04:41.12716 2024-09-11 09:04:41.127165 2afdfcce-86a8-436c-9d02-9ecd067ec3f5 {"md5": "f1cefae5e5e31513fe1b79b5f097f7c6", "pid": "127521038", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/127521038", "source": "IDREF"}], "preferred_name": "Lambert, Nicolas C. G.", "country_associated": "xxc", "authorized_access_point": "Lambert, Nicolas C. G.", "biographical_information": ["Thèse de droit, Faculty of Law, McGill University, Montreal (Canada), 2005"]} 1 +2024-09-11 09:04:41.207261 2024-09-11 09:04:41.207266 d0ebe967-2021-4855-a84c-e8a3408fc60f {"md5": "9134e47b33f4e2fb956d88d8e46a5d63", "pid": "127789111", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/127789111", "source": "IDREF"}], "variant_name": ["International geographical congress", "Union géographique internationale. Congrès international de géographie", "UGI. International geographical congress"], "preferred_name": "Congrès international de géographie", "country_associated": "ti", "date_of_termination": "2008-08-15", "variant_access_point": ["International geographical congress (31 ; 2008 ; Tunis)", "Union géographique internationale. Congrès international de géographie (31 ; 2008 ; Tunis)", "UGI. International geographical congress (31 ; 2008 ; Tunis)"], "date_of_establishment": "2008-08-12", "authorized_access_point": "Congrès international de géographie (31 ; 2008 ; Tunis)"} 1 +2024-09-11 09:04:41.265765 2024-09-11 09:04:41.26577 0830dd9e-9c12-4d8f-b6c0-f00068f5e2ed {"md5": "76903980c75d56b81ec38dcaebecb0cb", "pid": "127838732", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/127838732", "source": "IDREF"}], "variant_name": ["DGP", "German society for protozoologie"], "preferred_name": "Deutsche Gesellschaft für Protozoologie", "country_associated": "gw", "variant_access_point": ["DGP", "German society for protozoologie"], "date_of_establishment": "1981", "authorized_access_point": "Deutsche Gesellschaft für Protozoologie", "biographical_information": ["Société fondée à Münster en 1981"]} 1 +2024-09-11 09:04:41.322623 2024-09-11 09:04:41.322626 3d41f39d-5a5b-4b78-bc1a-8eb801a75838 {"md5": "797eeb05cac34b25b9a51ccd316db48c", "pid": "127859829", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/127859829", "source": "IDREF"}], "preferred_name": "Kolb, Erich", "country_associated": "gw", "authorized_access_point": "Kolb, Erich"} 1 +2024-09-11 09:04:41.38192 2024-09-11 09:04:41.381925 b5446677-57ed-44b9-bd8f-d9a5cac57742 {"md5": "501ca258fc3e29e950ea6a6f73b4bc49", "pid": "128116951", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/128116951", "source": "IDREF"}], "date_of_birth": "1967", "preferred_name": "Oppel, Kenneth", "country_associated": "xxc", "authorized_access_point": "Oppel, Kenneth, 1967-...."} 1 +2024-09-11 09:04:41.45986 2024-09-11 09:04:41.459864 e341d35f-b438-445c-b94a-41a253e1fcef {"md5": "26cf65c33313ef0b1f200265357a5237", "pid": "128258365", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "qualifier": "Sir", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/128258365", "source": "IDREF"}], "preferred_name": "Willis, Frederick J., Sir", "country_associated": "xxk", "authorized_access_point": "Willis, Frederick J., Sir"} 1 +2024-09-11 09:04:41.518163 2024-09-11 09:04:41.518168 73b4590d-115e-471a-8cc5-6e7af2165e64 {"md5": "924f6c3b65d0d786e7baa0ddb7d51bb5", "pid": "128283661", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ara"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/128283661", "source": "IDREF"}], "variant_name": ["Hāshim, ʿAbd al-Hādī", "ʿAbd al-Hādī Hāshim", "هاشم، عبد الهادي"], "preferred_name": "Hāšim, ʿAbd al-Hādī", "variant_access_point": ["Hāshim, ʿAbd al-Hādī", "ʿAbd al-Hādī Hāshim", "هاشم، عبد الهادي"], "authorized_access_point": "Hāšim, ʿAbd al-Hādī"} 1 +2024-09-11 09:04:41.579214 2024-09-11 09:04:41.579219 2b2c86c0-5c6c-491c-938e-b7755ba50ba2 {"md5": "0f255531c9f94ffe1074e30bf521ec17", "pid": "128499877", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/128499877", "source": "IDREF"}], "preferred_name": "Union d'électricité", "country_associated": "fr", "date_of_establishment": "1904", "authorized_access_point": "Union d'électricité", "biographical_information": ["Adresse : 3 rue de Messine, 75008 Paris"]} 1 +2024-09-11 09:04:41.636968 2024-09-11 09:04:41.636972 dfdcf8b9-cc3e-49b8-933b-83efdc1ce6e9 {"md5": "07cb40ba37c34eb7813653b8ec2d2f91", "pid": "128529202", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/128529202", "source": "IDREF"}], "date_of_birth": "1904-11-14", "date_of_death": "1963-01-02", "preferred_name": "Powell, Dick", "country_associated": "xxu", "authorized_access_point": "Powell, Dick, 1904-1963", "biographical_information": ["Acteur, réalisateur américain"]} 1 +2024-09-11 09:04:41.693636 2024-09-11 09:04:41.69364 e0850009-fce8-44bd-99f6-ae4b7dd41860 {"md5": "dd3dcd72c2d1aa544aad0e5b77538bb6", "pid": "128537663", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/128537663", "source": "IDREF"}], "date_of_birth": "1920-..-..", "date_of_death": "2015-01-17", "preferred_name": "Blackadar, Alfred K.", "country_associated": "xxu", "authorized_access_point": "Blackadar, Alfred K., 1920-2015", "biographical_information": ["The Pennsylvania State University, Department of Meteorology, University Park, PA (USA)"]} 1 +2024-09-11 09:04:41.756049 2024-09-11 09:04:41.756052 3ed94291-e4e7-46b9-862d-44a42067271a {"md5": "2ae2a23821b5184dfe9fa3fb38a7844a", "pid": "128585544", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre", "ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/128585544", "source": "IDREF"}], "variant_name": ["Vrecken, Paul Jean Mathieu van der"], "date_of_birth": "1777", "date_of_death": "1868", "preferred_name": "Van der Vrecken, Paul van der", "country_associated": "gw", "variant_access_point": ["Vrecken, Paul Jean Mathieu van der"], "authorized_access_point": "Van der Vrecken, Paul van der, 1777-1868", "biographical_information": ["Agent du Saint Siège et comte romain"]} 1 +2024-09-11 09:04:41.819472 2024-09-11 09:04:41.819477 2b922375-329f-4c1b-be40-0321f67b6d25 {"md5": "d2b5deb84388069e59364782dce92fab", "pid": "128587679", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/128587679", "source": "IDREF"}], "date_of_birth": "1951-11-10", "preferred_name": "Redner, Sidney", "country_associated": "xxu", "authorized_access_point": "Redner, Sidney, 1951-....", "biographical_information": ["Physicien. Professeur de physique à l'université de Boston, Mass., depuis 1989 (en 2017)"]} 1 +2024-09-11 09:04:41.896047 2024-09-11 09:04:41.896051 974d5c29-701e-4f98-b4cf-597a69987074 {"md5": "27d055182e4759897bebf4f2e7397ab9", "pid": "128590874", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/128590874", "source": "IDREF"}], "date_of_birth": "1947", "preferred_name": "Dholakia, Bakul H.", "country_associated": "ii", "authorized_access_point": "Dholakia, Bakul H., 1947-...."} 1 +2024-09-11 09:04:41.972445 2024-09-11 09:04:41.972448 133540d4-2fab-41d9-bb69-8d58a3879694 {"md5": "849c9ec2459cc3503c8bef1777dcbd06", "pid": "128657642", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/128657642", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Scheidt, Petra", "country_associated": "gw", "authorized_access_point": "Scheidt, Petra, 19..-...."} 1 +2024-09-11 09:04:42.048771 2024-09-11 09:04:42.048775 431234c2-ded3-4d8c-9da7-22bde0ed78a9 {"md5": "12844401a81823bda6f580545b21e5cf", "pid": "129182176", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/129182176", "source": "IDREF"}], "variant_name": ["Platt Gregory, Daniel"], "preferred_name": "Gregory, Daniel Platt", "country_associated": "xxu", "variant_access_point": ["Platt Gregory, Daniel"], "authorized_access_point": "Gregory, Daniel Platt", "biographical_information": ["Architecte, éditeur en chef de Houseplans.com"]} 1 +2024-09-11 09:04:42.106047 2024-09-11 09:04:42.106051 02e56b31-9999-43d0-92a1-40fb4410c611 {"md5": "9c9266d66c3cc6b4abaccfa6756fdf60", "pid": "129211273", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["chi"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/129211273", "source": "IDREF"}], "variant_name": ["國家圖書館 (Taipei, Taiwan)", "Kuo chia tʻu shu kuan (Taipei, Taiwan)", "Guojia tushuguan (Taipei, Taiwan)", "Guojia tushuguan (Chine)"], "preferred_name": "Guo jia tu shu guan (Taipei, Taiwan)", "variant_access_point": ["Kuo chia tʻu shu kuan (Taipei, Taiwan)", "Guojia tushuguan (Taipei, Taiwan)", "Guojia tushuguan (Chine)"], "authorized_access_point": "Guo jia tu shu guan (Taipei, Taiwan)", "biographical_information": ["Transcription pin yin", "Le nom Guo li zhong yang tu shu guan a été changé en Guo jiao tu shu guan le 31 janvier 1996 par ordre du Président de la république de Taiwan"]} 1 +2024-09-11 09:04:42.173622 2024-09-11 09:04:42.173625 4f66fda5-b06c-4a15-928a-f62215550e9c {"md5": "fb37a6f00d06be15db6a43079ee833a9", "pid": "129419915", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/129419915", "source": "IDREF"}], "preferred_name": "Velásquez, Rafael", "country_associated": "cu", "authorized_access_point": "Velásquez, Rafael", "biographical_information": ["Auteur cubain"]} 1 +2024-09-11 09:04:42.240156 2024-09-11 09:04:42.24016 3a5e695c-7c94-4b81-b0c6-2f341109c08a {"md5": "bd7843424e0cc1e2441e86f3772fbaaa", "pid": "129558311", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/129558311", "source": "IDREF"}], "preferred_name": "Sperry, Stuart M.", "country_associated": "xxu", "authorized_access_point": "Sperry, Stuart M."} 1 +2024-09-11 09:04:42.326433 2024-09-11 09:04:42.326438 3a47ca19-0ce7-4eee-9150-a5716bc9ebd4 {"md5": "aa99be955f6f59cf04843e489b33b2d4", "pid": "129801577", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/129801577", "source": "IDREF"}], "preferred_name": "Koizumi, Hiroyasu", "authorized_access_point": "Koizumi, Hiroyasu", "biographical_information": ["Mathématicien. En poste à la faculté de Science de l'Institut de technologie d'Himeji au Japon en 2003."]} 1 +2024-09-11 09:04:42.391902 2024-09-11 09:04:42.391906 076f798d-0a7b-4d8b-82cf-b680379a2539 {"md5": "1978aed8b71ae69b4eb2fffe38cfb584", "pid": "129871303", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/129871303", "source": "IDREF"}], "date_of_birth": "1963", "preferred_name": "Durst, David C.", "country_associated": "xxu", "authorized_access_point": "Durst, David C., 1963-...."} 1 +2024-09-11 09:04:42.450035 2024-09-11 09:04:42.450038 e925a969-9df4-4271-9335-93a5e24e0fc2 {"md5": "1dd1e2314f047c30735a0b1964a85437", "pid": "129966053", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/129966053", "source": "IDREF"}], "preferred_name": "Rickitt, Richard", "authorized_access_point": "Rickitt, Richard", "biographical_information": ["Co-founder of Clockwork Digital; Specialised on the history and technology of special effects"]} 1 +2024-09-11 09:04:42.532304 2024-09-11 09:04:42.53231 0b4f37fc-b20b-4187-aba6-5b39ba43276c {"md5": "f87f81ade1cec3c6bd1f6a4aa2889c6e", "pid": "129988758", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/129988758", "source": "IDREF"}], "variant_name": ["Universidade do Porto. Faculdade de letras, linguas e literaturas. Instituto de cultura portuguesa", "Universidade do Porto. Instituto de cultura portuguesa", "Instituto de cultura portuguesa da Universidade do Porto"], "preferred_name": "Instituto de cultura portuguesa (Porto, Portugal)", "country_associated": "po", "variant_access_point": ["Universidade do Porto. Faculdade de letras, linguas e literaturas. Instituto de cultura portuguesa", "Universidade do Porto. Instituto de cultura portuguesa", "Instituto de cultura portuguesa da Universidade do Porto"], "authorized_access_point": "Instituto de cultura portuguesa (Porto, Portugal)"} 1 +2024-09-11 09:04:42.6014 2024-09-11 09:04:42.601406 b7f19218-6886-40a8-b5da-2189e527b875 {"md5": "2a44c0e5dacbcb30b8246aecadd013da", "pid": "130017256", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/130017256", "source": "IDREF"}], "preferred_name": "Seurre, Geneviève", "authorized_access_point": "Seurre, Geneviève", "biographical_information": ["Titulaire d'un doctorat en Biologie médicale à Paris 13 en 1983"]} 1 +2024-09-11 09:04:42.656008 2024-09-11 09:04:42.656012 f6112173-9413-4d44-a700-b3ac22243622 {"md5": "2d304dec4e99c3cdde028cf2d377d329", "pid": "13037962X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/13037962X", "source": "IDREF"}], "preferred_name": "Kurt Tucholsky-Gesellschaft (Berlin)", "country_associated": "gw", "authorized_access_point": "Kurt Tucholsky-Gesellschaft (Berlin)"} 1 +2024-09-11 09:04:42.713041 2024-09-11 09:04:42.713045 1e01ba51-51c9-42c7-8a91-42b39fb15a13 {"md5": "d0d9b2563d33e71fc96a8a282e378ac2", "pid": "130434795", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/130434795", "source": "IDREF"}], "preferred_name": "Whisnant, Rebecca", "country_associated": "xxu", "authorized_access_point": "Whisnant, Rebecca", "biographical_information": ["Professeur de philosophie"]} 1 +2024-09-11 09:04:42.771093 2024-09-11 09:04:42.771096 dd96d067-9a77-446a-92c3-ca07a067f3ce {"md5": "c39849f5b42bab71deb619b36721eb7e", "pid": "130521973", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/130521973", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Hogan, Maurice P.", "country_associated": "ie", "authorized_access_point": "Hogan, Maurice P., 19..-....", "biographical_information": ["Professeur au St. Patrick's College de Maynooth (Ireland), spécialisé dans les Écritures sacrées (Ancient Testament)"]} 1 +2024-09-11 09:04:42.82819 2024-09-11 09:04:42.828195 6d5100ce-0214-42cb-8a3f-a430584a4589 {"md5": "fdf64e96be554398b05ae15541e29c70", "pid": "130648396", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "inspectrice départementale de l'éducation", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/130648396", "source": "IDREF"}], "date_of_birth": "19...", "preferred_name": "Terras, Denise, inspectrice départementale de l'éducation", "country_associated": "fr", "authorized_access_point": "Terras, Denise, 19...-...., inspectrice départementale de l'éducation"} 1 +2024-09-11 09:04:42.886884 2024-09-11 09:04:42.886887 2196ddaa-69ca-4bc7-b72e-e0ad8a159417 {"md5": "1f8d904a504fa7ee9defc29ebacc4180", "pid": "130807508", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/130807508", "source": "IDREF"}], "preferred_name": "Laurentin, Luc", "country_associated": "fr", "authorized_access_point": "Laurentin, Luc", "biographical_information": ["Entrepreneur. Professeur à Sciences Po Paris (en 2008)"]} 1 +2024-09-11 09:04:42.946581 2024-09-11 09:04:42.946585 ad46ac34-5372-4dae-b1ee-87c7d05a98cf {"md5": "5a9745fc3b44dc9cad3abb55bc5088d1", "pid": "130809217", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/130809217", "source": "IDREF"}], "date_of_birth": "1926", "preferred_name": "Kelly, Robert E.", "country_associated": "xxu", "authorized_access_point": "Kelly, Robert E., 1926-....", "biographical_information": ["Retired CPA, corporate executive and management consultant (2008)"]} 1 +2024-09-11 09:04:43.004352 2024-09-11 09:04:43.004355 da3e0a2b-fc2f-421c-a3f9-20b1bf3b2458 {"md5": "d827704fbb7021375d7cf69c83f40237", "pid": "131054937", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/131054937", "source": "IDREF"}], "preferred_name": "Borgne, Jean-Yves", "country_associated": "fr", "authorized_access_point": "Borgne, Jean-Yves", "biographical_information": ["Médecin généraliste à Ribemont sur Ancre (80), chargé d'enseignement à la faculté de médecine d'Amiens, actif en 2008"]} 1 +2024-09-11 09:04:43.061605 2024-09-11 09:04:43.061609 9d82d4a9-49e3-4084-aa4c-0a9e4f23db34 {"md5": "4b2445c283cc83bbbb2e7830f2a2c4f6", "pid": "131245759", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/131245759", "source": "IDREF"}], "date_of_birth": "1875", "date_of_death": "1973", "preferred_name": "Dubus, Hermin", "country_associated": "fr", "authorized_access_point": "Dubus, Hermin, 1875-1973", "biographical_information": ["Auteur d'un ouvrage d'éducation musicale pour enfants"]} 1 +2024-09-11 09:04:43.119335 2024-09-11 09:04:43.119338 24fff451-4646-4c62-a2c7-dbdbde3a5fad {"md5": "cfda775ec8ecf4b8412fa86f1145bedb", "pid": "13145269X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/13145269X", "source": "IDREF"}], "preferred_name": "Folie, Jacqueline", "country_associated": "be", "authorized_access_point": "Folie, Jacqueline", "biographical_information": ["Rédactrice au \\"Bulletin de l'Institut royal du patrimoine artistique\\" (en 1987)"]} 1 +2024-09-11 09:04:43.179792 2024-09-11 09:04:43.179795 665981b8-d6f1-486d-864c-049c8bc8b3a1 {"md5": "4e70ffce6601fc2eee5a56b6ede72030", "pid": "131529595", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/131529595", "source": "IDREF"}], "preferred_name": "Jiménes Blanco, María Dolores", "country_associated": "sp", "authorized_access_point": "Jiménes Blanco, María Dolores"} 1 +2024-09-11 09:04:43.251178 2024-09-11 09:04:43.251182 e19350e6-ad9c-46f4-bf78-d2a6bc841dec {"md5": "a4339c63dccc4e677dc6e51042c6c940", "pid": "131808206", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/131808206", "source": "IDREF"}], "variant_name": ["HIARPT"], "preferred_name": "Highlands institute for American religious and philosophical thought", "country_associated": "xxu", "variant_access_point": ["HIARPT"], "authorized_access_point": "Highlands institute for American religious and philosophical thought", "biographical_information": ["Adresse : P. O. Box 2009, Highlands, NC 28741-2009 USA"]} 1 +2024-09-11 09:04:43.323641 2024-09-11 09:04:43.323645 03eeb922-4d65-459e-8a4a-34177b6c8a22 {"md5": "89b03bfba2646301937f56dfee350b95", "pid": "13185254X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "enseignant-chercheur en mathématiques", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/13185254X", "source": "IDREF"}], "date_of_birth": "1954", "preferred_name": "Jouan, Philippe, enseignant-chercheur en mathématiques", "country_associated": "fr", "authorized_access_point": "Jouan, Philippe, 1954-...., enseignant-chercheur en mathématiques", "biographical_information": ["Maître de conférences HDR en poste à l'Université de Rouen. Membre du LMRS - Laboratoire de Mathématiques Raphaël Salem (en 2019)", "Auteur d'une thèse de doctorat en mathématiques à l'Université de Rouen en 1995"]} 1 +2024-09-11 09:04:43.392737 2024-09-11 09:04:43.392742 2e5ce1a2-0f82-4eea-ad19-8b0018736784 {"md5": "0d359dccc3995dd11c5da8a6bb7b98cc", "pid": "132110520", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["pol"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/132110520", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Bielawski, Józef", "country_associated": "pl", "authorized_access_point": "Bielawski, Józef, 19..-...."} 1 +2024-09-11 09:04:43.461003 2024-09-11 09:04:43.461006 795d8980-870c-4ba4-9823-4183a1291923 {"md5": "d488aa5058c5c9040e41eeaf988fb5aa", "pid": "132337282", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/132337282", "source": "IDREF"}], "date_of_birth": "1981-06-25", "preferred_name": "Pons, Anne-Laure", "country_associated": "fr", "authorized_access_point": "Pons, Anne-Laure, 1981-....", "biographical_information": ["Diplômée de l'Ecole de sages-femmes de Marseille"]} 1 +2024-09-11 09:04:43.522417 2024-09-11 09:04:43.52242 8f3db5c1-56b3-4bd8-8a40-efb098534c22 {"md5": "e6e2f007b15df08685b1737e9b5bebc8", "pid": "132394065", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/132394065", "source": "IDREF"}], "preferred_name": "Isabella, Giovanni", "country_associated": "it", "authorized_access_point": "Isabella, Giovanni", "biographical_information": ["Historien. Traduit de l'anglais à l'italien"]} 1 +2024-09-11 09:04:43.591044 2024-09-11 09:04:43.591048 dad0f6f5-1ce3-419c-b951-ec68754ef50b {"md5": "bf0ac59234b68d3bc70b9f22f7cec78d", "pid": "132436620", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/132436620", "source": "IDREF"}], "preferred_name": "Bose, Arun Chand", "country_associated": "xxu", "authorized_access_point": "Bose, Arun Chand", "biographical_information": ["En poste : U.S. Department of Energy, National Energy Technology Laboratory, Pittsburgh (Pa.) Etats-Unis (en 2009)"]} 1 +2024-09-11 09:04:43.650459 2024-09-11 09:04:43.650465 e7d213bc-d6fc-4965-8c75-b8ace5ad77af {"md5": "fe9a381436fc0b2d54f1acba4c43792d", "pid": "132521326", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/132521326", "source": "IDREF"}], "variant_name": ["Communautés européennes. Direction générale Emploi et affaires sociales. Service de protection de l'Environnement et du Consommateur", "Communautés européennes. Commission. Direction générale Emploi et affaires sociales. Service de protection de l'Environnement et du Consommateur", "Commission des Communautés européennes. Direction générale de l'Emploi et des affaires sociales. Service de protection de l'Environnement et du Consommateur", "Commission of the European Communities. Directorate-General Employment and Social Affairs. Environment and Consumer Protection Service", "Environment and Consumer Protection Service of the EEC"], "preferred_name": "Communautés européennes. Service de protection de l'Environnement et du Consommateur", "country_associated": "be", "variant_access_point": ["Communautés européennes. Direction générale Emploi et affaires sociales. Service de protection de l'Environnement et du Consommateur", "Communautés européennes. Commission. Direction générale Emploi et affaires sociales. Service de protection de l'Environnement et du Consommateur", "Commission des Communautés européennes. Direction générale de l'Emploi et des affaires sociales. Service de protection de l'Environnement et du Consommateur", "Commission of the European Communities. Directorate-General Employment and Social Affairs. Environment and Consumer Protection Service", "Environment and Consumer Protection Service of the EEC"], "parallel_access_point": ["Commission of the European Communities. Environment and Consumer Protection Service"], "authorized_access_point": "Communautés européennes. Service de protection de l'Environnement et du Consommateur"} 1 +2024-09-11 09:04:43.710098 2024-09-11 09:04:43.710103 0275e19f-a697-4f73-aff3-48d3cd862850 {"md5": "6eac8d39d0c849a35adfbf68a54345cf", "pid": "132740966", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita", "eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/132740966", "source": "IDREF"}], "preferred_name": "Valloni, Renzo", "authorized_access_point": "Valloni, Renzo"} 1 +2024-09-11 09:04:43.773794 2024-09-11 09:04:43.773798 b351beb0-c7a5-4e9e-bf13-f1354bab17ac {"md5": "7ec7474957b4504ebe22dd32bd613f4a", "pid": "132750368", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/132750368", "source": "IDREF"}], "preferred_name": "Ligue des droits de l'homme", "country_associated": "be", "authorized_access_point": "Ligue des droits de l'homme"} 1 +2024-09-11 09:04:43.83392 2024-09-11 09:04:43.833926 6cca75e6-5c27-4548-a5c2-d1be095a5d93 {"md5": "86e375eb77392d6f811bd033e153337e", "pid": "132844036", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/132844036", "source": "IDREF"}], "preferred_name": "Haute-Normandie. Chambre régionale des comptes", "country_associated": "fr", "authorized_access_point": "Haute-Normandie. Chambre régionale des comptes"} 1 +2024-09-11 09:05:20.658078 2024-09-11 09:05:20.658082 1369fa3e-9762-477c-a023-d51dca8a1390 {"md5": "b0ec081e63e744577fc6553c158894df", "pid": "194503941", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/194503941", "source": "IDREF"}], "preferred_name": "Contri, Giacomo B.", "country_associated": "it", "authorized_access_point": "Contri, Giacomo B."} 1 +2024-09-11 09:04:43.895128 2024-09-11 09:04:43.895133 099b2c20-0ea2-4319-bf69-23cba4d4ab2a {"md5": "1c6ce00809e5ada920f57ef4fa25aef2", "pid": "133004503", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/133004503", "source": "IDREF"}], "date_of_birth": "1941", "preferred_name": "Portenier, Claude", "country_associated": "gw", "authorized_access_point": "Portenier, Claude, 1941-....", "biographical_information": ["Fachbereich Mathematik, Université de Marburg (Allemagne)"]} 1 +2024-09-11 09:04:43.960709 2024-09-11 09:04:43.960713 3e34aa86-fa85-46f6-bef5-100a8dbd7962 {"md5": "429eff0037d507dc0a71fd0182663f2f", "pid": "13318479X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/13318479X", "source": "IDREF"}], "preferred_name": "Mbéri, Martin", "authorized_access_point": "Mbéri, Martin"} 1 +2024-09-11 09:04:44.015959 2024-09-11 09:04:44.015963 b547f2bd-dbdf-4dc1-8ecf-69327cb251f2 {"md5": "992bcec66545a3400e17d6eef7c7f6e4", "pid": "133250717", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/133250717", "source": "IDREF"}], "date_of_birth": "1981", "preferred_name": "El Hawi, Nancy", "country_associated": "le", "authorized_access_point": "El Hawi, Nancy, 1981-....", "biographical_information": ["Diplômée de l'Institut national des sciences appliquées de Toulouse en 2009"]} 1 +2024-09-11 09:04:44.075203 2024-09-11 09:04:44.075209 c6f36135-def2-40c5-94c9-011e4586720b {"md5": "75aafc7ddd7d6097fdb402edb7f88911", "pid": "133383369", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/133383369", "source": "IDREF"}], "preferred_name": "Sotto, Wiveca", "authorized_access_point": "Sotto, Wiveca"} 1 +2024-09-11 09:04:44.129775 2024-09-11 09:04:44.129778 7e8755a2-b29f-462e-9ca9-281fddf465af {"md5": "fef919eddf56a67d940594f0be763a54", "pid": "133418278", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/133418278", "source": "IDREF"}], "variant_name": ["Darcy, Henry"], "date_of_birth": "1803", "date_of_death": "1858", "preferred_name": "Darcy, Henry, Philibert, Gaspard", "country_associated": "fr", "variant_access_point": ["Darcy, Henry"], "authorized_access_point": "Darcy, Henry, Philibert, Gaspard, 1803-1858", "biographical_information": ["Inspecteur général des ponts et chaussées. Il est à l'origine de l'adduction d'eau (dérivation et distribution de sources d'eau potable) et du passage du chemin de fer à Dijon, contribuant grandement au développement de la ville."]} 1 +2024-09-11 09:04:44.182502 2024-09-11 09:04:44.182508 9d96a691-1feb-4718-af98-e1cd72dc6f39 {"md5": "8440967bff853edc44496c2a9de04a3a", "pid": "133532542", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/133532542", "source": "IDREF"}], "date_of_birth": "1583-12-16", "date_of_death": "1661-08-16", "preferred_name": "Fevret, Charles", "country_associated": "fr", "authorized_access_point": "Fevret, Charles, 1583-1661", "biographical_information": ["Avocat. Né en 1583 à Sémur-en-Auxois, fils de Jacques Fevret, conseiller au Parlement de Bourgogne. Secrétaire de la cour sous Louis XIII, il meurt à Dijon en 1661. A écrit en français et en latin. Connu pour son \\"Traité de l'abus\\", dont la première édition est parue en 1653 à Dijon. Seigneur de Saint-Mesmin et Godan"]} 1 +2024-09-11 09:04:44.245304 2024-09-11 09:04:44.245308 fb01ac9a-f2b2-44ec-8ba4-d2bc47ed19fc {"md5": "b76d0c49c96e66c790840badba4eac84", "pid": "133564649", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/133564649", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Center, Ted", "country_associated": "xxu", "authorized_access_point": "Center, Ted, 19..-....", "biographical_information": ["Chercheur agronome"]} 1 +2024-09-11 09:04:44.307158 2024-09-11 09:04:44.307162 3c6207da-613b-4271-bce7-846926aa76ae {"md5": "93fdb4d143ba8001f248300bfe742fe7", "pid": "13375412X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/13375412X", "source": "IDREF"}], "preferred_name": "Bourrelier, S.", "country_associated": "fr", "authorized_access_point": "Bourrelier, S.", "biographical_information": ["Conseiller pédagogique d'éducation physique"]} 1 +2024-09-11 09:04:44.359611 2024-09-11 09:04:44.359614 716a3ece-7920-4d02-babb-0a13c162dc8f {"md5": "9d1752b839aab0633e45ad69e7911285", "pid": "133765687", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/133765687", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Leron, Uri", "country_associated": "is", "authorized_access_point": "Leron, Uri, 19..-....", "biographical_information": ["En poste au Department of science education, Technion, Israel institute of technology, Haifa (Israel)"]} 1 +2024-09-11 09:04:44.430535 2024-09-11 09:04:44.430541 f9da057c-ad85-40e9-84be-2916dd5bb941 {"md5": "1e3e60d322163bd2785e588d022c4118", "pid": "133823261", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/133823261", "source": "IDREF"}], "variant_name": ["SNSP", "Società Storica Napoletana"], "preferred_name": "Società napoletana di storia patria", "country_associated": "it", "variant_access_point": ["SNSP", "Società Storica Napoletana"], "date_of_establishment": "1875-12", "authorized_access_point": "Società napoletana di storia patria", "biographical_information": ["Crée en 1875 par Bartolommeo Capasso, Francesco Correale, Vincenzo Cuomo, Bernardo Gaetani, Giuseppe, Giorgio, Luigi et Scipione Volpicella. Première dénomination Società Storica Napoletana crée par Carlo Troya en 1843"]} 1 +2024-09-11 09:04:44.491565 2024-09-11 09:04:44.49157 beb86963-b76e-47e6-ad11-a03e12a060b2 {"md5": "07e57265369bd9d6c6bd464c67977efa", "pid": "133972887", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/133972887", "source": "IDREF"}], "date_of_birth": "1909", "preferred_name": "Savile, Douglas B. O.", "country_associated": "xxc", "authorized_access_point": "Savile, Douglas B. O., 1909-...."} 1 +2024-09-11 09:04:44.553859 2024-09-11 09:04:44.553864 8ea7e9eb-3bd6-4706-871e-980da24ee4fe {"md5": "a9ffacdaa6b8882f59d2c257eda97ab1", "pid": "134024672", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/134024672", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Durel, Bernard", "country_associated": "fr", "authorized_access_point": "Durel, Bernard, 19..-...."} 1 +2024-09-11 09:04:44.607923 2024-09-11 09:04:44.607929 d0a58fef-75da-435b-924c-37f5399aefc7 {"md5": "ccb78caeb0f89631379412640be8f0d3", "pid": "134273850", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/134273850", "source": "IDREF"}], "variant_name": ["D.G.L.G.", "Grande-Bretagne. Derbyshire Gypsy Liaison Group", "Angleterre. Derbyshire Gypsy Liaison Group"], "preferred_name": "Derbyshire Gypsy Liaison Group", "country_associated": "xxk", "variant_access_point": ["D.G.L.G.", "Grande-Bretagne. Derbyshire Gypsy Liaison Group", "Angleterre. Derbyshire Gypsy Liaison Group"], "authorized_access_point": "Derbyshire Gypsy Liaison Group"} 1 +2024-09-11 09:04:44.662173 2024-09-11 09:04:44.662177 6484b20a-19e5-466d-ad22-52c164165afb {"md5": "7d71f0a37f751c741a75d2300aefcfa5", "pid": "134382005", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/134382005", "source": "IDREF"}], "variant_name": ["Duparq, Marie Alexandre"], "date_of_birth": "1760", "date_of_death": "1829", "preferred_name": "Duparc, Marie Alexandre", "country_associated": "fr", "variant_access_point": ["Duparq, Marie Alexandre"], "authorized_access_point": "Duparc, Marie Alexandre, 1760?-1829?", "biographical_information": ["Oeuvre d'après Lacombe : Voyage pittoresque de la France, T.V", "Lieu d'activité : Paris. Dates d'activité : 1804?. Adresse : rue Saint-Hyacinthe-Saint-Michel, n.2", "Actif entre 1781 et 1829. Illustre de nombreux livres de voyages", "graveur. dessinateur", "estampe. dessin", "Expose au Salon de 1822"]} 1 +2024-09-11 09:04:44.718149 2024-09-11 09:04:44.718155 fce2151f-eed6-460f-8d63-1a2e57a7717d {"md5": "e092f6beb4c53be95912e05276ce252e", "pid": "134448251", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "médecin", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/134448251", "source": "IDREF"}], "date_of_birth": "1977-11-16", "preferred_name": "Ikhlef, Linda, médecin", "country_associated": "fr", "authorized_access_point": "Ikhlef, Linda, médecin", "biographical_information": ["Titulaire d'un doctorat d'exercice en médecine (Poitiers, 2009)"]} 1 +2024-09-11 09:04:44.770006 2024-09-11 09:04:44.770012 a5998200-2041-4f6e-b8f5-5d262d5c8da9 {"md5": "641c1f4b7408e63700201977bbb61b19", "pid": "134449568", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/134449568", "source": "IDREF"}], "variant_name": ["Colloque européen Surfaces - vide - métallurgie"], "preferred_name": "Survimet 78", "country_associated": "fr", "date_of_termination": "1978-05-12", "variant_access_point": ["Colloque européen Surfaces - vide - métallurgie (1978 ; Strasbourg, France)"], "date_of_establishment": "1978-05-09", "authorized_access_point": "Survimet 78"} 1 +2024-09-11 09:04:44.824174 2024-09-11 09:04:44.824178 6e90437e-9e80-4bb1-8703-949494a733c8 {"md5": "988e31a49e74873f948348085e52a74d", "pid": "134489500", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/134489500", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "244365091"}, "date_of_birth": "1934", "preferred_name": "Diaz, Janet Winecoff", "country_associated": "xxu", "authorized_access_point": "Diaz, Janet Winecoff, 1934-....", "biographical_information": ["Enseigne (?) à ll'University of North Carolina à Chapel Hill, Department of Romance studies"]} 1 +2024-09-11 09:04:44.884935 2024-09-11 09:04:44.884938 5d27b08b-dc47-4532-bdae-834e1dfcec8c {"md5": "5bb06f0a94ce32aee1034fc4b98feda6", "pid": "135192013", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita", "fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/135192013", "source": "IDREF"}], "date_of_birth": "1970", "preferred_name": "Parisi, Chiara", "country_associated": "it", "authorized_access_point": "Parisi, Chiara, 1970-....", "biographical_information": ["Commissaire d'exposition. Directrice du Centre international d'art et du paysage de l'île de Vassivière (2004-2011). Directrice des programmes culturels de la Monnaie de Paris (2011-2016)"]} 1 +2024-09-11 09:04:44.936754 2024-09-11 09:04:44.936759 7750a613-9e84-4c36-9bd0-12126fa54576 {"md5": "ede3323af876207e86e1f7ca40309ce9", "pid": "135315042", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/135315042", "source": "IDREF"}], "date_of_birth": "1969", "preferred_name": "Moscovici, Claudia", "country_associated": "xx", "authorized_access_point": "Moscovici, Claudia, 1969-....", "biographical_information": ["Professeure de littérature française et de philosophie, Boston University, Mass., US (en 2002)"]} 1 +2024-09-11 09:04:44.990551 2024-09-11 09:04:44.990555 e09296bb-5a6e-4f58-ab63-5c547a9a86be {"md5": "49748a2f523312f5d08ffe51c749d339", "pid": "135562120", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/135562120", "source": "IDREF"}], "preferred_name": "Fenton, Terry", "country_associated": "fr", "authorized_access_point": "Fenton, Terry", "biographical_information": ["Critique d'art"]} 1 +2024-09-11 09:04:45.050701 2024-09-11 09:04:45.050703 600824e5-5d83-407b-ad08-b8c8774b2a27 {"md5": "1a546fb7f5d333ecfc8d98e8fde6d3ef", "pid": "135612934", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/135612934", "source": "IDREF"}], "date_of_birth": "1897", "preferred_name": "Collins, Joseph Burns", "country_associated": "xxu", "authorized_access_point": "Collins, Joseph Burns, 1897-...."} 1 +2024-09-11 09:04:45.110159 2024-09-11 09:04:45.110163 bc796a35-ad88-4df9-9165-87ece5017cbe {"md5": "770dfa24811289a18bae226e9ac00feb", "pid": "135683122", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/135683122", "source": "IDREF"}], "preferred_name": "Kölling, Mario", "authorized_access_point": "Kölling, Mario"} 1 +2024-09-11 09:04:45.169909 2024-09-11 09:04:45.169913 cf90fa2e-b9b5-4151-8a5f-1e5d78dc6096 {"md5": "627cf08454c2ef9d76f30c380ebbb7ae", "pid": "135688590", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/135688590", "source": "IDREF"}], "variant_name": ["Carazo, Pedro Pérez"], "preferred_name": "Pérez Carazo, Pedro", "country_associated": "sp", "variant_access_point": ["Carazo, Pedro Pérez"], "authorized_access_point": "Pérez Carazo, Pedro"} 1 +2024-09-11 09:04:51.813658 2024-09-11 09:04:51.813662 842af231-713f-4635-a0ee-ae50f2e7ccb0 {"md5": "64c528b521538fdbac91165936f4b10b", "pid": "147004268", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/147004268", "source": "IDREF"}], "preferred_name": "Mayle, B.A.", "country_associated": "xxk", "authorized_access_point": "Mayle, B.A.", "biographical_information": ["Wildlife & Conservation Research Branch, Forestry Authority"]} 1 +2024-09-11 09:04:45.232152 2024-09-11 09:04:45.232157 6c7fdf9f-6b66-4948-9c01-7b725c635df9 {"md5": "0b04939acc7fde6f5326d74acc71e56d", "pid": "135736234", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/135736234", "source": "IDREF"}], "variant_name": ["Association brésilienne de géologie de l'ingénieur"], "preferred_name": "Associação brasileira de geologia de engenharia", "country_associated": "bl", "variant_access_point": ["Association brésilienne de géologie de l'ingénieur"], "authorized_access_point": "Associação brasileira de geologia de engenharia"} 1 +2024-09-11 09:04:45.294824 2024-09-11 09:04:45.294828 a19a08f1-b164-45af-b87c-f2e10bfa8994 {"md5": "ed68b6c70d8761151ade9767a3c2b91a", "pid": "135975484", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/135975484", "source": "IDREF"}], "date_of_birth": "1575", "date_of_death": "1632", "preferred_name": "Mittner, Mathias", "country_associated": "gw", "authorized_access_point": "Mittner, Mathias, 1575-1632", "biographical_information": ["Né à Eichstädt, 1575-1632, jésuite puis chartreux. Mlodzianowski| 1622-1686, jésuite, apparenté à Kostka, fut théologien de l'évêque de Cracovie"]} 1 +2024-09-11 09:04:45.355075 2024-09-11 09:04:45.355082 24584c2e-2dcd-44e1-8162-0b767ad24f05 {"md5": "22228664f79f443950f1f21239a84641", "pid": "136123821", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/136123821", "source": "IDREF"}], "preferred_name": "International zeolite conference", "country_associated": "ja", "date_of_termination": "1986-08-22", "date_of_establishment": "1986-08-17", "authorized_access_point": "International zeolite conference (07 ; 1986 ; Tokyo)"} 1 +2024-09-11 09:04:45.41177 2024-09-11 09:04:45.411775 7a5248f6-c9bf-4f6c-8e85-fdb82f2ace9b {"md5": "1045b286342e65ffe5cef4c04e4b58ba", "pid": "136235212", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/136235212", "source": "IDREF"}], "preferred_name": "Drouillon, F.", "country_associated": "fr", "authorized_access_point": "Drouillon, F.", "biographical_information": ["Inspecteur d'Académie"]} 1 +2024-09-11 09:04:45.465311 2024-09-11 09:04:45.465314 5c5dcd97-0652-4342-9db0-ccb9d735aa5c {"md5": "9ce5343d4197494b14cbfa395bc9db2a", "pid": "13632536X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/13632536X", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Hogan, Nick", "country_associated": "xx", "authorized_access_point": "Hogan, Nick, 19..-....", "biographical_information": ["Département d' archéologie, Université de Cork (Irlande) en 2009"]} 1 +2024-09-11 09:04:45.517961 2024-09-11 09:04:45.517964 518584aa-59d7-4d7b-910d-2f600b403fd5 {"md5": "090e38cb40b70c7b456537f46d930a9c", "pid": "136495117", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/136495117", "source": "IDREF"}], "variant_name": ["Hjarl, Jane Petersen"], "preferred_name": "Hjarl Petersen, Jane", "country_associated": "dk", "variant_access_point": ["Hjarl, Jane Petersen"], "authorized_access_point": "Hjarl Petersen, Jane"} 1 +2024-09-11 09:04:45.580673 2024-09-11 09:04:45.580676 7012f8ec-6bd9-4c62-a3b8-b1592b857c5c {"md5": "26337f69144ed8dc01d1f45e9f8fe718", "pid": "136556906", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/136556906", "source": "IDREF"}], "preferred_name": "Conference on radiation effects in semiconductors", "country_associated": "xxu", "date_of_termination": "1967-10-05", "date_of_establishment": "1967-10-03", "authorized_access_point": "Conference on radiation effects in semiconductors (1967 ; Santa Fe)"} 1 +2024-09-11 09:04:45.643235 2024-09-11 09:04:45.64324 6b9c3205-9157-4283-b8d7-d296ee8b6151 {"md5": "20642a5e077238952af58f4452bb338a", "pid": "136738850", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/136738850", "source": "IDREF"}], "variant_name": ["Università degli studi (Bologne, Italie). Facoltà di lettere e filosofia. Istituto di filologia classica", "Università degli studi di Bologna. Facoltà di lettere e filosofia. Istituto di filologia classica", "Università degli studi (Bologne, Italie). Istituto di filologia classica", "Università degli studi di Bologna. Istituto di filologia classica"], "preferred_name": "Istituto di filologia classica (Bologne, Italie)", "country_associated": "it", "variant_access_point": ["Università degli studi (Bologne, Italie). Facoltà di lettere e filosofia. Istituto di filologia classica", "Università degli studi di Bologna. Facoltà di lettere e filosofia. Istituto di filologia classica", "Università degli studi (Bologne, Italie). Istituto di filologia classica", "Università degli studi di Bologna. Istituto di filologia classica"], "authorized_access_point": "Istituto di filologia classica (Bologne, Italie)"} 1 +2024-09-11 09:04:45.696702 2024-09-11 09:04:45.696707 992b5cfd-b659-42cd-a66c-a60c151b489e {"md5": "5db24c46ec51c0e91bf746938782e564", "pid": "136803784", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/136803784", "source": "IDREF"}], "date_of_birth": "1980-04-14", "preferred_name": "Ito, Ayumi", "country_associated": "ja", "authorized_access_point": "Ito, Ayumi, 1980-....", "biographical_information": ["Actrice"]} 1 +2024-09-11 09:04:45.756471 2024-09-11 09:04:45.756475 819ebada-678b-4d0a-993d-aee49e8a4fda {"md5": "157b1c7258334bf13ea34663b87ccee0", "pid": "136864279", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/136864279", "source": "IDREF"}], "preferred_name": "Giornata di studi bizantini", "country_associated": "it", "date_of_termination": "1992-05-07", "date_of_establishment": "1992-05-06", "authorized_access_point": "Giornata di studi bizantini (2 ; 1992 ; Salerno)", "biographical_information": ["Congrès organisé par l'Associazione italiana di studi bizantini"]} 1 +2024-09-11 09:04:45.809689 2024-09-11 09:04:45.809694 b336a87b-9568-4b5e-b927-6961f80f37c4 {"md5": "e3bb0c2ba4c7a5a60956770b0e06f691", "pid": "136864473", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/136864473", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Dumouchel, Jacques", "country_associated": "fr", "authorized_access_point": "Dumouchel, Jacques, 19..-...."} 1 +2024-09-11 09:04:45.927011 2024-09-11 09:04:45.927016 757b7e83-98bd-47cf-82b7-55a5b4c1fe46 {"md5": "f413a97cd6a069f2495fa8bb22db11b7", "pid": "136893163", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/136893163", "source": "IDREF"}], "variant_name": ["Haro, Sandrine", "Vialars Haro, Muriel"], "date_of_birth": "19XX", "preferred_name": "Vialars, Muriel", "country_associated": "fr", "variant_access_point": ["Haro, Sandrine", "Vialars Haro, Muriel"], "authorized_access_point": "Vialars, Muriel, 19..-....", "biographical_information": ["Titulaire d'un doctorat en médecine générale (Toulouse 3, 2000)"]} 1 +2024-09-11 09:04:45.978972 2024-09-11 09:04:45.978977 7ef3db6a-d3c2-471c-8140-f6bdedb7d751 {"md5": "29234d58b099e374bdbfed9d82ecfd62", "pid": "137193548", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/137193548", "source": "IDREF"}], "preferred_name": "Cooper, Thomas D.", "country_associated": "xx", "authorized_access_point": "Cooper, Thomas D.", "biographical_information": ["Air force materials laboratory, Ohio"]} 1 +2024-09-11 09:04:46.035705 2024-09-11 09:04:46.035708 4c5ab95f-766e-4254-bc89-2b6d0323b9d7 {"md5": "d1de03c30932737008ab685f67e49b7c", "pid": "137341563", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/137341563", "source": "IDREF"}], "date_of_birth": "1904-08-03", "date_of_death": "1941-10-02", "preferred_name": "Mog, Aribert", "country_associated": "gw", "authorized_access_point": "Mog, Aribert, 1904-1941", "biographical_information": ["Acteur"]} 1 +2024-09-11 09:04:46.087855 2024-09-11 09:04:46.08786 fd867f83-7a87-4a47-970e-dabe05208b81 {"md5": "fa8ac7848e9d1fcfe92991331143367b", "pid": "137405723", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["chi"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/137405723", "source": "IDREF"}], "variant_name": ["徐, 敏", "Hsü, Min"], "preferred_name": "Xu, Min", "variant_access_point": ["Hsü, Min"], "authorized_access_point": "Xu, Min"} 1 +2024-09-11 09:04:46.148808 2024-09-11 09:04:46.148811 32532101-84f1-4050-a0ea-4c4e6abc3fb3 {"md5": "f4755db6c985d119f0a1eb87128705f2", "pid": "137424795", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/137424795", "source": "IDREF"}], "preferred_name": "Soeters Van Eldonk Architecten (Pays-Bas)", "country_associated": "ne", "date_of_establishment": "1979", "authorized_access_point": "Soeters Van Eldonk Architecten (Pays-Bas)", "biographical_information": ["Adresse : Kerkstraat 204 1017 GV AMSTERDAM"]} 1 +2024-09-11 09:04:46.211141 2024-09-11 09:04:46.211145 90ff0b7b-d25b-4574-bcb7-e00135469c24 {"md5": "f3855491851669b10165c2110cb05fa9", "pid": "137586248", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["chi"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/137586248", "source": "IDREF"}], "variant_name": ["国家档案局 (Chine)", "Zhongyang dang'anguan (Chine)", "Chung-yang tang-an-kuan (Chine)", "Guojia dang'an ju (Chine)", "Kuo-chia tang-an-chü (Chine)", "中央档案馆 (Chine)", "Zhong yang dang an guan (Chine)", "Chine. 国家档案局", "Chine. Guo jia dang an ju", "Chine. 中央档案馆", "Chine. Zhong yang dang an guan"], "preferred_name": "Guo jia dang an ju (Chine)", "country_associated": "cc", "variant_access_point": ["Zhongyang dang'anguan (Chine)", "Chung-yang tang-an-kuan (Chine)", "Guojia dang'an ju (Chine)", "Kuo-chia tang-an-chü (Chine)", "中央档案馆 (Chine)", "Zhong yang dang an guan (Chine)", "Chine. 国家档案局", "Chine. Guo jia dang an ju", "Chine. 中央档案馆", "Chine. Zhong yang dang an guan"], "date_of_establishment": "1959", "authorized_access_point": "Guo jia dang an ju (Chine)", "biographical_information": ["Bureau des archives centrales, établi en 1959, chargé de collecter et classer les archives du gouvernement et des institutions gouvernementales"]} 1 +2024-09-11 09:04:46.294641 2024-09-11 09:04:46.294643 7111c101-9bdf-40ae-abcd-8f612e6a3b4e {"md5": "a4ba973d185d68b6f7ac53fbc5c832ec", "pid": "137635400", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/137635400", "source": "IDREF"}], "preferred_name": "Jones, Alan M.", "country_associated": "xxk", "authorized_access_point": "Jones, Alan M.", "biographical_information": ["Architecte. Président du RIBA (2019-21)"]} 1 +2024-09-11 09:04:46.346056 2024-09-11 09:04:46.346059 8dac2201-62ac-4ebd-9df5-de35dc9a9bc9 {"md5": "2c10928933527c4fe8c48225ad28de54", "pid": "137657412", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/137657412", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "245241582"}, "date_of_birth": "1979", "preferred_name": "Comberiati, Daniele", "country_associated": "it", "authorized_access_point": "Comberiati, Daniele, 1979-....", "biographical_information": ["Maître de conférences en littérature italienne à l'Université Paul-Valéry Montpellier 3 (2017)"]} 1 +2024-09-11 09:04:46.39906 2024-09-11 09:04:46.399063 9517c7d4-a9f3-4b06-acfb-ac85fbd0e973 {"md5": "97ee471ff02b111a1b2aba4e0c378453", "pid": "137724780", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/137724780", "source": "IDREF"}], "date_of_birth": "1950-06-18", "preferred_name": "Roche, Jean-Michel", "country_associated": "fr", "authorized_access_point": "Roche, Jean-Michel, 1950-....", "biographical_information": ["Auteur d'une thèse d'exercice de médecine en 1976"]} 1 +2024-09-11 09:04:46.453721 2024-09-11 09:04:46.453726 6a707066-c8b3-4b50-8373-2e42f7a78fbc {"md5": "e3f958495e0fb64b7f5b7d58ab1a6b0c", "pid": "137773927", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/137773927", "source": "IDREF"}], "date_of_birth": "1968", "preferred_name": "Bernheimer, Andrew", "country_associated": "xxu", "authorized_access_point": "Bernheimer, Andrew, 1968-....", "biographical_information": ["Architecte américain. - Crée, en 1996, avec Jared Della Valle, l'agence Della Valle Bernheimer Design, basée à New-York, dissoute en 2010"]} 1 +2024-09-11 09:04:46.518806 2024-09-11 09:04:46.518812 6fb3f2f4-7b6d-4b99-85d5-cd8f77eb69d4 {"md5": "845c528f393423bb2146fd63c083b7a9", "pid": "137790872", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/137790872", "source": "IDREF"}], "preferred_name": "Weber, Renaud", "country_associated": "sz", "authorized_access_point": "Weber, Renaud", "biographical_information": ["Juriste", "Avocat (en 2009)", "Juge d'instruction (Neuchâtel, Suisse) (en 2009)"]} 1 +2024-09-11 09:04:46.578858 2024-09-11 09:04:46.578861 2b869d82-481d-4953-8d9c-18ca008384b8 {"md5": "d26934ebe2ee58e0e009f0e39e428a91", "pid": "138022550", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/138022550", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "027941949"}, "variant_name": ["Dias, Saúl", "Julio", "Maria dos Reis Pereira, Júlio", "Dos Reis Pereira, Júlio"], "date_of_birth": "1902", "date_of_death": "1983", "preferred_name": "Pereira, Júlio Maria dos Reis", "country_associated": "po", "variant_access_point": ["Dias, Saúl", "Julio", "Maria dos Reis Pereira, Júlio", "Dos Reis Pereira, Júlio"], "authorized_access_point": "Pereira, Júlio Maria dos Reis, 1902-1983", "biographical_information": ["Peintre, graveur, céramiste et poète"]} 1 +2024-09-11 09:04:46.637102 2024-09-11 09:04:46.637106 53eb09d1-78e0-4aeb-952c-f5f38c0e36d4 {"md5": "4c181a412d6766bd694da6671539a087", "pid": "138023468", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/138023468", "source": "IDREF"}], "variant_name": ["Vega Zuazua, Rita Esther"], "preferred_name": "Zuazua Vega, Rita Esther", "country_associated": "mx", "variant_access_point": ["Vega Zuazua, Rita Esther"], "authorized_access_point": "Zuazua Vega, Rita Esther", "biographical_information": ["Mathématicienne. En poste à l'université nationale autonome de Mexico."]} 1 +2024-09-11 09:04:46.690009 2024-09-11 09:04:46.690013 dd6ffdc6-3792-41d4-9edb-d62b17a6a9b8 {"md5": "c337d894691e88fcf7fbbafda5333b1f", "pid": "138484945", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/138484945", "source": "IDREF"}], "preferred_name": "Lanoë, Samuel", "country_associated": "fr", "authorized_access_point": "Lanoë, Samuel", "biographical_information": ["Ingénieur en sciences de l'environnement (en 2008)"]} 1 +2024-09-11 09:04:46.753042 2024-09-11 09:04:46.753047 ac496aa7-f9d1-4005-bdb8-bca903b716b2 {"md5": "023a912f3bec77cf21afa3a1ef83a52a", "pid": "138508518", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/138508518", "source": "IDREF"}], "variant_name": ["Chicago State college", "Chicago teachers college South", "Illinois teachers college Chicago South"], "preferred_name": "Chicago State university", "country_associated": "xxu", "variant_access_point": ["Chicago State college", "Chicago teachers college South", "Illinois teachers college Chicago South"], "authorized_access_point": "Chicago State university", "biographical_information": ["Adresse : 9501 South King Drive, Chicago, Illinois 60628-1598", "Tél. : (773) 995-2387. Télécopie : (773) 995-3994. Courriel : u-relations@csu.edu", "A successivement porté le nom de : \\"Chicago Teachers College South\\", de : \\"Illinois Teachers College Chicago South\\" et de : \\"Chicago State College\\" (nom actuel depuis l'automne 1971)"]} 1 +2024-09-11 09:04:46.813248 2024-09-11 09:04:46.813252 7309d6af-0f99-4523-9175-2905d89ff3b7 {"md5": "139315f7cd2d0287f84953328030ad6f", "pid": "138783578", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/138783578", "source": "IDREF"}], "preferred_name": "Hypoxia and Consequences : from molecule to malady", "country_associated": "xxu", "date_of_termination": "2009-03-14", "date_of_establishment": "2009-03-12", "authorized_access_point": "Hypoxia and Consequences : from molecule to malady (2009 ; New York City, N.Y.)"} 1 +2024-09-11 09:04:46.873139 2024-09-11 09:04:46.873142 a9c1d487-80bb-49e1-a4e1-67257b50f3b7 {"md5": "d4462d9a976864c1f7ef1024c5f1bf26", "pid": "138905312", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "docteur en chirurgie dentaire", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/138905312", "source": "IDREF"}], "date_of_birth": "1982-03-17", "preferred_name": "Pujol, Cécile, docteur en chirurgie dentaire", "country_associated": "fr", "authorized_access_point": "Pujol, Cécile, 1982-...., docteur en chirurgie dentaire"} 1 +2024-09-11 09:04:46.940402 2024-09-11 09:04:46.940406 722fee05-a00e-439d-9bf9-6374d6ab553a {"md5": "dc0a6d2e533e8baeaa9e839c596180aa", "pid": "138933871", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/138933871", "source": "IDREF"}], "preferred_name": "Chiesa del Pio Suffragio (Cotignola, Italie)", "country_associated": "it", "authorized_access_point": "Chiesa del Pio Suffragio (Cotignola, Italie)", "biographical_information": ["Construite en 1720"]} 1 +2024-09-11 09:04:47.004703 2024-09-11 09:04:47.004708 b409a7db-bb65-46c7-89d9-fe4fd42eb137 {"md5": "dd570231ff3ed1cd8cc715b7cadb906c", "pid": "13905443X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/13905443X", "source": "IDREF"}], "preferred_name": "International school of physics \\"Enrico Fermi\\"", "date_of_termination": "2007-06-29", "date_of_establishment": "2007-06-19", "parallel_access_point": ["Scuola internazionale di fisica \\"Enrico Fermi\\" (167 ; 2007 ; Varenna, Italie)"], "authorized_access_point": "International school of physics \\"Enrico Fermi\\" (167 ; 2007 ; Varenna, Italie)"} 1 +2024-09-11 09:04:47.068352 2024-09-11 09:04:47.068357 6851f32c-fbe2-4b7c-9fec-8c7ed350c0a2 {"md5": "dc9a6644947265d4f70bd14568329880", "pid": "139135723", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/139135723", "source": "IDREF"}], "variant_name": ["戸川, 芳郎"], "date_of_birth": "1931", "preferred_name": "Togawa, Yoshio", "country_associated": "ja", "variant_access_point": ["戸川, 芳郎, 1931-...."], "authorized_access_point": "Togawa, Yoshio, 1931-....", "biographical_information": ["Sp. philosophie chinoise, prof. émérite Tōkyō Daigaku et Nishōgakusha Daigaku"]} 1 +2024-09-11 09:04:47.144237 2024-09-11 09:04:47.144241 6e551554-a870-45f6-b5c1-a6bf407256c9 {"md5": "829c20a3498f5c7b4f7fddd2cf052d73", "pid": "139148256", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/139148256", "source": "IDREF"}], "date_of_birth": "1978-08-11", "preferred_name": "Blum, Laurent", "country_associated": "fr", "authorized_access_point": "Blum, Laurent, 1978-....", "biographical_information": ["Auteur d'une thèse de Médecine soutenue à l'Université Bordeaux 2 le 09 octobre 2009"]} 1 +2024-09-11 09:04:47.201425 2024-09-11 09:04:47.201432 2cb8182f-6205-4362-b075-0da6a1244cb2 {"md5": "78e2d3adb232f1c6a6712bbdb79a8806", "pid": "139175520", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["hrv"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/139175520", "source": "IDREF"}], "preferred_name": "Buljević, Zrinka", "country_associated": "ci", "authorized_access_point": "Buljević, Zrinka"} 1 +2024-09-11 09:04:47.267969 2024-09-11 09:04:47.267973 d99ac3d3-c1be-4a19-8e1b-ee7789a0d76d {"md5": "3f31ba86431920f01b37d435faadfee8", "pid": "139416846", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "chi"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/139416846", "source": "IDREF"}], "date_of_birth": "1962", "preferred_name": "Lee, Vivian P. Y.", "country_associated": "xx", "authorized_access_point": "Lee, Vivian P. Y., 1962-....", "biographical_information": ["Enseigne au Département de chinois, de traduction et de linguistique à la Cité universitaire de Hong Kong (en 2009). Ses publications portent sur la littérature chinoise contemporain et sur le cinéma chinois et apparaissent dans des journaux universitaires tels que \\"Modern Chinese literature and culture\\", \\"Journal of Chinese cinemas\\", \\"Scope\\" et \\"Chinese films in focus II\\""]} 1 +2024-09-11 09:04:47.334008 2024-09-11 09:04:47.334014 5caf1ec2-8a81-440d-bbfd-53b1a9f18066 {"md5": "0f86bc33ebba686bd8f1a147aafab83d", "pid": "139490752", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/139490752", "source": "IDREF"}], "preferred_name": "Lipman, Leana", "country_associated": "xx", "authorized_access_point": "Lipman, Leana", "biographical_information": ["Journaliste"]} 1 +2024-09-11 09:04:47.402322 2024-09-11 09:04:47.402326 894db817-2930-4e40-81dc-d5e36899eadc {"md5": "d314f4c8ce9a42528774ce37407b952c", "pid": "13949992X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["arm"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/13949992X", "source": "IDREF"}], "variant_name": ["Եզեկյան, Լևոն", "Ezekian, Lewon", "Ezegian, Levon", "Ezekean, Lewon", "Yezekian, Levon"], "date_of_birth": "1941-06-13", "preferred_name": "Ezekyan, Lewon", "country_associated": "ai", "variant_access_point": ["Ezekian, Lewon", "Ezegian, Levon", "Ezekean, Lewon", "Yezekian, Levon"], "authorized_access_point": "Ezekyan, Lewon, 1941-....", "biographical_information": ["Linguiste et philologue."]} 1 +2024-09-11 09:04:47.460711 2024-09-11 09:04:47.460715 f978638e-bd10-468b-8a5c-2706dd4ea412 {"md5": "adec2df42fbd8821eafd3d0a36833254", "pid": "139513760", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/139513760", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Pérez, Silverio", "country_associated": "pr", "authorized_access_point": "Pérez, Silverio, 19..-....", "biographical_information": ["Ecrivain et compositeur portoricain"]} 1 +2024-09-11 09:04:47.521461 2024-09-11 09:04:47.521464 e9059ff2-945a-4f18-a286-c5352d5b77a4 {"md5": "f2f0d7d42a9f4005631d5b998968fb43", "pid": "139752528", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/139752528", "source": "IDREF"}], "variant_name": ["NGS"], "preferred_name": "Numismatische Gesellschaft Speyer", "country_associated": "gw", "variant_access_point": ["NGS"], "date_of_establishment": "1965", "authorized_access_point": "Numismatische Gesellschaft Speyer"} 1 +2024-09-11 09:04:47.578898 2024-09-11 09:04:47.578901 4de48912-92fc-4dd6-87c7-a69adeba8f4e {"md5": "cbcd6b685ba5167278375b030bd8ae12", "pid": "139755969", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/139755969", "source": "IDREF"}], "date_of_birth": "1929", "preferred_name": "Lagowski, Jeanne Mund", "country_associated": "xx", "authorized_access_point": "Lagowski, Jeanne Mund, 1929-...."} 1 +2024-09-11 09:04:47.642043 2024-09-11 09:04:47.642047 3a298e12-9190-4c80-bafc-b3cf757fd4b1 {"md5": "2da28a631c039e2c0357fc1bef26a13e", "pid": "139815201", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/139815201", "source": "IDREF"}], "preferred_name": "Brault, Vanessa", "country_associated": "fr", "authorized_access_point": "Brault, Vanessa"} 1 +2024-09-11 09:04:47.701098 2024-09-11 09:04:47.701101 8da92a26-e54f-4f71-a332-ed78a0a7b6b1 {"md5": "793e42708ed0b5b352fc793964030d25", "pid": "139830383", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/139830383", "source": "IDREF"}], "date_of_birth": "19..", "preferred_name": "Beurdeley, Didier", "country_associated": "fr", "authorized_access_point": "Beurdeley, Didier, 19..-", "biographical_information": ["Titulaire d'une thèse de 3ème cycle en Sciences Odontologiques à l'Université de Paris 7, 1985"]} 1 +2024-09-11 09:04:47.755595 2024-09-11 09:04:47.7556 e5805765-c568-4694-af76-0e100607099d {"md5": "aa0e33f33b623b83a434f25085704e78", "pid": "139890629", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/139890629", "source": "IDREF"}], "variant_name": ["DD6 symposium"], "preferred_name": "Symposium on differential geometry and differential equations", "country_associated": "cc", "date_of_termination": "1985-07-06", "variant_access_point": ["DD6 symposium"], "date_of_establishment": "1985-06-21", "authorized_access_point": "Symposium on differential geometry and differential equations (06 ; 1985 ; Shanghai, Chine)"} 1 +2024-09-11 09:04:47.813897 2024-09-11 09:04:47.8139 fcd517ac-639d-477b-9ab3-1cf33335372e {"md5": "4573c8ee8c8034b52ec633a6de4a19ca", "pid": "139975055", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "qualifier": "réalisateur", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/139975055", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Prouff, Philippe, réalisateur", "country_associated": "fr", "authorized_access_point": "Prouff, Philippe, 19..-...., réalisateur", "biographical_information": ["Réalisateur"]} 1 +2024-09-11 09:04:47.873023 2024-09-11 09:04:47.873026 1452557b-5076-4e58-b9f4-58f57d8d33f7 {"md5": "0e283cd96800a881287663096313563a", "pid": "140038493", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/140038493", "source": "IDREF"}], "date_of_death": "18", "preferred_name": "Herrmann, Immanuel", "country_associated": "gw", "authorized_access_point": "Herrmann, Immanuel"} 1 +2024-09-11 09:04:47.942671 2024-09-11 09:04:47.942675 83e22d9c-7805-425a-a9f2-73f61cf3de01 {"md5": "385b4ad3956b2c21fe8a6b37dc29a251", "pid": "140057196", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/140057196", "source": "IDREF"}], "preferred_name": "Fernandes, Aureliano", "country_associated": "ii", "authorized_access_point": "Fernandes, Aureliano", "biographical_information": ["Enseigne au département sciences politiques de l'université de Goa"]} 1 +2024-09-11 09:04:48.022202 2024-09-11 09:04:48.022206 e56119bb-0437-4445-a231-ae3c50a705ac {"md5": "b4762882afb9afea0b073b79ae008465", "pid": "140162070", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["hin"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/140162070", "source": "IDREF"}], "variant_name": ["रामकुमार", "Kumāra, Rāma", "Rāmakumāra", "Kumār, Rām", "Rām Kumār"], "date_of_birth": "1924", "preferred_name": "Rāmkumār", "country_associated": "ii", "variant_access_point": ["Kumāra, Rāma", "Rāmakumāra", "Kumār, Rām", "Rām Kumār"], "authorized_access_point": "Rāmkumār, 1924-....", "biographical_information": ["Ecrivain de langue hindi, né à Shimla."]} 1 +2024-09-11 09:04:48.082451 2024-09-11 09:04:48.082455 68cb84c4-004b-4539-9555-e3d989042df0 {"md5": "b1e4923a4f129f0c511a38150212a294", "pid": "140317414", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/140317414", "source": "IDREF"}], "date_of_birth": "1891", "date_of_death": "1990", "preferred_name": "Rosenthal-Schneider, Ilse", "country_associated": "gw", "authorized_access_point": "Rosenthal-Schneider, Ilse, 1891-1990", "biographical_information": ["Professeur d'histoire et de philosophie des sciences à l'université de Syndey (à partir de 1945). Docteur en philsophie en en physique de l'université de Berlin (en 1920)"]} 1 +2024-09-11 09:04:48.151769 2024-09-11 09:04:48.151774 6f9fccd3-e86f-4593-ab60-309ec2774ad5 {"md5": "4ce25363c844dd9e993dcf282d61d32e", "pid": "140354336", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/140354336", "source": "IDREF"}], "preferred_name": "Klepeczko, Jamiscz", "authorized_access_point": "Klepeczko, Jamiscz", "biographical_information": ["Professeur à l'Université Paul Verlaine-Metz en 1992. Directeur de recherche au CNRS"]} 1 +2024-09-11 09:04:48.212318 2024-09-11 09:04:48.212322 4cc628d2-72d3-4626-accc-947cce189d4f {"md5": "2ba6e82666fbd73b79780adb38654a21", "pid": "140407235", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/140407235", "source": "IDREF"}], "variant_name": ["Casa Pia (Lisbonne). Centro Cultural Casapiano"], "preferred_name": "Centro Cultural Casapiano (Lisbonne)", "country_associated": "po", "variant_access_point": ["Casa Pia (Lisbonne). Centro Cultural Casapiano"], "date_of_establishment": "2000-07-03", "authorized_access_point": "Centro Cultural Casapiano (Lisbonne)"} 1 +2024-09-11 09:04:48.267937 2024-09-11 09:04:48.26794 80d7ee6a-70cc-4f4d-b760-1d2955f73629 {"md5": "579005659bdb8c09eff26bf008b2c1ec", "pid": "140489436", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/140489436", "source": "IDREF"}], "date_of_birth": "1936-10-13", "preferred_name": "Hancock, David", "country_associated": "xxk", "authorized_access_point": "Hancock, David, 1936-...."} 1 +2024-09-11 09:04:48.33545 2024-09-11 09:04:48.335454 69038586-e6b4-4a7d-a4a6-fa7f4462247c {"md5": "67936454f45001078900903f26b4aa93", "pid": "140494383", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/140494383", "source": "IDREF"}], "date_of_birth": "1980-12-03", "preferred_name": "Lesuffleur, Stéphanie", "country_associated": "fr", "authorized_access_point": "Lesuffleur, Stéphanie, 1980-....", "biographical_information": ["Titulaire d'un doctorat en droit privé à Paris 1 en 2009, spécialiste du droit des assurances"]} 1 +2024-09-11 09:04:48.391912 2024-09-11 09:04:48.391917 c8dd4cdf-6494-4a3e-94b9-b5167a39e7b4 {"md5": "3d8756fa8eb3fbd241809ded92c914bd", "pid": "140558756", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/140558756", "source": "IDREF"}], "variant_name": ["Lesotho. Dept. of Water Affairs. Lowlands Water Supply Unit", "LWSU", "Lesotho. Lowlands Water Supply Scheme Unit"], "preferred_name": "Lesotho. Lowlands Water Supply Unit", "country_associated": "lo", "variant_access_point": ["Lesotho. Dept. of Water Affairs. Lowlands Water Supply Unit", "LWSU", "Lesotho. Lowlands Water Supply Scheme Unit"], "authorized_access_point": "Lesotho. Lowlands Water Supply Unit"} 1 +2024-09-11 09:04:48.454936 2024-09-11 09:04:48.454939 1470f16f-0019-4005-900f-b83ad35a7add {"md5": "db726a939b54ed1f52008d3e80469088", "pid": "140708987", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["pol"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/140708987", "source": "IDREF"}], "preferred_name": "Wandowski, Henryk", "country_associated": "pl", "authorized_access_point": "Wandowski, Henryk", "biographical_information": ["Traducteur"]} 1 +2024-09-11 09:04:48.520323 2024-09-11 09:04:48.520327 1a7af18b-0f65-4d88-a5ea-0e7c8b589383 {"md5": "26afebe9bfe87b6e018bfd1848f87851", "pid": "140773118", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/140773118", "source": "IDREF"}], "variant_name": ["Beynon, C. E."], "preferred_name": "Beynon, Cyril Ernest", "country_associated": "xxk", "variant_access_point": ["Beynon, C. E."], "authorized_access_point": "Beynon, Cyril Ernest", "biographical_information": ["Directeur de la section chimique et métallurgique du Collège technique de Wolverhampton-Stafforshire"]} 1 +2024-09-11 09:04:48.58467 2024-09-11 09:04:48.584676 dcf8c936-a4fb-47e7-831b-717c34c32f35 {"md5": "6121c33391450d80bb0255cddec721f0", "pid": "140821325", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/140821325", "source": "IDREF"}], "preferred_name": "Colloque international d'histoire", "date_of_termination": "1983-09-25", "date_of_establishment": "1983-09-18", "authorized_access_point": "Colloque international d'histoire (2 ; 1983 ; Athènes)", "biographical_information": ["Colloque organisé par le Centre de recherches néohelléniques de la Fondation nationale de la recherche scientifique de Grèce"]} 1 +2024-09-11 09:04:48.653969 2024-09-11 09:04:48.653973 36e31700-11d7-437e-bddc-e60935e8d8eb {"md5": "b7e9c13de1115cce82fd9640a3d4081e", "pid": "142598542", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/142598542", "source": "IDREF"}], "preferred_name": "Bréan, Aurore", "country_associated": "fr", "authorized_access_point": "Bréan, Aurore", "biographical_information": ["Titulaire du diplôme d'agronomie approfondie, spécialisation Génie de l'Environnement, option Préservation et Aménagement des Milieux - Ecologie Quantitative, Agrocampus-Ouest, 2009"]} 1 +2024-09-11 09:04:48.713201 2024-09-11 09:04:48.713206 3b00341f-15db-4f68-8145-64a42eb06417 {"md5": "2aa79a235fe58234a626fe83122e5f23", "pid": "142611379", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/142611379", "source": "IDREF"}], "variant_name": ["Salomão, Waly Dias", "Dias Salomão, Waly"], "date_of_birth": "1943", "date_of_death": "2003", "preferred_name": "Salomão, Waly", "country_associated": "bl", "variant_access_point": ["Salomão, Waly Dias", "Dias Salomão, Waly"], "authorized_access_point": "Salomão, Waly, 1943-2003", "biographical_information": ["Poète et essayiste"]} 1 +2024-09-11 09:04:48.772446 2024-09-11 09:04:48.772449 551b44bc-f9cb-42b4-ba29-50f95c133e59 {"md5": "439345fd89fc4efa8ba41d634a0bb125", "pid": "142638145", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/142638145", "source": "IDREF"}], "date_of_birth": "1973", "preferred_name": "Michel, Ariane", "country_associated": "fr", "authorized_access_point": "Michel, Ariane, 1973-....", "biographical_information": ["Réalisatrice de documentaires"]} 1 +2024-09-11 09:04:48.833673 2024-09-11 09:04:48.833678 ce3a732a-1082-4f2e-9017-ba1505b80203 {"md5": "22271fdcf1f7ed49c4573a5e61eb02e4", "pid": "142668745", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/142668745", "source": "IDREF"}], "variant_name": ["INC", "Instituto nacional de colonización (Espagne)", "Instituto nacional de colonización y desarrollo rural", "Espagne. Ministerio de agricultura. Instituto nacional de colonización y desarrollo rural"], "preferred_name": "Instituto nacional de colonizaciones (Espagne)", "country_associated": "sp", "variant_access_point": ["INC", "Instituto nacional de colonización (Espagne)", "Instituto nacional de colonización y desarrollo rural", "Espagne. Ministerio de agricultura. Instituto nacional de colonización y desarrollo rural"], "authorized_access_point": "Instituto nacional de colonizaciones (Espagne)", "biographical_information": ["Crée en octobre 1939 par le gouvernement franquiste pour la reconstruction du pays après la Guerre Civil et pour le développement économique et sociale des zones rurales"]} 1 +2024-09-11 09:04:48.893837 2024-09-11 09:04:48.893843 7dd45758-365c-421c-99ae-512b6c4f1bcc {"md5": "deb977a4a85a43c69f1826fcfdeef791", "pid": "142741299", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "cze"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/142741299", "source": "IDREF"}], "preferred_name": "Petricek, Tomas", "authorized_access_point": "Petricek, Tomas", "biographical_information": ["Spécialiste du langage F#"]} 1 +2024-09-11 09:04:48.951915 2024-09-11 09:04:48.951918 1d22434a-499d-45a4-8be0-479cdbe4250d {"md5": "a148ed660242292134a4d8d5c35f36e1", "pid": "142838411", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["tha", "chi"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/142838411", "source": "IDREF"}], "variant_name": ["มูลนิธิป่อเต็กตึ้ง (ประเทศไทย)", "華 僑 報 德 善 堂", "Fondation Pohtecktung", "Fondation Poh Teck Tung", "Pohtecktung Foundation", "Poh Teck Tung Foundation", "ป่อเต็กตึ้ง (ประเทศไทย)", "Pǭtektưng (Thaïlande)", "ป่อเต็กตึ้งประเทศไทย (มูลนิธิ)", "Pǭ Tek Tưng Prathēt Thai (Mūnlanithi)", "มูลนิธิฮั่วเคี้ยวป่อเต็กเซี่ยงตึ๊ง", "Mūnnithi Hūa Khīeo Pǭ Tek Sīang Tưng", "ฮั่วเคี้ยวป่อเต็กเซี่ยงตึ๊ง (มูลนิธิ)", "Hūa Khīeo Pǭ Tek Sīang Tưng (Mūnnithi)", "คณะเก็บศพไต้ฮงกง", "Khana Kep Sop Tai Hong Kong"], "preferred_name": "Mūnnithi Pǭ Tek Tưng (Thaïlande)", "country_associated": "th", "variant_access_point": ["華 僑 報 德 善 堂", "Fondation Pohtecktung", "Fondation Poh Teck Tung", "Pohtecktung Foundation", "Poh Teck Tung Foundation", "ป่อเต็กตึ้ง (ประเทศไทย)", "Pǭtektưng (Thaïlande)", "ป่อเต็กตึ้งประเทศไทย (มูลนิธิ)", "Pǭ Tek Tưng Prathēt Thai (Mūnlanithi)", "มูลนิธิฮั่วเคี้ยวป่อเต็กเซี่ยงตึ๊ง", "Mūnnithi Hūa Khīeo Pǭ Tek Sīang Tưng", "ฮั่วเคี้ยวป่อเต็กเซี่ยงตึ๊ง (มูลนิธิ)", "Hūa Khīeo Pǭ Tek Sīang Tưng (Mūnnithi)", "คณะเก็บศพไต้ฮงกง", "Khana Kep Sop Tai Hong Kong"], "date_of_establishment": "1937", "authorized_access_point": "Mūnnithi Pǭ Tek Tưng (Thaïlande)", "biographical_information": ["Translittération ALA-LOC", "Fondation bénévole d'origine chinoise créée officiellement à Bangkok en 1937 par un groupe de Thaïlandais d'origine chinoise, même si leur travail bénévole avait débuté dès 1910 sous le nom de คณะเก็บศพไต้ฮงกง [Khana Kep Sop Tai Hong Kong], pour but d'aider les pauvres, les sinistrés, les blessés d'accidents et de collecter les corps accidentés en lieu public, a reçu en 1992 un prix national pour son service social remarquable"]} 1 +2024-09-11 09:04:49.010392 2024-09-11 09:04:49.010396 c80e2a79-2bdc-45ec-a38a-87260d249877 {"md5": "8ead6f86cbad89ed0dd5f58ebbef0fa7", "pid": "142843229", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/142843229", "source": "IDREF"}], "preferred_name": "Renard, Éliane", "country_associated": "fr", "authorized_access_point": "Renard, Éliane"} 1 +2024-09-11 09:04:49.069651 2024-09-11 09:04:49.069655 cbc0e3c8-dad9-4e75-ae69-c72d0336c905 {"md5": "cfff002f295f94e0b2ef72eb8802f574", "pid": "142877832", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/142877832", "source": "IDREF"}], "preferred_name": "McDonnell, Thomas Michael", "country_associated": "xxu", "authorized_access_point": "McDonnell, Thomas Michael", "biographical_information": ["Professeur de droit, Pace University School of Law (2010)"]} 1 +2024-09-11 09:04:49.132616 2024-09-11 09:04:49.132621 6c25c19a-d0ee-4b79-8a6e-6dcea057c79b {"md5": "5c2d9fd9ff95bcb3b294294b441bc13b", "pid": "142918342", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/142918342", "source": "IDREF"}], "variant_name": ["Wolter, Rafael"], "date_of_birth": "1981-24-10", "preferred_name": "Pecly Wolter, Rafael", "country_associated": "fr", "variant_access_point": ["Wolter, Rafael"], "authorized_access_point": "Pecly Wolter, Rafael, 1981-....", "biographical_information": ["A soutenu une thèse de doctorat en psychologie sociale à l'Université René Descartes, le 28 novembre 2008."]} 1 +2024-09-11 09:04:49.190704 2024-09-11 09:04:49.190706 6f06d7a0-61b4-4461-be62-ee6f92f63b67 {"md5": "b028b2466d9c6419fbbb8b57ce48c433", "pid": "14299443X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/14299443X", "source": "IDREF"}], "date_of_birth": "1980-07-27", "preferred_name": "Barou, Fabrice", "country_associated": "fr", "authorized_access_point": "Barou, Fabrice, 1980-....", "biographical_information": ["Titulaire d'un doctorat de l'Ecole nationale supérieure des mines de Saint-Etienne, 2009"]} 1 +2024-09-11 09:04:49.258793 2024-09-11 09:04:49.258797 6a9309fb-e64c-4ad7-be4a-4acce7251e96 {"md5": "ba5a96d3ff8f623bd529f0c0ab0134f1", "pid": "142996734", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/142996734", "source": "IDREF"}], "preferred_name": "Koulouris, George", "country_associated": "at", "authorized_access_point": "Koulouris, George", "biographical_information": ["Directeur, Melbourne radiology clinic, East Melbourne, Australia"]} 1 +2024-09-11 09:04:49.335269 2024-09-11 09:04:49.335271 234064f6-b9e2-4c5c-b655-ef01de6544bb {"md5": "d0fd7c6847b0eda5d9cbb0a99cbcd8b5", "pid": "143028537", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/143028537", "source": "IDREF"}], "date_of_birth": "1962", "preferred_name": "Encarnación, Omar Guillermo", "country_associated": "xx", "authorized_access_point": "Encarnación, Omar Guillermo, 1962-", "biographical_information": ["Enseigne la science politique à Bard College, N.Y. (en 2008)"]} 1 +2024-09-11 09:04:49.406671 2024-09-11 09:04:49.406675 37c87261-0e3f-43a3-9c21-f556182256f9 {"md5": "bfb8383d6d88b26941d73aa249bc0089", "pid": "143076310", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/143076310", "source": "IDREF"}], "variant_name": ["ALHSUD"], "preferred_name": "Asociación Latinoamericana de Hidrología Subterránea para el Desarrollo", "country_associated": "ag", "variant_access_point": ["ALHSUD"], "authorized_access_point": "Asociación Latinoamericana de Hidrología Subterránea para el Desarrollo"} 1 +2024-09-11 09:04:49.475265 2024-09-11 09:04:49.475269 51567310-2b5a-4f7f-b12f-972d2dc6adde {"md5": "dd7fdb9980d851ea56eb24b98c5f75c2", "pid": "143098713", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/143098713", "source": "IDREF"}], "variant_name": ["Randriarison, Anjanirina"], "date_of_birth": "1980-01-08", "preferred_name": "Rahantamalala, Anjanirina", "country_associated": "mg", "variant_access_point": ["Randriarison, Anjanirina"], "authorized_access_point": "Rahantamalala, Anjanirina, 1980-....", "biographical_information": ["Titulaire d'une thèse de doctorat en biosciences végétales, biotechnologies végétales, Université Paul Sabatier, Toulouse 3 (en 2009)"]} 1 +2024-09-11 09:04:49.538801 2024-09-11 09:04:49.538806 e20b0f0a-c6ba-4937-8763-b893fc90c7e3 {"md5": "c51bc6473196974c67ccb0d651671378", "pid": "143120743", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/143120743", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Saul, Matthew", "country_associated": "xxk", "authorized_access_point": "Saul, Matthew, 19..-....", "biographical_information": ["Assistant en droit à Durham Law School, Université de Durham, en Angleterre (en 2010)", "Chercheur en droit à Department of Public and International Law, Université d'Oslo, Norvège (en 2014)"]} 1 +2024-09-11 09:04:49.605243 2024-09-11 09:04:49.605246 29e54076-7bee-4e81-9965-526ead436eae {"md5": "174647d39e2b0d5eca7e5aaade57a1dc", "pid": "143151851", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/143151851", "source": "IDREF"}], "preferred_name": "Wanderley, Germano", "country_associated": "gw", "authorized_access_point": "Wanderley, Germano"} 1 +2024-09-11 09:04:49.6633 2024-09-11 09:04:49.663305 17c74e39-e564-447a-a083-89e119161e77 {"md5": "d8fea54536aee0539742006f7feb25e2", "pid": "143329790", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["pol"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/143329790", "source": "IDREF"}], "date_of_birth": "1931", "date_of_death": "2022", "preferred_name": "Kruppé, Jerzy", "country_associated": "pl", "authorized_access_point": "Kruppé, Jerzy, 1931-2022", "biographical_information": ["Archéologue"]} 1 +2024-09-11 09:04:49.730855 2024-09-11 09:04:49.730859 78d4f566-2109-4a40-8ef9-4fe15a0f59fe {"md5": "a31d0e014da493c94dc5f1ca6db2e0f6", "pid": "143330772", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["egy"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/143330772", "source": "IDREF"}], "variant_name": ["Wanly, Ibrahim Adham"], "date_of_birth": "1908", "date_of_death": "1959", "preferred_name": "Wanly, Adham", "country_associated": "ua", "variant_access_point": ["Wanly, Ibrahim Adham"], "authorized_access_point": "Wanly, Adham, 1908-1959", "biographical_information": ["Peintre"]} 1 +2024-09-11 09:04:49.789783 2024-09-11 09:04:49.789788 6b8d5fec-4104-45a4-a6c1-304e5dbec5b0 {"md5": "18aaa6f8b4660344a535e26e952147f5", "pid": "143403826", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/143403826", "source": "IDREF"}], "date_of_birth": "1960-07-10", "preferred_name": "Martin, Gregory M.", "country_associated": "xxu", "authorized_access_point": "Martin, Gregory M., 1960-...."} 1 +2024-09-11 09:04:49.857181 2024-09-11 09:04:49.857184 27502eeb-daea-4839-a589-5f494fbbad1e {"md5": "3fe7e725421a1531ca0d6de99be6fc2d", "pid": "143470280", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/143470280", "source": "IDREF"}], "variant_name": ["Rodríguez, Rakel", "Rodríguez López, Raquel"], "preferred_name": "Rodríguez, Raquel", "country_associated": "sp", "variant_access_point": ["Rodríguez, Rakel", "Rodríguez López, Raquel"], "authorized_access_point": "Rodríguez, Raquel"} 1 +2024-09-11 09:04:49.92516 2024-09-11 09:04:49.925164 0f03e60d-a1f4-4eeb-a80e-9ee19592cad7 {"md5": "642fae47cb968f95db9215d054540959", "pid": "143860747", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/143860747", "source": "IDREF"}], "date_of_birth": "1980-09-30", "preferred_name": "Scotet, Julie", "country_associated": "fr", "authorized_access_point": "Scotet, Julie, 1980-....", "biographical_information": ["Titulaire d'une thèse d'exercice en Pharmacie (Lyon 1, 2009)"]} 1 +2024-09-11 09:04:49.99264 2024-09-11 09:04:49.992644 d75a4ea0-b5cc-47e1-9504-41dc835c9f00 {"md5": "864a6d8401d5d84078ea33e9c636de76", "pid": "144467909", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/144467909", "source": "IDREF"}], "preferred_name": "Institution interdépartementale du Bassin de la Sèvre nantaise", "country_associated": "fr", "authorized_access_point": "Institution interdépartementale du Bassin de la Sèvre nantaise"} 1 +2024-09-11 09:04:50.054024 2024-09-11 09:04:50.054027 7a22202a-c943-4358-a2dc-638c469ede5d {"md5": "4066fbcdf433d062c9d1c7178af67dcd", "pid": "144487179", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre", "dut"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/144487179", "source": "IDREF"}], "preferred_name": "Van der Plancke, Véronique", "country_associated": "be", "authorized_access_point": "Van der Plancke, Véronique"} 1 +2024-09-11 09:04:51.884931 2024-09-11 09:04:51.884935 d1950bf8-4cf7-4178-8de3-050292f3f654 {"md5": "85014d0dc22b6f8706cfe5fcd3473cbe", "pid": "147054672", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/147054672", "source": "IDREF"}], "preferred_name": "Dreyer, P.", "country_associated": "fr", "authorized_access_point": "Dreyer, P."} 1 +2024-09-11 09:04:50.11106 2024-09-11 09:04:50.111065 a3098c49-51dc-46f0-93a5-8b285596a75e {"md5": "d319c8ae87262052b1a86f7bfb3c4464", "pid": "144499401", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/144499401", "source": "IDREF"}], "date_of_birth": "1972-08-07", "preferred_name": "Chevaillier, Béatrice", "country_associated": "fr", "authorized_access_point": "Chevaillier, Béatrice, 1972-....", "biographical_information": ["Titulaire d'un doctorat en Mathématiques soutenu à l'Université Paul Verlaine-Metz en 2010"]} 1 +2024-09-11 09:04:50.170268 2024-09-11 09:04:50.170273 7eec51b0-e7db-4b3b-9459-21acfecd3faa {"md5": "4dea442253b7b1c73cf78bb034e6666a", "pid": "144580403", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/144580403", "source": "IDREF"}], "variant_name": ["Israel medical association. Israel psychiatric association"], "preferred_name": "Israel psychiatric association", "country_associated": "is", "variant_access_point": ["Israel medical association. Israel psychiatric association"], "date_of_establishment": "1972", "authorized_access_point": "Israel psychiatric association"} 1 +2024-09-11 09:04:50.227362 2024-09-11 09:04:50.227367 82206322-2cc4-4b90-9f28-7d6513a5c00a {"md5": "0880b42871a41ff73ab368dc6028edaf", "pid": "144614421", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/144614421", "source": "IDREF"}], "variant_name": ["Kibwanga, Joseph Senga"], "date_of_birth": "1956-01-17", "preferred_name": "Senga Kibwanga, Joseph", "country_associated": "cg", "variant_access_point": ["Kibwanga, Joseph Senga"], "authorized_access_point": "Senga Kibwanga, Joseph", "biographical_information": ["Auteur de bandes dessinées"]} 1 +2024-09-11 09:04:50.287571 2024-09-11 09:04:50.287576 a9261c82-3f02-43dc-bfee-70386f146078 {"md5": "552b436693de309e538975cccdb4b19f", "pid": "144636077", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/144636077", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Letelier, Mario", "country_associated": "xx", "authorized_access_point": "Letelier, Mario, 19..-...."} 1 +2024-09-11 09:04:50.347286 2024-09-11 09:04:50.34729 e078c903-6691-449b-b4b9-2528d886f5d9 {"md5": "a1247493c5dae135e263a52624ee3178", "pid": "145090515", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/145090515", "source": "IDREF"}], "preferred_name": "Sedley, Liz", "authorized_access_point": "Sedley, Liz"} 1 +2024-09-11 09:04:50.409809 2024-09-11 09:04:50.409812 2ba59147-12a5-466a-922f-6219fe3e58a4 {"md5": "ceddecb20fdbca219d5376ead3b2504d", "pid": "145209512", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["pol"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/145209512", "source": "IDREF"}], "preferred_name": "Dlugajczyk, Beata", "country_associated": "pl", "authorized_access_point": "Dlugajczyk, Beata"} 1 +2024-09-11 09:04:50.485368 2024-09-11 09:04:50.485374 ed4e4d4d-8f9e-4396-83a8-d03d4401e36d {"md5": "a36586b6e452574bc40ea13c203412bb", "pid": "145286444", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/145286444", "source": "IDREF"}], "preferred_name": "Erman, Elise", "country_associated": "gw", "authorized_access_point": "Erman, Elise"} 1 +2024-09-11 09:04:50.554038 2024-09-11 09:04:50.554042 f1b44946-0869-4e8f-b5eb-fa08d433ec6c {"md5": "f4e9aa0d15a68f52b22a1485cddf06cf", "pid": "145296741", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/145296741", "source": "IDREF"}], "date_of_birth": "1979", "preferred_name": "Bentancor, Martín", "country_associated": "uy", "authorized_access_point": "Bentancor, Martín, 1979-...."} 1 +2024-09-11 09:04:50.610961 2024-09-11 09:04:50.610966 bac68db1-7079-415e-ac64-96d0758588fe {"md5": "b95531751424b1666e18b3dc97156dbf", "pid": "145350177", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/145350177", "source": "IDREF"}], "variant_name": ["Нестерова, Наталья Игоревна", "Nesterova, Natalya"], "date_of_birth": "1944-04-23", "preferred_name": "Nesterova, Natalia Igorevna", "country_associated": "ru", "variant_access_point": ["Nesterova, Natalya"], "parallel_access_point": ["Nesterova, Natal'â, 1944-..."], "authorized_access_point": "Nesterova, Natalia Igorevna, 1944-...", "biographical_information": ["Peintre russe, vit à Moscou et aux Etats-Unis"]} 1 +2024-09-11 09:04:50.674727 2024-09-11 09:04:50.67473 f30c75dd-6b38-482c-bf93-52df6633f43d {"md5": "184d094ebbc6162adbb93d29aa343dd7", "pid": "145351297", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und", "kor"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/145351297", "source": "IDREF"}], "preferred_name": "Westphal, Manfred", "country_associated": "gw", "authorized_access_point": "Westphal, Manfred", "biographical_information": ["Universitätsklinikum Hamburg, Klinik und Poliklinik für Neurochirurgie, Hamburg, Germany"]} 1 +2024-09-11 09:04:50.740472 2024-09-11 09:04:50.740475 6f8e09f0-3e3e-41ac-abc6-1ff1f5bd9a83 {"md5": "c389378ad3aa1b0fe858dcec4e882f3b", "pid": "145373487", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/145373487", "source": "IDREF"}], "preferred_name": "Dumand, Dominique", "country_associated": "fr", "authorized_access_point": "Dumand, Dominique", "biographical_information": ["Est membre d'Aden-Arabie Atelier (2010)"]} 1 +2024-09-11 09:04:50.799909 2024-09-11 09:04:50.799915 894d2389-9bae-4365-8b47-d1bb6b446c7e {"md5": "545f6a67404d6c2ac19b839486f5b99c", "pid": "145630218", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/145630218", "source": "IDREF"}], "preferred_name": "Fundación Española de Historia Moderna", "country_associated": "sp", "authorized_access_point": "Fundación Española de Historia Moderna"} 1 +2024-09-11 09:04:50.867983 2024-09-11 09:04:50.867987 b9ff1c3e-8ac9-46d9-b729-82d7fa492687 {"md5": "c395e3b673675b606b276b3f7445b53d", "pid": "145636496", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/145636496", "source": "IDREF"}], "preferred_name": "Dengler, Paul", "country_associated": "fr", "authorized_access_point": "Dengler, Paul", "biographical_information": ["Médecin"]} 1 +2024-09-11 09:04:50.994705 2024-09-11 09:04:50.994707 e343a04c-643b-4eb1-8956-72bac1c56b74 {"md5": "a7fd9bfd3ce9c1ec713b85393a0abfdb", "pid": "14566841X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/14566841X", "source": "IDREF"}], "variant_name": ["Aliani, Sophie Verdier"], "date_of_birth": "1969-02-09", "preferred_name": "Verdier-Aliani, Sophie", "country_associated": "fr", "variant_access_point": ["Aliani, Sophie Verdier"], "authorized_access_point": "Verdier-Aliani, Sophie, 1969-....", "biographical_information": ["Titulaire du diplôme d'ingénieur du CNAM, 1997"]} 1 +2024-09-11 09:04:51.053609 2024-09-11 09:04:51.053613 2a830aca-8b53-4ac7-9045-fa4cbdbdc1c3 {"md5": "5c5e12b5d08ab8e7e9ed9934d4ed0914", "pid": "145729613", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rum"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/145729613", "source": "IDREF"}], "preferred_name": "Stanciu, Augustina", "country_associated": "rm", "authorized_access_point": "Stanciu, Augustina", "biographical_information": ["Scénariste"]} 1 +2024-09-11 09:04:51.117972 2024-09-11 09:04:51.117978 619572f3-34f5-4d89-a01b-36f2252ab7da {"md5": "ea99b2b97b77efdac0af63fd294b58c3", "pid": "14577838X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["gre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/14577838X", "source": "IDREF"}], "variant_name": ["Priftis, Kostas N."], "preferred_name": "Priftis, Kostas N.", "country_associated": "gr", "variant_access_point": ["Priftis, Kostas N."], "authorized_access_point": "Priftis, Kostas N.", "biographical_information": ["Pneumologue-allergologue"]} 1 +2024-09-11 09:04:51.200419 2024-09-11 09:04:51.200422 09079bc1-789c-4633-ad80-e5c0df151447 {"md5": "48cb23a18a6f0fc405a07fdad420c3ab", "pid": "145888185", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/145888185", "source": "IDREF"}], "variant_name": ["Славянов, Николай Николаевич"], "preferred_name": "Slavjanov, Nikolaj Nikolaevich", "country_associated": "ru", "variant_access_point": ["Славянов, Николай Николаевич"], "parallel_access_point": ["Slavânov, Nikolaj Nikolaevič"], "authorized_access_point": "Slavjanov, Nikolaj Nikolaevich"} 1 +2024-09-11 09:04:51.261948 2024-09-11 09:04:51.261951 da941949-1858-4704-b969-f09fbcf8d2fc {"md5": "198a8f408eb3a64150e84eff66039185", "pid": "145959783", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/145959783", "source": "IDREF"}], "preferred_name": "Pellissier, Simone", "authorized_access_point": "Pellissier, Simone"} 1 +2024-09-11 09:04:51.325075 2024-09-11 09:04:51.325079 2abd47e1-7093-4afe-b1de-7d55b36abe59 {"md5": "33b8c9bb4e91c992a3393b7700cbde24", "pid": "146054210", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/146054210", "source": "IDREF"}], "preferred_name": "Lausanne jardins", "country_associated": "sz", "authorized_access_point": "Lausanne jardins (04 ; Lausanne ; 2009)", "biographical_information": ["Manifestation temporaire"]} 1 +2024-09-11 09:04:51.394227 2024-09-11 09:04:51.39423 28eaa933-7ab4-4e0c-bf42-b1fe27b4b276 {"md5": "d03f1a8f6b2d2f06c2101819ddc70cfc", "pid": "146086457", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/146086457", "source": "IDREF"}], "preferred_name": "Petten-van Charante, Hanna van", "country_associated": "ne", "authorized_access_point": "Petten-van Charante, Hanna van"} 1 +2024-09-11 09:04:51.465618 2024-09-11 09:04:51.465627 3382c9a9-4718-4229-8017-ba0f6bee14f5 {"md5": "d445c236327d5645781689baf2a87732", "pid": "146148754", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/146148754", "source": "IDREF"}], "variant_name": ["Pinacoteca della Fondazione Cassa di risparmio di Tortona (Italie)"], "preferred_name": "Fondazione Cassa di risparmio di Tortona. Pinacoteca (Tortone, Italie)", "country_associated": "it", "variant_access_point": ["Pinacoteca della Fondazione Cassa di risparmio di Tortona (Italie)"], "authorized_access_point": "Fondazione Cassa di risparmio di Tortona. Pinacoteca (Tortone, Italie)"} 1 +2024-09-11 09:04:51.534905 2024-09-11 09:04:51.534911 90b05db7-301f-4941-aeae-d5cf291de015 {"md5": "898060e78a94be970139a7c32b3ccfef", "pid": "146270401", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/146270401", "source": "IDREF"}], "date_of_birth": "1977", "preferred_name": "Mayer-Rossignol, Nicolas", "country_associated": "fr", "authorized_access_point": "Mayer-Rossignol, Nicolas, 1977-....", "biographical_information": ["Ingénieur du corps des Mines. Fonctionnaire européen. Maire de Rouen, président de la métropole Rouen-Normandie (élections en 2020)"]} 1 +2024-09-11 09:04:51.617803 2024-09-11 09:04:51.617809 10fb5262-e3eb-4386-ac64-f23f49fdec34 {"md5": "edae0f504c2766d8dc087dfde14418a3", "pid": "146872584", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/146872584", "source": "IDREF"}], "date_of_birth": "1952-06-22", "preferred_name": "Wempe, Johan Ferdinand Dietrich Bernardus", "country_associated": "ne", "authorized_access_point": "Wempe, Johan Ferdinand Dietrich Bernardus", "biographical_information": ["Spécialiste de morale des affaires"]} 1 +2024-09-11 09:04:51.676383 2024-09-11 09:04:51.676387 6290d78f-bd6f-4090-818a-a16a9a0f9ac4 {"md5": "4c44d254fd335d675f395bf4984c96be", "pid": "146874595", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["chi", "eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/146874595", "source": "IDREF"}], "preferred_name": "Kee, Ming-Yuet", "country_associated": "xxu", "authorized_access_point": "Kee, Ming-Yuet", "biographical_information": ["Éducatrice ; collectionneuse de porcelaine chinoise peranakan"]} 1 +2024-09-11 09:04:51.747441 2024-09-11 09:04:51.747446 5e56ecf4-2d47-4573-aca4-99ce787ae7c0 {"md5": "6cd1cb8c06ca6e2d32df1ec65b19dc80", "pid": "146985109", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "moniale rasophore", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/146985109", "source": "IDREF"}], "variant_name": ["Élisabeth, Soeur"], "date_of_birth": "1940-02-29", "preferred_name": "Élisabeth, moniale rasophore", "country_associated": "be", "variant_access_point": ["Élisabeth, Soeur"], "authorized_access_point": "Élisabeth, 1940-...., moniale rasophore", "biographical_information": ["Moniale rasophore. - Collaboratrice de la revue \\"Diakonia\\", secrétaire de la Fraternité orthodoxe-Tous les saints de Belgique (en 2010)"]} 1 +2024-09-11 09:04:51.942752 2024-09-11 09:04:51.942757 20bf0ac3-397d-4ed3-821b-2c18dee05d1e {"md5": "1df40f483ea118d1fc89cfb6bc7cd1be", "pid": "147179955", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/147179955", "source": "IDREF"}], "variant_name": ["Smith, Wendy Sutherland-"], "date_of_birth": "19XX", "preferred_name": "Sutherland-Smith, Wendy", "country_associated": "at", "variant_access_point": ["Smith, Wendy Sutherland-"], "authorized_access_point": "Sutherland-Smith, Wendy, 19..-....", "biographical_information": ["Senior lecturer à la Faculty of education at Monas, Australia"]} 1 +2024-09-11 09:04:52.020382 2024-09-11 09:04:52.020386 dffe2296-1d25-422b-88ab-1fc99c04a7fc {"md5": "285008583058871419d334a7eedd20ac", "pid": "147233429", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/147233429", "source": "IDREF"}], "preferred_name": "Lekhina, Ekaterina", "country_associated": "ru", "authorized_access_point": "Lekhina, Ekaterina", "biographical_information": ["Soprano"]} 1 +2024-09-11 09:04:52.090697 2024-09-11 09:04:52.090701 fd872cbd-91fa-4fd6-8aa5-cf6e61f81293 {"md5": "d8bf1c9e3efcc4d5a8795b8eba689712", "pid": "147297192", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/147297192", "source": "IDREF"}], "preferred_name": "Broudic, Patrick", "country_associated": "xx", "authorized_access_point": "Broudic, Patrick", "biographical_information": ["Membre de l'inspection générale des affaires sociales (en 2010)"]} 1 +2024-09-11 09:04:52.156369 2024-09-11 09:04:52.156372 58c18898-52b8-4724-b21f-27de1d0d77be {"md5": "cbf0074268733eec65af5a8c9ab73b8e", "pid": "147331781", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/147331781", "source": "IDREF"}], "variant_name": ["Spray, S. Lee"], "date_of_birth": "1935", "preferred_name": "Spray, Sherrad Lee", "country_associated": "xxu", "variant_access_point": ["Spray, S. Lee"], "authorized_access_point": "Spray, Sherrad Lee, 1935-...."} 1 +2024-09-11 09:04:52.222828 2024-09-11 09:04:52.222831 7a4d20b8-554f-424b-8b8a-a5e204405dce {"md5": "50da31adaf50b29ca1a90a55ca5ac093", "pid": "147383579", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/147383579", "source": "IDREF"}], "preferred_name": "Theimer, Uwe", "country_associated": "xx", "authorized_access_point": "Theimer, Uwe", "biographical_information": ["Chef de choeur. Dirige le Wiener Sängerknaben (en 1974)"]} 1 +2024-09-11 09:04:52.27862 2024-09-11 09:04:52.278625 8be0dc33-c35d-4680-89cb-bef24b208a7a {"md5": "6020e761c2aea81e6924ea141e420f55", "pid": "147406889", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/147406889", "source": "IDREF"}], "variant_name": ["Allemagne (1871-1945). Heer. Reserve-Infanterie-Regiment (16)", "RIR 16", "List Regiment"], "preferred_name": "Allemagne (1871-1945). Heer. Bayerisches Reserve-Infanterie-Regiment (16)", "country_associated": "gw", "date_of_termination": "1945", "variant_access_point": ["Allemagne (1871-1945). Heer. Reserve-Infanterie-Regiment (16)", "RIR 16", "List Regiment"], "date_of_establishment": "1871", "authorized_access_point": "Allemagne (1871-1945). Heer. Bayerisches Reserve-Infanterie-Regiment (16)"} 1 +2024-09-11 09:04:52.344679 2024-09-11 09:04:52.344681 102c4ee3-65b2-4ec3-b737-56ff82de9ead {"md5": "3313c1aa4903966de3b1062e036fc75d", "pid": "147465885", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/147465885", "source": "IDREF"}], "variant_name": ["France. Ministère de l'agriculture (1881-1916). Service du crédit mutuel et de la coopération agricole"], "preferred_name": "France. Service du crédit mutuel et de la coopération agricole", "country_associated": "fr", "variant_access_point": ["France. Ministère de l'agriculture (1881-1916). Service du crédit mutuel et de la coopération agricole"], "authorized_access_point": "France. Service du crédit mutuel et de la coopération agricole"} 1 +2024-09-11 09:04:52.41876 2024-09-11 09:04:52.418764 db7a949a-513a-49dd-b156-6555eb42ba29 {"md5": "3fe72eeabdbc13e70838f95f0ac07f14", "pid": "147528712", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/147528712", "source": "IDREF"}], "variant_name": ["Osagie, Iyunolu"], "date_of_birth": "1960", "preferred_name": "Osagie, Iyunolu Folayan", "country_associated": "xxu", "variant_access_point": ["Osagie, Iyunolu"], "authorized_access_point": "Osagie, Iyunolu Folayan, 1960-....", "biographical_information": ["Professeur associé d'anglais at the Pennsylvania State University, recherche sur la littérature africaine et afro-américaine"]} 1 +2024-09-11 09:04:52.491791 2024-09-11 09:04:52.491797 5a03414a-9c33-4510-8d96-1999228afa46 {"md5": "cf02e0e4b4b21413595abe36ee813803", "pid": "147644305", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/147644305", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Spiess, Bernhard", "country_associated": "sz", "authorized_access_point": "Spiess, Bernhard, 19..-....", "biographical_information": ["Professor veterinary ophtalmology : Department for small animals, Ophtalmology unit, Vetsuisse faculty, University of Zurich (Switzerland)"]} 1 +2024-09-11 09:04:52.580656 2024-09-11 09:04:52.580661 1a520b74-d670-460f-a740-45cf1ca9bc78 {"md5": "cc204a00ba3e874adbf5584041a38772", "pid": "147700094", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/147700094", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Deschizeaux, Pierre", "country_associated": "fr", "authorized_access_point": "Deschizeaux, Pierre, 19..-....", "biographical_information": ["Auteur d'une thèse en sciences physiques (Grenoble, 1971). Directeur de thèse à l'Université de Haute-Alsace en 1995"]} 1 +2024-09-11 09:04:52.656181 2024-09-11 09:04:52.656185 d66e7417-67b1-436e-959c-392ae2373b3e {"md5": "eacd571f6461556302a5daeb56d956c2", "pid": "147759420", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/147759420", "source": "IDREF"}], "date_of_birth": "1590", "date_of_death": "1655", "preferred_name": "Vernazza, Livia", "country_associated": "it", "authorized_access_point": "Vernazza, Livia, 1590-1655", "biographical_information": ["Epouse de Jean de Medicis 1563-1621"]} 1 +2024-09-11 09:04:52.730182 2024-09-11 09:04:52.730185 ab63bf18-b35e-4b80-9518-8ba7f8898ff5 {"md5": "8478bc4d5c5101b4b187d6233c5b71a6", "pid": "147906423", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/147906423", "source": "IDREF"}], "preferred_name": "Figarova, Sophia R.", "country_associated": "aj", "authorized_access_point": "Figarova, Sophia R.", "biographical_information": ["En poste : Baku state university, Azerbaïdjan (en 2010)"]} 1 +2024-09-11 09:04:52.805136 2024-09-11 09:04:52.805142 2b117af8-295f-420e-997b-39fcd07289b7 {"md5": "9ff26e39d5fbd8a52bd726ca3c76be3f", "pid": "147934540", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/147934540", "source": "IDREF"}], "date_of_birth": "1975-07-04", "preferred_name": "Vernet, Marie-Christine", "country_associated": "fr", "authorized_access_point": "Vernet, Marie-Christine, 1975....", "biographical_information": ["Titulaire d'une thèse d'exercice en Pharmacie (Lyon 1, 2001)"]} 1 +2024-09-11 09:04:52.881629 2024-09-11 09:04:52.881634 799ea356-11a4-4db5-8586-95d2071aac86 {"md5": "d025c39ecdf80f0143193df9fca2bf31", "pid": "148064884", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148064884", "source": "IDREF"}], "variant_name": ["Revelo, Baudilio Hurtado"], "date_of_birth": "19XX", "preferred_name": "Revelo Hurtado, Baudilio", "country_associated": "ck", "variant_access_point": ["Revelo, Baudilio Hurtado"], "authorized_access_point": "Revelo Hurtado, Baudilio, 19..-...."} 1 +2024-09-11 09:04:52.941282 2024-09-11 09:04:52.941286 ae3dd2c3-d876-4546-891d-ca338884aabf {"md5": "6f834f5372fa2fb8bc4d387709dd3c43", "pid": "148113761", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "qualifier": "pasteur", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148113761", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Harper, Steve, pasteur", "country_associated": "xxu", "authorized_access_point": "Harper, Steve, 19..-...., pasteur"} 1 +2024-09-11 09:04:53.002886 2024-09-11 09:04:53.002891 d5d57685-e58d-4eef-8f79-2a0508f376c2 {"md5": "26779fa83ca627b13d8f1d1771de694a", "pid": "148169643", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148169643", "source": "IDREF"}], "date_of_birth": "1983-07-31", "preferred_name": "Manenc, Lauren", "country_associated": "fr", "authorized_access_point": "Manenc, Lauren, 1983-....", "biographical_information": ["Docteur en pharmacie (thèse d'exercice, Paris Descartes, 2010)"]} 1 +2024-09-11 09:04:53.062895 2024-09-11 09:04:53.062897 b7c17e74-98aa-4e4b-a9a1-3d35992c2ed3 {"md5": "a4936f5ffc54fb7a5143819829b5c348", "pid": "148202330", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148202330", "source": "IDREF"}], "date_of_birth": "1982-09-06", "preferred_name": "Vanderkam, Lucie", "country_associated": "fr", "authorized_access_point": "Vanderkam, Lucie, 1982-....", "biographical_information": ["Titulaire d'une thèse d'exercice en Médecine (Lyon 1, 2010)"]} 1 +2024-09-11 09:04:53.129045 2024-09-11 09:04:53.129049 10abfc1c-189a-4c37-8dad-94edf7323fd6 {"md5": "75dc2466e8a000748bbf717f65c98460", "pid": "148265286", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148265286", "source": "IDREF"}], "variant_name": ["Mel'vil', IU. K."], "preferred_name": "Melvil, IUrij Konstantinovič", "variant_access_point": ["Mel'vil', IU. K."], "authorized_access_point": "Melvil, IUrij Konstantinovič"} 1 +2024-09-11 09:04:53.186982 2024-09-11 09:04:53.186985 46cd58ca-0e62-4e5f-9056-f89fd395d65a {"md5": "841a9b4351635cb67085775f6af5a014", "pid": "148350887", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ind"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148350887", "source": "IDREF"}], "variant_name": ["Sulistiawan, Iwan, \\"BK\\"", "Sulistiawan, Iwan, \\"Bung Kelinci\\""], "preferred_name": "Sulistiawan, Iwan", "country_associated": "io", "variant_access_point": ["Sulistiawan, Iwan, \\"BK\\"", "Sulistiawan, Iwan, \\"Bung Kelinci\\""], "authorized_access_point": "Sulistiawan, Iwan", "biographical_information": ["Enseignant à l'Ecole Supérieure des Langues Etrangères et artiste (metteur en scène de théâtre, journaliste, écrivain ...)"]} 1 +2024-09-11 09:04:53.250465 2024-09-11 09:04:53.250469 564755d0-425f-401f-a629-8ccde4408e82 {"md5": "c890a17acb99b3792ed9025e346643e8", "pid": "148352006", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148352006", "source": "IDREF"}], "variant_name": ["Hernández Aguilar, Mariana", "Aguilar, Mariana Hernández"], "date_of_birth": "1915", "date_of_death": "1992", "preferred_name": "Dorta, Mariana", "country_associated": "sp", "variant_access_point": ["Hernández Aguilar, Mariana", "Aguilar, Mariana Hernández"], "authorized_access_point": "Dorta, Mariana, 1915-1992"} 1 +2024-09-11 09:04:53.307357 2024-09-11 09:04:53.307362 1eba4c11-5b6e-4437-953c-c68c3b968918 {"md5": "f5065d7036b0b73c50df4095f93f2596", "pid": "148411754", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148411754", "source": "IDREF"}], "preferred_name": "Wright, Sarah L.", "country_associated": "nz", "authorized_access_point": "Wright, Sarah L.", "biographical_information": ["Lecturer en comportement organisationel à l'Université de Canterbury, Nouvelle Zélande (2009)"]} 1 +2024-09-11 09:04:53.368599 2024-09-11 09:04:53.368603 cb386011-337d-426c-854a-a9e6d59bd49f {"md5": "4e4eeb346dadf05477db4bc2f5ba4a28", "pid": "148443230", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148443230", "source": "IDREF"}], "preferred_name": "Dahl, Gina", "authorized_access_point": "Dahl, Gina", "biographical_information": ["Docteur en Histoire des religions. Post-doctorante à l'université de Bergen"]} 1 +2024-09-11 09:04:53.449493 2024-09-11 09:04:53.449495 3a0d0dd7-f5b5-44c8-b0e7-1b1a90360ab7 {"md5": "14d0164f06e5084fa36e618fde8a5fa8", "pid": "148457568", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148457568", "source": "IDREF"}], "date_of_birth": "1985-11-06", "preferred_name": "Leguin, Kathleen", "country_associated": "fr", "authorized_access_point": "Leguin, Kathleen, 1985-....", "biographical_information": ["Docteur en médecine vétérinaire (en 2010)"]} 1 +2024-09-11 09:04:55.871588 2024-09-11 09:04:55.871592 57aa0a11-5d7e-491c-b2cd-bd57a70ef8f7 {"md5": "29a13c163c1127a2c4775dc0dba72a2f", "pid": "150102836", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/150102836", "source": "IDREF"}], "preferred_name": "Avenell, Simon Andrew", "country_associated": "xxu", "authorized_access_point": "Avenell, Simon Andrew"} 1 +2024-09-11 09:04:53.509123 2024-09-11 09:04:53.509128 a2b43bdd-4032-4946-af20-1571c3c4a6d4 {"md5": "985f20e0e57cfedeececb45e435a4d23", "pid": "148462081", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148462081", "source": "IDREF"}], "preferred_name": "Sandtner, Markus", "country_associated": "au", "authorized_access_point": "Sandtner, Markus", "biographical_information": ["Historien de l'art"]} 1 +2024-09-11 09:04:53.570617 2024-09-11 09:04:53.570621 dbef0f89-98ac-4919-ac77-ebe6c9b433f1 {"md5": "6d903738afef13ae0ca5f0d4f87121ac", "pid": "148468020", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148468020", "source": "IDREF"}], "preferred_name": "Convegno internazionale di studi georgiani", "country_associated": "it", "date_of_establishment": "1999", "authorized_access_point": "Convegno internazionale di studi georgiani"} 1 +2024-09-11 09:04:53.638782 2024-09-11 09:04:53.638786 4159b776-a26b-4d64-87bf-46e3f9622483 {"md5": "512b183a5223871ee18a064e23c1aed6", "pid": "148481418", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148481418", "source": "IDREF"}], "preferred_name": "American Society for Testing Materials. Pacific Area National Meeting", "country_associated": "xxu", "date_of_termination": "1956-09-18", "date_of_establishment": "1956-09-17", "authorized_access_point": "American Society for Testing Materials. Pacific Area National Meeting (2 ; 1956 ; Los Angeles, Calif.)"} 1 +2024-09-11 09:04:53.713222 2024-09-11 09:04:53.713227 086beb7f-fa40-4f7b-8ef8-5b4c4f9ec0a4 {"md5": "80325b018f0a69ac72b62141ab6dcfc2", "pid": "14849952X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/14849952X", "source": "IDREF"}], "date_of_birth": "1976-12-06", "preferred_name": "Faurot, Eric", "country_associated": "fr", "authorized_access_point": "Faurot, Eric, 1976-...", "biographical_information": ["Titulaire d'une thèse de doctorat en Informatique et applications, soutenue à l'Université de Caen Basse-Normandie (en 2010)"]} 1 +2024-09-11 09:04:53.776329 2024-09-11 09:04:53.776333 46a062fd-7678-4b32-825e-aa45c8028881 {"md5": "75294b2f84fa34eda4564d039c8651ba", "pid": "148509088", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148509088", "source": "IDREF"}], "date_of_birth": "1977-04-11", "preferred_name": "Magd, Siegfried", "country_associated": "mc", "authorized_access_point": "Magd, Siegfried, 1975-....", "biographical_information": ["Interne des Hôpitaux (2010)"]} 1 +2024-09-11 09:04:53.84527 2024-09-11 09:04:53.845275 048c895b-f4e7-4415-826d-c5f049ef539d {"md5": "1dbae787635f64fe9f5d7ea3c073faed", "pid": "148637450", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148637450", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Hepner, Gershon", "country_associated": "xxu", "authorized_access_point": "Hepner, Gershon, 19..-...."} 1 +2024-09-11 09:04:53.915855 2024-09-11 09:04:53.915859 fffa537d-5d89-4a4d-9b06-7b9b8e09a2f8 {"md5": "973b17298f19b2f1fc228a6c32c7df16", "pid": "14869506X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/14869506X", "source": "IDREF"}], "date_of_birth": "1980-08-13", "preferred_name": "Labadens, Isabelle", "country_associated": "fr", "authorized_access_point": "Labadens, Isabelle, 1980-....", "biographical_information": ["Titulaire d'un doctorat en pharmacie, (Toulouse 3, 2010)"]} 1 +2024-09-11 09:04:53.979092 2024-09-11 09:04:53.979096 6da0b6b4-9987-411e-b01d-3aa931916109 {"md5": "ff1fbcbfe1f70fdced00e45fed68ca38", "pid": "148702090", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148702090", "source": "IDREF"}], "date_of_birth": "1983-01-08", "preferred_name": "Chambon, Fabienne", "country_associated": "fr", "authorized_access_point": "Chambon, Fabienne, 1983-....", "biographical_information": ["Médecin. Née le 8 janvier 1983 à Aubenas (07). Thèse d'exercice soutenue à Aix-Marseille 2 le 6 décembre 2010"]} 1 +2024-09-11 09:04:54.038868 2024-09-11 09:04:54.038873 8010b84f-944f-485a-ad8c-2b6c14413532 {"md5": "735bed0a33a10f74b18fb0b17a13cd3d", "pid": "148746349", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148746349", "source": "IDREF"}], "preferred_name": "Eychard, François", "country_associated": "fr", "authorized_access_point": "Eychard, François", "biographical_information": ["Enseignant"]} 1 +2024-09-11 09:04:54.107037 2024-09-11 09:04:54.10704 fc91b236-4735-49c9-bcc6-2f24a52c387b {"md5": "bdf609228165e082a47be805ac19f385", "pid": "148754899", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148754899", "source": "IDREF"}], "date_of_birth": "1983-04-23", "preferred_name": "Nicolae, Bogdan", "country_associated": "xx", "authorized_access_point": "Nicolae, Bogdan, 1983-....", "biographical_information": ["Titulaire d'un doctorat en informatique à Rennes 1 en 2010"]} 1 +2024-09-11 09:04:54.163564 2024-09-11 09:04:54.163569 236af433-7030-4d2b-888b-46ab50cd9711 {"md5": "e6914d620f414a9b189eb3396239c571", "pid": "148755097", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148755097", "source": "IDREF"}], "variant_name": ["Oederan (Allemagne ; Saxe ; camp de concentration)"], "preferred_name": "Oederan (Allemagne ; camp de concentration)", "country_associated": "gw", "variant_access_point": ["Oederan (Allemagne ; Saxe ; camp de concentration)"], "authorized_access_point": "Oederan (Allemagne ; camp de concentration)", "biographical_information": ["Camp satellite du camp Flossenbürg, créé le 12 septembre 1944, évacué le 14 avril 1945, libéré le 8 mai 1945. Camp destiné aux femmes."]} 1 +2024-09-11 09:04:54.220878 2024-09-11 09:04:54.220882 20574ffb-e10f-40c8-abc8-49e6f61d9d08 {"md5": "3a219301d65913ed4dc73d747c0fb19f", "pid": "148766587", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148766587", "source": "IDREF"}], "preferred_name": "Malkin, Borys", "country_associated": "xx", "authorized_access_point": "Malkin, Borys"} 1 +2024-09-11 09:04:55.94141 2024-09-11 09:04:55.941415 a0e03443-ad3d-4a05-bf9d-1f49e439d07c {"md5": "c5581f02b2590d280322d41b54383dd5", "pid": "150196261", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/150196261", "source": "IDREF"}], "date_of_birth": "1956", "preferred_name": "Kraft, Roger", "country_associated": "xxu", "authorized_access_point": "Kraft, Roger, 1956-....", "biographical_information": ["Mathématicien"]} 1 +2024-09-11 09:04:54.276532 2024-09-11 09:04:54.276537 72f8f8f2-b67a-4b8f-8c80-19e3eedd629c {"md5": "6e1354055fedb0f5c7f764dba023a4b3", "pid": "148833101", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148833101", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Parker, Ian C.", "country_associated": "xxc", "authorized_access_point": "Parker, Ian C., 19..-....", "biographical_information": ["Economiste. Professeur à l'Université de Toronto (en 2010)"]} 1 +2024-09-11 09:04:54.340725 2024-09-11 09:04:54.340733 10567c6d-32b2-4064-8f94-5168ec67b7ea {"md5": "6405b8e962b1b1cfb40eb94a72b7402a", "pid": "148842836", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148842836", "source": "IDREF"}], "preferred_name": "Brandolin, Mario", "country_associated": "it", "authorized_access_point": "Brandolin, Mario", "biographical_information": ["Critique de théatre, directeur artistique."]} 1 +2024-09-11 09:04:54.400403 2024-09-11 09:04:54.400408 1dec75c3-98e3-462c-856a-c47392b1cc91 {"md5": "eca065e113a5a13fbf30248d48c80098", "pid": "148913679", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148913679", "source": "IDREF"}], "date_of_birth": "1978-04-10", "preferred_name": "Alarashi, Hala", "authorized_access_point": "Alarashi, Hala"} 1 +2024-09-11 09:04:54.457423 2024-09-11 09:04:54.457427 25bbaa0f-cdb7-433d-b7d3-464e3db45193 {"md5": "865b090810366bbb24467f1cd7ff0db9", "pid": "148935710", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148935710", "source": "IDREF"}], "preferred_name": "Auger, Jean-François", "authorized_access_point": "Auger, Jean-François"} 1 +2024-09-11 09:04:54.523353 2024-09-11 09:04:54.523358 c0db27ad-4ee5-49bc-a066-a93af779d697 {"md5": "c8fa5646811c02f9807106e6e2a6116f", "pid": "14894227X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/14894227X", "source": "IDREF"}], "preferred_name": "Pôle de ressources départemental Ville et développement social (Val-d'Oise)", "country_associated": "fr", "authorized_access_point": "Pôle de ressources départemental Ville et développement social (Val-d'Oise)", "biographical_information": ["Assoc. Loi de 1901. - Centre de ressources destiné aux acteurs de la ville et de l'intervention sociale du Val-d'Oise", "8 Pl. de France, 95200 Sarcelles. Contact : 01.34.04.12.12"]} 1 +2024-09-11 09:04:54.604684 2024-09-11 09:04:54.604689 ace772b4-a110-452c-983b-3e1020191da8 {"md5": "15bfe4becf89ccd414a53ad7bfc8895e", "pid": "148944000", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148944000", "source": "IDREF"}], "date_of_birth": "1867", "preferred_name": "Cormier, Charles Louis Maurice", "country_associated": "fr", "authorized_access_point": "Cormier, Charles Louis Maurice, 1867-19..", "biographical_information": ["Vétérinaire militaire. Directeur de l'annexe de remonte du Busson, Indre (vers 1900)"]} 1 +2024-09-11 09:04:54.663882 2024-09-11 09:04:54.663886 1aeec0af-f79a-4c35-bef2-681d4008a51d {"md5": "ae7fc934a9ced6d75384c03984c92e06", "pid": "149110804", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["tam"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/149110804", "source": "IDREF"}], "variant_name": ["நவீனன், 192.-....", "Naveen"], "date_of_birth": "192X", "preferred_name": "Navīṉaṉ", "country_associated": "ii", "variant_access_point": ["Naveen"], "authorized_access_point": "Navīṉaṉ, 192.-....", "biographical_information": ["Journaliste et écrivain tamoul du 20e siècle, Tamil Nadu, Inde"]} 1 +2024-09-11 09:04:54.722039 2024-09-11 09:04:54.722044 84300bfe-0d20-4c1e-8d41-a222c83a8766 {"md5": "c57a927e0681aecd223e1f3f68ff167b", "pid": "149112866", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/149112866", "source": "IDREF"}], "variant_name": ["Ивановский, Николай Иванович"], "date_of_birth": "1840", "date_of_death": "1913", "preferred_name": "Ivanovskij, Nikolaj Ivanovič", "country_associated": "ru", "variant_access_point": ["Ивановский, Николай Иванович, 1840-1913"], "authorized_access_point": "Ivanovskij, Nikolaj Ivanovič, 1840-1913", "biographical_information": ["Historien du raskol"]} 1 +2024-09-11 09:04:54.785113 2024-09-11 09:04:54.785116 a37c5888-e458-41f9-bb13-d82da37306e0 {"md5": "26f4c6fe700fab76ed37ac974248f9cc", "pid": "149224516", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/149224516", "source": "IDREF"}], "preferred_name": "Fiori, Julio Cesar", "country_associated": "bl", "authorized_access_point": "Fiori, Julio Cesar"} 1 +2024-09-11 09:04:54.84249 2024-09-11 09:04:54.842494 f9fa222d-42a3-48ab-a0c1-6127462081f2 {"md5": "4476f16973d487051340e95c0d36942c", "pid": "149233949", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/149233949", "source": "IDREF"}], "preferred_name": "Rudiger, Anja", "authorized_access_point": "Rudiger, Anja"} 1 +2024-09-11 09:04:54.900946 2024-09-11 09:04:54.90095 57f3df84-6d69-40b9-a030-168a59f63c78 {"md5": "ef42a1a77f98cab286c99e6f69d0f368", "pid": "149252161", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/149252161", "source": "IDREF"}], "preferred_name": "Rollston, Christopher A.", "country_associated": "xxu", "authorized_access_point": "Rollston, Christopher A.", "biographical_information": ["Ph. D : Ancient Near Eastern Studies, Johns Hopkins University. Editeur de Maarav"]} 1 +2024-09-11 09:04:54.958201 2024-09-11 09:04:54.958206 ef2775ef-8ac9-4860-a98b-f9158fd0f3f1 {"md5": "56314bd7f15fbe4786073cb9485f715f", "pid": "149264380", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/149264380", "source": "IDREF"}], "preferred_name": "Saba, C.", "country_associated": "xx", "authorized_access_point": "Saba, C."} 1 +2024-09-11 09:04:55.012894 2024-09-11 09:04:55.012899 b0dcae4f-26dc-430e-a364-e44e4fd1a658 {"md5": "148b9ddc618a1ef0ab284a79d85e826e", "pid": "14928053X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/14928053X", "source": "IDREF"}], "date_of_birth": "1843", "date_of_death": "1915", "preferred_name": "Agache, Alfred", "country_associated": "fr", "authorized_access_point": "Agache, Alfred, 1843-1915", "biographical_information": ["Peintre, né à Lille"]} 1 +2024-09-11 09:04:55.068073 2024-09-11 09:04:55.068076 8c63f610-3265-47bb-867e-d46b584e1ee0 {"md5": "35bdd97eeb0d20b785a6ed4914bb4bb6", "pid": "149301065", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/149301065", "source": "IDREF"}], "preferred_name": "Saint-Pierre - Le Nezet, Anne", "country_associated": "fr", "authorized_access_point": "Saint-Pierre - Le Nezet, Anne", "biographical_information": ["Titulaire du Certificat de capacité en orthophonie"]} 1 +2024-09-11 09:04:55.12599 2024-09-11 09:04:55.125994 92195795-1703-48e1-bb6c-2ede1718210b {"md5": "27077b0689844343dddcf43e387147d7", "pid": "149357826", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/149357826", "source": "IDREF"}], "date_of_birth": "1980-09-10", "preferred_name": "Sitruk, David", "country_associated": "fr", "authorized_access_point": "Sitruk, David, 1980-....", "biographical_information": ["Titulaire d'un mémoire d'ingénieur en Informatique soutenu au CNAM en 2010"]} 1 +2024-09-11 09:04:55.180863 2024-09-11 09:04:55.180867 63f44f4e-6f58-4483-a9b5-63204a470ddd {"md5": "aab9739484bf52a56249fa60fca1be5c", "pid": "149375565", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/149375565", "source": "IDREF"}], "date_of_birth": "1965-04-18", "preferred_name": "Le Febure du Bus, Alban", "country_associated": "fr", "authorized_access_point": "Le Febure du Bus, Alban, 1965-....", "biographical_information": ["Auteur d'une thèse en Histoire de la philosophie à Paris 4 en 2009"]} 1 +2024-09-11 09:04:55.247922 2024-09-11 09:04:55.247927 df1bf101-cb59-41b8-9917-c0117510767e {"md5": "72cf69e45fcab40d3202478f294838e0", "pid": "149501706", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/149501706", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Moizard, Marie-Pierre", "country_associated": "fr", "authorized_access_point": "Moizard, Marie-Pierre, 19..-....", "biographical_information": ["Auteur d'une thèse de doctorat en sciences de la vie et de la santé (Tours, 1995)"]} 1 +2024-09-11 09:04:55.315265 2024-09-11 09:04:55.315268 5478fa20-3b62-4bd5-933f-3b7fb143d184 {"md5": "251a2854d56970cc68c53693d95b10fc", "pid": "149728182", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/149728182", "source": "IDREF"}], "date_of_birth": "18..--", "preferred_name": "Lambert", "country_associated": "fr", "authorized_access_point": "Lambert, 18..", "biographical_information": ["Contrôleur à Orléans"]} 1 +2024-09-11 09:04:55.373935 2024-09-11 09:04:55.373939 fb536f26-8f8f-458c-bf9b-2e0ab7450e28 {"md5": "2ec480d8762627968ed3379d9a8a209d", "pid": "149733100", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/149733100", "source": "IDREF"}], "preferred_name": "Koussoulou, Georghia", "authorized_access_point": "Koussoulou, Georghia", "biographical_information": ["Titulaire d'une thèse de 3e cycle en synthèse organique (Aix-Marseille 3, 1976)"]} 1 +2024-09-11 09:04:55.441124 2024-09-11 09:04:55.441128 c867421d-1fa4-4848-b84f-bba58a4fb267 {"md5": "8186a869869e764c445a0f60f6b62557", "pid": "149834802", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/149834802", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Fiore, Davide", "country_associated": "it", "authorized_access_point": "Fiore, Davide, 19..-....", "biographical_information": ["Critique d'art"]} 1 +2024-09-11 09:04:55.507585 2024-09-11 09:04:55.507589 db605fff-a2e8-4d55-9706-e421913d6d5e {"md5": "e8a5e86c44eb6660d2f1d5917c9ef6e9", "pid": "149877706", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["pol"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/149877706", "source": "IDREF"}], "preferred_name": "Grochulski, Jerzy", "country_associated": "pl", "authorized_access_point": "Grochulski, Jerzy", "biographical_information": ["Président de la Stowarzyszenie architektów polskich"]} 1 +2024-09-11 09:04:55.564897 2024-09-11 09:04:55.564901 18975b6f-596a-457c-9afd-a77da4fcc264 {"md5": "6328e4c08e17839603d2a32ddcc78be2", "pid": "149944586", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/149944586", "source": "IDREF"}], "preferred_name": "Salem, Maurice", "country_associated": "fr", "authorized_access_point": "Salem, Maurice"} 1 +2024-09-11 09:04:55.628116 2024-09-11 09:04:55.628118 03367031-3994-4554-8d7c-d170647bcac8 {"md5": "faf6847b30cd4b6ea5adfdcd583b1900", "pid": "149955847", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/149955847", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Schmid, Franziska Sibylle", "country_associated": "xx", "authorized_access_point": "Schmid, Franziska Sibylle, 19..-...."} 1 +2024-09-11 09:04:55.689964 2024-09-11 09:04:55.689968 79659aeb-a564-4860-a294-bb65e7ffa415 {"md5": "dd69b0862cd80c2ca31e575373f2ac99", "pid": "149968302", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ara", "fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/149968302", "source": "IDREF"}], "preferred_name": "Dridi, Lamjed", "country_associated": "ti", "authorized_access_point": "Dridi, Lamjed", "biographical_information": ["Archéologue et Historien, docteur de l'École pratique des hautes études"]} 1 +2024-09-11 09:04:55.749432 2024-09-11 09:04:55.749436 6293c52f-d348-4e1f-ac51-e295ceecf6da {"md5": "c0b9b977206362df2f187eca9d5d177d", "pid": "149990871", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/149990871", "source": "IDREF"}], "date_of_birth": "1985-05-31", "preferred_name": "Combes, Christophe", "country_associated": "fr", "authorized_access_point": "Combes, Christophe, 1985-....", "biographical_information": ["Titulaire d'un doctorat en pharmacie, (Toulouse 3, 2010)"]} 1 +2024-09-11 09:04:55.81568 2024-09-11 09:04:55.815683 cc1e43a1-a3c3-4371-80a5-70866abec95f {"md5": "0d1b3279158a3965ba1ae452baf21e63", "pid": "149999399", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/149999399", "source": "IDREF"}], "preferred_name": "Ménard, Floriane", "country_associated": "fr", "authorized_access_point": "Ménard, Floriane", "biographical_information": ["Auteur d’un mémoire d'orthophonie soutenu à Caen en 2010"]} 1 +2024-09-11 09:04:56.000809 2024-09-11 09:04:56.000814 53c444bc-1471-4f05-ad33-6fb6229b7784 {"md5": "a73bd0e7206cbe3fb6c3c40be7687b5f", "pid": "150296541", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/150296541", "source": "IDREF"}], "preferred_name": "Kinoshita, Hideki", "country_associated": "ja", "authorized_access_point": "Kinoshita, Hideki", "biographical_information": ["Chercheur à l'Hydrographic and Oceanographic Department, Japan Coast Guard"]} 1 +2024-09-11 09:04:56.059885 2024-09-11 09:04:56.059889 f81d0f28-14de-44a7-8b9a-e0f478687279 {"md5": "434d3a0305fa53cf4b61e15ce9a68df3", "pid": "150503717", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/150503717", "source": "IDREF"}], "variant_name": ["Galerie Xavier Hufkens"], "preferred_name": "Xavier Hufkens (Bruxelles)", "country_associated": "be", "variant_access_point": ["Galerie Xavier Hufkens"], "authorized_access_point": "Xavier Hufkens (Bruxelles)", "biographical_information": ["Galerie d'exposition"]} 1 +2024-09-11 09:04:56.189225 2024-09-11 09:04:56.18923 648fe519-ad0d-436a-93d2-e4a519710dd7 {"md5": "813d51d6818d7eaf20b15d93e92b14db", "pid": "150552343", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/150552343", "source": "IDREF"}], "preferred_name": "Sherman, Paul B.", "authorized_access_point": "Sherman, Paul B.", "biographical_information": ["Economiste spécialisé en management environnemental. En 1989, en poste au East-West Center à Honolulu (Etats-Unis)"]} 1 +2024-09-11 09:04:56.265214 2024-09-11 09:04:56.265219 892c53e3-939d-4102-9e4f-217df10318e2 {"md5": "de94299045a31e622d3b2ce36fe37a93", "pid": "150572492", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "commissaire d'exposition", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/150572492", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Guimard, Nathalie, commissaire d'exposition", "country_associated": "fr", "authorized_access_point": "Guimard, Nathalie, 19..-...., commissaire d'exposition", "biographical_information": ["Commissaire d'exposition. - Directrice de l'association Fotokino à Marseille, consacrée à la diffusion de travaux artistiques dans le champ des arts visuels (en 2011)"]} 1 +2024-09-11 09:04:56.341032 2024-09-11 09:04:56.341037 debb74a7-b731-422e-827e-0bdfabcf684a {"md5": "61d3b06ed204a9f6e9d9f1d492cb8dda", "pid": "150592884", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/150592884", "source": "IDREF"}], "variant_name": ["Arranz, José Igor Prieto"], "preferred_name": "Prieto Arranz, José Igor", "variant_access_point": ["Arranz, José Igor Prieto"], "authorized_access_point": "Prieto Arranz, José Igor", "biographical_information": ["Maître de conférences à l'Universitat de les Illes Balears (en 2009). Titulaire d'un doctorat européen en Etudes anglaises de l'Université d'Oviedo"]} 1 +2024-09-11 09:04:56.406142 2024-09-11 09:04:56.406146 b8ecda61-afb2-43d0-b1e0-4a0f59424e03 {"md5": "56ebb7de7040f36ab174c1f7d86cd553", "pid": "150599811", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/150599811", "source": "IDREF"}], "preferred_name": "Walsh, Christine A.", "country_associated": "xxc", "authorized_access_point": "Walsh, Christine A.", "biographical_information": ["Professeur associé, University of Calgary (Canada), Faculty of social work"]} 1 +2024-09-11 09:04:56.48206 2024-09-11 09:04:56.482064 b4abbac7-fc77-44ab-80d2-21444fe80f94 {"md5": "0e4df184a90d0d770ea936ea7c7545f1", "pid": "150610203", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/150610203", "source": "IDREF"}], "date_of_birth": "1983-07-20", "preferred_name": "Canet, Sigolène", "authorized_access_point": "Canet, Sigolène, 1983-....", "biographical_information": ["Auteure d'un mémoire de master de Sciences de l'éducation, Université de Bourgogne, 2010"]} 1 +2024-09-11 09:04:56.537282 2024-09-11 09:04:56.537288 e8a424da-9ec5-439c-91c0-231df5fd9589 {"md5": "72d86481d4061fdce8e741f2ab5fe612", "pid": "150630085", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/150630085", "source": "IDREF"}], "preferred_name": "Pax. schweizerische Lebensversicherungsgesellschaft (Suisse)", "country_associated": "sz", "date_of_establishment": "1876", "authorized_access_point": "Pax. schweizerische Lebensversicherungsgesellschaft (Suisse)", "biographical_information": ["Société privée d'assurance sur la vie Suisse fondée en 1876. Siège à Bâle"]} 1 +2024-09-11 09:04:56.602946 2024-09-11 09:04:56.602951 b6f721d5-53c4-4a9b-821f-9d0f9386e7d2 {"md5": "69cc64d162c442fadc581173ed679acf", "pid": "150685793", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/150685793", "source": "IDREF"}], "date_of_birth": "1957", "preferred_name": "Filippi, Pierre", "authorized_access_point": "Filippi, Pierre, 1957", "biographical_information": ["Auteur d'une thèse en Chirurgie dentaire soutenue en 1981 à Bordeaux 2"]} 1 +2024-09-11 09:04:56.675353 2024-09-11 09:04:56.675358 a1cf15d0-65b5-464b-8e44-26f91537c30e {"md5": "9fdb7ac1374e3333d1ae4cf9da28de95", "pid": "150700768", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "qualifier": "photographe", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/150700768", "source": "IDREF"}], "preferred_name": "Beckers, Stephan, photographe", "authorized_access_point": "Beckers, Stephan, photographe", "biographical_information": ["Photographe"]} 1 +2024-09-11 09:04:56.755262 2024-09-11 09:04:56.755266 fadd2cf2-5d9b-412f-8dc6-9477ee5eec3d {"md5": "0c9689af87d590f99c17106d4d9359b9", "pid": "150724527", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["pol"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/150724527", "source": "IDREF"}], "variant_name": ["Morelowski, Marjan"], "date_of_birth": "1884-03-06", "date_of_death": "1963-07-24", "preferred_name": "Morelowski, Marian", "country_associated": "pl", "variant_access_point": ["Morelowski, Marjan"], "authorized_access_point": "Morelowski, Marian, 1884-1963", "biographical_information": ["Historien d'art. - Professeur aux universités de Wroclaw et de Vilnius", "Lieu de naissance Wadowice, Pologne. Lieu de décès Wroclaw, Pologne"]} 1 +2024-09-11 09:04:57.57057 2024-09-11 09:04:57.570573 0e861067-105c-4422-baf8-6c1551e7619d {"md5": "e5d5907c0cd8252e5044416c8133f22f", "pid": "151889511", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/151889511", "source": "IDREF"}], "date_of_birth": "1951-08-15", "preferred_name": "Choppin, Pierre-Marie", "country_associated": "fr", "authorized_access_point": "Choppin, Pierre-Marie", "biographical_information": ["Docteur en Médecine (Tours, 1978)"]} 1 +2024-09-11 09:04:56.823945 2024-09-11 09:04:56.823948 b08d2cc5-dad3-4c5a-b2b0-a1972fce128c {"md5": "082ecccc72bf139c1efcc6d6f430835e", "pid": "150813325", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/150813325", "source": "IDREF"}], "variant_name": ["Société royale des sciences et des arts du Cap Français"], "preferred_name": "Cercle des philadelphes (Saint-Domingue)", "country_associated": "fr", "date_of_termination": "1793", "variant_access_point": ["Société royale des sciences et des arts du Cap Français"], "date_of_establishment": "1784", "authorized_access_point": "Cercle des philadelphes (Saint-Domingue)", "biographical_information": ["Société ou académie scientifique et médicale créée au Cap Français à Saint-Domingue en 1784, avec une subvention royale. - Devenue par lettres patentes royales du 17 mai 1789 la \\"Société royale des sciences et des arts du Cap Français\\". - Disparaît de fait dès 1791, et en droit en 1793"]} 1 +2024-09-11 09:04:56.882589 2024-09-11 09:04:56.882592 e305ac9f-5bab-4ab4-9fb0-bbf8143007cf {"md5": "3758e2ade87be0e9fa3ff50037f653a3", "pid": "150840691", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/150840691", "source": "IDREF"}], "variant_name": ["Capitaine Firmin, pseud."], "date_of_birth": "1902", "preferred_name": "Mey, Eugène", "country_associated": "fr", "variant_access_point": ["Capitaine Firmin, pseud."], "authorized_access_point": "Mey, Eugène, 1902-1985", "biographical_information": ["Professeur de lettres classiques au Lycée Fustel de Coulanges Strasbourg"]} 1 +2024-09-11 09:04:56.941459 2024-09-11 09:04:56.941461 8eca9f81-c8da-4857-96d2-e290c3913634 {"md5": "93bad6ce3b6635d005e82c84b7297410", "pid": "151028702", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/151028702", "source": "IDREF"}], "date_of_birth": "1979", "preferred_name": "Wallace, Andrew", "country_associated": "xx", "authorized_access_point": "Wallace, Andrew, 1979-...."} 1 +2024-09-11 09:04:57.010439 2024-09-11 09:04:57.010445 edc9f30c-7de5-478d-86d6-003a83e19912 {"md5": "69dcb64d20c77a3f48d23b2b82da3ab0", "pid": "15117430X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/15117430X", "source": "IDREF"}], "preferred_name": "Cadwaladr, Margaret", "country_associated": "xxc", "authorized_access_point": "Cadwaladr, Margaret"} 1 +2024-09-11 09:04:57.081421 2024-09-11 09:04:57.081426 44009ec2-f415-47f2-990f-128c9c045435 {"md5": "89c3aaf5c18b03771649648eb49fe865", "pid": "151217742", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "chi"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/151217742", "source": "IDREF"}], "variant_name": ["植物研究所 (Pékin)", "IBCAS", "IB-CAS", "Chinese Academy of Sciences. Institute of botany", "中国科学院. 植物研究所"], "preferred_name": "Institute of botany (Pékin)", "country_associated": "cc", "variant_access_point": ["IBCAS", "IB-CAS", "Chinese Academy of Sciences. Institute of botany", "中国科学院. 植物研究所"], "authorized_access_point": "Institute of botany (Pékin)"} 1 +2024-09-11 09:04:57.139248 2024-09-11 09:04:57.139254 23e634af-7ddf-4c1b-9949-37bef0e77c16 {"md5": "096fbe729c1cbd97b44318c9e14177d2", "pid": "151341885", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre", "lat"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/151341885", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Bouette, Bruno", "country_associated": "fr", "authorized_access_point": "Bouette, Bruno, 19..-....", "biographical_information": ["Auteur d'une Thèse en sciences à l'ingénieur à l'Université de Franche-Comté"]} 1 +2024-09-11 09:04:57.197172 2024-09-11 09:04:57.197177 9b80e623-0fa9-4e54-933b-8a64c5cfa411 {"md5": "e2587824fe5ddcf788662e5f5f925762", "pid": "151481733", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/151481733", "source": "IDREF"}], "date_of_birth": "1912", "date_of_death": "1994", "preferred_name": "Knoff, Udo", "country_associated": "bl", "authorized_access_point": "Knoff, Udo, 1912-1994", "biographical_information": ["Artiste céramiste"]} 1 +2024-09-11 09:04:57.262753 2024-09-11 09:04:57.262759 b38b7e48-154f-4b78-bd9b-c76c6a457e83 {"md5": "a8ac9f1efa01dbf083c5cf814ea98ab3", "pid": "151508712", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/151508712", "source": "IDREF"}], "date_of_birth": "1983", "preferred_name": "Zagari, Pascal", "country_associated": "fr", "authorized_access_point": "Zagari, Pascal, 1983-....", "biographical_information": ["Artiste"]} 1 +2024-09-11 09:04:57.327967 2024-09-11 09:04:57.32797 f074379f-a793-44ac-8124-019e91feaff9 {"md5": "dafcc586cde744778aeb5c1c825ae5bf", "pid": "151580715", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/151580715", "source": "IDREF"}], "preferred_name": "Reibel, Olivier", "country_associated": "fr", "authorized_access_point": "Reibel, Olivier"} 1 +2024-09-11 09:04:57.396606 2024-09-11 09:04:57.39661 5925e3df-be15-44f6-b555-9bcf1be5327b {"md5": "a48ef5993b1cebae595d2d7c4607d373", "pid": "151775192", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/151775192", "source": "IDREF"}], "preferred_name": "Griffiths, John", "authorized_access_point": "Griffiths, John", "biographical_information": ["Membre de la Société Royale d'Edimbourg, et de plusieurs sociétés littéraires étrangères en 1812"]} 1 +2024-09-11 09:04:57.455051 2024-09-11 09:04:57.455056 f732ed70-552f-4e03-87e8-d779dc10e14c {"md5": "c7359c329254d59b7dfbd155180d1b9d", "pid": "151813590", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/151813590", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Leray, Louis", "country_associated": "fr", "authorized_access_point": "Leray, Louis, 19..-...."} 1 +2024-09-11 09:04:57.510323 2024-09-11 09:04:57.510327 b416ce05-cfdb-4fba-83ee-8836cc180dfd {"md5": "7c45b4bf30fa8630917da2c83c90c20c", "pid": "151884951", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/151884951", "source": "IDREF"}], "preferred_name": "Cité des sciences et de l'industrie (Paris). Observatoire des publics", "country_associated": "fr", "authorized_access_point": "Cité des sciences et de l'industrie (Paris). Observatoire des publics"} 1 +2024-09-11 09:04:57.626149 2024-09-11 09:04:57.626153 0e2cfc3e-5d64-4956-b568-d6c8deaebb68 {"md5": "1ecfc8a27d30fe022f4629d60351a97f", "pid": "152016872", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/152016872", "source": "IDREF"}], "date_of_birth": "1943-11-13", "preferred_name": "Hilliard, Raymond F.", "country_associated": "xx", "authorized_access_point": "Hilliard, Raymond F., 1943-...."} 1 +2024-09-11 09:04:57.689966 2024-09-11 09:04:57.689969 648d298c-aa0f-479a-a3f9-f3289025c683 {"md5": "cb9a73b85db78850678dc9ebbf1015e2", "pid": "152049193", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/152049193", "source": "IDREF"}], "date_of_birth": "1948", "preferred_name": "Tapia, Edmundo", "country_associated": "cl", "authorized_access_point": "Tapia, Edmundo, 1948-....", "biographical_information": ["Journaliste, a travaillé pour \\"Las últimas noticias\\" y canal 7"]} 1 +2024-09-11 09:04:57.755638 2024-09-11 09:04:57.755641 746e87fb-2f0c-406d-b0d2-b128a63ae225 {"md5": "440e9a3f18ad696e5fa4be82af4fe7cf", "pid": "152071210", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/152071210", "source": "IDREF"}], "date_of_birth": "1965-12-12", "preferred_name": "Cinelli, Luciano", "country_associated": "it", "authorized_access_point": "Cinelli, Luciano, 1965-....", "biographical_information": ["Dominicain. Historien médiéviste"]} 1 +2024-09-11 09:04:57.811984 2024-09-11 09:04:57.811988 2dab21e3-215f-453e-8f1f-60275c75156e {"md5": "d85ef92df27a65000c6f3e662c7e39ca", "pid": "152270345", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/152270345", "source": "IDREF"}], "variant_name": ["Serventy, D. L."], "date_of_birth": "1904", "date_of_death": "1988", "preferred_name": "Serventy, Dominic Louis", "country_associated": "at", "variant_access_point": ["Serventy, D. L."], "authorized_access_point": "Serventy, Dominic Louis, 1904-1988", "biographical_information": ["Ornithologue australien"]} 1 +2024-09-11 09:04:57.884259 2024-09-11 09:04:57.884263 ce1b9699-6d5a-4863-9f44-1c06456f36f9 {"md5": "b52a9438119356d5435977b41896a2cd", "pid": "152355731", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ara", "fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/152355731", "source": "IDREF"}], "preferred_name": "Keldany, Tamara", "country_associated": "xx", "authorized_access_point": "Keldany, Tamara", "biographical_information": ["Traduit du français en arabe"]} 1 +2024-09-11 09:04:57.943649 2024-09-11 09:04:57.943654 037155e5-7dc6-4484-a702-bd07a09c2e88 {"md5": "dc1e54765a4488c3b7a796c304b852a1", "pid": "152491589", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/152491589", "source": "IDREF"}], "preferred_name": "Pastoe (Utrecht, Pays-Bas)", "country_associated": "ne", "authorized_access_point": "Pastoe (Utrecht, Pays-Bas)", "biographical_information": ["Bureau de design néerlandais, spécialisé dans le mobilier contemporain"]} 1 +2024-09-11 09:04:58.015431 2024-09-11 09:04:58.015437 7abbe8f8-5473-4b75-91ef-61785725a75b {"md5": "02936a042963e2a8a0cc219e1777db3a", "pid": "152513655", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/152513655", "source": "IDREF"}], "variant_name": ["Viglione, María Gabriela Bentancur", "Bentancur Viglione, Gabriela"], "date_of_birth": "19XX", "preferred_name": "Bentancur Viglione, María Gabriela", "country_associated": "uy", "variant_access_point": ["Viglione, María Gabriela Bentancur", "Bentancur Viglione, Gabriela"], "authorized_access_point": "Bentancur Viglione, María Gabriela, 19..-....", "biographical_information": ["Biologiste"]} 1 +2024-09-11 09:04:58.073674 2024-09-11 09:04:58.07368 35c7af7a-cc76-4bac-a2e1-a848ba39ec3a {"md5": "4cc55eaf295539d83501fc9651628956", "pid": "152519866", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/152519866", "source": "IDREF"}], "variant_name": ["Tezé, Virginie"], "date_of_birth": "19XX", "preferred_name": "Gausserès, Virginie", "country_associated": "fr", "variant_access_point": ["Tezé, Virginie"], "authorized_access_point": "Gausserès, Virginie, 19..-....", "biographical_information": ["Médecin, a soutenu un mémoire en médecine agricole (Tours, 2000)"]} 1 +2024-09-11 09:04:58.13543 2024-09-11 09:04:58.135434 086f2c58-70b8-4c97-ac48-2182379ef159 {"md5": "f81e548a47e15d72f67927f03553d7e8", "pid": "152563024", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/152563024", "source": "IDREF"}], "variant_name": ["Магнитогорский государственный Университет (Магнитогорск, Россия)", "МаГУ", "MaGU"], "preferred_name": "Magnitogorskij gosudarstvennyj Universitet (Magnitogorsk, Russie)", "country_associated": "ru", "variant_access_point": ["МаГУ", "MaGU"], "date_of_establishment": "1932", "authorized_access_point": "Magnitogorskij gosudarstvennyj Universitet (Magnitogorsk, Russie)", "biographical_information": ["Magnitogorskij gosudarstvennyj Universitet a été fondé en 1932"]} 1 +2024-09-11 09:04:58.202268 2024-09-11 09:04:58.20227 9fe9ae7e-999e-4f4a-95bc-96a1a0d4b276 {"md5": "dad544acd703185e08a2b7db331201a1", "pid": "152706038", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/152706038", "source": "IDREF"}], "preferred_name": "Sardon, Camille", "country_associated": "fr", "authorized_access_point": "Sardon, Camille", "biographical_information": ["Pseudonyme collectif de l'association les Amis de l'Egalité"]} 1 +2024-09-11 09:04:58.262791 2024-09-11 09:04:58.262795 86227a62-5037-4d43-98dd-98b24bfc0343 {"md5": "d9e3e13986148572262696765fb3f17c", "pid": "152722270", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["chi"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/152722270", "source": "IDREF"}], "variant_name": ["浅川敏"], "preferred_name": "Asakawa, Satoshi", "country_associated": "cc", "variant_access_point": ["浅川敏"], "authorized_access_point": "Asakawa, Satoshi"} 1 +2024-09-11 09:04:58.320356 2024-09-11 09:04:58.320359 d44ab7e3-086c-4bf3-b29d-d7fde1a95eb6 {"md5": "4ae2a5c31beb0dd3bde6bf3834724faf", "pid": "15282300X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/15282300X", "source": "IDREF"}], "date_of_birth": "1953", "preferred_name": "Frénoy, Olivier", "country_associated": "fr", "authorized_access_point": "Frénoy, Olivier, 1953-....", "biographical_information": ["A suivi des études en design industriel à l'Ecole nationale supérieure des arts appliqués de Paris. A créé son agence de design industriel Concept Frénoy Design."]} 1 +2024-09-11 09:04:58.380546 2024-09-11 09:04:58.380551 6f496480-d826-4a50-be68-6bc279230471 {"md5": "92214fd6f1eee59960196a99c1efd048", "pid": "152852093", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/152852093", "source": "IDREF"}], "preferred_name": "Clarke, William", "country_associated": "xxk", "authorized_access_point": "Clarke, William", "biographical_information": ["Artiste, ecrivain et commisaire d'exposition, vit et travaille à Glasgow."]} 1 +2024-09-11 09:04:58.436695 2024-09-11 09:04:58.4367 ca06a957-c066-4300-ac1e-a17a9ba0ead7 {"md5": "434cc236289a2c734be3ae425422ffa0", "pid": "152901353", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/152901353", "source": "IDREF"}], "preferred_name": "Fohr, Andreas", "country_associated": "fr", "authorized_access_point": "Fohr, Andreas", "biographical_information": ["Artiste"]} 1 +2024-09-11 09:04:58.498579 2024-09-11 09:04:58.498585 83bf82c3-0b8e-4ea4-9db5-3a264a06feb5 {"md5": "749645b9e821fac54d3c9a8df46e16a2", "pid": "152940898", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/152940898", "source": "IDREF"}], "preferred_name": "Allen, Sarah", "country_associated": "xxu", "authorized_access_point": "Allen, Sarah", "biographical_information": ["Auteur spécialiste dans le domaine de la téléphonie mobile et de la programmation"]} 1 +2024-09-11 09:04:58.570474 2024-09-11 09:04:58.570479 5c86041b-6644-4025-9423-b4c69cfa4b2c {"md5": "4642a90244d99fc7bffee174b0ea8cd6", "pid": "15295208X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/15295208X", "source": "IDREF"}], "date_of_birth": "1959", "preferred_name": "Cramatte, Jean-Luc", "country_associated": "fr", "authorized_access_point": "Cramatte, Jean-Luc, 1959-....", "biographical_information": ["Photographe. - Fondateur de l'Agence Freenews à Fribourg, Suisse"]} 1 +2024-09-11 09:04:58.636946 2024-09-11 09:04:58.636952 dc22643e-09dc-4a0a-96f4-c4f00cfde68b {"md5": "6fd74293d333e2c71b52fb58c04b0936", "pid": "152972250", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/152972250", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Warren, Katherine F.", "country_associated": "xxu", "authorized_access_point": "Warren, Katherine F., 19..-...."} 1 +2024-09-11 09:04:58.697389 2024-09-11 09:04:58.697394 7ca9d66d-7358-45db-8c86-f7903fefd474 {"md5": "bff71156f4cc2e931ff939a105bbb3b2", "pid": "153081147", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/153081147", "source": "IDREF"}], "preferred_name": "Condé, Mohamed", "country_associated": "gv", "authorized_access_point": "Condé, Mohamed", "biographical_information": ["Journaliste. Conseiller du ministre de la Communication, en Guinée (en 2011)"]} 1 +2024-09-11 09:04:58.763423 2024-09-11 09:04:58.763428 19236710-78b4-4d61-b253-4d158ab00936 {"md5": "6ec61b279ba29933051883bb0f2ae38e", "pid": "153136480", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/153136480", "source": "IDREF"}], "variant_name": ["International conference on Economic and Social Aspects of Automation"], "preferred_name": "Journées internationales d'information sur les implications économiques et sociales de l'automation", "country_associated": "be", "date_of_termination": "1957-12-14", "variant_access_point": ["International conference on Economic and Social Aspects of Automation"], "date_of_establishment": "1957-12-13", "authorized_access_point": "Journées internationales d'information sur les implications économiques et sociales de l'automation (1957 ; Namur, Belgique)"} 1 +2024-09-11 09:04:58.818557 2024-09-11 09:04:58.818559 0fad0396-e1c5-4d70-9e51-7159e55e3b8b {"md5": "9fe3214ed412f6e90aef157b1c391642", "pid": "153410647", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/153410647", "source": "IDREF"}], "variant_name": ["Cauvin, Françoise", "Molines, Françoise"], "date_of_birth": "19XX", "preferred_name": "Cauvin-Molines, Françoise", "country_associated": "fr", "variant_access_point": ["Cauvin, Françoise", "Molines, Françoise"], "authorized_access_point": "Cauvin-Molines, Françoise, 19..-....", "biographical_information": ["Médecin, a soutenu un mémoire en médecine agricole (Tours, 1984)"]} 1 +2024-09-11 09:04:58.877731 2024-09-11 09:04:58.877735 06c885ce-9207-4890-bd56-ecc1887f6558 {"md5": "007246b89b9714a1a700553b061617b8", "pid": "153446544", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/153446544", "source": "IDREF"}], "preferred_name": "Abbott, Colleen", "country_associated": "at", "authorized_access_point": "Abbott, Colleen"} 1 +2024-09-11 09:04:58.940589 2024-09-11 09:04:58.940593 028f5fb7-88f3-479d-a96b-6f5eaf75026c {"md5": "fb7a7cf146a8a33e078bbe282c9675cd", "pid": "153516631", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/153516631", "source": "IDREF"}], "preferred_name": "Jorio, Ettore", "country_associated": "it", "authorized_access_point": "Jorio, Ettore", "biographical_information": ["Avocat. Professeur de droit administratif, Université de Calabre"]} 1 +2024-09-11 09:04:58.994735 2024-09-11 09:04:58.994738 c5fb03ae-a2e3-4be9-a5da-9bcd0fd864de {"md5": "ad4a6a38cf26712077c0c3c29f370895", "pid": "153533056", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/153533056", "source": "IDREF"}], "preferred_name": "Capo, Giovanni", "country_associated": "it", "authorized_access_point": "Capo, Giovanni", "biographical_information": ["Juriste"]} 1 +2024-09-11 09:04:59.067847 2024-09-11 09:04:59.067854 fb1dc6ae-a026-4e7d-8d86-43ecb07c4089 {"md5": "8684321a8f24d3b3004c83f676e2f2db", "pid": "153541342", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/153541342", "source": "IDREF"}], "preferred_name": "Thomas-Jones, Angela", "country_associated": "at", "authorized_access_point": "Thomas-Jones, Angela", "biographical_information": ["She is a part-time academic at Murdoch University, Western Australia, and editor of the popular culture collective's community and hub projects. Angela's research pieces focus on different aspects of popular culture such as fashion, body politics, the internet, creative industries and youth"]} 1 +2024-09-11 09:04:59.133608 2024-09-11 09:04:59.133613 f9de8ea6-aafb-482f-b945-770b035695ea {"md5": "cad9742f8c6a1ae54e1ee1efb42fefd4", "pid": "153546247", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/153546247", "source": "IDREF"}], "date_of_birth": "1953", "preferred_name": "Green, David", "country_associated": "xxk", "authorized_access_point": "Green, David, 1953-....", "biographical_information": ["Conférencier en histoire et théorie de l'art contemporain, University of Brighton"]} 1 +2024-09-11 09:04:59.19143 2024-09-11 09:04:59.191434 8fefb0af-9043-4cbe-945b-6ffa8ce88595 {"md5": "be0318a3883dcfba466758d5b0524c3c", "pid": "153613556", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/153613556", "source": "IDREF"}], "date_of_birth": "1971-12-26", "preferred_name": "Zhou, Yiqun", "country_associated": "cc", "authorized_access_point": "Zhou, Yiqun, 1971-...."} 1 +2024-09-11 09:04:59.248829 2024-09-11 09:04:59.248833 1453f63b-c8e0-4d24-9263-39ca7fc14dac {"md5": "8080c3a6c18a8ea1e92f365d5c648883", "pid": "153776951", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/153776951", "source": "IDREF"}], "preferred_name": "Servant, Marcelle", "country_associated": "xxc", "authorized_access_point": "Servant, Marcelle", "biographical_information": ["Professeur au Cegep Ahunstic (Québec, Canada) (en 1983)"]} 1 +2024-09-11 09:04:59.313484 2024-09-11 09:04:59.313489 7ac34f6e-6bd9-4618-a5dc-93c121a63cb1 {"md5": "3a5edefb539239607e8b074360789ba4", "pid": "153973145", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/153973145", "source": "IDREF"}], "date_of_birth": "1970", "preferred_name": "Onishi, Yoshitomo", "country_associated": "ja", "authorized_access_point": "Onishi, Yoshitomo, 1970-....", "biographical_information": ["Titulaire d'un doctorat d'histoire de la philosophie moderne à Paris 1 en 2011"]} 1 +2024-09-11 09:04:59.37901 2024-09-11 09:04:59.379014 0fc7bc4c-4828-4561-9efe-a9c2d1b78943 {"md5": "a0bff91f6b961751fda1388c587ba06c", "pid": "15401916X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/15401916X", "source": "IDREF"}], "date_of_birth": "1944", "preferred_name": "Watkins, Peter Maitland", "country_associated": "xxk", "authorized_access_point": "Watkins, Peter Maitland, 1944-....", "biographical_information": ["Physicien, en poste à l'Université de Birmingham, en 1986"]} 1 +2024-09-11 09:04:59.45035 2024-09-11 09:04:59.450354 0b8c51b3-9168-4a10-8639-f806e6043b70 {"md5": "1ce5638afb16351d4decabbbe5d9417a", "pid": "154190551", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/154190551", "source": "IDREF"}], "preferred_name": "McGehee, Abby", "country_associated": "xxu", "authorized_access_point": "McGehee, Abby", "biographical_information": ["Professeure associée à l'\\"Oregon College of Art and Craft\\" (en 2011)"]} 1 +2024-09-11 09:04:59.510262 2024-09-11 09:04:59.510266 686ffb19-125d-4cd5-ac4a-1c804608a5c7 {"md5": "4582bd377438e08416efed6554b0ca1b", "pid": "154659622", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/154659622", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Kozmin, S. A.", "country_associated": "xx", "authorized_access_point": "Kozmin, S. A., 19..-...."} 1 +2024-09-11 09:04:59.573304 2024-09-11 09:04:59.573308 1336051f-476e-4d86-98bf-d6131674af00 {"md5": "d8d537cf900ddb41a1fb70b852c6c392", "pid": "154744395", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/154744395", "source": "IDREF"}], "variant_name": ["Furon, Frédéric"], "date_of_birth": "1969", "preferred_name": "Furon, Frédéric", "country_associated": "fr", "variant_access_point": ["Furon, Frédéric"], "authorized_access_point": "Furon, Frédéric, 1969-....", "biographical_information": ["Historien et guide conférencier des Villes et Pays d'Art et d'Histoire à Rouen"]} 1 +2024-09-11 09:04:59.630563 2024-09-11 09:04:59.630567 ce2232fc-ce50-4a72-a224-15ec6b00ddf0 {"md5": "8421604f354872dc289ae90d40789c98", "pid": "154778532", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/154778532", "source": "IDREF"}], "preferred_name": "Bird, Phillip I.", "country_associated": "at", "authorized_access_point": "Bird, Phillip I."} 1 +2024-09-11 09:04:59.694034 2024-09-11 09:04:59.694038 e3695c00-db33-4a64-be19-5446d439f377 {"md5": "cc39afd776b14e2d33d60e752a9248f8", "pid": "154820903", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/154820903", "source": "IDREF"}], "date_of_birth": "1971-09-12", "preferred_name": "Mintoume, Siméon Clotaire", "country_associated": "cm", "authorized_access_point": "Mintoume, Siméon Clotaire, 1971-....", "biographical_information": ["Docteur en philosophie. - Enseignant à l'Université de Douala (en 2011)"]} 1 +2024-09-11 09:04:59.751074 2024-09-11 09:04:59.751077 629a47bd-4b56-426b-ac20-8c80c7582a19 {"md5": "f40e0dc298e2ccad7acc1f1f592c11dd", "pid": "154833649", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/154833649", "source": "IDREF"}], "date_of_birth": "1986-07-07", "preferred_name": "Lim, Vicheth", "authorized_access_point": "Lim, Vicheth, 1986-....", "biographical_information": ["Auteur d'une thèse d'exercice en Chirurgie dentaire (Lyon 1, 2011)"]} 1 +2024-09-11 09:04:59.806063 2024-09-11 09:04:59.806068 9dbea424-4171-4560-a3dc-37eabcfe8a0c {"md5": "113959644af00db94e5f9632eb47a92c", "pid": "154889415", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/154889415", "source": "IDREF"}], "date_of_birth": "1971", "preferred_name": "Kay, Tamara", "country_associated": "xxu", "authorized_access_point": "Kay, Tamara, 1971-....", "biographical_information": ["Professeur de sociologie à l'Université de Harvard et codirectrice de : Harvard's Transnational Studies iniative"]} 1 +2024-09-11 09:04:59.877451 2024-09-11 09:04:59.877455 b1cd58e3-619a-4d20-a9ad-25da05e9276b {"md5": "d84a76f7452f024a673078effb8f50bb", "pid": "154972673", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/154972673", "source": "IDREF"}], "date_of_birth": "1970", "preferred_name": "Lange, Bastian", "country_associated": "gw", "authorized_access_point": "Lange, Bastian, 1970-...."} 1 +2024-09-11 09:04:59.958642 2024-09-11 09:04:59.958645 11b6cafa-f4bd-432e-8781-3a5075e954c8 {"md5": "4b097c403bc56362e18a984de2c558fe", "pid": "155128965", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/155128965", "source": "IDREF"}], "preferred_name": "Alonso Balaguer y Arquitectos Asociados", "country_associated": "sp", "authorized_access_point": "Alonso Balaguer y Arquitectos Asociados", "biographical_information": ["Agence d'architecture fondée par Luis Alonso et Sergio Balaguer en 1978 à Barcelone."]} 1 +2024-09-11 09:05:00.016936 2024-09-11 09:05:00.01694 fd334b65-11af-4190-8b73-f0a8560a48ca {"md5": "b84c1cd7b0adbf981fd8110d257a1808", "pid": "155289292", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/155289292", "source": "IDREF"}], "variant_name": ["International Conference on Coordination Models and Languages"], "preferred_name": "COORDINATION 2011", "country_associated": "ic", "date_of_termination": "2011-06-09", "variant_access_point": ["International Conference on Coordination Models and Languages (13 ; 2011 ; Reykjavik)"], "date_of_establishment": "2011-06-06", "authorized_access_point": "COORDINATION 2011 (13 ; 2011 ; Reykjavik)"} 1 +2024-09-11 09:05:00.07871 2024-09-11 09:05:00.078715 01f0ad61-ac86-476d-a807-ed3ed1f2d884 {"md5": "e3ee59c5310ebcb809b72478116c974c", "pid": "155309668", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/155309668", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Sorrells, Felipe D.", "country_associated": "xxu", "authorized_access_point": "Sorrells, Felipe D., 19..-...."} 1 +2024-09-11 09:05:00.142764 2024-09-11 09:05:00.142769 882553fe-dd93-4ea2-b2c3-a61ae68becf5 {"md5": "91db90fbdf51ac2aab9336fda10420f6", "pid": "155413163", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/155413163", "source": "IDREF"}], "variant_name": ["Organization of the People in Arms (Guatemala)‏", "Organización del Pueblo en Armas (Guatemala)‏", "O.R.P.A.‏"], "preferred_name": "ORPA (Organization)‏", "country_associated": "gt", "variant_access_point": ["Organization of the People in Arms (Guatemala)‏", "Organización del Pueblo en Armas (Guatemala)‏", "O.R.P.A.‏"], "authorized_access_point": "ORPA (Organization)‏"} 1 +2024-09-11 09:05:00.201613 2024-09-11 09:05:00.201646 873789eb-0ec2-4c18-bbcb-fb3df9e8de06 {"md5": "783b82cd6afe041d8ccbb356e933edde", "pid": "155413414", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/155413414", "source": "IDREF"}], "variant_name": ["Frente democratico contra la Represion‏ (Guatemala)", "FDCR‏"], "preferred_name": "Frente democrático contra la Represión (Guatemala)", "country_associated": "gt", "variant_access_point": ["Frente democratico contra la Represion‏ (Guatemala)", "FDCR‏"], "authorized_access_point": "Frente democrático contra la Represión (Guatemala)"} 1 +2024-09-11 09:05:00.26161 2024-09-11 09:05:00.261614 ed4514ee-9621-498d-b193-876f8c86f3bb {"md5": "e3e08be3a8c4af11167d027a8ab6cc91", "pid": "155519107", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/155519107", "source": "IDREF"}], "variant_name": ["Bustos-Magalhaes, Natacha", "Magalhaes, Natacha Bustos"], "date_of_birth": "1981", "preferred_name": "Bustos, Natacha", "country_associated": "sp", "variant_access_point": ["Bustos-Magalhaes, Natacha", "Magalhaes, Natacha Bustos"], "authorized_access_point": "Bustos, Natacha, 1981-....", "biographical_information": ["Auteur de bandes dessinées"]} 1 +2024-09-11 09:05:00.323275 2024-09-11 09:05:00.32328 0c9c498d-2bd9-465b-959b-15316cf4ae7a {"md5": "18be9a92d9c31f98796b2fcbb78e084a", "pid": "155533797", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/155533797", "source": "IDREF"}], "date_of_birth": "1943-11-12", "date_of_death": "2009-02-10", "preferred_name": "Salter, Richard", "country_associated": "xxk", "authorized_access_point": "Salter, Richard, 1943-2009", "biographical_information": ["Baryton, membre fondateur des King's Singers"]} 1 +2024-09-11 09:05:00.382598 2024-09-11 09:05:00.382603 f4fb6d39-7ebc-4c24-93cb-e149d2c9fe92 {"md5": "e5e1ef2f75aa8f57549e29587b68648e", "pid": "155592122", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/155592122", "source": "IDREF"}], "date_of_birth": "1977", "preferred_name": "Stephens, Mark B.", "country_associated": "at", "authorized_access_point": "Stephens, Mark B., 1977"} 1 +2024-09-11 09:05:00.452217 2024-09-11 09:05:00.452219 c0a782fe-1907-48e1-9ebb-796652fbf7f5 {"md5": "e679d9f4e51375c1c89c966e154aa834", "pid": "155733370", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/155733370", "source": "IDREF"}], "date_of_birth": "1905", "date_of_death": "1990-12-18", "preferred_name": "Fried, John H. E.", "country_associated": "au", "authorized_access_point": "Fried, John H. E., 1905-1990", "biographical_information": ["Avocat, professeur de sciences politiques et militant des droits de l'homme"]} 1 +2024-09-11 09:05:00.511476 2024-09-11 09:05:00.511481 44670754-19f7-4d06-8caf-62fcc8ef741d {"md5": "fd43cdbe8c8beaf6493b42ac669243f4", "pid": "155746936", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/155746936", "source": "IDREF"}], "variant_name": ["Dochier, Luc", "Luc, moine de Tibhirine"], "date_of_birth": "1914-01-31", "date_of_death": "1996-05-21", "preferred_name": "Dochier, Paul", "country_associated": "fr", "variant_access_point": ["Dochier, Luc", "Luc, moine de Tibhirine"], "authorized_access_point": "Dochier, Paul, 1914-1996", "biographical_information": ["Moine de l'Ordre des Cisterciens de la stricte observance (à partir de 1941/1949). - Moine de l'Abbaye Notre-Dame d'Aiguebelle (à Montjoyer, Drôme ; 1941-1946), puis du Prieuré de Notre-Dame-de-l'Atlas (à Tibhirine, Algérie). - Docteur en médecine (Lyon, 1939/1940)", "Lieu de naissance Bourg-de-Péage (Drôme). Lieu de décès Près de Lemdiyya (ou Médéa, Algérie)"]} 1 +2024-09-11 09:05:00.576712 2024-09-11 09:05:00.576716 883f6d8c-a15e-4287-945f-a7ac2f63445b {"md5": "5d37e5a4be527c6296043e60e616faaa", "pid": "155760947", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/155760947", "source": "IDREF"}], "preferred_name": "Bernecker, Cathy", "country_associated": "fr", "authorized_access_point": "Bernecker, Cathy", "biographical_information": ["Comédienne"]} 1 +2024-09-11 09:05:00.634254 2024-09-11 09:05:00.634259 04d074b5-7c2b-4dc6-b77b-c90c7afe1f17 {"md5": "c3dbd209f21868314d6f11c325aff185", "pid": "155852639", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/155852639", "source": "IDREF"}], "preferred_name": "Routon, Kenneth", "country_associated": "xxu", "authorized_access_point": "Routon, Kenneth", "biographical_information": ["Anthropologue culturel (2010)"]} 1 +2024-09-11 09:05:00.702602 2024-09-11 09:05:00.702605 8e5494bb-b96d-4fd6-98e3-083587a93ab6 {"md5": "0fe70d4cf7d9f6a3494fa2b488ae1745", "pid": "15589899X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/15589899X", "source": "IDREF"}], "preferred_name": "Grazzini, Athos D.", "country_associated": "xx", "authorized_access_point": "Grazzini, Athos D."} 1 +2024-09-11 09:05:00.760191 2024-09-11 09:05:00.760195 d7c78316-b9bd-4c89-8860-c9c95aaeea08 {"md5": "afefe3dc5bef4c94a2078e037e0f1fbe", "pid": "155925261", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/155925261", "source": "IDREF"}], "date_of_birth": "1971", "preferred_name": "Lemon, Robert", "country_associated": "xx", "authorized_access_point": "Lemon, Robert, 1971-"} 1 +2024-09-11 09:05:00.821277 2024-09-11 09:05:00.82128 4e3228d1-8a3b-439d-9762-f007c930056b {"md5": "d5d8a699847579e034bcf2154defc9f3", "pid": "155933604", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/155933604", "source": "IDREF"}], "date_of_birth": "1973", "preferred_name": "Taylor, Jeremy E.", "country_associated": "xxk", "authorized_access_point": "Taylor, Jeremy E., 1973-....", "biographical_information": ["Maître de conférences en études chinoises, School of East Asian studies, University of Sheffield, Grande-Bretagne (en 2011)"]} 1 +2024-09-11 09:05:00.881976 2024-09-11 09:05:00.88198 50255dda-56a3-43b7-9e89-bb60be376af9 {"md5": "4c9d0973cd530ec2ae2e2d82829d8a7e", "pid": "155942204", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/155942204", "source": "IDREF"}], "date_of_birth": "1980", "preferred_name": "Grosser, Florian", "country_associated": "gw", "authorized_access_point": "Grosser, Florian, 1980-....", "biographical_information": ["Enseigne la philosophie à l'Université Ludwig-Maximilian, München"]} 1 +2024-09-11 09:05:00.948541 2024-09-11 09:05:00.948545 934a11ed-fb77-4e7e-9941-4571661a1d91 {"md5": "69f80aaea0e86982fba7907b02accfe3", "pid": "156048701", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/156048701", "source": "IDREF"}], "date_of_birth": "1948-09-22", "preferred_name": "Aráujo, Maria", "country_associated": "bl", "authorized_access_point": "Aráujo, Maria, 1948-....", "biographical_information": ["Plasticienne, peintre, sculpteur. - Chercheur dans le domaine de la valorisation et de la consolidation du patrimoine culturel (en 2011)"]} 1 +2024-09-11 09:05:01.00684 2024-09-11 09:05:01.006847 76e8b3be-2753-4e10-832f-cb3820660a18 {"md5": "1bfa7bc15ea6eaabcce7a72479e7d069", "pid": "156053241", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/156053241", "source": "IDREF"}], "variant_name": ["Otmazgin, Nissim Kadosh"], "date_of_birth": "1973", "preferred_name": "Otmazgin, Nissim", "country_associated": "is", "variant_access_point": ["Otmazgin, Nissim Kadosh"], "authorized_access_point": "Otmazgin, Nissim, 1973-....", "biographical_information": ["Maître de conférences au département d'études d'Asie orientale de l'Université hébraïque de Jérusalem"]} 1 +2024-09-11 09:05:01.070429 2024-09-11 09:05:01.070433 e9847ce7-547a-4c99-8d00-e9aa82dfaa82 {"md5": "79f684b17c798f20a80d9073f46f4e28", "pid": "156252813", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/156252813", "source": "IDREF"}], "preferred_name": "Ensemble Wien-Berlin", "country_associated": "au", "date_of_establishment": "1983", "authorized_access_point": "Ensemble Wien-Berlin", "biographical_information": ["Ensemble instrumental. - Se compose de deux solistes de chacun des orchestres philharmoniques de Vienne et de Berlin, ainsi que d'un soliste de l'Orchestre symphonique de Vienne", "Adresse : Vienne", "Adresse : Berlin", "Schulz, Wolfgang, fl (1983-). Schellenberger, Hansjorg, htb (1983-). Leister, Karl, clar (1983-). Turkovic, Milan, basson (1983-). Hogner, Gunter, cor (1983-). Janezic, Willibald, cor. Süss, Margit-Anna, hrp. Hetzel, Gerhart, vl. Hell, Josef, vl. Christ, Wolfram, alto. Faust, Georg, vlc. Posch, Alois, cb"]} 1 +2024-09-11 09:05:01.132957 2024-09-11 09:05:01.13296 65144d24-f304-49aa-b054-160e847c3c3d {"md5": "e723094e78a3c21260dfd8ac2fe9cd18", "pid": "156288435", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/156288435", "source": "IDREF"}], "date_of_birth": "1978", "preferred_name": "Bo, Armando", "country_associated": "ag", "authorized_access_point": "Bo, Armando, 1978-....", "biographical_information": ["Réalisateur,Scénariste, producteur et interprète argentin. Petit-fils de l'acteur réalisateur Armando Bó (1914-1981) et fils de l'acteur Victor Bo (1943-....)"]} 1 +2024-09-11 09:05:01.223605 2024-09-11 09:05:01.223609 65fee714-9e85-4d6e-982e-70bc1cff4f4d {"md5": "a9f2f1cd071df0367240c5a7547b67f9", "pid": "156335336", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/156335336", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Dubbini, Rachele", "country_associated": "it", "authorized_access_point": "Dubbini, Rachele, 19..-....", "biographical_information": ["Archéologue"]} 1 +2024-09-11 09:05:01.29439 2024-09-11 09:05:01.294393 7cb3addf-3368-44fd-b954-ea4f931ba436 {"md5": "a71957c86262a34720d1c1d18139128d", "pid": "156363690", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/156363690", "source": "IDREF"}], "variant_name": ["Prasad Choudhary, Debi", "Prasad, Debi"], "preferred_name": "Choudhary, Debi Prasad", "country_associated": "xxk", "variant_access_point": ["Prasad Choudhary, Debi", "Prasad, Debi"], "authorized_access_point": "Choudhary, Debi Prasad", "biographical_information": ["En poste : Laboratory for Experiments in Optics, Department of Physics & Astronomy, California State University, Northridge, États-Unis (2011)"]} 1 +2024-09-11 09:05:01.355042 2024-09-11 09:05:01.355045 084d56d7-1cdc-4923-a1cb-afe0bd774144 {"md5": "ccb22995716ca5053957d3bbf7238d87", "pid": "156539063", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/156539063", "source": "IDREF"}], "date_of_birth": "1966", "preferred_name": "Scholl, Elisabeth", "country_associated": "gw", "authorized_access_point": "Scholl, Elisabeth, 1966-....", "biographical_information": ["Artiste lyrique (soprano)"]} 1 +2024-09-11 09:05:01.413123 2024-09-11 09:05:01.413127 1e4694fd-eb3e-47f9-8095-0bbd81dad17c {"md5": "840e3e1e1f5f2b95477a0ad9c70a0c57", "pid": "156563932", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/156563932", "source": "IDREF"}], "date_of_birth": "1959-03-26", "date_of_death": "2012-01-23", "preferred_name": "Lockhart, Robert", "country_associated": "xxk", "authorized_access_point": "Lockhart, Robert, 19..-....", "biographical_information": ["Pianiste, compositeur de musique de films"]} 1 +2024-09-11 09:05:01.465473 2024-09-11 09:05:01.465477 ba2d4402-970e-41fa-939e-1b5d34a51e05 {"md5": "4abec11ce3843cf1315bed1354d4c5c5", "pid": "156590948", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["pol"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/156590948", "source": "IDREF"}], "preferred_name": "Nowakowska, Wanda", "country_associated": "pl", "authorized_access_point": "Nowakowska, Wanda", "biographical_information": ["Historien d' art"]} 1 +2024-09-11 09:05:01.522841 2024-09-11 09:05:01.522844 e30ff908-5f36-41b9-8bc9-aecbc33cbc57 {"md5": "6611c5e0bd109b024c741e14c07cee6a", "pid": "156838524", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/156838524", "source": "IDREF"}], "preferred_name": "Joe Cuba Sextet", "country_associated": "cu", "date_of_establishment": "19XX", "authorized_access_point": "Joe Cuba Sextet", "biographical_information": ["Groupe de variétés latino américaines (mambo)"]} 1 +2024-09-11 09:05:01.578881 2024-09-11 09:05:01.578884 0bf265c1-6594-48f1-b539-5c21f5e38fad {"md5": "0531a65d680fb777e9e5e6a16f79c745", "pid": "156838613", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/156838613", "source": "IDREF"}], "variant_name": ["Quatuor à cordes Mikrokosmos", "Mikrokosmos string quartet"], "preferred_name": "Mikrokosmos Vonósnégyes", "country_associated": "hu", "variant_access_point": ["Quatuor à cordes Mikrokosmos", "Mikrokosmos string quartet"], "date_of_establishment": "1998", "authorized_access_point": "Mikrokosmos Vonósnégyes", "biographical_information": ["Quatuor à cordes fondé par Gábor Takács-Nagy", "Takács-Nagy, Gábor, violon. Tuska, Zoltán, violon. Papp, Sándor, alto. Perényi, Miklós, violoncelle"]} 1 +2024-09-11 09:05:01.637254 2024-09-11 09:05:01.637259 5b215b15-11f6-4038-a954-3ab26f9f00c5 {"md5": "511183e6c299293350f9de9a642d4c40", "pid": "156954761", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/156954761", "source": "IDREF"}], "preferred_name": "Institut du Champ freudien (Paris). Conversation", "country_associated": "fr", "date_of_termination": "2009?", "date_of_establishment": "2009?", "authorized_access_point": "Institut du Champ freudien (Paris). Conversation (2009 ; Paris)"} 1 +2024-09-11 09:05:01.707539 2024-09-11 09:05:01.707543 05e61101-14c1-4f53-a8bd-17e2b7ebded6 {"md5": "b8c4fee049893069d5312788951dec2c", "pid": "15704856X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/15704856X", "source": "IDREF"}], "preferred_name": "Eastman, David L.", "country_associated": "xxu", "authorized_access_point": "Eastman, David L.", "biographical_information": ["Maître de conférences en histoire du Nouveau Testament grec et chrétien à la Yale Divinity School."]} 1 +2024-09-11 09:05:01.770534 2024-09-11 09:05:01.770539 1f6d6f7c-cb06-4eec-8533-b8820259d58c {"md5": "bba3441a837473ba672901a009675a88", "pid": "157222330", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ara"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157222330", "source": "IDREF"}], "variant_name": ["الخاني, عبد المجيد بن محمد", "عبد المجيد بن محمد بن محمد الخاني الدمشقي الشافعي", "ʿAbd al-Maǧīd Ibn Muḥammad al-Khāni al-Khālidī al-naqshabandī", "Al-Naqshabandī, ʿAbd al-Maǧīd Ibn Muḥammad", "Al-Naqšabandi, ʿAbd al-Maǧīd Ibn Muḥammad", "النقشبندي, عبد المجيد بن محمد", "الشافعي, عبد المجيد بن محمد", "عبد المجيد بن محمد بن محمد الخاني النقشبندي"], "date_of_birth": "1848", "date_of_death": "1901", "preferred_name": "H̱ānī, ʿAbd al-Maǧīd Ibn Muḥammad al-", "variant_access_point": ["عبد المجيد بن محمد بن محمد الخاني الدمشقي الشافعي", "ʿAbd al-Maǧīd Ibn Muḥammad al-Khāni al-Khālidī al-naqshabandī", "Al-Naqshabandī, ʿAbd al-Maǧīd Ibn Muḥammad", "Al-Naqšabandi, ʿAbd al-Maǧīd Ibn Muḥammad", "النقشبندي, عبد المجيد بن محمد", "الشافعي, عبد المجيد بن محمد", "عبد المجيد بن محمد بن محمد الخاني النقشبندي"], "authorized_access_point": "H̱ānī, ʿAbd al-Maǧīd Ibn Muḥammad al-, 1848-1901", "biographical_information": ["Maître sufi, historien et érudit dans les sciences religieuses islamiques"]} 1 +2024-09-11 09:05:01.840392 2024-09-11 09:05:01.840398 5c6360a7-5ebb-444a-baa7-da8865f70983 {"md5": "33666a6af941884e03c9196888d00db7", "pid": "157227170", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157227170", "source": "IDREF"}], "variant_name": ["Meya, Raoul Kiyangi"], "date_of_birth": "1970--.-..", "preferred_name": "Kiyangi Meya, Raoul", "country_associated": "cg", "variant_access_point": ["Meya, Raoul Kiyangi"], "authorized_access_point": "Kiyangi Meya, Raoul, 1970....", "biographical_information": ["Docteur en Théologie"]} 1 +2024-09-11 09:05:01.905068 2024-09-11 09:05:01.905074 5f1304b2-fdcd-4761-9ce3-95487f5c73f9 {"md5": "acd68496dcbc9d97d93aa033ce17cea1", "pid": "157315088", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157315088", "source": "IDREF"}], "preferred_name": "La Boîte à bazar", "country_associated": "fr", "date_of_establishment": "2003", "authorized_access_point": "La Boîte à bazar", "biographical_information": ["Groupe de chansons françaises", "Clément, Grégory, chant. Giovannini, Cyrille, piano. Champeau, Thierry, saxophones. Gumez, Stéphane, contrebasse. Duval, Cyril, guitare"]} 1 +2024-09-11 09:05:01.962231 2024-09-11 09:05:01.962235 cc66b448-eec0-4345-8890-92ff4b2c587e {"md5": "e75a4dbdc3a10d9f7067ff57e7849b61", "pid": "157332047", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157332047", "source": "IDREF"}], "preferred_name": "Bad English", "country_associated": "xxu", "date_of_termination": "1991", "date_of_establishment": "1988", "authorized_access_point": "Bad English", "biographical_information": ["Groupe de rock", "Waite, John, chant (1988-1991). Schon, Neal, guitare, chant (1988-1991). Cain, Jonathan, claviers, chant (1988-1991). Phillips, Ricky, guitare basse (1988-1991). Castronovo, Deen, batterie, chant (1988-1991)"]} 1 +2024-09-11 09:05:02.021212 2024-09-11 09:05:02.021217 6ec3d590-d225-4df3-acca-72d0b72184b6 {"md5": "6f2418bd345d2b936c3111b39de8dbfe", "pid": "157333507", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157333507", "source": "IDREF"}], "preferred_name": "Zefiro torna", "country_associated": "be", "date_of_establishment": "1996", "authorized_access_point": "Zefiro torna", "biographical_information": ["Ensemble vocal et instrumental de musique ancienne", "Adresse : Mechelen, Belgique", "Kempenaers, Cécile, chant. Van Laethem, Els, chant. De Bruyn, Jurgen, luth. Fennelly, Liam, viole de gambe"]} 1 +2024-09-11 09:05:02.083706 2024-09-11 09:05:02.083712 0cc52ff7-e392-4e03-871d-4516005a447f {"md5": "61c151454b0b37b24d95d2560bac3a97", "pid": "157526860", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157526860", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Schwartz, Baruch J.", "country_associated": "is", "authorized_access_point": "Schwartz, Baruch J., 19..-....", "biographical_information": ["Lecteur à : Hebrew University of Jerusalem"]} 1 +2024-09-11 09:05:02.14241 2024-09-11 09:05:02.142415 ea5067d7-7c3a-4bb7-b390-6281be395757 {"md5": "16126d34a544d3dd05cc77b9a2dbd2e2", "pid": "157650154", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "qualifier": "auteur de bandes dessinées", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157650154", "source": "IDREF"}], "variant_name": ["Mino, Patrizio Di"], "date_of_birth": "19XX", "preferred_name": "Di Mino, Patrizio, auteur de bandes dessinées", "country_associated": "it", "variant_access_point": ["Mino, Patrizio Di"], "authorized_access_point": "Di Mino, Patrizio, 19..-...., auteur de bandes dessinées", "biographical_information": ["Scénariste de bandes dessinées"]} 1 +2024-09-11 09:05:02.203181 2024-09-11 09:05:02.203186 01bd1c03-1dc9-4b71-83bd-75fb14197e3b {"md5": "6626e2d6152b6cd4e0cb8b41698251c8", "pid": "157856283", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157856283", "source": "IDREF"}], "preferred_name": "Thomas, Corinne", "country_associated": "fr", "authorized_access_point": "Thomas, Corinne", "biographical_information": ["Titulaire d'un doctorat en Production Automatisée de l'Université Henri Poincaré (Nancy 1) en 1999"]} 1 +2024-09-11 09:05:02.265079 2024-09-11 09:05:02.265084 594d6fb2-1ed4-4ccb-84fb-4435888fbca2 {"md5": "f20b191dd8575486378d8e39c7f3894e", "pid": "157881997", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["pol"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157881997", "source": "IDREF"}], "preferred_name": "Chojnacka, Halina", "country_associated": "pl", "authorized_access_point": "Chojnacka, Halina"} 1 +2024-09-11 09:05:02.323763 2024-09-11 09:05:02.323766 a5a73f6a-d99f-42ee-8f99-0ec55174d3f0 {"md5": "613e50e423acfd824f0f6ffb8aed698d", "pid": "157995860", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["slv"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157995860", "source": "IDREF"}], "date_of_birth": "1937-03-06", "preferred_name": "Vojvoda, Metod", "country_associated": "xv", "authorized_access_point": "Vojvoda, Metod, 1937-...."} 1 +2024-09-11 09:05:02.386629 2024-09-11 09:05:02.386635 748f5004-976b-4a0b-98dd-6d0029453cc5 {"md5": "eb34e159c4312804be17eec1e72fe228", "pid": "158085647", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/158085647", "source": "IDREF"}], "preferred_name": "Lenaz, Luciano", "country_associated": "it", "authorized_access_point": "Lenaz, Luciano", "biographical_information": ["Latiniste"]} 1 +2024-09-11 09:05:02.440283 2024-09-11 09:05:02.440287 0f86033f-afc1-4132-b7f1-9173c0e38d14 {"md5": "96f4a680552a229b9aa02ba1128a9714", "pid": "158118294", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/158118294", "source": "IDREF"}], "preferred_name": "Sociedad Geográfica de Cuba (La Habana)", "country_associated": "cu", "authorized_access_point": "Sociedad Geográfica de Cuba (La Habana)"} 1 +2024-09-11 09:05:02.496068 2024-09-11 09:05:02.496072 70e39dae-f990-4cd2-ad7e-5aa311580642 {"md5": "213d0f54fc7b1f07d3900824768424db", "pid": "158365186", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/158365186", "source": "IDREF"}], "date_of_birth": "1952-04-10", "preferred_name": "Olsen, Frode", "country_associated": "no", "authorized_access_point": "Olsen, Frode, 1952-....", "biographical_information": ["Artiste lyrique (basse)", "Lieu de naissance Oslo"]} 1 +2024-09-11 09:05:02.558498 2024-09-11 09:05:02.558505 50dff7a3-aa05-409e-8519-92ae65d2aca9 {"md5": "29eb27fc618da06c8eeb9058dadb6d11", "pid": "158552180", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/158552180", "source": "IDREF"}], "preferred_name": "Paquet, François", "country_associated": "xxc", "authorized_access_point": "Paquet, François", "biographical_information": ["Psychologue. Enseigne la psychologie depuis une vingtaine d'années au Collège Jean-de-Brébeuf."]} 1 +2024-09-11 09:05:02.642238 2024-09-11 09:05:02.642242 08293931-76d7-4626-b29c-66876d0ee6c7 {"md5": "fc69698f68a06c86d70ba8bb937797ba", "pid": "158638247", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/158638247", "source": "IDREF"}], "date_of_death": "1894", "preferred_name": "Stephen, Alexander M.", "country_associated": "xxu", "authorized_access_point": "Stephen, Alexander M., d. 1894"} 1 +2024-09-11 09:05:02.701052 2024-09-11 09:05:02.701057 0f29ccef-2c36-4b43-8172-29cf134d586c {"md5": "5822ce7393519b73b3305a7a13129bdb", "pid": "158762274", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/158762274", "source": "IDREF"}], "variant_name": ["Angers, Mgr l'évêque d'", "Le Peletier, Michel, évêque d'Angers", "Le Pelletier, Michel", "Lepeletier, Michel"], "date_of_birth": "1663?", "date_of_death": "1706", "preferred_name": "Le Peletier, Michel", "variant_access_point": ["Angers, Mgr l'évêque d'", "Le Peletier, Michel, évêque d'Angers", "Le Pelletier, Michel", "Lepeletier, Michel"], "authorized_access_point": "Le Peletier, Michel, 1663?-1706", "biographical_information": ["Abbé de Jouy, évêque d'Angers puis d'Orléans. Fils du ministre d'état Claude Le Peletier. Evêque d'Angers en 1693. Il sera brièvement évêque d'Orléans en 1706."]} 1 +2024-09-11 09:05:24.904087 2024-09-11 09:05:24.904095 8304f43e-8f9d-4c63-88b5-d04036a41e33 {"md5": "a3cc6db2fa4ec800b78f18d31ee3399b", "pid": "19870125X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/19870125X", "source": "IDREF"}], "preferred_name": "Chauvel, Jacques", "authorized_access_point": "Chauvel, Jacques"} 1 +2024-09-11 09:05:02.78174 2024-09-11 09:05:02.781743 0570b829-e283-4c89-ba8b-375295056263 {"md5": "a88e07a01a5d30921b26197f674417d4", "pid": "158778235", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "géologue", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/158778235", "source": "IDREF"}], "variant_name": ["Lombard, J."], "date_of_birth": "1895", "preferred_name": "Lombard, Jean, géologue", "country_associated": "xx", "variant_access_point": ["Lombard, J."], "authorized_access_point": "Lombard, Jean, 1895-...., géologue", "biographical_information": ["Géologue"]} 1 +2024-09-11 09:05:02.839886 2024-09-11 09:05:02.839889 e1e7ad6e-0438-4270-9842-de113ca4e166 {"md5": "70fcc8b8f37217f523f3ad46845ab2af", "pid": "158991583", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/158991583", "source": "IDREF"}], "preferred_name": "Senft, Albin-Friedrich", "country_associated": "gw", "authorized_access_point": "Senft, Albin-Friedrich"} 1 +2024-09-11 09:05:02.898723 2024-09-11 09:05:02.898727 afc2a5be-61af-4265-8a94-c4e23e7ce4cd {"md5": "ecdae378bb6b2ef383a283419725352b", "pid": "158996577", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/158996577", "source": "IDREF"}], "variant_name": ["De Souza, Rosalia"], "date_of_birth": "1966-07-04", "preferred_name": "Souza, Rosalia de", "country_associated": "bl", "variant_access_point": ["De Souza, Rosalia"], "authorized_access_point": "Souza, Rosalia de, 1966-....", "biographical_information": ["Chanteuse. - Vit en Italie"]} 1 +2024-09-11 09:05:02.955085 2024-09-11 09:05:02.955092 c03ccb34-3765-42ce-8a0a-99626c7ab999 {"md5": "26451da5eb89bc2093fde565689055c3", "pid": "159184495", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/159184495", "source": "IDREF"}], "date_of_birth": "1976", "preferred_name": "Buccheri, Chiara", "country_associated": "fr", "authorized_access_point": "Buccheri, Chiara, 1976-...."} 1 +2024-09-11 09:05:03.014027 2024-09-11 09:05:03.014031 fa322a28-03a7-47cb-9588-5689b196713e {"md5": "85b54e4944f1040357db20925f31c510", "pid": "159278201", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/159278201", "source": "IDREF"}], "variant_name": ["EIA (London, Washington)"], "preferred_name": "Environmental Investigation Agency (London, Washington)", "variant_access_point": ["EIA (London, Washington)"], "authorized_access_point": "Environmental Investigation Agency (London, Washington)"} 1 +2024-09-11 09:05:03.074581 2024-09-11 09:05:03.074586 209a06e3-3e52-4cd6-a428-84012cc39010 {"md5": "9b48f179e5c851ce1bbd2266aa501139", "pid": "159640989", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/159640989", "source": "IDREF"}], "preferred_name": "Terblanche, Simonet", "authorized_access_point": "Terblanche, Simonet"} 1 +2024-09-11 09:05:03.139076 2024-09-11 09:05:03.139079 6a8e12ec-b903-4d26-9dd0-b358400ce5f3 {"md5": "7b6352de6a77a0e02591e8ac3668a93c", "pid": "159658152", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "qualifier": "musicien", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/159658152", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Danieli, Marco, musicien", "country_associated": "it", "authorized_access_point": "Danieli, Marco, 19..-...., musicien", "biographical_information": ["Artiste lyrique (baryton)"]} 1 +2024-09-11 09:05:03.201378 2024-09-11 09:05:03.201383 1c6ba99c-cd36-46f7-a5d2-2a0ec28cc0b7 {"md5": "263fa5cf797af0280c5433d6df158eac", "pid": "159687306", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/159687306", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Caversaccio, Marco-Domenico", "country_associated": "sz", "authorized_access_point": "Caversaccio, Marco-Domenico, 19..-....", "biographical_information": ["Directeur du Département ENT, chirurgie de la tête et du cou, Hôpital universitaire d'Inselspital, Université de Bern (2011)"]} 1 +2024-09-11 09:05:03.260223 2024-09-11 09:05:03.260228 c109bd7c-f75a-4b2a-ba13-6cd8c04a7faf {"md5": "9bcd31fe98103f3fb6eb7f5e1af5cb37", "pid": "159765315", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/159765315", "source": "IDREF"}], "date_of_birth": "1949", "preferred_name": "Hull, Edmund James", "country_associated": "xxu", "authorized_access_point": "Hull, Edmund James, 1949-...."} 1 +2024-09-11 09:05:03.317432 2024-09-11 09:05:03.317438 0fc2495a-ce32-4ead-b64f-dbb385b33b85 {"md5": "8448df93da9da94f6171963deb349075", "pid": "159775744", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/159775744", "source": "IDREF"}], "date_of_birth": "1936", "preferred_name": "Puthucheary, Rosaly", "country_associated": "si", "authorized_access_point": "Puthucheary, Rosaly, 1936-....", "biographical_information": ["Professeur d'anglais à la retraite, titulaire d'un doctorat en littérature anglaise de l'Université de Singapour (2006)"]} 1 +2024-09-11 09:05:03.378577 2024-09-11 09:05:03.37858 5272b86e-a740-4416-ab9a-64c4f19df156 {"md5": "bd3688ce2d89037a06f3fa3927ba2234", "pid": "159852684", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/159852684", "source": "IDREF"}], "date_of_birth": "1978", "preferred_name": "Paquin, Barbara", "authorized_access_point": "Paquin, Barbara, 1978-....", "biographical_information": ["Bachelière en administration des affaires de l'Université Laval"]} 1 +2024-09-11 09:05:03.437222 2024-09-11 09:05:03.437227 25d802b3-1c92-4505-ba5a-827098078286 {"md5": "2dc378d6157fb22187564763c150e010", "pid": "160193974", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/160193974", "source": "IDREF"}], "variant_name": ["Amicale des originaires de l'arrondissement de Gourdon (Lot) à Paris"], "preferred_name": "Amicale des originaires de l'arrondissement de Gourdon (Lot) à Paris", "country_associated": "fr", "variant_access_point": ["Amicale des originaires de l'arrondissement de Gourdon (Lot) à Paris"], "authorized_access_point": "Amicale des originaires de l'arrondissement de Gourdon (Lot) à Paris"} 1 +2024-09-11 09:05:07.191318 2024-09-11 09:05:07.191323 8f3f1cd0-6ece-485d-8c4e-52e2a384b328 {"md5": "97ae402dcc2a9a7389a78f87b7ea6532", "pid": "16734613X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/16734613X", "source": "IDREF"}], "preferred_name": "Conference on book trade history", "country_associated": "xxk", "date_of_termination": "1990", "date_of_establishment": "1990", "authorized_access_point": "Conference on book trade history (12 ; 1990 ; Londres)"} 1 +2024-09-11 09:05:03.495215 2024-09-11 09:05:03.495219 37f45f5b-559b-4e2a-8e86-98dde3749279 {"md5": "4c47f4f0ae0a85e16e10dc3334e0b268", "pid": "160196620", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/160196620", "source": "IDREF"}], "variant_name": ["ADETEF"], "preferred_name": "Association pour le développement des échanges en technologie économique et financière (France)", "country_associated": "fr", "variant_access_point": ["ADETEF"], "date_of_establishment": "19XX", "authorized_access_point": "Association pour le développement des échanges en technologie économique et financière (France)", "biographical_information": ["Groupement d'intérêt public. - Agence de coopération technique internationale des ministères chargés de l’économie et du budget", "Adresse : 5 place des Vins-de-France, 75573 Paris Cedex 12. Contact : 01 53 44 25 35. Télécopie : 01 53 44 25 31. Adresse électronique : adetef-contact@adetef.finances.gouv.fr", "Adresse : Ancienne adresse : 8 rue des Bons-Enfants, 75056 Paris. Tél. 42.60.33.00 p. 3876"]} 1 +2024-09-11 09:05:03.554989 2024-09-11 09:05:03.554994 f3b9fe86-d962-4ba2-bad8-1fc3df9b3c5a {"md5": "b27cb9bab77f7c99e0477b2ceaf2155f", "pid": "160342465", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/160342465", "source": "IDREF"}], "preferred_name": "New vision 400", "country_associated": "cc", "date_of_termination": "2008-10-15", "date_of_establishment": "2008-10-12", "authorized_access_point": "New vision 400 (2008 ; Beijing)"} 1 +2024-09-11 09:05:03.617143 2024-09-11 09:05:03.617148 b2a5de55-6378-4c39-a105-5bfb50af8826 {"md5": "d96c4d30679c1dbafa48c7ccbefba2ae", "pid": "160359619", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/160359619", "source": "IDREF"}], "date_of_birth": "1926-01-06", "preferred_name": "Silvestre, Armando Enrique", "country_associated": "mx", "authorized_access_point": "Silvestre, Armando Enrique, 1926-...", "biographical_information": ["Acteur mexicain né en Californie"]} 1 +2024-09-11 09:05:03.680426 2024-09-11 09:05:03.680432 9732c453-a681-4f3f-863d-2879916ab7b4 {"md5": "7258eac3025f37bd1ae63b6d06752b43", "pid": "160424275", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/160424275", "source": "IDREF"}], "preferred_name": "Abbaye de Saint-Benoît-en-Woëvre (Meuse)", "country_associated": "fr", "authorized_access_point": "Abbaye de Saint-Benoît-en-Woëvre (Meuse)", "biographical_information": ["Abbaye fondée en 1132 dans le diocèse de Metz. Une des quatre filiales de l'abbaye cistercienne de la Crête, située elle-même près de Bourdons-sur-Rognon."]} 1 +2024-09-11 09:05:03.753201 2024-09-11 09:05:03.753207 bfd25b77-314b-4086-838e-7611a408de78 {"md5": "6c982bd61ce202213e90dfdcb03afe9f", "pid": "160613701", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/160613701", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Obed", "country_associated": "xx", "authorized_access_point": "Obed, 19..-....", "biographical_information": ["Chanteur de variétés antillaises et de dancehall"]} 1 +2024-09-11 09:05:03.81349 2024-09-11 09:05:03.813496 f3633354-c539-4052-b65e-341d70989c82 {"md5": "d3b10693be4d59687803e1bfaf6d18c2", "pid": "160635543", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/160635543", "source": "IDREF"}], "date_of_birth": "1938", "preferred_name": "Diodato, Baldo", "country_associated": "it", "authorized_access_point": "Diodato, Baldo, 1938-....", "biographical_information": ["Artiste italien"]} 1 +2024-09-11 09:05:03.894243 2024-09-11 09:05:03.894248 22de9306-b2df-492f-ba56-1e0a1448928b {"md5": "b387baade3b43e5c24711e2325ae0cf3", "pid": "160773318", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/160773318", "source": "IDREF"}], "variant_name": ["Burian, Peter Ferdinand"], "date_of_birth": "1951-02-16", "preferred_name": "Burian, Peter", "country_associated": "au", "variant_access_point": ["Burian, Peter Ferdinand"], "authorized_access_point": "Burian, Peter, 1951-....", "biographical_information": ["Chef de choeur et chef d'orchestre"]} 1 +2024-09-11 09:05:03.958809 2024-09-11 09:05:03.958813 9c771587-440f-4d4d-9745-fd34093b69e6 {"md5": "e252644a0de2f556bbaf236643e7e60c", "pid": "160837065", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/160837065", "source": "IDREF"}], "preferred_name": "Symposium on H II Regions and Related Topics", "country_associated": "au", "date_of_termination": "1975-01-17", "date_of_establishment": "1975-01-13", "authorized_access_point": "Symposium on H II Regions and Related Topics (1975 ; Mittelberg, Autriche)"} 1 +2024-09-11 09:05:04.01728 2024-09-11 09:05:04.017286 8c514832-14bf-4434-85c7-6d33c4bc1223 {"md5": "499ab09bae7cea7d03030b18e9c33771", "pid": "16113307X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/16113307X", "source": "IDREF"}], "preferred_name": "Korotkov, Dave", "country_associated": "xxc", "authorized_access_point": "Korotkov, Dave", "biographical_information": ["Associate Professor of Psychology at St. Thomas University in Fredericton, New Brunswick, Canada (2011)"]} 1 +2024-09-11 09:05:04.079479 2024-09-11 09:05:04.079484 f74c1295-bb94-47a1-bf24-2c99c71c7209 {"md5": "2308a04e7e1fc582cf53b77204e52cd8", "pid": "161148689", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa", "eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/161148689", "source": "IDREF"}], "preferred_name": "Valdivielso, Joaquín", "country_associated": "sp", "authorized_access_point": "Valdivielso, Joaquín", "biographical_information": ["Traduit de l'anglais à l'espagnol."]} 1 +2024-09-11 09:05:04.143226 2024-09-11 09:05:04.14323 59536ba8-f1c4-488e-b769-f27d33254951 {"md5": "44b34430f48aeca9a3e41d9b355b3ec7", "pid": "161301142", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/161301142", "source": "IDREF"}], "date_of_birth": "1981", "preferred_name": "Bly, Adam", "country_associated": "xxu", "authorized_access_point": "Bly, Adam, 1981-...."} 1 +2024-09-11 09:05:04.198714 2024-09-11 09:05:04.198719 f6a404be-811f-4331-ae38-10e6db0368bd {"md5": "46f525bea7a90c2841dd951d8957278d", "pid": "161367070", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/161367070", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Merran, Stéphanie", "country_associated": "fr", "authorized_access_point": "Merran, Stéphanie, 19..-...."} 1 +2024-09-11 09:05:04.296036 2024-09-11 09:05:04.296038 d0656c03-889d-448d-8e86-07c762aa0853 {"md5": "5baed37112020058ff26639d594b5892", "pid": "16165407X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/16165407X", "source": "IDREF"}], "variant_name": ["Rhône-Alpes. Service d'aménagement des eaux", "Service d'aménagement des eaux de Rhône-Alpes", "Service régional de l'aménagement des eaux de Rhône-Alpes"], "preferred_name": "Rhône-Alpes. Service régional de l'aménagement des eaux", "country_associated": "fr", "variant_access_point": ["Rhône-Alpes. Service d'aménagement des eaux", "Service d'aménagement des eaux de Rhône-Alpes", "Service régional de l'aménagement des eaux de Rhône-Alpes"], "authorized_access_point": "Rhône-Alpes. Service régional de l'aménagement des eaux"} 1 +2024-09-11 09:05:04.355491 2024-09-11 09:05:04.355494 17d79569-18c8-41f0-83d5-5d535e6b2824 {"md5": "a22288a9f05f3e6f1934f6af0328b860", "pid": "161696325", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/161696325", "source": "IDREF"}], "preferred_name": "Heathcote, Gina", "country_associated": "xx", "authorized_access_point": "Heathcote, Gina", "biographical_information": ["Senior teaching fellow at the School of Oriental and African studies"]} 1 +2024-09-11 09:05:04.406557 2024-09-11 09:05:04.40656 6f23563d-d5b8-45f1-9a1e-030d53b88ecc {"md5": "d1fe9ff963ea25fcd5180a66de13b037", "pid": "161996302", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/161996302", "source": "IDREF"}], "date_of_birth": "1952", "preferred_name": "Roach, Michael", "country_associated": "xxc", "authorized_access_point": "Roach, Michael, 1952-"} 1 +2024-09-11 09:05:04.461134 2024-09-11 09:05:04.461137 acbcd966-f607-4f1d-a9f1-c9b26bc835e5 {"md5": "a14c1ca3bc224c8cf7e05f43ade2661e", "pid": "162046065", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/162046065", "source": "IDREF"}], "variant_name": ["Anninga, A.Z.", "Anninga, A. Z."], "date_of_birth": "19XX", "preferred_name": "Anninga, Anniek Z.", "country_associated": "ne", "variant_access_point": ["Anninga, A.Z.", "Anninga, A. Z."], "authorized_access_point": "Anninga, Anniek Z., 19..-....", "biographical_information": ["Editrice. Spécialiste d'archéologie"]} 1 +2024-09-11 09:05:04.518295 2024-09-11 09:05:04.518301 8611258c-0bae-418c-b493-443772cc0ab0 {"md5": "31b9bdeca865f8dd9fab7128ef35895e", "pid": "162138997", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/162138997", "source": "IDREF"}], "preferred_name": "Frey, Markus", "country_associated": "xxu", "authorized_access_point": "Frey, Markus"} 1 +2024-09-11 09:05:04.581837 2024-09-11 09:05:04.581842 7594bd7f-5543-4b9b-8df1-c93842184dae {"md5": "f150e9c3254ac9ed37ed5d60bc531645", "pid": "162154224", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/162154224", "source": "IDREF"}], "date_of_birth": "1973", "preferred_name": "Popp, Julius", "country_associated": "gw", "authorized_access_point": "Popp, Julius, 1973-....", "biographical_information": ["Artiste plasticien. Installateur. Photographe. Né à Nuremberg. Vit à Leipzig, Allemagne"]} 1 +2024-09-11 09:05:04.646765 2024-09-11 09:05:04.646769 c4b50a83-58d4-4276-829f-c266a73a9947 {"md5": "8dfd3f54d872ff1be1db71d3436347a5", "pid": "16216193X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/16216193X", "source": "IDREF"}], "variant_name": ["神田, 典城"], "date_of_birth": "1949", "preferred_name": "Kanda, Norishiro", "country_associated": "ja", "variant_access_point": ["神田, 典城, 1949-...."], "authorized_access_point": "Kanda, Norishiro, 1949-....", "biographical_information": ["Transcription Hepburn modifié", "Spécialiste de la mythologie japonaise"]} 1 +2024-09-11 09:05:04.711119 2024-09-11 09:05:04.711124 7f6782f9-a483-4a60-a9df-6806bf6d20e7 {"md5": "659ed0fdab8d1416bbf636bf6ec554f0", "pid": "162196407", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/162196407", "source": "IDREF"}], "preferred_name": "Ikeda, Yukihiro", "country_associated": "ja", "authorized_access_point": "Ikeda, Yukihiro", "biographical_information": ["Historien de la pensée économique. En poste à l'université de Keio au Japon (en 2012)."]} 1 +2024-09-11 09:05:04.768817 2024-09-11 09:05:04.768822 421f91b2-9031-4db6-83a7-ebe28f3b68c9 {"md5": "5da049bd5859cdc2d5d44b1d139ddce2", "pid": "162320264", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/162320264", "source": "IDREF"}], "preferred_name": "Airbus Staff Council", "country_associated": "fr", "authorized_access_point": "Airbus Staff Council", "biographical_information": ["Comité central d'entreprise créé en mars 2002"]} 1 +2024-09-11 09:05:04.823246 2024-09-11 09:05:04.823249 6e0b36c7-495f-4df7-9410-62aba56588cd {"md5": "d564bc2cd06f2f95f9dd0dda4f48fc37", "pid": "162452659", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/162452659", "source": "IDREF"}], "variant_name": ["Paleotti, Ridolfo", "Palaeotus, Rodulphus"], "date_of_birth": "15", "date_of_death": "1619-05-23", "preferred_name": "Paleotti, Rodolfo", "country_associated": "it", "variant_access_point": ["Paleotti, Ridolfo", "Palaeotus, Rodulphus"], "authorized_access_point": "Paleotti, Rodolfo, 15..-1619", "biographical_information": ["Évêque d'Imola du 27 juin 1611 au 23 mai 1619"]} 1 +2024-09-11 09:05:04.881723 2024-09-11 09:05:04.881727 2c3fb586-df38-4054-b62e-1fc6fb9f21e9 {"md5": "b51f63942b1413f2525a6962988515da", "pid": "162460163", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/162460163", "source": "IDREF"}], "preferred_name": "Georgoulas, Stratos", "country_associated": "gw", "authorized_access_point": "Georgoulas, Stratos"} 1 +2024-09-11 09:05:05.596805 2024-09-11 09:05:05.596809 0d9cb95b-b1c1-4764-9af8-5f30cfb5e1a6 {"md5": "79817417890aa45891d606eed1d81cb9", "pid": "16481079X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/16481079X", "source": "IDREF"}], "variant_name": ["恩田, 陸"], "date_of_birth": "1964", "preferred_name": "Onda, Riku", "country_associated": "ja", "variant_access_point": ["恩田, 陸, 1964-...."], "authorized_access_point": "Onda, Riku, 1964-....", "biographical_information": ["Romancière japonaise (en 2012)"]} 1 +2024-09-11 09:05:04.943139 2024-09-11 09:05:04.943143 698845d5-b6e6-4312-809d-b691f3183864 {"md5": "a3c6fa873b559a779ab24285a78eb8fa", "pid": "163232857", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/163232857", "source": "IDREF"}], "variant_name": ["4 C", "CCCC", "Quatre C", "Communauté de communes Concarneau Cornouaille"], "preferred_name": "Communauté de communes de Concarneau Cornouaille", "country_associated": "fr", "variant_access_point": ["4 C", "CCCC", "Quatre C", "Communauté de communes Concarneau Cornouaille"], "date_of_establishment": "1994-06-30", "authorized_access_point": "Communauté de communes de Concarneau Cornouaille", "biographical_information": ["Regroupe les communes de Concarneau, Elliant, Melgven, Névez, Pont-Aven, Rosporden, Saint-Yvi, Tourc’h, Trégunc", "Adresse : 52 rue Bayard, BP 636, 29186 Concarneau Cedex. Contact : 02 98 97 71 50. Télécopie : 02 98 97 71 51. Adresse électronique : contact@cc-concarneaucornouaille.fr"]} 1 +2024-09-11 09:05:05.015473 2024-09-11 09:05:05.015477 d79561af-9618-4c93-aca2-35cf34ad6f34 {"md5": "4e1e0cb207bfbfab0a2c65cf23eaf345", "pid": "163250030", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/163250030", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Chamontin, Marjorie", "country_associated": "fr", "authorized_access_point": "Chamontin, Marjorie, 19..-....", "biographical_information": ["Actrice et metteur en scène"]} 1 +2024-09-11 09:05:05.078286 2024-09-11 09:05:05.078291 ecfaa538-c994-4104-ad09-344cfd024ffd {"md5": "4e84e9ac0a63a56dd54f796aabd62c66", "pid": "163880433", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/163880433", "source": "IDREF"}], "date_of_birth": "1967", "preferred_name": "Kern, Friederike", "country_associated": "gw", "authorized_access_point": "Kern, Friederike, 1967-....", "biographical_information": ["Professeur de linguistique"]} 1 +2024-09-11 09:05:05.137596 2024-09-11 09:05:05.137602 07b60539-1d85-4a8b-a704-85562b6c6a33 {"md5": "e4b3c98abb5ee30316df53a0537ec762", "pid": "164105301", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/164105301", "source": "IDREF"}], "preferred_name": "Boise Art Museum (Boise, ID)", "country_associated": "xxu", "authorized_access_point": "Boise Art Museum (Boise, ID)", "biographical_information": ["Adresse : Boise Art Museum , 670 Julia Davis Drive, Boise, Idaho 83702, 208-345-8330"]} 1 +2024-09-11 09:05:05.192091 2024-09-11 09:05:05.192095 82a538d0-5699-431f-a852-4654ef5baee0 {"md5": "fa11703ea5b8d123c2e74a7b8aa1cdba", "pid": "164529640", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/164529640", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Pierré, Michaël", "country_associated": "fr", "authorized_access_point": "Pierré, Michaël, 19..-...."} 1 +2024-09-11 09:05:05.250872 2024-09-11 09:05:05.250877 ce55ca4a-e137-4087-8b0f-f1b719f7ec10 {"md5": "a261b4767e694cbfe86e8d68663955c9", "pid": "164530363", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/164530363", "source": "IDREF"}], "variant_name": ["Collectif d'action des sans-abri (Avignon)"], "preferred_name": "CASA (Avignon)", "country_associated": "fr", "variant_access_point": ["Collectif d'action des sans-abri (Avignon)"], "authorized_access_point": "CASA (Avignon)", "biographical_information": ["Association d'aide aux personnes sans-abri ou mal logées", "Adresse : 5 bis avenue du Blanchissage, 84000 Avignon"]} 1 +2024-09-11 09:05:05.307062 2024-09-11 09:05:05.307067 818bbf77-a791-44c7-acdf-4d19d56c3ef8 {"md5": "44bb5fa247c2273a5701b475824ff0dd", "pid": "164539972", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/164539972", "source": "IDREF"}], "variant_name": ["TFS"], "preferred_name": "Tennessee folklore society", "country_associated": "xxu", "variant_access_point": ["TFS"], "date_of_establishment": "1934", "authorized_access_point": "Tennessee folklore society"} 1 +2024-09-11 09:05:05.361629 2024-09-11 09:05:05.361633 d9a68089-6c44-432b-8613-6f214e61316a {"md5": "3ac4f9174d7a36392c0daf9b3fe38bcd", "pid": "164600620", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/164600620", "source": "IDREF"}], "preferred_name": "Rokotnitz, Naomi", "country_associated": "is", "authorized_access_point": "Rokotnitz, Naomi", "biographical_information": ["Enseigne au département d'anglais de la \\"Bar llan University\\" (Israël) en 2011"]} 1 +2024-09-11 09:05:05.4198 2024-09-11 09:05:05.419804 c699b752-db9b-49fc-906a-35caa193da53 {"md5": "334e74ab93313f6af858936697e12564", "pid": "164604820", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/164604820", "source": "IDREF"}], "variant_name": ["13e Biennale internationale de Châteauroux", "Nouvelle biennale de céramique contemporaine de Châteauroux"], "preferred_name": "Biennale de céramique contemporaine de Châteauroux", "date_of_termination": "2005-12-04", "variant_access_point": ["13e Biennale internationale de Châteauroux", "Nouvelle biennale de céramique contemporaine de Châteauroux"], "date_of_establishment": "2005-09-17", "authorized_access_point": "Biennale de céramique contemporaine de Châteauroux (13 ; 2005)"} 1 +2024-09-11 09:05:05.475686 2024-09-11 09:05:05.475691 e2c0615f-59c7-4f6a-aabf-08e8c2d4712e {"md5": "8e994498b47903462125719d5a7577a3", "pid": "164708782", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/164708782", "source": "IDREF"}], "date_of_birth": "1923", "date_of_death": "1992-09", "preferred_name": "Burgaz, Janin", "country_associated": "fr", "authorized_access_point": "Burgaz, Janin, 1923-1992", "biographical_information": ["Épouse d'un homme d'affaires turc, elle arrive en Turquie en 1950. - A fondé un institut de beauté \\"Janin Surgen\\" à Istanbul", "Lieu de décès Bordeaux"]} 1 +2024-09-11 09:05:05.533822 2024-09-11 09:05:05.533826 4093874c-fa19-48fe-b7ae-d4d9269e3602 {"md5": "907d69041fefb9628b14d799e685f64c", "pid": "16480224X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/16480224X", "source": "IDREF"}], "preferred_name": "Hatzelhoffer, Lena", "country_associated": "gw", "authorized_access_point": "Hatzelhoffer, Lena", "biographical_information": ["Spécialiste d'urbanisme"]} 1 +2024-09-11 09:05:05.663329 2024-09-11 09:05:05.663337 3743583a-bd7b-48f3-aadd-98fa5df0813c {"md5": "2a2fa57a7d6ac9c670ff42762b984631", "pid": "164855580", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ukr"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/164855580", "source": "IDREF"}], "variant_name": ["Одеський національний університет імені І. І. Мечникова (Ukraine)", "Odessa State University (Ukraine)", "Université d'Etat d'Odessa (Ukraine)", "Universitas nationalis Odessae", "ОНУ (Ukraine)", "ONU (Ukraine)", "Мiнiстерство освiти i науки Украïни. Одеський державний університет (Ukraine)", "Ministerstvo osviti i nauki Ukraïni. Odesʹkij deržavnij uníversitet (Ukraine)", "Министерство образования и науки Украины. Одесский государственный университет (Ukraine)", "Ministerstvo obrazovaniâ i nauki Ukrainy. Odesskij gosudarstvennyj universitet (Ukraine)", "Одесский государственный университет (Ukraine)", "Odesskij gosudarstvennyj universitet (Ukraine)"], "preferred_name": "Odesʹkij nacíonalʹnij uníversitet ímení Í. Í. Mečnikova (Ukraine)", "country_associated": "un", "variant_access_point": ["Odessa State University (Ukraine)", "Université d'Etat d'Odessa (Ukraine)", "Universitas nationalis Odessae", "ОНУ (Ukraine)", "ONU (Ukraine)", "Мiнiстерство освiти i науки Украïни. Одеський державний університет (Ukraine)", "Ministerstvo osviti i nauki Ukraïni. Odesʹkij deržavnij uníversitet (Ukraine)", "Министерство образования и науки Украины. Одесский государственный университет (Ukraine)", "Ministerstvo obrazovaniâ i nauki Ukrainy. Odesskij gosudarstvennyj universitet (Ukraine)", "Одесский государственный университет (Ukraine)", "Odesskij gosudarstvennyj universitet (Ukraine)"], "date_of_establishment": "1865-05-13", "authorized_access_point": "Odesʹkij nacíonalʹnij uníversitet ímení Í. Í. Mečnikova (Ukraine)", "biographical_information": ["Adresse : вул. Дворянська, 2, Одеса, 65082, Україна"]} 1 +2024-09-11 09:05:05.730916 2024-09-11 09:05:05.73092 34383c49-9d96-4bef-b6cf-e72375cb6e70 {"md5": "0a68f9381b186e3fe27aa9205afe2186", "pid": "164948368", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/164948368", "source": "IDREF"}], "variant_name": ["Львов, С.В."], "preferred_name": "Lʹvov, S.V.", "country_associated": "ru", "variant_access_point": ["Львов, С.В."], "authorized_access_point": "Lʹvov, S.V."} 1 +2024-09-11 09:05:05.79743 2024-09-11 09:05:05.797436 b3949248-c273-433d-af21-39848d39263a {"md5": "dc71a7d7963afbb7a8d991734d42dd66", "pid": "165030968", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fin", "eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/165030968", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Sipilä, Jorma", "country_associated": "fi", "authorized_access_point": "Sipilä, Jorma, 19..-....", "biographical_information": ["Professeur à l'Université de Tempere (Finlande). Spécialiste de la politique sociale et du travail social. Professeur émérite en 2012"]} 1 +2024-09-11 09:05:05.862134 2024-09-11 09:05:05.862139 c80fc5c9-f76d-4466-a800-210ea7e685a2 {"md5": "23d894a254a7426b40c86c7e0c9fa572", "pid": "165099054", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/165099054", "source": "IDREF"}], "variant_name": ["藤井, 信幸"], "date_of_birth": "1956", "preferred_name": "Fujii, Nobuyuki", "country_associated": "ja", "variant_access_point": ["藤井, 信幸, 1956-...."], "authorized_access_point": "Fujii, Nobuyuki, 1956-....", "biographical_information": ["Historien, spécialiste de l'histoire contemporaine à l'Université de Waseda"]} 1 +2024-09-11 09:05:05.929032 2024-09-11 09:05:05.929036 b71fff0e-8a89-44ed-a466-0709cbdb8b15 {"md5": "f4533b7a76e16691e975bc7fed6e9059", "pid": "165139455", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/165139455", "source": "IDREF"}], "variant_name": ["Aoki Kazuko", "青木 和子", "Kazuko Aoki"], "date_of_birth": "1953", "preferred_name": "Aoki, Kazuko", "country_associated": "ja", "variant_access_point": ["Aoki Kazuko", "青木 和子", "Kazuko Aoki"], "parallel_access_point": ["青木, 和子, 1953-...."], "authorized_access_point": "Aoki, Kazuko, 1953-....", "biographical_information": ["Brodeuse, créatrice de modèles de broderie"]} 1 +2024-09-11 09:05:05.994026 2024-09-11 09:05:05.994029 4d196216-70c0-4e54-b606-8a6406dce584 {"md5": "9e598302845a2f491399b44a217a7d39", "pid": "165153687", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/165153687", "source": "IDREF"}], "preferred_name": "Peske, Nancy K.", "country_associated": "xxu", "authorized_access_point": "Peske, Nancy K."} 1 +2024-09-11 09:05:06.061521 2024-09-11 09:05:06.061526 68c452bd-a74f-4cac-bb69-af45341eac1e {"md5": "b0805b8ccca2ad0ddb2059c044fecb37", "pid": "16530569X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["kor", "eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/16530569X", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Nam, Sŭng-ho", "country_associated": "ko", "authorized_access_point": "Nam, Sŭng-ho, 19..-...."} 1 +2024-09-11 09:05:06.128045 2024-09-11 09:05:06.12805 4cf9180d-6b0e-4d83-9f1e-3a74e4bdb3c6 {"md5": "deb11978e65742935a476b9622a754f4", "pid": "165425229", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/165425229", "source": "IDREF"}], "variant_name": ["University of Tokyo. Earthquake research institute"], "preferred_name": "Earthquake research institute (Tokyo)", "country_associated": "ja", "variant_access_point": ["University of Tokyo. Earthquake research institute"], "date_of_establishment": "1925", "authorized_access_point": "Earthquake research institute (Tokyo)"} 1 +2024-09-11 09:05:06.190692 2024-09-11 09:05:06.190695 59c525de-48af-4f0f-b352-601ab3db5a8b {"md5": "e5aa63d02cd6fa3298609840269f0ff4", "pid": "165647876", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/165647876", "source": "IDREF"}], "preferred_name": "Dombibliothek St. Nikolai (Greifswald, Allemagne)", "country_associated": "gw", "authorized_access_point": "Dombibliothek St. Nikolai (Greifswald, Allemagne)"} 1 +2024-09-11 09:05:06.251562 2024-09-11 09:05:06.251567 05abdbff-ee8a-49c7-b4a4-003f1afa4fe4 {"md5": "ad01adaaa326b87f90edc68093048feb", "pid": "165825324", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/165825324", "source": "IDREF"}], "variant_name": ["New power"], "preferred_name": "Zona marginal", "country_associated": "xxu", "variant_access_point": ["New power"], "date_of_establishment": "1995", "authorized_access_point": "Zona marginal", "biographical_information": ["Groupe vocal et instrumental latino"]} 1 +2024-09-11 09:05:06.385022 2024-09-11 09:05:06.385028 b4fc724b-e99c-40f6-b469-70302eaa6fb0 {"md5": "8131448c3fc2c89e6090654beeb552f8", "pid": "165842822", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/165842822", "source": "IDREF"}], "preferred_name": "Steen, Walter", "country_associated": "gw", "authorized_access_point": "Steen, Walter", "biographical_information": ["Traduit du russe en allemand"]} 1 +2024-09-11 09:05:08.072466 2024-09-11 09:05:08.072472 4188e03e-2922-4055-b0bf-b59a19783640 {"md5": "f12628c158d22cb087506b5bb443d49e", "pid": "168647567", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/168647567", "source": "IDREF"}], "preferred_name": "Gallahue, David L.", "country_associated": "xxu", "authorized_access_point": "Gallahue, David L."} 1 +2024-09-11 09:05:06.46465 2024-09-11 09:05:06.464654 fb4bb942-b955-4e52-8a54-1e904840b15d {"md5": "64d04682842431f8ffb670f9fb85d2d8", "pid": "165846771", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/165846771", "source": "IDREF"}], "variant_name": ["CERCEC", "Ecole des hautes études en sciences sociales (Paris). Centre d'études des mondes russe, caucasien et centre-européen"], "preferred_name": "Centre d'études des mondes russe, caucasien et centre-européen (Paris)", "country_associated": "fr", "variant_access_point": ["CERCEC", "Ecole des hautes études en sciences sociales (Paris). Centre d'études des mondes russe, caucasien et centre-européen"], "date_of_establishment": "2005", "parallel_access_point": ["Центр исследований России, Кавказа и Центральной Европы", "Centr issledovanij Rossii, Kavkaza i Centralʹnoj Evropy"], "authorized_access_point": "Centre d'études des mondes russe, caucasien et centre-européen (Paris)"} 1 +2024-09-11 09:05:06.534669 2024-09-11 09:05:06.534672 6a936501-6d39-4944-9d81-b37e31a1cbf8 {"md5": "4f4bdedef107f67b959abd4b20556f9c", "pid": "166452912", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/166452912", "source": "IDREF"}], "variant_name": ["AFRELOCE", "Association française de recherches sur les livres et objets culturels de l'enfance"], "preferred_name": "Association française de recherche sur les livres et objets culturels de l'enfance", "country_associated": "fr", "variant_access_point": ["AFRELOCE", "Association française de recherches sur les livres et objets culturels de l'enfance"], "authorized_access_point": "Association française de recherche sur les livres et objets culturels de l'enfance", "biographical_information": ["Adresse : Université Paris 13, UFR LSHS ; 99 avenue J.B. Clément, 93140 Villetaneuse"]} 1 +2024-09-11 09:05:06.631459 2024-09-11 09:05:06.631465 3b66b15f-a003-41c3-822f-96c98a2ea84f {"md5": "4e613313f2e7c50b506b2b5f85190dca", "pid": "166452955", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/166452955", "source": "IDREF"}], "preferred_name": "Witte, Siegfried", "country_associated": "gw", "authorized_access_point": "Witte, Siegfried", "biographical_information": ["Auteur d'un ouvrage sur la greffe de moëlle osseuse"]} 1 +2024-09-11 09:05:06.726659 2024-09-11 09:05:06.726664 83fa2598-50a3-4027-bfbb-9d7b72980fb3 {"md5": "73fb8a6d2a16961bd5f16b58411e00bf", "pid": "16647729X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/16647729X", "source": "IDREF"}], "variant_name": ["Fondation pour l'enfance. SOS enfants disparus", "Institut national d'aide aux victimes et de médiation (France). SOS enfants disparus"], "preferred_name": "SOS enfants disparus (France)", "country_associated": "fr", "variant_access_point": ["Fondation pour l'enfance. SOS enfants disparus", "Institut national d'aide aux victimes et de médiation (France). SOS enfants disparus"], "date_of_establishment": "2004-10", "authorized_access_point": "SOS enfants disparus (France)", "biographical_information": ["La Fondation pour l’enfance et l’Institut national d’aide aux victimes ont été mises en commun pour créer le dispositif SOS enfants disparus. - Service gratuit d’accompagnement des familles ayant un enfant disparu"]} 1 +2024-09-11 09:05:06.806666 2024-09-11 09:05:06.80667 ccd1bf39-170f-4428-a75f-406bed448d3d {"md5": "f64601984c8539d2cb1e1f274817bf1a", "pid": "166533971", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/166533971", "source": "IDREF"}], "variant_name": ["智山勧学会", "Chisan Kangakkai"], "preferred_name": "Chisan Kangakukai", "country_associated": "ja", "variant_access_point": ["Chisan Kangakkai"], "authorized_access_point": "Chisan Kangakukai", "biographical_information": ["Transcription Hepburn modifié"]} 1 +2024-09-11 09:05:06.864357 2024-09-11 09:05:06.864361 b579007c-dd17-4e33-ac48-05035a186234 {"md5": "59b1f786b7ad5233d178d62f9c78d785", "pid": "166601551", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/166601551", "source": "IDREF"}], "date_of_birth": "15", "date_of_death": "1607", "preferred_name": "Cortesi, Cortese", "country_associated": "it", "authorized_access_point": "Cortesi, Cortese, 15..?-1617"} 1 +2024-09-11 09:05:06.933844 2024-09-11 09:05:06.933848 864fea31-73ec-42c5-a121-4a9ccb9c8356 {"md5": "c29a78a25f48943e4c199b4b56cea605", "pid": "166827886", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/166827886", "source": "IDREF"}], "variant_name": ["Grand orchestre Odéon (Paris)"], "preferred_name": "Orchestre Odéon (Paris)", "country_associated": "fr", "variant_access_point": ["Grand orchestre Odéon (Paris)"], "authorized_access_point": "Orchestre Odéon (Paris)"} 1 +2024-09-11 09:05:06.990563 2024-09-11 09:05:06.990567 69650aa4-448c-48d8-9ea2-4d02c1b4c741 {"md5": "e66528ac358ec4cb14976b4136698e34", "pid": "167143565", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/167143565", "source": "IDREF"}], "variant_name": ["Banks, Anthony"], "date_of_birth": "1950-03-27", "preferred_name": "Banks, Tony", "country_associated": "xxk", "variant_access_point": ["Banks, Anthony"], "authorized_access_point": "Banks, Tony, 1950-....", "biographical_information": ["Claviériste, guitariste et bassiste de pop music. - Prénoms complets : Anthony George", "Lieu de naissance East Heathly (GB)"]} 1 +2024-09-11 09:05:07.062758 2024-09-11 09:05:07.062761 9eb429b7-5160-431d-a6de-71f8bd690262 {"md5": "6d44459c2929ffc5a6d227cabefcf8bf", "pid": "167149369", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/167149369", "source": "IDREF"}], "preferred_name": "Centro Cultural Arte Contemporaneo (México)", "country_associated": "mx", "date_of_establishment": "1986", "authorized_access_point": "Centro Cultural Arte Contemporaneo (México)"} 1 +2024-09-11 09:05:07.122557 2024-09-11 09:05:07.122561 5a737b7e-7eb4-4d41-96a1-036971114924 {"md5": "65bee9cae9a60ed1d630cae9dce39f25", "pid": "167228862", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "deleted": "2023-07-08T10:23:44.366911+00:00", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/167228862", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Chaoui-Derieux, Dorothée", "country_associated": "fr", "authorized_access_point": "Chaoui-Derieux, Dorothée, 19..-....", "biographical_information": ["Archéologue. Ministère de la Culture, Service régional de l'archéologie (SRA)", "Conservateur en chef du patrimoine au service régional de l'archéologie de la direction régionale des affaires culturelles d'Île-de-France (en 2023)"]} 1 +2024-09-11 09:05:07.258882 2024-09-11 09:05:07.258886 f4afb833-c545-42cc-93b2-2be41ae43f85 {"md5": "e86f1383c6a6ae10707c885261ebe7a9", "pid": "16737740X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["hin"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/16737740X", "source": "IDREF"}], "preferred_name": "Prapanna, Vandana", "country_associated": "ii", "authorized_access_point": "Prapanna, Vandana", "biographical_information": ["Historienne de l'art (en 2002)"]} 1 +2024-09-11 09:05:07.324416 2024-09-11 09:05:07.324419 4b99b9c4-7d05-40aa-989b-d03b209fce29 {"md5": "731a16aa238e0790d45f36771763664d", "pid": "16746499X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/16746499X", "source": "IDREF"}], "date_of_birth": "1981", "preferred_name": "Kömürcü, Cem", "country_associated": "xx", "authorized_access_point": "Kömürcü, Cem, 1981-...."} 1 +2024-09-11 09:05:07.381455 2024-09-11 09:05:07.381459 ff6687ca-c1b6-4a71-b78a-093570f5bdc6 {"md5": "d4891215e48dff3e86e1c6983863a008", "pid": "167467549", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/167467549", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Reynolds, Catherine", "country_associated": "xx", "authorized_access_point": "Reynolds, Catherine, 19..-...."} 1 +2024-09-11 09:05:07.450109 2024-09-11 09:05:07.450114 b7fd6797-09a2-4479-aa80-5ac12ce098b4 {"md5": "a8a46cbb9f6a18444d93b2286dad65c7", "pid": "167597213", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/167597213", "source": "IDREF"}], "variant_name": ["Blom, Paul"], "preferred_name": "Blom, Paul W.", "country_associated": "ne", "variant_access_point": ["Blom, Paul"], "authorized_access_point": "Blom, Paul W.", "biographical_information": ["Spécialiste de l'histoire du théâtre et du cabaret aux Pays-Bas ; dirige le Nederlands Theater Instituut Amsterdam"]} 1 +2024-09-11 09:05:07.512113 2024-09-11 09:05:07.512117 aac87924-8a16-4e2c-ae58-671a17e0ecfb {"md5": "21a13236bd1b55653347ea0541a30667", "pid": "167843052", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["pol"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/167843052", "source": "IDREF"}], "preferred_name": "Zbierski, Andrzej", "country_associated": "pl", "authorized_access_point": "Zbierski, Andrzej"} 1 +2024-09-11 09:05:07.581737 2024-09-11 09:05:07.581742 80501c5c-02fc-432b-ade8-8a4c5a9b43b3 {"md5": "31c487fa71804db9e48be0657a136751", "pid": "167900587", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/167900587", "source": "IDREF"}], "preferred_name": "Marquis, Jean-François", "authorized_access_point": "Marquis, Jean-François"} 1 +2024-09-11 09:05:07.659222 2024-09-11 09:05:07.659227 07662948-4c41-41c6-9d70-8ce0e2c6cb95 {"md5": "a799c25e3097c3f0fc11be5a698908d3", "pid": "167901842", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/167901842", "source": "IDREF"}], "date_of_birth": "1975", "preferred_name": "Jarvis, Mark D.", "country_associated": "xxc", "authorized_access_point": "Jarvis, Mark D., 1975-...."} 1 +2024-09-11 09:05:07.722496 2024-09-11 09:05:07.722499 914c5877-3490-4ba8-ba88-73b9bb8e7b93 {"md5": "857cc8027efed77160aa1b365aae361e", "pid": "167994689", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/167994689", "source": "IDREF"}], "variant_name": ["HSO", "Helsingborg symphony orchestra", "Orchestre symphonique d'Helsingborg"], "preferred_name": "Helsingborgs Symfoniorkester", "country_associated": "dk", "variant_access_point": ["HSO", "Helsingborg symphony orchestra", "Orchestre symphonique d'Helsingborg"], "date_of_establishment": "1912", "authorized_access_point": "Helsingborgs Symfoniorkester", "biographical_information": ["Adresse : Konserthuse, Drottninggatan 19, SE-252 21 Helsingborg. Contact : 042.10.42.70. Télécopie : 042.12.31.97. Adresse électronique : mona.wikstrom@helsingborg.se", "Lidner, Olof, chef d'orchestre (1912-1939). Frykberg, Sten, chef d'orchestre (1939-1945). Eichwald, Hokan von, chef d'orchestre (1945-1959). Axelson, Sten-Åke, chef d'orchestre (1962-1967). Frandsen, John, chef d'orchestre (1969-1980). Frank, Hans-Peter, chef d'orchestre (1980-1990). Kamu, Okko, chef d'orchestre (1991-1999). Lintu, Hannu, chef d'orchestre (1999-2005). Manze, Andrew, chef d'orchestre (2006-....)"]} 1 +2024-09-11 09:05:07.803129 2024-09-11 09:05:07.803132 c43609c2-3666-4cd5-8248-38e83b9060d0 {"md5": "0c310e3b83ce9cc653e2f5d2f5751097", "pid": "168060973", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["cze"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/168060973", "source": "IDREF"}], "date_of_birth": "1980", "preferred_name": "Lhoťan, Lukáš", "authorized_access_point": "Lhoťan, Lukáš, 1980-..."} 1 +2024-09-11 09:05:07.882216 2024-09-11 09:05:07.882221 a975368b-213d-4cd3-aaeb-b8a6a83bf11a {"md5": "573f5e26dfd4c6ca59dc0ec280e83093", "pid": "168391996", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/168391996", "source": "IDREF"}], "date_of_birth": "1977", "preferred_name": "Scifo, Marco Maria Giuseppe", "country_associated": "it", "authorized_access_point": "Scifo, Marco Maria Giuseppe, 1977-....", "biographical_information": ["Artiste né à Augusta, Italie"]} 1 +2024-09-11 09:05:07.948977 2024-09-11 09:05:07.948981 3670b4ae-ab2f-4834-a6c2-63b63d2bae48 {"md5": "fad2196c247e9bf120af97793f845b24", "pid": "168510332", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/168510332", "source": "IDREF"}], "variant_name": ["Technische Hogeschool te Enschede", "Twente Institute of Technology", "Technical University of Twente", "Twente University of Technology"], "preferred_name": "Technische Hogeschool Twente (Enschede)", "country_associated": "ne", "variant_access_point": ["Technische Hogeschool te Enschede", "Twente Institute of Technology", "Technical University of Twente", "Twente University of Technology"], "authorized_access_point": "Technische Hogeschool Twente (Enschede)"} 1 +2024-09-11 09:05:08.006875 2024-09-11 09:05:08.006879 c3ed60b8-1ecc-49c7-8258-df896ef27f0e {"md5": "e68ee986de621b9a6d645d8eeab88a2b", "pid": "168633248", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/168633248", "source": "IDREF"}], "date_of_birth": "1948", "preferred_name": "Martin, Lee-Ann", "country_associated": "xx", "authorized_access_point": "Martin, Lee-Ann, 1948-....", "biographical_information": ["Conservatrice de l'art amérindien, Musée canadien des civilisations, Ottawa (en 1992)"]} 1 +2024-09-11 09:05:08.141907 2024-09-11 09:05:08.141911 2910d71d-6856-42ff-b43f-d27ebce9a20c {"md5": "d711104236d52df20f523b94422f4432", "pid": "168676761", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/168676761", "source": "IDREF"}], "variant_name": ["Chanoinesses régulières de l'ordre du Saint-Sépulcre de Jérusalem", "Chanoinesses régulières du Saint-Sépulchre de Jérusalem", "Chanoinesses régulières du Saint-Sépulcre de Notre-Seigneur en Jérusalem", "Ordre du Saint-Sépulcre de Jérusalem. Chanoinesses régulières", "Sépulcrines"], "preferred_name": "Chanoinesses régulières du Saint-Sépulcre de Jérusalem", "date_of_termination": "11XX", "variant_access_point": ["Chanoinesses régulières de l'ordre du Saint-Sépulcre de Jérusalem", "Chanoinesses régulières du Saint-Sépulchre de Jérusalem", "Chanoinesses régulières du Saint-Sépulcre de Notre-Seigneur en Jérusalem", "Ordre du Saint-Sépulcre de Jérusalem. Chanoinesses régulières", "Sépulcrines"], "date_of_establishment": "11XX", "authorized_access_point": "Chanoinesses régulières du Saint-Sépulcre de Jérusalem", "biographical_information": ["L'ordre du Saint-Sépulcre fut fondé vers 1099 par Godefroy de Bouillon pour l'aide aux pèlerins en Terre Sainte et la protection du Saint Sépulcre. Au XIIIe siècle, près de 2000 maisons de l'ordre étaient déjà ouvertes en Europe, et parmis elles, le chapitre de Mont-Saint-Odile-les-Ruremonde, en Hollande, qui avait créé le monastère des chanoinesses de Kinroi, origine de toutes les communautés de Sépulcrines. Elles restèrent sous l'autorité du grand-maître de l'ordre. En 1999, 416 moniales étaient réparties dans 29 maisons"]} 1 +2024-09-11 09:05:08.216245 2024-09-11 09:05:08.21625 23e9ae6a-aa56-4cd7-bf3a-79f3cd130d5b {"md5": "18cd359b449856f695aa0d2cdc7efb13", "pid": "168926962", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/168926962", "source": "IDREF"}], "preferred_name": "Combray, Richard de", "country_associated": "fr", "authorized_access_point": "Combray, Richard de", "biographical_information": ["Photographe"]} 1 +2024-09-11 09:05:08.271444 2024-09-11 09:05:08.27145 2ecac712-cb14-4e23-8b74-89b75a0c937c {"md5": "28f46d37aadd6599325f271e0d8fe1dc", "pid": "168968614", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/168968614", "source": "IDREF"}], "preferred_name": "Gagnier, Serge", "country_associated": "xxc", "authorized_access_point": "Gagnier, Serge", "biographical_information": ["Auteur pour la jeunesse"]} 1 +2024-09-11 09:05:08.339208 2024-09-11 09:05:08.339212 57a17565-f058-4b45-9077-3e2ab1f63a66 {"md5": "a91d495ec13a4dd2c34a66bf80155bdc", "pid": "169159914", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/169159914", "source": "IDREF"}], "preferred_name": "Metrick-Chen, Lenore", "country_associated": "xxu", "authorized_access_point": "Metrick-Chen, Lenore", "biographical_information": ["Professeur adjoint en histoire d'art à Drake University, Des Moines, Iowa, USA (2012)"]} 1 +2024-09-11 09:05:08.395892 2024-09-11 09:05:08.395897 0dac0027-e044-4b2b-a44e-320cfd597a1e {"md5": "c53a3b28cf0b45e9bd36b99e70de05cb", "pid": "169352501", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["chi"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/169352501", "source": "IDREF"}], "variant_name": ["Faculty of architecture"], "preferred_name": "University of Hong Kong. Faculty of architecture", "variant_access_point": ["Faculty of architecture"], "authorized_access_point": "University of Hong Kong. Faculty of architecture"} 1 +2024-09-11 09:05:08.455939 2024-09-11 09:05:08.455942 4116d57d-6163-42b3-a9b4-5d239d3ca27d {"md5": "f7eebc414fd36a9a94079a54d47b052c", "pid": "169383695", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/169383695", "source": "IDREF"}], "preferred_name": "Modern critical theory group (GB)", "country_associated": "xxk", "authorized_access_point": "Modern critical theory group (GB)", "biographical_information": ["Adresse : Cambridge"]} 1 +2024-09-11 09:05:08.520984 2024-09-11 09:05:08.520991 013a349c-c089-4f8a-a0b0-238ba196a53b {"md5": "d3ff9519453f7ea9688399bcc25c7942", "pid": "16961834X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/16961834X", "source": "IDREF"}], "date_of_birth": "1967", "preferred_name": "Sousa, Lúcio", "country_associated": "bl", "authorized_access_point": "Sousa, Lúcio, 1967-...."} 1 +2024-09-11 09:05:08.603218 2024-09-11 09:05:08.603225 07be70d2-162c-4de6-9bb1-40cb65234c4e {"md5": "be50df603d57eae155ce1241deb57f19", "pid": "169818098", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/169818098", "source": "IDREF"}], "preferred_name": "McCarthy, Rebecca Lea", "authorized_access_point": "McCarthy, Rebecca Lea"} 1 +2024-09-11 09:05:08.678332 2024-09-11 09:05:08.678336 27987cde-d247-4fc1-a66d-2836dea63756 {"md5": "62f73045a0ad3a9980fab011eef7aa17", "pid": "169852253", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/169852253", "source": "IDREF"}], "preferred_name": "Kale, Vivek", "country_associated": "xx", "authorized_access_point": "Kale, Vivek"} 1 +2024-09-11 09:05:08.740981 2024-09-11 09:05:08.740985 0d67fc63-6bbc-415b-bea1-da9d456832c8 {"md5": "07f3e5897bbf29445ed227215d11dbb2", "pid": "169905187", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/169905187", "source": "IDREF"}], "preferred_name": "Kalb, Luigi", "country_associated": "it", "authorized_access_point": "Kalb, Luigi", "biographical_information": ["Juriste"]} 1 +2024-09-11 09:05:08.815287 2024-09-11 09:05:08.815292 e8123d50-fe61-46e3-b721-7af020737da4 {"md5": "128ba00fe262efd8d594c4f77a4be1b7", "pid": "17000404X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/17000404X", "source": "IDREF"}], "preferred_name": "Burakowska, Barbara", "country_associated": "fr", "authorized_access_point": "Burakowska, Barbara"} 1 +2024-09-11 09:05:08.875485 2024-09-11 09:05:08.875489 8775b307-ad32-4d89-b472-9b2e5f4af29a {"md5": "b2820dc5559b8c4683211e1050b4a43c", "pid": "170042650", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/170042650", "source": "IDREF"}], "variant_name": ["Codrington, O."], "date_of_death": "1921", "preferred_name": "Codrington, Oliver", "country_associated": "xx", "variant_access_point": ["Codrington, O."], "authorized_access_point": "Codrington, Oliver, ....-1921"} 1 +2024-09-11 09:05:08.942801 2024-09-11 09:05:08.942804 25daf70d-fc09-463a-a2da-c0bb33cc31f9 {"md5": "52b4d47f13959242d62086e64b054a07", "pid": "170128687", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/170128687", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Luard, Honey", "country_associated": "xxk", "authorized_access_point": "Luard, Honey, 19..-....", "biographical_information": ["Directrice de publication. Spécialiste d'art"]} 1 +2024-09-11 09:05:09.00816 2024-09-11 09:05:09.008165 859cf7a9-0ef4-4ad5-8226-252d701d4539 {"md5": "1672a6f6510886cba2ca53700e76e6fb", "pid": "170276708", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/170276708", "source": "IDREF"}], "variant_name": ["Степанченко, Иван Иванович", "Stepancenko, Ivan Ivanovic", "Stepanchenko, Ivan Ivanovich"], "preferred_name": "Stepančenko, Ivan Ivanovič", "country_associated": "ru", "variant_access_point": ["Stepancenko, Ivan Ivanovic", "Stepanchenko, Ivan Ivanovich"], "authorized_access_point": "Stepančenko, Ivan Ivanovič"} 1 +2024-09-11 09:05:09.06837 2024-09-11 09:05:09.068376 052849c9-5641-44c2-b077-75126140d3ee {"md5": "9491d7db09495da9a854f39fdf05ca02", "pid": "170444368", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/170444368", "source": "IDREF"}], "variant_name": ["EBA (Lyon)", "ENSBA (Lyon)", "ENSB-A (Lyon)", "École des beaux-arts (Lyon)", "École nationale et spéciale des beaux-arts (Lyon)"], "preferred_name": "École nationale supérieure des beaux-arts (Lyon)", "country_associated": "fr", "variant_access_point": ["EBA (Lyon)", "ENSBA (Lyon)", "ENSB-A (Lyon)", "École des beaux-arts (Lyon)", "École nationale et spéciale des beaux-arts (Lyon)"], "date_of_establishment": "1756", "authorized_access_point": "École nationale supérieure des beaux-arts (Lyon)"} 1 +2024-09-11 09:05:09.169449 2024-09-11 09:05:09.169456 580ea0af-5515-4596-b40d-ca10cdbab3ba {"md5": "863a0649e0c773f7aac9551003a249a6", "pid": "170457257", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/170457257", "source": "IDREF"}], "preferred_name": "Stras, Laurie", "country_associated": "xxk", "authorized_access_point": "Stras, Laurie", "biographical_information": ["Auteur d'un ouvrage sur la musique populaire américaine et enseignante à l'Université de Southampton (2012)"]} 1 +2024-09-11 09:05:09.235237 2024-09-11 09:05:09.235242 88c4860e-7bd1-4354-8486-eea623d1f697 {"md5": "5fdb440f56614f256bac6ff2542b0a44", "pid": "170479862", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/170479862", "source": "IDREF"}], "preferred_name": "Hotel de Mar (Majorque)", "country_associated": "sp", "authorized_access_point": "Hotel de Mar (Majorque)", "biographical_information": ["Construit par José Antonio Coderch de Sentmenat"]} 1 +2024-09-11 09:05:09.294427 2024-09-11 09:05:09.29443 ee433b62-274f-42bd-8de8-4bce00d8a3be {"md5": "e35eab891d7108ae3969cac60c11763f", "pid": "170696413", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/170696413", "source": "IDREF"}], "variant_name": ["De Oviedo, Gabriel"], "date_of_birth": "15", "date_of_death": "15?", "preferred_name": "Oviedo, Gabriel de", "country_associated": "pe", "variant_access_point": ["De Oviedo, Gabriel"], "authorized_access_point": "Oviedo, Gabriel de, 15..-15..?", "biographical_information": ["Prieur au couvent de Santo Domingo, Cuzco, Pérou (en 1573)"]} 1 +2024-09-11 09:05:09.361597 2024-09-11 09:05:09.361601 29fa5ff3-8be6-404e-bebc-9c43c663ee90 {"md5": "7cd4954db8a414a8552a8aa13af4cf33", "pid": "170792188", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/170792188", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Cuaz, Bruno", "country_associated": "fr", "authorized_access_point": "Cuaz, Bruno, 19..-....", "biographical_information": ["Journaliste sportif (chaîne Eurosport et \\"Tennis Magazine\\")"]} 1 +2024-09-11 09:05:09.430585 2024-09-11 09:05:09.430588 718b167b-f98a-4965-8402-f0d9d92eba44 {"md5": "8d851bd96731b1739ce1b9069378e954", "pid": "170798828", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "qualifier": "baron Oriel", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/170798828", "source": "IDREF"}], "variant_name": ["Oriel, John Foster, baron"], "date_of_birth": "1740", "date_of_death": "1828-08-23", "preferred_name": "Foster, John, baron Oriel", "variant_access_point": ["Oriel, John Foster, baron"], "authorized_access_point": "Foster, John, 1740-1828, baron Oriel", "biographical_information": ["Noble, homme politique"]} 1 +2024-09-11 09:05:09.490447 2024-09-11 09:05:09.490451 96134288-dd1f-4687-9000-71bb4a246f64 {"md5": "a7597ea6c5481cae68e556a6e47ec549", "pid": "170804291", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/170804291", "source": "IDREF"}], "preferred_name": "Apicella, Vincenzo", "country_associated": "it", "authorized_access_point": "Apicella, Vincenzo", "biographical_information": ["En poste au Ministero Partecipazioni Stafali, Rome"]} 1 +2024-09-11 09:05:09.551777 2024-09-11 09:05:09.551781 d01f8a38-d836-4b84-91e0-8b80b54cd7da {"md5": "ad0e79f04ff0f50039239afad9ce0492", "pid": "171073444", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/171073444", "source": "IDREF"}], "variant_name": ["Università di Padova. Dipartimento di archeologia", "Università di Padova. Dipartimento di storia dell'arte", "Università di Padova. Dipartimento del cinema e della musica", "Università degli studi di Padova. Dipartimento di archeologia", "Università degli studi di Padova. Dipartimento di storia dell'arte", "Università degli studi di Padova. Dipartimento del cinema e della musica"], "preferred_name": "Università degli studi (Padoue, Italie). Dipartimento dei beni culturali", "country_associated": "it", "variant_access_point": ["Università di Padova. Dipartimento di archeologia", "Università di Padova. Dipartimento di storia dell'arte", "Università di Padova. Dipartimento del cinema e della musica", "Università degli studi di Padova. Dipartimento di archeologia", "Università degli studi di Padova. Dipartimento di storia dell'arte", "Università degli studi di Padova. Dipartimento del cinema e della musica"], "authorized_access_point": "Università degli studi (Padoue, Italie). Dipartimento dei beni culturali"} 1 +2024-09-11 09:05:27.085584 2024-09-11 09:05:27.085588 10296c7c-0bdd-489c-a60d-1a622b87d236 {"md5": "89eddc2888972116bd15642ed4647d0c", "pid": "200723421", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/200723421", "source": "IDREF"}], "preferred_name": "Kielosto, Sakari", "authorized_access_point": "Kielosto, Sakari", "biographical_information": ["Géologue"]} 1 +2024-09-11 09:05:09.604047 2024-09-11 09:05:09.604052 7acea2fa-8c1c-40ab-b51b-3931fd16988a {"md5": "4affde2091c6c0b1bff168b41136144b", "pid": "171330943", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/171330943", "source": "IDREF"}], "preferred_name": "Kozłowski, Ryszard M.", "country_associated": "pl", "authorized_access_point": "Kozłowski, Ryszard M.", "biographical_information": ["Spécialiste des fibres naturelles"]} 1 +2024-09-11 09:05:09.658708 2024-09-11 09:05:09.658713 b53943f6-e2d9-401c-8929-d22d2e446dc8 {"md5": "eb4be9f09c83d510aaeff746138971ed", "pid": "17141599X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/17141599X", "source": "IDREF"}], "variant_name": ["Wolfe, James P.", "Wolfe, J. P."], "date_of_birth": "1943", "preferred_name": "Wolfe, James Philip", "variant_access_point": ["Wolfe, James P.", "Wolfe, J. P."], "authorized_access_point": "Wolfe, James Philip, 1943-...."} 1 +2024-09-11 09:05:09.713827 2024-09-11 09:05:09.71383 f42f61bd-24d4-4155-a9e1-0b71177ad223 {"md5": "aa037ccffedd7c0ebfb8c871ac8a1a05", "pid": "171790944", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/171790944", "source": "IDREF"}], "date_of_birth": "1975", "preferred_name": "Alemazung, Joy Asongazoh", "authorized_access_point": "Alemazung, Joy Asongazoh, 1975-....", "biographical_information": ["A senior analyst in the Peace and Security section of the Global Governance Institute in Brussels, focusing on state transformation and good governance in Sub-Saharan Africa. He holds a double MA in Political Science and Sociology from the University of Erlangen-Nuremberg and PhD in Political Science from the University of Kiel."]} 1 +2024-09-11 09:05:09.76577 2024-09-11 09:05:09.765773 c1fa717c-f9f0-4c2b-8c06-60c4e338553a {"md5": "ed786958eb27bd964bfcfd336913a59d", "pid": "171811534", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/171811534", "source": "IDREF"}], "date_of_birth": "1936", "preferred_name": "Ridington, Jillian", "country_associated": "xxc", "authorized_access_point": "Ridington, Jillian, 1936-...."} 1 +2024-09-11 09:05:09.822077 2024-09-11 09:05:09.822082 d59423d6-e351-4c7f-8c21-7bedfc72dddc {"md5": "76b5095bd84e05bb3a8f1847608a879d", "pid": "172309239", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/172309239", "source": "IDREF"}], "variant_name": ["Arizcuren Escuhra, Elias"], "date_of_birth": "19XX", "preferred_name": "Arizcuren, Elias", "country_associated": "sp", "variant_access_point": ["Arizcuren Escuhra, Elias"], "authorized_access_point": "Arizcuren, Elias, 19..-....", "biographical_information": ["Violoncelliste et chef d'orchestre. Membre et fondateur du Cello octet conjunto Ibérico et du trio Mendelssohn"]} 1 +2024-09-11 09:05:09.879864 2024-09-11 09:05:09.879869 15bacd28-cb17-45ef-8d04-31ddb22564ed {"md5": "70adaa711997fc13395172b6e8645053", "pid": "172595347", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ukr"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/172595347", "source": "IDREF"}], "variant_name": ["Кочан, Ирина Миколаївна", "Кочан, И. М.", "Kočan, I. M."], "date_of_birth": "1949", "preferred_name": "Kočan, Irina Mikolaїvna", "country_associated": "un", "variant_access_point": ["Кочан, И. М.", "Kočan, I. M."], "authorized_access_point": "Kočan, Irina Mikolaїvna, 1949-....", "biographical_information": ["Linguiste"]} 1 +2024-09-11 09:05:09.931661 2024-09-11 09:05:09.931664 64030c03-8898-4d13-97f4-a7a32490ba0d {"md5": "5ceccb4d728092c007cc4878f89d6946", "pid": "172735319", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/172735319", "source": "IDREF"}], "preferred_name": "Kogler, Dieter F.", "country_associated": "ie", "authorized_access_point": "Kogler, Dieter F.", "biographical_information": ["\\"School of Geography, Planning & Environmental Policy, University College Dublin\\", Irlande"]} 1 +2024-09-11 09:05:09.986167 2024-09-11 09:05:09.986173 0cb99486-0993-462c-895d-ac0cc29b3aa1 {"md5": "124c436a8893cb9cff6b3336834949fe", "pid": "174120745", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/174120745", "source": "IDREF"}], "preferred_name": "Sigl, Eduard", "country_associated": "gw", "authorized_access_point": "Sigl, Eduard"} 1 +2024-09-11 09:05:10.038469 2024-09-11 09:05:10.038472 0056a7b1-a071-45c6-b241-ecb908a73b26 {"md5": "cd3850cc6a43002f66fd43b2943cd1d2", "pid": "174162790", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/174162790", "source": "IDREF"}], "variant_name": ["Millamoto, MaríaEsther Quintana"], "preferred_name": "Quintana Millamoto, María Esther", "country_associated": "uy", "variant_access_point": ["Millamoto, MaríaEsther Quintana"], "authorized_access_point": "Quintana Millamoto, María Esther"} 1 +2024-09-11 09:05:10.095443 2024-09-11 09:05:10.095448 f76fe50e-1f97-44a6-bb9a-58860b8d4e13 {"md5": "51f2ab51a0f9bd06efcd899c3b920233", "pid": "174180039", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "qualifier": "médecin", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/174180039", "source": "IDREF"}], "variant_name": ["Peter, K."], "date_of_birth": "1938", "preferred_name": "Peter, Klaus, médecin", "country_associated": "gw", "variant_access_point": ["Peter, K."], "authorized_access_point": "Peter, Klaus, 1938-, médecin", "biographical_information": ["Médecin anesthésiste, professeur au \\" Ludwig-Maximilians-Universität, Institut für Anaesthesiologie\\" à Munich"]} 1 +2024-09-11 09:05:10.147244 2024-09-11 09:05:10.147248 48edd986-de1b-446f-9cdb-a07a2e3bab8a {"md5": "8d97cdfbfc72eba2153fb39e100fffee", "pid": "174469470", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/174469470", "source": "IDREF"}], "date_of_birth": "1924-01-18", "preferred_name": "Gordon, William J.", "country_associated": "xxc", "authorized_access_point": "Gordon, William J., 1924-....", "biographical_information": ["Chef d'orchestre de la Fanfare nationale des Forces Armées Canadiennes"]} 1 +2024-09-11 09:05:10.895128 2024-09-11 09:05:10.895132 2c07c6c0-2ba7-41e1-9b7a-218e62856fff {"md5": "646e55b8ab9695e8ad77fcbeb51f5d29", "pid": "176776613", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "écrivain", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/176776613", "source": "IDREF"}], "variant_name": ["Sarrazin, Pierre"], "date_of_birth": "1944", "preferred_name": "Sarrazin, Michel-Pierre, écrivain", "country_associated": "xxc", "variant_access_point": ["Sarrazin, Pierre"], "authorized_access_point": "Sarrazin, Michel-Pierre, 1944-...., écrivain", "biographical_information": ["Ecrivain"]} 1 +2024-09-11 09:05:10.205433 2024-09-11 09:05:10.205437 8d9bc44a-14ae-464d-ad23-9c2fc62f5159 {"md5": "808b8e605441620213e81c6fffa3568c", "pid": "174571623", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/174571623", "source": "IDREF"}], "variant_name": ["大島, 清次"], "date_of_birth": "1924", "date_of_death": "2006", "preferred_name": "Ōshima, Seiji", "country_associated": "ja", "variant_access_point": ["大島, 清次, 1924-2006"], "authorized_access_point": "Ōshima, Seiji, 1924-2006", "biographical_information": ["Transcription Hepburn modifié", "Historien de l'art, Critique d'art, membre de l'AICA JAPON, directeur du Musée préfectoral des Beaux-arts de Tochigi (en 1981) ainsi que du Musée d'Art de Setagaya (1986-2005)."]} 1 +2024-09-11 09:05:10.264921 2024-09-11 09:05:10.264924 8b67b241-24ba-4689-acdf-eab08142e97b {"md5": "a16aad19d2acbd523a75215500afa92e", "pid": "174595174", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/174595174", "source": "IDREF"}], "preferred_name": "Woolson, Robert F.", "country_associated": "xxu", "authorized_access_point": "Woolson, Robert F.", "biographical_information": ["2002 : The university of Iowa, Iowa City, Iowa"]} 1 +2024-09-11 09:05:10.332749 2024-09-11 09:05:10.332752 9d5c2179-832d-4260-95a2-787d3c5ec457 {"md5": "397f5d86ed331c365fd95060b8b5c0ea", "pid": "174757131", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/174757131", "source": "IDREF"}], "preferred_name": "Rathburn, Arthur", "country_associated": "fr", "authorized_access_point": "Rathburn, Arthur"} 1 +2024-09-11 09:05:10.387011 2024-09-11 09:05:10.387014 e342aa8e-bd05-4d7a-b225-2b8427218f7f {"md5": "9e9ee9a22bdf82480b6189a3ce34e60c", "pid": "175070180", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/175070180", "source": "IDREF"}], "date_of_birth": "18..", "preferred_name": "Quijada B., Bernardino", "country_associated": "cl", "authorized_access_point": "Quijada B., Bernardino, 18..-...."} 1 +2024-09-11 09:05:10.441336 2024-09-11 09:05:10.441341 a5902582-2121-4433-b181-aadae8fc2474 {"md5": "84437c1097fdb7275dd3491482c3bf60", "pid": "175084661", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/175084661", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Diamond, Nicola", "country_associated": "xxk", "authorized_access_point": "Diamond, Nicola, 19..-...."} 1 +2024-09-11 09:05:10.498506 2024-09-11 09:05:10.498509 39a5cfd8-5391-4fcc-b592-43e76a9d999f {"md5": "9a588d6387e7f8c48eaa9500614a3e36", "pid": "175177880", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/175177880", "source": "IDREF"}], "variant_name": ["Елкин, Анатолий Сергеевич", "Elkin, Anatolij Sergeevic", "Elkin, Anatoliï Sergeevich"], "date_of_birth": "1929", "preferred_name": "Elkin, Anatolij Sergeevič", "country_associated": "ru", "variant_access_point": ["Elkin, Anatolij Sergeevic", "Elkin, Anatoliï Sergeevich"], "authorized_access_point": "Elkin, Anatolij Sergeevič, 1929-...."} 1 +2024-09-11 09:05:10.551105 2024-09-11 09:05:10.55111 8723da00-d06a-4a39-bdf2-3acd9c80e52a {"md5": "a9160cb353551578c1620e370402e16b", "pid": "175622914", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/175622914", "source": "IDREF"}], "preferred_name": "Thomson, Erik MacDonald", "country_associated": "xxu", "authorized_access_point": "Thomson, Erik MacDonald"} 1 +2024-09-11 09:05:10.611231 2024-09-11 09:05:10.611234 92d129bf-54f6-4610-b954-c772c1b19919 {"md5": "979cefa20181b0e70fba3a74fe7d47a2", "pid": "175664528", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/175664528", "source": "IDREF"}], "date_of_birth": "1958", "preferred_name": "Kanemitsu, Yoshihiko", "country_associated": "ja", "authorized_access_point": "Kanemitsu, Yoshihiko, 1958-", "biographical_information": ["professeur au Research Center for Elements Science"]} 1 +2024-09-11 09:05:10.669885 2024-09-11 09:05:10.66989 01d1473e-fa1f-43a7-8cac-d84b045e9e00 {"md5": "17346d30d20216b20e3519875ca8ca67", "pid": "175917434", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/175917434", "source": "IDREF"}], "variant_name": ["Conceição e Silva, Domingos da", "Silva, Domingos da Conceição e"], "date_of_birth": "1643", "date_of_death": "1718", "preferred_name": "Conceição, Domingos da", "country_associated": "po", "variant_access_point": ["Conceição e Silva, Domingos da", "Silva, Domingos da Conceição e"], "authorized_access_point": "Conceição, Domingos da, ca 1643-1718", "biographical_information": ["Moine franciscain ; artiste plasticien, il fut aussi capellan de l'armée du marquis Das Minas durant la Guerra de sucesión et il faisait partie de l'armée portugaise en terres espagnoles entre 1706 et 1713 (période de rédaction de son Diario bellico) ; il meurt à Rio de Janeiro (Bresil)"]} 1 +2024-09-11 09:05:10.728195 2024-09-11 09:05:10.728198 e7f0cb89-f068-43c0-9f98-adede3cb0ed8 {"md5": "2619203573b1e98d135886151d8d065b", "pid": "17637874X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/17637874X", "source": "IDREF"}], "preferred_name": "Arizmendi, Luis", "authorized_access_point": "Arizmendi, Luis", "biographical_information": ["Docteur à l'université de Madrid"]} 1 +2024-09-11 09:05:10.784266 2024-09-11 09:05:10.784272 e928ea77-e9fd-450f-b7cf-cfb323d38f00 {"md5": "39724c58f089799618313d2ed6414aa1", "pid": "176586350", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/176586350", "source": "IDREF"}], "date_of_birth": "1938", "date_of_death": "1916", "preferred_name": "Kaiser, Pieter Jan", "country_associated": "ne", "authorized_access_point": "Kaiser, Pieter Jan, 1838-1916"} 1 +2024-09-11 09:05:10.842285 2024-09-11 09:05:10.842291 b4be8b31-8ae8-40c6-a29f-a7e8a35a4620 {"md5": "5f35d674dc02d40f78a4c087a248d739", "pid": "176752781", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/176752781", "source": "IDREF"}], "variant_name": ["Sciortino, Kellie L.", "Sciortino, Kellie Filter"], "date_of_birth": "19XX", "preferred_name": "Sciortino, Kellie", "variant_access_point": ["Sciortino, Kellie L.", "Sciortino, Kellie Filter"], "authorized_access_point": "Sciortino, Kellie, 19..-...."} 1 +2024-09-11 09:05:10.961796 2024-09-11 09:05:10.961799 0e28e39a-e121-4f8e-a5d4-2b83db0e44e1 {"md5": "1e0736e780d22cb21af308cb839cf940", "pid": "176834540", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/176834540", "source": "IDREF"}], "variant_name": ["Symposium on Nonlinear Functional Analysis"], "preferred_name": "Symposium in pure mathematics of the American mathematical society", "country_associated": "xxu", "date_of_termination": "1968-04-19", "variant_access_point": ["Symposium on Nonlinear Functional Analysis"], "date_of_establishment": "1968-04-16", "authorized_access_point": "Symposium in pure mathematics of the American mathematical society (1968 ; Chicago, Ill.)"} 1 +2024-09-11 09:05:11.015663 2024-09-11 09:05:11.015668 a53a8851-5060-4a1b-bf85-f366f44a7d23 {"md5": "f8a573fb97da1308d27142ecaa997096", "pid": "176929738", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["cze"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/176929738", "source": "IDREF"}], "date_of_birth": "1956-06-03", "date_of_death": "1994-04-03", "preferred_name": "Rákos, Petr", "authorized_access_point": "Rákos, Petr, 1956-1994", "biographical_information": ["Psychiatre, traducteur, écrivain"]} 1 +2024-09-11 09:05:11.08015 2024-09-11 09:05:11.080155 1246603a-7348-46f3-adb8-7e18c673de1a {"md5": "76cf85798b2607ddbee555ec3b9c5e0a", "pid": "177081724", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre", "ita", "eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/177081724", "source": "IDREF"}], "date_of_birth": "1973", "preferred_name": "Stampone, Giuseppe", "country_associated": "fr", "authorized_access_point": "Stampone, Giuseppe, 1973-....", "biographical_information": ["Artiste (Installation) né en France, vit et travaille à Teramo et New York"]} 1 +2024-09-11 09:05:11.141746 2024-09-11 09:05:11.141751 69a9e7b7-ea4d-4a55-8ecf-4c63299199b8 {"md5": "ac3d29f6f5bb94c1eb7d756b9576246e", "pid": "17718101X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/17718101X", "source": "IDREF"}], "date_of_birth": "1969", "preferred_name": "Dupont-Belrhali, Karine", "country_associated": "fr", "authorized_access_point": "Dupont-Belrhali, Karine, 1969-...", "biographical_information": ["Karine Dupont-Belrhali est née à Grenoble en 1969. Aujourd’hui, elle vit entourée de montagnes, avec son mari et ses trois enfants, Nathan, François et Nina.Après de très sérieuses études de sciences politiques et d’économie, Karine a fait de la communication. Maintenant, elle écrit pour les plus petits, et aussi pour les plus grands, chez Milan et Bayard. Ce qu’elle préfère ? Les enquêtes à suspense et les énigmes mystérieuses… Enfin, elle aime aller dans des écoles pour imaginer des histoires avec les enfants."]} 1 +2024-09-11 09:05:11.192188 2024-09-11 09:05:11.192192 746f1f92-2db1-484e-829a-a2888018f752 {"md5": "2156d03512b9094c692d2187d7f5441f", "pid": "177181516", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/177181516", "source": "IDREF"}], "date_of_birth": "1810", "date_of_death": "1893", "preferred_name": "Arnoul, Honoré", "country_associated": "fr", "authorized_access_point": "Arnoul, Honoré, 1810-1893", "biographical_information": ["Société royale d'instruction élémentaire"]} 1 +2024-09-11 09:05:11.248734 2024-09-11 09:05:11.248739 a1eaed18-215b-4413-bc98-84f5725b2e24 {"md5": "e6e92a1f992f4946762db55be7dff6d0", "pid": "17719166X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/17719166X", "source": "IDREF"}], "date_of_birth": "1935", "date_of_death": "1957", "preferred_name": "Goldner, Orville", "country_associated": "xxu", "authorized_access_point": "Goldner, Orville, 1935-1957"} 1 +2024-09-11 09:05:11.299268 2024-09-11 09:05:11.299271 96312a9a-0f1f-4c2b-a42d-768931515418 {"md5": "6f9dd99d179464613d581094510cb763", "pid": "177498056", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/177498056", "source": "IDREF"}], "preferred_name": "Fitzgerald, Brian F.", "authorized_access_point": "Fitzgerald, Brian F."} 1 +2024-09-11 09:05:11.3555 2024-09-11 09:05:11.355504 d818a315-fe6d-4f94-8642-fb79326e52ab {"md5": "bfa2ec25660a4e7bbcbbf098657b9302", "pid": "177564229", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/177564229", "source": "IDREF"}], "variant_name": ["Parker, C. Stratton"], "date_of_birth": "1885-09-01", "date_of_death": "1972-02", "preferred_name": "Parker Stratton, Cornelia", "country_associated": "xxu", "variant_access_point": ["Parker, C. Stratton"], "authorized_access_point": "Parker Stratton, Cornelia, 1885-1972", "biographical_information": ["Ecrivain"]} 1 +2024-09-11 09:05:11.413136 2024-09-11 09:05:11.41314 0cbb4ae7-7d32-41ce-a75f-5d8f000dd848 {"md5": "a417e2912b350364eddbba1b9b7f563f", "pid": "177597933", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/177597933", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Estrade, Laëtitia", "country_associated": "fr", "authorized_access_point": "Estrade, Laëtitia, 19..-...."} 1 +2024-09-11 09:05:11.466886 2024-09-11 09:05:11.46689 0c241e19-4994-469d-a321-e31b3765a3c6 {"md5": "349640152b23661f752ab329431e9e40", "pid": "177966793", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/177966793", "source": "IDREF"}], "preferred_name": "Conference on the role of education in the early stages of development", "country_associated": "xxu", "date_of_termination": "1963-04-06", "date_of_establishment": "1963-04-04", "authorized_access_point": "Conference on the role of education in the early stages of development (1963 ; Chicago)"} 1 +2024-09-11 09:05:11.525812 2024-09-11 09:05:11.525817 e4ac77a8-51b8-44bc-b22a-5d132bfb8c6e {"md5": "5ba5c09f137dddd81272ab9888b315a8", "pid": "178055328", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/178055328", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Cahill, Kay", "country_associated": "xx", "authorized_access_point": "Cahill, Kay, 19..-....", "biographical_information": ["Bibliothécaire, Vancouver public library, Canada (en 2010). - Spécialiste des sites web et des services de références virtuelles"]} 1 +2024-09-11 09:05:13.613994 2024-09-11 09:05:13.613996 448673ac-2c48-49a6-8bf3-58b3759378a8 {"md5": "0a0c5a403c63b5bf2b5277d45a9c2a69", "pid": "183243641", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/183243641", "source": "IDREF"}], "date_of_birth": "1947-10-01", "preferred_name": "Vauléon, Bernard", "country_associated": "fr", "authorized_access_point": "Vauléon, Bernard, 1947-...."} 1 +2024-09-11 09:05:11.59623 2024-09-11 09:05:11.596233 edc3a01b-d80e-4ff6-949e-5419cf03f52f {"md5": "67ab0b3482bf900cd9fc362cfbc55e34", "pid": "178123889", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/178123889", "source": "IDREF"}], "variant_name": ["Bezirkstag des Ober-Elsass"], "preferred_name": "Ober-Elsass. Bezirkstag", "country_associated": "fr", "date_of_termination": "1918", "variant_access_point": ["Bezirkstag des Ober-Elsass"], "date_of_establishment": "1871", "authorized_access_point": "Ober-Elsass. Bezirkstag", "biographical_information": ["Le Bezirk Oberelsass était l'une des trois divisions administratives du Reichsland Elsaß-Lothringen. Le district allemand de Haute-Alsace, chef-lieu Colmar, correspondait à l'actuel Haut-Rhin."]} 1 +2024-09-11 09:05:11.654183 2024-09-11 09:05:11.654194 1eba97f7-15b5-4627-9466-7fd9051621dc {"md5": "8d8f077fec78753251d231bde8171957", "pid": "178129887", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/178129887", "source": "IDREF"}], "preferred_name": "Instituto de matematica \\"Beppo Levi\\" (Rosario, Argentine)", "country_associated": "ag", "authorized_access_point": "Instituto de matematica \\"Beppo Levi\\" (Rosario, Argentine)"} 1 +2024-09-11 09:05:11.707703 2024-09-11 09:05:11.707706 ee94a5da-13a9-4001-a7c6-434dff77c107 {"md5": "9ecb4c3b3d8e44a3b9bd413265931c9a", "pid": "178131059", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/178131059", "source": "IDREF"}], "preferred_name": "Cheng, Herbert S.", "authorized_access_point": "Cheng, Herbert S."} 1 +2024-09-11 09:05:11.767961 2024-09-11 09:05:11.767967 db0eddb3-3d8a-40aa-bcb5-f08d3fb58ce4 {"md5": "8badbc8c78c49fa752a83c9e7a81282d", "pid": "178302430", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/178302430", "source": "IDREF"}], "variant_name": ["Espagne. Ministerio de guerra", "Espagne. Ministerio de la guerra y ultramar"], "preferred_name": "Espagne. Ministerio de la guerra", "country_associated": "sp", "date_of_termination": "1937", "variant_access_point": ["Espagne. Ministerio de guerra", "Espagne. Ministerio de la guerra y ultramar"], "date_of_establishment": "1808", "authorized_access_point": "Espagne. Ministerio de la guerra", "biographical_information": ["Créé en 1808, disparait en 1937, remplacé par le \\"Ministerio de defensa nacional\\", puis en 1977 par le \\"Ministerio de la defensa\\" ; de 1858 à 1863 s'est appelé \\"Ministerio de la guerra y ultramar\\", et de 1928 a 1931 (et de 1939 à 1977), \\"Ministerio del ejército"]} 1 +2024-09-11 09:05:11.821231 2024-09-11 09:05:11.821234 02d54ce4-b025-49c1-b6e8-42e940cd1e59 {"md5": "37635ed5ccf510eb32b1dd2f89dfa639", "pid": "178403431", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/178403431", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Arkapaw, Adam", "country_associated": "at", "authorized_access_point": "Arkapaw, Adam, 19..-....", "biographical_information": ["Directeur de la photographie", "Animal Kingdom [images animées] / David Michôd, réal."]} 1 +2024-09-11 09:05:11.875914 2024-09-11 09:05:11.875918 1273ea0c-6328-4400-a598-a862b475af87 {"md5": "c9911bee47988bf28171980e3e5fd56a", "pid": "178642932", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/178642932", "source": "IDREF"}], "preferred_name": "Lamoureux, Jocelyne", "authorized_access_point": "Lamoureux, Jocelyne", "biographical_information": ["Professeur à l'université du Québec à Montréal (UQAM)"]} 1 +2024-09-11 09:05:11.93071 2024-09-11 09:05:11.930713 426d546a-ab39-4f3a-b811-db32c2bea46e {"md5": "95561a53377392fc76e244aef1e76566", "pid": "178656275", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/178656275", "source": "IDREF"}], "preferred_name": "TAPPI Coating Binders Short Course", "country_associated": "xxu", "authorized_access_point": "TAPPI Coating Binders Short Course (1996 ; Baton Rouge (La.))"} 1 +2024-09-11 09:05:11.983279 2024-09-11 09:05:11.983283 01c55adb-4dff-4735-9be5-edbe87710946 {"md5": "0a54d34e47504435f2e4d7805d6ae380", "pid": "178750166", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/178750166", "source": "IDREF"}], "variant_name": ["小山, いと子"], "date_of_birth": "1901", "date_of_death": "1989", "preferred_name": "Koyama, Itoko", "country_associated": "ja", "variant_access_point": ["小山, いと子, 1901-1989"], "authorized_access_point": "Koyama, Itoko, 1901-1989", "biographical_information": ["écrivaine"]} 1 +2024-09-11 09:05:12.04819 2024-09-11 09:05:12.048195 bac20415-c303-4eb4-aefa-7adb4bcb649d {"md5": "0c10452d982b224d8a1332673d3d7b48", "pid": "178887463", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/178887463", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Meighan, Melissa", "country_associated": "xxu", "authorized_access_point": "Meighan, Melissa, 19..-....", "biographical_information": ["Spécialiste d'art"]} 1 +2024-09-11 09:05:12.100935 2024-09-11 09:05:12.100939 99bea8ec-3126-4281-ae5a-984d8bc715e9 {"md5": "fed06c0c94e2e9a5d0a2cc6f9eb7ae84", "pid": "178950823", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/178950823", "source": "IDREF"}], "variant_name": ["CAM (Padoue, Italie)", "Università degli studi (Padoue, Italie). Centro di Ateneo per i Musei"], "preferred_name": "Centro di ateneo per i musei (Padoue, Italie)", "country_associated": "it", "variant_access_point": ["CAM (Padoue, Italie)", "Università degli studi (Padoue, Italie). Centro di Ateneo per i Musei"], "authorized_access_point": "Centro di ateneo per i musei (Padoue, Italie)", "biographical_information": ["Adresse : Via Orto Botanico, 15 - 35122 Padova"]} 1 +2024-09-11 09:05:12.159418 2024-09-11 09:05:12.159422 c26f637b-dc20-4c28-9bf3-245d54b2c032 {"md5": "02644023fce2588d4eaa37a7a31c552a", "pid": "179358103", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/179358103", "source": "IDREF"}], "date_of_birth": "1948", "preferred_name": "Markham, Adam", "authorized_access_point": "Markham, Adam, 1948"} 1 +2024-09-11 09:05:12.215742 2024-09-11 09:05:12.215747 3b1db04c-9f59-45e1-9cdc-3de2f6fc8093 {"md5": "cba21b5b470e7b7ff96b266c53022ae4", "pid": "179410059", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/179410059", "source": "IDREF"}], "preferred_name": "Daniel, Ron W.", "authorized_access_point": "Daniel, Ron W."} 1 +2024-09-11 09:05:12.275889 2024-09-11 09:05:12.275893 53386eb8-9d26-4d3b-9e40-17fe74081406 {"md5": "96843e06728f34028e82930c3ce7a680", "pid": "179487183", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/179487183", "source": "IDREF"}], "variant_name": ["La dérive des francophonies", "La deriva delle francofonie"], "preferred_name": "Seminari annuali di letterature francofone", "country_associated": "it", "date_of_termination": "1986-10-23", "variant_access_point": ["La dérive des francophonies", "La deriva delle francofonie"], "date_of_establishment": "1986-10-22", "authorized_access_point": "Seminari annuali di letterature francofone (1986 ; Bagni di Lucca, Italie)"} 1 +2024-09-11 09:05:12.330702 2024-09-11 09:05:12.330705 b152ecd0-adde-4ce3-8dd6-cd182b00e15a {"md5": "9c7a95dd794709f365825b39522c0d65", "pid": "179957805", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/179957805", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Lobel, Cindy R.", "country_associated": "xxu", "authorized_access_point": "Lobel, Cindy R., 19..-...."} 1 +2024-09-11 09:05:12.385062 2024-09-11 09:05:12.385067 91e47f55-36d6-4b7e-a8a6-a68b9e9874dc {"md5": "eee141610f9d932538afadf2cbc38d08", "pid": "180123580", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por", "fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/180123580", "source": "IDREF"}], "variant_name": ["CEDOUA", "Centre d'études de droit de l'aménagement, de l'urbanisme et de l'environnement (Coimbra, Portugal)", "Universidade de Coimbra. Centro de estudos de direito do ordenamento, do urbanismo e do ambiente", "Universidade de Coimbra. Faculdade de direito. Centro de estudos de direito do ordenamento, do urbanismo e do ambiente"], "preferred_name": "Centro de estudos de direito do ordenamento, do urbanismo e do ambiente (Coimbra, Portugal)", "country_associated": "po", "variant_access_point": ["CEDOUA", "Centre d'études de droit de l'aménagement, de l'urbanisme et de l'environnement (Coimbra, Portugal)", "Universidade de Coimbra. Centro de estudos de direito do ordenamento, do urbanismo e do ambiente", "Universidade de Coimbra. Faculdade de direito. Centro de estudos de direito do ordenamento, do urbanismo e do ambiente"], "date_of_establishment": "1994", "authorized_access_point": "Centro de estudos de direito do ordenamento, do urbanismo e do ambiente (Coimbra, Portugal)", "biographical_information": ["Fondé en1994. Centre de recherche de la Faculdade de Direito da Universidade de Coimbra, associé à l'ANMP (Associação Nacional de Municípios Portugueses), et à la Fundação CEFA"]} 1 +2024-09-11 09:05:12.447486 2024-09-11 09:05:12.44749 2fda8324-c2ee-4cfd-8f39-5ebd4e2e1a8d {"md5": "7c21803c206e96151d9865b46a26af03", "pid": "180177494", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/180177494", "source": "IDREF"}], "variant_name": ["Carter sisters & Mother Maybelle"], "preferred_name": "Carter family", "country_associated": "xxu", "date_of_termination": "1943", "variant_access_point": ["Carter sisters & Mother Maybelle"], "date_of_establishment": "1927", "authorized_access_point": "Carter family", "biographical_information": ["Groupe vocal et instrumental de musique country. - Composé de Sara Carter, chant, guitare et harpe, Alvin Pleasant Carter, chant, Maybelle Carter, chant et guitare", "Attention à partir de 1941 Le groupe semble se diviser puis il produit un nouvel album en 1967 d'après LCNA"]} 1 +2024-09-11 09:05:12.502731 2024-09-11 09:05:12.502737 ad628c85-6899-47fd-ab76-26a07306055a {"md5": "f235b7178701e94e7b5561c0661c75a1", "pid": "180568892", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/180568892", "source": "IDREF"}], "preferred_name": "Mikhailov, Zdenka Kadla", "country_associated": "xx", "authorized_access_point": "Mikhailov, Zdenka Kadla", "biographical_information": ["En poste en 1962 au Pulkovo Observatory"]} 1 +2024-09-11 09:05:12.563032 2024-09-11 09:05:12.563036 18739356-8323-43bb-9ca8-213a1ebc556d {"md5": "6c955d653b98fcb99df739ab17fffbe8", "pid": "180999699", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/180999699", "source": "IDREF"}], "variant_name": ["Magalhães, Joaquim Antonio de", "Magalhaens, J. A. de", "Magalhaens, Joaquim Antonio de"], "date_of_birth": "1795", "date_of_death": "1848", "preferred_name": "Magalhães, J. A. de", "country_associated": "po", "variant_access_point": ["Magalhães, Joaquim Antonio de", "Magalhaens, J. A. de", "Magalhaens, Joaquim Antonio de"], "authorized_access_point": "Magalhães, J. A. de, 1795-1848"} 1 +2024-09-11 09:05:12.621221 2024-09-11 09:05:12.621226 32ce0b49-8b42-4210-9e26-f96b35e323b4 {"md5": "8668fa4403af24f5488dd3a8a18d1653", "pid": "18102540X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/18102540X", "source": "IDREF"}], "preferred_name": "Nievelstein, Ralf", "authorized_access_point": "Nievelstein, Ralf"} 1 +2024-09-11 09:05:12.696212 2024-09-11 09:05:12.696216 0ad1cb1a-9bad-4b4e-97de-496a56e2935c {"md5": "2e319aa4641b4b10163dac18cee8f1b8", "pid": "181054825", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/181054825", "source": "IDREF"}], "date_of_birth": "1923", "preferred_name": "Ruggles, Richard I.", "authorized_access_point": "Ruggles, Richard I., 1928-...."} 1 +2024-09-11 09:05:12.760421 2024-09-11 09:05:12.760425 393577b6-9649-43d6-a0d3-a5a7994b321b {"md5": "7fb28ff05895ea1f640814b107d68393", "pid": "181132931", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/181132931", "source": "IDREF"}], "preferred_name": "Lawrence, Julian", "authorized_access_point": "Lawrence, Julian"} 1 +2024-09-11 09:05:12.817019 2024-09-11 09:05:12.817024 414fd887-1f6c-4d7a-b6c1-f3f3f2e8c460 {"md5": "fa30505e3911e874398246a8d7c99125", "pid": "181254506", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/181254506", "source": "IDREF"}], "preferred_name": "Dagneaux, Estelle", "country_associated": "be", "authorized_access_point": "Dagneaux, Estelle", "biographical_information": ["Linguiste"]} 1 +2024-09-11 09:05:14.855543 2024-09-11 09:05:14.855549 38d2960e-3209-4dd3-8948-d2469f0de42b {"md5": "21f92137b90f62be23779583c66e12df", "pid": "185446167", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/185446167", "source": "IDREF"}], "variant_name": ["TSC (Brownsville, Etats-Unis)"], "preferred_name": "Texas Southmost College (Brownsville, Etats-Unis)", "country_associated": "xxu", "variant_access_point": ["TSC (Brownsville, Etats-Unis)"], "authorized_access_point": "Texas Southmost College (Brownsville, Etats-Unis)"} 1 +2024-09-11 09:05:12.874052 2024-09-11 09:05:12.874055 f9d7344c-9e11-4b2f-94f5-a95bcf687402 {"md5": "3addb465658a882fc0805c567d67e627", "pid": "181256037", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/181256037", "source": "IDREF"}], "variant_name": ["EuroMemo group"], "preferred_name": "Économistes européens pour une politique économique alternative en Europe", "variant_access_point": ["EuroMemo group"], "date_of_establishment": "1995", "parallel_access_point": ["European economists for an alternative economic policy in Europe"], "authorized_access_point": "Économistes européens pour une politique économique alternative en Europe", "biographical_information": ["Adresse : info@euromemo.eu"]} 1 +2024-09-11 09:05:12.9315 2024-09-11 09:05:12.931503 48220421-66d9-4705-ad63-189be2b926e4 {"md5": "501c9233d9b41fba29b4326e68b6d8ee", "pid": "181345404", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/181345404", "source": "IDREF"}], "preferred_name": "Kämmerer, Wolfgang", "country_associated": "gw", "authorized_access_point": "Kämmerer, Wolfgang"} 1 +2024-09-11 09:05:12.989498 2024-09-11 09:05:12.989503 c8a10264-a94b-4897-af9f-c931f4607fb6 {"md5": "7fa1b718c718204db3295eef7f78f84e", "pid": "181448793", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/181448793", "source": "IDREF"}], "variant_name": ["Melin, Pierre"], "preferred_name": "Mélin, Pierre", "country_associated": "fr", "variant_access_point": ["Melin, Pierre"], "authorized_access_point": "Mélin, Pierre", "biographical_information": ["Titulaire du DU en Anatomie appliquée à l'implantologie (Lyon 1, 2000)"]} 1 +2024-09-11 09:05:13.054508 2024-09-11 09:05:13.054515 e4a1fe2d-50cb-4b69-a7a6-b4175e6be2ea {"md5": "95406b2f9837dccd3605b5cdea54751a", "pid": "181483513", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["chi"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/181483513", "source": "IDREF"}], "variant_name": ["房, 玄齡"], "date_of_birth": "0578", "date_of_death": "0648", "preferred_name": "Fang, Xuanling", "country_associated": "cc", "variant_access_point": ["房, 玄齡, 0578-0648"], "authorized_access_point": "Fang, Xuanling, 0578-0648", "biographical_information": ["Historien chinois"]} 1 +2024-09-11 09:05:13.119877 2024-09-11 09:05:13.119881 9ec045b2-e67e-4717-bec3-8fa99ef8070a {"md5": "5ff968ebad718387fbe4e74338e549b1", "pid": "181732149", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/181732149", "source": "IDREF"}], "preferred_name": "Gutschera, Karl Robert", "authorized_access_point": "Gutschera, Karl Robert", "biographical_information": ["Concepteur en chef au sein de la société de conception de logiciel Secret Identity Studios, équipe formée par d'anciens membres d'entreprises mondiales de création de jeux vidéo"]} 1 +2024-09-11 09:05:13.179389 2024-09-11 09:05:13.179394 24cecb19-0e69-431e-8736-2eada4c8ae4f {"md5": "6b71fa5545490d21ad761405e6c4cd43", "pid": "181863111", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/181863111", "source": "IDREF"}], "variant_name": ["Raumer, Siegmund von"], "date_of_birth": "1860", "date_of_death": "1939", "preferred_name": "Raumer, Sigmund von", "country_associated": "gw", "variant_access_point": ["Raumer, Siegmund von"], "authorized_access_point": "Raumer, Sigmund von, 1860-1939"} 1 +2024-09-11 09:05:13.238097 2024-09-11 09:05:13.238101 3805b8b8-2383-4aa9-b3d1-c6601fce9712 {"md5": "6668101d7ca2c799822f729381d17c41", "pid": "182214184", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/182214184", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Griffith, Terri", "country_associated": "xxu", "authorized_access_point": "Griffith, Terri, 19..-....", "biographical_information": ["Ecrivain, journaliste, spécialiste d'art contemporain"]} 1 +2024-09-11 09:05:13.293462 2024-09-11 09:05:13.293466 52846854-7b6f-4327-afad-e00fd6dfa988 {"md5": "ebe64ed6f1325f0a4d4753507defdeb6", "pid": "182358534", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/182358534", "source": "IDREF"}], "preferred_name": "Moore, Tomás", "country_associated": "cl", "authorized_access_point": "Moore, Tomás", "biographical_information": ["Entomologiste."]} 1 +2024-09-11 09:05:13.345799 2024-09-11 09:05:13.345803 60dbe706-f63d-4631-8f49-c5c80ecee40d {"md5": "6edf5f07f73e11f10dccf7d71e46ef12", "pid": "182624250", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/182624250", "source": "IDREF"}], "preferred_name": "Ades, Gary W.J.", "country_associated": "xx", "authorized_access_point": "Ades, Gary W.J.", "biographical_information": ["Ornithologue"]} 1 +2024-09-11 09:05:13.398844 2024-09-11 09:05:13.398849 a2545ecf-fff5-4daa-b27f-93b53cae717d {"md5": "cdab541a83854789e3215a2a53136b94", "pid": "182625575", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/182625575", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Sachetti, António", "country_associated": "po", "authorized_access_point": "Sachetti, António, 19..-....", "biographical_information": ["Photographe portugais."]} 1 +2024-09-11 09:05:13.456369 2024-09-11 09:05:13.456374 e69e533b-3563-470b-a1d6-19d64ea80c94 {"md5": "c56647623b19da870689275bc5b2f90f", "pid": "182629589", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/182629589", "source": "IDREF"}], "preferred_name": "Ay, Andreas", "country_associated": "gw", "authorized_access_point": "Ay, Andreas"} 1 +2024-09-11 09:05:13.507511 2024-09-11 09:05:13.507515 97496737-ab2b-4fbe-91f9-142b1bebee82 {"md5": "e97520e5d1917a7dae7fcc1274c8e65d", "pid": "182693198", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/182693198", "source": "IDREF"}], "preferred_name": "Stapleton, Anne McKee", "authorized_access_point": "Stapleton, Anne McKee"} 1 +2024-09-11 09:05:13.559836 2024-09-11 09:05:13.559841 0a434ccf-703e-4109-af11-8d424337fee4 {"md5": "b023679ca9ffd6a67bf6b11e16691b21", "pid": "182842819", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/182842819", "source": "IDREF"}], "variant_name": ["Dalphond, J.E."], "preferred_name": "Dalphond, Julie E.", "variant_access_point": ["Dalphond, J.E."], "authorized_access_point": "Dalphond, Julie E.", "biographical_information": ["Auteur"]} 1 +2024-09-11 09:05:13.672895 2024-09-11 09:05:13.672899 8aa78d1c-d324-4059-8818-b1603ef008f6 {"md5": "8d259e1550f82d0ec3cf25206a5df7b0", "pid": "183245504", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["srp"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/183245504", "source": "IDREF"}], "variant_name": ["Научни cастанак cлависта у Вукове Дане"], "preferred_name": "Naučni sastanak slavista u Vukove Dane", "date_of_termination": "2008-09-07", "variant_access_point": ["Научни cастанак cлависта у Вукове Дане (38 ; 2008 ; Belgrade)"], "date_of_establishment": "2008-09-04", "authorized_access_point": "Naučni sastanak slavista u Vukove Dane (38 ; 2008 ; Belgrade)"} 1 +2024-09-11 09:05:13.732822 2024-09-11 09:05:13.732826 a5380a09-de25-4684-8207-f16d7c812c02 {"md5": "59c2e6eb67bda33e3a972aec62a6578a", "pid": "183295765", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/183295765", "source": "IDREF"}], "variant_name": ["Грибков, Виталий Cтепанович", "Gribkov, V. S."], "date_of_birth": "1936", "preferred_name": "Gribkov, Vitalij Stepanovič", "country_associated": "ru", "variant_access_point": ["Gribkov, V. S."], "authorized_access_point": "Gribkov, Vitalij Stepanovič, 1936-", "biographical_information": ["Peintre russe"]} 1 +2024-09-11 09:05:13.785595 2024-09-11 09:05:13.785599 a9eaca3c-077a-4a1b-a04f-1250679b171c {"md5": "df7d24295738cb6d90817c8b55857953", "pid": "183379861", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/183379861", "source": "IDREF"}], "date_of_birth": "1947", "preferred_name": "Murray, Kate", "country_associated": "xxu", "authorized_access_point": "Murray, Kate, 1947-"} 1 +2024-09-11 09:05:13.836712 2024-09-11 09:05:13.836717 0e4875a5-682b-40ae-8751-afd8a5a16c57 {"md5": "e68bed948043c24d52dfb82b593ce10e", "pid": "183426967", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "agrégé de physique", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/183426967", "source": "IDREF"}], "date_of_birth": "19..", "preferred_name": "Martin, François, agrégé de physique", "country_associated": "xx", "authorized_access_point": "Martin, François, 19..-...., agrégé de physique", "biographical_information": ["Professeur certifié de physique-chimie, il a enseigné douze ans au collège. En poste au lycée général et technologique (en 2014).."]} 1 +2024-09-11 09:05:13.889673 2024-09-11 09:05:13.889676 e86b2a28-dece-48c4-b860-5c095c8f351f {"md5": "b5ab295e7782a544ce2e9b7c7ecf0116", "pid": "183511956", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/183511956", "source": "IDREF"}], "variant_name": ["CERAFIA", "Université Omar Bongo (Libreville). Centre d'études et de recherches afro-ibéro-américaines"], "preferred_name": "Centre d'études et de recherches afro-ibéro-américaines (Libreville, Gabon)", "variant_access_point": ["CERAFIA", "Université Omar Bongo (Libreville). Centre d'études et de recherches afro-ibéro-américaines"], "date_of_establishment": "1998", "authorized_access_point": "Centre d'études et de recherches afro-ibéro-américaines (Libreville, Gabon)", "biographical_information": ["Laboratoire de recherche pluridisciplinaire de l'Université Omar Bongo"]} 1 +2024-09-11 09:05:13.943449 2024-09-11 09:05:13.943454 d683162e-8816-470e-a1ea-5697c766066f {"md5": "40064fff6d1d13d0dda8ad958f165e04", "pid": "183544129", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/183544129", "source": "IDREF"}], "date_of_birth": "1912", "date_of_death": "1982", "preferred_name": "Taylor, Duncan Burnett", "country_associated": "xxk", "authorized_access_point": "Taylor, Duncan Burnett, 1912-1982", "biographical_information": ["Spécialiste de l'histoire de l'Angleterre"]} 1 +2024-09-11 09:05:14.001328 2024-09-11 09:05:14.001333 fe17ebab-6695-4b25-bc27-46c0d048f1c4 {"md5": "b2377f921b9004411083ddb72358d3d7", "pid": "183723341", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/183723341", "source": "IDREF"}], "date_of_birth": "1931-06-13", "date_of_death": "2020-05-28", "preferred_name": "Scowen, Reedf1931-2020", "country_associated": "xxc", "authorized_access_point": "Scowen, Reedf1931-2020", "biographical_information": ["Politicien"]} 1 +2024-09-11 09:05:14.057937 2024-09-11 09:05:14.057942 c0057cee-cff9-4ae9-8281-7d6b4d1d9123 {"md5": "4dea082fe49dab1909c0696f67f666bb", "pid": "183871065", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/183871065", "source": "IDREF"}], "variant_name": ["FAEPHSA"], "preferred_name": "Fédération des associations pour l'étude et la mise en valeur du patrimoine hospitalier et de la santé en Alsace", "country_associated": "fr", "variant_access_point": ["FAEPHSA"], "date_of_establishment": "2005-11-08", "authorized_access_point": "Fédération des associations pour l'étude et la mise en valeur du patrimoine hospitalier et de la santé en Alsace", "biographical_information": ["Adresse : Institut d'histoire de la médecine et des sciences humaines, Département d'histoire de la médecine, Hôpitaux universitaires de Strasbourg, 1 place de L'Hôpital, BP 426, 67091 Strasbourg Cedex"]} 1 +2024-09-11 09:05:14.111174 2024-09-11 09:05:14.111178 8e82c74d-a639-4bed-935b-0845e89094af {"md5": "1c49a51c0abb040fcc87bf683d2bb99f", "pid": "18397574X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/18397574X", "source": "IDREF"}], "preferred_name": "William Herschel Society", "country_associated": "xxk", "authorized_access_point": "William Herschel Society"} 1 +2024-09-11 09:05:14.165357 2024-09-11 09:05:14.16536 10bb4546-5867-4502-98f3-b39b91979ce4 {"md5": "6dddd54b063543fd313bebca271b3c5b", "pid": "184093546", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/184093546", "source": "IDREF"}], "variant_name": ["AAPPFID"], "preferred_name": "Association des amis passés, présents et futurs d'Isidore Ducasse", "country_associated": "fr", "variant_access_point": ["AAPPFID"], "authorized_access_point": "Association des amis passés, présents et futurs d'Isidore Ducasse"} 1 +2024-09-11 09:05:16.217631 2024-09-11 09:05:16.217637 b3e8107e-77b3-45e4-8199-83f349c2088b {"md5": "2d76e6ef09711b323d00b72eedd9f96c", "pid": "188721665", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/188721665", "source": "IDREF"}], "date_of_birth": "1947-08-05", "preferred_name": "Rissel, Alain", "country_associated": "fr", "authorized_access_point": "Rissel, Alain, 1947-....", "biographical_information": ["Sociologue du développement et de l'aménagement des territoires ruraux"]} 1 +2024-09-11 09:05:14.219899 2024-09-11 09:05:14.219903 3eb3ddd8-7f4b-4dbf-bbda-116cf4f0534a {"md5": "42b2b719025a15c62a31c56e084dc455", "pid": "18439631X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/18439631X", "source": "IDREF"}], "variant_name": ["ARPFMC"], "preferred_name": "Association de recherches sur la poésie française moderne et contemporaine", "country_associated": "fr", "date_of_termination": "1983", "variant_access_point": ["ARPFMC"], "date_of_establishment": "1971", "authorized_access_point": "Association de recherches sur la poésie française moderne et contemporaine", "biographical_information": ["Fondée en 1971 et dirigée par Marie-Jeanne Durry. Editrice de la collection \\"Création\\"."]} 1 +2024-09-11 09:05:14.278801 2024-09-11 09:05:14.278805 0f3300ac-a615-4ba2-92c9-a4a1fc94dc08 {"md5": "f17ebe60c84a559d4ebcb06c3720d81b", "pid": "184529891", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "photographe", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/184529891", "source": "IDREF"}], "date_of_birth": "1944-08-05", "preferred_name": "Leroy, Bernard, photographe", "country_associated": "fr", "authorized_access_point": "Leroy, Bernard, 1944-...., photographe", "biographical_information": ["Photographe"]} 1 +2024-09-11 09:05:14.334851 2024-09-11 09:05:14.334855 5dbba708-b291-4573-b791-ed2aec624bb1 {"md5": "ced2070f973226b1ef93006eb95f9978", "pid": "184614686", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por", "eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/184614686", "source": "IDREF"}], "preferred_name": "Santos, Raul", "country_associated": "po", "authorized_access_point": "Santos, Raul", "biographical_information": ["Spécialiste des questions environnementales"]} 1 +2024-09-11 09:05:14.397964 2024-09-11 09:05:14.397968 96f848d2-73a8-4c2e-8369-29b89d3a30f4 {"md5": "8d12fc8706943095b22c21cf6ae0eee5", "pid": "184909961", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/184909961", "source": "IDREF"}], "preferred_name": "Association française des catalanistes", "country_associated": "fr", "authorized_access_point": "Association française des catalanistes"} 1 +2024-09-11 09:05:14.45124 2024-09-11 09:05:14.451244 f9ff546b-beb2-416a-8871-1b4db8c7625c {"md5": "a4d3a35d4386ba7a7c6bdd544e858346", "pid": "185067050", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/185067050", "source": "IDREF"}], "variant_name": ["Choeur du Concertgebouw d'Amsterdam", "Concertgebouw chorus (Amsterdam)", "Concertgebouw (Amsterdam). Koor"], "preferred_name": "Concergebouw-Koor (Amsterdam)", "country_associated": "ne", "variant_access_point": ["Choeur du Concertgebouw d'Amsterdam", "Concertgebouw chorus (Amsterdam)", "Concertgebouw (Amsterdam). Koor"], "authorized_access_point": "Concergebouw-Koor (Amsterdam)", "biographical_information": ["Amsterdam"]} 1 +2024-09-11 09:05:14.507034 2024-09-11 09:05:14.507039 0fa93904-526b-4a83-9000-f701ca8f2ca9 {"md5": "8d0f6d253c28f6fa96c5280f53415994", "pid": "185108385", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/185108385", "source": "IDREF"}], "variant_name": ["Madani El-, Rahma Benhamou"], "date_of_birth": "1966-09-07", "preferred_name": "Benhamou El Madani, Rahma", "country_associated": "ae", "variant_access_point": ["Madani El-, Rahma Benhamou"], "authorized_access_point": "Benhamou El Madani, Rahma, 1966-....", "biographical_information": ["Réalisatrice algérienne"]} 1 +2024-09-11 09:05:14.566717 2024-09-11 09:05:14.56672 6449b939-bc1e-4b72-b090-d17f720ebf62 {"md5": "4259abe3ec399d0fc49f100756c111c8", "pid": "185152023", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/185152023", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Prou, Marc", "country_associated": "xxu", "authorized_access_point": "Prou, Marc, 19..-....", "biographical_information": ["Professeur, Africana studies department, University of Massachusetts, Boston, Mass. (en 2010)"]} 1 +2024-09-11 09:05:14.62005 2024-09-11 09:05:14.620054 5cfa3db4-fd58-4aaf-bbed-b58bdf0da220 {"md5": "a7a8d97ddb66c723af4f68d350dfa95b", "pid": "185165249", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/185165249", "source": "IDREF"}], "preferred_name": "Congrès européen Sciences de l'homme et sociétés", "country_associated": "fr", "date_of_termination": "2003-06-07", "date_of_establishment": "2003-06-04", "authorized_access_point": "Congrès européen Sciences de l'homme et sociétés (04 ; 2003 ; Montpellier)"} 1 +2024-09-11 09:05:14.675138 2024-09-11 09:05:14.675141 dee54624-5cac-4bcc-a1b2-5c6c9b161084 {"md5": "de24888f781d57012812b71a7810147b", "pid": "185264352", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/185264352", "source": "IDREF"}], "preferred_name": "Keckler, Stephen W.", "country_associated": "xxu", "authorized_access_point": "Keckler, Stephen W.", "biographical_information": ["En poste : University of Texas, Austin, États-Unis (en 2009)"]} 1 +2024-09-11 09:05:14.733862 2024-09-11 09:05:14.733865 adf4a776-69ed-4728-abcf-197a9e16cf4a {"md5": "5e8feeb0385d64da26639d4d40cce7aa", "pid": "18526557X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/18526557X", "source": "IDREF"}], "variant_name": ["Instituto de España (Munich, Allemagne)", "Instituto Español de Cultura (Munich, Allemagne)"], "preferred_name": "Spanisches Kulturinstitut (Munich, Allemagne)", "country_associated": "gw", "variant_access_point": ["Instituto de España (Munich, Allemagne)", "Instituto Español de Cultura (Munich, Allemagne)"], "authorized_access_point": "Spanisches Kulturinstitut (Munich, Allemagne)"} 1 +2024-09-11 09:05:14.789633 2024-09-11 09:05:14.789637 d804a271-347d-4a64-9054-bd144a822659 {"md5": "708df3738dcfc40a5521bcbb83cf330e", "pid": "18530396X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/18530396X", "source": "IDREF"}], "preferred_name": "Obi, Ajuruchukwu", "country_associated": "sa", "authorized_access_point": "Obi, Ajuruchukwu"} 1 +2024-09-11 09:05:16.276161 2024-09-11 09:05:16.276165 c8c87fa3-3842-46b8-a2b3-6e0e95aa5f92 {"md5": "5b046885e7a1be528537f0d478653f13", "pid": "188848614", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/188848614", "source": "IDREF"}], "preferred_name": "Barreiro, Pilar", "country_associated": "sp", "authorized_access_point": "Barreiro, Pilar", "biographical_information": ["Maire de Carthagène de 1995 à 2015"]} 1 +2024-09-11 09:05:14.952399 2024-09-11 09:05:14.952403 de0175c3-a4b6-46f5-a921-8381e3c30b53 {"md5": "6c3a9aacc83019ee16b22eabbfcd6911", "pid": "185446221", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/185446221", "source": "IDREF"}], "variant_name": ["Comte, Nicolas le", "Le Comte, François", "Le Comte, F.", "Le Comte, Frère", "Le Comte, Frère", "Le Comte, François", "L. P. L. C. C.", "Le père Le Comte Célestin", "Comte, François Célestin le"], "date_of_birth": "1620", "date_of_death": "1689-02-10", "preferred_name": "Le Comte, Nicolas", "country_associated": "fr", "variant_access_point": ["Comte, Nicolas le", "Le Comte, François", "Le Comte, F.", "Le Comte, Frère", "Le Comte, Frère", "Le Comte, François", "L. P. L. C. C.", "Le père Le Comte Célestin", "Comte, François Célestin le"], "authorized_access_point": "Le Comte, Nicolas, 1620 ?-1689", "biographical_information": ["Célestin parisien. Entra dans l'ordre des Célestins le 28 septembre 1639. Décédé le 10 février 1689. A traduit de l'italien en français"]} 1 +2024-09-11 09:05:15.013895 2024-09-11 09:05:15.0139 4c883f50-e319-4c86-925d-3c4d4202821c {"md5": "14cc2b517157228378c95ec18a775c18", "pid": "185512461", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/185512461", "source": "IDREF"}], "preferred_name": "Weber, Uli", "country_associated": "xxk", "authorized_access_point": "Weber, Uli", "biographical_information": ["Photographe"]} 1 +2024-09-11 09:05:15.074492 2024-09-11 09:05:15.074496 52ca1b10-f0cc-4d7a-9dab-351de946a389 {"md5": "2316006dc42964f88d2b6ba33d9d0eab", "pid": "185627935", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["hun"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/185627935", "source": "IDREF"}], "date_of_birth": "1941-09-17", "preferred_name": "Szántó, Erika", "country_associated": "hu", "authorized_access_point": "Szántó, Erika, 1941-....", "biographical_information": ["Réalisatrice, scénariste"]} 1 +2024-09-11 09:05:15.129446 2024-09-11 09:05:15.12945 a1eb78fd-4690-42b3-a619-138468a5af8e {"md5": "7f7934fc8e1f2090755f423c43963de6", "pid": "185740936", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/185740936", "source": "IDREF"}], "preferred_name": "Académie du cirque et du music-hall", "country_associated": "fr", "authorized_access_point": "Académie du cirque et du music-hall", "biographical_information": ["Membres : Maurice Feaudierre dit Serge (président), Edouard Beaudu, Pierre Bost, Robert Baze, Yves Brayer, Jacques Chesnais, Marcel Duvau, Paul Gilson, Fernand Mery, Jean Texcier."]} 1 +2024-09-11 09:05:15.183484 2024-09-11 09:05:15.183489 03af792e-059a-419b-920e-499041b5a7ca {"md5": "0263e341f923268202e42c3d069be5a0", "pid": "185904300", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/185904300", "source": "IDREF"}], "variant_name": ["Hoult, Nicholas Caradoc"], "date_of_birth": "1989-12-07", "preferred_name": "Hoult, Nicholas", "country_associated": "xxk", "variant_access_point": ["Hoult, Nicholas Caradoc"], "authorized_access_point": "Hoult, Nicholas, 1989-....", "biographical_information": ["Acteur"]} 1 +2024-09-11 09:05:15.236697 2024-09-11 09:05:15.236703 87767b96-4664-4a62-bedf-eaf07f6ce5e3 {"md5": "039e4a1eeef40ed2af41180f648ebea5", "pid": "186075480", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/186075480", "source": "IDREF"}], "preferred_name": "Wood, Donald F.", "country_associated": "xxk", "authorized_access_point": "Wood, Donald F.", "biographical_information": ["En poste à l'Imperial Metal Industries Limited, Witton, Birmingham (1971)"]} 1 +2024-09-11 09:05:15.292471 2024-09-11 09:05:15.292476 b828d987-486e-4368-994c-4eff3948e6ef {"md5": "0f2ff8f0e9ad4904f8dd45ad6a12f863", "pid": "186152396", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "qualifier": "bénédictin", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/186152396", "source": "IDREF"}], "variant_name": ["Semeraro, Michael Davide", "Semeraro, MichaelDavide", "Michael Davide, bénédictin"], "date_of_birth": "1964", "preferred_name": "MichaelDavide, bénédictin", "country_associated": "it", "variant_access_point": ["Semeraro, Michael Davide", "Semeraro, MichaelDavide", "Michael Davide, bénédictin"], "authorized_access_point": "MichaelDavide, 1964-...., bénédictin", "biographical_information": ["Moine bénédictin du monastère de Germagno (Italie). Docteur en théologie spirituelle"]} 1 +2024-09-11 09:05:15.350998 2024-09-11 09:05:15.351004 b2f0bc2d-b18d-4209-a179-58fd6902d7cc {"md5": "5b6e01387f2b41d079958411a8beea63", "pid": "186272758", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/186272758", "source": "IDREF"}], "variant_name": ["村上, 世彰"], "date_of_birth": "1959", "preferred_name": "Murakami, Yoshiaki", "country_associated": "ja", "variant_access_point": ["村上, 世彰, 1959-...."], "authorized_access_point": "Murakami, Yoshiaki, 1959-....", "biographical_information": ["Transcription Hepburn modifié"]} 1 +2024-09-11 09:05:15.412669 2024-09-11 09:05:15.412672 20fc2573-df56-47ef-8168-6d81965fab39 {"md5": "825fe31fdaeb62c1baf1b2c866d5d98d", "pid": "186354614", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/186354614", "source": "IDREF"}], "variant_name": ["Vrettos, Maria Adrienne"], "preferred_name": "Vrettos, Adrienne Maria", "country_associated": "xxu", "variant_access_point": ["Vrettos, Maria Adrienne"], "authorized_access_point": "Vrettos, Adrienne Maria"} 1 +2024-09-11 09:05:15.464784 2024-09-11 09:05:15.464789 20b7cf0b-54c8-4cc4-b51a-9a47116e1631 {"md5": "8bc597536d7a9486fc4383df30365298", "pid": "18642597X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["tam"], "qualifier": "கணேசன்", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/18642597X", "source": "IDREF"}], "variant_name": ["மனோகரன், க., கணேசன்", "Manoharan, K."], "date_of_birth": "19XX", "preferred_name": "Man̲ōkaran̲, Ka., Kanēcaṉ", "country_associated": "ii", "variant_access_point": ["Manoharan, K."], "authorized_access_point": "Man̲ōkaran̲, Ka., 19..-...., Kanēcaṉ", "biographical_information": ["Romancier tamoul du 21e siècle, Ramanathapuram, Inde du Sud"]} 1 +2024-09-11 09:05:16.327527 2024-09-11 09:05:16.327532 fd528232-b6c6-49e6-bc9e-e37289e99aa8 {"md5": "1dc241fbf64e32f08446dee42bf5271c", "pid": "18897394X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/18897394X", "source": "IDREF"}], "date_of_birth": "19..", "preferred_name": "Gandhi, Nighat M.", "country_associated": "ii", "authorized_access_point": "Gandhi, Nighat M., 19..-", "biographical_information": ["Journaliste"]} 1 +2024-09-11 09:05:15.519626 2024-09-11 09:05:15.51963 61dc9f2c-ee19-49c9-ac7b-cd40a9fef1bc {"md5": "de30d88e07f3e5fbaa1f1c208b9e0e14", "pid": "186429495", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["tam"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/186429495", "source": "IDREF"}], "variant_name": ["வெங்கடேசன், இரா.", "Venkatesan, R."], "date_of_birth": "19XX", "preferred_name": "Veṅkaṭēcaṉ, Irā.", "country_associated": "ii", "variant_access_point": ["Venkatesan, R."], "authorized_access_point": "Veṅkaṭēcaṉ, Irā., 19..-....", "biographical_information": ["Littéraire tamoul du 21e siècle, Tamil Nadu, Inde du sud"]} 1 +2024-09-11 09:05:15.576047 2024-09-11 09:05:15.57605 affedfb7-1dbd-4df3-bbba-89058c6721c1 {"md5": "84e8fe6be1f3285b19f5cad8e15c7cc8", "pid": "187118914", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/187118914", "source": "IDREF"}], "variant_name": ["GOMA"], "preferred_name": "Gallery of Modern Art (Brisbane, Australie)", "country_associated": "at", "variant_access_point": ["GOMA"], "authorized_access_point": "Gallery of Modern Art (Brisbane, Australie)", "biographical_information": ["Galerie d'art; Adresse : Stanley Place, South Brisbane QLD 4101, Australie"]} 1 +2024-09-11 09:05:15.628198 2024-09-11 09:05:15.628201 94499464-c7a4-4d75-b826-376f926ffdb2 {"md5": "7265f4718e67b46a3d5594f249732a24", "pid": "187432627", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["zul"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/187432627", "source": "IDREF"}], "preferred_name": "Zulu, Nhlakanipho", "country_associated": "sa", "authorized_access_point": "Zulu, Nhlakanipho"} 1 +2024-09-11 09:05:15.679555 2024-09-11 09:05:15.679559 21f01b28-7f7b-4688-9934-17441a833415 {"md5": "a28078e24b79fcce74ab578291ffa350", "pid": "187440085", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/187440085", "source": "IDREF"}], "date_of_birth": "1988-10-31", "preferred_name": "Remilien, Cindy", "country_associated": "fr", "authorized_access_point": "Remilien, Cindy, 1988-....", "biographical_information": ["Titulaire du Doctorat en Médecine Vétérinaire (Alfort, 2014)"]} 1 +2024-09-11 09:05:15.732899 2024-09-11 09:05:15.732902 d52e0c8f-3824-46af-8634-9c77ae97d7a0 {"md5": "7f6363194ee03e95028d0c7a917976c5", "pid": "187474192", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["tha"], "qualifier": "อนันต์ มโนวงศ์", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/187474192", "source": "IDREF"}], "variant_name": ["พระครูพิศิษฏ์สรการ, อนันต์ มโนวงศ์", "อนันต์ มโนวงศ์", "ʿAnan Manōwong", "มโนวงศ์, อนันต์", "Manōwong, ʿAnan"], "preferred_name": "Phrakhrū Phisitsǭrakān, ʿAnan Manōwong", "country_associated": "th", "variant_access_point": ["อนันต์ มโนวงศ์", "ʿAnan Manōwong", "มโนวงศ์, อนันต์", "Manōwong, ʿAnan"], "authorized_access_point": "Phrakhrū Phisitsǭrakān, ʿAnan Manōwong", "biographical_information": ["Écrivain thaïlandais."]} 1 +2024-09-11 09:05:15.791522 2024-09-11 09:05:15.791526 76555d3b-8544-4b8f-b247-53ff4ba43a53 {"md5": "032d3b088dfc7422ccc8a82a9732beff", "pid": "187512272", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/187512272", "source": "IDREF"}], "date_of_birth": "1985-11-11", "preferred_name": "Aubineau, Béatrice", "country_associated": "fr", "authorized_access_point": "Aubineau, Béatrice", "biographical_information": ["Titulaire d'un Diplôme supérieur du Notariat de l'Université de Bordeaux en 2014"]} 1 +2024-09-11 09:05:15.845545 2024-09-11 09:05:15.845549 f4726bad-67dc-46eb-9765-f7ee23652ae6 {"md5": "9f3bde83c724b36357cf0c4bfca0bc59", "pid": "187515441", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/187515441", "source": "IDREF"}], "preferred_name": "Coordinadora de Defensa del Agua y de la Vida (Cochabamba, Bolivie)", "country_associated": "bo", "date_of_establishment": "1999-11-12", "authorized_access_point": "Coordinadora de Defensa del Agua y de la Vida (Cochabamba, Bolivie)"} 1 +2024-09-11 09:05:15.898211 2024-09-11 09:05:15.898214 b2dc6fbd-b348-401c-a6ba-9e0459e76186 {"md5": "c478b30987897cf09fd46f82c1cc3ae3", "pid": "187519374", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/187519374", "source": "IDREF"}], "preferred_name": "Guerid, Samia", "country_associated": "fr", "authorized_access_point": "Guerid, Samia", "biographical_information": ["Traduit de l'anglais vers le français"]} 1 +2024-09-11 09:05:15.951796 2024-09-11 09:05:15.951802 0d398bfd-a036-4ffb-88fd-5f41b99eceb0 {"md5": "e109636686fe7462e504b1a3be7c1aa0", "pid": "18786893X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/18786893X", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Laval, Roseline", "country_associated": "fr", "authorized_access_point": "Laval, Roseline, 19..-...."} 1 +2024-09-11 09:05:16.007886 2024-09-11 09:05:16.00789 3488ff95-08cc-4b0b-92c6-07faed6c12d3 {"md5": "a98ec43bdf63211fdb06714350032d0a", "pid": "188048383", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/188048383", "source": "IDREF"}], "preferred_name": "Sanin, Francisco", "authorized_access_point": "Sanin, Francisco"} 1 +2024-09-11 09:05:16.064828 2024-09-11 09:05:16.064833 338e021f-370c-41a6-8879-466dbf03b634 {"md5": "f05099e9460406fb404dbf68b76b4f82", "pid": "188624295", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/188624295", "source": "IDREF"}], "preferred_name": "Aernecke, Susanne", "country_associated": "sa", "authorized_access_point": "Aernecke, Susanne", "biographical_information": ["Écrivain allemand"]} 1 +2024-09-11 09:05:16.134303 2024-09-11 09:05:16.134309 d9e0704e-37e5-4eaf-afa3-6a3b246ac03b {"md5": "1338ec6984c92d00b7610f53a4bbd099", "pid": "188652647", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["cze"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/188652647", "source": "IDREF"}], "date_of_birth": "1947-12-19", "preferred_name": "Hrach, Pavel", "authorized_access_point": "Hrach, Pavel, 1947-....", "biographical_information": ["Artiste peintre, graphiste designer, illustrateur et typographe. - Directeur artistique du Typo+ graphic design studio, Prague (en 2009)"]} 1 +2024-09-11 09:05:16.397241 2024-09-11 09:05:16.397245 77187578-e83d-4a91-a3f7-9ecff9599e7d {"md5": "79042cdd5d32610e6bdd10bb9fce5714", "pid": "189006161", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["cze", "slv"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/189006161", "source": "IDREF"}], "preferred_name": "Benhart, František", "authorized_access_point": "Benhart, František", "biographical_information": ["Traducteur"]} 1 +2024-09-11 09:05:16.447686 2024-09-11 09:05:16.447691 175ab508-ba1d-4cf5-947d-e6ab18104998 {"md5": "21a0628fa7d8805e4549df93298e221e", "pid": "189240113", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre", "ira"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/189240113", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Salahshour Dehchali, Jamshid", "country_associated": "fr", "authorized_access_point": "Salahshour Dehchali, Jamshid, 19..-....", "biographical_information": ["Titulaire d’un doctorat en Urbanisme (INSA Lyon 1997)"]} 1 +2024-09-11 09:05:16.501256 2024-09-11 09:05:16.501261 0639740f-1a96-488d-92c5-d55be241c6a2 {"md5": "6be85af6b551ec033603995c47c727b9", "pid": "189252138", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/189252138", "source": "IDREF"}], "date_of_birth": "1989-10-08", "preferred_name": "Biaudis, Marine", "country_associated": "fr", "authorized_access_point": "Biaudis, Marine", "biographical_information": ["Titulaire d'une thèse d'exercice de pharmacie (Limoges : 2015 ; 3302)"]} 1 +2024-09-11 09:05:16.554333 2024-09-11 09:05:16.554337 94fd51a0-d12c-40c2-baec-049051446676 {"md5": "b88cc29688a18b446a1dc1a5c07a3a84", "pid": "189322454", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["chi"], "qualifier": "professeur de français", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/189322454", "source": "IDREF"}], "variant_name": ["李, 军, professeur de français"], "date_of_birth": "1956", "preferred_name": "Li, Jun, professeur de français", "country_associated": "cc", "variant_access_point": ["李, 军, 1956-...., professeur de français"], "authorized_access_point": "Li, Jun, 1956-....., professeur de français"} 1 +2024-09-11 09:05:16.614662 2024-09-11 09:05:16.614667 90e409d8-11eb-496d-88fe-eea15a18f048 {"md5": "4a9a526066edfc586a5a06f373ad4c00", "pid": "189510145", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/189510145", "source": "IDREF"}], "preferred_name": "Institut für Jugendkunde (Brême, Allemagne)", "country_associated": "gw", "authorized_access_point": "Institut für Jugendkunde (Brême, Allemagne)"} 1 +2024-09-11 09:05:16.675478 2024-09-11 09:05:16.675481 4e7e764b-43b1-487e-9dc3-ea5d2626f81a {"md5": "0c7c6aa37d1ace53cb9f37163bf131c0", "pid": "189789581", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/189789581", "source": "IDREF"}], "variant_name": ["石踊, 紘一"], "date_of_birth": "1941", "preferred_name": "Ishiodori, Kōichi", "country_associated": "ja", "variant_access_point": ["石踊, 紘一, 1941-...."], "authorized_access_point": "Ishiodori, Kōichi, 1941-....", "biographical_information": ["Transcription Hepburn modifiée", "Peintre"]} 1 +2024-09-11 09:05:16.742206 2024-09-11 09:05:16.742209 2634e447-6d37-4001-926c-34f9e0d40405 {"md5": "1410fb15aa03943bd474121f4a531f2b", "pid": "189897678", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/189897678", "source": "IDREF"}], "preferred_name": "Te Riele, G.-J.-M.-J.", "country_associated": "ne", "authorized_access_point": "Te Riele, G.-J.-M.-J."} 1 +2024-09-11 09:05:16.794159 2024-09-11 09:05:16.794163 89066fe9-d8bf-4fb0-9db4-22260fa2f705 {"md5": "21f86efaf94d700d6fffb7db45d5eea2", "pid": "189921080", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/189921080", "source": "IDREF"}], "date_of_birth": "1979", "preferred_name": "Mishara, Sara", "country_associated": "xxc", "authorized_access_point": "Mishara, Sara, 1979-....", "biographical_information": ["Directrice de la photographie"]} 1 +2024-09-11 09:05:16.848222 2024-09-11 09:05:16.848227 bf0c1b6e-a848-4757-923b-b1149ca03096 {"md5": "988690f68258a266de2fe0a7f0df6029", "pid": "190050721", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/190050721", "source": "IDREF"}], "preferred_name": "Feroumont, Bernadette", "country_associated": "fr", "authorized_access_point": "Feroumont, Bernadette"} 1 +2024-09-11 09:05:16.910909 2024-09-11 09:05:16.910912 d8755100-3523-4713-bcbd-355e95061e2d {"md5": "b210a92b3127b01fb49a4e0c9d209022", "pid": "190056002", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/190056002", "source": "IDREF"}], "variant_name": ["McBride, Christopher"], "date_of_birth": "1941", "preferred_name": "McBride, Chris", "country_associated": "xx", "variant_access_point": ["McBride, Christopher"], "authorized_access_point": "McBride, Chris, 1941-...."} 1 +2024-09-11 09:05:16.967646 2024-09-11 09:05:16.967649 429491c3-159a-4af8-96c7-c3d4801533f4 {"md5": "5f25467aef57a93dbe09b78b61f54c69", "pid": "190064323", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/190064323", "source": "IDREF"}], "preferred_name": "Wilkins, William George", "authorized_access_point": "Wilkins, William George"} 1 +2024-09-11 09:05:17.019078 2024-09-11 09:05:17.019083 edce13a7-b6fc-465e-a0d7-267fc0908d2e {"md5": "05c5b02a679d3403529c9ff070afaf99", "pid": "190122277", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/190122277", "source": "IDREF"}], "preferred_name": "Wildeboer, Ina Hinderika", "authorized_access_point": "Wildeboer, Ina Hinderika"} 1 +2024-09-11 09:05:17.079719 2024-09-11 09:05:17.079724 f50775cf-e5d7-4380-8ffb-1aae43aa294a {"md5": "7069c57a4d7f0f0d1ea6f6f7744bf5ba", "pid": "190133139", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/190133139", "source": "IDREF"}], "variant_name": ["ISE 8"], "preferred_name": "International symposium on electrets", "date_of_termination": "1994-09-09", "variant_access_point": ["ISE 8"], "date_of_establishment": "1994-09-07", "authorized_access_point": "International symposium on electrets (8 ; 1994 ; Paris)"} 1 +2024-09-11 09:05:49.727834 2024-09-11 09:05:49.727838 6bcb4c69-5396-4b83-93b2-dac91b486dc5 {"md5": "5de4a96cb593741fcbd88a556d39ea74", "pid": "240936094", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240936094", "source": "IDREF"}], "preferred_name": "Lissom, Justin", "country_associated": "fr", "authorized_access_point": "Lissom, Justin"} 1 +2024-09-11 09:05:17.133926 2024-09-11 09:05:17.133929 131b19b5-36ca-47f2-8562-087d6bc31dae {"md5": "f53613c3beafe159857fc8f5abb7c56e", "pid": "190148667", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/190148667", "source": "IDREF"}], "variant_name": ["Facoltà giuridica (Naples, Italie)"], "preferred_name": "Università degli studi (Naples, Italie). Facoltà giuridica", "country_associated": "it", "date_of_termination": "1991", "variant_access_point": ["Facoltà giuridica (Naples, Italie)"], "date_of_establishment": "1948", "parallel_access_point": ["Université de Naples (Naples, Italie). Faculté de droit"], "authorized_access_point": "Università degli studi (Naples, Italie). Facoltà giuridica"} 1 +2024-09-11 09:05:17.192389 2024-09-11 09:05:17.192394 e6fc534b-bf31-4500-b31d-c124e7f2401b {"md5": "aa01a9efd1c2be745b66114ee4e2cacb", "pid": "19024951X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["hrv"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/19024951X", "source": "IDREF"}], "variant_name": ["Божић, Иван"], "date_of_birth": "1915-04-23", "date_of_death": "1977-08-20", "preferred_name": "Božić, Ivan", "country_associated": "ci", "variant_access_point": ["Божић, Иван, 1915-1977"], "authorized_access_point": "Božić, Ivan, 1915-1977", "biographical_information": ["Historien croate", "Lieu de naissance Makarska (Croatie). Lieu de décès Belgrade"]} 1 +2024-09-11 09:05:17.263564 2024-09-11 09:05:17.263568 24aae7cd-3da6-4731-84d6-53aca39709d2 {"md5": "5c1219db1ebecd163d3b87bf586fd54b", "pid": "190365420", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/190365420", "source": "IDREF"}], "preferred_name": "Borgnet, Jules", "country_associated": "be", "authorized_access_point": "Borgnet, Jules"} 1 +2024-09-11 09:05:17.320214 2024-09-11 09:05:17.320218 d7a8a2b9-fbaa-41cc-aa61-b775009e7eb4 {"md5": "60132cafd72783bfd1d598c0b027ed61", "pid": "190401370", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/190401370", "source": "IDREF"}], "preferred_name": "Droniou, Claire", "country_associated": "fr", "authorized_access_point": "Droniou, Claire"} 1 +2024-09-11 09:05:17.3769 2024-09-11 09:05:17.376904 1af8be8b-14d6-4b6c-b726-74a6ee2687cc {"md5": "74b0a88e90da3ce39de834aa2a594910", "pid": "190408413", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/190408413", "source": "IDREF"}], "preferred_name": "Chanut, Valérie", "country_associated": "fr", "authorized_access_point": "Chanut, Valérie", "biographical_information": ["Adresse : 41 rue Mazarine, 75006 Paris. Tél. : 01 43 54 04 70", "Libraire, expert"]} 1 +2024-09-11 09:05:17.427621 2024-09-11 09:05:17.427626 cea867b6-6416-4a41-93e9-b6956a32e234 {"md5": "66895c3b681e641f1b2523814b7964c4", "pid": "190629525", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/190629525", "source": "IDREF"}], "variant_name": ["AAMB"], "preferred_name": "Association des amis de Marius Borgeaud", "country_associated": "sz", "variant_access_point": ["AAMB"], "date_of_establishment": "1993", "authorized_access_point": "Association des amis de Marius Borgeaud", "biographical_information": ["Adresse : Condémine 9, CH-1315 La Sarraz (Suisse)"]} 1 +2024-09-11 09:05:17.482376 2024-09-11 09:05:17.48238 09a16e70-482a-4e1b-af25-7790db57f08f {"md5": "0ad4b2ced3cd6e0017462511bd2b5c9a", "pid": "190679204", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa", "eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/190679204", "source": "IDREF"}], "date_of_birth": "1949", "preferred_name": "Bustamante, Maris", "country_associated": "xxu", "authorized_access_point": "Bustamante, Maris, 1949-...", "biographical_information": ["Artiste"]} 1 +2024-09-11 09:05:17.536023 2024-09-11 09:05:17.536027 6f36cf6a-be60-4145-b5ce-02527cc4ef13 {"md5": "f70d686fcefece371a4a8242caa889dd", "pid": "190701285", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/190701285", "source": "IDREF"}], "variant_name": ["De Roo, Ruben"], "date_of_birth": "19XX", "preferred_name": "Roo, Ruben de", "country_associated": "ne", "variant_access_point": ["De Roo, Ruben"], "authorized_access_point": "Roo, Ruben de, 19..-....", "biographical_information": ["Historien d'art et historien du théâtre"]} 1 +2024-09-11 09:05:17.590693 2024-09-11 09:05:17.590697 b0fce922-a378-4d5e-89ff-5a37670ae447 {"md5": "2b071ac687e6a5829f69065b69f77fe0", "pid": "190708085", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/190708085", "source": "IDREF"}], "variant_name": ["Винокур, Раиса Даниловна", "Vinokour, Raïssa Danilovna", "Vinokour, Raïssa", "Vinokour, R. D.", "Винокур, Раиса", "Винокур, Р. Д.", "Винокур, Р."], "preferred_name": "Vinokur, Raisa Danilovna", "country_associated": "ru", "variant_access_point": ["Vinokour, Raïssa Danilovna", "Vinokour, Raïssa", "Vinokour, R. D.", "Винокур, Раиса", "Винокур, Р. Д.", "Винокур, Р."], "authorized_access_point": "Vinokur, Raisa Danilovna", "biographical_information": ["Maître de conférence à l'Institut d’État des finances de Moscou"]} 1 +2024-09-11 09:05:17.643992 2024-09-11 09:05:17.643996 02e10adc-7ef9-4624-8965-6b4c41b1c531 {"md5": "a4480a02bc7b9a0926d96b8d8f0447cc", "pid": "190712120", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/190712120", "source": "IDREF"}], "preferred_name": "Brázdová, Veronika", "authorized_access_point": "Brázdová, Veronika", "biographical_information": ["En poste au Département de physique et d'astronomie de l'Université College London"]} 1 +2024-09-11 09:05:17.699463 2024-09-11 09:05:17.699468 dee93fd8-573d-4d85-a07a-996d894aac30 {"md5": "72e9869186ae475525d42e6a39e83449", "pid": "190913142", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/190913142", "source": "IDREF"}], "variant_name": ["Milligan, Jean Callender"], "preferred_name": "Milligan, Jean C.", "variant_access_point": ["Milligan, Jean Callender"], "authorized_access_point": "Milligan, Jean C.", "biographical_information": ["Spécialiste des danses folkloriques écossaises"]} 1 +2024-09-11 09:05:18.388431 2024-09-11 09:05:18.388435 b93c6960-cbfe-4f05-a958-f169940c3c0a {"md5": "85b6028d119292715b468f4d50685b3b", "pid": "192166506", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/192166506", "source": "IDREF"}], "variant_name": ["DJH"], "preferred_name": "Deutsches Jugendherbergswerk", "variant_access_point": ["DJH"], "authorized_access_point": "Deutsches Jugendherbergswerk"} 1 +2024-09-11 09:05:17.759213 2024-09-11 09:05:17.759218 7e4e23ce-25f4-4749-907c-7da105b5658e {"md5": "2bece61575bc47909e5d5512d6b8b282", "pid": "19105254X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/19105254X", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Henry, Manuel", "country_associated": "fr", "authorized_access_point": "Henry, Manuel, 19..-....", "biographical_information": ["Titulaire du Doctorat en Sciences (Lyon 1, 2006). Ingénieur CPE Lyon"]} 1 +2024-09-11 09:05:17.811315 2024-09-11 09:05:17.811319 4f680c23-0091-4076-adac-29569aaf5a4b {"md5": "b6334a4e111de409b97325972e43d1eb", "pid": "191057142", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/191057142", "source": "IDREF"}], "preferred_name": "Lanman, Thomas Hinckley", "authorized_access_point": "Lanman, Thomas Hinckley"} 1 +2024-09-11 09:05:17.86942 2024-09-11 09:05:17.869427 bf7e66a6-11ff-4e7e-ba76-9621d16a166e {"md5": "1870fd1431e08cbd63a3a60cf9e5e43f", "pid": "19107425X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/19107425X", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Boileau, Géry", "authorized_access_point": "Boileau, Géry, 19..-...."} 1 +2024-09-11 09:05:17.929782 2024-09-11 09:05:17.929785 61f7f3e1-e12d-4bb9-afa1-88e7c557edd8 {"md5": "82ce39bd9c4228d848183b8d6d8b2b2d", "pid": "191305928", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/191305928", "source": "IDREF"}], "preferred_name": "Tessoni, Eugenio", "country_associated": "it", "authorized_access_point": "Tessoni, Eugenio", "biographical_information": ["Spécialiste d'architecture"]} 1 +2024-09-11 09:05:17.982941 2024-09-11 09:05:17.982946 c1b0321f-326b-41a1-9219-fd88249d966a {"md5": "ac281e4f255b112883ca7e38a2f0761f", "pid": "191591335", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/191591335", "source": "IDREF"}], "date_of_birth": "1980-03-13", "preferred_name": "Lavaux, François", "country_associated": "fr", "authorized_access_point": "Lavaux, François, 1980-...."} 1 +2024-09-11 09:05:18.035461 2024-09-11 09:05:18.035464 6d338fdb-3d2a-45e3-acce-c122cf084eb8 {"md5": "7055a436bac95f348984455e4ad4fafb", "pid": "191603449", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/191603449", "source": "IDREF"}], "date_of_birth": "1965", "preferred_name": "Tosi, Maria Chiara", "country_associated": "it", "authorized_access_point": "Tosi, Maria Chiara, 1965-....", "biographical_information": ["Professeur d'Urban design, IUAV (2013)"]} 1 +2024-09-11 09:05:18.090152 2024-09-11 09:05:18.090156 09a5250b-ee00-4e6a-868d-f7882d5fa3e3 {"md5": "e1a49dcee5c140ba19d958a1279a0a1e", "pid": "191644315", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/191644315", "source": "IDREF"}], "variant_name": ["Josa, Pedro F. R."], "date_of_birth": "1975", "preferred_name": "Josa, Pedro Francisco Ramos", "country_associated": "sp", "variant_access_point": ["Josa, Pedro F. R."], "authorized_access_point": "Josa, Pedro Francisco Ramos, 1975-....", "biographical_information": ["Licencié en science politique et sociologie. Titulaire d'un doctorat sur la paix et la sécurité internationale : Instituto General Gutiérrez Mellado (UNED), Madrid, Espagne. Collaborateur : Instituto Conde de Floridablanca, Espagne, et de la revue électronique : \\"kosmos-polis"]} 1 +2024-09-11 09:05:18.148712 2024-09-11 09:05:18.148717 31f69798-fa90-4731-b732-923d10ef53ef {"md5": "fde223b6a2e653a9c8aea2401fabf252", "pid": "191710849", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "qualifier": "Médecin", "numeration": "19..-19..?", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/191710849", "source": "IDREF"}], "preferred_name": "Hangleiter, H., Médecin", "country_associated": "gw", "authorized_access_point": "Hangleiter, H., 19..-19..?, Médecin", "biographical_information": ["Médecin. Chef-médecin de l'hôpital Karl-Olga de Stuttgart."]} 1 +2024-09-11 09:05:18.203694 2024-09-11 09:05:18.203699 740600ea-303e-4ba8-b694-34ee1daca028 {"md5": "41e3334d85f814059a4b95adddefdf75", "pid": "191721166", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/191721166", "source": "IDREF"}], "variant_name": ["Conférence intercantonale des chefs des départements de l'instruction publique de la Suisse romande et du Tessin. Délégation à la langue française", "Conférence intercantonale des chefs des départements de l'instruction publique de la Suisse romande et du Tessin. DLF", "CIIP. DLF", "DLF", "Délégation à la langue française"], "preferred_name": "Conférence intercantonale de l'instruction publique de la Suisse romande et du Tessin. Délégation à la langue française", "country_associated": "sz", "variant_access_point": ["Conférence intercantonale des chefs des départements de l'instruction publique de la Suisse romande et du Tessin. Délégation à la langue française", "Conférence intercantonale des chefs des départements de l'instruction publique de la Suisse romande et du Tessin. DLF", "CIIP. DLF", "DLF", "Délégation à la langue française"], "authorized_access_point": "Conférence intercantonale de l'instruction publique de la Suisse romande et du Tessin. Délégation à la langue française"} 1 +2024-09-11 09:05:18.258925 2024-09-11 09:05:18.25893 cb074147-5b4f-4ae8-a932-55030e165960 {"md5": "035e1af96d5bd11cfd5c0c598c5f65d1", "pid": "191808105", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["gre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/191808105", "source": "IDREF"}], "variant_name": ["Design Museum of Thessaloniki", "Mouseio Design (Thessalonique)", "Mouseio Design Thessaloniki"], "preferred_name": "Design Museum (Thessalonique, Grèce)", "country_associated": "gr", "variant_access_point": ["Design Museum of Thessaloniki", "Mouseio Design (Thessalonique)", "Mouseio Design Thessaloniki"], "date_of_establishment": "1993", "authorized_access_point": "Design Museum (Thessalonique, Grèce)", "biographical_information": ["Adresse : 43, Mitropoleos St., GR-546 23 Thessaloniki"]} 1 +2024-09-11 09:05:18.328398 2024-09-11 09:05:18.328402 7d324c14-29d3-408b-ab5f-b9c8033117fb {"md5": "a261ef6924d9365a2dcce5d5909900c3", "pid": "192012401", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/192012401", "source": "IDREF"}], "date_of_birth": "1991-01-29", "preferred_name": "Gout, Laure", "country_associated": "fr", "authorized_access_point": "Gout, Laure, 1991-....", "biographical_information": ["A soutenu un mémoire d'orthophonie à l'école d'orthophonie de l'Université de Nice en 2015"]} 1 +2024-09-11 09:05:18.443953 2024-09-11 09:05:18.443957 e36e0ede-56a6-4975-8cd7-a2dc00c63915 {"md5": "f3f124cd9a4f4cdf0c69128102a5d1ef", "pid": "192198149", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/192198149", "source": "IDREF"}], "date_of_birth": "1990-12-31", "preferred_name": "Scheer, Marianne", "country_associated": "fr", "authorized_access_point": "Scheer, Marianne, 1990-", "biographical_information": ["Auteur d'une thèse d'exercice de chirurgie dentaire soutenue à Paris Diderot - Paris 7 en 2015"]} 1 +2024-09-11 09:05:18.513205 2024-09-11 09:05:18.51321 85e33c6e-1bd0-45af-9e6e-4cf244cda0cf {"md5": "07b16a7dcae169edbb2aa055c0c495dd", "pid": "192269097", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/192269097", "source": "IDREF"}], "variant_name": ["Union nationale des fédérations départementales des chasseurs (France). Région cynégétique du Sud-Ouest"], "preferred_name": "Région cynégétique du Sud-Ouest", "country_associated": "fr", "variant_access_point": ["Union nationale des fédérations départementales des chasseurs (France). Région cynégétique du Sud-Ouest"], "authorized_access_point": "Région cynégétique du Sud-Ouest", "biographical_information": ["Regroupe les 13 fédérations départementales des chasseurs du Sud-Ouest", "Adresse : C/o Fédération départementale des chasseurs des Landes, 151 av. Georges-Clemenceau, BP 172, 40104 Dax Cedex. Tél. 58.90.18.69"]} 1 +2024-09-11 09:05:18.578502 2024-09-11 09:05:18.578506 bd1d3b68-f819-4500-af47-6ccd877bf82e {"md5": "356f1e3636f87cc3d47778d48f2c3c28", "pid": "192280953", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/192280953", "source": "IDREF"}], "date_of_birth": "18", "date_of_death": "18", "preferred_name": "Leharivel, Pierre-Théodose-Constant", "country_associated": "fr", "authorized_access_point": "Leharivel, Pierre-Théodose-Constant, 18..-....", "biographical_information": ["Docteur ès Lettres de l'Université de Caen (en 1841)"]} 1 +2024-09-11 09:05:18.632282 2024-09-11 09:05:18.632286 4f12a57e-0e9f-489a-965c-06c9cdb2b092 {"md5": "624a8b3f90f4cb2b2c0c02439c5066f7", "pid": "192298348", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/192298348", "source": "IDREF"}], "preferred_name": "Santini, Gianfranco", "country_associated": "it", "authorized_access_point": "Santini, Gianfranco"} 1 +2024-09-11 09:05:18.69352 2024-09-11 09:05:18.693525 18d09607-8cc6-4943-9fc7-552cd70397a4 {"md5": "1041f7896acbf2ff51a20f29af8fd85c", "pid": "192319116", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/192319116", "source": "IDREF"}], "date_of_birth": "1906", "date_of_death": "1973", "preferred_name": "Dye, Charlie", "country_associated": "xxu", "authorized_access_point": "Dye, Charlie, 1906-1973", "biographical_information": ["Artiste américain, connu pour ses peintures de cowboys"]} 1 +2024-09-11 09:05:18.749144 2024-09-11 09:05:18.749148 a74b61ce-e5c8-47d0-80ea-f08f275d2487 {"md5": "79eed7b921c2d383875cc8e732dd9e26", "pid": "19239486X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/19239486X", "source": "IDREF"}], "variant_name": ["Recherche et pratique sur les activités (Vitry-sur-Seine, Val-de-Marne)", "ARPACT"], "preferred_name": "Association Recherche et pratique sur les activités (Vitry-sur-Seine, Val-de-Marne)", "country_associated": "fr", "variant_access_point": ["Recherche et pratique sur les activités (Vitry-sur-Seine, Val-de-Marne)", "ARPACT"], "authorized_access_point": "Association Recherche et pratique sur les activités (Vitry-sur-Seine, Val-de-Marne)", "biographical_information": ["Adresse : 7 av. de la République, 94400 Vitry-sur-Seine"]} 1 +2024-09-11 09:05:18.799374 2024-09-11 09:05:18.799377 715f1ed6-1b42-4b28-90d7-90e3dfd098d7 {"md5": "8d6d7cbd4389a0ac8bdc077934beb9c5", "pid": "192408909", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre", "bul"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/192408909", "source": "IDREF"}], "preferred_name": "Baracoff-Dimitre", "country_associated": "bu", "authorized_access_point": "Baracoff-Dimitre", "biographical_information": ["Né à Pechtera (Bulgarie)", "Auteur d'une thèse de doctorat en médecine (Paris, 1902)"]} 1 +2024-09-11 09:05:18.853813 2024-09-11 09:05:18.853818 2d341330-44e9-4a78-a923-25c5c7d34adc {"md5": "83de86a2e59b5e2afc8b7182a6bdb838", "pid": "192529641", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/192529641", "source": "IDREF"}], "variant_name": ["APPMSA"], "preferred_name": "American Pulp and Paper Mill Superintendents Association", "country_associated": "xxu", "variant_access_point": ["APPMSA"], "authorized_access_point": "American Pulp and Paper Mill Superintendents Association"} 1 +2024-09-11 09:05:18.91068 2024-09-11 09:05:18.910683 79655b7e-4b10-483a-a052-0f23ecc3002c {"md5": "1a6e6d6cd1cdacbf84e1bb2491e8342f", "pid": "192628496", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/192628496", "source": "IDREF"}], "preferred_name": "Yashinsky, Jack", "country_associated": "fr", "authorized_access_point": "Yashinsky, Jack"} 1 +2024-09-11 09:05:18.973079 2024-09-11 09:05:18.973082 54fdc2d7-9c47-4d75-b7f5-ff9c75faedd5 {"md5": "617fe1aa0ad6a54eae85e90b8126f44d", "pid": "192640895", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/192640895", "source": "IDREF"}], "preferred_name": "Pla, Jacqueline", "country_associated": "fr", "authorized_access_point": "Pla, Jacqueline", "biographical_information": ["Auteur en médecine"]} 1 +2024-09-11 09:05:19.025094 2024-09-11 09:05:19.025098 2939690d-f99f-4ed5-ac8a-b4abcaa162e7 {"md5": "10a8ed5d913a7dd3fbaefa413c0bbe81", "pid": "192658697", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/192658697", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Casanova, Tiago", "country_associated": "po", "authorized_access_point": "Casanova, Tiago, 19..-....", "biographical_information": ["Photographe portugais."]} 1 +2024-09-11 09:05:19.075874 2024-09-11 09:05:19.075878 6aa4263a-fac8-462a-be88-ad8ba7d6d7cc {"md5": "de5c3d4f69be0e16283c6100ff8e94ae", "pid": "192776851", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/192776851", "source": "IDREF"}], "preferred_name": "Vavouras, Ioannis", "country_associated": "gr", "authorized_access_point": "Vavouras, Ioannis", "biographical_information": ["En poste, Sociology Department, University of Aegean, Greece"]} 1 +2024-09-11 09:05:19.135345 2024-09-11 09:05:19.135352 af9bce40-9463-4ca1-9abd-2914a052c018 {"md5": "cfca91309ede400ca366c916df48e76d", "pid": "192790099", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/192790099", "source": "IDREF"}], "variant_name": ["Klinkhardt und Biermann. Verlag von (Leipzig)"], "preferred_name": "Klinkhardt & Biermann (Leipzig)", "country_associated": "gw", "variant_access_point": ["Klinkhardt und Biermann. Verlag von (Leipzig)"], "date_of_establishment": "1907", "authorized_access_point": "Klinkhardt & Biermann (Leipzig)", "biographical_information": ["éditeurs allemands du début du 20e siècle"]} 1 +2024-09-11 09:05:19.19428 2024-09-11 09:05:19.194285 9c348970-d252-4a5a-8a8a-a97a6806e771 {"md5": "3ee396cf3b0f33a6f235fa7b7094fdf5", "pid": "192856200", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/192856200", "source": "IDREF"}], "preferred_name": "Siss, William", "country_associated": "fr", "authorized_access_point": "Siss, William", "biographical_information": ["Peintres aux armées"]} 1 +2024-09-11 09:05:19.251419 2024-09-11 09:05:19.251424 e3b7500f-cf2d-43b7-a227-600d6b10d23c {"md5": "6ef128ba63a70b02c1fe3ba184f8e18a", "pid": "192883313", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/192883313", "source": "IDREF"}], "date_of_birth": "1954", "preferred_name": "Fuchino, Sakaé", "country_associated": "gw", "authorized_access_point": "Fuchino, Sakaé, 1954-....", "biographical_information": ["Mathématicien en poste à l'Université de Kobe, Japon"]} 1 +2024-09-11 09:05:19.303007 2024-09-11 09:05:19.303012 cfe8bb04-fe9f-4e5e-a7e8-2535b44c6b6f {"md5": "0469b8a2912c79e9a0ad369898a7f557", "pid": "192969285", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/192969285", "source": "IDREF"}], "variant_name": ["Priorato cluniacense dei Santi Pietro e Paolo (Castelletto Cervo, Italie)", "Monastero dei Santi Pietro e Paolo (Castelletto Cervo, Italie)", "Monastero di Castelletto"], "preferred_name": "Priorato cluniacense dei S. S. Pietro e Paolo (Castelletto Cervo, Italie)", "country_associated": "it", "variant_access_point": ["Priorato cluniacense dei Santi Pietro e Paolo (Castelletto Cervo, Italie)", "Monastero dei Santi Pietro e Paolo (Castelletto Cervo, Italie)", "Monastero di Castelletto"], "authorized_access_point": "Priorato cluniacense dei S. S. Pietro e Paolo (Castelletto Cervo, Italie)"} 1 +2024-09-11 09:05:19.355955 2024-09-11 09:05:19.355958 7196b066-8afa-44f4-860c-25b97b1589c5 {"md5": "df7f5d3caf80c82569cd134d3883b244", "pid": "193161109", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/193161109", "source": "IDREF"}], "variant_name": ["Thériault, Claudia M.", "Whalen, Claudia M. Thériault"], "preferred_name": "Thériault-Whalen, Claudia M.", "country_associated": "fr", "variant_access_point": ["Thériault, Claudia M.", "Whalen, Claudia M. Thériault"], "authorized_access_point": "Thériault-Whalen, Claudia M.", "biographical_information": ["Doctorat à l' université René Descartes à Paris V, professeure au département de psychologie à l'université Saint Thomas, Frédéricton au Canada (1993)"]} 1 +2024-09-11 09:05:19.413634 2024-09-11 09:05:19.413638 620b3c07-b2d9-43de-b9d9-b14a260e0c2e {"md5": "9c2f521bee8c93000fc4194056665607", "pid": "193173328", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/193173328", "source": "IDREF"}], "preferred_name": "Ensemble Kapsberger", "country_associated": "xx", "date_of_establishment": "19XX", "authorized_access_point": "Ensemble Kapsberger", "biographical_information": ["Ensemble instrumental"]} 1 +2024-09-11 09:05:19.467295 2024-09-11 09:05:19.4673 30556109-c724-4191-bb00-3e2fa5ceb30c {"md5": "bdee47da41f50d31ecceb8fca5e39ce5", "pid": "193181878", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/193181878", "source": "IDREF"}], "preferred_name": "Mir, Mark Stephen", "authorized_access_point": "Mir, Mark Stephen", "biographical_information": ["Archiviste"]} 1 +2024-09-11 09:05:19.543564 2024-09-11 09:05:19.543569 f0253e6a-d9b0-4f3b-8423-a2e6fed99fcc {"md5": "8457eaae0d1f796c2d5abd52cc751656", "pid": "193183226", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/193183226", "source": "IDREF"}], "date_of_birth": "1988-02-25", "preferred_name": "Stahl, Hélène", "country_associated": "fr", "authorized_access_point": "Stahl, Hélène", "biographical_information": ["Titulaire d'une thèse de docteur en médecine (Strasbourg, 2016)."]} 1 +2024-09-11 09:05:19.595723 2024-09-11 09:05:19.595726 f04b800c-59ef-4f6e-a136-266eca33325d {"md5": "7aa9044a7d77c5d9b1a52dc6f474bb86", "pid": "193223287", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/193223287", "source": "IDREF"}], "preferred_name": "Mackiewicz, Andrea", "country_associated": "xx", "authorized_access_point": "Mackiewicz, Andrea", "biographical_information": ["Editeur de The Economist Intelligence Unit"]} 1 +2024-09-11 09:05:19.64823 2024-09-11 09:05:19.648235 2d112f1c-50dd-476a-a02d-24067031ce2e {"md5": "0f67d83ce6872bfe9bd922bab6698be6", "pid": "193276348", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/193276348", "source": "IDREF"}], "preferred_name": "Convegno di studi sulla figura, sull'opera e sull'attualità di Francesco Domenico Falcucci", "country_associated": "it", "date_of_termination": "2004", "date_of_establishment": "2004", "authorized_access_point": "Convegno di studi sulla figura, sull'opera e sull'attualità di Francesco Domenico Falcucci (2002 ; Laerru)"} 1 +2024-09-11 09:05:19.706975 2024-09-11 09:05:19.70698 63a7793f-c8a8-4e9c-b8b5-39f1affae593 {"md5": "0d5f226c206431c5a1ed6e75dd10f8fb", "pid": "193284065", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/193284065", "source": "IDREF"}], "date_of_birth": "1965-07-23", "preferred_name": "Minguez, Elvira", "country_associated": "sp", "authorized_access_point": "Minguez, Elvira, 1965-....", "biographical_information": ["Actrice"]} 1 +2024-09-11 09:05:19.761701 2024-09-11 09:05:19.761704 4aca1847-059e-465c-baa6-915ccede60cd {"md5": "1cf475edd41ac4f02f3b74a23134e33f", "pid": "19329074X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/19329074X", "source": "IDREF"}], "date_of_birth": "1989-09-16", "preferred_name": "David, Leslie", "country_associated": "fr", "authorized_access_point": "David, Leslie, 1989-....", "biographical_information": ["Auteur d'une thèse en Sciences de l'environnement à Paris 6 en 2015"]} 1 +2024-09-11 09:05:19.82644 2024-09-11 09:05:19.826445 8754dd85-5535-4521-8ebc-de1a57e0f164 {"md5": "c416621456e8840b9ef78d2bef22c681", "pid": "193499975", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/193499975", "source": "IDREF"}], "preferred_name": "Castéra, Nadine", "country_associated": "fr", "authorized_access_point": "Castéra, Nadine", "biographical_information": ["Auteur de manuels scolaires d'espagnol, en poste au collège Jean-Claude Sescousse (40) (en 2016)"]} 1 +2024-09-11 09:05:19.88598 2024-09-11 09:05:19.885986 e2c28b2a-d3d9-499f-8eb4-a825fb119b04 {"md5": "b66ba14664b08d5aaa9c8f3d1d8e4019", "pid": "193585057", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/193585057", "source": "IDREF"}], "preferred_name": "Pingree, Isabelle", "authorized_access_point": "Pingree, Isabelle"} 1 +2024-09-11 09:05:19.94368 2024-09-11 09:05:19.943683 931fcbdf-e5d9-4966-8903-bff43ced86da {"md5": "7ec9160cfd3a9e8dfb2d2647166c71f0", "pid": "193705974", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/193705974", "source": "IDREF"}], "date_of_birth": "1986-01-28", "preferred_name": "Jury, Mickaël", "country_associated": "fr", "authorized_access_point": "Jury, Mickaël, 1986-....", "biographical_information": ["Auteur d'une thèse en Psychologie à Clermont-Ferrand 2 en 2014"]} 1 +2024-09-11 09:05:20.005982 2024-09-11 09:05:20.005987 8aebc783-ef38-47cd-9ad5-7711f1e83811 {"md5": "9cf650065694d473a1da9c935d3d96da", "pid": "193736063", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["chi"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/193736063", "source": "IDREF"}], "variant_name": ["莫, 莉花", "茉莉", "Moli"], "preferred_name": "Mo, Lihua", "country_associated": "cc", "variant_access_point": ["茉莉", "Moli"], "authorized_access_point": "Mo, Lihua", "biographical_information": ["Écrivain dissident"]} 1 +2024-09-11 09:05:20.061159 2024-09-11 09:05:20.061162 eb108dfe-4ad1-48a5-8ab6-4ece07b3682e {"md5": "011450eee014caef5eb028b9d66af11f", "pid": "193779587", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/193779587", "source": "IDREF"}], "preferred_name": "Coulet, Michel", "authorized_access_point": "Coulet, Michel"} 1 +2024-09-11 09:05:20.122309 2024-09-11 09:05:20.122312 a9930988-eeb4-448a-a588-2a4d31108c82 {"md5": "f07eb77201846e1778ce305f9c8bab74", "pid": "193809699", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/193809699", "source": "IDREF"}], "preferred_name": "Roche, Cristal de", "authorized_access_point": "Roche, Cristal de"} 1 +2024-09-11 09:05:20.180438 2024-09-11 09:05:20.180443 513422fe-0f2c-4334-aa60-0357b4b41360 {"md5": "a2eef932ef0a182e650018105643196f", "pid": "193825813", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/193825813", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Kazhdan, Michael", "country_associated": "xx", "authorized_access_point": "Kazhdan, Michael, 19..-....", "biographical_information": ["Membre du jury d'une thèse en Informatique soutenue à Lyon 1 en 2015"]} 1 +2024-09-11 09:05:20.235075 2024-09-11 09:05:20.235078 4a577f6c-7ddf-4bbf-8b42-d24e8216d983 {"md5": "bc6c3c7fa634aa9b277ff0b125e993ab", "pid": "193876191", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/193876191", "source": "IDREF"}], "date_of_birth": "1965", "preferred_name": "Vietti, Stefano", "country_associated": "it", "authorized_access_point": "Vietti, Stefano, 1965-....", "biographical_information": ["Auteur de bandes dessinées"]} 1 +2024-09-11 09:05:20.288374 2024-09-11 09:05:20.288378 4f9fe644-287e-4c5e-bdfd-a83c8341de0b {"md5": "41f519f5b2859c37eb6756da482bba03", "pid": "193955482", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/193955482", "source": "IDREF"}], "preferred_name": "Micheli, Delphine", "authorized_access_point": "Micheli, Delphine", "biographical_information": ["Photographe"]} 1 +2024-09-11 09:05:20.346238 2024-09-11 09:05:20.346243 39d75985-5abc-44d3-81d2-72070fc987a1 {"md5": "04c7f42356cd90bb58fecc63c0951cdd", "pid": "193982269", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/193982269", "source": "IDREF"}], "preferred_name": "Larribere, Céline", "country_associated": "fr", "authorized_access_point": "Larribere, Céline"} 1 +2024-09-11 09:05:20.409068 2024-09-11 09:05:20.409073 86f34b4c-ad83-462c-86a6-121c4e79c87e {"md5": "32cb329a2d4caef7d082b8a81e5fdf82", "pid": "194122603", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["geo"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/194122603", "source": "IDREF"}], "variant_name": ["კეკელიძე, გიორგი", "Kekelidze, Giorgi"], "date_of_birth": "1984", "preferred_name": "Kekelije, Giorgi", "country_associated": "gau", "variant_access_point": ["Kekelidze, Giorgi"], "authorized_access_point": "Kekelije, Giorgi, 1984-", "biographical_information": ["Ecrivain géorgien"]} 1 +2024-09-11 09:05:20.46669 2024-09-11 09:05:20.466693 9dc50612-6e99-4ddd-ace8-5cfbc196e260 {"md5": "667c7941f522d2db4fcd383e03732af8", "pid": "194162419", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/194162419", "source": "IDREF"}], "preferred_name": "Gallery K (Los Angeles)", "country_associated": "xxu", "authorized_access_point": "Gallery K (Los Angeles)"} 1 +2024-09-11 09:05:20.526815 2024-09-11 09:05:20.526819 0a9c5287-8886-4dfc-bb9e-94bc1f91e792 {"md5": "0df35cc9a7e8fb7610211c77ef11d5f4", "pid": "194167070", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ara"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/194167070", "source": "IDREF"}], "variant_name": ["سليمان, عبد الله محم"], "date_of_birth": "19XX", "preferred_name": "Sulaymān, ʿAbd Allāh Muḥammad", "country_associated": "sj", "variant_access_point": ["سليمان, عبد الله محم, 19..-...."], "authorized_access_point": "Sulaymān, ʿAbd Allāh Muḥammad, 19..-....", "biographical_information": ["Poète soudanais"]} 1 +2024-09-11 09:05:20.583887 2024-09-11 09:05:20.583893 7532cef9-5586-473f-b0fb-a924f6d2a6ff {"md5": "0d744282bfdf5fbf24b9f7870b038118", "pid": "194445089", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/194445089", "source": "IDREF"}], "preferred_name": "Lizarzaburu, Véra", "authorized_access_point": "Lizarzaburu, Véra"} 1 +2024-09-11 09:05:20.716192 2024-09-11 09:05:20.716195 7b0fe005-62a5-47a8-9a72-ae6e0bce9c86 {"md5": "4171bc54afc617ec0c03b1c32c63932a", "pid": "194564932", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/194564932", "source": "IDREF"}], "preferred_name": "Texas State library and archives commission", "country_associated": "xxu", "authorized_access_point": "Texas State library and archives commission", "biographical_information": ["Adresse : Capitol complex : 1201 Brazos St., Austin. Adresse électronique : info@tsl.state.tx.us"]} 1 +2024-09-11 09:05:20.768592 2024-09-11 09:05:20.768596 ebc80a3f-c292-4b9d-aca1-cb5f113d2364 {"md5": "0ce442574ccca716203ab741a8c3cae9", "pid": "194577058", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/194577058", "source": "IDREF"}], "date_of_birth": "1880", "date_of_death": "1957", "preferred_name": "Hommel, Paul", "country_associated": "gw", "authorized_access_point": "Hommel, Paul, 1880-1957", "biographical_information": ["Photographe"]} 1 +2024-09-11 09:05:20.819472 2024-09-11 09:05:20.819477 df267045-1688-4dda-98ae-7c3e51a2fef8 {"md5": "9f8db9a2a8a02c110d7f9fc0b25cb4e6", "pid": "194588718", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/194588718", "source": "IDREF"}], "variant_name": ["International council on archives. Architectural records section"], "preferred_name": "Conseil international des archives. Section des archives d'architecture", "country_associated": "fr", "variant_access_point": ["International council on archives. Architectural records section"], "authorized_access_point": "Conseil international des archives. Section des archives d'architecture"} 1 +2024-09-11 09:05:20.875625 2024-09-11 09:05:20.875629 b49ab874-3c45-49af-b405-955d8285f511 {"md5": "5c916a3b191ec85aae5cb93d1f89ff57", "pid": "194616320", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/194616320", "source": "IDREF"}], "preferred_name": "Windeck, Georg", "country_associated": "xxu", "authorized_access_point": "Windeck, Georg", "biographical_information": ["Spécialiste"]} 1 +2024-09-11 09:05:20.937702 2024-09-11 09:05:20.937708 bc6ab726-29bb-48d6-8b73-d2cb47aae233 {"md5": "e3c0d6da08e5a0bec116ad5376c19a3e", "pid": "194625036", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/194625036", "source": "IDREF"}], "variant_name": ["Salomon, Richard Siegfried Harry"], "date_of_birth": "1876-06-21", "preferred_name": "Salomon, Harry", "country_associated": "gw", "variant_access_point": ["Salomon, Richard Siegfried Harry"], "authorized_access_point": "Salomon, Harry, 1876-...."} 1 +2024-09-11 09:05:20.992146 2024-09-11 09:05:20.99215 f894b6a9-be90-459e-b3ce-d15a0fe4d030 {"md5": "b711c25f1a9bf302fbdadce627e11f1e", "pid": "194925625", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/194925625", "source": "IDREF"}], "preferred_name": "Hoffmann, M.", "country_associated": "gw", "authorized_access_point": "Hoffmann, M.", "biographical_information": ["ingénieur en électronique numérique"]} 1 +2024-09-11 09:05:21.045571 2024-09-11 09:05:21.045575 bfd6ad5d-d187-4783-a137-614077ad1cb4 {"md5": "3db5c7519f1075b245f63a9ad418a8ce", "pid": "195021371", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/195021371", "source": "IDREF"}], "variant_name": ["Pantoja, Elías Serrano"], "date_of_birth": "1948", "preferred_name": "Serrano Pantoja, Elías", "country_associated": "bo", "variant_access_point": ["Pantoja, Elías Serrano"], "authorized_access_point": "Serrano Pantoja, Elías, 1948-....", "biographical_information": ["Poète, acteur"]} 1 +2024-09-11 09:05:21.099302 2024-09-11 09:05:21.099306 217309ae-fe53-4195-beb1-55d0e1d3724b {"md5": "3f6e3975acd4c8670dba008e9f473d61", "pid": "195226267", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/195226267", "source": "IDREF"}], "preferred_name": "Chartier, J.-Jacques", "country_associated": "fr", "authorized_access_point": "Chartier, J.-Jacques"} 1 +2024-09-11 09:05:21.158464 2024-09-11 09:05:21.158466 81707088-7c8c-4f0e-9952-2ba04eb1beed {"md5": "9f1031c35e25682cac2d09f8c5c8547c", "pid": "195247922", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/195247922", "source": "IDREF"}], "preferred_name": "Heilperin, Michel Angelo", "authorized_access_point": "Heilperin, Michel Angelo"} 1 +2024-09-11 09:05:21.21581 2024-09-11 09:05:21.215815 93d05125-f7ec-44e8-8d6c-fe73c73e6408 {"md5": "7cf44ea15021b43802c80acb7fc6aaf4", "pid": "195263472", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/195263472", "source": "IDREF"}], "date_of_birth": "1987-01-27", "preferred_name": "Cazaux, Guillaume", "country_associated": "fr", "authorized_access_point": "Cazaux, Guillaume, 1987-....", "biographical_information": ["Docteur en Mécanique et matériaux (Le Havre, 2016)"]} 1 +2024-09-11 09:05:21.267251 2024-09-11 09:05:21.267255 835ca507-3079-4a88-bd5d-cb906dd6d4bf {"md5": "a7b8758f44131ee03bce89c5b2913e60", "pid": "195274059", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/195274059", "source": "IDREF"}], "variant_name": ["Зеленин, Александр Владимирович", "Зеленин, А.В.", "Zelenin, A.V."], "preferred_name": "Zelenin, Aleksandr Vladimirovič", "country_associated": "ru", "variant_access_point": ["Зеленин, А.В.", "Zelenin, A.V."], "authorized_access_point": "Zelenin, Aleksandr Vladimirovič"} 1 +2024-09-11 09:05:21.32433 2024-09-11 09:05:21.324335 7b29b6ff-188a-4ffa-95e1-2a8d5f4dd320 {"md5": "1a50cb073e41dabe0ba9fb55a59ed157", "pid": "195276205", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/195276205", "source": "IDREF"}], "preferred_name": "Associazione artistica culturale G. Pallavicini", "country_associated": "it", "authorized_access_point": "Associazione artistica culturale G. Pallavicini"} 1 +2024-09-11 09:05:21.378846 2024-09-11 09:05:21.37885 7a240236-57ce-4eba-9aff-e31684e1462d {"md5": "0d6dfa7e57b324bd20b2fb35afe2a260", "pid": "195286227", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/195286227", "source": "IDREF"}], "preferred_name": "Nicodeau, A.", "authorized_access_point": "Nicodeau, A.", "biographical_information": ["Officier de l'Instruction publique, directeur honoraire d'école communale"]} 1 +2024-09-11 09:05:21.430104 2024-09-11 09:05:21.430107 58805089-3b8b-4532-8145-bcb5926609e2 {"md5": "ca643392200606b30df10981c5f04f94", "pid": "19529534X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/19529534X", "source": "IDREF"}], "date_of_birth": "1990-05-16", "preferred_name": "Hutchinson, Steve", "country_associated": "fr", "authorized_access_point": "Hutchinson, Steve, 1990-....", "biographical_information": ["Auteur d’une thèse d’exercice en Pharmacie, soutenue le 20 septembre 2016, à l’Université de Montpellier"]} 1 +2024-09-11 09:05:21.489752 2024-09-11 09:05:21.489756 71f0e2c0-07a0-447c-ad05-e044290f6e21 {"md5": "3048e7b2f8265a907f330fc6ecff6751", "pid": "195370317", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/195370317", "source": "IDREF"}], "variant_name": ["Navette, Sophie"], "date_of_birth": "1987", "preferred_name": "Masse-Navette, Sophie", "variant_access_point": ["Navette, Sophie"], "authorized_access_point": "Masse-Navette, Sophie, 1987-....", "biographical_information": ["Auteur d'une thèse en médecine spécialisée en 2016"]} 1 +2024-09-11 09:05:21.538215 2024-09-11 09:05:21.538221 d0e69c4e-06e5-4727-b131-c88a5d8746fe {"md5": "1754d44275c42825f1e8083a9d2f604c", "pid": "195403460", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["per"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/195403460", "source": "IDREF"}], "variant_name": ["رضائى, اسد الله", "Riz̤āʼī, Asad Allāh", "Riz̤āyī, Asad Allāh", "Rezaei, Asadallah", "Rezaei, Asadollah", "Rezaei, Asad Allah", "Rezayi, Asadallah", "Rezaei, Asad o llah"], "date_of_birth": "1965", "preferred_name": "Riḍāʼī, Asad Allāh", "country_associated": "ir", "variant_access_point": ["Riz̤āʼī, Asad Allāh", "Riz̤āyī, Asad Allāh", "Rezaei, Asadallah", "Rezaei, Asadollah", "Rezaei, Asad Allah", "Rezayi, Asadallah", "Rezaei, Asad o llah"], "authorized_access_point": "Riḍāʼī, Asad Allāh, 1965-....", "biographical_information": ["Auteur iranien."]} 1 +2024-09-11 09:05:21.591339 2024-09-11 09:05:21.591341 690f93fc-2d24-4b16-84df-88bf422cd56b {"md5": "d03b2cd54824248137419853e8e88e28", "pid": "195430662", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/195430662", "source": "IDREF"}], "date_of_birth": "1990-12-20", "preferred_name": "Gilbert, Amandine", "country_associated": "fr", "authorized_access_point": "Gilbert, Amandine, 1990-....", "biographical_information": ["Titulaire d'un master 2 en études théâtrales de l'Université Paris 3 - Sorbonne nouvelle"]} 1 +2024-09-11 09:05:21.648152 2024-09-11 09:05:21.648156 70522e59-d4dc-4c1c-8369-533a71fc70f5 {"md5": "fc27233e4c3008ac077f3779592b1a93", "pid": "19544504X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ara"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/19544504X", "source": "IDREF"}], "variant_name": ["خمار, عبد الله", "Khammār, ʿAbd Allāh"], "date_of_birth": "1939", "preferred_name": "H̱ammār, ʿAbd Allāh", "variant_access_point": ["Khammār, ʿAbd Allāh"], "authorized_access_point": "H̱ammār, ʿAbd Allāh, 1939-....", "biographical_information": ["Auteur Syrien"]} 1 +2024-09-11 09:05:21.702456 2024-09-11 09:05:21.702461 a4e3109e-e508-4bb5-9be6-eb6b2b7abc75 {"md5": "53c0f3b4c94e291dbe61bafbe0df93ca", "pid": "195458575", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/195458575", "source": "IDREF"}], "variant_name": ["Domenicani del Santuario di S. Maria della Quercia (Viterbe, Italie)"], "preferred_name": "Santuario di S. Maria della Quercia (Viterbe, Italie)", "country_associated": "it", "variant_access_point": ["Domenicani del Santuario di S. Maria della Quercia (Viterbe, Italie)"], "authorized_access_point": "Santuario di S. Maria della Quercia (Viterbe, Italie)", "biographical_information": ["Sanctuaire de frères dominicains"]} 1 +2024-09-11 09:05:21.75799 2024-09-11 09:05:21.757994 0e153afe-6166-487c-8a99-fa0e86d7727d {"md5": "b405025c5fe7ebcf7f741eeadacc010e", "pid": "195541855", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/195541855", "source": "IDREF"}], "date_of_birth": "1861-06-17", "preferred_name": "Ducroquet, Jean-Baptiste", "country_associated": "fr", "authorized_access_point": "Ducroquet, Jean-Baptiste, 1861-....", "biographical_information": ["Docteur en médecine (Lille, 1891)"]} 1 +2024-09-11 09:05:21.815412 2024-09-11 09:05:21.815415 03845ba0-e304-427c-a5e6-d7276f397d95 {"md5": "d80bfeb4b07ad6d2a0b8c7daefa5fc35", "pid": "195544439", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/195544439", "source": "IDREF"}], "preferred_name": "Tournier, Vincent", "country_associated": "fr", "authorized_access_point": "Tournier, Vincent"} 1 +2024-09-11 09:05:21.873664 2024-09-11 09:05:21.873668 892ea4a1-e375-468f-8f0b-6338f927ab82 {"md5": "3a856b0964fcfee547c4489a0d132bd0", "pid": "195555228", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/195555228", "source": "IDREF"}], "variant_name": ["Colloque \\"Handicaps et insertion sociale\\""], "preferred_name": "Colloque \\"Handicaps et insertion sociale dans le Val de Marne\\"", "country_associated": "fr", "date_of_termination": "1985-12-14", "variant_access_point": ["Colloque \\"Handicaps et insertion sociale\\" (5 ; 1985 ; Créteil)"], "date_of_establishment": "1985-12-14", "authorized_access_point": "Colloque \\"Handicaps et insertion sociale dans le Val de Marne\\" (5 ; 1985 ; Créteil)"} 1 +2024-09-11 09:05:21.936398 2024-09-11 09:05:21.936403 73a090e7-a380-4b2e-8990-dcdc6a5a0834 {"md5": "16e6e93b51636bc51f80f87c3f89243b", "pid": "195708814", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/195708814", "source": "IDREF"}], "variant_name": ["INSEE Picardie", "Institut national de la statistique et des études économiques (France). Direction régionale (Amiens)"], "preferred_name": "Institut national de la statistique et des études économiques (France). Direction régionale (Picardie)", "country_associated": "fr", "variant_access_point": ["INSEE Picardie", "Institut national de la statistique et des études économiques (France). Direction régionale (Amiens)"], "authorized_access_point": "Institut national de la statistique et des études économiques (France). Direction régionale (Picardie)", "biographical_information": ["Adresse : 21, Rue des Otages, 80040 Amiens cedex 1. Contact : 03.22.97.32.00"]} 1 +2024-09-11 09:05:22.005357 2024-09-11 09:05:22.005361 f39d8497-66d9-4722-97eb-7e147c53e10e {"md5": "c4983d8b42ce75d45f84786b6d46a5fb", "pid": "195713133", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ice"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/195713133", "source": "IDREF"}], "variant_name": ["Sigþórsson, Börkur"], "preferred_name": "Börkur Sigþórsson", "country_associated": "ic", "variant_access_point": ["Sigþórsson, Börkur"], "authorized_access_point": "Börkur Sigþórsson", "biographical_information": ["Réalisateur islandais"]} 1 +2024-09-11 09:05:22.058248 2024-09-11 09:05:22.058252 6cc3479f-2e6a-4f8e-9d02-001a9b5db2e5 {"md5": "9a6e7bdfa21b1f5a530d4094a2b119ca", "pid": "195791258", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/195791258", "source": "IDREF"}], "date_of_birth": "1987-06-24", "preferred_name": "Paulillo, Bruno", "country_associated": "it", "authorized_access_point": "Paulillo, Bruno, 1987-...."} 1 +2024-09-11 09:05:22.108891 2024-09-11 09:05:22.108896 526f346b-8796-476f-85b3-f1c64f1ddd37 {"md5": "0b7020c8fe0d4c275295959135ce57b2", "pid": "195824431", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/195824431", "source": "IDREF"}], "variant_name": ["Morlanes, María Jose Martínez"], "date_of_birth": "19XX", "preferred_name": "Martínez Morlanes, María Jose", "country_associated": "sp", "variant_access_point": ["Morlanes, María Jose Martínez"], "authorized_access_point": "Martínez Morlanes, María Jose, 19..-....", "biographical_information": ["Titulaire d'un doctorat en science des matériaux et de l'ingénierie, Zaragova University, Espagne (en 2014)"]} 1 +2024-09-11 09:05:22.163647 2024-09-11 09:05:22.163651 7ef0d92a-29cf-406a-8423-aebf979c2ac8 {"md5": "96c64c6d5eaf6bd3687961fb44a9ff0d", "pid": "195941942", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/195941942", "source": "IDREF"}], "date_of_birth": "1941", "preferred_name": "Shaw, Frederick John Jr.", "country_associated": "xxu", "authorized_access_point": "Shaw, Frederick John Jr., 1941-....", "biographical_information": ["Auteur d'une thèse en histoire moderne soutenue à Miami en 1975"]} 1 +2024-09-11 09:05:22.216982 2024-09-11 09:05:22.216987 3962fac0-6a47-477c-92b5-96005b5731b9 {"md5": "8ea1d5030d6d4c025cdda86857a43a55", "pid": "196095700", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196095700", "source": "IDREF"}], "date_of_birth": "1988-10-22", "preferred_name": "Juery, Damien", "country_associated": "fr", "authorized_access_point": "Juery, Damien, 1988-....", "biographical_information": ["Titulaire d'un doctorat de Sciences, spécialité biostatistique (Montpellier 2, 2014)"]} 1 +2024-09-11 09:05:22.26902 2024-09-11 09:05:22.269025 f02e9ac0-027e-4d39-b636-0ffa54d43661 {"md5": "142ab468f9862e2def267b6ae9d09f30", "pid": "196155487", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196155487", "source": "IDREF"}], "preferred_name": "Counts, Clement L.", "country_associated": "xxu", "authorized_access_point": "Counts, Clement L."} 1 +2024-09-11 09:05:22.324908 2024-09-11 09:05:22.324912 f4204fcd-eef1-498d-af29-a75d27c2eee6 {"md5": "fc41e234a07e2457bfe4a3bec2e0a4b2", "pid": "196254795", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196254795", "source": "IDREF"}], "preferred_name": "DePaor, Tom", "country_associated": "ie", "authorized_access_point": "DePaor, Tom", "biographical_information": ["Spécialiste de l'art"]} 1 +2024-09-11 09:05:22.387214 2024-09-11 09:05:22.38722 4145d62c-2a7b-447e-bef0-77f02302b19f {"md5": "7e9b4cf7ae0a922333ff8b05eff87fed", "pid": "196282411", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196282411", "source": "IDREF"}], "date_of_birth": "1992-06-17", "preferred_name": "Lambert, Isaac", "authorized_access_point": "Lambert, Isaac, 1992-...."} 1 +2024-09-11 09:05:22.448101 2024-09-11 09:05:22.448106 8ca569c6-aa21-48c0-971b-d98da9f37287 {"md5": "7df415b64f0889b2c360dad29a1df3ce", "pid": "196313910", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196313910", "source": "IDREF"}], "variant_name": ["Conseil traditionnel mohawk de Kahnawake", "Mohawk council of Kahnawàke"], "preferred_name": "Mohawk council of Kahnawà:ke", "country_associated": "xxc", "variant_access_point": ["Conseil traditionnel mohawk de Kahnawake", "Mohawk council of Kahnawàke"], "authorized_access_point": "Mohawk council of Kahnawà:ke"} 1 +2024-09-11 09:05:22.501418 2024-09-11 09:05:22.501424 22b63b73-b0d9-40ce-beb6-3bda30e0e4b3 {"md5": "5435db50e87c80e94ed183f22a649139", "pid": "196337208", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196337208", "source": "IDREF"}], "date_of_birth": "1881-05-03", "date_of_death": "19..", "preferred_name": "Augier, Dominique-Marie-Joseph-Charles", "country_associated": "fr", "authorized_access_point": "Augier, Dominique-Marie-Joseph-Charles, 1881-19..", "biographical_information": ["Docteur en médecine (Lille, 1906)"]} 1 +2024-09-11 09:05:22.558309 2024-09-11 09:05:22.558314 6f8cf138-d205-40b5-a259-e3fdc69c1bf3 {"md5": "0289f0b7e660886c90c4483b657741e8", "pid": "196341280", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196341280", "source": "IDREF"}], "date_of_birth": "1984-01-10", "preferred_name": "Bourotte, Marc", "country_associated": "fr", "authorized_access_point": "Bourotte, Marc, 1984-....", "biographical_information": ["Auteur d'une thèse en Mathématiques à Avignon en 2016"]} 1 +2024-09-11 09:05:22.61233 2024-09-11 09:05:22.612333 d21c4e50-0395-4110-8e5b-43a48e504453 {"md5": "741959c7ec3e6513ce48c0f1a9fda9d6", "pid": "196405750", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196405750", "source": "IDREF"}], "date_of_birth": "1889-11-27", "preferred_name": "Michot, Joseph", "country_associated": "fr", "authorized_access_point": "Michot, Joseph, 1889-....", "biographical_information": ["Docteur en médecine (Lyon, 1913)"]} 1 +2024-09-11 09:05:23.409512 2024-09-11 09:05:23.409516 e90b0559-0435-43c2-a7d2-b845be40d72f {"md5": "32cb482f230c82ebab7d9ce93ca16824", "pid": "196859883", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196859883", "source": "IDREF"}], "preferred_name": "Lucky Thompson's all stars", "country_associated": "xx", "date_of_establishment": "19XX", "authorized_access_point": "Lucky Thompson's all stars", "biographical_information": ["Ensemble de jazz"]} 1 +2024-09-11 09:05:22.66863 2024-09-11 09:05:22.668633 ae2168c7-3402-4a92-be27-b684eb90a703 {"md5": "aac3062ef64ce6d054b8f5e9b030a5d1", "pid": "196409500", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196409500", "source": "IDREF"}], "variant_name": ["Vos, Stephan de"], "date_of_birth": "19XX", "preferred_name": "De Vos, Stephan", "country_associated": "xx", "variant_access_point": ["Vos, Stephan de"], "authorized_access_point": "De Vos, Stephan, 19..-....", "biographical_information": ["Traduit du français en anglais"]} 1 +2024-09-11 09:05:22.723576 2024-09-11 09:05:22.723579 0fbca3ba-1225-4253-bf54-30866eed3602 {"md5": "eb9a70e0aabe90b984504de5f47cf0b7", "pid": "196425840", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196425840", "source": "IDREF"}], "preferred_name": "L'Atelier des Bassins (Bordeaux)", "country_associated": "fr", "authorized_access_point": "L'Atelier des Bassins (Bordeaux)", "biographical_information": ["Regroupement de la ville de Bordeaux, Bordeaux Métropole, Bordeaux Port Atlantique et l'ANMA"]} 1 +2024-09-11 09:05:22.786649 2024-09-11 09:05:22.786654 40082a8d-124a-4dec-90cf-df7dfb656415 {"md5": "95f250cf5a88a6db39f95a70b4719a51", "pid": "196435099", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196435099", "source": "IDREF"}], "variant_name": ["Laprugne, Marie-Thérèse", "Jacoulet, Marie-Thérèse"], "preferred_name": "Laprugne-Jacoulet, Marie-Thérèse", "country_associated": "fr", "variant_access_point": ["Laprugne, Marie-Thérèse", "Jacoulet, Marie-Thérèse"], "authorized_access_point": "Laprugne-Jacoulet, Marie-Thérèse"} 1 +2024-09-11 09:05:22.844855 2024-09-11 09:05:22.844858 e826ee65-ff40-4dfe-8ab3-a3fcf356e4b5 {"md5": "d63a1c28d33bce80cb1d923b45e37881", "pid": "196452341", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196452341", "source": "IDREF"}], "preferred_name": "Drouot, Benoît", "country_associated": "fr", "authorized_access_point": "Drouot, Benoît", "biographical_information": ["Professeur agrégé d'histoire"]} 1 +2024-09-11 09:05:22.901211 2024-09-11 09:05:22.901214 398968ce-4465-43e7-845c-c87bce55720c {"md5": "bbc6de510515bb9272b8dec153a237e8", "pid": "196511275", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196511275", "source": "IDREF"}], "date_of_birth": "1990-03-13", "preferred_name": "Lefort, Agnès", "country_associated": "fr", "authorized_access_point": "Lefort, Agnès, 1990-....", "biographical_information": ["Titulaire d'une thèse d'exercice de pharmacie soutenue à Caen le 30 septembre 2016"]} 1 +2024-09-11 09:05:22.95783 2024-09-11 09:05:22.957834 cb54a1f9-bbe2-4c8a-932b-923c643cd6d2 {"md5": "09c8830d47b39ab9ca47348187b75a85", "pid": "196538637", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196538637", "source": "IDREF"}], "preferred_name": "Okuda, Y", "country_associated": "ja", "authorized_access_point": "Okuda, Y"} 1 +2024-09-11 09:05:23.010077 2024-09-11 09:05:23.010082 25f2260b-aee6-419b-a37f-e23f9413f703 {"md5": "fd9d0f9e36a5741c1888d2b69600eba4", "pid": "196539102", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196539102", "source": "IDREF"}], "preferred_name": "Perol, R.", "country_associated": "fr", "authorized_access_point": "Perol, R."} 1 +2024-09-11 09:05:23.06586 2024-09-11 09:05:23.065864 ef860b7a-c724-411c-b559-798049fd3a66 {"md5": "27af387625ec4805442440ecbdcdaded", "pid": "196540429", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196540429", "source": "IDREF"}], "date_of_birth": "1989-01-14", "preferred_name": "Greenwell, Emma", "country_associated": "xxu", "authorized_access_point": "Greenwell, Emma, 1989-...", "biographical_information": ["Actrice américaine"]} 1 +2024-09-11 09:05:23.117884 2024-09-11 09:05:23.117888 c0482431-b4c5-49bf-9f5c-237fd6930ce5 {"md5": "87a829578dc9d74dfaa2a2b92f6c9243", "pid": "196575214", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196575214", "source": "IDREF"}], "date_of_birth": "1989-10-01", "preferred_name": "Laurent, Elodie", "country_associated": "fr", "authorized_access_point": "Laurent, Elodie, 1989-....", "biographical_information": ["Auteur en médecine"]} 1 +2024-09-11 09:05:23.185975 2024-09-11 09:05:23.18598 ffcd0dc1-8a76-481a-a00e-498c3246bb19 {"md5": "aaad8f95eb2fca427c379d37a8eea47b", "pid": "196694531", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "fre"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196694531", "source": "IDREF"}], "variant_name": ["ECIFUAS"], "preferred_name": "European Conference on Internal Friction and Ultrasonic Attenuation in Solids", "country_associated": "fr", "date_of_termination": "1983-06-07", "variant_access_point": ["ECIFUAS (4 ; 1983 ; Villeurbanne)"], "date_of_establishment": "1983-06-05", "authorized_access_point": "European Conference on Internal Friction and Ultrasonic Attenuation in Solids (4 ; 1983 ; Villeurbanne)"} 1 +2024-09-11 09:05:23.240939 2024-09-11 09:05:23.240943 1163574a-16de-4d62-ab73-788f66385e6b {"md5": "84689ec5d243443994052d1bd30dce34", "pid": "196706831", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196706831", "source": "IDREF"}], "date_of_birth": "19..", "preferred_name": "Bassono, Caroline", "country_associated": "fr", "authorized_access_point": "Bassono, Caroline, 19..-", "biographical_information": ["Titulaire du diplôme d’Ingénieur Agronome Spécialisation Sciences et Productions Végétales Option Ingénierie des Agrosystèmes (Agrocampus-Ouest Rennes, 2016)"]} 1 +2024-09-11 09:05:23.300789 2024-09-11 09:05:23.300793 29dd397b-9f00-40a7-ba22-4096dae91423 {"md5": "6e2884bdfd3d754fcfbd12805709c583", "pid": "196728711", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196728711", "source": "IDREF"}], "date_of_birth": "1879-01-11", "preferred_name": "Basso, Ludovic", "country_associated": "fr", "authorized_access_point": "Basso, Ludovic, 1879-....", "biographical_information": ["Titulaire d'une thèse en médecine (Lyon, 1904)"]} 1 +2024-09-11 09:05:23.357507 2024-09-11 09:05:23.357511 e9ceda9b-f710-4590-8ab2-972ddf54e57c {"md5": "8477e617b343c63de332482b31ca95c9", "pid": "196814944", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196814944", "source": "IDREF"}], "preferred_name": "Fosse, C.", "country_associated": "fr", "authorized_access_point": "Fosse, C.", "biographical_information": ["Travaille à L'Institut Français du Pétrole (en 1958)"]} 1 +2024-09-11 09:05:23.464274 2024-09-11 09:05:23.464277 6b1a041e-e44a-453e-b375-315b254a95fb {"md5": "ddfa1c16d81cb3068215c868589c0f2b", "pid": "196887429", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196887429", "source": "IDREF"}], "preferred_name": "Hendricks, Nancy", "country_associated": "xxu", "authorized_access_point": "Hendricks, Nancy", "biographical_information": ["Auteur américaine"]} 1 +2024-09-11 09:05:23.518273 2024-09-11 09:05:23.518278 19395bd1-fe54-458b-a6c7-504e17e30c7a {"md5": "eeb68a874d84f8d4debed0f537c008ba", "pid": "197014984", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/197014984", "source": "IDREF"}], "variant_name": ["Université de Marne-la-Vallée. Institut francilien d'ingénierie des services", "IFIS", "Université de Paris-Est Marne-la-Vallée. Institut francilien d'ingénierie des services", "UPEM-IFIS"], "preferred_name": "Institut francilien d'ingénierie des services", "country_associated": "fr", "variant_access_point": ["Université de Marne-la-Vallée. Institut francilien d'ingénierie des services", "IFIS", "Université de Paris-Est Marne-la-Vallée. Institut francilien d'ingénierie des services", "UPEM-IFIS"], "authorized_access_point": "Institut francilien d'ingénierie des services", "biographical_information": ["Adresse : IFIS-Institut francilien d'ingénierie des services (UPEM), Bâtiment Erasme, 6-8 cours du Danube, 77700 Serris"]} 1 +2024-09-11 09:05:23.573676 2024-09-11 09:05:23.573679 327d0472-7a09-41e5-b1ce-851e820db9b1 {"md5": "397ec04a01c09f0b1d47706724eb184a", "pid": "197035167", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/197035167", "source": "IDREF"}], "date_of_birth": "1893-07-23", "preferred_name": "Despeignes, Henri", "country_associated": "fr", "authorized_access_point": "Despeignes, Henri, 1893-....", "biographical_information": ["Titulaire d'une thèse en médecine (Lyon, 1925)"]} 1 +2024-09-11 09:05:23.627257 2024-09-11 09:05:23.627262 d043269d-348f-471a-91a2-55832a1122ed {"md5": "0163222a54ea76cce4949d18f6c01c8c", "pid": "197073077", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/197073077", "source": "IDREF"}], "variant_name": ["CFE", "Comité français des expositions", "Comité français des expositions à l'étranger", "Comité français des expositions à l'étranger (Paris)"], "preferred_name": "Comité français des expositions et conventions", "country_associated": "fr", "variant_access_point": ["CFE", "Comité français des expositions", "Comité français des expositions à l'étranger", "Comité français des expositions à l'étranger (Paris)"], "date_of_establishment": "1885", "authorized_access_point": "Comité français des expositions et conventions", "biographical_information": ["Adresse : Ancienne adresse : 22 avenue Franklin-Roosevelt, 75008 Paris. 55 avenue Kleber, 75784 Paris Cedex 16", "Reconnu d'utilité publique en 1900. A fusionné le 10 juin 1925 avec le \\"Comité national des expositions coloniales\\". Décret modifié le 1er mars 1993"]} 1 +2024-09-11 09:05:23.679659 2024-09-11 09:05:23.679664 a4770ba5-d40e-4d6f-b5ea-5b3391cfab3e {"md5": "577238b9d64926d7b5240bb365ee4ba7", "pid": "197115047", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/197115047", "source": "IDREF"}], "date_of_birth": "1975", "preferred_name": "Klunker, Christoph Kai", "country_associated": "gw", "authorized_access_point": "Klunker, Christoph Kai, 1975-...."} 1 +2024-09-11 09:05:23.740099 2024-09-11 09:05:23.740104 8a0dd9e6-a56b-4f28-8c52-89644c632684 {"md5": "3b0a976488e96062d995a5d6a68b7b3e", "pid": "197132588", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/197132588", "source": "IDREF"}], "variant_name": ["Jardin botanique (Laval)"], "preferred_name": "Jardin de la Perrine (Laval)", "country_associated": "fr", "variant_access_point": ["Jardin botanique (Laval)"], "date_of_establishment": "1885", "authorized_access_point": "Jardin de la Perrine (Laval)"} 1 +2024-09-11 09:05:23.800033 2024-09-11 09:05:23.800036 4bf27cf3-71bc-40b6-a3c3-333e8c6157b0 {"md5": "0a30e58e36a4f73d60352ce3cca4c023", "pid": "197226809", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/197226809", "source": "IDREF"}], "preferred_name": "Byeragi Safary, Georges", "country_associated": "cf", "authorized_access_point": "Byeragi Safary, Georges", "biographical_information": ["Docteur en Administration des Affaires de l'Université de Berkeley (USA). Professeur à l'Institut Supérieur de Statistique (ISS) à Kinshasa en République démocratique du Congo (en 2016)"]} 1 +2024-09-11 09:05:23.85992 2024-09-11 09:05:23.859924 e42e5335-88ab-422f-8b71-f996bfbbcc35 {"md5": "793b07d7856ac4ac7d90b4a2f8ffa71e", "pid": "197280544", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/197280544", "source": "IDREF"}], "preferred_name": "Hammad, Ahmed", "country_associated": "ti", "authorized_access_point": "Hammad, Ahmed", "biographical_information": ["Maitre de conférences à l'université de Franche-Comté.", "Titulaire d'un doctorat Informatique et analyse de données soutenu à l'université de Toulouse 3 en 1991"]} 1 +2024-09-11 09:05:23.913141 2024-09-11 09:05:23.913146 7e2f9b8c-5de9-44ce-b2a4-e7f2108ef969 {"md5": "59c7b0a6454f6bd2255f80358ad0ddcd", "pid": "197391648", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/197391648", "source": "IDREF"}], "preferred_name": "Caplanne, Pierre-Paulin", "country_associated": "fr", "authorized_access_point": "Caplanne, Pierre-Paulin"} 1 +2024-09-11 09:05:23.970984 2024-09-11 09:05:23.970987 6779980c-2ec0-4294-9e49-8c0f4469acef {"md5": "ed771cc757d17aaf3ad32c49e1ca59f4", "pid": "197394795", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre", "eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/197394795", "source": "IDREF"}], "preferred_name": "Collins, Gary S.", "country_associated": "xxk", "authorized_access_point": "Collins, Gary S.", "biographical_information": ["Professeur à l' Université d'Oxford; Examinateur d'une thèse en Sciences Chimiques et Biologiques pour la Santé à Montpellier en 2016"]} 1 +2024-09-11 09:05:24.023395 2024-09-11 09:05:24.023399 7c0c3484-e469-47e1-93c6-1f5bffdf2c94 {"md5": "0c117cac575190eb7f744034eb1e34e6", "pid": "197444067", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/197444067", "source": "IDREF"}], "preferred_name": "Coustaury, Annabelle", "authorized_access_point": "Coustaury, Annabelle"} 1 +2024-09-11 09:05:24.077929 2024-09-11 09:05:24.077934 46830a52-1583-459c-9383-7bd6e508ddef {"md5": "c8aef62b532ef57791ad1188b55f5a52", "pid": "197444881", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/197444881", "source": "IDREF"}], "date_of_birth": "1859", "date_of_death": "1908", "preferred_name": "Apprin, Joseph", "country_associated": "fr", "authorized_access_point": "Apprin, Joseph, 1859-....", "biographical_information": ["Photographe"]} 1 +2024-09-11 09:05:24.136871 2024-09-11 09:05:24.136876 5669569f-e060-49e6-9f0d-920e9d2d9048 {"md5": "7426dd28d394f6083fb57f2bf6375cf5", "pid": "197511392", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/197511392", "source": "IDREF"}], "preferred_name": "Midwestern Conference on Fluid Mechanics", "country_associated": "xxu", "date_of_termination": "1961", "date_of_establishment": "1961", "authorized_access_point": "Midwestern Conference on Fluid Mechanics (07 ; 1961 ; East Lansing, Mich.)"} 1 +2024-09-11 09:05:24.192451 2024-09-11 09:05:24.192454 ecd56914-7951-478f-a39a-1e5d3ce6f124 {"md5": "d20b9db8565067f90bf214182df59c9f", "pid": "197533590", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/197533590", "source": "IDREF"}], "preferred_name": "Mayer, María Susana", "country_associated": "ag", "authorized_access_point": "Mayer, María Susana", "biographical_information": ["Professeur, Universidad Nacional de Entre Ríos"]} 1 +2024-09-11 09:05:24.251108 2024-09-11 09:05:24.251113 bf3ef154-7a0f-4524-ab73-826cdd695fc3 {"md5": "699edc0cfd30350c449121abe6141f9a", "pid": "197593968", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/197593968", "source": "IDREF"}], "date_of_birth": "1982-09-09", "preferred_name": "Dumas, Christine", "country_associated": "fr", "authorized_access_point": "Dumas, Christine, 1982-....", "biographical_information": ["Enseignant-chercheur à l'Université de Strasbourg - Institut pluridisciplinaire Hubert Curien (IPHC); membre du jury lors d’une soutenance de thèse de doctorat de Chimie, à l’Université de Strasbourg, 2016"]} 1 +2024-09-11 09:05:24.314045 2024-09-11 09:05:24.314049 ca52e43a-943a-464a-8226-68f7f2c1375f {"md5": "290c76b553e6da46ff944be72f44d508", "pid": "197623549", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/197623549", "source": "IDREF"}], "preferred_name": "Basso, Matías", "country_associated": "xx", "authorized_access_point": "Basso, Matías", "biographical_information": ["Réalisateur"]} 1 +2024-09-11 09:05:24.369689 2024-09-11 09:05:24.369693 c3403505-b12b-41ea-b4ec-47240d5bfec7 {"md5": "b524b6e9cbf7859962374e292c6044e4", "pid": "197687717", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/197687717", "source": "IDREF"}], "preferred_name": "Surraco, Oscar", "country_associated": "fr", "authorized_access_point": "Surraco, Oscar", "biographical_information": ["Auteur d'une thèse en Droit à Nice"]} 1 +2024-09-11 09:05:24.429801 2024-09-11 09:05:24.429805 3fa64289-13e4-4e59-81ba-737986e45106 {"md5": "3867fe26e24f37f5763d19f20aafc23b", "pid": "197696597", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/197696597", "source": "IDREF"}], "preferred_name": "Bonnière, Laurent", "country_associated": "fr", "authorized_access_point": "Bonnière, Laurent"} 1 +2024-09-11 09:05:24.484881 2024-09-11 09:05:24.484886 777974db-592d-4bd4-bae8-e13d9db512e1 {"md5": "982c40c00dfb297e5c90aba348d80855", "pid": "197997961", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/197997961", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "237481952"}, "date_of_birth": "1974-07-14", "preferred_name": "Bruneau, Antoine", "country_associated": "fr", "authorized_access_point": "Bruneau, Antoine, 1974-....", "biographical_information": ["Clerc de notaire, historien."]} 1 +2024-09-11 09:05:24.539088 2024-09-11 09:05:24.539094 56b8a098-97fe-4d36-a4bf-8844733a8f09 {"md5": "6bd2b70a37576d119e85d7140800c53a", "pid": "198193327", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/198193327", "source": "IDREF"}], "preferred_name": "Régis, Roger", "country_associated": "fr", "authorized_access_point": "Régis, Roger"} 1 +2024-09-11 09:05:24.599326 2024-09-11 09:05:24.59933 01334d8c-7185-4220-806c-d72852040478 {"md5": "f5627db3f9e675a6395c466ab2676d4b", "pid": "198217447", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/198217447", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Gabathuler, Chloé", "country_associated": "sz", "authorized_access_point": "Gabathuler, Chloé, 19..-....", "biographical_information": ["Enseignante-chercheuse à l'Université de Genève en didactique du français et de la littérature"]} 1 +2024-09-11 09:05:24.670985 2024-09-11 09:05:24.670989 8364924e-74e3-4521-8ffa-d34fb25c34b4 {"md5": "7306fbb23e5b8580dddd61494a60c087", "pid": "198395361", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/198395361", "source": "IDREF"}], "date_of_birth": "1988-06-01", "preferred_name": "Kaddour, Mahmoud", "country_associated": "le", "authorized_access_point": "Kaddour, Mahmoud, 1988-....", "biographical_information": ["Titulaire d'un doctorat en Automatique, génie informatique, traitement du signal et des images (Lille 1, 2016)"]} 1 +2024-09-11 09:05:24.724114 2024-09-11 09:05:24.724117 75f96cf5-7b8c-4b8c-8e51-e4f89b433b9e {"md5": "d15c0a0b254db22cf28cfce224d97682", "pid": "198493231", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/198493231", "source": "IDREF"}], "preferred_name": "Colo, Jean-Michel", "country_associated": "fr", "authorized_access_point": "Colo, Jean-Michel", "biographical_information": ["Maire d'Arcangues (Pyrénées-Atlantiques) de 1983 à 2014"]} 1 +2024-09-11 09:05:24.778266 2024-09-11 09:05:24.77827 32df48a7-06e6-4fd3-8eb7-1b39cbd66f48 {"md5": "aec8b4ba1391f86be92e9e37dd2839c5", "pid": "198494289", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/198494289", "source": "IDREF"}], "date_of_birth": "1977-05-26", "preferred_name": "Flament, Vincent", "country_associated": "fr", "authorized_access_point": "Flament, Vincent, 1977-....", "biographical_information": ["Agrégé de sciences physiques. - Cofondateur du Cours Laplace (Charleville-Mézières, Ardennes / Douzy, Ardennes)"]} 1 +2024-09-11 09:05:24.964365 2024-09-11 09:05:24.964369 a6db5598-2c48-4341-9a9e-6c759473f7cf {"md5": "fdab6a0c77fd39019d981ca0e1a7dc59", "pid": "199108617", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/199108617", "source": "IDREF"}], "date_of_birth": "1972-03-24", "preferred_name": "Pralong, Corinne", "country_associated": "fr", "authorized_access_point": "Pralong, Corinne", "biographical_information": ["Titulaire d'une thèse d'exercice de médecine (Limoges : 1998 ; 147)"]} 1 +2024-09-11 09:05:25.027852 2024-09-11 09:05:25.027855 00d2257f-0915-4d26-80f1-f1b26a9a4827 {"md5": "d4e651c4da82c71d5063b461e84c5b0a", "pid": "199119961", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "qualifier": "historien", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/199119961", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Hübner, Hans, historien", "authorized_access_point": "Hübner, Hans, 19..-...., historien", "biographical_information": ["Professeur à l'Université de Halle - Wittenberg, Section Histoire et instruction civique (Staatsbürgerkunde) (en 1986)"]} 1 +2024-09-11 09:05:25.08857 2024-09-11 09:05:25.088576 e24977fe-097b-4f9a-920f-e307f7a5230a {"md5": "879f09ad5e3c693c7f074c7252da4931", "pid": "19915631X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/19915631X", "source": "IDREF"}], "variant_name": ["Fotofever-Photography art fair"], "preferred_name": "Fotofever", "country_associated": "fr", "date_of_termination": "2016-11-13", "variant_access_point": ["Fotofever-Photography art fair (2016 ; Paris)"], "date_of_establishment": "2016-11-11", "authorized_access_point": "Fotofever (2016 ; Paris)", "biographical_information": ["Foire internationale de photographie contemporaine qui se tient à Paris"]} 1 +2024-09-11 09:05:25.143997 2024-09-11 09:05:25.144001 1b33832c-aed3-45c9-bfcc-bcab571af519 {"md5": "4454fb1f2025076ce70eeaf4cc3d7847", "pid": "199168326", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/199168326", "source": "IDREF"}], "preferred_name": "Barbier, Mathilde", "country_associated": "fr", "authorized_access_point": "Barbier, Mathilde", "biographical_information": ["A soutenu un Master 2 recherche \\"Histoire de la philosophie\\" à l'Université Paris 1 Panthéon Sorbonne"]} 1 +2024-09-11 09:05:25.19681 2024-09-11 09:05:25.196813 79b1235c-4577-467a-9121-e2c417616529 {"md5": "3c4a81434fa0e58b9552a6a071b1db5f", "pid": "199187606", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/199187606", "source": "IDREF"}], "date_of_birth": "1947-11-27", "preferred_name": "Brun, Marc", "authorized_access_point": "Brun, Marc, 1947-....", "biographical_information": ["Médecin"]} 1 +2024-09-11 09:05:25.285639 2024-09-11 09:05:25.285644 a163a975-43c9-4cd5-bcf9-5e48913ea331 {"md5": "5096bb1f2cfd357366ca3f45536ed312", "pid": "19921347X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/19921347X", "source": "IDREF"}], "variant_name": ["Ramírez, Miguel Leiva"], "date_of_birth": "1959", "preferred_name": "Leiva Ramírez, Miguel", "country_associated": "sp", "variant_access_point": ["Ramírez, Miguel Leiva"], "authorized_access_point": "Leiva Ramírez, Miguel, 1959-...."} 1 +2024-09-11 09:05:25.353384 2024-09-11 09:05:25.353387 56c51f75-f116-4a7e-8661-6630abf308c6 {"md5": "0cc0145b28b4249656f5e3a74e53c697", "pid": "199238324", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/199238324", "source": "IDREF"}], "variant_name": ["CIME. Summer course", "CIME Summer course Exploiting hidden structure in matrix computations, algorithms and applications"], "preferred_name": "Centro internazionale matematico estivo. Summer course", "country_associated": "it", "date_of_termination": "2015-06-26", "variant_access_point": ["CIME. Summer course (2015 ; Cetraro, Italie)", "CIME Summer course Exploiting hidden structure in matrix computations, algorithms and applications (2015 ; Cetraro, Italie)"], "date_of_establishment": "2015-06-22", "authorized_access_point": "Centro internazionale matematico estivo. Summer course (2015 ; Cetraro, Italie)"} 1 +2024-09-11 09:05:25.410584 2024-09-11 09:05:25.410586 b805482e-e54d-4fa0-a3d3-003248e3d244 {"md5": "b291e3db252747d7a67f1244715e4414", "pid": "199257213", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["kor"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/199257213", "source": "IDREF"}], "variant_name": ["김, 호림", "Ho-rim, Kim"], "date_of_birth": "1966", "preferred_name": "Kim, Ho-rim", "country_associated": "ko", "variant_access_point": ["Ho-rim, Kim"], "authorized_access_point": "Kim, Ho-rim, 1966-"} 1 +2024-09-11 09:05:25.46456 2024-09-11 09:05:25.464563 a21ac9c7-4325-429e-9c9f-525e3926d30e {"md5": "126b7215f91034606e2c9c5049e412d7", "pid": "199258813", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/199258813", "source": "IDREF"}], "preferred_name": "Razetti, Ricardo", "country_associated": "ck", "authorized_access_point": "Razetti, Ricardo", "biographical_information": ["ingénieur"]} 1 +2024-09-11 09:05:25.522311 2024-09-11 09:05:25.522315 d0a88906-a65b-4dc0-92f7-6450a6ae4a83 {"md5": "302e72784914f1de87a4f612f1cdb62c", "pid": "199336776", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/199336776", "source": "IDREF"}], "date_of_birth": "1870-01-02", "preferred_name": "Pruneau, Amédée", "country_associated": "fr", "authorized_access_point": "Pruneau, Amédée, 1870-....", "biographical_information": ["Titulaire d'une thèse en médecine (Lyon, 1912)"]} 1 +2024-09-11 09:05:25.577478 2024-09-11 09:05:25.577483 f5b4f74f-c1ac-4b16-82cc-501e4cedba1c {"md5": "115efe592cb9057d7fe48545710f16f8", "pid": "199441863", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/199441863", "source": "IDREF"}], "date_of_birth": "1946-06-19", "preferred_name": "Diaz, Claude", "authorized_access_point": "Diaz, Claude, 1946-....", "biographical_information": ["Médecin (Paris, 1974)"]} 1 +2024-09-11 09:05:26.296571 2024-09-11 09:05:26.296574 318ba5a8-20ce-4ffd-81e8-8289488e87dc {"md5": "0edd5352296d0241659fe1fd66ee17d8", "pid": "200138766", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/200138766", "source": "IDREF"}], "date_of_birth": "1990-15-01", "preferred_name": "Thouvenin, Amanda", "country_associated": "fr", "authorized_access_point": "Thouvenin, Amanda, 1990-....", "biographical_information": ["Auteure d'une thèse en Physique des Plasmas"]} 1 +2024-09-11 09:05:25.630048 2024-09-11 09:05:25.630051 459f78ea-e07f-4eda-a6f2-7c6c23205165 {"md5": "29fd37ba7c7b2715c8c1b5d52aa8443f", "pid": "199452857", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/199452857", "source": "IDREF"}], "variant_name": ["Universität Erlangen-Nürnberg. Juristische Fakultät", "Juristische Fakultät (Erlangen-Nürnberg)"], "preferred_name": "Friedrich-Alexander-Universität (Erlangen-Nürnberg). Juristische Fakultät", "country_associated": "gw", "variant_access_point": ["Universität Erlangen-Nürnberg. Juristische Fakultät", "Juristische Fakultät (Erlangen-Nürnberg)"], "authorized_access_point": "Friedrich-Alexander-Universität (Erlangen-Nürnberg). Juristische Fakultät"} 1 +2024-09-11 09:05:25.684291 2024-09-11 09:05:25.684297 32c41d06-e8b4-4e52-91f1-fbd24845efbc {"md5": "1bc378fa83346ae329572376ab8cdbc3", "pid": "199464669", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/199464669", "source": "IDREF"}], "preferred_name": "Bénistant, Alix", "authorized_access_point": "Bénistant, Alix", "biographical_information": ["Titulaire d'une thèse de doctorat en Sciences de l'information et de la communication (Paris 8, 2016)"]} 1 +2024-09-11 09:05:25.738188 2024-09-11 09:05:25.738192 a33dd4f6-a916-4eca-ac31-e46f8ae89995 {"md5": "0012777dabd9859e1532308e5e9b9719", "pid": "19954770X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/19954770X", "source": "IDREF"}], "preferred_name": "Biron, Aurélie", "country_associated": "fr", "authorized_access_point": "Biron, Aurélie"} 1 +2024-09-11 09:05:25.790491 2024-09-11 09:05:25.790496 07224661-6042-4586-aa06-46b4cb4004a6 {"md5": "0ade5cb7c7718a05cc1fad2d8faa576d", "pid": "199555907", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["gre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/199555907", "source": "IDREF"}], "variant_name": ["Μαραζόπουλος, Χρῆστος"], "date_of_birth": "1954", "preferred_name": "Marazópoulos, CHrī̂stos", "country_associated": "gr", "variant_access_point": ["Μαραζόπουλος, Χρῆστος, 1954-...."], "authorized_access_point": "Marazópoulos, CHrī̂stos, 1954-...."} 1 +2024-09-11 09:05:25.845713 2024-09-11 09:05:25.845716 e6ce8607-e296-436b-b6b0-e40c8a6e0c5c {"md5": "17801ee6907dd748428e5fea81e64e7c", "pid": "19960097X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/19960097X", "source": "IDREF"}], "preferred_name": "Figurey, Ernest", "country_associated": "fr", "authorized_access_point": "Figurey, Ernest"} 1 +2024-09-11 09:05:25.899761 2024-09-11 09:05:25.899766 9c716631-a923-4a42-9d7f-4d4ef7715b32 {"md5": "0ecbee0a92295d5442ea718e167d53aa", "pid": "199679150", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/199679150", "source": "IDREF"}], "preferred_name": "Larivain, Henri", "country_associated": "fr", "authorized_access_point": "Larivain, Henri"} 1 +2024-09-11 09:05:25.957012 2024-09-11 09:05:25.957017 47d46752-d456-432f-b7f7-a59281126369 {"md5": "324183441e9b234ec71932c8333a92d6", "pid": "199716498", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/199716498", "source": "IDREF"}], "variant_name": ["PMS 200"], "preferred_name": "Seventh international workshop on project management and scheduling", "country_associated": "gw", "date_of_termination": "2000-04-19", "variant_access_point": ["PMS 200"], "date_of_establishment": "2000-04-17", "authorized_access_point": "Seventh international workshop on project management and scheduling (17-19 Avril ; 2000 ; Osnabrück, Germany)"} 1 +2024-09-11 09:05:26.011933 2024-09-11 09:05:26.011937 1d0b6ddc-e8ff-494b-867a-3cdd5375ac35 {"md5": "07940022e09f99dbe5565aca22e3f84d", "pid": "199742022", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/199742022", "source": "IDREF"}], "preferred_name": "Trinquet, Paulette", "country_associated": "fr", "authorized_access_point": "Trinquet, Paulette", "biographical_information": ["Inspectrice de l'Éducation nationale"]} 1 +2024-09-11 09:05:26.073869 2024-09-11 09:05:26.073873 d7dae85f-a58a-41cf-95ef-ff5966336c9e {"md5": "33e78cb153cc4d0cd2c1fb1e999773eb", "pid": "199749736", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/199749736", "source": "IDREF"}], "preferred_name": "Organisation de coopération et de développement économiques", "country_associated": "xxu", "date_of_termination": "1971-09-23", "date_of_establishment": "1971-09-19", "authorized_access_point": "Organisation de coopération et de développement économiques (1971 ; Allerton Park, Monticello, Ill., États-Unis)", "biographical_information": ["Organisation de coopération et de développement économiques (O.C.D.E.)"]} 1 +2024-09-11 09:05:26.128062 2024-09-11 09:05:26.128067 51019a2c-b221-492e-9828-51d05c142c97 {"md5": "105ed8b0f1f0df4d68c0c427cc56c8eb", "pid": "199777381", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/199777381", "source": "IDREF"}], "variant_name": ["Централн́ый комитет и централы́й совет всесойужной пионерской органисации им. в.и. ленина"], "preferred_name": "Centralńyj komitet i centralýj sovet vsesojužnoj pionerskoj organisacii im. v.i. lenina", "country_associated": "ru", "variant_access_point": ["Централн́ый комитет и централы́й совет всесойужной пионерской органисации им. в.и. ленина"], "authorized_access_point": "Centralńyj komitet i centralýj sovet vsesojužnoj pionerskoj organisacii im. v.i. lenina"} 1 +2024-09-11 09:05:26.185277 2024-09-11 09:05:26.185282 1866e841-77ba-4d7f-a57f-1c3ee6c9e7fd {"md5": "4d449908b15f75cfb6059cd24748f4ba", "pid": "199828121", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/199828121", "source": "IDREF"}], "date_of_birth": "1991-06-24", "preferred_name": "Girardo, Claudine", "country_associated": "fr", "authorized_access_point": "Girardo, Claudine, 1991-....", "biographical_information": ["Titulaire d'une thèse d'exercice en Médecine Vétérinaire (Lyon 1, 2016)"]} 1 +2024-09-11 09:05:26.246057 2024-09-11 09:05:26.246061 02f41e41-91a9-452d-acb8-2dbe48988597 {"md5": "75d04bd2de9aa00b5ed45be99ca61819", "pid": "200127748", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/200127748", "source": "IDREF"}], "date_of_birth": "1962", "preferred_name": "Mayar, Vipin", "authorized_access_point": "Mayar, Vipin, 1962-"} 1 +2024-09-11 09:05:26.347591 2024-09-11 09:05:26.347596 d72200aa-1d85-4ae3-bf66-4395ed2411c3 {"md5": "bf2b067f9c55ee154b808374b02c3f42", "pid": "200141163", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/200141163", "source": "IDREF"}], "date_of_birth": "1894-05-14", "date_of_death": "1973-12-16", "preferred_name": "Rollin, Louis", "country_associated": "fr", "authorized_access_point": "Rollin, Louis, 1894-1973", "biographical_information": ["Titulaire d'une thèse en médecine (Lyon, 1927)"]} 1 +2024-09-11 09:05:26.408142 2024-09-11 09:05:26.408146 785785c2-058e-41e3-befd-d0bbda71458c {"md5": "a18845e12545b73fbab9912867ed6690", "pid": "200238574", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/200238574", "source": "IDREF"}], "preferred_name": "Sørensen, Majken Jul", "country_associated": "at", "authorized_access_point": "Sørensen, Majken Jul"} 1 +2024-09-11 09:05:26.459986 2024-09-11 09:05:26.459991 e1e986e3-d67b-4bad-8c34-3418d76c3f49 {"md5": "241ef6cdc64240e4db695408e04f0ede", "pid": "200252933", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/200252933", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Bayala, Apollinaire Bapio", "country_associated": "fr", "authorized_access_point": "Bayala, Apollinaire Bapio, 19..-....", "biographical_information": ["Titulaire d'un doctorat en troisième cylce en Physiologie animale appliquée à Rennes 1 en 1980"]} 1 +2024-09-11 09:05:26.513932 2024-09-11 09:05:26.513935 d25fde62-319c-4938-ae12-2cc9fe16e2c3 {"md5": "b46479526652501e57793098c957936d", "pid": "200400525", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/200400525", "source": "IDREF"}], "date_of_birth": "1904", "date_of_death": "1998-01-23", "preferred_name": "Morris, Dorothy", "country_associated": "nz", "authorized_access_point": "Morris, Dorothy, 1904-1998", "biographical_information": ["Infirmière"]} 1 +2024-09-11 09:05:26.567232 2024-09-11 09:05:26.567236 fc744107-9231-4297-ab17-41808f81dc82 {"md5": "5e99e5c4d1c3717519565f5088584b80", "pid": "200469169", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/200469169", "source": "IDREF"}], "preferred_name": "Gimenez, Pauline", "country_associated": "fr", "authorized_access_point": "Gimenez, Pauline"} 1 +2024-09-11 09:05:26.634614 2024-09-11 09:05:26.634618 4796c41e-1f64-4591-8727-6aafe08d0d8f {"md5": "aa81a84f7fb82b215f5178e22fe3b812", "pid": "200480111", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/200480111", "source": "IDREF"}], "date_of_birth": "1966", "preferred_name": "Pinkowski, Heiko", "authorized_access_point": "Pinkowski, Heiko, 1966-....", "biographical_information": ["acteur"]} 1 +2024-09-11 09:05:26.704859 2024-09-11 09:05:26.704864 a6ecf3bd-94e8-43e3-a220-9ff57254538d {"md5": "321b2dd732555c82eaf130c5cdc5df0b", "pid": "200480391", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/200480391", "source": "IDREF"}], "date_of_birth": "1981-02-10", "preferred_name": "Corswarem, Émilie", "country_associated": "be", "authorized_access_point": "Corswarem, Émilie, 1981-....", "biographical_information": ["Docteur en musicologie de l’Université de Liège (2008), Émilie Corswarem est chercheur qualifié FRS-FNRS (Université de Liège) et maître de conférences à l’Université de Liège."]} 1 +2024-09-11 09:05:26.7583 2024-09-11 09:05:26.758305 a6f6650d-e9c7-45a7-aa74-099c5c4c6166 {"md5": "5a8a8d56068b1711c2006420b181a38f", "pid": "200497065", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/200497065", "source": "IDREF"}], "date_of_birth": "1987", "preferred_name": "El Mechta, Zackaria", "country_associated": "fr", "authorized_access_point": "El Mechta, Zackaria, 1987-....", "biographical_information": ["Auteur d'une thèse en médecine générale en 2017"]} 1 +2024-09-11 09:05:26.815017 2024-09-11 09:05:26.815021 c60334b1-4155-4cce-a0de-7d7e2a46707b {"md5": "0468d9cfb4c66a96be2a93baef4514b8", "pid": "200524925", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/200524925", "source": "IDREF"}], "preferred_name": "Bineau, Mathieu", "country_associated": "fr", "authorized_access_point": "Bineau, Mathieu", "biographical_information": ["Ingénieur du Corps des Mines"]} 1 +2024-09-11 09:05:26.865407 2024-09-11 09:05:26.86541 2a8c4576-64a5-4179-b89f-98f3fbe2e566 {"md5": "b4da72187babf130bc71a03bf6399199", "pid": "200581627", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/200581627", "source": "IDREF"}], "preferred_name": "Cousty, Jacques-Pierre", "country_associated": "fr", "authorized_access_point": "Cousty, Jacques-Pierre", "biographical_information": ["Titulaire d'un doctorat en sciences physiques (Paris 11, 1981)"]} 1 +2024-09-11 09:05:26.918471 2024-09-11 09:05:26.918474 a8aec764-7ec6-44cb-97a3-738251f1919d {"md5": "f77ce78c3ef9241e739d2a1b107b3bd8", "pid": "200646788", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/200646788", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Rozo-Rincon, Maria Cristina", "country_associated": "fr", "authorized_access_point": "Rozo-Rincon, Maria Cristina, 19..-....", "biographical_information": ["Docteur en Sciences appliquées (Université Paris-Dauphine, 1993)"]} 1 +2024-09-11 09:05:26.971291 2024-09-11 09:05:26.971299 b5f1d6eb-33b6-4c1f-9c22-871cc5bfa492 {"md5": "349b1347c446306ef2f4459e4243b6df", "pid": "200661531", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/200661531", "source": "IDREF"}], "date_of_birth": "1986-01-30", "preferred_name": "Aiello, Angèle d'", "authorized_access_point": "Aiello, Angèle d', 1986-....", "biographical_information": ["Médecin militaire français (en 2016). Docteur en médecine (Brest, 2016)"]} 1 +2024-09-11 09:05:27.03095 2024-09-11 09:05:27.030953 f1e235d5-63d6-4696-825e-9df1dd662730 {"md5": "ec18458eced27b6a4f5ac86b48f5d383", "pid": "20071659X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/20071659X", "source": "IDREF"}], "variant_name": ["Auskunftsbüro der deutschen Bibliotheken (Berlin)"], "preferred_name": "Auskunftsbureau der deutschen Bibliotheken (Berlin)", "country_associated": "gw", "date_of_termination": "1945", "variant_access_point": ["Auskunftsbüro der deutschen Bibliotheken (Berlin)"], "date_of_establishment": "1871", "authorized_access_point": "Auskunftsbureau der deutschen Bibliotheken (Berlin)"} 1 +2024-09-11 09:05:27.142454 2024-09-11 09:05:27.142459 b347325b-682d-4291-a0aa-7f62a062ddd3 {"md5": "4a54c79584c3a230a15a5397d60e8e8a", "pid": "20082807X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/20082807X", "source": "IDREF"}], "date_of_birth": "1943-10-10", "preferred_name": "Le Picard, Pierre", "authorized_access_point": "Le Picard, Pierre, 1943-....", "biographical_information": ["Médecin"]} 1 +2024-09-11 09:05:27.200113 2024-09-11 09:05:27.200117 76272521-02c4-4e17-8b2e-014cc82ac25b {"md5": "1bd8bcaea9da8fb234cbfe5b0e66dc36", "pid": "201287617", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/201287617", "source": "IDREF"}], "preferred_name": "Warren, Richard", "country_associated": "xxk", "authorized_access_point": "Warren, Richard", "biographical_information": ["Spécialiste de l'histoire et de la civilisation classique. - Chercheur associé Royal Holloway, University of London, GB (en 2016)"]} 1 +2024-09-11 09:05:27.261053 2024-09-11 09:05:27.261058 6bb58532-a3fc-4724-9fa9-dfd9549100ae {"md5": "d727444885bd9f9d5fdde237e56d37c1", "pid": "201289377", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/201289377", "source": "IDREF"}], "date_of_birth": "1985", "preferred_name": "Assouline, Alice", "country_associated": "fr", "authorized_access_point": "Assouline, Alice, 1985-....", "biographical_information": ["Artiste grenobloise"]} 1 +2024-09-11 09:05:27.318993 2024-09-11 09:05:27.318997 80776bd7-caf8-4594-bdc8-4e492c512d22 {"md5": "1d8bacbc31f25e207522fb6fb74a9dc3", "pid": "201301040", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/201301040", "source": "IDREF"}], "variant_name": ["Actes de la première Conférence européenne sur les Crustacés, Paris, 31 août-5 septembre 1992 (résumés)", "Proceedings of the First European Crustacean Conference, Paris August 31-September 5, 1992 (abstracts)"], "preferred_name": "Conférence européenne sur les crustacés", "country_associated": "fr", "date_of_termination": "1992-09-05", "variant_access_point": ["Actes de la première Conférence européenne sur les Crustacés, Paris, 31 août-5 septembre 1992 (résumés)", "Proceedings of the First European Crustacean Conference, Paris August 31-September 5, 1992 (abstracts)"], "date_of_establishment": "1992-08-31", "authorized_access_point": "Conférence européenne sur les crustacés (01 ; 1992 ; Paris)"} 1 +2024-09-11 09:05:27.374928 2024-09-11 09:05:27.374932 8a07fae0-3d54-4f6c-bc1a-eb0e4d6b5cf7 {"md5": "b7224ef8eb45ca474ddb9fcbde86c8dd", "pid": "201306824", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/201306824", "source": "IDREF"}], "preferred_name": "Colloquium on Precious Metals and Ceramics in the Muslim, Chinese, and Graeco-Roman Worlds", "country_associated": "xxk", "authorized_access_point": "Colloquium on Precious Metals and Ceramics in the Muslim, Chinese, and Graeco-Roman Worlds (1985 ; Oxford, England)"} 1 +2024-09-11 09:05:27.43691 2024-09-11 09:05:27.436914 dbd4f5e7-2d70-4a4e-829a-daf5633da0d6 {"md5": "84fde55b38f59eee373bcf745cd6af91", "pid": "201480034", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/201480034", "source": "IDREF"}], "preferred_name": "Derrick, G. H.", "authorized_access_point": "Derrick, G. H."} 1 +2024-09-11 09:05:27.490162 2024-09-11 09:05:27.490165 c32c8d81-3bf5-4195-a56d-77e31ab960eb {"md5": "b218e1edfa694b0ebf9230fd20a5b053", "pid": "201609924", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/201609924", "source": "IDREF"}], "date_of_birth": "1987-01-19", "preferred_name": "Djaziri, Sarah", "country_associated": "fr", "authorized_access_point": "Djaziri, Sarah, 1987-....", "biographical_information": ["Titulaire d'une thèse d'exercice en Médecine (Lyon 1, 2017)"]} 1 +2024-09-11 09:05:27.549017 2024-09-11 09:05:27.54902 4f2526ec-2b4a-4646-8e61-6c670726d8d0 {"md5": "17631eb86c7edb143414deb8b35dc62f", "pid": "201643936", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/201643936", "source": "IDREF"}], "variant_name": ["Manufacture alsacienne d'outils (Zornhoff, Bas-Rhin)", "Manufacture française d'outils (Tronville, Meuse)", "Anciens établissements Goldenberg et Cie"], "preferred_name": "Goldenberg", "country_associated": "fr", "variant_access_point": ["Manufacture alsacienne d'outils (Zornhoff, Bas-Rhin)", "Manufacture française d'outils (Tronville, Meuse)", "Anciens établissements Goldenberg et Cie"], "date_of_establishment": "1850", "authorized_access_point": "Goldenberg", "biographical_information": ["Issu d'une manufacture d'armes blanches, en 1850 la Société fondée par Gustave Goldenberg comprend une usine à Dorlisheim et une autre à Zornhoff. Vers 1870 une troisième usine est construite à Tronville en Barrois. Cette \\"Manufacture française d'outils\\" reste autonome. En même temps la maison-mêre est transformée en société anonyme sous le nom \\"Manufacture alsacienne d'outils-Zornhoff\\". En 1924, les deux sociétés fusionnent sous le nom \\"Anciens établissements Goldenberg et Cie"]} 1 +2024-09-11 09:05:27.602682 2024-09-11 09:05:27.602687 97295339-b7f2-4597-a952-c7f62feb8e01 {"md5": "efe4669564477c66a90b0b97ada0f806", "pid": "201672618", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["kor"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/201672618", "source": "IDREF"}], "variant_name": ["박, 철상", "Ch'ŏl-sang, Pak"], "date_of_birth": "1967", "preferred_name": "Pak, Ch'ŏl-sang", "country_associated": "ko", "variant_access_point": ["Ch'ŏl-sang, Pak"], "authorized_access_point": "Pak, Ch'ŏl-sang, 1967-...."} 1 +2024-09-11 09:05:27.658097 2024-09-11 09:05:27.658101 cafd4982-b2be-462f-b399-dacdb58d964f {"md5": "e6048508e2a76be6fbbc5b49f7c60a97", "pid": "201683636", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/201683636", "source": "IDREF"}], "preferred_name": "Ruffert, Maximillian", "country_associated": "xxk", "authorized_access_point": "Ruffert, Maximillian", "biographical_information": ["Professeur à l'Université d'Edimbourg (Ecosse) en 2016"]} 1 +2024-09-11 09:05:27.713092 2024-09-11 09:05:27.713097 0a5a4a3b-44a3-42f7-9b74-345bd835462c {"md5": "e610b6625ff1e596886d993f780ca023", "pid": "20169106X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/20169106X", "source": "IDREF"}], "date_of_birth": "1984-08-30", "preferred_name": "Bufi, Elio Antonio", "country_associated": "it", "authorized_access_point": "Bufi, Elio Antonio, 1984-....", "biographical_information": ["Auteur d'une thèse en Mécanique des fluides à Paris, ENSAM en 2016"]} 1 +2024-09-11 09:05:27.774574 2024-09-11 09:05:27.774579 c3573b45-dfad-4afb-a078-33ef6776db09 {"md5": "ba2001afb7734e4e8824cfb27d80c905", "pid": "201716461", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/201716461", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Simon, Bernard", "country_associated": "fr", "authorized_access_point": "Simon, Bernard, 19..-....", "biographical_information": ["Enseignant-chercheur en Physiologie à l'ORPHY (Optimisation des Régulations Physiologiques) à l'UBO (Université de Bretagne Occidentale, Brest)"]} 1 +2024-09-11 09:05:27.837927 2024-09-11 09:05:27.837933 8923a731-ad7e-4445-8730-9d75c969c795 {"md5": "10021c2b5077e49a2e738299a2058894", "pid": "201724588", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/201724588", "source": "IDREF"}], "date_of_birth": "1977-12-11", "preferred_name": "Lemrabott Lewfah, Mohamed Aly", "country_associated": "mu", "authorized_access_point": "Lemrabott Lewfah, Mohamed Aly, 1977-....", "biographical_information": ["Auteur d'une thèse en Droit privé à Aix-Marseille en 2016"]} 1 +2024-09-11 09:05:27.891605 2024-09-11 09:05:27.891609 abb71550-46ee-4d4c-8c6d-bc00803a33aa {"md5": "836e8bc61d78100e1974f9694b46f4a6", "pid": "201753413", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/201753413", "source": "IDREF"}], "date_of_birth": "1927-12-06", "date_of_death": "1991-10-04", "preferred_name": "Diguet, Charles", "country_associated": "fr", "authorized_access_point": "Diguet, Charles, 1927-....", "biographical_information": ["Titulaire d'une thèse d'exercice en Médecine (Rennes 1 : 1962 )"]} 1 +2024-09-11 09:05:27.943497 2024-09-11 09:05:27.943502 5ea4e4d0-c94d-4a74-a2be-151e2fdf107e {"md5": "34621dc1f6f8be42a9d2e840ebcb7d4c", "pid": "201756463", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/201756463", "source": "IDREF"}], "preferred_name": "Bitat, Amor", "country_associated": "fr", "authorized_access_point": "Bitat, Amor", "biographical_information": ["Auteur d'une thèse de 3e cycle soutenue à l'Université de Nancy II en 1985"]} 1 +2024-09-11 09:05:28.00075 2024-09-11 09:05:28.000753 a45bf15d-9961-42a9-b026-ab61e3eea21a {"md5": "c94f6354d568760772f0e412729a67cb", "pid": "201762641", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/201762641", "source": "IDREF"}], "date_of_birth": "1955-06-21", "preferred_name": "Weksler, Marcelo", "country_associated": "fr", "authorized_access_point": "Weksler, Marcelo, 1955-....", "biographical_information": ["Auteur d'une thèse en Sciences de l'éducation à Sorbonne Paris Cité en 2015"]} 1 +2024-09-11 09:05:28.063452 2024-09-11 09:05:28.063455 14482cc0-b1d5-4e7a-992b-acaeb1725d57 {"md5": "8e77272e2916b191476f5e8b97372b3d", "pid": "201790017", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "rus"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/201790017", "source": "IDREF"}], "preferred_name": "Colloquium on Microwave Communication", "country_associated": "hu", "date_of_termination": "1970-04-24", "date_of_establishment": "1970-04-21", "authorized_access_point": "Colloquium on Microwave Communication (4 ; 1970 ; Budapest)"} 1 +2024-09-11 09:05:28.11929 2024-09-11 09:05:28.119293 5569cf15-634e-4eb6-babb-a61fd2521446 {"md5": "dc6a98feea41ca70cde47d0cf0a7d9f1", "pid": "201827581", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/201827581", "source": "IDREF"}], "variant_name": ["Valat, Sarah Obert"], "preferred_name": "Obert-Valat, Sarah", "country_associated": "fr", "variant_access_point": ["Valat, Sarah Obert"], "authorized_access_point": "Obert-Valat, Sarah"} 1 +2024-09-11 09:05:28.173172 2024-09-11 09:05:28.173176 065b7ec9-c45b-45c9-b64c-5e8889873534 {"md5": "8f98e54455c01aeac2bfea8c1789a83b", "pid": "201830507", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/201830507", "source": "IDREF"}], "date_of_birth": "1988-08-30", "preferred_name": "Beaudoux, Xavier", "country_associated": "fr", "authorized_access_point": "Beaudoux, Xavier, 1988-....", "biographical_information": ["Titulaire d'un doctorat en chimie et physico-chimie des Matériaux (Université de Montpellier, 2015)"]} 1 +2024-09-11 09:05:28.229396 2024-09-11 09:05:28.2294 4105538f-c52a-4a96-ba9b-40e2baee0811 {"md5": "6bff547ff979dfe83b12942ebd2c8be1", "pid": "201849534", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/201849534", "source": "IDREF"}], "date_of_birth": "1987-12-11", "preferred_name": "Roos, Antoine", "country_associated": "fr", "authorized_access_point": "Roos, Antoine", "biographical_information": ["Titulaire d'une thèse de docteur en médecine (Strasbourg, 2017)."]} 1 +2024-09-11 09:05:28.284853 2024-09-11 09:05:28.284857 ecf12b9b-3fd5-4909-b274-580b7f2cca27 {"md5": "a30355d5bf3583ad48e95e15a5a3dbc3", "pid": "20185080X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/20185080X", "source": "IDREF"}], "variant_name": ["Vuillemin, Nicole Seibert-"], "preferred_name": "Seibert-Vuillemin, Nicole", "variant_access_point": ["Vuillemin, Nicole Seibert-"], "authorized_access_point": "Seibert-Vuillemin, Nicole", "biographical_information": ["Médecin"]} 1 +2024-09-11 09:05:28.340926 2024-09-11 09:05:28.34093 cda05546-a100-46f8-b2e0-b35673e4226b {"md5": "40aae4fd514234bf10a35c1dd2e0ae1a", "pid": "202400263", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/202400263", "source": "IDREF"}], "preferred_name": "King, G. G.", "authorized_access_point": "King, G. G."} 1 +2024-09-11 09:05:28.405669 2024-09-11 09:05:28.405674 c9b8b460-5bfc-4d9a-b0bc-fabe2a5aca3e {"md5": "6528be6a7d917c3b409d263e02a9d0f1", "pid": "202446573", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/202446573", "source": "IDREF"}], "preferred_name": "Durante, Janet", "country_associated": "fr", "authorized_access_point": "Durante, Janet"} 1 +2024-09-11 09:05:28.463861 2024-09-11 09:05:28.463864 74807e79-b78e-493a-b7e9-7fd4f906056f {"md5": "3761959c72335dd157e7eb839855dfbe", "pid": "202513645", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/202513645", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Chakrabarti, Nina", "country_associated": "xx", "authorized_access_point": "Chakrabarti, Nina, 19..-....", "biographical_information": ["Graphiste et illustratrice"]} 1 +2024-09-11 09:05:28.52833 2024-09-11 09:05:28.528335 d9a06a01-50e0-4315-9f9b-c909ed674b13 {"md5": "fc784b35fe3dbdb8615377d605303fca", "pid": "202637417", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/202637417", "source": "IDREF"}], "date_of_birth": "1985-03-11", "preferred_name": "Berbiche, Amine", "country_associated": "ae", "authorized_access_point": "Berbiche, Amine, 1985-....", "biographical_information": ["Auteur d'une thèse en Acoustique à Aix-Marseille en 2016"]} 1 +2024-09-11 09:05:28.586755 2024-09-11 09:05:28.586758 f2ca5611-65fb-4cb5-bfe0-4692eb495b94 {"md5": "d07a9efe43361ae5c84909c73e83d1e7", "pid": "202648087", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/202648087", "source": "IDREF"}], "date_of_birth": "1963-04-09", "preferred_name": "Lesieur, Olivier", "country_associated": "fr", "authorized_access_point": "Lesieur, Olivier, 1963-....", "biographical_information": ["Auteur d'une thèse de doctorat en Ethique médicale soutenue à l'Université Sorbonne Paris Cité en 2015"]} 1 +2024-09-11 09:05:28.646042 2024-09-11 09:05:28.646046 1dc08699-7db8-41f7-ab2d-c0f678e120bc {"md5": "2c3ad7a4f829e5a7910977e19440c081", "pid": "202681793", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/202681793", "source": "IDREF"}], "date_of_birth": "1978--", "preferred_name": "Ponce de León, Facundo", "country_associated": "uy", "authorized_access_point": "Ponce de León, Facundo, 1978-....", "biographical_information": ["Journaliste. Professeur d'anthropologie philosophique à l'Università della República Cattolica dell' Uruguay."]} 1 +2024-09-11 09:05:28.706141 2024-09-11 09:05:28.706144 ffff1cb4-cfa6-437e-a1ee-d1009e6d4f8d {"md5": "29aa266453bc0ce91a476e83be8b612e", "pid": "202685144", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/202685144", "source": "IDREF"}], "date_of_birth": "1903", "preferred_name": "Horton, Donald Clare", "authorized_access_point": "Horton, Donald Clare, 1903-...."} 1 +2024-09-11 09:05:28.760059 2024-09-11 09:05:28.760061 d52eabff-b929-4b20-a4ac-afe5c2fc89a6 {"md5": "8040b320078cfc442150ca03c301b802", "pid": "202745279", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "traductrice", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/202745279", "source": "IDREF"}], "preferred_name": "Reilly, Joan, traductrice", "country_associated": "sz", "authorized_access_point": "Reilly, Joan, traductrice", "biographical_information": ["Traduit du français en anglais"]} 1 +2024-09-11 09:05:28.819932 2024-09-11 09:05:28.819937 2e34a079-18e9-470b-aa0d-256406c57851 {"md5": "6ea1c09906f2623ac56df3cd08cbdf20", "pid": "202768740", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["cat"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/202768740", "source": "IDREF"}], "date_of_birth": "1980", "preferred_name": "Darné, Txell", "country_associated": "sp", "authorized_access_point": "Darné, Txell, 1980-....", "biographical_information": ["Illustratrice, diplômée de l'école Massana de Barcelonne"]} 1 +2024-09-11 09:05:28.882287 2024-09-11 09:05:28.882292 ec4c3a24-8f13-46bd-ae62-ba0f08254a57 {"md5": "d914a5b48587fd17c4658cc7bc34bd03", "pid": "202773663", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/202773663", "source": "IDREF"}], "date_of_birth": "1990-08-30", "preferred_name": "Rouchon, Thibaut", "country_associated": "fr", "authorized_access_point": "Rouchon, Thibaut, 1990-....", "biographical_information": ["Auteur d'une thèse en Mécanique-matériaux à Paris, ENSAM en 2015"]} 1 +2024-09-11 09:05:28.940194 2024-09-11 09:05:28.940197 fa76a073-9491-478c-9673-51b49235dc98 {"md5": "9870ae06c113130c598466138842546f", "pid": "202908097", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/202908097", "source": "IDREF"}], "date_of_birth": "1986-03-30", "preferred_name": "Ruiz, Mathieu", "country_associated": "fr", "authorized_access_point": "Ruiz, Mathieu, 1986-....", "biographical_information": ["Auteur d'une thèse en Sciences cognitives, psychologie et neurocognition à Grenoble en 2014"]} 1 +2024-09-11 09:05:28.992746 2024-09-11 09:05:28.992751 b2d8d831-2787-4378-b871-006272a6333e {"md5": "220e6496756c0f4f3ac14b4952f123c5", "pid": "202971511", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre", "spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/202971511", "source": "IDREF"}], "variant_name": ["Connan, Christophe François"], "preferred_name": "François-Connan, Christophe", "country_associated": "fr", "variant_access_point": ["Connan, Christophe François"], "authorized_access_point": "François-Connan, Christophe"} 1 +2024-09-11 09:05:29.058196 2024-09-11 09:05:29.058201 3d89120a-105b-44ba-8cc1-aa3802a2a0ad {"md5": "5e722ca9c026f922f69cd505bf654378", "pid": "202987752", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/202987752", "source": "IDREF"}], "date_of_birth": "1809-07-31", "date_of_death": "1879-05-15", "preferred_name": "Godeboeuf, Eugène", "country_associated": "fr", "authorized_access_point": "Godeboeuf, Eugène, 1809-1879", "biographical_information": ["Architecte"]} 1 +2024-09-11 09:05:29.113385 2024-09-11 09:05:29.113387 4fc23c5d-9ad6-403c-9036-78933c13cfbc {"md5": "22956c6a44ff4dcf18bd2ac92ffc6e64", "pid": "20307324X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/20307324X", "source": "IDREF"}], "variant_name": ["Пильщикова, Нина Н.", "Pilszczikowa, Nina", "Pilʹshchikova, Nina"], "date_of_birth": "19XX", "preferred_name": "Pilʹŝikova, Nina N.", "country_associated": "ru", "variant_access_point": ["Pilszczikowa, Nina", "Pilʹshchikova, Nina"], "authorized_access_point": "Pilʹŝikova, Nina N., 19..-...."} 1 +2024-09-11 09:05:29.172471 2024-09-11 09:05:29.172475 fc5c11fb-3a80-4eff-8469-ada78c9d5411 {"md5": "e0bdc29fed5271718030a8ae3021e04c", "pid": "203079442", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["tha"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/203079442", "source": "IDREF"}], "variant_name": ["ล.พ."], "preferred_name": "Lǭ. Phǭ.", "country_associated": "th", "variant_access_point": ["ล.พ."], "authorized_access_point": "Lǭ. Phǭ.", "biographical_information": ["Translittération ALA-LC", "Pseudonyme d’un auteur thaï."]} 1 +2024-09-11 09:05:29.2272 2024-09-11 09:05:29.227205 fc3b555f-70b2-4309-b9f6-690ec7784ae6 {"md5": "ddbd3a72cdebf5eb37bb88ce7f572fd0", "pid": "203120752", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/203120752", "source": "IDREF"}], "preferred_name": "Lataste, Flore", "authorized_access_point": "Lataste, Flore"} 1 +2024-09-11 09:05:29.287776 2024-09-11 09:05:29.287782 d4881e22-5345-4de9-ad8e-fdf31478cf79 {"md5": "95af2df7cddb89ec4d88c5ef523d4fa4", "pid": "203121953", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["pol"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/203121953", "source": "IDREF"}], "preferred_name": "Orłowski, Tomasz", "country_associated": "pl", "authorized_access_point": "Orłowski, Tomasz", "biographical_information": ["Diplomate polonais"]} 1 +2024-09-11 09:05:29.341063 2024-09-11 09:05:29.341067 01e974ad-c7ab-4113-9eda-e5bf03c320f0 {"md5": "a263fa513be3cf469583f0180f9f78d7", "pid": "203168712", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/203168712", "source": "IDREF"}], "preferred_name": "Agius, Raymond", "authorized_access_point": "Agius, Raymond"} 1 +2024-09-11 09:05:29.391542 2024-09-11 09:05:29.391548 74a7a6ec-7702-4a1f-ba7b-1ac06473fb9e {"md5": "dd7281f01d95d8993469c4f0cf58d154", "pid": "203351312", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/203351312", "source": "IDREF"}], "preferred_name": "Urquidi Anaya, Martha", "country_associated": "bo", "authorized_access_point": "Urquidi Anaya, Martha", "biographical_information": ["Poète, écrivain"]} 1 +2024-09-11 09:05:29.45252 2024-09-11 09:05:29.452524 7572fdb4-6b95-488c-a0fe-92f472c3d223 {"md5": "53f43c45f8425922e0002712751b07a5", "pid": "203359321", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/203359321", "source": "IDREF"}], "date_of_birth": "1980-08-29", "preferred_name": "Morin, Damien", "country_associated": "fr", "authorized_access_point": "Morin, Damien, 1980-....", "biographical_information": ["Docteur en médecine (en 2017)"]} 1 +2024-09-11 09:05:29.514015 2024-09-11 09:05:29.514021 161d4342-ab61-48fe-922c-f69b89379b90 {"md5": "fad995114d9556655d74728977d4eb2d", "pid": "203372514", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/203372514", "source": "IDREF"}], "variant_name": ["Martilliat, Joachim Enjobert de", "Martillat, Joachim-Enjobert de", "Ma, Qingshan", "De Martiliat, Joachim Enjobert", "Enjobert de Martiliat, Joachim"], "date_of_birth": "1706-06-11", "date_of_death": "1755-08-24", "preferred_name": "Martiliat, Joachim Enjobert de", "variant_access_point": ["Martilliat, Joachim Enjobert de", "Martillat, Joachim-Enjobert de", "Ma, Qingshan", "De Martiliat, Joachim Enjobert", "Enjobert de Martiliat, Joachim"], "authorized_access_point": "Martiliat, Joachim Enjobert de, 1706-1755", "biographical_information": ["Missionnaire en Chine, évêque d'Ecrinée. A traduit du chinois."]} 1 +2024-09-11 09:05:29.572944 2024-09-11 09:05:29.572948 33070bbd-1786-4640-a466-9d6ef76b1430 {"md5": "98818b602e416bf6894d6964274e9724", "pid": "203387279", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/203387279", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Rigolot, Irénée", "country_associated": "fr", "authorized_access_point": "Rigolot, Irénée, 19..-....", "biographical_information": ["Moine cistercien, abbaye de Timadeuc"]} 1 +2024-09-11 09:05:29.628633 2024-09-11 09:05:29.628637 9ef594b9-cd5e-44e4-8258-73e3164b62cf {"md5": "ff21d8e986e7ca08c333aeabdfe7f854", "pid": "20354014X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["cze"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/20354014X", "source": "IDREF"}], "preferred_name": "Zelenková, Petra", "authorized_access_point": "Zelenková, Petra"} 1 +2024-09-11 09:05:29.682548 2024-09-11 09:05:29.682553 6184309c-093e-4584-a375-c9c567db7d09 {"md5": "d9073ea7fefe6bfeec0fafa74d235c7c", "pid": "203603141", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/203603141", "source": "IDREF"}], "variant_name": ["Santis, Juan Antonio"], "date_of_birth": "1964", "preferred_name": "Santis Márquez, Juan Antonio", "country_associated": "cl", "variant_access_point": ["Santis, Juan Antonio"], "authorized_access_point": "Santis Márquez, Juan Antonio, 1964-...."} 1 +2024-09-11 09:05:29.735002 2024-09-11 09:05:29.735006 b27906a4-c85c-4a1e-ad26-5b664b225d99 {"md5": "316993fc694cf201ff19f434f46f3788", "pid": "203620941", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/203620941", "source": "IDREF"}], "date_of_birth": "1923-10-15", "preferred_name": "Moissi, Bettina", "country_associated": "gw", "authorized_access_point": "Moissi, Bettina, 1923-....", "biographical_information": ["Actrice allemande"]} 1 +2024-09-11 09:05:29.78639 2024-09-11 09:05:29.786394 925f6a4b-e075-4ea5-a79d-821506d02a30 {"md5": "fb8e4e3bb5b31dc16f97981651c604df", "pid": "203662997", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/203662997", "source": "IDREF"}], "preferred_name": "Kubba, Samira", "country_associated": "fr", "authorized_access_point": "Kubba, Samira", "biographical_information": ["Titulaire d'un doctorat en traitement de l'information (Paris 11, 1980)"]} 1 +2024-09-11 09:05:29.841387 2024-09-11 09:05:29.841391 59d86498-d99d-4b53-858c-0e4866287db4 {"md5": "183d53bf0f23e9da76adbae2127ad3b1", "pid": "203861108", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/203861108", "source": "IDREF"}], "date_of_birth": "17..", "date_of_death": "18..", "preferred_name": "Mittler", "country_associated": "gw", "authorized_access_point": "Mittler, 17..-18..", "biographical_information": ["Libraire à Leipsik. Travaille en association avec Besson."]} 1 +2024-09-11 09:05:29.893948 2024-09-11 09:05:29.893952 fb506315-003a-45d2-9de2-b2bfadb30ef0 {"md5": "e9bff296e07e21a454da3d0dd5ebb43f", "pid": "203863232", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/203863232", "source": "IDREF"}], "date_of_birth": "1994-10-02", "preferred_name": "Sorlin, Delphine", "country_associated": "fr", "authorized_access_point": "Sorlin, Delphine, 1994-....", "biographical_information": ["Auteur d'un mémoire de kinésithérapie soutenu en 2017 à l'Université de Lyon I"]} 1 +2024-09-11 09:05:29.947057 2024-09-11 09:05:29.947062 3cb1a017-aa8b-4724-978a-68cad5da0de4 {"md5": "609d1335300c28840bf2fc7ffe380c45", "pid": "203926625", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/203926625", "source": "IDREF"}], "preferred_name": "Ter Mikelian-Calhoun, C.", "authorized_access_point": "Ter Mikelian-Calhoun, C.", "biographical_information": ["Titulaire dun mémoire de maîtrise en sociologie soutenu à l'université Paris VIII en [1975]"]} 1 +2024-09-11 09:05:30.000944 2024-09-11 09:05:30.000948 9a0d25bf-cff3-4e4e-8a9c-268a61589851 {"md5": "973bd34091cb6fb91cb50d4b329a21ef", "pid": "203929594", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "qualifier": "sociologue", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/203929594", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Álvarez, Marcelo, sociologue", "authorized_access_point": "Álvarez, Marcelo, 19..-...., sociologue", "biographical_information": ["Anthropologue de l'Université de Buenos Aires et chercheur spécialisé en anthropologie alimantaire à l'Instituto Nacional de Antropología y Pensamiento Latinoamericano (Argentine) en 2015."]} 1 +2024-09-11 09:05:30.054281 2024-09-11 09:05:30.054284 b159ce9c-74f6-4f26-932b-81fdbf4c8603 {"md5": "7ab60f7e18d99338359c22c9224b1f3e", "pid": "203933036", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/203933036", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Huet, Pauline", "country_associated": "fr", "authorized_access_point": "Huet, Pauline, 19..-....", "biographical_information": ["Titulaire du diplôme d’Ingénieur de l’Institut Supérieur des Sciences Agronomiques, Agroalimentaires, Horticoles et du Paysage Option Horticulture Ornementale et Valorisation (Agrocampus Ouest Angers, 2012)"]} 1 +2024-09-11 09:05:30.106898 2024-09-11 09:05:30.106903 c4354bcf-14bc-49f9-9bf8-6c611f4e7017 {"md5": "cfa7742e50c5afabca1bde7a1195def8", "pid": "203935616", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ara"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/203935616", "source": "IDREF"}], "variant_name": ["Bicar, Hussein", "Hussein, Bikar", "Bicar, Hussein Amin Ibrahim"], "date_of_birth": "1913", "date_of_death": "2002", "preferred_name": "Bikar, Hussein Amin Ibrahim", "country_associated": "ua", "variant_access_point": ["Bicar, Hussein", "Hussein, Bikar", "Bicar, Hussein Amin Ibrahim"], "authorized_access_point": "Bikar, Hussein Amin Ibrahim, 1913-2002", "biographical_information": ["Artiste"]} 1 +2024-09-11 09:05:30.160226 2024-09-11 09:05:30.160231 87061752-eb51-40ba-8e97-5a612d55abaf {"md5": "5a6e7a0fa2c5c68d42b43d06c5a70161", "pid": "203937740", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/203937740", "source": "IDREF"}], "date_of_birth": "1987-04-20", "preferred_name": "Marre, Caroline", "country_associated": "fr", "authorized_access_point": "Marre, Caroline, 1987-....", "biographical_information": ["Auteur d'un mémoire de master 2 soutenu en 2012 à l'Université Paris 7-Denis Diderot"]} 1 +2024-09-11 09:05:30.239631 2024-09-11 09:05:30.239634 6d782e51-86a0-41ef-b890-ce327844ed9a {"md5": "1a6f116907a5f080105e60edc3cbf89a", "pid": "20394562X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/20394562X", "source": "IDREF"}], "preferred_name": "Shakeshaft, E.", "country_associated": "fr", "authorized_access_point": "Shakeshaft, E."} 1 +2024-09-11 09:05:30.293137 2024-09-11 09:05:30.293141 7b098b4c-abb0-409d-9ea4-3b8f44674e96 {"md5": "a3ecc4ff8bc515eba5b4f072f35f17a2", "pid": "203971051", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/203971051", "source": "IDREF"}], "preferred_name": "Leirs, Herwig", "authorized_access_point": "Leirs, Herwig", "biographical_information": ["Professeur de biologie, Université d'Anvers, Campus Groenenborger, Belgique (en 2017)"]} 1 +2024-09-11 09:05:30.344795 2024-09-11 09:05:30.344799 804d1881-cd83-49ea-ab76-9c261569a347 {"md5": "ec0f2e59d12327da3bc22eddb9d885c2", "pid": "204040388", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/204040388", "source": "IDREF"}], "variant_name": ["Laplace, Marina Christiane"], "date_of_birth": "1993-04-27", "preferred_name": "Laplace, Marina", "variant_access_point": ["Laplace, Marina Christiane"], "authorized_access_point": "Laplace, Marina", "biographical_information": ["Sage-femme"]} 1 +2024-09-11 09:05:30.409342 2024-09-11 09:05:30.409347 86338f5d-6ba4-43a1-8095-c14e809bc471 {"md5": "579b80c18219800723ab4523cacc0c85", "pid": "204097428", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["pol"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/204097428", "source": "IDREF"}], "preferred_name": "Turski, Ryszard", "country_associated": "pl", "authorized_access_point": "Turski, Ryszard"} 1 +2024-09-11 09:05:30.468048 2024-09-11 09:05:30.468052 d25275e7-485f-484d-91ca-1e314d3926fa {"md5": "d7fb9b9832c4241e5ce9df8e513a4d2f", "pid": "204167000", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/204167000", "source": "IDREF"}], "preferred_name": "Bhatt, Anil", "authorized_access_point": "Bhatt, Anil"} 1 +2024-09-11 09:05:30.535968 2024-09-11 09:05:30.535971 b26f57b1-4f4f-4997-aea8-d62b4323e8f6 {"md5": "99d99563fd947d4611413d7b29d1b575", "pid": "204208246", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/204208246", "source": "IDREF"}], "preferred_name": "TAPPI PaperCon", "country_associated": "xxu", "authorized_access_point": "TAPPI PaperCon (2016 ; Cincinnati (Ohio))"} 1 +2024-09-11 09:05:30.588059 2024-09-11 09:05:30.588063 ca233407-33db-4dc4-a45e-3450d8a0a204 {"md5": "a6b7cda84d2382bfed80527d959465f5", "pid": "20422280X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/20422280X", "source": "IDREF"}], "preferred_name": "Emnet, Charlotte", "authorized_access_point": "Emnet, Charlotte", "biographical_information": ["aAuteur d'une thèse en Médecine à l'Université de Lorraine en 2017"]} 1 +2024-09-11 09:05:30.642261 2024-09-11 09:05:30.642265 7e546a78-c990-4812-a09e-c2f08fdefd33 {"md5": "88ee7d069b8e832bbde82e79f62411a7", "pid": "204242479", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/204242479", "source": "IDREF"}], "preferred_name": "Brudal, Holger", "country_associated": "no", "authorized_access_point": "Brudal, Holger", "biographical_information": ["Directeur Verglaboratoriet, Oslo"]} 1 +2024-09-11 09:05:30.692351 2024-09-11 09:05:30.692356 15b671d7-e5d4-4a79-8efa-d381591642b9 {"md5": "509e3f3b108d7fc2cf220d4284b6c5d4", "pid": "204251206", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/204251206", "source": "IDREF"}], "date_of_birth": "18XX", "date_of_death": "19XX", "preferred_name": "Peulevey, G. L.", "country_associated": "fr", "authorized_access_point": "Peulevey, G. L., 18..-....", "biographical_information": ["Sous-lieutenant"]} 1 +2024-09-11 09:05:30.751947 2024-09-11 09:05:30.751952 5adb8595-66e1-40f6-ae9e-61c4626c4b94 {"md5": "bdb17e288260e8f55dc228f4eb8b6e89", "pid": "20436678X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/20436678X", "source": "IDREF"}], "preferred_name": "Shano, Philip D.", "country_associated": "xxc", "authorized_access_point": "Shano, Philip D.", "biographical_information": ["Jésuite ordonné prêtre en 1988. Maître de conférence : Regis College, University of Toronto (en 2017)"]} 1 +2024-09-11 09:05:30.807239 2024-09-11 09:05:30.807243 36a5a177-60f7-44cd-bcb6-cffad9e7b5b0 {"md5": "4c115d1007f6e8999ab40e1ee3326658", "pid": "204436869", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/204436869", "source": "IDREF"}], "preferred_name": "Symposium on Archaean geochemistry", "country_associated": "ii", "date_of_termination": "1977-11-19", "date_of_establishment": "1977-11-15", "authorized_access_point": "Symposium on Archaean geochemistry (1977 ; Hyderabad, India)"} 1 +2024-09-11 09:05:30.86009 2024-09-11 09:05:30.860094 22f853cf-4b5f-4ff1-89df-b0924485d563 {"md5": "a6912463883f3650b9fb4d2c9dc6f552", "pid": "204581745", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rum"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/204581745", "source": "IDREF"}], "preferred_name": "Andreescu, Dan", "country_associated": "rm", "authorized_access_point": "Andreescu, Dan"} 1 +2024-09-11 09:05:30.922406 2024-09-11 09:05:30.922409 9c4b1003-7f62-4e13-b37f-6afc60248ef5 {"md5": "7615ac79a52964d2b54499a24957b059", "pid": "204651913", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/204651913", "source": "IDREF"}], "date_of_birth": "1933-12-17", "preferred_name": "Chiarini, Claude", "authorized_access_point": "Chiarini, Claude", "biographical_information": ["Médecin"]} 1 +2024-09-11 09:05:30.981057 2024-09-11 09:05:30.981062 d9464ee3-773a-4367-8024-85f533b6e2ac {"md5": "ac4fc97257cdf920ea9a62aab7102424", "pid": "204719593", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["hun"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/204719593", "source": "IDREF"}], "date_of_birth": "1950-12-05", "date_of_death": "2XXX", "preferred_name": "Salusinsky, Gábor", "country_associated": "hu", "authorized_access_point": "Salusinsky, Gábor, 1950-....", "biographical_information": ["Professeur d'italien.Traducteur du hongrois en italien"]} 1 +2024-09-11 09:05:31.038877 2024-09-11 09:05:31.038884 316fd5c8-167c-4a4d-ada8-939ada269c4c {"md5": "8d1b5a5405b5fb614f99ce98aa3d9661", "pid": "204750032", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/204750032", "source": "IDREF"}], "variant_name": ["池田, 節子"], "date_of_birth": "1955", "preferred_name": "Ikeda, Setsuko", "country_associated": "ja", "variant_access_point": ["池田, 節子, 1955-...."], "authorized_access_point": "Ikeda, Setsuko, 1955-....", "biographical_information": ["Sp. littérature japonaise"]} 1 +2024-09-11 09:05:31.090932 2024-09-11 09:05:31.090935 4bd3b664-589f-42ab-abb0-cc4fd980d451 {"md5": "041bc7e0e4b1014d6715dab2aa497aa0", "pid": "204755824", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/204755824", "source": "IDREF"}], "preferred_name": "Brock, Janice", "country_associated": "xxk", "authorized_access_point": "Brock, Janice"} 1 +2024-09-11 09:05:31.144621 2024-09-11 09:05:31.144625 f87e8fad-3815-45d5-914a-8605814e9125 {"md5": "0a1aaad52eb28f35f45b33048044d27f", "pid": "20476209X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/20476209X", "source": "IDREF"}], "variant_name": ["Telmini, Boutheina Maraoui", "Maraoui, Boutheina"], "preferred_name": "Maraoui Telmini, Boutheina", "country_associated": "ti", "variant_access_point": ["Telmini, Boutheina Maraoui", "Maraoui, Boutheina"], "authorized_access_point": "Maraoui Telmini, Boutheina", "biographical_information": ["Archéologue"]} 1 +2024-09-11 09:05:31.204477 2024-09-11 09:05:31.204482 c3a82fb3-9ace-45ef-8b7a-511e67a16a27 {"md5": "e0e86c5eef023719095d8c58a26fbb40", "pid": "204801923", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "dentiste", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/204801923", "source": "IDREF"}], "preferred_name": "Michel, Elisabeth, dentiste", "authorized_access_point": "Michel, Elisabeth, dentiste", "biographical_information": ["Chirurgien dentiste"]} 1 +2024-09-11 09:05:31.263394 2024-09-11 09:05:31.263397 c4996b05-2d62-4ea0-819e-aa8e13e388b5 {"md5": "81ab5e2f108352c537ecac3f6acf8ee9", "pid": "219558523", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/219558523", "source": "IDREF"}], "date_of_birth": "17XX", "preferred_name": "Satur, M.-Joseph", "country_associated": "fr", "authorized_access_point": "Satur, M.-Joseph, 17..-....", "biographical_information": ["Chansonnier révolutionnaire"]} 1 +2024-09-11 09:05:31.323847 2024-09-11 09:05:31.323849 017f1a71-b9bd-4a65-bdec-7528d09a9bd5 {"md5": "1801998d4509905d93874475b95a90a5", "pid": "219844496", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/219844496", "source": "IDREF"}], "preferred_name": "Bouricha, Mohamed", "authorized_access_point": "Bouricha, Mohamed", "biographical_information": ["Chirurgien dentiste"]} 1 +2024-09-11 09:05:31.37657 2024-09-11 09:05:31.376575 50524b99-c475-43e0-8b2f-a31cc7362fcc {"md5": "c8b493535c296d53acff0abdf10abc1b", "pid": "219895058", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/219895058", "source": "IDREF"}], "preferred_name": "Farougou, Souaibou", "country_associated": "dm", "authorized_access_point": "Farougou, Souaibou", "biographical_information": ["Professeur à l'Université d'Abomey-Calavi, Bénin; Co-Directeur d'une thèse de doctorat de Sciences, spécialité Biologie des Interactions (Université de Montpellier, 2016)"]} 1 +2024-09-11 09:05:32.095601 2024-09-11 09:05:32.095606 dd705745-8d08-4d43-98a1-ea7b43752466 {"md5": "a5414b1a6cb8d0147cb1d4e02adc13f6", "pid": "220304114", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/220304114", "source": "IDREF"}], "preferred_name": "Fouchier, Marion", "authorized_access_point": "Fouchier, Marion"} 1 +2024-09-11 09:05:31.437821 2024-09-11 09:05:31.437826 36eda691-e53f-4c7d-ac68-1f4b08bb90b0 {"md5": "207033eee8fcbf8e9e84f8832acf7fad", "pid": "219901015", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/219901015", "source": "IDREF"}], "variant_name": ["Compagnie générale des omnibus (CGO)"], "preferred_name": "Compagnie générale des omnibus (CGO). Compagnie générale des transports parisiens par le matériel des omnibus (Paris)", "country_associated": "fr", "date_of_termination": "1921", "variant_access_point": ["Compagnie générale des omnibus (CGO)"], "date_of_establishment": "1855", "authorized_access_point": "Compagnie générale des omnibus (CGO). Compagnie générale des transports parisiens par le matériel des omnibus (Paris)", "biographical_information": ["Créée en 1855 par fusion de plusieurs compagnies de transports urbains parisien afin d'organiser le transport public de voyageurs à Paris. Cette société privée, titulaire d'une concession délivrée par la Ville de Paris, est intégrée le 1er janvier 1921 à la Société des transports en commun de la région parisienne (STCRP), et se trouve être ainsi un lointain ancêtre de l'actuelle Régie autonome des transports parisiens (RATP)."]} 1 +2024-09-11 09:05:31.493449 2024-09-11 09:05:31.493453 ce0b7c6c-4c22-43bd-8f55-2ca913599767 {"md5": "ba3d57dcf4212bfff4d16a62d5e6a406", "pid": "219918252", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/219918252", "source": "IDREF"}], "preferred_name": "Ceccaroni, Alessandro", "country_associated": "it", "authorized_access_point": "Ceccaroni, Alessandro", "biographical_information": ["Historien"]} 1 +2024-09-11 09:05:31.545872 2024-09-11 09:05:31.545876 c68af0a6-1c44-446f-9c45-2a756d273eee {"md5": "e52910b65f9e2667ea72c34a628f8aaf", "pid": "219992657", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["swe"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/219992657", "source": "IDREF"}], "variant_name": ["Université de Borås (Suède)"], "preferred_name": "Högskolan i Borås (Suède)", "country_associated": "sw", "variant_access_point": ["Université de Borås (Suède)"], "parallel_access_point": ["University of Borås (Suède)"], "authorized_access_point": "Högskolan i Borås (Suède)"} 1 +2024-09-11 09:05:31.608076 2024-09-11 09:05:31.608082 f1f7e107-d64c-4ddd-acd3-db12135f23e6 {"md5": "19d23c61fe9e89f22f5f0df35894262e", "pid": "220045143", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/220045143", "source": "IDREF"}], "variant_name": ["Lochan, A."], "date_of_birth": "19XX", "preferred_name": "Lochan, Amarjiva", "country_associated": "th", "variant_access_point": ["Lochan, A."], "authorized_access_point": "Lochan, Amarjiva, 19..-....", "biographical_information": ["Spécialiste du bouddhisme"]} 1 +2024-09-11 09:05:31.661338 2024-09-11 09:05:31.661342 8d70411e-6f4f-4ff3-9778-34fc7f8a7fa4 {"md5": "19ec74723d5e5bc120d54cebac1e0e0c", "pid": "220058784", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/220058784", "source": "IDREF"}], "date_of_birth": "1962", "preferred_name": "Hanna, Scott", "country_associated": "xxu", "authorized_access_point": "Hanna, Scott, 1962-....", "biographical_information": ["Illustrateur, encreur"]} 1 +2024-09-11 09:05:31.714782 2024-09-11 09:05:31.714787 0c0e9177-460a-46ea-9e5f-b5f002320204 {"md5": "4632594ce7402fa064ffdefc25b82ec9", "pid": "220068062", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/220068062", "source": "IDREF"}], "preferred_name": "Treadwell, James", "country_associated": "xxk", "authorized_access_point": "Treadwell, James"} 1 +2024-09-11 09:05:31.766665 2024-09-11 09:05:31.76667 4920bd04-e590-4caf-8d09-8bcad781fd43 {"md5": "19107b423ff6a165db7f358cedb5a582", "pid": "220075247", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/220075247", "source": "IDREF"}], "preferred_name": "Saratov Law Institute", "authorized_access_point": "Saratov Law Institute"} 1 +2024-09-11 09:05:31.823453 2024-09-11 09:05:31.823457 2025e01c-9cc6-4ab7-a36b-18ddecd91a3b {"md5": "501b899d4e19a70fb6209c750838d2c5", "pid": "220078440", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/220078440", "source": "IDREF"}], "preferred_name": "Eyeghe-Ndong, Jean", "country_associated": "fr", "authorized_access_point": "Eyeghe-Ndong, Jean"} 1 +2024-09-11 09:05:31.878736 2024-09-11 09:05:31.878739 f4bbd944-87d6-4bc8-b4f3-544a4e2c3c72 {"md5": "a9d27c04383905a43e3ffbfde6f8d8c1", "pid": "220159157", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fin"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/220159157", "source": "IDREF"}], "preferred_name": "Saarikalle, Anne", "country_associated": "fi", "authorized_access_point": "Saarikalle, Anne", "biographical_information": ["Linguiste"]} 1 +2024-09-11 09:05:31.92896 2024-09-11 09:05:31.928964 43135b38-f3be-4fb3-9c01-8a8047d5d412 {"md5": "ee52723699bdb063c8c53bf9b5e8bcda", "pid": "220178003", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/220178003", "source": "IDREF"}], "date_of_birth": "1990-06-13", "preferred_name": "Borselli, Diane", "country_associated": "fr", "authorized_access_point": "Borselli, Diane, 1990-....", "biographical_information": ["Auteur d'une thèse en Biologie. Microbiologie à Aix-Marseille en 2017"]} 1 +2024-09-11 09:05:31.987925 2024-09-11 09:05:31.987928 f46ad6f0-342e-48e6-8e44-0f3311f4e8ae {"md5": "c27436b09889242c940b493f24e2e29b", "pid": "220196133", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/220196133", "source": "IDREF"}], "date_of_birth": "19..", "preferred_name": "Dubois, Élisa", "country_associated": "fr", "authorized_access_point": "Dubois, Élisa, 19..-", "biographical_information": ["Titulaire du diplôme de Master 2 Spécialisation Sciences de l’Animal pour l’Elevage de Demain (Agrocampus-Ouest Rennes, 2017)"]} 1 +2024-09-11 09:05:32.041588 2024-09-11 09:05:32.041592 c1c29741-6400-42a1-b983-029aa63dd741 {"md5": "68e87139f9366a81d8c8cf7c7df5b531", "pid": "220218919", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["chi"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/220218919", "source": "IDREF"}], "variant_name": ["谢, 思全"], "date_of_birth": "1951", "preferred_name": "Xie, Siquan", "country_associated": "cc", "variant_access_point": ["谢, 思全, 1951-...."], "authorized_access_point": "Xie, Siquan, 1951-....", "biographical_information": ["Professeur d'économie à l'Université de Nankai"]} 1 +2024-09-11 09:05:32.153385 2024-09-11 09:05:32.153387 61a2d283-3903-4d44-8978-5a8cbbf9e61f {"md5": "5e4e4b0eb4dc35152d62088785c234b3", "pid": "220457220", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/220457220", "source": "IDREF"}], "preferred_name": "Luke, Jeffrey Scott", "country_associated": "xxu", "authorized_access_point": "Luke, Jeffrey Scott"} 1 +2024-09-11 09:05:32.210388 2024-09-11 09:05:32.210392 a24ca145-1094-4d06-86bc-75f2e1731069 {"md5": "866214217dae1b19be0405f97276134e", "pid": "220609829", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/220609829", "source": "IDREF"}], "date_of_birth": "1988-04-01", "preferred_name": "Peresson, François", "country_associated": "fr", "authorized_access_point": "Peresson, François, 1988-...."} 1 +2024-09-11 09:05:32.270878 2024-09-11 09:05:32.270882 37cb4985-9789-4961-bd24-c0925f6458f9 {"md5": "52db0710bb92f4b76c85be98d7163d8b", "pid": "220828164", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "dentiste", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/220828164", "source": "IDREF"}], "preferred_name": "André, Corinne, dentiste", "authorized_access_point": "André, Corinne, dentiste", "biographical_information": ["Chirurgien dentiste"]} 1 +2024-09-11 09:05:32.332195 2024-09-11 09:05:32.332198 3a2ecc65-6bc1-48ce-9c64-31184c8f8138 {"md5": "568cebeead255521bb74263fbcb527e0", "pid": "22088787X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/22088787X", "source": "IDREF"}], "date_of_birth": "1991-11-26", "preferred_name": "Prévost, Corentin", "country_associated": "fr", "authorized_access_point": "Prévost, Corentin"} 1 +2024-09-11 09:05:32.386837 2024-09-11 09:05:32.38684 2075813d-85bd-41a0-8664-d531940fbb19 {"md5": "60d45e06b8ba55a6f69565886a6baa0d", "pid": "220890056", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/220890056", "source": "IDREF"}], "preferred_name": "Kraba, Karen Cheryl", "country_associated": "iv", "authorized_access_point": "Kraba, Karen Cheryl", "biographical_information": ["Titulaire d'une maitrise en Droit public, droit privé obtenue en 2016"]} 1 +2024-09-11 09:05:32.45072 2024-09-11 09:05:32.450725 fb7a2d6b-699d-489e-9d78-fe9f1a968766 {"md5": "023ed1040deb59c873d6889f8b5a1566", "pid": "221211810", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["per"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/221211810", "source": "IDREF"}], "variant_name": ["علی الدین, مفتی", "Ali-ud-Din, Mufti", "Mufti Ali-ud-Din", "مفتی علی الدین", "Muftī ʿAlī al-Dīn"], "date_of_birth": "18XX", "date_of_death": "18XX", "preferred_name": "ʿAlī al-Dīn, Muftī", "country_associated": "ii", "variant_access_point": ["Ali-ud-Din, Mufti", "Mufti Ali-ud-Din", "مفتی علی الدین", "Muftī ʿAlī al-Dīn"], "authorized_access_point": "ʿAlī al-Dīn, Muftī, 18..-18.."} 1 +2024-09-11 09:05:32.514424 2024-09-11 09:05:32.514428 9c33f732-1bbc-47c2-9c04-e9353ef53408 {"md5": "701d45ed13760f5a8b173f2091eb133d", "pid": "221276904", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/221276904", "source": "IDREF"}], "preferred_name": "Cerisier, Marie-Pierre", "country_associated": "fr", "authorized_access_point": "Cerisier, Marie-Pierre"} 1 +2024-09-11 09:05:32.566991 2024-09-11 09:05:32.566994 a67df12d-9e36-40d3-9f92-8f6d34e87f4b {"md5": "e6e50b4f3252ab8c751ce4b127e48aa2", "pid": "221337571", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre", "eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/221337571", "source": "IDREF"}], "variant_name": ["Mois de la photo à Montréal"], "preferred_name": "MOMENTA (biennale de l'image)", "country_associated": "xxc", "date_of_termination": "2017", "variant_access_point": ["Mois de la photo à Montréal (15 ; 2017 ; Montréal, Québec)"], "date_of_establishment": "2017", "authorized_access_point": "MOMENTA (biennale de l'image) (15 ; 2017 ; Montréal, Québec)"} 1 +2024-09-11 09:05:32.620107 2024-09-11 09:05:32.620112 b34c0218-7c67-4fa7-85c9-db62a5f0dbbb {"md5": "2b1444a1c89c78ccbd6208982d240bb6", "pid": "221337806", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/221337806", "source": "IDREF"}], "preferred_name": "Moreno-Villamar, Itziri", "authorized_access_point": "Moreno-Villamar, Itziri"} 1 +2024-09-11 09:05:32.680228 2024-09-11 09:05:32.680232 32929cc9-4a6d-4208-b62f-c5227cabd039 {"md5": "91fc98dcb4fe7fd3dc5c05d9050428e0", "pid": "221343555", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/221343555", "source": "IDREF"}], "date_of_birth": "1914-08-19", "date_of_death": "2002-04-05", "preferred_name": "Brenot, Jacques", "country_associated": "fr", "authorized_access_point": "Brenot, Jacques, 1914-....", "biographical_information": ["Titulaire d'une thèse en médecine (Lyon, 1941)"]} 1 +2024-09-11 09:05:32.734691 2024-09-11 09:05:32.734696 d93efdb7-7649-4aa9-b6be-d827a7589b90 {"md5": "7ad570357bcdbc0960389d6d31f59051", "pid": "221345477", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/221345477", "source": "IDREF"}], "variant_name": ["RSCU", "RSCU/SIDA", "Regional Soil Conservation Unit (RSCU). Swedish International Development Authority (SIDA)", "SIDA's Regional Soil Conservation Unit", "SIDA Regional Soil Conservation Unit", "Regionala markvårdsenheten"], "preferred_name": "Regional Soil Conservation Unit/SIDA", "country_associated": "ke", "variant_access_point": ["RSCU", "RSCU/SIDA", "Regional Soil Conservation Unit (RSCU). Swedish International Development Authority (SIDA)", "SIDA's Regional Soil Conservation Unit", "SIDA Regional Soil Conservation Unit", "Regionala markvårdsenheten"], "authorized_access_point": "Regional Soil Conservation Unit/SIDA"} 1 +2024-09-11 09:05:32.793614 2024-09-11 09:05:32.793619 69244573-7250-4fb7-9aec-a8938adb2311 {"md5": "e387f98597b2960ea54053f68c204ea2", "pid": "221427767", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/221427767", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Foulon, Véronique", "country_associated": "fr", "authorized_access_point": "Foulon, Véronique, 19..-...."} 1 +2024-09-11 09:05:34.219757 2024-09-11 09:05:34.219761 24ff48a7-f0b8-414d-886c-82498f2628c5 {"md5": "a4fe26fa8b9d552c5288b4d31c951615", "pid": "224335081", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/224335081", "source": "IDREF"}], "preferred_name": "Animage. Association (Saint Rogatien)", "country_associated": "fr", "authorized_access_point": "Animage. Association (Saint Rogatien)"} 1 +2024-09-11 09:05:32.858563 2024-09-11 09:05:32.858567 70cabaa4-23a2-4b54-936f-ddd04a6df052 {"md5": "c3861ec51b9428290abb77b67dca28c5", "pid": "221465480", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/221465480", "source": "IDREF"}], "date_of_birth": "1977-01-01", "preferred_name": "Nguyen, Duc-Quan", "country_associated": "fr", "authorized_access_point": "Nguyen, Duc-Quan, 1977-....", "biographical_information": ["Titulaire d'un doctorat en électronique et génie électrique (Nantes, 2015)"]} 1 +2024-09-11 09:05:32.913458 2024-09-11 09:05:32.913462 91721609-2a66-41dd-b6dd-01ecd8885edd {"md5": "68b8d5906d3bc257647b891557bffa77", "pid": "221485554", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/221485554", "source": "IDREF"}], "preferred_name": "Dupuy, Hélène", "authorized_access_point": "Dupuy, Hélène", "biographical_information": ["A soutenu une thèse en Histoire à Paris 1 en 1995"]} 1 +2024-09-11 09:05:32.965909 2024-09-11 09:05:32.965912 23ecb10c-bb5d-4b43-9050-4b6d3ba1bf4f {"md5": "d3eec5778079643a35f55f9f72e80183", "pid": "221493646", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/221493646", "source": "IDREF"}], "date_of_birth": "1988-05-29", "preferred_name": "Thiefine, Marina", "country_associated": "fr", "authorized_access_point": "Thiefine, Marina, 1988-...", "biographical_information": ["Auteur d'une thèse d'exercice en Médecine soutenue le 6 juillet 2017 à l'Université de Bordeaux"]} 1 +2024-09-11 09:05:33.022688 2024-09-11 09:05:33.022692 845eba43-d0d0-4d24-b89e-dd34241e4b51 {"md5": "c73a0e2d671c6b2d412d34303febc828", "pid": "221661425", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/221661425", "source": "IDREF"}], "variant_name": ["MASM", "Museo de arte de la Universidad de San Marcos (Lima)", "Museo de arte e historia (Lima)", "Universidad nacional mayor de San Marcos (Lima). Museo de arte"], "preferred_name": "Museo de arte de San Marcos (Lima)", "country_associated": "pe", "variant_access_point": ["MASM", "Museo de arte de la Universidad de San Marcos (Lima)", "Museo de arte e historia (Lima)", "Universidad nacional mayor de San Marcos (Lima). Museo de arte"], "date_of_establishment": "1970", "authorized_access_point": "Museo de arte de San Marcos (Lima)", "biographical_information": ["Musée fondé en 1970 par Francisco Stastny, sous le nom de : \\"Museo de arte e historia\\". - En 1996, a pris le nom de \\"Museo de arte de San Marcos\\". - Le musée fait partie du \\"Centro cultural de San Marcos\\" qui dépend de la \\"Universidad nacional mayor de San Marcos", "Adresse : Av. Nicolás de Piérola 1222 : Parque Universitario, Lima"]} 1 +2024-09-11 09:05:33.07911 2024-09-11 09:05:33.079114 263c4e4f-cb38-4e3e-aca8-26af80ac9e91 {"md5": "2466b4fb5bdb3a260fc5232ea625ea2d", "pid": "221728856", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/221728856", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "244359857"}, "variant_name": ["Morgan, Karl Z."], "date_of_birth": "1907-09-27", "date_of_death": "1999-06-08", "preferred_name": "Morgan, Karl Ziegler", "country_associated": "xxu", "variant_access_point": ["Morgan, Karl Z."], "authorized_access_point": "Morgan, Karl Ziegler, 1907-1999", "biographical_information": ["Physicien américain, précurseur des recherches sur l'impact de la radioactivité en matière de santé publique, critique de la production en énergie nucléaire et sur l'arme nucléaire"]} 1 +2024-09-11 09:05:33.13163 2024-09-11 09:05:33.131633 1013cb8c-22fc-4ab5-b87a-1ac1e60f4565 {"md5": "e651d6b25d138fea5f125a66c6177d8d", "pid": "22175167X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/22175167X", "source": "IDREF"}], "preferred_name": "Morelle, Bruno", "country_associated": "fr", "authorized_access_point": "Morelle, Bruno"} 1 +2024-09-11 09:05:33.187424 2024-09-11 09:05:33.187428 96f20f85-7e64-4426-b506-d1725a6cbef2 {"md5": "6dd531c149efb5ef5207989c8ffb2d6f", "pid": "221761942", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/221761942", "source": "IDREF"}], "variant_name": ["Laveaga, Mario Hinojos", "Hinojos, Mario"], "date_of_birth": "1982", "preferred_name": "Hinojos Laveaga, Mario", "country_associated": "mx", "variant_access_point": ["Laveaga, Mario Hinojos", "Hinojos, Mario"], "authorized_access_point": "Hinojos Laveaga, Mario, 1982-...."} 1 +2024-09-11 09:05:33.25495 2024-09-11 09:05:33.254953 407b10c4-efc1-482d-b722-ec8f5d348770 {"md5": "77ad523f5c2c3e69c10e3a3296486ce7", "pid": "22344250X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/22344250X", "source": "IDREF"}], "date_of_birth": "18XX", "date_of_death": "19XX", "preferred_name": "Schwörbel, Heribert", "country_associated": "gw", "authorized_access_point": "Schwörbel, Heribert, 18..-19..", "biographical_information": ["Auteur d'une thèse de droit soutenue à l'Université d'Erlangen, Allemagne, en 1906."]} 1 +2024-09-11 09:05:33.314816 2024-09-11 09:05:33.314818 58e55d6c-25a2-467d-a0da-efbd4dc2d3da {"md5": "79d9ed7396a0e5ec75213a5e550cf7c2", "pid": "223483516", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/223483516", "source": "IDREF"}], "preferred_name": "Comparative Education Society in Europe. Conference", "country_associated": "gw", "date_of_establishment": "1983", "authorized_access_point": "Comparative Education Society in Europe. Conference (11 ; 1983 ; Würzburg, Allemagne)"} 1 +2024-09-11 09:05:33.366064 2024-09-11 09:05:33.366068 435d9f78-fcc5-4cfe-8b30-f03f227ecc05 {"md5": "42b6f226ae209c601d358d6a34a55927", "pid": "223491071", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "physicien", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/223491071", "source": "IDREF"}], "date_of_birth": "1936-06-14", "date_of_death": "2008-10-02", "preferred_name": "Driole, Jean, physicien", "country_associated": "fr", "authorized_access_point": "Driole, Jean, 1936-2008, physicien", "biographical_information": ["Auteur d'une thèse de docteur-ingénieur en [Sciences appliquées] (Grenoble, Faculté des sciences, 1965). - Directeur de recherche au CNRS/Grenoble INPG (-1974-1994-). - Directeur de thèse à Grenoble INPG"]} 1 +2024-09-11 09:05:33.424917 2024-09-11 09:05:33.424921 4688bae0-bdab-454f-8b6e-fc7a8d2a3197 {"md5": "d39f960df2332fe7f89ce350ab30e81b", "pid": "223505056", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/223505056", "source": "IDREF"}], "date_of_birth": "1986-07-19", "preferred_name": "Zhou, Tao", "country_associated": "cc", "authorized_access_point": "Zhou, Tao, 1986-....", "biographical_information": ["Auteur d'une thèse en Physique de la Matière Condensée et du Rayonnement à Grenoble Alpes en 2015"]} 1 +2024-09-11 09:05:33.476291 2024-09-11 09:05:33.476296 39cc92d1-d926-42a8-a000-e26fc28b09b5 {"md5": "05d4ec3e23ea6059ce1b82984857a365", "pid": "223537616", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/223537616", "source": "IDREF"}], "date_of_birth": "1898-06-13", "preferred_name": "Pétrovitch, Yovan", "country_associated": "fr", "authorized_access_point": "Pétrovitch, Yovan, 1898-....", "biographical_information": ["Titulaire d'une thèse en médecine (Lyon, 1924)"]} 1 +2024-09-11 09:05:33.529725 2024-09-11 09:05:33.529728 7a443471-3c5e-45a7-ae32-843f59fe789f {"md5": "59000db3b5b6eef5387b753b1226c3ef", "pid": "223609935", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/223609935", "source": "IDREF"}], "date_of_birth": "1987-02-24", "preferred_name": "Petermann, Julie", "country_associated": "fr", "authorized_access_point": "Petermann, Julie, 1987-", "biographical_information": ["Docteur en médecine vétérinaire (en 2012)"]} 1 +2024-09-11 09:05:33.585114 2024-09-11 09:05:33.585119 d661b994-2d9c-4fb6-86f2-c8375eed81f9 {"md5": "9ff1db1ed1b30bc3d6269baedb274bcb", "pid": "223614866", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/223614866", "source": "IDREF"}], "date_of_birth": "1979-10-27", "preferred_name": "Mélis, Noémie", "country_associated": "fr", "authorized_access_point": "Mélis, Noémie"} 1 +2024-09-11 09:05:33.641801 2024-09-11 09:05:33.641805 2827e922-e8f9-411f-9279-629917936642 {"md5": "205fd2f512c88a112825280f789cde8b", "pid": "223652555", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/223652555", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Saritas, Ozcan", "country_associated": "ru", "authorized_access_point": "Saritas, Ozcan, 19..-....", "biographical_information": ["National Research University Higher school of Economics, Moscou"]} 1 +2024-09-11 09:05:33.704843 2024-09-11 09:05:33.704849 1ea2128c-07f4-410c-92ed-179b74b3b35a {"md5": "fc56031347080abb95c53d5038740de4", "pid": "223704288", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/223704288", "source": "IDREF"}], "date_of_birth": "1990-12-11", "preferred_name": "Mifsud, Alexis", "country_associated": "fr", "authorized_access_point": "Mifsud, Alexis, 1990-....", "biographical_information": ["Auteur d'une thèse en Robotique à Toulouse, INPT en 2017"]} 1 +2024-09-11 09:05:33.757075 2024-09-11 09:05:33.75708 1b7cf2a4-a170-4370-8337-e66f6b38a52a {"md5": "73469e5b0870c3380c50d6573e4ccaeb", "pid": "22376423X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/22376423X", "source": "IDREF"}], "preferred_name": "Starr, Norton", "country_associated": "xx", "authorized_access_point": "Starr, Norton"} 1 +2024-09-11 09:05:33.808851 2024-09-11 09:05:33.808857 c9e6836c-0bd1-42a6-9f57-762e6f6ff9bb {"md5": "ceea22d0bc8b46a06622903abe66a3dc", "pid": "223847585", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/223847585", "source": "IDREF"}], "preferred_name": "Joye, Isabelle", "country_associated": "fr", "authorized_access_point": "Joye, Isabelle"} 1 +2024-09-11 09:05:33.870457 2024-09-11 09:05:33.870461 ac3f05ff-6988-4e3f-9e42-af8f90c70dec {"md5": "46af6229593215ab90c92c45987659c0", "pid": "223852481", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/223852481", "source": "IDREF"}], "date_of_birth": "1909-06-04", "preferred_name": "Gradon, Hersz-Dawid", "country_associated": "fr", "authorized_access_point": "Gradon, Hersz-Dawid, 1909-....", "biographical_information": ["Titulaire d'une thèse en Médecine (Lyon, 1934)"]} 1 +2024-09-11 09:05:33.922142 2024-09-11 09:05:33.922145 8ab54fc6-abbf-44f3-9f6f-f58bd42f00dc {"md5": "6422e079100f58a84c5372d0fa9c916d", "pid": "223890472", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/223890472", "source": "IDREF"}], "preferred_name": "AMS Special Session on Banach spaces of analytic functions‎", "country_associated": "xxu", "date_of_termination": "2006-04-23", "date_of_establishment": "2006-04-22", "authorized_access_point": "AMS Special Session on Banach spaces of analytic functions‎ (2006‎ ; Durham, N.H.)"} 1 +2024-09-11 09:05:33.978658 2024-09-11 09:05:33.978662 8a677e64-cd81-44d3-a6ae-7be8146f44b4 {"md5": "64b5fd18d26f3cc7d870086b6f85633e", "pid": "224016806", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/224016806", "source": "IDREF"}], "preferred_name": "Halpern, Alan", "country_associated": "xxu", "authorized_access_point": "Halpern, Alan"} 1 +2024-09-11 09:05:34.033731 2024-09-11 09:05:34.033736 1e733a5b-98c7-4ea6-9ac4-622cb85cfd24 {"md5": "77ea36a7e53806b94b6f969ac38039b7", "pid": "224210963", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/224210963", "source": "IDREF"}], "preferred_name": "Peyré, Frédéric", "country_associated": "fr", "authorized_access_point": "Peyré, Frédéric", "biographical_information": ["Maître de conférences en langue et civilisation anglaises, à l'université de Lille Sciences humaines et sociales (2018)"]} 1 +2024-09-11 09:05:34.094978 2024-09-11 09:05:34.094983 5e28efb5-bce8-4eec-96d7-7f14327db08e {"md5": "c12b1ad6de9b5bac7347f95db7261ae2", "pid": "224227815", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/224227815", "source": "IDREF"}], "date_of_birth": "1975-08-09", "preferred_name": "Roche, Jeanne", "country_associated": "fr", "authorized_access_point": "Roche, Jeanne, 1975-....", "biographical_information": ["Auteur d'une thèse en Psychologie à Angers en 2017"]} 1 +2024-09-11 09:05:34.160894 2024-09-11 09:05:34.160899 d155b5a6-fe6d-4cf2-899a-9d5f78ad02db {"md5": "6d1f944beb69f27544059a9df1ec9132", "pid": "224319418", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["srp"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/224319418", "source": "IDREF"}], "variant_name": ["Николић, Иван"], "date_of_birth": "19xx", "preferred_name": "Nikolić, Ivan", "variant_access_point": ["Николић, Иван, 19..-...."], "authorized_access_point": "Nikolić, Ivan, 19..-...."} 1 +2024-09-11 09:05:34.272196 2024-09-11 09:05:34.272204 fb3a2333-8d60-4096-a0d5-ad6dd0c2e6b4 {"md5": "123699c1b460fd2a37ae003c14fd5567", "pid": "22438306X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["kor"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/22438306X", "source": "IDREF"}], "date_of_birth": "1973-01-09", "preferred_name": "Park, Sung-woong", "country_associated": "ko", "authorized_access_point": "Park, Sung-woong", "biographical_information": ["Acteur"]} 1 +2024-09-11 09:05:34.335191 2024-09-11 09:05:34.335194 8d263d62-a68b-4cb1-824f-c15c24df57e9 {"md5": "265c97cfdb3b71069150e6bf4f29a94c", "pid": "224404717", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["chi"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/224404717", "source": "IDREF"}], "variant_name": ["袁, 蓉"], "date_of_birth": "1977", "preferred_name": "Yuan, Rong", "country_associated": "cc", "variant_access_point": ["袁, 蓉, 1977-...."], "authorized_access_point": "Yuan, Rong, 1977-....", "biographical_information": ["Historienne. Maitre de conférence à l'Université de Shanghai (上海大学)"]} 1 +2024-09-11 09:05:34.441561 2024-09-11 09:05:34.441564 b1d0facb-379d-4206-995f-fc7e12727ac8 {"md5": "850e766b414b6981a230fb8906d7cc6b", "pid": "224452630", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/224452630", "source": "IDREF"}], "preferred_name": "Davis, Arthur G.", "country_associated": "xxu", "authorized_access_point": "Davis, Arthur G."} 1 +2024-09-11 09:05:34.492202 2024-09-11 09:05:34.492207 11a38253-f139-4488-8277-fef5fa696eea {"md5": "e1162fa6aa1dfa447a80c983fffe228d", "pid": "224502557", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/224502557", "source": "IDREF"}], "preferred_name": "Theurer, Anna", "country_associated": "fr", "authorized_access_point": "Theurer, Anna", "biographical_information": ["Titulaire d'un master 2 recherche en Droit des affaires de l'Université de Bordeaux en 2017"]} 1 +2024-09-11 09:05:34.547601 2024-09-11 09:05:34.547604 09b9b111-9438-485f-9b90-b85e3055655e {"md5": "343df1bbf2f9c795d2e35efacd444212", "pid": "224542249", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["nor"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/224542249", "source": "IDREF"}], "date_of_birth": "1963", "preferred_name": "Hølmebakk, Beate", "country_associated": "no", "authorized_access_point": "Hølmebakk, Beate, 1963-....", "biographical_information": ["Architecte"]} 1 +2024-09-11 09:05:34.598274 2024-09-11 09:05:34.598277 eb6ca13b-7374-4037-b818-ebe3259a24f8 {"md5": "a2c571508fc97ceb11b04faa89576748", "pid": "224544411", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "deleted": "2023-05-02T15:14:40.693107+00:00", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/224544411", "source": "IDREF"}], "date_of_birth": "1983-08-06", "preferred_name": "Hordeaux, Juliette", "country_associated": "fr", "authorized_access_point": "Hordeaux, Juliette, 1983-....", "biographical_information": ["Titulaire d'un doctorat en Biologie, médecine et santé (Nantes, 2014)"]} 1 +2024-09-11 09:05:34.65406 2024-09-11 09:05:34.654063 c636b55f-22aa-4daa-97bd-bfa6f446fc85 {"md5": "36b335bf51f30811800061509ea06cb3", "pid": "224701592", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/224701592", "source": "IDREF"}], "preferred_name": "Commencais, Coralie", "country_associated": "fr", "authorized_access_point": "Commencais, Coralie", "biographical_information": ["Artiste-peintre. Illustratrice dans le webzine \\"Le Shaker\\""]} 1 +2024-09-11 09:05:34.711193 2024-09-11 09:05:34.711198 910eb7ac-38b7-40a3-a3a3-c6f3abba1200 {"md5": "809139e3830e61841f3f6cca58955285", "pid": "22472178X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/22472178X", "source": "IDREF"}], "date_of_birth": "1946-02-15", "preferred_name": "Bouinidane, Abdallah", "country_associated": "fr", "authorized_access_point": "Bouinidane, Abdallah, 1946-....", "biographical_information": ["Titulaire d'une thèse en médecine (Lyon, 1971). Ancien élève de l'Ecole du Service de Santé Militaire"]} 1 +2024-09-11 09:05:34.77369 2024-09-11 09:05:34.773694 54d1a272-a4a9-4f5c-92ff-9af1d2a897ec {"md5": "5a1ba8f8a49217bdd451048286369b9f", "pid": "224789147", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/224789147", "source": "IDREF"}], "preferred_name": "Lemus, Samuel Bernardo", "country_associated": "mx", "authorized_access_point": "Lemus, Samuel Bernardo", "biographical_information": ["Auteur d'un ouvrage de chansons mexicaines"]} 1 +2024-09-11 09:05:34.83392 2024-09-11 09:05:34.833926 f3181dcc-2488-4d0f-b913-ea610f2f2ac4 {"md5": "990ce04a517d4ec2cbbbb1b78ccfd8bd", "pid": "224794272", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/224794272", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Fiedrich, Frank", "country_associated": "gw", "authorized_access_point": "Fiedrich, Frank, 19..-....", "biographical_information": ["Institute for Public Safety and Emergency Management, Université de Wuppertal, Allemagne"]} 1 +2024-09-11 09:05:34.895901 2024-09-11 09:05:34.895905 22562dc8-9f22-4c1a-9b88-9170217a8525 {"md5": "7630c26fd989eee3e0c590dbde494074", "pid": "224842722", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/224842722", "source": "IDREF"}], "date_of_birth": "1992-04-13", "preferred_name": "Monie, Virginie", "country_associated": "fr", "authorized_access_point": "Monie, Virginie", "biographical_information": ["Auteur d'une thèse en chirurgie dentaire"]} 1 +2024-09-11 09:05:34.955889 2024-09-11 09:05:34.955892 6532a3fa-869c-402c-a8d3-06c4c0f203b5 {"md5": "4b962873429f5cf67d5e9397357b3835", "pid": "224847333", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/224847333", "source": "IDREF"}], "variant_name": ["Quadriennale d'arte di Roma"], "preferred_name": "Quadriennale di Roma", "country_associated": "it", "variant_access_point": ["Quadriennale d'arte di Roma"], "authorized_access_point": "Quadriennale di Roma (09 ; 1965)", "biographical_information": ["Fondation pour la promotion de l'art contemporain italien"]} 1 +2024-09-11 09:05:37.819937 2024-09-11 09:05:37.819941 cd7a9af8-3743-4090-924d-5900a2eadc52 {"md5": "bd8d182a856bc7cd2ca9ece7c544d07c", "pid": "22793492X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/22793492X", "source": "IDREF"}], "date_of_birth": "1993-05-07", "preferred_name": "Lavaux, Vincent", "country_associated": "fr", "authorized_access_point": "Lavaux, Vincent"} 1 +2024-09-11 09:05:35.013919 2024-09-11 09:05:35.013924 e57d8c66-0952-4cdf-9dfc-b4f3a0a2861f {"md5": "b55da0eed2b00ff3d883077a0fd93d1b", "pid": "224875868", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita", "fre", "eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/224875868", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Bacci, Alberto", "country_associated": "it", "authorized_access_point": "Bacci, Alberto", "biographical_information": ["Neuroscientifique. Directeur de recherche CNRS, responsable de l'équipe Physiologie cellulaire des microcircuits corticaux, Institut du cerveau et de la moëlle épinière (ICM, UMR 7225 CNRS - U975 INSERM), Sorbonne université, Paris (en 2023)", "Doctorat en pharmacologie expérimentale et thérapeutique (Università degli studi, Milan, Italie, 2000)"]} 1 +2024-09-11 09:05:35.077151 2024-09-11 09:05:35.077155 f0cfdd9a-d043-4244-a763-d31a933ce73d {"md5": "fb1ea65b4e7366e7d5d3cbeb6ec151bb", "pid": "224900536", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/224900536", "source": "IDREF"}], "date_of_birth": "1957-02-08", "preferred_name": "Guirao, Eric", "country_associated": "fr", "authorized_access_point": "Guirao, Eric, 1957-...", "biographical_information": ["Auteur d'une thèse pratique d'exercice (Pharmacie) à l'université de Tours en 1984"]} 1 +2024-09-11 09:05:35.127552 2024-09-11 09:05:35.127556 bc1a0b82-946a-4e68-bd86-eae55bf262a4 {"md5": "a57911ccda10dc28ab7188a672b52357", "pid": "224972065", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/224972065", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Flood, Victoria", "country_associated": "xxk", "authorized_access_point": "Flood, Victoria, 19..-....", "biographical_information": ["Professeure de littérature médiévale et moderne à l'Université de Birmingham (en 2016)"]} 1 +2024-09-11 09:05:35.183705 2024-09-11 09:05:35.183711 9fc16f9d-d915-4da6-958d-87c7bc2d6f11 {"md5": "da00bd7790e6b5a8a76e5faa09f76a19", "pid": "224991523", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/224991523", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Mathéo, Christine", "country_associated": "fr", "authorized_access_point": "Mathéo, Christine, 19..-....", "biographical_information": ["Comédienne, clown dans les services pédiatriques pour l'association Théodora, 2018"]} 1 +2024-09-11 09:05:35.245055 2024-09-11 09:05:35.245059 adff8f00-c83c-47a7-ba78-590d21787b22 {"md5": "757318e2178b4c1d950b0edbc5b86d6f", "pid": "225224054", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/225224054", "source": "IDREF"}], "preferred_name": "Timmons, Edward H.", "country_associated": "xxu", "authorized_access_point": "Timmons, Edward H."} 1 +2024-09-11 09:05:35.30192 2024-09-11 09:05:35.301926 eaa2912f-21db-439f-a4db-fa189bce4c58 {"md5": "131321441f028499a2152a4301a99ba1", "pid": "225402475", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/225402475", "source": "IDREF"}], "date_of_birth": "1991-03-18", "preferred_name": "Bahri, Racha", "country_associated": "fr", "authorized_access_point": "Bahri, Racha, 1991-....", "biographical_information": ["Auteur d'une thèse en Immunologie, oncologie et infectiologie à Limoges en 2017"]} 1 +2024-09-11 09:05:35.357447 2024-09-11 09:05:35.357451 7650d27a-c25f-418c-a8a7-d6726a26b4a5 {"md5": "ebab6d2ff84e258d53012813222717fc", "pid": "225406292", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/225406292", "source": "IDREF"}], "variant_name": ["Deluca, Francisco A."], "date_of_birth": "19XX", "preferred_name": "Deluca, Francisco A.", "variant_access_point": ["Deluca, Francisco A."], "authorized_access_point": "Deluca, Francisco A., 19..-....", "biographical_information": ["Prosector de la clinica obstétrica y ginecologia"]} 1 +2024-09-11 09:05:35.409457 2024-09-11 09:05:35.409461 c89e8d39-ffbe-41eb-8b61-f7884168f04f {"md5": "b9f7b59e1f1a77b7f3e446df079bb6ea", "pid": "225412632", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/225412632", "source": "IDREF"}], "preferred_name": "Grobler, D. F.", "country_associated": "sa", "authorized_access_point": "Grobler, D. F.", "biographical_information": ["Géologue"]} 1 +2024-09-11 09:05:35.462592 2024-09-11 09:05:35.462596 461102b4-eb1a-4d52-9890-5b7ebc3011a3 {"md5": "1df3b211fe62b446b3b5a683450322ab", "pid": "225448475", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/225448475", "source": "IDREF"}], "preferred_name": "Chaplet, John", "country_associated": "fr", "authorized_access_point": "Chaplet, John", "biographical_information": ["Auteur d'un mémoire en Santé publique soutenu en octobre 1999 à l'Université de Bordeaux 2"]} 1 +2024-09-11 09:05:35.512822 2024-09-11 09:05:35.512826 16754b9d-8ba7-4c53-9da6-81a84529150d {"md5": "21132662dd917ee0216be804504b1c31", "pid": "225463121", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["hun"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/225463121", "source": "IDREF"}], "date_of_birth": "1883", "date_of_death": "1959", "preferred_name": "Verebély, László", "country_associated": "hu", "authorized_access_point": "Verebély, László, 1883-1959", "biographical_information": ["ingénieur électricien"]} 1 +2024-09-11 09:05:35.564144 2024-09-11 09:05:35.564148 8dcd27f3-dbd3-4014-a8f1-27e542c85158 {"md5": "9ed7da6f5932d3bb8dafe3e904b99af3", "pid": "225512521", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger", "jpn"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/225512521", "source": "IDREF"}], "preferred_name": "Ikari, Yuki", "country_associated": "ja", "authorized_access_point": "Ikari, Yuki", "biographical_information": ["Doctorat en histoire à l'université de Bonn en 2006"]} 1 +2024-09-11 09:05:35.618093 2024-09-11 09:05:35.618098 057da38f-319b-4efe-9489-a67583987633 {"md5": "96d99afa29f270009bc2de84820be9fa", "pid": "225514451", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/225514451", "source": "IDREF"}], "preferred_name": "Inspection générale des services sanitaires et médicaux civils (Brazzaville)", "country_associated": "cg", "date_of_termination": "19XX", "date_of_establishment": "19XX", "authorized_access_point": "Inspection générale des services sanitaires et médicaux civils (Brazzaville)"} 1 +2024-09-11 09:05:35.669933 2024-09-11 09:05:35.669939 55d00cfe-50bb-4b34-8984-37965716e3e8 {"md5": "55bcec32e654475541f2ebda5f102538", "pid": "225603128", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["tam", "eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/225603128", "source": "IDREF"}], "variant_name": ["திருநெல்வேலி, தென்னிந்திய சைவசித்தாந்த நூற்பதிப்புக் கழகம் (ஆள்வார்பேட்டை, சென்னை)", "The South India Saiva Siddhanta Works Publishing Society (Tinnevelly)", "Kaḻaka Veḷiyīṭu", "Saiva Siddhanta Nurpatippuk Kazhakam", "Kazhaka Veliyidu"], "preferred_name": "Tirunelvēli, Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam (Ālvarpeṭṭai, Ceṉṉai)", "country_associated": "ii", "variant_access_point": ["The South India Saiva Siddhanta Works Publishing Society (Tinnevelly)", "Kaḻaka Veḷiyīṭu", "Saiva Siddhanta Nurpatippuk Kazhakam", "Kazhaka Veliyidu"], "date_of_establishment": "19XX", "authorized_access_point": "Tirunelvēli, Teṉṉintiya Caivacittānta Nūṟpatippuk Kaḻakam (Ālvarpeṭṭai, Ceṉṉai)", "biographical_information": ["Alvarpettai, Chennai, India"]} 1 +2024-09-11 09:05:35.724837 2024-09-11 09:05:35.724841 26328b61-09f2-4715-a8fb-f4ccfb1c7f0b {"md5": "3fb305a4be6022a998fe3b1d59068576", "pid": "225616459", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/225616459", "source": "IDREF"}], "preferred_name": "Swiss Design Network Symposium", "country_associated": "sz", "date_of_termination": "2008-05-31", "date_of_establishment": "2008-05-30", "authorized_access_point": "Swiss Design Network Symposium (2008 ; Berne)"} 1 +2024-09-11 09:05:35.774138 2024-09-11 09:05:35.774141 c8dec918-08ba-4b12-80c5-de7317f04c45 {"md5": "d9aeed775200825c2c649dce0ab9364f", "pid": "225732394", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/225732394", "source": "IDREF"}], "date_of_birth": "1939", "preferred_name": "Riley, Barry", "country_associated": "xxu", "authorized_access_point": "Riley, Barry, 1939-...."} 1 +2024-09-11 09:05:35.831533 2024-09-11 09:05:35.831536 cd4b676b-a88f-4e51-b087-70a6551aa334 {"md5": "908b5f302911fbbdbf00c5bf5becfc9b", "pid": "225791153", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/225791153", "source": "IDREF"}], "preferred_name": "Miles, Liz", "country_associated": "xxk", "authorized_access_point": "Miles, Liz", "biographical_information": ["Auteur de littérature de jeunesse"]} 1 +2024-09-11 09:05:35.892755 2024-09-11 09:05:35.892757 2fd9b102-04be-424b-bdae-8f2c976395ef {"md5": "1a40767bb12e61ac1029e5b9da840b7f", "pid": "225800373", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/225800373", "source": "IDREF"}], "preferred_name": "Meysembourg, Sandra", "country_associated": "fr", "authorized_access_point": "Meysembourg, Sandra", "biographical_information": ["Auteur d'un mémoire de master 1 en musicologie à l'université Nancy 2 en 2009"]} 1 +2024-09-11 09:05:35.944085 2024-09-11 09:05:35.944089 d39af49b-7bf8-4a5d-9842-d27c47bb0d30 {"md5": "1d2219a026099e57658a0710e5532f28", "pid": "225803658", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/225803658", "source": "IDREF"}], "variant_name": ["Davies, John, John Michael"], "date_of_birth": "1942-06-01", "preferred_name": "Davies, John Michael", "country_associated": "xxu", "variant_access_point": ["Davies, John, John Michael"], "authorized_access_point": "Davies, John Michael, 1942-...."} 1 +2024-09-11 09:05:36.009579 2024-09-11 09:05:36.009584 6d76b345-138c-4e2d-9bb0-62f0d288681a {"md5": "9b8be12c62f978129c027923abd2ace7", "pid": "226149390", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/226149390", "source": "IDREF"}], "preferred_name": "Taragonet, M.E.", "authorized_access_point": "Taragonet, M.E."} 1 +2024-09-11 09:05:36.069976 2024-09-11 09:05:36.069981 b8bf4b02-0cc1-4fdf-9d2c-641b542afb45 {"md5": "c73bac16136f2acb8ae8d5d909700105", "pid": "226257444", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/226257444", "source": "IDREF"}], "date_of_birth": "1990-07-13", "preferred_name": "Gosselin, David", "country_associated": "fr", "authorized_access_point": "Gosselin, David, 1990-....", "biographical_information": ["Auteur d'une thèse en Mécanique des fluides Energétique, Procédés à Grenoble Alpes en 2017"]} 1 +2024-09-11 09:05:36.132389 2024-09-11 09:05:36.132393 ff245f5d-2091-48a2-be26-a185c7a02f71 {"md5": "a3a52a5ba7d94034442864018154cb4d", "pid": "226272893", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/226272893", "source": "IDREF"}], "preferred_name": "Institut international de philosophie. Entretiens", "country_associated": "gr", "date_of_termination": "1955-04-06", "date_of_establishment": "1955-04-02", "authorized_access_point": "Institut international de philosophie. Entretiens (1955 ; Athènes)"} 1 +2024-09-11 09:05:36.18341 2024-09-11 09:05:36.183415 d8a323df-87f3-461d-a621-453fa076f16d {"md5": "b36005f99c02b3a333590e86931dd491", "pid": "226304108", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/226304108", "source": "IDREF"}], "variant_name": ["Mandra, Marguerite"], "date_of_birth": "19XX", "preferred_name": "Cazeau, Marguerite", "country_associated": "fr", "variant_access_point": ["Mandra, Marguerite"], "authorized_access_point": "Cazeau, Marguerite, 19..-....", "biographical_information": ["Surveillante des services médicaux de l'hôpital d'instruction des armées Percy, à Clamart. Auteure d'un mémoire pour le diplôme technique d'infirmier, soutenu à Clamart, en 1991"]} 1 +2024-09-11 09:05:36.238901 2024-09-11 09:05:36.238905 4742f93a-0661-465e-89ce-e086bae5acd9 {"md5": "fa5bd14730053bea1fe915186b0a4c0b", "pid": "226336328", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/226336328", "source": "IDREF"}], "preferred_name": "American fisheries society. Annual meeting", "country_associated": "xxu", "date_of_termination": "1964-09", "date_of_establishment": "1964-09", "authorized_access_point": "American fisheries society. Annual meeting (94 ; 1964 ; Atlantic City, New Jersey)"} 1 +2024-09-11 09:05:36.290171 2024-09-11 09:05:36.290174 e3917123-0183-4afa-86fd-c7d7bfb56ac7 {"md5": "67323b2fb8ce9bfa3fe031770fdf96b5", "pid": "226372294", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/226372294", "source": "IDREF"}], "preferred_name": "Pupponi, Jean-Marc", "country_associated": "fr", "authorized_access_point": "Pupponi, Jean-Marc"} 1 +2024-09-11 09:05:36.341647 2024-09-11 09:05:36.341651 983ad90a-1c1a-42c9-ae32-e2cb34bc4c5e {"md5": "154da4af3a80cd881e886e31ae21646d", "pid": "226411354", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/226411354", "source": "IDREF"}], "variant_name": ["Bouchard, Anaïs"], "date_of_birth": "1987-10-05", "preferred_name": "David, Anaïs", "country_associated": "fr", "variant_access_point": ["Bouchard, Anaïs"], "authorized_access_point": "David, Anaïs, 1987-....", "biographical_information": ["Titulaire d'une thèse d'exercice de médecine soutenue à Paris-Sud le 16 /10/ 2017"]} 1 +2024-09-11 09:05:36.397632 2024-09-11 09:05:36.397636 f2bf5ca5-8a67-41e5-9156-b06d69d3c18b {"md5": "d37b9d5d816211117352568d467509a6", "pid": "22676026X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/22676026X", "source": "IDREF"}], "preferred_name": "Colloque d'Istanbul \\"La Turquie, les Turcs et la presse\\"", "country_associated": "tu", "date_of_establishment": "1986", "authorized_access_point": "Colloque d'Istanbul \\"La Turquie, les Turcs et la presse\\" (1986 ; École supérieure de journalisme de l'université de la Marmara, Istanbul, Turquie)"} 1 +2024-09-11 09:05:36.451943 2024-09-11 09:05:36.451948 6744480b-6aaa-4843-b424-8a7c8f043a21 {"md5": "3b8fa33f0afad37a5fb1d6232b839587", "pid": "226865037", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/226865037", "source": "IDREF"}], "preferred_name": "Piderit, Georg Ludwig", "parallel_access_point": ["Piderit, Georg Ludewig"], "authorized_access_point": "Piderit, Georg Ludwig", "biographical_information": ["Traduit de l'anglais en allemand"]} 1 +2024-09-11 09:05:36.511117 2024-09-11 09:05:36.511121 2b02d06b-ff70-4099-93c4-6e08f4664ad8 {"md5": "d5d0aa1b1d60378058648477b8f1ba34", "pid": "226921670", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/226921670", "source": "IDREF"}], "date_of_birth": "18..", "date_of_death": "19..", "preferred_name": "Gaudard, Erman", "country_associated": "fr", "authorized_access_point": "Gaudard, Erman, 18..-19.."} 1 +2024-09-11 09:05:36.562274 2024-09-11 09:05:36.562278 ed05a407-09bf-4e28-87dd-b557b7956918 {"md5": "7e8c6eb1419da6fa90041cf6d2cc236f", "pid": "226932141", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/226932141", "source": "IDREF"}], "variant_name": ["Jarmillo, C., Luis"], "preferred_name": "Luis Jarmillo, C.", "country_associated": "ck", "variant_access_point": ["Jarmillo, C., Luis"], "authorized_access_point": "Luis Jarmillo, C.", "biographical_information": ["géologue"]} 1 +2024-09-11 09:05:36.615654 2024-09-11 09:05:36.615658 d36d5792-b866-4d2e-b606-2ea4c3a5d252 {"md5": "7711d275b6205cdaf2e41ba707d06edb", "pid": "226958728", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/226958728", "source": "IDREF"}], "date_of_birth": "1984", "preferred_name": "Bouhia, Manal", "country_associated": "fr", "authorized_access_point": "Bouhia, Manal, 1984-....", "biographical_information": ["Élève ingénieur ENSAIT"]} 1 +2024-09-11 09:05:36.672542 2024-09-11 09:05:36.672546 de69a5b2-cf58-47a5-84a3-fff9f922f410 {"md5": "6df13a2c90c9b5e96103f672359492ef", "pid": "226964736", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/226964736", "source": "IDREF"}], "preferred_name": "Chaire UNESCO Santé sexuelle et droits humains (Paris)", "country_associated": "fr", "date_of_establishment": "2010-12-01", "authorized_access_point": "Chaire UNESCO Santé sexuelle et droits humains (Paris)", "biographical_information": ["Créée en décembre 2010. www.santesexuelle-droitshumains.org"]} 1 +2024-09-11 09:05:36.723492 2024-09-11 09:05:36.723495 b3482510-28f5-4db7-9d8f-3510e040e388 {"md5": "2cd9a3241c2a65923e449b7fae5c23bc", "pid": "227130812", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/227130812", "source": "IDREF"}], "preferred_name": "Paletto, Patrice", "authorized_access_point": "Paletto, Patrice", "biographical_information": ["Ingénieur, Directeur Produit de Renault-Trucks de 2005 à 2015"]} 1 +2024-09-11 09:05:36.779409 2024-09-11 09:05:36.779412 4a5d99b9-48b6-4570-9dad-44dc7b9abb4c {"md5": "1d86737b0ee1ad5b8a725e042e82d6f1", "pid": "227218493", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/227218493", "source": "IDREF"}], "preferred_name": "Robinson, J.M.", "country_associated": "xxu", "authorized_access_point": "Robinson, J.M.", "biographical_information": ["Professeur University of Manitoba (en 1972)"]} 1 +2024-09-11 09:05:36.842727 2024-09-11 09:05:36.84273 db25e02f-4980-43f2-a475-6a14c0469bd8 {"md5": "40fb332601d85c51b1eb84b8533dd899", "pid": "227236610", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/227236610", "source": "IDREF"}], "preferred_name": "Kornaropoulou, Sotiria", "authorized_access_point": "Kornaropoulou, Sotiria", "biographical_information": ["Architecte et membre de l'agence d'architecture 51N4E"]} 1 +2024-09-11 09:05:36.897999 2024-09-11 09:05:36.898002 75d021da-0964-4912-8ed2-1b977eca9b8c {"md5": "dc86b7a14c964f2488fef66593d73080", "pid": "227237382", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/227237382", "source": "IDREF"}], "date_of_birth": "1954-09-13", "preferred_name": "Bijaoui, Martine", "country_associated": "fr", "authorized_access_point": "Bijaoui, Martine, 1954-....", "biographical_information": ["Auteur d'une thèse d'exercice de médecine à l'Université Paris Diderot - Paris 7"]} 1 +2024-09-11 09:05:36.953137 2024-09-11 09:05:36.953141 36a0d60d-a27d-4ba5-88e1-370c945a507c {"md5": "9bb0d586a9543fc96e369739629b6b31", "pid": "227302370", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/227302370", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Zatouroff, M.", "country_associated": "xxk", "authorized_access_point": "Zatouroff, M., 19..-...."} 1 +2024-09-11 09:05:37.013694 2024-09-11 09:05:37.013698 3984943b-14df-4208-bbba-678a87a7edba {"md5": "d5b617abb571cb62299693f2e488cc8f", "pid": "227327551", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/227327551", "source": "IDREF"}], "preferred_name": "Ringard, Justine", "country_associated": "fr", "authorized_access_point": "Ringard, Justine", "biographical_information": ["Titulaire d'une thèse de sciences de l'environnement soutenue à l'Université de Guyane le 25 septembre 2017"]} 1 +2024-09-11 09:05:37.072122 2024-09-11 09:05:37.07213 52f7a745-2dd4-4f56-ad68-279d58b862ee {"md5": "611f05d7c1174c8bf15c65ffd91d04f7", "pid": "227475453", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/227475453", "source": "IDREF"}], "date_of_birth": "1937-XX-XX", "date_of_death": "2022-01-XX", "preferred_name": "Deslarzes, Béatrice", "country_associated": "sz", "authorized_access_point": "Deslarzes, Béatrice, 1937-2022", "biographical_information": ["Médecin, musicienne et mécène"]} 1 +2024-09-11 09:05:37.125207 2024-09-11 09:05:37.125211 f70c95b5-d684-4216-b8f6-b92d41e97f99 {"md5": "67ae67b4af3bb2298422b7c6ef201477", "pid": "22749900X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/22749900X", "source": "IDREF"}], "date_of_birth": "1991-06-04", "preferred_name": "Dupont, Clément", "country_associated": "fr", "authorized_access_point": "Dupont, Clément, 1991-....", "biographical_information": ["Auteur d'une thèse en Biophysique (Médecine) à Lille 2 en 2017"]} 1 +2024-09-11 09:05:37.19591 2024-09-11 09:05:37.195915 2213e76c-20bb-4718-b2a5-cbfcfe0584ba {"md5": "c80b73fe414343c6dacd021c484f49cb", "pid": "227511980", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "per"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/227511980", "source": "IDREF"}], "variant_name": ["Gunga Din"], "date_of_birth": "19XX", "date_of_death": "1964", "preferred_name": "Mirdrekvandi, Ali", "country_associated": "ir", "variant_access_point": ["Gunga Din"], "authorized_access_point": "Mirdrekvandi, Ali, 19..-1964", "biographical_information": ["Roman traduit en 1965"]} 1 +2024-09-11 09:05:37.252261 2024-09-11 09:05:37.252265 16a2e459-3375-4826-8a17-e10fc65f6376 {"md5": "a013b1aed11a575ca98aa01fc4e8053d", "pid": "227583752", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["chi"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/227583752", "source": "IDREF"}], "preferred_name": "Zheng, Ming", "country_associated": "cc", "authorized_access_point": "Zheng, Ming", "biographical_information": ["Traducteur (chinois-français)"]} 1 +2024-09-11 09:05:37.314517 2024-09-11 09:05:37.31452 f152e734-ee3f-4d60-9782-68e74fdd7b29 {"md5": "9c10c3af84267be46999c842e5645646", "pid": "227594509", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["gre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/227594509", "source": "IDREF"}], "date_of_birth": "1972", "preferred_name": "Yannaras, Spyros", "country_associated": "gr", "authorized_access_point": "Yannaras, Spyros, 1972-....", "biographical_information": ["Journaliste, écrivain"]} 1 +2024-09-11 09:05:37.367567 2024-09-11 09:05:37.36757 0cd7e928-81eb-4757-ad1e-62f5937a5675 {"md5": "f2da5d1450a000660d3d3eb5273012aa", "pid": "227599055", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/227599055", "source": "IDREF"}], "preferred_name": "Coblentz, Suzanne", "country_associated": "fr", "authorized_access_point": "Coblentz, Suzanne", "biographical_information": ["Auteur d'un mémoire à l'Ecole du Louvre"]} 1 +2024-09-11 09:05:37.425169 2024-09-11 09:05:37.425173 b5370afa-537e-4dab-9949-a814916f6d34 {"md5": "c60e162de7f4f2bda18efe80d5c6472b", "pid": "227616839", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/227616839", "source": "IDREF"}], "date_of_birth": "1989-08-30", "preferred_name": "Bernard, Clarisse", "country_associated": "fr", "authorized_access_point": "Bernard, Clarisse, 1989-....", "biographical_information": ["Titulaire d'une thèse d'exercice en pharmacie (Rennes 1 : 2017 )"]} 1 +2024-09-11 09:05:37.477985 2024-09-11 09:05:37.47799 78e266f9-8bd5-4734-9b65-d9ee70d05743 {"md5": "4d6fe104a2129e007f7e02587afff282", "pid": "227645278", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/227645278", "source": "IDREF"}], "date_of_birth": "1990-03-29", "preferred_name": "Thomas, Amélie", "country_associated": "fr", "authorized_access_point": "Thomas, Amélie, 1990-....", "biographical_information": ["Auteur d'une thèse en Mécanique à l'université de Bordeaux en 2017"]} 1 +2024-09-11 09:05:37.539287 2024-09-11 09:05:37.539293 fd3b5f0a-3f5f-4e19-a103-ee9c344ab356 {"md5": "5b870f6c2cd2cd090b07d3dc0051c6bc", "pid": "227762045", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/227762045", "source": "IDREF"}], "date_of_birth": "1987-11-05", "preferred_name": "Amieux, Aurélie", "country_associated": "fr", "authorized_access_point": "Amieux, Aurélie, 1987-....", "biographical_information": ["Titulaire d'une thèse d'exercice en Médecine (Lyon 1, 2018)"]} 1 +2024-09-11 09:05:37.596501 2024-09-11 09:05:37.596504 d2e159b7-d827-4fb4-a861-3ad0ed9e1518 {"md5": "d6769edb2713bf3f08208295a7bed349", "pid": "22779222X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/22779222X", "source": "IDREF"}], "preferred_name": "Thierry, Didier", "country_associated": "fr", "authorized_access_point": "Thierry, Didier", "biographical_information": ["Spécialiste de Serge Gainsboug"]} 1 +2024-09-11 09:05:37.65985 2024-09-11 09:05:37.659856 943cb023-ef65-4b03-9e45-b04da39b179d {"md5": "e0ae42b459e7221e8ee38bc81cde8e67", "pid": "227806646", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/227806646", "source": "IDREF"}], "date_of_birth": "1949", "preferred_name": "Koschorke, Martin", "country_associated": "gw", "authorized_access_point": "Koschorke, Martin, 1949-....", "biographical_information": ["Sociologue, thérapeute familial"]} 1 +2024-09-11 09:05:37.715625 2024-09-11 09:05:37.715627 032b5ddf-d478-4226-918c-83a10a103632 {"md5": "ae60a3a19d8a8de22903b6f9203635c0", "pid": "227845307", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/227845307", "source": "IDREF"}], "preferred_name": "Symposium on New Directions in Electroanalytical Chemistry II", "country_associated": "xxu", "date_of_termination": "1999-05-04", "date_of_establishment": "1999-05-03", "authorized_access_point": "Symposium on New Directions in Electroanalytical Chemistry II (1999 ; Seattle, Wash.)"} 1 +2024-09-11 09:05:37.765215 2024-09-11 09:05:37.765218 bece50ec-0c5a-4443-9ccb-632221c6bc77 {"md5": "d4e19a802c9fc8d520753e8d966d2fa4", "pid": "227933923", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/227933923", "source": "IDREF"}], "preferred_name": "Drakoulis, Nikolaos", "country_associated": "gr", "authorized_access_point": "Drakoulis, Nikolaos", "biographical_information": ["Rapporteur d'une thèse en Sciences de la vie et de la santé"]} 1 +2024-09-11 09:05:37.871874 2024-09-11 09:05:37.871882 4f3182ed-7537-4694-9e7c-bda3e49578e2 {"md5": "415b9bf86da045b04219cf1732336a91", "pid": "227979303", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/227979303", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Goulabchand, Sobaguechand", "country_associated": "fr", "authorized_access_point": "Goulabchand, Sobaguechand, 19..-....", "biographical_information": ["Docteur en pharmacie (en 1984)"]} 1 +2024-09-11 09:05:37.932784 2024-09-11 09:05:37.932788 b9cd5e93-5fde-49ff-9c9f-d13778d74dba {"md5": "1fab121d4b002efaf1ca7403d3a65831", "pid": "228238714", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/228238714", "source": "IDREF"}], "date_of_birth": "1986", "preferred_name": "Coutelier, Clément", "country_associated": "fr", "authorized_access_point": "Coutelier, Clément, 1986-....", "biographical_information": ["Rattaché à l'Université Bordeaux Montaigne, (en 2018)"]} 1 +2024-09-11 09:05:37.998745 2024-09-11 09:05:37.99875 4c70beb1-1bfd-4503-8fe6-e237d5712bf3 {"md5": "1c8cff7155f8af6a5725a5f43f6e3151", "pid": "228263050", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/228263050", "source": "IDREF"}], "date_of_birth": "1991-11-18", "preferred_name": "Frajer, Gaëlla", "country_associated": "fr", "authorized_access_point": "Frajer, Gaëlla, 1991-....", "biographical_information": ["Auteur d'une thèse en Physique des matériaux à Grenoble Alpes en 2018"]} 1 +2024-09-11 09:05:38.064251 2024-09-11 09:05:38.064254 a8b070b9-b895-44b3-ba42-573f736388f9 {"md5": "2f66b719ea756e5c03abb5a9bdf9223b", "pid": "228795990", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ara"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/228795990", "source": "IDREF"}], "date_of_birth": "19xx", "date_of_death": "19xx", "preferred_name": "Diab, Nadia", "country_associated": "fr", "authorized_access_point": "Diab, Nadia, 19..-...."} 1 +2024-09-11 09:05:38.114787 2024-09-11 09:05:38.114791 e619baa1-2947-48ac-afc0-e860910af8e2 {"md5": "e7935bd646a44daeba50f805a5a72051", "pid": "228853214", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/228853214", "source": "IDREF"}], "preferred_name": "Lynn, Thomas Jay", "country_associated": "xxu", "authorized_access_point": "Lynn, Thomas Jay", "biographical_information": ["Maître de conférence en anglais à la Penn State Berks (en 2017)"]} 1 +2024-09-11 09:05:38.176163 2024-09-11 09:05:38.176167 88f3202c-97de-4ebf-8690-721ab9bfe81e {"md5": "744f0717b12134d3ce01c9e6399c58d4", "pid": "228947545", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/228947545", "source": "IDREF"}], "preferred_name": "Communauté de communes de la Région de Saverne", "country_associated": "fr", "authorized_access_point": "Communauté de communes de la Région de Saverne"} 1 +2024-09-11 09:05:38.228131 2024-09-11 09:05:38.228136 957993d2-7434-45b7-8406-48c29050cc51 {"md5": "0994598c4f0285786d7c98cb85db3219", "pid": "229034713", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["pol"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/229034713", "source": "IDREF"}], "variant_name": ["Мінейка, Зыгмунт Станіслававіч", "Мінейка-Газдава, Зыгмунт Станіслававіч", "Mìnejka-Gazdava, Zygmunt Stanìslavavìč"], "date_of_birth": "1840", "date_of_death": "1925", "preferred_name": "Mìnejka, Zygmunt Stanìslavavìč", "country_associated": "gr", "variant_access_point": ["Мінейка-Газдава, Зыгмунт Станіслававіч", "Mìnejka-Gazdava, Zygmunt Stanìslavavìč"], "parallel_access_point": ["Mineiko, Zygmunt", "Mineyko, Zygmunt"], "authorized_access_point": "Mìnejka, Zygmunt Stanìslavavìč, 1840-1925", "biographical_information": ["Aristocrate, officier de l'armée, scientifique et ingénieur. Figure publique en Grèce. Né à Balvanishki, Empire russe (de nos jours : Zyalyony Bor, région de Grodno, Biélorussie)"]} 1 +2024-09-11 09:05:38.280369 2024-09-11 09:05:38.280372 a2c40287-4bc7-4da1-b4ad-1899fe2578f0 {"md5": "71adf5418a4f8633e3132c5cfd9ba768", "pid": "229300324", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/229300324", "source": "IDREF"}], "preferred_name": "Schmidt, Hans", "country_associated": "xxu", "authorized_access_point": "Schmidt, Hans"} 1 +2024-09-11 09:05:38.328721 2024-09-11 09:05:38.328725 23c7f1c5-1598-4e85-b60d-d10f7ea9af8c {"md5": "fc96c8d5715fa4c80d57d8bfd8920e93", "pid": "229580165", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/229580165", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Canzano, Davide", "country_associated": "it", "authorized_access_point": "Canzano, Davide, 19..-....", "biographical_information": ["Historien de l'art italien"]} 1 +2024-09-11 09:05:38.382307 2024-09-11 09:05:38.382309 5ceed08a-ba1b-42c9-95ab-bff07ac42121 {"md5": "14a98bb26a9f796f27f347e190d2c2ed", "pid": "229619231", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/229619231", "source": "IDREF"}], "preferred_name": "Muratti, Louna", "country_associated": "fr", "authorized_access_point": "Muratti, Louna", "biographical_information": ["Comédienne"]} 1 +2024-09-11 09:05:38.443186 2024-09-11 09:05:38.44319 1cb648ab-f737-4662-a29a-2e867d46464d {"md5": "ee96861cf138dfc87180352bced71207", "pid": "229650473", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/229650473", "source": "IDREF"}], "date_of_birth": "1954-12-09", "preferred_name": "Hervé, Pierre", "country_associated": "fr", "authorized_access_point": "Hervé, Pierre, 1954-....", "biographical_information": ["Docteur en médecine (Lyon 1, 1981)"]} 1 +2024-09-11 09:05:38.495452 2024-09-11 09:05:38.495456 1836aed3-f0b6-483e-b07e-a7b208d0bc07 {"md5": "c7d0702d18466970c2f46f4505d69dab", "pid": "229663362", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dan"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/229663362", "source": "IDREF"}], "date_of_birth": "1932", "preferred_name": "Andersen, Karen", "country_associated": "dk", "authorized_access_point": "Andersen, Karen, 1932-..."} 1 +2024-09-11 09:05:38.55418 2024-09-11 09:05:38.554185 9a45e0d3-7bb6-4a6f-8dc5-028289b47487 {"md5": "94ae5fc2b6735f2f15e8981d438a3ca0", "pid": "229665470", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/229665470", "source": "IDREF"}], "date_of_birth": "1944", "preferred_name": "Laroussi, Rahma", "country_associated": "mr", "authorized_access_point": "Laroussi, Rahma, 1944-....", "biographical_information": ["Peintre"]} 1 +2024-09-11 09:05:38.611005 2024-09-11 09:05:38.611009 410b2386-b1d6-4513-8131-8dbf0fb09c3e {"md5": "bafb49212dcd9f08433b20f3b55e53ec", "pid": "229675018", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/229675018", "source": "IDREF"}], "date_of_birth": "1986?", "preferred_name": "Pic, Camille", "country_associated": "fr", "authorized_access_point": "Pic, Camille, 1986?-....", "biographical_information": ["Naturopathe. - Auteur du blog Mangeteslegumes.net"]} 1 +2024-09-11 09:05:38.662843 2024-09-11 09:05:38.662847 b3b9cbdb-d17e-4acc-b95c-b40c7b8e3f72 {"md5": "9dcb835b202296ae41289659ee49feb4", "pid": "229703747", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/229703747", "source": "IDREF"}], "preferred_name": "Giot, Jean-François", "country_associated": "fr", "authorized_access_point": "Giot, Jean-François", "biographical_information": ["Titulaire d'une thèse en médecine (Lyon, 1992)"]} 1 +2024-09-11 09:05:38.715016 2024-09-11 09:05:38.715021 55290455-bbbb-44f7-92eb-2392cc3a0588 {"md5": "cb3469a935d851c3e0c1fe52ce9c45a8", "pid": "229818676", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/229818676", "source": "IDREF"}], "preferred_name": "Marouby, Eric", "country_associated": "fr", "authorized_access_point": "Marouby, Eric", "biographical_information": ["Invité d'un jury de thèse de doctorat en Optique et radiofréquences soutenue à Grenoble Alpes en 2018"]} 1 +2024-09-11 09:05:38.770663 2024-09-11 09:05:38.770669 ca187978-7bc5-4608-b662-ff1d8b90d869 {"md5": "78169d28867e840e708e3e0efd627723", "pid": "229845606", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/229845606", "source": "IDREF"}], "date_of_birth": "1641-02-28", "preferred_name": "Estrades, Jean-François d'", "country_associated": "fr", "authorized_access_point": "Estrades, Jean-François d', 1641?-1715", "biographical_information": ["Abbé de Moissac (1675 à 1678), Saint-Melaine, Rennes, et prior de Mont-aux-Malades, ambassadeur à Venise (1675 à 1678), à Turin en 1679. Mort à 74 ans"]} 1 +2024-09-11 09:05:38.823888 2024-09-11 09:05:38.823892 b8bbd8a0-590e-4849-a28a-27b5af840a0e {"md5": "77ac2d2d8bdd8e5a77caffb11e60cbc2", "pid": "23008964X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/23008964X", "source": "IDREF"}], "preferred_name": "Imrie, Alex", "country_associated": "xxk", "authorized_access_point": "Imrie, Alex", "biographical_information": ["Auteur d'articles de revues d'Histoire antique (en 2018)"]} 1 +2024-09-11 09:05:38.873643 2024-09-11 09:05:38.873646 1bd72d6d-5b72-4a7a-89f5-799f03571272 {"md5": "5e991ab5c4f17799157397ca1bbc949a", "pid": "230158145", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230158145", "source": "IDREF"}], "preferred_name": "Bergmeier, Lesley Ann", "authorized_access_point": "Bergmeier, Lesley Ann"} 1 +2024-09-11 09:05:38.927243 2024-09-11 09:05:38.927249 c0b2ec86-5e88-424e-97c1-b52e09bc0653 {"md5": "45e0b7dec03bb7bba521182742e6e482", "pid": "230252427", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230252427", "source": "IDREF"}], "preferred_name": "Vasseur, Yasmine", "country_associated": "fr", "authorized_access_point": "Vasseur, Yasmine"} 1 +2024-09-11 09:05:38.978175 2024-09-11 09:05:38.978177 9b7654cf-c587-4eb3-bd5d-bf928501792d {"md5": "7ae59e12af02160a78d378d289b6dde5", "pid": "230252575", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "qualifier": "journaliste", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230252575", "source": "IDREF"}], "variant_name": ["جونز, كيفن", "Ǧūnz, Kīfin"], "preferred_name": "Jones, Kevin, journaliste", "country_associated": "xxu", "variant_access_point": ["جونز, كيفن", "Ǧūnz, Kīfin"], "authorized_access_point": "Jones, Kevin, journaliste", "biographical_information": ["Journaliste, critique d'art. Né à New-York. Diplômé en littérature anglaise et journalisme (Northwestern University) ainsi qu'en linguistique (Master, Paris 3)"]} 1 +2024-09-11 09:05:39.032194 2024-09-11 09:05:39.032198 ce385db0-0ec1-47fe-b32f-158362d4d2ca {"md5": "05c54111c99594adaf3affdba458d93f", "pid": "230306365", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230306365", "source": "IDREF"}], "preferred_name": "Marty-Wollman, Nadine", "country_associated": "fr", "authorized_access_point": "Marty-Wollman, Nadine"} 1 +2024-09-11 09:05:39.087755 2024-09-11 09:05:39.08776 57e72c6b-6f12-42eb-8acf-350dd2ad6e22 {"md5": "8515447c4dd22b0f8d33a48ba56adf22", "pid": "230333885", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230333885", "source": "IDREF"}], "date_of_birth": "1988-05-19", "preferred_name": "Mohamed-Saïd, Maalek", "country_associated": "fr", "authorized_access_point": "Mohamed-Saïd, Maalek, 1988-....", "biographical_information": ["Auteur d'une thèse en Chimie Physique à Bourgogne Franche-Comté en 2018"]} 1 +2024-09-11 09:05:39.141336 2024-09-11 09:05:39.14134 3f31d938-29e3-4e23-aff8-861b1012a86a {"md5": "c4c9f5a8e1d28b8263bd062fe884adc9", "pid": "230389597", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["chi"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230389597", "source": "IDREF"}], "variant_name": ["海洋史叢書編輯委員會"], "preferred_name": "Hai yang shi cong shu bian ji wei yuan hui", "country_associated": "cc", "variant_access_point": ["海洋史叢書編輯委員會"], "authorized_access_point": "Hai yang shi cong shu bian ji wei yuan hui"} 1 +2024-09-11 09:05:39.229628 2024-09-11 09:05:39.229631 e87c926c-6b16-4d1c-a3e3-47977bdbe1f1 {"md5": "022ddb461c92e50554a4270042f561bb", "pid": "230392407", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230392407", "source": "IDREF"}], "date_of_birth": "1982-10-14", "preferred_name": "Madrigal Calderón, Johanna", "country_associated": "cl", "authorized_access_point": "Madrigal Calderón, Johanna, 1982-....", "biographical_information": ["Auteur d'une thèse de doctorat de Sociologie, Université de Strasbourg, 2018"]} 1 +2024-09-11 09:05:39.280774 2024-09-11 09:05:39.280779 c4923dfa-27a4-4943-aec2-8e0a04e8ef84 {"md5": "991a7ab5fde9b06115afc87b37d91b95", "pid": "230394477", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230394477", "source": "IDREF"}], "preferred_name": "Glass, C.E.", "country_associated": "xxu", "authorized_access_point": "Glass, C.E."} 1 +2024-09-11 09:05:39.33576 2024-09-11 09:05:39.335766 a918c51e-225a-4230-8dee-d750c9afebb5 {"md5": "e9fa490cd7f049dd2feba8bdfb3dd633", "pid": "230409261", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230409261", "source": "IDREF"}], "variant_name": ["Wray, D. A."], "date_of_birth": "1888-06-17", "date_of_death": "1982", "preferred_name": "Wray, Disney Alexander", "country_associated": "xxk", "variant_access_point": ["Wray, D. A."], "authorized_access_point": "Wray, Disney Alexander, 1888-1982", "biographical_information": ["Géologue (BGS à partir de 1913)"]} 1 +2024-09-11 09:05:39.388866 2024-09-11 09:05:39.388871 5e7e7f8e-2e8b-4d88-bccc-c4b07b819b88 {"md5": "75cf12b0cb9668a309f9e3f874efee1b", "pid": "230421075", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230421075", "source": "IDREF"}], "variant_name": ["Greenall, Annjo K.", "Klungervik Greenall, Annjo"], "preferred_name": "Greenall, Annjo Klungervik", "variant_access_point": ["Greenall, Annjo K.", "Klungervik Greenall, Annjo"], "authorized_access_point": "Greenall, Annjo Klungervik", "biographical_information": ["Enseigne l'anglais et la traduction à l'université norvégienne de sciences et de technologie (en 2017)"]} 1 +2024-09-11 09:05:39.442018 2024-09-11 09:05:39.442023 5754870d-a673-4db6-af89-d0347c6b3d07 {"md5": "58dc8744d7681cf31d0a9a425d8caea3", "pid": "230487653", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230487653", "source": "IDREF"}], "preferred_name": "Association Renaissance Ville vieille de Nancy (Nancy)", "country_associated": "fr", "authorized_access_point": "Association Renaissance Ville vieille de Nancy (Nancy)"} 1 +2024-09-11 09:05:39.496003 2024-09-11 09:05:39.496008 abbacf15-d80a-4204-ac8e-d9df9760aacb {"md5": "75efefd74468d86ec7e956db28a7d19f", "pid": "230499805", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230499805", "source": "IDREF"}], "preferred_name": "Kristóf, Ildikó", "country_associated": "hu", "authorized_access_point": "Kristóf, Ildikó", "biographical_information": ["Ethnologue"]} 1 +2024-09-11 09:05:39.548939 2024-09-11 09:05:39.548944 c3eadbc1-55ef-4d2a-a968-139dbeda2f54 {"md5": "6a04c596d4f841fd96c9606c64adb7fd", "pid": "23054634X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/23054634X", "source": "IDREF"}], "preferred_name": "Muzzioli, Maria Pia", "country_associated": "it", "authorized_access_point": "Muzzioli, Maria Pia", "biographical_information": ["Archéologue, professeur de topographie antique de l'Université Tor Vergata à Rome"]} 1 +2024-09-11 09:05:39.611809 2024-09-11 09:05:39.611813 206128c5-fb52-4be4-af92-0e0ce99a8f35 {"md5": "3bd92ac42184ad71ea5d63ab775a3387", "pid": "230568378", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230568378", "source": "IDREF"}], "preferred_name": "Chang, Soonpeel Edgar", "authorized_access_point": "Chang, Soonpeel Edgar", "biographical_information": ["Responsable juridique du groupe Korindo et administrateur d'une société aux Pays-Bas (en 2018)"]} 1 +2024-09-11 09:05:39.670605 2024-09-11 09:05:39.670609 ad2a1091-7cbe-463c-8ce4-ec64f31e1d9c {"md5": "fdbd7ff2fb93dbfb46375fcdca118cb5", "pid": "230663338", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230663338", "source": "IDREF"}], "preferred_name": "Sow-Mbaye, Sainabou", "country_associated": "fr", "authorized_access_point": "Sow-Mbaye, Sainabou", "biographical_information": ["Auteur d'une thèse en Droit à Paris 2"]} 1 +2024-09-11 09:05:39.72906 2024-09-11 09:05:39.729065 834d66e3-91ee-40de-ab3a-a470c3adde2b {"md5": "e5abeeb594d917d62cc2da560328b3be", "pid": "230746608", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230746608", "source": "IDREF"}], "date_of_birth": "1987-09-01", "preferred_name": "Sánchez Trávez, Digna Elizabeth", "country_associated": "ec", "authorized_access_point": "Sánchez Trávez, Digna Elizabeth, 1987-....", "biographical_information": ["Ingénieur"]} 1 +2024-09-11 09:05:39.780194 2024-09-11 09:05:39.780198 745565f3-4008-40a0-9a4e-979e63b563f8 {"md5": "ca71b1a1ba1a041f8a2f79989a847b6e", "pid": "230769373", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre", "ger"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230769373", "source": "IDREF"}], "variant_name": ["Katholischer Charitas-Verband (Metz)", "Caritas-Verband für die Diözese Metz", "Caritasverband für die Diözese Metz", "Fédération des Oeuvres de charité du diocèse de Metz", "Fédération de charité du diocèse de Metz"], "preferred_name": "Fédération des Oeuvres catholiques de charité (Metz)", "country_associated": "fr", "variant_access_point": ["Katholischer Charitas-Verband (Metz)", "Caritas-Verband für die Diözese Metz", "Caritasverband für die Diözese Metz", "Fédération des Oeuvres de charité du diocèse de Metz", "Fédération de charité du diocèse de Metz"], "date_of_establishment": "1906", "authorized_access_point": "Fédération des Oeuvres catholiques de charité (Metz)", "biographical_information": ["Création en 1906"]} 1 +2024-09-11 09:05:39.838337 2024-09-11 09:05:39.838341 1831bded-9eaa-4014-9be4-c894889842ac {"md5": "51efcb0f1cc8a2d887f36ab5ca6afa15", "pid": "230818846", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230818846", "source": "IDREF"}], "date_of_birth": "1931-07-05", "preferred_name": "Taupin, Jean-Louis", "country_associated": "fr", "authorized_access_point": "Taupin, Jean-Louis, 1931-....", "biographical_information": ["Architecte DPLG (1963)"]} 1 +2024-09-11 09:05:39.892396 2024-09-11 09:05:39.892401 bb1a96ac-539a-4c9f-b855-591a40dd3175 {"md5": "42303a991cf6926fc16a1d77db82600d", "pid": "230825478", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230825478", "source": "IDREF"}], "date_of_birth": "1922-06-11", "preferred_name": "Seguin, Jeanne", "authorized_access_point": "Seguin, Jeanne, 1922-....", "biographical_information": ["Chirurgien dentiste"]} 1 +2024-09-11 09:05:39.943173 2024-09-11 09:05:39.943176 4cf1c54f-96bd-46ad-90ed-beecd287cea4 {"md5": "52c590a9ebb2e85a118d7bdfd72a2348", "pid": "230880525", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230880525", "source": "IDREF"}], "date_of_birth": "1988-04-21", "preferred_name": "Breton, Julie", "country_associated": "fr", "authorized_access_point": "Breton, Julie, 1988-....", "biographical_information": ["Auteur en médecine"]} 1 +2024-09-11 09:05:39.997683 2024-09-11 09:05:39.997688 72cca462-20e7-442d-86d1-876aa9bc4a08 {"md5": "0cc082bc05ae17beeb205768b39c5667", "pid": "230910793", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230910793", "source": "IDREF"}], "date_of_birth": "1884-09-26", "preferred_name": "Weiglin, Paul", "country_associated": "gw", "authorized_access_point": "Weiglin, Paul"} 1 +2024-09-11 09:05:40.058041 2024-09-11 09:05:40.058045 ab4d1492-81d3-4c9d-9d4c-82ed5effb545 {"md5": "02b9baad1e0ddc8a63b7beb6e389aae7", "pid": "230956866", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230956866", "source": "IDREF"}], "variant_name": ["Bennetot-Olive, Stéphanie Cotton de", "Cotton de Bennetot, Stéphanie", "Olive, Stéphanie", "Olive, Stéphanie Cotton de Bennetot-"], "date_of_birth": "19XX", "preferred_name": "Cotton de Bennetot-Olive, Stéphanie", "country_associated": "fr", "variant_access_point": ["Bennetot-Olive, Stéphanie Cotton de", "Cotton de Bennetot, Stéphanie", "Olive, Stéphanie", "Olive, Stéphanie Cotton de Bennetot-"], "authorized_access_point": "Cotton de Bennetot-Olive, Stéphanie, 19..-....", "biographical_information": ["Médecin. Auteur d'un mémoire pour l'obtention du master 2 \\"Risques sanitaires radionucléaires, biologiques, chimiques et explosifs\\" (2018, Sorbonne Université)", "Docteur en médecine générale à Bordeaux 2 en 1994"]} 1 +2024-09-11 09:05:40.114174 2024-09-11 09:05:40.114179 caed7e10-dedc-4eb9-a299-68c94be1588a {"md5": "9dc33b5d064af50f86497d5547967f59", "pid": "230969267", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230969267", "source": "IDREF"}], "date_of_birth": "1991-03-14", "preferred_name": "Senger, Clémence", "country_associated": "fr", "authorized_access_point": "Senger, Clémence, 1991-....", "biographical_information": ["Auteur en médecine"]} 1 +2024-09-11 09:05:40.167263 2024-09-11 09:05:40.167268 ad1a63bc-ee30-4e82-842a-8883b273fe5a {"md5": "74349a1c82809edfaf2bed80fb74a432", "pid": "231084056", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/231084056", "source": "IDREF"}], "preferred_name": "Yue, Gang", "country_associated": "xxu", "authorized_access_point": "Yue, Gang"} 1 +2024-09-11 09:05:40.221764 2024-09-11 09:05:40.221767 a926c482-96d4-43c7-80ff-d8e0ebe0afff {"md5": "d1c243808a2109a7047f9dc5cbf909d2", "pid": "231252188", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/231252188", "source": "IDREF"}], "date_of_birth": "1988-03-25", "preferred_name": "Denis, Faustine", "country_associated": "fr", "authorized_access_point": "Denis, Faustine, 1988-...."} 1 +2024-09-11 09:05:40.275294 2024-09-11 09:05:40.275298 2bfd6928-1a13-4368-971c-add9d0132ace {"md5": "c233a233df84423f7f77edb1f3e46bfa", "pid": "231276729", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/231276729", "source": "IDREF"}], "date_of_birth": "19XX", "date_of_death": "19XX", "preferred_name": "Adelet, Natan", "country_associated": "fr", "authorized_access_point": "Adelet, Natan, 19..-19..", "biographical_information": ["Auteur d'une Thèse en Médecine à Paris en 1949"]} 1 +2024-09-11 09:05:40.325889 2024-09-11 09:05:40.325893 6897f873-b6ef-48a9-abbf-777ed94863c7 {"md5": "de3823f58eaccee087f3515c0f45278d", "pid": "231291779", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/231291779", "source": "IDREF"}], "date_of_birth": "19XX", "date_of_death": "..", "preferred_name": "Bereyziat, Jean", "country_associated": "fr", "authorized_access_point": "Bereyziat, Jean, 19..-..", "biographical_information": ["Auteur d'une Thèse de Doctorat à Université de Paris en 1964"]} 1 +2024-09-11 09:05:40.379732 2024-09-11 09:05:40.379738 70049c4b-7605-4278-9664-1f6ba4c031ac {"md5": "4aa0019e280f83e578a7c7f858cc0661", "pid": "231292856", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/231292856", "source": "IDREF"}], "date_of_birth": "19XX", "date_of_death": "..", "preferred_name": "Chassonneau, Marie-Annick", "country_associated": "fr", "authorized_access_point": "Chassonneau, Marie-Annick, 19..-..", "biographical_information": ["Auteur d'une Thèse de 3e Cycle en Chimie - Physique à Bordeaux en 1971"]} 1 +2024-09-11 09:05:40.433885 2024-09-11 09:05:40.43389 be953708-1e09-4bee-bb74-6fba2983a557 {"md5": "36ebccc4d3daae7ec2dfe688ee28a931", "pid": "231295405", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/231295405", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Abdary, Hamid el", "country_associated": "fr", "authorized_access_point": "Abdary, Hamid el, 19..-....", "biographical_information": ["Auteur d'une Thèse de Doctorat en Electronique à Toulouse 3 en 1992"]} 1 +2024-09-11 09:05:40.503769 2024-09-11 09:05:40.503773 1926b972-b1ee-42ea-b143-40244a5510bb {"md5": "cfed2a7ea58c18edae27ad019287cd92", "pid": "231314116", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/231314116", "source": "IDREF"}], "date_of_birth": "17..", "date_of_death": "17..", "preferred_name": "Bachoven, Hermann Theodor", "country_associated": "gw", "authorized_access_point": "Bachoven, Hermann Theodor, 17..-17..", "biographical_information": ["Auteur d'une Thèse en Médecine à Duisburg (Allemagne) en 1736"]} 1 +2024-09-11 09:05:40.561169 2024-09-11 09:05:40.561174 10785b81-a508-4c37-ae61-9e09b3d5a9f8 {"md5": "ec0cd52e013643b78e6fff57de21b535", "pid": "231372507", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/231372507", "source": "IDREF"}], "date_of_birth": "1991-10-09", "preferred_name": "Mikula, Laura", "country_associated": "fr", "authorized_access_point": "Mikula, Laura, 1991-....", "biographical_information": ["Auteur d'une thèse en Neurosciences soutenue à l'Université de Lyon en 2018"]} 1 +2024-09-11 09:05:40.620998 2024-09-11 09:05:40.621001 dd23bb48-1e37-418f-9bf5-9b3ea7960c4e {"md5": "982dd61de79b919315f3b4331ddd1d08", "pid": "231381476", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/231381476", "source": "IDREF"}], "preferred_name": "Incontro di studiosi dell'antichità cristiana", "country_associated": "it", "date_of_termination": "2002-05-04", "date_of_establishment": "2002-05-02", "authorized_access_point": "Incontro di studiosi dell'antichità cristiana (31 ; 2002 ; Rome)"} 1 +2024-09-11 09:05:40.674371 2024-09-11 09:05:40.674375 b3d20d69-ebd3-4771-b328-e4649f2bf07b {"md5": "aa430a39d29c88760d3daf6492d834d7", "pid": "231381964", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/231381964", "source": "IDREF"}], "date_of_birth": "1985-05-25", "preferred_name": "Aouimeur, Walid", "country_associated": "ae", "authorized_access_point": "Aouimeur, Walid, 1985-....", "biographical_information": ["Auteur d'une thèse en Optique et radiofrequences à Grenoble Alpes en 2018"]} 1 +2024-09-11 09:05:40.731392 2024-09-11 09:05:40.731395 9c303065-6b89-4c3e-8237-f6c3dace0155 {"md5": "4c8882b027707b671571aad01c231a77", "pid": "231451555", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/231451555", "source": "IDREF"}], "preferred_name": "Palesse, Stephanie", "country_associated": "fr", "authorized_access_point": "Palesse, Stephanie", "biographical_information": ["Auteur d'une thèse en Ecologie Microbienne à Clermont-Ferrand 2 en 2014"]} 1 +2024-09-11 09:05:40.787256 2024-09-11 09:05:40.787259 cc27c8ad-58f6-4ae3-81b4-decf66212a98 {"md5": "832e55fa7bd964c169086d1c9ebc4786", "pid": "231480520", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/231480520", "source": "IDREF"}], "preferred_name": "Boldorini, Alberto M.", "country_associated": "it", "authorized_access_point": "Boldorini, Alberto M.", "biographical_information": ["Historien"]} 1 +2024-09-11 09:05:40.845761 2024-09-11 09:05:40.845765 fe1d3d01-36e7-4332-8765-d3331209a706 {"md5": "4ed59bb4dce528c432d7fdb04f0f862f", "pid": "231537743", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/231537743", "source": "IDREF"}], "preferred_name": "Bagchi, Kalyan", "country_associated": "xx", "authorized_access_point": "Bagchi, Kalyan", "biographical_information": ["Auteur"]} 1 +2024-09-11 09:05:40.91097 2024-09-11 09:05:40.910974 f5a4e514-dba4-46ca-ab66-bc1cebfd5c2c {"md5": "66e2c7d74f5489fb6e95e351f9f5ac58", "pid": "231540957", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/231540957", "source": "IDREF"}], "preferred_name": "Chiffert, L.", "country_associated": "fr", "authorized_access_point": "Chiffert, L."} 1 +2024-09-11 09:05:40.963818 2024-09-11 09:05:40.963821 19b9e629-c9c7-421e-b674-fccc8fecb460 {"md5": "9da8e0e992c973768fc6e24a6d81c76e", "pid": "231623739", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/231623739", "source": "IDREF"}], "date_of_birth": "1988-10-02", "preferred_name": "Braglia, Michele", "country_associated": "it", "authorized_access_point": "Braglia, Michele, 1988-....", "biographical_information": ["Titulaire d'un doctorat en Physique et sciences de la matière. Matière condensée et nanosciences à Aix-Marseille Université en 2017"]} 1 +2024-09-11 09:05:41.023659 2024-09-11 09:05:41.023662 9c1577de-9219-4495-81fe-7495115ab29b {"md5": "1524e2370c4823d716410e420b35f3f0", "pid": "231934203", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/231934203", "source": "IDREF"}], "variant_name": ["Pardo, Rebeca Díaz"], "preferred_name": "Díaz Pardo, Rebeca", "variant_access_point": ["Pardo, Rebeca Díaz"], "authorized_access_point": "Díaz Pardo, Rebeca", "biographical_information": ["Titulaire d'un doctorat en Physique de la matière condensée (Paris Saclay, 2018)"]} 1 +2024-09-11 09:05:41.075503 2024-09-11 09:05:41.075507 b35ca026-5b43-479d-bbd6-676faa5cb8eb {"md5": "694f69889e14649721e0f981eac41d70", "pid": "232202699", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232202699", "source": "IDREF"}], "variant_name": ["Obama Etoundi, Etienne"], "preferred_name": "Etoundi Obama, Etienne", "variant_access_point": ["Obama Etoundi, Etienne"], "authorized_access_point": "Etoundi Obama, Etienne", "biographical_information": ["Titulaire d'un mémoire de maîtrise en économie politique, soutenu à l'université Paris VIII en 1977"]} 1 +2024-09-11 09:05:41.128977 2024-09-11 09:05:41.128981 41598e25-b38a-4fdf-88ee-06eedde4fccd {"md5": "c86b3d07a7c03cce12b34cf5c2b8fa69", "pid": "232278431", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232278431", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Douglas, Claire", "country_associated": "xxu", "authorized_access_point": "Douglas, Claire, 19..-....", "biographical_information": ["Psychologue clinicienne et psychanalyste jungienne. - Membre de : C. G. Jung society of Southern California, Los Angeles, Calif., États-Unis (en 1997)"]} 1 +2024-09-11 09:05:41.190591 2024-09-11 09:05:41.190595 c7b90170-60d8-41dc-bf31-523f4365e400 {"md5": "de817dd6d7fc82f635616c6b0e2a2b8b", "pid": "232343446", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232343446", "source": "IDREF"}], "preferred_name": "Rey, José Antonio", "country_associated": "pe", "authorized_access_point": "Rey, José Antonio", "biographical_information": ["Informaticien. Spécialiste d'Ubuntu"]} 1 +2024-09-11 09:05:41.247673 2024-09-11 09:05:41.247678 2c91b02a-0a90-4f5a-ba16-b83b31f9eae5 {"md5": "9dcb3a9df27f1334a933fa8b63edf106", "pid": "232523703", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232523703", "source": "IDREF"}], "variant_name": ["Romero, Joseito", "Romero Bello, José", "Bello, José Romero"], "date_of_birth": "1922", "preferred_name": "Romero, José", "country_associated": "ve", "variant_access_point": ["Romero, Joseito", "Romero Bello, José", "Bello, José Romero"], "authorized_access_point": "Romero, José, 1922-....", "biographical_information": ["Compositeur-interprète. - Chanteur et harpiste"]} 1 +2024-09-11 09:05:41.311181 2024-09-11 09:05:41.311185 18e7bfce-6502-4f14-bd16-cc926e2e3db1 {"md5": "b82dbe60ec20d34421a352eb9025d4bc", "pid": "232530343", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["geo", "fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232530343", "source": "IDREF"}], "variant_name": ["Bibileichvili, Tsissana", "Bibileišvili, Cʻisana"], "date_of_birth": "19XX", "preferred_name": "Bibiléichvili, Tsissana", "country_associated": "gau", "variant_access_point": ["Bibileichvili, Tsissana", "Bibileišvili, Cʻisana"], "authorized_access_point": "Bibiléichvili, Tsissana, 19..-...."} 1 +2024-09-11 09:05:41.373452 2024-09-11 09:05:41.373455 1307e892-481e-4635-8165-d752053a3d1a {"md5": "9f898fe36b810008d56ec23de5e639a2", "pid": "232640858", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232640858", "source": "IDREF"}], "date_of_birth": "1989-02-22", "preferred_name": "Marc, Sylvain", "country_associated": "fr", "authorized_access_point": "Marc, Sylvain, 1989-....", "biographical_information": ["Auteur d'une thèse en Sciences pour l'Ingénieur à Lorient en 2017"]} 1 +2024-09-11 09:05:41.427876 2024-09-11 09:05:41.42788 15ee100d-fe3c-4f5d-8800-28a9fb134b4a {"md5": "8cb18997711bd6387f672cec343ac212", "pid": "232656770", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232656770", "source": "IDREF"}], "preferred_name": "Alves de Oliveira Melo, Alfredo", "authorized_access_point": "Alves de Oliveira Melo, Alfredo", "biographical_information": ["Titulaire d'un doctorat en sciences de gestion à l'Université Paris-Dauphine (1983)"]} 1 +2024-09-11 09:05:41.485335 2024-09-11 09:05:41.485341 9945d450-b4a0-4873-b1cd-b9a3f6b7d5b7 {"md5": "c472e7cd8b3eff848bbec39629678f5b", "pid": "232674450", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232674450", "source": "IDREF"}], "preferred_name": "Paturel, David", "authorized_access_point": "Paturel, David"} 1 +2024-09-11 09:05:41.545344 2024-09-11 09:05:41.545347 0bc1375e-0326-4bde-867a-06af725b1b90 {"md5": "5e8f85a0b98968201473a5e272d42110", "pid": "232696551", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "praticienne en massage ayurvédique", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232696551", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Marie, Stéphanie, praticienne en massage ayurvédique", "country_associated": "fr", "authorized_access_point": "Marie, Stéphanie, 19..-...., praticienne en massage ayurvédique", "biographical_information": ["Praticienne en massage ayurvédique, conseillère en nutrition selon l'ayurvéda"]} 1 +2024-09-11 09:05:41.601336 2024-09-11 09:05:41.601342 05f0a115-67c9-4920-aa53-3ffe369c4e2b {"md5": "acf6912f9af3cb1916a73cff17313d56", "pid": "232702845", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232702845", "source": "IDREF"}], "date_of_birth": "1850", "preferred_name": "Pellereau, Louis-Emile", "country_associated": "fr", "authorized_access_point": "Pellereau, Louis-Emile, 1850-....", "biographical_information": ["Médecin. Auteur d'une thèse d'exercice; présentée et soutenue à Bordeaux le 12 aout 1882. Né à Saint-denis (Ile de la Réunion). Ex-médecin à Saint-Seurin-de-Cadourne (Médoc)."]} 1 +2024-09-11 09:05:41.654065 2024-09-11 09:05:41.654069 537b2d3c-4603-45c8-9b3d-7dfd204e8cbe {"md5": "7f2c0d49f029da54fd184c1e19deb3ba", "pid": "23272377X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/23272377X", "source": "IDREF"}], "preferred_name": "Mezzez Hmaied, Dorra", "country_associated": "fr", "authorized_access_point": "Mezzez Hmaied, Dorra", "biographical_information": ["Titulaire d'un doctorat en gestion de l'Université Paris-Dauphine (1997)."]} 1 +2024-09-11 09:05:41.716375 2024-09-11 09:05:41.71638 31b26dc3-b046-4cdd-92e5-02c095285bbb {"md5": "8c312f774ff3f3d3db8ba71d12af1af1", "pid": "23272380X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/23272380X", "source": "IDREF"}], "date_of_birth": "1987-07-14", "preferred_name": "Jehin, Elina", "authorized_access_point": "Jehin, Elina", "biographical_information": ["Titulaire d'une thèse d'exercice de docteur en médecine générale soutenue à Strasbourg en 2018"]} 1 +2024-09-11 09:05:41.771632 2024-09-11 09:05:41.771635 a42355c3-136f-4212-944e-b8111ef3b7e3 {"md5": "c24b5c3cdf7cefee991f167f8f5b875f", "pid": "232774072", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232774072", "source": "IDREF"}], "variant_name": ["Mackenzie, J. Ross"], "preferred_name": "Mackenzie, James Ross", "country_associated": "xxk", "variant_access_point": ["Mackenzie, J. Ross"], "authorized_access_point": "Mackenzie, James Ross"} 1 +2024-09-11 09:05:41.828988 2024-09-11 09:05:41.828991 0975edb4-90b7-41aa-a25f-58ab880308f0 {"md5": "c8612f04d75a64518c31d99cb24a74b1", "pid": "232796734", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["heb"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232796734", "source": "IDREF"}], "variant_name": ["Ramat Gan Museum of Israeli Art"], "preferred_name": "The Museum of Israeli Art (Ramat Gan, Israël)", "country_associated": "is", "variant_access_point": ["Ramat Gan Museum of Israeli Art"], "authorized_access_point": "The Museum of Israeli Art (Ramat Gan, Israël)", "biographical_information": ["Adresse : Abba Hillel Silver Rd 146, Ramat Gan, Israël"]} 1 +2024-09-11 09:05:41.884473 2024-09-11 09:05:41.884478 fb0fb5d3-c9a8-45d0-8131-3e5a2497f1fb {"md5": "7fcc62f2902506614887df7f43c53df0", "pid": "232804788", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232804788", "source": "IDREF"}], "variant_name": ["Pierce, William Jr.", "William Pierce of Georgia"], "date_of_birth": "1753", "date_of_death": "1789", "preferred_name": "Pierce, William", "country_associated": "xxu", "variant_access_point": ["Pierce, William Jr.", "William Pierce of Georgia"], "authorized_access_point": "Pierce, William, 1753-1789", "biographical_information": ["Officier de l'armée pendant la guerre d'indépendance américaine et un membre de la Convention constitutionnelle des États-Unis de 1787"]} 1 +2024-09-11 09:05:41.947873 2024-09-11 09:05:41.947878 b5ed7652-61fa-42bf-a128-40d79965a6d3 {"md5": "3a2ec782096b43961c69530ee12d760a", "pid": "232805636", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232805636", "source": "IDREF"}], "preferred_name": "Sims Reed Gallery (Londres, Royaume-Uni de Grande-Bretagne)", "country_associated": "xxk", "authorized_access_point": "Sims Reed Gallery (Londres, Royaume-Uni de Grande-Bretagne)", "biographical_information": ["Galerie d'art moderne spécialisée en estampes et oeuvres sur papier."]} 1 +2024-09-11 09:05:42.006372 2024-09-11 09:05:42.006376 c11fb5d9-4cdf-40a2-89d8-19999fa3f807 {"md5": "7449139c5fb17242a1e793d50cfb02f7", "pid": "232810265", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232810265", "source": "IDREF"}], "date_of_birth": "1974", "preferred_name": "Leunen, Nico", "authorized_access_point": "Leunen, Nico, 1974-....", "biographical_information": ["Scénariste"]} 1 +2024-09-11 09:05:42.061495 2024-09-11 09:05:42.061499 13fa7c3c-5e3f-43a6-bf09-3803d6dd4432 {"md5": "7c131f428bd7e1cceabf10ab974402f8", "pid": "232813116", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "qualifier": "photographe", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232813116", "source": "IDREF"}], "preferred_name": "Scott, Kieran E., photographe", "authorized_access_point": "Scott, Kieran E., photographe", "biographical_information": ["Photographe"]} 1 +2024-09-11 09:05:42.114521 2024-09-11 09:05:42.114525 f4fbae0c-e3b3-4646-8494-40a70d889532 {"md5": "813d227531034a013f2701170ae500c2", "pid": "232862583", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232862583", "source": "IDREF"}], "variant_name": ["Khan Shaghaghi, Richard", "Shaghaghi Legrand, Richard Khan", "Legrand, Richard Khan Shaghaghi"], "date_of_birth": "1982-10-13", "preferred_name": "Khan Shaghaghi Legrand, Richard", "country_associated": "fr", "variant_access_point": ["Khan Shaghaghi, Richard", "Shaghaghi Legrand, Richard Khan", "Legrand, Richard Khan Shaghaghi"], "authorized_access_point": "Khan Shaghaghi Legrand, Richard, 1982-....", "biographical_information": ["Auteur d'une thèse de doctorat en Droit privé soutenue à l'Université Sorbonne Paris Cité en 2018"]} 1 +2024-09-11 09:05:42.170875 2024-09-11 09:05:42.170881 455910c4-f853-4482-b8ca-b8616afa4ae5 {"md5": "5e2239787701c26a778bcbb769bcd526", "pid": "232868468", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232868468", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Rothrock, Paul Ernest", "country_associated": "xxu", "authorized_access_point": "Rothrock, Paul Ernest, 19..-....", "biographical_information": ["Biologiste"]} 1 +2024-09-11 09:05:42.229951 2024-09-11 09:05:42.229955 d5c2a618-5227-4c66-9afb-48399cb3572a {"md5": "78bf0edf95eb2206e324ad368c0236ff", "pid": "232869278", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232869278", "source": "IDREF"}], "preferred_name": "Benhamou, Meziane", "authorized_access_point": "Benhamou, Meziane", "biographical_information": ["Titulaire d'un doctorat en gestion (Université Paris-Dauphine, 1985)"]} 1 +2024-09-11 09:05:42.283473 2024-09-11 09:05:42.283479 c137da3f-5f38-47ed-863f-32c165eaaf89 {"md5": "30fab7c97ea5da79a064f10a3392d81f", "pid": "232895651", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232895651", "source": "IDREF"}], "date_of_birth": "1957", "preferred_name": "Bowes, David", "country_associated": "xxu", "authorized_access_point": "Bowes, David, 1957-....", "biographical_information": ["Peintre américain."]} 1 +2024-09-11 09:05:42.354819 2024-09-11 09:05:42.354823 7f192a9b-02e8-48f7-bc1b-7a841b1bbfae {"md5": "35eb06ab773f8e6b149226bfb422c5c6", "pid": "232897964", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ice", "eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232897964", "source": "IDREF"}], "variant_name": ["Reed, Heida", "Sigurðardóttir, Heiða Rún", "Rún Sigurðardóttir, Heiða"], "date_of_birth": "1988-05-22", "preferred_name": "Heiða Rún Sigurðardóttir", "country_associated": "ic", "variant_access_point": ["Reed, Heida", "Sigurðardóttir, Heiða Rún", "Rún Sigurðardóttir, Heiða"], "authorized_access_point": "Heiða Rún Sigurðardóttir, 1988-....", "biographical_information": ["Actrice"]} 1 +2024-09-11 09:05:42.41404 2024-09-11 09:05:42.414047 e02437b3-7a73-421a-a1a4-8a5a73c88f55 {"md5": "2e7093945e38e10a32a1a0f3354b0791", "pid": "232915741", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232915741", "source": "IDREF"}], "date_of_birth": "1986-12-09", "preferred_name": "Semerdjian, Yoann", "country_associated": "fr", "authorized_access_point": "Semerdjian, Yoann, 1986-....", "biographical_information": ["Auteur d'une thèse en Droit public à l'Université de Lorraine en 2018"]} 1 +2024-09-11 09:05:42.472619 2024-09-11 09:05:42.472623 c7af0e2f-d4c5-44c5-8107-cceee62e9175 {"md5": "10c621eacd6b9acf3cf72c55a3fb4008", "pid": "232934436", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232934436", "source": "IDREF"}], "variant_name": ["大丸ミュージアム (Kyoto, Japon)", "Daimaru Museum Kyoto (Kyoto, Japan)", "大丸ミュージアム・京都", "Daimaru Myūjiamu, Kyōto"], "preferred_name": "Daimaru Myūjiamu (Kyoto, Japon)", "country_associated": "ja", "variant_access_point": ["Daimaru Museum Kyoto (Kyoto, Japan)", "大丸ミュージアム・京都", "Daimaru Myūjiamu, Kyōto"], "authorized_access_point": "Daimaru Myūjiamu (Kyoto, Japon)", "biographical_information": ["Système de transcription Hepburn modifié", "Musée d'art situé à Kyoto (Japon)"]} 1 +2024-09-11 09:05:42.526186 2024-09-11 09:05:42.52619 c1169a76-cc61-4b90-9627-847d1551de8b {"md5": "9ebb13a9350152d65196b860180f8101", "pid": "233220984", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/233220984", "source": "IDREF"}], "date_of_birth": "1878", "date_of_death": "1954", "preferred_name": "Sergent, Louis", "country_associated": "fr", "authorized_access_point": "Sergent, Louis, 1878-1954", "biographical_information": ["Pharmacien"]} 1 +2024-09-11 09:05:42.595711 2024-09-11 09:05:42.595715 e17cfa5e-d6a1-43b5-967b-1092bef3f4c6 {"md5": "1748b21836ef25fca30e25f1c4b73eaa", "pid": "23322758X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/23322758X", "source": "IDREF"}], "date_of_birth": "1955", "date_of_death": "2017", "preferred_name": "Dick, Beau", "authorized_access_point": "Dick, Beau, 1955-2017", "biographical_information": ["Sculpteur. Chef kwakwaka'wakw de la côte nord-ouest d'Alert Bay, en Colombie-Britannique, au Canada"]} 1 +2024-09-11 09:05:42.665933 2024-09-11 09:05:42.665938 38cdbf54-ccfe-4538-afee-59c749715be0 {"md5": "fdf867b00df1c85a6faac09fe2a30e33", "pid": "233251073", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/233251073", "source": "IDREF"}], "date_of_birth": "18XX", "date_of_death": "1XXX", "preferred_name": "Caizergues, Raymond", "country_associated": "fr", "authorized_access_point": "Caizergues, Raymond, 18..-1...", "biographical_information": ["Auteur d'une thèse de doctorat en médecine (Paris, 1878)"]} 1 +2024-09-11 09:05:42.720928 2024-09-11 09:05:42.720933 16f9fc6e-60f7-4fde-908a-36d48b3a9a23 {"md5": "8bbf28028c026831fa2c87048022d461", "pid": "233326103", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/233326103", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Deperthuis, Anne", "country_associated": "fr", "authorized_access_point": "Deperthuis, Anne, 19..-...."} 1 +2024-09-11 09:05:42.780951 2024-09-11 09:05:42.780955 844852f0-9eea-4f06-af51-5601ba78b507 {"md5": "5a5cb1e6a39e89947584148a251ece81", "pid": "233342575", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/233342575", "source": "IDREF"}], "variant_name": ["Marchand, Doris Dagri"], "preferred_name": "Dagri Marchand, Doris", "country_associated": "fr", "variant_access_point": ["Marchand, Doris Dagri"], "authorized_access_point": "Dagri Marchand, Doris"} 1 +2024-09-11 09:05:42.838335 2024-09-11 09:05:42.838341 8260509a-775b-4df7-bbe9-cfc2a1315c3c {"md5": "e55b96599ed21c282116a0f878dea2c0", "pid": "233346562", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/233346562", "source": "IDREF"}], "date_of_birth": "1989-12-08", "preferred_name": "Saulière, Guillaume", "country_associated": "fr", "authorized_access_point": "Saulière, Guillaume, 1989-....", "biographical_information": ["Auteur d'une thèse en Santé publique - biostatistiques (Paris Saclay, 2018)"]} 1 +2024-09-11 09:05:42.895555 2024-09-11 09:05:42.895558 8ef5dcea-f9f0-4014-9014-b08624261c08 {"md5": "2870209d9595ddefc0e016d0d7d8aa47", "pid": "23352391X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/23352391X", "source": "IDREF"}], "variant_name": ["Grimaux, Claire", "Le Gall, Claire"], "date_of_birth": "1990-11-30", "preferred_name": "Le Gall-Grimaux, Claire", "variant_access_point": ["Grimaux, Claire", "Le Gall, Claire"], "authorized_access_point": "Le Gall-Grimaux, Claire, 1990-..", "biographical_information": ["Auteur d'une thèse d'exercice en médecine soutenue à Angers le 13 septembre 2018"]} 1 +2024-09-11 09:05:42.946793 2024-09-11 09:05:42.946797 a9be8009-bcbf-41f0-9777-a9310ff92d08 {"md5": "7b396cf2077f3ac2f484521463908e42", "pid": "233537155", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/233537155", "source": "IDREF"}], "variant_name": ["Taxis, Samuel"], "date_of_birth": "1989-06-18", "preferred_name": "Taxis, Samuel", "country_associated": "fr", "variant_access_point": ["Taxis, Samuel"], "authorized_access_point": "Taxis, Samuel, 1989-....", "biographical_information": ["Docteur en médecine (en 2018)"]} 1 +2024-09-11 09:05:43.000003 2024-09-11 09:05:43.000007 4a70b4ba-b9f2-48e0-9911-e078d53fd98e {"md5": "e41ba1e721312bce2b174c493517dfbd", "pid": "233564373", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/233564373", "source": "IDREF"}], "date_of_birth": "1988-04-05", "preferred_name": "Mezrani, Mehdi", "country_associated": "fr", "authorized_access_point": "Mezrani, Mehdi, 1988-...", "biographical_information": ["Auteur d’une thèse d’exercice en Médecine, soutenue le 17/09/2018, à l’Université de Montpellier"]} 1 +2024-09-11 09:05:43.055202 2024-09-11 09:05:43.055206 3f56bcd0-cd63-4d6f-8d17-198dd92161bd {"md5": "233a63f4bc87391a77e1a77c5d2bf96d", "pid": "233619771", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/233619771", "source": "IDREF"}], "preferred_name": "Barres, Frankline", "country_associated": "xx", "authorized_access_point": "Barres, Frankline", "biographical_information": ["Auteur d'un mémoire de DEA à Paris 4 en 2005"]} 1 +2024-09-11 09:05:43.113248 2024-09-11 09:05:43.113253 2ffa3eb9-b487-4d44-97d5-b473a11e2924 {"md5": "dfcb24a2832c46f257ca6ce7af5dda56", "pid": "233969829", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/233969829", "source": "IDREF"}], "variant_name": ["Alrassy, Nathalie"], "date_of_birth": "1991-11-26", "preferred_name": "Al Rassy, Nathalie", "country_associated": "le", "variant_access_point": ["Alrassy, Nathalie"], "authorized_access_point": "Al Rassy, Nathalie, 1991-....", "biographical_information": ["Auteur d'une thèse en Sciences et techniques des activités physiques et sportives soutenue à l'Université du Littoral Côte d'Opale en 2018."]} 1 +2024-09-11 09:05:43.168067 2024-09-11 09:05:43.168072 05283c22-1ad4-43e7-92aa-bf9b10a3a819 {"md5": "69cb2c4f27f04e53db8c1ffef470738b", "pid": "234087080", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234087080", "source": "IDREF"}], "preferred_name": "Sluyter, David J.", "country_associated": "xxu", "authorized_access_point": "Sluyter, David J.", "biographical_information": ["En poste à the Fetzer Institute à l'Université de Kalamazoo dans le Michigan en 1997"]} 1 +2024-09-11 09:05:43.222853 2024-09-11 09:05:43.222856 6fceaade-fa34-4899-b6d2-163a2758717c {"md5": "dfaf21e5c0c177e8c9bea8cafc4c30f9", "pid": "234195576", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234195576", "source": "IDREF"}], "preferred_name": "Cabaleiro-Jouadé, Irène", "authorized_access_point": "Cabaleiro-Jouadé, Irène", "biographical_information": ["Illustratrice, directrice d'école"]} 1 +2024-09-11 09:05:43.279355 2024-09-11 09:05:43.279359 a0bbd7d9-76d4-4fcf-bf49-5751ea353470 {"md5": "f9f452c7b994e4e8428d9ce7e43035b0", "pid": "234199180", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234199180", "source": "IDREF"}], "date_of_birth": "1983-02-02", "preferred_name": "Terrail Lormel, Sarah", "country_associated": "fr", "authorized_access_point": "Terrail Lormel, Sarah, 1983-....", "biographical_information": ["Auteur d'une thèse en Épistémologie, histoire des sciences à Sorbonne Paris Cité en 2018"]} 1 +2024-09-11 09:05:43.334353 2024-09-11 09:05:43.334356 bf6d9636-5048-4f26-92a0-33485de14128 {"md5": "557949ae9b2c6760bc467903ba9cd84b", "pid": "234246820", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234246820", "source": "IDREF"}], "date_of_birth": "1990-01-26", "preferred_name": "Fasquelle, Justine", "country_associated": "fr", "authorized_access_point": "Fasquelle, Justine, 1990-....", "biographical_information": ["Auteur d'une thèse en Sciences de gestion à Grenoble Alpes en 2018"]} 1 +2024-09-11 09:05:43.393084 2024-09-11 09:05:43.393088 3fc2aa52-0a14-45f2-b0c8-4c927ca81fdf {"md5": "d93542d5cf44e160c1ebf40378ec9cec", "pid": "234251433", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234251433", "source": "IDREF"}], "preferred_name": "Gagnière, Claude-Jean", "country_associated": "fr", "authorized_access_point": "Gagnière, Claude-Jean", "biographical_information": ["Auteur d'une thèse soutenue à la Faculté de Droit de Montpellier en 1952"]} 1 +2024-09-11 09:05:43.448887 2024-09-11 09:05:43.448892 27a4ff1b-711b-47cc-a093-386aa0546c8d {"md5": "5688bea13f42f3be87c40608d9bbc5ac", "pid": "234251867", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234251867", "source": "IDREF"}], "preferred_name": "Baltes, Camille", "country_associated": "fr", "authorized_access_point": "Baltes, Camille", "biographical_information": ["Auteur d'un mémoire à l'Ecole du Louvre"]} 1 +2024-09-11 09:05:43.509796 2024-09-11 09:05:43.5098 51b72308-21c7-48c4-a77e-a79e34a394d0 {"md5": "5386f2a4f3d60b9408f207795b760e9e", "pid": "234252006", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234252006", "source": "IDREF"}], "preferred_name": "Dru, François", "country_associated": "fr", "authorized_access_point": "Dru, François", "biographical_information": ["Musicologue, trompettiste, producteur pour Radio-France et chroniqueur pour les magazines Diapason et Classica, conseiller et administrateur artistique pour différents orchestres (Les Siècles, Orchestre national de Paris et de Lyon...)"]} 1 +2024-09-11 09:05:43.562518 2024-09-11 09:05:43.562522 fd28a9d8-73cd-412e-acf4-93323c6ea648 {"md5": "79322f1b75176d134c8d00203ac1e3ee", "pid": "234273771", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234273771", "source": "IDREF"}], "preferred_name": "Département de Psychologie clinique du sujet de Toulouse 2", "country_associated": "fr", "authorized_access_point": "Département de Psychologie clinique du sujet de Toulouse 2", "biographical_information": ["Département de l'UFR de Psychologie de l'Université Toulouse II-Jean Jaurès"]} 1 +2024-09-11 09:05:43.619696 2024-09-11 09:05:43.619699 d72a7e86-ed35-4133-8de8-3367fb0ee183 {"md5": "fa9bb5109394537e9ff1fc3b71dc30bc", "pid": "234277602", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234277602", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Riou, Patrice", "country_associated": "fr", "authorized_access_point": "Riou, Patrice, 19..-....", "biographical_information": ["Titulaire du Doctorat en Virologie (Lyon 1, 2001)"]} 1 +2024-09-11 09:05:43.674976 2024-09-11 09:05:43.674979 adc75e2a-52a6-498a-9765-d45ca028cd29 {"md5": "2d1bf658ab4676ea417da60c59b0db10", "pid": "234278390", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234278390", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "248917137"}, "variant_name": ["Colloque de Cerisy"], "preferred_name": "Centre culturel international (Cerisy-la-Salle, Manche). Colloque", "country_associated": "fr", "date_of_termination": "2016-06-30", "variant_access_point": ["Colloque de Cerisy (2016)"], "date_of_establishment": "2016-06-23", "authorized_access_point": "Centre culturel international (Cerisy-la-Salle, Manche). Colloque (2016-06-23/ 2016-06-30)"} 1 +2024-09-11 09:05:43.727028 2024-09-11 09:05:43.727033 4c7ec30d-db69-4eff-bf25-1f529d5ed769 {"md5": "45cb6bb97f21daf8696e6d9fcf4c8dff", "pid": "234317566", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234317566", "source": "IDREF"}], "preferred_name": "Prost, Louise", "country_associated": "fr", "authorized_access_point": "Prost, Louise"} 1 +2024-09-11 09:05:43.78387 2024-09-11 09:05:43.783876 b0ec1e4d-3f10-4057-9b17-597898463d54 {"md5": "2d2bb5eb309ef34f3ac37a523dddf1f3", "pid": "234340487", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234340487", "source": "IDREF"}], "preferred_name": "Raffaello, Anna", "country_associated": "it", "authorized_access_point": "Raffaello, Anna"} 1 +2024-09-11 09:05:43.845093 2024-09-11 09:05:43.845097 a5b656c6-a2eb-4283-8698-0db4a2e71ac7 {"md5": "9785987db86132aef188658bad846bd4", "pid": "234363053", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234363053", "source": "IDREF"}], "preferred_name": "Maynaud, Ernest", "country_associated": "fr", "authorized_access_point": "Maynaud, Ernest", "biographical_information": ["Titulaire d'une thèse de médecine (Paris, 1934)"]} 1 +2024-09-11 09:05:43.900929 2024-09-11 09:05:43.900932 6eb04471-216d-4880-b99c-f86365e79c72 {"md5": "5eefe8b695364c2531553ffb141dad7d", "pid": "234417765", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234417765", "source": "IDREF"}], "variant_name": ["GREHAS"], "preferred_name": "Groupe réunionnais d'étude sur l'habitat social", "country_associated": "re", "variant_access_point": ["GREHAS"], "authorized_access_point": "Groupe réunionnais d'étude sur l'habitat social"} 1 +2024-09-11 09:05:43.952991 2024-09-11 09:05:43.952995 6d2fa9b5-9144-4c4a-9135-6c49096d9670 {"md5": "4eb9880c8108b717d3bd3374c42690d9", "pid": "234443693", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234443693", "source": "IDREF"}], "variant_name": ["Cañuelo, Pedro Garcia del", "Del Cañuelo, Pedro Garcia"], "date_of_birth": "1746", "date_of_death": "18??", "preferred_name": "Garcia del Cañuelo, Pedro", "country_associated": "sp", "variant_access_point": ["Cañuelo, Pedro Garcia del", "Del Cañuelo, Pedro Garcia"], "authorized_access_point": "Garcia del Cañuelo, Pedro, 1746-18??"} 1 +2024-09-11 09:05:44.00737 2024-09-11 09:05:44.007374 585d0b18-b1e8-4fab-9ebe-549c37c0f95b {"md5": "3ac9a0b6203388b8f7bc0ffdef64a9bb", "pid": "234449381", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234449381", "source": "IDREF"}], "preferred_name": "Adarraga, Idoia", "country_associated": "sp", "authorized_access_point": "Adarraga, Idoia", "biographical_information": ["En poste à la sociedad cultural INSUB de Saint-Sébastien (2018)"]} 1 +2024-09-11 09:05:44.061791 2024-09-11 09:05:44.061794 20c825a0-b585-4adc-8e5c-75a42526183b {"md5": "82bc5d2153eb343224ec169c0c136405", "pid": "234468718", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234468718", "source": "IDREF"}], "preferred_name": "Bronsard, efli", "country_associated": "xx", "authorized_access_point": "Bronsard, efli", "biographical_information": ["Auteur d'un mémoire de maîtrise à Paris 4 en 2005"]} 1 +2024-09-11 09:05:44.115731 2024-09-11 09:05:44.115735 10070fdb-9d5c-4e9c-aa3b-b6ea3d891203 {"md5": "e47c7307499caf70388353c52fc5748b", "pid": "234477644", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234477644", "source": "IDREF"}], "date_of_birth": "1991-10-23", "preferred_name": "Fabri-Ruiz, Salomé", "country_associated": "fr", "authorized_access_point": "Fabri-Ruiz, Salomé, 1991-....", "biographical_information": ["Auteur d'une thèse en Biologie des populations et écologie à Bourgogne Franche-Comté en 2018"]} 1 +2024-09-11 09:05:44.175525 2024-09-11 09:05:44.17553 92886b41-adc8-4bc8-9836-d237c41e4b1d {"md5": "4fd701392c3360c30fb2a0d321ebf25a", "pid": "23449140X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "sage-femme", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/23449140X", "source": "IDREF"}], "date_of_birth": "1993-02-21", "preferred_name": "Drouvin, Clotilde, sage-femme", "country_associated": "fr", "authorized_access_point": "Drouvin, Clotilde, 1993-...., sage-femme", "biographical_information": ["Titulaire d'un diplôme d'État de sage-femme (Rennes, 2018)"]} 1 +2024-09-11 09:05:44.229871 2024-09-11 09:05:44.229875 6a300a0a-2d35-4426-92c7-3ffa44e13a66 {"md5": "f0572fa0f0c06e7aef689afbf9bdd483", "pid": "234536535", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234536535", "source": "IDREF"}], "preferred_name": "O'Hara, S. Paul", "authorized_access_point": "O'Hara, S. Paul"} 1 +2024-09-11 09:05:44.285301 2024-09-11 09:05:44.285305 c0493961-8856-4997-ba30-8866c34c6a94 {"md5": "ff6f461d465e958c320517cbc685395d", "pid": "234569182", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234569182", "source": "IDREF"}], "preferred_name": "Tanazacq, Pierre", "country_associated": "fr", "authorized_access_point": "Tanazacq, Pierre"} 1 +2024-09-11 09:05:44.335816 2024-09-11 09:05:44.335819 aab9c14c-ee3f-4bfe-9119-0029f3403f7d {"md5": "42387a159c4110c7504c93f4144b396e", "pid": "234587989", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234587989", "source": "IDREF"}], "variant_name": ["橋本, 義彦"], "date_of_birth": "1924", "date_of_death": "2015", "preferred_name": "Hashimoto, Yoshihiko", "country_associated": "ja", "variant_access_point": ["橋本, 義彦, 1924-2015"], "authorized_access_point": "Hashimoto, Yoshihiko, 1924-2015", "biographical_information": ["Transcription Hepburn modifié", "Historien japonais spécialiste de la noblesse et de la cour japonaises durant la période Heian"]} 1 +2024-09-11 09:05:44.396262 2024-09-11 09:05:44.396266 5b1a2d33-3f76-450d-9615-7da2c580b58b {"md5": "771d4722df860407b752a5a43777ad2b", "pid": "23459313X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/23459313X", "source": "IDREF"}], "variant_name": ["González, Mario Duque"], "preferred_name": "Duque González, Mario", "country_associated": "sp", "variant_access_point": ["González, Mario Duque"], "authorized_access_point": "Duque González, Mario", "biographical_information": ["Juriste."]} 1 +2024-09-11 09:05:44.459046 2024-09-11 09:05:44.459051 a3179c60-4797-4d2e-990f-b1d897f62cf6 {"md5": "36c87a5cc5b77e81392bf99af6c6cf10", "pid": "234622512", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234622512", "source": "IDREF"}], "date_of_birth": "1957-11-05", "preferred_name": "Rochoux, Gilles", "authorized_access_point": "Rochoux, Gilles"} 1 +2024-09-11 09:05:44.515623 2024-09-11 09:05:44.515628 cd9cd1d0-f9d5-4d91-92a3-e286f0cfdb3d {"md5": "740a8a07cb6d092e18c399a8750c3f22", "pid": "234673672", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234673672", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Cohen, Raphaël P.", "country_associated": "fr", "authorized_access_point": "Cohen, Raphaël P., 19..-....", "biographical_information": ["Co-auteur d'un article en aéronautique", "Doctorant en cotutelle de thèse internationale entre l’ISAE-SUPAERO et Georgia Tech (en 2018)"]} 1 +2024-09-11 09:05:44.570398 2024-09-11 09:05:44.570404 f58ab022-3153-4e24-845f-ad9e0002f2fb {"md5": "ebd192f91eb0a94931268e7a2e5950d5", "pid": "234715723", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234715723", "source": "IDREF"}], "variant_name": ["江口, 正弘"], "date_of_birth": "1930", "preferred_name": "Eguchi, Masahiro", "country_associated": "ja", "variant_access_point": ["江口, 正弘, 1930-...."], "authorized_access_point": "Eguchi, Masahiro, 1930-....", "biographical_information": ["Transcription Hepburn modifié"]} 1 +2024-09-11 09:05:44.632644 2024-09-11 09:05:44.632647 0fdccc73-0667-4e84-a31f-74dd38558b99 {"md5": "f70e0503e8838015efafb2d9f7fbb312", "pid": "234745479", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234745479", "source": "IDREF"}], "variant_name": ["Braithwait, William", "Braithwayte, William", "Braithwaitus, Willihelmus"], "date_of_birth": "15XX", "date_of_death": "16XX", "preferred_name": "Braithwaite, William", "country_associated": "xxk", "variant_access_point": ["Braithwait, William", "Braithwayte, William", "Braithwaitus, Willihelmus"], "authorized_access_point": "Braithwaite, William, 15..-16..", "biographical_information": ["Membre de St. John's college, Cambridge. Ecclésiastique, enseignant, musicologue"]} 1 +2024-09-11 09:05:44.688238 2024-09-11 09:05:44.688243 bfdf34a2-1175-42f9-a1b6-ed0708fc9c09 {"md5": "3fef6c3d0b2cbf9bda837b4fc5244eb6", "pid": "23475382X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/23475382X", "source": "IDREF"}], "variant_name": ["CNTP", "Opera nazionale dopolavoro (Italie). Comitato nazionale italiano per le arti popolari", "O N D (Italie). Comitato nazionale italiano per le arti popolari", "Partito nazionale fascista (Italie). Comitato nazionale italiano per arti popolari", "Accademia d'Italia. Comitato nazionale italiano per le arti popolari"], "preferred_name": "Comitato nazionale italiano per le arti popolari (Italie)", "country_associated": "it", "variant_access_point": ["CNTP", "Opera nazionale dopolavoro (Italie). Comitato nazionale italiano per le arti popolari", "O N D (Italie). Comitato nazionale italiano per le arti popolari", "Partito nazionale fascista (Italie). Comitato nazionale italiano per arti popolari", "Accademia d'Italia. Comitato nazionale italiano per le arti popolari"], "date_of_establishment": "1928", "authorized_access_point": "Comitato nazionale italiano per le arti popolari (Italie)"} 1 +2024-09-11 09:05:44.741897 2024-09-11 09:05:44.7419 2e62d47b-e31c-4bf9-aa34-8a6cff892824 {"md5": "81e9837b6a9c0ec76f2af4fc5d25e154", "pid": "234776439", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234776439", "source": "IDREF"}], "date_of_birth": "1972-12-26", "preferred_name": "Theodore, Emmanuel", "country_associated": "fr", "authorized_access_point": "Theodore, Emmanuel, 1972-....", "biographical_information": ["Auteur d'une thèse en Droit public à Reims en 2017"]} 1 +2024-09-11 09:05:44.800996 2024-09-11 09:05:44.801001 abed4a7e-1a46-4e16-9aab-e7f05f07b3b8 {"md5": "917d636612f0083fddba6a3ec0633f3e", "pid": "234777079", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234777079", "source": "IDREF"}], "variant_name": ["National Institute of Population Studies (Pakistan)"], "preferred_name": "Pakistan. National Institute of Population Studies", "country_associated": "pk", "variant_access_point": ["National Institute of Population Studies (Pakistan)"], "authorized_access_point": "Pakistan. National Institute of Population Studies"} 1 +2024-09-11 09:05:44.862542 2024-09-11 09:05:44.862544 75fa8986-120e-4adb-8d01-88e9df9cd5f2 {"md5": "85d86586e9a99aaa5f6da4b77227d792", "pid": "234811080", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["srp"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234811080", "source": "IDREF"}], "variant_name": ["Studentischen Kulturzentrum (Belgrad)", "Centre culturel étudiant (Belgrade, Serbie)"], "preferred_name": "Studentski kulturni centar u Beogradu (Belgrade, Serbie)", "variant_access_point": ["Studentischen Kulturzentrum (Belgrad)", "Centre culturel étudiant (Belgrade, Serbie)"], "authorized_access_point": "Studentski kulturni centar u Beogradu (Belgrade, Serbie)"} 1 +2024-09-11 09:05:44.923011 2024-09-11 09:05:44.923016 058a22c7-1303-489f-810f-a647294d78c0 {"md5": "c493d916f431e0743848dcfe39237a8b", "pid": "234843160", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234843160", "source": "IDREF"}], "date_of_birth": "1989-02-04", "preferred_name": "Moesch, Aude", "country_associated": "fr", "authorized_access_point": "Moesch, Aude"} 1 +2024-09-11 09:05:44.981662 2024-09-11 09:05:44.981666 2808b54e-db47-4f14-bd2e-4e8a7868aa66 {"md5": "48e87836f9848a55125094394e7e895e", "pid": "234849223", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234849223", "source": "IDREF"}], "date_of_birth": "1982-01-22", "preferred_name": "Pajek, Marta", "country_associated": "pl", "authorized_access_point": "Pajek, Marta, 1982-....", "biographical_information": ["Réalisatrice de film d'animation. - Artiste peintre, graphiste"]} 1 +2024-09-11 09:05:45.050521 2024-09-11 09:05:45.050526 57973e39-f362-4bd6-99d3-d0e8af6fbe55 {"md5": "273d459ece9251a65b0aa0256335bfd0", "pid": "235030929", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/235030929", "source": "IDREF"}], "preferred_name": "Afonso, Rui Braz", "country_associated": "po", "authorized_access_point": "Afonso, Rui Braz", "biographical_information": ["Professeur d'urbanisme, FAUP, Porto"]} 1 +2024-09-11 09:05:45.110489 2024-09-11 09:05:45.110494 54e11591-5319-446a-829b-73e339a914ec {"md5": "ccc1f34bd5a0fbba243b774e508eca91", "pid": "235031771", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/235031771", "source": "IDREF"}], "variant_name": ["Cissarz, J. v", "Cissarz, Johann W.", "Cissarz, Johann Winzenz", "Cissarz, Johannes", "Cissarz, Johannes Joseph Vincenz", "Cissarz, Johann Vinzenz", "Cissarz, J. Vincenz", "Cissarz, Johann V."], "date_of_birth": "1873", "date_of_death": "1942", "preferred_name": "Cissarz, Johann Vincenz", "country_associated": "gw", "variant_access_point": ["Cissarz, J. v", "Cissarz, Johann W.", "Cissarz, Johann Winzenz", "Cissarz, Johannes", "Cissarz, Johannes Joseph Vincenz", "Cissarz, Johann Vinzenz", "Cissarz, J. Vincenz", "Cissarz, Johann V."], "authorized_access_point": "Cissarz, Johann Vincenz, 1873-1942", "biographical_information": ["Artiste allemand"]} 1 +2024-09-11 09:05:45.165539 2024-09-11 09:05:45.165544 7250adcc-4039-4277-949f-811b530a865c {"md5": "61caa4771815106ef2731890f6ae058a", "pid": "235057657", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/235057657", "source": "IDREF"}], "preferred_name": "Goldrach, Noah", "country_associated": "xxk", "authorized_access_point": "Goldrach, Noah"} 1 +2024-09-11 09:05:45.22397 2024-09-11 09:05:45.223973 b8483b0a-53a1-4c1c-97f7-b24060bc5052 {"md5": "52d73680f72b23de9017c6e735368805", "pid": "235095273", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/235095273", "source": "IDREF"}], "preferred_name": "Petit, Christophe", "country_associated": "fr", "authorized_access_point": "Petit, Christophe", "biographical_information": ["Doctorant en pharmacie (en 1999)"]} 1 +2024-09-11 09:05:45.276233 2024-09-11 09:05:45.276238 9b192fb6-4d22-47fa-a56e-d918422421b3 {"md5": "00cc41815bad0bd7d0233228805cdf45", "pid": "235097306", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/235097306", "source": "IDREF"}], "preferred_name": "Commanay-Agnès, Colette", "country_associated": "fr", "authorized_access_point": "Commanay-Agnès, Colette", "biographical_information": ["Archiviste paléographe promotion 1963"]} 1 +2024-09-11 09:05:45.336141 2024-09-11 09:05:45.336145 814b7051-0960-407c-9071-b88b671b25e2 {"md5": "ad923a8e0d696a64e4001900854e4849", "pid": "23515606X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["pol"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/23515606X", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Antoniuk, Mateusz", "country_associated": "pl", "authorized_access_point": "Antoniuk, Mateusz, 19..-...."} 1 +2024-09-11 09:05:45.390539 2024-09-11 09:05:45.390544 e2553259-16ec-4990-88a1-a86c16562f62 {"md5": "f9fb0c3785ad9d94dd4dcfe8bd326610", "pid": "235183881", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ara"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/235183881", "source": "IDREF"}], "preferred_name": "الزموري, محمد", "country_associated": "mr", "authorized_access_point": "الزموري, محمد"} 1 +2024-09-11 09:05:45.448735 2024-09-11 09:05:45.448739 9d2a665e-69c3-429e-ae0f-41e63faa929e {"md5": "d8b0f5ec93f08eaa0145549e8119a7e5", "pid": "235239593", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/235239593", "source": "IDREF"}], "preferred_name": "Eymond, Gabriel", "authorized_access_point": "Eymond, Gabriel"} 1 +2024-09-11 09:05:45.503842 2024-09-11 09:05:45.503847 1f598f00-64db-4ca5-98ba-a12de34c5d93 {"md5": "a05f1cea9265cab36cf0c50afea4d3cd", "pid": "235262927", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/235262927", "source": "IDREF"}], "date_of_birth": "1979-07-02", "preferred_name": "Selmani, Zohair", "country_associated": "fr", "authorized_access_point": "Selmani, Zohair"} 1 +2024-09-11 09:05:45.56028 2024-09-11 09:05:45.560284 3d4774d7-706a-40fd-9f21-e76ed265e150 {"md5": "e6c2320e0b64f16664befbf4d3d3ce89", "pid": "23527125X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ara"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/23527125X", "source": "IDREF"}], "variant_name": ["نصر, مرسل", "Naṣr, Mursil"], "date_of_birth": "1937", "preferred_name": "Naṣr, Mursal", "country_associated": "le", "variant_access_point": ["Naṣr, Mursil"], "authorized_access_point": "Naṣr, Mursal, 1937-....", "biographical_information": ["Juge. - Ancien président de la Cour d'appel druze"]} 1 +2024-09-11 09:05:45.617834 2024-09-11 09:05:45.617839 00728df2-1f4d-43e2-8fee-d2b9d747c964 {"md5": "91c3f357f59ff1e3594d5bff0e811ad6", "pid": "235301108", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/235301108", "source": "IDREF"}], "variant_name": ["Rissman, Jeffrey"], "preferred_name": "Rissman, Jeffrey", "country_associated": "xxu", "variant_access_point": ["Rissman, Jeffrey"], "authorized_access_point": "Rissman, Jeffrey", "biographical_information": ["Industry Program Director and Head of Modeling at Energy Innovation"]} 1 +2024-09-11 09:05:45.675653 2024-09-11 09:05:45.675658 06b36e96-e684-4033-bc73-a2cf8b243003 {"md5": "2c27c45e4c0cdefca1db93cdb80d6a5b", "pid": "235301787", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/235301787", "source": "IDREF"}], "date_of_birth": "...", "preferred_name": "Ribeiro, Marc H.", "country_associated": "fr", "authorized_access_point": "Ribeiro, Marc H.", "biographical_information": ["Créateur de jeux"]} 1 +2024-09-11 09:05:45.732131 2024-09-11 09:05:45.732134 74890580-692d-43ec-96c6-7c2083bf43fe {"md5": "3a0486c25547d8fe09e4d68b47b16581", "pid": "235328790", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/235328790", "source": "IDREF"}], "preferred_name": "Caratelli, Renata", "country_associated": "it", "authorized_access_point": "Caratelli, Renata", "biographical_information": ["Ancienne professeur de langue et civilisation françaises dans les lycées italiens"]} 1 +2024-09-11 09:05:45.785636 2024-09-11 09:05:45.78564 284844c5-d1e9-471a-bd96-01ed4a7afedb {"md5": "f4efd5338844694f7db873cd73761fd3", "pid": "235561584", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/235561584", "source": "IDREF"}], "preferred_name": "Flamant, Gaspard", "country_associated": "fr", "authorized_access_point": "Flamant, Gaspard", "biographical_information": ["Auteur de romans jeunesse pour adolescents (en 2018)"]} 1 +2024-09-11 09:05:45.84989 2024-09-11 09:05:45.849895 6e994986-b4ea-4eaf-9635-0556b0899676 {"md5": "61d85bd50f611f97b5613836a29e89b9", "pid": "235598720", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/235598720", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Janji, Bassam", "country_associated": "fr", "authorized_access_point": "Janji, Bassam, 19..-....", "biographical_information": ["Auteur d'une Thèse de doctorat en Sciences médicales à Paris 6 en 2000"]} 1 +2024-09-11 09:05:45.912305 2024-09-11 09:05:45.912308 a7305041-c6d6-4438-bf4c-d7d110d98565 {"md5": "bedd3f13c918b9d10c234aed947285e5", "pid": "235711667", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/235711667", "source": "IDREF"}], "preferred_name": "Guerrero, Sabine", "authorized_access_point": "Guerrero, Sabine"} 1 +2024-09-11 09:05:45.96702 2024-09-11 09:05:45.967024 736bb375-2e34-4339-8ba1-867f01fa5146 {"md5": "eafccf327820b03f22f5ee241a59cbe3", "pid": "235718211", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/235718211", "source": "IDREF"}], "preferred_name": "Asher, Rita Ann", "authorized_access_point": "Asher, Rita Ann"} 1 +2024-09-11 09:05:46.017482 2024-09-11 09:05:46.017487 ae8e05ed-cf58-47e2-8394-f57daa98265d {"md5": "89fb97739e131ad5d188018b6781cb32", "pid": "235835943", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["hrv"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/235835943", "source": "IDREF"}], "date_of_birth": "1903", "date_of_death": "1985", "preferred_name": "Weissmann, Ernest", "country_associated": "ci", "authorized_access_point": "Weissmann, Ernest, 1903-1985", "biographical_information": ["Architecte"]} 1 +2024-09-11 09:05:46.08601 2024-09-11 09:05:46.086017 7ad2d917-37c7-4201-aebb-39ed04304862 {"md5": "c482b08a3d3457ef9c814f2853aa37a1", "pid": "235860131", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/235860131", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Buj, A.", "country_associated": "fr", "authorized_access_point": "Buj, A., 19..-...."} 1 +2024-09-11 09:05:46.160113 2024-09-11 09:05:46.160118 75c809e0-ddbb-4a81-8256-2cede7d09215 {"md5": "072439f4746be41f42e521e1cb1a2545", "pid": "235909025", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/235909025", "source": "IDREF"}], "preferred_name": "Chabry, Etienne", "country_associated": "fr", "authorized_access_point": "Chabry, Etienne"} 1 +2024-09-11 09:05:46.226201 2024-09-11 09:05:46.226206 8a2aed22-fc53-4609-8f58-04f8923e842e {"md5": "5457e7e6f3cce78bb53d066085558f71", "pid": "236048198", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/236048198", "source": "IDREF"}], "date_of_birth": "1949-10-01", "preferred_name": "Harroch, Myriam", "country_associated": "fr", "authorized_access_point": "Harroch, Myriam", "biographical_information": ["Doctorante en chirurgie dentaire (en 1974)"]} 1 +2024-09-11 09:05:46.281448 2024-09-11 09:05:46.281452 946a1070-6fbe-4e16-919c-88870e115644 {"md5": "0a65c13d228f621d8783b157a4eac438", "pid": "236052616", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/236052616", "source": "IDREF"}], "preferred_name": "WHO Study Group on the Role of Research and Information Systems in Decision-Making for the Development of Human Resources for Health", "authorized_access_point": "WHO Study Group on the Role of Research and Information Systems in Decision-Making for the Development of Human Resources for Health"} 1 +2024-09-11 09:05:46.336726 2024-09-11 09:05:46.33673 00158cc7-e41c-455e-80f3-62b5076151c8 {"md5": "759525837c702d51eae6aa3e2a122cf7", "pid": "236100599", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/236100599", "source": "IDREF"}], "variant_name": ["Bard, Sandrine"], "preferred_name": "Sorel, Sandrine", "variant_access_point": ["Bard, Sandrine"], "authorized_access_point": "Sorel, Sandrine"} 1 +2024-09-11 09:05:46.391109 2024-09-11 09:05:46.391114 12822d1e-e340-4dc1-8f96-c515ce222b46 {"md5": "a815b7dddf9b7dfc776420de4cc810e2", "pid": "236101706", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/236101706", "source": "IDREF"}], "date_of_birth": "1984-08-04", "preferred_name": "Le Foulher, Fabrice", "country_associated": "fr", "authorized_access_point": "Le Foulher, Fabrice, 1984-....", "biographical_information": ["Auteur d'une thèse en Physique nucléaire soutenue à Lyon 1 en 2010"]} 1 +2024-09-11 09:05:46.45048 2024-09-11 09:05:46.450487 0314432b-df13-4858-a341-fab4a2ddef91 {"md5": "c58511ca6913ae1cc27c092309ca280e", "pid": "236118668", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/236118668", "source": "IDREF"}], "preferred_name": "Gardner, Peter", "country_associated": "xxk", "authorized_access_point": "Gardner, Peter", "biographical_information": ["Professeur au Manchester Institute of Biotechnology, Université de Manchester (Royaume-Uni)"]} 1 +2024-09-11 09:05:46.503345 2024-09-11 09:05:46.503348 36dc1ffd-19b6-40f0-ba05-2a07dd439ce4 {"md5": "d5a41904c531b84d8f4fcb4081d4702d", "pid": "236167510", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/236167510", "source": "IDREF"}], "preferred_name": "Parcy, Elliott", "country_associated": "fr", "authorized_access_point": "Parcy, Elliott"} 1 +2024-09-11 09:05:46.556596 2024-09-11 09:05:46.5566 fcf8b137-826b-494c-b704-02b66f5a356d {"md5": "ab3a2778204bebb2bc53d3ad89e7641b", "pid": "236210424", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/236210424", "source": "IDREF"}], "preferred_name": "Perney, Christine", "country_associated": "fr", "authorized_access_point": "Perney, Christine", "biographical_information": ["Responsable du projet Histoires d'art à l'école, chargée de Projets culturels \\"Réseaux éducatifs\\", cellule médiation-éducation RMN Grand Palais"]} 1 +2024-09-11 09:05:46.612189 2024-09-11 09:05:46.612192 2170dd08-b0c6-4251-ac02-4eff606cec15 {"md5": "9249838a251ab5c8e205a3c3b90dd790", "pid": "236421603", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/236421603", "source": "IDREF"}], "preferred_name": "Benetti, Jacopo", "country_associated": "it", "authorized_access_point": "Benetti, Jacopo"} 1 +2024-09-11 09:05:46.667315 2024-09-11 09:05:46.667319 cde86bd2-6ad8-4916-9059-db4d8abbc5ae {"md5": "8f3213974db9e3555a06add3be05e8af", "pid": "236517627", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/236517627", "source": "IDREF"}], "variant_name": ["Exposition internationale", "Exposition universelle de l’agriculture, de l’industrie, de l’horticulture et des beaux-arts", "Exposition régionale", "Exposition de Metz"], "preferred_name": "Exposition universelle", "country_associated": "fr", "date_of_termination": "1861-09-24", "variant_access_point": ["Exposition internationale (1861 ; Metz)", "Exposition universelle de l’agriculture, de l’industrie, de l’horticulture et des beaux-arts (1861 ; Metz)", "Exposition régionale (1861 ; Metz)", "Exposition de Metz (1861)"], "date_of_establishment": "1861-06-01", "authorized_access_point": "Exposition universelle (1861 ; Metz)", "biographical_information": ["Exposition tenue à Metz de mai à septembre 1861. Elle se déroulait sur la Place royale, l'Esplanade et le quai des régates. Inaugurée le 1er juin 1861, elle se termine le 24 septembre"]} 1 +2024-09-11 09:05:46.722812 2024-09-11 09:05:46.722815 1c9a9465-fa96-42d2-8245-f87b1ddacdd3 {"md5": "6f2916f5bd8bf56688b56b042774087a", "pid": "236553917", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/236553917", "source": "IDREF"}], "variant_name": ["SMT", "Tunisian mathematical society"], "preferred_name": "Société mathématique de Tunisie (Tunis)", "country_associated": "ti", "variant_access_point": ["SMT", "Tunisian mathematical society"], "date_of_establishment": "2019", "authorized_access_point": "Société mathématique de Tunisie (Tunis)", "biographical_information": ["Société de recherche créée en 1992.", "2092, Faculté des Sciences de Tunis, Campus Universitaire, Tunis, Tunisie"]} 1 +2024-09-11 09:05:46.774358 2024-09-11 09:05:46.774362 61183ada-f9ba-4359-ab4a-4f4df6b4ab49 {"md5": "90026ab6a23d462d649c5ecc10158e74", "pid": "236613529", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["chi"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/236613529", "source": "IDREF"}], "variant_name": ["李, 良志"], "date_of_birth": "1928", "preferred_name": "Li, Liangzhi", "country_associated": "cc", "variant_access_point": ["李, 良志, 1928-...."], "authorized_access_point": "Li, Liangzhi, 1928-....", "biographical_information": ["Professeur de l'Université Renmin de Chine. Auteur d'ouvrages sur les partis politiques chinois."]} 1 +2024-09-11 09:05:46.827888 2024-09-11 09:05:46.827893 42669fad-dc56-4720-9aee-d1c19421c755 {"md5": "c9897bb7add2ade06f49b9e13178111d", "pid": "236615165", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/236615165", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Fayat, Alexis", "country_associated": "fr", "authorized_access_point": "Fayat, Alexis, 19..-....", "biographical_information": ["Co-auteur d'un article en biologie", "Membre du laboratoire Dynamiques et écologie des paysages agriforestiers - DYNAFOR (Castanet-Tolosan, Haute-Garonne) (en 2019)"]} 1 +2024-09-11 09:05:46.880428 2024-09-11 09:05:46.880433 e5b6231c-13bf-4c0f-ba4b-8834975a4043 {"md5": "9a73e847da6b2be49358f8da02917397", "pid": "236625284", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/236625284", "source": "IDREF"}], "preferred_name": "Cormier, Pénélope", "country_associated": "xxc", "authorized_access_point": "Cormier, Pénélope", "biographical_information": ["Professeur de littérature à l'université de Moncton"]} 1 +2024-09-11 09:05:46.935096 2024-09-11 09:05:46.935101 b36f3a2e-8704-434c-ba5b-047713bca1af {"md5": "37bfa162ba7209bf0526fcbedae813cf", "pid": "236722344", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/236722344", "source": "IDREF"}], "date_of_birth": "1949-07-26", "preferred_name": "Midon, Patrick", "country_associated": "fr", "authorized_access_point": "Midon, Patrick", "biographical_information": ["Doctorant en chirurgie dentaire (en 1977)"]} 1 +2024-09-11 09:05:46.98683 2024-09-11 09:05:46.986835 f04a3ba9-f649-4b75-91d8-d3a908cf8070 {"md5": "0512388d09c5d95198f4ac9da888c072", "pid": "236724371", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/236724371", "source": "IDREF"}], "variant_name": ["Caldito, Lidia", "Andrades, Lidia"], "date_of_birth": "19XX", "preferred_name": "Andrades Caldito, Lidia", "country_associated": "sp", "variant_access_point": ["Caldito, Lidia", "Andrades, Lidia"], "authorized_access_point": "Andrades Caldito, Lidia, 19..-....", "biographical_information": ["Maître de conférence en marketing à l'Université d'Extremadura, en Espagne."]} 1 +2024-09-11 09:05:47.043609 2024-09-11 09:05:47.043655 88f07acc-a25b-4faa-8102-12e56c0dbd09 {"md5": "2e49c5e9e9265ed07ea5b7ed39678c6d", "pid": "236751964", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["tha"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/236751964", "source": "IDREF"}], "variant_name": ["ดลมนรรจน์ บากา", "Donmanat Baka", "Baka, Donmanat", "บากา, ดลมนรรจน์", "Bākā, Donmanat"], "date_of_birth": "19XX", "preferred_name": "Donmanat Bākā", "country_associated": "th", "variant_access_point": ["Donmanat Baka", "Baka, Donmanat", "บากา, ดลมนรรจน์", "Bākā, Donmanat"], "authorized_access_point": "Donmanat Bākā, 19..-....", "biographical_information": ["Translittération ALA-LOC", "Enseignant thaïlandais"]} 1 +2024-09-11 09:05:47.097313 2024-09-11 09:05:47.097319 066d8f55-f378-4399-bdb7-e43e0772fa9f {"md5": "3e3291ce676ee39aa5e680921f9ceb3d", "pid": "236752677", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/236752677", "source": "IDREF"}], "preferred_name": "Sandral, Céline", "country_associated": "fr", "authorized_access_point": "Sandral, Céline", "biographical_information": ["Co-auteur d'un mémoire de master 1 de psychologie cognitive et ergonomie"]} 1 +2024-09-11 09:05:47.160779 2024-09-11 09:05:47.160784 ad29d68e-5010-4df2-9b1c-539457b47a78 {"md5": "5f18e4ddbaeea0146d7aeb8b67bf2e06", "pid": "236755889", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/236755889", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Georgescu, Delia", "country_associated": "gw", "authorized_access_point": "Georgescu, Delia, 19..-....", "biographical_information": ["Autrice d'articles sur la littérature québécoise. Docteur ès Lettres de l'Université de Bucarest"]} 1 +2024-09-11 09:05:47.210701 2024-09-11 09:05:47.210705 e2bc9e6c-46a7-4aa3-845c-33abc107359e {"md5": "832ae8e577d56e6482b8d69ea240f25d", "pid": "236758349", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/236758349", "source": "IDREF"}], "preferred_name": "Provoke (photographie) (Japon)", "country_associated": "ja", "authorized_access_point": "Provoke (photographie) (Japon)", "biographical_information": ["Collectif de photographes japonais d'après-guerre"]} 1 +2024-09-11 09:05:47.274704 2024-09-11 09:05:47.274708 7a3d843c-94df-403d-8e5d-0a69462bbd3e {"md5": "db364a237ee276b906c1fb5c0a27b7f1", "pid": "236760378", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/236760378", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Little, Joyce Currie", "country_associated": "xxu", "authorized_access_point": "Little, Joyce Currie, 19..-....", "biographical_information": ["Progframmeur. En poste à Baltimore (en 1971)"]} 1 +2024-09-11 09:05:47.332494 2024-09-11 09:05:47.332499 4c148ed6-3074-45ec-8ce5-44f684b4550b {"md5": "94899a37518375d61d8fd5fe3a6142df", "pid": "236792539", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["per", "eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/236792539", "source": "IDREF"}], "variant_name": ["عنقا, حميده بانو", "Anqa, Hamideh Banu"], "date_of_birth": "1940", "preferred_name": "ʻAnqā, Ḥamīdah Bānū", "country_associated": "ir", "variant_access_point": ["Anqa, Hamideh Banu"], "authorized_access_point": "ʻAnqā, Ḥamīdah Bānū, 1940-...."} 1 +2024-09-11 09:05:47.38523 2024-09-11 09:05:47.385233 1fe1ab1b-ffcb-4567-956e-be1f781f4a9e {"md5": "8c3743927bb2de495146fd75b4e679bb", "pid": "237190109", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/237190109", "source": "IDREF"}], "date_of_birth": "1908-01-16", "preferred_name": "Deburge, Albert-François", "country_associated": "fr", "authorized_access_point": "Deburge, Albert-François, 1908-....", "biographical_information": ["Docteur en médecine (Lille, 1935)"]} 1 +2024-09-11 09:05:47.439875 2024-09-11 09:05:47.439879 828839d8-3b25-4546-a411-6dbf179c8dea {"md5": "6ba89f808a31e60ccaa3dbfcb0b58154", "pid": "237257521", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/237257521", "source": "IDREF"}], "preferred_name": "Lapp, Axel", "country_associated": "xx", "authorized_access_point": "Lapp, Axel"} 1 +2024-09-11 09:05:47.503452 2024-09-11 09:05:47.503455 e7f900cd-a110-4eb4-91cd-ca517a8673e2 {"md5": "908dace7a71d02f9a3a528b5941269ff", "pid": "237613883", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/237613883", "source": "IDREF"}], "variant_name": ["Jiao, Jiu Jimmy"], "preferred_name": "Jiao, Jimmy", "variant_access_point": ["Jiao, Jiu Jimmy"], "authorized_access_point": "Jiao, Jimmy", "biographical_information": ["BEng and MEng from China University of Geosciences (Wuhan), China, and PhD from the University of Birmingham, UK. Assistant professor, Department of Earth Sciences, University of Hong Kong (HKU) depuis 1997."]} 1 +2024-09-11 09:05:47.557444 2024-09-11 09:05:47.557446 0e170543-59a0-47fe-ab06-6330ab838df2 {"md5": "3e6cf58037c9e61908bd7b336a249d7a", "pid": "237634260", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/237634260", "source": "IDREF"}], "preferred_name": "Vizcaino Ruiz, Marta", "country_associated": "sp", "authorized_access_point": "Vizcaino Ruiz, Marta"} 1 +2024-09-11 09:05:47.614681 2024-09-11 09:05:47.614685 cb4baa15-9c0c-48f5-bad0-d576dca72d3e {"md5": "e67f418d14ceef5816993af68dcfcb8b", "pid": "237678373", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/237678373", "source": "IDREF"}], "date_of_birth": "1989-03-12", "preferred_name": "Otandault Aviviani, Amaelle Cherone", "country_associated": "go", "authorized_access_point": "Otandault Aviviani, Amaelle Cherone, 1989-....", "biographical_information": ["Auteur d'une thèse en Biologie Santé à l'Université de Montpellier en 2019."]} 1 +2024-09-11 09:05:47.666839 2024-09-11 09:05:47.666842 e34f7f79-ea3c-47df-b8ac-356c541f966e {"md5": "507de5e43636e2586a044e439801cc63", "pid": "23771745X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/23771745X", "source": "IDREF"}], "date_of_birth": "1980", "preferred_name": "Grujičić, Milica", "country_associated": "gw", "authorized_access_point": "Grujičić, Milica, 1980-....", "biographical_information": ["En 2017 a eu sa thèse à l'Université Friedrich-Schiller d'Iéna (études sur l'Europe du Sud-Est). Ses recherches portent sur des questions comparatives sur la littérature liée à la migration"]} 1 +2024-09-11 09:05:47.722351 2024-09-11 09:05:47.722354 e06b3684-eeba-417a-ba43-c96863a535af {"md5": "06f1dfcca7324a9a8ab72c97f10480e3", "pid": "237781565", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/237781565", "source": "IDREF"}], "date_of_birth": "1952-06-09", "preferred_name": "Hentzgen, Jean", "country_associated": "fr", "authorized_access_point": "Hentzgen, Jean, 1952-....", "biographical_information": ["Auteur d'une thèse en Histoire à Normandie en 2019"]} 1 +2024-09-11 09:05:47.775684 2024-09-11 09:05:47.775688 6af9e373-f52c-4fb0-9a75-d5503d03d2d8 {"md5": "40b157c81c194171bb13394e0463c27f", "pid": "237801221", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/237801221", "source": "IDREF"}], "preferred_name": "Browarczyk, Monika", "authorized_access_point": "Browarczyk, Monika"} 1 +2024-09-11 09:05:47.83278 2024-09-11 09:05:47.832783 2a58e9e5-e1b9-4828-8469-02e3e3997539 {"md5": "48db16e49813fbfbb956da520562d70b", "pid": "237825457", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/237825457", "source": "IDREF"}], "preferred_name": "Avigdor, Eve-Laure", "country_associated": "fr", "authorized_access_point": "Avigdor, Eve-Laure", "biographical_information": ["Etudiante en 2004 à l'Université Paul Valéry Montpellier 3"]} 1 +2024-09-11 09:05:47.886927 2024-09-11 09:05:47.886933 df47364d-25ae-4595-9aa0-8642f7d3f132 {"md5": "850efe6f78f22a789d1288986d9a8b32", "pid": "237851539", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["nor"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/237851539", "source": "IDREF"}], "date_of_birth": "1951", "preferred_name": "Bardal, Kjell Erling", "country_associated": "no", "authorized_access_point": "Bardal, Kjell Erling, 1951-....", "biographical_information": ["Romancier norvégien"]} 1 +2024-09-11 09:05:47.953525 2024-09-11 09:05:47.95353 d46ba4ba-bb4f-4718-a877-57907e79e728 {"md5": "304ff4c0ebcea517cf82c2eeda029662", "pid": "23789615X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/23789615X", "source": "IDREF"}], "date_of_birth": "1993-10-27", "preferred_name": "Maghezzi, Leïla", "country_associated": "fr", "authorized_access_point": "Maghezzi, Leïla"} 1 +2024-09-11 09:05:48.007261 2024-09-11 09:05:48.007266 5b5464bf-2082-44c9-bae2-5fbc78f5a76f {"md5": "1f55aaaceeaa09fa0d92ffbdc77c3e6b", "pid": "238282694", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "comte de", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/238282694", "source": "IDREF"}], "date_of_birth": "1732", "date_of_death": "1808", "preferred_name": "La Roque-Mons, Jean-François, comte de", "country_associated": "fr", "authorized_access_point": "La Roque-Mons, Jean-François, 1732-1808, comte de", "biographical_information": ["Député de la noblesse de Périgueux"]} 1 +2024-09-11 09:05:48.07324 2024-09-11 09:05:48.073243 d9d85d24-2c7e-4ddd-bbba-d535270d676f {"md5": "0f718ea7b89d9ee84f5581a0a64dedc2", "pid": "238303845", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/238303845", "source": "IDREF"}], "variant_name": ["Маляков, Лев Иванович", "Maliakov, Lev Ivanovich"], "preferred_name": "Malâkov, Lev Ivanovič", "variant_access_point": ["Maliakov, Lev Ivanovich"], "authorized_access_point": "Malâkov, Lev Ivanovič"} 1 +2024-09-11 09:05:48.132038 2024-09-11 09:05:48.132044 5c56e78e-759a-456b-9fb5-163518f58116 {"md5": "7d2451acf33215b4ccfbadcf066d5491", "pid": "23830566X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/23830566X", "source": "IDREF"}], "date_of_birth": "1988-09-10", "preferred_name": "Strubel, David", "country_associated": "fr", "authorized_access_point": "Strubel, David, 1988-....", "biographical_information": ["Auteur d'une thèse en Instrumentation et informatique de l'image à Bourgogne Franche-Comté en 2019"]} 1 +2024-09-11 09:05:48.191003 2024-09-11 09:05:48.191007 bca0482c-7f03-4f70-b884-fcb70b26c5b8 {"md5": "f8ad331ccf6dfbad57b085152728b53c", "pid": "238472345", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/238472345", "source": "IDREF"}], "preferred_name": "Xardel, N.", "country_associated": "fr", "authorized_access_point": "Xardel, N.", "biographical_information": ["Économiste"]} 1 +2024-09-11 09:05:48.241716 2024-09-11 09:05:48.241721 7a6e7b48-4142-43f3-b7fd-984b7817831b {"md5": "6871f4c1b51e15eeb5055382349da281", "pid": "238526852", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/238526852", "source": "IDREF"}], "date_of_birth": "1995-10-31", "preferred_name": "Zajaczkowski, Sophie", "country_associated": "fr", "authorized_access_point": "Zajaczkowski, Sophie"} 1 +2024-09-11 09:05:48.293326 2024-09-11 09:05:48.293331 efaffbee-ffdd-4c76-b8db-7c2ef6db5032 {"md5": "0f3e4d7d80637816f0dd446040f94196", "pid": "238572366", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/238572366", "source": "IDREF"}], "preferred_name": "Fortunel, Claire", "country_associated": "fr", "authorized_access_point": "Fortunel, Claire", "biographical_information": ["Chargée de recherches à l'IRD en 2018 (Guyane)"]} 1 +2024-09-11 09:05:48.348375 2024-09-11 09:05:48.348378 4440a7dc-fc04-4776-804f-da49ed0fc024 {"md5": "7d24183a1f9cbe4973ef4eea053c80fe", "pid": "238704750", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/238704750", "source": "IDREF"}], "preferred_name": "Renaud, Jean-Sébastien", "country_associated": "xxc", "authorized_access_point": "Renaud, Jean-Sébastien", "biographical_information": ["Professeur en mesure et évaluation au Département de médecine familiale et de médecine d'urgence de l'Université de Laval"]} 1 +2024-09-11 09:05:48.416335 2024-09-11 09:05:48.416338 520c32eb-6826-4c71-acf6-81d983ffffa1 {"md5": "20ddc07db80d1c781ad84f24ab2ad579", "pid": "238709906", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "poète", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/238709906", "source": "IDREF"}], "variant_name": ["El Raby"], "preferred_name": "Diouf, Ousmane El Raby, poète", "country_associated": "sg", "variant_access_point": ["El Raby"], "authorized_access_point": "Diouf, Ousmane El Raby, poète", "biographical_information": ["Poète"]} 1 +2024-09-11 09:05:48.472334 2024-09-11 09:05:48.472337 791abc3a-0419-4ece-9f3d-3f57caec9a39 {"md5": "7800b7c521fcda680f343d94b473e4b4", "pid": "238712435", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/238712435", "source": "IDREF"}], "date_of_birth": "19..", "preferred_name": "Chabannes, Axelle", "country_associated": "fr", "authorized_access_point": "Chabannes, Axelle, 19..-....", "biographical_information": ["Ingénieur en prévention des risques. Mémoire de Master Prévention des Risques et Nuisances Technologiques industriels spécialité risques professionnels soutenu à la faculté de pharmacie d'Aix-Marseille Université en septembre 2019"]} 1 +2024-09-11 09:05:48.536136 2024-09-11 09:05:48.53614 ee72763e-0a97-4b6b-b547-ae3998bb3799 {"md5": "5ee92bec046e58321c756a989af7cc38", "pid": "238721892", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/238721892", "source": "IDREF"}], "date_of_birth": "1995-11-22", "preferred_name": "Fabie, Marie", "country_associated": "fr", "authorized_access_point": "Fabie, Marie, 1995-....", "biographical_information": ["Auteur d'un mémoire d'orthoptie soutenu à Lyon 1"]} 1 +2024-09-11 09:05:48.589397 2024-09-11 09:05:48.589401 6df3249e-12bd-4198-82f4-411272a521d0 {"md5": "cdaeb9b3bb07a9f421f4114143d33302", "pid": "240085930", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240085930", "source": "IDREF"}], "preferred_name": "Hess, Friedrich", "authorized_access_point": "Hess, Friedrich"} 1 +2024-09-11 09:05:48.641377 2024-09-11 09:05:48.641381 dd289315-50d0-4bd6-99d8-59c69d0cfb30 {"md5": "cd6284ec13776677cbe2d5c477ca8923", "pid": "240100786", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240100786", "source": "IDREF"}], "preferred_name": "International Forum of Educational Technology & Society", "authorized_access_point": "International Forum of Educational Technology & Society"} 1 +2024-09-11 09:05:48.69141 2024-09-11 09:05:48.691415 874a5ca4-1e4a-4fd8-8559-d223f3717c32 {"md5": "4c62523d2367d7694b946183a1c57c4a", "pid": "240195523", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240195523", "source": "IDREF"}], "preferred_name": "Tollier, Marie-Thérèse", "authorized_access_point": "Tollier, Marie-Thérèse"} 1 +2024-09-11 09:05:48.741142 2024-09-11 09:05:48.741146 6831a138-8fa1-4555-861c-8ec08d010043 {"md5": "688204a20d82fcb8f20a6c07f02fb0d9", "pid": "240228448", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240228448", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Filippi, Alexandra", "country_associated": "fr", "authorized_access_point": "Filippi, Alexandra, 19..-...."} 1 +2024-09-11 09:05:48.79845 2024-09-11 09:05:48.798455 aa8b009d-32cf-413d-9d20-bef37e5c00fa {"md5": "8f3b37f43503f84fa4bc5a05b4ddb34c", "pid": "240238117", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240238117", "source": "IDREF"}], "variant_name": ["De Villaine, Hortense"], "preferred_name": "Villaine, Hortense de", "country_associated": "fr", "variant_access_point": ["De Villaine, Hortense"], "authorized_access_point": "Villaine, Hortense de", "biographical_information": ["Doctorante en philosophie (2019). Auteure d'une thèse en Philosophie à Paris Nanterre en 2020"]} 1 +2024-09-11 09:05:48.862513 2024-09-11 09:05:48.862517 1c9f21b3-e6d5-4d27-be58-78269d75a95c {"md5": "38f753884ec06c9eaef9ce5d0e6636b7", "pid": "240280539", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240280539", "source": "IDREF"}], "preferred_name": "Henry, Lorène", "country_associated": "fr", "authorized_access_point": "Henry, Lorène", "biographical_information": ["Etudiante en 2012 à l'Université Paul Valéry Montpellier 3"]} 1 +2024-09-11 09:05:48.913821 2024-09-11 09:05:48.913825 3f11a138-5307-4144-b001-ddc8316d2817 {"md5": "e3a89be3103f266d896b8c045c5b6087", "pid": "240312724", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240312724", "source": "IDREF"}], "date_of_birth": "1990-07-09", "preferred_name": "Quentin, Floriane", "country_associated": "fr", "authorized_access_point": "Quentin, Floriane, 1990-....", "biographical_information": ["Auteur en médecine"]} 1 +2024-09-11 09:05:48.972708 2024-09-11 09:05:48.972713 55f05417-caad-48d9-9af2-d672daa42e02 {"md5": "0dbeb09b164a1ad91ea09af4c94a6d3e", "pid": "240401891", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240401891", "source": "IDREF"}], "date_of_birth": "1992-03-15", "preferred_name": "Caigny, Arno de", "country_associated": "be", "authorized_access_point": "Caigny, Arno de, 1992-....", "biographical_information": ["Titulaire d'un doctorat en Science économique (Université de Lille, 2019)"]} 1 +2024-09-11 09:05:49.031573 2024-09-11 09:05:49.031578 22f9bdfb-ce84-43d4-896c-b92946a3c267 {"md5": "219bd67b9ff809af7d97507a71c82be3", "pid": "240413741", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240413741", "source": "IDREF"}], "preferred_name": "Dorian, Diego", "authorized_access_point": "Dorian, Diego"} 1 +2024-09-11 09:05:49.090079 2024-09-11 09:05:49.090085 41ea8535-f05b-4ab6-8eb5-3b384fa6d01b {"md5": "338d878b08fa2ba42f2b490a59a4d910", "pid": "240416082", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240416082", "source": "IDREF"}], "preferred_name": "Omawari, Keiko", "country_associated": "fr", "authorized_access_point": "Omawari, Keiko", "biographical_information": ["Etudiante en 2012 à l'Université Paul Valéry Montpellier 3"]} 1 +2024-09-11 09:05:49.147743 2024-09-11 09:05:49.147747 68ae2816-2b16-4978-a22c-280d442f930a {"md5": "96ef8c2a338d245f66e3cdeadd199a19", "pid": "240441516", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240441516", "source": "IDREF"}], "variant_name": ["Salau, Mohammed Bashir"], "date_of_birth": "1966-06-02", "preferred_name": "Bashir Salau, Mohammed", "country_associated": "xx", "variant_access_point": ["Salau, Mohammed Bashir"], "authorized_access_point": "Bashir Salau, Mohammed, 1966-....", "biographical_information": ["Maître de conférence en histoire à l'Université de Mississippi (en 2018)"]} 1 +2024-09-11 09:05:49.205406 2024-09-11 09:05:49.205409 e17f80e7-c39b-45e3-9436-ca8643cb2be7 {"md5": "1e05812079c45ba5082a49c00c17efab", "pid": "240465067", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "heb"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240465067", "source": "IDREF"}], "variant_name": ["Brith shalom society (Palestine)", "Peace association (Palestine)"], "preferred_name": "Berit shalom (Palestine)", "date_of_termination": "193.", "variant_access_point": ["Brith shalom society (Palestine)", "Peace association (Palestine)"], "date_of_establishment": "1925", "parallel_access_point": ["Briyt šalwm (Palestine)", "Briyt šalwm (Pilasṭiyn)", "ברית שלום (פלסטין)"], "authorized_access_point": "Berit shalom (Palestine)", "biographical_information": ["Société fondée en 1925 à Jérusalem et dirigée par Arthur Ruppin pour favoriser les relations amicales entre les Juifs et les Arabes en étudiant le conflit judéo-arabe et en essayant de trouver des arrangements juridiques dans leurs relations", "Adresse : Jérusalem"]} 1 +2024-09-11 09:05:49.262226 2024-09-11 09:05:49.26223 0832edca-8433-46f5-9305-a453dea92640 {"md5": "5757365ad9da4615c6662db699aa4bff", "pid": "240522737", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240522737", "source": "IDREF"}], "preferred_name": "Lefèvre, Laëtitia", "country_associated": "fr", "authorized_access_point": "Lefèvre, Laëtitia", "biographical_information": ["Professeure agrégée de SVT"]} 1 +2024-09-11 09:05:49.313663 2024-09-11 09:05:49.313668 226dfc75-fcab-4ea9-92b1-a26bef1dca94 {"md5": "7ac4c0d23addc800da243f7db50203e7", "pid": "240554868", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["srp"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240554868", "source": "IDREF"}], "variant_name": ["Глигоријевић, Милан"], "date_of_birth": "1951", "preferred_name": "Gligorijević, Milan", "variant_access_point": ["Глигоријевић, Милан, 1951-...."], "authorized_access_point": "Gligorijević, Milan, 1951-...."} 1 +2024-09-11 09:05:49.369587 2024-09-11 09:05:49.369591 970a469d-de87-4579-8dba-b41e66e8dba7 {"md5": "52cc751f5d1d840f91415fc73a8eeaa1", "pid": "240646339", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240646339", "source": "IDREF"}], "date_of_birth": "1956", "preferred_name": "Heitz, Claude", "country_associated": "fr", "authorized_access_point": "Heitz, Claude, 1956-....", "biographical_information": ["Né à Strasbourg le 04.09.1956. Historien de l'Alsace et photographe"]} 1 +2024-09-11 09:05:49.424206 2024-09-11 09:05:49.42421 56b84f4e-1557-48c1-8966-b9e3b6b5f461 {"md5": "9b9f7baa6de164bb8c4cd3fbea495fa0", "pid": "240748069", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["nor"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240748069", "source": "IDREF"}], "preferred_name": "Lavold, Bente", "country_associated": "no", "authorized_access_point": "Lavold, Bente", "biographical_information": ["Etudes d'histoire et de philosophie. Travaille à la Nationalbiblioteket Oslo en 2017"]} 1 +2024-09-11 09:05:49.485192 2024-09-11 09:05:49.485197 3f3ba09a-0f9d-4733-9930-ce8fca766b1a {"md5": "07adf4660f4a93b168f36a0f4ff14aa4", "pid": "240816773", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240816773", "source": "IDREF"}], "preferred_name": "Lovec, Marko", "country_associated": "xv", "authorized_access_point": "Lovec, Marko"} 1 +2024-09-11 09:05:49.552863 2024-09-11 09:05:49.552869 ef3fcc71-076d-4ec6-8ece-547e8b796f45 {"md5": "daaafa058289ebaff33b3f71e06d135e", "pid": "240825187", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240825187", "source": "IDREF"}], "preferred_name": "Leboucher, Caroline", "country_associated": "fr", "authorized_access_point": "Leboucher, Caroline", "biographical_information": ["Directrice générale d'Atout France (Agence de Développement Touristique de la France)"]} 1 +2024-09-11 09:05:49.616904 2024-09-11 09:05:49.616907 3d440311-5c4d-40dc-935a-f7855e326fc1 {"md5": "b9a40d555038377031ce83623dc5fcb7", "pid": "240863062", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "professeur d'histoire géographie", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240863062", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Gomès, José, professeur d'histoire géographie", "country_associated": "fr", "authorized_access_point": "Gomès, José, 19..-...., professeur d'histoire géographie", "biographical_information": ["Professeur certifié d'histoire-géographie, certifié DNL (discipline non linguistique) histoire-géographie en espagnol, enseignant en Bachibac (section binationale français / espagnol)"]} 1 +2024-09-11 09:05:49.674052 2024-09-11 09:05:49.674055 3b23380a-67ce-4077-842f-a65440ffdd4c {"md5": "fe5f2166b00f87c2d461090e58015069", "pid": "240922344", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["srp"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240922344", "source": "IDREF"}], "variant_name": ["Вуковић, Валентина"], "date_of_birth": "1975", "preferred_name": "Vuković, Valentina", "variant_access_point": ["Вуковић, Валентина, 1975-...."], "authorized_access_point": "Vuković, Valentina, 1975-....", "biographical_information": ["Historienne de l'art"]} 1 +2024-09-11 09:05:49.781605 2024-09-11 09:05:49.781609 9df8c807-a3da-4067-8d1e-845dde9c4d1d {"md5": "755befedad2ce325b5b54c600bd3ed4f", "pid": "240965280", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger", "chi"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240965280", "source": "IDREF"}], "date_of_birth": "1976", "preferred_name": "Meyer, Florian Kaǧan", "country_associated": "gw", "authorized_access_point": "Meyer, Florian Kaǧan, 1976-....", "biographical_information": ["A étudié la sinologie, les sciences de la communication et le coréen à l'université libre de Berlin (Freie Universität Berlin) et le chinois à l'université de Pékin. Il a enseigné le chinois moderne à l'Université de la Ruhr à Bochum (Ruhr-Universität Bochum, RUB), Allemagne."]} 1 +2024-09-11 09:05:49.839103 2024-09-11 09:05:49.839107 a9cad022-72ab-4b1f-8458-d1e4f7005ce7 {"md5": "61f6ca602a7d21d3ffeba67ae4684d49", "pid": "240984374", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut", "eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240984374", "source": "IDREF"}], "preferred_name": "Moran, Sarah Joan", "country_associated": "ne", "authorized_access_point": "Moran, Sarah Joan", "biographical_information": ["Professeur d'histoire de l'art"]} 1 +2024-09-11 09:05:49.895474 2024-09-11 09:05:49.895478 c3d9d7a6-15ce-4b4d-a0d8-c321c975fb84 {"md5": "7d49a2974c5ed24317c242ec65c88d00", "pid": "240987195", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger", "gre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/240987195", "source": "IDREF"}], "variant_name": ["Καλιφατίδης, Γιάννης"], "date_of_birth": "19XX", "preferred_name": "Kalifatidis, Giannis", "country_associated": "gr", "variant_access_point": ["Καλιφατίδης, Γιάννης, 19..-...."], "authorized_access_point": "Kalifatidis, Giannis, 19..-....", "biographical_information": ["Traducteur"]} 1 +2024-09-11 09:05:49.957337 2024-09-11 09:05:49.957341 8cdbb784-65e1-46e1-ae2d-135d9793cc3c {"md5": "fa159b5a171214df1807b8b2129829e9", "pid": "241130921", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/241130921", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Martin, Chris William", "country_associated": "xxc", "authorized_access_point": "Martin, Chris William, 19..-....", "biographical_information": ["Professeur de sciences sociales à l'Algonquin College, Canada (2019)"]} 1 +2024-09-11 09:05:50.011742 2024-09-11 09:05:50.011744 c83ac2ed-3f5d-41a7-9837-36357c1a3350 {"md5": "a58c1265ed2221ec736c6768a7209092", "pid": "241164168", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/241164168", "source": "IDREF"}], "date_of_birth": "1982-06-26", "preferred_name": "Foroughi Nik, Rahim", "country_associated": "ir", "authorized_access_point": "Foroughi Nik, Rahim, 1982-....", "biographical_information": ["Auteur d'une thèse en Droit privé à Nantes en 2019"]} 1 +2024-09-11 09:05:50.07116 2024-09-11 09:05:50.071163 e342e9ad-e669-4d68-8000-906d0fce7fc9 {"md5": "b019fc8510d86fc702646412309f5113", "pid": "241297230", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/241297230", "source": "IDREF"}], "date_of_birth": "1988-12-06", "preferred_name": "Bourgeois, Laurent", "country_associated": "fr", "authorized_access_point": "Bourgeois, Laurent, 1988-....", "biographical_information": ["Danseur de hip-hop et acteur français"]} 1 +2024-09-11 09:05:50.124551 2024-09-11 09:05:50.124555 31b1661a-c8d0-4aaf-bca7-e577767b7636 {"md5": "81c646bd4bdfb0bc7e989946de0d9637", "pid": "241375908", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/241375908", "source": "IDREF"}], "variant_name": ["Medina, Silvina Álvarez"], "preferred_name": "Álvarez Medina, Silvina", "country_associated": "sp", "variant_access_point": ["Medina, Silvina Álvarez"], "authorized_access_point": "Álvarez Medina, Silvina", "biographical_information": ["Juriste."]} 1 +2024-09-11 09:05:50.189735 2024-09-11 09:05:50.189739 0e2dac58-1925-4ba5-bf52-464d8990f30b {"md5": "5c3ae5dcfc6d356742691103b8feea4e", "pid": "241428017", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/241428017", "source": "IDREF"}], "preferred_name": "Dejouy, Marie", "country_associated": "fr", "authorized_access_point": "Dejouy, Marie", "biographical_information": ["Auteur d'un master 1 Métiers de l'enseignement, de l'éducation et de la formation (MEEF), 1er degré. Professeur des écoles, à l'Université de Franche-Comté, en 2018"]} 1 +2024-09-11 09:05:50.25589 2024-09-11 09:05:50.255896 97a04a08-c9f8-45ee-8829-d7e63a57a1c0 {"md5": "9622609155d48fde5ff8d027ad60bb5c", "pid": "241442567", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/241442567", "source": "IDREF"}], "variant_name": ["Silva, Antônio Álvares da"], "preferred_name": "Álvares da Silva, Antônio", "country_associated": "bl", "variant_access_point": ["Silva, Antônio Álvares da"], "authorized_access_point": "Álvares da Silva, Antônio", "biographical_information": ["Juriste"]} 1 +2024-09-11 09:05:50.313831 2024-09-11 09:05:50.313835 d5aa5981-8abd-4264-a62e-aed43dfc0e09 {"md5": "17fc0199295ad5496d2c930940faa5f3", "pid": "241463548", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/241463548", "source": "IDREF"}], "preferred_name": "Hughes, Gordon", "country_associated": "xxk", "authorized_access_point": "Hughes, Gordon", "biographical_information": ["Juriste. Chaire de criminologie à l'Université de Cardiff (en 2018)"]} 1 +2024-09-11 09:05:50.367406 2024-09-11 09:05:50.367411 34f289aa-aa3e-4a3c-bc10-c3ea6bde7913 {"md5": "e9d2effab8db1f45b0546f84129c5741", "pid": "241506662", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/241506662", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Apikian, Cédric", "country_associated": "fr", "authorized_access_point": "Apikian, Cédric, 19..-....", "biographical_information": ["Scénariste de bandes dessinées"]} 1 +2024-09-11 09:05:50.426935 2024-09-11 09:05:50.42694 0445eec1-3c83-4c5f-9e60-48372c9c61f4 {"md5": "633f03dcd7713110691a636960ee2803", "pid": "241515033", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/241515033", "source": "IDREF"}], "preferred_name": "Guilloux, Sylvie", "country_associated": "fr", "authorized_access_point": "Guilloux, Sylvie", "biographical_information": ["Titulaire d'une thèse d'exercice en Chirurgie dentaire (Rennes : 1981)"]} 1 +2024-09-11 09:05:50.490797 2024-09-11 09:05:50.490801 3dff383c-b876-4313-9a73-757e8fbc95a4 {"md5": "d2a31585f43b1f366c4fd3f887b404fc", "pid": "241527104", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/241527104", "source": "IDREF"}], "preferred_name": "Cordier, Pauline", "country_associated": "fr", "authorized_access_point": "Cordier, Pauline", "biographical_information": ["Docteur en pharmacie. Thèse soutenue à Strasbourg le 15 novembre 2019"]} 1 +2024-09-11 09:05:50.548135 2024-09-11 09:05:50.548138 c08adbab-76ca-4c1f-bcc7-7c6fc05f30ed {"md5": "e16b9952be2a685bd990e76fc8011f40", "pid": "241542162", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/241542162", "source": "IDREF"}], "preferred_name": "Lie superalgebras", "country_associated": "it", "date_of_termination": "2012-12-19", "date_of_establishment": "2012-12-14", "authorized_access_point": "Lie superalgebras (2012 ; Rome)"} 1 +2024-09-11 09:05:50.601681 2024-09-11 09:05:50.601684 6c274a1d-eb1d-45d1-94bc-779e61661076 {"md5": "ae6cb09128b197c40a6d3e52bd08a4e2", "pid": "241568137", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/241568137", "source": "IDREF"}], "date_of_birth": "1991-03-11", "preferred_name": "Tierny, Alix", "country_associated": "fr", "authorized_access_point": "Tierny, Alix, 1991-...."} 1 +2024-09-11 09:05:50.660692 2024-09-11 09:05:50.660696 584ed325-8f90-4352-90eb-0efb995eb802 {"md5": "63323ee4830700cd67f4c165d6815957", "pid": "24157899X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/24157899X", "source": "IDREF"}], "preferred_name": "Metzger, Othmar", "country_associated": "gw", "authorized_access_point": "Metzger, Othmar", "biographical_information": ["Historien de l'art"]} 1 +2024-09-11 09:05:50.726364 2024-09-11 09:05:50.726369 2b341900-511c-4f1c-a801-4491e16a1790 {"md5": "000b1b7a5f3484f1057d16134d82c4bc", "pid": "241716853", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/241716853", "source": "IDREF"}], "date_of_birth": "1993-04-28", "preferred_name": "Bonnefoy, Astrid", "country_associated": "fr", "authorized_access_point": "Bonnefoy, Astrid, 1993-....", "biographical_information": ["Titulaire d'une thèse d'exercice de pharmacie soutenue à Caen le 17 juin 2019"]} 1 +2024-09-11 09:05:50.785331 2024-09-11 09:05:50.785334 dd25cbdd-d093-4db5-a4e2-119390539078 {"md5": "dd557ab15123e2bccd05b063dbb15d9b", "pid": "24172726X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/24172726X", "source": "IDREF"}], "date_of_birth": "18XX", "date_of_death": "19..", "preferred_name": "Guillochon, R.", "country_associated": "fr", "authorized_access_point": "Guillochon, R., 18..-....", "biographical_information": ["Ingénieur agronome, inspecteur adjoint à la caisse nationale de crédit agricole"]} 1 +2024-09-11 09:05:50.850308 2024-09-11 09:05:50.850313 e8b81167-4293-4c5e-800b-edefcdfb617b {"md5": "505cf93e765cb04a61eabef3be67311b", "pid": "241765528", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/241765528", "source": "IDREF"}], "preferred_name": "Unanue, Ander", "country_associated": "fr", "authorized_access_point": "Unanue, Ander", "biographical_information": ["Docteur ès sciences physiques de l'université de Bordeaux en 1965"]} 1 +2024-09-11 09:05:50.901891 2024-09-11 09:05:50.901894 49213a1b-758c-4071-88b6-147dca3eb57c {"md5": "2b435a18e909dbca73612568e542917f", "pid": "241771188", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/241771188", "source": "IDREF"}], "preferred_name": "Esfahani, Reza", "country_associated": "fr", "authorized_access_point": "Esfahani, Reza", "biographical_information": ["Docteur ès sciences de l'université de Bordeaux en 1966"]} 1 +2024-09-11 09:05:50.956189 2024-09-11 09:05:50.956194 7f32ee5b-26a4-4063-9232-514ff03685d1 {"md5": "887605ad95dc4120b0219493a19439fb", "pid": "24185055X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/24185055X", "source": "IDREF"}], "date_of_birth": "1989-08-19", "preferred_name": "Gay, Marie", "country_associated": "fr", "authorized_access_point": "Gay, Marie, 1989-....", "biographical_information": ["Docteur en médecine (en 2019)"]} 1 +2024-09-11 09:05:51.009162 2024-09-11 09:05:51.009165 421e7bdf-ac95-4662-8b0b-8d36c400366a {"md5": "ffeebb67c33c8f002ca2ce96f7530aae", "pid": "241923018", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/241923018", "source": "IDREF"}], "preferred_name": "El-Khoury, Ghazi Boulos", "authorized_access_point": "El-Khoury, Ghazi Boulos"} 1 +2024-09-11 09:05:51.06142 2024-09-11 09:05:51.061424 07bf0065-0ed6-4462-b100-e9b06dc1be39 {"md5": "fa2ab905188ead9df005ab4f53631899", "pid": "241957176", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/241957176", "source": "IDREF"}], "variant_name": ["植村, 玉枝子"], "preferred_name": "Uemura, Gyokushishi", "country_associated": "ja", "variant_access_point": ["植村, 玉枝子"], "authorized_access_point": "Uemura, Gyokushishi", "biographical_information": ["Transcription Hepburn modifié", "Actif à la fin de la période Edo et au début de l'ère Meiji"]} 1 +2024-09-11 09:05:51.114626 2024-09-11 09:05:51.114629 7be19ced-1425-497b-a6a8-8ebec8753132 {"md5": "9d702dc48a0a201b73d57fc00a1369d2", "pid": "242007481", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/242007481", "source": "IDREF"}], "preferred_name": "Lindblad, Waldemar", "country_associated": "fi", "authorized_access_point": "Lindblad, Waldemar"} 1 +2024-09-11 09:05:51.174482 2024-09-11 09:05:51.174486 95a4ecde-66fb-4c84-94b8-bd82008f7828 {"md5": "0a5271c12b48e840b3359f39b3c78531", "pid": "242143814", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/242143814", "source": "IDREF"}], "preferred_name": "Murphy, James P.", "authorized_access_point": "Murphy, James P."} 1 +2024-09-11 09:05:51.238857 2024-09-11 09:05:51.23886 bb18ff0b-7d1c-45f0-8503-f9211bfd1c22 {"md5": "840059759559e5d8b0d9afecce087d9d", "pid": "242274455", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/242274455", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Baltzer, Théo", "country_associated": "fr", "authorized_access_point": "Baltzer, Théo, 19..-....", "biographical_information": ["Auteur d’un mémoire de Master de Contrôle de Gestion, soutenu à l'Université de Strasbourg en 2019"]} 1 +2024-09-11 09:05:51.303717 2024-09-11 09:05:51.303721 c514c046-38fb-4e8c-9ccf-d7b82ce027d3 {"md5": "7de0aa5e07550327fa822d8172a63eaf", "pid": "242293557", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/242293557", "source": "IDREF"}], "preferred_name": "Goepogui, Serge Moriba", "country_associated": "fr", "authorized_access_point": "Goepogui, Serge Moriba", "biographical_information": ["Titulaire d'un master 1 Sciences du langage, spécialité Analyse du discours, à Besançon, Université de Franche-Comté, en 2019"]} 1 +2024-09-11 09:05:51.35954 2024-09-11 09:05:51.359545 0a7c7fee-e0ca-4dfa-ae09-0fd7e3b412a1 {"md5": "97cc5de01d772fdf9c11d06a02399254", "pid": "242323375", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/242323375", "source": "IDREF"}], "variant_name": ["Aquascop biologie", "Aquascop pôle technologique"], "preferred_name": "Aquascop", "country_associated": "fr", "variant_access_point": ["Aquascop biologie", "Aquascop pôle technologique"], "authorized_access_point": "Aquascop"} 1 +2024-09-11 09:05:51.412325 2024-09-11 09:05:51.41233 b4e5e4a7-2bab-49bb-81b6-446f337b1343 {"md5": "fa9b045489db4a9770ec90645a1a3f43", "pid": "242335608", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/242335608", "source": "IDREF"}], "preferred_name": "Birmingham city university (Angleterre)", "country_associated": "xxk", "authorized_access_point": "Birmingham city university (Angleterre)"} 1 +2024-09-11 09:05:51.471512 2024-09-11 09:05:51.471515 ea473e2b-10ea-4708-8389-cd595e44a9b1 {"md5": "c5b6e3d0d63668a2fa00c8a8d8361d28", "pid": "242414826", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/242414826", "source": "IDREF"}], "date_of_birth": "1985", "preferred_name": "Tracqui, Hitivai", "country_associated": "fp", "authorized_access_point": "Tracqui, Hitivai", "biographical_information": ["auteure"]} 1 +2024-09-11 09:05:51.524262 2024-09-11 09:05:51.524267 7b3b74c7-04f3-44fe-a2a8-3aabeeb7d78a {"md5": "9486b5f8fc89666a59ac5d7dc7967036", "pid": "242426832", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/242426832", "source": "IDREF"}], "preferred_name": "Etchart, Pierre", "country_associated": "fr", "authorized_access_point": "Etchart, Pierre", "biographical_information": ["Est psychologue et psychanalyste équipe AES et formateur sur les maltraitances sexuelles."]} 1 +2024-09-11 09:05:51.576992 2024-09-11 09:05:51.576995 b789af76-67fa-4521-a708-2e31bdc98658 {"md5": "8eff6e707679f0ba2c4f32c37b7b0dc7", "pid": "242433995", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/242433995", "source": "IDREF"}], "preferred_name": "Bernstein, Georges", "country_associated": "fr", "authorized_access_point": "Bernstein, Georges", "biographical_information": ["Docteur en médecine. Thèse d'exercice soutenue à la faculté de médecine de l'Université d'Aix-Marseille 2 en 1973"]} 1 +2024-09-11 09:05:51.635287 2024-09-11 09:05:51.635291 ca874e52-cae8-4872-9df7-79e2cbd8211f {"md5": "87a1f26ffa254baf97e4537e6553eafd", "pid": "242448771", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/242448771", "source": "IDREF"}], "preferred_name": "Surfacedesign", "country_associated": "xxu", "authorized_access_point": "Surfacedesign", "biographical_information": ["Agence d'architecture du paysage"]} 1 +2024-09-11 09:05:51.691462 2024-09-11 09:05:51.691467 1c95300d-b1bf-4686-8e5b-8d9de89cbe4f {"md5": "bae9291a9b6e948f1f6dd16425a7f67f", "pid": "242451098", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/242451098", "source": "IDREF"}], "preferred_name": "Mossé, Marie", "country_associated": "fr", "authorized_access_point": "Mossé, Marie", "biographical_information": ["Doctorante en littératures comparées à l'université de Lorraine et à l'université du Québec à Montréal"]} 1 +2024-09-11 09:05:51.743235 2024-09-11 09:05:51.743239 e44fc8fb-ef3c-489c-94cf-f3a014f84efd {"md5": "5d337ae88d0cb91d4a2b6e7ef18d42e2", "pid": "24245383X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/24245383X", "source": "IDREF"}], "date_of_birth": "1989-08-28", "preferred_name": "Belmaati cherkaoui, Mehdi", "country_associated": "fr", "authorized_access_point": "Belmaati cherkaoui, Mehdi, 1989-....", "biographical_information": ["Auteur d'une thèse en Sciences de la vie et de la santé à Université Paris-Saclay (ComUE) en 2019"]} 1 +2024-09-11 09:05:51.802694 2024-09-11 09:05:51.802696 33a87f4f-76d9-4f0c-be41-465e44d1d6d4 {"md5": "75574d34ac43bee5ff858530e108aca6", "pid": "242518664", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/242518664", "source": "IDREF"}], "date_of_birth": "969", "preferred_name": "Artun, Ömer", "authorized_access_point": "Artun, Ömer, 969-", "biographical_information": ["Fondateur de AgilOne."]} 1 +2024-09-11 09:05:51.865846 2024-09-11 09:05:51.865852 517c25b9-b610-4462-afcb-4b1e5053de51 {"md5": "66ae995bceda649f3ddbd905868c8b44", "pid": "242542948", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/242542948", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Macalou, Mamadou", "country_associated": "ml", "authorized_access_point": "Macalou, Mamadou, 19..-....", "biographical_information": ["Directeur de Pyramide business consulting, société de conseil (en 2019)"]} 1 +2024-09-11 09:05:51.917611 2024-09-11 09:05:51.917615 b49fa02f-a842-4ced-ae71-e18aa421be78 {"md5": "4ed2fb7e750b3d6525af8eb43d05d8c2", "pid": "242557139", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "auteur d'une thèse en informatique", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/242557139", "source": "IDREF"}], "date_of_birth": "1991-07-20", "preferred_name": "Duval, Sébastien, auteur d'une thèse en informatique", "country_associated": "fr", "authorized_access_point": "Duval, Sébastien, 1991-...., auteur d'une thèse en informatique", "biographical_information": ["Auteur d'une thèse en Informatique soutenue à Sorbonne université, Paris, en 2018"]} 1 +2024-09-11 09:05:51.970151 2024-09-11 09:05:51.970156 a8ea85a0-1f4f-402a-af7c-2436fb2f9080 {"md5": "cde508a2e1cf4a74fbcefc82dacfd678", "pid": "242723470", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/242723470", "source": "IDREF"}], "preferred_name": "Menal, Esther", "country_associated": "fr", "authorized_access_point": "Menal, Esther"} 1 +2024-09-11 09:05:52.02712 2024-09-11 09:05:52.027125 3c61cf93-a655-40f7-bfab-f62ad4069505 {"md5": "df04922d487e73681173927b5e4f753f", "pid": "242740065", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/242740065", "source": "IDREF"}], "preferred_name": "Simon, Blaise", "country_associated": "fr", "authorized_access_point": "Simon, Blaise", "biographical_information": ["Illustrateur de livres pour enfants"]} 1 +2024-09-11 09:05:52.080262 2024-09-11 09:05:52.080267 f85ac026-6f39-47c6-9620-755a9e149f44 {"md5": "013f7b37bc72afa912649e6aabe7164a", "pid": "242756220", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/242756220", "source": "IDREF"}], "preferred_name": "Saddy, Claire", "authorized_access_point": "Saddy, Claire", "biographical_information": ["Formatrice à l'ENA, au CNFPT et à l'INSET, elle accompagne les collectivités territoriales, ministères et groupes privés. Elle est maire adjointe du 7è arrondissement de Lyon, en charge de l'entrepreneuriat et de l'économie. En 2017, elle a reçu la médaille du Mérite pour ses engagements associatifs"]} 1 +2024-09-11 09:05:52.133392 2024-09-11 09:05:52.133395 4b728b1e-7f83-45a2-970c-e9e25c052ab5 {"md5": "f19104fb8cbf8c4d1daa0bcfcd4b5501", "pid": "242866441", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ara"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/242866441", "source": "IDREF"}], "date_of_birth": "1985-06-24", "preferred_name": "Ghoudi, Hamza", "country_associated": "ti", "authorized_access_point": "Ghoudi, Hamza, 1985-....", "biographical_information": ["Docteur en Sciences, spécialité Mathématiques (Toulon/Sfax, Laboratoire CPT, 2019)"]} 1 +2024-09-11 09:05:52.184737 2024-09-11 09:05:52.184741 f05c639f-72d9-487a-8a79-e74d4ca869cc {"md5": "93fe450739e74b1e00837ea52c6a863a", "pid": "242927351", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["pol"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/242927351", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Sperka, Jerzy", "country_associated": "pl", "authorized_access_point": "Sperka, Jerzy, 19..-....", "biographical_information": ["Historien"]} 1 +2024-09-11 09:05:52.258453 2024-09-11 09:05:52.258459 3e67c2c2-76d8-406f-9662-8da85325e364 {"md5": "88a46efa998f73f4a2983fc74b6397a1", "pid": "243004028", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243004028", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Benarroch, Elie", "country_associated": "fr", "authorized_access_point": "Benarroch, Elie, 19..-....", "biographical_information": ["Auteur d'un mémoire de 3ème cycle. : Histoire : Université Provence : 1984"]} 1 +2024-09-11 09:05:52.320114 2024-09-11 09:05:52.32012 28268848-99eb-4690-b3ae-891945a734fe {"md5": "50314dd79abba80920639ebdb195bf4c", "pid": "243016271", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243016271", "source": "IDREF"}], "preferred_name": "Bejarano Beltran, Carmen Ofelia", "country_associated": "fr", "authorized_access_point": "Bejarano Beltran, Carmen Ofelia", "biographical_information": ["auteur d'une thèse d'état en psychologie de l’université de Bordeaux en 1967"]} 1 +2024-09-11 09:05:52.373223 2024-09-11 09:05:52.373227 7d558a23-11f3-49fe-8c93-e1ca5aff0b3e {"md5": "bc95e29622924102d2fff41fbfb536a5", "pid": "243031599", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243031599", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Laio, Alessandro", "country_associated": "it", "authorized_access_point": "Laio, Alessandro, 19..-....", "biographical_information": ["Professeur de Physique Biologique et Statistique à l'International School for Advanced Studies (SISSA), Italie, en 2018", "Rapporteur d'une thèse en Informatique soutenue à Sorbonne université en 2018"]} 1 +2024-09-11 09:05:52.426685 2024-09-11 09:05:52.42669 0779c9ca-e52f-44c8-ba0d-f595ceae7559 {"md5": "202f1216fb787c02e819ea6b6d440645", "pid": "243035411", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243035411", "source": "IDREF"}], "preferred_name": "Bridoux, Maxime", "country_associated": "fr", "authorized_access_point": "Bridoux, Maxime", "biographical_information": ["Ingénieur-chercheur au CEA (Commissariat à l'énergie atomique et aux énergies alternatives) en 2018", "Membre du jury d'une thèse de Chimie soutenue à Sorbonne université en 2018"]} 1 +2024-09-11 09:05:52.480418 2024-09-11 09:05:52.480422 eb33f8ac-6fdf-4c2d-8ab2-18b6dba6d766 {"md5": "ad02ba5b0aeb717cfefa8f59a7b79d35", "pid": "243035632", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243035632", "source": "IDREF"}], "preferred_name": "Moulin, M. A.", "country_associated": "fr", "authorized_access_point": "Moulin, M. A."} 1 +2024-09-11 09:05:52.538103 2024-09-11 09:05:52.538107 5d2a4669-7785-4f8e-b24a-eaece1432db5 {"md5": "315999451ede8a23bcfcadbee1d29651", "pid": "243036620", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "neurochirurgien", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243036620", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Martin, Didier, neurochirurgien", "country_associated": "be", "authorized_access_point": "Martin, Didier, 19..-...., neurochirurgien", "biographical_information": ["Président du jury d'une thèse en Sciences de la vie et de la santé"]} 1 +2024-09-11 09:05:52.594543 2024-09-11 09:05:52.594547 116d3e92-48fe-40b8-9ad5-464ad1c7bdae {"md5": "f3b6aaa451a22a1d2d6a232a3abc7447", "pid": "243043619", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243043619", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Maeder, Marc", "country_associated": "fr", "authorized_access_point": "Maeder, Marc, 19XX -….", "biographical_information": ["Auteur d’un mémoire de Master de Conseiller Clientèle de Professionnels, soutenu à l'Université de Strasbourg en 2015"]} 1 +2024-09-11 09:05:52.648671 2024-09-11 09:05:52.648675 7ab38420-9600-42d5-ba2c-33f6f098951d {"md5": "78b43ac85abe673b8cfe0343be08fa99", "pid": "243137400", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243137400", "source": "IDREF"}], "preferred_name": "Aronson, Robert H.", "authorized_access_point": "Aronson, Robert H."} 1 +2024-09-11 09:06:03.973445 2024-09-11 09:06:03.973448 0f0c67b2-e2cf-4aa3-ae1f-4fb21a97b0e9 {"md5": "f3632cf97cf738c4402e89d6c340d6f2", "pid": "253765005", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/253765005", "source": "IDREF"}], "preferred_name": "Perdu, Pierre", "country_associated": "fr", "authorized_access_point": "Perdu, Pierre"} 1 +2024-09-11 09:05:52.707294 2024-09-11 09:05:52.707297 8cc5bd7e-c05f-49ae-8ed5-23612cff9d5f {"md5": "27643c23a1567eae679190ca4974975a", "pid": "243138016", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243138016", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Gerwig, Sébastien", "country_associated": "fr", "authorized_access_point": "Gerwig, Sébastien, 19XX -….", "biographical_information": ["Auteur d’un mémoire de Master de Comptabilité Contrôle Audit, soutenu à l'Université de Strasbourg en 2015"]} 1 +2024-09-11 09:05:52.762219 2024-09-11 09:05:52.762223 1b3e7164-9650-463c-b1a6-b50eb215f117 {"md5": "3857b5da8fb1a987ff214e30645d9856", "pid": "243154666", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243154666", "source": "IDREF"}], "date_of_birth": "1985-06-04", "preferred_name": "Atiezo, Megbeme Komla", "country_associated": "tg", "authorized_access_point": "Atiezo, Megbeme Komla, 1985-....", "biographical_information": ["Auteur d'une thèse en Mécanique des matériaux à l'Université de Lorraine en 2019"]} 1 +2024-09-11 09:05:52.812614 2024-09-11 09:05:52.812619 3561ee04-6832-475b-90f7-1e7716179369 {"md5": "b3cafc9ac6c4f13735f1d7267e76804d", "pid": "243208294", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243208294", "source": "IDREF"}], "preferred_name": "Salcedo, Elisa", "authorized_access_point": "Salcedo, Elisa"} 1 +2024-09-11 09:05:52.864634 2024-09-11 09:05:52.86464 c9ee56d1-4bec-472f-a70d-4ad7618f4472 {"md5": "6ec990c564d2671e83aaa96306bfac17", "pid": "243209983", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243209983", "source": "IDREF"}], "variant_name": ["Gustave, Guilhem Jacques-"], "date_of_birth": "1989-03-20", "preferred_name": "Jacques-Gustave, Guilhem", "country_associated": "fr", "variant_access_point": ["Gustave, Guilhem Jacques-"], "authorized_access_point": "Jacques-Gustave, Guilhem, 1989-...", "biographical_information": ["Auteur d'une thèse d'exercice en Pharmacie soutenue le 22 Novembre 2019"]} 1 +2024-09-11 09:05:52.919027 2024-09-11 09:05:52.91903 833b3691-0786-45a1-85c3-cd048e2597d0 {"md5": "b450221d73ece10662bb24155f3f2721", "pid": "243266413", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243266413", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Bou-Nouh, J. M.", "country_associated": "xx", "authorized_access_point": "Bou-Nouh, J. M., 19..-....", "biographical_information": ["Auteur"]} 1 +2024-09-11 09:05:52.982928 2024-09-11 09:05:52.982932 11f78a9f-17a4-459f-9f61-da8a1b76b333 {"md5": "d970496ce8e909bfa0de5d41f49d866b", "pid": "243279795", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "swe"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243279795", "source": "IDREF"}], "variant_name": ["Axelsson, V."], "date_of_birth": "1924", "preferred_name": "Axelsson, Valte", "country_associated": "xx", "variant_access_point": ["Axelsson, V."], "authorized_access_point": "Axelsson, Valte, 1924-...."} 1 +2024-09-11 09:05:53.040345 2024-09-11 09:05:53.040349 2f80416f-2bb3-43d6-8ea0-dea32d68c0d8 {"md5": "61970fd826b624a69107027f0a4cedf5", "pid": "243300131", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243300131", "source": "IDREF"}], "preferred_name": "Voyle, Christine", "country_associated": "fr", "authorized_access_point": "Voyle, Christine", "biographical_information": ["Titulaire d'une thèse en Médecine (Lyon 1, 1983)"]} 1 +2024-09-11 09:05:53.101565 2024-09-11 09:05:53.101568 061556e7-6762-42c4-8d94-808f9af7a4a0 {"md5": "4df7bc14766343974b705bb8ebb2a0c6", "pid": "243306032", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243306032", "source": "IDREF"}], "preferred_name": "Aubert, Hervey", "country_associated": "fr", "authorized_access_point": "Aubert, Hervey", "biographical_information": ["Docteur en médecine. Thèse d'exercice soutenue à la faculté de médecine de l'Université d'Aix-Marseille 2 en 1982"]} 1 +2024-09-11 09:05:53.155016 2024-09-11 09:05:53.15502 67ee256d-a8d2-4288-ae39-bf4abc5e4b26 {"md5": "cabb7516a7bc4bf730f587bc578a7cd1", "pid": "243308442", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243308442", "source": "IDREF"}], "preferred_name": "Lestage, Colette", "country_associated": "fr", "authorized_access_point": "Lestage, Colette", "biographical_information": ["auteur d'un mémoire de maîtrise‎ en ethnologie‎ de l'université de Bordeaux 2‎ en 1998"]} 1 +2024-09-11 09:05:53.206175 2024-09-11 09:05:53.206178 ea947a4b-0358-4b64-908d-e10ca6dc76a1 {"md5": "9fd71b2b0bcc9da7991820e8ae7c6db4", "pid": "243327463", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243327463", "source": "IDREF"}], "variant_name": ["Regnard, Joannes"], "date_of_birth": "16XX", "date_of_death": "16XX", "preferred_name": "Regnard, Jean", "country_associated": "fr", "variant_access_point": ["Regnard, Joannes"], "authorized_access_point": "Regnard, Jean, 16..-16..", "biographical_information": ["Auteur"]} 1 +2024-09-11 09:05:53.262837 2024-09-11 09:05:53.262841 f3181d46-82f9-45de-b549-16c5603e521a {"md5": "ea2511aef0c6524ef874d8627604638c", "pid": "243330715", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243330715", "source": "IDREF"}], "preferred_name": "Odelin, Patrick", "country_associated": "fr", "authorized_access_point": "Odelin, Patrick", "biographical_information": ["Titulaire d'une thèse en Médecine (Lyon 1, 1983)"]} 1 +2024-09-11 09:05:53.31411 2024-09-11 09:05:53.314114 319f5389-6b11-4c85-824a-f6cb20694b6e {"md5": "7ee250fd6932bd57b96cb38ab907632a", "pid": "243363796", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243363796", "source": "IDREF"}], "preferred_name": "Cianea, Guy", "country_associated": "fr", "authorized_access_point": "Cianea, Guy", "biographical_information": ["Docteur en médecine. Thèse d'exercice soutenue à la faculté de médecine de l'Université d'Aix-Marseille 2 en 1975"]} 1 +2024-09-11 09:05:53.367235 2024-09-11 09:05:53.36724 4c17d6fd-0277-4a21-b0f7-ede0c8687639 {"md5": "cc80a0098c27364483279c988f43e881", "pid": "243370261", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["pol"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243370261", "source": "IDREF"}], "preferred_name": "Martyniuk-Pęczek, Justyny", "authorized_access_point": "Martyniuk-Pęczek, Justyny"} 1 +2024-09-11 09:05:53.421547 2024-09-11 09:05:53.421552 71d10fd6-a012-4be7-be8c-8c908153a443 {"md5": "505d7eed8f6f1d05617afa025e4f3c21", "pid": "243382731", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243382731", "source": "IDREF"}], "preferred_name": "Koché (Paris)", "country_associated": "fr", "authorized_access_point": "Koché (Paris)"} 1 +2024-09-11 09:05:53.47569 2024-09-11 09:05:53.475695 4163a828-56f9-406c-b29d-15db9978ce6c {"md5": "4a5943ee997374cbe32df7b2a17cf2f4", "pid": "243407998", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243407998", "source": "IDREF"}], "date_of_birth": "1989-05-26", "preferred_name": "Bouty, Marion", "country_associated": "fr", "authorized_access_point": "Bouty, Marion, 1989-..."} 1 +2024-09-11 09:05:53.532704 2024-09-11 09:05:53.532706 98f6be2a-466c-4ca0-9acc-095f51203143 {"md5": "2a916428645fd06773248403d519e45f", "pid": "243428421", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243428421", "source": "IDREF"}], "preferred_name": "Cintrão, Rosângela", "authorized_access_point": "Cintrão, Rosângela"} 1 +2024-09-11 09:05:53.590278 2024-09-11 09:05:53.590282 7fd15be5-5c76-4c9c-bab4-9ee6a7ecd0d8 {"md5": "05796ad339bc5cf2247437c36f395804", "pid": "243433913", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243433913", "source": "IDREF"}], "preferred_name": "Formigaro, Fulvia", "authorized_access_point": "Formigaro, Fulvia"} 1 +2024-09-11 09:05:53.652394 2024-09-11 09:05:53.6524 1b29c41e-e260-43b3-9d9d-7ce079ff67c2 {"md5": "ed9a09225d28def5fb8e593323e4ea44", "pid": "243488785", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243488785", "source": "IDREF"}], "date_of_birth": "17XX", "date_of_death": "18XX", "preferred_name": "Ségur, Octave", "authorized_access_point": "Ségur, Octave, 17..-....", "biographical_information": ["Ex-Elève de Polytechnique en 1803"]} 1 +2024-09-11 09:05:53.705459 2024-09-11 09:05:53.705463 9a63ffe4-0865-4c1a-ada0-edd2df42be92 {"md5": "41c1f5e51205bafe1476e8be05a9522d", "pid": "24348951X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/24348951X", "source": "IDREF"}], "date_of_birth": "1985-03-16", "preferred_name": "Laborde, Julio", "country_associated": "fr", "authorized_access_point": "Laborde, Julio, 1985-....", "biographical_information": ["Auteur d'une thèse en Informatique, statistiques et cognition à Paris Sciences et Lettres en 2019"]} 1 +2024-09-11 09:05:53.758867 2024-09-11 09:05:53.758871 6160e689-3075-4436-8ede-f1a7bde921ec {"md5": "56d4646edc49299e2d7ff27b1cab3cb8", "pid": "243512155", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243512155", "source": "IDREF"}], "preferred_name": "Sellem, Denis", "authorized_access_point": "Sellem, Denis"} 1 +2024-09-11 09:05:53.814335 2024-09-11 09:05:53.81434 b4d154ea-d3d5-4169-bddf-92c06ba47991 {"md5": "367b8a54cc9ae4a6a8c2cfcfd7e313b0", "pid": "243530080", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243530080", "source": "IDREF"}], "preferred_name": "Mehault, Olivier", "authorized_access_point": "Mehault, Olivier"} 1 +2024-09-11 09:05:53.873223 2024-09-11 09:05:53.873227 9bae6c65-559e-4a1b-85a5-cb81d7a55f8e {"md5": "af9c0a158880953b96220490c9773851", "pid": "243540434", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243540434", "source": "IDREF"}], "preferred_name": "Kanie, Akira", "authorized_access_point": "Kanie, Akira"} 1 +2024-09-11 09:05:53.928452 2024-09-11 09:05:53.928456 d5864d2e-2b5e-41d6-bbe4-6eea698f6bff {"md5": "cb41ae2fcb36513d11fc282884a884e2", "pid": "243554001", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243554001", "source": "IDREF"}], "preferred_name": "Escoda I Murria, Coia", "authorized_access_point": "Escoda I Murria, Coia"} 1 +2024-09-11 09:05:53.993679 2024-09-11 09:05:53.993682 ad1da47f-6e59-41c5-b2f4-ab612e4cdffb {"md5": "d4ac5905e03487e49926d30e04b6b9a4", "pid": "24355933X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/24355933X", "source": "IDREF"}], "preferred_name": "Deflorenne, Caroline", "authorized_access_point": "Deflorenne, Caroline"} 1 +2024-09-11 09:05:54.048612 2024-09-11 09:05:54.048617 6e1b2d3e-b240-4940-9212-bc6144c67224 {"md5": "a102be6fae4a7f43d217720ee21fd0ab", "pid": "243567634", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243567634", "source": "IDREF"}], "preferred_name": "Burer, Catherine", "authorized_access_point": "Burer, Catherine"} 1 +2024-09-11 09:05:54.100922 2024-09-11 09:05:54.100925 10b781e2-f488-4054-bf52-e01fae73c7c9 {"md5": "34937da332f6957eefdba78f0b12a144", "pid": "243577583", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243577583", "source": "IDREF"}], "preferred_name": "Aller, Jésus", "authorized_access_point": "Aller, Jésus"} 1 +2024-09-11 09:05:54.167075 2024-09-11 09:05:54.167079 7d7823fc-29a4-459a-84f6-ffdaaa1cdb4b {"md5": "e17f7ec21cfacdfa203b2b0b29a9641a", "pid": "243578482", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243578482", "source": "IDREF"}], "preferred_name": "Abonnat Ruggeri, Elise", "authorized_access_point": "Abonnat Ruggeri, Elise"} 1 +2024-09-11 09:05:54.217309 2024-09-11 09:05:54.217313 061e9aea-8b46-4b7f-bc1f-d6aa3fadfd42 {"md5": "565d5f9f462db879fd684ab28f36f60c", "pid": "243583133", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243583133", "source": "IDREF"}], "variant_name": ["Botovavy, Lucie Martin"], "preferred_name": "Martin Botovavy, Lucie", "country_associated": "fr", "variant_access_point": ["Botovavy, Lucie Martin"], "authorized_access_point": "Martin Botovavy, Lucie", "biographical_information": ["Titulaire d'une thèse en Pharmacie (Clermont-Ferrand 1, 1993)"]} 1 +2024-09-11 09:05:55.718459 2024-09-11 09:05:55.718466 4c993bd5-600b-4ddc-ae84-cef69d41b932 {"md5": "30f5845d93152a52ca878d73f4b8afd6", "pid": "24384025X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/24384025X", "source": "IDREF"}], "preferred_name": "Wills Rivera, Lourdes", "country_associated": "ve", "authorized_access_point": "Wills Rivera, Lourdes"} 1 +2024-09-11 09:05:54.273313 2024-09-11 09:05:54.273316 dd463542-c98a-418d-a334-5187bb4bca2c {"md5": "97071c46809c216839ec4c2b589f8590", "pid": "243594895", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243594895", "source": "IDREF"}], "date_of_birth": "1986-05-26", "preferred_name": "Granados alfaro, Ricardo", "country_associated": "mx", "authorized_access_point": "Granados alfaro, Ricardo, 1986-....", "biographical_information": ["Auteur d'une thèse en Optique et radiofréquence à Grenoble Alpes en 2019"]} 1 +2024-09-11 09:05:54.326134 2024-09-11 09:05:54.326138 a79ed1ca-f5a3-492b-a227-06c65345f099 {"md5": "72c84fe2f0b9cbfb484f618e27b8048a", "pid": "243597827", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243597827", "source": "IDREF"}], "preferred_name": "aDragoni, Bianca", "country_associated": "it", "authorized_access_point": "aDragoni, Bianca"} 1 +2024-09-11 09:05:54.381889 2024-09-11 09:05:54.381894 c4adabf5-80db-46b3-b6f8-5106c80f08f9 {"md5": "4d1ad0f365926711021eb47a08a5ca5d", "pid": "243602049", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243602049", "source": "IDREF"}], "preferred_name": "Eugenics Society (Londres). Symposium", "country_associated": "xxk", "date_of_termination": "1978", "date_of_establishment": "1978", "authorized_access_point": "Eugenics Society (Londres). Symposium (14 ; 1978 ; Londres)"} 1 +2024-09-11 09:05:54.439043 2024-09-11 09:05:54.439046 e7a93d4e-2c08-462a-94e9-267da6c10706 {"md5": "7e94335ea9e8e24e0d95ee9fbe4c9cf5", "pid": "24360405X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/24360405X", "source": "IDREF"}], "preferred_name": "Vignal-Gachignat, Laurence", "country_associated": "fr", "authorized_access_point": "Vignal-Gachignat, Laurence", "biographical_information": ["Docteur en informatique de l'université de Bordeaux 1‎ en 1997"]} 1 +2024-09-11 09:05:54.495721 2024-09-11 09:05:54.495725 821efef9-ebd2-4144-b2a8-d16b47ffa34d {"md5": "4d3a9ec55430a104218df155b388dd76", "pid": "243621418", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243621418", "source": "IDREF"}], "preferred_name": "European conference on organised films", "authorized_access_point": "European conference on organised films (8 ; 2002 ; Otranto (Lecce), Italy)"} 1 +2024-09-11 09:05:54.549555 2024-09-11 09:05:54.549558 444ce41b-2f26-4cfa-b75b-734ea80253bc {"md5": "0225c7b1d9e44ee01a15de27d2f65e14", "pid": "243630832", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243630832", "source": "IDREF"}], "preferred_name": "Gourmelon, Isabelle", "country_associated": "fr", "authorized_access_point": "Gourmelon, Isabelle", "biographical_information": ["Titulaire d'une thèse en Pharmacie (Rennes 1, 1994)"]} 1 +2024-09-11 09:05:54.599825 2024-09-11 09:05:54.599828 f20c036a-4d1d-438b-be0e-814a6d81c6fb {"md5": "61952df8193080e17d9cabf0a9deecd7", "pid": "243644124", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243644124", "source": "IDREF"}], "preferred_name": "Guillemot, Patrick", "authorized_access_point": "Guillemot, Patrick", "biographical_information": ["Titulaire d'une DEA soutenu à l'Université de Bretagne en 1986 : Traitements de données sismiques réflexion très haute résolution numérisées"]} 1 +2024-09-11 09:05:54.654765 2024-09-11 09:05:54.654768 e0f064c9-fd0e-42e9-bedd-f9627b8a5e89 {"md5": "e7973f9adecfa87aa5a402bf3c42921d", "pid": "243654510", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243654510", "source": "IDREF"}], "preferred_name": "Harouna, Hamidou", "country_associated": "fr", "authorized_access_point": "Harouna, Hamidou", "biographical_information": ["Titulaire d'une thèse en Pharmacie (Lyon 1, 1983)"]} 1 +2024-09-11 09:05:54.715201 2024-09-11 09:05:54.715204 9fad907d-e250-4510-8539-988111a70b6e {"md5": "739e2b8b2045c78993a2c4d5980d8347", "pid": "243677596", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243677596", "source": "IDREF"}], "preferred_name": "Vigier, Véronique", "country_associated": "fr", "authorized_access_point": "Vigier, Véronique", "biographical_information": ["Titulaire d'une thèse en Pharmacie (Clermont-Ferrand 1, 1996)"]} 1 +2024-09-11 09:05:54.77301 2024-09-11 09:05:54.773013 2f809f72-34ff-451c-addf-02795963c257 {"md5": "4fb6c5872ae8ed62a415242af69d2aa7", "pid": "243682603", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243682603", "source": "IDREF"}], "date_of_birth": "187.", "date_of_death": "19..", "preferred_name": "Garnier, Armand", "country_associated": "fr", "authorized_access_point": "Garnier, Armand, 187.-19..", "biographical_information": ["Ancien élève de l'École normale supérieure (promotion 1895 l). Agrégé de lettres (1898). Spécialiste de d'Aubigné"]} 1 +2024-09-11 09:05:54.827309 2024-09-11 09:05:54.827313 6741a64a-1481-480a-9a1b-1d01c756a8f0 {"md5": "78d934e794ad113b92da6cae0b6b5cd5", "pid": "243689616", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243689616", "source": "IDREF"}], "preferred_name": "Schaffer, Arthur A.", "country_associated": "is", "authorized_access_point": "Schaffer, Arthur A.", "biographical_information": ["En poste au Centre de recherche agricole Volcani, Bet-Dagan (en 1996)"]} 1 +2024-09-11 09:05:54.881088 2024-09-11 09:05:54.881092 df193286-763f-481a-a5f1-8af4ea0df27c {"md5": "0e85bf7eaa10f3b257c87b639f87d014", "pid": "243691041", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243691041", "source": "IDREF"}], "variant_name": ["A.D.E.N.A.S.", "ADENAS", "Association pour le développement des énergies nouvelles dans les Alpes-du-Sud"], "preferred_name": "Association pour le développement des énergies nouvelles dans les Alpes du sud", "country_associated": "fr", "variant_access_point": ["A.D.E.N.A.S.", "ADENAS", "Association pour le développement des énergies nouvelles dans les Alpes-du-Sud"], "authorized_access_point": "Association pour le développement des énergies nouvelles dans les Alpes du sud", "biographical_information": ["Adresse : c/o C.I.H.R., 05600 Montdauphin"]} 1 +2024-09-11 09:05:56.609458 2024-09-11 09:05:56.609462 362ee072-c907-4aeb-b433-6553a6660660 {"md5": "f1d380ac915e60d65decfbd03aba0344", "pid": "244117802", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244117802", "source": "IDREF"}], "preferred_name": "Glinskij, B.B", "authorized_access_point": "Glinskij, B.B"} 1 +2024-09-11 09:05:54.937445 2024-09-11 09:05:54.937448 94d0fb88-1da0-4a58-aa4b-60786547e881 {"md5": "e1b2f243e605060f608a7ae524bff949", "pid": "243694911", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243694911", "source": "IDREF"}], "preferred_name": "International Symposium Commemorating the Semi-Centennial of Hanyang University1989", "country_associated": "ko", "date_of_termination": "1989-05-11", "date_of_establishment": "1989-05-10", "authorized_access_point": "International Symposium Commemorating the Semi-Centennial of Hanyang University1989 (Seoul, Corée)"} 1 +2024-09-11 09:05:54.990259 2024-09-11 09:05:54.990263 936acc2c-0166-439c-91f2-618c8ecf44d5 {"md5": "306d85e4780e2528e2caa3d492f21071", "pid": "243698267", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243698267", "source": "IDREF"}], "date_of_birth": "1870-04-16", "date_of_death": "1934", "preferred_name": "Faralicq, Gaston", "country_associated": "fr", "authorized_access_point": "Faralicq, Gaston, 1870-1934", "biographical_information": ["Entre dans la police parisienne comme secrétaire suppléant près les commissariats de la Ville de Paris. - Secrétaire au commissariat de l'Odéon (1897-). - Officier de paix (1903-1914), puis commissaire aux délégations judiciaires, il prend sa retraite en 1932. - Ancien cuirassier. - Bachelier ès lettres. - Fondateur de l'ASPP, Association Sportive de la Préfecture de Police."]} 1 +2024-09-11 09:05:55.043253 2024-09-11 09:05:55.043258 29aaa8cc-5c61-4a9d-8da0-9e114bbf4d0b {"md5": "06ed0c89b36100ae6b5b405ba3140481", "pid": "24370206X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/24370206X", "source": "IDREF"}], "preferred_name": "Reserve Bank of Zimbabwe", "country_associated": "rh", "authorized_access_point": "Reserve Bank of Zimbabwe"} 1 +2024-09-11 09:05:55.096442 2024-09-11 09:05:55.096447 1d6b9598-6d27-4d20-9530-0ddcb37f390f {"md5": "a2440d56907db4df42fe4c0e4736e337", "pid": "243703597", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243703597", "source": "IDREF"}], "preferred_name": "Breton, Cyrille-Pierre", "country_associated": "fr", "authorized_access_point": "Breton, Cyrille-Pierre", "biographical_information": ["Docteur en médecine. Thèse d'exercice soutenue à la faculté de médecine de l'Université d'Aix-Marseille 2 en 1976"]} 1 +2024-09-11 09:05:55.1516 2024-09-11 09:05:55.151603 05982e59-48a2-4a12-940f-82610de2fa47 {"md5": "395c49a5bbda788055aef5692839ebc5", "pid": "243712979", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243712979", "source": "IDREF"}], "preferred_name": "University of Wyoming. Department of geology and geophysics", "country_associated": "xxu", "authorized_access_point": "University of Wyoming. Department of geology and geophysics"} 1 +2024-09-11 09:05:55.212445 2024-09-11 09:05:55.21245 68e3ec63-1cc6-4019-bac0-8386b15eb8d1 {"md5": "aeb04b75fbc3725ea899dfd489634c0d", "pid": "243737823", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243737823", "source": "IDREF"}], "date_of_birth": "1937", "preferred_name": "Renault, Jean", "country_associated": "fr", "authorized_access_point": "Renault, Jean, 1937-....", "biographical_information": ["auteur dramatique"]} 1 +2024-09-11 09:05:55.286428 2024-09-11 09:05:55.286432 4e503a97-04d5-4864-aef1-7735030ead36 {"md5": "8a77db261770b6b627adeec2e022e7a2", "pid": "243741138", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243741138", "source": "IDREF"}], "preferred_name": "Ballon, Félix Arthur", "country_associated": "fr", "authorized_access_point": "Ballon, Félix Arthur"} 1 +2024-09-11 09:05:55.389553 2024-09-11 09:05:55.389558 0a8bc574-71b6-4636-a169-6a9ed224e5d4 {"md5": "10a9d332aa6b3388a6d20aa32882fb0e", "pid": "243749120", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243749120", "source": "IDREF"}], "variant_name": ["Guay, L."], "date_of_birth": "1949", "preferred_name": "Guay, Luc", "variant_access_point": ["Guay, L."], "authorized_access_point": "Guay, Luc, 1949-...."} 1 +2024-09-11 09:05:55.443344 2024-09-11 09:05:55.443348 71a2e8c0-6c5b-4423-b099-85ae226c286b {"md5": "fba8dbcee18c02bbcedfc35068d46951", "pid": "243803133", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243803133", "source": "IDREF"}], "date_of_birth": "1980-03-09", "preferred_name": "Babou, Ousseynou", "country_associated": "fr", "authorized_access_point": "Babou, Ousseynou, 1980-....", "biographical_information": ["Auteur d'une thèse en Droit à Paris 1 en 2015"]} 1 +2024-09-11 09:05:55.49771 2024-09-11 09:05:55.497715 84a61b7c-2160-43ad-8204-279d3761c3fd {"md5": "c77e2323dda357a32baf535a3563a09c", "pid": "243814682", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243814682", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Le Carlier de Veslud, Cécile", "country_associated": "fr", "authorized_access_point": "Le Carlier de Veslud, Cécile, 19..-....", "biographical_information": ["Ingeńieur de Recherche archéométallurgiste au CNRS, à l' UMR 6566, CReAAH, Laboratoire Archéosciences de l'Université de Rennes 1 en 2019."]} 1 +2024-09-11 09:05:55.553414 2024-09-11 09:05:55.553419 27d2adb2-ceb0-4450-ab58-9ff56ac7f37c {"md5": "26fd27b7cd019f2a01f4686cc6bd936b", "pid": "243820984", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243820984", "source": "IDREF"}], "preferred_name": "Kuprii︠a︡nova, V.R", "country_associated": "xxk", "authorized_access_point": "Kuprii︠a︡nova, V.R"} 1 +2024-09-11 09:05:55.612238 2024-09-11 09:05:55.612242 0d96a87d-1fb3-4bc2-bb4e-ab7191a2ded4 {"md5": "e9c01e3c1835bd0d080e462a17e190d6", "pid": "243828446", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ara"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243828446", "source": "IDREF"}], "preferred_name": "Fānik, Fahd", "country_associated": "jo", "authorized_access_point": "Fānik, Fahd"} 1 +2024-09-11 09:05:55.66567 2024-09-11 09:05:55.665674 e1786834-5323-4844-9f21-1b04a66d0fe3 {"md5": "193e3cf84e0a6a286ae13f2ba062a24d", "pid": "243832206", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243832206", "source": "IDREF"}], "preferred_name": "Shushurin, S.F", "authorized_access_point": "Shushurin, S.F"} 1 +2024-09-11 09:05:55.771961 2024-09-11 09:05:55.771965 8a9f0c67-bdd7-495d-88ac-d31e0dde5ece {"md5": "5dd14f2855f4cbf56b709868b874ff5a", "pid": "243868065", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243868065", "source": "IDREF"}], "preferred_name": "Lalia Verpelli, Silvia", "country_associated": "it", "authorized_access_point": "Lalia Verpelli, Silvia"} 1 +2024-09-11 09:05:55.825093 2024-09-11 09:05:55.825096 6d433301-89e1-486f-bd43-a04749ed0455 {"md5": "f3647449b6e5a41a3d7339d5c99e7247", "pid": "24388303X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["chi"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/24388303X", "source": "IDREF"}], "preferred_name": "Zhai, Yiwuo", "authorized_access_point": "Zhai, Yiwuo"} 1 +2024-09-11 09:05:55.888244 2024-09-11 09:05:55.888249 cd8aa9d8-0457-4982-830c-54fc88b8cf6d {"md5": "596a2f745575de2384acee2520e6af6f", "pid": "243886179", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["gre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243886179", "source": "IDREF"}], "preferred_name": "Spēliōtakēs, K.K", "country_associated": "gr", "authorized_access_point": "Spēliōtakēs, K.K"} 1 +2024-09-11 09:05:55.943224 2024-09-11 09:05:55.943228 d48a11d3-fa35-479c-93ce-a64fe595a807 {"md5": "98069da26a19dc376d62d624586b92df", "pid": "243894910", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243894910", "source": "IDREF"}], "preferred_name": "Sagami, Yoshikazu", "country_associated": "ja", "authorized_access_point": "Sagami, Yoshikazu"} 1 +2024-09-11 09:05:55.99606 2024-09-11 09:05:55.996065 c99d7f4d-d7b0-46b8-bf77-ae90189dbb84 {"md5": "9cbd67707e6ac2a9c613ee32e0b28351", "pid": "243895046", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243895046", "source": "IDREF"}], "preferred_name": "Elperin, I︠U︡riĭ", "country_associated": "gw", "authorized_access_point": "Elperin, I︠U︡riĭ"} 1 +2024-09-11 09:05:56.055227 2024-09-11 09:05:56.055231 27a18d28-e5d3-4ac2-9f39-1aebf5dbca77 {"md5": "e02d3a4a1aedb02b2aa7ecc210ef0035", "pid": "243937075", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/243937075", "source": "IDREF"}], "date_of_birth": "1957", "preferred_name": "Jolliet, Philippe", "authorized_access_point": "Jolliet, Philippe, 1957-....", "biographical_information": ["Dr sciences Univ. Fribourg Suisse 1987, chimiste"]} 1 +2024-09-11 09:05:56.106125 2024-09-11 09:05:56.106128 fbc40254-7f86-4b11-8269-e26a6fae797d {"md5": "f2242fd48f4f61612a9fc458559e1b76", "pid": "244010218", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244010218", "source": "IDREF"}], "preferred_name": "Grandel, Saskia", "country_associated": "gw", "authorized_access_point": "Grandel, Saskia", "biographical_information": ["Germaniste"]} 1 +2024-09-11 09:05:56.158603 2024-09-11 09:05:56.158607 01a2ec92-1e48-4f1c-939f-2f94b91e9b1b {"md5": "8e00619df67db4f02b0a8bca7fb788eb", "pid": "244049882", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244049882", "source": "IDREF"}], "preferred_name": "Timchenko, Irina Petrovna", "authorized_access_point": "Timchenko, Irina Petrovna"} 1 +2024-09-11 09:05:56.216161 2024-09-11 09:05:56.216166 5251126e-f607-41a6-ac8a-30db0aef25fc {"md5": "36169766eb90f099cc9fac2fdf6f7510", "pid": "244052468", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244052468", "source": "IDREF"}], "preferred_name": "Ambunda, Lotta N", "country_associated": "sx", "authorized_access_point": "Ambunda, Lotta N"} 1 +2024-09-11 09:05:56.277245 2024-09-11 09:05:56.277249 3f7d5d19-b896-49e4-af83-3e98ea1bcc89 {"md5": "ebdb8dc24cd37690b77039d5293958b4", "pid": "24406024X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/24406024X", "source": "IDREF"}], "preferred_name": "Bácares Jara, Camilo", "country_associated": "pe", "authorized_access_point": "Bácares Jara, Camilo"} 1 +2024-09-11 09:05:56.327937 2024-09-11 09:05:56.32794 8519ef1c-18ce-44f8-a3ba-c77f8f088938 {"md5": "ef8e93a61b85b96ab5965dcd4a5d6610", "pid": "244061092", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244061092", "source": "IDREF"}], "preferred_name": "Richterich, Lukas", "authorized_access_point": "Richterich, Lukas"} 1 +2024-09-11 09:05:56.382692 2024-09-11 09:05:56.382699 da3c9774-33e7-4b78-952a-4e51f59a83cd {"md5": "c40f5999a0945708e5631328c64335db", "pid": "244072922", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244072922", "source": "IDREF"}], "preferred_name": "Nazarevskiĭ, Aleksandr Adrianovich", "country_associated": "eg", "authorized_access_point": "Nazarevskiĭ, Aleksandr Adrianovich"} 1 +2024-09-11 09:05:56.45136 2024-09-11 09:05:56.451366 4fa90886-f37d-41c2-92a4-247bc5e57caa {"md5": "c5c01f47b0a0668b726d96fa8cd3e849", "pid": "244077878", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244077878", "source": "IDREF"}], "variant_name": ["Mneva, Nadezhda Evgenʹevna"], "preferred_name": "Мнева, Надежда Евгеньевна", "variant_access_point": ["Mneva, Nadezhda Evgenʹevna"], "authorized_access_point": "Мнева, Надежда Евгеньевна"} 1 +2024-09-11 09:05:56.502971 2024-09-11 09:05:56.502974 2cc24907-e18b-40b2-b1fb-3908789d72c4 {"md5": "f4ac74ed3af7fa89d115949194cb9140", "pid": "244092389", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244092389", "source": "IDREF"}], "date_of_birth": "1985", "preferred_name": "Jeger, Silvan", "authorized_access_point": "Jeger, Silvan, 1985-….", "biographical_information": ["Compositeur, contrebassiste et violoncelliste de jazz"]} 1 +2024-09-11 09:05:56.558538 2024-09-11 09:05:56.558542 07615831-cf25-40fd-a1f7-5e838d27b175 {"md5": "77e36f5fada6ec18743933cf7a107a2c", "pid": "244098972", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244098972", "source": "IDREF"}], "preferred_name": "Vardomat︠s︡kiĭ, Andreĭ Petrovich", "authorized_access_point": "Vardomat︠s︡kiĭ, Andreĭ Petrovich"} 1 +2024-09-11 09:05:56.66229 2024-09-11 09:05:56.662294 a7d50e30-1fa0-4987-b838-c483d9aee5f8 {"md5": "6702db96e562e484e0a4b284cf8dbb08", "pid": "244121095", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244121095", "source": "IDREF"}], "preferred_name": "Macclaskey, Marilyn H", "country_associated": "xxu", "authorized_access_point": "Macclaskey, Marilyn H"} 1 +2024-09-11 09:05:56.722729 2024-09-11 09:05:56.722732 ce4b727d-e837-413a-baa9-3781c11d66db {"md5": "d2164ef4b8e2db6fda00466cbd358431", "pid": "244126283", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244126283", "source": "IDREF"}], "preferred_name": "Ruvinskiĭ, Leonid Izotovich", "authorized_access_point": "Ruvinskiĭ, Leonid Izotovich"} 1 +2024-09-11 09:05:56.773184 2024-09-11 09:05:56.773187 bb1f41ab-da91-46c3-8774-55e5a91070a8 {"md5": "73874cf51765a59e9d710f9e57d91de7", "pid": "244135282", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244135282", "source": "IDREF"}], "preferred_name": "Topuridze, Elena Ivanovna", "country_associated": "gau", "authorized_access_point": "Topuridze, Elena Ivanovna"} 1 +2024-09-11 09:05:56.830036 2024-09-11 09:05:56.83004 a096ff89-187a-4847-84a2-90fb3f6c7358 {"md5": "222b88cdc44cb15a731508ba3c744ecb", "pid": "244139563", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244139563", "source": "IDREF"}], "preferred_name": "Heinecke, H.", "country_associated": "fr", "authorized_access_point": "Heinecke, H."} 1 +2024-09-11 09:05:56.942462 2024-09-11 09:05:56.942466 f4af0365-7307-4774-9bcc-bc0f85ee5b89 {"md5": "b2f40f0aef1fb5e77a17207a9911031f", "pid": "244165610", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244165610", "source": "IDREF"}], "preferred_name": "Papadopoulos, Dimitrios N", "country_associated": "fr", "authorized_access_point": "Papadopoulos, Dimitrios N", "biographical_information": ["Ingénieur, chargé de recherche au Laboratoire Pour l'Utilisation des Lasers Intenses (LULI), École Polytechnique"]} 1 +2024-09-11 09:05:56.992304 2024-09-11 09:05:56.992308 5a146711-977b-4b81-ae4a-917bdb7ff449 {"md5": "2549b767a0e904b7de82707fd32d3617", "pid": "24416603X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/24416603X", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Pilot, Gilbert", "country_associated": "xxc", "authorized_access_point": "Pilot, Gilbert, 19..-....", "biographical_information": ["Chef d'entreprise"]} 1 +2024-09-11 09:05:57.045226 2024-09-11 09:05:57.045229 b9641030-e99f-449a-8962-66dee464fdca {"md5": "ac5339ba46935020fda93051718ef830", "pid": "244233403", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244233403", "source": "IDREF"}], "preferred_name": "Bahti, Mark", "country_associated": "xxu", "authorized_access_point": "Bahti, Mark"} 1 +2024-09-11 09:05:57.104376 2024-09-11 09:05:57.104379 5ff5909d-2cae-4f68-b45f-85422c1501a7 {"md5": "f5ba50a4628733f4424dcbb96813346c", "pid": "244251568", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244251568", "source": "IDREF"}], "date_of_birth": "1765", "date_of_death": "1833", "preferred_name": "Latour, Joseph", "country_associated": "fr", "authorized_access_point": "Latour, Joseph, 1765-1833", "biographical_information": ["Général de la Révolution et de l'Empire"]} 1 +2024-09-11 09:05:57.160966 2024-09-11 09:05:57.16097 5fb9aefe-b321-40f9-abf3-a28b418f2257 {"md5": "91cbccce840be082967c7983d69c5f3c", "pid": "244257469", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244257469", "source": "IDREF"}], "preferred_name": "Abi-Rached, Antoine", "authorized_access_point": "Abi-Rached, Antoine", "biographical_information": ["Editeur scientifique"]} 1 +2024-09-11 09:05:57.222482 2024-09-11 09:05:57.222486 2d14d60d-b8c5-479b-8774-415f0899c270 {"md5": "40c2227286cb5cf6fe895382da92abef", "pid": "244273111", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244273111", "source": "IDREF"}], "date_of_birth": "1982-03-12", "preferred_name": "Roussel, Karl", "country_associated": "fr", "authorized_access_point": "Roussel, Karl, 1982-...."} 1 +2024-09-11 09:05:57.274392 2024-09-11 09:05:57.274396 e9da1e43-9419-4cb8-946b-2a3a3c4ed990 {"md5": "5508083504f1516f3bd67f204cb742df", "pid": "244318301", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244318301", "source": "IDREF"}], "date_of_birth": "1993", "preferred_name": "Chritakis, Apolline", "country_associated": "fr", "authorized_access_point": "Chritakis, Apolline, 1993", "biographical_information": ["Auteure d'un mémoire de master recherche 2ème année soutenu en 2017 à l'Université de Caen"]} 1 +2024-09-11 09:05:57.325624 2024-09-11 09:05:57.325631 87a8ed2c-1008-4aea-bbe6-b53f53a42401 {"md5": "5cadba9e4866e5c4228d8b68d5d9512e", "pid": "244324913", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244324913", "source": "IDREF"}], "date_of_birth": "19..", "preferred_name": "Kerlor, Anne", "country_associated": "fr", "authorized_access_point": "Kerlor, Anne, 19..-....", "biographical_information": ["Ecrivain"]} 1 +2024-09-11 09:05:57.379846 2024-09-11 09:05:57.379849 bfbc5a55-8b1b-44fe-ba1e-2aae0a1451cc {"md5": "e9b04d2231b7b237c9abb912588c97ca", "pid": "244341672", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244341672", "source": "IDREF"}], "variant_name": ["MJS - Bas-Rhin - France", "Mouvement de la jeunesse socialiste. Fédération Bas-Rhin", "Mouvement des jeunes socialistes (Bas-Rhin, France)"], "preferred_name": "Mouvement de la jeunesse socialiste (Bas-Rhin, France)", "country_associated": "fr", "variant_access_point": ["MJS - Bas-Rhin - France", "Mouvement de la jeunesse socialiste. Fédération Bas-Rhin", "Mouvement des jeunes socialistes (Bas-Rhin, France)"], "authorized_access_point": "Mouvement de la jeunesse socialiste (Bas-Rhin, France)"} 1 +2024-09-11 09:05:57.429305 2024-09-11 09:05:57.429308 8e8f43b3-d613-486f-a7b5-2a3aa13a3d16 {"md5": "2daa9760d13bb82a10ea7420371c9c82", "pid": "244341796", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244341796", "source": "IDREF"}], "preferred_name": "Cederna, Giulio", "authorized_access_point": "Cederna, Giulio"} 1 +2024-09-11 09:05:57.487233 2024-09-11 09:05:57.487238 6ad15a5c-0230-4268-86af-5fc963a3eeba {"md5": "80d7e7a9bf16ae92c0779c85010f48d1", "pid": "244350329", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244350329", "source": "IDREF"}], "variant_name": ["Peccoud, Elisabeth"], "date_of_birth": "1944-06-05", "preferred_name": "Defour, Elisabeth", "country_associated": "fr", "variant_access_point": ["Peccoud, Elisabeth"], "authorized_access_point": "Defour, Elisabeth, 1944-....", "biographical_information": ["Auteur en médecine"]} 1 +2024-09-11 09:05:57.543797 2024-09-11 09:05:57.543801 483bf21e-1678-4517-800b-e49fd76032a1 {"md5": "71bf100ef2113051f9636bbd8f072432", "pid": "244402515", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244402515", "source": "IDREF"}], "preferred_name": "Saintigny, Gabriel", "country_associated": "fr", "authorized_access_point": "Saintigny, Gabriel"} 1 +2024-09-11 09:05:57.601633 2024-09-11 09:05:57.601635 733a438d-0807-4108-8966-ff9f33576c4c {"md5": "b457b31db98606c8b15036f64633bda9", "pid": "244420645", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244420645", "source": "IDREF"}], "preferred_name": "Caniot, Valérie", "country_associated": "fr", "authorized_access_point": "Caniot, Valérie", "biographical_information": ["Titulaire d'une thèse en Médecine vétérinaire (Lyon 1, 1997)"]} 1 +2024-09-11 09:05:57.656189 2024-09-11 09:05:57.656192 f67b50b1-68f8-416c-84b4-c5f87d650c67 {"md5": "5520850af67328469084fbb1ab53a3be", "pid": "244433577", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244433577", "source": "IDREF"}], "preferred_name": "Astle, Julian", "country_associated": "xxk", "authorized_access_point": "Astle, Julian"} 1 +2024-09-11 09:05:57.742097 2024-09-11 09:05:57.742102 e55617f2-95a3-4dac-8e31-91e9c23ab98b {"md5": "62a17e75445441374e780e723aeb0a13", "pid": "244450765", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["swe"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244450765", "source": "IDREF"}], "preferred_name": "Zennström, Per-Olov", "country_associated": "sw", "authorized_access_point": "Zennström, Per-Olov"} 1 +2024-09-11 09:05:57.794151 2024-09-11 09:05:57.794156 12459f1d-2db8-45db-9398-80657693feb9 {"md5": "076658cdb0b30d4d760313737d3ac8df", "pid": "244788987", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244788987", "source": "IDREF"}], "variant_name": ["Lacoste, Raymond Maisonneufve"], "preferred_name": "Maisonneufve-Lacoste, Raymond", "country_associated": "fr", "variant_access_point": ["Lacoste, Raymond Maisonneufve"], "authorized_access_point": "Maisonneufve-Lacoste, Raymond", "biographical_information": ["Fut avocat général"]} 1 +2024-09-11 09:05:57.849106 2024-09-11 09:05:57.84911 387a9312-e369-43e1-8a54-fcffd264f54e {"md5": "5266fcec96cd5e2cdeddedc551c6f90a", "pid": "244799768", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244799768", "source": "IDREF"}], "preferred_name": "Chasles, Bernard", "authorized_access_point": "Chasles, Bernard"} 1 +2024-09-11 09:05:57.901129 2024-09-11 09:05:57.901133 e94e80b4-fd3a-4feb-8507-384fe343a641 {"md5": "5577895990b9f4a4d3000c9f3f9f00e1", "pid": "244882908", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244882908", "source": "IDREF"}], "variant_name": ["Wesley, George R."], "date_of_birth": "1931", "preferred_name": "Wesley, George Randolph", "variant_access_point": ["Wesley, George R."], "authorized_access_point": "Wesley, George Randolph, 1931-..."} 1 +2024-09-11 09:05:57.954872 2024-09-11 09:05:57.954876 f2475f89-1ebb-4ad4-8540-90960b089d77 {"md5": "3f0eebe6b682082a37525082195ca976", "pid": "24488451X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/24488451X", "source": "IDREF"}], "preferred_name": "Roberteau-Baudry", "country_associated": "fr", "authorized_access_point": "Roberteau-Baudry"} 1 +2024-09-11 09:05:58.013818 2024-09-11 09:05:58.013822 fa104b65-a210-44fd-83e0-2a65eab8746a {"md5": "851075aa5a918c897a5df8934be69616", "pid": "244888558", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244888558", "source": "IDREF"}], "preferred_name": "Moore, Nigel", "authorized_access_point": "Moore, Nigel"} 1 +2024-09-11 09:05:58.071527 2024-09-11 09:05:58.071531 c2a6ea7f-45ce-4cc6-842a-2f6d9ca38e74 {"md5": "904486ea0a7c8b5215c53a4cbcb9680c", "pid": "244922624", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244922624", "source": "IDREF"}], "preferred_name": "Lauer, O.", "country_associated": "fr", "authorized_access_point": "Lauer, O.", "biographical_information": ["Scientifique"]} 1 +2024-09-11 09:05:58.1223 2024-09-11 09:05:58.122305 4f089644-6eef-4ee5-b2b6-2b058e842c78 {"md5": "6451443e58ec45a62f4387c319a4682c", "pid": "244934894", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/244934894", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Anstice, Ian", "country_associated": "xxk", "authorized_access_point": "Anstice, Ian, 19..-....", "biographical_information": ["Bibliothécaire"]} 1 +2024-09-11 09:05:58.175786 2024-09-11 09:05:58.17579 e2f2c3e2-cbe1-455a-a35c-1e2c5f8bed44 {"md5": "a4fe794aa9d2dbfbdaa73f3d963cae38", "pid": "245023542", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/245023542", "source": "IDREF"}], "variant_name": ["ULCO. Atelier culture (Dunkerque, Nord)", "UL. Atelier culture (Dunkerque, Nord)", "Université du Littoral. Atelier culture (Dunkerque, Nord)", "Université du Littoral Côte d'Opale (France)"], "preferred_name": "Université du littoral-Côte d'Opale. Atelier culture (Dunkerque, Nord)", "country_associated": "fr", "variant_access_point": ["ULCO. Atelier culture (Dunkerque, Nord)", "UL. Atelier culture (Dunkerque, Nord)", "Université du Littoral. Atelier culture (Dunkerque, Nord)", "Université du Littoral Côte d'Opale (France)"], "authorized_access_point": "Université du littoral-Côte d'Opale. Atelier culture (Dunkerque, Nord)"} 1 +2024-09-11 09:06:00.389617 2024-09-11 09:06:00.389621 87de98a6-4f48-4983-b486-b949c03f8452 {"md5": "7a799950e16be2578df6adbc7a248b09", "pid": "250507617", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/250507617", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Slaouti, Omar", "country_associated": "fr", "authorized_access_point": "Slaouti, Omar, 19..-...."} 1 +2024-09-11 09:05:58.227495 2024-09-11 09:05:58.2275 0f32d7c9-b8ca-4040-a5f9-9b999dd5f956 {"md5": "75a481bb0752fa0fb430cb2cda05a708", "pid": "245054200", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/245054200", "source": "IDREF"}], "preferred_name": "OSL Workshop on Electromechanical Coupling of the Solar Atmosphere", "date_of_termination": "1991-05-31", "date_of_establishment": "1991-05-27", "authorized_access_point": "OSL Workshop on Electromechanical Coupling of the Solar Atmosphere (1991 ; Capri, Italie)"} 1 +2024-09-11 09:05:58.290961 2024-09-11 09:05:58.290965 89588486-0067-48d0-8be3-09d85151efb9 {"md5": "b43e9311b42678ad5480b861193af84a", "pid": "24507869X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/24507869X", "source": "IDREF"}], "preferred_name": "Caldwel, Robert J.", "authorized_access_point": "Caldwel, Robert J."} 1 +2024-09-11 09:05:58.346335 2024-09-11 09:05:58.34634 cf65ae6d-f26a-4665-93a9-21a8518ba281 {"md5": "298c2fdae7324699389e9c2017ff0745", "pid": "24515969X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/24515969X", "source": "IDREF"}], "date_of_birth": "18..", "date_of_death": "18..", "preferred_name": "Prieur, Edme-André Séverin", "country_associated": "fr", "authorized_access_point": "Prieur, Edme-André Séverin, 18..-18..", "biographical_information": ["Médecin"]} 1 +2024-09-11 09:05:58.405568 2024-09-11 09:05:58.405572 43888649-5d51-45b5-ab34-8ce25dbefb42 {"md5": "717fc113e5524558528f64861ba647e7", "pid": "245200142", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/245200142", "source": "IDREF"}], "variant_name": ["Barbaro, Luca Massino"], "preferred_name": "Massino Barbero, Luca", "country_associated": "it", "variant_access_point": ["Barbaro, Luca Massino"], "authorized_access_point": "Massino Barbero, Luca", "biographical_information": ["écrit sur l'art"]} 1 +2024-09-11 09:05:58.471514 2024-09-11 09:05:58.471517 01d24424-b35f-473b-915b-ca57fcb384c5 {"md5": "fded7a9e832d1adb4f5658485eae72bf", "pid": "245235949", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/245235949", "source": "IDREF"}], "date_of_birth": "1990-03-01", "preferred_name": "Abdelkareem, Moamen", "country_associated": "ua", "authorized_access_point": "Abdelkareem, Moamen, 1990-....", "biographical_information": ["Auteur d'une thèse de doctorat en Biophysique et biologie structurale à Strasbourg en 2019"]} 1 +2024-09-11 09:05:58.530879 2024-09-11 09:05:58.530882 205510c8-4d33-4ee5-8c3e-c9fd3780a4ef {"md5": "a7e8869a2eaefe3e51fa21feca7ffddb", "pid": "245265805", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/245265805", "source": "IDREF"}], "preferred_name": "Musée de l'homme. Département Océanie (Paris)", "country_associated": "fr", "date_of_establishment": "1936", "authorized_access_point": "Musée de l'homme. Département Océanie (Paris)"} 1 +2024-09-11 09:05:58.58735 2024-09-11 09:05:58.587355 7feec7ec-f506-4401-b043-cc309897cbd6 {"md5": "5052b0486ae30de3dda8fad8adb467f4", "pid": "245313486", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/245313486", "source": "IDREF"}], "date_of_birth": "1787", "date_of_death": "1863", "preferred_name": "Wilson, Thomas", "country_associated": "xxk", "authorized_access_point": "Wilson, Thomas, 1787-1863", "biographical_information": ["Collectionneur d'art anglais, notamment des estampes de Rembrandt. Vit en Australie à partir de 1838 où il est avocat"]} 1 +2024-09-11 09:05:58.642137 2024-09-11 09:05:58.642142 3390fffb-ad18-4eba-8c14-3b6173e20610 {"md5": "9d08932995eff4855dc29587d4465170", "pid": "248175920", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/248175920", "source": "IDREF"}], "preferred_name": "Dalmat, Syanie", "country_associated": "fr", "authorized_access_point": "Dalmat, Syanie"} 1 +2024-09-11 09:05:58.699466 2024-09-11 09:05:58.69947 ff818f24-8a70-47c2-8400-e013ee1c1300 {"md5": "f3034f66e6ca32d2bdc9aecdb8af45d0", "pid": "248213032", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/248213032", "source": "IDREF"}], "variant_name": ["Rotta, Julius Karl", "Rotta, J.", "Rotta, J. C.", "Rotta, J.-C.", "Rotta, Julius", "Rotta, Julius Christian", "Rotta, Julius-Christian", "Rotta, Julius Carl"], "date_of_birth": "1912", "date_of_death": "2005", "preferred_name": "Rotta, Julius C.", "variant_access_point": ["Rotta, Julius Karl", "Rotta, J.", "Rotta, J. C.", "Rotta, J.-C.", "Rotta, Julius", "Rotta, Julius Christian", "Rotta, Julius-Christian", "Rotta, Julius Carl"], "authorized_access_point": "Rotta, Julius C., 1912-2005"} 1 +2024-09-11 09:05:58.757518 2024-09-11 09:05:58.757522 8e7d2758-5026-41d8-a03e-0eb7e33131c7 {"md5": "4d98d1fd3574b4d232fd9438687ee0ac", "pid": "248374249", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "M.", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/248374249", "source": "IDREF"}], "preferred_name": "Rougeot, M.", "country_associated": "xx", "authorized_access_point": "Rougeot, M."} 1 +2024-09-11 09:05:58.810998 2024-09-11 09:05:58.811003 63a86f94-3c07-4e67-b33c-9159d9c70dcb {"md5": "bf4361e4b4d9dd87c9f85f52e73801dd", "pid": "248391038", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/248391038", "source": "IDREF"}], "preferred_name": "Niel, Paul", "authorized_access_point": "Niel, Paul", "biographical_information": ["Il a collaboré par les fac-similés"]} 1 +2024-09-11 09:05:58.868648 2024-09-11 09:05:58.86865 9a45724d-8346-4659-9405-286c2619b5eb {"md5": "f470a3658bce7e4eaf56cb62b6c1b5f5", "pid": "248436074", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/248436074", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Lataillade, Pierre", "country_associated": "fr", "authorized_access_point": "Lataillade, Pierre, 19..-...."} 1 +2024-09-11 09:05:58.946775 2024-09-11 09:05:58.946781 6a84b855-396f-4d98-ba1d-b851b1f33a2b {"md5": "c2b1a6e8cc23bedcfc73389a01631acd", "pid": "248958445", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/248958445", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Fleming, Pat", "country_associated": "xxk", "authorized_access_point": "Fleming, Pat, 19..-....", "biographical_information": ["Elle a travaillé intensivement avec Joanna Macy pendant 25 ans . A participer à la création du \\"Council of All Beings\\"."]} 1 +2024-09-11 09:05:59.016476 2024-09-11 09:05:59.01648 62b38ba5-cc06-41c5-ab97-3189cc2d7006 {"md5": "e93403fe32c20c3b19ecf068d9ad88e6", "pid": "248982621", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["heb"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/248982621", "source": "IDREF"}], "variant_name": ["ברסלבסקי, משה"], "date_of_birth": "1903", "date_of_death": "1961", "preferred_name": "Braslavski, Moshe", "country_associated": "is", "variant_access_point": ["ברסלבסקי, משה, 1903-1961"], "parallel_access_point": ["braslabsqy, mos̆eh, 1903-1961", "Braslavsḳi, Mosheh"], "authorized_access_point": "Braslavski, Moshe, 1903-1961", "biographical_information": ["Né en 1903 en Ukraine. A émigré en Palestine en 1905. Décédé en 1961", "Écrivain et historien israélien spécialisé dans les mouvements de travailleurs israéliens"]} 1 +2024-09-11 09:05:59.076556 2024-09-11 09:05:59.07656 e22a10e2-dee8-4fd5-8838-d5ce009bbd7d {"md5": "5015d5d76f1abfac80bd14ddc711701c", "pid": "249008173", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/249008173", "source": "IDREF"}], "date_of_birth": "19..", "preferred_name": "Rand, Emily", "country_associated": "xxk", "authorized_access_point": "Rand, Emily, 19..-....", "biographical_information": ["Autrice-illustratrice anglaise"]} 1 +2024-09-11 09:05:59.13371 2024-09-11 09:05:59.133715 247f194c-c203-492a-b186-a92e9fb02f50 {"md5": "62a8662d8eceb134a6e29c6e5b5af39e", "pid": "249129019", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/249129019", "source": "IDREF"}], "date_of_birth": "1984-07-02", "preferred_name": "Aljane, Nabil", "country_associated": "ti", "authorized_access_point": "Aljane, Nabil, 1984-....", "biographical_information": ["Auteur d'une thèse en Géographie et aménagement de l'espace à Montpellier 3 en 2019"]} 1 +2024-09-11 09:05:59.195306 2024-09-11 09:05:59.19531 bc74765a-14d9-411c-b4f5-1b005fed5276 {"md5": "42fc0e757655d69dfe5758ad7003e361", "pid": "24913344X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/24913344X", "source": "IDREF"}], "preferred_name": "McRae, Carla", "country_associated": "at", "authorized_access_point": "McRae, Carla"} 1 +2024-09-11 09:05:59.248619 2024-09-11 09:05:59.248624 a3c93d3f-32d8-4fd8-89f4-1bd13a1bbce4 {"md5": "eb25d987756e7a79537dcfaf4ca039ef", "pid": "249284472", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/249284472", "source": "IDREF"}], "preferred_name": "Brogniart, Yves", "country_associated": "fr", "authorized_access_point": "Brogniart, Yves", "biographical_information": ["Auteur d'une thèse en Droit, Université de Dijon, 1970"]} 1 +2024-09-11 09:05:59.310287 2024-09-11 09:05:59.310291 260de9c4-d0d2-42ba-a5ba-79caba0b1c16 {"md5": "6ab30f2a0fc13e562e95715781f1cb19", "pid": "249311461", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/249311461", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Le Brun-Lefèvre, Marie-Ange", "country_associated": "fr", "authorized_access_point": "Le Brun-Lefèvre, Marie-Ange, 19..-....", "biographical_information": ["Pédiatre en PMI, adhérente au centre international de recherche et de développement de l'haptonomie"]} 1 +2024-09-11 09:05:59.366892 2024-09-11 09:05:59.366894 49cbb1d9-1f78-439f-9904-e971c0dbe36b {"md5": "d623b37334e734849fcf8784cd565f56", "pid": "249406845", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/249406845", "source": "IDREF"}], "preferred_name": "Steyn, Johanna", "country_associated": "sa", "authorized_access_point": "Steyn, Johanna", "biographical_information": ["Professeur de français au Département de Langues vivantes étrangères de l’Université de Stellenbosch"]} 1 +2024-09-11 09:05:59.423883 2024-09-11 09:05:59.423886 8c07d7b1-e581-488d-88e7-dbcb6cd6bde9 {"md5": "939067d5602503b7d7cf82c38b974163", "pid": "249486504", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/249486504", "source": "IDREF"}], "variant_name": ["Reszkiewiczowa, Anna"], "date_of_death": "2000", "preferred_name": "Reszkiewicz, Anna", "country_associated": "pl", "variant_access_point": ["Reszkiewiczowa, Anna"], "authorized_access_point": "Reszkiewicz, Anna, ....-2000)"} 1 +2024-09-11 09:05:59.484484 2024-09-11 09:05:59.484487 7b74784e-3f25-4dfc-bb95-eb2dfb569622 {"md5": "21be2b827a7fca1d8cc325ad61d920f6", "pid": "249730375", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/249730375", "source": "IDREF"}], "date_of_birth": "1984", "preferred_name": "Hasnain, Md Saquib", "country_associated": "xx", "authorized_access_point": "Hasnain, Md Saquib, 1984-....", "biographical_information": ["En poste : Department of pharmacy, Shri Venkateshwara university, Gajraula, Uttar Pradesh, Inde (en 2019)"]} 1 +2024-09-11 09:05:59.538858 2024-09-11 09:05:59.538861 ab9364df-2d03-4f41-a51c-de9d0df00be5 {"md5": "6e6f3b1c82205ec4bc7c07fe08811ef5", "pid": "249743523", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/249743523", "source": "IDREF"}], "preferred_name": "Li, Guangquan", "authorized_access_point": "Li, Guangquan", "biographical_information": ["Statisticien à Northumbria University, Newcastle (UK)"]} 1 +2024-09-11 09:05:59.592106 2024-09-11 09:05:59.592111 06251c7c-5199-417b-8126-10128e43b4ca {"md5": "af41cee64656796ab6f6bbdfd0345314", "pid": "249775441", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/249775441", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Ribes, david", "country_associated": "xxu", "authorized_access_point": "Ribes, david, 19..-...."} 1 +2024-09-11 09:05:59.646704 2024-09-11 09:05:59.646709 99cdf998-48de-4116-b748-623bacfc5f68 {"md5": "f00afc5c1342add5b0cb54ed786ecf8d", "pid": "249825074", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/249825074", "source": "IDREF"}], "variant_name": ["Klemm's (Berlin)"], "preferred_name": "Galerie Klemm's (Berlin)", "country_associated": "gw", "variant_access_point": ["Klemm's (Berlin)"], "authorized_access_point": "Galerie Klemm's (Berlin)", "biographical_information": ["La galerie KLEMM'S située dans le quartier de Kreuzberg à Berlin est une galerie d'art contemporain jeune et conceptuelle représentant des artistes internationaux de tous les média, elle a été fondée par Sebastian Klemm et Silvia Bonsiepe (en 2020)"]} 1 +2024-09-11 09:05:59.701123 2024-09-11 09:05:59.701126 a1b278db-9ac6-482c-9569-946dbf48a703 {"md5": "2abf0946ea8e34eaa70848eb4c7aac14", "pid": "249834472", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/249834472", "source": "IDREF"}], "preferred_name": "Provinciale Bibliotheek van Limburg (Bibliothèque publique et patrimoniale, bibliothèque scientifique)", "country_associated": "be", "date_of_establishment": "1946", "authorized_access_point": "Provinciale Bibliotheek van Limburg (Bibliothèque publique et patrimoniale, bibliothèque scientifique)"} 1 +2024-09-11 09:05:59.753717 2024-09-11 09:05:59.753721 8d1fb9e5-a263-4eae-b3bc-61f910e61e3a {"md5": "7a5c62459c6c3a0ad079ac773efc3514", "pid": "249952378", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/249952378", "source": "IDREF"}], "variant_name": ["Berliner lithographisches Institut", "Königl. Lith. Institut (Berlin)", "Königl. Lithographisches Institut (Berlin)", "Berliner Lithographisches Institut", "Lithographisches Institut (Berlin)", "Königliches Lithographisches Institut (Berlin)", "Geographisch-Lithographisches Institut zu Berlin", "Geographisch-Lithographisches Institut in Berlin", "Geographisch-Lithographisches Institut von J. Sulzer (Berlin)"], "preferred_name": "Geographisch-Lithographisches Institut (Berlin)", "country_associated": "gw", "variant_access_point": ["Berliner lithographisches Institut", "Königl. Lith. Institut (Berlin)", "Königl. Lithographisches Institut (Berlin)", "Berliner Lithographisches Institut", "Lithographisches Institut (Berlin)", "Königliches Lithographisches Institut (Berlin)", "Geographisch-Lithographisches Institut zu Berlin", "Geographisch-Lithographisches Institut in Berlin", "Geographisch-Lithographisches Institut von J. Sulzer (Berlin)"], "date_of_establishment": "1818", "authorized_access_point": "Geographisch-Lithographisches Institut (Berlin)", "biographical_information": ["Fondé en 1818 sous le nom de : Institut royal de lithographie à Berlin. - Devient en 1858: Institut de lithographie géographique de Berlin"]} 1 +2024-09-11 09:05:59.805247 2024-09-11 09:05:59.80525 24ec0778-610c-4210-bf8f-96f95f2edc60 {"md5": "70bc73f22958a56c79e8ffea27561387", "pid": "249981394", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/249981394", "source": "IDREF"}], "preferred_name": "Rousset, Vincent", "country_associated": "fr", "authorized_access_point": "Rousset, Vincent", "biographical_information": ["Biologiste"]} 1 +2024-09-11 09:05:59.85802 2024-09-11 09:05:59.858024 8bc86a25-bb61-43be-85f2-e008a16d115e {"md5": "f14ed82e8f3a01760ec14c5a85cb7e4e", "pid": "250341611", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/250341611", "source": "IDREF"}], "preferred_name": "Marinho, Orlando", "country_associated": "fr", "authorized_access_point": "Marinho, Orlando", "biographical_information": ["Auteur d'un mémoire en histoire du droit et des institutions à l'Université de Nancy 2 en 2004"]} 1 +2024-09-11 09:05:59.91262 2024-09-11 09:05:59.912625 ab805f42-10d1-4f9a-ad8e-c365de1eaf76 {"md5": "12f4facb80d40eddf062eda8516c02a4", "pid": "250364913", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/250364913", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Assi, Clair Brice Judicaël", "country_associated": "fr", "authorized_access_point": "Assi, Clair Brice Judicaël, 19..-...."} 1 +2024-09-11 09:06:00.00732 2024-09-11 09:06:00.007323 9d892c9a-1a0a-4fd3-85ba-cadc6090877a {"md5": "3a13257992e25281c28b23ec2042db69", "pid": "250368196", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/250368196", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Shoman, Aruzhan", "country_associated": "fr", "authorized_access_point": "Shoman, Aruzhan, 19..-...."} 1 +2024-09-11 09:06:00.063612 2024-09-11 09:06:00.063616 6979dbde-9e4a-4a8c-8ab2-f3638c6ae634 {"md5": "6f40fd270c22de5ed275a052b1ed7904", "pid": "250382598", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/250382598", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Agusti, Barnadas", "country_associated": "fr", "authorized_access_point": "Agusti, Barnadas, 19..-...."} 1 +2024-09-11 09:06:00.114791 2024-09-11 09:06:00.114795 4e910b5e-2b22-4a5a-9789-12e790772fc4 {"md5": "17cd62ca97805e0fcc5a77ad9ee013b7", "pid": "250383926", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/250383926", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Bejanin, Estelle", "country_associated": "fr", "authorized_access_point": "Bejanin, Estelle, 19..-...."} 1 +2024-09-11 09:06:00.173971 2024-09-11 09:06:00.173974 98a1204d-e780-476f-867a-076362811bc4 {"md5": "55d9d801b290af8cbcf3191c6297a5b6", "pid": "250384183", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/250384183", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Bertagnolli, Caroline", "country_associated": "fr", "authorized_access_point": "Bertagnolli, Caroline, 19..-...."} 1 +2024-09-11 09:06:00.225795 2024-09-11 09:06:00.2258 81414c15-4a82-4083-9635-8ddd825b9134 {"md5": "1f672f6f844fc3a3e93f0f5cd6c90177", "pid": "250397072", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/250397072", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Troquier, Christophe", "country_associated": "fr", "authorized_access_point": "Troquier, Christophe, 19..-...."} 1 +2024-09-11 09:06:00.278232 2024-09-11 09:06:00.278235 53b57f24-af8a-4f3c-8ab1-2f117f2366ae {"md5": "ed38e4cabe6fb9c156823ba7f00b5816", "pid": "250402823", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/250402823", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Ghionoiu, Claudia-Irina", "country_associated": "fr", "authorized_access_point": "Ghionoiu, Claudia-Irina, 19..-...."} 1 +2024-09-11 09:06:00.33546 2024-09-11 09:06:00.335464 75693ab9-954c-4f08-b4ee-a9aba3d8a804 {"md5": "91dbc8209a10c4f6084a69e58c6f472d", "pid": "250416468", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/250416468", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Leger, Lucas", "country_associated": "fr", "authorized_access_point": "Leger, Lucas, 19..-...."} 1 +2024-09-11 09:06:00.456951 2024-09-11 09:06:00.456954 986e7912-b75b-4695-92c5-7b40416f29b7 {"md5": "646f965d62cb1f860218942932c2b29e", "pid": "250599325", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/250599325", "source": "IDREF"}], "date_of_birth": "1944-12-14", "preferred_name": "Kind, Norbert", "country_associated": "gw", "authorized_access_point": "Kind, Norbert, 1944-....", "biographical_information": ["Spécialiste de philologie anglaise et allemande", "Enseignant au lycée de Hürth, Allemagne (en 1989)"]} 1 +2024-09-11 09:06:00.513491 2024-09-11 09:06:00.513497 62d5c4ed-89f6-46aa-a03f-63da94ecfdc5 {"md5": "21f4c6ad3c4b1231a767a6dbd4823647", "pid": "250603187", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/250603187", "source": "IDREF"}], "date_of_birth": "1950", "preferred_name": "Bodman, Whitney S.", "country_associated": "xxu", "authorized_access_point": "Bodman, Whitney S., 1950-....", "biographical_information": ["Professeur de religions comparées, Austin Seminary, Tex. (en 2011)"]} 1 +2024-09-11 09:06:00.570633 2024-09-11 09:06:00.570637 d130ed7f-4e99-44af-99cf-1dd4efe3ced0 {"md5": "dc594962fb327677b89838830f69cd08", "pid": "250620499", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/250620499", "source": "IDREF"}], "date_of_birth": "1932", "preferred_name": "Jungkuntz, Theodore R.", "country_associated": "xx", "authorized_access_point": "Jungkuntz, Theodore R., 1932-...."} 1 +2024-09-11 09:06:00.628546 2024-09-11 09:06:00.628551 7e95be40-5cfb-4f92-8c4f-82c1c2c25d2e {"md5": "a517867e03d6f9bf285e0bb3a20ffb3f", "pid": "250649691", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/250649691", "source": "IDREF"}], "date_of_birth": "1930-01-12", "preferred_name": "Pretre, Gilbert", "country_associated": "fr", "authorized_access_point": "Pretre, Gilbert, 1930-....", "biographical_information": ["Titulaire d'une thèse en Médecine (Lyon, 1957)"]} 1 +2024-09-11 09:06:00.690272 2024-09-11 09:06:00.690276 d3bf46ad-c026-4a76-9962-952c20cfd385 {"md5": "b31ed452b3ff70fa2be6b4d81a61bb94", "pid": "250664968", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/250664968", "source": "IDREF"}], "date_of_birth": "1758", "date_of_death": "1829", "preferred_name": "Giusti, Giambattista", "country_associated": "it", "authorized_access_point": "Giusti, Giambattista, 1758-1829", "biographical_information": ["Librettiste"]} 1 +2024-09-11 09:06:00.755177 2024-09-11 09:06:00.755182 b037dfdf-fbde-4a5e-b910-63f8cea5693b {"md5": "a6daf7655ad9907e435dfd3caa3c3aa3", "pid": "250680505", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/250680505", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Maringue, Liliane", "country_associated": "fr", "authorized_access_point": "Maringue, Liliane, 19..-....", "biographical_information": ["A soutenu un mémoire en médecine agricole (Tours, 1977)"]} 1 +2024-09-11 09:06:00.822329 2024-09-11 09:06:00.822334 a655073a-43e5-41fa-b511-19aff96e9d13 {"md5": "e11c440fe19376ae2619225ae41acdac", "pid": "250907801", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/250907801", "source": "IDREF"}], "preferred_name": "National center for atmospheric research (Etats-Unis). Atmospheric chemistry division", "country_associated": "xxu", "date_of_establishment": "19XX", "authorized_access_point": "National center for atmospheric research (Etats-Unis). Atmospheric chemistry division"} 1 +2024-09-11 09:06:00.878448 2024-09-11 09:06:00.878451 2d4fa320-1011-4070-9d5a-d9e363bcfb0f {"md5": "047da4ab5faa7ce34a2426eb2f239985", "pid": "250949903", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/250949903", "source": "IDREF"}], "variant_name": ["JCDCG 2000"], "preferred_name": "Japan Conference on Discrete and Computational Geometry", "country_associated": "ja", "date_of_termination": "2000-11-25", "variant_access_point": ["JCDCG 2000"], "date_of_establishment": "2000-11-22", "authorized_access_point": "Japan Conference on Discrete and Computational Geometry (2000 ; Tokyo)"} 1 +2024-09-11 09:06:00.935116 2024-09-11 09:06:00.935119 c4370a91-e42f-49dc-807e-c104479e5d04 {"md5": "0f5de0b1a57f718a20fcb76f1ba35868", "pid": "251014878", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251014878", "source": "IDREF"}], "variant_name": ["Khrustalev, A. V."], "date_of_birth": "19XX", "preferred_name": "Hrustalev, A. V.", "country_associated": "ru", "variant_access_point": ["Khrustalev, A. V."], "authorized_access_point": "Hrustalev, A. V., 19..-...."} 1 +2024-09-11 09:06:00.996885 2024-09-11 09:06:00.996891 f78bc9a3-edd1-4a7d-b170-690aa5d02b76 {"md5": "02ffac9ca1acade35ae05a49a69e27d4", "pid": "251123022", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ile"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251123022", "source": "IDREF"}], "preferred_name": "Association por International Servicie", "country_associated": "sz", "authorized_access_point": "Association por International Servicie"} 1 +2024-09-11 09:06:01.088493 2024-09-11 09:06:01.088498 68eeea0a-d59d-4c7e-9dd9-0cf9e1c514a1 {"md5": "21601b105504449249762b52623ff676", "pid": "251131807", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251131807", "source": "IDREF"}], "preferred_name": "Hurst, R.C.", "country_associated": "xxk", "authorized_access_point": "Hurst, R.C."} 1 +2024-09-11 09:06:01.14892 2024-09-11 09:06:01.148924 7d1deaf5-4c7f-4ccb-843b-3b6037e0b30e {"md5": "b06d54a782314afc84170cc26ba573f2", "pid": "251138607", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251138607", "source": "IDREF"}], "variant_name": ["Lewandowski, Hervé"], "date_of_birth": "1964", "preferred_name": "Lewandowski, Hervé", "country_associated": "fr", "variant_access_point": ["Lewandowski, Hervé"], "authorized_access_point": "Lewandowski, Hervé, 1964-....", "biographical_information": ["Photographe d'objets d'Art"]} 1 +2024-09-11 09:06:01.905503 2024-09-11 09:06:01.905506 1bf47869-ec05-4f34-8210-98221c233806 {"md5": "10a2cc1e0c9d8a42226aed22ed5e5045", "pid": "25154091X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25154091X", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Levine, Carin", "country_associated": "xxu", "authorized_access_point": "Levine, Carin, 19..-....", "biographical_information": ["Flûtiste"]} 1 +2024-09-11 09:06:01.204756 2024-09-11 09:06:01.20476 8b041e36-5050-4dd9-9f85-b3b2b825d647 {"md5": "ace2b32256ed6a7eb7b092bc39da18c1", "pid": "251195627", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251195627", "source": "IDREF"}], "preferred_name": "Vuittenez, Florence", "country_associated": "fr", "authorized_access_point": "Vuittenez, Florence", "biographical_information": ["Pharmacienne d'officine à Mondoubleau (Loir et Cher, France). Directrice d’une thèse pratique d'exercice (Pharmacie) à l'université de Tours en 2020"]} 1 +2024-09-11 09:06:01.262127 2024-09-11 09:06:01.262131 bee63455-4a80-46fc-bb66-cdeea2c8482a {"md5": "43ba6c83845c788193a34ff304ee4137", "pid": "251202283", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251202283", "source": "IDREF"}], "date_of_birth": "1912-05-09", "date_of_death": "2001-02-13", "preferred_name": "Simon, George Thomas", "country_associated": "xxu", "authorized_access_point": "Simon, George Thomas, 1912-2001", "biographical_information": ["Musicologue", "Lieu de naissance New York. Lieu de décès New York"]} 1 +2024-09-11 09:06:01.324891 2024-09-11 09:06:01.324895 5f281b50-80c9-4738-92f2-e024ead763c2 {"md5": "084720ce7e73839502fbd43b77df689b", "pid": "251278492", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["pol"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251278492", "source": "IDREF"}], "preferred_name": "Pomian, Andrzej", "country_associated": "pl", "authorized_access_point": "Pomian, Andrzej"} 1 +2024-09-11 09:06:01.373177 2024-09-11 09:06:01.373181 e1ed9997-612f-4e7a-af46-53773e7c7e7f {"md5": "7a22a3f298c04ead388e7d4ada33d880", "pid": "251314677", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251314677", "source": "IDREF"}], "date_of_birth": "1934", "preferred_name": "Bergsma, Jurrit", "country_associated": "xx", "authorized_access_point": "Bergsma, Jurrit, 1934-....", "biographical_information": ["En poste:Loyola university of Chicago, Ill"]} 1 +2024-09-11 09:06:01.423575 2024-09-11 09:06:01.423578 ccf5b6f7-58a9-44f8-8bfd-93c17e1c1b24 {"md5": "4648fb8a070a2401600588f0a0d4c5a7", "pid": "251360164", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251360164", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Bernabé, Claude", "country_associated": "fr", "authorized_access_point": "Bernabé, Claude, 19..-...."} 1 +2024-09-11 09:06:01.474896 2024-09-11 09:06:01.474901 71c0ed61-7fde-4311-bab7-3fde07a83b59 {"md5": "35f6e623fc917a2f0e02b9c1e0c16b32", "pid": "251394581", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251394581", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Forgács, Robert", "country_associated": "at", "authorized_access_point": "Forgács, Robert, 19..-....", "biographical_information": ["Musicologue. - Traducteur"]} 1 +2024-09-11 09:06:01.526505 2024-09-11 09:06:01.52651 0c1e3293-cdca-42f3-ab94-0f09612d61b4 {"md5": "49a34a5a8aee37e32bb8209f1a7bf14e", "pid": "251396312", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251396312", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Martine, Layng Junior", "country_associated": "xx", "authorized_access_point": "Martine, Layng Junior, 19..-....", "biographical_information": ["Musicien et parolier"]} 1 +2024-09-11 09:06:01.580422 2024-09-11 09:06:01.580426 2d2122f4-0036-4b2c-8e43-b4728a9c5391 {"md5": "2bfb99b8388ffe89e33dfd069c4da39f", "pid": "251411699", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251411699", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Panas, Mario", "country_associated": "xx", "authorized_access_point": "Panas, Mario, 19..-....", "biographical_information": ["Compositeur de chansons"]} 1 +2024-09-11 09:06:01.632885 2024-09-11 09:06:01.632889 a5b9302d-f11e-4273-980d-61420bc8418d {"md5": "3139350a1d55b68f9bfaed570151360e", "pid": "251429180", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251429180", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Henriot, Véronique", "country_associated": "fr", "authorized_access_point": "Henriot, Véronique, 19..-...."} 1 +2024-09-11 09:06:01.688747 2024-09-11 09:06:01.688752 4fb2ddd4-6570-4bb7-adef-45327c784cdf {"md5": "e6876f6722b7dc6fa430257fdc828b4c", "pid": "251432122", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251432122", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Lauren, Jillian", "country_associated": "xxu", "authorized_access_point": "Lauren, Jillian, 19..-....", "biographical_information": ["Master en \\"écriture créative\\". - Écrivain et comédienne"]} 1 +2024-09-11 09:06:01.741661 2024-09-11 09:06:01.741665 5b33df22-a4a3-4790-a2fe-1de2ca384a04 {"md5": "c74241c4098705f5b731834a57089139", "pid": "251443361", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251443361", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Valdambrini, Fabio", "country_associated": "it", "authorized_access_point": "Valdambrini, Fabio, 19..-....", "biographical_information": ["Auteur de bandes dessinées"]} 1 +2024-09-11 09:06:01.798332 2024-09-11 09:06:01.798337 19e7c10a-fb99-45a7-ac01-a827321f98f2 {"md5": "656b29be6d8307c9862a84cc25a5aced", "pid": "251455394", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251455394", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Lancaster, Mike A.", "country_associated": "xxk", "authorized_access_point": "Lancaster, Mike A., 19..-....", "biographical_information": ["Auteur de science-fiction"]} 1 +2024-09-11 09:06:01.853424 2024-09-11 09:06:01.853428 e7c51132-cc09-4523-b934-0b808f5e6e32 {"md5": "72a70f3b5c2a20037ef9a4d025670f65", "pid": "251520528", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251520528", "source": "IDREF"}], "date_of_birth": "1940", "preferred_name": "Lye, Kåre Arnstein", "country_associated": "no", "authorized_access_point": "Lye, Kåre Arnstein, 1940-....", "biographical_information": ["En poste : Department of ecology and natural resources management, Norwegian university of life sciences, Ås (en 2012)"]} 1 +2024-09-11 09:06:01.961528 2024-09-11 09:06:01.961533 3999a9af-09fb-4887-b586-d329a03f6cd0 {"md5": "c3cd4f193f7ed9c0d8afa0cd951f936e", "pid": "25156584X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25156584X", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Marcinkowska, Barbara", "authorized_access_point": "Marcinkowska, Barbara, 19..-....", "biographical_information": ["Violoncelliste"]} 1 +2024-09-11 09:06:02.01904 2024-09-11 09:06:02.019044 8b372797-a642-438c-baf2-d673447a372b {"md5": "254032a4ff01618d10f324fe95e41e5b", "pid": "25158917X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25158917X", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Metzler, Berenike", "country_associated": "gw", "authorized_access_point": "Metzler, Berenike, 19..-....", "biographical_information": ["Écrit aussi en arabe", "Chaire de philologie orientale et d'études islamiques : Lehrstuhl für Orientalische Philologie und Islamwissenschaft, Friedrich-Alexander-Universität Erlangen-Nürnberg, Erlangen, Allemagne (en 2017)"]} 1 +2024-09-11 09:06:02.075092 2024-09-11 09:06:02.075097 4c86fc15-b701-47cc-ac2c-48a963247a29 {"md5": "dc364c4c6197e0fc885babff65bcede9", "pid": "251615014", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger", "spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251615014", "source": "IDREF"}], "date_of_birth": "1906", "date_of_death": "1993", "preferred_name": "Blum, Sigwart", "country_associated": "ag", "authorized_access_point": "Blum, Sigwart, 1906-1993", "biographical_information": ["Historien d'art. - Photographe. - Né en Allemagne, s'installe en Argentine en 1936"]} 1 +2024-09-11 09:06:02.127958 2024-09-11 09:06:02.127963 6e4f7738-4369-4021-bcea-fc2b2cffc8b1 {"md5": "797b6cb108271af7d90f329b4434bfe4", "pid": "251625338", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251625338", "source": "IDREF"}], "variant_name": ["Gortchakova, A. A."], "date_of_birth": "1842", "date_of_death": "1913", "preferred_name": "Gorčakova, Aleksandra Aleksandrovna", "country_associated": "ru", "variant_access_point": ["Gortchakova, A. A."], "parallel_access_point": ["Горчакова, Александра Александровна, 1842-1913"], "authorized_access_point": "Gorčakova, Aleksandra Aleksandrovna, 1842-1913", "biographical_information": ["Artiste lyrique (soprano). - Traductrice. - Pédagogue. - Connue aussi sous le pseudonyme : Santagano"]} 1 +2024-09-11 09:06:02.187223 2024-09-11 09:06:02.187231 95fff209-5ee2-47c6-aba3-4deca89f03cf {"md5": "5efa58cf433dce06f82ff42c2b3ff0a9", "pid": "251629783", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["arm", "fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251629783", "source": "IDREF"}], "date_of_birth": "1926", "preferred_name": "Aprikian, Garbis", "country_associated": "fr", "parallel_access_point": ["Ap̕rikean, Karpis, 1926-....", "Ափրիկեան, Կարպիս, 1926-...."], "authorized_access_point": "Aprikian, Garbis, 1926-....", "biographical_information": ["Compositeur, chef de choeur et chef d'orchestre. - Élève de Frapicini. - A fondé le choeur Hamazkaïne en 1948 au Caire. - A dirigé à Paris la chorale arménienne Sipan-Komitas (1953-2009)", "Lieu de naissance Alexandrie (Egypte)"]} 1 +2024-09-11 09:06:02.28809 2024-09-11 09:06:02.288096 a576142a-7f26-4d40-b101-a7690471c87f {"md5": "7bff7ab5ca6de22ab45881b1bf3766ad", "pid": "251650375", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251650375", "source": "IDREF"}], "date_of_birth": "1981-03-15", "preferred_name": "Djeya kamdom, Yves gabriel", "country_associated": "cm", "authorized_access_point": "Djeya kamdom, Yves gabriel, 1981-....", "biographical_information": ["Auteur d'une thèse en Droit public à Lille 2 en 2019"]} 1 +2024-09-11 09:06:02.346615 2024-09-11 09:06:02.34662 213f105f-6a85-4acc-b5df-9c0e0a618d72 {"md5": "9058c8cf931d96e4a3401d60f4213c89", "pid": "251660346", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251660346", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Bodoc, Clémence", "country_associated": "fr", "authorized_access_point": "Bodoc, Clémence, 19..-....", "biographical_information": ["Diplômée de Science po Lille, rédactrice en chef d'un magazine féminin, elle se partage aujourd'hui entre un projet créateur de valeur et sa série de podcast"]} 1 +2024-09-11 09:06:02.396482 2024-09-11 09:06:02.396487 e5f158df-5522-44bf-a21d-111c9eda144d {"md5": "7cdcb81fdf1c22d5ba110f9dff97c3bb", "pid": "251871533", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/251871533", "source": "IDREF"}], "preferred_name": "Stichting H.N. Werkman (Pays-Bas)", "country_associated": "ne", "date_of_establishment": "1962", "authorized_access_point": "Stichting H.N. Werkman (Pays-Bas)", "biographical_information": ["Fondation créée dans le but de promouvoir l'oeuvre de Hendrik Nicolaas Werman, artiste et imprimeur, auprès d'un large public, en partie grâce à la publication d'un catalogue raisonné. Son premier président fut Piet Sanders."]} 1 +2024-09-11 09:06:02.445971 2024-09-11 09:06:02.445974 5335d2ab-a646-4c7e-9261-716c134d9dd9 {"md5": "e40c7f4c8a0eda26865ba952f782588e", "pid": "252252799", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/252252799", "source": "IDREF"}], "preferred_name": "Les journées de l'énergie", "authorized_access_point": "Les journées de l'énergie (2001 ; Palais de la découverte, Paris)"} 1 +2024-09-11 09:06:02.501181 2024-09-11 09:06:02.501185 710c3274-3cb1-4d93-8001-95cd97e6f53e {"md5": "ef586d10ec55c25649e17d4b3e7e6602", "pid": "25234717X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25234717X", "source": "IDREF"}], "date_of_birth": "1990-10-06", "preferred_name": "Desidera, Elena", "country_associated": "it", "authorized_access_point": "Desidera, Elena, 1990-....", "biographical_information": ["Auteur d'une thèse en Sciences de l'environnement à Université Côte d'Azur en 2020"]} 1 +2024-09-11 09:06:02.551931 2024-09-11 09:06:02.551935 c1735c3d-aa3d-431a-9794-4f6ffcbf7841 {"md5": "5891b234c9967628458e04482c72ecaa", "pid": "252382781", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/252382781", "source": "IDREF"}], "date_of_birth": "1988-12-16", "preferred_name": "Leglise, Joris", "country_associated": "fr", "authorized_access_point": "Leglise, Joris, 1988-....", "biographical_information": ["Auteur d'une thèse en Chimie et Physique de l’Environnement à Orléans en 2019"]} 1 +2024-09-11 09:06:02.607627 2024-09-11 09:06:02.607631 a91341a4-f5fc-4eb1-abd4-a18be809e901 {"md5": "a882b2b7db2d871ac08a9dde2aa4d0b7", "pid": "252388208", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/252388208", "source": "IDREF"}], "variant_name": ["Sussman/Prejza and company"], "preferred_name": "Sussman / Prejza & company", "country_associated": "xxu", "variant_access_point": ["Sussman/Prejza and company"], "authorized_access_point": "Sussman / Prejza & company", "biographical_information": ["Agence d'architecture"]} 1 +2024-09-11 09:06:02.662845 2024-09-11 09:06:02.66285 cc636d21-ca1a-44fe-b682-248400f4b879 {"md5": "a83b7feb4499907ce82beaa9b7951516", "pid": "252426398", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/252426398", "source": "IDREF"}], "preferred_name": "Combes-Deslaugiers, Barbara", "country_associated": "fr", "authorized_access_point": "Combes-Deslaugiers, Barbara", "biographical_information": ["Médecin"]} 1 +2024-09-11 09:06:02.715797 2024-09-11 09:06:02.715801 d249a83b-815a-4fb7-9459-7dc90b5eefe1 {"md5": "abef4983d7705fbd324d051a4ae06e35", "pid": "252437888", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "médecin", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/252437888", "source": "IDREF"}], "date_of_birth": "18XX", "date_of_death": "19XX", "preferred_name": "Gleize, P., médecin", "authorized_access_point": "Gleize, P., 18..-19.., médecin", "biographical_information": ["Médecin"]} 1 +2024-09-11 09:06:02.771213 2024-09-11 09:06:02.771216 996f9cf1-4edc-4259-92c4-0e2f61d86056 {"md5": "1ac5e280238f70d63f922e014bb6f5e0", "pid": "252443748", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/252443748", "source": "IDREF"}], "variant_name": ["Navailles-Angos, Pyrénées-Atlantiques. Bibliothèque municipale"], "preferred_name": "Bibliothèque municipale (Navailles-Angos, Pyrénées-Atlantiques)", "country_associated": "fr", "variant_access_point": ["Navailles-Angos, Pyrénées-Atlantiques. Bibliothèque municipale"], "authorized_access_point": "Bibliothèque municipale (Navailles-Angos, Pyrénées-Atlantiques)"} 1 +2024-09-11 09:06:02.822715 2024-09-11 09:06:02.822719 7e4f247c-be7e-461e-959c-f5509abeb264 {"md5": "235006caf4e1a4702d5b17157aa44f98", "pid": "252462599", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/252462599", "source": "IDREF"}], "date_of_birth": "1956", "preferred_name": "Raja, Raffaele", "country_associated": "it", "authorized_access_point": "Raja, Raffaele, 1956-....", "biographical_information": ["Architecte"]} 1 +2024-09-11 09:06:02.879225 2024-09-11 09:06:02.87923 779752a7-6f05-4160-8c0a-21ae34f86e26 {"md5": "f1d2f73d92e4c26fc105d714df65a920", "pid": "25256541X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25256541X", "source": "IDREF"}], "date_of_birth": "1790", "date_of_death": "1840", "preferred_name": "Agazzini, Michele", "country_associated": "it", "authorized_access_point": "Agazzini, Michele, 1790-1840", "biographical_information": ["Auteur"]} 1 +2024-09-11 09:06:02.934998 2024-09-11 09:06:02.935001 50bcd84d-2bcf-41a9-af80-84ec47204e7f {"md5": "07a8c37263847328f3ced6e4837e59c0", "pid": "25268088X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25268088X", "source": "IDREF"}], "date_of_birth": "1964", "preferred_name": "Göben, Jens", "country_associated": "xx", "authorized_access_point": "Göben, Jens, 1964-....", "biographical_information": ["En poste, Bundesinstitut für Arzneimittel und Medizinprodukte, Bonn, Allemagne (en 2004)"]} 1 +2024-09-11 09:06:02.990734 2024-09-11 09:06:02.990739 48e01cb8-6885-4b85-8928-ac0d5cfa2b5f {"md5": "f30bccaeb566c93c91481f52d21c4786", "pid": "252755294", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["tam", "eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/252755294", "source": "IDREF"}], "variant_name": ["சோமசுந்தரம், பி. எஸ்.", "Somasundaram, P.S."], "date_of_birth": "1932", "preferred_name": "Cōmacuntaram, Pi. Es.", "country_associated": "ii", "variant_access_point": ["Somasundaram, P.S."], "authorized_access_point": "Cōmacuntaram, Pi. Es., 1932-....", "biographical_information": ["Professeur et chef du département de tamoul, D.G. Vaishnava collège, Chennai, TN, Inde du Sud"]} 1 +2024-09-11 09:06:03.046388 2024-09-11 09:06:03.046393 a7efb586-b6b1-4b20-9186-5cb5dce16e12 {"md5": "742d2a3a0a459cdd0fa2aa705353b2ed", "pid": "252764277", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/252764277", "source": "IDREF"}], "date_of_birth": "1939-03-22", "preferred_name": "Westi, Kurt", "country_associated": "dk", "authorized_access_point": "Westi, Kurt, 1939-....", "biographical_information": ["Ténor", "Débute en 1960 à l'Opéra de Fionie, Odense", "Membre de la troupe de l'Opéra d'Oslo (de 1980 à 1986) et de Nationaltheater, Mannheim (depuis 1986)"]} 1 +2024-09-11 09:06:03.101126 2024-09-11 09:06:03.101129 635dea8e-c0b1-47cd-bad0-dba6cd5ff902 {"md5": "5475b431dd46be45d02e0e611bd773ed", "pid": "252855477", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/252855477", "source": "IDREF"}], "variant_name": ["Hendriks, Louis", "Hendrix, Léon-Louis"], "date_of_birth": "1827", "date_of_death": "1888-09-22", "preferred_name": "Hendrix, Louis", "country_associated": "be", "variant_access_point": ["Hendriks, Louis", "Hendrix, Léon-Louis"], "authorized_access_point": "Hendrix, Louis, 1827-1888", "biographical_information": ["Peintre"]} 1 +2024-09-11 09:06:03.158059 2024-09-11 09:06:03.158063 40386c51-61af-484a-91b5-fb106718d70d {"md5": "dfe944b9286e4329f0aede501631ad91", "pid": "252916263", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/252916263", "source": "IDREF"}], "preferred_name": "Glöckner, Melanie", "country_associated": "gw", "authorized_access_point": "Glöckner, Melanie", "biographical_information": ["Etudiante en égyptologie"]} 1 +2024-09-11 09:06:03.211898 2024-09-11 09:06:03.211901 57f5091d-469c-4d47-a9af-7ac4a17debae {"md5": "2834fcf59c4de6b720c0530bf65179c0", "pid": "25295114X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25295114X", "source": "IDREF"}], "date_of_birth": "1928-08-27", "date_of_death": "1971-02-03", "preferred_name": "Gygax, Ueli", "country_associated": "sz", "authorized_access_point": "Gygax, Ueli, 1928-1971", "biographical_information": ["Peintre suisse"]} 1 +2024-09-11 09:06:03.268841 2024-09-11 09:06:03.268846 328c21ec-7f61-4bfe-a622-cecb133ee26f {"md5": "7f127ec3e51e26d9ff8ae9c9bb1ce629", "pid": "25304653X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25304653X", "source": "IDREF"}], "preferred_name": "Schwartz, Robert B.", "country_associated": "xxk", "authorized_access_point": "Schwartz, Robert B.", "biographical_information": ["Educateur"]} 1 +2024-09-11 09:06:03.329237 2024-09-11 09:06:03.329241 14eaad0b-0066-412e-bd9c-663ed4e7db5f {"md5": "0ec49f4cb5637c2299abaae0765bf7a3", "pid": "253143462", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["lit"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/253143462", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Aviženis, Jūra", "country_associated": "li", "authorized_access_point": "Aviženis, Jūra, 19..-....", "biographical_information": ["Traduit du lituanien à l'anglais"]} 1 +2024-09-11 09:06:03.389287 2024-09-11 09:06:03.38929 a2bb1038-1385-4108-be4f-1161c2556928 {"md5": "42663e78cb2d943ea629ed937ccd0e54", "pid": "253180627", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/253180627", "source": "IDREF"}], "date_of_birth": "19?", "preferred_name": "Katz, Gal", "authorized_access_point": "Katz, Gal, 19?-....", "biographical_information": ["Auteur"]} 1 +2024-09-11 09:06:03.444806 2024-09-11 09:06:03.44481 39ebfba0-ac20-4e28-bea2-badeeff76a48 {"md5": "3cfda1910335c16efa1ac0a093eabf9b", "pid": "253203155", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/253203155", "source": "IDREF"}], "preferred_name": "Fincham, Walter Henry Angel", "country_associated": "xxk", "authorized_access_point": "Fincham, Walter Henry Angel", "biographical_information": ["Physicien", "Spécialiste de physique optique"]} 1 +2024-09-11 09:06:03.534803 2024-09-11 09:06:03.534808 5cf959b0-43de-45ba-bc11-455ab21032b5 {"md5": "c38115d3cd977f16258a62c70b4843b1", "pid": "25322859X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25322859X", "source": "IDREF"}], "variant_name": ["神田, 由築"], "date_of_birth": "1965", "preferred_name": "Kanda, Yutsuki", "country_associated": "ja", "variant_access_point": ["神田, 由築, 1965-...."], "authorized_access_point": "Kanda, Yutsuki, 1965-...."} 1 +2024-09-11 09:06:03.589945 2024-09-11 09:06:03.589949 d08f3bc5-c71a-4225-a11c-b2d6d13f911f {"md5": "0befeb321931be3bf1a9c06dee5e4842", "pid": "25324403X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25324403X", "source": "IDREF"}], "variant_name": ["Arnal, Nikita Emilie Marie"], "date_of_birth": "1994-10-12", "preferred_name": "Arnal, Nikita", "country_associated": "fr", "variant_access_point": ["Arnal, Nikita Emilie Marie"], "authorized_access_point": "Arnal, Nikita, 1994-....", "biographical_information": ["Titulaire d'une thèse d'exercice en médecine vétérinaire (Lyon 1, 2020)"]} 1 +2024-09-11 09:06:03.641932 2024-09-11 09:06:03.641936 73f52de0-a744-46d1-9e7c-54c23cdca490 {"md5": "e3a1026ee421e44dbca01b8e808edf5e", "pid": "253263298", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/253263298", "source": "IDREF"}], "preferred_name": "Baweja, Priyanka", "country_associated": "ii", "authorized_access_point": "Baweja, Priyanka"} 1 +2024-09-11 09:06:03.694015 2024-09-11 09:06:03.694019 673832cc-967b-42d9-9394-3f8d83ae9937 {"md5": "610f951ce2a5f354a65efb2e7ce47b96", "pid": "253507790", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/253507790", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Kapfer, Bruno", "country_associated": "fr", "authorized_access_point": "Kapfer, Bruno, 19..-....", "biographical_information": ["Auteur(e) d'une thèse de docteur-ingénieur en électrochimie analytique (Grenoble INPG, 1982)"]} 1 +2024-09-11 09:06:03.752573 2024-09-11 09:06:03.752576 b5fb498c-ad41-4016-a060-c9298bb671f0 {"md5": "7b86b299e998e729384c351709435b2a", "pid": "253610958", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["vie"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/253610958", "source": "IDREF"}], "variant_name": ["Vietnam. Viện Nghiên cứu Trung Quốc", "Institut de recherches de Chine (Vietnam)", "Uỷ ban khoa học xã hội (Việt Nam). Viện Nghiên cứu Trung Quốc", "Trung tâm nghiên cứu Trung Quốc", "Comité des Sciences sociales du Viet Nam. Institut de recherches de Chine", "Trung tâm khoa học xã hội và nhân văn quốc gia (Việt Nam). Institut de recherches de Chine", "Centre national des Sciences sociales et Humaines (Việt Nam). Institut de recherches de Chine", "Viện Hàn lâm Khoa học xã hội Việt Nam. Viện Nghiên cứu Trung Quốc", "Trung tâm khoa học xã hội và nhân văn quốc gia (Việt Nam). Viện Nghiên cứu Trung Quốc", "Académie des sciences sociales. Institut de recherches de Chine", "Studie Center for China (Vietnam)", "Studie Center for China of Vietnam"], "preferred_name": "Viện Nghiên cứu Trung Quốc (Việt Nam)", "country_associated": "vm", "variant_access_point": ["Vietnam. Viện Nghiên cứu Trung Quốc", "Institut de recherches de Chine (Vietnam)", "Uỷ ban khoa học xã hội (Việt Nam). Viện Nghiên cứu Trung Quốc", "Trung tâm nghiên cứu Trung Quốc", "Comité des Sciences sociales du Viet Nam. Institut de recherches de Chine", "Trung tâm khoa học xã hội và nhân văn quốc gia (Việt Nam). Institut de recherches de Chine", "Centre national des Sciences sociales et Humaines (Việt Nam). Institut de recherches de Chine", "Viện Hàn lâm Khoa học xã hội Việt Nam. Viện Nghiên cứu Trung Quốc", "Trung tâm khoa học xã hội và nhân văn quốc gia (Việt Nam). Viện Nghiên cứu Trung Quốc", "Académie des sciences sociales. Institut de recherches de Chine", "Studie Center for China (Vietnam)", "Studie Center for China of Vietnam"], "authorized_access_point": "Viện Nghiên cứu Trung Quốc (Việt Nam)"} 1 +2024-09-11 09:06:03.804688 2024-09-11 09:06:03.804691 3c150be5-1261-496a-bc1a-b0f1313bf9c0 {"md5": "637baf4f7076612438ba825744352157", "pid": "253613957", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/253613957", "source": "IDREF"}], "variant_name": ["Joffres, Pierre-Didier"], "date_of_birth": "17XX", "date_of_death": "18XX", "preferred_name": "Joffrès, Pierre-Didier", "country_associated": "fr", "variant_access_point": ["Joffres, Pierre-Didier"], "authorized_access_point": "Joffrès, Pierre-Didier, 17..-18..", "biographical_information": ["Avocat à la Cour royale de Paris"]} 1 +2024-09-11 09:06:03.856617 2024-09-11 09:06:03.85662 a45a2731-796f-4940-aaf6-4fb75676a07c {"md5": "9abc1081edb25bdc943c463fa801eed4", "pid": "253654041", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/253654041", "source": "IDREF"}], "variant_name": ["Dupasquier, Jacques-Louis", "Pasquier, Jacques-Louis du"], "date_of_birth": "1762", "date_of_death": "1830", "preferred_name": "Du Pasquier, Jacques-Louis", "country_associated": "sz", "variant_access_point": ["Dupasquier, Jacques-Louis", "Pasquier, Jacques-Louis du"], "authorized_access_point": "Du Pasquier, Jacques-Louis, 1762-1830", "biographical_information": ["Pasteur neuchâtelois (consacré le 6 août 1783). - Chapelain du roi de Prusse à Berlin (1789-ca.1791). - Député aux Audiences générales. - Un des fondateurs de la Caisse d'épargne (1812). - Aumônier du contingent neuchâtelois levé en 1815. - Rédacteur du \\"Messager boiteux de Neuchâtel\\" (1805-1830)"]} 1 +2024-09-11 09:06:03.911301 2024-09-11 09:06:03.911304 d66187d8-e757-4e1c-8c62-6c39aba4a9ae {"md5": "04b31c4df31bafc6a2412219033e2459", "pid": "253760844", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/253760844", "source": "IDREF"}], "preferred_name": "Lazana, Aikaterini", "country_associated": "xx", "authorized_access_point": "Lazana, Aikaterini", "biographical_information": ["Juriste"]} 1 +2024-09-11 09:06:04.034744 2024-09-11 09:06:04.034748 c7bee5f1-083b-4201-a7c9-c1b09e63a06e {"md5": "8eac8c3d6ad5a2f5d247682d5d71d304", "pid": "253814103", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/253814103", "source": "IDREF"}], "variant_name": ["FST TCS 2000", "FSTTCS 2000"], "preferred_name": "Conference on foundations of software technology and theoretical computer science", "country_associated": "ii", "date_of_termination": "2000-12-15", "variant_access_point": ["FST TCS 2000", "FSTTCS 2000"], "date_of_establishment": "2000-12-13", "authorized_access_point": "Conference on foundations of software technology and theoretical computer science (20 ; 2000 ; New Delhi)"} 1 +2024-09-11 09:06:04.090142 2024-09-11 09:06:04.090145 109900c6-cda1-4245-9ef3-4a31f1799518 {"md5": "c5eaf6505a7ff4a1e42637a947d186e1", "pid": "253879965", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/253879965", "source": "IDREF"}], "variant_name": ["Wohlfahrt, Joannes Augustus"], "date_of_birth": "1750?", "preferred_name": "Wohlfahrt, Johann August", "country_associated": "gw", "variant_access_point": ["Wohlfahrt, Joannes Augustus, 1750?-...."], "authorized_access_point": "Wohlfahrt, Johann August, 1750?-....", "biographical_information": ["Médecin"]} 1 +2024-09-11 09:06:04.138691 2024-09-11 09:06:04.138696 b9570f70-9b39-4c64-9bf8-504f551dd924 {"md5": "75b36a516b632ba806896f68069e1bf6", "pid": "25394144X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["pol"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25394144X", "source": "IDREF"}], "date_of_birth": "1977", "preferred_name": "Nowak, Jacek", "country_associated": "pl", "authorized_access_point": "Nowak, Jacek, 1977-....", "biographical_information": ["Sociologue"]} 1 +2024-09-11 09:06:04.197011 2024-09-11 09:06:04.197016 53a4a0c7-e364-475b-9989-a64dad81d02e {"md5": "53ecc51324c1c707094fc7f9d42dd8eb", "pid": "253973031", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/253973031", "source": "IDREF"}], "date_of_birth": "1970", "preferred_name": "Bulliard, Éric", "country_associated": "sz", "authorized_access_point": "Bulliard, Éric, 1970-....", "biographical_information": ["Journaliste à La Gruyère, responsable de la rubrique culture (en 2020). Titulaire d’une licence en lettres (littérature française et histoire de l’art) de l’Université de Fribourg (Suisse)"]} 1 +2024-09-11 09:06:04.253279 2024-09-11 09:06:04.253283 da451263-60ca-4029-813a-8039cec16518 {"md5": "7b5e08b222eb18373d01a85ba574d5a3", "pid": "254069606", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254069606", "source": "IDREF"}], "variant_name": ["Philippe Durand, Claude-"], "preferred_name": "Durand, Claude-Philippe", "country_associated": "fr", "variant_access_point": ["Philippe Durand, Claude-, ....-...."], "authorized_access_point": "Durand, Claude-Philippe, ....-...."} 1 +2024-09-11 09:06:04.307057 2024-09-11 09:06:04.307061 744c06ce-9c5b-4306-bfb2-f2a8ccf39077 {"md5": "c65a6c69b4fa503298fcc425df8829ae", "pid": "254110754", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["pol"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254110754", "source": "IDREF"}], "variant_name": ["Kavalec, Stefan", "Kavalec, stepan"], "date_of_birth": "1953", "preferred_name": "Kawalec, Stefan", "country_associated": "pl", "variant_access_point": ["Kavalec, Stefan", "Kavalec, stepan"], "authorized_access_point": "Kawalec, Stefan, 1953-....", "biographical_information": ["Née en 1953. Economiste."]} 1 +2024-09-11 09:06:04.360943 2024-09-11 09:06:04.360948 92ef18be-df18-4d2f-8761-844fd347a44c {"md5": "02de0814c49d28860d44695c124e8839", "pid": "254146279", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254146279", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Ster, François", "country_associated": "fr", "authorized_access_point": "Ster, François, 19..-....", "biographical_information": ["Auteur en médecine"]} 1 +2024-09-11 09:06:04.412033 2024-09-11 09:06:04.412037 f0f44288-5056-412e-ab9b-de070f9ec8e1 {"md5": "00bff91a7e129e9b73fd103aea2f408c", "pid": "254215696", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254215696", "source": "IDREF"}], "date_of_birth": "1932", "date_of_death": "2015", "preferred_name": "Green, Martin", "country_associated": "xxk", "authorized_access_point": "Green, Martin, 1932-2015", "biographical_information": ["Ecrivain, poète anglais né à Stockport (Cheshire). Il fonde le magasine littéraire \\"Nimbus\\" avec Tristram Hull en 1951."]} 1 +2024-09-11 09:06:04.495792 2024-09-11 09:06:04.495795 254e7ff7-2e31-435d-b6db-4cc0936680de {"md5": "7fea4f020ef4b14c6999718b41119e51", "pid": "254232787", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254232787", "source": "IDREF"}], "preferred_name": "Symposium on foundations of computer science", "country_associated": "xxu", "date_of_termination": "1993-11-05", "date_of_establishment": "1993-11-03", "authorized_access_point": "Symposium on foundations of computer science (34 ; 1993 ; Palo Alto, Calif.)"} 1 +2024-09-11 09:06:04.550568 2024-09-11 09:06:04.550571 d429c98c-7b50-47bd-9201-8b449493d309 {"md5": "481a7704655a4ec76e18fe1e8e3074b1", "pid": "254344445", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254344445", "source": "IDREF"}], "preferred_name": "IMA Conference on Cryptography and coding", "country_associated": "xxk", "date_of_termination": "1997-12-19", "date_of_establishment": "1997-12-17", "authorized_access_point": "IMA Conference on Cryptography and coding (06 ; 1997 ; Cirencester, Royaume-Uni)"} 1 +2024-09-11 09:06:04.604046 2024-09-11 09:06:04.60405 8a5d8d25-6d96-40ec-9bd7-ccad1df9bde1 {"md5": "9ff05d32ed6b40e3bf24395482f684ac", "pid": "254374557", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254374557", "source": "IDREF"}], "variant_name": ["Isotopes in weed research"], "preferred_name": "Proceedings of the symposium on the use of Isotopes in weed research", "variant_access_point": ["Isotopes in weed research (Vienna ; 25-29 october 1965)"], "authorized_access_point": "Proceedings of the symposium on the use of Isotopes in weed research (Vienna ; 25-29 october 1965)"} 1 +2024-09-11 09:06:14.649449 2024-09-11 09:06:14.649454 4fa0012a-a462-41e0-ba0d-f9b75fdd1c5b {"md5": "9acaf591b1e9a7e3b611b390d86c99fb", "pid": "261892169", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261892169", "source": "IDREF"}], "preferred_name": "Hyatt, Laura", "country_associated": "xxu", "authorized_access_point": "Hyatt, Laura"} 1 +2024-09-11 09:06:04.68634 2024-09-11 09:06:04.686346 98b4af72-6f01-4d99-aba0-efc6d992314f {"md5": "fc3333498030807d06c68f120a5d5e1e", "pid": "254391508", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254391508", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Heckman, Christina M.", "country_associated": "xxu", "authorized_access_point": "Heckman, Christina M., 19..-....", "biographical_information": ["Professeur d'Anglais à Augusta University, Georgie"]} 1 +2024-09-11 09:06:04.741118 2024-09-11 09:06:04.741122 8672588b-e2fa-4d29-ad19-a2f8599035bb {"md5": "f6c0860c02565bfafa14019b1b0b170b", "pid": "254418422", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254418422", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Zehtabchi, Parvine", "country_associated": "ir", "authorized_access_point": "Zehtabchi, Parvine, 19..-....", "biographical_information": ["Auteur(e) d'une thèse d'université en littérature comparée (Grenoble 3, 1985)"]} 1 +2024-09-11 09:06:04.798904 2024-09-11 09:06:04.798908 129616ff-c48b-4328-bf65-689da1aa8301 {"md5": "8eebaae490620f664e5f2bb5863261c2", "pid": "254429521", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254429521", "source": "IDREF"}], "variant_name": ["Éditions Féret (Bordeaux)", "Librairie Féret (Bordeaux)", "Féret et Fils (Bordeaux)", "Féret & Fils (Bordeaux)"], "preferred_name": "Féret (Bordeaux)", "country_associated": "fr", "variant_access_point": ["Éditions Féret (Bordeaux)", "Librairie Féret (Bordeaux)", "Féret et Fils (Bordeaux)", "Féret & Fils (Bordeaux)"], "date_of_establishment": "1812", "authorized_access_point": "Féret (Bordeaux)", "biographical_information": ["Éditeur spécialisé en oenologie", "La librairie Féret a été fondée par Jean-Baptiste Féret ; son fils Michel-Édouard Féret développe dès 1841 les éditions et la librairie sous le nom de Féret et Fils", "La librairie Féret a cessé son activité en 1983 mais la maison d'édition perdure", "Adresse : 24 allées de Tourny, 33000 Bordeaux"]} 1 +2024-09-11 09:06:04.852087 2024-09-11 09:06:04.852091 38597809-94c4-489d-a4d7-444ebf80f302 {"md5": "6a448aaf3a6bf5c621d6d1ba53112e21", "pid": "254455565", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rum"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254455565", "source": "IDREF"}], "preferred_name": "Mangu, I. Gheorghe", "authorized_access_point": "Mangu, I. Gheorghe", "biographical_information": ["Médecin"]} 1 +2024-09-11 09:06:04.906757 2024-09-11 09:06:04.906761 00d338f0-e2db-4742-87a7-512b83b790d1 {"md5": "200f2d66fcd3ea5deb8b579d79efa81c", "pid": "254491758", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254491758", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Emma, Eraldo", "country_associated": "sz", "authorized_access_point": "Emma, Eraldo, 19..-....", "biographical_information": ["Capucin"]} 1 +2024-09-11 09:06:04.963145 2024-09-11 09:06:04.96315 7d5e89b0-0610-487b-a992-bb26cf2859d5 {"md5": "dede7607542c074eeec044d70446897d", "pid": "254522564", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254522564", "source": "IDREF"}], "variant_name": ["Biboum, Hugues B."], "date_of_birth": "19..", "preferred_name": "Biboum, Hugues Bertrand", "country_associated": "cm", "variant_access_point": ["Biboum, Hugues B."], "authorized_access_point": "Biboum, Hugues Bertrand, 19..-....", "biographical_information": ["Bédéiste camerounais"]} 1 +2024-09-11 09:06:05.023523 2024-09-11 09:06:05.023528 4d1ba8c3-4b1e-443c-9850-ac4a337c7d1c {"md5": "bde436ee6a3912afb93d39fba3cccde1", "pid": "254587763", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254587763", "source": "IDREF"}], "preferred_name": "Cordell Expeditions", "country_associated": "xxu", "authorized_access_point": "Cordell Expeditions"} 1 +2024-09-11 09:06:05.076334 2024-09-11 09:06:05.076338 8ff9296a-c0d9-4697-a71b-5f0ce89d4048 {"md5": "3a3649061d4c5ff473e3e5e540d68687", "pid": "254630618", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254630618", "source": "IDREF"}], "preferred_name": "Association des poètes éditeurs régionaux opérateurs sur Provence-Alpes-Côte d'Azur (Aix-en-Provence)", "country_associated": "fr", "date_of_establishment": "1985", "authorized_access_point": "Association des poètes éditeurs régionaux opérateurs sur Provence-Alpes-Côte d'Azur (Aix-en-Provence)"} 1 +2024-09-11 09:06:05.134797 2024-09-11 09:06:05.134811 bd87e45d-e710-45b2-bf4a-52e1f8dce905 {"md5": "730818077cfc9117a9caee7e7357b898", "pid": "254678475", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254678475", "source": "IDREF"}], "date_of_birth": "1885-05-05", "preferred_name": "Cinquin, François", "country_associated": "fr", "authorized_access_point": "Cinquin, François, 1885-....", "biographical_information": ["Docteur en droit, lauréat de la faculté"]} 1 +2024-09-11 09:06:05.194169 2024-09-11 09:06:05.194174 646a23a5-c2b1-4640-a94b-0d90cee82d3f {"md5": "61481f6baaaea972047830a61ad73701", "pid": "254738591", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254738591", "source": "IDREF"}], "date_of_birth": "1919", "date_of_death": "1945", "preferred_name": "Richards, Albert", "country_associated": "xxk", "authorized_access_point": "Richards, Albert, 1919-1945"} 1 +2024-09-11 09:06:05.250797 2024-09-11 09:06:05.2508 e041fd5b-a874-4a21-beca-ecd2ddc0f640 {"md5": "4d7c653cd2d9c0be4c6d46bd22d02300", "pid": "254743048", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254743048", "source": "IDREF"}], "preferred_name": "Symposium Gambro", "country_associated": "fr", "date_of_establishment": "1995", "authorized_access_point": "Symposium Gambro (16 ; 1995 ; Saint-Etienne)"} 1 +2024-09-11 09:06:05.304826 2024-09-11 09:06:05.30483 447a9c85-605f-4b46-8a1c-babc0b9061f4 {"md5": "1ba8c8c23209816862aa9a718813308f", "pid": "254747086", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254747086", "source": "IDREF"}], "date_of_birth": "1986", "preferred_name": "Jaouen, Annaïck", "country_associated": "fr", "authorized_access_point": "Jaouen, Annaïck, 1986-", "biographical_information": ["Docteur en médecine (2013, Brest). -Née le 5 août 1986 à Hennebont. -Élève de l'Université de Bretagne Occidentale - Brest. -Ancienne élève de l'Université Victor Segalen, Bordeaux"]} 1 +2024-09-11 09:06:05.365773 2024-09-11 09:06:05.365778 8daa6625-f691-4aef-ae13-479be48ae3d8 {"md5": "8b61c956741faba0e5d772a1b3e71733", "pid": "254775578", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254775578", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Rollins, Alison C.", "country_associated": "xxu", "authorized_access_point": "Rollins, Alison C., 19..-....", "biographical_information": ["Poète, bibliothécaire et enseignante américaine"]} 1 +2024-09-11 09:06:05.417341 2024-09-11 09:06:05.417346 2de1f10a-f806-440a-98f8-28824162abb3 {"md5": "bb6591e323fd4f4e57227c189e40bc05", "pid": "254778569", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254778569", "source": "IDREF"}], "variant_name": ["ASF"], "preferred_name": "Atlantic salmon federation", "country_associated": "xxc", "variant_access_point": ["ASF"], "date_of_establishment": "1981", "parallel_access_point": ["Fédération du saumon atlantique"], "authorized_access_point": "Atlantic salmon federation", "biographical_information": ["Formée en 1981 par la fusion de l'ASA (Atlantic salmon association) et de l'IASF (International atlantic salmon foundation)"]} 1 +2024-09-11 09:06:05.470736 2024-09-11 09:06:05.470739 c26d2d8b-c4e9-462c-b506-1a0fd7ea5ad9 {"md5": "5207b119ef7b25c7880914fe9e2870cf", "pid": "254816568", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254816568", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Hayfield, Nikki", "country_associated": "xxk", "authorized_access_point": "Hayfield, Nikki, 19..-....", "biographical_information": ["Psychologue sociale. - Travaille sur les différents types de sexualité"]} 1 +2024-09-11 09:06:05.528591 2024-09-11 09:06:05.528596 3508be87-01dc-4b45-aa12-db70f251afda {"md5": "19ea92ed4e53f513a1b482dce1ab954c", "pid": "25483180X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25483180X", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Gouraud, Pamela", "country_associated": "fr", "authorized_access_point": "Gouraud, Pamela, 19..-....", "biographical_information": ["Avocate depuis 2016. Juriste au sein d'organismes d'assurances et autorités de contrôle (en 2021)"]} 1 +2024-09-11 09:06:05.598523 2024-09-11 09:06:05.598532 6b6c9d5e-fc37-42ff-8848-84cfa0eddd5d {"md5": "81c0de1207e28483b861311aae655edd", "pid": "254929192", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254929192", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Brillouet, François", "country_associated": "fr", "authorized_access_point": "Brillouet, François, 19..-....", "biographical_information": ["Auteur(e) d'une thèse de docteur-ingénieur en physique (Grenoble 1, 1975)"]} 1 +2024-09-11 09:06:05.658415 2024-09-11 09:06:05.658419 50590931-de39-423d-a762-8677a5b76a07 {"md5": "36b062fd521e3f6981ae7a369b625a48", "pid": "254941540", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254941540", "source": "IDREF"}], "date_of_birth": "1992-03-27", "preferred_name": "Trincherini, Romain", "country_associated": "fr", "authorized_access_point": "Trincherini, Romain, 1992-....", "biographical_information": ["Auteur d'une thèse en Psychologie à Bordeaux en 2021"]} 1 +2024-09-11 09:06:05.724177 2024-09-11 09:06:05.724184 48dab4c3-c3f9-4ada-ae39-36cf98f91ebc {"md5": "cca54fb65b559dbee721161d2e640837", "pid": "254976719", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254976719", "source": "IDREF"}], "date_of_birth": "1947-09-03", "preferred_name": "Dorai, Périaswami", "country_associated": "fr", "authorized_access_point": "Dorai, Périaswami, 1947-....", "biographical_information": ["Auteur d'une thèse en Langues et littératures étrangères. Langue et cultures des sociétés anglophones à Université de Paris (2019-....) en 2019"]} 1 +2024-09-11 09:06:05.825715 2024-09-11 09:06:05.825721 7adfb869-ec60-4eb0-bae0-e9ba344df80a {"md5": "c12a3b4f7b2fa77de8efe2721ae4d9f2", "pid": "254994024", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254994024", "source": "IDREF"}], "date_of_birth": "19..--", "preferred_name": "Fitzgibbon, Alexa", "country_associated": "fr", "authorized_access_point": "Fitzgibbon, Alexa, 19..-", "biographical_information": ["Auteur d'une Master 2 en Anthropologie à l'Université de Provence : Aix-Marseille I en 2007"]} 1 +2024-09-11 09:06:05.895 2024-09-11 09:06:05.895003 7b0950df-c9ed-4bdd-ba7d-30bc31e425df {"md5": "7fb772669845e58e082f9bb9acbfeb8a", "pid": "255028679", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255028679", "source": "IDREF"}], "date_of_birth": "1972", "preferred_name": "Amesbury, Richard", "country_associated": "xxu", "authorized_access_point": "Amesbury, Richard, 1972-...."} 1 +2024-09-11 09:06:05.958638 2024-09-11 09:06:05.958643 6d4eb459-ffb9-40c6-9d6e-23f2badd96a4 {"md5": "661960c8a6b7e856a11376105866c6cd", "pid": "25508255X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25508255X", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Pannecocke, Laetitia", "country_associated": "fr", "authorized_access_point": "Pannecocke, Laetitia, 19..-....", "biographical_information": ["Club de prévention Rencontres et loisirs, 937 rue du faubourg de Béthune, 59500 Douai."]} 1 +2024-09-11 09:06:06.025155 2024-09-11 09:06:06.025161 36916dc5-94e3-464f-a97a-cfd9151f1cc0 {"md5": "5f9361392383168ee923c0ce7852dfc6", "pid": "255083556", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255083556", "source": "IDREF"}], "preferred_name": "Seida, Kimberly", "country_associated": "xxc", "authorized_access_point": "Seida, Kimberly", "biographical_information": ["McGill University, Department of Sociology"]} 1 +2024-09-11 09:06:06.090326 2024-09-11 09:06:06.090331 e1800aa6-f52d-4f9c-8168-f2301eb1f869 {"md5": "70926e859b10998942f8e11525770a32", "pid": "255144490", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255144490", "source": "IDREF"}], "preferred_name": "Deener, Andrew", "country_associated": "xxu", "authorized_access_point": "Deener, Andrew"} 1 +2024-09-11 09:06:06.150199 2024-09-11 09:06:06.150201 ab79d44a-d3cb-43d2-a8b7-b767d6abbb4c {"md5": "01bb5d57aed68f56d85a9d8efdf2c330", "pid": "255241518", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255241518", "source": "IDREF"}], "preferred_name": "Candeal, Juan C.", "country_associated": "sp", "authorized_access_point": "Candeal, Juan C.", "biographical_information": ["Faculté d'économie et de commerce. Département d'analyse économique. Université de Saragosse, Espagne"]} 1 +2024-09-11 09:06:06.214957 2024-09-11 09:06:06.214961 bf8378b2-20f0-4f91-b7b0-cec995baba87 {"md5": "3e42cca6992e1fc54ecc8987f9f3225d", "pid": "255348517", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["lat"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255348517", "source": "IDREF"}], "variant_name": ["Porée du Parcq, Renatus"], "date_of_birth": "16XX", "date_of_death": "16XX", "preferred_name": "Porée du Parcq, René", "country_associated": "xx", "variant_access_point": ["Porée du Parcq, Renatus, 16..?-16..?"], "authorized_access_point": "Porée du Parcq, René, 16..?-16..?", "biographical_information": ["Auteur d'une thèse (théologie) soutenue à Paris en 1661"]} 1 +2024-09-11 09:06:06.271238 2024-09-11 09:06:06.271241 c420dce6-ce62-40fa-9a56-2c2d9766f7a0 {"md5": "2ac8668a424823360af820eec637526b", "pid": "255361343", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255361343", "source": "IDREF"}], "preferred_name": "Reiter, J. D.", "country_associated": "gw", "authorized_access_point": "Reiter, J. D.", "biographical_information": ["Botaniste"]} 1 +2024-09-11 09:06:06.331974 2024-09-11 09:06:06.331979 c298808c-5a6e-4a4a-b831-3cb8e536c062 {"md5": "d72c383fed32e54c8dfbafe2cc118651", "pid": "255386419", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255386419", "source": "IDREF"}], "preferred_name": "Lamothe, Nathalie", "country_associated": "fr", "authorized_access_point": "Lamothe, Nathalie", "biographical_information": ["Titulaire d'un mémoire de DEA‎ en Économie du développement : innovation et dynamique spatiale‎ de l'université Bordeaux IV en 1997"]} 1 +2024-09-11 09:06:06.395233 2024-09-11 09:06:06.395238 0e1bbe50-3536-4c30-b93a-abadc9e2462b {"md5": "2ae0754cfc7d7e0013e55ca69578e33b", "pid": "255415184", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255415184", "source": "IDREF"}], "date_of_birth": "1987-06-08", "preferred_name": "De Figueiredo Barroso, Nelson", "country_associated": "bl", "authorized_access_point": "De Figueiredo Barroso, Nelson, 1987-....", "biographical_information": ["Titulaire d'un doctorat en Automatique, productique (Université de Lille, 2020)"]} 1 +2024-09-11 09:06:06.448441 2024-09-11 09:06:06.448446 29c5a65b-6e5c-4f4e-851a-0185f0fe84c4 {"md5": "e43869f08df89d2de12be15543236062", "pid": "255430760", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255430760", "source": "IDREF"}], "preferred_name": "Agência F4 (Agence de photographie)", "country_associated": "bl", "date_of_termination": "1991", "date_of_establishment": "1979", "authorized_access_point": "Agência F4 (Agence de photographie)", "biographical_information": ["Agence de photographies de presse brésilienne"]} 1 +2024-09-11 09:06:06.512354 2024-09-11 09:06:06.512366 6e909761-30c5-4239-b1bb-8522b584a449 {"md5": "f6ec0754f6ec7bfae564faecc11716b3", "pid": "255435169", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255435169", "source": "IDREF"}], "date_of_birth": "1859-07-16", "date_of_death": "1929-05-15", "preferred_name": "Fardin, Alphonse", "country_associated": "fr", "authorized_access_point": "Fardin, Alphonse, 1859-1929", "biographical_information": ["Compagnon cordonnier-bottier. - Parolier, poète", "Lieu de naissance Avranches (Manche). Lieu de décès Montfermeil (Seine-Saint-Denis)"]} 1 +2024-09-11 09:06:06.575954 2024-09-11 09:06:06.575959 d599e961-8c4a-49a9-a267-00ace7cd6f0c {"md5": "ffd15dcd2734a23ec73c3ff2b75a071a", "pid": "255444478", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255444478", "source": "IDREF"}], "date_of_birth": "18XX", "preferred_name": "Monier, Eug.", "country_associated": "fr", "authorized_access_point": "Monier, Eug., 18..-....", "biographical_information": ["Licencié en droit en 1875 à la Faculté d'Aix-en-Provence, né à Piolenc (Vaucluse)"]} 1 +2024-09-11 09:06:06.639271 2024-09-11 09:06:06.639275 e7e4c825-e36f-4a75-8d1f-7099c740e760 {"md5": "bffa303f088136bb5b38a7dc024721cd", "pid": "255445075", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255445075", "source": "IDREF"}], "preferred_name": "Drapeau, Vicky", "country_associated": "fr", "authorized_access_point": "Drapeau, Vicky", "biographical_information": ["Université de Laval en 2020"]} 1 +2024-09-11 09:06:06.701201 2024-09-11 09:06:06.701206 b6cb22c7-7289-4ad7-b1b5-27ecb542d746 {"md5": "ad2af1582a9acd90760ce19773263c1d", "pid": "255453876", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255453876", "source": "IDREF"}], "date_of_birth": "1993-06-01", "preferred_name": "Temperman, Manon", "country_associated": "fr", "authorized_access_point": "Temperman, Manon, 1993-...."} 1 +2024-09-11 09:06:06.764284 2024-09-11 09:06:06.764289 fe790948-1ebd-4fb8-8ed5-28069519bdb3 {"md5": "301f88ae3e881f80ac1df41723704ca1", "pid": "255473532", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255473532", "source": "IDREF"}], "preferred_name": "Engelke, Wilfried", "authorized_access_point": "Engelke, Wilfried", "biographical_information": ["Professeur, Département de chirurgie orale, Ecole dentaire, Université Georges-Auguste, Göttingen, Allemagne (2011)"]} 1 +2024-09-11 09:06:06.821763 2024-09-11 09:06:06.821767 1b40080f-a7cc-4352-843c-b5461f9041de {"md5": "100cfe03e4807a250f4ada654d170af8", "pid": "255495269", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255495269", "source": "IDREF"}], "date_of_birth": "1991-04-02", "preferred_name": "Mbengue, Adja", "country_associated": "fr", "authorized_access_point": "Mbengue, Adja, 1991-....", "biographical_information": ["Auteur d'une thèse en Droit public à Paris 1 en 2020"]} 1 +2024-09-11 09:06:06.875425 2024-09-11 09:06:06.875429 a5c9d984-338d-4f58-abc4-8b1eed127fbb {"md5": "948d1a4fa5c2b7f73af46e62e018a8ac", "pid": "255554338", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ara"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255554338", "source": "IDREF"}], "variant_name": ["طرزي, محمد", "Tarzi, Muhammad", "Ṭarazī, Muḥammad"], "date_of_birth": "1983", "preferred_name": "Ṭarzī, Muḥammad", "country_associated": "le", "variant_access_point": ["Tarzi, Muhammad", "Ṭarazī, Muḥammad"], "authorized_access_point": "Ṭarzī, Muḥammad, 1983-....", "biographical_information": ["Écrivain libanais"]} 1 +2024-09-11 09:06:06.933513 2024-09-11 09:06:06.933518 d63f3685-6983-42a3-8c9b-e5b364b7ab23 {"md5": "6130f945f00e477bbcdd91cfce4c29db", "pid": "255666594", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255666594", "source": "IDREF"}], "preferred_name": "Santalla, Frédéric", "authorized_access_point": "Santalla, Frédéric", "biographical_information": ["Baryton"]} 1 +2024-09-11 09:06:07.004505 2024-09-11 09:06:07.004509 c9eecc90-4f6c-40c5-99cb-4ae942fca923 {"md5": "41b3c37101827e978030ad25fc1f743e", "pid": "255733151", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255733151", "source": "IDREF"}], "date_of_birth": "1979", "preferred_name": "Schreiber, Constantin", "country_associated": "gw", "authorized_access_point": "Schreiber, Constantin, 1979-....", "biographical_information": ["Journaliste, présentateur TV, écrivain"]} 1 +2024-09-11 09:06:07.081886 2024-09-11 09:06:07.08189 7e00f790-e578-4bde-8021-a70ecd846db6 {"md5": "32210aa4ad1f783d9b863eda7af433a5", "pid": "255923058", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255923058", "source": "IDREF"}], "variant_name": ["Tirch, Laura R. Silberstein-"], "date_of_birth": "19XX", "preferred_name": "Silberstein-Tirch, Laura R.", "country_associated": "xxu", "variant_access_point": ["Tirch, Laura R. Silberstein-"], "authorized_access_point": "Silberstein-Tirch, Laura R., 19..-....", "biographical_information": ["Docteure en psychologie"]} 1 +2024-09-11 09:06:07.14285 2024-09-11 09:06:07.142853 004a2fad-4478-43d4-8417-6eb1d89d8197 {"md5": "0124c68abb2306d2c2bc1338a1f561b3", "pid": "255939248", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255939248", "source": "IDREF"}], "date_of_birth": "1981-05-12", "preferred_name": "Couteaux, Cécile", "country_associated": "fr", "authorized_access_point": "Couteaux, Cécile, 1981-....", "biographical_information": ["Université Toulouse - Jean Jaurès. Laboratoire « Lettres, langages et arts » (LLA-CRÉATIS) en 2022", "Auteur d'une thèse en Langues et littératures françaises à Toulouse 2 en 2022"]} 1 +2024-09-11 09:06:07.195193 2024-09-11 09:06:07.195198 74079585-db76-45d2-b951-4ab60ace1492 {"md5": "aabfd1215b6908f503602a027f759288", "pid": "255998880", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255998880", "source": "IDREF"}], "date_of_birth": "1907", "date_of_death": "1991", "preferred_name": "Söyrinki, Niilo", "country_associated": "gw", "authorized_access_point": "Söyrinki, Niilo, 1907-1991", "biographical_information": ["Botaniste"]} 1 +2024-09-11 09:06:07.248297 2024-09-11 09:06:07.248301 3279e912-c0fd-4030-9ef4-61746a3ee2e7 {"md5": "a6398b9bb28809aead34b102d2b1512c", "pid": "256075980", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/256075980", "source": "IDREF"}], "preferred_name": "Montañés, Julio G.", "country_associated": "sp", "authorized_access_point": "Montañés, Julio G."} 1 +2024-09-11 09:06:07.297913 2024-09-11 09:06:07.297918 0d2945ce-cd4b-47aa-a0ed-bbad0674287e {"md5": "192a681998bdbb118c51b5fc503c89e4", "pid": "256123829", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa", "eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/256123829", "source": "IDREF"}], "date_of_birth": "1934", "date_of_death": "2001", "preferred_name": "Torroja, Enrique", "country_associated": "ag", "authorized_access_point": "Torroja, Enrique, 1934-2001", "biographical_information": ["Peintre argentin"]} 1 +2024-09-11 09:06:07.356699 2024-09-11 09:06:07.356704 b815b003-87ad-4000-a52d-d4c72806b120 {"md5": "ae902dfba55fea390f823297bc063031", "pid": "25623650X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25623650X", "source": "IDREF"}], "preferred_name": "Ostergaard, Kim", "authorized_access_point": "Ostergaard, Kim", "biographical_information": ["Associate professor, Ph.D. Law Department - Copenhagen Business School"]} 1 +2024-09-11 09:06:07.409857 2024-09-11 09:06:07.409862 64dc34cf-b599-4954-b635-4d7b9a63e277 {"md5": "0ed2b98ddb13b01d1a9b168df730e2d7", "pid": "256322325", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/256322325", "source": "IDREF"}], "variant_name": ["Carpentier, Louis-Laurent"], "date_of_birth": "1968", "preferred_name": "Laurent", "country_associated": "be", "variant_access_point": ["Carpentier, Louis-Laurent"], "authorized_access_point": "Laurent, 1968-....", "biographical_information": ["Dessinateur et coloriste de bande dessinée"]} 1 +2024-09-11 09:06:07.471273 2024-09-11 09:06:07.471276 beb36ae0-6688-484c-9d72-471328b2e4fb {"md5": "175ae68c2a8b118d549cac82a4a9eb45", "pid": "25640772X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25640772X", "source": "IDREF"}], "preferred_name": "La Petite République Française et autres publications", "country_associated": "fr", "date_of_establishment": "1876", "authorized_access_point": "La Petite République Française et autres publications", "biographical_information": ["Société anonyme fondé en 1876, dans lequel Jean Jaurès a publié les preuves concernant l'Affaire Dreyfus à la fin du XIXe siècle. Siège social à Paris, 53 Chaussée d'Antin"]} 1 +2024-09-11 09:06:07.524066 2024-09-11 09:06:07.52407 5d3b1065-c49c-4058-9be8-e50a990a720e {"md5": "b231ad64fa5c6b14f2a08f4d08d865e5", "pid": "256435847", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/256435847", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Pagliarino, Elena", "country_associated": "fr", "authorized_access_point": "Pagliarino, Elena, 19..-....", "biographical_information": ["Agronomie, Conseil national des recherches, Institut de recherche sur la croissance économique durable (IRCrES-CNR), Moncalieri (Turin), Italie"]} 1 +2024-09-11 09:06:07.586551 2024-09-11 09:06:07.586557 8d2faf0e-cb2d-4279-a5df-b6c1b8a91153 {"md5": "f60f27128716ad4f38a2d7361f99f0dd", "pid": "256458391", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/256458391", "source": "IDREF"}], "date_of_birth": "18XX", "preferred_name": "Prestat, Émile", "country_associated": "fr", "authorized_access_point": "Prestat, Émile, 18..-....", "biographical_information": ["Né à Nîmes", "Licencié en droit en 1880 à la Faculté d'Aix"]} 1 +2024-09-11 09:06:07.643548 2024-09-11 09:06:07.643553 c46010e2-710f-4d6f-b2ab-052e830b7b9c {"md5": "4287b3d3c6dd8c69f9bf52730fa9877d", "pid": "25650945X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25650945X", "source": "IDREF"}], "date_of_birth": "19..", "preferred_name": "Sugawa, Sakiko", "country_associated": "nz", "authorized_access_point": "Sugawa, Sakiko, 19..-...."} 1 +2024-09-11 09:06:07.697862 2024-09-11 09:06:07.697868 74c780f4-4d95-4e0d-8ce2-d25469e82c45 {"md5": "3c255e3dc564f6c710b1956b37251b6c", "pid": "256515417", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/256515417", "source": "IDREF"}], "date_of_birth": "17..", "date_of_death": "18..", "preferred_name": "Leudière, Fr.", "country_associated": "fr", "authorized_access_point": "Leudière, Fr., 17..-18..", "biographical_information": ["Latiniste, principal du collège de Soissons (Aisne)"]} 1 +2024-09-11 09:06:07.756647 2024-09-11 09:06:07.75665 2b40253c-93e4-4e70-bbd9-56ccf6c9de1c {"md5": "0172eee3abf07eca5997b8ff2856bdf9", "pid": "256606625", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["mul"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/256606625", "source": "IDREF"}], "variant_name": ["وزارة التربية الوطنية، قسم الشبيبة والرياضة (الرباط)", "Maroc. Ministère de l'éducation nationale de la jeunesse et des sports"], "preferred_name": "Wazāraẗ al-ṭarbiyyaẗ al-waẗaniyyaẗ qism al-šabībaẗ wa al-riyāḍaẗ (al-Ribāṭ)", "country_associated": "mr", "variant_access_point": ["Maroc. Ministère de l'éducation nationale de la jeunesse et des sports"], "authorized_access_point": "Wazāraẗ al-ṭarbiyyaẗ al-waẗaniyyaẗ qism al-šabībaẗ wa al-riyāḍaẗ (al-Ribāṭ)"} 1 +2024-09-11 09:06:07.816776 2024-09-11 09:06:07.81678 9ab9cf65-1fc1-4d52-a5f2-b7423567f9ef {"md5": "dc10af0472613bcce9cf0dad737672dd", "pid": "256607982", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/256607982", "source": "IDREF"}], "date_of_birth": "1993-10-22", "preferred_name": "Sanchez, Julia", "country_associated": "fr", "authorized_access_point": "Sanchez, Julia, 1993-....", "biographical_information": ["Auteur d'une thèse en Informatique soutenue à l'Université de Lyon en 2020"]} 1 +2024-09-11 09:06:07.87206 2024-09-11 09:06:07.872063 36989359-0adf-49fe-82d2-b2199ae7638e {"md5": "8eee1df2a7958f736aee66d1bb769913", "pid": "256622302", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["per"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/256622302", "source": "IDREF"}], "variant_name": ["انتخابی, حشمت الله", "Intikhābī, Ḥashmat Allāh", "Intikhābī, Ḥishmat Allāh"], "date_of_birth": "1954?", "preferred_name": "Intiẖābī, Ḥišmat Allāh", "country_associated": "ir", "variant_access_point": ["Intikhābī, Ḥashmat Allāh", "Intikhābī, Ḥishmat Allāh"], "authorized_access_point": "Intiẖābī, Ḥišmat Allāh, 1954?-....", "biographical_information": ["Editeur scientifique", "Né en 1954 ou 1955 (1333 du calendrier solaire)"]} 1 +2024-09-11 09:06:07.925066 2024-09-11 09:06:07.925069 a961b948-d13d-4555-90db-955415741462 {"md5": "dc4d1472bcfaab5f8038665d9258d70d", "pid": "256653992", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/256653992", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Winickoff, David", "authorized_access_point": "Winickoff, David, 19..-....", "biographical_information": ["Senior Policy Analyst at the Organisation for Economic Cooperation and Development (OECD) in Paris where he is Secretary of the Working Party on Bio-, Nano- and Converging Technology. In this capacity, he leads research, policy work, and soft law development in the area of science, technology, and innovation at the national and international levels. He is also an Affiliated Professor at SciencesPo Law School where teaches biotechnology and ethics in global governance. He is a graduate of Harvard Law School, Cambridge University, and Yale College. Prior to his work at the OECD, he was a tenured professor at the University of California, Berkeley, where he directed the Program on Science and Technology Studies and supervised PhD students in law, STS, and Environmental Policy. David Winickoff has published over 60 articles at the intersection of technology and governance, appearing in e.g. Science, New England Journal of Medicine, Berkeley Technology Law Journal, Nature Climate Change, Social Studies of Science and the Yale Journal of International Law. He has served on expert panels of the US National Academies, UK Royal Academy, and the Bipartisan Policy Center think tank in Washington DC. He is on the Programme Board of the Rathenau Institute in The Hague."]} 1 +2024-09-11 09:06:07.981232 2024-09-11 09:06:07.981237 3c27ee7f-2fc5-42bd-90a0-dd6dfc83901e {"md5": "13842fe85cee2459ab404253f3ed0371", "pid": "256728682", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/256728682", "source": "IDREF"}], "preferred_name": "International Law and Economics Conference", "country_associated": "ii", "authorized_access_point": "International Law and Economics Conference (2nd ; 2016 ; Kanpur, India)", "biographical_information": ["Note biographique (informations à justifier par des sources mentionnées en zone 810)"]} 1 +2024-09-11 09:06:08.035167 2024-09-11 09:06:08.035171 217d013a-9fef-430a-a6ab-ffb7f15d666c {"md5": "7ae3485650868889edbcca7839578f59", "pid": "256767483", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/256767483", "source": "IDREF"}], "date_of_birth": "19..", "preferred_name": "Jones, Maggie", "country_associated": "xx", "authorized_access_point": "Jones, Maggie, 19..-...."} 1 +2024-09-11 09:06:08.119014 2024-09-11 09:06:08.119018 108a848a-1179-4c86-8b7e-b033895783ba {"md5": "ff01b7c76e9391833e40b78271aee997", "pid": "256769044", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["nor"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/256769044", "source": "IDREF"}], "variant_name": ["Norvège. Cour suprême", "Cour suprême (Norvège)", "Norges Høyesterett"], "preferred_name": "Norvège. Høyesterett", "country_associated": "no", "variant_access_point": ["Norvège. Cour suprême", "Cour suprême (Norvège)", "Norges Høyesterett"], "authorized_access_point": "Norvège. Høyesterett"} 1 +2024-09-11 09:06:08.175606 2024-09-11 09:06:08.17561 7cffe533-ca1c-458a-8c97-1ab7800a5c98 {"md5": "d79e0be6ff39159590d64c8fce1e9c6b", "pid": "256910200", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/256910200", "source": "IDREF"}], "date_of_birth": "1644-09-30", "date_of_death": "1691-10-02", "preferred_name": "Hinlopen, Gerard", "country_associated": "ne", "authorized_access_point": "Hinlopen, Gerard, 1644-1691"} 1 +2024-09-11 09:06:08.236043 2024-09-11 09:06:08.236046 f9c869e3-60c6-4a88-a149-1a6c592493e7 {"md5": "defeb48576aea9d284cac86ec5156a1f", "pid": "256931038", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/256931038", "source": "IDREF"}], "preferred_name": "Gruet, Jacques", "authorized_access_point": "Gruet, Jacques"} 1 +2024-09-11 09:06:08.288945 2024-09-11 09:06:08.28895 522746fa-d11f-4ba0-91d1-c3e748628e1b {"md5": "8f6175ad6a2f98a59d61560152d5016a", "pid": "256938660", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/256938660", "source": "IDREF"}], "date_of_birth": "1990", "preferred_name": "Carter, Bryan", "country_associated": "xxu", "authorized_access_point": "Carter, Bryan, 1990-....", "biographical_information": ["Batteur, compositeur et chef d'orchestre de jazz"]} 1 +2024-09-11 09:06:08.347446 2024-09-11 09:06:08.34745 87eb7c45-6c92-4113-a49b-e1b993d9df86 {"md5": "95100ea0e562a7442255d85e6580d8f3", "pid": "256975485", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/256975485", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Narbey, Jean-Philippe", "country_associated": "fr", "authorized_access_point": "Narbey, Jean-Philippe, 19..-....", "biographical_information": ["Docteur en médecine à Bordeaux 2 en 1988"]} 1 +2024-09-11 09:06:08.410326 2024-09-11 09:06:08.410329 8ee25d51-d409-4c53-a6b8-a0cd6325289f {"md5": "2627dd757db470826191b64b3a627d40", "pid": "256977178", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/256977178", "source": "IDREF"}], "preferred_name": "Wallepe, Djoëlla", "authorized_access_point": "Wallepe, Djoëlla"} 1 +2024-09-11 09:06:08.468014 2024-09-11 09:06:08.468018 f0c4c6d4-8080-4793-a735-23f1de1f9ae0 {"md5": "bba93c21ef9669556a7667b7cdb79f32", "pid": "257161775", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257161775", "source": "IDREF"}], "date_of_birth": "1992-03-13", "preferred_name": "Heyman, Quentin", "country_associated": "fr", "authorized_access_point": "Heyman, Quentin, 1992-...."} 1 +2024-09-11 09:06:08.530083 2024-09-11 09:06:08.530089 02409224-2872-4742-8a1e-f4eb3bd11160 {"md5": "8b5248fffc0fe25d5461df8a8ec44aa1", "pid": "257283994", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257283994", "source": "IDREF"}], "date_of_birth": "1980", "preferred_name": "Borge, Jessica", "country_associated": "xxc", "authorized_access_point": "Borge, Jessica, 1980-...."} 1 +2024-09-11 09:06:08.583999 2024-09-11 09:06:08.584002 cd881d20-485b-4fc2-a4f2-431bd720fac4 {"md5": "ca420320df836b31f52c85f55f47a5a8", "pid": "257341730", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["lat"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257341730", "source": "IDREF"}], "date_of_birth": "16XX", "date_of_death": "17XX", "preferred_name": "Lepack, Daniel", "country_associated": "fr", "authorized_access_point": "Lepack, Daniel, 16..-17..", "biographical_information": ["Auteur d'une thèse à Strasbourg en 1699"]} 1 +2024-09-11 09:06:08.638564 2024-09-11 09:06:08.638566 23b91784-aead-49db-a175-b24b149b610b {"md5": "5e09f34d4e9bc2ec43553d2175be7195", "pid": "257342818", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257342818", "source": "IDREF"}], "variant_name": ["Von Kruedener, Claudia"], "preferred_name": "Kruedener, Claudia von", "country_associated": "gw", "variant_access_point": ["Von Kruedener, Claudia"], "authorized_access_point": "Kruedener, Claudia von", "biographical_information": ["Historienne independante", "Titulaire d'un doctorat en histoire (Universität Bayreuth, Allemagne, 2014)"]} 1 +2024-09-11 09:06:08.699211 2024-09-11 09:06:08.699216 c7586a17-5bec-46c9-9af2-7b7410eab99c {"md5": "dbee32aad258aff01efd3bf75524824f", "pid": "257348328", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257348328", "source": "IDREF"}], "date_of_birth": "1882", "preferred_name": "Feltgen, Eduard", "country_associated": "gw", "authorized_access_point": "Feltgen, Eduard, 1882-...."} 1 +2024-09-11 09:06:08.754967 2024-09-11 09:06:08.75497 f9262000-c641-497d-b909-d1f5eafab3dc {"md5": "e7df59a881789da59bbea4881c9794b5", "pid": "257382968", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn", "fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257382968", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Azure", "country_associated": "ja", "authorized_access_point": "Azure, 19..-....", "biographical_information": ["illustratrice japonaise de light novel"]} 1 +2024-09-11 09:06:08.810232 2024-09-11 09:06:08.810237 c42e1df6-bdec-4f07-8aec-84ef6d866b42 {"md5": "a8a37e70cd2383b5673c06c4a5b2df20", "pid": "257433422", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre", "eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257433422", "source": "IDREF"}], "date_of_birth": "1993-07-13", "preferred_name": "Jerusalem, Sophie", "country_associated": "fr", "authorized_access_point": "Jerusalem, Sophie, 1993-....", "biographical_information": ["Auteure d'une thèse d'exercice en médecine (spécialité : anesthésie-réanimation) (Université Grenoble Alpes, 2021)"]} 1 +2024-09-11 09:06:08.865352 2024-09-11 09:06:08.865357 1b60356d-6924-49c0-9b1a-ab143b4e267a {"md5": "d1040dba7b583d04d00c3b59133d2cd2", "pid": "257473459", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257473459", "source": "IDREF"}], "variant_name": ["Sinclair Smith, Ed"], "preferred_name": "Smith, Ed Sinclair", "variant_access_point": ["Sinclair Smith, Ed"], "authorized_access_point": "Smith, Ed Sinclair", "biographical_information": ["Membre de l'American Society of Mechanical Engineer; agent de brevets agréé ; ingénieur de recherche (division eclipse-pioneer de Bendix Aviation Corporation) ; anciennement ingénieur chargé des brevets (C. J. Tagliabue Mfg. Co.) ; anciennement ingénieur hydraulique (Builders Iron Foundry)."]} 1 +2024-09-11 09:06:08.92091 2024-09-11 09:06:08.920913 08c062e1-ee3d-4a33-a82a-01c9f8b9416d {"md5": "f8de7a867324478665b39126c2dc1338", "pid": "257484167", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257484167", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Maritsch, Michael", "country_associated": "au", "authorized_access_point": "Maritsch, Michael, 19..-....", "biographical_information": ["Photographe"]} 1 +2024-09-11 09:06:08.974524 2024-09-11 09:06:08.974528 5df2f409-39e7-4f37-938c-cc77d03c7cbe {"md5": "234e87370960e270d4bc3259dc1ed1ff", "pid": "257484434", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257484434", "source": "IDREF"}], "variant_name": ["Calderón, F. L."], "preferred_name": "Calderón, F. León", "country_associated": "mx", "variant_access_point": ["Calderón, F. L."], "authorized_access_point": "Calderón, F. León", "biographical_information": ["Cartographe"]} 1 +2024-09-11 09:06:09.028486 2024-09-11 09:06:09.02849 7d95ae7b-eb4e-4f40-9c97-b522ec9c06e8 {"md5": "164ff590456ba2e2625e1056075dedcb", "pid": "257494138", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257494138", "source": "IDREF"}], "preferred_name": "Heys, J. A.", "authorized_access_point": "Heys, J. A."} 1 +2024-09-11 09:06:09.081821 2024-09-11 09:06:09.081825 2d9dafb6-1f10-4667-aff6-2824b9404d24 {"md5": "2e9458dc3e75e9375a7115434a5d0fc7", "pid": "25752214X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25752214X", "source": "IDREF"}], "date_of_birth": "1933", "date_of_death": "1998", "preferred_name": "Weber, Willy", "country_associated": "sz", "authorized_access_point": "Weber, Willy, 1933-1998", "biographical_information": ["Artiste visuel"]} 1 +2024-09-11 09:06:09.165294 2024-09-11 09:06:09.165298 7bcb2608-6ff3-4e85-a7fb-c1eeaf50babd {"md5": "d438c6028917a63d89cd5b8008afa42a", "pid": "257572481", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257572481", "source": "IDREF"}], "date_of_birth": "1992-03-10", "preferred_name": "Das, Souvik", "country_associated": "ii", "authorized_access_point": "Das, Souvik, 1992-....", "biographical_information": ["Auteur d'une thèse de doctorat en Biologie-Santé. Physiopathologie humaine soutenue à Amiens en 2020"]} 1 +2024-09-11 09:06:09.237779 2024-09-11 09:06:09.237784 93ecaa73-83a6-443f-883c-685cd71ef0f2 {"md5": "3fb2bf06845445c19737d7030b84a8b7", "pid": "257572732", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257572732", "source": "IDREF"}], "date_of_birth": "14XX", "preferred_name": "Grünenbächin, Barbara", "country_associated": "gw", "authorized_access_point": "Grünenbächin, Barbara, 14..-....", "biographical_information": ["Ecrivain"]} 1 +2024-09-11 09:06:09.304819 2024-09-11 09:06:09.304824 d753eab4-5cdd-48fb-8124-b75dba4657b2 {"md5": "1924ba60c0d444882c0dc552858ae04f", "pid": "257647007", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257647007", "source": "IDREF"}], "variant_name": ["Croatian-Hungarian PhD Conference on ancient history and archaeology"], "preferred_name": "Croatian-Hungarian PhD Conference on ancient history and archaeology", "country_associated": "hu", "date_of_termination": "2019-03-22", "variant_access_point": ["Croatian-Hungarian PhD Conference on ancient history and archaeology (3 ; Budapest, Hungary ; 2019)"], "date_of_establishment": "2019-03-22", "authorized_access_point": "Croatian-Hungarian PhD Conference on ancient history and archaeology (3 ; Budapest, Hongrie ; 2019)"} 1 +2024-09-11 09:06:09.362516 2024-09-11 09:06:09.362521 2fc3f014-ca4c-4365-b03f-85b560a99680 {"md5": "9d4625a4ae83ec0d0d90007118f02420", "pid": "257647805", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257647805", "source": "IDREF"}], "preferred_name": "Sandner, Henrike", "country_associated": "gw", "authorized_access_point": "Sandner, Henrike", "biographical_information": ["Réalisateur de documentaires"]} 1 +2024-09-11 09:06:09.435976 2024-09-11 09:06:09.43598 59b0d2e4-8b04-48e3-a879-5628387efb1a {"md5": "176e4cba708013b41e38143a24f5faa0", "pid": "25773855X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25773855X", "source": "IDREF"}], "date_of_birth": "1977-XX-XX", "preferred_name": "Meier Schleich, Philipp", "country_associated": "sz", "authorized_access_point": "Meier Schleich, Philipp, 1977-....", "biographical_information": ["Juriste. Avocat chez LANTER, Anwälte & Steuerberater, Zürich (2018-)"]} 1 +2024-09-11 09:06:09.489396 2024-09-11 09:06:09.489399 f1ed7717-481a-4022-b3f5-c6658b5adaac {"md5": "f33c44163350260f34a4f2d74fa7238f", "pid": "257862544", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257862544", "source": "IDREF"}], "variant_name": ["Mejía, Gema Catalán"], "date_of_birth": "19XX", "preferred_name": "Catalán Mejía, Gema", "country_associated": "sp", "variant_access_point": ["Mejía, Gema Catalán"], "authorized_access_point": "Catalán Mejía, Gema, 19..-....", "biographical_information": ["Universitaire à la Faculté de droit de l'Université Internationale de la Rioja (UNIR) en Espagne (en 2021)"]} 1 +2024-09-11 09:06:09.542425 2024-09-11 09:06:09.54243 670b648f-1dab-443b-9219-233b259c2150 {"md5": "6973204e8cce4bf7762c31a7f03c7527", "pid": "257890505", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257890505", "source": "IDREF"}], "preferred_name": "Zhong, Sabilla", "country_associated": "gw", "authorized_access_point": "Zhong, Sabilla", "biographical_information": ["Institute of Organic Chemistry, Karlsruhe Institute of Technology (KIT), Karlsruhe, Germany"]} 1 +2024-09-11 09:06:09.602351 2024-09-11 09:06:09.602355 9247b638-2aa6-4d45-aede-c72812a895b8 {"md5": "39154856b37b1af4148d92dce2216230", "pid": "257908870", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257908870", "source": "IDREF"}], "variant_name": ["Barbin, Marie-Louise"], "date_of_birth": "1940-10-24", "preferred_name": "Baille, Marie-Louise", "country_associated": "fr", "variant_access_point": ["Barbin, Marie-Louise"], "authorized_access_point": "Baille, Marie-Louise, 1940-....", "biographical_information": ["Titulaire d'une thèse en Médecine (Lyon, 1970)"]} 1 +2024-09-11 09:06:09.655627 2024-09-11 09:06:09.65563 b11bb800-1f37-435f-8c5c-603307e1386e {"md5": "f9bca2f01c70baba6472f160ab5cafc5", "pid": "257937730", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rum"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257937730", "source": "IDREF"}], "variant_name": ["Căpus̜e, I."], "date_of_birth": "1935", "preferred_name": "Căpus̜e, Iosif", "country_associated": "rm", "variant_access_point": ["Căpus̜e, I., 1935-...."], "authorized_access_point": "Căpus̜e, Iosif, 1935-....", "biographical_information": ["Entomologiste roumain"]} 1 +2024-09-11 09:06:09.735234 2024-09-11 09:06:09.735237 d6db5599-b3de-488e-ae38-b0a887e0ce05 {"md5": "12bc4069f2ac2455dcebb031690c49b5", "pid": "257974350", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257974350", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Oda, Serina", "country_associated": "ja", "authorized_access_point": "Oda, Serina, 19..-....", "biographical_information": ["Mangaka"]} 1 +2024-09-11 09:06:09.79106 2024-09-11 09:06:09.791064 9c1fc40e-7fd9-4616-9802-e9c31d121257 {"md5": "5de286b69becd07f1c328b31b4b4d75e", "pid": "25808524X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25808524X", "source": "IDREF"}], "preferred_name": "Blackburn Architects (Washington)", "country_associated": "xxu", "authorized_access_point": "Blackburn Architects (Washington)", "biographical_information": ["Cabinet d'architectes fondé en 1983, reconnue pour son expertise particulière dans la planification, la conception et la préservation d'établissements équestres, des résidences privées et des fermes d'élevage."]} 1 +2024-09-11 09:06:09.84457 2024-09-11 09:06:09.844574 a721bf34-92c6-43ef-91ec-c54c1757a82c {"md5": "1e5465eef70ee582f7b69fdef669f9c3", "pid": "258134178", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258134178", "source": "IDREF"}], "date_of_birth": "1991-05-27", "preferred_name": "Tuna, Çaglayan", "country_associated": "tu", "authorized_access_point": "Tuna, Çaglayan, 1991-....", "biographical_information": ["Auteur d'une thèse en Signal, Image, Vision à Lorient en 2020"]} 1 +2024-09-11 09:06:09.904316 2024-09-11 09:06:09.904319 f2ae088d-39e9-4995-bc6e-ceff68a5072a {"md5": "a6223e9e65f82d7638eee320e460daa3", "pid": "258183659", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dut"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258183659", "source": "IDREF"}], "date_of_birth": "1957", "preferred_name": "Op de Beeck, Johan", "country_associated": "be", "authorized_access_point": "Op de Beeck, Johan, 1957-...."} 1 +2024-09-11 09:06:09.962217 2024-09-11 09:06:09.962222 39bb3d95-7081-478e-81cb-09bbda995280 {"md5": "b8ae7801ccf889883dbadddeca938232", "pid": "258220724", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258220724", "source": "IDREF"}], "relation_pid": {"type": "redirect_from", "value": "256104042"}, "variant_name": ["Centre de formation professionnelle du Littoral neuchâtelois (CPLN) (Neuchâtel, Suisse)", "Centre de formation professionnelle neuchâtelois (CPNE) (La Chaux-de-Fonds, Neuchâtel, Suisse)", "Ecole technique (Neuchâtel, Suisse)", "Ecole de mécanique et d'électricité (Neuchâtel, Suisse)", "Ecole d'horlogerie et de mécanique (Neuchâtel, Suisse)", "Ecole d'horlogerie (Neuchâtel, Suisse)"], "preferred_name": "Centre professionnel du Littoral neuchâtelois (Neuchâtel, Neuchâtel, Suisse)", "country_associated": "sz", "variant_access_point": ["Centre de formation professionnelle du Littoral neuchâtelois (CPLN) (Neuchâtel, Suisse)", "Centre de formation professionnelle neuchâtelois (CPNE) (La Chaux-de-Fonds, Neuchâtel, Suisse)", "Ecole technique (Neuchâtel, Suisse)", "Ecole de mécanique et d'électricité (Neuchâtel, Suisse)", "Ecole d'horlogerie et de mécanique (Neuchâtel, Suisse)", "Ecole d'horlogerie (Neuchâtel, Suisse)"], "date_of_establishment": "1871", "authorized_access_point": "Centre professionnel du Littoral neuchâtelois (Neuchâtel, Neuchâtel, Suisse)", "biographical_information": ["De 1871 à 1909: \\"Ecole d'horlogerie (Neuchâtel)\\". De 1910 à 1935: \\"Ecole d'horlogerie et de mécanique (Neuchâtel)\\". De 1936 à 1968: \\"Ecole de mécanique et d'électricité (Neuchâtel)\\". 1969?/1974?: \\"Ecole technique de Neuchâtel\\" intégrée dans les bâtiments du \\"Centre professionnel du Littoral neuchâtelois (Neuchâtel)\\". Jusqu'en 1993: CPLN - Centre de formation professionnelle du Littoral neuchâtelois. Dès 1994: CPLN - Centre professionnel du Littoral neuchâtelois. Dès 2022, le CPLN, le CIFOM et le CPMB sont groupés sous l'appellation CPNE (Centre de formation professionnelle neuchâtelois."]} 1 +2024-09-11 09:06:10.024087 2024-09-11 09:06:10.024091 333af536-c541-4c56-ad58-04d6ac74a4e9 {"md5": "fea3e9db947da09e75c883a082ce6d73", "pid": "258241985", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258241985", "source": "IDREF"}], "date_of_birth": "1932", "preferred_name": "Cardoso, António", "country_associated": "po", "authorized_access_point": "Cardoso, António, 1932-....", "biographical_information": ["Docteur en histoire de l'art, spécialiste du XXe siècle, auteur de publications et d'articles sur l'art et l'architecture portugais", "Directeur du Musée Amadeu de Souza Cardoso, Amarante, Portugal (en 1997)", "Lieu de naissance : Amarante, Portugal."]} 1 +2024-09-11 09:06:10.086113 2024-09-11 09:06:10.086118 085e9d73-bee6-43c8-b2b6-c1f297eda312 {"md5": "5e1ce218e6bb5ec2785d491ecea1392b", "pid": "258266457", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258266457", "source": "IDREF"}], "date_of_birth": "1965?", "preferred_name": "Mekon", "country_associated": "xxu", "authorized_access_point": "Mekon, 1965?-....", "biographical_information": ["Musicien de trip hop"]} 1 +2024-09-11 09:06:10.147324 2024-09-11 09:06:10.147329 543b1cca-bebd-4fac-8956-044b678e0f95 {"md5": "b52d4171b67956d97d80eac4ea0aa06d", "pid": "258291524", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["srp", "eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258291524", "source": "IDREF"}], "variant_name": ["Кондић, Јелена"], "preferred_name": "Kondić, Jelena", "variant_access_point": ["Кондић, Јелена"], "authorized_access_point": "Kondić, Jelena"} 1 +2024-09-11 09:06:10.200539 2024-09-11 09:06:10.200544 ccd3a23d-472b-46b3-9ff7-29a90f02b8ac {"md5": "cfb72de0f31e8b1bdfc305f0dbec328f", "pid": "258322020", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258322020", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Polans, Arthur", "country_associated": "xx", "authorized_access_point": "Polans, Arthur, 19..-....", "biographical_information": ["University of Wisconsin medical school Madison, USA (2003)"]} 1 +2024-09-11 09:06:10.259358 2024-09-11 09:06:10.259363 4cdd2815-b87c-4181-8409-58ee48cba693 {"md5": "ded0fb8c93f60a78bd1e2dd166ff4e7e", "pid": "258325089", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["swe"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258325089", "source": "IDREF"}], "date_of_birth": "1949", "preferred_name": "Josephson, Magnus", "country_associated": "sw", "authorized_access_point": "Josephson, Magnus, 1949-....", "biographical_information": ["Ecrit aussi en anglais", "En poste : Södermanland museum, Nyköping, Suède (en 1996)"]} 1 +2024-09-11 09:06:10.318148 2024-09-11 09:06:10.318152 e7c16f53-ebfb-4d26-bb66-fcceb3612173 {"md5": "d0da0c0ae0e5ba15868eccee0c7b58a8", "pid": "258363355", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258363355", "source": "IDREF"}], "date_of_birth": "1990-08-19", "preferred_name": "Sauvage, Alexis", "country_associated": "fr", "authorized_access_point": "Sauvage, Alexis", "biographical_information": ["Auteur d’une thèse de médecine"]} 1 +2024-09-11 09:06:10.373536 2024-09-11 09:06:10.37354 a67dde98-8641-426e-be1d-92660d138106 {"md5": "ba0ae6c89613f7b8d01c161a810da84b", "pid": "258385138", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258385138", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Zell, Jean-Luc", "country_associated": "fr", "authorized_access_point": "Zell, Jean-Luc, 19..-....", "biographical_information": ["Étudiant en œnologie à l'Université de Bordeaux II en 1991 (DEA en œnologie)"]} 1 +2024-09-11 09:06:10.432024 2024-09-11 09:06:10.432028 3e3ed915-8bbd-4f46-8ca1-275258ce08d4 {"md5": "fb07656d112c1cf92ccec73696b260aa", "pid": "258433914", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258433914", "source": "IDREF"}], "preferred_name": "Convention Euro-Africaine", "country_associated": "fr", "date_of_termination": "1996-05-13", "date_of_establishment": "1996-05-13", "authorized_access_point": "Convention Euro-Africaine (1996 ; Bordeaux)"} 1 +2024-09-11 09:06:10.521965 2024-09-11 09:06:10.521969 a4b7e1fd-d7bd-454c-89a2-9137715672f9 {"md5": "031420254613c885c67a19b8c2218ee4", "pid": "258437855", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258437855", "source": "IDREF"}], "date_of_birth": "1993-03-20", "preferred_name": "Darrius, Rémi", "authorized_access_point": "Darrius, Rémi", "biographical_information": ["Hépato-gastro-entérologue (Strasbourg 2021)"]} 1 +2024-09-11 09:06:10.580958 2024-09-11 09:06:10.580961 5676b223-ef93-45b8-ae32-180abaadafa1 {"md5": "ca4b9290fb1877a59f77072a55c952c7", "pid": "25844939X", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre", "ara"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25844939X", "source": "IDREF"}], "preferred_name": "Association suisse-arabe. Assemblée générale annuelle", "country_associated": "sz", "date_of_termination": "1974-05-18", "date_of_establishment": "1974-05-18", "authorized_access_point": "Association suisse-arabe. Assemblée générale annuelle (1974 ; Lausanne)"} 1 +2024-09-11 09:06:10.641564 2024-09-11 09:06:10.641568 b20d9ba4-f9c9-45ae-8fcd-a5ad0ff4b926 {"md5": "a94657019939f4131435cc2275343cab", "pid": "258454458", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["cat"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258454458", "source": "IDREF"}], "date_of_birth": "1979", "preferred_name": "Alcaraz i Frasquet, Maria", "country_associated": "sp", "authorized_access_point": "Alcaraz i Frasquet, Maria, 1979-....", "biographical_information": ["Illustratrice"]} 1 +2024-09-11 09:06:10.696288 2024-09-11 09:06:10.696293 39483095-0a83-4bf5-9adf-35754d6bcfea {"md5": "bb4a4d813b7aefd11247c5f365b8b57b", "pid": "258520191", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258520191", "source": "IDREF"}], "variant_name": ["Istituto italiano per la storia della musica (Rome)", "Italie. Ministero per i Beni e le Attività culturali. Direzione generale per le Biblioteche e gli Istituti culturali. Istituto italiano per la storia della musica", "Direzione generale per le Biblioteche e Istituti culturali (Rome)"], "preferred_name": "Istituto italiano per la storia della musica", "country_associated": "it", "variant_access_point": ["Istituto italiano per la storia della musica (Rome)", "Italie. Ministero per i Beni e le Attività culturali. Direzione generale per le Biblioteche e gli Istituti culturali. Istituto italiano per la storia della musica", "Direzione generale per le Biblioteche e Istituti culturali (Rome)"], "date_of_establishment": "1938", "authorized_access_point": "Istituto italiano per la storia della musica", "biographical_information": ["Via Vittoria 6, 00187 Rome. Tél. (06) 4880597"]} 1 +2024-09-11 09:06:10.750147 2024-09-11 09:06:10.75015 b7832e60-6dd9-4bff-8809-833f39343658 {"md5": "8ad857e7e9d1f8b383850b88ee7d5c6f", "pid": "258528079", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258528079", "source": "IDREF"}], "variant_name": ["Paolo, Euclide di"], "preferred_name": "Di Paolo, Euclide", "variant_access_point": ["Paolo, Euclide di"], "authorized_access_point": "Di Paolo, Euclide"} 1 +2024-09-11 09:06:10.80831 2024-09-11 09:06:10.808315 2a57d05a-9e7b-4833-829a-bcccfe33a026 {"md5": "e08f1c045f63153e72ad673426c7e0b4", "pid": "258546417", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258546417", "source": "IDREF"}], "date_of_birth": "19..", "preferred_name": "Stryckers, Piet", "country_associated": "xxk", "authorized_access_point": "Stryckers, Piet, 19..-....", "biographical_information": ["Musicien"]} 1 +2024-09-11 09:06:10.858616 2024-09-11 09:06:10.858619 28a511c3-e7d2-43b6-ac25-990744ee6e7f {"md5": "535f1e0ead1eef5e6c31979980ff3910", "pid": "258552778", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258552778", "source": "IDREF"}], "variant_name": ["Давыдов, Виктор Дмитриевич", "Давыдов, В. Д"], "preferred_name": "Davydov, Viktor Dmitrievič", "country_associated": "ru", "variant_access_point": ["Давыдов, В. Д"], "authorized_access_point": "Davydov, Viktor Dmitrievič"} 1 +2024-09-11 09:06:10.91055 2024-09-11 09:06:10.910554 1b8a319e-57e9-45a0-945c-1fd9eca3125c {"md5": "84d86253e500d397d2b7a3ccbd229cd6", "pid": "258575719", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258575719", "source": "IDREF"}], "date_of_birth": "1971-06-13", "preferred_name": "Atgé, Sandra", "country_associated": "fr", "authorized_access_point": "Atgé, Sandra, 1971-....", "biographical_information": ["Auteur d’un mémoire en Géographie, soutenue en 1994, à l’Université Montpellier 3"]} 1 +2024-09-11 09:06:10.964026 2024-09-11 09:06:10.964031 14c2c3ca-f974-4fa6-8f80-d7e41cc57a3e {"md5": "07c5ec445d80392d56a4a0680e507d15", "pid": "258640731", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258640731", "source": "IDREF"}], "date_of_birth": "1948-07-20", "preferred_name": "Djebar, Mohamed", "country_associated": "ae", "authorized_access_point": "Djebar, Mohamed, 1948 -....", "biographical_information": ["Auteur d'une thèse de médecine soutenue en 1973 à l'Université d'Alger"]} 1 +2024-09-11 09:06:14.595297 2024-09-11 09:06:14.595301 faa86afe-b92b-444e-9941-4411bbe8d063 {"md5": "0b86e7c6256b0bca6aff82093d19f96c", "pid": "261876007", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261876007", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Siddiqi, M.M.", "country_associated": "ii", "authorized_access_point": "Siddiqi, M.M."} 1 +2024-09-11 09:06:11.021766 2024-09-11 09:06:11.021773 28b78831-cf31-47c3-ba28-40facc4aabd3 {"md5": "4c3999868e4e233137cc6a58edbc82d1", "pid": "258645172", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258645172", "source": "IDREF"}], "date_of_birth": "1996-11-25", "preferred_name": "Monhurel, Margaux", "country_associated": "fr", "authorized_access_point": "Monhurel, Margaux, 1996-....", "biographical_information": ["Titulaire d'une thèse d'exercice de pharmacie soutenue à Caen le 18 mai 2021"]} 1 +2024-09-11 09:06:11.073619 2024-09-11 09:06:11.073623 fe38fa08-a95e-41a9-809c-3359132e07a0 {"md5": "0a3e4d045326175f697d543507209275", "pid": "258645563", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258645563", "source": "IDREF"}], "date_of_birth": "1981", "preferred_name": "Boseckert, Christian", "country_associated": "gw", "authorized_access_point": "Boseckert, Christian, 1981-....", "biographical_information": ["Spécialiste de l'histoire de la ville de Cobourg. Maître de conférences en histoire de la Franconie à Würzburg depuis 2017 (en 2022)"]} 1 +2024-09-11 09:06:11.136604 2024-09-11 09:06:11.136609 d847ba3e-e183-42d4-985e-6bac3d3323fc {"md5": "8618c0cbb1693b1ba9faea635fae52af", "pid": "259100056", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/259100056", "source": "IDREF"}], "date_of_birth": "1982-04-03", "preferred_name": "Crop, Aurélie", "country_associated": "fr", "authorized_access_point": "Crop, Aurélie, 1982-....", "biographical_information": ["Graphiste, écrivaine et dessinatrice"]} 1 +2024-09-11 09:06:11.189825 2024-09-11 09:06:11.189828 4fa1a6e6-eb65-41e6-8e0e-8771c2519ad3 {"md5": "27d0b4386fcb4c7fc3e772458c44225e", "pid": "259230197", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "auteure en biologie moléculaire", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/259230197", "source": "IDREF"}], "date_of_birth": "1984-08-05", "preferred_name": "Laval, Marie, auteure en biologie moléculaire", "country_associated": "fr", "authorized_access_point": "Laval, Marie, 1984-...., auteure en biologie moléculaire", "biographical_information": ["Auteur d'une thèse de doctorat en Aspects moléculaires et cellulaires de la biologie à Strasbourg en 2020"]} 1 +2024-09-11 09:06:11.246587 2024-09-11 09:06:11.246592 2aa29f01-c783-466c-9cfd-4541983a8d92 {"md5": "3305c7dbbc6935c23c9ae939b4bcdaa6", "pid": "259270482", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/259270482", "source": "IDREF"}], "preferred_name": "Piovaticci, Paolo", "country_associated": "it", "authorized_access_point": "Piovaticci, Paolo", "biographical_information": ["Historien d'art italien. Spécialiste de la céramique"]} 1 +2024-09-11 09:06:11.29801 2024-09-11 09:06:11.298014 21aa69c7-e61a-4763-a69e-740d31ab79a2 {"md5": "206bd658ec3fd85ed634d8fb7635cb02", "pid": "25929070X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25929070X", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Nduka-Agwu, Adibeli", "country_associated": "xxk", "authorized_access_point": "Nduka-Agwu, Adibeli, 19..-....", "biographical_information": ["Corédacteur en chef du \\"Harvard Africa Policy Journals\\", a étudié les sciences politiques et sociales au Emmanuel College of Cambridge University"]} 1 +2024-09-11 09:06:11.362926 2024-09-11 09:06:11.362934 00360716-934e-4dac-a654-9125a5ee8454 {"md5": "ee85f4c57c91f95eb08719867ed8b7bc", "pid": "259327735", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/259327735", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Liroy", "country_associated": "be", "authorized_access_point": "Liroy, 19..-....", "biographical_information": ["Auteur de bandes dessinées", "Pseudonyme de Rémi Leroy"]} 1 +2024-09-11 09:06:11.432023 2024-09-11 09:06:11.432028 933d8e42-c478-48ae-a0c7-66e2f88b005f {"md5": "d0fe2dab7e5c41b2b60a3d06ac343084", "pid": "259329657", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "dentiste", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/259329657", "source": "IDREF"}], "date_of_birth": "1993-03-18", "preferred_name": "Bensouilah, Cherifa, dentiste", "country_associated": "fr", "authorized_access_point": "Bensouilah, Cherifa, 1993-..., dentiste", "biographical_information": ["Docteur d'exercice en chirurgie dentaire. Université de Montpellier. UFR d'Odontologie. A présentée et soutenue publiquement la thèse le 12 juillet 2021"]} 1 +2024-09-11 09:06:11.525499 2024-09-11 09:06:11.525503 1ab014a6-6fc4-4135-b21c-cbaa555f2ef9 {"md5": "67ffcba6fd11228df1a3eb5a0fabb7c1", "pid": "259367516", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/259367516", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Alves Paim Filho, Ignacio", "country_associated": "bl", "authorized_access_point": "Alves Paim Filho, Ignacio, 19..-....", "biographical_information": ["Rua Félix da Cunha 737/410, Porto Alegre – RS, 90570-001 Brésil"]} 1 +2024-09-11 09:06:11.591087 2024-09-11 09:06:11.59109 bb5da248-c2ad-406a-87ce-f603e84f5d46 {"md5": "bf3ac6be0d3ca779d9cad9563654e569", "pid": "25943812X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25943812X", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Maucotel, Nikita", "country_associated": "fr", "authorized_access_point": "Maucotel, Nikita, 19..-...."} 1 +2024-09-11 09:06:11.645377 2024-09-11 09:06:11.645381 696dc5f5-3a68-43a7-bbd6-84395cd80d97 {"md5": "1d08f78ceb71e405076ccdbdb006b730", "pid": "259789798", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/259789798", "source": "IDREF"}], "preferred_name": "Ventista, Ourania Maria", "authorized_access_point": "Ventista, Ourania Maria"} 1 +2024-09-11 09:06:11.697349 2024-09-11 09:06:11.697353 f3af8bf4-e51b-4f18-ad2c-45699e082f6a {"md5": "302bd66e9e0cdd1408dc891cf120d9cf", "pid": "25982142X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25982142X", "source": "IDREF"}], "date_of_birth": "1865", "date_of_death": "1935", "preferred_name": "Colin, Louis-Victor", "country_associated": "fr", "authorized_access_point": "Colin, Louis-Victor, 1865-1935", "biographical_information": ["Ingénieur français né en 1865 à Troyes (Aube) et décédé en 1935 à Guise (Aisne). Diplômé de l'École des arts et métiers de Châlons-en-Champagne, il entre en 1886 au service de la Société du Familistère. Directeur de l'atelier des modèles de l'usine du Familistère (1889). Administrateur-gérant de l'Association coopérative du capital et du travail (1897-1933)."]} 1 +2024-09-11 09:06:11.749361 2024-09-11 09:06:11.749366 c0b5de47-5f5b-4a19-ba11-6a00db3622e4 {"md5": "251ff72788b1ec5133a62f6e9caec224", "pid": "259847127", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/259847127", "source": "IDREF"}], "variant_name": ["Badillo, Jorell A. Meléndez-"], "date_of_birth": "19XX", "preferred_name": "Meléndez-Badillo, Jorell A.", "country_associated": "xxu", "variant_access_point": ["Badillo, Jorell A. Meléndez-"], "authorized_access_point": "Meléndez-Badillo, Jorell A., 19..-....", "biographical_information": ["Historien américaniste"]} 1 +2024-09-11 09:06:11.804765 2024-09-11 09:06:11.804768 11448c6b-d1b6-4cc7-83c5-d949a0f086f3 {"md5": "f7ef922edf3f4cf0006dbcd10f7ec10d", "pid": "259860778", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "ger"], "qualifier": "philosophe", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/259860778", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Pietsch, Wolfgang, philosophe", "country_associated": "gw", "authorized_access_point": "Pietsch, Wolfgang, 19..-...., philosophe", "biographical_information": ["Philosophe des sciences"]} 1 +2024-09-11 09:06:11.855924 2024-09-11 09:06:11.85593 9eb0043f-d20a-434f-8266-0ececf0ed277 {"md5": "d7ca21792e0eddbbaf41b6f74c07637f", "pid": "259863424", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/259863424", "source": "IDREF"}], "date_of_birth": "1991-08-20", "preferred_name": "Forret, Amaury", "country_associated": "fr", "authorized_access_point": "Forret, Amaury, 1991-....", "biographical_information": ["Docteur en médecine (Amiens, 2021)"]} 1 +2024-09-11 09:06:11.909327 2024-09-11 09:06:11.909332 1102ba8c-fff0-4dfb-82fd-1e20deee6499 {"md5": "c8a07ae2af8bde13f82eb8158f626624", "pid": "259907448", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/259907448", "source": "IDREF"}], "date_of_birth": "1992-03-16", "preferred_name": "Florin, Louis", "country_associated": "fr", "authorized_access_point": "Florin, Louis, 1992-...."} 1 +2024-09-11 09:06:11.964598 2024-09-11 09:06:11.964604 c4e25831-6624-45a3-a1a6-4b190a7d0cd2 {"md5": "db7cb4155afa8d0fe64e9bb023ea2bc7", "pid": "259908142", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/259908142", "source": "IDREF"}], "date_of_birth": "19..", "preferred_name": "Point, Claude-Michel", "country_associated": "fr", "authorized_access_point": "Point, Claude-Michel, 19..-....", "biographical_information": ["Titulaire d'une thèse en Médecine (Lyon 1, 1986)"]} 1 +2024-09-11 09:06:12.019479 2024-09-11 09:06:12.019484 9dfe1d0b-6608-4c85-83a4-96cb3ce0aa0e {"md5": "71c952efe44b36fdc183e6655c98a372", "pid": "259925993", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/259925993", "source": "IDREF"}], "date_of_birth": "19..", "preferred_name": "Cretinon, Hubert", "country_associated": "fr", "authorized_access_point": "Cretinon, Hubert, 19..-....", "biographical_information": ["Titulaire d'une thèse en Médecine (Lyon 1, 1986)"]} 1 +2024-09-11 09:06:12.075526 2024-09-11 09:06:12.07553 848db1ad-90a7-4d8b-b0ef-794d17e39074 {"md5": "aa6e5abf7c9dc73c547cf417588b1095", "pid": "259928844", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/259928844", "source": "IDREF"}], "preferred_name": "Gantiez, Antoine", "country_associated": "fr", "authorized_access_point": "Gantiez, Antoine"} 1 +2024-09-11 09:06:12.128 2024-09-11 09:06:12.128002 7818cdc0-f603-4d30-950c-468655b3d8c8 {"md5": "5d0dc673f612f5b1845d1fdd05c786e4", "pid": "259991724", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/259991724", "source": "IDREF"}], "date_of_birth": "1997-08-25", "preferred_name": "Meyer, Tess", "country_associated": "fr", "authorized_access_point": "Meyer, Tess, 1997-....", "biographical_information": ["A soutenu un mémoire d'orthophonie à l'école d'orthophonie de l'Université Côte d'Azur en 2021"]} 1 +2024-09-11 09:06:12.181901 2024-09-11 09:06:12.181905 8ab62273-c993-413d-8e7f-22810e7a44e8 {"md5": "39398d95fe28d19bad35964bccbada29", "pid": "260074969", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260074969", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Fernández Fernández, Álvaro", "authorized_access_point": "Fernández Fernández, Álvaro, 19..-...."} 1 +2024-09-11 09:06:12.236972 2024-09-11 09:06:12.236974 9e195ffb-5a47-4cb0-a3a3-514172e56692 {"md5": "b053034267bb8bb447a3fa8f3bdc4ba0", "pid": "26009773X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26009773X", "source": "IDREF"}], "date_of_birth": "1990-07-22", "preferred_name": "Fahrni, Anne-Claude", "country_associated": "sz", "authorized_access_point": "Fahrni, Anne-Claude, 1990-....", "biographical_information": ["Médecin. Docteure de l'Université de Fribourg, Suisse (2021)"]} 1 +2024-09-11 09:06:12.293599 2024-09-11 09:06:12.293604 b315b517-6b60-4ef5-8ef2-45b92c12d46c {"md5": "27d5c02b11e40b55cafcf44b3abf928d", "pid": "260176893", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260176893", "source": "IDREF"}], "date_of_birth": "1950--", "preferred_name": "Dertouzos, James, N.", "country_associated": "xxu", "authorized_access_point": "Dertouzos, James, N., 1950-"} 1 +2024-09-11 09:06:12.356951 2024-09-11 09:06:12.356954 9b11f0f0-4880-4b52-9fbd-acf6ce699a77 {"md5": "3fbf1e629120a3a4f078ad97f0c56b51", "pid": "260238570", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260238570", "source": "IDREF"}], "date_of_birth": "1993-06-10", "preferred_name": "Lécuyer, Ophélie", "country_associated": "fr", "authorized_access_point": "Lécuyer, Ophélie, 1993-....", "biographical_information": ["Auteur d'une thèse de doctorat d'Histoire ancienne, Université de Strasbourg, 2021"]} 1 +2024-09-11 09:06:13.115269 2024-09-11 09:06:13.115275 c65640ed-ee6d-4ac9-8f6a-23161579f923 {"md5": "d6ec380eb6fc0852154728e713ae308d", "pid": "260807710", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260807710", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Hardt, Mathilde", "country_associated": "be", "authorized_access_point": "Hardt, Mathilde, 19..-....", "biographical_information": ["Professeure à temps partiel à l’ULB, professeure invitée à l’USL-B et chercheuse post-doctorante F.R.S.-FNRS"]} 1 +2024-09-11 09:06:12.416044 2024-09-11 09:06:12.416048 5aa52389-1a45-493a-9c2d-74fc304bac31 {"md5": "b452545c2a50b660efb83c6f3cb9817e", "pid": "260322393", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260322393", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Bonfim, Carolina", "country_associated": "be", "authorized_access_point": "Bonfim, Carolina, 19..-....", "biographical_information": ["Carolina BONFIM est artiste, enseignante et chercheuse. Docteure en arts et sciences de l'art (Université Libre de Bruxelles et École nationale supérieure des arts visuels de La Cambre). Centrée sur la question des archives immatérielles, sa pratique se base sur le développement et la mise en œuvre de modes expérimentaux de transmission et de traduction. Au cours de ces dernières années, elle a mené à bien différents projets artistiques et de recherche, qui ont en commun l’établissement d’un dialogue étroit avec la pensée critique."]} 1 +2024-09-11 09:06:12.47155 2024-09-11 09:06:12.471553 b9ebae6f-91f4-461b-ae7d-1fc95c745d57 {"md5": "6ae8f5365f85f57744c93e5fc3779236", "pid": "260328065", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["hun"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260328065", "source": "IDREF"}], "date_of_birth": "1883", "date_of_death": "1976", "preferred_name": "Bihari, Mór", "authorized_access_point": "Bihari, Mór, 1883-1976", "biographical_information": ["Instituteur hongrois, membre influent du Syndicat des enseignants. Un des responsables de la politique éducative de la République des Conseils (en 1919)."]} 1 +2024-09-11 09:06:12.533395 2024-09-11 09:06:12.5334 21adb638-3304-457f-9eda-ca5afecf7e93 {"md5": "b1d9790dde1382413d73d34092785b09", "pid": "26040862X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ara"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26040862X", "source": "IDREF"}], "variant_name": ["مونة, أحمد", "Mūnah, Aḥmad", "Mouna, Ahmed"], "date_of_birth": "19XX", "preferred_name": "Mūnaẗ, Aḥmad", "country_associated": "xx", "variant_access_point": ["Mūnah, Aḥmad", "Mouna, Ahmed"], "authorized_access_point": "Mūnaẗ, Aḥmad, 19..-....", "biographical_information": ["Professeur de logique et de droit islamique"]} 1 +2024-09-11 09:06:12.60373 2024-09-11 09:06:12.603733 f5977d45-42a7-487e-bd92-e57a1900368d {"md5": "455f24eabea18e44dcdadc11fe2feb67", "pid": "260480584", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260480584", "source": "IDREF"}], "preferred_name": "Neitzel, Hartmut", "country_associated": "gw", "authorized_access_point": "Neitzel, Hartmut"} 1 +2024-09-11 09:06:12.67873 2024-09-11 09:06:12.678735 6d2f6ca9-1bbf-4387-b5c2-656533a62bc3 {"md5": "d119c7c1a7685a1e7b0cb1cc2dc74026", "pid": "260499021", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa", "por"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260499021", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Maiz Montanaro, Marcos", "country_associated": "py", "authorized_access_point": "Maiz Montanaro, Marcos, 19..-....", "biographical_information": ["Traducteur"]} 1 +2024-09-11 09:06:12.733432 2024-09-11 09:06:12.733436 aeec37cf-aef7-4332-9e8c-6beebcb4562f {"md5": "5987ea36220656435daa382eb0186c5e", "pid": "260505269", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ita"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260505269", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Giovagnoli, Alessandra", "country_associated": "it", "authorized_access_point": "Giovagnoli, Alessandra", "biographical_information": ["Dipt. di Scienze Statistiche, University of Bologna"]} 1 +2024-09-11 09:06:12.783379 2024-09-11 09:06:12.783382 2456a72f-5243-4200-a1de-9ee11e8a66ed {"md5": "18d5bc053f68a48bf76ecf02ccccda4c", "pid": "260578045", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260578045", "source": "IDREF"}], "date_of_birth": "1991-09-15", "preferred_name": "Viaouët, Alexis-(1991. ....)", "country_associated": "fr", "authorized_access_point": "Viaouët, Alexis-(1991. ....)", "biographical_information": ["Auteur d'une thèse d'exercice en Médecine spécialisée soutenue le 14 octobre 2021 à l'Université de Bordeaux"]} 1 +2024-09-11 09:06:12.837087 2024-09-11 09:06:12.837091 391be8e0-395e-4ff9-bb31-4126352082a7 {"md5": "8945f5b1bad75d6cb7153e6de65fefaf", "pid": "260582808", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260582808", "source": "IDREF"}], "variant_name": ["Blavia, Francisco"], "preferred_name": "Blavia B., Francisco", "country_associated": "ve", "variant_access_point": ["Blavia, Francisco"], "authorized_access_point": "Blavia B., Francisco", "biographical_information": ["Ingénieur agronome"]} 1 +2024-09-11 09:06:12.88812 2024-09-11 09:06:12.888123 23560bc8-8aed-40da-b258-fd755615cc39 {"md5": "871d5b83f346f6656d1ec594b99724a5", "pid": "260592404", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260592404", "source": "IDREF"}], "date_of_birth": "1995-10-09", "preferred_name": "Uhlrich, Grégoire", "country_associated": "fr", "authorized_access_point": "Uhlrich, Grégoire, 1995-....", "biographical_information": ["Auteur d'une thèse en Physique théorique soutenue à l'Université de Lyon en 2021"]} 1 +2024-09-11 09:06:12.943791 2024-09-11 09:06:12.943795 f6d07769-016c-46a2-9cb6-74af76b6b8e8 {"md5": "1add4ad7b7ef0e797ec243abddb2ed1e", "pid": "260735353", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260735353", "source": "IDREF"}], "date_of_birth": "1994-07-31", "preferred_name": "Mancini, Maxence", "country_associated": "fr", "authorized_access_point": "Mancini, Maxence, 1994-....", "biographical_information": ["Docteur en Pharmacie (2021)"]} 1 +2024-09-11 09:06:13.002365 2024-09-11 09:06:13.002369 50eb9696-31e2-4719-b5a3-74b0195e4037 {"md5": "957071655a1fd37c963debaeb179b010", "pid": "260775967", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["und"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260775967", "source": "IDREF"}], "preferred_name": "Bureau Emmenegger (Fribourg, Suisse)", "country_associated": "sz", "authorized_access_point": "Bureau Emmenegger (Fribourg, Suisse)"} 1 +2024-09-11 09:06:13.055452 2024-09-11 09:06:13.055455 6ad56738-4fed-423b-9cd7-d5f376ecaa48 {"md5": "18233f045fd5a06b9e1cacd734c5624f", "pid": "260782955", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260782955", "source": "IDREF"}], "date_of_birth": "1992-10-10", "preferred_name": "Schulz, Aurélie", "country_associated": "fr", "authorized_access_point": "Schulz, Aurélie, 1992-....", "biographical_information": ["Auteur d'une thèse en Géochimie à Strasbourg en 2020"]} 1 +2024-09-11 09:06:13.170494 2024-09-11 09:06:13.170498 ebaeb5be-ea3b-46c5-8f60-ad4c951d2b48 {"md5": "6099d4e3c6bb0ec92d2f6932b56f6458", "pid": "260812374", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "professeure des écoles", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260812374", "source": "IDREF"}], "date_of_birth": "19..", "preferred_name": "Rivière, Jennifer, professeure des écoles", "country_associated": "fr", "authorized_access_point": "Rivière, Jennifer, 19.., professeure des écoles", "biographical_information": ["Professeure des écoles"]} 1 +2024-09-11 09:06:13.229331 2024-09-11 09:06:13.229336 8a369ed0-ff1b-4921-86c6-f0c79c0172cf {"md5": "d2f30d3b8644bcb5cee5475aa4fda2ec", "pid": "260844578", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260844578", "source": "IDREF"}], "preferred_name": "Government of Gibraltar", "country_associated": "gi", "date_of_establishment": "19XX", "authorized_access_point": "Government of Gibraltar", "biographical_information": ["Mécène"]} 1 +2024-09-11 09:06:13.288538 2024-09-11 09:06:13.288541 2d9d790f-3100-475e-bc3f-95457b39c3ca {"md5": "3765b5c739f10b335678fc0e009060f4", "pid": "260864811", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260864811", "source": "IDREF"}], "preferred_name": "Sayegh, Faouzi", "country_associated": "fr", "authorized_access_point": "Sayegh, Faouzi", "biographical_information": ["Auteur d'une thèse de Psychologie à Nice en 1984"]} 1 +2024-09-11 09:06:13.343883 2024-09-11 09:06:13.343888 0090b9a3-665d-4dac-b695-9409a52f9b98 {"md5": "e507b85a314adc2e2152f282be42a3fc", "pid": "260877484", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260877484", "source": "IDREF"}], "date_of_birth": "1994-12-28", "preferred_name": "Taylor, William", "country_associated": "xxk", "authorized_access_point": "Taylor, William, 1994-....", "biographical_information": ["Titulaire d'un doctorat en cancérologie à Rennes 1 en 2021"]} 1 +2024-09-11 09:06:13.404135 2024-09-11 09:06:13.404139 39fe36d2-4882-498a-9436-295192a6b762 {"md5": "687678ffc4d3cc7a5eb45fe2c777d543", "pid": "26091164X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26091164X", "source": "IDREF"}], "date_of_birth": "1994-05-17", "preferred_name": "Mérou, Nicolas", "country_associated": "fr", "authorized_access_point": "Mérou, Nicolas, 1994-....", "biographical_information": ["Auteur d'une thèse en Biologie de l'environnement, des populations, écologie à La Rochelle en 2021"]} 1 +2024-09-11 09:06:13.45768 2024-09-11 09:06:13.457683 05cca4db-9c47-4463-a31d-9b1247d40e01 {"md5": "a8b04a86abacb7eea3d97e23a12b1d6a", "pid": "260925810", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260925810", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Lacadée, Jean-Pierre", "country_associated": "fr", "authorized_access_point": "Lacadée, Jean-Pierre, 19..-....", "biographical_information": ["Docteur en médecine à Bordeaux 2 en 1987"]} 1 +2024-09-11 09:06:13.512777 2024-09-11 09:06:13.512782 8fe179f4-4f3d-4851-933d-8509f31db8c6 {"md5": "f969ab613c4ba5d38335418b465674fb", "pid": "260929905", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260929905", "source": "IDREF"}], "date_of_birth": "1994-01-75", "preferred_name": "Carbillet, Morgane", "country_associated": "fr", "authorized_access_point": "Carbillet, Morgane, 1994-....", "biographical_information": ["Auteur d'une thèse d'exercice en Chirurgie dentaire (Toulouse 3, 2020)"]} 1 +2024-09-11 09:06:13.565765 2024-09-11 09:06:13.565769 d2a6b00d-0cc6-4ad3-ae0b-73d42e426cba {"md5": "022e60675571897a8a36767b534c4700", "pid": "260939587", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260939587", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Gay, Sylvie", "country_associated": "sz", "authorized_access_point": "Gay, Sylvie, 19..-....", "biographical_information": ["Autrice de poésie originaire du Valais (Suisse)"]} 1 +2024-09-11 09:06:13.620635 2024-09-11 09:06:13.620641 f2dda736-cc7a-4825-98a8-428ebc18a735 {"md5": "f891db1f67dbb6307ce42a161fba5a01", "pid": "260943193", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["hun", "ger"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260943193", "source": "IDREF"}], "variant_name": ["Állami Főgymnasium (Hermannstadt)", "Staatliches Gymnasium Hermannstadt", "Staatliches Hauptgymnasium Groß-Szeben", "Hauptgymnasium (Hermannstadt)"], "preferred_name": "Nagyszebeni Állami Főgymnasium (Sibiu)", "country_associated": "rm", "variant_access_point": ["Állami Főgymnasium (Hermannstadt)", "Staatliches Gymnasium Hermannstadt", "Staatliches Hauptgymnasium Groß-Szeben", "Hauptgymnasium (Hermannstadt)"], "authorized_access_point": "Nagyszebeni Állami Főgymnasium (Sibiu)"} 1 +2024-09-11 09:06:13.715111 2024-09-11 09:06:13.715115 668e36ed-470e-4546-b566-3e408b58f931 {"md5": "f226fdf1081d5e189ce83a422f953a61", "pid": "260977756", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260977756", "source": "IDREF"}], "date_of_birth": "1951-08-09", "preferred_name": "Lavalette, Béatrice de", "country_associated": "fr", "authorized_access_point": "Lavalette, Béatrice de, 1951-...."} 1 +2024-09-11 09:06:13.768642 2024-09-11 09:06:13.768647 e9263b10-7e36-453d-b01f-88473ef10a50 {"md5": "977c392ad88d66d6fdaf75f136da7e33", "pid": "260987204", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "magistrat", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260987204", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Giraud, Benoît, magistrat", "country_associated": "fr", "authorized_access_point": "Giraud, Benoît, magistrat", "biographical_information": ["Président du tribunal judiciaire de Limoges, membre du Conseil supérieur de la magistrature (en 2022)"]} 1 +2024-09-11 09:06:13.821929 2024-09-11 09:06:13.821932 c9b80436-223e-48ed-9100-be3e1c02a2b6 {"md5": "33d22cae551d5120c2b26f05ef16475a", "pid": "260995223", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre", "ger"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260995223", "source": "IDREF"}], "preferred_name": "Galerie Laeubli (Zürich, Suisse)", "country_associated": "sz", "date_of_establishment": "XXXX", "authorized_access_point": "Galerie Laeubli (Zürich, Suisse)"} 1 +2024-09-11 09:06:13.872867 2024-09-11 09:06:13.872871 3c171f67-8be0-452e-ad8d-12fc3ac05498 {"md5": "fd1a654567092f828cc7e8ef969910d1", "pid": "261067079", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261067079", "source": "IDREF"}], "preferred_name": "Leonelli Cantergiani, Gina Natalie", "authorized_access_point": "Leonelli Cantergiani, Gina Natalie", "biographical_information": ["Auteur d'une thèse en Sciences et procédés des aliments et bioproduits à Paris, AgroParisTech en 2011"]} 1 +2024-09-11 09:06:13.924592 2024-09-11 09:06:13.924595 ddcc1e64-eea4-49a1-a133-032c87bf919a {"md5": "5ea19f24615ed158b5d6f15af6546a34", "pid": "261116274", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261116274", "source": "IDREF"}], "date_of_birth": "19..", "preferred_name": "Gauducheau, Anne", "country_associated": "fr", "authorized_access_point": "Gauducheau, Anne, 19..-....", "biographical_information": ["Docteur en médecine (en 1988)"]} 1 +2024-09-11 09:06:13.976027 2024-09-11 09:06:13.976032 ed116d22-8679-4980-9b20-3b7b7e08d58f {"md5": "e2f36f931ab25be4a177980ea7c2507b", "pid": "261144588", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fin"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261144588", "source": "IDREF"}], "preferred_name": "Palomäki, Mauri", "country_associated": "fi", "authorized_access_point": "Palomäki, Mauri"} 1 +2024-09-11 09:06:14.02849 2024-09-11 09:06:14.028495 a95b58e9-e7b2-45b1-b954-faa5429e26d7 {"md5": "16e42f67c1e951645855c0b80ff4f12e", "pid": "261155210", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["may"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261155210", "source": "IDREF"}], "date_of_birth": "19..", "preferred_name": "Abdullah, Nor Rul Hasma", "country_associated": "my", "authorized_access_point": "Abdullah, Nor Rul Hasma, 19..-....", "biographical_information": ["Faculté d'électricité et d'électronique. Université de Malaisie Pahang Pekan, Pahang, Malaisie"]} 1 +2024-09-11 09:06:14.08577 2024-09-11 09:06:14.085773 55a2b4d0-ae18-46eb-895b-9f71be29f7a4 {"md5": "164b072a32c39bd5002a7ddfec301c16", "pid": "26124096X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26124096X", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Lachowicz, Loïs", "country_associated": "fr", "authorized_access_point": "Lachowicz, Loïs, 19..-...."} 1 +2024-09-11 09:06:14.137409 2024-09-11 09:06:14.137413 b8e3ae0b-b833-4ffb-860b-96c3d352f9bd {"md5": "1e1f08e0a05a5e451c7225c7c3231e3e", "pid": "261260987", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261260987", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Dubuis, Anouck", "country_associated": "sz", "authorized_access_point": "Dubuis, Anouck, 19..-....", "biographical_information": ["Auteur d'un mémoire de master en droit à Université de Lausanne en 2021"]} 1 +2024-09-11 09:06:14.190625 2024-09-11 09:06:14.190628 8602a06f-748e-4b41-837d-fc6266439824 {"md5": "0c8001f950b4e3dfc260148a9affaf50", "pid": "261270206", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261270206", "source": "IDREF"}], "date_of_birth": "19..-.", "preferred_name": "Ariane", "country_associated": "fr", "authorized_access_point": "Ariane", "biographical_information": ["1re youtubeuse de yoga en France"]} 1 +2024-09-11 09:06:14.248257 2024-09-11 09:06:14.248261 8faa54fd-add5-4b88-9924-b55b5764addf {"md5": "7582f395a0644ec29b8c95bfb7259957", "pid": "261515632", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261515632", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Thoma, Ulrike", "country_associated": "gw", "authorized_access_point": "Thoma, Ulrike", "biographical_information": ["HISKP Universität Bonn"]} 1 +2024-09-11 09:06:14.303053 2024-09-11 09:06:14.303058 92bdbded-9050-4b2f-bc28-359f9412a94a {"md5": "c723412dc53601166fbed6b6b445e943", "pid": "261606441", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261606441", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Hall, Eilidh AB", "country_associated": "xxk", "authorized_access_point": "Hall, Eilidh AB", "biographical_information": ["Docteur études américaines à l'Université East Anglia (Royaume Uni)"]} 1 +2024-09-11 09:06:14.36451 2024-09-11 09:06:14.364515 0ea5a130-6411-4c22-81e5-577aa4b7aff1 {"md5": "c27390a4ce2b8f1342e0aff4ab79aa68", "pid": "261732722", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261732722", "source": "IDREF"}], "preferred_name": "Sasaki, Lidia", "country_associated": "ja", "authorized_access_point": "Sasaki, Lidia", "biographical_information": ["Professeur assistant, International Center, Tokyo Metropolitan University"]} 1 +2024-09-11 09:06:14.425221 2024-09-11 09:06:14.425225 8752eae5-3956-4391-95f2-b26c5fda06b2 {"md5": "b0241ecf014204781a120d1b03ef52d1", "pid": "261805762", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261805762", "source": "IDREF"}], "variant_name": ["Druba, Bernd Brandes-"], "date_of_birth": "1960", "preferred_name": "Brandes-Druba, Bernd", "country_associated": "gw", "variant_access_point": ["Druba, Bernd Brandes-, 1960-...."], "authorized_access_point": "Brandes-Druba, Bernd, 1960-....", "biographical_information": ["Archéologue et historien d'art", "Lieu de naissance : Celle, Allemagne."]} 1 +2024-09-11 09:06:14.478489 2024-09-11 09:06:14.478493 52bfb587-025f-4a7a-918d-a29152479f8a {"md5": "119e1fdf8a8eff6d8916aa4366c3092e", "pid": "261809911", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261809911", "source": "IDREF"}], "date_of_birth": "19..", "preferred_name": "Bricault, Robert", "country_associated": "fr", "authorized_access_point": "Bricault, Robert"} 1 +2024-09-11 09:06:14.538315 2024-09-11 09:06:14.538317 3f731b4e-41bc-476b-8940-1348d32c8ebe {"md5": "a939411cf142d27239fd82c35b76ff86", "pid": "261814176", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261814176", "source": "IDREF"}], "preferred_name": "Agbayissah, Sena", "country_associated": "tg", "authorized_access_point": "Agbayissah, Sena", "biographical_information": ["Avocat associé dans le cabinet Hughes Hubbard & Reed LLP (Paris), membre du conseil d'administration de l'Association européenne de droit bancaire et financier (AEDBF)."]} 1 +2024-09-11 09:06:14.704812 2024-09-11 09:06:14.704815 4c9e0cdb-c562-4679-a511-4f817b1e27a7 {"md5": "0040affc2dde03301625f0f9e351ee15", "pid": "261974580", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261974580", "source": "IDREF"}], "date_of_birth": "1960-09-04", "preferred_name": "Mallet, Thierry", "country_associated": "fr", "authorized_access_point": "Mallet, Thierry, 1960-....", "biographical_information": ["Diplômé de l’École Polytechnique (1980), de l’École nationale des Ponts et Chaussées (1985) et titulaire d’un MSC en Transport du MIT – Massachusetts Institute of Technology – (1986)", "Depuis 2016, Président directeur général de Transdev, groupe français multinational de transport"]} 1 +2024-09-11 09:06:14.758519 2024-09-11 09:06:14.758524 205cf7dd-89be-468a-ad78-ec16de69dc8f {"md5": "b003990c053666853abdb7c1ad271f6b", "pid": "26212369X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26212369X", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "de Souza Matos, Lorena Bezerra", "country_associated": "xxu", "authorized_access_point": "de Souza Matos, Lorena Bezerra, 19..-....", "biographical_information": ["Enseignante et chercheuse en management et membre de l’Institut de recherche en gestion. Elle développe des recherches théoriques et empiriques qualitatives, en particulier la gestion de l’innovation, le bien-être, la bureaucratie et la création de sens. Ses recherches actuelles portent sur l’impact des espaces verts urbains sur le bien-être des citoyens. Ses publications les plus récentes sont parues dans les revues rausp Management Journal et Mackenzie Management Review."]} 1 +2024-09-11 09:06:14.810687 2024-09-11 09:06:14.81069 251b1554-d486-4206-b332-00fd32a6aac2 {"md5": "b04c44164f92fcc4244a56f254339c18", "pid": "26221007X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["spa"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26221007X", "source": "IDREF"}], "preferred_name": "Araque, Ricardo", "authorized_access_point": "Araque, Ricardo", "biographical_information": ["Ingénieur agronome"]} 1 +2024-09-11 09:06:14.861721 2024-09-11 09:06:14.861726 caf1720d-380d-49a7-a48a-080f7be22a0f {"md5": "b052c7c883726f82b9048b3111020bdd", "pid": "262212129", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262212129", "source": "IDREF"}], "preferred_name": "Campbell, Julieann", "authorized_access_point": "Campbell, Julieann"} 1 +2024-09-11 09:06:14.91483 2024-09-11 09:06:14.914834 8b88a556-5ccd-4ebd-a232-fea2b7f5056b {"md5": "f5ce5edb7134626a0848e4ee4e1eb341", "pid": "262213656", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262213656", "source": "IDREF"}], "preferred_name": "Smith, Christopher B.R.", "authorized_access_point": "Smith, Christopher B.R.", "biographical_information": ["Chercheur à la Memorial University's School of Social Work"]} 1 +2024-09-11 09:06:14.967945 2024-09-11 09:06:14.967948 21db2c7e-0a02-4bcf-96cf-911fd25ac8a4 {"md5": "5d0854309f6d8682cd6097b48418b6dc", "pid": "262246619", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262246619", "source": "IDREF"}], "variant_name": ["Blanc, Candice Joyce"], "date_of_birth": "19XX", "preferred_name": "Blanc, Candice", "country_associated": "sz", "variant_access_point": ["Blanc, Candice Joyce"], "authorized_access_point": "Blanc, Candice, 19..-....", "biographical_information": ["Architecte"]} 1 +2024-09-11 09:06:15.037091 2024-09-11 09:06:15.037095 b02c5221-d1ed-468d-a204-fd449c198d28 {"md5": "10ccbab7e5a247e3f5ea9f979ce8d464", "pid": "262262940", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262262940", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Mersha, Genet", "country_associated": "et", "authorized_access_point": "Mersha, Genet, 19..-....", "biographical_information": ["Analyste principale à Ethio Quest News, portail d’information, d’étude et d’analyse sur l’Éthiopie."]} 1 +2024-09-11 09:06:15.114558 2024-09-11 09:06:15.114562 5bf98200-58d7-4aa8-8ea6-1b98cfecc81a {"md5": "60ea75666c44405684adf361aa3095b1", "pid": "262286394", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262286394", "source": "IDREF"}], "preferred_name": "Deslandes, Geneviève", "authorized_access_point": "Deslandes, Geneviève", "biographical_information": ["Cégep de Saint-Hyacinthe, Canada"]} 1 +2024-09-11 09:06:15.171573 2024-09-11 09:06:15.171576 dd0e0bdc-3ed2-4372-b148-c102b9bf17bc {"md5": "f6610f133f6c59b54461ebdda96c073f", "pid": "26232217X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["rus"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26232217X", "source": "IDREF"}], "variant_name": ["Коршунов, В.Г."], "preferred_name": "Koršunov, V.G.", "country_associated": "ru", "variant_access_point": ["Коршунов, В.Г."], "authorized_access_point": "Koršunov, V.G.", "biographical_information": ["Militaire soviétique"]} 1 +2024-09-11 09:06:15.226836 2024-09-11 09:06:15.22684 b62f0891-c31f-45df-8349-c4b5fbb6fdb2 {"md5": "008656cf4101887ba04165dcdfd8e465", "pid": "262328836", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262328836", "source": "IDREF"}], "preferred_name": "Berengueras, Jennifer", "authorized_access_point": "Berengueras, Jennifer"} 1 +2024-09-11 09:06:15.281409 2024-09-11 09:06:15.281414 e6921b75-500a-4c89-ba2a-5a5feb020800 {"md5": "53281253b7cda49e1392e0b30a9fd041", "pid": "262350459", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262350459", "source": "IDREF"}], "preferred_name": "Sanlam Art Gallery (Bellville, Afrique du Sud)", "country_associated": "sa", "authorized_access_point": "Sanlam Art Gallery (Bellville, Afrique du Sud)", "biographical_information": ["Galerie d'art"]} 1 +2024-09-11 09:06:15.336446 2024-09-11 09:06:15.336449 f4da7dee-c4b8-41d6-9622-a6b83ddb01fe {"md5": "aa57840e8f7cbdfe59690a80a187b6b8", "pid": "262354659", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262354659", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Abrash, Merritt", "country_associated": "xxu", "authorized_access_point": "Abrash, Merritt"} 1 +2024-09-11 09:06:15.390921 2024-09-11 09:06:15.390926 ae45e2b1-f778-4769-b30d-76feaed3113b {"md5": "e590a10c62bdcf176778c3f8f59efb20", "pid": "262398516", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262398516", "source": "IDREF"}], "preferred_name": "Ducret, Sylvie", "authorized_access_point": "Ducret, Sylvie", "biographical_information": ["Directeur de thèse"]} 1 +2024-09-11 09:06:15.453061 2024-09-11 09:06:15.453063 48c04cfa-aab3-4cc1-befc-70499aea0dea {"md5": "abb70391f32d44840bb56fab1e705d1a", "pid": "262403242", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre", "eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262403242", "source": "IDREF"}], "date_of_birth": "1994-10-18", "preferred_name": "Petit, Quentin", "country_associated": "fr", "authorized_access_point": "Petit, Quentin, 1994-....", "biographical_information": ["Auteur d'une thèse en Mathématiques appliquées à Université Paris sciences et lettres en 2022"]} 1 +2024-09-11 09:06:15.521195 2024-09-11 09:06:15.5212 d144a762-6a51-4403-84d0-b85b82ffd57b {"md5": "18cb39aa641f38b0fdffe4b3fd84cfea", "pid": "262436574", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": true, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262436574", "source": "IDREF"}], "preferred_name": "Workshop on Japan Linear Collider (JLC)", "country_associated": "ja", "date_of_termination": "1992-02-20", "date_of_establishment": "1992-02-18", "authorized_access_point": "Workshop on Japan Linear Collider (JLC) (1992)"} 1 +2024-09-11 09:06:15.615646 2024-09-11 09:06:15.615651 a8131209-8f62-4b40-8f33-ade0abd8b218 {"md5": "1c8f4a9470441167ed9783ef8bfab2ee", "pid": "262452979", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng", "chi"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262452979", "source": "IDREF"}], "variant_name": ["冯, 秋香"], "date_of_birth": "19XX", "preferred_name": "Feng, Qiuxiang", "country_associated": "cc", "variant_access_point": ["冯, 秋香, 19..-...."], "authorized_access_point": "Feng, Qiuxiang, 19..-....", "biographical_information": ["Traductrice"]} 1 +2024-09-11 09:06:15.672545 2024-09-11 09:06:15.672548 a79a9f39-938f-45ad-9f1f-e9fcc522d580 {"md5": "e28006999dd3a1385269af9074121118", "pid": "262466724", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "auteur(e) en physique", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262466724", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Veitshans, Thomas, auteur(e) en physique", "country_associated": "fr", "authorized_access_point": "Veitshans, Thomas, 19..-...., auteur(e) en physique", "biographical_information": ["Auteur(e) d'une thèse de doctorat en physique (Grenoble 1, 1998)"]} 1 +2024-09-11 09:06:15.731891 2024-09-11 09:06:15.731896 19d2da8f-5466-4215-ace5-2975b92d8ff1 {"md5": "dfc844a3aba2ac82eb9a83ac3f37bec1", "pid": "262469561", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["chi"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262469561", "source": "IDREF"}], "variant_name": ["刘, 兴建"], "date_of_birth": "19XX", "preferred_name": "Liu, Xingjian", "country_associated": "cc", "variant_access_point": ["刘, 兴建"], "authorized_access_point": "Liu, Xingjian, 19..-...."} 1 +2024-09-11 09:06:15.787558 2024-09-11 09:06:15.787564 2835152a-35ef-419c-b4ee-3cf822087b33 {"md5": "2ae2c52c634c81f827302913dd41df80", "pid": "262471116", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262471116", "source": "IDREF"}], "date_of_birth": "1958", "preferred_name": "Bossbach, Christel", "country_associated": "gw", "authorized_access_point": "Bossbach, Christel, 1958-....", "biographical_information": ["Rédactrice radio et journaliste"]} 1 +2024-09-11 09:06:15.839552 2024-09-11 09:06:15.839555 4726ab16-fc11-4ecd-9879-1e554695b634 {"md5": "6a07f1fda62facca31384d2ad1d8db01", "pid": "262486636", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262486636", "source": "IDREF"}], "date_of_birth": "1990-10-26", "preferred_name": "Petitmangin, Alizée", "country_associated": "fr", "authorized_access_point": "Petitmangin, Alizée, 1990-....", "biographical_information": ["Auteur d'une thèse en Droit privé à Université de Lille (2018-2021) en 2021"]} 1 +2024-09-11 09:06:15.890717 2024-09-11 09:06:15.890723 7ef0e310-ca04-4f79-8107-5f8fc2c3485f {"md5": "767abfd67f35667b88ae8bb2d6016721", "pid": "26249714X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["por"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26249714X", "source": "IDREF"}], "date_of_birth": "1913", "date_of_death": "1933", "preferred_name": "Palmeira, José Amaral", "country_associated": "bl", "authorized_access_point": "Palmeira, José Amaral, 1913-1933"} 1 +2024-09-11 09:06:15.942925 2024-09-11 09:06:15.942929 59da45b6-0f43-4204-a3c4-557c62a8309f {"md5": "851e2d96f0f0ed475cfd09acd9d2cd3e", "pid": "262504391", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262504391", "source": "IDREF"}], "variant_name": ["University of Wisconsin-Milwaukee. Center for Great Lakes studies", "CGLS"], "preferred_name": "Center for Great Lakes studies (Milwaukee, Wis.)", "country_associated": "xxu", "variant_access_point": ["University of Wisconsin-Milwaukee. Center for Great Lakes studies", "CGLS"], "date_of_establishment": "1966", "authorized_access_point": "Center for Great Lakes studies (Milwaukee, Wis.)", "biographical_information": ["Association étudiante dédiée à la recherche sur les sciences aquatiques, centrée sur les Grands Lacs."]} 1 +2024-09-11 09:06:15.995256 2024-09-11 09:06:15.99526 58a8b787-764d-4909-b226-02cb0b4e134a {"md5": "004775bde634e09143648e186e380e89", "pid": "262615223", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262615223", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Bolster, Diogo", "authorized_access_point": "Bolster, Diogo, 19..-....", "biographical_information": ["Professeur, University of Notre Dame, Etats-Unis en 2021"]} 1 +2024-09-11 09:06:16.052677 2024-09-11 09:06:16.052687 1b783433-ebae-4281-acd1-5a2449291e69 {"md5": "58ab46222574b165400bb6ed3fcb4829", "pid": "262645882", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "conference": false, "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262645882", "source": "IDREF"}], "variant_name": ["Alliance française de Plzen"], "preferred_name": "Alliance française (Pilsen, République tchèque)", "variant_access_point": ["Alliance française de Plzen"], "authorized_access_point": "Alliance française (Pilsen, République tchèque)"} 1 +2024-09-11 09:06:16.116257 2024-09-11 09:06:16.11626 d589b311-b6a5-43d0-9496-734743336fca {"md5": "4e7d9b6585d208700252e5784296f0b5", "pid": "26282180X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26282180X", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Bechetoille, Edouard", "country_associated": "fr", "authorized_access_point": "Bechetoille, Edouard, 19..-....", "biographical_information": ["Ingénieur de recherche au CNRS, laboratoire IN2P3 en poste en 2021. Co-encadrant d'une thèse en Microélectronique soutenue à l'Université de Lyon en 2021"]} 1 +2024-09-11 09:06:16.1743 2024-09-11 09:06:16.174303 65c03fc9-cef4-4c2b-864f-a1425d63fbb6 {"md5": "0ce42fd7cd0706f3f7b58eba2bbba8f6", "pid": "26285242X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "qualifier": "docteur en pharmacie", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26285242X", "source": "IDREF"}], "date_of_birth": "19..", "preferred_name": "David, Catherine, docteur en pharmacie", "country_associated": "fr", "authorized_access_point": "David, Catherine, 19..-...., docteur en pharmacie", "biographical_information": ["Docteur en pharmacie (en 2022)"]} 1 +2024-09-11 09:06:16.231984 2024-09-11 09:06:16.231988 4085ae87-f43b-4b57-8940-aaed6eef6f47 {"md5": "1fef68f8c637a8110419f35f6d36daae", "pid": "262888467", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262888467", "source": "IDREF"}], "preferred_name": "Smith, Grant W.", "authorized_access_point": "Smith, Grant W."} 1 +2024-09-11 09:06:16.285896 2024-09-11 09:06:16.285905 d3074eba-3ee0-420c-aefe-a8411932afe6 {"md5": "06575a0301205ac0f7ebb372bfd44b5e", "pid": "263082091", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["chi"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263082091", "source": "IDREF"}], "variant_name": ["齐宸"], "preferred_name": "Qi, Chen", "country_associated": "cc", "variant_access_point": ["齐宸"], "authorized_access_point": "Qi, Chen", "biographical_information": ["Docteure en droit., chercheuse postdoctorale à la Faculté de droit de l'Université de technologie de Pékin et à l'Institut de prévention et de résolution des conflits internationaux. Ses principaux domaines de recherche sont le droit international privé, le droit de la procédure civile internationale, le droit de l'arbitrage commercial international et les organisations à but non lucratif."]} 1 +2024-09-11 09:06:16.345126 2024-09-11 09:06:16.345129 97c7ce49-35ce-45f1-990e-afba2627c5ef {"md5": "3c8b55921d12cde9c9bf5491629955e1", "pid": "263195449", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263195449", "source": "IDREF"}], "preferred_name": "Périsson, Caroline", "country_associated": "fr", "authorized_access_point": "Périsson, Caroline", "biographical_information": ["Médecine pédiatre au centre hospitalier universitaire situé à Saint-Pierre de La Réunion en 2022"]} 1 +2024-09-11 09:06:16.399964 2024-09-11 09:06:16.399968 da507f45-93a5-41e0-932c-c20d4b27bfa0 {"md5": "f4ce50078d86c82148dca7171a18be11", "pid": "263217442", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263217442", "source": "IDREF"}], "preferred_name": "Carraz, Alexia", "country_associated": "fr", "authorized_access_point": "Carraz, Alexia", "biographical_information": ["Etudiante en histoire de l'art (en 1998)."]} 1 +2024-09-11 09:06:16.452657 2024-09-11 09:06:16.452663 f2d2d174-3ced-4d73-9816-9e6bdfbbdd23 {"md5": "c25a49e9480f27859693b93ddc9e77df", "pid": "263267466", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263267466", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Calteau-Perronet, Virginie", "authorized_access_point": "Calteau-Perronet, Virginie, 19..-....", "biographical_information": ["Avocat à la Cour. Médiateur avocat . Médiateur familial DE. Formateur"]} 1 +2024-09-11 09:06:16.515244 2024-09-11 09:06:16.515249 4ba650cc-fde9-4c92-aa9f-ea215ee50ea0 {"md5": "6b12871e00b9ebb6b6085026fcddc8a9", "pid": "263445194", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263445194", "source": "IDREF"}], "date_of_birth": "19..", "preferred_name": "Bauer, Benedikt.C", "country_associated": "gw", "authorized_access_point": "Bauer, Benedikt.C, 19..-....", "biographical_information": ["Spécialiste de l'art"]} 1 +2024-09-11 09:06:16.571919 2024-09-11 09:06:16.571923 e4300884-d2c2-4006-a9ec-2772e9fdf6ca {"md5": "ba2a623fa7ed7fa814b531fe285a5f07", "pid": "26347318X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26347318X", "source": "IDREF"}], "date_of_birth": "1993-01-24", "preferred_name": "Risch, Sandrine", "country_associated": "lu", "authorized_access_point": "Risch, Sandrine", "biographical_information": ["Auteur d’une thèse de médecine"]} 1 +2024-09-11 09:06:16.632201 2024-09-11 09:06:16.632207 4977cd57-81fa-4ed8-8a31-98fdd2ae58e4 {"md5": "99f41a713fc28031a6470acb37a649aa", "pid": "263491455", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["jpn"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263491455", "source": "IDREF"}], "preferred_name": "Takahashi, Yuri", "country_associated": "ja", "authorized_access_point": "Takahashi, Yuri", "biographical_information": ["Spécialiste de la Birmanie. Enseigne à l'Australian National University (en 2022)"]} 1 +2024-09-11 09:06:16.691114 2024-09-11 09:06:16.691117 5f4b6761-47ce-4f9d-967d-b4c58293dd8c {"md5": "b0c3529b9646a1170603bee6e4cd7c41", "pid": "263502627", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263502627", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "King, Georgina", "authorized_access_point": "King, Georgina, 19..-....", "biographical_information": ["Assistant professor, Institut des dynamiques de la surface terrestre, Université de Lausanne (en 2022)"]} 1 +2024-09-11 09:06:16.755607 2024-09-11 09:06:16.755611 aa3797be-9e6d-4e5c-95ae-24f30e706c7e {"md5": "d878decbe31581844df176974fcddd60", "pid": "263581780", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263581780", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Ouaziz, Adnane", "country_associated": "fr", "authorized_access_point": "Ouaziz, Adnane, 19..-....", "biographical_information": ["CIC 1404 CHU Rouen - Rouen (France)"]} 1 +2024-09-11 09:06:16.808583 2024-09-11 09:06:16.808588 930f1453-ea06-4431-ab6a-f673598d6b88 {"md5": "96503aa04811606f1799d70d06c538fe", "pid": "263587339", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["cat"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263587339", "source": "IDREF"}], "variant_name": ["Aguilar, Estel", "Miró Aguilar, Estel Maria"], "date_of_birth": "1990-04-08", "preferred_name": "Aguilar Miró, Estel Maria", "country_associated": "sp", "variant_access_point": ["Aguilar, Estel", "Miró Aguilar, Estel Maria"], "authorized_access_point": "Aguilar Miró, Estel Maria, 1990-....", "biographical_information": ["Auteur d'une thèse en Etudes catalanes et transfrontalières à Perpignan en 2022"]} 1 +2024-09-11 09:06:16.860126 2024-09-11 09:06:16.86013 53bcfa1c-5545-4844-8f4d-082cc6637d1d {"md5": "2cd9da9b706f0a99736a0e66c6cbb914", "pid": "263603652", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263603652", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Huot, Charles", "country_associated": "fr", "authorized_access_point": "Huot, Charles, 19..-....", "biographical_information": ["Président du plus grand pôle de compétitivité français, Cap Digital, association qui anime sur la région Ile-de-France et Haut-de-France, les acteurs économiques et de la recherche dans l’innovation digitale collaborative."]} 1 +2024-09-11 09:06:16.911145 2024-09-11 09:06:16.911149 383b61f9-05df-44bf-8fe2-97027ac0fe9a {"md5": "f558c293dee950b4aa8052e9378b8312", "pid": "263626687", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263626687", "source": "IDREF"}], "variant_name": ["Stenger, M."], "preferred_name": "Stenger, Matthias", "country_associated": "gw", "variant_access_point": ["Stenger, M."], "authorized_access_point": "Stenger, Matthias", "biographical_information": ["Spécialiste de porcelaine"]} 1 +2024-09-11 09:06:16.963047 2024-09-11 09:06:16.96305 416a2e23-a95e-409c-9efa-34d57b917c74 {"md5": "25a1608b76412650634311eecf59d650", "pid": "263671372", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263671372", "source": "IDREF"}], "date_of_birth": "19XX", "preferred_name": "Woodend, Kirsten", "country_associated": "xxc", "authorized_access_point": "Woodend, Kirsten, 19..-....", "biographical_information": ["PhD, Responsable, recherche clinique, Institut de cardiologie, Ottawa"]} 1 +2024-09-11 09:06:17.015139 2024-09-11 09:06:17.015145 822f7243-beb8-45f9-a433-ad2cd69429aa {"md5": "00fb1b9f2e2310fcaa97e9f8c862ee22", "pid": "263671887", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["dan"], "qualifier": "Médecin", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263671887", "source": "IDREF"}], "date_of_birth": "19XX", "date_of_death": "19XX", "preferred_name": "Sindbjerg-Hansen, Vagn, Médecin", "country_associated": "dk", "authorized_access_point": "Sindbjerg-Hansen, Vagn, 19XX-19XX, Médecin", "biographical_information": ["Médecin. Soutient sa thèse de médecine pour le grade de docteur en 1943 à l'Université de Copenhague"]} 1 +2024-09-11 09:06:17.069549 2024-09-11 09:06:17.069552 a9f99b06-77ff-4aac-a1de-7d07a2766f38 {"md5": "8347820e8d3cc2944c07d277549a81d9", "pid": "263682471", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263682471", "source": "IDREF"}], "date_of_birth": "19..", "preferred_name": "Protais, Laetitia", "country_associated": "fr", "authorized_access_point": "Protais, Laetitia, 19..-...."} 1 +2024-09-11 09:06:17.124335 2024-09-11 09:06:17.124339 a00799ed-57ff-4783-8242-bb75560b12e2 {"md5": "69c905c227a98d73d876397a7d1e593a", "pid": "263722198", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["ger"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263722198", "source": "IDREF"}], "date_of_birth": "1996-06-05", "preferred_name": "Wiedmer, Fabienne", "country_associated": "sz", "authorized_access_point": "Wiedmer, Fabienne, 1996-....", "biographical_information": ["Titulaire d'un master en lettres de l'Université de Fribourg, Suisse (pédagogie spécialisée)"]} 1 +2024-09-11 09:06:17.176906 2024-09-11 09:06:17.17691 bf6ac585-26e3-4447-ac6f-911da2d91e36 {"md5": "385504bd2dcedeb067d0d509e6cfc4df", "pid": "263908038", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263908038", "source": "IDREF"}], "date_of_birth": "1992", "preferred_name": "Charpentier, Bryan", "authorized_access_point": "Charpentier, Bryan, 1992-....", "biographical_information": ["Titulaire d’une thèse d’exercice de médecine soutenue à l’université Paris-Saclay en 2021"]} 1 +2024-09-11 09:06:17.232525 2024-09-11 09:06:17.232528 024f8134-d7d8-4a82-aed4-bdc0bc25913b {"md5": "34d520b62e8843b1d6cba4483a4f8e14", "pid": "26428058X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26428058X", "source": "IDREF"}], "date_of_birth": "1986-05-03", "preferred_name": "Pratico, Valentina", "country_associated": "it", "authorized_access_point": "Pratico, Valentina, 1986-....", "biographical_information": ["Auteur d'une thèse en Droit privé à Aix-Marseille en 2022"]} 1 +2024-09-11 09:06:17.322454 2024-09-11 09:06:17.322459 7b8678d9-c45f-498c-951d-926c18c332ff {"md5": "a664beee37feef01d4021dd8ca3aa3f9", "pid": "264703227", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264703227", "source": "IDREF"}], "date_of_birth": "1886-01-02", "preferred_name": "Blazy, Joseph-Célestin", "country_associated": "fr", "authorized_access_point": "Blazy, Joseph-Célestin, 1886-....", "biographical_information": ["Auteur d'une Thèse d'exercice en Médecine à l’Université de Bordeaux en 1910"]} 1 +2024-09-11 09:06:17.384844 2024-09-11 09:06:17.384849 6fd8e36f-eb3c-4bbb-a4ef-b5183542ee91 {"md5": "49274301838353166e5e3ac2e35fda2b", "pid": "264982959", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264982959", "source": "IDREF"}], "preferred_name": "Heard, Wendy", "country_associated": "xxu", "authorized_access_point": "Heard, Wendy", "biographical_information": ["Ecrivaine de thrillers"]} 1 +2024-09-11 09:06:17.451065 2024-09-11 09:06:17.451069 a7f2cb50-48b4-430b-9962-d3338712c8d5 {"md5": "c48292c9233ac57b769dd773a623594e", "pid": "265219493", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/265219493", "source": "IDREF"}], "variant_name": ["Wilde, Catherine Lhomme de"], "preferred_name": "Lhomme de Wilde, Catherine", "country_associated": "fr", "variant_access_point": ["Wilde, Catherine Lhomme de"], "authorized_access_point": "Lhomme de Wilde, Catherine", "biographical_information": ["Auteur d'une thèse en pharmacie"]} 1 +2024-09-11 09:06:17.510809 2024-09-11 09:06:17.510814 33c5bf9d-04e3-408f-93b6-020b31650796 {"md5": "0840c8e6bbc5eebdb5a44ebaa1197765", "pid": "26525969X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26525969X", "source": "IDREF"}], "preferred_name": "Rivoallan, Céline", "country_associated": "fr", "authorized_access_point": "Rivoallan, Céline", "biographical_information": ["Mémoire de DESS Urbanisme, Habitat, Aménagement sous la direction de Guillaume Lacquement, soutenu à Perpignan, 2000"]} 1 +2024-09-11 09:06:17.56998 2024-09-11 09:06:17.569984 2e33084c-7302-4c8a-9755-5094ba55ffa5 {"md5": "ecd5e3e68f78624db1274c2382ad6f66", "pid": "26528774X", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["fre"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26528774X", "source": "IDREF"}], "date_of_birth": "1942-11-13", "preferred_name": "Truffet, Gérard", "authorized_access_point": "Truffet, Gérard", "biographical_information": ["Médecin (Paris 1970)"]} 1 +2024-09-11 09:06:17.626457 2024-09-11 09:06:17.626461 9c3c0f94-fbca-47d2-8f3c-ac9cca2f8668 {"md5": "c66e6c401edecbd743ed7108ea54dd99", "pid": "265836905", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["eng"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/265836905", "source": "IDREF"}], "preferred_name": "Frager, Robert", "country_associated": "xxu", "authorized_access_point": "Frager, Robert", "biographical_information": ["En poste à California Institute of Interpersonal Psychology en 1976"]} 1 +2024-09-11 09:06:17.689415 2024-09-11 09:06:17.68942 63c826cb-9d70-4bf0-9f2b-eb8857fd1e68 {"md5": "07b6360a2d05475d13a97ebffc857e93", "pid": "267373414", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "language": ["cze"], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/267373414", "source": "IDREF"}], "date_of_birth": "1978", "preferred_name": "Janšová, Marie", "authorized_access_point": "Janšová, Marie, 1978-....", "biographical_information": ["Juriste"]} 1 diff --git a/data/aidref_pidstore.csv b/data/aidref_pidstore.csv index c0ad3121..a925e2f0 100644 --- a/data/aidref_pidstore.csv +++ b/data/aidref_pidstore.csv @@ -1,2495 +1,2495 @@ -2023-07-08 08:19:11.309076 2023-07-08 08:19:11.309082 aidref 026361477 R rec 883c3c72-fd06-4477-8fd0-58c4362d7924 -2023-07-08 08:19:11.427283 2023-07-08 08:19:11.427289 aidref 026366231 R rec 8012dde0-bef1-4530-9b6c-0de69bb45357 -2023-07-08 08:19:11.494835 2023-07-08 08:19:11.49484 aidref 026393190 R rec c4a65708-28af-4e1d-bb59-c6321bb4d764 -2023-07-08 08:19:11.589106 2023-07-08 08:19:11.589114 aidref 026398257 R rec 9e6f77c7-a80d-4970-a477-10d9a6ae797f -2023-07-08 08:19:11.687175 2023-07-08 08:19:11.687191 aidref 026403161 R rec aba47eca-642c-45ab-8539-81f844d4504e -2023-07-08 08:19:11.786779 2023-07-08 08:19:11.786797 aidref 026408805 R rec a93e305f-00f9-44c1-a860-c6b57d40506a -2023-07-08 08:19:11.886249 2023-07-08 08:19:11.886265 aidref 026418460 R rec be86f282-1e8c-4120-87aa-c71ea4099877 -2023-07-08 08:19:11.9862 2023-07-08 08:19:11.986221 aidref 026428636 R rec a3aab4b7-7305-4a00-b616-fe1a7ad93507 -2023-07-08 08:19:12.100741 2023-07-08 08:19:12.100753 aidref 026430746 R rec 99cff842-b084-4a85-9efa-286800bad3f7 -2023-07-08 08:19:12.200969 2023-07-08 08:19:12.200981 aidref 026446278 R rec 76e5fa1f-6dbb-4f14-a5fb-0f1c5f5504ef -2023-07-08 08:19:12.335108 2023-07-08 08:19:12.335117 aidref 026450038 R rec fdd31486-7101-46bc-97dc-eb61e1f7be4a -2023-07-08 08:19:12.445587 2023-07-08 08:19:12.445596 aidref 026452057 R rec b8f39144-6b38-493c-890b-761dbfa9ad87 -2023-07-08 08:19:12.55231 2023-07-08 08:19:12.552324 aidref 026471396 R rec fb57f654-95c6-424a-aa81-c7e404b5fec9 -2023-07-08 08:19:12.645381 2023-07-08 08:19:12.645396 aidref 026483157 R rec 61847724-dc88-4f81-beaf-24e12821cef1 -2023-07-08 08:19:12.74426 2023-07-08 08:19:12.744275 aidref 026488582 R rec d153bdad-853f-4af3-a36e-0618271e63d2 -2023-07-08 08:19:12.842636 2023-07-08 08:19:12.842652 aidref 026501228 R rec 7bfabcc0-a8c9-453b-b0ca-506caa835fbf -2023-07-08 08:19:12.954002 2023-07-08 08:19:12.954015 aidref 026524759 R rec 48d69ad9-95ab-4576-99e5-f837b3fcef23 -2023-07-08 08:19:13.052935 2023-07-08 08:19:13.05295 aidref 026526980 R rec 2d449991-9c1c-4b62-a8a7-d0859bc03e45 -2023-07-08 08:19:13.227234 2023-07-08 08:19:13.227239 aidref 026528290 R rec 6039bc58-1d4f-43f6-936c-fe51a30fc1ad -2023-07-08 08:19:13.294652 2023-07-08 08:19:13.294657 aidref 026529890 R rec 6f668d0c-4aeb-4fc1-abf2-c2e28978f34b -2023-07-08 08:19:13.368079 2023-07-08 08:19:13.36809 aidref 026530538 R rec 425a262a-0730-4a09-a3a4-74955b2b43ba -2023-07-08 08:19:13.475741 2023-07-08 08:19:13.475752 aidref 026536625 R rec 36e31831-295e-47ba-9a12-b8d721f24e04 -2023-07-08 08:19:13.593132 2023-07-08 08:19:13.593145 aidref 02654606X R rec 012793c7-5ac8-4e63-92cc-1b4aecec84e8 -2023-07-08 08:19:13.701347 2023-07-08 08:19:13.701357 aidref 02654637X R rec 243400b5-c445-4298-bbae-a951a556e580 -2023-07-08 08:19:13.803743 2023-07-08 08:19:13.803755 aidref 026561328 R rec 6f8064ec-c425-4e23-8f7f-45023b0471b2 -2023-07-08 08:19:13.923564 2023-07-08 08:19:13.923574 aidref 026562170 R rec d2dae5fc-b9f7-4783-9b10-92650f0895ab -2023-07-08 08:19:14.046489 2023-07-08 08:19:14.046494 aidref 02656453X R rec 6932d9bf-6877-4636-9c4a-4fb0be15e826 -2023-07-08 08:19:14.157643 2023-07-08 08:19:14.157649 aidref 026567695 R rec 865c63ed-6913-4d9e-8aa2-02649631976a -2023-07-08 08:19:14.252363 2023-07-08 08:19:14.252375 aidref 026583135 R rec f5cdd582-5c07-4c2d-bd79-650f9c24df26 -2023-07-08 08:19:14.353333 2023-07-08 08:19:14.353347 aidref 02658672X R rec 47c9d238-9397-4fbd-b6da-659aee60f8b8 -2023-07-08 08:19:14.466987 2023-07-08 08:19:14.467 aidref 026614421 R rec d640f25b-fb78-4414-9d4f-f47a14753474 -2023-07-08 08:19:14.587515 2023-07-08 08:19:14.587525 aidref 026626373 R rec 64561962-30ff-4ce9-bb95-6e807c2ff7db -2023-07-08 08:19:14.718472 2023-07-08 08:19:14.718486 aidref 026631342 R rec 7ebbe6a3-ce48-4852-b1f6-53dff09a9670 -2023-07-08 08:19:14.834292 2023-07-08 08:19:14.834306 aidref 026646862 R rec 427e029a-0438-466f-9293-6c04142371fc -2023-07-08 08:19:14.940454 2023-07-08 08:19:14.940469 aidref 02672698X R rec aaaac4c2-4d17-44e3-910b-dfc8f4f83283 -2023-07-08 08:19:15.0548 2023-07-08 08:19:15.054815 aidref 02675181X R rec d3bd5ac5-7a10-47da-bff5-5ed6a7ec90db -2023-07-08 08:19:15.184961 2023-07-08 08:19:15.184975 aidref 026847655 R rec 75099e46-736d-484e-a9fc-c4c17ed73bdb -2023-07-08 08:19:15.289099 2023-07-08 08:19:15.28911 aidref 026868482 R rec dc6e45e5-2c1d-4514-8e71-dd39d747b0d7 -2023-07-08 08:19:15.439476 2023-07-08 08:19:15.43948 aidref 026895056 R rec a426df57-dba0-4e6b-8e4c-12737dd6cde0 -2023-07-08 08:19:15.519492 2023-07-08 08:19:15.519504 aidref 026916134 R rec 68a960ec-7846-498f-86eb-6e27a33c6c6c -2023-07-08 08:19:15.622255 2023-07-08 08:19:15.622276 aidref 026924498 R rec 637feb75-c8c6-4746-8ae9-2e27188721d4 -2023-07-08 08:19:15.746095 2023-07-08 08:19:15.74611 aidref 026959852 R rec 67f0af77-f608-4a59-a79f-cff03eb4c255 -2023-07-08 08:19:15.874587 2023-07-08 08:19:15.874603 aidref 026994801 R rec 39149e89-b1e7-4ffa-9d2b-c21dc79f59f5 -2023-07-08 08:19:16.037014 2023-07-08 08:19:16.037025 aidref 026995050 R rec bdd3f989-5d04-478f-8054-1122e10f8439 -2023-07-08 08:19:16.174509 2023-07-08 08:19:16.174522 aidref 02700273X R rec 73f65333-2bfb-48cb-92b1-3034220ec358 -2023-07-08 08:19:16.286553 2023-07-08 08:19:16.286564 aidref 027006344 R rec 89acfd6b-70e0-4f99-9d91-a17b93af09f5 -2023-07-08 08:19:16.385037 2023-07-08 08:19:16.385043 aidref 027019837 R rec dcfa5c80-4c57-4396-b199-28e372318df7 -2023-07-08 08:19:16.486251 2023-07-08 08:19:16.486263 aidref 02703819X R rec f7f1504b-b7ba-4bf2-ac91-139a9428a88d -2023-07-08 08:19:16.613159 2023-07-08 08:19:16.613171 aidref 027135985 R rec 825c3dbb-4a7e-49c9-bacb-dc036f68917c -2023-07-08 08:19:16.721444 2023-07-08 08:19:16.721458 aidref 027215008 R rec 14f6d5ce-f14e-4a13-92ae-2d1d500a3173 -2023-07-08 08:19:16.83552 2023-07-08 08:19:16.835534 aidref 027486028 R rec cd78346c-ec2f-4185-95d8-db3b2d50f5a5 -2023-07-08 08:19:16.96768 2023-07-08 08:19:16.967684 aidref 027632288 R rec 70d4a73c-36d1-4844-af43-7b334014ce7b -2023-07-08 08:19:17.062532 2023-07-08 08:19:17.062545 aidref 027767744 R rec 116e8d48-f873-488e-9025-eeefe1665e40 -2023-07-08 08:19:17.163967 2023-07-08 08:19:17.163982 aidref 027896781 R rec e5202a07-8cae-4fea-bc80-12b21feaf75c -2023-07-08 08:19:17.260563 2023-07-08 08:19:17.260573 aidref 027912760 R rec dbf1ae8d-7a01-4f91-9de4-0f610892d3bc -2023-07-08 08:19:17.345804 2023-07-08 08:19:17.345813 aidref 02796096X R rec 6edba6f3-7d51-4c10-9d16-4cf886ae2875 -2023-07-08 08:19:17.446327 2023-07-08 08:19:17.446343 aidref 027969428 R rec e5a59021-0a41-4f08-b5fe-58dd6d7b7e03 -2023-07-08 08:19:17.569646 2023-07-08 08:19:17.569653 aidref 028071670 R rec de27d2f3-a174-4165-b9eb-0dc8e976de98 -2023-07-08 08:19:17.669822 2023-07-08 08:19:17.669837 aidref 028082788 R rec e028cd71-a705-49ee-add3-9ba42c81cfc6 -2023-07-08 08:19:17.792469 2023-07-08 08:19:17.79248 aidref 02809364X R rec 3c4c24d9-dffe-44ea-a172-b80087d47626 -2023-07-08 08:19:17.921514 2023-07-08 08:19:17.921527 aidref 028166027 R rec e1ef2c80-6774-49f6-944a-8911d165d02c -2023-07-08 08:19:18.024133 2023-07-08 08:19:18.024143 aidref 028259866 R rec b5686308-ce8b-4ca6-abf6-24d8dbb5dda7 -2023-07-08 08:19:18.138999 2023-07-08 08:19:18.13901 aidref 028302435 R rec 70cde825-5f96-4c3b-9587-638096b24441 -2023-07-08 08:19:18.261283 2023-07-08 08:19:18.261294 aidref 02832787X R rec 07172da7-38c8-4dc2-8ecc-db62806ce85c -2023-07-08 08:19:18.415012 2023-07-08 08:19:18.415027 aidref 028330943 R rec 923be530-8a91-4258-b426-9473e00c5e6e -2023-07-08 08:19:18.524075 2023-07-08 08:19:18.524094 aidref 028354753 R rec 01d8729e-5310-4f40-b603-7269b53dcaf1 -2023-07-08 08:19:18.633906 2023-07-08 08:19:18.633921 aidref 028357531 R rec 64bcd4b8-64a4-4a4c-a420-277f077d4583 -2023-07-08 08:19:18.75608 2023-07-08 08:19:18.756091 aidref 028416171 R rec f3b792ca-dd9b-4400-b50a-2baea1d0e83a -2023-07-08 08:19:18.889195 2023-07-08 08:19:18.889207 aidref 028419790 R rec b4cc5f0b-d75b-4c9d-88e3-491d82b6953e -2023-07-08 08:19:19.02593 2023-07-08 08:19:19.025958 aidref 028442717 R rec 0d123aa6-da4a-4e55-ae86-780905046523 -2023-07-08 08:19:19.138436 2023-07-08 08:19:19.138449 aidref 028470141 R rec b98984f6-c78e-42ae-8c6c-1780155ddd49 -2023-07-08 08:19:19.242372 2023-07-08 08:19:19.242385 aidref 028495764 R rec 5c5becf2-d59e-4449-a7c7-20683383f217 -2023-07-08 08:19:19.341435 2023-07-08 08:19:19.341451 aidref 028500490 R rec 4f2848e8-ef92-4446-b3c4-14130b07848d -2023-07-08 08:19:19.467961 2023-07-08 08:19:19.467972 aidref 028503112 R rec 3d85e863-6743-48ca-9bb9-e8c2d38d9f6d -2023-07-08 08:19:19.585383 2023-07-08 08:19:19.585391 aidref 028522206 R rec ba74b773-dbce-4a9f-ab0f-10a33fe9d6d6 -2023-07-08 08:19:19.702855 2023-07-08 08:19:19.70287 aidref 028523555 R rec 09771313-23f8-49a3-b0e2-7fa2c54b6376 -2023-07-08 08:19:19.842834 2023-07-08 08:19:19.842849 aidref 028529677 R rec 42e02683-ec0e-4def-a949-8bb186206cdb -2023-07-08 08:19:19.94932 2023-07-08 08:19:19.949331 aidref 028541634 R rec 113037dc-f62d-4d7e-9b18-12d2f7e25a1e -2023-07-08 08:19:20.052584 2023-07-08 08:19:20.052596 aidref 028542770 R rec 97469af2-92bb-4040-9a69-b15a90a2d87f -2023-07-08 08:19:20.163118 2023-07-08 08:19:20.163133 aidref 028558200 R rec 62e2bc2e-b55b-47e3-b166-cb2c500e06de -2023-07-08 08:19:20.270456 2023-07-08 08:19:20.27047 aidref 028615719 R rec aba83508-d334-461a-b50a-47329179827f -2023-07-08 08:19:20.36319 2023-07-08 08:19:20.363202 aidref 028666925 R rec 74d09852-a4e5-471d-94f5-bc6e0ed16105 -2023-07-08 08:19:20.465282 2023-07-08 08:19:20.465297 aidref 028681673 R rec ecb5bae9-ee5c-40dc-a416-ee78a87b1b3a -2023-07-08 08:19:20.577341 2023-07-08 08:19:20.577356 aidref 028735498 R rec 87d3f351-7599-4a4d-95ee-781d18718a88 -2023-07-08 08:19:20.699793 2023-07-08 08:19:20.699804 aidref 028766857 R rec 499a4a2a-de90-40fa-8fbb-dbd39dc6cc3d -2023-07-08 08:19:20.852668 2023-07-08 08:19:20.852679 aidref 028882199 R rec fbd6eb9e-b619-4eca-99f2-72f3d1795328 -2023-07-08 08:19:20.963668 2023-07-08 08:19:20.963683 aidref 028902661 R rec 486b3bce-9153-4789-9336-f8758a658e80 -2023-07-08 08:19:21.104005 2023-07-08 08:19:21.104093 aidref 02893010X R rec ea4a2195-ce95-403b-ba8b-90e2ed8dc405 -2023-07-08 08:19:21.217607 2023-07-08 08:19:21.217613 aidref 02903096X R rec 2fb38f0b-0d11-4ff7-897e-799c666947b0 -2023-07-08 08:19:21.298394 2023-07-08 08:19:21.298405 aidref 02907309X R rec b648c48a-7a5b-4cf7-81f5-4f8eb0c64724 -2023-07-08 08:19:21.416799 2023-07-08 08:19:21.416808 aidref 029077087 R rec 147e424e-73e5-4378-b1a9-866e0911c099 -2023-07-08 08:19:21.555603 2023-07-08 08:19:21.555609 aidref 029195640 R rec 52daae62-6b83-40de-9edc-7a6d5457f9f5 -2023-07-08 08:19:21.656172 2023-07-08 08:19:21.65619 aidref 029214084 R rec b07c957c-441b-4d25-b8ac-fbe2ffe73a05 -2023-07-08 08:19:21.763452 2023-07-08 08:19:21.763467 aidref 029218977 R rec 9de35bf0-9133-41cc-a64b-db9bf622902e -2023-07-08 08:19:21.868327 2023-07-08 08:19:21.868339 aidref 029470293 R rec bfb4b60e-cba1-4c4c-a0eb-0d9c730e6d8f -2023-07-08 08:19:21.973436 2023-07-08 08:19:21.973447 aidref 029580293 R rec ec54cfdc-93ce-49aa-8f3d-aaa6e2af4a75 -2023-07-08 08:19:22.096435 2023-07-08 08:19:22.096447 aidref 029589681 R rec 4be8e14d-5dce-4ec3-8ba9-6bc33c174b29 -2023-07-08 08:19:22.236389 2023-07-08 08:19:22.236404 aidref 029598982 R rec da3899a6-e310-4380-abf9-9f9e1e0645da -2023-07-08 08:19:22.346696 2023-07-08 08:19:22.34671 aidref 029652138 R rec 4b718733-451c-4801-9f22-cb11e9e51fc4 -2023-07-08 08:19:22.44807 2023-07-08 08:19:22.448086 aidref 029688019 R rec de025f31-0858-4926-b91a-6dedb238338b -2023-07-08 08:19:22.597785 2023-07-08 08:19:22.597799 aidref 029698510 R rec b88f4d75-e8a5-45c0-a1a1-e78f9052937a -2023-07-08 08:19:22.719725 2023-07-08 08:19:22.719731 aidref 029733944 R rec 4ea11b28-633b-4292-b09b-52a7d3dd82e8 -2023-07-08 08:19:22.810733 2023-07-08 08:19:22.810746 aidref 029761867 R rec 13258887-747f-41db-97a9-77a2221b85c7 -2023-07-08 08:19:22.922773 2023-07-08 08:19:22.922792 aidref 029767849 R rec aabebae6-e5bf-495e-8b33-a6eab4dc73fb -2023-07-08 08:19:23.036332 2023-07-08 08:19:23.036345 aidref 02982480X R rec 815d9798-7685-41f1-87d1-c659cb5693c6 -2023-07-08 08:19:23.160735 2023-07-08 08:19:23.160746 aidref 029869587 R rec 567ba390-7f69-4a4b-8547-35ce11fe3d4a -2023-07-08 08:19:23.273866 2023-07-08 08:19:23.273876 aidref 029872235 R rec 75be771b-537d-41f1-8151-30f336c924e3 -2023-07-08 08:19:23.392597 2023-07-08 08:19:23.392608 aidref 029924480 R rec 8a6986c3-2f32-4901-9a7a-7f1b2e8f5ec2 -2023-07-08 08:19:23.4929 2023-07-08 08:19:23.492916 aidref 029986761 R rec 1be13245-f370-422a-941e-23e65d403883 -2023-07-08 08:19:23.588063 2023-07-08 08:19:23.588073 aidref 029994861 R rec 4bccf08c-b4af-468a-b651-3eeb631636ff -2023-07-08 08:19:23.727166 2023-07-08 08:19:23.727176 aidref 030045614 R rec cbf1c180-a3c5-423b-bf58-cb07e35a6818 -2023-07-08 08:19:23.837474 2023-07-08 08:19:23.837489 aidref 030086329 R rec 4cdcd038-34e7-493f-b715-acd2bffd8a56 -2023-07-08 08:19:23.928212 2023-07-08 08:19:23.928225 aidref 030097886 R rec b5b71adb-2729-497e-9841-ded7e1800a90 -2023-07-08 08:19:24.033804 2023-07-08 08:19:24.033813 aidref 030132711 R rec 34538664-3190-4b00-880d-831e48cfab35 -2023-07-08 08:19:24.163199 2023-07-08 08:19:24.163209 aidref 03013739X R rec cd2279dd-605c-41b0-8dad-dae9e4fd96c5 -2023-07-08 08:19:24.261962 2023-07-08 08:19:24.261976 aidref 030187400 R rec 6ea2aa9c-c508-46d8-ad35-264aaef4889f -2023-07-08 08:19:24.388608 2023-07-08 08:19:24.388619 aidref 030198011 R rec 05002680-7799-4948-8c50-5e367b369242 -2023-07-08 08:19:24.521618 2023-07-08 08:19:24.52163 aidref 030223415 R rec 863950f2-0b71-4e46-80c2-4f1e115fe88c -2023-07-08 08:19:24.681191 2023-07-08 08:19:24.681201 aidref 030254515 R rec c109eae6-ce01-463a-a705-cbe9bdbda4b4 -2023-07-08 08:19:24.811647 2023-07-08 08:19:24.811665 aidref 03025843X R rec 626be363-b193-4b62-891a-6649e5d819c4 -2023-07-08 08:19:24.916853 2023-07-08 08:19:24.916868 aidref 030281342 R rec f6b7d0e1-98cf-4a10-b0a6-0d2b40f650f4 -2023-07-08 08:19:25.014524 2023-07-08 08:19:25.014539 aidref 030322995 R rec e2d00a92-6e79-40dc-a260-6bcff930d839 -2023-07-08 08:19:25.12762 2023-07-08 08:19:25.127635 aidref 030327687 R rec d417b636-a17c-4442-a944-bded2ac97117 -2023-07-08 08:19:25.230427 2023-07-08 08:19:25.23044 aidref 030343429 R rec 6d3fbfa0-f697-41a1-b983-3e443b76170d -2023-07-08 08:19:25.37389 2023-07-08 08:19:25.373901 aidref 030415357 R rec 626d5770-f5cc-4b99-b8dc-7223be4e0fe7 -2023-07-08 08:19:25.505975 2023-07-08 08:19:25.505992 aidref 030459249 R rec 8199149c-5d52-4b4c-85ac-9ab3d5070e59 -2023-07-08 08:19:25.61197 2023-07-08 08:19:25.611981 aidref 030486882 R rec 1d1b0717-d131-48d7-ada6-57ba1336ef81 -2023-07-08 08:19:25.727902 2023-07-08 08:19:25.727913 aidref 030490855 R rec 666247cc-9bb3-4c59-8de0-84f4e484bbce -2023-07-08 08:19:25.861387 2023-07-08 08:19:25.861409 aidref 030542650 R rec c1e6e75e-263b-44a8-9db0-88336ffea6b9 -2023-07-08 08:19:25.992139 2023-07-08 08:19:25.992155 aidref 030557585 R rec 92a30b0f-06c8-4747-be89-5c82072a7185 -2023-07-08 08:19:26.122851 2023-07-08 08:19:26.122861 aidref 030575230 R rec be7c734f-c6be-4fe7-bbae-96c1b14960bc -2023-07-08 08:19:26.256294 2023-07-08 08:19:26.256306 aidref 030633176 R rec 4709640e-2b45-4a9f-9f14-4094a69895ed -2023-07-08 08:19:26.36063 2023-07-08 08:19:26.360639 aidref 030713234 R rec 05efdc26-dc57-43fc-a58e-b927471134fe -2023-07-08 08:19:26.458864 2023-07-08 08:19:26.458875 aidref 03074198X R rec 692d0ac1-654f-4270-ba6b-61f20e0f6013 -2023-07-08 08:19:26.602122 2023-07-08 08:19:26.602137 aidref 030745551 R rec 4e635fc6-6573-47bb-992f-562606e1d49b -2023-07-08 08:19:26.722019 2023-07-08 08:19:26.722035 aidref 030782465 R rec 513e0209-42b3-47f3-8628-2d334c994fc8 -2023-07-08 08:19:26.836257 2023-07-08 08:19:26.836267 aidref 030802997 R rec ce6b9029-64e3-48a2-bb96-f7e6708bcc7d -2023-07-08 08:19:26.953394 2023-07-08 08:19:26.953461 aidref 030818095 R rec 7a9a69db-b6d4-4e22-92ef-fb16661af1d1 -2023-07-08 08:19:27.061193 2023-07-08 08:19:27.061203 aidref 030835828 R rec 7f991970-bde3-4946-82be-5cf815a35f3b -2023-07-08 08:19:27.17915 2023-07-08 08:19:27.17916 aidref 030851025 R rec f3c9a005-65b0-4099-a5da-189ce0784897 -2023-07-08 08:19:27.287373 2023-07-08 08:19:27.287386 aidref 030875277 R rec ebe0d005-d45d-4f32-a671-62250105cb75 -2023-07-08 08:19:27.385459 2023-07-08 08:19:27.385469 aidref 03089719X R rec 3e228194-eae4-4803-89fd-54e2878bebc7 -2023-07-08 08:19:27.497165 2023-07-08 08:19:27.497177 aidref 030907667 R rec 67520dcf-546a-4010-9316-0c637e4bdf24 -2023-07-08 08:19:27.622567 2023-07-08 08:19:27.622576 aidref 030913632 R rec be91bbbe-0d42-48fb-b53b-a826d10537ed -2023-07-08 08:19:27.731134 2023-07-08 08:19:27.731146 aidref 031015808 R rec 3ba3887f-2cea-45ea-867b-94884db70344 -2023-07-08 08:19:27.83606 2023-07-08 08:19:27.836075 aidref 031060102 R rec a2dc8d2c-8166-4a79-b740-98f7cb466c29 -2023-07-08 08:19:27.945158 2023-07-08 08:19:27.945175 aidref 031064442 R rec abf2eeb7-dda0-4266-9642-759ca2fb7e3f -2023-07-08 08:19:28.061072 2023-07-08 08:19:28.061087 aidref 031133231 R rec cbdb35c1-4b52-4ff1-8202-af1396aeb910 -2023-07-08 08:19:28.178156 2023-07-08 08:19:28.178166 aidref 031162568 R rec d6992927-ed65-48ef-a4bd-dd10e9fff67c -2023-07-08 08:19:28.298043 2023-07-08 08:19:28.298054 aidref 031226396 R rec ef582a1b-ef9e-40a4-afa6-bbdb1eb795b9 -2023-07-08 08:19:28.42677 2023-07-08 08:19:28.426785 aidref 031344712 R rec ba41896a-bdc3-4f71-a173-9e4916850d9b -2023-07-08 08:19:28.537609 2023-07-08 08:19:28.537622 aidref 031382584 R rec b1fb5685-4571-49d1-ba3f-3ea29341d19f -2023-07-08 08:19:28.633764 2023-07-08 08:19:28.633774 aidref 031416349 R rec 248ddea5-c6d3-48e6-ba0d-8ecac7b709ba -2023-07-08 08:19:28.741369 2023-07-08 08:19:28.741385 aidref 031419763 R rec deb2969f-e48e-4d7f-b283-7887357e7c25 -2023-07-08 08:19:28.860663 2023-07-08 08:19:28.860679 aidref 031461034 R rec 90da73f9-31ac-42b1-b8ff-1b966f546962 -2023-07-08 08:19:28.957345 2023-07-08 08:19:28.957357 aidref 031598285 R rec e6d0216a-f6ba-4b52-aa64-4357b735c146 -2023-07-08 08:19:29.06896 2023-07-08 08:19:29.068977 aidref 031639704 R rec 664799f2-fdce-428c-ae60-1fdd7cd89b9f -2023-07-08 08:19:29.178829 2023-07-08 08:19:29.178841 aidref 03165746X R rec ed4f4348-72f2-4d91-b871-3b7106d0120f -2023-07-08 08:19:29.279136 2023-07-08 08:19:29.279146 aidref 031718752 R rec f0b62288-4c64-46d6-adbb-7818948913be -2023-07-08 08:19:29.381145 2023-07-08 08:19:29.381154 aidref 03172406X R rec 58bf840b-43bf-4d94-b5ee-c9f563239439 -2023-07-08 08:19:29.511138 2023-07-08 08:19:29.511148 aidref 03175709X R rec c9f1388c-4765-4858-bba0-c570d230959d -2023-07-08 08:19:29.618658 2023-07-08 08:19:29.618669 aidref 03180862X R rec bdc73e84-b3fe-4f3a-a582-2e0e42c8e41d -2023-07-08 08:19:29.72501 2023-07-08 08:19:29.72502 aidref 031854575 R rec f8e85bdc-ad6d-4f0c-a04e-9ab37f857991 -2023-07-08 08:19:29.845505 2023-07-08 08:19:29.845521 aidref 031859259 R rec 96a2f85a-b45c-4521-b6f5-db9343dc1653 -2023-07-08 08:19:29.977746 2023-07-08 08:19:29.977764 aidref 031867359 R rec efe6cbb1-5397-4f59-97e3-9d5eff051608 -2023-07-08 08:19:30.108413 2023-07-08 08:19:30.108429 aidref 031876633 R rec 17a7d334-6a84-48fc-8b79-3f330d3cb116 -2023-07-08 08:19:30.228463 2023-07-08 08:19:30.228479 aidref 031962963 R rec 161eb635-9104-479d-9ca4-3f6914d4c5f8 -2023-07-08 08:19:30.387859 2023-07-08 08:19:30.387871 aidref 032004184 R rec 741e1d82-d56b-46a8-9f52-7e8e70dad3eb -2023-07-08 08:19:30.512586 2023-07-08 08:19:30.512598 aidref 032063830 R rec 490d90f6-221f-41f3-9e9a-69fd1a3dd1f6 -2023-07-08 08:19:30.62104 2023-07-08 08:19:30.621052 aidref 032075049 R rec 21300af5-ecbb-4142-8c02-e93069133a51 -2023-07-08 08:19:30.745675 2023-07-08 08:19:30.745691 aidref 032099886 R rec 3c7a2073-d465-426e-8162-deec38e3f981 -2023-07-08 08:19:30.875914 2023-07-08 08:19:30.875922 aidref 032207107 R rec 181b01c1-0632-465b-b37e-d80d98135c6f -2023-07-08 08:19:30.995534 2023-07-08 08:19:30.995548 aidref 03225413X R rec 3d419a53-7540-45e1-9a04-94d8e14847ff -2023-07-08 08:19:31.106357 2023-07-08 08:19:31.106373 aidref 032316704 R rec d9161d88-3759-476d-82bb-8b34f26f4cbd -2023-07-08 08:19:31.234191 2023-07-08 08:19:31.234201 aidref 032353618 R rec bee6555b-77aa-4715-8f90-ddb0c5e3b6c0 -2023-07-08 08:19:31.359609 2023-07-08 08:19:31.359619 aidref 032395116 R rec 1feea346-a8a0-4253-99e9-4725e5536e44 -2023-07-08 08:19:31.474816 2023-07-08 08:19:31.47483 aidref 032397402 R rec cf34bdc5-d82c-4447-984e-2b2a1e032025 -2023-07-08 08:19:31.594686 2023-07-08 08:19:31.594698 aidref 032401248 R rec 6a874f40-e31f-409a-a35b-568f77468384 -2023-07-08 08:19:31.714504 2023-07-08 08:19:31.714514 aidref 032477449 R rec 3955d80a-66f2-42eb-82b9-b6544f3cc4ee -2023-07-08 08:19:31.814207 2023-07-08 08:19:31.814218 aidref 032498179 R rec 857763bf-1dce-4f7e-850a-3e22e5485f6a -2023-07-08 08:19:31.915571 2023-07-08 08:19:31.915581 aidref 03259626X R rec 0024a3c1-7785-47b7-bc29-f1220c184a98 -2023-07-08 08:19:32.036594 2023-07-08 08:19:32.036603 aidref 032605641 R rec 6e4c9a89-2f3a-4308-9df7-7e2d8a363730 -2023-07-08 08:19:32.145549 2023-07-08 08:19:32.145562 aidref 032613237 R rec 26a7c944-5f2f-4e65-9ec5-3dd307b84137 -2023-07-08 08:19:32.262723 2023-07-08 08:19:32.262741 aidref 032638116 R rec 865408c4-5c86-4e81-96c2-5fa32d14e186 -2023-07-08 08:19:32.378074 2023-07-08 08:19:32.378086 aidref 032649789 R rec d6fc3f19-1ea9-4f60-b8ef-c812f675dcb6 -2023-07-08 08:19:32.520056 2023-07-08 08:19:32.520065 aidref 032679629 R rec 12202f5f-4cb3-498e-b887-5b544e33ba87 -2023-07-08 08:19:32.613984 2023-07-08 08:19:32.614065 aidref 032706391 R rec 17a18f0b-4372-45af-9fe4-227193307998 -2023-07-08 08:19:32.723886 2023-07-08 08:19:32.723899 aidref 032722567 R rec 8b4baed4-21c5-4c36-ac9c-91ec30d69647 -2023-07-08 08:19:32.874698 2023-07-08 08:19:32.874712 aidref 032801009 R rec a41d88ef-1fda-4124-8eff-aee4c4a758bf -2023-07-08 08:19:33.00628 2023-07-08 08:19:33.006291 aidref 032807589 R rec 0a042cf7-882e-4acf-b7d9-a5172e79ecfb -2023-07-08 08:19:33.156668 2023-07-08 08:19:33.156679 aidref 032842694 R rec 4c1fb326-cad2-4127-bfc0-a31b99c57ebb -2023-07-08 08:19:33.262329 2023-07-08 08:19:33.262343 aidref 032846908 R rec 86e2c99e-f201-445e-8bc9-40e2eb28b252 -2023-07-08 08:19:33.379623 2023-07-08 08:19:33.379634 aidref 032975856 R rec 9cd8032f-92bb-4efd-9f35-163ecb6a794e -2023-07-08 08:19:33.491984 2023-07-08 08:19:33.491995 aidref 033004633 R rec 1f924e14-f5c3-42f5-9ac4-2951e0c1cdce -2023-07-08 08:19:33.587923 2023-07-08 08:19:33.587937 aidref 033033269 R rec 307d4fe3-4353-47da-b3a8-b58d0a50acdf -2023-07-08 08:19:33.692738 2023-07-08 08:19:33.692754 aidref 033070245 R rec 39c65e9c-a4d9-4173-8350-cd8f1895861a -2023-07-08 08:19:33.81176 2023-07-08 08:19:33.811767 aidref 033079595 R rec 24154353-f50e-4fee-ad65-205834dd2ad6 -2023-07-08 08:19:33.926214 2023-07-08 08:19:33.926232 aidref 033151571 R rec ea21eb74-07e5-4104-9e9d-cf69eba565b7 -2023-07-08 08:19:34.032367 2023-07-08 08:19:34.032378 aidref 03321994X R rec 4bb871f2-3713-48cc-875e-bf87df1771e2 -2023-07-08 08:19:34.148406 2023-07-08 08:19:34.148424 aidref 033239568 R rec f87e7f8b-8d92-476c-8000-0a901458993e -2023-07-08 08:19:34.264503 2023-07-08 08:19:34.264519 aidref 033386242 R rec 11c3cc62-c9d8-4136-bd36-9b51c9a59d25 -2023-07-08 08:19:34.375408 2023-07-08 08:19:34.375422 aidref 033392757 R rec 92807bf1-d009-4650-9427-42d03cec85e2 -2023-07-08 08:19:34.481497 2023-07-08 08:19:34.481507 aidref 033454175 R rec 800e3cac-4c4a-4d25-bf98-b82b5979be35 -2023-07-08 08:19:34.602031 2023-07-08 08:19:34.602043 aidref 033478686 R rec e3d7e8f1-d227-4457-b014-be953d85e2ed -2023-07-08 08:19:34.705442 2023-07-08 08:19:34.705454 aidref 033596344 R rec 8fbdccc9-e4d8-49b0-8992-20d387cff3ea -2023-07-08 08:19:34.824581 2023-07-08 08:19:34.824597 aidref 033614717 R rec e07bcc70-7e99-4304-bc33-bb3f2db15ac7 -2023-07-08 08:19:34.942919 2023-07-08 08:19:34.942929 aidref 033846987 R rec b9ec94e8-9bfd-4887-8c3a-4b7ea189617e -2023-07-08 08:19:35.063585 2023-07-08 08:19:35.063596 aidref 033864357 R rec 0a42ccf6-810c-49cb-bc4a-5d68ffa417ff -2023-07-08 08:19:35.198616 2023-07-08 08:19:35.198632 aidref 03386540X R rec 7dfa95a7-2bb5-42c1-b702-5bf2659f4dc4 -2023-07-08 08:19:35.351463 2023-07-08 08:19:35.351477 aidref 033883262 R rec b9d48631-55ed-44fe-ac5c-773f9e1c5d02 -2023-07-08 08:19:35.477024 2023-07-08 08:19:35.477041 aidref 033900795 R rec 33ea2031-9fbd-45d0-92d5-bf1d567ee0f4 -2023-07-08 08:19:35.60849 2023-07-08 08:19:35.608501 aidref 03391737X R rec 1d15782e-c413-4aaa-88c5-f323f100ccdc -2023-07-08 08:19:35.752685 2023-07-08 08:19:35.752696 aidref 033922055 R rec 50c14072-af47-4b3a-8ce7-33d82cf00483 -2023-07-08 08:19:35.893402 2023-07-08 08:19:35.893408 aidref 033931941 R rec 0901b5b2-f84e-446d-95be-4d3810b76ade -2023-07-08 08:19:36.018686 2023-07-08 08:19:36.018696 aidref 033938989 R rec 33b7743d-3037-4882-8883-6ea34997ff01 -2023-07-08 08:19:36.138884 2023-07-08 08:19:36.138897 aidref 033976171 R rec 83222325-5eec-4e1f-89db-fe41c5e4f0c5 -2023-07-08 08:19:36.256015 2023-07-08 08:19:36.256025 aidref 034035370 R rec 45650f84-1fb8-4cf4-82db-3cfd1bd21328 -2023-07-08 08:19:36.42071 2023-07-08 08:19:36.420721 aidref 034035818 R rec 57d6ffd2-85d8-43eb-a64f-15012dd579e3 -2023-07-08 08:19:36.563683 2023-07-08 08:19:36.563695 aidref 034075763 R rec 906db075-50bb-453a-a320-b6d4db093988 -2023-07-08 08:19:36.691905 2023-07-08 08:19:36.691911 aidref 034085289 R rec 2f9c0508-639e-4f60-8ee4-897c88f8cf46 -2023-07-08 08:19:36.819658 2023-07-08 08:19:36.8197 aidref 034112774 R rec 5a43efc1-fdb3-4abd-926b-291748842d58 -2023-07-08 08:19:36.93198 2023-07-08 08:19:36.931999 aidref 034263802 R rec ac8da3d0-bed8-4009-8fb2-290eea75989b -2023-07-08 08:19:37.048127 2023-07-08 08:19:37.048166 aidref 034287728 R rec bec8c488-2de2-4d1b-a393-d7467cceb1e8 -2023-07-08 08:19:37.169834 2023-07-08 08:19:37.169846 aidref 034310770 R rec ededc4a9-3b2a-4304-8f31-189314d8690c -2023-07-08 08:19:37.282785 2023-07-08 08:19:37.282796 aidref 034314873 R rec b59ee00d-656a-4939-bcad-37c8c399c2b9 -2023-07-08 08:19:37.402574 2023-07-08 08:19:37.402583 aidref 03433999X R rec a687cb2a-8e0a-447c-baae-cec63fe7ea9b -2023-07-08 08:19:37.512272 2023-07-08 08:19:37.512285 aidref 034343237 R rec bb7d441b-33cf-41ef-97c2-31c9c510ac82 -2023-07-08 08:19:37.609733 2023-07-08 08:19:37.609747 aidref 034358218 R rec 4179f17d-2d2b-4806-9a72-ddcc331ab14c -2023-07-08 08:19:37.725045 2023-07-08 08:19:37.725057 aidref 034388397 R rec 992f2043-2365-4f1c-bda4-cd57b606ca63 -2023-07-08 08:19:37.8485 2023-07-08 08:19:37.848517 aidref 034511474 R rec a369774f-4b5f-4aed-a4f6-6ee0cce16850 -2023-07-08 08:19:37.954503 2023-07-08 08:19:37.954514 aidref 034517928 R rec f7f5037f-693f-4316-99a1-dc82aec5b715 -2023-07-08 08:19:38.066717 2023-07-08 08:19:38.066733 aidref 034537015 R rec 21f42ec3-a80f-4b62-b1e3-180b91ff4362 -2023-07-08 08:19:38.17737 2023-07-08 08:19:38.177382 aidref 034561528 R rec 1cba11e6-cdc8-4e5c-afa9-46aefb6f8d0c -2023-07-08 08:19:38.291828 2023-07-08 08:19:38.291843 aidref 034612998 R rec 343bd04b-65b7-4cd3-9444-364fc2ecc569 -2023-07-08 08:19:38.40345 2023-07-08 08:19:38.403461 aidref 034663525 R rec 3c28729d-6f41-44d6-b5ba-3f56b289954d -2023-07-08 08:19:38.530083 2023-07-08 08:19:38.530095 aidref 034692711 R rec d6762ddf-20a7-4ec5-891d-c63f1f937181 -2023-07-08 08:19:38.641616 2023-07-08 08:19:38.641628 aidref 034696601 R rec a87f83de-86f3-40fc-89ef-3794995756c2 -2023-07-08 08:19:38.76336 2023-07-08 08:19:38.763371 aidref 034702105 R rec 2dd65fcc-902f-4551-922e-8f89e342641f -2023-07-08 08:19:38.870932 2023-07-08 08:19:38.870944 aidref 034710647 R rec dd74c72f-c710-49ca-a37a-70680b8fe038 -2023-07-08 08:19:38.989012 2023-07-08 08:19:38.989025 aidref 034731695 R rec 857fe4f6-8214-4144-9ad1-d63b289eb0a9 -2023-07-08 08:19:39.124003 2023-07-08 08:19:39.124018 aidref 034830936 R rec 6819eb00-73fe-4542-aba7-7dec43610223 -2023-07-08 08:19:39.247961 2023-07-08 08:19:39.247978 aidref 034833064 R rec 6489547d-d3ee-4674-9977-0fa1927b05a5 -2023-07-08 08:19:39.35588 2023-07-08 08:19:39.355892 aidref 034886060 R rec 06218b88-28dd-4ca6-81f8-3e4d76235f9b -2023-07-08 08:19:39.455458 2023-07-08 08:19:39.455472 aidref 034922903 R rec 2734deab-6212-4df0-9a51-4219baa4fb7b -2023-07-08 08:19:39.569233 2023-07-08 08:19:39.569248 aidref 034931929 R rec 27cb804b-96a2-4e10-9e23-d495b62072ea -2023-07-08 08:19:39.681588 2023-07-08 08:19:39.681599 aidref 034938656 R rec 9517caaf-48d9-4344-9268-aaeaede0c8d9 -2023-07-08 08:19:39.788192 2023-07-08 08:19:39.788203 aidref 034953809 R rec 082f673d-8ffa-4840-9e25-39735cb3ccc0 -2023-07-08 08:19:39.913551 2023-07-08 08:19:39.913567 aidref 035009039 R rec 5110d019-e099-4ebc-af37-d01f5fdcbfeb -2023-07-08 08:19:40.028948 2023-07-08 08:19:40.028965 aidref 035068825 R rec 4576d301-a6d8-4102-898a-ad346474088c -2023-07-08 08:19:40.150379 2023-07-08 08:19:40.1504 aidref 035124199 R rec 1073573e-b5e8-497c-b3ed-cb490d398ffb -2023-07-08 08:19:40.26828 2023-07-08 08:19:40.268298 aidref 035137045 R rec cbbdcd23-4847-40a6-97ec-c4c31c4cf1c4 -2023-07-08 08:19:40.374093 2023-07-08 08:19:40.374107 aidref 035170867 R rec a822d3c1-bbc3-40b5-ab11-470304ea930e -2023-07-08 08:19:40.489995 2023-07-08 08:19:40.490016 aidref 035347988 R rec b4fa21e8-b7ea-434d-9c64-9c220ebd2c66 -2023-07-08 08:19:40.606876 2023-07-08 08:19:40.60689 aidref 035348879 R rec 6336caa8-85df-44d4-9598-5ac6d77a2eb7 -2023-07-08 08:19:40.729204 2023-07-08 08:19:40.729215 aidref 035370572 R rec f45808ee-e6c3-47db-8994-dd096b290df8 -2023-07-08 08:19:40.858153 2023-07-08 08:19:40.858164 aidref 035451793 R rec 0ad1e744-7a42-46b5-8537-984125e53637 -2023-07-08 08:19:40.995565 2023-07-08 08:19:40.995579 aidref 035466278 R rec 20421d45-8e16-4ed5-9379-5c6404772e0a -2023-07-08 08:19:41.108964 2023-07-08 08:19:41.108975 aidref 035467207 R rec 881f144e-deeb-4f0d-97d1-fb4e0afbae2b -2023-07-08 08:19:41.224675 2023-07-08 08:19:41.224686 aidref 035550767 R rec e55effcb-ae48-46f0-ab4a-0daad9356804 -2023-07-08 08:19:41.342477 2023-07-08 08:19:41.342487 aidref 035552913 R rec c713baee-abc0-4387-bae2-268595582804 -2023-07-08 08:19:41.445535 2023-07-08 08:19:41.445559 aidref 035560754 R rec 7cd5d4a2-5c6f-496a-af4b-9f2b754388a2 -2023-07-08 08:19:41.55349 2023-07-08 08:19:41.5535 aidref 035599634 R rec 8e2e5b60-69c8-4e48-9636-55a12d1a820e -2023-07-08 08:19:41.673742 2023-07-08 08:19:41.674294 aidref 035617179 R rec 92e1daca-b209-45ab-853a-f41a3b9c1ebd -2023-07-08 08:19:41.780087 2023-07-08 08:19:41.780097 aidref 035695161 R rec e17c570e-36c5-4387-b850-1fd1dbbda764 -2023-07-08 08:19:41.89968 2023-07-08 08:19:41.899691 aidref 050162373 R rec 4b980e03-2da2-48ff-84e2-b628b8ba2c81 -2023-07-08 08:19:42.040189 2023-07-08 08:19:42.040199 aidref 050191101 R rec bb0c9e85-4cf1-4723-b3ec-0f27c9880915 -2023-07-08 08:19:42.16994 2023-07-08 08:19:42.169946 aidref 050212265 R rec 14b43259-3126-4932-a566-bc72629e4db3 -2023-07-08 08:19:42.291482 2023-07-08 08:19:42.291772 aidref 05021425X R rec 693e6edb-c85c-4447-b4cf-4ef09ef83c83 -2023-07-08 08:19:42.392816 2023-07-08 08:19:42.392826 aidref 050225146 R rec 62b33c5d-9d15-4dbf-b060-89f31698785a -2023-07-08 08:19:42.511166 2023-07-08 08:19:42.511177 aidref 050262645 R rec 751e39a2-70b3-4c14-8e07-62a7b8a14a96 -2023-07-08 08:19:42.634432 2023-07-08 08:19:42.634442 aidref 050270982 R rec 6d72a1df-9419-48ee-b31c-035c6b7c8039 -2023-07-08 08:19:42.745638 2023-07-08 08:19:42.745648 aidref 050313800 R rec 1b2b787e-c72a-4d4e-8241-bbce46911af3 -2023-07-08 08:19:42.855017 2023-07-08 08:19:42.85503 aidref 050321692 R rec 365ff6f4-3d83-4097-be85-61c1a04b1617 -2023-07-08 08:19:42.974065 2023-07-08 08:19:42.974077 aidref 050323474 R rec 8abfd09d-d462-40bf-9efb-84a41a08c6b5 -2023-07-08 08:19:43.098834 2023-07-08 08:19:43.098844 aidref 050329332 R rec 66df5c55-b76c-42d6-951f-3155e42c407e -2023-07-08 08:19:43.213836 2023-07-08 08:19:43.213852 aidref 050348736 R rec 75c3e94c-bd73-4cd3-a24c-7be7ff1d4426 -2023-07-08 08:19:43.389921 2023-07-08 08:19:43.389933 aidref 050593587 R rec 363a3e30-bed6-496d-972c-8a52e33bff9d -2023-07-08 08:19:43.516237 2023-07-08 08:19:43.516252 aidref 05066302X R rec b58c38e1-579f-4bce-9f37-a724d00ef400 -2023-07-08 08:19:43.630502 2023-07-08 08:19:43.630513 aidref 050667947 R rec 4e81b07b-1581-45f7-bf72-7a84055a38e2 -2023-07-08 08:19:43.747508 2023-07-08 08:19:43.747523 aidref 050709585 R rec 7aa85e3a-8b07-4868-825e-fb6c65e35746 -2023-07-08 08:19:43.87248 2023-07-08 08:19:43.872495 aidref 050723634 R rec bbede9cf-6d20-49cd-9b67-c1f6ab380bee -2023-07-08 08:19:43.994013 2023-07-08 08:19:43.994029 aidref 050785745 R rec fa754ea3-6232-44e9-874f-18b1430f57b3 -2023-07-08 08:19:44.107542 2023-07-08 08:19:44.107558 aidref 050798928 R rec 7caa49d0-f237-49a5-a2f1-885a28c1d112 -2023-07-08 08:19:44.227551 2023-07-08 08:19:44.227563 aidref 050822551 R rec 894bdc57-9773-42e9-93fc-51ed393e35f1 -2023-07-08 08:19:44.364448 2023-07-08 08:19:44.364459 aidref 052206327 R rec 9e7ad483-2df8-4322-900e-71de1bf1e106 -2023-07-08 08:19:44.468026 2023-07-08 08:19:44.468032 aidref 052460819 R rec 5a71116f-2720-4a4a-8b95-b76ae4430f9d -2023-07-08 08:19:44.559903 2023-07-08 08:19:44.559919 aidref 052470911 R rec 969338c6-412e-45c2-91e4-e7777378fbe7 -2023-07-08 08:19:44.686113 2023-07-08 08:19:44.686123 aidref 052470989 R rec d104066f-83b3-4ad4-946d-e6ff663a6c06 -2023-07-08 08:19:44.816179 2023-07-08 08:19:44.816189 aidref 052556220 R rec a1329135-0282-4ec8-b1b3-833f49335524 -2023-07-08 08:19:44.946628 2023-07-08 08:19:44.946643 aidref 052737284 R rec 1122c271-91cc-4622-a989-906c88dd5b1f -2023-07-08 08:19:45.074172 2023-07-08 08:19:45.074284 aidref 053434080 R rec 41a56d93-264b-4bf8-936e-38f9e1b552fe -2023-07-08 08:19:45.204809 2023-07-08 08:19:45.204819 aidref 053500679 R rec 5c0b7c55-a0c1-48ae-b6b5-8646dba00457 -2023-07-08 08:19:45.320123 2023-07-08 08:19:45.320136 aidref 053516184 R rec 6ee85309-c9fe-4f32-a7c2-a654a32f1ce7 -2023-07-08 08:19:45.446968 2023-07-08 08:19:45.446979 aidref 055333893 R rec 85bd5b48-4585-4cc2-8b25-456a3b54adfb -2023-07-08 08:19:45.589438 2023-07-08 08:19:45.589449 aidref 055386806 R rec 0a13f8b7-45ed-4506-83c0-884e74c70cae -2023-07-08 08:19:45.710643 2023-07-08 08:19:45.710654 aidref 056579780 R rec 37eb8994-0229-4ce0-9aad-58cd469bac02 -2023-07-08 08:19:45.836059 2023-07-08 08:19:45.836073 aidref 056753950 R rec c94fa4ea-4b98-4222-b500-25df97f5b264 -2023-07-08 08:19:45.947996 2023-07-08 08:19:45.948014 aidref 056755759 R rec 4a6c4eed-0330-49d0-8d58-415087776bab -2023-07-08 08:19:46.049189 2023-07-08 08:19:46.049204 aidref 056764073 R rec 835ee85e-e577-49e8-bfe4-42a1afbb6854 -2023-07-08 08:19:46.162027 2023-07-08 08:19:46.162047 aidref 056766378 R rec 46990e3e-e6c9-4de3-a386-b60e2900a7fc -2023-07-08 08:19:46.282319 2023-07-08 08:19:46.282335 aidref 056810741 R rec f6354a09-856e-4e26-972b-874097440f4c -2023-07-08 08:19:46.409097 2023-07-08 08:19:46.409108 aidref 056810881 R rec b69fceca-94b4-434a-8f10-b4c2db329991 -2023-07-08 08:19:46.523538 2023-07-08 08:19:46.523548 aidref 056820151 R rec 0c1b8cf8-634e-413c-a5f7-6c05a2f38f58 -2023-07-08 08:19:46.645692 2023-07-08 08:19:46.645706 aidref 056821840 R rec defba508-c525-4121-828b-084688baa833 -2023-07-08 08:19:46.785431 2023-07-08 08:19:46.785448 aidref 056844093 R rec 6f31c57c-18e0-4074-82f1-a4aaca2712fd -2023-07-08 08:19:46.905902 2023-07-08 08:19:46.905912 aidref 056857276 R rec 30a9440c-570f-4b50-8f9c-1a09c372f6fe -2023-07-08 08:19:47.035064 2023-07-08 08:19:47.035074 aidref 056868324 R rec f079ac53-874a-41a3-ac83-7505c437e163 -2023-07-08 08:19:47.169797 2023-07-08 08:19:47.169811 aidref 056926650 R rec a02a8b0d-847e-42bd-b455-e8f75e91565e -2023-07-08 08:19:47.302408 2023-07-08 08:19:47.302424 aidref 056955669 R rec f61a6c76-da21-4428-85c3-6f6e4f9ea212 -2023-07-08 08:19:47.417081 2023-07-08 08:19:47.417096 aidref 057030448 R rec b9902730-01f7-449d-8f5a-14234da8c269 -2023-07-08 08:19:47.551579 2023-07-08 08:19:47.551588 aidref 057097909 R rec 1a9abf29-88f0-4bc9-ab08-5ca93d6ef7d8 -2023-07-08 08:19:47.670695 2023-07-08 08:19:47.67071 aidref 057101795 R rec 3052630c-84f8-452d-8819-a12dedc499ec -2023-07-08 08:19:47.795041 2023-07-08 08:19:47.795057 aidref 057110662 R rec 699efbca-ad27-4c39-bd56-2d9acd86d2c4 -2023-07-08 08:19:47.939452 2023-07-08 08:19:47.939462 aidref 057199892 R rec 657ab248-d4c0-4daf-a301-16bcfec8f378 -2023-07-08 08:19:48.072102 2023-07-08 08:19:48.072118 aidref 057249660 R rec 233b169c-f5d2-438f-81ee-7282b89c5c94 -2023-07-08 08:19:48.208612 2023-07-08 08:19:48.208628 aidref 057271372 R rec c28f145c-fc7e-44cf-8ff7-0ccb33b6d16a -2023-07-08 08:19:48.344673 2023-07-08 08:19:48.344688 aidref 057329850 R rec 1c223b37-3026-495a-ac17-715e8ec3c346 -2023-07-08 08:19:48.493144 2023-07-08 08:19:48.493161 aidref 057345627 R rec 0cee1b25-8443-475a-aae6-0dd3bff6dbec -2023-07-08 08:19:48.630853 2023-07-08 08:19:48.630869 aidref 057376719 R rec 437cfe4d-252e-438e-8b71-7ccbab66498b -2023-07-08 08:19:48.766788 2023-07-08 08:19:48.766806 aidref 057556474 R rec 0e5cf8a0-6509-4525-b701-234e6abe4ed4 -2023-07-08 08:19:48.891625 2023-07-08 08:19:48.891643 aidref 057564647 R rec fed630f8-2147-4dfa-addb-ca3c57542f81 -2023-07-08 08:19:49.005312 2023-07-08 08:19:49.005326 aidref 057564876 R rec 41fbffe6-283d-4e2b-b0b2-920ea1d36517 -2023-07-08 08:19:49.11917 2023-07-08 08:19:49.119184 aidref 057687242 R rec 896b68e2-4219-48f8-b4fc-745aff2ff3f3 -2023-07-08 08:19:49.23672 2023-07-08 08:19:49.236734 aidref 05769009X R rec 61e43774-a7c2-4adc-b4b4-88634af2b7cf -2023-07-08 08:19:49.370207 2023-07-08 08:19:49.370222 aidref 05776171X R rec 0ea35d02-38f5-410b-94b9-c855dca796a9 -2023-07-08 08:19:49.485676 2023-07-08 08:19:49.485688 aidref 057791511 R rec f2e37a59-9030-4f8c-8c65-aa827f007af4 -2023-07-08 08:19:49.608862 2023-07-08 08:19:49.608878 aidref 057941386 R rec b33a8cb6-e256-47d0-b166-9e2e2612d791 -2023-07-08 08:19:49.730562 2023-07-08 08:19:49.730573 aidref 058054529 R rec a077955f-4a2f-48ea-b5ae-7f92f960c697 -2023-07-08 08:19:49.846091 2023-07-08 08:19:49.846109 aidref 058114491 R rec 3aa5bad8-d944-4aa1-a5d1-330fb3293aa3 -2023-07-08 08:19:49.960221 2023-07-08 08:19:49.960231 aidref 058598928 R rec 555dfe1d-0ca3-42ea-adde-428e119eb885 -2023-07-08 08:19:50.10287 2023-07-08 08:19:50.102885 aidref 058861998 R rec d5123dff-fd65-45b4-84f5-f3615f2146de -2023-07-08 08:19:50.236516 2023-07-08 08:19:50.236526 aidref 058993789 R rec 6e2ffdb2-cd63-4c24-accb-11e33fa48cf3 -2023-07-08 08:19:50.356489 2023-07-08 08:19:50.356504 aidref 059051051 R rec 70f557f4-eb9a-4f6c-ba2e-b53e92f2377e -2023-07-08 08:19:50.467709 2023-07-08 08:19:50.467724 aidref 059202491 R rec a1fe3c67-b9e8-4d25-b3e7-babb2bfc8447 -2023-07-08 08:19:50.590378 2023-07-08 08:19:50.590414 aidref 059213523 R rec 56605d82-d14d-4c40-8fd8-3662e3abf43f -2023-07-08 08:19:50.710761 2023-07-08 08:19:50.710777 aidref 059412720 R rec 36ecaa86-d7a6-47e5-98b9-77e891af0e29 -2023-07-08 08:19:50.850136 2023-07-08 08:19:50.850155 aidref 05961398X R rec e562dcf1-92dd-4262-95ae-1b57a8c2880e -2023-07-08 08:19:50.991317 2023-07-08 08:19:50.991332 aidref 059742984 R rec d4ecc9eb-94d8-4c0d-83f8-d0a367f968c4 -2023-07-08 08:19:51.132533 2023-07-08 08:19:51.132543 aidref 059774177 R rec 91745c1e-ebaf-4c0f-b1a9-bacfc69f7878 -2023-07-08 08:19:51.276891 2023-07-08 08:19:51.276907 aidref 059780843 R rec 3f4371e3-28cc-454d-88d0-78fe83a42117 -2023-07-08 08:19:51.395028 2023-07-08 08:19:51.395043 aidref 059922184 R rec 5eebf350-c453-43e8-bbbd-5aff446ebe25 -2023-07-08 08:19:51.522513 2023-07-08 08:19:51.522526 aidref 059943696 R rec 0fc01fc0-c8b0-452a-85d6-66a79bc98e44 -2023-07-08 08:19:51.631374 2023-07-08 08:19:51.631389 aidref 060104406 R rec 396bded8-09d1-4ff6-9132-ce3e1cb6a956 -2023-07-08 08:19:51.764006 2023-07-08 08:19:51.764016 aidref 060167181 R rec 8727eeec-3de1-47ba-b8f9-eba1425a2adf -2023-07-08 08:19:51.89939 2023-07-08 08:19:51.899404 aidref 060256982 R rec 41cc8411-67f5-4b26-9599-737211507dae -2023-07-08 08:19:52.021194 2023-07-08 08:19:52.021205 aidref 060459743 R rec f7f46e90-f021-4bc1-881e-52bc2871cce7 -2023-07-08 08:19:52.16189 2023-07-08 08:19:52.161905 aidref 060721995 R rec 60bb0d08-dcbb-4d30-a9f9-7347dce73348 -2023-07-08 08:19:52.293095 2023-07-08 08:19:52.293108 aidref 060722320 R rec b9587a7f-fbe8-407b-b9f3-8fc96ad94dd4 -2023-07-08 08:19:52.404547 2023-07-08 08:19:52.404579 aidref 060754435 R rec 4d168b61-9678-44c3-b8c0-dc6255e0f5fc -2023-07-08 08:19:52.504336 2023-07-08 08:19:52.504349 aidref 060756985 R rec 842b49af-7f5e-44db-9664-570e874c3fef -2023-07-08 08:19:52.620674 2023-07-08 08:19:52.620688 aidref 060819529 R rec d4dae91e-9221-4ba8-812d-59dbb9bb4db5 -2023-07-08 08:19:52.741142 2023-07-08 08:19:52.741157 aidref 060890932 R rec bb4bc6d1-0a74-4f10-92e5-10f406283b32 -2023-07-08 08:19:52.853927 2023-07-08 08:19:52.853945 aidref 061077690 R rec e52bb530-d6c8-4acc-bab0-2d3a2c0cb471 -2023-07-08 08:19:52.980527 2023-07-08 08:19:52.98054 aidref 061113603 R rec 3695b07b-8990-47d2-8c8b-fb413b8ec11d -2023-07-08 08:19:53.103433 2023-07-08 08:19:53.103446 aidref 061131547 R rec 70f28f31-589c-4cbc-aba0-d173e05e7cb2 -2023-07-08 08:19:53.235758 2023-07-08 08:19:53.235777 aidref 061135437 R rec 3856ca16-bbbe-40c9-acab-62a33712a1fb -2023-07-08 08:19:53.35731 2023-07-08 08:19:53.357322 aidref 061190586 R rec 45d3fefe-d3df-447f-9243-c7b80efc87ac -2023-07-08 08:19:53.470468 2023-07-08 08:19:53.470479 aidref 063876981 R rec a61af887-1756-489f-88bf-b500a5a7bf0f -2023-07-08 08:19:53.59156 2023-07-08 08:19:53.591574 aidref 066759099 R rec 44297980-1172-4949-94fb-59fc513c67c7 -2023-07-08 08:19:53.715969 2023-07-08 08:19:53.715983 aidref 066764602 R rec 3f23016e-831c-4fff-a283-8afb81085e94 -2023-07-08 08:19:53.847982 2023-07-08 08:19:53.847997 aidref 066772834 R rec c30c5d4c-5e2b-41ba-a958-c4fcefd19f12 -2023-07-08 08:19:53.974105 2023-07-08 08:19:53.974116 aidref 06685086X R rec 2a0ce128-29e5-4375-9849-8af35d456896 -2023-07-08 08:19:54.096781 2023-07-08 08:19:54.096794 aidref 066879353 R rec c1c4cd9c-c45c-4d42-9fcb-249ae782aa42 -2023-07-08 08:19:54.220468 2023-07-08 08:19:54.220476 aidref 066897815 R rec 71f2375e-44c9-4739-b18b-4734b86ad90b -2023-07-08 08:19:54.329734 2023-07-08 08:19:54.329747 aidref 066902096 R rec 1acf0643-eb9d-4864-bdb3-bfa1ebedd1ef -2023-07-08 08:19:54.447394 2023-07-08 08:19:54.447403 aidref 066986540 R rec 373e6423-b9b1-453d-8fcd-9546ee71c501 -2023-07-08 08:19:54.55561 2023-07-08 08:19:54.555624 aidref 066993709 R rec 87a08279-3a51-4b97-8a2c-24d773551fa8 -2023-07-08 08:19:54.678129 2023-07-08 08:19:54.678139 aidref 06703098X R rec 3bb64616-c407-4fb2-af6e-2fd377ad1340 -2023-07-08 08:19:54.79741 2023-07-08 08:19:54.797419 aidref 067042767 R rec ca8110f9-8edc-4837-90e6-fbee4595b5e8 -2023-07-08 08:19:54.936211 2023-07-08 08:19:54.936221 aidref 067071333 R rec 2237c0ae-650a-4ccb-8cc9-f24d4134a889 -2023-07-08 08:19:55.05216 2023-07-08 08:19:55.05217 aidref 067071740 R rec 0bf68ab4-77c3-4f5f-a653-5c81489837fc -2023-07-08 08:19:55.174487 2023-07-08 08:19:55.174498 aidref 067073204 R rec 112718cb-ff46-4dd8-a083-4e8d62624675 -2023-07-08 08:19:55.291194 2023-07-08 08:19:55.291206 aidref 067086055 R rec 14b636a0-a040-47ea-83b6-6424d62878c1 -2023-07-08 08:19:55.398365 2023-07-08 08:19:55.398378 aidref 067096441 R rec 68bc27ab-5b32-48ee-b7c0-d137d69c416e -2023-07-08 08:19:55.524136 2023-07-08 08:19:55.524147 aidref 067096824 R rec a11d3b66-5b63-4cab-afc1-24bed210eaec -2023-07-08 08:19:55.639459 2023-07-08 08:19:55.63947 aidref 067174299 R rec e332c9c6-c7ad-4fdb-9d01-7d1cfe14ea5f -2023-07-08 08:19:55.769117 2023-07-08 08:19:55.76913 aidref 067181562 R rec 63336dcf-84e5-46cf-ac32-d34f4d55f71b -2023-07-08 08:19:55.887336 2023-07-08 08:19:55.887352 aidref 067223613 R rec 265a1eb8-3fcd-4215-8d3d-92775b5614c5 -2023-07-08 08:19:56.000712 2023-07-08 08:19:56.000722 aidref 067285716 R rec ae82cadc-10c1-495d-8804-b21cf13b78e9 -2023-07-08 08:19:56.107931 2023-07-08 08:19:56.107946 aidref 067321666 R rec a38dc0f6-ceac-4b17-b7a9-82516db03b1e -2023-07-08 08:19:56.255345 2023-07-08 08:19:56.255356 aidref 067345395 R rec 545065d3-13cc-4c58-a688-6c00c7dbc7b4 -2023-07-08 08:19:56.370629 2023-07-08 08:19:56.370646 aidref 067692753 R rec 478d47d7-e16b-48db-9133-434d8dba693c -2023-07-08 08:19:56.490778 2023-07-08 08:19:56.490793 aidref 06771496X R rec b094f461-dad7-4753-838a-fb122b61d1ba -2023-07-08 08:19:56.626716 2023-07-08 08:19:56.626731 aidref 067732003 R rec 87eb8d6f-fd03-45f9-b94f-45822f2bd4da -2023-07-08 08:19:56.746595 2023-07-08 08:19:56.746609 aidref 068703597 R rec 67a44541-3e01-45e6-b6eb-0e2bc04810a8 -2023-07-08 08:19:56.859192 2023-07-08 08:19:56.859203 aidref 069064830 R rec 47cb4d4e-91a0-4beb-95a3-2cd5d7e8e9e8 -2023-07-08 08:19:56.973073 2023-07-08 08:19:56.973088 aidref 069116458 R rec ed5f19f7-e89f-4c63-bd29-472e46a59e0f -2023-07-08 08:19:57.084754 2023-07-08 08:19:57.084765 aidref 069130817 R rec 8e1ef684-89bc-4b39-becb-127f3021798f -2023-07-08 08:19:57.201309 2023-07-08 08:19:57.201321 aidref 069148155 R rec 0b5c411b-5c4d-4455-be08-f9239ec2f102 -2023-07-08 08:19:57.311168 2023-07-08 08:19:57.311178 aidref 06915547X R rec 013629a5-7459-4f0a-8321-062a0ca52c52 -2023-07-08 08:19:57.409002 2023-07-08 08:19:57.409013 aidref 069156964 R rec 11f0e92a-225f-447a-b29a-5f31f2f477c0 -2023-07-08 08:19:57.529784 2023-07-08 08:19:57.529799 aidref 069265860 R rec 65408f93-7186-474f-aae1-832995509290 -2023-07-08 08:19:57.645348 2023-07-08 08:19:57.645358 aidref 069379777 R rec 30a4c7a7-4a9a-4e31-8742-e1632ab1e466 -2023-07-08 08:19:57.775807 2023-07-08 08:19:57.775828 aidref 069487332 R rec 6619293e-7fd0-49cc-9088-990ef28b3a25 -2023-07-08 08:19:57.903704 2023-07-08 08:19:57.903715 aidref 069679908 R rec 7812ce51-5b92-44e5-87bb-c432732181df -2023-07-08 08:19:58.028584 2023-07-08 08:19:58.028599 aidref 069781524 R rec 6929ddbd-1fbb-4203-9a8d-efbaf4d1de47 -2023-07-08 08:19:58.166257 2023-07-08 08:19:58.166267 aidref 069782768 R rec a05e3267-7718-4967-92fc-bc610ac5d028 -2023-07-08 08:19:58.289994 2023-07-08 08:19:58.290005 aidref 069843783 R rec 051ef117-5a08-448d-b0af-d6c12d7d57ec -2023-07-08 08:19:58.428095 2023-07-08 08:19:58.42811 aidref 069844119 R rec 36dc64fe-6f64-435e-bdaf-5ea29df47d68 -2023-07-08 08:19:58.563583 2023-07-08 08:19:58.563594 aidref 069886687 R rec e78349a6-3e53-4e82-bcd2-8005ac06fa89 -2023-07-08 08:19:58.686109 2023-07-08 08:19:58.686125 aidref 070054878 R rec 6a116775-9c0e-4f2a-89a9-a59adac8a943 -2023-07-08 08:19:58.851823 2023-07-08 08:19:58.851833 aidref 070150737 R rec eda2d38a-181b-4664-a091-4d9083c96bdb -2023-07-08 08:19:58.980956 2023-07-08 08:19:58.980971 aidref 070160538 R rec b33235d4-7706-44aa-b3af-88c8d98ade68 -2023-07-08 08:19:59.101196 2023-07-08 08:19:59.101208 aidref 070199736 R rec 00e5dc80-9828-4822-8a44-f46a7d868290 -2023-07-08 08:19:59.237194 2023-07-08 08:19:59.237235 aidref 070328005 R rec bd8c4115-ccb0-4dee-8310-b930a112bb14 -2023-07-08 08:19:59.365539 2023-07-08 08:19:59.365553 aidref 070377510 R rec debb6255-82b9-470a-af30-841cd2cb87e7 -2023-07-08 08:19:59.486192 2023-07-08 08:19:59.486203 aidref 070400229 R rec 8b85475a-4d1c-4688-90cd-7ae5930508bc -2023-07-08 08:19:59.607531 2023-07-08 08:19:59.607541 aidref 070478015 R rec 23d1931d-3250-4a30-8fba-17120a858764 -2023-07-08 08:19:59.729702 2023-07-08 08:19:59.72972 aidref 070664900 R rec 4e77a713-b6c4-4a88-965b-32107c7e9b59 -2023-07-08 08:19:59.848518 2023-07-08 08:19:59.848529 aidref 070977275 R rec 270ed668-b7c3-4313-88bc-f93452c3be48 -2023-07-08 08:19:59.983082 2023-07-08 08:19:59.983091 aidref 071004092 R rec dc4aa60e-7cc2-4eb3-9176-d3f682f02f08 -2023-07-08 08:20:00.119281 2023-07-08 08:20:00.119294 aidref 07101120X R rec 5ccc2931-9e7b-47b6-9092-9c70cd60b668 -2023-07-08 08:20:00.253082 2023-07-08 08:20:00.253092 aidref 071088679 R rec d44ee0cf-ffd2-4be1-8200-509f456dce98 -2023-07-08 08:20:00.374011 2023-07-08 08:20:00.374022 aidref 071120637 R rec 21ff8741-39f6-4e28-a840-643c67d7fbda -2023-07-08 08:20:00.497088 2023-07-08 08:20:00.497099 aidref 071285571 R rec 17ada3f7-d1ab-4e22-82ad-15ee8d3049da -2023-07-08 08:20:00.625351 2023-07-08 08:20:00.625363 aidref 071324380 R rec 955965c6-e81d-4c9c-9f4d-d42e0676a476 -2023-07-08 08:20:00.747692 2023-07-08 08:20:00.747707 aidref 071344241 R rec 4fbc5765-5ac5-4654-a7cf-4ff5c9da3421 -2023-07-08 08:20:00.910083 2023-07-08 08:20:00.910094 aidref 071531149 R rec 0714a0a5-73a9-47fd-ae7b-9aa5b2eb5829 -2023-07-08 08:20:01.050825 2023-07-08 08:20:01.05084 aidref 071535616 R rec f1a7b361-eab8-4d3a-9175-40007b841d03 -2023-07-08 08:20:01.196497 2023-07-08 08:20:01.19651 aidref 071555994 R rec 91d52324-e38c-4bd4-ab22-73d9c4736ec7 -2023-07-08 08:20:01.306766 2023-07-08 08:20:01.306785 aidref 07162080X R rec 8d9ff3e1-a0dd-4efd-a70d-3198b3570809 -2023-07-08 08:20:01.423484 2023-07-08 08:20:01.4235 aidref 071960651 R rec ef09ccb9-9a30-4382-bc9a-b2c1d4832b66 -2023-07-08 08:20:01.534555 2023-07-08 08:20:01.534565 aidref 072291826 R rec c08ca322-a4c1-4cef-b3b9-f5624d3e1bdd -2023-07-08 08:20:01.672616 2023-07-08 08:20:01.672627 aidref 073256897 R rec 905bd722-dfff-44bf-8c7e-cef497dd434d -2023-07-08 08:20:01.800535 2023-07-08 08:20:01.80055 aidref 07327822X R rec b5751fb2-7c55-4b70-ab1c-18fcf1e66359 -2023-07-08 08:20:01.922896 2023-07-08 08:20:01.922907 aidref 073281794 R rec fe87d98b-47e6-4887-8b21-dc90ade3e225 -2023-07-08 08:20:02.034239 2023-07-08 08:20:02.034254 aidref 07330235X R rec 97beab62-417c-4e20-9585-c6d6a1f1adfa -2023-07-08 08:20:02.16021 2023-07-08 08:20:02.160226 aidref 073312673 R rec 91da3d8c-08e8-4b7f-94cf-6b5c9b4e5680 -2023-07-08 08:20:02.278652 2023-07-08 08:20:02.278667 aidref 073329673 R rec 438f1908-be8b-44f2-b0ba-501b8e4d2577 -2023-07-08 08:20:02.394858 2023-07-08 08:20:02.394868 aidref 073368989 R rec f2fb494b-cde3-4a61-944c-87b941e3d254 -2023-07-08 08:20:02.503967 2023-07-08 08:20:02.503984 aidref 07338206X R rec db1dfb1f-a08c-48d5-b6d7-4f8e31a69f2d -2023-07-08 08:20:02.621935 2023-07-08 08:20:02.621946 aidref 073432865 R rec d1aa9070-209a-48bb-bac8-37e17bfa832e -2023-07-08 08:20:02.742525 2023-07-08 08:20:02.742538 aidref 073648027 R rec 9b8ee00a-2f54-42eb-bbbf-ff985175520b -2023-07-08 08:20:02.863008 2023-07-08 08:20:02.863025 aidref 073673986 R rec d0e6d6f6-75e4-4c5a-a142-929372dfbfaa -2023-07-08 08:20:02.973208 2023-07-08 08:20:02.973219 aidref 073704199 R rec 223f90a2-57b8-4eec-bd99-85679d25c76d -2023-07-08 08:20:03.082391 2023-07-08 08:20:03.082405 aidref 073875724 R rec adc833b8-5c95-4d37-8ec8-b3c05971caa8 -2023-07-08 08:20:03.201143 2023-07-08 08:20:03.201157 aidref 073949183 R rec e72a1e45-85af-43cc-8a3a-113ed4f58a5e -2023-07-08 08:20:03.311556 2023-07-08 08:20:03.311569 aidref 074008552 R rec 695a53a9-3afa-47d9-8ed6-dac725277e93 -2023-07-08 08:20:03.418622 2023-07-08 08:20:03.418636 aidref 074011278 R rec f930b07e-0abb-4644-96df-16637fa5d9a3 -2023-07-08 08:20:03.54129 2023-07-08 08:20:03.541301 aidref 074092855 R rec 1636321d-61ee-423d-81c7-2b95e8582e21 -2023-07-08 08:20:03.667445 2023-07-08 08:20:03.667677 aidref 074110217 R rec 7a3f9cfd-284f-4bad-b059-20ecc8a43d87 -2023-07-08 08:20:03.774607 2023-07-08 08:20:03.77462 aidref 074287680 R rec d4bdec59-7b5c-4ac1-b75e-6b5a06e1fe9b -2023-07-08 08:20:03.878612 2023-07-08 08:20:03.878625 aidref 07432389X R rec 2e2f349c-2471-4856-90d6-fed3b33729fd -2023-07-08 08:20:03.984087 2023-07-08 08:20:03.98417 aidref 074552996 R rec 1b914204-1846-4650-922c-16d308737d3b -2023-07-08 08:20:04.094668 2023-07-08 08:20:04.094685 aidref 074594788 R rec 07521269-0664-4955-8b42-23503463bd01 -2023-07-08 08:20:04.222149 2023-07-08 08:20:04.222161 aidref 075029189 R rec 5d850876-0495-47fd-8a5f-aa9f9b72f459 -2023-07-08 08:20:04.381128 2023-07-08 08:20:04.381143 aidref 07505924X R rec 573f7c89-777a-4468-9b5c-c38dda12e608 -2023-07-08 08:20:04.522547 2023-07-08 08:20:04.522563 aidref 075103672 R rec ed2d8b6b-72c3-4b99-ac63-5dd9044bd211 -2023-07-08 08:20:04.657504 2023-07-08 08:20:04.657519 aidref 075129094 R rec 805670fb-bd80-4492-ad3a-99ede8a9682c -2023-07-08 08:20:04.778144 2023-07-08 08:20:04.778154 aidref 075134438 R rec 1b0ef3c1-b428-41f5-bc48-cc2493ec606d -2023-07-08 08:20:04.892151 2023-07-08 08:20:04.892167 aidref 075146975 R rec ac02289c-8907-4619-855d-4f581c1ee3aa -2023-07-08 08:20:05.009984 2023-07-08 08:20:05.01 aidref 075434008 R rec 9777b140-9062-4a18-a584-cfcb5cc71b36 -2023-07-08 08:20:05.164528 2023-07-08 08:20:05.164539 aidref 075435179 R rec 08ce9548-cc21-4798-8dfc-6c98e09f49e4 -2023-07-08 08:20:05.309034 2023-07-08 08:20:05.309055 aidref 075612178 R rec 751eebd2-4d05-4693-a284-c85436cc5efb -2023-07-08 08:20:05.433253 2023-07-08 08:20:05.433266 aidref 075690632 R rec d66c1469-9053-411f-a87d-c11471e6fcb4 -2023-07-08 08:20:05.542815 2023-07-08 08:20:05.542826 aidref 075866307 R rec b619d351-cf55-42ff-b310-95925a0e84b6 -2023-07-08 08:20:05.677155 2023-07-08 08:20:05.677161 aidref 075899655 R rec 474f63b5-9b07-4ea0-bf6a-86c5208391de -2023-07-08 08:20:05.843584 2023-07-08 08:20:05.84359 aidref 075912872 R rec ad32db52-0e7f-4cf7-ad2c-09f24817f8c5 -2023-07-08 08:20:05.940271 2023-07-08 08:20:05.940276 aidref 075964686 R rec a8869615-8b17-4656-82c6-07f5a2f15f26 -2023-07-08 08:20:06.027113 2023-07-08 08:20:06.027118 aidref 076007316 R rec 1a719fa2-1d1a-41a6-954f-3e4215dcddab -2023-07-08 08:20:06.114944 2023-07-08 08:20:06.11495 aidref 076054241 R rec 917d6acb-3702-4d34-924a-99ef8736fdda -2023-07-08 08:20:06.188238 2023-07-08 08:20:06.188244 aidref 076340384 R rec 3861a1a0-c9ca-44a0-90a0-6dc0ccb2f61f -2023-07-08 08:20:06.261672 2023-07-08 08:20:06.261677 aidref 076418731 R rec 7bf2d10e-629d-45aa-8dea-67d57e22da01 -2023-07-08 08:20:06.364348 2023-07-08 08:20:06.364354 aidref 076680819 R rec 71c5d696-4865-42c6-a018-04eb59d73581 -2023-07-08 08:20:06.459736 2023-07-08 08:20:06.459747 aidref 076709116 R rec d648b591-c889-4f1f-a004-9bd7f881cbed -2023-07-08 08:20:06.555859 2023-07-08 08:20:06.555862 aidref 076721256 R rec 3abfb648-67ed-476f-aa9f-f5f11ac60623 -2023-07-08 08:20:06.633702 2023-07-08 08:20:06.633708 aidref 076752054 R rec 10618cc3-97c6-4985-bb87-b8f8e95367f1 -2023-07-08 08:20:06.724294 2023-07-08 08:20:06.72431 aidref 076905470 R rec a0fc73b3-2c78-44d4-9b50-eaeab2bbe5ec -2023-07-08 08:20:06.831619 2023-07-08 08:20:06.831625 aidref 076968537 R rec 293498f5-792b-4646-9be0-7aa01e504e96 -2023-07-08 08:20:06.919474 2023-07-08 08:20:06.91948 aidref 077006453 R rec 29048f2e-5381-4523-a3ba-55b2051438dd -2023-07-08 08:20:06.996758 2023-07-08 08:20:06.996769 aidref 077053869 R rec 7f5e6d73-68e5-457d-8664-47985553f3d8 -2023-07-08 08:20:07.096725 2023-07-08 08:20:07.096731 aidref 077119428 R rec 06362bf7-e54b-4b9b-9ced-afba139a7785 -2023-07-08 08:20:07.191055 2023-07-08 08:20:07.191066 aidref 077143043 R rec 2206de12-e57e-44ec-961a-a8726d37aff4 -2023-07-08 08:20:07.28244 2023-07-08 08:20:07.282459 aidref 077162617 R rec 83a3ee79-4327-471e-8897-c7305eeac38b -2023-07-08 08:20:07.356553 2023-07-08 08:20:07.356558 aidref 077335996 R rec da2b384f-0180-4019-b87a-0fae9c4d79d9 -2023-07-08 08:20:07.424977 2023-07-08 08:20:07.424982 aidref 07733826X R rec dda47faf-a3df-4204-9194-4ff7fb09869d -2023-07-08 08:20:07.511223 2023-07-08 08:20:07.511228 aidref 077342097 R rec efea17d8-c7dd-424a-890f-5c3719b3d4a9 -2023-07-08 08:20:07.581589 2023-07-08 08:20:07.581594 aidref 07741084X R rec c8e0e9b9-4ea5-4461-a832-d5e11f8706c4 -2023-07-08 08:20:07.667464 2023-07-08 08:20:07.667469 aidref 077437209 R rec a011ce96-3186-4528-95e5-07db486622bc -2023-07-08 08:20:07.744248 2023-07-08 08:20:07.744258 aidref 077446534 R rec fb77963e-a3bc-4022-b078-e121a50318b4 -2023-07-08 08:20:07.848463 2023-07-08 08:20:07.848469 aidref 07750528X R rec 25a45412-92d2-45c0-a84b-b70bb66a29e5 -2023-07-08 08:20:07.937623 2023-07-08 08:20:07.937628 aidref 077763009 R rec 5fec3af9-9ea9-4a23-b6cd-e8336d01d395 -2023-07-08 08:20:08.020452 2023-07-08 08:20:08.020463 aidref 077775430 R rec c84d97ea-9e5c-4c15-98e7-9719d8f1aaac -2023-07-08 08:20:08.125094 2023-07-08 08:20:08.125106 aidref 077813138 R rec 0fc2b47a-8f03-4b5f-8ab4-3577d39d4276 -2023-07-08 08:20:08.230106 2023-07-08 08:20:08.23011 aidref 078038766 R rec 000370a4-2e7b-4613-b132-fdbb3de4a457 -2023-07-08 08:20:08.31443 2023-07-08 08:20:08.314436 aidref 078054982 R rec 42379c54-3402-4945-b193-f9786eb880f4 -2023-07-08 08:20:08.400038 2023-07-08 08:20:08.400052 aidref 078075467 R rec 556813fc-dee5-4a9a-9580-80b8da602785 -2023-07-08 08:20:08.504054 2023-07-08 08:20:08.504057 aidref 078076641 R rec 0892ec7a-260d-4347-b4ad-4e69a4b88c42 -2023-07-08 08:20:08.574725 2023-07-08 08:20:08.574731 aidref 078079330 R rec cfa5eb63-aeaa-4f4b-95f1-76d1d8c886d2 -2023-07-08 08:20:08.644145 2023-07-08 08:20:08.64415 aidref 078118948 R rec 22e49685-0d09-4b26-b0ee-8d96efd6444a -2023-07-08 08:20:08.719432 2023-07-08 08:20:08.719438 aidref 078185556 R rec 378b61a6-b6a1-4a80-a305-4e6129d1723b -2023-07-08 08:20:08.791103 2023-07-08 08:20:08.791108 aidref 078607078 R rec f8e84753-c5d8-4945-925f-d273b99dd1c9 -2023-07-08 08:20:08.871771 2023-07-08 08:20:08.871777 aidref 078619505 R rec 7aee6e44-9fb5-4079-9028-e39127d82fd2 -2023-07-08 08:20:08.941421 2023-07-08 08:20:08.941426 aidref 078640997 R rec 26d6ad5f-e515-44d7-8462-276a32f99c6f -2023-07-08 08:20:09.02148 2023-07-08 08:20:09.021485 aidref 078763487 R rec b6b5650c-2dfc-4386-8ebc-3d7738ddb784 -2023-07-08 08:20:09.094434 2023-07-08 08:20:09.094443 aidref 078835089 R rec b82363d0-2af6-4085-bc11-4f398c605f26 -2023-07-08 08:20:09.164511 2023-07-08 08:20:09.164517 aidref 078835186 R rec ae56b421-73c6-4e59-93a7-61c513d38cf1 -2023-07-08 08:20:09.24999 2023-07-08 08:20:09.250001 aidref 079020933 R rec 05217ed2-ba6d-46a1-9afb-f636f89feab6 -2023-07-08 08:20:09.343406 2023-07-08 08:20:09.343413 aidref 07904011X R rec 56af93bb-48c9-47fd-8dbd-6e4bb7b954fd -2023-07-08 08:20:09.430993 2023-07-08 08:20:09.430999 aidref 079112943 R rec c840a73b-66da-4680-9085-11072bcb3299 -2023-07-08 08:20:09.539278 2023-07-08 08:20:09.539284 aidref 079151639 R rec 568f9b33-5b8e-4bd4-9d41-15667e630b58 -2023-07-08 08:20:09.621293 2023-07-08 08:20:09.621304 aidref 079157106 R rec 43beb76c-247e-45cc-8f16-8c03c44bf082 -2023-07-08 08:20:09.719643 2023-07-08 08:20:09.71966 aidref 07925814X R rec 601ee920-eb7a-4192-92e1-b12c074f687f -2023-07-08 08:20:09.813089 2023-07-08 08:20:09.813095 aidref 079303315 R rec 0fa1dfd4-926b-49fe-9d5e-2f55a4408bac -2023-07-08 08:20:09.906994 2023-07-08 08:20:09.907009 aidref 079436870 R rec 8d63fb73-e344-4c90-96af-84e5ccabdb43 -2023-07-08 08:20:10.009173 2023-07-08 08:20:10.009188 aidref 07948901X R rec bbb8e964-d5f1-4f73-b090-91834b824508 -2023-07-08 08:20:10.101386 2023-07-08 08:20:10.101396 aidref 079506151 R rec 4bb5487a-874b-4344-9238-2292c5c9535a -2023-07-08 08:20:10.194805 2023-07-08 08:20:10.194815 aidref 079550746 R rec 44d3dec7-80f3-4edf-95c2-376984159f22 -2023-07-08 08:20:10.271663 2023-07-08 08:20:10.271671 aidref 079890849 R rec 322dbc97-eb28-46c7-a79b-2e4df1f9200e -2023-07-08 08:20:10.348575 2023-07-08 08:20:10.348591 aidref 07992056X R rec deca1141-a95b-4d0c-838d-b129c0c87ade -2023-07-08 08:20:10.433358 2023-07-08 08:20:10.433369 aidref 080088325 R rec d7c2ab76-f1e2-45ad-adb4-eecc5d937623 -2023-07-08 08:20:10.518178 2023-07-08 08:20:10.518184 aidref 080102859 R rec 6b6c4578-028a-453a-bb26-1a026e02fbac -2023-07-08 08:20:10.594824 2023-07-08 08:20:10.594836 aidref 08013484X R rec ebecdbf4-bc8b-4108-9d7f-39e3eb3bae53 -2023-07-08 08:20:10.679242 2023-07-08 08:20:10.679247 aidref 080152503 R rec 7dcaf933-929b-44ae-a405-e5fee9798137 -2023-07-08 08:20:10.781051 2023-07-08 08:20:10.781062 aidref 080164994 R rec 228c4dd5-8cb8-42e2-b185-1362195dc753 -2023-07-08 08:20:10.873477 2023-07-08 08:20:10.873489 aidref 08018734X R rec a85dfe3f-7820-4387-a18d-4564b6668149 -2023-07-08 08:20:10.988099 2023-07-08 08:20:10.98811 aidref 080307426 R rec b70bbe73-9839-4290-8625-cf9bdd3d7f9c -2023-07-08 08:20:11.08085 2023-07-08 08:20:11.080856 aidref 080487238 R rec c0ddc394-c060-4319-be76-97cb93a1b86c -2023-07-08 08:20:11.177007 2023-07-08 08:20:11.177017 aidref 080529712 R rec 2fa97918-33e9-4c52-8bfa-86baa46f6561 -2023-07-08 08:20:11.277207 2023-07-08 08:20:11.277222 aidref 080557732 R rec e32af767-433c-47f3-9da3-5cf00c44aabd -2023-07-08 08:20:11.362409 2023-07-08 08:20:11.362419 aidref 080577350 R rec 0818edba-a87e-43ff-8a27-eba2b9ea94d7 -2023-07-08 08:20:11.44896 2023-07-08 08:20:11.448972 aidref 080596649 R rec c582cdc7-8c29-41a3-a256-80e3434fb0d2 -2023-07-08 08:20:11.542693 2023-07-08 08:20:11.542698 aidref 080608825 R rec 77994d73-7cb2-4067-a8c3-bfa84e538475 -2023-07-08 08:20:11.645489 2023-07-08 08:20:11.645499 aidref 080622151 R rec 9a40a533-bedc-4621-b75f-ba7b453b7c12 -2023-07-08 08:20:11.750887 2023-07-08 08:20:11.750903 aidref 080641024 R rec e5701eba-bacf-43fa-bcc0-d01d380dc782 -2023-07-08 08:20:11.832386 2023-07-08 08:20:11.832392 aidref 080647359 R rec 916ce665-4824-40d6-83df-b3f52520df8a -2023-07-08 08:20:11.909346 2023-07-08 08:20:11.909361 aidref 080678971 R rec dc9f47c1-de1b-4d70-843a-947ba6b9666d -2023-07-08 08:20:12.009527 2023-07-08 08:20:12.009548 aidref 080683851 R rec 4a3814ed-47d9-4f54-90ef-da3179c53c21 -2023-07-08 08:20:12.125374 2023-07-08 08:20:12.12538 aidref 080722555 R rec 6b7daa24-9366-499d-b7eb-a6b622228a56 -2023-07-08 08:20:12.230296 2023-07-08 08:20:12.230306 aidref 080824072 R rec adb22339-6e0a-43e9-bb4d-04e8af6a48e5 -2023-07-08 08:20:12.319203 2023-07-08 08:20:12.319214 aidref 080923690 R rec 17e1aade-c6cc-49db-aa77-980c2d09ee56 -2023-07-08 08:20:12.414463 2023-07-08 08:20:12.414468 aidref 081103131 R rec b10f3449-295c-4173-b5c0-8150f7ec44fc -2023-07-08 08:20:12.50844 2023-07-08 08:20:12.50845 aidref 081199392 R rec 4423aab6-3918-453e-b150-19a5d8e5f3c4 -2023-07-08 08:20:12.598581 2023-07-08 08:20:12.598586 aidref 081232683 R rec 2dbe017a-03ca-4f50-8972-1fb23d9a7e54 -2023-07-08 08:20:12.693573 2023-07-08 08:20:12.693588 aidref 081271395 R rec 6a3eb4b2-4a20-4a37-8b0d-2475def36bc1 -2023-07-08 08:20:12.787865 2023-07-08 08:20:12.787877 aidref 081311249 R rec 26aeabac-54b2-4719-937d-b9f3d0f20f30 -2023-07-08 08:20:12.874959 2023-07-08 08:20:12.874974 aidref 081402880 R rec 863f67b1-033c-459c-afde-41e4ca44b440 -2023-07-08 08:20:12.969176 2023-07-08 08:20:12.969187 aidref 081435827 R rec a04e821b-1ee2-49d6-9de2-34730c0e1f1f -2023-07-08 08:20:13.053606 2023-07-08 08:20:13.053617 aidref 081436351 R rec d887da01-5e5b-4735-86af-848683ba6121 -2023-07-08 08:20:13.141715 2023-07-08 08:20:13.14173 aidref 08147475X R rec a1eefea4-b725-4e2e-863b-b9d42384e36e -2023-07-08 08:20:13.230335 2023-07-08 08:20:13.230342 aidref 081544693 R rec 8df4a4d7-4ed1-470b-ba55-b5263228b7b7 -2023-07-08 08:20:13.312009 2023-07-08 08:20:13.312015 aidref 081600356 R rec d3e47265-118b-4ea5-8fdb-46260a5dd9e2 -2023-07-08 08:20:13.39218 2023-07-08 08:20:13.392196 aidref 081609558 R rec e7d0459b-fffe-411b-8eb2-88e717df94b3 -2023-07-08 08:20:13.480623 2023-07-08 08:20:13.480627 aidref 081719752 R rec 0a6d7b0b-1ba1-41b7-8291-82c925728d3a -2023-07-08 08:20:13.567805 2023-07-08 08:20:13.567815 aidref 081801793 R rec 5de01010-a5a3-4221-bf0a-3f5543100c95 -2023-07-08 08:20:13.66372 2023-07-08 08:20:13.663725 aidref 081895046 R rec d1f35300-2cdc-4851-abde-798d864fb4f5 -2023-07-08 08:20:13.76717 2023-07-08 08:20:13.767181 aidref 082025398 R rec 27b3de93-8dd6-48cf-9e1f-000fd617c871 -2023-07-08 08:20:13.865859 2023-07-08 08:20:13.865871 aidref 082057826 R rec 33ba0322-dece-4aeb-808a-b984a97633b0 -2023-07-08 08:20:13.953634 2023-07-08 08:20:13.953648 aidref 082085072 R rec df9277fe-8b99-4e9b-b869-cebf35e278f4 -2023-07-08 08:20:14.047241 2023-07-08 08:20:14.047247 aidref 082091943 R rec 351783b1-a9b7-4c4f-83a9-49f91dfd3051 -2023-07-08 08:20:14.150446 2023-07-08 08:20:14.150456 aidref 082116008 R rec ca298eb2-3e06-481e-9474-a1b05cdad8e5 -2023-07-08 08:20:14.236235 2023-07-08 08:20:14.236251 aidref 082333173 R rec 307710b7-64fd-4e15-8a88-8792604a65d4 -2023-07-08 08:20:14.348495 2023-07-08 08:20:14.34851 aidref 082560757 R rec 7e4abdeb-4dda-43bb-bee6-be28a059966b -2023-07-08 08:20:14.476235 2023-07-08 08:20:14.476242 aidref 082609675 R rec 7da1cf06-2674-473b-ab33-68170357746e -2023-07-08 08:20:14.589873 2023-07-08 08:20:14.589878 aidref 082702446 R rec a70ab9b5-3930-445b-872c-655f917bcd15 -2023-07-08 08:20:14.684782 2023-07-08 08:20:14.684792 aidref 083069119 R rec da62907d-02f3-4302-98ef-00eca1bab26b -2023-07-08 08:20:14.7943 2023-07-08 08:20:14.79431 aidref 083194037 R rec 9458a958-37e6-43a5-a265-44dfabf6af94 -2023-07-08 08:20:14.886365 2023-07-08 08:20:14.886377 aidref 083221689 R rec c93b044a-d564-4f17-9e53-018f1ca64d5a -2023-07-08 08:20:14.979012 2023-07-08 08:20:14.979017 aidref 083252819 R rec 78b8a950-55f6-49fc-8e8a-94e65d414c89 -2023-07-08 08:20:15.068115 2023-07-08 08:20:15.06813 aidref 083373365 R rec 22cff0f1-156c-4dd3-a439-401cb5b57323 -2023-07-08 08:20:15.160961 2023-07-08 08:20:15.160973 aidref 083467815 R rec 281e0167-8aa0-4ea1-85cb-dfbe68953559 -2023-07-08 08:20:15.245726 2023-07-08 08:20:15.245731 aidref 083488790 R rec 4279871f-aab1-4e92-bd0a-5b359848336a -2023-07-08 08:20:15.3343 2023-07-08 08:20:15.334305 aidref 083493778 R rec 0db5a466-da70-490d-913a-b50b2534813a -2023-07-08 08:20:15.406612 2023-07-08 08:20:15.406626 aidref 083553843 R rec 918f25f6-4949-463a-8b67-ba3f7dfab006 -2023-07-08 08:20:15.496249 2023-07-08 08:20:15.496255 aidref 083568077 R rec a61f4980-a709-498a-8622-f91c16d50332 -2023-07-08 08:20:15.588896 2023-07-08 08:20:15.588902 aidref 083580522 R rec 37591088-0ff6-49e1-b4a8-bd300b7a1438 -2023-07-08 08:20:15.683727 2023-07-08 08:20:15.683737 aidref 083680683 R rec 7d3048ec-168c-4039-a82d-f4088f61e5c6 -2023-07-08 08:20:15.784583 2023-07-08 08:20:15.784594 aidref 083712941 R rec 7424ae40-1609-4e61-a018-0ee58d7c462e -2023-07-08 08:20:15.868827 2023-07-08 08:20:15.868838 aidref 083715789 R rec a237bf1c-0eaf-47b4-ae15-5b79bf494d89 -2023-07-08 08:20:15.958393 2023-07-08 08:20:15.958408 aidref 083726861 R rec ec29d574-6ca8-437d-8636-83d9afff8bd8 -2023-07-08 08:20:16.057047 2023-07-08 08:20:16.057063 aidref 083737499 R rec 7716111c-a668-4891-a314-38dfc81b7b10 -2023-07-08 08:20:16.159449 2023-07-08 08:20:16.159464 aidref 083767827 R rec b6fb8b8d-9da4-4e38-b683-336a515eaf5d -2023-07-08 08:20:16.276186 2023-07-08 08:20:16.276201 aidref 083843361 R rec 3c1f3ff9-a545-444b-a8e0-2b477502eb53 -2023-07-08 08:20:16.370585 2023-07-08 08:20:16.370598 aidref 083843981 R rec 794de230-a3ec-4bed-ab2f-2550bcc7384e -2023-07-08 08:20:16.449057 2023-07-08 08:20:16.449142 aidref 083885463 R rec d02609f0-0019-42d8-97c7-aed7dfe1688c -2023-07-08 08:20:16.543794 2023-07-08 08:20:16.543799 aidref 083928715 R rec 2695b2f8-9a45-4603-86f9-3453c4deb2ca -2023-07-08 08:20:16.633608 2023-07-08 08:20:16.633622 aidref 083961488 R rec 1167a5e8-59c5-474f-ab81-9cf9625ce131 -2023-07-08 08:20:16.71011 2023-07-08 08:20:16.71012 aidref 083970592 R rec 425f52a0-6ddf-459b-a5ce-85a7c2f508d7 -2023-07-08 08:20:16.787449 2023-07-08 08:20:16.78746 aidref 084028750 R rec 60e933b1-b355-4959-abc3-b8ebf3653fc8 -2023-07-08 08:20:16.870056 2023-07-08 08:20:16.870062 aidref 084029463 R rec d8b7fb1e-9bd6-48f8-9d77-2a2b7760054b -2023-07-08 08:20:16.937454 2023-07-08 08:20:16.937459 aidref 084037407 R rec 2e1f1b56-51c9-467e-931b-ee11ce0a6409 -2023-07-08 08:20:17.020129 2023-07-08 08:20:17.020134 aidref 084062320 R rec cea66064-03be-42ed-a6e8-ab849c34b074 -2023-07-08 08:20:17.106089 2023-07-08 08:20:17.1061 aidref 084074752 R rec ed2e98a8-2a22-445b-a470-52bbc79eadf1 -2023-07-08 08:20:17.201373 2023-07-08 08:20:17.201384 aidref 084147385 R rec 410da261-729c-4802-8e9c-0724f753907b -2023-07-08 08:20:17.287337 2023-07-08 08:20:17.287349 aidref 084324856 R rec 5678486a-75ba-4d54-b8b7-c2cfd91e8406 -2023-07-08 08:20:17.375553 2023-07-08 08:20:17.375565 aidref 08433293X R rec 9a544c4c-dd09-4b59-939d-4b998e08f52a -2023-07-08 08:20:17.467307 2023-07-08 08:20:17.467322 aidref 084346450 R rec 9f2d4a08-fffa-415e-a6c9-c996ed4bbea7 -2023-07-08 08:20:17.567791 2023-07-08 08:20:17.567796 aidref 084531029 R rec 217724f9-9d53-4c0c-ba35-b534f692275f -2023-07-08 08:20:17.654886 2023-07-08 08:20:17.654897 aidref 084675810 R rec f13d9e32-94f2-4510-bf32-7f4cf34e38e0 -2023-07-08 08:20:17.746951 2023-07-08 08:20:17.74696 aidref 084728949 R rec d1e9ca23-67b6-484b-8a77-a8e8095c549c -2023-07-08 08:20:17.840473 2023-07-08 08:20:17.840476 aidref 085001392 R rec 43d8fc46-e18c-4f0b-b10a-5e53d9227131 -2023-07-08 08:20:17.917089 2023-07-08 08:20:17.917102 aidref 085232629 R rec c102ee7b-f63f-48f7-8874-df0ee86015b4 -2023-07-08 08:20:18.01465 2023-07-08 08:20:18.014655 aidref 085232815 R rec d314cd8a-e98e-4491-8391-db9c4e9ea282 -2023-07-08 08:20:18.104303 2023-07-08 08:20:18.104315 aidref 085535621 R rec 9a1dd2e2-322d-41c8-9999-8eefe7ce52e4 -2023-07-08 08:20:18.191093 2023-07-08 08:20:18.191108 aidref 085598143 R rec 465027a0-0ece-418c-82d7-d22aecc88f99 -2023-07-08 08:20:18.294455 2023-07-08 08:20:18.29446 aidref 085617598 R rec b5abb4bd-e477-4b29-9a6d-04ff7ae0d92f -2023-07-08 08:20:18.378284 2023-07-08 08:20:18.378289 aidref 085647640 R rec c6859c61-0564-4671-8ede-7849ffcdc048 -2023-07-08 08:20:18.478791 2023-07-08 08:20:18.478797 aidref 085731390 R rec 7b68b208-47e4-4727-b7f6-9eed428cc242 -2023-07-08 08:20:18.565769 2023-07-08 08:20:18.565775 aidref 085825069 R rec 2e42f631-b3ca-489c-9807-7e1a4365afae -2023-07-08 08:20:18.673903 2023-07-08 08:20:18.673914 aidref 085826367 R rec bb3b7d38-9a1d-49a4-852d-0c39d654b6aa -2023-07-08 08:20:18.766657 2023-07-08 08:20:18.766669 aidref 085835943 R rec 96c3b530-3424-4b3a-a990-815ae4524409 -2023-07-08 08:20:18.853218 2023-07-08 08:20:18.853231 aidref 085856525 R rec 3211fbdd-43b6-4093-b2c5-71f38a1fa218 -2023-07-08 08:20:18.948229 2023-07-08 08:20:18.94824 aidref 08589320X R rec 15be064d-7170-437f-b6e8-5fa554df7687 -2023-07-08 08:20:19.047869 2023-07-08 08:20:19.047875 aidref 086019740 R rec ae584c6f-aab7-40af-a768-9dd8aa983213 -2023-07-08 08:20:19.151527 2023-07-08 08:20:19.151539 aidref 086021311 R rec 030c8fb6-dad6-43c3-be9c-19735e092b73 -2023-07-08 08:20:19.254792 2023-07-08 08:20:19.254811 aidref 08602308X R rec c67f5779-28da-4f10-99c0-efd7d130c451 -2023-07-08 08:20:19.35355 2023-07-08 08:20:19.353565 aidref 086069527 R rec a3169627-b47d-42cc-94c7-15c568e61986 -2023-07-08 08:20:19.449861 2023-07-08 08:20:19.449871 aidref 086069888 R rec 39f1a0d6-a192-4127-9364-d2a3c7a74ba4 -2023-07-08 08:20:19.529769 2023-07-08 08:20:19.529773 aidref 08608416X R rec 838de247-8391-42c2-8f1f-5907320f2610 -2023-07-08 08:20:19.608959 2023-07-08 08:20:19.608966 aidref 086094602 R rec 5105f5c6-5739-4135-813b-96b0bbb146d4 -2023-07-08 08:20:19.691205 2023-07-08 08:20:19.691209 aidref 086124641 R rec dff41c56-c937-4e95-ab53-ae305b791ce3 -2023-07-08 08:20:19.766345 2023-07-08 08:20:19.766351 aidref 086139096 R rec 490b18f5-04cd-4969-a9ea-99db44c288e8 -2023-07-08 08:20:19.850109 2023-07-08 08:20:19.850116 aidref 086168312 R rec bb5e987c-dbf4-43a0-a464-806841f982c1 -2023-07-08 08:20:19.932537 2023-07-08 08:20:19.932543 aidref 086232827 R rec ef3656b9-7705-449b-b370-cf2c7249436c -2023-07-08 08:20:20.006424 2023-07-08 08:20:20.006429 aidref 086845659 R rec 00705348-91a7-498e-b23d-dcd979c7580e -2023-07-08 08:20:20.074578 2023-07-08 08:20:20.074586 aidref 086849786 R rec be1c7777-d804-4abc-89ca-c2d9ac26d629 -2023-07-08 08:20:20.14028 2023-07-08 08:20:20.140285 aidref 087190087 R rec 583893c4-73ec-4988-9178-ef535642d31d -2023-07-08 08:20:20.208667 2023-07-08 08:20:20.208672 aidref 087239981 R rec eeabc4bf-387a-43e5-93a1-569f3bf3485d -2023-07-08 08:20:20.281003 2023-07-08 08:20:20.281009 aidref 087402467 R rec 876977f0-c880-4563-a3b7-b1eaab4b9611 -2023-07-08 08:20:20.362016 2023-07-08 08:20:20.362024 aidref 087470659 R rec 8685bd3d-1b94-4df5-b878-ac0be88f6d05 -2023-07-08 08:20:20.458179 2023-07-08 08:20:20.458192 aidref 087504146 R rec 6a60de8d-9571-4124-8f90-5c731a868342 -2023-07-08 08:20:20.54993 2023-07-08 08:20:20.549934 aidref 087535300 R rec 7cb535bb-6467-4090-bd24-79d141a50e8e -2023-07-08 08:20:20.644203 2023-07-08 08:20:20.644217 aidref 087635585 R rec 94af72ce-d145-4f49-89cb-c3afc8cd5220 -2023-07-08 08:20:20.73588 2023-07-08 08:20:20.735886 aidref 087649535 R rec 690f5adb-d0a6-4157-a10a-3f2b5f3051d4 -2023-07-08 08:20:20.831455 2023-07-08 08:20:20.831461 aidref 087823535 R rec d03c7568-9c2c-4d55-a9c5-e4be92778506 -2023-07-08 08:20:20.932277 2023-07-08 08:20:20.932288 aidref 087958686 R rec 828ebf94-39ba-45e7-90a0-3b32d722d152 -2023-07-08 08:20:21.021197 2023-07-08 08:20:21.021215 aidref 088014029 R rec 65236c44-1e23-4d71-aec7-413f5113f9f7 -2023-07-08 08:20:21.120009 2023-07-08 08:20:21.12002 aidref 088042944 R rec a47a55b9-4558-4531-b39f-9d75b479932c -2023-07-08 08:20:21.231197 2023-07-08 08:20:21.231204 aidref 088082776 R rec 37a54b94-b5c7-4e53-904b-d2f5211ece43 -2023-07-08 08:20:21.332047 2023-07-08 08:20:21.332052 aidref 088088944 R rec ee1f5ba4-18d4-4087-bc43-634d759c515d -2023-07-08 08:20:21.405078 2023-07-08 08:20:21.405097 aidref 088106926 R rec 8147a4cb-2bf2-480c-97f9-a9451ec0f251 -2023-07-08 08:20:21.499675 2023-07-08 08:20:21.49968 aidref 088397599 R rec e72b4a24-b5dd-4e7e-9090-ff89442bcb50 -2023-07-08 08:20:21.59226 2023-07-08 08:20:21.592271 aidref 088404587 R rec 594546bb-ba58-46c5-912f-faea5d97c542 -2023-07-08 08:20:21.685433 2023-07-08 08:20:21.685445 aidref 088453022 R rec 50c8c0ac-3261-405b-afb0-2503a30ee2f4 -2023-07-08 08:20:21.777744 2023-07-08 08:20:21.777754 aidref 088540235 R rec fd00cd08-3a7d-4d6c-ba92-228308214e8d -2023-07-08 08:20:21.877547 2023-07-08 08:20:21.877557 aidref 08870078X R rec 689b4e58-6e46-4406-915c-3e9323d1678d -2023-07-08 08:20:21.965481 2023-07-08 08:20:21.965492 aidref 08871246X R rec e3b87ab1-edb4-491a-8c53-72a9c63bc5af -2023-07-08 08:20:22.04761 2023-07-08 08:20:22.047618 aidref 08875975X R rec f9fece06-5244-4a30-a39f-1728dc98706e -2023-07-08 08:20:22.120284 2023-07-08 08:20:22.120289 aidref 08880058X R rec 79211c27-8fb8-4a21-8f76-855be051fda6 -2023-07-08 08:20:22.19177 2023-07-08 08:20:22.191776 aidref 088888177 R rec eb6b9e3c-d03b-4af7-9ede-8496cfb2a701 -2023-07-08 08:20:22.265064 2023-07-08 08:20:22.265069 aidref 088920763 R rec 2414ba99-04c0-4e3a-a270-4eda61370d4a -2023-07-08 08:20:22.339307 2023-07-08 08:20:22.339313 aidref 088945332 R rec 5e4656b3-5304-4eb6-8dc0-254d5e43bcd0 -2023-07-08 08:20:22.43428 2023-07-08 08:20:22.434286 aidref 088984141 R rec bb99cafd-a9fa-464a-bda2-9c7a9c6d512e -2023-07-08 08:20:22.504498 2023-07-08 08:20:22.504503 aidref 088997464 R rec 78771837-11be-4cc0-ac3c-86d6d9606a4b -2023-07-08 08:20:22.583512 2023-07-08 08:20:22.583519 aidref 089425596 R rec eb735289-f895-49e8-9733-0ebc8ef010e6 -2023-07-08 08:20:22.653857 2023-07-08 08:20:22.653862 aidref 089443675 R rec 8911aed8-921e-49b8-adc7-14bfe6254549 -2023-07-08 08:20:22.728776 2023-07-08 08:20:22.728784 aidref 090159225 R rec 69738443-bb17-43a1-82e2-57393c68d348 -2023-07-08 08:20:22.79856 2023-07-08 08:20:22.798566 aidref 09042333X R rec 000ec8f1-c426-42fd-9df6-98728ac6a95b -2023-07-08 08:20:22.864115 2023-07-08 08:20:22.86412 aidref 091257174 R rec a2cc3cf8-39f4-4678-b3c1-e3e2b1b94736 -2023-07-08 08:20:22.936077 2023-07-08 08:20:22.936084 aidref 091546230 R rec 816a288a-b8a2-41df-bd19-7878cf4c70a4 -2023-07-08 08:20:23.007853 2023-07-08 08:20:23.007858 aidref 092002781 R rec e0775d77-6a19-4798-ae26-19149ceb8dbe -2023-07-08 08:20:23.0834 2023-07-08 08:20:23.083406 aidref 092098649 R rec 5ea2c224-8844-4830-a041-d2888e255516 -2023-07-08 08:20:23.153015 2023-07-08 08:20:23.153021 aidref 092124356 R rec d3c26b14-840c-4b1e-a24e-bba2c3a8ee53 -2023-07-08 08:20:23.228261 2023-07-08 08:20:23.22827 aidref 092149561 R rec 691c6ffc-1373-4c77-bd76-6c25ccc0b8aa -2023-07-08 08:20:23.297527 2023-07-08 08:20:23.297532 aidref 092241549 R rec f82fcee4-993b-4e37-ac7a-666ff9cbe1a4 -2023-07-08 08:20:23.370245 2023-07-08 08:20:23.370251 aidref 092249760 R rec 1666429f-b4af-4f1f-9a72-424d58daefc6 -2023-07-08 08:20:23.442254 2023-07-08 08:20:23.44226 aidref 092359116 R rec 4445f2c6-a6fa-4dea-acb1-69a2f3cbcecf -2023-07-08 08:20:23.519271 2023-07-08 08:20:23.519276 aidref 092613314 R rec 7696b6ea-c782-49a1-9505-928d2d5192ce -2023-07-08 08:20:23.596184 2023-07-08 08:20:23.596191 aidref 092699987 R rec 66146199-a0cb-4044-b492-26507d374410 -2023-07-08 08:20:23.667032 2023-07-08 08:20:23.667037 aidref 092726542 R rec 016c112d-aca6-452c-a23a-9be95948dd1a -2023-07-08 08:20:23.740632 2023-07-08 08:20:23.740637 aidref 092792642 R rec ce37f78f-cef9-4eb1-bcd3-d77608f96c45 -2023-07-08 08:20:23.814575 2023-07-08 08:20:23.814581 aidref 092846653 R rec f697d82d-98c6-471e-8015-128fe50b592f -2023-07-08 08:20:23.882905 2023-07-08 08:20:23.882911 aidref 093834470 R rec f8e417fc-04ff-42f8-8d71-091b409d18d3 -2023-07-08 08:20:23.949016 2023-07-08 08:20:23.949021 aidref 09396997X R rec 07879842-eede-475a-9aaf-854139a47c20 -2023-07-08 08:20:24.016662 2023-07-08 08:20:24.016667 aidref 094133344 R rec 94ed9404-a1c8-49ba-afd7-a9fb2117e0d0 -2023-07-08 08:20:24.087467 2023-07-08 08:20:24.087472 aidref 094225230 R rec f401e57e-aeb6-42ff-90e8-6104671365e4 -2023-07-08 08:20:24.158078 2023-07-08 08:20:24.158083 aidref 09433434X R rec be2d06ff-f348-4cf0-b8fc-00f6c85235b9 -2023-07-08 08:20:24.230702 2023-07-08 08:20:24.230708 aidref 094460922 R rec a0ee3f48-f265-4924-8b53-4436e413eaa7 -2023-07-08 08:20:24.304514 2023-07-08 08:20:24.304518 aidref 094563152 R rec c94f79fa-b24f-49ce-8e0a-bd733c55e77e -2023-07-08 08:20:24.37902 2023-07-08 08:20:24.379027 aidref 094648980 R rec 0a12e79d-24e6-4761-8586-e213770cc30d -2023-07-08 08:20:24.449294 2023-07-08 08:20:24.4493 aidref 095038426 R rec 18a40e65-59fb-46de-bf1f-0837c777b99b -2023-07-08 08:20:24.523666 2023-07-08 08:20:24.523671 aidref 095087044 R rec d1029c9a-7fcc-451f-8347-93f643645c48 -2023-07-08 08:20:24.611152 2023-07-08 08:20:24.611157 aidref 09512795X R rec af59a334-10fc-4e52-9e52-1e69fb4c707d -2023-07-08 08:20:24.69186 2023-07-08 08:20:24.691868 aidref 095171738 R rec 5500e8f9-d704-4863-a573-50e19492d872 -2023-07-08 08:20:24.761759 2023-07-08 08:20:24.761764 aidref 095227415 R rec c03a8826-8da9-4381-91b2-c7d6c36b245b -2023-07-08 08:20:24.836108 2023-07-08 08:20:24.836114 aidref 095344691 R rec 8cbb14fd-07a3-48b1-86d3-764d4b27c1d2 -2023-07-08 08:20:24.906982 2023-07-08 08:20:24.906988 aidref 09564766X R rec 1636cb90-7d8f-487c-b1af-7bf047da24b0 -2023-07-08 08:20:24.988752 2023-07-08 08:20:24.988758 aidref 095775757 R rec 1da5d69a-1998-4cf4-8615-f240a83b7214 -2023-07-08 08:20:25.085398 2023-07-08 08:20:25.085406 aidref 095813225 R rec ad1b8e3a-11a9-45a1-b0f1-041822dd284e -2023-07-08 08:20:25.152734 2023-07-08 08:20:25.152739 aidref 095998160 R rec 994621f4-c09e-4f8c-ab86-201028587973 -2023-07-08 08:20:25.217647 2023-07-08 08:20:25.217652 aidref 096644389 R rec 89c3e998-fc54-488a-8206-84401d94ed55 -2023-07-08 08:20:25.281783 2023-07-08 08:20:25.281788 aidref 09715010X R rec 408752ef-bdf8-44ba-92f6-31307871c75a -2023-07-08 08:20:25.348416 2023-07-08 08:20:25.348422 aidref 097502146 R rec d40bb623-4fe6-4753-a28f-517d6143972f -2023-07-08 08:20:25.417003 2023-07-08 08:20:25.417008 aidref 097587222 R rec 0daf5a07-c410-4914-a4ba-fca3ea017d3b -2023-07-08 08:20:25.507806 2023-07-08 08:20:25.507825 aidref 09794226X R rec 6a28130b-1845-458e-88ac-6be6c57ae9d1 -2023-07-08 08:20:25.611051 2023-07-08 08:20:25.611057 aidref 098214381 R rec 56a75424-758d-4339-8077-723d3f6a7740 -2023-07-08 08:20:25.707135 2023-07-08 08:20:25.707145 aidref 098413406 R rec 35a73711-85a3-48df-9383-d59d51d60f12 -2023-07-08 08:20:25.806882 2023-07-08 08:20:25.806895 aidref 09883312X R rec 7abb51b9-0d56-4dd6-a4d9-4e0737675d5d -2023-07-08 08:20:25.887991 2023-07-08 08:20:25.888007 aidref 100484522 R rec fd939678-2991-42b2-9a1e-f7bff60ff1d6 -2023-07-08 08:20:25.9838 2023-07-08 08:20:25.983812 aidref 100570453 R rec 62947ba0-f9f2-444a-9a7f-378250d5a56e -2023-07-08 08:20:26.075851 2023-07-08 08:20:26.075857 aidref 100930778 R rec 4f94eb3d-16c6-4a02-8aa3-380ddfb905e2 -2023-07-08 08:20:26.168495 2023-07-08 08:20:26.168513 aidref 101023235 R rec c6acc186-9ad2-412c-9f1b-9f329df0df61 -2023-07-08 08:20:26.273596 2023-07-08 08:20:26.273612 aidref 101283407 R rec 1641d3d2-95bf-46d2-9851-6bf6d4086247 -2023-07-08 08:20:26.3856 2023-07-08 08:20:26.38561 aidref 101346654 R rec 9c851cf9-15e8-4137-889f-1532998a8bb7 -2023-07-08 08:20:26.477883 2023-07-08 08:20:26.477894 aidref 101397321 R rec eca81f08-4e8e-4274-993d-d1b46a3e2184 -2023-07-08 08:20:26.572442 2023-07-08 08:20:26.572446 aidref 101448597 R rec fb6a9e79-a9ad-466d-acdc-6d1e7e611d79 -2023-07-08 08:20:26.696676 2023-07-08 08:20:26.696682 aidref 102076855 R rec 4914cb40-aeb2-4ec2-9049-def65fc211f4 -2023-07-08 08:20:26.798151 2023-07-08 08:20:26.798165 aidref 102129150 R rec 4c41e07e-cca7-4af8-aa3d-3091a28d03c9 -2023-07-08 08:20:26.885921 2023-07-08 08:20:26.885938 aidref 102522170 R rec 0011a877-dd77-4c55-8df9-1c9c28576f83 -2023-07-08 08:20:26.964039 2023-07-08 08:20:26.964044 aidref 102616221 R rec 5e5cbcde-2649-443b-9c82-25ec1c69eeee -2023-07-08 08:20:27.058615 2023-07-08 08:20:27.058626 aidref 103208348 R rec 5775e68c-aba7-4816-89ae-740638522bcc -2023-07-08 08:20:27.150812 2023-07-08 08:20:27.150821 aidref 103396063 R rec 892f2cff-6079-4fa6-a22a-5639b18542cd -2023-07-08 08:20:27.240959 2023-07-08 08:20:27.240975 aidref 103540695 R rec 21f9d25a-e57a-4feb-8fbc-d6ecd98ad671 -2023-07-08 08:20:27.340938 2023-07-08 08:20:27.340948 aidref 103578560 R rec b9eb960e-e610-400c-bd3d-9a97699cbae3 -2023-07-08 08:20:27.43461 2023-07-08 08:20:27.434621 aidref 10359342X R rec 20d7e522-968e-4a26-848d-7e6677374f10 -2023-07-08 08:20:27.522692 2023-07-08 08:20:27.522697 aidref 103613838 R rec ec3d713b-dd0d-42da-ba37-09fd1e3e87e0 -2023-07-08 08:20:27.607701 2023-07-08 08:20:27.607715 aidref 10368607X R rec c4e54107-e690-4d50-9572-4c28b455a03d -2023-07-08 08:20:27.69813 2023-07-08 08:20:27.698141 aidref 103835458 R rec 30bb18da-b6f5-4db1-b8de-8c5a094397c1 -2023-07-08 08:20:27.797127 2023-07-08 08:20:27.797133 aidref 103919511 R rec fcbeb7fe-4ed9-4482-9e90-7a5160985756 -2023-07-08 08:20:27.873369 2023-07-08 08:20:27.873374 aidref 104444126 R rec 70f73862-e190-4e83-8a91-6532a67a3190 -2023-07-08 08:20:27.946179 2023-07-08 08:20:27.946184 aidref 104506830 R rec 720e797d-339d-46f5-9d6d-d54e5d7fa91f -2023-07-08 08:20:28.043013 2023-07-08 08:20:28.043025 aidref 105998168 R rec e4b0d497-541e-403f-a537-fe00659e13a8 -2023-07-08 08:20:28.131087 2023-07-08 08:20:28.131092 aidref 106028723 R rec ada65f18-7881-40f2-8f6a-2a4a9ce91cd6 -2023-07-08 08:20:28.215056 2023-07-08 08:20:28.215063 aidref 10694956X R rec d25a2235-5738-4406-9737-4a4fc006176f -2023-07-08 08:20:28.298873 2023-07-08 08:20:28.298885 aidref 106952587 R rec 945cb326-65f1-45b7-a2e5-9459965af8bb -2023-07-08 08:20:28.383862 2023-07-08 08:20:28.383873 aidref 106968696 R rec 9f509c15-4d41-4742-a6ba-735851730d91 -2023-07-08 08:20:28.474283 2023-07-08 08:20:28.474299 aidref 107090538 R rec 2851d959-9f60-413d-a0ee-5786f0036f0e -2023-07-08 08:20:28.582097 2023-07-08 08:20:28.582106 aidref 107702746 R rec 76c0d60c-9068-4aa8-8343-6cb5d71828e7 -2023-07-08 08:20:28.66203 2023-07-08 08:20:28.662037 aidref 108090450 R rec a7e997c9-d359-437b-b1e6-518fd2b1b245 -2023-07-08 08:20:28.739617 2023-07-08 08:20:28.739629 aidref 108093875 R rec 9d3aec7f-d540-4171-9fc5-d3762465ce1d -2023-07-08 08:20:28.814307 2023-07-08 08:20:28.814314 aidref 108157873 R rec 72288ab2-9aad-4aa9-a687-4a345555352c -2023-07-08 08:20:28.890952 2023-07-08 08:20:28.890967 aidref 108462897 R rec 142bd5fb-1bef-4c27-9207-74d5a12faa97 -2023-07-08 08:20:28.978463 2023-07-08 08:20:28.978474 aidref 108510638 R rec ea34bcfa-9374-40ea-8088-0c8dc31931ca -2023-07-08 08:20:29.079343 2023-07-08 08:20:29.079348 aidref 10853961X R rec 2a859628-f38e-4266-b4ed-46d096939868 -2023-07-08 08:20:29.157846 2023-07-08 08:20:29.157857 aidref 108882861 R rec 63bb7a6b-5c2d-469c-87c7-02d56c525c9d -2023-07-08 08:20:29.253811 2023-07-08 08:20:29.253826 aidref 108960811 R rec bcc5fa0f-3314-4e66-a4e7-9dc4f7d49bbf -2023-07-08 08:20:29.345143 2023-07-08 08:20:29.345157 aidref 109075013 R rec f73899f0-ea4c-4f9e-b864-9891dad78366 -2023-07-08 08:20:29.413806 2023-07-08 08:20:29.413814 aidref 109149327 R rec 077a817a-237b-4942-96a6-2106e45cb4aa -2023-07-08 08:20:29.490686 2023-07-08 08:20:29.490692 aidref 109154746 R rec 84a96fef-df7f-4f63-9d8d-1387ef4447a1 -2023-07-08 08:20:29.562365 2023-07-08 08:20:29.562374 aidref 10935026X R rec bb3df663-1e6d-4e0d-b537-a7f66af5550a -2023-07-08 08:20:29.649786 2023-07-08 08:20:29.649801 aidref 110078810 R rec 41526cd9-f56b-415f-9838-c979a45c060e -2023-07-08 08:20:29.731723 2023-07-08 08:20:29.731734 aidref 110124596 R rec 9fc0b1f9-8d43-494a-b62d-68d2d504f769 -2023-07-08 08:20:29.814459 2023-07-08 08:20:29.81447 aidref 110124863 R rec c931c83e-56f2-49ed-894d-1f1fd94635c5 -2023-07-08 08:20:29.908378 2023-07-08 08:20:29.908388 aidref 11013253X R rec 6f3d3ba1-3295-4710-b4ba-4156b76cf968 -2023-07-08 08:20:30.001408 2023-07-08 08:20:30.00142 aidref 11015469X R rec fe70e62d-6bda-456b-8938-e43cafa76acf -2023-07-08 08:20:30.081216 2023-07-08 08:20:30.081227 aidref 110185366 R rec a972ecad-bf33-4b1c-8ab8-b38641b19bdf -2023-07-08 08:20:30.170387 2023-07-08 08:20:30.170405 aidref 110195019 R rec c347d5a2-a715-42a6-9bc9-9d07073e6ced -2023-07-08 08:20:30.251778 2023-07-08 08:20:30.25179 aidref 11020414X R rec 16e638b0-e7b4-49d7-892e-1fe36fe5a7a9 -2023-07-08 08:20:30.350069 2023-07-08 08:20:30.350083 aidref 110240723 R rec a9d38936-899f-4f65-a800-8c22f432659e -2023-07-08 08:20:30.428174 2023-07-08 08:20:30.428183 aidref 110458087 R rec ec11df29-bcbd-4a8f-8c7d-3a6cd21266e5 -2023-07-08 08:20:30.512026 2023-07-08 08:20:30.512031 aidref 110510631 R rec c2c53db2-0d1c-417b-a96a-e4aa547d596b -2023-07-08 08:20:30.596998 2023-07-08 08:20:30.597003 aidref 110591119 R rec bd9adada-1585-46bf-be8d-345323d68ca8 -2023-07-08 08:20:30.688138 2023-07-08 08:20:30.688148 aidref 110725476 R rec c507ba67-0fd0-4ae9-b64b-53b0963d3cd1 -2023-07-08 08:20:30.827881 2023-07-08 08:20:30.827887 aidref 110735714 R rec 949185e1-c2ad-4c6c-8f4b-adb9db18fcab -2023-07-08 08:20:30.904898 2023-07-08 08:20:30.904911 aidref 11114261X R rec 573d43c2-d7ad-488d-bcd1-38e86412f679 -2023-07-08 08:20:30.996623 2023-07-08 08:20:30.996629 aidref 111315387 R rec b2ab18b5-c946-4736-8f39-7dde9932c589 -2023-07-08 08:20:31.090671 2023-07-08 08:20:31.090687 aidref 111318459 R rec 98e0e5b9-a4f9-499d-9083-dc3898dad368 -2023-07-08 08:20:31.178635 2023-07-08 08:20:31.17864 aidref 111515890 R rec 49c83726-2d7e-4918-8054-e53513260995 -2023-07-08 08:20:31.268787 2023-07-08 08:20:31.268803 aidref 111524679 R rec 788ac08d-4557-4552-96b6-452296086986 -2023-07-08 08:20:31.355194 2023-07-08 08:20:31.355205 aidref 111755220 R rec 69cc6115-7ff4-454e-9568-3e13a3511779 -2023-07-08 08:20:31.430064 2023-07-08 08:20:31.43007 aidref 112030777 R rec 50b7e0a4-02b6-4d22-af37-322d3e8d0dfa -2023-07-08 08:20:31.514088 2023-07-08 08:20:31.514093 aidref 112074863 R rec b552d863-5434-4e63-8c51-0dba8b6d3484 -2023-07-08 08:20:31.603503 2023-07-08 08:20:31.603512 aidref 112113028 R rec 8a6b1a99-02c6-4f89-8ff8-72ac10e5d5c0 -2023-07-08 08:20:31.686297 2023-07-08 08:20:31.686308 aidref 112169678 R rec a2d3d27f-95ad-4143-8688-4b1569f315fd -2023-07-08 08:20:31.780372 2023-07-08 08:20:31.78038 aidref 11219222X R rec 50030b83-1f0a-4af8-bc44-57b078c7ba8a -2023-07-08 08:20:31.887784 2023-07-08 08:20:31.887797 aidref 112238181 R rec 29b5e54a-afe3-43b5-90d9-c1784d6f1927 -2023-07-08 08:20:31.989371 2023-07-08 08:20:31.989377 aidref 11246355X R rec 735cab93-7d0c-45d6-af51-3edadcf89e12 -2023-07-08 08:20:32.103888 2023-07-08 08:20:32.103901 aidref 112722024 R rec fb9e1b1b-a73c-47ad-8dcb-9d2c8820db4c -2023-07-08 08:20:32.20026 2023-07-08 08:20:32.200272 aidref 112795889 R rec 1abd2373-94c0-4617-a745-30be0a2675f9 -2023-07-08 08:20:32.28602 2023-07-08 08:20:32.286031 aidref 112913202 R rec a1ea04de-02ed-4582-8891-5fdfab70a08e -2023-07-08 08:20:32.377663 2023-07-08 08:20:32.377669 aidref 112961401 R rec ec313875-24b2-48d4-9061-00c7253241ef -2023-07-08 08:20:32.478956 2023-07-08 08:20:32.478961 aidref 113120362 R rec c6d6015c-ffb3-4b43-b622-ace19ecce9d1 -2023-07-08 08:20:32.565315 2023-07-08 08:20:32.565322 aidref 113195931 R rec bb428668-bcb6-456a-939d-9deb001e4396 -2023-07-08 08:20:32.663377 2023-07-08 08:20:32.663387 aidref 113204442 R rec db459ee4-a2f5-4c04-9f2b-057f20745075 -2023-07-08 08:20:32.765235 2023-07-08 08:20:32.765245 aidref 113372213 R rec f67096cd-1c05-4d18-9cac-8f32ee41f238 -2023-07-08 08:20:32.848349 2023-07-08 08:20:32.848352 aidref 113737041 R rec 98b26cfa-bdb8-45d2-8ad1-9bc2942fa8b9 -2023-07-08 08:20:32.913274 2023-07-08 08:20:32.913279 aidref 113738048 R rec 0aa986bc-f511-4311-9513-f78440949f50 -2023-07-08 08:20:33.006619 2023-07-08 08:20:33.006635 aidref 113753764 R rec fcd2788e-96f8-4e47-983a-80871dbb465f -2023-07-08 08:20:33.095813 2023-07-08 08:20:33.095818 aidref 113834535 R rec 25d9f0fb-b39d-4ff7-9420-f2ee283bc3c4 -2023-07-08 08:20:33.178257 2023-07-08 08:20:33.178267 aidref 113915845 R rec aef8f632-a2c6-4ffd-8266-39f040437d92 -2023-07-08 08:20:33.246444 2023-07-08 08:20:33.24645 aidref 114044104 R rec e6c73aa4-fefe-411f-95e5-f6e6089b7717 -2023-07-08 08:20:33.309013 2023-07-08 08:20:33.309018 aidref 114141606 R rec 047530d2-0f3c-44ed-9652-f04ee450d9eb -2023-07-08 08:20:33.373717 2023-07-08 08:20:33.373723 aidref 114173699 R rec a6743803-66e7-41e4-ad36-d3f232fa8d52 -2023-07-08 08:20:33.44686 2023-07-08 08:20:33.446866 aidref 114244057 R rec 09e8ffd1-9b66-4bbd-bd68-0d757dc20689 -2023-07-08 08:20:33.508506 2023-07-08 08:20:33.508511 aidref 114270813 R rec b6564f18-1dc1-4bcb-bfea-a13ff4b6f73e -2023-07-08 08:20:33.571897 2023-07-08 08:20:33.571901 aidref 11449973X R rec 4cda57ea-f6d9-4947-a7b5-5be22b001b7f -2023-07-08 08:20:33.63382 2023-07-08 08:20:33.633825 aidref 114570337 R rec e9f76a7a-525d-446c-ad55-b68dcbb23f31 -2023-07-08 08:20:33.715061 2023-07-08 08:20:33.715069 aidref 114673128 R rec 56d623a3-3dd6-4ec9-ad85-85d3206c49ba -2023-07-08 08:20:33.813436 2023-07-08 08:20:33.813441 aidref 11499899X R rec aca19b9f-7722-4450-9714-f52b1e8cdb39 -2023-07-08 08:20:33.899397 2023-07-08 08:20:33.899415 aidref 115046917 R rec ec6b1b49-73cf-493d-84bb-ae7c2e94f6c5 -2023-07-08 08:20:33.990112 2023-07-08 08:20:33.990123 aidref 115078630 R rec cd4cbd53-1582-4430-af54-8109ebc19a4c -2023-07-08 08:20:34.098365 2023-07-08 08:20:34.098371 aidref 115277684 R rec 5314aad7-cf82-4723-aab8-1d6adce193ed -2023-07-08 08:20:34.18355 2023-07-08 08:20:34.183561 aidref 115564535 R rec 02e56d19-b2c1-49e2-b3ef-5cd2d6ac2ed4 -2023-07-08 08:20:34.271717 2023-07-08 08:20:34.271735 aidref 11570793X R rec f1fdba2f-29c4-4d53-b584-536ef1e4f4b0 -2023-07-08 08:20:34.357763 2023-07-08 08:20:34.357768 aidref 115842993 R rec a3a6caa4-90f2-440d-b6e1-d5dde2e6a5e3 -2023-07-08 08:20:34.436737 2023-07-08 08:20:34.436751 aidref 116055669 R rec ac957eb6-3a30-457c-b250-dddd78ccfd83 -2023-07-08 08:20:34.538254 2023-07-08 08:20:34.538259 aidref 116121556 R rec 5604edc8-b7ee-42c1-9b2f-057732e3d93d -2023-07-08 08:20:34.618526 2023-07-08 08:20:34.618541 aidref 116142219 R rec f8e6be0d-d411-4c29-81d6-07fa4ad9aa36 -2023-07-08 08:20:34.690403 2023-07-08 08:20:34.690409 aidref 11627753X R rec 127e6a0b-54c6-4eb6-8397-129f43804dbc -2023-07-08 08:20:34.776225 2023-07-08 08:20:34.776237 aidref 116285125 R rec af815e65-bf4e-4598-b008-ce426864c8ad -2023-07-08 08:20:34.865924 2023-07-08 08:20:34.86593 aidref 116293020 R rec c1adb56a-6a30-4c2d-9fe3-89e16c7bd01e -2023-07-08 08:20:34.927548 2023-07-08 08:20:34.927553 aidref 116436840 R rec 927ac46b-cc59-4ec2-a296-dddf42bb8216 -2023-07-08 08:20:35.002466 2023-07-08 08:20:35.002482 aidref 11649736X R rec af6d043a-92cc-4dd1-82cb-33c810deea8b -2023-07-08 08:20:35.087865 2023-07-08 08:20:35.08788 aidref 116539313 R rec 529c0904-a87f-444a-95e1-b41d1357ded5 -2023-07-08 08:20:35.191358 2023-07-08 08:20:35.191363 aidref 116542306 R rec e1421e9a-dca7-4809-bd2e-8fec81e71e81 -2023-07-08 08:20:35.279937 2023-07-08 08:20:35.279943 aidref 116771763 R rec efa56e94-7f5e-4acc-b088-d2208e9d01bb -2023-07-08 08:20:35.359528 2023-07-08 08:20:35.359534 aidref 117328383 R rec 0be3ba8e-c196-47f3-b825-748683a913aa -2023-07-08 08:20:35.438166 2023-07-08 08:20:35.438179 aidref 11749464X R rec 30e756f3-95ef-401a-8b26-153022704ee5 -2023-07-08 08:20:35.569223 2023-07-08 08:20:35.569228 aidref 117780081 R rec 4cc0983f-6bcf-4435-b246-ba3c7e1f494b -2023-07-08 08:20:35.631589 2023-07-08 08:20:35.631595 aidref 117829226 R rec 2ee73cfb-0e20-42b5-ba3e-5fa455ce30c3 -2023-07-08 08:20:35.694795 2023-07-08 08:20:35.6948 aidref 117886920 R rec 01d418f2-d9d2-4322-af11-4418752a9e0f -2023-07-08 08:20:35.77026 2023-07-08 08:20:35.770265 aidref 117982067 R rec e843238f-ca01-4bc2-b20f-2276ba73206c -2023-07-08 08:20:35.833055 2023-07-08 08:20:35.83306 aidref 118249487 R rec eb909e4b-9d21-42bf-9717-389c69a52ff1 -2023-07-08 08:20:35.900474 2023-07-08 08:20:35.900479 aidref 118275593 R rec b29825a2-c805-4d11-9819-79efc61a9047 -2023-07-08 08:20:35.962503 2023-07-08 08:20:35.962508 aidref 118630245 R rec 81cc9abb-3d3b-48c5-9812-ef80d2428f96 -2023-07-08 08:20:36.04993 2023-07-08 08:20:36.049945 aidref 118895729 R rec e450604c-2db4-446f-b9f5-5aa52ff38e7c -2023-07-08 08:20:36.136732 2023-07-08 08:20:36.136748 aidref 118964534 R rec 5257fc10-8036-4701-b823-fa6704aafc93 -2023-07-08 08:20:36.222487 2023-07-08 08:20:36.222498 aidref 119176114 R rec e96e8185-5926-4da4-8ffd-f4568a4ca51a -2023-07-08 08:20:36.297123 2023-07-08 08:20:36.297127 aidref 119349043 R rec 28ac18b7-1762-4739-92ea-3dc1080c1c29 -2023-07-08 08:20:36.386738 2023-07-08 08:20:36.38675 aidref 11954945X R rec af6d9b44-0e3f-4c6c-961f-9f4d4524522b -2023-07-08 08:20:36.475654 2023-07-08 08:20:36.47567 aidref 119926350 R rec 6445feae-b3c9-430b-a1c0-808273556edf -2023-07-08 08:20:36.566462 2023-07-08 08:20:36.566467 aidref 119945290 R rec c02b69aa-dd5b-4640-b10e-ce7fe5329edd -2023-07-08 08:20:36.641882 2023-07-08 08:20:36.641898 aidref 119980924 R rec a25dbf9a-7811-456d-b9fc-9fac23bc68cd -2023-07-08 08:20:36.730406 2023-07-08 08:20:36.730413 aidref 120051575 R rec f78ab193-3a6f-49fd-b229-c0756335f54d -2023-07-08 08:20:36.822579 2023-07-08 08:20:36.822589 aidref 120122545 R rec ead52845-6e7b-4c1f-b41c-0473b54b682e -2023-07-08 08:20:36.901386 2023-07-08 08:20:36.901403 aidref 120196204 R rec ee25f0b3-b2e8-4422-bd29-fcc2d2ffa738 -2023-07-08 08:20:36.985426 2023-07-08 08:20:36.985439 aidref 120483076 R rec 85e900e1-3da8-4809-9d68-d498fa1d4a60 -2023-07-08 08:20:37.077858 2023-07-08 08:20:37.077863 aidref 120678918 R rec ef14fc05-4bdf-425f-9f39-8e09f061ce76 -2023-07-08 08:20:37.162473 2023-07-08 08:20:37.162478 aidref 120767848 R rec 6671aa2a-4ed7-47f0-98e2-3fe3761a0f81 -2023-07-08 08:20:37.257127 2023-07-08 08:20:37.257133 aidref 120895579 R rec 1983955f-8e7b-408d-a3e5-d4a2ceea8aa2 -2023-07-08 08:20:37.355429 2023-07-08 08:20:37.355444 aidref 121150283 R rec 89025000-1dfa-4552-9171-86fa1bcef3d7 -2023-07-08 08:20:37.432102 2023-07-08 08:20:37.432115 aidref 121151778 R rec 05e931aa-c69a-46a8-8acc-0da70c81b921 -2023-07-08 08:20:37.504767 2023-07-08 08:20:37.504779 aidref 121294757 R rec b5fbc23e-e838-4a8f-a2e0-1edfc5d8e8f6 -2023-07-08 08:20:37.579752 2023-07-08 08:20:37.579757 aidref 121469395 R rec fd9ebbbc-dbdf-4d2b-8ef2-61e71ee24ef3 -2023-07-08 08:20:37.665422 2023-07-08 08:20:37.665438 aidref 121758419 R rec 89988b29-ee91-43d4-906e-ef61a5999fc1 -2023-07-08 08:20:37.769262 2023-07-08 08:20:37.769268 aidref 121801713 R rec d82f13dd-f94b-4d56-8919-2cb7b233676c -2023-07-08 08:20:37.858247 2023-07-08 08:20:37.858259 aidref 121832260 R rec d57ed7a5-1a12-43db-8e65-a6b5743f4a23 -2023-07-08 08:20:37.946323 2023-07-08 08:20:37.946333 aidref 122093186 R rec 750519f5-8cf1-43f6-bd05-00e2057a937e -2023-07-08 08:20:38.026021 2023-07-08 08:20:38.026032 aidref 122301374 R rec 8a1263b7-ef8b-422d-add5-818513e978b5 -2023-07-08 08:20:38.117485 2023-07-08 08:20:38.117496 aidref 122411749 R rec 77875c25-4157-4236-88ab-126158fbfbc9 -2023-07-08 08:20:38.208073 2023-07-08 08:20:38.208083 aidref 122514904 R rec 0c4709cc-ce68-4072-ba0c-768162b635da -2023-07-08 08:20:38.30728 2023-07-08 08:20:38.307286 aidref 122677315 R rec 8740f477-48d6-4753-bec0-9d772f423bfd -2023-07-08 08:20:38.40254 2023-07-08 08:20:38.402551 aidref 122762142 R rec d4a0d3a4-d8d3-469f-b716-d72ed5527f74 -2023-07-08 08:20:38.486305 2023-07-08 08:20:38.486315 aidref 123006287 R rec 74dfb92f-ee37-4781-91ab-0c08d73e85ca -2023-07-08 08:20:38.55696 2023-07-08 08:20:38.556968 aidref 123007089 R rec 8f57ebdc-e4e0-45db-97f7-e526cc2fd20f -2023-07-08 08:20:38.628716 2023-07-08 08:20:38.628721 aidref 123240638 R rec a0b63622-ad3e-417e-b890-a7b458833166 -2023-07-08 08:20:38.704813 2023-07-08 08:20:38.704822 aidref 123395321 R rec a3a771d6-4c31-436c-bf93-7ea0ee2a6718 -2023-07-08 08:20:38.787272 2023-07-08 08:20:38.787287 aidref 123474825 R rec dd995f39-7787-434c-b1aa-4ec54ac3e34e -2023-07-08 08:20:38.882037 2023-07-08 08:20:38.882043 aidref 123496225 R rec 813d6b3c-fc87-4727-bcce-7af2e8ace7e0 -2023-07-08 08:20:38.954409 2023-07-08 08:20:38.954421 aidref 123609836 R rec c2523218-2845-4a0d-bb16-bfaebaf97327 -2023-07-08 08:20:39.025269 2023-07-08 08:20:39.025282 aidref 124179290 R rec 8fdac59d-6e44-40d5-b9a2-1661fe85dcd2 -2023-07-08 08:20:39.108432 2023-07-08 08:20:39.108448 aidref 12420709X R rec 391d6e2a-5b67-47e1-a19c-39d8596f2a05 -2023-07-08 08:20:39.19855 2023-07-08 08:20:39.198556 aidref 124217273 R rec 1b60546e-fbf7-4dd2-8f9e-9cc53c63b890 -2023-07-08 08:20:39.289173 2023-07-08 08:20:39.289188 aidref 12430284X R rec c5782d3f-c474-45ca-8f54-dc5f2944aaef -2023-07-08 08:20:39.380541 2023-07-08 08:20:39.380547 aidref 124342078 R rec 0663ba8f-f068-40e3-8bcd-834e0ac08afe -2023-07-08 08:20:39.463932 2023-07-08 08:20:39.463943 aidref 124497209 R rec 5429a4d6-bc17-4537-964a-af8175b8aa4e -2023-07-08 08:20:39.561408 2023-07-08 08:20:39.561418 aidref 124508758 R rec 96d7de0a-d1bd-44ee-9df9-cec2e7f9db9e -2023-07-08 08:20:39.661287 2023-07-08 08:20:39.661292 aidref 124670954 R rec ede5fd4d-5a71-4130-a3b8-ffa88a0909da -2023-07-08 08:20:39.741531 2023-07-08 08:20:39.741542 aidref 124764916 R rec 5a0ea9b5-7c48-4134-b6ef-43bc7fe6a64a -2023-07-08 08:20:39.828964 2023-07-08 08:20:39.82897 aidref 124806376 R rec 7c9a9f45-9794-4c9b-bfa5-4027c4cce224 -2023-07-08 08:20:39.908452 2023-07-08 08:20:39.90846 aidref 125074506 R rec 56be73c9-e6d3-4d8a-9a35-d3bf73feaaf1 -2023-07-08 08:20:40.002569 2023-07-08 08:20:40.002584 aidref 125871074 R rec fde590f9-45da-48ab-b1fe-b41e9e6c0574 -2023-07-08 08:20:40.094198 2023-07-08 08:20:40.094209 aidref 126029784 R rec f9a0d6a9-0076-4eee-9cf1-ec005674a535 -2023-07-08 08:20:40.179683 2023-07-08 08:20:40.179689 aidref 126078858 R rec c794efc1-0ba7-460f-a232-6630527b0d31 -2023-07-08 08:20:40.267904 2023-07-08 08:20:40.267916 aidref 126483361 R rec b851b518-ff40-4603-bdaa-1b964e240d6b -2023-07-08 08:20:40.352524 2023-07-08 08:20:40.352538 aidref 126596131 R rec dd91b439-40da-4288-a764-4aff4babd076 -2023-07-08 08:20:40.422421 2023-07-08 08:20:40.422427 aidref 126598371 R rec a7d07252-8dd7-4b8f-b598-08023aab8fbf -2023-07-08 08:20:40.508826 2023-07-08 08:20:40.508841 aidref 126698104 R rec 24def518-d6b5-40d3-afb7-08ec00ed9ae2 -2023-07-08 08:20:40.605441 2023-07-08 08:20:40.605446 aidref 127065113 R rec 8515290a-234a-4678-846b-12288743d5a9 -2023-07-08 08:20:40.688808 2023-07-08 08:20:40.688815 aidref 127163905 R rec a189e1ef-1407-4893-b7c7-3d66e90b669a -2023-07-08 08:20:40.778277 2023-07-08 08:20:40.778283 aidref 127251502 R rec 294343b9-98ec-48b5-a24a-9ce93eb2e342 -2023-07-08 08:20:40.856417 2023-07-08 08:20:40.856426 aidref 127287159 R rec 12cd9dec-e9e4-474d-b097-b03405b8c558 -2023-07-08 08:20:40.927189 2023-07-08 08:20:40.927194 aidref 127334807 R rec 0f09283a-371c-4cf2-8d08-6a632bed0ab1 -2023-07-08 08:20:41.018178 2023-07-08 08:20:41.018189 aidref 127364013 R rec 7661ecb0-09aa-4b23-b274-490edb8f0d6b -2023-07-08 08:20:41.116242 2023-07-08 08:20:41.116252 aidref 127488790 R rec 1250996a-eef8-411a-8888-71b3f9298d12 -2023-07-08 08:20:41.225392 2023-07-08 08:20:41.225398 aidref 127521038 R rec eb1b155d-f164-4ec5-ae36-a8639c302d64 -2023-07-08 08:20:41.311499 2023-07-08 08:20:41.311511 aidref 127789111 R rec 12b07b76-7dbd-47ca-91f6-f9f17daf59be -2023-07-08 08:20:41.431939 2023-07-08 08:20:41.431953 aidref 127838732 R rec 2b79a125-660a-45ed-b3f0-bc6217339dbf -2023-07-08 08:20:41.550589 2023-07-08 08:20:41.550601 aidref 127859829 R rec 925ec9ea-2b51-416f-84e3-fed72fe67c92 -2023-07-08 08:20:41.652316 2023-07-08 08:20:41.652326 aidref 128116951 R rec d484d3a5-908f-4302-ae36-0423c9714003 -2023-07-08 08:20:41.786404 2023-07-08 08:20:41.786422 aidref 128258365 R rec bfc4920a-79d4-461c-9077-b8840668e8b1 -2023-07-08 08:20:41.905228 2023-07-08 08:20:41.905243 aidref 128283661 R rec 25f5d50d-31d7-4553-aea1-b1d81b6e1882 -2023-07-08 08:20:42.01561 2023-07-08 08:20:42.015623 aidref 128499877 R rec 5e4b91eb-00c3-4d3a-925a-704ebe90256e -2023-07-08 08:20:42.169453 2023-07-08 08:20:42.169466 aidref 128529202 R rec c455c646-5a77-45ab-acd0-e86c9ad0eb63 -2023-07-08 08:20:42.335179 2023-07-08 08:20:42.335191 aidref 128537663 R rec 1e4ab9ac-ef20-4d5f-b2e1-ca83cebece30 -2023-07-08 08:20:42.472714 2023-07-08 08:20:42.472725 aidref 128585544 R rec 4e9b294d-a9b2-4f12-9e96-f2522023af7a -2023-07-08 08:20:42.622457 2023-07-08 08:20:42.622468 aidref 128587679 R rec 131e204f-ccce-496b-af68-94642447b004 -2023-07-08 08:20:42.746234 2023-07-08 08:20:42.746249 aidref 128590874 R rec af9b5fcc-900e-4b41-922f-c24e41772c33 -2023-07-08 08:20:42.89261 2023-07-08 08:20:42.892623 aidref 128657642 R rec 084ad643-bf43-40d2-81f8-c67016e4bb2b -2023-07-08 08:20:43.02777 2023-07-08 08:20:43.027786 aidref 129182176 R rec 3d50ef81-73a2-480c-b6cc-b9f85c50dd8c -2023-07-08 08:20:43.152997 2023-07-08 08:20:43.153024 aidref 129211273 R rec 4ebcf3b9-b18f-43dc-9764-64cd6384f8c5 -2023-07-08 08:20:43.276079 2023-07-08 08:20:43.276096 aidref 129419915 R rec 3934fbed-0765-4f2b-afeb-359ec9757cb8 -2023-07-08 08:20:43.407381 2023-07-08 08:20:43.407395 aidref 129558311 R rec 7e8704a2-bb2b-4c76-867d-4e33d83b08a9 -2023-07-08 08:20:43.534718 2023-07-08 08:20:43.534732 aidref 129801577 R rec d8fb29ec-3682-4ee5-8862-4e784a44a5fe -2023-07-08 08:20:43.648098 2023-07-08 08:20:43.648113 aidref 129871303 R rec 7ada374d-69cf-496f-bc4c-f04d7cff8cd8 -2023-07-08 08:20:43.761686 2023-07-08 08:20:43.7617 aidref 129966053 R rec 80d7cc89-a241-4f05-ad00-45b6cc109610 -2023-07-08 08:20:43.877828 2023-07-08 08:20:43.877837 aidref 129988758 R rec 04c582f8-08f1-408a-8046-f9a4b02b2ee9 -2023-07-08 08:20:43.987047 2023-07-08 08:20:43.987058 aidref 130017256 R rec 4a904418-b1d6-4b54-b4ba-152d681f05be -2023-07-08 08:20:44.098811 2023-07-08 08:20:44.098824 aidref 13037962X R rec 83e245cc-fdf6-492a-a460-bca763aff586 -2023-07-08 08:20:44.208719 2023-07-08 08:20:44.208729 aidref 130434795 R rec 235d55d2-c68f-400f-bcbe-744efbff39ea -2023-07-08 08:20:44.334358 2023-07-08 08:20:44.334369 aidref 130521973 R rec 422f6e5d-12c0-4ece-8759-1a37b068894e -2023-07-08 08:20:44.443124 2023-07-08 08:20:44.443141 aidref 130648396 R rec 65d957fd-e739-4bbd-978c-48e1a9c1c8fe -2023-07-08 08:20:44.560105 2023-07-08 08:20:44.560115 aidref 130807508 R rec fbae373c-54a4-4272-bfc4-42be2dd0b928 -2023-07-08 08:20:44.704342 2023-07-08 08:20:44.704353 aidref 130809217 R rec fe043ce4-1e85-4fca-b9d2-0db8cefb8379 -2023-07-08 08:20:44.833744 2023-07-08 08:20:44.833759 aidref 131054937 R rec cbb7ed70-212e-43d5-936f-4bccbf41d9a6 -2023-07-08 08:20:44.958834 2023-07-08 08:20:44.958853 aidref 131245759 R rec 9470c466-8fcd-4cfd-9231-528b8f480af7 -2023-07-08 08:20:45.083824 2023-07-08 08:20:45.08384 aidref 13145269X R rec 76941095-e65c-4fe0-bfcc-698d58fb4295 -2023-07-08 08:20:45.20416 2023-07-08 08:20:45.204176 aidref 131529595 R rec c446e9f0-7dee-43a1-8f09-d8e6c2877c17 -2023-07-08 08:20:45.325792 2023-07-08 08:20:45.325802 aidref 131808206 R rec a6dfdc06-1fe2-4f37-a07e-22d10a16a500 -2023-07-08 08:20:45.485406 2023-07-08 08:20:45.485417 aidref 13185254X R rec c6e51a31-d111-479b-8fc3-8979c5c04f1b -2023-07-08 08:20:45.600046 2023-07-08 08:20:45.600058 aidref 132110520 R rec 6797b855-5ae8-4ee4-bc31-8cdf4aeae9e2 -2023-07-08 08:20:45.754736 2023-07-08 08:20:45.754746 aidref 132337282 R rec a7bb28e1-a7b0-405b-96c9-e3c319daa01d -2023-07-08 08:20:45.911529 2023-07-08 08:20:45.911544 aidref 132394065 R rec cbdd6d14-4a46-4150-8e6f-7b78d840bb6d -2023-07-08 08:20:46.067952 2023-07-08 08:20:46.067967 aidref 132436620 R rec ec58179d-d528-420a-985b-27eee9ee5fec -2023-07-08 08:20:46.186539 2023-07-08 08:20:46.186557 aidref 132521326 R rec e7cdd73e-a6b6-4e66-b5d9-155683768bc0 -2023-07-08 08:20:46.29958 2023-07-08 08:20:46.29959 aidref 132740966 R rec 393a40b4-791b-4258-8c1e-f6e322bafe37 -2023-07-08 08:20:46.434436 2023-07-08 08:20:46.434447 aidref 132750368 R rec c75985b6-e0cd-4415-a2db-5ccfe3dd7f80 -2023-07-08 08:20:46.555125 2023-07-08 08:20:46.555139 aidref 132844036 R rec 98b04521-5de1-4436-91bc-09a8850d597f -2023-07-08 08:20:46.659724 2023-07-08 08:20:46.659739 aidref 133004503 R rec 30e339c0-1a77-41fb-b9e2-8facf8e5387c -2023-07-08 08:20:46.804742 2023-07-08 08:20:46.804753 aidref 13318479X R rec 98a6ca96-8b5d-4ee6-a1da-6e37f64c2451 -2023-07-08 08:20:46.927347 2023-07-08 08:20:46.927365 aidref 133250717 R rec 558c9af4-0570-4dd1-a558-a3009508d35c -2023-07-08 08:20:47.034577 2023-07-08 08:20:47.034589 aidref 133383369 R rec fd3cf1ec-6dc1-46c4-b395-5458bb83d7ab -2023-07-08 08:20:47.143697 2023-07-08 08:20:47.143709 aidref 133418278 R rec d83ea0ea-970d-47e0-92c9-5d7c0e71939e -2023-07-08 08:20:47.255832 2023-07-08 08:20:47.255847 aidref 133532542 R rec 12c70121-8c0b-4009-941b-b682aa2e2c66 -2023-07-08 08:20:47.368272 2023-07-08 08:20:47.368284 aidref 133564649 R rec 026461f1-78e7-4f33-8d58-bb7c485b03a0 -2023-07-08 08:20:47.487784 2023-07-08 08:20:47.487796 aidref 13375412X R rec 09793d0f-cc58-4f10-bd98-46971785385d -2023-07-08 08:20:47.616384 2023-07-08 08:20:47.616396 aidref 133765687 R rec e8d6fe61-d8f5-4abf-83bd-c0d97e0b58fd -2023-07-08 08:20:47.740927 2023-07-08 08:20:47.740945 aidref 133823261 R rec 89548512-7348-4ba8-873b-e5f626a379a0 -2023-07-08 08:20:47.877713 2023-07-08 08:20:47.877723 aidref 133972887 R rec 2a3985b1-b36e-4da5-a699-24705c695d26 -2023-07-08 08:20:47.989692 2023-07-08 08:20:47.989703 aidref 134024672 R rec fd2cfc0f-fb95-4651-90b2-9b3a4682ee09 -2023-07-08 08:20:48.103689 2023-07-08 08:20:48.103699 aidref 134273850 R rec 8fd46d36-a892-4666-9736-462f93b081f5 -2023-07-08 08:20:48.229024 2023-07-08 08:20:48.229035 aidref 134382005 R rec 4ee6e901-29b9-4893-a5a1-965115f1fcab -2023-07-08 08:20:48.337349 2023-07-08 08:20:48.337359 aidref 134448251 R rec c62f41a7-c2e1-430e-bec8-96aef0fbb6d7 -2023-07-08 08:20:48.451806 2023-07-08 08:20:48.451822 aidref 134449568 R rec 9213f779-09ca-47cd-8443-60963bbade6c -2023-07-08 08:20:48.575193 2023-07-08 08:20:48.575206 aidref 134489500 R rec 30d589c8-7a67-487c-8298-a5f60c3e3470 -2023-07-08 08:20:48.696767 2023-07-08 08:20:48.696777 aidref 135192013 R rec b829989a-4ac0-449e-ac03-18db30556718 -2023-07-08 08:20:48.806603 2023-07-08 08:20:48.806618 aidref 135315042 R rec c96a1e2e-606f-4173-9063-73274a079fc5 -2023-07-08 08:20:48.935196 2023-07-08 08:20:48.935208 aidref 135562120 R rec dd92f8c2-912b-4917-b196-4a2b68138cc9 -2023-07-08 08:20:49.051887 2023-07-08 08:20:49.051905 aidref 135612934 R rec bb027df1-9c7a-440d-b90f-9cfe7e2a4af1 -2023-07-08 08:20:49.161052 2023-07-08 08:20:49.161067 aidref 135683122 R rec 01bbf5df-465f-4ec2-8c79-718100bf1e1e -2023-07-08 08:20:49.308469 2023-07-08 08:20:49.30848 aidref 135688590 R rec d14ec8e2-2b15-4946-a6d7-da639abb1730 -2023-07-08 08:20:49.430735 2023-07-08 08:20:49.43075 aidref 135736234 R rec 22cab325-08b7-4c63-bbd3-2f63c62231b9 -2023-07-08 08:20:49.564406 2023-07-08 08:20:49.564419 aidref 135975484 R rec ca9f669f-47d9-4a8f-8dad-a4b4802621bb -2023-07-08 08:20:49.676414 2023-07-08 08:20:49.676424 aidref 136123821 R rec 00e21833-2319-4450-bdd7-3873abfdd0a5 -2023-07-08 08:20:49.803658 2023-07-08 08:20:49.803672 aidref 136235212 R rec 480f2dbd-a3a0-4819-bd5f-4fa8c1f82c17 -2023-07-08 08:20:49.916995 2023-07-08 08:20:49.917008 aidref 13632536X R rec ee7988d5-bd12-4ec4-9d73-d6594a405be5 -2023-07-08 08:20:50.035701 2023-07-08 08:20:50.035707 aidref 136495117 R rec 38003d21-d5d8-4bc8-90b6-7e39baf04726 -2023-07-08 08:20:50.163652 2023-07-08 08:20:50.163663 aidref 136556906 R rec 68b4757d-52c9-4234-8684-dfd9f4f74240 -2023-07-08 08:20:50.28435 2023-07-08 08:20:50.284362 aidref 136738850 R rec 75dd1671-f0f5-4f57-9729-7a98ed47040f -2023-07-08 08:20:50.387148 2023-07-08 08:20:50.387158 aidref 136803784 R rec d72d1466-c6a7-4987-b4b2-b3546327c01d -2023-07-08 08:20:50.500591 2023-07-08 08:20:50.500602 aidref 136864279 R rec 0459ebd0-c77b-4cab-b2a0-61df80b1ee96 -2023-07-08 08:20:50.621673 2023-07-08 08:20:50.621685 aidref 136864473 R rec 4fa0edd2-2ee9-47d5-a023-983e0c557a23 -2023-07-08 08:20:50.746592 2023-07-08 08:20:50.746602 aidref 136864554 R rec ef77d495-0365-45fa-997f-752ce6955944 -2023-07-08 08:20:50.866118 2023-07-08 08:20:50.866131 aidref 136893163 R rec 557b2352-50f2-43bc-94af-b0eb681a6895 -2023-07-08 08:20:50.984001 2023-07-08 08:20:50.984012 aidref 137193548 R rec a24742d9-01d0-411a-8f0f-be4fdc904ff7 -2023-07-08 08:20:51.087864 2023-07-08 08:20:51.087877 aidref 137341563 R rec 6f29f38d-2442-4c12-afe9-4b2ba2fda5bc -2023-07-08 08:20:51.226973 2023-07-08 08:20:51.226985 aidref 137405723 R rec 459d2d67-78e0-406a-ac1d-9202ea19d3ea -2023-07-08 08:20:51.356105 2023-07-08 08:20:51.356121 aidref 137424795 R rec b96760b3-adf5-4183-8564-51bc2273166c -2023-07-08 08:20:51.48526 2023-07-08 08:20:51.485272 aidref 137586248 R rec 52c41bf6-11be-414d-90c0-0961c2cdd40f -2023-07-08 08:20:51.628723 2023-07-08 08:20:51.628735 aidref 137635400 R rec 8f90e571-10b4-4923-8cff-66495e8b29d9 -2023-07-08 08:20:51.743213 2023-07-08 08:20:51.743228 aidref 137657412 R rec 569ded96-3f4f-4ae9-a187-693ea21e0361 -2023-07-08 08:20:51.859126 2023-07-08 08:20:51.859152 aidref 137724780 R rec 7531c147-e99e-434b-a0ca-d7b1470107a9 -2023-07-08 08:20:51.993605 2023-07-08 08:20:51.993616 aidref 137773927 R rec b163305d-f369-468b-a8df-0096393103b9 -2023-07-08 08:20:52.12275 2023-07-08 08:20:52.122761 aidref 137790872 R rec 6e61ae21-84b8-40c4-a56d-b711d5a68edf -2023-07-08 08:20:52.262426 2023-07-08 08:20:52.264216 aidref 138022550 R rec 92827906-ef2e-46de-909e-5c4bb3813b6f -2023-07-08 08:20:52.402574 2023-07-08 08:20:52.402587 aidref 138023468 R rec 0235d803-82f9-4e37-9d41-7951da7871c7 -2023-07-08 08:20:52.53559 2023-07-08 08:20:52.5356 aidref 138484945 R rec b9cac360-ea6d-4957-957c-3a61673dc074 -2023-07-08 08:20:52.650703 2023-07-08 08:20:52.650718 aidref 138508518 R rec 97bd65e2-2e8d-41f4-bbb7-a1b52f921afb -2023-07-08 08:20:52.76608 2023-07-08 08:20:52.766094 aidref 138783578 R rec 1518091b-81a7-49f7-a5a1-3c475a480a88 -2023-07-08 08:20:52.874847 2023-07-08 08:20:52.874862 aidref 138905312 R rec f5dc99f5-4d69-42bc-a76c-1c17c0c90bff -2023-07-08 08:20:52.984951 2023-07-08 08:20:52.984969 aidref 138933871 R rec 9f56be92-3b0b-4140-a636-02a64dc46df2 -2023-07-08 08:20:53.103247 2023-07-08 08:20:53.10326 aidref 13905443X R rec a90194c0-889f-4832-b05a-ff629ced5a35 -2023-07-08 08:20:53.222037 2023-07-08 08:20:53.222048 aidref 139135723 R rec 7a0f8a7c-f21d-4110-b777-f793af14a2c6 -2023-07-08 08:20:53.326864 2023-07-08 08:20:53.326874 aidref 139148256 R rec 00840830-2959-464d-9d50-8cf46148e4e8 -2023-07-08 08:20:53.459311 2023-07-08 08:20:53.459326 aidref 139175520 R rec 164760e9-669f-448b-81e2-426f91b9b51b -2023-07-08 08:20:53.577089 2023-07-08 08:20:53.5771 aidref 139416846 R rec 0409c7d9-877b-4aff-a12d-ecdb339659da -2023-07-08 08:20:53.71949 2023-07-08 08:20:53.719503 aidref 139490752 R rec 1a1f2c08-2191-4e29-9d21-cd3755b52afb -2023-07-08 08:20:53.826906 2023-07-08 08:20:53.826918 aidref 13949992X R rec 68c50f59-65ea-44f2-ab35-527b58e0e5eb -2023-07-08 08:20:53.950179 2023-07-08 08:20:53.950194 aidref 139513760 R rec abf86b18-e8aa-48df-af42-cbbd62381358 -2023-07-08 08:20:54.053748 2023-07-08 08:20:54.053763 aidref 139752528 R rec 5fd64984-0f63-4db2-930c-8eb2efb64adc -2023-07-08 08:20:54.193028 2023-07-08 08:20:54.193043 aidref 139755969 R rec 9b080e3f-0aeb-4327-ae82-62fdfe37d366 -2023-07-08 08:20:54.338779 2023-07-08 08:20:54.338792 aidref 139815201 R rec 75656ab3-9d60-4eae-a4e2-a0045b401edb -2023-07-08 08:20:54.465551 2023-07-08 08:20:54.465556 aidref 139830383 R rec 501843f3-23ac-45a1-b688-e66b460c72b7 -2023-07-08 08:20:54.557579 2023-07-08 08:20:54.557584 aidref 139890629 R rec 8c50eac6-c0e8-44c2-b029-ad7d1832b2a7 -2023-07-08 08:20:54.632649 2023-07-08 08:20:54.632654 aidref 139975055 R rec 62e0b7de-8f29-4e49-bf5b-e55c8d5495e7 -2023-07-08 08:20:54.703568 2023-07-08 08:20:54.703575 aidref 140038493 R rec 26e1856d-12f4-4e9c-a522-073359e780f8 -2023-07-08 08:20:54.777618 2023-07-08 08:20:54.777623 aidref 140057196 R rec f5f0a836-787b-4ee5-9190-4a812d9e30c6 -2023-07-08 08:20:54.851663 2023-07-08 08:20:54.851669 aidref 140162070 R rec 28be32da-9126-4675-bac8-664e84fd8df0 -2023-07-08 08:20:54.93562 2023-07-08 08:20:54.935631 aidref 140317414 R rec d3062e6c-a1bc-4dec-bac4-2b40b8bfbeb4 -2023-07-08 08:20:55.032728 2023-07-08 08:20:55.032735 aidref 140354336 R rec 93e0c1a8-a058-43cd-bdfd-a18bc0c02d6c -2023-07-08 08:20:55.131929 2023-07-08 08:20:55.131935 aidref 140407235 R rec 9ee3daca-fa0e-40bb-8177-b60107bcfa5d -2023-07-08 08:20:55.220155 2023-07-08 08:20:55.220167 aidref 140489436 R rec 69f1ac4a-4e87-4152-b837-83c01cf68ece -2023-07-08 08:20:55.318802 2023-07-08 08:20:55.318815 aidref 140494383 R rec 9d48f376-a9d9-4c46-a731-976b6a263a1c -2023-07-08 08:20:55.427307 2023-07-08 08:20:55.427325 aidref 140558756 R rec 237112c4-ee33-402c-a271-0175fb3e61b7 -2023-07-08 08:20:55.51499 2023-07-08 08:20:55.514996 aidref 140708987 R rec d13b0f14-b322-4c50-9bf8-87f4a9cc0807 -2023-07-08 08:20:55.618563 2023-07-08 08:20:55.618568 aidref 140773118 R rec 43f44d06-cb25-4572-b5ef-c4767c61518e -2023-07-08 08:20:55.709915 2023-07-08 08:20:55.709925 aidref 140821325 R rec ea7f36cd-882a-4710-8ae0-30d72df5b373 -2023-07-08 08:20:55.808419 2023-07-08 08:20:55.808434 aidref 142598542 R rec 2b9079e7-e11f-4a0b-aca0-8578cf3caee6 -2023-07-08 08:20:55.906636 2023-07-08 08:20:55.906651 aidref 142611379 R rec 6f7bae37-ec66-43e7-8ed0-1b9e27b07c31 -2023-07-08 08:20:56.00187 2023-07-08 08:20:56.001885 aidref 142638145 R rec 0725e4eb-d5c4-4a8b-b9cd-bd2e789ff611 -2023-07-08 08:20:56.08418 2023-07-08 08:20:56.084186 aidref 142668745 R rec 4bf275c9-cea6-4468-b6c2-0f82c766ce8c -2023-07-08 08:20:56.157633 2023-07-08 08:20:56.157636 aidref 142741299 R rec 8f8c1443-5b93-40c3-a601-756f96300622 -2023-07-08 08:20:56.248701 2023-07-08 08:20:56.248706 aidref 142838411 R rec d754bd66-19f7-440f-bfc5-778b3834eb07 -2023-07-08 08:20:56.355369 2023-07-08 08:20:56.355385 aidref 142843229 R rec ee4d1023-0ef2-49d4-9a78-cf297425d057 -2023-07-08 08:20:56.444669 2023-07-08 08:20:56.444685 aidref 142877832 R rec 775352ce-caf5-4a7e-8d4e-b36d7c3870af -2023-07-08 08:20:56.54911 2023-07-08 08:20:56.549116 aidref 142918342 R rec 337f4310-c56c-4b6a-ba78-57c3bbed1246 -2023-07-08 08:20:56.61453 2023-07-08 08:20:56.614534 aidref 14299443X R rec 8f58d065-e2b1-4445-b8b3-8a9ab87385d7 -2023-07-08 08:20:56.685421 2023-07-08 08:20:56.685428 aidref 142996734 R rec 45b721dd-20cd-4246-9667-ea420389679f -2023-07-08 08:20:56.754513 2023-07-08 08:20:56.754518 aidref 143028537 R rec 8daef28b-55e8-410b-ac97-27cf677f9c68 -2023-07-08 08:20:56.822473 2023-07-08 08:20:56.822479 aidref 143076310 R rec d6fcf2df-2935-4c1b-89fc-5fbf22be8dff -2023-07-08 08:20:56.891822 2023-07-08 08:20:56.891827 aidref 143098713 R rec 00f07369-6dd5-47d9-8861-7e3423a6c487 -2023-07-08 08:20:56.953804 2023-07-08 08:20:56.953809 aidref 143120743 R rec cb14b903-e1b1-45e6-9ba9-ca067dc412f8 -2023-07-08 08:20:57.025084 2023-07-08 08:20:57.025091 aidref 143151851 R rec 70b05313-7193-4d15-a4a5-1f230a0ab677 -2023-07-08 08:20:57.108525 2023-07-08 08:20:57.108543 aidref 143329790 R rec 9b1287ac-4390-49fe-8ab5-2c5017154931 -2023-07-08 08:20:57.218065 2023-07-08 08:20:57.218075 aidref 143330772 R rec 95a6a673-a937-46b9-9c60-812ebbb23455 -2023-07-08 08:20:57.312361 2023-07-08 08:20:57.312367 aidref 143403826 R rec 8c73b25a-3293-4aac-882b-e79e01d504d6 -2023-07-08 08:20:57.38963 2023-07-08 08:20:57.389646 aidref 143470280 R rec b457251c-337a-4cb2-8778-b76df701d976 -2023-07-08 08:20:57.485651 2023-07-08 08:20:57.485657 aidref 143860747 R rec 28a6e199-b374-4c39-8ebe-43de67397c64 -2023-07-08 08:20:57.569168 2023-07-08 08:20:57.569173 aidref 144467909 R rec da7281ea-8ffe-4729-8906-ee0b6a740e54 -2023-07-08 08:20:57.649749 2023-07-08 08:20:57.649755 aidref 144487179 R rec 7385bdd8-3d8c-4804-b13a-d6a970c528a7 -2023-07-08 08:20:57.737244 2023-07-08 08:20:57.737255 aidref 144499401 R rec 3f9969b7-ac00-4a82-be9a-ee3462c33baf -2023-07-08 08:20:57.826894 2023-07-08 08:20:57.826906 aidref 144580403 R rec eed4d1b2-867f-4fbc-9b8a-32b6c59aaeba -2023-07-08 08:20:57.91633 2023-07-08 08:20:57.916336 aidref 144614421 R rec 2be966e0-a957-44ce-a58d-88998a9ac0f1 -2023-07-08 08:20:58.008338 2023-07-08 08:20:58.008348 aidref 144636077 R rec e9abbc9c-003c-4d90-a929-0ec4dfb90bfb -2023-07-08 08:20:58.086199 2023-07-08 08:20:58.086255 aidref 145090515 R rec 068e2501-444d-449c-acd2-f7ff0bbd163f -2023-07-08 08:20:58.168591 2023-07-08 08:20:58.168601 aidref 145209512 R rec cef716d6-631c-4f2c-b298-5f47b2271ca2 -2023-07-08 08:20:58.260212 2023-07-08 08:20:58.260227 aidref 145286444 R rec 1feb8878-873c-4404-8e02-38837fee39bb -2023-07-08 08:20:58.366501 2023-07-08 08:20:58.366508 aidref 145296741 R rec 6c248ee3-a2c7-40a1-8cae-f35bc1254825 -2023-07-08 08:20:58.458105 2023-07-08 08:20:58.45812 aidref 145350177 R rec fcbf229f-1f72-4c17-95f2-d364ae70eb1a -2023-07-08 08:20:58.534224 2023-07-08 08:20:58.534236 aidref 145351297 R rec 51a2111d-9536-4044-9ac1-9dd15cdf344c -2023-07-08 08:20:58.622981 2023-07-08 08:20:58.622987 aidref 145373487 R rec 151bec79-cb46-4823-b589-b77f3f802baf -2023-07-08 08:20:58.702778 2023-07-08 08:20:58.702789 aidref 145630218 R rec aaa4ff1e-dc63-47c6-90a3-01f21a8bd2b1 -2023-07-08 08:20:58.78758 2023-07-08 08:20:58.787591 aidref 145636496 R rec d10a305a-a268-4b1b-906f-5a7ee2675168 -2023-07-08 08:20:58.880802 2023-07-08 08:20:58.880808 aidref 145661806 R rec 31f8dc3d-7238-406d-b352-1e3bdcec9ccc -2023-07-08 08:20:58.981182 2023-07-08 08:20:58.981187 aidref 14566841X R rec 00797522-5f29-4544-9f05-772bd7063a7b -2023-07-08 08:20:59.06961 2023-07-08 08:20:59.069621 aidref 145729613 R rec 9888f4e9-1a94-4792-b644-47cc1f53c010 -2023-07-08 08:20:59.178898 2023-07-08 08:20:59.178909 aidref 14577838X R rec 966057df-7cdb-4a9c-945e-4ec66ceedd03 -2023-07-08 08:20:59.275189 2023-07-08 08:20:59.275217 aidref 145888185 R rec 6f4fdde2-9cfe-4374-a216-7b1a686c4159 -2023-07-08 08:20:59.366411 2023-07-08 08:20:59.366422 aidref 145959783 R rec c79a27db-5139-4255-9078-12205f0aadbf -2023-07-08 08:20:59.459213 2023-07-08 08:20:59.459226 aidref 146054210 R rec 730890fe-8106-48e1-be0b-e5591935e980 -2023-07-08 08:20:59.548905 2023-07-08 08:20:59.548913 aidref 146086457 R rec 9e24bd19-d968-40ae-80d7-e07033deddd1 -2023-07-08 08:20:59.64483 2023-07-08 08:20:59.644842 aidref 146148754 R rec 7b64833b-446b-4552-8bcf-de13cd382703 -2023-07-08 08:20:59.750169 2023-07-08 08:20:59.750175 aidref 146270401 R rec f32b0d2f-7a83-47e8-9919-41651a16a693 -2023-07-08 08:20:59.867325 2023-07-08 08:20:59.867338 aidref 146872584 R rec ca52836e-2d9c-4157-a97d-fadfc15879a9 -2023-07-08 08:20:59.961252 2023-07-08 08:20:59.961267 aidref 146874595 R rec 8a1513a7-7a5a-4955-8ad0-e90ad682ad60 -2023-07-08 08:21:00.060485 2023-07-08 08:21:00.060496 aidref 146985109 R rec a2c9f2c5-ad49-40e4-a05a-be184650471c -2023-07-08 08:21:00.152869 2023-07-08 08:21:00.15288 aidref 147004268 R rec 7830c858-c36e-4602-9785-cf25ef806b99 -2023-07-08 08:21:00.237528 2023-07-08 08:21:00.237539 aidref 147054672 R rec e90d2232-cb12-4a6c-a6bf-eebacdf8c636 -2023-07-08 08:21:00.323486 2023-07-08 08:21:00.3235 aidref 147179955 R rec 180fa5c1-07d6-421d-aae2-8f2e64d229d2 -2023-07-08 08:21:00.409058 2023-07-08 08:21:00.409069 aidref 147233429 R rec f33401b4-22e0-485e-8e7f-293eb502f939 -2023-07-08 08:21:00.510443 2023-07-08 08:21:00.510453 aidref 147297192 R rec 26abf5dd-4dde-47b8-8503-6f37854fbb20 -2023-07-08 08:21:00.599104 2023-07-08 08:21:00.599112 aidref 147331781 R rec f3bc1524-d387-40b8-b994-251047031919 -2023-07-08 08:21:00.6945 2023-07-08 08:21:00.694514 aidref 147383579 R rec 2e98f951-b3c3-498e-8365-093e15478cc6 -2023-07-08 08:21:00.788254 2023-07-08 08:21:00.788267 aidref 147406889 R rec e71c3d6f-d219-4fd4-9c0f-8671287e8e91 -2023-07-08 08:21:00.906169 2023-07-08 08:21:00.906191 aidref 147465885 R rec 1011c16c-1f46-4a9a-92db-7c77bc042c0d -2023-07-08 08:21:01.005042 2023-07-08 08:21:01.005056 aidref 147528712 R rec 427f1395-e1d7-4798-8aed-7adcd167c475 -2023-07-08 08:21:01.105509 2023-07-08 08:21:01.10552 aidref 147644305 R rec 75f78e67-e874-4c78-97e4-8edacbb41041 -2023-07-08 08:21:01.210429 2023-07-08 08:21:01.21044 aidref 147700094 R rec fb753bdb-fee0-4eae-8b3e-e976f41a5ff7 -2023-07-08 08:21:01.307121 2023-07-08 08:21:01.307133 aidref 147759420 R rec cbf5e9aa-3adb-4450-9338-4d6074179a0c -2023-07-08 08:21:01.407608 2023-07-08 08:21:01.407619 aidref 147906423 R rec d348beec-1298-48a7-8249-0fcd8d9a4596 -2023-07-08 08:21:01.508875 2023-07-08 08:21:01.508888 aidref 147934540 R rec ed8f27db-8754-4f5e-9bfc-210440fff7cd -2023-07-08 08:21:01.60568 2023-07-08 08:21:01.605685 aidref 148064884 R rec 12088399-fbdd-44ae-83a5-431e64d1388a -2023-07-08 08:21:01.699942 2023-07-08 08:21:01.699947 aidref 148113761 R rec f91823a3-59a5-412f-aa59-e92dc10eeb8e -2023-07-08 08:21:01.779377 2023-07-08 08:21:01.779382 aidref 148169643 R rec 35957f19-c32b-4671-b55f-b15c8ee57dae -2023-07-08 08:21:01.858745 2023-07-08 08:21:01.858764 aidref 148202330 R rec 66342170-2cdc-4c64-8dd8-aa58a5a066f1 -2023-07-08 08:21:01.945819 2023-07-08 08:21:01.945825 aidref 148265286 R rec b534898b-5a6e-4737-a7ca-3a099b84502e -2023-07-08 08:21:02.01795 2023-07-08 08:21:02.017961 aidref 148350887 R rec e7c77070-b4d4-49ea-9639-dc6aa0d51084 -2023-07-08 08:21:02.093059 2023-07-08 08:21:02.093064 aidref 148352006 R rec d824c375-8e38-4647-a07d-7a963458a281 -2023-07-08 08:21:02.184394 2023-07-08 08:21:02.184406 aidref 148411754 R rec 6d5f71cd-6eb1-4001-8039-0513f04fb826 -2023-07-08 08:21:02.257638 2023-07-08 08:21:02.257646 aidref 148443230 R rec 69c1b537-9c9b-4c01-a678-1b877ced3930 -2023-07-08 08:21:02.325096 2023-07-08 08:21:02.325109 aidref 148457568 R rec 900cc6cf-cafc-42a0-92fa-0a7fc4cf87e7 -2023-07-08 08:21:02.398697 2023-07-08 08:21:02.398703 aidref 148462081 R rec 179e0e95-cd30-46c2-b3ed-36a7a07dc73e -2023-07-08 08:21:02.482173 2023-07-08 08:21:02.482178 aidref 148468020 R rec c60425e9-ef6e-43ec-8e53-783250c2a5ce -2023-07-08 08:21:02.548959 2023-07-08 08:21:02.548964 aidref 148481418 R rec bb826a18-bb2d-4bca-b759-2ba7312fbe04 -2023-07-08 08:21:02.614389 2023-07-08 08:21:02.614397 aidref 14849952X R rec 0676f49a-ea8a-40f4-8808-79f9be629d60 -2023-07-08 08:21:02.689175 2023-07-08 08:21:02.689181 aidref 148509088 R rec e7020725-c031-4d84-9b3f-7e84aad7b9f8 -2023-07-08 08:21:02.758523 2023-07-08 08:21:02.758541 aidref 148637450 R rec f8695014-1522-4256-8803-abd8aebc07f5 -2023-07-08 08:21:02.840788 2023-07-08 08:21:02.840804 aidref 14869506X R rec 345a742f-31a2-42e0-a784-b4d2f42c3080 -2023-07-08 08:21:02.915542 2023-07-08 08:21:02.915547 aidref 148702090 R rec 25c4a2bf-bd8f-47ad-a6b8-2302dcc63f4b -2023-07-08 08:21:02.985307 2023-07-08 08:21:02.985312 aidref 148746349 R rec f4e2820d-11ce-44af-ad8a-1f50238dc6ac -2023-07-08 08:21:03.077115 2023-07-08 08:21:03.07713 aidref 148754899 R rec 9b19b282-64b9-4469-a34a-d486906609b0 -2023-07-08 08:21:03.171678 2023-07-08 08:21:03.171689 aidref 148755097 R rec d40dc809-dccf-4f49-9467-35f1a3c4f7d4 -2023-07-08 08:21:03.260938 2023-07-08 08:21:03.26095 aidref 148766587 R rec e1643d98-7af4-4b96-baa2-e09af95abab4 -2023-07-08 08:21:03.338168 2023-07-08 08:21:03.338174 aidref 148833101 R rec d7908778-950d-4016-b97a-7578f0371fa3 -2023-07-08 08:21:03.418607 2023-07-08 08:21:03.418613 aidref 148842836 R rec ead8843f-b19c-4601-addd-f6133de7d31c -2023-07-08 08:21:03.4921 2023-07-08 08:21:03.492105 aidref 148913679 R rec 8458ee8a-adda-48f3-82b2-8eb4653cd3fa -2023-07-08 08:21:03.566348 2023-07-08 08:21:03.566355 aidref 148935710 R rec 25e8b038-6eab-478c-a668-5edb850bdd19 -2023-07-08 08:21:03.658084 2023-07-08 08:21:03.65809 aidref 14894227X R rec 13b2f277-5197-4edf-9bc5-b4a5144341ad -2023-07-08 08:21:03.736193 2023-07-08 08:21:03.736199 aidref 148944000 R rec 1dc6dea3-bbb5-4d4f-aac8-d8578e0aa2c0 -2023-07-08 08:21:03.80156 2023-07-08 08:21:03.801571 aidref 149110804 R rec 82133181-6218-4aff-8027-2569df6da383 -2023-07-08 08:21:03.883188 2023-07-08 08:21:03.883196 aidref 149112866 R rec 00874040-8e90-4ff3-9242-bc669d605abd -2023-07-08 08:21:03.970365 2023-07-08 08:21:03.970383 aidref 149224516 R rec 525f725a-d78f-446f-a6c7-bee27486c8e5 -2023-07-08 08:21:04.064273 2023-07-08 08:21:04.064278 aidref 149233949 R rec bbff4a40-f807-4c2d-927b-aff375c058fa -2023-07-08 08:21:04.147007 2023-07-08 08:21:04.147012 aidref 149252161 R rec 1451ce3f-3487-477d-81bc-7d664c500b11 -2023-07-08 08:21:04.214423 2023-07-08 08:21:04.214428 aidref 149264380 R rec de03c441-05ac-40ca-95c5-c2477d9d8d42 -2023-07-08 08:21:04.29229 2023-07-08 08:21:04.292306 aidref 14928053X R rec e514eb1d-d025-45d4-bae7-be0454354d8c -2023-07-08 08:21:04.382021 2023-07-08 08:21:04.382027 aidref 149301065 R rec 79c35d48-324c-4cb8-9259-95ccf44ec024 -2023-07-08 08:21:04.466734 2023-07-08 08:21:04.466739 aidref 149357826 R rec 77083496-23df-46c5-99df-306188bee105 -2023-07-08 08:21:04.532627 2023-07-08 08:21:04.532632 aidref 149375565 R rec 4e29e0d6-34a6-4612-bb97-e4c2cd36d0bc -2023-07-08 08:21:04.600664 2023-07-08 08:21:04.600669 aidref 149501706 R rec aea925a8-f7a2-452f-b20e-3a18e4e39d34 -2023-07-08 08:21:04.680486 2023-07-08 08:21:04.680491 aidref 149728182 R rec cd285f63-8fd6-4c8d-8f94-14fc7cf00cf3 -2023-07-08 08:21:04.776857 2023-07-08 08:21:04.776867 aidref 149733100 R rec 9d8f065d-b9b5-4188-8b36-331e29520c3e -2023-07-08 08:21:04.8634 2023-07-08 08:21:04.863414 aidref 149834802 R rec dcea5c84-4825-4b9e-b425-26d3f5face9c -2023-07-08 08:21:04.950202 2023-07-08 08:21:04.95021 aidref 149877706 R rec 22a554e8-b8bd-4719-90e9-d8275966bc64 -2023-07-08 08:21:05.028436 2023-07-08 08:21:05.028587 aidref 149944586 R rec 1b5a31ec-4046-422b-9004-f4da4a96789f -2023-07-08 08:21:05.128324 2023-07-08 08:21:05.128335 aidref 149955847 R rec fc86007e-5d4b-4971-9b06-fdd4a1d42746 -2023-07-08 08:21:05.2352 2023-07-08 08:21:05.235211 aidref 149968302 R rec 2e4feadd-a150-4977-aa2c-9a12832bf70b -2023-07-08 08:21:05.317987 2023-07-08 08:21:05.317999 aidref 149990871 R rec 823579e3-1f57-488a-b13f-5e782ddecfd3 -2023-07-08 08:21:05.406066 2023-07-08 08:21:05.406078 aidref 149999399 R rec d2bc89fb-6242-4971-92a6-14be9a0a1c57 -2023-07-08 08:21:05.506416 2023-07-08 08:21:05.506431 aidref 150102836 R rec b6759b49-9e06-4124-8a86-e7c17744d5c1 -2023-07-08 08:21:05.582534 2023-07-08 08:21:05.582539 aidref 150196261 R rec 3456fc7e-1353-4953-9e68-e4b8b8e06ad4 -2023-07-08 08:21:05.666326 2023-07-08 08:21:05.66633 aidref 150296541 R rec 96bdae26-e5c0-41bb-af7a-c0a168724a0b -2023-07-08 08:21:05.76514 2023-07-08 08:21:05.76515 aidref 150503717 R rec 6f95fa65-4b0c-4e45-8502-2777ad7d5a29 -2023-07-08 08:21:05.86548 2023-07-08 08:21:05.865491 aidref 150552343 R rec 762c8e25-9ea8-49e2-ad24-61d99319eda9 -2023-07-08 08:21:05.955671 2023-07-08 08:21:05.955685 aidref 150572492 R rec 7cfc45c8-1c9d-4d3b-a815-415c7dc87bc9 -2023-07-08 08:21:06.02902 2023-07-08 08:21:06.029029 aidref 150592884 R rec a9204151-b87a-4802-992e-05ce1d9e1bbf -2023-07-08 08:21:06.111752 2023-07-08 08:21:06.111771 aidref 150599811 R rec 426b534a-0ea6-4bf3-9d40-8aa0256e5c6b -2023-07-08 08:21:06.20659 2023-07-08 08:21:06.206601 aidref 150610203 R rec 9d51779d-c0c2-47d4-9375-736c34a5ad52 -2023-07-08 08:21:06.292961 2023-07-08 08:21:06.292976 aidref 150630085 R rec 96dd4fd6-db90-44e3-95a3-29c7770b78c9 -2023-07-08 08:21:06.382049 2023-07-08 08:21:06.382054 aidref 150685793 R rec 0ada59f8-71b6-4ccd-8b7d-d246c605aeb4 -2023-07-08 08:21:06.472364 2023-07-08 08:21:06.472379 aidref 150700768 R rec 8b17deb7-8ac3-4b6f-955a-c5ab6c960ac1 -2023-07-08 08:21:06.551016 2023-07-08 08:21:06.551021 aidref 150724527 R rec 5f495d7e-463d-45d4-8b64-1220de8baed7 -2023-07-08 08:21:06.644235 2023-07-08 08:21:06.64425 aidref 150813325 R rec 90be7dcd-4290-4bd6-8159-8fcfc9f4e26f -2023-07-08 08:21:06.740572 2023-07-08 08:21:06.740583 aidref 150840691 R rec a0c0ccdb-f79c-4885-a9e9-efab63307177 -2023-07-08 08:21:06.843632 2023-07-08 08:21:06.843643 aidref 151028702 R rec 265d8ecc-c104-4416-9101-f2e5f2943b16 -2023-07-08 08:21:06.931358 2023-07-08 08:21:06.931364 aidref 15117430X R rec 035cf718-e503-4de1-aafe-a597e6035c46 -2023-07-08 08:21:07.028748 2023-07-08 08:21:07.028761 aidref 151217742 R rec bbdd0bf1-34f1-4afc-9ce8-6908e775465b -2023-07-08 08:21:07.110707 2023-07-08 08:21:07.11072 aidref 151341885 R rec 6b26a477-66f9-4f7a-8765-99f65482e466 -2023-07-08 08:21:07.186009 2023-07-08 08:21:07.186015 aidref 151481733 R rec eeefd890-53c9-4f42-a363-3e2c267ca5dd -2023-07-08 08:21:07.267698 2023-07-08 08:21:07.267707 aidref 151508712 R rec 24f0dc28-da7e-45fe-b44b-bfd0af80d944 -2023-07-08 08:21:07.353593 2023-07-08 08:21:07.353605 aidref 151580715 R rec be944f02-82c7-40da-810f-4df71b62d5c7 -2023-07-08 08:21:07.440823 2023-07-08 08:21:07.44084 aidref 151775192 R rec 58daaccb-dc9f-4926-8a6a-e3ce55e03c46 -2023-07-08 08:21:07.533974 2023-07-08 08:21:07.533981 aidref 151813590 R rec 2a34a629-323c-468b-b367-68702fe83574 -2023-07-08 08:21:07.623022 2023-07-08 08:21:07.623027 aidref 151884951 R rec cf79a786-43de-4da6-b907-69b8cc31211c -2023-07-08 08:21:07.691594 2023-07-08 08:21:07.691599 aidref 151889511 R rec 08951511-1d49-445c-84c4-51dafe27d931 -2023-07-08 08:21:07.754676 2023-07-08 08:21:07.754679 aidref 152016872 R rec ada12e92-1a50-422e-ba24-042b910a75ba -2023-07-08 08:21:07.834686 2023-07-08 08:21:07.834697 aidref 152049193 R rec 1634a46d-eb78-4cea-b3b7-635af5890ca9 -2023-07-08 08:21:07.927067 2023-07-08 08:21:07.927077 aidref 152071210 R rec 64b429f8-7caf-457c-8517-4a8c4e052a21 -2023-07-08 08:21:07.993188 2023-07-08 08:21:07.993197 aidref 152270345 R rec 74ab0053-dcd3-4d47-896d-a99ae49f1e55 -2023-07-08 08:21:08.07708 2023-07-08 08:21:08.077086 aidref 152355731 R rec d78038ff-20a1-4b9c-aefc-723ad89c8fdc -2023-07-08 08:21:08.162708 2023-07-08 08:21:08.162713 aidref 152491589 R rec c3349ce5-cf0a-40f0-ae27-15be5deb538f -2023-07-08 08:21:08.252015 2023-07-08 08:21:08.252031 aidref 152513655 R rec 48f659f7-5b7e-44ce-9822-26d0c077ce4a -2023-07-08 08:21:08.337538 2023-07-08 08:21:08.337553 aidref 152519866 R rec e14f4bc8-a128-4574-bf02-161f45ead387 -2023-07-08 08:21:08.427582 2023-07-08 08:21:08.427588 aidref 152563024 R rec e840c5ab-f1b4-4ab3-a65b-b964cbf7ff57 -2023-07-08 08:21:08.531199 2023-07-08 08:21:08.531209 aidref 152706038 R rec 5d4d9577-176d-4ee7-bf55-b1dda6803bb9 -2023-07-08 08:21:08.61326 2023-07-08 08:21:08.613266 aidref 152722270 R rec 26f27694-c8a0-4c8e-abfe-d8347ff6f6f1 -2023-07-08 08:21:08.6965 2023-07-08 08:21:08.696505 aidref 15282300X R rec 2f989c97-39ac-41ac-b0ad-50b5be06749d -2023-07-08 08:21:08.781648 2023-07-08 08:21:08.781653 aidref 152852093 R rec 73cd0252-015e-4070-89c6-3e73fe8baf4d -2023-07-08 08:21:08.855458 2023-07-08 08:21:08.855472 aidref 152901353 R rec f61b2292-dfe2-4c13-b15a-68c332527737 -2023-07-08 08:21:08.938745 2023-07-08 08:21:08.938761 aidref 152940898 R rec cd6b720b-d4c2-4525-98e8-075eb07ac77c -2023-07-08 08:21:09.023085 2023-07-08 08:21:09.023096 aidref 15295208X R rec bbd871bb-14ed-46fa-8303-c83b6eb1ef06 -2023-07-08 08:21:09.10273 2023-07-08 08:21:09.102734 aidref 152972250 R rec 1ba24621-5e62-44a9-a502-0c444ccee519 -2023-07-08 08:21:09.167609 2023-07-08 08:21:09.167614 aidref 153081147 R rec 44e45ae4-2124-4ff3-8870-cdb4c654b865 -2023-07-08 08:21:09.248803 2023-07-08 08:21:09.248808 aidref 153136480 R rec e6375f07-2b10-4520-aad3-7c28e9e9796e -2023-07-08 08:21:09.336273 2023-07-08 08:21:09.336285 aidref 153410647 R rec e212e89b-d90f-462c-8656-cf11d5d3fdcd -2023-07-08 08:21:09.434308 2023-07-08 08:21:09.434319 aidref 153446544 R rec b3eabfad-9872-44fb-bf9a-afc2f7892066 -2023-07-08 08:21:09.519885 2023-07-08 08:21:09.519896 aidref 153516631 R rec 35d8c30b-c947-4568-a9f0-1375836a3b09 -2023-07-08 08:21:09.615706 2023-07-08 08:21:09.615711 aidref 153533056 R rec 4aab6a70-9f39-45da-8245-e5ce2b328de1 -2023-07-08 08:21:09.70698 2023-07-08 08:21:09.706991 aidref 153541342 R rec 16a07ef4-48a9-4ae3-b9cc-2cc5ec52c9d8 -2023-07-08 08:21:09.793637 2023-07-08 08:21:09.793643 aidref 153546247 R rec bcc09d3d-6008-4077-b70e-a60cf12d512a -2023-07-08 08:21:09.874603 2023-07-08 08:21:09.874616 aidref 153613556 R rec c3048b3e-b8de-4d13-8bbc-70acd8e68e2a -2023-07-08 08:21:09.981814 2023-07-08 08:21:09.981824 aidref 153973145 R rec 8228790a-58c4-4590-94f7-3b7cf29709d3 -2023-07-08 08:21:10.064853 2023-07-08 08:21:10.064859 aidref 15401916X R rec e562fcdb-6c1e-4d3e-8d0e-169e4f3fd68b -2023-07-08 08:21:10.141018 2023-07-08 08:21:10.141033 aidref 154190551 R rec 4234c9c9-4873-412c-bfff-580dfe45efc1 -2023-07-08 08:21:10.231131 2023-07-08 08:21:10.231137 aidref 154659622 R rec af659261-26e1-48f8-9f11-7f9a08f323eb -2023-07-08 08:21:10.31711 2023-07-08 08:21:10.317116 aidref 154744395 R rec 8b9b2dc2-a04e-45ce-976b-50bde042c59d -2023-07-08 08:21:10.408465 2023-07-08 08:21:10.408481 aidref 154778532 R rec ef1b01a3-7ebd-403e-9eb7-e7a94c2e3de1 -2023-07-08 08:21:10.494106 2023-07-08 08:21:10.494117 aidref 154820903 R rec 5015303a-feee-49b5-9029-1963ac476909 -2023-07-08 08:21:10.58596 2023-07-08 08:21:10.585966 aidref 154833649 R rec acc97078-decf-4bd1-a364-7af5f28772bc -2023-07-08 08:21:10.673994 2023-07-08 08:21:10.674 aidref 154889415 R rec 38f6cdfb-8d3f-4b0f-aee4-5894317c806e -2023-07-08 08:21:10.761535 2023-07-08 08:21:10.761546 aidref 154972673 R rec 57f20288-503f-412b-bf7b-4f7f19c907ec -2023-07-08 08:21:10.862377 2023-07-08 08:21:10.862393 aidref 155128965 R rec 262706d6-635a-482d-851d-f43f26f78913 -2023-07-08 08:21:10.961446 2023-07-08 08:21:10.961462 aidref 155289292 R rec 3c5febfb-9061-4dad-9a4a-0079bb4c38c0 -2023-07-08 08:21:11.041345 2023-07-08 08:21:11.041362 aidref 155309668 R rec b9d93bd1-6472-43a8-ba71-95de29701375 -2023-07-08 08:21:11.127809 2023-07-08 08:21:11.127821 aidref 155413163 R rec fec416c4-17b4-4907-911d-1e3983c4c60f -2023-07-08 08:21:11.227716 2023-07-08 08:21:11.227727 aidref 155413414 R rec 3a4e355d-719d-4a9f-8ec4-3ed6e9eb6658 -2023-07-08 08:21:11.332374 2023-07-08 08:21:11.332379 aidref 155519107 R rec fe738b9f-467d-424b-a1e8-408cbfd983d8 -2023-07-08 08:21:11.429764 2023-07-08 08:21:11.429774 aidref 155533797 R rec 61466128-cdf7-49cc-85d0-0993d2092695 -2023-07-08 08:21:11.531092 2023-07-08 08:21:11.531098 aidref 155592122 R rec 8b60fd83-66c2-45d6-a3ac-d24d1a99d680 -2023-07-08 08:21:11.625633 2023-07-08 08:21:11.625638 aidref 155733370 R rec bbbf2652-8c00-42ab-93a2-80cfb493f6e0 -2023-07-08 08:21:11.716463 2023-07-08 08:21:11.716469 aidref 155746936 R rec 33464cc3-4a7b-48f0-abc7-5835571ce399 -2023-07-08 08:21:11.815503 2023-07-08 08:21:11.815513 aidref 155760947 R rec f5e14233-e7d0-4741-940f-d36c64720571 -2023-07-08 08:21:11.917778 2023-07-08 08:21:11.917794 aidref 155852639 R rec 351fefcc-4fc3-4a43-a3fa-34ea19ec3434 -2023-07-08 08:21:12.019857 2023-07-08 08:21:12.019868 aidref 15589899X R rec a6820744-25b9-4a16-b6e3-5d40c6fff317 -2023-07-08 08:21:12.10849 2023-07-08 08:21:12.108501 aidref 155925261 R rec fb132a03-2089-4f9e-89eb-44988ffb1cf8 -2023-07-08 08:21:12.222196 2023-07-08 08:21:12.22221 aidref 155933604 R rec 94624c4f-3073-458c-bd1d-ab7abcecb716 -2023-07-08 08:21:12.328856 2023-07-08 08:21:12.328866 aidref 155942204 R rec 142ce9fd-d510-4a81-922e-048fcff5a9d2 -2023-07-08 08:21:12.417324 2023-07-08 08:21:12.417331 aidref 156048701 R rec 7f4b2581-cc67-48af-9b84-ab372dff9908 -2023-07-08 08:21:12.525645 2023-07-08 08:21:12.525655 aidref 156053241 R rec 092dcdea-70f9-44a0-bc71-745078efed79 -2023-07-08 08:21:12.619887 2023-07-08 08:21:12.619893 aidref 156252813 R rec d1f1ba04-b7cc-4ca9-98b9-7f310c5c388d -2023-07-08 08:21:12.71499 2023-07-08 08:21:12.714994 aidref 156288435 R rec 29809feb-2b41-4499-9243-aac4d5bc2e06 -2023-07-08 08:21:12.798854 2023-07-08 08:21:12.798859 aidref 156335336 R rec aec2755a-cc5a-435f-aa07-3f98364c60e9 -2023-07-08 08:21:12.896526 2023-07-08 08:21:12.896536 aidref 156363690 R rec 7309e5a6-54e0-419d-a26f-2af5b5d5cde2 -2023-07-08 08:21:12.988086 2023-07-08 08:21:12.988092 aidref 156539063 R rec bef2c464-d436-4d07-b813-fca9acdbcc2c -2023-07-08 08:21:13.061289 2023-07-08 08:21:13.061295 aidref 156563932 R rec b0817dc6-381e-455d-8139-0d0625aee16e -2023-07-08 08:21:13.150048 2023-07-08 08:21:13.150053 aidref 156590948 R rec 157d20a0-6c3c-4987-b35b-776814ede68f -2023-07-08 08:21:13.238138 2023-07-08 08:21:13.238148 aidref 156838524 R rec dd60f257-38a2-48b4-98bb-3dfabe8a05f8 -2023-07-08 08:21:13.333869 2023-07-08 08:21:13.333881 aidref 156838613 R rec 2ee39ee3-ed2d-44f6-972c-c4602e236a72 -2023-07-08 08:21:13.431298 2023-07-08 08:21:13.431304 aidref 156954761 R rec 24a85583-24d6-4afd-bbac-7813c7937a90 -2023-07-08 08:21:13.516433 2023-07-08 08:21:13.516438 aidref 15704856X R rec 85c17578-0231-4314-a1a4-1a09f9264e6d -2023-07-08 08:21:13.58905 2023-07-08 08:21:13.589054 aidref 157222330 R rec ef74d8b6-6084-41ee-b0a7-7f85f8354503 -2023-07-08 08:21:13.662785 2023-07-08 08:21:13.662797 aidref 157227170 R rec 143bb7fc-1cb6-416b-9ef8-6bac65e35d46 -2023-07-08 08:21:13.776211 2023-07-08 08:21:13.776222 aidref 157315088 R rec d51c41aa-354c-47a8-822e-f3430dd1c239 -2023-07-08 08:21:13.864111 2023-07-08 08:21:13.86412 aidref 157332047 R rec 9b73255a-3a6f-4805-a040-2f00b7cf11b7 -2023-07-08 08:21:13.95719 2023-07-08 08:21:13.957201 aidref 157333507 R rec 33174162-2aae-4c03-9bbd-51e65ee22c8c -2023-07-08 08:21:14.052592 2023-07-08 08:21:14.052597 aidref 157526860 R rec a5e0d662-fcbc-4970-979a-497c5062daba -2023-07-08 08:21:14.138987 2023-07-08 08:21:14.138997 aidref 157650154 R rec 2d85cc1d-b987-43e7-951b-221c4d2a3ccf -2023-07-08 08:21:14.222368 2023-07-08 08:21:14.222381 aidref 157856283 R rec e9649142-228a-476a-bc18-72bdf69f0fc3 -2023-07-08 08:21:14.319129 2023-07-08 08:21:14.319143 aidref 157881997 R rec 420676ea-de07-4604-b96a-6c54139af882 -2023-07-08 08:21:14.410907 2023-07-08 08:21:14.410918 aidref 157995860 R rec 4f6597a4-d1f3-43de-a3e7-ab4590c6b5e5 -2023-07-08 08:21:14.505926 2023-07-08 08:21:14.505932 aidref 158085647 R rec 121260e2-0ae0-4671-95bb-ea4417aa04bf -2023-07-08 08:21:14.602965 2023-07-08 08:21:14.60297 aidref 158118294 R rec 68c37aa5-11b6-4154-9a9f-bde7809b06fb -2023-07-08 08:21:14.682202 2023-07-08 08:21:14.682212 aidref 158365186 R rec be0a3ec5-33de-421f-8efd-6dbcf6ce103f -2023-07-08 08:21:14.767113 2023-07-08 08:21:14.767125 aidref 158552180 R rec 414d2c7e-dc3f-408b-9c64-01e94299ebc1 -2023-07-08 08:21:14.865378 2023-07-08 08:21:14.865387 aidref 158638247 R rec 90d60c4e-287e-41ca-9b3f-a112e6fe839e -2023-07-08 08:21:14.960558 2023-07-08 08:21:14.960569 aidref 158762274 R rec edda78e8-a57e-4850-a6ad-675c5776386c -2023-07-08 08:21:15.048536 2023-07-08 08:21:15.048542 aidref 158778235 R rec d38af590-147a-4681-ad13-a73fdad817c4 -2023-07-08 08:21:15.147181 2023-07-08 08:21:15.147186 aidref 158991583 R rec d952128b-6262-479d-b615-76ad883d67e6 -2023-07-08 08:21:15.231981 2023-07-08 08:21:15.231988 aidref 158996577 R rec 1bf10d3d-09bb-443c-8b2c-dc934993137e -2023-07-08 08:21:15.315891 2023-07-08 08:21:15.315897 aidref 159184495 R rec 23e8d027-c6ac-4103-9017-7f88618c56c0 -2023-07-08 08:21:15.401101 2023-07-08 08:21:15.401112 aidref 159278201 R rec be1cce9f-9c21-45de-8af8-44ec88760d4b -2023-07-08 08:21:15.492935 2023-07-08 08:21:15.49295 aidref 159640989 R rec f7779d3e-c5d9-4779-9fe5-425e02d40ffd -2023-07-08 08:21:15.569548 2023-07-08 08:21:15.569558 aidref 159658152 R rec d4caa392-4840-4ed3-ad18-5c74058cfc40 -2023-07-08 08:21:15.661356 2023-07-08 08:21:15.661367 aidref 159687306 R rec d6d4c287-bfd3-43ab-a55c-04c599826931 -2023-07-08 08:21:15.744855 2023-07-08 08:21:15.74487 aidref 159765315 R rec 8ba20554-df73-4683-9e14-5f3d4cbce0c5 -2023-07-08 08:21:15.842055 2023-07-08 08:21:15.842071 aidref 159775744 R rec 6490876e-840c-4eae-9687-7b8279417cfd -2023-07-08 08:21:15.938868 2023-07-08 08:21:15.938883 aidref 159852684 R rec 11f59cc5-8476-4cb5-af0c-95d8f71ab34e -2023-07-08 08:21:16.036935 2023-07-08 08:21:16.036946 aidref 160193974 R rec ed4e2f6a-9c65-4779-9fc9-bb32ac1a7a6a -2023-07-08 08:21:16.121758 2023-07-08 08:21:16.121764 aidref 160196620 R rec 2c577797-c117-4eea-a325-0d56156c2604 -2023-07-08 08:21:16.213955 2023-07-08 08:21:16.213965 aidref 160342465 R rec 9667411e-a18b-4ad4-9fc0-789cc736c278 -2023-07-08 08:21:16.303848 2023-07-08 08:21:16.303863 aidref 160359619 R rec 287051f4-e883-4680-adb4-13f200dc1bdd -2023-07-08 08:21:16.388837 2023-07-08 08:21:16.388852 aidref 160424275 R rec e038be21-672b-43d1-bf3d-b9d2578b8f00 -2023-07-08 08:21:16.480306 2023-07-08 08:21:16.480316 aidref 160613701 R rec 2560bbb7-f9fa-4b02-acd2-19f831b7b36c -2023-07-08 08:21:16.559018 2023-07-08 08:21:16.559023 aidref 160635543 R rec f6859cd2-701e-42bc-a785-42ed7ef5e226 -2023-07-08 08:21:16.655685 2023-07-08 08:21:16.655699 aidref 160773318 R rec a31a4607-3054-419c-a703-dbb19f31e886 -2023-07-08 08:21:16.748479 2023-07-08 08:21:16.748487 aidref 160837065 R rec ff3bc062-f25f-4306-9147-4c289746e2b4 -2023-07-08 08:21:16.842423 2023-07-08 08:21:16.842442 aidref 16113307X R rec 101c1b8f-6808-408a-9e5d-079b3ff57e38 -2023-07-08 08:21:16.949129 2023-07-08 08:21:16.949134 aidref 161148689 R rec 237daa5c-3893-40c6-af0b-ddbe18e1c098 -2023-07-08 08:21:17.037288 2023-07-08 08:21:17.0373 aidref 161301142 R rec cdec73df-3e97-4240-99d1-5f4401ee27e2 -2023-07-08 08:21:17.120907 2023-07-08 08:21:17.120915 aidref 161367070 R rec 68456ea1-d5b9-444d-abdc-d010412aade0 -2023-07-08 08:21:17.231475 2023-07-08 08:21:17.231483 aidref 16165407X R rec 400c2552-0127-496b-8805-7d59fa0de213 -2023-07-08 08:21:17.327378 2023-07-08 08:21:17.327388 aidref 161696325 R rec 52106af5-3b5d-42e2-8fbf-c7b4b1b87d91 -2023-07-08 08:21:17.439488 2023-07-08 08:21:17.439499 aidref 161996302 R rec ac1b5283-b264-47b1-a411-5f30c86f5128 -2023-07-08 08:21:17.520406 2023-07-08 08:21:17.520415 aidref 162046065 R rec a090ad5d-53ce-493a-b0cb-78a7ad49b36e -2023-07-08 08:21:17.604452 2023-07-08 08:21:17.604458 aidref 162138997 R rec 6f91bd4d-7e05-487a-aca7-5be3db39ca9b -2023-07-08 08:21:17.696257 2023-07-08 08:21:17.696272 aidref 162154224 R rec dac99a3a-2ece-4198-be04-71877598fdc0 -2023-07-08 08:21:17.782458 2023-07-08 08:21:17.782464 aidref 16216193X R rec b9adaa56-eb4f-4efe-b280-99594236f5b3 -2023-07-08 08:21:17.883637 2023-07-08 08:21:17.883647 aidref 162196407 R rec 833c6a2a-d111-4620-ba76-c8172539817c -2023-07-08 08:21:17.982485 2023-07-08 08:21:17.982488 aidref 162320264 R rec 39094812-ed7b-4ec0-a890-e40d0066d5fb -2023-07-08 08:21:18.059511 2023-07-08 08:21:18.059517 aidref 162452659 R rec 1efd0abe-3788-4e6a-baec-ad721e0877ce -2023-07-08 08:21:18.147916 2023-07-08 08:21:18.147924 aidref 162460163 R rec db7717bf-6937-490f-a01f-d88bad58b95d -2023-07-08 08:21:18.241863 2023-07-08 08:21:18.241868 aidref 163232857 R rec eac1e150-f637-44bb-9d11-d1c834a38938 -2023-07-08 08:21:18.343878 2023-07-08 08:21:18.343892 aidref 163250030 R rec 25c8258b-e4a1-4fee-8ad5-456254462175 -2023-07-08 08:21:18.445047 2023-07-08 08:21:18.445062 aidref 163880433 R rec 489944d1-1a80-42c2-b687-756c90c63212 -2023-07-08 08:21:18.541647 2023-07-08 08:21:18.541663 aidref 164105301 R rec cc8e8727-2a6b-4f54-8481-bcd930cdb721 -2023-07-08 08:21:18.632627 2023-07-08 08:21:18.632632 aidref 164529640 R rec 1ecc0ae9-361c-4bf8-ab24-b83ca3a0a3ca -2023-07-08 08:21:18.727512 2023-07-08 08:21:18.727528 aidref 164530363 R rec de669b13-425f-4e8b-9068-24b7120f10d7 -2023-07-08 08:21:18.820773 2023-07-08 08:21:18.820789 aidref 164539972 R rec 4065f3f6-7119-467f-9e56-39be2f1ef0a1 -2023-07-08 08:21:18.916644 2023-07-08 08:21:18.91665 aidref 164600620 R rec 247c84eb-d74e-44a6-9e42-0bd438c14d65 -2023-07-08 08:21:19.004149 2023-07-08 08:21:19.005073 aidref 164604820 R rec ba581772-a5ad-47d9-999f-7c0b7243e3ca -2023-07-08 08:21:19.108703 2023-07-08 08:21:19.108718 aidref 164708782 R rec 2ffcb0be-c3dd-499a-97d1-9dfd66c1fe6b -2023-07-08 08:21:19.204548 2023-07-08 08:21:19.204559 aidref 16480224X R rec 36472c72-3d42-4358-9653-d0ed2a0d6b37 -2023-07-08 08:21:19.29729 2023-07-08 08:21:19.297294 aidref 16481079X R rec 5721fe68-a09b-4557-8f63-d290c2cd08eb -2023-07-08 08:21:19.396611 2023-07-08 08:21:19.396616 aidref 164855580 R rec 97d0e3ea-7bd1-4c9d-8164-d25f4e97296e -2023-07-08 08:21:19.493201 2023-07-08 08:21:19.493212 aidref 164948368 R rec 48d7ffeb-6e2e-4645-bc8b-d7e45800c778 -2023-07-08 08:21:19.581122 2023-07-08 08:21:19.58113 aidref 165030968 R rec 83e0b697-5b33-45f4-ade4-ad3703e0dd19 -2023-07-08 08:21:19.666402 2023-07-08 08:21:19.666409 aidref 165099054 R rec 5887605d-b87c-45c9-9f76-aedc876e10a1 -2023-07-08 08:21:19.757316 2023-07-08 08:21:19.757327 aidref 165139455 R rec aa1bc219-b6b7-464c-afc7-846e1fdcaf88 -2023-07-08 08:21:19.842678 2023-07-08 08:21:19.842683 aidref 165153687 R rec b29e25b4-b27e-44b6-a73a-6ce23dd4a8dd -2023-07-08 08:21:19.932934 2023-07-08 08:21:19.932946 aidref 16530569X R rec e85e552c-e0b8-4cc4-8a8e-4340260bad34 -2023-07-08 08:21:20.02916 2023-07-08 08:21:20.029165 aidref 165425229 R rec 06045468-6b75-4b76-921e-a240cad8291a -2023-07-08 08:21:20.13239 2023-07-08 08:21:20.132396 aidref 165647876 R rec 0dc09895-9646-4790-8feb-2275ef36e09d -2023-07-08 08:21:20.217292 2023-07-08 08:21:20.217302 aidref 165825324 R rec edd1e6d3-d72d-4cc6-a299-d17f653ba00d -2023-07-08 08:21:20.30821 2023-07-08 08:21:20.308221 aidref 165842822 R rec 9ac7edeb-0bff-454b-af74-7d5fdc5bbe48 -2023-07-08 08:21:20.396415 2023-07-08 08:21:20.396425 aidref 165846771 R rec 215bcc15-800f-4eab-a383-91b126bfdd22 -2023-07-08 08:21:20.487282 2023-07-08 08:21:20.487292 aidref 166452912 R rec 9521c0ab-1269-458c-8c12-62ccacc18c3f -2023-07-08 08:21:20.565473 2023-07-08 08:21:20.565478 aidref 166452955 R rec c77b267a-61d7-40c0-92fb-7ba1d6ac3f7d -2023-07-08 08:21:20.658407 2023-07-08 08:21:20.658418 aidref 16647729X R rec da3d727b-0522-4bfd-a61b-63eb2cda6b6f -2023-07-08 08:21:20.738567 2023-07-08 08:21:20.738582 aidref 166533971 R rec d19e3f88-6f7f-438b-a163-0d4cddb2b298 -2023-07-08 08:21:20.827408 2023-07-08 08:21:20.827413 aidref 166601551 R rec c56000a3-046c-4896-8762-bc92b6948499 -2023-07-08 08:21:20.917291 2023-07-08 08:21:20.917303 aidref 166827886 R rec 9f941c9c-c9e1-4e9a-8946-1205b008000d -2023-07-08 08:21:21.019056 2023-07-08 08:21:21.019062 aidref 167143565 R rec 33617581-7e2c-43ef-b7f4-a84e8193626b -2023-07-08 08:21:21.109285 2023-07-08 08:21:21.109296 aidref 167149369 R rec b1fcf23d-08bf-449d-bba7-d26c5eab30ed -2023-07-08 08:21:21.208912 2023-07-08 08:21:21.208927 aidref 167228862 R rec 2af9607f-4fc9-4eca-a63b-09196300c374 -2023-07-08 08:21:21.325498 2023-07-08 08:21:21.325512 aidref 16734613X R rec 4106550a-12ce-435d-8b2d-f9151702e1b2 -2023-07-08 08:21:21.429941 2023-07-08 08:21:21.429946 aidref 16737740X R rec 986b4e2b-2cb6-4860-8c77-119f1157ba7b -2023-07-08 08:21:21.520904 2023-07-08 08:21:21.52091 aidref 16746499X R rec 30b2327f-109a-4828-a47e-a64f2c8b0afa -2023-07-08 08:21:21.596246 2023-07-08 08:21:21.596251 aidref 167467549 R rec a2267cfb-c19e-4bed-947f-5bd9e7c51f19 -2023-07-08 08:21:21.680917 2023-07-08 08:21:21.680923 aidref 167597213 R rec bcd48ce8-fce8-48c8-b743-948e19392ec6 -2023-07-08 08:21:21.786406 2023-07-08 08:21:21.786417 aidref 167843052 R rec c2a54f4a-3c9b-4ba1-82ec-0315e6eeb29b -2023-07-08 08:21:21.884435 2023-07-08 08:21:21.884442 aidref 167900587 R rec 9c49afe4-ac01-4461-9aea-5bdce98abd85 -2023-07-08 08:21:21.968695 2023-07-08 08:21:21.968705 aidref 167901842 R rec 2570a5ec-1ef2-4e3e-9a4b-26a7a85aea64 -2023-07-08 08:21:22.055524 2023-07-08 08:21:22.05554 aidref 167994689 R rec 82b4ee9c-9e16-4fac-8a19-8858a9e98fda -2023-07-08 08:21:22.14419 2023-07-08 08:21:22.144201 aidref 168060973 R rec 91d09bd9-2d5f-4025-aa9e-780472266a6e -2023-07-08 08:21:22.221711 2023-07-08 08:21:22.221724 aidref 168391996 R rec 169fb950-f797-44bd-9d02-81b91596fa25 -2023-07-08 08:21:22.311584 2023-07-08 08:21:22.311594 aidref 168510332 R rec 4e17f6dd-3104-4378-8112-c89b6b381fd8 -2023-07-08 08:21:22.396723 2023-07-08 08:21:22.396737 aidref 168633248 R rec abf38974-06b8-4a39-bc43-9a15494a68e9 -2023-07-08 08:21:22.508139 2023-07-08 08:21:22.50815 aidref 168647567 R rec ceb4c703-119d-40aa-be0d-2508312ef001 -2023-07-08 08:21:22.584016 2023-07-08 08:21:22.584026 aidref 168676761 R rec 152f2d2c-960a-4fa7-b7bd-543021b86530 -2023-07-08 08:21:22.667255 2023-07-08 08:21:22.667261 aidref 168926962 R rec b66f376d-49da-4e03-a56e-8ea0beb70fe6 -2023-07-08 08:21:22.753739 2023-07-08 08:21:22.75375 aidref 168968614 R rec d955ca52-f6a2-41a5-b937-360c633741d0 -2023-07-08 08:21:22.851941 2023-07-08 08:21:22.851957 aidref 169159914 R rec d7601a1b-963d-469e-94b4-a00bed3e8c5a -2023-07-08 08:21:22.956221 2023-07-08 08:21:22.956232 aidref 169352501 R rec 0edf225c-fabc-4405-87d6-dfba0c7e1e85 -2023-07-08 08:21:23.044052 2023-07-08 08:21:23.044065 aidref 169383695 R rec 2e5118cd-f6b5-4091-899f-32606ff1826d -2023-07-08 08:21:23.112839 2023-07-08 08:21:23.112847 aidref 16961834X R rec 34766301-482d-40c1-8e7c-958192fb3b37 -2023-07-08 08:21:23.190928 2023-07-08 08:21:23.190946 aidref 169818098 R rec 180044d0-03ac-4ef2-a3dc-3f002ca05546 -2023-07-08 08:21:23.284981 2023-07-08 08:21:23.284991 aidref 169852253 R rec 09a0581a-faa8-44ae-a90e-9787b181b2a6 -2023-07-08 08:21:23.37397 2023-07-08 08:21:23.373989 aidref 169905187 R rec 273d3d41-0e1c-4d47-8c2a-048d06d5b7f4 -2023-07-08 08:21:23.4676 2023-07-08 08:21:23.467605 aidref 17000404X R rec ce6f6509-701e-44a6-b422-3d7f8250274d -2023-07-08 08:21:23.551688 2023-07-08 08:21:23.551698 aidref 170042650 R rec defa5cfe-256c-4df1-b584-8c0940e90e77 -2023-07-08 08:21:23.653637 2023-07-08 08:21:23.653642 aidref 170128687 R rec c1de0416-102e-4b74-9100-f9e692de8a1d -2023-07-08 08:21:23.741885 2023-07-08 08:21:23.741895 aidref 170276708 R rec 51fa7c49-7b7e-4b8a-93e6-4d858d7880c2 -2023-07-08 08:21:23.841439 2023-07-08 08:21:23.841455 aidref 170444368 R rec 684636a6-4587-4198-a91b-5677552292de -2023-07-08 08:21:23.933412 2023-07-08 08:21:23.933418 aidref 170457257 R rec cc9189ea-d25b-4720-a6f1-d5c480f8df4a -2023-07-08 08:21:24.025103 2023-07-08 08:21:24.025108 aidref 170479862 R rec a12ba674-2414-4efb-8e31-dda8f92f5135 -2023-07-08 08:21:24.096882 2023-07-08 08:21:24.096891 aidref 170696413 R rec 5bb12c08-9a08-4150-9581-a84e8be06f77 -2023-07-08 08:21:24.191139 2023-07-08 08:21:24.191148 aidref 170792188 R rec 4f8520a8-8f37-45c0-a2d6-66fc6afaf6e6 -2023-07-08 08:21:24.271198 2023-07-08 08:21:24.271216 aidref 170798828 R rec 231e2471-9afe-4039-8067-6c76a267d4a9 -2023-07-08 08:21:24.358666 2023-07-08 08:21:24.358671 aidref 170804291 R rec 3d81ed2a-3cbb-4eee-92ec-c1864e7a66db -2023-07-08 08:21:24.426508 2023-07-08 08:21:24.426523 aidref 171073444 R rec 251912ee-51b5-4b3b-90e0-4f4ca58517a7 -2023-07-08 08:21:24.515527 2023-07-08 08:21:24.515534 aidref 171330943 R rec 647e7a11-f6d3-43d9-ac04-ed227b2340ba -2023-07-08 08:21:24.600417 2023-07-08 08:21:24.600422 aidref 17141599X R rec 33610236-ef00-4a48-ab27-4d6493aca954 -2023-07-08 08:21:24.692766 2023-07-08 08:21:24.692783 aidref 171790944 R rec 2b102691-8598-48a6-af03-61f12f056e56 -2023-07-08 08:21:24.781748 2023-07-08 08:21:24.781753 aidref 171811534 R rec 0fad8452-5d50-42ee-a188-cf1623cdd09d -2023-07-08 08:21:24.868442 2023-07-08 08:21:24.868454 aidref 172309239 R rec e692c59e-b032-4f00-b95d-3942612d9d17 -2023-07-08 08:21:24.950046 2023-07-08 08:21:24.950051 aidref 172595347 R rec 8706cfd1-7333-4655-94b7-2510cc413665 -2023-07-08 08:21:25.028016 2023-07-08 08:21:25.028021 aidref 172735319 R rec 027ef4be-ff1e-4f90-877e-7381d7de2a90 -2023-07-08 08:21:25.100239 2023-07-08 08:21:25.100245 aidref 174120745 R rec 3ad35c8a-bc52-47db-ba7a-0b7ce50480c9 -2023-07-08 08:21:25.192342 2023-07-08 08:21:25.192357 aidref 174162790 R rec 236a742c-be42-42ad-82b7-214170359cfb -2023-07-08 08:21:25.306333 2023-07-08 08:21:25.306336 aidref 174180039 R rec db9a516d-b30c-47ab-9021-50f760867f4e -2023-07-08 08:21:25.382129 2023-07-08 08:21:25.382134 aidref 174469470 R rec 25192e37-7828-40cb-8d07-90a87699d4aa -2023-07-08 08:21:25.483539 2023-07-08 08:21:25.483546 aidref 174571623 R rec dbc72487-178b-4a85-a458-a944e0921e02 -2023-07-08 08:21:25.586978 2023-07-08 08:21:25.586983 aidref 174595174 R rec 5cfd4f57-84ca-4815-bf0e-32c1c4a44f73 -2023-07-08 08:21:25.67682 2023-07-08 08:21:25.676832 aidref 174757131 R rec dd7e85d8-f76b-4084-b296-6e2ebc727057 -2023-07-08 08:21:25.777167 2023-07-08 08:21:25.777178 aidref 175070180 R rec 75927f66-8cd6-4c1b-9b68-1d061c95ea37 -2023-07-08 08:21:25.863713 2023-07-08 08:21:25.863717 aidref 175084661 R rec 77849ef5-9858-4c42-b77b-91d8aa913770 -2023-07-08 08:21:25.940549 2023-07-08 08:21:25.940564 aidref 175177880 R rec f4e0ffd0-306f-47c1-93fd-6ef430632293 -2023-07-08 08:21:26.026443 2023-07-08 08:21:26.02645 aidref 175622914 R rec fa91f8d9-927a-4cb4-8c1d-b3ec992cc34c -2023-07-08 08:21:26.130813 2023-07-08 08:21:26.130822 aidref 175664528 R rec 1e0c60b5-eea3-49ef-bf53-622d5ca90b80 -2023-07-08 08:21:26.22216 2023-07-08 08:21:26.222165 aidref 175917434 R rec 0b178208-f48c-4e52-aaf3-1b245c0314e6 -2023-07-08 08:21:26.308444 2023-07-08 08:21:26.308455 aidref 17637874X R rec 9efabea3-35b1-4654-97a4-d7f36565556f -2023-07-08 08:21:26.408681 2023-07-08 08:21:26.408695 aidref 176586350 R rec dab06544-804f-4d9e-81d1-7218446d388c -2023-07-08 08:21:26.496612 2023-07-08 08:21:26.496623 aidref 176752781 R rec 1852f0ec-4da9-4de4-ab65-9e3f55818f92 -2023-07-08 08:21:26.616379 2023-07-08 08:21:26.616384 aidref 176776613 R rec 1e411467-5c6e-46b3-80a9-8400c2eae17f -2023-07-08 08:21:26.718496 2023-07-08 08:21:26.718507 aidref 176834540 R rec d00a5c31-ae78-4f34-afdd-9316dec6ee0c -2023-07-08 08:21:26.81267 2023-07-08 08:21:26.812677 aidref 176929738 R rec 30b63751-aa4d-4058-a18d-fe8591120f4b -2023-07-08 08:21:26.906266 2023-07-08 08:21:26.906281 aidref 177081724 R rec 5efa69e5-b274-481c-b421-ead53e5a5ea1 -2023-07-08 08:21:27.007569 2023-07-08 08:21:27.007584 aidref 17718101X R rec 4eee5669-f914-4ad4-9acc-658beee9f32a -2023-07-08 08:21:27.080837 2023-07-08 08:21:27.080843 aidref 177181516 R rec f4016283-a339-4ad8-b672-e132450f248d -2023-07-08 08:21:27.157125 2023-07-08 08:21:27.157136 aidref 17719166X R rec b77452c7-6b2b-472a-9f5e-3f4b1f87a7aa -2023-07-08 08:21:27.237253 2023-07-08 08:21:27.237269 aidref 177498056 R rec fc705fe3-7265-4e44-a87f-9673a2e93049 -2023-07-08 08:21:27.341545 2023-07-08 08:21:27.341571 aidref 177564229 R rec d449ac00-2593-4394-83cc-873f42c4498f -2023-07-08 08:21:27.409921 2023-07-08 08:21:27.409931 aidref 177597933 R rec bc3816db-625b-4417-a0b6-3cb481cce40c -2023-07-08 08:21:27.492332 2023-07-08 08:21:27.492343 aidref 177966793 R rec c807af14-7381-45ef-adda-91eb27c4cedb -2023-07-08 08:21:27.567655 2023-07-08 08:21:27.567661 aidref 178055328 R rec 10807e3c-b846-406c-9e0e-a8cf2993ff20 -2023-07-08 08:21:27.658781 2023-07-08 08:21:27.658784 aidref 178123889 R rec 6909a67f-cb89-4b08-ada0-e08084389507 -2023-07-08 08:21:27.745832 2023-07-08 08:21:27.745848 aidref 178129887 R rec b70b7e4b-c5a9-4e3f-a201-fdf68664dbea -2023-07-08 08:21:27.852541 2023-07-08 08:21:27.852552 aidref 178131059 R rec d87db551-6f22-48c4-aef6-81c40757ac0d -2023-07-08 08:21:27.95589 2023-07-08 08:21:27.955905 aidref 178302430 R rec 58821318-2c03-430d-9dae-341cb3e4046c -2023-07-08 08:21:28.059506 2023-07-08 08:21:28.059521 aidref 178403431 R rec fd40f3ad-4ce4-45b1-984a-8cf2102d0f05 -2023-07-08 08:21:28.167822 2023-07-08 08:21:28.167832 aidref 178642932 R rec e84b6c91-13bd-46ed-8cbd-a94943f558a4 -2023-07-08 08:21:28.25695 2023-07-08 08:21:28.256955 aidref 178656275 R rec 0d8938e3-681d-40b4-96da-9051a0cb7d6a -2023-07-08 08:21:28.347583 2023-07-08 08:21:28.347594 aidref 178750166 R rec 166166ab-36e4-4201-9b5e-eef83e0422e1 -2023-07-08 08:21:28.449839 2023-07-08 08:21:28.449849 aidref 178887463 R rec 27b66205-2a02-4767-af94-01ce6a96f46e -2023-07-08 08:21:28.53391 2023-07-08 08:21:28.533913 aidref 178950823 R rec 6fe82567-4663-436b-88c7-f4bdf4aaaa64 -2023-07-08 08:21:28.600259 2023-07-08 08:21:28.600264 aidref 179358103 R rec 16b34a76-4634-45cc-b085-6bee3ef54517 -2023-07-08 08:21:28.682247 2023-07-08 08:21:28.682254 aidref 179410059 R rec 3b39200d-fe11-4026-8df7-35e511f15363 -2023-07-08 08:21:28.767359 2023-07-08 08:21:28.767365 aidref 179487183 R rec cdf5f306-10f0-4761-ab7d-9ca518b1a0ae -2023-07-08 08:21:28.855901 2023-07-08 08:21:28.855919 aidref 179957805 R rec d15d8fb5-f786-449d-a782-8dcb863f91a4 -2023-07-08 08:21:28.94694 2023-07-08 08:21:28.94695 aidref 180123580 R rec 87e66fa3-ce4b-4122-a397-aa1959e6b879 -2023-07-08 08:21:29.032613 2023-07-08 08:21:29.032619 aidref 180177494 R rec 5896dc86-6b4e-42e0-925e-433a51648041 -2023-07-08 08:21:29.10653 2023-07-08 08:21:29.106536 aidref 180568892 R rec c1e8da66-9ba0-41e2-bb14-c89eccb53a3f -2023-07-08 08:21:29.197691 2023-07-08 08:21:29.197697 aidref 180999699 R rec 16448d4e-e70c-43f3-b242-57c801f6775e -2023-07-08 08:21:29.282318 2023-07-08 08:21:29.282324 aidref 18102540X R rec 570db107-c428-4db7-a6ec-24bdcf1e2222 -2023-07-08 08:21:29.376462 2023-07-08 08:21:29.376478 aidref 181054825 R rec 5f0b9eda-ab98-4347-aa5b-3bc785929c37 -2023-07-08 08:21:29.457043 2023-07-08 08:21:29.457059 aidref 181132931 R rec 99bd9061-fe51-49bd-a80c-ffae80472f4f -2023-07-08 08:21:29.551762 2023-07-08 08:21:29.551774 aidref 181254506 R rec e9eb14b7-357d-4bf4-a7a7-9d87c3fd2b0d -2023-07-08 08:21:29.634584 2023-07-08 08:21:29.634589 aidref 181256037 R rec 5175104a-3333-4ba1-ba5d-65da418fd488 -2023-07-08 08:21:29.711816 2023-07-08 08:21:29.711821 aidref 181345404 R rec 4ecad305-fa00-40ab-a084-3e651353f86c -2023-07-08 08:21:29.786692 2023-07-08 08:21:29.786704 aidref 181448793 R rec 498ab595-47f1-4f1f-bc8c-04bb2e104d9d -2023-07-08 08:21:29.888051 2023-07-08 08:21:29.888061 aidref 181483513 R rec bedfee82-aa65-423a-9aca-15ebdabfa388 -2023-07-08 08:21:29.987274 2023-07-08 08:21:29.987286 aidref 181732149 R rec f2c474d5-f752-4665-ac7f-46519d1b8c59 -2023-07-08 08:21:30.059792 2023-07-08 08:21:30.059798 aidref 181863111 R rec 9b374f1f-65ca-4f9e-9f6a-403d34976223 -2023-07-08 08:21:30.144209 2023-07-08 08:21:30.144225 aidref 182214184 R rec 26a49b62-38df-43ce-90c1-0dde0b108694 -2023-07-08 08:21:30.227392 2023-07-08 08:21:30.227403 aidref 182358534 R rec d496c23c-632d-43a9-9db6-76b30e615a0a -2023-07-08 08:21:30.312431 2023-07-08 08:21:30.312441 aidref 182624250 R rec ac8ebfa4-62dd-49eb-8b81-6d975d9841ac -2023-07-08 08:21:30.389031 2023-07-08 08:21:30.389043 aidref 182625575 R rec e5aa4a37-edaa-4a96-8d6e-c443003d49cf -2023-07-08 08:21:30.485468 2023-07-08 08:21:30.48548 aidref 182629589 R rec 412552b4-8b2e-4c26-97fd-1b98020b859e -2023-07-08 08:21:30.567924 2023-07-08 08:21:30.567929 aidref 182693198 R rec 61299c74-6128-4638-9c3a-6ec2a49d1fec -2023-07-08 08:21:30.641496 2023-07-08 08:21:30.641501 aidref 182842819 R rec c8c3399d-c5c6-4d87-840b-c1e7e93fa368 -2023-07-08 08:21:30.767851 2023-07-08 08:21:30.767862 aidref 183243641 R rec 9f4cec56-5d18-458b-82d6-18c90b0d2614 -2023-07-08 08:21:30.860596 2023-07-08 08:21:30.860612 aidref 183245504 R rec 12d6f62c-5661-49ef-a113-ffc29defb437 -2023-07-08 08:21:30.969211 2023-07-08 08:21:30.969217 aidref 183295765 R rec d3b47eae-4ef4-4634-862e-d544d82daea6 -2023-07-08 08:21:31.056853 2023-07-08 08:21:31.056864 aidref 183379861 R rec 179421b8-3727-4ab5-b803-16b1549c6add -2023-07-08 08:21:31.15667 2023-07-08 08:21:31.156689 aidref 183426967 R rec 8b1804f0-756a-4c13-ba77-8b515ed1913f -2023-07-08 08:21:31.264706 2023-07-08 08:21:31.264712 aidref 183511956 R rec afbe2ffa-21a5-4cb6-99f6-cabfefeed0f0 -2023-07-08 08:21:31.391562 2023-07-08 08:21:31.391569 aidref 183544129 R rec 86ca0425-018d-4741-b15f-5df116a07fb4 -2023-07-08 08:21:31.52473 2023-07-08 08:21:31.524737 aidref 183723341 R rec 62167dd6-12b9-498a-91d5-11efc8a6e40d -2023-07-08 08:21:31.637251 2023-07-08 08:21:31.637257 aidref 183871065 R rec 5c294bb8-fa81-426e-ab65-bc80cc877665 -2023-07-08 08:21:31.73467 2023-07-08 08:21:31.73468 aidref 18397574X R rec 65bd8dad-838b-4225-9daa-bbd3de65ff0a -2023-07-08 08:21:31.814315 2023-07-08 08:21:31.81432 aidref 184093546 R rec ca84bf42-57ec-49e3-8799-8cd8a5100e01 -2023-07-08 08:21:31.898338 2023-07-08 08:21:31.898344 aidref 18439631X R rec 3d108894-fabe-4ea6-a33e-e38f61b5f0a6 -2023-07-08 08:21:31.999687 2023-07-08 08:21:31.999694 aidref 184529891 R rec 850cf994-e92b-4c70-bb16-f7526eb398fa -2023-07-08 08:21:32.06989 2023-07-08 08:21:32.069897 aidref 184614686 R rec 1cdf389b-e77c-47fc-bafc-182873799376 -2023-07-08 08:21:32.148995 2023-07-08 08:21:32.149001 aidref 184909961 R rec c67c7339-714f-4d87-a8d0-a47337bd67e7 -2023-07-08 08:21:32.233595 2023-07-08 08:21:32.2336 aidref 185067050 R rec b18ff35b-7a74-4645-8cf4-ff61d5505d21 -2023-07-08 08:21:32.326325 2023-07-08 08:21:32.326336 aidref 185108385 R rec 33e13b17-f965-45fa-8c68-438d4c4d19a2 -2023-07-08 08:21:32.428501 2023-07-08 08:21:32.428513 aidref 185152023 R rec 9eb47dbe-0d57-426d-8796-fb8fb5f22da4 -2023-07-08 08:21:32.52658 2023-07-08 08:21:32.526592 aidref 185165249 R rec 91cc227d-a1c6-4ac9-82bf-66e3a0a366b5 -2023-07-08 08:21:32.60615 2023-07-08 08:21:32.606155 aidref 185264352 R rec 6274bda9-8d29-48b6-8905-bbf0c63a01d2 -2023-07-08 08:21:32.696598 2023-07-08 08:21:32.696612 aidref 18526557X R rec 5f0a93bd-d6ad-41aa-8efb-6a8996c949b9 -2023-07-08 08:21:32.785797 2023-07-08 08:21:32.785812 aidref 18530396X R rec 55cac6bd-5d0f-4b97-827d-0531a416144c -2023-07-08 08:21:32.889559 2023-07-08 08:21:32.889575 aidref 185446167 R rec 7a5bfcad-9aee-465c-a5a7-de0b2fb43ddd -2023-07-08 08:21:32.969635 2023-07-08 08:21:32.969645 aidref 185446221 R rec 95c64954-b726-4ab9-a6bd-dd983f3b6f5c -2023-07-08 08:21:33.052077 2023-07-08 08:21:33.052082 aidref 185512461 R rec 09df536a-671c-468a-9583-7720f4dccadf -2023-07-08 08:21:33.127892 2023-07-08 08:21:33.127898 aidref 185627935 R rec 368d7d04-a245-4d65-8aae-c0b6017fcf88 -2023-07-08 08:21:33.224538 2023-07-08 08:21:33.224555 aidref 185740936 R rec 365697e2-b043-4989-82ab-7bbb856df9bd -2023-07-08 08:21:33.32197 2023-07-08 08:21:33.321982 aidref 185904300 R rec f7760adc-e36a-4b86-815e-b21a6d0e48d7 -2023-07-08 08:21:33.411842 2023-07-08 08:21:33.411857 aidref 186075480 R rec 00aa2649-3e87-43f4-a873-46f9d4d7c09b -2023-07-08 08:21:33.495679 2023-07-08 08:21:33.49569 aidref 186152396 R rec 1b65c571-d939-4c77-a908-18a67a6e3954 -2023-07-08 08:21:33.576499 2023-07-08 08:21:33.576505 aidref 186272758 R rec 4ca742ee-083d-4d74-a323-cb847dce6be4 -2023-07-08 08:21:33.665643 2023-07-08 08:21:33.665649 aidref 186354614 R rec 49b6ad23-c213-4600-b26f-bc6985568755 -2023-07-08 08:21:33.748934 2023-07-08 08:21:33.74894 aidref 18642597X R rec 347ad50c-04c9-4a24-93cf-de5d251867e0 -2023-07-08 08:21:33.831053 2023-07-08 08:21:33.831061 aidref 186429495 R rec e6d54e4f-e79f-489f-ba4b-8153ae1bcd07 -2023-07-08 08:21:33.915398 2023-07-08 08:21:33.915407 aidref 187118914 R rec 6faed544-61ae-4ab6-836a-981775625197 -2023-07-08 08:21:33.998849 2023-07-08 08:21:33.99886 aidref 187432627 R rec a6f475db-50c4-4182-835d-03f29c8e1af6 -2023-07-08 08:21:34.074387 2023-07-08 08:21:34.074395 aidref 187440085 R rec 2d3370a9-a3d0-45ee-ae03-a89424a44d67 -2023-07-08 08:21:34.167244 2023-07-08 08:21:34.167249 aidref 187474192 R rec ed35b967-0dd3-4118-80e4-6b52056c655c -2023-07-08 08:21:34.265195 2023-07-08 08:21:34.265206 aidref 187512272 R rec 15301db6-9ca6-4c7e-b5d1-0e11ee5f61d0 -2023-07-08 08:21:34.360494 2023-07-08 08:21:34.360505 aidref 187515441 R rec 2cd7da63-6dcb-4e97-bcce-fded62f68c9a -2023-07-08 08:21:34.446163 2023-07-08 08:21:34.446173 aidref 187519374 R rec 0d675be8-10cb-4d92-aa0e-e9a12e65c87d -2023-07-08 08:21:34.534317 2023-07-08 08:21:34.53435 aidref 18786893X R rec bfc447cf-68e5-43a2-80e6-88cd25d61910 -2023-07-08 08:21:34.613241 2023-07-08 08:21:34.613246 aidref 188048383 R rec ee78ea32-2036-456e-a2bc-a398e3535c05 -2023-07-08 08:21:34.681327 2023-07-08 08:21:34.681331 aidref 188624295 R rec 7c01e3be-2dd9-4c39-8a45-3a6f5e62ed2b -2023-07-08 08:21:34.753157 2023-07-08 08:21:34.753168 aidref 188652647 R rec b2367b92-e13f-4e2c-96b3-177788af51b6 -2023-07-08 08:21:34.852312 2023-07-08 08:21:34.852323 aidref 188721665 R rec 64242839-5188-42e8-af68-ae49287fa7c1 -2023-07-08 08:21:34.937901 2023-07-08 08:21:34.937912 aidref 188848614 R rec ecce95af-8b52-45d6-96fd-26bcc91e60a2 -2023-07-08 08:21:35.038046 2023-07-08 08:21:35.038051 aidref 18897394X R rec c092f797-42bc-4105-9e85-13d1798752ee -2023-07-08 08:21:35.115325 2023-07-08 08:21:35.115335 aidref 189006161 R rec c6def61d-5175-4fd4-820c-874775ac7ea4 -2023-07-08 08:21:35.200044 2023-07-08 08:21:35.200051 aidref 189240113 R rec b8b3d583-8d83-4b8a-80a1-299a389794f9 -2023-07-08 08:21:35.287937 2023-07-08 08:21:35.287948 aidref 189252138 R rec 070f647e-d5a2-4e6a-b56b-dae535628f2a -2023-07-08 08:21:35.37674 2023-07-08 08:21:35.376752 aidref 189322454 R rec 49b1be2b-56a9-48eb-aede-472baae56115 -2023-07-08 08:21:35.4633 2023-07-08 08:21:35.46331 aidref 189510145 R rec 90d7b723-ceb3-4a72-a288-b597abc3cc0b -2023-07-08 08:21:35.548697 2023-07-08 08:21:35.548704 aidref 189789581 R rec 51a7d375-eaa5-4f58-be8b-8587d1be138c -2023-07-08 08:21:35.63444 2023-07-08 08:21:35.634445 aidref 189897678 R rec 8c288053-0fe8-4dd9-ab34-5cbd71801bfd -2023-07-08 08:21:35.745763 2023-07-08 08:21:35.745773 aidref 189921080 R rec 4f9344e6-81a5-415d-8ad3-3232aa97fcc1 -2023-07-08 08:21:35.832836 2023-07-08 08:21:35.832843 aidref 190050721 R rec a2cae0be-b2e3-4c1d-b913-483e3ccece63 -2023-07-08 08:21:35.910078 2023-07-08 08:21:35.910087 aidref 190056002 R rec 9322dc5d-8ab1-4aa0-93f2-8b0f4e2219ac -2023-07-08 08:21:36.003765 2023-07-08 08:21:36.003776 aidref 190064323 R rec 835dd65d-9584-4246-a959-6b7420b81a73 -2023-07-08 08:21:36.094611 2023-07-08 08:21:36.094616 aidref 190122277 R rec c1a71e2b-9cf2-4c4d-8c6c-238bad512250 -2023-07-08 08:21:36.193181 2023-07-08 08:21:36.193193 aidref 190133139 R rec fcca8e9f-cc21-437b-a234-83486dd620b7 -2023-07-08 08:21:36.288504 2023-07-08 08:21:36.288516 aidref 190148667 R rec 1a64048a-0f05-4466-be71-3c4013b60f1d -2023-07-08 08:21:36.392004 2023-07-08 08:21:36.392017 aidref 19024951X R rec 6667c210-5218-4072-be62-37ccaae6bd1d -2023-07-08 08:21:36.499237 2023-07-08 08:21:36.499242 aidref 190365420 R rec 0cc594dd-7aec-4042-a6e9-7926544c38d6 -2023-07-08 08:21:36.580079 2023-07-08 08:21:36.580086 aidref 190401370 R rec 52bfed24-2d9a-4cae-8468-3cfe61c5e0e1 -2023-07-08 08:21:36.677147 2023-07-08 08:21:36.677162 aidref 190408413 R rec 9738ade3-135f-4b6c-8f87-3c8dd67d1bae -2023-07-08 08:21:36.77169 2023-07-08 08:21:36.7717 aidref 190629525 R rec c3894a86-77c2-4b52-bc65-70a0c369ad16 -2023-07-08 08:21:36.8583 2023-07-08 08:21:36.858311 aidref 190679204 R rec f42e3219-4cfb-4b9f-8b77-4244275fae49 -2023-07-08 08:21:36.939338 2023-07-08 08:21:36.939349 aidref 190701285 R rec 75cc78eb-fc15-4773-9d13-11924935d9c3 -2023-07-08 08:21:37.024779 2023-07-08 08:21:37.024785 aidref 190708085 R rec eee41ca6-dc95-4465-be96-c3f55f6edf38 -2023-07-08 08:21:37.095063 2023-07-08 08:21:37.095068 aidref 190712120 R rec 156d1389-b1e5-47c8-83d0-0e9e54327fe9 -2023-07-08 08:21:37.1718 2023-07-08 08:21:37.17181 aidref 190913142 R rec 95206f06-e83e-480c-8015-0515dd6d492a -2023-07-08 08:21:37.276013 2023-07-08 08:21:37.276032 aidref 19105254X R rec 7f31c8c0-be96-437e-9caf-807996aaa93d -2023-07-08 08:21:37.368242 2023-07-08 08:21:37.368254 aidref 191057142 R rec e31e5ea6-7d98-479e-97ef-f2023c37fa3c -2023-07-08 08:21:37.465183 2023-07-08 08:21:37.465193 aidref 19107425X R rec f57afd81-6770-4f0a-9bff-387f45c58380 -2023-07-08 08:21:37.575381 2023-07-08 08:21:37.575389 aidref 191305928 R rec c4da6b68-df6f-4499-8a18-87cfe69249b9 -2023-07-08 08:21:37.665232 2023-07-08 08:21:37.665241 aidref 191591335 R rec 6ac83675-c07e-49a9-9d32-f05cf0ede15f -2023-07-08 08:21:37.764879 2023-07-08 08:21:37.76489 aidref 191603449 R rec 86be8193-b731-4d83-a2a2-49e78ca8b33e -2023-07-08 08:21:37.859172 2023-07-08 08:21:37.859183 aidref 191644315 R rec 4f53af8c-fc69-477b-8b8f-29bf17256353 -2023-07-08 08:21:37.957075 2023-07-08 08:21:37.957086 aidref 191710849 R rec 536388f4-b129-4c22-95f8-d75b0dea6315 -2023-07-08 08:21:38.051153 2023-07-08 08:21:38.051159 aidref 191721166 R rec 0043f8ba-7d22-4584-ad52-bd4d5f0b18e6 -2023-07-08 08:21:38.142613 2023-07-08 08:21:38.142629 aidref 191808105 R rec c0f14941-e8cc-4155-8a77-cb834d8f62c0 -2023-07-08 08:21:38.252278 2023-07-08 08:21:38.252299 aidref 192012401 R rec 9029c896-0131-4e13-9870-e29308a1a92c -2023-07-08 08:21:38.361072 2023-07-08 08:21:38.361084 aidref 192166506 R rec 3069e65d-4566-4c90-9e13-311c9c22c599 -2023-07-08 08:21:38.443927 2023-07-08 08:21:38.443949 aidref 192198149 R rec a02ea485-e8d2-413f-b4a8-ca552fce56dd -2023-07-08 08:21:38.542974 2023-07-08 08:21:38.542985 aidref 192269097 R rec 0d015800-8645-424c-8576-e16a10b45b91 -2023-07-08 08:21:38.634279 2023-07-08 08:21:38.634284 aidref 192280953 R rec d9ad9ea3-d726-4001-8f49-e5dc1ffe2122 -2023-07-08 08:21:38.729014 2023-07-08 08:21:38.729026 aidref 192298348 R rec a3d3e6b8-9fb3-45d8-83e2-a426e3fe3f08 -2023-07-08 08:21:38.844336 2023-07-08 08:21:38.844352 aidref 192319116 R rec 44416270-2055-47ea-8fd2-f2e576574bd4 -2023-07-08 08:21:38.93434 2023-07-08 08:21:38.934351 aidref 19239486X R rec 23ec43e6-fb25-4319-bc17-1459aa39eafe -2023-07-08 08:21:39.021151 2023-07-08 08:21:39.021157 aidref 192408909 R rec 16d15982-e7d0-45a5-a8fa-ab744ba0d026 -2023-07-08 08:21:39.09135 2023-07-08 08:21:39.091355 aidref 192529641 R rec 2ecee4f3-cd01-4f60-b6b2-22fa21b1fb89 -2023-07-08 08:21:39.171025 2023-07-08 08:21:39.171037 aidref 192628496 R rec da4673e2-2597-464e-9716-66e5583d1eec -2023-07-08 08:21:39.262495 2023-07-08 08:21:39.262505 aidref 192640895 R rec 990b3f90-96d2-49c5-9978-c08a75846e30 -2023-07-08 08:21:39.367205 2023-07-08 08:21:39.367211 aidref 192658697 R rec cd14fb8a-daa4-4c33-85d5-17e86ae565ec -2023-07-08 08:21:39.482394 2023-07-08 08:21:39.4824 aidref 192776851 R rec 419259dd-793a-41f7-82bc-ee1e0112de2a -2023-07-08 08:21:39.587208 2023-07-08 08:21:39.587214 aidref 192790099 R rec 3977c7b5-c78d-4917-b07b-3ae9baa919a6 -2023-07-08 08:21:39.676714 2023-07-08 08:21:39.676725 aidref 192856200 R rec 66088f59-3df5-4eb1-84a7-9b53fa8ced28 -2023-07-08 08:21:39.771733 2023-07-08 08:21:39.771751 aidref 192883313 R rec 23710495-6431-465c-bb2f-a72fa716ffe0 -2023-07-08 08:21:39.865653 2023-07-08 08:21:39.865657 aidref 192969285 R rec 7b051aaa-a2de-4543-9e60-979cb1ceae86 -2023-07-08 08:21:39.950806 2023-07-08 08:21:39.950813 aidref 193161109 R rec a40c7cf2-e8c1-47b0-a7d7-4d983ee211c7 -2023-07-08 08:21:40.05883 2023-07-08 08:21:40.058836 aidref 193173328 R rec 799e5984-72f9-4f41-985a-21dafb59c722 -2023-07-08 08:21:40.143614 2023-07-08 08:21:40.143619 aidref 193181878 R rec eff0b66c-0506-441d-8f5a-f41cde30cf54 -2023-07-08 08:21:40.232891 2023-07-08 08:21:40.232902 aidref 193183226 R rec 549bcca1-9f7f-47f4-a755-fc2dc381192f -2023-07-08 08:21:40.343527 2023-07-08 08:21:40.34354 aidref 193223287 R rec f3dcfde2-abdc-4dd8-86e5-0f70e4c6fa9c -2023-07-08 08:21:40.434141 2023-07-08 08:21:40.434152 aidref 193276348 R rec 4c2128c9-3de5-4aac-87bb-912c5e3ec31b -2023-07-08 08:21:40.53889 2023-07-08 08:21:40.538902 aidref 193284065 R rec 52ff7054-a108-42c4-b042-3b1e1d4d5c36 -2023-07-08 08:21:40.634838 2023-07-08 08:21:40.634843 aidref 19329074X R rec e7073816-ad58-46c1-928c-29268fbf34af -2023-07-08 08:21:40.738174 2023-07-08 08:21:40.738193 aidref 193499975 R rec 53ad880d-71a0-408f-adda-50c994168079 -2023-07-08 08:21:40.827329 2023-07-08 08:21:40.827335 aidref 193585057 R rec 0178db4c-48d1-46df-a6ce-62ab2ab1d5a8 -2023-07-08 08:21:40.931072 2023-07-08 08:21:40.931077 aidref 193705974 R rec 2c96c494-c149-47be-81b8-e56bd3990e1d -2023-07-08 08:21:41.03149 2023-07-08 08:21:41.031496 aidref 193736063 R rec ff0c2cc5-c35f-4dc7-8988-7053e489bfd9 -2023-07-08 08:21:41.10638 2023-07-08 08:21:41.106392 aidref 193779587 R rec 3001c499-1e30-4f4f-9ac8-1526b665bed6 -2023-07-08 08:21:41.216675 2023-07-08 08:21:41.216681 aidref 193809699 R rec bf64075f-d1d1-4ef3-b589-8b25925f0f72 -2023-07-08 08:21:41.312249 2023-07-08 08:21:41.312259 aidref 193825813 R rec 0dac9275-7724-4552-a02e-78cffe3ed738 -2023-07-08 08:21:41.38599 2023-07-08 08:21:41.386009 aidref 193876191 R rec bcbad836-261a-4b62-b57f-32f446fa7ba0 -2023-07-08 08:21:41.47634 2023-07-08 08:21:41.476356 aidref 193955482 R rec 7a520a6a-ad4f-4a1b-a6f8-6a388ae8150f -2023-07-08 08:21:41.575828 2023-07-08 08:21:41.575833 aidref 193982269 R rec fdfeb891-ef45-4d9d-b944-d66c3570fa7f -2023-07-08 08:21:41.662505 2023-07-08 08:21:41.662514 aidref 194122603 R rec cadf773d-fdf1-4748-b7ad-fbb8d2ca9aeb -2023-07-08 08:21:41.748461 2023-07-08 08:21:41.748472 aidref 194162419 R rec 002bf907-393b-414a-aeea-4f537228a90f -2023-07-08 08:21:41.842606 2023-07-08 08:21:41.842618 aidref 194167070 R rec b8f58cac-b8c9-40e7-b46b-5cd23338cbf9 -2023-07-08 08:21:41.934191 2023-07-08 08:21:41.934207 aidref 194445089 R rec bc0582e6-261a-4086-bd38-4f26166dd429 -2023-07-08 08:21:42.042643 2023-07-08 08:21:42.042661 aidref 194503941 R rec 97bfe34f-8dc4-471f-b666-9e3dc142289e -2023-07-08 08:21:42.124687 2023-07-08 08:21:42.1247 aidref 194564932 R rec 99117e3c-afcb-4399-9d08-9f13edcbdd98 -2023-07-08 08:21:42.240966 2023-07-08 08:21:42.240979 aidref 194577058 R rec 4ef2a2c6-c616-4196-b98a-4f0b48045368 -2023-07-08 08:21:42.338259 2023-07-08 08:21:42.338271 aidref 194588718 R rec 039ab2ae-8968-4fe2-a29f-ec625bafc6d8 -2023-07-08 08:21:42.460747 2023-07-08 08:21:42.460758 aidref 194616320 R rec 0fa4b4f1-1576-42c7-9376-1ce886732776 -2023-07-08 08:21:42.549899 2023-07-08 08:21:42.549904 aidref 194625036 R rec 6b98e64b-894b-4e02-8d63-4a03e004c7c2 -2023-07-08 08:21:42.622506 2023-07-08 08:21:42.622511 aidref 194925625 R rec 036cc008-604d-4904-8fc3-7f155f8b237e -2023-07-08 08:21:42.708847 2023-07-08 08:21:42.708861 aidref 195021371 R rec fb335e2d-5118-4f62-9929-d336b6a5a34b -2023-07-08 08:21:42.798329 2023-07-08 08:21:42.798334 aidref 195226267 R rec 64a61f3c-f9b4-4dc7-b3d9-370bc860af5f -2023-07-08 08:21:42.906496 2023-07-08 08:21:42.906508 aidref 195247922 R rec ab049b05-0b8b-421f-b275-56b59765e782 -2023-07-08 08:21:43.011733 2023-07-08 08:21:43.011745 aidref 195263472 R rec 6ba6158e-e956-4c92-8eae-83a233278188 -2023-07-08 08:21:43.107946 2023-07-08 08:21:43.107958 aidref 195274059 R rec 8d109e4c-a8db-4879-a282-129cade82a06 -2023-07-08 08:21:43.190263 2023-07-08 08:21:43.190288 aidref 195276205 R rec ff8fcac3-b24c-4ded-952a-abafdcfd1116 -2023-07-08 08:21:43.272575 2023-07-08 08:21:43.272587 aidref 195286227 R rec ccc238e3-7824-4e89-98f2-46014852925b -2023-07-08 08:21:43.364999 2023-07-08 08:21:43.36501 aidref 19529534X R rec 2a152767-be01-44a3-84a5-9aeb0cf429d2 -2023-07-08 08:21:43.472652 2023-07-08 08:21:43.472663 aidref 195370317 R rec c1a99fdf-23f8-4e75-bc66-48da89d42a11 -2023-07-08 08:21:43.564641 2023-07-08 08:21:43.564647 aidref 195403460 R rec a130be0c-9e7e-4ab5-b0ec-c301ebeec17b -2023-07-08 08:21:43.650893 2023-07-08 08:21:43.6509 aidref 195430662 R rec e9cf9193-5841-4561-a41b-96b13f065b3f -2023-07-08 08:21:43.724587 2023-07-08 08:21:43.724592 aidref 19544504X R rec ed364f85-afc5-49c1-9f7c-f5a92a30deb9 -2023-07-08 08:21:43.810107 2023-07-08 08:21:43.810117 aidref 195458575 R rec 25a9204d-e784-4db9-aa12-de822c50ee20 -2023-07-08 08:21:43.911664 2023-07-08 08:21:43.911675 aidref 195541855 R rec 05815b73-70ee-4b0c-a1e1-3afefbd48f95 -2023-07-08 08:21:44.008829 2023-07-08 08:21:44.008841 aidref 195544439 R rec 46011454-67e5-44da-a2de-5ed77a5e81c0 -2023-07-08 08:21:44.099691 2023-07-08 08:21:44.099701 aidref 195555228 R rec 9b53cec3-37ad-4cd1-9eea-d2a09771b116 -2023-07-08 08:21:44.190017 2023-07-08 08:21:44.190029 aidref 195708814 R rec 8ca866cf-b47a-4a09-9db6-1855c8d7f492 -2023-07-08 08:21:44.280085 2023-07-08 08:21:44.280098 aidref 195713133 R rec 87f7e163-3330-413f-ba28-5597fc34f7bb -2023-07-08 08:21:44.36771 2023-07-08 08:21:44.367716 aidref 195791258 R rec ce69dce3-407d-479b-9b1c-307995bb6e36 -2023-07-08 08:21:44.459146 2023-07-08 08:21:44.459152 aidref 195824431 R rec 8f893500-18e0-4e2f-9f4c-e419ccbfe0e7 -2023-07-08 08:21:44.5438 2023-07-08 08:21:44.543811 aidref 195941942 R rec e03ca1c6-9979-409a-b14e-ec10461341c1 -2023-07-08 08:21:44.61595 2023-07-08 08:21:44.615958 aidref 196095700 R rec b9801312-098c-4fef-b275-f52d5c51395e -2023-07-08 08:21:44.686088 2023-07-08 08:21:44.686094 aidref 196155487 R rec 487bfff1-4e44-4ec9-b58c-ef3bf4a87d7e -2023-07-08 08:21:44.760608 2023-07-08 08:21:44.760619 aidref 196254795 R rec 1c376893-fc28-47ee-823c-8c415bd83929 -2023-07-08 08:21:44.854212 2023-07-08 08:21:44.854223 aidref 196282411 R rec 40f11ff8-9bb6-445b-be0a-74a72cb95b45 -2023-07-08 08:21:44.942349 2023-07-08 08:21:44.942367 aidref 196313910 R rec 4c83d0ae-f14c-4dc8-b275-630d2a9a2532 -2023-07-08 08:21:45.042368 2023-07-08 08:21:45.042379 aidref 196337208 R rec 93e5e60b-19a4-4b70-850a-aa9f71a8ba05 -2023-07-08 08:21:45.120444 2023-07-08 08:21:45.120456 aidref 196341280 R rec 2e117ecb-c9c3-4994-8d00-b7f428cb8581 -2023-07-08 08:21:45.217156 2023-07-08 08:21:45.217163 aidref 196405750 R rec c65b599b-8db3-43cc-a24e-cd077e5336b2 -2023-07-08 08:21:45.306586 2023-07-08 08:21:45.306605 aidref 196409500 R rec 311ad2bf-5678-4c04-90c7-5622f3b8c7c7 -2023-07-08 08:21:45.397294 2023-07-08 08:21:45.397302 aidref 196425840 R rec 316950d6-fa54-40d6-b28b-271308aea8d1 -2023-07-08 08:21:45.516401 2023-07-08 08:21:45.516408 aidref 196435099 R rec 83c62daa-d20f-4d51-ac66-5d1e8cdedb0b -2023-07-08 08:21:45.609836 2023-07-08 08:21:45.609846 aidref 196452341 R rec f8292028-7f8d-4a0a-a8c3-913d49bdfa6c -2023-07-08 08:21:45.691558 2023-07-08 08:21:45.691568 aidref 196511275 R rec 7a7ba348-6807-4485-a5d5-9738d925c2e2 -2023-07-08 08:21:45.802012 2023-07-08 08:21:45.802022 aidref 196538637 R rec 8f0d24e1-d7ce-4407-a906-06f12554ed79 -2023-07-08 08:21:45.88932 2023-07-08 08:21:45.889331 aidref 196539102 R rec de21d019-e881-4413-a1b5-b85a41b3363b -2023-07-08 08:21:45.98231 2023-07-08 08:21:45.982315 aidref 196540429 R rec 7d038be6-7376-4b09-85c3-42713469e8c5 -2023-07-08 08:21:46.075328 2023-07-08 08:21:46.075334 aidref 196575214 R rec 692fb20a-f231-4afe-b847-0c8743bcd3f0 -2023-07-08 08:21:46.172332 2023-07-08 08:21:46.172342 aidref 196694531 R rec 14d18e1b-f4c9-4363-a9a1-1299f2a7503e -2023-07-08 08:21:46.274071 2023-07-08 08:21:46.274081 aidref 196706831 R rec c773bae5-5798-4305-893c-b4e0b62f9d97 -2023-07-08 08:21:46.38134 2023-07-08 08:21:46.381346 aidref 196728711 R rec fc26d09f-13ad-417a-b405-87a28b8567da -2023-07-08 08:21:46.482695 2023-07-08 08:21:46.482701 aidref 196814944 R rec fecf7216-15c3-462e-bb96-7acd49938794 -2023-07-08 08:21:46.569787 2023-07-08 08:21:46.569793 aidref 196859883 R rec 7ba3f954-a6b9-471c-b8a1-b23bc7d35e02 -2023-07-08 08:21:46.644668 2023-07-08 08:21:46.644673 aidref 196887429 R rec a53572d4-9b02-4227-a6da-3a4a8989ba73 -2023-07-08 08:21:46.731059 2023-07-08 08:21:46.731069 aidref 197014984 R rec 3ac02705-7ef3-4f8d-94c5-83df5724e760 -2023-07-08 08:21:46.824714 2023-07-08 08:21:46.824729 aidref 197035167 R rec 7f411de2-58e6-4fcc-923e-0a32040f5a98 -2023-07-08 08:21:46.919258 2023-07-08 08:21:46.919263 aidref 197073077 R rec 19175b11-bfdc-4030-83ad-73c37d3f502b -2023-07-08 08:21:47.002025 2023-07-08 08:21:47.002037 aidref 197115047 R rec 9b287a6b-0b7d-4ee6-905f-aef3ee5edb06 -2023-07-08 08:21:47.088522 2023-07-08 08:21:47.088534 aidref 197132588 R rec 5a1f669a-7643-4ebb-a3a0-b732849f3ed3 -2023-07-08 08:21:47.180753 2023-07-08 08:21:47.180758 aidref 197226809 R rec 49143877-3b86-4617-99cc-0c008c9c68c0 -2023-07-08 08:21:47.266675 2023-07-08 08:21:47.266682 aidref 197280544 R rec 908bbfcd-3a2a-4cea-be8d-c0b5c362b0ef -2023-07-08 08:21:47.365048 2023-07-08 08:21:47.365059 aidref 197391648 R rec 99ff4c94-d3dd-414f-9cbb-3f8c10436762 -2023-07-08 08:21:47.454388 2023-07-08 08:21:47.4544 aidref 197394795 R rec 0912ce6f-0109-45c5-96c2-aefefa314dbd -2023-07-08 08:21:47.555275 2023-07-08 08:21:47.555294 aidref 197444067 R rec 61ad4376-97b1-4557-acab-556e0b939393 -2023-07-08 08:21:47.628625 2023-07-08 08:21:47.62863 aidref 197444881 R rec a36abce3-fc72-4774-82f4-761271f5add0 -2023-07-08 08:21:47.702692 2023-07-08 08:21:47.702703 aidref 197511392 R rec 72764168-6e03-43f1-aecb-050731eb9179 -2023-07-08 08:21:47.791731 2023-07-08 08:21:47.791749 aidref 197533590 R rec 9bf5dc20-5261-4f3c-b0db-00ab9acd466c -2023-07-08 08:21:47.881197 2023-07-08 08:21:47.881203 aidref 197593968 R rec 2e55b1d5-670c-410f-9d40-c96e90dd97eb -2023-07-08 08:21:47.96152 2023-07-08 08:21:47.961531 aidref 197623549 R rec 6a529e27-fdad-4f72-bc95-a6ac3e06877d -2023-07-08 08:21:48.043924 2023-07-08 08:21:48.043938 aidref 197687717 R rec 601b9ce3-7587-4c05-b6a3-b736905eed65 -2023-07-08 08:21:48.123489 2023-07-08 08:21:48.123501 aidref 197696597 R rec e02f3751-eae3-4ac6-8f2d-3b2a7c3cc15b -2023-07-08 08:21:48.211216 2023-07-08 08:21:48.211229 aidref 197997961 R rec 719b7bf9-0d68-41bf-ada9-4b0af8172c1f -2023-07-08 08:21:48.302712 2023-07-08 08:21:48.302726 aidref 198193327 R rec aa3a662a-05aa-4646-97df-1c7dbdef84af -2023-07-08 08:21:48.404231 2023-07-08 08:21:48.404243 aidref 198217447 R rec 67276895-2e94-441f-81ee-f44ae7c7cf15 -2023-07-08 08:21:48.498234 2023-07-08 08:21:48.498245 aidref 198395361 R rec f2350a7f-eb79-4b47-a7bf-1d8947e32ef0 -2023-07-08 08:21:48.572774 2023-07-08 08:21:48.572779 aidref 198493231 R rec 94dcb6fb-065c-4fac-b7f9-20823f17a8a7 -2023-07-08 08:21:48.638867 2023-07-08 08:21:48.638872 aidref 198494289 R rec 4fda34da-b0ab-45c1-9541-e9fcdb5852c9 -2023-07-08 08:21:48.717628 2023-07-08 08:21:48.717639 aidref 19859318X R rec 0432bf25-2d0a-414d-b501-92e46d2fee89 -2023-07-08 08:21:48.817485 2023-07-08 08:21:48.817497 aidref 19870125X R rec dcc0ac10-3160-42dd-861a-dd5ca296ca17 -2023-07-08 08:21:48.893278 2023-07-08 08:21:48.893295 aidref 199108617 R rec 60720e2b-cd39-4986-b3ba-7fc54b1bf8f3 -2023-07-08 08:21:48.984559 2023-07-08 08:21:48.984569 aidref 199119961 R rec 6945d0f4-d88e-4433-ab15-038da4d284e0 -2023-07-08 08:21:49.082548 2023-07-08 08:21:49.082553 aidref 19915631X R rec ccba6c06-a4bf-4218-9015-c07d0a2832e4 -2023-07-08 08:21:49.154176 2023-07-08 08:21:49.154192 aidref 199168326 R rec 228ccb47-4e8e-47d4-8599-a0761c586d08 -2023-07-08 08:21:49.247575 2023-07-08 08:21:49.24758 aidref 199187606 R rec c64f6189-3a34-45f0-8275-0fe87493ac50 -2023-07-08 08:21:49.333412 2023-07-08 08:21:49.333417 aidref 19921347X R rec 24cbc3a8-ac0b-4df9-8624-44a9578d675b -2023-07-08 08:21:49.4165 2023-07-08 08:21:49.416509 aidref 199238324 R rec ceb7948f-6018-4c2b-8001-0d6d821e22c2 -2023-07-08 08:21:49.500198 2023-07-08 08:21:49.500204 aidref 199257213 R rec 555234e5-e342-4e68-85c3-634ab8097408 -2023-07-08 08:21:49.572637 2023-07-08 08:21:49.572643 aidref 199258813 R rec 0ae97835-7593-411c-810c-6e0fab4dfa6b -2023-07-08 08:21:49.645216 2023-07-08 08:21:49.645222 aidref 199336776 R rec 45d049d7-eb27-4254-810f-ea597420e841 -2023-07-08 08:21:49.735565 2023-07-08 08:21:49.735576 aidref 199441863 R rec 826b3586-0833-4118-8fea-eb2568af1fff -2023-07-08 08:21:49.817176 2023-07-08 08:21:49.817187 aidref 199452857 R rec 711c5001-17bb-40ca-a7fb-79bbdec2bb4f -2023-07-08 08:21:49.89927 2023-07-08 08:21:49.899277 aidref 199464669 R rec 5ee18b47-a8a3-4701-8e73-3c76fcd8eb6a -2023-07-08 08:21:49.991762 2023-07-08 08:21:49.991774 aidref 19954770X R rec 2f13a3e6-a64f-40c8-9113-7c73ba538c9b -2023-07-08 08:21:50.070146 2023-07-08 08:21:50.070157 aidref 199555907 R rec a9dee7fc-cd2d-415a-ba17-0373f57430d6 -2023-07-08 08:21:50.150463 2023-07-08 08:21:50.150469 aidref 19960097X R rec d41dfc25-7cf3-498c-a90d-d191c86cb54e -2023-07-08 08:21:50.233279 2023-07-08 08:21:50.233285 aidref 199679150 R rec 03c58d2d-82a0-43db-8c15-d3b9f2b22843 -2023-07-08 08:21:50.325975 2023-07-08 08:21:50.32598 aidref 199716498 R rec 4c0d652a-e8fa-45dc-ba9b-2a3c8ae7e26c -2023-07-08 08:21:50.394379 2023-07-08 08:21:50.39439 aidref 199742022 R rec bb686dc1-6fe8-41e2-b3c6-c298b2606c58 -2023-07-08 08:21:50.488628 2023-07-08 08:21:50.48864 aidref 199749736 R rec c96405dd-adc6-4daa-a8cf-a049053dfaed -2023-07-08 08:21:50.580036 2023-07-08 08:21:50.580041 aidref 199777381 R rec cdbae739-0f71-4cf9-8303-d8dfd658e79c -2023-07-08 08:21:50.653952 2023-07-08 08:21:50.653963 aidref 199828121 R rec 5f9827d0-3190-4c5e-b034-9f13953b1e74 -2023-07-08 08:21:50.759397 2023-07-08 08:21:50.759415 aidref 200127748 R rec 34ad6354-2d08-4378-8723-24275fea0b78 -2023-07-08 08:21:50.857202 2023-07-08 08:21:50.85722 aidref 200138766 R rec 0144ef55-79d3-447c-9608-6c7ad465f715 -2023-07-08 08:21:50.944128 2023-07-08 08:21:50.944139 aidref 200141163 R rec 7775eaf5-30bb-48d2-a280-b63adaf4f5a1 -2023-07-08 08:21:51.050861 2023-07-08 08:21:51.050864 aidref 200238574 R rec 24beb3b6-87a5-482c-b302-8a86e62256de -2023-07-08 08:21:51.13695 2023-07-08 08:21:51.136962 aidref 200252933 R rec fa3663e8-1250-428f-bad5-2ad565f6ab06 -2023-07-08 08:21:51.243156 2023-07-08 08:21:51.243172 aidref 200400525 R rec 4c7666ac-2dff-420b-a512-09c26c1224d4 -2023-07-08 08:21:51.335862 2023-07-08 08:21:51.335873 aidref 200469169 R rec 1b1397fd-c14a-4ad5-9465-6dc2c2aac544 -2023-07-08 08:21:51.438728 2023-07-08 08:21:51.438743 aidref 200480111 R rec 2d2ec3f4-c1fb-4258-ba8e-6db153180d34 -2023-07-08 08:21:51.55343 2023-07-08 08:21:51.553444 aidref 200480391 R rec 4aecdac5-7ee9-4182-9638-de40efba3c29 -2023-07-08 08:21:51.678195 2023-07-08 08:21:51.6782 aidref 200497065 R rec 275bfbac-3c5b-4fa9-9a28-86518925db46 -2023-07-08 08:21:51.756321 2023-07-08 08:21:51.756326 aidref 200524925 R rec 967aca35-d2dc-4a1c-8155-d0a76c54c274 -2023-07-08 08:21:51.826377 2023-07-08 08:21:51.826383 aidref 200581627 R rec dee020bc-c441-4c07-845e-4a7eb65e62c2 -2023-07-08 08:21:51.916301 2023-07-08 08:21:51.916307 aidref 200646788 R rec b277d8fe-2412-4732-9d69-a9ddfc4322d1 -2023-07-08 08:21:51.992003 2023-07-08 08:21:51.992006 aidref 200661531 R rec ae067374-3b12-4844-83bc-2ed224ee8d93 -2023-07-08 08:21:52.070571 2023-07-08 08:21:52.070581 aidref 20071659X R rec 16b4762e-80e5-4a12-ba97-f6d5f7289e24 -2023-07-08 08:21:52.172298 2023-07-08 08:21:52.172309 aidref 200723421 R rec d97d61c5-0ee6-4d4d-9a10-549ca418db9d -2023-07-08 08:21:52.271739 2023-07-08 08:21:52.27175 aidref 20082807X R rec a28d1282-a819-42e0-aec9-0a8739dad356 -2023-07-08 08:21:52.354471 2023-07-08 08:21:52.354482 aidref 201287617 R rec 85c30c6b-10ad-4806-8259-a9b3df1bd5a0 -2023-07-08 08:21:52.44909 2023-07-08 08:21:52.449103 aidref 201289377 R rec 9d942f1e-dc09-4ff5-bb7e-e9831e44a9fa -2023-07-08 08:21:52.544477 2023-07-08 08:21:52.544493 aidref 201301040 R rec 035d4095-e59e-48d6-ba00-bdf2d3c09eb1 -2023-07-08 08:21:52.612932 2023-07-08 08:21:52.612937 aidref 201306824 R rec 3f9ec8fb-5735-45d0-9efc-57126846be58 -2023-07-08 08:21:52.700918 2023-07-08 08:21:52.700928 aidref 201480034 R rec fe49945f-c6d3-49ff-bb9f-7bd3cf7015ca -2023-07-08 08:21:52.800534 2023-07-08 08:21:52.800539 aidref 201609924 R rec 71c81d9c-066a-4500-bb20-010acbf18c33 -2023-07-08 08:21:52.882266 2023-07-08 08:21:52.882272 aidref 201643936 R rec c99d483e-f9fd-4da5-a3ab-5238165dd1bd -2023-07-08 08:21:52.979778 2023-07-08 08:21:52.979784 aidref 201672618 R rec 77613771-2928-4890-b78e-751938655a35 -2023-07-08 08:21:53.064889 2023-07-08 08:21:53.064904 aidref 201683636 R rec 9fd47dcd-aa9c-4d69-8667-37638081d9a5 -2023-07-08 08:21:53.13846 2023-07-08 08:21:53.138471 aidref 20169106X R rec 12709a7d-e563-4e97-b36f-8248ad167308 -2023-07-08 08:21:53.230563 2023-07-08 08:21:53.230569 aidref 201716461 R rec 4163157c-a169-45a2-b58e-9f4dea135ac5 -2023-07-08 08:21:53.305528 2023-07-08 08:21:53.30554 aidref 201724588 R rec 6d74290c-4b2c-4167-9bd0-2d73d6d868b5 -2023-07-08 08:21:53.394795 2023-07-08 08:21:53.39481 aidref 201753413 R rec 94ecf6c1-8ce8-4bf6-a8c8-7b4ef4a36359 -2023-07-08 08:21:53.477097 2023-07-08 08:21:53.477112 aidref 201756463 R rec b2d0b6de-98ae-4c5b-8b84-29c9743998e6 -2023-07-08 08:21:53.549791 2023-07-08 08:21:53.549796 aidref 201762641 R rec a8667058-2b1a-4185-a69d-eb165c22e03b -2023-07-08 08:21:53.626691 2023-07-08 08:21:53.626696 aidref 201790017 R rec 28302f64-2d69-4532-baf4-ccc9765c770e -2023-07-08 08:21:53.705694 2023-07-08 08:21:53.705701 aidref 201827581 R rec 5d59137f-9b02-4786-9628-454883619dfa -2023-07-08 08:21:53.778707 2023-07-08 08:21:53.778721 aidref 201830507 R rec 5cd3142d-a8be-4790-9f0f-235cb4dd69bd -2023-07-08 08:21:53.865073 2023-07-08 08:21:53.865083 aidref 201849534 R rec a5f1eade-b660-44c5-acc7-85285bca90ab -2023-07-08 08:21:53.952918 2023-07-08 08:21:53.952923 aidref 20185080X R rec c1afa8f6-54e3-4c22-a8e7-32591305d451 -2023-07-08 08:21:54.032603 2023-07-08 08:21:54.032609 aidref 202400263 R rec da6545fd-9f00-4bf4-b003-fdb39daea257 -2023-07-08 08:21:54.118177 2023-07-08 08:21:54.118192 aidref 202446573 R rec 8df80107-aa3d-458a-8d7a-795e8fc8d5d3 -2023-07-08 08:21:54.219031 2023-07-08 08:21:54.219046 aidref 202513645 R rec d19736b5-8e53-46fe-beab-6c7560dcef78 -2023-07-08 08:21:54.294178 2023-07-08 08:21:54.294184 aidref 202637417 R rec 3c44d2bf-1da2-4e31-9107-98e47e47fc79 -2023-07-08 08:21:54.367979 2023-07-08 08:21:54.367997 aidref 202648087 R rec b1b0f9ed-aefe-4f14-8c80-8b21f9d1caac -2023-07-08 08:21:54.459453 2023-07-08 08:21:54.459464 aidref 202681793 R rec aef17f7f-bfc7-476d-81b4-8d6f9892d73b -2023-07-08 08:21:54.543931 2023-07-08 08:21:54.543945 aidref 202685144 R rec 9d9c8077-fd2d-4031-b021-1e86f531ece4 -2023-07-08 08:21:54.620438 2023-07-08 08:21:54.620443 aidref 202745279 R rec 66d1715a-e693-47fd-9f75-64261a9656a3 -2023-07-08 08:21:54.688513 2023-07-08 08:21:54.688519 aidref 202768740 R rec bc937fc0-c670-43a8-baa7-3908583e71de -2023-07-08 08:21:54.752986 2023-07-08 08:21:54.752991 aidref 202773663 R rec 77091c9f-1333-48fe-9fe9-54fb3840cf68 -2023-07-08 08:21:54.825905 2023-07-08 08:21:54.825915 aidref 202908097 R rec fbc0cd7f-03ba-4302-8146-c2f2eab8e9f8 -2023-07-08 08:21:54.922016 2023-07-08 08:21:54.922028 aidref 202971511 R rec 9e713611-3f9b-46f4-9cc7-362430531307 -2023-07-08 08:21:55.016752 2023-07-08 08:21:55.016763 aidref 202987752 R rec afefe466-b17a-4fbe-bd8a-bc489bf28de6 -2023-07-08 08:21:55.112402 2023-07-08 08:21:55.112407 aidref 20307324X R rec 85e1baec-400f-43e2-bbe0-88ce703cf77e -2023-07-08 08:21:55.181784 2023-07-08 08:21:55.18179 aidref 203079442 R rec 843831ca-c0b1-4dff-b479-ea4e281e6f29 -2023-07-08 08:21:55.260274 2023-07-08 08:21:55.260288 aidref 203120752 R rec ebf25c42-bde8-4d3f-aaa7-e48fa985fef3 -2023-07-08 08:21:55.359755 2023-07-08 08:21:55.359761 aidref 203121953 R rec c6db4071-17b9-41d1-abe1-533665957dda -2023-07-08 08:21:55.437749 2023-07-08 08:21:55.437764 aidref 203168712 R rec 30470da4-11c6-4901-8aeb-c7c59edaa8b7 -2023-07-08 08:21:55.531239 2023-07-08 08:21:55.531245 aidref 203351312 R rec 0de66cee-b161-42b7-bcdf-786db637979c -2023-07-08 08:21:55.616348 2023-07-08 08:21:55.61636 aidref 203359321 R rec 63a79193-3a6e-4d1f-aa3a-28dd06fb021a -2023-07-08 08:21:55.713736 2023-07-08 08:21:55.713742 aidref 203372514 R rec aaac0381-f025-4b14-b9f8-483b30e21a4e -2023-07-08 08:21:55.822846 2023-07-08 08:21:55.822852 aidref 203387279 R rec 692f2fb1-e3b7-4f52-9783-9e8a3b56dce4 -2023-07-08 08:21:55.893863 2023-07-08 08:21:55.893868 aidref 20354014X R rec bc96099b-a0b9-48c8-b0fa-246a552e8341 -2023-07-08 08:21:55.975015 2023-07-08 08:21:55.975028 aidref 203603141 R rec b71fea1c-542e-4545-8902-605bba56e5db -2023-07-08 08:21:56.111642 2023-07-08 08:21:56.111654 aidref 203620941 R rec af3a7d5f-4232-491d-afc8-2469f361c747 -2023-07-08 08:21:56.244945 2023-07-08 08:21:56.244965 aidref 203662997 R rec ba0e27c5-9e96-4505-a8cd-a8c378ecd34a -2023-07-08 08:21:56.34828 2023-07-08 08:21:56.348287 aidref 203861108 R rec 405eecaa-412f-4a14-a6bf-e00e1411e85f -2023-07-08 08:21:56.433463 2023-07-08 08:21:56.433476 aidref 203863232 R rec 7f20c163-47b0-4e1b-8bfa-84baa816b940 -2023-07-08 08:21:56.554528 2023-07-08 08:21:56.554539 aidref 203926625 R rec a47ed013-ae17-42f8-bc03-649766f34381 -2023-07-08 08:21:56.672582 2023-07-08 08:21:56.672588 aidref 203929594 R rec 8779d4ad-4417-4432-aaf2-727bfab2288e -2023-07-08 08:21:56.756115 2023-07-08 08:21:56.756126 aidref 203933036 R rec 8c2372fc-1e6f-434e-a229-495eb94256f5 -2023-07-08 08:21:56.887746 2023-07-08 08:21:56.887759 aidref 203935616 R rec 77508039-5a5c-4857-9b0e-51e413656fff -2023-07-08 08:21:56.989217 2023-07-08 08:21:56.989228 aidref 203937740 R rec e188e663-e07f-479e-bf0c-8e0f2ed63916 -2023-07-08 08:21:57.111438 2023-07-08 08:21:57.111451 aidref 20394562X R rec e25e24a7-d84c-4bdf-be21-e5314fe526af -2023-07-08 08:21:57.217246 2023-07-08 08:21:57.217264 aidref 203971051 R rec 61da99a0-0760-4ce2-a9b5-d4b6bde35158 -2023-07-08 08:21:57.313089 2023-07-08 08:21:57.313099 aidref 204040388 R rec 5866f28e-056f-4e33-848a-8b97acc2aafe -2023-07-08 08:21:57.426362 2023-07-08 08:21:57.426375 aidref 204097428 R rec 0c7cf4a5-90c6-4650-a4ff-4c2409432b6f -2023-07-08 08:21:57.527385 2023-07-08 08:21:57.527477 aidref 204167000 R rec 6a8de648-39f6-4759-954f-5165544ff08a -2023-07-08 08:21:57.632689 2023-07-08 08:21:57.6327 aidref 204208246 R rec b4fb1484-dcbf-4bde-b5ce-5285a3db0fb7 -2023-07-08 08:21:57.740083 2023-07-08 08:21:57.740094 aidref 20422280X R rec 9b3ebb77-431d-4d10-8fc1-6380cd3331f0 -2023-07-08 08:21:57.839457 2023-07-08 08:21:57.839467 aidref 204242479 R rec f7a4a59c-aa1f-48a2-a952-2d88b90b9a01 -2023-07-08 08:21:57.956388 2023-07-08 08:21:57.956406 aidref 204251206 R rec a1945f19-6d81-44af-a79e-50d4cd82f0a8 -2023-07-08 08:21:58.076645 2023-07-08 08:21:58.076656 aidref 20436678X R rec b907f496-0676-49a2-a718-e6492f2bc6b6 -2023-07-08 08:21:58.186168 2023-07-08 08:21:58.186173 aidref 204436869 R rec 10f97a6e-994b-4904-b294-17bbc0051904 -2023-07-08 08:21:58.273944 2023-07-08 08:21:58.273957 aidref 204581745 R rec dc0e22b1-d27b-44ef-a00a-e801f47a0c5f -2023-07-08 08:21:58.394443 2023-07-08 08:21:58.394453 aidref 204651913 R rec 888ab591-b117-4bbf-a15f-6f3bf7d16f4a -2023-07-08 08:21:58.511097 2023-07-08 08:21:58.511108 aidref 204719593 R rec 5b766149-5887-4528-b58d-cee658add4b9 -2023-07-08 08:21:58.604491 2023-07-08 08:21:58.604505 aidref 204750032 R rec e968cc62-447f-4690-878b-ced30ece037d -2023-07-08 08:21:58.736167 2023-07-08 08:21:58.736183 aidref 204755824 R rec 86de4884-dd21-496c-9631-e0df7bb6ae1a -2023-07-08 08:21:58.839141 2023-07-08 08:21:58.839157 aidref 20476209X R rec fb9c65b0-b220-4a44-9104-dc2817219446 -2023-07-08 08:21:58.954091 2023-07-08 08:21:58.954101 aidref 204801923 R rec cf2c0b05-d047-4ea3-830d-0fa15a92374d -2023-07-08 08:21:59.061057 2023-07-08 08:21:59.061072 aidref 219558523 R rec 4a703784-d5ca-436e-945f-b2aa92cc5065 -2023-07-08 08:21:59.153991 2023-07-08 08:21:59.154007 aidref 219844496 R rec 297dd9d8-6cc4-4b98-9486-556c1f76f52d -2023-07-08 08:21:59.267198 2023-07-08 08:21:59.267208 aidref 219895058 R rec 8e4ef6ea-b0f2-4157-8d7e-dbe9ef366ae6 -2023-07-08 08:21:59.358421 2023-07-08 08:21:59.358433 aidref 219901015 R rec 2c6877c0-dc7b-4389-866f-2f4147d34319 -2023-07-08 08:21:59.474013 2023-07-08 08:21:59.474023 aidref 219918252 R rec 87b671f9-6d86-4bf9-b667-5cd808149272 -2023-07-08 08:21:59.573801 2023-07-08 08:21:59.573815 aidref 219992657 R rec 666fdc61-7c2a-496f-a100-6ce402a18c3a -2023-07-08 08:21:59.684534 2023-07-08 08:21:59.684547 aidref 220045143 R rec 035da096-76ad-46e0-836a-e2f5f1c371b6 -2023-07-08 08:21:59.796544 2023-07-08 08:21:59.796553 aidref 220058784 R rec 4e1dd282-870c-42ee-89df-9b22a9ecbbb3 -2023-07-08 08:21:59.908279 2023-07-08 08:21:59.908294 aidref 220068062 R rec ccdc3427-8b5f-43ab-8b21-b4c34ef34030 -2023-07-08 08:22:00.02032 2023-07-08 08:22:00.020331 aidref 220075247 R rec fd93878c-94dc-45d5-8cc3-908758eb8c60 -2023-07-08 08:22:00.107386 2023-07-08 08:22:00.107398 aidref 220078440 R rec 02099f5a-bc32-4a2f-950f-cd5f091d65ba -2023-07-08 08:22:00.201978 2023-07-08 08:22:00.201993 aidref 220159157 R rec 8bff22ad-6eb5-462d-904b-41e2baa44a4c -2023-07-08 08:22:00.306085 2023-07-08 08:22:00.306098 aidref 220178003 R rec 8aa1204c-146c-4bbb-ad34-a2274c0c211a -2023-07-08 08:22:00.407634 2023-07-08 08:22:00.407646 aidref 220196133 R rec e2ab1982-ec97-4a9c-acb7-1fd04cfab6c2 -2023-07-08 08:22:00.49576 2023-07-08 08:22:00.495773 aidref 220218919 R rec 382bd38e-f48e-460c-a562-cfdb94886a6c -2023-07-08 08:22:00.621127 2023-07-08 08:22:00.62114 aidref 220304114 R rec 75f696ee-4b77-42e1-8387-37b966ebba08 -2023-07-08 08:22:00.738037 2023-07-08 08:22:00.738048 aidref 220457220 R rec 31331893-fd2e-4f71-9d09-b64056de9a54 -2023-07-08 08:22:00.935999 2023-07-08 08:22:00.936013 aidref 220609829 R rec a559b92c-f855-48c9-bced-1a52cd2aab7c -2023-07-08 08:22:01.079766 2023-07-08 08:22:01.079788 aidref 220828164 R rec e9f1b618-2c4c-4c8b-8e91-0a790ab074ef -2023-07-08 08:22:01.216897 2023-07-08 08:22:01.216907 aidref 22088787X R rec d63bfad5-7400-4e33-96d5-1b1ee4ffc39a -2023-07-08 08:22:01.347255 2023-07-08 08:22:01.347265 aidref 220890056 R rec b3ba1cdc-22ef-4298-b29d-895e944705f4 -2023-07-08 08:22:01.469999 2023-07-08 08:22:01.470016 aidref 221211810 R rec 2a5b266e-eaa0-4f71-a64a-b7e78307fe93 -2023-07-08 08:22:01.567305 2023-07-08 08:22:01.567318 aidref 221276904 R rec cf00066f-b8bc-47ef-a2a8-44f875522eba -2023-07-08 08:22:01.668991 2023-07-08 08:22:01.669001 aidref 221337571 R rec 278a68a8-8cae-4bc2-bf57-b152319b82c9 -2023-07-08 08:22:01.766635 2023-07-08 08:22:01.76664 aidref 221337806 R rec ff9cf48a-b4ba-470c-ad3a-dcbae96338dd -2023-07-08 08:22:01.858108 2023-07-08 08:22:01.858122 aidref 221343555 R rec 369ba661-6b95-41f7-84be-b89895dfe29e -2023-07-08 08:22:01.96761 2023-07-08 08:22:01.967622 aidref 221345477 R rec e50a8849-885f-462f-8914-aa84ea040d78 -2023-07-08 08:22:02.073505 2023-07-08 08:22:02.073511 aidref 221427767 R rec 493c8e43-60fc-4b04-ab18-ede59ed93780 -2023-07-08 08:22:02.179875 2023-07-08 08:22:02.179885 aidref 221465480 R rec b99f7768-2fe9-4b42-8d79-88eecff3ef5f -2023-07-08 08:22:02.284935 2023-07-08 08:22:02.284949 aidref 221485554 R rec 45c0f80d-a191-4d95-a647-d05e2f130ebd -2023-07-08 08:22:02.405386 2023-07-08 08:22:02.405396 aidref 221493646 R rec d9c3fed1-8301-4a68-b004-2bd94d9ee703 -2023-07-08 08:22:02.517457 2023-07-08 08:22:02.517472 aidref 221661425 R rec a729bfc2-f8f1-46d1-9084-6f8665ed13f6 -2023-07-08 08:22:02.644553 2023-07-08 08:22:02.644563 aidref 221728856 R rec 1ca368dc-18e0-4316-866a-65c7d931fff7 -2023-07-08 08:22:02.736684 2023-07-08 08:22:02.736696 aidref 22175167X R rec 84b78b7d-767b-4519-842c-5bffc9cea86f -2023-07-08 08:22:02.828119 2023-07-08 08:22:02.828128 aidref 221761942 R rec 050fb066-350a-4290-a18c-ca3d48439a54 -2023-07-08 08:22:02.953969 2023-07-08 08:22:02.95398 aidref 22344250X R rec 84066f57-7868-4c59-a4a4-d9c23796db90 -2023-07-08 08:22:03.051925 2023-07-08 08:22:03.051937 aidref 223483516 R rec 24cccca3-16ee-4da5-bb21-633a136d97f5 -2023-07-08 08:22:03.170567 2023-07-08 08:22:03.170577 aidref 223491071 R rec 4d99b988-e32e-4c44-b778-01b5b45acaf4 -2023-07-08 08:22:03.319233 2023-07-08 08:22:03.319245 aidref 223505056 R rec 4fba2d65-bf45-44f8-84e0-b83437778f32 -2023-07-08 08:22:03.41942 2023-07-08 08:22:03.419436 aidref 223537616 R rec ecceba9d-295c-4095-94dd-da8b53b779e2 -2023-07-08 08:22:03.549711 2023-07-08 08:22:03.549729 aidref 223609935 R rec 8dea58b7-3aeb-4719-817a-96691e422be2 -2023-07-08 08:22:03.677458 2023-07-08 08:22:03.677468 aidref 223614866 R rec 90100f7d-97fc-47a9-b2d7-4e0220bd3ef9 -2023-07-08 08:22:03.781902 2023-07-08 08:22:03.781913 aidref 223652555 R rec 1df286b5-0282-4443-847b-1ff9ab2e6b2f -2023-07-08 08:22:03.886944 2023-07-08 08:22:03.886954 aidref 223704288 R rec 7bd460e8-bacc-44ba-ad21-eff299e35692 -2023-07-08 08:22:03.990307 2023-07-08 08:22:03.990319 aidref 22376423X R rec 621af4c1-4538-4def-91d0-01ee4e02ce06 -2023-07-08 08:22:04.111362 2023-07-08 08:22:04.111372 aidref 223847585 R rec 48bf160d-e989-4ab6-80d7-6ff7b2659efd -2023-07-08 08:22:04.25931 2023-07-08 08:22:04.259322 aidref 223852481 R rec 7ed9ba78-c138-47c3-a732-f0e6682cf191 -2023-07-08 08:22:04.374319 2023-07-08 08:22:04.374334 aidref 223890472 R rec a74781c7-02d4-4986-8953-864352253bd7 -2023-07-08 08:22:04.490369 2023-07-08 08:22:04.49038 aidref 224016806 R rec aff09496-ac37-4024-aa79-a981fc66fb2c -2023-07-08 08:22:04.606526 2023-07-08 08:22:04.606544 aidref 224210963 R rec 9a822747-5f7b-4d3d-ba68-02f2c8b9a92b -2023-07-08 08:22:04.719553 2023-07-08 08:22:04.719563 aidref 224227815 R rec 6bc912c3-0d99-46aa-a765-3c2a5ad50939 -2023-07-08 08:22:04.828527 2023-07-08 08:22:04.828538 aidref 224319418 R rec 6a8a0c45-8155-4b0e-8fb3-743fee133f43 -2023-07-08 08:22:04.951914 2023-07-08 08:22:04.951929 aidref 224335081 R rec 1cfd12ed-7a29-48f1-b115-66ba7ad8848b -2023-07-08 08:22:05.082614 2023-07-08 08:22:05.082631 aidref 22438306X R rec a063624c-98a6-42f6-93fe-37dc7ce8f264 -2023-07-08 08:22:05.192144 2023-07-08 08:22:05.192157 aidref 224404717 R rec 7e7aec5a-fa70-4bdd-bf00-e3974df7d5c8 -2023-07-08 08:22:05.303222 2023-07-08 08:22:05.303235 aidref 224452630 R rec cd615999-45ee-4e41-b3c4-ccf7cf8ce9a9 -2023-07-08 08:22:05.424478 2023-07-08 08:22:05.424492 aidref 224502557 R rec 3ffa0fd1-f3b6-4a5e-93fb-965d7251f674 -2023-07-08 08:22:05.551498 2023-07-08 08:22:05.551509 aidref 224542249 R rec 3b9eb91c-2bfb-42e8-ad99-b881e1876e66 -2023-07-08 08:22:05.670228 2023-07-08 08:22:05.670233 aidref 224544411 R rec a4de8a72-b1c5-4917-9448-6f93309ab685 -2023-07-08 08:22:05.794196 2023-07-08 08:22:05.794202 aidref 224701592 R rec cd63d25d-7530-435c-ab00-44cd9f24544c -2023-07-08 08:22:05.903895 2023-07-08 08:22:05.903906 aidref 22472178X R rec 64d69b92-1789-4d99-ab38-671362fd62ce -2023-07-08 08:22:06.011815 2023-07-08 08:22:06.011826 aidref 224789147 R rec c045a711-e113-4958-8df6-d879e4f16360 -2023-07-08 08:22:06.138057 2023-07-08 08:22:06.13807 aidref 224794272 R rec bba78020-a11e-44ad-ab34-2ec2bfb28c3a -2023-07-08 08:22:06.282128 2023-07-08 08:22:06.282139 aidref 224842722 R rec 1f27dc68-2b0e-4968-b80e-01ea3a4a9d7a -2023-07-08 08:22:06.4028 2023-07-08 08:22:06.402812 aidref 224847333 R rec b43616f9-4895-40ca-93ae-fd50eec4be30 -2023-07-08 08:22:06.501086 2023-07-08 08:22:06.501097 aidref 224875868 R rec 3cdf8cfc-61d2-42d3-b293-9c97901567b2 -2023-07-08 08:22:06.614342 2023-07-08 08:22:06.614348 aidref 224900536 R rec dece56d8-3dd7-4e1e-a2d7-c9f43f574e43 -2023-07-08 08:22:06.708585 2023-07-08 08:22:06.708614 aidref 224972065 R rec 599d70fb-e4ed-4619-b9a7-85d6a5efea49 -2023-07-08 08:22:06.819046 2023-07-08 08:22:06.819055 aidref 224991523 R rec c14f17c8-393c-43b6-9740-d5750da0eeb0 -2023-07-08 08:22:06.938351 2023-07-08 08:22:06.938367 aidref 225224054 R rec a498439a-8be0-4dd3-9d8b-eb5f03200101 -2023-07-08 08:22:07.073501 2023-07-08 08:22:07.073512 aidref 225402475 R rec 57c43645-35f6-466d-a6dc-c08426477c0d -2023-07-08 08:22:07.194277 2023-07-08 08:22:07.194287 aidref 225406292 R rec 3c8308d0-1f9b-4e1c-a890-1d42a43d5b56 -2023-07-08 08:22:07.305497 2023-07-08 08:22:07.305512 aidref 225412632 R rec 222aee29-2190-4c96-b9db-fd98611fbfec -2023-07-08 08:22:07.423295 2023-07-08 08:22:07.423301 aidref 225448475 R rec 9cae4b1a-0bce-4aa6-b03d-3fe6821d7345 -2023-07-08 08:22:07.52817 2023-07-08 08:22:07.528182 aidref 225463121 R rec ab3dd73f-5322-4ee1-b1ba-63efc4fd34e7 -2023-07-08 08:22:07.637237 2023-07-08 08:22:07.637255 aidref 225512521 R rec c4d1d6ee-31aa-4b52-8d06-d9b5b0f38633 -2023-07-08 08:22:07.747171 2023-07-08 08:22:07.747213 aidref 225514451 R rec 99b475c9-3421-4a75-8041-d49f0f7eb935 -2023-07-08 08:22:07.851016 2023-07-08 08:22:07.851028 aidref 225603128 R rec b7a111cb-1c09-478e-b6bf-8f40dce47acb -2023-07-08 08:22:07.9432 2023-07-08 08:22:07.943212 aidref 225616459 R rec f23a863e-bd50-4e65-a4e4-63cd28cce074 -2023-07-08 08:22:08.048563 2023-07-08 08:22:08.048579 aidref 225732394 R rec c9398d34-a4a8-46e9-a174-260be04f84d2 -2023-07-08 08:22:08.156111 2023-07-08 08:22:08.156124 aidref 225791153 R rec 55d02290-7b74-4c07-aa73-b9b5f3c400f2 -2023-07-08 08:22:08.268189 2023-07-08 08:22:08.268303 aidref 225800373 R rec cd920fab-7209-45f3-a426-c68204def4b8 -2023-07-08 08:22:08.383298 2023-07-08 08:22:08.383308 aidref 225803658 R rec 0842c832-62df-490a-8d57-e47b867328ca -2023-07-08 08:22:08.486749 2023-07-08 08:22:08.486759 aidref 226149390 R rec 3449ac82-0b6e-499f-82e2-e4f733f7c39c -2023-07-08 08:22:08.627979 2023-07-08 08:22:08.627989 aidref 226257444 R rec d18f392b-e36d-4210-bdc7-e1d01f484ed2 -2023-07-08 08:22:08.753528 2023-07-08 08:22:08.75354 aidref 226272893 R rec e3411a5c-41ec-475a-b8eb-e90a51839af5 -2023-07-08 08:22:08.889858 2023-07-08 08:22:08.890445 aidref 226304108 R rec e5b93ad4-4142-4e07-907b-68848d17c149 -2023-07-08 08:22:09.002736 2023-07-08 08:22:09.00275 aidref 226336328 R rec 19673c33-b622-44e1-8222-9baba47b2b15 -2023-07-08 08:22:09.10472 2023-07-08 08:22:09.104735 aidref 226372294 R rec e1467245-59fa-47b1-b481-b2fab9bd916d -2023-07-08 08:22:09.217455 2023-07-08 08:22:09.21747 aidref 226411354 R rec 16477f0a-16a5-409f-b19b-b0378acdeea0 -2023-07-08 08:22:09.331395 2023-07-08 08:22:09.331406 aidref 22676026X R rec 51f21775-35a9-4db9-932c-6af54c288615 -2023-07-08 08:22:09.431868 2023-07-08 08:22:09.431881 aidref 226865037 R rec 7b5b65a3-5718-4f05-b433-b3b7f0e3e034 -2023-07-08 08:22:09.543777 2023-07-08 08:22:09.543788 aidref 226921670 R rec 9dbebdf1-a6b6-4938-ae38-f2681d597cfa -2023-07-08 08:22:09.657048 2023-07-08 08:22:09.657052 aidref 226932141 R rec 1d71b620-6b14-4ac5-afc2-f99218888e4b -2023-07-08 08:22:09.756977 2023-07-08 08:22:09.756991 aidref 226958728 R rec a9e7a619-0491-400c-910c-d32e80070c3b -2023-07-08 08:22:09.875851 2023-07-08 08:22:09.875861 aidref 226964736 R rec 93717707-9c94-40f6-bbb1-62a5cf148a98 -2023-07-08 08:22:09.995477 2023-07-08 08:22:09.995494 aidref 227130812 R rec 4b19e5ee-7ef1-4727-8d52-031c5798cff0 -2023-07-08 08:22:10.113087 2023-07-08 08:22:10.113102 aidref 227218493 R rec baa6ac24-4dc5-4db0-b637-c1f611f43805 -2023-07-08 08:22:10.236528 2023-07-08 08:22:10.236544 aidref 227236610 R rec 0f496bb9-172b-4f63-9f6e-2061bead5395 -2023-07-08 08:22:10.351073 2023-07-08 08:22:10.351091 aidref 227237382 R rec 42af6612-ab63-4402-907e-2883651eb827 -2023-07-08 08:22:10.460169 2023-07-08 08:22:10.460184 aidref 227302370 R rec 05e11f12-80c5-49bb-b9df-cc4f5134cc1d -2023-07-08 08:22:10.57629 2023-07-08 08:22:10.576298 aidref 227327551 R rec 0b198ca6-e751-4b38-adde-7dfa64c7da6e -2023-07-08 08:22:10.668369 2023-07-08 08:22:10.668381 aidref 227475453 R rec 4824bdfe-0e66-4a1d-800a-43c7fb6ff3ab -2023-07-08 08:22:10.784367 2023-07-08 08:22:10.784378 aidref 22749900X R rec b69645dc-879f-4775-9726-ff33c23004b8 -2023-07-08 08:22:10.917979 2023-07-08 08:22:10.917997 aidref 227511980 R rec 5e22443c-dff3-4e19-a3b1-b59ccf34cf6b -2023-07-08 08:22:11.017016 2023-07-08 08:22:11.017026 aidref 227583752 R rec 443de1b5-4a23-46ae-9fdb-890ee1813a32 -2023-07-08 08:22:11.131162 2023-07-08 08:22:11.131173 aidref 227594509 R rec 2b4879f4-b964-421b-828d-ca6a1db2e453 -2023-07-08 08:22:11.22123 2023-07-08 08:22:11.221243 aidref 227599055 R rec e30e749e-0640-4cfd-9f69-79ef8ebc85dc -2023-07-08 08:22:11.332228 2023-07-08 08:22:11.33224 aidref 227616839 R rec 5b068d4f-7b57-4b3c-97d4-db00ff7ce498 -2023-07-08 08:22:11.447041 2023-07-08 08:22:11.447055 aidref 227645278 R rec 217c23d7-4bb1-4ae4-be13-e72e3037eb13 -2023-07-08 08:22:11.549015 2023-07-08 08:22:11.54903 aidref 227762045 R rec acd07403-e1d9-4fa7-b655-0a76a6ad5dd3 -2023-07-08 08:22:11.650166 2023-07-08 08:22:11.650182 aidref 22779222X R rec b9c9a2f1-941e-43de-ba0a-f10cf5928ce5 -2023-07-08 08:22:11.750734 2023-07-08 08:22:11.750747 aidref 227806646 R rec aa3dede9-2bcd-451a-9335-910ae01bb06c -2023-07-08 08:22:11.872198 2023-07-08 08:22:11.872203 aidref 227845307 R rec e313ac7d-afa9-4e93-a374-b912e82bcdfd -2023-07-08 08:22:11.961211 2023-07-08 08:22:11.961223 aidref 227933923 R rec aff508db-e3e4-48e7-9fd7-bf30b4905019 -2023-07-08 08:22:12.065871 2023-07-08 08:22:12.065886 aidref 22793492X R rec 16aaf4a9-3551-43a9-831c-f9ca510fd6bc -2023-07-08 08:22:12.205003 2023-07-08 08:22:12.205017 aidref 227979303 R rec 8aea1aa8-497b-4df8-a0bc-81fc24bc508c -2023-07-08 08:22:12.339781 2023-07-08 08:22:12.339793 aidref 228238714 R rec e1986f8a-5110-4ce7-99e6-dcab7710e52d -2023-07-08 08:22:12.47234 2023-07-08 08:22:12.472357 aidref 228263050 R rec ffc79833-bea2-47cd-8538-5d5864142a76 -2023-07-08 08:22:12.596346 2023-07-08 08:22:12.596358 aidref 228795990 R rec fe4e1ec6-f4f6-4223-ada0-ab1484098952 -2023-07-08 08:22:12.697375 2023-07-08 08:22:12.697394 aidref 228853214 R rec 190e6380-64bf-4f84-9378-2153b6323385 -2023-07-08 08:22:12.810828 2023-07-08 08:22:12.810843 aidref 228947545 R rec 5a988b99-c213-4de4-b0d8-fee26850966d -2023-07-08 08:22:12.927931 2023-07-08 08:22:12.927941 aidref 229034713 R rec 275b2390-6589-4951-a478-4a8d9919fb89 -2023-07-08 08:22:13.025157 2023-07-08 08:22:13.025168 aidref 229300324 R rec 951b25a6-feb2-4e42-8fb5-f6cf04e772bf -2023-07-08 08:22:13.136841 2023-07-08 08:22:13.136854 aidref 229580165 R rec 0a89df77-0449-4a43-8b77-8d7696509380 -2023-07-08 08:22:13.267732 2023-07-08 08:22:13.267743 aidref 229619231 R rec fa5961d0-3407-480a-a36c-2f41a8e2b523 -2023-07-08 08:22:13.388617 2023-07-08 08:22:13.388632 aidref 229650473 R rec bbf29df7-e075-4c0d-b5b6-962bab3fc705 -2023-07-08 08:22:13.489608 2023-07-08 08:22:13.489624 aidref 229663362 R rec f8cdd4ee-4ce6-40d9-9684-754b1b20b2dd -2023-07-08 08:22:13.60463 2023-07-08 08:22:13.604645 aidref 229665470 R rec f1bb54c8-cda3-44bf-8ab9-30848adcee1f -2023-07-08 08:22:13.718753 2023-07-08 08:22:13.718763 aidref 229675018 R rec 7ce72ce4-19c6-4624-90f2-0894fdbf779b -2023-07-08 08:22:13.8291 2023-07-08 08:22:13.829105 aidref 229703747 R rec cfaec539-5fdb-4cc2-ba88-60151854df53 -2023-07-08 08:22:13.926724 2023-07-08 08:22:13.926734 aidref 229818676 R rec e7ac383c-c721-4ab8-8652-a1ba6efa390a -2023-07-08 08:22:14.057341 2023-07-08 08:22:14.057349 aidref 229845606 R rec 3457f550-de99-4201-a113-0d12c6b2e9f8 -2023-07-08 08:22:14.178899 2023-07-08 08:22:14.178909 aidref 23008964X R rec 219fb871-1e02-4d9e-92bd-20997c843e06 -2023-07-08 08:22:14.288109 2023-07-08 08:22:14.288122 aidref 230158145 R rec d41210ff-b1be-4205-884a-360ad968f6f1 -2023-07-08 08:22:14.401588 2023-07-08 08:22:14.401605 aidref 230252427 R rec 630d30d9-af8e-49ee-a4ef-3b7355a1bc8e -2023-07-08 08:22:14.51604 2023-07-08 08:22:14.516051 aidref 230252575 R rec 762a8df5-6e92-4bea-a7ed-3f4b481c5ad4 -2023-07-08 08:22:14.635912 2023-07-08 08:22:14.635921 aidref 230306365 R rec b42b2727-aa2a-4ee7-a362-b30b603286e6 -2023-07-08 08:22:14.739238 2023-07-08 08:22:14.739253 aidref 230333885 R rec 338de4b9-08a6-42ef-9b3d-3fa0a72f7991 -2023-07-08 08:22:14.830981 2023-07-08 08:22:14.830993 aidref 230389597 R rec 09fecd9b-d997-4c9b-a1e1-2297f575d8be -2023-07-08 08:22:14.938165 2023-07-08 08:22:14.93818 aidref 230392407 R rec c1889db4-8b24-4a86-ba7b-483bfae42f13 -2023-07-08 08:22:15.068148 2023-07-08 08:22:15.068164 aidref 230394477 R rec 86c776fa-2152-4183-a908-b1f5eb8201cc -2023-07-08 08:22:15.178935 2023-07-08 08:22:15.178952 aidref 230409261 R rec a044ab99-6e69-4a8c-8fea-6c8812f32bdf -2023-07-08 08:22:15.315752 2023-07-08 08:22:15.315765 aidref 230421075 R rec 9bbdc30f-536d-4ff7-adce-38666d79daf2 -2023-07-08 08:22:15.424604 2023-07-08 08:22:15.424615 aidref 230487653 R rec 3373d276-3556-4c59-9885-28a694166766 -2023-07-08 08:22:15.555389 2023-07-08 08:22:15.555404 aidref 230499805 R rec ac2c69f4-103e-4bc8-8f17-d8b7e79c1454 -2023-07-08 08:22:15.659124 2023-07-08 08:22:15.659135 aidref 23054634X R rec 2e02fb62-f826-4352-a2db-005bb9716a5a -2023-07-08 08:22:15.784262 2023-07-08 08:22:15.784273 aidref 230568378 R rec c9f1aba7-daf4-48b5-bf13-4ab1d1cc62f7 -2023-07-08 08:22:15.878032 2023-07-08 08:22:15.878045 aidref 230663338 R rec c6a7c6a5-16c3-4763-bad2-423bc438b59c -2023-07-08 08:22:15.989449 2023-07-08 08:22:15.98946 aidref 230746608 R rec 9b74f38c-083b-42f7-be32-4f56a787251f -2023-07-08 08:22:16.115691 2023-07-08 08:22:16.115698 aidref 230769373 R rec 7b82b45a-9fa7-4b10-a228-70d262d57cc8 -2023-07-08 08:22:16.222557 2023-07-08 08:22:16.222573 aidref 230818846 R rec f832c410-bd7d-43d1-b3db-9b0f5240946f -2023-07-08 08:22:16.344983 2023-07-08 08:22:16.344997 aidref 230825478 R rec 6cfb9c93-ffb2-4ac1-a293-68338adf9808 -2023-07-08 08:22:16.45049 2023-07-08 08:22:16.450505 aidref 230880525 R rec 7bfc3910-4058-45a8-aafb-e6ac20e5cce4 -2023-07-08 08:22:16.561152 2023-07-08 08:22:16.561157 aidref 230910793 R rec f5b7a122-9af1-4d3d-a256-5cac7d14cdfc -2023-07-08 08:22:16.670889 2023-07-08 08:22:16.670894 aidref 230956866 R rec 6e5ca953-3fd1-4b2a-9ba2-e696ccc0309f -2023-07-08 08:22:16.792958 2023-07-08 08:22:16.792964 aidref 230969267 R rec 0fa02154-42f2-447b-8c03-0ad86819b099 -2023-07-08 08:22:16.89058 2023-07-08 08:22:16.890595 aidref 231084056 R rec 9da07c96-bc56-4181-8180-732ce45514e4 -2023-07-08 08:22:16.991909 2023-07-08 08:22:16.991921 aidref 231252188 R rec 88ed4ec8-f2c2-4d2e-971f-0996b7d719d7 -2023-07-08 08:22:17.10771 2023-07-08 08:22:17.107723 aidref 231276729 R rec 4787ee5b-936e-4c26-9ab8-b7d3f2ed01ba -2023-07-08 08:22:17.228603 2023-07-08 08:22:17.228612 aidref 231291779 R rec cc04d003-e7d2-4af7-808a-611dcccda195 -2023-07-08 08:22:17.329675 2023-07-08 08:22:17.329684 aidref 231292856 R rec d5a3dde5-5e1b-4b86-9905-0f4fd186cc70 -2023-07-08 08:22:17.432218 2023-07-08 08:22:17.432228 aidref 231295405 R rec cc8ef4aa-9853-4d5f-b10c-2bf6aba03257 -2023-07-08 08:22:17.530035 2023-07-08 08:22:17.530046 aidref 231314116 R rec ffb3cee7-dc32-4988-a88d-f0612745ac4e -2023-07-08 08:22:17.63582 2023-07-08 08:22:17.635874 aidref 231372507 R rec 9d6a25b6-73f5-4afb-9871-0e5db83de766 -2023-07-08 08:22:17.740439 2023-07-08 08:22:17.740451 aidref 231381476 R rec 91f5ec7e-43c1-444c-b88d-0f4b33ead475 -2023-07-08 08:22:17.860148 2023-07-08 08:22:17.86016 aidref 231381964 R rec e33e3740-a3ee-4479-bae4-9ee2b538631a -2023-07-08 08:22:17.933146 2023-07-08 08:22:17.933156 aidref 231451555 R rec f42e0a59-262f-4a65-8da4-13f3ac8530d1 -2023-07-08 08:22:18.021458 2023-07-08 08:22:18.021473 aidref 231480520 R rec b2a464fd-9604-4b23-aaf1-e11239173111 -2023-07-08 08:22:18.132617 2023-07-08 08:22:18.132622 aidref 231537743 R rec 82f08253-3a51-43bd-8d1f-75657a282544 -2023-07-08 08:22:18.223861 2023-07-08 08:22:18.223873 aidref 231540957 R rec e313fbbf-596c-4318-8189-a41b56f79953 -2023-07-08 08:22:18.320285 2023-07-08 08:22:18.320298 aidref 231623739 R rec add15f80-31cd-4522-b3fe-37cf1e255c6c -2023-07-08 08:22:18.444905 2023-07-08 08:22:18.444919 aidref 231934203 R rec 638281e6-1908-4dbc-abaf-48bf98e0d8f4 -2023-07-08 08:22:18.540084 2023-07-08 08:22:18.540095 aidref 232202699 R rec 4192e44e-adf8-448d-9bab-f097e4beeea1 -2023-07-08 08:22:18.638959 2023-07-08 08:22:18.63897 aidref 232278431 R rec ade15400-cad5-4296-96bd-2d1053a25e25 -2023-07-08 08:22:18.748611 2023-07-08 08:22:18.748621 aidref 232343446 R rec 8a91d6a1-152f-4882-a465-3a8082340bb2 -2023-07-08 08:22:18.83361 2023-07-08 08:22:18.833623 aidref 232523703 R rec 9e6ac26b-f575-4f74-8aed-5e28d15952d3 -2023-07-08 08:22:18.935028 2023-07-08 08:22:18.935041 aidref 232530343 R rec b107ece1-a1a2-4788-8c0e-5f3c70c63e54 -2023-07-08 08:22:19.052915 2023-07-08 08:22:19.05293 aidref 232640858 R rec e78c324e-20d6-4da7-8863-1d599ad979c0 -2023-07-08 08:22:19.174218 2023-07-08 08:22:19.174225 aidref 232656770 R rec 718caa99-a53e-465e-b230-936ed11b278a -2023-07-08 08:22:19.280523 2023-07-08 08:22:19.280538 aidref 232674450 R rec ad930cc9-af47-415f-af06-53dd5414470e -2023-07-08 08:22:19.385856 2023-07-08 08:22:19.385872 aidref 232696551 R rec effbf331-9c5b-44c6-bbcd-a332e1427920 -2023-07-08 08:22:19.501492 2023-07-08 08:22:19.501502 aidref 232702845 R rec 2027909c-9b84-4cb1-8faa-02fb1e2a6b77 -2023-07-08 08:22:19.607817 2023-07-08 08:22:19.607832 aidref 23272377X R rec e0f4a77c-0143-4efb-b6ae-98f8c6b3986c -2023-07-08 08:22:19.71253 2023-07-08 08:22:19.712539 aidref 23272380X R rec 49152f4c-46d6-4402-a1da-5540ed9cc06e -2023-07-08 08:22:19.808566 2023-07-08 08:22:19.808581 aidref 232774072 R rec 74b67353-afdd-42b8-8899-8810342dfb00 -2023-07-08 08:22:19.909935 2023-07-08 08:22:19.909945 aidref 232796734 R rec 87db4990-9558-4089-858f-1ae36c0cc9f5 -2023-07-08 08:22:20.010324 2023-07-08 08:22:20.010335 aidref 232804788 R rec c7c11c60-ac0e-4a1a-8e05-3ee374d97f93 -2023-07-08 08:22:20.104138 2023-07-08 08:22:20.104148 aidref 232805636 R rec dd3eb377-2825-46fd-875b-c5b0efd52262 -2023-07-08 08:22:20.231855 2023-07-08 08:22:20.231861 aidref 232810265 R rec d5aa14c0-b663-45d9-b218-878e04503d9c -2023-07-08 08:22:20.3135 2023-07-08 08:22:20.313514 aidref 232813116 R rec 2b381690-995d-4b4c-b285-81e92013d1eb -2023-07-08 08:22:20.418538 2023-07-08 08:22:20.418552 aidref 232862583 R rec e66a970c-ec9c-4731-91ac-2d573a5d476c -2023-07-08 08:22:20.518477 2023-07-08 08:22:20.518493 aidref 232868468 R rec 38daa3b7-a629-446f-b9c7-c0f3b7bed173 -2023-07-08 08:22:20.618976 2023-07-08 08:22:20.618986 aidref 232869278 R rec 338fecdd-e0bc-4b1e-a7c9-638598d8c1ee -2023-07-08 08:22:20.710393 2023-07-08 08:22:20.710412 aidref 232895651 R rec e31104e4-9a4a-49ea-801b-9d63b265fee4 -2023-07-08 08:22:20.830114 2023-07-08 08:22:20.83012 aidref 232897964 R rec d8b54add-bfc2-48c3-9062-6e7fbf229d4a -2023-07-08 08:22:20.921441 2023-07-08 08:22:20.921455 aidref 232915741 R rec b6b3363e-bf9a-4f1f-a3e1-76f6b630ccc8 -2023-07-08 08:22:21.02614 2023-07-08 08:22:21.02615 aidref 232934436 R rec b70b0eeb-dd66-4c17-b669-f9295d5ddd1b -2023-07-08 08:22:21.132737 2023-07-08 08:22:21.132749 aidref 233220984 R rec 9fc27f61-74e9-46a7-92b2-beab7109f988 -2023-07-08 08:22:21.234309 2023-07-08 08:22:21.234319 aidref 23322758X R rec d4752307-b816-43a6-9b7b-9ac1bc85d98d -2023-07-08 08:22:21.350565 2023-07-08 08:22:21.35058 aidref 233251073 R rec 80439b98-a18c-494d-84a2-0cec3b246540 -2023-07-08 08:22:21.457018 2023-07-08 08:22:21.457029 aidref 233326103 R rec 1fcccb3c-92d0-426a-a93e-f67720cca51e -2023-07-08 08:22:21.550896 2023-07-08 08:22:21.550909 aidref 233342575 R rec f595a22b-3966-4896-96d1-c2313b5b4bf8 -2023-07-08 08:22:21.65026 2023-07-08 08:22:21.650273 aidref 233346562 R rec 09443133-7561-47f8-87bc-6923a6523037 -2023-07-08 08:22:21.760674 2023-07-08 08:22:21.760692 aidref 23352391X R rec 24d9ee41-38f2-4206-a088-185fd7c491a6 -2023-07-08 08:22:21.86313 2023-07-08 08:22:21.863141 aidref 233537155 R rec f41f94b6-ba93-46ee-80b8-082c594ef12d -2023-07-08 08:22:21.956378 2023-07-08 08:22:21.956394 aidref 233564373 R rec 21e53054-f3ab-4bc2-b93c-26a5e87c9a6a -2023-07-08 08:22:22.080708 2023-07-08 08:22:22.080721 aidref 233619771 R rec 91bc5d28-a806-4d72-8ad4-15505fe5381e -2023-07-08 08:22:22.199966 2023-07-08 08:22:22.199978 aidref 233969829 R rec a3e70389-8b0c-4ae5-b26a-dd51fd05e07a -2023-07-08 08:22:22.301295 2023-07-08 08:22:22.301313 aidref 234087080 R rec d4acc5b0-f69e-4673-85f1-12491024ae28 -2023-07-08 08:22:22.411022 2023-07-08 08:22:22.411038 aidref 234195576 R rec cec3ded7-6fa3-4f79-aafc-4a42b539b6cd -2023-07-08 08:22:22.554161 2023-07-08 08:22:22.554178 aidref 234199180 R rec 592d3f4b-f9e3-435c-a0db-d14383c3944c -2023-07-08 08:22:22.652811 2023-07-08 08:22:22.652821 aidref 234246820 R rec 9774c4c6-e139-41a6-ba30-dc2a0800aa6c -2023-07-08 08:22:22.744485 2023-07-08 08:22:22.744498 aidref 234251433 R rec 515891eb-fd39-40ac-98c7-128a36598fa7 -2023-07-08 08:22:22.85436 2023-07-08 08:22:22.854377 aidref 234251867 R rec 6388cff0-febf-4eff-a441-7bea6d8251a1 -2023-07-08 08:22:22.969527 2023-07-08 08:22:22.969539 aidref 234252006 R rec abe1c728-c14b-4a11-9296-45f58c0d5a7f -2023-07-08 08:22:23.06708 2023-07-08 08:22:23.067095 aidref 234273771 R rec 12303680-d3d7-4b28-97c3-2e7bdc441e68 -2023-07-08 08:22:23.170852 2023-07-08 08:22:23.170865 aidref 234277602 R rec 8c35e182-2f74-4c6f-8026-5c27dd5510ab -2023-07-08 08:22:23.296508 2023-07-08 08:22:23.296518 aidref 234278390 R rec 8c96d718-2284-4082-9a6a-69a93e870009 -2023-07-08 08:22:23.401132 2023-07-08 08:22:23.401143 aidref 234317566 R rec b70f3ce6-35df-41b8-a8b5-1152f9f27fcd -2023-07-08 08:22:23.50574 2023-07-08 08:22:23.505756 aidref 234340487 R rec 8dc5e632-a2a1-4dee-9a28-d2b9167485e9 -2023-07-08 08:22:23.615312 2023-07-08 08:22:23.615322 aidref 234363053 R rec d0437411-8f8f-46cc-b867-2c09256a0d9e -2023-07-08 08:22:23.704849 2023-07-08 08:22:23.704862 aidref 234417765 R rec 8931767b-c953-42ba-860a-94999a39f693 -2023-07-08 08:22:23.804993 2023-07-08 08:22:23.805006 aidref 234443693 R rec 24300526-ad52-4a91-81b2-2a61393cf6e2 -2023-07-08 08:22:23.898719 2023-07-08 08:22:23.898734 aidref 234449381 R rec 94b85e62-760d-4305-9914-9a472bac508d -2023-07-08 08:22:24.001586 2023-07-08 08:22:24.001601 aidref 234468718 R rec 3ad7cf52-c6f6-4d5e-ae2a-0a5dd183db1e -2023-07-08 08:22:24.108714 2023-07-08 08:22:24.108725 aidref 234477644 R rec 48a56a5c-bf7e-41f7-94a2-b7018a7b9c5f -2023-07-08 08:22:24.222071 2023-07-08 08:22:24.222084 aidref 23449140X R rec bb297cf0-fa8b-43a4-8b03-1037242dacd3 -2023-07-08 08:22:24.319482 2023-07-08 08:22:24.319497 aidref 234536535 R rec fe2a4e8c-9c98-4e1b-970c-fa1971be27e2 -2023-07-08 08:22:24.418174 2023-07-08 08:22:24.418184 aidref 234569182 R rec 5fb5bec7-7ca4-4299-93d1-ea6c23cc4fa8 -2023-07-08 08:22:24.519884 2023-07-08 08:22:24.519899 aidref 234587989 R rec c1e391ac-b75f-4584-b922-7de24f3f497b -2023-07-08 08:22:24.63685 2023-07-08 08:22:24.636862 aidref 23459313X R rec 9c9e7e71-12fa-4394-af79-dfd9dcb09d35 -2023-07-08 08:22:24.730232 2023-07-08 08:22:24.730245 aidref 234622512 R rec 2d538be4-24a5-4113-bb08-c8e7e81f329c -2023-07-08 08:22:24.824705 2023-07-08 08:22:24.824717 aidref 234673672 R rec 71d4d4a8-c640-453c-ac8e-7bd4acf34fc6 -2023-07-08 08:22:24.923745 2023-07-08 08:22:24.923756 aidref 234715723 R rec 17cef28c-8970-47a6-a74b-1e4f1c08f32e -2023-07-08 08:22:25.029585 2023-07-08 08:22:25.029592 aidref 234745479 R rec 969abc3d-0553-4fb1-82fc-503a3ad7f77e -2023-07-08 08:22:25.116097 2023-07-08 08:22:25.116109 aidref 23475382X R rec b4865cac-1572-4094-9c2a-54e888f89c58 -2023-07-08 08:22:25.206557 2023-07-08 08:22:25.206572 aidref 234776439 R rec 3a9a8cb9-835b-4c19-ad9e-ff3da7a5697a -2023-07-08 08:22:25.301201 2023-07-08 08:22:25.301212 aidref 234777079 R rec 34d6216b-dbb6-413c-bff2-10e1fb292863 -2023-07-08 08:22:25.384012 2023-07-08 08:22:25.384027 aidref 234811080 R rec b5b7a2bf-d7f8-49ca-9ec7-621044b0a71f -2023-07-08 08:22:25.496566 2023-07-08 08:22:25.496572 aidref 234843160 R rec e33d3dc8-0b9a-48e2-aa06-b16d291cbf7f -2023-07-08 08:22:25.583938 2023-07-08 08:22:25.583954 aidref 234849223 R rec 21d35075-9a61-4302-9832-972cecf7fbfd -2023-07-08 08:22:25.696746 2023-07-08 08:22:25.696758 aidref 235030929 R rec 94e37e44-c19f-4afe-a548-82c00f60abce -2023-07-08 08:22:25.810114 2023-07-08 08:22:25.810127 aidref 235031771 R rec 0dc8c5c4-cb62-4e1f-90b4-875ea4264537 -2023-07-08 08:22:25.91894 2023-07-08 08:22:25.918955 aidref 235057657 R rec 056ddecf-b6f5-4eb0-aef3-746aa6586924 -2023-07-08 08:22:26.031225 2023-07-08 08:22:26.031238 aidref 235095273 R rec 410f1ada-d41b-4b5a-ac39-0a3b5f200c96 -2023-07-08 08:22:26.137496 2023-07-08 08:22:26.137511 aidref 235097306 R rec 74ea964b-b5d7-40d3-8d33-46f7b576dd00 -2023-07-08 08:22:26.23527 2023-07-08 08:22:26.235286 aidref 23515606X R rec d4b78786-05bc-461a-8747-c722e1c686f9 -2023-07-08 08:22:26.349612 2023-07-08 08:22:26.349627 aidref 235183881 R rec b6808a8f-d06e-44fe-8434-d6939c85aa65 -2023-07-08 08:22:26.44835 2023-07-08 08:22:26.448356 aidref 235239593 R rec 5a9e3542-0dd7-4f6a-83b3-8b4f000a30d7 -2023-07-08 08:22:26.543378 2023-07-08 08:22:26.543387 aidref 235262927 R rec 3fdf4cc2-ced7-4520-a639-4cadffe792f1 -2023-07-08 08:22:26.631635 2023-07-08 08:22:26.631646 aidref 23527125X R rec e1455ef8-8a83-4bb0-95f8-74cb50f1bd54 -2023-07-08 08:22:26.734554 2023-07-08 08:22:26.734565 aidref 235301108 R rec e04c5fd2-b711-4e35-87d2-357fcfa1a15e -2023-07-08 08:22:26.868322 2023-07-08 08:22:26.868337 aidref 235301787 R rec b537b07b-ef68-461e-84c0-b948c34d261f -2023-07-08 08:22:26.972813 2023-07-08 08:22:26.972831 aidref 235328790 R rec b89293de-4e9d-4f31-afe5-f454b9428765 -2023-07-08 08:22:27.076647 2023-07-08 08:22:27.076661 aidref 235561584 R rec 5bdd9445-2c28-4d54-989a-31e4efabc692 -2023-07-08 08:22:27.176304 2023-07-08 08:22:27.176315 aidref 235598720 R rec 9bba8f34-a112-418f-a104-94397a3cab3b -2023-07-08 08:22:27.27093 2023-07-08 08:22:27.270946 aidref 235711667 R rec ee4d5b22-4e25-486a-bd47-70fa202a85ea -2023-07-08 08:22:27.36941 2023-07-08 08:22:27.369419 aidref 235718211 R rec f0627adf-a882-4e9c-8174-ced9f5e1e344 -2023-07-08 08:22:27.456047 2023-07-08 08:22:27.456058 aidref 235835943 R rec 86d0ed57-b8d7-4393-a7ba-ff2793a92222 -2023-07-08 08:22:27.552643 2023-07-08 08:22:27.552658 aidref 235860131 R rec 0e717660-72ce-4322-abad-d8960d4a0d6c -2023-07-08 08:22:27.659433 2023-07-08 08:22:27.659447 aidref 235909025 R rec e9b1c6ff-b99a-4a92-8a25-cce2b7e278e9 -2023-07-08 08:22:27.784214 2023-07-08 08:22:27.784227 aidref 236048198 R rec 46ec0236-94c7-459b-82ac-11ff0df6e444 -2023-07-08 08:22:27.893016 2023-07-08 08:22:27.893031 aidref 236052616 R rec 0468e221-1977-4a53-8fd8-2fb33ac63550 -2023-07-08 08:22:27.986779 2023-07-08 08:22:27.986791 aidref 236100599 R rec 273d48dc-2d2a-4e6d-9b77-029f05708b02 -2023-07-08 08:22:28.085019 2023-07-08 08:22:28.08503 aidref 236101706 R rec 3d3d2264-043c-464b-a7d8-8ad0311c8696 -2023-07-08 08:22:28.188123 2023-07-08 08:22:28.188138 aidref 236118668 R rec cb63e980-7abe-454f-8d42-93bd4d6c9838 -2023-07-08 08:22:28.287696 2023-07-08 08:22:28.287707 aidref 236167510 R rec 92459c2e-6fdf-4000-b813-6fa28d4f4598 -2023-07-08 08:22:28.374841 2023-07-08 08:22:28.374851 aidref 236210424 R rec 25d5dd2d-6437-4ba7-8df4-37e2545ab150 -2023-07-08 08:22:28.467133 2023-07-08 08:22:28.467143 aidref 236421603 R rec 2931a7be-ce59-45ef-93a3-4051437ca3bb -2023-07-08 08:22:28.579979 2023-07-08 08:22:28.579991 aidref 236517627 R rec 438859c5-a7e3-4043-990d-c8ae2a65b281 -2023-07-08 08:22:28.708257 2023-07-08 08:22:28.708277 aidref 236553917 R rec df59e03d-96d5-4acd-8fea-1a45ef9f8e79 -2023-07-08 08:22:28.806983 2023-07-08 08:22:28.806998 aidref 236613529 R rec 294c497d-30f1-4c41-a5f2-904cd4addebe -2023-07-08 08:22:28.926371 2023-07-08 08:22:28.926377 aidref 236615165 R rec 4baab978-b03e-455c-b81d-499360fbf386 -2023-07-08 08:22:29.084939 2023-07-08 08:22:29.084949 aidref 236625284 R rec 3fd158c6-a28f-4297-b534-da7c66d247af -2023-07-08 08:22:29.207166 2023-07-08 08:22:29.207202 aidref 236722344 R rec fd16fb9b-cfd2-4467-8aeb-a69346335042 -2023-07-08 08:22:29.317125 2023-07-08 08:22:29.317141 aidref 236724371 R rec 70bee8e4-4a55-4b48-9055-4db000fd6a61 -2023-07-08 08:22:29.435238 2023-07-08 08:22:29.435253 aidref 236751964 R rec a55ecd3a-6c3e-4561-aa61-6ab2764bf596 -2023-07-08 08:22:29.55455 2023-07-08 08:22:29.554566 aidref 236752677 R rec dc185848-1276-43e0-8d3d-670080cb955f -2023-07-08 08:22:29.660911 2023-07-08 08:22:29.660926 aidref 236755889 R rec dc3f1c64-b4aa-46a3-a3aa-75c9401c6609 -2023-07-08 08:22:29.77919 2023-07-08 08:22:29.779204 aidref 236758349 R rec 4534bcd6-69d8-43d9-a8a3-25223a6adbf9 -2023-07-08 08:22:29.878414 2023-07-08 08:22:29.878426 aidref 236760378 R rec ea5ba1c9-45bb-4c4c-b602-ed4285fcf80e -2023-07-08 08:22:29.983525 2023-07-08 08:22:29.983537 aidref 236792539 R rec c3758e99-61dc-40db-b4df-53f413b4d332 -2023-07-08 08:22:30.07848 2023-07-08 08:22:30.07849 aidref 237190109 R rec ad3199e1-4069-4f2c-924f-73d3a516b45d -2023-07-08 08:22:30.169959 2023-07-08 08:22:30.169971 aidref 237257521 R rec b3355a60-8382-4da1-8e5c-43f70f04b1f4 -2023-07-08 08:22:30.271253 2023-07-08 08:22:30.271265 aidref 237613883 R rec 2dca849b-2a12-4e39-aa11-e6e0aef17860 -2023-07-08 08:22:30.365875 2023-07-08 08:22:30.36589 aidref 237634260 R rec 3c4825b6-56ae-441b-ab7c-87aaa0221567 -2023-07-08 08:22:30.46914 2023-07-08 08:22:30.469155 aidref 237678373 R rec d3e0d551-3257-4452-9fb3-ebf1805341f1 -2023-07-08 08:22:30.574413 2023-07-08 08:22:30.574419 aidref 23771745X R rec 98815c94-5096-43fa-b0f2-beea2c705200 -2023-07-08 08:22:30.675243 2023-07-08 08:22:30.675258 aidref 237781565 R rec e3290375-10c0-443b-90d3-f01823fd9415 -2023-07-08 08:22:30.838184 2023-07-08 08:22:30.838189 aidref 237801221 R rec 4df12b4e-d508-45f3-b9c4-32c152a32916 -2023-07-08 08:22:30.951692 2023-07-08 08:22:30.951703 aidref 237825457 R rec e230b3db-2f14-4e99-b60e-53a4a849a8f6 -2023-07-08 08:22:31.077389 2023-07-08 08:22:31.0774 aidref 237851539 R rec 336494a6-42b5-4b37-9ea3-41ff558e182e -2023-07-08 08:22:31.165487 2023-07-08 08:22:31.165501 aidref 23789615X R rec 2eef85ed-cf2b-4e23-bade-069f3e806db9 -2023-07-08 08:22:31.256639 2023-07-08 08:22:31.256654 aidref 238282694 R rec a67c7e13-2ed5-4e96-9647-659dacd82d3d -2023-07-08 08:22:31.371214 2023-07-08 08:22:31.371229 aidref 238303845 R rec 59dfc931-4eea-4d4a-899a-a3c0c847cba0 -2023-07-08 08:22:31.481789 2023-07-08 08:22:31.481799 aidref 23830566X R rec 54bc990c-76e8-4f7a-964f-c7e114d8b8f9 -2023-07-08 08:22:31.607313 2023-07-08 08:22:31.607329 aidref 238472345 R rec 79d5026d-dd01-4451-afaf-97fe7009940c -2023-07-08 08:22:31.707023 2023-07-08 08:22:31.707033 aidref 238526852 R rec 639d44c5-320f-42a6-9fae-500c6fab02c5 -2023-07-08 08:22:31.799972 2023-07-08 08:22:31.799983 aidref 238572366 R rec 2f9f5fd1-1dbc-4006-b9c6-d9773a132bb0 -2023-07-08 08:22:31.902818 2023-07-08 08:22:31.902832 aidref 238704750 R rec 9821d964-0b66-4039-8987-93b42280f788 -2023-07-08 08:22:31.993727 2023-07-08 08:22:31.993739 aidref 238709906 R rec 4d2c63f9-8659-4016-a8ce-ee559a952421 -2023-07-08 08:22:32.098271 2023-07-08 08:22:32.098286 aidref 238712435 R rec fd78a6e0-0bb6-4aa9-a101-677e876bf136 -2023-07-08 08:22:32.213859 2023-07-08 08:22:32.213874 aidref 238721892 R rec e0a44da4-8282-4819-ac12-538146c055b2 -2023-07-08 08:22:32.321319 2023-07-08 08:22:32.321333 aidref 240085930 R rec b2426182-0625-4793-b1d7-c28ac9221a50 -2023-07-08 08:22:32.427236 2023-07-08 08:22:32.427248 aidref 240100786 R rec c278de54-e4c4-4f9f-8569-a8de574e57e3 -2023-07-08 08:22:32.522186 2023-07-08 08:22:32.5222 aidref 240195523 R rec cac6d4f8-f904-476a-a8cc-f718f0a5a44b -2023-07-08 08:22:32.620594 2023-07-08 08:22:32.620608 aidref 240228448 R rec 104d5e44-6e48-4276-aa5d-6384534126a9 -2023-07-08 08:22:32.728412 2023-07-08 08:22:32.728426 aidref 240238117 R rec f2ebb20c-0a2f-41ee-ba0e-c7c46373a191 -2023-07-08 08:22:32.829011 2023-07-08 08:22:32.829031 aidref 240280539 R rec 4132a4dc-78ee-4d65-bd5c-152e8331dc2a -2023-07-08 08:22:32.933717 2023-07-08 08:22:32.933727 aidref 240312724 R rec 8944b172-3595-4f75-954a-c459c38d9c23 -2023-07-08 08:22:33.031834 2023-07-08 08:22:33.031846 aidref 240401891 R rec c0c005b8-38f1-4d4a-af03-8f84e7ff3be2 -2023-07-08 08:22:33.125381 2023-07-08 08:22:33.125394 aidref 240413741 R rec a49828d1-fc49-481f-84df-130ef93e877c -2023-07-08 08:22:33.221193 2023-07-08 08:22:33.221207 aidref 240416082 R rec 1f5c766d-fc20-4162-b667-1b37064c2108 -2023-07-08 08:22:33.328321 2023-07-08 08:22:33.328331 aidref 240441516 R rec 225730f2-ded9-4cee-b492-e2c9acc5ce71 -2023-07-08 08:22:33.425306 2023-07-08 08:22:33.425317 aidref 240465067 R rec 71ea8f0b-4b4a-4e18-be48-bfb070a2847c -2023-07-08 08:22:33.528782 2023-07-08 08:22:33.528795 aidref 240522737 R rec 73e934eb-3183-4451-abbc-9017b56eb77e -2023-07-08 08:22:33.628836 2023-07-08 08:22:33.628851 aidref 240554868 R rec d10b3d84-0a2a-4df7-ae7c-ad6eb6ab79e8 -2023-07-08 08:22:33.728323 2023-07-08 08:22:33.728331 aidref 240646339 R rec ecb7e6be-6e90-43a7-9d5c-dec0fab914ac -2023-07-08 08:22:33.815844 2023-07-08 08:22:33.815854 aidref 240748069 R rec 6cc1bd93-b820-4124-b1e3-4e4bb4baad6b -2023-07-08 08:22:33.951084 2023-07-08 08:22:33.951095 aidref 240816773 R rec f9fca512-72b5-47d3-9757-f8f400a21db1 -2023-07-08 08:22:34.086725 2023-07-08 08:22:34.087322 aidref 240825187 R rec ff9a68c5-93f5-4cb0-b102-6a6c0b217f94 -2023-07-08 08:22:34.219427 2023-07-08 08:22:34.219441 aidref 240863062 R rec 80cc6958-4324-4e65-9397-ffaa9a716bfe -2023-07-08 08:22:34.330248 2023-07-08 08:22:34.330264 aidref 240922344 R rec f5786bc3-ab0a-4ca8-a15a-c427b8aaf0a1 -2023-07-08 08:22:34.443586 2023-07-08 08:22:34.443597 aidref 240936094 R rec f318768f-c0ab-4ca4-bde1-a0f3c8003dc2 -2023-07-08 08:22:34.585485 2023-07-08 08:22:34.585495 aidref 240965280 R rec 8fdf6657-29f7-42ea-a711-aa0a87a171eb -2023-07-08 08:22:34.711367 2023-07-08 08:22:34.71138 aidref 240984374 R rec 3f12ea5a-12df-419e-a17d-508e1a5fea56 -2023-07-08 08:22:34.818722 2023-07-08 08:22:34.818736 aidref 240987195 R rec e4df8d8f-4cc9-4eb5-842b-043abb842ee7 -2023-07-08 08:22:34.964857 2023-07-08 08:22:34.964867 aidref 241130921 R rec b8119f1c-6613-400d-a993-c7ec4673094a -2023-07-08 08:22:35.082245 2023-07-08 08:22:35.082257 aidref 241164168 R rec dcd2b3a9-518b-41dc-9637-d21e84f492ee -2023-07-08 08:22:35.213974 2023-07-08 08:22:35.213984 aidref 241297230 R rec 1994cb94-b595-4054-a53e-6655191c4f81 -2023-07-08 08:22:35.32744 2023-07-08 08:22:35.327451 aidref 241375908 R rec 51f8508e-752f-489d-8e9a-a0a740ab3898 -2023-07-08 08:22:35.458266 2023-07-08 08:22:35.45828 aidref 241428017 R rec 5b426bea-739e-4de9-9ca8-394a75ca77c5 -2023-07-08 08:22:35.562915 2023-07-08 08:22:35.562934 aidref 241442567 R rec 6b6ff44c-3025-44cb-b534-24bc0a3c0f9e -2023-07-08 08:22:35.698323 2023-07-08 08:22:35.698336 aidref 241463548 R rec 5210a15a-8482-429c-829a-2be5aa4261fd -2023-07-08 08:22:35.803056 2023-07-08 08:22:35.80307 aidref 241506662 R rec 5918d9e2-cf54-433e-8fb5-42dc28804a29 -2023-07-08 08:22:35.930485 2023-07-08 08:22:35.930497 aidref 241515033 R rec de8f2c07-48e4-467a-a325-50517946278b -2023-07-08 08:22:36.057775 2023-07-08 08:22:36.05779 aidref 241527104 R rec 1e7ee7e2-8a0c-4d9e-a528-e1266f91f846 -2023-07-08 08:22:36.182035 2023-07-08 08:22:36.182046 aidref 241542162 R rec 4ef63bde-97d3-45e7-9eca-2ae46cb8f3a9 -2023-07-08 08:22:36.302836 2023-07-08 08:22:36.30285 aidref 241568137 R rec f89b8fef-db68-4782-8a0e-f40d60044f39 -2023-07-08 08:22:36.417651 2023-07-08 08:22:36.417692 aidref 24157899X R rec 6655455b-fea4-4189-bc90-6eeef3ee7449 -2023-07-08 08:22:36.527397 2023-07-08 08:22:36.527408 aidref 241716853 R rec 385d2632-3c04-428d-927b-1cf1cba1aa94 -2023-07-08 08:22:36.645264 2023-07-08 08:22:36.645274 aidref 24172726X R rec 2f547e67-c586-4dda-94a8-20e7835dd288 -2023-07-08 08:22:36.752141 2023-07-08 08:22:36.752153 aidref 241765528 R rec 4907b03f-cb05-4f55-98a0-a89f16f20a50 -2023-07-08 08:22:36.864594 2023-07-08 08:22:36.864605 aidref 241771188 R rec 06f8e9d1-ff7d-4bfe-a19a-93c2b5c92b4f -2023-07-08 08:22:36.992153 2023-07-08 08:22:36.992167 aidref 24185055X R rec c72b5b50-c80e-4e1d-aa31-7a650dd5b838 -2023-07-08 08:22:37.116609 2023-07-08 08:22:37.116624 aidref 241923018 R rec 4f906f10-2f9b-4868-b03d-b02c91c4d2d8 -2023-07-08 08:22:37.229302 2023-07-08 08:22:37.229318 aidref 241957176 R rec 55be52d4-27ee-41a1-ad36-75a3f6792bda -2023-07-08 08:22:37.342342 2023-07-08 08:22:37.342359 aidref 242007481 R rec b6035927-ed4e-4f43-baf6-cdf8afa302cc -2023-07-08 08:22:37.459653 2023-07-08 08:22:37.459668 aidref 242143814 R rec 787ce18a-59e8-406a-bb36-3eb0c66a20d3 -2023-07-08 08:22:37.579687 2023-07-08 08:22:37.579705 aidref 242274455 R rec d9e132a7-ed42-4726-afb6-ff1f433de8b6 -2023-07-08 08:22:37.699172 2023-07-08 08:22:37.699184 aidref 242293557 R rec 36397e72-ba38-467b-9c43-ca87be0eb6aa -2023-07-08 08:22:37.812727 2023-07-08 08:22:37.812739 aidref 242323375 R rec 22edc808-63d8-4afa-b5f2-57b76b7d753f -2023-07-08 08:22:37.928151 2023-07-08 08:22:37.928157 aidref 242335608 R rec bcaa5d31-53a3-4101-a74f-c0488dfa347a -2023-07-08 08:22:38.018874 2023-07-08 08:22:38.018891 aidref 242414826 R rec b3f6dd32-64f1-48f5-978f-8149a13cd128 -2023-07-08 08:22:38.11747 2023-07-08 08:22:38.117486 aidref 242426832 R rec bc974d01-3efc-4969-9217-a269087718ad -2023-07-08 08:22:38.234181 2023-07-08 08:22:38.234196 aidref 242433995 R rec b1daae8a-74fe-4598-b2d5-704991abb3db -2023-07-08 08:22:38.346047 2023-07-08 08:22:38.346058 aidref 242448771 R rec 23f13582-6e34-4e0b-83cc-a9dccf9a6e3c -2023-07-08 08:22:38.461644 2023-07-08 08:22:38.46166 aidref 242451098 R rec caf45696-b4f0-48d9-961f-10aa5f3a20b2 -2023-07-08 08:22:38.56532 2023-07-08 08:22:38.565331 aidref 24245383X R rec 0e89b676-5521-473d-a35d-ecb62b91ede1 -2023-07-08 08:22:38.689428 2023-07-08 08:22:38.68944 aidref 242518664 R rec 1f991607-ab4c-485a-be1a-0527087f854f -2023-07-08 08:22:38.781998 2023-07-08 08:22:38.782012 aidref 242542948 R rec d99260d4-7c10-43fd-b6f9-0adb4586846b -2023-07-08 08:22:38.896612 2023-07-08 08:22:38.896627 aidref 242557139 R rec f3ff0932-cd4d-4603-b764-c810b79b21e5 -2023-07-08 08:22:39.019599 2023-07-08 08:22:39.019611 aidref 242723470 R rec 1eb6b4fa-4b9f-4452-b836-978632984ec5 -2023-07-08 08:22:39.114017 2023-07-08 08:22:39.114029 aidref 242740065 R rec 0b94254c-d436-4693-b5c4-da5ec7b784cd -2023-07-08 08:22:39.219899 2023-07-08 08:22:39.219913 aidref 242756220 R rec 8e03d8ab-f5eb-485b-b55f-aa121539a927 -2023-07-08 08:22:39.339399 2023-07-08 08:22:39.339411 aidref 242866441 R rec 43c6764d-85ba-4715-9766-3ec0afb1a7d4 -2023-07-08 08:22:39.445507 2023-07-08 08:22:39.445525 aidref 242927351 R rec ed71fca8-0d7e-47d7-837d-33caf621d7bc -2023-07-08 08:22:39.561057 2023-07-08 08:22:39.561072 aidref 243004028 R rec b2d316ab-2fdf-4b92-ba62-7f4a30cf5503 -2023-07-08 08:22:39.678276 2023-07-08 08:22:39.678286 aidref 243016271 R rec 32a041be-15e1-4de9-ba91-82e632655787 -2023-07-08 08:22:39.784055 2023-07-08 08:22:39.784069 aidref 243031599 R rec 776efc9c-6ac0-4183-82db-b162fea2f745 -2023-07-08 08:22:39.88341 2023-07-08 08:22:39.883425 aidref 243035411 R rec f2d72752-a8dc-41f1-bd5b-2de6f84a8c70 -2023-07-08 08:22:39.98358 2023-07-08 08:22:39.983594 aidref 243035632 R rec a3583301-8fc1-481c-a5b0-0943a0d6f6b5 -2023-07-08 08:22:40.077123 2023-07-08 08:22:40.077135 aidref 243036620 R rec 295a9b8a-c05d-4582-a2de-ebe085d91c51 -2023-07-08 08:22:40.171779 2023-07-08 08:22:40.171792 aidref 243043619 R rec befdc6a6-e050-4baf-b07c-209646ff08b9 -2023-07-08 08:22:40.281459 2023-07-08 08:22:40.281472 aidref 243137400 R rec 7300fd8e-10f2-4655-8f2a-bc01112cecc0 -2023-07-08 08:22:40.401435 2023-07-08 08:22:40.401451 aidref 243138016 R rec d4947e95-0e73-4f7b-8d85-8b94d3a87b6d -2023-07-08 08:22:40.51012 2023-07-08 08:22:40.510139 aidref 243154666 R rec 6ddb32ca-d64f-4030-bb5e-3496d7bfd217 -2023-07-08 08:22:40.617008 2023-07-08 08:22:40.617022 aidref 243208294 R rec c515af93-f65a-41a7-b78c-9c22bbfd7729 -2023-07-08 08:22:40.727029 2023-07-08 08:22:40.727042 aidref 243209983 R rec a4a0f5f0-5e73-4efd-a14f-a15658a7efb2 -2023-07-08 08:22:40.83761 2023-07-08 08:22:40.837623 aidref 243266413 R rec 7c36d3f4-d229-4208-ac6c-b79e42a79f6d -2023-07-08 08:22:40.916638 2023-07-08 08:22:40.916649 aidref 243279795 R rec 42e6777d-129b-4c21-b7a4-bf2eee12484c -2023-07-08 08:22:41.027455 2023-07-08 08:22:41.027466 aidref 243300131 R rec 6ec91e0f-280d-43b6-8367-c341441c8afa -2023-07-08 08:22:41.136182 2023-07-08 08:22:41.136192 aidref 243306032 R rec f5945596-38e0-4357-87c1-f879153274fe -2023-07-08 08:22:41.234038 2023-07-08 08:22:41.234054 aidref 243308442 R rec 7d803523-a913-49f6-841f-9d7e03de9f71 -2023-07-08 08:22:41.357669 2023-07-08 08:22:41.357684 aidref 243327463 R rec c94fd385-02a6-4501-afc1-f573e06f4ef8 -2023-07-08 08:22:41.461393 2023-07-08 08:22:41.461404 aidref 243330715 R rec 56de9ac4-7d5e-4aaf-9536-3f6183f19219 -2023-07-08 08:22:41.56411 2023-07-08 08:22:41.564121 aidref 243363796 R rec d98a1801-fa82-4d69-9378-8420e1337ab1 -2023-07-08 08:22:41.652709 2023-07-08 08:22:41.652718 aidref 243370261 R rec 15ae2c6a-2721-4f67-a07d-76353805b40e -2023-07-08 08:22:41.746643 2023-07-08 08:22:41.746658 aidref 243382731 R rec fd9bce7d-244c-47a7-8d87-d35fb99702bd -2023-07-08 08:22:41.848032 2023-07-08 08:22:41.848052 aidref 243407998 R rec d73864db-922f-4990-89c7-c6d077eec433 -2023-07-08 08:22:41.948116 2023-07-08 08:22:41.94813 aidref 243428421 R rec dabf8ca5-bcad-4e2b-9f85-aed4e9eb239a -2023-07-08 08:22:42.039806 2023-07-08 08:22:42.039821 aidref 243433913 R rec 1c5ed172-b724-46d6-9f07-cb3b13c0dbb5 -2023-07-08 08:22:42.14692 2023-07-08 08:22:42.146931 aidref 243488785 R rec 889e7b06-ddfd-40ba-bcc8-02d1d9470b4d -2023-07-08 08:22:42.282121 2023-07-08 08:22:42.282133 aidref 24348951X R rec 5ac7e2dd-2ea8-4ce6-a6fe-7da74db1dc09 -2023-07-08 08:22:42.388799 2023-07-08 08:22:42.38881 aidref 243512155 R rec 378d8568-7683-4a21-b9c2-27077aa20141 -2023-07-08 08:22:42.500215 2023-07-08 08:22:42.50023 aidref 243530080 R rec 1bbd8b18-1419-451d-b947-b5c3e46f72e8 -2023-07-08 08:22:42.617195 2023-07-08 08:22:42.61721 aidref 243540434 R rec c38273f1-bbab-4a04-82ed-b935425f8d69 -2023-07-08 08:22:42.729485 2023-07-08 08:22:42.729496 aidref 243554001 R rec 164f27c7-0547-4738-ad8c-a41ec23299c6 -2023-07-08 08:22:42.82601 2023-07-08 08:22:42.826022 aidref 24355933X R rec 23e647f3-2ac9-4a23-bc65-e102f1d94994 -2023-07-08 08:22:42.934184 2023-07-08 08:22:42.934205 aidref 243567634 R rec f8973c31-f157-4aa7-a3ae-57eeb971759f -2023-07-08 08:22:43.047627 2023-07-08 08:22:43.047637 aidref 243577583 R rec b0e40f34-debb-4cfc-8be7-9aab09206d38 -2023-07-08 08:22:43.159444 2023-07-08 08:22:43.159459 aidref 243578482 R rec c59e5862-5404-444c-a4c5-69bc9c5bf0bc -2023-07-08 08:22:43.268335 2023-07-08 08:22:43.268352 aidref 243583133 R rec f6e2ebc4-1fe1-4274-907c-a3327afb0d75 -2023-07-08 08:22:43.396743 2023-07-08 08:22:43.396759 aidref 243594895 R rec 129eeafb-96fd-4154-afa8-68819dab35f7 -2023-07-08 08:22:43.501912 2023-07-08 08:22:43.501927 aidref 243597827 R rec c4d56f4a-0989-4c2a-8301-6523cf58222a -2023-07-08 08:22:43.618145 2023-07-08 08:22:43.618154 aidref 243602049 R rec 69ac701a-400a-4cb0-8698-83cac3378a87 -2023-07-08 08:22:43.730712 2023-07-08 08:22:43.730723 aidref 24360405X R rec 22e41a7a-0c59-4319-94fa-802a8ffb4843 -2023-07-08 08:22:43.831239 2023-07-08 08:22:43.831251 aidref 243621418 R rec 3c6194e6-5a4b-46bb-8b67-0094ac2e08aa -2023-07-08 08:22:43.920097 2023-07-08 08:22:43.920102 aidref 243630832 R rec b93f7307-34ad-4756-a457-a846c5b78639 -2023-07-08 08:22:44.014621 2023-07-08 08:22:44.014636 aidref 243644124 R rec 41168d84-fd31-4511-9090-8d5fcfdc781b -2023-07-08 08:22:44.131301 2023-07-08 08:22:44.131312 aidref 243654510 R rec 5cdd6e61-5e24-4c68-8aac-ed230d8eb5e7 -2023-07-08 08:22:44.249288 2023-07-08 08:22:44.249303 aidref 243677596 R rec 8fcc41cc-c64d-4494-9bbf-28b5b3e1ecbf -2023-07-08 08:22:44.357652 2023-07-08 08:22:44.357664 aidref 243682603 R rec af4027ec-9d08-415d-b58b-2eeecc7148b9 -2023-07-08 08:22:44.482179 2023-07-08 08:22:44.482187 aidref 243689616 R rec 2ea46b6d-ef13-43e2-9ceb-3d49f9464b71 -2023-07-08 08:22:44.584856 2023-07-08 08:22:44.584869 aidref 243691041 R rec d2d0c6a4-3abf-49be-b226-71288af30720 -2023-07-08 08:22:44.693055 2023-07-08 08:22:44.693063 aidref 243694911 R rec 2623e0b6-b332-4826-9836-e37c6b35b803 -2023-07-08 08:22:44.777953 2023-07-08 08:22:44.777963 aidref 243698267 R rec 297e629f-627a-4736-8106-42e383f1ed91 -2023-07-08 08:22:44.88071 2023-07-08 08:22:44.880724 aidref 24370206X R rec cece59e0-d90d-436d-bb10-974367ad9fcb -2023-07-08 08:22:44.990224 2023-07-08 08:22:44.990236 aidref 243703597 R rec 668d413d-ea21-47d3-b9f5-167b6b86aee3 -2023-07-08 08:22:45.10243 2023-07-08 08:22:45.102441 aidref 243712979 R rec 8845fa73-740a-498e-9489-a36ab9d44e69 -2023-07-08 08:22:45.213473 2023-07-08 08:22:45.213489 aidref 243737823 R rec f78423ca-a8e1-41a8-a395-e544bda91982 -2023-07-08 08:22:45.319384 2023-07-08 08:22:45.319395 aidref 243741138 R rec 1a22801c-dd90-441f-a969-de2c477a077e -2023-07-08 08:22:45.45488 2023-07-08 08:22:45.454892 aidref 243749120 R rec 7cdff419-cf27-435a-81cd-745c54eee805 -2023-07-08 08:22:45.57215 2023-07-08 08:22:45.572163 aidref 243803133 R rec 73939c3e-b876-454b-ba6d-e55f06c2f64a -2023-07-08 08:22:45.676169 2023-07-08 08:22:45.676181 aidref 243814682 R rec 61321691-3d8b-4006-9c54-c8c6593259d6 -2023-07-08 08:22:45.78467 2023-07-08 08:22:45.78468 aidref 243820984 R rec 81a5e2ce-8bf0-437b-af04-fecab59b7f22 -2023-07-08 08:22:45.8958 2023-07-08 08:22:45.895815 aidref 243828446 R rec 9ab7835c-6a8e-4e33-b7e2-45531d46e31d -2023-07-08 08:22:46.011954 2023-07-08 08:22:46.011965 aidref 243832206 R rec d1168b62-d84f-452c-92f4-b361c8998616 -2023-07-08 08:22:46.139325 2023-07-08 08:22:46.139341 aidref 24384025X R rec 8a58e561-c600-4df9-86f5-8aca06dc5f23 -2023-07-08 08:22:46.264204 2023-07-08 08:22:46.264221 aidref 243868065 R rec 1c89da5d-b8cd-4461-ad52-a48446d351d9 -2023-07-08 08:22:46.377603 2023-07-08 08:22:46.377614 aidref 24388303X R rec 1264da63-1ba7-4eae-b56f-e9fab1b089a2 -2023-07-08 08:22:46.516704 2023-07-08 08:22:46.516709 aidref 243886179 R rec da76d768-48b3-4040-a5ad-3020b9c958cd -2023-07-08 08:22:46.626077 2023-07-08 08:22:46.626087 aidref 243894910 R rec f3d48dc9-73d1-4591-854d-6054d6587c12 -2023-07-08 08:22:46.744521 2023-07-08 08:22:46.744531 aidref 243895046 R rec 9068097a-291f-4642-87f0-7531a97499a9 -2023-07-08 08:22:46.844117 2023-07-08 08:22:46.84413 aidref 243937075 R rec 643a7f07-c980-409b-8f9b-c948a902e555 -2023-07-08 08:22:46.988109 2023-07-08 08:22:46.98812 aidref 244010218 R rec 894dc797-540a-4a9d-b7da-4c824c0f6488 -2023-07-08 08:22:47.102917 2023-07-08 08:22:47.102927 aidref 244049882 R rec b5244c2a-d1e9-4055-b3c6-edb1b1c73905 -2023-07-08 08:22:47.252766 2023-07-08 08:22:47.252775 aidref 244052468 R rec d8bf3a67-7381-4263-9631-976157d0fede -2023-07-08 08:22:47.39554 2023-07-08 08:22:47.39555 aidref 24406024X R rec 69dfd94d-5c17-41d8-a4d8-9b28ac8df1b0 -2023-07-08 08:22:47.529235 2023-07-08 08:22:47.529245 aidref 244061092 R rec 510e0514-0783-4232-b155-33b88ec18c5e -2023-07-08 08:22:47.648278 2023-07-08 08:22:47.648285 aidref 244072922 R rec f67d91e0-bcb6-41d4-9bfc-06dfc9d80985 -2023-07-08 08:22:47.732711 2023-07-08 08:22:47.732716 aidref 244077878 R rec a2b45575-e3ff-454a-9f76-3b3335a12046 -2023-07-08 08:22:47.817903 2023-07-08 08:22:47.817909 aidref 244092389 R rec 4bce9eaa-3718-4546-ae7f-fec291b1fcb5 -2023-07-08 08:22:47.892537 2023-07-08 08:22:47.892544 aidref 244098972 R rec 079f3b53-585d-4ecd-baaf-f60422d3267e -2023-07-08 08:22:47.969367 2023-07-08 08:22:47.969372 aidref 244117802 R rec de9b440b-dcb5-4350-9e0e-d68faff6a23f -2023-07-08 08:22:48.062042 2023-07-08 08:22:48.062052 aidref 244121095 R rec 9a317e70-2786-4f50-87a4-5f09c48f53de -2023-07-08 08:22:48.145241 2023-07-08 08:22:48.145251 aidref 244126283 R rec 44a2f394-96f6-4fbf-a5aa-c9972434054c -2023-07-08 08:22:48.213309 2023-07-08 08:22:48.213314 aidref 244135282 R rec e869150d-1f10-498d-9daa-7fe6fcb81bbe -2023-07-08 08:22:48.280181 2023-07-08 08:22:48.280188 aidref 244139563 R rec deb020a7-6b70-4d2f-a9eb-2567e9478b3a -2023-07-08 08:22:48.388587 2023-07-08 08:22:48.388592 aidref 244165610 R rec 4c80211c-246f-44e7-bfbe-62ce13ea5d7f -2023-07-08 08:22:48.474687 2023-07-08 08:22:48.474698 aidref 24416603X R rec a492b725-3fd3-4230-92c0-dc7dfd14a559 -2023-07-08 08:22:48.557078 2023-07-08 08:22:48.557084 aidref 244233403 R rec 44b72ced-8813-449a-a0de-64e90a2ac56d -2023-07-08 08:22:48.648264 2023-07-08 08:22:48.648275 aidref 244251568 R rec 79c86f15-1ad2-4afd-8cf2-92bd6d7b83b5 -2023-07-08 08:22:48.723372 2023-07-08 08:22:48.723378 aidref 244257469 R rec 7cd5f5ba-8aa1-4eaa-81a8-cdfef4dd3a74 -2023-07-08 08:22:48.794741 2023-07-08 08:22:48.794752 aidref 244273111 R rec 6fcd558b-d69a-4982-b706-d33cd87cfe2b -2023-07-08 08:22:48.884963 2023-07-08 08:22:48.884975 aidref 244318301 R rec 390c2c97-98a0-4eea-bf44-02eaad49cd26 -2023-07-08 08:22:48.98829 2023-07-08 08:22:48.988296 aidref 244324913 R rec cfcbd396-209c-4c0d-911b-d2da8e9e9aad -2023-07-08 08:22:49.078068 2023-07-08 08:22:49.078084 aidref 244341672 R rec c80f510e-f85b-40d5-9318-8ad7a4220687 -2023-07-08 08:22:49.156043 2023-07-08 08:22:49.156049 aidref 244341796 R rec 2f508523-59e1-416b-bc9b-97a8b4a1be5c -2023-07-08 08:22:49.241829 2023-07-08 08:22:49.24184 aidref 244350329 R rec 21cf8ff4-1df8-4acb-9a1b-698f6529f74e -2023-07-08 08:22:49.333834 2023-07-08 08:22:49.333848 aidref 244402515 R rec 1ab0a247-4794-451b-9ffa-a9554f50d2af -2023-07-08 08:22:49.421357 2023-07-08 08:22:49.421362 aidref 244420645 R rec 5ab9c7d3-ed1b-4dae-80a7-3a62c9028aa8 -2023-07-08 08:22:49.508648 2023-07-08 08:22:49.508659 aidref 244433577 R rec 193e3cb0-ceda-4156-9a2f-ba3adf122c14 -2023-07-08 08:22:49.605667 2023-07-08 08:22:49.605673 aidref 244450765 R rec 0f9134b6-853a-453e-ad02-372d94019fa8 -2023-07-08 08:22:49.669627 2023-07-08 08:22:49.669634 aidref 244788987 R rec e438ee95-4853-42a5-8394-76444588f43b -2023-07-08 08:22:49.741955 2023-07-08 08:22:49.741966 aidref 244799768 R rec 81fd43d4-7270-49b7-abf8-fbfcf6ec4d44 -2023-07-08 08:22:49.819089 2023-07-08 08:22:49.819099 aidref 244882908 R rec 40a24887-c589-4e11-80fc-d78f0c473860 -2023-07-08 08:22:49.909483 2023-07-08 08:22:49.909498 aidref 24488451X R rec 009073bc-b625-4040-85e5-73e647ee876a -2023-07-08 08:22:49.999328 2023-07-08 08:22:49.999339 aidref 244888558 R rec 4fd0eebc-a3a9-4bb3-b5b7-476309cb089d -2023-07-08 08:22:50.103102 2023-07-08 08:22:50.103112 aidref 244922624 R rec 76e85d8e-aef4-4547-9c62-6364161a95fe -2023-07-08 08:22:50.177418 2023-07-08 08:22:50.177429 aidref 244934894 R rec db974a61-5695-4754-a050-5b7fa4821d72 -2023-07-08 08:22:50.278642 2023-07-08 08:22:50.278648 aidref 245023542 R rec 0a24bb72-d770-4340-903c-5ae5730193c1 -2023-07-08 08:22:50.387999 2023-07-08 08:22:50.388004 aidref 245054200 R rec d070c257-cf57-42f1-98d6-fe34b5b2e2a2 -2023-07-08 08:22:50.487177 2023-07-08 08:22:50.487188 aidref 24507869X R rec fbfa68e8-6034-4b4e-bb4f-4eb5ec261eea -2023-07-08 08:22:50.578218 2023-07-08 08:22:50.578229 aidref 24515969X R rec 8f8049a0-f339-4833-840d-644f3e092508 -2023-07-08 08:22:50.664498 2023-07-08 08:22:50.664509 aidref 245200142 R rec e097efe1-4ce9-4e58-a1ee-0795a13cd577 -2023-07-08 08:22:50.765798 2023-07-08 08:22:50.765803 aidref 245235949 R rec c24b893b-a801-4a86-b600-7c03256a6d8d -2023-07-08 08:22:50.840647 2023-07-08 08:22:50.840655 aidref 245265805 R rec 2bbfbd40-71de-4ae8-afb7-578c5ae2b773 -2023-07-08 08:22:50.951054 2023-07-08 08:22:50.951067 aidref 245313486 R rec f4e633f0-0807-4f9f-802c-1b3d5cb482da -2023-07-08 08:22:51.033956 2023-07-08 08:22:51.03397 aidref 248175920 R rec d1ca131d-f9c6-47d8-b5cc-d22a9bf9c436 -2023-07-08 08:22:51.117366 2023-07-08 08:22:51.117377 aidref 248213032 R rec 81b37696-4a3a-474f-9242-107aed3411cc -2023-07-08 08:22:51.199184 2023-07-08 08:22:51.199195 aidref 248374249 R rec 88cb3373-e4bc-4c70-a5b7-63095bcdbd1c -2023-07-08 08:22:51.293247 2023-07-08 08:22:51.293256 aidref 248391038 R rec e780e2c3-51a8-4206-ac1e-484983f9e618 -2023-07-08 08:22:51.389133 2023-07-08 08:22:51.389138 aidref 248436074 R rec 2eba2463-8f7d-49c1-9c8e-4ba22fefa7a6 -2023-07-08 08:22:51.481487 2023-07-08 08:22:51.481498 aidref 248958445 R rec 2aa765f2-a386-414b-827b-09da26dcbc77 -2023-07-08 08:22:51.603247 2023-07-08 08:22:51.603257 aidref 248982621 R rec 27aaa16e-e072-4c87-b192-80bd45cdc8a9 -2023-07-08 08:22:51.679937 2023-07-08 08:22:51.679942 aidref 249008173 R rec 7c2bf468-3e3e-4d9b-b98d-12ffbc22ad54 -2023-07-08 08:22:51.783259 2023-07-08 08:22:51.783265 aidref 249129019 R rec 31d92c5a-7ff6-4ec0-be9a-af194420c883 -2023-07-08 08:22:51.877608 2023-07-08 08:22:51.877619 aidref 24913344X R rec cb7fbb5a-12f9-4770-83dd-c1b45e45d6c6 -2023-07-08 08:22:51.978247 2023-07-08 08:22:51.978252 aidref 249284472 R rec 50933576-edbc-435a-beab-6679409a6641 -2023-07-08 08:22:52.079041 2023-07-08 08:22:52.079047 aidref 249311461 R rec 56aa7022-a693-4a3b-9ee8-007301fdef2f -2023-07-08 08:22:52.155365 2023-07-08 08:22:52.155371 aidref 249406845 R rec 76f6204e-7eca-4ecb-a156-38863006e19b -2023-07-08 08:22:52.230615 2023-07-08 08:22:52.230621 aidref 249486504 R rec af2d50f7-b077-4496-b035-43a59528a319 -2023-07-08 08:22:52.320834 2023-07-08 08:22:52.320845 aidref 249730375 R rec e295dd7e-b353-4de8-b342-536a38571c3c -2023-07-08 08:22:52.416323 2023-07-08 08:22:52.416338 aidref 249743523 R rec c099ddf3-c137-4c60-b7a2-8b612102d431 -2023-07-08 08:22:52.511077 2023-07-08 08:22:52.511092 aidref 249775441 R rec 462d2de9-1c09-4af6-90ab-84c17fd4f193 -2023-07-08 08:22:52.603461 2023-07-08 08:22:52.603467 aidref 249825074 R rec 0f63f759-a5b2-4bc4-bb8a-2906595ea772 -2023-07-08 08:22:52.704892 2023-07-08 08:22:52.704897 aidref 249834472 R rec aaa1a377-fc91-403a-9838-e4b030448b3a -2023-07-08 08:22:52.774372 2023-07-08 08:22:52.774377 aidref 249952378 R rec 5a9faa14-cd35-4d31-8b11-bf493c99af6b -2023-07-08 08:22:52.861665 2023-07-08 08:22:52.861675 aidref 249981394 R rec caf5f878-3ef5-4ef3-80c4-66202cbb37d3 -2023-07-08 08:22:52.955191 2023-07-08 08:22:52.955197 aidref 250341611 R rec 52927b6c-36eb-400d-849d-4ff75f534603 -2023-07-08 08:22:53.03614 2023-07-08 08:22:53.03615 aidref 250364913 R rec 25725146-6345-4993-9ed7-b37655d35c51 -2023-07-08 08:22:53.137455 2023-07-08 08:22:53.137466 aidref 250368196 R rec ff3cf69f-6cdd-4309-a59a-09fbf5dc3be8 -2023-07-08 08:22:53.235168 2023-07-08 08:22:53.235182 aidref 250382598 R rec 0be48035-aa59-4d1c-b3b7-2e421808b9b7 -2023-07-08 08:22:53.326426 2023-07-08 08:22:53.326438 aidref 250383926 R rec f21a7c0a-f407-40c0-ba85-5262e863c5f5 -2023-07-08 08:22:53.413231 2023-07-08 08:22:53.413241 aidref 250384183 R rec 7a81361e-d111-4240-8ecc-8afd3658e8ca -2023-07-08 08:22:53.486011 2023-07-08 08:22:53.486017 aidref 250397072 R rec 7fc332fb-0d43-45b0-b8bb-10b287868c12 -2023-07-08 08:22:53.570303 2023-07-08 08:22:53.570308 aidref 250402823 R rec 4368b554-c5f9-4235-a8f1-74e12e9400a1 -2023-07-08 08:22:53.645319 2023-07-08 08:22:53.645328 aidref 250416468 R rec 7b62dc92-daa8-4fd3-8d39-0a84b7e33089 -2023-07-08 08:22:53.731124 2023-07-08 08:22:53.731129 aidref 250507617 R rec 84c3d278-a204-41a5-b726-ceb4ac5cf977 -2023-07-08 08:22:53.815573 2023-07-08 08:22:53.815626 aidref 250599325 R rec 70f92590-cc47-4fe0-816c-7b3b7ed46c21 -2023-07-08 08:22:53.886808 2023-07-08 08:22:53.886813 aidref 250603187 R rec 3c905af2-8f4d-49a9-b64f-99aedd473273 -2023-07-08 08:22:53.97831 2023-07-08 08:22:53.978322 aidref 250620499 R rec f449c005-af6c-48a1-a46e-4a2cf40e6e15 -2023-07-08 08:22:54.063096 2023-07-08 08:22:54.063107 aidref 250649691 R rec 52c5309c-354b-446c-b711-cafe2c86e772 -2023-07-08 08:22:54.16029 2023-07-08 08:22:54.160306 aidref 250664968 R rec bc1ff675-122b-4686-b89b-2b0c1738fa14 -2023-07-08 08:22:54.277032 2023-07-08 08:22:54.277044 aidref 250680505 R rec 1c62241c-9864-4f0f-9c97-9b9a7ce61cd4 -2023-07-08 08:22:54.359588 2023-07-08 08:22:54.3596 aidref 250907801 R rec d0454b41-6645-4021-9541-88938b52c6cd -2023-07-08 08:22:54.447479 2023-07-08 08:22:54.447485 aidref 250949903 R rec a97e8a02-6d5d-46e1-a8a9-afd10bf9a4e4 -2023-07-08 08:22:54.542119 2023-07-08 08:22:54.542135 aidref 251014878 R rec 9f3cc579-0076-44fd-80d7-8f027e313a44 -2023-07-08 08:22:54.627643 2023-07-08 08:22:54.627649 aidref 251123022 R rec ba909cc5-0a2a-484f-8173-1398f7c5791a -2023-07-08 08:22:54.701328 2023-07-08 08:22:54.701334 aidref 251131807 R rec 4cd3dd98-f0e1-4023-b097-b437ac90338a -2023-07-08 08:22:54.796811 2023-07-08 08:22:54.796825 aidref 251138607 R rec 6f3ab365-a651-45af-beeb-298de34e3efa -2023-07-08 08:22:54.872328 2023-07-08 08:22:54.87234 aidref 251195627 R rec 6464f042-46aa-45a7-a82d-c65a7650bec0 -2023-07-08 08:22:54.969919 2023-07-08 08:22:54.969936 aidref 251202283 R rec d309f17e-d511-4d8c-877d-8758449d8c52 -2023-07-08 08:22:55.057591 2023-07-08 08:22:55.057602 aidref 251278492 R rec 4d07905f-4b09-4919-b4a7-914dd6c63d0b -2023-07-08 08:22:55.129369 2023-07-08 08:22:55.129375 aidref 251314677 R rec 2f7a0e89-7b29-4a8a-8bb6-0f9011728bad -2023-07-08 08:22:55.205514 2023-07-08 08:22:55.205519 aidref 251360164 R rec e9079e31-df38-4b76-a0b7-f8b349d16c8c -2023-07-08 08:22:55.287602 2023-07-08 08:22:55.287607 aidref 251394581 R rec 574c9073-c8be-4e95-bfcd-065c3a8ec0d9 -2023-07-08 08:22:55.375024 2023-07-08 08:22:55.375036 aidref 251396312 R rec e6adfd3a-2040-4b9d-b7c4-5b6f4972d315 -2023-07-08 08:22:55.44763 2023-07-08 08:22:55.447641 aidref 251411699 R rec 3f0e3558-d916-479f-8a69-91d2fd0e59b6 -2023-07-08 08:22:55.535387 2023-07-08 08:22:55.535398 aidref 251429180 R rec 1e6edcfc-d8a4-45ba-b46f-501d212bae5d -2023-07-08 08:22:55.605741 2023-07-08 08:22:55.605747 aidref 251432122 R rec 4abfe909-3800-42a9-94a8-1bec63b45df5 -2023-07-08 08:22:55.673868 2023-07-08 08:22:55.673875 aidref 251443361 R rec 9060e2ca-0c2e-43ea-a4e7-088bb7d118c0 -2023-07-08 08:22:55.760635 2023-07-08 08:22:55.760645 aidref 251455394 R rec 5faaeebf-9307-42ba-8088-7cb0fc3744ca -2023-07-08 08:22:55.836292 2023-07-08 08:22:55.836297 aidref 251520528 R rec 380c054b-8615-4c7f-ae46-72aa21f84a57 -2023-07-08 08:22:55.925683 2023-07-08 08:22:55.925699 aidref 25154091X R rec 92a884d1-1054-4869-8672-ef2eacc595c7 -2023-07-08 08:22:56.023532 2023-07-08 08:22:56.023537 aidref 25156584X R rec 7dbb6ed3-ea09-4f21-bc6b-d07b8a12e40b -2023-07-08 08:22:56.11117 2023-07-08 08:22:56.111174 aidref 25158917X R rec 4e3a9d8a-f62d-4179-a93c-74c62ed694d5 -2023-07-08 08:22:56.175888 2023-07-08 08:22:56.175894 aidref 251615014 R rec f8fa3421-b107-48e9-a614-e612a6e61e1c -2023-07-08 08:22:56.255162 2023-07-08 08:22:56.255174 aidref 251625338 R rec 06926ad8-dbea-4a58-95b8-9046442cf275 -2023-07-08 08:22:56.346414 2023-07-08 08:22:56.346429 aidref 251629783 R rec 0b8bc674-2add-4f4d-bda4-604d7d8212a9 -2023-07-08 08:22:56.436349 2023-07-08 08:22:56.436354 aidref 251650375 R rec 968ba176-f45b-41b0-80c9-31f9189ba666 -2023-07-08 08:22:56.52184 2023-07-08 08:22:56.521849 aidref 251660346 R rec fc918d6a-f3c4-45bf-895d-88ef9a1a07de -2023-07-08 08:22:56.595568 2023-07-08 08:22:56.595579 aidref 251871533 R rec e3559913-ae6c-4f3c-b684-6529e4595f12 -2023-07-08 08:22:56.67944 2023-07-08 08:22:56.679449 aidref 252252799 R rec 5dd1edf8-ae59-453e-93f7-7e160b786a8e -2023-07-08 08:22:56.765053 2023-07-08 08:22:56.765076 aidref 25234717X R rec 2bfe4960-bfcd-49c4-9922-6665fce3192a -2023-07-08 08:22:56.854212 2023-07-08 08:22:56.854219 aidref 252382781 R rec ef954ad2-255e-4546-a77e-112c756c458e -2023-07-08 08:22:56.959857 2023-07-08 08:22:56.959871 aidref 252388208 R rec 1433d4ea-7185-4fb3-917d-24f95b2e70cb -2023-07-08 08:22:57.077081 2023-07-08 08:22:57.077086 aidref 252426398 R rec 8d3707da-c13c-4151-9b17-a4f38941cfb2 -2023-07-08 08:22:57.161888 2023-07-08 08:22:57.161899 aidref 252437888 R rec 277c6556-5f88-4b22-88b2-14648b230183 -2023-07-08 08:22:57.244134 2023-07-08 08:22:57.244145 aidref 252443748 R rec 92d29883-523e-4240-b12a-557b465650ff -2023-07-08 08:22:57.325391 2023-07-08 08:22:57.325405 aidref 252462599 R rec 763a65b2-59b5-471e-982a-55fa969531ed -2023-07-08 08:22:57.410453 2023-07-08 08:22:57.410458 aidref 25256541X R rec 85706f7d-1dc6-440f-b7f6-70d74141bf98 -2023-07-08 08:22:57.488882 2023-07-08 08:22:57.488887 aidref 25268088X R rec 11cc98e5-4878-4db8-a5fd-b819966422e8 -2023-07-08 08:22:57.567592 2023-07-08 08:22:57.567604 aidref 252755294 R rec 09d72383-d5cd-4acb-8c71-fb8a3ad4be54 -2023-07-08 08:22:57.662763 2023-07-08 08:22:57.662773 aidref 252764277 R rec 4de82472-3e54-459b-9f5f-afc80fbe1c4e -2023-07-08 08:22:57.750178 2023-07-08 08:22:57.75019 aidref 252855477 R rec 8f9b2f59-b4ab-412d-b405-f7df3c93fc4d -2023-07-08 08:22:57.824412 2023-07-08 08:22:57.824423 aidref 252916263 R rec d698ffd6-9511-4847-8623-41885b462c57 -2023-07-08 08:22:57.907371 2023-07-08 08:22:57.907377 aidref 25295114X R rec 5f3de714-937b-4776-a462-f7c89c26b650 -2023-07-08 08:22:57.984565 2023-07-08 08:22:57.984577 aidref 25304653X R rec 4b651254-ada6-4fea-bcf0-43a1d8560a93 -2023-07-08 08:22:58.067979 2023-07-08 08:22:58.06799 aidref 253143462 R rec fcf9364d-9246-4350-8c84-52550fa4e0d8 -2023-07-08 08:22:58.16823 2023-07-08 08:22:58.168246 aidref 253180627 R rec 637635e3-4840-4634-bce7-a34c39129b76 -2023-07-08 08:22:58.250362 2023-07-08 08:22:58.250374 aidref 253203155 R rec d8c4f0b6-518d-4c6c-8f28-0bd2b70bb54f -2023-07-08 08:22:58.348738 2023-07-08 08:22:58.348744 aidref 25322859X R rec b4f20f8f-411d-47ab-9b8e-ec68e9115af8 -2023-07-08 08:22:58.420654 2023-07-08 08:22:58.42066 aidref 25324403X R rec 2566698a-9d88-43f2-8372-63bb2d6275b3 -2023-07-08 08:22:58.52183 2023-07-08 08:22:58.521835 aidref 253263298 R rec 842e6681-1e37-40a1-b310-4745399dc7b5 -2023-07-08 08:22:58.603831 2023-07-08 08:22:58.603841 aidref 253507790 R rec 1fb2d860-d701-4cd0-bf0b-3c79bfead796 -2023-07-08 08:22:58.684652 2023-07-08 08:22:58.684657 aidref 253610958 R rec 5e569515-999c-425d-9d9f-edb862af889f -2023-07-08 08:22:58.764158 2023-07-08 08:22:58.76417 aidref 253613957 R rec 2bcb2b21-d68e-49a7-bb26-3c61640a9511 -2023-07-08 08:22:58.87537 2023-07-08 08:22:58.875382 aidref 253654041 R rec 18b48a42-e6ae-4fee-a9e8-b2f295d76c14 -2023-07-08 08:22:58.960253 2023-07-08 08:22:58.960265 aidref 253760844 R rec dfc13aaf-9a84-484a-babc-646f2a0c8950 -2023-07-08 08:22:59.046303 2023-07-08 08:22:59.046314 aidref 253765005 R rec c4d13eed-51d0-4fce-b162-d241fa6e9cc5 -2023-07-08 08:22:59.142032 2023-07-08 08:22:59.142037 aidref 253814103 R rec 5eb442a8-bfbe-402e-aa39-adc0b74eb0b3 -2023-07-08 08:22:59.225797 2023-07-08 08:22:59.225808 aidref 253879965 R rec 867764fd-65de-4afe-a191-55f72ec390ad -2023-07-08 08:22:59.300153 2023-07-08 08:22:59.300163 aidref 25394144X R rec 47243355-c112-48c0-80a4-7c7a8355c175 -2023-07-08 08:22:59.389074 2023-07-08 08:22:59.389087 aidref 253973031 R rec dc347573-a4ad-45d3-8633-530cca038ff5 -2023-07-08 08:22:59.482172 2023-07-08 08:22:59.482183 aidref 254069606 R rec a9142a91-585c-4fd7-9cfa-56390089c504 -2023-07-08 08:22:59.5779 2023-07-08 08:22:59.577913 aidref 254110754 R rec 84e948b1-68d9-4820-bb1d-03ad7096cf02 -2023-07-08 08:22:59.66145 2023-07-08 08:22:59.661461 aidref 254146279 R rec 697c7820-f4ca-4e9e-82a3-322df2b0dac1 -2023-07-08 08:22:59.745477 2023-07-08 08:22:59.745482 aidref 254215696 R rec fa39662e-01f9-48b1-9cd6-669e11412fba -2023-07-08 08:22:59.831861 2023-07-08 08:22:59.831872 aidref 254232787 R rec bc76ff3e-851a-4cf7-98d8-c5ad559c39e3 -2023-07-08 08:22:59.928843 2023-07-08 08:22:59.928848 aidref 254344445 R rec d33a8e11-bfc5-41b4-a743-68246000a82d -2023-07-08 08:23:00.016972 2023-07-08 08:23:00.016981 aidref 254374557 R rec 8c51ed2d-67d1-4a61-916b-c1cf982d7850 -2023-07-08 08:23:00.109307 2023-07-08 08:23:00.109318 aidref 254391508 R rec 11b85613-1b3b-41f5-8b14-ccdeea50db74 -2023-07-08 08:23:00.176564 2023-07-08 08:23:00.17657 aidref 254418422 R rec d40324b3-73bb-44b0-87a6-c9f1a82595f0 -2023-07-08 08:23:00.253516 2023-07-08 08:23:00.25352 aidref 254429521 R rec 923aaf90-aee5-4391-81c9-7bc4b7a78e41 -2023-07-08 08:23:00.33657 2023-07-08 08:23:00.336575 aidref 254455565 R rec 046107e4-6977-419b-b50d-0ad9a5702dc3 -2023-07-08 08:23:00.419301 2023-07-08 08:23:00.419305 aidref 254491758 R rec 4641fd7b-f3f4-4177-8274-46fe0b294f4e -2023-07-08 08:23:00.50145 2023-07-08 08:23:00.501461 aidref 254522564 R rec b111689f-c6e6-40c1-a5d3-d76bd5641060 -2023-07-08 08:23:00.584833 2023-07-08 08:23:00.584843 aidref 254587763 R rec abbce305-82df-441f-b055-e46579178e40 -2023-07-08 08:23:00.672125 2023-07-08 08:23:00.67213 aidref 254630618 R rec e7405957-179b-4e90-b83a-9ddb12a18146 -2023-07-08 08:23:00.77049 2023-07-08 08:23:00.770496 aidref 254678475 R rec 3edb3964-2db8-48de-8950-55d788db5fce -2023-07-08 08:23:00.905089 2023-07-08 08:23:00.905094 aidref 254738591 R rec 4070d383-8512-47c6-82f4-17bb1b11b8a7 -2023-07-08 08:23:00.999796 2023-07-08 08:23:00.999801 aidref 254743048 R rec 6945d913-f27f-4dad-b843-eb8c1f358fb5 -2023-07-08 08:23:01.093156 2023-07-08 08:23:01.093161 aidref 254747086 R rec 4de3cfdc-962f-43db-8673-17a5f65f1587 -2023-07-08 08:23:01.16095 2023-07-08 08:23:01.160956 aidref 254775578 R rec 7b34ac8a-7a9a-49fa-abc4-b687a7c2b71b -2023-07-08 08:23:01.232034 2023-07-08 08:23:01.23205 aidref 254778569 R rec f6ab6e8b-649d-465b-b656-213b2ab5afa1 -2023-07-08 08:23:01.329933 2023-07-08 08:23:01.329944 aidref 254816568 R rec d296eb15-8db1-4e92-b511-b0dbfd7544d3 -2023-07-08 08:23:01.439324 2023-07-08 08:23:01.439329 aidref 25483180X R rec 0d38bfdf-0802-48ee-8bb1-5c7dc8a016a9 -2023-07-08 08:23:01.528298 2023-07-08 08:23:01.528313 aidref 254929192 R rec 8e00222b-7ab8-4b6b-a0f2-b911599509f4 -2023-07-08 08:23:01.604455 2023-07-08 08:23:01.604466 aidref 254941540 R rec 98ae0b78-023f-4c2d-83d3-76b293e67898 -2023-07-08 08:23:01.683314 2023-07-08 08:23:01.683319 aidref 254976719 R rec cf470978-8c16-4611-b036-45700451fd74 -2023-07-08 08:23:01.795163 2023-07-08 08:23:01.795177 aidref 254994024 R rec 62d0a357-bcfa-4771-b933-53be9328cbed -2023-07-08 08:23:01.889935 2023-07-08 08:23:01.88994 aidref 255028679 R rec 0a073449-9283-46c6-bac3-5f8fd12225bc -2023-07-08 08:23:01.971132 2023-07-08 08:23:01.971137 aidref 25508255X R rec 263977d5-893a-424b-b353-51e62ac4542c -2023-07-08 08:23:02.055071 2023-07-08 08:23:02.055077 aidref 255083556 R rec ede122f0-5e26-418e-bd8d-fcef24150977 -2023-07-08 08:23:02.147794 2023-07-08 08:23:02.147799 aidref 255144490 R rec 7a3e22b3-eb9e-4ab6-b3bf-8adbd7377350 -2023-07-08 08:23:02.230653 2023-07-08 08:23:02.230664 aidref 255241518 R rec 30db6c2e-7ee3-4841-9540-3744c1109040 -2023-07-08 08:23:02.320982 2023-07-08 08:23:02.320991 aidref 255348517 R rec af6e79df-786b-4337-a90b-bfd6da57bdeb -2023-07-08 08:23:02.418047 2023-07-08 08:23:02.418058 aidref 255361343 R rec 6abbc7f9-084f-4076-8b31-225b4e6d5907 -2023-07-08 08:23:02.508726 2023-07-08 08:23:02.508737 aidref 255386419 R rec 335c3d3b-6065-49f4-b654-4910eeb75fe8 -2023-07-08 08:23:02.593964 2023-07-08 08:23:02.593975 aidref 255415184 R rec 9370c199-bda5-470e-a089-66faab225346 -2023-07-08 08:23:02.672834 2023-07-08 08:23:02.672839 aidref 255430760 R rec f9130daa-1056-4bc9-8fcd-62a16a2b1e26 -2023-07-08 08:23:02.757687 2023-07-08 08:23:02.757692 aidref 255435169 R rec 15930ef5-7a84-4cb9-9bbe-d635db101c9f -2023-07-08 08:23:02.842767 2023-07-08 08:23:02.842772 aidref 255444478 R rec 96adab99-cd1a-4531-ae4d-da4dd89b9007 -2023-07-08 08:23:02.91353 2023-07-08 08:23:02.913541 aidref 255445075 R rec d89b8fe3-57c9-4a23-a333-e99b110fba3a -2023-07-08 08:23:03.006785 2023-07-08 08:23:03.006791 aidref 255453876 R rec 670fd45c-ae7e-40a3-a6cd-9c49175202aa -2023-07-08 08:23:03.09311 2023-07-08 08:23:03.093122 aidref 255473532 R rec eab12fd2-c462-4665-a854-60aa29c3c1d2 -2023-07-08 08:23:03.189176 2023-07-08 08:23:03.189181 aidref 255495269 R rec 8068f669-fbd6-4af7-877d-3606c3afc367 -2023-07-08 08:23:03.294307 2023-07-08 08:23:03.294322 aidref 255554338 R rec 67856211-e4ce-4360-a094-74f0a93cab9f -2023-07-08 08:23:03.383185 2023-07-08 08:23:03.383198 aidref 255666594 R rec f731fb3c-5661-4d3d-9a07-280076a07573 -2023-07-08 08:23:03.47185 2023-07-08 08:23:03.47186 aidref 255733151 R rec 90404c44-944a-467d-9fe8-b4984692cc4f -2023-07-08 08:23:03.560877 2023-07-08 08:23:03.56089 aidref 255923058 R rec 392cffe3-3d93-4f4f-be6c-70d9bde6fa5b -2023-07-08 08:23:03.675655 2023-07-08 08:23:03.675669 aidref 255939248 R rec b7e26d36-82fa-4c84-a5a2-e3dc90116034 -2023-07-08 08:23:03.775301 2023-07-08 08:23:03.775306 aidref 255998880 R rec 39773cca-d911-4e70-a961-c0b262f8b372 -2023-07-08 08:23:03.849842 2023-07-08 08:23:03.849847 aidref 256075980 R rec 1d975c47-bedf-47e5-b849-63e749a1994e -2023-07-08 08:23:03.94375 2023-07-08 08:23:03.943761 aidref 256123829 R rec d1b0afbf-f2b6-4ccd-88d9-af21b734b1bf -2023-07-08 08:23:04.02613 2023-07-08 08:23:04.026151 aidref 25623650X R rec 35f7483f-f634-4254-b058-a11f5471835a -2023-07-08 08:23:04.118447 2023-07-08 08:23:04.118459 aidref 256322325 R rec 9e14cc44-71d9-4d0b-8044-3c3c9365325e -2023-07-08 08:23:04.204543 2023-07-08 08:23:04.204554 aidref 25640772X R rec 3ef6b911-6576-4336-9352-7ff56ba8633c -2023-07-08 08:23:04.294879 2023-07-08 08:23:04.294892 aidref 256435847 R rec acf3133e-2e75-440c-a7a4-bcb8147f60c5 -2023-07-08 08:23:04.382954 2023-07-08 08:23:04.382964 aidref 256458391 R rec 2748401f-94bd-426f-bfdc-1f8191a5f638 -2023-07-08 08:23:04.484976 2023-07-08 08:23:04.484987 aidref 25650945X R rec 74186ed7-c1c0-4d93-a39f-c4a34c577cca -2023-07-08 08:23:04.577115 2023-07-08 08:23:04.577126 aidref 256515417 R rec 908b1edc-a8b4-4c90-acf7-cebd6aac8975 -2023-07-08 08:23:04.661793 2023-07-08 08:23:04.661799 aidref 256606625 R rec dcc76435-7aac-47e6-ab10-e0e035f94fd0 -2023-07-08 08:23:04.737168 2023-07-08 08:23:04.737173 aidref 256607982 R rec df614dee-ac76-48b6-b12b-5407170c17d9 -2023-07-08 08:23:04.825083 2023-07-08 08:23:04.825091 aidref 256622302 R rec e87dbaca-792f-4e42-9578-5b2b794bbe1a -2023-07-08 08:23:04.909493 2023-07-08 08:23:04.909506 aidref 256653992 R rec 08382518-495b-499f-afef-d121b3bc39b9 -2023-07-08 08:23:05.008133 2023-07-08 08:23:05.008147 aidref 256728682 R rec c634f746-e14e-4924-946a-62b62b2bc3e4 -2023-07-08 08:23:05.097677 2023-07-08 08:23:05.097689 aidref 256767483 R rec 3ad9e759-f027-45a2-ad52-06f980b407bc -2023-07-08 08:23:05.176849 2023-07-08 08:23:05.17686 aidref 256769044 R rec d2361722-0000-4f49-a7c9-73a03c99d268 -2023-07-08 08:23:05.266951 2023-07-08 08:23:05.266966 aidref 256910200 R rec 7e6e4810-df94-4894-bbb3-b6bc5b6baf58 -2023-07-08 08:23:05.364167 2023-07-08 08:23:05.364173 aidref 256931038 R rec 12b0cbd8-382b-4637-9b35-10b6cf3f80eb -2023-07-08 08:23:05.442983 2023-07-08 08:23:05.442988 aidref 256938660 R rec 22867d57-e970-48bb-b17d-71ddd3ee9f52 -2023-07-08 08:23:05.512476 2023-07-08 08:23:05.512481 aidref 256975485 R rec b5add7de-481b-43f6-86c1-04f87e754152 -2023-07-08 08:23:05.592906 2023-07-08 08:23:05.592911 aidref 256977178 R rec f57be9be-7ed7-44bf-a642-e0f86f43f041 -2023-07-08 08:23:05.668017 2023-07-08 08:23:05.668023 aidref 257161775 R rec efc910fe-7aff-424b-bfc9-b6838e21733c -2023-07-08 08:23:05.738921 2023-07-08 08:23:05.738926 aidref 257283994 R rec 1cdc3d57-7f3d-48e6-8208-3d8023c66a13 -2023-07-08 08:23:05.816914 2023-07-08 08:23:05.816919 aidref 257341730 R rec e07c4fda-92f2-4f37-a96a-087511ed0b00 -2023-07-08 08:23:05.898448 2023-07-08 08:23:05.898454 aidref 257342818 R rec 7b5d2836-5e7c-406a-94e6-bca5c61b1aeb -2023-07-08 08:23:05.97623 2023-07-08 08:23:05.976235 aidref 257348328 R rec 62c0ae4f-8538-47af-91dc-d49796166ae4 -2023-07-08 08:23:06.048891 2023-07-08 08:23:06.048896 aidref 257382968 R rec 340d94fe-b7fd-4472-bbf7-bb50d3057fe8 -2023-07-08 08:23:06.133203 2023-07-08 08:23:06.133214 aidref 257433422 R rec b56cd3a2-5f9c-491f-836d-a444c9be5e0e -2023-07-08 08:23:06.209031 2023-07-08 08:23:06.209037 aidref 257473459 R rec 3bcb8a46-a318-4646-ad34-5f7fa0d91dca -2023-07-08 08:23:06.277064 2023-07-08 08:23:06.277069 aidref 257484167 R rec d401d02d-a220-4a7c-b9eb-4e4e573cbb03 -2023-07-08 08:23:06.359606 2023-07-08 08:23:06.359611 aidref 257484434 R rec a2b277af-d009-41ec-b354-95bccf0bf087 -2023-07-08 08:23:06.430477 2023-07-08 08:23:06.430483 aidref 257494138 R rec d42c78cd-4b7f-4a16-a0f5-7ab55ae0648d -2023-07-08 08:23:06.521304 2023-07-08 08:23:06.521309 aidref 25752214X R rec ff37d92b-27d7-40a7-9926-bd5f7ff5f134 -2023-07-08 08:23:06.608117 2023-07-08 08:23:06.608128 aidref 257572481 R rec f6de07cd-c42b-43b0-b91c-99edfebe77e7 -2023-07-08 08:23:06.693176 2023-07-08 08:23:06.693181 aidref 257572732 R rec a11b75ec-5b46-4ed5-b7c8-78572effa177 -2023-07-08 08:23:06.784483 2023-07-08 08:23:06.784495 aidref 257647007 R rec 449a4a11-15b0-4fa6-8909-957ba8167030 -2023-07-08 08:23:06.872634 2023-07-08 08:23:06.872641 aidref 257647805 R rec f49a8e0e-394e-4dbd-a087-d77e98fedc36 -2023-07-08 08:23:06.97077 2023-07-08 08:23:06.970776 aidref 25773855X R rec 05808717-39d8-4ed2-bfe1-62cf71d8812c -2023-07-08 08:23:07.060758 2023-07-08 08:23:07.060769 aidref 257862544 R rec 8a4ae9d7-5445-4f99-9805-ec662e917b31 -2023-07-08 08:23:07.147233 2023-07-08 08:23:07.147239 aidref 257890505 R rec 28d4bbf2-ab89-4264-aad3-8cf4c037f610 -2023-07-08 08:23:07.235265 2023-07-08 08:23:07.235278 aidref 257908870 R rec 2b0438f3-e993-4594-ac1c-bfddb5c8ea3f -2023-07-08 08:23:07.345363 2023-07-08 08:23:07.345373 aidref 257937730 R rec 9f7277ca-5f83-414e-8122-632259574927 -2023-07-08 08:23:07.43414 2023-07-08 08:23:07.434153 aidref 257974350 R rec 4aaf1b04-9281-49f7-8336-c2e819cb43a6 -2023-07-08 08:23:07.525049 2023-07-08 08:23:07.525055 aidref 25808524X R rec 4d138cdf-c4da-47da-af42-8e24d967a612 -2023-07-08 08:23:07.63115 2023-07-08 08:23:07.631162 aidref 258134178 R rec 3f7e617c-db74-45d3-9fa2-1d14d3d4aecb -2023-07-08 08:23:07.710805 2023-07-08 08:23:07.71081 aidref 258183659 R rec a90fbe61-7d1d-4554-a18c-351e2da8f3b9 -2023-07-08 08:23:07.810446 2023-07-08 08:23:07.810457 aidref 258220724 R rec ed945c6d-0f39-4b59-bff7-e3aa7fc3aa41 -2023-07-08 08:23:07.910372 2023-07-08 08:23:07.910384 aidref 258241985 R rec c2ca9b9a-afbb-4b69-a37c-f6a6af3b689d -2023-07-08 08:23:08.024586 2023-07-08 08:23:08.024594 aidref 258266457 R rec 17188ac7-7a4c-47fa-9488-5acbd022da46 -2023-07-08 08:23:08.140247 2023-07-08 08:23:08.140253 aidref 258291524 R rec 7293e644-e26a-4390-8604-f29cd9dc6d4c -2023-07-08 08:23:08.216241 2023-07-08 08:23:08.216252 aidref 258322020 R rec 225bb3a7-5340-4705-bba7-156df5baebf0 -2023-07-08 08:23:08.343229 2023-07-08 08:23:08.343244 aidref 258325089 R rec f05bec78-a724-4dcf-a78a-fc0cf5852a91 -2023-07-08 08:23:08.481638 2023-07-08 08:23:08.481653 aidref 258363355 R rec 32ab9991-091d-4526-b7d4-29a02a28b6df -2023-07-08 08:23:08.599707 2023-07-08 08:23:08.599711 aidref 258385138 R rec 0e5e8411-85ca-4933-91dd-a91eba33e927 -2023-07-08 08:23:08.70421 2023-07-08 08:23:08.70422 aidref 258433914 R rec 103ae437-3296-4d57-8d23-e96d9f4c4045 -2023-07-08 08:23:08.813954 2023-07-08 08:23:08.81397 aidref 258437855 R rec 5f46a16d-1fbe-4adb-b5a1-eeebcded422f -2023-07-08 08:23:08.934911 2023-07-08 08:23:08.934927 aidref 25844939X R rec 89164272-39a4-4492-bfb2-126b11a29a03 -2023-07-08 08:23:09.044953 2023-07-08 08:23:09.044965 aidref 258454458 R rec a4f20e1b-ef2b-4479-8f77-966ef3c64dee -2023-07-08 08:23:09.156565 2023-07-08 08:23:09.156579 aidref 258520191 R rec 9f188965-637b-436b-973a-af7d83c4ee81 -2023-07-08 08:23:09.263563 2023-07-08 08:23:09.263575 aidref 258528079 R rec 22837bf8-dea1-41a9-9181-b98223201583 -2023-07-08 08:23:09.38697 2023-07-08 08:23:09.386983 aidref 258546417 R rec 0d2f1894-bece-44e8-95c6-1e2728313952 -2023-07-08 08:23:09.494437 2023-07-08 08:23:09.494454 aidref 258552778 R rec 78f260fa-8813-47e2-98e1-853997744292 -2023-07-08 08:23:09.603238 2023-07-08 08:23:09.603253 aidref 258575719 R rec df53646e-a292-4467-9c27-569e3f22bb9b -2023-07-08 08:23:09.722877 2023-07-08 08:23:09.722886 aidref 258640731 R rec dad6e2fd-0382-4054-9b41-6f8a456985d5 -2023-07-08 08:23:09.829351 2023-07-08 08:23:09.829362 aidref 258645172 R rec 3ce475ee-c247-4d77-8560-3040bd79f926 -2023-07-08 08:23:09.946263 2023-07-08 08:23:09.946278 aidref 258645563 R rec 2b677f22-728b-4d86-99eb-f8b8554013e6 -2023-07-08 08:23:10.081562 2023-07-08 08:23:10.081572 aidref 259100056 R rec cfca57df-0b91-4062-bba4-28c80d5c6c4d -2023-07-08 08:23:10.190149 2023-07-08 08:23:10.19016 aidref 259230197 R rec b2d0d4b4-0f89-4650-a6e4-afb49d943a79 -2023-07-08 08:23:10.31841 2023-07-08 08:23:10.31842 aidref 259270482 R rec 0921329c-2e0b-43b1-9d98-203bdc47a218 -2023-07-08 08:23:10.423138 2023-07-08 08:23:10.423147 aidref 25929070X R rec f6a9a970-79ff-473b-b7b5-2e2b1b27a530 -2023-07-08 08:23:10.528042 2023-07-08 08:23:10.528052 aidref 259327735 R rec 31897212-0854-4443-be05-ec1be2f27b77 -2023-07-08 08:23:10.648285 2023-07-08 08:23:10.648295 aidref 259329657 R rec bdf0eb7b-cb87-4998-8d44-4ae9c06e78de -2023-07-08 08:23:10.80647 2023-07-08 08:23:10.806483 aidref 259367516 R rec 21b68d9d-cf64-424d-ba75-e52a34101e43 -2023-07-08 08:23:10.945509 2023-07-08 08:23:10.945525 aidref 25943812X R rec 0d9f4762-95e8-4595-8721-ca67faa86b53 -2023-07-08 08:23:11.063843 2023-07-08 08:23:11.063853 aidref 259789798 R rec 8f625d99-b6b8-4217-9bc3-d916f8628985 -2023-07-08 08:23:11.1965 2023-07-08 08:23:11.196511 aidref 25982142X R rec f8716d0c-ba1c-4429-8168-087ff8421465 -2023-07-08 08:23:11.314547 2023-07-08 08:23:11.314561 aidref 259847127 R rec 7e4f4ef0-0f06-47a6-a641-364c13939d11 -2023-07-08 08:23:11.448841 2023-07-08 08:23:11.448847 aidref 259860778 R rec 0cb78bf7-d6d2-40fb-8c9f-d87bf9a7f58e -2023-07-08 08:23:11.562022 2023-07-08 08:23:11.562034 aidref 259863424 R rec c5152175-36ae-4e67-ac3b-e60ccad6341a -2023-07-08 08:23:11.688065 2023-07-08 08:23:11.688077 aidref 259907448 R rec b536e4af-3798-46ef-8f03-30c7350f01e1 -2023-07-08 08:23:11.833425 2023-07-08 08:23:11.833438 aidref 259908142 R rec 59872922-985c-46fa-a3e4-d243ec703b5c -2023-07-08 08:23:11.961123 2023-07-08 08:23:11.961136 aidref 259925993 R rec 61c19fab-65bc-47da-ba22-aaf198e68836 -2023-07-08 08:23:12.088467 2023-07-08 08:23:12.088481 aidref 259928844 R rec a779b0b6-a405-42f1-afd7-3b4014f3a31b -2023-07-08 08:23:12.243113 2023-07-08 08:23:12.243119 aidref 259991724 R rec 6512101c-bb1f-46ca-b6ae-d2647b1a1abf -2023-07-08 08:23:12.416638 2023-07-08 08:23:12.416652 aidref 260074969 R rec 1152ab43-aaeb-4e61-80cb-cb83c245920c -2023-07-08 08:23:12.528643 2023-07-08 08:23:12.528652 aidref 26009773X R rec 33f03578-0030-437a-9d09-34b31fc6c463 -2023-07-08 08:23:12.634379 2023-07-08 08:23:12.634391 aidref 260176893 R rec 6fa53a6d-ce66-48cb-9bbc-111c9d7cbcf2 -2023-07-08 08:23:12.73769 2023-07-08 08:23:12.737705 aidref 260238570 R rec ef28938a-45c6-4654-8259-0c454b929266 -2023-07-08 08:23:12.852926 2023-07-08 08:23:12.852936 aidref 260322393 R rec d8617b53-e64a-46dc-a040-8e3a07857093 -2023-07-08 08:23:12.959737 2023-07-08 08:23:12.959753 aidref 26040862X R rec 7ab90685-9528-4be2-a10f-223c515ec05b -2023-07-08 08:23:13.085849 2023-07-08 08:23:13.085863 aidref 260480584 R rec bbad58fa-2a40-4d72-ac0b-89e003aaabbd -2023-07-08 08:23:13.194448 2023-07-08 08:23:13.194463 aidref 260499021 R rec 8ddec8ed-fedd-4651-8126-e9655b823b6c -2023-07-08 08:23:13.299946 2023-07-08 08:23:13.299957 aidref 260505269 R rec 615fc0e3-7700-4aae-afe6-458c46d25718 -2023-07-08 08:23:13.418064 2023-07-08 08:23:13.41807 aidref 260578045 R rec 48687f32-c2ff-4eb3-a420-4dca89edf97e -2023-07-08 08:23:13.523696 2023-07-08 08:23:13.523712 aidref 260582808 R rec a8637449-6a8e-4865-bd03-aa21279ba1c1 -2023-07-08 08:23:13.625184 2023-07-08 08:23:13.6252 aidref 260592404 R rec 028ab0a9-5573-4338-ba78-fa1f9530b0ed -2023-07-08 08:23:13.756065 2023-07-08 08:23:13.756076 aidref 260735353 R rec eca1ae42-4ce7-4939-997c-788d7e825d46 -2023-07-08 08:23:13.874533 2023-07-08 08:23:13.874543 aidref 260775967 R rec 3b5e0a29-f695-4842-8564-04d1e3fa3f82 -2023-07-08 08:23:13.985461 2023-07-08 08:23:13.985475 aidref 260782955 R rec 06490e42-aa0e-409e-8c51-4ab0e0c009c3 -2023-07-08 08:23:14.115399 2023-07-08 08:23:14.115409 aidref 260807710 R rec 289cd3db-b39d-459a-acfe-bcf8cb4e3aec -2023-07-08 08:23:14.237129 2023-07-08 08:23:14.237141 aidref 260812374 R rec f4d25f1f-a2f8-4769-a037-b8fe88897e62 -2023-07-08 08:23:14.352062 2023-07-08 08:23:14.352073 aidref 260844578 R rec f2f122ce-aeaa-4253-a051-e416abd0edba -2023-07-08 08:23:14.512852 2023-07-08 08:23:14.512857 aidref 260864811 R rec 89454a0e-e079-4e87-b9b1-3885e17dc028 -2023-07-08 08:23:14.608232 2023-07-08 08:23:14.608238 aidref 260877484 R rec 4d150310-fdf1-4f37-b2a6-0e4c3d9d52c2 -2023-07-08 08:23:14.682529 2023-07-08 08:23:14.682539 aidref 26091164X R rec 6b941998-8ada-4d59-ae30-4e80d9e28217 -2023-07-08 08:23:14.783978 2023-07-08 08:23:14.78399 aidref 260925810 R rec af362186-b057-4151-909d-4e3ad1aa5deb -2023-07-08 08:23:14.883755 2023-07-08 08:23:14.883766 aidref 260929905 R rec 8daafaeb-0225-4e2c-b4d4-3c0d9fd3d79c -2023-07-08 08:23:14.998577 2023-07-08 08:23:14.998587 aidref 260939587 R rec 32cd5d20-fffb-4144-ac9b-bfadd1e86fde -2023-07-08 08:23:15.10718 2023-07-08 08:23:15.107192 aidref 260943193 R rec 82bd69de-4573-4a3e-a107-3e225fd4e7bc -2023-07-08 08:23:15.202192 2023-07-08 08:23:15.202205 aidref 260977756 R rec ec478bc9-8bf7-47e8-98bd-6013094761e4 -2023-07-08 08:23:15.312745 2023-07-08 08:23:15.312759 aidref 260987204 R rec cf4d7f21-1edd-4dc5-8d78-6bafe011286a -2023-07-08 08:23:15.429982 2023-07-08 08:23:15.429994 aidref 260995223 R rec 46ca87ca-fa6e-4878-9a71-2942e5c324fc -2023-07-08 08:23:15.533427 2023-07-08 08:23:15.533437 aidref 261067079 R rec 92361212-3cb5-4a83-bd3b-baede5f50670 -2023-07-08 08:23:15.638051 2023-07-08 08:23:15.638066 aidref 261116274 R rec fd6dcdc0-4603-496b-bf33-136d8a2fd86b -2023-07-08 08:23:15.735279 2023-07-08 08:23:15.735289 aidref 261144588 R rec e4906330-f7d9-4b01-9bdb-003b8c36185d -2023-07-08 08:23:15.836347 2023-07-08 08:23:15.836362 aidref 261155210 R rec 201136a6-b996-4e49-9028-1d9e343f0ccb -2023-07-08 08:23:15.975844 2023-07-08 08:23:15.97585 aidref 26124096X R rec d7938734-86e5-44d1-b28d-d0c095aafae9 -2023-07-08 08:23:16.076714 2023-07-08 08:23:16.076725 aidref 261260987 R rec 63dc95e1-8d6c-4408-a6b1-3a5e1c85d9b7 -2023-07-08 08:23:16.182271 2023-07-08 08:23:16.182283 aidref 261270206 R rec b1c9649b-3871-4113-a647-6ce1e0c94aa6 -2023-07-08 08:23:16.283413 2023-07-08 08:23:16.283424 aidref 261515632 R rec 34c716a5-87fd-427d-83dd-36a1aa637148 -2023-07-08 08:23:16.390977 2023-07-08 08:23:16.390987 aidref 261606441 R rec e1906289-eb72-455d-88ca-7ba639cdab8f -2023-07-08 08:23:16.495107 2023-07-08 08:23:16.495121 aidref 261732722 R rec 9b08ab77-1ccc-4cc1-a562-58da6ba2bc1c -2023-07-08 08:23:16.608044 2023-07-08 08:23:16.608063 aidref 261805762 R rec b8976370-b626-4a06-80ed-b0d029d26e57 -2023-07-08 08:23:16.728125 2023-07-08 08:23:16.728136 aidref 261809911 R rec ca92e4b8-9530-4c2f-81a5-d591a7925116 -2023-07-08 08:23:16.835576 2023-07-08 08:23:16.835594 aidref 261814176 R rec 85a6dd18-5a0c-4c79-a5af-3d1b6ab5122a -2023-07-08 08:23:16.958705 2023-07-08 08:23:16.95872 aidref 261876007 R rec 02cb2936-8ecd-4b9a-a442-a2f4e6610865 -2023-07-08 08:23:17.0797 2023-07-08 08:23:17.079711 aidref 261892169 R rec 634590e7-f339-4492-9787-7d2034cccfe4 -2023-07-08 08:23:17.185936 2023-07-08 08:23:17.185949 aidref 261974580 R rec a5a2f529-f99f-4bd7-bc99-a5f66004c490 -2023-07-08 08:23:17.284363 2023-07-08 08:23:17.284378 aidref 26212369X R rec cfeb9d3b-cec7-4a87-9e32-99235b81e1d4 -2023-07-08 08:23:17.392817 2023-07-08 08:23:17.39283 aidref 26221007X R rec 309062f5-db0b-4b2a-8c4c-26bff0f7be7e -2023-07-08 08:23:17.506939 2023-07-08 08:23:17.50695 aidref 262212129 R rec fce0cc53-564f-4f9a-9685-488282c4a048 -2023-07-08 08:23:17.605272 2023-07-08 08:23:17.605287 aidref 262213656 R rec 60e5007b-d008-423e-b879-59caa6e7feb6 -2023-07-08 08:23:17.711477 2023-07-08 08:23:17.711491 aidref 262246619 R rec db31c132-4057-4fa8-b0b0-4a965be83d9b -2023-07-08 08:23:17.820159 2023-07-08 08:23:17.820172 aidref 262262940 R rec f8875704-fac4-4617-af77-25056fee4346 -2023-07-08 08:23:17.923936 2023-07-08 08:23:17.923951 aidref 262286394 R rec 8a3dae2c-3b6a-41f8-85be-7328a910e1d9 -2023-07-08 08:23:18.021329 2023-07-08 08:23:18.02134 aidref 26232217X R rec b40d3550-e9eb-42c1-886c-74cdca2239e7 -2023-07-08 08:23:18.133514 2023-07-08 08:23:18.133524 aidref 262328836 R rec d1869760-6218-4c86-8539-e81eabf33a95 -2023-07-08 08:23:18.229895 2023-07-08 08:23:18.229906 aidref 262350459 R rec a028b63e-bc0e-459c-9126-6c71253d979b -2023-07-08 08:23:18.322597 2023-07-08 08:23:18.322608 aidref 262354659 R rec 04637b47-8d81-405b-887d-fd1217974790 -2023-07-08 08:23:18.428566 2023-07-08 08:23:18.428577 aidref 262398516 R rec 85b90a7a-ff72-4031-8ab7-af3e07cef907 -2023-07-08 08:23:18.559204 2023-07-08 08:23:18.559214 aidref 262403242 R rec 4b0ad931-03c3-487c-957b-2cfe6e53ec54 -2023-07-08 08:23:18.670438 2023-07-08 08:23:18.670451 aidref 262436574 R rec 2940a785-441c-4dc9-93c4-6dc2cd69b3a0 -2023-07-08 08:23:18.771653 2023-07-08 08:23:18.771664 aidref 262452979 R rec 8fcde187-23e5-47b7-8ed5-5b95beca464b -2023-07-08 08:23:18.90403 2023-07-08 08:23:18.904045 aidref 262466724 R rec 0d52314e-c605-4867-a472-66c0f22c19e6 -2023-07-08 08:23:19.009906 2023-07-08 08:23:19.00992 aidref 262469561 R rec 3623380a-bc02-45fb-806a-68207f2ee743 -2023-07-08 08:23:19.134505 2023-07-08 08:23:19.134516 aidref 262471116 R rec b986eff1-0fda-43d5-933a-b4c78e66a085 -2023-07-08 08:23:19.234765 2023-07-08 08:23:19.234775 aidref 262486636 R rec 58e254b4-3b70-41bc-a85f-537ac1ffd8d4 -2023-07-08 08:23:19.353697 2023-07-08 08:23:19.353713 aidref 26249714X R rec aab84fa2-6be3-40c8-9de3-ad779f93cbcb -2023-07-08 08:23:19.458702 2023-07-08 08:23:19.458717 aidref 262504391 R rec ecde4d75-ad28-4d4d-b6f7-183238f8d277 -2023-07-08 08:23:19.575148 2023-07-08 08:23:19.575158 aidref 262615223 R rec 14f4b878-d963-4463-bbed-8466759b37a7 -2023-07-08 08:23:19.690775 2023-07-08 08:23:19.690791 aidref 262645882 R rec 49a68587-f07d-4df6-83e8-b1aadff3a519 -2023-07-08 08:23:19.793624 2023-07-08 08:23:19.793634 aidref 26282180X R rec a446587e-c0a3-4e80-8ddf-7bb5a8470e35 -2023-07-08 08:23:19.900753 2023-07-08 08:23:19.90077 aidref 26285242X R rec 451d18ef-1468-442f-9538-20e0af21cf7d -2023-07-08 08:23:20.014533 2023-07-08 08:23:20.014546 aidref 262888467 R rec 054c63ee-2fa5-40f7-9f00-0c1eefaa0731 -2023-07-08 08:23:20.116292 2023-07-08 08:23:20.11631 aidref 263082091 R rec f4c7cd26-4975-4ce9-9c3c-714100411439 -2023-07-08 08:23:20.266403 2023-07-08 08:23:20.266418 aidref 263195449 R rec c29dbe79-f7d1-4922-8b08-bdbff021fd20 -2023-07-08 08:23:20.390163 2023-07-08 08:23:20.390175 aidref 263217442 R rec d17886ac-1437-4206-a895-f04a3b1c51c1 -2023-07-08 08:23:20.523454 2023-07-08 08:23:20.523464 aidref 263267466 R rec 6bcfce35-721a-4d02-9a26-26d463b804b9 -2023-07-08 08:23:20.623875 2023-07-08 08:23:20.62389 aidref 263445194 R rec 70830541-d212-4d6b-a747-ad8a1e1b52c9 -2023-07-08 08:23:20.727828 2023-07-08 08:23:20.727844 aidref 26347318X R rec 6b97a36d-7d58-49b7-b071-c8f1e2a38629 -2023-07-08 08:23:20.839249 2023-07-08 08:23:20.839267 aidref 263491455 R rec 939747ae-1254-483c-be82-877d9397ef64 -2023-07-08 08:23:20.967897 2023-07-08 08:23:20.967912 aidref 263502627 R rec ba8a3284-12a4-4c1f-ac95-4449921d4142 -2023-07-08 08:23:21.105065 2023-07-08 08:23:21.10508 aidref 263581780 R rec 8d4c47e2-2cd1-46a8-8293-3805ca1251ec -2023-07-08 08:23:21.229196 2023-07-08 08:23:21.229202 aidref 263587339 R rec 28d20e02-3009-4e74-922c-67303a473f48 -2023-07-08 08:23:21.316149 2023-07-08 08:23:21.316163 aidref 263603652 R rec 90f76a7e-ca08-40bb-abe3-6b19011d0012 -2023-07-08 08:23:21.41874 2023-07-08 08:23:21.41875 aidref 263626687 R rec 8762f1c5-a5e9-44ea-8c6e-2aa7353a8052 -2023-07-08 08:23:21.522791 2023-07-08 08:23:21.522806 aidref 263671372 R rec 16772c32-738b-4842-a2a4-22e9593a8f38 -2023-07-08 08:23:21.618035 2023-07-08 08:23:21.618045 aidref 263671887 R rec f7b88101-c4fc-46ff-b7be-ea18772bed08 -2023-07-08 08:23:21.725126 2023-07-08 08:23:21.725141 aidref 263682471 R rec feeac164-5cec-4a94-bbbb-52433f048106 -2023-07-08 08:23:21.842621 2023-07-08 08:23:21.84264 aidref 263722198 R rec 85f9f624-cfcf-47d5-b22a-043b2fafac2f -2023-07-08 10:22:01.537813 2023-07-08 10:22:01.537819 aidref 26525969X R rec 8c7619b1-25fc-4b0c-b529-1c22fbc3c282 -2023-07-08 10:22:23.241315 2023-07-08 10:22:23.241328 aidref 153776951 R rec f5a9fd22-0636-461a-91f6-fc084916fc65 -2023-07-08 10:22:28.267329 2023-07-08 10:22:28.267335 aidref 26428058X R rec 308a8750-bcbb-47fb-8b00-719a45d0c121 -2023-07-08 10:22:28.554457 2023-07-08 10:22:28.554465 aidref 265219493 R rec 9d3239c9-aa9e-4dca-af54-e84994bff445 -2023-07-08 10:22:50.253204 2023-07-08 10:22:50.253216 aidref 264703227 R rec 6c00ab50-2bb7-4289-9dba-941226d0e24b -2023-07-08 10:22:52.84208 2023-07-08 10:22:52.842092 aidref 263908038 R rec 2483dd64-47f4-40a2-834f-b363cd8bd879 -2023-07-08 10:22:55.375103 2023-07-08 10:22:55.375117 aidref 260328065 R rec 6d847d8e-7262-42bc-bc5f-2fc6f90f111d -2023-07-08 10:22:56.162761 2023-07-08 10:22:56.162773 aidref 264982959 R rec 01eccfe8-3ea9-474e-8aea-7ae589902fb4 -2023-07-08 10:22:56.916695 2023-07-08 10:22:56.916702 aidref 267373414 R rec fb6e3ae9-5fbe-494f-875f-80bf42f78bd1 -2023-07-08 10:23:02.195573 2023-07-08 10:23:02.19558 aidref 26528774X R rec 0267c9af-8b87-4bdb-a600-f85c6c9482c7 -2023-07-08 10:28:59.086431 2023-07-08 10:28:59.086455 aidref 265836905 R rec ed1d2036-1c45-4f41-884c-7aa1d48aedc9 +2024-09-11 09:03:46.796798 2024-09-11 09:03:46.796803 aidref 026361477 R rec 5d2667b5-2c5b-400b-a3b1-05de53f4c85b +2024-09-11 09:03:46.873589 2024-09-11 09:03:46.873593 aidref 026366231 R rec 873d61b4-9c1c-4e9a-b11d-7dc201680f6e +2024-09-11 09:03:46.933725 2024-09-11 09:03:46.933731 aidref 026393190 R rec 83245cfe-42ea-447a-873e-0dc3a8e34c9c +2024-09-11 09:03:46.99899 2024-09-11 09:03:46.998994 aidref 026398257 R rec 3a9b9f39-2d30-4fff-a5b5-6e8b70774d60 +2024-09-11 09:03:47.058524 2024-09-11 09:03:47.05853 aidref 026403161 R rec 7322a145-7da9-4b20-8595-d9e6f8295c37 +2024-09-11 09:03:47.11199 2024-09-11 09:03:47.111995 aidref 026408805 R rec bca81253-a399-44ae-8aa2-70ebab289629 +2024-09-11 09:03:47.206486 2024-09-11 09:03:47.206491 aidref 026418460 R rec dc3a3faf-5b3e-4fab-9f30-55218caec444 +2024-09-11 09:03:47.263472 2024-09-11 09:03:47.263478 aidref 026428636 R rec 098e86cf-b5c2-4bd3-bbd4-95b2e1f41005 +2024-09-11 09:03:47.317426 2024-09-11 09:03:47.317431 aidref 026430746 R rec bd7d8904-7040-4745-be39-3244a8352539 +2024-09-11 09:03:47.371918 2024-09-11 09:03:47.371923 aidref 026446278 R rec ed3acbd9-c8fd-43b9-a149-31e0e89610af +2024-09-11 09:03:47.429504 2024-09-11 09:03:47.42951 aidref 026450038 R rec 2c7144fd-0eb9-42d8-8883-50f2a84eb6a2 +2024-09-11 09:03:47.482199 2024-09-11 09:03:47.482204 aidref 026452057 R rec 4044ff78-6cda-4fa0-b1d5-5ba1a7371ce7 +2024-09-11 09:03:47.539859 2024-09-11 09:03:47.539864 aidref 026471396 R rec bd1f15ae-2806-402b-aa8d-aec51c7e685f +2024-09-11 09:03:47.603334 2024-09-11 09:03:47.603339 aidref 026483157 R rec d0c81c2d-4619-49a8-a951-0ce22b057631 +2024-09-11 09:03:47.655928 2024-09-11 09:03:47.655934 aidref 026488582 R rec 61b69120-071d-4b0d-ae31-9a7d15b24e29 +2024-09-11 09:03:47.71109 2024-09-11 09:03:47.711095 aidref 026501228 R rec 4506dcc7-6cfc-4a43-a5fd-047eb8fd09a4 +2024-09-11 09:03:47.767186 2024-09-11 09:03:47.767192 aidref 026524759 R rec 9553bc92-0788-40b7-898f-b0025479cf32 +2024-09-11 09:03:47.825274 2024-09-11 09:03:47.825279 aidref 026526980 R rec 0e4b27df-feaf-4e09-a216-58b75252c673 +2024-09-11 09:03:47.890292 2024-09-11 09:03:47.890297 aidref 026528290 R rec 320461b4-594d-4ec2-86b3-71b67a136d12 +2024-09-11 09:03:47.94444 2024-09-11 09:03:47.944445 aidref 026529890 R rec 109340bf-8841-41ee-ba15-96ec8b65dec5 +2024-09-11 09:03:48.002118 2024-09-11 09:03:48.002125 aidref 026530538 R rec 68e629ee-1fa6-4420-beee-1747c52ba928 +2024-09-11 09:03:48.063363 2024-09-11 09:03:48.063368 aidref 026536625 R rec badcc0ba-ddd6-4789-b1bb-edc61171e48c +2024-09-11 09:03:48.119617 2024-09-11 09:03:48.119624 aidref 02654606X R rec f96e2b89-655b-4adb-9cf5-3fa5fa08b01c +2024-09-11 09:03:48.176378 2024-09-11 09:03:48.176385 aidref 02654637X R rec a9354150-3c51-4bbd-9799-ceb7a8bcf1ed +2024-09-11 09:03:48.235792 2024-09-11 09:03:48.235798 aidref 026561328 R rec 38692305-ffdc-4da7-b45d-b748eeaf08c5 +2024-09-11 09:03:48.301893 2024-09-11 09:03:48.301898 aidref 026562170 R rec ce92c130-bff1-4674-af3b-d6640d2dfd38 +2024-09-11 09:03:48.358176 2024-09-11 09:03:48.358182 aidref 02656453X R rec 0c76f16e-ee07-4289-ba80-c94c8cc24ec7 +2024-09-11 09:03:48.422786 2024-09-11 09:03:48.422791 aidref 026567695 R rec c22c6364-ad89-449b-8f86-da27e8f67d7b +2024-09-11 09:03:48.507217 2024-09-11 09:03:48.507223 aidref 026583135 R rec 65eea9d2-cee9-4ca2-abcc-5314903643df +2024-09-11 09:03:48.563549 2024-09-11 09:03:48.563555 aidref 02658672X R rec 2f1d7e09-e3e3-4784-96e3-ce0a4aef84fe +2024-09-11 09:03:48.618826 2024-09-11 09:03:48.618832 aidref 026614421 R rec 580ce9eb-6bb1-41dd-8c54-3aec47a7e9a3 +2024-09-11 09:03:48.676631 2024-09-11 09:03:48.676637 aidref 026626373 R rec 2043cac3-8c02-464e-af9f-596b526e98a0 +2024-09-11 09:03:48.7314 2024-09-11 09:03:48.731406 aidref 026631342 R rec 8dc74421-6c24-4334-b547-363206993056 +2024-09-11 09:03:48.791757 2024-09-11 09:03:48.791763 aidref 026646862 R rec 7664c0d5-a83b-44ca-a057-4a114c36f5d6 +2024-09-11 09:03:48.853658 2024-09-11 09:03:48.853664 aidref 02672698X R rec 4e68f5af-6c47-4a47-8a5a-093417bfd1b7 +2024-09-11 09:03:48.90715 2024-09-11 09:03:48.907155 aidref 02675181X R rec 4bd262dc-8f21-4885-bc15-0c6d42c039b2 +2024-09-11 09:03:48.961887 2024-09-11 09:03:48.961893 aidref 026847655 R rec eb9f05cf-7054-475d-bf76-25520bb80959 +2024-09-11 09:03:49.020382 2024-09-11 09:03:49.020388 aidref 026868482 R rec 78f922de-11e1-481f-8dd9-bb432289b9de +2024-09-11 09:03:49.091786 2024-09-11 09:03:49.091791 aidref 026895056 R rec e47ea142-1aa5-4a0c-b612-6156d6c54652 +2024-09-11 09:03:49.157525 2024-09-11 09:03:49.15753 aidref 026916134 R rec b2c01de5-ecca-4fcb-82e3-66355282b8c3 +2024-09-11 09:03:49.222468 2024-09-11 09:03:49.222473 aidref 026924498 R rec 3aa966f8-d864-42f3-9554-42ef70bc848e +2024-09-11 09:03:49.289108 2024-09-11 09:03:49.289116 aidref 026959852 R rec bdb00e13-a848-43eb-a2e6-09c181a2d832 +2024-09-11 09:03:49.364887 2024-09-11 09:03:49.364892 aidref 026994801 R rec 648215f1-3d6b-4f92-81e9-2c2f56d593d2 +2024-09-11 09:03:49.430283 2024-09-11 09:03:49.430288 aidref 026995050 R rec 4bdb53cb-db6b-4f80-8633-18867a1f50c9 +2024-09-11 09:03:49.496732 2024-09-11 09:03:49.496736 aidref 02700273X R rec da53e0f7-bee7-4109-872f-6eb27b6130e8 +2024-09-11 09:03:49.550805 2024-09-11 09:03:49.550811 aidref 027006344 R rec 159e600d-d84d-4b73-9048-44cb5a573d7e +2024-09-11 09:03:49.609177 2024-09-11 09:03:49.609183 aidref 027019837 R rec e2b28ec8-a89d-4de8-9a1d-24c3bc2d77ab +2024-09-11 09:03:49.6945 2024-09-11 09:03:49.694506 aidref 02703819X R rec ad22ace1-a39f-40cb-8607-8fe15ee2f2e0 +2024-09-11 09:03:49.766273 2024-09-11 09:03:49.766278 aidref 027135985 R rec ea510bc0-84a8-4b56-982d-5a9364d85615 +2024-09-11 09:03:49.833316 2024-09-11 09:03:49.833322 aidref 027215008 R rec c7ce7217-6ed0-48ce-8851-76fc74a7845f +2024-09-11 09:03:49.889263 2024-09-11 09:03:49.889268 aidref 027486028 R rec 6e60b2b3-2ce1-45e8-95e5-213484590efd +2024-09-11 09:03:49.944518 2024-09-11 09:03:49.944523 aidref 027632288 R rec 6abd45d4-f3aa-42a7-a2e9-e6863b8a8f59 +2024-09-11 09:03:49.998682 2024-09-11 09:03:49.998687 aidref 027767744 R rec c4789952-f6ed-4e46-a859-f5012af5cf0c +2024-09-11 09:03:50.058961 2024-09-11 09:03:50.058966 aidref 027896781 R rec 682b7797-c756-491d-8ded-de8034374ce6 +2024-09-11 09:03:50.11259 2024-09-11 09:03:50.112595 aidref 027912760 R rec 7e10c5f4-9934-4fb4-8975-3836ede2ad69 +2024-09-11 09:03:50.173746 2024-09-11 09:03:50.17375 aidref 02796096X R rec 1da286a4-5ef4-4e2e-8d27-e91452222685 +2024-09-11 09:03:50.244903 2024-09-11 09:03:50.244909 aidref 027969428 R rec e4739e98-2fd4-48e9-b78c-5f57d5707ea5 +2024-09-11 09:03:50.302092 2024-09-11 09:03:50.302097 aidref 028071670 R rec a239c83f-248e-411e-b0ed-72b765e7004a +2024-09-11 09:03:50.359078 2024-09-11 09:03:50.359083 aidref 028082788 R rec 0e51c517-eb9d-47dd-9683-3a8020078563 +2024-09-11 09:03:50.417928 2024-09-11 09:03:50.417934 aidref 02809364X R rec 09e259fc-a5eb-4068-a7e2-beb77ebe05ac +2024-09-11 09:03:50.479364 2024-09-11 09:03:50.479368 aidref 028166027 R rec 0ee768ff-5ab1-47e2-86e7-b7ff19d7c075 +2024-09-11 09:03:50.539442 2024-09-11 09:03:50.539447 aidref 028259866 R rec 48f2b9cc-5b11-4cd7-937d-14bf7646e922 +2024-09-11 09:03:50.610363 2024-09-11 09:03:50.610368 aidref 028302435 R rec bda68e78-8e40-484e-bc13-179ea6707bc0 +2024-09-11 09:03:50.668238 2024-09-11 09:03:50.668244 aidref 02832787X R rec 40e95c39-7438-4693-b7ee-4b28cc101497 +2024-09-11 09:03:50.724561 2024-09-11 09:03:50.724567 aidref 028330943 R rec b5ec7a14-68e9-4a31-a89b-7b70c963f791 +2024-09-11 09:03:50.793646 2024-09-11 09:03:50.793651 aidref 028354753 R rec da63cd69-d414-4638-b00d-5e8c3aa9c4ab +2024-09-11 09:03:50.854115 2024-09-11 09:03:50.854123 aidref 028357531 R rec a88dd133-1942-4c8f-aa06-371f269b3693 +2024-09-11 09:03:50.914277 2024-09-11 09:03:50.914282 aidref 028416171 R rec a947447b-e1b6-45b1-8c16-7e4c62f29044 +2024-09-11 09:03:50.976983 2024-09-11 09:03:50.976989 aidref 028419790 R rec 5f5f8eb2-3092-4240-a493-3a0866ef2b4c +2024-09-11 09:03:51.0455 2024-09-11 09:03:51.045505 aidref 028442717 R rec 9e74543b-b05d-42fa-977d-7a7d6b508b94 +2024-09-11 09:03:51.112005 2024-09-11 09:03:51.11201 aidref 028470141 R rec 1263229e-f312-4209-8315-ed63bfeb88df +2024-09-11 09:03:51.20842 2024-09-11 09:03:51.208427 aidref 028495764 R rec be018df5-a4c7-4f8f-9fd1-d41dabbab928 +2024-09-11 09:03:51.271643 2024-09-11 09:03:51.271648 aidref 028500490 R rec 8401a4a6-fe1b-4691-b5d6-4438b56b83e0 +2024-09-11 09:03:51.335615 2024-09-11 09:03:51.33562 aidref 028503112 R rec 65f74894-7cd2-4ee0-9366-5d31ad9adf11 +2024-09-11 09:03:51.391849 2024-09-11 09:03:51.391854 aidref 028522206 R rec 8638f7aa-6aeb-477b-a317-2ebf965407e6 +2024-09-11 09:03:51.448235 2024-09-11 09:03:51.448239 aidref 028523555 R rec 247c48be-cfee-43e2-b4ae-b5207598648a +2024-09-11 09:03:51.5263 2024-09-11 09:03:51.526307 aidref 028529677 R rec 016d241d-2d3c-4bf6-acc6-06b986d9ad35 +2024-09-11 09:03:51.596043 2024-09-11 09:03:51.596049 aidref 028541634 R rec 85f9ed8f-fda9-4a19-b1b0-ce77c49837e2 +2024-09-11 09:03:51.663299 2024-09-11 09:03:51.663305 aidref 028542770 R rec 70e37113-22c4-42b8-b342-a7b7d2da17a1 +2024-09-11 09:03:51.730734 2024-09-11 09:03:51.730739 aidref 028558200 R rec 4dddaf68-fae4-4e26-b304-b8b0fb95b993 +2024-09-11 09:03:51.791124 2024-09-11 09:03:51.791131 aidref 028615719 R rec 308c23b4-3181-4c56-aed7-f69778dde244 +2024-09-11 09:03:51.846959 2024-09-11 09:03:51.846964 aidref 028666925 R rec d900bdea-120e-4e16-a325-2e7fdb16bd22 +2024-09-11 09:03:51.903615 2024-09-11 09:03:51.90362 aidref 028681673 R rec 52b5326f-5b2e-4301-ac9c-20f1d7f55af0 +2024-09-11 09:03:51.96529 2024-09-11 09:03:51.965294 aidref 028735498 R rec b49e994e-0adf-4dee-a23b-162fdfe09c8d +2024-09-11 09:03:52.026434 2024-09-11 09:03:52.026439 aidref 028766857 R rec 080b1b05-dcd8-4b22-998e-486c51bec952 +2024-09-11 09:03:52.094334 2024-09-11 09:03:52.09434 aidref 028882199 R rec 5ab135a8-82d9-4fa2-905e-ae06ccea7331 +2024-09-11 09:03:52.160504 2024-09-11 09:03:52.160509 aidref 028902661 R rec b79ae749-909b-4f3f-b26f-31e054749f2c +2024-09-11 09:03:52.226777 2024-09-11 09:03:52.226782 aidref 02893010X R rec e1e8ec41-ab9b-4466-be9e-d24365911a2d +2024-09-11 09:03:52.28561 2024-09-11 09:03:52.285616 aidref 02903096X R rec bd74f45b-af5e-4554-be25-3506a831e1ee +2024-09-11 09:03:52.343535 2024-09-11 09:03:52.343541 aidref 02907309X R rec a76fa8e1-c558-4483-8944-c24a47aed797 +2024-09-11 09:03:52.400854 2024-09-11 09:03:52.40086 aidref 029077087 R rec eca893ae-4a5d-46c6-8636-caf565d074d7 +2024-09-11 09:03:52.457081 2024-09-11 09:03:52.457088 aidref 029195640 R rec fe19119c-44f3-49b0-9440-d8baaa6e881b +2024-09-11 09:03:52.531693 2024-09-11 09:03:52.531699 aidref 029214084 R rec 1213f31c-5c00-42d2-9830-652eaae19515 +2024-09-11 09:03:52.613214 2024-09-11 09:03:52.613219 aidref 029218977 R rec 225d7120-8f18-4ab5-865c-b9020b9b8dcd +2024-09-11 09:03:52.668575 2024-09-11 09:03:52.66858 aidref 029470293 R rec f349f214-e8d2-4557-b8e7-74c1446c975d +2024-09-11 09:03:52.736878 2024-09-11 09:03:52.736884 aidref 029580293 R rec a7d9c640-56d5-47a1-a44a-383764b8cad2 +2024-09-11 09:03:52.797384 2024-09-11 09:03:52.79739 aidref 029589681 R rec ad87ddab-5d3c-4a5d-a5e8-50d72f17cf42 +2024-09-11 09:03:52.876892 2024-09-11 09:03:52.876898 aidref 029598982 R rec 24f50cda-f396-4d87-9d7b-d0453a6e2d99 +2024-09-11 09:03:52.942716 2024-09-11 09:03:52.942723 aidref 029652138 R rec f3a069e9-614b-41df-84a5-1bc433a0b93d +2024-09-11 09:03:52.998919 2024-09-11 09:03:52.998924 aidref 029688019 R rec f02c7927-ac3b-4c6f-bc9d-e2a09a89871e +2024-09-11 09:03:53.05527 2024-09-11 09:03:53.055278 aidref 029698510 R rec cecae26a-b517-44b2-aeff-1e33038ea505 +2024-09-11 09:03:53.109929 2024-09-11 09:03:53.109934 aidref 029733944 R rec cd2ea083-218a-45db-ac6d-03c3906775f2 +2024-09-11 09:03:53.172468 2024-09-11 09:03:53.172473 aidref 029761867 R rec ec0d79d2-6e64-4b8b-8261-215cc94b2fb9 +2024-09-11 09:03:53.224812 2024-09-11 09:03:53.224817 aidref 029767849 R rec 2693de32-5de6-4417-a99e-5e17ed0e2b0c +2024-09-11 09:03:53.277691 2024-09-11 09:03:53.277697 aidref 02982480X R rec 1c0bd3b4-7525-4551-93dc-fc066f1ab6bc +2024-09-11 09:03:53.339137 2024-09-11 09:03:53.339143 aidref 029869587 R rec 370eb6a0-0d7d-4aa5-876a-f7b19fb9e6b6 +2024-09-11 09:03:53.393813 2024-09-11 09:03:53.39382 aidref 029872235 R rec f151333d-8ac0-4611-8284-1ccbf106865c +2024-09-11 09:03:53.448902 2024-09-11 09:03:53.448906 aidref 029924480 R rec dac6d54d-21d8-4fb0-aba1-ffb7e0713906 +2024-09-11 09:03:53.527839 2024-09-11 09:03:53.527844 aidref 029986761 R rec 0285cb56-ec26-4d3c-8452-bdf344d2170d +2024-09-11 09:03:53.607342 2024-09-11 09:03:53.607347 aidref 029994861 R rec 38686b99-22c7-4033-a2d8-dfb9ce827c6c +2024-09-11 09:03:53.659889 2024-09-11 09:03:53.659895 aidref 030045614 R rec 62870964-f272-46be-8e84-257fb98d64d5 +2024-09-11 09:03:53.714732 2024-09-11 09:03:53.714737 aidref 030086329 R rec 8c360c7c-16c1-4447-8f8b-1760b599f64a +2024-09-11 09:03:53.769071 2024-09-11 09:03:53.769077 aidref 030097886 R rec c72de5b1-198c-4f3b-bdab-4bb9bc0d0149 +2024-09-11 09:03:53.836469 2024-09-11 09:03:53.836474 aidref 030132711 R rec 3a0b75c7-238a-400d-a960-7b2f4c98586d +2024-09-11 09:03:53.88855 2024-09-11 09:03:53.888556 aidref 03013739X R rec bd8804a1-2aca-405b-a406-538d2903289f +2024-09-11 09:03:53.942734 2024-09-11 09:03:53.94274 aidref 030187400 R rec 1fd29360-d092-43e6-b093-3a40d6dca8b4 +2024-09-11 09:03:54.001182 2024-09-11 09:03:54.001188 aidref 030198011 R rec 19346191-65fb-44e5-8dc7-2a29eba78490 +2024-09-11 09:03:54.054807 2024-09-11 09:03:54.054813 aidref 030223415 R rec c3f984ef-1383-4138-96b5-3c43255ae070 +2024-09-11 09:03:54.123232 2024-09-11 09:03:54.123238 aidref 030254515 R rec 857abd0c-a77e-49d5-9136-e9732bfd67fa +2024-09-11 09:03:54.18054 2024-09-11 09:03:54.180546 aidref 03025843X R rec 01de9dc8-fb71-481d-830e-dd051863786a +2024-09-11 09:03:54.237502 2024-09-11 09:03:54.237507 aidref 030281342 R rec 8082b4d5-421d-4380-b916-cacc8138eecf +2024-09-11 09:03:54.288536 2024-09-11 09:03:54.288542 aidref 030322995 R rec 503fa9d9-06b6-49e2-b3da-c8ad9c266480 +2024-09-11 09:03:54.363435 2024-09-11 09:03:54.36344 aidref 030327687 R rec 717382b5-6ba0-4c93-aeb7-0be5f20d21b9 +2024-09-11 09:03:54.417641 2024-09-11 09:03:54.417646 aidref 030343429 R rec a066ec9f-5160-47b3-93a9-bc179dc80398 +2024-09-11 09:03:54.474395 2024-09-11 09:03:54.474399 aidref 030415357 R rec ec3dd823-e444-47b6-abf2-5b9b99e05ff8 +2024-09-11 09:03:54.536121 2024-09-11 09:03:54.536127 aidref 030459249 R rec 4d83e7e1-4812-4529-ab79-0d6017f0c16b +2024-09-11 09:03:54.588181 2024-09-11 09:03:54.588186 aidref 030486882 R rec 6261b4a3-655a-465d-a848-63793690fe28 +2024-09-11 09:03:54.642049 2024-09-11 09:03:54.642055 aidref 030490855 R rec 6251b8a1-e414-49c7-8820-c6ca83121282 +2024-09-11 09:03:54.699326 2024-09-11 09:03:54.699332 aidref 030542650 R rec 718e7ac2-a199-483e-9107-6371906fadcd +2024-09-11 09:03:54.77178 2024-09-11 09:03:54.771786 aidref 030557585 R rec 6ce20316-7a8d-4a77-bb21-ed5f0d531a5f +2024-09-11 09:03:54.825034 2024-09-11 09:03:54.825039 aidref 030575230 R rec f772f3b9-1baf-4192-a97b-1fdde45e5ff7 +2024-09-11 09:03:54.877111 2024-09-11 09:03:54.877115 aidref 030633176 R rec 6c91a637-13db-4a0e-9e54-45592f53bb0f +2024-09-11 09:03:54.929842 2024-09-11 09:03:54.929848 aidref 030713234 R rec 7bd67868-ece0-4433-aaf7-98a37994d7d9 +2024-09-11 09:03:54.980663 2024-09-11 09:03:54.980668 aidref 03074198X R rec caffa3cc-f7bf-4b5b-8696-ad597552fad8 +2024-09-11 09:03:55.037043 2024-09-11 09:03:55.037049 aidref 030745551 R rec 6429828b-410a-4d4f-bb26-2a3bfae65527 +2024-09-11 09:03:55.087229 2024-09-11 09:03:55.087234 aidref 030782465 R rec a18601f0-1a23-443e-9d61-fff24d6b305f +2024-09-11 09:03:55.14015 2024-09-11 09:03:55.140155 aidref 030802997 R rec 251912e8-3bd5-4f96-9b34-1667fa1c0796 +2024-09-11 09:03:55.192539 2024-09-11 09:03:55.192545 aidref 030818095 R rec b007449c-48ca-4ab9-a60e-c584400f52e0 +2024-09-11 09:03:55.247498 2024-09-11 09:03:55.247503 aidref 030835828 R rec aeca5a12-9012-4e9e-ac19-ed9163edfda9 +2024-09-11 09:03:55.316675 2024-09-11 09:03:55.316679 aidref 030851025 R rec a7963b86-dbf0-4c21-9b91-2dd36874a5e3 +2024-09-11 09:03:55.372934 2024-09-11 09:03:55.372939 aidref 030875277 R rec 0e013f03-c087-468a-b939-1142813a1df6 +2024-09-11 09:03:55.424175 2024-09-11 09:03:55.42418 aidref 03089719X R rec b9c01753-ae7c-4a56-9c2d-2171d8404c50 +2024-09-11 09:03:55.478924 2024-09-11 09:03:55.478929 aidref 030907667 R rec cda3dd1e-8c5a-4d14-bdd9-405dd729204c +2024-09-11 09:03:55.528771 2024-09-11 09:03:55.528775 aidref 030913632 R rec 376f4e87-6106-4929-854d-e7c5688e2d91 +2024-09-11 09:03:55.604728 2024-09-11 09:03:55.604733 aidref 031015808 R rec 51e8c01a-2511-4cbe-914a-93f5140589f7 +2024-09-11 09:03:55.660577 2024-09-11 09:03:55.660583 aidref 031060102 R rec 432f264f-880c-4f39-af8c-83295474fe9f +2024-09-11 09:03:55.717195 2024-09-11 09:03:55.7172 aidref 031064442 R rec 3b798601-175e-48ac-b04f-72e7ceec29d7 +2024-09-11 09:03:55.770063 2024-09-11 09:03:55.770068 aidref 031133231 R rec 7f5dbe29-b24d-42c8-bb60-878d8e8fb0fe +2024-09-11 09:03:55.822749 2024-09-11 09:03:55.822755 aidref 031162568 R rec 19c8e959-1903-4b5c-85b9-21a863900f2d +2024-09-11 09:03:55.876353 2024-09-11 09:03:55.876358 aidref 031226396 R rec 0f8f7b27-8f94-4af0-aeaa-39e4395c32e3 +2024-09-11 09:03:55.930487 2024-09-11 09:03:55.930493 aidref 031344712 R rec ad7682cc-80eb-40ba-b67c-9709349cf2fd +2024-09-11 09:03:55.992287 2024-09-11 09:03:55.992293 aidref 031382584 R rec 0f12ff73-78b7-4a85-bd1d-62d77e3f4671 +2024-09-11 09:03:56.054292 2024-09-11 09:03:56.054297 aidref 031416349 R rec c7e42673-80b7-4f81-aa6c-ba64dae0c173 +2024-09-11 09:03:56.113967 2024-09-11 09:03:56.113973 aidref 031419763 R rec 09b12674-8872-4dc4-bc68-0e3227cb05bf +2024-09-11 09:03:56.17892 2024-09-11 09:03:56.178925 aidref 031461034 R rec ba680c76-be7e-4e14-836b-00281f4c0a0d +2024-09-11 09:03:56.235838 2024-09-11 09:03:56.235843 aidref 031598285 R rec 80f5b643-2cf4-4380-be6f-9d34d080745d +2024-09-11 09:03:56.30576 2024-09-11 09:03:56.305765 aidref 031639704 R rec 53b1378d-3fdb-4925-a93d-2774af856799 +2024-09-11 09:03:56.36122 2024-09-11 09:03:56.361226 aidref 03165746X R rec 1cf6834d-17d7-4706-b280-700c8a7cbc6d +2024-09-11 09:03:56.429088 2024-09-11 09:03:56.429093 aidref 031718752 R rec 109f7ed7-3915-450f-a60d-a44648960108 +2024-09-11 09:03:56.486412 2024-09-11 09:03:56.486418 aidref 03172406X R rec bcb34524-7db3-4543-ad27-bae088532b3b +2024-09-11 09:03:56.546232 2024-09-11 09:03:56.546237 aidref 03175709X R rec fa4bcfb4-8656-4224-9d56-c22aa4f6eba5 +2024-09-11 09:03:56.618997 2024-09-11 09:03:56.619003 aidref 03180862X R rec fc2f7b4c-2de5-4ed0-b4c7-7f771cb83e2e +2024-09-11 09:03:56.690664 2024-09-11 09:03:56.690671 aidref 031854575 R rec e4442300-fffa-4230-b0c1-be5def01866a +2024-09-11 09:03:56.75788 2024-09-11 09:03:56.757885 aidref 031859259 R rec 2ea838d6-1a9e-4632-b6d6-d8f3628de0f4 +2024-09-11 09:03:56.815842 2024-09-11 09:03:56.815848 aidref 031867359 R rec 43b4c4e5-3e8b-4c1a-be88-df0029e93fe4 +2024-09-11 09:03:56.874891 2024-09-11 09:03:56.874895 aidref 031876633 R rec 79e59749-19ff-453e-8157-30bb8d6f27f8 +2024-09-11 09:03:56.933595 2024-09-11 09:03:56.9336 aidref 031962963 R rec 477cb35e-eee6-4dfc-b9ab-80fde482adea +2024-09-11 09:03:56.993672 2024-09-11 09:03:56.993679 aidref 032004184 R rec 480e034c-88af-4c20-bf52-42957a586168 +2024-09-11 09:03:57.055973 2024-09-11 09:03:57.055978 aidref 032063830 R rec ad1652a0-322b-464b-8876-7c79d3153ce9 +2024-09-11 09:03:57.114983 2024-09-11 09:03:57.114988 aidref 032075049 R rec da4c7b31-d370-4ac1-84f8-12bc1f3d371c +2024-09-11 09:03:57.173536 2024-09-11 09:03:57.173541 aidref 032099886 R rec 909ff9c7-5e8d-4677-96fb-6ca10cd16d40 +2024-09-11 09:03:57.2423 2024-09-11 09:03:57.242305 aidref 032207107 R rec 9bc0d11c-f89e-49e9-a4ca-a695a015c728 +2024-09-11 09:03:57.346173 2024-09-11 09:03:57.346179 aidref 03225413X R rec 262d53fa-1ceb-455d-9570-7fe5885bc3aa +2024-09-11 09:03:57.423301 2024-09-11 09:03:57.423305 aidref 032316704 R rec 5edb4875-6766-4f50-b49a-9eb9c6a3f590 +2024-09-11 09:03:57.485064 2024-09-11 09:03:57.48507 aidref 032353618 R rec 48adfe8b-6ddc-4001-bdbf-6a41c6a1a894 +2024-09-11 09:03:57.55104 2024-09-11 09:03:57.551046 aidref 032395116 R rec 87e8be7e-1809-4a3c-ab96-26da4740a77a +2024-09-11 09:03:57.623956 2024-09-11 09:03:57.623961 aidref 032397402 R rec bd3e7307-a27c-4397-b051-403fd3d91fed +2024-09-11 09:03:57.69855 2024-09-11 09:03:57.698554 aidref 032401248 R rec 79865d69-a11a-4942-95e3-8b54014e6605 +2024-09-11 09:03:57.771848 2024-09-11 09:03:57.771853 aidref 032477449 R rec b35ee740-ad14-4f1e-8cb7-f9bc6dc630ca +2024-09-11 09:03:57.831659 2024-09-11 09:03:57.831665 aidref 032498179 R rec d6c45fdf-26b4-46e4-a409-7f6f2c2688db +2024-09-11 09:03:57.914641 2024-09-11 09:03:57.914647 aidref 03259626X R rec 3f76381a-5113-4472-9a02-cb5d5f7c3e8a +2024-09-11 09:03:57.986691 2024-09-11 09:03:57.986698 aidref 032605641 R rec 1f1d3a3b-d4b3-4d1b-94cb-3fece35da319 +2024-09-11 09:03:58.04971 2024-09-11 09:03:58.049715 aidref 032613237 R rec f469571f-d2d2-4c59-8664-115e703329d2 +2024-09-11 09:03:58.124887 2024-09-11 09:03:58.124894 aidref 032638116 R rec f5a5775d-841a-44a8-8703-5566eafb09c0 +2024-09-11 09:03:58.195079 2024-09-11 09:03:58.195085 aidref 032649789 R rec f20f172d-0c33-4bab-9a66-4555ce147f6e +2024-09-11 09:03:58.265943 2024-09-11 09:03:58.265949 aidref 032679629 R rec e18bdeb6-c868-44cd-bf14-c634c278897f +2024-09-11 09:03:58.322371 2024-09-11 09:03:58.322377 aidref 032706391 R rec 3b9f3fb6-ee2c-4bcb-959e-d3b966ea9d34 +2024-09-11 09:03:58.379167 2024-09-11 09:03:58.379173 aidref 032722567 R rec 15262a4c-612b-408b-a8eb-4f7bdd03ee86 +2024-09-11 09:03:58.437516 2024-09-11 09:03:58.437521 aidref 032801009 R rec 6d51c044-20ff-4247-8708-3c2411d34639 +2024-09-11 09:03:58.511297 2024-09-11 09:03:58.511303 aidref 032807589 R rec 00a64d84-3226-47c4-9ae6-42f0a823dc8d +2024-09-11 09:03:58.610344 2024-09-11 09:03:58.610349 aidref 032842694 R rec 5156cbe1-633b-40c8-bdeb-559ffc34e788 +2024-09-11 09:03:58.697455 2024-09-11 09:03:58.697461 aidref 032846908 R rec 9610b614-86f1-411b-8c9c-e23010f70dfa +2024-09-11 09:03:58.75452 2024-09-11 09:03:58.754526 aidref 032975856 R rec 6cf6c459-21c8-4415-8b2c-b935477ce777 +2024-09-11 09:03:58.825037 2024-09-11 09:03:58.825043 aidref 033004633 R rec 6e988b79-e38e-4609-8a90-d15d3d966159 +2024-09-11 09:03:58.884086 2024-09-11 09:03:58.884091 aidref 033033269 R rec 66fd39df-e471-45d3-8898-da657fbaf723 +2024-09-11 09:03:58.951242 2024-09-11 09:03:58.951248 aidref 033070245 R rec b59eb43e-8b23-414c-a66e-5f8efb883655 +2024-09-11 09:03:59.009233 2024-09-11 09:03:59.009238 aidref 033079595 R rec 098f1329-59e9-478d-a77a-71596155808c +2024-09-11 09:03:59.068551 2024-09-11 09:03:59.068556 aidref 033151571 R rec dc3ce167-0c0d-49b9-bed3-b5407bbf0a13 +2024-09-11 09:03:59.134642 2024-09-11 09:03:59.134648 aidref 03321994X R rec 67533de9-4706-439f-a42a-0d1eeb4dc635 +2024-09-11 09:03:59.203543 2024-09-11 09:03:59.203548 aidref 033239568 R rec 1a4f4b5a-89ff-4ee6-b737-766c60c04d02 +2024-09-11 09:03:59.273282 2024-09-11 09:03:59.273287 aidref 033386242 R rec c12e44fd-a59c-46cc-853e-71fe345e3727 +2024-09-11 09:03:59.328718 2024-09-11 09:03:59.328723 aidref 033392757 R rec 7b058371-0d7c-4da2-a020-f7dbca7bc891 +2024-09-11 09:03:59.386605 2024-09-11 09:03:59.386611 aidref 033454175 R rec 519cb2b8-1ccc-4a95-ae09-4237458d6317 +2024-09-11 09:03:59.44296 2024-09-11 09:03:59.442964 aidref 033478686 R rec 3022b529-239f-4a77-a1ca-1621c772cf44 +2024-09-11 09:03:59.509272 2024-09-11 09:03:59.509277 aidref 033596344 R rec 2f2857dd-8f0b-4bb5-b38c-6eb55767ad5c +2024-09-11 09:03:59.571398 2024-09-11 09:03:59.571402 aidref 033614717 R rec f086dbfe-6dfb-4408-9df7-5968d56d2600 +2024-09-11 09:03:59.633034 2024-09-11 09:03:59.633039 aidref 033846987 R rec 73731c0c-4261-436e-9c7c-967c445dee46 +2024-09-11 09:03:59.691346 2024-09-11 09:03:59.691351 aidref 033864357 R rec e026f916-990e-4275-bb6d-f53b2475eef4 +2024-09-11 09:03:59.753242 2024-09-11 09:03:59.753248 aidref 03386540X R rec 7b8cba54-f60a-4ec5-aa56-4db7f31897c8 +2024-09-11 09:03:59.816671 2024-09-11 09:03:59.816676 aidref 033883262 R rec 1eadd65d-f103-4703-badc-cf1da911bb97 +2024-09-11 09:03:59.881117 2024-09-11 09:03:59.881122 aidref 033900795 R rec 9ce64de3-2ab3-488b-b3dd-9f9ed6e43db6 +2024-09-11 09:03:59.940947 2024-09-11 09:03:59.940952 aidref 03391737X R rec d5358790-5644-462b-8caa-6187bca3b374 +2024-09-11 09:04:00.032071 2024-09-11 09:04:00.032076 aidref 033922055 R rec dec5e7cf-b41b-4af6-b3e5-888fb8845d9d +2024-09-11 09:04:00.09557 2024-09-11 09:04:00.095575 aidref 033931941 R rec f53b9136-a595-4a53-991b-31e2dc736f37 +2024-09-11 09:04:00.157319 2024-09-11 09:04:00.157324 aidref 033938989 R rec d63d9d4c-3945-4ac5-915a-7944d2671ece +2024-09-11 09:04:00.21557 2024-09-11 09:04:00.215576 aidref 033976171 R rec 6916e74e-632f-430f-b17e-2609e59245f2 +2024-09-11 09:04:00.283016 2024-09-11 09:04:00.283021 aidref 034035370 R rec ded38ec1-4272-4d2a-a85d-4402d8ff956a +2024-09-11 09:04:00.34165 2024-09-11 09:04:00.341655 aidref 034035818 R rec 5e03b084-1bdb-4bfe-bc0e-da2dbbbbe03b +2024-09-11 09:04:00.399301 2024-09-11 09:04:00.399307 aidref 034075763 R rec ab9c0308-8a64-4435-b074-f17a30f4222c +2024-09-11 09:04:00.464653 2024-09-11 09:04:00.464658 aidref 034085289 R rec de56d664-9561-4b17-a6e4-b9172d66a1e6 +2024-09-11 09:04:00.522686 2024-09-11 09:04:00.522692 aidref 034112774 R rec 4a820ed0-4f18-4c50-8774-47a64bc6fabd +2024-09-11 09:04:00.577883 2024-09-11 09:04:00.577888 aidref 034263802 R rec a223fde1-88c0-404d-b238-9588c44603ad +2024-09-11 09:04:00.63636 2024-09-11 09:04:00.636367 aidref 034287728 R rec 0e8bb849-c4e1-4d43-812c-3115ff987878 +2024-09-11 09:04:00.697097 2024-09-11 09:04:00.697102 aidref 034310770 R rec c9cf51dc-3ca3-492d-a96f-f83c6f58f49e +2024-09-11 09:04:00.756566 2024-09-11 09:04:00.756572 aidref 034314873 R rec 80b4febe-9912-4367-a5ff-84d2305895c9 +2024-09-11 09:04:00.819049 2024-09-11 09:04:00.819055 aidref 03433999X R rec ba384e4b-9690-4f49-9992-3c0286dd0029 +2024-09-11 09:04:00.895884 2024-09-11 09:04:00.89589 aidref 034343237 R rec 60b7fb9b-a6c5-4777-8dea-4715da3bd321 +2024-09-11 09:04:00.955146 2024-09-11 09:04:00.955152 aidref 034358218 R rec ce49f490-7bb6-477a-be5b-7cdda7dc3e62 +2024-09-11 09:04:01.015648 2024-09-11 09:04:01.015653 aidref 034388397 R rec 3a52c361-5eda-4df7-b7da-68171d90374b +2024-09-11 09:04:01.092678 2024-09-11 09:04:01.092684 aidref 034511474 R rec 995eea93-cdf5-49ec-b80a-822b89be92ec +2024-09-11 09:04:01.150731 2024-09-11 09:04:01.150737 aidref 034517928 R rec 14a5311c-719a-4b27-b97d-69f9b758b995 +2024-09-11 09:04:01.239865 2024-09-11 09:04:01.239871 aidref 034537015 R rec 28ea5ab4-11a0-4b86-bcf8-b9607572a78b +2024-09-11 09:04:01.307967 2024-09-11 09:04:01.307972 aidref 034561528 R rec fc2e09f6-ed97-4e91-830e-01b2cc092df3 +2024-09-11 09:04:01.366849 2024-09-11 09:04:01.366853 aidref 034612998 R rec b6c9f377-b9c7-4a83-94a2-3701c94cfa21 +2024-09-11 09:04:01.438265 2024-09-11 09:04:01.438271 aidref 034663525 R rec 43e03c22-dfa0-43ef-9ad9-84f4aadc5387 +2024-09-11 09:04:01.494458 2024-09-11 09:04:01.494464 aidref 034692711 R rec 8bf2917d-be7d-45f7-8841-dab6fc9528fe +2024-09-11 09:04:01.554159 2024-09-11 09:04:01.554166 aidref 034696601 R rec 3f5f586a-3dea-4263-84d8-a9fc27402f86 +2024-09-11 09:04:01.611109 2024-09-11 09:04:01.611114 aidref 034702105 R rec f55617f9-899e-4e4a-ac1e-78fffef9a0e4 +2024-09-11 09:04:01.67694 2024-09-11 09:04:01.676945 aidref 034710647 R rec 3a56173b-f7ed-4e14-88bb-057ce1656e56 +2024-09-11 09:04:01.745273 2024-09-11 09:04:01.745278 aidref 034731695 R rec e1e3d81e-dc0f-46ce-8e44-83c639e9461f +2024-09-11 09:04:01.810423 2024-09-11 09:04:01.810429 aidref 034830936 R rec 5055a9de-170b-4a7b-bb3f-80bea98671b1 +2024-09-11 09:04:01.885971 2024-09-11 09:04:01.885976 aidref 034833064 R rec f295196b-6393-430d-80c0-91c7d847a049 +2024-09-11 09:04:01.941962 2024-09-11 09:04:01.941968 aidref 034886060 R rec d2406bb1-a814-453e-8a25-86fffa579277 +2024-09-11 09:04:02.000892 2024-09-11 09:04:02.000897 aidref 034922903 R rec 04cb9c17-ca84-4021-88f3-bd913c8a3b3e +2024-09-11 09:04:02.072364 2024-09-11 09:04:02.072369 aidref 034931929 R rec 3996c0ce-91d4-42e8-abd5-699c4d72a237 +2024-09-11 09:04:02.135505 2024-09-11 09:04:02.13551 aidref 034938656 R rec 511b21fc-0dc7-4fb7-b86a-fdfdb899b543 +2024-09-11 09:04:02.193868 2024-09-11 09:04:02.193873 aidref 034953809 R rec 9fc86227-2b21-44cc-b23f-9ece8fc7b4be +2024-09-11 09:04:02.256778 2024-09-11 09:04:02.256782 aidref 035009039 R rec 795ff95d-3d86-4ff9-89f1-5d37ade1ff42 +2024-09-11 09:04:02.312788 2024-09-11 09:04:02.312793 aidref 035068825 R rec 2ef49862-5abc-4b42-80f9-fdbe30f04365 +2024-09-11 09:04:02.374829 2024-09-11 09:04:02.374833 aidref 035124199 R rec 0cb1374e-54db-4edb-babb-4fe6e89b668d +2024-09-11 09:04:02.432091 2024-09-11 09:04:02.432096 aidref 035137045 R rec 982cc9d6-cf9e-42f0-8d07-af4f18acfe7d +2024-09-11 09:04:02.500292 2024-09-11 09:04:02.500297 aidref 035170867 R rec 9e8bec85-6635-4f7a-8ea4-a715014ab8c5 +2024-09-11 09:04:02.576145 2024-09-11 09:04:02.57615 aidref 035347988 R rec 0c3e18fe-8a98-4dce-b4a0-9c4d7092ec9b +2024-09-11 09:04:02.633708 2024-09-11 09:04:02.633714 aidref 035348879 R rec 7c662abf-5c62-4d93-868d-ed9d70206afd +2024-09-11 09:04:02.691177 2024-09-11 09:04:02.691182 aidref 035370572 R rec c31f7243-31a3-45ba-8eab-91c8c94846a0 +2024-09-11 09:04:02.750754 2024-09-11 09:04:02.750759 aidref 035451793 R rec baf4ad99-aec3-4414-b0ee-f460a0f07c17 +2024-09-11 09:04:02.812517 2024-09-11 09:04:02.812522 aidref 035466278 R rec f643b1f7-fcb4-4756-90e4-b1b840bf2928 +2024-09-11 09:04:02.870456 2024-09-11 09:04:02.870461 aidref 035467207 R rec 5b238879-c7fc-400e-8784-0803a144c3f8 +2024-09-11 09:04:02.928642 2024-09-11 09:04:02.928647 aidref 035550767 R rec aee9e978-5ca6-402e-8014-a312645fcf96 +2024-09-11 09:04:02.986952 2024-09-11 09:04:02.986958 aidref 035552913 R rec 5f055486-be8c-441d-89d0-89a5021e4181 +2024-09-11 09:04:03.048896 2024-09-11 09:04:03.048901 aidref 035560754 R rec 58c83ed3-de04-4cb2-a48f-c1289b937fbc +2024-09-11 09:04:03.108514 2024-09-11 09:04:03.10852 aidref 035599634 R rec 462de466-bf64-41a2-b258-4afd62061e95 +2024-09-11 09:04:03.169118 2024-09-11 09:04:03.169123 aidref 035617179 R rec 5b7a8238-27f9-47a3-a9ef-54fd00e7d14b +2024-09-11 09:04:03.238704 2024-09-11 09:04:03.238708 aidref 035695161 R rec 68eae65c-a5ff-4602-a6cd-2ce0d3e60f9f +2024-09-11 09:04:03.301419 2024-09-11 09:04:03.301424 aidref 050162373 R rec d72717a3-6862-4e54-9a87-dd23fec5344b +2024-09-11 09:04:03.358298 2024-09-11 09:04:03.358303 aidref 050191101 R rec 20e3a9dc-de7f-443d-80d4-6758ab8a70be +2024-09-11 09:04:03.421492 2024-09-11 09:04:03.421498 aidref 050212265 R rec c078ae8e-dff0-4109-8478-a62b79a6b92f +2024-09-11 09:04:03.486441 2024-09-11 09:04:03.486447 aidref 05021425X R rec 2f1118f1-5a74-44ae-9e19-2fff1fd420e5 +2024-09-11 09:04:03.548894 2024-09-11 09:04:03.5489 aidref 050225146 R rec a07705e7-4e3a-4d10-b2f0-fc6df8fab7d2 +2024-09-11 09:04:03.614947 2024-09-11 09:04:03.614952 aidref 050262645 R rec 15735080-cdaf-4e2a-8b6c-c41b28828122 +2024-09-11 09:04:03.670719 2024-09-11 09:04:03.670725 aidref 050270982 R rec b2722e3b-651a-47ff-af29-88c7385f0c54 +2024-09-11 09:04:03.729557 2024-09-11 09:04:03.729562 aidref 050313800 R rec 74080c3c-a388-4626-9e93-84c4240a4aae +2024-09-11 09:04:03.786185 2024-09-11 09:04:03.78619 aidref 050321692 R rec 67abc43b-9f5a-42c6-9d58-83d5a0ceb60d +2024-09-11 09:04:03.847128 2024-09-11 09:04:03.847133 aidref 050323474 R rec f8eb01f4-5134-4445-b307-bb03aaf9ea35 +2024-09-11 09:04:03.904177 2024-09-11 09:04:03.904183 aidref 050329332 R rec bd550946-5232-4dba-91dd-01f3b8b9b9db +2024-09-11 09:04:04.004878 2024-09-11 09:04:04.004884 aidref 050348736 R rec 083f099b-4a5d-4977-95f0-e57901d810a1 +2024-09-11 09:04:04.084266 2024-09-11 09:04:04.084271 aidref 050593587 R rec 386ac2e0-172e-4155-9925-fcdb1f17bd3c +2024-09-11 09:04:04.161389 2024-09-11 09:04:04.161394 aidref 05066302X R rec f667cae5-67d1-4c2a-b48f-576c5e0e4e22 +2024-09-11 09:04:04.228591 2024-09-11 09:04:04.228596 aidref 050667947 R rec 90371d76-e8f5-472f-86b9-0ebf9b4f2bd1 +2024-09-11 09:04:04.285232 2024-09-11 09:04:04.285237 aidref 050709585 R rec c5741c57-563c-449b-8d82-36c848724095 +2024-09-11 09:04:04.35494 2024-09-11 09:04:04.354946 aidref 050723634 R rec 5021f30f-2222-4296-b53e-397aa84317a7 +2024-09-11 09:04:04.418938 2024-09-11 09:04:04.418944 aidref 050785745 R rec f98d1645-e807-4f41-98d2-3bca3f242e92 +2024-09-11 09:04:04.477307 2024-09-11 09:04:04.477311 aidref 050798928 R rec a81182b9-214e-49cb-9d90-101a8d721e4d +2024-09-11 09:04:04.538261 2024-09-11 09:04:04.538266 aidref 050822551 R rec e833d090-ec5e-49d1-88e4-d4880e033512 +2024-09-11 09:04:04.606902 2024-09-11 09:04:04.606907 aidref 052206327 R rec fcf73824-19c8-45dc-a8e9-220ef9d26859 +2024-09-11 09:04:04.670303 2024-09-11 09:04:04.670308 aidref 052460819 R rec 9625d8d5-1817-48d8-bf85-653b9602abfe +2024-09-11 09:04:04.741746 2024-09-11 09:04:04.741752 aidref 052470911 R rec adf13548-2a26-460d-b083-946d71fbd9e3 +2024-09-11 09:04:04.825097 2024-09-11 09:04:04.825102 aidref 052470989 R rec d02f7eca-7cc7-437f-b149-fa1efec4a41d +2024-09-11 09:04:04.892877 2024-09-11 09:04:04.892883 aidref 052556220 R rec 383aa35d-2104-4630-8a25-8230cd336a9b +2024-09-11 09:04:04.94787 2024-09-11 09:04:04.947874 aidref 052737284 R rec 8de95a41-513f-4292-8e53-fb1012693032 +2024-09-11 09:04:05.007731 2024-09-11 09:04:05.007737 aidref 053434080 R rec e987a93a-e80a-4a80-8eb7-0d6d684a8836 +2024-09-11 09:04:05.078394 2024-09-11 09:04:05.078399 aidref 053500679 R rec ddfc10f3-acbc-49e4-864f-a36766c6bb13 +2024-09-11 09:04:05.144832 2024-09-11 09:04:05.144838 aidref 053516184 R rec c7093526-7b28-44ba-b5dc-9b6e9eb3cad1 +2024-09-11 09:04:05.209353 2024-09-11 09:04:05.209358 aidref 055333893 R rec bf63c2bd-218d-4750-afb0-94f02c0dd185 +2024-09-11 09:04:05.318093 2024-09-11 09:04:05.318098 aidref 055386806 R rec c4ee1503-b1af-48cd-8175-f28b81849360 +2024-09-11 09:04:05.386496 2024-09-11 09:04:05.386501 aidref 056579780 R rec f0f490e0-15ed-4aaa-a96b-f6e22087e60c +2024-09-11 09:04:05.446987 2024-09-11 09:04:05.446992 aidref 056753950 R rec 72ca7cb8-35d3-454f-9adc-917461bde70f +2024-09-11 09:04:05.506387 2024-09-11 09:04:05.506392 aidref 056755759 R rec 34165c19-2ce5-4ea6-9fc5-9a93c18d18f9 +2024-09-11 09:04:05.588468 2024-09-11 09:04:05.58848 aidref 056764073 R rec ebed3979-b031-451b-8081-8a697d14fdf9 +2024-09-11 09:04:05.664128 2024-09-11 09:04:05.664133 aidref 056766378 R rec ff42644f-44f2-484f-a721-25ebabac2bd0 +2024-09-11 09:04:05.728009 2024-09-11 09:04:05.728015 aidref 056810741 R rec d5046aec-4f1c-4a17-905f-6aee36ef455b +2024-09-11 09:04:05.804103 2024-09-11 09:04:05.804109 aidref 056810881 R rec cb036b3f-1050-47d9-995c-587aeb47c6d7 +2024-09-11 09:04:05.871214 2024-09-11 09:04:05.871221 aidref 056820151 R rec 9ccbc535-aee1-40ee-b776-a0a9716328aa +2024-09-11 09:04:05.954348 2024-09-11 09:04:05.954354 aidref 056821840 R rec bb14338d-396e-4b79-a30a-1e1e2d42146f +2024-09-11 09:04:06.039551 2024-09-11 09:04:06.039557 aidref 056844093 R rec 838b18e3-d04a-478b-9fd6-2d6989214893 +2024-09-11 09:04:06.118802 2024-09-11 09:04:06.118808 aidref 056857276 R rec a7e84388-9bc3-4289-b922-d539032a8b42 +2024-09-11 09:04:06.188622 2024-09-11 09:04:06.188633 aidref 056868324 R rec 9d3419f1-7b6c-4628-8549-daf0b94b2331 +2024-09-11 09:04:06.267828 2024-09-11 09:04:06.267834 aidref 056926650 R rec 68543cfb-b330-494f-8485-d30f159af220 +2024-09-11 09:04:06.329931 2024-09-11 09:04:06.329936 aidref 056955669 R rec 1cc69c1b-d80f-46ef-981c-a8abfdd061ec +2024-09-11 09:04:06.399836 2024-09-11 09:04:06.399841 aidref 057030448 R rec a2c26fa9-8216-446e-aeb7-4866a0240721 +2024-09-11 09:04:06.466015 2024-09-11 09:04:06.466021 aidref 057097909 R rec bddfaa6c-83a3-4bf8-94cf-bd2fd03f12bc +2024-09-11 09:04:06.535102 2024-09-11 09:04:06.535109 aidref 057101795 R rec 86319a7b-9793-4fef-8b40-4f0989605670 +2024-09-11 09:04:06.642182 2024-09-11 09:04:06.642188 aidref 057110662 R rec a2a9143d-0dcb-4137-99c9-f7038a3251a9 +2024-09-11 09:04:06.70669 2024-09-11 09:04:06.706695 aidref 057199892 R rec c7c859f1-5139-4948-aaac-9a6238fb1976 +2024-09-11 09:04:06.777085 2024-09-11 09:04:06.77709 aidref 057249660 R rec 8e715290-692f-4b6b-8e16-20083a5f16a1 +2024-09-11 09:04:06.84374 2024-09-11 09:04:06.843745 aidref 057271372 R rec d7a75bcf-539a-491e-bb1b-5cd839124c45 +2024-09-11 09:04:06.90364 2024-09-11 09:04:06.903646 aidref 057329850 R rec 7becc500-34cd-439b-813d-3ebd0e8edef0 +2024-09-11 09:04:06.961092 2024-09-11 09:04:06.961098 aidref 057345627 R rec 25f55739-55ef-41dc-b87f-2053378bbafa +2024-09-11 09:04:07.017347 2024-09-11 09:04:07.017353 aidref 057376719 R rec c62263bd-2f2a-4704-83ee-7cf2a11cca65 +2024-09-11 09:04:07.077567 2024-09-11 09:04:07.077573 aidref 057556474 R rec 85e8ed80-c7a2-48f1-8e43-bec2209a247e +2024-09-11 09:04:07.136057 2024-09-11 09:04:07.136063 aidref 057564647 R rec be0c2f99-2300-4780-8483-5fbac33c55db +2024-09-11 09:04:07.190083 2024-09-11 09:04:07.190088 aidref 057564876 R rec 367498a5-f169-438b-a778-b0199a39ccbc +2024-09-11 09:04:07.259863 2024-09-11 09:04:07.259869 aidref 057687242 R rec 3f57b5f0-6fa7-4fe1-8df9-122eec3c0297 +2024-09-11 09:04:07.326391 2024-09-11 09:04:07.326396 aidref 05769009X R rec f04638dd-b1d9-4bd1-b8b5-49a75a54cb65 +2024-09-11 09:04:07.385388 2024-09-11 09:04:07.385394 aidref 05776171X R rec 3ef47df2-3c2f-449c-961a-b4b58cadabbd +2024-09-11 09:04:07.442171 2024-09-11 09:04:07.442177 aidref 057791511 R rec c238bbb7-2eca-4633-9d75-15f43380dd9c +2024-09-11 09:04:07.504249 2024-09-11 09:04:07.504255 aidref 057941386 R rec 162601bb-869b-4ac0-a2e9-0961aa825309 +2024-09-11 09:04:07.569998 2024-09-11 09:04:07.570004 aidref 058054529 R rec 7e2515a2-60de-4501-913e-5dc570528044 +2024-09-11 09:04:07.629667 2024-09-11 09:04:07.629672 aidref 058114491 R rec e1b2f9db-4bc9-42b6-9919-decb0f67a2cc +2024-09-11 09:04:07.685261 2024-09-11 09:04:07.685266 aidref 058598928 R rec 6fc83d63-ad19-4a72-b0fb-ac441b187e41 +2024-09-11 09:04:07.744791 2024-09-11 09:04:07.744797 aidref 058861998 R rec f542d243-e4fe-4ef7-894b-72ab64d8c63d +2024-09-11 09:04:07.802769 2024-09-11 09:04:07.802774 aidref 058993789 R rec 1d05da61-95f7-4da6-a374-48c9f751bad8 +2024-09-11 09:04:07.858239 2024-09-11 09:04:07.858245 aidref 059051051 R rec e1a78ca1-45ee-4466-9e0e-920c182df87a +2024-09-11 09:04:07.920523 2024-09-11 09:04:07.920529 aidref 059202491 R rec b56a8064-9187-4d63-9a1d-c147701d36a1 +2024-09-11 09:04:07.974974 2024-09-11 09:04:07.97498 aidref 059213523 R rec 44d86021-195f-421a-aede-abc5845485b9 +2024-09-11 09:04:08.043435 2024-09-11 09:04:08.043441 aidref 059412720 R rec 24835594-56ee-494b-8d66-3b7a5689528c +2024-09-11 09:04:08.118613 2024-09-11 09:04:08.118619 aidref 05961398X R rec 89396a81-08d6-47b9-86d3-4e4f6e52ec0c +2024-09-11 09:04:08.188072 2024-09-11 09:04:08.188078 aidref 059742984 R rec 7a0e9a4c-417e-467b-9071-5f9b55a421ef +2024-09-11 09:04:08.24474 2024-09-11 09:04:08.244745 aidref 059774177 R rec eb798edd-cb60-4995-b76a-93041e0dcc66 +2024-09-11 09:04:08.30433 2024-09-11 09:04:08.304335 aidref 059780843 R rec 6d7c272a-7839-4b23-be5e-6ee92ebc565e +2024-09-11 09:04:08.358887 2024-09-11 09:04:08.358893 aidref 059922184 R rec f1a83b54-fd6b-4cb1-bb60-8d47bf417d43 +2024-09-11 09:04:08.415636 2024-09-11 09:04:08.415641 aidref 059943696 R rec 3ca05069-8894-4792-b6da-8e3bf2e5a0e0 +2024-09-11 09:04:08.477471 2024-09-11 09:04:08.477476 aidref 060104406 R rec 9c2f0490-ef26-4c24-9f1f-5682d4bbcfb5 +2024-09-11 09:04:08.538878 2024-09-11 09:04:08.538884 aidref 060167181 R rec ab1cbc0b-971a-4f43-b099-54f98a109c51 +2024-09-11 09:04:08.609243 2024-09-11 09:04:08.609249 aidref 060256982 R rec e341b404-bb43-4434-9060-31e89b3feba7 +2024-09-11 09:04:08.67178 2024-09-11 09:04:08.671786 aidref 060459743 R rec ff920853-7b85-410d-b69b-453fecd4f381 +2024-09-11 09:04:08.731111 2024-09-11 09:04:08.731117 aidref 060721995 R rec c0e10fed-4ac8-4b4d-b84a-677c40bda0be +2024-09-11 09:04:08.799443 2024-09-11 09:04:08.799449 aidref 060722320 R rec ff28a965-0f9c-4465-b867-d687a10e797c +2024-09-11 09:04:08.859234 2024-09-11 09:04:08.859239 aidref 060754435 R rec a3948245-4342-4b5e-a2e7-676ba96ca332 +2024-09-11 09:04:08.920255 2024-09-11 09:04:08.920261 aidref 060756985 R rec c7245dd0-8c74-4020-9544-b805a5d381c3 +2024-09-11 09:04:08.978063 2024-09-11 09:04:08.978069 aidref 060819529 R rec 5e15e737-fcfe-4a96-898e-1097c77867da +2024-09-11 09:04:09.033974 2024-09-11 09:04:09.03398 aidref 060890932 R rec d4f0cdb3-e54a-430c-a7a9-53b2e0f3da1d +2024-09-11 09:04:09.092613 2024-09-11 09:04:09.092618 aidref 061077690 R rec 41d1e696-d3eb-44d3-92d5-acf03ce74ab6 +2024-09-11 09:04:09.148559 2024-09-11 09:04:09.148564 aidref 061113603 R rec bc4363cd-53e4-4b7f-bc94-a17c0b9c4c4a +2024-09-11 09:04:09.205388 2024-09-11 09:04:09.205393 aidref 061131547 R rec 50c2fbc4-03e4-40cb-9802-463a02705369 +2024-09-11 09:04:09.276224 2024-09-11 09:04:09.27623 aidref 061135437 R rec 123c65b0-69c6-4cc5-bf47-77c77c8a6c8f +2024-09-11 09:04:09.342806 2024-09-11 09:04:09.342811 aidref 061190586 R rec c02ce918-c786-4b7c-a1ee-b1195aa16d1a +2024-09-11 09:04:09.406041 2024-09-11 09:04:09.406046 aidref 063876981 R rec 5e48e748-a8d6-4f08-8658-97f2e557f214 +2024-09-11 09:04:09.481625 2024-09-11 09:04:09.481631 aidref 066759099 R rec 805e83d1-f9a2-4a8e-8f69-bcc219dd2d1a +2024-09-11 09:04:09.550641 2024-09-11 09:04:09.550646 aidref 066764602 R rec 99ae7658-c824-4f47-b0b0-459d12a92b81 +2024-09-11 09:04:09.62103 2024-09-11 09:04:09.621036 aidref 066772834 R rec 4af74716-6f64-45c1-9de2-98feb2bfe78b +2024-09-11 09:04:09.682759 2024-09-11 09:04:09.682764 aidref 06685086X R rec 61b4efc6-e216-4652-bdd7-5495644a36ef +2024-09-11 09:04:09.741763 2024-09-11 09:04:09.741768 aidref 066879353 R rec 96a824c4-d808-44a6-839c-e6a49fd38f0f +2024-09-11 09:04:09.796884 2024-09-11 09:04:09.796889 aidref 066897815 R rec ec4c91af-7455-4067-8e12-cb406722256a +2024-09-11 09:04:09.852537 2024-09-11 09:04:09.852543 aidref 066902096 R rec d6805408-5157-492e-8e75-99dfb5a46375 +2024-09-11 09:04:09.912998 2024-09-11 09:04:09.913004 aidref 066986540 R rec 92c548a3-6f22-41db-a1ae-9bf80107a7c2 +2024-09-11 09:04:09.97168 2024-09-11 09:04:09.971684 aidref 066993709 R rec 9754b32b-4ca2-4f98-bca0-3bc2557be3e9 +2024-09-11 09:04:10.026843 2024-09-11 09:04:10.026848 aidref 06703098X R rec ef4cac2e-48bb-4649-8180-9e0e407c4df0 +2024-09-11 09:04:10.088112 2024-09-11 09:04:10.088118 aidref 067042767 R rec 60180755-e2a9-44c8-a169-023d4d5cc96c +2024-09-11 09:04:10.144902 2024-09-11 09:04:10.144908 aidref 067071333 R rec 0b8263e3-cf1c-4ccf-bbbf-698c0a94a393 +2024-09-11 09:04:10.201323 2024-09-11 09:04:10.201329 aidref 067071740 R rec 8b2b4756-ba3f-4ef9-bf27-0861e40e563e +2024-09-11 09:04:10.25925 2024-09-11 09:04:10.259255 aidref 067073204 R rec b6f05f61-e109-41f7-b200-4e3cb1338fc3 +2024-09-11 09:04:10.313898 2024-09-11 09:04:10.313903 aidref 067086055 R rec 0d20c458-4425-44c2-a124-7ba253403252 +2024-09-11 09:04:10.372757 2024-09-11 09:04:10.372762 aidref 067096441 R rec abcd6abc-b6d7-45c4-b07d-dff5cfc948ef +2024-09-11 09:04:10.428472 2024-09-11 09:04:10.428477 aidref 067096824 R rec 9626ddc7-d174-462d-acc8-a3f36958d274 +2024-09-11 09:04:10.486765 2024-09-11 09:04:10.486775 aidref 067174299 R rec c1cc5297-3865-4146-9ec5-d44f4341d3b8 +2024-09-11 09:04:10.553994 2024-09-11 09:04:10.554002 aidref 067181562 R rec 83809ecb-60b1-4635-8281-5c1847c18db6 +2024-09-11 09:04:10.613018 2024-09-11 09:04:10.613024 aidref 067223613 R rec 52228ec6-9804-432d-9034-841a6b93659b +2024-09-11 09:04:10.669721 2024-09-11 09:04:10.669727 aidref 067285716 R rec f9888fd2-b531-474d-897e-bb8e335daa0a +2024-09-11 09:04:10.722917 2024-09-11 09:04:10.722922 aidref 067321666 R rec 4d806ad2-3ecf-4190-b56d-2ed080c34fbb +2024-09-11 09:04:10.778001 2024-09-11 09:04:10.778006 aidref 067345395 R rec 02b9485f-9b97-48e3-8145-50b0bce0cd1e +2024-09-11 09:04:10.835418 2024-09-11 09:04:10.835424 aidref 067692753 R rec 65b19b4d-c546-48cd-8e49-bff5b17ff2e1 +2024-09-11 09:04:10.891712 2024-09-11 09:04:10.891718 aidref 06771496X R rec c751848a-00cc-4e93-a9c1-9016cf3159e5 +2024-09-11 09:04:10.95635 2024-09-11 09:04:10.956355 aidref 067732003 R rec c40fef45-f0db-4937-a9a0-846fac8ed2e4 +2024-09-11 09:04:11.013105 2024-09-11 09:04:11.01311 aidref 068703597 R rec eb009186-137e-47bb-aeb6-3526decf1205 +2024-09-11 09:04:11.072479 2024-09-11 09:04:11.072484 aidref 069064830 R rec 4f076d5e-8bea-4794-bdfa-10f39f382e35 +2024-09-11 09:04:11.138095 2024-09-11 09:04:11.1381 aidref 069116458 R rec 718d1f2c-5838-4ef8-925b-ac51f822c5b8 +2024-09-11 09:04:11.193407 2024-09-11 09:04:11.193412 aidref 069130817 R rec 346dc7d6-f389-4e06-bafc-a0f01c195acf +2024-09-11 09:04:11.247794 2024-09-11 09:04:11.247799 aidref 069148155 R rec 0c4ac84a-5977-462b-8b13-b5e861cfdca0 +2024-09-11 09:04:11.307454 2024-09-11 09:04:11.307459 aidref 06915547X R rec 47557508-cdc8-4d3b-8f57-8e655237260a +2024-09-11 09:04:11.360696 2024-09-11 09:04:11.360702 aidref 069156964 R rec cc2829a4-0871-4b0e-b5ee-c541d5311662 +2024-09-11 09:04:11.414547 2024-09-11 09:04:11.414552 aidref 069265860 R rec 3d960ec6-44f1-450d-95be-01334fc52814 +2024-09-11 09:04:11.473513 2024-09-11 09:04:11.473518 aidref 069379777 R rec 4c6fc80b-03ec-4422-ab19-10568cebdd12 +2024-09-11 09:04:11.527983 2024-09-11 09:04:11.527988 aidref 069487332 R rec 6acd6098-bc41-4402-a329-55e593ac3677 +2024-09-11 09:04:11.591973 2024-09-11 09:04:11.591978 aidref 069679908 R rec b8d464e8-f8d9-4b8e-a189-c47e265cd4a8 +2024-09-11 09:04:11.645044 2024-09-11 09:04:11.645049 aidref 069781524 R rec 367b0763-341d-42d4-91e3-2b7dc783b653 +2024-09-11 09:04:11.704549 2024-09-11 09:04:11.704555 aidref 069782768 R rec 969c0531-e459-4e24-9f62-b97ec982b18e +2024-09-11 09:04:11.781595 2024-09-11 09:04:11.7816 aidref 069843783 R rec 03d3978a-7d90-47d2-b8a2-9dae118c0b5a +2024-09-11 09:04:11.854159 2024-09-11 09:04:11.854164 aidref 069844119 R rec d7c5f40f-2837-4674-98b0-8c1e887f345f +2024-09-11 09:04:11.972046 2024-09-11 09:04:11.972051 aidref 069886687 R rec 74de7083-09b7-4f3a-9c37-9946b089ff28 +2024-09-11 09:04:12.034665 2024-09-11 09:04:12.034671 aidref 070054878 R rec c0d2c1ae-3b8e-4180-a396-6eadab91f0bd +2024-09-11 09:04:12.096066 2024-09-11 09:04:12.096071 aidref 070150737 R rec f7f11adb-7010-427e-aa8a-5b53644bc625 +2024-09-11 09:04:12.155686 2024-09-11 09:04:12.155692 aidref 070160538 R rec 9aaa7965-b2a4-4c8e-a060-0d71e5962378 +2024-09-11 09:04:12.208906 2024-09-11 09:04:12.208911 aidref 070199736 R rec 7e7466b9-e53e-4a3d-b41f-4c9dcf2c15e2 +2024-09-11 09:04:12.272062 2024-09-11 09:04:12.272067 aidref 070328005 R rec e42990f7-2854-4a43-9d36-c93f2b61baa9 +2024-09-11 09:04:12.336734 2024-09-11 09:04:12.33674 aidref 070377510 R rec 3b2e2838-969b-4231-b17c-1c0554e568f3 +2024-09-11 09:04:12.389973 2024-09-11 09:04:12.389978 aidref 070400229 R rec 9526b5fc-a262-4e50-aa14-2e1d2873c3e4 +2024-09-11 09:04:12.441128 2024-09-11 09:04:12.441134 aidref 070478015 R rec 2fef4bf3-78f9-4c3a-b6a4-fc6334dfd489 +2024-09-11 09:04:12.498893 2024-09-11 09:04:12.498898 aidref 070664900 R rec b638edc2-a7c4-4602-a973-7d7104f07696 +2024-09-11 09:04:12.551067 2024-09-11 09:04:12.551072 aidref 070977275 R rec 612fd24d-6853-4327-8fcb-1b9cd0e016a9 +2024-09-11 09:04:12.606065 2024-09-11 09:04:12.60607 aidref 071004092 R rec f1b3c564-0e5c-4b1b-9fdf-f97caca7f839 +2024-09-11 09:04:12.657685 2024-09-11 09:04:12.657691 aidref 07101120X R rec bca78390-6e3e-44eb-9f75-3f3bbe630358 +2024-09-11 09:04:12.722742 2024-09-11 09:04:12.722748 aidref 071088679 R rec d95add17-f860-401c-acc5-93cba1923271 +2024-09-11 09:04:12.785354 2024-09-11 09:04:12.78536 aidref 071120637 R rec 2e849fe6-0b33-4aca-9c9e-5501014bd2d5 +2024-09-11 09:04:12.84 2024-09-11 09:04:12.840005 aidref 071285571 R rec 1080b122-52b4-40ea-a0ff-c488edb46c21 +2024-09-11 09:04:12.900758 2024-09-11 09:04:12.900764 aidref 071324380 R rec 297c6582-f1b3-4699-9a62-65dea2d63622 +2024-09-11 09:04:12.95201 2024-09-11 09:04:12.952016 aidref 071344241 R rec fcaf9ce4-8f18-4671-bd0a-a017616bba6a +2024-09-11 09:04:13.016471 2024-09-11 09:04:13.016477 aidref 071531149 R rec bd242bc8-7144-4ba5-9783-35c20e31330b +2024-09-11 09:04:13.127371 2024-09-11 09:04:13.127376 aidref 071535616 R rec 4079428e-b55a-4b88-985d-c77757f0e7fe +2024-09-11 09:04:13.192175 2024-09-11 09:04:13.19218 aidref 071555994 R rec 03ecf233-77df-4467-b09a-710003293459 +2024-09-11 09:04:13.253034 2024-09-11 09:04:13.25304 aidref 07162080X R rec f7ea4eb5-a005-4626-9183-83bc5f1cc17a +2024-09-11 09:04:13.32524 2024-09-11 09:04:13.325245 aidref 071960651 R rec 9aabc8fa-c98e-4482-8cc0-7349f86e84b0 +2024-09-11 09:04:13.384061 2024-09-11 09:04:13.384066 aidref 072291826 R rec 48e0bd57-a190-491a-b320-9bddef2a70d8 +2024-09-11 09:04:13.444674 2024-09-11 09:04:13.444679 aidref 073256897 R rec 115f61f4-ef69-4d33-a785-684bba51940d +2024-09-11 09:04:13.503578 2024-09-11 09:04:13.503584 aidref 07327822X R rec cc8e1860-6e79-4364-aa48-8d672c484655 +2024-09-11 09:04:13.559697 2024-09-11 09:04:13.559703 aidref 073281794 R rec 0cfc7256-59c8-4315-84ad-40bda83eae3b +2024-09-11 09:04:13.628685 2024-09-11 09:04:13.628691 aidref 07330235X R rec 056a8185-2fd2-4a14-80bc-dd5c1483a095 +2024-09-11 09:04:13.693288 2024-09-11 09:04:13.693293 aidref 073312673 R rec 6ac9eae9-3aee-4e41-984a-5c46ba282017 +2024-09-11 09:04:13.749941 2024-09-11 09:04:13.749947 aidref 073329673 R rec 4c1d7ca2-6584-43b6-bebb-a4004c135804 +2024-09-11 09:04:13.811225 2024-09-11 09:04:13.811237 aidref 073368989 R rec 7e33d734-2fc0-43e8-beb4-087c556664b8 +2024-09-11 09:04:13.871074 2024-09-11 09:04:13.871079 aidref 07338206X R rec 684f3f59-6d44-4c31-8bf9-8f9f04600d6c +2024-09-11 09:04:13.927038 2024-09-11 09:04:13.927043 aidref 073432865 R rec 3c3e5d6d-932d-4abb-9dd3-6693de627eca +2024-09-11 09:04:13.983891 2024-09-11 09:04:13.983897 aidref 073648027 R rec 6d3fde35-9fa8-41e2-81db-31e437260a9c +2024-09-11 09:04:14.044788 2024-09-11 09:04:14.044794 aidref 073673986 R rec 64f47090-44ba-4d66-801e-8e234fb63e88 +2024-09-11 09:04:14.119383 2024-09-11 09:04:14.119389 aidref 073704199 R rec 0a64102f-96a7-458c-a4a3-89d9ed841ac2 +2024-09-11 09:04:14.189035 2024-09-11 09:04:14.18904 aidref 073875724 R rec 11085743-3887-4142-8c39-eb6f0338abd8 +2024-09-11 09:04:14.254968 2024-09-11 09:04:14.254974 aidref 073949183 R rec aef0c8a7-ecf3-45bc-80cf-357754171d65 +2024-09-11 09:04:14.358105 2024-09-11 09:04:14.35811 aidref 074008552 R rec 3f87966b-f8c6-4acb-a2af-16ad80639add +2024-09-11 09:04:14.420084 2024-09-11 09:04:14.420091 aidref 074011278 R rec 7fa9a935-5f00-4653-837c-a6b91f210d09 +2024-09-11 09:04:14.481362 2024-09-11 09:04:14.481367 aidref 074092855 R rec 38e3d149-b90c-4788-b31c-32c19b2301a7 +2024-09-11 09:04:14.550823 2024-09-11 09:04:14.550828 aidref 074110217 R rec f7cb873f-dcfa-4d91-aa62-13f3daa0ae3d +2024-09-11 09:04:14.609292 2024-09-11 09:04:14.609298 aidref 074287680 R rec e20d4ede-e1f9-4782-b179-8df651917a4a +2024-09-11 09:04:14.668982 2024-09-11 09:04:14.668987 aidref 07432389X R rec 8541b180-15d7-4e20-a2c0-02028d46790d +2024-09-11 09:04:14.726806 2024-09-11 09:04:14.726811 aidref 074552996 R rec 11cefe96-c2b2-4a8e-b7c4-121f2f2b15e5 +2024-09-11 09:04:14.784525 2024-09-11 09:04:14.784531 aidref 074594788 R rec cf295d8b-406b-4a58-bef6-be5f6b8438d1 +2024-09-11 09:04:14.844572 2024-09-11 09:04:14.844576 aidref 075029189 R rec ae6dbeb9-d091-4e06-a0f1-de03ebeb827a +2024-09-11 09:04:14.902829 2024-09-11 09:04:14.902835 aidref 07505924X R rec 36c003b1-954e-4034-98a6-299cf339fb37 +2024-09-11 09:04:14.972095 2024-09-11 09:04:14.972101 aidref 075103672 R rec d0aef198-8102-4f87-a44c-1341eeab3e40 +2024-09-11 09:04:15.033826 2024-09-11 09:04:15.033832 aidref 075129094 R rec e031cebd-ddbe-4976-98d0-715e3f159a9b +2024-09-11 09:04:15.093528 2024-09-11 09:04:15.093534 aidref 075134438 R rec c83632da-b4b8-40ba-af4c-e872d200d33b +2024-09-11 09:04:15.157851 2024-09-11 09:04:15.157856 aidref 075146975 R rec 8897e9d5-99a1-48cb-aa2c-a7627f5377ad +2024-09-11 09:04:15.21573 2024-09-11 09:04:15.215735 aidref 075434008 R rec 5e7b75b6-ba36-437a-8b6e-259241d992fc +2024-09-11 09:04:15.271875 2024-09-11 09:04:15.27188 aidref 075435179 R rec fd318cfa-13fd-4855-b1f1-4a547a5257b3 +2024-09-11 09:04:15.328725 2024-09-11 09:04:15.32873 aidref 075612178 R rec cec33042-20fa-4187-8e47-50980f26b9e4 +2024-09-11 09:04:15.388976 2024-09-11 09:04:15.388982 aidref 075690632 R rec 1b5a9d88-dd28-4c0e-8623-40d8d9fd54b1 +2024-09-11 09:04:15.4659 2024-09-11 09:04:15.465906 aidref 075866307 R rec 7ad35398-088f-4789-a0f7-f8a92e1c5eef +2024-09-11 09:04:15.539269 2024-09-11 09:04:15.539274 aidref 075899655 R rec b4574105-b1e7-4f77-85dc-900dde5b5e5f +2024-09-11 09:04:15.616285 2024-09-11 09:04:15.616289 aidref 075912872 R rec 71b2d38b-81e4-4ec1-9569-9cd8a23c2feb +2024-09-11 09:04:15.680355 2024-09-11 09:04:15.68036 aidref 075964686 R rec bc065220-a2cb-48b6-b519-fcaa9f61d2eb +2024-09-11 09:04:15.740406 2024-09-11 09:04:15.74042 aidref 076007316 R rec 158882b2-8755-4371-ac58-a4a03150314d +2024-09-11 09:04:15.82186 2024-09-11 09:04:15.821865 aidref 076054241 R rec b485ab23-cacb-41b2-acd9-e0b8b45c59fb +2024-09-11 09:04:15.906406 2024-09-11 09:04:15.906412 aidref 076340384 R rec d9289108-3e86-4e56-86ca-8a56a14c751b +2024-09-11 09:04:15.960272 2024-09-11 09:04:15.960277 aidref 076418731 R rec ee612839-0c0e-4e73-98a9-081ff5ef713b +2024-09-11 09:04:16.022845 2024-09-11 09:04:16.022851 aidref 076680819 R rec 6f0e316d-aa8f-40c9-9359-ef90169c404f +2024-09-11 09:04:16.090305 2024-09-11 09:04:16.090311 aidref 076709116 R rec 5309d35a-34ac-4771-ae4b-21396080c2ed +2024-09-11 09:04:16.157794 2024-09-11 09:04:16.1578 aidref 076721256 R rec 96adde94-831d-4536-a08b-eeaa5007175c +2024-09-11 09:04:16.232047 2024-09-11 09:04:16.232052 aidref 076752054 R rec 15e8b8da-9b71-475b-89b5-6619a6d1bfaa +2024-09-11 09:04:16.301229 2024-09-11 09:04:16.301235 aidref 076905470 R rec 43b7e260-b603-49a7-8ee8-a61494e5ab36 +2024-09-11 09:04:16.35607 2024-09-11 09:04:16.356075 aidref 076968537 R rec dd59ddbb-3393-4bac-a279-2780edb653c9 +2024-09-11 09:04:16.415291 2024-09-11 09:04:16.415296 aidref 077006453 R rec 41082138-9ab4-42ae-8ed3-8f1053f1ce80 +2024-09-11 09:04:16.491002 2024-09-11 09:04:16.491008 aidref 077053869 R rec 069bb869-7159-465e-9c22-5618216c71db +2024-09-11 09:04:16.572549 2024-09-11 09:04:16.572553 aidref 077119428 R rec 7e0d3763-063e-4e9d-8ed0-45b18cdd4d4a +2024-09-11 09:04:16.627604 2024-09-11 09:04:16.627609 aidref 077143043 R rec bd0fbbdc-f891-4d27-a4d7-f5728b64d6f9 +2024-09-11 09:04:16.68543 2024-09-11 09:04:16.685435 aidref 077162617 R rec 1bdc7967-9eed-46e6-a3df-975c5bc58449 +2024-09-11 09:04:16.744705 2024-09-11 09:04:16.744711 aidref 077335996 R rec c7bc69c6-f771-443f-9faa-cef08749ced1 +2024-09-11 09:04:16.803708 2024-09-11 09:04:16.803713 aidref 07733826X R rec 7606f697-d068-4472-b0ee-9b05b43345b2 +2024-09-11 09:04:16.862346 2024-09-11 09:04:16.862352 aidref 077342097 R rec 69227c7c-2b66-4c40-a3b9-3ba89f89c985 +2024-09-11 09:04:16.91878 2024-09-11 09:04:16.918787 aidref 07741084X R rec 8c5108bd-5348-4373-be2d-1f2d33c6777a +2024-09-11 09:04:16.974543 2024-09-11 09:04:16.974549 aidref 077437209 R rec d6249c99-6120-4dfd-8f64-2d13cdffbb4e +2024-09-11 09:04:17.03744 2024-09-11 09:04:17.037445 aidref 077446534 R rec 46d197d2-714a-4f5a-a52f-9c188ba97853 +2024-09-11 09:04:17.099652 2024-09-11 09:04:17.099658 aidref 07750528X R rec 87646b08-fd06-4d3a-9c82-12994dfafe47 +2024-09-11 09:04:17.180836 2024-09-11 09:04:17.180842 aidref 077763009 R rec d49939f4-a0f9-488b-a213-45a0b29eead6 +2024-09-11 09:04:17.251943 2024-09-11 09:04:17.251948 aidref 077775430 R rec a9ef4cd3-71e5-4dcb-be92-a85b8bceb019 +2024-09-11 09:04:17.314655 2024-09-11 09:04:17.31466 aidref 077813138 R rec 1afa32c1-e4c9-4202-b3c2-5d9875a489f2 +2024-09-11 09:04:17.375588 2024-09-11 09:04:17.375594 aidref 078038766 R rec 324d7676-963d-4846-a4d4-b4f0bdc1c49c +2024-09-11 09:04:17.431172 2024-09-11 09:04:17.431178 aidref 078054982 R rec 4db2b0d9-05a9-450a-b84d-0f60098bc1e0 +2024-09-11 09:04:17.509097 2024-09-11 09:04:17.509102 aidref 078075467 R rec e9e6187a-411e-4a58-8999-59468d2b82f5 +2024-09-11 09:04:17.566988 2024-09-11 09:04:17.566993 aidref 078076641 R rec 3a852e44-2e9d-479b-89f7-cc78bb8d56e0 +2024-09-11 09:04:17.633544 2024-09-11 09:04:17.633549 aidref 078079330 R rec 56ae2bc4-89d8-4f07-9059-841ef72ea9d5 +2024-09-11 09:04:17.689276 2024-09-11 09:04:17.689281 aidref 078118948 R rec 69aa4d76-0f48-4072-9bee-dbcc6c065086 +2024-09-11 09:04:17.747743 2024-09-11 09:04:17.747748 aidref 078185556 R rec 46a6326c-f8d1-497f-ac8e-719bd19e612c +2024-09-11 09:04:17.80912 2024-09-11 09:04:17.809125 aidref 078607078 R rec 38162447-cf0d-4f13-929f-9ee545f2e033 +2024-09-11 09:04:17.879014 2024-09-11 09:04:17.879019 aidref 078619505 R rec de81227d-1fd4-4126-9bed-066c2f048af9 +2024-09-11 09:04:17.93895 2024-09-11 09:04:17.938955 aidref 078640997 R rec 42cc9252-4775-4305-9ccb-04611e6d5363 +2024-09-11 09:04:18.006127 2024-09-11 09:04:18.006133 aidref 078763487 R rec b8c414f1-9d78-402a-9b48-6286576c020f +2024-09-11 09:04:18.063866 2024-09-11 09:04:18.063872 aidref 078835089 R rec db9fa1dd-47e4-4a80-babf-19472da189a4 +2024-09-11 09:04:18.123987 2024-09-11 09:04:18.123992 aidref 078835186 R rec 98d8de0c-cd2b-43f1-86c2-2666bfe55112 +2024-09-11 09:04:18.202664 2024-09-11 09:04:18.20267 aidref 079020933 R rec 7ad0da95-cf29-49b2-9a95-54f3e4723e53 +2024-09-11 09:04:18.268857 2024-09-11 09:04:18.268863 aidref 07904011X R rec d78447f7-4655-4a5b-8028-85b590e86aa1 +2024-09-11 09:04:18.329381 2024-09-11 09:04:18.329385 aidref 079112943 R rec ff187504-c958-409c-83a3-429c9ad160ad +2024-09-11 09:04:18.393544 2024-09-11 09:04:18.393549 aidref 079151639 R rec 7db086d8-c7ae-4f75-9333-16a5ff81822d +2024-09-11 09:04:18.449691 2024-09-11 09:04:18.449695 aidref 079157106 R rec fe23a167-b327-47e5-9d08-7bcbf99da971 +2024-09-11 09:04:18.52003 2024-09-11 09:04:18.52004 aidref 07925814X R rec fbdcd793-d963-4e26-95c1-33715754bfd2 +2024-09-11 09:04:18.577199 2024-09-11 09:04:18.577204 aidref 079303315 R rec 52426b04-9781-4f6b-a2f3-709bac828e9b +2024-09-11 09:04:18.637139 2024-09-11 09:04:18.637144 aidref 079436870 R rec 29b87d6b-b715-4808-b0f2-7506d60c99e0 +2024-09-11 09:04:18.698893 2024-09-11 09:04:18.698899 aidref 07948901X R rec 0e83a784-b84e-46d9-b5cc-39f5e52c7c0c +2024-09-11 09:04:18.769558 2024-09-11 09:04:18.769564 aidref 079506151 R rec 5605f4d8-4506-4409-8f65-e5121aa43073 +2024-09-11 09:04:18.840262 2024-09-11 09:04:18.840267 aidref 079550746 R rec 3eabc19a-9115-401a-8331-81a3add8033a +2024-09-11 09:04:18.898657 2024-09-11 09:04:18.898663 aidref 079890849 R rec 1ac44886-d129-4c14-a983-b512d5ff6b8f +2024-09-11 09:04:18.962432 2024-09-11 09:04:18.962437 aidref 07992056X R rec c842dccd-31e8-4cce-bdc8-97bde70737a7 +2024-09-11 09:04:19.016627 2024-09-11 09:04:19.016632 aidref 080088325 R rec 34490718-e876-4f9d-ba3c-fe8d9aaac393 +2024-09-11 09:04:19.075506 2024-09-11 09:04:19.075511 aidref 080102859 R rec 4838d6a5-5599-47b6-b92b-709b5e5769e9 +2024-09-11 09:04:19.146023 2024-09-11 09:04:19.146028 aidref 08013484X R rec 26d954a0-4cc5-454e-92c5-26eb4ccf803a +2024-09-11 09:04:19.204165 2024-09-11 09:04:19.204169 aidref 080152503 R rec de8f638f-2096-4616-ad83-33b0f70803b6 +2024-09-11 09:04:19.266019 2024-09-11 09:04:19.266024 aidref 080164994 R rec 29cfb3f7-ae3f-4059-a971-3d06c85319ce +2024-09-11 09:04:19.322982 2024-09-11 09:04:19.322987 aidref 08018734X R rec 456cb0f2-c5e1-4f6a-bf4f-69c1757d478a +2024-09-11 09:04:19.376318 2024-09-11 09:04:19.376323 aidref 080307426 R rec 44e59529-912b-4099-b459-4d5ced76c5f9 +2024-09-11 09:04:19.436394 2024-09-11 09:04:19.436399 aidref 080487238 R rec a0b45784-2154-47f6-b0e0-f2737fe0f9ba +2024-09-11 09:04:19.50912 2024-09-11 09:04:19.509125 aidref 080529712 R rec fcd9d088-c1bb-4849-b63a-2e7f3e134804 +2024-09-11 09:04:19.57039 2024-09-11 09:04:19.570394 aidref 080557732 R rec e3c93d46-3348-4e0f-9f4f-deabc9351e86 +2024-09-11 09:04:19.626442 2024-09-11 09:04:19.626446 aidref 080577350 R rec 22704d1e-acb8-477c-886f-8fe5d0fcfa1e +2024-09-11 09:04:19.683018 2024-09-11 09:04:19.683023 aidref 080596649 R rec 4b07a3a2-4515-4b30-9a3e-8ec986cf60d3 +2024-09-11 09:04:19.740508 2024-09-11 09:04:19.740512 aidref 080608825 R rec c2ef274e-ab6a-4fef-a57c-d24b962853ba +2024-09-11 09:04:19.808206 2024-09-11 09:04:19.808212 aidref 080622151 R rec c734a135-6149-428a-8d86-93b28df7b67e +2024-09-11 09:04:19.884398 2024-09-11 09:04:19.884403 aidref 080641024 R rec 32ff702d-ed57-4a69-9daa-b78a6ad3337a +2024-09-11 09:04:19.962017 2024-09-11 09:04:19.962023 aidref 080647359 R rec d2f5747f-d14d-4f30-86d8-37d89c773141 +2024-09-11 09:04:20.018715 2024-09-11 09:04:20.018723 aidref 080678971 R rec 8c7cf3ef-1d81-4d61-8775-a2df47b396c9 +2024-09-11 09:04:20.078091 2024-09-11 09:04:20.078097 aidref 080683851 R rec 88d45204-5788-48e0-948c-eb2f5f4e30ad +2024-09-11 09:04:20.142425 2024-09-11 09:04:20.14243 aidref 080722555 R rec db02600f-a04c-4cf8-bbc8-5d1b6e71886f +2024-09-11 09:04:20.198633 2024-09-11 09:04:20.198638 aidref 080824072 R rec a01eec00-4886-4fba-808f-6d99a61f71f8 +2024-09-11 09:04:20.259452 2024-09-11 09:04:20.259458 aidref 080923690 R rec 4dc4d75c-2277-4ded-aa3f-bde489def46e +2024-09-11 09:04:20.330971 2024-09-11 09:04:20.330977 aidref 081103131 R rec c40d4ce4-fc8e-41d2-a7f9-d4aaf4279547 +2024-09-11 09:04:20.402464 2024-09-11 09:04:20.402469 aidref 081199392 R rec 837ab626-4c3a-400d-a435-5364f4cecfc3 +2024-09-11 09:04:20.462817 2024-09-11 09:04:20.462823 aidref 081232683 R rec 98876df9-e841-4759-a941-a738a39e5674 +2024-09-11 09:04:20.526257 2024-09-11 09:04:20.526262 aidref 081271395 R rec 7d57391e-bb81-4736-9f84-d5032d7befd9 +2024-09-11 09:04:20.580834 2024-09-11 09:04:20.580838 aidref 081311249 R rec d45e76f4-4494-4bad-a95b-d91ba3fc6e85 +2024-09-11 09:04:20.642221 2024-09-11 09:04:20.642226 aidref 081402880 R rec f1dfe589-6cbb-4785-836b-ae1710732af2 +2024-09-11 09:04:20.699209 2024-09-11 09:04:20.699214 aidref 081435827 R rec 6c24038c-d465-48e5-90c7-3fbfb8f1ede2 +2024-09-11 09:04:20.75637 2024-09-11 09:04:20.756375 aidref 081436351 R rec 9bf54359-ac3e-4a5b-9fbe-d9b439029cb8 +2024-09-11 09:04:20.816928 2024-09-11 09:04:20.816934 aidref 08147475X R rec 91ce4c95-3958-453b-8d6c-e235d6e1ad8f +2024-09-11 09:04:20.897415 2024-09-11 09:04:20.897422 aidref 081544693 R rec f9d8b293-d99f-40b3-afb1-4a75384dc032 +2024-09-11 09:04:20.954473 2024-09-11 09:04:20.95448 aidref 081600356 R rec 6ec75a8f-07b1-4c76-9689-cc00dfd97eb7 +2024-09-11 09:04:21.011024 2024-09-11 09:04:21.01103 aidref 081609558 R rec 6ae32788-e0d1-4c6f-a1cf-f5dea8693034 +2024-09-11 09:04:21.083206 2024-09-11 09:04:21.083211 aidref 081719752 R rec 38699dbb-7ae2-4200-a31c-a856a0161fc0 +2024-09-11 09:04:21.147789 2024-09-11 09:04:21.147795 aidref 081801793 R rec bc129d11-3273-4aca-b8bd-7fdfcec08dd1 +2024-09-11 09:04:21.218246 2024-09-11 09:04:21.218252 aidref 081895046 R rec c73c5e35-7197-4717-8832-827519d994d3 +2024-09-11 09:04:21.284761 2024-09-11 09:04:21.284766 aidref 082025398 R rec 47877db4-975b-4ac1-b5dc-c51227e5b3fe +2024-09-11 09:04:21.354837 2024-09-11 09:04:21.354842 aidref 082057826 R rec 51b94cad-e02d-407d-b9f8-8a5cafcc4182 +2024-09-11 09:04:21.410656 2024-09-11 09:04:21.410662 aidref 082085072 R rec 5d011410-f9fe-4bf2-845a-656a0d2318f0 +2024-09-11 09:04:21.470219 2024-09-11 09:04:21.470224 aidref 082091943 R rec 37629935-1301-40b0-9340-35a43236f1d4 +2024-09-11 09:04:21.539977 2024-09-11 09:04:21.539982 aidref 082116008 R rec f1aeddfb-0690-46ef-877a-c297f34bb978 +2024-09-11 09:04:21.597963 2024-09-11 09:04:21.597969 aidref 082333173 R rec 10acbc04-9f51-474f-a574-c23160b102a5 +2024-09-11 09:04:21.654541 2024-09-11 09:04:21.654549 aidref 082560757 R rec ff711ebf-a114-444c-a6df-31949c17c9bb +2024-09-11 09:04:21.722476 2024-09-11 09:04:21.722481 aidref 082609675 R rec 37256327-2e2e-4ca1-9247-52a5b948f9c8 +2024-09-11 09:04:21.780766 2024-09-11 09:04:21.780772 aidref 082702446 R rec c4be5313-7d7d-4e74-8ad9-9d90a95d6ca5 +2024-09-11 09:04:21.837143 2024-09-11 09:04:21.837147 aidref 083069119 R rec 25b98770-6db6-46d4-9728-63bd68660b30 +2024-09-11 09:04:21.904019 2024-09-11 09:04:21.904024 aidref 083194037 R rec f40d6983-bf23-4c32-9b1e-68c4ffabc77e +2024-09-11 09:04:21.96361 2024-09-11 09:04:21.963617 aidref 083221689 R rec 52a57fbc-ecd5-4edf-a6e5-3cae6eff93da +2024-09-11 09:04:22.022878 2024-09-11 09:04:22.022883 aidref 083252819 R rec 0d88ff82-db05-4c54-bae3-8d26eb7fb5d6 +2024-09-11 09:04:22.082818 2024-09-11 09:04:22.082822 aidref 083373365 R rec 10665929-1639-487c-9de4-1de020578c3b +2024-09-11 09:04:22.150682 2024-09-11 09:04:22.150688 aidref 083467815 R rec 577c0051-ff8d-475e-8c5e-1a8f28f0cdd2 +2024-09-11 09:04:22.215163 2024-09-11 09:04:22.215169 aidref 083488790 R rec f38334e5-e7e4-4e3c-ac74-7b5fecaf2035 +2024-09-11 09:04:22.273422 2024-09-11 09:04:22.273427 aidref 083493778 R rec a35de557-951e-4bbc-863f-03004c2e57fa +2024-09-11 09:04:22.334209 2024-09-11 09:04:22.334215 aidref 083553843 R rec f19e83e8-e42f-4b27-80a7-02f9ef297b3e +2024-09-11 09:04:22.404739 2024-09-11 09:04:22.404744 aidref 083568077 R rec 8fa9e077-cc05-4fba-a5c8-453a969f3964 +2024-09-11 09:04:22.461183 2024-09-11 09:04:22.461189 aidref 083580522 R rec 2ee4a6b8-8e29-490c-b039-8fd80a81656f +2024-09-11 09:04:22.531073 2024-09-11 09:04:22.531078 aidref 083680683 R rec 214b71c7-98d0-40c1-8f63-ac2765076dd4 +2024-09-11 09:04:22.587803 2024-09-11 09:04:22.587808 aidref 083712941 R rec c3f5bc61-a431-4f0f-949e-1a1d076dcedd +2024-09-11 09:04:22.646958 2024-09-11 09:04:22.646963 aidref 083715789 R rec 953226d6-cf1a-47f2-8741-86e1dcf233e7 +2024-09-11 09:04:22.702074 2024-09-11 09:04:22.702079 aidref 083726861 R rec fb737661-34f7-40e6-87d6-96aee45b8b84 +2024-09-11 09:04:22.757966 2024-09-11 09:04:22.757972 aidref 083737499 R rec d9759dd0-33b0-4a96-a2be-988915ffa3f7 +2024-09-11 09:04:22.81756 2024-09-11 09:04:22.817565 aidref 083767827 R rec 6695c556-19e6-40ba-bd5d-7cc7d2b0abe9 +2024-09-11 09:04:22.874722 2024-09-11 09:04:22.874728 aidref 083843361 R rec 346a0176-c1cb-4cbe-98e8-02d8b9fc6bab +2024-09-11 09:04:22.936173 2024-09-11 09:04:22.936179 aidref 083843981 R rec 6c8d7dd0-5d41-4e5b-9efb-87d482f31475 +2024-09-11 09:04:22.991219 2024-09-11 09:04:22.991225 aidref 083885463 R rec d71b1222-82cb-4fa0-8cb9-6186cad5c438 +2024-09-11 09:04:23.053251 2024-09-11 09:04:23.053256 aidref 083928715 R rec 7fcc5b39-bb94-4a26-a299-34f27b9bcd11 +2024-09-11 09:04:23.115863 2024-09-11 09:04:23.115868 aidref 083961488 R rec b2bb65cb-9802-4daa-945b-0ca4a39af005 +2024-09-11 09:04:23.178755 2024-09-11 09:04:23.178761 aidref 083970592 R rec 77075ca4-1771-418a-b28c-0e90a91456f4 +2024-09-11 09:04:23.238947 2024-09-11 09:04:23.238952 aidref 084028750 R rec f64993de-74d7-4218-9d7e-88f5d0d340f1 +2024-09-11 09:04:23.300678 2024-09-11 09:04:23.300683 aidref 084029463 R rec 8689fb08-a60b-4ab3-9635-6759cb995989 +2024-09-11 09:04:23.359162 2024-09-11 09:04:23.359168 aidref 084037407 R rec 85c52822-afa2-450f-bd66-3862b47f15fa +2024-09-11 09:04:23.434364 2024-09-11 09:04:23.434369 aidref 084062320 R rec 685f0d69-784f-4c3b-8528-dfd6c64b0a52 +2024-09-11 09:04:23.50538 2024-09-11 09:04:23.505386 aidref 084074752 R rec e01c711b-468e-4a2d-bcee-4e50be44a3ae +2024-09-11 09:04:23.590215 2024-09-11 09:04:23.59022 aidref 084147385 R rec 2d2471f4-c2ff-4208-974c-5e697b828692 +2024-09-11 09:04:23.676605 2024-09-11 09:04:23.67661 aidref 084324856 R rec b6faa109-4dd2-4675-8336-4aa11f4d2641 +2024-09-11 09:04:23.734842 2024-09-11 09:04:23.734847 aidref 08433293X R rec bcad93aa-a1cd-46a0-8810-edb69082b1dc +2024-09-11 09:04:23.790902 2024-09-11 09:04:23.790907 aidref 084346450 R rec 6c64da9c-f360-4aec-8257-6c0ce1c96508 +2024-09-11 09:04:23.851657 2024-09-11 09:04:23.851663 aidref 084531029 R rec b4f4c3c5-945b-418c-92d5-8d6cebd3b3ec +2024-09-11 09:04:23.915076 2024-09-11 09:04:23.915081 aidref 084675810 R rec 5f134eb8-1756-4e6b-ba94-591bf1915e61 +2024-09-11 09:04:23.986429 2024-09-11 09:04:23.986436 aidref 084728949 R rec 73f2d00a-40e5-431d-b518-6dd70ce5e7b6 +2024-09-11 09:04:24.044591 2024-09-11 09:04:24.044596 aidref 085001392 R rec 570be6fd-e15c-40c4-aead-40340d571ffb +2024-09-11 09:04:24.102292 2024-09-11 09:04:24.102296 aidref 085232629 R rec 75fbbe08-75c1-4ab9-827e-6ab2e5231de8 +2024-09-11 09:04:24.163266 2024-09-11 09:04:24.163271 aidref 085232815 R rec 42019fe2-98ae-444f-b7db-9df5ae2a29c0 +2024-09-11 09:04:24.225623 2024-09-11 09:04:24.225629 aidref 085535621 R rec 7185ce5f-dd42-452c-b333-7bdf2ef62e41 +2024-09-11 09:04:24.320875 2024-09-11 09:04:24.32088 aidref 085598143 R rec 7b34b1d3-7b00-4f53-be6c-c4e269a61515 +2024-09-11 09:04:24.386577 2024-09-11 09:04:24.386583 aidref 085617598 R rec 9516f005-9ca0-4344-9a73-8de691fe6a5c +2024-09-11 09:04:24.444594 2024-09-11 09:04:24.444599 aidref 085647640 R rec 801a9112-80a2-4c00-bf41-d028055f8e90 +2024-09-11 09:04:24.526719 2024-09-11 09:04:24.526725 aidref 085731390 R rec ff19886d-9a34-4acb-8628-5f4ebc8b680f +2024-09-11 09:04:24.594205 2024-09-11 09:04:24.59421 aidref 085825069 R rec 43199a47-f147-4ef3-b531-7473c3e26617 +2024-09-11 09:04:24.661397 2024-09-11 09:04:24.661403 aidref 085826367 R rec d4a94f43-0c54-488e-b9aa-a54f61a69dfb +2024-09-11 09:04:24.721454 2024-09-11 09:04:24.72146 aidref 085835943 R rec 1752df38-92a3-41b7-b05c-cc3d051ec277 +2024-09-11 09:04:24.779378 2024-09-11 09:04:24.779383 aidref 085856525 R rec 9f044ac3-26ee-46d8-8cd4-bd07952fd271 +2024-09-11 09:04:24.838687 2024-09-11 09:04:24.838692 aidref 08589320X R rec 6d592d54-ec80-4fc6-ac1b-0b9d839fe22d +2024-09-11 09:04:24.92183 2024-09-11 09:04:24.921836 aidref 086019740 R rec c2636c71-45e9-4ad9-9d85-8a79225e568f +2024-09-11 09:04:24.977912 2024-09-11 09:04:24.977918 aidref 086021311 R rec de39ef29-275b-490b-ac3b-9911be2b6d2d +2024-09-11 09:04:25.034879 2024-09-11 09:04:25.034883 aidref 08602308X R rec 674ba655-9fce-4291-884a-23fd59efcaeb +2024-09-11 09:04:25.091757 2024-09-11 09:04:25.091763 aidref 086069527 R rec 2872048e-d33e-4f56-92bc-f7e2254445ff +2024-09-11 09:04:25.148634 2024-09-11 09:04:25.148638 aidref 086069888 R rec c8244f18-a91f-4366-a968-b6d0db5124df +2024-09-11 09:04:25.211232 2024-09-11 09:04:25.211237 aidref 08608416X R rec 789ab55d-e65a-4cf1-91d3-e626d124ac76 +2024-09-11 09:04:25.266778 2024-09-11 09:04:25.266784 aidref 086094602 R rec c86f42ed-9e27-49fe-9d39-c0f7a6d6e787 +2024-09-11 09:04:25.328012 2024-09-11 09:04:25.328017 aidref 086124641 R rec 38a447e1-f147-4145-91b9-ece7515349f3 +2024-09-11 09:04:25.383641 2024-09-11 09:04:25.383646 aidref 086139096 R rec 10f7699a-e27f-4b9c-bdbb-0f597e315d90 +2024-09-11 09:04:25.442702 2024-09-11 09:04:25.442706 aidref 086168312 R rec 71778a35-47e8-4db9-98cb-1800bf6aa987 +2024-09-11 09:04:25.503138 2024-09-11 09:04:25.503143 aidref 086232827 R rec 92d99b19-a834-449e-8d39-1c029853dcd2 +2024-09-11 09:04:25.568908 2024-09-11 09:04:25.568913 aidref 086845659 R rec f1e2755c-d084-4844-8819-65174df2895a +2024-09-11 09:04:25.638157 2024-09-11 09:04:25.638163 aidref 086849786 R rec f87e1a75-bfdb-4d90-9e3d-a35436519b79 +2024-09-11 09:04:25.707185 2024-09-11 09:04:25.70719 aidref 087190087 R rec 9271a701-cad7-4f7f-bd32-190c1aa1e9f5 +2024-09-11 09:04:25.762809 2024-09-11 09:04:25.762815 aidref 087239981 R rec 9f4fe3db-a680-469d-9ecb-5c870810257b +2024-09-11 09:04:25.834279 2024-09-11 09:04:25.834285 aidref 087402467 R rec 4eaee51a-9fc3-4219-8558-8df9d47ee865 +2024-09-11 09:04:25.900849 2024-09-11 09:04:25.900854 aidref 087470659 R rec b26af892-6ddb-4b03-9c85-148ca947aa0a +2024-09-11 09:04:25.968881 2024-09-11 09:04:25.968886 aidref 087504146 R rec 4db70b95-bbc0-4124-9d4a-6f851bf7caed +2024-09-11 09:04:26.028116 2024-09-11 09:04:26.028121 aidref 087535300 R rec b8f1a4d2-d21f-4a7d-8e02-a750ca005a6c +2024-09-11 09:04:26.095851 2024-09-11 09:04:26.095856 aidref 087635585 R rec 29cd8318-d632-4d73-b1a5-bcba3837ee6d +2024-09-11 09:04:26.152851 2024-09-11 09:04:26.152856 aidref 087649535 R rec fc754548-e94a-449b-9e19-b55716e69088 +2024-09-11 09:04:26.214192 2024-09-11 09:04:26.214197 aidref 087823535 R rec 789929ad-4e27-4f9a-84b7-fe424613fd93 +2024-09-11 09:04:26.281015 2024-09-11 09:04:26.28102 aidref 087958686 R rec 40f27ba4-882e-4e50-b872-277cf8a99742 +2024-09-11 09:04:26.341012 2024-09-11 09:04:26.341018 aidref 088014029 R rec 640608f0-45c9-4b74-bd64-8c8958b4b89e +2024-09-11 09:04:26.406487 2024-09-11 09:04:26.406491 aidref 088042944 R rec 9f8f5c8d-dbda-478d-993a-7858a508a7f8 +2024-09-11 09:04:26.46294 2024-09-11 09:04:26.462945 aidref 088082776 R rec a57b05e4-7bc9-4d32-8d6d-fd133fb29c82 +2024-09-11 09:04:26.519991 2024-09-11 09:04:26.519997 aidref 088088944 R rec 9963cec4-62f9-4e1d-9feb-8bbe1951859a +2024-09-11 09:04:26.57837 2024-09-11 09:04:26.578375 aidref 088106926 R rec efd968bd-2963-4dcf-bf56-b10183aeb8bf +2024-09-11 09:04:26.64085 2024-09-11 09:04:26.640856 aidref 088397599 R rec 884ffad6-f46f-4ee0-914f-2c43f11db6e6 +2024-09-11 09:04:26.701907 2024-09-11 09:04:26.701912 aidref 088404587 R rec 58f2a606-70cd-4123-9a51-37c54127b0ce +2024-09-11 09:04:26.77477 2024-09-11 09:04:26.774775 aidref 088453022 R rec a2113958-387c-47ed-b93e-b3784b64d7aa +2024-09-11 09:04:26.831276 2024-09-11 09:04:26.831282 aidref 088540235 R rec 6fd59ad0-83dc-4dc6-afeb-ca9746ccee99 +2024-09-11 09:04:26.887479 2024-09-11 09:04:26.887485 aidref 08870078X R rec ee46ffd6-c974-4162-b2a6-849f2ab1155b +2024-09-11 09:04:26.939219 2024-09-11 09:04:26.939224 aidref 08871246X R rec d15fc872-6f67-4e58-9af9-aea561a52638 +2024-09-11 09:04:26.993831 2024-09-11 09:04:26.993836 aidref 08875975X R rec 67f9aee4-cd15-4e4c-b7f1-f2ff65e7be88 +2024-09-11 09:04:27.045965 2024-09-11 09:04:27.04597 aidref 08880058X R rec e602356b-ebf0-477c-8ad1-397f64d91f48 +2024-09-11 09:04:27.096496 2024-09-11 09:04:27.096501 aidref 088888177 R rec 022c311e-e99d-479b-ba9d-9ed8990d7938 +2024-09-11 09:04:27.149355 2024-09-11 09:04:27.149363 aidref 088920763 R rec a697eaef-4a5d-451d-908d-58e8066d6867 +2024-09-11 09:04:27.204118 2024-09-11 09:04:27.204124 aidref 088945332 R rec d65696da-41db-4626-89f7-5c9b6a2385ef +2024-09-11 09:04:27.25669 2024-09-11 09:04:27.256704 aidref 088984141 R rec 8bbc8201-3b23-4bee-8146-e14e3542cd45 +2024-09-11 09:04:27.310539 2024-09-11 09:04:27.310545 aidref 088997464 R rec 45fcf158-9142-4dd1-a2b8-8f66e3cc4050 +2024-09-11 09:04:27.402571 2024-09-11 09:04:27.402576 aidref 089425596 R rec 2e6542a7-aea8-4dd7-871c-d457af7e9040 +2024-09-11 09:04:27.456252 2024-09-11 09:04:27.456257 aidref 089443675 R rec 80476b74-3a75-4d74-bb63-06c2274fcf5e +2024-09-11 09:04:27.517141 2024-09-11 09:04:27.517147 aidref 090159225 R rec 80b06ca7-80c2-419b-9023-8bd9e59681d7 +2024-09-11 09:04:27.575974 2024-09-11 09:04:27.57598 aidref 09042333X R rec 3410f45a-ba8e-4947-a75d-0a65352986e3 +2024-09-11 09:04:27.643365 2024-09-11 09:04:27.64337 aidref 091257174 R rec 51ce41a5-37ad-4579-b435-7a097386ed89 +2024-09-11 09:04:27.698511 2024-09-11 09:04:27.698517 aidref 091546230 R rec c750528d-bc78-4478-a039-56a5c5db8472 +2024-09-11 09:04:27.752135 2024-09-11 09:04:27.752141 aidref 092002781 R rec ca83ef2a-d3c6-4583-839e-d40ac76b23ac +2024-09-11 09:04:27.804552 2024-09-11 09:04:27.804557 aidref 092098649 R rec 0f58e904-5d17-4798-b111-e328e2c266ab +2024-09-11 09:04:27.858773 2024-09-11 09:04:27.858779 aidref 092124356 R rec 90a0b00f-75e1-4c53-a675-a99814f67951 +2024-09-11 09:04:27.918405 2024-09-11 09:04:27.91841 aidref 092149561 R rec 8dd92bd4-3644-43b1-9c36-15afc997d323 +2024-09-11 09:04:27.96931 2024-09-11 09:04:27.969315 aidref 092241549 R rec 41681a83-2836-440a-8bb6-3254c19f8c54 +2024-09-11 09:04:28.025094 2024-09-11 09:04:28.025099 aidref 092249760 R rec 1bb7609f-a430-466f-aff1-ff25f25f770d +2024-09-11 09:04:28.077623 2024-09-11 09:04:28.077628 aidref 092359116 R rec 8d15ab9e-8796-4ff3-ada5-bf5750642214 +2024-09-11 09:04:28.139014 2024-09-11 09:04:28.139019 aidref 092613314 R rec b45d4ba1-fc79-4434-b2c0-d1085a9e116f +2024-09-11 09:04:28.199724 2024-09-11 09:04:28.199729 aidref 092699987 R rec 47c8092b-4a5c-49e0-b37f-44a8c4685218 +2024-09-11 09:04:28.252439 2024-09-11 09:04:28.252445 aidref 092726542 R rec 15c0a812-b4ad-4ee4-8bf8-0603d5686e56 +2024-09-11 09:04:28.306019 2024-09-11 09:04:28.306025 aidref 092792642 R rec 2e86296d-47ac-4cbb-bec0-4bf89898c2b5 +2024-09-11 09:04:28.360442 2024-09-11 09:04:28.360447 aidref 092846653 R rec 5ad9761f-e053-4f8a-86bc-00baf7aae37d +2024-09-11 09:04:28.417608 2024-09-11 09:04:28.417613 aidref 093834470 R rec b98ca39b-2db8-478e-8c90-be30e9a9e8a5 +2024-09-11 09:04:28.471942 2024-09-11 09:04:28.471947 aidref 09396997X R rec f18033d8-efb6-47bd-9393-75cf87276fa4 +2024-09-11 09:04:28.52731 2024-09-11 09:04:28.527316 aidref 094133344 R rec 42be478a-3501-4898-94d0-51531d9dcec5 +2024-09-11 09:04:28.588942 2024-09-11 09:04:28.588949 aidref 094225230 R rec e418f4f6-e0da-4220-b412-e0b7c6e60095 +2024-09-11 09:04:28.642512 2024-09-11 09:04:28.642517 aidref 09433434X R rec 57cf6bf4-c949-46af-b54b-e676bbac4b60 +2024-09-11 09:04:28.698756 2024-09-11 09:04:28.698761 aidref 094460922 R rec 76689de2-cc56-4f4d-9c8e-0f16fcd580ce +2024-09-11 09:04:28.75277 2024-09-11 09:04:28.752776 aidref 094563152 R rec f2d12388-e595-443c-bd29-77e6ed299abb +2024-09-11 09:04:28.817628 2024-09-11 09:04:28.817633 aidref 094648980 R rec daa88aac-6e63-4f41-b840-4ed39be7a1ff +2024-09-11 09:04:28.882048 2024-09-11 09:04:28.882054 aidref 095038426 R rec 5f4e89fd-76da-45d8-bc30-4ae68f47e767 +2024-09-11 09:04:28.944367 2024-09-11 09:04:28.944372 aidref 095087044 R rec d4e40737-ef79-409c-8575-a99e8fdce720 +2024-09-11 09:04:28.996902 2024-09-11 09:04:28.996908 aidref 09512795X R rec 287a19e8-d3c4-417c-9490-3a4dff13fda8 +2024-09-11 09:04:29.05532 2024-09-11 09:04:29.055326 aidref 095171738 R rec 5171d4c2-d559-464e-a475-47c51533db7c +2024-09-11 09:04:29.110486 2024-09-11 09:04:29.110492 aidref 095227415 R rec fd92f6a9-ad28-4450-9854-3b9d744a462b +2024-09-11 09:04:29.1656 2024-09-11 09:04:29.165605 aidref 095344691 R rec 17cb17a9-2ef5-4380-925f-05b03b0a1913 +2024-09-11 09:04:29.218974 2024-09-11 09:04:29.218981 aidref 09564766X R rec 3ce1b20e-2b25-4b6f-adaf-854093a099b3 +2024-09-11 09:04:29.279412 2024-09-11 09:04:29.279417 aidref 095775757 R rec f1b2f845-cdc3-4331-9f03-b38456d2d33a +2024-09-11 09:04:29.342558 2024-09-11 09:04:29.342564 aidref 095813225 R rec 12c4e730-bdc2-4950-80c3-0bce5a8152b4 +2024-09-11 09:04:29.39768 2024-09-11 09:04:29.397685 aidref 095998160 R rec b77c4fb0-67b7-4231-9e8a-9faf7c5c328d +2024-09-11 09:04:29.45229 2024-09-11 09:04:29.452295 aidref 096644389 R rec 9acfd197-37bc-437b-a303-113667ccdd62 +2024-09-11 09:04:29.521163 2024-09-11 09:04:29.521171 aidref 09715010X R rec 095c59af-70b1-4a65-a4c7-1da9c5af318b +2024-09-11 09:04:29.579923 2024-09-11 09:04:29.579928 aidref 097502146 R rec 12da50a4-b28b-4e90-87c2-4f9fc5ae166f +2024-09-11 09:04:29.637357 2024-09-11 09:04:29.637364 aidref 097587222 R rec d288374c-7a2f-440b-81eb-6d00a0b26d53 +2024-09-11 09:04:29.691792 2024-09-11 09:04:29.691798 aidref 09794226X R rec 40413606-7668-4d0f-a33e-e50446713abc +2024-09-11 09:04:29.753619 2024-09-11 09:04:29.753626 aidref 098214381 R rec e8a0deb3-96d3-4ef5-b41d-cf523bf32fd4 +2024-09-11 09:04:29.81489 2024-09-11 09:04:29.814895 aidref 098413406 R rec c6b74c59-a0b9-49e5-b63e-3c8c68bd5ce0 +2024-09-11 09:04:29.873628 2024-09-11 09:04:29.873633 aidref 09883312X R rec 7c193b46-d149-496e-8a3f-b6f98c41a9b7 +2024-09-11 09:04:29.932977 2024-09-11 09:04:29.932982 aidref 100484522 R rec 8c917dfe-eb13-4bd9-ad0e-205051f29f4a +2024-09-11 09:04:30.01108 2024-09-11 09:04:30.011085 aidref 100570453 R rec 772c6769-864d-40a1-84fa-75154f2a0e83 +2024-09-11 09:04:30.068744 2024-09-11 09:04:30.06875 aidref 100930778 R rec 4a5e292a-8e85-4b86-b59a-1bfa9a89bd96 +2024-09-11 09:04:30.128325 2024-09-11 09:04:30.128331 aidref 101023235 R rec 6bfdb5eb-2f7e-4916-83a3-56fdf04954af +2024-09-11 09:04:30.197051 2024-09-11 09:04:30.197057 aidref 101283407 R rec 620fa301-9e07-4c2d-9e46-df9a94a7a545 +2024-09-11 09:04:30.264678 2024-09-11 09:04:30.264683 aidref 101346654 R rec 48b8d67f-a6c5-4619-a4c2-0e45ff75759e +2024-09-11 09:04:30.327496 2024-09-11 09:04:30.327502 aidref 101397321 R rec 17909ef8-914a-41dd-a6b6-feb7cac2e288 +2024-09-11 09:04:30.393331 2024-09-11 09:04:30.393337 aidref 101448597 R rec d36d6628-47d8-48a6-9849-aedf6853b2df +2024-09-11 09:04:30.463725 2024-09-11 09:04:30.463731 aidref 102076855 R rec 0d7214e7-9282-453f-81b2-c4e284ac33ef +2024-09-11 09:04:30.520471 2024-09-11 09:04:30.520476 aidref 102129150 R rec 23fb4e6a-b3c6-45bc-b4a3-bd801c9714c5 +2024-09-11 09:04:30.592554 2024-09-11 09:04:30.592581 aidref 102522170 R rec 96d3aeb3-9cee-4d98-8ec3-379f123896b6 +2024-09-11 09:04:30.705112 2024-09-11 09:04:30.705118 aidref 102616221 R rec e283488b-19f0-4b4a-b3c7-a35789b0f53d +2024-09-11 09:04:30.771197 2024-09-11 09:04:30.771202 aidref 103208348 R rec 495ff110-4bee-45a8-9f8d-faf6d87bad88 +2024-09-11 09:04:30.835449 2024-09-11 09:04:30.835453 aidref 103396063 R rec d402372f-52f5-4a40-9ffa-b69e424c3955 +2024-09-11 09:04:30.907455 2024-09-11 09:04:30.90746 aidref 103540695 R rec 25671ed9-b739-4c64-b7e4-6231b927f5df +2024-09-11 09:04:30.968947 2024-09-11 09:04:30.968953 aidref 103578560 R rec 7f75e18b-04a5-47bc-b81a-590dd133b179 +2024-09-11 09:04:31.036446 2024-09-11 09:04:31.036451 aidref 10359342X R rec c6c844f8-9ed5-44f8-9af3-5ebddd3c1e98 +2024-09-11 09:04:31.094405 2024-09-11 09:04:31.09441 aidref 103613838 R rec 6346df85-72e9-44b8-8c62-6d08788d50f3 +2024-09-11 09:04:31.151696 2024-09-11 09:04:31.151702 aidref 10368607X R rec 2ab9ed84-9088-496e-b939-b4ee70a69362 +2024-09-11 09:04:31.218859 2024-09-11 09:04:31.218864 aidref 103835458 R rec 543ad314-cf30-4a0d-a2e6-6214210e0fde +2024-09-11 09:04:31.277506 2024-09-11 09:04:31.277511 aidref 103919511 R rec ec1aeda5-35da-49a0-8e36-020efecbe9f0 +2024-09-11 09:04:31.341998 2024-09-11 09:04:31.342004 aidref 104444126 R rec 1c6cc816-9631-43ab-9604-09a23caf65d4 +2024-09-11 09:04:31.397108 2024-09-11 09:04:31.397113 aidref 104506830 R rec 12d33e2b-a33d-4920-a45b-ba3d1d1793c1 +2024-09-11 09:04:31.454767 2024-09-11 09:04:31.454773 aidref 105998168 R rec 6271711b-199e-4d78-b496-69b0b3bbe28b +2024-09-11 09:04:31.510745 2024-09-11 09:04:31.51075 aidref 106028723 R rec bdd28440-9f12-4cbe-b4ed-b086e5343c88 +2024-09-11 09:04:31.569709 2024-09-11 09:04:31.569714 aidref 10694956X R rec f3bfdc80-0a4d-42c9-86c1-ebc2f10e35ff +2024-09-11 09:04:31.625889 2024-09-11 09:04:31.625894 aidref 106952587 R rec f25e129b-9d36-4128-9245-c80342b479b9 +2024-09-11 09:04:31.686196 2024-09-11 09:04:31.686201 aidref 106968696 R rec 71eaa6bf-6ad3-4f85-a1ce-1688d32c0084 +2024-09-11 09:04:31.741 2024-09-11 09:04:31.741005 aidref 107090538 R rec 70892e2a-1336-4fab-a007-47e704d787fc +2024-09-11 09:04:31.808639 2024-09-11 09:04:31.808644 aidref 107702746 R rec dd836759-b136-4d1f-9812-0220623f610f +2024-09-11 09:04:31.865759 2024-09-11 09:04:31.865765 aidref 108090450 R rec fae56ce2-e881-47bc-a6e5-7cf9d123ca6a +2024-09-11 09:04:31.939118 2024-09-11 09:04:31.939123 aidref 108093875 R rec 903445d6-b455-49a4-9207-a06251bd6052 +2024-09-11 09:04:32.011457 2024-09-11 09:04:32.011462 aidref 108157873 R rec e518a63b-5967-4b74-af80-175d2c4228d6 +2024-09-11 09:04:32.0743 2024-09-11 09:04:32.074306 aidref 108462897 R rec cf9fa940-c1c8-4a23-84a9-c672beb67d26 +2024-09-11 09:04:32.128154 2024-09-11 09:04:32.12816 aidref 108510638 R rec 9f933e11-c8c8-48ad-ac5c-4533f7029ff1 +2024-09-11 09:04:32.193941 2024-09-11 09:04:32.193946 aidref 10853961X R rec e080a3e0-da98-4905-b9e9-9235bc7ae811 +2024-09-11 09:04:32.257146 2024-09-11 09:04:32.257152 aidref 108882861 R rec 98ddfd3f-e82e-480a-915f-466127d4c48f +2024-09-11 09:04:32.324912 2024-09-11 09:04:32.324918 aidref 108960811 R rec 5923ba39-9cb7-4808-9532-7a1ed3d6ce6e +2024-09-11 09:04:32.38043 2024-09-11 09:04:32.380435 aidref 109075013 R rec a5d33c92-97f1-450c-8f21-176b6a8764d7 +2024-09-11 09:04:32.443217 2024-09-11 09:04:32.443223 aidref 109149327 R rec 17b17b5b-2423-4a4e-9527-e9bcb5c03788 +2024-09-11 09:04:32.51059 2024-09-11 09:04:32.510595 aidref 109154746 R rec 1630542c-3f11-41a7-b0d8-7536ec5c3961 +2024-09-11 09:04:32.571215 2024-09-11 09:04:32.57122 aidref 10935026X R rec a98b6038-65a2-4f7b-bb9d-78808395b30a +2024-09-11 09:04:32.625008 2024-09-11 09:04:32.625013 aidref 110078810 R rec e20cd651-f025-4e92-95cc-75d550be5127 +2024-09-11 09:04:32.693557 2024-09-11 09:04:32.693563 aidref 110124596 R rec 3860cc2f-e680-432f-a73e-7fa6dce55f5e +2024-09-11 09:04:32.749325 2024-09-11 09:04:32.74933 aidref 110124863 R rec 3c088f99-fd0d-461e-ba40-401d096a1535 +2024-09-11 09:04:32.811895 2024-09-11 09:04:32.811899 aidref 11013253X R rec a0a5feee-d3a1-4acf-8647-5c3fd42fe512 +2024-09-11 09:04:32.874898 2024-09-11 09:04:32.874904 aidref 11015469X R rec 9c722571-f1d0-412e-bd05-21d2c7ddc47a +2024-09-11 09:04:32.932625 2024-09-11 09:04:32.932631 aidref 110185366 R rec 52b2e889-215a-46ee-b9ad-c7326b7edc00 +2024-09-11 09:04:33.003472 2024-09-11 09:04:33.003477 aidref 110195019 R rec e48734b5-4d50-40d6-a7e5-6a4f628f98a8 +2024-09-11 09:04:33.074359 2024-09-11 09:04:33.074364 aidref 11020414X R rec e1c64dc8-0961-48a8-88b0-390410c828e9 +2024-09-11 09:04:33.131015 2024-09-11 09:04:33.131021 aidref 110240723 R rec f55ff661-3435-4cee-8b67-ce1045ac99f3 +2024-09-11 09:04:33.192597 2024-09-11 09:04:33.192602 aidref 110458087 R rec 3122347c-57ad-493b-89d6-d61a04f43271 +2024-09-11 09:04:33.264154 2024-09-11 09:04:33.26416 aidref 110510631 R rec e2160e7d-a140-4e15-bd21-6ce3059f975f +2024-09-11 09:04:33.33579 2024-09-11 09:04:33.335795 aidref 110591119 R rec 0e5f57bd-18bb-4c99-b8ab-7f1ae209820a +2024-09-11 09:04:33.394644 2024-09-11 09:04:33.394649 aidref 110725476 R rec 49923eab-0b14-41d8-afac-a7fe4b70d65a +2024-09-11 09:04:33.452882 2024-09-11 09:04:33.452889 aidref 110735714 R rec a15fbe24-b885-4540-bc21-a89423035bcd +2024-09-11 09:04:33.511872 2024-09-11 09:04:33.511877 aidref 11114261X R rec 854faf0b-3a7e-4d17-94da-c35a4cc085e3 +2024-09-11 09:04:33.572548 2024-09-11 09:04:33.572553 aidref 111315387 R rec 9d71432e-6b14-45c1-8504-13a89e1da0fd +2024-09-11 09:04:33.629722 2024-09-11 09:04:33.629727 aidref 111318459 R rec cdb40753-81d9-45c1-a313-3823016fb67c +2024-09-11 09:04:33.699532 2024-09-11 09:04:33.699538 aidref 111515890 R rec dcfdf23e-e7fd-4c68-9c36-7a0dd554898c +2024-09-11 09:04:33.756294 2024-09-11 09:04:33.756299 aidref 111524679 R rec 383e669a-c9e5-4f9c-9bb0-f68de2f16451 +2024-09-11 09:04:33.815401 2024-09-11 09:04:33.815407 aidref 111755220 R rec 9c1245a1-e9ee-460e-b88c-2881d4f98f4d +2024-09-11 09:04:33.884599 2024-09-11 09:04:33.884604 aidref 112030777 R rec adb62416-98a8-49da-9bde-3a1c30498ba0 +2024-09-11 09:04:33.941791 2024-09-11 09:04:33.941796 aidref 112074863 R rec d85c4add-786f-4ef1-9ea7-5db0242f2474 +2024-09-11 09:04:34.004739 2024-09-11 09:04:34.004744 aidref 112113028 R rec 3bbce017-2d57-41bf-92eb-d4bcc94a08d7 +2024-09-11 09:04:34.07004 2024-09-11 09:04:34.070045 aidref 112169678 R rec 3daa76cb-f979-4282-a3ac-6e0ebdb9135e +2024-09-11 09:04:34.135483 2024-09-11 09:04:34.135488 aidref 11219222X R rec bdb719a6-a7af-4265-a4d9-67451efbca14 +2024-09-11 09:04:34.224356 2024-09-11 09:04:34.224362 aidref 112238181 R rec 0485e103-641e-467c-895b-313b52e07389 +2024-09-11 09:04:34.299334 2024-09-11 09:04:34.29934 aidref 11246355X R rec cbe589b0-e13b-47c4-896f-28b1e61cb54d +2024-09-11 09:04:34.368309 2024-09-11 09:04:34.368314 aidref 112722024 R rec 6b84b3bc-209c-4075-b951-05c988750b1a +2024-09-11 09:04:34.427515 2024-09-11 09:04:34.42752 aidref 112795889 R rec 5d277fce-54fe-4aff-847a-2f447e73f7f4 +2024-09-11 09:04:34.505914 2024-09-11 09:04:34.505919 aidref 112913202 R rec 269beae5-34a4-45c1-9be0-53a199de85d6 +2024-09-11 09:04:34.567131 2024-09-11 09:04:34.567137 aidref 112961401 R rec 63dee608-8352-41de-a83d-782ef8960391 +2024-09-11 09:04:34.633477 2024-09-11 09:04:34.633482 aidref 113120362 R rec 79c93934-f3d6-43da-9352-7960a3fad19f +2024-09-11 09:04:34.698474 2024-09-11 09:04:34.69848 aidref 113195931 R rec 97634582-6ea4-4d0c-9286-b08411aa0f3e +2024-09-11 09:04:34.762936 2024-09-11 09:04:34.762942 aidref 113204442 R rec 8f32a06c-b0cb-4ba6-a4a4-c63dff7aeb7e +2024-09-11 09:04:34.821343 2024-09-11 09:04:34.821349 aidref 113372213 R rec ba799426-104f-43d9-8e11-85a0427ef284 +2024-09-11 09:04:34.877846 2024-09-11 09:04:34.877851 aidref 113737041 R rec 229feaf3-1ea4-4212-98e8-df5da33b00a4 +2024-09-11 09:04:34.938346 2024-09-11 09:04:34.938351 aidref 113738048 R rec 5663401a-eeb7-4ecb-802e-37f9a54f1a09 +2024-09-11 09:04:35.005457 2024-09-11 09:04:35.005463 aidref 113753764 R rec eee71dbb-f3fd-4b7f-a3b7-e3919143430f +2024-09-11 09:04:35.065897 2024-09-11 09:04:35.065903 aidref 113834535 R rec a7141c19-4adc-4b0d-b939-ac82ba7777af +2024-09-11 09:04:35.135487 2024-09-11 09:04:35.135493 aidref 113915845 R rec 6ffd21b1-e117-4784-a9cf-1592104df1d2 +2024-09-11 09:04:35.192839 2024-09-11 09:04:35.192844 aidref 114044104 R rec 1a714997-d929-433a-b078-00a50eb33999 +2024-09-11 09:04:35.253728 2024-09-11 09:04:35.253734 aidref 114141606 R rec 7582380c-29ce-4f32-86d5-7dcac5a016d0 +2024-09-11 09:04:35.330816 2024-09-11 09:04:35.330821 aidref 114173699 R rec 3df99884-e57b-44d1-8a29-37119214d507 +2024-09-11 09:04:35.393551 2024-09-11 09:04:35.393556 aidref 114244057 R rec 3515c67e-7e75-4ccf-80e8-ee93872e4362 +2024-09-11 09:04:35.463956 2024-09-11 09:04:35.463962 aidref 114270813 R rec 640c883e-f76f-4979-bcad-36ed3f3b1cf5 +2024-09-11 09:04:35.52542 2024-09-11 09:04:35.525425 aidref 11449973X R rec 06464efa-3f12-4160-b8db-4c2d45db0429 +2024-09-11 09:04:35.584097 2024-09-11 09:04:35.584101 aidref 114570337 R rec d874066b-ed76-4d47-84ce-4cf127baccba +2024-09-11 09:04:35.643917 2024-09-11 09:04:35.643923 aidref 114673128 R rec f434360e-d65a-4479-b704-4f4899aeb5d9 +2024-09-11 09:04:35.70608 2024-09-11 09:04:35.706085 aidref 11499899X R rec 3a56d8f1-d224-4dbe-b294-0515422a2ea3 +2024-09-11 09:04:35.778372 2024-09-11 09:04:35.778377 aidref 115046917 R rec adefb1e0-5bc3-4452-8934-d54f74fa88d4 +2024-09-11 09:04:35.839699 2024-09-11 09:04:35.839704 aidref 115078630 R rec c9edd216-3a70-411f-90d8-51a58e6a0ab1 +2024-09-11 09:04:35.906428 2024-09-11 09:04:35.906434 aidref 115277684 R rec 82ca4302-7932-4d87-8bac-e41dfa1ac843 +2024-09-11 09:04:35.961855 2024-09-11 09:04:35.96186 aidref 115564535 R rec 735c97ec-bdc5-4e08-a9f4-a122f8a9dea7 +2024-09-11 09:04:36.019619 2024-09-11 09:04:36.019624 aidref 11570793X R rec 907bb753-6cac-4f92-8a5f-8be947fae26a +2024-09-11 09:04:36.078321 2024-09-11 09:04:36.078326 aidref 115842993 R rec bfb72b91-74a9-4276-acb3-7dd0c3466d5a +2024-09-11 09:04:36.138623 2024-09-11 09:04:36.138629 aidref 116055669 R rec aa46c4a8-0798-44f7-81d2-ba73187e042c +2024-09-11 09:04:36.207518 2024-09-11 09:04:36.207524 aidref 116121556 R rec 11890c32-f68f-4035-b55a-c8a0a24e835d +2024-09-11 09:04:36.269217 2024-09-11 09:04:36.269222 aidref 116142219 R rec 9a641129-a3a6-40ac-9b45-eb935c37c569 +2024-09-11 09:04:36.348095 2024-09-11 09:04:36.348101 aidref 11627753X R rec 37a0a555-4b76-4568-983e-895b7a76377f +2024-09-11 09:04:36.404456 2024-09-11 09:04:36.404462 aidref 116285125 R rec c8089c67-e5d4-436b-aa05-3b6e81678aba +2024-09-11 09:04:36.464589 2024-09-11 09:04:36.464594 aidref 116293020 R rec ba4b97b5-2033-4dcc-8d4d-a9c7d7c95964 +2024-09-11 09:04:36.525946 2024-09-11 09:04:36.525952 aidref 116436840 R rec 14ede1f2-4822-4e62-9094-3796ef8891f7 +2024-09-11 09:04:36.594732 2024-09-11 09:04:36.594738 aidref 11649736X R rec 6460c31d-8cd2-4cc2-a833-ee98367736a8 +2024-09-11 09:04:36.649375 2024-09-11 09:04:36.64938 aidref 116539313 R rec 1857b38e-0dea-471e-a774-0257228aa751 +2024-09-11 09:04:36.717032 2024-09-11 09:04:36.717037 aidref 116542306 R rec a83be4ad-419c-44d6-9f1d-85d65df060b2 +2024-09-11 09:04:36.788317 2024-09-11 09:04:36.788322 aidref 116771763 R rec 4b861bb9-fcdb-499c-adb5-c08c73537778 +2024-09-11 09:04:36.858083 2024-09-11 09:04:36.858089 aidref 117328383 R rec 0c6b1b6a-0e62-4218-a1be-3a958b20066f +2024-09-11 09:04:36.92697 2024-09-11 09:04:36.926976 aidref 11749464X R rec 1793f47c-440c-4703-9cc8-a6b9f44532f2 +2024-09-11 09:04:36.985274 2024-09-11 09:04:36.985279 aidref 117780081 R rec 5bb906f4-82de-4051-b11d-3625ab7974ac +2024-09-11 09:04:37.046135 2024-09-11 09:04:37.04614 aidref 117829226 R rec 10a44055-7989-45f4-835a-017208578bd3 +2024-09-11 09:04:37.103945 2024-09-11 09:04:37.103951 aidref 117886920 R rec 96375c74-b229-4cee-95e0-dad6d9ac3588 +2024-09-11 09:04:37.161498 2024-09-11 09:04:37.161504 aidref 117982067 R rec f61d8cb0-d968-4695-9fed-801d6be1a72b +2024-09-11 09:04:37.22037 2024-09-11 09:04:37.220379 aidref 118249487 R rec 64f27279-27b4-40b4-af46-acf6da46176a +2024-09-11 09:04:37.28046 2024-09-11 09:04:37.280472 aidref 118275593 R rec e7ee550d-b8f8-4977-aa2e-9314e7e45a92 +2024-09-11 09:04:37.343202 2024-09-11 09:04:37.343208 aidref 118630245 R rec 3d549a6e-b64c-4c6d-813f-e06bd2d1178c +2024-09-11 09:04:37.401276 2024-09-11 09:04:37.401281 aidref 118895729 R rec cd3fc71e-b7e3-4a28-959d-87db89ae707b +2024-09-11 09:04:37.45812 2024-09-11 09:04:37.458125 aidref 118964534 R rec 685df50d-942b-478c-a376-d6bdd3a1d47e +2024-09-11 09:04:37.511024 2024-09-11 09:04:37.51103 aidref 119176114 R rec 6e5c8b1f-f26d-488b-a246-d6f931112788 +2024-09-11 09:04:37.57247 2024-09-11 09:04:37.572475 aidref 119349043 R rec 8d0c042a-dbf7-4269-af68-88430ea8c561 +2024-09-11 09:04:37.637034 2024-09-11 09:04:37.637039 aidref 11954945X R rec 5ae8d99e-aab0-49a5-8c69-c4c44ccd68a9 +2024-09-11 09:04:37.692652 2024-09-11 09:04:37.692658 aidref 119926350 R rec d9bb0768-3e0e-4cc9-9249-e762e54ddcea +2024-09-11 09:04:37.750413 2024-09-11 09:04:37.750419 aidref 119945290 R rec 249c1414-80b4-484d-8f33-aa2a4cfd9389 +2024-09-11 09:04:37.80923 2024-09-11 09:04:37.809236 aidref 119980924 R rec 802dbc67-1367-46dd-a908-bf05725a1ee8 +2024-09-11 09:04:37.878409 2024-09-11 09:04:37.878415 aidref 120051575 R rec 0d70d143-8255-44d6-9798-cb4e9826b5cf +2024-09-11 09:04:37.939262 2024-09-11 09:04:37.939268 aidref 120122545 R rec 38359821-3277-4a5f-ac7e-5e0c1ea19bfc +2024-09-11 09:04:38.018252 2024-09-11 09:04:38.018261 aidref 120196204 R rec 3980d44e-90e0-429b-9fde-cc8768e2d4a7 +2024-09-11 09:04:38.078752 2024-09-11 09:04:38.078757 aidref 120483076 R rec 1ffa76f3-9511-4696-a48d-ce107293f743 +2024-09-11 09:04:38.146723 2024-09-11 09:04:38.146728 aidref 120678918 R rec 98d3f768-131d-42b0-824b-f4a7ceffc2d9 +2024-09-11 09:04:38.214057 2024-09-11 09:04:38.214063 aidref 120767848 R rec 55f881f1-8ba0-4573-8061-1d7acef8bfbb +2024-09-11 09:04:38.271363 2024-09-11 09:04:38.271368 aidref 120895579 R rec 7681e063-93d8-4261-aea3-a5e87a26e6d2 +2024-09-11 09:04:38.332247 2024-09-11 09:04:38.332253 aidref 121150283 R rec 0a98aca1-22c1-497d-bee2-dbb092180553 +2024-09-11 09:04:38.399923 2024-09-11 09:04:38.399929 aidref 121151778 R rec e3f0cbe9-e136-471a-8e21-ffc2f958d5ca +2024-09-11 09:04:38.456653 2024-09-11 09:04:38.456658 aidref 121294757 R rec 103b1395-177b-47f8-82a0-957e10896653 +2024-09-11 09:04:38.53503 2024-09-11 09:04:38.535036 aidref 121469395 R rec a5280d15-f460-4c9c-b1ca-6347fd39de28 +2024-09-11 09:04:38.608349 2024-09-11 09:04:38.608355 aidref 121758419 R rec 74d42321-4726-4045-8bac-0614b30e2e0a +2024-09-11 09:04:38.664719 2024-09-11 09:04:38.664724 aidref 121801713 R rec 957ca299-8671-4000-9be7-785d9f56f256 +2024-09-11 09:04:38.720507 2024-09-11 09:04:38.720514 aidref 121832260 R rec 31a791aa-2803-4864-88f6-db4bdb18e7ab +2024-09-11 09:04:38.776901 2024-09-11 09:04:38.776907 aidref 122093186 R rec b510aed0-c0a9-4233-a7d0-43c3b7e2572e +2024-09-11 09:04:38.834331 2024-09-11 09:04:38.834335 aidref 122301374 R rec 57ad3884-b45b-4620-b4c9-2e43c750f5ab +2024-09-11 09:04:38.891324 2024-09-11 09:04:38.891329 aidref 122411749 R rec c3a01d97-ffe4-4501-8607-2d274b9a0ad3 +2024-09-11 09:04:38.959172 2024-09-11 09:04:38.959177 aidref 122514904 R rec c5a00e6e-7aa7-4531-8bd4-1f08babe5f85 +2024-09-11 09:04:39.014939 2024-09-11 09:04:39.014944 aidref 122677315 R rec d8580512-fa4a-4f16-ba4a-d55be4f7b352 +2024-09-11 09:04:39.071932 2024-09-11 09:04:39.071936 aidref 122762142 R rec 6f76f6fb-8c1e-40d3-af91-4f6e3284d30d +2024-09-11 09:04:39.130989 2024-09-11 09:04:39.130994 aidref 123006287 R rec 0a324b67-2dfa-4e46-8c69-d5247bc29092 +2024-09-11 09:04:39.193947 2024-09-11 09:04:39.193953 aidref 123007089 R rec 263a0b69-23b0-4360-a065-2e286a72785a +2024-09-11 09:04:39.260841 2024-09-11 09:04:39.260846 aidref 123240638 R rec 7d70d3df-b2d2-4db9-99cc-48ee3f0f436e +2024-09-11 09:04:39.33673 2024-09-11 09:04:39.336736 aidref 123395321 R rec 616c2f70-cc7b-441e-a9aa-71b1f673356d +2024-09-11 09:04:39.394225 2024-09-11 09:04:39.394251 aidref 123474825 R rec d6ad4e2d-6f5c-4390-934a-dea4acedfe8e +2024-09-11 09:04:39.460952 2024-09-11 09:04:39.460958 aidref 123496225 R rec 14ee44d5-8586-4f94-8bb0-7c8c966d8833 +2024-09-11 09:04:39.520031 2024-09-11 09:04:39.520037 aidref 123609836 R rec 8a341e99-2bb9-49d4-8590-cafb02be1fe6 +2024-09-11 09:04:39.579436 2024-09-11 09:04:39.579441 aidref 124179290 R rec 7fcf734d-722d-4020-ac17-481ed92aef5b +2024-09-11 09:04:39.637955 2024-09-11 09:04:39.63796 aidref 12420709X R rec 6c7580b7-c43b-41e5-863d-46b589eed0cd +2024-09-11 09:04:39.693629 2024-09-11 09:04:39.693634 aidref 124217273 R rec cac4c222-8a4d-45f3-9d87-25e315016fe3 +2024-09-11 09:04:39.75963 2024-09-11 09:04:39.759635 aidref 12430284X R rec 490c6984-120a-489d-a4be-95e9c08e92a3 +2024-09-11 09:04:39.816843 2024-09-11 09:04:39.816848 aidref 124342078 R rec 3b24c1f5-9a51-40b3-9e61-6ab262805866 +2024-09-11 09:04:39.877697 2024-09-11 09:04:39.877703 aidref 124497209 R rec 3fcc4f71-46c6-4d36-a1e8-8a4c228a6246 +2024-09-11 09:04:39.935464 2024-09-11 09:04:39.935469 aidref 124508758 R rec 9815c7e5-0978-4e0f-b167-a4f7ee383767 +2024-09-11 09:04:40.003446 2024-09-11 09:04:40.003452 aidref 124670954 R rec 661d4037-6485-4ac6-983d-f436b007e41f +2024-09-11 09:04:40.07092 2024-09-11 09:04:40.070925 aidref 124764916 R rec ca7df78e-2dbb-4e22-853d-0ff1d4470224 +2024-09-11 09:04:40.130125 2024-09-11 09:04:40.130131 aidref 124806376 R rec da98b8b9-346a-4ec5-bf6a-68bb53270ace +2024-09-11 09:04:40.19023 2024-09-11 09:04:40.190235 aidref 125074506 R rec 1640d5b6-d643-4ae1-a0bc-cd4cf2969745 +2024-09-11 09:04:40.246963 2024-09-11 09:04:40.246969 aidref 125871074 R rec 306c8e9e-db34-4a9f-ac14-1806a4da3ce6 +2024-09-11 09:04:40.305031 2024-09-11 09:04:40.305036 aidref 126029784 R rec ce95a789-ea2a-4ecb-93e4-e47b42058fca +2024-09-11 09:04:40.363732 2024-09-11 09:04:40.363748 aidref 126078858 R rec 0edbe302-e21b-4cb9-a342-0d9e76b14349 +2024-09-11 09:04:40.431579 2024-09-11 09:04:40.431585 aidref 126483361 R rec 02ea7a87-7024-4df1-b601-e165bba468ea +2024-09-11 09:04:40.502434 2024-09-11 09:04:40.502439 aidref 126596131 R rec 087fe8d3-c660-42ad-9d20-aa119f232a7a +2024-09-11 09:04:40.576395 2024-09-11 09:04:40.576402 aidref 126598371 R rec 652e4325-c09a-4f41-a237-46676c44bb52 +2024-09-11 09:04:40.633796 2024-09-11 09:04:40.633801 aidref 126698104 R rec 973a9785-4b08-4cf6-9c7f-eb10d8656cbc +2024-09-11 09:04:40.700167 2024-09-11 09:04:40.700173 aidref 127065113 R rec e8b4d9ff-04d8-4f5d-b7c9-c61e0b09d74f +2024-09-11 09:04:40.757136 2024-09-11 09:04:40.75714 aidref 127163905 R rec 87f45309-6d18-4beb-bd69-ccf0a3dcde81 +2024-09-11 09:04:40.813576 2024-09-11 09:04:40.813581 aidref 127251502 R rec b94a9d43-59d1-4a1a-bcfd-6caf651b563a +2024-09-11 09:04:40.871186 2024-09-11 09:04:40.871191 aidref 127287159 R rec c5d878d8-4ffb-42c7-a301-92bd2e302c76 +2024-09-11 09:04:40.93129 2024-09-11 09:04:40.931295 aidref 127334807 R rec 1253829f-f801-4489-82c8-03880483bd30 +2024-09-11 09:04:40.99545 2024-09-11 09:04:40.99546 aidref 127364013 R rec 5968da15-051b-453a-a3b3-3cf7d1701d39 +2024-09-11 09:04:41.065791 2024-09-11 09:04:41.065797 aidref 127488790 R rec aee37ba3-4566-441b-9eb6-f723c4d117af +2024-09-11 09:04:41.124515 2024-09-11 09:04:41.12452 aidref 127521038 R rec 2afdfcce-86a8-436c-9d02-9ecd067ec3f5 +2024-09-11 09:04:41.204478 2024-09-11 09:04:41.204483 aidref 127789111 R rec d0ebe967-2021-4855-a84c-e8a3408fc60f +2024-09-11 09:04:41.262953 2024-09-11 09:04:41.262959 aidref 127838732 R rec 0830dd9e-9c12-4d8f-b6c0-f00068f5e2ed +2024-09-11 09:04:41.320427 2024-09-11 09:04:41.320432 aidref 127859829 R rec 3d41f39d-5a5b-4b78-bc1a-8eb801a75838 +2024-09-11 09:04:41.379331 2024-09-11 09:04:41.379336 aidref 128116951 R rec b5446677-57ed-44b9-bd8f-d9a5cac57742 +2024-09-11 09:04:41.457554 2024-09-11 09:04:41.457558 aidref 128258365 R rec e341d35f-b438-445c-b94a-41a253e1fcef +2024-09-11 09:04:41.515499 2024-09-11 09:04:41.515504 aidref 128283661 R rec 73b4590d-115e-471a-8cc5-6e7af2165e64 +2024-09-11 09:04:41.577012 2024-09-11 09:04:41.577016 aidref 128499877 R rec 2b2c86c0-5c6c-491c-938e-b7755ba50ba2 +2024-09-11 09:04:41.634258 2024-09-11 09:04:41.634263 aidref 128529202 R rec dfdcf8b9-cc3e-49b8-933b-83efdc1ce6e9 +2024-09-11 09:04:41.690876 2024-09-11 09:04:41.690881 aidref 128537663 R rec e0850009-fce8-44bd-99f6-ae4b7dd41860 +2024-09-11 09:04:41.753197 2024-09-11 09:04:41.753207 aidref 128585544 R rec 3ed94291-e4e7-46b9-862d-44a42067271a +2024-09-11 09:04:41.816483 2024-09-11 09:04:41.816488 aidref 128587679 R rec 2b922375-329f-4c1b-be40-0321f67b6d25 +2024-09-11 09:04:41.893053 2024-09-11 09:04:41.893059 aidref 128590874 R rec 974d5c29-701e-4f98-b4cf-597a69987074 +2024-09-11 09:04:41.970293 2024-09-11 09:04:41.970299 aidref 128657642 R rec 133540d4-2fab-41d9-bb69-8d58a3879694 +2024-09-11 09:04:42.046475 2024-09-11 09:04:42.04648 aidref 129182176 R rec 431234c2-ded3-4d8c-9da7-22bde0ed78a9 +2024-09-11 09:04:42.103673 2024-09-11 09:04:42.103678 aidref 129211273 R rec 02e56b31-9999-43d0-92a1-40fb4410c611 +2024-09-11 09:04:42.171432 2024-09-11 09:04:42.171437 aidref 129419915 R rec 4f66fda5-b06c-4a15-928a-f62215550e9c +2024-09-11 09:04:42.237901 2024-09-11 09:04:42.237907 aidref 129558311 R rec 3a5e695c-7c94-4b81-b0c6-2f341109c08a +2024-09-11 09:04:42.323702 2024-09-11 09:04:42.323707 aidref 129801577 R rec 3a47ca19-0ce7-4eee-9150-a5716bc9ebd4 +2024-09-11 09:04:42.389393 2024-09-11 09:04:42.3894 aidref 129871303 R rec 076f798d-0a7b-4d8b-82cf-b680379a2539 +2024-09-11 09:04:42.447855 2024-09-11 09:04:42.447861 aidref 129966053 R rec e925a969-9df4-4271-9335-93a5e24e0fc2 +2024-09-11 09:04:42.526492 2024-09-11 09:04:42.526499 aidref 129988758 R rec 0b4f37fc-b20b-4187-aba6-5b39ba43276c +2024-09-11 09:04:42.598743 2024-09-11 09:04:42.598749 aidref 130017256 R rec b7f19218-6886-40a8-b5da-2189e527b875 +2024-09-11 09:04:42.653411 2024-09-11 09:04:42.653416 aidref 13037962X R rec f6112173-9413-4d44-a700-b3ac22243622 +2024-09-11 09:04:42.710493 2024-09-11 09:04:42.710499 aidref 130434795 R rec 1e01ba51-51c9-42c7-8a91-42b39fb15a13 +2024-09-11 09:04:42.768848 2024-09-11 09:04:42.768854 aidref 130521973 R rec dd96d067-9a77-446a-92c3-ca07a067f3ce +2024-09-11 09:04:42.825775 2024-09-11 09:04:42.825781 aidref 130648396 R rec 6d5100ce-0214-42cb-8a3f-a430584a4589 +2024-09-11 09:04:42.884701 2024-09-11 09:04:42.884706 aidref 130807508 R rec 2196ddaa-69ca-4bc7-b72e-e0ad8a159417 +2024-09-11 09:04:42.944122 2024-09-11 09:04:42.944127 aidref 130809217 R rec ad46ac34-5372-4dae-b1ee-87c7d05a98cf +2024-09-11 09:04:43.002208 2024-09-11 09:04:43.002214 aidref 131054937 R rec da3e0a2b-fc2f-421c-a3f9-20b1bf3b2458 +2024-09-11 09:04:43.059407 2024-09-11 09:04:43.059413 aidref 131245759 R rec 9d82d4a9-49e3-4084-aa4c-0a9e4f23db34 +2024-09-11 09:04:43.11684 2024-09-11 09:04:43.116845 aidref 13145269X R rec 24fff451-4646-4c62-a2c7-dbdbde3a5fad +2024-09-11 09:04:43.177622 2024-09-11 09:04:43.177627 aidref 131529595 R rec 665981b8-d6f1-486d-864c-049c8bc8b3a1 +2024-09-11 09:04:43.248494 2024-09-11 09:04:43.2485 aidref 131808206 R rec e19350e6-ad9c-46f4-bf78-d2a6bc841dec +2024-09-11 09:04:43.321041 2024-09-11 09:04:43.321048 aidref 13185254X R rec 03eeb922-4d65-459e-8a4a-34177b6c8a22 +2024-09-11 09:04:43.389846 2024-09-11 09:04:43.389851 aidref 132110520 R rec 2e5ce1a2-0f82-4eea-ad19-8b0018736784 +2024-09-11 09:04:43.458598 2024-09-11 09:04:43.458603 aidref 132337282 R rec 795d8980-870c-4ba4-9823-4183a1291923 +2024-09-11 09:04:43.519986 2024-09-11 09:04:43.519992 aidref 132394065 R rec 8f3db5c1-56b3-4bd8-8a40-efb098534c22 +2024-09-11 09:04:43.588785 2024-09-11 09:04:43.58879 aidref 132436620 R rec dad0f6f5-1ce3-419c-b951-ec68754ef50b +2024-09-11 09:04:43.64752 2024-09-11 09:04:43.647525 aidref 132521326 R rec e7d213bc-d6fc-4965-8c75-b8ace5ad77af +2024-09-11 09:04:43.707587 2024-09-11 09:04:43.707593 aidref 132740966 R rec 0275e19f-a697-4f73-aff3-48d3cd862850 +2024-09-11 09:04:43.771503 2024-09-11 09:04:43.771508 aidref 132750368 R rec b351beb0-c7a5-4e9e-bf13-f1354bab17ac +2024-09-11 09:04:43.831442 2024-09-11 09:04:43.831448 aidref 132844036 R rec 6cca75e6-5c27-4548-a5c2-d1be095a5d93 +2024-09-11 09:04:43.892686 2024-09-11 09:04:43.892691 aidref 133004503 R rec 099b2c20-0ea2-4319-bf69-23cba4d4ab2a +2024-09-11 09:04:43.958465 2024-09-11 09:04:43.95847 aidref 13318479X R rec 3e34aa86-fa85-46f6-bef5-100a8dbd7962 +2024-09-11 09:04:44.013303 2024-09-11 09:04:44.013309 aidref 133250717 R rec b547f2bd-dbdf-4dc1-8ecf-69327cb251f2 +2024-09-11 09:04:44.072648 2024-09-11 09:04:44.072654 aidref 133383369 R rec c6f36135-def2-40c5-94c9-011e4586720b +2024-09-11 09:04:44.127718 2024-09-11 09:04:44.127723 aidref 133418278 R rec 7e8755a2-b29f-462e-9ca9-281fddf465af +2024-09-11 09:04:44.179337 2024-09-11 09:04:44.179341 aidref 133532542 R rec 9d96a691-1feb-4718-af98-e1cd72dc6f39 +2024-09-11 09:04:44.239535 2024-09-11 09:04:44.23954 aidref 133564649 R rec fb01ac9a-f2b2-44ec-8ba4-d2bc47ed19fc +2024-09-11 09:04:44.304899 2024-09-11 09:04:44.304904 aidref 13375412X R rec 3c6207da-613b-4271-bce7-846926aa76ae +2024-09-11 09:04:44.357283 2024-09-11 09:04:44.357289 aidref 133765687 R rec 716a3ece-7920-4d02-babb-0a13c162dc8f +2024-09-11 09:04:44.42763 2024-09-11 09:04:44.427635 aidref 133823261 R rec f9da057c-ad85-40e9-84be-2916dd5bb941 +2024-09-11 09:04:44.489144 2024-09-11 09:04:44.48915 aidref 133972887 R rec beb86963-b76e-47e6-ad11-a03e12a060b2 +2024-09-11 09:04:44.551037 2024-09-11 09:04:44.551042 aidref 134024672 R rec 8ea7e9eb-3bd6-4706-871e-980da24ee4fe +2024-09-11 09:04:44.604991 2024-09-11 09:04:44.604996 aidref 134273850 R rec d0a58fef-75da-435b-924c-37f5399aefc7 +2024-09-11 09:04:44.659655 2024-09-11 09:04:44.65966 aidref 134382005 R rec 6484b20a-19e5-466d-ad22-52c164165afb +2024-09-11 09:04:44.715613 2024-09-11 09:04:44.715618 aidref 134448251 R rec fce2151f-eed6-460f-8d63-1a2e57a7717d +2024-09-11 09:04:44.767351 2024-09-11 09:04:44.767357 aidref 134449568 R rec a5998200-2041-4f6e-b8f5-5d262d5c8da9 +2024-09-11 09:04:44.821745 2024-09-11 09:04:44.821751 aidref 134489500 R rec 6e90437e-9e80-4bb1-8703-949494a733c8 +2024-09-11 09:04:44.882683 2024-09-11 09:04:44.882688 aidref 135192013 R rec 5d27b08b-dc47-4532-bdae-834e1dfcec8c +2024-09-11 09:04:44.934435 2024-09-11 09:04:44.934439 aidref 135315042 R rec 7750a613-9e84-4c36-9bd0-12126fa54576 +2024-09-11 09:04:44.988147 2024-09-11 09:04:44.988175 aidref 135562120 R rec e09296bb-5a6e-4f58-ab63-5c547a9a86be +2024-09-11 09:04:45.04849 2024-09-11 09:04:45.048495 aidref 135612934 R rec 600824e5-5d83-407b-ad08-b8c8774b2a27 +2024-09-11 09:04:45.107972 2024-09-11 09:04:45.107977 aidref 135683122 R rec bc796a35-ad88-4df9-9165-87ece5017cbe +2024-09-11 09:04:45.167557 2024-09-11 09:04:45.167563 aidref 135688590 R rec cf90fa2e-b9b5-4151-8a5f-1e5d78dc6096 +2024-09-11 09:04:45.229213 2024-09-11 09:04:45.22922 aidref 135736234 R rec 6c7fdf9f-6b66-4948-9c01-7b725c635df9 +2024-09-11 09:04:45.292142 2024-09-11 09:04:45.292147 aidref 135975484 R rec a19a08f1-b164-45af-b87c-f2e10bfa8994 +2024-09-11 09:04:45.351869 2024-09-11 09:04:45.351874 aidref 136123821 R rec 24584c2e-2dcd-44e1-8162-0b767ad24f05 +2024-09-11 09:04:45.408765 2024-09-11 09:04:45.40877 aidref 136235212 R rec 7a5248f6-c9bf-4f6c-8e85-fdb82f2ace9b +2024-09-11 09:04:45.462422 2024-09-11 09:04:45.462426 aidref 13632536X R rec 5c5dcd97-0652-4342-9db0-ccb9d735aa5c +2024-09-11 09:04:45.515735 2024-09-11 09:04:45.51574 aidref 136495117 R rec 518584aa-59d7-4d7b-910d-2f600b403fd5 +2024-09-11 09:04:45.578264 2024-09-11 09:04:45.57827 aidref 136556906 R rec 7012f8ec-6bd9-4c62-a3b8-b1592b857c5c +2024-09-11 09:04:45.64065 2024-09-11 09:04:45.640656 aidref 136738850 R rec 6b9c3205-9157-4283-b8d7-d296ee8b6151 +2024-09-11 09:04:45.693865 2024-09-11 09:04:45.69387 aidref 136803784 R rec 992b5cfd-b659-42cd-a66c-a60c151b489e +2024-09-11 09:04:45.753541 2024-09-11 09:04:45.753547 aidref 136864279 R rec 819ebada-678b-4d0a-993d-aee49e8a4fda +2024-09-11 09:04:45.807199 2024-09-11 09:04:45.807204 aidref 136864473 R rec b336a87b-9568-4b5e-b927-6961f80f37c4 +2024-09-11 09:04:45.865718 2024-09-11 09:04:45.865724 aidref 136864554 R rec 105f7819-9f61-4b96-8fa0-e6539345a541 +2024-09-11 09:04:45.924057 2024-09-11 09:04:45.924062 aidref 136893163 R rec 757b7e83-98bd-47cf-82b7-55a5b4c1fe46 +2024-09-11 09:04:45.976215 2024-09-11 09:04:45.976222 aidref 137193548 R rec 7ef3db6a-d3c2-471c-8140-f6bdedb7d751 +2024-09-11 09:04:46.032905 2024-09-11 09:04:46.03291 aidref 137341563 R rec 4c5ab95f-766e-4254-bc89-2b6d0323b9d7 +2024-09-11 09:04:46.085239 2024-09-11 09:04:46.085245 aidref 137405723 R rec fd867f83-7a87-4a47-970e-dabe05208b81 +2024-09-11 09:04:46.146442 2024-09-11 09:04:46.146447 aidref 137424795 R rec 32532101-84f1-4050-a0ea-4c4e6abc3fb3 +2024-09-11 09:04:46.208603 2024-09-11 09:04:46.208608 aidref 137586248 R rec 90ff0b7b-d25b-4574-bcb7-e00135469c24 +2024-09-11 09:04:46.292237 2024-09-11 09:04:46.292243 aidref 137635400 R rec 7111c101-9bdf-40ae-abcd-8f612e6a3b4e +2024-09-11 09:04:46.343853 2024-09-11 09:04:46.343858 aidref 137657412 R rec 8dac2201-62ac-4ebd-9df5-de35dc9a9bc9 +2024-09-11 09:04:46.396455 2024-09-11 09:04:46.396461 aidref 137724780 R rec 9517c7d4-a9f3-4b06-acfb-ac85fbd0e973 +2024-09-11 09:04:46.450891 2024-09-11 09:04:46.450897 aidref 137773927 R rec 6a707066-c8b3-4b50-8373-2e42f7a78fbc +2024-09-11 09:04:46.516184 2024-09-11 09:04:46.51619 aidref 137790872 R rec 6fb3f2f4-7b6d-4b99-85d5-cd8f77eb69d4 +2024-09-11 09:04:46.576481 2024-09-11 09:04:46.576487 aidref 138022550 R rec 2b869d82-481d-4953-8d9c-18ca008384b8 +2024-09-11 09:04:46.634945 2024-09-11 09:04:46.634951 aidref 138023468 R rec 53eb09d1-78e0-4aeb-952c-f5f38c0e36d4 +2024-09-11 09:04:46.687356 2024-09-11 09:04:46.687362 aidref 138484945 R rec dd6ffdc6-3792-41d4-9edb-d62b17a6a9b8 +2024-09-11 09:04:46.750039 2024-09-11 09:04:46.750045 aidref 138508518 R rec ac496aa7-f9d1-4005-bdb8-bca903b716b2 +2024-09-11 09:04:46.810149 2024-09-11 09:04:46.810155 aidref 138783578 R rec 7309d6af-0f99-4523-9175-2905d89ff3b7 +2024-09-11 09:04:46.870924 2024-09-11 09:04:46.870928 aidref 138905312 R rec a9c1d487-80bb-49e1-a4e1-67257b50f3b7 +2024-09-11 09:04:46.937893 2024-09-11 09:04:46.937899 aidref 138933871 R rec 722fee05-a00e-439d-9bf9-6374d6ab553a +2024-09-11 09:04:47.0024 2024-09-11 09:04:47.002405 aidref 13905443X R rec b409a7db-bb65-46c7-89d9-fe4fd42eb137 +2024-09-11 09:04:47.0659 2024-09-11 09:04:47.065906 aidref 139135723 R rec 6851f32c-fbe2-4b7c-9fec-8c7ed350c0a2 +2024-09-11 09:04:47.141591 2024-09-11 09:04:47.141597 aidref 139148256 R rec 6e551554-a870-45f6-b5c1-a6bf407256c9 +2024-09-11 09:04:47.198721 2024-09-11 09:04:47.198727 aidref 139175520 R rec 2cb8182f-6205-4362-b075-0da6a1244cb2 +2024-09-11 09:04:47.265401 2024-09-11 09:04:47.265406 aidref 139416846 R rec d99ac3d3-c1be-4a19-8e1b-ee7789a0d76d +2024-09-11 09:04:47.329544 2024-09-11 09:04:47.32955 aidref 139490752 R rec 5caf1ec2-8a81-440d-bbfd-53b1a9f18066 +2024-09-11 09:04:47.399983 2024-09-11 09:04:47.399989 aidref 13949992X R rec 894db817-2930-4e40-81dc-d5e36899eadc +2024-09-11 09:04:47.45823 2024-09-11 09:04:47.458235 aidref 139513760 R rec f978638e-bd10-468b-8a5c-2706dd4ea412 +2024-09-11 09:04:47.519254 2024-09-11 09:04:47.51926 aidref 139752528 R rec e9059ff2-945a-4f18-a286-c5352d5b77a4 +2024-09-11 09:04:47.576383 2024-09-11 09:04:47.576388 aidref 139755969 R rec 4de48912-92fc-4dd6-87c7-a69adeba8f4e +2024-09-11 09:04:47.639265 2024-09-11 09:04:47.63927 aidref 139815201 R rec 3a298e12-9190-4c80-bafc-b3cf757fd4b1 +2024-09-11 09:04:47.698522 2024-09-11 09:04:47.698527 aidref 139830383 R rec 8da92a26-e54f-4f71-a332-ed78a0a7b6b1 +2024-09-11 09:04:47.752997 2024-09-11 09:04:47.753003 aidref 139890629 R rec e5805765-c568-4694-af76-0e100607099d +2024-09-11 09:04:47.811782 2024-09-11 09:04:47.811788 aidref 139975055 R rec fcd517ac-639d-477b-9ab3-1cf33335372e +2024-09-11 09:04:47.870848 2024-09-11 09:04:47.870853 aidref 140038493 R rec 1452557b-5076-4e58-b9f4-58f57d8d33f7 +2024-09-11 09:04:47.940062 2024-09-11 09:04:47.940068 aidref 140057196 R rec 83e22d9c-7805-425a-a9f2-73f61cf3de01 +2024-09-11 09:04:48.019691 2024-09-11 09:04:48.019698 aidref 140162070 R rec e56119bb-0437-4445-a231-ae3c50a705ac +2024-09-11 09:04:48.080333 2024-09-11 09:04:48.080338 aidref 140317414 R rec 68cb84c4-004b-4539-9555-e3d989042df0 +2024-09-11 09:04:48.149538 2024-09-11 09:04:48.149543 aidref 140354336 R rec 6f9fccd3-e86f-4593-ab60-309ec2774ad5 +2024-09-11 09:04:48.209903 2024-09-11 09:04:48.209908 aidref 140407235 R rec 4cc628d2-72d3-4626-accc-947cce189d4f +2024-09-11 09:04:48.265613 2024-09-11 09:04:48.265619 aidref 140489436 R rec 80d7ee6a-70cc-4f4d-b760-1d2955f73629 +2024-09-11 09:04:48.333107 2024-09-11 09:04:48.333113 aidref 140494383 R rec 69038586-e6b4-4a7d-a4a6-fa7f4462247c +2024-09-11 09:04:48.389487 2024-09-11 09:04:48.389491 aidref 140558756 R rec c8dd4cdf-6494-4a3e-94b9-b5167a39e7b4 +2024-09-11 09:04:48.452648 2024-09-11 09:04:48.452653 aidref 140708987 R rec 1470f16f-0019-4005-900f-b83ad35a7add +2024-09-11 09:04:48.517582 2024-09-11 09:04:48.517588 aidref 140773118 R rec 1a7af18b-0f65-4d88-a5ea-0e7c8b589383 +2024-09-11 09:04:48.581295 2024-09-11 09:04:48.5813 aidref 140821325 R rec dcf8c936-a4fb-47e7-831b-717c34c32f35 +2024-09-11 09:04:48.651396 2024-09-11 09:04:48.651401 aidref 142598542 R rec 36e31700-11d7-437e-bddc-e60935e8d8eb +2024-09-11 09:04:48.710403 2024-09-11 09:04:48.710409 aidref 142611379 R rec 3b00341f-15db-4f68-8145-64a42eb06417 +2024-09-11 09:04:48.770172 2024-09-11 09:04:48.770178 aidref 142638145 R rec 551b44bc-f9cb-42b4-ba29-50f95c133e59 +2024-09-11 09:04:48.830781 2024-09-11 09:04:48.830785 aidref 142668745 R rec ce3a732a-1082-4f2e-9017-ba1505b80203 +2024-09-11 09:04:48.89125 2024-09-11 09:04:48.891255 aidref 142741299 R rec 7dd45758-365c-421c-99ae-512b6c4f1bcc +2024-09-11 09:04:48.949544 2024-09-11 09:04:48.94955 aidref 142838411 R rec 1d22434a-499d-45a4-8be0-479cdbe4250d +2024-09-11 09:04:49.008058 2024-09-11 09:04:49.008064 aidref 142843229 R rec c80e2a79-2bdc-45ec-a38a-87260d249877 +2024-09-11 09:04:49.06728 2024-09-11 09:04:49.067285 aidref 142877832 R rec cbc0e3c8-dad9-4e75-ae69-c72d0336c905 +2024-09-11 09:04:49.130076 2024-09-11 09:04:49.130082 aidref 142918342 R rec 6c25c19a-d0ee-4b79-8a6e-6dcea057c79b +2024-09-11 09:04:49.188157 2024-09-11 09:04:49.188164 aidref 14299443X R rec 6f06d7a0-61b4-4461-be62-ee6f92f63b67 +2024-09-11 09:04:49.25597 2024-09-11 09:04:49.255976 aidref 142996734 R rec 6a9309fb-e64c-4ad7-be4a-4acce7251e96 +2024-09-11 09:04:49.33311 2024-09-11 09:04:49.333115 aidref 143028537 R rec 234064f6-b9e2-4c5c-b655-ef01de6544bb +2024-09-11 09:04:49.40405 2024-09-11 09:04:49.404056 aidref 143076310 R rec 37c87261-0e3f-43a3-9c21-f556182256f9 +2024-09-11 09:04:49.472728 2024-09-11 09:04:49.472733 aidref 143098713 R rec 51567310-2b5a-4f7f-b12f-972d2dc6adde +2024-09-11 09:04:49.536378 2024-09-11 09:04:49.536382 aidref 143120743 R rec e20b0f0a-c6ba-4937-8763-b893fc90c7e3 +2024-09-11 09:04:49.602876 2024-09-11 09:04:49.602881 aidref 143151851 R rec 29e54076-7bee-4e81-9965-526ead436eae +2024-09-11 09:04:49.660951 2024-09-11 09:04:49.660956 aidref 143329790 R rec 17c74e39-e564-447a-a083-89e119161e77 +2024-09-11 09:04:49.728723 2024-09-11 09:04:49.728728 aidref 143330772 R rec 78d4f566-2109-4a40-8ef9-4fe15a0f59fe +2024-09-11 09:04:49.786878 2024-09-11 09:04:49.786884 aidref 143403826 R rec 6b8d5fec-4104-45a4-a6c1-304e5dbec5b0 +2024-09-11 09:04:49.855043 2024-09-11 09:04:49.855049 aidref 143470280 R rec 27502eeb-daea-4839-a589-5f494fbbad1e +2024-09-11 09:04:49.92258 2024-09-11 09:04:49.922588 aidref 143860747 R rec 0f03e60d-a1f4-4eeb-a80e-9ee19592cad7 +2024-09-11 09:04:49.989815 2024-09-11 09:04:49.98982 aidref 144467909 R rec d75a4ea0-b5cc-47e1-9504-41dc835c9f00 +2024-09-11 09:04:50.051595 2024-09-11 09:04:50.051601 aidref 144487179 R rec 7a22202a-c943-4358-a2dc-638c469ede5d +2024-09-11 09:04:50.108484 2024-09-11 09:04:50.108489 aidref 144499401 R rec a3098c49-51dc-46f0-93a5-8b285596a75e +2024-09-11 09:04:50.16745 2024-09-11 09:04:50.167456 aidref 144580403 R rec 7eec51b0-e7db-4b3b-9459-21acfecd3faa +2024-09-11 09:04:50.224756 2024-09-11 09:04:50.224762 aidref 144614421 R rec 82206322-2cc4-4b90-9f28-7d6513a5c00a +2024-09-11 09:04:50.284702 2024-09-11 09:04:50.284708 aidref 144636077 R rec a9261c82-3f02-43dc-bfee-70386f146078 +2024-09-11 09:04:50.345103 2024-09-11 09:04:50.345107 aidref 145090515 R rec e078c903-6691-449b-b4b9-2528d886f5d9 +2024-09-11 09:04:50.407336 2024-09-11 09:04:50.407342 aidref 145209512 R rec 2ba59147-12a5-466a-922f-6219fe3e58a4 +2024-09-11 09:04:50.481996 2024-09-11 09:04:50.482002 aidref 145286444 R rec ed4e4d4d-8f9e-4396-83a8-d03d4401e36d +2024-09-11 09:04:50.551429 2024-09-11 09:04:50.551435 aidref 145296741 R rec f1b44946-0869-4e8f-b5eb-fa08d433ec6c +2024-09-11 09:04:50.608227 2024-09-11 09:04:50.608232 aidref 145350177 R rec bac68db1-7079-415e-ac64-96d0758588fe +2024-09-11 09:04:50.67184 2024-09-11 09:04:50.671845 aidref 145351297 R rec f30c75dd-6b38-482c-bf93-52df6633f43d +2024-09-11 09:04:50.738296 2024-09-11 09:04:50.738301 aidref 145373487 R rec 6f8e09f0-3e3e-41ac-abc6-1ff1f5bd9a83 +2024-09-11 09:04:50.797306 2024-09-11 09:04:50.797312 aidref 145630218 R rec 894d2389-9bae-4365-8b47-d1bb6b446c7e +2024-09-11 09:04:50.86551 2024-09-11 09:04:50.865516 aidref 145636496 R rec b9ff1c3e-8ac9-46d9-b729-82d7fa492687 +2024-09-11 09:04:50.924434 2024-09-11 09:04:50.924439 aidref 145661806 R rec d52e2e16-9ddf-418d-9f70-a388e98782f2 +2024-09-11 09:04:50.992182 2024-09-11 09:04:50.992187 aidref 14566841X R rec e343a04c-643b-4eb1-8956-72bac1c56b74 +2024-09-11 09:04:51.050948 2024-09-11 09:04:51.050953 aidref 145729613 R rec 2a830aca-8b53-4ac7-9045-fa4cbdbdc1c3 +2024-09-11 09:04:51.115262 2024-09-11 09:04:51.115268 aidref 14577838X R rec 619572f3-34f5-4d89-a01b-36f2252ab7da +2024-09-11 09:04:51.197431 2024-09-11 09:04:51.197436 aidref 145888185 R rec 09079bc1-789c-4633-ad80-e5c0df151447 +2024-09-11 09:04:51.259674 2024-09-11 09:04:51.259679 aidref 145959783 R rec da941949-1858-4704-b969-f09fbcf8d2fc +2024-09-11 09:04:51.322656 2024-09-11 09:04:51.322662 aidref 146054210 R rec 2abd47e1-7093-4afe-b1de-7d55b36abe59 +2024-09-11 09:04:51.391596 2024-09-11 09:04:51.391602 aidref 146086457 R rec 28eaa933-7ab4-4e0c-bf42-b1fe27b4b276 +2024-09-11 09:04:51.462567 2024-09-11 09:04:51.462573 aidref 146148754 R rec 3382c9a9-4718-4229-8017-ba0f6bee14f5 +2024-09-11 09:04:51.531649 2024-09-11 09:04:51.531655 aidref 146270401 R rec 90b05db7-301f-4941-aeae-d5cf291de015 +2024-09-11 09:04:51.614801 2024-09-11 09:04:51.614808 aidref 146872584 R rec 10fb5262-e3eb-4386-ac64-f23f49fdec34 +2024-09-11 09:04:51.673865 2024-09-11 09:04:51.67387 aidref 146874595 R rec 6290d78f-bd6f-4090-818a-a16a9a0f9ac4 +2024-09-11 09:04:51.744777 2024-09-11 09:04:51.744783 aidref 146985109 R rec 5e56ecf4-2d47-4573-aca4-99ce787ae7c0 +2024-09-11 09:04:51.810901 2024-09-11 09:04:51.810907 aidref 147004268 R rec 842af231-713f-4635-a0ee-ae50f2e7ccb0 +2024-09-11 09:04:51.882603 2024-09-11 09:04:51.882609 aidref 147054672 R rec d1950bf8-4cf7-4178-8de3-050292f3f654 +2024-09-11 09:04:51.940201 2024-09-11 09:04:51.940206 aidref 147179955 R rec 20bf0ac3-397d-4ed3-821b-2c18dee05d1e +2024-09-11 09:04:52.017672 2024-09-11 09:04:52.017678 aidref 147233429 R rec dffe2296-1d25-422b-88ab-1fc99c04a7fc +2024-09-11 09:04:52.087769 2024-09-11 09:04:52.087774 aidref 147297192 R rec fd872cbd-91fa-4fd6-8aa5-cf6e61f81293 +2024-09-11 09:04:52.153974 2024-09-11 09:04:52.153979 aidref 147331781 R rec 58c18898-52b8-4724-b21f-27de1d0d77be +2024-09-11 09:04:52.220681 2024-09-11 09:04:52.220686 aidref 147383579 R rec 7a4d20b8-554f-424b-8b8a-a5e204405dce +2024-09-11 09:04:52.276246 2024-09-11 09:04:52.276252 aidref 147406889 R rec 8be0dc33-c35d-4680-89cb-bef24b208a7a +2024-09-11 09:04:52.341921 2024-09-11 09:04:52.341926 aidref 147465885 R rec 102c4ee3-65b2-4ec3-b737-56ff82de9ead +2024-09-11 09:04:52.416212 2024-09-11 09:04:52.416217 aidref 147528712 R rec db7a949a-513a-49dd-b156-6555eb42ba29 +2024-09-11 09:04:52.488857 2024-09-11 09:04:52.488863 aidref 147644305 R rec 5a03414a-9c33-4510-8d96-1999228afa46 +2024-09-11 09:04:52.577945 2024-09-11 09:04:52.577951 aidref 147700094 R rec 1a520b74-d670-460f-a740-45cf1ca9bc78 +2024-09-11 09:04:52.653702 2024-09-11 09:04:52.653707 aidref 147759420 R rec d66e7417-67b1-436e-959c-392ae2373b3e +2024-09-11 09:04:52.727421 2024-09-11 09:04:52.727427 aidref 147906423 R rec ab63bf18-b35e-4b80-9518-8ba7f8898ff5 +2024-09-11 09:04:52.801495 2024-09-11 09:04:52.801502 aidref 147934540 R rec 2b117af8-295f-420e-997b-39fcd07289b7 +2024-09-11 09:04:52.878818 2024-09-11 09:04:52.878823 aidref 148064884 R rec 799ea356-11a4-4db5-8586-95d2071aac86 +2024-09-11 09:04:52.938818 2024-09-11 09:04:52.938824 aidref 148113761 R rec ae3dd2c3-d876-4546-891d-ca338884aabf +2024-09-11 09:04:53.000456 2024-09-11 09:04:53.000461 aidref 148169643 R rec d5d57685-e58d-4eef-8f79-2a0508f376c2 +2024-09-11 09:04:53.060427 2024-09-11 09:04:53.060433 aidref 148202330 R rec b7c17e74-98aa-4e4b-a9a1-3d35992c2ed3 +2024-09-11 09:04:53.126763 2024-09-11 09:04:53.126769 aidref 148265286 R rec 10abfc1c-189a-4c37-8dad-94edf7323fd6 +2024-09-11 09:04:53.184725 2024-09-11 09:04:53.18473 aidref 148350887 R rec 46cd58ca-0e62-4e5f-9056-f89fd395d65a +2024-09-11 09:04:53.248151 2024-09-11 09:04:53.248159 aidref 148352006 R rec 564755d0-425f-401f-a629-8ccde4408e82 +2024-09-11 09:04:53.30446 2024-09-11 09:04:53.304466 aidref 148411754 R rec 1eba4c11-5b6e-4437-953c-c68c3b968918 +2024-09-11 09:04:53.366175 2024-09-11 09:04:53.366181 aidref 148443230 R rec cb386011-337d-426c-854a-a9e6d59bd49f +2024-09-11 09:04:53.447229 2024-09-11 09:04:53.447236 aidref 148457568 R rec 3a0d0dd7-f5b5-44c8-b0e7-1b1a90360ab7 +2024-09-11 09:04:53.506187 2024-09-11 09:04:53.506194 aidref 148462081 R rec a2b43bdd-4032-4946-af20-1571c3c4a6d4 +2024-09-11 09:04:53.568341 2024-09-11 09:04:53.568347 aidref 148468020 R rec dbef0f89-98ac-4919-ac77-ebe6c9b433f1 +2024-09-11 09:04:53.635988 2024-09-11 09:04:53.635993 aidref 148481418 R rec 4159b776-a26b-4d64-87bf-46e3f9622483 +2024-09-11 09:04:53.710485 2024-09-11 09:04:53.710491 aidref 14849952X R rec 086beb7f-fa40-4f7b-8ef8-5b4c4f9ec0a4 +2024-09-11 09:04:53.773983 2024-09-11 09:04:53.773989 aidref 148509088 R rec 46a062fd-7678-4b32-825e-aa45c8028881 +2024-09-11 09:04:53.842315 2024-09-11 09:04:53.84232 aidref 148637450 R rec 048c895b-f4e7-4415-826d-c5f049ef539d +2024-09-11 09:04:53.913177 2024-09-11 09:04:53.913183 aidref 14869506X R rec fffa537d-5d89-4a4d-9b06-7b9b8e09a2f8 +2024-09-11 09:04:53.976368 2024-09-11 09:04:53.976374 aidref 148702090 R rec 6da0b6b4-9987-411e-b01d-3aa931916109 +2024-09-11 09:04:54.035792 2024-09-11 09:04:54.035798 aidref 148746349 R rec 8010b84f-944f-485a-ad8c-2b6c14413532 +2024-09-11 09:04:54.104419 2024-09-11 09:04:54.104425 aidref 148754899 R rec fc91b236-4735-49c9-bcc6-2f24a52c387b +2024-09-11 09:04:54.160906 2024-09-11 09:04:54.160912 aidref 148755097 R rec 236af433-7030-4d2b-888b-46ab50cd9711 +2024-09-11 09:04:54.218697 2024-09-11 09:04:54.218703 aidref 148766587 R rec 20574ffb-e10f-40c8-abc8-49e6f61d9d08 +2024-09-11 09:04:54.273727 2024-09-11 09:04:54.273733 aidref 148833101 R rec 72f8f8f2-b67a-4b8f-8c80-19e3eedd629c +2024-09-11 09:04:54.337974 2024-09-11 09:04:54.33798 aidref 148842836 R rec 10567c6d-32b2-4064-8f94-5168ec67b7ea +2024-09-11 09:04:54.398078 2024-09-11 09:04:54.398082 aidref 148913679 R rec 1dec75c3-98e3-462c-856a-c47392b1cc91 +2024-09-11 09:04:54.455336 2024-09-11 09:04:54.455341 aidref 148935710 R rec 25bbaa0f-cdb7-433d-b7d3-464e3db45193 +2024-09-11 09:04:54.520801 2024-09-11 09:04:54.520807 aidref 14894227X R rec c0db27ad-4ee5-49bc-a066-a93af779d697 +2024-09-11 09:04:54.601784 2024-09-11 09:04:54.601789 aidref 148944000 R rec ace772b4-a110-452c-983b-3e1020191da8 +2024-09-11 09:04:54.661366 2024-09-11 09:04:54.661372 aidref 149110804 R rec 1aeec0af-f79a-4c35-bef2-681d4008a51d +2024-09-11 09:04:54.719726 2024-09-11 09:04:54.719731 aidref 149112866 R rec 84300bfe-0d20-4c1e-8d41-a222c83a8766 +2024-09-11 09:04:54.783076 2024-09-11 09:04:54.783081 aidref 149224516 R rec a37c5888-e458-41f9-bb13-d82da37306e0 +2024-09-11 09:04:54.839789 2024-09-11 09:04:54.839795 aidref 149233949 R rec f9fa222d-42a3-48ab-a0c1-6127462081f2 +2024-09-11 09:04:54.89867 2024-09-11 09:04:54.898675 aidref 149252161 R rec 57f3df84-6d69-40b9-a030-168a59f63c78 +2024-09-11 09:04:54.95574 2024-09-11 09:04:54.955746 aidref 149264380 R rec ef2775ef-8ac9-4860-a98b-f9158fd0f3f1 +2024-09-11 09:04:55.010271 2024-09-11 09:04:55.010276 aidref 14928053X R rec b0dcae4f-26dc-430e-a364-e44e4fd1a658 +2024-09-11 09:04:55.065819 2024-09-11 09:04:55.065824 aidref 149301065 R rec 8c63f610-3265-47bb-867e-d46b584e1ee0 +2024-09-11 09:04:55.123237 2024-09-11 09:04:55.123242 aidref 149357826 R rec 92195795-1703-48e1-bb6c-2ede1718210b +2024-09-11 09:04:55.178338 2024-09-11 09:04:55.178343 aidref 149375565 R rec 63f44f4e-6f58-4483-a9b5-63204a470ddd +2024-09-11 09:04:55.245113 2024-09-11 09:04:55.245119 aidref 149501706 R rec df1bf101-cb59-41b8-9917-c0117510767e +2024-09-11 09:04:55.312964 2024-09-11 09:04:55.312969 aidref 149728182 R rec 5478fa20-3b62-4bd5-933f-3b7fb143d184 +2024-09-11 09:04:55.371727 2024-09-11 09:04:55.371732 aidref 149733100 R rec fb536f26-8f8f-458c-bf9b-2e0ab7450e28 +2024-09-11 09:04:55.438809 2024-09-11 09:04:55.438815 aidref 149834802 R rec c867421d-1fa4-4848-b84f-bba58a4fb267 +2024-09-11 09:04:55.505222 2024-09-11 09:04:55.505227 aidref 149877706 R rec db605fff-a2e8-4d55-9706-e421913d6d5e +2024-09-11 09:04:55.562522 2024-09-11 09:04:55.562528 aidref 149944586 R rec 18975b6f-596a-457c-9afd-a77da4fcc264 +2024-09-11 09:04:55.625445 2024-09-11 09:04:55.625449 aidref 149955847 R rec 03367031-3994-4554-8d7c-d170647bcac8 +2024-09-11 09:04:55.687642 2024-09-11 09:04:55.687647 aidref 149968302 R rec 79659aeb-a564-4860-a294-bb65e7ffa415 +2024-09-11 09:04:55.746543 2024-09-11 09:04:55.746549 aidref 149990871 R rec 6293c52f-d348-4e1f-ac51-e295ceecf6da +2024-09-11 09:04:55.813383 2024-09-11 09:04:55.813389 aidref 149999399 R rec cc1e43a1-a3c3-4371-80a5-70866abec95f +2024-09-11 09:04:55.868809 2024-09-11 09:04:55.868815 aidref 150102836 R rec 57aa0a11-5d7e-491c-b2cd-bd57a70ef8f7 +2024-09-11 09:04:55.939054 2024-09-11 09:04:55.939059 aidref 150196261 R rec a0e03443-ad3d-4a05-bf9d-1f49e439d07c +2024-09-11 09:04:55.998322 2024-09-11 09:04:55.998327 aidref 150296541 R rec 53c444bc-1471-4f05-ad33-6fb6229b7784 +2024-09-11 09:04:56.057128 2024-09-11 09:04:56.057133 aidref 150503717 R rec f81d0f28-14de-44a7-8b9a-e0f478687279 +2024-09-11 09:04:56.185667 2024-09-11 09:04:56.185673 aidref 150552343 R rec 648fe519-ad0d-436a-93d2-e4a519710dd7 +2024-09-11 09:04:56.262383 2024-09-11 09:04:56.262388 aidref 150572492 R rec 892c53e3-939d-4102-9e4f-217df10318e2 +2024-09-11 09:04:56.338228 2024-09-11 09:04:56.338233 aidref 150592884 R rec debb74a7-b731-422e-827e-0bdfabcf684a +2024-09-11 09:04:56.403576 2024-09-11 09:04:56.403582 aidref 150599811 R rec b8ecda61-afb2-43d0-b1e0-4a0f59424e03 +2024-09-11 09:04:56.47957 2024-09-11 09:04:56.479576 aidref 150610203 R rec b4abbac7-fc77-44ab-80d2-21444fe80f94 +2024-09-11 09:04:56.534517 2024-09-11 09:04:56.534522 aidref 150630085 R rec e8a424da-9ec5-439c-91c0-231df5fd9589 +2024-09-11 09:04:56.599969 2024-09-11 09:04:56.599975 aidref 150685793 R rec b6f721d5-53c4-4a9b-821f-9d0f9386e7d2 +2024-09-11 09:04:56.672965 2024-09-11 09:04:56.672971 aidref 150700768 R rec a1cf15d0-65b5-464b-8e44-26f91537c30e +2024-09-11 09:04:56.752958 2024-09-11 09:04:56.752964 aidref 150724527 R rec fadd2cf2-5d9b-412f-8dc6-9477ee5eec3d +2024-09-11 09:04:56.821487 2024-09-11 09:04:56.821492 aidref 150813325 R rec b08d2cc5-dad3-4c5a-b2b0-a1972fce128c +2024-09-11 09:04:56.880367 2024-09-11 09:04:56.880372 aidref 150840691 R rec e305ac9f-5bab-4ab4-9fb0-bbf8143007cf +2024-09-11 09:04:56.938981 2024-09-11 09:04:56.938987 aidref 151028702 R rec 8eca9f81-c8da-4857-96d2-e290c3913634 +2024-09-11 09:04:57.007236 2024-09-11 09:04:57.007242 aidref 15117430X R rec edc9f30c-7de5-478d-86d6-003a83e19912 +2024-09-11 09:04:57.078584 2024-09-11 09:04:57.07859 aidref 151217742 R rec 44009ec2-f415-47f2-990f-128c9c045435 +2024-09-11 09:04:57.136765 2024-09-11 09:04:57.13677 aidref 151341885 R rec 23e634af-7ddf-4c1b-9949-37bef0e77c16 +2024-09-11 09:04:57.194581 2024-09-11 09:04:57.194587 aidref 151481733 R rec 9b80e623-0fa9-4e54-933b-8a64c5cfa411 +2024-09-11 09:04:57.260166 2024-09-11 09:04:57.260172 aidref 151508712 R rec b38b7e48-154f-4b78-bd9b-c76c6a457e83 +2024-09-11 09:04:57.32498 2024-09-11 09:04:57.324985 aidref 151580715 R rec f074379f-a793-44ac-8124-019e91feaff9 +2024-09-11 09:04:57.39415 2024-09-11 09:04:57.394156 aidref 151775192 R rec 5925e3df-be15-44f6-b555-9bcf1be5327b +2024-09-11 09:04:57.452446 2024-09-11 09:04:57.452451 aidref 151813590 R rec f732ed70-552f-4e03-87e8-d779dc10e14c +2024-09-11 09:04:57.5078 2024-09-11 09:04:57.507806 aidref 151884951 R rec b416ce05-cfdb-4fba-83ee-8836cc180dfd +2024-09-11 09:04:57.568092 2024-09-11 09:04:57.568098 aidref 151889511 R rec 0e861067-105c-4422-baf8-6c1551e7619d +2024-09-11 09:04:57.623379 2024-09-11 09:04:57.623384 aidref 152016872 R rec 0e2cfc3e-5d64-4956-b568-d6c8deaebb68 +2024-09-11 09:04:57.687788 2024-09-11 09:04:57.687793 aidref 152049193 R rec 648d298c-aa0f-479a-a3f9-f3289025c683 +2024-09-11 09:04:57.753206 2024-09-11 09:04:57.753212 aidref 152071210 R rec 746e87fb-2f0c-406d-b0d2-b128a63ae225 +2024-09-11 09:04:57.809481 2024-09-11 09:04:57.809487 aidref 152270345 R rec 2dab21e3-215f-453e-8f1f-60275c75156e +2024-09-11 09:04:57.881988 2024-09-11 09:04:57.881994 aidref 152355731 R rec ce1b9699-6d5a-4863-9f44-1c06456f36f9 +2024-09-11 09:04:57.940984 2024-09-11 09:04:57.94099 aidref 152491589 R rec 037155e5-7dc6-4484-a702-bd07a09c2e88 +2024-09-11 09:04:58.012508 2024-09-11 09:04:58.012514 aidref 152513655 R rec 7abbe8f8-5473-4b75-91ef-61785725a75b +2024-09-11 09:04:58.07002 2024-09-11 09:04:58.070025 aidref 152519866 R rec 35c7af7a-cc76-4bac-a2e1-a848ba39ec3a +2024-09-11 09:04:58.133111 2024-09-11 09:04:58.133115 aidref 152563024 R rec 086f2c58-70b8-4c97-ac48-2182379ef159 +2024-09-11 09:04:58.200146 2024-09-11 09:04:58.20015 aidref 152706038 R rec 9fe9ae7e-999e-4f4a-95bc-96a1a0d4b276 +2024-09-11 09:04:58.260241 2024-09-11 09:04:58.260246 aidref 152722270 R rec 86227a62-5037-4d43-98dd-98b24bfc0343 +2024-09-11 09:04:58.318083 2024-09-11 09:04:58.318088 aidref 15282300X R rec d44ab7e3-086c-4bf3-b29d-d7fde1a95eb6 +2024-09-11 09:04:58.377966 2024-09-11 09:04:58.377971 aidref 152852093 R rec 6f496480-d826-4a50-be68-6bc279230471 +2024-09-11 09:04:58.434059 2024-09-11 09:04:58.434065 aidref 152901353 R rec ca06a957-c066-4300-ac1e-a17a9ba0ead7 +2024-09-11 09:04:58.495552 2024-09-11 09:04:58.495558 aidref 152940898 R rec 83bf82c3-0b8e-4ea4-9db5-3a264a06feb5 +2024-09-11 09:04:58.567826 2024-09-11 09:04:58.567833 aidref 15295208X R rec 5c86041b-6644-4025-9423-b4c69cfa4b2c +2024-09-11 09:04:58.634059 2024-09-11 09:04:58.634064 aidref 152972250 R rec dc22643e-09dc-4a0a-96f4-c4f00cfde68b +2024-09-11 09:04:58.694901 2024-09-11 09:04:58.694906 aidref 153081147 R rec 7ca9d66d-7358-45db-8c86-f7903fefd474 +2024-09-11 09:04:58.760468 2024-09-11 09:04:58.760472 aidref 153136480 R rec 19236710-78b4-4d61-b253-4d158ab00936 +2024-09-11 09:04:58.816345 2024-09-11 09:04:58.81635 aidref 153410647 R rec 0fad0396-e1c5-4d70-9e51-7159e55e3b8b +2024-09-11 09:04:58.875154 2024-09-11 09:04:58.875159 aidref 153446544 R rec 06c885ce-9207-4890-bd56-ecc1887f6558 +2024-09-11 09:04:58.938308 2024-09-11 09:04:58.938313 aidref 153516631 R rec 028f5fb7-88f3-479d-a96b-6f5eaf75026c +2024-09-11 09:04:58.992535 2024-09-11 09:04:58.99254 aidref 153533056 R rec c5fb03ae-a2e3-4be9-a5da-9bcd0fd864de +2024-09-11 09:04:59.065225 2024-09-11 09:04:59.065231 aidref 153541342 R rec fb1dc6ae-a026-4e7d-8d86-43ecb07c4089 +2024-09-11 09:04:59.130872 2024-09-11 09:04:59.130877 aidref 153546247 R rec f9de8ea6-aafb-482f-b945-770b035695ea +2024-09-11 09:04:59.188993 2024-09-11 09:04:59.188998 aidref 153613556 R rec 8fefb0af-9043-4cbe-945b-6ffa8ce88595 +2024-09-11 09:04:59.246226 2024-09-11 09:04:59.246231 aidref 153776951 R rec 1453f63b-c8e0-4d24-9263-39ca7fc14dac +2024-09-11 09:04:59.310722 2024-09-11 09:04:59.310728 aidref 153973145 R rec 7ac34f6e-6bd9-4618-a5dc-93c121a63cb1 +2024-09-11 09:04:59.376395 2024-09-11 09:04:59.376401 aidref 15401916X R rec 0fc7bc4c-4828-4561-9efe-a9c2d1b78943 +2024-09-11 09:04:59.44674 2024-09-11 09:04:59.446746 aidref 154190551 R rec 0b8c51b3-9168-4a10-8639-f806e6043b70 +2024-09-11 09:04:59.50762 2024-09-11 09:04:59.507625 aidref 154659622 R rec 686ffb19-125d-4cd5-ac4a-1c804608a5c7 +2024-09-11 09:04:59.570951 2024-09-11 09:04:59.570957 aidref 154744395 R rec 1336051f-476e-4d86-98bf-d6131674af00 +2024-09-11 09:04:59.628338 2024-09-11 09:04:59.628343 aidref 154778532 R rec ce2232fc-ce50-4a72-a224-15ec6b00ddf0 +2024-09-11 09:04:59.691607 2024-09-11 09:04:59.691613 aidref 154820903 R rec e3695c00-db33-4a64-be19-5446d439f377 +2024-09-11 09:04:59.748929 2024-09-11 09:04:59.748934 aidref 154833649 R rec 629a47bd-4b56-426b-ac20-8c80c7582a19 +2024-09-11 09:04:59.8033 2024-09-11 09:04:59.803305 aidref 154889415 R rec 9dbea424-4171-4560-a3dc-37eabcfe8a0c +2024-09-11 09:04:59.874723 2024-09-11 09:04:59.87473 aidref 154972673 R rec b1cd58e3-619a-4d20-a9ad-25da05e9276b +2024-09-11 09:04:59.956178 2024-09-11 09:04:59.956184 aidref 155128965 R rec 11b6cafa-f4bd-432e-8781-3a5075e954c8 +2024-09-11 09:05:00.014423 2024-09-11 09:05:00.014429 aidref 155289292 R rec fd334b65-11af-4190-8b73-f0a8560a48ca +2024-09-11 09:05:00.075787 2024-09-11 09:05:00.075794 aidref 155309668 R rec 01f0ad61-ac86-476d-a807-ed3ed1f2d884 +2024-09-11 09:05:00.140031 2024-09-11 09:05:00.140036 aidref 155413163 R rec 882553fe-dd93-4ea2-b2c3-a61ae68becf5 +2024-09-11 09:05:00.198762 2024-09-11 09:05:00.198768 aidref 155413414 R rec 873789eb-0ec2-4c18-bbcb-fb3df9e8de06 +2024-09-11 09:05:00.259064 2024-09-11 09:05:00.259069 aidref 155519107 R rec ed4514ee-9621-498d-b193-876f8c86f3bb +2024-09-11 09:05:00.321094 2024-09-11 09:05:00.321099 aidref 155533797 R rec 0c9c498d-2bd9-465b-959b-15316cf4ae7a +2024-09-11 09:05:00.380265 2024-09-11 09:05:00.380271 aidref 155592122 R rec f4fb6d39-7ebc-4c24-93cb-e149d2c9fe92 +2024-09-11 09:05:00.449874 2024-09-11 09:05:00.449879 aidref 155733370 R rec c0a782fe-1907-48e1-9ebb-796652fbf7f5 +2024-09-11 09:05:00.50856 2024-09-11 09:05:00.508565 aidref 155746936 R rec 44670754-19f7-4d06-8caf-62fcc8ef741d +2024-09-11 09:05:00.574021 2024-09-11 09:05:00.574026 aidref 155760947 R rec 883f6d8c-a15e-4287-945f-a7ac2f63445b +2024-09-11 09:05:00.631582 2024-09-11 09:05:00.631587 aidref 155852639 R rec 04d074b5-7c2b-4dc6-b77b-c90c7afe1f17 +2024-09-11 09:05:00.700285 2024-09-11 09:05:00.700291 aidref 15589899X R rec 8e5494bb-b96d-4fd6-98e3-083587a93ab6 +2024-09-11 09:05:00.757604 2024-09-11 09:05:00.75761 aidref 155925261 R rec d7c78316-b9bd-4c89-8860-c9c95aaeea08 +2024-09-11 09:05:00.819028 2024-09-11 09:05:00.819033 aidref 155933604 R rec 4e3228d1-8a3b-439d-9762-f007c930056b +2024-09-11 09:05:00.87946 2024-09-11 09:05:00.879465 aidref 155942204 R rec 50255dda-56a3-43b7-9e89-bb60be376af9 +2024-09-11 09:05:00.945857 2024-09-11 09:05:00.945862 aidref 156048701 R rec 934a11ed-fb77-4e7e-9941-4571661a1d91 +2024-09-11 09:05:01.004052 2024-09-11 09:05:01.004057 aidref 156053241 R rec 76e8b3be-2753-4e10-832f-cb3820660a18 +2024-09-11 09:05:01.067919 2024-09-11 09:05:01.067924 aidref 156252813 R rec e9847ce7-547a-4c99-8d00-e9aa82dfaa82 +2024-09-11 09:05:01.130511 2024-09-11 09:05:01.130519 aidref 156288435 R rec 65144d24-f304-49aa-b054-160e847c3c3d +2024-09-11 09:05:01.221337 2024-09-11 09:05:01.221342 aidref 156335336 R rec 65fee714-9e85-4d6e-982e-70bc1cff4f4d +2024-09-11 09:05:01.291465 2024-09-11 09:05:01.291471 aidref 156363690 R rec 7cb3addf-3368-44fd-b954-ea4f931ba436 +2024-09-11 09:05:01.352654 2024-09-11 09:05:01.352659 aidref 156539063 R rec 084d56d7-1cdc-4923-a1cb-afe0bd774144 +2024-09-11 09:05:01.410702 2024-09-11 09:05:01.410707 aidref 156563932 R rec 1e4694fd-eb3e-47f9-8095-0bbd81dad17c +2024-09-11 09:05:01.462593 2024-09-11 09:05:01.462599 aidref 156590948 R rec ba2d4402-970e-41fa-939e-1b5d34a51e05 +2024-09-11 09:05:01.520092 2024-09-11 09:05:01.520097 aidref 156838524 R rec e30ff908-5f36-41b9-8bc9-aecbc33cbc57 +2024-09-11 09:05:01.576062 2024-09-11 09:05:01.576066 aidref 156838613 R rec 0bf265c1-6594-48f1-b539-5c21f5e38fad +2024-09-11 09:05:01.634776 2024-09-11 09:05:01.634781 aidref 156954761 R rec 5b215b15-11f6-4038-a954-3ab26f9f00c5 +2024-09-11 09:05:01.704941 2024-09-11 09:05:01.704949 aidref 15704856X R rec 05e61101-14c1-4f53-a8bd-17e2b7ebded6 +2024-09-11 09:05:01.767468 2024-09-11 09:05:01.767475 aidref 157222330 R rec 1f6d6f7c-cb06-4eec-8533-b8820259d58c +2024-09-11 09:05:01.833997 2024-09-11 09:05:01.834005 aidref 157227170 R rec 5c6360a7-5ebb-444a-baa7-da8865f70983 +2024-09-11 09:05:01.901481 2024-09-11 09:05:01.901488 aidref 157315088 R rec 5f1304b2-fdcd-4761-9ce3-95487f5c73f9 +2024-09-11 09:05:01.959673 2024-09-11 09:05:01.959678 aidref 157332047 R rec cc66b448-eec0-4345-8890-92ff4b2c587e +2024-09-11 09:05:02.017321 2024-09-11 09:05:02.017326 aidref 157333507 R rec 6ec3d590-d225-4df3-acca-72d0b72184b6 +2024-09-11 09:05:02.081086 2024-09-11 09:05:02.081091 aidref 157526860 R rec 0cc52ff7-e392-4e03-871d-4516005a447f +2024-09-11 09:05:02.139859 2024-09-11 09:05:02.139865 aidref 157650154 R rec ea5067d7-7c3a-4bb7-b390-6281be395757 +2024-09-11 09:05:02.200397 2024-09-11 09:05:02.200403 aidref 157856283 R rec 01bd1c03-1dc9-4b71-83bd-75fb14197e3b +2024-09-11 09:05:02.262022 2024-09-11 09:05:02.262027 aidref 157881997 R rec 594d6fb2-1ed4-4ccb-84fb-4435888fbca2 +2024-09-11 09:05:02.320914 2024-09-11 09:05:02.32092 aidref 157995860 R rec a5a73f6a-d99f-42ee-8f99-0ec55174d3f0 +2024-09-11 09:05:02.383593 2024-09-11 09:05:02.383598 aidref 158085647 R rec 748f5004-976b-4a0b-98dd-6d0029453cc5 +2024-09-11 09:05:02.438 2024-09-11 09:05:02.438005 aidref 158118294 R rec 0f86033f-afc1-4132-b7f1-9173c0e38d14 +2024-09-11 09:05:02.493281 2024-09-11 09:05:02.493287 aidref 158365186 R rec 70e39dae-f990-4cd2-ad7e-5aa311580642 +2024-09-11 09:05:02.555183 2024-09-11 09:05:02.555189 aidref 158552180 R rec 50dff7a3-aa05-409e-8519-92ae65d2aca9 +2024-09-11 09:05:02.639614 2024-09-11 09:05:02.639619 aidref 158638247 R rec 08293931-76d7-4626-b29c-66876d0ee6c7 +2024-09-11 09:05:02.698387 2024-09-11 09:05:02.698393 aidref 158762274 R rec 0f29ccef-2c36-4b43-8172-29cf134d586c +2024-09-11 09:05:02.779376 2024-09-11 09:05:02.779381 aidref 158778235 R rec 0570b829-e283-4c89-ba8b-375295056263 +2024-09-11 09:05:02.837538 2024-09-11 09:05:02.837543 aidref 158991583 R rec e1e7ad6e-0438-4270-9842-de113ca4e166 +2024-09-11 09:05:02.896269 2024-09-11 09:05:02.896275 aidref 158996577 R rec afc2a5be-61af-4265-8a94-c4e23e7ce4cd +2024-09-11 09:05:02.952161 2024-09-11 09:05:02.952166 aidref 159184495 R rec c03ccb34-3765-42ce-8a0a-99626c7ab999 +2024-09-11 09:05:03.011439 2024-09-11 09:05:03.011444 aidref 159278201 R rec fa322a28-03a7-47cb-9588-5689b196713e +2024-09-11 09:05:03.072014 2024-09-11 09:05:03.07202 aidref 159640989 R rec 209a06e3-3e52-4cd6-a428-84012cc39010 +2024-09-11 09:05:03.136949 2024-09-11 09:05:03.136954 aidref 159658152 R rec 6a8e12ec-b903-4d26-9dd0-b358400ce5f3 +2024-09-11 09:05:03.198243 2024-09-11 09:05:03.198248 aidref 159687306 R rec 1c6ba99c-cd36-46f7-a5d2-2a0ec28cc0b7 +2024-09-11 09:05:03.257444 2024-09-11 09:05:03.257449 aidref 159765315 R rec c109bd7c-f75a-4b2a-ba13-6cd8c04a7faf +2024-09-11 09:05:03.314563 2024-09-11 09:05:03.314568 aidref 159775744 R rec 0fc2495a-ce32-4ead-b64f-dbb385b33b85 +2024-09-11 09:05:03.375961 2024-09-11 09:05:03.375966 aidref 159852684 R rec 5272b86e-a740-4416-ab9a-64c4f19df156 +2024-09-11 09:05:03.434778 2024-09-11 09:05:03.434784 aidref 160193974 R rec 25d802b3-1c92-4505-ba5a-827098078286 +2024-09-11 09:05:03.492591 2024-09-11 09:05:03.492597 aidref 160196620 R rec 37f45f5b-559b-4e2a-8e86-98dde3749279 +2024-09-11 09:05:03.552312 2024-09-11 09:05:03.552318 aidref 160342465 R rec f3b9fe86-d962-4ba2-bad8-1fc3df9b3c5a +2024-09-11 09:05:03.613654 2024-09-11 09:05:03.61366 aidref 160359619 R rec b2a5de55-6378-4c39-a105-5bfb50af8826 +2024-09-11 09:05:03.677558 2024-09-11 09:05:03.677564 aidref 160424275 R rec 9732c453-a681-4f3f-863d-2879916ab7b4 +2024-09-11 09:05:03.750621 2024-09-11 09:05:03.750626 aidref 160613701 R rec bfd25b77-314b-4086-838e-7611a408de78 +2024-09-11 09:05:03.810583 2024-09-11 09:05:03.810589 aidref 160635543 R rec f3633354-c539-4052-b65e-341d70989c82 +2024-09-11 09:05:03.891756 2024-09-11 09:05:03.891762 aidref 160773318 R rec 22de9306-b2df-492f-ba56-1e0a1448928b +2024-09-11 09:05:03.95627 2024-09-11 09:05:03.956275 aidref 160837065 R rec 9c771587-440f-4d4d-9745-fd34093b69e6 +2024-09-11 09:05:04.014255 2024-09-11 09:05:04.01426 aidref 16113307X R rec 8c514832-14bf-4434-85c7-6d33c4bc1223 +2024-09-11 09:05:04.076976 2024-09-11 09:05:04.076981 aidref 161148689 R rec f74c1295-bb94-47a1-bf24-2c99c71c7209 +2024-09-11 09:05:04.140603 2024-09-11 09:05:04.140612 aidref 161301142 R rec 59536ba8-f1c4-488e-b769-f27d33254951 +2024-09-11 09:05:04.196293 2024-09-11 09:05:04.196299 aidref 161367070 R rec f6a404be-811f-4331-ae38-10e6db0368bd +2024-09-11 09:05:04.293834 2024-09-11 09:05:04.293839 aidref 16165407X R rec d0656c03-889d-448d-8e86-07c762aa0853 +2024-09-11 09:05:04.353006 2024-09-11 09:05:04.353011 aidref 161696325 R rec 17d79569-18c8-41f0-83d5-5d535e6b2824 +2024-09-11 09:05:04.40457 2024-09-11 09:05:04.404576 aidref 161996302 R rec 6f23563d-d5b8-45f1-9a1e-030d53b88ecc +2024-09-11 09:05:04.458421 2024-09-11 09:05:04.458427 aidref 162046065 R rec acbcd966-f607-4f1d-a9f1-c9b26bc835e5 +2024-09-11 09:05:04.51549 2024-09-11 09:05:04.515496 aidref 162138997 R rec 8611258c-0bae-418c-b493-443772cc0ab0 +2024-09-11 09:05:04.579004 2024-09-11 09:05:04.57901 aidref 162154224 R rec 7594bd7f-5543-4b9b-8df1-c93842184dae +2024-09-11 09:05:04.644131 2024-09-11 09:05:04.644136 aidref 16216193X R rec c4b50a83-58d4-4276-829f-c266a73a9947 +2024-09-11 09:05:04.7086 2024-09-11 09:05:04.708606 aidref 162196407 R rec 7f6782f9-a483-4a60-a9df-6806bf6d20e7 +2024-09-11 09:05:04.765746 2024-09-11 09:05:04.765751 aidref 162320264 R rec 421f91b2-9031-4db6-83a7-ebe28f3b68c9 +2024-09-11 09:05:04.821139 2024-09-11 09:05:04.821145 aidref 162452659 R rec 6e0b36c7-495f-4df7-9410-62aba56588cd +2024-09-11 09:05:04.879319 2024-09-11 09:05:04.879325 aidref 162460163 R rec 2c3fb586-df38-4054-b62e-1fc6fb9f21e9 +2024-09-11 09:05:04.940737 2024-09-11 09:05:04.940743 aidref 163232857 R rec 698845d5-b6e6-4312-809d-b691f3183864 +2024-09-11 09:05:05.013187 2024-09-11 09:05:05.013192 aidref 163250030 R rec d79561af-9618-4c93-aca2-35cf34ad6f34 +2024-09-11 09:05:05.075768 2024-09-11 09:05:05.075773 aidref 163880433 R rec ecfaa538-c994-4104-ad09-344cfd024ffd +2024-09-11 09:05:05.134321 2024-09-11 09:05:05.134326 aidref 164105301 R rec 07b60539-1d85-4a8b-a704-85562b6c6a33 +2024-09-11 09:05:05.189515 2024-09-11 09:05:05.18952 aidref 164529640 R rec 82a538d0-5699-431f-a852-4654ef5baee0 +2024-09-11 09:05:05.248333 2024-09-11 09:05:05.248338 aidref 164530363 R rec ce55ca4a-e137-4087-8b0f-f1b719f7ec10 +2024-09-11 09:05:05.304649 2024-09-11 09:05:05.304655 aidref 164539972 R rec 818bbf77-a791-44c7-acdf-4d19d56c3ef8 +2024-09-11 09:05:05.359234 2024-09-11 09:05:05.35924 aidref 164600620 R rec d9a68089-6c44-432b-8613-6f214e61316a +2024-09-11 09:05:05.417517 2024-09-11 09:05:05.417523 aidref 164604820 R rec c699b752-db9b-49fc-906a-35caa193da53 +2024-09-11 09:05:05.47299 2024-09-11 09:05:05.472996 aidref 164708782 R rec e2c0615f-59c7-4f6a-aabf-08e8c2d4712e +2024-09-11 09:05:05.531373 2024-09-11 09:05:05.531378 aidref 16480224X R rec 4093874c-fa19-48fe-b7ae-d4d9269e3602 +2024-09-11 09:05:05.594112 2024-09-11 09:05:05.594118 aidref 16481079X R rec 0d9cb95b-b1c1-4764-9af8-5f30cfb5e1a6 +2024-09-11 09:05:05.660244 2024-09-11 09:05:05.660249 aidref 164855580 R rec 3743583a-bd7b-48f3-aadd-98fa5df0813c +2024-09-11 09:05:05.728381 2024-09-11 09:05:05.728386 aidref 164948368 R rec 34383c49-9d96-4bef-b6cf-e72375cb6e70 +2024-09-11 09:05:05.794428 2024-09-11 09:05:05.794433 aidref 165030968 R rec b3949248-c273-433d-af21-39848d39263a +2024-09-11 09:05:05.859587 2024-09-11 09:05:05.859593 aidref 165099054 R rec c80fc5c9-f76d-4466-a800-210ea7e685a2 +2024-09-11 09:05:05.925905 2024-09-11 09:05:05.925911 aidref 165139455 R rec b71fff0e-8a89-44ed-a466-0709cbdb8b15 +2024-09-11 09:05:05.991258 2024-09-11 09:05:05.991263 aidref 165153687 R rec 4d196216-70c0-4e54-b606-8a6406dce584 +2024-09-11 09:05:06.055751 2024-09-11 09:05:06.055756 aidref 16530569X R rec 68c452bd-a74f-4cac-bb69-af45341eac1e +2024-09-11 09:05:06.125414 2024-09-11 09:05:06.12542 aidref 165425229 R rec 4cf9180d-6b0e-4d83-9f1e-3a74e4bdb3c6 +2024-09-11 09:05:06.188071 2024-09-11 09:05:06.188077 aidref 165647876 R rec 59c525de-48af-4f0f-b352-601ab3db5a8b +2024-09-11 09:05:06.248241 2024-09-11 09:05:06.248247 aidref 165825324 R rec 05abdbff-ee8a-49c7-b4a4-003f1afa4fe4 +2024-09-11 09:05:06.38189 2024-09-11 09:05:06.381895 aidref 165842822 R rec b4fc724b-e99c-40f6-b469-70302eaa6fb0 +2024-09-11 09:05:06.461477 2024-09-11 09:05:06.461483 aidref 165846771 R rec fb4bb942-b955-4e52-8a54-1e904840b15d +2024-09-11 09:05:06.531979 2024-09-11 09:05:06.531984 aidref 166452912 R rec 6a936501-6d39-4944-9d81-b37e31a1cbf8 +2024-09-11 09:05:06.628711 2024-09-11 09:05:06.628716 aidref 166452955 R rec 3b66b15f-a003-41c3-822f-96c98a2ea84f +2024-09-11 09:05:06.723608 2024-09-11 09:05:06.723613 aidref 16647729X R rec 83fa2598-50a3-4027-bfbb-9d7b72980fb3 +2024-09-11 09:05:06.803882 2024-09-11 09:05:06.803887 aidref 166533971 R rec ccd1bf39-170f-4428-a75f-406bed448d3d +2024-09-11 09:05:06.861831 2024-09-11 09:05:06.861836 aidref 166601551 R rec b579007c-dd17-4e33-ac48-05035a186234 +2024-09-11 09:05:06.931407 2024-09-11 09:05:06.931412 aidref 166827886 R rec 864fea31-73ec-42c5-a121-4a9ccb9c8356 +2024-09-11 09:05:06.988339 2024-09-11 09:05:06.988343 aidref 167143565 R rec 69650aa4-448c-48d8-9ea2-4d02c1b4c741 +2024-09-11 09:05:07.060254 2024-09-11 09:05:07.060261 aidref 167149369 R rec 9eb429b7-5160-431d-a6de-71f8bd690262 +2024-09-11 09:05:07.120255 2024-09-11 09:05:07.120261 aidref 167228862 R rec 5a737b7e-7eb4-4d41-96a1-036971114924 +2024-09-11 09:05:07.186929 2024-09-11 09:05:07.186935 aidref 16734613X R rec 8f3f1cd0-6ece-485d-8c4e-52e2a384b328 +2024-09-11 09:05:07.255987 2024-09-11 09:05:07.255993 aidref 16737740X R rec f4afb833-c545-42cc-93b2-2be41ae43f85 +2024-09-11 09:05:07.322186 2024-09-11 09:05:07.322191 aidref 16746499X R rec 4b99b9c4-7d05-40aa-989b-d03b209fce29 +2024-09-11 09:05:07.378798 2024-09-11 09:05:07.378803 aidref 167467549 R rec ff6687ca-c1b6-4a71-b78a-093570f5bdc6 +2024-09-11 09:05:07.447547 2024-09-11 09:05:07.447553 aidref 167597213 R rec b7fd6797-09a2-4479-aa80-5ac12ce098b4 +2024-09-11 09:05:07.509375 2024-09-11 09:05:07.50938 aidref 167843052 R rec aac87924-8a16-4e2c-ae58-671a17e0ecfb +2024-09-11 09:05:07.579162 2024-09-11 09:05:07.579168 aidref 167900587 R rec 80501c5c-02fc-432b-ade8-8a4c5a9b43b3 +2024-09-11 09:05:07.656392 2024-09-11 09:05:07.656397 aidref 167901842 R rec 07662948-4c41-41c6-9d70-8ce0e2c6cb95 +2024-09-11 09:05:07.720173 2024-09-11 09:05:07.720179 aidref 167994689 R rec 914c5877-3490-4ba8-ba88-73b9bb8e7b93 +2024-09-11 09:05:07.800461 2024-09-11 09:05:07.800466 aidref 168060973 R rec c43609c2-3666-4cd5-8248-38e83b9060d0 +2024-09-11 09:05:07.879695 2024-09-11 09:05:07.8797 aidref 168391996 R rec a975368b-213d-4cd3-aaeb-b8a6a83bf11a +2024-09-11 09:05:07.946464 2024-09-11 09:05:07.94647 aidref 168510332 R rec 3670b4ae-ab2f-4834-a6c2-63b63d2bae48 +2024-09-11 09:05:08.004135 2024-09-11 09:05:08.004147 aidref 168633248 R rec c3ed60b8-1ecc-49c7-8258-df896ef27f0e +2024-09-11 09:05:08.069073 2024-09-11 09:05:08.069079 aidref 168647567 R rec 4188e03e-2922-4055-b0bf-b59a19783640 +2024-09-11 09:05:08.139498 2024-09-11 09:05:08.139504 aidref 168676761 R rec 2910d71d-6856-42ff-b43f-d27ebce9a20c +2024-09-11 09:05:08.213222 2024-09-11 09:05:08.213228 aidref 168926962 R rec 23e9ae6a-aa56-4cd7-bf3a-79f3cd130d5b +2024-09-11 09:05:08.268379 2024-09-11 09:05:08.268384 aidref 168968614 R rec 2ecac712-cb14-4e23-8b74-89b75a0c937c +2024-09-11 09:05:08.335974 2024-09-11 09:05:08.33598 aidref 169159914 R rec 57a17565-f058-4b45-9077-3e2ab1f63a66 +2024-09-11 09:05:08.39313 2024-09-11 09:05:08.393135 aidref 169352501 R rec 0dac0027-e044-4b2b-a44e-320cfd597a1e +2024-09-11 09:05:08.453682 2024-09-11 09:05:08.453688 aidref 169383695 R rec 4116d57d-6163-42b3-a9b4-5d239d3ca27d +2024-09-11 09:05:08.516843 2024-09-11 09:05:08.516849 aidref 16961834X R rec 013a349c-c089-4f8a-a0b0-238ba196a53b +2024-09-11 09:05:08.599841 2024-09-11 09:05:08.599846 aidref 169818098 R rec 07be70d2-162c-4de6-9bb1-40cb65234c4e +2024-09-11 09:05:08.676005 2024-09-11 09:05:08.676011 aidref 169852253 R rec 27987cde-d247-4fc1-a66d-2836dea63756 +2024-09-11 09:05:08.738206 2024-09-11 09:05:08.738212 aidref 169905187 R rec 0d67fc63-6bbc-415b-bea1-da9d456832c8 +2024-09-11 09:05:08.812659 2024-09-11 09:05:08.812676 aidref 17000404X R rec e8123d50-fe61-46e3-b721-7af020737da4 +2024-09-11 09:05:08.872903 2024-09-11 09:05:08.872908 aidref 170042650 R rec 8775b307-ad32-4d89-b472-9b2e5f4af29a +2024-09-11 09:05:08.940427 2024-09-11 09:05:08.940432 aidref 170128687 R rec 25daf70d-fc09-463a-a2da-c0bb33cc31f9 +2024-09-11 09:05:09.005521 2024-09-11 09:05:09.005526 aidref 170276708 R rec 859cf7a9-0ef4-4ad5-8226-252d701d4539 +2024-09-11 09:05:09.065625 2024-09-11 09:05:09.065631 aidref 170444368 R rec 052849c9-5641-44c2-b077-75126140d3ee +2024-09-11 09:05:09.166971 2024-09-11 09:05:09.166977 aidref 170457257 R rec 580ea0af-5515-4596-b40d-ca10cdbab3ba +2024-09-11 09:05:09.232723 2024-09-11 09:05:09.232729 aidref 170479862 R rec 88c4860e-7bd1-4354-8486-eea623d1f697 +2024-09-11 09:05:09.291594 2024-09-11 09:05:09.291601 aidref 170696413 R rec ee433b62-274f-42bd-8de8-4bce00d8a3be +2024-09-11 09:05:09.35929 2024-09-11 09:05:09.359296 aidref 170792188 R rec 29fa5ff3-8be6-404e-bebc-9c43c663ee90 +2024-09-11 09:05:09.428467 2024-09-11 09:05:09.428472 aidref 170798828 R rec 718b167b-f98a-4965-8402-f0d9d92eba44 +2024-09-11 09:05:09.487634 2024-09-11 09:05:09.487639 aidref 170804291 R rec 96134288-dd1f-4687-9000-71bb4a246f64 +2024-09-11 09:05:09.549097 2024-09-11 09:05:09.549103 aidref 171073444 R rec d01f8a38-d836-4b84-91e0-8b80b54cd7da +2024-09-11 09:05:09.601422 2024-09-11 09:05:09.601428 aidref 171330943 R rec 7acea2fa-8c1c-40ab-b51b-3931fd16988a +2024-09-11 09:05:09.655971 2024-09-11 09:05:09.655976 aidref 17141599X R rec b53943f6-e2d9-401c-8929-d22d2e446dc8 +2024-09-11 09:05:09.711499 2024-09-11 09:05:09.711504 aidref 171790944 R rec f42f61bd-24d4-4155-a9e1-0b71177ad223 +2024-09-11 09:05:09.763533 2024-09-11 09:05:09.763538 aidref 171811534 R rec c1fa717c-f9f0-4c2b-8c06-60c4e338553a +2024-09-11 09:05:09.819253 2024-09-11 09:05:09.819262 aidref 172309239 R rec d59423d6-e351-4c7f-8c21-7bedfc72dddc +2024-09-11 09:05:09.877026 2024-09-11 09:05:09.877032 aidref 172595347 R rec 15bacd28-cb17-45ef-8d04-31ddb22564ed +2024-09-11 09:05:09.929468 2024-09-11 09:05:09.929473 aidref 172735319 R rec 64030c03-8898-4d13-97f4-a7a32490ba0d +2024-09-11 09:05:09.983575 2024-09-11 09:05:09.983581 aidref 174120745 R rec 0cb99486-0993-462c-895d-ac0cc29b3aa1 +2024-09-11 09:05:10.035861 2024-09-11 09:05:10.035868 aidref 174162790 R rec 0056a7b1-a071-45c6-b241-ecb908a73b26 +2024-09-11 09:05:10.093005 2024-09-11 09:05:10.09301 aidref 174180039 R rec f76fe50e-1f97-44a6-bb9a-58860b8d4e13 +2024-09-11 09:05:10.14502 2024-09-11 09:05:10.145025 aidref 174469470 R rec 48edd986-de1b-446f-9cdb-a07a2e3bab8a +2024-09-11 09:05:10.202807 2024-09-11 09:05:10.202812 aidref 174571623 R rec 8d9bc44a-14ae-464d-ad23-9c2fc62f5159 +2024-09-11 09:05:10.262657 2024-09-11 09:05:10.262662 aidref 174595174 R rec 8b67b241-24ba-4689-acdf-eab08142e97b +2024-09-11 09:05:10.330635 2024-09-11 09:05:10.330641 aidref 174757131 R rec 9d5c2179-832d-4260-95a2-787d3c5ec457 +2024-09-11 09:05:10.38486 2024-09-11 09:05:10.384865 aidref 175070180 R rec e342aa8e-bd05-4d7a-b225-2b8427218f7f +2024-09-11 09:05:10.438471 2024-09-11 09:05:10.438476 aidref 175084661 R rec a5902582-2121-4433-b181-aadae8fc2474 +2024-09-11 09:05:10.496242 2024-09-11 09:05:10.496247 aidref 175177880 R rec 39a5cfd8-5391-4fcc-b592-43e76a9d999f +2024-09-11 09:05:10.548613 2024-09-11 09:05:10.548618 aidref 175622914 R rec 8723da00-d06a-4a39-bdf2-3acd9c80e52a +2024-09-11 09:05:10.608742 2024-09-11 09:05:10.608748 aidref 175664528 R rec 92d129bf-54f6-4610-b954-c772c1b19919 +2024-09-11 09:05:10.667315 2024-09-11 09:05:10.66732 aidref 175917434 R rec 01d1473e-fa1f-43a7-8cac-d84b045e9e00 +2024-09-11 09:05:10.726064 2024-09-11 09:05:10.72607 aidref 17637874X R rec e7f0cb89-f068-43c0-9f98-adede3cb0ed8 +2024-09-11 09:05:10.781708 2024-09-11 09:05:10.781713 aidref 176586350 R rec e928ea77-e9fd-450f-b7cf-cfb323d38f00 +2024-09-11 09:05:10.83935 2024-09-11 09:05:10.839355 aidref 176752781 R rec b4be8b31-8ae8-40c6-a29f-a7e8a35a4620 +2024-09-11 09:05:10.892505 2024-09-11 09:05:10.892511 aidref 176776613 R rec 2c07c6c0-2ba7-41e1-9b7a-218e62856fff +2024-09-11 09:05:10.959182 2024-09-11 09:05:10.959188 aidref 176834540 R rec 0e28e39a-e121-4f8e-a5d4-2b83db0e44e1 +2024-09-11 09:05:11.012935 2024-09-11 09:05:11.01294 aidref 176929738 R rec a53a8851-5060-4a1b-bf85-f366f44a7d23 +2024-09-11 09:05:11.077363 2024-09-11 09:05:11.077369 aidref 177081724 R rec 1246603a-7348-46f3-adb8-7e18c673de1a +2024-09-11 09:05:11.139239 2024-09-11 09:05:11.139249 aidref 17718101X R rec 69a9e7b7-ea4d-4a55-8ecf-4c63299199b8 +2024-09-11 09:05:11.18981 2024-09-11 09:05:11.189815 aidref 177181516 R rec 746f1f92-2db1-484e-829a-a2888018f752 +2024-09-11 09:05:11.24623 2024-09-11 09:05:11.246235 aidref 17719166X R rec a1eaed18-215b-4413-bc98-84f5725b2e24 +2024-09-11 09:05:11.297217 2024-09-11 09:05:11.297222 aidref 177498056 R rec 96312a9a-0f1f-4c2b-a42d-768931515418 +2024-09-11 09:05:11.352901 2024-09-11 09:05:11.352907 aidref 177564229 R rec d818a315-fe6d-4f94-8642-fb79326e52ab +2024-09-11 09:05:11.410626 2024-09-11 09:05:11.410632 aidref 177597933 R rec 0cbb4ae7-7d32-41ce-a75f-5d8f000dd848 +2024-09-11 09:05:11.464212 2024-09-11 09:05:11.464218 aidref 177966793 R rec 0c241e19-4994-469d-a321-e31b3765a3c6 +2024-09-11 09:05:11.522858 2024-09-11 09:05:11.522864 aidref 178055328 R rec e4ac77a8-51b8-44bc-b22a-5d132bfb8c6e +2024-09-11 09:05:11.593726 2024-09-11 09:05:11.593732 aidref 178123889 R rec edc3a01b-d80e-4ff6-949e-5419cf03f52f +2024-09-11 09:05:11.652056 2024-09-11 09:05:11.652062 aidref 178129887 R rec 1eba97f7-15b5-4627-9466-7fd9051621dc +2024-09-11 09:05:11.705505 2024-09-11 09:05:11.705511 aidref 178131059 R rec ee94a5da-13a9-4001-a7c6-434dff77c107 +2024-09-11 09:05:11.765055 2024-09-11 09:05:11.76506 aidref 178302430 R rec db0eddb3-3d8a-40aa-bcb5-f08d3fb58ce4 +2024-09-11 09:05:11.819108 2024-09-11 09:05:11.819113 aidref 178403431 R rec 02d54ce4-b025-49c1-b6e8-42e940cd1e59 +2024-09-11 09:05:11.87304 2024-09-11 09:05:11.873045 aidref 178642932 R rec 1273ea0c-6328-4400-a598-a862b475af87 +2024-09-11 09:05:11.928415 2024-09-11 09:05:11.92842 aidref 178656275 R rec 426d546a-ab39-4f3a-b811-db32c2bea46e +2024-09-11 09:05:11.980696 2024-09-11 09:05:11.980702 aidref 178750166 R rec 01c55adb-4dff-4735-9be5-edbe87710946 +2024-09-11 09:05:12.0455 2024-09-11 09:05:12.045505 aidref 178887463 R rec bac20415-c303-4eb4-aefa-7adb4bcb649d +2024-09-11 09:05:12.098615 2024-09-11 09:05:12.098622 aidref 178950823 R rec 99bea8ec-3126-4281-ae5a-984d8bc715e9 +2024-09-11 09:05:12.15683 2024-09-11 09:05:12.156835 aidref 179358103 R rec c26f637b-dc20-4c28-9bf3-245d54b2c032 +2024-09-11 09:05:12.213016 2024-09-11 09:05:12.213022 aidref 179410059 R rec 3b1db04c-9f59-45e1-9cdc-3de2f6fc8093 +2024-09-11 09:05:12.273003 2024-09-11 09:05:12.273007 aidref 179487183 R rec 53386eb8-9d26-4d3b-9e40-17fe74081406 +2024-09-11 09:05:12.32832 2024-09-11 09:05:12.328325 aidref 179957805 R rec b152ecd0-adde-4ce3-8dd6-cd182b00e15a +2024-09-11 09:05:12.382343 2024-09-11 09:05:12.382348 aidref 180123580 R rec 91e47f55-36d6-4b7e-a8a6-a68b9e9874dc +2024-09-11 09:05:12.444803 2024-09-11 09:05:12.444808 aidref 180177494 R rec 2fda8324-c2ee-4cfd-8f39-5ebd4e2e1a8d +2024-09-11 09:05:12.499586 2024-09-11 09:05:12.499591 aidref 180568892 R rec ad628c85-6899-47fd-ab76-26a07306055a +2024-09-11 09:05:12.560426 2024-09-11 09:05:12.560431 aidref 180999699 R rec 18739356-8323-43bb-9ca8-213a1ebc556d +2024-09-11 09:05:12.616318 2024-09-11 09:05:12.616326 aidref 18102540X R rec 32ce0b49-8b42-4210-9e26-f96b35e323b4 +2024-09-11 09:05:12.693754 2024-09-11 09:05:12.693759 aidref 181054825 R rec 0ad1cb1a-9bad-4b4e-97de-496a56e2935c +2024-09-11 09:05:12.757943 2024-09-11 09:05:12.757949 aidref 181132931 R rec 393577b6-9649-43d6-a0d3-a5a7994b321b +2024-09-11 09:05:12.814036 2024-09-11 09:05:12.814042 aidref 181254506 R rec 414fd887-1f6c-4d7a-b6c1-f3f3f2e8c460 +2024-09-11 09:05:12.871956 2024-09-11 09:05:12.871961 aidref 181256037 R rec f9d7344c-9e11-4b2f-94f5-a95bcf687402 +2024-09-11 09:05:12.929419 2024-09-11 09:05:12.929424 aidref 181345404 R rec 48220421-66d9-4705-ad63-189be2b926e4 +2024-09-11 09:05:12.987102 2024-09-11 09:05:12.987108 aidref 181448793 R rec c8a10264-a94b-4897-af9f-c931f4607fb6 +2024-09-11 09:05:13.050058 2024-09-11 09:05:13.050064 aidref 181483513 R rec e4a1fe2d-50cb-4b69-a7a6-b4175e6be2ea +2024-09-11 09:05:13.117709 2024-09-11 09:05:13.117715 aidref 181732149 R rec 9ec045b2-e67e-4717-bec3-8fa99ef8070a +2024-09-11 09:05:13.175987 2024-09-11 09:05:13.175992 aidref 181863111 R rec 24cecb19-0e69-431e-8736-2eada4c8ae4f +2024-09-11 09:05:13.235322 2024-09-11 09:05:13.235328 aidref 182214184 R rec 3805b8b8-2383-4aa9-b3d1-c6601fce9712 +2024-09-11 09:05:13.290762 2024-09-11 09:05:13.290768 aidref 182358534 R rec 52846854-7b6f-4327-afad-e00fd6dfa988 +2024-09-11 09:05:13.343333 2024-09-11 09:05:13.343338 aidref 182624250 R rec 60dbe706-f63d-4631-8f49-c5c80ecee40d +2024-09-11 09:05:13.396471 2024-09-11 09:05:13.396475 aidref 182625575 R rec a2545ecf-fff5-4daa-b27f-93b53cae717d +2024-09-11 09:05:13.454174 2024-09-11 09:05:13.454178 aidref 182629589 R rec e69e533b-3563-470b-a1d6-19d64ea80c94 +2024-09-11 09:05:13.505377 2024-09-11 09:05:13.505382 aidref 182693198 R rec 97496737-ab2b-4fbe-91f9-142b1bebee82 +2024-09-11 09:05:13.557536 2024-09-11 09:05:13.557541 aidref 182842819 R rec 0a434ccf-703e-4109-af11-8d424337fee4 +2024-09-11 09:05:13.611495 2024-09-11 09:05:13.6115 aidref 183243641 R rec 448673ac-2c48-49a6-8bf3-58b3759378a8 +2024-09-11 09:05:13.670205 2024-09-11 09:05:13.670212 aidref 183245504 R rec 8aa78d1c-d324-4059-8818-b1603ef008f6 +2024-09-11 09:05:13.730222 2024-09-11 09:05:13.730227 aidref 183295765 R rec a5380a09-de25-4684-8207-f16d7c812c02 +2024-09-11 09:05:13.783117 2024-09-11 09:05:13.783123 aidref 183379861 R rec a9eaca3c-077a-4a1b-a04f-1250679b171c +2024-09-11 09:05:13.834274 2024-09-11 09:05:13.834279 aidref 183426967 R rec 0e4875a5-682b-40ae-8751-afd8a5a16c57 +2024-09-11 09:05:13.887547 2024-09-11 09:05:13.887552 aidref 183511956 R rec e86b2a28-dece-48c4-b860-5c095c8f351f +2024-09-11 09:05:13.94092 2024-09-11 09:05:13.940925 aidref 183544129 R rec d683162e-8816-470e-a1ea-5697c766066f +2024-09-11 09:05:13.999078 2024-09-11 09:05:13.999083 aidref 183723341 R rec fe17ebab-6695-4b25-bc27-46c0d048f1c4 +2024-09-11 09:05:14.055405 2024-09-11 09:05:14.05541 aidref 183871065 R rec c0057cee-cff9-4ae9-8281-7d6b4d1d9123 +2024-09-11 09:05:14.108606 2024-09-11 09:05:14.108612 aidref 18397574X R rec 8e82c74d-a639-4bed-935b-0845e89094af +2024-09-11 09:05:14.163 2024-09-11 09:05:14.163005 aidref 184093546 R rec 10bb4546-5867-4502-98f3-b39b91979ce4 +2024-09-11 09:05:14.21757 2024-09-11 09:05:14.217576 aidref 18439631X R rec 3eb3ddd8-7f4b-4dbf-bbda-116cf4f0534a +2024-09-11 09:05:14.276424 2024-09-11 09:05:14.27643 aidref 184529891 R rec 0f3300ac-a615-4ba2-92c9-a4a1fc94dc08 +2024-09-11 09:05:14.3322 2024-09-11 09:05:14.332205 aidref 184614686 R rec 5dbba708-b291-4573-b791-ed2aec624bb1 +2024-09-11 09:05:14.395509 2024-09-11 09:05:14.395515 aidref 184909961 R rec 96f848d2-73a8-4c2e-8369-29b89d3a30f4 +2024-09-11 09:05:14.448738 2024-09-11 09:05:14.448743 aidref 185067050 R rec f9ff546b-beb2-416a-8871-1b4db8c7625c +2024-09-11 09:05:14.504349 2024-09-11 09:05:14.504355 aidref 185108385 R rec 0fa93904-526b-4a83-9000-f701ca8f2ca9 +2024-09-11 09:05:14.564423 2024-09-11 09:05:14.564428 aidref 185152023 R rec 6449b939-bc1e-4b72-b090-d17f720ebf62 +2024-09-11 09:05:14.617312 2024-09-11 09:05:14.617317 aidref 185165249 R rec 5cfa3db4-fd58-4aaf-bbed-b58bdf0da220 +2024-09-11 09:05:14.672592 2024-09-11 09:05:14.672597 aidref 185264352 R rec dee54624-5cac-4bcc-a1b2-5c6c9b161084 +2024-09-11 09:05:14.731266 2024-09-11 09:05:14.731271 aidref 18526557X R rec adf4a776-69ed-4728-abcf-197a9e16cf4a +2024-09-11 09:05:14.787341 2024-09-11 09:05:14.787346 aidref 18530396X R rec d804a271-347d-4a64-9054-bd144a822659 +2024-09-11 09:05:14.852463 2024-09-11 09:05:14.852469 aidref 185446167 R rec 38d2960e-3209-4dd3-8948-d2469f0de42b +2024-09-11 09:05:14.949909 2024-09-11 09:05:14.949914 aidref 185446221 R rec de0175c3-a4b6-46f5-a921-8381e3c30b53 +2024-09-11 09:05:15.011056 2024-09-11 09:05:15.011062 aidref 185512461 R rec 4c883f50-e319-4c86-925d-3c4d4202821c +2024-09-11 09:05:15.07181 2024-09-11 09:05:15.071818 aidref 185627935 R rec 52ca1b10-f0cc-4d7a-9dab-351de946a389 +2024-09-11 09:05:15.126825 2024-09-11 09:05:15.126831 aidref 185740936 R rec a1eb78fd-4690-42b3-a619-138468a5af8e +2024-09-11 09:05:15.180931 2024-09-11 09:05:15.180936 aidref 185904300 R rec 03af792e-059a-419b-920e-499041b5a7ca +2024-09-11 09:05:15.23393 2024-09-11 09:05:15.233935 aidref 186075480 R rec 87767b96-4664-4a62-bedf-eaf07f6ce5e3 +2024-09-11 09:05:15.289762 2024-09-11 09:05:15.289768 aidref 186152396 R rec b828d987-486e-4368-994c-4eff3948e6ef +2024-09-11 09:05:15.348279 2024-09-11 09:05:15.348284 aidref 186272758 R rec b2f0bc2d-b18d-4209-a179-58fd6902d7cc +2024-09-11 09:05:15.409996 2024-09-11 09:05:15.410001 aidref 186354614 R rec 20fc2573-df56-47ef-8168-6d81965fab39 +2024-09-11 09:05:15.462463 2024-09-11 09:05:15.462468 aidref 18642597X R rec 20b7cf0b-54c8-4cc4-b51a-9a47116e1631 +2024-09-11 09:05:15.517178 2024-09-11 09:05:15.517183 aidref 186429495 R rec 61dc9f2c-ee19-49c9-ac7b-cd40a9fef1bc +2024-09-11 09:05:15.573807 2024-09-11 09:05:15.573812 aidref 187118914 R rec affedfb7-1dbd-4df3-bbba-89058c6721c1 +2024-09-11 09:05:15.625973 2024-09-11 09:05:15.625979 aidref 187432627 R rec 94499464-c7a4-4d75-b826-376f926ffdb2 +2024-09-11 09:05:15.677022 2024-09-11 09:05:15.677026 aidref 187440085 R rec 21f01b28-7f7b-4688-9934-17441a833415 +2024-09-11 09:05:15.730437 2024-09-11 09:05:15.730442 aidref 187474192 R rec d52e0c8f-3824-46af-8634-9c77ae97d7a0 +2024-09-11 09:05:15.788951 2024-09-11 09:05:15.788956 aidref 187512272 R rec 76555d3b-8544-4b8f-b247-53ff4ba43a53 +2024-09-11 09:05:15.843124 2024-09-11 09:05:15.84313 aidref 187515441 R rec f4726bad-67dc-46eb-9765-f7ee23652ae6 +2024-09-11 09:05:15.896015 2024-09-11 09:05:15.896021 aidref 187519374 R rec b2dc6fbd-b348-401c-a6ba-9e0459e76186 +2024-09-11 09:05:15.949027 2024-09-11 09:05:15.949033 aidref 18786893X R rec 0d398bfd-a036-4ffb-88fd-5f41b99eceb0 +2024-09-11 09:05:16.005596 2024-09-11 09:05:16.005601 aidref 188048383 R rec 3488ff95-08cc-4b0b-92c6-07faed6c12d3 +2024-09-11 09:05:16.061701 2024-09-11 09:05:16.061707 aidref 188624295 R rec 338e021f-370c-41a6-8879-466dbf03b634 +2024-09-11 09:05:16.131689 2024-09-11 09:05:16.131696 aidref 188652647 R rec d9e0704e-37e5-4eaf-afa3-6a3b246ac03b +2024-09-11 09:05:16.214465 2024-09-11 09:05:16.21447 aidref 188721665 R rec b3e8107e-77b3-45e4-8199-83f349c2088b +2024-09-11 09:05:16.273741 2024-09-11 09:05:16.273746 aidref 188848614 R rec c8c87fa3-3842-46b8-a2b3-6e0e95aa5f92 +2024-09-11 09:05:16.324886 2024-09-11 09:05:16.324891 aidref 18897394X R rec fd528232-b6c6-49e6-bc9e-e37289e99aa8 +2024-09-11 09:05:16.395162 2024-09-11 09:05:16.395167 aidref 189006161 R rec 77187578-e83d-4a91-a3f7-9ecff9599e7d +2024-09-11 09:05:16.444985 2024-09-11 09:05:16.44499 aidref 189240113 R rec 175ab508-ba1d-4cf5-947d-e6ab18104998 +2024-09-11 09:05:16.498473 2024-09-11 09:05:16.498478 aidref 189252138 R rec 0639740f-1a96-488d-92c5-d55be241c6a2 +2024-09-11 09:05:16.551658 2024-09-11 09:05:16.551664 aidref 189322454 R rec 94fd51a0-d12c-40c2-baec-049051446676 +2024-09-11 09:05:16.611846 2024-09-11 09:05:16.611852 aidref 189510145 R rec 90e409d8-11eb-496d-88fe-eea15a18f048 +2024-09-11 09:05:16.67307 2024-09-11 09:05:16.673075 aidref 189789581 R rec 4e7e764b-43b1-487e-9dc3-ea5d2626f81a +2024-09-11 09:05:16.739567 2024-09-11 09:05:16.739572 aidref 189897678 R rec 2634e447-6d37-4001-926c-34f9e0d40405 +2024-09-11 09:05:16.791713 2024-09-11 09:05:16.791718 aidref 189921080 R rec 89066fe9-d8bf-4fb0-9db4-22260fa2f705 +2024-09-11 09:05:16.84543 2024-09-11 09:05:16.845435 aidref 190050721 R rec bf0c1b6e-a848-4757-923b-b1149ca03096 +2024-09-11 09:05:16.9085 2024-09-11 09:05:16.908505 aidref 190056002 R rec d8755100-3523-4713-bcbd-355e95061e2d +2024-09-11 09:05:16.965657 2024-09-11 09:05:16.965662 aidref 190064323 R rec 429491c3-159a-4af8-96c7-c3d4801533f4 +2024-09-11 09:05:17.016831 2024-09-11 09:05:17.016837 aidref 190122277 R rec edce13a7-b6fc-465e-a0d7-267fc0908d2e +2024-09-11 09:05:17.076821 2024-09-11 09:05:17.076827 aidref 190133139 R rec f50775cf-e5d7-4380-8ffb-1aae43aa294a +2024-09-11 09:05:17.131634 2024-09-11 09:05:17.13164 aidref 190148667 R rec 131b19b5-36ca-47f2-8562-087d6bc31dae +2024-09-11 09:05:17.189654 2024-09-11 09:05:17.189659 aidref 19024951X R rec e6fc534b-bf31-4500-b31d-c124e7f2401b +2024-09-11 09:05:17.2613 2024-09-11 09:05:17.261306 aidref 190365420 R rec 24aae7cd-3da6-4731-84d6-53aca39709d2 +2024-09-11 09:05:17.317983 2024-09-11 09:05:17.317989 aidref 190401370 R rec d7a8a2b9-fbaa-41cc-aa61-b775009e7eb4 +2024-09-11 09:05:17.37421 2024-09-11 09:05:17.374215 aidref 190408413 R rec 1af8be8b-14d6-4b6c-b726-74a6ee2687cc +2024-09-11 09:05:17.424986 2024-09-11 09:05:17.424991 aidref 190629525 R rec cea867b6-6416-4a41-93e9-b6956a32e234 +2024-09-11 09:05:17.479765 2024-09-11 09:05:17.479771 aidref 190679204 R rec 09a16e70-482a-4e1b-af25-7790db57f08f +2024-09-11 09:05:17.533506 2024-09-11 09:05:17.533511 aidref 190701285 R rec 6f36cf6a-be60-4145-b5ce-02527cc4ef13 +2024-09-11 09:05:17.587777 2024-09-11 09:05:17.587781 aidref 190708085 R rec b0fce922-a378-4d5e-89ff-5a37670ae447 +2024-09-11 09:05:17.641598 2024-09-11 09:05:17.641603 aidref 190712120 R rec 02e10adc-7ef9-4624-8965-6b4c41b1c531 +2024-09-11 09:05:17.697032 2024-09-11 09:05:17.697036 aidref 190913142 R rec dee93fd8-573d-4d85-a07a-996d894aac30 +2024-09-11 09:05:17.756627 2024-09-11 09:05:17.756632 aidref 19105254X R rec 7e4e23ce-25f4-4749-907c-7da105b5658e +2024-09-11 09:05:17.808853 2024-09-11 09:05:17.808857 aidref 191057142 R rec 4f680c23-0091-4076-adac-29569aaf5a4b +2024-09-11 09:05:17.866899 2024-09-11 09:05:17.866904 aidref 19107425X R rec bf7e66a6-11ff-4e7e-ba76-9621d16a166e +2024-09-11 09:05:17.927295 2024-09-11 09:05:17.9273 aidref 191305928 R rec 61f7f3e1-e12d-4bb9-afa1-88e7c557edd8 +2024-09-11 09:05:17.980221 2024-09-11 09:05:17.980226 aidref 191591335 R rec c1b0321f-326b-41a1-9219-fd88249d966a +2024-09-11 09:05:18.033291 2024-09-11 09:05:18.033296 aidref 191603449 R rec 6d338fdb-3d2a-45e3-acce-c122cf084eb8 +2024-09-11 09:05:18.08785 2024-09-11 09:05:18.087855 aidref 191644315 R rec 09a5250b-ee00-4e6a-868d-f7882d5fa3e3 +2024-09-11 09:05:18.145865 2024-09-11 09:05:18.145871 aidref 191710849 R rec 31f69798-fa90-4731-b732-923d10ef53ef +2024-09-11 09:05:18.200593 2024-09-11 09:05:18.2006 aidref 191721166 R rec 740600ea-303e-4ba8-b694-34ee1daca028 +2024-09-11 09:05:18.256297 2024-09-11 09:05:18.256302 aidref 191808105 R rec cb074147-5b4f-4ae8-a932-55030e165960 +2024-09-11 09:05:18.325618 2024-09-11 09:05:18.325624 aidref 192012401 R rec 7d324c14-29d3-408b-ab5f-b9c8033117fb +2024-09-11 09:05:18.386275 2024-09-11 09:05:18.386281 aidref 192166506 R rec b93c6960-cbfe-4f05-a958-f169940c3c0a +2024-09-11 09:05:18.441619 2024-09-11 09:05:18.441624 aidref 192198149 R rec e36e0ede-56a6-4975-8cd7-a2dc00c63915 +2024-09-11 09:05:18.510265 2024-09-11 09:05:18.510271 aidref 192269097 R rec 85e33c6e-1bd0-45af-9e6e-4cf244cda0cf +2024-09-11 09:05:18.575798 2024-09-11 09:05:18.575804 aidref 192280953 R rec bd1d3b68-f819-4500-af47-6ccd877bf82e +2024-09-11 09:05:18.629602 2024-09-11 09:05:18.629609 aidref 192298348 R rec 4f12a57e-0e9f-489a-965c-06c9cdb2b092 +2024-09-11 09:05:18.690835 2024-09-11 09:05:18.690841 aidref 192319116 R rec 18d09607-8cc6-4943-9fc7-552cd70397a4 +2024-09-11 09:05:18.746689 2024-09-11 09:05:18.746696 aidref 19239486X R rec a74b61ce-e5c8-47d0-80ea-f08f275d2487 +2024-09-11 09:05:18.797014 2024-09-11 09:05:18.79702 aidref 192408909 R rec 715f1ed6-1b42-4b28-90d7-90e3dfd098d7 +2024-09-11 09:05:18.851396 2024-09-11 09:05:18.851402 aidref 192529641 R rec 2d341330-44e9-4a78-a923-25c5c7d34adc +2024-09-11 09:05:18.90849 2024-09-11 09:05:18.908496 aidref 192628496 R rec 79655b7e-4b10-483a-a052-0f23ecc3002c +2024-09-11 09:05:18.970658 2024-09-11 09:05:18.970664 aidref 192640895 R rec 54fdc2d7-9c47-4d75-b7f5-ff9c75faedd5 +2024-09-11 09:05:19.022604 2024-09-11 09:05:19.022609 aidref 192658697 R rec 2939690d-f99f-4ed5-ac8a-b4abcaa162e7 +2024-09-11 09:05:19.073427 2024-09-11 09:05:19.073432 aidref 192776851 R rec 6aa4263a-fac8-462a-be88-ad8ba7d6d7cc +2024-09-11 09:05:19.132341 2024-09-11 09:05:19.132347 aidref 192790099 R rec af9bce40-9463-4ca1-9abd-2914a052c018 +2024-09-11 09:05:19.191695 2024-09-11 09:05:19.191702 aidref 192856200 R rec 9c348970-d252-4a5a-8a8a-a97a6806e771 +2024-09-11 09:05:19.249021 2024-09-11 09:05:19.249027 aidref 192883313 R rec e3b7500f-cf2d-43b7-a227-600d6b10d23c +2024-09-11 09:05:19.300444 2024-09-11 09:05:19.300449 aidref 192969285 R rec cfe8bb04-fe9f-4e5e-a7e8-2535b44c6b6f +2024-09-11 09:05:19.353623 2024-09-11 09:05:19.353629 aidref 193161109 R rec 7196b066-8afa-44f4-860c-25b97b1589c5 +2024-09-11 09:05:19.410917 2024-09-11 09:05:19.410923 aidref 193173328 R rec 620b3c07-b2d9-43de-b9d9-b14a260e0c2e +2024-09-11 09:05:19.464723 2024-09-11 09:05:19.464728 aidref 193181878 R rec 30556109-c724-4191-bb00-3e2fa5ceb30c +2024-09-11 09:05:19.540862 2024-09-11 09:05:19.540867 aidref 193183226 R rec f0253e6a-d9b0-4f3b-8423-a2e6fed99fcc +2024-09-11 09:05:19.593673 2024-09-11 09:05:19.593678 aidref 193223287 R rec f04b800c-59ef-4f6e-a136-266eca33325d +2024-09-11 09:05:19.645667 2024-09-11 09:05:19.645673 aidref 193276348 R rec 2d112f1c-50dd-476a-a02d-24067031ce2e +2024-09-11 09:05:19.70347 2024-09-11 09:05:19.703476 aidref 193284065 R rec 63a7793f-c8a8-4e9c-b8b5-39f1affae593 +2024-09-11 09:05:19.759448 2024-09-11 09:05:19.759454 aidref 19329074X R rec 4aca1847-059e-465c-baa6-915ccede60cd +2024-09-11 09:05:19.823591 2024-09-11 09:05:19.823597 aidref 193499975 R rec 8754dd85-5535-4521-8ebc-de1a57e0f164 +2024-09-11 09:05:19.883553 2024-09-11 09:05:19.883559 aidref 193585057 R rec e2c28b2a-d3d9-499f-8eb4-a825fb119b04 +2024-09-11 09:05:19.940993 2024-09-11 09:05:19.940998 aidref 193705974 R rec 931fcbdf-e5d9-4966-8903-bff43ced86da +2024-09-11 09:05:20.003079 2024-09-11 09:05:20.003085 aidref 193736063 R rec 8aebc783-ef38-47cd-9ad5-7711f1e83811 +2024-09-11 09:05:20.058829 2024-09-11 09:05:20.058834 aidref 193779587 R rec eb108dfe-4ad1-48a5-8ab6-4ece07b3682e +2024-09-11 09:05:20.120223 2024-09-11 09:05:20.120228 aidref 193809699 R rec a9930988-eeb4-448a-a588-2a4d31108c82 +2024-09-11 09:05:20.177697 2024-09-11 09:05:20.177702 aidref 193825813 R rec 513422fe-0f2c-4334-aa60-0357b4b41360 +2024-09-11 09:05:20.232939 2024-09-11 09:05:20.232944 aidref 193876191 R rec 4a577f6c-7ddf-4bbf-8b42-d24e8216d983 +2024-09-11 09:05:20.28602 2024-09-11 09:05:20.286026 aidref 193955482 R rec 4f9fe644-287e-4c5e-bdfd-a83c8341de0b +2024-09-11 09:05:20.343453 2024-09-11 09:05:20.343458 aidref 193982269 R rec 39d75985-5abc-44d3-81d2-72070fc987a1 +2024-09-11 09:05:20.406448 2024-09-11 09:05:20.406453 aidref 194122603 R rec 86f34b4c-ad83-462c-86a6-121c4e79c87e +2024-09-11 09:05:20.464434 2024-09-11 09:05:20.464439 aidref 194162419 R rec 9dc50612-6e99-4ddd-ace8-5cfbc196e260 +2024-09-11 09:05:20.524226 2024-09-11 09:05:20.524231 aidref 194167070 R rec 0a9c5287-8886-4dfc-bb9e-94bc1f91e792 +2024-09-11 09:05:20.581413 2024-09-11 09:05:20.581419 aidref 194445089 R rec 7532cef9-5586-473f-b0fb-a924f6d2a6ff +2024-09-11 09:05:20.655671 2024-09-11 09:05:20.655677 aidref 194503941 R rec 1369fa3e-9762-477c-a023-d51dca8a1390 +2024-09-11 09:05:20.71358 2024-09-11 09:05:20.713586 aidref 194564932 R rec 7b0fe005-62a5-47a8-9a72-ae6e0bce9c86 +2024-09-11 09:05:20.765837 2024-09-11 09:05:20.765842 aidref 194577058 R rec ebc80a3f-c292-4b9d-aca1-cb5f113d2364 +2024-09-11 09:05:20.816922 2024-09-11 09:05:20.816928 aidref 194588718 R rec df267045-1688-4dda-98ae-7c3e51a2fef8 +2024-09-11 09:05:20.872747 2024-09-11 09:05:20.872753 aidref 194616320 R rec b49ab874-3c45-49af-b405-955d8285f511 +2024-09-11 09:05:20.934843 2024-09-11 09:05:20.934849 aidref 194625036 R rec bc6ab726-29bb-48d6-8b73-d2cb47aae233 +2024-09-11 09:05:20.989705 2024-09-11 09:05:20.98971 aidref 194925625 R rec f894b6a9-be90-459e-b3ce-d15a0fe4d030 +2024-09-11 09:05:21.042971 2024-09-11 09:05:21.042976 aidref 195021371 R rec bfd6ad5d-d187-4783-a137-614077ad1cb4 +2024-09-11 09:05:21.096758 2024-09-11 09:05:21.096763 aidref 195226267 R rec 217309ae-fe53-4195-beb1-55d0e1d3724b +2024-09-11 09:05:21.156055 2024-09-11 09:05:21.156059 aidref 195247922 R rec 81707088-7c8c-4f0e-9952-2ba04eb1beed +2024-09-11 09:05:21.212866 2024-09-11 09:05:21.212871 aidref 195263472 R rec 93d05125-f7ec-44e8-8d6c-fe73c73e6408 +2024-09-11 09:05:21.264482 2024-09-11 09:05:21.264486 aidref 195274059 R rec 835ca507-3079-4a88-bd5d-cb906dd6d4bf +2024-09-11 09:05:21.322141 2024-09-11 09:05:21.322146 aidref 195276205 R rec 7b29b6ff-188a-4ffa-95e1-2a8d5f4dd320 +2024-09-11 09:05:21.376467 2024-09-11 09:05:21.376473 aidref 195286227 R rec 7a240236-57ce-4eba-9aff-e31684e1462d +2024-09-11 09:05:21.427488 2024-09-11 09:05:21.427494 aidref 19529534X R rec 58805089-3b8b-4532-8145-bcb5926609e2 +2024-09-11 09:05:21.48728 2024-09-11 09:05:21.487286 aidref 195370317 R rec 71f0e2c0-07a0-447c-ad05-e044290f6e21 +2024-09-11 09:05:21.535727 2024-09-11 09:05:21.535733 aidref 195403460 R rec d0e69c4e-06e5-4727-b131-c88a5d8746fe +2024-09-11 09:05:21.58871 2024-09-11 09:05:21.588715 aidref 195430662 R rec 690f93fc-2d24-4b16-84df-88bf422cd56b +2024-09-11 09:05:21.645425 2024-09-11 09:05:21.645431 aidref 19544504X R rec 70522e59-d4dc-4c1c-8369-533a71fc70f5 +2024-09-11 09:05:21.699375 2024-09-11 09:05:21.69938 aidref 195458575 R rec a4e3109e-e508-4bb5-9be6-eb6b2b7abc75 +2024-09-11 09:05:21.755251 2024-09-11 09:05:21.755256 aidref 195541855 R rec 0e153afe-6166-487c-8a99-fa0e86d7727d +2024-09-11 09:05:21.812977 2024-09-11 09:05:21.812982 aidref 195544439 R rec 03845ba0-e304-427c-a5e6-d7276f397d95 +2024-09-11 09:05:21.871301 2024-09-11 09:05:21.871307 aidref 195555228 R rec 892ea4a1-e375-468f-8f0b-6338f927ab82 +2024-09-11 09:05:21.933788 2024-09-11 09:05:21.933794 aidref 195708814 R rec 73a090e7-a380-4b2e-8990-dcdc6a5a0834 +2024-09-11 09:05:22.002137 2024-09-11 09:05:22.002143 aidref 195713133 R rec f39d8497-66d9-4722-97eb-7e147c53e10e +2024-09-11 09:05:22.05576 2024-09-11 09:05:22.055765 aidref 195791258 R rec 6cc3479f-2e6a-4f8e-9d02-001a9b5db2e5 +2024-09-11 09:05:22.106393 2024-09-11 09:05:22.106399 aidref 195824431 R rec 526f346b-8796-476f-85b3-f1c64f1ddd37 +2024-09-11 09:05:22.161096 2024-09-11 09:05:22.161102 aidref 195941942 R rec 7ef0d92a-29cf-406a-8423-aebf979c2ac8 +2024-09-11 09:05:22.214322 2024-09-11 09:05:22.214328 aidref 196095700 R rec 3962fac0-6a47-477c-92b5-96005b5731b9 +2024-09-11 09:05:22.266215 2024-09-11 09:05:22.266219 aidref 196155487 R rec f02e9ac0-027e-4d39-b636-0ffa54d43661 +2024-09-11 09:05:22.322476 2024-09-11 09:05:22.322482 aidref 196254795 R rec f4204fcd-eef1-498d-af29-a75d27c2eee6 +2024-09-11 09:05:22.38414 2024-09-11 09:05:22.384145 aidref 196282411 R rec 4145d62c-2a7b-447e-bef0-77f02302b19f +2024-09-11 09:05:22.445278 2024-09-11 09:05:22.445284 aidref 196313910 R rec 8ca569c6-aa21-48c0-971b-d98da9f37287 +2024-09-11 09:05:22.498733 2024-09-11 09:05:22.498738 aidref 196337208 R rec 22b63b73-b0d9-40ce-beb6-3bda30e0e4b3 +2024-09-11 09:05:22.55581 2024-09-11 09:05:22.555816 aidref 196341280 R rec 6f8cf138-d205-40b5-a259-e3fdc69c1bf3 +2024-09-11 09:05:22.610064 2024-09-11 09:05:22.610069 aidref 196405750 R rec d21c4e50-0395-4110-8e5b-43a48e504453 +2024-09-11 09:05:22.666507 2024-09-11 09:05:22.666512 aidref 196409500 R rec ae2168c7-3402-4a92-be27-b684eb90a703 +2024-09-11 09:05:22.721131 2024-09-11 09:05:22.721136 aidref 196425840 R rec 0fbca3ba-1225-4253-bf54-30866eed3602 +2024-09-11 09:05:22.784166 2024-09-11 09:05:22.784171 aidref 196435099 R rec 40082a8d-124a-4dec-90cf-df7dfb656415 +2024-09-11 09:05:22.84275 2024-09-11 09:05:22.842755 aidref 196452341 R rec e826ee65-ff40-4dfe-8ab3-a3fcf356e4b5 +2024-09-11 09:05:22.899063 2024-09-11 09:05:22.899068 aidref 196511275 R rec 398968ce-4465-43e7-845c-c87bce55720c +2024-09-11 09:05:22.95532 2024-09-11 09:05:22.955325 aidref 196538637 R rec cb54a1f9-bbe2-4c8a-932b-923c643cd6d2 +2024-09-11 09:05:23.007874 2024-09-11 09:05:23.007879 aidref 196539102 R rec 25f2260b-aee6-419b-a37f-e23f9413f703 +2024-09-11 09:05:23.06351 2024-09-11 09:05:23.063515 aidref 196540429 R rec ef860b7a-c724-411c-b559-798049fd3a66 +2024-09-11 09:05:23.115472 2024-09-11 09:05:23.115477 aidref 196575214 R rec c0482431-b4c5-49bf-9f5c-237fd6930ce5 +2024-09-11 09:05:23.183245 2024-09-11 09:05:23.183251 aidref 196694531 R rec ffcd0dc1-8a76-481a-a00e-498c3246bb19 +2024-09-11 09:05:23.238378 2024-09-11 09:05:23.238383 aidref 196706831 R rec 1163574a-16de-4d62-ab73-788f66385e6b +2024-09-11 09:05:23.298259 2024-09-11 09:05:23.298264 aidref 196728711 R rec 29dd397b-9f00-40a7-ba22-4096dae91423 +2024-09-11 09:05:23.354909 2024-09-11 09:05:23.354915 aidref 196814944 R rec e9ceda9b-f710-4590-8ab2-972ddf54e57c +2024-09-11 09:05:23.407026 2024-09-11 09:05:23.407031 aidref 196859883 R rec e90b0559-0435-43c2-a7d2-b845be40d72f +2024-09-11 09:05:23.462027 2024-09-11 09:05:23.462033 aidref 196887429 R rec 6b1a041e-e44a-453e-b375-315b254a95fb +2024-09-11 09:05:23.515673 2024-09-11 09:05:23.515678 aidref 197014984 R rec 19395bd1-fe54-458b-a6c7-504e17e30c7a +2024-09-11 09:05:23.571433 2024-09-11 09:05:23.571438 aidref 197035167 R rec 327d0472-7a09-41e5-b1ce-851e820db9b1 +2024-09-11 09:05:23.624604 2024-09-11 09:05:23.624609 aidref 197073077 R rec d043269d-348f-471a-91a2-55832a1122ed +2024-09-11 09:05:23.677075 2024-09-11 09:05:23.67708 aidref 197115047 R rec a4770ba5-d40e-4d6f-b5ea-5b3391cfab3e +2024-09-11 09:05:23.737086 2024-09-11 09:05:23.737094 aidref 197132588 R rec 8a0dd9e6-a56b-4f28-8c52-89644c632684 +2024-09-11 09:05:23.797906 2024-09-11 09:05:23.797911 aidref 197226809 R rec 4bf27cf3-71bc-40b6-a3c3-333e8c6157b0 +2024-09-11 09:05:23.85735 2024-09-11 09:05:23.857355 aidref 197280544 R rec e42e5335-88ab-422f-8b71-f996bfbbcc35 +2024-09-11 09:05:23.910474 2024-09-11 09:05:23.910479 aidref 197391648 R rec 7e2f9b8c-5de9-44ce-b2a4-e7f2108ef969 +2024-09-11 09:05:23.968379 2024-09-11 09:05:23.968386 aidref 197394795 R rec 6779980c-2ec0-4294-9e49-8c0f4469acef +2024-09-11 09:05:24.02105 2024-09-11 09:05:24.021055 aidref 197444067 R rec 7c0c3484-e469-47e1-93c6-1f5bffdf2c94 +2024-09-11 09:05:24.075073 2024-09-11 09:05:24.075079 aidref 197444881 R rec 46830a52-1583-459c-9383-7bd6e508ddef +2024-09-11 09:05:24.134041 2024-09-11 09:05:24.134047 aidref 197511392 R rec 5669569f-e060-49e6-9f0d-920e9d2d9048 +2024-09-11 09:05:24.189847 2024-09-11 09:05:24.189851 aidref 197533590 R rec ecd56914-7951-478f-a39a-1e5d3ce6f124 +2024-09-11 09:05:24.248665 2024-09-11 09:05:24.248669 aidref 197593968 R rec bf3ef154-7a0f-4524-ab73-826cdd695fc3 +2024-09-11 09:05:24.311303 2024-09-11 09:05:24.311308 aidref 197623549 R rec ca52e43a-943a-464a-8226-68f7f2c1375f +2024-09-11 09:05:24.367392 2024-09-11 09:05:24.367398 aidref 197687717 R rec c3403505-b12b-41ea-b4ec-47240d5bfec7 +2024-09-11 09:05:24.427344 2024-09-11 09:05:24.427349 aidref 197696597 R rec 3fa64289-13e4-4e59-81ba-737986e45106 +2024-09-11 09:05:24.482087 2024-09-11 09:05:24.482092 aidref 197997961 R rec 777974db-592d-4bd4-bae8-e13d9db512e1 +2024-09-11 09:05:24.536125 2024-09-11 09:05:24.53613 aidref 198193327 R rec 56b8a098-97fe-4d36-a4bf-8844733a8f09 +2024-09-11 09:05:24.596441 2024-09-11 09:05:24.596446 aidref 198217447 R rec 01334d8c-7185-4220-806c-d72852040478 +2024-09-11 09:05:24.66832 2024-09-11 09:05:24.668327 aidref 198395361 R rec 8364924e-74e3-4521-8ffa-d34fb25c34b4 +2024-09-11 09:05:24.72166 2024-09-11 09:05:24.721665 aidref 198493231 R rec 75f96cf5-7b8c-4b8c-8e51-e4f89b433b9e +2024-09-11 09:05:24.775653 2024-09-11 09:05:24.775659 aidref 198494289 R rec 32df48a7-06e6-4fd3-8eb7-1b39cbd66f48 +2024-09-11 09:05:24.834923 2024-09-11 09:05:24.834928 aidref 19859318X R rec c7750f5e-5ce7-47fc-a625-9ed77247e7e5 +2024-09-11 09:05:24.901307 2024-09-11 09:05:24.901312 aidref 19870125X R rec 8304f43e-8f9d-4c63-88b5-d04036a41e33 +2024-09-11 09:05:24.96187 2024-09-11 09:05:24.961875 aidref 199108617 R rec a6db5598-2c48-4341-9a9e-6c759473f7cf +2024-09-11 09:05:25.024835 2024-09-11 09:05:25.02484 aidref 199119961 R rec 00d2257f-0915-4d26-80f1-f1b26a9a4827 +2024-09-11 09:05:25.085951 2024-09-11 09:05:25.085956 aidref 19915631X R rec e24977fe-097b-4f9a-920f-e307f7a5230a +2024-09-11 09:05:25.141719 2024-09-11 09:05:25.141725 aidref 199168326 R rec 1b33832c-aed3-45c9-bfcc-bcab571af519 +2024-09-11 09:05:25.194733 2024-09-11 09:05:25.194739 aidref 199187606 R rec 79b1235c-4577-467a-9121-e2c417616529 +2024-09-11 09:05:25.283498 2024-09-11 09:05:25.283503 aidref 19921347X R rec a163a975-43c9-4cd5-bcf9-5e48913ea331 +2024-09-11 09:05:25.351233 2024-09-11 09:05:25.351239 aidref 199238324 R rec 56c51f75-f116-4a7e-8661-6630abf308c6 +2024-09-11 09:05:25.407751 2024-09-11 09:05:25.407757 aidref 199257213 R rec b805482e-e54d-4fa0-a3d3-003248e3d244 +2024-09-11 09:05:25.462373 2024-09-11 09:05:25.462378 aidref 199258813 R rec a21ac9c7-4325-429e-9c9f-525e3926d30e +2024-09-11 09:05:25.51947 2024-09-11 09:05:25.519476 aidref 199336776 R rec d0a88906-a65b-4dc0-92f7-6450a6ae4a83 +2024-09-11 09:05:25.574834 2024-09-11 09:05:25.57484 aidref 199441863 R rec f5b4f74f-c1ac-4b16-82cc-501e4cedba1c +2024-09-11 09:05:25.627803 2024-09-11 09:05:25.627808 aidref 199452857 R rec 459f78ea-e07f-4eda-a6f2-7c6c23205165 +2024-09-11 09:05:25.681587 2024-09-11 09:05:25.681592 aidref 199464669 R rec 32c41d06-e8b4-4e52-91f1-fbd24845efbc +2024-09-11 09:05:25.735451 2024-09-11 09:05:25.735457 aidref 19954770X R rec a33dd4f6-a916-4eca-ac31-e46f8ae89995 +2024-09-11 09:05:25.78814 2024-09-11 09:05:25.788145 aidref 199555907 R rec 07224661-6042-4586-aa06-46b4cb4004a6 +2024-09-11 09:05:25.843033 2024-09-11 09:05:25.843038 aidref 19960097X R rec e6ce8607-e296-436b-b6b0-e40c8a6e0c5c +2024-09-11 09:05:25.896953 2024-09-11 09:05:25.896957 aidref 199679150 R rec 9c716631-a923-4a42-9d7f-4d4ef7715b32 +2024-09-11 09:05:25.954428 2024-09-11 09:05:25.954433 aidref 199716498 R rec 47d46752-d456-432f-b7f7-a59281126369 +2024-09-11 09:05:26.009647 2024-09-11 09:05:26.009653 aidref 199742022 R rec 1d0b6ddc-e8ff-494b-867a-3cdd5375ac35 +2024-09-11 09:05:26.071408 2024-09-11 09:05:26.071414 aidref 199749736 R rec d7dae85f-a58a-41cf-95ef-ff5966336c9e +2024-09-11 09:05:26.125556 2024-09-11 09:05:26.125562 aidref 199777381 R rec 51019a2c-b221-492e-9828-51d05c142c97 +2024-09-11 09:05:26.182937 2024-09-11 09:05:26.182943 aidref 199828121 R rec 1866e841-77ba-4d7f-a57f-1c3ee6c9e7fd +2024-09-11 09:05:26.243582 2024-09-11 09:05:26.243588 aidref 200127748 R rec 02f41e41-91a9-452d-acb8-2dbe48988597 +2024-09-11 09:05:26.294497 2024-09-11 09:05:26.294503 aidref 200138766 R rec 318ba5a8-20ce-4ffd-81e8-8289488e87dc +2024-09-11 09:05:26.344995 2024-09-11 09:05:26.345001 aidref 200141163 R rec d72200aa-1d85-4ae3-bf66-4395ed2411c3 +2024-09-11 09:05:26.405863 2024-09-11 09:05:26.405868 aidref 200238574 R rec 785785c2-058e-41e3-befd-d0bbda71458c +2024-09-11 09:05:26.457458 2024-09-11 09:05:26.457463 aidref 200252933 R rec e1e986e3-d67b-4bad-8c34-3418d76c3f49 +2024-09-11 09:05:26.511277 2024-09-11 09:05:26.511282 aidref 200400525 R rec d25fde62-319c-4938-ae12-2cc9fe16e2c3 +2024-09-11 09:05:26.564869 2024-09-11 09:05:26.564874 aidref 200469169 R rec fc744107-9231-4297-ab17-41808f81dc82 +2024-09-11 09:05:26.632217 2024-09-11 09:05:26.632223 aidref 200480111 R rec 4796c41e-1f64-4591-8727-6aafe08d0d8f +2024-09-11 09:05:26.702037 2024-09-11 09:05:26.702043 aidref 200480391 R rec a6ecf3bd-94e8-43e3-a220-9ff57254538d +2024-09-11 09:05:26.755498 2024-09-11 09:05:26.755502 aidref 200497065 R rec a6f6650d-e9c7-45a7-aa74-099c5c4c6166 +2024-09-11 09:05:26.812457 2024-09-11 09:05:26.812463 aidref 200524925 R rec c60334b1-4155-4cce-a0de-7d7e2a46707b +2024-09-11 09:05:26.863279 2024-09-11 09:05:26.863283 aidref 200581627 R rec 2a8c4576-64a5-4179-b89f-98f3fbe2e566 +2024-09-11 09:05:26.916193 2024-09-11 09:05:26.916199 aidref 200646788 R rec a8aec764-7ec6-44cb-97a3-738251f1919d +2024-09-11 09:05:26.96818 2024-09-11 09:05:26.968187 aidref 200661531 R rec b5f1d6eb-33b6-4c1f-9c22-871cc5bfa492 +2024-09-11 09:05:27.028313 2024-09-11 09:05:27.028318 aidref 20071659X R rec f1e235d5-63d6-4696-825e-9df1dd662730 +2024-09-11 09:05:27.08323 2024-09-11 09:05:27.083236 aidref 200723421 R rec 10296c7c-0bdd-489c-a60d-1a622b87d236 +2024-09-11 09:05:27.139977 2024-09-11 09:05:27.139982 aidref 20082807X R rec b347325b-682d-4291-a0aa-7f62a062ddd3 +2024-09-11 09:05:27.197627 2024-09-11 09:05:27.197632 aidref 201287617 R rec 76272521-02c4-4e17-8b2e-014cc82ac25b +2024-09-11 09:05:27.258535 2024-09-11 09:05:27.25854 aidref 201289377 R rec 6bb58532-a3fc-4724-9fa9-dfd9549100ae +2024-09-11 09:05:27.31657 2024-09-11 09:05:27.316576 aidref 201301040 R rec 80776bd7-caf8-4594-bdc8-4e492c512d22 +2024-09-11 09:05:27.372164 2024-09-11 09:05:27.372169 aidref 201306824 R rec 8a07fae0-3d54-4f6c-bc1a-eb0e4d6b5cf7 +2024-09-11 09:05:27.434521 2024-09-11 09:05:27.434526 aidref 201480034 R rec dbd4f5e7-2d70-4a4e-829a-daf5633da0d6 +2024-09-11 09:05:27.487373 2024-09-11 09:05:27.487378 aidref 201609924 R rec c32c8d81-3bf5-4195-a56d-77e31ab960eb +2024-09-11 09:05:27.546531 2024-09-11 09:05:27.546537 aidref 201643936 R rec 4f2526ec-2b4a-4646-8e61-6c670726d8d0 +2024-09-11 09:05:27.600353 2024-09-11 09:05:27.600359 aidref 201672618 R rec 97295339-b7f2-4597-a952-c7f62feb8e01 +2024-09-11 09:05:27.655657 2024-09-11 09:05:27.655662 aidref 201683636 R rec cafd4982-b2be-462f-b399-dacdb58d964f +2024-09-11 09:05:27.710551 2024-09-11 09:05:27.710556 aidref 20169106X R rec 0a5a4a3b-44a3-42f7-9b74-345bd835462c +2024-09-11 09:05:27.772081 2024-09-11 09:05:27.772087 aidref 201716461 R rec c3573b45-dfad-4afb-a078-33ef6776db09 +2024-09-11 09:05:27.835083 2024-09-11 09:05:27.835089 aidref 201724588 R rec 8923a731-ad7e-4445-8730-9d75c969c795 +2024-09-11 09:05:27.889149 2024-09-11 09:05:27.889154 aidref 201753413 R rec abb71550-46ee-4d4c-8c6d-bc00803a33aa +2024-09-11 09:05:27.940984 2024-09-11 09:05:27.940989 aidref 201756463 R rec 5ea4e4d0-c94d-4a74-a2be-151e2fdf107e +2024-09-11 09:05:27.99838 2024-09-11 09:05:27.998385 aidref 201762641 R rec a45bf15d-9961-42a9-b026-ab61e3eea21a +2024-09-11 09:05:28.061059 2024-09-11 09:05:28.061065 aidref 201790017 R rec 14482cc0-b1d5-4e7a-992b-acaeb1725d57 +2024-09-11 09:05:28.116879 2024-09-11 09:05:28.116885 aidref 201827581 R rec 5569cf15-634e-4eb6-babb-a61fd2521446 +2024-09-11 09:05:28.170573 2024-09-11 09:05:28.17058 aidref 201830507 R rec 065b7ec9-c45b-45c9-b64c-5e8889873534 +2024-09-11 09:05:28.226213 2024-09-11 09:05:28.226219 aidref 201849534 R rec 4105538f-c52a-4a96-ba9b-40e2baee0811 +2024-09-11 09:05:28.282619 2024-09-11 09:05:28.282625 aidref 20185080X R rec ecf12b9b-3fd5-4909-b274-580b7f2cca27 +2024-09-11 09:05:28.338471 2024-09-11 09:05:28.338478 aidref 202400263 R rec cda05546-a100-46f8-b2e0-b35673e4226b +2024-09-11 09:05:28.402602 2024-09-11 09:05:28.402608 aidref 202446573 R rec c9b8b460-5bfc-4d9a-b0bc-fabe2a5aca3e +2024-09-11 09:05:28.461626 2024-09-11 09:05:28.461631 aidref 202513645 R rec 74807e79-b78e-493a-b7e9-7fd4f906056f +2024-09-11 09:05:28.525851 2024-09-11 09:05:28.525857 aidref 202637417 R rec d9a06a01-50e0-4315-9f9b-c909ed674b13 +2024-09-11 09:05:28.584495 2024-09-11 09:05:28.5845 aidref 202648087 R rec f2ca5611-65fb-4cb5-bfe0-4692eb495b94 +2024-09-11 09:05:28.643555 2024-09-11 09:05:28.64356 aidref 202681793 R rec 1dc08699-7db8-41f7-ab2d-c0f678e120bc +2024-09-11 09:05:28.704105 2024-09-11 09:05:28.70411 aidref 202685144 R rec ffff1cb4-cfa6-437e-a1ee-d1009e6d4f8d +2024-09-11 09:05:28.757492 2024-09-11 09:05:28.757497 aidref 202745279 R rec d52eabff-b929-4b20-a4ac-afe5c2fc89a6 +2024-09-11 09:05:28.817192 2024-09-11 09:05:28.817197 aidref 202768740 R rec 2e34a079-18e9-470b-aa0d-256406c57851 +2024-09-11 09:05:28.879633 2024-09-11 09:05:28.879638 aidref 202773663 R rec ec4c3a24-8f13-46bd-ae62-ba0f08254a57 +2024-09-11 09:05:28.93805 2024-09-11 09:05:28.938055 aidref 202908097 R rec fa76a073-9491-478c-9673-51b49235dc98 +2024-09-11 09:05:28.989789 2024-09-11 09:05:28.989794 aidref 202971511 R rec b2d8d831-2787-4378-b871-006272a6333e +2024-09-11 09:05:29.055646 2024-09-11 09:05:29.055652 aidref 202987752 R rec 3d89120a-105b-44ba-8cc1-aa3802a2a0ad +2024-09-11 09:05:29.110711 2024-09-11 09:05:29.110716 aidref 20307324X R rec 4fc23c5d-9ad6-403c-9036-78933c13cfbc +2024-09-11 09:05:29.169828 2024-09-11 09:05:29.169833 aidref 203079442 R rec fc5c11fb-3a80-4eff-8469-ada78c9d5411 +2024-09-11 09:05:29.224415 2024-09-11 09:05:29.224421 aidref 203120752 R rec fc3b555f-70b2-4309-b9f6-690ec7784ae6 +2024-09-11 09:05:29.28488 2024-09-11 09:05:29.284885 aidref 203121953 R rec d4881e22-5345-4de9-ad8e-fdf31478cf79 +2024-09-11 09:05:29.338892 2024-09-11 09:05:29.338897 aidref 203168712 R rec 01e974ad-c7ab-4113-9eda-e5bf03c320f0 +2024-09-11 09:05:29.388837 2024-09-11 09:05:29.388842 aidref 203351312 R rec 74a7a6ec-7702-4a1f-ba7b-1ac06473fb9e +2024-09-11 09:05:29.450392 2024-09-11 09:05:29.450397 aidref 203359321 R rec 7572fdb4-6b95-488c-a0fe-92f472c3d223 +2024-09-11 09:05:29.511285 2024-09-11 09:05:29.51129 aidref 203372514 R rec 161d4342-ab61-48fe-922c-f69b89379b90 +2024-09-11 09:05:29.570289 2024-09-11 09:05:29.570295 aidref 203387279 R rec 33070bbd-1786-4640-a466-9d6ef76b1430 +2024-09-11 09:05:29.626397 2024-09-11 09:05:29.626402 aidref 20354014X R rec 9ef594b9-cd5e-44e4-8258-73e3164b62cf +2024-09-11 09:05:29.679743 2024-09-11 09:05:29.679748 aidref 203603141 R rec 6184309c-093e-4584-a375-c9c567db7d09 +2024-09-11 09:05:29.732929 2024-09-11 09:05:29.732934 aidref 203620941 R rec b27906a4-c85c-4a1e-ad26-5b664b225d99 +2024-09-11 09:05:29.784077 2024-09-11 09:05:29.784082 aidref 203662997 R rec 925f6a4b-e075-4ea5-a79d-821506d02a30 +2024-09-11 09:05:29.839012 2024-09-11 09:05:29.839025 aidref 203861108 R rec 59d86498-d99d-4b53-858c-0e4866287db4 +2024-09-11 09:05:29.891429 2024-09-11 09:05:29.891435 aidref 203863232 R rec fb506315-003a-45d2-9de2-b2bfadb30ef0 +2024-09-11 09:05:29.943886 2024-09-11 09:05:29.943892 aidref 203926625 R rec 3cb1a017-aa8b-4724-978a-68cad5da0de4 +2024-09-11 09:05:29.998547 2024-09-11 09:05:29.998555 aidref 203929594 R rec 9a0d25bf-cff3-4e4e-8a9c-268a61589851 +2024-09-11 09:05:30.052115 2024-09-11 09:05:30.05212 aidref 203933036 R rec b159ce9c-74f6-4f26-932b-81fdbf4c8603 +2024-09-11 09:05:30.104162 2024-09-11 09:05:30.104168 aidref 203935616 R rec c4354bcf-14bc-49f9-9bf8-6c611f4e7017 +2024-09-11 09:05:30.157509 2024-09-11 09:05:30.157514 aidref 203937740 R rec 87061752-eb51-40ba-8e97-5a612d55abaf +2024-09-11 09:05:30.237268 2024-09-11 09:05:30.237274 aidref 20394562X R rec 6d782e51-86a0-41ef-b890-ce327844ed9a +2024-09-11 09:05:30.290742 2024-09-11 09:05:30.290747 aidref 203971051 R rec 7b098b4c-abb0-409d-9ea4-3b8f44674e96 +2024-09-11 09:05:30.342193 2024-09-11 09:05:30.342199 aidref 204040388 R rec 804d1881-cd83-49ea-ab76-9c261569a347 +2024-09-11 09:05:30.406514 2024-09-11 09:05:30.40652 aidref 204097428 R rec 86338f5d-6ba4-43a1-8095-c14e809bc471 +2024-09-11 09:05:30.465818 2024-09-11 09:05:30.465823 aidref 204167000 R rec d25275e7-485f-484d-91ca-1e314d3926fa +2024-09-11 09:05:30.533581 2024-09-11 09:05:30.533586 aidref 204208246 R rec b26f57b1-4f4f-4997-aea8-d62b4323e8f6 +2024-09-11 09:05:30.585822 2024-09-11 09:05:30.585827 aidref 20422280X R rec ca233407-33db-4dc4-a45e-3450d8a0a204 +2024-09-11 09:05:30.639719 2024-09-11 09:05:30.63973 aidref 204242479 R rec 7e546a78-c990-4812-a09e-c2f08fdefd33 +2024-09-11 09:05:30.690049 2024-09-11 09:05:30.690054 aidref 204251206 R rec 15b671d7-e5d4-4a79-8efa-d381591642b9 +2024-09-11 09:05:30.749453 2024-09-11 09:05:30.749459 aidref 20436678X R rec 5adb8595-66e1-40f6-ae9e-61c4626c4b94 +2024-09-11 09:05:30.80455 2024-09-11 09:05:30.804557 aidref 204436869 R rec 36a5a177-60f7-44cd-bcb6-cffad9e7b5b0 +2024-09-11 09:05:30.857738 2024-09-11 09:05:30.857743 aidref 204581745 R rec 22f853cf-4b5f-4ff1-89df-b0924485d563 +2024-09-11 09:05:30.920304 2024-09-11 09:05:30.920308 aidref 204651913 R rec 9c4b1003-7f62-4e13-b37f-6afc60248ef5 +2024-09-11 09:05:30.978481 2024-09-11 09:05:30.978486 aidref 204719593 R rec d9464ee3-773a-4367-8024-85f533b6e2ac +2024-09-11 09:05:31.036057 2024-09-11 09:05:31.036063 aidref 204750032 R rec 316fd5c8-167c-4a4d-ada8-939ada269c4c +2024-09-11 09:05:31.08885 2024-09-11 09:05:31.088855 aidref 204755824 R rec 4bd3b664-589f-42ab-abb0-cc4fd980d451 +2024-09-11 09:05:31.142037 2024-09-11 09:05:31.142042 aidref 20476209X R rec f87e8fad-3815-45d5-914a-8605814e9125 +2024-09-11 09:05:31.201688 2024-09-11 09:05:31.201697 aidref 204801923 R rec c3a82fb3-9ace-45ef-8b7a-511e67a16a27 +2024-09-11 09:05:31.260893 2024-09-11 09:05:31.260898 aidref 219558523 R rec c4996b05-2d62-4ea0-819e-aa8e13e388b5 +2024-09-11 09:05:31.321617 2024-09-11 09:05:31.321622 aidref 219844496 R rec 017f1a71-b9bd-4a65-bdec-7528d09a9bd5 +2024-09-11 09:05:31.373947 2024-09-11 09:05:31.373952 aidref 219895058 R rec 50524b99-c475-43e0-8b2f-a31cc7362fcc +2024-09-11 09:05:31.434771 2024-09-11 09:05:31.434779 aidref 219901015 R rec 36eda691-e53f-4c7d-ac68-1f4b08bb90b0 +2024-09-11 09:05:31.491001 2024-09-11 09:05:31.491007 aidref 219918252 R rec ce0b7c6c-4c22-43bd-8f55-2ca913599767 +2024-09-11 09:05:31.543338 2024-09-11 09:05:31.543343 aidref 219992657 R rec c68af0a6-1c44-446f-9c45-2a756d273eee +2024-09-11 09:05:31.604974 2024-09-11 09:05:31.604983 aidref 220045143 R rec f1f7e107-d64c-4ddd-acd3-db12135f23e6 +2024-09-11 09:05:31.658918 2024-09-11 09:05:31.658924 aidref 220058784 R rec 8d70411e-6f4f-4ff3-9778-34fc7f8a7fa4 +2024-09-11 09:05:31.712221 2024-09-11 09:05:31.712227 aidref 220068062 R rec 0c0e9177-460a-46ea-9e5f-b5f002320204 +2024-09-11 09:05:31.764103 2024-09-11 09:05:31.764109 aidref 220075247 R rec 4920bd04-e590-4caf-8d09-8bcad781fd43 +2024-09-11 09:05:31.821185 2024-09-11 09:05:31.82119 aidref 220078440 R rec 2025e01c-9cc6-4ab7-a36b-18ddecd91a3b +2024-09-11 09:05:31.876291 2024-09-11 09:05:31.876295 aidref 220159157 R rec f4bbd944-87d6-4bc8-b4f3-544a4e2c3c72 +2024-09-11 09:05:31.926609 2024-09-11 09:05:31.926614 aidref 220178003 R rec 43135b38-f3be-4fb3-9c01-8a8047d5d412 +2024-09-11 09:05:31.985798 2024-09-11 09:05:31.985804 aidref 220196133 R rec f46ad6f0-342e-48e6-8e44-0f3311f4e8ae +2024-09-11 09:05:32.039204 2024-09-11 09:05:32.039209 aidref 220218919 R rec c1c29741-6400-42a1-b983-029aa63dd741 +2024-09-11 09:05:32.092798 2024-09-11 09:05:32.092804 aidref 220304114 R rec dd705745-8d08-4d43-98a1-ea7b43752466 +2024-09-11 09:05:32.151041 2024-09-11 09:05:32.151047 aidref 220457220 R rec 61a2d283-3903-4d44-8978-5a8cbbf9e61f +2024-09-11 09:05:32.207936 2024-09-11 09:05:32.207942 aidref 220609829 R rec a24ca145-1094-4d06-86bc-75f2e1731069 +2024-09-11 09:05:32.268307 2024-09-11 09:05:32.268313 aidref 220828164 R rec 37cb4985-9789-4961-bd24-c0925f6458f9 +2024-09-11 09:05:32.329935 2024-09-11 09:05:32.32994 aidref 22088787X R rec 3a2ecc65-6bc1-48ce-9c64-31184c8f8138 +2024-09-11 09:05:32.384609 2024-09-11 09:05:32.384614 aidref 220890056 R rec 2075813d-85bd-41a0-8664-d531940fbb19 +2024-09-11 09:05:32.448051 2024-09-11 09:05:32.448056 aidref 221211810 R rec fb7a2d6b-699d-489e-9d78-fe9f1a968766 +2024-09-11 09:05:32.51178 2024-09-11 09:05:32.511785 aidref 221276904 R rec 9c33f732-1bbc-47c2-9c04-e9353ef53408 +2024-09-11 09:05:32.564792 2024-09-11 09:05:32.564797 aidref 221337571 R rec a67df12d-9e36-40d3-9f92-8f6d34e87f4b +2024-09-11 09:05:32.617829 2024-09-11 09:05:32.617835 aidref 221337806 R rec b34c0218-7c67-4fa7-85c9-db62a5f0dbbb +2024-09-11 09:05:32.677837 2024-09-11 09:05:32.677842 aidref 221343555 R rec 32929cc9-4a6d-4208-b62f-c5227cabd039 +2024-09-11 09:05:32.732374 2024-09-11 09:05:32.732379 aidref 221345477 R rec d93efdb7-7649-4aa9-b6be-d827a7589b90 +2024-09-11 09:05:32.790473 2024-09-11 09:05:32.790478 aidref 221427767 R rec 69244573-7250-4fb7-9aec-a8938adb2311 +2024-09-11 09:05:32.856034 2024-09-11 09:05:32.85604 aidref 221465480 R rec 70cabaa4-23a2-4b54-936f-ddd04a6df052 +2024-09-11 09:05:32.910761 2024-09-11 09:05:32.910768 aidref 221485554 R rec 91721609-2a66-41dd-b6dd-01ecd8885edd +2024-09-11 09:05:32.963813 2024-09-11 09:05:32.963818 aidref 221493646 R rec 23ecb10c-bb5d-4b43-9050-4b6d3ba1bf4f +2024-09-11 09:05:33.019971 2024-09-11 09:05:33.019977 aidref 221661425 R rec 845eba43-d0d0-4d24-b89e-dd34241e4b51 +2024-09-11 09:05:33.076605 2024-09-11 09:05:33.07661 aidref 221728856 R rec 263c4e4f-cb38-4e3e-aca8-26af80ac9e91 +2024-09-11 09:05:33.12928 2024-09-11 09:05:33.129285 aidref 22175167X R rec 1013cb8c-22fc-4ab5-b87a-1ac1e60f4565 +2024-09-11 09:05:33.184036 2024-09-11 09:05:33.184042 aidref 221761942 R rec 96f20f85-7e64-4426-b506-d1725a6cbef2 +2024-09-11 09:05:33.252842 2024-09-11 09:05:33.252848 aidref 22344250X R rec 407b10c4-efc1-482d-b722-ec8f5d348770 +2024-09-11 09:05:33.312079 2024-09-11 09:05:33.312085 aidref 223483516 R rec 58e55d6c-25a2-467d-a0da-efbd4dc2d3da +2024-09-11 09:05:33.363841 2024-09-11 09:05:33.363847 aidref 223491071 R rec 435d9f78-fcc5-4cfe-8b30-f03f227ecc05 +2024-09-11 09:05:33.42267 2024-09-11 09:05:33.422674 aidref 223505056 R rec 4688bae0-bdab-454f-8b6e-fc7a8d2a3197 +2024-09-11 09:05:33.473617 2024-09-11 09:05:33.473622 aidref 223537616 R rec 39cc92d1-d926-42a8-a000-e26fc28b09b5 +2024-09-11 09:05:33.527374 2024-09-11 09:05:33.527379 aidref 223609935 R rec 7a443471-3c5e-45a7-ae32-843f59fe789f +2024-09-11 09:05:33.582205 2024-09-11 09:05:33.582213 aidref 223614866 R rec d661b994-2d9c-4fb6-86f2-c8375eed81f9 +2024-09-11 09:05:33.639376 2024-09-11 09:05:33.639381 aidref 223652555 R rec 2827e922-e8f9-411f-9279-629917936642 +2024-09-11 09:05:33.702057 2024-09-11 09:05:33.702063 aidref 223704288 R rec 1ea2128c-07f4-410c-92ed-179b74b3b35a +2024-09-11 09:05:33.754642 2024-09-11 09:05:33.754648 aidref 22376423X R rec 1b7cf2a4-a170-4370-8337-e66f6b38a52a +2024-09-11 09:05:33.806051 2024-09-11 09:05:33.806057 aidref 223847585 R rec c9e6836c-0bd1-42a6-9f57-762e6f6ff9bb +2024-09-11 09:05:33.86814 2024-09-11 09:05:33.868145 aidref 223852481 R rec ac3f05ff-6988-4e3f-9e42-af8f90c70dec +2024-09-11 09:05:33.919944 2024-09-11 09:05:33.91995 aidref 223890472 R rec 8ab54fc6-abbf-44f3-9f6f-f58bd42f00dc +2024-09-11 09:05:33.975331 2024-09-11 09:05:33.975338 aidref 224016806 R rec 8a677e64-cd81-44d3-a6ae-7be8146f44b4 +2024-09-11 09:05:34.030801 2024-09-11 09:05:34.030806 aidref 224210963 R rec 1e733a5b-98c7-4ea6-9ac4-622cb85cfd24 +2024-09-11 09:05:34.09196 2024-09-11 09:05:34.091965 aidref 224227815 R rec 5e28efb5-bce8-4eec-96d7-7f14327db08e +2024-09-11 09:05:34.158462 2024-09-11 09:05:34.158468 aidref 224319418 R rec d155b5a6-fe6d-4cf2-899a-9d5f78ad02db +2024-09-11 09:05:34.217391 2024-09-11 09:05:34.217398 aidref 224335081 R rec 24ff48a7-f0b8-414d-886c-82498f2628c5 +2024-09-11 09:05:34.26929 2024-09-11 09:05:34.269295 aidref 22438306X R rec fb3a2333-8d60-4096-a0d5-ad6dd0c2e6b4 +2024-09-11 09:05:34.332576 2024-09-11 09:05:34.332582 aidref 224404717 R rec 8d263d62-a68b-4cb1-824f-c15c24df57e9 +2024-09-11 09:05:34.439247 2024-09-11 09:05:34.439252 aidref 224452630 R rec b1d0facb-379d-4206-995f-fc7e12727ac8 +2024-09-11 09:05:34.489534 2024-09-11 09:05:34.48954 aidref 224502557 R rec 11a38253-f139-4488-8277-fef5fa696eea +2024-09-11 09:05:34.545007 2024-09-11 09:05:34.545012 aidref 224542249 R rec 09b9b111-9438-485f-9b90-b85e3055655e +2024-09-11 09:05:34.596135 2024-09-11 09:05:34.59614 aidref 224544411 R rec eb6ca13b-7374-4037-b818-ebe3259a24f8 +2024-09-11 09:05:34.651979 2024-09-11 09:05:34.651984 aidref 224701592 R rec c636b55f-22aa-4daa-97bd-bfa6f446fc85 +2024-09-11 09:05:34.708462 2024-09-11 09:05:34.708468 aidref 22472178X R rec 910eb7ac-38b7-40a3-a3a3-c6f3abba1200 +2024-09-11 09:05:34.770946 2024-09-11 09:05:34.770952 aidref 224789147 R rec 54d1a272-a4a9-4f5c-92ff-9af1d2a897ec +2024-09-11 09:05:34.831279 2024-09-11 09:05:34.831284 aidref 224794272 R rec f3181dcc-2488-4d0f-b913-ea610f2f2ac4 +2024-09-11 09:05:34.89338 2024-09-11 09:05:34.893387 aidref 224842722 R rec 22562dc8-9f22-4c1a-9b88-9170217a8525 +2024-09-11 09:05:34.953652 2024-09-11 09:05:34.953658 aidref 224847333 R rec 6532a3fa-869c-402c-a8d3-06c4c0f203b5 +2024-09-11 09:05:35.011137 2024-09-11 09:05:35.011142 aidref 224875868 R rec e57d8c66-0952-4cdf-9dfc-b4f3a0a2861f +2024-09-11 09:05:35.074572 2024-09-11 09:05:35.074578 aidref 224900536 R rec f0cfdd9a-d043-4244-a763-d31a933ce73d +2024-09-11 09:05:35.12501 2024-09-11 09:05:35.125016 aidref 224972065 R rec bc1a0b82-946a-4e68-bd86-eae55bf262a4 +2024-09-11 09:05:35.17897 2024-09-11 09:05:35.178977 aidref 224991523 R rec 9fc16f9d-d915-4da6-958d-87c7bc2d6f11 +2024-09-11 09:05:35.242628 2024-09-11 09:05:35.242634 aidref 225224054 R rec adff8f00-c83c-47a7-ba78-590d21787b22 +2024-09-11 09:05:35.29873 2024-09-11 09:05:35.298734 aidref 225402475 R rec eaa2912f-21db-439f-a4db-fa189bce4c58 +2024-09-11 09:05:35.35522 2024-09-11 09:05:35.355225 aidref 225406292 R rec 7650d27a-c25f-418c-a8a7-d6726a26b4a5 +2024-09-11 09:05:35.406955 2024-09-11 09:05:35.406959 aidref 225412632 R rec c89e8d39-ffbe-41eb-8b61-f7884168f04f +2024-09-11 09:05:35.460058 2024-09-11 09:05:35.460063 aidref 225448475 R rec 461102b4-eb1a-4d52-9890-5b7ebc3011a3 +2024-09-11 09:05:35.510556 2024-09-11 09:05:35.510561 aidref 225463121 R rec 16754b9d-8ba7-4c53-9da6-81a84529150d +2024-09-11 09:05:35.561974 2024-09-11 09:05:35.561979 aidref 225512521 R rec 8dcd27f3-dbd3-4014-a8f1-27e542c85158 +2024-09-11 09:05:35.615454 2024-09-11 09:05:35.61546 aidref 225514451 R rec 057da38f-319b-4efe-9489-a67583987633 +2024-09-11 09:05:35.66725 2024-09-11 09:05:35.667256 aidref 225603128 R rec 55d00cfe-50bb-4b34-8984-37965716e3e8 +2024-09-11 09:05:35.722362 2024-09-11 09:05:35.722366 aidref 225616459 R rec 26328b61-09f2-4715-a8fb-f4ccfb1c7f0b +2024-09-11 09:05:35.771993 2024-09-11 09:05:35.771998 aidref 225732394 R rec c8dec918-08ba-4b12-80c5-de7317f04c45 +2024-09-11 09:05:35.8294 2024-09-11 09:05:35.829406 aidref 225791153 R rec cd4b676b-a88f-4e51-b087-70a6551aa334 +2024-09-11 09:05:35.890282 2024-09-11 09:05:35.890287 aidref 225800373 R rec 2fd9b102-04be-424b-bdae-8f2c976395ef +2024-09-11 09:05:35.941609 2024-09-11 09:05:35.941615 aidref 225803658 R rec d39af49b-7bf8-4a5d-9842-d27c47bb0d30 +2024-09-11 09:05:36.006817 2024-09-11 09:05:36.006823 aidref 226149390 R rec 6d76b345-138c-4e2d-9bb0-62f0d288681a +2024-09-11 09:05:36.067421 2024-09-11 09:05:36.067426 aidref 226257444 R rec b8bf4b02-0cc1-4fdf-9d2c-641b542afb45 +2024-09-11 09:05:36.129889 2024-09-11 09:05:36.129894 aidref 226272893 R rec ff245f5d-2091-48a2-be26-a185c7a02f71 +2024-09-11 09:05:36.180886 2024-09-11 09:05:36.180891 aidref 226304108 R rec d8a323df-87f3-461d-a621-453fa076f16d +2024-09-11 09:05:36.236471 2024-09-11 09:05:36.236477 aidref 226336328 R rec 4742f93a-0661-465e-89ce-e086bae5acd9 +2024-09-11 09:05:36.288054 2024-09-11 09:05:36.288059 aidref 226372294 R rec e3917123-0183-4afa-86fd-c7d7bfb56ac7 +2024-09-11 09:05:36.339248 2024-09-11 09:05:36.339253 aidref 226411354 R rec 983ad90a-1c1a-42c9-ae32-e2cb34bc4c5e +2024-09-11 09:05:36.395403 2024-09-11 09:05:36.395408 aidref 22676026X R rec f2bf5ca5-8a67-41e5-9156-b06d69d3c18b +2024-09-11 09:05:36.449438 2024-09-11 09:05:36.449445 aidref 226865037 R rec 6744480b-6aaa-4843-b424-8a7c8f043a21 +2024-09-11 09:05:36.508623 2024-09-11 09:05:36.508629 aidref 226921670 R rec 2b02d06b-ff70-4099-93c4-6e08f4664ad8 +2024-09-11 09:05:36.560152 2024-09-11 09:05:36.560158 aidref 226932141 R rec ed05a407-09bf-4e28-87dd-b557b7956918 +2024-09-11 09:05:36.613006 2024-09-11 09:05:36.613012 aidref 226958728 R rec d36d5792-b866-4d2e-b606-2ea4c3a5d252 +2024-09-11 09:05:36.670072 2024-09-11 09:05:36.670078 aidref 226964736 R rec de69a5b2-cf58-47a5-84a3-fff9f922f410 +2024-09-11 09:05:36.721402 2024-09-11 09:05:36.721407 aidref 227130812 R rec b3482510-28f5-4db7-9d8f-3510e040e388 +2024-09-11 09:05:36.776898 2024-09-11 09:05:36.776903 aidref 227218493 R rec 4a5d99b9-48b6-4570-9dad-44dc7b9abb4c +2024-09-11 09:05:36.84031 2024-09-11 09:05:36.840315 aidref 227236610 R rec db25e02f-4980-43f2-a475-6a14c0469bd8 +2024-09-11 09:05:36.895992 2024-09-11 09:05:36.895997 aidref 227237382 R rec 75d021da-0964-4912-8ed2-1b977eca9b8c +2024-09-11 09:05:36.950896 2024-09-11 09:05:36.950902 aidref 227302370 R rec 36a0d60d-a27d-4ba5-88e1-370c945a507c +2024-09-11 09:05:37.010897 2024-09-11 09:05:37.010903 aidref 227327551 R rec 3984943b-14df-4208-bbba-678a87a7edba +2024-09-11 09:05:37.069215 2024-09-11 09:05:37.069221 aidref 227475453 R rec 52f7a745-2dd4-4f56-ad68-279d58b862ee +2024-09-11 09:05:37.122794 2024-09-11 09:05:37.122799 aidref 22749900X R rec f70c95b5-d684-4216-b8f6-b92d41e97f99 +2024-09-11 09:05:37.193435 2024-09-11 09:05:37.19344 aidref 227511980 R rec 2213e76c-20bb-4718-b2a5-cbfcfe0584ba +2024-09-11 09:05:37.249997 2024-09-11 09:05:37.250003 aidref 227583752 R rec 16a2e459-3375-4826-8a17-e10fc65f6376 +2024-09-11 09:05:37.312005 2024-09-11 09:05:37.312011 aidref 227594509 R rec f152e734-ee3f-4d60-9782-68e74fdd7b29 +2024-09-11 09:05:37.365409 2024-09-11 09:05:37.365414 aidref 227599055 R rec 0cd7e928-81eb-4757-ad1e-62f5937a5675 +2024-09-11 09:05:37.422792 2024-09-11 09:05:37.422797 aidref 227616839 R rec b5370afa-537e-4dab-9949-a814916f6d34 +2024-09-11 09:05:37.475057 2024-09-11 09:05:37.475063 aidref 227645278 R rec 78e266f9-8bd5-4734-9b65-d9ee70d05743 +2024-09-11 09:05:37.536357 2024-09-11 09:05:37.536362 aidref 227762045 R rec fd3b5f0a-3f5f-4e19-a103-ee9c344ab356 +2024-09-11 09:05:37.594202 2024-09-11 09:05:37.594208 aidref 22779222X R rec d2e159b7-d827-4fb4-a861-3ad0ed9e1518 +2024-09-11 09:05:37.657103 2024-09-11 09:05:37.657108 aidref 227806646 R rec 943cb023-ef65-4b03-9e45-b04da39b179d +2024-09-11 09:05:37.71275 2024-09-11 09:05:37.712755 aidref 227845307 R rec 032b5ddf-d478-4226-918c-83a10a103632 +2024-09-11 09:05:37.76306 2024-09-11 09:05:37.763064 aidref 227933923 R rec bece50ec-0c5a-4443-9ccb-632221c6bc77 +2024-09-11 09:05:37.817618 2024-09-11 09:05:37.817624 aidref 22793492X R rec cd7a9af8-3743-4090-924d-5900a2eadc52 +2024-09-11 09:05:37.868718 2024-09-11 09:05:37.868724 aidref 227979303 R rec 4f3182ed-7537-4694-9e7c-bda3e49578e2 +2024-09-11 09:05:37.930381 2024-09-11 09:05:37.930387 aidref 228238714 R rec b9cd5e93-5fde-49ff-9c9f-d13778d74dba +2024-09-11 09:05:37.99604 2024-09-11 09:05:37.996046 aidref 228263050 R rec 4c70beb1-1bfd-4503-8fe6-e237d5712bf3 +2024-09-11 09:05:38.062036 2024-09-11 09:05:38.062041 aidref 228795990 R rec a8b070b9-b895-44b3-ba42-573f736388f9 +2024-09-11 09:05:38.112234 2024-09-11 09:05:38.11224 aidref 228853214 R rec e619baa1-2947-48ac-afc0-e860910af8e2 +2024-09-11 09:05:38.173462 2024-09-11 09:05:38.173467 aidref 228947545 R rec 88f3202c-97de-4ebf-8690-721ab9bfe81e +2024-09-11 09:05:38.225546 2024-09-11 09:05:38.225552 aidref 229034713 R rec 957993d2-7434-45b7-8406-48c29050cc51 +2024-09-11 09:05:38.277763 2024-09-11 09:05:38.277767 aidref 229300324 R rec a2c40287-4bc7-4da1-b4ad-1899fe2578f0 +2024-09-11 09:05:38.326356 2024-09-11 09:05:38.326361 aidref 229580165 R rec 23c7f1c5-1598-4e85-b60d-d10f7ea9af8c +2024-09-11 09:05:38.379814 2024-09-11 09:05:38.37982 aidref 229619231 R rec 5ceed08a-ba1b-42c9-95ab-bff07ac42121 +2024-09-11 09:05:38.440597 2024-09-11 09:05:38.440603 aidref 229650473 R rec 1cb648ab-f737-4662-a29a-2e867d46464d +2024-09-11 09:05:38.492771 2024-09-11 09:05:38.492775 aidref 229663362 R rec 1836aed3-f0b6-483e-b07e-a7b208d0bc07 +2024-09-11 09:05:38.551688 2024-09-11 09:05:38.551694 aidref 229665470 R rec 9a45e0d3-7bb6-4a6f-8dc5-028289b47487 +2024-09-11 09:05:38.608466 2024-09-11 09:05:38.608471 aidref 229675018 R rec 410b2386-b1d6-4513-8131-8dbf0fb09c3e +2024-09-11 09:05:38.660291 2024-09-11 09:05:38.660297 aidref 229703747 R rec b3b9cbdb-d17e-4acc-b95c-b40c7b8e3f72 +2024-09-11 09:05:38.712133 2024-09-11 09:05:38.712138 aidref 229818676 R rec 55290455-bbbb-44f7-92eb-2392cc3a0588 +2024-09-11 09:05:38.76801 2024-09-11 09:05:38.768015 aidref 229845606 R rec ca187978-7bc5-4608-b662-ff1d8b90d869 +2024-09-11 09:05:38.821325 2024-09-11 09:05:38.821331 aidref 23008964X R rec b8bbd8a0-590e-4849-a28a-27b5af840a0e +2024-09-11 09:05:38.871477 2024-09-11 09:05:38.871482 aidref 230158145 R rec 1bd72d6d-5b72-4a7a-89f5-799f03571272 +2024-09-11 09:05:38.924504 2024-09-11 09:05:38.924509 aidref 230252427 R rec c0b2ec86-5e88-424e-97c1-b52e09bc0653 +2024-09-11 09:05:38.97563 2024-09-11 09:05:38.975635 aidref 230252575 R rec 9b7654cf-c587-4eb3-bd5d-bf928501792d +2024-09-11 09:05:39.029754 2024-09-11 09:05:39.02976 aidref 230306365 R rec ce385db0-0ec1-47fe-b32f-158362d4d2ca +2024-09-11 09:05:39.084982 2024-09-11 09:05:39.084989 aidref 230333885 R rec 57e72c6b-6f12-42eb-8acf-350dd2ad6e22 +2024-09-11 09:05:39.138642 2024-09-11 09:05:39.138649 aidref 230389597 R rec 3f31d938-29e3-4e23-aff8-861b1012a86a +2024-09-11 09:05:39.227551 2024-09-11 09:05:39.227556 aidref 230392407 R rec e87c926c-6b16-4d1c-a3e3-47977bdbe1f1 +2024-09-11 09:05:39.278125 2024-09-11 09:05:39.27813 aidref 230394477 R rec c4923dfa-27a4-4943-aec2-8e0a04e8ef84 +2024-09-11 09:05:39.332739 2024-09-11 09:05:39.332745 aidref 230409261 R rec a918c51e-225a-4230-8dee-d750c9afebb5 +2024-09-11 09:05:39.386249 2024-09-11 09:05:39.386256 aidref 230421075 R rec 5e7e7f8e-2e8b-4d88-bccc-c4b07b819b88 +2024-09-11 09:05:39.439637 2024-09-11 09:05:39.439642 aidref 230487653 R rec 5754870d-a673-4db6-af89-d0347c6b3d07 +2024-09-11 09:05:39.493771 2024-09-11 09:05:39.493776 aidref 230499805 R rec abbacf15-d80a-4204-ac8e-d9df9760aacb +2024-09-11 09:05:39.546323 2024-09-11 09:05:39.546329 aidref 23054634X R rec c3eadbc1-55ef-4d2a-a968-139dbeda2f54 +2024-09-11 09:05:39.609473 2024-09-11 09:05:39.609479 aidref 230568378 R rec 206128c5-fb52-4be4-af92-0e0ce99a8f35 +2024-09-11 09:05:39.667992 2024-09-11 09:05:39.667999 aidref 230663338 R rec ad2a1091-7cbe-463c-8ce4-ec64f31e1d9c +2024-09-11 09:05:39.726615 2024-09-11 09:05:39.726619 aidref 230746608 R rec 834d66e3-91ee-40de-ab3a-a470c3adde2b +2024-09-11 09:05:39.777568 2024-09-11 09:05:39.777574 aidref 230769373 R rec 745565f3-4008-40a0-9a4e-979e63b563f8 +2024-09-11 09:05:39.835691 2024-09-11 09:05:39.835697 aidref 230818846 R rec 1831bded-9eaa-4014-9be4-c894889842ac +2024-09-11 09:05:39.889952 2024-09-11 09:05:39.889957 aidref 230825478 R rec bb1a96ac-539a-4c9f-b855-591a40dd3175 +2024-09-11 09:05:39.940673 2024-09-11 09:05:39.940678 aidref 230880525 R rec 4cf1c54f-96bd-46ad-90ed-beecd287cea4 +2024-09-11 09:05:39.995051 2024-09-11 09:05:39.995057 aidref 230910793 R rec 72cca462-20e7-442d-86d1-876aa9bc4a08 +2024-09-11 09:05:40.055254 2024-09-11 09:05:40.055259 aidref 230956866 R rec ab4d1492-81d3-4c9d-9d4c-82ed5effb545 +2024-09-11 09:05:40.111494 2024-09-11 09:05:40.111499 aidref 230969267 R rec caed7e10-dedc-4eb9-a299-68c94be1588a +2024-09-11 09:05:40.165097 2024-09-11 09:05:40.165102 aidref 231084056 R rec ad1a63bc-ee30-4e82-842a-8883b273fe5a +2024-09-11 09:05:40.219604 2024-09-11 09:05:40.21961 aidref 231252188 R rec a926c482-96d4-43c7-80ff-d8e0ebe0afff +2024-09-11 09:05:40.272779 2024-09-11 09:05:40.272784 aidref 231276729 R rec 2bfd6928-1a13-4368-971c-add9d0132ace +2024-09-11 09:05:40.323218 2024-09-11 09:05:40.323223 aidref 231291779 R rec 6897f873-b6ef-48a9-abbf-777ed94863c7 +2024-09-11 09:05:40.376296 2024-09-11 09:05:40.376302 aidref 231292856 R rec 70049c4b-7605-4278-9664-1f6ba4c031ac +2024-09-11 09:05:40.431561 2024-09-11 09:05:40.431566 aidref 231295405 R rec be953708-1e09-4bee-bb74-6fba2983a557 +2024-09-11 09:05:40.50104 2024-09-11 09:05:40.501045 aidref 231314116 R rec 1926b972-b1ee-42ea-b143-40244a5510bb +2024-09-11 09:05:40.558723 2024-09-11 09:05:40.558729 aidref 231372507 R rec 10785b81-a508-4c37-ae61-9e09b3d5a9f8 +2024-09-11 09:05:40.618474 2024-09-11 09:05:40.61848 aidref 231381476 R rec dd23bb48-1e37-418f-9bf5-9b3ea7960c4e +2024-09-11 09:05:40.671393 2024-09-11 09:05:40.671398 aidref 231381964 R rec b3d20d69-ebd3-4771-b328-e4649f2bf07b +2024-09-11 09:05:40.729123 2024-09-11 09:05:40.729129 aidref 231451555 R rec 9c303065-6b89-4c3e-8237-f6c3dace0155 +2024-09-11 09:05:40.784869 2024-09-11 09:05:40.784875 aidref 231480520 R rec cc27c8ad-58f6-4ae3-81b4-decf66212a98 +2024-09-11 09:05:40.843277 2024-09-11 09:05:40.843282 aidref 231537743 R rec fe1d3d01-36e7-4332-8765-d3331209a706 +2024-09-11 09:05:40.908309 2024-09-11 09:05:40.908314 aidref 231540957 R rec f5a4e514-dba4-46ca-ab66-bc1cebfd5c2c +2024-09-11 09:05:40.961567 2024-09-11 09:05:40.961573 aidref 231623739 R rec 19b9e629-c9c7-421e-b674-fccc8fecb460 +2024-09-11 09:05:41.021304 2024-09-11 09:05:41.02131 aidref 231934203 R rec 9c1577de-9219-4495-81fe-7495115ab29b +2024-09-11 09:05:41.073067 2024-09-11 09:05:41.073073 aidref 232202699 R rec b35ca026-5b43-479d-bbd6-676faa5cb8eb +2024-09-11 09:05:41.12669 2024-09-11 09:05:41.126696 aidref 232278431 R rec 41598e25-b38a-4fdf-88ee-06eedde4fccd +2024-09-11 09:05:41.188356 2024-09-11 09:05:41.188361 aidref 232343446 R rec c7b90170-60d8-41dc-bf31-523f4365e400 +2024-09-11 09:05:41.244694 2024-09-11 09:05:41.244699 aidref 232523703 R rec 2c91b02a-0a90-4f5a-ba16-b83b31f9eae5 +2024-09-11 09:05:41.308554 2024-09-11 09:05:41.308559 aidref 232530343 R rec 18e7bfce-6502-4f14-bd16-cc926e2e3db1 +2024-09-11 09:05:41.371238 2024-09-11 09:05:41.371243 aidref 232640858 R rec 1307e892-481e-4635-8165-d752053a3d1a +2024-09-11 09:05:41.425158 2024-09-11 09:05:41.425164 aidref 232656770 R rec 15ee100d-fe3c-4f5d-8800-28a9fb134b4a +2024-09-11 09:05:41.482979 2024-09-11 09:05:41.482984 aidref 232674450 R rec 9945d450-b4a0-4873-b1cd-b9a3f6b7d5b7 +2024-09-11 09:05:41.54276 2024-09-11 09:05:41.542765 aidref 232696551 R rec 0bc1375e-0326-4bde-867a-06af725b1b90 +2024-09-11 09:05:41.59846 2024-09-11 09:05:41.598465 aidref 232702845 R rec 05f0a115-67c9-4920-aa53-3ffe369c4e2b +2024-09-11 09:05:41.651918 2024-09-11 09:05:41.651927 aidref 23272377X R rec 537b2d3c-4603-45c8-9b3d-7dfd204e8cbe +2024-09-11 09:05:41.713641 2024-09-11 09:05:41.713647 aidref 23272380X R rec 31b26dc3-b046-4cdd-92e5-02c095285bbb +2024-09-11 09:05:41.769123 2024-09-11 09:05:41.769128 aidref 232774072 R rec a42355c3-136f-4212-944e-b8111ef3b7e3 +2024-09-11 09:05:41.826612 2024-09-11 09:05:41.826618 aidref 232796734 R rec 0975edb4-90b7-41aa-a25f-58ab880308f0 +2024-09-11 09:05:41.881847 2024-09-11 09:05:41.881852 aidref 232804788 R rec fb0fb5d3-c9a8-45d0-8131-3e5a2497f1fb +2024-09-11 09:05:41.945243 2024-09-11 09:05:41.945249 aidref 232805636 R rec b5ed7652-61fa-42bf-a128-40d79965a6d3 +2024-09-11 09:05:42.003665 2024-09-11 09:05:42.003671 aidref 232810265 R rec c11fb5d9-4cdf-40a2-89d8-19999fa3f807 +2024-09-11 09:05:42.059157 2024-09-11 09:05:42.059163 aidref 232813116 R rec 13fa7c3c-5e3f-43a6-bf09-3803d6dd4432 +2024-09-11 09:05:42.112128 2024-09-11 09:05:42.112134 aidref 232862583 R rec f4fbae0c-e3b3-4646-8494-40a70d889532 +2024-09-11 09:05:42.167676 2024-09-11 09:05:42.167685 aidref 232868468 R rec 455910c4-f853-4482-b8ca-b8616afa4ae5 +2024-09-11 09:05:42.227589 2024-09-11 09:05:42.227594 aidref 232869278 R rec d5c2a618-5227-4c66-9afb-48399cb3572a +2024-09-11 09:05:42.280593 2024-09-11 09:05:42.280598 aidref 232895651 R rec c137da3f-5f38-47ed-863f-32c165eaaf89 +2024-09-11 09:05:42.352378 2024-09-11 09:05:42.352383 aidref 232897964 R rec 7f192a9b-02e8-48f7-bc1b-7a841b1bbfae +2024-09-11 09:05:42.41124 2024-09-11 09:05:42.411245 aidref 232915741 R rec e02437b3-7a73-421a-a1a4-8a5a73c88f55 +2024-09-11 09:05:42.470372 2024-09-11 09:05:42.470378 aidref 232934436 R rec c7af0e2f-d4c5-44c5-8107-cceee62e9175 +2024-09-11 09:05:42.523672 2024-09-11 09:05:42.523677 aidref 233220984 R rec c1169a76-cc61-4b90-9627-847d1551de8b +2024-09-11 09:05:42.593439 2024-09-11 09:05:42.593445 aidref 23322758X R rec e17cfa5e-d6a1-43b5-967b-1092bef3f4c6 +2024-09-11 09:05:42.663123 2024-09-11 09:05:42.663128 aidref 233251073 R rec 38cdbf54-ccfe-4538-afee-59c749715be0 +2024-09-11 09:05:42.718186 2024-09-11 09:05:42.718192 aidref 233326103 R rec 16f9fc6e-60f7-4fde-908a-36d48b3a9a23 +2024-09-11 09:05:42.778223 2024-09-11 09:05:42.778228 aidref 233342575 R rec 844852f0-9eea-4f06-af51-5601ba78b507 +2024-09-11 09:05:42.835334 2024-09-11 09:05:42.835339 aidref 233346562 R rec 8260509a-775b-4df7-bbe9-cfc2a1315c3c +2024-09-11 09:05:42.893159 2024-09-11 09:05:42.893164 aidref 23352391X R rec 8ef5dcea-f9f0-4014-9014-b08624261c08 +2024-09-11 09:05:42.944082 2024-09-11 09:05:42.944087 aidref 233537155 R rec a9be8009-bcbf-41f0-9777-a9310ff92d08 +2024-09-11 09:05:42.99749 2024-09-11 09:05:42.997496 aidref 233564373 R rec 4a70b4ba-b9f2-48e0-9911-e078d53fd98e +2024-09-11 09:05:43.052619 2024-09-11 09:05:43.052625 aidref 233619771 R rec 3f56bcd0-cd63-4d6f-8d17-198dd92161bd +2024-09-11 09:05:43.11026 2024-09-11 09:05:43.110266 aidref 233969829 R rec 2ffa3eb9-b487-4d44-97d5-b473a11e2924 +2024-09-11 09:05:43.165512 2024-09-11 09:05:43.165517 aidref 234087080 R rec 05283c22-1ad4-43e7-92aa-bf9b10a3a819 +2024-09-11 09:05:43.22057 2024-09-11 09:05:43.220575 aidref 234195576 R rec 6fceaade-fa34-4899-b6d2-163a2758717c +2024-09-11 09:05:43.276207 2024-09-11 09:05:43.276212 aidref 234199180 R rec a0bbd7d9-76d4-4fcf-bf49-5751ea353470 +2024-09-11 09:05:43.332163 2024-09-11 09:05:43.332168 aidref 234246820 R rec bf6d9636-5048-4f26-92a0-33485de14128 +2024-09-11 09:05:43.390073 2024-09-11 09:05:43.390078 aidref 234251433 R rec 3fc2aa52-0a14-45f2-b0c8-4c927ca81fdf +2024-09-11 09:05:43.446183 2024-09-11 09:05:43.446188 aidref 234251867 R rec 27a4ff1b-711b-47cc-a093-386aa0546c8d +2024-09-11 09:05:43.506909 2024-09-11 09:05:43.506914 aidref 234252006 R rec 51b72308-21c7-48c4-a77e-a79e34a394d0 +2024-09-11 09:05:43.560212 2024-09-11 09:05:43.560218 aidref 234273771 R rec fd28a9d8-73cd-412e-acf4-93323c6ea648 +2024-09-11 09:05:43.617214 2024-09-11 09:05:43.61722 aidref 234277602 R rec d72a7e86-ed35-4133-8de8-3367fb0ee183 +2024-09-11 09:05:43.672451 2024-09-11 09:05:43.672456 aidref 234278390 R rec adc75e2a-52a6-498a-9765-d45ca028cd29 +2024-09-11 09:05:43.7243 2024-09-11 09:05:43.724305 aidref 234317566 R rec 4c7ec30d-db69-4eff-bf25-1f529d5ed769 +2024-09-11 09:05:43.781088 2024-09-11 09:05:43.781093 aidref 234340487 R rec b0ec1e4d-3f10-4057-9b17-597898463d54 +2024-09-11 09:05:43.842733 2024-09-11 09:05:43.842738 aidref 234363053 R rec a5b656c6-a2eb-4283-8698-0db4a2e71ac7 +2024-09-11 09:05:43.898692 2024-09-11 09:05:43.898696 aidref 234417765 R rec 6eb04471-216d-4880-b99c-f86365e79c72 +2024-09-11 09:05:43.950647 2024-09-11 09:05:43.950653 aidref 234443693 R rec 6d2fa9b5-9144-4c4a-9135-6c49096d9670 +2024-09-11 09:05:44.004475 2024-09-11 09:05:44.004479 aidref 234449381 R rec 585d0b18-b1e8-4fab-9ebe-549c37c0f95b +2024-09-11 09:05:44.059549 2024-09-11 09:05:44.059554 aidref 234468718 R rec 20c825a0-b585-4adc-8e5c-75a42526183b +2024-09-11 09:05:44.113179 2024-09-11 09:05:44.113185 aidref 234477644 R rec 10070fdb-9d5c-4e9c-aa3b-b6ea3d891203 +2024-09-11 09:05:44.172478 2024-09-11 09:05:44.172484 aidref 23449140X R rec 92886b41-adc8-4bc8-9836-d237c41e4b1d +2024-09-11 09:05:44.227537 2024-09-11 09:05:44.227543 aidref 234536535 R rec 6a300a0a-2d35-4426-92c7-3ffa44e13a66 +2024-09-11 09:05:44.282784 2024-09-11 09:05:44.28279 aidref 234569182 R rec c0493961-8856-4997-ba30-8866c34c6a94 +2024-09-11 09:05:44.333468 2024-09-11 09:05:44.333473 aidref 234587989 R rec aab9c14c-ee3f-4bfe-9119-0029f3403f7d +2024-09-11 09:05:44.393706 2024-09-11 09:05:44.393712 aidref 23459313X R rec 5b1a2d33-3f76-450d-9615-7da2c580b58b +2024-09-11 09:05:44.456593 2024-09-11 09:05:44.456598 aidref 234622512 R rec a3179c60-4797-4d2e-990f-b1d897f62cf6 +2024-09-11 09:05:44.513025 2024-09-11 09:05:44.513031 aidref 234673672 R rec cd9cd1d0-f9d5-4d91-92a3-e286f0cfdb3d +2024-09-11 09:05:44.56699 2024-09-11 09:05:44.566995 aidref 234715723 R rec f58ab022-3153-4e24-845f-ad9e0002f2fb +2024-09-11 09:05:44.630447 2024-09-11 09:05:44.630453 aidref 234745479 R rec 0fdccc73-0667-4e84-a31f-74dd38558b99 +2024-09-11 09:05:44.685432 2024-09-11 09:05:44.685437 aidref 23475382X R rec bfdf34a2-1175-42f9-a1b6-ed0708fc9c09 +2024-09-11 09:05:44.739465 2024-09-11 09:05:44.73947 aidref 234776439 R rec 2e62d47b-e31c-4bf9-aa34-8a6cff892824 +2024-09-11 09:05:44.797722 2024-09-11 09:05:44.797727 aidref 234777079 R rec abed4a7e-1a46-4e16-9aab-e7f05f07b3b8 +2024-09-11 09:05:44.859835 2024-09-11 09:05:44.859839 aidref 234811080 R rec 75fa8986-120e-4adb-8d01-88e9df9cd5f2 +2024-09-11 09:05:44.920475 2024-09-11 09:05:44.92048 aidref 234843160 R rec 058a22c7-1303-489f-810f-a647294d78c0 +2024-09-11 09:05:44.979345 2024-09-11 09:05:44.97935 aidref 234849223 R rec 2808b54e-db47-4f14-bd2e-4e8a7868aa66 +2024-09-11 09:05:45.047455 2024-09-11 09:05:45.047459 aidref 235030929 R rec 57973e39-f362-4bd6-99d3-d0e8af6fbe55 +2024-09-11 09:05:45.107776 2024-09-11 09:05:45.107782 aidref 235031771 R rec 54e11591-5319-446a-829b-73e339a914ec +2024-09-11 09:05:45.162998 2024-09-11 09:05:45.163003 aidref 235057657 R rec 7250adcc-4039-4277-949f-811b530a865c +2024-09-11 09:05:45.221645 2024-09-11 09:05:45.22165 aidref 235095273 R rec b8483b0a-53a1-4c1c-97f7-b24060bc5052 +2024-09-11 09:05:45.273618 2024-09-11 09:05:45.273623 aidref 235097306 R rec 9b192fb6-4d22-47fa-a56e-d918422421b3 +2024-09-11 09:05:45.333217 2024-09-11 09:05:45.333223 aidref 23515606X R rec 814b7051-0960-407c-9071-b88b671b25e2 +2024-09-11 09:05:45.388398 2024-09-11 09:05:45.388403 aidref 235183881 R rec e2553259-16ec-4990-88a1-a86c16562f62 +2024-09-11 09:05:45.446282 2024-09-11 09:05:45.446287 aidref 235239593 R rec 9d2a665e-69c3-429e-ae0f-41e63faa929e +2024-09-11 09:05:45.500998 2024-09-11 09:05:45.501005 aidref 235262927 R rec 1f598f00-64db-4ca5-98ba-a12de34c5d93 +2024-09-11 09:05:45.557288 2024-09-11 09:05:45.557293 aidref 23527125X R rec 3d4774d7-706a-40fd-9f21-e76ed265e150 +2024-09-11 09:05:45.615451 2024-09-11 09:05:45.615457 aidref 235301108 R rec 00728df2-1f4d-43e2-8fee-d2b9d747c964 +2024-09-11 09:05:45.673065 2024-09-11 09:05:45.673071 aidref 235301787 R rec 06b36e96-e684-4033-bc73-a2cf8b243003 +2024-09-11 09:05:45.73 2024-09-11 09:05:45.730005 aidref 235328790 R rec 74890580-692d-43ec-96c6-7c2083bf43fe +2024-09-11 09:05:45.78311 2024-09-11 09:05:45.783116 aidref 235561584 R rec 284844c5-d1e9-471a-bd96-01ed4a7afedb +2024-09-11 09:05:45.847008 2024-09-11 09:05:45.847013 aidref 235598720 R rec 6e994986-b4ea-4eaf-9635-0556b0899676 +2024-09-11 09:05:45.91005 2024-09-11 09:05:45.910055 aidref 235711667 R rec a7305041-c6d6-4438-bf4c-d7d110d98565 +2024-09-11 09:05:45.964725 2024-09-11 09:05:45.96473 aidref 235718211 R rec 736bb375-2e34-4339-8ba1-867f01fa5146 +2024-09-11 09:05:46.01465 2024-09-11 09:05:46.014655 aidref 235835943 R rec ae8e05ed-cf58-47e2-8394-f57daa98265d +2024-09-11 09:05:46.08293 2024-09-11 09:05:46.082936 aidref 235860131 R rec 7ad2d917-37c7-4201-aebb-39ed04304862 +2024-09-11 09:05:46.157328 2024-09-11 09:05:46.157333 aidref 235909025 R rec 75c809e0-ddbb-4a81-8256-2cede7d09215 +2024-09-11 09:05:46.223415 2024-09-11 09:05:46.223421 aidref 236048198 R rec 8a2aed22-fc53-4609-8f58-04f8923e842e +2024-09-11 09:05:46.279319 2024-09-11 09:05:46.279324 aidref 236052616 R rec 946a1070-6fbe-4e16-919c-88870e115644 +2024-09-11 09:05:46.334329 2024-09-11 09:05:46.334335 aidref 236100599 R rec 00158cc7-e41c-455e-80f3-62b5076151c8 +2024-09-11 09:05:46.388872 2024-09-11 09:05:46.388877 aidref 236101706 R rec 12822d1e-e340-4dc1-8f96-c515ce222b46 +2024-09-11 09:05:46.44765 2024-09-11 09:05:46.447656 aidref 236118668 R rec 0314432b-df13-4858-a341-fab4a2ddef91 +2024-09-11 09:05:46.501018 2024-09-11 09:05:46.501024 aidref 236167510 R rec 36dc1ffd-19b6-40f0-ba05-2a07dd439ce4 +2024-09-11 09:05:46.554183 2024-09-11 09:05:46.554188 aidref 236210424 R rec fcf8b137-826b-494c-b704-02b66f5a356d +2024-09-11 09:05:46.60955 2024-09-11 09:05:46.609555 aidref 236421603 R rec 2170dd08-b0c6-4251-ac02-4eff606cec15 +2024-09-11 09:05:46.665006 2024-09-11 09:05:46.665011 aidref 236517627 R rec cde86bd2-6ad8-4916-9059-db4d8abbc5ae +2024-09-11 09:05:46.720486 2024-09-11 09:05:46.720499 aidref 236553917 R rec 1c9a9465-fa96-42d2-8245-f87b1ddacdd3 +2024-09-11 09:05:46.771899 2024-09-11 09:05:46.771904 aidref 236613529 R rec 61183ada-f9ba-4359-ab4a-4f4df6b4ab49 +2024-09-11 09:05:46.825288 2024-09-11 09:05:46.825293 aidref 236615165 R rec 42669fad-dc56-4720-9aee-d1c19421c755 +2024-09-11 09:05:46.877559 2024-09-11 09:05:46.877564 aidref 236625284 R rec e5b6231c-13bf-4c0f-ba4b-8834975a4043 +2024-09-11 09:05:46.932777 2024-09-11 09:05:46.932783 aidref 236722344 R rec b36f3a2e-8704-434c-ba5b-047713bca1af +2024-09-11 09:05:46.98414 2024-09-11 09:05:46.984145 aidref 236724371 R rec f04a3ba9-f649-4b75-91d8-d3a908cf8070 +2024-09-11 09:05:47.040803 2024-09-11 09:05:47.040809 aidref 236751964 R rec 88f07acc-a25b-4faa-8102-12e56c0dbd09 +2024-09-11 09:05:47.094693 2024-09-11 09:05:47.094698 aidref 236752677 R rec 066d8f55-f378-4399-bdb7-e43e0772fa9f +2024-09-11 09:05:47.157819 2024-09-11 09:05:47.157825 aidref 236755889 R rec ad29d68e-5010-4df2-9b1c-539457b47a78 +2024-09-11 09:05:47.208324 2024-09-11 09:05:47.208329 aidref 236758349 R rec e2bc9e6c-46a7-4aa3-845c-33abc107359e +2024-09-11 09:05:47.271737 2024-09-11 09:05:47.271742 aidref 236760378 R rec 7a3d843c-94df-403d-8e5d-0a69462bbd3e +2024-09-11 09:05:47.329999 2024-09-11 09:05:47.330005 aidref 236792539 R rec 4c148ed6-3074-45ec-8ce5-44f684b4550b +2024-09-11 09:05:47.383017 2024-09-11 09:05:47.383023 aidref 237190109 R rec 1fe1ab1b-ffcb-4567-956e-be1f781f4a9e +2024-09-11 09:05:47.437515 2024-09-11 09:05:47.43752 aidref 237257521 R rec 828839d8-3b25-4546-a411-6dbf179c8dea +2024-09-11 09:05:47.501228 2024-09-11 09:05:47.501233 aidref 237613883 R rec e7f900cd-a110-4eb4-91cd-ca517a8673e2 +2024-09-11 09:05:47.554472 2024-09-11 09:05:47.554478 aidref 237634260 R rec 0e170543-59a0-47fe-ab06-6330ab838df2 +2024-09-11 09:05:47.612102 2024-09-11 09:05:47.612108 aidref 237678373 R rec cb4baa15-9c0c-48f5-bad0-d576dca72d3e +2024-09-11 09:05:47.664602 2024-09-11 09:05:47.664607 aidref 23771745X R rec e34f7f79-ea3c-47df-b8ac-356c541f966e +2024-09-11 09:05:47.720015 2024-09-11 09:05:47.72002 aidref 237781565 R rec e06b3684-eeba-417a-ba43-c96863a535af +2024-09-11 09:05:47.773154 2024-09-11 09:05:47.773159 aidref 237801221 R rec 6af9e373-f52c-4fb0-9a75-d5503d03d2d8 +2024-09-11 09:05:47.830545 2024-09-11 09:05:47.830551 aidref 237825457 R rec 2a58e9e5-e1b9-4828-8469-02e3e3997539 +2024-09-11 09:05:47.884383 2024-09-11 09:05:47.884388 aidref 237851539 R rec df47364d-25ae-4595-9aa0-8642f7d3f132 +2024-09-11 09:05:47.950889 2024-09-11 09:05:47.950894 aidref 23789615X R rec d46ba4ba-bb4f-4718-a877-57907e79e728 +2024-09-11 09:05:48.004785 2024-09-11 09:05:48.004791 aidref 238282694 R rec 5b5464bf-2082-44c9-bae2-5fbc78f5a76f +2024-09-11 09:05:48.070741 2024-09-11 09:05:48.070746 aidref 238303845 R rec d9d85d24-2c7e-4ddd-bbba-d535270d676f +2024-09-11 09:05:48.129467 2024-09-11 09:05:48.129473 aidref 23830566X R rec 5c56e78e-759a-456b-9fb5-163518f58116 +2024-09-11 09:05:48.188424 2024-09-11 09:05:48.188432 aidref 238472345 R rec bca0482c-7f03-4f70-b884-fcb70b26c5b8 +2024-09-11 09:05:48.239396 2024-09-11 09:05:48.239401 aidref 238526852 R rec 7a6e7b48-4142-43f3-b7fd-984b7817831b +2024-09-11 09:05:48.29035 2024-09-11 09:05:48.290356 aidref 238572366 R rec efaffbee-ffdd-4c76-b8db-7c2ef6db5032 +2024-09-11 09:05:48.345765 2024-09-11 09:05:48.345772 aidref 238704750 R rec 4440a7dc-fc04-4776-804f-da49ed0fc024 +2024-09-11 09:05:48.413653 2024-09-11 09:05:48.413659 aidref 238709906 R rec 520c32eb-6826-4c71-acf6-81d983ffffa1 +2024-09-11 09:05:48.470068 2024-09-11 09:05:48.470074 aidref 238712435 R rec 791abc3a-0419-4ece-9f3d-3f57caec9a39 +2024-09-11 09:05:48.533799 2024-09-11 09:05:48.533804 aidref 238721892 R rec ee72763e-0a97-4b6b-b547-ae3998bb3799 +2024-09-11 09:05:48.586371 2024-09-11 09:05:48.58638 aidref 240085930 R rec 6df3249e-12bd-4198-82f4-411272a521d0 +2024-09-11 09:05:48.639209 2024-09-11 09:05:48.639215 aidref 240100786 R rec dd289315-50d0-4bd6-99d8-59c69d0cfb30 +2024-09-11 09:05:48.688873 2024-09-11 09:05:48.688878 aidref 240195523 R rec 874a5ca4-1e4a-4fd8-8559-d223f3717c32 +2024-09-11 09:05:48.738797 2024-09-11 09:05:48.738802 aidref 240228448 R rec 6831a138-8fa1-4555-861c-8ec08d010043 +2024-09-11 09:05:48.796094 2024-09-11 09:05:48.7961 aidref 240238117 R rec aa8b009d-32cf-413d-9d20-bef37e5c00fa +2024-09-11 09:05:48.860089 2024-09-11 09:05:48.860095 aidref 240280539 R rec 1c9f21b3-e6d5-4d27-be58-78269d75a95c +2024-09-11 09:05:48.911187 2024-09-11 09:05:48.911192 aidref 240312724 R rec 3f11a138-5307-4144-b001-ddc8316d2817 +2024-09-11 09:05:48.970231 2024-09-11 09:05:48.970235 aidref 240401891 R rec 55f05417-caad-48d9-9af2-d672daa42e02 +2024-09-11 09:05:49.029019 2024-09-11 09:05:49.029025 aidref 240413741 R rec 22f9bdfb-ce84-43d4-896c-b92946a3c267 +2024-09-11 09:05:49.087155 2024-09-11 09:05:49.087161 aidref 240416082 R rec 41ea8535-f05b-4ab6-8eb5-3b384fa6d01b +2024-09-11 09:05:49.144586 2024-09-11 09:05:49.144591 aidref 240441516 R rec 68ae2816-2b16-4978-a22c-280d442f930a +2024-09-11 09:05:49.202992 2024-09-11 09:05:49.202997 aidref 240465067 R rec e17f80e7-c39b-45e3-9436-ca8643cb2be7 +2024-09-11 09:05:49.259798 2024-09-11 09:05:49.259804 aidref 240522737 R rec 0832edca-8433-46f5-9305-a453dea92640 +2024-09-11 09:05:49.31089 2024-09-11 09:05:49.310895 aidref 240554868 R rec 226dfc75-fcab-4ea9-92b1-a26bef1dca94 +2024-09-11 09:05:49.367105 2024-09-11 09:05:49.367111 aidref 240646339 R rec 970a469d-de87-4579-8dba-b41e66e8dba7 +2024-09-11 09:05:49.421631 2024-09-11 09:05:49.421637 aidref 240748069 R rec 56b84f4e-1557-48c1-8966-b9e3b6b5f461 +2024-09-11 09:05:49.482722 2024-09-11 09:05:49.482727 aidref 240816773 R rec 3f3ba09a-0f9d-4733-9930-ce8fca766b1a +2024-09-11 09:05:49.550347 2024-09-11 09:05:49.550353 aidref 240825187 R rec ef3fcc71-076d-4ec6-8ece-547e8b796f45 +2024-09-11 09:05:49.61434 2024-09-11 09:05:49.614345 aidref 240863062 R rec 3d440311-5c4d-40dc-935a-f7855e326fc1 +2024-09-11 09:05:49.671596 2024-09-11 09:05:49.671601 aidref 240922344 R rec 3b23380a-67ce-4077-842f-a65440ffdd4c +2024-09-11 09:05:49.725198 2024-09-11 09:05:49.725203 aidref 240936094 R rec 6bcb4c69-5396-4b83-93b2-dac91b486dc5 +2024-09-11 09:05:49.778859 2024-09-11 09:05:49.778864 aidref 240965280 R rec 9df8c807-a3da-4067-8d1e-845dde9c4d1d +2024-09-11 09:05:49.83688 2024-09-11 09:05:49.836886 aidref 240984374 R rec a9cad022-72ab-4b1f-8458-d1e4f7005ce7 +2024-09-11 09:05:49.892746 2024-09-11 09:05:49.892752 aidref 240987195 R rec c3d9d7a6-15ce-4b4d-a0d8-c321c975fb84 +2024-09-11 09:05:49.954878 2024-09-11 09:05:49.954883 aidref 241130921 R rec 8cdbb784-65e1-46e1-ae2d-135d9793cc3c +2024-09-11 09:05:50.009088 2024-09-11 09:05:50.009093 aidref 241164168 R rec c83ac2ed-3f5d-41a7-9837-36357c1a3350 +2024-09-11 09:05:50.068744 2024-09-11 09:05:50.06875 aidref 241297230 R rec e342e9ad-e669-4d68-8000-906d0fce7fc9 +2024-09-11 09:05:50.122242 2024-09-11 09:05:50.122247 aidref 241375908 R rec 31b1661a-c8d0-4aaf-bca7-e577767b7636 +2024-09-11 09:05:50.18716 2024-09-11 09:05:50.187166 aidref 241428017 R rec 0e2dac58-1925-4ba5-bf52-464d8990f30b +2024-09-11 09:05:50.252665 2024-09-11 09:05:50.252671 aidref 241442567 R rec 97a04a08-c9f8-45ee-8829-d7e63a57a1c0 +2024-09-11 09:05:50.31128 2024-09-11 09:05:50.311286 aidref 241463548 R rec d5aa5981-8abd-4264-a62e-aed43dfc0e09 +2024-09-11 09:05:50.36494 2024-09-11 09:05:50.364945 aidref 241506662 R rec 34f289aa-aa3e-4a3c-bc10-c3ea6bde7913 +2024-09-11 09:05:50.423674 2024-09-11 09:05:50.42368 aidref 241515033 R rec 0445eec1-3c83-4c5f-9e60-48372c9c61f4 +2024-09-11 09:05:50.488281 2024-09-11 09:05:50.488286 aidref 241527104 R rec 3dff383c-b876-4313-9a73-757e8fbc95a4 +2024-09-11 09:05:50.545144 2024-09-11 09:05:50.545149 aidref 241542162 R rec c08adbab-76ca-4c1f-bcc7-7c6fc05f30ed +2024-09-11 09:05:50.599324 2024-09-11 09:05:50.599329 aidref 241568137 R rec 6c274a1d-eb1d-45d1-94bc-779e61661076 +2024-09-11 09:05:50.658069 2024-09-11 09:05:50.658075 aidref 24157899X R rec 584ed325-8f90-4352-90eb-0efb995eb802 +2024-09-11 09:05:50.723799 2024-09-11 09:05:50.723804 aidref 241716853 R rec 2b341900-511c-4f1c-a801-4491e16a1790 +2024-09-11 09:05:50.783205 2024-09-11 09:05:50.78321 aidref 24172726X R rec dd25cbdd-d093-4db5-a4e2-119390539078 +2024-09-11 09:05:50.847738 2024-09-11 09:05:50.847743 aidref 241765528 R rec e8b81167-4293-4c5e-800b-edefcdfb617b +2024-09-11 09:05:50.899581 2024-09-11 09:05:50.899586 aidref 241771188 R rec 49213a1b-758c-4071-88b6-147dca3eb57c +2024-09-11 09:05:50.953662 2024-09-11 09:05:50.953669 aidref 24185055X R rec 7f32ee5b-26a4-4063-9232-514ff03685d1 +2024-09-11 09:05:51.007089 2024-09-11 09:05:51.007094 aidref 241923018 R rec 421e7bdf-ac95-4662-8b0b-8d36c400366a +2024-09-11 09:05:51.058942 2024-09-11 09:05:51.058948 aidref 241957176 R rec 07bf0065-0ed6-4462-b100-e9b06dc1be39 +2024-09-11 09:05:51.112145 2024-09-11 09:05:51.11215 aidref 242007481 R rec 7be19ced-1425-497b-a6a8-8ebec8753132 +2024-09-11 09:05:51.172222 2024-09-11 09:05:51.172227 aidref 242143814 R rec 95a4ecde-66fb-4c84-94b8-bd82008f7828 +2024-09-11 09:05:51.236772 2024-09-11 09:05:51.236777 aidref 242274455 R rec bb18ff0b-7d1c-45f0-8503-f9211bfd1c22 +2024-09-11 09:05:51.301577 2024-09-11 09:05:51.301582 aidref 242293557 R rec c514c046-38fb-4e8c-9ccf-d7b82ce027d3 +2024-09-11 09:05:51.356947 2024-09-11 09:05:51.356952 aidref 242323375 R rec 0a7c7fee-e0ca-4dfa-ae09-0fd7e3b412a1 +2024-09-11 09:05:51.409831 2024-09-11 09:05:51.409836 aidref 242335608 R rec b4e5e4a7-2bab-49bb-81b6-446f337b1343 +2024-09-11 09:05:51.469097 2024-09-11 09:05:51.469102 aidref 242414826 R rec ea473e2b-10ea-4708-8389-cd595e44a9b1 +2024-09-11 09:05:51.521486 2024-09-11 09:05:51.521497 aidref 242426832 R rec 7b3b74c7-04f3-44fe-a2a8-3aabeeb7d78a +2024-09-11 09:05:51.574508 2024-09-11 09:05:51.574514 aidref 242433995 R rec b789af76-67fa-4521-a708-2e31bdc98658 +2024-09-11 09:05:51.632266 2024-09-11 09:05:51.632272 aidref 242448771 R rec ca874e52-cae8-4872-9df7-79e2cbd8211f +2024-09-11 09:05:51.688622 2024-09-11 09:05:51.688628 aidref 242451098 R rec 1c95300d-b1bf-4686-8e5b-8d9de89cbe4f +2024-09-11 09:05:51.7408 2024-09-11 09:05:51.740805 aidref 24245383X R rec e44fc8fb-ef3c-489c-94cf-f3a014f84efd +2024-09-11 09:05:51.800578 2024-09-11 09:05:51.800584 aidref 242518664 R rec 33a87f4f-76d9-4f0c-be41-465e44d1d6d4 +2024-09-11 09:05:51.863276 2024-09-11 09:05:51.863282 aidref 242542948 R rec 517c25b9-b610-4462-afcb-4b1e5053de51 +2024-09-11 09:05:51.915419 2024-09-11 09:05:51.915425 aidref 242557139 R rec b49fa02f-a842-4ced-ae71-e18aa421be78 +2024-09-11 09:05:51.967628 2024-09-11 09:05:51.967634 aidref 242723470 R rec a8ea85a0-1f4f-402a-af7c-2436fb2f9080 +2024-09-11 09:05:52.024 2024-09-11 09:05:52.024005 aidref 242740065 R rec 3c61cf93-a655-40f7-bfab-f62ad4069505 +2024-09-11 09:05:52.077866 2024-09-11 09:05:52.07787 aidref 242756220 R rec f85ac026-6f39-47c6-9620-755a9e149f44 +2024-09-11 09:05:52.131231 2024-09-11 09:05:52.131236 aidref 242866441 R rec 4b728b1e-7f83-45a2-970c-e9e25c052ab5 +2024-09-11 09:05:52.182458 2024-09-11 09:05:52.182464 aidref 242927351 R rec f05c639f-72d9-487a-8a79-e74d4ca869cc +2024-09-11 09:05:52.255133 2024-09-11 09:05:52.255138 aidref 243004028 R rec 3e67c2c2-76d8-406f-9662-8da85325e364 +2024-09-11 09:05:52.317194 2024-09-11 09:05:52.317199 aidref 243016271 R rec 28268848-99eb-4690-b3ae-891945a734fe +2024-09-11 09:05:52.370916 2024-09-11 09:05:52.370921 aidref 243031599 R rec 7d558a23-11f3-49fe-8c93-e1ca5aff0b3e +2024-09-11 09:05:52.423672 2024-09-11 09:05:52.423677 aidref 243035411 R rec 0779c9ca-e52f-44c8-ba0d-f595ceae7559 +2024-09-11 09:05:52.477956 2024-09-11 09:05:52.477961 aidref 243035632 R rec eb33f8ac-6fdf-4c2d-8ab2-18b6dba6d766 +2024-09-11 09:05:52.53579 2024-09-11 09:05:52.535795 aidref 243036620 R rec 5d2a4669-7785-4f8e-b24a-eaece1432db5 +2024-09-11 09:05:52.591922 2024-09-11 09:05:52.591928 aidref 243043619 R rec 116d3e92-48fe-40b8-9ad5-464ad1c7bdae +2024-09-11 09:05:52.646133 2024-09-11 09:05:52.646139 aidref 243137400 R rec 7ab38420-9600-42d5-ba2c-33f6f098951d +2024-09-11 09:05:52.704868 2024-09-11 09:05:52.704873 aidref 243138016 R rec 8cc5bd7e-c05f-49ae-8ed5-23612cff9d5f +2024-09-11 09:05:52.759549 2024-09-11 09:05:52.759554 aidref 243154666 R rec 1b3e7164-9650-463c-b1a6-b50eb215f117 +2024-09-11 09:05:52.810365 2024-09-11 09:05:52.810369 aidref 243208294 R rec 3561ee04-6832-475b-90f7-1e7716179369 +2024-09-11 09:05:52.862026 2024-09-11 09:05:52.862031 aidref 243209983 R rec c9ee56d1-4bec-472f-a70d-4ad7618f4472 +2024-09-11 09:05:52.916926 2024-09-11 09:05:52.916931 aidref 243266413 R rec 833b3691-0786-45a1-85c3-cd048e2597d0 +2024-09-11 09:05:52.980527 2024-09-11 09:05:52.980532 aidref 243279795 R rec 11f78a9f-17a4-459f-9f61-da8a1b76b333 +2024-09-11 09:05:53.037747 2024-09-11 09:05:53.037751 aidref 243300131 R rec 2f80416f-2bb3-43d6-8ea0-dea32d68c0d8 +2024-09-11 09:05:53.098968 2024-09-11 09:05:53.098974 aidref 243306032 R rec 061556e7-6762-42c4-8d94-808f9af7a4a0 +2024-09-11 09:05:53.152662 2024-09-11 09:05:53.152668 aidref 243308442 R rec 67ee256d-a8d2-4288-ae39-bf4abc5e4b26 +2024-09-11 09:05:53.203895 2024-09-11 09:05:53.2039 aidref 243327463 R rec ea947a4b-0358-4b64-908d-e10ca6dc76a1 +2024-09-11 09:05:53.260065 2024-09-11 09:05:53.260071 aidref 243330715 R rec f3181d46-82f9-45de-b549-16c5603e521a +2024-09-11 09:05:53.311477 2024-09-11 09:05:53.311482 aidref 243363796 R rec 319f5389-6b11-4c85-824a-f6cb20694b6e +2024-09-11 09:05:53.364875 2024-09-11 09:05:53.364881 aidref 243370261 R rec 4c17d6fd-0277-4a21-b0f7-ede0c8687639 +2024-09-11 09:05:53.418484 2024-09-11 09:05:53.41849 aidref 243382731 R rec 71d10fd6-a012-4be7-be8c-8c908153a443 +2024-09-11 09:05:53.473182 2024-09-11 09:05:53.473188 aidref 243407998 R rec 4163a828-56f9-406c-b29d-15db9978ce6c +2024-09-11 09:05:53.530367 2024-09-11 09:05:53.530372 aidref 243428421 R rec 98f6be2a-466c-4ca0-9acc-095f51203143 +2024-09-11 09:05:53.587951 2024-09-11 09:05:53.587957 aidref 243433913 R rec 7fd15be5-5c76-4c9c-bab4-9ee6a7ecd0d8 +2024-09-11 09:05:53.649928 2024-09-11 09:05:53.649934 aidref 243488785 R rec 1b29c41e-e260-43b3-9d9d-7ce079ff67c2 +2024-09-11 09:05:53.703032 2024-09-11 09:05:53.703036 aidref 24348951X R rec 9a63ffe4-0865-4c1a-ada0-edd2df42be92 +2024-09-11 09:05:53.756444 2024-09-11 09:05:53.756449 aidref 243512155 R rec 6160e689-3075-4436-8ede-f1a7bde921ec +2024-09-11 09:05:53.811562 2024-09-11 09:05:53.811567 aidref 243530080 R rec b4d154ea-d3d5-4169-bddf-92c06ba47991 +2024-09-11 09:05:53.870688 2024-09-11 09:05:53.870694 aidref 243540434 R rec 9bae6c65-559e-4a1b-85a5-cb81d7a55f8e +2024-09-11 09:05:53.925875 2024-09-11 09:05:53.92588 aidref 243554001 R rec d5864d2e-2b5e-41d6-bbe4-6eea698f6bff +2024-09-11 09:05:53.991244 2024-09-11 09:05:53.99125 aidref 24355933X R rec ad1da47f-6e59-41c5-b2f4-ab612e4cdffb +2024-09-11 09:05:54.045891 2024-09-11 09:05:54.045897 aidref 243567634 R rec 6e1b2d3e-b240-4940-9212-bc6144c67224 +2024-09-11 09:05:54.098679 2024-09-11 09:05:54.098709 aidref 243577583 R rec 10b781e2-f488-4054-bf52-e01fae73c7c9 +2024-09-11 09:05:54.16463 2024-09-11 09:05:54.164636 aidref 243578482 R rec 7d7823fc-29a4-459a-84f6-ffdaaa1cdb4b +2024-09-11 09:05:54.21517 2024-09-11 09:05:54.215175 aidref 243583133 R rec 061e9aea-8b46-4b7f-bc1f-d6aa3fadfd42 +2024-09-11 09:05:54.270659 2024-09-11 09:05:54.270664 aidref 243594895 R rec dd463542-c98a-418d-a334-5187bb4bca2c +2024-09-11 09:05:54.323686 2024-09-11 09:05:54.323692 aidref 243597827 R rec a79ed1ca-f5a3-492b-a227-06c65345f099 +2024-09-11 09:05:54.379056 2024-09-11 09:05:54.379061 aidref 243602049 R rec c4adabf5-80db-46b3-b6f8-5106c80f08f9 +2024-09-11 09:05:54.436806 2024-09-11 09:05:54.436811 aidref 24360405X R rec e7a93d4e-2c08-462a-94e9-267da6c10706 +2024-09-11 09:05:54.493392 2024-09-11 09:05:54.493398 aidref 243621418 R rec 821efef9-ebd2-4144-b2a8-d16b47ffa34d +2024-09-11 09:05:54.547295 2024-09-11 09:05:54.5473 aidref 243630832 R rec 444ce41b-2f26-4cfa-b75b-734ea80253bc +2024-09-11 09:05:54.597546 2024-09-11 09:05:54.597552 aidref 243644124 R rec f20c036a-4d1d-438b-be0e-814a6d81c6fb +2024-09-11 09:05:54.65188 2024-09-11 09:05:54.651886 aidref 243654510 R rec e0f064c9-fd0e-42e9-bedd-f9627b8a5e89 +2024-09-11 09:05:54.712582 2024-09-11 09:05:54.712588 aidref 243677596 R rec 9fad907d-e250-4510-8539-988111a70b6e +2024-09-11 09:05:54.770765 2024-09-11 09:05:54.77077 aidref 243682603 R rec 2f809f72-34ff-451c-addf-02795963c257 +2024-09-11 09:05:54.824557 2024-09-11 09:05:54.824563 aidref 243689616 R rec 6741a64a-1481-480a-9a1b-1d01c756a8f0 +2024-09-11 09:05:54.87837 2024-09-11 09:05:54.878376 aidref 243691041 R rec df193286-763f-481a-a5f1-8af4ea0df27c +2024-09-11 09:05:54.935039 2024-09-11 09:05:54.935044 aidref 243694911 R rec 94d0fb88-1da0-4a58-aa4b-60786547e881 +2024-09-11 09:05:54.988029 2024-09-11 09:05:54.988034 aidref 243698267 R rec 936acc2c-0166-439c-91f2-618c8ecf44d5 +2024-09-11 09:05:55.040444 2024-09-11 09:05:55.040449 aidref 24370206X R rec 29aaa8cc-5c61-4a9d-8da0-9e114bbf4d0b +2024-09-11 09:05:55.093666 2024-09-11 09:05:55.093671 aidref 243703597 R rec 1d6b9598-6d27-4d20-9530-0ddcb37f390f +2024-09-11 09:05:55.149362 2024-09-11 09:05:55.149368 aidref 243712979 R rec 05982e59-48a2-4a12-940f-82610de2fa47 +2024-09-11 09:05:55.210051 2024-09-11 09:05:55.210056 aidref 243737823 R rec 68e3ec63-1cc6-4019-bac0-8386b15eb8d1 +2024-09-11 09:05:55.283179 2024-09-11 09:05:55.283184 aidref 243741138 R rec 4e503a97-04d5-4864-aef1-7735030ead36 +2024-09-11 09:05:55.387354 2024-09-11 09:05:55.387359 aidref 243749120 R rec 0a8bc574-71b6-4636-a169-6a9ed224e5d4 +2024-09-11 09:05:55.440846 2024-09-11 09:05:55.440852 aidref 243803133 R rec 71a2e8c0-6c5b-4423-b099-85ae226c286b +2024-09-11 09:05:55.494918 2024-09-11 09:05:55.494923 aidref 243814682 R rec 84a61b7c-2160-43ad-8204-279d3761c3fd +2024-09-11 09:05:55.551105 2024-09-11 09:05:55.551109 aidref 243820984 R rec 27d2adb2-ceb0-4450-ab58-9ff56ac7f37c +2024-09-11 09:05:55.609942 2024-09-11 09:05:55.609947 aidref 243828446 R rec 0d96a87d-1fb3-4bc2-bb4e-ab7191a2ded4 +2024-09-11 09:05:55.663529 2024-09-11 09:05:55.663535 aidref 243832206 R rec e1786834-5323-4844-9f21-1b04a66d0fe3 +2024-09-11 09:05:55.715473 2024-09-11 09:05:55.715478 aidref 24384025X R rec 4c993bd5-600b-4ddc-ae84-cef69d41b932 +2024-09-11 09:05:55.769659 2024-09-11 09:05:55.769664 aidref 243868065 R rec 8a9f0c67-bdd7-495d-88ac-d31e0dde5ece +2024-09-11 09:05:55.822276 2024-09-11 09:05:55.822281 aidref 24388303X R rec 6d433301-89e1-486f-bd43-a04749ed0455 +2024-09-11 09:05:55.885217 2024-09-11 09:05:55.885222 aidref 243886179 R rec cd8aa9d8-0457-4982-830c-54fc88b8cf6d +2024-09-11 09:05:55.940796 2024-09-11 09:05:55.940801 aidref 243894910 R rec d48a11d3-fa35-479c-93ce-a64fe595a807 +2024-09-11 09:05:55.993226 2024-09-11 09:05:55.993232 aidref 243895046 R rec c99d7f4d-d7b0-46b8-bf77-ae90189dbb84 +2024-09-11 09:05:56.053107 2024-09-11 09:05:56.053111 aidref 243937075 R rec 27a18d28-e5d3-4ac2-9f39-1aebf5dbca77 +2024-09-11 09:05:56.103684 2024-09-11 09:05:56.103689 aidref 244010218 R rec fbc40254-7f86-4b11-8269-e26a6fae797d +2024-09-11 09:05:56.156406 2024-09-11 09:05:56.156411 aidref 244049882 R rec 01a2ec92-1e48-4f1c-939f-2f94b91e9b1b +2024-09-11 09:05:56.213644 2024-09-11 09:05:56.21365 aidref 244052468 R rec 5251126e-f607-41a6-ac8a-30db0aef25fc +2024-09-11 09:05:56.274206 2024-09-11 09:05:56.274211 aidref 24406024X R rec 3f7d5d19-b896-49e4-af83-3e98ea1bcc89 +2024-09-11 09:05:56.325683 2024-09-11 09:05:56.325688 aidref 244061092 R rec 8519ef1c-18ce-44f8-a3ba-c77f8f088938 +2024-09-11 09:05:56.378628 2024-09-11 09:05:56.378634 aidref 244072922 R rec da3c9774-33e7-4b78-952a-4e51f59a83cd +2024-09-11 09:05:56.448392 2024-09-11 09:05:56.448398 aidref 244077878 R rec 4fa90886-f37d-41c2-92a4-247bc5e57caa +2024-09-11 09:05:56.501037 2024-09-11 09:05:56.501043 aidref 244092389 R rec 2cc24907-e18b-40b2-b1fb-3908789d72c4 +2024-09-11 09:05:56.556279 2024-09-11 09:05:56.556284 aidref 244098972 R rec 07615831-cf25-40fd-a1f7-5e838d27b175 +2024-09-11 09:05:56.607094 2024-09-11 09:05:56.607099 aidref 244117802 R rec 362ee072-c907-4aeb-b433-6553a6660660 +2024-09-11 09:05:56.659338 2024-09-11 09:05:56.659343 aidref 244121095 R rec a7d50e30-1fa0-4987-b838-c483d9aee5f8 +2024-09-11 09:05:56.720516 2024-09-11 09:05:56.720524 aidref 244126283 R rec ce4b727d-e837-413a-baa9-3781c11d66db +2024-09-11 09:05:56.770578 2024-09-11 09:05:56.770583 aidref 244135282 R rec bb1f41ab-da91-46c3-8774-55e5a91070a8 +2024-09-11 09:05:56.827584 2024-09-11 09:05:56.82759 aidref 244139563 R rec a096ff89-187a-4847-84a2-90fb3f6c7358 +2024-09-11 09:05:56.939994 2024-09-11 09:05:56.939999 aidref 244165610 R rec f4af0365-7307-4774-9bcc-bc0f85ee5b89 +2024-09-11 09:05:56.989946 2024-09-11 09:05:56.989951 aidref 24416603X R rec 5a146711-977b-4b81-ae4a-917bdb7ff449 +2024-09-11 09:05:57.042509 2024-09-11 09:05:57.042515 aidref 244233403 R rec b9641030-e99f-449a-8962-66dee464fdca +2024-09-11 09:05:57.102135 2024-09-11 09:05:57.10214 aidref 244251568 R rec 5ff5909d-2cae-4f68-b45f-85422c1501a7 +2024-09-11 09:05:57.158439 2024-09-11 09:05:57.158445 aidref 244257469 R rec 5fb9aefe-b321-40f9-abf3-a28b418f2257 +2024-09-11 09:05:57.21958 2024-09-11 09:05:57.219586 aidref 244273111 R rec 2d14d60d-b8c5-479b-8774-415f0899c270 +2024-09-11 09:05:57.271999 2024-09-11 09:05:57.272005 aidref 244318301 R rec e9da1e43-9419-4cb8-946b-2a3a3c4ed990 +2024-09-11 09:05:57.322548 2024-09-11 09:05:57.322554 aidref 244324913 R rec 87a8ed2c-1008-4aea-bbe6-b53f53a42401 +2024-09-11 09:05:57.377732 2024-09-11 09:05:57.377738 aidref 244341672 R rec bfbc5a55-8b1b-44fe-ba1e-2aae0a1451cc +2024-09-11 09:05:57.42702 2024-09-11 09:05:57.427025 aidref 244341796 R rec 8e8f43b3-d613-486f-a7b5-2a3aa13a3d16 +2024-09-11 09:05:57.483779 2024-09-11 09:05:57.483785 aidref 244350329 R rec 6ad15a5c-0230-4268-86af-5fc963a3eeba +2024-09-11 09:05:57.541258 2024-09-11 09:05:57.541264 aidref 244402515 R rec 483bf21e-1678-4517-800b-e49fd76032a1 +2024-09-11 09:05:57.598728 2024-09-11 09:05:57.598733 aidref 244420645 R rec 733a438d-0807-4108-8966-ff9f33576c4c +2024-09-11 09:05:57.653981 2024-09-11 09:05:57.653985 aidref 244433577 R rec f67b50b1-68f8-416c-84b4-c5f87d650c67 +2024-09-11 09:05:57.73943 2024-09-11 09:05:57.739436 aidref 244450765 R rec e55617f2-95a3-4dac-8e31-91e9c23ab98b +2024-09-11 09:05:57.791318 2024-09-11 09:05:57.791322 aidref 244788987 R rec 12459f1d-2db8-45db-9398-80657693feb9 +2024-09-11 09:05:57.846511 2024-09-11 09:05:57.846517 aidref 244799768 R rec 387a9312-e369-43e1-8a54-fcffd264f54e +2024-09-11 09:05:57.898917 2024-09-11 09:05:57.898922 aidref 244882908 R rec e94e80b4-fd3a-4feb-8507-384fe343a641 +2024-09-11 09:05:57.952454 2024-09-11 09:05:57.952459 aidref 24488451X R rec f2475f89-1ebb-4ad4-8540-90960b089d77 +2024-09-11 09:05:58.011473 2024-09-11 09:05:58.011478 aidref 244888558 R rec fa104b65-a210-44fd-83e0-2a65eab8746a +2024-09-11 09:05:58.069381 2024-09-11 09:05:58.069386 aidref 244922624 R rec c2a6ea7f-45ce-4cc6-842a-2f6d9ca38e74 +2024-09-11 09:05:58.119568 2024-09-11 09:05:58.119573 aidref 244934894 R rec 4f089644-6eef-4ee5-b2b6-2b058e842c78 +2024-09-11 09:05:58.173339 2024-09-11 09:05:58.173345 aidref 245023542 R rec e2f2c3e2-cbe1-455a-a35c-1e2c5f8bed44 +2024-09-11 09:05:58.224904 2024-09-11 09:05:58.224909 aidref 245054200 R rec 0f32d7c9-b8ca-4040-a5f9-9b999dd5f956 +2024-09-11 09:05:58.288358 2024-09-11 09:05:58.288364 aidref 24507869X R rec 89588486-0067-48d0-8be3-09d85151efb9 +2024-09-11 09:05:58.343514 2024-09-11 09:05:58.343519 aidref 24515969X R rec cf65ae6d-f26a-4665-93a9-21a8518ba281 +2024-09-11 09:05:58.402928 2024-09-11 09:05:58.402933 aidref 245200142 R rec 43888649-5d51-45b5-ab34-8ce25dbefb42 +2024-09-11 09:05:58.469242 2024-09-11 09:05:58.469247 aidref 245235949 R rec 01d24424-b35f-473b-915b-ca57fcb384c5 +2024-09-11 09:05:58.528328 2024-09-11 09:05:58.528333 aidref 245265805 R rec 205510c8-4d33-4ee5-8c3e-c9fd3780a4ef +2024-09-11 09:05:58.583944 2024-09-11 09:05:58.583949 aidref 245313486 R rec 7feec7ec-f506-4401-b043-cc309897cbd6 +2024-09-11 09:05:58.639471 2024-09-11 09:05:58.639477 aidref 248175920 R rec 3390fffb-ad18-4eba-8c14-3b6173e20610 +2024-09-11 09:05:58.697159 2024-09-11 09:05:58.697166 aidref 248213032 R rec ff818f24-8a70-47c2-8400-e013ee1c1300 +2024-09-11 09:05:58.754925 2024-09-11 09:05:58.754933 aidref 248374249 R rec 8e7d2758-5026-41d8-a03e-0eb7e33131c7 +2024-09-11 09:05:58.808394 2024-09-11 09:05:58.808399 aidref 248391038 R rec 63a86f94-3c07-4e67-b33c-9159d9c70dcb +2024-09-11 09:05:58.866574 2024-09-11 09:05:58.86658 aidref 248436074 R rec 9a45724d-8346-4659-9405-286c2619b5eb +2024-09-11 09:05:58.940595 2024-09-11 09:05:58.940601 aidref 248958445 R rec 6a84b855-396f-4d98-ba1d-b851b1f33a2b +2024-09-11 09:05:59.013958 2024-09-11 09:05:59.013963 aidref 248982621 R rec 62b38ba5-cc06-41c5-ab97-3189cc2d7006 +2024-09-11 09:05:59.073964 2024-09-11 09:05:59.073968 aidref 249008173 R rec e22a10e2-dee8-4fd5-8838-d5ce009bbd7d +2024-09-11 09:05:59.131354 2024-09-11 09:05:59.131359 aidref 249129019 R rec 247f194c-c203-492a-b186-a92e9fb02f50 +2024-09-11 09:05:59.192451 2024-09-11 09:05:59.192457 aidref 24913344X R rec bc74765a-14d9-411c-b4f5-1b005fed5276 +2024-09-11 09:05:59.246172 2024-09-11 09:05:59.246177 aidref 249284472 R rec a3c93d3f-32d8-4fd8-89f4-1bd13a1bbce4 +2024-09-11 09:05:59.307676 2024-09-11 09:05:59.307682 aidref 249311461 R rec 260de9c4-d0d2-42ba-a5ba-79caba0b1c16 +2024-09-11 09:05:59.364448 2024-09-11 09:05:59.364454 aidref 249406845 R rec 49cbb1d9-1f78-439f-9904-e971c0dbe36b +2024-09-11 09:05:59.421599 2024-09-11 09:05:59.421605 aidref 249486504 R rec 8c07d7b1-e581-488d-88e7-dbcb6cd6bde9 +2024-09-11 09:05:59.482206 2024-09-11 09:05:59.482212 aidref 249730375 R rec 7b74784e-3f25-4dfc-bb95-eb2dfb569622 +2024-09-11 09:05:59.536879 2024-09-11 09:05:59.536884 aidref 249743523 R rec ab9364df-2d03-4f41-a51c-de9d0df00be5 +2024-09-11 09:05:59.589275 2024-09-11 09:05:59.58928 aidref 249775441 R rec 06251c7c-5199-417b-8126-10128e43b4ca +2024-09-11 09:05:59.643697 2024-09-11 09:05:59.643703 aidref 249825074 R rec 99cdf998-48de-4116-b748-623bacfc5f68 +2024-09-11 09:05:59.698851 2024-09-11 09:05:59.698857 aidref 249834472 R rec a1b278db-9ac6-482c-9569-946dbf48a703 +2024-09-11 09:05:59.750988 2024-09-11 09:05:59.750995 aidref 249952378 R rec 8d1fb9e5-a263-4eae-b3bc-61f910e61e3a +2024-09-11 09:05:59.803234 2024-09-11 09:05:59.803239 aidref 249981394 R rec 24ec0778-610c-4210-bf8f-96f95f2edc60 +2024-09-11 09:05:59.855249 2024-09-11 09:05:59.855254 aidref 250341611 R rec 8bc86a25-bb61-43be-85f2-e008a16d115e +2024-09-11 09:05:59.909976 2024-09-11 09:05:59.909982 aidref 250364913 R rec ab805f42-10d1-4f9a-ad8e-c365de1eaf76 +2024-09-11 09:06:00.004752 2024-09-11 09:06:00.004758 aidref 250368196 R rec 9d892c9a-1a0a-4fd3-85ba-cadc6090877a +2024-09-11 09:06:00.061104 2024-09-11 09:06:00.061109 aidref 250382598 R rec 6979dbde-9e4a-4a8c-8ab2-f3638c6ae634 +2024-09-11 09:06:00.112285 2024-09-11 09:06:00.11229 aidref 250383926 R rec 4e910b5e-2b22-4a5a-9789-12e790772fc4 +2024-09-11 09:06:00.171651 2024-09-11 09:06:00.171656 aidref 250384183 R rec 98a1204d-e780-476f-867a-076362811bc4 +2024-09-11 09:06:00.223375 2024-09-11 09:06:00.223381 aidref 250397072 R rec 81414c15-4a82-4083-9635-8ddd825b9134 +2024-09-11 09:06:00.275703 2024-09-11 09:06:00.275709 aidref 250402823 R rec 53b57f24-af8a-4f3c-8ab1-2f117f2366ae +2024-09-11 09:06:00.333055 2024-09-11 09:06:00.33306 aidref 250416468 R rec 75693ab9-954c-4f08-b4ee-a9aba3d8a804 +2024-09-11 09:06:00.386698 2024-09-11 09:06:00.386705 aidref 250507617 R rec 87de98a6-4f48-4983-b486-b949c03f8452 +2024-09-11 09:06:00.454558 2024-09-11 09:06:00.454563 aidref 250599325 R rec 986e7912-b75b-4695-92c5-7b40416f29b7 +2024-09-11 09:06:00.510845 2024-09-11 09:06:00.51085 aidref 250603187 R rec 62d5c4ed-89f6-46aa-a03f-63da94ecfdc5 +2024-09-11 09:06:00.568001 2024-09-11 09:06:00.568006 aidref 250620499 R rec d130ed7f-4e99-44af-99cf-1dd4efe3ced0 +2024-09-11 09:06:00.626156 2024-09-11 09:06:00.626162 aidref 250649691 R rec 7e95be40-5cfb-4f92-8c4f-82c1c2c25d2e +2024-09-11 09:06:00.688016 2024-09-11 09:06:00.688021 aidref 250664968 R rec d3bf46ad-c026-4a76-9962-952c20cfd385 +2024-09-11 09:06:00.752686 2024-09-11 09:06:00.752693 aidref 250680505 R rec b037dfdf-fbde-4a5e-b910-63f8cea5693b +2024-09-11 09:06:00.819414 2024-09-11 09:06:00.819421 aidref 250907801 R rec a655073a-43e5-41fa-b511-19aff96e9d13 +2024-09-11 09:06:00.875953 2024-09-11 09:06:00.875959 aidref 250949903 R rec 2d4fa320-1011-4070-9d5a-d9e363bcfb0f +2024-09-11 09:06:00.932945 2024-09-11 09:06:00.932951 aidref 251014878 R rec c4370a91-e42f-49dc-807e-c104479e5d04 +2024-09-11 09:06:00.994231 2024-09-11 09:06:00.994236 aidref 251123022 R rec f78bc9a3-edd1-4a7d-b170-690aa5d02b76 +2024-09-11 09:06:01.085178 2024-09-11 09:06:01.085183 aidref 251131807 R rec 68eeea0a-d59d-4c7e-9dd9-0cf9e1c514a1 +2024-09-11 09:06:01.146407 2024-09-11 09:06:01.146413 aidref 251138607 R rec 7d1deaf5-4c7f-4ccb-843b-3b6037e0b30e +2024-09-11 09:06:01.202466 2024-09-11 09:06:01.202472 aidref 251195627 R rec 8b041e36-5050-4dd9-9f85-b3b2b825d647 +2024-09-11 09:06:01.259752 2024-09-11 09:06:01.259758 aidref 251202283 R rec bee63455-4a80-46fc-bb66-cdeea2c8482a +2024-09-11 09:06:01.322496 2024-09-11 09:06:01.322502 aidref 251278492 R rec 5f281b50-80c9-4738-92f2-e024ead763c2 +2024-09-11 09:06:01.371004 2024-09-11 09:06:01.371009 aidref 251314677 R rec e1ed9997-612f-4e7a-af46-53773e7c7e7f +2024-09-11 09:06:01.421319 2024-09-11 09:06:01.421324 aidref 251360164 R rec ccf5b6f7-58a9-44f8-8bfd-93c17e1c1b24 +2024-09-11 09:06:01.472546 2024-09-11 09:06:01.472551 aidref 251394581 R rec 71c0ed61-7fde-4311-bab7-3fde07a83b59 +2024-09-11 09:06:01.523773 2024-09-11 09:06:01.523778 aidref 251396312 R rec 0c1e3293-cdca-42f3-ab94-0f09612d61b4 +2024-09-11 09:06:01.577984 2024-09-11 09:06:01.577989 aidref 251411699 R rec 2d2122f4-0036-4b2c-8e43-b4728a9c5391 +2024-09-11 09:06:01.630567 2024-09-11 09:06:01.630572 aidref 251429180 R rec a5b9302d-f11e-4273-980d-61420bc8418d +2024-09-11 09:06:01.686319 2024-09-11 09:06:01.686325 aidref 251432122 R rec 4fb2ddd4-6570-4bb7-adef-45327c784cdf +2024-09-11 09:06:01.739267 2024-09-11 09:06:01.739271 aidref 251443361 R rec 5b33df22-a4a3-4790-a2fe-1de2ca384a04 +2024-09-11 09:06:01.795285 2024-09-11 09:06:01.79529 aidref 251455394 R rec 19e7c10a-fb99-45a7-ac01-a827321f98f2 +2024-09-11 09:06:01.851328 2024-09-11 09:06:01.851333 aidref 251520528 R rec e7c51132-cc09-4523-b934-0b808f5e6e32 +2024-09-11 09:06:01.903331 2024-09-11 09:06:01.903337 aidref 25154091X R rec 1bf47869-ec05-4f34-8210-98221c233806 +2024-09-11 09:06:01.95903 2024-09-11 09:06:01.959035 aidref 25156584X R rec 3999a9af-09fb-4887-b586-d329a03f6cd0 +2024-09-11 09:06:02.016185 2024-09-11 09:06:02.016191 aidref 25158917X R rec 8b372797-a642-438c-baf2-d673447a372b +2024-09-11 09:06:02.072494 2024-09-11 09:06:02.0725 aidref 251615014 R rec 4c86fc15-b701-47cc-ac2c-48a963247a29 +2024-09-11 09:06:02.125533 2024-09-11 09:06:02.125539 aidref 251625338 R rec 6e4f7738-4369-4021-bcea-fc2b2cffc8b1 +2024-09-11 09:06:02.184074 2024-09-11 09:06:02.18408 aidref 251629783 R rec 95fff209-5ee2-47c6-aba3-4deca89f03cf +2024-09-11 09:06:02.284818 2024-09-11 09:06:02.284824 aidref 251650375 R rec a576142a-7f26-4d40-b101-a7690471c87f +2024-09-11 09:06:02.344042 2024-09-11 09:06:02.344048 aidref 251660346 R rec 213f105f-6a85-4acc-b5df-9c0e0a618d72 +2024-09-11 09:06:02.393847 2024-09-11 09:06:02.393852 aidref 251871533 R rec e5f158df-5522-44bf-a21d-111c9eda144d +2024-09-11 09:06:02.443647 2024-09-11 09:06:02.443652 aidref 252252799 R rec 5335d2ab-a646-4c7e-9261-716c134d9dd9 +2024-09-11 09:06:02.499049 2024-09-11 09:06:02.499054 aidref 25234717X R rec 710c3274-3cb1-4d93-8001-95cd97e6f53e +2024-09-11 09:06:02.54979 2024-09-11 09:06:02.549795 aidref 252382781 R rec c1735c3d-aa3d-431a-9794-4f6ffcbf7841 +2024-09-11 09:06:02.605308 2024-09-11 09:06:02.605313 aidref 252388208 R rec a91341a4-f5fc-4eb1-abd4-a18be809e901 +2024-09-11 09:06:02.660066 2024-09-11 09:06:02.660072 aidref 252426398 R rec cc636d21-ca1a-44fe-b682-248400f4b879 +2024-09-11 09:06:02.71269 2024-09-11 09:06:02.712696 aidref 252437888 R rec d249a83b-815a-4fb7-9459-7dc90b5eefe1 +2024-09-11 09:06:02.769034 2024-09-11 09:06:02.76904 aidref 252443748 R rec 996f9cf1-4edc-4259-92c4-0e2f61d86056 +2024-09-11 09:06:02.81996 2024-09-11 09:06:02.819966 aidref 252462599 R rec 7e4f247c-be7e-461e-959c-f5509abeb264 +2024-09-11 09:06:02.876236 2024-09-11 09:06:02.876241 aidref 25256541X R rec 779752a7-6f05-4160-8c0a-21ae34f86e26 +2024-09-11 09:06:02.932621 2024-09-11 09:06:02.932626 aidref 25268088X R rec 50bcd84d-2bcf-41a9-af80-84ec47204e7f +2024-09-11 09:06:02.988337 2024-09-11 09:06:02.988342 aidref 252755294 R rec 48e01cb8-6885-4b85-8928-ac0d5cfa2b5f +2024-09-11 09:06:03.04372 2024-09-11 09:06:03.043724 aidref 252764277 R rec a7efb586-b6b1-4b20-9186-5cb5dce16e12 +2024-09-11 09:06:03.098976 2024-09-11 09:06:03.098981 aidref 252855477 R rec 635dea8e-c0b1-47cd-bad0-dba6cd5ff902 +2024-09-11 09:06:03.155511 2024-09-11 09:06:03.155516 aidref 252916263 R rec 40386c51-61af-484a-91b5-fb106718d70d +2024-09-11 09:06:03.209484 2024-09-11 09:06:03.209489 aidref 25295114X R rec 57f5091d-469c-4d47-a9af-7ac4a17debae +2024-09-11 09:06:03.266082 2024-09-11 09:06:03.266087 aidref 25304653X R rec 328c21ec-7f61-4bfe-a622-cecb133ee26f +2024-09-11 09:06:03.326642 2024-09-11 09:06:03.326648 aidref 253143462 R rec 14eaad0b-0066-412e-bd9c-663ed4e7db5f +2024-09-11 09:06:03.387274 2024-09-11 09:06:03.38728 aidref 253180627 R rec a2bb1038-1385-4108-be4f-1161c2556928 +2024-09-11 09:06:03.442332 2024-09-11 09:06:03.442337 aidref 253203155 R rec 39ebfba0-ac20-4e28-bea2-badeeff76a48 +2024-09-11 09:06:03.532392 2024-09-11 09:06:03.532397 aidref 25322859X R rec 5cf959b0-43de-45ba-bc11-455ab21032b5 +2024-09-11 09:06:03.587538 2024-09-11 09:06:03.587545 aidref 25324403X R rec d08f3bc5-c71a-4225-a11c-b2d6d13f911f +2024-09-11 09:06:03.639518 2024-09-11 09:06:03.639523 aidref 253263298 R rec 73f52de0-a744-46d1-9e7c-54c23cdca490 +2024-09-11 09:06:03.69169 2024-09-11 09:06:03.691696 aidref 253507790 R rec 673832cc-967b-42d9-9394-3f8d83ae9937 +2024-09-11 09:06:03.7503 2024-09-11 09:06:03.750306 aidref 253610958 R rec b5fb498c-ad41-4016-a060-c9298bb671f0 +2024-09-11 09:06:03.802363 2024-09-11 09:06:03.802369 aidref 253613957 R rec 3c150be5-1261-496a-bc1a-b0f1313bf9c0 +2024-09-11 09:06:03.854011 2024-09-11 09:06:03.854019 aidref 253654041 R rec a45a2731-796f-4940-aaf6-4fb75676a07c +2024-09-11 09:06:03.908938 2024-09-11 09:06:03.908943 aidref 253760844 R rec d66187d8-e757-4e1c-8c62-6c39aba4a9ae +2024-09-11 09:06:03.971401 2024-09-11 09:06:03.971406 aidref 253765005 R rec 0f0c67b2-e2cf-4aa3-ae1f-4fb21a97b0e9 +2024-09-11 09:06:04.032468 2024-09-11 09:06:04.032475 aidref 253814103 R rec c7bee5f1-083b-4201-a7c9-c1b09e63a06e +2024-09-11 09:06:04.087773 2024-09-11 09:06:04.087778 aidref 253879965 R rec 109900c6-cda1-4245-9ef3-4a31f1799518 +2024-09-11 09:06:04.136242 2024-09-11 09:06:04.136248 aidref 25394144X R rec b9570f70-9b39-4c64-9bf8-504f551dd924 +2024-09-11 09:06:04.194476 2024-09-11 09:06:04.194482 aidref 253973031 R rec 53a4a0c7-e364-475b-9989-a64dad81d02e +2024-09-11 09:06:04.250986 2024-09-11 09:06:04.250991 aidref 254069606 R rec da451263-60ca-4029-813a-8039cec16518 +2024-09-11 09:06:04.304648 2024-09-11 09:06:04.304653 aidref 254110754 R rec 744c06ce-9c5b-4306-bfb2-f2a8ccf39077 +2024-09-11 09:06:04.358449 2024-09-11 09:06:04.358454 aidref 254146279 R rec 92ef18be-df18-4d2f-8761-844fd347a44c +2024-09-11 09:06:04.409701 2024-09-11 09:06:04.409706 aidref 254215696 R rec f0f44288-5056-412e-ab9b-de070f9ec8e1 +2024-09-11 09:06:04.493301 2024-09-11 09:06:04.493306 aidref 254232787 R rec 254e7ff7-2e31-435d-b6db-4cc0936680de +2024-09-11 09:06:04.548112 2024-09-11 09:06:04.548118 aidref 254344445 R rec d429c98c-7b50-47bd-9201-8b449493d309 +2024-09-11 09:06:04.601663 2024-09-11 09:06:04.601669 aidref 254374557 R rec 8a5d8d25-6d96-40ec-9bd7-ccad1df9bde1 +2024-09-11 09:06:04.683803 2024-09-11 09:06:04.68381 aidref 254391508 R rec 98b4af72-6f01-4d99-aba0-efc6d992314f +2024-09-11 09:06:04.738523 2024-09-11 09:06:04.738529 aidref 254418422 R rec 8672588b-e2fa-4d29-ad19-a2f8599035bb +2024-09-11 09:06:04.79634 2024-09-11 09:06:04.796347 aidref 254429521 R rec 129616ff-c48b-4328-bf65-689da1aa8301 +2024-09-11 09:06:04.850029 2024-09-11 09:06:04.850033 aidref 254455565 R rec 38597809-94c4-489d-a4d7-444ebf80f302 +2024-09-11 09:06:04.904243 2024-09-11 09:06:04.904248 aidref 254491758 R rec 00d338f0-e2db-4742-87a7-512b83b790d1 +2024-09-11 09:06:04.960371 2024-09-11 09:06:04.960377 aidref 254522564 R rec 7d5e89b0-0610-487b-a992-bb26cf2859d5 +2024-09-11 09:06:05.02022 2024-09-11 09:06:05.020227 aidref 254587763 R rec 4d1ba8c3-4b1e-443c-9850-ac4a337c7d1c +2024-09-11 09:06:05.073736 2024-09-11 09:06:05.07374 aidref 254630618 R rec 8ff9296a-c0d9-4697-a71b-5f0ce89d4048 +2024-09-11 09:06:05.132454 2024-09-11 09:06:05.132459 aidref 254678475 R rec bd87e45d-e710-45b2-bf4a-52e1f8dce905 +2024-09-11 09:06:05.191365 2024-09-11 09:06:05.191371 aidref 254738591 R rec 646a23a5-c2b1-4640-a94b-0d90cee82d3f +2024-09-11 09:06:05.248464 2024-09-11 09:06:05.248469 aidref 254743048 R rec e041fd5b-a874-4a21-beca-ecd2ddc0f640 +2024-09-11 09:06:05.302325 2024-09-11 09:06:05.30233 aidref 254747086 R rec 447a9c85-605f-4b46-8a1c-babc0b9061f4 +2024-09-11 09:06:05.362888 2024-09-11 09:06:05.362894 aidref 254775578 R rec 8daa6625-f691-4aef-ae13-479be48ae3d8 +2024-09-11 09:06:05.414488 2024-09-11 09:06:05.414494 aidref 254778569 R rec 2de1f10a-f806-440a-98f8-28824162abb3 +2024-09-11 09:06:05.468484 2024-09-11 09:06:05.468489 aidref 254816568 R rec c26d2d8b-c4e9-462c-b506-1a0fd7ea5ad9 +2024-09-11 09:06:05.525527 2024-09-11 09:06:05.525532 aidref 25483180X R rec 3508be87-01dc-4b45-aa12-db70f251afda +2024-09-11 09:06:05.595245 2024-09-11 09:06:05.595251 aidref 254929192 R rec 6b6c9d5e-fc37-42ff-8848-84cfa0eddd5d +2024-09-11 09:06:05.655747 2024-09-11 09:06:05.655753 aidref 254941540 R rec 50590931-de39-423d-a762-8677a5b76a07 +2024-09-11 09:06:05.71985 2024-09-11 09:06:05.719855 aidref 254976719 R rec 48dab4c3-c3f9-4ada-ae39-36cf98f91ebc +2024-09-11 09:06:05.82281 2024-09-11 09:06:05.822816 aidref 254994024 R rec 7adfb869-ec60-4eb0-bae0-e9ba344df80a +2024-09-11 09:06:05.892116 2024-09-11 09:06:05.892121 aidref 255028679 R rec 7b0950df-c9ed-4bdd-ba7d-30bc31e425df +2024-09-11 09:06:05.955959 2024-09-11 09:06:05.955964 aidref 25508255X R rec 6d4eb459-ffb9-40c6-9d6e-23f2badd96a4 +2024-09-11 09:06:06.022158 2024-09-11 09:06:06.022164 aidref 255083556 R rec 36916dc5-94e3-464f-a97a-cfd9151f1cc0 +2024-09-11 09:06:06.087701 2024-09-11 09:06:06.087707 aidref 255144490 R rec e1800aa6-f52d-4f9c-8168-f2301eb1f869 +2024-09-11 09:06:06.147504 2024-09-11 09:06:06.147509 aidref 255241518 R rec ab79d44a-d3cb-43d2-a8b7-b767d6abbb4c +2024-09-11 09:06:06.212683 2024-09-11 09:06:06.212689 aidref 255348517 R rec bf8378b2-20f0-4f91-b7b0-cec995baba87 +2024-09-11 09:06:06.269044 2024-09-11 09:06:06.269049 aidref 255361343 R rec c420dce6-ce62-40fa-9a56-2c2d9766f7a0 +2024-09-11 09:06:06.329588 2024-09-11 09:06:06.329595 aidref 255386419 R rec c298808c-5a6e-4a4a-b831-3cb8e536c062 +2024-09-11 09:06:06.39258 2024-09-11 09:06:06.392586 aidref 255415184 R rec 0e1bbe50-3536-4c30-b93a-abadc9e2462b +2024-09-11 09:06:06.445834 2024-09-11 09:06:06.445841 aidref 255430760 R rec 29c5a65b-6e5c-4f4e-851a-0185f0fe84c4 +2024-09-11 09:06:06.509023 2024-09-11 09:06:06.509029 aidref 255435169 R rec 6e909761-30c5-4239-b1bb-8522b584a449 +2024-09-11 09:06:06.573095 2024-09-11 09:06:06.573101 aidref 255444478 R rec d599e961-8c4a-49a9-a267-00ace7cd6f0c +2024-09-11 09:06:06.636584 2024-09-11 09:06:06.63659 aidref 255445075 R rec e7e4c825-e36f-4a75-8d1f-7099c740e760 +2024-09-11 09:06:06.698631 2024-09-11 09:06:06.698638 aidref 255453876 R rec b6cb22c7-7289-4ad7-b1b5-27ecb542d746 +2024-09-11 09:06:06.761839 2024-09-11 09:06:06.761844 aidref 255473532 R rec fe790948-1ebd-4fb8-8ed5-28069519bdb3 +2024-09-11 09:06:06.819599 2024-09-11 09:06:06.819603 aidref 255495269 R rec 1b40080f-a7cc-4352-843c-b5461f9041de +2024-09-11 09:06:06.87229 2024-09-11 09:06:06.872295 aidref 255554338 R rec a5c9d984-338d-4f58-abc4-8b1eed127fbb +2024-09-11 09:06:06.93112 2024-09-11 09:06:06.931126 aidref 255666594 R rec d63f3685-6983-42a3-8c9b-e5b364b7ab23 +2024-09-11 09:06:07.002026 2024-09-11 09:06:07.002031 aidref 255733151 R rec c9eecc90-4f6c-40c5-99cb-4ae942fca923 +2024-09-11 09:06:07.079477 2024-09-11 09:06:07.079483 aidref 255923058 R rec 7e00f790-e578-4bde-8021-a70ecd846db6 +2024-09-11 09:06:07.140525 2024-09-11 09:06:07.140531 aidref 255939248 R rec 004a2fad-4478-43d4-8417-6eb1d89d8197 +2024-09-11 09:06:07.192302 2024-09-11 09:06:07.192308 aidref 255998880 R rec 74079585-db76-45d2-b951-4ab60ace1492 +2024-09-11 09:06:07.245583 2024-09-11 09:06:07.245588 aidref 256075980 R rec 3279e912-c0fd-4030-9ef4-61746a3ee2e7 +2024-09-11 09:06:07.295188 2024-09-11 09:06:07.295193 aidref 256123829 R rec 0d2945ce-cd4b-47aa-a0ed-bbad0674287e +2024-09-11 09:06:07.353725 2024-09-11 09:06:07.35373 aidref 25623650X R rec b815b003-87ad-4000-a52d-d4c72806b120 +2024-09-11 09:06:07.407413 2024-09-11 09:06:07.407419 aidref 256322325 R rec 64dc34cf-b599-4954-b635-4d7b9a63e277 +2024-09-11 09:06:07.469063 2024-09-11 09:06:07.469069 aidref 25640772X R rec beb36ae0-6688-484c-9d72-471328b2e4fb +2024-09-11 09:06:07.521704 2024-09-11 09:06:07.521709 aidref 256435847 R rec 5d3b1065-c49c-4058-9be8-e50a990a720e +2024-09-11 09:06:07.584016 2024-09-11 09:06:07.584021 aidref 256458391 R rec 8d2faf0e-cb2d-4279-a5df-b6c1b8a91153 +2024-09-11 09:06:07.64081 2024-09-11 09:06:07.640815 aidref 25650945X R rec c46010e2-710f-4d6f-b2ab-052e830b7b9c +2024-09-11 09:06:07.694925 2024-09-11 09:06:07.694931 aidref 256515417 R rec 74c780f4-4d95-4e0d-8ce2-d25469e82c45 +2024-09-11 09:06:07.754243 2024-09-11 09:06:07.754249 aidref 256606625 R rec 2b40253c-93e4-4e70-bbd9-56ccf6c9de1c +2024-09-11 09:06:07.814317 2024-09-11 09:06:07.814323 aidref 256607982 R rec 9ab9cf65-1fc1-4d52-a5f2-b7423567f9ef +2024-09-11 09:06:07.869724 2024-09-11 09:06:07.869729 aidref 256622302 R rec 36989359-0adf-49fe-82d2-b2199ae7638e +2024-09-11 09:06:07.922679 2024-09-11 09:06:07.922685 aidref 256653992 R rec a961b948-d13d-4555-90db-955415741462 +2024-09-11 09:06:07.978687 2024-09-11 09:06:07.978693 aidref 256728682 R rec 3c27ee7f-2fc5-42bd-90a0-dd6dfc83901e +2024-09-11 09:06:08.032821 2024-09-11 09:06:08.032827 aidref 256767483 R rec 217d013a-9fef-430a-a6ab-ffb7f15d666c +2024-09-11 09:06:08.116957 2024-09-11 09:06:08.116962 aidref 256769044 R rec 108a848a-1179-4c86-8b7e-b033895783ba +2024-09-11 09:06:08.173145 2024-09-11 09:06:08.173151 aidref 256910200 R rec 7cffe533-ca1c-458a-8c97-1ab7800a5c98 +2024-09-11 09:06:08.234019 2024-09-11 09:06:08.234024 aidref 256931038 R rec f9c869e3-60c6-4a88-a149-1a6c592493e7 +2024-09-11 09:06:08.286363 2024-09-11 09:06:08.286369 aidref 256938660 R rec 522746fa-d11f-4ba0-91d1-c3e748628e1b +2024-09-11 09:06:08.344336 2024-09-11 09:06:08.344342 aidref 256975485 R rec 87eb7c45-6c92-4113-a49b-e1b993d9df86 +2024-09-11 09:06:08.407656 2024-09-11 09:06:08.407661 aidref 256977178 R rec 8ee25d51-d409-4c53-a6b8-a0cd6325289f +2024-09-11 09:06:08.46548 2024-09-11 09:06:08.465486 aidref 257161775 R rec f0c4c6d4-8080-4793-a735-23f1de1f9ae0 +2024-09-11 09:06:08.527522 2024-09-11 09:06:08.527528 aidref 257283994 R rec 02409224-2872-4742-8a1e-f4eb3bd11160 +2024-09-11 09:06:08.581831 2024-09-11 09:06:08.581836 aidref 257341730 R rec cd881d20-485b-4fc2-a4f2-431bd720fac4 +2024-09-11 09:06:08.636413 2024-09-11 09:06:08.636418 aidref 257342818 R rec 23b91784-aead-49db-a175-b24b149b610b +2024-09-11 09:06:08.69647 2024-09-11 09:06:08.696476 aidref 257348328 R rec c7586a17-5bec-46c9-9af2-7b7410eab99c +2024-09-11 09:06:08.752734 2024-09-11 09:06:08.752739 aidref 257382968 R rec f9262000-c641-497d-b909-d1f5eafab3dc +2024-09-11 09:06:08.807753 2024-09-11 09:06:08.807759 aidref 257433422 R rec c42e1df6-bdec-4f07-8aec-84ef6d866b42 +2024-09-11 09:06:08.862666 2024-09-11 09:06:08.862671 aidref 257473459 R rec 1b60356d-6924-49c0-9b1a-ab143b4e267a +2024-09-11 09:06:08.918437 2024-09-11 09:06:08.918443 aidref 257484167 R rec 08c062e1-ee3d-4a33-a82a-01c9f8b9416d +2024-09-11 09:06:08.972042 2024-09-11 09:06:08.972047 aidref 257484434 R rec 5df2f409-39e7-4f37-938c-cc77d03c7cbe +2024-09-11 09:06:09.026048 2024-09-11 09:06:09.026053 aidref 257494138 R rec 7d95ae7b-eb4e-4f40-9c97-b522ec9c06e8 +2024-09-11 09:06:09.079483 2024-09-11 09:06:09.079488 aidref 25752214X R rec 2d9dafb6-1f10-4667-aff6-2824b9404d24 +2024-09-11 09:06:09.162925 2024-09-11 09:06:09.162931 aidref 257572481 R rec 7bcb2608-6ff3-4e85-a7fb-c1eeaf50babd +2024-09-11 09:06:09.234936 2024-09-11 09:06:09.234941 aidref 257572732 R rec 93ecaa73-83a6-443f-883c-685cd71ef0f2 +2024-09-11 09:06:09.302039 2024-09-11 09:06:09.302044 aidref 257647007 R rec d753eab4-5cdd-48fb-8124-b75dba4657b2 +2024-09-11 09:06:09.359847 2024-09-11 09:06:09.359853 aidref 257647805 R rec 2fc3f014-ca4c-4365-b03f-85b560a99680 +2024-09-11 09:06:09.433538 2024-09-11 09:06:09.433544 aidref 25773855X R rec 59b0d2e4-8b04-48e3-a879-5628387efb1a +2024-09-11 09:06:09.486949 2024-09-11 09:06:09.486954 aidref 257862544 R rec f1ed7717-481a-4022-b3f5-c6658b5adaac +2024-09-11 09:06:09.539944 2024-09-11 09:06:09.53995 aidref 257890505 R rec 670b648f-1dab-443b-9219-233b259c2150 +2024-09-11 09:06:09.599844 2024-09-11 09:06:09.59985 aidref 257908870 R rec 9247b638-2aa6-4d45-aede-c72812a895b8 +2024-09-11 09:06:09.653199 2024-09-11 09:06:09.653205 aidref 257937730 R rec b11bb800-1f37-435f-8c5c-603307e1386e +2024-09-11 09:06:09.73306 2024-09-11 09:06:09.733066 aidref 257974350 R rec d6db5599-b3de-488e-ae38-b0a887e0ce05 +2024-09-11 09:06:09.788591 2024-09-11 09:06:09.788596 aidref 25808524X R rec 9c1fc40e-7fd9-4616-9802-e9c31d121257 +2024-09-11 09:06:09.841849 2024-09-11 09:06:09.841855 aidref 258134178 R rec a721bf34-92c6-43ef-91ec-c54c1757a82c +2024-09-11 09:06:09.901933 2024-09-11 09:06:09.901938 aidref 258183659 R rec f2ae088d-39e9-4995-bc6e-ceff68a5072a +2024-09-11 09:06:09.959254 2024-09-11 09:06:09.959261 aidref 258220724 R rec 39bb3d95-7081-478e-81cb-09bbda995280 +2024-09-11 09:06:10.021455 2024-09-11 09:06:10.02146 aidref 258241985 R rec 333af536-c541-4c56-ad58-04d6ac74a4e9 +2024-09-11 09:06:10.083252 2024-09-11 09:06:10.083257 aidref 258266457 R rec 085e9d73-bee6-43c8-b2b6-c1f297eda312 +2024-09-11 09:06:10.144602 2024-09-11 09:06:10.144607 aidref 258291524 R rec 543b1cca-bebd-4fac-8956-044b678e0f95 +2024-09-11 09:06:10.198179 2024-09-11 09:06:10.198185 aidref 258322020 R rec ccd3a23d-472b-46b3-9ff7-29a90f02b8ac +2024-09-11 09:06:10.257007 2024-09-11 09:06:10.257012 aidref 258325089 R rec 4cdd2815-b87c-4181-8409-58ee48cba693 +2024-09-11 09:06:10.315377 2024-09-11 09:06:10.315382 aidref 258363355 R rec e7c16f53-ebfb-4d26-bb66-fcceb3612173 +2024-09-11 09:06:10.371423 2024-09-11 09:06:10.371428 aidref 258385138 R rec a67dde98-8641-426e-be1d-92660d138106 +2024-09-11 09:06:10.429782 2024-09-11 09:06:10.429788 aidref 258433914 R rec 3e3ed915-8bbd-4f46-8ca1-275258ce08d4 +2024-09-11 09:06:10.519596 2024-09-11 09:06:10.519602 aidref 258437855 R rec a4b7e1fd-d7bd-454c-89a2-9137715672f9 +2024-09-11 09:06:10.578578 2024-09-11 09:06:10.578583 aidref 25844939X R rec 5676b223-ef93-45b8-ae32-180abaadafa1 +2024-09-11 09:06:10.638995 2024-09-11 09:06:10.639001 aidref 258454458 R rec b20d9ba4-f9c9-45ae-8fcd-a5ad0ff4b926 +2024-09-11 09:06:10.693606 2024-09-11 09:06:10.693611 aidref 258520191 R rec 39483095-0a83-4bf5-9adf-35754d6bcfea +2024-09-11 09:06:10.747982 2024-09-11 09:06:10.747988 aidref 258528079 R rec b7832e60-6dd9-4bff-8809-833f39343658 +2024-09-11 09:06:10.806124 2024-09-11 09:06:10.806129 aidref 258546417 R rec 2a57d05a-9e7b-4833-829a-bcccfe33a026 +2024-09-11 09:06:10.856341 2024-09-11 09:06:10.856347 aidref 258552778 R rec 28a511c3-e7d2-43b6-ac25-990744ee6e7f +2024-09-11 09:06:10.908182 2024-09-11 09:06:10.908187 aidref 258575719 R rec 1b8a319e-57e9-45a0-945c-1fd9eca3125c +2024-09-11 09:06:10.961437 2024-09-11 09:06:10.961442 aidref 258640731 R rec 14c2c3ca-f974-4fa6-8f80-d7e41cc57a3e +2024-09-11 09:06:11.019063 2024-09-11 09:06:11.019068 aidref 258645172 R rec 28b78831-cf31-47c3-ba28-40facc4aabd3 +2024-09-11 09:06:11.071338 2024-09-11 09:06:11.071342 aidref 258645563 R rec fe38fa08-a95e-41a9-809c-3359132e07a0 +2024-09-11 09:06:11.133635 2024-09-11 09:06:11.133641 aidref 259100056 R rec d847ba3e-e183-42d4-985e-6bac3d3323fc +2024-09-11 09:06:11.187451 2024-09-11 09:06:11.187457 aidref 259230197 R rec 4fa1a6e6-eb65-41e6-8e0e-8771c2519ad3 +2024-09-11 09:06:11.244253 2024-09-11 09:06:11.244258 aidref 259270482 R rec 2aa29f01-c783-466c-9cfd-4541983a8d92 +2024-09-11 09:06:11.295678 2024-09-11 09:06:11.295684 aidref 25929070X R rec 21aa69c7-e61a-4763-a69e-740d31ab79a2 +2024-09-11 09:06:11.359579 2024-09-11 09:06:11.359583 aidref 259327735 R rec 00360716-934e-4dac-a654-9125a5ee8454 +2024-09-11 09:06:11.429334 2024-09-11 09:06:11.429339 aidref 259329657 R rec 933d8e42-c478-48ae-a0c7-66e2f88b005f +2024-09-11 09:06:11.523005 2024-09-11 09:06:11.52301 aidref 259367516 R rec 1ab014a6-6fc4-4135-b21c-cbaa555f2ef9 +2024-09-11 09:06:11.58863 2024-09-11 09:06:11.588636 aidref 25943812X R rec bb5da248-c2ad-406a-87ce-f603e84f5d46 +2024-09-11 09:06:11.642982 2024-09-11 09:06:11.642988 aidref 259789798 R rec 696dc5f5-3a68-43a7-bbd6-84395cd80d97 +2024-09-11 09:06:11.694647 2024-09-11 09:06:11.694652 aidref 25982142X R rec f3af8bf4-e51b-4f18-ad2c-45699e082f6a +2024-09-11 09:06:11.746731 2024-09-11 09:06:11.746736 aidref 259847127 R rec c0b5de47-5f5b-4a19-ba11-6a00db3622e4 +2024-09-11 09:06:11.802621 2024-09-11 09:06:11.802625 aidref 259860778 R rec 11448c6b-d1b6-4cc7-83c5-d949a0f086f3 +2024-09-11 09:06:11.85313 2024-09-11 09:06:11.853135 aidref 259863424 R rec 9eb0043f-d20a-434f-8266-0ececf0ed277 +2024-09-11 09:06:11.906621 2024-09-11 09:06:11.906628 aidref 259907448 R rec 1102ba8c-fff0-4dfb-82fd-1e20deee6499 +2024-09-11 09:06:11.9619 2024-09-11 09:06:11.961905 aidref 259908142 R rec c4e25831-6624-45a3-a1a6-4b190a7d0cd2 +2024-09-11 09:06:12.017166 2024-09-11 09:06:12.017172 aidref 259925993 R rec 9dfe1d0b-6608-4c85-83a4-96cb3ce0aa0e +2024-09-11 09:06:12.073178 2024-09-11 09:06:12.073183 aidref 259928844 R rec 848db1ad-90a7-4d8b-b0ef-794d17e39074 +2024-09-11 09:06:12.125232 2024-09-11 09:06:12.125237 aidref 259991724 R rec 7818cdc0-f603-4d30-950c-468655b3d8c8 +2024-09-11 09:06:12.179318 2024-09-11 09:06:12.179324 aidref 260074969 R rec 8ab62273-c993-413d-8e7f-22810e7a44e8 +2024-09-11 09:06:12.234848 2024-09-11 09:06:12.234853 aidref 26009773X R rec 9e195ffb-5a47-4cb0-a3a3-514172e56692 +2024-09-11 09:06:12.290812 2024-09-11 09:06:12.290817 aidref 260176893 R rec b315b517-6b60-4ef5-8ef2-45b92c12d46c +2024-09-11 09:06:12.354447 2024-09-11 09:06:12.354454 aidref 260238570 R rec 9b11f0f0-4880-4b52-9fbd-acf6ce699a77 +2024-09-11 09:06:12.413187 2024-09-11 09:06:12.413192 aidref 260322393 R rec 5aa52389-1a45-493a-9c2d-74fc304bac31 +2024-09-11 09:06:12.469336 2024-09-11 09:06:12.469341 aidref 260328065 R rec b9ebae6f-91f4-461b-ae7d-1fc95c745d57 +2024-09-11 09:06:12.530458 2024-09-11 09:06:12.530463 aidref 26040862X R rec 21adb638-3304-457f-9eda-ca5afecf7e93 +2024-09-11 09:06:12.601672 2024-09-11 09:06:12.601676 aidref 260480584 R rec f5977d45-42a7-487e-bd92-e57a1900368d +2024-09-11 09:06:12.676153 2024-09-11 09:06:12.676158 aidref 260499021 R rec 6d2f6ca9-1bbf-4387-b5c2-656533a62bc3 +2024-09-11 09:06:12.731097 2024-09-11 09:06:12.731102 aidref 260505269 R rec aeec37cf-aef7-4332-9e8c-6beebcb4562f +2024-09-11 09:06:12.78118 2024-09-11 09:06:12.781185 aidref 260578045 R rec 2456a72f-5243-4200-a1de-9ee11e8a66ed +2024-09-11 09:06:12.834242 2024-09-11 09:06:12.834248 aidref 260582808 R rec 391be8e0-395e-4ff9-bb31-4126352082a7 +2024-09-11 09:06:12.8858 2024-09-11 09:06:12.885806 aidref 260592404 R rec 23560bc8-8aed-40da-b258-fd755615cc39 +2024-09-11 09:06:12.941365 2024-09-11 09:06:12.941371 aidref 260735353 R rec f6d07769-016c-46a2-9cb6-74af76b6b8e8 +2024-09-11 09:06:13.000136 2024-09-11 09:06:13.000141 aidref 260775967 R rec 50eb9696-31e2-4719-b5a3-74b0195e4037 +2024-09-11 09:06:13.05303 2024-09-11 09:06:13.053035 aidref 260782955 R rec 6ad56738-4fed-423b-9cd7-d5f376ecaa48 +2024-09-11 09:06:13.11218 2024-09-11 09:06:13.112186 aidref 260807710 R rec c65640ed-ee6d-4ac9-8f6a-23161579f923 +2024-09-11 09:06:13.168151 2024-09-11 09:06:13.168157 aidref 260812374 R rec ebaeb5be-ea3b-46c5-8f60-ad4c951d2b48 +2024-09-11 09:06:13.226665 2024-09-11 09:06:13.226671 aidref 260844578 R rec 8a369ed0-ff1b-4921-86c6-f0c79c0172cf +2024-09-11 09:06:13.286406 2024-09-11 09:06:13.286413 aidref 260864811 R rec 2d9d790f-3100-475e-bc3f-95457b39c3ca +2024-09-11 09:06:13.341095 2024-09-11 09:06:13.341101 aidref 260877484 R rec 0090b9a3-665d-4dac-b695-9409a52f9b98 +2024-09-11 09:06:13.401226 2024-09-11 09:06:13.401231 aidref 26091164X R rec 39fe36d2-4882-498a-9436-295192a6b762 +2024-09-11 09:06:13.455634 2024-09-11 09:06:13.455639 aidref 260925810 R rec 05cca4db-9c47-4463-a31d-9b1247d40e01 +2024-09-11 09:06:13.50985 2024-09-11 09:06:13.509855 aidref 260929905 R rec 8fe179f4-4f3d-4851-933d-8509f31db8c6 +2024-09-11 09:06:13.563248 2024-09-11 09:06:13.563255 aidref 260939587 R rec d2a6b00d-0cc6-4ad3-ae0b-73d42e426cba +2024-09-11 09:06:13.617206 2024-09-11 09:06:13.617211 aidref 260943193 R rec f2dda736-cc7a-4825-98a8-428ebc18a735 +2024-09-11 09:06:13.712597 2024-09-11 09:06:13.712602 aidref 260977756 R rec 668e36ed-470e-4546-b566-3e408b58f931 +2024-09-11 09:06:13.765877 2024-09-11 09:06:13.765883 aidref 260987204 R rec e9263b10-7e36-453d-b01f-88473ef10a50 +2024-09-11 09:06:13.819853 2024-09-11 09:06:13.819858 aidref 260995223 R rec c9b80436-223e-48ed-9100-be3e1c02a2b6 +2024-09-11 09:06:13.870776 2024-09-11 09:06:13.870781 aidref 261067079 R rec 3c171f67-8be0-452e-ad8d-12fc3ac05498 +2024-09-11 09:06:13.922324 2024-09-11 09:06:13.922329 aidref 261116274 R rec ddcc1e64-eea4-49a1-a133-032c87bf919a +2024-09-11 09:06:13.973648 2024-09-11 09:06:13.973653 aidref 261144588 R rec ed116d22-8679-4980-9b20-3b7b7e08d58f +2024-09-11 09:06:14.025812 2024-09-11 09:06:14.025818 aidref 261155210 R rec a95b58e9-e7b2-45b1-b954-faa5429e26d7 +2024-09-11 09:06:14.083407 2024-09-11 09:06:14.083412 aidref 26124096X R rec 55a2b4d0-ae18-46eb-895b-9f71be29f7a4 +2024-09-11 09:06:14.134663 2024-09-11 09:06:14.134669 aidref 261260987 R rec b8e3ae0b-b833-4ffb-860b-96c3d352f9bd +2024-09-11 09:06:14.188343 2024-09-11 09:06:14.188349 aidref 261270206 R rec 8602a06f-748e-4b41-837d-fc6266439824 +2024-09-11 09:06:14.245825 2024-09-11 09:06:14.24583 aidref 261515632 R rec 8faa54fd-add5-4b88-9924-b55b5764addf +2024-09-11 09:06:14.300267 2024-09-11 09:06:14.300273 aidref 261606441 R rec 92bdbded-9050-4b2f-bc28-359f9412a94a +2024-09-11 09:06:14.361613 2024-09-11 09:06:14.361619 aidref 261732722 R rec 0ea5a130-6411-4c22-81e5-577aa4b7aff1 +2024-09-11 09:06:14.42236 2024-09-11 09:06:14.422364 aidref 261805762 R rec 8752eae5-3956-4391-95f2-b26c5fda06b2 +2024-09-11 09:06:14.476244 2024-09-11 09:06:14.47625 aidref 261809911 R rec 52bfb587-025f-4a7a-918d-a29152479f8a +2024-09-11 09:06:14.536161 2024-09-11 09:06:14.536166 aidref 261814176 R rec 3f731b4e-41bc-476b-8940-1348d32c8ebe +2024-09-11 09:06:14.59273 2024-09-11 09:06:14.592736 aidref 261876007 R rec faa86afe-b92b-444e-9941-4411bbe8d063 +2024-09-11 09:06:14.646771 2024-09-11 09:06:14.646777 aidref 261892169 R rec 4fa0012a-a462-41e0-ba0d-f9b75fdd1c5b +2024-09-11 09:06:14.702586 2024-09-11 09:06:14.702591 aidref 261974580 R rec 4c9e0cdb-c562-4679-a511-4f817b1e27a7 +2024-09-11 09:06:14.755784 2024-09-11 09:06:14.755789 aidref 26212369X R rec 205cf7dd-89be-468a-ad78-ec16de69dc8f +2024-09-11 09:06:14.808404 2024-09-11 09:06:14.80841 aidref 26221007X R rec 251b1554-d486-4206-b332-00fd32a6aac2 +2024-09-11 09:06:14.859215 2024-09-11 09:06:14.85922 aidref 262212129 R rec caf1720d-380d-49a7-a48a-080f7be22a0f +2024-09-11 09:06:14.912484 2024-09-11 09:06:14.912489 aidref 262213656 R rec 8b88a556-5ccd-4ebd-a232-fea2b7f5056b +2024-09-11 09:06:14.965683 2024-09-11 09:06:14.965688 aidref 262246619 R rec 21db2c7e-0a02-4bcf-96cf-911fd25ac8a4 +2024-09-11 09:06:15.034892 2024-09-11 09:06:15.034897 aidref 262262940 R rec b02c5221-d1ed-468d-a204-fd449c198d28 +2024-09-11 09:06:15.112322 2024-09-11 09:06:15.112327 aidref 262286394 R rec 5bf98200-58d7-4aa8-8ea6-1b98cfecc81a +2024-09-11 09:06:15.169465 2024-09-11 09:06:15.16947 aidref 26232217X R rec dd0e0bdc-3ed2-4372-b148-c102b9bf17bc +2024-09-11 09:06:15.224275 2024-09-11 09:06:15.22428 aidref 262328836 R rec b62f0891-c31f-45df-8349-c4b5fbb6fdb2 +2024-09-11 09:06:15.27857 2024-09-11 09:06:15.278575 aidref 262350459 R rec e6921b75-500a-4c89-ba2a-5a5feb020800 +2024-09-11 09:06:15.33421 2024-09-11 09:06:15.334215 aidref 262354659 R rec f4da7dee-c4b8-41d6-9622-a6b83ddb01fe +2024-09-11 09:06:15.388209 2024-09-11 09:06:15.388215 aidref 262398516 R rec ae45e2b1-f778-4769-b30d-76feaed3113b +2024-09-11 09:06:15.450973 2024-09-11 09:06:15.450978 aidref 262403242 R rec 48c04cfa-aab3-4cc1-befc-70499aea0dea +2024-09-11 09:06:15.518345 2024-09-11 09:06:15.518354 aidref 262436574 R rec d144a762-6a51-4403-84d0-b85b82ffd57b +2024-09-11 09:06:15.612365 2024-09-11 09:06:15.61237 aidref 262452979 R rec a8131209-8f62-4b40-8f33-ade0abd8b218 +2024-09-11 09:06:15.670422 2024-09-11 09:06:15.670427 aidref 262466724 R rec a79a9f39-938f-45ad-9f1f-e9fcc522d580 +2024-09-11 09:06:15.729275 2024-09-11 09:06:15.72928 aidref 262469561 R rec 19d2da8f-5466-4215-ace5-2975b92d8ff1 +2024-09-11 09:06:15.785258 2024-09-11 09:06:15.785263 aidref 262471116 R rec 2835152a-35ef-419c-b4ee-3cf822087b33 +2024-09-11 09:06:15.837262 2024-09-11 09:06:15.837266 aidref 262486636 R rec 4726ab16-fc11-4ecd-9879-1e554695b634 +2024-09-11 09:06:15.887767 2024-09-11 09:06:15.88777 aidref 26249714X R rec 7ef0e310-ca04-4f79-8107-5f8fc2c3485f +2024-09-11 09:06:15.940545 2024-09-11 09:06:15.940549 aidref 262504391 R rec 59da45b6-0f43-4204-a3c4-557c62a8309f +2024-09-11 09:06:15.99304 2024-09-11 09:06:15.993046 aidref 262615223 R rec 58a8b787-764d-4909-b226-02cb0b4e134a +2024-09-11 09:06:16.049518 2024-09-11 09:06:16.049523 aidref 262645882 R rec 1b783433-ebae-4281-acd1-5a2449291e69 +2024-09-11 09:06:16.1134 2024-09-11 09:06:16.113406 aidref 26282180X R rec d589b311-b6a5-43d0-9496-734743336fca +2024-09-11 09:06:16.171715 2024-09-11 09:06:16.17172 aidref 26285242X R rec 65c03fc9-cef4-4c2b-864f-a1425d63fbb6 +2024-09-11 09:06:16.229771 2024-09-11 09:06:16.229777 aidref 262888467 R rec 4085ae87-f43b-4b57-8940-aaed6eef6f47 +2024-09-11 09:06:16.283093 2024-09-11 09:06:16.283098 aidref 263082091 R rec d3074eba-3ee0-420c-aefe-a8411932afe6 +2024-09-11 09:06:16.34269 2024-09-11 09:06:16.342695 aidref 263195449 R rec 97c7ce49-35ce-45f1-990e-afba2627c5ef +2024-09-11 09:06:16.397595 2024-09-11 09:06:16.397601 aidref 263217442 R rec da507f45-93a5-41e0-932c-c20d4b27bfa0 +2024-09-11 09:06:16.449346 2024-09-11 09:06:16.449351 aidref 263267466 R rec f2d2d174-3ced-4d73-9816-9e6bdfbbdd23 +2024-09-11 09:06:16.512376 2024-09-11 09:06:16.512381 aidref 263445194 R rec 4ba650cc-fde9-4c92-aa9f-ea215ee50ea0 +2024-09-11 09:06:16.569804 2024-09-11 09:06:16.569809 aidref 26347318X R rec e4300884-d2c2-4006-a9ec-2772e9fdf6ca +2024-09-11 09:06:16.628377 2024-09-11 09:06:16.628383 aidref 263491455 R rec 4977cd57-81fa-4ed8-8a31-98fdd2ae58e4 +2024-09-11 09:06:16.688693 2024-09-11 09:06:16.688698 aidref 263502627 R rec 5f4b6761-47ce-4f9d-967d-b4c58293dd8c +2024-09-11 09:06:16.753105 2024-09-11 09:06:16.75311 aidref 263581780 R rec aa3797be-9e6d-4e5c-95ae-24f30e706c7e +2024-09-11 09:06:16.80586 2024-09-11 09:06:16.805865 aidref 263587339 R rec 930f1453-ea06-4431-ab6a-f673598d6b88 +2024-09-11 09:06:16.857605 2024-09-11 09:06:16.85761 aidref 263603652 R rec 53bcfa1c-5545-4844-8f4d-082cc6637d1d +2024-09-11 09:06:16.908446 2024-09-11 09:06:16.908452 aidref 263626687 R rec 383b61f9-05df-44bf-8fe2-97027ac0fe9a +2024-09-11 09:06:16.960592 2024-09-11 09:06:16.960597 aidref 263671372 R rec 416a2e23-a95e-409c-9efa-34d57b917c74 +2024-09-11 09:06:17.012291 2024-09-11 09:06:17.012297 aidref 263671887 R rec 822f7243-beb8-45f9-a433-ad2cd69429aa +2024-09-11 09:06:17.067158 2024-09-11 09:06:17.067164 aidref 263682471 R rec a9f99b06-77ff-4aac-a1de-7d07a2766f38 +2024-09-11 09:06:17.121968 2024-09-11 09:06:17.121973 aidref 263722198 R rec a00799ed-57ff-4783-8242-bb75560b12e2 +2024-09-11 09:06:17.174188 2024-09-11 09:06:17.174193 aidref 263908038 R rec bf6ac585-26e3-4447-ac6f-911da2d91e36 +2024-09-11 09:06:17.230268 2024-09-11 09:06:17.230273 aidref 26428058X R rec 024f8134-d7d8-4a82-aed4-bdc0bc25913b +2024-09-11 09:06:17.319424 2024-09-11 09:06:17.31943 aidref 264703227 R rec 7b8678d9-c45f-498c-951d-926c18c332ff +2024-09-11 09:06:17.381972 2024-09-11 09:06:17.381977 aidref 264982959 R rec 6fd8e36f-eb3c-4bbb-a4ef-b5183542ee91 +2024-09-11 09:06:17.448667 2024-09-11 09:06:17.448671 aidref 265219493 R rec a7f2cb50-48b4-430b-9962-d3338712c8d5 +2024-09-11 09:06:17.508246 2024-09-11 09:06:17.508251 aidref 26525969X R rec 33c5bf9d-04e3-408f-93b6-020b31650796 +2024-09-11 09:06:17.56788 2024-09-11 09:06:17.567886 aidref 26528774X R rec 2e33084c-7302-4c8a-9755-5094ba55ffa5 +2024-09-11 09:06:17.623733 2024-09-11 09:06:17.623738 aidref 265836905 R rec 9c3c0f94-fbca-47d2-8f3c-ac9cca2f8668 +2024-09-11 09:06:17.686726 2024-09-11 09:06:17.686732 aidref 267373414 R rec 63c826cb-9d70-4bf0-9f2b-eb8857fd1e68 diff --git a/data/cidref.json b/data/cidref.json index 86c99cec..a50d5f1f 100644 --- a/data/cidref.json +++ b/data/cidref.json @@ -1,226 +1,280 @@ [ { - "md5": "4b7f3d32ff91eee6bcddc5b796e5b88f", - "pid": "027224430", + "md5": "25fb882fe58f5329dc23ff22a90b619f", + "pid": "027222144", "note": [ { "label": [ - "Grand Larousse universel", - "Les langues du monde / M. Sala, I. Vintila-Radulescu, 1984", - "Les langues du monde / A. Meillet, M. Cohen, 1981" + "S'emploie \u00e9galement en subdivision" ], - "noteType": "dataSource" + "noteType": "general" } ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Langues ib\u00e9ro-romanes" - }, - { - "authorized_access_point": "Langues romanes" + "authorized_access_point": "Catalogues commerciaux" } ], "related": [ { - "authorized_access_point": "Ab\u00e9c\u00e9daires espagnols" - }, - { - "authorized_access_point": "Abr\u00e9viations espagnoles" - }, - { - "authorized_access_point": "Cal\u00f3 (dialecte)" - }, - { - "authorized_access_point": "Cat\u00e9chismes espagnols" - }, - { - "authorized_access_point": "Cocoliche (langue)" - }, - { - "authorized_access_point": "Dictionnaires espagnols" - }, - { - "authorized_access_point": "Emprunts espagnols" - }, - { - "authorized_access_point": "Encyclop\u00e9dies et dictionnaires espagnols" - }, - { - "authorized_access_point": "Espagnol (langue) - Examens" - }, - { - "authorized_access_point": "Espagnol (langue) - Vocabulaire" - }, - { - "authorized_access_point": "\u00c9tude et enseignement - Locuteurs de l'espagnol" - }, - { - "authorized_access_point": "Glossaires et lexiques espagnols" - }, - { - "authorized_access_point": "Grammaire compar\u00e9e - Espagnol (langue)" - }, + "authorized_access_point": "Librairie" + } + ], + "bnf_type": "genre/forme Rameau", + "closeMatch": [ { - "authorized_access_point": "Hispanismes (idiotismes)" + "source": "RVMLaval", + "authorized_access_point": "Catalogues de librairies" }, { - "authorized_access_point": "Imprim\u00e9s espagnols" - }, + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85020902", + "source": "LCSH" + } + ], + "authorized_access_point": "Booksellers' catalogs" + } + ], + "identifiedBy": [ { - "authorized_access_point": "Influence sur l'espagnol" + "type": "uri", + "value": "http://www.idref.fr/027222144", + "source": "IDREF" }, { - "authorized_access_point": "Jud\u00e9o-espagnol (langue)" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119311240", + "source": "BNF" }, { - "authorized_access_point": "Langues cr\u00e9oles espagnoles" - }, + "type": "bf:Nbn", + "value": "FRBNF11931124", + "source": "BNF" + } + ], + "classification": [ { - "authorized_access_point": "Manuscrits espagnols" + "name": "Sciences de l'information", + "type": "bf:ClassificationDdc", + "classificationPortion": "020" }, { - "authorized_access_point": "Mots apparent\u00e9s espagnols" - }, + "name": "Economie", + "type": "bf:ClassificationDdc", + "classificationPortion": "330" + } + ], + "variant_access_point": [ + "Catalogues de librairies" + ], + "authorized_access_point": "Catalogues de libraires" + }, + { + "md5": "06299dff5ef1568b84da6566f7bab6c8", + "pid": "027225798", + "note": [ { - "authorized_access_point": "N tild\u00e9 (la lettre espagnole)" - }, + "label": [ + "Les droits des femmes / F. Martinetti, 2007", + "L'\u00c9tat et les droits des femmes / S. Dauphin, 2010", + "F\u00e9d\u00e9ration internationale des droits humains : droits des femmes - https://www.fidh.org (2022-01-25)" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Noms de personnes espagnols" - }, + "authorized_access_point": "Droits de l'homme" + } + ], + "related": [ { - "authorized_access_point": "Noms propres espagnols" + "authorized_access_point": "Discrimination sexuelle" }, { - "authorized_access_point": "P\u00e9riodiques espagnols" + "authorized_access_point": "Femmes - Statut juridique" }, { - "authorized_access_point": "Philologie espagnole" + "authorized_access_point": "Journ\u00e9e internationale de la femme" }, { - "authorized_access_point": "Phon\u00e9tique compar\u00e9e - Espagnol (langue)" - }, + "authorized_access_point": "Prix Simone de Beauvoir pour la libert\u00e9 des femmes" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ { - "authorized_access_point": "Professeurs d'espagnol" + "authorized_access_point": "Antif\u00e9minisme" }, { - "authorized_access_point": "Traduction en espagnol" + "authorized_access_point": "\u00c9galit\u00e9 des sexes" }, { - "authorized_access_point": "Traductions espagnoles" + "authorized_access_point": "F\u00e9minisme" }, { - "authorized_access_point": "Versions espagnoles" + "authorized_access_point": "Femmes - Droit de vote" }, { - "authorized_access_point": "Vocabulaires et manuels de conversation espagnols" - }, + "authorized_access_point": "Syndicats - Attitude envers la condition f\u00e9minine" + } + ], + "closeMatch": [ { - "authorized_access_point": "Cantiques espagnols" + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85147765", + "source": "LCSH" + } + ], + "authorized_access_point": "Women's rights" }, { - "authorized_access_point": "Chansons espagnoles" - }, + "source": "RVMLaval", + "authorized_access_point": "Femmes -- Droits" + } + ], + "identifiedBy": [ { - "authorized_access_point": "Citations espagnoles" + "type": "uri", + "value": "http://www.idref.fr/027225798", + "source": "IDREF" }, { - "authorized_access_point": "Correspondance espagnole" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119313952", + "source": "BNF" }, { - "authorized_access_point": "Litt\u00e9rature hispanophone" - }, + "type": "bf:Nbn", + "value": "FRBNF11931395", + "source": "BNF" + } + ], + "classification": [ { - "authorized_access_point": "Manuels pour locuteurs de l'espagnol" - }, + "name": "Droit", + "type": "bf:ClassificationDdc", + "classificationPortion": "340" + } + ], + "variant_access_point": [ + "Droit des femmes", + "Droits de la femme", + "\u00c9mancipation de la femme", + "\u00c9mancipation des femmes", + "Femmes - Droits", + "Femmes - Droits civils", + "Femmes - Droits de la femme", + "Femmes - \u00c9mancipation", + "Femmes - Lib\u00e9ration", + "Lib\u00e9ration de la femme", + "Lib\u00e9ration des femmes" + ], + "authorized_access_point": "Droits des femmes" + }, + { + "md5": "c757e9d6f89a61b2583e52ae6ef681ea", + "pid": "027233960", + "note": [ { - "authorized_access_point": "M\u00e9lodies espagnoles" - }, + "label": [ + "L'amour qui ose dire son nom : art et homosexualit\u00e9 / D. Fernandez, 2001", + "The sexual perspective : homosexuality and art in the last 100 years in the West / E. Cooper, 1994" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "related": [ { - "authorized_access_point": "Paraphrases espagnoles" + "authorized_access_point": "Art" }, { - "authorized_access_point": "Synopses espagnoles" + "authorized_access_point": "Artistes homosexuels" }, { - "authorized_access_point": "Virelangues espagnols" + "authorized_access_point": "Homo\u00e9rotisme" }, { - "authorized_access_point": "Pays de langue espagnole" + "authorized_access_point": "Homosexualit\u00e9" } ], "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Espagnol (langue) - Argot" + "authorized_access_point": "Homosexualit\u00e9 et architecture" }, { - "authorized_access_point": "Espagnol (langue) - Dialectes" - }, - { - "authorized_access_point": "Espagnol (langue) - Avant 1500" - }, - { - "authorized_access_point": "Espagnol (langue) - 1500-1700 (P\u00e9riode classique)" - }, - { - "authorized_access_point": "Que\u00edsmo" + "authorized_access_point": "Homosexualit\u00e9 et mode" } ], "closeMatch": [ { "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85126261", - "source": "LCSH" - }, - "authorized_access_point": "Spanish language" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85061787", + "source": "LCSH" + } + ], + "authorized_access_point": "Homosexuality and art" }, { "source": "RVMLaval", - "authorized_access_point": "Espagnol (Langue)" + "authorized_access_point": "Homosexualit\u00e9 et art" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027224430", + "value": "http://www.idref.fr/027233960", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119312813", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11932036z", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11932036", "source": "BNF" } ], "classification": [ { - "name": "Langues et linguistique", + "name": "Sciences sociales", "type": "bf:ClassificationDdc", - "classificationPortion": "400" + "classificationPortion": "300" + }, + { + "name": "Arts", + "type": "bf:ClassificationDdc", + "classificationPortion": "700" } ], "variant_access_point": [ - "Castellano (langue)", - "Castillan (langue)" + "Art et homosexualit\u00e9" ], - "authorized_access_point": "Espagnol (langue)" + "authorized_access_point": "Homosexualit\u00e9 et art" }, { - "md5": "ed787193323d3cfadbd708b5809d29ce", - "pid": "027227219", + "md5": "f689eda9d7d5d850d0433cc940471845", + "pid": "027236897", "note": [ { "label": [ - "Grand Larousse universel", - "Grand Robert de la langue fran\u00e7aise, 2001" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette, obligatoirement suivie d'une subdivision g\u00e9ographique ou de la subdivision : \u00c0 l'\u00e9tranger, directement ou apr\u00e8s une subdivision de sujet, on trouve les documents sur les Fran\u00e7ais hors de France. Les documents sur les Fran\u00e7ais en France se trouvent sous des vedettes-mati\u00e8re telles que : France -- Moeurs et coutumes ; etc" + "S'emploie \u00e9galement en subdivision", + "Les subdivisions chronologiques sp\u00e9cifiques employ\u00e9es sous la vedette Litt\u00e9rature espagnole doivent \u00eatre utilis\u00e9es pour tous les genres litt\u00e9raires espagnols" ], "noteType": "general" } @@ -228,248 +282,321 @@ "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Ethnologie - France" + "authorized_access_point": "Civilisation - Espagne" + }, + { + "authorized_access_point": "Litt\u00e9rature hispanophone" + }, + { + "authorized_access_point": "Litt\u00e9rature ib\u00e9rique" } ], "related": [ { - "authorized_access_point": "Alg\u00e9riens d'origine fran\u00e7aise" + "authorized_access_point": "\u00c9crivains espagnols" + }, + { + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Allemande et espagnole" + }, + { + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Am\u00e9ricaine et espagnole" + }, + { + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Anglaise et espagnole" + }, + { + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Arabe et espagnole" + }, + { + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Argentine et espagnole" + }, + { + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Autrichienne et espagnole" + }, + { + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Br\u00e9silienne et espagnole" + }, + { + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Catalane et espagnole" + }, + { + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Chilienne et espagnole" + }, + { + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Chinoise et espagnole" + }, + { + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Cubaine et espagnole" + }, + { + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Espagnole et europ\u00e9enne" + }, + { + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Espagnole et fran\u00e7aise" + }, + { + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Espagnole et grecque" + }, + { + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Espagnole et irlandaise" + }, + { + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Espagnole et italienne" + }, + { + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Espagnole et mexicaine" + }, + { + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Espagnole et occitane" + }, + { + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Espagnole et polonaise" }, { - "authorized_access_point": "Allemands d'origine fran\u00e7aise" + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Espagnole et portugaise" }, { - "authorized_access_point": "Am\u00e9ricains d'origine fran\u00e7aise" + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Espagnole et russe" }, { - "authorized_access_point": "Britanniques d'origine fran\u00e7aise" + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Espagnole et su\u00e9doise" }, { - "authorized_access_point": "Canadiens francophones" + "authorized_access_point": "Mouvements litt\u00e9raires - Espagne" }, { - "authorized_access_point": "Roumains d'origine fran\u00e7aise" + "authorized_access_point": "Prix litt\u00e9raires - Espagne" }, { - "authorized_access_point": "France" + "authorized_access_point": "Citations espagnoles" } ], - "bnf_type": "sujet Rameau", + "bnf_type": "genre/forme Rameau", "narrower": [ { - "authorized_access_point": "Agriculteurs fran\u00e7ais" + "authorized_access_point": "Autobiographie espagnole" + }, + { + "authorized_access_point": "Biographie espagnole" }, { - "authorized_access_point": "Agronomes fran\u00e7ais" + "authorized_access_point": "Chroniques espagnoles" }, { - "authorized_access_point": "Alpinistes fran\u00e7ais" + "authorized_access_point": "Contes litt\u00e9raires espagnols" }, { - "authorized_access_point": "Anarchistes fran\u00e7ais" + "authorized_access_point": "Dialogues (genre litt\u00e9raire) espagnols" }, { - "authorized_access_point": "Animateurs socioculturels fran\u00e7ais" + "authorized_access_point": "Discours espagnols" }, { - "authorized_access_point": "Arch\u00e9ologues fran\u00e7ais" + "authorized_access_point": "\u00c9crits anonymes espagnols" }, { - "authorized_access_point": "Artistes fran\u00e7ais" + "authorized_access_point": "\u00c9crits d'immigr\u00e9s espagnols" }, { - "authorized_access_point": "Biblioth\u00e9caires fran\u00e7ais" + "authorized_access_point": "\u00c9crits de jeunes espagnols" }, { - "authorized_access_point": "Catholiques fran\u00e7ais" + "authorized_access_point": "\u00c9crits de lesbiennes espagnoles" }, { - "authorized_access_point": "Chirurgiens fran\u00e7ais" + "authorized_access_point": "\u00c9crits de militaires espagnols" }, { - "authorized_access_point": "Commer\u00e7ants fran\u00e7ais" + "authorized_access_point": "\u00c9crits de prisonniers espagnols" }, { - "authorized_access_point": "Communistes fran\u00e7ais" + "authorized_access_point": "Essai (genre litt\u00e9raire) espagnol" }, { - "authorized_access_point": "D\u00e9port\u00e9s fran\u00e7ais" + "authorized_access_point": "Fantasy espagnole" }, { - "authorized_access_point": "Diplomates fran\u00e7ais" + "authorized_access_point": "Journaux intimes espagnols" }, { - "authorized_access_point": "\u00c9crivains fran\u00e7ais" + "authorized_access_point": "Litt\u00e9rature clandestine espagnole" }, { - "authorized_access_point": "\u00c9diteurs fran\u00e7ais" + "authorized_access_point": "Litt\u00e9rature d'\u00e9pouvante espagnole" }, { - "authorized_access_point": "\u00c9gyptologues fran\u00e7ais" + "authorized_access_point": "Litt\u00e9rature d'exil espagnole" }, { - "authorized_access_point": "Employ\u00e9s de maison fran\u00e7ais" + "authorized_access_point": "Litt\u00e9rature de colportage espagnole" }, { - "authorized_access_point": "Enseignants fran\u00e7ais" + "authorized_access_point": "Litt\u00e9rature dialectale espagnole" }, { - "authorized_access_point": "Ethnologues fran\u00e7ais" + "authorized_access_point": "Litt\u00e9rature didactique espagnole" }, { - "authorized_access_point": "\u00c9tudiants fran\u00e7ais" + "authorized_access_point": "Litt\u00e9rature \u00e9pistolaire espagnole" }, { - "authorized_access_point": "Explorateurs fran\u00e7ais" + "authorized_access_point": "Litt\u00e9rature \u00e9rotique espagnole" }, { - "authorized_access_point": "Fran\u00e7aises" + "authorized_access_point": "Litt\u00e9rature espagnole - Auteurs juifs" }, { - "authorized_access_point": "G\u00e9ographes fran\u00e7ais" + "authorized_access_point": "Litt\u00e9rature espagnole - Avant 1500" }, { - "authorized_access_point": "Historiens fran\u00e7ais" + "authorized_access_point": "Litt\u00e9rature espagnole - 1500-1700 (P\u00e9riode classique)" }, { - "authorized_access_point": "Hommes d'affaires fran\u00e7ais" + "authorized_access_point": "Litt\u00e9rature espagnole - 18e si\u00e8cle" }, { - "authorized_access_point": "Humanistes fran\u00e7ais" + "authorized_access_point": "Litt\u00e9rature espagnole - 19e si\u00e8cle" }, { - "authorized_access_point": "Ing\u00e9nieurs fran\u00e7ais" + "authorized_access_point": "Litt\u00e9rature espagnole - 1870-1914" }, { - "authorized_access_point": "Ing\u00e9nieurs militaires fran\u00e7ais" + "authorized_access_point": "Litt\u00e9rature espagnole - 20e si\u00e8cle" }, { - "authorized_access_point": "Intellectuels fran\u00e7ais" + "authorized_access_point": "Litt\u00e9rature espagnole - 1975-...." }, { - "authorized_access_point": "Joueurs de basket-ball fran\u00e7ais" + "authorized_access_point": "Litt\u00e9rature espagnole pour la jeunesse" }, { - "authorized_access_point": "Joueurs de football fran\u00e7ais" + "authorized_access_point": "Litt\u00e9rature exp\u00e9rimentale espagnole" }, { - "authorized_access_point": "Journalistes fran\u00e7ais" + "authorized_access_point": "Litt\u00e9rature fantastique espagnole" }, { - "authorized_access_point": "Juifs fran\u00e7ais" + "authorized_access_point": "Litt\u00e9rature humoristique espagnole" }, { - "authorized_access_point": "Marins fran\u00e7ais" + "authorized_access_point": "Litt\u00e9rature libertaire espagnole" }, { - "authorized_access_point": "M\u00e9decins fran\u00e7ais" + "authorized_access_point": "Litt\u00e9rature pastorale espagnole" }, { - "authorized_access_point": "Militaires fran\u00e7ais" + "authorized_access_point": "Litt\u00e9rature polici\u00e8re espagnole" }, { - "authorized_access_point": "Mormons fran\u00e7ais" + "authorized_access_point": "Litt\u00e9rature populaire espagnole" }, { - "authorized_access_point": "Otages fran\u00e7ais" + "authorized_access_point": "Litt\u00e9rature religieuse espagnole" }, { - "authorized_access_point": "Pharmaciens fran\u00e7ais" + "authorized_access_point": "Litt\u00e9rature r\u00e9volutionnaire espagnole" }, { - "authorized_access_point": "Pilotes militaires fran\u00e7ais" + "authorized_access_point": "M\u00e9moires (genre litt\u00e9raire) espagnols" }, { - "authorized_access_point": "Pirates fran\u00e7ais" + "authorized_access_point": "Nouvelles espagnoles" }, { - "authorized_access_point": "Prisonniers fran\u00e7ais" + "authorized_access_point": "Pamphlets espagnols" }, { - "authorized_access_point": "Protestants fran\u00e7ais" + "authorized_access_point": "Parodie espagnole" }, { - "authorized_access_point": "R\u00e9fugi\u00e9s fran\u00e7ais" + "authorized_access_point": "Po\u00e9sie espagnole" }, { - "authorized_access_point": "Religieux fran\u00e7ais" + "authorized_access_point": "Portraits (genre litt\u00e9raire) espagnols" }, { - "authorized_access_point": "Restaurateurs (alimentation) fran\u00e7ais" + "authorized_access_point": "Prose espagnole" }, { - "authorized_access_point": "Royalistes fran\u00e7ais" + "authorized_access_point": "R\u00e9cits de guerre espagnols" }, { - "authorized_access_point": "Savants fran\u00e7ais" + "authorized_access_point": "R\u00e9cits de voyages espagnols" }, { - "authorized_access_point": "Scientifiques fran\u00e7ais" + "authorized_access_point": "Roman espagnol" }, { - "authorized_access_point": "Travailleurs \u00e9trangers fran\u00e7ais" + "authorized_access_point": "Satire espagnole" }, { - "authorized_access_point": "Viticulteurs fran\u00e7ais" + "authorized_access_point": "Science-fiction espagnole" }, { - "authorized_access_point": "Voyageurs fran\u00e7ais" + "authorized_access_point": "Th\u00e9\u00e2tre (genre litt\u00e9raire) espagnol" } ], "closeMatch": [ { "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85051757", - "source": "LCSH" - }, - "authorized_access_point": "French" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85126268", + "source": "LCSH" + } + ], + "authorized_access_point": "Spanish literature" }, { "source": "RVMLaval", - "authorized_access_point": "Fran\u00e7ais" + "authorized_access_point": "Litt\u00e9rature espagnole" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027227219", + "value": "http://www.idref.fr/027236897", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb133183184", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11932273q", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11932273", "source": "BNF" } ], "classification": [ { - "name": "Ethnologie, anthropologie, folklore", + "name": "Histoire et critique litt\u00e9raires", "type": "bf:ClassificationDdc", - "classificationPortion": "390" + "classificationPortion": "800" } ], - "authorized_access_point": "Fran\u00e7ais" + "variant_access_point": [ + "Et la litt\u00e9rature espagnole", + "Litt\u00e9rature castillane" + ], + "authorized_access_point": "Litt\u00e9rature espagnole" }, { - "md5": "4a137d0e50b4305a51ba4e4a370a1d9e", - "pid": "027235548", + "md5": "5eced68b2a10186bfb541846d2c9f240", + "pid": "027238431", "note": [ { "label": [ - "Nouveau petit Robert 2010", - "Le nouveau Th\u00e9o : l'encycl. catholique pour tous / M. Dubost, S. Lalanne, 2009", - "Dict. des mots de la foi chr\u00e9tienne / O. de la Brosse, A. M. Henry, P. Rouillard, 1992", - "Dict. encyclop\u00e9dique du juda\u00efsme / G. Wigoder, 1993", - "Dict. du Coran / M. A. Amir-Moezzi, 2007" + "Grand Larousse universel", + "Petit Robert 1, 1993" ], "noteType": "dataSource" }, { "label": [ - "Sous cette vedette, on trouve les documents sur le je\u00fbne comme pratique religieuse. Les documents sur le je\u00fbne pratiqu\u00e9 dans un but hygi\u00e9nique ou th\u00e9rapeutique se trouvent sous Di\u00e8te", - "Peut se subdiviser par religion, confession ou secte" + "Sous cette vedette, obligatoirement suivie d'une subdivision g\u00e9ographique ou de la subdivision : \u00c0 l'\u00e9tranger, directement ou apr\u00e8s une subdivision de sujet, on trouve les documents sur les Malgaches hors de Madagascar. Les documents sur les Malgaches \u00e0 Madagascar se trouvent sous des vedettes-mati\u00e8re telles que : Madagascar -- Moeurs et coutumes ; etc" ], "noteType": "general" } @@ -477,455 +604,375 @@ "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Asc\u00e8se" - }, - { - "authorized_access_point": "Asc\u00e9tisme" + "authorized_access_point": "Ethnologie - Madagascar" } ], "related": [ { - "authorized_access_point": "Car\u00eame" - }, - { - "authorized_access_point": "Di\u00e8te" - }, - { - "authorized_access_point": "Gr\u00e8ves de la faim" - }, - { - "authorized_access_point": "P\u00e9nitence" - }, - { - "authorized_access_point": "Vrata" + "authorized_access_point": "Madagascar" } ], "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Je\u00fbne - Islam" + "authorized_access_point": "\u00c9crivains malgaches" }, { - "authorized_access_point": "Je\u00fbne f\u00e9d\u00e9ral" + "authorized_access_point": "Femmes malgaches" }, { - "authorized_access_point": "Respirianisme" + "authorized_access_point": "Militaires malgaches" } ], "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85047403", - "source": "LCSH" - }, - "authorized_access_point": "Fasting" - }, - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh2003003108", - "source": "LCSH" - }, - "authorized_access_point": "Fasting -- Religious aspects" - }, - { - "source": "RVMLaval", - "authorized_access_point": "Je\u00fbne" - }, { "source": "RVMLaval", - "authorized_access_point": "Je\u00fbne -- Aspect religieux" + "authorized_access_point": "Malgaches" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027235548", + "value": "http://www.idref.fr/027238431", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119321545", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119324064", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11932406", "source": "BNF" } ], "classification": [ { - "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", + "name": "Ethnologie", "type": "bf:ClassificationDdc", - "classificationPortion": "200" + "classificationPortion": "390" } ], - "variant_access_point": [ - "Je\u00fbne - Aspect religieux", - "Je\u00fbne religieux" - ], - "authorized_access_point": "Je\u00fbne" + "authorized_access_point": "Malgaches" }, { - "md5": "ed278d06425b22322bab28cde431bee3", - "pid": "027236226", + "md5": "49c29ae694de3ceb7a3c73a1e995a168", + "pid": "027242250", "note": [ { "label": [ - "Encycl. universalis - http://www.universalis-edu.com (2019-04-19)", - "Dict. des sciences du langage / F. Neveu, 2011", - "Dict. de linguistique et des sciences du langage, 1994", - "Nouveau dict. encyclop\u00e9dique des sciences du langage / O. Ducrot, J.-M. Schaeffer, 1995" + "Dict. critique du marxisme / G. Labica, G. Bensussan, 1985", + "Le r\u00e9alisme socialiste / M. Aucouturier, 1998", + "Vocabulaire d'esth\u00e9tique / \u00c9. Souriau, 1990 (art. : R\u00e9alisme)" ], "noteType": "dataSource" - }, - { - "label": [ - "Processus de perception et de production du langage chez l'enfant" - ], - "noteType": "general" } ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Biolinguistique" + "authorized_access_point": "Esth\u00e9tique communiste" }, { - "authorized_access_point": "Neurolinguistique" + "authorized_access_point": "Esth\u00e9tique marxiste" + } + ], + "related": [ + { + "authorized_access_point": "R\u00e9alisme socialiste (art)" }, { - "authorized_access_point": "Psycholinguistique" + "authorized_access_point": "R\u00e9alisme socialiste (litt\u00e9rature)" }, { - "authorized_access_point": "Psychologie de l'apprentissage" - } - ], - "related": [ - { - "authorized_access_point": "Acquisition linguistique" - }, - { - "authorized_access_point": "Enfants - Langage" - }, - { - "authorized_access_point": "Langage" - }, - { - "authorized_access_point": "Langage - Compr\u00e9hension" + "authorized_access_point": "R\u00e9alisme socialiste (musique)" } ], "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Inn\u00e9isme (linguistique)" - }, - { - "authorized_access_point": "Reconnaissance des mots" - }, - { - "authorized_access_point": "Tableaux d'\u00e9locution" - } - ], "closeMatch": [ { "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85074511", - "source": "LCSH" - }, - "authorized_access_point": "Language acquisition" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85124145", + "source": "LCSH" + } + ], + "authorized_access_point": "Socialist realism" }, { "source": "RVMLaval", - "authorized_access_point": "Langage -- Acquisition" + "authorized_access_point": "R\u00e9alisme socialiste" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027236226", + "value": "http://www.idref.fr/027242250", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11932215j", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119327288", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11932728", "source": "BNF" } ], "classification": [ { - "name": "Psychologie, psychanalyse", + "name": "Philosophie", "type": "bf:ClassificationDdc", - "classificationPortion": "150" + "classificationPortion": "100" }, { + "name": "Science politique", "type": "bf:ClassificationDdc", - "classificationPortion": "401" + "classificationPortion": "320" + }, + { + "name": "Arts (sauf litt\u00e9rature)", + "type": "bf:ClassificationDdc", + "classificationPortion": "700" + }, + { + "name": "Litt\u00e9rature g\u00e9n\u00e9rale", + "type": "bf:ClassificationDdc", + "classificationPortion": "801" } ], - "variant_access_point": [ - "Apprentissage verbal", - "Enfants - Langage -- Acquisition", - "Langage - Acquisition", - "Langage - Apprentissage", - "Langue maternelle, Acquisition de la" - ], - "authorized_access_point": "Acquisition du langage" + "authorized_access_point": "R\u00e9alisme socialiste" }, { - "md5": "e063396caed42ca1b11fdc3957dafad3", - "pid": "027243087", + "md5": "a8f2f10bcb16d09b91a80e438db341c3", + "pid": "027246159", "note": [ { "label": [ - "Tr\u00e9sor de la langue fran\u00e7aise : rythmanalyse - http://atilf.atilf.fr (2022-04-06)", - "Vocabulaire d'esth\u00e9tique / \u00c9. Souriau, 1990", - "Les notions philosophiques / S. Auroux, 1990", - "Dict. de la linguistique / G. Mounin, 1974", - "Dict. de linguistique et des sciences du langage, 1994", - "Dict. de rh\u00e9torique et de po\u00e9tique / M. Aquin, G. Molini\u00e9, 1999", - "Dict. des termes litt\u00e9raires, 2005" - ], - "noteType": "dataSource" - }, - { - "label": [ - "S'emploie \u00e9galement en subdivision. Cette subdivision s'applique aux langues vivantes, par ex. : Fran\u00e7ais (langue) -- Rythme" + "S'emploie \u00e9galement en subdivision" ], "noteType": "general" - }, - { - "label": [ - "Voir aussi la subdivision M\u00e9trique et rythmique aux langues anciennes, par ex. : Grec (langue) -- M\u00e9trique et rythmique" - ], - "noteType": "seeReference" } ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Esth\u00e9tique" - }, - { - "authorized_access_point": "Po\u00e9tique" - }, - { - "authorized_access_point": "Prosodie (linguistique)" + "authorized_access_point": "Sciences de l'\u00e9ducation" } ], "related": [ { - "authorized_access_point": "M\u00e9trique et rythmique" + "authorized_access_point": "Apprentissage transformationnel" + }, + { + "authorized_access_point": "\u00c9ducation positive" + }, + { + "authorized_access_point": "Enseignement" }, { - "authorized_access_point": "Mouvement (esth\u00e9tique)" + "authorized_access_point": "\u00c9tude et enseignement" }, { - "authorized_access_point": "Musique - Mesure et rythme" + "authorized_access_point": "Hautes \u00e9coles p\u00e9dagogiques (syst\u00e8me \u00e9ducatif suisse)" }, { - "authorized_access_point": "R\u00e9p\u00e9tition (esth\u00e9tique)" + "authorized_access_point": "P\u00e9dagogues" }, { - "authorized_access_point": "Versification" + "authorized_access_point": "Psychologie de l'\u00e9ducation" } ], "bnf_type": "sujet Rameau", - "closeMatch": [ + "narrower": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85074534", - "source": "LCSH" - }, - "authorized_access_point": "Language and languages--Rhythm" + "authorized_access_point": "Apprentissage contextualis\u00e9" }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh00007545", - "source": "LCSH" - }, - "authorized_access_point": "Rhythm" + "authorized_access_point": "Conception universelle de l'apprentissage" }, { - "source": "RVMLaval", - "authorized_access_point": "Langage et langues--Rythme" + "authorized_access_point": "Didactique" }, { - "source": "RVMLaval", - "authorized_access_point": "Rythme" - } - ], - "identifiedBy": [ + "authorized_access_point": "Dispositifs p\u00e9dagogiques" + }, { - "type": "uri", - "value": "http://www.idref.fr/027243087", - "source": "IDREF" + "authorized_access_point": "\u00c9ducation - Langage" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11932811t", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "\u00c9ducation fonctionnelle" + }, { - "name": "Philosophie", - "type": "bf:ClassificationDdc", - "classificationPortion": "100" + "authorized_access_point": "\u00c9ducation par le territoire" }, { - "type": "bf:ClassificationDdc", - "classificationPortion": "401" + "authorized_access_point": "Enseignants - Formation" }, { - "name": "Arts", - "type": "bf:ClassificationDdc", - "classificationPortion": "700" + "authorized_access_point": "Enseignants - Orientation p\u00e9dagogique" }, { - "name": "Po\u00e9sie", - "type": "bf:ClassificationDdc", - "classificationPortion": "801" - } - ], - "variant_access_point": [ - "Rythmanalyse", - "Rythme (esth\u00e9tique)", - "Rythme (linguistique)", - "Rythme (po\u00e9tique)", - "Rythmique" - ], - "authorized_access_point": "Rythme" - }, - { - "md5": "d6f62c7c5e68e1af29b37017fe8f3651", - "pid": "027246655", - "note": [ + "authorized_access_point": "Enseignement - M\u00e9thode des projets" + }, { - "label": [ - "Les notions philosophiques / S. Auroux, 1990", - "Encycl. de la philosophie, 2002", - "Grand dict. de la philosophie / M. Blay, 2003", - "Dict. de philosophie / C. Godin, 2004" - ], - "noteType": "dataSource" + "authorized_access_point": "Enseignement - M\u00e9thodes actives" }, { - "label": [ - "S'emploie \u00e9galement en subdivision" - ], - "noteType": "general" - } - ], - "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Enseignement acc\u00e9l\u00e9r\u00e9" + }, { - "authorized_access_point": "Philosophie - 20e si\u00e8cle" - } - ], - "related": [ + "authorized_access_point": "Enseignement explicite" + }, + { + "authorized_access_point": "Enseignement magistral" + }, + { + "authorized_access_point": "Entretiens en \u00e9ducation" + }, + { + "authorized_access_point": "Herbartianisme" + }, + { + "authorized_access_point": "Hypnop\u00e9die" + }, + { + "authorized_access_point": "Lesson study" + }, + { + "authorized_access_point": "Math\u00e9tique" + }, + { + "authorized_access_point": "M\u00e9thode critique (p\u00e9dagogie)" + }, + { + "authorized_access_point": "M\u00e9thode de Bell et Lancaster" + }, + { + "authorized_access_point": "M\u00e9thode des cas" + }, + { + "authorized_access_point": "M\u00e9thode Montessori" + }, + { + "authorized_access_point": "M\u00e9thode Ramain" + }, + { + "authorized_access_point": "P\u00e9dagogie critique" + }, + { + "authorized_access_point": "P\u00e9dagogie culturellement adapt\u00e9e" + }, + { + "authorized_access_point": "P\u00e9dagogie de soutien" + }, + { + "authorized_access_point": "P\u00e9dagogie du corps" + }, + { + "authorized_access_point": "P\u00e9dagogie exp\u00e9rimentale" + }, + { + "authorized_access_point": "P\u00e9dagogie Germaine Tortel" + }, { - "authorized_access_point": "Anthropologie ph\u00e9nom\u00e9nologique" + "authorized_access_point": "P\u00e9dagogie mus\u00e9ale" }, { - "authorized_access_point": "Chair (philosophie)" + "authorized_access_point": "P\u00e9dagogie sociale" }, { - "authorized_access_point": "Ph\u00e9nom\u00e9nologie de l'art" + "authorized_access_point": "R\u00e9citation" }, { - "authorized_access_point": "Ph\u00e9nom\u00e9nologie et litt\u00e9rature" + "authorized_access_point": "Suggestop\u00e9die" }, { - "authorized_access_point": "Ph\u00e9nom\u00e9nologie et musique" + "authorized_access_point": "Technologie \u00e9ducative" }, { - "authorized_access_point": "Psychologie ph\u00e9nom\u00e9nologique" + "authorized_access_point": "Dict\u00e9es" }, { - "authorized_access_point": "Sociologie et ph\u00e9nom\u00e9nologie" + "authorized_access_point": "Mat\u00e9riel p\u00e9dagogique" } ], - "bnf_type": "sujet Rameau", "closeMatch": [ { "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85046373", - "source": "LCSH" - }, - "authorized_access_point": "Existential phenomenology" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85040989", + "source": "LCSH" + } + ], + "authorized_access_point": "Education" }, { "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85100683", - "source": "LCSH" - }, - "authorized_access_point": "Phenomenology" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85133052", + "source": "LCSH" + } + ], + "authorized_access_point": "Teaching" }, { "source": "RVMLaval", - "authorized_access_point": "Ph\u00e9nom\u00e9nologie" + "authorized_access_point": "P\u00e9dagogie" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027246655", + "value": "http://www.idref.fr/027246159", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11933094c", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11933049j", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11933049", "source": "BNF" } ], + "relation_pid": { + "type": "redirect_from", + "value": "029340578" + }, "classification": [ { - "name": "Philosophie", + "name": "Education et enseignement", "type": "bf:ClassificationDdc", - "classificationPortion": "100" + "classificationPortion": "370" } ], "variant_access_point": [ - "Contribution \u00e0 la ph\u00e9nom\u00e9nologie", - "Ph\u00e9nom\u00e9nologie existentielle", - "Ph\u00e9nom\u00e9nologie transcendantale", - "Philosophie ph\u00e9nom\u00e9nologique" + "Aspect \u00e9ducatif", + "Contribution \u00e0 la p\u00e9dagogie", + "M\u00e9thodes d'enseignement", + "M\u00e9thodes p\u00e9dagogiques" ], - "authorized_access_point": "Ph\u00e9nom\u00e9nologie" + "authorized_access_point": "P\u00e9dagogie" }, { - "md5": "d2214f3706c427c56628cda6898c7d4e", - "pid": "027256251", + "md5": "9c5f6b72def8492b2c17106090dd122b", + "pid": "027248062", "note": [ { "label": [ - "Grand Larousse universel", - "Encycl. universalis, 1989", - "Dict. sanskrit-fran\u00e7ais / N. Stchoupak, L. Nitti, L. Renou, 1972", - "L'Inde classique : manuel des \u00e9tudes indiennes. Tome 2 / L. Renou, J. Filliozat, 1952 (\u00a7 1445-1459)", - "Dict. de la civilisation indienne / L. Fr\u00e9d\u00e9ric, 1987", - "Les notions philosophiques / S. Auroux, 1990", - "Dict. de la sagesse orientale, 1995", - "La philosophie indienne / F. Chenet, 1998", - "Les philosophies de l'Inde / J. Filliozat, 2006", - "BnF Service indien, 2017-05-15" - ], - "noteType": "dataSource" - }, - { - "label": [ - "\"Fait de lier, de mettre au joug ; jonction\" ; discipline spirituelle ; \u00e9cole de philosophie hindoue", - "Sous cette vedette, on trouve les documents sur le yoga en g\u00e9n\u00e9ral et en tant que doctrine formant l'un des six syst\u00e8mes philosophiques (dar\u015bana) reconnus par l'orthodoxie brahmanique. Les documents sur le yoga physique qui privil\u00e9gie les exercices de postures et de respiration se trouvent sous Hatha-yoga" + "Sous cette vedette on trouve les ouvrages sur la lutte contre la malveillance. Les ouvrages sur la lutte contre les dommages accidentels se trouvent sous Syst\u00e8mes informatiques -- Mesures de s\u00e9curit\u00e9" ], "noteType": "general" } @@ -933,104 +980,127 @@ "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Philosophie hindoue" + "authorized_access_point": "Cybercriminalit\u00e9" } ], "related": [ { - "authorized_access_point": "Christianisme et yoga" + "authorized_access_point": "Confiance num\u00e9rique" + }, + { + "authorized_access_point": "Cyberd\u00e9fense" + }, + { + "authorized_access_point": "Hacking" + }, + { + "authorized_access_point": "Microordinateurs - Acc\u00e8s - Contr\u00f4le" + }, + { + "authorized_access_point": "Ordinateurs - Acc\u00e8s - Contr\u00f4le" }, { - "authorized_access_point": "M\u00e9ditation - Hindouisme" + "authorized_access_point": "Syst\u00e8mes informatiques - Mesures de s\u00fbret\u00e9 - Examens" }, { - "authorized_access_point": "Yogis" + "authorized_access_point": "Virus informatiques" } ], "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Hatha-yoga" + "authorized_access_point": "Gestion des droits num\u00e9riques" }, { - "authorized_access_point": "J\u00f1\u0101na-yoga" + "authorized_access_point": "Contrats intelligents" }, { - "authorized_access_point": "Karma-yoga" + "authorized_access_point": "AltaRica (m\u00e9thode formelle)" }, { - "authorized_access_point": "Kriy\u0101-yoga" + "authorized_access_point": "Antivirus (logiciels)" }, { - "authorized_access_point": "Laya-yoga" + "authorized_access_point": "Blockchains" }, { - "authorized_access_point": "R\u0101ja-yoga" + "authorized_access_point": "Captcha" }, { - "authorized_access_point": "Siddha Yoga" + "authorized_access_point": "D\u00e9tection des anomalies (informatique)" }, { - "authorized_access_point": "Swara-yoga" + "authorized_access_point": "Infrastructures \u00e0 cl\u00e9s publiques" }, { - "authorized_access_point": "Yoga nidra" + "authorized_access_point": "Protection de l'information (informatique)" }, { - "authorized_access_point": "Yoga tantrique" + "authorized_access_point": "R\u00e9seaux d'ordinateurs - Mesures de s\u00fbret\u00e9" } ], "closeMatch": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85149174", - "source": "LCSH" - }, - "authorized_access_point": "Yoga" + "source": "RVMLaval", + "authorized_access_point": "Internet--S\u00e9curit\u00e9--Mesures" }, { - "source": "RVMLaval", - "authorized_access_point": "Yoga" + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85042310", + "source": "LCSH" + } + ], + "authorized_access_point": "Electronic data processing departments--Security measures" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027256251", + "value": "http://www.idref.fr/027248062", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11933824d", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13318381w", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13318381", "source": "BNF" } ], "classification": [ { - "name": "Philosophie", - "type": "bf:ClassificationDdc", - "classificationPortion": "100" - }, - { - "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", "type": "bf:ClassificationDdc", - "classificationPortion": "200" + "classificationPortion": "621" } ], "variant_access_point": [ - "Yoga - Aspect religieux" + "Cybers\u00e9curit\u00e9", + "Informatique - Mesures de s\u00fbret\u00e9", + "S\u00e9curit\u00e9 informatique", + "S\u00fbret\u00e9 des syst\u00e8mes d'information" ], - "authorized_access_point": "Yoga" + "authorized_access_point": "Syst\u00e8mes informatiques - Mesures de s\u00fbret\u00e9" }, { - "md5": "7f61058f216df78b1cc41c9e52ec2471", - "pid": "027287289", + "md5": "bf1e8b469e9db8ebdb17a147e14b3308", + "pid": "027248720", "note": [ { "label": [ - "S'emploie \u00e9galement en subdivision" + "Grand Larousse universel", + "Grand Robert de la langue fran\u00e7aise, 2001" + ], + "noteType": "dataSource" + }, + { + "label": [ + "S'emploie \u00e9galement en subdivision. Cette subdivision s'applique aux cat\u00e9gories de personnes, groupes ethniques et personnes" ], "noteType": "general" } @@ -1038,1043 +1108,1103 @@ "type": "bf:Topic", "related": [ { - "authorized_access_point": "Mariage" - } - ], - "bnf_type": "sujet Rameau", - "narrower": [ + "authorized_access_point": "Assistance sexuelle aux handicap\u00e9s" + }, { - "authorized_access_point": "Conciliation (divorce)" + "authorized_access_point": "Communisme et sexualit\u00e9" }, { - "authorized_access_point": "Divorc\u00e9s" + "authorized_access_point": "\u00c9ducation sexuelle" }, { - "authorized_access_point": "Enfants de divorc\u00e9s" + "authorized_access_point": "\u00c9rotisme" }, { - "authorized_access_point": "Remariage" + "authorized_access_point": "Fascisme et sexualit\u00e9" }, { - "authorized_access_point": "R\u00e9pudiation" - } - ], - "closeMatch": [ + "authorized_access_point": "G\u00e9ographie des sexualit\u00e9s" + }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85038616", - "source": "LCSH" - }, - "authorized_access_point": "Divorce" + "authorized_access_point": "Industries du sexe" }, { - "source": "RVMLaval", - "authorized_access_point": "Divorce" - } - ], - "identifiedBy": [ + "authorized_access_point": "Minorit\u00e9s sexuelles" + }, { - "type": "uri", - "value": "http://www.idref.fr/027287289", - "source": "IDREF" + "authorized_access_point": "Musique et sexualit\u00e9" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11936233f", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "National-socialisme et sexualit\u00e9" + }, { - "name": "Sciences sociales", - "type": "bf:ClassificationDdc", - "classificationPortion": "300" + "authorized_access_point": "Objets \u00e9rotiques" }, { - "name": "Droit", - "type": "bf:ClassificationDdc", - "classificationPortion": "340" - } - ], - "variant_access_point": [ - "D\u00e9mariage", - "Dissolution du mariage", - "Mariage - Dissolution" - ], - "authorized_access_point": "Divorce" - }, - { - "md5": "c36ae06c89d379f470125bd7b1dc8cf7", - "pid": "027294358", - "note": [ + "authorized_access_point": "Relations amoureuses" + }, { - "label": [ - "Grand Larousse universel", - "Encycl. universalis - http://www.universalis-edu.com (2013-10-24)", - "Dict. universel des litt\u00e9ratures / B. Didier, 1994", - "Dict. des termes litt\u00e9raires, 2005 : beat" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Sexologie" + }, { - "authorized_access_point": "Contre-culture" + "authorized_access_point": "Sexualit\u00e9 (biologie)" }, { - "authorized_access_point": "Mouvements litt\u00e9raires - \u00c9tats-Unis" + "authorized_access_point": "Sexualit\u00e9 (psychologie)" }, { - "authorized_access_point": "Litt\u00e9rature am\u00e9ricaine - 1945-2000" - } - ], - "related": [ + "authorized_access_point": "Sexualit\u00e9 - Aspect symbolique" + }, { - "authorized_access_point": "Cut-up" + "authorized_access_point": "Sexualit\u00e9 - Dans la litt\u00e9rature" }, { - "authorized_access_point": "Psych\u00e9d\u00e9lisme" + "authorized_access_point": "Sexualit\u00e9 - Droit" }, { - "authorized_access_point": "Spoken word (po\u00e9sie)" + "authorized_access_point": "Sexualit\u00e9 - Religion" + }, + { + "authorized_access_point": "Sexualit\u00e9 dans les arts du spectacle" + }, + { + "authorized_access_point": "Sorcellerie et sexualit\u00e9" + }, + { + "authorized_access_point": "Sports et sexualit\u00e9" + }, + { + "authorized_access_point": "Vie sexuelle" } ], "bnf_type": "sujet Rameau", - "closeMatch": [ + "narrower": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh88007452", - "source": "LCSH" - }, - "authorized_access_point": "Beat generation" + "authorized_access_point": "Abstinence sexuelle" }, { - "source": "RVMLaval", - "authorized_access_point": "Beat generation" - } - ], - "identifiedBy": [ + "authorized_access_point": "Adolescents - Sexualit\u00e9" + }, { - "type": "uri", - "value": "http://www.idref.fr/027294358", - "source": "IDREF" + "authorized_access_point": "Alcooliques - Sexualit\u00e9" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11936777f", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Asexualit\u00e9" + }, { - "name": "Sciences sociales", - "type": "bf:ClassificationDdc", - "classificationPortion": "300" + "authorized_access_point": "Comportement sexuel des animaux" }, { - "name": "Po\u00e9sie", - "type": "bf:ClassificationDdc", - "classificationPortion": "801" - } - ], - "variant_access_point": [ - "Beatniks", - "G\u00e9n\u00e9ration beat" - ], - "authorized_access_point": "Beat generation" - }, - { - "md5": "ac666da0dce8ee13821ae5154f6b6895", - "pid": "02730440X", - "note": [ + "authorized_access_point": "Consentement sexuel" + }, { - "label": [ - "Tr\u00e9sor de la langue fran\u00e7aise", - "Dict. encyclop\u00e9dique des sciences du langage / O. Ducrot, T. Todorov, 1972", - "Dict. de linguistique et des sciences du langage, 1994" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Cybersexe" + }, { - "authorized_access_point": "Discours (linguistique)" + "authorized_access_point": "Enfants - Sexualit\u00e9" }, { - "authorized_access_point": "Pragmatique" - } - ], - "related": [ + "authorized_access_point": "Exhibitionnisme" + }, { - "authorized_access_point": "Actes de langage" + "authorized_access_point": "H\u00e9t\u00e9rosexualit\u00e9" }, { - "authorized_access_point": "Actualisation (linguistique)" + "authorized_access_point": "Homosexualit\u00e9" }, { - "authorized_access_point": "Deixis" - } - ], - "bnf_type": "sujet Rameau", - "narrower": [ + "authorized_access_point": "Hygi\u00e8ne sexuelle" + }, { - "authorized_access_point": "Consignes (\u00e9ducation)" - } - ], - "closeMatch": [ + "authorized_access_point": "Instinct sexuel" + }, { - "source": "RVMLaval", - "authorized_access_point": "\u00c9nonciation (linguistique)" - } - ], - "identifiedBy": [ + "authorized_access_point": "Masturbation" + }, { - "type": "uri", - "value": "http://www.idref.fr/02730440X", - "source": "IDREF" + "authorized_access_point": "Parapl\u00e9giques - Sexualit\u00e9" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11937549w", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Perversion sexuelle" + }, { - "type": "bf:ClassificationDdc", - "classificationPortion": "401" - } - ], - "variant_access_point": [ - "Linguistique de l'\u00e9nonciation", - "Linguistique \u00e9nonciative" - ], - "authorized_access_point": "\u00c9nonciation (linguistique)" - }, - { - "md5": "5f605d4f6998394e05e4863417bdbe20", - "pid": "027328295", - "note": [ + "authorized_access_point": "Polyamour" + }, { - "label": [ - "Cent ans de m\u00e9thodes de lecture / C. Juan\u00e9da-Albar\u00e8de, 1998" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Prisonniers - Sexualit\u00e9" + }, { - "authorized_access_point": "Lecture - \u00c9tude et enseignement" - } - ], - "related": [ + "authorized_access_point": "Relations sexuelles" + }, { - "authorized_access_point": "Lecture - Enseignement assist\u00e9 par ordinateur" + "authorized_access_point": "Sexualit\u00e9 dans le mariage" }, { - "authorized_access_point": "Lecture - \u00c9tude et enseignement (primaire)" + "authorized_access_point": "Sexualit\u00e9 dans les r\u00eaves" }, { - "authorized_access_point": "Tableaux d'\u00e9locution" - } - ], - "bnf_type": "sujet Rameau", - "narrower": [ + "authorized_access_point": "Sexualit\u00e9 de groupe" + }, + { + "authorized_access_point": "Sexualit\u00e9 f\u00e9minine" + }, + { + "authorized_access_point": "Sexualit\u00e9 masculine" + }, { - "authorized_access_point": "Lecture - M\u00e9thode analytique" + "authorized_access_point": "Sexualit\u00e9 pr\u00e9maritale" }, { - "authorized_access_point": "Lecture - M\u00e9thode mixte" + "authorized_access_point": "Travestisme" }, { - "authorized_access_point": "Lecture - M\u00e9thode synth\u00e9tique" + "authorized_access_point": "Troubles sexuels" }, { - "authorized_access_point": "Jeux de lecture" + "authorized_access_point": "Voyeurisme" } ], "closeMatch": [ { "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85111662", - "source": "LCSH" - }, - "authorized_access_point": "Reading" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85120549", + "source": "LCSH" + } + ], + "authorized_access_point": "Sex" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2001008764", + "source": "LCSH" + } + ], + "authorized_access_point": "Sexual behavior" }, { "source": "RVMLaval", - "authorized_access_point": "Lecture" + "authorized_access_point": "Sexualit\u00e9" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027328295", + "value": "http://www.idref.fr/027248720", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11939438f", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11933266p", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11933266", "source": "BNF" } ], + "relation_pid": { + "type": "redirect_from", + "value": "02864297X" + }, "classification": [ { - "name": "Education et enseignement", + "name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", - "classificationPortion": "370" + "classificationPortion": "150" }, { + "name": "Sciences sociales", "type": "bf:ClassificationDdc", - "classificationPortion": "401" + "classificationPortion": "300" } ], "variant_access_point": [ - "M\u00e9thodes d'apprentissage de la lecture", - "M\u00e9thodes de lecture" + "Comportement sexuel", + "Pratiques sexuelles", + "Sexe", + "Sexualit\u00e9 humaine" ], - "authorized_access_point": "Lecture - M\u00e9thodes d'apprentissage" + "authorized_access_point": "Sexualit\u00e9" }, { - "md5": "4af248718ed5499456ada7e538b2e087", - "pid": "027354431", + "md5": "8740963d02d11084f82110a110e1bd3f", + "pid": "027255468", "note": [ { "label": [ - "Le corps, l'\u00e2me, l'esprit : introduction \u00e0 une anthropologie ph\u00e9nom\u00e9nologique / C. A. van Peursen, 1979", - "Corps, \u00e2me, esprit : colloque international, Cerisy-la-Salle, 1999", - "Le corps et l'esprit / R. Quilliot, 2003", - "Grand dict. de la philosophie / M. Blay, 2003 (art. : Corps)" + "Nouveau petit Robert 1993", + "Tr\u00e9sor de la langue fran\u00e7aise", + "Dict. des termes d'art / G. Janneau, 1980" ], "noteType": "dataSource" }, { "label": [ - "Sous cette vedette, on trouve les documents sur la relation entre l'esprit et le corps, con\u00e7us comme substances m\u00e9taphysiques. Les documents sur le concept m\u00e9taphysique d'esprit se trouvent sous Esprit. Les documents sur l'\u00e9tude contemporaine des ph\u00e9nom\u00e8nes mentaux, associant philosophie et recherche scientifique, se trouvent sous Philosophie de l'esprit" + "Art de fabriquer des objets tress\u00e9s avec des fibres v\u00e9g\u00e9tales ou des tiges" ], "noteType": "general" + }, + { + "label": [ + "Voir aussi les vedettes du type Vannerie [adjectif ethnique]" + ], + "noteType": "seeReference" } ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "M\u00e9taphysique" + "authorized_access_point": "Artisanat de nature" }, { - "authorized_access_point": "Philosophie de l'homme" + "authorized_access_point": "Arts d\u00e9coratifs" } ], - "related": [ - { - "authorized_access_point": "Chair (philosophie)" - }, - { - "authorized_access_point": "Corps (philosophie)" - }, + "bnf_type": "sujet Rameau", + "narrower": [ { - "authorized_access_point": "Esprit" + "authorized_access_point": "Meubles en rotin" }, { - "authorized_access_point": "Gu\u00e9rison par l'esprit" + "authorized_access_point": "Objets en \u00e9corces" }, { - "authorized_access_point": "M\u00e9decine holistique" + "authorized_access_point": "Paniers" }, { - "authorized_access_point": "M\u00e9decine psychosomatique" + "authorized_access_point": "Travail de l'osier" }, { - "authorized_access_point": "Occasionnalisme" + "authorized_access_point": "Travail de la paille" }, { - "authorized_access_point": "Parapsychologie" + "authorized_access_point": "Travail des feuilles de vaquois" }, { - "authorized_access_point": "Philosophie de l'esprit" + "authorized_access_point": "Travail des palmes" }, { - "authorized_access_point": "Phr\u00e9nologie" - }, + "authorized_access_point": "Travail du raphia" + } + ], + "closeMatch": [ { - "authorized_access_point": "Psychiatrie biologique" + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85012110", + "source": "LCSH" + } + ], + "authorized_access_point": "Basket making" }, { - "authorized_access_point": "Psychophysiologie" + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85012127", + "source": "LCSH" + } + ], + "authorized_access_point": "Basketwork" }, - { - "authorized_access_point": "Spiritualisme" - } - ], - "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Esprit et cerveau" - } - ], - "closeMatch": [ { "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85085488", - "source": "LCSH" - }, - "authorized_access_point": "Mind and body" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85056513", + "source": "LCSH" + } + ], + "authorized_access_point": "Grass weaving" }, { "source": "RVMLaval", - "authorized_access_point": "Esprit et corps" + "authorized_access_point": "Vannerie" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027354431", + "value": "http://www.idref.fr/027255468", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11941447p", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13516282t", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13516282", "source": "BNF" } ], "classification": [ { - "name": "Philosophie", + "name": "Dessin, arts d\u00e9coratifs, artisanat d'art", "type": "bf:ClassificationDdc", - "classificationPortion": "100" + "classificationPortion": "740" + }, + { + "name": "Jeux", + "type": "bf:ClassificationDdc", + "classificationPortion": "793" } ], "variant_access_point": [ - "\u00c2me et corps", - "Corps et \u00e2me", - "Corps et esprit" + "Croiserie", + "Joncerie", + "Lacerie", + "Lasserie", + "Mandrerie" ], - "authorized_access_point": "Esprit et corps" + "authorized_access_point": "Vannerie" }, { - "md5": "d2f52ba71d463ec6faf99465b88ff0d3", - "pid": "027366669", + "md5": "7f44c703b98ed54dadeed0c75658aef7", + "pid": "027255522", "note": [ { "label": [ - "Grand Larousse universel", - "Encycl. universalis : hassidisme moderne - http://www.universalis-edu.com (2016-04-06)", - "Dict. encycl. du juda\u00efsme / G. Wigoder, 1993" + "Nouveau petit Robert 2010", + "Nouveau Littr\u00e9 2006", + "Tr\u00e9sor de la langue fran\u00e7aise" ], "noteType": "dataSource" }, { "label": [ - "Sous cette vedette, on trouve les documents sur le courant mystique juif moderne fond\u00e9 au 18e si\u00e8cle en Podolie par le Baal Chem Tov. Les documents sur le courant mystique juif m\u00e9di\u00e9val se trouvent sous Hassidisme m\u00e9di\u00e9val. Les documents sur la secte juive - et ses membres - n\u00e9e au 4e-3e si\u00e8cle avant J.-C. se trouvent sous Hassid\u00e9ens" + "Voir aussi les vedettes du type Verrerie [adjectif de civilisation, ethnique, de nationalit\u00e9 ou d'origine g\u00e9ographique]" ], - "noteType": "general" + "noteType": "seeReference" } ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Sectes juives" + "authorized_access_point": "Art du verre" } ], "related": [ { - "authorized_access_point": "Hassidim" - }, - { - "authorized_access_point": "Hassidisme m\u00e9di\u00e9val" - }, - { - "authorized_access_point": "Juda\u00efsme ultra-orthodoxe" - }, - { - "authorized_access_point": "Mitnagdim" + "authorized_access_point": "Marques de verriers" }, { - "authorized_access_point": "Mystique - Juda\u00efsme" + "authorized_access_point": "Verre - Fabrication" }, { - "authorized_access_point": "L\u00e9gendes hassidiques" + "authorized_access_point": "Verre - Industrie et commerce" }, { - "authorized_access_point": "Litt\u00e9rature hassidique" - }, - { - "authorized_access_point": "Nigunim" + "authorized_access_point": "Verreries" } ], "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Dix-neuf de Kislev" + "authorized_access_point": "Bijoux en verre" + }, + { + "authorized_access_point": "Boules \u00e0 neige" }, { - "authorized_access_point": "Habad" + "authorized_access_point": "Bouteilles \u00e0 sujet" }, { - "authorized_access_point": "Hassidim de Bobova" + "authorized_access_point": "Clochettes en verre" }, { - "authorized_access_point": "Hassidim de Bratslav" + "authorized_access_point": "Cristallerie" }, { - "authorized_access_point": "Hassidim de Gour" + "authorized_access_point": "Fleurs en verre" }, { - "authorized_access_point": "Hassidim de Grodzisk" + "authorized_access_point": "Meubles en verre" }, { - "authorized_access_point": "Hassidim de Karlin" + "authorized_access_point": "Millefiori" }, { - "authorized_access_point": "Hassidim de Kotzk" + "authorized_access_point": "Opaline" }, { - "authorized_access_point": "Hassidim de Pshiskha" + "authorized_access_point": "Ouraline" }, { - "authorized_access_point": "Hassidim de Ropshits-Dzik\u00f3w" + "authorized_access_point": "Perles en verre" }, { - "authorized_access_point": "Hassidim de Ruzhin" + "authorized_access_point": "Presse-papiers" }, { - "authorized_access_point": "Hassidim de Sadigura" + "authorized_access_point": "Sulfures (verrerie)" }, { - "authorized_access_point": "Hassidim de Satmar" + "authorized_access_point": "Verre cam\u00e9e" }, { - "authorized_access_point": "Hassidim de Skvira" + "authorized_access_point": "Verrerie antique" }, { - "authorized_access_point": "Hassidim de Tchernobyl" + "authorized_access_point": "Verrerie de la Renaissance" }, { - "authorized_access_point": "Hassidim de Zanz" + "authorized_access_point": "Verrerie de Murano" }, { - "authorized_access_point": "Hassidim de Zolochev" + "authorized_access_point": "Verrerie m\u00e9di\u00e9vale" }, { - "authorized_access_point": "Saddikim" + "authorized_access_point": "Verrerie pr\u00e9historique" }, { - "authorized_access_point": "Shomer Emunim" + "authorized_access_point": "Verres fil\u00e9s" } ], "closeMatch": [ { "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85059241", - "source": "LCSH" - }, - "authorized_access_point": "Hasidism" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85055188", + "source": "LCSH" + } + ], + "authorized_access_point": "Glassware" }, { "source": "RVMLaval", - "authorized_access_point": "Hassidisme" + "authorized_access_point": "Verrerie" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027366669", + "value": "http://www.idref.fr/027255522", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119423798", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119337751", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11933775", "source": "BNF" } ], "classification": [ { - "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", + "name": "Arts plastiques, sculpture", "type": "bf:ClassificationDdc", - "classificationPortion": "200" + "classificationPortion": "730" + }, + { + "name": "Dessin, arts d\u00e9coratifs, artisanat d'art", + "type": "bf:ClassificationDdc", + "classificationPortion": "740" } ], "variant_access_point": [ - "Chassidisme", - "Dynasties hassidiques", - "H\u0332asidout", - "Hassidisme moderne", - "Mouvement hassidique" + "Objets en verre", + "Verre, Objets en", + "Verroterie" ], - "authorized_access_point": "Hassidisme" + "authorized_access_point": "Verrerie" }, { - "md5": "fdec54c0472a9b570efc188c04de5351", - "pid": "027389782", + "md5": "54c7e367f8eff1d33f197d3f7682d65e", + "pid": "027256138", "note": [ { "label": [ - "Les m\u00e9tiers de la mer / N. Deladieu, E. Pierre, 2004", - "Guide des m\u00e9tiers de la mer : 100 m\u00e9tiers pour demain / Association pour la promotion des m\u00e9tiers de la mer, 2003 [ressource \u00e9lectronique]" + "Les notions philosophiques / S. Auroux, 1990", + "Vocabulaire technique et critique de la philosophie / A. Lalande, 1997", + "Grand dict. de la philosophie / M. Blay, 2003", + "Dict. de psychologie / R. Doron, F. Parot, 1991", + "Vocabulaire de la psychologie / H. Pi\u00e9ron, 2003", + "Grand dict. de la psychologie, 2002 : volition" ], "noteType": "dataSource" + }, + { + "label": [ + "Sous cette vedette, on trouve les documents sur les concepts philosophiques ou psychologiques de volont\u00e9 et d'absence de volont\u00e9" + ], + "noteType": "general" } ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Mer et civilisation" + "authorized_access_point": "Morale" }, { - "authorized_access_point": "M\u00e9tiers" + "authorized_access_point": "Personnalit\u00e9" + }, + { + "authorized_access_point": "Philosophie de l'action" } ], "related": [ { - "authorized_access_point": "Mer" + "authorized_access_point": "Assentiment (philosophie)" }, { - "authorized_access_point": "Plongeurs sous-marins" + "authorized_access_point": "Procrastination" }, { - "authorized_access_point": "Ressources marines" - } - ], - "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Armateurs" + "authorized_access_point": "Volontarisme doxastique" }, { - "authorized_access_point": "Charpentiers de marine" + "authorized_access_point": "Autonomie (philosophie)" }, { - "authorized_access_point": "Gardiens de phare" + "authorized_access_point": "Dieu - Volont\u00e9" }, { - "authorized_access_point": "Go\u00e9moniers" + "authorized_access_point": "Faiblesse (psychologie)" }, { - "authorized_access_point": "Marins" + "authorized_access_point": "Hek\u1e53n (le mot grec)" }, { - "authorized_access_point": "Oc\u00e9anographes" + "authorized_access_point": "Inhibition" }, { - "authorized_access_point": "Paludiers" + "authorized_access_point": "Intention" }, { - "authorized_access_point": "P\u00eacheurs" + "authorized_access_point": "Libre arbitre" }, { - "authorized_access_point": "Prud'homies de p\u00eache" + "authorized_access_point": "Prise de d\u00e9cision" } ], + "bnf_type": "sujet Rameau", "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85146775", + "source": "LCSH" + } + ], + "authorized_access_point": "Will" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2006003161", + "source": "LCSH" + } + ], + "authorized_access_point": "Akrasia" + }, { "source": "RVMLaval", - "authorized_access_point": "M\u00e9tiers de la mer" + "authorized_access_point": "Volont\u00e9" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Acrasie" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027389782", + "value": "http://www.idref.fr/027256138", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119442304", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11933815f", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11933815", "source": "BNF" } ], + "relation_pid": { + "type": "redirect_from", + "value": "055334873" + }, "classification": [ { - "name": "Economie", + "name": "Philosophie", "type": "bf:ClassificationDdc", - "classificationPortion": "330" + "classificationPortion": "100" + }, + { + "name": "Psychologie, psychanalyse", + "type": "bf:ClassificationDdc", + "classificationPortion": "150" } ], "variant_access_point": [ - "Mer, M\u00e9tiers de la", - "Ressources marines - Orientation professionnelle", - "Travailleurs de la mer" - ], - "authorized_access_point": "M\u00e9tiers de la mer" - }, - { - "md5": "2f7b62eb1d92a80d9aad031883361398", - "pid": "027430162", + "Aboulie", + "Acrasia", + "Vouloir (morale)", + "Acrasie", + "Akrasia", + "Akrasie", + "Conation", + "Faiblesse de la volont\u00e9", + "Manque de volont\u00e9", + "Volition", + "Volont\u00e9, Manque de" + ], + "authorized_access_point": "Volont\u00e9" + }, + { + "md5": "2e4e8e6798fccaa6b67332e917cf10aa", + "pid": "027257045", "note": [ { "label": [ - "M\u00e9moire et compr\u00e9hension du langage / M.-F. Ehrlich, 1994", - "Psychologie de la compr\u00e9hension du langage / J.-P. Rossi, 2009", - "The process of language understanding / G. B. Flores d'Arcais, R. J. Jarvella, 1995" + "Laval RVM, 1983" ], "noteType": "dataSource" } ], "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Compr\u00e9hension" - }, + "bnf_type": "sujet Rameau", + "narrower": [ { - "authorized_access_point": "Psycholinguistique" + "authorized_access_point": "Plombi\u00e8res, Entrevue de (1858)" } ], - "related": [ - { - "authorized_access_point": "Consignes (\u00e9ducation)" - }, + "identifiedBy": [ { - "authorized_access_point": "Acquisition du langage" + "type": "uri", + "value": "http://www.idref.fr/027257045", + "source": "IDREF" }, { - "authorized_access_point": "Langage" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11933876n", + "source": "BNF" }, { - "authorized_access_point": "S\u00e9mantique et psychologie" + "type": "bf:Nbn", + "value": "FRBNF11933876", + "source": "BNF" } ], - "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Intercompr\u00e9hension (linguistique)" - }, - { - "authorized_access_point": "Reconnaissance des mots" - } - ], - "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85126440", - "source": "LCSH" - }, - "authorized_access_point": "Speech, Intelligibility of" - }, - { - "source": "RVMLaval", - "authorized_access_point": "Langage--Intelligibilit\u00e9" - } - ], - "identifiedBy": [ - { - "type": "uri", - "value": "http://www.idref.fr/027430162", - "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11947331g", - "source": "BNF" - } - ], - "classification": [ - { - "name": "Psychologie, psychanalyse", - "type": "bf:ClassificationDdc", - "classificationPortion": "150" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "401" - } - ], - "variant_access_point": [ - "Compr\u00e9hension de la parole", - "Compr\u00e9hension des langues", - "Compr\u00e9hension du langage", - "Langage - Intelligibilit\u00e9", - "Langues - Compr\u00e9hension", - "Parole - Compr\u00e9hension" - ], - "authorized_access_point": "Langage - Compr\u00e9hension" + "authorized_access_point": "Relations ext\u00e9rieures - France - 1852-1870" }, { - "md5": "219dd52d0c5f224379cd589be5877c81", - "pid": "027488462", + "md5": "d53c6c9fd1b0171dc8a66765938ab695", + "pid": "027258556", "note": [ { "label": [ - "Tr\u00e9sor de la langue fran\u00e7aise", - "Dict. J\u00e9sus / \u00c9cole biblique et arch\u00e9ologique fran\u00e7aise de J\u00e9rusalem, 2021 (art. : Union hypostatique ; art. : Communication des idiomes)", - "Les mots du christianisme / Le Tourneau, 2005 (art. : Union hypostatique ; art. : Communication des idiomes)", - "L'union avec Christ chez Calvin / S. K. Kim, 2013 [th\u00e8se] - https://tel.archives-ouvertes.fr (2022-05-17)" + "Grand Larousse universel", + "Encycl. universalis - http://www.universalis-edu.com (2008-09-04)", + "Dict. des sciences humaines / S. Mesure, P. Savidan, 2006" ], "noteType": "dataSource" }, { "label": [ - "En la personne du Christ se trouvent unies la nature divine et la nature humaine : c'est l'union hypostatique ; les propri\u00e9t\u00e9s relatives \u00e0 chacune de ces deux natures du Christ entrent en communication \u00e0 travers sa personne" + "S'emploie \u00e9galement en subdivision", + "Aux personnes, cette subdivision s'emploie \u00e9galement pour des \u00e9tudes g\u00e9n\u00e9alogiques. Dans ce cas, \u00e9tablir une vedette-mati\u00e8re additionnelle au nom de la famille" ], "noteType": "general" + }, + { + "label": [ + "Voir aussi les vedettes du type Familles [adjectif ethnique], par ex. : Familles juives" + ], + "noteType": "seeReference" } ], "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Institutions sociales" + } + ], "related": [ { - "authorized_access_point": "Incarnation (christianisme)" + "authorized_access_point": "Archives familiales" }, { - "authorized_access_point": "P\u00e9richor\u00e8se" - } - ], - "bnf_type": "sujet Rameau", - "closeMatch": [ + "authorized_access_point": "Biblioth\u00e8ques et famille" + }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85063813", - "source": "LCSH" - }, - "authorized_access_point": "Hypostatic union" + "authorized_access_point": "D\u00e9mographie de la famille" }, { - "source": "RVMLaval", - "authorized_access_point": "Union hypostatique" - } - ], - "identifiedBy": [ + "authorized_access_point": "Entraide familiale" + }, { - "type": "uri", - "value": "http://www.idref.fr/027488462", - "source": "IDREF" + "authorized_access_point": "Entreprises familiales" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11951728f", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Famille - Anthropologie" + }, { - "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", - "type": "bf:ClassificationDdc", - "classificationPortion": "200" - } - ], - "variant_access_point": [ - "Communication des attributs", - "Communication des idiomes", - "Communication des propri\u00e9t\u00e9s", - "Communicatio idiomatum" - ], - "authorized_access_point": "Union hypostatique" - }, - { - "md5": "d88d4f6786871f4b7a24054cbcf6c5dd", - "pid": "02750610X", - "note": [ + "authorized_access_point": "Famille - Loisirs" + }, { - "label": [ - "S'emploie \u00e9galement en subdivision" - ], - "noteType": "general" - } - ], - "type": "bf:Topic", - "broader": [ + "authorized_access_point": "Famille - Vie religieuse" + }, { - "authorized_access_point": "Documentation technique" + "authorized_access_point": "Famille et \u00e9cole" }, { - "authorized_access_point": "Machines" + "authorized_access_point": "Family office" }, { - "authorized_access_point": "Produits industriels" + "authorized_access_point": "F\u00eates de famille" }, { - "authorized_access_point": "Propri\u00e9t\u00e9 industrielle" - } - ], - "related": [ + "authorized_access_point": "Formation parentale" + }, + { + "authorized_access_point": "G\u00e9n\u00e9alogie" + }, + { + "authorized_access_point": "Mariage" + }, + { + "authorized_access_point": "M\u00e9dias et famille" + }, { - "authorized_access_point": "Concurrence d\u00e9loyale" + "authorized_access_point": "M\u00e9diation familiale" }, { - "authorized_access_point": "Dessins et mod\u00e8les" + "authorized_access_point": "M\u00e9nages" }, { - "authorized_access_point": "Inventions" + "authorized_access_point": "Ordinateurs et famille" }, { - "authorized_access_point": "Savoir-faire industriel" + "authorized_access_point": "Parent\u00e9" + }, + { + "authorized_access_point": "Pastorale des familles" + }, + { + "authorized_access_point": "Politique familiale" + }, + { + "authorized_access_point": "Relations famille-malade" + }, + { + "authorized_access_point": "Relations personnel m\u00e9dical-famille" + }, + { + "authorized_access_point": "Secrets de famille" + }, + { + "authorized_access_point": "Service social familial" + }, + { + "authorized_access_point": "Travail et famille" + }, + { + "authorized_access_point": "Vie domestique" + }, + { + "authorized_access_point": "Photographie de famille" + }, + { + "authorized_access_point": "Roman familial (litt\u00e9rature)" } ], - "bnf_type": "genre/forme Rameau", + "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "\u00c9changes de brevets d'invention et d'information technique" + "authorized_access_point": "Arri\u00e8re-grands-parents" + }, + { + "authorized_access_point": "Brus" + }, + { + "authorized_access_point": "Chefs de famille" + }, + { + "authorized_access_point": "\u00c9ducation familiale" + }, + { + "authorized_access_point": "Enfants" + }, + { + "authorized_access_point": "Famille inadapt\u00e9e" }, { - "authorized_access_point": "Marques de commerce" + "authorized_access_point": "Famille monoparentale" }, { - "authorized_access_point": "Obtentions v\u00e9g\u00e9tales (droit)" + "authorized_access_point": "Famille recompos\u00e9e" + }, + { + "authorized_access_point": "Famille rurale" + }, + { + "authorized_access_point": "Familles \u00e0 double carri\u00e8re" + }, + { + "authorized_access_point": "Familles choisies" + }, + { + "authorized_access_point": "Familles d'accueil" + }, + { + "authorized_access_point": "Familles immigr\u00e9es" + }, + { + "authorized_access_point": "Familles issues de maisons royales" + }, + { + "authorized_access_point": "Familles mixtes" + }, + { + "authorized_access_point": "Familles ouvri\u00e8res" + }, + { + "authorized_access_point": "Familles transnationales" + }, + { + "authorized_access_point": "Fr\u00e8res et soeurs" + }, + { + "authorized_access_point": "Gendres" + }, + { + "authorized_access_point": "Grands-parents" + }, + { + "authorized_access_point": "Grands-parents et enfants" + }, + { + "authorized_access_point": "Maisons royales" + }, + { + "authorized_access_point": "Oncles" + }, + { + "authorized_access_point": "Parents" + }, + { + "authorized_access_point": "Parents et enfants" + }, + { + "authorized_access_point": "Rang de naissance" + }, + { + "authorized_access_point": "Structure familiale" + }, + { + "authorized_access_point": "Tantes" + }, + { + "authorized_access_point": "Violence familiale" } ], "closeMatch": [ { "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85098655", - "source": "LCSH" - }, - "authorized_access_point": "Patents" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00005743", + "source": "LCSH" + } + ], + "authorized_access_point": "Family" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Famille" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh99005369", + "source": "LCSH" + } + ], + "authorized_access_point": "Family relationships" }, { "source": "RVMLaval", - "authorized_access_point": "Brevets d'invention" + "authorized_access_point": "Relations familiales" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/02750610X", + "value": "http://www.idref.fr/027258556", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb13318750q", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119339867", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11933986", "source": "BNF" } ], "classification": [ { - "name": "Droit", + "name": "Sciences sociales", "type": "bf:ClassificationDdc", - "classificationPortion": "340" + "classificationPortion": "300" } ], "variant_access_point": [ - "Brevets (droit commercial)", - "Certificats d'addition", - "Certificats d'utilit\u00e9", - "D\u00e9livrance de brevet", - "D\u00e9p\u00f4t de brevet", - "Mod\u00e8les d'utilit\u00e9" - ], - "authorized_access_point": "Brevets d'invention" - }, - { - "md5": "b6a2bec14f8bd1a4226a1f818d649e05", - "pid": "027510387", - "note": [ - { - "label": [ - "Dict. de la pr\u00e9histoire / Encycl. universalis, 1999 (art. : Europe n\u00e9olithique et protohistorique (art) ; Europe pal\u00e9olithique (s\u00e9pultures))", - "Dict. de la pr\u00e9histoire / A. Leroi-Gourhan, 1994 : objets de parure", - "La pr\u00e9histoire / D. Vialou, 2004 : parure" - ], - "noteType": "dataSource" - } - ], + "Cellule familiale", + "Et la famille", + "Vie familiale", + "Et les relations familiales", + "Famille - Aspect social", + "Famille - Conditions sociales", + "Famille nucl\u00e9aire", + "Liens familiaux", + "Milieu familial", + "Parents (membres d'une famille)", + "Relations familiales" + ], + "authorized_access_point": "Famille" + }, + { + "md5": "d5ff025fdd0855b4c5a2a33e6fc43982", + "pid": "027266273", "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Antiquit\u00e9s pr\u00e9historiques" - }, - { - "authorized_access_point": "Art pr\u00e9historique" + "authorized_access_point": "Femmes" }, { - "authorized_access_point": "Bijoux" + "authorized_access_point": "Travailleurs du sexe" } ], "related": [ { - "authorized_access_point": "Orf\u00e8vrerie pr\u00e9historique" + "authorized_access_point": "Enfants de prostitu\u00e9es" + }, + { + "authorized_access_point": "Ex-prostitu\u00e9es" + }, + { + "authorized_access_point": "Prostitution" + }, + { + "authorized_access_point": "Prox\u00e9n\u00e8tes" } ], "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Bracelets pr\u00e9historiques" + "authorized_access_point": "Courtisanes" + }, + { + "authorized_access_point": "Enfants prostitu\u00e9s" + }, + { + "authorized_access_point": "Escorts" }, { - "authorized_access_point": "Fibules" + "authorized_access_point": "Femmes de r\u00e9confort" }, { - "authorized_access_point": "Torques" + "authorized_access_point": "Pastorale des prostitu\u00e9es" } ], "closeMatch": [ { "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85070226", - "source": "LCSH" - }, - "authorized_access_point": "Jewelry, Prehistoric" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85107622", + "source": "LCSH" + } + ], + "authorized_access_point": "Prostitutes" }, { "source": "RVMLaval", - "authorized_access_point": "Bijoux pr\u00e9historiques" + "authorized_access_point": "Prostitu\u00e9es" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027510387", + "value": "http://www.idref.fr/027266273", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119534539", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119345495", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11934549", "source": "BNF" } ], "classification": [ { - "name": "Dessin, arts d\u00e9coratifs, artisanat d'art", "type": "bf:ClassificationDdc", - "classificationPortion": "740" + "classificationPortion": "305" }, { - "name": "Pr\u00e9histoire et histoire ancienne", + "name": "Probl\u00e8mes et services sociaux", "type": "bf:ClassificationDdc", - "classificationPortion": "930" + "classificationPortion": "360" } ], "variant_access_point": [ - "Bijoux - Pr\u00e9histoire", - "Bijoux de la pr\u00e9histoire", - "Parures pr\u00e9historiques", - "Pendeloques pr\u00e9historiques" + "Femmes prostitu\u00e9es", + "Prostitu\u00e9es f\u00e9minines", + "Prostitu\u00e9s f\u00e9minins", + "Prostitution f\u00e9minine" ], - "authorized_access_point": "Bijoux pr\u00e9historiques" + "authorized_access_point": "Prostitu\u00e9es" }, { - "md5": "2c8e61ff74e0200b11c2a97449bb2a93", - "pid": "027599701", + "md5": "9c313c0bc5fd11fa017f909419d47d44", + "pid": "027268284", "note": [ { "label": [ - "Grand Larousse universel", - "Grand Robert de la langue fran\u00e7aise, 2001", - "Dict. encylop\u00e9dique des sciences de l'information et de la communication / B. Lamizet, A. Silem, 1997 (art. : Radio)" + "Dict. des religions / P. Poupard, 1984" ], "noteType": "dataSource" }, { "label": [ - "Diffusion au moyen d'ondes radio\u00e9lectriques, d'\u00e9missions de radio ou de t\u00e9l\u00e9vision destin\u00e9es au public", - "S'emploie \u00e9galement en subdivision" + "S'emploie \u00e9galement en subdivision. Cette subdivision s'applique aux sujets religieux" ], "noteType": "general" } @@ -2082,460 +2212,452 @@ "type": "bf:Topic", "broader": [ { - "authorized_access_point": "M\u00e9dias audiovisuels" - }, - { - "authorized_access_point": "T\u00e9l\u00e9communications" + "authorized_access_point": "Religions" } ], "related": [ { - "authorized_access_point": "Femmes dans l'industrie de la radiodiffusion" - }, - { - "authorized_access_point": "Journalisme radiophonique" + "authorized_access_point": "Brahmanisme" }, { - "authorized_access_point": "Politique de la radiodiffusion" + "authorized_access_point": "Hindouisme" }, { - "authorized_access_point": "Radiodiffusion des d\u00e9bats" + "authorized_access_point": "Veda et sciences" } ], "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Publicit\u00e9 radiophonique" - }, - { - "authorized_access_point": "Radio" - }, - { - "authorized_access_point": "Radio - \u00c9metteurs et transmission" - }, - { - "authorized_access_point": "Radio num\u00e9rique" + "authorized_access_point": "V\u00e9disme - Rites et c\u00e9r\u00e9monies" }, { - "authorized_access_point": "Radiodiffusion en modulation de fr\u00e9quence" + "authorized_access_point": "Cosmogonie v\u00e9dique" }, { - "authorized_access_point": "Radiodiffusion en ondes d\u00e9cam\u00e9triques" + "authorized_access_point": "Apsar\u0101" }, { - "authorized_access_point": "Radiodiffusion internationale" + "authorized_access_point": "Asura" }, { - "authorized_access_point": "Radiofr\u00e9quences" + "authorized_access_point": "Dieux v\u00e9diques" }, { - "authorized_access_point": "T\u00e9l\u00e9vision" - } - ], - "closeMatch": [ - { - "source": "RVMLaval", - "authorized_access_point": "Radiodiffusion" + "authorized_access_point": "Morale v\u00e9dique" }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85110448", - "source": "LCSH" - }, - "authorized_access_point": "Radio broadcasting" + "authorized_access_point": "Symbolisme v\u00e9dique" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027599701", + "value": "http://www.idref.fr/027268284", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119604993", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11934684z", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11934684", "source": "BNF" } ], "classification": [ { - "name": "Sciences de l'information", - "type": "bf:ClassificationDdc", - "classificationPortion": "020" - }, - { - "name": "Economie", - "type": "bf:ClassificationDdc", - "classificationPortion": "330" - }, - { - "name": "Audiovisuel", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", "type": "bf:ClassificationDdc", - "classificationPortion": "791" + "classificationPortion": "200" } ], "variant_access_point": [ - "Dans l'industrie de la radiodiffusion", - "Diffusion radiophonique", - "Industrie de la radiodiffusion", - "Radio-diffusion", - "Radiocommunication \u00e0 usage public", - "Radiocommunications \u00e0 usage public", - "Radiodiffusion - Industrie et commerce", - "Radiophonie", - "R\u00e9seaux de radiodiffusion" + "Hindouisme ancien", + "Religion v\u00e9dique" ], - "authorized_access_point": "Radiodiffusion" + "authorized_access_point": "V\u00e9disme" }, { - "md5": "6e13625f1698d806350b3a56545c78f8", - "pid": "027652254", + "md5": "f12f3c09390c62798694773b3ff03dac", + "pid": "027274144", "note": [ { "label": [ - "Grand Robert de la langue fran\u00e7aise, 2001", - "Tr\u00e9sor de la langue fran\u00e7aise" + "GLU", + "Encomiendas (se subd. g\u00e9ogr.) ; Laval RVM (en ligne), 2003-07-02" ], "noteType": "dataSource" + }, + { + "label": [ + "Institution de l'Am\u00e9rique coloniale espagnole par laquelle un conquistador recevait autorit\u00e9 sur un groupe d'autochtones dont il pouvait utiliser le travail, \u00e0 condition de les christianiser et les int\u00e9grer \u00e0 l'ordre espagnol. - L'encomienda a \u00e9t\u00e9 pratiqu\u00e9e \u00e9galement en Espagne reconquise sur les musulmans et aux Philippines" + ], + "noteType": "general" } ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Patronnage (couture)" + "authorized_access_point": "Colonies espagnoles" + }, + { + "authorized_access_point": "Travail forc\u00e9" } ], "related": [ { - "authorized_access_point": "V\u00eatements - Coupe" + "authorized_access_point": "Travailleurs autochtones" } ], - "bnf_type": "genre/forme Rameau", + "bnf_type": "sujet Rameau", "closeMatch": [ { "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85039519", - "source": "LCSH" - }, - "authorized_access_point": "Dressmaking--Patterns" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85042989", + "source": "LCSH" + } + ], + "authorized_access_point": "Encomiendas (Latin America)" }, { "source": "RVMLaval", - "authorized_access_point": "Couture (Profession) -- Mod\u00e8les" + "authorized_access_point": "Encomiendas" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027652254", + "value": "http://www.idref.fr/027274144", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119648697", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11935180f", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11935180", "source": "BNF" } ], "classification": [ { - "name": "Sciences appliqu\u00e9es", + "name": "Droit", "type": "bf:ClassificationDdc", - "classificationPortion": "600" + "classificationPortion": "340" }, { - "name": "Economie domestique, h\u00f4tellerie", + "name": "Histoire du reste du monde", "type": "bf:ClassificationDdc", - "classificationPortion": "640" + "classificationPortion": "950" } ], "variant_access_point": [ - "Patrons de couture", - "Patrons de v\u00eatements" + "Encomienda", + "Repartimiento", + "Repartimientos" ], - "authorized_access_point": "Patrons (couture)" + "authorized_access_point": "Encomiendas" }, { - "md5": "edc45e3c869b725286942327e2428f86", - "pid": "027661504", + "md5": "89b5aba3511ec9b81e43f31312c8bd1f", + "pid": "027275639", "note": [ { "label": [ - "Les notions philosophiques / S. Auroux, 1990", - "Encycl. de la philosophie, 2002", - "Grand dict. de la philosophie / M. Blay, 2003", - "Dict. de philosophie / C. Godin, 2004" + "Sous cette vedette, on trouve les recueils de litt\u00e9rature belge francophone de divers genres" ], - "noteType": "dataSource" + "noteType": "general" } ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Philosophie de l'homme" + "authorized_access_point": "Litt\u00e9rature belge" }, { - "authorized_access_point": "Philosophie de la nature" + "authorized_access_point": "Litt\u00e9rature francophone" } ], "related": [ { - "authorized_access_point": "\u00c2me" + "authorized_access_point": "\u00c9crivains belges de langue fran\u00e7aise" + }, + { + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Belge de langue fran\u00e7aise et fran\u00e7aise" + }, + { + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Belge de langue fran\u00e7aise et italienne" + } + ], + "bnf_type": "genre/forme Rameau", + "narrower": [ + { + "authorized_access_point": "Autobiographie belge de langue fran\u00e7aise" }, { - "authorized_access_point": "Corps" + "authorized_access_point": "Biographie belge de langue fran\u00e7aise" }, { - "authorized_access_point": "Corps humain" + "authorized_access_point": "Contes belges de langue fran\u00e7aise" }, { - "authorized_access_point": "D\u00e9sir (philosophie)" + "authorized_access_point": "Essai (genre litt\u00e9raire) belge de langue fran\u00e7aise" }, { - "authorized_access_point": "Esprit et corps" - } - ], - "bnf_type": "sujet Rameau", - "narrower": [ + "authorized_access_point": "Litt\u00e9rature belge de langue fran\u00e7aise - 1830-1900" + }, + { + "authorized_access_point": "Litt\u00e9rature belge de langue fran\u00e7aise pour la jeunesse" + }, + { + "authorized_access_point": "Litt\u00e9rature didactique belge de langue fran\u00e7aise" + }, + { + "authorized_access_point": "Litt\u00e9rature \u00e9pistolaire belge de langue fran\u00e7aise" + }, + { + "authorized_access_point": "Litt\u00e9rature \u00e9rotique belge de langue fran\u00e7aise" + }, + { + "authorized_access_point": "Litt\u00e9rature exp\u00e9rimentale belge de langue fran\u00e7aise" + }, + { + "authorized_access_point": "Litt\u00e9rature fantastique belge de langue fran\u00e7aise" + }, + { + "authorized_access_point": "Nouvelles belges de langue fran\u00e7aise" + }, + { + "authorized_access_point": "Po\u00e9sie belge de langue fran\u00e7aise" + }, + { + "authorized_access_point": "Roman belge de langue fran\u00e7aise" + }, + { + "authorized_access_point": "Satire belge de langue fran\u00e7aise" + }, { - "authorized_access_point": "Chair (philosophie)" + "authorized_access_point": "Th\u00e9\u00e2tre (genre litt\u00e9raire) belge de langue fran\u00e7aise" } ], "closeMatch": [ { "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85015235", - "source": "LCSH" - }, - "authorized_access_point": "Human body (Philosophy)" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85051872", + "source": "LCSH" + } + ], + "authorized_access_point": "Belgian literature (French)" }, { "source": "RVMLaval", - "authorized_access_point": "Corps humain (Philosophie)" + "authorized_access_point": "Litt\u00e9rature belge (fran\u00e7aise)" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027661504", + "value": "http://www.idref.fr/027275639", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11965587k", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119352994", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11935299", "source": "BNF" } ], "classification": [ { - "name": "Philosophie", + "name": "Histoire et critique litt\u00e9raires", "type": "bf:ClassificationDdc", - "classificationPortion": "100" + "classificationPortion": "800" } ], "variant_access_point": [ - "Corps - Philosophie", - "Corps humain - Philosophie", - "Corps humain (philosophie)" + "Litt\u00e9rature francophone belge" ], - "authorized_access_point": "Corps (philosophie)" + "authorized_access_point": "Litt\u00e9rature belge de langue fran\u00e7aise" }, { - "md5": "47bcc613c99f4492a0b818ddb15e7007", - "pid": "027675823", - "note": [ + "md5": "4c37d4a5137e0d363ace919267cdac9a", + "pid": "027276457", + "type": "bf:Topic", + "broader": [ { - "label": [ - "Grand Larousse universel", - "Les langues du monde / M. Sala, I. Vintila-Radulescu, 1984", - "L'aventure des langues en Occident / H. Walter, 1994", - "L'am\u00e9nagement linguistique dans le monde : luxembourgeois ; francique luxembourgeois - http://www.tlfq.ulaval.ca (2009-01-08)", - "Redde-n-ihr Pl\u00e0tt? : francique luxembourgeois - http://projetbabel.org (2009-01-08)", - "Ethnologue (15th ed.) - http://www.ethnologue.com (2006-09-12)" - ], - "noteType": "dataSource" + "authorized_access_point": "Litt\u00e9rature australienne" }, { - "label": [ - "Dialecte allemand parl\u00e9 dans le grand-duch\u00e9 de Luxembourg. Il s'est d\u00e9velopp\u00e9 \u00e0 partir du francique mosellan" - ], - "noteType": "general" + "authorized_access_point": "Roman anglophone" } ], - "type": "bf:Topic", - "broader": [ + "related": [ { - "authorized_access_point": "Dialectes franciques" + "authorized_access_point": "Romanciers australiens" } ], - "related": [ + "bnf_type": "genre/forme Rameau", + "narrower": [ + { + "authorized_access_point": "Roman autobiographique australien" + }, + { + "authorized_access_point": "Roman d'amour australien" + }, + { + "authorized_access_point": "Roman d'aventures australien" + }, + { + "authorized_access_point": "Roman de science-fiction australien" + }, + { + "authorized_access_point": "Roman familial australien" + }, { - "authorized_access_point": "Dictionnaires luxembourgeois" + "authorized_access_point": "Roman gothique australien" }, { - "authorized_access_point": "Francique mosellan (dialecte)" + "authorized_access_point": "Roman historique australien" }, { - "authorized_access_point": "Chansons luxambourgeoises" + "authorized_access_point": "Roman policier australien" }, { - "authorized_access_point": "Litt\u00e9rature luxembourgeoise" + "authorized_access_point": "Thriller (roman) australien" } ], - "bnf_type": "sujet Rameau", "closeMatch": [ { "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh2003005414", - "source": "LCSH" - }, - "authorized_access_point": "Luxembourgish language" - }, - { - "source": "RVMLaval", - "authorized_access_point": "Luxembourgeois (langue)" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85009635", + "source": "LCSH" + } + ], + "authorized_access_point": "Australian fiction" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027675823", + "value": "http://www.idref.fr/027276457", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119667950", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12647669m", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12647669", "source": "BNF" } ], "classification": [ { - "name": "Langues et linguistique", + "name": "Histoire et critique litt\u00e9raires", "type": "bf:ClassificationDdc", - "classificationPortion": "400" + "classificationPortion": "800" } ], - "variant_access_point": [ - "Allemand (langue) - Dialectes - Luxembourg", - "Francique luxembourgeois (langue)", - "Letzburgisch (langue)", - "L\u00ebtzebuergesch (langue)", - "Luxemburgisch (langue)" - ], - "authorized_access_point": "Luxembourgeois (langue)" + "authorized_access_point": "Roman australien" }, { - "md5": "e1e888afbb27bd73c4f6198f5c0158d2", - "pid": "027688739", + "md5": "9be1710085daf488e6a2197721c7742d", + "pid": "02727991X", "note": [ { "label": [ - "S'emploie \u00e9galement en subdivision" + "Grand Larousse universel" ], - "noteType": "general" - } - ], - "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Commerce ext\u00e9rieur - Droit" - }, - { - "authorized_access_point": "Concurrence internationale" - }, - { - "authorized_access_point": "Politique commerciale" - }, - { - "authorized_access_point": "Trait\u00e9s" - } - ], - "related": [ - { - "authorized_access_point": "Commerce" + "noteType": "dataSource" }, { - "authorized_access_point": "R\u00e9ciprocit\u00e9 (droit)" + "label": [ + "30 janvier 1933 : A. Hitler acc\u00e8de au pouvoir. 2 septembre 1945 : fin de la seconde guerre mondiale" + ], + "noteType": "general" } ], + "type": "bf:Topic", "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Accords commerciaux pr\u00e9f\u00e9rentiels" - }, - { - "authorized_access_point": "Accords internationaux sur les licences" - }, - { - "authorized_access_point": "Clause de la nation la plus favoris\u00e9e" - }, - { - "authorized_access_point": "Traitement national (droit international)" - } - ], - "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh99001405", - "source": "LCSH" - }, - "authorized_access_point": "Commercial treaties" + "authorized_access_point": "Amsterdam-Pleyel, Mouvement" }, { - "source": "RVMLaval", - "authorized_access_point": "Accords commerciaux" + "authorized_access_point": "Guerre mondiale (1939-1945) - Histoire diplomatique" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027688739", + "value": "http://www.idref.fr/02727991X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119677659", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11935652k", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11935652", "source": "BNF" } ], "classification": [ { - "name": "Economie", + "name": "Science politique", "type": "bf:ClassificationDdc", - "classificationPortion": "330" + "classificationPortion": "320" }, { - "name": "Droit", + "name": "Histoire", "type": "bf:ClassificationDdc", - "classificationPortion": "340" + "classificationPortion": "900" } ], "variant_access_point": [ - "Accords \u00e9conomiques", - "Accords tarifaires", - "Commerce ext\u00e9rieur - Accords", - "Conventions commerciales", - "Trait\u00e9s commerciaux", - "Trait\u00e9s de commerce" + "Politique mondiale - 1933-1945" ], - "authorized_access_point": "Accords commerciaux" + "authorized_access_point": "Relations internationales - 1933-1945" }, { - "md5": "616e32f9ccaf4a0d42c287bb0463738e", - "pid": "027699870", + "md5": "8278015a48cd6e19f50bb7dfabb2098b", + "pid": "02728607X", "note": [ { "label": [ - "Sous cette vedette, on trouve les recueils de litt\u00e9rature aram\u00e9enne de divers genres" + "Grand Larousse illustr\u00e9", + "Petit Larousse illustr\u00e9 2010", + "Dict. des religions / P. Poupard, 1984 (art. : Shiva, shiva\u00efsme)", + "Encycl. des religions / F. Lenoir, Y. T. Masquelier, 1997", + "Dict. de la sagesse orientale, 1989 (art. : Shava\u00efsme)" + ], + "noteType": "dataSource" + }, + { + "label": [ + "S'emploie \u00e9galement en subdivision. Cette subdivision s'applique aux sujets religieux" ], "noteType": "general" } @@ -2543,243 +2665,312 @@ "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Litt\u00e9rature s\u00e9mitique" + "authorized_access_point": "Hindouisme" + }, + { + "authorized_access_point": "Sectes hindoues" } ], "related": [ { - "authorized_access_point": "Aram\u00e9en (langue)" + "authorized_access_point": "Shiva\u00eftes" }, { - "authorized_access_point": "Philologie aram\u00e9enne" + "authorized_access_point": "Hymnes shiva\u00eftes" } ], - "bnf_type": "genre/forme Rameau", + "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Litt\u00e9rature populaire aram\u00e9enne" + "authorized_access_point": "Li\u1e45ga (hindouisme)" + }, + { + "authorized_access_point": "Aghor\u012b" + }, + { + "authorized_access_point": "K\u0101p\u0101lika" + }, + { + "authorized_access_point": "Li\u1e45g\u0101yat" + }, + { + "authorized_access_point": "\u015aaiva Siddh\u0101nta" + }, + { + "authorized_access_point": "\u015aaktisme" }, { - "authorized_access_point": "Litt\u00e9rature syriaque" + "authorized_access_point": "Shivar\u0101tri" }, { - "authorized_access_point": "Po\u00e9sie aram\u00e9enne" + "authorized_access_point": "Shiva\u00efsme du Cachemire" } ], "closeMatch": [ { "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85006406", - "source": "LCSH" - }, - "authorized_access_point": "Aramaic literature" - }, - { - "source": "RVMLaval", - "authorized_access_point": "Litt\u00e9rature aram\u00e9enne" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85123051", + "source": "LCSH" + } + ], + "authorized_access_point": "?aivism" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027699870", + "value": "http://www.idref.fr/02728607X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11968617d", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11936126w", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11936126", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "200" } ], - "authorized_access_point": "Litt\u00e9rature aram\u00e9enne" + "variant_access_point": [ + "\u00c7iva\u00efsme", + "Shava\u00efsme", + "Siva\u00efsme" + ], + "authorized_access_point": "Shiva\u00efsme" }, { - "md5": "bbd11b5f4fb23abfec48cd81c8b9598c", - "pid": "02770940X", - "note": [ - { - "label": [ - "Grand Larousse universel", - "Nouveau petit Robert 2008" - ], - "noteType": "dataSource" - } - ], + "md5": "a6851a1692e9e3a40e52ee0e2c62bc57", + "pid": "027292916", "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Bijoux" + "authorized_access_point": "D\u00e9sarmement" } ], "related": [ { - "authorized_access_point": "Montres-bracelets" + "authorized_access_point": "Armes nucl\u00e9aires" + }, + { + "authorized_access_point": "Course aux armements" + }, + { + "authorized_access_point": "Non-prolif\u00e9ration nucl\u00e9aire" } ], "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Bracelets br\u00e9siliens" + "authorized_access_point": "Mouvement antinucl\u00e9aire" }, { - "authorized_access_point": "Bracelets pr\u00e9historiques" - } - ], - "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85016233", - "source": "LCSH" - }, - "authorized_access_point": "Bracelets" + "authorized_access_point": "Plan Rapacki" }, { - "source": "RVMLaval", - "authorized_access_point": "Bracelets" + "authorized_access_point": "Zones exemptes d'armes nucl\u00e9aires" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/02770940X", + "value": "http://www.idref.fr/027292916", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11969386n", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119366713", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Dessin, arts d\u00e9coratifs, artisanat d'art", - "type": "bf:ClassificationDdc", - "classificationPortion": "740" + "type": "bf:Nbn", + "value": "FRBNF11936671", + "source": "BNF" } ], - "authorized_access_point": "Bracelets (bijoux)" + "variant_access_point": [ + "Armes nucl\u00e9aires - Prolif\u00e9ration", + "Armes nucl\u00e9aires et d\u00e9sarmement", + "Bombe atomique et d\u00e9sarmement", + "D\u00e9nucl\u00e9arisation", + "Prolif\u00e9ration des armes nucl\u00e9aires" + ], + "authorized_access_point": "D\u00e9sarmement nucl\u00e9aire" }, { - "md5": "28eb1ee05b8e00d06f2d9cf3f851ed01", - "pid": "027741060", - "note": [ - { - "label": [ - "Lexique de politique Dalloz, 1992", - "Lexique des termes juridiques Dalloz 2015-2016 / S. Guinchard, T. Debard, 2015 (art. : D\u00e9l\u00e9gation de pouvoir) : d\u00e9l\u00e9gation de pouvoir (droit administratif)" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Acte par lequel un organe transf\u00e8re une partie de ses comp\u00e9tences \u00e0 un autre organe" - ], - "noteType": "general" - } - ], + "md5": "c72763f14f046fdca3b2df8cf26e2e11", + "pid": "027302148", "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Droit administratif" - }, - { - "authorized_access_point": "Droit constitutionnel" - }, - { - "authorized_access_point": "Science politique" + "authorized_access_point": "Questions d'examens" } ], "related": [ { - "authorized_access_point": "Missi dominici" - }, - { - "authorized_access_point": "S\u00e9paration des pouvoirs" + "authorized_access_point": "Internat (m\u00e9decine)" } ], "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "D\u00e9l\u00e9gation l\u00e9gislative" - }, - { - "authorized_access_point": "Pouvoirs exceptionnels" - } - ], - "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85036563", - "source": "LCSH" - }, - "authorized_access_point": "Delegation of powers" - }, - { - "source": "RVMLaval", - "authorized_access_point": "D\u00e9l\u00e9gation des pouvoirs (Droit administratif)" + "authorized_access_point": "Tests de concordance de script" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027741060", + "value": "http://www.idref.fr/027302148", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb133189868", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11937378x", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11937378", "source": "BNF" } ], "classification": [ { - "name": "Sciences politiques", + "name": "Education et enseignement", "type": "bf:ClassificationDdc", - "classificationPortion": "320" + "classificationPortion": "370" }, { - "name": "Droit", + "name": "Sciences m\u00e9dicales et param\u00e9dicales", "type": "bf:ClassificationDdc", - "classificationPortion": "340" + "classificationPortion": "610" + } + ], + "variant_access_point": [ + "Concours de l'internat", + "Concours de l'internat de m\u00e9decine", + "ECN", + "ECNi", + "EDN", + "\u00c9preuves Classantes Nationales", + "\u00c9preuves Classantes Nationales informatis\u00e9es", + "Examen Classant National", + "Examen Classant National Obligatoire", + "iECN", + "Internat (m\u00e9decine) - Concours", + "Internat (m\u00e9decine) - Examens -- Questions", + "Internat (m\u00e9decine) - Examens, questions etc", + "Internat (m\u00e9decine) - Questions d'examens", + "Questions d'internat" + ], + "authorized_access_point": "\u00c9preuves d\u00e9mat\u00e9rialis\u00e9es nationales" + }, + { + "md5": "c151d9584e3037869db339c8b1fb387b", + "pid": "027307565", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Litt\u00e9rature canadienne de langue fran\u00e7aise" + }, + { + "authorized_access_point": "Th\u00e9\u00e2tre (genre litt\u00e9raire) canadien" + }, + { + "authorized_access_point": "Th\u00e9\u00e2tre (genre litt\u00e9raire) francophone" + } + ], + "related": [ + { + "authorized_access_point": "Auteurs dramatiques canadiens de langue fran\u00e7aise" + } + ], + "bnf_type": "genre/forme Rameau", + "narrower": [ + { + "authorized_access_point": "Th\u00e9\u00e2tre canadien de langue fran\u00e7aise pour la jeunesse" + }, + { + "authorized_access_point": "Th\u00e9\u00e2tre documentaire canadien de langue fran\u00e7aise" + }, + { + "authorized_access_point": "Th\u00e9\u00e2tre politique canadien de langue fran\u00e7aise" + }, + { + "authorized_access_point": "Th\u00e9\u00e2tre radiophonique canadien de langue fran\u00e7aise" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85051768", + "source": "LCSH" + } + ], + "authorized_access_point": "French-Canadian drama" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027307565", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11937806f", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11937806", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Histoire et critique litt\u00e9raires", + "type": "bf:ClassificationDdc", + "classificationPortion": "800" } ], "variant_access_point": [ - "D\u00e9l\u00e9gation (science politique)", - "D\u00e9l\u00e9gation de comp\u00e9tence (science politique)", - "D\u00e9l\u00e9gation des pouvoirs (droit administratif)", - "D\u00e9l\u00e9gations de pouvoir administratif", - "D\u00e9l\u00e9gations de signature" + "Th\u00e9\u00e2tre (genre litt\u00e9raire) francophone canadien", + "Th\u00e9\u00e2tre (genre litt\u00e9raire) qu\u00e9b\u00e9cois", + "Th\u00e9\u00e2tre canadien de langue fran\u00e7aise" ], - "authorized_access_point": "D\u00e9l\u00e9gation des pouvoirs (science politique)" + "authorized_access_point": "Th\u00e9\u00e2tre (genre litt\u00e9raire) canadien de langue fran\u00e7aise" }, { - "md5": "6457a0bb137ac5f26cd7b7b05ea2939a", - "pid": "027741125", + "md5": "ed241013d147d9868fd0ba5da8ca245a", + "pid": "027308359", "note": [ { "label": [ - "Dict. des synonymes et mots de sens voisin / B. du Chazaud, 2003", - "Vocabulaire juridique / G. Cornu, 2007", - "Lexique des termes juridiques 2015-2016 / S. Guinchard, T. Debard, 2015", - "Petit dict. du droit canonique / J. Werckmeister, 1993 : D\u00e9position" + "Les notions philosophiques / S. Auroux, 1990", + "Vocabulaire technique et critique de la philosophie / A. Lalande, 1997", + "Encycl. de la philosophie, 2002", + "Dict. de philosophie / C. Godin, 2004" ], "noteType": "dataSource" }, { "label": [ + "Sous cette vedette, on trouve les documents sur la notion de v\u00e9rit\u00e9 du point de vue de la th\u00e9orie de la connaissance. Les documents sur la notion de v\u00e9rit\u00e9 du point de vue moral se trouvent sous V\u00e9rit\u00e9 et mensonge", "S'emploie \u00e9galement en subdivision" ], "noteType": "general" @@ -2788,171 +2979,212 @@ "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Hommes d'\u00c9tat" - }, - { - "authorized_access_point": "Hommes politiques - Responsabilit\u00e9 p\u00e9nale" + "authorized_access_point": "Th\u00e9orie de la connaissance" } ], "related": [ { - "authorized_access_point": "Crimes et d\u00e9lits politiques" + "authorized_access_point": "Certitude" + }, + { + "authorized_access_point": "Objectivit\u00e9" + }, + { + "authorized_access_point": "Preuve (philosophie)" + }, + { + "authorized_access_point": "Th\u00e9orie de la fiction" + }, + { + "authorized_access_point": "V\u00e9ridiction" + }, + { + "authorized_access_point": "V\u00e9rit\u00e9 et mensonge" + }, + { + "authorized_access_point": "Vraisemblance" + }, + { + "authorized_access_point": "Crit\u00e8re de v\u00e9rit\u00e9" + }, + { + "authorized_access_point": "Droit \u00e0 la v\u00e9rit\u00e9 (droit international)" + }, + { + "authorized_access_point": "Erreur" + }, + { + "authorized_access_point": "\u00c9vidence" + }, + { + "authorized_access_point": "Faillibilisme" + }, + { + "authorized_access_point": "Faux (philosophie)" + }, + { + "authorized_access_point": "Logique al\u00e9thique" }, { - "authorized_access_point": "Parlements (tribunaux)" + "authorized_access_point": "Logique \u00e9pist\u00e9mique" } ], "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "R\u00e9vocation populaire" + "authorized_access_point": "V\u00e9rit\u00e9 comme coh\u00e9rence" + }, + { + "authorized_access_point": "V\u00e9rit\u00e9 comme consensus" + }, + { + "authorized_access_point": "V\u00e9rit\u00e9 comme correspondance" } ], "closeMatch": [ { "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85064607", - "source": "LCSH" - }, - "authorized_access_point": "Impeachments" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85138279", + "source": "LCSH" + } + ], + "authorized_access_point": "Truth" }, { "source": "RVMLaval", - "authorized_access_point": "Destitution, Proc\u00e9dure de" + "authorized_access_point": "V\u00e9rit\u00e9" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027741125", + "value": "http://www.idref.fr/027308359", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119719121", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119378816", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11937881", "source": "BNF" } ], "classification": [ { - "name": "Sciences politiques", - "type": "bf:ClassificationDdc", - "classificationPortion": "320" - }, - { - "name": "Droit", + "name": "Philosophie", "type": "bf:ClassificationDdc", - "classificationPortion": "340" + "classificationPortion": "100" } ], "variant_access_point": [ - "Chefs d'\u00c9tat - Destitution", - "D\u00e9position (droit)", - "Destitution (droit constitutionnel)", - "Destitution, Proc\u00e9dure de", - "Hommes politiques - Destitution", - "Impeachment", - "Mise en accusation des chefs d'\u00c9tat", - "Proc\u00e9dure de destitution" + "Contribution au concept de v\u00e9rit\u00e9", + "V\u00e9rit\u00e9 (\u00e9pist\u00e9mologie)", + "V\u00e9rit\u00e9 (logique)", + "Vrai (philosophie)" ], - "authorized_access_point": "Destitution" + "authorized_access_point": "V\u00e9rit\u00e9" }, { - "md5": "320771ddc84efd97e99ddacbc4d1c197", - "pid": "027765369", + "md5": "d611a691a1854acac4412be4e67f8bae", + "pid": "027314073", "note": [ { "label": [ - "Wikip\u00e9dia - https://fr.wikipedia.org (2022-07-21)", - "A lexical atlas of the Hutsul dialects of the Ukrainian language, 1996", - "One Europe, many nations : an historical dict. of European national groups / J.-B. Minahan, 2000 (art. : Carpatho-Rusyns) : Hutsuls" + "Grand Larousse universel", + "Grand Robert de la langue fran\u00e7aise, 2001", + "Robert des sports : dict. de la langue des sports / G. Petiot, 1982 (art. : Record)" ], "noteType": "dataSource" }, { "label": [ - "Population montagnarde vivant essentiellement dans la cha\u00eene des Carpates ukrainiennes et dans les r\u00e9gions voisines de Ruth\u00e9nie subcarpathique et de Bucovine septentrionale" + "S'emploie \u00e9galement en subdivision" ], "noteType": "general" } ], "type": "bf:Topic", - "broader": [ + "related": [ { - "authorized_access_point": "Ruth\u00e8nes" + "authorized_access_point": "Performance (sports)" } ], - "related": [ + "bnf_type": "sujet Rameau", + "narrower": [ { - "authorized_access_point": "Trombita" + "authorized_access_point": "Jeux olympiques - Records" + }, + { + "authorized_access_point": "Records de vitesse" } ], - "bnf_type": "sujet Rameau", "closeMatch": [ { - "source": "RVMLaval", - "authorized_access_point": "Houtsoules" + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85126900", + "source": "LCSH" + } + ], + "authorized_access_point": "Sports records" }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85062771", - "source": "LCSH" - }, - "authorized_access_point": "Hutsuls" + "source": "RVMLaval", + "authorized_access_point": "Sports--Records" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027765369", + "value": "http://www.idref.fr/027314073", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119737855", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119383336", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11938333", "source": "BNF" } ], "classification": [ { - "name": "Ethnologie, anthropologie, folklore", + "name": "Jeux", "type": "bf:ClassificationDdc", - "classificationPortion": "390" + "classificationPortion": "793" } ], "variant_access_point": [ - "Goutsoules", - "Guculs", - "Gutsules", - "Gutsuls", - "Gutzuls", - "Hootzools", - "Houtzoules", - "Hucules", - "Huculs", - "Hutsules", - "Hutsuls", - "Hutzules", - "Hutzuls", - "Huzulen", - "Huzules", - "Huzuls" + "Records", + "Records (sports)", + "Records mondiaux", + "Sports - Records" ], - "authorized_access_point": "Houtsoules" + "authorized_access_point": "Records sportifs" }, { - "md5": "09a9aaccee376b61eda9a6d6bdc16363", - "pid": "027785084", + "md5": "3b275bbe6d86b7dd7f0a65e93bdd8ab3", + "pid": "027317145", "note": [ { "label": [ "Grand Larousse universel", - "Tr\u00e9sor de la langue fran\u00e7aise", - "Nouveau petit Robert 2009" + "Robert encyclop\u00e9dique des noms propres 2008", + "Encycl. universalis - http://www.universalis-edu.com (2017-06-29)", + "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1996", + "La guerre de Trente ans : 1618-1648 / H. Bogdan, 2006", + "La guerre de Trente ans / G. Livet, 1994" ], "noteType": "dataSource" } @@ -2960,2256 +3192,21565 @@ "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Expression" + "authorized_access_point": "Contre-R\u00e9forme" }, { - "authorized_access_point": "Parole" + "authorized_access_point": "Europe - 1517-1648" } ], "related": [ { - "authorized_access_point": "Culture vocale" + "authorized_access_point": "D\u00e9fenestration de Prague (1618)" }, { - "authorized_access_point": "Diction" + "authorized_access_point": "Guerre franco-espagnole (1635-1659)" }, { - "authorized_access_point": "Prononciation" + "authorized_access_point": "Sainte ligue allemande (1609)" }, { - "authorized_access_point": "Tableaux d'\u00e9locution" + "authorized_access_point": "Allemagne - 1618-1648" } ], "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Ventriloquie" + "authorized_access_point": "Guerre dano-su\u00e9doise (1643-1645)" + }, + { + "authorized_access_point": "Guerre de la Valteline (1620-1626)" + }, + { + "authorized_access_point": "Guerre de Trente Ans (1618-1648) - Op\u00e9rations militaires" } ], "closeMatch": [ { "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85042633", - "source": "LCSH" - }, - "authorized_access_point": "Elocution" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85134910", + "source": "LCSH" + } + ], + "authorized_access_point": "Thirty Years' War, 1618-1648" }, { "source": "RVMLaval", - "authorized_access_point": "\u00c9locution" + "authorized_access_point": "Guerre de Trente Ans, 1618-1648" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027785084", + "value": "http://www.idref.fr/027317145", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11975298m", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119385761", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11938576", "source": "BNF" } ], "classification": [ { + "name": "Histoire m\u00e9di\u00e9vale, moderne et contemporaine (sauf la France)", "type": "bf:ClassificationDdc", - "classificationPortion": "401" + "classificationPortion": "940" } ], "variant_access_point": [ - "Articulation (\u00e9locution)", - "D\u00e9bit (\u00e9locution)" + "Trente ans, Guerre de (1618-1648)" ], - "authorized_access_point": "\u00c9locution" + "authorized_access_point": "Guerre de Trente Ans (1618-1648)" }, { - "md5": "a6b4ae4c7dc1b32374309573a4a0a2b7", - "pid": "027793974", + "md5": "6c50eed41c0e33b309f36fa3a4fd1dcd", + "pid": "027323552", "note": [ { "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures allemandes", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature allemande, qui sert de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires allemands" + "Encycl. universalis - http://www.universalis-edu.com (2018-08-17)", + "Le juda\u00efsme et le christianisme antique : d'Antiochus \u00c9piphane \u00e0 Constantin / M. Simon, A. Beno\u00eet, 1998" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Sous cette vedette, on trouve les documents sur le mouvement de pens\u00e9e condamn\u00e9 comme h\u00e9r\u00e9sie par l'\u00c9glise dans l'Antiquit\u00e9. Les documents sur les doctrines \u00e9sot\u00e9riques proposant une voie vers le salut par la connaissance de certaines v\u00e9rit\u00e9s cach\u00e9es sur Dieu, le monde et l'homme se trouvent sous Gnose" ], "noteType": "general" } ], - "type": "bf:Temporal", - "related": [ + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Litt\u00e9rature allemande - 1050-1350 (moyen haut-allemand)" + "authorized_access_point": "H\u00e9r\u00e9sies chr\u00e9tiennes - 30-600 (\u00c9glise primitive)" } ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "related": [ { - "type": "uri", - "value": "http://www.idref.fr/027793974", - "source": "IDREF" + "authorized_access_point": "Christianisme - Relations - Gnosticisme" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119759945", - "source": "BNF" - } - ], - "classification": [ - { - "name": "Langues et linguistique", - "type": "bf:ClassificationDdc", - "classificationPortion": "400" + "authorized_access_point": "Encratisme" }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" - } - ], - "authorized_access_point": "1050-1350(moyen haut-allemand)" - }, - { - "md5": "f59538c5b5ed1bd32fcefb584c635c70", - "pid": "027794016", - "note": [ + "authorized_access_point": "Gnose" + }, { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures anglaises", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature anglaise, qui sert de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires anglais" - ], - "noteType": "general" - } - ], - "type": "bf:Temporal", - "related": [ + "authorized_access_point": "Gn\u014dstik\u00f3s (le mot grec)" + }, { - "authorized_access_point": "Anglais (langue) - +* 1100......- 1500......+:1100-1500: (moyen anglais)" + "authorized_access_point": "Interpr\u00e9tations gnostiques" }, { - "authorized_access_point": "Litt\u00e9rature anglaise - 1100-1500 (moyen anglais)" + "authorized_access_point": "N\u00e9oplatonisme" } ], "bnf_type": "sujet Rameau", - "identifiedBy": [ + "narrower": [ { - "type": "uri", - "value": "http://www.idref.fr/027794016", - "source": "IDREF" + "authorized_access_point": "\u00c9on (philosophie)" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11975996v", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Mand\u00e9isme" + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" - } - ], - "authorized_access_point": "1100-1500(moyen anglais)" - }, - { - "md5": "4c3f92fdb4c60044f15ccad2b451fe8a", - "pid": "027794687", - "note": [ + "authorized_access_point": "Manuscrits de Medinet Madi" + }, { - "label": [ - "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1996" - ], - "noteType": "dataSource" + "authorized_access_point": "Manuscrits de Nag Hammadi" }, { - "label": [ - "Laval RVM (en ligne), 2012-10-16." - ], - "noteType": "dataNotFound" + "authorized_access_point": "Naass\u00e9niens" }, { - "label": [ - "2 septembre 1945 : fin de la Seconde guerre mondiale", - "S'emploie uniquement en subdivision chronologique [sans subd. g\u00e9ogr.] \u00e0 tous sujets noms communs et noms propres, \u00e0 l'exception des personnes et des sujets pour lesquels il existe un d\u00e9coupage chronologique sp\u00e9cifique, par ex. : Canada -- 1914-1945" - ], - "noteType": "general" - } - ], - "type": "bf:Temporal", - "broader": [ + "authorized_access_point": "Ophites" + }, + { + "authorized_access_point": "Sagesse - Gnosticisme" + }, + { + "authorized_access_point": "S\u00e9thiens" + }, + { + "authorized_access_point": "Valentiniens" + }, { - "authorized_access_point": "20e si\u00e8cle" + "authorized_access_point": "Litt\u00e9rature gnostique" } ], - "related": [ + "closeMatch": [ { - "authorized_access_point": "1870-1914" + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85055466", + "source": "LCSH" + } + ], + "authorized_access_point": "Gnosticism" }, { - "authorized_access_point": "Histoire universelle - 1914-1945" + "source": "RVMLaval", + "authorized_access_point": "Gnosticisme" } ], - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027794687", + "value": "http://www.idref.fr/027323552", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11976044c", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11939057m", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11939057", "source": "BNF" } ], - "relation_pid": { - "type": "redirect_from", - "value": "028658531" - }, "classification": [ { - "name": "Histoire", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", "type": "bf:ClassificationDdc", - "classificationPortion": "900" + "classificationPortion": "200" + }, + { + "name": "Pr\u00e9histoire et histoire ancienne", + "type": "bf:ClassificationDdc", + "classificationPortion": "930" } ], "variant_access_point": [ - "1900-1945 (subdivision)" + "Gnostiques" ], - "authorized_access_point": "1900-1945" + "authorized_access_point": "Gnosticisme" }, { - "md5": "05a59d3956c22ff4cc21f6b8f4e0056e", - "pid": "027794903", + "md5": "6fc197d6b32eb7dfbb79e8d1a03f0c1c", + "pid": "027328589", "note": [ { "label": [ - "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1996" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Laval RVM (en ligne), 2012-10-16" + "Sous cette vedette, on trouve les documents sur l'esth\u00e9tique litt\u00e9raire en g\u00e9n\u00e9ral. Les documents sur l'esth\u00e9tique de la litt\u00e9rature d'une \u00e9poque particuli\u00e8re se trouvent sous des vedettes-mati\u00e8res du type : Litt\u00e9rature -- [Subdivision chronologique] -- Esth\u00e9tique, par ex. : Litt\u00e9rature -- 18e si\u00e8cle -- Esth\u00e9tique" ], - "noteType": "dataNotFound" + "noteType": "general" }, { "label": [ - "19 juillet 1870 : la France d\u00e9clare la guerre \u00e0 la Prusse ; 20 septembre 1870 : entr\u00e9e de l'arm\u00e9e italienne \u00e0 Rome. 28 juillet 1914 : d\u00e9but de la Premi\u00e8re guerre mondiale", - "S'emploie uniquement en subdivision chronologique [sans subd. g\u00e9ogr.] \u00e0 tous sujets noms communs et noms propres, \u00e0 l'exception des personnes et des sujets pour lesquels il existe un d\u00e9coupage chronologique sp\u00e9cifique, par ex. : Allemagne -- 1871-1918" + "Voir aussi aux diff\u00e9rents mouvements esth\u00e9tiques, par ex. : Surr\u00e9alisme (litt\u00e9rature)", + "Voir aussi la subdivision Esth\u00e9tique aux litt\u00e9ratures et aux personnes" ], - "noteType": "general" + "noteType": "seeReference" } ], - "type": "bf:Temporal", + "type": "bf:Topic", "broader": [ { - "authorized_access_point": "1800-...." + "authorized_access_point": "Esth\u00e9tique" } ], "related": [ { - "authorized_access_point": "19e si\u00e8cle" + "authorized_access_point": "Litt\u00e9rature - Philosophie" }, { - "authorized_access_point": "1900-1945" + "authorized_access_point": "Mouvements litt\u00e9raires" }, { - "authorized_access_point": "Histoire universelle - 1870-1914" + "authorized_access_point": "Th\u00e9orie litt\u00e9raire" }, { - "authorized_access_point": "Litt\u00e9rature fran\u00e7aise - 1870-1914" + "authorized_access_point": "Litt\u00e9rature" } ], "bnf_type": "sujet Rameau", - "identifiedBy": [ + "narrower": [ { - "type": "uri", - "value": "http://www.idref.fr/027794903", - "source": "IDREF" + "authorized_access_point": "All\u00e9gorie (litt\u00e9rature)" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119760629", - "source": "BNF" - } - ], - "relation_pid": { - "type": "redirect_from", - "value": "086114468" - }, - "classification": [ + "authorized_access_point": "Baroque litt\u00e9raire" + }, { - "name": "Histoire et g\u00e9ographie (g\u00e9n\u00e9ralit\u00e9s)", - "type": "bf:ClassificationDdc", - "classificationPortion": "900" - } - ], - "variant_access_point": [ - "1870-1914 (subdivision)" - ], - "authorized_access_point": "1870-1914" - }, - { - "md5": "470fa238803b41a0a61e324ac3ddaf63", - "pid": "027794954", - "note": [ + "authorized_access_point": "Biedermeier (litt\u00e9rature)" + }, { - "label": [ - "S'emploie uniquement en subdivision chronologique [sans subd. g\u00e9ogr.] \u00e0 la vedette Cin\u00e9ma et aux vedettes d\u00e9signant des genres cin\u00e9matographiques" - ], - "noteType": "general" + "authorized_access_point": "Burlesque (litt\u00e9rature)" + }, + { + "authorized_access_point": "Canons litt\u00e9raires" + }, + { + "authorized_access_point": "Carnavalesque" + }, + { + "authorized_access_point": "Classicisme (litt\u00e9rature)" + }, + { + "authorized_access_point": "Comique (litt\u00e9rature)" + }, + { + "authorized_access_point": "Cr\u00e9ation litt\u00e9raire" + }, + { + "authorized_access_point": "D\u00e9cadentisme" + }, + { + "authorized_access_point": "Description (litt\u00e9rature)" + }, + { + "authorized_access_point": "Dialogisme" + }, + { + "authorized_access_point": "\u00c9pique (esth\u00e9tique)" + }, + { + "authorized_access_point": "Fantastique (litt\u00e9rature)" + }, + { + "authorized_access_point": "Fragment (litt\u00e9rature)" + }, + { + "authorized_access_point": "Grotesque (litt\u00e9rature)" + }, + { + "authorized_access_point": "Herm\u00e9tisme (litt\u00e9rature)" + }, + { + "authorized_access_point": "Illusion (litt\u00e9rature)" + }, + { + "authorized_access_point": "Imitation (litt\u00e9rature)" + }, + { + "authorized_access_point": "Impressionnisme (litt\u00e9rature)" + }, + { + "authorized_access_point": "Intimisme" + }, + { + "authorized_access_point": "Lyrisme (litt\u00e9rature)" + }, + { + "authorized_access_point": "Mani\u00e9risme (litt\u00e9rature)" + }, + { + "authorized_access_point": "Merveilleux (litt\u00e9rature)" + }, + { + "authorized_access_point": "Minimalisme (litt\u00e9rature)" + }, + { + "authorized_access_point": "Modernisme (litt\u00e9rature)" + }, + { + "authorized_access_point": "N\u00e9o-classicisme (litt\u00e9rature)" + }, + { + "authorized_access_point": "N\u00e9o-r\u00e9alisme (litt\u00e9rature)" + }, + { + "authorized_access_point": "Neue Sachlichkeit (litt\u00e9rature)" + }, + { + "authorized_access_point": "Orientalisme (litt\u00e9rature)" + }, + { + "authorized_access_point": "Path\u00e9tique (litt\u00e9rature)" + }, + { + "authorized_access_point": "Po\u00e9sie - Esth\u00e9tique" + }, + { + "authorized_access_point": "Polyphonie (litt\u00e9rature)" + }, + { + "authorized_access_point": "Popliteratur" + }, + { + "authorized_access_point": "Postmodernisme et litt\u00e9rature" + }, + { + "authorized_access_point": "Primitivisme (litt\u00e9rature)" + }, + { + "authorized_access_point": "R\u00e9alisme magique (litt\u00e9rature)" + }, + { + "authorized_access_point": "R\u00e9alisme socialiste (litt\u00e9rature)" + }, + { + "authorized_access_point": "R\u00e9gionalisme (litt\u00e9rature)" + }, + { + "authorized_access_point": "Repr\u00e9sentation (litt\u00e9rature)" + }, + { + "authorized_access_point": "Rh\u00e9torique" + }, + { + "authorized_access_point": "Rococo (litt\u00e9rature)" + }, + { + "authorized_access_point": "Roman - Esth\u00e9tique" + }, + { + "authorized_access_point": "Romantisme (litt\u00e9rature)" + }, + { + "authorized_access_point": "Style litt\u00e9raire" + }, + { + "authorized_access_point": "Stylistique" + }, + { + "authorized_access_point": "Sublime (litt\u00e9rature)" + }, + { + "authorized_access_point": "Th\u00e9\u00e2tre (genre litt\u00e9raire) - Esth\u00e9tique" + }, + { + "authorized_access_point": "Tragi-comique (litt\u00e9rature)" + }, + { + "authorized_access_point": "Tragique (litt\u00e9rature)" + }, + { + "authorized_access_point": "Unanimisme (mouvement litt\u00e9raire)" + }, + { + "authorized_access_point": "Variations (litt\u00e9rature)" + }, + { + "authorized_access_point": "Vraisemblance (litt\u00e9rature)" + }, + { + "authorized_access_point": "Litt\u00e9rature exp\u00e9rimentale" } ], - "type": "bf:Temporal", - "related": [ + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Litt\u00e9rature -- Esth\u00e9tique" + }, { - "authorized_access_point": "Cin\u00e9ma - 1929-1945" + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85077509", + "source": "LCSH" + } + ], + "authorized_access_point": "Literature--Aesthetics" } ], - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027794954", + "value": "http://www.idref.fr/027328589", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11976066p", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11939457q", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11939457", "source": "BNF" } ], "classification": [ { - "name": "Audiovisuel", + "name": "Philosophie", "type": "bf:ClassificationDdc", - "classificationPortion": "791" + "classificationPortion": "100" + }, + { + "name": "Po\u00e9sie", + "type": "bf:ClassificationDdc", + "classificationPortion": "801" } ], - "authorized_access_point": "1929-1945" + "variant_access_point": [ + "Doctrines litt\u00e9raires", + "Esth\u00e9tique litt\u00e9raire" + ], + "authorized_access_point": "Litt\u00e9rature - Esth\u00e9tique" }, { - "md5": "7fbcbe811a57ee625f0d3e95fcc0e34d", - "pid": "027794962", - "note": [ + "md5": "68d2e8abf8807c92d2bd99cb98bfe5dd", + "pid": "027330176", + "type": "bf:Topic", + "broader": [ { - "label": [ - "S'emploie uniquement en subdivision chronologique [sans subd. g\u00e9ogr.] \u00e0 la vedette Cin\u00e9ma et aux vedettes d\u00e9signant des genres cin\u00e9matographiques" - ], - "noteType": "general" + "authorized_access_point": "Langages de programmation" } ], - "type": "bf:Temporal", - "related": [ + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Access Basic (langage de programmation)" + }, + { + "authorized_access_point": "BASICA (langage de programmation)" + }, + { + "authorized_access_point": "PICK/BASIC (langage de programmation)" + }, + { + "authorized_access_point": "STOS Basic (langage de programmation)" + }, + { + "authorized_access_point": "Omikron Basic (langage de programmation)" + }, + { + "authorized_access_point": "MSX-Basic (langage de programmation)" + }, + { + "authorized_access_point": "GW-BASIC (langage de programmation)" + }, { - "authorized_access_point": "Cin\u00e9ma - 1945-1960" + "authorized_access_point": "GFA BASIC (langage de programmation)" + }, + { + "authorized_access_point": "BASIC-PLUS (langage de programmation)" + }, + { + "authorized_access_point": "AmigaBASIC (langage de programmation)" + }, + { + "authorized_access_point": "AppleSoft BASIC (langage de programmation)" + }, + { + "authorized_access_point": "Microsoft Visual BASIC (langage de programmation)" } ], - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027794962", + "value": "http://www.idref.fr/027330176", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119760671", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11939574k", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11939574", "source": "BNF" } ], "classification": [ { - "name": "Audiovisuel", + "name": "Physique appliqu\u00e9e", "type": "bf:ClassificationDdc", - "classificationPortion": "791" + "classificationPortion": "621" } ], - "authorized_access_point": "1945-1960" + "variant_access_point": [ + "Beginner's All-Purpose Symbolic Instruction Code (langage de programmation)" + ], + "authorized_access_point": "BASIC (langage de programmation)" }, { - "md5": "85718db3c11c62080dfa28e992460878", - "pid": "027794970", + "md5": "e181f1abb2ac66b952f4b3f5ba292239", + "pid": "027333930", "note": [ { "label": [ - "S'emploie uniquement en subdivision chronologique [sans subd. g\u00e9ogr.] \u00e0 la vedette Cin\u00e9ma et aux vedettes d\u00e9signant des genres cin\u00e9matographiques" + "Voir aussi aux applications, langages de programmation, syst\u00e8mes, etc. temps r\u00e9el" ], - "noteType": "general" + "noteType": "seeReference" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Informatique" } ], - "type": "bf:Temporal", "related": [ { - "authorized_access_point": "Cin\u00e9ma - 1960-1990" + "authorized_access_point": "FlexRay (bus)" + }, + { + "authorized_access_point": "Syst\u00e8mes en ligne" } ], "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Ordonnancement dynamique" + }, + { + "authorized_access_point": "Commande en temps r\u00e9el" + }, + { + "authorized_access_point": "Programmation en temps r\u00e9el" + }, + { + "authorized_access_point": "Projet SCEPTRE" + }, + { + "authorized_access_point": "R\u00e9servations" + }, + { + "authorized_access_point": "Syst\u00e8mes transactionnels" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85111765", + "source": "LCSH" + } + ], + "authorized_access_point": "Real-time data processing" + } + ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027794970", + "value": "http://www.idref.fr/027333930", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11976068c", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119398403", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11939840", "source": "BNF" } ], "classification": [ { - "name": "Audiovisuel", "type": "bf:ClassificationDdc", - "classificationPortion": "791" + "classificationPortion": "621" } ], - "authorized_access_point": "1960-1990" + "variant_access_point": [ + "Exploitation en temps r\u00e9el", + "Ordinateurs - Exploitation en temps r\u00e9el", + "Syst\u00e8mes informatiques en temps r\u00e9el", + "Syst\u00e8mes r\u00e9actifs (informatiques)", + "Syst\u00e8mes temps r\u00e9el (informatique)", + "Temps r\u00e9el", + "Traitement en direct", + "Traitement en temps r\u00e9el" + ], + "authorized_access_point": "Temps r\u00e9el (informatique)" }, { - "md5": "33af7a1894bb303d356f6f18189e41db", - "pid": "027795926", + "md5": "a1c921b650f9259b4a1906e0ca364ea2", + "pid": "027336913", "note": [ { "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures polonaises", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature polonaise, celle-ci servant de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires polonais" + "Grand Larousse universel", + "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1996" + ], + "noteType": "dataSource" + }, + { + "label": [ + "2 septembre 1945 : fin de la seconde guerre mondiale. 1955 : conf\u00e9rences de Bandung (avril) et de Gen\u00e8ve (juillet)" ], "noteType": "general" } ], - "type": "bf:Temporal", - "related": [ + "type": "bf:Topic", + "bnf_type": "sujet Rameau", + "narrower": [ { - "authorized_access_point": "Litt\u00e9rature polonaise - 1918-1945" + "authorized_access_point": "DC 3 su\u00e9dois, Affaire du (1952)" } ], - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027795926", + "value": "http://www.idref.fr/027336913", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15521981p", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11940078m", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11940078", "source": "BNF" } ], - "relation_pid": { - "type": "redirect_from", - "value": "113932618" - }, "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Science politique", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "320" + }, + { + "name": "Histoire", + "type": "bf:ClassificationDdc", + "classificationPortion": "900" } ], - "authorized_access_point": "1918-1945" + "variant_access_point": [ + "Politique mondiale - 1945-1955" + ], + "authorized_access_point": "Relations internationales - 1945-1955" }, { - "md5": "18506a976f437cbb613506de2668b4b1", - "pid": "027796817", + "md5": "38bb217a4d88d19a86632a403d055268", + "pid": "027345203", "note": [ { "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures espagnoles et portugaises", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec les vedettes Litt\u00e9rature espagnole et Litt\u00e9rature portugaise, qui servent de vedettes mod\u00e8les. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires espagnols et portugais" + "Grand Larousse universel", + "Encycl. universalis - http://www.universalis-edu.com (2006-10-18)", + "Les langues du monde / A. Meillet, M. Cohen, 1981", + "Les langues dans le monde ancien et moderne : Les langues chamito-s\u00e9mitiques / J. Perrot, 1988", + "Les langues du monde / M. Sala, I. Vintila-Radulescu, 1984 (art. : H\u00e9breu)" ], - "noteType": "general" + "noteType": "dataSource" } ], - "type": "bf:Temporal", - "related": [ + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Espagnol (langue) - +* 1500......- 1700......+:1500-1700: (P\u00e9riode classique)" - }, + "authorized_access_point": "H\u00e9breu (langue)" + } + ], + "related": [ { - "authorized_access_point": "Litt\u00e9rature espagnole - 1500-1700 (P\u00e9riode classique)" + "authorized_access_point": "H\u00e9breu (langue) mishna\u00efque" }, { - "authorized_access_point": "Litt\u00e9rature portugaise - 1500-1700 (P\u00e9riode classique)" + "authorized_access_point": "Po\u00e9sie h\u00e9bra\u00efque biblique" } ], "bnf_type": "sujet Rameau", - "identifiedBy": [ + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85059867", + "source": "LCSH" + } + ], + "authorized_access_point": "Hebrew language" + } + ], + "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027796817", + "value": "http://www.idref.fr/027345203", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11976189m", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11940722x", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11940722", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", "type": "bf:ClassificationDdc", - "classificationPortion": "800" - } - ], - "authorized_access_point": "1500-1700(P\u00e9riode classique)" - }, - { - "md5": "215ab160a48f287a88affd57b670874c", - "pid": "027796930", - "note": [ + "classificationPortion": "200" + }, { - "label": [ - "Ne pas utiliser : employer les subdivisions 1900-1945, Histoire -- 1900-1945 ou les vedettes construites comprenant la subdivision 1918-1939" - ], - "noteType": "seeReference" + "name": "Langues et linguistique", + "type": "bf:ClassificationDdc", + "classificationPortion": "400" } ], - "type": "bf:Temporal", - "deleted": "2023-08-08T14:28:41.182452+00:00", - "bnf_type": "sujet Rameau", - "identifiedBy": [ - { - "type": "uri", - "value": "http://www.idref.fr/027796930", - "source": "IDREF" - } + "variant_access_point": [ + "H\u00e9breu (langue) ancien", + "H\u00e9breu (langue) classique", + "H\u00e9breu ancien (langue)", + "H\u00e9breu biblique (langue)", + "H\u00e9breu classique (langue)" ], - "authorized_access_point": "1918-1939" + "authorized_access_point": "H\u00e9breu (langue) biblique" }, { - "md5": "b267858a4b6e93d997eea036808ce5f1", - "pid": "027797619", + "md5": "dc43fe30e750c0c8299669f8568ba97d", + "pid": "027355152", "note": [ { "label": [ - "Ne pas utiliser : employer les subdivisions Moyen \u00e2ge (ACN 211948), Histoire -- Moyen \u00e2ge (ACN 218067) ou les vedettes construites comprenant la subdivision 476-1492" + "Voir aussi aux noms des particules et antiparticules" ], "noteType": "seeReference" } ], - "type": "bf:Temporal", - "deleted": "2023-08-08T14:28:41.276336+00:00", - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "type": "bf:Topic", + "broader": [ { - "type": "uri", - "value": "http://www.idref.fr/027797619", - "source": "IDREF" + "authorized_access_point": "Physique nucl\u00e9aire" } ], - "authorized_access_point": "476-1492" - }, - { - "md5": "2a8f99a372d55e63dfe6fc62289be74d", - "pid": "027798461", - "note": [ + "related": [ { - "label": [ - "Ne pas utiliser : employer les subdivisions 1900-1945, Histoire -- 1900-1945 ou les vedettes construites comprenant la subdivision 1889-1930" - ], - "noteType": "seeReference" - } - ], - "type": "bf:Temporal", - "deleted": "2023-08-08T14:28:41.375163+00:00", - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "authorized_access_point": "Acc\u00e9l\u00e9rateurs de particules" + }, { - "type": "uri", - "value": "http://www.idref.fr/027798461", - "source": "IDREF" - } - ], - "authorized_access_point": "1889-1930" - }, - { - "md5": "586f85a7c97edcb275b65af8dd17bad3", - "pid": "027798682", - "note": [ + "authorized_access_point": "Collisions (physique nucl\u00e9aire)" + }, { - "label": [ - "Ne pas utiliser : employer les subdivisions 1500-1800, Histoire -- 1500-1800 ou les vedettes construites comprenant la subdivision 1648-1789" - ], - "noteType": "seeReference" - } - ], - "type": "bf:Temporal", - "deleted": "2023-08-08T14:28:41.485675+00:00", - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "authorized_access_point": "Lois d'\u00e9chelle (physique)" + }, { - "type": "uri", - "value": "http://www.idref.fr/027798682", - "source": "IDREF" - } - ], - "authorized_access_point": "1648-1789" - }, - { - "md5": "9a9a27a84296352ad601e8fa30b87766", - "pid": "027799395", - "note": [ + "authorized_access_point": "Matrices de m\u00e9langes" + }, { - "label": [ - "Ne pas utiliser : employer les subdivisions 1900-1945, Histoire -- 1900-1945 ou les vedettes construites comprenant la subdivision 1918-1933" - ], - "noteType": "seeReference" + "authorized_access_point": "Physique des hautes \u00e9nergies" } ], - "type": "bf:Temporal", - "deleted": "2023-08-08T14:28:41.593466+00:00", "bnf_type": "sujet Rameau", - "identifiedBy": [ + "narrower": [ { - "type": "uri", - "value": "http://www.idref.fr/027799395", - "source": "IDREF" + "authorized_access_point": "Antinucl\u00e9ons" + }, + { + "authorized_access_point": "Anyons" + }, + { + "authorized_access_point": "Bethe-Salpeter, \u00c9quation de" + }, + { + "authorized_access_point": "Bootstrap, Th\u00e9orie du (physique nucl\u00e9aire)" + }, + { + "authorized_access_point": "Bosons" + }, + { + "authorized_access_point": "Chromodynamique quantique" + }, + { + "authorized_access_point": "C\u00f4nes de lumi\u00e8re" + }, + { + "authorized_access_point": "Constantes de couplage" + }, + { + "authorized_access_point": "D\u00e9sint\u00e9gration semileptonique" + }, + { + "authorized_access_point": "Effet tunnel" + }, + { + "authorized_access_point": "Faisceaux de particules" + }, + { + "authorized_access_point": "Fonctions de structure" + }, + { + "authorized_access_point": "Forces nucl\u00e9aires (physique)" + }, + { + "authorized_access_point": "Gluons" + }, + { + "authorized_access_point": "Lois d'\u00e9chelle (physique)" + }, + { + "authorized_access_point": "Mandelstam, Repr\u00e9sentation de" + }, + { + "authorized_access_point": "Matrices densit\u00e9" + }, + { + "authorized_access_point": "Moment angulaire (physique nucl\u00e9aire)" + }, + { + "authorized_access_point": "Muographie" + }, + { + "authorized_access_point": "Neutralinos" + }, + { + "authorized_access_point": "Nucl\u00e9ons" + }, + { + "authorized_access_point": "Particules \u00e9tranges" + }, + { + "authorized_access_point": "Particules lourdes (physique)" + }, + { + "authorized_access_point": "Particules relativistes" + }, + { + "authorized_access_point": "Partons" + }, + { + "authorized_access_point": "Pions (particules)" + }, + { + "authorized_access_point": "Polarisation (physique nucl\u00e9aire)" + }, + { + "authorized_access_point": "Pomerons" + }, + { + "authorized_access_point": "Pouvoir d'arr\u00eat (physique nucl\u00e9aire)" + }, + { + "authorized_access_point": "Quasi-particules" + }, + { + "authorized_access_point": "Rayonnement synchrotron" + }, + { + "authorized_access_point": "R\u00e9actions d'annihilation" + }, + { + "authorized_access_point": "Regge, Trajectoires de" + }, + { + "authorized_access_point": "R\u00e8gles de somme (physique)" + }, + { + "authorized_access_point": "Schr\u00f6dinger, \u00c9quation de" + }, + { + "authorized_access_point": "Supersym\u00e9trie" + }, + { + "authorized_access_point": "Sym\u00e9trie unitaire" + }, + { + "authorized_access_point": "Tachyons" + }, + { + "authorized_access_point": "Th\u00e9orie du transport" + }, + { + "authorized_access_point": "Van Allen, Ceinture de" + }, + { + "authorized_access_point": "Violation de la r\u00e8gle CP (physique nucl\u00e9aire)" } ], - "authorized_access_point": "1918-1933 (r\u00e9publique de weimar)" - }, - { - "md5": "c47a5273bed0d6c1f50d0d6a2463e1c1", - "pid": "027799409", - "note": [ + "closeMatch": [ { - "label": [ - "Ne pas utiliser : employer les subdivisions 1900-1945, Histoire -- 1900-1945 ou les vedettes construites comprenant la subdivision 1918-1938" + "source": "RVMLaval", + "authorized_access_point": "Particules (physique nucl\u00e9aire)" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85098374", + "source": "LCSH" + } ], - "noteType": "seeReference" + "authorized_access_point": "Particles (Nuclear physics)" } ], - "type": "bf:Temporal", - "deleted": "2023-08-08T14:28:41.670485+00:00", - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027799409", + "value": "http://www.idref.fr/027355152", "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119415082", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11941508", + "source": "BNF" } ], - "authorized_access_point": "1918-1938" + "variant_access_point": [ + "Anti-particules (physique)", + "Antiparticules (physique)", + "Particules \u00e9l\u00e9mentaires (physique)", + "Particules fondamentales", + "Particules nucl\u00e9aires", + "Physique des particules" + ], + "authorized_access_point": "Particules (physique)" }, { - "md5": "9ddfc6e3ee5f77824ea9c9d4591b51d8", - "pid": "027799425", - "note": [ + "md5": "62dd97c2d8529ae7d048155c9aaf4655", + "pid": "027355578", + "type": "bf:Topic", + "broader": [ { - "label": [ - "Ne pas utiliser : employer les subdivisions 20e si\u00e8cle, Histoire -- 20e si\u00e8cle ou les vedettes construites comprenant la subdivision 1939-1975" - ], - "noteType": "seeReference" + "authorized_access_point": "Langages de programmation" } ], - "type": "bf:Temporal", - "deleted": "2023-08-08T14:28:41.752508+00:00", "bnf_type": "sujet Rameau", - "identifiedBy": [ + "narrower": [ { - "type": "uri", - "value": "http://www.idref.fr/027799425", - "source": "IDREF" - } - ], - "authorized_access_point": "1939-1975 (f. Franco)" - }, - { - "md5": "b1f7ce2f37b1374dee20a426f797bb2f", - "pid": "027799433", - "note": [ + "authorized_access_point": "MikroPascal (langage de programmation)" + }, { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures espagnoles, catalanes et galiciennes" - ], - "noteType": "general" - } - ], - "type": "bf:Temporal", - "related": [ + "authorized_access_point": "WEB (langage de programmation)" + }, { - "authorized_access_point": "Litt\u00e9rature catalane - 1939-1975" + "authorized_access_point": "PasRo (syst\u00e8me informatique)" }, { - "authorized_access_point": "Litt\u00e9rature espagnole - 1939-1975" + "authorized_access_point": "UCSD p-System" } ], - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027799433", + "value": "http://www.idref.fr/027355578", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15586264m", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11941547z", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11941547", "source": "BNF" } ], - "relation_pid": { - "type": "redirect_from", - "value": "120074303" - }, "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Physique appliqu\u00e9e", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "621" } ], - "authorized_access_point": "1939-1975" + "authorized_access_point": "PASCAL (langage de programmation)" }, { - "md5": "c59a35e4d5f82b6152804d9e3ee04676", - "pid": "027804038", + "md5": "ee40159bf5755eb5b4e3af9468ef74f7", + "pid": "027355985", "note": [ { "label": [ - "S'emploie uniquement en subdivision chronologique [sans subd. g\u00e9ogr.] \u00e0 la vedette Cin\u00e9ma et aux vedettes d\u00e9signant des genres cin\u00e9matographiques" + "Sous cette vedette, on trouve les ouvrages qui traitent de la politique religieuse de certains princes catholiques du XVIIIe si\u00e8cle, adeptes du despotisme \u00e9clair\u00e9. Le jos\u00e9phisme se caract\u00e9rise par l'intervention du prince dans la discipline int\u00e9rieure de l'\u00c9glise nationale, afin d'affaiblir la souverainet\u00e9 pontificale." ], "noteType": "general" } ], - "type": "bf:Temporal", - "related": [ + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "\u00c9glise et \u00c9tat - Autriche" + }, + { + "authorized_access_point": "Catholicisme antiromain" + }, { - "authorized_access_point": "Cin\u00e9ma - 1895-1929" + "authorized_access_point": "Despotisme \u00e9clair\u00e9" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027804038", + "value": "http://www.idref.fr/027355985", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11976743z", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119415814", "source": "BNF" - } - ], - "classification": [ + }, { - "name": "Audiovisuel", - "type": "bf:ClassificationDdc", - "classificationPortion": "791" + "type": "bf:Nbn", + "value": "FRBNF11941581", + "source": "BNF" } ], - "authorized_access_point": "1895-1929" + "variant_access_point": [ + "Jos\u00e9phinisme" + ], + "authorized_access_point": "Jos\u00e9phisme" }, { - "md5": "d1e1ba8c5e56e22cbec9ee6a29ed03bf", - "pid": "027804186", - "note": [ + "md5": "878d354026c64257435fd56e9490ea92", + "pid": "027356493", + "type": "bf:Topic", + "broader": [ { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures espagnoles, catalanes, galiciennes et vietnamiennes", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec les vedettes Litt\u00e9rature catalane, Litt\u00e9rature espagnole et Litt\u00e9rature vietnamienne, celles-ci servant de vedettes mod\u00e8les. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires espagnols, catalans, galiciens et vietnamiens" - ], - "noteType": "general" + "authorized_access_point": "Langages de programmation" + }, + { + "authorized_access_point": "Progiciels" + }, + { + "authorized_access_point": "Logiciels" } ], - "type": "bf:Temporal", - "related": [ + "bnf_type": "sujet Rameau", + "narrower": [ { - "authorized_access_point": "Litt\u00e9rature catalane - 1975-...." + "authorized_access_point": "ABAP (langage de programmation)" }, { - "authorized_access_point": "Litt\u00e9rature espagnole - 1975-...." + "authorized_access_point": "AppleScript (langage de programmation)" }, { - "authorized_access_point": "Litt\u00e9rature vietnamienne - 1975-...." + "authorized_access_point": "NOMAD (langage de programmation)" + } + ], + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Langages de 4e g\u00e9n\u00e9ration" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85107313", + "source": "LCSH" + } + ], + "authorized_access_point": "Programming languages (Electronic computers)" } ], - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027804186", + "value": "http://www.idref.fr/027356493", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119767569", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11941625x", "source": "BNF" - } + }, + { + "type": "bf:Nbn", + "value": "FRBNF11941625", + "source": "BNF" + } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "621" } ], - "authorized_access_point": "1975-...." + "variant_access_point": [ + "Infocentres (informatique)", + "Info-centres (informatique)", + "Langages de quatri\u00e8me g\u00e9n\u00e9ration", + "L4G" + ], + "authorized_access_point": "Langages de 4e g\u00e9n\u00e9ration" }, { - "md5": "f38ef2f44cc52cccd0f6f614d0a0b79a", - "pid": "027804232", - "note": [ + "md5": "742ad4eace2ec54c896650a20a8bc5e5", + "pid": "027361705", + "type": "bf:Topic", + "broader": [ { - "label": [ - "Ne pas utiliser : employer les subdivisions 1900-1945 ; Histoire -- 1900-1945 ; Histoire -- 1939-1945 (Guerre mondiale) [ACN 787424] : aux noms des armes militaires ; Histoire -- 1940-1945 [ACN 162259] : aux noms de lieux fran\u00e7ais ; ou les vedettes construites comprenant la subdivision 1939-1945" - ], - "noteType": "seeReference" - } - ], - "type": "bf:Temporal", - "deleted": "2023-08-08T14:28:46.891848+00:00", - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "authorized_access_point": "Hommes" + }, { - "type": "uri", - "value": "http://www.idref.fr/027804232", - "source": "IDREF" + "authorized_access_point": "Travailleurs du sexe" } ], - "authorized_access_point": "1939-1945" - }, - { - "md5": "af23c8c245e4895254ebbd4861882789", - "pid": "027804380", - "note": [ + "related": [ { - "label": [ - "Ne pas utiliser : employer les subdivisions 19e si\u00e8cle, Histoire -- 19e si\u00e8cle ou les vedettes construites comprenant la subdivision 1849-1870" - ], - "noteType": "seeReference" + "authorized_access_point": "Prostitution" } ], - "type": "bf:Temporal", - "deleted": "2023-08-08T14:28:41.850206+00:00", "bnf_type": "sujet Rameau", - "identifiedBy": [ + "narrower": [ { - "type": "uri", - "value": "http://www.idref.fr/027804380", - "source": "IDREF" + "authorized_access_point": "Escorts" } ], - "authorized_access_point": "1849-1870" - }, - { - "md5": "624b2dfc22b718da6f2b81728defb981", - "pid": "027805158", - "note": [ + "closeMatch": [ { - "label": [ - "Ne pas utiliser : employer les subdivisions 19e si\u00e8cle, Histoire -- 19e si\u00e8cle ou les vedettes construites comprenant la subdivision 1837-1901" + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85107630", + "source": "LCSH" + } ], - "noteType": "seeReference" + "authorized_access_point": "Male prostitutes" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Prostitu\u00e9s" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85107630", + "source": "LCSH" + } + ], + "authorized_access_point": "Male Prostitution" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Prostitution masculine" } ], - "type": "bf:Temporal", - "deleted": "2023-08-08T14:28:41.984200+00:00", - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027805158", + "value": "http://www.idref.fr/027361705", "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119420098", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11942009", + "source": "BNF" + } + ], + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "305" + }, + { + "name": "Probl\u00e8mes et services sociaux", + "type": "bf:ClassificationDdc", + "classificationPortion": "360" } ], - "authorized_access_point": "1837-1901" + "variant_access_point": [ + "Prostitution masculine", + "Prostitu\u00e9s masculins", + "Prostitu\u00e9s m\u00e2les" + ], + "authorized_access_point": "Prostitu\u00e9s" }, { - "md5": "075f81db93526ddcf819cde9a136500c", - "pid": "027805220", + "md5": "92e04af0771c86f7702308e1e63d4c25", + "pid": "027362434", "note": [ { "label": [ - "Encycl. universalis - http://www.universalis-edu.com (2018-03-21)", - "Encycl. of African-American culture and history / C. A. Palmer, 2005" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette, on trouve les documents sur les citoyens noirs am\u00e9ricains. Les documents sur les Noirs r\u00e9sidant aux \u00c9tats-Unis, toutes nationalit\u00e9s confondues, se trouvent sous des vedettes-mati\u00e8re telles que : Noirs -- \u00c9tats-Unis ; Noirs -- [Subdivision de sujet] -- \u00c9tats-Unis ; etc" + "Sous cette vedette, on trouve les recueils de litt\u00e9rature suisse francophone de divers genres" ], "noteType": "general" - }, - { - "label": [ - "Voir aussi les vedettes du type : [Guerre] -- Noirs am\u00e9ricains ; [Force arm\u00e9e] -- Noirs am\u00e9ricains, par ex. : \u00c9tats-Unis -- 1861-1865 (Guerre de S\u00e9cession) -- Noirs am\u00e9ricains", - "Voir aussi la subdivision Et les noirs am\u00e9ricains aux collectivit\u00e9s et aux personnes" - ], - "noteType": "seeReference" } ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Ethnologie - \u00c9tats-Unis" + "authorized_access_point": "Litt\u00e9rature francophone" }, { - "authorized_access_point": "Noirs" + "authorized_access_point": "Litt\u00e9rature suisse" } ], "related": [ { - "authorized_access_point": "Africains" - }, + "authorized_access_point": "\u00c9crivains suisses de langue fran\u00e7aise" + } + ], + "bnf_type": "genre/forme Rameau", + "narrower": [ { - "authorized_access_point": "Allemands d'origine noire am\u00e9ricaine" + "authorized_access_point": "Contes suisses de langue fran\u00e7aise" }, { - "authorized_access_point": "Cuisine noire am\u00e9ricaine" + "authorized_access_point": "Dark romance suisse de langue fran\u00e7aise" }, { - "authorized_access_point": "Danse noire am\u00e9ricaine" + "authorized_access_point": "Essai (genre litt\u00e9raire) suisse de langue fran\u00e7aise" }, { - "authorized_access_point": "Et les noirs am\u00e9ricains" + "authorized_access_point": "Fantasy suisse de langue fran\u00e7aise" }, { - "authorized_access_point": "Fonds sp\u00e9ciaux - Noirs am\u00e9ricains" + "authorized_access_point": "Litt\u00e9rature dialectale fran\u00e7aise - Suisse" }, { - "authorized_access_point": "Franc-ma\u00e7onnerie noire am\u00e9ricaine" + "authorized_access_point": "Litt\u00e9rature polici\u00e8re suisse de langue fran\u00e7aise" }, { - "authorized_access_point": "Humour noir am\u00e9ricain" + "authorized_access_point": "Litt\u00e9rature r\u00e9volutionnaire suisse de langue fran\u00e7aise" }, { - "authorized_access_point": "Noirs am\u00e9ricains - Conditions sociales" + "authorized_access_point": "Litt\u00e9rature suisse de langue fran\u00e7aise pour la jeunesse" }, { - "authorized_access_point": "Noirs am\u00e9ricains - Droits" + "authorized_access_point": "Nouvelles suisses de langue fran\u00e7aise" }, { - "authorized_access_point": "Noirs am\u00e9ricains - Histoire" + "authorized_access_point": "Po\u00e9sie suisse de langue fran\u00e7aise" }, { - "authorized_access_point": "Noirs am\u00e9ricains - Identit\u00e9 collective" + "authorized_access_point": "Proverbes suisses de langue fran\u00e7aise" }, { - "authorized_access_point": "Noirs am\u00e9ricains - Langues" + "authorized_access_point": "Roman suisse de langue fran\u00e7aise" }, { - "authorized_access_point": "Noirs am\u00e9ricains - Politique et gouvernement" + "authorized_access_point": "Science-fiction suisse de langue fran\u00e7aise" }, { - "authorized_access_point": "Noirs am\u00e9ricains - Et les Africains" - }, + "authorized_access_point": "Th\u00e9\u00e2tre (genre litt\u00e9raire) suisse de langue fran\u00e7aise" + } + ], + "closeMatch": [ { - "authorized_access_point": "Noirs am\u00e9ricains - Et les Indiens d'Am\u00e9rique" + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85051883", + "source": "LCSH" + } + ], + "authorized_access_point": "Swiss literature (French)" }, { - "authorized_access_point": "Noirs am\u00e9ricains - Et les Juifs" - }, + "source": "RVMLaval", + "authorized_access_point": "Litt\u00e9rature suisse (fran\u00e7aise)" + } + ], + "identifiedBy": [ { - "authorized_access_point": "Noirs am\u00e9ricains - Religion" + "type": "uri", + "value": "http://www.idref.fr/027362434", + "source": "IDREF" }, { - "authorized_access_point": "Noirs am\u00e9ricains dans la culture populaire" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11942062q", + "source": "BNF" }, { - "authorized_access_point": "Philosophie noire am\u00e9ricaine" - }, + "type": "bf:Nbn", + "value": "FRBNF11942062", + "source": "BNF" + } + ], + "classification": [ { - "authorized_access_point": "Presse noire am\u00e9ricaine" - }, + "name": "Histoire et critique litt\u00e9raires", + "type": "bf:ClassificationDdc", + "classificationPortion": "800" + } + ], + "variant_access_point": [ + "Litt\u00e9rature francophone suisse", + "Litt\u00e9rature romande" + ], + "authorized_access_point": "Litt\u00e9rature suisse de langue fran\u00e7aise" + }, + { + "md5": "f7c371a4bd787c4044d6dbffb007c5b3", + "pid": "027365697", + "note": [ { - "authorized_access_point": "Universit\u00e9s noires am\u00e9ricaines" + "label": [ + "Vitrine linguistique - https://vitrinelinguistique.oqlf.gouv.qc.ca (2024-05-31)", + "Le nouveau dict. m\u00e9dical, 2018" + ], + "noteType": "dataSource" }, { - "authorized_access_point": "Contes noirs am\u00e9ricains" + "label": [ + "Sous cette vedette, on trouve les documents sur le traitement des maladies \u00e0 l'aide de champs magn\u00e9tiques. Les documents sur la m\u00e9decine magn\u00e9tique, courant de pens\u00e9e m\u00e9dicale datant du XVII\u00e8me si\u00e8cle, se trouvent sous M\u00e9decine magn\u00e9tique" + ], + "noteType": "general" } ], - "bnf_type": "sujet Rameau", - "narrower": [ + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Cow-boys noirs am\u00e9ricains" - }, + "authorized_access_point": "M\u00e9decines alternatives" + } + ], + "related": [ { - "authorized_access_point": "Abolitionnistes noirs am\u00e9ricains" + "authorized_access_point": "Magn\u00e9tisme animal" }, { - "authorized_access_point": "Agriculteurs noirs am\u00e9ricains" - }, + "authorized_access_point": "M\u00e9decine magn\u00e9tique" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ { - "authorized_access_point": "Anciens combattants noirs am\u00e9ricains" + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85079761", + "source": "LCSH" + } + ], + "authorized_access_point": "Magnetotherapy" }, { - "authorized_access_point": "Anthropologues noirs am\u00e9ricains" + "source": "MeSH", + "identifiedBy": [ + { + "type": "uri", + "value": "https://id.nlm.nih.gov/mesh/M0522057", + "source": "MeSH" + } + ], + "authorized_access_point": "Magnetic Field Therapy" }, { - "authorized_access_point": "Artistes noirs am\u00e9ricains" - }, + "source": "RVMLaval", + "authorized_access_point": "Magn\u00e9toth\u00e9rapie" + } + ], + "identifiedBy": [ { - "authorized_access_point": "Athl\u00e8tes noirs am\u00e9ricains" + "type": "uri", + "value": "http://www.idref.fr/027365697", + "source": "IDREF" }, { - "authorized_access_point": "Biblioth\u00e9caires noirs am\u00e9ricains" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11942308r", + "source": "BNF" }, { - "authorized_access_point": "Boxeurs noirs am\u00e9ricains" - }, + "type": "bf:Nbn", + "value": "FRBNF11942308", + "source": "BNF" + } + ], + "classification": [ { - "authorized_access_point": "Cadres noirs am\u00e9ricains" - }, + "name": "Sciences m\u00e9dicales et param\u00e9dicales", + "type": "bf:ClassificationDdc", + "classificationPortion": "610" + } + ], + "variant_access_point": [ + "Aimants - Emploi en th\u00e9rapeutique", + "Champs magn\u00e9tiques - Emploi en th\u00e9rapeutique", + "Gu\u00e9rison magn\u00e9tique", + "Magn\u00e9tisme - Emploi en th\u00e9rapeutique", + "Magn\u00e9tisme curatif", + "Magnologie", + "Th\u00e9rapeutique magn\u00e9tique" + ], + "authorized_access_point": "Magn\u00e9toth\u00e9rapie" + }, + { + "md5": "f3b131816c4684efd48c35aa55e1e0ee", + "pid": "027368661", + "note": [ { - "authorized_access_point": "Catholiques noirs am\u00e9ricains" - }, + "label": [ + "Mourre, 1986" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Clerg\u00e9 noir am\u00e9ricain" + "authorized_access_point": "Investiture (droit canonique)" }, { - "authorized_access_point": "Coiffeurs noirs am\u00e9ricains" - }, + "authorized_access_point": "Papaut\u00e9 - 1054-1309" + } + ], + "related": [ { - "authorized_access_point": "Communistes noirs am\u00e9ricains" + "authorized_access_point": "Saint Empire romain germanique - 1056-1106 (Henri IV)" }, { - "authorized_access_point": "Consommateurs noirs am\u00e9ricains" - }, + "authorized_access_point": "Saint Empire romain germanique - 1106-1125 (Henri V)" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ { - "authorized_access_point": "Courtepointiers noirs am\u00e9ricains" - }, + "authorized_access_point": "Canossa, Entrevue de (1077)" + } + ], + "identifiedBy": [ { - "authorized_access_point": "Criminels noirs am\u00e9ricains" + "type": "uri", + "value": "http://www.idref.fr/027368661", + "source": "IDREF" }, { - "authorized_access_point": "Diplomates noirs am\u00e9ricains" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119425476", + "source": "BNF" }, { - "authorized_access_point": "\u00c9conomistes noirs am\u00e9ricains" - }, + "type": "bf:Nbn", + "value": "FRBNF11942547", + "source": "BNF" + } + ], + "variant_access_point": [ + "Querelle des investitures", + "\u00c9glise et \u00c9tat - Saint Empire romain germanique - 1076-1122" + ], + "authorized_access_point": "Investitures, Querelle des" + }, + { + "md5": "3b5de954c104c6d0b8d5eb394d803e1c", + "pid": "027374351", + "note": [ { - "authorized_access_point": "\u00c9crivains noirs am\u00e9ricains" - }, + "label": [ + "Sous cette vedette, on trouve les ouvrages qui traitent d'objets, tels que documents historiques, livres, objets d'art, reliques, etc., qui concernent le Canada, sa civilisation ou sa culture, ou qui en sont caract\u00e9ristiques" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Enfants noirs am\u00e9ricains" - }, + "authorized_access_point": "Canada - Histoire" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ { - "authorized_access_point": "Enseignants noirs am\u00e9ricains" - }, + "source": "RVMLaval", + "authorized_access_point": "Canadiana (objets de collection)" + } + ], + "identifiedBy": [ { - "authorized_access_point": "\u00c9piscopaliens noirs am\u00e9ricains" + "type": "uri", + "value": "http://www.idref.fr/027374351", + "source": "IDREF" }, { - "authorized_access_point": "\u00c9tudiants noirs am\u00e9ricains" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11942987j", + "source": "BNF" }, { - "authorized_access_point": "Familles noires am\u00e9ricaines" - }, + "type": "bf:Nbn", + "value": "FRBNF11942987", + "source": "BNF" + } + ], + "authorized_access_point": "Canadiana (objets de collection)" + }, + { + "md5": "b60e9197ecbde0666cb31b35a82ebbe9", + "pid": "027376982", + "note": [ { - "authorized_access_point": "Gullahs" - }, + "label": [ + "Sous cette vedette, on trouve les ouvrages sur l'ensemble des mesures prises par Napol\u00e9on Ier pour fermer \u00e0 la Grande-Bretagne tous les ports du continent" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Historiens noirs am\u00e9ricains" + "authorized_access_point": "Politique et gouvernement - Europe - 1789-1815" }, { - "authorized_access_point": "Hommes d'affaires noirs am\u00e9ricains" + "authorized_access_point": "Blocus" }, { - "authorized_access_point": "Hommes politiques noirs am\u00e9ricains" - }, + "authorized_access_point": "France - 1799-1815 (Consulat et Empire)" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ { - "authorized_access_point": "Homosexuels noirs am\u00e9ricains" + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85031555", + "source": "LCSH" + } + ], + "authorized_access_point": "Continental System (Economic blockade)" }, { - "authorized_access_point": "Intellectuels noirs am\u00e9ricains" - }, + "source": "RVMLaval", + "authorized_access_point": "Blocus continental" + } + ], + "identifiedBy": [ { - "authorized_access_point": "Inventeurs noirs am\u00e9ricains" + "type": "uri", + "value": "http://www.idref.fr/027376982", + "source": "IDREF" }, { - "authorized_access_point": "Jeunesse noire am\u00e9ricaine" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119431898", + "source": "BNF" }, { - "authorized_access_point": "Joueurs de basket-ball noirs am\u00e9ricains" - }, + "type": "bf:Nbn", + "value": "FRBNF11943189", + "source": "BNF" + } + ], + "authorized_access_point": "Blocus continental" + }, + { + "md5": "6e5b2e8345204b1f6240b2ee5e58ff50", + "pid": "027390349", + "note": [ + { + "label": [ + "Garnier DTTM, 1992" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Voir aussi la subdivision Tomographie [+ subd g\u00e9ogr.] aux maladies, parties du corps" + ], + "noteType": "seeReference" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Imagerie pour le diagnostic" + } + ], + "related": [ + { + "authorized_access_point": "Tomographie" + }, + { + "authorized_access_point": "Scanographes" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Scanographie en m\u00e9decine v\u00e9t\u00e9rinaire" + }, + { + "authorized_access_point": "Scanographie en p\u00e9diatrie" + }, + { + "authorized_access_point": "Scanographie h\u00e9lico\u00efdale" + } + ], + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Scanographie" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00006372", + "source": "LCSH" + } + ], + "authorized_access_point": "Tomography" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027390349", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11944283q", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11944283", + "source": "BNF" + } + ], + "relation_pid": { + "type": "redirect_from", + "value": "241357721" + }, + "classification": [ + { + "name": "Sciences m\u00e9dicales et param\u00e9dicales", + "type": "bf:ClassificationDdc", + "classificationPortion": "610" + } + ], + "variant_access_point": [ + "Tomodensitom\u00e9trie", + "Tomographie axiale", + "Tomographie informatis\u00e9e" + ], + "authorized_access_point": "Scanographie" + }, + { + "md5": "6c8c578c5f061c0abcb2564893befefb", + "pid": "027391396", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Masques (\u00e9lectronique)" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027391396", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11944384b", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11944384", + "source": "BNF" + } + ], + "authorized_access_point": "Circuits int\u00e9gr\u00e9s - Masques" + }, + { + "md5": "2b17ebf508735924f8b855d7c134f65e", + "pid": "027396924", + "note": [ + { + "label": [ + "Grand Larousse universel", + "Th\u00e9o, 2009", + "Les mots du christianisme / D. Le Tourneau, 2005", + "Dict. des mots de la foi chr\u00e9tienne / O. de La Brosse, A. M. Henry, P. Rouillard, 1992" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Christ-Emmanuel" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85081693", + "source": "LCSH" + } + ], + "authorized_access_point": "Mary, Blessed Virgin, Saint--Annunciation" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Marie, Sainte Vierge -- Annonciation" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027396924", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11944811h", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11944811", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", + "type": "bf:ClassificationDdc", + "classificationPortion": "200" + } + ], + "variant_access_point": [ + "Annonce faite \u00e0 Marie", + "Annonciation \u00e0 la Vierge Marie" + ], + "authorized_access_point": "Annonciation" + }, + { + "md5": "8d6022be3f46abd3b24dc819f994608b", + "pid": "02739770X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Attente" + }, + { + "authorized_access_point": "Temps (psychanalyse)" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Flux (psychologie)" + }, + { + "authorized_access_point": "Perception du temps" + }, + { + "authorized_access_point": "Perspective temporelle" + }, + { + "authorized_access_point": "Anticipation (psychologie)" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2008112897", + "source": "LCSH" + } + ], + "authorized_access_point": "Time--Psychological aspects" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Temps -- Aspect psychologique" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02739770X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119448674", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11944867", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Psychologie, psychanalyse", + "type": "bf:ClassificationDdc", + "classificationPortion": "150" + } + ], + "variant_access_point": [ + "Temps - Psychologie", + "Temps - Aspect psychologique" + ], + "authorized_access_point": "Psychologie du temps" + }, + { + "md5": "487f2a0a470bd97ea6fa524cd92a4f54", + "pid": "027415252", + "note": [ + { + "label": [ + "Dict. encycl. des religions, 1993" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sectes shinto\u00efstes" + } + ], + "related": [ + { + "authorized_access_point": "Teodori" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCA", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/names/n50072712", + "source": "LCA" + } + ], + "authorized_access_point": "Tenrikyo" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027415252", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11946162z", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11946162", + "source": "BNF" + } + ], + "authorized_access_point": "Tenriky\u014d" + }, + { + "md5": "cf62e83e4bdd6c38d80b076abd50e321", + "pid": "02741664X", + "note": [ + { + "label": [ + "Les politiques linguistiques / L.-J. Calvet, 1996", + "L'id\u00e9e de politique linguistique : actes du colloque du 18 d\u00e9cembre 2008 organis\u00e9 \u00e0 l'\u00c9cole normale sup\u00e9rieure / Soci\u00e9t\u00e9 fran\u00e7aise de terminologie, 2009", + "Politique linguistique : faits et th\u00e9orie / N. Halaoui, 2011" + ], + "noteType": "dataSource" + }, + { + "label": [ + "S'emploie \u00e9galement en subdivision" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Langues - Aspect politique" + }, + { + "authorized_access_point": "Politique culturelle" + }, + { + "authorized_access_point": "Politique de la communication" + } + ], + "related": [ + { + "authorized_access_point": "Diffusion des langues" + }, + { + "authorized_access_point": "Discrimination linguistique" + }, + { + "authorized_access_point": "\u00c9cologie des langues" + }, + { + "authorized_access_point": "Langues - Droit" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Monolinguisme" + }, + { + "authorized_access_point": "Alphab\u00e9tisation" + }, + { + "authorized_access_point": "Cadre europ\u00e9en commun de r\u00e9f\u00e9rence en langue" + }, + { + "authorized_access_point": "F\u00e9minisation (linguistique)" + }, + { + "authorized_access_point": "Francophonie" + }, + { + "authorized_access_point": "Langue d'enseignement" + }, + { + "authorized_access_point": "Langue de travail" + }, + { + "authorized_access_point": "Langue universelle" + }, + { + "authorized_access_point": "Normalisation linguistique" + }, + { + "authorized_access_point": "Organisations internationales - Politique linguistique" + }, + { + "authorized_access_point": "Orthographe - R\u00e9forme" + }, + { + "authorized_access_point": "Pr\u00e9servation des langues" + } + ], + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Politique linguistique" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85074563", + "source": "LCSH" + } + ], + "authorized_access_point": "Language planning" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85074564", + "source": "LCSH" + } + ], + "authorized_access_point": "Language policy" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02741664X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11946264x", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11946264", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Administration publique", + "type": "bf:ClassificationDdc", + "classificationPortion": "350" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "401" + } + ], + "variant_access_point": [ + "Action linguistique", + "Am\u00e9nagement linguistique", + "\u00c9tat et langues", + "Glottopolitique", + "Langues - Planification", + "Langues - Politique publique", + "Langues et \u00c9tat", + "Langues et nationalisme", + "Langues et politique", + "Langues nationales", + "Langues officielles", + "Nationalisme et langues", + "Planification linguistique", + "Politique de la langue", + "Politique et langues" + ], + "authorized_access_point": "Politique linguistique" + }, + { + "md5": "caa1430697c308041bd748f72e8fb521", + "pid": "02743141X", + "note": [ + { + "label": [ + "Grand Larousse universel", + "Encycl. universalis (art. : Romantisme) - http://www.universalis-edu.com (2013-11-14)", + "Vocabulaire d'esth\u00e9tique / E. Souriau, 1990", + "Dict. des lettres fran\u00e7aises. Le XVIIIe si\u00e8cle / G. Grente, F. Moureau, 1995", + "Dict. des termes litt\u00e9raires, 2005 (art. : Romantisme)", + "Dict. des litt\u00e9ratures / P. Van Tieghem, 1984", + "Dict. du litt\u00e9raire / P. Aron, D. Saint-Jacques, A. Viala, 2002 (art. : Romantisme) : pr\u00e9-romantisme" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Civilisation - Europe - 18e si\u00e8cle" + }, + { + "authorized_access_point": "Romantisme" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Sturm und Drang" + } + ], + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Pr\u00e9romantisme" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02743141X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11947424g", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11947424", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Arts (sauf litt\u00e9rature)", + "type": "bf:ClassificationDdc", + "classificationPortion": "700" + }, + { + "name": "Litt\u00e9rature g\u00e9n\u00e9rale", + "type": "bf:ClassificationDdc", + "classificationPortion": "801" + } + ], + "variant_access_point": [ + "Mouvement pr\u00e9romantique", + "Pr\u00e9-romantisme" + ], + "authorized_access_point": "Pr\u00e9romantisme" + }, + { + "md5": "3d00cfb24cbb5764ef4ae2787526a531", + "pid": "027431444", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Psychologie religieuse" + } + ], + "related": [ + { + "authorized_access_point": "Mystique - Psychologie" + }, + { + "authorized_access_point": "Pri\u00e8re" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85106118", + "source": "LCSH" + } + ], + "authorized_access_point": "Prayer -- Psychology" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Pri\u00e8re -- Psychologie" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027431444", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11947427h", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11947427", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Psychologie, psychanalyse", + "type": "bf:ClassificationDdc", + "classificationPortion": "150" + }, + { + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", + "type": "bf:ClassificationDdc", + "classificationPortion": "200" + } + ], + "variant_access_point": [ + "Pri\u00e8re - Aspect psychologique", + "Pri\u00e8re - Psychologie" + ], + "authorized_access_point": "Psychologie de la pri\u00e8re" + }, + { + "md5": "1480846bbd255c77d2a26661fac04ce2", + "pid": "027436683", + "note": [ + { + "label": [ + "Grand Larousse universel", + "Encycl. universalis - http://www.universalis-edu.com (2012-02-24)", + "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1996" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Conditions sociales - Europe - 1492-1789" + }, + { + "authorized_access_point": "Conditions rurales" + }, + { + "authorized_access_point": "Travail forc\u00e9" + } + ], + "related": [ + { + "authorized_access_point": "Esclavage" + }, + { + "authorized_access_point": "Mainmorte" + }, + { + "authorized_access_point": "P\u00e9onage" + }, + { + "authorized_access_point": "Propri\u00e9t\u00e9 fonci\u00e8re" + }, + { + "authorized_access_point": "Serfs" + }, + { + "authorized_access_point": "Serfs - \u00c9mancipation" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Colonat" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85120215", + "source": "LCSH" + } + ], + "authorized_access_point": "Serfdom" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Servage" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027436683", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119478388", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11947838", + "source": "BNF" + } + ], + "classification": [ + { + "name": "\u00c9conomie politique", + "type": "bf:ClassificationDdc", + "classificationPortion": "330" + }, + { + "name": "Droit", + "type": "bf:ClassificationDdc", + "classificationPortion": "340" + }, + { + "name": "Histoire de l'Europe", + "type": "bf:ClassificationDdc", + "classificationPortion": "940" + } + ], + "variant_access_point": [ + "Condition servile", + "Questalit\u00e9" + ], + "authorized_access_point": "Servage" + }, + { + "md5": "8bf3f256b0f00a2d3bb89ca5bc95d848", + "pid": "027455092", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Droits de l'homme" + } + ], + "related": [ + { + "authorized_access_point": "Enfants - Statut juridique" + }, + { + "authorized_access_point": "Protection de l'enfance" + }, + { + "authorized_access_point": "Traite des enfants" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Relations personnelles (droits de l'enfant)" + }, + { + "authorized_access_point": "Aide juridique aux enfants" + }, + { + "authorized_access_point": "Conseils municipaux d'enfants" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027455092", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11949245c", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11949245", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Droit", + "type": "bf:ClassificationDdc", + "classificationPortion": "340" + } + ], + "variant_access_point": [ + "Droits de l'enfant", + "Droits des enfants", + "Droits des mineurs" + ], + "authorized_access_point": "Enfants - Droits" + }, + { + "md5": "2dbbe9c4bcaa44d8cafe80715f2fcde7", + "pid": "027461599", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Manuscrits mexicains" + } + ], + "related": [ + { + "authorized_access_point": "\u00c9criture pictographique indienne d'Am\u00e9rique" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85080746", + "source": "LCSH" + } + ], + "authorized_access_point": "Manuscripts, Mexican (Pre-Columbian)" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Manuscrits mexicains pr\u00e9colombiens" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027461599", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119497374", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11949737", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Sciences de l'information", + "type": "bf:ClassificationDdc", + "classificationPortion": "020" + }, + { + "name": "Arch\u00e9ologie. Histoire ancienne", + "type": "bf:ClassificationDdc", + "classificationPortion": "930" + } + ], + "variant_access_point": [ + "Codex mexicains pr\u00e9colombiens", + "Codex pictographiques mexicains", + "Codex pr\u00e9colombiens mexicains", + "Indiens d'Am\u00e9rique - Mexique - Manuscrits pr\u00e9colombiens", + "Manuscrits pictographiques mexicains", + "Manuscrits pr\u00e9colombiens mexicains" + ], + "authorized_access_point": "Manuscrits mexicains pr\u00e9colombiens" + }, + { + "md5": "ef1ed63b529db0b814aaa6aff05c0bb0", + "pid": "027478033", + "note": [ + { + "label": [ + "National library of Israel - http://web.nli.org.il (2017-02-01)", + "Milwn \u1e25ada\u0161 / \u02beA. \u02beEben-\u0160w\u0161an, 1965", + "Le Talmud et la litt\u00e9rature rabbinique / C. Y. Lambert, 1997", + "BnF Service h\u00e9breu, 2017-02-01" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Le mot Torah a plusieurs acceptions : il correspond au Pentateuque ou Loi \u00e9crite du juda\u00efsme et \u00e0 la Loi orale, Torah orale, constitu\u00e9e des commentaires explicatifs des pr\u00e9ceptes contenus dans le Pentateuque" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "H\u00e9breu (langue) - Vocabulaire" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85136098", + "source": "LCSH" + } + ], + "authorized_access_point": "Torah (The Hebrew word)" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Torah (Le mot h\u00e9bra\u00efque)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027478033", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119509560", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11950956", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Langues et linguistique", + "type": "bf:ClassificationDdc", + "classificationPortion": "400" + } + ], + "variant_access_point": [ + "Thora (le mot h\u00e9breu)", + "Torah (le mot h\u00e9breu)" + ], + "authorized_access_point": "Twrah (le mot h\u00e9breu)" + }, + { + "md5": "fb2d195e5f72cff866f89ab4802ab4dc", + "pid": "027481352", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mouvement ouvrier" + }, + { + "authorized_access_point": "Syndicats" + } + ], + "related": [ + { + "authorized_access_point": "Travailleurs" + }, + { + "authorized_access_point": "Coordinations" + }, + { + "authorized_access_point": "Militantisme" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Action directe" + }, + { + "authorized_access_point": "Bourses du travail" + }, + { + "authorized_access_point": "Syndicalisation" + }, + { + "authorized_access_point": "Syndicalisme r\u00e9volutionnaire" + }, + { + "authorized_access_point": "Syndicalistes" + }, + { + "authorized_access_point": "Anarcho-syndicalisme" + } + ], + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Syndicalisme" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85131626", + "source": "LCSH" + } + ], + "authorized_access_point": "Syndicalism" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027481352", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13318723t", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13318723", + "source": "BNF" + } + ], + "variant_access_point": [ + "Action syndicale", + "Activit\u00e9s syndicales", + "Mouvement syndical" + ], + "authorized_access_point": "Syndicalisme" + }, + { + "md5": "2c7d51935d740c38537a0635397e00e2", + "pid": "027486753", + "note": [ + { + "label": [ + "Peut se subdiviser par le nom des provinces" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Relations fiscales intergouvernementales - Canada" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2008103642", + "source": "LCSH" + } + ], + "authorized_access_point": "Federal government--Canada" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Gouvernement f\u00e9d\u00e9ral -- Canada" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027486753", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13318731f", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13318731", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Science politique", + "type": "bf:ClassificationDdc", + "classificationPortion": "320" + } + ], + "variant_access_point": [ + "Relations f\u00e9d\u00e9rales-provinciales (Canada)" + ], + "authorized_access_point": "Gouvernement f\u00e9d\u00e9ral - Canada" + }, + { + "md5": "e75fd588e765a76b5355d5d3fa931ae9", + "pid": "027493032", + "note": [ + { + "label": [ + "LCSH, 1994-03. - Laval RVM, 1994-02" + ], + "noteType": "dataNotFound" + } + ], + "type": "bf:Topic", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027493032", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11952058p", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11952058", + "source": "BNF" + } + ], + "authorized_access_point": "Hydrologie urbaine - Informatique" + }, + { + "md5": "29b2a03b8be63ab3ed0653ad6389229e", + "pid": "027495213", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Protestants - Pers\u00e9cutions" + }, + { + "authorized_access_point": "France - 1643-1715 (Louis XIV)" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85039286", + "source": "LCSH" + } + ], + "authorized_access_point": "Dragonnades" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027495213", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11952229n", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11952229", + "source": "BNF" + } + ], + "authorized_access_point": "Dragonnades" + }, + { + "md5": "55c49aa78719bee232102745b78e17ec", + "pid": "027495922", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Int\u00e9gration \u00e9conomique - Europe" + } + ], + "related": [ + { + "authorized_access_point": "Europe de l'Ouest" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Politique \u00e9conomique - Pays de l'Union europ\u00e9enne" + }, + { + "authorized_access_point": "Plan Schuman" + }, + { + "authorized_access_point": "Politique agricole - Pays de l'Union europ\u00e9enne" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027495922", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119522796", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11952279", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Economie", + "type": "bf:ClassificationDdc", + "classificationPortion": "330" + } + ], + "variant_access_point": [ + "Grand march\u00e9 europ\u00e9en", + "March\u00e9 commun europ\u00e9en", + "March\u00e9 int\u00e9rieur europ\u00e9en", + "March\u00e9 unique europ\u00e9en" + ], + "authorized_access_point": "Int\u00e9gration \u00e9conomique - Europe de l'Ouest" + }, + { + "md5": "281ccf045ec2a92174475e95d09bc23d", + "pid": "02750333X", + "note": [ + { + "label": [ + "Encycl. Larousse - http://www.larousse.fr/encyclopedie (2010-06-02)", + "Dict. des sciences animales / C. Meyer - http://dico-sciences-animales.cirad.fr (2010-06-02)", + "TermSciences (art. : Phylogen\u00e8se) - http://www.termsciences.fr (2010-06-02)", + "Dict. de biologie / J. Berthet, 2006 (art. : Phylogen\u00e8se ; Phylog\u00e9nie)", + "Dict. raisonn\u00e9 de biologie, 2003 (art. : Phylogen\u00e8se ; Phylog\u00e9nie)" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Voir aussi la subdivision Analyse cladistique aux \u00eatres vivants", + "Voir aussi la subdivision \u00c9volution aux \u00eatres vivants, parties du corps et produits chimiques (biomol\u00e9cules)" + ], + "noteType": "seeReference" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sciences naturelles - Classification" + } + ], + "related": [ + { + "authorized_access_point": "Analyse cladistique" + }, + { + "authorized_access_point": "\u00c9volution" + }, + { + "authorized_access_point": "\u00c9volution (biologie)" + }, + { + "authorized_access_point": "G\u00e9n\u00e9alogie" + }, + { + "authorized_access_point": "Homologie (biologie)" + }, + { + "authorized_access_point": "Loi biog\u00e9n\u00e9tique fondamentale" + }, + { + "authorized_access_point": "Ontogen\u00e8se" + }, + { + "authorized_access_point": "Parent\u00e9" + }, + { + "authorized_access_point": "Phylog\u00e9nie mol\u00e9culaire" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85101498", + "source": "LCSH" + } + ], + "authorized_access_point": "Phylogeny" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02750333X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11952878h", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11952878", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Sciences de la vie", + "type": "bf:ClassificationDdc", + "classificationPortion": "570" + } + ], + "variant_access_point": [ + "Arbres g\u00e9n\u00e9alogiques", + "Arbres phylog\u00e9n\u00e9tiques", + "Lign\u00e9e", + "Phylogen\u00e8se", + "Phylum" + ], + "authorized_access_point": "Phylog\u00e9nie" + }, + { + "md5": "2de33619d211cd9901424b101512fc13", + "pid": "027506762", + "note": [ + { + "label": [ + "Voir aussi la subdivision Influence fran\u00e7aise aux groupes ethniques et sujets noms communs appropri\u00e9s (artistiques, culturels, litt\u00e9raires et de civilisation en g\u00e9n\u00e9ral)" + ], + "noteType": "seeReference" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "\u00c9quipements culturels fran\u00e7ais" + }, + { + "authorized_access_point": "Influence fran\u00e7aise" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Art - France" + }, + { + "authorized_access_point": "Cuisine fran\u00e7aise" + }, + { + "authorized_access_point": "Droit - Influence fran\u00e7aise" + }, + { + "authorized_access_point": "Francit\u00e9" + }, + { + "authorized_access_point": "Vin de France" + }, + { + "authorized_access_point": "Litt\u00e9rature fran\u00e7aise" + }, + { + "authorized_access_point": "Musique traditionnelle - France" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85051184", + "source": "LCSH" + } + ], + "authorized_access_point": "France--Civilization" + }, + { + "source": "RVMLaval", + "authorized_access_point": "France--Civilisation" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027506762", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11953151s", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11953151", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Histoire de la France (depuis 486)", + "type": "bf:ClassificationDdc", + "classificationPortion": "944" + } + ], + "variant_access_point": [ + "Civilisation fran\u00e7aise", + "Culture fran\u00e7aise" + ], + "authorized_access_point": "Civilisation - France" + }, + { + "md5": "6fba34101a31f9e419d611df243e755f", + "pid": "027516652", + "note": [ + { + "label": [ + "Th\u00e9o, 1989" + ], + "noteType": "dataSource" + }, + { + "label": [ + "LCSH, 2000-03. - Laval RVM, 2000-01" + ], + "noteType": "dataNotFound" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "\u00c9glise catholique - Doctrine sociale" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027516652", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11954008m", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11954008", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", + "type": "bf:ClassificationDdc", + "classificationPortion": "200" + } + ], + "authorized_access_point": "Encycliques sociales" + }, + { + "md5": "536474cf4190f0bf2b1349b7543039e3", + "pid": "027519546", + "note": [ + { + "label": [ + "La Russie et la tentation de l'Orient / L. de Meaux, 2010", + "Dict. de la Russie / P. Cauchy, 2008 (art. : Asie centrale)", + "Le royaume de l'insolence : l'Afghanistan, 1504-2001 / M. Barry, 2002", + "Encycl. of Russian hist. / J. R. Millar, 2003 (art. : Central Asia)", + "Historical dict. of Afghanistan / L. W. Adamec, 2003 : Great Game", + "Historical dict. of the British Empire / J. S. Olson, R. Shadle, 1996 : Great Game" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Rivalit\u00e9 anglo-russe en Asie centrale (surnomm\u00e9e le \"Grand Jeu\"), qui a dur\u00e9 de la guerre russo-persane de 1804-1813 \u00e0 la signature de la Convention anglo-russe de 1907 (l'expression Grand Jeu a aussi \u00e9t\u00e9 utilis\u00e9e pour la rivalit\u00e9 des puissances occidentales en Chine au d\u00e9but du 20e si\u00e8cle)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Relations ext\u00e9rieures - Russie - 1801-1917" + }, + { + "authorized_access_point": "Asie centrale - 19e si\u00e8cle" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Guerre anglo-afghane (1839-1842)" + }, + { + "authorized_access_point": "Guerre anglo-afghane (1878-1880)" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85040619", + "source": "LCSH" + } + ], + "authorized_access_point": "Eastern question (Central Asia)" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Orient, Question d' (Asie centrale)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027519546", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11954245c", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11954245", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Histoire du reste du monde", + "type": "bf:ClassificationDdc", + "classificationPortion": "950" + } + ], + "variant_access_point": [ + "Asie centrale, Question d'", + "Grand Jeu (Asie centrale)", + "Great Game (Asie centrale)", + "Question d'Asie centrale", + "Question d'Orient (Asie centrale)" + ], + "authorized_access_point": "Orient, Question d' (Asie centrale)" + }, + { + "md5": "a8c629ec11ae93dd0c1dfdd5cb19b0da", + "pid": "027519686", + "note": [ + { + "label": [ + "Les mouvements pacifistes am\u00e9ricains et fran\u00e7ais, hier et aujourd'hui : actes du colloque des 5, 6 et 7 avril 2006 \u00e0 l'Universit\u00e9 de Savoie / F. McCollum Feeley, 2007" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Voir aussi la subdivision Mouvements contestataires aux guerres" + ], + "noteType": "seeReference" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mouvements sociaux" + }, + { + "authorized_access_point": "Pacifisme" + } + ], + "related": [ + { + "authorized_access_point": "Droit \u00e0 la paix" + }, + { + "authorized_access_point": "Mouvements contestataires" + }, + { + "authorized_access_point": "Pacifistes" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Amsterdam-Pleyel, Mouvement" + }, + { + "authorized_access_point": "Copperheads (\u00c9tats-Unis, 1861-1865)" + }, + { + "authorized_access_point": "Zimmerwald, Mouvement de" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85098950", + "source": "LCSH" + } + ], + "authorized_access_point": "Peace movements" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85098945", + "source": "LCSH" + } + ], + "authorized_access_point": "Peace -- Societies, etc" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Mouvements pacifistes" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Paix -- Associations" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027519686", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119542530", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11954253", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Sciences sociales", + "type": "bf:ClassificationDdc", + "classificationPortion": "300" + }, + { + "name": "Sciences politiques", + "type": "bf:ClassificationDdc", + "classificationPortion": "320" + } + ], + "variant_access_point": [ + "Mouvement pacifiste", + "Mouvements contre la guerre", + "Mouvements de protestation contre la guerre", + "Mouvements pour la paix", + "Paix - Associations", + "Paix, Mouvements pour la" + ], + "authorized_access_point": "Mouvements pacifistes" + }, + { + "md5": "493cd89dd06aca4ab733e0ff7d30a903", + "pid": "027528820", + "note": [ + { + "label": [ + "Grand Larousse universel", + "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1996", + "Lexique d'hist. et de civilisation romaines / J.-L. Lamboley, 1995", + "Vocabulaire de droit romain / R. Monier, 1948 (art. : Patrocinium)" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Sous cette vedette, on trouve les documents sur le patronage dans la Rome antique. Les documents sur le client\u00e9lisme dans d'autres soci\u00e9t\u00e9s se trouvent sous Client\u00e9lisme" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Droit romain" + } + ], + "related": [ + { + "authorized_access_point": "Affranchis (droit romain)" + }, + { + "authorized_access_point": "Client\u00e9lisme" + }, + { + "authorized_access_point": "Patriciens (Rome)" + }, + { + "authorized_access_point": "Pl\u00e8be (Rome)" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh90003161", + "source": "LCSH" + } + ], + "authorized_access_point": "Patron and client (Roman law)" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85098771", + "source": "LCSH" + } + ], + "authorized_access_point": "Patron and client" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Patron et client" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027528820", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11954979m", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11954979", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Sciences sociales", + "type": "bf:ClassificationDdc", + "classificationPortion": "300" + }, + { + "name": "Droit", + "type": "bf:ClassificationDdc", + "classificationPortion": "340" + }, + { + "name": "Arch\u00e9ologie. Histoire ancienne", + "type": "bf:ClassificationDdc", + "classificationPortion": "930" + } + ], + "variant_access_point": [ + "Client et patron", + "Client\u00e8le romaine", + "Client\u00e9lisme - Rome", + "Clients et patrons", + "Patrocinium", + "Patron et client - Droit", + "Patron et client (droit romain)", + "Patronage (Rome)", + "Patronage romain", + "Patronat (Rome)", + "Patrons (Rome)", + "Patrons et clients" + ], + "authorized_access_point": "Patron et client" + }, + { + "md5": "07f44847a7c2163d85f88ad1c1b3330e", + "pid": "027532488", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Psychologie religieuse" + } + ], + "related": [ + { + "authorized_access_point": "Mystique" + }, + { + "authorized_access_point": "Psychologie de la pri\u00e8re" + }, + { + "authorized_access_point": "Psychologie de la foi" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2008108167", + "source": "LCSH" + } + ], + "authorized_access_point": "Mysticism -- Psychology" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027532488", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11955279x", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11955279", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Psychologie, psychanalyse", + "type": "bf:ClassificationDdc", + "classificationPortion": "150" + }, + { + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", + "type": "bf:ClassificationDdc", + "classificationPortion": "200" + } + ], + "variant_access_point": [ + "Mystique - Aspect psychologique", + "Mystiques - Psychologie" + ], + "authorized_access_point": "Mystique - Psychologie" + }, + { + "md5": "06f91328d1ab9e1c89aa990133cda311", + "pid": "027545822", + "note": [ + { + "label": [ + "Wikip\u00e9dia : crise des otages am\u00e9ricains en Iran - https://fr.wikipedia.org (2017-06-09)", + "Encycl. universalis (art. : \u00c9tats-Unis d'Am\u00e9rique) : crise des otages de l'ambassade de T\u00e9h\u00e9ran ; (art. : Iran - Histoire et politique) : occupation de l'ambassade des \u00c9tats-Unis \u00e0 T\u00e9h\u00e9ran - http://www.universalis-edu.com (2017-06-09)", + "Grand Larousse universel", + "Robert encyclop\u00e9dique des noms propres 2008", + "Otages : les n\u00e9gociations secr\u00e8tes de T\u00e9h\u00e9ran / P. Salinger, 1981", + "Les otages am\u00e9ricains \u00e0 T\u00e9h\u00e9ran / N. Yavari-d'Hellencourt, 1992" + ], + "noteType": "dataSource" + }, + { + "label": [ + "4 novembre 1979 : occupation de l'ambassade des \u00c9tats-Unis \u00e0 T\u00e9h\u00e9ran par des \u00e9tudiants islamiques qui retiennent en otage 52 Am\u00e9ricains et r\u00e9clament l'extradition du shah. 24-25 avril 1980 : \u00e9chec de l'op\u00e9ration Eagle Claw. 27 juillet : mort du shah au Caire. 20 janvier 1981 : lib\u00e9ration des otages \u00e0 Alger" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Relations ext\u00e9rieures - Iran - 1979-1997" + }, + { + "authorized_access_point": "Relations ext\u00e9rieures - \u00c9tats-Unis - 1977-1981" + }, + { + "authorized_access_point": "Politique et gouvernement - Iran - 1979-...." + }, + { + "authorized_access_point": "Otages - Iran" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85067917", + "source": "LCSH" + } + ], + "authorized_access_point": "Iran Hostage Crisis, 1979-1981" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Affaire des otages am\u00e9ricains en Iran, 1979-1981" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027545822", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11956325h", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11956325", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Histoire du reste du monde", + "type": "bf:ClassificationDdc", + "classificationPortion": "950" + } + ], + "variant_access_point": [ + "Affaire des otages am\u00e9ricains en Iran (1979-1981)", + "Ambassade des \u00c9tats-Unis \u00e0 T\u00e9h\u00e9ran, Prise d'otages de l' (1979-1981)", + "Crise des otages am\u00e9ricains en Iran (1979-1981)", + "Occupation de l'ambassade am\u00e9ricaine \u00e0 T\u00e9h\u00e9ran (1979-1981)", + "Otages am\u00e9ricains en Iran, Affaire des (1979-1981)", + "Prise d'otages de T\u00e9h\u00e9ran (1979-1981)", + "T\u00e9h\u00e9ran, Prise d'otages de (1979-1981)" + ], + "authorized_access_point": "Prise d'otages de l'ambassade des \u00c9tats-Unis \u00e0 T\u00e9h\u00e9ran (1979-1981)" + }, + { + "md5": "515b70822e523a87420c4c17c052d971", + "pid": "027564878", + "note": [ + { + "label": [ + "Les notions philosophiques / S. Auroux, 1990", + "Vocabulaire technique et critique de la philosophie / A. Lalande, 1997", + "Encycl. de la philosophie, 2002", + "Grand dict. de la philosophie / M. Blay, 2003", + "Dict. de philosophie / C. Godin, 2004" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Philosophie de l'action" + }, + { + "authorized_access_point": "Philosophie de l'homme" + } + ], + "related": [ + { + "authorized_access_point": "Roue de Fortune (all\u00e9gorie)" + }, + { + "authorized_access_point": "A\u00ee\u0313sa (le mot grec)" + }, + { + "authorized_access_point": "Contingence" + }, + { + "authorized_access_point": "D\u00e9terminisme (philosophie)" + }, + { + "authorized_access_point": "\u00c9ternel retour" + }, + { + "authorized_access_point": "Hasard" + }, + { + "authorized_access_point": "Libre arbitre" + }, + { + "authorized_access_point": "Mo\u00eera (le mot grec)" + }, + { + "authorized_access_point": "N\u00e9cessit\u00e9" + }, + { + "authorized_access_point": "Pr\u00e9destination" + }, + { + "authorized_access_point": "Tragique (philosophie)" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85047439", + "source": "LCSH" + } + ], + "authorized_access_point": "Fate and fatalism" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Destin et fatalisme" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027564878", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11957809w", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11957809", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Philosophie", + "type": "bf:ClassificationDdc", + "classificationPortion": "100" + } + ], + "variant_access_point": [ + "Destin\u00e9e", + "Fatalisme", + "Fatalit\u00e9", + "Fatum", + "Sort" + ], + "authorized_access_point": "Destin et fatalisme" + }, + { + "md5": "64b615f5e836bbf6425073ed59e5c314", + "pid": "027578747", + "note": [ + { + "label": [ + "Prescription m\u00e9dicamenteuse : les attentes des patients [in] Revue m\u00e9dicale suisse, 2000, 4, 2296", + "Prescription m\u00e9dicamenteuse : un acte sous influences / P. Gallois, J.-P. Vall\u00e9e, Y. Le Noc [in] M\u00e9decine, 2007, 3, 10" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Prescription m\u00e9dicale" + }, + { + "authorized_access_point": "Ordonnances m\u00e9dicales" + } + ], + "related": [ + { + "authorized_access_point": "D\u00e9prescription m\u00e9dicamenteuse" + }, + { + "authorized_access_point": "Bilan partag\u00e9 de m\u00e9dication" + }, + { + "authorized_access_point": "Chimioth\u00e9rapie" + }, + { + "authorized_access_point": "Erreurs m\u00e9dicamenteuses" + }, + { + "authorized_access_point": "M\u00e9dicaments - Modes d'administration" + }, + { + "authorized_access_point": "M\u00e9dicaments - Usage" + }, + { + "authorized_access_point": "Recommandations sur le bon usage des m\u00e9dicaments" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Auto-prescription m\u00e9dicamenteuse" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85039743", + "source": "LCSH" + } + ], + "authorized_access_point": "Drugs--Prescribing" + }, + { + "source": "RVMLaval", + "authorized_access_point": "M\u00e9dicaments--Prescription" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027578747", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119588768", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11958876", + "source": "BNF" + } + ], + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "615" + } + ], + "variant_access_point": [ + "M\u00e9dicaments - Prescription", + "M\u00e9dicaments - Prescription m\u00e9dicale", + "Prescription des m\u00e9dicaments", + "Prescription pharmaceutique" + ], + "authorized_access_point": "Prescription m\u00e9dicamenteuse" + }, + { + "md5": "4590db116ed44617e466f50bad7ae120", + "pid": "02758254X", + "note": [ + { + "label": [ + "Grand Larousse universel", + "Les Indiens d'Am\u00e9rique du Nord / G. Turner, 1985", + "Ethnologie r\u00e9gionale / J. Poirier, 1972-1978", + "Dict. des peuples / J.-C. Tamisier, 1998", + "Atlas des peuples d'Am\u00e9rique / A. Sellier, 2006", + "The Indian tribes of North America / J. R. Swanton, 1969", + "American Indian tribes / Salem Press, 1985", + "Atlas of the North American Indian / C. Waldman, 1985", + "Encycl. of world cultures / D. Levinson, 1991-1996" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Sous cette vedette, on trouve les documents sur les Iroquois proprement dits. Les documents sur l'ensemble des peuples formant la famille linguistique iroquoise se trouvent sous Iroquoiens", + "L'adjectif ethnique correspondant est \"iroquois\". Il s'accorde en genre et en nombre" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Iroquoiens" + } + ], + "related": [ + { + "authorized_access_point": "Art iroquois" + }, + { + "authorized_access_point": "L\u00e9gendes iroquoises" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Iroquoises" + }, + { + "authorized_access_point": "Mohawk (Indiens)" + }, + { + "authorized_access_point": "Oneida (Indiens)" + }, + { + "authorized_access_point": "Onondaga (Indiens)" + }, + { + "authorized_access_point": "Seneca (Indiens)" + }, + { + "authorized_access_point": "Tuscarora (Indiens)" + } + ], + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Iroquois (Indiens)" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85068260", + "source": "LCSH" + } + ], + "authorized_access_point": "Iroquois Indians" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02758254X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13318833d", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13318833", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Ethnologie, anthropologie, folklore", + "type": "bf:ClassificationDdc", + "classificationPortion": "390" + } + ], + "variant_access_point": [ + "Agoneaseah (Indiens)", + "Canton (Indiens)", + "Massawomeke (Indiens)", + "Mengwe (Indiens)", + "Ongwanonhsioni (Indiens)", + "Ongwehonweh (Indiens)", + "Six Nations (Indiens)", + "Cinq Nations (Indiens)", + "Five Nations (Indiens)", + "Haudenosaunee (Indiens)", + "Hod\u00e9-no-sau-nee (Indiens)", + "Hodenosaunee (Indiens)", + "Iroquois", + "Ligue des Cinq Nations (Indiens)", + "Ligue des Six Nations (Indiens)" + ], + "authorized_access_point": "Iroquois (Indiens)" + }, + { + "md5": "6fe4e760eceafb062855943dfd7d210b", + "pid": "027612163", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Litt\u00e9rature canadienne de langue anglaise" + }, + { + "authorized_access_point": "Roman anglophone" + }, + { + "authorized_access_point": "Roman canadien" + } + ], + "related": [ + { + "authorized_access_point": "Romanciers canadiens de langue anglaise" + } + ], + "bnf_type": "genre/forme Rameau", + "narrower": [ + { + "authorized_access_point": "Roman autobiographique canadien de langue anglaise" + }, + { + "authorized_access_point": "Roman d'aventures canadien de langue anglaise" + }, + { + "authorized_access_point": "Roman historique canadien de langue anglaise" + }, + { + "authorized_access_point": "Roman policier canadien de langue anglaise" + }, + { + "authorized_access_point": "Roman sentimental canadien de langue anglaise" + }, + { + "authorized_access_point": "Thriller (roman) canadien de langue anglaise" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85019380", + "source": "LCSH" + } + ], + "authorized_access_point": "Canadian fiction" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Roman canadien-anglais" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027612163", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11961467q", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11961467", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Histoire et critique litt\u00e9raires", + "type": "bf:ClassificationDdc", + "classificationPortion": "800" + } + ], + "variant_access_point": [ + "Roman anglophone canadien" + ], + "authorized_access_point": "Roman canadien de langue anglaise" + }, + { + "md5": "a9885a9ad1960474cbb881b5e1fd0e2d", + "pid": "027613275", + "note": [ + { + "label": [ + "Tr\u00e9sor de la langue fran\u00e7aise", + "Nouveau petit Robert 1993" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Comp\u00e9titions \u00e9questres" + }, + { + "authorized_access_point": "Spectacles et divertissements" + } + ], + "related": [ + { + "authorized_access_point": "Cow-boys" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85114811", + "source": "LCSH" + } + ], + "authorized_access_point": "Rodeos" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Rod\u00e9os" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027613275", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11961559c", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11961559", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Arts du spectacle", + "type": "bf:ClassificationDdc", + "classificationPortion": "790" + }, + { + "name": "Sports", + "type": "bf:ClassificationDdc", + "classificationPortion": "793" + } + ], + "authorized_access_point": "Rod\u00e9os" + }, + { + "md5": "1e2bbe3bdb53be721a197e64ef9314d5", + "pid": "027616908", + "note": [ + { + "label": [ + "Dict. de l'\u00e9ducation / A. van Zanten, 2008", + "Th\u00e9saurus europ\u00e9en de l'\u00e9ducation - http://eacea.ec.europa.eu/education (2009-11-30)", + "Int\u00e9gration scolaire des enfants immigrants en Europe : dispositif en faveur de la communication avec les familles immigrantes et de l'enseignement de la langue d'origine des enfants immigrants / communaut\u00e9s europ\u00e9ennes, 2009 - http://www.eacea.ec.europa.eu (2009-11-30)" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Sous cette vedette, on trouve les documents sur les syst\u00e8mes scolaires qui permettent d'accueillir dans le cycle \u00e9ducatif courant les enfants \u00e0 besoins \u00e9ducatifs particuliers ou sp\u00e9ciaux (accompagn\u00e9s en outre de soins m\u00e9dicaux). Les documents sur l'aspect psychologique de l'int\u00e9gration scolaire se trouvent sous Adaptation scolaire" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "\u00c9ducation sp\u00e9ciale" + }, + { + "authorized_access_point": "P\u00e9dagogie sociale" + } + ], + "related": [ + { + "authorized_access_point": "Adaptation scolaire" + }, + { + "authorized_access_point": "Ateliers relais" + }, + { + "authorized_access_point": "Classes relais" + }, + { + "authorized_access_point": "Conception universelle de l'apprentissage" + }, + { + "authorized_access_point": "Discrimination en \u00e9ducation" + }, + { + "authorized_access_point": "Enfants appartenant \u00e0 des minorit\u00e9s" + }, + { + "authorized_access_point": "Enfants difficiles - \u00c9ducation" + }, + { + "authorized_access_point": "Enfants handicap\u00e9s - \u00c9ducation" + }, + { + "authorized_access_point": "Enfants inadapt\u00e9s - \u00c9ducation" + }, + { + "authorized_access_point": "Enfants surdou\u00e9s" + }, + { + "authorized_access_point": "Enseignements g\u00e9n\u00e9raux et professionnels adapt\u00e9s" + }, + { + "authorized_access_point": "Objectifs d'int\u00e9gration (\u00e9ducation)" + }, + { + "authorized_access_point": "S\u00e9gr\u00e9gation en \u00e9ducation" + }, + { + "authorized_access_point": "Sociologie de l'\u00e9ducation" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Besoins \u00e9ducatifs particuliers" + }, + { + "authorized_access_point": "Certificat d'aptitude aux actions p\u00e9dagogiques sp\u00e9cialis\u00e9es de l'adaptation et de l'int\u00e9gration scolaires" + }, + { + "authorized_access_point": "P\u00e9dagogie culturellement adapt\u00e9e" + }, + { + "authorized_access_point": "Services d'\u00e9ducation sp\u00e9cialis\u00e9e et de soins \u00e0 domicile" + }, + { + "authorized_access_point": "Unit\u00e9s localis\u00e9es pour l'inclusion scolaire" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85079929", + "source": "LCSH" + } + ], + "authorized_access_point": "Mainstreaming in education" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Int\u00e9gration scolaire" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027616908", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11961876s", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11961876", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Education et enseignement", + "type": "bf:ClassificationDdc", + "classificationPortion": "370" + } + ], + "variant_access_point": [ + "Adaptation et int\u00e9gration scolaire", + "AIS", + "D\u00e9s\u00e9gr\u00e9gation en \u00e9ducation", + "\u00c9ducation - Int\u00e9gration", + "\u00c9ducation inclusive", + "\u00c9ducation int\u00e9grative", + "\u00c9ducation int\u00e9gratrice", + "Inclusion en \u00e9ducation", + "Int\u00e9gration en \u00e9ducation" + ], + "authorized_access_point": "Int\u00e9gration scolaire" + }, + { + "md5": "4de1d5ac84b50f3082a3396150cbc9ac", + "pid": "027636461", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bibliographie - M\u00e9thodologie" + }, + { + "authorized_access_point": "Bibliographie" + } + ], + "related": [ + { + "authorized_access_point": "Notes (paratexte)" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Recherche documentaire" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027636461", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11963535v", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11963535", + "source": "BNF" + } + ], + "variant_access_point": [ + "Citations bibliographiques", + "Information bibliographique", + "Informations bibliographiques", + "Notices bibliographiques", + "Renseignements bibliographiques" + ], + "authorized_access_point": "R\u00e9f\u00e9rences bibliographiques" + }, + { + "md5": "4ec4498bd3745f175daf5dc66954daf9", + "pid": "02767391X", + "note": [ + { + "label": [ + "Encycl. des jeux vid\u00e9o / F. Sanchez, 2008", + "La saga des jeux vid\u00e9o / D. Ichbiah, 2011", + "Jeuxvideo.com : la r\u00e9f\u00e9rence des jeux vid\u00e9o sur PC et consoles" + ], + "noteType": "dataSource" + }, + { + "label": [ + "S'emploie \u00e9galement en subdivision" + ], + "noteType": "general" + }, + { + "label": [ + "Voir aussi la subdivision Dans les jeux vid\u00e9o \u00e0 tous sujets noms communs et noms propres" + ], + "noteType": "seeReference" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Jeux" + }, + { + "authorized_access_point": "Jeux \u00e9lectroniques" + }, + { + "authorized_access_point": "Logiciels" + } + ], + "related": [ + { + "authorized_access_point": "Allegro (informatique)" + }, + { + "authorized_access_point": "Biblioth\u00e8ques et jeux vid\u00e9o" + }, + { + "authorized_access_point": "Cin\u00e9ma et jeux vid\u00e9o" + }, + { + "authorized_access_point": "Concepteurs de jeux vid\u00e9o" + }, + { + "authorized_access_point": "Dans les jeux vid\u00e9o" + }, + { + "authorized_access_point": "Jeux vid\u00e9o et histoire" + }, + { + "authorized_access_point": "Joueurs de jeux vid\u00e9o" + }, + { + "authorized_access_point": "Pixel art" + }, + { + "authorized_access_point": "Salles d'arcades" + }, + { + "authorized_access_point": "Machinimas" + }, + { + "authorized_access_point": "Musique de jeux vid\u00e9o" + } + ], + "bnf_type": "genre/forme Rameau", + "narrower": [ + { + "authorized_access_point": "Arcade (jeux vid\u00e9o)" + }, + { + "authorized_access_point": "Game Boy (jeux vid\u00e9o)" + }, + { + "authorized_access_point": "Jeux de combat (jeux vid\u00e9o)" + }, + { + "authorized_access_point": "Jeux de gestion (jeux vid\u00e9o)" + }, + { + "authorized_access_point": "Jeux vid\u00e9o de course" + }, + { + "authorized_access_point": "Jeux vid\u00e9o de r\u00f4le" + }, + { + "authorized_access_point": "Manettes de jeux vid\u00e9o" + }, + { + "authorized_access_point": "Neo-Geo (jeux vid\u00e9o)" + }, + { + "authorized_access_point": "Nintendo (jeux vid\u00e9o)" + }, + { + "authorized_access_point": "PC-Engine (jeux vid\u00e9o)" + }, + { + "authorized_access_point": "Personnages de jeux vid\u00e9o" + }, + { + "authorized_access_point": "PlayStation (jeux vid\u00e9o)" + }, + { + "authorized_access_point": "Publicit\u00e9 int\u00e9gr\u00e9e dans les jeux vid\u00e9o" + }, + { + "authorized_access_point": "Sega (jeux vid\u00e9o)" + }, + { + "authorized_access_point": "Sport \u00e9lectronique" + }, + { + "authorized_access_point": "Xbox (jeux vid\u00e9o)" + }, + { + "authorized_access_point": "Jeux d'aventure (jeux vid\u00e9o)" + }, + { + "authorized_access_point": "Jeux de civilisation" + }, + { + "authorized_access_point": "Jeux de guerre (jeux vid\u00e9o)" + }, + { + "authorized_access_point": "Jeux musicaux (jeux vid\u00e9o)" + }, + { + "authorized_access_point": "Jeux sur mobiles" + }, + { + "authorized_access_point": "Logiciels ludo\u00e9ducatifs" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85143202", + "source": "LCSH" + } + ], + "authorized_access_point": "Video games" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85029499", + "source": "LCSH" + } + ], + "authorized_access_point": "Computer games" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Jeux vid\u00e9o" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Jeux d'ordinateur" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02767391X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13318902d", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13318902", + "source": "BNF" + } + ], + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + }, + { + "name": "Jeux", + "type": "bf:ClassificationDdc", + "classificationPortion": "793" + } + ], + "variant_access_point": [ + "Consoles de jeux vid\u00e9o", + "Jeux - Logiciels", + "Jeux d'ordinateur", + "Jeux informatiques", + "Jeux informatis\u00e9s", + "Jeux sur consoles", + "Jeux sur microordinateurs", + "Jeux sur ordinateur", + "Logiciels de jeu", + "Logiciels ludiques", + "Ludiciels" + ], + "authorized_access_point": "Jeux vid\u00e9o" + }, + { + "md5": "d079f2248c5dfedf30e9dc85dad12fdb", + "pid": "027674118", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "T\u00e9l\u00e9tel (service t\u00e9l\u00e9matique)" + }, + { + "authorized_access_point": "Terminaux \u00e0 \u00e9cran de visualisation" + } + ], + "related": [ + { + "authorized_access_point": "Annuaires t\u00e9l\u00e9phoniques \u00e9lectroniques" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027674118", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11966659v", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11966659", + "source": "BNF" + } + ], + "authorized_access_point": "Minitel (terminal vid\u00e9otex)" + }, + { + "md5": "7e20a24a3cf6f0cec3f8f26b33ab4fd3", + "pid": "027674150", + "note": [ + { + "label": [ + "Voir aussi la subdivision Structure aux produits chimiques" + ], + "noteType": "seeReference" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mol\u00e9cules" + }, + { + "authorized_access_point": "Structure chimique" + } + ], + "related": [ + { + "authorized_access_point": "Structure" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "G-quadruplexes" + }, + { + "authorized_access_point": "Aromaticit\u00e9" + }, + { + "authorized_access_point": "M\u00e9thodes ab initio (chimie quantique)" + }, + { + "authorized_access_point": "Spectroscopie mol\u00e9culaire" + }, + { + "authorized_access_point": "Structure atomique" + }, + { + "authorized_access_point": "Structure \u00e9lectronique" + } + ], + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Structure mol\u00e9culaire" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85086594", + "source": "LCSH" + } + ], + "authorized_access_point": "Molecular structure" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027674150", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11966661d", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11966661", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Chimie, min\u00e9ralogie, cristallographie", + "type": "bf:ClassificationDdc", + "classificationPortion": "540" + } + ], + "variant_access_point": [ + "Mol\u00e9cules - Structure" + ], + "authorized_access_point": "Structure mol\u00e9culaire" + }, + { + "md5": "3f9af523b435cb448fe74ad6f7595290", + "pid": "027682226", + "note": [ + { + "label": [ + "Palestiniens -- Politique et gouvernement ; Laval RVM, 2001-07" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Voir aussi aux noms des organisations palestiniennes, par ex. : Organisation de lib\u00e9ration de la Palestine" + ], + "noteType": "seeReference" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Palestiniens" + }, + { + "authorized_access_point": "Conflit isra\u00e9lo-arabe" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Fedayin" + }, + { + "authorized_access_point": "Intifada (1987-1993)" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2001009475", + "source": "LCSH" + } + ], + "authorized_access_point": "Palestinian Arabs--Politics and government" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027682226", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119672904", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11967290", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Science politique", + "type": "bf:ClassificationDdc", + "classificationPortion": "320" + }, + { + "name": "Histoire du reste du monde", + "type": "bf:ClassificationDdc", + "classificationPortion": "950" + } + ], + "variant_access_point": [ + "Mouvements de r\u00e9sistance palestiniens", + "Palestiniens - Activit\u00e9 politique", + "Question palestinienne (1948-....)", + "R\u00e9sistance palestinienne" + ], + "authorized_access_point": "Palestiniens - Politique et gouvernement - 1948-...." + }, + { + "md5": "0dae31e85ba705fac05b78b832f10569", + "pid": "027688836", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Appareils enregistreurs" + }, + { + "authorized_access_point": "Dispositifs opto\u00e9lectroniques" + }, + { + "authorized_access_point": "Dispositifs photo\u00e9lectroniques" + }, + { + "authorized_access_point": "Gestion \u00e9lectronique de documents" + }, + { + "authorized_access_point": "Ordinateurs - \u00c9quipement d'entr\u00e9e-sortie" + }, + { + "authorized_access_point": "Ordinateurs - \u00c9quipement optique" + }, + { + "authorized_access_point": "Traitement optique de l'information" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "\u00c9crans radioluminescents \u00e0 m\u00e9moire" + }, + { + "authorized_access_point": "\u00c9crans tactiles" + }, + { + "authorized_access_point": "Tubes \u00e0 rayons cathodiques" + }, + { + "authorized_access_point": "Affichage par \u00e9lectroluminescence" + }, + { + "authorized_access_point": "Casques de visualisation" + }, + { + "authorized_access_point": "Affichage sur \u00e9cran de t\u00e9l\u00e9vision" + }, + { + "authorized_access_point": "\u00c9crans plats" + }, + { + "authorized_access_point": "Amplificateurs de luminance" + }, + { + "authorized_access_point": "Collimateurs de pilotage" + }, + { + "authorized_access_point": "Dispositifs \u00e9lectrochromiques" + }, + { + "authorized_access_point": "Imagerie quadridimensionnelle" + }, + { + "authorized_access_point": "Imagerie tridimensionnelle" + }, + { + "authorized_access_point": "Syst\u00e8mes d'affichage \u00e0 cristaux liquides" + }, + { + "authorized_access_point": "Terminaux \u00e0 \u00e9cran de visualisation" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85066140", + "source": "LCSH" + } + ], + "authorized_access_point": "Information display systems" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027688836", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11967772k", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11967772", + "source": "BNF" + } + ], + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + }, + { + "name": "Sciences appliqu\u00e9es", + "type": "bf:ClassificationDdc", + "classificationPortion": "600" + } + ], + "variant_access_point": [ + "Affichage (technique)", + "Affichage, Syst\u00e8mes d'", + "Syst\u00e8mes de visualisation de l'information", + "Visualisation (informatique)", + "Visualisation de l'information, Syst\u00e8mes de", + "Visuel (informatique)", + "Afficheurs", + "Dispositifs d'affichage", + "Dispositifs de visualisation de l'information", + "Donn\u00e9es - Affichage", + "Donn\u00e9es - Syst\u00e8mes de visualisation", + "Donn\u00e9es - Visualisation", + "Information, Syst\u00e8mes d'affichage de l'", + "Information, Syst\u00e8mes de visualisation de l'" + ], + "authorized_access_point": "Syst\u00e8mes d'affichage" + }, + { + "md5": "95d93a059c417c9d1c818e28e243f7d7", + "pid": "027694852", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Apple (ordinateurs)" + } + ], + "related": [ + { + "authorized_access_point": "PowerMac (ordinateur)" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "AppleTalk (syst\u00e8me de r\u00e9seau local)" + }, + { + "authorized_access_point": "Macintosh Classic (ordinateur)" + }, + { + "authorized_access_point": "Macintosh PowerBook (bloc-notes)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027694852", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11968218n", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11968218", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Physique appliqu\u00e9e", + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "variant_access_point": [ + "Apple Macintosh (ordinateur)" + ], + "authorized_access_point": "Macintosh (ordinateur)" + }, + { + "md5": "2cb17d696df5f36b0255c7a92b571a09", + "pid": "027710025", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Alimentations (\u00e9lectricit\u00e9)" + }, + { + "authorized_access_point": "\u00c9lectronique de puissance" + }, + { + "authorized_access_point": "Machines \u00e9lectriques" + } + ], + "related": [ + { + "authorized_access_point": "Commutation (\u00e9lectricit\u00e9)" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Redresseurs int\u00e9gr\u00e9s" + }, + { + "authorized_access_point": "Convertisseurs multiniveaux" + }, + { + "authorized_access_point": "Changeurs de fr\u00e9quence" + }, + { + "authorized_access_point": "Convertisseurs \u00e0 thyristors" + }, + { + "authorized_access_point": "Convertisseurs continu-continu" + }, + { + "authorized_access_point": "Hacheurs (\u00e9lectricit\u00e9)" + }, + { + "authorized_access_point": "Klystrons" + }, + { + "authorized_access_point": "Onduleurs (\u00e9lectricit\u00e9)" + } + ], + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Convertisseurs \u00e9lectriques" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85041637", + "source": "LCSH" + } + ], + "authorized_access_point": "Electric current converters" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027710025", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119694309", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11969430", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Sciences appliqu\u00e9es", + "type": "bf:ClassificationDdc", + "classificationPortion": "600" + } + ], + "variant_access_point": [ + "Conversion de courant (\u00e9lectricit\u00e9)", + "Convertisseurs \u00e9lectroniques", + "Courants \u00e9lectriques - Convertisseurs" + ], + "authorized_access_point": "Convertisseurs \u00e9lectriques" + }, + { + "md5": "24e37612ed60ed2f8b07af5dabf3f68d", + "pid": "027727327", + "note": [ + { + "label": [ + "Grand Larousse universel", + "Grand Robert de la langue fran\u00e7aise, 2001" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Communisme" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Maccarthysme" + }, + { + "authorized_access_point": "Op\u00e9ration Zypresse (1944)" + }, + { + "authorized_access_point": "Propagande anticommuniste" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027727327", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11970825v", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11970825", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Science politique", + "type": "bf:ClassificationDdc", + "classificationPortion": "320" + } + ], + "variant_access_point": [ + "Anti-communisme", + "Communisme - Mouvements d'opposition", + "Mouvements anti-communistes", + "Mouvements anticommunistes", + "Opposition au communisme", + "R\u00e9sistance contre le communisme" + ], + "authorized_access_point": "Anticommunisme" + }, + { + "md5": "b8eee0abfc5fd32b90d371ce09830c18", + "pid": "027727521", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Noirs am\u00e9ricains" + }, + { + "authorized_access_point": "Noirs am\u00e9ricains - Droits" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Leadership noir am\u00e9ricain" + }, + { + "authorized_access_point": "Nationalisme noir - \u00c9tats-Unis" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh95010593", + "source": "LCSH" + } + ], + "authorized_access_point": "African Americans--Politics and government" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Noirs am\u00e9ricains -- Politique et gouvernement" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027727521", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119708413", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11970841", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Science politique", + "type": "bf:ClassificationDdc", + "classificationPortion": "320" + }, + { + "name": "Ethnologie", + "type": "bf:ClassificationDdc", + "classificationPortion": "390" + } + ], + "variant_access_point": [ + "Noirs am\u00e9ricains - Activit\u00e9 politique" + ], + "authorized_access_point": "Noirs am\u00e9ricains - Politique et gouvernement" + }, + { + "md5": "0e38441fe871b86757b8ed73aff7eb90", + "pid": "027729044", + "note": [ + { + "label": [ + "Mourre", + "GLU" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Consuls (Rome)" + }, + { + "authorized_access_point": "Magistrats (Rome)" + }, + { + "authorized_access_point": "Provinces romaines" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85107160", + "source": "LCSH" + } + ], + "authorized_access_point": "Proconsuls, Roman" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027729044", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119709792", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11970979", + "source": "BNF" + } + ], + "variant_access_point": [ + "Proconsulat (Rome)", + "Proconsuls romains" + ], + "authorized_access_point": "Proconsuls (Rome)" + }, + { + "md5": "d2f2fd808af1c7ca75810fc95527eedd", + "pid": "027735893", + "note": [ + { + "label": [ + "GDEL" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Commutation de paquets" + }, + { + "authorized_access_point": "T\u00e9l\u00e9communications - France" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027735893", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11971521w", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11971521", + "source": "BNF" + } + ], + "variant_access_point": [ + "R\u00e9seau Transpac" + ], + "authorized_access_point": "Transpac (r\u00e9seau de transmission de donn\u00e9es)" + }, + { + "md5": "999940958772c71cf96030c7491d707d", + "pid": "027756580", + "note": [ + { + "label": [ + "Grand Larousse universel", + "Encycl. universalis (art. : Sunnisme) - http://www.universalis-edu.com (2016-01-11)", + "W\u012bk\u012bb\u012bdy\u0101 al-maws\u016b\u02bfa\u1e97 al-\u1e25urra\u1e97 - http://ar.wikipedia.org (2018-10-29)", + "Al-mun\u01e7id f\u012b al-lu\u0121a\u1e97 wa al-a\u02bfl\u0101m / D\u0101r al-Ma\u0161riq, 2005", + "Dict. historique de l'islam / J. et D. Sourdel, 2004", + "Dict. encyclop\u00e9dique de l'islam / C. Glass\u00e9, 1991 : sunnah", + "BnF Service arabe, 2018-10-29" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Paroles et actes du Proph\u00e8te donn\u00e9s en exemple, comprenant ce qu'il a approuv\u00e9, autoris\u00e9 ou absous, tels qu'ils sont fix\u00e9s dans les Hadith, et qui constituent la coutume et fondent les usages dans l'islam sunnite" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Islam" + } + ], + "related": [ + { + "authorized_access_point": "Sunnisme" + }, + { + "authorized_access_point": "Litt\u00e9rature islamique" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027756580", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11973106c", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11973106", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", + "type": "bf:ClassificationDdc", + "classificationPortion": "200" + } + ], + "variant_access_point": [ + "Sunna\u1e97", + "\u0633\u0646\u0651\u0629", + "Sunnah", + "Al- sunna\u1e97", + "\u0627\u0644\u0633\u0646\u0651\u0629", + "Tradition (islam)" + ], + "authorized_access_point": "Sunna" + }, + { + "md5": "4f5fc72af0f2bbe017483483c78e8ea4", + "pid": "027756653", + "note": [ + { + "label": [ + "Grand Robert de la langue fran\u00e7aise, 2001", + "Dicobat 10 : dict. g\u00e9n\u00e9ral du b\u00e2timent / J. de Vigan, 2011" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Construction - Mat\u00e9riaux" + }, + { + "authorized_access_point": "Couverture (construction)" + } + ], + "related": [ + { + "authorized_access_point": "Construction en tuiles" + }, + { + "authorized_access_point": "Toits en tuiles" + }, + { + "authorized_access_point": "Tuileries" + }, + { + "authorized_access_point": "Tuiles - Industrie et commerce" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Tuiles \u00e0 embo\u00eetement" + }, + { + "authorized_access_point": "Tuiles antiques" + }, + { + "authorized_access_point": "Tuiles en b\u00e9ton" + }, + { + "authorized_access_point": "Tuiles m\u00e9di\u00e9vales" + }, + { + "authorized_access_point": "Tuiles photovolta\u00efques" + }, + { + "authorized_access_point": "Tuiles verniss\u00e9es" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85135357", + "source": "LCSH" + } + ], + "authorized_access_point": "Tiles, Roofing" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Tuiles" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027756653", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119731129", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11973112", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Sciences appliqu\u00e9es", + "type": "bf:ClassificationDdc", + "classificationPortion": "600" + }, + { + "name": "B\u00e2timent", + "type": "bf:ClassificationDdc", + "classificationPortion": "690" + } + ], + "variant_access_point": [ + "Couverture en tuiles" + ], + "authorized_access_point": "Tuiles" + }, + { + "md5": "8ec0ee711f19d791032c3d27459e3227", + "pid": "027759547", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Identification automatique" + }, + { + "authorized_access_point": "Microprocesseurs" + }, + { + "authorized_access_point": "Monnaie \u00e9lectronique" + }, + { + "authorized_access_point": "Ordinateurs - M\u00e9moires" + }, + { + "authorized_access_point": "Syst\u00e8mes de s\u00e9curit\u00e9" + } + ], + "related": [ + { + "authorized_access_point": "Cartes de cr\u00e9dit" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Cartes professionnelles de sant\u00e9" + }, + { + "authorized_access_point": "Cartes de t\u00e9l\u00e9phone" + }, + { + "authorized_access_point": "Cartes de sant\u00e9" + }, + { + "authorized_access_point": "Porte-monnaie \u00e9lectronique" + } + ], + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Cartes \u00e0 m\u00e9moire" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85123621", + "source": "LCSH" + } + ], + "authorized_access_point": "Smart cards" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027759547", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119733403", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11973340", + "source": "BNF" + } + ], + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + }, + { + "name": "Sciences appliqu\u00e9es", + "type": "bf:ClassificationDdc", + "classificationPortion": "600" + } + ], + "variant_access_point": [ + "Billettique", + "Cartes \u00e0 circuit int\u00e9gr\u00e9", + "Cartes \u00e0 microcircuit", + "Cartes \u00e0 microprocesseur", + "Cartes \u00e0 pistes magn\u00e9tiques", + "Cartes \u00e0 puce", + "Cartes \u00e9lectroniques", + "Cartes informatiques", + "Cartes intelligentes", + "Cartes magn\u00e9tiques" + ], + "authorized_access_point": "Cartes \u00e0 m\u00e9moire" + }, + { + "md5": "4c40e3a6fc978c3c8fbad518692ff53c", + "pid": "027789551", + "note": [ + { + "label": [ + "Encycl. autodidactique Quillet, 1998", + "Wikip\u00e9dia : entreprise de service du num\u00e9rique - http://fr.wikipedia.org (2017-05-31)", + "Encycl. de l'informatique et des syst\u00e8mes d'information, 2006", + "Le guide des SSII / P. Caillerez, 2013", + "Dico du net : SSII - Soci\u00e9t\u00e9 de Services en Ing\u00e9ni\u00e9rie Informatique - http://www.dicodunet.com (2017-05-31)", + "Les services num\u00e9riques / DGE, Direction g\u00e9n\u00e9rale des entreprises : entreprises de services num\u00e9riques (ESN, nouveau nom des SSII) - http://www.entreprises.gouv.fr/services/services-numeriques (2017-05-31)" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Soci\u00e9t\u00e9s de conseil sp\u00e9cialis\u00e9es en g\u00e9nie informatique. L'appellation \"entreprise de services du num\u00e9rique\" (ESN), d\u00e9cid\u00e9e par le Syntec Num\u00e9rique en 2013, reste tr\u00e8s peu usit\u00e9e face \u00e0 soci\u00e9t\u00e9 de services en ing\u00e9ni\u00e9rie informatique (SSII)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Informatique - Industrie et commerce" + }, + { + "authorized_access_point": "Soci\u00e9t\u00e9s de conseil" + } + ], + "related": [ + { + "authorized_access_point": "Centres de traitement informatique" + }, + { + "authorized_access_point": "Infog\u00e9rance" + }, + { + "authorized_access_point": "Informaticiens-conseils" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Soci\u00e9t\u00e9s de services en logiciels libres" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027789551", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11975653r", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11975653", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Economie", + "type": "bf:ClassificationDdc", + "classificationPortion": "330" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + }, + { + "name": "Gestion et organisation de l'entreprise", + "type": "bf:ClassificationDdc", + "classificationPortion": "650" + } + ], + "variant_access_point": [ + "Entreprises de services du num\u00e9rique", + "Entreprises de services num\u00e9riques", + "SS2I", + "SSCI", + "SSII", + "ESN", + "Informatique - Soci\u00e9t\u00e9s de services et de conseil", + "Ing\u00e9nierie informatique, Soci\u00e9t\u00e9s de services en", + "Num\u00e9rique, Entreprises de services du", + "Services informatiques, Soci\u00e9t\u00e9s de", + "Soci\u00e9t\u00e9s d'ing\u00e9nierie informatique", + "Soci\u00e9t\u00e9s de services et d'ing\u00e9ni\u00e9rie informatique", + "Soci\u00e9t\u00e9s de services et de conseil en informatique" + ], + "authorized_access_point": "Soci\u00e9t\u00e9s de services en ing\u00e9nierie informatique" + }, + { + "md5": "03cf88cceacf2bac9127c1ab2f8d9020", + "pid": "027793575", + "note": [ + { + "label": [ + "GDEL" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Logiciels" + } + ], + "related": [ + { + "authorized_access_point": "Grapheurs" + }, + { + "authorized_access_point": "Solveurs (logiciels)" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Tableurs" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85042371", + "source": "LCSH" + } + ], + "authorized_access_point": "Electronic spreadsheets" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027793575", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119759647", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11975964", + "source": "BNF" + } + ], + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "variant_access_point": [ + "Chiffriers \u00e9lectroniques", + "Feuilles de calcul \u00e9lectroniques" + ], + "authorized_access_point": "Tableurs" + }, + { + "md5": "b9df34441a3ac3718439a88c79ee422b", + "pid": "027800512", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Litt\u00e9rature fran\u00e7aise" + }, + { + "authorized_access_point": "Roman francophone" + } + ], + "related": [ + { + "authorized_access_point": "Romanciers fran\u00e7ais" + } + ], + "bnf_type": "genre/forme Rameau", + "narrower": [ + { + "authorized_access_point": "Nouveau roman" + }, + { + "authorized_access_point": "Politique-fiction fran\u00e7aise" + }, + { + "authorized_access_point": "Roman biographique fran\u00e7ais" + }, + { + "authorized_access_point": "Roman courtois fran\u00e7ais" + }, + { + "authorized_access_point": "Roman d'amour fran\u00e7ais" + }, + { + "authorized_access_point": "Roman d'aventures fran\u00e7ais" + }, + { + "authorized_access_point": "Roman d'\u00e9ducation fran\u00e7ais" + }, + { + "authorized_access_point": "Roman d'espionnage fran\u00e7ais" + }, + { + "authorized_access_point": "Roman de chevalerie fran\u00e7ais" + }, + { + "authorized_access_point": "Roman de moeurs fran\u00e7ais" + }, + { + "authorized_access_point": "Roman de science-fiction fran\u00e7ais" + }, + { + "authorized_access_point": "Roman en vers fran\u00e7ais" + }, + { + "authorized_access_point": "Roman \u00e9pistolaire fran\u00e7ais" + }, + { + "authorized_access_point": "Roman exp\u00e9rimental fran\u00e7ais" + }, + { + "authorized_access_point": "Roman fantastique fran\u00e7ais" + }, + { + "authorized_access_point": "Roman fran\u00e7ais pour la jeunesse" + }, + { + "authorized_access_point": "Roman gothique fran\u00e7ais" + }, + { + "authorized_access_point": "Roman h\u00e9ro\u00efque" + }, + { + "authorized_access_point": "Roman historique fran\u00e7ais" + }, + { + "authorized_access_point": "Roman pastoral fran\u00e7ais" + }, + { + "authorized_access_point": "Roman philosophique fran\u00e7ais" + }, + { + "authorized_access_point": "Roman picaresque fran\u00e7ais" + }, + { + "authorized_access_point": "Roman policier fran\u00e7ais" + }, + { + "authorized_access_point": "Roman populaire fran\u00e7ais" + }, + { + "authorized_access_point": "Roman pr\u00e9historique fran\u00e7ais" + }, + { + "authorized_access_point": "Roman r\u00e9gionaliste fran\u00e7ais" + }, + { + "authorized_access_point": "Roman rustique fran\u00e7ais" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85051802", + "source": "LCSH" + } + ], + "authorized_access_point": "French fiction" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Roman fran\u00e7ais" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027800512", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11976487r", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11976487", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Histoire et critique litt\u00e9raires", + "type": "bf:ClassificationDdc", + "classificationPortion": "800" + } + ], + "authorized_access_point": "Roman fran\u00e7ais" + }, + { + "md5": "e9890918c9073e6ea21f7ae4cd03ee31", + "pid": "027802973", + "note": [ + { + "label": [ + "Grand Larousse universel", + "Grand Robert de la langue fran\u00e7aise, 2001" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Constructions commerciales" + } + ], + "related": [ + { + "authorized_access_point": "Centres commerciaux" + }, + { + "authorized_access_point": "Commer\u00e7ants" + }, + { + "authorized_access_point": "Commerce de d\u00e9tail" + }, + { + "authorized_access_point": "Coop\u00e9ratives de consommation" + }, + { + "authorized_access_point": "Entreprises \u00e0 succursales" + }, + { + "authorized_access_point": "Magasins - Fa\u00e7ades" + }, + { + "authorized_access_point": "Magasins - Horaires et jours d'ouverture" + }, + { + "authorized_access_point": "Magasins - Localisation" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "D\u00e9p\u00f4ts-ventes" + }, + { + "authorized_access_point": "Grands magasins" + }, + { + "authorized_access_point": "Magasins d'usine" + }, + { + "authorized_access_point": "Magasins de centre-ville" + }, + { + "authorized_access_point": "Magasins discount" + }, + { + "authorized_access_point": "Magasins en libre-service" + }, + { + "authorized_access_point": "Magasins \u00e9ph\u00e9m\u00e8res" + }, + { + "authorized_access_point": "Magasins populaires" + }, + { + "authorized_access_point": "Magasins sp\u00e9cialis\u00e9s" + }, + { + "authorized_access_point": "Petits commerces" + }, + { + "authorized_access_point": "Rayons de magasin" + }, + { + "authorized_access_point": "Sex-shops" + }, + { + "authorized_access_point": "Tabernae" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85128377", + "source": "LCSH" + } + ], + "authorized_access_point": "Stores, Retail" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Magasins" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027802973", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119766650", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11976665", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Economie", + "type": "bf:ClassificationDdc", + "classificationPortion": "330" + }, + { + "name": "B\u00e2timent", + "type": "bf:ClassificationDdc", + "classificationPortion": "690" + } + ], + "variant_access_point": [ + "Boutiques", + "Commerces", + "\u00c9tablissements commerciaux", + "Magasins de d\u00e9tail", + "Magasins de vente au d\u00e9tail" + ], + "authorized_access_point": "Magasins" + }, + { + "md5": "b43807ab0b1a5343da8df6c638fb317b", + "pid": "027808394", + "note": [ + { + "label": [ + "Encycl. universalis (art. : Mauroy, Pierre) : droits des salari\u00e9s dans l'entreprise ; (art. : Services, \u00c9conomie de) : droits du personnel - http://www.universalis-edu.com (2016-05-13)", + "Les droits des travailleurs / J. Auroux, 1982", + "Droits des salari\u00e9s : salari\u00e9s du priv\u00e9, guide juridique de la CFDT / T. Ouazan, 2015" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Droit du travail" + }, + { + "authorized_access_point": "Droits \u00e9conomiques et sociaux" + } + ], + "related": [ + { + "authorized_access_point": "Personnel" + }, + { + "authorized_access_point": "Religion en milieu de travail" + }, + { + "authorized_access_point": "R\u00e8glement int\u00e9rieur" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Bases de donn\u00e9es \u00e9conomiques et sociales (relations industrielles)" + }, + { + "authorized_access_point": "Communication en direction du personnel" + }, + { + "authorized_access_point": "Droit de gr\u00e8ve" + }, + { + "authorized_access_point": "Expression des salari\u00e9s" + }, + { + "authorized_access_point": "Repr\u00e9sentation du personnel" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027808394", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11977077k", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11977077", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Droit", + "type": "bf:ClassificationDdc", + "classificationPortion": "340" + } + ], + "variant_access_point": [ + "Droits des salari\u00e9s dans l'entreprise", + "Droits des travailleurs dans l'entreprise", + "Droits du personnel dans l'entreprise", + "Entreprises - Droits du personnel", + "Travailleurs - Droits" + ], + "authorized_access_point": "Personnel - Droits" + }, + { + "md5": "b57c72553c6cb2cad1cd82a4c7ab3704", + "pid": "027808629", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Recteurs d'acad\u00e9mie" + }, + { + "authorized_access_point": "Enseignement sup\u00e9rieur - R\u00e9forme" + }, + { + "authorized_access_point": "Autonomie universitaire" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "\u00c9tudiants - Participation \u00e0 la gestion de l'administration" + }, + { + "authorized_access_point": "Coop\u00e9ration universitaire" + }, + { + "authorized_access_point": "Pr\u00e9sidents et recteurs d'universit\u00e9" + }, + { + "authorized_access_point": "Enseignants - Participation \u00e0 la gestion de l'administration" + }, + { + "authorized_access_point": "Doyens (enseignement sup\u00e9rieur)" + }, + { + "authorized_access_point": "Biblioth\u00e9caires d'universit\u00e9 - Rang de professeur" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027808629", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11977092g", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11977092", + "source": "BNF" + } + ], + "variant_access_point": [ + "Administration universitaire" + ], + "authorized_access_point": "Universit\u00e9s - Administration" + }, + { + "md5": "19495c6ffabc304640ca0ee562ee256a", + "pid": "02781971X", + "note": [ + { + "label": [ + "Sous cette vedette, on trouve les recueils de litt\u00e9rature danoise de divers genres" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Civilisation - Danemark" + }, + { + "authorized_access_point": "Litt\u00e9rature scandinave" + } + ], + "related": [ + { + "authorized_access_point": "Danois (langue)" + }, + { + "authorized_access_point": "\u00c9crivains danois" + }, + { + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Allemande et danoise" + }, + { + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Danoise et fran\u00e7aise" + } + ], + "bnf_type": "genre/forme Rameau", + "narrower": [ + { + "authorized_access_point": "Autobiographie danoise" + }, + { + "authorized_access_point": "Contes litt\u00e9raires danois" + }, + { + "authorized_access_point": "\u00c9crits anonymes danois" + }, + { + "authorized_access_point": "Essai (genre litt\u00e9raire) danois" + }, + { + "authorized_access_point": "Fables danoises" + }, + { + "authorized_access_point": "Journaux intimes danois" + }, + { + "authorized_access_point": "Litt\u00e9rature danoise pour la jeunesse" + }, + { + "authorized_access_point": "Litt\u00e9rature populaire danoise" + }, + { + "authorized_access_point": "M\u00e9moires (genre litt\u00e9raire) danois" + }, + { + "authorized_access_point": "Nouvelles danoises" + }, + { + "authorized_access_point": "Po\u00e9sie danoise" + }, + { + "authorized_access_point": "Prose danoise" + }, + { + "authorized_access_point": "R\u00e9cits de voyages danois" + }, + { + "authorized_access_point": "Roman danois" + }, + { + "authorized_access_point": "Science-fiction danoise" + }, + { + "authorized_access_point": "Sermons danois" + }, + { + "authorized_access_point": "Th\u00e9\u00e2tre (genre litt\u00e9raire) danois" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85035735", + "source": "LCSH" + } + ], + "authorized_access_point": "Danish literature" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Litt\u00e9rature danoise" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02781971X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11977960b", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11977960", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Histoire et critique litt\u00e9raires", + "type": "bf:ClassificationDdc", + "classificationPortion": "800" + } + ], + "authorized_access_point": "Litt\u00e9rature danoise" + }, + { + "md5": "31e0f11578d8fb5e027a90ed39da39bf", + "pid": "027824586", + "note": [ + { + "label": [ + "Dict. de l'Acad\u00e9mie de m\u00e9decine - http://dictionnaire.academie-medecine.fr (2013-07-17)", + "Dict. de m\u00e9decine Flammarion, 2008", + "Dict. fran\u00e7ais de m\u00e9decine et de biologie, 1981", + "Dict. illustr\u00e9 des termes de m\u00e9decine, 2008 : glycog\u00e9nique (maladie)" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Maladies h\u00e9r\u00e9ditaires m\u00e9taboliques" + }, + { + "authorized_access_point": "Troubles du m\u00e9tabolisme des glucides" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Maladie de McArdle" + }, + { + "authorized_access_point": "Maladie de Pompe" + }, + { + "authorized_access_point": "Maladie de von Gierke" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85055399", + "source": "LCSH" + } + ], + "authorized_access_point": "Glycogen storage disease" + }, + { + "source": "MeSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/M0009469", + "source": "MeSH" + } + ], + "authorized_access_point": "Glycogen Storage Disease" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Glycog\u00e9nose" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027824586", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11978325d", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11978325", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Sciences m\u00e9dicales et param\u00e9dicales", + "type": "bf:ClassificationDdc", + "classificationPortion": "610" + } + ], + "variant_access_point": [ + "Glycogen storage diseases", + "Glycog\u00e9nose", + "GSD (maladies)", + "Maladies glycog\u00e9niques", + "Polycories glycog\u00e9niques" + ], + "authorized_access_point": "Glycog\u00e9noses" + }, + { + "md5": "5f3e030e0d6c18aa6915806132f935b4", + "pid": "027826171", + "note": [ + { + "label": [ + "Grand Larousse universel : zaydisme ; zaydite ; Zaydiyya", + "Encycl. universalis : zaydiyya - http://www.universalis-edu.com (2018-05-15)", + "Al-mun\u01e7id f\u012b al-lu\u0121a\u1e97 wa al-a\u02bfl\u0101m / D\u0101r al-Ma\u0161riq, 2005", + "Dict. des religions / P. Poupard, 1985", + "Dict. encyclop\u00e9dique de l'islam / C. Glass\u00e9, 1991 : zayd\u012btes", + "Dict. historique de l'islam / J. et D. Sourdel, 1996 : zaydisme", + "BnF Service arabe, 2018-06-22" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Chiites" + }, + { + "authorized_access_point": "Sectes islamiques" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85149552", + "source": "LCSH" + } + ], + "authorized_access_point": "Zayd\u012bs" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh 91000306", + "source": "LCSH" + } + ], + "authorized_access_point": "Zayd\u012byah" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Zaydites" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Zaydisme" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027826171", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11978443m", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11978443", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Religion", + "type": "bf:ClassificationDdc", + "classificationPortion": "200" + }, + { + "name": "Groupes sociaux", + "type": "bf:ClassificationDdc", + "classificationPortion": "305" + } + ], + "variant_access_point": [ + "Zaydiyya\u1e97", + "\u0632\u064a\u062f\u064a\u0651\u0629", + "Zaydiyya", + "Zaydiyyah", + "Al- zaydiyya\u1e97", + "\u0627\u0644\u0632\u064a\u062f\u064a\u0651\u0629", + "Zaidisme", + "Zaidites", + "Zaydisme" + ], + "authorized_access_point": "Zaydites" + }, + { + "md5": "08ec483680287accd1fd2294227c2cdd", + "pid": "027845214", + "type": "bf:Topic", + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Ai\u0313d\u1e53s (le mot grec)" + }, + { + "authorized_access_point": "Ai\u0313\u1e53n (le mot grec)" + }, + { + "authorized_access_point": "A\u00ee\u0313sa (le mot grec)" + }, + { + "authorized_access_point": "Au\u0313t\u00f3s (le mot grec)" + }, + { + "authorized_access_point": "Ch\u00e1ris (le mot grec)" + }, + { + "authorized_access_point": "Charop\u00f3s (le mot grec)" + }, + { + "authorized_access_point": "Ch\u1e53ra (le mot grec)" + }, + { + "authorized_access_point": "Chre\u00eda (le mot grec)" + }, + { + "authorized_access_point": "Da\u00edm\u014dn (le mot grec)" + }, + { + "authorized_access_point": "Diakon\u00eda (le mot grec)" + }, + { + "authorized_access_point": "Did\u00e1skalos (le mot grec)" + }, + { + "authorized_access_point": "D\u00ee\u0304mos (le mot grec)" + }, + { + "authorized_access_point": "Do\u00fblos (le mot grec)" + }, + { + "authorized_access_point": "Dr\u00f3sos (le mot grec)" + }, + { + "authorized_access_point": "D\u00fdnamis (le mot grec)" + }, + { + "authorized_access_point": "Ei\u0313k\u1e53n (le mot grec)" + }, + { + "authorized_access_point": "Ei\u0313k\u00f3s (le mot grec)" + }, + { + "authorized_access_point": "Eu\u0313\u0301chesthai (le mot grec)" + }, + { + "authorized_access_point": "Fantas\u00eda (le mot grec)" + }, + { + "authorized_access_point": "F\u00e1rmakon (le mot grec)" + }, + { + "authorized_access_point": "Fil\u00eda (le mot grec)" + }, + { + "authorized_access_point": "Fil\u00f3logos (le mot grec)" + }, + { + "authorized_access_point": "F\u00edlos (le mot grec)" + }, + { + "authorized_access_point": "Filosof\u00eda (le mot grec)" + }, + { + "authorized_access_point": "Fl\u00fdax (le mot grec)" + }, + { + "authorized_access_point": "F\u014dn\u012b \u0301 (le mot grec)" + }, + { + "authorized_access_point": "Fr\u012b\u0301n (le mot grec)" + }, + { + "authorized_access_point": "Fth\u00f3nos (le mot grec)" + }, + { + "authorized_access_point": "F\u00fdsis (le mot grec)" + }, + { + "authorized_access_point": "Glauk\u00f3s (le mot grec)" + }, + { + "authorized_access_point": "Gn\u014dstik\u00f3s (le mot grec)" + }, + { + "authorized_access_point": "Hek\u1e53n (le mot grec)" + }, + { + "authorized_access_point": "H\u00f3sios (le mot grec)" + }, + { + "authorized_access_point": "Hypoke\u00edmenon (le mot grec)" + }, + { + "authorized_access_point": "Kard\u00eda (le mot grec)" + }, + { + "authorized_access_point": "K\u00e9rdos (le mot grec)" + }, + { + "authorized_access_point": "Koin\u014dn\u00eda (le mot grec)" + }, + { + "authorized_access_point": "Kr\u00e2sis (le mot grec)" + }, + { + "authorized_access_point": "Kr\u00e1tos (le mot grec)" + }, + { + "authorized_access_point": "Kr\u012b\u0301n\u012b (le mot grec)" + }, + { + "authorized_access_point": "Kt\u00edz\u014d (le mot grec)" + }, + { + "authorized_access_point": "Lao\u00ed (le mot grec)" + }, + { + "authorized_access_point": "Leitourg\u00eda (le mot grec)" + }, + { + "authorized_access_point": "L\u012b\u1e2fs (le mot grec)" + }, + { + "authorized_access_point": "Martyr\u00eda (le mot grec)" + }, + { + "authorized_access_point": "Math\u012bt\u012b\u0301s (le mot grec)" + }, + { + "authorized_access_point": "M\u00e9llein (le mot grec)" + }, + { + "authorized_access_point": "M\u00ee\u0304nis (le mot grec)" + }, + { + "authorized_access_point": "M\u00eexis (le mot grec)" + }, + { + "authorized_access_point": "Mo\u00eera (le mot grec)" + }, + { + "authorized_access_point": "Myst\u012b\u0301rion (le mot grec)" + }, + { + "authorized_access_point": "M\u0177thos (le mot grec)" + }, + { + "authorized_access_point": "N\u012b\u0301pios (le mot grec)" + }, + { + "authorized_access_point": "N\u00f3mos (le mot grec)" + }, + { + "authorized_access_point": "No\u00fbs (le mot grec)" + }, + { + "authorized_access_point": "Oi\u0313k\u00f4\u0304 (le mot grec)" + }, + { + "authorized_access_point": "Oi\u0313kodome\u00een (le mot grec)" + }, + { + "authorized_access_point": "Oi\u0313kodom\u012b\u0301 (le mot grec)" + }, + { + "authorized_access_point": "Oi\u0313konom\u00eda (le mot grec)" + }, + { + "authorized_access_point": "Paide\u00eda (le mot grec)" + }, + { + "authorized_access_point": "Par\u00e1klit\u0304os (le mot grec)" + }, + { + "authorized_access_point": "P\u00e1roikos (le mot grec)" + }, + { + "authorized_access_point": "Parr\u012bs\u00eda (le mot grec)" + }, + { + "authorized_access_point": "P\u00e2s (le mot grec)" + }, + { + "authorized_access_point": "P\u00e1thos (le mot grec)" + }, + { + "authorized_access_point": "Peri\u012bg\u012bt\u012b\u0301s (le mot grec)" + }, + { + "authorized_access_point": "Peripat\u00f4\u0304 (le mot grec)" + }, + { + "authorized_access_point": "Perisse\u00eda (le mot grec)" + }, + { + "authorized_access_point": "Perisse\u00faein (le mot grec)" + }, + { + "authorized_access_point": "P\u00edstis (le mot grec)" + }, + { + "authorized_access_point": "Po\u00ed\u012bsis (le mot grec)" + }, + { + "authorized_access_point": "P\u00f3lis (le mot grec)" + }, + { + "authorized_access_point": "Polite\u00eda (le mot grec)" + }, + { + "authorized_access_point": "P\u00f3nos (le mot grec)" + }, + { + "authorized_access_point": "Proa\u00edresis (le mot grec)" + }, + { + "authorized_access_point": "Pr\u00f3krisis (le mot grec)" + }, + { + "authorized_access_point": "Pros\u00e9rchomai (le mot grec)" + }, + { + "authorized_access_point": "Psych\u012b\u0301 (le mot grec)" + }, + { + "authorized_access_point": "Skop\u00f3s (le mot grec)" + }, + { + "authorized_access_point": "S\u014dfros\u00fdn\u012b (le mot grec)" + }, + { + "authorized_access_point": "S\u014dt\u012b\u0301r (le mot grec)" + }, + { + "authorized_access_point": "Stoiche\u00eeon (le mot grec)" + }, + { + "authorized_access_point": "Sygg\u00e9neia (le mot grec)" + }, + { + "authorized_access_point": "Syggn\u1e53m\u012b (le mot grec)" + }, + { + "authorized_access_point": "Sykof\u00e1nt\u012bs (le mot grec)" + }, + { + "authorized_access_point": "S\u00fdmvolon (le mot grec)" + }, + { + "authorized_access_point": "Syne\u00edd\u012bsis (le mot grec)" + }, + { + "authorized_access_point": "S\u00fdnth\u012bma (le mot grec)" + }, + { + "authorized_access_point": "T\u00e9chn\u012b (le mot grec)" + }, + { + "authorized_access_point": "T\u00e9leios (le mot grec)" + }, + { + "authorized_access_point": "Tel\u00f4\u0304 (le mot grec)" + }, + { + "authorized_access_point": "T\u00e9los (le mot grec)" + }, + { + "authorized_access_point": "The\u014dr\u00eda (le mot grec)" + }, + { + "authorized_access_point": "Theosof\u00eda (le mot grec)" + }, + { + "authorized_access_point": "Thr\u00f3nos (le mot grec)" + }, + { + "authorized_access_point": "Thym\u00f3s (le mot grec)" + }, + { + "authorized_access_point": "T\u012bre\u00een (le mot grec)" + }, + { + "authorized_access_point": "T\u00eds (le mot grec)" + }, + { + "authorized_access_point": "Tl\u00ee\u0304nai (le mot grec)" + }, + { + "authorized_access_point": "Trag\u00e9lafos (le mot grec)" + }, + { + "authorized_access_point": "V\u00e1nausos (le mot grec)" + }, + { + "authorized_access_point": "V\u00ee\u0304ma (le mot grec)" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85057154", + "source": "LCSH" + } + ], + "authorized_access_point": "Greek language--Etymology" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Grec (Langue)--\u00c9tymologie" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027845214", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb133191671", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13319167", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Langues et linguistique", + "type": "bf:ClassificationDdc", + "classificationPortion": "400" + } + ], + "authorized_access_point": "Grec (langue) - Vocabulaire" + }, + { + "md5": "619b0959fdf0c9d847477987010eb2d6", + "pid": "02785082X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Math\u00e9matiques" + }, + { + "authorized_access_point": "Sciences - Notation" + } + ], + "related": [ + { + "authorized_access_point": "Math\u00e9matiques - Formules" + }, + { + "authorized_access_point": "Symboles math\u00e9matiques (industries graphiques)" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Chiffres" + } + ], + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Math\u00e9matiques -- Notation" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85082126", + "source": "LCSH" + } + ], + "authorized_access_point": "Mathematical notation" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02785082X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11980395v", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11980395", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Sciences sociales", + "type": "bf:ClassificationDdc", + "classificationPortion": "300" + }, + { + "name": "Math\u00e9matiques", + "type": "bf:ClassificationDdc", + "classificationPortion": "510" + } + ], + "variant_access_point": [ + "\u00c9criture math\u00e9matique", + "Math\u00e9matiques - Symboles", + "Notation math\u00e9matique", + "Symboles math\u00e9matiques" + ], + "authorized_access_point": "Math\u00e9matiques - Notation" + }, + { + "md5": "a196599d659413b462972e82928b8c90", + "pid": "027855929", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Droit canonique" + }, + { + "authorized_access_point": "\u00c9glise catholique - Finances" + } + ], + "related": [ + { + "authorized_access_point": "Messe" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85081908", + "source": "LCSH" + } + ], + "authorized_access_point": "Mass stipends" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Honoraires de messe" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027855929", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11980818s", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11980818", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", + "type": "bf:ClassificationDdc", + "classificationPortion": "200" + } + ], + "variant_access_point": [ + "Offrandes de messe" + ], + "authorized_access_point": "Honoraires de messe" + }, + { + "md5": "cf49ca161cd32b90db5e16b5074f5604", + "pid": "027856097", + "note": [ + { + "label": [ + "Encycl. universalis - http://www.universalis-edu.com (2018-01-15)", + "Les mots du christianisme / D. Le Tourneau, 2005 : adamite ; picard", + "Petit lexique des h\u00e9r\u00e9sies chr\u00e9tiennes / M. Th\u00e9ron, 2014 : adamites ; picards", + "Hist. des religions. II / H.-C. Puech, 1972 (p. 1264) : adamites ; picards", + "Historical dict. of radical christianity / W. H. Brackney, 2012 : Adamite ; Pikarti", + "The Oxford handbook of millennialism / C. Wessinger, 2016 : Pikarts (Pikarti) or Bohemian Adamites" + ], + "noteType": "dataSource" + }, + { + "label": [ + "H\u00e9r\u00e9tiques chr\u00e9tiens suivant un Picard se disant le nouvel Adam, \u00e9tabli en Boh\u00eame, au 15e s. Ne pas confondre avec la secte gnostique des premiers si\u00e8cles du m\u00eame nom" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "H\u00e9r\u00e9tiques chr\u00e9tiens" + }, + { + "authorized_access_point": "Sectes chr\u00e9tiennes m\u00e9di\u00e9vales" + } + ], + "related": [ + { + "authorized_access_point": "Taborites" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85000787", + "source": "LCSH" + } + ], + "authorized_access_point": "Adamites" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027856097", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119808310", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11980831", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Religion", + "type": "bf:ClassificationDdc", + "classificationPortion": "200" + }, + { + "name": "Groupes sociaux", + "type": "bf:ClassificationDdc", + "classificationPortion": "305" + } + ], + "variant_access_point": [ + "Adamiens (secte m\u00e9di\u00e9vale)", + "Adamites de Boh\u00eame", + "Picards (secte)", + "Pikarti (secte)" + ], + "authorized_access_point": "Adamites (secte m\u00e9di\u00e9vale)" + }, + { + "md5": "914a7ac129d046355cfd1a322686a435", + "pid": "02785714X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Analyse num\u00e9rique" + }, + { + "authorized_access_point": "Calculs num\u00e9riques" + }, + { + "authorized_access_point": "\u00c9chantillonnage (statistique)" + }, + { + "authorized_access_point": "Jeux de hasard (math\u00e9matiques)" + }, + { + "authorized_access_point": "Mod\u00e8les math\u00e9matiques" + }, + { + "authorized_access_point": "Processus stochastiques" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Monte-Carlo, M\u00e9thode de" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85087032", + "source": "LCSH" + } + ], + "authorized_access_point": "Monte Carlo method" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02785714X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119809151", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11980915", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Math\u00e9matiques", + "type": "bf:ClassificationDdc", + "classificationPortion": "510" + } + ], + "variant_access_point": [ + "\u00c9chantillonnage stochastique", + "M\u00e9thode de Monte-Carlo" + ], + "authorized_access_point": "Monte-Carlo, M\u00e9thode de" + }, + { + "md5": "f88b62d244c042ad478ef6b74f9725e4", + "pid": "027867277", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Civilisation - Cor\u00e9e" + }, + { + "authorized_access_point": "Mythologie d'Asie orientale" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Dieux cor\u00e9ens" + }, + { + "authorized_access_point": "Dokkaebi" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85089406", + "source": "LCSH" + } + ], + "authorized_access_point": "Mythology, Korean" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027867277", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11981731z", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11981731", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Religion", + "type": "bf:ClassificationDdc", + "classificationPortion": "200" + } + ], + "authorized_access_point": "Mythologie cor\u00e9enne" + }, + { + "md5": "83488a1613db55f2c0d9fb9d5ac3844a", + "pid": "02786765X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Diplomatique pontificale" + }, + { + "authorized_access_point": "Documents pontificaux" + } + ], + "related": [ + { + "authorized_access_point": "Bulles (sceaux)" + }, + { + "authorized_access_point": "Rescrits pontificaux" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02786765X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11981763k", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11981763", + "source": "BNF" + } + ], + "variant_access_point": [ + "Bulles papales", + "Papes - Bulles" + ], + "authorized_access_point": "Bulles pontificales" + }, + { + "md5": "4aeac83d7cacb0a8163a14816e533a6a", + "pid": "027868338", + "type": "bf:Topic", + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Bouddhisme - Chine - 1368-1644 (Dynastie des Ming)" + }, + { + "authorized_access_point": "Chan (bouddhisme)" + }, + { + "authorized_access_point": "Lotus blanc (secte)" + }, + { + "authorized_access_point": "San jie jiao" + }, + { + "authorized_access_point": "Tiantai" + }, + { + "authorized_access_point": "Zhenyan" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85017494", + "source": "LCSH" + } + ], + "authorized_access_point": "Buddhism -- China" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Bouddhisme -- Chine" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027868338", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119818181", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11981818", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Religion", + "type": "bf:ClassificationDdc", + "classificationPortion": "200" + } + ], + "variant_access_point": [ + "Bouddhisme chinois" + ], + "authorized_access_point": "Bouddhisme - Chine" + }, + { + "md5": "0790e90108923c9653ba2aa1180d360f", + "pid": "027870510", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bases de donn\u00e9es - Gestion" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027870510", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11981979h", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11981979", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Physique appliqu\u00e9e", + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "authorized_access_point": "Bases de donn\u00e9es - Gestion - Logiciels" + }, + { + "md5": "6561f89359d444e331059f55a5a97871", + "pid": "027873196", + "type": "bf:Topic", + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Non expedit" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027873196", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11982200j", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11982200", + "source": "BNF" + } + ], + "authorized_access_point": "\u00c9glise et \u00c9tat - Italie - 19e si\u00e8cle" + }, + { + "md5": "4a2e25ed4e3f81be355cf8a2e6b24b72", + "pid": "02787608X", + "note": [ + { + "label": [ + "Dict. de l'\u00e9ducation / A. Van Zanten, 2008 (art. : Technologies de l'information et de la communication)", + "L'int\u00e9gration p\u00e9dagogique des TIC dans le travail enseignant / T. Karsenty, F. Larose, 2005 (p.29)", + "\u00c9cole, informatique et nouveau comportement / C. Laguerre, 1999 (p. 115)" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Utilisation des ordinateurs pour assister les enseignants et les administrateurs dans la coordination du processus p\u00e9dagogique (recherche, r\u00e9sum\u00e9 des dossiers scolaires, etc.)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "\u00c9ducation et informatique" + }, + { + "authorized_access_point": "Technologie \u00e9ducative" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Enseignement g\u00e9r\u00e9 par ordinateur" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85029510", + "source": "LCSH" + } + ], + "authorized_access_point": "Computer managed instruction" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02787608X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119824096", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11982409", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Education et enseignement", + "type": "bf:ClassificationDdc", + "classificationPortion": "370" + } + ], + "variant_access_point": [ + "Enseignement g\u00e9r\u00e9 par ordinateur" + ], + "authorized_access_point": "Administration scolaire - Informatique" + }, + { + "md5": "c37df3ad430aeca2e75f4a0da9b8a6b1", + "pid": "02787642X", + "note": [ + { + "label": [ + "Sous cette vedette, on trouve les romans am\u00e9ricains en langue anglaise. Les romans non anglophones produits aux \u00c9tats-Unis se trouvent sous des vedettes telles que : Roman am\u00e9ricain de langue fran\u00e7aise ; Roman mexicain-am\u00e9ricain" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Litt\u00e9rature am\u00e9ricaine" + }, + { + "authorized_access_point": "Roman anglophone" + } + ], + "related": [ + { + "authorized_access_point": "Romanciers am\u00e9ricains" + } + ], + "bnf_type": "genre/forme Rameau", + "narrower": [ + { + "authorized_access_point": "Politique-fiction am\u00e9ricaine" + }, + { + "authorized_access_point": "Roman am\u00e9ricain - Auteurs d'origine mexicaine" + }, + { + "authorized_access_point": "Roman am\u00e9ricain - Auteurs indiens d'Am\u00e9rique" + }, + { + "authorized_access_point": "Roman am\u00e9ricain - Auteurs juifs" + }, + { + "authorized_access_point": "Roman am\u00e9ricain - Auteurs noirs am\u00e9ricains" + }, + { + "authorized_access_point": "Roman am\u00e9ricain pour la jeunesse" + }, + { + "authorized_access_point": "Roman biographique am\u00e9ricain" + }, + { + "authorized_access_point": "Roman d'amour am\u00e9ricain" + }, + { + "authorized_access_point": "Roman d'aventures am\u00e9ricain" + }, + { + "authorized_access_point": "Roman d'\u00e9ducation am\u00e9ricain" + }, + { + "authorized_access_point": "Roman d'espionnage am\u00e9ricain" + }, + { + "authorized_access_point": "Roman de la route am\u00e9ricain" + }, + { + "authorized_access_point": "Roman de science-fiction am\u00e9ricain" + }, + { + "authorized_access_point": "Roman \u00e9pistolaire am\u00e9ricain" + }, + { + "authorized_access_point": "Roman exp\u00e9rimental am\u00e9ricain" + }, + { + "authorized_access_point": "Roman familial am\u00e9ricain" + }, + { + "authorized_access_point": "Roman gothique am\u00e9ricain" + }, + { + "authorized_access_point": "Roman historique am\u00e9ricain" + }, + { + "authorized_access_point": "Roman pastoral am\u00e9ricain" + }, + { + "authorized_access_point": "Roman picaresque am\u00e9ricain" + }, + { + "authorized_access_point": "Roman policier am\u00e9ricain" + }, + { + "authorized_access_point": "Roman populaire am\u00e9ricain" + }, + { + "authorized_access_point": "Roman r\u00e9gionaliste am\u00e9ricain" + }, + { + "authorized_access_point": "Roman religieux am\u00e9ricain" + }, + { + "authorized_access_point": "Roman satirique am\u00e9ricain" + }, + { + "authorized_access_point": "Roman sentimental am\u00e9ricain" + }, + { + "authorized_access_point": "Westerns (litt\u00e9rature)" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85004317", + "source": "LCSH" + } + ], + "authorized_access_point": "American fiction" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Roman am\u00e9ricain" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02787642X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11982432q", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11982432", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Histoire et critique litt\u00e9raires", + "type": "bf:ClassificationDdc", + "classificationPortion": "800" + } + ], + "authorized_access_point": "Roman am\u00e9ricain" + }, + { + "md5": "d419e719229fcc3e7eb80dbae0f4460c", + "pid": "027883094", + "type": "bf:Topic", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027883094", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119829412", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11982941", + "source": "BNF" + } + ], + "authorized_access_point": "Guerre mondiale (1939-1945) - Trait\u00e9s" + }, + { + "md5": "8029e91088e60f5e470a8602622e654c", + "pid": "02788547X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "D\u00e9bogage" + }, + { + "authorized_access_point": "Logiciels - D\u00e9veloppement" + }, + { + "authorized_access_point": "Logiciels - Validation" + }, + { + "authorized_access_point": "Logiciels - V\u00e9rification" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Logiciels -- Essais" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85029526", + "source": "LCSH" + } + ], + "authorized_access_point": "Computer programs--Testing" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02788547X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119831235", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11983123", + "source": "BNF" + } + ], + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "authorized_access_point": "Logiciels - Essais" + }, + { + "md5": "aa423c37e0ffa38fc54b694d062fa376", + "pid": "027885496", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "D\u00e9bogage" + }, + { + "authorized_access_point": "Logique math\u00e9matique" + } + ], + "related": [ + { + "authorized_access_point": "Logiciels - V\u00e9rification" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Logiciels -- Exactitude" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85029525", + "source": "LCSH" + } + ], + "authorized_access_point": "Computer programs--Correctness" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027885496", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11983124h", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11983124", + "source": "BNF" + } + ], + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "variant_access_point": [ + "Logiciels - Pr\u00e9cision" + ], + "authorized_access_point": "Logiciels - Exactitude" + }, + { + "md5": "1f7285475914ab59b6b33efe8bd23032", + "pid": "027887960", + "note": [ + { + "label": [ + "Laval RVM, 1990-08" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027887960", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11983314r", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11983314", + "source": "BNF" + } + ], + "authorized_access_point": "Histoire religieuse - Autriche - 18e si\u00e8cle" + }, + { + "md5": "908f3873184fca80ed4b6b7883471b66", + "pid": "027908380", + "note": [ + { + "label": [ + "LCSH (en ligne), 2001-06-20" + ], + "noteType": "dataNotFound" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Microordinateurs" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027908380", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11984914n", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11984914", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Physique appliqu\u00e9e", + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "variant_access_point": [ + "QL (ordinateur)" + ], + "authorized_access_point": "Sinclair QL (ordinateur)" + }, + { + "md5": "48109fd893f7304637e8f070dda43a84", + "pid": "027910210", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Informatique mobile" + }, + { + "authorized_access_point": "Microordinateurs" + } + ], + "related": [ + { + "authorized_access_point": "Calculatrices programmables" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "MacBook Pro (ordinateur)" + }, + { + "authorized_access_point": "Liseuses num\u00e9riques" + }, + { + "authorized_access_point": "Tablettes num\u00e9riques" + }, + { + "authorized_access_point": "Mini-portables" + }, + { + "authorized_access_point": "Atari Portfolio (ordinateur)" + }, + { + "authorized_access_point": "Communicateurs personnels" + }, + { + "authorized_access_point": "Ordinateurs de poche" + }, + { + "authorized_access_point": "Macintosh PowerBook (bloc-notes)" + } + ], + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Ordinateurs portatifs" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh90002033", + "source": "LCSH" + } + ], + "authorized_access_point": "Laptop computers" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85105056", + "source": "LCSH" + } + ], + "authorized_access_point": "Portable computers" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027910210", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11985066n", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11985066", + "source": "BNF" + } + ], + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + }, + { + "name": "Sciences appliqu\u00e9es", + "type": "bf:ClassificationDdc", + "classificationPortion": "600" + } + ], + "variant_access_point": [ + "Microordinateurs portatifs", + "Ordinateurs portables", + "Ordinateurs transportables" + ], + "authorized_access_point": "Ordinateurs portatifs" + }, + { + "md5": "7944903a5cede28a065e437b3b26aad4", + "pid": "027915115", + "note": [ + { + "label": [ + "Sous cette vedette, on trouve les documents sur les micro-ordinateurs de diff\u00e9rentes marques conformes \u00e0 la norme MSX" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "MSX-Basic (langage de programmation)" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027915115", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119855123", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11985512", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Physique appliqu\u00e9e", + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "variant_access_point": [ + "Microsoft Super eXtended Basic (ordinateurs)" + ], + "authorized_access_point": "MSX (ordinateurs)" + }, + { + "md5": "2134689cbcf10dc213077546cacd3333", + "pid": "027920216", + "note": [ + { + "label": [ + "Khrushchov's crimes in Ukraine, 1962" + ], + "noteType": "dataSource" + }, + { + "label": [ + "LCSH, 1991-06" + ], + "noteType": "dataNotFound" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Politique et gouvernement - URSS - 1928-1941" + }, + { + "authorized_access_point": "Massacres - Ukraine" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027920216", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11985929x", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11985929", + "source": "BNF" + } + ], + "authorized_access_point": "Vinnitsa, Massacres de (1937-1939)" + }, + { + "md5": "665b2b470d2678c9e003fec5c215558a", + "pid": "027940373", + "note": [ + { + "label": [ + "Base terminologique de l'intelligence artificielle / Y. Kodratoff, M. Bar\u00e8s, 1991", + "L'Apprentissage automatique : de la s\u00e9lection de variables \u00e0 l'apprentissage de structure d'un classifieur bay\u00e9sien / H. Bouhamed, 2013 [th\u00e8se]", + "R\u00e9seaux de neurones artificiels : une introduction \u00e0 l'apprentissage automatique, 2006" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Processus par lequel un algorithme \u00e9value et am\u00e9liore ses performances sans l'intervention d'un programmeur, en r\u00e9p\u00e9tant son ex\u00e9cution sur des jeux de donn\u00e9es jusqu'\u00e0 obtenir, de mani\u00e8re r\u00e9guli\u00e8re, des r\u00e9sultats pertinents", + "Sous cette vedette, on trouve les documents traitant de l'apprentissage par un syst\u00e8me de raisonnement automatis\u00e9 tout seul. Les documents sur la m\u00e9thodologie de transfert des connaissances d'un expert humain vers le syst\u00e8me se trouvent sous Acquisition des connaissances (syst\u00e8mes experts)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Th\u00e9orie des automates math\u00e9matiques" + }, + { + "authorized_access_point": "Intelligence artificielle" + }, + { + "authorized_access_point": "Syst\u00e8mes adaptatifs" + }, + { + "authorized_access_point": "Syst\u00e8mes auto-organis\u00e9s" + } + ], + "related": [ + { + "authorized_access_point": "Acquisition des connaissances (syst\u00e8mes experts)" + }, + { + "authorized_access_point": "Co-adaptation (informatique)" + }, + { + "authorized_access_point": "Conteneurs (informatique)" + }, + { + "authorized_access_point": "Mod\u00e9lisation pr\u00e9dictive" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Apprentissage bas\u00e9 sur l'explication" + }, + { + "authorized_access_point": "Apprentissage interactif" + }, + { + "authorized_access_point": "Apprentissage non supervis\u00e9 (intelligence artificielle)" + }, + { + "authorized_access_point": "Apprentissage par renforcement (intelligence artificielle)" + }, + { + "authorized_access_point": "Apprentissage profond" + }, + { + "authorized_access_point": "Apprentissage supervis\u00e9 (intelligence artificielle)" + }, + { + "authorized_access_point": "Boosting (algorithmes)" + }, + { + "authorized_access_point": "Machines \u00e0 vecteurs de support" + }, + { + "authorized_access_point": "Pr\u00e9dictions conformes (informatique)" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85079324", + "source": "LCSH" + } + ], + "authorized_access_point": "Machine learning" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Apprentissage automatique" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027940373", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11987531v", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11987531", + "source": "BNF" + } + ], + "classification": [ + { + "name": "G\u00e9n\u00e9ralit\u00e9s", + "type": "bf:ClassificationDdc", + "classificationPortion": "000" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "variant_access_point": [ + "Apprentissage-machine", + "Apprentissage (intelligence artificielle)", + "Apprentissage artificiel", + "Apprentissage machine", + "Apprentissage statistique", + "Machine learning" + ], + "authorized_access_point": "Apprentissage automatique" + }, + { + "md5": "d36ee163a1bb7465262df8b004724b4a", + "pid": "027944492", + "note": [ + { + "label": [ + "Sous cette vedette on trouve les documents sur l'ensemble de la gamme des micro-ordinateurs Amstrad" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Microordinateurs" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027944492", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11987850z", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11987850", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Physique appliqu\u00e9e", + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "variant_access_point": [ + "Amstrad (ordinateur)", + "Amstrad Micro (ordinateurs)" + ], + "authorized_access_point": "Amstrad (ordinateurs)" + }, + { + "md5": "ed1fb189c81cc6cc3fd1702e7a119455", + "pid": "027950808", + "note": [ + { + "label": [ + "S'emploie \u00e9galement en subdivision aux industries" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gestion" + }, + { + "authorized_access_point": "Approvisionnement dans l'entreprise" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Relations clients-fournisseurs" + } + ], + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Gestion de l'approvisionnement" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2002007919", + "source": "LCSH" + } + ], + "authorized_access_point": "Materials management" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027950808", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11988322k", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11988322", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Gestion et organisation de l'entreprise", + "type": "bf:ClassificationDdc", + "classificationPortion": "650" + } + ], + "variant_access_point": [ + "Approvisionnement - Gestion", + "Fonction approvisionnement", + "Gestion des approvisionnements", + "Gestion des fournitures" + ], + "authorized_access_point": "Gestion de l'approvisionnement" + }, + { + "md5": "f9c5d51070f392325b690b830d968966", + "pid": "027963675", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Enfants - Statut juridique" + } + ], + "related": [ + { + "authorized_access_point": "Violence envers les enfants" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85023351", + "source": "LCSH" + } + ], + "authorized_access_point": "Child abuse--Law and legislation" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Enfants -- Violence envers -- Droit" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027963675", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb133192528", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13319252", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Psychologie, psychanalyse", + "type": "bf:ClassificationDdc", + "classificationPortion": "150" + }, + { + "name": "Sciences sociales", + "type": "bf:ClassificationDdc", + "classificationPortion": "300" + }, + { + "name": "Droit", + "type": "bf:ClassificationDdc", + "classificationPortion": "340" + } + ], + "variant_access_point": [ + "Enfants - Violence envers -- Droit" + ], + "authorized_access_point": "Violence envers les enfants - Droit" + }, + { + "md5": "28df58b3d9d4f69fb7b8e3265bca9939", + "pid": "028060563", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fonctionnaires - Rome" + }, + { + "authorized_access_point": "Provinces romaines" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85107175", + "source": "LCSH" + } + ], + "authorized_access_point": "Procurators (Rome)" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Procurateurs (Rome)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028060563", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11997124p", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11997124", + "source": "BNF" + } + ], + "authorized_access_point": "Procurateurs (Rome)" + }, + { + "md5": "7587866b7bd0978ffeebfe1ca17dc0e3", + "pid": "028071867", + "note": [ + { + "label": [ + "Sous cette vedette on trouve les documents sur la politique de s\u00e9paration des races en Afrique du Sud et en Namibie" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Relations interethniques - Afrique australe" + }, + { + "authorized_access_point": "S\u00e9gr\u00e9gation" + } + ], + "related": [ + { + "authorized_access_point": "Postapartheid" + }, + { + "authorized_access_point": "Mouvements anti-apartheid" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Apartheid" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85005905", + "source": "LCSH" + } + ], + "authorized_access_point": "Apartheid" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028071867", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11998012n", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11998012", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Sciences politiques", + "type": "bf:ClassificationDdc", + "classificationPortion": "320" + } + ], + "authorized_access_point": "Apartheid" + }, + { + "md5": "6cfdc0f4e11ea7fa54cf16931078a142", + "pid": "028071964", + "note": [ + { + "label": [ + "Guide pratique, Bull Micral.../ G. Perreau, 1985" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Laval RVM (en ligne), 2005-07-05" + ], + "noteType": "dataNotFound" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bull (ordinateurs)" + }, + { + "authorized_access_point": "Mini-ordinateurs" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028071964", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119980208", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11998020", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Physique appliqu\u00e9e", + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "variant_access_point": [ + "Bull Micral (ordinateur)" + ], + "authorized_access_point": "Micral (ordinateur)" + }, + { + "md5": "6b30d1c13344cf72448d6111891a25d5", + "pid": "02807842X", + "note": [ + { + "label": [ + "LCNA (en ligne), 2001-01-16" + ], + "noteType": "dataNotFound" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mod\u00e9lisation des donn\u00e9es (informatique)" + }, + { + "authorized_access_point": "Gestion - Informatique" + }, + { + "authorized_access_point": "Syst\u00e8mes, Conception de" + } + ], + "related": [ + { + "authorized_access_point": "MEGA, M\u00e9thode" + }, + { + "authorized_access_point": "OOM, M\u00e9thode" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02807842X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11998549c", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11998549", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Physique appliqu\u00e9e", + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "variant_access_point": [ + "MERISE (m\u00e9thode de conception de syst\u00e8mes)", + "M\u00e9thode MERISE" + ], + "authorized_access_point": "MERISE, M\u00e9thode" + }, + { + "md5": "54d958b2000b33b78d170d791bf44a49", + "pid": "02810160X", + "type": "bf:Topic", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02810160X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12000318b", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12000318", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", + "type": "bf:ClassificationDdc", + "classificationPortion": "200" + }, + { + "name": "Sciences politiques", + "type": "bf:ClassificationDdc", + "classificationPortion": "320" + } + ], + "variant_access_point": [ + "\u00c9glise catholique - Relations ext\u00e9rieures - 20e si\u00e8cle" + ], + "authorized_access_point": "Diplomatie pontificale - 20e si\u00e8cle" + }, + { + "md5": "426353e0f9f8bccbb022543184e3fe60", + "pid": "028140362", + "note": [ + { + "label": [ + "Grand dict. encyclop\u00e9dique Larousse : zombi ou zombie", + "Tr\u00e9sor de la langue fran\u00e7aise : zombi, zombie", + "Nouveau petit Robert 2009 : zombie ou zombi", + "Le vaudou ha\u00eftien / A. M\u00e9traux, 1977 (p. 249)" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fant\u00f4mes" + }, + { + "authorized_access_point": "Vaudou" + } + ], + "related": [ + { + "authorized_access_point": "Films de zombis" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh99001600", + "source": "LCSH" + } + ], + "authorized_access_point": "Zombies" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85149949", + "source": "LCSH" + } + ], + "authorized_access_point": "Zombiism" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Zombies" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028140362", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120034050", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12003405", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", + "type": "bf:ClassificationDdc", + "classificationPortion": "200" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "391" + } + ], + "variant_access_point": [ + "Morts-vivants", + "Zombies", + "Zombification", + "Zonbis" + ], + "authorized_access_point": "Zombis" + }, + { + "md5": "39b0731bf2701818dd9bb22140a86fb4", + "pid": "028148800", + "note": [ + { + "label": [ + "Laval RVM, 1983", + "GDEL" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Mouvement \u00e9thiopien (Afrique du Sud)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028148800", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12004088n", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12004088", + "source": "BNF" + } + ], + "variant_access_point": [ + "Ethiopian Church (Afrique du Sud)", + "\u00c9thiopianisme" + ], + "authorized_access_point": "Mouvement \u00e9thiopien (Afrique du Sud)" + }, + { + "md5": "b65edcdfae717c7a02993d101fcc9494", + "pid": "028205847", + "note": [ + { + "label": [ + "Ensemble des activit\u00e9s \u00e9conomiques et financi\u00e8res ayant pour objet les transactions, les \u00e9changes, etc", + "S'emploie \u00e9galement en subdivision" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "\u00c9conomie politique" + } + ], + "related": [ + { + "authorized_access_point": "Astrologie et affaires" + }, + { + "authorized_access_point": "Commerce" + }, + { + "authorized_access_point": "Gestion" + }, + { + "authorized_access_point": "Gestion d'entreprise" + }, + { + "authorized_access_point": "M\u00e9dias et affaires" + }, + { + "authorized_access_point": "Prostitution et affaires" + }, + { + "authorized_access_point": "Quartiers d'affaires" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Banques d'affaires" + }, + { + "authorized_access_point": "Comptabilit\u00e9" + }, + { + "authorized_access_point": "Cr\u00e9ativit\u00e9 dans les affaires" + }, + { + "authorized_access_point": "Droit des affaires" + }, + { + "authorized_access_point": "Entrepreneuriat" + }, + { + "authorized_access_point": "Entreprises" + }, + { + "authorized_access_point": "\u00c9thique des affaires" + }, + { + "authorized_access_point": "Femmes d'affaires" + }, + { + "authorized_access_point": "Finances" + }, + { + "authorized_access_point": "Gestion budg\u00e9taire" + }, + { + "authorized_access_point": "Goodwill" + }, + { + "authorized_access_point": "Hommes d'affaires" + }, + { + "authorized_access_point": "Immobilier" + }, + { + "authorized_access_point": "Industries du sexe" + }, + { + "authorized_access_point": "Langage commercial et des affaires" + }, + { + "authorized_access_point": "Marchandisation" + }, + { + "authorized_access_point": "N\u00e9gociations (affaires)" + }, + { + "authorized_access_point": "Profit" + }, + { + "authorized_access_point": "Relations avec la client\u00e8le" + }, + { + "authorized_access_point": "Secteur priv\u00e9" + }, + { + "authorized_access_point": "Soci\u00e9t\u00e9s" + }, + { + "authorized_access_point": "Succ\u00e8s dans les affaires" + }, + { + "authorized_access_point": "T\u00e9l\u00e9phone dans les affaires" + }, + { + "authorized_access_point": "Tenue des livres" + }, + { + "authorized_access_point": "Voyages d'affaires" + }, + { + "authorized_access_point": "Publicit\u00e9" + } + ], + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Affaires" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85018260", + "source": "LCSH" + } + ], + "authorized_access_point": "Business" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028205847", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13319296w", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13319296", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Economie", + "type": "bf:ClassificationDdc", + "classificationPortion": "330" + } + ], + "variant_access_point": [ + "Et les affaires" + ], + "authorized_access_point": "Affaires" + }, + { + "md5": "c99eebbd23f691320878c3a2cfe0287b", + "pid": "028211162", + "note": [ + { + "label": [ + "Laval RVM, 1989-06" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028211162", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12009267f", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12009267", + "source": "BNF" + } + ], + "authorized_access_point": "Histoire religieuse - Allemagne - 17e si\u00e8cle" + }, + { + "md5": "ee14bab503242e51c3203d001e415ef6", + "pid": "028221044", + "note": [ + { + "label": [ + "LCSH, 1991-12. - Laval RVM, 1992-02" + ], + "noteType": "dataNotFound" + } + ], + "type": "bf:Topic", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028221044", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12010061v", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12010061", + "source": "BNF" + } + ], + "relation_pid": { + "type": "redirect_from", + "value": "14024994X" + }, + "authorized_access_point": "Conditions \u00e9conomiques - Afrique du Nord - 1960-...." + }, + { + "md5": "aeeb0070bd8ca742b19d0a14f8313df3", + "pid": "028225090", + "type": "bf:Topic", + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Bouddhisme - Cor\u00e9e - Jusqu'\u00e0 935" + }, + { + "authorized_access_point": "Bouddhisme - Cor\u00e9e - 935-1392" + }, + { + "authorized_access_point": "S\u014fn (bouddhisme)" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh87001465", + "source": "LCSH" + } + ], + "authorized_access_point": "Buddhism -- Korea" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Bouddhisme -- Cor\u00e9e" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028225090", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120104075", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12010407", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Religion", + "type": "bf:ClassificationDdc", + "classificationPortion": "200" + } + ], + "variant_access_point": [ + "Bouddhisme cor\u00e9en" + ], + "authorized_access_point": "Bouddhisme - Cor\u00e9e" + }, + { + "md5": "20ea9b4371ae27917765bb46d6d78c18", + "pid": "028225767", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Missions officielles am\u00e9ricaines" + } + ], + "related": [ + { + "authorized_access_point": "Diplomates am\u00e9ricains" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85140008", + "source": "LCSH" + } + ], + "authorized_access_point": "Diplomatic and consular service, American" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Service diplomatique et consulaire am\u00e9ricain" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028225767", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120104640", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12010464", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Science politique", + "type": "bf:ClassificationDdc", + "classificationPortion": "320" + } + ], + "authorized_access_point": "Service diplomatique et consulaire am\u00e9ricain" + }, + { + "md5": "e4e534f76bc1439d37dbc884f491ae49", + "pid": "028233506", + "note": [ + { + "label": [ + "Laval RVM, 1994-08" + ], + "noteType": "dataNotFound" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Propri\u00e9t\u00e9 industrielle (droit international)" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028233506", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120111005", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12011100", + "source": "BNF" + } + ], + "authorized_access_point": "Dessins et mod\u00e8les (droit international)" + }, + { + "md5": "9cb4f76a78c36d03b893b2fec0ee445c", + "pid": "028262220", + "note": [ + { + "label": [ + "Dict. \u00e9conomique et financier / Y. Bernard et J.-C. Colli, 1996" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Laval RVM, 1996-08. - LCSH, 1996-06" + ], + "noteType": "dataNotFound" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Macro\u00e9conomie - Mod\u00e8les math\u00e9matiques" + }, + { + "authorized_access_point": "Mod\u00e8les \u00e9conom\u00e9triques" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028262220", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12013419w", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12013419", + "source": "BNF" + } + ], + "variant_access_point": [ + "Dynamique multi-sectoriel, Mod\u00e8le", + "Mod\u00e8le DMS", + "Mod\u00e8le dynamique multi-sectoriel" + ], + "authorized_access_point": "DMS, Mod\u00e8le" + }, + { + "md5": "5b093b16752c5feb9ef2276f1058dc7a", + "pid": "028287169", + "note": [ + { + "label": [ + "Laval RVM, 1983" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028287169", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12015381h", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12015381", + "source": "BNF" + } + ], + "authorized_access_point": "Histoire religieuse - Allemagne - 18e si\u00e8cle" + }, + { + "md5": "ca013bceb63fc3d083da8bf64b73a1a1", + "pid": "028359380", + "note": [ + { + "label": [ + "Sous cette vedette, on trouve les documents sur le commerce international en g\u00e9n\u00e9ral" + ], + "noteType": "general" + }, + { + "label": [ + "Voir aussi la subdivision Commerce ext\u00e9rieur, aux lieux (pays, villes, etc.) pour les documents sur le commerce international envisag\u00e9 du point de vue d'un lieu d\u00e9termin\u00e9" + ], + "noteType": "seeReference" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Commerce" + }, + { + "authorized_access_point": "Relations \u00e9conomiques internationales" + } + ], + "related": [ + { + "authorized_access_point": "Commerce international - R\u00e9glementation" + }, + { + "authorized_access_point": "Commerce international et emploi" + }, + { + "authorized_access_point": "Salaires - Effets du commerce international" + }, + { + "authorized_access_point": "Acc\u00e8s aux m\u00e9dicaments" + }, + { + "authorized_access_point": "Commerce ext\u00e9rieur" + }, + { + "authorized_access_point": "\u00c9conomie ouverte" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Juste \u00e9change" + }, + { + "authorized_access_point": "Commerce parall\u00e8le" + }, + { + "authorized_access_point": "Concurrence internationale" + }, + { + "authorized_access_point": "Contrats d'exclusivit\u00e9" + }, + { + "authorized_access_point": "Droit commercial (droit international)" + }, + { + "authorized_access_point": "Dumping" + }, + { + "authorized_access_point": "\u00c9changes compens\u00e9s" + }, + { + "authorized_access_point": "\u00c9changes intra-branche" + }, + { + "authorized_access_point": "Exportations" + }, + { + "authorized_access_point": "Garanties \u00e0 premi\u00e8re demande" + }, + { + "authorized_access_point": "Heckscher-Ohlin, Th\u00e9or\u00e8me de" + }, + { + "authorized_access_point": "Importations" + }, + { + "authorized_access_point": "Commerce international - Effets du terrorisme" + }, + { + "authorized_access_point": "Incoterms" + }, + { + "authorized_access_point": "Libre-\u00e9change" + }, + { + "authorized_access_point": "Portage (commerce international)" + }, + { + "authorized_access_point": "Protectionnisme" + }, + { + "authorized_access_point": "Routes commerciales" + }, + { + "authorized_access_point": "Stocks r\u00e9gulateurs" + }, + { + "authorized_access_point": "Tarif douanier" + }, + { + "authorized_access_point": "Vente internationale" + }, + { + "authorized_access_point": "Services - \u00c9changes internationaux" + }, + { + "authorized_access_point": "Armes - Vente" + }, + { + "authorized_access_point": "Avantage comparatif (commerce international)" + }, + { + "authorized_access_point": "Balance commerciale" + }, + { + "authorized_access_point": "Classification type pour le commerce international" + }, + { + "authorized_access_point": "Commerce captif" + }, + { + "authorized_access_point": "Commerce Est-Ouest" + } + ], + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Commerce international" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh87004890", + "source": "LCSH" + } + ], + "authorized_access_point": "International trade" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028359380", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12021081x", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12021081", + "source": "BNF" + } + ], + "variant_access_point": [ + "Commerce ext\u00e9rieur international", + "Commerce mondial", + "\u00c9changes commerciaux internationaux", + "\u00c9changes internationaux" + ], + "authorized_access_point": "Commerce international" + }, + { + "md5": "b09f9c7bbe6774d7cf63854f38e21ee2", + "pid": "028374878", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Litt\u00e9rature n\u00e9erlandaise" + } + ], + "bnf_type": "genre/forme Rameau", + "narrower": [ + { + "authorized_access_point": "R\u00e9cits de mer n\u00e9erlandais" + }, + { + "authorized_access_point": "Roman biographique n\u00e9erlandais" + }, + { + "authorized_access_point": "Roman courtois n\u00e9erlandais" + }, + { + "authorized_access_point": "Roman d'\u00e9ducation n\u00e9erlandais" + }, + { + "authorized_access_point": "Roman historique n\u00e9erlandais" + }, + { + "authorized_access_point": "Roman policier n\u00e9erlandais" + } + ], + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Roman n\u00e9erlandais" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85040103", + "source": "LCSH" + } + ], + "authorized_access_point": "Dutch fiction" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028374878", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12022290p", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12022290", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Histoire et critique litt\u00e9raires", + "type": "bf:ClassificationDdc", + "classificationPortion": "800" + } + ], + "authorized_access_point": "Roman n\u00e9erlandais" + }, + { + "md5": "8299d03c95c77c87682f1f1f35a58715", + "pid": "028431855", + "type": "bf:Topic", + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2015001258", + "source": "LCSH" + } + ], + "authorized_access_point": "Propaganda, Austrian" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028431855", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12026846t", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12026846", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Science politique", + "type": "bf:ClassificationDdc", + "classificationPortion": "320" + } + ], + "authorized_access_point": "Propagande autrichienne" + }, + { + "md5": "4afbe4c341cf2f948774a3ec98fd2bad", + "pid": "028433890", + "note": [ + { + "label": [ + "LCSH, 1991-06" + ], + "noteType": "dataNotFound" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Droit social (droit europ\u00e9en)" + }, + { + "authorized_access_point": "Droit priv\u00e9 (droit europ\u00e9en)" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Discrimination dans l'emploi - Droit europ\u00e9en" + }, + { + "authorized_access_point": "Risques psychosociaux - Droit europ\u00e9en" + }, + { + "authorized_access_point": "Repr\u00e9sentation du personnel - Droit europ\u00e9en" + }, + { + "authorized_access_point": "Comit\u00e9s d'entreprise - Droit europ\u00e9en" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028433890", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12027009n", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12027009", + "source": "BNF" + } + ], + "authorized_access_point": "Droit du travail (droit europ\u00e9en)" + }, + { + "md5": "b0fd0a2976e70cae008c8c3dbda24104", + "pid": "028497244", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Monnaies europ\u00e9ennes" + } + ], + "related": [ + { + "authorized_access_point": "Monnaie - Luxembourg" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85027844", + "source": "LCSH" + } + ], + "authorized_access_point": "Coins, Luxembourg" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Monnaies luxembourgeoises" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028497244", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12032142r", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12032142", + "source": "BNF" + } + ], + "classification": [ + { + "name": "\u00c9conomie politique", + "type": "bf:ClassificationDdc", + "classificationPortion": "330" + }, + { + "name": "Sculpture", + "type": "bf:ClassificationDdc", + "classificationPortion": "730" + }, + { + "name": "Histoire de l'Europe", + "type": "bf:ClassificationDdc", + "classificationPortion": "940" + } + ], + "variant_access_point": [ + "Pi\u00e8ces de monnaie luxembourgeoises" + ], + "authorized_access_point": "Monnaies luxembourgeoises" + }, + { + "md5": "e279915c50278b70022fe5606bf8e79a", + "pid": "028517180", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Moyen-Orient - 1945-1979" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028517180", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12033740z", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12033740", + "source": "BNF" + } + ], + "authorized_access_point": "Politique et gouvernement - Moyen-Orient - 1945-1979" + }, + { + "md5": "f9f4a55abc34bc73048289ba6e930389", + "pid": "02852019X", + "type": "bf:Topic", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02852019X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12033989v", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12033989", + "source": "BNF" + } + ], + "authorized_access_point": "Fronti\u00e8res - Pays de l'Union europ\u00e9enne" + }, + { + "md5": "ff3da54271a35c1a7e6867eadb5d70a3", + "pid": "028549082", + "note": [ + { + "label": [ + "Laval RVM, 1991-02" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Op\u00e9ration Condor" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028549082", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12036263z", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12036263", + "source": "BNF" + } + ], + "authorized_access_point": "Politique et gouvernement - Am\u00e9rique du Sud - 20e si\u00e8cle" + }, + { + "md5": "cc37a28537c1298037272c9aecf98613", + "pid": "028631609", + "note": [ + { + "label": [ + "Encycl. de l'informatique et des syst\u00e8mes d'information, 2006" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bases de donn\u00e9es" + } + ], + "related": [ + { + "authorized_access_point": "Java Persistence API" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "IBM Database 2 (syst\u00e8me informatique)" + }, + { + "authorized_access_point": "Ingres II (syst\u00e8me informatique)" + }, + { + "authorized_access_point": "M\u00e9ta-REORG (syst\u00e8me expert)" + }, + { + "authorized_access_point": "Microsoft Jet (langage de programmation)" + }, + { + "authorized_access_point": "Oracle (syst\u00e8me informatique)" + }, + { + "authorized_access_point": "PostgreSQL (syst\u00e8me informatique)" + }, + { + "authorized_access_point": "REORG (syst\u00e8me expert)" + }, + { + "authorized_access_point": "SAUVE (syst\u00e8me expert)" + } + ], + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Bases de donn\u00e9es relationnelles" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh86007768", + "source": "LCSH" + } + ], + "authorized_access_point": "Relational databases" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028631609", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12042778m", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12042778", + "source": "BNF" + } + ], + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "variant_access_point": [ + "SGBDR", + "Syst\u00e8mes de gestion de bases de donnn\u00e9es relationnelles" + ], + "authorized_access_point": "Bases de donn\u00e9es relationnelles" + }, + { + "md5": "161a467a1dcc5c8c02dd25a4c128ed95", + "pid": "028637720", + "note": [ + { + "label": [ + "Wikidata : Missile antibalistique - https://www.wikidata.org/wiki/Q574594 (2023-08-23)" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Missile con\u00e7u pour intercepter un missile balistique ou une roquette. Le terme est cependant principalement utilis\u00e9 pour d\u00e9signer les syst\u00e8mes con\u00e7us pour contrer des missiles balistiques intercontinentaux" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Artillerie antia\u00e9rienne" + }, + { + "authorized_access_point": "Missiles" + } + ], + "related": [ + { + "authorized_access_point": "D\u00e9fense antimissile de croisi\u00e8re" + }, + { + "authorized_access_point": "D\u00e9fense antimissile balistique" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Missiles antimissiles" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85005700", + "source": "LCSH" + } + ], + "authorized_access_point": "Antimissile missiles" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028637720", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120432565", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12043256", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Art et science militaires", + "type": "bf:ClassificationDdc", + "classificationPortion": "355" + }, + { + "name": "Sciences appliqu\u00e9es", + "type": "bf:ClassificationDdc", + "classificationPortion": "600" + } + ], + "variant_access_point": [ + "ABM", + "Antimissiles", + "Missiles antibalistiques" + ], + "authorized_access_point": "Missiles antimissiles" + }, + { + "md5": "785b23a1ade13e504e944047842591de", + "pid": "028675274", + "note": [ + { + "label": [ + "Laval RVM, 1991-02" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Puissances de l'Axe" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028675274", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12046184v", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12046184", + "source": "BNF" + } + ], + "authorized_access_point": "Relations ext\u00e9rieures - Allemagne - 1933-1945" + }, + { + "md5": "35dcce59ec476b9d88676bed1989b9af", + "pid": "028676661", + "type": "bf:Topic", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028676661", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12046291d", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12046291", + "source": "BNF" + } + ], + "authorized_access_point": "Relations ext\u00e9rieures - URSS - 1917-1945" + }, + { + "md5": "236ab39b299e34c6d702a3c6ad121141", + "pid": "02868589X", + "note": [ + { + "label": [ + "LCNA (en ligne), 2004-05-14 : Microsoft Windows (Computer file)" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Sous cette vedette, on trouve les documents sur le logiciel de fen\u00eatres informatiques commercialis\u00e9 par la soci\u00e9t\u00e9 Microsoft. Les documentss sur les fen\u00eatres (\"windows\") informatiques en g\u00e9n\u00e9ral se trouvent sous Fen\u00eatres (informatique). Les documents traitant d'un logiciel sp\u00e9cifique utilisable avec l'interface graphique Microsoft Windows se trouvent sous le nom du logiciel" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fen\u00eatres (informatique)" + } + ], + "related": [ + { + "authorized_access_point": "MFC (logiciels)" + }, + { + "authorized_access_point": "Windows Open Services Architecture" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Microsoft Visual BASIC (langage de programmation)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02868589X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120470824", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12047082", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Physique appliqu\u00e9e", + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "variant_access_point": [ + "Windows (logiciels)" + ], + "authorized_access_point": "Microsoft Windows (logiciels)" + }, + { + "md5": "c7fa967c6d8defc11bf74e6805797839", + "pid": "028698703", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Qu\u00e9bec (Canada ; province)" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Politique et gouvernement - Qu\u00e9bec (Canada ; province) - 1791-1841" + }, + { + "authorized_access_point": "Politique et gouvernement - Qu\u00e9bec (Canada ; province) - 1897-1936" + }, + { + "authorized_access_point": "Politique et gouvernement - Qu\u00e9bec (Canada ; province) - 20e si\u00e8cle" + }, + { + "authorized_access_point": "Politique et gouvernement - Qu\u00e9bec (Canada ; province) - 1960-...." + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028698703", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12048142d", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12048142", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Sciences politiques", + "type": "bf:ClassificationDdc", + "classificationPortion": "320" + } + ], + "authorized_access_point": "Politique et gouvernement - Qu\u00e9bec (Canada ; province)" + }, + { + "md5": "9840f7951ee8a0b73b9622588986167b", + "pid": "028700139", + "type": "bf:Topic", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028700139", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12048263n", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12048263", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", + "type": "bf:ClassificationDdc", + "classificationPortion": "200" + }, + { + "name": "Sciences politiques", + "type": "bf:ClassificationDdc", + "classificationPortion": "320" + } + ], + "variant_access_point": [ + "\u00c9glise catholique - Relations ext\u00e9rieures - 19e si\u00e8cle" + ], + "authorized_access_point": "Diplomatie pontificale - 19e si\u00e8cle" + }, + { + "md5": "bbf3b0db8d51ad03c15971a52dce0ea4", + "pid": "028700171", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Politique et gouvernement - \u00c9tats-Unis - 1933-1945" + }, + { + "authorized_access_point": "Conditions sociales - \u00c9tats-Unis - 1933-1945" + }, + { + "authorized_access_point": "\u00c9tats-Unis - 1933-1945" + } + ], + "related": [ + { + "authorized_access_point": "Crise \u00e9conomique (1929) - \u00c9tats-Unis" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "New Deal" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028700171", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12048266p", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12048266", + "source": "BNF" + } + ], + "variant_access_point": [ + "New Deal (1933-1939)", + "New Deal - \u00c9tats-Unis" + ], + "authorized_access_point": "New Deal" + }, + { + "md5": "eb1f42946bd4d2f726471d6331dac2d7", + "pid": "028725387", + "note": [ + { + "label": [ + "LCSH, 1994-09" + ], + "noteType": "dataNotFound" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Consommation d'\u00e9nergie" + }, + { + "authorized_access_point": "Mod\u00e8les math\u00e9matiques" + }, + { + "authorized_access_point": "Ressources \u00e9nerg\u00e9tiques" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028725387", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120502183", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12050218", + "source": "BNF" + } + ], + "variant_access_point": [ + "M\u00e9thode M\u00c9D\u00c9E", + "Mod\u00e8le d'\u00e9valuation de la demande en \u00e9nergie", + "Mod\u00e8le M\u00c9D\u00c9E" + ], + "authorized_access_point": "M\u00c9D\u00c9E, M\u00e9thode" + }, + { + "md5": "99038009dfdcc8001491f3fd3f5c4b69", + "pid": "028889347", + "note": [ + { + "label": [ + "S'emploie \u00e9galement en subdivision" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Enseignement" + } + ], + "related": [ + { + "authorized_access_point": "Documents audiovisuels" + }, + { + "authorized_access_point": "Documentation audiovisuelle" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "\u00c9tude et enseignement -- Aides audiovisuelles" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2001009046", + "source": "LCSH" + } + ], + "authorized_access_point": "Study and teaching--Audio-visual aids" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028889347", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12063139q", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12063139", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Education et enseignement", + "type": "bf:ClassificationDdc", + "classificationPortion": "370" + } + ], + "variant_access_point": [ + "Enseignement - M\u00e9thodes audiovisuelles", + "\u00c9tude et enseignement - Aides audiovisuelles", + "Magn\u00e9tophones dans l'enseignement", + "Radio en \u00e9ducation", + "Radio scolaire", + "T\u00e9l\u00e9vision en \u00e9ducation", + "T\u00e9l\u00e9vision scolaire", + "Vid\u00e9o en \u00e9ducation", + "Vid\u00e9odisques en \u00e9ducation" + ], + "authorized_access_point": "Enseignement audiovisuel" + }, + { + "md5": "e19043d188103b412b7ac3459cabaa93", + "pid": "028898338", + "note": [ + { + "label": [ + "LCSH 87" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028898338", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120638745", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12063874", + "source": "BNF" + } + ], + "authorized_access_point": "Relations ext\u00e9rieures - France - 1914-1940" + }, + { + "md5": "10fc0121ebf53e9197ee76271c3705fe", + "pid": "028909917", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Programmation (informatique)" + } + ], + "related": [ + { + "authorized_access_point": "\u00c9cosyst\u00e8mes d'applications mobiles (informatique)" + }, + { + "authorized_access_point": "Traitement d'exceptions (informatique)" + }, + { + "authorized_access_point": "D\u00e9bogage" + }, + { + "authorized_access_point": "Logiciels - Essais" + }, + { + "authorized_access_point": "Logiciels - Maintenance" + }, + { + "authorized_access_point": "Syst\u00e8mes, Conception de" + }, + { + "authorized_access_point": "M\u00e9thodes formelles (informatique)" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Architecture logicielle" + }, + { + "authorized_access_point": "Xamarin (plate-forme informatique)" + }, + { + "authorized_access_point": "Tests fonctionnels (informatique)" + }, + { + "authorized_access_point": "Microsoft Visual studio (environnement de d\u00e9veloppement d'applications)" + }, + { + "authorized_access_point": "SysML (informatique)" + }, + { + "authorized_access_point": "COBIT (informatique)" + }, + { + "authorized_access_point": "Mod\u00e8le CMM (informatique)" + }, + { + "authorized_access_point": "\u00c9diteurs syntaxiques" + }, + { + "authorized_access_point": "G\u00e9n\u00e9rateurs (logiciels)" + }, + { + "authorized_access_point": "Objectory, M\u00e9thode" + }, + { + "authorized_access_point": "PISA (syst\u00e8me informatique)" + }, + { + "authorized_access_point": "Progiciels - D\u00e9veloppement" + }, + { + "authorized_access_point": "Test Driven Development" + }, + { + "authorized_access_point": "Prototypage (informatique)" + }, + { + "authorized_access_point": "UML (informatique)" + }, + { + "authorized_access_point": "VDM, M\u00e9thode" + }, + { + "authorized_access_point": "ISO/SPICE, Mod\u00e8le" + }, + { + "authorized_access_point": "D\u00e9veloppement rapide d'applications" + }, + { + "authorized_access_point": "Akka (plate-forme informatique)" + }, + { + "authorized_access_point": "Allegro (informatique)" + }, + { + "authorized_access_point": "OCL (informatique)" + }, + { + "authorized_access_point": "PhoneGap (environnement de d\u00e9veloppement d'applications)" + }, + { + "authorized_access_point": "Gamification" + }, + { + "authorized_access_point": "OSGi (plate-forme informatique)" + }, + { + "authorized_access_point": "M\u00e9thodes agiles (informatique)" + } + ], + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Logiciels -- D\u00e9veloppement" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85029535", + "source": "LCSH" + } + ], + "authorized_access_point": "Computer software--Development" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028909917", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12064812v", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12064812", + "source": "BNF" + } + ], + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "variant_access_point": [ + "Conception de logiciels", + "D\u00e9veloppement d'applications (informatique)", + "D\u00e9veloppement de logiciels", + "D\u00e9veloppement it\u00e9ratif de logiciels", + "Logiciels - Conception", + "Logiciels - D\u00e9veloppement it\u00e9ratif", + "Logiciels - \u00c9criture", + "RAD" + ], + "authorized_access_point": "Logiciels - D\u00e9veloppement" + }, + { + "md5": "b02e209c974cba1c952c49b1c7fb29da", + "pid": "028910737", + "note": [ + { + "label": [ + "Laval RVM, 1990-08" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Grande-Bretagne - 1837-1901 (Victoria)" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028910737", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12064877f", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12064877", + "source": "BNF" + } + ], + "authorized_access_point": "Politique et gouvernement - Grande-Bretagne - 1837-1901" + }, + { + "md5": "c0b51d4c7bb31831235819aed0c4916c", + "pid": "028912098", + "note": [ + { + "label": [ + "LCSH, 1987-09", + "Laval RVM suppl., 1987-09" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Convulsionnaires (religion)" + }, + { + "authorized_access_point": "Multipliants" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028912098", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120649871", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12064987", + "source": "BNF" + } + ], + "authorized_access_point": "Histoire religieuse - France - 18e si\u00e8cle" + }, + { + "md5": "eb23498b7633c38fcf6425b2e9b52404", + "pid": "028929098", + "note": [ + { + "label": [ + "GDEL", + "LCSH 1987-09" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Laval 1987-09" + ], + "noteType": "dataNotFound" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Guerre de la premi\u00e8re coalition (1792-1797) - Op\u00e9rations militaires - France" + }, + { + "authorized_access_point": "France - 1792" + } + ], + "related": [ + { + "authorized_access_point": "Valmy (pr\u00e9nom)" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028929098", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12066311m", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12066311", + "source": "BNF" + } + ], + "variant_access_point": [ + "Valmy, Bataille de (1792)" + ], + "authorized_access_point": "Bataille de Valmy (1792)" + }, + { + "md5": "835e4a4943ddc520ed2c27001f00b3e1", + "pid": "028932358", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Litt\u00e9rature mexicaine" + } + ], + "related": [ + { + "authorized_access_point": "Romanciers mexicains" + } + ], + "bnf_type": "genre/forme Rameau", + "narrower": [ + { + "authorized_access_point": "Roman-photo mexicain" + }, + { + "authorized_access_point": "Roman historique mexicain" + }, + { + "authorized_access_point": "Roman picaresque mexicain" + }, + { + "authorized_access_point": "Roman policier mexicain" + }, + { + "authorized_access_point": "Roman social mexicain" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85084515", + "source": "LCSH" + } + ], + "authorized_access_point": "Mexican fiction" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Roman mexicain" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028932358", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120665533", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12066553", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Histoire et critique litt\u00e9raires", + "type": "bf:ClassificationDdc", + "classificationPortion": "800" + } + ], + "authorized_access_point": "Roman mexicain" + }, + { + "md5": "b4e21ead7cd9dfd73d397d3df8db1f00", + "pid": "028938615", + "note": [ + { + "label": [ + "Wikip\u00e9dia : Industrie du sexe - http://fr.wikipedia.org (2011-09-02)", + "La mondialisation des industries du sexe / R. Poulin, 2005", + "L'industrie du sexe / D. Haddad, 1992" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Affaires" + } + ], + "related": [ + { + "authorized_access_point": "Cybersexe" + }, + { + "authorized_access_point": "Pornographie" + }, + { + "authorized_access_point": "Sexualit\u00e9" + }, + { + "authorized_access_point": "Travailleurs du sexe" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Maisons de prostitution" + }, + { + "authorized_access_point": "Prostitution" + }, + { + "authorized_access_point": "Sex-shops" + }, + { + "authorized_access_point": "Strip-tease" + }, + { + "authorized_access_point": "Tourisme sexuel" + } + ], + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Industrie pornographique" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85120657", + "source": "LCSH" + } + ], + "authorized_access_point": "Sex-oriented businesses" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028938615", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120670727", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12067072", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Sciences sociales", + "type": "bf:ClassificationDdc", + "classificationPortion": "300" + }, + { + "name": "Economie", + "type": "bf:ClassificationDdc", + "classificationPortion": "330" + } + ], + "variant_access_point": [ + "Sexe - Industrie et commerce", + "Sexualit\u00e9 - Industrie et commerce", + "Commerce pornographique", + "Commerce sexuel", + "Industrie du sexe", + "Industrie pornographique", + "Messageries roses", + "Porno business", + "Pornographie - Industrie et commerce", + "Sex business" + ], + "authorized_access_point": "Industries du sexe" + }, + { + "md5": "879d44842bd0af91693be24da740ed8e", + "pid": "028973631", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Europe de l'Est - 1945-1989" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028973631", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12069805s", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12069805", + "source": "BNF" + } + ], + "authorized_access_point": "Politique et gouvernement - Europe de l'Est - 1945-1989" + }, + { + "md5": "28869ffe87c0aaea11070e47852eff5f", + "pid": "02900294X", + "note": [ + { + "label": [ + "Laval RVM, 1990-08" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Puissances de l'Axe" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02900294X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120720680", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12072068", + "source": "BNF" + } + ], + "authorized_access_point": "Relations ext\u00e9rieures - Italie - 1922-1945" + }, + { + "md5": "e6c9726ec8550e1d5262bc33c675e599", + "pid": "02904197X", + "note": [ + { + "label": [ + "LCSH, 2000-03" + ], + "noteType": "dataNotFound" + } + ], + "type": "bf:Topic", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02904197X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12075107s", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12075107", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Religion", + "type": "bf:ClassificationDdc", + "classificationPortion": "200" + }, + { + "name": "Science politique", + "type": "bf:ClassificationDdc", + "classificationPortion": "320" + } + ], + "authorized_access_point": "\u00c9glise et \u00c9tat - Allemagne - 20e si\u00e8cle" + }, + { + "md5": "e0cb35fa3c34126924dc60a21d417fdd", + "pid": "029042046", + "type": "bf:Topic", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029042046", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12075113q", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12075113", + "source": "BNF" + } + ], + "authorized_access_point": "\u00c9glise et \u00c9tat - Italie - 20e si\u00e8cle" + }, + { + "md5": "5da17d674c2fe8a5a9d7b404e887f4bf", + "pid": "029042186", + "type": "bf:Topic", + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Kulturkampf" + }, + { + "authorized_access_point": "Rheinisch-Westf\u00e4lische Kirchenordnung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029042186", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12075124c", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12075124", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Religion", + "type": "bf:ClassificationDdc", + "classificationPortion": "200" + }, + { + "name": "Science politique", + "type": "bf:ClassificationDdc", + "classificationPortion": "320" + } + ], + "authorized_access_point": "\u00c9glise et \u00c9tat - Allemagne - 19e si\u00e8cle" + }, + { + "md5": "1c9a7bbc89a14dc208b15845e2f6834b", + "pid": "02905026X", + "note": [ + { + "label": [ + "Laval RVM, 1992-08" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Blocus continental" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02905026X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12075741m", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12075741", + "source": "BNF" + } + ], + "authorized_access_point": "Politique et gouvernement - Europe - 1789-1815" + }, + { + "md5": "524db13e1f5200790c7d4ad1bb221be6", + "pid": "029182387", + "type": "bf:Topic", + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85025254", + "source": "LCSH" + } + ], + "authorized_access_point": "Christianity and other religions--Chinese" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Christianisme -- Relations -- Religion chinoise" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029182387", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120862572", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12086257", + "source": "BNF" + } + ], + "authorized_access_point": "Christianisme - Relations - Religion chinoise" + }, + { + "md5": "8230a9f31d43cc0a88bb76bd6f420c52", + "pid": "029205794", + "note": [ + { + "label": [ + "Employer les subdivisions chronologiques communes" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Ressortissants des \u00c9tats membres de l'Union europ\u00e9enne" + }, + { + "authorized_access_point": "Droit social (droit europ\u00e9en)" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029205794", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12088093v", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12088093", + "source": "BNF" + } + ], + "variant_access_point": [ + "Espace social europ\u00e9en", + "Europe sociale", + "March\u00e9 int\u00e9rieur europ\u00e9en - Aspect social", + "Politique sociale europ\u00e9enne" + ], + "authorized_access_point": "Politique sociale - Pays de l'Union europ\u00e9enne" + }, + { + "md5": "813e283d0e1972cf238d0c00b4c92307", + "pid": "029342147", + "note": [ + { + "label": [ + "La grande d\u00e9pression : les \u00c9tats-Unis en crise, 1929-1933 / J. Heffer, 1991", + "The Great Depression / D. F. Burg, 2005" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Crise \u00e9conomique (1929)" + } + ], + "related": [ + { + "authorized_access_point": "New Deal" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029342147", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120988849", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12098884", + "source": "BNF" + } + ], + "classification": [ + { + "name": "\u00c9conomie politique", + "type": "bf:ClassificationDdc", + "classificationPortion": "330" + }, + { + "name": "Histoire du reste du monde", + "type": "bf:ClassificationDdc", + "classificationPortion": "950" + } + ], + "variant_access_point": [ + "Grande d\u00e9pression (\u00c9tats-Unis ; 1929-1939)" + ], + "authorized_access_point": "Crise \u00e9conomique (1929) - \u00c9tats-Unis" + }, + { + "md5": "4a9ca06a2c9e6773b5f38290e8d32133", + "pid": "029344212", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Comportement humain" + }, + { + "authorized_access_point": "Psychodiagnostics" + }, + { + "authorized_access_point": "Psychologie - M\u00e9thodologie" + } + ], + "related": [ + { + "authorized_access_point": "M\u00e9thode ERTOMIS" + }, + { + "authorized_access_point": "M\u00e9thode ELHAN" + }, + { + "authorized_access_point": "Analyse comportementale des adolescents" + }, + { + "authorized_access_point": "Analyse comportementale des enfants" + }, + { + "authorized_access_point": "M\u00e9thode ABA" + }, + { + "authorized_access_point": "Modification du comportement" + }, + { + "authorized_access_point": "Profilage (droit)" + }, + { + "authorized_access_point": "Th\u00e9rapie comportementale" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Quantification de soi" + } + ], + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Analyse comportementale" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85012901", + "source": "LCSH" + } + ], + "authorized_access_point": "Behavioral assessment" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029344212", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12099028v", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12099028", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Psychologie, psychanalyse", + "type": "bf:ClassificationDdc", + "classificationPortion": "150" + } + ], + "variant_access_point": [ + "Analyse du comportement", + "Comportement humain - \u00c9valuation", + "\u00c9valuation comportementale", + "\u00c9valuation du comportement" + ], + "authorized_access_point": "Analyse comportementale" + }, + { + "md5": "b33bc659fc896ba9b92f9373fb7624cb", + "pid": "029347254", + "type": "bf:Topic", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029347254", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120992768", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12099276", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Physique appliqu\u00e9e", + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + }, + { + "name": "\u00c9conomie politique", + "type": "bf:ClassificationDdc", + "classificationPortion": "330" + } + ], + "authorized_access_point": "Patrimoine - Gestion - Logiciels" + }, + { + "md5": "241dccc1bbb94d57ec95436035fd36c3", + "pid": "029349230", + "note": [ + { + "label": [ + "Dict. encycl. de l'information et de la documentation" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Biblioth\u00e9conomie - Logiciels" + }, + { + "authorized_access_point": "Informatique documentaire" + }, + { + "authorized_access_point": "Syst\u00e8mes d'information" + }, + { + "authorized_access_point": "Logiciels" + } + ], + "related": [ + { + "authorized_access_point": "Vid\u00e9odisques" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029349230", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120994504", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12099450", + "source": "BNF" + } + ], + "relation_pid": { + "type": "redirect_from", + "value": "085722545" + }, + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + }, + { + "name": "Sciences de l'information", + "type": "bf:ClassificationDdc", + "classificationPortion": "020" + } + ], + "variant_access_point": [ + "Gestion des documents - Logiciels", + "Recherche documentaire - Logiciels" + ], + "authorized_access_point": "Logiciels documentaires" + }, + { + "md5": "aeb48bb63b16eecdf3021b325e700507", + "pid": "029385571", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Litt\u00e9rature turque" + } + ], + "related": [ + { + "authorized_access_point": "Po\u00e8tes turcs" + }, + { + "authorized_access_point": "Chansons turques" + }, + { + "authorized_access_point": "Prose turque" + } + ], + "bnf_type": "genre/forme Rameau", + "narrower": [ + { + "authorized_access_point": "\u00c9l\u00e9gies turques" + }, + { + "authorized_access_point": "\u00c9pop\u00e9es turques" + }, + { + "authorized_access_point": "Po\u00e9sie contestataire turque" + }, + { + "authorized_access_point": "Po\u00e9sie d'amour turque" + }, + { + "authorized_access_point": "Po\u00e9sie islamique turque" + }, + { + "authorized_access_point": "Po\u00e9sie patriotique turque" + }, + { + "authorized_access_point": "Po\u00e9sie populaire turque" + }, + { + "authorized_access_point": "Po\u00e9sie turque - 13e-19e si\u00e8cles (d\u00eevan)" + }, + { + "authorized_access_point": "Po\u00e9sie turque pour la jeunesse" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85138898", + "source": "LCSH" + } + ], + "authorized_access_point": "Turkish poetry" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Po\u00e9sie turque" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029385571", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb121024006", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12102400", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Histoire et critique litt\u00e9raires", + "type": "bf:ClassificationDdc", + "classificationPortion": "800" + } + ], + "authorized_access_point": "Po\u00e9sie turque" + }, + { + "md5": "f790b3fc4dc754d97065d922f1ac2ed7", + "pid": "029404614", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Abbayes - [Localisations g\u00e9ographiques]" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Oliwa (pologne) - Abbaye" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029404614", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12103944f", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12103944", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Religion", + "type": "bf:ClassificationDdc", + "classificationPortion": "200" + }, + { + "name": "Construction", + "type": "bf:ClassificationDdc", + "classificationPortion": "690" + }, + { + "name": "Architecture", + "type": "bf:ClassificationDdc", + "classificationPortion": "720" + } + ], + "authorized_access_point": "Abbayes - Pologne" + }, + { + "md5": "ee53b80d1e117f54fb184246e00d859a", + "pid": "029410312", + "note": [ + { + "label": [ + "Sous cette vedette, on trouve les documents sur les facteurs humains dans les syst\u00e8mes informatiques. Les documents sur les syst\u00e8mes informatiques qui fonctionnent en temps r\u00e9el se trouvent sous Syst\u00e8mes conversationnels (informatique)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ergonomie" + }, + { + "authorized_access_point": "Syst\u00e8mes homme-machine" + } + ], + "related": [ + { + "authorized_access_point": "Conception centr\u00e9e sur l'utilisateur" + }, + { + "authorized_access_point": "Cyberpsychologie" + }, + { + "authorized_access_point": "Intelligence ambiante" + }, + { + "authorized_access_point": "Interfaces utilisateur (informatique)" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Aide en ligne (informatique)" + }, + { + "authorized_access_point": "Apprentissage bas\u00e9 sur l'explication" + }, + { + "authorized_access_point": "Co-adaptation (informatique)" + }, + { + "authorized_access_point": "Crowdsourcing" + }, + { + "authorized_access_point": "Ergonomie cognitive" + }, + { + "authorized_access_point": "Interaction multimodale" + }, + { + "authorized_access_point": "Traitement automatique du langage naturel" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh88003229", + "source": "LCSH" + } + ], + "authorized_access_point": "Human-computer interaction" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Interaction personne-ordinateur" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029410312", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12104414c", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12104414", + "source": "BNF" + } + ], + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "variant_access_point": [ + "Communication homme-ordinateur", + "Dialogue homme-ordinateur", + "Ergonomie informatique", + "Facteurs humains dans les syst\u00e8mes informatiques", + "HCI", + "Homme-ordinateur, Interaction", + "IHM", + "Interaction homme-machine (informatique)", + "Interaction homme-ordinateur", + "Interaction humain-syst\u00e8me", + "Ordinateur-homme, Interaction", + "Relations homme-ordinateur", + "Syst\u00e8mes coop\u00e9ratifs (informatique)" + ], + "authorized_access_point": "Interaction humain-machine" + }, + { + "md5": "b220f35e623e2b8d7b3cb2cb8938b782", + "pid": "029575168", + "note": [ + { + "label": [ + "Grand Larousse illustr\u00e9 (art. : Rome - Religion)", + "Hist. des religions / H. C. Puech, 1970", + "Dict. des religions / P. Poupard, 1984 (art. : Romaine, religion)" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Sous cette vedette, on trouve les documents sur les cultes pratiqu\u00e9s dans la Rome antique, qu'il s'agisse des cultes propres \u00e0 la religion romaine ou des cultes li\u00e9s \u00e0 d'autres religions" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Vestales" + }, + { + "authorized_access_point": "Religion romaine" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Taurobole" + }, + { + "authorized_access_point": "Bacchanales" + }, + { + "authorized_access_point": "Culte imp\u00e9rial - Rome" + }, + { + "authorized_access_point": "Ver sacrum" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85034739", + "source": "LCSH" + } + ], + "authorized_access_point": "Cults--Rome" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Cultes -- Rome" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029575168", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12117201d", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12117201", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Religion", + "type": "bf:ClassificationDdc", + "classificationPortion": "200" + }, + { + "name": "Arch\u00e9ologie. Histoire ancienne", + "type": "bf:ClassificationDdc", + "classificationPortion": "930" + } + ], + "authorized_access_point": "Cultes - Rome" + }, + { + "md5": "b4602c10d5b890f77f8c992bb6fc5de2", + "pid": "029652308", + "note": [ + { + "label": [ + "Dict. de la sociologie / R. Boudon, 1989" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Interaction sociale" + }, + { + "authorized_access_point": "Sciences sociales - M\u00e9thodologie" + } + ], + "related": [ + { + "authorized_access_point": "R\u00e9seaux sociaux" + }, + { + "authorized_access_point": "Sociom\u00e9trie" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029652308", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12123187x", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12123187", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Sciences sociales", + "type": "bf:ClassificationDdc", + "classificationPortion": "300" + } + ], + "variant_access_point": [ + "Analyse de r\u00e9seau (sciences sociales)", + "R\u00e9seau, Analyse de (sciences sociales)", + "R\u00e9seaux (sciences sociales)" + ], + "authorized_access_point": "Sciences sociales - Analyse de r\u00e9seau" + }, + { + "md5": "1d04c80d28e62597b0fd1e086416fa03", + "pid": "029726190", + "type": "bf:Topic", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029726190", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12128840d", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12128840", + "source": "BNF" + } + ], + "authorized_access_point": "V\u00eatements - Industrie et commerce - Logiciels" + }, + { + "md5": "fc6d3086640f057ae8306902fbb04df8", + "pid": "029753090", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Prise de d\u00e9cision (statistique)" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Statistique bay\u00e9sienne non param\u00e9trique" + }, + { + "authorized_access_point": "Segmentation bay\u00e9sienne" + } + ], + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Statistique bay\u00e9sienne" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85012506", + "source": "LCSH" + } + ], + "authorized_access_point": "Bayesian statistical decision theory" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029753090", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb121309043", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12130904", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Math\u00e9matiques", + "type": "bf:ClassificationDdc", + "classificationPortion": "510" + } + ], + "variant_access_point": [ + "Analyse bay\u00e9sienne", + "Bayes, Solution de", + "Bayes, Th\u00e9or\u00e8me de", + "Inf\u00e9rence bay\u00e9sienne", + "Prise de d\u00e9cision (statistique bay\u00e9sienne)", + "R\u00e9seaux bay\u00e9siens", + "Solution de Bayes", + "Th\u00e9or\u00e8me de Bayes" + ], + "authorized_access_point": "Statistique bay\u00e9sienne" + }, + { + "md5": "851bf3d71c0ffe5dd23af6f4e4d5fea9", + "pid": "029755999", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Relations internationales - 1933-1945" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Guerre mondiale (1939-1945) - Gouvernements en exil" + } + ], + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Guerre mondiale (1939-1945) -- Histoire diplomatique" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85148402", + "source": "LCSH" + } + ], + "authorized_access_point": "World War, 1939-1945--Diplomatic history" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029755999", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb121311253", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12131125", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Sciences politiques", + "type": "bf:ClassificationDdc", + "classificationPortion": "320" + }, + { + "name": "Histoire et g\u00e9ographie (g\u00e9n\u00e9ralit\u00e9s)", + "type": "bf:ClassificationDdc", + "classificationPortion": "900" + } + ], + "authorized_access_point": "Guerre mondiale (1939-1945) - Histoire diplomatique" + }, + { + "md5": "f724cd0c28e1126ac688f41c01046fa6", + "pid": "029795826", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Guerre mondiale (1939-1945) - Op\u00e9rations militaires - France (1944-1945)" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029795826", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12134494g", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12134494", + "source": "BNF" + } + ], + "authorized_access_point": "Bataille des Alpes (France ; 1944-1945)" + }, + { + "md5": "fc746e1061326183b757e45b326b69f8", + "pid": "029877555", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Litt\u00e9rature didactique belge de langue fran\u00e7aise" + } + ], + "related": [ + { + "authorized_access_point": "Aphorismes et apophtegmes belges de langue fran\u00e7aise" + } + ], + "bnf_type": "genre/forme Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029877555", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12141099k", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12141099", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Ethnologie, anthropologie, folklore", + "type": "bf:ClassificationDdc", + "classificationPortion": "390" + }, + { + "name": "Histoire et critique litt\u00e9raires", + "type": "bf:ClassificationDdc", + "classificationPortion": "800" + } + ], + "variant_access_point": [ + "Proverbes francophones belges" + ], + "authorized_access_point": "Proverbes belges de langue fran\u00e7aise" + }, + { + "md5": "ba6aff83f903e7fc988fedcd5c0b2396", + "pid": "029888026", + "type": "bf:Topic", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029888026", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12141859j", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12141859", + "source": "BNF" + } + ], + "authorized_access_point": "Histoire religieuse - Portugal" + }, + { + "md5": "aaab1a5f43eb34a4f611f32c349b342f", + "pid": "029918006", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Chimie" + }, + { + "authorized_access_point": "Sciences - Formules" + }, + { + "authorized_access_point": "Sciences - Notation" + } + ], + "related": [ + { + "authorized_access_point": "Chimie - Nomenclature" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "\u00c9quations chimiques" + } + ], + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Chimie -- Notation" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85023003", + "source": "LCSH" + } + ], + "authorized_access_point": "Chemistry--Notation" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029918006", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb121441867", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12144186", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Sciences sociales", + "type": "bf:ClassificationDdc", + "classificationPortion": "300" + }, + { + "name": "Chimie, min\u00e9ralogie, cristallographie", + "type": "bf:ClassificationDdc", + "classificationPortion": "540" + } + ], + "variant_access_point": [ + "Chimie - Formules", + "Chimie - Symboles", + "Notation chimique", + "Symboles chimiques" + ], + "authorized_access_point": "Chimie - Notation" + }, + { + "md5": "d82698e36a2f0cffa94f99a2c3189894", + "pid": "029933730", + "type": "bf:Topic", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029933730", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12145420c", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12145420", + "source": "BNF" + } + ], + "authorized_access_point": "Relations ext\u00e9rieures - Autriche - 1789-1900" + }, + { + "md5": "431447a9e1dda4d884a49ffcc233d666", + "pid": "029958857", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bases de donn\u00e9es - Gestion" + }, + { + "authorized_access_point": "Bases de donn\u00e9es relationnelles" + } + ], + "related": [ + { + "authorized_access_point": "Oracle Application Express (environnement de d\u00e9veloppement d'applications)" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029958857", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12147371g", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12147371", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Physique appliqu\u00e9e", + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "authorized_access_point": "Oracle (syst\u00e8me informatique)" + }, + { + "md5": "48b9587017f55b36cdaa3b45faef917d", + "pid": "03001235X", + "note": [ + { + "label": [ + "Grand Larousse universel", + "Dict. de la musique / M. Honegger, 1976", + "Dict. de la musique / M. Vignal, 2005", + "Dict. des mots de la musique / J. Siron, 2006" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Sous cette vedette, on trouve les documents sur la technique d'\u00e9criture musicale \u00e0 plusieurs voix. Les compositions polyphoniques se trouvent sous Chansons polyphoniques et Polyphonies sacr\u00e9es" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Composition (musique)" + } + ], + "related": [ + { + "authorized_access_point": "Ars nova" + }, + { + "authorized_access_point": "Contrepoint" + }, + { + "authorized_access_point": "Chansons polyphoniques" + }, + { + "authorized_access_point": "Fugues (musique)" + }, + { + "authorized_access_point": "Polyphonies sacr\u00e9es" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Cantus firmus" + }, + { + "authorized_access_point": "Faux-bourdon (musique)" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85033444", + "source": "LCSH" + } + ], + "authorized_access_point": "Counterpoint" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Polyphonies -- Histoire et critique" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/03001235X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12151616x", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12151616", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Musique", + "type": "bf:ClassificationDdc", + "classificationPortion": "780" + } + ], + "variant_access_point": [ + "Polyphonie", + "Musique polyphonique" + ], + "authorized_access_point": "Polyphonie (musique)" + }, + { + "md5": "54c7b4d0eef27d8cd50a133c9a592d29", + "pid": "030017653", + "note": [ + { + "label": [ + "Mourre", + "GLU" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Laval RVM, 1993-02" + ], + "noteType": "dataNotFound" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Droit romain" + }, + { + "authorized_access_point": "Magistrats (Rome)" + } + ], + "related": [ + { + "authorized_access_point": "Pl\u00e8be (Rome)" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "\u00c9diles (Rome)" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85137435", + "source": "LCSH" + } + ], + "authorized_access_point": "Tribunus plebis" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/030017653", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb121520244", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12152024", + "source": "BNF" + } + ], + "variant_access_point": [ + "Puissance tribunitienne", + "Tribuni plebis", + "Tribunicia potestas" + ], + "authorized_access_point": "Tribuns de la pl\u00e8be (Rome)" + }, + { + "md5": "bbfdc7a1b098e03582e4d8d6af311334", + "pid": "030055849", + "note": [ + { + "label": [ + "Laval RVM, 1999-01" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/030055849", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12154960z", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12154960", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", + "type": "bf:ClassificationDdc", + "classificationPortion": "200" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "950" + } + ], + "authorized_access_point": "Histoire religieuse - Colombie" + }, + { + "md5": "182952c69278d776ba8b33ef2530aa30", + "pid": "030086469", + "note": [ + { + "label": [ + "Laval RVM (en ligne), 2005-05-19" + ], + "noteType": "dataNotFound" + } + ], + "type": "bf:Topic", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/030086469", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb121573543", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12157354", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Physique appliqu\u00e9e", + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + }, + { + "name": "Sciences sociales", + "type": "bf:ClassificationDdc", + "classificationPortion": "300" + } + ], + "authorized_access_point": "Population - Histoire - Logiciels" + }, + { + "md5": "da39819a7365594def98b3272d50c736", + "pid": "030120640", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Litt\u00e9rature galloise" + } + ], + "bnf_type": "genre/forme Rameau", + "narrower": [ + { + "authorized_access_point": "Roman autobiographique gallois" + }, + { + "authorized_access_point": "Roman historique gallois" + }, + { + "authorized_access_point": "Roman policier gallois" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85146067", + "source": "LCSH" + } + ], + "authorized_access_point": "Welsh fiction" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Roman gallois" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/030120640", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb121600198", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12160019", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Histoire et critique litt\u00e9raires", + "type": "bf:ClassificationDdc", + "classificationPortion": "800" + } + ], + "authorized_access_point": "Roman gallois" + }, + { + "md5": "86abe49116e342aa4ac72864353cd1e5", + "pid": "030128145", + "note": [ + { + "label": [ + "Hyperdocuments : hypertextes, hyperm\u00e9dias / J.-P. Balpe, 1990" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bases de donn\u00e9es - Gestion" + }, + { + "authorized_access_point": "Multim\u00e9dias interactifs" + } + ], + "related": [ + { + "authorized_access_point": "HTTP (protocole de r\u00e9seaux d'ordinateurs)" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "HTTP (protocole de r\u00e9seaux d'ordinateurs)" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh88002671", + "source": "LCSH" + } + ], + "authorized_access_point": "Hypertext systems" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/030128145", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13319505k", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13319505", + "source": "BNF" + } + ], + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "variant_access_point": [ + "Hyperdocuments", + "Hypertexte" + ], + "authorized_access_point": "Hypertextes" + }, + { + "md5": "92f075c134e207251023e81b0ae76e78", + "pid": "03018729X", + "type": "bf:Topic", + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "PASCAL-BTP (banque de donn\u00e9es)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/03018729X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb121654752", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12165475", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Technique", + "type": "bf:ClassificationDdc", + "classificationPortion": "600" + }, + { + "name": "Physique appliqu\u00e9e", + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "authorized_access_point": "G\u00e9nie civil - Bases de donn\u00e9es" + }, + { + "md5": "dfc378166899db0a6ffa8da1b585b70b", + "pid": "030219884", + "note": [ + { + "label": [ + "Wikip\u00e9dia (art. : Wii) - https://fr.wikipedia.org (2021-12-08)", + "Nintendo - http://www.nintendo.fr (2012-10-05)", + "Video game Bible : 1985-2002 / A. Slaven, 2002", + "Le plaisir de jouer ensemble : joueurs casuals et interfaces gestuelles de la Wii / E. Jacques, 2011" + ], + "noteType": "dataSource" + }, + { + "label": [ + "\"Nintendo\" et \"Nintendo Entertainment System\" sont des appellations commerciales", + "Sous cette vedette, on trouve les documents sur le mat\u00e9riel ainsi que sur les jeux eux-m\u00eames" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Jeux vid\u00e9o" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh91002267", + "source": "LCSH" + } + ], + "authorized_access_point": "Nintendo video games" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2007007398", + "source": "LCSH" + } + ], + "authorized_access_point": "Nintendo Wii video games" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Jeux vid\u00e9o Nintendo" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Jeux vid\u00e9o Nintendo Wii" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/030219884", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12168198m", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12168198", + "source": "BNF" + } + ], + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + }, + { + "name": "Jeux", + "type": "bf:ClassificationDdc", + "classificationPortion": "793" + } + ], + "variant_access_point": [ + "Jeux vid\u00e9o Nintendo", + "NES (jeux vid\u00e9o)", + "Nintendo 64 (jeux vid\u00e9o)", + "Nintendo Entertainment System (jeux vid\u00e9o)", + "Super NES (jeux vid\u00e9o)", + "Super Nintendo Entertainment System (jeux vid\u00e9o)", + "Wii (jeux vid\u00e9o)" + ], + "authorized_access_point": "Nintendo (jeux vid\u00e9o)" + }, + { + "md5": "ea2f047be6e858d44e1f990158feca63", + "pid": "030336880", + "note": [ + { + "label": [ + "Dict. de la chim. et de ses appl./ Cl. Duval, 1978" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mati\u00e8re - Propri\u00e9t\u00e9s" + } + ], + "related": [ + { + "authorized_access_point": "R\u00e9actions chimiques" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/030336880", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb121773326", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12177332", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Chimie", + "type": "bf:ClassificationDdc", + "classificationPortion": "540" + } + ], + "variant_access_point": [ + "Conservation de la mati\u00e8re, Principe de", + "Loi de conservation de la mati\u00e8re", + "Loi de Lavoisier", + "Principe de conservation de la mati\u00e8re", + "Principe de conservation des \u00e9l\u00e9ments", + "Principe de Lavoisier" + ], + "authorized_access_point": "Lavoisier, Loi de" + }, + { + "md5": "ec0b2fe6c71994681d5222071d02d1e5", + "pid": "030423724", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fen\u00eatres (informatique)" + }, + { + "authorized_access_point": "Programmation (informatique)" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "XFree86 (syst\u00e8me informatique)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/030423724", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12184011w", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12184011", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Physique appliqu\u00e9e", + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "variant_access_point": [ + "Syst\u00e8me X Window (syst\u00e8me informatique)", + "X (syst\u00e8me informatique)", + "X11 (syst\u00e8me informatique)" + ], + "authorized_access_point": "X Window System (syst\u00e8me informatique)" + }, + { + "md5": "21e4edf6a08aae402efa7e68399c1dfd", + "pid": "030435056", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Calendrier (chronologie)" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh98000959", + "source": "LCSH" + } + ], + "authorized_access_point": "Calendar, Ethiopian" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Calendrier \u00e9thiopien" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/030435056", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12185009k", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12185009", + "source": "BNF" + } + ], + "authorized_access_point": "Calendrier \u00e9thiopien" + }, + { + "md5": "c103967303b5e72acce9a3d99a1bf00e", + "pid": "030642841", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Microordinateurs" + }, + { + "authorized_access_point": "IBM (ordinateurs)" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "PC (ordinateur)" + }, + { + "authorized_access_point": "IBM PC/AT (ordinateur)" + }, + { + "authorized_access_point": "IBM PC/XT (ordinateur)" + }, + { + "authorized_access_point": "IBM PCjr (ordinateur)" + }, + { + "authorized_access_point": "IBM PS/2 (ordinateur)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/030642841", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb122018278", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12201827", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Physique appliqu\u00e9e", + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "variant_access_point": [ + "IBM (micro-ordinateurs)" + ], + "authorized_access_point": "IBM (microordinateurs)" + }, + { + "md5": "6c690ed15e35ce3017123d17c2f18739", + "pid": "030768381", + "note": [ + { + "label": [ + "Laval RVM, 1991-02" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Politique et gouvernement - Chine - 1949-...." + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Crise des \u00eeles Quemoy et Matsu (1958)" + }, + { + "authorized_access_point": "Crise des \u00eeles Quemoy et Matsu (1954-1955)" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85024375", + "source": "LCSH" + } + ], + "authorized_access_point": "Chinese reunification question, 1949-" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Chine, Question de la r\u00e9unification de la (1949-....)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/030768381", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb122118202", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12211820", + "source": "BNF" + } + ], + "variant_access_point": [ + "Question de la r\u00e9unification de la Chine (1949-....)", + "R\u00e9unification de la Chine, Question de la (1949-.....)", + "Question de Taiwan (1949-....)", + "Taiwan, Question de (1949-....)" + ], + "authorized_access_point": "Chine, Question de la r\u00e9unification de la (1949-....)" + }, + { + "md5": "ebfc0ead9523eef86c7f309fc4a58e8a", + "pid": "03082401X", + "note": [ + { + "label": [ + "Colonies form\u00e9es de citoyens romains \u00e9tablies dans les pays nouvellement conquis ou adverses", + "S'emploie \u00e9galement en subdivision" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Colonies" + }, + { + "authorized_access_point": "Rome" + } + ], + "related": [ + { + "authorized_access_point": "Expansion territoriale - Rome" + }, + { + "authorized_access_point": "Canabae" + }, + { + "authorized_access_point": "Citoyennet\u00e9 (droit romain)" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Pomerium" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/03082401X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12216223n", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12216223", + "source": "BNF" + } + ], + "classification": [ + { + "name": "G\u00e9ographie, tourisme (guides) et voyages", + "type": "bf:ClassificationDdc", + "classificationPortion": "910" + }, + { + "name": "Pr\u00e9histoire et histoire ancienne", + "type": "bf:ClassificationDdc", + "classificationPortion": "930" + } + ], + "variant_access_point": [ + "Colonies - Rome" + ], + "authorized_access_point": "Colonies romaines" + }, + { + "md5": "b26d4d54f40f8bc448e52e939a6fc289", + "pid": "030904218", + "type": "bf:Topic", + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Antiquit\u00e9s - Lyon (Rh\u00f4ne) - Quartier de Vaise" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/030904218", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb122226788", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12222678", + "source": "BNF" + } + ], + "authorized_access_point": "Antiquit\u00e9s - Rh\u00f4ne (France)" + }, + { + "md5": "231aa1f0c73934f2b1783f18ec4fc3a5", + "pid": "030909120", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Relations ext\u00e9rieures - Italie - 1861-1915" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/030909120", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12223069w", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12223069", + "source": "BNF" + } + ], + "authorized_access_point": "Irr\u00e9dentisme - Italie" + }, + { + "md5": "0396f80fd4e49ec2b31675dd37ec1831", + "pid": "030924987", + "note": [ + { + "label": [ + "S'emploie \u00e9galement en subdivision aux sujets noms communs appropri\u00e9s (instruments et \u00e9quipements scientifiques et techniques)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mesures physiques" + }, + { + "authorized_access_point": "Normes" + } + ], + "related": [ + { + "authorized_access_point": "Calibreuses (machines)" + }, + { + "authorized_access_point": "Incertitude de mesure" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Cales-\u00e9talons - \u00c9talonnage" + } + ], + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "\u00c9talonnage" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh99004829", + "source": "LCSH" + } + ], + "authorized_access_point": "Calibration" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/030924987", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12224356m", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12224356", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Sciences (g\u00e9n\u00e9ralit\u00e9s)", + "type": "bf:ClassificationDdc", + "classificationPortion": "500" + }, + { + "name": "Sciences appliqu\u00e9es", + "type": "bf:ClassificationDdc", + "classificationPortion": "600" + } + ], + "variant_access_point": [ + "Calibrage" + ], + "authorized_access_point": "\u00c9talonnage" + }, + { + "md5": "6d16526160aec9ba855c5419aa449d32", + "pid": "030975689", + "note": [ + { + "label": [ + "Laval RVM, 1993-02" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Puissances de l'Axe" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Incident du Panay (Chine ; 1937)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/030975689", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12228429z", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12228429", + "source": "BNF" + } + ], + "authorized_access_point": "Relations ext\u00e9rieures - Japon - 1912-1945" + }, + { + "md5": "78dc9d103c2f3c22c9c7a0b5c60a3a04", + "pid": "031018866", + "note": [ + { + "label": [ + "Sur le mod\u00e8le de la vedette Juifs -- \u00c9mancipation" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Gordon, \u00c9meutes de (1780)" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85021208", + "source": "LCSH" + } + ], + "authorized_access_point": "Catholic emancipation" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/031018866", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12231781d", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12231781", + "source": "BNF" + } + ], + "variant_access_point": [ + "\u00c9mancipation des catholiques britanniques" + ], + "authorized_access_point": "Catholiques - \u00c9mancipation - Grande-Bretagne" + }, + { + "md5": "04c75263ae9fad51b5967881c1c629db", + "pid": "031067956", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Holographie" + }, + { + "authorized_access_point": "Syst\u00e8mes d'affichage" + } + ], + "related": [ + { + "authorized_access_point": "Photographie st\u00e9r\u00e9oscopique" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Imagerie tridimensionnelle en g\u00e9ologie" + }, + { + "authorized_access_point": "Vid\u00e9o 3D (imagerie tridimensionnelle)" + }, + { + "authorized_access_point": "T\u00e9l\u00e9vision en relief" + }, + { + "authorized_access_point": "Imagerie tridimensionnelle en biologie" + }, + { + "authorized_access_point": "Imagerie tridimensionnelle en m\u00e9decine" + }, + { + "authorized_access_point": "Imagerie quadridimensionnelle" + } + ], + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Imagerie tridimensionnelle" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85135021", + "source": "LCSH" + } + ], + "authorized_access_point": "Three-dimensional display systems" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/031067956", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12235704x", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12235704", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Sciences appliqu\u00e9es", + "type": "bf:ClassificationDdc", + "classificationPortion": "600" + } + ], + "variant_access_point": [ + "Affichage tridimensionnel", + "Imagerie 3D", + "Imagerie en 3 dimensions", + "Syst\u00e8mes d'affichage tridimensionnel" + ], + "authorized_access_point": "Imagerie tridimensionnelle" + }, + { + "md5": "7e3b68f45e79e71061c365e00330413f", + "pid": "031082599", + "note": [ + { + "label": [ + "Thesaurus international de la terminologie relative aux r\u00e9fugi\u00e9s / HCR-la Documentation fran\u00e7aise, 1992" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Sous cette vedette on trouve les documents sur les personnes n\u00e9es \u00e0 l'\u00e9tranger entr\u00e9es dans un pays dans l'intention de s'y \u00e9tablir, voire d'en devenir citoyens. Cette vedette peut \u00eatre suivie d'une subdivision g\u00e9ographique qui indique le pays o\u00f9 les immigr\u00e9s s'\u00e9tablissent. Pour pr\u00e9ciser \u00e9ventuellement l'origine g\u00e9ographique des immigr\u00e9s, on \u00e9tablit une seconde vedette mati\u00e8re du type : [Nationalit\u00e9] -- [Pays], par ex. : Irlandais -- \u00c9tats-Unis", + "S'emploie \u00e9galement en subdivision" + ], + "noteType": "general" + }, + { + "label": [ + "Voir aussi la subdivision Participation des immigr\u00e9s aux guerres" + ], + "noteType": "seeReference" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Population" + } + ], + "related": [ + { + "authorized_access_point": "\u00c9migration et immigration" + }, + { + "authorized_access_point": "Enfants d'immigr\u00e9s" + }, + { + "authorized_access_point": "Envois de fonds" + }, + { + "authorized_access_point": "\u00c9trangers" + }, + { + "authorized_access_point": "Immigr\u00e9s - Acculturation" + }, + { + "authorized_access_point": "Internet et immigr\u00e9s" + }, + { + "authorized_access_point": "Participation des immigr\u00e9s" + }, + { + "authorized_access_point": "Pastorale des migrants" + }, + { + "authorized_access_point": "Travailleurs \u00e9trangers" + }, + { + "authorized_access_point": "\u00c9crits d'immigr\u00e9s" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Adolescents immigr\u00e9s" + }, + { + "authorized_access_point": "Biblioth\u00e8ques et immigr\u00e9s" + }, + { + "authorized_access_point": "Diasporas" + }, + { + "authorized_access_point": "Familles immigr\u00e9es" + }, + { + "authorized_access_point": "Immigr\u00e9es" + }, + { + "authorized_access_point": "Immigr\u00e9s \u00e2g\u00e9s" + }, + { + "authorized_access_point": "Immigr\u00e9s clandestins" + }, + { + "authorized_access_point": "Immigr\u00e9s dans l'industrie du cin\u00e9ma" + }, + { + "authorized_access_point": "Jeunes immigr\u00e9s" + }, + { + "authorized_access_point": "Service social aupr\u00e8s des immigr\u00e9s" + } + ], + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Immigrants" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85064517", + "source": "LCSH" + } + ], + "authorized_access_point": "Immigrants" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/031082599", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb122368540", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12236854", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Sciences sociales", + "type": "bf:ClassificationDdc", + "classificationPortion": "300" + } + ], + "variant_access_point": [ + "\u00c9migrants", + "Et les \u00e9migr\u00e9s", + "\u00c9migr\u00e9s", + "Et l'immigration", + "Et les travailleurs \u00e9trangers", + "Expatri\u00e9s", + "Immigrants", + "Migrants", + "Population d'origine \u00e9trang\u00e8re" + ], + "authorized_access_point": "Immigr\u00e9s" + }, + { + "md5": "05010074c558415fd75c80ab6f697c4c", + "pid": "031208495", + "note": [ + { + "label": [ + "Encycl. Larousse (art. : Photographie) - http://www.larousse.fr (2014-10-31)", + "Photo num\u00e9rique / J. A. King, 2014", + "Guide de la photo num\u00e9rique : objectif photos r\u00e9ussies / M. Leuchter, 2012" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Voir aussi la subdivision Photographie" + ], + "noteType": "seeReference" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "\u00c9lectronique num\u00e9rique" + }, + { + "authorized_access_point": "Photographie" + } + ], + "related": [ + { + "authorized_access_point": "Appareils photographiques num\u00e9riques" + }, + { + "authorized_access_point": "Flickr (site web)" + }, + { + "authorized_access_point": "Instagram (site web)" + }, + { + "authorized_access_point": "Photographie argentique" + }, + { + "authorized_access_point": "Traitement d'images - Techniques num\u00e9riques" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Digiscopie" + }, + { + "authorized_access_point": "Photographie mobile" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh90001789", + "source": "LCSH" + } + ], + "authorized_access_point": "Photography -- Digital techniques" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Photographie num\u00e9rique" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/031208495", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12246762j", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12246762", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Sciences appliqu\u00e9es", + "type": "bf:ClassificationDdc", + "classificationPortion": "600" + }, + { + "name": "Photographie", + "type": "bf:ClassificationDdc", + "classificationPortion": "770" + } + ], + "variant_access_point": [ + "Photographie - Techniques num\u00e9riques" + ], + "authorized_access_point": "Photographie num\u00e9rique" + }, + { + "md5": "ac1b79a576bcf40367d77179cbaff032", + "pid": "03136795X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Irlandaise et moyen-orientale" + }, + { + "authorized_access_point": "Litt\u00e9rature compar\u00e9e - Grecque et moyen-orientale" + }, + { + "authorized_access_point": "Philologie moyen-orientale" + } + ], + "bnf_type": "genre/forme Rameau", + "narrower": [ + { + "authorized_access_point": "Autobiographie moyen-orientale" + }, + { + "authorized_access_point": "Litt\u00e9rature s\u00e9mitique" + }, + { + "authorized_access_point": "Po\u00e9sie moyen-orientale" + } + ], + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Litt\u00e9rature moyen-orientale" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85090516", + "source": "LCSH" + } + ], + "authorized_access_point": "Middle Eastern literature" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/03136795X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb122596537", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12259653", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Histoire et critique litt\u00e9raires", + "type": "bf:ClassificationDdc", + "classificationPortion": "800" + } + ], + "variant_access_point": [ + "Litt\u00e9rature proche-orientale" + ], + "authorized_access_point": "Litt\u00e9rature moyen-orientale" + }, + { + "md5": "d134a5a0b660d451559b7e0032b03dbd", + "pid": "031380107", + "note": [ + { + "label": [ + "Dict. de l'Acad\u00e9mie de m\u00e9decine - https://www.academie-medecine.fr/le-dictionnaire (2024-05-28)", + "Dict. illustr\u00e9 des termes de m\u00e9decine, 2012", + "Dict. de biologie / J. Berthet, 2007", + "Dict. de m\u00e9decine Flammarion, 2008 (art. : Somatom\u00e9dine)" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Facteurs de croissance" + } + ], + "related": [ + { + "authorized_access_point": "Prot\u00e9ines IGFBP" + }, + { + "authorized_access_point": "Somatropine" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Facteur de croissance IGF-1" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85124781", + "source": "LCSH" + } + ], + "authorized_access_point": "Somatomedin" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Somatom\u00e9dine" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/031380107", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb122605848", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12260584", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Sciences de la vie", + "type": "bf:ClassificationDdc", + "classificationPortion": "570" + } + ], + "variant_access_point": [ + "Facteurs de sulfatation", + "Facteurs thymidine", + "IGF (prot\u00e9ines)", + "Insulin-like growth factors", + "Somatom\u00e9dine", + "Somatom\u00e9dines" + ], + "authorized_access_point": "Facteurs de croissance IGF" + }, + { + "md5": "740eab7c6bf8eef571e4e574afdcee68", + "pid": "031531121", + "note": [ + { + "label": [ + "Laval RVM, 1992-02" + ], + "noteType": "dataNotFound" + } + ], + "type": "bf:Topic", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/031531121", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12272835k", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12272835", + "source": "BNF" + } + ], + "variant_access_point": [ + "March\u00e9 commun sud-am\u00e9ricain" + ], + "authorized_access_point": "Int\u00e9gration \u00e9conomique - Am\u00e9rique du Sud" + }, + { + "md5": "aa3167d411ba7fdf0617c60c283ec4cb", + "pid": "03166010X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fonctionnaires - Rome" + }, + { + "authorized_access_point": "Provinces romaines" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "L\u00e9gats (Rome)" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85075776", + "source": "LCSH" + } + ], + "authorized_access_point": "Legates (Rome)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/03166010X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12283328c", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12283328", + "source": "BNF" + } + ], + "variant_access_point": [ + "Legati" + ], + "authorized_access_point": "L\u00e9gats (Rome)" + }, + { + "md5": "9fe02cc51bec18b1cfb9c3540ad9379d", + "pid": "031819877", + "note": [ + { + "label": [ + "GDEL" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Sous cette vedette on trouve les ouvrages qui traitent de la pratique des nations africaines de remplacer les fonctionnaires, les hommes d'affaires etc. par des Africains" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Africanisation" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85001756", + "source": "LCSH" + } + ], + "authorized_access_point": "Africanization" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/031819877", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12296380d", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12296380", + "source": "BNF" + } + ], + "authorized_access_point": "Africanisation" + }, + { + "md5": "21d25644592b37de7619e82e822e0841", + "pid": "031955274", + "note": [ + { + "label": [ + "Grand Larousse universel", + "Encycl. universalis (art. : Chalemie) : sahn\u0101\u012b (shahn\u0101\u012b, shehn\u0101\u012b) - http://www.universalis-edu.com (2011-02-15)", + "Dict. de la musique / M. Honegger, 1976 (art. : Inde)", + "Dict. de la musique / M. Vignal, 2005 (art. : Indienne (Musique)) : sahna\u00ef", + "Dict. des mots de la musique / J. Siron, 2006 : shahn\u0101\u012b", + "Encycl. des instruments de musique / A. Buchner, 1980 : sahna\u00ef", + "Encycl. de la musique, 1992 : shenai", + "M\u00e9diath\u00e8que de la Cit\u00e9 de la musique : sahnai - http://mediatheque.cite-musique.fr (2011-02-15)", + "Dict. encyclop\u00e9dique de la musique / D. Arnold, 1988 (art. : Inde ; Chalemie) : shahna\u00ef ou sahna\u00ef", + "Oxford Music online : \u015bahn\u0101\u012b - http://www.oxfordmusiconline.com (2011-02-15)", + "Dict. g\u00e9n\u00e9ral hindi-fran\u00e7ais / N. Balbir, 1992 : \u015b\u0301ahn\u0101\u012b", + "BnF Service indien, 2017-07-17" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Inde du Nord, Pakistan, Bangladesh. Hautbois en feuille de palmier s\u00e9ch\u00e9e, mont\u00e9e dans une petite base m\u00e9tallique conique ins\u00e9r\u00e9e dans un tuyau en bois d'environ 50 cm avec 7 trous \u00e9quidistants dans lequel est embo\u00eet\u00e9 un pavillon m\u00e9tallique conique (facture pour la musique hindoustanie). Dans certaines traditions r\u00e9gionales, le tuyau et le pavillon ne forment qu'une seule pi\u00e8ce en bois ou en m\u00e9tal, le nombre de trous varie entre 6 et 8, et il y a parfois un trou pour le pouce" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Hautbois (famille d'instruments)" + }, + { + "authorized_access_point": "Instruments de musique - Inde" + } + ], + "related": [ + { + "authorized_access_point": "Sahanai (hautbois n\u00e9palais)" + }, + { + "authorized_access_point": "Shan\u0101\u012b, Musique de" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCMP", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/performanceMediums/mp2013015636", + "source": "LCMP" + } + ], + "authorized_access_point": "\u015aahn\u0101\u012b" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Shahna\u00ef" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85121263", + "source": "LCSH" + } + ], + "authorized_access_point": "Shehnai" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/031955274", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb123075977", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12307597", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Musique", + "type": "bf:ClassificationDdc", + "classificationPortion": "780" + } + ], + "variant_access_point": [ + "\u015aahn\u0101\u012b", + "Sahna\u012b", + "Sahnai", + "Shahna\u00ef", + "Shehn\u0101\u012b", + "Shenai" + ], + "authorized_access_point": "Shan\u0101\u012b (hautbois indien)" + }, + { + "md5": "f1a3789d7a8e531c7ce9bee688f006bd", + "pid": "032027524", + "note": [ + { + "label": [ + "Rens. t\u00e9l., 1993-06-04, INRIA" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Laval RVM (en ligne), 2003-08-28" + ], + "noteType": "dataNotFound" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Interfaces (informatique)" + }, + { + "authorized_access_point": "Programmation (informatique)" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/032027524", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12313565v", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12313565", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Physique appliqu\u00e9e", + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "authorized_access_point": "G\u00e9n\u00e9rateurs d'interfaces (logiciels)" + }, + { + "md5": "6b1ff49aa341559724497320a884a581", + "pid": "032184034", + "note": [ + { + "label": [ + "Encycl. universalis (art. : Argentine) - http://www.universalis-edu.com (2024-05-30)", + "Disparition et t\u00e9moignage : r\u00e9inventer la r\u00e9sistance dans l'Argentine des m\u00e8res de la place de Mai / A. Verstraeten, 2013", + "Les folles de la place de Mai / J.-P. Bousquet, 1982" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Femmes proches des \"disparus\" de la dictature militaire de 1976-1983, qui manifestaient silencieusement sur la place de Mai \u00e0 Buenos Aires chaque jeudi \u00e0 partir d'avril 1977" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Personnes disparues - Argentine" + }, + { + "authorized_access_point": "Argentine - 1976-1983 (Dictature militaire)" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/032184034", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb123263986", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12326398", + "source": "BNF" + } + ], + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "950" + } + ], + "variant_access_point": [ + "Folles de la place de Mai", + "Folles de la place de Mai (Argentine)", + "Madres de Plaza de Mayo", + "M\u00e8res de la place de Mai", + "Place de Mai, Folles de la", + "Place de Mai, M\u00e8res de la" + ], + "authorized_access_point": "M\u00e8res de la place de Mai (Argentine)" + }, + { + "md5": "8bac85a40f70aa47aa68e7ed935c83c1", + "pid": "032317468", + "note": [ + { + "label": [ + "Voir aussi la subdivision Ressources Internet \u00e0 tous sujets noms communs et noms propres pour les ressources \u00e9lectroniques sur ces sujets disponibles sur Internet" + ], + "noteType": "seeReference" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "R\u00e9seaux \u00e0 grande distance (informatique)" + } + ], + "related": [ + { + "authorized_access_point": "Administration \u00e9lectronique" + }, + { + "authorized_access_point": "Babillards \u00e9lectroniques" + }, + { + "authorized_access_point": "Internet - Gestion" + }, + { + "authorized_access_point": "Internet et femmes" + }, + { + "authorized_access_point": "Internet et immigr\u00e9s" + }, + { + "authorized_access_point": "Internet et personnes \u00e2g\u00e9es" + }, + { + "authorized_access_point": "Internet et propagande" + }, + { + "authorized_access_point": "Intranets" + }, + { + "authorized_access_point": "Langage et Internet" + }, + { + "authorized_access_point": "Lecture sur \u00e9cran" + }, + { + "authorized_access_point": "M\u00e9dias num\u00e9riques" + }, + { + "authorized_access_point": "Neutralit\u00e9 de l'Internet" + }, + { + "authorized_access_point": "Cin\u00e9ma et Internet" + }, + { + "authorized_access_point": "Outernets" + }, + { + "authorized_access_point": "RENATER" + }, + { + "authorized_access_point": "Ressources Internet" + }, + { + "authorized_access_point": "Th\u00e9\u00e2tre et internet" + }, + { + "authorized_access_point": "Viralit\u00e9" + }, + { + "authorized_access_point": "Cyberespace" + }, + { + "authorized_access_point": "D\u00e9mocratie \u00e9lectronique" + }, + { + "authorized_access_point": "Droits de la personnalit\u00e9 et Internet" + }, + { + "authorized_access_point": "Espaces publics multim\u00e9dias" + }, + { + "authorized_access_point": "Extranets" + }, + { + "authorized_access_point": "G\u00e9n\u00e9ration Internet" + }, + { + "authorized_access_point": "Internet - Droit" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Th\u00e9rapie en ligne" + }, + { + "authorized_access_point": "Internet - Aspect \u00e9conomique" + }, + { + "authorized_access_point": "R\u00e9putation num\u00e9rique" + }, + { + "authorized_access_point": "Formation en ligne" + }, + { + "authorized_access_point": "Internet - Protection de la jeunesse" + }, + { + "authorized_access_point": "Archives de l'Internet" + }, + { + "authorized_access_point": "Internet dans les campagnes \u00e9lectorales" + }, + { + "authorized_access_point": "Cybersexe" + }, + { + "authorized_access_point": "Internet mobile" + }, + { + "authorized_access_point": "Internet \u00e0 haut d\u00e9bit" + }, + { + "authorized_access_point": "Adresses Internet" + }, + { + "authorized_access_point": "Chat (Internet)" + }, + { + "authorized_access_point": "Aide psychologique en ligne" + }, + { + "authorized_access_point": "Droit - Ressources Internet" + }, + { + "authorized_access_point": "Ing\u00e9nierie - Ressources Internet" + }, + { + "authorized_access_point": "M\u00e9decine - Ressources Internet" + }, + { + "authorized_access_point": "Noms de domaine (Internet)" + }, + { + "authorized_access_point": "Pharmacie - Ressources Internet" + }, + { + "authorized_access_point": "Programmation sur Internet" + }, + { + "authorized_access_point": "Recherche sur Internet" + }, + { + "authorized_access_point": "Sciences - Ressources Internet" + }, + { + "authorized_access_point": "Serveurs gophers" + }, + { + "authorized_access_point": "T\u00e9l\u00e9phonie Internet" + }, + { + "authorized_access_point": "T\u00e9l\u00e9vision - Ressources Internet" + }, + { + "authorized_access_point": "WAIS (syst\u00e8me d'information)" + }, + { + "authorized_access_point": "Web" + }, + { + "authorized_access_point": "Internet sur la t\u00e9l\u00e9vision" + }, + { + "authorized_access_point": "Enfants - Ressources Internet" + }, + { + "authorized_access_point": "Visioconf\u00e9rences sur Internet" + }, + { + "authorized_access_point": "Radio - Ressources Internet" + }, + { + "authorized_access_point": "Biblioth\u00e8ques - Ressources Internet" + }, + { + "authorized_access_point": "R\u00e9seaux sociaux (Internet)" + }, + { + "authorized_access_point": "Internet en milieu de travail" + }, + { + "authorized_access_point": "Enqu\u00eates en ligne" + }, + { + "authorized_access_point": "Internet des objets" + } + ], + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Internet" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh92002816", + "source": "LCSH" + } + ], + "authorized_access_point": "Internet" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/032317468", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12337059x", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12337059", + "source": "BNF" + } + ], + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "variant_access_point": [ + "Net (r\u00e9seau d'ordinateurs)", + "Sites Internet" + ], + "authorized_access_point": "Internet" + }, + { + "md5": "26e6370f25ac716a1473c7bdff2ca35f", + "pid": "032324650", + "note": [ + { + "label": [ + "Orphanet - https://www.orpha.net (2024-05-28)", + "Syndrome de Laron : aspects diagnostiques, th\u00e9rapeutiques et pronostiques / H. Latrech, M. Polak [in] La Presse m\u00e9dicale, 2016, 45, 1", + "Dict. de m\u00e9decine Flammarion, 2008 : Laron (syndrome de)", + "Dict. de l'Acad\u00e9mie de m\u00e9decine : nanisme de type Laron - https://www.academie-medecine.fr/le-dictionnaire (2024-05-28)", + "Dict. illustr\u00e9 des termes de m\u00e9decine, 2012 : nanisme type Laron" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Maladies h\u00e9r\u00e9ditaires" + }, + { + "authorized_access_point": "Nanisme" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh93001158", + "source": "LCSH" + } + ], + "authorized_access_point": "Laron dwarfism" + }, + { + "source": "MeSH", + "identifiedBy": [ + { + "type": "uri", + "value": "https://id.nlm.nih.gov/mesh/M0452907", + "source": "MeSH" + } + ], + "authorized_access_point": "Laron Syndrome" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Nanisme de Laron" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/032324650", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb123376138", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12337613", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Sciences m\u00e9dicales et param\u00e9dicales", + "type": "bf:ClassificationDdc", + "classificationPortion": "610" + } + ], + "variant_access_point": [ + "D\u00e9ficience en r\u00e9cepteur d'hormone de croissance", + "D\u00e9ficit du r\u00e9cepteur \u00e0 l'hormone de croissance", + "Insensibilit\u00e9 compl\u00e8te \u00e0 l'hormone de croissance", + "Insensibilit\u00e9 primaire \u00e0 l'hormone de croissance", + "Laron, Syndrome de", + "Nanisme de Laron", + "Nanisme de type Laron", + "Nanisme hypophysaire de type II", + "Nanisme type Laron", + "R\u00e9sistance primaire \u00e0 l'hormone de croissance", + "Syndrome de l'insensibilit\u00e9 \u00e0 l'hormone de croissance" + ], + "authorized_access_point": "Syndrome de Laron" + }, + { + "md5": "1e48e8890fcf4608a99d2f2e05974064", + "pid": "032324804", + "note": [ + { + "label": [ + "Les IGFs (insulin like growth factors) et leurs prot\u00e9ines de liaison (IGFBPs) [in] Journal de p\u00e9diatrie et de pu\u00e9riculture, 1996, 9, 7", + "R\u00f4le et variations de l'expression de la superfamille des prot\u00e9ines IGFBP par les cellules b\u00eata des \u00eelots pancr\u00e9atiques, notamment en cas d'atteinte pancr\u00e9atique comme celle induite par le diab\u00e8te / C. Neftel, 2014 [m\u00e9moire]" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Prot\u00e9ines de liaison" + } + ], + "related": [ + { + "authorized_access_point": "Facteurs de croissance IGF" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh90000055", + "source": "LCSH" + } + ], + "authorized_access_point": "Insulin-like growth factor-binding proteins" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Prot\u00e9ines de liaison de la somatom\u00e9dine" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/032324804", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12337626m", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12337626", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Sciences de la vie", + "type": "bf:ClassificationDdc", + "classificationPortion": "570" + } + ], + "variant_access_point": [ + "IGF binding proteins", + "IGFBP (prot\u00e9ines)", + "Insulin-like growth factor binding proteins", + "Prot\u00e9ines de liaison aux IGF", + "Prot\u00e9ines de liaison de la somatom\u00e9dine", + "Prot\u00e9ines de liaison des IGF" + ], + "authorized_access_point": "Prot\u00e9ines IGFBP" + }, + { + "md5": "1c782acaf2d5b97213153254a033e66e", + "pid": "032370474", + "note": [ + { + "label": [ + "Grand dict. encyclop\u00e9dique Larousse (art. : Staline, Joseph) : complot des blouses blanches", + "Les derniers complots de Staline : l'affaire des blouses blanches / Jean-Jacques Marie, 1993" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Le 13 janvier 1953, \u00e0 Moscou, des m\u00e9decins juifs d'une organisation d'assistance sont accus\u00e9s de l'assassinat de hauts dirigeants du r\u00e9gime. Ils seront r\u00e9habilit\u00e9s et lib\u00e9r\u00e9s le 4 avril, apr\u00e8s la mort de Staline" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Politique et gouvernement - URSS - 1941-1953" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/032370474", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12341305k", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12341305", + "source": "BNF" + } + ], + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "950" + } + ], + "variant_access_point": [ + "Affaire des blouses blanches (URSS ; 1953)", + "Blouses blanches, Affaire des (1953)", + "Complot des blouses blanches (1953)" + ], + "authorized_access_point": "Affaire des blouses blanches (1953)" + }, + { + "md5": "b9b8301185dab741b9e87cee879b47af", + "pid": "03243782X", + "note": [ + { + "label": [ + "Grand Larousse universel", + "Encycl. universalis (art. : Suppression des \"Corn Laws\") - http://www.universalis-edu.com (2018-08-14)", + "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1996" + ], + "noteType": "dataSource" + }, + { + "label": [ + "L\u00e9gislation protectionniste sur la production c\u00e9r\u00e9ali\u00e8re britannique, favorable aux grands propri\u00e9taires terriens. Renforc\u00e9e en 1815, elle fut abolie en 1846-1849 \u00e0 la suite de la campagne libre-\u00e9changiste de Richard Cobden et l'Anti-Corn-Law League" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "C\u00e9r\u00e9ales - Industrie et commerce - Droit" + }, + { + "authorized_access_point": "Protectionnisme" + }, + { + "authorized_access_point": "Grande-Bretagne - Histoire" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Corn-Laws (Grande-Bretagne)" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85032773", + "source": "LCSH" + } + ], + "authorized_access_point": "Corn laws (Great Britain)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/03243782X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb123467810", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12346781", + "source": "BNF" + } + ], + "classification": [ + { + "name": "\u00c9conomie politique", + "type": "bf:ClassificationDdc", + "classificationPortion": "330" + }, + { + "name": "Droit", + "type": "bf:ClassificationDdc", + "classificationPortion": "340" + }, + { + "name": "Histoire de l'Europe", + "type": "bf:ClassificationDdc", + "classificationPortion": "940" + } + ], + "variant_access_point": [ + "Lois sur le bl\u00e9 (Histoire de Grande-Bretagne)" + ], + "authorized_access_point": "Corn-laws (Histoire de Grande-Bretagne)" + }, + { + "md5": "d276d745ca8f5e5ddbc1828b54166240", + "pid": "032493940", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Philosophie - Chine - Histoire" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85100892", + "source": "LCSH" + } + ], + "authorized_access_point": "Philosophy, Chinese--20th century" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/032493940", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12351319g", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12351319", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Philosophie", + "type": "bf:ClassificationDdc", + "classificationPortion": "100" + } + ], + "authorized_access_point": "Philosophie - Chine - 20e si\u00e8cle" + }, + { + "md5": "bc7d737f68fb9e6031c1aa25c77a81f5", + "pid": "032506929", + "note": [ + { + "label": [ + "Grand Larousse universel", + "Nouveau petit Robert 2008" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "V\u00eatements de femme" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/032506929", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12352358m", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12352358", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Costume et apparence personnelle", + "type": "bf:ClassificationDdc", + "classificationPortion": "391" + }, + { + "name": "\u00c9conomie domestique", + "type": "bf:ClassificationDdc", + "classificationPortion": "640" + } + ], + "authorized_access_point": "Saris" + }, + { + "md5": "3afbb785c0bcac70aa36f8da3bcebe8d", + "pid": "03256953X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "G\u00e9omatique" + }, + { + "authorized_access_point": "Logiciels" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/03256953X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12357433r", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12357433", + "source": "BNF" + } + ], + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + }, + { + "name": "G\u00e9ographie, tourisme (guides) et voyages", + "type": "bf:ClassificationDdc", + "classificationPortion": "910" + } + ], + "variant_access_point": [ + "G\u00e9ographie - Logiciels" + ], + "authorized_access_point": "G\u00e9ographie (discipline) - Logiciels" + }, + { + "md5": "68f5ed3bec39b308963680c19a78004d", + "pid": "032675011", + "note": [ + { + "label": [ + "GLU", + "Encycl. universalis, thesaurus" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Cit\u00e9s pr\u00e9existantes \u00e0 la conqu\u00eate et soumises \u00e0 Rome, les municipes pouvaient \u00eatre de droit romain, de droit latin, ou conserver un droit propre" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Administration locale" + }, + { + "authorized_access_point": "Droit romain" + }, + { + "authorized_access_point": "Provinces romaines" + } + ], + "related": [ + { + "authorized_access_point": "Canabae" + }, + { + "authorized_access_point": "Villes antiques" + }, + { + "authorized_access_point": "Droit latin" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85088457", + "source": "LCSH" + } + ], + "authorized_access_point": "Municipal corporations (Roman law)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/032675011", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12365897t", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12365897", + "source": "BNF" + } + ], + "variant_access_point": [ + "Municipalit\u00e9s (droit romain)", + "Municipia" + ], + "authorized_access_point": "Municipes (droit romain)" + }, + { + "md5": "ada6580f81ff9c100bb7d11a7c26b085", + "pid": "032709501", + "note": [ + { + "label": [ + "Laval RVM (en ligne), 2005-03-18" + ], + "noteType": "dataNotFound" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Donn\u00e9es - Compression (informatique)" + }, + { + "authorized_access_point": "Utilitaires (logiciels)" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/032709501", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb123687540", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12368754", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Physique appliqu\u00e9e", + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "variant_access_point": [ + "Logiciels de compactage des donn\u00e9es (informatique)", + "Logiciels de compression des donn\u00e9es (informatique)" + ], + "authorized_access_point": "Donn\u00e9es - Compression (informatique) - Logiciels" + }, + { + "md5": "0a5e4fc2147b4847124c7ba4cfb4f719", + "pid": "032916078", + "note": [ + { + "label": [ + "Sous cette vedette, on trouve les documents sur la gestion des syst\u00e8mes informatiques. Les documents sur l'informatique appliqu\u00e9e \u00e0 la gestion sont sous la vedette Gestion -- Informatique. Les documents sur les syst\u00e8mes d'information sp\u00e9cialis\u00e9s en gestion sont sous la vedette Syst\u00e8mes d'information en gestion" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gestion" + } + ], + "related": [ + { + "authorized_access_point": "Migration des syst\u00e8mes d'information" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Gouvernance des donn\u00e9es" + }, + { + "authorized_access_point": "Scalabilit\u00e9 (informatique)" + }, + { + "authorized_access_point": "Microsoft Windows Server Update Services (serveur)" + }, + { + "authorized_access_point": "Infog\u00e9rance" + }, + { + "authorized_access_point": "Informatique - Proc\u00e9dures de secours" + } + ], + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Informatique -- Gestion" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2008102940", + "source": "LCSH" + } + ], + "authorized_access_point": "Electronic data processing--Management" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/032916078", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12385286x", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12385286", + "source": "BNF" + } + ], + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "variant_access_point": [ + "Gestion de l'informatique", + "Gestion de parc d'ordinateurs", + "Syst\u00e8mes informatiques - Gestion", + "Gestion de parc informatique", + "Gestion des syst\u00e8mes informatiques", + "Informatique, Centres d' - Gestion", + "Informatique - Planification", + "Ordinateurs - Gestion", + "Parc d'ordinateurs - Gestion", + "Parc informatique - Gestion", + "Planification informatique" + ], + "authorized_access_point": "Informatique - Gestion" + }, + { + "md5": "d7ee864da852018c34673a6d6047bf42", + "pid": "032978294", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Arts - Japon" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Art - Japon - 794-1185 (\u00c9poque de Heian)" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85008402", + "source": "LCSH" + } + ], + "authorized_access_point": "Arts, Japanese--Heian period, 794-1185" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/032978294", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb123896175", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12389617", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Arts (sauf litt\u00e9rature)", + "type": "bf:ClassificationDdc", + "classificationPortion": "700" + } + ], + "authorized_access_point": "Arts - Japon - 794-1185 (\u00c9poque de Heian)" + }, + { + "md5": "e4f6f5df2afcb6ebf23caef713fb6109", + "pid": "033125341", + "note": [ + { + "label": [ + "Les tentatives de r\u00e9forme du calendrier gr\u00e9gorien entre la fin du XIXe si\u00e8cle et le milieu du XXe si\u00e8cle / P. Rocher, 2011 - http://www.imcce.fr (2015-09-21)" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Calendrier (chronologie)" + } + ], + "related": [ + { + "authorized_access_point": "R\u00e9forme" + }, + { + "authorized_access_point": "Calendrier gr\u00e9gorien" + }, + { + "authorized_access_point": "Calendrier julien" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/033125341", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12402334r", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12402334", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Astronomie", + "type": "bf:ClassificationDdc", + "classificationPortion": "520" + }, + { + "name": "Histoire", + "type": "bf:ClassificationDdc", + "classificationPortion": "900" + } + ], + "variant_access_point": [ + "Calendrier - R\u00e9forme", + "R\u00e9forme du calendrier" + ], + "authorized_access_point": "Calendrier (chronologie) - R\u00e9forme" + }, + { + "md5": "979af81daa1edaadfae0940563218251", + "pid": "033136831", + "type": "bf:Topic", + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Syst\u00e8me tributaire (Chine)" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85137436", + "source": "LCSH" + } + ], + "authorized_access_point": "Tributary system (China)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/033136831", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12403376x", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12403376", + "source": "BNF" + } + ], + "variant_access_point": [ + "Tribut (Chine)" + ], + "authorized_access_point": "Syst\u00e8me tributaire (Chine)" + }, + { + "md5": "804e2a0e147ea852824ba25dd8e5583b", + "pid": "033293074", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Litt\u00e9rature belge de langue fran\u00e7aise" + }, + { + "authorized_access_point": "Th\u00e9\u00e2tre (genre litt\u00e9raire) francophone" + } + ], + "bnf_type": "genre/forme Rameau", + "narrower": [ + { + "authorized_access_point": "Farces belges de langue fran\u00e7aise" + }, + { + "authorized_access_point": "Vaudevilles belges de langue fran\u00e7aise" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85051793", + "source": "LCSH" + } + ], + "authorized_access_point": "Belgian drama (French)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/033293074", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12417356g", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12417356", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Histoire et critique litt\u00e9raires", + "type": "bf:ClassificationDdc", + "classificationPortion": "800" + } + ], + "variant_access_point": [ + "Th\u00e9\u00e2tre (genre litt\u00e9raire) francophone belge", + "Th\u00e9\u00e2tre belge de langue fran\u00e7aise" + ], + "authorized_access_point": "Th\u00e9\u00e2tre (genre litt\u00e9raire) belge de langue fran\u00e7aise" + }, + { + "md5": "f9f0966b4ae387b8eec161d6f48b29b2", + "pid": "033422605", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Art - Grande-Bretagne" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Architecture - Grande-Bretagne - 17e si\u00e8cle" + }, + { + "authorized_access_point": "Art jacob\u00e9en" + }, + { + "authorized_access_point": "Art Stuart" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/033422605", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12428983g", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12428983", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Arts (sauf litt\u00e9rature)", + "type": "bf:ClassificationDdc", + "classificationPortion": "700" + } + ], + "authorized_access_point": "Art - Grande-Bretagne - 17e si\u00e8cle" + }, + { + "md5": "1b59eba661d2091035079a4d2f35b030", + "pid": "033433763", + "note": [ + { + "label": [ + "Grand Larousse universel", + "Encycl. universalis, 1989 (art. : Canada)", + "Petit Robert 1, 1993", + "The way of the WASP : how it made America, and how it can save it, so to speak / R. Brookhiser, 1991" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Nom donn\u00e9, aux \u00c9tats-Unis et au Canada, aux citoyens d'origine anglo-saxonne et de religion protestante, constituant ou ayant constitu\u00e9 les couches dirigeantes du pays" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Conditions sociales - \u00c9tats-Unis" + }, + { + "authorized_access_point": "Blancs" + }, + { + "authorized_access_point": "Ethnologie - Canada" + }, + { + "authorized_access_point": "Ethnologie - \u00c9tats-Unis" + }, + { + "authorized_access_point": "Protestants" + } + ], + "related": [ + { + "authorized_access_point": "Am\u00e9ricains d'origine britannique" + }, + { + "authorized_access_point": "Canadiens anglophones" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/033433763", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12429955g", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12429955", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Religion", + "type": "bf:ClassificationDdc", + "classificationPortion": "200" + }, + { + "name": "Sciences sociales", + "type": "bf:ClassificationDdc", + "classificationPortion": "300" + }, + { + "name": "Groupes sociaux", + "type": "bf:ClassificationDdc", + "classificationPortion": "305" + }, + { + "name": "Ethnologie", + "type": "bf:ClassificationDdc", + "classificationPortion": "390" + } + ], + "variant_access_point": [ + "WASPs", + "White Anglo-Saxon Protestants" + ], + "authorized_access_point": "WASP" + }, + { + "md5": "f1b6a68abff9c9802fdeffcef7c89766", + "pid": "033642036", + "note": [ + { + "label": [ + "GLU" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Partisans de Savonarole" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Histoire religieuse - Italie - 16e si\u00e8cle" + }, + { + "authorized_access_point": "Florence (Italie) - 1494-1512 (Exil des M\u00e9dicis)" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/033642036", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12448906f", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12448906", + "source": "BNF" + } + ], + "authorized_access_point": "Piagnoni (Mouvement de Savonarole)" + }, + { + "md5": "c1541d50a8ef7dbfdbdf095140f0d98a", + "pid": "033689725", + "note": [ + { + "label": [ + "Encycl. universalis (art. : Policier, roman ; Pigasse, Albert (1887-1985)) - http://www.universalis-edu.com (2012-06-21)", + "Dict. des litt\u00e9ratures de langue fran\u00e7aise / J.-P. de Beaumarchais, D. Couty, A. Rey, 1987 (art. : Roman policier)", + "Stanislas-Andr\u00e9 Steeman. Aux limites de la fiction polici\u00e8re / A. Huftier, 2006", + "Dict. des litt\u00e9ratures polici\u00e8res / C. Mespl\u00e8de, 2007 : whodunit", + "Dict. du roman policier / J. Tulard, 2005 : whodunit" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Dict. des termes litt\u00e9raires, 2005. - Lexique des termes litt\u00e9raires / M. Jarrety, 2001" + ], + "noteType": "dataNotFound" + }, + { + "label": [ + "Sous cette vedette, on trouve les recueils de romans d'\u00e9nigme de divers pays ou en diverses langues" + ], + "noteType": "general" + }, + { + "label": [ + "Voir aussi les vedettes du type Roman d'\u00e9nigme [adjectif de langue, de nationalit\u00e9 ou g\u00e9ographique]" + ], + "noteType": "seeReference" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Roman policier" + } + ], + "related": [ + { + "authorized_access_point": "Cosy mystery" + } + ], + "bnf_type": "genre/forme Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/033689725", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12453179f", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12453179", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Probl\u00e8mes et services sociaux", + "type": "bf:ClassificationDdc", + "classificationPortion": "360" + }, + { + "name": "Po\u00e9sie", + "type": "bf:ClassificationDdc", + "classificationPortion": "801" + } + ], + "variant_access_point": [ + "\u00c9nigme (roman)", + "Roman \u00e0 \u00e9nigme", + "Roman d'\u00e9nigme en chambre close", + "Roman de d\u00e9tection", + "Roman de myst\u00e8re", + "Roman jeu", + "Roman policier \u00e0 \u00e9nigme", + "Roman probl\u00e8me", + "Whodunit" + ], + "authorized_access_point": "Roman d'\u00e9nigme" + }, + { + "md5": "4c58e2aaff24ee6479720cf74796fadf", + "pid": "033738653", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Utilitaires (logiciels)" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/033738653", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12457541t", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12457541", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Physique appliqu\u00e9e", + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "variant_access_point": [ + "Disques rigides - Gestion" + ], + "authorized_access_point": "Disques durs - Gestion" + }, + { + "md5": "91f0cc7747968df89a223d6efcd4338c", + "pid": "03374033X", + "note": [ + { + "label": [ + "Laval RVM, 1994-08. - LCSH, 1994-09" + ], + "noteType": "dataNotFound" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "\u00c9quateur" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/03374033X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12457696c", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12457696", + "source": "BNF" + } + ], + "authorized_access_point": "Relations ext\u00e9rieures - \u00c9quateur" + }, + { + "md5": "ac0e0749f3c1b28908190ccf2ed4fc48", + "pid": "033869235", + "note": [ + { + "label": [ + "Une introduction \u00e0 l'analyse du discours argumentatif / V. Mendenhall, 1990", + "Grammaire du discours argumentatif / E. Eggs, 1994", + "Le d\u00e9veloppement des discours argumentatifs / C. Golder, 1996" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Discours (linguistique)" + } + ], + "related": [ + { + "authorized_access_point": "Argumentation" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/033869235", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12468269t", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12468269", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Linguistique g\u00e9n\u00e9rale", + "type": "bf:ClassificationDdc", + "classificationPortion": "401" + } + ], + "variant_access_point": [ + "Analyse du discours argumentatif", + "Argumentation (linguistique)", + "Argumentation dans la langue", + "Parole argumentative", + "Texte - Argumentation", + "Texte argumentatif", + "Textes argumentatifs", + "Topo\u00ef (linguistique)" + ], + "authorized_access_point": "Discours argumentatif" + }, + { + "md5": "04a5b715ef7a253d9dda65cefae655ff", + "pid": "033895732", + "note": [ + { + "label": [ + "Laval RVM, 1997-02" + ], + "noteType": "dataNotFound" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Logiciels" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/033895732", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12470661f", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12470661", + "source": "BNF" + } + ], + "variant_access_point": [ + "Logiciels de gestion du personnel" + ], + "authorized_access_point": "Personnel - Direction -- Logiciels" + }, + { + "md5": "457fd7d5ab7397ede1cea7eaad9e7cf2", + "pid": "034054693", + "note": [ + { + "label": [ + "Grand Larousse universel", + "Mourre" + ], + "noteType": "dataSource" + }, + { + "label": [ + "En Am\u00e9rique latine, au 19e si\u00e8cle et au d\u00e9but du 20e si\u00e8cle, chefs politiques se faisant les champions des masses m\u00e9tisses et indiennes contre la bourgeoisie blanche et exer\u00e7ant le pouvoir par des m\u00e9thodes dictatoriales, avec l'appui de l'arm\u00e9e : par ex. J. Francia, J.A. P\u00e1ez, J.M. Rosas, R. Carrera, P. D\u00edaz, J.V. Gomez" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Politique et gouvernement - Am\u00e9rique latine - 20e si\u00e8cle" + }, + { + "authorized_access_point": "Dictateurs" + }, + { + "authorized_access_point": "Gouvernement militaire" + }, + { + "authorized_access_point": "Hommes politiques" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Caudillos" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/034054693", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb124850000", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12485000", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Science politique", + "type": "bf:ClassificationDdc", + "classificationPortion": "320" + } + ], + "authorized_access_point": "Caudillos" + }, + { + "md5": "83d38b69798cf49e1b9de278fefae7e9", + "pid": "03405491X", + "note": [ + { + "label": [ + "Encycl. universalis (M\u00e9diatisation d'Empire)", + "GLU ; Mourre (M\u00e9diatisation)", + "Mediatisierung ; SWD, 1995-04" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Incorporation d'un \u00c9tat relevant directement de l'empereur dans un autre \u00c9tat de l'empire (Saint Empire puis Empire allemand)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Souverainet\u00e9" + }, + { + "authorized_access_point": "Territoire - Acquisition" + }, + { + "authorized_access_point": "Saint Empire romain germanique" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85082854", + "source": "LCSH" + } + ], + "authorized_access_point": "Mediatized states" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/03405491X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12485021z", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12485021", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Sciences politiques", + "type": "bf:ClassificationDdc", + "classificationPortion": "320" + }, + { + "name": "Histoire m\u00e9di\u00e9vale, moderne et contemporaine (sauf la France)", + "type": "bf:ClassificationDdc", + "classificationPortion": "940" + } + ], + "variant_access_point": [ + "M\u00e9diatisation (Saint Empire romain germanique)" + ], + "authorized_access_point": "M\u00e9diatisation d'Empire" + }, + { + "md5": "8cc1ef1083cb73e8e0674815f0a71fa6", + "pid": "034133704", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Chartreuses (monast\u00e8res) - [Localisations g\u00e9ographiques]" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Gosnay (Pas-de-Calais) - Chartreuse du Val Saint-Esprit" + }, + { + "authorized_access_point": "Aix-en-Provence (Bouches-du-Rh\u00f4ne) - Couvent des Chartreux" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/034133704", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12492226q", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12492226", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Religion", + "type": "bf:ClassificationDdc", + "classificationPortion": "200" + }, + { + "name": "Construction", + "type": "bf:ClassificationDdc", + "classificationPortion": "690" + }, + { + "name": "Architecture", + "type": "bf:ClassificationDdc", + "classificationPortion": "720" + } + ], + "authorized_access_point": "Chartreuses (monast\u00e8res) - France" + }, + { + "md5": "c732927d75abe4c730fb370ea9ce4f00", + "pid": "034195688", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Philosophie - Chine - Histoire" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85100889", + "source": "LCSH" + } + ], + "authorized_access_point": "Philosophy, Chinese--960-1644" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/034195688", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb124978822", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12497882", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Philosophie", + "type": "bf:ClassificationDdc", + "classificationPortion": "100" + } + ], + "authorized_access_point": "Philosophie - Chine - 960-1644" + }, + { + "md5": "cfd52a933a54976ba29c09b75ae64f8b", + "pid": "034254145", + "note": [ + { + "label": [ + "Access Basic 2 / B. Blier, 1995", + "Crash course in Access Basic / A. Wyatt, S. Gilmore, 1994", + "Access Basic cookbook / C. S. Valentine, 1993" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "BASIC (langage de programmation)" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/034254145", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12502863w", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12502863", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Physique appliqu\u00e9e", + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "variant_access_point": [ + "AccessBasic (langage de programmation)" + ], + "authorized_access_point": "Access Basic (langage de programmation)" + }, + { + "md5": "50a3aaf31e9bed8695fc5e94ccdabcea", + "pid": "034259910", + "type": "bf:Topic", + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Partis politiques -- Bangladesh" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/034259910", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12503320g", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12503320", + "source": "BNF" + } + ], + "authorized_access_point": "Partis politiques - Bangladesh" + }, + { + "md5": "c4bfb6efdaa63260836fad77fdf433a6", + "pid": "034308695", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Microordinateurs" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Amiga (ordinateur)" + }, + { + "authorized_access_point": "CBM (ordinateur)" + }, + { + "authorized_access_point": "Commodore 64 (ordinateur)" + }, + { + "authorized_access_point": "Commodore 128 (ordinateur)" + }, + { + "authorized_access_point": "PET (ordinateur)" + }, + { + "authorized_access_point": "VIC 20 (ordinateur)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/034308695", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb125076777", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12507677", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Physique appliqu\u00e9e", + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "authorized_access_point": "Commodore (ordinateurs)" + }, + { + "md5": "294adb4f7b86056fb89bd0eb619eae8b", + "pid": "034342230", + "note": [ + { + "label": [ + "Vocabulaire de l'analyse litt\u00e9raire / D. Bergez, V. G\u00e9raud, J.-J. Robrieux, 1994", + "Dict. des termes litt\u00e9raires, 2001", + "Dict. du litt\u00e9raire / P. Aron, D. Saint-Jacques, A. Viala, 2002", + "Dict. des termes litt\u00e9raires, 2005" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Litt\u00e9rature - Esth\u00e9tique" + } + ], + "related": [ + { + "authorized_access_point": "Polyphonie (litt\u00e9rature)" + }, + { + "authorized_access_point": "Carnavalesque" + }, + { + "authorized_access_point": "Dialogue (litt\u00e9rature)" + }, + { + "authorized_access_point": "Intertextualit\u00e9" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00009821", + "source": "LCSH" + } + ], + "authorized_access_point": "Dialogism (Literary analysis)" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Dialogisme" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/034342230", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12510697c", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12510697", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Po\u00e9sie", + "type": "bf:ClassificationDdc", + "classificationPortion": "801" + } + ], + "authorized_access_point": "Dialogisme" + }, + { + "md5": "28eec5e36ee58ae05cc42df8058cce37", + "pid": "034566228", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Philosophie - Chine - Histoire" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85100890", + "source": "LCSH" + } + ], + "authorized_access_point": "Philosophy, Chinese--1644-1912" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/034566228", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12530940n", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12530940", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Philosophie", + "type": "bf:ClassificationDdc", + "classificationPortion": "100" + } + ], + "authorized_access_point": "Philosophie - Chine - 1644-1912" + }, + { + "md5": "c4d6ad8217b5e14d0cce2969cec7f05c", + "pid": "034591966", + "note": [ + { + "label": [ + "Encycl. universalis (art. : Langages de programmation) - http://www.universalis-edu.com (2011-11-04)", + "Encycl. de l'informatique et des syst\u00e8mes d'information, 2006", + "Langage Java / P. Bellot, C. Matiachoff [in] Techniques de l'ing\u00e9nieur, 1998, H3088", + "TermSciences - http://www.termsciences.fr (2011-11-04)", + "The encycl. of computer languages - http://hopl.murdoch.edu.au (2011-11-04)" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Langages de programmation" + } + ], + "related": [ + { + "authorized_access_point": "Akka (plate-forme informatique)" + }, + { + "authorized_access_point": "BlueJ (environnement de d\u00e9veloppement d'applications)" + }, + { + "authorized_access_point": "Scala (langage de programmation)" + }, + { + "authorized_access_point": "Hadoop (plate-forme informatique)" + }, + { + "authorized_access_point": "OSGi (plate-forme informatique)" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Java Persistence API" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/034591966", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12533207m", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12533207", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Math\u00e9matiques", + "type": "bf:ClassificationDdc", + "classificationPortion": "510" + }, + { + "name": "Physique appliqu\u00e9e", + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "authorized_access_point": "Java (langage de programmation)" + }, + { + "md5": "7668aa6f04bb336efd49e36ea0447dd0", + "pid": "034623574", + "note": [ + { + "label": [ + "L'am\u00e9nagement linguistique dans le monde - http://www.tlfq.ulaval.ca (2008-11-26)", + "Ethnologue (15th ed.) - http://www.ethnologue.com (2008-11-26)" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Les langues du monde / M. Sala, I. Vintila-Radulescu, 1984. - Les langues dans le monde ancien et moderne / J. Perrot, 1981" + ], + "noteType": "dataNotFound" + }, + { + "label": [ + "Langue de Nouvelle-Cal\u00e9donie (France)", + "L'adjectif de langue correspondant est \"tayo\". Il est invariable" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Langues cr\u00e9oles fran\u00e7aises" + } + ], + "related": [ + { + "authorized_access_point": "Langues m\u00e9lan\u00e9siennes" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Tayo (langue)" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh95001065", + "source": "LCSH" + } + ], + "authorized_access_point": "Tayo language" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/034623574", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12536022p", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12536022", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Langues", + "type": "bf:ClassificationDdc", + "classificationPortion": "400" + } + ], + "variant_access_point": [ + "Caldoche (langue)", + "Kaldosh (langue)", + "Langues cr\u00e9oles fran\u00e7aises - Nouvelle-Cal\u00e9donie", + "Patois de St-Louis (langue)" + ], + "authorized_access_point": "Tayo (langue)" + }, + { + "md5": "7815af1a0078ea121c6a11b7a03c9ba1", + "pid": "03465500X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Enseignement - M\u00e9thodes actives" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "M\u00e9thode Agazzi" + }, + { + "authorized_access_point": "P\u00e9dagogie Germaine Tortel" + }, + { + "authorized_access_point": "Tapis de lecture" + } + ], + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "\u00c9ducation de la premi\u00e8re enfance -- M\u00e9thodes actives" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh89003664", + "source": "LCSH" + } + ], + "authorized_access_point": "Early childhood education--Activity programs" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/03465500X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb125387672", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12538767", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Education et enseignement", + "type": "bf:ClassificationDdc", + "classificationPortion": "370" + } + ], + "authorized_access_point": "\u00c9ducation de la premi\u00e8re enfance - M\u00e9thodes actives" + }, + { + "md5": "dfe72b87f92f90e9fd70b4766dbcc195", + "pid": "034679391", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Informatique - Gestion" + }, + { + "authorized_access_point": "Protection de l'information (informatique)" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Informatique -- Proc\u00e9dures de secours" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh89004334", + "source": "LCSH" + } + ], + "authorized_access_point": "Electronic data processing--Backup processing alternatives" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/034679391", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12540873j", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12540873", + "source": "BNF" + } + ], + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "variant_access_point": [ + "Copies de sauvegarde (informatique)", + "Copies de secours (informatique)", + "Sauvegardes (informatique)", + "Traitement d\u00e9port\u00e9 (informatique)", + "Copies de s\u00e9curit\u00e9 (informatique)", + "Informatique - Reprises en secours", + "Informatique - Sauvegardes", + "Informatique - Traitement d\u00e9port\u00e9", + "Mesures de sauvegarde (informatique)", + "Proc\u00e9dures de sauvegarde (informatique)", + "Proc\u00e9dures de secours (informatique)", + "Reprises en secours (informatique)" + ], + "authorized_access_point": "Informatique - Proc\u00e9dures de secours" + }, + { + "md5": "84eac5467af05e268121a351d9cee1a3", + "pid": "034705384", + "note": [ + { + "label": [ + "Ann\u00e9e 1994 dans \"Le Monde", + "Quid 1996 (p. 1161)", + "Monde, 1997-02-24" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Affaire cons\u00e9cutive \u00e0 la faillite en 1989 de la soci\u00e9t\u00e9 d'am\u00e9nagement immobilier Whitewater Development, cr\u00e9\u00e9e en 1978 dans l'Arkansas par les \u00e9poux Clinton en copropri\u00e9t\u00e9 avec des amis ; r\u00e9v\u00e9l\u00e9 en mars 1992 par le New York Times, le scandale du projet immobilier Whitewater devient alors une affaire politico-judiciaire qui a entra\u00een\u00e9 la condamnation de plusieurs proches des Clinton et pourrait conna\u00eetre son d\u00e9nouement en 1997-1998" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Politique et gouvernement - \u00c9tats-Unis - 1993-2001" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/034705384", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12543176c", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12543176", + "source": "BNF" + } + ], + "variant_access_point": [ + "Affaire Whitewater (1992-....)" + ], + "authorized_access_point": "Whitewater, Affaire (1992-....)" + }, + { + "md5": "27267f75ad0e525f0b5a814569ea5fd9", + "pid": "03472690X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Serveurs (informatique)" + }, + { + "authorized_access_point": "Web" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/03472690X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12545061j", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12545061", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Physique appliqu\u00e9e", + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "variant_access_point": [ + "MSN (serveur)" + ], + "authorized_access_point": "Microsoft Network (serveur)" + }, + { + "md5": "ce3fafe09df93a9de04e1fc157fce8f6", + "pid": "034766995", + "note": [ + { + "label": [ + "LCNA (en ligne) 2004-09-20 : Microsoft BackOffice" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Architecture client-serveur (informatique)" + }, + { + "authorized_access_point": "Gestionnaires de r\u00e9seaux (logiciels)" + } + ], + "related": [ + { + "authorized_access_point": "SNA (architecture des r\u00e9seaux d'ordinateurs)" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/034766995", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb125486790", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12548679", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Physique appliqu\u00e9e", + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "variant_access_point": [ + "Back Office (logiciels)", + "BackOffice (logiciels)", + "Microsoft Back Office (logiciels)" + ], + "authorized_access_point": "Microsoft BackOffice (logiciels)" + }, + { + "md5": "41969421ea6c6e1e7a3b3cf076baa287", + "pid": "034781897", + "note": [ + { + "label": [ + "Laval RVM (en ligne), 2001-03-22" + ], + "noteType": "dataNotFound" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bases de donn\u00e9es relationnelles" + }, + { + "authorized_access_point": "Langages de programmation" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/034781897", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb125499792", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12549979", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Physique appliqu\u00e9e", + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "variant_access_point": [ + "Jet (langage de programmation)", + "Microsoft Jet database engine (langage de programmation)", + "Microsoft Jet DB engine (langage de programmation)", + "Microsoft Jet engine (langage de programmation)" + ], + "authorized_access_point": "Microsoft Jet (langage de programmation)" + }, + { + "md5": "2985f0c6dc49ecbaa4ffd274c5450015", + "pid": "034857923", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Droit d'auteur - Domaine public" + }, + { + "authorized_access_point": "Droit d'auteur et informatique" + } + ], + "related": [ + { + "authorized_access_point": "Droit d'auteur - Logiciels" + }, + { + "authorized_access_point": "Logiciels gratuits" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh91002599", + "source": "LCSH" + } + ], + "authorized_access_point": "Shareware (Computer software)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/034857923", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb125566086", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12556608", + "source": "BNF" + } + ], + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "variant_access_point": [ + "Contribuciels", + "Contributiels", + "Logiciels \u00e0 contribution volontaire", + "Logiciels du domaine public", + "Logiciels non brevet\u00e9s", + "Logiciels partag\u00e9s", + "Logiciels publics", + "Logiciels tomb\u00e9s dans le domaine public", + "Partagiciels", + "Shareware (logiciels)" + ], + "authorized_access_point": "Logiciels contributifs" + }, + { + "md5": "a325964297b402b36678a2edab7b6cdc", + "pid": "034885420", + "note": [ + { + "label": [ + "Laval RVM (en ligne), 2005-05-24" + ], + "noteType": "dataNotFound" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "E-justice" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/034885420", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb125590502", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12559050", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Physique appliqu\u00e9e", + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + }, + { + "name": "Droit", + "type": "bf:ClassificationDdc", + "classificationPortion": "340" + } + ], + "authorized_access_point": "Justice - Administration - Logiciels" + }, + { + "md5": "51fc1f55646d56be7bf67d61ed98fbaa", + "pid": "034892710", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Int\u00e9gration de donn\u00e9es (informatique)" + }, + { + "authorized_access_point": "Bases de donn\u00e9es - Conception" + }, + { + "authorized_access_point": "Exploration de donn\u00e9es" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Entrep\u00f4ts de donn\u00e9es" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh97003695", + "source": "LCSH" + } + ], + "authorized_access_point": "Data warehousing" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/034892710", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12559694b", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12559694", + "source": "BNF" + } + ], + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "variant_access_point": [ + "Data warehouse", + "Centralisation de donn\u00e9es", + "Entreposage de donn\u00e9es", + "Magasins de donn\u00e9es" + ], + "authorized_access_point": "Entrep\u00f4ts de donn\u00e9es" + }, + { + "md5": "06d05db1e469e596611e71ef246e02da", + "pid": "034960848", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Logiciels - Maintenance" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Gestion de configurations des logiciels" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh91002171", + "source": "LCSH" + } + ], + "authorized_access_point": "Software configuration management" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/034960848", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12565703q", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12565703", + "source": "BNF" + } + ], + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "variant_access_point": [ + "Logiciels - Configuration -- Gestion", + "Logiciels - Gestion de configuration", + "Gestion de configuration logiciel" + ], + "authorized_access_point": "Gestion de configurations des logiciels" + }, + { + "md5": "85594be59908671abf387f6ae27e8208", + "pid": "035061308", + "note": [ + { + "label": [ + "Convergence et diversit\u00e9 \u00e0 l'heure de la mondialisation / \u00c9conomica, 1997" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "D\u00e9veloppement \u00e9conomique" + }, + { + "authorized_access_point": "\u00c9conomie ouverte" + } + ], + "related": [ + { + "authorized_access_point": "Aide \u00e9conomique" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/035061308", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12574241v", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12574241", + "source": "BNF" + } + ], + "variant_access_point": [ + "Convergence des \u00e9conomies", + "Convergence \u00e9conomique", + "Harmonisation \u00e9conomique", + "Productivit\u00e9 - Convergence", + "Rapprochement (\u00e9conomie politique)" + ], + "authorized_access_point": "Convergence (\u00e9conomie politique)" + }, + { + "md5": "44b6a18703cc487e9713642d4cdd9775", + "pid": "035095679", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Langages de script (informatique)" + }, + { + "authorized_access_point": "Interpr\u00e9teurs (logiciels)" + }, + { + "authorized_access_point": "Microsoft Visual BASIC (langage de programmation)" + } + ], + "related": [ + { + "authorized_access_point": "HTML (langage de balisage)" + }, + { + "authorized_access_point": "Sites Web - Conception" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/035095679", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb131666483", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13166648", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Physique appliqu\u00e9e", + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "variant_access_point": [ + "VB Script (langage de programmation)", + "Microsoft Visual BASIC Scripting Edition (langage de programmation)" + ], + "authorized_access_point": "VBScript (langage de programmation)" + }, + { + "md5": "919fadd91ed811a57dfe763c712ea21f", + "pid": "035141913", + "note": [ + { + "label": [ + "La g\u00e9ographie culturelle / Paul Claval, 1995", + "Les mots de la g\u00e9ographie / Roger Brunet, 1992 (art. culture)" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Culture" + }, + { + "authorized_access_point": "G\u00e9ographie humaine" + } + ], + "related": [ + { + "authorized_access_point": "\u00c9tudes r\u00e9gionales" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "G\u00e9ographie des sexualit\u00e9s" + } + ], + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "G\u00e9ographie culturelle" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/035141913", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb131699688", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13169968", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Ethnologie, anthropologie, folklore", + "type": "bf:ClassificationDdc", + "classificationPortion": "390" + }, + { + "name": "G\u00e9ographie, tourisme (guides) et voyages", + "type": "bf:ClassificationDdc", + "classificationPortion": "910" + } + ], + "variant_access_point": [ + "Anthropog\u00e9ographie" + ], + "authorized_access_point": "G\u00e9ographie culturelle" + }, + { + "md5": "f1dfb4bf5aa3aa58b5a63bd1ee1c7308", + "pid": "035167734", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bases de donn\u00e9es - Interrogation" + }, + { + "authorized_access_point": "Recherche sur Internet" + }, + { + "authorized_access_point": "Web" + }, + { + "authorized_access_point": "Moteurs de recherche" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Qwant" + }, + { + "authorized_access_point": "Google" + }, + { + "authorized_access_point": "FUSIN (syst\u00e8me informatique)" + }, + { + "authorized_access_point": "Portails Internet" + }, + { + "authorized_access_point": "Sites Web - R\u00e9f\u00e9rencement" + } + ], + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Moteurs de recherche sur Internet" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh97007463", + "source": "LCSH" + } + ], + "authorized_access_point": "Web search engines" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/035167734", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb131716541", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13171654", + "source": "BNF" + } + ], + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "variant_access_point": [ + "Annuaires \u00e9lectroniques (Internet)", + "Index \u00e9lectroniques (Internet)", + "Internet - Moteurs de recherche", + "Internet - Outils de recherche", + "Outils de recherche sur Internet", + "Web - Moteurs de recherche", + "Web - Outils de recherche" + ], + "authorized_access_point": "Moteurs de recherche sur Internet" + }, + { + "md5": "84dbef8285748075ddc581317d811ae8", + "pid": "035198222", + "note": [ + { + "label": [ + "Le data warehouse : le data mining / J.-M. Franco..., 1997" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bases de donn\u00e9es - Interrogation" + } + ], + "related": [ + { + "authorized_access_point": "Analyse des donn\u00e9es symboliques" + }, + { + "authorized_access_point": "Entrep\u00f4ts de donn\u00e9es" + }, + { + "authorized_access_point": "Mod\u00e9lisation pr\u00e9dictive" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Fouille de r\u00e8gles d'associations" + }, + { + "authorized_access_point": "Syst\u00e8mes de recommandation (informatique)" + }, + { + "authorized_access_point": "Web usage mining" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh97002073", + "source": "LCSH" + } + ], + "authorized_access_point": "Data mining" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/035198222", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13173501n", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13173501", + "source": "BNF" + } + ], + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "variant_access_point": [ + "Data mining", + "Datamining", + "Exploration de donn\u00e9es (informatique)", + "Extraction de donn\u00e9es", + "Forage de donn\u00e9es", + "Fouille de donn\u00e9es", + "Fouille de texte", + "Prospection de donn\u00e9es", + "Text mining" + ], + "authorized_access_point": "Exploration de donn\u00e9es" + }, + { + "md5": "9e6979fa568b890b3ddc3bc58fa339aa", + "pid": "035260521", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Langages de balisage" + } + ], + "related": [ + { + "authorized_access_point": "XQuery (langage de programmation)" + }, + { + "authorized_access_point": "Ressource Description Framework (informatique)" + }, + { + "authorized_access_point": "SOA" + }, + { + "authorized_access_point": "XUL (langage de balisage)" + }, + { + "authorized_access_point": "SVG (langage de balisage)" + }, + { + "authorized_access_point": "XSL (langage de balisage)" + }, + { + "authorized_access_point": "SOAP (protocole de r\u00e9seaux d'ordinateurs)" + }, + { + "authorized_access_point": "SGML (langage de balisage)" + }, + { + "authorized_access_point": "WML (langage de balisage)" + }, + { + "authorized_access_point": "XSLT (langage de programmation)" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "SCXML (langage de balisage)" + }, + { + "authorized_access_point": "ebXML (langage de balisage)" + }, + { + "authorized_access_point": "Atom (XML)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/035260521", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb131774360", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13177436", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Physique appliqu\u00e9e", + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "variant_access_point": [ + "Extendible Markup language (langage de balisage)", + "eXtensible Markup language (langage de balisage)", + "Langage de balisage extensible" + ], + "authorized_access_point": "XML (langage de balisage)" + }, + { + "md5": "7e33c6d471bf089390a16fdb13182237", + "pid": "035381795", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Roman scandinave" + }, + { + "authorized_access_point": "Litt\u00e9rature danoise" + } + ], + "bnf_type": "genre/forme Rameau", + "narrower": [ + { + "authorized_access_point": "Roman biographique danois" + }, + { + "authorized_access_point": "Roman d'espionnage danois" + }, + { + "authorized_access_point": "Roman de science-fiction danois pour la jeunesse" + }, + { + "authorized_access_point": "Roman fantastique danois" + }, + { + "authorized_access_point": "Roman historique danois" + }, + { + "authorized_access_point": "Roman policier danois" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85035729", + "source": "LCSH" + } + ], + "authorized_access_point": "Danish fiction" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/035381795", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13185670f", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13185670", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Histoire et critique litt\u00e9raires", + "type": "bf:ClassificationDdc", + "classificationPortion": "800" + } + ], + "authorized_access_point": "Roman danois" + }, + { + "md5": "479c5fc237047f79260f50ce5112687f", + "pid": "035461152", + "note": [ + { + "label": [ + "T\u00e9l\u00e9phonie Internet / F. Toutain [in] Techniques de l'ing\u00e9nieur,2000 ,TE7510", + "L'impact de la t\u00e9l\u00e9phonie Internet sur l'industrie des t\u00e9l\u00e9communications / C. Sajo, 1999 [th\u00e8se]", + "Voix sur IP : Internet, fixe et mobile : \u00e9tat de l'art, enjeux et perspectives / J. Pons [in] Techniques de l'ing\u00e9nieur, 2009, TE7532" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Internet" + }, + { + "authorized_access_point": "T\u00e9l\u00e9phone" + } + ], + "related": [ + { + "authorized_access_point": "IMS (protocole de r\u00e9seaux d'ordinateurs)" + }, + { + "authorized_access_point": "Modems ADSL" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "SIP (protocole de r\u00e9seaux d'ordinateurs)" + } + ], + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "T\u00e9l\u00e9phonie Internet" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh98004350", + "source": "LCSH" + } + ], + "authorized_access_point": "Internet telephony" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/035461152", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb131909421", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13190942", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Sciences appliqu\u00e9es", + "type": "bf:ClassificationDdc", + "classificationPortion": "600" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "variant_access_point": [ + "Cyberphone", + "T\u00e9l\u00e9phone Internet", + "Voix sur IP", + "T\u00e9l\u00e9phone par Internet", + "T\u00e9l\u00e9phone sur Internet", + "T\u00e9l\u00e9phonie IP", + "T\u00e9l\u00e9phonie par Internet", + "T\u00e9l\u00e9phonie sur Internet", + "T\u00e9l\u00e9phonie via Internet", + "Voice over IP", + "VOIP" + ], + "authorized_access_point": "T\u00e9l\u00e9phonie Internet" + }, + { + "md5": "54bf2ab618c2866d9227904e43e815f8", + "pid": "035486686", + "note": [ + { + "label": [ + "Quid 1998", + "Wikip\u00e9dia - http://fr.wikipedia.org (2008-04-09)" + ], + "noteType": "dataSource" + }, + { + "label": [ + "\u00c9lection pr\u00e9sidentielle du 2 novembre 1948 : Harry S. Truman (d\u00e9mocrate) est \u00e9lu avec 49,6% des voix contre Thomas E. Dewey (r\u00e9publicain, 45,1%)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Pr\u00e9sidents - \u00c9tats-Unis - \u00c9lection" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2010106959", + "source": "LCSH" + } + ], + "authorized_access_point": "Presidents--United States--Election--1948" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/035486686", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13192308p", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13192308", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Science politique", + "type": "bf:ClassificationDdc", + "classificationPortion": "320" + }, + { + "name": "Histoire du reste du monde", + "type": "bf:ClassificationDdc", + "classificationPortion": "950" + } + ], + "authorized_access_point": "Pr\u00e9sidents - \u00c9tats-Unis - \u00c9lection (1948)" + }, + { + "md5": "caf7786845a48e1740dd328183fdfbad", + "pid": "035527250", + "note": [ + { + "label": [ + "Grand Larousse universel", + "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1996" + ], + "noteType": "dataSource" + }, + { + "label": [ + "1er-2 ao\u00fbt 1798 : victoire de la flotte britannique (Nelson) sur la flotte fran\u00e7aise (Brueys d'Aigalliers, qui fut tu\u00e9) dans la baie d'Aboukir (\u00c9gypte)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Guerre de la deuxi\u00e8me coalition (1798-1801) - Op\u00e9rations militaires - \u00c9gypte" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85091947", + "source": "LCSH" + } + ], + "authorized_access_point": "Nile, Battle of the, Egypt, 1798" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/035527250", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13194746t", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13194746", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Histoire du reste du monde", + "type": "bf:ClassificationDdc", + "classificationPortion": "950" + } + ], + "variant_access_point": [ + "Aboukir, Bataille d' (1798)", + "1re bataille d'Aboukir (1798)", + "Nil, Bataille du (1798)", + "Premi\u00e8re bataille d'Aboukir (1798)" + ], + "authorized_access_point": "Bataille d'Aboukir (1798)" + }, + { + "md5": "d1ae0e11d0c7ef7a189278f3f14c6013", + "pid": "035621664", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Informatique" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Programmation concurrente" + } + ], + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Fonctionnement multit\u00e2che" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh92001010", + "source": "LCSH" + } + ], + "authorized_access_point": "Multitasking (Computer science)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/035621664", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13325133z", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13325133", + "source": "BNF" + } + ], + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "variant_access_point": [ + "Multit\u00e2che, Fonctionnement", + "Traitement multit\u00e2che" + ], + "authorized_access_point": "Fonctionnement multit\u00e2che" + }, + { + "md5": "93717e9b30d7edfb0a31bcc1d8832ff0", + "pid": "035634847", + "note": [ + { + "label": [ + "Grand Larousse universel", + "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1986", + "Holidays and festivals index / H. Henderson, B. Puckett, 1995", + "Celebrating the fourth : Independence Day and the rites of Nationalism in the Early Republic / L. Travers, 1997" + ], + "noteType": "dataSource" + }, + { + "label": [ + "F\u00eate nationale des \u00c9tats-Unis (4 juillet) comm\u00e9morant la D\u00e9claration d'Ind\u00e9pendance (1776)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "F\u00eates - Etats-Unis" + }, + { + "authorized_access_point": "F\u00eates nationales" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85051103", + "source": "LCSH" + } + ], + "authorized_access_point": "Fourth of July celebrations" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/035634847", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13325977s", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13325977", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Sciences politiques", + "type": "bf:ClassificationDdc", + "classificationPortion": "320" + }, + { + "name": "Ethnologie, anthropologie, folklore", + "type": "bf:ClassificationDdc", + "classificationPortion": "390" + } + ], + "variant_access_point": [ + "4 juillet (f\u00eate nationale am\u00e9ricaine)", + "Anniversaire de l'Ind\u00e9pendance am\u00e9ricaine", + "F\u00eate de l'Ind\u00e9pendance am\u00e9ricaine", + "F\u00eate nationale am\u00e9ricaine", + "Fourth of July (f\u00eate nationale am\u00e9ricaine)", + "Jour de l'ind\u00e9pendance (f\u00eate nationale am\u00e9ricaine)", + "July 4th (f\u00eate nationale am\u00e9ricaine)", + "Quatre juillet (f\u00eate nationale am\u00e9ricaine)" + ], + "authorized_access_point": "Independence Day (f\u00eate nationale am\u00e9ricaine)" + }, + { + "md5": "e6c1bb45a76c06e87fea3a36bd13dd39", + "pid": "035650532", + "note": [ + { + "label": [ + "Linux et XFree86 / E. Georgescu, 1997" + ], + "noteType": "dataSource" + }, + { + "label": [ + "LCSH (en ligne), 1998-09-03" + ], + "noteType": "dataNotFound" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "X Window System (syst\u00e8me informatique)" + }, + { + "authorized_access_point": "Linux (logiciels)" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/035650532", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb133270366", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13327036", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Physique appliqu\u00e9e", + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "variant_access_point": [ + "XFree 86 (syst\u00e8me informatique)" + ], + "authorized_access_point": "XFree86 (syst\u00e8me informatique)" + }, + { + "md5": "d45d0e7d686f0d1c8badcd6113da2e07", + "pid": "035658622", + "note": [ + { + "label": [ + "LCSH (en ligne), 1998-09-07" + ], + "noteType": "dataNotFound" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Didacticiels" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/035658622", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13327542h", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13327542", + "source": "BNF" + } + ], + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + }, + { + "name": "Education et enseignement", + "type": "bf:ClassificationDdc", + "classificationPortion": "370" + }, + { + "name": "Math\u00e9matiques", + "type": "bf:ClassificationDdc", + "classificationPortion": "510" + } + ], + "variant_access_point": [ + "G\u00e9om\u00e9trie - \u00c9tude et enseignement -- Logiciels" + ], + "authorized_access_point": "G\u00e9om\u00e9trie - Didacticiels" + }, + { + "md5": "bea101c0a4995826368d49b683cd703b", + "pid": "035724099", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ordinateurs de poche" + } + ], + "related": [ + { + "authorized_access_point": "Palm (ordinateur)" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/035724099", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13332134s", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13332134", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Physique appliqu\u00e9e", + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "authorized_access_point": "PalmPilot (ordinateur)" + }, + { + "md5": "d4b345caf2b4d52668e640bda0e8863a", + "pid": "050124315", + "note": [ + { + "label": [ + "GLU", + "Mourre" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Nom donn\u00e9 \u00e0 un schisme qui se produisit dans l'ouest de la France au moment du Concordat de 1801 : l'une des clauses du Concordat \u00e9tait la d\u00e9mission de tous les \u00e9v\u00eaques de l'ancienne \u00c9glise de France ; les \u00e9v\u00eaques non d\u00e9missionnaires regroup\u00e8rent autour d'eux les communaut\u00e9s catholiques anti-concordataires qui donn\u00e8rent naissance \u00e0 la Petite \u00c9glise" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "\u00c9glise catholique - France" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85078480", + "source": "LCSH" + } + ], + "authorized_access_point": "Louisets" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050124315", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12650661c", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12650661", + "source": "BNF" + } + ], + "authorized_access_point": "Petite \u00c9glise" + }, + { + "md5": "c39c7ef05be8ffd35233707dee3317ba", + "pid": "050174495", + "note": [ + { + "label": [ + "Sous cette vedette, on trouve la litt\u00e9rature italophone des \u00c9tats-Unis. La litt\u00e9rature am\u00e9ricaine de langue anglaise par des auteurs d'origine italienne se trouve sous la vedette-mati\u00e8re Litt\u00e9rature am\u00e9ricaine -- Auteurs d'origine italienne" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Litt\u00e9rature - \u00c9tats-Unis" + } + ], + "related": [ + { + "authorized_access_point": "Litt\u00e9rature am\u00e9ricaine" + } + ], + "bnf_type": "genre/forme Rameau", + "narrower": [ + { + "authorized_access_point": "Micronouvelles am\u00e9ricaines de langue italienne" + }, + { + "authorized_access_point": "Po\u00e9sie am\u00e9ricaine de langue italienne" + }, + { + "authorized_access_point": "Th\u00e9\u00e2tre (genre litt\u00e9raire) am\u00e9ricain de langue italienne" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85068775", + "source": "LCSH" + } + ], + "authorized_access_point": "Italian American literature" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050174495", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13340210s", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13340210", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Histoire et critique litt\u00e9raires", + "type": "bf:ClassificationDdc", + "classificationPortion": "800" + } + ], + "variant_access_point": [ + "Litt\u00e9rature italo-am\u00e9ricaine" + ], + "authorized_access_point": "Litt\u00e9rature am\u00e9ricaine de langue italienne" + }, + { + "md5": "7ec5d99acc63919313ddb6f2e7af1261", + "pid": "050186647", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Pilotes de p\u00e9riph\u00e9rique (logiciels)" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "DOS, Pilotes de p\u00e9riph\u00e9rique pour (logiciels)" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh90004446", + "source": "LCSH" + } + ], + "authorized_access_point": "DOS device drivers (Computer programs)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050186647", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb133408511", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13340851", + "source": "BNF" + } + ], + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "variant_access_point": [ + "Pilotes de p\u00e9riph\u00e9rique pour DOS (logiciels)" + ], + "authorized_access_point": "DOS, Pilotes de p\u00e9riph\u00e9rique pour (logiciels)" + }, + { + "md5": "4d0ee0a21fdda16c55d37910971e0a09", + "pid": "050220284", + "note": [ + { + "label": [ + "LCNA (en ligne) 2004-09-20 : Active server pages" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Microsoft Windows DNA" + }, + { + "authorized_access_point": "Serveurs Web" + }, + { + "authorized_access_point": "Sites Web - Syst\u00e8mes-auteur" + } + ], + "related": [ + { + "authorized_access_point": "ASP.NET (langage de programmation)" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050220284", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13506900c", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13506900", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Physique appliqu\u00e9e", + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "variant_access_point": [ + "ASP", + "Microsoft Active Server Pages" + ], + "authorized_access_point": "Active Server Pages" + }, + { + "md5": "cec8f09ad757fe93469ec5771990f4b8", + "pid": "050366157", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "\u00c9glise et \u00c9tat - France - Histoire" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "S\u00e9paration des \u00c9glises et de l'\u00c9tat (France ; 1905-1906)" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2009119658", + "source": "LCSH" + } + ], + "authorized_access_point": "Church and state--France--History--20th century" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050366157", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13511352z", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13511352", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Religion", + "type": "bf:ClassificationDdc", + "classificationPortion": "200" + }, + { + "name": "Science politique", + "type": "bf:ClassificationDdc", + "classificationPortion": "320" + } + ], + "variant_access_point": [ + "\u00c9glise et \u00c9tat - France - 20e si\u00e8cle" + ], + "authorized_access_point": "\u00c9glise et \u00c9tat - France - 1905-...." + }, + { + "md5": "ffea02a7ee64b395c3963a5d0033b1b1", + "pid": "05041870X", + "note": [ + { + "label": [ + "Grand Larousse universel", + "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1996" + ], + "noteType": "dataSource" + }, + { + "label": [ + "7 octobre 1879 : alliance conclue \u00e0 Vienne entre l'Allemagne et l'Autriche-Hongrie" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Relations ext\u00e9rieures - Autriche-Hongrie" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85039839", + "source": "LCSH" + } + ], + "authorized_access_point": "Dual Alliance, 1879" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/05041870X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13512801p", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13512801", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Histoire de l'Europe", + "type": "bf:ClassificationDdc", + "classificationPortion": "940" + } + ], + "variant_access_point": [ + "Alliance, Double (1879)", + "Double Alliance (1879)", + "Zweibund (1879)" + ], + "authorized_access_point": "Duplice (1879)" + }, + { + "md5": "96033410f7171cf0c053dc81e72c8d35", + "pid": "050516760", + "type": "bf:Topic", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050516760", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13533849b", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13533849", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Physique appliqu\u00e9e", + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + }, + { + "name": "Histoire", + "type": "bf:ClassificationDdc", + "classificationPortion": "900" + } + ], + "authorized_access_point": "G\u00e9n\u00e9alogie - Logiciels" + }, + { + "md5": "80abdbeb8702acc09d2ce3b1a16d09f5", + "pid": "050518526", + "note": [ + { + "label": [ + "Encycl. universalis (art. : Arenas, Reinaldo (1943-1990)) - http://www.universalis.fr (2017-06-08)", + "Wikip\u00e9dia - http://fr.wikipedia.org (2017-06-08)", + "Castro, l'infid\u00e8le / S. Raffy, 2003 (p. 499-501)", + "La g\u00e9n\u00e9ration des Cubains de Mariel et leur presse litt\u00e9raire aux \u00c9tats-Unis / L. Hasson [in] America : cahiers du Criccal, 1986, 1 (p. 117-130)", + "L'Am\u00e9rique latine de 1945 \u00e0 nos jours / P. Riado, 1992 (p. 378-379) : exode des Marielitos", + "Les quatre saisons de Fidel Castro / J.-P. Clerc, 1996 (p. 301-302) : \"crise de Mariel", + "Encycl. of Latin American history and culture / J. Kinsbrunner, 2008 (art. : Cuba : since 1959) : Mariel boatlift" + ], + "noteType": "dataSource" + }, + { + "label": [ + "15 avril-31 octobre 1980 : \u00e0 la suite d'un afflux massif de r\u00e9fugi\u00e9s cubains \u00e0 l'ambassade du P\u00e9rou \u00e0 La Havane, 125.000 Cubains (\"Marielitos\") sont autoris\u00e9s \u00e0 \u00e9migrer en Floride par le port de Mariel" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Cuba - 1959-...." + }, + { + "authorized_access_point": "\u00c9tats-Unis - 1969-1981" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050518526", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb135340392", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13534039", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Histoire du reste du monde", + "type": "bf:ClassificationDdc", + "classificationPortion": "950" + } + ], + "variant_access_point": [ + "Affaire de Mariel (1980)", + "Crise de Mariel (1980)", + "Exode des Marielitos (1980)", + "Mariel, Exode de (1980)", + "Marielitos, Exode des (1980)" + ], + "authorized_access_point": "Exode de Mariel (1980)" + }, + { + "md5": "705985faf1557042304ca9e38992f4f2", + "pid": "050534882", + "note": [ + { + "label": [ + "Wikip\u00e9dia - https://fr.wikipedia.org (2017-10-20)", + "Dict. encyclop\u00e9dique du bouddhisme / P. Cornu, 2001", + "Dict. de la sagesse orientale : bouddhisme, hindouisme, tao\u00efsme, zen, 1989 : Lamdre", + "The Sakya School of Tibetan Buddhism / Dhongthog Rinpoche, 2016 : Lamdre", + "BNF Service indien" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Litt\u00e9ralement : \"Voie, but\". Doctrine du bouddhisme Vajray\u0101na, fond\u00e9e par Vir\u016bpa et transmise par l'\u00e9cole Sa-skya-pa" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bouddhisme - Doctrines" + } + ], + "related": [ + { + "authorized_access_point": "Sa-skya-pa" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh 85074158", + "source": "LCSH" + } + ], + "authorized_access_point": "Lam-\u02bebras (Sa-skya-pa)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050534882", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb135355715", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13535571", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", + "type": "bf:ClassificationDdc", + "classificationPortion": "200" + } + ], + "variant_access_point": [ + "Lam-'bras", + "Lam Dre", + "Lamdre" + ], + "authorized_access_point": "Lamdr\u00e9" + }, + { + "md5": "8d0faeac6b12d2a2b4e64aede6fa2bac", + "pid": "05056479X", + "note": [ + { + "label": [ + "The Oregon Trail / F. Parkman, 1994 (p. 458)", + "Kearny's Plains Reconnaissance, 1845 - http://www.topogs.org/Kearny.htm (2017-06-16)" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Exp\u00e9dition command\u00e9e par le colonel Stephen W. Kearny le long de l'Oregon Trail jusqu'\u00e0 South Pass (Wyo.), qui obtint des Sioux une garantie de passage pour les immigrants vers l'Oregon, et cartographia la r\u00e9gion" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "\u00c9tats-Unis (ouest) - Jusqu'\u00e0 1848" + } + ], + "related": [ + { + "authorized_access_point": "Oregon Trail (\u00c9tats-Unis)" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/05056479X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12649132c", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12649132", + "source": "BNF" + } + ], + "classification": [ + { + "name": "G\u00e9ographie du reste du monde", + "type": "bf:ClassificationDdc", + "classificationPortion": "915" + }, + { + "name": "Histoire du reste du monde", + "type": "bf:ClassificationDdc", + "classificationPortion": "950" + } + ], + "variant_access_point": [ + "Kearny, Exp\u00e9dition de (1845)" + ], + "authorized_access_point": "Exp\u00e9dition de Kearny (1845)" + }, + { + "md5": "fd6a1614c191cb0c5b805a2f32d3b14b", + "pid": "050582453", + "note": [ + { + "label": [ + "Grand Larousse universel", + "Petit Robert 1" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Orientalistes" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85122928", + "source": "LCSH" + } + ], + "authorized_access_point": "Sinologists" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Sinologues" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050582453", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12650586f", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12650586", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Sciences sociales", + "type": "bf:ClassificationDdc", + "classificationPortion": "300" + }, + { + "name": "Histoire du reste du monde", + "type": "bf:ClassificationDdc", + "classificationPortion": "950" + } + ], + "variant_access_point": [ + "Sinisants", + "Sp\u00e9cialistes de la Chine" + ], + "authorized_access_point": "Sinologues" + }, + { + "md5": "fb0169a93b2d09af64ecd6646c18cf21", + "pid": "05058748X", + "note": [ + { + "label": [ + "Grand Larousse universel" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Aphrodisiaques" + }, + { + "authorized_access_point": "Art \u00e9rotique" + }, + { + "authorized_access_point": "Homo\u00e9rotisme" + }, + { + "authorized_access_point": "Libertinage" + }, + { + "authorized_access_point": "Morale sexuelle" + }, + { + "authorized_access_point": "Objets \u00e9rotiques" + }, + { + "authorized_access_point": "Pornographie" + }, + { + "authorized_access_point": "S\u00e9duction" + }, + { + "authorized_access_point": "Sexualit\u00e9" + }, + { + "authorized_access_point": "Sexualit\u00e9 dans les arts du spectacle" + }, + { + "authorized_access_point": "Bandes dessin\u00e9es \u00e9rotiques" + }, + { + "authorized_access_point": "Films \u00e9rotiques" + }, + { + "authorized_access_point": "Photographie \u00e9rotique" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Litt\u00e9rature \u00e9rotique" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85044718", + "source": "LCSH" + } + ], + "authorized_access_point": "Erotica" + }, + { + "source": "RVMLaval", + "authorized_access_point": "\u00c9rotisme" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/05058748X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12650884k", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12650884", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Sciences sociales", + "type": "bf:ClassificationDdc", + "classificationPortion": "300" + }, + { + "name": "Arts", + "type": "bf:ClassificationDdc", + "classificationPortion": "700" + } + ], + "variant_access_point": [ + "\u00c9rographie" + ], + "authorized_access_point": "\u00c9rotisme" + }, + { + "md5": "742d00956ec29114facf53988f974230", + "pid": "050602195", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Civilisation - Japon" + }, + { + "authorized_access_point": "Mythologie d'Asie orientale" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Dieux japonais" + }, + { + "authorized_access_point": "Tengu (mythologie)" + }, + { + "authorized_access_point": "Y\u014dkai" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85089404", + "source": "LCSH" + } + ], + "authorized_access_point": "Mythology, Japanese" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Mythologie japonaise" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050602195", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12652113m", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12652113", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Religion", + "type": "bf:ClassificationDdc", + "classificationPortion": "200" + } + ], + "authorized_access_point": "Mythologie japonaise" + }, + { + "md5": "6b33f4f9742dfc24684516f9f764d327", + "pid": "050627953", + "note": [ + { + "label": [ + "Propagande de la Russie sovi\u00e9tique, puis de l'URSS (1917-1991)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Politique et gouvernement - URSS" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh89002047", + "source": "LCSH" + } + ], + "authorized_access_point": "Propaganda, Soviet" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Propagande sovi\u00e9tique" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050627953", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12654249c", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12654249", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Science politique", + "type": "bf:ClassificationDdc", + "classificationPortion": "320" + } + ], + "authorized_access_point": "Propagande sovi\u00e9tique" + }, + { + "md5": "47c4d828d552a1fdf254f342477ee82f", + "pid": "050702858", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Syst\u00e8mes, Conception de" + } + ], + "related": [ + { + "authorized_access_point": "Logiciels - D\u00e9veloppement" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "AltaRica (m\u00e9thode formelle)" + }, + { + "authorized_access_point": "B (m\u00e9thode formelle)" + }, + { + "authorized_access_point": "Z (m\u00e9thode formelle)" + } + ], + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "M\u00e9thodes formelles (informatique)" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh99003622", + "source": "LCSH" + } + ], + "authorized_access_point": "Formal methods (Computer science)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050702858", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13539618z", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13539618", + "source": "BNF" + } + ], + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "authorized_access_point": "M\u00e9thodes formelles (informatique)" + }, + { + "md5": "096e042bace2ef488f7f8e83fd164b46", + "pid": "050764861", + "note": [ + { + "label": [ + "Programmation MTS et MSMQ avec Visual Basic et ASP / Alex Homer..., 1999" + ], + "noteType": "dataSource" + }, + { + "label": [ + "LCNA (en ligne), 2000-03-01" + ], + "noteType": "dataNotFound" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sites Web - Syst\u00e8mes-auteur" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Active Server Pages" + }, + { + "authorized_access_point": "COM (architecture des ordinateurs)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050764861", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13544731f", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13544731", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Physique appliqu\u00e9e", + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "variant_access_point": [ + "DNA", + "Windows DNA" + ], + "authorized_access_point": "Microsoft Windows DNA" + }, + { + "md5": "ca5dae4a99dce00cc656894fea876e05", + "pid": "050773313", + "note": [ + { + "label": [ + "LCSH (en ligne), 2000-03-08" + ], + "noteType": "dataNotFound" + } + ], + "type": "bf:Topic", + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Linux, Pilotes de p\u00e9riph\u00e9rique pour (logiciels)" + }, + { + "authorized_access_point": "XFree86 (syst\u00e8me informatique)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050773313", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb135454237", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13545423", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Physique appliqu\u00e9e", + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "authorized_access_point": "Linux (logiciels)" + }, + { + "md5": "b9451672ea725480444efe58899e9e13", + "pid": "050784005", + "type": "bf:Topic", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050784005", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13546289v", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13546289", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Histoire du reste du monde", + "type": "bf:ClassificationDdc", + "classificationPortion": "950" + } + ], + "variant_access_point": [ + "Conflit isra\u00e9lo-arabe - Processus de paix (1993-....)", + "Oslo, Processus d' (1993-....)", + "Processus d'Oslo (1993-....)", + "Processus de paix isra\u00e9lo-arabe", + "Processus de paix isra\u00e9lo-palestinien" + ], + "authorized_access_point": "Conflit isra\u00e9lo-arabe - 1993-.... - Paix" + }, + { + "md5": "9c6b398da4cc2c123822e8e17cd05dc9", + "pid": "050808583", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Compilateurs de silicium" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Synth\u00e8se de haut niveau (informatique)" + } + ], + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Circuits int\u00e9gr\u00e9s -- Conception assist\u00e9e par ordinateur" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85067118", + "source": "LCSH" + } + ], + "authorized_access_point": "Integrated circuits--Design and construction" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050808583", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb135547638", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13554763", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Sciences appliqu\u00e9es", + "type": "bf:ClassificationDdc", + "classificationPortion": "600" + } + ], + "variant_access_point": [ + "CAO \u00e9lectronique", + "EDA" + ], + "authorized_access_point": "Circuits int\u00e9gr\u00e9s - Conception assist\u00e9e par ordinateur" + }, + { + "md5": "51e032f045ffa1039bdca19bbf27fb2e", + "pid": "050827405", + "note": [ + { + "label": [ + "Dict. des syst\u00e8mes d'information / Robert Reix, 1999", + "Grand dict. Marabout de l'informatique et de l'Internet / Virga, 1996" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Laval RVM (en ligne), 2000-04-27" + ], + "noteType": "dataNotFound" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fichiers (informatique) - Organisation" + } + ], + "related": [ + { + "authorized_access_point": "Adobe Acrobat (logiciels)" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050827405", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb135554928", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13555492", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Physique appliqu\u00e9e", + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "variant_access_point": [ + "Portable Document Format" + ], + "authorized_access_point": "PDF (format)" + }, + { + "md5": "53e77232540d041d60738a2f30eb25c0", + "pid": "052587207", + "note": [ + { + "label": [ + "Programmer avec Qt / Matthias Kalle Dalheimer, 2000" + ], + "noteType": "dataSource" + }, + { + "label": [ + "LCNA (en ligne), 2000-08-16" + ], + "noteType": "dataNotFound" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Interfaces graphiques (informatique)" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/052587207", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13566350h", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13566350", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Physique appliqu\u00e9e", + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "authorized_access_point": "Qt (logiciels)" + }, + { + "md5": "54e797e99c646af8e9368bfff9c45c89", + "pid": "052634833", + "note": [ + { + "label": [ + "Programmation Linux avec GTK+.../ David Odin, 2000" + ], + "noteType": "dataSource" + }, + { + "label": [ + "LCNA (en ligne), 2000-09-27" + ], + "noteType": "dataNotFound" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Interfaces graphiques (informatique)" + } + ], + "related": [ + { + "authorized_access_point": "GNOME" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/052634833", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb135705577", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13570557", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Physique appliqu\u00e9e", + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "variant_access_point": [ + "Gimp Toolkit" + ], + "authorized_access_point": "GTK+" + }, + { + "md5": "2d9d8132a49e97e801eb0f19cba075cb", + "pid": "053469844", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "CEGAR (algorithme)" + }, + { + "authorized_access_point": "Logiciels - Exactitude" + }, + { + "authorized_access_point": "Logiciels - Essais" + }, + { + "authorized_access_point": "Logiciels - Validation" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "V\u00e9rification de mod\u00e8les (informatique)" + }, + { + "authorized_access_point": "Filtres (informatique)" + } + ], + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Logiciels -- V\u00e9rification" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85029528", + "source": "LCSH" + } + ], + "authorized_access_point": "Computer programs--Verification" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85029537", + "source": "LCSH" + } + ], + "authorized_access_point": "Computer software--Verification" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/053469844", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb135762613", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13576261", + "source": "BNF" + } + ], + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "variant_access_point": [ + "Analyse dynamique (informatique)", + "Analyse statique (informatique)", + "Comparaisons des donn\u00e9es", + "Logiciels - Analyse statique", + "Logiciels - Analyse dynamique", + "V\u00e9rification des logiciels" + ], + "authorized_access_point": "Logiciels - V\u00e9rification" + }, + { + "md5": "94244b715360190c08bd21be54b2139f", + "pid": "055308600", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Animaux c\u00e9l\u00e8bres" + } + ], + "related": [ + { + "authorized_access_point": "Mammouth laineux" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2002005766", + "source": "LCSH" + } + ], + "authorized_access_point": "Jarkov mammoth" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/055308600", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb136060769", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13606076", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Pal\u00e9ontologie", + "type": "bf:ClassificationDdc", + "classificationPortion": "560" + }, + { + "name": "Zoologie", + "type": "bf:ClassificationDdc", + "classificationPortion": "590" + } + ], + "variant_access_point": [ + "Jarkov, Mammouth", + "Mammouth Jarkov" + ], + "authorized_access_point": "Jarkov (mammouth)" + }, + { + "md5": "7842508ba473ed71b023f491ab5f32e5", + "pid": "059302208", + "note": [ + { + "label": [ + "Grand dict. terminologique (en ligne), 2001-07-10" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Grand dict. Marabout de l'informatique et de l'Internet / Virga, 1997 (Art : H\u00e9bergement de serveur)" + ], + "noteType": "dataNotFound" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Fournisseurs de services Internet" + }, + { + "authorized_access_point": "Sites Web" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "H\u00e9bergement Web" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2002010032", + "source": "LCSH" + } + ], + "authorized_access_point": "Web hosting" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/059302208", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13623447h", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13623447", + "source": "BNF" + } + ], + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "variant_access_point": [ + "H\u00e9bergement (informatique)", + "H\u00e9bergement de pages Web", + "H\u00e9bergement de serveur", + "H\u00e9bergement de sites Web", + "H\u00e9bergement Internet", + "Sites Web - H\u00e9bergement" + ], + "authorized_access_point": "H\u00e9bergement Web" + }, + { + "md5": "e3255938338d451080c250331a634334", + "pid": "05930278X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Art - France" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Art pompier" + }, + { + "authorized_access_point": "Arts incoh\u00e9rents (mouvement artistique)" + }, + { + "authorized_access_point": "C\u00e9nacles romantiques" + }, + { + "authorized_access_point": "Peinture - France - 19e si\u00e8cle" + }, + { + "authorized_access_point": "R\u00e9alisme (mouvement artistique)" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85007804", + "source": "LCSH" + } + ], + "authorized_access_point": "Art, French--19th century" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/05930278X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13738221v", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13738221", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Arts (sauf litt\u00e9rature)", + "type": "bf:ClassificationDdc", + "classificationPortion": "700" + } + ], + "authorized_access_point": "Art - France - 19e si\u00e8cle" + }, + { + "md5": "f5936ea57d54f8d3a6c016a508a3f0dc", + "pid": "059307374", + "note": [ + { + "label": [ + "Rois et souverains -- G\u00e9orgie (R\u00e9publique) ; Laval RVM, 2001-01" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh96007489", + "source": "LCSH" + } + ], + "authorized_access_point": "Georgia (Republic)--Kings and rulers" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/059307374", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13744704w", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13744704", + "source": "BNF" + } + ], + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "950" + } + ], + "authorized_access_point": "Rois et souverains - G\u00e9orgie" + }, + { + "md5": "394213a0c05d1601f9b372424240c404", + "pid": "06008989X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Litt\u00e9rature burkinab\u00e9 de langue fran\u00e7aise" + }, + { + "authorized_access_point": "Roman francophone" + } + ], + "bnf_type": "genre/forme Rameau", + "narrower": [ + { + "authorized_access_point": "Roman biographique burkinab\u00e9 de langue fran\u00e7aise" + }, + { + "authorized_access_point": "Roman burkinab\u00e9 de langue fran\u00e7aise pour la jeunesse" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh96004053", + "source": "LCSH" + } + ], + "authorized_access_point": "Burkinabe fiction (French)" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Roman burkinab\u00e9 (fran\u00e7ais)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/06008989X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb150866029", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15086602", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Histoire et critique litt\u00e9raires", + "type": "bf:ClassificationDdc", + "classificationPortion": "800" + } + ], + "variant_access_point": [ + "Roman francophone burkinab\u00e9" + ], + "authorized_access_point": "Roman burkinab\u00e9 de langue fran\u00e7aise" + }, + { + "md5": "d29821559ac03f24e03b923d3e289bd8", + "pid": "06082929X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Microsoft .NET" + }, + { + "authorized_access_point": "Sites Web - D\u00e9veloppement" + } + ], + "related": [ + { + "authorized_access_point": "Xamarin (plate-forme informatique)" + }, + { + "authorized_access_point": "Microsoft Windows PowerShell (langage de programmation)" + }, + { + "authorized_access_point": "VB .NET (langage de programmation)" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Microsoft Entity Framework Core (plate-forme informatique)" + }, + { + "authorized_access_point": "Common Language Runtime (informatique)" + }, + { + "authorized_access_point": "Microsoft Windows Presentation Foundation (plate-forme informatique)" + }, { - "authorized_access_point": "Journalistes noirs am\u00e9ricains" + "authorized_access_point": "Microsoft Windows Workflow Foundation (plate-forme informatique)" }, { - "authorized_access_point": "Juges noirs am\u00e9ricains" + "authorized_access_point": "Microsoft Windows Communication Foundation (plate-forme informatique)" }, { - "authorized_access_point": "Juifs noirs am\u00e9ricains" + "authorized_access_point": "ASP.NET (langage de programmation)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/06082929X", + "source": "IDREF" }, { - "authorized_access_point": "Marins noirs am\u00e9ricains" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb14410737w", + "source": "BNF" }, { - "authorized_access_point": "M\u00e9decins noirs am\u00e9ricains" + "type": "bf:Nbn", + "value": "FRBNF14410737", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Physique appliqu\u00e9e", + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "variant_access_point": [ + ".NET (plate-forme informatique)", + ".NET Framework", + "Microsoft .NET (plate-forme informatique)", + "Microsoft .NET Framework", + "Microsoft.NET Framework" + ], + "authorized_access_point": "Microsoft .NET Framework (plate-forme informatique)" + }, + { + "md5": "3c51e645defa7e0d2b5c05aedc514866", + "pid": "061604496", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Litt\u00e9rature belge de langue fran\u00e7aise" }, { - "authorized_access_point": "M\u00e9thodistes noirs am\u00e9ricains" + "authorized_access_point": "Nouvelles francophones" + } + ], + "bnf_type": "genre/forme Rameau", + "narrower": [ + { + "authorized_access_point": "Nouvelles fantastiques belges de langue fran\u00e7aise" }, { - "authorized_access_point": "Militaires noirs am\u00e9ricains" + "authorized_access_point": "Nouvelles polici\u00e8res belges de langue fran\u00e7aise" }, { - "authorized_access_point": "Militants politiques noirs am\u00e9ricains" + "authorized_access_point": "Thriller (nouvelles) belge de langue fran\u00e7aise" + } + ], + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh97001385", + "source": "LCSH" + } + ], + "authorized_access_point": "Short stories, Belgian (French)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/061604496", + "source": "IDREF" }, { - "authorized_access_point": "Mineurs de charbon noirs am\u00e9ricains" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13769729v", + "source": "BNF" }, { - "authorized_access_point": "Missionnaires noirs am\u00e9ricains" + "type": "bf:Nbn", + "value": "FRBNF13769729", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Histoire et critique litt\u00e9raires", + "type": "bf:ClassificationDdc", + "classificationPortion": "800" + } + ], + "variant_access_point": [ + "Nouvelles francophones belges" + ], + "authorized_access_point": "Nouvelles belges de langue fran\u00e7aise" + }, + { + "md5": "5381f7fb07ee911583230d3cb37d1481", + "pid": "06160738X", + "note": [ + { + "label": [ + "Wikip\u00e9dia : l\u00e9gende noire espagnole - https://fr.wikipedia.org (2017-10-20)", + "Encycl. universalis (art. : Las Casas, Barthom\u00e9 de (1474-1566)) : l\u00e9gende noire antihispanique - http://www.universalis-edu.com (2017-10-20)", + "Hist. de l'Espagne / P. Noury, 2013 (p. 207)", + "Les Am\u00e9riques. T1, Du Pr\u00e9colombien \u00e0 1830, 2016", + "Civilisation espagnole / M. Jullian, 2010", + "Dict. culturel de l'Espagne / J.-P. Duviols, J. Soriano, 2006", + "L'Espagne de 1492 \u00e0 1808 / J.-P. Dedieu, 2005", + "La l\u00e9gende noire de l'Espagne / J. P\u00e9rez, 2009", + "Dicc. de hist. de Espa\u00f1a / C. Ferrera Cuestra, 2005 : leyenda negra" + ], + "noteType": "dataSource" }, { - "authorized_access_point": "Mormons noirs am\u00e9ricains" + "label": [ + "Jugement n\u00e9gatif port\u00e9 \u00e0 l'\u00e9tranger sur la civilisation espagnole, son expansion et son influence dans le monde, particuli\u00e8rement en Am\u00e9rique. Il condamne le massacre des Am\u00e9rindiens, d\u00e9nonc\u00e9 par Bartolom\u00e9 de las Casas dans sa \"Brev\u00edsima Relaci\u00f3n de la Destrucci\u00f3n de las Indias\", ainsi que les erreurs et les crimes de la vie priv\u00e9e et politique de Philippe II" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Espagne - Histoire" + } + ], + "related": [ + { + "authorized_access_point": "Colonies espagnoles" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh93007281", + "source": "LCSH" + } + ], + "authorized_access_point": "Black Legend (Spanish history)" }, { - "authorized_access_point": "Noires am\u00e9ricaines" + "source": "RVMLaval", + "authorized_access_point": "L\u00e9gende noire (Histoire espagnole)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/06160738X", + "source": "IDREF" }, { - "authorized_access_point": "Noirs am\u00e9ricains dans la fonction publique" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13749265x", + "source": "BNF" }, { - "authorized_access_point": "Noirs am\u00e9ricains dans les arts du spectacle" + "type": "bf:Nbn", + "value": "FRBNF13749265", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Sciences sociales", + "type": "bf:ClassificationDdc", + "classificationPortion": "300" }, { - "authorized_access_point": "Noirs am\u00e9ricains dans les syndicats" + "name": "Histoire de l'Europe", + "type": "bf:ClassificationDdc", + "classificationPortion": "940" + } + ], + "variant_access_point": [ + "L\u00e9gende noire antihispanique", + "L\u00e9gende noire de l'Espagne", + "L\u00e9gende noire espagnole", + "Leyenda negra (Histoire d'Espagne)", + "Leyenda negra espa\u00f1ola", + "Leyenda negra hispanoamericana" + ], + "authorized_access_point": "L\u00e9gende noire (Histoire de l'Espagne)" + }, + { + "md5": "cda1ec910a3f8e89c9f08612c48d67de", + "pid": "061612820", + "note": [ + { + "label": [ + "Sous cette vedette, on trouve les documents sur les p\u00e9riodiques en malgache ; ou publi\u00e9s \u00e0 Madagascar (quelle qu'en soit la langue) ; ou publi\u00e9s par des Malgaches \u00e0 l'\u00e9tranger" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Malgache (langue)" }, { - "authorized_access_point": "Noirs am\u00e9ricains en milieu urbain" + "authorized_access_point": "Madagascar" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85080027", + "source": "LCSH" + } + ], + "authorized_access_point": "Malagasy periodicals" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/061612820", + "source": "IDREF" }, { - "authorized_access_point": "P\u00eacheurs noirs am\u00e9ricains" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13757124s", + "source": "BNF" }, { - "authorized_access_point": "Pentec\u00f4tistes noirs am\u00e9ricains" + "type": "bf:Nbn", + "value": "FRBNF13757124", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Sciences de l'information", + "type": "bf:ClassificationDdc", + "classificationPortion": "020" }, { - "authorized_access_point": "P\u00e8res noirs am\u00e9ricains" + "name": "Ethnologie", + "type": "bf:ClassificationDdc", + "classificationPortion": "390" }, { - "authorized_access_point": "Pilotes de navire noirs am\u00e9ricains" - }, + "name": "Langues", + "type": "bf:ClassificationDdc", + "classificationPortion": "400" + } + ], + "variant_access_point": [ + "P\u00e9riodiques en malgache" + ], + "authorized_access_point": "P\u00e9riodiques malgaches" + }, + { + "md5": "26b5fb56fb5211817ba5adebeb65fe67", + "pid": "075000504", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mythologie indon\u00e9sienne" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh93005942", + "source": "LCSH" + } + ], + "authorized_access_point": "Mythology, Javanese" + } + ], + "identifiedBy": [ { - "authorized_access_point": "Pionniers noirs am\u00e9ricains" + "type": "uri", + "value": "http://www.idref.fr/075000504", + "source": "IDREF" }, { - "authorized_access_point": "Policiers noirs am\u00e9ricains" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15105630t", + "source": "BNF" }, { - "authorized_access_point": "Politologues noirs am\u00e9ricains" - }, + "type": "bf:Nbn", + "value": "FRBNF15105630", + "source": "BNF" + } + ], + "classification": [ { - "authorized_access_point": "Prisonniers noirs am\u00e9ricains" - }, + "name": "Religion", + "type": "bf:ClassificationDdc", + "classificationPortion": "200" + } + ], + "authorized_access_point": "Mythologie javanaise" + }, + { + "md5": "5cd7101110399a12db67ec896960c68f", + "pid": "077057589", + "note": [ { - "authorized_access_point": "Propri\u00e9taires fonciers noirs am\u00e9ricains" + "label": [ + "Vocab. juridique / G. Cornu, 2001" + ], + "noteType": "dataSource" }, { - "authorized_access_point": "Propri\u00e9taires noirs am\u00e9ricains d'esclaves" - }, + "label": [ + "March\u00e9s de travaux, priv\u00e9s ou publics, dans lesquels le prix d'ensemble de l'ouvrage est d\u00e9termin\u00e9 ou fix\u00e9 de fa\u00e7on d\u00e9finitive entre le ma\u00eetre d'ouvrage et l'entrepreneur" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Scientifiques noirs am\u00e9ricains" + "authorized_access_point": "Contrats d'entreprise" }, { - "authorized_access_point": "S\u00e9minoles noirs" + "authorized_access_point": "March\u00e9s de travaux publics" }, { - "authorized_access_point": "Sociologues noirs am\u00e9ricains" - }, + "authorized_access_point": "Prix - Fixation" + } + ], + "related": [ { - "authorized_access_point": "Th\u00e9ologiens noirs am\u00e9ricains" + "authorized_access_point": "Contrats \u00e0 long terme" }, { - "authorized_access_point": "Travailleurs sociaux noirs am\u00e9ricains" + "authorized_access_point": "March\u00e9s publics - Prix" } ], + "bnf_type": "sujet Rameau", "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85001932", - "source": "LCSH" - }, - "authorized_access_point": "African Americans" - }, { "source": "RVMLaval", - "authorized_access_point": "Noirs am\u00e9ricains" + "authorized_access_point": "March\u00e9s \u00e0 forfait" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027805220", + "value": "http://www.idref.fr/077057589", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119768348", + "value": "http://catalogue.bnf.fr/ark:/12148/cb14408398q", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF14408398", "source": "BNF" } ], "classification": [ { + "name": "Droit", "type": "bf:ClassificationDdc", - "classificationPortion": "305" - }, - { - "name": "Ethnologie, anthropologie, folklore", - "type": "bf:ClassificationDdc", - "classificationPortion": "390" + "classificationPortion": "340" } ], "variant_access_point": [ - "Africains-Am\u00e9ricains", - "Afro-Am\u00e9ricains", - "Am\u00e9ricains d'origine africaine", - "Am\u00e9ricains noirs", - "Am\u00e9ricains originaires d'Afrique subsaharienne", - "N\u00e9gro-Am\u00e9ricains" + "Contrats \u00e0 prix forfaitaire", + "March\u00e9s de travaux \u00e0 prix forfaitaire" ], - "authorized_access_point": "Noirs am\u00e9ricains" + "authorized_access_point": "March\u00e9s \u00e0 forfait" }, { - "md5": "cfdd035b80013146fa412d11612f239e", - "pid": "027805301", + "md5": "ef274e65c4ceb3c07879e855a09cacc2", + "pid": "077060377", "note": [ { "label": [ - "Ne pas utiliser : employer les subdivisions 19e si\u00e8cle, Histoire -- 19e si\u00e8cle ou les vedettes construites comprenant la subdivision 1815-1870" + "Pierrot gourmand : un si\u00e8cle de cr\u00e9ation sucr\u00e9e / A. Besson, 2002", + "Bases de donn\u00e9es Marques - https://bases-marques.inpi.fr (2016-12-19)" ], - "noteType": "seeReference" - } - ], - "type": "bf:Temporal", - "deleted": "2023-08-08T14:28:42.125605+00:00", - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "noteType": "dataSource" + }, { - "type": "uri", - "value": "http://www.idref.fr/027805301", - "source": "IDREF" + "label": [ + "Pierrot gourmand est une appellation commerciale" + ], + "noteType": "general" } ], - "authorized_access_point": "1815-1870" - }, - { - "md5": "eabcfa699c405c06c2d4c9fe80069b0a", - "pid": "027805824", - "note": [ + "type": "bf:Topic", + "broader": [ { - "label": [ - "Ne pas utiliser : employer les subdivisions 19e si\u00e8cle, Histoire -- 19e si\u00e8cle ou les vedettes construites comprenant la subdivision 1815-1848" - ], - "noteType": "seeReference" + "authorized_access_point": "Confiserie" } ], - "type": "bf:Temporal", - "deleted": "2023-08-08T14:28:42.243305+00:00", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027805824", + "value": "http://www.idref.fr/077060377", "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb144197717", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF14419771", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Economie domestique, h\u00f4tellerie", + "type": "bf:ClassificationDdc", + "classificationPortion": "640" } ], - "authorized_access_point": "1815-1848" + "variant_access_point": [ + "P\u00e9g\u00e9 (confiserie)", + "Pierrot gourmand (marque d\u00e9pos\u00e9e)", + "Confiseries Pierrot gourmand" + ], + "authorized_access_point": "Pierrot gourmand (confiserie)" }, { - "md5": "39b70358da38a4a4770ea903851963a0", - "pid": "027809773", + "md5": "34cfa90b92e87ac377dfd26459242dc6", + "pid": "077062809", "note": [ { "label": [ - "S'emploie uniquement en subdivision chronologique \u00e0 certaines litt\u00e9ratures, comme la litt\u00e9rature italienne et la litt\u00e9rature tch\u00e8que", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la litt\u00e9rature, celle-ci servant de vedette mod\u00e8le pour les genres litt\u00e9raires de m\u00eame nationalit\u00e9. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec les genres litt\u00e9raires" + "GLU", + "Mourre", + "Brockhaus, 19. Aufl", + "Berlinkrise <1958> ; Berlinkrise <1961> ; SWD, 1995-04" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Crise d\u00e9clench\u00e9e en 1958 par la volont\u00e9 de l'URSS de revoir le statut de Berlin, qui se r\u00e9solut en 1961 par la construction du Mur (13 ao\u00fbt) qui gela le statu quo" ], "noteType": "general" } ], - "type": "bf:Temporal", - "related": [ + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Relations ext\u00e9rieures - URSS - 1953-1975" + }, + { + "authorized_access_point": "Statut international - Berlin (Allemagne)" + }, { - "authorized_access_point": "Litt\u00e9rature italienne - Avant 1400" + "authorized_access_point": "Guerre froide" }, { - "authorized_access_point": "Litt\u00e9rature tch\u00e8que - Avant 1400" + "authorized_access_point": "Allemagne - 1945-1990" + } + ], + "related": [ + { + "authorized_access_point": "Berlin (Allemagne) - Berliner Mauer" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027809773", + "value": "http://www.idref.fr/077062809", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11977185g", + "value": "http://catalogue.bnf.fr/ark:/12148/cb14430123z", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF14430123", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Science politique", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "320" + }, + { + "name": "Histoire de l'Europe", + "type": "bf:ClassificationDdc", + "classificationPortion": "940" } ], - "authorized_access_point": "Avant 1400" + "variant_access_point": [ + "Berlin, Crise de (1958-1961)", + "Mur de Berlin, Construction du (1961)" + ], + "authorized_access_point": "Crise de Berlin (1958-1961)" }, { - "md5": "26e0692915bef6faeca25bf2dc4fd931", - "pid": "027809781", + "md5": "c3ceeb0a2f2b4096dfcf3d6f80c2b7aa", + "pid": "077075757", "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Litt\u00e9rature italienne" + "authorized_access_point": "Langages de balisage" } ], "related": [ { - "authorized_access_point": "Po\u00e8tes italiens" + "authorized_access_point": "D3.js (informatique)" }, { - "authorized_access_point": "Chansons italiennes" - }, + "authorized_access_point": "XML (langage de balisage)" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ { - "authorized_access_point": "Madrigaux (musique) italiens" + "type": "uri", + "value": "http://www.idref.fr/077075757", + "source": "IDREF" }, { - "authorized_access_point": "M\u00e9lodies italiennes" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb14487634q", + "source": "BNF" }, { - "authorized_access_point": "Prose italienne" + "type": "bf:Nbn", + "value": "FRBNF14487634", + "source": "BNF" } ], - "bnf_type": "genre/forme Rameau", - "narrower": [ + "classification": [ { - "authorized_access_point": "Cr\u00e9puscularisme" - }, + "name": "Physique appliqu\u00e9e", + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "variant_access_point": [ + "Langage graphique vectoriel (langage de balisage)", + "Scalable Vector Graphics (langage de balisage)" + ], + "authorized_access_point": "SVG (langage de balisage)" + }, + { + "md5": "874083f561ebce49461a4a645aca4b5a", + "pid": "077088883", + "note": [ { - "authorized_access_point": "Po\u00e9sie de circonstance italienne" - }, + "label": [ + "Laval RVM (en ligne), 2005-05-09" + ], + "noteType": "dataNotFound" + } + ], + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Ballades italiennes" - }, + "authorized_access_point": "Logiciels" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ { - "authorized_access_point": "Disperata" + "type": "uri", + "value": "http://www.idref.fr/077088883", + "source": "IDREF" }, { - "authorized_access_point": "\u00c9pigrammes italiennes" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb14498699r", + "source": "BNF" }, { - "authorized_access_point": "\u00c9pop\u00e9es italiennes" - }, + "type": "bf:Nbn", + "value": "FRBNF14498699", + "source": "BNF" + } + ], + "classification": [ { - "authorized_access_point": "Frottole (litt\u00e9rature)" + "type": "bf:ClassificationDdc", + "classificationPortion": "621" }, { - "authorized_access_point": "Po\u00e8mes en prose italiens" - }, + "name": "Sciences sociales", + "type": "bf:ClassificationDdc", + "classificationPortion": "300" + } + ], + "authorized_access_point": "Analyse de contenu (communication) - Logiciels" + }, + { + "md5": "e0651822ce05d80f2a796a3313915cf7", + "pid": "077091035", + "type": "bf:Topic", + "bnf_type": "sujet Rameau", + "identifiedBy": [ { - "authorized_access_point": "Po\u00e9sie d'amour italienne" + "type": "uri", + "value": "http://www.idref.fr/077091035", + "source": "IDREF" }, { - "authorized_access_point": "Po\u00e9sie dialectale italienne" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb14513380t", + "source": "BNF" }, { - "authorized_access_point": "Po\u00e9sie didactique italienne" - }, + "type": "bf:Nbn", + "value": "FRBNF14513380", + "source": "BNF" + } + ], + "classification": [ { - "authorized_access_point": "Po\u00e9sie \u00e9logieuse italienne" + "name": "Physique appliqu\u00e9e", + "type": "bf:ClassificationDdc", + "classificationPortion": "621" }, { - "authorized_access_point": "Po\u00e9sie exp\u00e9rimentale italienne" - }, + "name": "Audiovisuel", + "type": "bf:ClassificationDdc", + "classificationPortion": "791" + } + ], + "authorized_access_point": "Son - Enregistrement et reproduction - Techniques num\u00e9riques - Logiciels" + }, + { + "md5": "aa550733004286a56576039b84ceda1c", + "pid": "077397827", + "note": [ { - "authorized_access_point": "Po\u00e9sie historique italienne" + "label": [ + "Quid 1996", + "Wikipedia - http://fr.wikipedia.org (2007-06-21)" + ], + "noteType": "dataSource" }, { - "authorized_access_point": "Po\u00e9sie italienne - Avant 1400" - }, + "label": [ + "Le 12 d\u00e9cembre 1969 une bombe explose dans le hall de la Banque de l'Agriculture, Piazza Fontana \u00e0 Milan, faisant 16 morts et 107 bless\u00e9s. La responsabilit\u00e9 de cet attentat n'a pas \u00e9t\u00e9 officiellement \u00e9tablie" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Po\u00e9sie lyrique italienne" + "authorized_access_point": "Attentats - Italie" }, { - "authorized_access_point": "Po\u00e9sie narrative italienne" - }, + "authorized_access_point": "Milan (Italie) - 1945-" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2002002032", + "source": "LCSH" + } + ], + "authorized_access_point": "Piazza Fontana Bombing, Milan, Italy, 1969" + } + ], + "identifiedBy": [ { - "authorized_access_point": "Po\u00e9sie pastorale italienne" + "type": "uri", + "value": "http://www.idref.fr/077397827", + "source": "IDREF" }, { - "authorized_access_point": "Po\u00e9sie politique italienne" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb14555186n", + "source": "BNF" }, { - "authorized_access_point": "Po\u00e9sie populaire italienne" + "type": "bf:Nbn", + "value": "FRBNF14555186", + "source": "BNF" + } + ], + "relation_pid": { + "type": "redirect_from", + "value": "080489095" + }, + "classification": [ + { + "name": "Science politique", + "type": "bf:ClassificationDdc", + "classificationPortion": "320" }, { - "authorized_access_point": "Po\u00e9sie religieuse italienne" + "name": "Histoire de l'Europe", + "type": "bf:ClassificationDdc", + "classificationPortion": "940" + } + ], + "variant_access_point": [ + "Milan, Attentat de (1969)" + ], + "authorized_access_point": "Piazza Fontana, Attentat de la (1969)" + }, + { + "md5": "6252e98a9abaaee7c99d19dca014a500", + "pid": "077937007", + "note": [ + { + "label": [ + "Une hist. des Juifs / P. Johnson, 1989 (pp. 278-281)", + "Dict. du juda\u00efsme : histoire, mythes et traditions / A. Unterman, 1997" + ], + "noteType": "dataSource" }, { - "authorized_access_point": "Po\u00e9sie satirique italienne" + "label": [ + "N\u00e9gociants, banquiers et fournisseurs juifs au service des rois et souverains de l'Europe centrale aux 17e et 18e si\u00e8cles" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Conditions \u00e9conomiques - Europe - 18e si\u00e8cle" }, { - "authorized_access_point": "Po\u00e9sie visuelle italienne" + "authorized_access_point": "Cour et courtisans" }, { - "authorized_access_point": "Sonnets italiens" + "authorized_access_point": "Hommes d'affaires juifs" } ], + "bnf_type": "sujet Rameau", "closeMatch": [ { "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85068841", - "source": "LCSH" - }, - "authorized_access_point": "Italian poetry" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85033553", + "source": "LCSH" + } + ], + "authorized_access_point": "Court Jews" }, { "source": "RVMLaval", - "authorized_access_point": "Po\u00e9sie italienne" + "authorized_access_point": "Juifs de cour" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027809781", + "value": "http://www.idref.fr/077937007", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11977186t", + "value": "http://catalogue.bnf.fr/ark:/12148/cb14508891v", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF14508891", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "\u00c9conomie politique", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "330" + }, + { + "name": "Ethnologie", + "type": "bf:ClassificationDdc", + "classificationPortion": "390" + }, + { + "name": "Histoire de l'Europe", + "type": "bf:ClassificationDdc", + "classificationPortion": "940" } ], - "authorized_access_point": "Po\u00e9sie italienne" + "variant_access_point": [ + "Cour, Juifs de", + "Hofjuden" + ], + "authorized_access_point": "Juifs de cour" }, { - "md5": "292f04c6fb961445ffbb7c9a15b82c0a", - "pid": "027811611", + "md5": "a0eab7cb8d0c23d83594ac6540ade81d", + "pid": "078974089", + "note": [ + { + "label": [ + "Syst\u00e8me int\u00e9gr\u00e9 et multiplate-forme permettant aux entreprises et aux organisations de g\u00e9rer rapidement et facilement le contenu dynamique et r\u00e9dactionnel d'un site Web" + ], + "noteType": "general" + } + ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Litt\u00e9rature espagnole" - }, - { - "authorized_access_point": "Po\u00e9sie hispanophone" + "authorized_access_point": "Sites Web - Gestion" } ], "related": [ { - "authorized_access_point": "Po\u00e8tes espagnols" - }, - { - "authorized_access_point": "Chansons espagnoles" - }, - { - "authorized_access_point": "M\u00e9lodies espagnoles" + "authorized_access_point": "ECM (gestion)" }, { - "authorized_access_point": "Prose espagnole" + "authorized_access_point": "Sites Web - Syst\u00e8mes-auteur" } ], - "bnf_type": "genre/forme Rameau", + "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "La otra sentimentalidad" + "authorized_access_point": "Portfolios \u00e9lectroniques" }, { - "authorized_access_point": "Nov\u00edsimos" - }, + "authorized_access_point": "Plateformes d'apprentissage en ligne" + } + ], + "identifiedBy": [ { - "authorized_access_point": "Silva" + "type": "uri", + "value": "http://www.idref.fr/078974089", + "source": "IDREF" }, { - "authorized_access_point": "\u00c9pigrammes espagnoles" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb145496336", + "source": "BNF" }, { - "authorized_access_point": "\u00c9p\u00eetres en vers espagnoles" - }, + "type": "bf:Nbn", + "value": "FRBNF14549633", + "source": "BNF" + } + ], + "classification": [ { - "authorized_access_point": "\u00c9pop\u00e9es espagnoles" + "name": "Physique appliqu\u00e9e", + "type": "bf:ClassificationDdc", + "classificationPortion": "621" }, { - "authorized_access_point": "Ha\u00efkus espagnols" - }, + "name": "Sciences de l'information", + "type": "bf:ClassificationDdc", + "classificationPortion": "020" + } + ], + "variant_access_point": [ + "Sites Web - Gestion - Logiciels", + "CMS (Web)", + "Content management systems", + "SGC (Web)" + ], + "authorized_access_point": "Syst\u00e8mes de gestion de contenu Web" + }, + { + "md5": "c685afdebfcd6b2f5b45618113a3f5b0", + "pid": "079180043", + "note": [ { - "authorized_access_point": "Po\u00e8mes en prose espagnols" + "label": [ + "ITunes 4 et iPod / Virga, 2004" + ], + "noteType": "dataSource" }, { - "authorized_access_point": "Po\u00e9sie contestataire espagnole" - }, + "label": [ + "Laval RVM (en ligne), 2004-06-14" + ], + "noteType": "dataNotFound" + } + ], + "type": "bf:Topic", + "related": [ { - "authorized_access_point": "Po\u00e9sie d'amour espagnole" - }, + "authorized_access_point": "Lecteurs MP3" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ { - "authorized_access_point": "Po\u00e9sie de circonstance espagnole" + "type": "uri", + "value": "http://www.idref.fr/079180043", + "source": "IDREF" }, { - "authorized_access_point": "Po\u00e9sie dialectale espagnole" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb14548815k", + "source": "BNF" }, { - "authorized_access_point": "Po\u00e9sie didactique espagnole" - }, + "type": "bf:Nbn", + "value": "FRBNF14548815", + "source": "BNF" + } + ], + "classification": [ { - "authorized_access_point": "Po\u00e9sie \u00e9logieuse espagnole" + "name": "Physique appliqu\u00e9e", + "type": "bf:ClassificationDdc", + "classificationPortion": "621" }, { - "authorized_access_point": "Po\u00e9sie espagnole - Avant 1500" - }, + "name": "Audiovisuel", + "type": "bf:ClassificationDdc", + "classificationPortion": "791" + } + ], + "authorized_access_point": "iPod" + }, + { + "md5": "a4ad8c3b5874cc92dd0c0ec3ea155450", + "pid": "081665660", + "note": [ { - "authorized_access_point": "Po\u00e9sie espagnole - 1500-1700 (P\u00e9riode classique)" + "label": [ + "La R\u00e9volution conservatrice en Allemagne, 1918-1932 / Armin Mohler, trad. par Henri Plard et Hector Lipstick, 1993", + "Normdaten : SWD, 2005-01 : Konservative Revolution" + ], + "noteType": "dataSource" }, { - "authorized_access_point": "Po\u00e9sie espagnole pour la jeunesse" - }, + "label": [ + "Courant de pens\u00e9e politique de la R\u00e9publique de Weimar, d\u00e9velopp\u00e9 notamment par Arthur Moeller van den Bruck, Oswald Spengler, Ernst J\u00fcnger et Ernst von Salomon, qui pr\u00e9conise un nationalisme autoritaire comme mod\u00e8le alternatif au lib\u00e9ralisme et au communisme" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Po\u00e9sie exp\u00e9rimentale espagnole" + "authorized_access_point": "Politique et gouvernement - Allemagne - 1918-1933" }, { - "authorized_access_point": "Po\u00e9sie humoristique espagnole" - }, + "authorized_access_point": "Conservatisme" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ { - "authorized_access_point": "Po\u00e9sie lyrique espagnole" + "type": "uri", + "value": "http://www.idref.fr/081665660", + "source": "IDREF" }, { - "authorized_access_point": "Po\u00e9sie pastorale espagnole" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb14614901r", + "source": "BNF" }, { - "authorized_access_point": "Po\u00e9sie politique espagnole" - }, + "type": "bf:Nbn", + "value": "FRBNF14614901", + "source": "BNF" + } + ], + "classification": [ { - "authorized_access_point": "Po\u00e9sie populaire espagnole" - }, + "name": "Science politique", + "type": "bf:ClassificationDdc", + "classificationPortion": "320" + } + ], + "variant_access_point": [ + "Konservative Revolution" + ], + "authorized_access_point": "R\u00e9volution conservatrice (Allemagne)" + }, + { + "md5": "ac3f76df5c25573b7f03741a4b33ae3d", + "pid": "083421467", + "type": "bf:Topic", + "related": [ { - "authorized_access_point": "Po\u00e9sie religieuse espagnole" - }, + "authorized_access_point": "Disques compacts enregistrables" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ { - "authorized_access_point": "Po\u00e9sie satirique espagnole" + "type": "uri", + "value": "http://www.idref.fr/083421467", + "source": "IDREF" }, { - "authorized_access_point": "Po\u00e9sie visuelle espagnole" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb145971143", + "source": "BNF" }, { - "authorized_access_point": "Romanceros" - }, + "type": "bf:Nbn", + "value": "FRBNF14597114", + "source": "BNF" + } + ], + "classification": [ { - "authorized_access_point": "Sonnets espagnols" + "name": "Physique appliqu\u00e9e", + "type": "bf:ClassificationDdc", + "classificationPortion": "621" }, { - "authorized_access_point": "Villancicos (litt\u00e9rature)" + "name": "Audiovisuel", + "type": "bf:ClassificationDdc", + "classificationPortion": "791" } ], - "closeMatch": [ + "variant_access_point": [ + "C\u00e9d\u00e9roms - Gravure - Logiciels" + ], + "authorized_access_point": "C\u00e9d\u00e9roms - Syst\u00e8mes-auteur" + }, + { + "md5": "d18a574ec953ee6d6699d3f7e2b873a7", + "pid": "083972684", + "type": "bf:Topic", + "broader": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85126289", - "source": "LCSH" - }, - "authorized_access_point": "Spanish poetry" + "authorized_access_point": "Composition musicale assist\u00e9e par ordinateur" }, { - "source": "RVMLaval", - "authorized_access_point": "Po\u00e9sie espagnole" + "authorized_access_point": "Musique par ordinateur - Logiciels" } ], + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027811611", + "value": "http://www.idref.fr/083972684", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11977339v", + "value": "http://catalogue.bnf.fr/ark:/12148/cb145986121", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF14598612", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Physique appliqu\u00e9e", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "621" + }, + { + "name": "Musique", + "type": "bf:ClassificationDdc", + "classificationPortion": "780" } ], - "authorized_access_point": "Po\u00e9sie espagnole" + "variant_access_point": [ + "Logiciels de composition musicale" + ], + "authorized_access_point": "Composition musicale assist\u00e9e par ordinateur - Logiciels" }, { - "md5": "cae57d83a68be8c607265ff469a2a8f1", - "pid": "027812596", + "md5": "4f12241c0bbe64a672fcdc5914057517", + "pid": "08523611X", "note": [ { "label": [ - "Ne plus utiliser : employer les subdivisions 20e si\u00e8cle, Histoire -- 20e si\u00e8cle ou les vedettes construites comprenant la subdivision 1918-1960" + "Wikipedia - http://fr.wikipedia.org (2008-05-02)", + "Election of 1912 - http://www.u-s-history.com/pages/h887.html (2008-05-02)" ], - "noteType": "seeReference" + "noteType": "dataSource" + }, + { + "label": [ + "\u00c9lection pr\u00e9sidentielle du 4 novembre 1912 : Woodrow Wilson (d\u00e9mocrate) est \u00e9lu contre Theodore Roosevelt (Progressive Party, scission du parti r\u00e9publicain), William H. Taft (r\u00e9publicain), Eugene V. Debs (socialiste) et Eugene W. Chafin (Prohibition Party)" + ], + "noteType": "general" } ], - "type": "bf:Temporal", - "deleted": "2023-08-08T14:28:43.978364+00:00", - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "type": "bf:Topic", + "broader": [ { - "type": "uri", - "value": "http://www.idref.fr/027812596", - "source": "IDREF" + "authorized_access_point": "Pr\u00e9sidents - \u00c9tats-Unis - \u00c9lection" } ], - "authorized_access_point": "1918-1960" - }, - { - "md5": "16fe5e514ce983f9df056df85e46ad26", - "pid": "02781341X", - "note": [ + "bnf_type": "sujet Rameau", + "closeMatch": [ { - "label": [ - "Ne pas utiliser : employer les subdivisions 1970-...., Histoire -- 1970-...., ou les vedettes construites comprenant la subdivision 1981-" + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2010106963", + "source": "LCSH" + } ], - "noteType": "seeReference" + "authorized_access_point": "Presidents--United States--Election--1912" } ], - "type": "bf:Temporal", - "deleted": "2023-08-08T14:28:44.061768+00:00", - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/02781341X", + "value": "http://www.idref.fr/08523611X", "source": "IDREF" - } - ], - "authorized_access_point": "1981" - }, - { - "md5": "da2b7c67fbfab0ab7c20fee6e18cb08a", - "pid": "027813533", - "note": [ + }, { - "label": [ - "Ne pas utiliser : employer les subdivisions 1900-1945, Histoire -- 1900-1945 ou les vedettes construites comprenant la subdivision 1917-1948" - ], - "noteType": "seeReference" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb146122360", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF14612236", + "source": "BNF" } ], - "type": "bf:Temporal", - "deleted": "2023-08-08T14:28:44.848459+00:00", - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "classification": [ { - "type": "uri", - "value": "http://www.idref.fr/027813533", - "source": "IDREF" + "name": "Science politique", + "type": "bf:ClassificationDdc", + "classificationPortion": "320" + }, + { + "name": "Histoire du reste du monde", + "type": "bf:ClassificationDdc", + "classificationPortion": "950" } ], - "authorized_access_point": "1917-1948" + "authorized_access_point": "Pr\u00e9sidents - \u00c9tats-Unis - \u00c9lection (1912)" }, { - "md5": "719b2f3daf75b9f31a58689787701a59", - "pid": "027825280", + "md5": "5104d8f0ec00ce7ac20ebcd4a2c5dc84", + "pid": "087834979", "note": [ { "label": [ - "Vocabulaire juridique / G. Cornu, 2003 (art. : R\u00e9vision)", - "Dict. constitutionnel / O. Duhamel, Y. M\u00e9ny, 1992 : r\u00e9vision" + "Le scrapbooking de A \u00e0 Z, 2012", + "Dict. du scrapbooking / V. Alber-Latour, H. Meynard, 2011", + "Le scrapbooking : montages cr\u00e9atifs / F. Fichet, 2005" ], "noteType": "dataSource" - }, - { - "label": [ - "Processus de r\u00e9vision (ou d'amendement) des constitutions et modifications qui en r\u00e9sultent", - "S'emploie \u00e9galement en subdivision" - ], - "noteType": "general" } ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Droit constitutionnel" - }, - { - "authorized_access_point": "Histoire constitutionnelle" + "authorized_access_point": "Loisirs cr\u00e9atifs" } ], "related": [ { - "authorized_access_point": "Amendements" - }, - { - "authorized_access_point": "Pouvoir constituant" - }, - { - "authorized_access_point": "Transition constitutionnelle" - }, - { - "authorized_access_point": "Constitutions" + "authorized_access_point": "Albums de photographies" } ], "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Conventions constitutionnelles" - } - ], "closeMatch": [ { "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85031319", - "source": "LCSH" - }, - "authorized_access_point": "Constitutional amendments" - }, - { - "source": "RVMLaval", - "authorized_access_point": "Constitutions -- Amendements" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2008002216", + "source": "LCSH" + } + ], + "authorized_access_point": "Scrapbooking" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027825280", + "value": "http://www.idref.fr/087834979", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11978381w", + "value": "http://catalogue.bnf.fr/ark:/12148/cb14633930h", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF14633930", "source": "BNF" } ], "classification": [ { - "name": "Droit", + "name": "Dessin, arts d\u00e9coratifs, artisanat d'art", + "type": "bf:ClassificationDdc", + "classificationPortion": "740" + }, + { + "name": "Photographie", + "type": "bf:ClassificationDdc", + "classificationPortion": "770" + }, + { + "name": "Jeux", "type": "bf:ClassificationDdc", - "classificationPortion": "340" + "classificationPortion": "793" } ], "variant_access_point": [ - "Amendements constitutionnels", - "Constitutions - Amendements", - "Constitutions - Modifications", - "Constitutions - R\u00e9forme", - "Constitutions - R\u00e9vision", - "Lois de r\u00e9vision (droit constitutionnel)", - "Modifications constitutionnelles", - "N\u00e9gociations constitutionnelles", - "R\u00e9forme constitutionnelle", - "R\u00e9vision (droit constitutionnel)", - "R\u00e9vision de la Constitution" + "Albums de photographies - D\u00e9coration", + "Albums-souvenirs - Mise en page" ], - "authorized_access_point": "R\u00e9vision constitutionnelle" + "authorized_access_point": "Scrapbooking" }, { - "md5": "7c8d9d8e22c54cad257a3a6e15bc615b", - "pid": "027832953", + "md5": "7aa436ac78b5d1489a236427e2268017", + "pid": "087960621", "note": [ { "label": [ - "Nouveau petit Robert 2010", - "Vocabulaire juridique / G. Cornu, 2007", - "JurisClasseur P\u00e9nal Code > Art. 133-7 - 133-8 > Fasc. unique : Gr\u00e2ce", - "Droit constitutionnel / L. Favoreu, 2005", - "Origine de la gr\u00e2ce en droit p\u00e9nal romain et fran\u00e7ais / P. Duparc, 1942" + "Mourre" ], "noteType": "dataSource" }, { "label": [ - "S'emploie \u00e9galement en subdivision" + "Le r\u00e9f\u00e9rendum du 2 juin 1946 (jour des \u00e9lections \u00e0 l'Assembl\u00e9e constituante) instaure la R\u00e9publique, par 12 072 000 voix contre 10 719 284 pour la monarchie. Le roi Humbert II, en faveur duquel son p\u00e8re Victor-Emmanuel III avait abdiqu\u00e9 le 9 mai 1946, part en exil sans toutefois abdiquer" ], "noteType": "general" } ], "type": "bf:Topic", - "broader": [ + "bnf_type": "sujet Rameau", + "identifiedBy": [ { - "authorized_access_point": "Droit constitutionnel" + "type": "uri", + "value": "http://www.idref.fr/087960621", + "source": "IDREF" }, { - "authorized_access_point": "Droit p\u00e9nal" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15011139m", + "source": "BNF" }, { - "authorized_access_point": "R\u00e9duction de peine" + "type": "bf:Nbn", + "value": "FRBNF15011139", + "source": "BNF" } ], - "related": [ - { - "authorized_access_point": "Amnistie" - }, - { - "authorized_access_point": "Cl\u00e9mence (droit)" - }, - { - "authorized_access_point": "Lib\u00e9ration conditionnelle" - }, - { - "authorized_access_point": "Pardon" - }, + "classification": [ { - "authorized_access_point": "Pouvoir ex\u00e9cutif" + "name": "Science politique", + "type": "bf:ClassificationDdc", + "classificationPortion": "320" }, { - "authorized_access_point": "R\u00e9habilitation" + "name": "Histoire de l'Europe", + "type": "bf:ClassificationDdc", + "classificationPortion": "940" } ], - "bnf_type": "sujet Rameau", - "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh2002006184", - "source": "LCSH" - }, - "authorized_access_point": "Pardon" - }, + "variant_access_point": [ + "R\u00e9f\u00e9rendum sur la monarchie (Italie ; 1946)" + ], + "authorized_access_point": "R\u00e9f\u00e9rendum - Italie - 1946" + }, + { + "md5": "3401692823518567129cf0b0135e1175", + "pid": "092468594", + "note": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85097972", - "source": "LCSH" - }, - "authorized_access_point": "Pardon" + "label": [ + "Scotland decides : the Devolution issue and the 1997 referendum / David Denver et al., 2000" + ], + "noteType": "dataSource" }, { - "source": "RVMLaval", - "authorized_access_point": "Gr\u00e2ce (droit)" + "label": [ + "1997-09-11 : la cr\u00e9ation d'un Parlement \u00e9cossais est approuv\u00e9e par r\u00e9f\u00e9rendum (74,3 % de oui)" + ], + "noteType": "general" } ], + "type": "bf:Topic", + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027832953", + "value": "http://www.idref.fr/092468594", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11978966n", + "value": "http://catalogue.bnf.fr/ark:/12148/cb150114999", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15011499", "source": "BNF" } ], "classification": [ { - "name": "Droit", + "name": "Science politique", "type": "bf:ClassificationDdc", - "classificationPortion": "340" + "classificationPortion": "320" + }, + { + "name": "Histoire de l'Europe", + "type": "bf:ClassificationDdc", + "classificationPortion": "940" } ], - "variant_access_point": [ - "Commutation de peine", - "Droit de gr\u00e2ce", - "Gr\u00e2ce amnistiante", - "Gr\u00e2ce pr\u00e9sidentielle", - "Lettres de gr\u00e2ce", - "Lettres de r\u00e9mission", - "Pardon (droit)", - "Recours en gr\u00e2ce", - "Remise de peine", - "R\u00e9mission, Lettres de" - ], - "authorized_access_point": "Gr\u00e2ce (droit)" + "authorized_access_point": "R\u00e9f\u00e9rendum - Grande-Bretagne - \u00c9cosse (GB) - 1997" }, { - "md5": "51ebb6eaaba72d5d004f2186b53ac544", - "pid": "027838919", + "md5": "f9a471d4de371baac18ae6ab7131b37e", + "pid": "092468950", "type": "bf:Topic", "broader": [ { - "authorized_access_point": "D\u00e9mocratie directe" - }, - { - "authorized_access_point": "Droit constitutionnel" - }, - { - "authorized_access_point": "\u00c9lections" - }, - { - "authorized_access_point": "R\u00e9gimes repr\u00e9sentatifs" + "authorized_access_point": "Monnaies europ\u00e9ennes" } ], "related": [ { - "authorized_access_point": "Campagnes de votation (Suisse)" - }, - { - "authorized_access_point": "R\u00e9f\u00e9rendum professionnel" - }, - { - "authorized_access_point": "Pl\u00e9biscite" + "authorized_access_point": "Monnaie - Russie" } ], "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "R\u00e9f\u00e9rendum local" - } - ], "closeMatch": [ { - "source": "RVMLaval", - "authorized_access_point": "R\u00e9f\u00e9rendum" + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85027859", + "source": "LCSH" + } + ], + "authorized_access_point": "Coins, Russian" }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85112202", - "source": "LCSH" - }, - "authorized_access_point": "Referendum" + "source": "RVMLaval", + "authorized_access_point": "Monnaies russes" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027838919", + "value": "http://www.idref.fr/092468950", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb13319148r", + "value": "http://catalogue.bnf.fr/ark:/12148/cb150128520", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15012852", "source": "BNF" } ], "classification": [ { - "name": "Sciences politiques", + "name": "\u00c9conomie politique", "type": "bf:ClassificationDdc", - "classificationPortion": "320" + "classificationPortion": "330" + }, + { + "name": "Sculpture", + "type": "bf:ClassificationDdc", + "classificationPortion": "730" + }, + { + "name": "Histoire de l'Europe", + "type": "bf:ClassificationDdc", + "classificationPortion": "940" } ], "variant_access_point": [ - "Initiative et r\u00e9f\u00e9rendum", - "R\u00e9f\u00e9rendum constituant", - "R\u00e9f\u00e9rendum d'initiative populaire", - "R\u00e9f\u00e9rendum l\u00e9gislatif", - "R\u00e9f\u00e9rendum pl\u00e9biscitaire", - "Votation populaire (Suisse)" + "Pi\u00e8ces de monnaie russes" ], - "authorized_access_point": "R\u00e9f\u00e9rendum" + "authorized_access_point": "Monnaies russes" }, { - "md5": "07a8bb67227350d7b0fb04767855f71a", - "pid": "02784532X", + "md5": "487251673f1cfc015f2d2e82725afb92", + "pid": "101481071", "note": [ { "label": [ - "Dict. sanskrit-fran\u00e7ais / N. Stchoupak, L. Nitti, L. Renou, 1972", - "L'hindouisme / A.-M. Esnoul, 1972", - "Dict. de la sagesse orientale, 1995", - "Le vocabulaire des philosophies de l'Inde / M. Ballanfat, 2003", - "BnF Service indien, 2017-03-22" + "LC Authorities (en ligne), 2009-08-05", + "Microsoft - http://www.microsoft.fr (2009-08-05)", + "D\u00e9velopper avec Visual studio 2005 \u00e9ditions Express / L. Desmons, 2006", + "ASP.NET avec C# sous Visual studio 2008 : conception et d\u00e9veloppement d'applications Web / B.-A. Gu\u00e9rin, 2009" ], "noteType": "dataSource" - }, - { - "label": [ - "Le Soi ; \u00e2me ; principe spirituel" - ], - "noteType": "general" } ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Hindouisme - Doctrines" - } - ], - "related": [ - { - "authorized_access_point": "An\u0101tman" + "authorized_access_point": "Logiciels - D\u00e9veloppement" }, { - "authorized_access_point": "J\u00f1\u0101na-yoga" + "authorized_access_point": "Sites Web - Syst\u00e8mes-auteur" } ], "bnf_type": "sujet Rameau", - "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85009269", - "source": "LCSH" - }, - "authorized_access_point": "\u0100tman" - }, - { - "source": "RVMLaval", - "authorized_access_point": "\u0100tman" - } - ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/02784532X", + "value": "http://www.idref.fr/101481071", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119799348", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15060332j", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15060332", "source": "BNF" } ], "classification": [ { - "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", + "name": "Physique appliqu\u00e9e", "type": "bf:ClassificationDdc", - "classificationPortion": "200" + "classificationPortion": "621" } ], - "authorized_access_point": "\u0100tman" + "variant_access_point": [ + "Microsoft Visual studio .NET (environnement de d\u00e9veloppement d'applications)", + "Microsoft Visual studio 97 (environnement de d\u00e9veloppement d'applications)", + "Microsoft Visual studio 2005 Express Edition (environnement de d\u00e9veloppement d'applications)", + "Microsoft Visual studio 2008 (environnement de d\u00e9veloppement d'applications)", + "Visual studio (environnement de d\u00e9veloppement d'applications)", + "Visual studio .NET (environnement de d\u00e9veloppement d'applications)", + "Visual studio 97 (environnement de d\u00e9veloppement d'applications)", + "Visual studio 2005 Express Edition (environnement de d\u00e9veloppement d'applications)", + "Visual studio 2008 (environnement de d\u00e9veloppement d'applications)" + ], + "authorized_access_point": "Microsoft Visual studio (environnement de d\u00e9veloppement d'applications)" }, { - "md5": "b0e6fe06b3d156e584c94d00a30f3f08", - "pid": "027852547", - "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Litt\u00e9rature grecque" - }, + "md5": "821e4f194d96101c86cabec7f20a7572", + "pid": "110905687", + "note": [ { - "authorized_access_point": "Roman antique" + "label": [ + "Images num\u00e9riques et formats graphiques / G. Michel-Duthel, 2000" + ], + "noteType": "dataSource" } ], - "bnf_type": "genre/forme Rameau", - "narrower": [ - { - "authorized_access_point": "Roman d'amour grec" - }, - { - "authorized_access_point": "Roman \u00e9pistolaire grec" - }, - { - "authorized_access_point": "Roman grec hell\u00e9nistique" - }, + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Roman policier grec" + "authorized_access_point": "Fichiers d'images" } ], - "closeMatch": [ + "related": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85057147", - "source": "LCSH" - }, - "authorized_access_point": "Greek fiction" + "authorized_access_point": "Cam\u00e9ras vid\u00e9o num\u00e9riques" }, { - "source": "RVMLaval", - "authorized_access_point": "Roman grec" + "authorized_access_point": "Camescopes num\u00e9riques" } ], + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027852547", + "value": "http://www.idref.fr/110905687", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11980545v", + "value": "http://catalogue.bnf.fr/ark:/12148/cb151251703", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15125170", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Physique appliqu\u00e9e", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "621" }, { - "name": "Pr\u00e9histoire et histoire ancienne", + "name": "Photographie", "type": "bf:ClassificationDdc", - "classificationPortion": "930" + "classificationPortion": "770" } ], "variant_access_point": [ - "Roman grec - Antiquit\u00e9", - "Roman grec antique", - "Roman grec de l'Antiquit\u00e9" + "Fichiers RAW", + "Formats de fichier RAW", + "Formats de fichiers RAW", + "Formats RAW" ], - "authorized_access_point": "Roman grec" + "authorized_access_point": "RAW (fichiers d'images)" }, { - "md5": "3a7f2d2ed0852e9e1ba2585d03d2b45d", - "pid": "028004698", - "type": "bf:Topic", - "broader": [ + "md5": "1efa9237678b07f63bcf074002967cde", + "pid": "111597153", + "note": [ { - "authorized_access_point": "\u00c9lectronique num\u00e9rique" + "label": [ + "La destruction des juifs d'Europe / R. Hilberg, 2006 (t.1, p. 280)", + "Monde, 05-07-2002", + "Vokabular des Nationalsozialismus / C. Schmitz-Berning, 1998 (art. : Rassenschande)", + "Dict. encycl. d'histoire / M. Mourre, 1996 (art. : Nuremberg)" + ], + "noteType": "dataSource" }, { - "authorized_access_point": "Audiovisuel num\u00e9rique" - } - ], - "related": [ - { - "authorized_access_point": "Graveurs de c\u00e9d\u00e9roms" + "label": [ + "L'une des lois promulgu\u00e9es \u00e0 Nuremberg le 15 septembre 1935, la loi de protection du sang allemand et de l'honneur allemand (Gesetz zum Schutze des deutschen Blutes und der deutschen Ehre), interdisait les mariages et relations sexuelles entre juifs et Allemands" + ], + "noteType": "general" } ], - "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Boucles (musique)" - }, - { - "authorized_access_point": "Compression audio" - }, - { - "authorized_access_point": "Disques compacts" - }, + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "DVD audio" + "authorized_access_point": "Politique et gouvernement - Allemagne - 1933-1945" }, { - "authorized_access_point": "Super Audio CD" + "authorized_access_point": "Juifs - Statut juridique" } ], + "bnf_type": "sujet Rameau", "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85125369", - "source": "LCSH" - }, - "authorized_access_point": "Sound--Recording and reproducing--Digital techniques" - }, { "source": "RVMLaval", - "authorized_access_point": "Son -- Enregistrement et reproduction -- Techniques num\u00e9riques" + "authorized_access_point": "Souillure de la race (Lois de Nuremberg, 1935)" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/028004698", + "value": "http://www.idref.fr/111597153", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11992743d", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15126159t", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15126159", "source": "BNF" } ], "classification": [ { - "name": "Sciences appliqu\u00e9es", + "name": "Sciences politiques", "type": "bf:ClassificationDdc", - "classificationPortion": "600" + "classificationPortion": "320" + }, + { + "name": "Histoire m\u00e9di\u00e9vale, moderne et contemporaine (sauf la France)", + "type": "bf:ClassificationDdc", + "classificationPortion": "940" } ], "variant_access_point": [ - "Audio-num\u00e9riques, Techniques", - "Enregistrement num\u00e9rique", - "Techniques audio-num\u00e9riques" + "Atteinte \u00e0 la puret\u00e9 raciale (Lois de Nuremberg ; 1935)", + "Attentat \u00e0 la puret\u00e9 raciale (Lois de Nuremberg ; 1935)", + "Profanation de la race (Lois de Nuremberg ; 1935)", + "Protection du sang et de l'honneur allemands (Lois de Nuremberg ; 1935)", + "Puret\u00e9 raciale, Atteinte \u00e0 la (Lois de Nuremberg ; 1935)", + "Race - Souillure (Lois de Nuremberg ; 1935)", + "Rassenschande (Lois de Nuremberg ; 1935)", + "Souillure raciale (Lois de Nuremberg ; 1935)" ], - "authorized_access_point": "Son - Enregistrement et reproduction -- Techniques num\u00e9riques" + "authorized_access_point": "Souillure de la race (Lois de Nuremberg ; 1935)" }, { - "md5": "5869d89dcc3f381effab4f3f6e55581b", - "pid": "028244494", + "md5": "366bf058b4053baf0aa9693ab3b0925a", + "pid": "112539750", + "note": [ + { + "label": [ + "Les IAS : international accounting standards / C. Bigoy, 2003 - http://www.enssib.fr/bibliotheque/documents (2007-01-10)", + "Les normes comptables internationales IAS/IFRS - http://www.comptalia.com (2007-01-10)" + ], + "noteType": "dataSource" + } + ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Ethnologie - [Localisations g\u00e9ographiques]" + "authorized_access_point": "Normes comptables" } ], - "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Lemkoviens" - }, - { - "authorized_access_point": "Ruth\u00e8nes" - }, - { - "authorized_access_point": "Slovaques" - }, - { - "authorized_access_point": "Slovaques d'origine hongroise" - }, + "related": [ { - "authorized_access_point": "Tch\u00e9coslovaques" + "authorized_access_point": "\u00c9tats financiers consolid\u00e9s" } ], - "closeMatch": [ - { - "source": "RVMLaval", - "authorized_access_point": "Ethnologie -- Slovaquie" - }, + "bnf_type": "sujet Rameau", + "narrower": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh93003751", - "source": "LCSH" - }, - "authorized_access_point": "Ethnology--Slovakia" + "authorized_access_point": "Normes IPSAS" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/028244494", + "value": "http://www.idref.fr/112539750", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb120120186", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15126768f", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15126768", "source": "BNF" } ], "classification": [ { - "name": "Ethnologie, anthropologie, folklore", + "name": "Gestion", "type": "bf:ClassificationDdc", - "classificationPortion": "390" + "classificationPortion": "650" } ], - "authorized_access_point": "Ethnologie - Slovaquie" + "variant_access_point": [ + "Comptabilit\u00e9 - Normes internationales", + "IAS", + "IFRS", + "International Accounting Standards", + "International Financial Reporting Standards", + "NCI", + "Normalisation comptable internationale", + "Normes internationales d'information financi\u00e8re" + ], + "authorized_access_point": "Normes comptables internationales" }, { - "md5": "98f42691805fb509d0cf783d756b56a8", - "pid": "028283678", + "md5": "029a4267d140e8983a53566ae1bc2d75", + "pid": "115898840", "note": [ { "label": [ - "Grand dict. encyclop\u00e9dique Larousse (art. : Amendement)", - "Vocabulaire juridique / G. Cornu, 2007 (art. : Amendement)", - "Eurovoc thesaurus (art. : Amendement) - http://eurovoc.europa.eu (2017-10-12)", - "Lexique des termes juridiques Dalloz 2015-2016 / S. Guinchard, T. Debard, 2015 (art. : Amendement)", - "Dict. du droit constitutionnel / M. de Villiers, A. Le Divellec, 2015 (art. : Amendement)", - "Constitution du 4 octobre 1958 (art. 44) - https://www.legifrance.gouv.fr (2017-10-12)", - "La r\u00e9novation du droit d'amendement / M.-A. Granger [in] Revue fran\u00e7aise de droit constitutionnel, 2008, 3, 75", - "Dict. de droit constitutionnel / T. Debard, 2007 (art. : Amendement) : amendement l\u00e9gislatif ; amendements gouvernementaux" + "Wikip\u00e9dia - http://fr.wikipedia.org/wiki (2007)", + "SY 2006", + "Laval RVM (en ligne), 2007-06-04 : Qu\u00e9bec (Province) -- Histoire -- 1995 (R\u00e9f\u00e9rendum constitutionnel)" ], "noteType": "dataSource" }, { "label": [ - "Les membres du Parlement et le Gouvernement ont le droit d'amendement (art. 44 de la Constitution de 1958). Proposition de modification d'un texte de loi au cours de sa discussion" + "Le 30-10-1995, \u00e0 une majorit\u00e9 de 50,58%, les Qu\u00e9b\u00e9cois refusent d'accorder au gouvernement de Jacques Parizeau le mandat de n\u00e9gocier une souverainet\u00e9-association avec le reste du Canada" ], "noteType": "general" } @@ -5217,140 +24758,172 @@ "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Proc\u00e9dure parlementaire" - }, - { - "authorized_access_point": "Projets de loi" - } - ], - "related": [ - { - "authorized_access_point": "Amendements" + "authorized_access_point": "Qu\u00e9bec (Canada ; province) - Autonomie et mouvements ind\u00e9pendantistes" } ], "bnf_type": "sujet Rameau", - "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85004212", - "source": "LCSH" - }, - "authorized_access_point": "Legislative amendments" - }, - { - "source": "RVMLaval", - "authorized_access_point": "Amendements (Proc\u00e9dure parlementaire)" - } - ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/028283678", + "value": "http://www.idref.fr/115898840", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12015117v", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15542056n", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15542056", "source": "BNF" } ], "classification": [ { - "name": "Droit", + "name": "Science politique", "type": "bf:ClassificationDdc", - "classificationPortion": "340" + "classificationPortion": "320" + }, + { + "name": "Histoire du reste du monde", + "type": "bf:ClassificationDdc", + "classificationPortion": "950" + } + ], + "variant_access_point": [ + "R\u00e9f\u00e9rendum constitutionnel (Qu\u00e9bec ; 1995)" + ], + "authorized_access_point": "R\u00e9f\u00e9rendum - Canada - Qu\u00e9bec (Canada ; province) - 1995" + }, + { + "md5": "94218416ae080ddb928f9b8adcdfb6e6", + "pid": "118419722", + "note": [ + { + "label": [ + "Wikidata - https://www.wikidata.org/wiki/Q22645 (2023-09-25)", + "Dict. de fran\u00e7ais Larousse : ordiphone ; smartphone - http://www.larousse.fr/dictionnaires (2016-01-21)", + "Le guide du pocket PC, du smartphone et du portable Media center / G. de Lussigny, 2006", + "Smartphones sous Windows mobile 2003 / P. Antouly, 2006" + ], + "noteType": "dataSource" + }, + { + "label": [ + "T\u00e9l\u00e9phone mobile disposant des fonctions d'un assistant num\u00e9rique personnel (PDA : personal digital assistant), d'un appareil photo num\u00e9rique et d'un ordinateur portable" + ], + "noteType": "general" } ], - "variant_access_point": [ - "Amendements (proc\u00e9dure parlementaire)", - "Amendements gouvernementaux", - "Amendements l\u00e9gislatifs", - "Amendements parlementaires", - "Gouvernement - Droit d'amendement", - "Parlements - Droit d'amendement" - ], - "authorized_access_point": "Droit d'amendement (droit constitutionnel)" - }, - { - "md5": "4ddc7f261251241581332c5bb713dcd8", - "pid": "028354559", "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Litt\u00e9rature espagnole" + "authorized_access_point": "Ordinateurs de poche" }, { - "authorized_access_point": "Nouvelles hispanophones" + "authorized_access_point": "T\u00e9l\u00e9phonie mobile" } ], "related": [ { - "authorized_access_point": "Contes litt\u00e9raires espagnols" - } - ], - "bnf_type": "genre/forme Rameau", - "narrower": [ + "authorized_access_point": "Applications mobiles" + }, + { + "authorized_access_point": "\u00c9cosyst\u00e8mes d'applications mobiles (informatique)" + }, { - "authorized_access_point": "Micronouvelles espagnoles" + "authorized_access_point": "Nomophobie" }, { - "authorized_access_point": "Nouvelles de science-fiction espagnoles" + "authorized_access_point": "Photographie mobile" }, { - "authorized_access_point": "Nouvelles \u00e9rotiques espagnoles" + "authorized_access_point": "Vid\u00e9o mobile" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "BlackBerry (smartphone)" }, { - "authorized_access_point": "Nouvelles fantastiques espagnoles" + "authorized_access_point": "iPhone (smartphone)" }, { - "authorized_access_point": "Nouvelles polici\u00e8res espagnoles" + "authorized_access_point": "Samsung Galaxy (smartphones)" } ], "closeMatch": [ { "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85121942", - "source": "LCSH" - }, - "authorized_access_point": "Short stories, Spanish" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2007006251", + "source": "LCSH" + } + ], + "authorized_access_point": "Smartphones" }, { "source": "RVMLaval", - "authorized_access_point": "Nouvelles espagnoles" + "authorized_access_point": "T\u00e9l\u00e9phones intelligents" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/028354559", + "value": "http://www.idref.fr/118419722", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12020709w", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15561010h", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15561010", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Sciences appliqu\u00e9es", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "600" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" } ], - "authorized_access_point": "Nouvelles espagnoles" + "variant_access_point": [ + "Ordiphones", + "T\u00e9l\u00e9phones assistants personnels", + "T\u00e9l\u00e9phones intelligents", + "T\u00e9l\u00e9phones multifonctions", + "T\u00e9l\u00e9phones PDA" + ], + "authorized_access_point": "Smartphones" }, { - "md5": "787d9025ae89e2b0cd8fca5569fcd459", - "pid": "028359070", + "md5": "8fa7a14c6bb40736607ec8465637bfc5", + "pid": "118420763", "note": [ { "label": [ - "Sous cette vedette, on trouve les recueils de po\u00e9sie du Luxembourg en luxembourgeois ou en diverses langues" + "Dict. encyclop\u00e9dique du bouddhisme / P. Cornu, 2006", + "Dict. de la sagesse orientale : bouddhisme, hindouisme, tao\u00efsme, zen, 1989", + "Encycl. of Buddhism / R. E. Buswell, 2003 (art. : Bodhicitta) : lam rim literature", + "Encycl. des religions / F. Lenoir, Y. Tardan-Masquelier, 1997 (p. 1043) : \"voie graduelle vers l'\u00c9veil" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Corpus de doctrine bouddhique proposant une m\u00e9thode de progression vers l'\u00c9veil" ], "noteType": "general" } @@ -5358,365 +24931,418 @@ "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Litt\u00e9rature luxembourgeoise" + "authorized_access_point": "Bouddhisme - Doctrines" }, { - "authorized_access_point": "Po\u00e9sie dialectale allemande" + "authorized_access_point": "Litt\u00e9rature bouddhique" } ], "related": [ { - "authorized_access_point": "Chansons luxambourgeoises" - } - ], - "bnf_type": "genre/forme Rameau", - "closeMatch": [ + "authorized_access_point": "Bka'-gdams-pa" + }, { - "source": "RVMLaval", - "authorized_access_point": "Po\u00e9sie luxembourgeoise" + "authorized_access_point": "Dge-lugs-pa (secte)" + }, + { + "authorized_access_point": "\u00c9veil (bouddhisme)" } ], + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/028359070", + "value": "http://www.idref.fr/118420763", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12021056q", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15556981h", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15556981", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "200" } ], - "authorized_access_point": "Po\u00e9sie luxembourgeoise" + "variant_access_point": [ + "Lam-rim", + "Voie graduelle vers l'\u00c9veil", + "Voie progressive (bouddhisme)" + ], + "authorized_access_point": "Lamrim" }, { - "md5": "b8d7b6b99801b50b43b78ec2b61bc6e0", - "pid": "028701755", + "md5": "874dbff54992efb647a1f52d31aafa25", + "pid": "11948949X", "note": [ { "label": [ - "Grand Larousse universel", - "Petit Robert 1, 1993" + "Loi n\u00b0 85-30 du 09 Janvier 1985 relative au d\u00e9veloppement et \u00e0 la protection de la montagne - http://www.senat.fr (2007-11-08)", + "International law and protection of mountain areas, 2002" ], "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette, obligatoirement suivie d'une subdivision g\u00e9ographique ou de la subdivision : \u00c0 l'\u00e9tranger, directement ou apr\u00e8s une subdivision de sujet, on trouve les documents sur les Syriens hors de Syrie. Les documents sur les Syriens en Syrie se trouvent sous des vedettes-mati\u00e8re telles que : Moeurs et coutumes -- Syrie ; etc" - ], - "noteType": "general" } ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Ethnologie - Syrie" + "authorized_access_point": "Espaces naturels - Protection" } ], "related": [ { - "authorized_access_point": "Am\u00e9ricains d'origine syrienne" - }, - { - "authorized_access_point": "Br\u00e9siliens d'origine syrienne" - }, - { - "authorized_access_point": "Auteurs d'origine syrienne" - }, - { - "authorized_access_point": "Syrie" + "authorized_access_point": "Montagnes - Politique publique" } ], "bnf_type": "sujet Rameau", - "narrower": [ + "identifiedBy": [ { - "authorized_access_point": "Juifs syriens" + "type": "uri", + "value": "http://www.idref.fr/11948949X", + "source": "IDREF" }, { - "authorized_access_point": "R\u00e9fugi\u00e9s syriens" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15570251m", + "source": "BNF" }, { - "authorized_access_point": "Syriennes" - }, + "type": "bf:Nbn", + "value": "FRBNF15570251", + "source": "BNF" + } + ], + "classification": [ { - "authorized_access_point": "Travailleurs \u00e9trangers syriens" + "name": "\u00c9cologie", + "type": "bf:ClassificationDdc", + "classificationPortion": "577" } ], - "closeMatch": [ + "variant_access_point": [ + "Protection de la montagne", + "Protection des montagnes" + ], + "authorized_access_point": "Montagnes - Protection" + }, + { + "md5": "3c62bdfe1d40890d4d0e8f32c1a46129", + "pid": "120299658", + "note": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85131719", - "source": "LCSH" - }, - "authorized_access_point": "Syrians" - }, + "label": [ + "The encycl. of computer language - http://hopl.murdoch.edu.au (2010-04-27)", + "SAP et ABAP / Y. Szwec, 2007", + "SAP Developper Network - http://www.sdn.sap.com (2010-04-27)" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ { - "source": "RVMLaval", - "authorized_access_point": "Syriens" + "authorized_access_point": "Langages de 4e g\u00e9n\u00e9ration" } ], + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/028701755", + "value": "http://www.idref.fr/120299658", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12048392h", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15589937c", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15589937", "source": "BNF" } ], "classification": [ { - "name": "Ethnologie, anthropologie, folklore", + "name": "Physique appliqu\u00e9e", "type": "bf:ClassificationDdc", - "classificationPortion": "390" + "classificationPortion": "621" } ], - "authorized_access_point": "Syriens" + "variant_access_point": [ + "ABAP/4 (langage de programmation)", + "Advanced Business Application Programming (langage de programmation)" + ], + "authorized_access_point": "ABAP (langage de programmation)" }, { - "md5": "152a3170f3390535cf0468b7382e6c94", - "pid": "028910044", - "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Ethnologie - [Localisations g\u00e9ographiques]" - } - ], - "bnf_type": "sujet Rameau", - "narrower": [ + "md5": "f89691b29983d32a5a4a167541fd7de5", + "pid": "12059353X", + "note": [ { - "authorized_access_point": "Allemands de Petite Lituanie" + "label": [ + "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1996", + "Dict. du Grand si\u00e8cle / F. Bluche, 2005" + ], + "noteType": "dataSource" }, { - "authorized_access_point": "Boikos" - }, + "label": [ + "A la mort du duc Vincent II de Gonzague (16 d\u00e9cembre 1627), la succession de Mantoue est disput\u00e9e entre les Nevers (soutenus par la France) et les Guastalla (soutenus par l'Espagne), tandis que le duc de Savoie Charles Emmanuel I revendique le Montferrat. 26 avril 1631 : le trait\u00e9 de Cherasco attribue la succession \u00e0 Charles de Nevers" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Juifs - Pologne" + "authorized_access_point": "Relations ext\u00e9rieures - France - 1610-1643" }, { - "authorized_access_point": "Kachoubes" - }, + "authorized_access_point": "Italie - 17e si\u00e8cle" + } + ], + "related": [ { - "authorized_access_point": "Lemkoviens" - }, + "authorized_access_point": "Mantoue (Italie ; duch\u00e9)" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ { - "authorized_access_point": "Polonais" + "authorized_access_point": "Bataille du pas de Suse (1629)" }, { - "authorized_access_point": "Ruth\u00e8nes" + "authorized_access_point": "Si\u00e8ge de Mantoue (Italie ; 1629-1630)" }, { - "authorized_access_point": "Sil\u00e9siens" + "authorized_access_point": "Si\u00e8ges de Casale Monferrato (Italie ; 1628-1630)" } ], "closeMatch": [ - { - "source": "RVMLaval", - "authorized_access_point": "Ethnologie -- Pologne" - }, { "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85045360", - "source": "LCSH" - }, - "authorized_access_point": "Ethnology--Poland" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2017003035", + "source": "LCSH" + } + ], + "authorized_access_point": "Mantuan Succession, War of the, 1628-1631" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/028910044", + "value": "http://www.idref.fr/12059353X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12064823h", + "value": "http://catalogue.bnf.fr/ark:/12148/cb155937336", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15593733", "source": "BNF" } ], "classification": [ { - "name": "Ethnologie, anthropologie, folklore", + "name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", - "classificationPortion": "390" + "classificationPortion": "940" } ], - "authorized_access_point": "Ethnologie - Pologne" + "variant_access_point": [ + "Crise de la succession de Mantoue (1628-1631)", + "Guerre de Mantoue (1628-1631)", + "Guerre de succession de Mantoue (1628-1631)", + "Mantoue, Guerre de (1628-1631)", + "Succession de Mantoue, Guerre de la (1628-1631)" + ], + "authorized_access_point": "Guerre de la succession de Mantoue (1628-1631)" }, { - "md5": "a88a56b05bb606e5087980c6cc1e5d81", - "pid": "028962389", + "md5": "1d5aad65dffd6432ec2f1fa0f0fd9932", + "pid": "122348486", "note": [ { "label": [ - "Dict. illustr\u00e9 des termes de m\u00e9decine, 2012 (art. : Surdit\u00e9)", - "Dict. de m\u00e9decine Flammarion, 2008 (art. : Surdit\u00e9)", - "Dict. de l'Acad\u00e9mie de m\u00e9decine (art. : Surdit\u00e9) - http://dictionnaire.academie-medecine.fr (2022-05-30)", - "Loterre (art. : Surdit\u00e9 neurosensorielle) - https://www.loterre.fr (2022-05-30)", - "Handicaps et psychopathologies / V. Pag\u00e8s, 2017" + "Services num\u00e9riques - http://www2.educnet.education.fr (2008-02-15)", + "Espaces num\u00e9riques de travail - http://savoirscdi.cndp.fr (2008-02-15)", + "ENT-SCOL : environnement num\u00e9rique de travail, 2008" ], "noteType": "dataSource" + }, + { + "label": [ + "Dispositif global fournissant \u00e0 un usager, un point d'acc\u00e8s, \u00e0 travers les r\u00e9seaux, \u00e0 l'ensemble des ressources et des services num\u00e9riques en rapport avec son activit\u00e9" + ], + "noteType": "general" } ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Surdit\u00e9" + "authorized_access_point": "Technologie \u00e9ducative" }, { - "authorized_access_point": "Troubles de la perception auditive" + "authorized_access_point": "Portails Internet" } ], - "bnf_type": "sujet Rameau", - "narrower": [ + "related": [ + { + "authorized_access_point": "Environnement d'apprentissage personnel" + }, { - "authorized_access_point": "Usher, Syndrome d'" + "authorized_access_point": "Tableaux blancs interactifs" } ], - "closeMatch": [ + "bnf_type": "sujet Rameau", + "narrower": [ { - "source": "MeSH", - "authorized_access_point": "Hearing Loss, Sensorineural" + "authorized_access_point": "Plateformes d'apprentissage en ligne" }, { - "source": "RVMLaval", - "authorized_access_point": "Surdit\u00e9 de perception" + "authorized_access_point": "Universit\u00e9s virtuelles" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/028962389", + "value": "http://www.idref.fr/122348486", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12068935r", + "value": "http://catalogue.bnf.fr/ark:/12148/cb156044499", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15604449", "source": "BNF" } ], "classification": [ { - "name": "Sciences m\u00e9dicales et param\u00e9dicales", + "name": "\u00c9ducation", "type": "bf:ClassificationDdc", - "classificationPortion": "610" + "classificationPortion": "370" + }, + { + "name": "Physique appliqu\u00e9e", + "type": "bf:ClassificationDdc", + "classificationPortion": "621" } ], "variant_access_point": [ - "Surdit\u00e9 neurosensorielle" + "Bureaux virtuels (\u00e9ducation)", + "ENT", + "Environnements num\u00e9riques de travail (\u00e9ducation)", + "Espace num\u00e9rique de travail (\u00e9ducation)", + "Espaces num\u00e9riques de travail (\u00e9ducation)" ], - "authorized_access_point": "Surdit\u00e9 de perception" + "authorized_access_point": "Environnement num\u00e9rique de travail" }, { - "md5": "136777aea5c646be2b89479051fd1a91", - "pid": "02897297X", + "md5": "e997e3efce12b3746b0a715ea590218c", + "pid": "122348877", "note": [ { "label": [ - "Sous cette vedette, on trouve la litt\u00e9rature espagnole produite au 20e si\u00e8cle dans l'ensemble de l'Espagne. La litt\u00e9rature espagnole produite dans un lieu particulier se trouve sous des vedettes-mati\u00e8re du type : Litt\u00e9rature espagnole -- [Subdivision g\u00e9ographique] -- 20e si\u00e8cle, par ex. : Litt\u00e9rature espagnole -- Espagne -- Aragon (Espagne) -- 20e si\u00e8cle" + "iPhone / P. Fontaine, 2008", + "Films & vid\u00e9os sur iPhone - iPod touch, 2007 [c\u00e9d\u00e9rom]", + "Apple - http://www.apple.fr (2008-03-13)" ], - "noteType": "general" + "noteType": "dataSource" } ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Civilisation - Espagne - 20e si\u00e8cle" - }, - { - "authorized_access_point": "Litt\u00e9rature espagnole" - } - ], - "related": [ - { - "authorized_access_point": "Litt\u00e9rature espagnole - 1870-1914" - }, - { - "authorized_access_point": "Litt\u00e9rature espagnole - 1975-...." - } - ], - "bnf_type": "genre/forme Rameau", - "narrower": [ - { - "authorized_access_point": "La otra sentimentalidad" - }, - { - "authorized_access_point": "Nov\u00edsimos" - }, - { - "authorized_access_point": "Litt\u00e9rature espagnole - 1900-1939" - }, - { - "authorized_access_point": "Litt\u00e9rature espagnole - 1939-1975" + "authorized_access_point": "Smartphones" } ], + "bnf_type": "sujet Rameau", "closeMatch": [ { "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85126273", - "source": "LCSH" - }, - "authorized_access_point": "Spanish literature -- 20th century" - }, - { - "source": "RVMLaval", - "authorized_access_point": "Litt\u00e9rature espagnole -- 20e si\u00e8cle" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2007007371", + "source": "LCSH" + } + ], + "authorized_access_point": "iPhone (Smartphone)" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/02897297X", + "value": "http://www.idref.fr/122348877", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12069760n", + "value": "http://catalogue.bnf.fr/ark:/12148/cb156082549", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15608254", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Sciences appliqu\u00e9es", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "600" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" } ], "variant_access_point": [ - "Litt\u00e9rature espagnole du 20e si\u00e8cle" + "Apple iPhone (smartphone)" ], - "authorized_access_point": "Litt\u00e9rature espagnole - 20e si\u00e8cle" + "authorized_access_point": "iPhone (smartphone)" }, { - "md5": "0ee9ef6b3704f492c04d916cb205a00d", - "pid": "029241693", + "md5": "b552542e2c3765cab7795043ea867f77", + "pid": "122957032", "note": [ { "label": [ - "Les antiquit\u00e9s \u00e9gyptiennes : guide du visiteur / Mus\u00e9e du Louvre, D\u00e9partement des antiquit\u00e9s \u00e9gyptiennes, 1997" + "Les Kindertransport, 1938-1940 - http://www.ushmm.org (2008-03-31)", + "Dict. of the Holocaust / E. J. Epstein, P. Rosen, 1990" ], "noteType": "dataSource" }, { "label": [ - "Sous cette vedette, on trouve les documents sur les antiquit\u00e9s provenant de la civilisation de l'\u00c9gypte ancienne. Les documents sur les antiquit\u00e9s, quelle que soit leur origine, de l'\u00c9gypte actuelle se trouvent sous Antiquit\u00e9s -- \u00c9gypte" + "Hist. du peuple juif au XXe si\u00e8cle : de 1914 \u00e0 nos jours / S. Epstein, 1998. - Encycl. of the Holocaust / I. Gutman, 1990" + ], + "noteType": "dataNotFound" + }, + { + "label": [ + "Op\u00e9ration de sauvetage (d\u00e9cembre 1938-mai 1940) qui permit de transf\u00e9rer en Grande-Bretagne environ 10000 enfants juifs d'Allemagne, d'Autriche, de Tch\u00e9coslovaquie et de Dantzig" ], "noteType": "general" } @@ -5724,348 +25350,444 @@ "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Civilisation - \u00c9gypte - Jusqu'\u00e0 332 av. J.-C." + "authorized_access_point": "Juifs - 1933-1945" } ], "related": [ { - "authorized_access_point": "Art \u00e9gyptien" + "authorized_access_point": "Enfants juifs pendant la Shoah" }, { - "authorized_access_point": "Antiquit\u00e9s - \u00c9gypte" - } - ], - "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Amulettes \u00e9gyptiennes" - }, - { - "authorized_access_point": "Bijoux \u00e9gyptiens" - }, - { - "authorized_access_point": "C\u00e9ramique \u00e9gyptienne" + "authorized_access_point": "Enfants r\u00e9fugi\u00e9s" }, { - "authorized_access_point": "Flabellums" + "authorized_access_point": "Guerre mondiale (1939-1945) - Enfants" }, { - "authorized_access_point": "Inscriptions \u00e9gyptiennes" + "authorized_access_point": "Guerre mondiale (1939-1945) - Juifs -- Sauvetage" }, { - "authorized_access_point": "Lampes \u00e9gyptiennes" - }, + "authorized_access_point": "R\u00e9fugi\u00e9s juifs" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ { - "authorized_access_point": "Mastabas" - }, + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00008556", + "source": "LCSH" + } + ], + "authorized_access_point": "Kindertransports (Rescue operations)" + } + ], + "identifiedBy": [ { - "authorized_access_point": "Meubles \u00e9gyptiens" + "type": "uri", + "value": "http://www.idref.fr/122957032", + "source": "IDREF" }, { - "authorized_access_point": "Objets d'art \u00e9gyptiens" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb156163936", + "source": "BNF" }, { - "authorized_access_point": "Poids et mesures \u00e9gyptiens" - }, + "type": "bf:Nbn", + "value": "FRBNF15616393", + "source": "BNF" + } + ], + "classification": [ { - "authorized_access_point": "Sarcophages \u00e9gyptiens" - }, + "name": "Histoire m\u00e9di\u00e9vale, moderne et contemporaine (sauf la France)", + "type": "bf:ClassificationDdc", + "classificationPortion": "940" + } + ], + "variant_access_point": [ + "Kindertransports (op\u00e9rations de sauvetage ; 1938-1940)" + ], + "authorized_access_point": "Kindertransport (op\u00e9ration de sauvetage ; 1938-1940)" + }, + { + "md5": "47ccbfea60495aa96897c114f3278736", + "pid": "123472466", + "note": [ { - "authorized_access_point": "Shaouabtis" - }, + "label": [ + "Encycl. de l'informatique et des syst\u00e8mes d'information, 2006", + "Entrep\u00f4ts de donn\u00e9es [in] Techniques de l'ing\u00e9nieur, 2005, H3870", + "Mod\u00e9lisation et impl\u00e9mentation de syst\u00e8mes OLAP pour des objets mobiles / T. Wan, 2007 [th\u00e8se]", + "Refonte globale d'un cube OLAP des ventes europ\u00e9ennes de la soci\u00e9t\u00e9 / M. Bellec, 2007 [m\u00e9moire]", + "OLAP solutions : building multidimensional information systems / E. Thomsen, 2002" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Temples \u00e9gyptiens" - }, + "authorized_access_point": "Syst\u00e8mes d'aide \u00e0 la d\u00e9cision" + } + ], + "related": [ { - "authorized_access_point": "Textiles et tissus \u00e9gyptiens" + "authorized_access_point": "Bases de donn\u00e9es multidimensionnelles" }, { - "authorized_access_point": "Vases \u00e9gyptiens" + "authorized_access_point": "Bases de donn\u00e9es" } ], + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/029241693", + "value": "http://www.idref.fr/123472466", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12090894p", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15711780x", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15711780", "source": "BNF" } ], "classification": [ { - "name": "Pr\u00e9histoire et histoire ancienne", "type": "bf:ClassificationDdc", - "classificationPortion": "930" + "classificationPortion": "621" + }, + { + "name": "Gestion et organisation de l'entreprise", + "type": "bf:ClassificationDdc", + "classificationPortion": "650" } ], "variant_access_point": [ - "Arch\u00e9ologie de l'\u00c9gypte ancienne" + "Applications OLAP (informatique)", + "Cubes OLAP (informatique)", + "Online Analytical Processing (informatique)", + "Syst\u00e8mes OLAP (informatique)" ], - "authorized_access_point": "Antiquit\u00e9s \u00e9gyptiennes" + "authorized_access_point": "OLAP (informatique)" }, { - "md5": "24a9c7e85a7f89578763dda36ee4954d", - "pid": "029260892", + "md5": "b02353c1c476bf89cd90b154ef3caa32", + "pid": "124452248", "note": [ { "label": [ - "GDEL: Juin 1940 (appel du 18)" + "LC Authorities (en ligne), 2008-06-16", + "WPF : Windows Presentation Foundation : D\u00e9veloppez des applications riches sous Windows / O. Dewit, 2008", + "WPF : le d\u00e9veloppement d'interfaces riches : introduction \u00e0 Silverlight / M. Diaz Orlich, X. Poinas, Y. Lautredou, 2008", + "Foundations of WPF : an introduction to Windows Presentation Foundation / L. Moroney, 2006" ], - "noteType": "dataNotFound" + "noteType": "dataSource" } ], "type": "bf:Topic", - "deleted": "2022-08-25T10:47:31.610056+00:00", + "broader": [ + { + "authorized_access_point": "Microsoft .NET Framework (plate-forme informatique)" + } + ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/029260892", + "value": "http://www.idref.fr/124452248", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12092565r", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15661929k", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15661929", "source": "BNF" } ], + "classification": [ + { + "name": "Physique appliqu\u00e9e", + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], "variant_access_point": [ - "18 juin 1940, Appel du", - "Juin 1940, Appel du 18" + "Microsoft WPF (plate-forme informatique)", + "Windows Presentation Foundation (plate-forme informatique)", + "WPF (plate-forme informatique)" ], - "authorized_access_point": "Appel du 18 juin 1940" + "authorized_access_point": "Microsoft Windows Presentation Foundation (plate-forme informatique)" }, { - "md5": "ee6b2b822d01cf06fe90b15f21f8a3ec", - "pid": "029531411", - "note": [ - { - "label": [ - "S'emploie uniquement en subdivision chronologique aux vedettes du type : \u00c9glise catholique -- [subd. g\u00e9ogr.] et aux vedettes en lien avec l'\u00c9glise catholique" - ], - "noteType": "general" - } - ], - "type": "bf:Temporal", + "md5": "dae166cf551827c530b42ad7c4ebc4fd", + "pid": "127977996", + "type": "bf:Topic", "related": [ { - "authorized_access_point": "\u00c9glise catholique - 1965-...." + "authorized_access_point": "Madagascar" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/029531411", + "value": "http://www.idref.fr/127977996", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb121138342", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16079309j", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16079309", "source": "BNF" } ], - "relation_pid": { - "type": "redirect_from", - "value": "08582898X" - }, "classification": [ { - "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", + "name": "Sciences sociales", "type": "bf:ClassificationDdc", - "classificationPortion": "200" + "classificationPortion": "300" }, { - "name": "Histoire et g\u00e9ographie (g\u00e9n\u00e9ralit\u00e9s)", + "name": "Ethnologie", "type": "bf:ClassificationDdc", - "classificationPortion": "900" + "classificationPortion": "390" } ], - "authorized_access_point": "1965-...." + "variant_access_point": [ + "Malgaches - Caract\u00e8re national" + ], + "authorized_access_point": "Caract\u00e8re national malgache" }, { - "md5": "4e0ecdf71a2ea0fc4547416754fe58fc", - "pid": "029560020", + "md5": "9e245296dee80c6cfdd35b8419bae43d", + "pid": "129822051", "note": [ { "label": [ - "S'emploie uniquement en subdivision" + "Wikidata - https://www.wikidata.org/wiki/Q836386 (2023-08-31)", + "Robert encyclop\u00e9dique des noms propres 2008", + "L'ann\u00e9e 2004 dans Le Monde / D. Rioux, 2005", + "Universalia 2005", + "Historical dict. of Ukraine / Z. E. Kohut, B. Y. Nebesio, M. Yurkevich, 2005 (p. 9-14)", + "Le Monde, 2004-11-23" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Novembre-d\u00e9cembre 2004 : manifestations pacifiques de masse \u00e0 Kiev et dans les grandes villes d'Ukraine pour protester contre le r\u00e9sultat officiel de l'\u00e9lection pr\u00e9sidentielle, favorable au candidat pro-russe Viktor Ianoukovitch, contre Viktor Iouchtchenko (pro-occidental). Cette mobilisation et les pressions internationales aboutissent \u00e0 un nouveau second tour et la victoire de V. Iouchtchenko (26 d\u00e9cembre)" ], "noteType": "general" } ], "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ukraine - 1991-...." + } + ], "related": [ { - "authorized_access_point": "Hommes politiques" + "authorized_access_point": "Pr\u00e9sidents - Ukraine - \u00c9lection (2004)" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2005001194", + "source": "LCSH" + } + ], + "authorized_access_point": "Ukraine--History--Orange Revolution, 2004" }, { - "authorized_access_point": "Constitutions" + "source": "RVMLaval", + "authorized_access_point": "Ukraine--Histoire--2004 (R\u00e9volution orange)" } ], - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/029560020", + "value": "http://www.idref.fr/129822051", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb121160279", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15847405k", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15847405", "source": "BNF" } ], "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "305" - }, { "name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320" }, { - "name": "Droit", + "name": "Histoire m\u00e9di\u00e9vale, moderne et contemporaine (sauf la France)", "type": "bf:ClassificationDdc", - "classificationPortion": "340" + "classificationPortion": "940" } ], "variant_access_point": [ - "R\u00e9dacteurs" + "Marronniers, R\u00e9volution des (Ukraine ; 2004)", + "Orange, R\u00e9volution (Ukraine ; 2004)", + "Orange Revolution (Ukraine ; 2004)", + "R\u00e9volution des marronniers (Ukraine ; 2004)" ], - "authorized_access_point": "R\u00e9dacteurs (droit)" + "authorized_access_point": "R\u00e9volution Orange (Ukraine ; 2004)" }, { - "md5": "ddae9905a3499eccd9f595e819a8ec98", - "pid": "029563321", + "md5": "b8d669690c7fcc676c28be46f37c009b", + "pid": "130683035", "note": [ { "label": [ - "Encycl. universalis - http://www.universalis-edu.com (2021-08-25)" + "Petit Robert 2009", + "P\u00e9dagogie, dict. des concepts-cl\u00e9s : apprentissage, formation, psychologie cognitive / F. Raynal, A. Rieunier, 2005", + "Dict. encyclop\u00e9dique de l'\u00e9ducation et de la formation / P. Champy, C. \u00c9t\u00e9v\u00e9, 1994", + "Dict. de l'\u00e9ducation / A. van Zanten, 2008" ], "noteType": "dataSource" - }, - { - "label": [ - "S'emploie \u00e9galement en subdivision", - "Sous cette vedette sont entr\u00e9s les ouvrages sur les m\u00e9thodes permettant d'\u00e9tudier l'activit\u00e9 cognitive : conception de mod\u00e8les de l'activit\u00e9 mentale et de m\u00e9thodes d'observation et de validation des mod\u00e8les cognitifs. Les ouvrages sur la cognition, synonyme en psychologie d'acte de connaissance, appr\u00e9hension du monde, sont entr\u00e9s sous Cognition. Les ouvrages sur l'ensemble des sciences qui portent sur la cognition : psychologie cognitive, linguistique, logique, recherches en intelligence artificielle et traitement de l'information chez l'homme, sont entr\u00e9s sous Sciences cognitives" - ], - "noteType": "general" } ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Sciences cognitives" - } - ], - "related": [ - { - "authorized_access_point": "Consignes (\u00e9ducation)" - }, - { - "authorized_access_point": "Cognition" + "authorized_access_point": "Comportement humain" }, { - "authorized_access_point": "Tests de concordance de script" + "authorized_access_point": "\u00c9ducation" } ], - "bnf_type": "sujet Rameau", - "narrower": [ + "related": [ { - "authorized_access_point": "Apprentissage cognitif" + "authorized_access_point": "Apprentissage - Physiologie" }, { - "authorized_access_point": "Associationnisme" + "authorized_access_point": "Apprentissage professionnel" }, { - "authorized_access_point": "Biais cognitifs" + "authorized_access_point": "Comp\u00e9tence" }, { - "authorized_access_point": "Cartes heuristiques" + "authorized_access_point": "Compr\u00e9hension" }, { - "authorized_access_point": "Charge cognitive" + "authorized_access_point": "Conception universelle de l'apprentissage" }, { - "authorized_access_point": "Communication \u00e9crite - Aspect cognitif" + "authorized_access_point": "Math\u00e9tique" }, { - "authorized_access_point": "Connexionnisme" + "authorized_access_point": "Psychologie de l'apprentissage" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Acquisition linguistique" }, { - "authorized_access_point": "Distracteurs (psychologie)" + "authorized_access_point": "Apprentissage contextualis\u00e9" }, { - "authorized_access_point": "Double t\u00e2che (psychologie)" + "authorized_access_point": "Apprentissage exploratoire" }, { - "authorized_access_point": "Effet Zeigarnik" + "authorized_access_point": "Apprentissage mixte" }, { - "authorized_access_point": "Imagerie (psychologie)" + "authorized_access_point": "Apprentissage organisationnel" }, { - "authorized_access_point": "Intelligences multiples" + "authorized_access_point": "Apprentissage par investigation" }, { - "authorized_access_point": "Protocoles verbaux" + "authorized_access_point": "Apprentissage par la d\u00e9couverte" }, { - "authorized_access_point": "Rapport au savoir" + "authorized_access_point": "Apprentissage par la pratique" }, { - "authorized_access_point": "Repr\u00e9sentation mentale" + "authorized_access_point": "Apprentissage par le jeu" }, { - "authorized_access_point": "R\u00e9solution de probl\u00e8me" + "authorized_access_point": "Apprentissage social" }, { - "authorized_access_point": "Sch\u00e9ma narratif" + "authorized_access_point": "Apprentissage transformationnel" }, { - "authorized_access_point": "Th\u00e9orie de l'esprit (psychologie)" + "authorized_access_point": "Dispositifs p\u00e9dagogiques" }, { - "authorized_access_point": "Transfert d'apprentissage" + "authorized_access_point": "Environnement d'apprentissage personnel" }, { - "authorized_access_point": "Typicalit\u00e9" + "authorized_access_point": "T\u00e2ches (\u00e9ducation)" }, { - "authorized_access_point": "Vicariance (psychologie)" + "authorized_access_point": "Transfert d'apprentissage" } ], "closeMatch": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh87007652", - "source": "LCSH" - }, - "authorized_access_point": "Cognitive psychology" + "source": "RVMLaval", + "authorized_access_point": "Apprentissage" }, { - "source": "RVMLaval", - "authorized_access_point": "Psychologie cognitive" + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85075520", + "source": "LCSH" + } + ], + "authorized_access_point": "Learning" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/029563321", + "value": "http://www.idref.fr/130683035", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12116308v", + "value": "http://catalogue.bnf.fr/ark:/12148/cb159423983", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15942398", "source": "BNF" } ], @@ -6074,671 +25796,771 @@ "name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150" + }, + { + "name": "Education et enseignement", + "type": "bf:ClassificationDdc", + "classificationPortion": "370" } ], "variant_access_point": [ - "Cognitivisme", - "Contribution \u00e0 la psychologie cognitive" + "Processus d'apprentissage" ], - "authorized_access_point": "Psychologie cognitive" + "authorized_access_point": "Apprentissage" }, { - "md5": "c4e2675ae0fbd2bd6a1ca3b033a3d391", - "pid": "029910609", + "md5": "3d22ab57af0860dd29167146362ccfcf", + "pid": "13073019X", "note": [ { "label": [ - "Grand Larousse universel", - "Atlas des peuples d'Europe centrale / A. et J. Sellier, 1993", - "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1996", - "Encycl. of world cultures / D. Levinson, 1991-1996 : Carpatho-Rusyns", - "One Europe, many nations : an historical dict. of European national groups / J. B. Minahan, 2000 : Carpatho-Rusyns" + "Hist. de la France au XXe si\u00e8cle. 2, 1930-1945 / S. Berstein, P. Milza, 2003 (p. 64-65)", + "Hist. de la France politique. 4, La R\u00e9publique recommenc\u00e9e : de 1914 \u00e0 nos jours / S. Berstein, M. Winock, 2004 (p. 62)", + "Le si\u00e8cle des intellectuels / M. Winock, 1997 (p. 204)", + "Hist. politique de la Jeune Droite, 1929-1942 / S. Kessler, 2001" ], "noteType": "dataSource" + }, + { + "label": [ + "Hist. des droites en France. 2, Cultures / J.-F. Sirinelli, 2006" + ], + "noteType": "dataNotFound" + }, + { + "label": [ + "Nom donn\u00e9 par Emmanuel Mounier \u00e0 un groupe d'\u00e9crivains et d'intellectuels fran\u00e7ais dits \"non conformistes\" des ann\u00e9es 1930, d'ob\u00e9dience nationaliste et principalement catholique, qui voulaient renouveler la pens\u00e9e de Charles Maurras (Jean de Fabr\u00e8gues, Jean-Pierre Maxence, Thierry Maulnier)" + ], + "noteType": "general" } ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Ethnologie - Pologne" - }, - { - "authorized_access_point": "Ethnologie - Roumanie" + "authorized_access_point": "Politique et gouvernement - France - 1914-1940" }, { - "authorized_access_point": "Ethnologie - Slovaquie" - }, - { - "authorized_access_point": "Ethnologie - Ukraine" + "authorized_access_point": "Partis de droite" } ], "bnf_type": "sujet Rameau", - "narrower": [ + "identifiedBy": [ { - "authorized_access_point": "Boikos" + "type": "uri", + "value": "http://www.idref.fr/13073019X", + "source": "IDREF" }, { - "authorized_access_point": "Houtsoules" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb159000410", + "source": "BNF" }, { - "authorized_access_point": "Lemkoviens" + "type": "bf:Nbn", + "value": "FRBNF15900041", + "source": "BNF" } ], - "closeMatch": [ + "classification": [ { - "source": "RVMLaval", - "authorized_access_point": "Ruth\u00e8nes" + "name": "Science politique", + "type": "bf:ClassificationDdc", + "classificationPortion": "320" }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh94005758", - "source": "LCSH" - }, - "authorized_access_point": "Carpatho-Rusyns" - }, + "name": "Histoire de la France", + "type": "bf:ClassificationDdc", + "classificationPortion": "944" + } + ], + "variant_access_point": [ + "Droite, Jeune" + ], + "authorized_access_point": "Jeune Droite" + }, + { + "md5": "eb820b3f3164a773667255374c0f831a", + "pid": "131462415", + "note": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85116084", - "source": "LCSH" - }, - "authorized_access_point": "Ruthenians" + "label": [ + "S'emploie uniquement en subdivision aux collectivit\u00e9s (\u00e0 l'exception des types de collectivit\u00e9s) et aux personnes", + "Pour l'application g\u00e9n\u00e9rale de cette subdivision, voir les notes sous le renvoi g\u00e9n\u00e9ral Et [nom g\u00e9ographique]" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Madagascar" } ], + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/029910609", + "value": "http://www.idref.fr/131462415", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12143605j", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16061704s", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16061704", "source": "BNF" } ], "classification": [ { - "name": "Ethnologie, anthropologie, folklore", + "name": "G\u00e9ographie du reste du monde", "type": "bf:ClassificationDdc", - "classificationPortion": "390" + "classificationPortion": "915" } ], "variant_access_point": [ - "Carpatho-Rusyns", - "Carpatho-Ruth\u00e8nes", - "Petits-Russes", - "Petits-Russiens", - "Rus'", - "Rusini", - "Rusins", - "Rusiny", - "Rusnaks", - "Rusnatsi", - "Rusnatsy", - "Rusyns", - "Rusyny", - "Ruthenen", - "Ruth\u00e9niens", - "Ukrainiens de l'Ouest", - "Ukrainiens occidentaux", - "Ukrainiens-Ruth\u00e8nes" + "Et les Malgaches" ], - "authorized_access_point": "Ruth\u00e8nes" + "authorized_access_point": "Et Madagascar" }, { - "md5": "8badf8e100384b57c3ccef62c2f6445a", - "pid": "030714451", - "note": [ - { - "label": [ - "Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour alto solo, et les recueils de compositions de formes et de genres diff\u00e9rents pour alto solo" - ], - "noteType": "general" - }, - { - "label": [ - "Voir aussi les vedettes de musique comprenant les mots alto ou altos" - ], - "noteType": "seeReference" - } - ], + "md5": "1970e76aeb35d44956441095949c9329", + "pid": "131981226", "type": "bf:Topic", - "related": [ - { - "authorized_access_point": "Alto (instrument de musique)" - }, + "broader": [ { - "authorized_access_point": "Musique \u00e9lectroacoustique mixte (alto)" + "authorized_access_point": "Art - Italie" } ], - "bnf_type": "genre/forme Rameau", + "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Arabesques (alto)" - }, - { - "authorized_access_point": "Chaconnes (alto)" + "authorized_access_point": "Peinture - Italie - 19e si\u00e8cle" }, { - "authorized_access_point": "\u00c9tudes (alto)" - }, + "authorized_access_point": "Scapigliatura" + } + ], + "identifiedBy": [ { - "authorized_access_point": "Pr\u00e9ludes (alto)" + "type": "uri", + "value": "http://www.idref.fr/131981226", + "source": "IDREF" }, { - "authorized_access_point": "Sonates (alto)" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15936258b", + "source": "BNF" }, { - "authorized_access_point": "Suites (alto)" - }, + "type": "bf:Nbn", + "value": "FRBNF15936258", + "source": "BNF" + } + ], + "classification": [ { - "authorized_access_point": "Variations (alto)" + "name": "Arts (sauf litt\u00e9rature)", + "type": "bf:ClassificationDdc", + "classificationPortion": "700" } ], - "closeMatch": [ + "authorized_access_point": "Art - Italie - 19e si\u00e8cle" + }, + { + "md5": "b0b9b5750b51efdf376b604c29f54091", + "pid": "132211378", + "type": "bf:Topic", + "broader": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85143486", - "source": "LCSH" - }, - "authorized_access_point": "Viola music" - }, + "authorized_access_point": "Assistance militaire" + } + ], + "related": [ { - "source": "RVMLaval", - "authorized_access_point": "Alto, Musique d'" + "authorized_access_point": "Forces arm\u00e9es russes" } ], + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/030714451", + "value": "http://www.idref.fr/132211378", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12207487g", + "value": "http://catalogue.bnf.fr/ark:/12148/cb178103476", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17810347", "source": "BNF" } ], "classification": [ { - "name": "Musique", + "name": "Sciences politiques", "type": "bf:ClassificationDdc", - "classificationPortion": "780" + "classificationPortion": "320" + }, + { + "name": "Art et science militaires", + "type": "bf:ClassificationDdc", + "classificationPortion": "355" } ], - "variant_access_point": [ - "Musique d'alto", - "Musique pour alto" - ], - "authorized_access_point": "Alto, Musique d'" + "authorized_access_point": "Assistance militaire russe" }, { - "md5": "fbbc45d779bffc769213e823f501344c", - "pid": "030763762", + "md5": "b2c0b40e4a83fdcaf424860a2ec1f9ce", + "pid": "133566129", "note": [ { "label": [ - "Wikip\u00e9dia (art. : Soju) - https://fr.wikipedia.org (2022-03-02)", - "Une vague de Kimch'i : la gastronomie cor\u00e9enne face \u00e0 la mondialisation Entre Soft Power et menace / B. Joinau [in] Outre-Terre, 2014, 2, 39 : soju", - "Soju : a global history / H. Park, 2021", - "Larousse agricole / M. Mazoyer, 2002 (art. : Riz)", - "Le Japon : dict. et civilisation / L. Fr\u00e9d\u00e9ric, 1996 (art. : Sak\u00e9)" + "GVK - Gemeinsamer Verbundkatalog : Freundschafts- Handels- und Schifffahrts- Vertrag zwischen Preu\u00dfen und den \u00fcbrigen Staaten des Zollvereins einerseits und der Argentinischen Konf\u00f6deration andereseits - http://gso.gbv.de (2009-04-28)", + "El tratado argentino-alem\u00e1n de amistad, comercio y navegaci\u00f3n de 1857 : estudios hist\u00f3rico-jur\u00eddicos / T. Duve, 2007" ], "noteType": "dataSource" + }, + { + "label": [ + "Trait\u00e9 sign\u00e9 le 19 septembre1857, ratifi\u00e9 le 3 juin 1859" + ], + "noteType": "general" } ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Boissons alcoolis\u00e9es" + "authorized_access_point": "Relations ext\u00e9rieures - Prusse - 1815-1871" }, { - "authorized_access_point": "Produits du riz" + "authorized_access_point": "Relations ext\u00e9rieures - Allemagne - 1848-1870" } ], "bnf_type": "sujet Rameau", - "closeMatch": [ + "identifiedBy": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85113886", - "source": "LCSH" - }, - "authorized_access_point": "Rice beer" + "type": "uri", + "value": "http://www.idref.fr/133566129", + "source": "IDREF" }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85113911", - "source": "LCSH" - }, - "authorized_access_point": "Rice wines" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb160053063", + "source": "BNF" }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh2018001862", - "source": "LCSH" - }, - "authorized_access_point": "Soju" - }, + "type": "bf:Nbn", + "value": "FRBNF16005306", + "source": "BNF" + } + ], + "classification": [ { - "source": "RVMLaval", - "authorized_access_point": "Sak\u00e9" + "name": "Science politique", + "type": "bf:ClassificationDdc", + "classificationPortion": "320" }, { - "source": "RVMLaval", - "authorized_access_point": "Bi\u00e8re de riz" + "name": "\u00c9conomie politique", + "type": "bf:ClassificationDdc", + "classificationPortion": "330" }, { - "source": "RVMLaval", - "authorized_access_point": "Vin de riz" + "name": "Droit", + "type": "bf:ClassificationDdc", + "classificationPortion": "340" } ], + "variant_access_point": [ + "Freundschafts- Handels- und Schifffahrts- Vertrag zwischen Preu\u00dfen und den \u00fcbrigen Staaten des Zollvereins einerseits und der Argentinischen Konf\u00f6deration andererseits (1857)", + "Tratado argentino-alem\u00e1n de amistad, comercio y navegaci\u00f3n (1857)" + ], + "authorized_access_point": "Tratado de amistad, comercio y navegaci\u00f3n entre la Prusia y los otros Estados del Zollverein alem\u00e1n por una parte y la Confederaci\u00f3n argentina por la otra parte (1857)" + }, + { + "md5": "f7b34ef4830c3b0a5b6d6fa15114729f", + "pid": "135615003", + "type": "bf:Topic", + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/030763762", + "value": "http://www.idref.fr/135615003", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb122114230", + "value": "http://catalogue.bnf.fr/ark:/12148/cb160730930", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16073093", "source": "BNF" } ], "classification": [ { - "name": "Agriculture, \u00e9levage", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", "type": "bf:ClassificationDdc", - "classificationPortion": "630" + "classificationPortion": "200" }, { - "name": "Economie domestique, h\u00f4tellerie", + "name": "Sciences politiques", "type": "bf:ClassificationDdc", - "classificationPortion": "640" + "classificationPortion": "320" } ], "variant_access_point": [ - "Bi\u00e8re de riz", - "Eaux-de-vie de riz", - "Riz, Alcool de", - "Sak\u00e9", - "Soju", - "Vin de riz" + "\u00c9glise catholique - Relations ext\u00e9rieures - 21e si\u00e8cle" ], - "authorized_access_point": "Alcool de riz" + "authorized_access_point": "Diplomatie pontificale - 21e si\u00e8cle" }, { - "md5": "64a52671a4a83a6e675442f284ebb5b6", - "pid": "030767806", - "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Ethnologie - [Localisations g\u00e9ographiques]" - } - ], - "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Allemands de Bucovine" - }, - { - "authorized_access_point": "Allemands de Transylvanie" - }, - { - "authorized_access_point": "Allemands du Banat" - }, - { - "authorized_access_point": "Allemands du Danube" - }, - { - "authorized_access_point": "Daces" - }, + "md5": "a8843d8019d78bdf02759060b2cd1755", + "pid": "136707165", + "note": [ { - "authorized_access_point": "G\u00e9pides" + "label": [ + "Encycl. universalis (art. : Chiisme ou sh\u012b\u2018isme) - http://www.universalis-edu.com (2018-05-29)", + "Al-wasa\u1e6d - http://www.alwasatnews.com (2018-05-14)", + "W\u012bk\u012b \u0160\u012b\u02bfa\u1e97 - http://ar.wikishia.net (2018-05-14)", + "Dict. encyclop\u00e9dique de l'Islam / C. Glass\u00e9, 1991", + "Dict. historique de l'Islam / D. et J. Sourdel, 2004", + "Hist. de l'Islam / S. Mervin, 2001 : courant akhb\u0101r\u012b", + "Qu'est-ce que le sh\u00ee'isme? / M.-A. Amir-Moezzi, C. Jambet, 2004 : Akhb\u0101r\u012byya", + "The Oxford dict. of Islam / J.-L. Esposito, 2003", + "BnF Service arabe, 2018-05-14" + ], + "noteType": "dataSource" }, { - "authorized_access_point": "Roumains" - }, + "label": [ + "Membres d'une \u00c9cole du chiisme duod\u00e9cimain, partisans d'une jurisprudence exclusivement fond\u00e9e sur les traditions re\u00e7ues (akhb\u0101r) des imams" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Roumains d'origine fran\u00e7aise" + "authorized_access_point": "Chiites" }, { - "authorized_access_point": "Roumains d'origine hongroise" - }, + "authorized_access_point": "Th\u00e9ologiens musulmans" + } + ], + "related": [ { - "authorized_access_point": "Ruth\u00e8nes" + "authorized_access_point": "Im\u0101mat" } ], + "bnf_type": "sujet Rameau", "closeMatch": [ { "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85045365", - "source": "LCSH" - }, - "authorized_access_point": "Ethnology--Romania" - }, - { - "source": "RVMLaval", - "authorized_access_point": "Ethnologie--Roumanie" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2008007856", + "source": "LCSH" + } + ], + "authorized_access_point": "Akhb\u0101r\u012byah" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/030767806", + "value": "http://www.idref.fr/136707165", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12211770b", + "value": "http://catalogue.bnf.fr/ark:/12148/cb161107725", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16110772", "source": "BNF" } ], "classification": [ { - "name": "Ethnologie, anthropologie, folklore", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", "type": "bf:ClassificationDdc", - "classificationPortion": "390" + "classificationPortion": "200" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "305" } ], - "authorized_access_point": "Ethnologie - Roumanie" - }, - { - "md5": "a713f3716ced9f6a5d616aa5c2c92a3f", - "pid": "030860466", + "variant_access_point": [ + "Akhb\u0101r\u012b", + "A\u1e96b\u0101r\u012b", + "\u0623\u062e\u0628\u0627\u0631\u064a", + "A\u1e96b\u0101riyya\u1e97", + "\u0623\u062e\u0628\u0627\u0631\u064a\u0651\u0629", + "Akhb\u0101r\u012byah", + "Akhb\u0101r\u012byya", + "A\u1e96b\u0101riyy\u016bn", + "\u0623\u062e\u0628\u0627\u0631\u064a\u0651\u0648\u0646", + "Al- a\u1e96b\u0101r\u012b", + "\u0627\u0644\u0623\u062e\u0628\u0627\u0631\u064a", + "Al- a\u1e96b\u0101riyya\u1e97", + "\u0627\u0644\u0623\u062e\u0628\u0627\u0631\u064a\u0651\u0629", + "Al- a\u1e96b\u0101riyy\u016bn", + "\u0627\u0644\u0623\u062e\u0628\u0627\u0631\u064a\u0651\u0648\u0646", + "Akhbarisme", + "Courant akhb\u0101r\u012b", + "\u00c9cole akhb\u0101r\u012be", + "Mouvement akhb\u0101r\u012b", + "Traditionalistes akhb\u0101r\u012b" + ], + "authorized_access_point": "Akhb\u0101r\u012bs" + }, + { + "md5": "96a7bdfc071f1db4578e9ee81b468462", + "pid": "13776541X", "note": [ { "label": [ - "Japanese Literary History - http://www.jlit.net (2018-08-30)" + "L'ann\u00e9e 1989 dans Le Monde / E. Masurel, 1990", + "Dict. encyclop\u00e9dique d'histoire / M. Mourre (art. : Hongrie)", + "Mil ans d'hist. hongroise / I. G. T\u00f3th, 2003 (p. 667)", + "Historical dict. of Hungary / S. B. V\u00e1rdy, 1997 (art. : Communism, Collapse of (1989-1990) ; Iron Curtain)" ], "noteType": "dataSource" }, { "label": [ - "S'emploie uniquement en subdivision chronologique [sans subd. g\u00e9ogr.] aux litt\u00e9ratures japonaises, par ex. : Po\u00e9sie japonaise -- 1600-1868 (\u00c9poque d'Edo)", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature japonaise, qui sert de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires japonais" + "27 mai 1989 : les ministres autrichien et hongrois des affaires \u00e9trang\u00e8res (Alois Mock et Gyula Horn) coupent symboliquement les d\u00e9fenses frontali\u00e8res. 19 ao\u00fbt : l'organisation pr\u00e8s de Sopron d'un \"pique-nique paneurop\u00e9en\" par Otto de Habsbourg et Imre Pozsgay permet \u00e0 environ 500 Allemands de l'Est de passer en Autriche. 10 septembre : G. Horn annonce l'ouverture de la fronti\u00e8re, qu'environ 25.000 Allemands de l'Est franchissent en septembre" ], "noteType": "general" } ], - "type": "bf:Temporal", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fronti\u00e8res - Hongrie" + }, + { + "authorized_access_point": "Fronti\u00e8res - Autriche" + }, + { + "authorized_access_point": "Rideau de fer (fronti\u00e8re)" + }, + { + "authorized_access_point": "Europe de l'Est - 1989-1990 (Chute du communisme)" + } + ], "related": [ { - "authorized_access_point": "Litt\u00e9rature japonaise - 1600-1868 (\u00c9poque d'Edo)" + "authorized_access_point": "Allemagne - 1989-1990 (Unification)" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/030860466", + "value": "http://www.idref.fr/13776541X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb122191473", + "value": "http://catalogue.bnf.fr/ark:/12148/cb161648597", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16164859", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "940" } ], "variant_access_point": [ - "1600-1868 (\u00c9poque d'Edo)", - "\u00c9poque d'Edo (1600-1868)" + "Fronti\u00e8re austro-hongroise, Ouverture de la (1989)", + "Ouverture du Rideau de fer (1989)", + "Pique-nique paneurop\u00e9en (1989)", + "Rideau de fer, Ouverture du (1989)" ], - "authorized_access_point": "1600-1868(\u00c9poque d'Edo)" + "authorized_access_point": "Ouverture de la fronti\u00e8re austro-hongroise (1989)" }, { - "md5": "1255b779ff036b71b8732ec555ed8703", - "pid": "031022219", + "md5": "681e79b20069a1c7fb976a3dbc394e43", + "pid": "137978685", "note": [ { "label": [ - "S'emploie uniquement en subdivision chronologique \u00e0 certaines litt\u00e9ratures", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec les vedettes de litt\u00e9ratures, celles-ci servant de vedettes mod\u00e8les pour tous les genres litt\u00e9raires de m\u00eame langue ou de m\u00eame nationalit\u00e9, par ex. : Litt\u00e9rature russe -- Avant 1700. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec les genres litt\u00e9raires" + "Quid - http://www.quid.fr (2009-11-14)", + "Wikip\u00e9dia : Affaire des ventes d'armes \u00e0 l'Angola - http://fr.wikipedia.org (2009-11-14)", + "Les hommes de l'\"Angolagate\" / S. Smith [in] Le Monde, 2001-01-13", + "Angolagate : Pasqua implique de nouveau Chirac et Villepin [in] Le Figaro, 2009-11-13" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Affaire de trafic d'armes vers l'Angola au cours de la guerre civile entre 1993 et 1998. L'enqu\u00eate, commenc\u00e9e en juillet 2000, a impliqu\u00e9 notamment Pierre Falcone, Arkadi Gaydamak, Charles Pasqua et Jean-Christophe Mitterrand. Le nom d'\"Angolagate\" (par allusion au Watergate), donn\u00e9 \u00e0 l'affaire par le journal Le Monde en janvier 2001, a fait flor\u00e8s. 6 octobre 2008-27 octobre 2009 : proc\u00e8s en premi\u00e8re instance" ], "noteType": "general" } ], - "type": "bf:Temporal", - "related": [ - { - "authorized_access_point": "Litt\u00e9rature bi\u00e9lorusse - Avant 1700" - }, - { - "authorized_access_point": "Litt\u00e9rature \u00e9cossaise - Avant 1700" - }, - { - "authorized_access_point": "Litt\u00e9rature lituanienne - Avant 1700" - }, + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Litt\u00e9rature russe - Avant 1700" + "authorized_access_point": "Politique et gouvernement - France - 1995-2007" }, { - "authorized_access_point": "Litt\u00e9rature serbe - Avant 1700" + "authorized_access_point": "Politique et gouvernement - France - 1993-1995" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/031022219", + "value": "http://www.idref.fr/137978685", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12232063s", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16157417q", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16157417", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Histoire de la France", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "944" + }, + { + "name": "Histoire du reste du monde", + "type": "bf:ClassificationDdc", + "classificationPortion": "950" } ], - "authorized_access_point": "Avant 1700" + "variant_access_point": [ + "Affaire des ventes d'armes \u00e0 l'Angola (1993-....)", + "Affaire du trafic d'armes vers l'Angola (1993-....)", + "Affaire Falcone (1993-....)", + "Proc\u00e8s de l'Angolagate (2008-....)", + "Scandale de l'Angolagate (1993-....)", + "Trafic d'armes vers l'Angola, Affaire du (1993-....)", + "Ventes d'armes \u00e0 l'Angola, Affaire des (1993-....)" + ], + "authorized_access_point": "Angolagate (1993-....)" }, { - "md5": "bf2bd884be0b8b78dadbc5d961d31e00", - "pid": "03116207X", + "md5": "c2efb824295a0e726a211e8af84fd38c", + "pid": "139100857", "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Femmes enceintes - Examens m\u00e9dicaux" - }, - { - "authorized_access_point": "Diagnostic pr\u00e9natal" + "authorized_access_point": "Mythologie cor\u00e9enne" } ], "related": [ { - "authorized_access_point": "Accouchement - Complications (m\u00e9decine) -- Diagnostic" - }, - { - "authorized_access_point": "Grossesse - Signes et diagnostic" + "authorized_access_point": "Dieux tao\u00efstes" } ], "bnf_type": "sujet Rameau", - "narrower": [ + "closeMatch": [ { - "authorized_access_point": "Imagerie pour le diagnostic en obst\u00e9trique" + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2006004413", + "source": "LCSH" + } + ], + "authorized_access_point": "Gods, Korean" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/03116207X", + "value": "http://www.idref.fr/139100857", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12243064k", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16158627t", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16158627", "source": "BNF" } ], "classification": [ { - "name": "Sciences m\u00e9dicales et param\u00e9dicales", + "name": "Religion", "type": "bf:ClassificationDdc", - "classificationPortion": "610" + "classificationPortion": "200" } ], - "variant_access_point": [ - "Grossesse - Complications -- Diagnostic", - "Diagnostic en obst\u00e9trique", - "Diagnostic obst\u00e9trical", - "\u00c9preuve fonctionnelle en obst\u00e9trique", - "Examen obst\u00e9trical", - "Obst\u00e9trique - \u00c9preuve fonctionnelle" - ], - "authorized_access_point": "Grossesse - Complications (m\u00e9decine) -- Diagnostic" + "authorized_access_point": "Dieux cor\u00e9ens" }, { - "md5": "581680c6f2c54900fa5beb2ed67bb5a6", - "pid": "031474284", + "md5": "bf069e8fd5cf8ca041ea1cc006e2903f", + "pid": "142761583", "note": [ { "label": [ - "Tr\u00e9sor de la langue fran\u00e7aise (art. : Langage)", - "Grand Robert de la langue fran\u00e7aise, 2001 (art. : Faute)", - "Dict. de didactique des langues / D. Coste, R. Galisson, 1976" + "LC Authorities (en ligne), 2010-03-08", + "VMware cookbook / R. Troy, M. Helmke, 2010", + "VMware Virtualization Software for Desktops, Servers & Virtual Machines for a Private Cloud - http://www.vmware.com (2010-03-08)", + "Virtualisation des syst\u00e8mes d'information avec VMware / P. Gillet, 2009" ], "noteType": "dataSource" - }, - { - "label": [ - "S'emploie \u00e9galement en subdivision" - ], - "noteType": "general" } ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Langues - \u00c9tude et enseignement" + "authorized_access_point": "Syst\u00e8mes virtuels (informatique)" } ], - "related": [ + "bnf_type": "sujet Rameau", + "identifiedBy": [ { - "authorized_access_point": "Fautes de langage - Analyse (enseignement des langues)" + "type": "uri", + "value": "http://www.idref.fr/142761583", + "source": "IDREF" }, { - "authorized_access_point": "Faux amis (linguistique)" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16186298c", + "source": "BNF" }, { - "authorized_access_point": "Normalisation linguistique" - }, + "type": "bf:Nbn", + "value": "FRBNF16186298", + "source": "BNF" + } + ], + "classification": [ { - "authorized_access_point": "Purisme (linguistique)" - }, + "name": "Physique appliqu\u00e9e", + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "authorized_access_point": "VMware (logiciels)" + }, + { + "md5": "b1b59ea1c0109481e2a83242a98494a8", + "pid": "144331373", + "type": "bf:Topic", + "related": [ { - "authorized_access_point": "Usage" + "authorized_access_point": "Allemand (langue)" } ], "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Fautes d'orthographe" + "authorized_access_point": "Deutsche Sprachpr\u00fcfung f\u00fcr den Hochschulzugang" + }, + { + "authorized_access_point": "Goethe-Zertifikat A1" + }, + { + "authorized_access_point": "Goethe-Zertifikat A2" }, { - "authorized_access_point": "Lapsus" + "authorized_access_point": "Goethe-Zertifikat B1" }, { - "authorized_access_point": "Perles de langage" + "authorized_access_point": "Goethe-Zertifikat B2" }, { - "authorized_access_point": "Que\u00edsmo" + "authorized_access_point": "Goethe-Zertifikat C1" + }, + { + "authorized_access_point": "Goethe-Zertifikat C2" + }, + { + "authorized_access_point": "Test Deutsch als Fremdsprache" } ], "closeMatch": [ - { - "source": "RVMLaval", - "authorized_access_point": "Fautes de langage" - }, { "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85126446", - "source": "LCSH" - }, - "authorized_access_point": "Speech errors" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2008008787", + "source": "LCSH" + } + ], + "authorized_access_point": "German language -- Examinations" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/031474284", + "value": "http://www.idref.fr/144331373", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12268317h", + "value": "http://catalogue.bnf.fr/ark:/12148/cb162021301", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16202130", "source": "BNF" } ], "classification": [ { + "name": "Education et enseignement", "type": "bf:ClassificationDdc", - "classificationPortion": "401" + "classificationPortion": "370" }, { - "name": "Po\u00e9sie", + "name": "Langues et linguistique", "type": "bf:ClassificationDdc", - "classificationPortion": "801" + "classificationPortion": "400" } ], - "variant_access_point": [ - "Barbarismes", - "Cuirs (linguistique)", - "Difficult\u00e9s langagi\u00e8res", - "Erreurs de langage", - "Erreurs langagi\u00e8res", - "Expressions incorrectes", - "Fautes d'usage (linguistique)", - "Fautes de langue", - "Fautes de prononciation", - "Fautes langagi\u00e8res", - "Impropri\u00e9t\u00e9s (linguistique)", - "Incorrections (linguistique)", - "Langage, Fautes de", - "Langue, Fautes de", - "Pataqu\u00e8s (linguistique)", - "Prononciation, Fautes de", - "Sol\u00e9cismes" - ], - "authorized_access_point": "Fautes de langage" + "authorized_access_point": "Allemand (langue) - Examens" }, { - "md5": "b93c4521b1f2ae1e6e9cc6270c31d0a5", - "pid": "031911056", + "md5": "e6c2a4b96827bc8e29699b6bf4ec883f", + "pid": "144664194", "note": [ { "label": [ - "Cognition et lecture : processus de base de la reconnaissance des mots \u00e9crits chez l'adulte / L. Ferrand, 2001", - "Lecture et dyslexie : approche cognitive / L. Sprenger-Charolles, Pascale Col\u00e9, 2003", - "Apprendre \u00e0 lire : des sciences cognitives \u00e0 la salle de classe / S. Dehaene, 2011" + "Apple - http://www.apple.com/fr (2010-05-25)", + "D\u00e9velopper pour l'iPhone et l'iPad / \u00c9. Vautherin, 2010", + "My new iPad : simple ways to get started / W. Wang, 2010" ], "noteType": "dataSource" } @@ -6746,217 +26568,206 @@ "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Cognition" + "authorized_access_point": "Tablettes num\u00e9riques" }, { - "authorized_access_point": "Lecture - Aspect psychologique" - }, - { - "authorized_access_point": "Linguistique cognitive" + "authorized_access_point": "Apple (ordinateurs)" } ], - "related": [ + "bnf_type": "sujet Rameau", + "identifiedBy": [ { - "authorized_access_point": "Communication \u00e9crite - Aspect cognitif" + "type": "uri", + "value": "http://www.idref.fr/144664194", + "source": "IDREF" }, { - "authorized_access_point": "Consignes (\u00e9ducation)" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16204308w", + "source": "BNF" }, { - "authorized_access_point": "\u00c9criture - Aspect cognitif" - }, + "type": "bf:Nbn", + "value": "FRBNF16204308", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Physique appliqu\u00e9e", + "type": "bf:ClassificationDdc", + "classificationPortion": "621" + } + ], + "variant_access_point": [ + "iPad (ordinateur)" + ], + "authorized_access_point": "Apple iPad (ordinateur)" + }, + { + "md5": "96d8f79a5250b87c4c3700e0b7987610", + "pid": "145035468", + "type": "bf:Topic", + "related": [ { - "authorized_access_point": "Test de closure" + "authorized_access_point": "Grec (langue) biblique" } ], "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "D\u00e9nomination rapide automatis\u00e9e" + "authorized_access_point": "Ai\u0313\u1e53n (le mot grec)" }, { - "authorized_access_point": "Lecture - Difficult\u00e9s" - } - ], - "closeMatch": [ + "authorized_access_point": "Diakon\u00eda (le mot grec)" + }, + { + "authorized_access_point": "Did\u00e1skalos (le mot grec)" + }, + { + "authorized_access_point": "D\u00fdnamis (le mot grec)" + }, + { + "authorized_access_point": "Ei\u0313k\u1e53n (le mot grec)" + }, + { + "authorized_access_point": "F\u014dn\u012b \u0301 (le mot grec)" + }, + { + "authorized_access_point": "Gn\u014dstik\u00f3s (le mot grec)" + }, + { + "authorized_access_point": "Kard\u00eda (le mot grec)" + }, + { + "authorized_access_point": "Koin\u014dn\u00eda (le mot grec)" + }, + { + "authorized_access_point": "Leitourg\u00eda (le mot grec)" + }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85111686", - "source": "LCSH" - }, - "authorized_access_point": "Reading comprehension" + "authorized_access_point": "Martyr\u00eda (le mot grec)" }, { - "source": "RVMLaval", - "authorized_access_point": "Compr\u00e9hension de la lecture" - } - ], - "identifiedBy": [ + "authorized_access_point": "Math\u012bt\u012b\u0301s (le mot grec)" + }, { - "type": "uri", - "value": "http://www.idref.fr/031911056", - "source": "IDREF" + "authorized_access_point": "Myst\u012b\u0301rion (le mot grec)" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12303769k", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "N\u00f3mos (le mot grec)" + }, { - "name": "Psychologie, psychanalyse", - "type": "bf:ClassificationDdc", - "classificationPortion": "150" + "authorized_access_point": "No\u00fbs (le mot grec)" }, { - "type": "bf:ClassificationDdc", - "classificationPortion": "401" - } - ], - "variant_access_point": [ - "Cognition et lecture", - "Lecture - Compr\u00e9hension", - "Lecture et cognition", - "Psychologie cognitive de la lecture" - ], - "authorized_access_point": "Lecture - Aspect cognitif" - }, - { - "md5": "c24aa7d62b52901dd8ea61246aa5d8fe", - "pid": "031937667", - "note": [ + "authorized_access_point": "Oi\u0313kodome\u00een (le mot grec)" + }, { - "label": [ - "S'emploie uniquement en subdivision chronologique \u00e0 la langue et aux litt\u00e9ratures catalanes", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature catalane, celle-ci servant de mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires catalans" - ], - "noteType": "general" - } - ], - "type": "bf:Temporal", - "related": [ + "authorized_access_point": "Oi\u0313kodom\u012b\u0301 (le mot grec)" + }, { - "authorized_access_point": "Catalan (langue) - +* 1500......- 1799......+:16e-18e si\u00e8cles: (D\u00e9cadence)" + "authorized_access_point": "Oi\u0313konom\u00eda (le mot grec)" }, { - "authorized_access_point": "Litt\u00e9rature catalane - 16e-18e si\u00e8cles (D\u00e9cadence)" - } - ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "authorized_access_point": "Paide\u00eda (le mot grec)" + }, { - "type": "uri", - "value": "http://www.idref.fr/031937667", - "source": "IDREF" + "authorized_access_point": "Par\u00e1klit\u0304os (le mot grec)" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb123061282", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Parr\u012bs\u00eda (le mot grec)" + }, { - "name": "Langues et linguistique", - "type": "bf:ClassificationDdc", - "classificationPortion": "400" + "authorized_access_point": "P\u00e2s (le mot grec)" }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" - } - ], - "authorized_access_point": "16e-18e si\u00e8cles(D\u00e9cadence)" - }, - { - "md5": "69fe495cc96d63eb48ed1ba046dc18d2", - "pid": "031992234", - "note": [ + "authorized_access_point": "Peripat\u00f4\u0304 (le mot grec)" + }, { - "label": [ - "Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour saxophone et orchestre, et les recueils de compositions de formes et de genres diff\u00e9rents pour cette m\u00eame formation" - ], - "noteType": "general" - } - ], - "type": "bf:Topic", - "bnf_type": "genre/forme Rameau", - "narrower": [ + "authorized_access_point": "Perisse\u00eda (le mot grec)" + }, { - "authorized_access_point": "Concertos (saxophone)" + "authorized_access_point": "Perisse\u00faein (le mot grec)" }, { - "authorized_access_point": "Po\u00e8mes symphoniques (saxophone et orchestre)" + "authorized_access_point": "P\u00edstis (le mot grec)" }, { - "authorized_access_point": "Rhapsodies (saxophone et orchestre)" + "authorized_access_point": "Proa\u00edresis (le mot grec)" }, { - "authorized_access_point": "Saxophone et orchestre \u00e0 cordes" + "authorized_access_point": "Pros\u00e9rchomai (le mot grec)" }, { - "authorized_access_point": "Saxophone et orchestre \u00e0 vent" + "authorized_access_point": "S\u014dt\u012b\u0301r (le mot grec)" }, { - "authorized_access_point": "Saxophone et orchestre d'harmonie" + "authorized_access_point": "Syggn\u1e53m\u012b (le mot grec)" }, { - "authorized_access_point": "Saxophone et orchestre de chambre" + "authorized_access_point": "Syne\u00edd\u012bsis (le mot grec)" }, { - "authorized_access_point": "Saxophone et orchestre de jazz" + "authorized_access_point": "T\u00e9leios (le mot grec)" }, { - "authorized_access_point": "Suites (saxophone et orchestre)" - } - ], - "closeMatch": [ + "authorized_access_point": "T\u00e9los (le mot grec)" + }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85117865", - "source": "LCSH" - }, - "authorized_access_point": "Saxophone with orchestra" + "authorized_access_point": "Theosof\u00eda (le mot grec)" }, { - "source": "RVMLaval", - "authorized_access_point": "Saxophone et orchestre" + "authorized_access_point": "T\u012bre\u00een (le mot grec)" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/031992234", + "value": "http://www.idref.fr/145035468", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb123105743", + "value": "http://catalogue.bnf.fr/ark:/12148/cb162077797", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16207779", "source": "BNF" } ], "classification": [ { - "name": "Musique", + "name": "Religion", "type": "bf:ClassificationDdc", - "classificationPortion": "780" + "classificationPortion": "200" + }, + { + "name": "Langues", + "type": "bf:ClassificationDdc", + "classificationPortion": "400" } ], - "authorized_access_point": "Saxophone et orchestre" + "authorized_access_point": "Grec (langue) biblique - Vocabulaire" }, { - "md5": "97231932656ef4e97017c1d12f804177", - "pid": "03212743X", + "md5": "575ec0f83b3d0a3f4f01272eb44f23c6", + "pid": "145909093", "note": [ { "label": [ - "Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour fl\u00fbte, violon et alto, et les recueils de compositions de formes et de genres diff\u00e9rents pour cette m\u00eame formation" + "Wikip\u00e9dia : Attentat du 8 mai 2002 \u00e0 Karachi - http://fr.wikipedia.org (2010-06-28)", + "Encycl. universalis (art. : Pakistan actualit\u00e9 (1990-2008)) - http://www.universalis-edu.com (2010-06-28)", + "L'ann\u00e9e 2002 dans Le Monde / M. Roche, 2003", + "Collectif de familles de victimes d\u00e9c\u00e9d\u00e9es dans l'attentat du 8 mai 2002 \u00e0 Karachi - http://www.verite-attentat-karachi.org (2010-06-28)" + ], + "noteType": "dataSource" + }, + { + "label": [ + "8 mai 2002 : un attentat \u00e0 la voiture pi\u00e9g\u00e9e \u00e0 Karachi (Pakistan) tue 14 personnes, dont 11 Fran\u00e7ais travaillant \u00e0 la Direction des constructions navales, et fait plus de 20 bless\u00e9s (dont 12 Fran\u00e7ais)" ], "noteType": "general" } @@ -6964,899 +26775,832 @@ "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Trios ([distributions instrumentales])" - } - ], - "bnf_type": "genre/forme Rameau", - "narrower": [ - { - "authorized_access_point": "S\u00e9r\u00e9nades (fl\u00fbte, violon, alto)" - } - ], - "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85137637", - "source": "LCSH" - }, - "authorized_access_point": "Trios (Flute, violin, viola)" + "authorized_access_point": "Attentats - Pakistan" }, { - "source": "RVMLaval", - "authorized_access_point": "Trios (fl\u00fbte, violon, alto)" + "authorized_access_point": "Pakistan - 1947-...." } ], + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/03212743X", + "value": "http://www.idref.fr/145909093", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12321733h", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16205959p", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16205959", "source": "BNF" } ], "classification": [ { - "name": "Musique", + "name": "Science politique", "type": "bf:ClassificationDdc", - "classificationPortion": "780" + "classificationPortion": "320" + }, + { + "name": "Histoire du reste du monde", + "type": "bf:ClassificationDdc", + "classificationPortion": "950" } ], - "authorized_access_point": "Trios (fl\u00fbte, violon, alto)" + "variant_access_point": [ + "Attentat de Karachi (2002)" + ], + "authorized_access_point": "Karachi, Attentat de (2002)" }, { - "md5": "3e59a3f7e7e47a95a5fc7c65274fd9f6", - "pid": "032187130", + "md5": "f09db67dbaef4b4f97f431e645eb1499", + "pid": "146923081", "note": [ { "label": [ - "Grand Robert de la langue fran\u00e7aise, 2001" + "Apple - http://www.apple.fr (2010-09-29)", + "Ipod touch / A. Glevarec, 2008", + "The iPod touch pocket guide / C. Breen, 2009" ], "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette on trouve les documents sur les constructions propres \u00e0 la langue espagnole qui ne poss\u00e8dent aucun correspondant syntaxique dans une autre langue. Les documents sur les mots et locutions espagnols int\u00e9gr\u00e9s \u00e0 une autre langue se trouvent sous le nom de cette langue suivie de la subdivision Emprunts espagnols, par ex. : Fran\u00e7ais (langue) -- Emprunts espagnols" - ], - "noteType": "general" } ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Idiotismes" - } - ], - "related": [ - { - "authorized_access_point": "Espagnol (langue)" + "authorized_access_point": "Lecteurs MP3" }, { - "authorized_access_point": "Que\u00edsmo" + "authorized_access_point": "Ordinateurs de poche" } ], "bnf_type": "sujet Rameau", - "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh2008112151", - "source": "LCSH" - }, - "authorized_access_point": "Spanish language--Idioms" - }, - { - "source": "RVMLaval", - "authorized_access_point": "Hispanismes (idiotismes)" - } - ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/032187130", + "value": "http://www.idref.fr/146923081", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12326636g", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16232911k", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16232911", "source": "BNF" } ], "classification": [ { - "name": "Langues et linguistique", + "name": "Physique appliqu\u00e9e", "type": "bf:ClassificationDdc", - "classificationPortion": "400" + "classificationPortion": "621" + }, + { + "name": "Audiovisuel", + "type": "bf:ClassificationDdc", + "classificationPortion": "791" } ], "variant_access_point": [ - "Espagnol (langue) - Idiotismes" + "Apple iPod touch (baladeur num\u00e9rique)" ], - "authorized_access_point": "Hispanismes (idiotismes)" + "authorized_access_point": "iPod touch (baladeur num\u00e9rique)" }, { - "md5": "a50327d852627ff3411ac9ebe9cb6978", - "pid": "032563507", - "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Litt\u00e9rature n\u00e9erlandaise" - } - ], - "related": [ - { - "authorized_access_point": "Po\u00e8tes n\u00e9erlandais" - }, - { - "authorized_access_point": "Chansons n\u00e9erlandaises" - }, + "md5": "ec3207fc0e52086f00cb72d98d16abc7", + "pid": "147286433", + "note": [ { - "authorized_access_point": "M\u00e9lodies n\u00e9erlandaises" + "label": [ + "Wikipedia - http://fr.wikipedia.org (2010-11-02)", + "Mind map : dessine-moi l'intelligence / T. et B. Buzan,1995", + "Organisez votre vie avec le mind mapping / P. Mongin, X. Delengaigne, 2009" + ], + "noteType": "dataSource" }, { - "authorized_access_point": "Prose n\u00e9erlandaise" + "label": [ + "Repr\u00e9sentations graphiques des liens entre id\u00e9es et/ou concepts sous une forme g\u00e9n\u00e9ralement arborescente. Pour des cartes mentales en g\u00e9ographie, voir la vedette \"Perception g\u00e9ographique", + "S'emploie \u00e9galement en subdivision" + ], + "noteType": "general" } ], - "bnf_type": "genre/forme Rameau", - "narrower": [ - { - "authorized_access_point": "\u00c9pop\u00e9es n\u00e9erlandaises" - }, - { - "authorized_access_point": "Po\u00e8mes en prose n\u00e9erlandais" - }, - { - "authorized_access_point": "Po\u00e9sie didactique n\u00e9erlandaise" - }, - { - "authorized_access_point": "Po\u00e9sie \u00e9logieuse n\u00e9erlandaise" - }, - { - "authorized_access_point": "Po\u00e9sie \u00e9rotique n\u00e9erlandaise" - }, + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Po\u00e9sie n\u00e9erlandaise pour la jeunesse" + "authorized_access_point": "M\u00e9thodes graphiques" }, { - "authorized_access_point": "Po\u00e9sie pastorale n\u00e9erlandaise" - }, + "authorized_access_point": "Psychologie cognitive" + } + ], + "related": [ { - "authorized_access_point": "Po\u00e9sie politique n\u00e9erlandaise" + "authorized_access_point": "Cartes cognitives" }, { - "authorized_access_point": "Po\u00e9sie religieuse n\u00e9erlandaise" + "authorized_access_point": "Cr\u00e9ativit\u00e9" }, { - "authorized_access_point": "Po\u00e9sie visuelle n\u00e9erlandaise" + "authorized_access_point": "Heuristique" }, { - "authorized_access_point": "Sonnets n\u00e9erlandais" + "authorized_access_point": "Traitement de l'information (psychologie)" } ], + "bnf_type": "sujet Rameau", "closeMatch": [ { "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85040126", - "source": "LCSH" - }, - "authorized_access_point": "Dutch poetry" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2007007421", + "source": "LCSH" + } + ], + "authorized_access_point": "Concept mapping" }, { "source": "RVMLaval", - "authorized_access_point": "Po\u00e9sie n\u00e9erlandaise" + "authorized_access_point": "Cartographie conceptuelle" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/032563507", + "value": "http://www.idref.fr/147286433", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb123569227", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16241164x", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16241164", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "150" } ], "variant_access_point": [ - "Po\u00e9sie flamande - Avant 1830", - "Po\u00e9sie hollandaise" + "Arborescences heuristiques", + "Arbres \u00e0 id\u00e9es", + "Arbres heuristiques", + "Cartes des id\u00e9es", + "Cartes mentales (psychologie)", + "Diagrammes heuristiques", + "Id\u00e9es, Cartes des", + "Mind mapping", + "Sch\u00e9mas heuristiques", + "Topogrammes" + ], + "authorized_access_point": "Cartes heuristiques" + }, + { + "md5": "19ce83a049337ac2affc436dd25081d4", + "pid": "148541372", + "note": [ + { + "label": [ + "Grand dict. terminologique : ardoise \u00e9lectronique ; tablette \u00e9lectronique ; ordinateur tablette - http://www.granddictionnaire.com (2010-12-02)", + "Faut-il se laisser tenter par la tablette num\u00e9rique ? [in] Le Particulier, 2010, 1054", + "Les syst\u00e8mes d'information de gestion / J. O'Brien, 1997 : tablettes \u00e9lectroniques" + ], + "noteType": "dataSource" + } ], - "authorized_access_point": "Po\u00e9sie n\u00e9erlandaise" - }, - { - "md5": "faa5106feb3ec6f918adb83d81f00ea1", - "pid": "032972938", "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Femmes enceintes - Examens m\u00e9dicaux" + "authorized_access_point": "Ordinateurs portatifs" } ], "related": [ { - "authorized_access_point": "Grossesse - Complications (m\u00e9decine) -- Diagnostic" + "authorized_access_point": "Applications mobiles" } ], "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Imagerie pour le diagnostic en obst\u00e9trique" - } - ], - "identifiedBy": [ - { - "type": "uri", - "value": "http://www.idref.fr/032972938", - "source": "IDREF" + "authorized_access_point": "Samsung Galaxy Note 8.0 (ordinateur)" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb123892668", - "source": "BNF" - } - ], - "classification": [ - { - "name": "Sciences m\u00e9dicales et param\u00e9dicales", - "type": "bf:ClassificationDdc", - "classificationPortion": "610" - } - ], - "variant_access_point": [ - "Accouchement - Complications -- Diagnostic", - "Diagnostic en obst\u00e9trique", - "Diagnostic obst\u00e9trical", - "\u00c9preuve fonctionnelle en obst\u00e9trique", - "Examen obst\u00e9trical", - "Obst\u00e9trique - \u00c9preuve fonctionnelle" - ], - "authorized_access_point": "Accouchement - Complications (m\u00e9decine) -- Diagnostic" - }, - { - "md5": "8b483cc5775ca6cdcd8d959fc2d659ba", - "pid": "033070202", - "note": [ - { - "label": [ - "La subdivision chronologique 1600-1755 (P\u00e9riode coloniale) s'emploie uniquement aux litt\u00e9ratures et genres litt\u00e9raires am\u00e9ricains", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature am\u00e9ricaine, celle-ci servant de vedette mod\u00e8le pour les genres litt\u00e9raires de m\u00eame nationalit\u00e9. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec les genres litt\u00e9raires" - ], - "noteType": "general" - } - ], - "type": "bf:Temporal", - "related": [ - { - "authorized_access_point": "Litt\u00e9rature am\u00e9ricaine - 1600-1775 (p\u00e9riode coloniale)" - } - ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "authorized_access_point": "Amazon Kindle Fire (ordinateur)" + }, { - "type": "uri", - "value": "http://www.idref.fr/033070202", - "source": "IDREF" + "authorized_access_point": "Microsoft Surface (ordinateur)" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb123973877", - "source": "BNF" - } - ], - "classification": [ + "authorized_access_point": "Google Nexus (ordinateur)" + }, { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" - } - ], - "authorized_access_point": "1600-1775(P\u00e9riode coloniale)" - }, - { - "md5": "7a024d7b6a7f20312a4467466359d9b6", - "pid": "033297746", - "note": [ + "authorized_access_point": "Amazon Kindle (ordinateur)" + }, { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures su\u00e9doises" - ], - "noteType": "general" + "authorized_access_point": "Samsung Galaxy Tab (ordinateur)" + }, + { + "authorized_access_point": "Apple iPad (ordinateur)" } ], - "type": "bf:Temporal", - "related": [ + "closeMatch": [ { - "authorized_access_point": "Su\u00e9dois (langue) - 1525-1732" + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2010009240", + "source": "LCSH" + } + ], + "authorized_access_point": "Tablet computers" } ], - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/033297746", + "value": "http://www.idref.fr/148541372", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12417795g", + "value": "http://catalogue.bnf.fr/ark:/12148/cb162446761", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16244676", "source": "BNF" } ], "classification": [ { - "name": "Langues", "type": "bf:ClassificationDdc", - "classificationPortion": "400" + "classificationPortion": "621" } ], - "authorized_access_point": "1525-1732" + "variant_access_point": [ + "Ardoises \u00e9lectroniques", + "Ordinateurs tablettes", + "Tablettes \u00e9lectroniques" + ], + "authorized_access_point": "Tablettes num\u00e9riques" }, { - "md5": "c8dd3a54dc03d0d882de40daa121b1c0", - "pid": "033466300", - "note": [ - { - "label": [ - "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1996" - ], - "noteType": "dataSource" - }, - { - "label": [ - "3 octobre 1990 : unification de l'Allemagne et fin de la Guerre froide ; 2020 : coronavirus", - "S'emploie uniquement en subdivision chronologique \u00e0 tous sujets noms communs et noms propres \u00e0 l'exception des personnes et des sujets pour lesquels il existe un d\u00e9coupage chronologique sp\u00e9cifique, par ex. : Europe -- 1989-" - ], - "noteType": "general" - } - ], - "type": "bf:Temporal", - "broader": [ - { - "authorized_access_point": "1970-...." - } - ], + "md5": "3aff89321bb874d1eb2ffbb078c76e8b", + "pid": "148542182", + "type": "bf:Topic", "related": [ { - "authorized_access_point": "2000-...." - }, - { - "authorized_access_point": "Histoire universelle - 1990-...." + "authorized_access_point": "Tol\u00e9rance religieuse" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/033466300", + "value": "http://www.idref.fr/148542182", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12432924q", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16248927m", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16248927", "source": "BNF" } ], - "relation_pid": { - "type": "redirect_from", - "value": "033466386" - }, "classification": [ { - "name": "Histoire et g\u00e9ographie (g\u00e9n\u00e9ralit\u00e9s)", + "name": "Religion", + "type": "bf:ClassificationDdc", + "classificationPortion": "200" + }, + { + "name": "Science politique", + "type": "bf:ClassificationDdc", + "classificationPortion": "320" + }, + { + "name": "Histoire", "type": "bf:ClassificationDdc", "classificationPortion": "900" } ], - "variant_access_point": [ - "1990-2020 (subdivision)" - ], - "authorized_access_point": "1990-2020" + "authorized_access_point": "Tol\u00e9rance religieuse - Histoire" }, { - "md5": "e3b91fa67469388babc782ec799cb652", - "pid": "03388157X", + "md5": "6923b7fa9fcc240de53821ce3bf162b4", + "pid": "151385432", "note": [ { "label": [ - "L'entretien d'explicitation / P. Vermersch, 1994", - "L'entretien d'explication en entreprise : savoir questionner pour manager et former / H. Roux de B\u00e9zieux, 1999" + "Wikip\u00e9dia - http://fr.wikipedia.org (2011-03-28)", + "Hist. des \u00c9tats-Unis / J.-M. Lacroix, 2010", + "Hist. des \u00c9tats-Unis : de 1776 \u00e0 nos jours / J. Portes, 2010 (p. 22)", + "Dict. des \u00c9tats-Unis / D. Royot, 2010 (art. : Constitution)", + "Une hist. populaire des \u00c9tats-Unis / H. Zinn, 2002", + "La R\u00e9volution am\u00e9ricaine / B. Cottret, 2003 (p. 305) : Founding Fathers", + "Historical dict. of Revolutionary America / T. M. Mays, 2005 : Founding Fathers" ], "noteType": "dataSource" + }, + { + "label": [ + "Nom donn\u00e9 aux 56 r\u00e9dacteurs de la d\u00e9claration d'ind\u00e9pendance des \u00c9tats-Unis (1776) et aux 55 d\u00e9l\u00e9gu\u00e9s \u00e0 la Convention de Philadelphie, r\u00e9dacteurs de la Constitution am\u00e9ricaine (1787). Les principaux sont Georges Washington, James Madison, Thomas Jefferson, Benjamin Franklin, Alexander Hamilton et John Jay" + ], + "noteType": "general" } ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Entretiens en \u00e9ducation" + "authorized_access_point": "Hommes d'\u00c9tat - \u00c9tats-Unis" }, { - "authorized_access_point": "Entretiens en psychologie" + "authorized_access_point": "\u00c9tats-Unis - 1775-1783 (R\u00e9volution)" }, { - "authorized_access_point": "Protocoles verbaux" - } - ], - "related": [ - { - "authorized_access_point": "Entretiens professionnels" + "authorized_access_point": "\u00c9tats-Unis - 1783-1789 (Conf\u00e9d\u00e9ration)" } ], "bnf_type": "sujet Rameau", - "closeMatch": [ - { - "source": "RVMLaval", - "authorized_access_point": "Entretiens d'explicitation" - } - ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/03388157X", + "value": "http://www.idref.fr/151385432", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12469337q", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16276915r", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16276915", "source": "BNF" } ], "classification": [ { - "name": "Psychologie, psychanalyse", + "name": "Groupes sociaux", "type": "bf:ClassificationDdc", - "classificationPortion": "150" + "classificationPortion": "305" }, { - "name": "Education et enseignement", + "name": "Science politique", "type": "bf:ClassificationDdc", - "classificationPortion": "370" + "classificationPortion": "320" }, { - "name": "Gestion et organisation de l'entreprise", + "name": "Histoire du reste du monde", "type": "bf:ClassificationDdc", - "classificationPortion": "650" + "classificationPortion": "950" } ], "variant_access_point": [ - "Entretien d'explicitation", - "Entretiens critiques", - "Explicitation, Entretiens d'" + "Fondateurs des \u00c9tats-Unis", + "Founding Fathers of the United States" ], - "authorized_access_point": "Entretiens d'explicitation" + "authorized_access_point": "P\u00e8res fondateurs des \u00c9tats-Unis" }, { - "md5": "6968472d18b040c08cca7a3138250a0d", - "pid": "034160523", + "md5": "4dc9f3b9fb7b2e050e5f0fb3e7b8fbaa", + "pid": "15212201X", "note": [ { "label": [ - "Encycl. universalis (art. : Sectes) - http://www.universalis-edu.com (2018-03-01)", - "Dict. de psychologie / R. Doron, F. Parot, 2003 (art. : Conscience)", - "Les \u00e9tats modifi\u00e9s de conscience / G. Lapassade, 1987", - "Les \u00e9tats \u00e9tranges de la conscience / J.-P. Valla, 1992", - "La conscience modifi\u00e9e / C. Le Scanff, 1995" + "LC online cat., 2017-06-09 : Embassy takeovers -- England -- London", + "Wikip\u00e9dia : Op\u00e9ration Nimrod - https://fr.wikipedia.org (2017-06-09)", + "Universalia 1981", + "The Longman companion to Britain since 1945 / C. Cook, J. Stevenson, 2000", + "Operation Nimrod : the Iranian Embassy Siege - http://www.eliteukforces.info - 2017-06-09 (2017-06-09)" ], "noteType": "dataSource" + }, + { + "label": [ + "30 avril 1980 : un commando de 6 Arabes iraniens du Khouzistan oppos\u00e9s \u00e0 la R\u00e9publique islamique prend en otage 26 membres du personnel de l'ambassade d'Iran \u00e0 Londres, et r\u00e9clament la lib\u00e9ration de 91 prisonniers en Iran, que refuse le pr\u00e9sident Bani Sadr ; un otage est ex\u00e9cut\u00e9 et 5 sont rel\u00e2ch\u00e9s. Le 5 mai les SAS donnent l'assaut (op\u00e9ration Nimrod) : 5 des 6 membres du commando sont abattus, un otage est tu\u00e9 et 19 sont lib\u00e9r\u00e9s" + ], + "noteType": "general" } ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Conscience" - } - ], - "related": [ - { - "authorized_access_point": "Chamanisme" - }, - { - "authorized_access_point": "Parapsychologie" + "authorized_access_point": "Otages - Grande-Bretagne" }, { - "authorized_access_point": "Rebirth (psychoth\u00e9rapie)" + "authorized_access_point": "Grande-Bretagne - 1979-...." }, { - "authorized_access_point": "Voyages dans l'au-del\u00e0" + "authorized_access_point": "Londres (GB) - Histoire" } ], "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Extase" - }, - { - "authorized_access_point": "Hypnose" - }, - { - "authorized_access_point": "Ivresse" - }, - { - "authorized_access_point": "Possession (anthropologie)" - }, - { - "authorized_access_point": "Psych\u00e9d\u00e9lisme" - }, - { - "authorized_access_point": "Transe" - } - ], - "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh89006368", - "source": "LCSH" - }, - "authorized_access_point": "Altered states of consciousness" - }, - { - "source": "RVMLaval", - "authorized_access_point": "\u00c9tats modifi\u00e9s de conscience" - } - ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/034160523", + "value": "http://www.idref.fr/15212201X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12494645k", + "value": "http://catalogue.bnf.fr/ark:/12148/cb165050300", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16505030", "source": "BNF" } ], "classification": [ { - "name": "Psychologie, psychanalyse", + "name": "Science politique", "type": "bf:ClassificationDdc", - "classificationPortion": "150" + "classificationPortion": "320" + }, + { + "name": "Histoire de l'Europe", + "type": "bf:ClassificationDdc", + "classificationPortion": "940" } ], "variant_access_point": [ - "Conscience, \u00c9tats modifi\u00e9s de", - "EMC (psychologie)", - "\u00c9tat modifi\u00e9 de conscience", - "\u00c9tats de conscience alt\u00e9r\u00e9s", - "\u00c9tats de conscience modifi\u00e9s", - "\u00c9tats \u00e9tranges de conscience", - "\u00c9tats non ordinaires de conscience", - "\u00c9tats seconds", - "Modification de la conscience" + "Ambassade d'Iran \u00e0 Londres, Prise d'otages de l' (1980)", + "Londres, Prise d'otages de (1980)", + "Nimrod, Op\u00e9ration (1980)", + "Op\u00e9ration Nimrod (1980)", + "Otages de l'ambassade d'Iran \u00e0 Londres (1980)", + "Prise d'otages de Londres (1980)", + "Si\u00e8ge de l'ambassade d'Iran \u00e0 Londres (1980)" ], - "authorized_access_point": "\u00c9tats modifi\u00e9s de conscience" + "authorized_access_point": "Prise d'otages de l'ambassade d'Iran \u00e0 Londres (1980)" }, { - "md5": "f8f60673bdd787e375c86edfb898cb18", - "pid": "034490906", + "md5": "e4dd038bee08a84de6449ef7216b413c", + "pid": "15909545X", "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Litt\u00e9rature flamande" + "authorized_access_point": "Art - [Localisations g\u00e9ographiques]" } ], "related": [ { - "authorized_access_point": "Po\u00e8tes flamands" - }, - { - "authorized_access_point": "Chansons flamandes" - }, - { - "authorized_access_point": "Prose flamande" - } - ], - "bnf_type": "genre/forme Rameau", - "narrower": [ - { - "authorized_access_point": "Po\u00e9sie politique flamande" - } - ], - "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85049077", - "source": "LCSH" - }, - "authorized_access_point": "Flemish poetry" - }, - { - "source": "RVMLaval", - "authorized_access_point": "Po\u00e9sie flamande" + "authorized_access_point": "Art kazakh" } ], + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/034490906", + "value": "http://www.idref.fr/15909545X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12524209b", + "value": "http://catalogue.bnf.fr/ark:/12148/cb165747246", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16574724", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Arts (sauf litt\u00e9rature)", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "700" } ], - "authorized_access_point": "Po\u00e9sie flamande" + "authorized_access_point": "Art - Kazakhstan" }, { - "md5": "dc0a30eadca3a8ca7f2e0a892fcd2ac2", - "pid": "034577769", + "md5": "90cf9ae3fa8bae175a3ca84acec6bdf8", + "pid": "167934813", "note": [ { "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures et genres litt\u00e9raires belges, flamands et wallons", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature belge, celle-ci servant de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires belges" + "Cloud computing : une rupture d\u00e9cisive pour l'informatique d'entreprise / G. Plouin, 2011", + "Mashups : architecture des applications Web tactiques d'entreprise / J.-M. Chauvet [in] Techniques de l'ing\u00e9nieur, 2012, H6025", + "Big data glossary : a guide to the new generation of data tools / P. Warden, 2011", + "Storing and managing big data : NoSQL, Hadoop and more / K. Roebuck, 2011" ], - "noteType": "general" + "noteType": "dataSource" } ], - "type": "bf:Temporal", - "related": [ + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Litt\u00e9rature belge - 1830-1900" - }, + "authorized_access_point": "Bases de donn\u00e9es" + } + ], + "related": [ { - "authorized_access_point": "Litt\u00e9rature flamande - 1830-1900" + "authorized_access_point": "Donn\u00e9es massives" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/034577769", + "value": "http://www.idref.fr/167934813", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb125319537", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16665965j", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16665965", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "621" } ], - "authorized_access_point": "1830-1900" + "authorized_access_point": "NoSQL" }, { - "md5": "4610a48c0891c3d53710a9aedeb21322", - "pid": "034680365", + "md5": "fab65aba87115a2584f6a99fef4e2827", + "pid": "168476010", "note": [ { "label": [ - "L'Empire des tsars et les Russes. T.3. La religion / A. Leroy-Beaulieu, 1889", - "Icons, portraits, or types? Photographic images of the Skoptsy in late Imperial Russia (1880-1917) / E. Emeliantseva [in] Jahrb\u00fccher f\u00fcr Geschichte Osteuropas, 2009, 57, 2 - https://www-jstor-org (2022-07-07)", - "La secte russe des castrats / N. Volkov, 1995 : Skopcy, Skopcestvo", - "Nouvelle encycl. nationale / M. Lach\u00e2tre, 1870 : Skoptzy", - "Encycl. of religion and ethics / J. Hastings, 1994 : Skoptsi", - "Oxford English dict. : Scoptsi - https://www-oed-com (2022-07-07)", - "Wikipedia : Scoptes - https://fr.wikipedia.org (2022-07-13)" + "Code civil (art.16 \u00e0 16-9) - http://www.legifrance-gouv.fr (2013-03-26)", + "Convention d'Ovi\u00e9do du 4 avril 1997 sur les droits de l'homme et la biom\u00e9decine / Conseil de l'Europe, 1998", + "D\u00e9claration universelle sur la bio\u00e9thique et les droits de l'homme / Unesco, 2005 - http://portal.unesco.org (2013-03-26)", + "Droits de l'homme, bio\u00e9thique et rapport au corps / Commission Nationale Consultative des droits de l'homme, 2007 - http://www.cncdh.fr (2013-03-26)" ], "noteType": "dataSource" } ], "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Sectes chr\u00e9tiennes" - } - ], "related": [ { - "authorized_access_point": "Castration humaine" - }, - { - "authorized_access_point": "Eunuques" + "authorized_access_point": "Bio\u00e9thique" }, { - "authorized_access_point": "Vieux-croyants" + "authorized_access_point": "Droits de l'homme" } ], "bnf_type": "sujet Rameau", - "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85123228", - "source": "LCSH" - }, - "authorized_access_point": "Skoptsi" - }, - { - "source": "RVMLaval", - "authorized_access_point": "Skoptsis" - } - ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/034680365", + "value": "http://www.idref.fr/168476010", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb125409625", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16672663h", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16672663", "source": "BNF" } ], "classification": [ { - "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", + "name": "Droit", "type": "bf:ClassificationDdc", - "classificationPortion": "200" + "classificationPortion": "340" + }, + { + "name": "M\u00e9decine", + "type": "bf:ClassificationDdc", + "classificationPortion": "610" } ], "variant_access_point": [ - "Scoptes", - "Secte des castrats", - "Skopcestvo", - "Skopcy", - "Skoptsi", - "Skoptsis", - "Skoptzi", - "Skoptzy" + "Bio\u00e9thique et droits de l'homme" ], - "authorized_access_point": "Skoptsy" + "authorized_access_point": "Droits de l'homme et bio\u00e9thique" }, { - "md5": "4b8dcf237c477d70493791b9363819b6", - "pid": "03483446X", + "md5": "feda2451907f2ab4db81dde20d4a4250", + "pid": "169910733", "note": [ { "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures chypriotes", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature chypriote, qui sert de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires chypriotes" + "Wikip\u00e9dia : \u00c9lection pr\u00e9sidentielle s\u00e9n\u00e9galaise de 2012 - http://fr.wikipedia.org (2013-06-06)", + "Les \u00e9lections pr\u00e9sidentielles au S\u00e9n\u00e9gal de mars 2012 / A. A. Sy, 2013" ], - "noteType": "general" - } - ], - "type": "bf:Temporal", - "related": [ + "noteType": "dataSource" + }, { - "authorized_access_point": "Litt\u00e9rature chypriote - 1571-...." + "label": [ + "26 f\u00e9vrier et 25 mars 2012 : Macky Sall (Alliance pour la R\u00e9publique) est \u00e9lu avec 65,8 % des voix face au pr\u00e9sident sortant Abdoulaye Wade (Parti d\u00e9mocratique s\u00e9n\u00e9galais)" + ], + "noteType": "general" } ], + "type": "bf:Topic", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/03483446X", + "value": "http://www.idref.fr/169910733", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12554505d", + "value": "http://catalogue.bnf.fr/ark:/12148/cb166886279", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16688627", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Science politique", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "320" + }, + { + "name": "Histoire du reste du monde", + "type": "bf:ClassificationDdc", + "classificationPortion": "950" } ], - "authorized_access_point": "1571-...." + "authorized_access_point": "Pr\u00e9sidents - S\u00e9n\u00e9gal - \u00c9lection (2012)" }, { - "md5": "b95926ad7853c8be5393913ee172f565", - "pid": "034853537", + "md5": "a308af870b685bceceb34f492115562d", + "pid": "17129226X", "note": [ { "label": [ - "S'emploie uniquement en subdivision chronologique \u00e0 certaines litt\u00e9ratures, par exemple les litt\u00e9ratures latino-am\u00e9ricaines, la litt\u00e9rature arm\u00e9nienne, etc", - "Cette subdivision est utilis\u00e9e dans des cha\u00eenes construites avec les litt\u00e9ratures, celles-ci servant de vedettes mod\u00e8les pour tous les genres litt\u00e9raires de m\u00eame langue ou de m\u00eame nationalit\u00e9, par ex. : Litt\u00e9rature arm\u00e9nienne -- Avant 1800. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec les genres litt\u00e9raires" + "Bullecourt / G. Keech, 1999", + "Les batailles de Bullecourt en 1917 / P. Duhamel, 2013", + "Dict. of battles and sieges / T. Jaques, 2007 (art. : Arras - 1917)", + "The Times hist. of the War, t. XV (p. 55-66)" + ], + "noteType": "dataSource" + }, + { + "label": [ + "11 avril et 3 mai 1917 : \u00e9chec de deux offensives australiennes contre la Ligne Hindenburg \u00e0 Bullecourt (Pas-de-Calais), dans le cadre de la bataille d'Arras" ], "noteType": "general" } ], - "type": "bf:Temporal", - "related": [ - { - "authorized_access_point": "Litt\u00e9rature argentine - Avant 1800" - }, - { - "authorized_access_point": "Litt\u00e9rature arm\u00e9nienne - Avant 1800" - }, - { - "authorized_access_point": "Litt\u00e9rature basque - Avant 1800" - }, + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Litt\u00e9rature bolivienne - Avant 1800" - }, + "authorized_access_point": "Bataille d'Arras (1917)" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ { - "authorized_access_point": "Litt\u00e9rature br\u00e9silienne - Avant 1800" + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2001007955", + "source": "LCSH" + } + ], + "authorized_access_point": "Bullecourt, Battle of, Bullecourt, France, 1917" }, { - "authorized_access_point": "Litt\u00e9rature chilienne - Avant 1800" - }, + "source": "RVMLaval", + "authorized_access_point": "Bataille de Bullecourt, Bullecourt, France, 1917" + } + ], + "identifiedBy": [ { - "authorized_access_point": "Litt\u00e9rature colombienne - Avant 1800" + "type": "uri", + "value": "http://www.idref.fr/17129226X", + "source": "IDREF" }, { - "authorized_access_point": "Litt\u00e9rature cubaine - Avant 1800" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb167037941", + "source": "BNF" }, { - "authorized_access_point": "Litt\u00e9rature \u00e9quatorienne - Avant 1800" - }, + "type": "bf:Nbn", + "value": "FRBNF16703794", + "source": "BNF" + } + ], + "classification": [ { - "authorized_access_point": "Litt\u00e9rature finnoise - Avant 1800" - }, + "name": "Histoire de la France", + "type": "bf:ClassificationDdc", + "classificationPortion": "944" + } + ], + "variant_access_point": [ + "Bataille de Bullecourt (1917)", + "Bullecourt, Batailles de (1917)" + ], + "authorized_access_point": "Batailles de Bullecourt (1917)" + }, + { + "md5": "9c5e18eafc1ca88ec019bc5732458a34", + "pid": "174718276", + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Litt\u00e9rature hispano-am\u00e9ricaine - Avant 1800" + "authorized_access_point": "Litt\u00e9rature suisse de langue fran\u00e7aise" }, { - "authorized_access_point": "Litt\u00e9rature hongroise - Avant 1800" + "authorized_access_point": "Roman francophone" }, { - "authorized_access_point": "Litt\u00e9rature latino am\u00e9ricaine - Avant 1800" - }, + "authorized_access_point": "Roman suisse" + } + ], + "bnf_type": "genre/forme Rameau", + "narrower": [ { - "authorized_access_point": "Litt\u00e9rature mexicaine - Avant 1800" + "authorized_access_point": "Roman biographique suisse de langue fran\u00e7aise" }, { - "authorized_access_point": "Litt\u00e9rature persane - Avant 1800" + "authorized_access_point": "Roman d'\u00e9ducation suisse de langue fran\u00e7aise" }, { - "authorized_access_point": "Litt\u00e9rature p\u00e9ruvienne - Avant 1800" + "authorized_access_point": "Roman fantastique suisse de langue fran\u00e7aise" }, { - "authorized_access_point": "Litt\u00e9rature roumaine - Avant 1800" + "authorized_access_point": "Roman historique suisse de langue fran\u00e7aise" }, { - "authorized_access_point": "Litt\u00e9rature slave - Avant 1800" + "authorized_access_point": "Roman humoristique suisse de langue fran\u00e7aise" }, { - "authorized_access_point": "Litt\u00e9rature slovaque - Avant 1800" - }, + "authorized_access_point": "Roman policier suisse de langue fran\u00e7aise" + } + ], + "closeMatch": [ { - "authorized_access_point": "Litt\u00e9rature slov\u00e8ne - Avant 1800" + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh96002305", + "source": "LCSH" + } + ], + "authorized_access_point": "Swiss fiction (French)" }, { - "authorized_access_point": "Litt\u00e9rature ukrainienne - Avant 1800" + "source": "RVMLaval", + "authorized_access_point": "Roman suisse (fran\u00e7ais)" } ], - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/034853537", + "value": "http://www.idref.fr/174718276", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12556227c", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16732628b", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16732628", "source": "BNF" } ], @@ -7867,127 +27611,106 @@ "classificationPortion": "800" } ], - "authorized_access_point": "Avant 1800" + "variant_access_point": [ + "Roman francophone suisse" + ], + "authorized_access_point": "Roman suisse de langue fran\u00e7aise" }, { - "md5": "ae15161166d70802ce226b68b137ffb0", - "pid": "03487156X", + "md5": "5b4fea04ccd23f969ef7f60fa6c07fa0", + "pid": "17523308X", "note": [ { "label": [ - "Japanese Literary History - http://www.jlit.net (2010-07-12)" + "Encycl. universalis (art. : Bosnie-Herz\u00e9govine) - http://www.universalis-edu.com (2013-12-18)", + "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1996 (art. : Bosnie-Herz\u00e9govine)", + "L'empire austro-hongrois, 1815-1918 / J. B\u00e9renger, 2011", + "The decline and fall of the Habsburg Empire, 1815-1918 / A. Shed, 1995 (p. 252-253) : Bosnian crisis", + "Hist. du continent europ\u00e9en, de 1850 \u00e0 la fin du XXe si\u00e8cle / J.-M. Gaillard, A. Rowley, 1998 (p. 277-278)", + "Hist. des Balkans, XIVe-XXe si\u00e8cles / G. Castellan, 1991 (p. 367-368) : 4e crise d'Orient", + "L'Europe de 1815 \u00e0 nos jours / J.-B. Duroselle, 1993 (p. 159) : crise de Bosnie-Herz\u00e9govine" ], "noteType": "dataSource" }, { "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures japonaises", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature japonaise, qui sert de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires japonais" + "5 octobre 1908 : l'annexion de la Bosnie-Herz\u00e9govine (sous administration austro-hongroise depuis 1878) par l'Autriche-Hongrie suscite une crise europ\u00e9enne, r\u00e9solue par une m\u00e9diation allemande (29 mars 1909) : l'Empire ottoman accepte l'annexion moyennant la restitution du sandjak de Novi Pazar" ], "noteType": "general" } ], - "type": "bf:Temporal", - "related": [ - { - "authorized_access_point": "Litt\u00e9rature japonaise - 1185-1600" - } - ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "type": "bf:Topic", + "broader": [ { - "type": "uri", - "value": "http://www.idref.fr/03487156X", - "source": "IDREF" + "authorized_access_point": "Politique et gouvernement - Europe - 1871-1918" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb125578398", - "source": "BNF" - } - ], - "classification": [ - { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" - } - ], - "authorized_access_point": "1185-1600" - }, - { - "md5": "300d0379607c6700441f87ad978c22e0", - "pid": "034933697", - "note": [ - { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures allemandes", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature allemande, qui sert de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires allemands" - ], - "noteType": "general" - } - ], - "type": "bf:Temporal", - "related": [ + "authorized_access_point": "Orient, Question d' (Balkans)" + }, { - "authorized_access_point": "Litt\u00e9rature allemande - 750-1050 (vieux haut-allemand)" + "authorized_access_point": "Bosnie-Herz\u00e9govine - 1878-1918" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/034933697", + "value": "http://www.idref.fr/17523308X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb125633859", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16731093w", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16731093", "source": "BNF" } ], "classification": [ { - "name": "Langues et linguistique", - "type": "bf:ClassificationDdc", - "classificationPortion": "400" - }, - { - "name": "Histoire et critique litt\u00e9raires", + "name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "940" } ], - "authorized_access_point": "750-1050(vieux haut-allemand)" + "variant_access_point": [ + "Bosnie-Herz\u00e9govine, Crise de (1908-1909)", + "Crise de Bosnie-Herz\u00e9govine (1908-1909)" + ], + "authorized_access_point": "Crise bosniaque (1908-1909)" }, { - "md5": "80ad0fea693e1ddc8ec846ab5e29cfca", - "pid": "034934774", - "note": [ + "md5": "c312e98beaf0dc595b28b93b69e79359", + "pid": "178480231", + "type": "bf:Topic", + "broader": [ { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures am\u00e9ricaines", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature am\u00e9ricaine, celle-ci servant de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires am\u00e9ricains" - ], - "noteType": "general" + "authorized_access_point": "Litt\u00e9rature portugaise" } ], - "type": "bf:Temporal", "related": [ { - "authorized_access_point": "Litt\u00e9rature am\u00e9ricaine - 1783-1865" + "authorized_access_point": "Autobiographie portugaise" } ], - "bnf_type": "sujet Rameau", + "bnf_type": "genre/forme Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/034934774", + "value": "http://www.idref.fr/178480231", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb125634727", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16764890d", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16764890", "source": "BNF" } ], @@ -7999,1160 +27722,1652 @@ } ], "variant_access_point": [ - "1783-1850" + "M\u00e9moires portugais" ], - "authorized_access_point": "1783-1865" + "authorized_access_point": "M\u00e9moires (genre litt\u00e9raire) portugais" }, { - "md5": "03ff6369b7b32d2d23f9c1938077ec43", - "pid": "034934936", - "note": [ - { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures anglaises", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature anglaise, qui sert de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires anglais" - ], - "noteType": "general" - } - ], - "type": "bf:Temporal", - "related": [ - { - "authorized_access_point": "Anglais (langue) - +* 0450......- 1100......+:450-1100: (vieil anglais)" - }, - { - "authorized_access_point": "Litt\u00e9rature anglaise - 450-1100 (vieil anglais)" - } - ], + "md5": "f104c8692db95561fda68eea5a58d3e8", + "pid": "17939360X", + "type": "bf:Topic", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/034934936", + "value": "http://www.idref.fr/17939360X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12563486x", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16776255x", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16776255", "source": "BNF" } ], "classification": [ { - "name": "Langues et linguistique", + "name": "Sciences sociales", "type": "bf:ClassificationDdc", - "classificationPortion": "400" + "classificationPortion": "300" }, { - "name": "Histoire et critique litt\u00e9raires", + "name": "\u00c9ducation", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "370" } ], - "authorized_access_point": "450-1100(vieil anglais)" + "authorized_access_point": "\u00c9changes culturels danois" }, { - "md5": "5fd5f41bdeaf6c42613d2e35b7172e8a", - "pid": "034935061", + "md5": "0d5c42e39a47211a9a3e9568823ff66d", + "pid": "180213911", "note": [ { "label": [ - "La subdivision chronologique Avant 622 s'emploie uniquement aux litt\u00e9ratures et genres litt\u00e9raires arabes", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la litt\u00e9rature, celle-ci servant de vedette mod\u00e8le pour les genres litt\u00e9raires de m\u00eame langue. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec les genres litt\u00e9raires" + "Wikidata - https://www.wikidata.org/wiki/Q967853 (2024-06-27)", + "France Terme - http://www.culture.fr (2014-08-04)", + "Beno\u00eet Hamon introduit le cours en ligne massif et ouvert (CLOM) \"Enseigner et former avec le num\u00e9rique\", destin\u00e9 \u00e0 la communaut\u00e9 enseignante - http://www.education.gouv.fr (2014-08-04)", + "Un MOOC pour enseigner et former par le num\u00e9rique - http://www.education.gouv.fr (2014-08-04)" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Cours en ligne ouvert \u00e0 tous, souvent gratuit, qui peut accueillir un tr\u00e8s grand nombre de participants simultan\u00e9ment" ], "noteType": "general" } ], - "type": "bf:Temporal", - "related": [ + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Litt\u00e9rature arabe - Avant 622" + "authorized_access_point": "Formation en ligne" } ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "related": [ { - "type": "uri", - "value": "http://www.idref.fr/034935061", - "source": "IDREF" + "authorized_access_point": "Internet en \u00e9ducation" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb125634967", - "source": "BNF" - } - ], - "classification": [ - { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "authorized_access_point": "Universit\u00e9s virtuelles" } ], - "authorized_access_point": "Avant 622" - }, - { - "md5": "40fcd9266ffe6af14d94a73f5ff18ae9", - "pid": "034935134", - "note": [ + "bnf_type": "sujet Rameau", + "closeMatch": [ { - "label": [ - "La subdivision chronologique 622-750 s'emploie uniquement aux litt\u00e9ratures et genres litt\u00e9raires arabes", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la litt\u00e9rature, celle-ci servant de vedette mod\u00e8le pour les genres litt\u00e9raires de m\u00eame langue. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec les genres litt\u00e9raires" + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2013002540", + "source": "LCSH" + } ], - "noteType": "general" - } - ], - "type": "bf:Temporal", - "related": [ + "authorized_access_point": "MOOCs (Web-based instruction)" + }, { - "authorized_access_point": "Litt\u00e9rature arabe - 622-750" + "source": "RVMLaval", + "authorized_access_point": "Cours en ligne ouverts \u00e0 tous" } ], - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/034935134", + "value": "http://www.idref.fr/180213911", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb125635010", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16901246n", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16901246", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Economie", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "330" + }, + { + "name": "Education et enseignement", + "type": "bf:ClassificationDdc", + "classificationPortion": "370" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "621" } ], - "authorized_access_point": "622-750" + "variant_access_point": [ + "CLOM", + "COOC", + "Corporate open online courses", + "Cours en ligne", + "Cours en ligne ouverts et massifs", + "Masse open online courses", + "Massively open online courses", + "MOOC", + "MOOC d'entreprise" + ], + "authorized_access_point": "Cours en ligne ouverts \u00e0 tous" }, { - "md5": "c972c0188c5db3201ba3534db68394e5", - "pid": "034935177", + "md5": "d8822c4636ad758cd2c7fe30c3d1c5ad", + "pid": "180214845", "note": [ { "label": [ - "La subdivision chronologique 750-1258 s'emploie uniquement aux litt\u00e9ratures et genres litt\u00e9raires arabes", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la litt\u00e9rature, celle-ci servant de vedette mod\u00e8le pour les genres litt\u00e9raires de m\u00eame langue. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec les genres litt\u00e9raires" + "The complete costume dict. / E. J. Lewandowski, 2011", + "Encycl. of national dress / J. Condra, 2013" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Manteau traditionnel des bergers hongrois" ], "noteType": "general" } ], - "type": "bf:Temporal", - "related": [ + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Litt\u00e9rature arabe - 750-1258" + "authorized_access_point": "Manteaux" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/034935177", + "value": "http://www.idref.fr/180214845", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12563505c", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16902679z", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16902679", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Costume et apparence personnelle", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "391" + }, + { + "name": "\u00c9conomie domestique", + "type": "bf:ClassificationDdc", + "classificationPortion": "640" } ], - "authorized_access_point": "750-1258" + "variant_access_point": [ + "Cifrasz\u00fcr" + ], + "authorized_access_point": "Sz\u00fcr" }, { - "md5": "eac7be14a25c2f07cdd9a2b486c30312", - "pid": "034935207", + "md5": "c4cb418473cb8544dd82c857ce40350b", + "pid": "180214926", "note": [ { "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures arabes" + "Wikip\u00e9dia - http://fr.wikipedia.org (2014-08-07)", + "L'\u00c9cosse et la tentation de l'ind\u00e9pendance : le r\u00e9f\u00e9rendum d'autod\u00e9termination de 2014 / E. Camp-Pietrain, 2014", + "En \u00c9cosse, le oui \u00e0 l'ind\u00e9pendance progresse / \u00c9. Albert [in] Le Monde, 2014-04-12 - http://www.lemonde.fr (2014-08-07)" ], - "noteType": "general" - } - ], - "type": "bf:Temporal", - "related": [ + "noteType": "dataSource" + }, { - "authorized_access_point": "Litt\u00e9rature arabe - 1801-...." + "label": [ + "R\u00e9f\u00e9rendum sur l'ind\u00e9pendance pr\u00e9vu le 8 septembre 2014" + ], + "noteType": "general" } ], + "type": "bf:Topic", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/034935207", + "value": "http://www.idref.fr/180214926", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb125635072", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16902747m", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16902747", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Science politique", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "320" + }, + { + "name": "Histoire de l'Europe", + "type": "bf:ClassificationDdc", + "classificationPortion": "940" } ], - "authorized_access_point": "1801-...." + "variant_access_point": [ + "R\u00e9f\u00e9rendum sur l'ind\u00e9pendance de l'\u00c9cosse (2014)" + ], + "authorized_access_point": "R\u00e9f\u00e9rendum - Grande-Bretagne - \u00c9cosse (GB) - 2014" }, { - "md5": "224407fc8664efad7f87ce3f72205909", - "pid": "034935274", + "md5": "09b8548f643963087757203cf61096dc", + "pid": "18028505X", "note": [ { "label": [ - "La subdivision chronologique Avant 221 av. J.-C. s'emploie uniquement aux litt\u00e9ratures et genres litt\u00e9raires chinois", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la litt\u00e9rature, celle-ci servant de vedette mod\u00e8le pour les genres litt\u00e9raires de m\u00eame nationalit\u00e9. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec les genres litt\u00e9raires" + "S'emploie uniquement en subdivision aux guerres, par ex. : Guerre de Hollande (1672-1678) -- Prisonniers et prisons des N\u00e9erlandais" ], "noteType": "general" } ], - "type": "bf:Temporal", - "related": [ - { - "authorized_access_point": "Litt\u00e9rature chinoise - Avant 221 av. J.-C." - } - ], + "type": "bf:Topic", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/034935274", + "value": "http://www.idref.fr/18028505X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12563512n", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16904476v", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16904476", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Art et science militaires", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "355" + }, + { + "name": "Histoire", + "type": "bf:ClassificationDdc", + "classificationPortion": "900" } ], - "authorized_access_point": "Avant 221 av. J.-C." + "authorized_access_point": "Prisonniers et prisons des N\u00e9erlandais" }, { - "md5": "7d77391fb983b6e0a3537d483205eec2", - "pid": "034935290", + "md5": "b55466ba1f1522e8a24845780a974069", + "pid": "181492628", "note": [ { "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures et genres litt\u00e9raires chinois", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la litt\u00e9rature chinoise, celle-ci servant de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires chinois" + "Pr\u00fcfungstraining Deutsch. Goethe-Zertifikat, C1. Zentrale Mittelstufenpr\u00fcfung (ZMP) / G. Baier, R. Dittrich, 2008" ], - "noteType": "general" + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Allemand (langue) - Examens" } ], - "type": "bf:Temporal", "related": [ { - "authorized_access_point": "Litt\u00e9rature chinoise - 221 av. J.-C.-220 (dynasties des Qin et des Han)" + "authorized_access_point": "Goethe-Zertifikat A1" + }, + { + "authorized_access_point": "Goethe-Zertifikat B1" + }, + { + "authorized_access_point": "Goethe-Zertifikat C2" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/034935290", + "value": "http://www.idref.fr/181492628", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb125635130", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16932316v", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16932316", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Education et enseignement", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "370" }, { - "name": "Pr\u00e9histoire et histoire ancienne", + "name": "Langues et linguistique", "type": "bf:ClassificationDdc", - "classificationPortion": "930" + "classificationPortion": "400" } ], - "authorized_access_point": "221 av. J.-C.-220(Dynasties des Qin et des Han)" + "authorized_access_point": "Goethe-Zertifikat C1" }, { - "md5": "af768121369c422958aabbfd2b290806", - "pid": "034935304", - "note": [ - { - "label": [ - "Encycl. universalis (art. : Chinoise (Civilisation) - La litt\u00e9rature) : Empire des Tang (618-907) - http://www.universalis-edu.com (2014-07-25)" - ], - "noteType": "dataSource" - }, + "md5": "b8213d2912e6ca8bed70df7b197bc366", + "pid": "181882604", + "type": "bf:Topic", + "broader": [ { - "label": [ - "S'emploie uniquement en subdivision chronologique [sans subd. g\u00e9ogr.] aux litt\u00e9ratures chinoises, par ex. : Po\u00e9sie chinoise -- 618-907 (Dynastie des T\u2032ang)", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature chinoise, qui sert de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires chinois" - ], - "noteType": "general" + "authorized_access_point": "Aide \u00e9conomique des pays BRICS" } ], - "type": "bf:Temporal", - "related": [ + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh99002742", + "source": "LCSH" + } + ], + "authorized_access_point": "Economic assistance, South African" + }, { - "authorized_access_point": "Litt\u00e9rature chinoise - 618-907 (Dynastie des T\u2032ang)" + "source": "RVMLaval", + "authorized_access_point": "Aide \u00e9conomique sud-africaine" } ], - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/034935304", + "value": "http://www.idref.fr/181882604", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12563514b", + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb169205548", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16920554", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "\u00c9conomie politique", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "330" } ], - "authorized_access_point": "618-907(Dynastie des T\u2032ang)" + "authorized_access_point": "Aide \u00e9conomique sud-africaine" }, { - "md5": "8db12d54f85d7b12a7956bd23cb17692", - "pid": "034935827", + "md5": "f9b9d60f4560e81a56e813238fbb20fb", + "pid": "182446174", "note": [ { "label": [ - "La subdivision chronologique 1368-1644 (Dynastie des Ming) s'emploie uniquement aux litt\u00e9ratures et genres litt\u00e9raires chinois", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la litt\u00e9rature, celle-ci servant de vedette mod\u00e8le pour les genres litt\u00e9raires de m\u00eame nationalit\u00e9. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec les genres litt\u00e9raires" + "Wikip\u00e9dia : Freedom Summer - http://fr.wikipedia.org (2014-12-23)", + "Freedom Summer : luttes pour les droits civiques, Mississippi 1964 / D. McAdam, 2012", + "Student activism and civil rights in Mississippi : protest politics and the struggle for racial justice, 1960-1965 / J. P. Marshall, 2013" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Campagne men\u00e9e au cours de l'\u00e9t\u00e9 1964 dans l'\u00c9tat du Mississippi par le Council of Federated Organizations (COFO) pour faire inscrire le maximum de Noirs sur les listes \u00e9lectorales" ], "noteType": "general" } ], - "type": "bf:Temporal", - "related": [ + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Litt\u00e9rature chinoise - 1368-1644 (Dynastie des Ming)" + "authorized_access_point": "Politique et gouvernement - \u00c9tats-Unis - 1963-1969" + }, + { + "authorized_access_point": "Noirs am\u00e9ricains - 1964-...." } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/034935827", + "value": "http://www.idref.fr/182446174", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12563558z", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16934377j", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16934377", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Science politique", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "320" + }, + { + "name": "Histoire du reste du monde", + "type": "bf:ClassificationDdc", + "classificationPortion": "950" } ], - "authorized_access_point": "1368-1644(Dynastie des Ming)" + "variant_access_point": [ + "Freedom Summer (Mississippi ; 1964)", + "Mississippi Summer Freedom Project (1964)", + "Summer Freedom Project (Mississippi ; 1964)" + ], + "authorized_access_point": "Mississippi Freedom Project (1964)" }, { - "md5": "56fac10d6ef1399fc2c3bf98b30e5c3a", - "pid": "034935835", - "note": [ + "md5": "a7d725634dfea4769b53f183707fc6c3", + "pid": "183790936", + "type": "bf:Topic", + "broader": [ { - "label": [ - "La subdivision chronologique 1644-1912 (Dynastie Mandchoue) s'emploie uniquement aux litt\u00e9ratures et genres litt\u00e9raires chinois", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la litt\u00e9rature, celle-ci servant de vedette mod\u00e8le pour les genres litt\u00e9raires de m\u00eame nationalit\u00e9. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec les genres litt\u00e9raires" - ], - "noteType": "general" + "authorized_access_point": "M\u00e9tis - [Localisations g\u00e9ographiques]" + }, + { + "authorized_access_point": "Ethnologie - \u00c9tats-Unis" } ], - "type": "bf:Temporal", - "related": [ + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85083454", + "source": "LCSH" + } + ], + "authorized_access_point": "Melungeons" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh94000806", + "source": "LCSH" + } + ], + "authorized_access_point": "Racially mixed people--United States" + }, { - "authorized_access_point": "Litt\u00e9rature chinoise - 1644-1912 (Dynastie mandchoue)" + "source": "RVMLaval", + "authorized_access_point": "M\u00e9tis -- \u00c9tats-Unis" } ], - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/034935835", + "value": "http://www.idref.fr/183790936", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb125635599", + "value": "http://catalogue.bnf.fr/ark:/12148/cb169439535", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16943953", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Ethnologie", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "390" } ], - "authorized_access_point": "1644-1912(Dynastie Mandchoue)" + "variant_access_point": [ + "Am\u00e9ricains m\u00e9tis", + "Malungeons", + "Melungeons", + "M\u00e9tis am\u00e9ricains" + ], + "authorized_access_point": "M\u00e9tis - \u00c9tats-Unis" }, { - "md5": "2b5215066abda72b6791aeeb66dc7194", - "pid": "034935908", + "md5": "5d33c42bf690b23814192be41c47da69", + "pid": "183791428", "note": [ { "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures cor\u00e9ennes", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature cor\u00e9enne, celle-ci servant de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires cor\u00e9ens" + "Trait\u00e9 sur le fonctionnement de l'UE (art. 26)", + "La libre circulation des ressortissants de l'UE - http://ec.europa.eu (2015-02-12)", + "La dynamique du principe de proportionnalit\u00e9 : essai dans le contexte des libert\u00e9s de circulation du droit de l'Union europ\u00e9enne / A. Marzal-Yetano" ], - "noteType": "general" + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "March\u00e9 int\u00e9rieur - Droit europ\u00e9en" } ], - "type": "bf:Temporal", "related": [ { - "authorized_access_point": "Litt\u00e9rature cor\u00e9enne - 1600-1800" + "authorized_access_point": "Libre circulation des personnes" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/034935908", + "value": "http://www.idref.fr/183791428", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12563564w", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16945349r", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16945349", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Droit", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "340" } ], - "variant_access_point": [ - "1598-1800" - ], - "authorized_access_point": "1600-1800" + "authorized_access_point": "Libre circulation des personnes - Droit europ\u00e9en" }, { - "md5": "36d17808b1df75a327dcabf7903a1cfd", - "pid": "034936890", + "md5": "d0aabb8c53fced44ef8b576ca8f323b8", + "pid": "184625807", "note": [ { "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures grecques modernes", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature grecque moderne, celle-ci servant de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires grecs modernes" + "Wikidata : Euroma\u00efdan - https://www.wikidata.org/wiki/Q15224558 (2023-08-31)", + "Wikip\u00e9dia : Euroma\u00efdan - http://fr.wikipedia.org (2015-03-23)", + "Encycl. universalis (art. : Kiev) : Ma\u00efdan - http://www.universalis.fr (2015-03-23)", + "Les dessous de la R\u00e9volution ukrainienne / O. Ostriichouk [in] Le D\u00e9bat, 2014, 180 (pp. 3-16) - http://www.cairn.info (2015-03-23)", + "L'insurrection \u00e0 Kiev : lieux et acteurs / M. Sagnol [in] Les Temps modernes, 2014, 678 (pp. 148-169) - http://www.cairn.info (2015-03-23)", + "Journal de Ma\u00efdan / A. Kourkov, 2014" + ], + "noteType": "dataSource" + }, + { + "label": [ + "21 novembre 2013 : la d\u00e9cision du gouvernement ukrainien de ne pas signer un accord d'association avec l'Union europ\u00e9enne suscite un mouvement d'opposition connu sous le nom d'Euroma\u00efdan ou Ma\u00efdan, du nom de la Place de l'Ind\u00e9pendance (Maidan Nezalejnosti) \u00e0 Kiev, lieu principal des rassemblements ; 22 f\u00e9vrier 2014 : destitution par le Parlement ukrainien du pr\u00e9sident Viktor Ianoukovitch, en fuite depuis la veille" ], "noteType": "general" } ], - "type": "bf:Temporal", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ukraine - 2013-...." + } + ], "related": [ { - "authorized_access_point": "Litt\u00e9rature grecque moderne - 1453-1820" + "authorized_access_point": "Guerre du Donbass (Ukraine ; 2014-....)" + }, + { + "authorized_access_point": "Guerre russo-ukrainienne (2022-....)" } ], "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Ukraine--Histoire--2013-2014 (Euroma\u00efdan)" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2014001396", + "source": "LCSH" + } + ], + "authorized_access_point": "Ukraine -- History -- Euromaidan Protests, 2013-2014" + } + ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/034936890", + "value": "http://www.idref.fr/184625807", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb125636498", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16954349q", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16954349", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Sciences politiques", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "320" + }, + { + "name": "Histoire m\u00e9di\u00e9vale, moderne et contemporaine (sauf la France)", + "type": "bf:ClassificationDdc", + "classificationPortion": "940" } ], "variant_access_point": [ - "1453-1820", - "1453-1800" + "\u0404\u0432\u0440\u043e\u043c\u0430\u0439\u0434\u0430\u043d", + "\u041c\u0430\u0439\u0434\u0430\u043d \u041d\u0435\u0437\u0430\u043b\u0435\u0436\u043d\u043e\u0441\u0442\u0456", + "Ma\u00efdan (Ukraine ; 2013-2014)", + "R\u00e9volution d'Euroma\u00efdan (Ukraine ; 2013-2014)", + "R\u00e9volution de f\u00e9vrier 2014 (Ukraine)", + "R\u00e9volution de Ma\u00efdan (Ukraine ; 2013-2014)" ], - "authorized_access_point": "1453-1820" + "authorized_access_point": "Euroma\u00efdan (Ukraine ; 2013-2014)" }, { - "md5": "c04b29a794e5e3ac8ac498c1e97ac7af", - "pid": "034937072", + "md5": "9ade28729ef9b6b5ab912b63c65b3b8f", + "pid": "185018440", "note": [ { "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures cor\u00e9ennes et japonaises", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec les vedettes Litt\u00e9rature cor\u00e9enne et Litt\u00e9rature japonaise, celles-ci servant de mod\u00e8les. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires cor\u00e9ens et japonais" + "AngularJS - https://www.angularjs.org (2015-03-30)", + "AngularJS / P. Tarasiewicz, R. B\u00f6hm, 2014", + "Learning AngularJS : a guide to AngularJS development / K. Williamson, 2015", + "AngularJS : d\u00e9veloppez aujourd'hui les applications web de demain / S. Olliver, P.-A. Gury, 2015" ], - "noteType": "general" + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Langages de programmation" } ], - "type": "bf:Temporal", "related": [ { - "authorized_access_point": "Litt\u00e9rature cor\u00e9enne - Avant 1600" + "authorized_access_point": "Applications Web" }, { - "authorized_access_point": "Litt\u00e9rature japonaise - Avant 1600" + "authorized_access_point": "HTML (langage de balisage)" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/034937072", + "value": "http://www.idref.fr/185018440", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb125636645", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16956089m", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16956089", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Physique appliqu\u00e9e", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "621" } ], - "authorized_access_point": "Avant 1600" + "authorized_access_point": "AngularJS (langage de programmation)" }, { - "md5": "a04ac83e897683f6112d0eaf02c9e259", - "pid": "034937099", - "note": [ - { - "label": [ - "La subdivision chronologique Avant 794 s'emploie uniquement aux litt\u00e9ratures et genres litt\u00e9raires japonais", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la litt\u00e9rature, celle-ci servant de vedette mod\u00e8le pour les genres litt\u00e9raires de m\u00eame nationalit\u00e9. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec les genres litt\u00e9raires" - ], - "noteType": "general" - } - ], - "type": "bf:Temporal", - "related": [ + "md5": "9f8279872edf6274276ca347415a8170", + "pid": "187082324", + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Litt\u00e9rature japonaise - Avant 794" + "authorized_access_point": "Musique par ordinateur" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/034937099", + "value": "http://www.idref.fr/187082324", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12563666v", + "value": "http://catalogue.bnf.fr/ark:/12148/cb169750099", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16975009", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "621" + }, + { + "name": "Musique", + "type": "bf:ClassificationDdc", + "classificationPortion": "780" } ], - "authorized_access_point": "Avant 794" + "authorized_access_point": "\u00c9diteurs de partitions (logiciels)" }, { - "md5": "2c8f977eb1bd4b951c4bc2b03d4e14e5", - "pid": "034937129", + "md5": "7c5b1c7d2ba5048ccac44d8a75683538", + "pid": "190795786", "note": [ { "label": [ - "La subdivision chronologique 1868-.... s'emploie uniquement aux litt\u00e9ratures et genres litt\u00e9raires japonais", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la litt\u00e9rature, celle-ci servant de vedette mod\u00e8le pour les genres litt\u00e9raires de m\u00eame nationalit\u00e9. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec les genres litt\u00e9raires" + "Lazarus - http://www.lazarus-ide.org (2016-01-12)", + "Getting started with Lazarus and Free Pascal : a beginners and intermediate guide to Free Pascal using Lazarus Ide / M. Abiola-Ellison, 2015" ], - "noteType": "general" + "noteType": "dataSource" } ], - "type": "bf:Temporal", - "related": [ + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Litt\u00e9rature japonaise - 1868-...." + "authorized_access_point": "D\u00e9veloppement rapide d'applications" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/034937129", + "value": "http://www.idref.fr/190795786", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12563668j", + "value": "http://catalogue.bnf.fr/ark:/12148/cb17018624x", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17018624", "source": "BNF" } ], - "relation_pid": { - "type": "redirect_from", - "value": "086230441" - }, "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Physique appliqu\u00e9e", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "621" } ], - "authorized_access_point": "1868-...." + "authorized_access_point": "Lazarus (environnement de d\u00e9veloppement d'applications)" }, { - "md5": "b2b4d1763c043c6bb427ed13775ad035", - "pid": "035021128", + "md5": "362a8ceff5927e8df0b0e40ef6490cc5", + "pid": "190994320", "note": [ { "label": [ - "La subdivision chronologique Avant 1762 s'emploie uniquement aux litt\u00e9ratures et genres litt\u00e9raires bulgares", - "Cette subdivision est utilis\u00e9e dans des cha\u00eenes construites avec la litt\u00e9rature bulgare, celle-ci servant de vedette mod\u00e8le pour les genres litt\u00e9raires bulgares" + "Th\u00e9o, 2009", + "Dict. encyclop\u00e9dique du christianisme ancien / A. Di Berardino, 1990 (art. : Acace de Constantinople)", + "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1996 (art. : Acace de Constantinople) : schisme d'Acace" ], - "noteType": "general" + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "\u00c9glise - 30-600 (\u00c9glise primitive)" + }, + { + "authorized_access_point": "Schisme d'Orient" } ], - "type": "bf:Temporal", "related": [ { - "authorized_access_point": "Litt\u00e9rature bulgare - Avant 1762" + "authorized_access_point": "Monophysisme" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/035021128", + "value": "http://www.idref.fr/190994320", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12570883g", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16928417q", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16928417", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Religion", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "200" + }, + { + "name": "Histoire", + "type": "bf:ClassificationDdc", + "classificationPortion": "900" } ], - "authorized_access_point": "Avant 1762" + "variant_access_point": [ + "Acace, Schisme d'", + "Schisme d'Acace" + ], + "authorized_access_point": "Schisme acacien (484-519)" }, { - "md5": "dcbb414874538f693fb9e6fac5660683", - "pid": "035021179", + "md5": "ad40900a12f6ac64d498fd54ea290f74", + "pid": "193304104", "note": [ { "label": [ - "S'emploie uniquement en subdivision chronologique [sans subd. g\u00e9ogr.] aux litt\u00e9ratures bulgares", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature bulgares, qui sert de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires bulgares" + "Wikip\u00e9dia : r\u00e9f\u00e9rendum sur l'appartenance du Royaume-Uni \u00e0 l'Union europ\u00e9enne - http://fr.wikipedia.org (2017-04-27)", + "Brexit : r\u00e9sultat des sondages, d\u00e9finition, date du r\u00e9f\u00e9rendum,... 5 cl\u00e9s pour comprendre / B. Deshayes, 2016 - http://www.linternaute.com/actualite/politique/1279823-brexit-definition-date-du-referendum-resultat-consequences (2016-05-20)", + "\"Brexit\" : le jour o\u00f9 le Royaume-Uni est sorti de l'Europe [in] Le Monde, 2016-06-24 - http://www.lemonde.fr (2017-04-27)" + ], + "noteType": "dataSource" + }, + { + "label": [ + "23 juin 2016 : 51,89 % des \u00e9lecteurs britanniques se prononcent pour la sortie du Royaume-Uni de l'Union europ\u00e9enne" ], "noteType": "general" } ], - "type": "bf:Temporal", - "related": [ + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Litt\u00e9rature bulgare - 1762-1878" + "authorized_access_point": "Brexit" } ], "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Grande-Bretagne -- Histoire -- 2016 (R\u00e9f\u00e9rendum sur la sortie de l'Union europ\u00e9enne)" + } + ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/035021179", + "value": "http://www.idref.fr/193304104", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12570887v", + "value": "http://catalogue.bnf.fr/ark:/12148/cb170444330", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17044433", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Science politique", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "320" + }, + { + "name": "Histoire de l'Europe", + "type": "bf:ClassificationDdc", + "classificationPortion": "940" } ], "variant_access_point": [ - "1762-1880" + "Brexit, R\u00e9f\u00e9rendum sur le (2016)", + "R\u00e9f\u00e9rendum sur l'appartenance du Royaume-Uni \u00e0 l'Union europ\u00e9enne (2016)", + "R\u00e9f\u00e9rendum sur la sortie de la Grande-Bretagne de l'Union europ\u00e9enne (2016)", + "R\u00e9f\u00e9rendum sur le Brexit (2016)", + "R\u00e9f\u00e9rendum sur le maintien de la Grande-Bretagne dans l'Union europ\u00e9enne (2016)" ], - "authorized_access_point": "1762-1878" + "authorized_access_point": "R\u00e9f\u00e9rendum - Grande-Bretagne - 2016" }, { - "md5": "7257b226b44548074ee1d5ea2e1ea46e", - "pid": "035077948", + "md5": "6ed3a8d1fde65ffd650e63ed0dcd453f", + "pid": "193617668", "note": [ { "label": [ - "La subdivision chronologique 1912-1949 s'emploie uniquement aux litt\u00e9ratures et genres litt\u00e9raires chinois", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la litt\u00e9rature, celle-ci servant de vedette mod\u00e8le pour les genres litt\u00e9raires de m\u00eame nationalit\u00e9. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec les genres litt\u00e9raires" + "Bases de donn\u00e9es Marques - https://bases-marques.inpi.fr (2016-05-25)", + "La Worcester sauce / M. Dargent, 2015" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Worcestershire Sauce est une appellation commerciale" ], "noteType": "general" } ], - "type": "bf:Temporal", - "related": [ + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Litt\u00e9rature chinoise - 1912-1949" + "authorized_access_point": "Sauces" } ], "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Sauce Worcestershire" + }, + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85148091", + "source": "LCSH" + } + ], + "authorized_access_point": "Worcestershire sauce" + } + ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/035077948", + "value": "http://www.idref.fr/193617668", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb131655179", + "value": "http://catalogue.bnf.fr/ark:/12148/cb170482620", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17048262", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Economie domestique, h\u00f4tellerie", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "640" } ], - "authorized_access_point": "1912-1949" + "variant_access_point": [ + "Sauce Worcester", + "Sauce Worcestershire - Recettes", + "Worcestershire, Sauce" + ], + "authorized_access_point": "Sauce Worcestershire" }, { - "md5": "a902aaf1610588b731473316c695c42c", - "pid": "035077964", + "md5": "e39333079ad40734ed26c12f0c3dd7ce", + "pid": "196951763", "note": [ { "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures chinoises", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature chinoise, celle-ci servant de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires chinois" + "Wikipedia : arbitrismo - https://es.wikipedia.org (2016-11-24)", + "Les soci\u00e9t\u00e9s au XVIIe si\u00e8cle : Angleterre, Espagne, France / A. Antoine, C. Michon, 2006 (p. 358-359)", + "L'arbitrisme, un concept d'historien ? / A. Dubet [in] Les Cahiers du Centre de Recherches Historiques, 2000, 24 - https://ccrh.revues.org/2062 (2016-11-24)", + "La pens\u00e9e \u00e9conomique, Les auteurs : La Renaissance en Europe / J.-P. Potier, 2005 - http://ses.ens-lyon.fr/articles/les-auteurs-25452 (2016-11-24)" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Penseurs \u00e9conomiques espagnols (fin 16e-17e si\u00e8cle) qui adressaient aux autorit\u00e9s des m\u00e9moires pour que par leurs d\u00e9cisions (arbitrio) elles r\u00e9solvent les probl\u00e8mes \u00e9conomiques" ], "noteType": "general" } ], - "type": "bf:Temporal", - "related": [ + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Vie intellectuelle - Espagne - 1516-1700" + }, + { + "authorized_access_point": "\u00c9conomie politique - Jusqu'\u00e0 1800" + }, { - "authorized_access_point": "Litt\u00e9rature chinoise - 1949-1976" + "authorized_access_point": "\u00c9conomistes" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/035077964", + "value": "http://www.idref.fr/196951763", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb131655190", + "value": "http://catalogue.bnf.fr/ark:/12148/cb170883801", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17088380", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Groupes sociaux", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "305" + }, + { + "name": "\u00c9conomie politique", + "type": "bf:ClassificationDdc", + "classificationPortion": "330" } ], - "authorized_access_point": "1949-1976" + "variant_access_point": [ + "Arbitrisme", + "Arbitrismo", + "Arbitristas" + ], + "authorized_access_point": "Arbitristes" }, { - "md5": "efdae859455b0f6cc26393dba5a8a754", - "pid": "035078316", + "md5": "da3d469ac48d64726e0a3e5037cca0de", + "pid": "197956653", "note": [ { "label": [ - "Grand Larousse universel", - "Encycl. universalis (art. : Chinoise (Civilisation) - La litt\u00e9rature) - http://www.universalis-edu.com (2014-07-25)", - "Hist. des litt\u00e9ratures / Encycl. de La Pl\u00e9iade, 1958" - ], - "noteType": "dataSource" - }, - { - "label": [ - "S'emploie uniquement en subdivision chronologique [sans subd. g\u00e9ogr.] aux litt\u00e9ratures chinoises, par ex. : Th\u00e9\u00e2tre (genre litt\u00e9raire) chinois -- 1280-1368 (Dynastie des Yuan)", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la litt\u00e9rature chinoise, celle-ci servant de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires chinois" + "\"Dis Siri\", enqu\u00eate sur le g\u00e9nie \u00e0 l'int\u00e9rieur du smartphone / N. Santolaria, 2016", + "Le deuxi\u00e8me \u00e2ge de la machine : travail et prosp\u00e9rit\u00e9 \u00e0 l'heure de la r\u00e9volution technologique / E. Brynjolfsson, A. McAfee, 205", + "Tous digitalis\u00e9s : et si votre futur avait commenc\u00e9 sans vous ? / M. Diaz, 2015 (p. 58)" ], - "noteType": "general" + "noteType": "dataSource" } ], - "type": "bf:Temporal", - "related": [ + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Litt\u00e9rature chinoise - 1280-1368 (Dynastie des Yuan)" + "authorized_access_point": "Agents intelligents (logiciels)" + }, + { + "authorized_access_point": "Interfaces utilisateur (informatique)" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/035078316", + "value": "http://www.idref.fr/197956653", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb131655535", + "value": "http://catalogue.bnf.fr/ark:/12148/cb17100386p", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17100386", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Physique appliqu\u00e9e", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "621" } ], - "authorized_access_point": "1280-1368(Dynastie des Yuan)" + "variant_access_point": [ + "Assistants intelligents", + "Assistants num\u00e9riques", + "Assistants personnels virtuels", + "Assistants virtuels" + ], + "authorized_access_point": "Assistants personnels intelligents (logiciels)" }, { - "md5": "68805e8a102ae6b4c467d833b597d4ee", - "pid": "035087625", + "md5": "a46ed8ceb98d0d5857ca5ab78aa716a5", + "pid": "197957358", "note": [ { "label": [ - "La subdivision chronologique 1775-1783 (P\u00e9riode r\u00e9volutionnaire) s'emploie uniquement aux litt\u00e9ratures et genres litt\u00e9raires pratiqu\u00e9s aux Etats-Unis", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la litt\u00e9rature, celle-ci servant de vedette mod\u00e8le pour les genres litt\u00e9raires de m\u00eame nationalit\u00e9. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec les genres litt\u00e9raires" + "S'emploie uniquement en subdivision" ], "noteType": "general" + }, + { + "label": [ + "Voir aussi la subdivision Enseignement biblique" + ], + "noteType": "seeReference" } ], - "type": "bf:Temporal", + "type": "bf:Topic", "related": [ { - "authorized_access_point": "Litt\u00e9rature am\u00e9ricaine - 1775-1783 (P\u00e9riode r\u00e9volutionnaire)" + "authorized_access_point": "Dans la litt\u00e9rature" + }, + { + "authorized_access_point": "Enseignement biblique" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/035087625", + "value": "http://www.idref.fr/197957358", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb13166188z", + "value": "http://catalogue.bnf.fr/ark:/12148/cb17103399r", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17103399", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "200" } ], - "authorized_access_point": "1775-1783(P\u00e9riode r\u00e9volutionnaire)" + "variant_access_point": [ + "Dans l'Ancien Testament", + "Dans le Nouveau Testament", + "Dans les livres bibliques", + "Repr\u00e9sentation biblique", + "Repr\u00e9sentation dans la Bible", + "Th\u00e8me biblique" + ], + "authorized_access_point": "Dans la Bible" }, { - "md5": "a08cd2c4929516a3920eb4ce7dbe2eec", - "pid": "03509446X", + "md5": "5ba79d6481bfaa65bfb27de642a57742", + "pid": "199344019", "note": [ { "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures galloises et su\u00e9doises", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec les vedettes Litt\u00e9rature galloise et Litt\u00e9rature su\u00e9doise, celles-ci servant de vedettes mod\u00e8les. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires gallois et su\u00e9dois" + "S'emploie uniquement en subdivision" ], "noteType": "general" + }, + { + "label": [ + "Voir aussi la subdivision Enseignement coranique" + ], + "noteType": "seeReference" } ], - "type": "bf:Temporal", + "type": "bf:Topic", "related": [ { - "authorized_access_point": "Litt\u00e9rature galloise - Avant 1550" + "authorized_access_point": "Dans la litt\u00e9rature" }, { - "authorized_access_point": "Litt\u00e9rature su\u00e9doise - Avant 1550" + "authorized_access_point": "Enseignement coranique" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/03509446X", + "value": "http://www.idref.fr/199344019", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb13166547g", + "value": "http://catalogue.bnf.fr/ark:/12148/cb171125084", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17112508", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "200" } ], - "authorized_access_point": "Avant 1550" + "variant_access_point": [ + "Repr\u00e9sentation coranique", + "Repr\u00e9sentation dans le Coran", + "Th\u00e8me coranique" + ], + "authorized_access_point": "Dans le Coran" }, { - "md5": "b3bdc08f45865c1309a0ffb98b406ded", - "pid": "035207191", + "md5": "b461064fb15af4a6907b499f909e6733", + "pid": "199344248", "note": [ { "label": [ - "La subdivision Avant 1912 s'emploie uniquement aux litt\u00e9ratures et genres litt\u00e9raires chinois", - "Cette subdivision est \u00e0 utiliser dans des cha\u00eenes construites avec la litt\u00e9rature, celles-ci servant de vedettes mod\u00e8les pour les genres litt\u00e9raires de m\u00eame langue ou de m\u00eame nationalit\u00e9. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec les genres litt\u00e9raires" + "Wikip\u00e9dia : Table des Rangs - https://fr.wikipedia.org (2017-03-09)", + "Hist. de la Russie des tsars / R. Pipes, 2013", + "Pierre le Grand : le premier empereur de toutes les Russies / F.-D. Liechtenhan, 2015 (p. 327-330)", + "Pierre le Grand : et son oeuvre / V. O. Klioutchevski, 1991 (p. 107-108)", + "\u00c0 propos de la notion de service dans la noblesse russe au XVIIIe et XIXe si\u00e8cles / M. Confino [in] Cahiers du monde russe et sovi\u00e9tique, 1993, 34, 1-2 (p. 47-58) - http://www.persee.fr (2017-03-09)", + "Encycl. of Russian hist. / J. R. Millar, 2004 : Table of Ranks", + "Historical dict. of Russia / B. Raymond, P. Duffy, 1998 : Tabel o Rangakh (Table of Ranks)" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Table cr\u00e9\u00e9e par un oukase de Pierre le Grand du 24 janvier/4 f\u00e9vrier 1722, hi\u00e9rarchisant en 14 degr\u00e9s la noblesse, d\u00e9finie comme l'ensemble des serviteurs de l'\u00c9tat (tchinovniki), civils, militaires et de la Cour. Elle fut abolie le 11 novembre 1917" ], "noteType": "general" } ], - "type": "bf:Temporal", - "related": [ + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Litt\u00e9rature chinoise - Avant 1912" + "authorized_access_point": "Conditions sociales - Russie - 1801-1917" + }, + { + "authorized_access_point": "Noblesse - Russie" + }, + { + "authorized_access_point": "Stratification sociale" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/035207191", + "value": "http://www.idref.fr/199344248", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb131743151", + "value": "http://catalogue.bnf.fr/ark:/12148/cb17113185q", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17113185", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Sciences sociales", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "300" + }, + { + "name": "Histoire de l'Europe", + "type": "bf:ClassificationDdc", + "classificationPortion": "940" } ], - "authorized_access_point": "Avant 1912" + "variant_access_point": [ + "\u010cin, Table des (Russie)", + "Rangs, Table des (Russie)", + "Tabel' o rangakh (Russie)", + "Table des \u010din (Russie)", + "Table des tchins (Russie)", + "Table imp\u00e9riale des Rangs (Russie)", + "Tchins, Table des (Russie)" + ], + "authorized_access_point": "Table des Rangs (Russie)" }, { - "md5": "b1f21dded8a37bfb7dab320badac5419", - "pid": "03528076X", + "md5": "afcf7dd23dc4231a9eefcc7305dc78c4", + "pid": "200582038", "note": [ { "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures cor\u00e9ennes", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature cor\u00e9enne, celle-ci servant de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires cor\u00e9ens" + "Wikip\u00e9dia - https://fr.wikipedia.org (2017-04-24)", + "Hist. de la RDA / S. Lorrain, 1994 (p. 42)", + "Fronti\u00e8res du communisme / S. Carr\u00e9, S. Dullin, 2007", + "Berlin, guerre des images d'une m\u00e9moire partag\u00e9e (1945-1989) / C. Delage [in] Vingti\u00e8me si\u00e8cle, 1992, 34 - http://www.jstor.org (2017-04-24)", + "The German democratic Republic / P. Grider, 2012 : Combat groups of the working class", + "Proletarischer Mythos und realer Sozialismus : die Kampfgruppen der Arbeitsklasse in der DDR / T. Siebeneichner, 2014" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Organisations paramilitaires d'employ\u00e9s dans les entreprises de la R\u00e9publique d\u00e9mocratique allemande (1953-1989), d\u00e9pendant du SED" ], "noteType": "general" } ], - "type": "bf:Temporal", - "related": [ + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Litt\u00e9rature cor\u00e9enne - Avant 1910" + "authorized_access_point": "Forces paramilitaires" } ], "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4240507-5", + "source": "GND" + } + ], + "authorized_access_point": "Betriebskampfgruppe" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1041423551", + "source": "GND" + } + ], + "authorized_access_point": "Sozialistische Einheitspartei Deutschlands. Kampfgruppen der Arbeitsklasse" + } + ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/03528076X", + "value": "http://www.idref.fr/200582038", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb13320775b", + "value": "http://catalogue.bnf.fr/ark:/12148/cb171224020", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17122402", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Science politique", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "320" } ], - "authorized_access_point": "Avant 1910" + "variant_access_point": [ + "Betriebskampfgruppen (R\u00e9publique d\u00e9mocratique allemande)", + "Groupes de combat d'entreprise (R\u00e9publique d\u00e9mocratique allemande)", + "Kampfgruppen der Arbeitsklasse (R\u00e9publique d\u00e9mocratique allemande)" + ], + "authorized_access_point": "Groupes de combat de la classe ouvri\u00e8re (R\u00e9publique d\u00e9mocratique allemande)" }, { - "md5": "c610d75d7bb340cdf55c7e9c20d1f13e", - "pid": "035383925", + "md5": "d322a3994fd1b8f6b9c0b4b5c97232d6", + "pid": "200884530", "note": [ { "label": [ - "La subdivision Avant 1000 s'emploie uniquement aux litt\u00e9ratures et genres litt\u00e9raires turcs", - "Cette subdivision est utilis\u00e9e dans en cha\u00eene construite avec la litt\u00e9rature turque, celle-ci servant de vedettes mod\u00e8les pour les genres litt\u00e9raires de m\u00eame langue ou nationalit\u00e9. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec les genres litt\u00e9raires" + "Du pain, du sel et du coeur, recettes de cuisine albanaise / R. Cela Grasset, 2017", + "The best of Albanian cooking : favorite family recipes / K. et R. John Hysa, 1998" ], - "noteType": "general" + "noteType": "dataSource" } ], - "type": "bf:Temporal", - "related": [ + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Litt\u00e9rature turque - Avant 1000" + "authorized_access_point": "Cuisine balkanique" } ], "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh98003206", + "source": "LCSH" + } + ], + "authorized_access_point": "Cooking, Albanian" + } + ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/035383925", + "value": "http://www.idref.fr/200884530", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb13320983h", + "value": "http://catalogue.bnf.fr/ark:/12148/cb171255547", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17125554", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "\u00c9conomie domestique", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "640" } ], - "authorized_access_point": "Avant 1000" + "variant_access_point": [ + "Cuisine albanaise - Albanie" + ], + "authorized_access_point": "Cuisine albanaise" }, { - "md5": "94a6870557f4791e226776c552ffd926", - "pid": "035623683", + "md5": "39d89397fa48b1c38e63f75ba38a5a14", + "pid": "204008557", "note": [ { "label": [ - "Laval-RVM, 1997-02. - LCSH, 1996-09" + "Wikipedia : meridionalismo - https://it.wikipedia.org (2017-09-07)", + "L'\u00e9mergence d'un n\u00e9o-m\u00e9ridionalisme politique en Italie : vers l'accroissement de la fracture territoriale ? / A. Fazzi [in] Critique internationale, 2011/1, 50 (p. 111-128) - http://www.cairn.info (2017-09-07)", + "Meridionalismo critico : scritti sulla questione meridionale (1945-1973) / B. Caizzi, 1998", + "Tradizione e attualit\u00e0 del meridionalismo / S. Cafiero, 1989" ], - "noteType": "dataNotFound" + "noteType": "dataSource" }, { "label": [ - "La subdivision chronologique 13e-19e si\u00e8cles (d\u00eevan) s'emploie uniquement \u00e0 la litt\u00e9rature et aux genres litt\u00e9raires turcs", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la litt\u00e9rature, celle-ci servant de vedette mod\u00e8le pour les genres litt\u00e9raires de m\u00eame nationalit\u00e9. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec les genres litt\u00e9raires" + "\u00c9tudes sp\u00e9cialis\u00e9es sur le d\u00e9veloppement \u00e9conomique, social et culturel de l'Italie du Sud, en particulier dans le cadre de l'\u00c9tat unitaire italien" ], "noteType": "general" } ], - "type": "bf:Temporal", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Conditions \u00e9conomiques - Italie" + }, + { + "authorized_access_point": "Conditions sociales - Italie" + } + ], "related": [ { - "authorized_access_point": "Litt\u00e9rature turque - 13e-19e si\u00e8cles (d\u00eevan)" + "authorized_access_point": "R\u00e9gionalisme" + }, + { + "authorized_access_point": "Italie (sud)" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/035623683", + "value": "http://www.idref.fr/204008557", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb13325307z", + "value": "http://catalogue.bnf.fr/ark:/12148/cb17149211h", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17149211", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Sciences sociales", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "300" + }, + { + "name": "\u00c9conomie politique", + "type": "bf:ClassificationDdc", + "classificationPortion": "330" + }, + { + "name": "Probl\u00e8mes et services sociaux", + "type": "bf:ClassificationDdc", + "classificationPortion": "360" } ], - "authorized_access_point": "13e-19e si\u00e8cles(d\u00eevan)" + "variant_access_point": [ + "\u00c9tudes m\u00e9ridionalistes (Italie)", + "Meridionalismo", + "Question m\u00e9ridionale (Italie)" + ], + "authorized_access_point": "M\u00e9ridionalisme (Italie)" }, { - "md5": "0316d45f58c6ffeea8b54362f366e6e5", - "pid": "035623691", + "md5": "f131d1671c85deb87a4a1dd5fe730937", + "pid": "219951152", "note": [ { "label": [ - "S'emploie uniquement en subdivision chronologiques aux litt\u00e9ratures et genres litt\u00e9raires turcs", - "Cette subdivision est \u00e0 utiliser dans des cha\u00eenes construites avec la litt\u00e9rature turque, celles-ci servant de vedettes mod\u00e8les pour les genres litt\u00e9raires de m\u00eame nationalit\u00e9 ; elle est \u00e0 utiliser par \u00e9l\u00e9ments avec les genres litt\u00e9raires" + "Android developers - https://developer.android.com (2017-09-26)", + "D\u00e9marrer avec Android Studio / B. Hohensee, 2014", + "Expert Android Studio / M. Yener, O. Dundar, 2016", + "Android Studio cookbook / M. van Drongelen, 2015" ], - "noteType": "general" + "noteType": "dataSource" } ], - "type": "bf:Temporal", - "related": [ + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Litt\u00e9rature turque - 1923-.... (p\u00e9riode r\u00e9publicaine)" + "authorized_access_point": "G\u00e9n\u00e9rateurs (logiciels)" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/035623691", + "value": "http://www.idref.fr/219951152", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb133253089", + "value": "http://catalogue.bnf.fr/ark:/12148/cb17153081w", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17153081", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Physique appliqu\u00e9e", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "621" } ], - "authorized_access_point": "1923-....(p\u00e9riode r\u00e9publicaine)" + "variant_access_point": [ + "Android Studio (environnement de d\u00e9veloppement d'applications)" + ], + "authorized_access_point": "Google Android Studio (environnement de d\u00e9veloppement d'applications)" }, { - "md5": "9e4bf4c5431fe8a7499f618443130528", - "pid": "035801123", + "md5": "5b7f622589cdf192978f2c30d42f0813", + "pid": "219966540", "note": [ { "label": [ - "Petit Larousse 2004 (art. : Psych\u00e9d\u00e9lique)", - "Encycl. universalis : rock psych\u00e9d\u00e9lique ou acid rock - http://www.universalis-edu.com (2013-11-08)", - "Encycl. illustr\u00e9e de toutes les musiques / P. Du Noyer, 2004", - "Oxford Music online : psychedelic rock - http://www.oxfordmusiconline.com (2013-11-08)", - "Allmusic : psychedelic rock ; acid rock - http://www.allmusic.com (2013-11-08)", - "Dict. du rock / M. Assayas, 2000 : acid rock" + "Wikip\u00e9dia : Black Lives Matter - https://fr.wikipedia.org (2019-01-10)", + "Black Lives Matter : un nouveau souffle pour les voix des Noirs / R. Diallo [in] Lib\u00e9ration, 2016-05-28 - http://www.liberation.fr (2019-01-10)", + "The making of Black lives matter : a brief history of an idea / C. J. Lebron, 2017", + "Black Lives Matter - https://blacklivesmatter.com (2019-01-10)" ], "noteType": "dataSource" }, { "label": [ - "Courant musical cr\u00e9\u00e9 dans les ann\u00e9es 1960 par des groupes californiens, qui cherchent \u00e0 traduire dans leur musique les sensations dues \u00e0 la prise de drogues hallucinog\u00e8nes" + "Mouvement militant afro-am\u00e9ricain apparu en 2013, qui se mobilise contre la violence et le racisme syst\u00e9mique envers les Noirs" ], "noteType": "general" } @@ -9160,284 +29375,300 @@ "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Psych\u00e9d\u00e9lisme" + "authorized_access_point": "Politique et gouvernement - \u00c9tats-Unis - 2009-2017" }, { - "authorized_access_point": "Rock (musique)" + "authorized_access_point": "Mouvements sociaux - \u00c9tats-Unis" } ], "related": [ { - "authorized_access_point": "Drogues et arts" + "authorized_access_point": "Mouvements des droits civiques" }, { - "authorized_access_point": "Rock planant" - } - ], - "bnf_type": "genre/forme Rameau", - "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh95010207", - "source": "LCSH" - }, - "authorized_access_point": "Psychedelic rock music" + "authorized_access_point": "Noirs am\u00e9ricains - Droits" }, { - "source": "RVMLaval", - "authorized_access_point": "Musique psych\u00e9d\u00e9lique" + "authorized_access_point": "Lutte contre le racisme" } ], + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/035801123", + "value": "http://www.idref.fr/219966540", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb13337484c", + "value": "http://catalogue.bnf.fr/ark:/12148/cb17156838p", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17156838", "source": "BNF" } ], "classification": [ { - "name": "Musique", + "name": "Science politique", "type": "bf:ClassificationDdc", - "classificationPortion": "780" + "classificationPortion": "320" + }, + { + "name": "\u00c9conomie politique", + "type": "bf:ClassificationDdc", + "classificationPortion": "330" } ], "variant_access_point": [ - "Acid-rock", - "Musique psych\u00e9d\u00e9lique", - "Psych\u00e9d\u00e9lique, Musique" + "Black Lives Matter", + "BLM", + "Les vies des Noirs comptent (mouvement)", + "Mouvement Black Lives Matter", + "Les vies des Noirs comptent (mouvement)" ], - "authorized_access_point": "Rock psych\u00e9d\u00e9lique" + "authorized_access_point": "Black Lives Matter (mouvement)" }, { - "md5": "d2936409633838dc01b5efd5f06ec100", - "pid": "050170406", + "md5": "e25603cb8a21a2eb00a604d5c81efbcc", + "pid": "223495913", "note": [ { "label": [ - "S'emploie uniquement en subdivision chronologique non affranchie sous la vedette : \u00c9glise catholique -- [subd. g\u00e9ogr.]" + "Wikipedia : Asaba massacre - https://en.wikipedia.org (2018-10-11)", + "La crise du Biafra / J.-L. Clergerie, 1994 (p. 239)", + "The Asaba massacre : trauma, memory, and the Nigerian civil war / S. E. Bird, F. M. Ottanelli, 2017", + "The history and legacy of the Asaba, Nigeria, Massacres / S. E. Bird, F. Ottanelli [in] African studies Review, 2011, 54 - https://www.cambridge.org (2018-10-11)", + "Asaba massacre of 1967 / Oldnaija - https://oldnaija.org (2018-10-11)" + ], + "noteType": "dataSource" + }, + { + "label": [ + "5-7 octobre 1967 : massacres par l'arm\u00e9e nig\u00e9riane de la population civile d'Asaba, majoritairement ibo et soup\u00e7onn\u00e9e de connivence avec les Biafrais : le 5, les militaires entrent dans la ville, pillent et tuent hommes, femmes et enfants ; le 7, ils rassemblent \u00e0 l'\u00e9cart la population masculine et l'ex\u00e9cutent \u00e0 la mitrailleuse (plus de 1000 victimes au total) ; dans les jours suivants les femmes et filles sont viol\u00e9es ou mari\u00e9es de force" ], "noteType": "general" } ], - "type": "bf:Temporal", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Massacres - Nigeria" + }, + { + "authorized_access_point": "Nigeria - 1967-1970 (Guerre civile) - Atrocit\u00e9s" + } + ], + "related": [ + { + "authorized_access_point": "Asaba (Nigeria)" + } + ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/050170406", + "value": "http://www.idref.fr/223495913", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb13339991h", + "value": "http://catalogue.bnf.fr/ark:/12148/cb17703943t", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17703943", "source": "BNF" } ], "classification": [ { - "name": "Religion", - "type": "bf:ClassificationDdc", - "classificationPortion": "200" - }, - { - "name": "Histoire", + "name": "Histoire du reste du monde", "type": "bf:ClassificationDdc", - "classificationPortion": "900" + "classificationPortion": "950" } ], - "authorized_access_point": "1900-1965" + "variant_access_point": [ + "Asaba, Massacre d' (1967)", + "Massacres d'Asaba (1967)" + ], + "authorized_access_point": "Massacre d'Asaba (1967)" }, { - "md5": "9b9ea0c9e17d6a3eeba5d4c50c4d2e66", - "pid": "050203177", + "md5": "95b06843d26858441c5d947ca088d45e", + "pid": "223831840", "note": [ { "label": [ - "Grand Larousse universel", - "Grand Robert de la langue fran\u00e7aise, 2001" + "MIT App Inventor - http://appinventor.mit.edu (2018-01-22)", + "Absolute App Inventor 2 : Android programming for all / H. Amerkashi, 2015", + "App Inventor 2 : create your own Android apps, 2014", + "Learning MIT App Inventor : a hands-on guide to building your own Android apps / D. Walter, M. Sherman, 2014" ], "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette, obligatoirement suivie d'une subdivision g\u00e9ographique ou de la subdivision : \u00c0 l'\u00e9tranger, directement ou apr\u00e8s une subdivision de sujet, on trouve les documents sur les Ghan\u00e9ens hors du Ghana. Les documents sur les Ghan\u00e9ens au Ghana se trouvent sous des vedettes-mati\u00e8re telles que : Moeurs et coutumes -- Ghana ; etc" - ], - "noteType": "general" } ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Ethnologie - Ghana" - } - ], - "related": [ - { - "authorized_access_point": "Ghana" + "authorized_access_point": "G\u00e9n\u00e9rateurs (logiciels)" } ], "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "\u00c9crivains ghan\u00e9ens" - }, - { - "authorized_access_point": "Ghan\u00e9ennes" - }, - { - "authorized_access_point": "Travailleurs \u00e9trangers ghan\u00e9ens" - } - ], - "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85054784", - "source": "LCSH" - }, - "authorized_access_point": "Ghanaians" - }, - { - "source": "RVMLaval", - "authorized_access_point": "Ghan\u00e9ens" - } - ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/050203177", + "value": "http://www.idref.fr/223831840", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb135064736", + "value": "http://catalogue.bnf.fr/ark:/12148/cb177092571", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17709257", "source": "BNF" } ], "classification": [ { - "name": "Ethnologie, anthropologie, folklore", + "name": "Physique appliqu\u00e9e", "type": "bf:ClassificationDdc", - "classificationPortion": "390" + "classificationPortion": "621" } ], - "authorized_access_point": "Ghan\u00e9ens" + "variant_access_point": [ + "App Inventor pour Android (environnement de d\u00e9veloppement d'applications)" + ], + "authorized_access_point": "App Inventor (environnement de d\u00e9veloppement d'applications)" }, { - "md5": "cee06d87b853f1e1e54c2307e1e07e89", - "pid": "050323148", - "note": [ + "md5": "afc303246e5a385fd884c9c7b5a12510", + "pid": "225382520", + "type": "bf:Topic", + "bnf_type": "sujet Rameau", + "closeMatch": [ { - "label": [ - "La subdivision chronologique 1550-1700 s'emploie uniquement aux litt\u00e9ratures et aux genres litt\u00e9raires gallois etirlandais", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la litt\u00e9rature, celle-ci servant de vedette mod\u00e8le pour les genres litt\u00e9raires de m\u00eame nationalit\u00e9. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec les genres litt\u00e9raires" + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2017003944", + "source": "LCSH" + } ], - "noteType": "general" - } - ], - "type": "bf:Temporal", - "related": [ - { - "authorized_access_point": "Litt\u00e9rature galloise - 1550-1700" - }, - { - "authorized_access_point": "Litt\u00e9rature irlandaise (ga\u00e9lique) - 1550-1700" + "authorized_access_point": "Diplomatic and consular service, Paraguayan" } ], - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/050323148", + "value": "http://www.idref.fr/225382520", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb13510132j", + "value": "http://catalogue.bnf.fr/ark:/12148/cb17720890r", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17720890", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Science politique", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "320" } ], - "authorized_access_point": "1550-1700" + "authorized_access_point": "Service diplomatique et consulaire paraguayen" }, { - "md5": "5058cf0f28a8229107e65ba51df98185", - "pid": "050323172", + "md5": "5b72184c7432ff0e3ec90abd7c9136f8", + "pid": "227367677", "note": [ { "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures galloises", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature galloise, celle-ci servant de mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires gallois" + "Wikip\u00e9dia : r\u00e9f\u00e9rendum irlandais sur l'adh\u00e9sion aux communaut\u00e9s europ\u00e9ennes - http://fr.wikipedia.org (2018-06-01)", + "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1996", + "Hist. de l'Irlande : de 1912 \u00e0 nos jours / A. Slaby, 2016" ], - "noteType": "general" - } - ], - "type": "bf:Temporal", - "related": [ + "noteType": "dataSource" + }, { - "authorized_access_point": "Litt\u00e9rature galloise - 1100-1550" + "label": [ + "10 mai 1972 : l'adh\u00e9sion de la R\u00e9publique d'Irlande aux Communaut\u00e9s europ\u00e9ennes (3e amendement de la Constitution de 1937) est approuv\u00e9e par 83 % des votants, avec un taux de participation de 70,8 %; elle est effective le 1er janvier 1973" + ], + "noteType": "general" } ], + "type": "bf:Topic", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/050323172", + "value": "http://www.idref.fr/227367677", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb135101347", + "value": "http://catalogue.bnf.fr/ark:/12148/cb177386832", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17738683", "source": "BNF" } ], + "relation_pid": { + "type": "redirect_from", + "value": "226068277" + }, "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Science politique", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "320" + }, + { + "name": "Histoire de l'Europe", + "type": "bf:ClassificationDdc", + "classificationPortion": "940" } ], - "authorized_access_point": "1100-1550" + "variant_access_point": [ + "Adh\u00e9sion de l'Irlande aux Communaut\u00e9s europ\u00e9ennes, R\u00e9f\u00e9rendum sur l' (1972)", + "R\u00e9f\u00e9rendum sur l'adh\u00e9sion aux Communaut\u00e9s europ\u00e9ennes (Irlande ; 1972)", + "R\u00e9f\u00e9rendum sur l'adh\u00e9sion de l'Irlande aux Communaut\u00e9s europ\u00e9ennes (1972)" + ], + "authorized_access_point": "R\u00e9f\u00e9rendum - Irlande - 1972" }, { - "md5": "5635b76f682e0b567da89c0d5cb1d8ea", - "pid": "050513478", + "md5": "f8836328524ec117f76aac15e41632ae", + "pid": "227858689", "note": [ { "label": [ - "Encycl. universalis (art. : Dance music ; House music ; etc.) - http://www.universalis-edu.com (2011-03-03)", - "Wikip\u00e9dia : s\u00e9quenceur musical - http://fr.wikipedia.org (2011-03-03)", - "Dict. des mots de la musique / J. Siron, 2006", - "Dict. de la musique / M. Vignal, 2006", - "Dict. encyclop\u00e9dique de la musique / D. Arnold, 1988 (art. : Synth\u00e9tiseur) : sequencer" + "Wikip\u00e9dia - https://fr.wikipedia.org (2018-06-12)", + "Encycl. universalis (art. : Extr\u00eame droite) : v\u00f6lkisch allemands - http://www.universalis-edu.com (2018-06-12)", + "Aspects du fondamentalisme national en Allemagne de 1890 \u00e0 1945 / L. Dupeux, 2001 (p. 173-175)", + "L'Europe et le mythe de l'Occident : la construction d'une histoire / G. Corm, 2012", + "Handbuch zur \"V\u00f6lkischen Bewegung\" 1871-1918 / U. Puschner, W. Schmitz, J. H. Ulbricht, 1996" ], "noteType": "dataSource" }, { "label": [ - "Encycl. de la musique, 1992. - Dict. de la musique / M. Honegger, 1976. - Encycl. des instruments de musique / A. Buchner, 1980" - ], - "noteType": "dataNotFound" - }, - { - "label": [ - "\u00c9quipement permettant de faire jouer automatiquement un instrument de musique \u00e9lectronique" + "Mouvement intellectuel et politique allemand (deuxi\u00e8me moiti\u00e9 du 19e si\u00e8cle et d\u00e9but du 20e si\u00e8cle), d'inspiration nationaliste, ethniciste et n\u00e9opa\u00efenne" ], "noteType": "general" } @@ -9445,217 +29676,251 @@ "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Instruments de musique \u00e9lectroniques" - } - ], - "related": [ - { - "authorized_access_point": "Boucles (musique)" + "authorized_access_point": "Vie intellectuelle - Allemagne - 1871-1918" }, { - "authorized_access_point": "S\u00e9quenceurs (logiciels)" + "authorized_access_point": "Nationalisme" } ], - "bnf_type": "sujet Rameau", - "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh90005022", - "source": "LCSH" - }, - "authorized_access_point": "Sequencer (Musical instrument)" - }, + "related": [ { - "source": "RVMLaval", - "authorized_access_point": "S\u00e9quenceur (instrument de musique)" + "authorized_access_point": "N\u00e9opaganisme" } ], + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/050513478", + "value": "http://www.idref.fr/227858689", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb13533493q", + "value": "http://catalogue.bnf.fr/ark:/12148/cb177411580", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17741158", "source": "BNF" } ], "classification": [ { + "name": "Science politique", "type": "bf:ClassificationDdc", - "classificationPortion": "621" - }, - { - "name": "Musique", - "type": "bf:ClassificationDdc", - "classificationPortion": "780" + "classificationPortion": "320" } ], "variant_access_point": [ - "S\u00e9quenceur musical" + "V\u00f6lkisch, Mouvement", + "V\u00f6lkische Bewegung" ], - "authorized_access_point": "S\u00e9quenceur (instrument de musique)" + "authorized_access_point": "Mouvement v\u00f6lkisch" }, { - "md5": "36a14563741d351d7567f1692ec584d5", - "pid": "050665391", + "md5": "52433090b89ae3721c358338e3b52648", + "pid": "228803608", "note": [ { "label": [ - "S'emploie uniquement en subdivision chronologique \u00e0 tous sujets noms communs et noms propres, \u00e0 l'exception des personnes et des sujets pour lesquels il existe un d\u00e9coupage chronologique sp\u00e9cifique" + "Hist. contemporaine des relations Sud-Sud. Les contours d'une \u00e9volution graduelle / F. Soul\u00e9-Kohndou [in] Afrique contemporaine, 2013, 248, (p. 108-111) - https://www.cairn.info (2018-06-26)", + "Les relations Sud-Sud : culture et diplomatie [n\u00b0 sp\u00e9cial de] Cahiers d'Am\u00e9rique latine, 2015, 80", + "Les nouvelles alliances Sud-Sud et le r\u00f4le des relations tricontinentales dans la crise / P. Hugon [in] Revue internationale et strat\u00e9gique, 2012, 86 (p. 57-65) - https://www.cairn.info (2018-06-26)" ], - "noteType": "general" + "noteType": "dataSource" + }, + { + "label": [ + "Voir aussi la subdivision Relations ext\u00e9rieures aux continents et pays du Sud, par ex. : Am\u00e9rique latine -- Relations ext\u00e9rieures -- Pays arabes" + ], + "noteType": "seeReference" } ], - "type": "bf:Temporal", + "type": "bf:Topic", "broader": [ { - "authorized_access_point": "1800-...." + "authorized_access_point": "Relations ext\u00e9rieures - Pays en voie de d\u00e9veloppement" } ], - "related": [ - { - "authorized_access_point": "1990-2020" - }, + "bnf_type": "sujet Rameau", + "narrower": [ { - "authorized_access_point": "Vingt et uni\u00e8me si\u00e8cle" + "authorized_access_point": "Coop\u00e9ration entre pays en voie de d\u00e9veloppement" } ], - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/050665391", + "value": "http://www.idref.fr/228803608", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb135365257", + "value": "http://catalogue.bnf.fr/ark:/12148/cb17744530f", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17744530", "source": "BNF" } ], "classification": [ { - "name": "Histoire et g\u00e9ographie (g\u00e9n\u00e9ralit\u00e9s)", + "name": "Science politique", "type": "bf:ClassificationDdc", - "classificationPortion": "900" + "classificationPortion": "320" } ], "variant_access_point": [ - "2000-.... (subdivision)", - "21e si\u00e8cle (subdivision)", - "Vingt et uni\u00e8me si\u00e8cle (subdivision)", - "XXIe si\u00e8cle (subdivision)", - "21e si\u00e8cle" + "Relations internationales Sud-Sud", + "Sud-Sud, Relations" ], - "authorized_access_point": "2000-...." + "authorized_access_point": "Relations Sud-Sud" }, { - "md5": "594bd8b0c4c4d10217d1377d0f660f46", - "pid": "061617296", + "md5": "b63d4ad8482140f526e8b282d7ed8727", + "pid": "232818665", "note": [ { "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures et genres litt\u00e9raires japonais" + "Grand dict. encyclop\u00e9dique Larousse", + "Encycl. universalis (art. : Pandanales) - http://www.universalis-edu.com (2018-12-11)", + "Inventaire National du Patrimoine Naturel - http://inpn.mnhn.fr (2018-12-11)", + "Le bon jardinier, 1992 (art. : Pandanus)", + "Elsevier's dict. of plant names, 1996", + "ITIS : Pandanus utilis - https://www.itis.gov (2018-12-11)", + "NCBI : Pandanus utilis - https://www.ncbi.nlm.nih.gov/Taxonomy (2018-12-11)", + "Dict. of plant names in Latin, German, English and French / H. Nikolov, 1996 : Pandanus utilis ; vacoi" ], - "noteType": "general" + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Pandanus" } ], - "type": "bf:Temporal", "related": [ { - "authorized_access_point": "Litt\u00e9rature japonaise - 1868-1912 (\u00c8re Meiji)" + "authorized_access_point": "Travail des feuilles de vaquois" } ], "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2009007922", + "source": "LCSH" + } + ], + "authorized_access_point": "Vacoa" + } + ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/061617296", + "value": "http://www.idref.fr/232818665", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb137741474", + "value": "http://catalogue.bnf.fr/ark:/12148/cb17780931r", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17780931", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" - }, - { + "name": "Botanique", "type": "bf:ClassificationDdc", - "classificationPortion": "950" + "classificationPortion": "580" } ], - "authorized_access_point": "1868-1912(\u00c8re Meiji)" + "variant_access_point": [ + "Baquois", + "Pandanus utilis", + "Vacoi", + "Vacoi utile", + "Vacoua" + ], + "authorized_access_point": "Vaquois" }, { - "md5": "278cfc6127cb21bc0d91d415f14e9a84", - "pid": "077057384", + "md5": "36add1130792f974295d5ed37166b35b", + "pid": "234183721", "note": [ { "label": [ - "Histoire des litt\u00e9ratures / Encycl. de La Pl\u00e9iade, 1958" + "Internet Information Services 6 / [Johnny Brochard], cop. 2005" ], "noteType": "dataSource" }, { "label": [ - "La p\u00e9riode 220-618 r\u00e9unit la p\u00e9riode des Trois Royaumes (220-265), les Six Dynasties (265-581) et la Dynastie Souei (581-618)", - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures et genres litt\u00e9raires chinois", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la litt\u00e9rature, celle-ci servant de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires chinois" + "Int\u00e8gre des fonctionnalit\u00e9s de serveur Web. IIS 6.0 fonctionne uniquement sur Microsoft Windows Server 2003" ], "noteType": "general" } ], - "type": "bf:Temporal", - "related": [ + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Litt\u00e9rature chinoise - 220-618 (Six dynasties)" + "authorized_access_point": "Serveurs Web" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/077057384", + "value": "http://www.idref.fr/234183721", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb144076013", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15077072v", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15077072", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Physique appliqu\u00e9e", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "621" } ], "variant_access_point": [ - "220-589" + "Microsoft Internet Information Services 6.0 (serveur)", + "IIS (serveur)" ], - "authorized_access_point": "220-618" + "authorized_access_point": "Microsoft Internet Information Services (serveur)" }, { - "md5": "56a87b8936637de76fd6fea79ed3dc66", - "pid": "077061284", + "md5": "823d5cb2b22e5999266c5d4228382d78", + "pid": "236280147", "note": [ { "label": [ - "Grand Larousse universel (art. : Psych\u00e9d\u00e9lique) : peinture psych\u00e9d\u00e9lique", - "L'art psych\u00e9d\u00e9lique / R. E. L. Masters, J. Houston, 1968", - "Nus abstraits et psych\u00e9d\u00e9liques / D. Olivier, 2012" + "Mission d'expertise sur la fiscalit\u00e9 de l'\u00e9conomie num\u00e9rique / P. Collin, N. Colin, 2013 - https://www.economie.gouv.fr (2023-02-17)", + "Le guide de la transformation digitale / V. Dreney, E. Vivier, 2016", + "Encycl. of e-commerce development, implementation, and management, 2016 : mobile application ecosystem", + "Competition in the mobile application ecosystem / Department of commerce, february 2023 - https://www.ntia.gov (2023-02-16)", + "\u00c9cosyst\u00e8me des architectures mobiles / O. Cata, 2017 - https://www.asprom.com (2023-02-27)", + "Tizen, le concurrent d'Android et d'iOS, est presque mort-n\u00e9 / Y. Rousseau [in] Les \u00e9chos, n\u00b0 21609 du 21-01-2014" ], "noteType": "dataSource" } @@ -9663,406 +29928,538 @@ "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Art - 1970-...." + "authorized_access_point": "Applications mobiles" }, { - "authorized_access_point": "Psych\u00e9d\u00e9lisme" + "authorized_access_point": "\u00c9conomie num\u00e9rique" } ], "related": [ { - "authorized_access_point": "Drogues et arts" + "authorized_access_point": "Logiciels - D\u00e9veloppement" + }, + { + "authorized_access_point": "OSI (architecture de r\u00e9seaux)" + }, + { + "authorized_access_point": "Smartphones" }, { - "authorized_access_point": "Hallucinog\u00e8nes" + "authorized_access_point": "Syst\u00e8mes d'exploitation (ordinateurs)" } ], "bnf_type": "sujet Rameau", "closeMatch": [ { "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh90000085", - "source": "LCSH" - }, - "authorized_access_point": "Psychedelic art" - }, - { - "source": "RVMLaval", - "authorized_access_point": "Art psych\u00e9d\u00e9lique" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2014000122", + "source": "LCSH" + } + ], + "authorized_access_point": "Software ecosystems" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/077061284", + "value": "http://www.idref.fr/236280147", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb14424877k", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18064574d", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18064574", "source": "BNF" } ], "classification": [ { - "name": "Arts", "type": "bf:ClassificationDdc", - "classificationPortion": "700" + "classificationPortion": "621" } ], "variant_access_point": [ - "Dessin psych\u00e9d\u00e9lique", - "Peinture psych\u00e9d\u00e9lique", - "Psych\u00e9d\u00e9lique, Art" + "Ecosystem of communication apps (informatique)", + "\u00c9cosyst\u00e8mes d'applications de communication (informatique)", + "Mobile application ecosystem", + "Software ecosystems" ], - "authorized_access_point": "Art psych\u00e9d\u00e9lique" + "authorized_access_point": "\u00c9cosyst\u00e8mes d'applications mobiles (informatique)" }, { - "md5": "7db7f5add381f05a3c44e84800f375db", - "pid": "080206913", + "md5": "83ed31d4353b28d65c652cb2eec82311", + "pid": "238529495", "note": [ { "label": [ - "Petit dict. d'anatomie, d'embryologie et d'histologie / P. Kamina, 1990", - "Dict. de m\u00e9decine Flammarion, 2008", - "Dict. fran\u00e7ais de m\u00e9decine et de biologie, 1981", - "Atlas d'anatomie humaine / F. H. Netter, 1997" + "Sous cette vedette, on trouve les oeuvres litt\u00e9raires elles-m\u00eames. Les documents sur ces oeuvres se trouvent sous cette m\u00eame vedette suivie de Histoire et critique ou de toute autre subdivision de sujet ou de forme appropri\u00e9e" ], - "noteType": "dataSource" + "noteType": "general" + }, + { + "label": [ + "Voir aussi aux romans autobiographiques des diff\u00e9rents pays arabes, par ex. : Roman autobiographique alg\u00e9rien" + ], + "noteType": "seeReference" } ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Art\u00e8re iliaque interne" + "authorized_access_point": "Autobiographie arabe" } ], - "bnf_type": "sujet Rameau", + "bnf_type": "genre/forme Rameau", "closeMatch": [ { - "source": "RVMLaval", - "authorized_access_point": "Art\u00e8re ombilicale" + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh95009760", + "source": "LCSH" + } + ], + "authorized_access_point": "Autobiographical fiction, Arabic" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/080206913", + "value": "http://www.idref.fr/238529495", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb14571495w", + "value": "http://catalogue.bnf.fr/ark:/12148/cb178386926", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17838692", "source": "BNF" } ], "classification": [ { - "name": "Sciences de la vie", - "type": "bf:ClassificationDdc", - "classificationPortion": "570" - }, - { - "name": "Sciences m\u00e9dicales et param\u00e9dicales", + "name": "Histoire et critique litt\u00e9raires", "type": "bf:ClassificationDdc", - "classificationPortion": "610" + "classificationPortion": "800" } ], - "variant_access_point": [ - "Art\u00e8re ombilico-v\u00e9sicale", - "Arteria umbilicalis" - ], - "authorized_access_point": "Art\u00e8re ombilicale" + "authorized_access_point": "Roman autobiographique arabe" }, { - "md5": "08e439e32d49bbdf589d4b025463647b", - "pid": "083620338", + "md5": "4f6c09038b245b073eba977f1117517f", + "pid": "26110683X", "note": [ { "label": [ - "S'emploie uniquement en subdivision" + "Wikip\u00e9dia - http://fr.wikipedia.org (2022-03-03)", + "Eurovoc : PESC - http://eurovoc.europa.eu (2022-03-03)", + "Aux origines de la diplomatie europ\u00e9enne : les neuf et la coop\u00e9ration politique europ\u00e9enne de 1973 \u00e0 1980 / M. G\u0103inar, 2012", + "La Dynamique int\u00e9grationniste des communaut\u00e9s europ\u00e9ennes : \u00e0 travers la Coop\u00e9ration politique europ\u00e9enne, CPE et l'Acte unique / V. Monte, 1990" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Projet de coordination des politiques \u00e9trang\u00e8res entre les \u00c9tats membres amorc\u00e9e d\u00e8s les ann\u00e9es 1970. La CPE est int\u00e9gr\u00e9e dans le Trait\u00e9 sur l'Union europ\u00e9enne (1986) et officialis\u00e9e par la \u00abpolitique \u00e9trang\u00e8re de s\u00e9curit\u00e9 commune (1992). La coop\u00e9ration politique europ\u00e9enne (CPE) est l'anc\u00eatre de la politique \u00e9trang\u00e8re et de s\u00e9curit\u00e9 commune (PESC) et de la politique europ\u00e9enne de s\u00e9curit\u00e9 et de d\u00e9fense (PESD) de l'Union europ\u00e9enne" ], "noteType": "general" } ], "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Politique et gouvernement - Pays de l'Union europ\u00e9enne" + } + ], "related": [ { - "authorized_access_point": "Droit d'amendement (droit constitutionnel)" + "authorized_access_point": "Politique de s\u00e9curit\u00e9 et de d\u00e9fense commune" }, { - "authorized_access_point": "R\u00e9vision constitutionnelle" + "authorized_access_point": "Politique \u00e9trang\u00e8re et de s\u00e9curit\u00e9 commune" } ], "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCA", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/names/n91064789", + "source": "LCA" + } + ], + "authorized_access_point": "European Political Cooperation" + } + ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/083620338", + "value": "http://www.idref.fr/26110683X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb14604104c", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18001102g", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18001102", "source": "BNF" } ], "classification": [ { - "name": "Droit", + "name": "Sciences politiques", "type": "bf:ClassificationDdc", - "classificationPortion": "340" + "classificationPortion": "320" } ], - "authorized_access_point": "Amendements" + "variant_access_point": [ + "Cooperazione politica europea", + "CPE", + "EPC", + "Europ\u00e4ische Politische Zusammenarbeit", + "European Political Co-operation", + "European Political Cooperation", + "Politique \u00e9trang\u00e8re europ\u00e9enne" + ], + "authorized_access_point": "Coop\u00e9ration politique europ\u00e9enne (1986-1992)" }, { - "md5": "e40d34d817236d7d1f8018b64be6d49f", - "pid": "083622519", + "md5": "599cac508e72b8972e21284983ac30aa", + "pid": "261107119", "note": [ { "label": [ - "S'emploie uniquement en subdivision aux constitutions (dat\u00e9es ou non), par ex. : France -- Constitution (1958) -- R\u00e9vision" + "Wikip\u00e9dia : Syst\u00e8me de Law - http://fr.wikipedia.org (2022-03-09)", + "Lexique d'\u00e9conomie / A. Silem, J.-M. Albertini, 2002 (art. : Law (Syst\u00e8me bancaire de John))", + "Histoire du syst\u00e8me de John Law, 1716-1720 / N. Dutot, 2020", + "The medals concerning John Law and the Mississippi system / J. W. Adams, 2005" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Mis en place progressivement \u00e0 partir de 1716, le Syst\u00e8me de Law constitue la premi\u00e8re exp\u00e9rience de papier-monnaie men\u00e9e en France. Il a pour objectif initial d'assainir les finances publiques fran\u00e7aises en facilitant le commerce et l'investissement. Syst\u00e8me \u00e0 l'origine des premi\u00e8res grandes \u00e9missions de titres boursiers. La banque royale de John Law, autoris\u00e9e par le r\u00e9gent, \u00e9met des billets \u00e0 cours forc\u00e9 en 1718 et la Compagnie du Mississipi lanc\u00e9e en 1717 fait l'objet d'une sp\u00e9culation \u00e9ffr\u00e9n\u00e9e qui se terminera en faillite en 1720. La banqueroute du syst\u00e8me de Law retardera par la suite l'emploi de la monnaie fiduciaire et la cr\u00e9ation d'une banque centrale en France" ], "noteType": "general" } ], "type": "bf:Topic", - "deleted": "2022-08-25T10:47:31.616254+00:00", + "broader": [ + { + "authorized_access_point": "Histoire \u00e9conomique - 1600-1750" + }, + { + "authorized_access_point": "France - 1715-1723 (R\u00e9gence)" + } + ], + "related": [ + { + "authorized_access_point": "Banqueroute" + }, + { + "authorized_access_point": "Papier-monnaie" + }, + { + "authorized_access_point": "Sp\u00e9culation" + } + ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/083622519", + "value": "http://www.idref.fr/261107119", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb14603811b", + "value": "http://catalogue.bnf.fr/ark:/12148/cb180021330", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18002133", "source": "BNF" } ], "classification": [ { - "name": "Droit", + "name": "Economie", "type": "bf:ClassificationDdc", - "classificationPortion": "340" + "classificationPortion": "330" + }, + { + "name": "Histoire de la France (depuis 486)", + "type": "bf:ClassificationDdc", + "classificationPortion": "944" } ], "variant_access_point": [ - "XXXXX" + "Law, Syst\u00e8me bancaire de", + "Law, Syst\u00e8me de", + "Mississippi system", + "Syst\u00e8me bancaire de John Law", + "Syst\u00e8me du Mississipi" ], - "authorized_access_point": "R\u00e9vision" + "authorized_access_point": "Syst\u00e8me de Law" }, { - "md5": "4ad26a8d36417065fefa81ea7b0f2348", - "pid": "092468675", + "md5": "0b0eac7dad6927431ea57d2822ee6c09", + "pid": "261901915", "note": [ { "label": [ - "Illustrated glossary of protoctista, 1992", - "Introductory phycology / F. R. Trainor, 1988" + "S'emploie uniquement en subdivision aux collectivit\u00e9s (\u00e0 l'exception des types de collectivit\u00e9s) et aux personnes", + "Pour l'application g\u00e9n\u00e9rale de cette subdivision, voir les notes sous le renvoi g\u00e9n\u00e9ral Et [nom g\u00e9ographique]" ], - "noteType": "dataSource" + "noteType": "general" } ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Algues" - }, - { - "authorized_access_point": "Microorganismes" - } - ], - "related": [ - { - "authorized_access_point": "Algues unicellulaires" + "authorized_access_point": "Et l'\u00c9gypte" } ], "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Microalgues benthiques" - } - ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/092468675", + "value": "http://www.idref.fr/261901915", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb150116468", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18007814v", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18007814", "source": "BNF" } ], "classification": [ { - "name": "Botanique", "type": "bf:ClassificationDdc", - "classificationPortion": "580" + "classificationPortion": "915" } ], - "variant_access_point": [ - "Micro-algues" - ], - "authorized_access_point": "Microalgues" + "authorized_access_point": "Et Alexandrie" }, { - "md5": "578c392be74219d8be719c0739bd3457", - "pid": "098272225", + "md5": "15df1110b08037a7ce2e49e306bf8379", + "pid": "263499758", "note": [ { "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures turques" + "S'emploie uniquement en subdivision aux livres ou groupes de livres de l'Ancien et du Nouveau Testament, par ex. : Bible. A.T.. Exode -- Relation avec Jonas", + "On \u00e9tablit une vedette-mati\u00e8re additionnelle inverse, par ex. : Bible. A.T.. Jonas -- Relation avec l'Exode" ], "noteType": "general" } ], - "type": "bf:Temporal", - "related": [ + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Litt\u00e9rature turque - 1839-1923" + "authorized_access_point": "Relation avec les Petits Proph\u00e8tes" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/098272225", + "value": "http://www.idref.fr/263499758", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15048183d", + "value": "http://catalogue.bnf.fr/ark:/12148/cb180221609", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18022160", "source": "BNF" } ], "classification": [ { - "name": "Litt\u00e9ratures", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "200" } ], - "authorized_access_point": "1839-1923" + "variant_access_point": [ + "Relation avec le Livre de Jonas" + ], + "authorized_access_point": "Relation avec Jonas" }, { - "md5": "e936146abaec4cf19ad9b65d7923015f", - "pid": "101481241", - "note": [ + "md5": "129caa0ca7a8abffbb651b6a794a6f1a", + "pid": "263906442", + "type": "bf:Topic", + "related": [ { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures grecques modernes", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature grecque moderne, celle-ci servant de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires grecs modernes" - ], - "noteType": "general" + "authorized_access_point": "Estonien (langue)" + }, + { + "authorized_access_point": "Chansons estoniennes" + }, + { + "authorized_access_point": "Po\u00e9sie estonienne" } ], - "type": "bf:Temporal", - "related": [ + "bnf_type": "genre/forme Rameau", + "closeMatch": [ { - "authorized_access_point": "Litt\u00e9rature grecque moderne - 1820-1880" + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "https://authorities.loc", + "source": "LCSH" + } + ], + "authorized_access_point": "Songs, Finnish" } ], - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/101481241", + "value": "http://www.idref.fr/263906442", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15061397c", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18026157c", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18026157", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Musique", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "780" } ], - "authorized_access_point": "1820-1880" + "authorized_access_point": "M\u00e9lodies estoniennes" }, { - "md5": "4182e95d44e0497089f72a549aa6e5de", - "pid": "101481330", + "md5": "2c44e3f88d870785bdc5333c14aaff5d", + "pid": "264222423", "note": [ { "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures irlandaises (ga\u00e9liques)", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature irlandaise (ga\u00e9lique), celle-ci servant de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires irlandais (ga\u00e9liques)" + "S'emploie \u00e9galement en subdivision" ], "noteType": "general" } ], - "type": "bf:Temporal", - "related": [ + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Litt\u00e9rature irlandaise (ga\u00e9lique) - Avant 1200" + "authorized_access_point": "Colonies" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/101481330", + "value": "http://www.idref.fr/264222423", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15061668m", + "value": "http://catalogue.bnf.fr/ark:/12148/cb17996787t", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "915" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "950" } ], - "authorized_access_point": "Avant 1200" + "authorized_access_point": "Colonies australiennes" }, { - "md5": "04b4376d4bd30883f3f73c786885e89d", - "pid": "101481349", - "note": [ + "md5": "10708fb22e322305221b88aae9679cc7", + "pid": "264225260", + "type": "bf:Topic", + "broader": [ { - "label": [ - "S'emploie uniquement en subdivision chronologique [sans subd. g\u00e9ogr.] aux litt\u00e9ratures irlandaises (ga\u00e9liques)", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature irlandaise (ga\u00e9lique), qui sert de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires irlandais (ga\u00e9liques)" - ], - "noteType": "general" + "authorized_access_point": "Roman canadien de langue anglaise" + }, + { + "authorized_access_point": "Roman policier canadien" } ], - "type": "bf:Temporal", - "related": [ + "bnf_type": "genre/forme Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85037272", + "source": "LCSH" + } + ], + "authorized_access_point": "Detective and mystery stories, Canadian" + }, { - "authorized_access_point": "Litt\u00e9rature irlandaise (ga\u00e9lique) - 1200-1550" + "source": "RVMLaval", + "authorized_access_point": "Roman policier canadien-anglais" } ], - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/101481349", + "value": "http://www.idref.fr/264225260", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb150616798", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18024108p", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18024108", "source": "BNF" } ], "classification": [ + { + "name": "Probl\u00e8mes et services sociaux", + "type": "bf:ClassificationDdc", + "classificationPortion": "360" + }, { "name": "Histoire et critique litt\u00e9raires", "type": "bf:ClassificationDdc", @@ -10070,466 +30467,621 @@ } ], "variant_access_point": [ - "1200-1550" + "Roman policier canadien-anglais" ], - "authorized_access_point": "1200-1550" + "authorized_access_point": "Roman policier canadien de langue anglaise" }, { - "md5": "b89cb0af4e732ec47b5e8cb12c83ae1d", - "pid": "101481438", + "md5": "5e0439aa928204e51e8eccef084ea386", + "pid": "264325974", "note": [ { "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures grecques modernes et hispano-am\u00e9ricaines", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec les vedettes Litt\u00e9rature grecque moderne et Litt\u00e9rature hispano-am\u00e9ricaine, celles-ci servant de vedettes mod\u00e8les. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires grecs modernes et hispano-am\u00e9ricains" + "Le Japon : dict. et civilisation / L. Fr\u00e9d\u00e9ric, 1996", + "Hist. politique du Japon de 1853 \u00e0 nos jours / E. Dufourmont, 2020 : Zainichi ch\u00f4senjin", + "La langue japonaise est-elle la \"m\u00e8re\" des Zainichi ? / A. Hosoi [in] Transtext(e)s transcultures 2013, 8", + "Zainichi, les Cor\u00e9ens du Japon / M. Lesage [in] Journal du Japon, 2020-11-08 - https://www.journaldujapon.com (2022-03-21)", + "Routledge handbook of Japanese culture and society / V. Lyon Bestor, T. C. Bestor, 2011 : Zainichi Koreans" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Cor\u00e9ens \u00e9tablis au Japon entre 1910 et 1945 et leurs descendants. Le nom donn\u00e9 par les Japonais est p\u00e9joratif et signifie \u00e0 l'origine \"soleil de gauche\" ou \"ceux qui r\u00e9sident au Japon", + "L'adjectif ethnique correspondant est \"zainichi\". Il est invariable" ], "noteType": "general" } ], - "type": "bf:Temporal", - "related": [ + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Litt\u00e9rature grecque moderne" + "authorized_access_point": "Cor\u00e9ens" }, { - "authorized_access_point": "Litt\u00e9rature hispano-am\u00e9ricaine - 1880-1920" + "authorized_access_point": "Ethnologie - Japon" + } + ], + "related": [ + { + "authorized_access_point": "Cor\u00e9e - 1910-1945 (Occupation japonaise)" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/101481438", + "value": "http://www.idref.fr/264325974", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb150619611", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18004124h", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "390" } ], "variant_access_point": [ - "1880-1920" + "Cor\u00e9ens (Zainichi)", + "Cor\u00e9ens zainichi", + "Zainichi ch\u00f4senjin", + "Zainichi kankokuch\u00f4senjin" ], - "authorized_access_point": "1880-1920" + "authorized_access_point": "Zainichi" }, { - "md5": "3c1949e3482ef3a066e371376f6ac5f7", - "pid": "107841363", + "md5": "242a265e438b7af9e59e05047655ac28", + "pid": "264387414", "note": [ { "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures bretonnes", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature bretonne, qui sert de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires bretons" + "Encycl. Larousse (art. : Guyana) - https://www.larousse.fr", + "Robert encyclop\u00e9dique des noms propres, 2008 (art. : Guyana) : Guyanais ou Guyaniens", + "Nouveau petit Robert 2009 (partie d\u00e9riv\u00e9s des noms propres) : guyanais, aise ou guyanien, ienne (2022-03-31)" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Sous cette vedette, obligatoirement suivie d'une subdivision g\u00e9ographique ou de la subdivision : \u00c0 l'\u00e9tranger, directement ou apr\u00e8s une subdivision de sujet, on trouve les documents sur les Guyaniens hors de la Guyana. Les documents sur les Guyaniens en Guyana se trouvent sous des vedettes-mati\u00e8re telles que : Moeurs et coutumes -- Guyana ; etc" ], "noteType": "general" } ], - "type": "bf:Temporal", - "related": [ + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ethnologie - Guyana" + } + ], + "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Am\u00e9ricains d'origine guyanienne" + } + ], + "closeMatch": [ { - "authorized_access_point": "Breton (langue) - +* 1100......- 1659......+:1100-1659: (moyen breton)" + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85058026", + "source": "LCSH" + } + ], + "authorized_access_point": "Guyanese" }, { - "authorized_access_point": "Litt\u00e9rature bretonne - 1100-1659" + "source": "RVMLaval", + "authorized_access_point": "Guyanais" } ], - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/107841363", + "value": "http://www.idref.fr/264387414", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15089445r", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18006303k", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18006303", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "390" } ], - "authorized_access_point": "1100-1659" + "variant_access_point": [ + "Guyanais (de la Guyana)" + ], + "authorized_access_point": "Guyaniens" }, { - "md5": "0d3763cb922c2fd37033e843a0aee2ec", - "pid": "108812987", + "md5": "e2ecb16cee56f32967197276f6d4fb63", + "pid": "264387538", "note": [ { "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures polonaises", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature polonaise, celle-ci servant de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires polonais" + "Grand dict. encyclop\u00e9dique Larousse (art. : Bergame)", + "Robert encyclop\u00e9dique des noms propres, 2008 (art. : Bergame)", + "Tr\u00e9sor de la langue fran\u00e7aise (en ligne) : bergamasque" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Sous cette vedette, obligatoirement suivie d'une subdivision g\u00e9ographique ou de la subdivision : \u00c0 l'\u00e9tranger, directement ou apr\u00e8s une subdivision de sujet, on trouve les documents sur les Bergamasques hors de la ville ou de la province de Bergame. Les documents sur les Bergamasques \u00e0 Bergame se trouvent sous des vedettes-mati\u00e8re telles que : Moeurs et coutumes -- Bergame (italie) ; Moeurs et coutumes -- Bergame (Italie ; province) ; etc" ], "noteType": "general" } ], - "type": "bf:Temporal", - "related": [ + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Litt\u00e9rature polonaise - 1864-1918" + "authorized_access_point": "Ethnologie - Italie" } ], "bnf_type": "sujet Rameau", + "narrower": [ + { + "authorized_access_point": "Voyageurs bergamasques" + } + ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/108812987", + "value": "http://www.idref.fr/264387538", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15093914m", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18005762z", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18005762", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "390" } ], - "authorized_access_point": "1864-1918" + "authorized_access_point": "Bergamasques" }, { - "md5": "1a46214a9a76d7e9d622aa72f5832b94", - "pid": "109094883", + "md5": "03421b86a63dfce10e2019cf73216294", + "pid": "26438833X", "note": [ { "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures russes" + "Grand dict. encyclop\u00e9dique Larousse : percheron, onne", + "Nouveau petit Robert 2009 (partie d\u00e9riv\u00e9s des noms propres) (art. : Perche (France)) : percheron, onne", + "Du Perche au Canada : qui \u00e9taient ces colons fran\u00e7ais du XVIIIe si\u00e8cle ? [in] Geo Histoire, 2021, 55 - https://www.geo.fr (2022-03-29)" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Sous cette vedette, obligatoirement suivie d'une subdivision g\u00e9ographique ou de la subdivision : \u00c0 l'\u00e9tranger, directement ou apr\u00e8s une subdivision de sujet, on trouve les documents sur les Percherons hors du Perche. Les documents sur les Percherons dans le Perche se trouvent sous des vedettes-mati\u00e8re telles que : Moeurs et coutumes -- Perche (France) ; etc" ], "noteType": "general" } ], - "type": "bf:Temporal", - "related": [ + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Litt\u00e9rature russe - 1890-1917" + "authorized_access_point": "Ethnologie - France" } ], "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Percherons" + } + ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/109094883", + "value": "http://www.idref.fr/26438833X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb150952323", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18005688c", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18005688", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "390" } ], - "authorized_access_point": "1890-1917" + "variant_access_point": [ + "Percherons (habitants du Perche)" + ], + "authorized_access_point": "Percherons" }, { - "md5": "f173d2f46f7718f7d8a341764c9bd5e1", - "pid": "113531923", + "md5": "41ab63afa002aba90cf12ea9e579e799", + "pid": "271981423", "note": [ { "label": [ - "Grand Robert de la langue fran\u00e7aise, 2001", - "Les mots de la presse \u00e9crite / S. B\u00e9nard, 2002", - "Le synopsis : pr\u00e9senter et vendre ses sujets / A. Kerloc'h, 2007", - "Vocabulaire technique du cin\u00e9ma / V. Pinel, 1996" + "Paradoxographie et religion / M. Garc\u00eda Teijeiro, M. T. Molinos Tejada [in] Kernos : revue internationale et pluridisciplinaire de religion grecque antique, 1994, 7 - https://journals.openedition.org/kernos (2023-08-29)", + "The Oxford dict. of Byzantium / A. P. Kazhdan, 2005 - https://www.oxfordreference.com (2023-08-29)", + "Religion past and present - https://referenceworks.brillonline.com (2023-08-29)", + "The Oxford classical dict. / S. Hornblower, A. Spawforth, 2005 : paradoxographers - https://www.oxfordreference.com (2023-08-29)", + "Wikidata : paradoxography - https://www.wikidata.org/wiki/Q686892 (2023-08-29)" ], "noteType": "dataSource" - }, - { - "label": [ - "Document de synth\u00e8se d\u00e9crivant la totalit\u00e9 ou un aper\u00e7u d'une \u0153uvre", - "S'emploie \u00e9galement en subdivision" - ], - "noteType": "general" } ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Sc\u00e9narios" + "authorized_access_point": "Litt\u00e9rature antique" } ], "related": [ { - "authorized_access_point": "\u00c9criture journalistique" + "authorized_access_point": "Merveilleux (litt\u00e9rature)" }, { - "authorized_access_point": "R\u00e9sum\u00e9s analytiques" - } - ], - "bnf_type": "genre/forme Rameau", - "closeMatch": [ - { - "source": "LCGFT", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/genreForms/gf2014026038", - "source": "LCGFT" - }, - "authorized_access_point": "Abstracts" + "authorized_access_point": "Paradoxe" } ], + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/113531923", + "value": "http://www.idref.fr/271981423", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15517814h", + "value": "http://catalogue.bnf.fr/ark:/12148/cb180991357", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18099135", "source": "BNF" } ], "classification": [ { - "name": "Sciences de l'information", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", "type": "bf:ClassificationDdc", - "classificationPortion": "020" + "classificationPortion": "200" }, { - "name": "Audiovisuel", + "name": "Po\u00e9sie", "type": "bf:ClassificationDdc", - "classificationPortion": "791" + "classificationPortion": "801" } ], "variant_access_point": [ - "Lancement (cin\u00e9ma)", - "Notes d'intention (journalisme)", - "Pr\u00e9paration (cin\u00e9ma)", - "Synopsis (cin\u00e9ma)", - "Synopsis (journalisme)", - "Synopsis de film" + "Paradoxographes" ], - "authorized_access_point": "Synopsis" + "authorized_access_point": "Paradoxographie" }, { - "md5": "6d2d69e97c8233af935fb7ef77a61ce7", - "pid": "11353213X", + "md5": "d654131ba2e6a9e22901bbff4e53eb03", + "pid": "273372734", "note": [ { "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures russes et sovi\u00e9tiques" + "F\u00e9lix Amiot : un industriel normand de l'a\u00e9ronautique et de la construction navale / J. Lecarpentier, 2020" ], - "noteType": "general" + "noteType": "dataSource" } ], - "type": "bf:Temporal", - "related": [ + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Litt\u00e9rature russe - 1917-1945" + "authorized_access_point": "Avions" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/11353213X", + "value": "http://www.idref.fr/273372734", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15518714g", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18113037q", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18113037", "source": "BNF" } ], + "relation_pid": { + "type": "redirect_from", + "value": "272748889" + }, "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Sciences appliqu\u00e9es", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "600" } ], - "authorized_access_point": "1917-1945" + "variant_access_point": [ + "Soci\u00e9t\u00e9 d'emboutissage et de constructions m\u00e9caniques (avions)" + ], + "authorized_access_point": "Amiot (avions)" }, { - "md5": "4c4b882a6490c55d9a768902585ec8a5", - "pid": "11393260X", + "md5": "2df02eb20d3a130ac80cc18679ddff35", + "pid": "273372742", "note": [ { "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures vietnamiennes", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature vietnamienne, celle-ci servant de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires vietnamiens" + "Jane's encycl. of aviation, M. J. Taylor, 1980" ], - "noteType": "general" + "noteType": "dataSource" } ], - "type": "bf:Temporal", - "related": [ + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Litt\u00e9rature vietnamienne - 1945-1975" + "authorized_access_point": "Avions" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/11393260X", + "value": "http://www.idref.fr/273372742", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb155219612", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18113041z", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18113041", "source": "BNF" } ], + "relation_pid": { + "type": "redirect_from", + "value": "272765120" + }, "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Sciences appliqu\u00e9es", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "600" } ], - "authorized_access_point": "1945-1975" + "authorized_access_point": "Farman (avions)" }, { - "md5": "bddbfb2aee8f1967592209a8c90dc206", - "pid": "119256347", + "md5": "380d8a5be2e2f51f522c1b866f292c42", + "pid": "273372750", + "note": [ + { + "label": [ + "Aviation fran\u00e7aise - https://www.aviafrance.com (2023-11-09)" + ], + "noteType": "dataSource" + } + ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Roman arabe" + "authorized_access_point": "Avions" } ], - "bnf_type": "genre/forme Rameau", - "narrower": [ + "bnf_type": "sujet Rameau", + "identifiedBy": [ { - "authorized_access_point": "Roman historique \u00e9gyptien" + "type": "uri", + "value": "http://www.idref.fr/273372750", + "source": "IDREF" }, { - "authorized_access_point": "Roman historique libanais" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18113046p", + "source": "BNF" }, { - "authorized_access_point": "Roman historique syrien" + "type": "bf:Nbn", + "value": "FRBNF18113046", + "source": "BNF" } ], - "closeMatch": [ + "relation_pid": { + "type": "redirect_from", + "value": "272860972" + }, + "classification": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh95003231", - "source": "LCSH" - }, - "authorized_access_point": "Historical fiction, Arabic" + "name": "Economie", + "type": "bf:ClassificationDdc", + "classificationPortion": "330" + }, + { + "name": "Sciences appliqu\u00e9es", + "type": "bf:ClassificationDdc", + "classificationPortion": "600" + } + ], + "authorized_access_point": "Hanriot (avions)" + }, + { + "md5": "d53b3d89e2bc06c119ad43d42063866d", + "pid": "273372777", + "note": [ + { + "label": [ + "Salmson : la belle m\u00e9canique fran\u00e7aise / C. et L. Chevalier, 2010", + "Salmson register 1921-1930 / D. L. Hill, 2007", + "The Salmson story : David & Charles / C. Draper, 1974" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Avions" } ], + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/119256347", + "value": "http://www.idref.fr/273372777", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15575719q", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181130549", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18113054", "source": "BNF" } ], + "relation_pid": { + "type": "redirect_from", + "value": "272925985" + }, "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Economie", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "330" }, { - "name": "Histoire et g\u00e9ographie (g\u00e9n\u00e9ralit\u00e9s)", + "name": "Sciences appliqu\u00e9es", "type": "bf:ClassificationDdc", - "classificationPortion": "900" + "classificationPortion": "600" } ], - "authorized_access_point": "Roman historique arabe" + "authorized_access_point": "Salmson (avions)" }, { - "md5": "50cbaf6aa76ea3ca989605f6b131bfb7", - "pid": "12007432X", + "md5": "e84a690ed4c98a8252d9aa14998f833a", + "pid": "273372785", "note": [ { "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures espagnoles, catalanes et galiciennes" + "Bois d'aviation / J.-M. Ballu, 2013", + "Notice technique de l'h\u00e9lice Chauvi\u00e8re, type 351 pour avion Morane 406 \u00e0 moteur Hispano 12 Y 31 (liaison \u00e0 cannelures), 1939" ], - "noteType": "general" + "noteType": "dataSource" } - ], - "type": "bf:Temporal", - "related": [ - { - "authorized_access_point": "Litt\u00e9rature catalane - 1900-1939" - }, + ], + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Litt\u00e9rature espagnole - 1900-1939" + "authorized_access_point": "H\u00e9lices (a\u00e9ronautique)" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/12007432X", + "value": "http://www.idref.fr/273372785", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15586308d", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18113058p", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18113058", "source": "BNF" } ], + "relation_pid": { + "type": "redirect_from", + "value": "272965758" + }, "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Sciences appliqu\u00e9es", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "600" } ], - "authorized_access_point": "1900-1939" + "authorized_access_point": "Chauvi\u00e8re (h\u00e9lices a\u00e9riennes)" }, { - "md5": "74d6f86c2c07e042ec9434ddaced6255", - "pid": "120593904", + "md5": "931d0fc3b6dec95094ce23eff52a7285", + "pid": "276037685", "note": [ { "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures grecques modernes", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature grecque moderne, celle-ci servant de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires grecs modernes" + "Sous cette vedette, on trouve les micronouvelles am\u00e9ricaines italophones des \u00c9tats-Unis" ], "noteType": "general" } ], - "type": "bf:Temporal", - "related": [ + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Litt\u00e9rature grecque moderne - 1920-1945" + "authorized_access_point": "Litt\u00e9rature am\u00e9ricaine de langue italienne" } ], - "bnf_type": "sujet Rameau", + "bnf_type": "genre/forme Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/120593904", + "value": "http://www.idref.fr/276037685", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15594731r", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181291307", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18129130", "source": "BNF" } ], @@ -10540,217 +31092,248 @@ "classificationPortion": "800" } ], - "authorized_access_point": "1920-1945" + "variant_access_point": [ + "Micronouvelles italiennes - \u00c9tats-Unis", + "Micronouvelles italophones am\u00e9ricaines" + ], + "authorized_access_point": "Micronouvelles am\u00e9ricaines de langue italienne" }, { - "md5": "76dc58d441124bc3aa45378c3c2c1592", - "pid": "130730173", + "md5": "f56031d448105ba6174fd6bfcd784e70", + "pid": "277418216", "note": [ { "label": [ - "Nouveau petit Robert 2009 : d\u00e9mat\u00e9rialisation", - "Vocabulaire juridique / G. Cornu, 2007 : d\u00e9mat\u00e9rialisation", - "Conseil des ministres du 13 f\u00e9vrier 2008. Le plan de d\u00e9mat\u00e9rialisation des proc\u00e9dures juridictionnelles - https://www.vie-publique.fr (2022-07-22)", - "Ordonnance n\u00b02005-1516 du 8 d\u00e9cembre 2005 relative aux \u00e9changes \u00e9lectroniques entre les usagers et les autorit\u00e9s administratives et entre les autorit\u00e9s administratives" - ], - "noteType": "dataSource" - }, - { - "label": [ - "En droit, la d\u00e9mat\u00e9rialisation (ou suppression de support mat\u00e9riel tangible) consiste \u00e0 transformer un flux de donn\u00e9es num\u00e9riques en fichiers informatiques et \u00e0 leur restituer selon leur domaine une valeur juridique" + "Voir aussi aux r\u00e9gions et aux pays africains" ], - "noteType": "general" + "noteType": "seeReference" } ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Droit - Informatique" - }, - { - "authorized_access_point": "\u00c9change \u00e9lectronique d'information" - }, - { - "authorized_access_point": "Informatique - Droit" + "authorized_access_point": "Ethnologie - Iran" } ], "related": [ { - "authorized_access_point": "Authentification" - }, - { - "authorized_access_point": "D\u00e9mat\u00e9rialisation (informatique)" - }, - { - "authorized_access_point": "Num\u00e9risation - Droit" - }, - { - "authorized_access_point": "Preuve \u00e9lectronique" + "authorized_access_point": "Africains" } ], "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Communication \u00e9lectronique de pi\u00e8ces (droit)" - }, - { - "authorized_access_point": "Contrats \u00e9lectroniques" - }, + "identifiedBy": [ { - "authorized_access_point": "Contrats informatiques" + "type": "uri", + "value": "http://www.idref.fr/277418216", + "source": "IDREF" }, { - "authorized_access_point": "E-fiscalit\u00e9" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181432712", + "source": "BNF" }, { - "authorized_access_point": "E-justice" - }, + "type": "bf:Nbn", + "value": "FRBNF18143271", + "source": "BNF" + } + ], + "relation_pid": { + "type": "redirect_from", + "value": "274969289" + }, + "classification": [ { - "authorized_access_point": "Monnaie \u00e9lectronique" - }, + "name": "Ethnologie, anthropologie, folklore", + "type": "bf:ClassificationDdc", + "classificationPortion": "390" + } + ], + "authorized_access_point": "Iraniens d'origine africaine" + }, + { + "md5": "73a0006594c2c57b99b0e086f6b33984", + "pid": "278746896", + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Signatures \u00e9lectroniques" + "authorized_access_point": "Roman irlandais" } ], + "bnf_type": "genre/forme Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/130730173", + "value": "http://www.idref.fr/278746896", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15894744m", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181471843", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18147184", "source": "BNF" } ], "classification": [ { - "name": "Droit", + "name": "Art et science militaires", "type": "bf:ClassificationDdc", - "classificationPortion": "340" + "classificationPortion": "355" }, { + "name": "Histoire et critique litt\u00e9raires", "type": "bf:ClassificationDdc", - "classificationPortion": "621" + "classificationPortion": "800" }, { - "name": "Gestion et organisation de l'entreprise", + "name": "Histoire et g\u00e9ographie (g\u00e9n\u00e9ralit\u00e9s)", "type": "bf:ClassificationDdc", - "classificationPortion": "650" + "classificationPortion": "900" } ], - "variant_access_point": [ - "D\u00e9mat\u00e9rialisation (droit)", - "D\u00e9mat\u00e9rialisation (informatique) et droit", - "D\u00e9mat\u00e9rialisation (informatique) - Droit", - "Droit et d\u00e9mat\u00e9rialisation des documents" - ], - "authorized_access_point": "Actes juridiques \u00e9lectroniques" + "authorized_access_point": "Roman de guerre irlandais" }, { - "md5": "2430c99d3336c93178b6ada43682c2eb", - "pid": "132184214", + "md5": "96be15fb7d9605a68393dbc569c45352", + "pid": "27874690X", "note": [ { "label": [ - "Petit Larousse 2005", - "Encycl universalis (art. : Enregistrement) - http://www.universalis-edu.com (2009-03-20)", - "Dict. de la musique / M. Vignal, 2005", - "Dict. des mots de la musique / J. Siron, 2006", - "Monter, sampler : l'\u00e9chantillonnage g\u00e9n\u00e9ralis\u00e9, 2000" + "Wikidata : Goncourt des animaux - https://www.wikidata.org/wiki/Q56256265 (2024-05-22)", + "Wikip\u00e9dia : Goncourt des animaux - https://fr.wikipedia.org (2024-05-22)", + "Le palmar\u00e8s du Prix Litt\u00e9raire 30 Millions d'Amis - http://www.lalettredulibraire.com (2024-05-22)", + "120 ans de prix Goncourt : une histoire litt\u00e9raire fran\u00e7aise / J.-Y. Le Naour, C. Valenti, 2023", + "Vincent Maillard, Prix Litt\u00e9raire 30 Millions d'Amis / M. De Roux, A. Develey [in] Le Figaro, 23 nov. 2021" ], "noteType": "dataSource" + }, + { + "label": [ + "Prix litt\u00e9raire 30 millions d'amis, plus couramment appel\u00e9 le Goncourt des animaux, est un prix annuel qui r\u00e9compense un roman ou un essai qui met \u00e0 l'honneur les animaux" + ], + "noteType": "general" } ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Boucles (musique)" + "authorized_access_point": "Prix litt\u00e9raires - France" } ], - "related": [ + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/27874690X", + "source": "IDREF" + }, { - "authorized_access_point": "\u00c9chantillonneur (instrument de musique)" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181480099", + "source": "BNF" }, { - "authorized_access_point": "Synth\u00e8se sonore" + "type": "bf:Nbn", + "value": "FRBNF18148009", + "source": "BNF" } ], - "bnf_type": "sujet Rameau", - "closeMatch": [ + "classification": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh96010851", - "source": "LCSH" - }, - "authorized_access_point": "Sampling (Sound)" + "name": "G\u00e9n\u00e9ralit\u00e9s", + "type": "bf:ClassificationDdc", + "classificationPortion": "000" }, { - "source": "RVMLaval", - "authorized_access_point": "\u00c9chantillonnage de sons" + "name": "Histoire et critique litt\u00e9raires", + "type": "bf:ClassificationDdc", + "classificationPortion": "800" + } + ], + "variant_access_point": [ + "30 millions d'amis, Prix litt\u00e9raire", + "Goncourt des animaux", + "Goncourt des animaux, Prix", + "Prix litt\u00e9raire 30 millions d'amis" + ], + "authorized_access_point": "Prix Goncourt des animaux" + }, + { + "md5": "6e825d9d108548d15eba60e1ed742e3a", + "pid": "278746918", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Roman canadien de langue anglaise" } ], + "bnf_type": "genre/forme Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/132184214", + "value": "http://www.idref.fr/278746918", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb159798158", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18148067g", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18148067", "source": "BNF" } ], "classification": [ { + "name": "Probl\u00e8mes et services sociaux", "type": "bf:ClassificationDdc", - "classificationPortion": "621" + "classificationPortion": "360" }, { - "name": "Musique", + "name": "Histoire et critique litt\u00e9raires", "type": "bf:ClassificationDdc", - "classificationPortion": "780" + "classificationPortion": "800" } ], "variant_access_point": [ - "\u00c9chantillonnage de sons", - "Sampling (musique)", - "Sons, \u00c9chantillonnage de" + "Roman \u00e0 suspense anglophone canadien", + "Roman \u00e0 suspense canadien-anglais", + "Roman \u00e0 suspense canadien de langue anglaise", + "Thriller (roman) anglophone canadien", + "Thriller (roman) canadien-anglais" ], - "authorized_access_point": "\u00c9chantillonnage (musique)" + "authorized_access_point": "Thriller (roman) canadien de langue anglaise" }, { - "md5": "bc506a66471fbe8f0f5e526a3761dde9", - "pid": "144664119", - "note": [ - { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures chinoises", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature chinoise, celle-ci servant de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires chinois" - ], - "noteType": "general" - } - ], - "type": "bf:Temporal", - "related": [ + "md5": "d8a342230d76f2586e0309df71f3c1bc", + "pid": "278746926", + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Litt\u00e9rature chinoise - 1976-...." + "authorized_access_point": "Th\u00e9\u00e2tre (genre litt\u00e9raire) canadien de langue fran\u00e7aise" } ], - "bnf_type": "sujet Rameau", + "bnf_type": "genre/forme Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/144664119", + "value": "http://www.idref.fr/278746926", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb16203928x", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181480873", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18148087", "source": "BNF" } ], @@ -10761,103 +31344,121 @@ "classificationPortion": "800" } ], - "authorized_access_point": "1976-...." + "variant_access_point": [ + "Th\u00e9\u00e2tre documentaire canadien-fran\u00e7ais", + "Th\u00e9\u00e2tre documentaire francophone canadien" + ], + "authorized_access_point": "Th\u00e9\u00e2tre documentaire canadien de langue fran\u00e7aise" }, { - "md5": "603ab88829ef99cecec86002a4d6d925", - "pid": "146321944", - "note": [ - { - "label": [ - "Wikipedia - http://fr.wikipedia.org (2010-08-17)", - "Encycl. universalis (art. : Musique techno) : hardcore - http://www.universalis-edu.com (2010-08-17)", - "Global tekno : voyage initiatique au coeur de la musique \u00e9lectronique / J.-Y. Leloup, J.-P. Renoult, 1999 : hardcore", - "Dict. du rock / M. Assayas, 2000 (art. : Techno) : hardcore", - "Dict. des mots de la musique / J. Siron, 2006 : hardcore techno", - "Allmusic : hardcore techno - http://www.allmusic.com (2010-08-17)" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Version dure, rapide et industrielle de la techno, apparue dans les ann\u00e9es 1990" - ], - "noteType": "general" - } - ], + "md5": "027114afbea2b62abe8292f139522ff5", + "pid": "278746934", "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Techno (musique)" + "authorized_access_point": "Roman mexicain" } ], "bnf_type": "genre/forme Rameau", - "narrower": [ + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/278746934", + "source": "IDREF" + }, { - "authorized_access_point": "Breakcore" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18148094c", + "source": "BNF" }, { - "authorized_access_point": "Gabber" + "type": "bf:Nbn", + "value": "FRBNF18148094", + "source": "BNF" } ], - "closeMatch": [ + "classification": [ { - "source": "RVMLaval", - "authorized_access_point": "Techno hardcore (Musique)" + "name": "Sciences sociales", + "type": "bf:ClassificationDdc", + "classificationPortion": "300" + }, + { + "name": "Histoire et critique litt\u00e9raires", + "type": "bf:ClassificationDdc", + "classificationPortion": "800" + } + ], + "authorized_access_point": "Roman social mexicain" + }, + { + "md5": "73fb4c850629fb861791aed80b74c4f1", + "pid": "278746942", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Litt\u00e9rature burkinab\u00e9 pour la jeunesse" + }, + { + "authorized_access_point": "Roman burkinab\u00e9 de langue fran\u00e7aise" } ], + "bnf_type": "genre/forme Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/146321944", + "value": "http://www.idref.fr/278746942", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb162242755", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18148101t", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18148101", "source": "BNF" } ], "classification": [ { - "name": "Musique", + "name": "Histoire et critique litt\u00e9raires", "type": "bf:ClassificationDdc", - "classificationPortion": "780" + "classificationPortion": "800" } ], "variant_access_point": [ - "Hardcore techno" + "Roman francophone burkinab\u00e9 pour la jeunesse", + "Roman pour la jeunesse burkinab\u00e9 de langue fran\u00e7aise", + "Roman pour la jeunesse francophone burkinab\u00e9" ], - "authorized_access_point": "Techno hardcore" + "authorized_access_point": "Roman burkinab\u00e9 de langue fran\u00e7aise pour la jeunesse" }, { - "md5": "dd0f4736ac53ada15291000b4ccd8e12", - "pid": "146322134", - "note": [ - { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures indiennes (de l'Inde)", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature hindi, celle-ci servant de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires indiens (de l'Inde)" - ], - "noteType": "general" - } - ], - "type": "bf:Temporal", - "related": [ + "md5": "29c710f36d18cfc928897748cd91824d", + "pid": "278746950", + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Litt\u00e9rature hindi - 1947-...." + "authorized_access_point": "Litt\u00e9rature cor\u00e9enne" } ], - "bnf_type": "sujet Rameau", + "bnf_type": "genre/forme Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/146322134", + "value": "http://www.idref.fr/278746950", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb16225107n", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181481087", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18148108", "source": "BNF" } ], @@ -10868,107 +31469,176 @@ "classificationPortion": "800" } ], - "authorized_access_point": "1947-...." + "authorized_access_point": "Feel-good book cor\u00e9en" }, { - "md5": "b23f2521a9287cb5cf268e2c6e3eba8e", - "pid": "146774094", - "type": "bf:Topic", - "broader": [ + "md5": "ff602362ff27a613903ffe491d4c274a", + "pid": "278746969", + "note": [ { - "authorized_access_point": "Po\u00e9sie italienne" + "label": [ + "Wikidata - https://www.wikidata.org/wiki/Q1201953 (2024-05-23)", + "Wikip\u00e9dia : Deutsch als Fremdsprache - https://de.wikipedia.org (2024-05-23)", + "Deutsch als Fremdsprache : eine Einf\u00fchrung / H.-W. Huneke, W. Steinig, 2013", + "Ma\u00eetriser la communication professionnelle : en fran\u00e7ais et en langue \u00e9trang\u00e8re : allemand, anglais, espagnol, italien : BTS assistant de direction, BTS assistant trilingue, 1997", + "Optimal A1 : cours d'allemand langue \u00e9trang\u00e8re : glossaire allemand-fran\u00e7ais A1, 1994" + ], + "noteType": "dataSource" } ], - "related": [ - { - "authorized_access_point": "Litt\u00e9rature h\u00e9ro\u00ef-comique italienne" - }, + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Po\u00e9sie narrative italienne" + "authorized_access_point": "Allemand (langue)" } ], - "bnf_type": "genre/forme Rameau", + "bnf_type": "sujet Rameau", "closeMatch": [ { "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85044332", - "source": "LCSH" - }, - "authorized_access_point": "Epic poetry, Italian" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2008105237", + "source": "LCSH" + } + ], + "authorized_access_point": "German language--Study and teaching--Foreign speakers" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/278746969", + "source": "IDREF" }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85044288", - "source": "LCSH" - }, - "authorized_access_point": "Epic literature, Italian" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181481652", + "source": "BNF" }, { - "source": "RVMLaval", - "authorized_access_point": "Litt\u00e9rature \u00e9pique italienne" + "type": "bf:Nbn", + "value": "FRBNF18148165", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Education et enseignement", + "type": "bf:ClassificationDdc", + "classificationPortion": "370" }, { - "source": "RVMLaval", - "authorized_access_point": "Po\u00e9sie \u00e9pique italienne" + "name": "Langues et linguistique", + "type": "bf:ClassificationDdc", + "classificationPortion": "400" + } + ], + "variant_access_point": [ + "ALE", + "Allemand (langue) - \u00c9tude et enseignement -- Allophones", + "Allemand (langue) - \u00c9tude et enseignement -- \u00c9tudiants \u00e9trangers", + "Allemand (langue) - \u00c9tude et enseignement -- Non-anglophones", + "Allemand (langue \u00e9trang\u00e8re) - \u00c9tude et enseignement", + "Allemand (langue seconde)", + "Allemand comme langue \u00e9trang\u00e8re", + "DaF", + "Deutsch als Fremdsprache", + "German as a foreign language" + ], + "authorized_access_point": "Allemand langue \u00e9trang\u00e8re" + }, + { + "md5": "7f3154a87336a1783eece2f8b45bc3ee", + "pid": "278746977", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Roman australien" } ], + "bnf_type": "genre/forme Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/146774094", + "value": "http://www.idref.fr/278746977", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb120350248", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18148301c", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18148301", "source": "BNF" } ], "classification": [ + { + "name": "Probl\u00e8mes et services sociaux", + "type": "bf:ClassificationDdc", + "classificationPortion": "360" + }, { "name": "Histoire et critique litt\u00e9raires", "type": "bf:ClassificationDdc", "classificationPortion": "800" } ], - "authorized_access_point": "\u00c9pop\u00e9es italiennes" + "authorized_access_point": "Thriller (roman) australien" }, { - "md5": "87ba2c400541f4219fd0e91d33dc4883", - "pid": "148171095", + "md5": "e464072f8389db0b2749bdd403b24204", + "pid": "278746985", "note": [ { "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures bulgares", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature bulgare, celle-ci servant de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires bulgares" + "Wikip\u00e9dia : Prix Fran\u00e7oise-Sagan - https://fr.wikipedia.org (2024-05-23)", + "Prix Fran\u00e7oise Sagan - https://www.francoisesagan.fr/le-prix (2024-05-23)", + "Prix Fran\u00e7oise Sagan - https://www.livreshebdo.fr/prix-litteraires/tous-les-prix/prix-francoise-sagan (2024-05-22)" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Prix litt\u00e9raire cr\u00e9\u00e9 en 2010 par Denis Westhoff, fils de Fran\u00e7oise Sagan. Il r\u00e9compense chaque ann\u00e9e une oeuvre en langue fran\u00e7aise d'un auteur n'ayant pas une notori\u00e9t\u00e9 trop importante et n'ayant pas re\u00e7u de prix ou de r\u00e9compense majeure pr\u00e9c\u00e9demment" ], "noteType": "general" } ], - "type": "bf:Temporal", - "related": [ + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Litt\u00e9rature bulgare - 1878-1945" + "authorized_access_point": "Prix litt\u00e9raires - France" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/148171095", + "value": "http://www.idref.fr/278746985", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb162439173", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181483210", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18148321", "source": "BNF" } ], "classification": [ + { + "name": "G\u00e9n\u00e9ralit\u00e9s", + "type": "bf:ClassificationDdc", + "classificationPortion": "000" + }, { "name": "Histoire et critique litt\u00e9raires", "type": "bf:ClassificationDdc", @@ -10976,27 +31646,31 @@ } ], "variant_access_point": [ - "1878-1945" + "Fran\u00e7oise-Sagan, Prix", + "Fran\u00e7oise-Sagan, Prix litt\u00e9raire", + "Fran\u00e7oise Sagan, Prix", + "Fran\u00e7oise Sagan, Prix litt\u00e9raire", + "Prix Fran\u00e7oise Sagan", + "Prix litt\u00e9raire Fran\u00e7oise-Sagan", + "Prix litt\u00e9raire Fran\u00e7oise Sagan" ], - "authorized_access_point": "1878-1945" + "authorized_access_point": "Prix Fran\u00e7oise-Sagan" }, { - "md5": "4dd1808ef506277d02ae096cd1ea216b", - "pid": "16573762X", + "md5": "3b72a1ee21c2535c70699170c7e03ef7", + "pid": "278746993", "note": [ { "label": [ - "Dict. sanskrit-fran\u00e7ais / N. Stchoupak, L. Nitti, L. Renou, 1972", - "Dict. encyclop\u00e9dique du bouddhisme / P. Cornu, 2006", - "Brill's encycl. of Hinduism / K. A. Jacobsen, 2009-2015", - "Avidy\u0101 : a problem of truth and reality / E. A. Solomon, 1969", - "BnF Service indien, 2017-04-19" + "Prix Marcel Pagnol - https://www.marcel-pagnol.com/manifestations/prix-marcel-pagnol (2024-05-23)", + "Les cinq finalistes du prix Marcel Pagnol 2024 / E. Carreira [in] LivresHebdo, 30 avr. 2024", + "Attribution du prix Marcel-Pagnol 2024 / E. Carreira [in] L'Humanit\u00e9, 8 juin 2000" ], "noteType": "dataSource" }, { "label": [ - "Concept d'ignorance \u00e0 la base de tous les maux et de toutes les passions dans les diff\u00e9rentes \u00e9coles du bouddhisme" + "Prix litt\u00e9raire cr\u00e9\u00e9 en 2000 qui r\u00e9compense chaque ann\u00e9e un roman en langue fran\u00e7aise sur le th\u00e8me du souvenir d'enfance" ], "noteType": "general" } @@ -11004,69 +31678,59 @@ "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Bouddhisme - Doctrines" - } - ], - "related": [ - { - "authorized_access_point": "J\u00f1\u0101na-yoga" - }, - { - "authorized_access_point": "Sams\u0101ra" + "authorized_access_point": "Prix litt\u00e9raires - France" } ], "bnf_type": "sujet Rameau", - "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85010544", - "source": "LCSH" - }, - "authorized_access_point": "Avidy\u0101" - }, - { - "source": "RVMLaval", - "authorized_access_point": "Avidy\u0101" - } - ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/16573762X", + "value": "http://www.idref.fr/278746993", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb16641477s", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181483330", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18148333", "source": "BNF" } ], "classification": [ { - "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", + "name": "G\u00e9n\u00e9ralit\u00e9s", "type": "bf:ClassificationDdc", - "classificationPortion": "200" + "classificationPortion": "000" + }, + { + "name": "Histoire et critique litt\u00e9raires", + "type": "bf:ClassificationDdc", + "classificationPortion": "800" } ], "variant_access_point": [ - "Avijj\u0101", - "\u0905\u0935\u093f\u091c\u094d\u091c\u093e", - "Avvij\u0101", - "\u0905\u0935\u094d\u0935\u093f\u091c\u093e" + "Marcel-Pagnol, Prix", + "Marcel-Pagnol, Prix litt\u00e9raire", + "Marcel Pagnol, Prix", + "Marcel Pagnol, Prix litt\u00e9raire", + "Prix Marcel Pagnol", + "Prix litt\u00e9raire Marcel-Pagnol", + "Prix litt\u00e9raire Marcel Pagnol" ], - "authorized_access_point": "Avidy\u0101" + "authorized_access_point": "Prix Marcel-Pagnol" }, { - "md5": "97b00d6974086b6339c77a07803598c0", - "pid": "16719416X", + "md5": "a11e38f080397d23eb4aeb100520481c", + "pid": "278747000", "note": [ { "label": [ - "Nouveau petit Robert 2010", - "JurisClasseur Europe Trait\u00e9 > Fasc.100 : Union europ\u00e9enne.- Histoire de la construction europ\u00e9enne - Acte unique europ\u00e9en (1986-1987)", - "Le syst\u00e8me institutionnel europ\u00e9en ou l'affirmation d'une Europe puissance politique : l'enjeu des r\u00e9visions des trait\u00e9s / F. R. Barbaro, [s.d.]" + "Intervention en s\u00e9ance unique (ISU) : un projet novateur au CISSS de la Mont\u00e9r\u00e9gie-Ouest, [in] Portail Sant\u00e9 Mont\u00e9r\u00e9gie, 19 juin 2023 - https://www.santemonteregie.qc.ca (2024-05-23)", + "Probl\u00e8mes de d\u00e9pendance des enfants : Vitalit\u00e9 tente une nouvelle strat\u00e9gie / S. Paquette [in] Acadie nouvelle, 16 jan. 2023", + "Une s\u00e9ance unique avec un psy pour g\u00e9rer un probl\u00e8me / M.-E. Cousineau, [in] Le devoir, 13 juin 2022" ], "noteType": "dataSource" } @@ -11074,128 +31738,174 @@ "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Trait\u00e9s" + "authorized_access_point": "Psychoth\u00e9rapie br\u00e8ve" } ], "bnf_type": "sujet Rameau", "closeMatch": [ { "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85137215", - "source": "LCSH" - }, - "authorized_access_point": "Treaties--Revision" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh90001965", + "source": "LCSH" + } + ], + "authorized_access_point": "Single-session psychotherapy" }, { "source": "RVMLaval", - "authorized_access_point": "Trait\u00e9s -- R\u00e9vision" + "authorized_access_point": "Psychoth\u00e9rapie en une s\u00e9ance" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/16719416X", + "value": "http://www.idref.fr/278747000", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb166589741", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18148359p", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18148359", "source": "BNF" } ], "classification": [ { - "name": "Sciences politiques", - "type": "bf:ClassificationDdc", - "classificationPortion": "320" - }, - { - "name": "Droit", + "name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", - "classificationPortion": "340" + "classificationPortion": "150" } ], "variant_access_point": [ - "Trait\u00e9s - R\u00e9vision" + "ISU", + "Psychoth\u00e9rapie en une s\u00e9ance", + "Th\u00e9rapie \u00e0 s\u00e9ance unique" ], - "authorized_access_point": "R\u00e9vision des trait\u00e9s" + "authorized_access_point": "Intervention en s\u00e9ance unique" }, { - "md5": "783e0a6c7450d5b690d2e6097e71cd72", - "pid": "169177742", + "md5": "17e8ef34711edc869322fa24a9d4a609", + "pid": "278747019", "note": [ { "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures japonaises, polonaises et roumaines", - "Cette subdivision est utilis\u00e9e dans des cha\u00eenes construites avec les vedette Litt\u00e9rature japonaise, Litt\u00e9rature polonaise, Litt\u00e9rature roumaine, celles-ci servant de vedettes mod\u00e8les. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires japonais, polonais et roumains" + "L'oreille interne artificielle : implant cochl\u00e9aire et vestibulaire / J.-P. Guyot, M. Pelizzone [in] Revue m\u00e9dicale suisse, 2023, 845-2", + "Challenges anatomiques de la voie extralabyrinthique pour l'implantation vestibulaire / M. Senol, 2023 [th\u00e8se]" ], - "noteType": "general" + "noteType": "dataSource" } ], - "type": "bf:Temporal", - "related": [ - { - "authorized_access_point": "Litt\u00e9rature roumaine - 1945-1989" - }, + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Litt\u00e9rature japonaise - 1945-1989" + "authorized_access_point": "Neuroproth\u00e8ses" }, { - "authorized_access_point": "Litt\u00e9rature polonaise - 1945-1989" + "authorized_access_point": "Proth\u00e8ses auditives" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/169177742", + "value": "http://www.idref.fr/278747019", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb166782259", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181487542", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18148754", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Sciences m\u00e9dicales et param\u00e9dicales", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "610" } ], - "authorized_access_point": "1945-1989" + "variant_access_point": [ + "Neuroproth\u00e8ses vestibulaires" + ], + "authorized_access_point": "Implants vestibulaires" }, { - "md5": "833b772a1dcd74edddb2e38091549550", - "pid": "169177750", - "note": [ + "md5": "21fa05e4beab38c36b7ba5fd3b9d1612", + "pid": "278747027", + "type": "bf:Topic", + "broader": [ { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures japonaises", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature japonaise, celle-ci servant de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires japonais" - ], - "noteType": "general" + "authorized_access_point": "Roman fran\u00e7ais" } ], - "type": "bf:Temporal", - "related": [ + "bnf_type": "genre/forme Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/278747027", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18148761b", + "source": "BNF" + }, { - "authorized_access_point": "Litt\u00e9rature japonaise - 1989-2019 (\u00c8re Heisei)" + "type": "bf:Nbn", + "value": "FRBNF18148761", + "source": "BNF" } ], - "bnf_type": "sujet Rameau", + "classification": [ + { + "name": "Histoire et critique litt\u00e9raires", + "type": "bf:ClassificationDdc", + "classificationPortion": "800" + }, + { + "name": "Pr\u00e9histoire et histoire ancienne", + "type": "bf:ClassificationDdc", + "classificationPortion": "930" + } + ], + "authorized_access_point": "Roman pr\u00e9historique fran\u00e7ais" + }, + { + "md5": "afda38899704f4ea8fd5374deded51f2", + "pid": "278747035", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Roman camerounais de langue fran\u00e7aise" + } + ], + "bnf_type": "genre/forme Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/169177750", + "value": "http://www.idref.fr/278747035", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb166782390", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18148765q", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18148765", "source": "BNF" } ], @@ -11206,127 +31916,189 @@ "classificationPortion": "800" } ], - "authorized_access_point": "1989-2019(\u00c8re Heisei)" + "variant_access_point": [ + "Roman familial francophone camerounais" + ], + "authorized_access_point": "Roman familial camerounais de langue fran\u00e7aise" }, { - "md5": "1684793cdd6a3414c04c8486182e1526", - "pid": "17089018X", + "md5": "315d0723cf7c012b1227ebd40571ff10", + "pid": "278747043", "note": [ { "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures allemandes", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature allemande, qui sert de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires allemands" + "Kanski, ophtalmologie clinique : une approche syst\u00e9matique / J. F. Salmon, J. Chammas, R. K. Khanna, 2021", + "Progression de la r\u00e9tinopathie diab\u00e9tique durant la grossesse [in] Journal fran\u00e7ais d'ophtalmologie, 2010, 33, 5", + "R\u00e9tinopathie diab\u00e9tique / P. Massin, A. Erginay, 2010", + "Dict. de l'Acad\u00e9mie de m\u00e9decine : anomalie microvasculaire intrar\u00e9tinienne de la r\u00e9tinopathie diab\u00e9tique (AMIR) - https://www.academie-medecine.fr/le-dictionnaire (2024-05-31)" ], - "noteType": "general" + "noteType": "dataSource" } ], - "type": "bf:Temporal", - "related": [ + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Litt\u00e9rature allemande - 1350-1650 (nouvel haut-allemand)" + "authorized_access_point": "R\u00e9tinopathie diab\u00e9tique" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/17089018X", + "value": "http://www.idref.fr/278747043", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb16696953d", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18148767d", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18148767", "source": "BNF" } ], "classification": [ { - "name": "Langues et linguistique", - "type": "bf:ClassificationDdc", - "classificationPortion": "400" - }, - { - "name": "Histoire et critique litt\u00e9raires", + "name": "Sciences m\u00e9dicales et param\u00e9dicales", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "610" } ], - "authorized_access_point": "1350-1650(nouvel haut-allemand)" + "variant_access_point": [ + "AMIR (maladies)", + "Anomalies microvasculaires intrar\u00e9tiniennes de la r\u00e9tinopathie diab\u00e9tique", + "R\u00e9tinopathie diab\u00e9tique, Anomalies microvasculaires intrar\u00e9tiniennes de la" + ], + "authorized_access_point": "Anomalies microvasculaires intrar\u00e9tiniennes" }, { - "md5": "f7f0d81565f2fbcf913a42ae8f366fb3", - "pid": "172690250", + "md5": "0a4bf556928d97ee71b27a6d67075a3d", + "pid": "278747051", "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Vie intellectuelle - Espagne" - }, - { - "authorized_access_point": "Mouvements litt\u00e9raires - [Localisations g\u00e9ographiques]" - } - ], - "related": [ - { - "authorized_access_point": "Litt\u00e9rature espagnole" + "authorized_access_point": "Roman \u00e9cossais" } ], - "bnf_type": "sujet Rameau", - "narrower": [ + "bnf_type": "genre/forme Rameau", + "identifiedBy": [ { - "authorized_access_point": "Cr\u00e9ationnisme (mouvement litt\u00e9raire)" + "type": "uri", + "value": "http://www.idref.fr/278747051", + "source": "IDREF" }, { - "authorized_access_point": "Generaci\u00f3n del 50 (litt\u00e9rature espagnole)" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181487709", + "source": "BNF" }, { - "authorized_access_point": "G\u00e9n\u00e9ration de 98 (mouvement litt\u00e9raire)" - }, + "type": "bf:Nbn", + "value": "FRBNF18148770", + "source": "BNF" + } + ], + "classification": [ { - "authorized_access_point": "La otra sentimentalidad" - }, + "name": "Histoire et critique litt\u00e9raires", + "type": "bf:ClassificationDdc", + "classificationPortion": "800" + } + ], + "variant_access_point": [ + "Roman de fantasy \u00e9cossais pour adolescents", + "Roman de fantasy \u00e9cossais pour enfants", + "Roman de fantasy \u00e9cossais pour jeunes adultes" + ], + "authorized_access_point": "Roman de fantasy \u00e9cossais pour la jeunesse" + }, + { + "md5": "e1a1d55c7cd3ea5a0d62695da91dd0e2", + "pid": "27874706X", + "type": "bf:Topic", + "broader": [ { - "authorized_access_point": "Modernisme (mouvement litt\u00e9raire hispanophone)" - }, + "authorized_access_point": "Th\u00e9\u00e2tre (genre litt\u00e9raire) belge de langue fran\u00e7aise" + } + ], + "bnf_type": "genre/forme Rameau", + "closeMatch": [ { - "authorized_access_point": "Noucentisme" + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh96004610", + "source": "LCSH" + } + ], + "authorized_access_point": "Belgian farces (French)" }, { - "authorized_access_point": "Nov\u00edsimos" - }, + "source": "RVMLaval", + "authorized_access_point": "Farces belges (fran\u00e7aises)" + } + ], + "identifiedBy": [ { - "authorized_access_point": "Nuevo romanticismo" + "type": "uri", + "value": "http://www.idref.fr/27874706X", + "source": "IDREF" }, { - "authorized_access_point": "Poes\u00eda de la conciencia" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18148776c", + "source": "BNF" }, { - "authorized_access_point": "Ultra\u00efsme" + "type": "bf:Nbn", + "value": "FRBNF18148776", + "source": "BNF" } ], - "closeMatch": [ + "classification": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh2002008852", - "source": "LCSH" - }, - "authorized_access_point": "Literary movements -- Spain" - }, + "name": "Histoire et critique litt\u00e9raires", + "type": "bf:ClassificationDdc", + "classificationPortion": "800" + } + ], + "variant_access_point": [ + "Farces francophones belges" + ], + "authorized_access_point": "Farces belges de langue fran\u00e7aise" + }, + { + "md5": "529f0fb6c0a33458097e63851e0cafc5", + "pid": "278747078", + "type": "bf:Topic", + "broader": [ { - "source": "RVMLaval", - "authorized_access_point": "Mouvements litt\u00e9raires -- Espagne" + "authorized_access_point": "Litt\u00e9rature didactique belge de langue fran\u00e7aise" + } + ], + "related": [ + { + "authorized_access_point": "Aphorismes et apophtegmes belges de langue fran\u00e7aise" } ], + "bnf_type": "genre/forme Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/172690250", + "value": "http://www.idref.fr/278747078", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb167173405", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18148788c", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18148788", "source": "BNF" } ], @@ -11337,110 +32109,162 @@ "classificationPortion": "800" } ], - "authorized_access_point": "Mouvements litt\u00e9raires - Espagne" + "variant_access_point": [ + "Maximes francophones belges" + ], + "authorized_access_point": "Maximes belges de langue fran\u00e7aise" }, { - "md5": "2f16051255a4ce5b77e21d8f6c737134", - "pid": "174131887", + "md5": "869bf740c1d472cbfcc1c0d8efbbb32b", + "pid": "278747086", "note": [ { "label": [ - "Encycl. universalis (art. : Guitare basse) - http://www.universalis-edu.com (2013-11-04)", - "Dict. des mots de la musique / J. Siron, 2006", - "Les instruments de musique dans le monde vol. 1 / F.-R. Tranchefort, 1980", - "Oxford Music online (art. : Nigeria, Federal Republic of) - http://www.oxfordmusiconline.com (2013-11-04)", - "L'odyss\u00e9e africaine d'un cordophone rudimentaire : le \u00ab luth \u00e0 pique int\u00e9rieure \u00bb / C. Baroin [in] Afrique Arch\u00e9ologie Arts, 7, 2011", - "Musique et litt\u00e9rature orale chez les Peuls du Mali / C. Seydoux [in] L'Homme, 1998, 148" + "Sous cette vedette, on trouve les romans autobiographiques alg\u00e9riens de langue arabe ainsi que les romans autobiographiques alg\u00e9riens en diverses langues" ], - "noteType": "dataSource" + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Roman alg\u00e9rien" + } + ], + "bnf_type": "genre/forme Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/278747086", + "source": "IDREF" }, { - "label": [ - "Encycl. de la musique, 1992. - Dict. encyclop\u00e9dique de la musique / D. Arnold, 1988. - M\u00e9diath\u00e8que de la Cit\u00e9 de la musique : http://mediatheque.cite-musique.fr (2013-11-04). - Maison des cultures du monde : http://mcm.base-alexandrie.fr:8080 (2013-11-04)" - ], - "noteType": "dataNotFound" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18148797b", + "source": "BNF" }, { - "label": [ - "Afrique de l'Ouest. Luth \u00e0 structure composite. Caisse de r\u00e9sonance h\u00e9misph\u00e9rique constitu\u00e9e d'une demi-calebasse recouverte d'une peau de vache tann\u00e9e et p\u00e9n\u00e9tr\u00e9e par un manche sans frettes en forme de b\u00e2ton. Taille variable selon les r\u00e9gions. Cordes pinc\u00e9es au nombre de 1 (nord du S\u00e9n\u00e9gal), de 2 (Ghana, Nig\u00e9ria) ou de 3 (population songha\u00ef et hausa)" - ], - "noteType": "general" + "type": "bf:Nbn", + "value": "FRBNF18148797", + "source": "BNF" + } + ], + "classification": [ + { + "name": "Histoire et critique litt\u00e9raires", + "type": "bf:ClassificationDdc", + "classificationPortion": "800" } ], + "variant_access_point": [ + "Roman autobiographique alg\u00e9rien de langue arabe", + "Roman autobiographique arabe - Alg\u00e9rie" + ], + "authorized_access_point": "Roman autobiographique alg\u00e9rien" + }, + { + "md5": "fc2eb32b4dde73eb8d8108abf48c5af7", + "pid": "278747094", "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Instruments de musique - Afrique occidentale" - }, - { - "authorized_access_point": "Luths (famille d'instruments)" + "authorized_access_point": "Litt\u00e9rature qatarienne" } ], - "related": [ + "bnf_type": "genre/forme Rameau", + "closeMatch": [ { - "authorized_access_point": "Khalam" + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2001000526", + "source": "LCSH" + } + ], + "authorized_access_point": "Arabic poetry--Qatar" }, { - "authorized_access_point": "Molo, Musique de" + "source": "RVMLaval", + "authorized_access_point": "Po\u00e9sie qatarienne" } ], - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/174131887", + "value": "http://www.idref.fr/278747094", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb16720369d", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181488639", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18148863", "source": "BNF" } ], "classification": [ { - "name": "Musique", + "name": "Histoire et critique litt\u00e9raires", "type": "bf:ClassificationDdc", - "classificationPortion": "780" + "classificationPortion": "800" } ], "variant_access_point": [ - "Molaandu", - "M\u00f3\u00f3l\u00f3\u00f3", - "Moolooru", - "Mulore" + "Po\u00e9sie arabe - Qatar", + "Po\u00e9sie du Qatar", + "Po\u00e9sie qatarie", + "Po\u00e9sie qatarie de langue arabe", + "Po\u00e9sie qatarienne de langue arabe", + "Po\u00e9sie qatariote", + "Po\u00e9sie qatariote de langue arabe" ], - "authorized_access_point": "Molo" + "authorized_access_point": "Po\u00e9sie qatarienne" }, { - "md5": "e58da5b16ac2adf861de8860688a67f7", - "pid": "180122312", - "note": [ + "md5": "84e8b34a74670dcc39928a7c7a1947df", + "pid": "278747108", + "type": "bf:Topic", + "bnf_type": "genre/forme Rameau", + "narrower": [ { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures am\u00e9ricaines", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature am\u00e9ricaine, celle-ci servant de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires am\u00e9ricains", - "Ne pas employer la subdivision chronologique d'emploi g\u00e9n\u00e9ral 1870-1914" - ], - "noteType": "general" + "authorized_access_point": "Po\u00e9sie qatarienne" } ], - "type": "bf:Temporal", - "related": [ + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2001000527", + "source": "LCSH" + } + ], + "authorized_access_point": "Arabic literature--Qatar" + }, { - "authorized_access_point": "Litt\u00e9rature am\u00e9ricaine - 1865-1918" + "source": "RVMLaval", + "authorized_access_point": "Litt\u00e9rature qatarienne" } ], - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/180122312", + "value": "http://www.idref.fr/278747108", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb16776999g", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18148867p", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18148867", "source": "BNF" } ], @@ -11451,111 +32275,104 @@ "classificationPortion": "800" } ], - "authorized_access_point": "1865-1918" + "variant_access_point": [ + "Litt\u00e9rature arabe - Qatar", + "Litt\u00e9rature qatarie", + "Litt\u00e9rature qatarie de langue arabe", + "Litt\u00e9rature qatarienne de langue arabe", + "Litt\u00e9rature qatariote", + "Litt\u00e9rature qatariote de langue arabe" + ], + "authorized_access_point": "Litt\u00e9rature qatarienne" }, { - "md5": "489f92bf9c07a0102a6aa943ceb6c2ed", - "pid": "18456381X", - "note": [ - { - "label": [ - "Grand Larousse universel (art. : Rouleau)", - "Encycl. universalis (art. : Macadam) - http://www.universalis-edu.com (2017-01-10)", - "Wikip\u00e9dia - https://fr.wikipedia.org (2017-01-10)", - "CACES R 372 m cat\u00e9gorie 7. Compacteurs : Guide pour l'\u00e9valuation pratique / INRS, 2014" - ], - "noteType": "dataSource" - } - ], + "md5": "da8b060ef6594b0aade2909909d46b6b", + "pid": "278747116", "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Engins de terrassement" + "authorized_access_point": "Biographie n\u00e9erlandaise" }, { - "authorized_access_point": "Engins routiers" - } - ], - "related": [ - { - "authorized_access_point": "Sols - Compactage" + "authorized_access_point": "Roman n\u00e9erlandais" } ], - "bnf_type": "sujet Rameau", + "bnf_type": "genre/forme Rameau", "closeMatch": [ { "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85114483", - "source": "LCSH" - }, - "authorized_access_point": "Road rollers" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2015001131", + "source": "LCSH" + } + ], + "authorized_access_point": "Biographical fiction, Dutch" }, { "source": "RVMLaval", - "authorized_access_point": "Rouleaux (Travaux publics)" + "authorized_access_point": "Roman biographique n\u00e9erlandais" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/18456381X", + "value": "http://www.idref.fr/278747116", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb170991500", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18148871x", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18148871", "source": "BNF" } ], "classification": [ { - "name": "Technique", + "name": "Histoire et critique litt\u00e9raires", "type": "bf:ClassificationDdc", - "classificationPortion": "600" + "classificationPortion": "800" } ], - "variant_access_point": [ - "Compacteurs", - "Cylindres (rouleaux compresseurs)", - "Engins de compactage", - "Rouleaux \u00e0 pieds", - "Rouleaux \u00e0 pneus", - "Rouleaux compacteurs", - "Rouleaux compresseurs vibrateurs", - "Rouleaux vibrants" - ], - "authorized_access_point": "Rouleaux compresseurs" + "authorized_access_point": "Roman biographique n\u00e9erlandais" }, { - "md5": "00ab096d11ce9adbad66f201b6f91974", - "pid": "185676146", - "note": [ + "md5": "d05f729d8e7946838bd0a35f0dd43ba3", + "pid": "278747124", + "type": "bf:Topic", + "broader": [ { - "label": [ - "S'emploie uniquement en subdivision chronologique [sans subd. g\u00e9ogr.] aux litt\u00e9ratures am\u00e9ricaines", - "Cette subdivision est utilis\u00e9e dans des cha\u00eenes construites avec la vedette Litt\u00e9rature am\u00e9ricaine, celle-ci servant de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires am\u00e9ricains" - ], - "noteType": "general" + "authorized_access_point": "Litt\u00e9rature danoise" } ], - "type": "bf:Temporal", "related": [ { - "authorized_access_point": "Litt\u00e9rature am\u00e9ricaine - 1945-2000" + "authorized_access_point": "Autobiographie danoise" + }, + { + "authorized_access_point": "Journaux intimes danois" } ], - "bnf_type": "sujet Rameau", + "bnf_type": "genre/forme Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/185676146", + "value": "http://www.idref.fr/278747124", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb16965970n", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18148880w", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18148880", "source": "BNF" } ], @@ -11567,38 +32384,42 @@ } ], "variant_access_point": [ - "1945-2000 (subdivision)" + "M\u00e9moires danois" ], - "authorized_access_point": "1945-2000" + "authorized_access_point": "M\u00e9moires (genre litt\u00e9raire) danois" }, { - "md5": "d7f103f468cc4946edd0daa7c3a9f954", - "pid": "196345359", - "note": [ + "md5": "eeadd847244c13d79859930e74be5496", + "pid": "278747132", + "type": "bf:Topic", + "broader": [ { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures n\u00e9erlandaises", - "Cette subdivision est utilis\u00e9e dans une cha\u00eene construite avec la vedette Litt\u00e9rature n\u00e9erlandaise, celle-ci servant de vedette mod\u00e8le. Elle est \u00e0 utiliser par \u00e9l\u00e9ments avec tous les genres litt\u00e9raires n\u00e9erlandais" - ], - "noteType": "general" + "authorized_access_point": "Litt\u00e9rature espagnole" } ], - "type": "bf:Temporal", "related": [ { - "authorized_access_point": "Litt\u00e9rature n\u00e9erlandaise - 1880-1945" + "authorized_access_point": "Autobiographie espagnole" + }, + { + "authorized_access_point": "Journaux intimes espagnols" } ], - "bnf_type": "sujet Rameau", + "bnf_type": "genre/forme Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/196345359", + "value": "http://www.idref.fr/278747132", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb17082314s", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181488848", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18148884", "source": "BNF" } ], @@ -11609,30 +32430,35 @@ "classificationPortion": "800" } ], - "authorized_access_point": "1880-1945" + "variant_access_point": [ + "M\u00e9moires espagnols" + ], + "authorized_access_point": "M\u00e9moires (genre litt\u00e9raire) espagnols" }, { - "md5": "9ae1b203c42ba83631436d766dbcbd30", - "pid": "241963974", - "note": [ + "md5": "26a687868dad2bdad100691a833ce755", + "pid": "278747140", + "type": "bf:Topic", + "broader": [ { - "label": [ - "S'emploie uniquement en subdivision chronologique aux litt\u00e9ratures japonaises" - ], - "noteType": "general" + "authorized_access_point": "Th\u00e9\u00e2tre (genre litt\u00e9raire) belge de langue fran\u00e7aise" } ], - "type": "bf:Temporal", - "bnf_type": "sujet Rameau", + "bnf_type": "genre/forme Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/241963974", + "value": "http://www.idref.fr/278747140", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb17818148x", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18148900p", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18148900", "source": "BNF" } ], @@ -11643,96 +32469,55 @@ "classificationPortion": "800" } ], - "authorized_access_point": "2019-....(\u00c8re Reiwa)" + "variant_access_point": [ + "Vaudevilles francophones belges" + ], + "authorized_access_point": "Vaudevilles belges de langue fran\u00e7aise" }, { - "md5": "01f115aa70104733f60931bccd9f203a", - "pid": "245367888", - "note": [ - { - "label": [ - "Wikip\u00e9dia (art. : Hirak) ; Hirak (Alg\u00e9rie) - https://fr.wikipedia.org (2020-06-16)", - "Du hirak au harak, tentative de lexique - https://www.elwatan.com (2020-06-16)", - "Hirak en Alg\u00e9rie, l'invention d'un soul\u00e8vement, 2020", - "Alg\u00e9rie, la nouvelle ind\u00e9pendance / J.-P. Filiu, 2019", - "Alg\u00e9rie : l'inlassable d\u00e9fi du Hirak [in] Le Monde, 2020-02-22 - https://www.lemonde.fr (2020-06-16)" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Hirak : mot arabe signifiant \u00e9tymologiquement \u00ab mouvement \u00bb et d\u00e9signant des mouvements de contestations populaires dans les pays du monde arabe, notamment au Y\u00e9men, en Irak, au Maroc (Rif) et en Alg\u00e9rie. En Alg\u00e9rie, s\u00e9rie de manifestations sporadiques depuis le 22 f\u00e9vrier 2019 pour protester dans un premier temps contre la candidature d'Abdelaziz Bouteflika \u00e0 un cinqui\u00e8me mandat pr\u00e9sidentiel, puis contre son projet, \u00e9galement contest\u00e9 par l'arm\u00e9e, de se maintenir au pouvoir \u00e0 l'issue de son quatri\u00e8me mandat dans le cadre d'une transition et de la mise en \u0153uvre de r\u00e9formes" - ], - "noteType": "general" - } - ], + "md5": "d4ba77736e34e888a46b30866795a162", + "pid": "278747159", "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Manifestations - Alg\u00e9rie" - }, - { - "authorized_access_point": "Mouvements contestataires" - }, - { - "authorized_access_point": "Politique et gouvernement - Alg\u00e9rie - 1999-...." - }, - { - "authorized_access_point": "Alg\u00e9rie - 1992-...." + "authorized_access_point": "Roman bosniaque" } ], - "bnf_type": "sujet Rameau", + "bnf_type": "genre/forme Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/245367888", + "value": "http://www.idref.fr/278747159", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb17876933v", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18148911b", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18148911", "source": "BNF" } ], "classification": [ { - "name": "Sciences politiques", - "type": "bf:ClassificationDdc", - "classificationPortion": "320" - }, - { - "name": "Economie", - "type": "bf:ClassificationDdc", - "classificationPortion": "330" - }, - { + "name": "Histoire et critique litt\u00e9raires", "type": "bf:ClassificationDdc", - "classificationPortion": "950" + "classificationPortion": "800" } ], - "variant_access_point": [ - "Al-Hirak (Alg\u00e9rie)", - "Harak (Alg\u00e9rie ; 2019-....)", - "Harak (mouvement ; Alg\u00e9rie ; 2019-....)", - "Hirak (Alg\u00e9rie ; 2019-....)", - "Hirak alg\u00e9rien" - ], - "authorized_access_point": "Hirak (mouvement ; Alg\u00e9rie ; 2019-....)" + "authorized_access_point": "Roman humoristique bosniaque" }, { - "md5": "aa42520f473197a96cbc62c9fc3cce1f", - "pid": "252252063", + "md5": "133a8af7a26c3eeb20e99aa8a6695f19", + "pid": "278747167", "note": [ { "label": [ - "Dic. do romantismo liter\u00e1rio portugu\u00eas, 1997 (art. : Coimbra, e a literature romantica)", - "A gera\u00e7\u00e3o de 70 : uma gera\u00e7\u00e3o revolucion\u00e1ria e europe\u00edsta / J. Medina, 1999", - "Hist\u00f3ria e Fic\u00e7\u00e3o Romanesca : Um Olhar sobre a Gera\u00e7\u00e3o de 70 em Portugal / P. Franchetti [in] Santa Barbara Portuguese Studies, 1997, 4", - "A Gerac\u00e3o de 70 : uma sintese provisoria / J. Medina, 1975", - "Portugal's Gera\u00e7\u00e3o de 70 : Drama influenced by a Changing World / C. M. Pierson, 2009 [in] Theatre Research International , 1995, 20, 1", - "La g\u00e9n\u00e9ration de 70 : \u00e9poque, chefs de file, relations avec la France : exposition bibliographique, 1971", - "Contribution \u00e0 l'\u00e9tude des id\u00e9es politiques et sociales de l'\u00c9cole de Coimbra / R. Leal, 1941", - "Modernity and modernism in Portugal : the \"Questao Coimbra\" and the generation of 1870 / D. J. Sadlier [in] Nineteenth-century prose, 2005, 32, 1" + "Physiopathologie du lymphome \u00e0 cellules du manteau / D. Chiron [in] Horizons h\u00e9mato, 2016, 6, 2", + "Duplication de g\u00e9nome et \u00e9volution de la famille Sox chez les poissons t\u00e9l\u00e9ost\u00e9ens / E. Voldoire, 2013 [th\u00e8se]" ], "noteType": "dataSource" } @@ -11740,49 +32525,50 @@ "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Modernisme (mouvement litt\u00e9raire portugais)" - }, - { - "authorized_access_point": "Litt\u00e9rature portugaise" + "authorized_access_point": "Facteurs de transcription" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/252252063", + "value": "http://www.idref.fr/278747167", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18011072k", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18148935b", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18148935", "source": "BNF" } ], "classification": [ { - "name": "Po\u00e9sie", + "name": "Sciences de la vie", "type": "bf:ClassificationDdc", - "classificationPortion": "801" + "classificationPortion": "570" } ], "variant_access_point": [ - "G\u00e9n\u00e9ration de 1870 (litt\u00e9rature portugaise)", - "G\u00e9n\u00e9ration de 70 (litt\u00e9rature portugaise)", - "G\u00e9n\u00e9ration de Co\u00efmbra (litt\u00e9rature portugaise)", - "Gera\u00e7\u00e3o de 1870 (litt\u00e9rature portugaise)" + "Facteur de transcription SOX-11", + "SOX11" ], - "authorized_access_point": "Gera\u00e7\u00e3o de 70 (litt\u00e9rature portugaise)" + "authorized_access_point": "Facteur de transcription SOX11" }, { - "md5": "95a4647a971ee803898c73194583345f", - "pid": "25410875X", + "md5": "6d11126fd50c56d86c7906911cbf2e71", + "pid": "278747175", "note": [ { "label": [ - "Encycl. universalis (art. : Islam (histoire) : le monde musulman contemporain) - http://www.universalis-edu.com (2022-04-29)", - "Changer l'Islam : dict. des r\u00e9formateurs musulmans des origines \u00e0 nos jours / M. Chebel, 2013", - "Islam et politique en Asie centrale / O. Roy, M. Gaborieau, A. Popovic [in] Archives de sciences sociales des religions, 2001, 115 - https://journals.openedition.org (2022-04-29)" + "Dict. th\u00e9matique de biologie / C. Blanchet, 2020", + "La gouttelette lipidique : un nouvel organite ? / P. Roingeard [in] M\u00e9decine/sciences, 2013, 29, 5", + "D\u00e9veloppement, architecture et dynamique des gouttelettes lipidiques de la diatom\u00e9e Phaeodactylum tricornutum / J. Lupette, 2016 [th\u00e8se]", + "Un regard neuf sur les gouttelettes lipidiques des adipocytes : jouent-elles un r\u00f4le dans la d\u00e9tection de l'\u00e9tat du stock de triglyc\u00e9rides ? / C. Blouin, E. Hajduch, I. Dugail [in] Journal de la Soci\u00e9t\u00e9 de biologie, 2006, 200, 1" ], "noteType": "dataSource" } @@ -11790,94 +32576,117 @@ "type": "bf:Topic", "broader": [ { - "authorized_access_point": "R\u00e9formisme islamique" + "authorized_access_point": "Organites" } ], - "bnf_type": "sujet Rameau", - "closeMatch": [ + "related": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "https://id.loc.gov/authorities/subjects/sh2004004554", - "source": "LCSH" - }, - "authorized_access_point": "Jadidism" + "authorized_access_point": "Lipides" } ], + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/25410875X", + "value": "http://www.idref.fr/278747175", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18011673k", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181489716", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18148971", "source": "BNF" } ], "classification": [ { - "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", - "type": "bf:ClassificationDdc", - "classificationPortion": "200" - }, - { + "name": "Sciences de la vie", "type": "bf:ClassificationDdc", - "classificationPortion": "950" + "classificationPortion": "570" } ], "variant_access_point": [ - "D\u017eadidizm", - "\u0414\u0436\u0430\u0434\u0438\u0434\u0438\u0437\u043c", - "Zhadidchilik" + "Adiposomes" ], - "authorized_access_point": "Jadidisme" + "authorized_access_point": "Gouttelettes lipidiques" }, { - "md5": "adbab850a992784d4dc8847fce66b656", - "pid": "255690444", + "md5": "170b9def51b6b887cd5e1a73c7a36ce2", + "pid": "278747183", + "note": [ + { + "label": [ + "Vocabulaire de l'analyse litt\u00e9raire / D. Bergez, V. G\u00e9raud, J.-J. Robrieux, 1994", + "Dict. des termes litt\u00e9raires, 2001", + "Dict. des termes litt\u00e9raires, 2005", + "Les figures \u00e0 l'\u00e9preuve du discours : dialogisme et polyphonie, 2012" + ], + "noteType": "dataSource" + } + ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "S\u00e9r\u00e9nades ([distributions instrumentales])" + "authorized_access_point": "Litt\u00e9rature - Esth\u00e9tique" + } + ], + "related": [ + { + "authorized_access_point": "Carnavalesque" + }, + { + "authorized_access_point": "Dialogisme" }, { - "authorized_access_point": "Trios (fl\u00fbte, violon, alto)" + "authorized_access_point": "Dialogue (litt\u00e9rature)" + }, + { + "authorized_access_point": "Intertextualit\u00e9" } ], - "bnf_type": "genre/forme Rameau", + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/255690444", + "value": "http://www.idref.fr/278747183", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb179457866", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18148976x", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18148976", "source": "BNF" } ], "classification": [ { - "name": "Musique", + "name": "Po\u00e9sie", "type": "bf:ClassificationDdc", - "classificationPortion": "780" + "classificationPortion": "801" } ], - "authorized_access_point": "S\u00e9r\u00e9nades (fl\u00fbte, violon, alto)" + "authorized_access_point": "Polyphonie (litt\u00e9rature)" }, { - "md5": "0d90d00c3139018d517f786652f99800", - "pid": "256524203", + "md5": "b36f45e106bc27ece4c84488113e1937", + "pid": "278747191", "note": [ { "label": [ - "Les int\u00e9r\u00eats th\u00e9oriques de l'amor\u00e7age syntaxique / M. Poletti, L. Le Bigot, F.Rigalleau [in] L'ann\u00e9e psychologique, 2012, 2, vol. 112 - https://www.cairn.info/revue-l-annee-psychologique1-2012-2-page-247", - "Effet d'amor\u00e7age syntaxique - https://skosmos.loterre.fr/P66/fr/page/-GM3KP6TP-F (2022-07-19)", - "Effet d'amor\u00e7age structurel en fran\u00e7ais langue seconde : une \u00e9tude de corpus longitudinale / A. Thomas [in] SHS Web of Conferences 8, 1591-1605 (2014) - https://www.linguistiquefrancaise.org/articles/shsconf/abs/2014/05" + "Loterre : Nutrition artificielle (th\u00e9saurus) - https://www.loterre.fr (2024-05-29)", + "Existe-t-il une relation entre la dose d'hormone de croissance et d'\u00e9ventuelles complications tumorales ou cardiovasculaires ? / Y. Le Bouc, F. Brioude [in] Bulletin de l'Acad\u00e9mie nationale de m\u00e9decine, 2012, 196, 1", + "Dict. de biologie / J. Berthet, 2007 (art. : IGF) : IGF-1", + "Dict. de m\u00e9decine Flammarion, 2008 (art. : Somatom\u00e9dine) : IGF I", + "Dict. illustr\u00e9 des termes de m\u00e9decine, 2012 (art. : IGF) : IGF I", + "Dict. de l'Acad\u00e9mie de m\u00e9decine (art. : IGF) : IGF-I - https://www.academie-medecine.fr/le-dictionnaire (2024-05-29)" ], "noteType": "dataSource" } @@ -11885,1075 +32694,994 @@ "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Psycholinguistique" - } - ], - "related": [ - { - "authorized_access_point": "M\u00e9moire implicite" + "authorized_access_point": "Facteurs de croissance IGF" } ], "bnf_type": "sujet Rameau", - "closeMatch": [ - { - "source": "RVMLaval", - "authorized_access_point": "Amor\u00e7age (psychologie)" - }, - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh87006196", - "source": "LCSH" - }, - "authorized_access_point": "Priming (psychology)" - } - ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/256524203", + "value": "http://www.idref.fr/278747191", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180252531", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18149178n", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18149178", "source": "BNF" } ], "classification": [ { - "name": "Psychologie, psychanalyse", - "type": "bf:ClassificationDdc", - "classificationPortion": "150" - }, - { + "name": "Sciences de la vie", "type": "bf:ClassificationDdc", - "classificationPortion": "401" + "classificationPortion": "570" } ], "variant_access_point": [ - "Amor\u00e7age structural", - "Effet d'amor\u00e7age syntaxique", - "Persistance structurale", - "Persistance syntaxique" + "IGF-1 (prot\u00e9ine)", + "IGF-I (prot\u00e9ine)", + "IGF I (prot\u00e9ine)", + "IGF1 (prot\u00e9ine)", + "IGFI (prot\u00e9ine)", + "Insulin-like growth factor-1", + "Somatom\u00e9dine C" ], - "authorized_access_point": "Amor\u00e7age syntaxique" + "authorized_access_point": "Facteur de croissance IGF-1" }, { - "md5": "27f7678f001a92dfe5eba0d6acc469dc", - "pid": "258617527", + "md5": "a517f79566453d72842ba6092863f3fe", + "pid": "278747213", "note": [ { "label": [ - "R\u00e9seau Canop\u00e9 : Rituels et activit\u00e9s ritualis\u00e9es \u00e0 l'\u00e9cole maternelle, des soutiens pour le d\u00e9veloppement de l'enfant - https://www.reseau-canope.fr (2022-07-15)", - "Rituels d'enseignement et d'apprentissage / F. Hatchuel [in] Herm\u00e8s, 2006, 43 - https://www.cairn.info (2022-07-15)", - "L' entr\u00e9e dans le contrat didactique \u00e0 l'\u00e9cole maternelle : le r\u00f4le des rituels dans la construction d'un milieu pour apprendre / L. Garcion-Vautor, 2000 [th\u00e8se] (2022-07-15)", - "Activit\u00e9s ritualis\u00e9es en maternelle / J. Alban-Arrouy, I. Marchesan, P. Schmitt, 2009" + "Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour orgue, violoncelle et orchestre, et les recueils de compositions de formes et de genres diff\u00e9rents pour cette m\u00eame formation" ], - "noteType": "dataSource" + "noteType": "general" } ], "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Psychologie scolaire" - }, + "bnf_type": "genre/forme Rameau", + "narrower": [ { - "authorized_access_point": "Rituel (psychologie)" + "authorized_access_point": "Concertos (violoncelle et orgue)" } ], - "related": [ + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/278747213", + "source": "IDREF" + }, { - "authorized_access_point": "Classes (\u00e9ducation) - Conduite" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181495015", + "source": "BNF" }, { - "authorized_access_point": "Contrat p\u00e9dagogique" + "type": "bf:Nbn", + "value": "FRBNF18149501", + "source": "BNF" } ], - "bnf_type": "sujet Rameau", - "closeMatch": [ + "classification": [ { - "source": "LCSH", - "authorized_access_point": "Ritual--Study and teaching" - }, + "name": "Musique", + "type": "bf:ClassificationDdc", + "classificationPortion": "780" + } + ], + "authorized_access_point": "Orgue, violoncelle et orchestre" + }, + { + "md5": "aeec90e5df3a1df7c3f59c9f820747e3", + "pid": "278747221", + "type": "bf:Topic", + "broader": [ { - "source": "RVMLaval", - "authorized_access_point": "Rituel--\u00c9tude et enseignement" + "authorized_access_point": "Orgue, violoncelle et orchestre" } ], + "bnf_type": "genre/forme Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/258617527", + "value": "http://www.idref.fr/278747221", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18024967d", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18149502h", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18149502", "source": "BNF" } ], "classification": [ { - "name": "Psychologie, psychanalyse", - "type": "bf:ClassificationDdc", - "classificationPortion": "150" - }, - { - "name": "Education et enseignement", + "name": "Musique", "type": "bf:ClassificationDdc", - "classificationPortion": "370" + "classificationPortion": "780" } ], - "variant_access_point": [ - "Activit\u00e9s ritualis\u00e9es \u00e0 l'\u00e9cole", - "Rituels \u00e0 l'\u00e9cole", - "Rituels d'apprentissage", - "Rituels d'enseignement", - "Rituels de classe", - "Rituels scolaires" - ], - "authorized_access_point": "Rituels (\u00e9ducation)" + "authorized_access_point": "Concertos (violoncelle et orgue)" }, { - "md5": "12a22a266215d5dee558f6308b45a113", - "pid": "25906288X", + "md5": "fffc11e497e207e1a5434483a5787372", + "pid": "27874723X", "note": [ { "label": [ - "Tr\u00e9sor de la langue fran\u00e7aise - http://stella.atilf.fr (2022-07-18)", - "P\u00e9dagogie, dict. des concepts cl\u00e9s / F. Raynal, A. Rieunier, 2009", - "Eduscol : Lecture et compr\u00e9hension de l'\u00e9crit : la compr\u00e9hension des consignes - https://eduscol.education.fr (2022-07-18)", - "Comprendre les \u00e9nonc\u00e9s et les consignes : un point fort du socle commun / J.-M. Zakhartchouk, 2019" + "L'onguent armaire entre science et folklore m\u00e9dical. Pour une \u00e9pist\u00e9mologie historique du concept de gu\u00e9rison / R. Poma [in] Archives de philosophie, 2010, 73, 4", + "L'harmonie au prisme du mesm\u00e9risme : recompositions scientifiques, politiques et morales au tournant des XVIIIe et XIXe si\u00e8cles [in] La R\u00e9volution fran\u00e7aise : cahiers de l'Institut d'histoire de la R\u00e9volution fran\u00e7aise, 2023, 24", + "Petite hist. des rem\u00e8des magn\u00e9tiques / P. Pinet [in] Revue d'histoire de la pharmacie, 2008, 360", + "Exposition \u00ab Savoirs cach\u00e9s \u00bb, du 19 septembre au 22 d\u00e9cembre 2021, Biblioth\u00e8que Sainte-Genevi\u00e8ve - https://genovefa.bsg.univ-paris3.fr/s/esoterisme/page/accueil (2024-05-31)" ], "noteType": "dataSource" + }, + { + "label": [ + "Sous cette vedette, on trouve les documents sur le courant de pens\u00e9e m\u00e9dicale datant du XVII\u00e8me si\u00e8cle. Les documents sur le traitement des maladies \u00e0 l'aide de champs magn\u00e9tiques se trouvent sous Magn\u00e9toth\u00e9rapie" + ], + "noteType": "general" } ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "\u00c9nonciation (linguistique)" + "authorized_access_point": "M\u00e9decine - Philosophie" }, { - "authorized_access_point": "T\u00e2ches (\u00e9ducation)" + "authorized_access_point": "M\u00e9decine et \u00e9sot\u00e9risme" } ], "related": [ { - "authorized_access_point": "Langage - Compr\u00e9hension" + "authorized_access_point": "Magn\u00e9tisme animal" }, { - "authorized_access_point": "Lecture - Aspect cognitif" + "authorized_access_point": "Magn\u00e9toth\u00e9rapie" }, { - "authorized_access_point": "Psychologie cognitive" + "authorized_access_point": "Mesm\u00e9risme" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/25906288X", + "value": "http://www.idref.fr/27874723X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18025123t", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181498804", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18149880", "source": "BNF" } ], "classification": [ { - "name": "Education et enseignement", + "name": "Philosophie", "type": "bf:ClassificationDdc", - "classificationPortion": "370" + "classificationPortion": "100" + }, + { + "name": "Esot\u00e9risme, ph\u00e9nom\u00e8nes paranormaux", + "type": "bf:ClassificationDdc", + "classificationPortion": "130" + }, + { + "name": "Sciences m\u00e9dicales et param\u00e9dicales", + "type": "bf:ClassificationDdc", + "classificationPortion": "610" } ], - "variant_access_point": [ - "Consignes p\u00e9dagogiques", - "Consignes scolaires", - "Instructions (\u00e9ducation)" - ], - "authorized_access_point": "Consignes (\u00e9ducation)" + "authorized_access_point": "M\u00e9decine magn\u00e9tique" }, { - "md5": "bf03a9de734d5750c2ddeb716dda9efe", - "pid": "259596337", + "md5": "cf4c8be0e8ced0e99f7e5e776d146a93", + "pid": "278747248", "note": [ { "label": [ - "Ne pas confondre marge chirurgicale et marge histologique en chirurgie des carcinomes cutan\u00e9s ! / J.-F. Sei, M. Beylot-Barry, B. Cribier [in] Annales de dermatologie et de v\u00e9n\u00e9r\u00e9ologie FMC, 2021, 1, 5", - "Les marges chirurgicales dans le cancer de la prostate. CCAFU revue de la litt\u00e9rature [in] Progr\u00e8s en urologie, 2014, 24, 6" + "Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour voix (employ\u00e9e comme un instrument), piano, fl\u00fbte \u00e0 bec et guitare, et les recueils de compositions de formes et de genres diff\u00e9rents pour cette m\u00eame formation" ], - "noteType": "dataSource" + "noteType": "general" } ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Chirurgie" - } - ], - "bnf_type": "sujet Rameau", - "closeMatch": [ - { - "source": "MeSH", - "identifiedBy": { - "type": "uri", - "value": "https://id.nlm.nih.gov/mesh/M000617728", - "source": "MeSH" - }, - "authorized_access_point": "Margins of Excision" + "authorized_access_point": "Quatuors ([distributions instrumentales])" } ], + "bnf_type": "genre/forme Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/259596337", + "value": "http://www.idref.fr/278747248", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18021714j", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18150117g", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18150117", "source": "BNF" } ], "classification": [ { - "name": "Sciences m\u00e9dicales et param\u00e9dicales", + "name": "Musique", "type": "bf:ClassificationDdc", - "classificationPortion": "610" + "classificationPortion": "780" } ], - "variant_access_point": [ - "Marges (chirurgie)", - "Marges d'ex\u00e9r\u00e8se", - "Marges histologiques", - "Marges histologiques de s\u00e9curit\u00e9" - ], - "authorized_access_point": "Marges chirurgicales" + "authorized_access_point": "Quatuors (voix, piano, fl\u00fbte \u00e0 bec, guitare)" }, { - "md5": "f174e1ddf5a56c58b911f313b1953cc8", - "pid": "259599174", + "md5": "a8da2696d1bbd0d7939bb4468d942aef", + "pid": "278747256", "note": [ { "label": [ - "Dict. de l'Acad\u00e9mie de m\u00e9decine - http://dictionnaire.academie-medecine.fr (2022-07-06)", - "Dict. de m\u00e9decine Flammarion, 2008 (art. : Banque)", - "Une banque d'os de haute s\u00e9curit\u00e9 pour allogreffes [in] Revue fran\u00e7aise des laboratoires, 2005, 371" + "Sous cette vedette, on trouve les compositions pour un ou plusieurs r\u00e9citant(s), soliste(s), choeur(s) d'hommes et ensemble instrumental" ], - "noteType": "dataSource" + "noteType": "general" } ], "type": "bf:Topic", - "broader": [ + "bnf_type": "genre/forme Rameau", + "identifiedBy": [ { - "authorized_access_point": "Banques de tissus" - } - ], - "related": [ + "type": "uri", + "value": "http://www.idref.fr/278747256", + "source": "IDREF" + }, { - "authorized_access_point": "Os" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18150337n", + "source": "BNF" }, { - "authorized_access_point": "Tissu osseux" + "type": "bf:Nbn", + "value": "FRBNF18150337", + "source": "BNF" } ], - "bnf_type": "sujet Rameau", - "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "https://id.loc.gov/authorities/subjects/sh85015515", - "source": "LCSH" - }, - "authorized_access_point": "Bone banks" - }, - { - "source": "MeSH", - "identifiedBy": { - "type": "uri", - "value": "https://id.nlm.nih.gov/mesh/M0027859", - "source": "MeSH" - }, - "authorized_access_point": "Bone Banks" - }, + "classification": [ { - "source": "RVMLaval", - "authorized_access_point": "Banques d'os" + "name": "Musique", + "type": "bf:ClassificationDdc", + "classificationPortion": "780" } ], + "authorized_access_point": "R\u00e9citants, solistes, choeurs d'hommes et ensemble instrumental" + }, + { + "md5": "613bde2a3d6f73ee24472f0095eefbdf", + "pid": "278747264", + "type": "bf:Topic", + "bnf_type": "genre/forme Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/259599174", + "value": "http://www.idref.fr/278747264", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180217376", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18150473s", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18150473", "source": "BNF" } ], "classification": [ { - "name": "Sciences de la vie", - "type": "bf:ClassificationDdc", - "classificationPortion": "570" - }, - { - "name": "Sciences m\u00e9dicales et param\u00e9dicales", + "name": "Musique", "type": "bf:ClassificationDdc", - "classificationPortion": "610" + "classificationPortion": "780" } ], - "variant_access_point": [ - "Banques de tissu osseux", - "Os, Banques d'", - "Tissu osseux, Banques de" - ], - "authorized_access_point": "Banques d'os" + "authorized_access_point": "Sextuors de cuivres (trombones (2), trompettes (3), tuba)" }, { - "md5": "a6bcaa5e7d21d6f3bbf7283f336ce8e3", - "pid": "259943401", - "note": [ - { - "label": [ - "Tr\u00e9sor de la langue fran\u00e7aise : corpor\u00e9it\u00e9, corporalit\u00e9 - http://stella.atilf.fr (2022-07-13)", - "Grand dict. de la philosophie / M. Blay, 2003", - "Dict. de philosophie / C. Godin, 2004", - "Dict. Merleau-Ponty / P. Dupond, 2007", - "Structure, origine et affectivit\u00e9 : quelques r\u00e9flexions \u00e0 propos de la corpor\u00e9it\u00e9 / G. Florival [in] Revue philosophique de Louvain, 1979, 34 - https://www.persee.fr (2022-07-13)", - "Le corps de la responsabilit\u00e9 : sensibilit\u00e9, corpor\u00e9it\u00e9 et subjectivit\u00e9 chez L\u00e9vinas / R. Calin [in] Les \u00e9tudes philosophiques, 2006, 3, 78 - https://www.cairn.info (2022-07-13)", - "Alt\u00e9rit\u00e9 et corpor\u00e9it\u00e9 dans l'oeuvre de Jean-Paul Sartre / A. Abdellaoui, 2008 [th\u00e8se]" - ], - "noteType": "dataSource" - } - ], + "md5": "6fabf89a9335394b7d0f447143db04ce", + "pid": "278747272", "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Corps (philosophie)" + "authorized_access_point": "Musique \u00e9lectroacoustique mixte ([distributions instrumentales])" } ], "related": [ { - "authorized_access_point": "Esprit et corps" - }, - { - "authorized_access_point": "Ph\u00e9nom\u00e9nologie" - } - ], - "bnf_type": "sujet Rameau", - "closeMatch": [ - { - "source": "GND", - "authorized_access_point": "Leiblichkeit" + "authorized_access_point": "Orgue et ensemble \u00e0 percussion" } ], + "bnf_type": "genre/forme Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/259943401", + "value": "http://www.idref.fr/278747272", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18024286r", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181505701", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18150570", "source": "BNF" } ], "classification": [ { - "name": "Philosophie", + "name": "Musique", "type": "bf:ClassificationDdc", - "classificationPortion": "100" + "classificationPortion": "780" } ], "variant_access_point": [ - "Corporalit\u00e9 (philosophie)", - "Corpor\u00e9it\u00e9 (philosophie)", - "Corps v\u00e9cu (philosophie)", - "Leib (philosophie)" + "PiOrgue, ensemble \u00e0 percussion et musique \u00e9lectroacoustique" ], - "authorized_access_point": "Chair (philosophie)" + "authorized_access_point": "Musique \u00e9lectroacoustique mixte (orgue et ensemble \u00e0 percussion)" }, { - "md5": "f34cb8c3c49098160a0d6cc0201b1576", - "pid": "259951293", + "md5": "335217f5082e088b37a025c9f0fd1f01", + "pid": "278747280", + "note": [ + { + "label": [ + "LC online cat., 2024-06-04 : Porticoes -- Italy" + ], + "noteType": "dataSource" + } + ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "R\u00e9fugi\u00e9s syriens" - }, - { - "authorized_access_point": "Syriennes" + "authorized_access_point": "Portiques (architecture) - [Localisations g\u00e9ographiques]" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/259951293", + "value": "http://www.idref.fr/278747280", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb17992194g", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18150656r", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18150656", "source": "BNF" } ], "classification": [ { - "name": "Sciences sociales", - "type": "bf:ClassificationDdc", - "classificationPortion": "300" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "305" - }, - { - "name": "Sciences politiques", - "type": "bf:ClassificationDdc", - "classificationPortion": "320" - }, - { - "name": "Probl\u00e8mes et services sociaux", + "name": "B\u00e2timent", "type": "bf:ClassificationDdc", - "classificationPortion": "360" + "classificationPortion": "690" }, { - "name": "Ethnologie, anthropologie, folklore", + "name": "Architecture", "type": "bf:ClassificationDdc", - "classificationPortion": "390" + "classificationPortion": "720" } ], - "variant_access_point": [ - "Femmes syriennes r\u00e9fugi\u00e9es", - "Syriennes - R\u00e9fugi\u00e9es" - ], - "authorized_access_point": "R\u00e9fugi\u00e9es syriennes" + "authorized_access_point": "Portiques (architecture) - Italie" }, { - "md5": "a070b26c380708e0cb7a458c7310608e", - "pid": "259974811", + "md5": "46ca6b28b31d9dc8050f506a879f6b4d", + "pid": "278747299", "note": [ { "label": [ - "Orphanet - https://www.orpha.net (2022-07-15)", - "Dict. de l'Acad\u00e9mie de m\u00e9decine - http://dictionnaire.academie-medecine.fr (2022-07-15)", - "Dict. de l'Acad\u00e9mie nationale de pharmacie - https://dictionnaire.acadpharm.org (2022-07-15)", - "Dict. illustr\u00e9 des termes de m\u00e9decine, 2012 (art. : Adamantinome)", - "Dict. de m\u00e9decine Flammarion, 2008" + "Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour fl\u00fbte, percussion et violoncelle, et les recueils de compositions de formes et de genres diff\u00e9rents pour cette m\u00eame formation" ], - "noteType": "dataSource" + "noteType": "general" } ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Tumeurs" - } - ], - "bnf_type": "sujet Rameau", - "closeMatch": [ - { - "source": "MeSH", - "identifiedBy": { - "type": "uri", - "value": "https://id.nlm.nih.gov/mesh/M0000883", - "source": "MeSH" - }, - "authorized_access_point": "Ameloblastoma" - }, - { - "source": "RVMLaval", - "authorized_access_point": "Am\u00e9loblastome" + "authorized_access_point": "Trios ([distributions instrumentales])" } ], + "bnf_type": "genre/forme Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/259974811", + "value": "http://www.idref.fr/278747299", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180248643", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181506600", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18150660", "source": "BNF" } ], "classification": [ { - "name": "Sciences m\u00e9dicales et param\u00e9dicales", + "name": "Musique", "type": "bf:ClassificationDdc", - "classificationPortion": "610" + "classificationPortion": "780" } ], - "variant_access_point": [ - "Adamantinome", - "Adamantoblastome", - "Am\u00e9lome" - ], - "authorized_access_point": "Am\u00e9loblastome" + "authorized_access_point": "Trios (fl\u00fbte, percussion, violoncelle)" }, { - "md5": "323ff5cf4b178270d43b26520c321fbf", - "pid": "259995118", - "note": [ + "md5": "4372416c60eeaa8cf0ea894d4d75c015", + "pid": "278747302", + "type": "bf:Topic", + "broader": [ { - "label": [ - "Syncopes vasopl\u00e9giques et l\u00e9sion du sympathique cervical / T. Plagnieux, 2000 [th\u00e8se]", - "Infarctus du myocarde chez un transplant\u00e9 cardiaque / G. Drobinski, R. Dorent [in] La Lettre du cardiologue, 1999, 320", - "La migraine : connaissances descriptives, traitements et pr\u00e9vention, 1998", - "Dict. de m\u00e9decine Flammarion, 2008 : tyramine (\u00e9preuve \u00e0 la)" - ], - "noteType": "dataSource" + "authorized_access_point": "Musique \u00e9lectroacoustique mixte ([distributions instrumentales])" } ], - "type": "bf:Topic", - "broader": [ + "related": [ { - "authorized_access_point": "Diagnostic biologique" + "authorized_access_point": "Fl\u00fbte et orchestre" } ], - "bnf_type": "sujet Rameau", + "bnf_type": "genre/forme Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/259995118", + "value": "http://www.idref.fr/278747302", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18021099t", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18150800p", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18150800", "source": "BNF" } ], "classification": [ { - "name": "Sciences m\u00e9dicales et param\u00e9dicales", + "name": "Musique", "type": "bf:ClassificationDdc", - "classificationPortion": "610" + "classificationPortion": "780" } ], - "variant_access_point": [ - "\u00c9preuve \u00e0 la tyramine", - "Tyramine, \u00c9preuve \u00e0 la", - "Tyramine, Test \u00e0 la" - ], - "authorized_access_point": "Test \u00e0 la tyramine" + "authorized_access_point": "Musique \u00e9lectroacoustique mixte (fl\u00fbte et orchestre)" }, { - "md5": "568fba0183f4e9b2d9aea72e1dd1e06e", - "pid": "261107909", + "md5": "dca0c4254cd84053c076afa7b920f75b", + "pid": "278747329", "note": [ { "label": [ - "Naval Group promet un drone sous-marin dans quatre ans / A. Bauer [in] les Echos, 8 oct. 2021 - https://www.lesechos.fr (2022-07-11)", - "Ligue de la mer : Drone sous marin : les 5 meilleurs mod\u00e8les en 2022 - https://liguedelamer.com (2022-07-11)", - "Poseidon oceanic multipurpose system : russia's nuclear strike undersea drone / H. Harkins, 2019" + "Sous cette vedette, obligatoirement suivie d'une subdivision g\u00e9ographique ou de la subdivision : \u00c0 l'\u00e9tranger, directement ou apr\u00e8s une subdivision de sujet, on trouve les documents sur les animateurs de radio tch\u00e9coslovaques hors de Tch\u00e9coslovaquie. Les documents sur les animateurs de radio tch\u00e9coslovaques en Tch\u00e9coslovaquie se trouvent sous des vedettes-mati\u00e8re telles que : Animateurs de radio -- Tch\u00e9coslovaquie ; Animateurs de radio -- [Subdivision de sujet] -- Tch\u00e9coslovaquie ; etc" ], - "noteType": "dataSource" + "noteType": "general" } ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Drones" + "authorized_access_point": "Tch\u00e9coslovaques" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/261107909", + "value": "http://www.idref.fr/278747329", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180243861", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18151274t", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18151274", "source": "BNF" } ], "classification": [ { - "name": "Art et science militaires", "type": "bf:ClassificationDdc", - "classificationPortion": "355" + "classificationPortion": "305" }, { - "name": "Sciences appliqu\u00e9es", + "name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", - "classificationPortion": "600" + "classificationPortion": "390" + }, + { + "name": "Audiovisuel", + "type": "bf:ClassificationDdc", + "classificationPortion": "791" } ], - "variant_access_point": [ - "Undersea drone", - "Underwater drone" - ], - "authorized_access_point": "Drones sous-marins" + "authorized_access_point": "Animateurs de radio tch\u00e9coslovaques" }, { - "md5": "e42955314869496c985b6f94bf2d9546", - "pid": "261196715", + "md5": "a00cd33807bcc96689f99e75317008fe", + "pid": "279034725", "note": [ { "label": [ - "Wikip\u00e9dia - https://en.wikipedia.org (2022-07-11)", - "Rules and regulations of the Magellanic Premium / American Philosophical Society, nc", - "The Magellanic Premium of the American Philosophical Society - https://www.amphilsoc.org (2022-07-11)" + "R\u00f4le du facteur de transcription Nrf2 dans le contr\u00f4le de l'allergie cutan\u00e9e en r\u00e9ponse aux mol\u00e9cules allergisantes / Z. El Ali, 2013 [th\u00e8se]", + "R\u00f4le du facteur de transcription Nrf2 dans la r\u00e9gulation des fonctions du neutrophile in vitro et dans l'allergie cutan\u00e9e / D. Helou, 2018 [th\u00e8se]", + "La voie Nrf2 en pathologie respiratoire [in] M\u00e9decine/sciences, 2011, 27, 11" ], "noteType": "dataSource" - }, - { - "label": [ - "Prix cr\u00e9\u00e9 en 1786 gr\u00e2ce \u00e0 une subvention de Jean-Hyacinthe Magellan. Il est attribu\u00e9 par l'American Philosophical Society pour des contributions majeures dans le domaine de la navigation (que ce soit par voie maritime, a\u00e9rienne ou spatiale)" - ], - "noteType": "general" } ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Prix et r\u00e9compenses" - } - ], - "related": [ - { - "authorized_access_point": "Navigation" + "authorized_access_point": "Facteurs de transcription" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/261196715", + "value": "http://www.idref.fr/279034725", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18024307w", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181050359", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18105035", "source": "BNF" } ], "classification": [ { - "name": "G\u00e9n\u00e9ralit\u00e9s", - "type": "bf:ClassificationDdc", - "classificationPortion": "000" - }, - { - "name": "Sciences appliqu\u00e9es", + "name": "Sciences de la vie", "type": "bf:ClassificationDdc", - "classificationPortion": "600" + "classificationPortion": "570" } ], "variant_access_point": [ - "Magellanic Gold Medal", - "Magellanic Prize" + "Facteur de transcription Nrf-2", + "NF-E2-related factor 2", + "Nrf-2 (prot\u00e9ine)", + "Nrf2 (prot\u00e9ine)", + "Nuclear factor E2-related factor 2", + "Nuclear factor erythroid-2-related factor 2" ], - "authorized_access_point": "Magellanic Premium" + "authorized_access_point": "Facteur de transcription Nrf2" }, { - "md5": "9a7f43d1805d465fb08ff9cc2cdf7d3a", - "pid": "261901532", - "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Guerre mondiale (1939-1945) - Mouvements de r\u00e9sistance" - }, + "md5": "5b350f90fdccf698ff150b32acafb5c6", + "pid": "279034733", + "note": [ { - "authorized_access_point": "Gr\u00e8ce - 1941-1944 (Occupation)" + "label": [ + "\u00c9tude fonctionnelle de mutants de DCLRE1B/Apollo dans l'oncogen\u00e8se r\u00e9nale / C. Bories, 2023 [th\u00e8se]", + "DCLRE1B/Apollo germline mutations associated with renal cell carcinoma impair telomere protection [in] BBA. Molecular basis of disease, 2024, 1870, 4" + ], + "noteType": "dataSource" } ], - "bnf_type": "sujet Rameau", - "closeMatch": [ + "type": "bf:Topic", + "broader": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh2008113907", - "source": "LCSH" - }, - "authorized_access_point": "World War, 1939-1945--Underground movements--Greece" + "authorized_access_point": "G\u00e8nes" } ], + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/261901532", + "value": "http://www.idref.fr/279034733", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb178988057", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18140209x", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18140209", "source": "BNF" } ], - "classification": [ - { - "name": "Sciences politiques", - "type": "bf:ClassificationDdc", - "classificationPortion": "320" - }, + "classification": [ { - "name": "Histoire m\u00e9di\u00e9vale, moderne et contemporaine (sauf la France)", + "name": "Sciences de la vie", "type": "bf:ClassificationDdc", - "classificationPortion": "940" + "classificationPortion": "570" } ], - "authorized_access_point": "Guerre mondiale (1939-1945) - Mouvements de r\u00e9sistance - Gr\u00e8ce" + "variant_access_point": [ + "Apollo/DCLRE1B (g\u00e8ne)", + "DCLRE1B/Apollo (g\u00e8ne)", + "G\u00e8ne Apollo/DCLRE1B" + ], + "authorized_access_point": "G\u00e8ne DCLRE1B/Apollo" }, { - "md5": "4510d28fdc9fec8367a3bd4bb6f5aa6e", - "pid": "262111012", + "md5": "5d07f550938e6ac786d7fa8b10f5c797", + "pid": "279034741", + "note": [ + { + "label": [ + "Valeurs et modalit\u00e9s de mise en \u0153uvre de la conception universelle de l'apprentissage dans les pays de langue fran\u00e7aise : une \u00e9tude de port\u00e9e / D. Odier-Guedj, L. Lef\u00e8vre, M.-E. Boisvert Hamelin, [in] La nouvelle revue - \u00c9ducation et soci\u00e9t\u00e9 inclusives, 2023, 97, 3", + "L'utilisation des principes de la conception universelle de l'apprentissage pour le d\u00e9veloppement d'un programme d'interventions bas\u00e9es sur la pr\u00e9sence attentive pour les personnes adolescentes de 12 \u00e0 19 ans / C. Duranleau, N. Rousseau, F. Dionne [in] \u00c9ducation et francophonie, 2023, 51, 1", + "La conception universelle de l'apprentissage : un \u00ab pont dynamique \u00bb entre une diff\u00e9renciation p\u00e9dagogique et une \u00e9valuation humaniste ? / C. Eid [in] Contextes et didactiques, 2019, 13" + ], + "noteType": "dataSource" + } + ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Po\u00e9sie italienne" + "authorized_access_point": "P\u00e9dagogie" } ], "related": [ { - "authorized_access_point": "\u00c9pop\u00e9es italiennes" + "authorized_access_point": "Apprentissage" + }, + { + "authorized_access_point": "Int\u00e9gration scolaire" } ], - "bnf_type": "genre/forme Rameau", + "bnf_type": "sujet Rameau", "closeMatch": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh99010470", - "source": "LCSH" - }, - "authorized_access_point": "Narrative poetry, Italian" + "source": "RVMLaval", + "authorized_access_point": "Conception universelle de l'apprentissage" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/262111012", + "value": "http://www.idref.fr/279034741", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18003960b", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181489491", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18148949", "source": "BNF" } ], "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Education et enseignement", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "370" } ], - "authorized_access_point": "Po\u00e9sie narrative italienne" + "variant_access_point": [ + "Accessibilit\u00e9 universelle \u00e0 l'apprentissage", + "Conception universelle de l'enseignement", + "CUA", + "CUE", + "P\u00e9dagogie universelle" + ], + "authorized_access_point": "Conception universelle de l'apprentissage" }, { - "md5": "fa3d70e0aa75a8179143a0083ab01f44", - "pid": "262111020", - "type": "bf:Topic", - "broader": [ + "md5": "1a1e961f275d24ce90fd25b04a7bc891", + "pid": "27903475X", + "note": [ { - "authorized_access_point": "Nouvelles espagnoles" + "label": [ + "Roman choral : fiction \u00e0 voix multiples / J. Domingues de Almeida et F. Outeirinho, 2024", + "Le Roman Polyphonique / B. Thibault [in] Dani\u00e8le Sallenave et le don des morts, Collection Monographique Rodopi en Litt\u00e9rature Fran\u00e7aise Contemporaine, 2004, 40", + "Le roman au XVIIIe si\u00e8cle en Europe / A. Montandon, 1999, p. 221" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Proc\u00e9d\u00e9 narratif, ne rel\u00e8ve pas du r\u00e9f\u00e9rentiel genre/forme" + ], + "noteType": "general" } ], - "bnf_type": "genre/forme Rameau", - "identifiedBy": [ + "type": "bf:Topic", + "broader": [ { - "type": "uri", - "value": "http://www.idref.fr/262111020", - "source": "IDREF" + "authorized_access_point": "Narration" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18003978d", - "source": "BNF" + "authorized_access_point": "Roman - Technique" } ], - "classification": [ + "related": [ { - "name": "Histoire et critique litt\u00e9raires", - "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "authorized_access_point": "Point de vue (litt\u00e9rature)" } ], - "variant_access_point": [ - "Minifictions espagnoles" - ], - "authorized_access_point": "Micronouvelles espagnoles" - }, - { - "md5": "5772a7ec2d6923ef0e154cd43e416940", - "pid": "262111039", - "type": "bf:Topic", - "bnf_type": "genre/forme Rameau", + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/262111039", + "value": "http://www.idref.fr/27903475X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18006555c", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181496990", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18149699", "source": "BNF" } ], "classification": [ { - "name": "Musique", + "name": "Po\u00e9sie", "type": "bf:ClassificationDdc", - "classificationPortion": "780" + "classificationPortion": "801" } ], - "authorized_access_point": "Choeurs profanes (voix d'hommes, 5 voix) acc. de piano" + "variant_access_point": [ + "Roman polyphonique", + "Roman \u00e0 plusieurs voix", + "Roman \u00e0 voix multiples" + ], + "authorized_access_point": "Roman choral" }, { - "md5": "8d8edb307ff4d8719cb20763863dba93", - "pid": "262111071", + "md5": "515cd3b4953a0250eb90fd7f55a63de9", + "pid": "279034768", "type": "bf:Topic", - "bnf_type": "genre/forme Rameau", - "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh88005277", - "source": "LCSH" - }, - "authorized_access_point": "Variations (Cello with string ensemble)" - }, + "broader": [ { - "source": "RVMLaval", - "authorized_access_point": "Variations (Violoncelle et ensemble \u00e0 cordes)" + "authorized_access_point": "Nouvelles belges de langue fran\u00e7aise" } ], + "bnf_type": "genre/forme Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/262111071", + "value": "http://www.idref.fr/279034768", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18008046h", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18150205r", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18150205", "source": "BNF" } ], "classification": [ { - "name": "Musique", + "name": "Histoire et critique litt\u00e9raires", "type": "bf:ClassificationDdc", - "classificationPortion": "780" + "classificationPortion": "800" } ], - "authorized_access_point": "Variations (violoncelle et ensemble \u00e0 cordes)" + "authorized_access_point": "Thriller (nouvelles) belge de langue fran\u00e7aise" }, { - "md5": "934f5a1c5cbf0279cf3884632e489222", - "pid": "26211108X", + "md5": "bc711de906c7b2f3fc63f30c67974c53", + "pid": "279034776", "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Roman fran\u00e7ais pour la jeunesse" + } + ], "bnf_type": "genre/forme Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/26211108X", + "value": "http://www.idref.fr/279034776", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180080486", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18150214q", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18150214", "source": "BNF" } ], "classification": [ { - "name": "Musique", + "name": "Histoire et critique litt\u00e9raires", "type": "bf:ClassificationDdc", - "classificationPortion": "780" + "classificationPortion": "800" } ], - "authorized_access_point": "Variations (violons (2), alto, violoncelles (2))" + "variant_access_point": [ + "Roman d'\u00e9pouvante pour la jeunesse fran\u00e7ais" + ], + "authorized_access_point": "Roman d'\u00e9pouvante fran\u00e7ais pour la jeunesse" }, { - "md5": "9ca0ee125bb6d7a4e06ccd6326ef9e5f", - "pid": "262111098", - "note": [ - { - "label": [ - "\u00c9l\u00e9ments pour une d\u00e9finition des s\u00e9ries cartographiques / J.-L. Arnaud [in] Documentation et biblioth\u00e8ques, 2015, 61-4", - "S\u00e9ries cartographiques et g\u00e9or\u00e9f\u00e9rencement : nouveau contexte, nouveaux enjeux / J.-L. Arnaud [in] e-Perimetron, 2015, 10, 4", - "Catalogues et ressources du d\u00e9partement des Cartes et plans - https://bnf.fr (2022-04-13)" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Cartes dont la publication ob\u00e9it \u00e0 une logique s\u00e9rielle, l'ensemble d'une s\u00e9rie formant un tout coh\u00e9rent" - ], - "noteType": "general" - } - ], + "md5": "46a293a5a59bfaab076233d257abdefb", + "pid": "279034784", "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Cartes" + "authorized_access_point": "Litt\u00e9rature \u00e9rotique am\u00e9ricaine" } ], "bnf_type": "genre/forme Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/262111098", + "value": "http://www.idref.fr/279034784", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18008626j", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18150222b", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18150222", "source": "BNF" } ], "classification": [ { - "name": "G\u00e9ographie, tourisme (guides) et voyages", + "name": "Histoire et critique litt\u00e9raires", "type": "bf:ClassificationDdc", - "classificationPortion": "910" + "classificationPortion": "800" } ], - "variant_access_point": [ - "S\u00e9ries de cartes" - ], - "authorized_access_point": "S\u00e9ries cartographiques" + "authorized_access_point": "Dark romance am\u00e9ricaine" }, { - "md5": "5832609e6dc46e7c565999c3dc21cec2", - "pid": "262125927", - "note": [ - { - "label": [ - "Grand Larousse universel", - "Encycl. universalis - http://www.universalis-edu.com (2022-04-22)", - "Dict. des religions / P. Poupard, 1993 (art. : F\u00eates hindoues)", - "Hist. des religions. II / H.-C. Puech, 1972" - ], - "noteType": "dataSource" - } - ], + "md5": "53b6d71095072384454390ee7be877e3", + "pid": "279034792", "type": "bf:Topic", "broader": [ { - "authorized_access_point": "F\u00eates religieuses - Hindouisme" - } - ], - "bnf_type": "sujet Rameau", - "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh86002490", - "source": "LCSH" - }, - "authorized_access_point": "Holi (Hindu festival)" + "authorized_access_point": "Roman am\u00e9ricain" }, { - "source": "RVMLaval", - "authorized_access_point": "Hol\u012b" + "authorized_access_point": "Satire am\u00e9ricaine" } ], + "bnf_type": "genre/forme Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/262125927", + "value": "http://www.idref.fr/279034792", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18010303b", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181502330", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18150233", "source": "BNF" } ], "classification": [ { - "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", - "type": "bf:ClassificationDdc", - "classificationPortion": "200" - }, - { + "name": "Histoire et critique litt\u00e9raires", "type": "bf:ClassificationDdc", - "classificationPortion": "391" + "classificationPortion": "800" } ], - "variant_access_point": [ - "F\u00eate des couleurs (hindouisme)", - "Ph\u00e2lgunotsava", - "Vasantotsava" - ], - "authorized_access_point": "Holi" + "authorized_access_point": "Roman satirique am\u00e9ricain" }, { - "md5": "b412e5ac6c74cec12ab0619c71d8d3a2", - "pid": "262413817", + "md5": "8742a0db926d05a9b77d918e5c354dda", + "pid": "279034806", "note": [ { "label": [ - "Biographisch-Bibliographisches Kirchenlexikon (art. : Abel, Karl August von) : Kniebeugungsstreit vom 14.8.1838 [bis] 12.12.1845 - https://www.bbkl.de (2022-07-21)", - "\u00dcber Protantismus und Kniebegeugung in Bayern / F. Thiersch, 1844", - "Zweites offenes Bedenken, die Kniebeugungs-Frage, insbesondere die neueste Entschliessung vom 3. November 1844 betreffend : mit zwei Beilagen / F. F. K. Graf von Giech, 1841", - "Haus der Bayerischen Geschichte (art. K\u00f6nigsreich Bayern 1806-1918 : Kniebeugeerlass) - https://www.hdbg.eu (2022-04-29)" + "Influence de la rigidit\u00e9 du substrat sur la migration des cellules souches de la pulpe dentaire / C. Ehlinger, 2020 [th\u00e8se]", + "La migration des cellules et leur sensibilit\u00e9 aux propri\u00e9t\u00e9s physiques de la matrice extracellulaire : r\u00f4le d'ICAP-1, un r\u00e9gulateur des int\u00e9grines et de la contractilit\u00e9 / M. R\u00e9gent, 2011 [th\u00e8se]", + "Activit\u00e9 et r\u00e9ponse \u00e0 une blessure d'un tapis de cellules [in] Reflets de la physique, 2010, 18" ], "noteType": "dataSource" } ], "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Cellules - Motilit\u00e9" + }, + { + "authorized_access_point": "Taxie" + } + ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/262413817", + "value": "http://www.idref.fr/279034806", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18010802c", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181509228", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18150922", "source": "BNF" } ], "classification": [ { - "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", + "name": "Sciences de la vie", "type": "bf:ClassificationDdc", - "classificationPortion": "200" + "classificationPortion": "570" } ], "variant_access_point": [ - "der Kniebeugungeerlass", - "die Frage der Kniebeugung der Protestanten", - "die Kniebeugungsstreit", - "Question de la g\u00e9nuflexion" + "Durotactisme" ], - "authorized_access_point": "die Kniebeugungsfrage (1838-1845)" + "authorized_access_point": "Durotaxie" }, { - "md5": "bb88efed39ec66d2e8ea8e621a4991ad", - "pid": "262414023", + "md5": "e5b67d4873d90ecb8eb02c9d84a3c89d", + "pid": "279034814", "note": [ { "label": [ - "Le soufisme \u00e0 l'\u00e9poque ottomane, XVI-XVIIIe si\u00e8cle / R. Chih, C. Mayeur-Jaouen, 2010", - "Dict. historique de l'Islam / J. et D. Sourdel, 2004 (art.: Suhrwardiya) : Shatt\u00e2riya", - "Encycl. of Islam, 1998 : S\u0332h\u0332a\u1e6d\u1e6d\u0101r\u012bya", - "The Oxford dict. of Islam / J. L. Esposito, 2003 : Shattari Tariqah", - "Les voies d'Allah / A. Popovic, G. Veinstein, 1996 : Chatt\u00e2riyya, Chatt\u00e2r\u00ee" + "Vitrine linguistique - https://vitrinelinguistique.oqlf.gouv.qc.ca (2024-06-05)", + "Tour d'horizon des lign\u00e9es de cellules souches pluripotentes / E. Kieffer, S. Kuntz, S. Viville [in] M\u00e9decine/sciences, 2010, 26, 10", + "Biologie cellulaire et mol\u00e9culaire, 2022" ], "noteType": "dataSource" } @@ -12961,66 +33689,46 @@ "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Confr\u00e9ries musulmanes" - }, - { - "authorized_access_point": "Soufisme" + "authorized_access_point": "Cellules souches" } ], "bnf_type": "sujet Rameau", - "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "https://id.loc.gov/authorities/subjects/sh2001009476", - "source": "LCSH" - }, - "authorized_access_point": "Sha\u1e6d\u1e6d\u0101r\u012byyah" - } - ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/262414023", + "value": "http://www.idref.fr/279034814", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18011878v", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18150984t", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18150984", "source": "BNF" } ], "classification": [ { - "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", + "name": "Sciences de la vie", "type": "bf:ClassificationDdc", - "classificationPortion": "200" + "classificationPortion": "570" } ], - "variant_access_point": [ - "Shatt\u00e2riyya", - "Chatt\u00e2riyya", - "Chatt\u00e2r\u00ee", - "Shattari tariqah" - ], - "authorized_access_point": "Sha\u1e6d\u1e6d\u0101r\u012byya" + "authorized_access_point": "Cellules souches pluripotentes" }, { - "md5": "1b3cd2ce060dec04cccddea6143aafcd", - "pid": "262414082", + "md5": "0cc0f4e7e2f9c75cbf9bc43ee019ed52", + "pid": "279034822", "note": [ { "label": [ - "Encycl. universalis (art. : Juda\u00efsme, les pratiques)", - "Dict. encyclop\u00e9dique du juda\u00efsme, 1993 : kapparot", - "Encycl. Judaica, 2007", - "Les f\u00eates juives / Y. Leibowitz, 2008 : coutumes des kapparoth", - "Dict. du juda\u00efsme / A. Unterman, 1997 : coutume des kapparoth (sg : kapporos)", - "Le juda\u00efsme dans la vie quotidienne / E. Gugenheim, 1992 : usage des kapparoth", - "Dict. de civilisation juive / J.-C. Attias, E. Benbassa, 1997 (art. : Solennit\u00e9s) : c\u00e9r\u00e9monie des kaparot", - "The encycl. of Judaism / J. Neusner, A. J. Avery-Peck, W. S. Green, 2003 (art. : Superstitions in Judaism) : Kapparah, sg. (yiddish : kappore shlagn)", - "Oxford dict. of the Jewish religion : custom of kapparot" + "eVidal - https://evidal.vidal.fr (2024-06-11)", + "La d\u00e9couverte des propri\u00e9t\u00e9s antid\u00e9pressives de la k\u00e9tamine / P. de Maricourt, R. Gaillard [in] Annales m\u00e9dico-psychologiques, revue psychiatrique, 2017, 175, 7", + "Psychotropes du futur : de l'imipramine \u00e0 la k\u00e9tamine [in] Bulletin de l'Acad\u00e9mie nationale de m\u00e9decine, 2020, 204, 9", + "PubChem : esketamine - https://pubchem.ncbi.nlm.nih.gov (2024-06-11)" ], "noteType": "dataSource" } @@ -13028,283 +33736,280 @@ "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Juda\u00efsme - Rites et c\u00e9r\u00e9monies" + "authorized_access_point": "Antid\u00e9presseurs" + }, + { + "authorized_access_point": "K\u00e9tamine" } ], - "related": [ + "bnf_type": "sujet Rameau", + "closeMatch": [ { - "authorized_access_point": "Yom Kippour" + "source": "MeSH", + "identifiedBy": [ + { + "type": "uri", + "value": "https://id.nlm.nih.gov/mesh/M000647133", + "source": "MeSH" + } + ], + "authorized_access_point": "Esketamine" } ], - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/262414082", + "value": "http://www.idref.fr/279034822", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180121874", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181510341", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18151034", "source": "BNF" } ], "classification": [ { - "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", + "name": "Chimie, min\u00e9ralogie, cristallographie", "type": "bf:ClassificationDdc", - "classificationPortion": "200" + "classificationPortion": "540" }, { "type": "bf:ClassificationDdc", - "classificationPortion": "391" + "classificationPortion": "615" } ], - "variant_access_point": [ - "Kaparot", - "Kapparah", - "Kappore shlagn", - "C\u00e9r\u00e9monie des kapparoth", - "Coutume des kapparoth", - "Expiations", - "Kapparoth, C\u00e9r\u00e9monie des", - "Kapparoth, Coutume des" - ], - "authorized_access_point": "Kapparoth" + "authorized_access_point": "Esk\u00e9tamine" }, { - "md5": "b146d4afef3127d6ad18adc50a195921", - "pid": "262414112", + "md5": "0191aabc86572389a539a297fefb9d74", + "pid": "279034849", "note": [ { "label": [ - "Encycl. universalis (art. : Homme, fils de l') - www.universalis-edu.com (2022-05-05)", - "Dict. J\u00e9sus / \u00c9cole biblique et arch\u00e9ologique fran\u00e7aise de J\u00e9rusalem, 2021 (art. : Fils de l'homme ; Fils d'homme ; Ho huios tou anthr\u00f4pou ; Ben \u00e3d\u00e3m)", - "J\u00e9sus, l'encycl., 2017", - "Sur les pas du Fils de l'homme : la th\u00e9ologie selon Saint Marc / A. Begasse de Dhaem [in] Nouvelle revue th\u00e9ologique, 2011, 133 - https://www.cairn.info (2022-05-11)" + "Le flux 4D : technique et principales applications pour l'\u00e9tude de l'aorte thoracique [in] Journal d'imagerie diagnostique et interventionnelle, 2021, 4, 2", + "Scanner et imagerie par r\u00e9sonance magn\u00e9tique des cardiopathies cong\u00e9nitales \u00e0 l'\u00e2ge adulte [in] EMC. Radiologie et imagerie m\u00e9dicale. Cardiovasculaire - thoracique - cervicale, 2022, 40, 4", + "\u00c9valuation des flux en imagerie par r\u00e9sonance magn\u00e9tique cardiaque : l'imagerie de flux 4D / J.-F. Paul [in] Annales de cardiologie et d'ang\u00e9iologie, 2020, 69, 5" ], "noteType": "dataSource" } ], "type": "bf:Topic", - "bnf_type": "sujet Rameau", - "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "https://id.loc.gov/authorities/subjects/sh85124809", - "source": "LCSH" - }, - "authorized_access_point": "Son of Man" - }, + "broader": [ { - "source": "RVMLaval", - "authorized_access_point": "Fils de l'homme" + "authorized_access_point": "Imagerie par r\u00e9sonance magn\u00e9tique" } ], + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/262414112", + "value": "http://www.idref.fr/279034849", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180125788", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18151339k", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18151339", "source": "BNF" } ], "classification": [ { - "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", + "name": "Sciences m\u00e9dicales et param\u00e9dicales", "type": "bf:ClassificationDdc", - "classificationPortion": "200" + "classificationPortion": "610" } ], "variant_access_point": [ - "Fils d'homme", - "Homme, Fils de l'", - "Homme, Fils d'", - "Huios tou anthropou", - "Ben \u00e3d\u00e3m", - "Bar enash", - "Bar nash" + "Imagerie de flux 4D", + "IRM 4D de flux", + "IRM 4D flow", + "IRM de contraste de phase 4D", + "IRM de flux 4D", + "IRM en flux 4D", + "IRM flux 4D" ], - "authorized_access_point": "Fils de l'homme" + "authorized_access_point": "Flux 4D" }, { - "md5": "8f484298c0bed27ee348b6fd325375a2", - "pid": "262668858", + "md5": "7b35c525e4b00ae097c088822b6f380e", + "pid": "279034865", "note": [ { "label": [ - "Encycl. de l'Islam - https://referenceworks-brillonline-com (2022-05-27)", - "Dict. de l'Empire ottoman / F. Georgeon, N. Vatin, G. Veinstein, 2015", - "Les voies d'Allah : les ordres mystiques dans l'Islam des origines \u00e0 aujourd'hui / A. Popovic, G. Veinstein, 1996", - "Le soufisme \u00e0 l'\u00e9poque ottomane / R. Chih, C. Mayeur-Jaouen, 2010" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Entre le XVe et le XIXe si\u00e8cle, trois confr\u00e9ries soufies sans lien organique s'inspir\u00e8rent du mouvement mystique \"malamatiyya\" constitu\u00e9 au IXe s. qui consistait \u00e0 accomplir d\u00e9lib\u00e9r\u00e9ment des actes contraires \u00e0 la loi pour s'attirer l'opprobre et vivre ainsi dans l'humilit\u00e9 selon l'\u00e9p\u00eetre d'al-Sulami" + "Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour synth\u00e9tiseur et orchestre, et les recueils de compositions de formes et de genres diff\u00e9rents pour synth\u00e9tiseur et ensemble \u00e0 vent" ], "noteType": "general" } ], "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Mystique - Islam" - }, - { - "authorized_access_point": "Soufisme" - } - ], - "related": [ - { - "authorized_access_point": "Confr\u00e9ries musulmanes" - } - ], - "bnf_type": "sujet Rameau", - "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "https://id.loc.gov/authorities/subjects/sh95003301", - "source": "LCSH" - }, - "authorized_access_point": "Mal\u0101mat\u012byah" - }, - { - "source": "GND", - "authorized_access_point": "Mal\u0101mat\u012bya" - } - ], + "bnf_type": "genre/forme Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/262668858", + "value": "http://www.idref.fr/279034865", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18014674n", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181515572", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18151557", "source": "BNF" } ], "classification": [ { - "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", + "name": "Musique", "type": "bf:ClassificationDdc", - "classificationPortion": "200" + "classificationPortion": "780" } ], - "variant_access_point": [ - "Hamzavis", - "Hamzawiye", - "Malamati", - "Malamatis", - "Mal\u00e2mi", - "Mal\u00e2mis", - "Mal\u0101miyya", - "Mal\u0101miyya-N\u016briyya", - "Mel\u00e2mi", - "Mel\u00e2m\u00ee-Hamzev\u00ee", - "Mel\u00e2milik", - "Mel\u00e2mis", - "Mel\u00e2mis-Bayr\u00e2mis", - "Mel\u00e2miye-Hamzaviye", - "Mel\u0101miyya", - "Mel\u00e2miyya-N\u00fbriyya", - "Mel\u00e2miyye-Bayr\u00e2miye", - "Mel\u00e2miyye-Nuriye" - ], - "authorized_access_point": "Mal\u0101matiyya" + "authorized_access_point": "Synth\u00e9tiseur et orchestre" }, { - "md5": "bfbaf42107d3a32b56b25487f6c339a4", - "pid": "262669161", + "md5": "57c7a63142038db34d3c5beb28cf4838", + "pid": "279034873", "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Trios ([distributions instrumentales])" + "authorized_access_point": "Roman gallois" } ], "bnf_type": "genre/forme Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/262669161", + "value": "http://www.idref.fr/279034873", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180158853", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18151562n", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18151562", "source": "BNF" } ], "classification": [ { - "name": "Musique", + "name": "Histoire et critique litt\u00e9raires", "type": "bf:ClassificationDdc", - "classificationPortion": "780" + "classificationPortion": "800" + } + ], + "authorized_access_point": "Roman historique gallois" + }, + { + "md5": "a33c09f93294f9035ebb86772e22403e", + "pid": "279034881", + "note": [ + { + "label": [ + "\u00ab Le parlage des jeunes \u00bb \u00e0 la R\u00e9union : bilan et perspectives / G. Ledegen [in] Cahiers de sociolinguistique, 2004, 1, 9", + "An\u00e9antir : les ex\u00e9cutions capitales \u00e0 l'\u00eele Bourbon (1803-1848) / B. Maillard [in] Annales historiques de la R\u00e9volution fran\u00e7aise, 2023, 4, 414", + "L'\u00eele Maurice et la soci\u00e9t\u00e9 mauricienne / L. Simonnin [in] La Revue des Deux Mondes, 1861, 36, 1" + ], + "noteType": "dataSource" } ], - "authorized_access_point": "Trios (accord\u00e9ons (2), orgue)" - }, - { - "md5": "4b489e1ef0b09addff298f6e489e864e", - "pid": "262669188", "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Quintettes \u00e0 vent ([distributions instrumentales])" + "authorized_access_point": "Vannerie" } ], - "bnf_type": "genre/forme Rameau", + "related": [ + { + "authorized_access_point": "Vaquois" + } + ], + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/262669188", + "value": "http://www.idref.fr/279034881", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180160289", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181517370", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18151737", "source": "BNF" } ], "classification": [ { - "name": "Musique", + "name": "Dessin, arts d\u00e9coratifs, artisanat d'art", "type": "bf:ClassificationDdc", - "classificationPortion": "780" + "classificationPortion": "740" + }, + { + "name": "Jeux", + "type": "bf:ClassificationDdc", + "classificationPortion": "793" } ], - "authorized_access_point": "Quintettes \u00e0 vent (clarinette, hautbois, piccolo, saxophone, trompette)" + "variant_access_point": [ + "Feuilles de vacoa tress\u00e9es", + "Feuilles de vaquois tress\u00e9es", + "Objets en feuilles de vacoa", + "Objets en feuilles de vaquois", + "Ouvrages en feuilles de vacoa", + "Ouvrages en feuilles de vaquois", + "Travail des feuilles de vacoa", + "Tressage des feuilles de vacoa", + "Tressage des feuilles de vaquois" + ], + "authorized_access_point": "Travail des feuilles de vaquois" }, { - "md5": "fd8d3f05cb98a22548f370e081834f32", - "pid": "26266920X", - "type": "bf:Topic", - "broader": [ + "md5": "f9aa4e2583625e8bb903c12ee3a4ee53", + "pid": "27903489X", + "note": [ { - "authorized_access_point": "Quatuors ([distributions instrumentales])" + "label": [ + "Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour clavecin et ensemble de clarinettes, et les recueils de compositions de formes et de genres diff\u00e9rents pour clavecin et ensemble \u00e0 vent" + ], + "noteType": "general" } ], + "type": "bf:Topic", "bnf_type": "genre/forme Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/26266920X", + "value": "http://www.idref.fr/27903489X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18016075t", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181518525", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18151852", "source": "BNF" } ], @@ -13315,116 +34020,105 @@ "classificationPortion": "780" } ], - "authorized_access_point": "Quatuors (piano, clarinette, trompette, alto)" + "authorized_access_point": "Clavecin et ensemble de clarinettes" }, { - "md5": "f2789c20626468ba1cdf1646afea49df", - "pid": "262669234", + "md5": "f8fdfec1062cbadc6535ce016a24596e", + "pid": "279034903", "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Antiquit\u00e9s lydiennes" - }, + "authorized_access_point": "Roman luxembourgeois de langue allemande" + } + ], + "bnf_type": "genre/forme Rameau", + "closeMatch": [ { - "authorized_access_point": "C\u00e9ramique antique" + "source": "RVMLaval", + "authorized_access_point": "Roman luxembourgeois" } ], - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/262669234", + "value": "http://www.idref.fr/279034903", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18016123v", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181519486", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18151948", "source": "BNF" } ], "classification": [ { - "name": "Ethnologie, anthropologie, folklore", - "type": "bf:ClassificationDdc", - "classificationPortion": "390" - }, - { - "name": "Arts plastiques, sculpture", - "type": "bf:ClassificationDdc", - "classificationPortion": "730" - }, - { - "name": "Dessin, arts d\u00e9coratifs, artisanat d'art", - "type": "bf:ClassificationDdc", - "classificationPortion": "740" - }, - { - "name": "Pr\u00e9histoire et histoire ancienne", + "name": "Histoire et critique litt\u00e9raires", "type": "bf:ClassificationDdc", - "classificationPortion": "930" + "classificationPortion": "800" } ], "variant_access_point": [ - "Lydiens - C\u00e9ramique" + "Roman psychologique germanophone luxembourgeois" ], - "authorized_access_point": "C\u00e9ramique lydienne" + "authorized_access_point": "Roman psychologique luxembourgeois de langue allemande" }, { - "md5": "8653b5c19f5b163ed84b83f0db22c8b9", - "pid": "262669242", + "md5": "f10970493d6f041e925220503c5f8edc", + "pid": "27903492X", "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Architecture antique" + "authorized_access_point": "Artistes africains" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/262669242", + "value": "http://www.idref.fr/27903492X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18016132t", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18152251d", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18152251", "source": "BNF" } ], "classification": [ { - "name": "Architecture", "type": "bf:ClassificationDdc", - "classificationPortion": "720" + "classificationPortion": "305" }, { - "name": "Pr\u00e9histoire et histoire ancienne", + "name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", - "classificationPortion": "930" + "classificationPortion": "390" + }, + { + "name": "Musique", + "type": "bf:ClassificationDdc", + "classificationPortion": "780" } ], - "variant_access_point": [ - "Lydiens - Architecture" - ], - "authorized_access_point": "Architecture lydienne" + "authorized_access_point": "Musiciens africains" }, { - "md5": "433f20d62ffc7006c3ff0a23d2ec9c47", - "pid": "262669250", + "md5": "817e80734ba3dc7ec42a95550f87bc8f", + "pid": "279034946", "note": [ { "label": [ - "Grand dict. encyclop\u00e9dique Larousse", - "Encycl. universalis (art. : Intendants) - http://www.universalis-edu.com (2022-05-23)", - "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1996", - "Les Carolingiens / C. Bonnet, C. Descatoire, 2001 (p. 102)", - "L'Europe carolingienne 714-888 / G. B\u00fchrer-Thierry, 2010 (p. 117-8)" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Nom donn\u00e9 dans le royaume franc \u00e0 des inspecteurs royaux charg\u00e9s d'inspecter le gouvernement des comtes. Alors qu'ils existaient d\u00e9j\u00e0 \u00e0 l'\u00e9poque m\u00e9rovingienne, Charlemagne les organisa par le capitulaire de 802. Choisis tous les ans, ils \u00e9taient envoy\u00e9s au moins deux par deux (un comte, un \u00e9v\u00eaque) dans des r\u00e9gions d\u00e9termin\u00e9es, les missiatica. Ils \u00e9taient les repr\u00e9sentants absolus de l'empereur (justice, perception de l'imp\u00f4t, contr\u00f4le des routes et des travaux publics, entretien du domaine royal). Ils surveillaient les administrateurs et r\u00e9formaient les abus. Contrairement au comte qui n'avait re\u00e7u du roi que la d\u00e9l\u00e9gation des pouvoirs d'ex\u00e9cution (potestas), les missi \u00e9taient d\u00e9tenteurs de toute l'autorit\u00e9 royale (auctoritas). Ils transmettaient aux comtes les nouveaux capitulaires. L'institution d\u00e9g\u00e9n\u00e9ra apr\u00e8s Charlemagne et disparut au Xe si\u00e8cle" + "Sous cette vedette, obligatoirement suivie d'une subdivision g\u00e9ographique ou de la subdivision : \u00c0 l'\u00e9tranger, directement ou apr\u00e8s une subdivision de sujet, on trouve les documents sur les viticulteurs italiens hors d'Italie. Les documents sur les viticulteurs italiens en Italie se trouvent sous des vedettes-mati\u00e8re telles que : Viticulteurs -- Italie ; Viticulteurs -- [Subdivision de sujet] -- Italie ; etc" ], "noteType": "general" } @@ -13432,42 +34126,24 @@ "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Administration locale - Personnel" - }, - { - "authorized_access_point": "Droit franc" - }, - { - "authorized_access_point": "Pouvoir royal" - }, - { - "authorized_access_point": "Empire carolingien" - } - ], - "related": [ - { - "authorized_access_point": "Capitulaires" - }, - { - "authorized_access_point": "Comtes" - }, - { - "authorized_access_point": "D\u00e9l\u00e9gation des pouvoirs (science politique)" - }, - { - "authorized_access_point": "\u00c9v\u00eaques" + "authorized_access_point": "Italiens" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/262669250", + "value": "http://www.idref.fr/279034946", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180161602", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181525308", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18152530", "source": "BNF" } ], @@ -13477,126 +34153,97 @@ "classificationPortion": "305" }, { - "name": "Droit", + "name": "Economie", "type": "bf:ClassificationDdc", - "classificationPortion": "340" + "classificationPortion": "330" }, { - "name": "Administration publique", + "name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", - "classificationPortion": "350" + "classificationPortion": "390" }, { - "name": "Histoire m\u00e9di\u00e9vale, moderne et contemporaine (sauf la France)", + "name": "Agriculture, \u00e9levage", "type": "bf:ClassificationDdc", - "classificationPortion": "940" + "classificationPortion": "630" } ], - "variant_access_point": [ - "Envoy\u00e9s de l'empereur", - "Envoy\u00e9s du ma\u00eetre", - "Envoy\u00e9s du roi", - "Envoy\u00e9s du souverain", - "Missus dominicus" - ], - "authorized_access_point": "Missi dominici" + "authorized_access_point": "Viticulteurs italiens" }, { - "md5": "f1026676264a67e0b3620782a018d363", - "pid": "262805111", - "note": [ - { - "label": [ - "Les prud'homies de p\u00eache \u00e0 l'\u00e9poque contemporaine (1790-1962) : la permanence d'une institution hybride en M\u00e9diterran\u00e9e fran\u00e7aise / D. Rauch, 2014", - "Plus de 200 ans de Prud'homie de p\u00eache \u00e0 Collioure / Y. de Coninck, 2020", - "Fiche d'inventaire du patrimoine culturel immat\u00e9riel en France : pratiques des prud'homies de p\u00eache en M\u00e9diterran\u00e9e - https://www.culture.gouv.fr/Media/Pratiques-des-prud-homies-de-peche-en-Mediterranee (2022-06-27)" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Communaut\u00e9s de patrons p\u00eacheurs n\u00e9es en France au Moyen \u00c2ge sur les c\u00f4tes m\u00e9diterran\u00e9ennes. Elles constituent \u00e0 la fois une communaut\u00e9 professionnelle et une juridiction de p\u00eacheurs et \u0153uvrent \u00e0 la protection des espaces maritimes et la pr\u00e9servation des ressources halieutiques" - ], - "noteType": "general" - } - ], + "md5": "4449cdb5237fbb1fabea0fc202453d4a", + "pid": "279034954", "type": "bf:Topic", "broader": [ { - "authorized_access_point": "M\u00e9tiers de la mer" - } - ], - "related": [ - { - "authorized_access_point": "P\u00eaches" - }, - { - "authorized_access_point": "Coop\u00e9ratives de p\u00eache" + "authorized_access_point": "Litt\u00e9rature kikuyu" } ], - "bnf_type": "sujet Rameau", + "bnf_type": "genre/forme Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/262805111", + "value": "http://www.idref.fr/279034954", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18021705k", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181526598", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18152659", "source": "BNF" } ], "classification": [ { - "name": "Economie", - "type": "bf:ClassificationDdc", - "classificationPortion": "330" - }, - { - "name": "Droit", - "type": "bf:ClassificationDdc", - "classificationPortion": "340" - }, - { - "name": "Agriculture, \u00e9levage", + "name": "Histoire et critique litt\u00e9raires", "type": "bf:ClassificationDdc", - "classificationPortion": "630" + "classificationPortion": "800" } ], - "variant_access_point": [ - "Prud'homies de p\u00eacheurs" - ], - "authorized_access_point": "Prud'homies de p\u00eache" + "authorized_access_point": "\u00c9pop\u00e9es kikuyu" }, { - "md5": "f305ea61a3bf016b57035f408d8f1616", - "pid": "262915219", + "md5": "3fee2d2cad9eb89b508fd6a4bf5151a5", + "pid": "279034962", "note": [ { "label": [ - "Dict. de l'Acad\u00e9mie de m\u00e9decine - http://dictionnaire.academie-medecine.fr (2022-07-15)", - "Dict. illustr\u00e9 des termes de m\u00e9decine, 2012" + "\u00c9tude de la co-exposition aux contraintes physiques et aux produits chimiques neurotoxiques chez les salari\u00e9s des Pays de la Loire [in] Archives des maladies professionnelles et de l'environnement, 2014, 75, 4", + "Risques li\u00e9s \u00e0 la co-exposition bruit et substances chimiques ototoxiques / C. Dematteo, T. Kerebel, A.-H. Liebert, 2005 [rapport]", + "Multi-exposition en milieu urbain : approche multi-\u00e9chelle de l'exposition humaine au bruit et \u00e0 la pollution atmosph\u00e9rique / Q. Tenailleau, 2014 [th\u00e8se]", + "Polyexpositions - https://www.inrs.fr (2024-06-14)" ], "noteType": "dataSource" } ], "type": "bf:Topic", - "broader": [ + "related": [ + { + "authorized_access_point": "Polluants" + }, { - "authorized_access_point": "Technique immunoenzymatique" + "authorized_access_point": "Pollution" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/262915219", + "value": "http://www.idref.fr/279034962", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18025047j", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18152715x", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18152715", "source": "BNF" } ], @@ -13605,129 +34252,134 @@ "name": "Sciences de la vie", "type": "bf:ClassificationDdc", "classificationPortion": "570" - }, - { - "name": "Sciences m\u00e9dicales et param\u00e9dicales", - "type": "bf:ClassificationDdc", - "classificationPortion": "610" } ], "variant_access_point": [ - "Immuno-capture" - ], - "authorized_access_point": "Immunocapture" - }, - { - "md5": "0ebcff27d7419c6cf7150b5b7770544b", - "pid": "262928264", + "Coexposition", + "Exposition \u00e0 de multiples polluants", + "Exposition combin\u00e9e", + "Exposition conjointe", + "Exposition multi-agents", + "Exposition multiple", + "Multi-exposition", + "Multiexposition", + "Poly-exposition", + "Polyexposition" + ], + "authorized_access_point": "Co-exposition" + }, + { + "md5": "6e42b216e39e702d3022c25a85b82836", + "pid": "279034970", "note": [ { "label": [ - "Wikipedia (portail du genre et des \u00e9tudes de genre) - https://fr.wikipedia.org (2022-05-20)", - "Non-binarit\u00e9 et transidentit\u00e9s \u00e0 l'adolescence : une revue de la litt\u00e9rature [in] Neuropsychiatrie de l'enfance et de l'adolescence, 2019, 67, 5-6 - https://www-sciencedirect-com (2022-05-20)", - "Transidentit\u00e9s et transitude / K. Espineira, M.-Y. Thomas, 2022 - https://www.cairn.info (2022-05-27)", - "Encycl. critique du genre : corps, sexualit\u00e9, rapports sociaux / J. Rennes, 2016 (art. : Bicat\u00e9gorisation)" + "Dict. de l'Acad\u00e9mie de m\u00e9decine - https://www.academie-medecine.fr/le-dictionnaire (2024-06-14)", + "Le nouveau dict. m\u00e9dical, 2018", + "\u00c9lastopathies et atteintes vasculaires / A. Rossi, M. Frank, E. Messas [in] EMC. Ang\u00e9iologie, 2016, 11, 1", + "L'invalidation du g\u00e8ne de la fibuline-5 induit une \u00e9lastinopathie / M.-P. Jacob [in] M\u00e9decine/sciences, 2003, 19, 4" ], "noteType": "dataSource" - }, - { - "label": [ - "Le concept englobe les identit\u00e9s de genre des personnes qui ne se reconnaissent ni strictement comme homme, ni strictement comme femme, r\u00e9futant ainsi la norme binaire masculin-f\u00e9minin" - ], - "noteType": "general" } ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Identit\u00e9 sexuelle" - } - ], - "related": [ - { - "authorized_access_point": "\u00c9tudes sur le genre" - }, - { - "authorized_access_point": "Th\u00e9orie queer" - }, - { - "authorized_access_point": "Transidentit\u00e9" + "authorized_access_point": "Tissu conjonctif - Maladies" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/262928264", + "value": "http://www.idref.fr/279034970", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180157598", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181527435", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18152743", "source": "BNF" } ], "classification": [ { - "name": "Psychologie, psychanalyse", - "type": "bf:ClassificationDdc", - "classificationPortion": "150" - }, - { - "name": "Sciences sociales", + "name": "Sciences m\u00e9dicales et param\u00e9dicales", "type": "bf:ClassificationDdc", - "classificationPortion": "300" + "classificationPortion": "610" } ], "variant_access_point": [ - "Enby", - "Genderqueer", - "Genres non binaires", - "No-binary gender" + "\u00c9lastinopathies", + "Maladies du tissu \u00e9lastique", + "Tissu \u00e9lastique (histologie) - Maladies" ], - "authorized_access_point": "Non-binarit\u00e9" + "authorized_access_point": "\u00c9lastopathies" }, { - "md5": "07328b2ddc0bc0af99326e01e5790ef6", - "pid": "26292837X", + "md5": "c714b6374083c4162445275e350b1556", + "pid": "279034997", + "note": [ + { + "label": [ + "GBIF - https://www.gbif.org/species (2024-06-17)", + "NCBI - https://www.ncbi.nlm.nih.gov/Taxonomy (2024-06-17)", + "Field guide to the micro-moths of Great Britain and Ireland / P. Sterling, M. Parsons, 2023", + "British moths : a photographic guide to the moths of Britain and Ireland / C. Manley, 2015" + ], + "noteType": "dataSource" + } + ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Bagatelles ([distributions instrumentales])" - }, - { - "authorized_access_point": "Violon et piano, Musique de" + "authorized_access_point": "L\u00e9pidopt\u00e8res" } ], - "bnf_type": "genre/forme Rameau", + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/26292837X", + "value": "http://www.idref.fr/279034997", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18017112f", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18152978c", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18152978", "source": "BNF" } ], "classification": [ { - "name": "Musique", + "name": "Zoologie", "type": "bf:ClassificationDdc", - "classificationPortion": "780" + "classificationPortion": "590" } ], - "authorized_access_point": "Bagatelles (violon et piano)" + "variant_access_point": [ + "Ochsenheimeriidae", + "Ypsolophinae" + ], + "authorized_access_point": "Ypsolophidae" }, { - "md5": "3a4ac42a8a7364a9e839590034c749a4", - "pid": "262928507", + "md5": "fa60935572e7367bb0e8b38e6cae52e0", + "pid": "279035020", "note": [ { "label": [ - "Cam\u00e9l\u00e9on : les filles Asperger d\u00e9boulent ! / C. Deroin, 2020" + "NCBI - https://www.ncbi.nlm.nih.gov/Taxonomy (2024-06-17)", + "GBIF - https://www.gbif.org/species (2024-06-17)", + "Aphids on the world's herbaceous plants and shrubs / R. L. Blackman, V. F. Eastop, 2006" ], "noteType": "dataSource" } @@ -13735,166 +34387,188 @@ "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Adolescentes" - }, - { - "authorized_access_point": "Adolescents autistes" + "authorized_access_point": "Aphidid\u00e9s" } ], - "related": [ + "bnf_type": "sujet Rameau", + "narrower": [ { - "authorized_access_point": "Enfants autistes" + "authorized_access_point": "Rhopalosiphum padi" } ], - "bnf_type": "sujet Rameau", "closeMatch": [ { "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "https://id.loc.gov/authorities/subjects/sh92001053", - "source": "LCSH" - }, - "authorized_access_point": "Autistic youth" + "identifiedBy": [ + { + "type": "uri", + "value": "https://id.loc.gov/authorities/subjects/sh85113791", + "source": "LCSH" + } + ], + "authorized_access_point": "Rhopalosiphum" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Rhopalosiphum" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/262928507", + "value": "http://www.idref.fr/279035020", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18017672p", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18153059v", "source": "BNF" - } - ], - "classification": [ - { - "name": "Sciences sociales", - "type": "bf:ClassificationDdc", - "classificationPortion": "300" }, { - "name": "Sciences m\u00e9dicales et param\u00e9dicales", - "type": "bf:ClassificationDdc", - "classificationPortion": "610" - } - ], - "variant_access_point": [ - "Adolescentes autistiques" - ], - "authorized_access_point": "Adolescentes autistes" - }, - { - "md5": "af6de4719283e4bfae506f9dfaaca95f", - "pid": "262928701", - "note": [ - { - "label": [ - "Alfa Romeo Spider : l'hist. compl\u00e8te : 1966-1994 / J. Lombard, 2021", - "The hist. of Alfa Romeo / S. Kingston, 2018", - "Sports cars / B. Lafontaine, 1999" - ], - "noteType": "dataSource" + "type": "bf:Nbn", + "value": "FRBNF18153059", + "source": "BNF" } ], - "type": "bf:Topic", - "broader": [ + "classification": [ { - "authorized_access_point": "Alfa Romeo (automobiles)" + "name": "Zoologie", + "type": "bf:ClassificationDdc", + "classificationPortion": "590" } ], - "bnf_type": "sujet Rameau", - "closeMatch": [ + "authorized_access_point": "Rhopalosiphum" + }, + { + "md5": "c8b78eaea81c4a3af3504fc34fb3b9d0", + "pid": "279035039", + "type": "bf:Topic", + "broader": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh2013002865", - "source": "LCSH" - }, - "authorized_access_point": "Spider automobile" + "authorized_access_point": "Roman guat\u00e9malt\u00e8que" } ], + "bnf_type": "genre/forme Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/262928701", + "value": "http://www.idref.fr/279035039", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18018611q", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18153143r", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18153143", "source": "BNF" } ], "classification": [ { - "name": "Economie", - "type": "bf:ClassificationDdc", - "classificationPortion": "330" - }, - { - "name": "Sciences appliqu\u00e9es", + "name": "Histoire et critique litt\u00e9raires", "type": "bf:ClassificationDdc", - "classificationPortion": "600" + "classificationPortion": "800" } ], - "variant_access_point": [ - "Spider Alfa Romeo (automobile)" - ], - "authorized_access_point": "Alfa Romeo Spider (automobile)" + "authorized_access_point": "Roman policier guatemalt\u00e8que" }, { - "md5": "16504d5827c6c77c79fcca3a15b8dda3", - "pid": "26307837X", + "md5": "88ebd36a4b5de05e2dc8f7b7d6dd6652", + "pid": "279035063", "note": [ { "label": [ - "S'emploie \u00e9galement en subdivision" + "La r\u00e9volution arcade de SEGA : de 1945 \u00e0 nos jours / K. Horowitz, 2020", + "Jeux d'arcade pour le Web : de la conception \u00e0 la r\u00e9alisation avec JavaScript / F. Delobel, 2020", + "Programmation des jeux d'arcade en C / D. Gruber, 1995", + "Arcade : une histoire du jeu d'Arcade \u00e0 travers les \u00e2ges, volume 1, 2023" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Sous cette vedette, on trouve les documents sur le mat\u00e9riel ainsi que sur les jeux eux-m\u00eames" ], "noteType": "general" } ], "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Jeux vid\u00e9o" + } + ], "related": [ { - "authorized_access_point": "G\u00e9orgie - Histoire" + "authorized_access_point": "Salles d'arcades" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2009000044", + "source": "LCSH" + } + ], + "authorized_access_point": "Video arcades" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Jeux vid\u00e9o" } ], - "bnf_type": "genre/forme Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/26307837X", + "value": "http://www.idref.fr/279035063", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180223705", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181532749", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18153274", "source": "BNF" } ], "classification": [ { - "name": "Histoire et g\u00e9ographie (g\u00e9n\u00e9ralit\u00e9s)", "type": "bf:ClassificationDdc", - "classificationPortion": "900" + "classificationPortion": "621" + }, + { + "name": "Jeux", + "type": "bf:ClassificationDdc", + "classificationPortion": "793" } ], - "authorized_access_point": "R\u00e9cits personnels g\u00e9orgiens" + "variant_access_point": [ + "Bornes d'arcade", + "Jeux vid\u00e9o d'arcade" + ], + "authorized_access_point": "Arcade (jeux vid\u00e9o)" }, { - "md5": "2c632ba725672dd5d6420566f10a5b6e", - "pid": "263492680", + "md5": "e8e9c028edb3cb0e60ecce28bcdbb6a1", + "pid": "279035071", "note": [ { "label": [ - "Minist\u00e8re de la culture - https://www.culture.gouv.fr (2000-06-13)", - "L\u00e9gifrance - https://www.legifrance.gouv.fr (2022-06-13)", - "ONISEP : Dipl\u00f4me d'\u00e9tudes chor\u00e9graphiques - https://www.onisep.fr (2022-06-13)" + "Compositions artistiques et creatives avec DALL-E 3 / P. Rey, 2024", + "D\u00e9velopper des applications avec GPT-4 et ChatGPT / M.-A. Blete, O. Caelen, 2024", + "Grand lexique fran\u00e7ais de l'intelligence artificielle - https://datafranca.org (2024-06-18)", + "Unlocking the secrets of prompt engineering / G. Mizrahi, 2024", + "The quick guide to prompt engineering / I. Khan, 2024" ], "noteType": "dataSource" } @@ -13902,87 +34576,96 @@ "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Danse - \u00c9tude et enseignement" - }, - { - "authorized_access_point": "Dipl\u00f4mes" + "authorized_access_point": "Intelligence artificielle" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263492680", + "value": "http://www.idref.fr/279035071", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180198821", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18153302q", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18153302", "source": "BNF" } ], "classification": [ { - "name": "Education et enseignement", - "type": "bf:ClassificationDdc", - "classificationPortion": "370" - }, - { - "name": "Dessin, arts d\u00e9coratifs, artisanat d'art", "type": "bf:ClassificationDdc", - "classificationPortion": "740" + "classificationPortion": "621" } ], "variant_access_point": [ - "DEC", - "Dipl\u00f4me d'\u00e9tudes chor\u00e9grahiques", - "DNOP danse" + "Ing\u00e9nierie de requ\u00eate", + "Prompt engeneering" ], - "authorized_access_point": "Dipl\u00f4me national d'orientation professionnelle de danse" + "authorized_access_point": "Ing\u00e9nierie de prompt" }, { - "md5": "f73d3004a94854ef24206918e0a73945", - "pid": "263499944", - "note": [ + "md5": "c5569c6f91058583a185b8cc202c0068", + "pid": "27903508X", + "type": "bf:Topic", + "broader": [ { - "label": [ - "Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour harmonica de verre et orchestre, et les recueils de compositions de formes et de genres diff\u00e9rents pour harmonica de verre et orchestre" + "authorized_access_point": "Navigation (a\u00e9ronautique)" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2020000351", + "source": "LCSH" + } ], - "noteType": "general" + "authorized_access_point": "Drone aircraft--Piloting" } ], - "type": "bf:Topic", - "bnf_type": "genre/forme Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263499944", + "value": "http://www.idref.fr/27903508X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180231507", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181533183", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18153318", "source": "BNF" } ], "classification": [ { - "name": "Musique", + "name": "Sciences appliqu\u00e9es", "type": "bf:ClassificationDdc", - "classificationPortion": "780" + "classificationPortion": "600" } ], - "authorized_access_point": "Harmonica de verre et orchestre" + "authorized_access_point": "Drones - Pilotage" }, { - "md5": "e5c24eebaa0db6d9207e821795bb7a95", - "pid": "263499979", + "md5": "de3845d301c083df208a300fd55d2f78", + "pid": "279035098", "note": [ { "label": [ - "Orientation.ch - https://www.orientation.ch (2022-07-05)", - "Secr\u00e9tariat d'\u00c9tat \u00e0 la formation, \u00e0 la recherche et \u00e0 l'innovation : liste des professions - https://www.becc.admin.ch (2022-07-05)", - "Professionsante.ch - https://www.odasante.ch (2022-07-05)" + "Tr\u00e9sor de la langue fran\u00e7aise", + "Grand dict. encyclop\u00e9dique Larousse" ], "noteType": "dataSource" } @@ -13990,60 +34673,41 @@ "type": "bf:Topic", "broader": [ { - "authorized_access_point": "H\u00f4pitaux - Personnel" - }, - { - "authorized_access_point": "Personnel param\u00e9dical" - } - ], - "related": [ - { - "authorized_access_point": "Soins infirmiers en sant\u00e9 communautaire" + "authorized_access_point": "G\u00e9om\u00e8tres" } ], "bnf_type": "sujet Rameau", "closeMatch": [ { "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85093360", - "source": "LCSH" - }, - "authorized_access_point": "Nurses' aides" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh90000849", + "source": "LCSH" + } + ], + "authorized_access_point": "Women surveyors" }, { "source": "RVMLaval", - "authorized_access_point": "Aides-infirmiers" - }, - { - "source": "MeSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.nlm.nih.gov/mesh/M0000733", - "source": "MeSH" - }, - "authorized_access_point": "Allied health personnel" - }, - { - "source": "MeSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.nlm.nih.gov/mesh/D009728", - "source": "MeSH" - }, - "authorized_access_point": "Nurses' aides" + "authorized_access_point": "Femmes g\u00e9om\u00e8tres" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263499979", + "value": "http://www.idref.fr/279035098", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18023352g", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18153323p", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18153323", "source": "BNF" } ], @@ -14053,385 +34717,385 @@ "classificationPortion": "305" }, { - "name": "Sciences m\u00e9dicales et param\u00e9dicales", + "name": "Economie", "type": "bf:ClassificationDdc", - "classificationPortion": "610" + "classificationPortion": "330" + }, + { + "name": "Sciences appliqu\u00e9es", + "type": "bf:ClassificationDdc", + "classificationPortion": "600" } ], "variant_access_point": [ - "Assistantes en soin et sant\u00e9 communautaire (Suisse)" + "Arpenteures g\u00e9om\u00e9tres", + "G\u00e9om\u00e8tres expertes" ], - "authorized_access_point": "Assistants en soins et sant\u00e9 communautaire (Suisse)" + "authorized_access_point": "Femmes g\u00e9om\u00e9tres" }, { - "md5": "42d56ef1a4947458a52038aded08206f", - "pid": "263500047", + "md5": "946078f6f153d864ad27d0d8ffe36116", + "pid": "279035101", "note": [ { "label": [ - "Sous cette vedette, obligatoirement suivie d'une subdivision g\u00e9ographique ou de la subdivision : \u00c0 l'\u00e9tranger, directement ou apr\u00e8s une subdivision de sujet, on trouve les documents sur les marins fran\u00e7ais hors de France. Les documents sur les marins fran\u00e7ais en France se trouvent sous des vedettes-mati\u00e8re telles que : Marins -- France ; Marins -- [Subdivision de sujet] -- France ; etc" + "Tr\u00e9sor de la langue fran\u00e7aise (art. : Tuile)", + "Grand dict. encyclop\u00e9dique Larousse (art. : Vernisser)" ], - "noteType": "general" + "noteType": "dataSource" } ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Fran\u00e7ais" + "authorized_access_point": "Tuiles" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263500047", + "value": "http://www.idref.fr/279035101", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18023590k", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18153329r", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18153329", "source": "BNF" } ], "classification": [ { + "name": "Sciences appliqu\u00e9es", "type": "bf:ClassificationDdc", - "classificationPortion": "305" - }, - { - "name": "Economie", - "type": "bf:ClassificationDdc", - "classificationPortion": "330" - }, - { - "name": "Art et science militaires", - "type": "bf:ClassificationDdc", - "classificationPortion": "355" + "classificationPortion": "600" }, { - "name": "Ethnologie, anthropologie, folklore", + "name": "B\u00e2timent", "type": "bf:ClassificationDdc", - "classificationPortion": "390" + "classificationPortion": "690" } ], - "authorized_access_point": "Marins fran\u00e7ais" + "authorized_access_point": "Tuiles verniss\u00e9es" }, { - "md5": "13b5efe214fc9ccb24ac009086ec1c3f", - "pid": "263500071", + "md5": "8640b0a6f1a2b05383187755441a8b53", + "pid": "279035144", "note": [ { "label": [ - "S'emploie uniquement en subdivision aux guerres et r\u00e9volutions dont les Slov\u00e8nes ne sont pas les principaux protagonistes, par ex. : Guerre mondiale (1914-1918) -- Participation slov\u00e8ne" + "ISO : organisation internationale de normalisation - https://www.iso.org (2024-06-20)", + "Afnor normalisation - https://normalisation.afnor.org (2024-06-20)", + "D\u00e9ploiement de la connectique s\u00e9curis\u00e9e NRFit\u00ae au CHU de Tours : \u00e9tat des lieux, difficult\u00e9s et alternatives envisag\u00e9es / J. Michelat, 2023 [th\u00e8se]" ], - "noteType": "general" + "noteType": "dataSource" } ], "type": "bf:Topic", "related": [ { - "authorized_access_point": "Slov\u00e9nie - Histoire" + "authorized_access_point": "Dispositifs m\u00e9dicaux implantables" + }, + { + "authorized_access_point": "Raccords (technologie)" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263500071", + "value": "http://www.idref.fr/279035144", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180237219", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181537484", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18153748", "source": "BNF" } ], "classification": [ { - "name": "Histoire et g\u00e9ographie (g\u00e9n\u00e9ralit\u00e9s)", + "name": "Sciences appliqu\u00e9es", "type": "bf:ClassificationDdc", - "classificationPortion": "900" + "classificationPortion": "600" } ], - "authorized_access_point": "Participation slov\u00e8ne" + "variant_access_point": [ + "Norme ISO 80369-1", + "Norme ISO 80369-6", + "NRFit" + ], + "authorized_access_point": "Norme ISO 80369" }, { - "md5": "b59b76b8d0a20b0b73639d9ea09189b3", - "pid": "263500187", + "md5": "efd44e39f339e1b6afe5819a6774c7a5", + "pid": "279035152", + "note": [ + { + "label": [ + "L'industrie automobile : 1905-1971 / J.-L. Loubet, 1999", + "Club Delahaye - https://clubdelahaye.com (2024-06-20)" + ], + "noteType": "dataSource" + } + ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Villes disparues, en ruine, etc. - [Localisations g\u00e9ographiques]" + "authorized_access_point": "Camions" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263500187", + "value": "http://www.idref.fr/279035152", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18024026b", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181537573", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18153757", "source": "BNF" } ], + "relation_pid": { + "type": "redirect_from", + "value": "278618901" + }, "classification": [ { + "name": "Economie", "type": "bf:ClassificationDdc", - "classificationPortion": "915" + "classificationPortion": "330" }, { - "name": "Pr\u00e9histoire et histoire ancienne", + "name": "Sciences appliqu\u00e9es", "type": "bf:ClassificationDdc", - "classificationPortion": "930" + "classificationPortion": "600" } ], - "authorized_access_point": "Villes disparues, en ruine, etc. - Angola" + "authorized_access_point": "Delahaye (camions)" }, { - "md5": "0ce3a3fc868e0084b8899a5ae6cdb160", - "pid": "263610918", + "md5": "38381d3d1dc24562614937fce03a501b", + "pid": "279035160", + "note": [ + { + "label": [ + "Plan\u00e8te Renault - https://www.planeterenault.com (2024-06-20)", + "Notice technique de l'autobus Renault type SXB moteur Renault 15 CV type 370\u200e / Minist\u00e8re de l'air. Arm\u00e9e de l'air, 1934" + ], + "noteType": "dataSource" + } + ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Roman historique arabe" - }, - { - "authorized_access_point": "Roman libanais" + "authorized_access_point": "Autobus" } ], - "bnf_type": "genre/forme Rameau", + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263610918", + "value": "http://www.idref.fr/279035160", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18025416c", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18153768r", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18153768", "source": "BNF" } ], + "relation_pid": { + "type": "redirect_from", + "value": "278626599" + }, "classification": [ { - "name": "Histoire et critique litt\u00e9raires", + "name": "Economie", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "330" }, { - "name": "Histoire et g\u00e9ographie (g\u00e9n\u00e9ralit\u00e9s)", + "name": "Sciences appliqu\u00e9es", "type": "bf:ClassificationDdc", - "classificationPortion": "900" + "classificationPortion": "600" } ], - "variant_access_point": [ - "Roman historique arabe - Liban", - "Roman historique libanais de langue arabe" - ], - "authorized_access_point": "Roman historique libanais" + "authorized_access_point": "Renault (autobus)" }, { - "md5": "60caa7a4170d71a442cd0424bb75076c", - "pid": "263714233", + "md5": "b17ec25324a6b06d659de47e1ed7e752", + "pid": "279035179", "note": [ { "label": [ - "Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour saxophone et ensemble \u00e0 cordes, et les recueils de compositions de formes et de genres diff\u00e9rents pour cette m\u00eame formation" + "Wikipedia (art. : Latil (entreprise)) - https://fr.wikipedia.org (2024-06-20)", + "Fondation Berliet - https://www.fondationberliet.org (2024-06-20)" ], - "noteType": "general" + "noteType": "dataSource" } ], "type": "bf:Topic", - "bnf_type": "genre/forme Rameau", - "narrower": [ - { - "authorized_access_point": "Concertos (saxophone et ensemble \u00e0 cordes)" - } - ], - "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85117870", - "source": "LCSH" - }, - "authorized_access_point": "Saxophone with string ensemble" - }, + "broader": [ { - "source": "RVMLaval", - "authorized_access_point": "Saxophone et ensemble \u00e0 cordes" + "authorized_access_point": "Autobus" } ], + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714233", + "value": "http://www.idref.fr/279035179", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180050621", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18153789q", "source": "BNF" - } - ], - "classification": [ - { - "name": "Musique", - "type": "bf:ClassificationDdc", - "classificationPortion": "780" - } - ], - "authorized_access_point": "Saxophone et ensemble \u00e0 cordes" - }, - { - "md5": "8d238ff5a71b2c60ba2e160eb94bcdb8", - "pid": "263714241", - "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Saxophone et orchestre" - } - ], - "bnf_type": "genre/forme Rameau", - "identifiedBy": [ - { - "type": "uri", - "value": "http://www.idref.fr/263714241", - "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180053547", + "type": "bf:Nbn", + "value": "FRBNF18153789", "source": "BNF" } ], + "relation_pid": { + "type": "redirect_from", + "value": "278653340" + }, "classification": [ { - "name": "Musique", + "name": "Economie", "type": "bf:ClassificationDdc", - "classificationPortion": "780" + "classificationPortion": "330" + }, + { + "name": "Sciences appliqu\u00e9es", + "type": "bf:ClassificationDdc", + "classificationPortion": "600" } ], - "authorized_access_point": "Po\u00e8mes symphoniques (saxophone et orchestre)" + "authorized_access_point": "Latil (autobus)" }, { - "md5": "bdec5040ddab8d0bfb3c384caa51cff2", - "pid": "26371425X", + "md5": "18f07ea99f1fd24ffd110084d15a9c8b", + "pid": "279035187", "note": [ { "label": [ - "Grand dict. encyclop\u00e9dique Larousse : ghan\u00e9en, enne", - "Nouveau petit Robert 2009 (partie d\u00e9riv\u00e9s des noms propres) (art. : Ghana (Afrique)) : ghan\u00e9en, enne" + "L'encycl. mondiale des camions / P.-J. Davis, 2003", + "L'Atlas des camions fran\u00e7ais / F. Dr\u00e9er, 2007" ], "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette, obligatoirement suivie d'une subdivision g\u00e9ographique ou de la subdivision : \u00c0 l'\u00e9tranger, directement ou apr\u00e8s une subdivision de sujet, on trouve les documents sur les femmes ghan\u00e9ennes hors du Ghana. Les documents sur les femmes ghan\u00e9ennes au Ghana se trouvent sous des vedettes-mati\u00e8re telles que : Femmes -- Ghana ; Femmes -- [Subdivision de sujet] -- Ghana ; etc" - ], - "noteType": "general" } ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Ghan\u00e9ens" + "authorized_access_point": "Camions" } ], "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Prostitu\u00e9es ghan\u00e9ennes" - } - ], - "closeMatch": [ - { - "source": "RVMLaval", - "authorized_access_point": "Ghan\u00e9ens" - } - ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/26371425X", + "value": "http://www.idref.fr/279035187", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18005957x", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181537949", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18153794", "source": "BNF" } ], + "relation_pid": { + "type": "redirect_from", + "value": "278971148" + }, "classification": [ { - "name": "Sciences sociales", - "type": "bf:ClassificationDdc", - "classificationPortion": "300" - }, - { + "name": "Economie", "type": "bf:ClassificationDdc", - "classificationPortion": "305" + "classificationPortion": "330" }, { - "name": "Ethnologie, anthropologie, folklore", + "name": "Sciences appliqu\u00e9es", "type": "bf:ClassificationDdc", - "classificationPortion": "390" + "classificationPortion": "600" } ], - "variant_access_point": [ - "Femmes ghan\u00e9ennes" - ], - "authorized_access_point": "Ghan\u00e9ennes" + "authorized_access_point": "Latil (camions)" }, { - "md5": "767e88154b051cca58578b4c160479eb", - "pid": "263714268", + "md5": "d60726b9655956024986957000b7764f", + "pid": "279035241", "note": [ { "label": [ - "Grand dict. encyclop\u00e9dique Larousse : syrien, enne", - "Nouveau petit Robert 2009 (partie d\u00e9riv\u00e9s des noms propres) (art. : Syrie (Proche-Orient)) : syrien, enne" + "LC online cat., 2024-06-22 : Ukrainian Canadian women" ], "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette, obligatoirement suivie d'une subdivision g\u00e9ographique ou de la subdivision : \u00c0 l'\u00e9tranger, directement ou apr\u00e8s une subdivision de sujet, on trouve les documents sur les femmes syriennes hors de Syrie. Les documents sur les femmes syriennes en Syrie se trouvent sous des vedettes-mati\u00e8re telles que : Femmes -- Syrie ; Femmes -- [Subdivision de sujet] -- Syrie ; etc" - ], - "noteType": "general" } ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Syriens" + "authorized_access_point": "Canadiens d'origine ukrainienne" } ], - "bnf_type": "sujet Rameau", - "narrower": [ + "related": [ { - "authorized_access_point": "R\u00e9fugi\u00e9es syriennes" + "authorized_access_point": "Ukrainiennes" } ], + "bnf_type": "sujet Rameau", "closeMatch": [ { "source": "RVMLaval", - "authorized_access_point": "Syriens" + "authorized_access_point": "Canadiennes d'origine ukrainienne" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714268", + "value": "http://www.idref.fr/279035241", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180061031", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18154151m", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18154151", "source": "BNF" } ], @@ -14452,101 +35116,135 @@ } ], "variant_access_point": [ - "Femmes syriennes" + "Canadiens d'origine ukrainienne - Femmes" ], - "authorized_access_point": "Syriennes" + "authorized_access_point": "Canadiennes d'origine ukrainienne" }, { - "md5": "aa91216612d33d9af51d9951152da2c8", - "pid": "263714276", + "md5": "5b5d293ec9c95d2bec63bf659e7be5df", + "pid": "279307322", + "note": [ + { + "label": [ + "Wikidata - https://www.wikidata.org/wiki/Q190333 (2024-05-24)", + "Wikip\u00e9dia - https://en.wikipedia.org (2024-05-24)", + "Goethe Institut - http://www.goethe.de (2024-05-24)", + "Goethe-Zertifikat C2 : Grosses Deutsches Sprachdiplom : \u00dcbungsbuch mit Audios Online, Deutsch als Fremdsprache / J. Gerbes, 2022" + ], + "noteType": "dataSource" + } + ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Po\u00e9sie n\u00e9erlandaise" + "authorized_access_point": "Allemand (langue) - Examens" } ], - "bnf_type": "genre/forme Rameau", - "closeMatch": [ + "related": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh89000372", - "source": "LCSH" - }, - "authorized_access_point": "Political poetry, Dutch" + "authorized_access_point": "Goethe-Zertifikat C1" } ], + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714276", + "value": "http://www.idref.fr/279307322", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18006157z", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18148590c", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18148590", "source": "BNF" } ], "classification": [ { - "name": "Sciences politiques", + "name": "Education et enseignement", "type": "bf:ClassificationDdc", - "classificationPortion": "320" + "classificationPortion": "370" }, { - "name": "Histoire et critique litt\u00e9raires", + "name": "Langues et linguistique", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "400" } ], - "authorized_access_point": "Po\u00e9sie politique n\u00e9erlandaise" + "authorized_access_point": "Goethe-Zertifikat C2" }, { - "md5": "6e826d8072207471e60430f9c3d7d793", - "pid": "263714284", + "md5": "aaa6161b26eacea28dc2f7aeb50db80b", + "pid": "279307330", + "note": [ + { + "label": [ + "La famille choisie toujours d'actualit\u00e9 ? Vers une diversification des formes de liens familiaux pour les minorit\u00e9s sexuelles et de genre au Qu\u00e9bec [in] \u00c9critures des sexualit\u00e9s, 2023, 29", + "Familles choisies et r\u00e9seaux sociaux : quelle importance pour les personnes LGBTQ ? / S. Doucet [in] Partenariat de recherche SAVIE-LGBTQ, 2018, 1", + "La famille \u00e9lective / D . Mehl [in] Dialogue, 2023, 242, 4" + ], + "noteType": "dataSource" + } + ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Po\u00e9sie flamande" + "authorized_access_point": "Famille" + } + ], + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "RVMLaval", + "authorized_access_point": "Familles choisies" } ], - "bnf_type": "genre/forme Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714284", + "value": "http://www.idref.fr/279307330", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18006159n", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18148927q", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18148927", "source": "BNF" } ], "classification": [ { - "name": "Sciences politiques", - "type": "bf:ClassificationDdc", - "classificationPortion": "320" - }, - { - "name": "Histoire et critique litt\u00e9raires", + "name": "Sciences sociales", "type": "bf:ClassificationDdc", - "classificationPortion": "800" + "classificationPortion": "300" } ], - "authorized_access_point": "Po\u00e9sie politique flamande" + "variant_access_point": [ + "Famille choisie", + "Famille de choix", + "Famille \u00e9lective", + "Familles de choix", + "Familles \u00e9lectives" + ], + "authorized_access_point": "Familles choisies" }, { - "md5": "1bcf900671427d020cba02b534494dd0", - "pid": "263714292", + "md5": "eb5236400bfa052a9aaa9788bec4ce38", + "pid": "279307349", "note": [ { "label": [ - "Droit des syst\u00e8mes autonomes : v\u00e9hicules intelligents, drones, seabots / A. Bensoussan, D. Gazagne, 2019", - "Engins de d\u00e9placement personnel motoris\u00e9s : la r\u00e9glementation en pratique / J.-B Le Dall, F. Romey, 2021" + "Grand Robert de la langue fran\u00e7aise (art. : binaire) - https://grandrobert-lerobert-com (2024-06-10)", + "Grand dict. terminologique (art. : personne non binaire) - https://vitrinelinguistique.oqlf.gouv.qc.ca (2024-06-10)", + "Binaires / Non-Binaires [in] Adolescences, 2023, 41, 2" ], "noteType": "dataSource" } @@ -14554,57 +35252,93 @@ "type": "bf:Topic", "broader": [ { - "authorized_access_point": "V\u00e9hicules" + "authorized_access_point": "Minorit\u00e9s sexuelles" + } + ], + "related": [ + { + "authorized_access_point": "Non-binarit\u00e9" } ], "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2017004882", + "source": "LCSH" + } + ], + "authorized_access_point": "Gender-nonconforming people" + }, + { + "source": "MeSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000096224", + "source": "MeSH" + } + ], + "authorized_access_point": "Gender-Nonconforming Persons" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Personnes non binaires" + } + ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714292", + "value": "http://www.idref.fr/279307349", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180166117", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18151606f", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18151606", "source": "BNF" } ], "classification": [ { - "name": "Economie", - "type": "bf:ClassificationDdc", - "classificationPortion": "330" - }, - { - "name": "Sciences appliqu\u00e9es", + "name": "Sciences sociales", "type": "bf:ClassificationDdc", - "classificationPortion": "600" + "classificationPortion": "300" } ], "variant_access_point": [ - "EDP (v\u00e9hicules)", - "EDPM (v\u00e9hicules)", - "Engins de d\u00e9placement personnel motoris\u00e9s" + "Personnes non-binaires", + "Non-binaires", + "Personnes de genre non binaires", + "Personnes non binaires dans le genre" ], - "authorized_access_point": "Engins de d\u00e9placement personnel" + "authorized_access_point": "Personnes non binaires" }, { - "md5": "003bb9adf2e8234e2c0353037c1d95eb", - "pid": "263714306", + "md5": "569eaf1e040e78a15ef513107733ae66", + "pid": "279307357", "note": [ { "label": [ - "Introduction \u00e0 la psychologie cognitive / P. Lemaire, A. Didierjean, 2018", - "Les protocoles verbaux (think-aloud protocols) : enjeux m\u00e9thodologiques de validit\u00e9 pour la recherche en contexte scolaire / K. Roussel [in] Canadian journal for new scholars in education, 2017, 8, 1 - https://doaj.org (2022-07-20)", - "Verbal protocols in literacy research / S. E. Israel, 2015", - "La m\u00e9thode de la pens\u00e9e \u00e0 voix haute pour analyser les difficult\u00e9s en lecture des \u00e9l\u00e8ves de 14 \u00e0 17 ans / \u00c9. Falardeau, C. Pelletier, D. Pelletier [in] \u00c9ducation & didactique, 2014, 8, 3 - https://journals.openedition.org/educationdidactique (2022-07-19)" + "Wikidata - https://www.wikidata.org/wiki/Q221618 (2024-06-13)", + "Tr\u00e9sor de la langue fran\u00e7aise - http://atilf.atilf.fr (2024-06-13)", + "Grand Larousse universel", + "Grand Robert de la langue fran\u00e7aise, 2001", + "Le travail pornographique : enqu\u00eate sur la production des fantasme / M. Trachman, 2013", + "Sociologie de la sexualit\u00e9 / M. Bozon, 2018" ], "noteType": "dataSource" }, { "label": [ - "M\u00e9thode de collecte de donn\u00e9es utilis\u00e9e en ergonomie informatique puis en sciences humaines : l'utilisateur doit \u00e9noncer \u00e0 haute voix ce qu'il est en train de penser pendant qu'il ex\u00e9cute une t\u00e2che" + "Magasin d'articles ayant \u00e0 voir avec la sexualit\u00e9 et la pornographie" ], "noteType": "general" } @@ -14612,80 +35346,69 @@ "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Psychologie cognitive" - }, - { - "authorized_access_point": "Recherche qualitative" - } - ], - "related": [ - { - "authorized_access_point": "Recherche-action" - }, - { - "authorized_access_point": "R\u00e9solution de probl\u00e8me" + "authorized_access_point": "Industries du sexe" }, { - "authorized_access_point": "Tests utilisateurs" + "authorized_access_point": "Magasins" } ], "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Entretiens d'explicitation" - } - ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714306", + "value": "http://www.idref.fr/279307357", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18018604f", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18152495k", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18152495", "source": "BNF" } ], "classification": [ { - "name": "Psychologie, psychanalyse", + "name": "Sciences sociales", "type": "bf:ClassificationDdc", - "classificationPortion": "150" + "classificationPortion": "300" }, { - "name": "Sciences sociales", + "name": "Economie", "type": "bf:ClassificationDdc", - "classificationPortion": "300" + "classificationPortion": "330" }, { + "name": "B\u00e2timent", "type": "bf:ClassificationDdc", - "classificationPortion": "621" + "classificationPortion": "690" } ], "variant_access_point": [ - "M\u00e9thode de la pens\u00e9e \u00e0 voix haute", - "Raisonnement \u00e0 voix haute", - "Think-aloud protocols", - "Verbal protocols" + "Boutiques \u00e9rotiques", + "Boutiques pornographiques" ], - "authorized_access_point": "Protocoles verbaux" + "authorized_access_point": "Sex-shops" }, { - "md5": "b05b76f9223d96ce7a3e2207f80964c7", - "pid": "263714314", + "md5": "42c45343b02e91dfb8a311db571f38c3", + "pid": "279307365", "note": [ { "label": [ - "Wikip\u00e9dia : Affaire Ernest Rodric - https://fr.wikipedia.org (2022-07-01)", - "L'affaire du Bois bleu : une innocente jet\u00e9e aux chiens / G. Boursier, 2006", - "Grands avocats - Chroniques juridiques : Affaire du Bois Bleu : autopsie d'une erreur judiciaire - https://www.grands-avocats.com (2022-07-01)" + "Wikidata - https://www.wikidata.org/wiki/Q2069508 (2024-06-13)", + "Wikip\u00e9dia - https://fr.wikipedia.org (2024-06-13)", + "Dict. de la psychologie / W. D. Fr\u00f6hlich, 1997", + "Dict. des cultures gays et lesbiennes / D. Eribon, 2003" ], "noteType": "dataSource" }, { "label": [ - "Affaire criminelle fran\u00e7aise. Suite au meurtre de Georges Segr\u00e9tin au lieu-dit du Bois Bleu (Cher) le 4 novembre 1965, Monique Case sera inculp\u00e9e avant d'\u00eatre totalement innocent\u00e9e gr\u00e2ce \u00e0 une contre-enqu\u00eate du juge d'instruction Mme Georgette Chouvelon. Le v\u00e9ritable assassin, Ernest Rodric sera condamn\u00e9 \u00e0 perp\u00e9tuit\u00e9 en 1967" + "Relations \u00e9rotiques, mais pas n\u00e9cessairement sexuelles, entre personnes du m\u00eame sexe. - Imaginaire mettant en sc\u00e8ne le jeu du d\u00e9sir entre deux personnes du m\u00eame sexe" ], "noteType": "general" } @@ -14693,499 +35416,478 @@ "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Erreurs judiciaires - France" + "authorized_access_point": "Homosexualit\u00e9" + } + ], + "related": [ + { + "authorized_access_point": "\u00c9rotisme" }, { - "authorized_access_point": "Faits divers - France" + "authorized_access_point": "Homosexualit\u00e9 et art" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714314", + "value": "http://www.idref.fr/279307365", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18020814k", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18152519r", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18152519", "source": "BNF" } ], "classification": [ { - "name": "Droit", + "name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", - "classificationPortion": "340" + "classificationPortion": "150" }, { - "name": "Probl\u00e8mes et services sociaux", + "name": "Sciences sociales", "type": "bf:ClassificationDdc", - "classificationPortion": "360" + "classificationPortion": "300" + }, + { + "name": "Arts", + "type": "bf:ClassificationDdc", + "classificationPortion": "700" } ], - "variant_access_point": [ - "Affaire Ernest Rodric (1965-1967)", - "Affaire Monique Case (1965-1967)", - "Bois Bleu, Affaire du (1965-1967)", - "Ernest Rodric, Affaire (1965-1967)", - "Monique Case, Affaire (1965-1967)" - ], - "authorized_access_point": "Affaire du Bois Bleu (1965-1967)" + "authorized_access_point": "Homo\u00e9rotisme" }, { - "md5": "c898b250a049b610c201a5a3e10fac4e", - "pid": "263714322", + "md5": "e0ad4eb740e775b957265e9101a7f34b", + "pid": "279307373", "note": [ { "label": [ - "Languagecert test of english - https://www.languagecert.org (2022-07-20)", - "Legifrance : D\u00e9cision du 16 septembre 2021 portant enregistrement au R\u00e9pertoire national des certifications professionnelles et au r\u00e9pertoire sp\u00e9cifique - https://www.legifrance.gouv.fr (2022-07-20)", - "Using self-assessments to investigate comparability of the CEFR and CSE : an exploratory study using the LanguageCert Test of english / W. Zhao, D. Coniam [in] International journal of TESOL studies, 2022, 4, 1 - https://go-gale-com (2022-07-20)" + "G\u00e9ographies culturelles : objets, concepts, m\u00e9thodes / P. Guinard, 2019", + "Mapping desire : geographies of sexualities / D. Bell, G. Valentine, 1995", + "G\u00e9ographie de la sexualit\u00e9 ou sexualit\u00e9 du g\u00e9ographe ? Quelques le\u00e7ons autour d'une injonction / M. Blidon [in] Annales de g\u00e9ographie, 2012, 5-6" ], "noteType": "dataSource" - }, - { - "label": [ - "Certification de l'organisme PeopleCert International align\u00e9e sur le Cadre europ\u00e9en commun de r\u00e9f\u00e9rence" - ], - "noteType": "general" } ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Anglais (langue) - Examens" + "authorized_access_point": "G\u00e9ographie culturelle" } ], "related": [ { - "authorized_access_point": "Cadre europ\u00e9en commun de r\u00e9f\u00e9rence en langue" + "authorized_access_point": "Sexualit\u00e9" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714322", + "value": "http://www.idref.fr/279307373", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18020892c", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18152571v", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18152571", "source": "BNF" } ], "classification": [ { - "name": "Education et enseignement", + "name": "Sciences sociales", "type": "bf:ClassificationDdc", - "classificationPortion": "370" + "classificationPortion": "300" }, { - "name": "Langues et linguistique", + "name": "G\u00e9ographie, tourisme (guides) et voyages", "type": "bf:ClassificationDdc", - "classificationPortion": "400" + "classificationPortion": "910" } ], "variant_access_point": [ - "LTE" + "G\u00e9ographie de la sexualit\u00e9", + "Sexualit\u00e9 - G\u00e9ographie" ], - "authorized_access_point": "LanguageCert Test of English" + "authorized_access_point": "G\u00e9ographie des sexualit\u00e9s" }, { - "md5": "27e3ebc50fb8c8098ce8ac6e9cfd02ba", - "pid": "263714330", - "note": [ - { - "label": [ - "Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour clavecin, deux cors, deux violons et violoncelle, et les recueils de compositions de formes et de genres diff\u00e9rents pour cette m\u00eame formation" - ], - "noteType": "general" - } - ], + "md5": "81a8e25eef39b9bb80f93b0eef05a18b", + "pid": "279307381", "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Sextuors ([distributions instrumentales])" + "authorized_access_point": "Po\u00e9sie g\u00e9orgienne" } ], "bnf_type": "genre/forme Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714330", + "value": "http://www.idref.fr/279307381", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18021604z", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18152987b", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18152987", "source": "BNF" } ], "classification": [ { - "name": "Musique", + "name": "Sciences politiques", "type": "bf:ClassificationDdc", - "classificationPortion": "780" + "classificationPortion": "320" + }, + { + "name": "Histoire et critique litt\u00e9raires", + "type": "bf:ClassificationDdc", + "classificationPortion": "800" } ], - "authorized_access_point": "Sextuors (clavecin, cors (2), violons (2), violoncelle)" + "authorized_access_point": "Po\u00e9sie contestataire g\u00e9orgienne" }, { - "md5": "878b8ce44237dbce1b44f8046da03da2", - "pid": "263714349", + "md5": "ca9b02b8c91a75ceeabc3bf9513b6812", + "pid": "27930739X", "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Saxophone et ensemble \u00e0 cordes" - } - ], - "bnf_type": "genre/forme Rameau", - "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85030338", - "source": "LCSH" - }, - "authorized_access_point": "Concertos (Saxophone with string ensemble)" + "authorized_access_point": "Litt\u00e9rature contestataire turque" }, { - "source": "RVMLaval", - "authorized_access_point": "Concertos (Saxophone et ensemble \u00e0 cordes)" + "authorized_access_point": "Po\u00e9sie turque" } ], + "bnf_type": "genre/forme Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714349", + "value": "http://www.idref.fr/27930739X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18024222h", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181529891", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18152989", "source": "BNF" } ], "classification": [ { - "name": "Musique", + "name": "Sciences politiques", "type": "bf:ClassificationDdc", - "classificationPortion": "780" + "classificationPortion": "320" + }, + { + "name": "Histoire et critique litt\u00e9raires", + "type": "bf:ClassificationDdc", + "classificationPortion": "800" } ], - "authorized_access_point": "Concertos (saxophone et ensemble \u00e0 cordes)" + "authorized_access_point": "Po\u00e9sie contestataire turque" }, { - "md5": "e687ccad9f854cd328dbc38f456f4921", - "pid": "263714357", + "md5": "a19822bd260cf4fbea774299bc47482d", + "pid": "279307403", "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Arabesques ([distributions instrumentales])" - }, - { - "authorized_access_point": "Alto, Musique d'" + "authorized_access_point": "Litt\u00e9rature \u00e9rotique fran\u00e7aise" } ], "bnf_type": "genre/forme Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714357", + "value": "http://www.idref.fr/279307403", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18024243g", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18152992x", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18152992", "source": "BNF" } ], "classification": [ { - "name": "Musique", + "name": "Histoire et critique litt\u00e9raires", "type": "bf:ClassificationDdc", - "classificationPortion": "780" + "classificationPortion": "800" } ], - "authorized_access_point": "Arabesques (alto)" + "authorized_access_point": "Dark romance fran\u00e7aise" }, { - "md5": "29369605bb3f92a731fa43b85f024e52", - "pid": "263714365", - "note": [ - { - "label": [ - "Technologie fonctionnelle de l'automobile. 2, Transmission, train roulant et \u00e9quipement \u00e9lectrique / H. M\u00e9meteau, 2002", - "Les trains roulants et ses \u00e9volutions technologiques, 2021" - ], - "noteType": "dataSource" - } - ], + "md5": "d39ceba75755c74efd477c78b3622fe3", + "pid": "279307411", "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Automobiles - Pi\u00e8ces" + "authorized_access_point": "Po\u00e9sie belge de langue fran\u00e7aise" + }, + { + "authorized_access_point": "Po\u00e9sie visuelle belge" } ], - "bnf_type": "sujet Rameau", + "bnf_type": "genre/forme Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714365", + "value": "http://www.idref.fr/279307411", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18024292p", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181529938", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18152993", "source": "BNF" } ], "classification": [ { - "name": "Economie", - "type": "bf:ClassificationDdc", - "classificationPortion": "330" - }, - { - "name": "Sciences appliqu\u00e9es", + "name": "Histoire et critique litt\u00e9raires", "type": "bf:ClassificationDdc", - "classificationPortion": "600" + "classificationPortion": "800" } ], - "authorized_access_point": "Trains roulants" + "variant_access_point": [ + "Po\u00e9sie visuelle francophone belge" + ], + "authorized_access_point": "Po\u00e9sie visuelle belge de langue fran\u00e7aise" }, { - "md5": "7dfbf3c1a8fa71c956ef1c1ff9c869b7", - "pid": "263714373", - "note": [ + "md5": "5a79a1bcd1b94bae6c4beba430bd61ef", + "pid": "27930742X", + "type": "bf:Topic", + "broader": [ { - "label": [ - "The evolution of project management in a Scaled Agile environment / K. Wills, 2018", - "The project manager's guide to mastering Agile : principles and practices for an adaptive approach / C. G. Cobb, 2015", - "Enterprise agility for dummies / D. Rose, 2018" - ], - "noteType": "dataSource" + "authorized_access_point": "Roman canadien de langue anglaise" + }, + { + "authorized_access_point": "Roman sentimental canadien" } ], - "type": "bf:Topic", - "broader": [ + "bnf_type": "genre/forme Rameau", + "closeMatch": [ { - "authorized_access_point": "M\u00e9thodes agiles (informatique)" + "source": "RVMLaval", + "authorized_access_point": "Histoires d'amour canadiennes-anglaises" } ], - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714373", + "value": "http://www.idref.fr/27930742X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180243025", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18153031g", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18153031", "source": "BNF" } ], "classification": [ { + "name": "Histoire et critique litt\u00e9raires", "type": "bf:ClassificationDdc", - "classificationPortion": "621" + "classificationPortion": "800" } ], "variant_access_point": [ - "SAFe (informatique)" + "Roman sentimental canadien-anglais" ], - "authorized_access_point": "Scaled agile framework (informatique)" + "authorized_access_point": "Roman sentimental canadien de langue anglaise" }, { - "md5": "2c8387988e5f505c57450f5fb14190ee", - "pid": "26371439X", - "note": [ - { - "label": [ - "Wikip\u00e9dia : Westland Lynx - http://fr.wikipedia.org (2022-07-11)", - "Aviation militaire : A\u00e9rospatiale-Westland WG-13 Lynx - https://aviationsmilitaires.net (2022-07-11)", - "The Royal Navy Lynx : An Operational History / L. Jeram-Croft, 2017" - ], - "noteType": "dataSource" - }, - { - "label": [ - "H\u00e9licopt\u00e8re con\u00e7u par Westland Helicopters et produit conjointement avec A\u00e9rospatiale. Son premier vol a eu lieu le 21 mars 1971. Op\u00e9rationnel \u00e0 partir 1977, il a \u00e9t\u00e9 adopt\u00e9 par plus d'une douzaine de nations" - ], - "noteType": "general" - } - ], + "md5": "f496ddee3004bfcc89f50a9f859e1b6e", + "pid": "279307438", "type": "bf:Topic", "broader": [ { - "authorized_access_point": "H\u00e9licopt\u00e8res militaires - Europe" - } - ], - "bnf_type": "sujet Rameau", - "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh2012003729", - "source": "LCSH" - }, - "authorized_access_point": "Westland Lynx (Military helicopter)" + "authorized_access_point": "Litt\u00e9rature suisse de langue fran\u00e7aise" } ], + "bnf_type": "genre/forme Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/26371439X", + "value": "http://www.idref.fr/279307438", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18024324g", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18153842b", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18153842", "source": "BNF" } ], "classification": [ { - "name": "Art et science militaires", - "type": "bf:ClassificationDdc", - "classificationPortion": "355" - }, - { - "name": "Sciences appliqu\u00e9es", + "name": "Histoire et critique litt\u00e9raires", "type": "bf:ClassificationDdc", - "classificationPortion": "600" + "classificationPortion": "800" } ], "variant_access_point": [ - "Westland Lynx (h\u00e9licopt\u00e8re)", - "WG13 (h\u00e9licopt\u00e8re)" + "Dark romance francophone suisse" ], - "authorized_access_point": "Lynx (h\u00e9licopt\u00e8re)" + "authorized_access_point": "Dark romance suisse de langue fran\u00e7aise" }, { - "md5": "afcf59e3488d6bcca2f3c36ee561efbf", - "pid": "263714403", - "note": [ - { - "label": [ - "L'aviation : une r\u00e9volution du XXe si\u00e8cle / J. Noetinger, 2005", - "T\u00e9moin privil\u00e9gi\u00e9 de l'histoire de l'aviation du XXe si\u00e8cle / J. Noetinger, 2010", - "Carnet de vol / G.-H. Satg\u00e9, 1974" - ], - "noteType": "dataSource" - } - ], + "md5": "dc87ca4f72e10f72b7ac867884ec2a28", + "pid": "279307446", "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Breguet (avions)" + "authorized_access_point": "Roman danois" } ], - "bnf_type": "sujet Rameau", + "bnf_type": "genre/forme Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714403", + "value": "http://www.idref.fr/279307446", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18024325t", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181538472", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18153847", "source": "BNF" } ], "classification": [ { - "name": "Economie", - "type": "bf:ClassificationDdc", - "classificationPortion": "330" - }, - { - "name": "Sciences appliqu\u00e9es", + "name": "Histoire et critique litt\u00e9raires", "type": "bf:ClassificationDdc", - "classificationPortion": "600" + "classificationPortion": "800" } ], "variant_access_point": [ - "Br. 763 Provence (avion de transport)", - "Breguet deux-ponts Provence (avion de transport)" + "Roman de science-fiction pour la jeunesse danois" ], - "authorized_access_point": "Breguet 763 Provence (avion de transport)" + "authorized_access_point": "Roman de science-fiction danois pour la jeunesse" }, { - "md5": "2ceb969c4056bad39e13cbb194946f9b", - "pid": "263714411", + "md5": "613b09abea43dbbace3533c316aead8d", + "pid": "279307454", "note": [ { "label": [ - "Habiliter les enfants \u00e0 l'occupation : l'approche CO-OP : guider l'enfant dans la d\u00e9couverte des strat\u00e9gies cognitives pour am\u00e9liorer son rendement occupationnel au quotidien / H. J. Polatajko, A. Mandich, 2017", - "L'approche CO-OP et l'accompagnement d'enfants pr\u00e9sentant un trouble d\u00e9veloppemental de la coordination, quels apports pour l'ergoth\u00e9rapeute lib\u00e9ral ? / G. Conte, 2020 [th\u00e8se]", - "Apport de l'approche CO-OP (cognitive orientation to daily occupational performance) aupr\u00e8s d'enfants paralys\u00e9s c\u00e9r\u00e9braux / H. Lebrault [in] Motricit\u00e9 c\u00e9r\u00e9brale, 2019, 40, 2 - https://www-sciencedirect-com (2022-07-11)" + "Tapis \u00e0 histoire - https://educdome.puy-de-dome.fr/ressources/6468 (2024-06-21)", + "Les tapis de lecture : un pont entre l'enfant et le livre / C. Frasson-Cochet, interview\u00e9e par M. de Miribel [in] Veiller au confort des lecteurs, 2015", + "Le raconte-tapis : un outil d'appropriation, d'expression et de transmission du plaisir de lire / V. Guilbaud, 2007" ], "noteType": "dataSource" + }, + { + "label": [ + "\"Raconte-tapis\" est une appellation commerciale" + ], + "noteType": "general" } ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Ergoth\u00e9rapie" - } - ], - "related": [ - { - "authorized_access_point": "R\u00e9\u00e9ducation motrice" + "authorized_access_point": "\u00c9ducation de la premi\u00e8re enfance - M\u00e9thodes actives" } ], - "bnf_type": "sujet Rameau", + "bnf_type": "genre/forme Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714411", + "value": "http://www.idref.fr/279307454", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18024330d", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18153935b", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18153935", "source": "BNF" } ], "classification": [ - { - "name": "Psychologie, psychanalyse", - "type": "bf:ClassificationDdc", - "classificationPortion": "150" - }, { "name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370" }, { - "name": "Sciences m\u00e9dicales et param\u00e9dicales", + "name": "Histoire et critique litt\u00e9raires", "type": "bf:ClassificationDdc", - "classificationPortion": "610" + "classificationPortion": "800" } ], "variant_access_point": [ - "Cognitive orientation to daily occupational performance approach", - "Orientation cognitive au rendement occupationnel quotidien" + "Raconte-tapis (marque d\u00e9pos\u00e9e)", + "Tapis \u00e0 histoire", + "Tapis bavard", + "Tapis narratif" ], - "authorized_access_point": "Approche CO-OP" + "authorized_access_point": "Tapis de lecture" }, { - "md5": "b168714abf2ad945e1901a06e3a4a67a", - "pid": "26371442X", + "md5": "ba6a80f7745afd535fb1fc2a9125c76b", + "pid": "279307462", "note": [ { "label": [ - "Autisme : le d\u00e9fi du programme TEACCH / G. B. Mesibov, 1995", - "Approche \u00e9ducative de l'autisme : le programme TEACCH, sa transposition en France / B. Rog\u00e9, E. Schopler [in] Psychologie fran\u00e7aise, 1998, 43, 3", - "TEACCH autism programm - https://teach.com (2022-07-11)" + "Vitrine linguistique - https://vitrinelinguistique.oqlf.gouv.qc.ca (2024-06-24)", + "Dict. de l'Acad\u00e9mie de m\u00e9decine - https://www.academie-medecine.fr/le-dictionnaire (2024-06-24)", + "Loterre : Nutrition artificielle (th\u00e9saurus) - https://www.loterre.fr (2024-06-24)", + "Dict. m\u00e9dical de poche / I. Marroun, T. Sen\u00e9, J. Quevauvilliers, 2018", + "Hyperprot\u00e9in\u00e9mies et hypoprot\u00e9in\u00e9mies chez le chien et le chat / C. Coisnon, A. Briend-Marchal [in] EMC-V\u00e9t\u00e9rinaire, 2020, 29, 1", + "Dict. illustr\u00e9 des termes de m\u00e9decine, 2012 : hypo-albumin\u00e9mie" ], "noteType": "dataSource" } @@ -15193,38 +35895,41 @@ "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Th\u00e9rapie comportementale" + "authorized_access_point": "Hypoprot\u00e9in\u00e9mie" } ], - "related": [ + "bnf_type": "sujet Rameau", + "closeMatch": [ { - "authorized_access_point": "Enfants autistes - Communication" + "source": "MeSH", + "identifiedBy": [ + { + "type": "uri", + "value": "https://id.nlm.nih.gov/mesh/M0404823", + "source": "MeSH" + } + ], + "authorized_access_point": "Hypoalbuminemia" } ], - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/26371442X", + "value": "http://www.idref.fr/279307462", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180243474", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18154211n", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18154211", "source": "BNF" } ], "classification": [ - { - "name": "Psychologie, psychanalyse", - "type": "bf:ClassificationDdc", - "classificationPortion": "150" - }, - { - "name": "Education et enseignement", - "type": "bf:ClassificationDdc", - "classificationPortion": "370" - }, { "name": "Sciences m\u00e9dicales et param\u00e9dicales", "type": "bf:ClassificationDdc", @@ -15232,23 +35937,21 @@ } ], "variant_access_point": [ - "\u00c9ducation structur\u00e9e", - "TEACCH programm", - "Traitement et \u00e9ducation des enfants autistes ou atteints de troubles de la communication associ\u00e9s", - "Treatment and education of autistic and related communication handicapped children" + "Hypo-albumin\u00e9mie" ], - "authorized_access_point": "Programme TEACCH" + "authorized_access_point": "Hypoalbumin\u00e9mie" }, { - "md5": "84252a5820edf8947c985afba41a08c7", - "pid": "263714438", + "md5": "cee82cd39201749c09f1b34fa1e7deff", + "pid": "279307470", "note": [ { "label": [ - "Le Robert - https://dictionnaire.lerobert.com/definition/sweat-shirt", - "Tr\u00e9sor de la langue fran\u00e7ais (2022-07-11)", - "Sweat-shirt - https://fr.wikipedia.org/wiki/Sweat-shirt", - "Sweatshirts transformations / L. Rohlfing, 2012 (2022-07-11)" + "Encycl. universalis - https://www.universalis-edu.com (2024-06-24)", + "Dict. de l'Acad\u00e9mie de m\u00e9decine - https://www.academie-medecine.fr/le-dictionnaire (2024)", + "Dict. illustr\u00e9 des termes de m\u00e9decine, 2012", + "Dict. de m\u00e9decine Flammarion, 2008", + "Dict. fran\u00e7ais de m\u00e9decine et de biologie, 1981" ], "noteType": "dataSource" } @@ -15256,236 +35959,287 @@ "type": "bf:Topic", "broader": [ { - "authorized_access_point": "V\u00eatements de sport" + "authorized_access_point": "Arythmie" } ], "bnf_type": "sujet Rameau", "closeMatch": [ { - "source": "RVMLaval", - "authorized_access_point": "Sweatshirts" + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "https://id.loc.gov/authorities/subjects/sh85046589", + "source": "LCSH" + } + ], + "authorized_access_point": "Extrasystole" }, { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh90001049", - "source": "LCSH" - }, - "authorized_access_point": "Sweatshirts" + "source": "MeSH", + "identifiedBy": [ + { + "type": "uri", + "value": "https://id.nlm.nih.gov/mesh/M0008072", + "source": "MeSH" + } + ], + "authorized_access_point": "Cardiac Complexes, Premature" + }, + { + "source": "RVMLaval", + "authorized_access_point": "Extrasystole" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714438", + "value": "http://www.idref.fr/279307470", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180244493", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181542391", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18154239", "source": "BNF" } ], "classification": [ { + "name": "Sciences m\u00e9dicales et param\u00e9dicales", "type": "bf:ClassificationDdc", - "classificationPortion": "391" - }, - { - "name": "Economie domestique, h\u00f4tellerie", - "type": "bf:ClassificationDdc", - "classificationPortion": "640" + "classificationPortion": "610" } ], "variant_access_point": [ - "Hoodies", - "Pulls molletonn\u00e9s", - "Sweats", - "Sweatshirt" + "Extrasystoles" ], - "authorized_access_point": "Sweat-shirts" + "authorized_access_point": "Extrasystole" }, { - "md5": "57ee4b2e1c3179a42457de3e4af1b60f", - "pid": "263714446", + "md5": "9b2f6aa18a4939d1a6eb6099eebf43b0", + "pid": "279307519", "type": "bf:Topic", - "broader": [ + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279307519", + "source": "IDREF" + }, { - "authorized_access_point": "Civilisation - Lettonie" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181549138", + "source": "BNF" }, { - "authorized_access_point": "Cuisine balte" + "type": "bf:Nbn", + "value": "FRBNF18154913", + "source": "BNF" } ], - "bnf_type": "sujet Rameau", - "closeMatch": [ + "classification": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh93003729", - "source": "LCSH" - }, - "authorized_access_point": "Cooking, Latvian" + "name": "Physique", + "type": "bf:ClassificationDdc", + "classificationPortion": "530" }, { - "source": "RVMLaval", - "authorized_access_point": "Cuisine lettone" + "name": "Sciences appliqu\u00e9es", + "type": "bf:ClassificationDdc", + "classificationPortion": "600" + } + ], + "authorized_access_point": "Installations nucl\u00e9aires - Russie" + }, + { + "md5": "cebc8ea337be0469624c98e14718681b", + "pid": "279307535", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Architecture antique" } ], + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714446", + "value": "http://www.idref.fr/279307535", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18024451n", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18155060j", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18155060", "source": "BNF" } ], "classification": [ { - "name": "Economie domestique, h\u00f4tellerie", + "name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", - "classificationPortion": "640" + "classificationPortion": "390" + }, + { + "name": "Architecture", + "type": "bf:ClassificationDdc", + "classificationPortion": "720" + }, + { + "name": "Pr\u00e9histoire et histoire ancienne", + "type": "bf:ClassificationDdc", + "classificationPortion": "930" } ], "variant_access_point": [ - "Cuisine lettone - Lettonie" + "Canan\u00e9ens - Architecture" ], - "authorized_access_point": "Cuisine lettone" + "authorized_access_point": "Architecture canan\u00e9enne" }, { - "md5": "dcc1e577bd87bc1614ffa26168689595", - "pid": "263714454", - "type": "bf:Topic", - "broader": [ - { - "authorized_access_point": "Cuisine balte" - }, + "md5": "e779d1299ed64746bbb5d45c3cc3a322", + "pid": "279307543", + "note": [ { - "authorized_access_point": "Civilisation - Lituanie" + "label": [ + "Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour basson, fl\u00fbte, hautbois et harpe, et les recueils de compositions de formes et de genres diff\u00e9rents pour cette m\u00eame formation" + ], + "noteType": "general" } ], - "bnf_type": "sujet Rameau", - "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh87002092", - "source": "LCSH" - }, - "authorized_access_point": "Cooking, Lithuanian" - }, + "type": "bf:Topic", + "broader": [ { - "source": "RVMLaval", - "authorized_access_point": "Cuisine lituanienne" + "authorized_access_point": "Quatuors ([distributions instrumentales])" } ], + "bnf_type": "genre/forme Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714454", + "value": "http://www.idref.fr/279307543", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180244551", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18155078m", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18155078", "source": "BNF" } ], "classification": [ { - "name": "Economie domestique, h\u00f4tellerie", + "name": "Musique", "type": "bf:ClassificationDdc", - "classificationPortion": "640" + "classificationPortion": "780" } ], - "variant_access_point": [ - "Cuisine lituanienne - Lituanie" - ], - "authorized_access_point": "Cuisine lituanienne" + "authorized_access_point": "Quatuors (basson, fl\u00fbte, hautbois, harpe)" }, { - "md5": "6c59588b923baa83fdb07f7c1a04da4a", - "pid": "263714462", + "md5": "5bf027716bbf2f9a715b2aabce45fdf4", + "pid": "27930756X", "note": [ { "label": [ - "L'apprentissage du langage : de la section enfantine au cours \u00e9l\u00e9mentaire (2e ann\u00e9e) : le\u00e7ons et exercices sur les th\u00e8mes des tableaux d'\u00e9locution de la Coop\u00e9ration P\u00e9dagogique / H. G\u00e9ron, R. Charlot, G. Bonnin, 1954", - "L'\u00e9cole de M. Rossignol : l'imagination p\u00e9dagogique en images et en couleurs / P. Rossignol, M. Cordeboeuf, 2007", - "\u00c9l\u00e9ments pour une didactique des textes pluricodiques / M. Masselot-Girard [in] Rep\u00e8res : recherches en didactique du fran\u00e7ais langue maternelle, 1993, 7, p. 151-160 - www.persee.fr (2022-07-12)", - "Vocabulaire, \u00e9locution, construction de phrases : cours \u00e9l\u00e9mentaire / J. Garagnon, 1966 : tableaux de vocabulaire-\u00e9locution - https://www.reseau-canope.fr/musee/collections/fr/museum (2022-07-12)", - "Voir, savoir : la p\u00e9dagogie par l'image au temps de l'imprim\u00e9 du XVIe au XXe s. / A. Renonciat, 2011 (p. 108) : planches murales d'\u00e9locution" + "Dict. de l'Acad\u00e9mie nationale de pharmacie - https://dictionnaire.acadpharm.org (2024-06-28)", + "Dict. de la chimie et de ses applications / C. et R. Duval, J.-C. Richer, 2010", + "Dict. pharmaceutique : pharmacologie et chimie des m\u00e9dicaments / Y. Landry, Y. Rival, 2007", + "Guide pratique des m\u00e9dicaments : Dorosz / D. Vital Durand, C. Le Jeunne, 2013", + "Dict. de m\u00e9decine Flammarion, 2008", + "The Merck index, 2013 : naproxen" ], "noteType": "dataSource" - }, - { - "label": [ - "Planches au format j\u00e9sus affich\u00e9es aux murs des salles de classe \u00e9l\u00e9mentaires servant de supports \u00e0 la verbalisation, l'\u00e9locution englobant alors lecture, orthographe, conjugaison et composition" - ], - "noteType": "general" } ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Acquisition du langage" - }, - { - "authorized_access_point": "Illustrations en \u00e9ducation" + "authorized_access_point": "Arylcarboxyliques" } ], - "related": [ + "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "https://id.loc.gov/authorities/subjects/sh85089785", + "source": "LCSH" + } + ], + "authorized_access_point": "Naproxen" + }, { - "authorized_access_point": "\u00c9locution" + "source": "MeSH", + "identifiedBy": [ + { + "type": "uri", + "value": "https://id.nlm.nih.gov/mesh/M0014467", + "source": "MeSH" + } + ], + "authorized_access_point": "Naproxen" }, { - "authorized_access_point": "Lecture - M\u00e9thodes d'apprentissage" + "source": "RVMLaval", + "authorized_access_point": "Naprox\u00e8ne" } ], - "bnf_type": "genre/forme Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714462", + "value": "http://www.idref.fr/27930756X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180245210", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18155270d", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18155270", "source": "BNF" } ], "classification": [ { - "name": "Education et enseignement", + "name": "Chimie, min\u00e9ralogie, cristallographie", "type": "bf:ClassificationDdc", - "classificationPortion": "370" + "classificationPortion": "540" }, { "type": "bf:ClassificationDdc", - "classificationPortion": "401" + "classificationPortion": "615" } ], - "variant_access_point": [ - "Planches murales d'\u00e9locution", - "Tableaux de vocabulaire-\u00e9locution" - ], - "authorized_access_point": "Tableaux d'\u00e9locution" + "authorized_access_point": "Naprox\u00e8ne" }, { - "md5": "8922a60f79f92a50447de92a9f350411", - "pid": "263714470", + "md5": "dad5de1bd7db50552ea06034298e3ed0", + "pid": "279307578", "note": [ { "label": [ - "Le livre bleu de la mar\u00e9tique, 2013", - "Cybermar\u00e9tique.fr : la s\u00e9curit\u00e9 informatique des syst\u00e8mes d'information maritimes et portuaires - https://cybermaretique.fr (2022-07-12)" + "Dict. illustr\u00e9 des termes de m\u00e9decine, 2012", + "Dict. de m\u00e9decine Flammarion, 2008", + "My\u00e9linolyse centropontine [in] La Presse m\u00e9dicale, 2008, 37, 12", + "Dict. de l'Acad\u00e9mie de m\u00e9decine : my\u00e9linolyse centrale du pont c\u00e9r\u00e9bral - https://www.academie-medecine.fr/le-dictionnaire (2024-06-28)" ], "noteType": "dataSource" } @@ -15493,52 +36247,63 @@ "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Informatique" - }, - { - "authorized_access_point": "Navigation" + "authorized_access_point": "D\u00e9my\u00e9linisation" } ], "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "MeSH", + "identifiedBy": [ + { + "type": "uri", + "value": "https://id.nlm.nih.gov/mesh/M0026656", + "source": "MeSH" + } + ], + "authorized_access_point": "Myelinolysis, Central Pontine" + } + ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714470", + "value": "http://www.idref.fr/279307578", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18024616p", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18155286s", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18155286", "source": "BNF" } ], "classification": [ { - "name": "Economie", - "type": "bf:ClassificationDdc", - "classificationPortion": "330" - }, - { - "name": "Sciences appliqu\u00e9es", - "type": "bf:ClassificationDdc", - "classificationPortion": "600" - }, - { + "name": "Sciences m\u00e9dicales et param\u00e9dicales", "type": "bf:ClassificationDdc", - "classificationPortion": "621" + "classificationPortion": "610" } ], - "authorized_access_point": "Mar\u00e9tique" + "variant_access_point": [ + "My\u00e9linolyse centrale du pont c\u00e9r\u00e9bral", + "My\u00e9linolyse centro-pontine", + "Syndrome de d\u00e9my\u00e9linisation osmotique" + ], + "authorized_access_point": "My\u00e9linolyse centropontine" }, { - "md5": "c236f328d6bf536b84efac8b43aeacc8", - "pid": "263714489", + "md5": "624fef37141fb9687ad59e8015e16dbf", + "pid": "279307586", "note": [ { "label": [ - "Le Robert - https://dictionnaire.lerobert.com/definition/nescafe (2022-07-12)", - "Nescaf\u00e9 - https://fr.wikipedia.org/wiki/Nescaf%C3%A9 (2022-07-12)", - "Communication strat\u00e9gique et sensible \u00e0 ll'\u00e8re num\u00e9rique : vers un mod\u00e8le relationnel dialogique ? : \u00e9tude de cas : la communication en ligne de Nescaf\u00e9 / G. Tardin, 2022" + "Dict. de l'Acad\u00e9mie de m\u00e9decine - https://www.academie-medecine.fr/le-dictionnaire (2024-06-28)", + "Dict. illustr\u00e9 des termes de m\u00e9decine, 2012", + "Manuel d'\u00e9chocardiographie clinique, 2012" ], "noteType": "dataSource" } @@ -15546,63 +36311,69 @@ "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Marques de commerce" - } - ], - "related": [ - { - "authorized_access_point": "Mots-valises" + "authorized_access_point": "Cardiopathies" } ], "bnf_type": "sujet Rameau", "closeMatch": [ { "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85027704", - "source": "LCSH" - }, - "authorized_access_point": "Instant coffee" + "identifiedBy": [ + { + "type": "uri", + "value": "https://id.loc.gov/authorities/subjects/sh85020160", + "source": "LCSH" + } + ], + "authorized_access_point": "Carcinoid heart disease" }, { - "source": "RVMLaval", - "authorized_access_point": "Caf\u00e9 soluble" + "source": "MeSH", + "identifiedBy": [ + { + "type": "uri", + "value": "https://id.nlm.nih.gov/mesh/M0003420", + "source": "MeSH" + } + ], + "authorized_access_point": "Carcinoid Heart Disease" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714489", + "value": "http://www.idref.fr/279307586", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180246307", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18155294d", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18155294", "source": "BNF" } ], "classification": [ { - "name": "Economie domestique, h\u00f4tellerie", + "name": "Sciences m\u00e9dicales et param\u00e9dicales", "type": "bf:ClassificationDdc", - "classificationPortion": "640" + "classificationPortion": "610" } ], - "variant_access_point": [ - "Caf\u00e9 instantan\u00e9", - "Caf\u00e9 soluble" - ], - "authorized_access_point": "Nescaf\u00e9 (marque d\u00e9pos\u00e9e)" + "authorized_access_point": "Cardiopathie carcino\u00efde" }, { - "md5": "4716136e07a679d6ba4f59eedade15b4", - "pid": "263714500", + "md5": "7e2902f11c241ea0e1f8cfce67bb6a43", + "pid": "279307594", "note": [ { "label": [ - "La difficile cohabitation de la g\u00e9ologie \"profonde\" et de la g\u00e9omorphologie au pied des monts ib\u00e9riques occidentaux / B. Lemartinel [in] G\u00e9omorphologie : relief, processus, environnement, 1999, 5, 3", - "Recherches sur la g\u00e9ologie profonde - fosse de Valence (Dr\u00f4me) / H. Gudefin, 1977" + "La n\u00e9oglucogen\u00e8se intestinale\u2009: une fonction insulinomim\u00e9tique / G. Mithieux [in] Biologie aujourd'hui, 2022, 216, 1-2", + "Effets protecteurs de la n\u00e9oglucogen\u00e8se intestinale dans le d\u00e9veloppement de l'ob\u00e9sit\u00e9 et de ses complications / J. Vily-Petit, 2020 [th\u00e8se]", + "Microbiote intestinal et sant\u00e9 humaine, 2021" ], "noteType": "dataSource" } @@ -15610,490 +36381,486 @@ "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Stratigraphie" + "authorized_access_point": "M\u00e9tabolisme" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714500", + "value": "http://www.idref.fr/279307594", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18024749x", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18155316w", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18155316", "source": "BNF" } ], "classification": [ { - "name": "Sciences de la Terre", + "name": "Sciences de la vie", "type": "bf:ClassificationDdc", - "classificationPortion": "550" + "classificationPortion": "570" } ], "variant_access_point": [ - "Couches g\u00e9ologiques profondes" + "Glucon\u00e9ogen\u00e8se intestinale", + "Glycon\u00e9ogen\u00e8se intestinale", + "N\u00e9oglycogen\u00e8se intestinale", + "NGI (biologie)" ], - "authorized_access_point": "G\u00e9ologie profonde" + "authorized_access_point": "N\u00e9oglucogen\u00e8se intestinale" }, { - "md5": "fa129cf3344d2c47049641d6fd941197", - "pid": "263714519", - "note": [ - { - "label": [ - "Encycl. Larousse - https://www.larousse.fr/encyclopedie (2022-07-13)", - "La protection contre la mer aux Pays-Bas : le Plan Delta [in] G\u00e9ologues, 2008, 158", - "La Z\u00e9lande en arrive au terme du Plan Delta / F. Lentacker [in] Hommes et terres du Nord, 1981, 4" - ], - "noteType": "dataSource" - }, + "md5": "089ae533798d535f9756d3fcb6da69b2", + "pid": "279307608", + "type": "bf:Topic", + "broader": [ { - "label": [ - "Plan con\u00e7u en 1955 aux Pays-Bas pour prot\u00e9ger le pays des inondations maritimes, suite \u00e0 l'inondation meurtri\u00e8re de 1953" - ], - "noteType": "general" + "authorized_access_point": "Roman uruguayen" } ], - "type": "bf:Topic", - "broader": [ + "bnf_type": "genre/forme Rameau", + "closeMatch": [ { - "authorized_access_point": "Inondations - Ma\u00eetrise" + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "https://lccn.loc.gov/sh2009007782", + "source": "LCSH" + } + ], + "authorized_access_point": "Historical fiction, Uruguayan" } ], - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714519", + "value": "http://www.idref.fr/279307608", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18024775g", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18155352r", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18155352", "source": "BNF" } ], "classification": [ { - "name": "Sciences de la Terre", + "name": "Histoire et critique litt\u00e9raires", "type": "bf:ClassificationDdc", - "classificationPortion": "550" + "classificationPortion": "800" }, { - "name": "Sciences appliqu\u00e9es", + "name": "Histoire et g\u00e9ographie (g\u00e9n\u00e9ralit\u00e9s)", "type": "bf:ClassificationDdc", - "classificationPortion": "600" + "classificationPortion": "900" } ], - "variant_access_point": [ - "Delta, Plan", - "Travaux Delta" - ], - "authorized_access_point": "Plan Delta" + "authorized_access_point": "Roman historique uruguayen" }, { - "md5": "37ccb7fad88daaa1c762a2684a2c9c0c", - "pid": "263714527", - "note": [ + "md5": "2e1fcbce669e3ad6c309f33ed89472fc", + "pid": "279307616", + "type": "bf:Topic", + "broader": [ { - "label": [ - "Grand dict. terminologique", - "La difficile \u00e9mergence d'une conscience \u00e9cologique en Pologne / K. Herbst [in] Strates : mat\u00e9riaux pour la recherche en sciences sociales, 1992, 6", - "O\u00f9 en sommes-nous de notre conscience \u00e9cologique / C. Dartiguepeyrou [in] Vraiment durable : revue interdisciplinaire du d\u00e9veloppement durable, 2013, 2, 4" - ], - "noteType": "dataSource" + "authorized_access_point": "Roman arm\u00e9nien" } ], - "type": "bf:Topic", - "broader": [ + "bnf_type": "genre/forme Rameau", + "closeMatch": [ { - "authorized_access_point": "\u00c9cologie humaine" + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "https://id.loc.gov/authorities/subjects/sh89000504", + "source": "LCSH" + } + ], + "authorized_access_point": "Historical fiction, Armenian" } ], - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714527", + "value": "http://www.idref.fr/279307616", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18024815w", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18155375d", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18155375", "source": "BNF" } ], "classification": [ { + "name": "Histoire et critique litt\u00e9raires", + "type": "bf:ClassificationDdc", + "classificationPortion": "800" + }, + { + "name": "Histoire et g\u00e9ographie (g\u00e9n\u00e9ralit\u00e9s)", "type": "bf:ClassificationDdc", - "classificationPortion": "577" + "classificationPortion": "900" } ], - "variant_access_point": [ - "Conscience environnementale" - ], - "authorized_access_point": "Conscience \u00e9cologique" + "authorized_access_point": "Roman historique arm\u00e9nien" }, { - "md5": "98f680ac662a1aef18ba966ec5d78723", - "pid": "263714535", + "md5": "7c26ba7fce25d81f0da6a595c8f58c2d", + "pid": "279307632", "note": [ { "label": [ - "Formationprofessionnelle.ch : lexique - https://www.berufsbildung.ch (2022-07-13)", - "LFPr, art. 23 : Loi f\u00e9d\u00e9rale sur la formation professionnelle : cours interentreprises et autres lieux de formation comparables - https://fedlex.data.admin.ch (2022-07-13)", - "Conf\u00e9rence suisse des offices de la formation professionnelle - https://www.edk.ch/fr/csfp (2022-07-13)" + "Termium plus\u00ae - https://www.btb.termiumplus.gc.ca (2024-07-01)", + "Mise en pratique du traitement de reperfusion dans les infarctus du myocarde avec \u00e9l\u00e9vation du segment ST [in] Revue m\u00e9dicale de Li\u00e8ge, 2010, 65, 1", + "Une cause rare de syndrome coronarien aigu : l'embolie paradoxale [in] Annales de cardiologie et d'ang\u00e9iologie, 2024, 73, 2", + "L'infarctus du myocarde en France m\u00e9tropolitaine de 1995 \u00e0 2010 : \u00e9volution de la typologie des patients, de la prise en charge et du pronostic \u00e0 court terme [in] Bulletin de l'Acad\u00e9mie nationale de m\u00e9decine, 2014, 198, 1 : infarctus du myocarde avec sus-d\u00e9calage du segment ST", + "Traitement de l'infarctus myocardique. Pourquoi l'angioplastie coronaire ? / C. Beauloye [in] Louvain m\u00e9dical, 2017, 136, 8 : STEMI", + "Dict. de l'Acad\u00e9mie de m\u00e9decine : infarctus transmural - https://www.academie-medecine.fr/le-dictionnaire (2024-07-01)" ], "noteType": "dataSource" - }, - { - "label": [ - "Pendant l'apprentissage professionnel suisse, ces cours obligatoires compl\u00e8tent la formation en entreprise et \u00e0 l'\u00e9cole professionnelle" - ], - "noteType": "general" } ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Formation en alternance" + "authorized_access_point": "Infarctus du myocarde" } ], "bnf_type": "sujet Rameau", + "closeMatch": [ + { + "source": "MeSH", + "identifiedBy": [ + { + "type": "uri", + "value": "https://id.nlm.nih.gov/mesh/M000617719", + "source": "MeSH" + } + ], + "authorized_access_point": "ST Elevation Myocardial Infarction" + } + ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714535", + "value": "http://www.idref.fr/279307632", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180248198", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181554552", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18155455", "source": "BNF" } ], "classification": [ { - "name": "Education et enseignement", + "name": "Sciences m\u00e9dicales et param\u00e9dicales", "type": "bf:ClassificationDdc", - "classificationPortion": "370" + "classificationPortion": "610" } ], "variant_access_point": [ - "CIE (syst\u00e8me \u00e9ducatif suisse)", - "\u00dcberbetriebliche Kurse (syst\u00e8me \u00e9ducatif suisse)" - ], - "authorized_access_point": "Cours interentreprises (syst\u00e8me \u00e9ducatif suisse)" - }, - { - "md5": "250e9e047e44678772a2284c1f157de7", - "pid": "263714543", + "Infarctus avec onde Q", + "Infarctus avec sus-d\u00e9calage du segment ST", + "Infarctus avec sus-d\u00e9calage persistant du segment ST", + "Infarctus du myocarde avec sus-d\u00e9calage du segment ST", + "Infarctus du myocarde avec sus-d\u00e9calage persistant du segment ST", + "Infarctus du myocarde de type STEMI", + "Infarctus STEMI", + "Infarctus trans-mural", + "Infarctus transmural", + "ST elevation myocardial infarction", + "STEMI (maladie)" + ], + "authorized_access_point": "Infarctus du myocarde avec \u00e9l\u00e9vation du segment ST" + }, + { + "md5": "98f2b57ede1ad9ab924eea46aa2ade8f", + "pid": "279307640", "type": "bf:Topic", - "related": [ + "broader": [ { - "authorized_access_point": "Luxembourgeois (langue)" + "authorized_access_point": "Nouvelles pour la jeunesse" }, { - "authorized_access_point": "Po\u00e9sie luxembourgeoise" + "authorized_access_point": "Nouvelles fantastiques" } ], "bnf_type": "genre/forme Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714543", + "value": "http://www.idref.fr/279307640", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18024832g", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18155525d", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18155525", "source": "BNF" } ], "classification": [ { - "name": "Musique", + "name": "Histoire et critique litt\u00e9raires", "type": "bf:ClassificationDdc", - "classificationPortion": "780" + "classificationPortion": "800" } ], - "authorized_access_point": "Chansons luxambourgeoises" + "variant_access_point": [ + "Nouvelles fantastiques pour adolescents", + "Nouvelles fantastiques pour enfants", + "Nouvelles fantastiques pour jeunes adultes" + ], + "authorized_access_point": "Nouvelles fantastiques pour la jeunesse" }, { - "md5": "4ac6a6fe90069d5545aaef97bc25eef2", - "pid": "263714551", - "note": [ - { - "label": [ - "Wikip\u00e9dia - https://fr.wikipedia.org (2022-07-13)", - "Dict. encyclop\u00e9dique du son / P.-L. de Nanteuil, 2008", - "Oxford Music online (art. : Groovebox) - http://www.oxfordmusiconline.com (2022-07-13)", - "Inside Rihanna : la fabrique des tubes / J. Seabrook [in] Audimat, 2014, 2, 2" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Courtes s\u00e9quences musicales destin\u00e9es \u00e0 \u00eatre r\u00e9p\u00e9t\u00e9es" - ], - "noteType": "general" - } - ], + "md5": "d5a36dd46b6d95bde51685661d705e7d", + "pid": "279307659", "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Son - Enregistrement et reproduction -- Techniques num\u00e9riques" - } - ], - "related": [ - { - "authorized_access_point": "S\u00e9quenceur (instrument de musique)" + "authorized_access_point": "Po\u00e9sie yiddish" } ], - "bnf_type": "sujet Rameau", - "narrower": [ + "bnf_type": "genre/forme Rameau", + "closeMatch": [ { - "authorized_access_point": "\u00c9chantillonnage (musique)" + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "https://lccn.loc.gov/sh2022007681", + "source": "LCSH" + } + ], + "authorized_access_point": "Epic poetry, Yiddish" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714551", + "value": "http://www.idref.fr/279307659", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180248612", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181555300", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18155530", "source": "BNF" } ], "classification": [ { + "name": "Histoire et critique litt\u00e9raires", "type": "bf:ClassificationDdc", - "classificationPortion": "621" - }, - { - "name": "Musique", - "type": "bf:ClassificationDdc", - "classificationPortion": "780" + "classificationPortion": "800" } ], - "variant_access_point": [ - "Loops (musique)" - ], - "authorized_access_point": "Boucles (musique)" + "authorized_access_point": "\u00c9pop\u00e9es yiddish" }, { - "md5": "beadd5aa5177e479cecffa427dbee4da", - "pid": "26371456X", - "note": [ - { - "label": [ - "Guide pratique de la vinification en blanc et ros\u00e9 / C. Gros, S. Yerle, 2011", - "Encycl. Hachette des vins, 2021" - ], - "noteType": "dataSource" - } - ], + "md5": "e4df2a3ec11f5c2698592851563b8d63", + "pid": "279307667", "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Vin" + "authorized_access_point": "Roman fantastique suisse de langue fran\u00e7aise" } ], - "bnf_type": "sujet Rameau", + "bnf_type": "genre/forme Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/26371456X", + "value": "http://www.idref.fr/279307667", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180251036", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181555362", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18155536", "source": "BNF" } ], "classification": [ { - "name": "Agriculture, \u00e9levage", - "type": "bf:ClassificationDdc", - "classificationPortion": "630" - }, - { - "name": "Economie domestique, h\u00f4tellerie", + "name": "Histoire et critique litt\u00e9raires", "type": "bf:ClassificationDdc", - "classificationPortion": "640" + "classificationPortion": "800" } ], "variant_access_point": [ - "Vin - Oxydation" + "Roman fantastique francophone suisse pour adolescents", + "Roman fantastique francophone suisse pour enfants", + "Roman fantastique francophone suisse pour jeunes adultes", + "Roman fantastique francophone suisse pour la jeunesse", + "Roman fantastique suisse de langue fran\u00e7aise pour adolescents", + "Roman fantastique suisse de langue fran\u00e7aise pour enfants", + "Roman fantastique suisse de langue fran\u00e7aise pour jeunes adultes" ], - "authorized_access_point": "Vin oxydatif" + "authorized_access_point": "Roman fantastique suisse de langue fran\u00e7aise pour la jeunesse" }, { - "md5": "e7a0cdf031a44995f614619364b057e2", - "pid": "263714578", - "note": [ - { - "label": [ - "Voir aussi aux noms des personnes au centre des erreurs judiciaires, par ex. : Monique Case" - ], - "noteType": "seeReference" - } - ], + "md5": "53123327ce99334639e5dcfed6ae16f6", + "pid": "279307675", "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Erreurs judiciaires - [Localisations g\u00e9ographiques]" - } - ], - "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Affaire du Bois Bleu (1965-1967)" - }, - { - "authorized_access_point": "Calas, Affaire (1761-1762)" - }, - { - "authorized_access_point": "Courrier de Lyon, Affaire du (1796)" - }, - { - "authorized_access_point": "Dreyfus, Affaire (1894-1906)" - }, - { - "authorized_access_point": "Outreau, Affaire d' (2001-2004)" + "authorized_access_point": "Roman fran\u00e7ais" } ], + "bnf_type": "genre/forme Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714578", + "value": "http://www.idref.fr/279307675", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180251930", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18155543b", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18155543", "source": "BNF" } ], "classification": [ { - "name": "Droit", - "type": "bf:ClassificationDdc", - "classificationPortion": "340" - }, - { - "name": "Probl\u00e8mes et services sociaux", - "type": "bf:ClassificationDdc", - "classificationPortion": "360" - }, - { - "name": "Histoire de la France (depuis 486)", + "name": "Histoire et critique litt\u00e9raires", "type": "bf:ClassificationDdc", - "classificationPortion": "944" + "classificationPortion": "800" } ], - "authorized_access_point": "Erreurs judiciaires - France" + "authorized_access_point": "Roman d'\u00e9nigme fran\u00e7ais" }, { - "md5": "c791808fac3f9594dd6dc5e18d97ba13", - "pid": "263714594", - "note": [ - { - "label": [ - "Diccionario panhisp\u00e1nico de dudas - https://www.rae.es/dpd/que%C3%ADsmo (2022-07-18)", - "Que\u00edsmo - https://fr.wikipedia.org (2022-07-18)", - "El que\u00edsmo en la historia : variaci\u00f3n y cambio ling\u00fc\u00edstico en el r\u00e9gimen preposicional del espa\u00f1ol (siglos XVI-XXI) / J. L. Blas Arroyo, M. Velando Casanova, [2022]" - ], - "noteType": "dataSource" - } - ], + "md5": "269c66bbb9f9da25163684456443295f", + "pid": "279307683", "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Espagnol (langue)" - }, - { - "authorized_access_point": "Fautes de langage" + "authorized_access_point": "Litt\u00e9rature didactique belge de langue fran\u00e7aise" } ], "related": [ { - "authorized_access_point": "Hispanismes (idiotismes)" + "authorized_access_point": "Maximes belges de langue fran\u00e7aise" + }, + { + "authorized_access_point": "Proverbes belges de langue fran\u00e7aise" } ], - "bnf_type": "sujet Rameau", + "bnf_type": "genre/forme Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714594", + "value": "http://www.idref.fr/279307683", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180252353", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181555482", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18155548", "source": "BNF" } ], "classification": [ { + "name": "Education et enseignement", + "type": "bf:ClassificationDdc", + "classificationPortion": "370" + }, + { + "name": "Histoire et critique litt\u00e9raires", "type": "bf:ClassificationDdc", - "classificationPortion": "401" + "classificationPortion": "800" } ], "variant_access_point": [ - "Ch\u00e9isme" + "Aphorismes et apophtegmes francophones belges" ], - "authorized_access_point": "Que\u00edsmo" + "authorized_access_point": "Aphorismes et apophtegmes belges de langue fran\u00e7aise" }, { - "md5": "dd1d72a5512898de7c3dd6336ce405c0", - "pid": "263714608", - "note": [ - { - "label": [ - "The Cambridge history of Spanish literature / D.T. Gies, 2004", - "La otra sentimentalidad : estudio y antologia / F. D\u00edaz de Castro, 2003", - "\u00c0 quoi bon la po\u00e9sie aujourd'hui ? / C. Le Bigot, 2016 : L'autre sentimentalit\u00e9 (p.146)", - "L'engagement litt\u00e9raire : cahiers du groupe \u03c6 / E. Bouju, 2005 : L'autre sentimentalit\u00e9 (p.67-71)" - ], - "noteType": "dataSource" - }, + "md5": "0791b71176ba22124a40662a162009a9", + "pid": "279307705", + "type": "bf:Topic", + "broader": [ { - "label": [ - "Renouvellement po\u00e9tique initi\u00e9 en 1980 \u00e0 Grenade par les po\u00e8tes L. Garcia Montero, J. Egea et A. Salvador qui pr\u00f4naient l'historicisation de la sentimentalit\u00e9 ainsi qu'une po\u00e9sie r\u00e9aliste engag\u00e9e" - ], - "noteType": "general" + "authorized_access_point": "Litt\u00e9rature belge de langue fran\u00e7aise" } ], - "type": "bf:Topic", - "broader": [ + "bnf_type": "genre/forme Rameau", + "narrower": [ { - "authorized_access_point": "Mouvements litt\u00e9raires - Espagne" + "authorized_access_point": "Aphorismes et apophtegmes belges de langue fran\u00e7aise" }, { - "authorized_access_point": "Litt\u00e9rature espagnole - 20e si\u00e8cle" + "authorized_access_point": "Maximes belges de langue fran\u00e7aise" }, { - "authorized_access_point": "Po\u00e9sie espagnole" + "authorized_access_point": "Proverbes belges de langue fran\u00e7aise" } ], - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714608", + "value": "http://www.idref.fr/279307705", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18025352z", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18155558c", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18155558", "source": "BNF" } ], @@ -16105,18 +36872,21 @@ } ], "variant_access_point": [ - "L' autre sentimentalit\u00e9" + "Litt\u00e9rature didactique francophone belge" ], - "authorized_access_point": "La otra sentimentalidad" + "authorized_access_point": "Litt\u00e9rature didactique belge de langue fran\u00e7aise" }, { - "md5": "e2ace3cfc18d5e904adff750dedb6316", - "pid": "263714616", + "md5": "41349bfb141625a8e81df9a958903069", + "pid": "279307713", "note": [ { "label": [ - "Encycl. of world military aircraft, 1996", - "Encycl. of US Air Force aircraft and missile systems, 1978" + "Termium plus\u00ae - https://www.btb.termiumplus.gc.ca (2024-07-01)", + "Indications \u00e0 la coronarographie en urgence. Partie II : syndromes coronariens aigus sans \u00e9l\u00e9vation du segment ST [in] Revue m\u00e9dicale suisse, 2009, 205", + "Pronostic des syndromes coronariens aigus. Absence de diff\u00e9rence en fonction du sexe [in] Bulletin de l'Acad\u00e9mie nationale de m\u00e9decine, 2004, 188, 3", + "L'infarctus du myocarde en France m\u00e9tropolitaine de 1995 \u00e0 2010 : \u00e9volution de la typologie des patients, de la prise en charge et du pronostic \u00e0 court terme [in] Bulletin de l'Acad\u00e9mie nationale de m\u00e9decine, 2014, 198, 1 : infarctus sans sus-d\u00e9calage du segment ST", + "Traitement de l'infarctus myocardique. Pourquoi l'angioplastie coronaire ? / C. Beauloye [in] Louvain m\u00e9dical, 2017, 136, 8 : NSTEMI" ], "noteType": "dataSource" } @@ -16124,202 +36894,175 @@ "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Avions de chasse - \u00c9tats-Unis" + "authorized_access_point": "Infarctus du myocarde" } ], "bnf_type": "sujet Rameau", "closeMatch": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh00001943", - "source": "LCSH" - }, - "authorized_access_point": "Republic F-84 Thunderjet" + "source": "MeSH", + "identifiedBy": [ + { + "type": "uri", + "value": "https://id.nlm.nih.gov/mesh/M000617720", + "source": "MeSH" + } + ], + "authorized_access_point": "Non-ST Elevated Myocardial Infarction" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714616", + "value": "http://www.idref.fr/279307713", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18025373x", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181555618", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18155561", "source": "BNF" } ], "classification": [ { - "name": "Art et science militaires", - "type": "bf:ClassificationDdc", - "classificationPortion": "355" - }, - { - "name": "Sciences appliqu\u00e9es", + "name": "Sciences m\u00e9dicales et param\u00e9dicales", "type": "bf:ClassificationDdc", - "classificationPortion": "600" + "classificationPortion": "610" } ], "variant_access_point": [ - "F-84 Thunderjet (avion de chasse)" - ], - "authorized_access_point": "Republic F-84 Thunderjet (avion de chasse)" - }, - { - "md5": "4ff59e51c11f2bff49574e8e4120f630", - "pid": "263714624", + "Infarctus du myocarde de type NSTEMI", + "Infarctus du myocarde sans sus-d\u00e9calage du segment ST", + "Infarctus du myocarde sans sus-d\u00e9calage persistant du segment ST", + "Infarctus non trans-mural", + "Infarctus non transmural", + "Infarctus NSTEMI", + "Infarctus sans onde Q", + "Infarctus sans sus-d\u00e9calage du segment ST", + "Infarctus sans sus-d\u00e9calage persistant du segment ST", + "Non ST elevation myocardial infarction", + "NSTEMI (maladie)" + ], + "authorized_access_point": "Infarctus du myocarde sans \u00e9l\u00e9vation du segment ST" + }, + { + "md5": "e1ab5d45734db66af0536e7208afeec7", + "pid": "279307721", "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Po\u00e9sie samaritaine" + "authorized_access_point": "Roman mexicain" } ], "bnf_type": "genre/forme Rameau", "closeMatch": [ { "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "https://lccn.loc.gov/sh2002001652", - "source": "LCSH" - }, - "authorized_access_point": "Hymns, Samaritan Aramaic" + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2023003043", + "source": "LCSH" + } + ], + "authorized_access_point": "Autobiographical fiction, Mexican" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714624", + "value": "http://www.idref.fr/279307721", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18025421z", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181555660", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18155566", "source": "BNF" } ], "classification": [ - { - "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", - "type": "bf:ClassificationDdc", - "classificationPortion": "200" - }, - { - "name": "Musique", - "type": "bf:ClassificationDdc", - "classificationPortion": "780" - }, { "name": "Histoire et critique litt\u00e9raires", "type": "bf:ClassificationDdc", "classificationPortion": "800" } ], - "authorized_access_point": "Hymnes samaritains" + "authorized_access_point": "Roman autobiographique mexicain" }, { - "md5": "17d700449c25137b09304f1053833f16", - "pid": "263714632", + "md5": "7890d1c5aad6d10ca21672978fba06aa", + "pid": "27930773X", "note": [ { "label": [ - "Tr\u00e9sor de la langue fran\u00e7aise (art. : Psych\u00e9d\u00e9lique) - http://stella.atilf.fr (2022-07-19)", - "La contre-culture, \u00c9tats-Unis, ann\u00e9es 60 : la naissance de nouvelles utopies / C. Saint-Jean-Paulin, 1997 [th\u00e8se] : Exp\u00e9rience psych\u00e9d\u00e9lique", - "L'exp\u00e9rience psych\u00e9d\u00e9lique : Leary, Metzner et Alpert / T. Leary, 2013", - "Hallucinog\u00e8nes et culture : une approche neuroanthropologique de l'exp\u00e9rience psych\u00e9d\u00e9lique / D. Dupuis, L. Berkovitch [in] PSN, 2020, 18 (3)" + "Vitrine linguistique - https://vitrinelinguistique.oqlf.gouv.qc.ca (2024-007-01)", + "Dict. des sciences de la terre / M. Moureau, G. Brace, 2000", + "Dict. de g\u00e9ologie / A. Foucault, J.-F. Raoult, 2000" ], "noteType": "dataSource" - }, - { - "label": [ - "\u00c9tat provoqu\u00e9 par l'absorption de drogues hallucinog\u00e8nes. - Par extension, fa\u00e7on de vivre, \u00e9thique qui pr\u00e9conise l'utilisation de drogues hallucinog\u00e8nes" - ], - "noteType": "general" } ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "\u00c9tats modifi\u00e9s de conscience" - }, - { - "authorized_access_point": "Psychotropes" - } - ], - "related": [ - { - "authorized_access_point": "Beat generation" - }, - { - "authorized_access_point": "Champignons hallucinog\u00e8nes" - }, - { - "authorized_access_point": "Hallucinations et illusions" - }, - { - "authorized_access_point": "Hallucinog\u00e8nes" - }, - { - "authorized_access_point": "Hippies" + "authorized_access_point": "Tectonique" } ], "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Art psych\u00e9d\u00e9lique" - }, - { - "authorized_access_point": "Rock psych\u00e9d\u00e9lique" - } - ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714632", + "value": "http://www.idref.fr/27930773X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180254349", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18155575z", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18155575", "source": "BNF" } ], "classification": [ { - "name": "Psychologie, psychanalyse", - "type": "bf:ClassificationDdc", - "classificationPortion": "150" - }, - { - "name": "Sciences sociales", - "type": "bf:ClassificationDdc", - "classificationPortion": "300" - }, - { - "name": "Sciences m\u00e9dicales et param\u00e9dicales", + "name": "Sciences de la Terre", "type": "bf:ClassificationDdc", - "classificationPortion": "610" + "classificationPortion": "550" } ], - "variant_access_point": [ - "\u00c9tat psych\u00e9d\u00e9lique", - "Exp\u00e9rience hallucinog\u00e8ne", - "Exp\u00e9rience psych\u00e9d\u00e9lique", - "Hallucinog\u00e8nes - Aspect psychologique", - "Hallucinog\u00e8nes - Aspect social" - ], - "authorized_access_point": "Psych\u00e9d\u00e9lisme" + "authorized_access_point": "Pal\u00e9otectonique" }, { - "md5": "c82a11f69f48376d378e3ff56fcbcab5", - "pid": "263714640", + "md5": "0beef821ed2bc9b63f4e8b634248fa1a", + "pid": "279307748", "note": [ { "label": [ - "S'emploie uniquement en subdivision" + "Termium plus\u00ae - https://www.btb.termiumplus.gc.ca (2024-07-01)", + "GBIF - https://www.gbif.org/fr/species (2024-07-01)", + "Dict. of animal names in five languages, birds / R. L. Boehme, V. E. Flint, 1994", + "The IUCN Red List of Threatened Species : Hylophylax naevioides - http://www.iucnredlist.org (2024-07-01)", + "Grzimek's animal life encycl.. Volume 10, Birds III, 2003 : Hylophylax naevioides", + "The Howard and Moore complete checklist of the birds of the world, 2003 : Hylophylax naevioides" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Rang taxonomique : esp\u00e8ce" ], "noteType": "general" } @@ -16327,260 +37070,238 @@ "type": "bf:Topic", "broader": [ { - "authorized_access_point": "D\u00e9mographie" - } - ], - "related": [ - { - "authorized_access_point": "\u00c9ducation - Aspect d\u00e9mographique" - }, - { - "authorized_access_point": "Logement - Aspect d\u00e9mographique" - }, - { - "authorized_access_point": "Religions - Aspect d\u00e9mographique" - }, - { - "authorized_access_point": "R\u00e9volutions - Aspect d\u00e9mographique" + "authorized_access_point": "Hylophylax" } ], "bnf_type": "sujet Rameau", "closeMatch": [ + { + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "https://id.loc.gov/authorities/subjects/sh85126968", + "source": "LCSH" + } + ], + "authorized_access_point": "Spotted antbird" + }, { "source": "RVMLaval", - "authorized_access_point": "--Aspect d\u00e9mographique" + "authorized_access_point": "Fourmilier grivel\u00e9" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714640", + "value": "http://www.idref.fr/279307748", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180255546", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18155596x", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18155596", "source": "BNF" } ], "classification": [ { + "name": "Zoologie", "type": "bf:ClassificationDdc", - "classificationPortion": "304" + "classificationPortion": "590" } ], - "authorized_access_point": "Aspect d\u00e9mographique" + "variant_access_point": [ + "Hylophylax naevioides" + ], + "authorized_access_point": "Fourmilier grivel\u00e9" }, { - "md5": "a5acf569efff53f998cd3a6053156f26", - "pid": "263714659", - "note": [ - { - "label": [ - "Encycl. universalis (art. : Bhagavad-G\u012bt\u0101) : J\u00f1\u0101nayoga - www.universalis-edu.com (2022-07-21)", - "Dict. de la sagesse orientale : bouddhisme, hindouisme, ta\u00efoisme, zen, 1995 : J\u00f1\u0101na-yoga, Voie de la connaissance, J\u00f1\u0101na-yogi", - "Yoga : l'encycl. / Y. Tardan-Masquelier, 2021 : J\u00f1\u0101na-yoga, J\u00f1\u0101na-m\u0101rga, J\u00f1\u0101nin", - "Introduction aux voies du yoga / T. Micha\u00ebl, 2016 : Yoga de la connaissance" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Du sanskrit \"J\u00f1\u0101na\" : connaissance. - La Vedanta (la fin des Veda) recommande de d\u00e9passer l'ignorance (Avidya) pour atteindre la r\u00e9alit\u00e9 supr\u00eame (Brahman) et le v\u00e9ritable soi (Atman)" - ], - "noteType": "general" - } - ], + "md5": "46a8cac946148fc195e0ed202f255406", + "pid": "279307756", "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Yoga" - } - ], - "related": [ - { - "authorized_access_point": "\u0100tman" - }, - { - "authorized_access_point": "Avidy\u0101" - }, - { - "authorized_access_point": "Brahman" + "authorized_access_point": "Roman suisse de langue fran\u00e7aise" } ], - "bnf_type": "sujet Rameau", - "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85149180", - "source": "LCSH" - }, - "authorized_access_point": "Yoga, J\u00f1\u0101na" - }, + "bnf_type": "genre/forme Rameau", + "narrower": [ { - "source": "RVMLaval", - "authorized_access_point": "Yoga, J\u00f1\u0101na" + "authorized_access_point": "Roman fantastique suisse de langue fran\u00e7aise pour la jeunesse" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714659", + "value": "http://www.idref.fr/279307756", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180255604", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18155609f", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18155609", "source": "BNF" } ], "classification": [ { - "name": "Philosophie", - "type": "bf:ClassificationDdc", - "classificationPortion": "100" - }, - { - "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", + "name": "Histoire et critique litt\u00e9raires", "type": "bf:ClassificationDdc", - "classificationPortion": "200" + "classificationPortion": "800" } ], "variant_access_point": [ - "J\u00f1\u0101na-m\u0101rga", - "J\u00f1\u0101na-yogi", - "J\u00f1\u0101nayoga", - "J\u00f1\u0101nin", - "Voie de la connaissance", - "Yoga de la connaissance" + "Roman fantastique francophone suisse" ], - "authorized_access_point": "J\u00f1\u0101na-yoga" + "authorized_access_point": "Roman fantastique suisse de langue fran\u00e7aise" }, { - "md5": "5b56bac2331f985108d3316946135688", - "pid": "263714667", + "md5": "83a0484c68c00cf5d1df429712ea2645", + "pid": "279307780", "note": [ { "label": [ - "Dict. historique de la Suisse (art. : Votations) - http://www.hls-dhs-dss.ch (2022-07-20)", - "Le citoyen face \u00e0 ses opinions : arguments, connaissances et campagnes politiques en Suisse / A. Nai, 2016", - "Parlement suisse : Etude sur le financement des campagnes \u00e9lectorales et de votation / M. Meyer, 2019 - https://www.parlament.ch (2022-07-20)" + "L'Italie : de Botticelli \u00e0 Bonaparte / J. Delumeau, 2022", + "Histoire \u00e9conomique de l'Europe moderne : XVe-XVIIIe si\u00e8cle / F. Delleaux, 2015", + "Les 100 mots de Venise / O. Alberti, 2021" ], "noteType": "dataSource" - }, - { - "label": [ - "S'emploie \u00e9galement en subdivision" - ], - "noteType": "general" } ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Campagnes \u00e9lectorales" - } - ], - "related": [ - { - "authorized_access_point": "\u00c9lections" - }, - { - "authorized_access_point": "R\u00e9f\u00e9rendum" + "authorized_access_point": "Verrerie" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714667", + "value": "http://www.idref.fr/279307780", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180255995", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181557505", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18155750", "source": "BNF" } ], "classification": [ { - "name": "Sciences politiques", + "name": "Arts plastiques, sculpture", "type": "bf:ClassificationDdc", - "classificationPortion": "320" + "classificationPortion": "730" + }, + { + "name": "Dessin, arts d\u00e9coratifs, artisanat d'art", + "type": "bf:ClassificationDdc", + "classificationPortion": "740" } ], "variant_access_point": [ - "Campagnes de vote", - "Votations - Campagnes de" + "Verre de Murano", + "Verreries de Murano" ], - "authorized_access_point": "Campagnes de votation (Suisse)" + "authorized_access_point": "Verrerie de Murano" }, { - "md5": "b19f9384a6dec401f83364e9a5da8cfd", - "pid": "263714691", + "md5": "4ee6247377d5ca16a5fa5eb57cbbd4dd", + "pid": "279307799", + "note": [ + { + "label": [ + "Wikidata - https://www.wikidata.org/wiki/Q814356 (2024-07-02)", + "Grand Larousse universel", + "Grand Robert de la langue fran\u00e7aise, 2001", + "Tr\u00e9sor de la langue fran\u00e7aise (art. : Girl) - http://atilf.atilf.fr (2024-07-02)", + "Wikip\u00e9dia - https://fr.wikipedia.org (2024-07-02)" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Personnes prostitu\u00e9es n'exer\u00e7ant pas sur la voie publique et que l'on contacte, par exemple, par t\u00e9l\u00e9phone" + ], + "noteType": "general" + } + ], "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Antiquit\u00e9s \u00e9gyptiennes" + "authorized_access_point": "Prostitu\u00e9es" }, { - "authorized_access_point": "Lampes antiques" + "authorized_access_point": "Prostitu\u00e9s" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714691", + "value": "http://www.idref.fr/279307799", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180259680", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181557923", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18155792", "source": "BNF" } ], "classification": [ { - "name": "Sciences appliqu\u00e9es", - "type": "bf:ClassificationDdc", - "classificationPortion": "600" - }, - { - "name": "Dessin, arts d\u00e9coratifs, artisanat d'art", "type": "bf:ClassificationDdc", - "classificationPortion": "740" + "classificationPortion": "305" }, { - "name": "Pr\u00e9histoire et histoire ancienne", + "name": "Probl\u00e8mes et services sociaux", "type": "bf:ClassificationDdc", - "classificationPortion": "930" + "classificationPortion": "360" } ], "variant_access_point": [ - "Lampes \u00e9gyptiennes - Antiquit\u00e9", - "Lampes \u00e9gyptiennes antiques", - "Lampes \u00e9gyptiennes de l'Antiquit\u00e9" + "Call-boys", + "Call-girls", + "Escort-girls" ], - "authorized_access_point": "Lampes \u00e9gyptiennes" + "authorized_access_point": "Escorts" }, { - "md5": "3013bac93437e7af527bdd0954ccdd6b", - "pid": "263714705", + "md5": "dde5602675fdcc92bfe37885c05dd149", + "pid": "279307810", "note": [ { "label": [ - "Respirianisme et risque de d\u00e9rive sectaire - https://www.miviludes.interieur.gouv.fr (2022-07-22)", - "Respirianisme : attention, danger ! - https://sante.journaldesfemmes.f (2022-07-22)", - "Le je\u00fbne th\u00e9rapeutique : cons\u00e9quenses m\u00e9taboliques, pratiques, int\u00e9r\u00eats et limites / P. Chambouvet, 2016 [th\u00e8se] - bibnum.univ-lyon1.fr (2022-07-22)" + "GBIF - https://www.gbif.org/species (2024-07-03)", + "NCBI - https://www.ncbi.nlm.nih.gov/Taxonomy (2024-07-03)", + "Dict. of animal names in five languages, birds / R. L. Boehme, V. E. Flint, 1994", + "Grzimek's animal life encycl.. Volume 10, Birds III, 2003", + "The Howard and Moore complete checklist of the birds of the world, 2003" ], "noteType": "dataSource" }, { "label": [ - "Mouvement spirituel cr\u00e9\u00e9 en 1993 par Jasmuheen pr\u00f4nant un je\u00fbne extr\u00eame (in\u00e9die) et une \"alimentation pranique\" c'est-\u00e0-dire d'air et de lumi\u00e8re" + "Rang taxonomique : genre" ], "noteType": "general" } @@ -16588,68 +37309,97 @@ "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Je\u00fbne" + "authorized_access_point": "Thamnophilidae" } ], - "related": [ + "bnf_type": "sujet Rameau", + "narrower": [ { - "authorized_access_point": "Pr\u0101\u1e47\u0101y\u0101ma" + "authorized_access_point": "Fourmilier grivel\u00e9" } ], - "bnf_type": "sujet Rameau", "closeMatch": [ { - "source": "GND", - "authorized_access_point": "Lichtnahrung" + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "https://id.loc.gov/authorities/subjects/sh85063574", + "source": "LCSH" + } + ], + "authorized_access_point": "Hylophylax (Birds)" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714705", + "value": "http://www.idref.fr/279307810", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb18025982j", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18155931f", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18155931", "source": "BNF" } ], "classification": [ { - "name": "Psychologie, psychanalyse", + "name": "Zoologie", "type": "bf:ClassificationDdc", - "classificationPortion": "150" + "classificationPortion": "590" + } + ], + "authorized_access_point": "Hylophylax" + }, + { + "md5": "6d7b9a2c98294f7e14f09197d445ded6", + "pid": "279307837", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Asie du Sud" + } + ], + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279307837", + "source": "IDREF" }, { - "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", - "type": "bf:ClassificationDdc", - "classificationPortion": "200" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18156044j", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18156044", + "source": "BNF" } ], - "variant_access_point": [ - "Breatharisme", - "Mouvement respirianiste", - "Nutrition pranique", - "Pranisme" + "classification": [ + { + "name": "Pr\u00e9histoire et histoire ancienne", + "type": "bf:ClassificationDdc", + "classificationPortion": "930" + } ], - "authorized_access_point": "Respirianisme" + "authorized_access_point": "Antiquit\u00e9s - Asie du Sud" }, { - "md5": "bfe50ed362070c5a3870aab3ff5599b8", - "pid": "263714713", + "md5": "7fc4d9191dca4e023f01d26199a28050", + "pid": "279307853", "note": [ { "label": [ - "Dict. de la pr\u00e9histoire / A. Leroi-Gourhan, 1997 (art. : Bracelets)", - "La pr\u00e9histoire / D. Vialou, 2004 (art. : Parure)", - "Les bracelets de pierre du N\u00e9olithique m\u00e9ridional / J. Courtin, X. Gutherz [in] Bulletin de la soci\u00e9t\u00e9 pr\u00e9historique fran\u00e7aise. \u00c9tudes et travaux, 1976, 73, 1 - https://www.persee.fr (2022-07-22)" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Faits d'\u00e9l\u00e9ments enfil\u00e9s ou attach\u00e9s, attest\u00e9s \u00e0 partir du M\u00e9solithique, ou faits d'une seule pi\u00e8ce, en test, pierre ou m\u00e9tal au N\u00e9olithique, en bronze \u00e0 partir de l'\u00e2ge du Bronze, de forme et mati\u00e8re vari\u00e9es \u00e0 l'\u00e2ge du Fer (verre, etc.)" + "Sous cette vedette, obligatoirement suivie d'une subdivision g\u00e9ographique ou de la subdivision : \u00c0 l'\u00e9tranger, directement ou apr\u00e8s une subdivision de sujet, on trouve les documents sur les familles nicaraguayennes hors du Nicaragua. Les documents sur les familles nicaraguayennes au Nicaragua se trouvent sous des vedettes-mati\u00e8re telles que : Famille -- Nicaragua ; Famille -- [Subdivision de sujet] -- Nicaragua ; etc" ], "noteType": "general" } @@ -16657,42 +37407,43 @@ "type": "bf:Topic", "broader": [ { - "authorized_access_point": "Bijoux pr\u00e9historiques" - }, - { - "authorized_access_point": "Bracelets (bijoux)" + "authorized_access_point": "Nicaraguayens" } ], "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263714713", + "value": "http://www.idref.fr/279307853", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb180259878", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18156498k", + "source": "BNF" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18156498", "source": "BNF" } ], "classification": [ { - "name": "Dessin, arts d\u00e9coratifs, artisanat d'art", + "name": "Sciences sociales", "type": "bf:ClassificationDdc", - "classificationPortion": "740" + "classificationPortion": "300" }, { - "name": "Pr\u00e9histoire et histoire ancienne", "type": "bf:ClassificationDdc", - "classificationPortion": "930" + "classificationPortion": "305" + }, + { + "name": "Ethnologie, anthropologie, folklore", + "type": "bf:ClassificationDdc", + "classificationPortion": "390" } ], - "variant_access_point": [ - "Bracelets (bijoux) - Pr\u00e9histoire", - "Bracelets de la pr\u00e9histoire", - "Bracelets protohistoriques" - ], - "authorized_access_point": "Bracelets pr\u00e9historiques" + "authorized_access_point": "Familles nicaraguayennes" } ] \ No newline at end of file diff --git a/data/cidref_metadata.csv b/data/cidref_metadata.csv index 9b870ac3..e880a78d 100644 --- a/data/cidref_metadata.csv +++ b/data/cidref_metadata.csv @@ -1,273 +1,551 @@ -2023-08-08 13:37:37.288429 2023-08-08 13:37:37.288433 c4f5d555-0cb2-44e5-8609-86a0a9abd7c2 {"md5": "4b7f3d32ff91eee6bcddc5b796e5b88f", "pid": "027224430", "note": [{"label": ["Grand Larousse universel", "Les langues du monde / M. Sala, I. Vintila-Radulescu, 1984", "Les langues du monde / A. Meillet, M. Cohen, 1981"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Langues ibéro-romanes"}, {"authorized_access_point": "Langues romanes"}], "related": [{"authorized_access_point": "Abécédaires espagnols"}, {"authorized_access_point": "Abréviations espagnoles"}, {"authorized_access_point": "Caló (dialecte)"}, {"authorized_access_point": "Catéchismes espagnols"}, {"authorized_access_point": "Cocoliche (langue)"}, {"authorized_access_point": "Dictionnaires espagnols"}, {"authorized_access_point": "Emprunts espagnols"}, {"authorized_access_point": "Encyclopédies et dictionnaires espagnols"}, {"authorized_access_point": "Espagnol (langue) - Examens"}, {"authorized_access_point": "Espagnol (langue) - Vocabulaire"}, {"authorized_access_point": "Étude et enseignement - Locuteurs de l'espagnol"}, {"authorized_access_point": "Glossaires et lexiques espagnols"}, {"authorized_access_point": "Grammaire comparée - Espagnol (langue)"}, {"authorized_access_point": "Hispanismes (idiotismes)"}, {"authorized_access_point": "Imprimés espagnols"}, {"authorized_access_point": "Influence sur l'espagnol"}, {"authorized_access_point": "Judéo-espagnol (langue)"}, {"authorized_access_point": "Langues créoles espagnoles"}, {"authorized_access_point": "Manuscrits espagnols"}, {"authorized_access_point": "Mots apparentés espagnols"}, {"authorized_access_point": "N tildé (la lettre espagnole)"}, {"authorized_access_point": "Noms de personnes espagnols"}, {"authorized_access_point": "Noms propres espagnols"}, {"authorized_access_point": "Périodiques espagnols"}, {"authorized_access_point": "Philologie espagnole"}, {"authorized_access_point": "Phonétique comparée - Espagnol (langue)"}, {"authorized_access_point": "Professeurs d'espagnol"}, {"authorized_access_point": "Traduction en espagnol"}, {"authorized_access_point": "Traductions espagnoles"}, {"authorized_access_point": "Versions espagnoles"}, {"authorized_access_point": "Vocabulaires et manuels de conversation espagnols"}, {"authorized_access_point": "Cantiques espagnols"}, {"authorized_access_point": "Chansons espagnoles"}, {"authorized_access_point": "Citations espagnoles"}, {"authorized_access_point": "Correspondance espagnole"}, {"authorized_access_point": "Littérature hispanophone"}, {"authorized_access_point": "Manuels pour locuteurs de l'espagnol"}, {"authorized_access_point": "Mélodies espagnoles"}, {"authorized_access_point": "Paraphrases espagnoles"}, {"authorized_access_point": "Synopses espagnoles"}, {"authorized_access_point": "Virelangues espagnols"}, {"authorized_access_point": "Pays de langue espagnole"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Espagnol (langue) - Argot"}, {"authorized_access_point": "Espagnol (langue) - Dialectes"}, {"authorized_access_point": "Espagnol (langue) - Avant 1500"}, {"authorized_access_point": "Espagnol (langue) - 1500-1700 (Période classique)"}, {"authorized_access_point": "Queísmo"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85126261", "source": "LCSH"}, "authorized_access_point": "Spanish language"}, {"source": "RVMLaval", "authorized_access_point": "Espagnol (Langue)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027224430", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119312813", "source": "BNF"}], "classification": [{"name": "Langues et linguistique", "type": "bf:ClassificationDdc", "classificationPortion": "400"}], "variant_access_point": ["Castellano (langue)", "Castillan (langue)"], "authorized_access_point": "Espagnol (langue)"} 1 -2023-08-08 13:37:37.367055 2023-08-08 13:37:37.36706 cb66f8c4-bf3b-4320-8e51-f127777f294e {"md5": "ed787193323d3cfadbd708b5809d29ce", "pid": "027227219", "note": [{"label": ["Grand Larousse universel", "Grand Robert de la langue française, 2001"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, obligatoirement suivie d'une subdivision géographique ou de la subdivision : À l'étranger, directement ou après une subdivision de sujet, on trouve les documents sur les Français hors de France. Les documents sur les Français en France se trouvent sous des vedettes-matière telles que : France -- Moeurs et coutumes ; etc"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ethnologie - France"}], "related": [{"authorized_access_point": "Algériens d'origine française"}, {"authorized_access_point": "Allemands d'origine française"}, {"authorized_access_point": "Américains d'origine française"}, {"authorized_access_point": "Britanniques d'origine française"}, {"authorized_access_point": "Canadiens francophones"}, {"authorized_access_point": "Roumains d'origine française"}, {"authorized_access_point": "France"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Agriculteurs français"}, {"authorized_access_point": "Agronomes français"}, {"authorized_access_point": "Alpinistes français"}, {"authorized_access_point": "Anarchistes français"}, {"authorized_access_point": "Animateurs socioculturels français"}, {"authorized_access_point": "Archéologues français"}, {"authorized_access_point": "Artistes français"}, {"authorized_access_point": "Bibliothécaires français"}, {"authorized_access_point": "Catholiques français"}, {"authorized_access_point": "Chirurgiens français"}, {"authorized_access_point": "Commerçants français"}, {"authorized_access_point": "Communistes français"}, {"authorized_access_point": "Déportés français"}, {"authorized_access_point": "Diplomates français"}, {"authorized_access_point": "Écrivains français"}, {"authorized_access_point": "Éditeurs français"}, {"authorized_access_point": "Égyptologues français"}, {"authorized_access_point": "Employés de maison français"}, {"authorized_access_point": "Enseignants français"}, {"authorized_access_point": "Ethnologues français"}, {"authorized_access_point": "Étudiants français"}, {"authorized_access_point": "Explorateurs français"}, {"authorized_access_point": "Françaises"}, {"authorized_access_point": "Géographes français"}, {"authorized_access_point": "Historiens français"}, {"authorized_access_point": "Hommes d'affaires français"}, {"authorized_access_point": "Humanistes français"}, {"authorized_access_point": "Ingénieurs français"}, {"authorized_access_point": "Ingénieurs militaires français"}, {"authorized_access_point": "Intellectuels français"}, {"authorized_access_point": "Joueurs de basket-ball français"}, {"authorized_access_point": "Joueurs de football français"}, {"authorized_access_point": "Journalistes français"}, {"authorized_access_point": "Juifs français"}, {"authorized_access_point": "Marins français"}, {"authorized_access_point": "Médecins français"}, {"authorized_access_point": "Militaires français"}, {"authorized_access_point": "Mormons français"}, {"authorized_access_point": "Otages français"}, {"authorized_access_point": "Pharmaciens français"}, {"authorized_access_point": "Pilotes militaires français"}, {"authorized_access_point": "Pirates français"}, {"authorized_access_point": "Prisonniers français"}, {"authorized_access_point": "Protestants français"}, {"authorized_access_point": "Réfugiés français"}, {"authorized_access_point": "Religieux français"}, {"authorized_access_point": "Restaurateurs (alimentation) français"}, {"authorized_access_point": "Royalistes français"}, {"authorized_access_point": "Savants français"}, {"authorized_access_point": "Scientifiques français"}, {"authorized_access_point": "Travailleurs étrangers français"}, {"authorized_access_point": "Viticulteurs français"}, {"authorized_access_point": "Voyageurs français"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85051757", "source": "LCSH"}, "authorized_access_point": "French"}, {"source": "RVMLaval", "authorized_access_point": "Français"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027227219", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb133183184", "source": "BNF"}], "classification": [{"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "authorized_access_point": "Français"} 1 -2023-08-08 13:37:37.423816 2023-08-08 13:37:37.42382 f4711140-6695-45e4-a13f-8afc376b6d02 {"md5": "4a137d0e50b4305a51ba4e4a370a1d9e", "pid": "027235548", "note": [{"label": ["Nouveau petit Robert 2010", "Le nouveau Théo : l'encycl. catholique pour tous / M. Dubost, S. Lalanne, 2009", "Dict. des mots de la foi chrétienne / O. de la Brosse, A. M. Henry, P. Rouillard, 1992", "Dict. encyclopédique du judaïsme / G. Wigoder, 1993", "Dict. du Coran / M. A. Amir-Moezzi, 2007"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les documents sur le jeûne comme pratique religieuse. Les documents sur le jeûne pratiqué dans un but hygiénique ou thérapeutique se trouvent sous Diète", "Peut se subdiviser par religion, confession ou secte"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ascèse"}, {"authorized_access_point": "Ascétisme"}], "related": [{"authorized_access_point": "Carême"}, {"authorized_access_point": "Diète"}, {"authorized_access_point": "Grèves de la faim"}, {"authorized_access_point": "Pénitence"}, {"authorized_access_point": "Vrata"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Jeûne - Islam"}, {"authorized_access_point": "Jeûne fédéral"}, {"authorized_access_point": "Respirianisme"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85047403", "source": "LCSH"}, "authorized_access_point": "Fasting"}, {"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2003003108", "source": "LCSH"}, "authorized_access_point": "Fasting -- Religious aspects"}, {"source": "RVMLaval", "authorized_access_point": "Jeûne"}, {"source": "RVMLaval", "authorized_access_point": "Jeûne -- Aspect religieux"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027235548", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119321545", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Jeûne - Aspect religieux", "Jeûne religieux"], "authorized_access_point": "Jeûne"} 1 -2023-08-08 13:37:37.472766 2023-08-08 13:37:37.47277 24764221-a437-40ab-92f2-81709d3cd66a {"md5": "ed278d06425b22322bab28cde431bee3", "pid": "027236226", "note": [{"label": ["Encycl. universalis - http://www.universalis-edu.com (2019-04-19)", "Dict. des sciences du langage / F. Neveu, 2011", "Dict. de linguistique et des sciences du langage, 1994", "Nouveau dict. encyclopédique des sciences du langage / O. Ducrot, J.-M. Schaeffer, 1995"], "noteType": "dataSource"}, {"label": ["Processus de perception et de production du langage chez l'enfant"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Biolinguistique"}, {"authorized_access_point": "Neurolinguistique"}, {"authorized_access_point": "Psycholinguistique"}, {"authorized_access_point": "Psychologie de l'apprentissage"}], "related": [{"authorized_access_point": "Acquisition linguistique"}, {"authorized_access_point": "Enfants - Langage"}, {"authorized_access_point": "Langage"}, {"authorized_access_point": "Langage - Compréhension"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Innéisme (linguistique)"}, {"authorized_access_point": "Reconnaissance des mots"}, {"authorized_access_point": "Tableaux d'élocution"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85074511", "source": "LCSH"}, "authorized_access_point": "Language acquisition"}, {"source": "RVMLaval", "authorized_access_point": "Langage -- Acquisition"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027236226", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11932215j", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}, {"type": "bf:ClassificationDdc", "classificationPortion": "401"}], "variant_access_point": ["Apprentissage verbal", "Enfants - Langage -- Acquisition", "Langage - Acquisition", "Langage - Apprentissage", "Langue maternelle, Acquisition de la"], "authorized_access_point": "Acquisition du langage"} 1 -2023-08-08 13:37:37.519422 2023-08-08 13:37:37.519424 ffb81954-7944-4fd0-8837-c7be39605ac6 {"md5": "e063396caed42ca1b11fdc3957dafad3", "pid": "027243087", "note": [{"label": ["Trésor de la langue française : rythmanalyse - http://atilf.atilf.fr (2022-04-06)", "Vocabulaire d'esthétique / É. Souriau, 1990", "Les notions philosophiques / S. Auroux, 1990", "Dict. de la linguistique / G. Mounin, 1974", "Dict. de linguistique et des sciences du langage, 1994", "Dict. de rhétorique et de poétique / M. Aquin, G. Molinié, 1999", "Dict. des termes littéraires, 2005"], "noteType": "dataSource"}, {"label": ["S'emploie également en subdivision. Cette subdivision s'applique aux langues vivantes, par ex. : Français (langue) -- Rythme"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Métrique et rythmique aux langues anciennes, par ex. : Grec (langue) -- Métrique et rythmique"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Esthétique"}, {"authorized_access_point": "Poétique"}, {"authorized_access_point": "Prosodie (linguistique)"}], "related": [{"authorized_access_point": "Métrique et rythmique"}, {"authorized_access_point": "Mouvement (esthétique)"}, {"authorized_access_point": "Musique - Mesure et rythme"}, {"authorized_access_point": "Répétition (esthétique)"}, {"authorized_access_point": "Versification"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85074534", "source": "LCSH"}, "authorized_access_point": "Language and languages--Rhythm"}, {"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00007545", "source": "LCSH"}, "authorized_access_point": "Rhythm"}, {"source": "RVMLaval", "authorized_access_point": "Langage et langues--Rythme"}, {"source": "RVMLaval", "authorized_access_point": "Rythme"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027243087", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11932811t", "source": "BNF"}], "classification": [{"name": "Philosophie", "type": "bf:ClassificationDdc", "classificationPortion": "100"}, {"type": "bf:ClassificationDdc", "classificationPortion": "401"}, {"name": "Arts", "type": "bf:ClassificationDdc", "classificationPortion": "700"}, {"name": "Poésie", "type": "bf:ClassificationDdc", "classificationPortion": "801"}], "variant_access_point": ["Rythmanalyse", "Rythme (esthétique)", "Rythme (linguistique)", "Rythme (poétique)", "Rythmique"], "authorized_access_point": "Rythme"} 1 -2023-08-08 13:37:37.57534 2023-08-08 13:37:37.575344 a3b6ade6-9b94-47c7-bd98-553c6e5f5a8a {"md5": "d6f62c7c5e68e1af29b37017fe8f3651", "pid": "027246655", "note": [{"label": ["Les notions philosophiques / S. Auroux, 1990", "Encycl. de la philosophie, 2002", "Grand dict. de la philosophie / M. Blay, 2003", "Dict. de philosophie / C. Godin, 2004"], "noteType": "dataSource"}, {"label": ["S'emploie également en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Philosophie - 20e siècle"}], "related": [{"authorized_access_point": "Anthropologie phénoménologique"}, {"authorized_access_point": "Chair (philosophie)"}, {"authorized_access_point": "Phénoménologie de l'art"}, {"authorized_access_point": "Phénoménologie et littérature"}, {"authorized_access_point": "Phénoménologie et musique"}, {"authorized_access_point": "Psychologie phénoménologique"}, {"authorized_access_point": "Sociologie et phénoménologie"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85046373", "source": "LCSH"}, "authorized_access_point": "Existential phenomenology"}, {"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85100683", "source": "LCSH"}, "authorized_access_point": "Phenomenology"}, {"source": "RVMLaval", "authorized_access_point": "Phénoménologie"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027246655", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11933094c", "source": "BNF"}], "classification": [{"name": "Philosophie", "type": "bf:ClassificationDdc", "classificationPortion": "100"}], "variant_access_point": ["Contribution à la phénoménologie", "Phénoménologie existentielle", "Phénoménologie transcendantale", "Philosophie phénoménologique"], "authorized_access_point": "Phénoménologie"} 1 -2023-08-08 13:37:37.830993 2023-08-08 13:37:37.830996 6386658a-b2b6-4041-9285-049b23e86833 {"md5": "5f605d4f6998394e05e4863417bdbe20", "pid": "027328295", "note": [{"label": ["Cent ans de méthodes de lecture / C. Juanéda-Albarède, 1998"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Lecture - Étude et enseignement"}], "related": [{"authorized_access_point": "Lecture - Enseignement assisté par ordinateur"}, {"authorized_access_point": "Lecture - Étude et enseignement (primaire)"}, {"authorized_access_point": "Tableaux d'élocution"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Lecture - Méthode analytique"}, {"authorized_access_point": "Lecture - Méthode mixte"}, {"authorized_access_point": "Lecture - Méthode synthétique"}, {"authorized_access_point": "Jeux de lecture"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85111662", "source": "LCSH"}, "authorized_access_point": "Reading"}, {"source": "RVMLaval", "authorized_access_point": "Lecture"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027328295", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11939438f", "source": "BNF"}], "classification": [{"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}, {"type": "bf:ClassificationDdc", "classificationPortion": "401"}], "variant_access_point": ["Méthodes d'apprentissage de la lecture", "Méthodes de lecture"], "authorized_access_point": "Lecture - Méthodes d'apprentissage"} 1 -2023-08-08 13:37:37.635909 2023-08-08 13:37:37.635913 cfd2fa00-c337-495e-aaec-4c186b4f7876 {"md5": "d2214f3706c427c56628cda6898c7d4e", "pid": "027256251", "note": [{"label": ["Grand Larousse universel", "Encycl. universalis, 1989", "Dict. sanskrit-français / N. Stchoupak, L. Nitti, L. Renou, 1972", "L'Inde classique : manuel des études indiennes. Tome 2 / L. Renou, J. Filliozat, 1952 (§ 1445-1459)", "Dict. de la civilisation indienne / L. Frédéric, 1987", "Les notions philosophiques / S. Auroux, 1990", "Dict. de la sagesse orientale, 1995", "La philosophie indienne / F. Chenet, 1998", "Les philosophies de l'Inde / J. Filliozat, 2006", "BnF Service indien, 2017-05-15"], "noteType": "dataSource"}, {"label": ["\\"Fait de lier, de mettre au joug ; jonction\\" ; discipline spirituelle ; école de philosophie hindoue", "Sous cette vedette, on trouve les documents sur le yoga en général et en tant que doctrine formant l'un des six systèmes philosophiques (darśana) reconnus par l'orthodoxie brahmanique. Les documents sur le yoga physique qui privilégie les exercices de postures et de respiration se trouvent sous Hatha-yoga"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Philosophie hindoue"}], "related": [{"authorized_access_point": "Christianisme et yoga"}, {"authorized_access_point": "Méditation - Hindouisme"}, {"authorized_access_point": "Yogis"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Hatha-yoga"}, {"authorized_access_point": "Jñāna-yoga"}, {"authorized_access_point": "Karma-yoga"}, {"authorized_access_point": "Kriyā-yoga"}, {"authorized_access_point": "Laya-yoga"}, {"authorized_access_point": "Rāja-yoga"}, {"authorized_access_point": "Siddha Yoga"}, {"authorized_access_point": "Swara-yoga"}, {"authorized_access_point": "Yoga nidra"}, {"authorized_access_point": "Yoga tantrique"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85149174", "source": "LCSH"}, "authorized_access_point": "Yoga"}, {"source": "RVMLaval", "authorized_access_point": "Yoga"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027256251", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11933824d", "source": "BNF"}], "classification": [{"name": "Philosophie", "type": "bf:ClassificationDdc", "classificationPortion": "100"}, {"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Yoga - Aspect religieux"], "authorized_access_point": "Yoga"} 1 -2023-08-08 13:37:37.690248 2023-08-08 13:37:37.690252 ba76549e-5f28-40bd-8b9e-bdfe59670832 {"md5": "7f61058f216df78b1cc41c9e52ec2471", "pid": "027287289", "note": [{"label": ["S'emploie également en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Mariage"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Conciliation (divorce)"}, {"authorized_access_point": "Divorcés"}, {"authorized_access_point": "Enfants de divorcés"}, {"authorized_access_point": "Remariage"}, {"authorized_access_point": "Répudiation"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85038616", "source": "LCSH"}, "authorized_access_point": "Divorce"}, {"source": "RVMLaval", "authorized_access_point": "Divorce"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027287289", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11936233f", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}], "variant_access_point": ["Démariage", "Dissolution du mariage", "Mariage - Dissolution"], "authorized_access_point": "Divorce"} 1 -2023-08-08 13:37:37.738085 2023-08-08 13:37:37.738089 2715cfbd-d469-4ed6-bfba-d9faf31e435c {"md5": "c36ae06c89d379f470125bd7b1dc8cf7", "pid": "027294358", "note": [{"label": ["Grand Larousse universel", "Encycl. universalis - http://www.universalis-edu.com (2013-10-24)", "Dict. universel des littératures / B. Didier, 1994", "Dict. des termes littéraires, 2005 : beat"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Contre-culture"}, {"authorized_access_point": "Mouvements littéraires - États-Unis"}, {"authorized_access_point": "Littérature américaine - 1945-2000"}], "related": [{"authorized_access_point": "Cut-up"}, {"authorized_access_point": "Psychédélisme"}, {"authorized_access_point": "Spoken word (poésie)"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh88007452", "source": "LCSH"}, "authorized_access_point": "Beat generation"}, {"source": "RVMLaval", "authorized_access_point": "Beat generation"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027294358", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11936777f", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Poésie", "type": "bf:ClassificationDdc", "classificationPortion": "801"}], "variant_access_point": ["Beatniks", "Génération beat"], "authorized_access_point": "Beat generation"} 1 -2023-08-08 13:37:37.784705 2023-08-08 13:37:37.784708 5c4676d3-8ef4-4d31-96fa-dab230df8905 {"md5": "ac666da0dce8ee13821ae5154f6b6895", "pid": "02730440X", "note": [{"label": ["Trésor de la langue française", "Dict. encyclopédique des sciences du langage / O. Ducrot, T. Todorov, 1972", "Dict. de linguistique et des sciences du langage, 1994"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Discours (linguistique)"}, {"authorized_access_point": "Pragmatique"}], "related": [{"authorized_access_point": "Actes de langage"}, {"authorized_access_point": "Actualisation (linguistique)"}, {"authorized_access_point": "Deixis"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Consignes (éducation)"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Énonciation (linguistique)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02730440X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11937549w", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "401"}], "variant_access_point": ["Linguistique de l'énonciation", "Linguistique énonciative"], "authorized_access_point": "Énonciation (linguistique)"} 1 -2023-08-08 13:37:38.814637 2023-08-08 13:37:38.814639 d75cb1aa-6ca9-42b9-b90a-e9497d4fab0b {"md5": "bbd11b5f4fb23abfec48cd81c8b9598c", "pid": "02770940X", "note": [{"label": ["Grand Larousse universel", "Nouveau petit Robert 2008"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bijoux"}], "related": [{"authorized_access_point": "Montres-bracelets"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Bracelets brésiliens"}, {"authorized_access_point": "Bracelets préhistoriques"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85016233", "source": "LCSH"}, "authorized_access_point": "Bracelets"}, {"source": "RVMLaval", "authorized_access_point": "Bracelets"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02770940X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11969386n", "source": "BNF"}], "classification": [{"name": "Dessin, arts décoratifs, artisanat d'art", "type": "bf:ClassificationDdc", "classificationPortion": "740"}], "authorized_access_point": "Bracelets (bijoux)"} 1 -2023-08-08 13:37:37.885557 2023-08-08 13:37:37.885561 9abb3632-b40d-4c2c-99ba-354baccb7ddf {"md5": "4af248718ed5499456ada7e538b2e087", "pid": "027354431", "note": [{"label": ["Le corps, l'âme, l'esprit : introduction à une anthropologie phénoménologique / C. A. van Peursen, 1979", "Corps, âme, esprit : colloque international, Cerisy-la-Salle, 1999", "Le corps et l'esprit / R. Quilliot, 2003", "Grand dict. de la philosophie / M. Blay, 2003 (art. : Corps)"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les documents sur la relation entre l'esprit et le corps, conçus comme substances métaphysiques. Les documents sur le concept métaphysique d'esprit se trouvent sous Esprit. Les documents sur l'étude contemporaine des phénomènes mentaux, associant philosophie et recherche scientifique, se trouvent sous Philosophie de l'esprit"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Métaphysique"}, {"authorized_access_point": "Philosophie de l'homme"}], "related": [{"authorized_access_point": "Chair (philosophie)"}, {"authorized_access_point": "Corps (philosophie)"}, {"authorized_access_point": "Esprit"}, {"authorized_access_point": "Guérison par l'esprit"}, {"authorized_access_point": "Médecine holistique"}, {"authorized_access_point": "Médecine psychosomatique"}, {"authorized_access_point": "Occasionnalisme"}, {"authorized_access_point": "Parapsychologie"}, {"authorized_access_point": "Philosophie de l'esprit"}, {"authorized_access_point": "Phrénologie"}, {"authorized_access_point": "Psychiatrie biologique"}, {"authorized_access_point": "Psychophysiologie"}, {"authorized_access_point": "Spiritualisme"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Esprit et cerveau"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85085488", "source": "LCSH"}, "authorized_access_point": "Mind and body"}, {"source": "RVMLaval", "authorized_access_point": "Esprit et corps"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027354431", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11941447p", "source": "BNF"}], "classification": [{"name": "Philosophie", "type": "bf:ClassificationDdc", "classificationPortion": "100"}], "variant_access_point": ["Âme et corps", "Corps et âme", "Corps et esprit"], "authorized_access_point": "Esprit et corps"} 1 -2023-08-08 13:37:37.961781 2023-08-08 13:37:37.961784 98baff3c-7e31-4f88-825c-7b6d563e9e0b {"md5": "d2f52ba71d463ec6faf99465b88ff0d3", "pid": "027366669", "note": [{"label": ["Grand Larousse universel", "Encycl. universalis : hassidisme moderne - http://www.universalis-edu.com (2016-04-06)", "Dict. encycl. du judaïsme / G. Wigoder, 1993"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les documents sur le courant mystique juif moderne fondé au 18e siècle en Podolie par le Baal Chem Tov. Les documents sur le courant mystique juif médiéval se trouvent sous Hassidisme médiéval. Les documents sur la secte juive - et ses membres - née au 4e-3e siècle avant J.-C. se trouvent sous Hassidéens"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sectes juives"}], "related": [{"authorized_access_point": "Hassidim"}, {"authorized_access_point": "Hassidisme médiéval"}, {"authorized_access_point": "Judaïsme ultra-orthodoxe"}, {"authorized_access_point": "Mitnagdim"}, {"authorized_access_point": "Mystique - Judaïsme"}, {"authorized_access_point": "Légendes hassidiques"}, {"authorized_access_point": "Littérature hassidique"}, {"authorized_access_point": "Nigunim"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Dix-neuf de Kislev"}, {"authorized_access_point": "Habad"}, {"authorized_access_point": "Hassidim de Bobova"}, {"authorized_access_point": "Hassidim de Bratslav"}, {"authorized_access_point": "Hassidim de Gour"}, {"authorized_access_point": "Hassidim de Grodzisk"}, {"authorized_access_point": "Hassidim de Karlin"}, {"authorized_access_point": "Hassidim de Kotzk"}, {"authorized_access_point": "Hassidim de Pshiskha"}, {"authorized_access_point": "Hassidim de Ropshits-Dzików"}, {"authorized_access_point": "Hassidim de Ruzhin"}, {"authorized_access_point": "Hassidim de Sadigura"}, {"authorized_access_point": "Hassidim de Satmar"}, {"authorized_access_point": "Hassidim de Skvira"}, {"authorized_access_point": "Hassidim de Tchernobyl"}, {"authorized_access_point": "Hassidim de Zanz"}, {"authorized_access_point": "Hassidim de Zolochev"}, {"authorized_access_point": "Saddikim"}, {"authorized_access_point": "Shomer Emunim"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85059241", "source": "LCSH"}, "authorized_access_point": "Hasidism"}, {"source": "RVMLaval", "authorized_access_point": "Hassidisme"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027366669", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119423798", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Chassidisme", "Dynasties hassidiques", "H̲asidout", "Hassidisme moderne", "Mouvement hassidique"], "authorized_access_point": "Hassidisme"} 1 -2023-08-08 13:37:38.044609 2023-08-08 13:37:38.044612 ef11c0c0-edb0-4216-919e-a43bf2aee518 {"md5": "fdec54c0472a9b570efc188c04de5351", "pid": "027389782", "note": [{"label": ["Les métiers de la mer / N. Deladieu, E. Pierre, 2004", "Guide des métiers de la mer : 100 métiers pour demain / Association pour la promotion des métiers de la mer, 2003 [ressource électronique]"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mer et civilisation"}, {"authorized_access_point": "Métiers"}], "related": [{"authorized_access_point": "Mer"}, {"authorized_access_point": "Plongeurs sous-marins"}, {"authorized_access_point": "Ressources marines"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Armateurs"}, {"authorized_access_point": "Charpentiers de marine"}, {"authorized_access_point": "Gardiens de phare"}, {"authorized_access_point": "Goémoniers"}, {"authorized_access_point": "Marins"}, {"authorized_access_point": "Océanographes"}, {"authorized_access_point": "Paludiers"}, {"authorized_access_point": "Pêcheurs"}, {"authorized_access_point": "Prud'homies de pêche"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Métiers de la mer"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027389782", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119442304", "source": "BNF"}], "classification": [{"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}], "variant_access_point": ["Mer, Métiers de la", "Ressources marines - Orientation professionnelle", "Travailleurs de la mer"], "authorized_access_point": "Métiers de la mer"} 1 -2023-08-08 13:37:38.138792 2023-08-08 13:37:38.138796 b6fbfec4-1100-44ca-bb94-e7a0ca002052 {"md5": "2f7b62eb1d92a80d9aad031883361398", "pid": "027430162", "note": [{"label": ["Mémoire et compréhension du langage / M.-F. Ehrlich, 1994", "Psychologie de la compréhension du langage / J.-P. Rossi, 2009", "The process of language understanding / G. B. Flores d'Arcais, R. J. Jarvella, 1995"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Compréhension"}, {"authorized_access_point": "Psycholinguistique"}], "related": [{"authorized_access_point": "Consignes (éducation)"}, {"authorized_access_point": "Acquisition du langage"}, {"authorized_access_point": "Langage"}, {"authorized_access_point": "Sémantique et psychologie"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Intercompréhension (linguistique)"}, {"authorized_access_point": "Reconnaissance des mots"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85126440", "source": "LCSH"}, "authorized_access_point": "Speech, Intelligibility of"}, {"source": "RVMLaval", "authorized_access_point": "Langage--Intelligibilité"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027430162", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11947331g", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}, {"type": "bf:ClassificationDdc", "classificationPortion": "401"}], "variant_access_point": ["Compréhension de la parole", "Compréhension des langues", "Compréhension du langage", "Langage - Intelligibilité", "Langues - Compréhension", "Parole - Compréhension"], "authorized_access_point": "Langage - Compréhension"} 1 -2023-08-08 13:37:38.874858 2023-08-08 13:37:38.874863 ef8f49c4-98d4-4e5a-af45-fdb916daf346 {"md5": "28eb1ee05b8e00d06f2d9cf3f851ed01", "pid": "027741060", "note": [{"label": ["Lexique de politique Dalloz, 1992", "Lexique des termes juridiques Dalloz 2015-2016 / S. Guinchard, T. Debard, 2015 (art. : Délégation de pouvoir) : délégation de pouvoir (droit administratif)"], "noteType": "dataSource"}, {"label": ["Acte par lequel un organe transfère une partie de ses compétences à un autre organe"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Droit administratif"}, {"authorized_access_point": "Droit constitutionnel"}, {"authorized_access_point": "Science politique"}], "related": [{"authorized_access_point": "Missi dominici"}, {"authorized_access_point": "Séparation des pouvoirs"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Délégation législative"}, {"authorized_access_point": "Pouvoirs exceptionnels"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85036563", "source": "LCSH"}, "authorized_access_point": "Delegation of powers"}, {"source": "RVMLaval", "authorized_access_point": "Délégation des pouvoirs (Droit administratif)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027741060", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb133189868", "source": "BNF"}], "classification": [{"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}], "variant_access_point": ["Délégation (science politique)", "Délégation de compétence (science politique)", "Délégation des pouvoirs (droit administratif)", "Délégations de pouvoir administratif", "Délégations de signature"], "authorized_access_point": "Délégation des pouvoirs (science politique)"} 1 -2023-08-08 13:37:38.238732 2023-08-08 13:37:38.238736 b4d49233-7c96-4c4d-ac16-c339f1dabd38 {"md5": "219dd52d0c5f224379cd589be5877c81", "pid": "027488462", "note": [{"label": ["Trésor de la langue française", "Dict. Jésus / École biblique et archéologique française de Jérusalem, 2021 (art. : Union hypostatique ; art. : Communication des idiomes)", "Les mots du christianisme / Le Tourneau, 2005 (art. : Union hypostatique ; art. : Communication des idiomes)", "L'union avec Christ chez Calvin / S. K. Kim, 2013 [thèse] - https://tel.archives-ouvertes.fr (2022-05-17)"], "noteType": "dataSource"}, {"label": ["En la personne du Christ se trouvent unies la nature divine et la nature humaine : c'est l'union hypostatique ; les propriétés relatives à chacune de ces deux natures du Christ entrent en communication à travers sa personne"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Incarnation (christianisme)"}, {"authorized_access_point": "Périchorèse"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85063813", "source": "LCSH"}, "authorized_access_point": "Hypostatic union"}, {"source": "RVMLaval", "authorized_access_point": "Union hypostatique"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027488462", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11951728f", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Communication des attributs", "Communication des idiomes", "Communication des propriétés", "Communicatio idiomatum"], "authorized_access_point": "Union hypostatique"} 1 -2023-08-08 13:37:38.327061 2023-08-08 13:37:38.327065 60f21845-3787-4928-98bb-4ab3645602a9 {"md5": "d88d4f6786871f4b7a24054cbcf6c5dd", "pid": "02750610X", "note": [{"label": ["S'emploie également en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Documentation technique"}, {"authorized_access_point": "Machines"}, {"authorized_access_point": "Produits industriels"}, {"authorized_access_point": "Propriété industrielle"}], "related": [{"authorized_access_point": "Concurrence déloyale"}, {"authorized_access_point": "Dessins et modèles"}, {"authorized_access_point": "Inventions"}, {"authorized_access_point": "Savoir-faire industriel"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Échanges de brevets d'invention et d'information technique"}, {"authorized_access_point": "Marques de commerce"}, {"authorized_access_point": "Obtentions végétales (droit)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85098655", "source": "LCSH"}, "authorized_access_point": "Patents"}, {"source": "RVMLaval", "authorized_access_point": "Brevets d'invention"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02750610X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13318750q", "source": "BNF"}], "classification": [{"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}], "variant_access_point": ["Brevets (droit commercial)", "Certificats d'addition", "Certificats d'utilité", "Délivrance de brevet", "Dépôt de brevet", "Modèles d'utilité"], "authorized_access_point": "Brevets d'invention"} 1 -2023-08-08 13:37:38.417317 2023-08-08 13:37:38.417322 f28ed9bd-c6b8-457d-b67e-f2713b5f4242 {"md5": "b6a2bec14f8bd1a4226a1f818d649e05", "pid": "027510387", "note": [{"label": ["Dict. de la préhistoire / Encycl. universalis, 1999 (art. : Europe néolithique et protohistorique (art) ; Europe paléolithique (sépultures))", "Dict. de la préhistoire / A. Leroi-Gourhan, 1994 : objets de parure", "La préhistoire / D. Vialou, 2004 : parure"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Antiquités préhistoriques"}, {"authorized_access_point": "Art préhistorique"}, {"authorized_access_point": "Bijoux"}], "related": [{"authorized_access_point": "Orfèvrerie préhistorique"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Bracelets préhistoriques"}, {"authorized_access_point": "Fibules"}, {"authorized_access_point": "Torques"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85070226", "source": "LCSH"}, "authorized_access_point": "Jewelry, Prehistoric"}, {"source": "RVMLaval", "authorized_access_point": "Bijoux préhistoriques"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027510387", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119534539", "source": "BNF"}], "classification": [{"name": "Dessin, arts décoratifs, artisanat d'art", "type": "bf:ClassificationDdc", "classificationPortion": "740"}, {"name": "Préhistoire et histoire ancienne", "type": "bf:ClassificationDdc", "classificationPortion": "930"}], "variant_access_point": ["Bijoux - Préhistoire", "Bijoux de la préhistoire", "Parures préhistoriques", "Pendeloques préhistoriques"], "authorized_access_point": "Bijoux préhistoriques"} 1 -2023-08-08 13:37:38.484189 2023-08-08 13:37:38.484196 b04286af-15e1-48c9-b86e-9758c3b008eb {"md5": "2c8e61ff74e0200b11c2a97449bb2a93", "pid": "027599701", "note": [{"label": ["Grand Larousse universel", "Grand Robert de la langue française, 2001", "Dict. encylopédique des sciences de l'information et de la communication / B. Lamizet, A. Silem, 1997 (art. : Radio)"], "noteType": "dataSource"}, {"label": ["Diffusion au moyen d'ondes radioélectriques, d'émissions de radio ou de télévision destinées au public", "S'emploie également en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Médias audiovisuels"}, {"authorized_access_point": "Télécommunications"}], "related": [{"authorized_access_point": "Femmes dans l'industrie de la radiodiffusion"}, {"authorized_access_point": "Journalisme radiophonique"}, {"authorized_access_point": "Politique de la radiodiffusion"}, {"authorized_access_point": "Radiodiffusion des débats"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Publicité radiophonique"}, {"authorized_access_point": "Radio"}, {"authorized_access_point": "Radio - Émetteurs et transmission"}, {"authorized_access_point": "Radio numérique"}, {"authorized_access_point": "Radiodiffusion en modulation de fréquence"}, {"authorized_access_point": "Radiodiffusion en ondes décamétriques"}, {"authorized_access_point": "Radiodiffusion internationale"}, {"authorized_access_point": "Radiofréquences"}, {"authorized_access_point": "Télévision"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Radiodiffusion"}, {"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85110448", "source": "LCSH"}, "authorized_access_point": "Radio broadcasting"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027599701", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119604993", "source": "BNF"}], "classification": [{"name": "Sciences de l'information", "type": "bf:ClassificationDdc", "classificationPortion": "020"}, {"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Audiovisuel", "type": "bf:ClassificationDdc", "classificationPortion": "791"}], "variant_access_point": ["Dans l'industrie de la radiodiffusion", "Diffusion radiophonique", "Industrie de la radiodiffusion", "Radio-diffusion", "Radiocommunication à usage public", "Radiocommunications à usage public", "Radiodiffusion - Industrie et commerce", "Radiophonie", "Réseaux de radiodiffusion"], "authorized_access_point": "Radiodiffusion"} 1 -2023-08-08 13:37:40.460464 2023-08-08 13:37:40.46047 228eb790-1a84-426d-ae8b-35816fbf4425 {"md5": "4e0ecdf71a2ea0fc4547416754fe58fc", "pid": "029560020", "note": [{"label": ["S'emploie uniquement en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Hommes politiques"}, {"authorized_access_point": "Constitutions"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029560020", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb121160279", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "305"}, {"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}], "variant_access_point": ["Rédacteurs"], "authorized_access_point": "Rédacteurs (droit)"} 1 -2023-08-08 13:37:38.554189 2023-08-08 13:37:38.554192 48dc1eab-56df-4e20-99d4-2080c2d418a7 {"md5": "6e13625f1698d806350b3a56545c78f8", "pid": "027652254", "note": [{"label": ["Grand Robert de la langue française, 2001", "Trésor de la langue française"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Patronnage (couture)"}], "related": [{"authorized_access_point": "Vêtements - Coupe"}], "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85039519", "source": "LCSH"}, "authorized_access_point": "Dressmaking--Patterns"}, {"source": "RVMLaval", "authorized_access_point": "Couture (Profession) -- Modèles"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027652254", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119648697", "source": "BNF"}], "classification": [{"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}, {"name": "Economie domestique, hôtellerie", "type": "bf:ClassificationDdc", "classificationPortion": "640"}], "variant_access_point": ["Patrons de couture", "Patrons de vêtements"], "authorized_access_point": "Patrons (couture)"} 1 -2023-08-08 13:37:38.622111 2023-08-08 13:37:38.622115 9a705760-060e-4c6e-ab0e-b22b54d8357f {"md5": "edc45e3c869b725286942327e2428f86", "pid": "027661504", "note": [{"label": ["Les notions philosophiques / S. Auroux, 1990", "Encycl. de la philosophie, 2002", "Grand dict. de la philosophie / M. Blay, 2003", "Dict. de philosophie / C. Godin, 2004"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Philosophie de l'homme"}, {"authorized_access_point": "Philosophie de la nature"}], "related": [{"authorized_access_point": "Âme"}, {"authorized_access_point": "Corps"}, {"authorized_access_point": "Corps humain"}, {"authorized_access_point": "Désir (philosophie)"}, {"authorized_access_point": "Esprit et corps"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Chair (philosophie)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85015235", "source": "LCSH"}, "authorized_access_point": "Human body (Philosophy)"}, {"source": "RVMLaval", "authorized_access_point": "Corps humain (Philosophie)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027661504", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11965587k", "source": "BNF"}], "classification": [{"name": "Philosophie", "type": "bf:ClassificationDdc", "classificationPortion": "100"}], "variant_access_point": ["Corps - Philosophie", "Corps humain - Philosophie", "Corps humain (philosophie)"], "authorized_access_point": "Corps (philosophie)"} 1 -2023-08-08 13:37:38.669219 2023-08-08 13:37:38.669222 90bf29e4-14ae-4ede-b9d6-2fae39e72794 {"md5": "47bcc613c99f4492a0b818ddb15e7007", "pid": "027675823", "note": [{"label": ["Grand Larousse universel", "Les langues du monde / M. Sala, I. Vintila-Radulescu, 1984", "L'aventure des langues en Occident / H. Walter, 1994", "L'aménagement linguistique dans le monde : luxembourgeois ; francique luxembourgeois - http://www.tlfq.ulaval.ca (2009-01-08)", "Redde-n-ihr Plàtt? : francique luxembourgeois - http://projetbabel.org (2009-01-08)", "Ethnologue (15th ed.) - http://www.ethnologue.com (2006-09-12)"], "noteType": "dataSource"}, {"label": ["Dialecte allemand parlé dans le grand-duché de Luxembourg. Il s'est développé à partir du francique mosellan"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Dialectes franciques"}], "related": [{"authorized_access_point": "Dictionnaires luxembourgeois"}, {"authorized_access_point": "Francique mosellan (dialecte)"}, {"authorized_access_point": "Chansons luxambourgeoises"}, {"authorized_access_point": "Littérature luxembourgeoise"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2003005414", "source": "LCSH"}, "authorized_access_point": "Luxembourgish language"}, {"source": "RVMLaval", "authorized_access_point": "Luxembourgeois (langue)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027675823", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119667950", "source": "BNF"}], "classification": [{"name": "Langues et linguistique", "type": "bf:ClassificationDdc", "classificationPortion": "400"}], "variant_access_point": ["Allemand (langue) - Dialectes - Luxembourg", "Francique luxembourgeois (langue)", "Letzburgisch (langue)", "Lëtzebuergesch (langue)", "Luxemburgisch (langue)"], "authorized_access_point": "Luxembourgeois (langue)"} 1 -2023-08-08 13:37:38.720403 2023-08-08 13:37:38.720406 ea6db838-8cc7-42fb-8fcb-ea9c8867400a {"md5": "e1e888afbb27bd73c4f6198f5c0158d2", "pid": "027688739", "note": [{"label": ["S'emploie également en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Commerce extérieur - Droit"}, {"authorized_access_point": "Concurrence internationale"}, {"authorized_access_point": "Politique commerciale"}, {"authorized_access_point": "Traités"}], "related": [{"authorized_access_point": "Commerce"}, {"authorized_access_point": "Réciprocité (droit)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Accords commerciaux préférentiels"}, {"authorized_access_point": "Accords internationaux sur les licences"}, {"authorized_access_point": "Clause de la nation la plus favorisée"}, {"authorized_access_point": "Traitement national (droit international)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99001405", "source": "LCSH"}, "authorized_access_point": "Commercial treaties"}, {"source": "RVMLaval", "authorized_access_point": "Accords commerciaux"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027688739", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119677659", "source": "BNF"}], "classification": [{"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}], "variant_access_point": ["Accords économiques", "Accords tarifaires", "Commerce extérieur - Accords", "Conventions commerciales", "Traités commerciaux", "Traités de commerce"], "authorized_access_point": "Accords commerciaux"} 1 -2023-08-08 13:37:38.767363 2023-08-08 13:37:38.767366 660a5aeb-ae05-4151-b483-6121a347c9fd {"md5": "616e32f9ccaf4a0d42c287bb0463738e", "pid": "027699870", "note": [{"label": ["Sous cette vedette, on trouve les recueils de littérature araméenne de divers genres"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature sémitique"}], "related": [{"authorized_access_point": "Araméen (langue)"}, {"authorized_access_point": "Philologie araméenne"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Littérature populaire araméenne"}, {"authorized_access_point": "Littérature syriaque"}, {"authorized_access_point": "Poésie araméenne"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85006406", "source": "LCSH"}, "authorized_access_point": "Aramaic literature"}, {"source": "RVMLaval", "authorized_access_point": "Littérature araméenne"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027699870", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11968617d", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Littérature araméenne"} 1 -2023-08-08 13:37:38.956127 2023-08-08 13:37:38.956131 942230ad-9848-4f2a-8f3e-7010577ca49b {"md5": "6457a0bb137ac5f26cd7b7b05ea2939a", "pid": "027741125", "note": [{"label": ["Dict. des synonymes et mots de sens voisin / B. du Chazaud, 2003", "Vocabulaire juridique / G. Cornu, 2007", "Lexique des termes juridiques 2015-2016 / S. Guinchard, T. Debard, 2015", "Petit dict. du droit canonique / J. Werckmeister, 1993 : Déposition"], "noteType": "dataSource"}, {"label": ["S'emploie également en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hommes d'État"}, {"authorized_access_point": "Hommes politiques - Responsabilité pénale"}], "related": [{"authorized_access_point": "Crimes et délits politiques"}, {"authorized_access_point": "Parlements (tribunaux)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Révocation populaire"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85064607", "source": "LCSH"}, "authorized_access_point": "Impeachments"}, {"source": "RVMLaval", "authorized_access_point": "Destitution, Procédure de"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027741125", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119719121", "source": "BNF"}], "classification": [{"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}], "variant_access_point": ["Chefs d'État - Destitution", "Déposition (droit)", "Destitution (droit constitutionnel)", "Destitution, Procédure de", "Hommes politiques - Destitution", "Impeachment", "Mise en accusation des chefs d'État", "Procédure de destitution"], "authorized_access_point": "Destitution"} 1 -2023-08-08 13:37:39.027674 2023-08-08 13:37:39.02768 cdbc2ed0-2a20-4a83-9c2e-81161b9aa4a7 {"md5": "320771ddc84efd97e99ddacbc4d1c197", "pid": "027765369", "note": [{"label": ["Wikipédia - https://fr.wikipedia.org (2022-07-21)", "A lexical atlas of the Hutsul dialects of the Ukrainian language, 1996", "One Europe, many nations : an historical dict. of European national groups / J.-B. Minahan, 2000 (art. : Carpatho-Rusyns) : Hutsuls"], "noteType": "dataSource"}, {"label": ["Population montagnarde vivant essentiellement dans la chaîne des Carpates ukrainiennes et dans les régions voisines de Ruthénie subcarpathique et de Bucovine septentrionale"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ruthènes"}], "related": [{"authorized_access_point": "Trombita"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Houtsoules"}, {"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85062771", "source": "LCSH"}, "authorized_access_point": "Hutsuls"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027765369", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119737855", "source": "BNF"}], "classification": [{"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "variant_access_point": ["Goutsoules", "Guculs", "Gutsules", "Gutsuls", "Gutzuls", "Hootzools", "Houtzoules", "Hucules", "Huculs", "Hutsules", "Hutsuls", "Hutzules", "Hutzuls", "Huzulen", "Huzules", "Huzuls"], "authorized_access_point": "Houtsoules"} 1 -2023-08-08 13:37:39.079256 2023-08-08 13:37:39.079258 8eb81f3a-e1f3-47d7-a724-2a288275f289 {"md5": "09a9aaccee376b61eda9a6d6bdc16363", "pid": "027785084", "note": [{"label": ["Grand Larousse universel", "Trésor de la langue française", "Nouveau petit Robert 2009"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Expression"}, {"authorized_access_point": "Parole"}], "related": [{"authorized_access_point": "Culture vocale"}, {"authorized_access_point": "Diction"}, {"authorized_access_point": "Prononciation"}, {"authorized_access_point": "Tableaux d'élocution"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Ventriloquie"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85042633", "source": "LCSH"}, "authorized_access_point": "Elocution"}, {"source": "RVMLaval", "authorized_access_point": "Élocution"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027785084", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11975298m", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "401"}], "variant_access_point": ["Articulation (élocution)", "Débit (élocution)"], "authorized_access_point": "Élocution"} 1 -2023-08-08 13:37:39.154519 2023-08-08 13:37:39.154523 b90bd685-3be0-45e4-8d8c-2023d72922f3 {"md5": "075f81db93526ddcf819cde9a136500c", "pid": "027805220", "note": [{"label": ["Encycl. universalis - http://www.universalis-edu.com (2018-03-21)", "Encycl. of African-American culture and history / C. A. Palmer, 2005"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les documents sur les citoyens noirs américains. Les documents sur les Noirs résidant aux États-Unis, toutes nationalités confondues, se trouvent sous des vedettes-matière telles que : Noirs -- États-Unis ; Noirs -- [Subdivision de sujet] -- États-Unis ; etc"], "noteType": "general"}, {"label": ["Voir aussi les vedettes du type : [Guerre] -- Noirs américains ; [Force armée] -- Noirs américains, par ex. : États-Unis -- 1861-1865 (Guerre de Sécession) -- Noirs américains", "Voir aussi la subdivision Et les noirs américains aux collectivités et aux personnes"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ethnologie - États-Unis"}, {"authorized_access_point": "Noirs"}], "related": [{"authorized_access_point": "Africains"}, {"authorized_access_point": "Allemands d'origine noire américaine"}, {"authorized_access_point": "Cuisine noire américaine"}, {"authorized_access_point": "Danse noire américaine"}, {"authorized_access_point": "Et les noirs américains"}, {"authorized_access_point": "Fonds spéciaux - Noirs américains"}, {"authorized_access_point": "Franc-maçonnerie noire américaine"}, {"authorized_access_point": "Humour noir américain"}, {"authorized_access_point": "Noirs américains - Conditions sociales"}, {"authorized_access_point": "Noirs américains - Droits"}, {"authorized_access_point": "Noirs américains - Histoire"}, {"authorized_access_point": "Noirs américains - Identité collective"}, {"authorized_access_point": "Noirs américains - Langues"}, {"authorized_access_point": "Noirs américains - Politique et gouvernement"}, {"authorized_access_point": "Noirs américains - Et les Africains"}, {"authorized_access_point": "Noirs américains - Et les Indiens d'Amérique"}, {"authorized_access_point": "Noirs américains - Et les Juifs"}, {"authorized_access_point": "Noirs américains - Religion"}, {"authorized_access_point": "Noirs américains dans la culture populaire"}, {"authorized_access_point": "Philosophie noire américaine"}, {"authorized_access_point": "Presse noire américaine"}, {"authorized_access_point": "Universités noires américaines"}, {"authorized_access_point": "Contes noirs américains"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Cow-boys noirs américains"}, {"authorized_access_point": "Abolitionnistes noirs américains"}, {"authorized_access_point": "Agriculteurs noirs américains"}, {"authorized_access_point": "Anciens combattants noirs américains"}, {"authorized_access_point": "Anthropologues noirs américains"}, {"authorized_access_point": "Artistes noirs américains"}, {"authorized_access_point": "Athlètes noirs américains"}, {"authorized_access_point": "Bibliothécaires noirs américains"}, {"authorized_access_point": "Boxeurs noirs américains"}, {"authorized_access_point": "Cadres noirs américains"}, {"authorized_access_point": "Catholiques noirs américains"}, {"authorized_access_point": "Clergé noir américain"}, {"authorized_access_point": "Coiffeurs noirs américains"}, {"authorized_access_point": "Communistes noirs américains"}, {"authorized_access_point": "Consommateurs noirs américains"}, {"authorized_access_point": "Courtepointiers noirs américains"}, {"authorized_access_point": "Criminels noirs américains"}, {"authorized_access_point": "Diplomates noirs américains"}, {"authorized_access_point": "Économistes noirs américains"}, {"authorized_access_point": "Écrivains noirs américains"}, {"authorized_access_point": "Enfants noirs américains"}, {"authorized_access_point": "Enseignants noirs américains"}, {"authorized_access_point": "Épiscopaliens noirs américains"}, {"authorized_access_point": "Étudiants noirs américains"}, {"authorized_access_point": "Familles noires américaines"}, {"authorized_access_point": "Gullahs"}, {"authorized_access_point": "Historiens noirs américains"}, {"authorized_access_point": "Hommes d'affaires noirs américains"}, {"authorized_access_point": "Hommes politiques noirs américains"}, {"authorized_access_point": "Homosexuels noirs américains"}, {"authorized_access_point": "Intellectuels noirs américains"}, {"authorized_access_point": "Inventeurs noirs américains"}, {"authorized_access_point": "Jeunesse noire américaine"}, {"authorized_access_point": "Joueurs de basket-ball noirs américains"}, {"authorized_access_point": "Journalistes noirs américains"}, {"authorized_access_point": "Juges noirs américains"}, {"authorized_access_point": "Juifs noirs américains"}, {"authorized_access_point": "Marins noirs américains"}, {"authorized_access_point": "Médecins noirs américains"}, {"authorized_access_point": "Méthodistes noirs américains"}, {"authorized_access_point": "Militaires noirs américains"}, {"authorized_access_point": "Militants politiques noirs américains"}, {"authorized_access_point": "Mineurs de charbon noirs américains"}, {"authorized_access_point": "Missionnaires noirs américains"}, {"authorized_access_point": "Mormons noirs américains"}, {"authorized_access_point": "Noires américaines"}, {"authorized_access_point": "Noirs américains dans la fonction publique"}, {"authorized_access_point": "Noirs américains dans les arts du spectacle"}, {"authorized_access_point": "Noirs américains dans les syndicats"}, {"authorized_access_point": "Noirs américains en milieu urbain"}, {"authorized_access_point": "Pêcheurs noirs américains"}, {"authorized_access_point": "Pentecôtistes noirs américains"}, {"authorized_access_point": "Pères noirs américains"}, {"authorized_access_point": "Pilotes de navire noirs américains"}, {"authorized_access_point": "Pionniers noirs américains"}, {"authorized_access_point": "Policiers noirs américains"}, {"authorized_access_point": "Politologues noirs américains"}, {"authorized_access_point": "Prisonniers noirs américains"}, {"authorized_access_point": "Propriétaires fonciers noirs américains"}, {"authorized_access_point": "Propriétaires noirs américains d'esclaves"}, {"authorized_access_point": "Scientifiques noirs américains"}, {"authorized_access_point": "Séminoles noirs"}, {"authorized_access_point": "Sociologues noirs américains"}, {"authorized_access_point": "Théologiens noirs américains"}, {"authorized_access_point": "Travailleurs sociaux noirs américains"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85001932", "source": "LCSH"}, "authorized_access_point": "African Americans"}, {"source": "RVMLaval", "authorized_access_point": "Noirs américains"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027805220", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119768348", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "305"}, {"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "variant_access_point": ["Africains-Américains", "Afro-Américains", "Américains d'origine africaine", "Américains noirs", "Américains originaires d'Afrique subsaharienne", "Négro-Américains"], "authorized_access_point": "Noirs américains"} 1 -2023-08-08 13:37:39.231318 2023-08-08 13:37:39.231321 1b0d280d-15af-4222-ab67-cfa75beed7f8 {"md5": "26e0692915bef6faeca25bf2dc4fd931", "pid": "027809781", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature italienne"}], "related": [{"authorized_access_point": "Poètes italiens"}, {"authorized_access_point": "Chansons italiennes"}, {"authorized_access_point": "Madrigaux (musique) italiens"}, {"authorized_access_point": "Mélodies italiennes"}, {"authorized_access_point": "Prose italienne"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Crépuscularisme"}, {"authorized_access_point": "Poésie de circonstance italienne"}, {"authorized_access_point": "Ballades italiennes"}, {"authorized_access_point": "Disperata"}, {"authorized_access_point": "Épigrammes italiennes"}, {"authorized_access_point": "Épopées italiennes"}, {"authorized_access_point": "Frottole (littérature)"}, {"authorized_access_point": "Poèmes en prose italiens"}, {"authorized_access_point": "Poésie d'amour italienne"}, {"authorized_access_point": "Poésie dialectale italienne"}, {"authorized_access_point": "Poésie didactique italienne"}, {"authorized_access_point": "Poésie élogieuse italienne"}, {"authorized_access_point": "Poésie expérimentale italienne"}, {"authorized_access_point": "Poésie historique italienne"}, {"authorized_access_point": "Poésie italienne - Avant 1400"}, {"authorized_access_point": "Poésie lyrique italienne"}, {"authorized_access_point": "Poésie narrative italienne"}, {"authorized_access_point": "Poésie pastorale italienne"}, {"authorized_access_point": "Poésie politique italienne"}, {"authorized_access_point": "Poésie populaire italienne"}, {"authorized_access_point": "Poésie religieuse italienne"}, {"authorized_access_point": "Poésie satirique italienne"}, {"authorized_access_point": "Poésie visuelle italienne"}, {"authorized_access_point": "Sonnets italiens"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85068841", "source": "LCSH"}, "authorized_access_point": "Italian poetry"}, {"source": "RVMLaval", "authorized_access_point": "Poésie italienne"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027809781", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11977186t", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Poésie italienne"} 1 -2023-08-08 13:37:39.325401 2023-08-08 13:37:39.325406 a315472d-07b8-4805-91c8-9afd6ea6b34f {"md5": "292f04c6fb961445ffbb7c9a15b82c0a", "pid": "027811611", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature espagnole"}, {"authorized_access_point": "Poésie hispanophone"}], "related": [{"authorized_access_point": "Poètes espagnols"}, {"authorized_access_point": "Chansons espagnoles"}, {"authorized_access_point": "Mélodies espagnoles"}, {"authorized_access_point": "Prose espagnole"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "La otra sentimentalidad"}, {"authorized_access_point": "Novísimos"}, {"authorized_access_point": "Silva"}, {"authorized_access_point": "Épigrammes espagnoles"}, {"authorized_access_point": "Épîtres en vers espagnoles"}, {"authorized_access_point": "Épopées espagnoles"}, {"authorized_access_point": "Haïkus espagnols"}, {"authorized_access_point": "Poèmes en prose espagnols"}, {"authorized_access_point": "Poésie contestataire espagnole"}, {"authorized_access_point": "Poésie d'amour espagnole"}, {"authorized_access_point": "Poésie de circonstance espagnole"}, {"authorized_access_point": "Poésie dialectale espagnole"}, {"authorized_access_point": "Poésie didactique espagnole"}, {"authorized_access_point": "Poésie élogieuse espagnole"}, {"authorized_access_point": "Poésie espagnole - Avant 1500"}, {"authorized_access_point": "Poésie espagnole - 1500-1700 (Période classique)"}, {"authorized_access_point": "Poésie espagnole pour la jeunesse"}, {"authorized_access_point": "Poésie expérimentale espagnole"}, {"authorized_access_point": "Poésie humoristique espagnole"}, {"authorized_access_point": "Poésie lyrique espagnole"}, {"authorized_access_point": "Poésie pastorale espagnole"}, {"authorized_access_point": "Poésie politique espagnole"}, {"authorized_access_point": "Poésie populaire espagnole"}, {"authorized_access_point": "Poésie religieuse espagnole"}, {"authorized_access_point": "Poésie satirique espagnole"}, {"authorized_access_point": "Poésie visuelle espagnole"}, {"authorized_access_point": "Romanceros"}, {"authorized_access_point": "Sonnets espagnols"}, {"authorized_access_point": "Villancicos (littérature)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85126289", "source": "LCSH"}, "authorized_access_point": "Spanish poetry"}, {"source": "RVMLaval", "authorized_access_point": "Poésie espagnole"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027811611", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11977339v", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Poésie espagnole"} 1 -2023-08-08 13:37:39.397334 2023-08-08 13:37:39.397336 0e29b412-5509-4e51-bac6-598e413304ce {"md5": "719b2f3daf75b9f31a58689787701a59", "pid": "027825280", "note": [{"label": ["Vocabulaire juridique / G. Cornu, 2003 (art. : Révision)", "Dict. constitutionnel / O. Duhamel, Y. Mény, 1992 : révision"], "noteType": "dataSource"}, {"label": ["Processus de révision (ou d'amendement) des constitutions et modifications qui en résultent", "S'emploie également en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Droit constitutionnel"}, {"authorized_access_point": "Histoire constitutionnelle"}], "related": [{"authorized_access_point": "Amendements"}, {"authorized_access_point": "Pouvoir constituant"}, {"authorized_access_point": "Transition constitutionnelle"}, {"authorized_access_point": "Constitutions"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Conventions constitutionnelles"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85031319", "source": "LCSH"}, "authorized_access_point": "Constitutional amendments"}, {"source": "RVMLaval", "authorized_access_point": "Constitutions -- Amendements"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027825280", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11978381w", "source": "BNF"}], "classification": [{"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}], "variant_access_point": ["Amendements constitutionnels", "Constitutions - Amendements", "Constitutions - Modifications", "Constitutions - Réforme", "Constitutions - Révision", "Lois de révision (droit constitutionnel)", "Modifications constitutionnelles", "Négociations constitutionnelles", "Réforme constitutionnelle", "Révision (droit constitutionnel)", "Révision de la Constitution"], "authorized_access_point": "Révision constitutionnelle"} 1 -2023-08-08 13:37:39.469798 2023-08-08 13:37:39.4698 519a4cd1-c078-4e97-b7da-4c6d90093d29 {"md5": "7c8d9d8e22c54cad257a3a6e15bc615b", "pid": "027832953", "note": [{"label": ["Nouveau petit Robert 2010", "Vocabulaire juridique / G. Cornu, 2007", "JurisClasseur Pénal Code > Art. 133-7 - 133-8 > Fasc. unique : Grâce", "Droit constitutionnel / L. Favoreu, 2005", "Origine de la grâce en droit pénal romain et français / P. Duparc, 1942"], "noteType": "dataSource"}, {"label": ["S'emploie également en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Droit constitutionnel"}, {"authorized_access_point": "Droit pénal"}, {"authorized_access_point": "Réduction de peine"}], "related": [{"authorized_access_point": "Amnistie"}, {"authorized_access_point": "Clémence (droit)"}, {"authorized_access_point": "Libération conditionnelle"}, {"authorized_access_point": "Pardon"}, {"authorized_access_point": "Pouvoir exécutif"}, {"authorized_access_point": "Réhabilitation"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2002006184", "source": "LCSH"}, "authorized_access_point": "Pardon"}, {"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85097972", "source": "LCSH"}, "authorized_access_point": "Pardon"}, {"source": "RVMLaval", "authorized_access_point": "Grâce (droit)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027832953", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11978966n", "source": "BNF"}], "classification": [{"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}], "variant_access_point": ["Commutation de peine", "Droit de grâce", "Grâce amnistiante", "Grâce présidentielle", "Lettres de grâce", "Lettres de rémission", "Pardon (droit)", "Recours en grâce", "Remise de peine", "Rémission, Lettres de"], "authorized_access_point": "Grâce (droit)"} 1 -2023-08-08 13:37:39.534149 2023-08-08 13:37:39.534152 e230e8fc-8e47-4175-a36c-cdbbb12bb5a0 {"md5": "51ebb6eaaba72d5d004f2186b53ac544", "pid": "027838919", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Démocratie directe"}, {"authorized_access_point": "Droit constitutionnel"}, {"authorized_access_point": "Élections"}, {"authorized_access_point": "Régimes représentatifs"}], "related": [{"authorized_access_point": "Campagnes de votation (Suisse)"}, {"authorized_access_point": "Référendum professionnel"}, {"authorized_access_point": "Plébiscite"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Référendum local"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Référendum"}, {"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85112202", "source": "LCSH"}, "authorized_access_point": "Referendum"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027838919", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13319148r", "source": "BNF"}], "classification": [{"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "variant_access_point": ["Initiative et référendum", "Référendum constituant", "Référendum d'initiative populaire", "Référendum législatif", "Référendum plébiscitaire", "Votation populaire (Suisse)"], "authorized_access_point": "Référendum"} 1 -2023-08-08 13:37:39.590963 2023-08-08 13:37:39.590968 0dbc6ae0-137c-4ddb-8159-e7874ac463cb {"md5": "07a8bb67227350d7b0fb04767855f71a", "pid": "02784532X", "note": [{"label": ["Dict. sanskrit-français / N. Stchoupak, L. Nitti, L. Renou, 1972", "L'hindouisme / A.-M. Esnoul, 1972", "Dict. de la sagesse orientale, 1995", "Le vocabulaire des philosophies de l'Inde / M. Ballanfat, 2003", "BnF Service indien, 2017-03-22"], "noteType": "dataSource"}, {"label": ["Le Soi ; âme ; principe spirituel"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hindouisme - Doctrines"}], "related": [{"authorized_access_point": "Anātman"}, {"authorized_access_point": "Jñāna-yoga"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85009269", "source": "LCSH"}, "authorized_access_point": "Ātman"}, {"source": "RVMLaval", "authorized_access_point": "Ātman"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02784532X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119799348", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "authorized_access_point": "Ātman"} 1 -2023-08-08 13:37:39.65495 2023-08-08 13:37:39.654954 a9b0b3ab-cca4-4dce-8c9d-fb9f5d966727 {"md5": "b0e6fe06b3d156e584c94d00a30f3f08", "pid": "027852547", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature grecque"}, {"authorized_access_point": "Roman antique"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Roman d'amour grec"}, {"authorized_access_point": "Roman épistolaire grec"}, {"authorized_access_point": "Roman grec hellénistique"}, {"authorized_access_point": "Roman policier grec"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85057147", "source": "LCSH"}, "authorized_access_point": "Greek fiction"}, {"source": "RVMLaval", "authorized_access_point": "Roman grec"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027852547", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11980545v", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}, {"name": "Préhistoire et histoire ancienne", "type": "bf:ClassificationDdc", "classificationPortion": "930"}], "variant_access_point": ["Roman grec - Antiquité", "Roman grec antique", "Roman grec de l'Antiquité"], "authorized_access_point": "Roman grec"} 1 -2023-08-08 13:37:39.705354 2023-08-08 13:37:39.705358 28eed3bd-1ba4-432f-a446-f3a1710880a1 {"md5": "3a7f2d2ed0852e9e1ba2585d03d2b45d", "pid": "028004698", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Électronique numérique"}, {"authorized_access_point": "Audiovisuel numérique"}], "related": [{"authorized_access_point": "Graveurs de cédéroms"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Boucles (musique)"}, {"authorized_access_point": "Compression audio"}, {"authorized_access_point": "Disques compacts"}, {"authorized_access_point": "DVD audio"}, {"authorized_access_point": "Super Audio CD"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85125369", "source": "LCSH"}, "authorized_access_point": "Sound--Recording and reproducing--Digital techniques"}, {"source": "RVMLaval", "authorized_access_point": "Son -- Enregistrement et reproduction -- Techniques numériques"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028004698", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11992743d", "source": "BNF"}], "classification": [{"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["Audio-numériques, Techniques", "Enregistrement numérique", "Techniques audio-numériques"], "authorized_access_point": "Son - Enregistrement et reproduction -- Techniques numériques"} 1 -2023-08-08 13:37:39.75309 2023-08-08 13:37:39.753093 1a928111-7486-4e27-92b8-64a9f2b0d69c {"md5": "5869d89dcc3f381effab4f3f6e55581b", "pid": "028244494", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ethnologie - [Localisations géographiques]"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Lemkoviens"}, {"authorized_access_point": "Ruthènes"}, {"authorized_access_point": "Slovaques"}, {"authorized_access_point": "Slovaques d'origine hongroise"}, {"authorized_access_point": "Tchécoslovaques"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Ethnologie -- Slovaquie"}, {"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh93003751", "source": "LCSH"}, "authorized_access_point": "Ethnology--Slovakia"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028244494", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120120186", "source": "BNF"}], "classification": [{"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "authorized_access_point": "Ethnologie - Slovaquie"} 1 -2023-08-08 13:37:39.805906 2023-08-08 13:37:39.805909 28b6eb17-89d2-44e2-a073-93da4ed30630 {"md5": "98f42691805fb509d0cf783d756b56a8", "pid": "028283678", "note": [{"label": ["Grand dict. encyclopédique Larousse (art. : Amendement)", "Vocabulaire juridique / G. Cornu, 2007 (art. : Amendement)", "Eurovoc thesaurus (art. : Amendement) - http://eurovoc.europa.eu (2017-10-12)", "Lexique des termes juridiques Dalloz 2015-2016 / S. Guinchard, T. Debard, 2015 (art. : Amendement)", "Dict. du droit constitutionnel / M. de Villiers, A. Le Divellec, 2015 (art. : Amendement)", "Constitution du 4 octobre 1958 (art. 44) - https://www.legifrance.gouv.fr (2017-10-12)", "La rénovation du droit d'amendement / M.-A. Granger [in] Revue française de droit constitutionnel, 2008, 3, 75", "Dict. de droit constitutionnel / T. Debard, 2007 (art. : Amendement) : amendement législatif ; amendements gouvernementaux"], "noteType": "dataSource"}, {"label": ["Les membres du Parlement et le Gouvernement ont le droit d'amendement (art. 44 de la Constitution de 1958). Proposition de modification d'un texte de loi au cours de sa discussion"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Procédure parlementaire"}, {"authorized_access_point": "Projets de loi"}], "related": [{"authorized_access_point": "Amendements"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85004212", "source": "LCSH"}, "authorized_access_point": "Legislative amendments"}, {"source": "RVMLaval", "authorized_access_point": "Amendements (Procédure parlementaire)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028283678", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12015117v", "source": "BNF"}], "classification": [{"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}], "variant_access_point": ["Amendements (procédure parlementaire)", "Amendements gouvernementaux", "Amendements législatifs", "Amendements parlementaires", "Gouvernement - Droit d'amendement", "Parlements - Droit d'amendement"], "authorized_access_point": "Droit d'amendement (droit constitutionnel)"} 1 -2023-08-08 13:37:39.852056 2023-08-08 13:37:39.852059 6260af52-7445-4d79-8d48-bda09217b548 {"md5": "4ddc7f261251241581332c5bb713dcd8", "pid": "028354559", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature espagnole"}, {"authorized_access_point": "Nouvelles hispanophones"}], "related": [{"authorized_access_point": "Contes littéraires espagnols"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Micronouvelles espagnoles"}, {"authorized_access_point": "Nouvelles de science-fiction espagnoles"}, {"authorized_access_point": "Nouvelles érotiques espagnoles"}, {"authorized_access_point": "Nouvelles fantastiques espagnoles"}, {"authorized_access_point": "Nouvelles policières espagnoles"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85121942", "source": "LCSH"}, "authorized_access_point": "Short stories, Spanish"}, {"source": "RVMLaval", "authorized_access_point": "Nouvelles espagnoles"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028354559", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12020709w", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Nouvelles espagnoles"} 1 -2023-08-08 13:37:39.910149 2023-08-08 13:37:39.910154 6fa7d72f-b0e9-4365-86f4-7367406b49c1 {"md5": "787d9025ae89e2b0cd8fca5569fcd459", "pid": "028359070", "note": [{"label": ["Sous cette vedette, on trouve les recueils de poésie du Luxembourg en luxembourgeois ou en diverses langues"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature luxembourgeoise"}, {"authorized_access_point": "Poésie dialectale allemande"}], "related": [{"authorized_access_point": "Chansons luxambourgeoises"}], "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Poésie luxembourgeoise"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028359070", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12021056q", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Poésie luxembourgeoise"} 1 -2023-08-08 13:37:39.985718 2023-08-08 13:37:39.985722 e2672535-4a92-4bbf-8679-e4d977076198 {"md5": "b8d7b6b99801b50b43b78ec2b61bc6e0", "pid": "028701755", "note": [{"label": ["Grand Larousse universel", "Petit Robert 1, 1993"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, obligatoirement suivie d'une subdivision géographique ou de la subdivision : À l'étranger, directement ou après une subdivision de sujet, on trouve les documents sur les Syriens hors de Syrie. Les documents sur les Syriens en Syrie se trouvent sous des vedettes-matière telles que : Moeurs et coutumes -- Syrie ; etc"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ethnologie - Syrie"}], "related": [{"authorized_access_point": "Américains d'origine syrienne"}, {"authorized_access_point": "Brésiliens d'origine syrienne"}, {"authorized_access_point": "Auteurs d'origine syrienne"}, {"authorized_access_point": "Syrie"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Juifs syriens"}, {"authorized_access_point": "Réfugiés syriens"}, {"authorized_access_point": "Syriennes"}, {"authorized_access_point": "Travailleurs étrangers syriens"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85131719", "source": "LCSH"}, "authorized_access_point": "Syrians"}, {"source": "RVMLaval", "authorized_access_point": "Syriens"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028701755", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12048392h", "source": "BNF"}], "classification": [{"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "authorized_access_point": "Syriens"} 1 -2023-08-08 13:37:40.053787 2023-08-08 13:37:40.05379 0a829037-d335-40c5-a6d3-9a4fcd8433f7 {"md5": "152a3170f3390535cf0468b7382e6c94", "pid": "028910044", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ethnologie - [Localisations géographiques]"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Allemands de Petite Lituanie"}, {"authorized_access_point": "Boikos"}, {"authorized_access_point": "Juifs - Pologne"}, {"authorized_access_point": "Kachoubes"}, {"authorized_access_point": "Lemkoviens"}, {"authorized_access_point": "Polonais"}, {"authorized_access_point": "Ruthènes"}, {"authorized_access_point": "Silésiens"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Ethnologie -- Pologne"}, {"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85045360", "source": "LCSH"}, "authorized_access_point": "Ethnology--Poland"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028910044", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12064823h", "source": "BNF"}], "classification": [{"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "authorized_access_point": "Ethnologie - Pologne"} 1 -2023-08-08 13:37:40.126984 2023-08-08 13:37:40.126993 96fc0147-4f4f-45ff-a843-243d39ee879c {"md5": "a88a56b05bb606e5087980c6cc1e5d81", "pid": "028962389", "note": [{"label": ["Dict. illustré des termes de médecine, 2012 (art. : Surdité)", "Dict. de médecine Flammarion, 2008 (art. : Surdité)", "Dict. de l'Académie de médecine (art. : Surdité) - http://dictionnaire.academie-medecine.fr (2022-05-30)", "Loterre (art. : Surdité neurosensorielle) - https://www.loterre.fr (2022-05-30)", "Handicaps et psychopathologies / V. Pagès, 2017"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Surdité"}, {"authorized_access_point": "Troubles de la perception auditive"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Usher, Syndrome d'"}], "closeMatch": [{"source": "MeSH", "authorized_access_point": "Hearing Loss, Sensorineural"}, {"source": "RVMLaval", "authorized_access_point": "Surdité de perception"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028962389", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12068935r", "source": "BNF"}], "classification": [{"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Surdité neurosensorielle"], "authorized_access_point": "Surdité de perception"} 1 -2023-08-08 13:37:40.201321 2023-08-08 13:37:40.201325 3774dddb-99d7-4ac0-95c3-d24cb6e8c97d {"md5": "136777aea5c646be2b89479051fd1a91", "pid": "02897297X", "note": [{"label": ["Sous cette vedette, on trouve la littérature espagnole produite au 20e siècle dans l'ensemble de l'Espagne. La littérature espagnole produite dans un lieu particulier se trouve sous des vedettes-matière du type : Littérature espagnole -- [Subdivision géographique] -- 20e siècle, par ex. : Littérature espagnole -- Espagne -- Aragon (Espagne) -- 20e siècle"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Civilisation - Espagne - 20e siècle"}, {"authorized_access_point": "Littérature espagnole"}], "related": [{"authorized_access_point": "Littérature espagnole - 1870-1914"}, {"authorized_access_point": "Littérature espagnole - 1975-...."}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "La otra sentimentalidad"}, {"authorized_access_point": "Novísimos"}, {"authorized_access_point": "Littérature espagnole - 1900-1939"}, {"authorized_access_point": "Littérature espagnole - 1939-1975"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85126273", "source": "LCSH"}, "authorized_access_point": "Spanish literature -- 20th century"}, {"source": "RVMLaval", "authorized_access_point": "Littérature espagnole -- 20e siècle"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02897297X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12069760n", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Littérature espagnole du 20e siècle"], "authorized_access_point": "Littérature espagnole - 20e siècle"} 1 -2023-08-08 13:37:40.272004 2023-08-08 13:37:40.272008 5232e8e8-8aed-44fc-b765-176fb3829de9 {"md5": "0ee9ef6b3704f492c04d916cb205a00d", "pid": "029241693", "note": [{"label": ["Les antiquités égyptiennes : guide du visiteur / Musée du Louvre, Département des antiquités égyptiennes, 1997"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les documents sur les antiquités provenant de la civilisation de l'Égypte ancienne. Les documents sur les antiquités, quelle que soit leur origine, de l'Égypte actuelle se trouvent sous Antiquités -- Égypte"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Civilisation - Égypte - Jusqu'à 332 av. J.-C."}], "related": [{"authorized_access_point": "Art égyptien"}, {"authorized_access_point": "Antiquités - Égypte"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Amulettes égyptiennes"}, {"authorized_access_point": "Bijoux égyptiens"}, {"authorized_access_point": "Céramique égyptienne"}, {"authorized_access_point": "Flabellums"}, {"authorized_access_point": "Inscriptions égyptiennes"}, {"authorized_access_point": "Lampes égyptiennes"}, {"authorized_access_point": "Mastabas"}, {"authorized_access_point": "Meubles égyptiens"}, {"authorized_access_point": "Objets d'art égyptiens"}, {"authorized_access_point": "Poids et mesures égyptiens"}, {"authorized_access_point": "Sarcophages égyptiens"}, {"authorized_access_point": "Shaouabtis"}, {"authorized_access_point": "Temples égyptiens"}, {"authorized_access_point": "Textiles et tissus égyptiens"}, {"authorized_access_point": "Vases égyptiens"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029241693", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12090894p", "source": "BNF"}], "classification": [{"name": "Préhistoire et histoire ancienne", "type": "bf:ClassificationDdc", "classificationPortion": "930"}], "variant_access_point": ["Archéologie de l'Égypte ancienne"], "authorized_access_point": "Antiquités égyptiennes"} 1 -2023-08-08 13:37:40.361625 2023-08-08 13:37:40.361629 237ef3da-ffd2-4727-8717-7510288aa198 {"md5": "24a9c7e85a7f89578763dda36ee4954d", "pid": "029260892", "note": [{"label": ["GDEL: Juin 1940 (appel du 18)"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "deleted": "2022-08-25T10:47:31.610056+00:00", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029260892", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12092565r", "source": "BNF"}], "variant_access_point": ["18 juin 1940, Appel du", "Juin 1940, Appel du 18"], "authorized_access_point": "Appel du 18 juin 1940"} 1 -2023-08-08 13:37:40.535148 2023-08-08 13:37:40.535151 c70be705-e061-4fae-b4d4-1cdbe4fefea4 {"md5": "ddae9905a3499eccd9f595e819a8ec98", "pid": "029563321", "note": [{"label": ["Encycl. universalis - http://www.universalis-edu.com (2021-08-25)"], "noteType": "dataSource"}, {"label": ["S'emploie également en subdivision", "Sous cette vedette sont entrés les ouvrages sur les méthodes permettant d'étudier l'activité cognitive : conception de modèles de l'activité mentale et de méthodes d'observation et de validation des modèles cognitifs. Les ouvrages sur la cognition, synonyme en psychologie d'acte de connaissance, appréhension du monde, sont entrés sous Cognition. Les ouvrages sur l'ensemble des sciences qui portent sur la cognition : psychologie cognitive, linguistique, logique, recherches en intelligence artificielle et traitement de l'information chez l'homme, sont entrés sous Sciences cognitives"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sciences cognitives"}], "related": [{"authorized_access_point": "Consignes (éducation)"}, {"authorized_access_point": "Cognition"}, {"authorized_access_point": "Tests de concordance de script"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Apprentissage cognitif"}, {"authorized_access_point": "Associationnisme"}, {"authorized_access_point": "Biais cognitifs"}, {"authorized_access_point": "Cartes heuristiques"}, {"authorized_access_point": "Charge cognitive"}, {"authorized_access_point": "Communication écrite - Aspect cognitif"}, {"authorized_access_point": "Connexionnisme"}, {"authorized_access_point": "Distracteurs (psychologie)"}, {"authorized_access_point": "Double tâche (psychologie)"}, {"authorized_access_point": "Effet Zeigarnik"}, {"authorized_access_point": "Imagerie (psychologie)"}, {"authorized_access_point": "Intelligences multiples"}, {"authorized_access_point": "Protocoles verbaux"}, {"authorized_access_point": "Rapport au savoir"}, {"authorized_access_point": "Représentation mentale"}, {"authorized_access_point": "Résolution de problème"}, {"authorized_access_point": "Schéma narratif"}, {"authorized_access_point": "Théorie de l'esprit (psychologie)"}, {"authorized_access_point": "Transfert d'apprentissage"}, {"authorized_access_point": "Typicalité"}, {"authorized_access_point": "Vicariance (psychologie)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh87007652", "source": "LCSH"}, "authorized_access_point": "Cognitive psychology"}, {"source": "RVMLaval", "authorized_access_point": "Psychologie cognitive"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029563321", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12116308v", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}], "variant_access_point": ["Cognitivisme", "Contribution à la psychologie cognitive"], "authorized_access_point": "Psychologie cognitive"} 1 -2023-08-08 13:37:40.592904 2023-08-08 13:37:40.592907 a5069a14-8590-435a-9d93-fb1e59731225 {"md5": "c4e2675ae0fbd2bd6a1ca3b033a3d391", "pid": "029910609", "note": [{"label": ["Grand Larousse universel", "Atlas des peuples d'Europe centrale / A. et J. Sellier, 1993", "Dict. encyclopédique d'histoire / M. Mourre, 1996", "Encycl. of world cultures / D. Levinson, 1991-1996 : Carpatho-Rusyns", "One Europe, many nations : an historical dict. of European national groups / J. B. Minahan, 2000 : Carpatho-Rusyns"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ethnologie - Pologne"}, {"authorized_access_point": "Ethnologie - Roumanie"}, {"authorized_access_point": "Ethnologie - Slovaquie"}, {"authorized_access_point": "Ethnologie - Ukraine"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Boikos"}, {"authorized_access_point": "Houtsoules"}, {"authorized_access_point": "Lemkoviens"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Ruthènes"}, {"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh94005758", "source": "LCSH"}, "authorized_access_point": "Carpatho-Rusyns"}, {"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85116084", "source": "LCSH"}, "authorized_access_point": "Ruthenians"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029910609", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12143605j", "source": "BNF"}], "classification": [{"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "variant_access_point": ["Carpatho-Rusyns", "Carpatho-Ruthènes", "Petits-Russes", "Petits-Russiens", "Rus'", "Rusini", "Rusins", "Rusiny", "Rusnaks", "Rusnatsi", "Rusnatsy", "Rusyns", "Rusyny", "Ruthenen", "Ruthéniens", "Ukrainiens de l'Ouest", "Ukrainiens occidentaux", "Ukrainiens-Ruthènes"], "authorized_access_point": "Ruthènes"} 1 -2023-08-08 13:37:40.667696 2023-08-08 13:37:40.667705 bf398d03-6552-4ecb-adcc-9e23a7c8851c {"md5": "8badf8e100384b57c3ccef62c2f6445a", "pid": "030714451", "note": [{"label": ["Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour alto solo, et les recueils de compositions de formes et de genres différents pour alto solo"], "noteType": "general"}, {"label": ["Voir aussi les vedettes de musique comprenant les mots alto ou altos"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Alto (instrument de musique)"}, {"authorized_access_point": "Musique électroacoustique mixte (alto)"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Arabesques (alto)"}, {"authorized_access_point": "Chaconnes (alto)"}, {"authorized_access_point": "Études (alto)"}, {"authorized_access_point": "Préludes (alto)"}, {"authorized_access_point": "Sonates (alto)"}, {"authorized_access_point": "Suites (alto)"}, {"authorized_access_point": "Variations (alto)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85143486", "source": "LCSH"}, "authorized_access_point": "Viola music"}, {"source": "RVMLaval", "authorized_access_point": "Alto, Musique d'"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030714451", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12207487g", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "variant_access_point": ["Musique d'alto", "Musique pour alto"], "authorized_access_point": "Alto, Musique d'"} 1 -2023-08-08 13:37:40.73907 2023-08-08 13:37:40.739075 fc5ef599-2851-44c3-9b74-d23f5ff5b120 {"md5": "fbbc45d779bffc769213e823f501344c", "pid": "030763762", "note": [{"label": ["Wikipédia (art. : Soju) - https://fr.wikipedia.org (2022-03-02)", "Une vague de Kimch'i : la gastronomie coréenne face à la mondialisation Entre Soft Power et menace / B. Joinau [in] Outre-Terre, 2014, 2, 39 : soju", "Soju : a global history / H. Park, 2021", "Larousse agricole / M. Mazoyer, 2002 (art. : Riz)", "Le Japon : dict. et civilisation / L. Frédéric, 1996 (art. : Saké)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Boissons alcoolisées"}, {"authorized_access_point": "Produits du riz"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85113886", "source": "LCSH"}, "authorized_access_point": "Rice beer"}, {"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85113911", "source": "LCSH"}, "authorized_access_point": "Rice wines"}, {"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2018001862", "source": "LCSH"}, "authorized_access_point": "Soju"}, {"source": "RVMLaval", "authorized_access_point": "Saké"}, {"source": "RVMLaval", "authorized_access_point": "Bière de riz"}, {"source": "RVMLaval", "authorized_access_point": "Vin de riz"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030763762", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb122114230", "source": "BNF"}], "classification": [{"name": "Agriculture, élevage", "type": "bf:ClassificationDdc", "classificationPortion": "630"}, {"name": "Economie domestique, hôtellerie", "type": "bf:ClassificationDdc", "classificationPortion": "640"}], "variant_access_point": ["Bière de riz", "Eaux-de-vie de riz", "Riz, Alcool de", "Saké", "Soju", "Vin de riz"], "authorized_access_point": "Alcool de riz"} 1 -2023-08-08 13:37:48.073487 2023-08-08 13:37:48.073491 2a749317-4f4e-4516-9986-4020cae9d454 {"md5": "57ee4b2e1c3179a42457de3e4af1b60f", "pid": "263714446", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Civilisation - Lettonie"}, {"authorized_access_point": "Cuisine balte"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh93003729", "source": "LCSH"}, "authorized_access_point": "Cooking, Latvian"}, {"source": "RVMLaval", "authorized_access_point": "Cuisine lettone"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714446", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18024451n", "source": "BNF"}], "classification": [{"name": "Economie domestique, hôtellerie", "type": "bf:ClassificationDdc", "classificationPortion": "640"}], "variant_access_point": ["Cuisine lettone - Lettonie"], "authorized_access_point": "Cuisine lettone"} 1 -2023-08-08 13:37:40.809279 2023-08-08 13:37:40.809282 8b20633b-d431-4dbd-9684-9ae9306752db {"md5": "64a52671a4a83a6e675442f284ebb5b6", "pid": "030767806", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ethnologie - [Localisations géographiques]"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Allemands de Bucovine"}, {"authorized_access_point": "Allemands de Transylvanie"}, {"authorized_access_point": "Allemands du Banat"}, {"authorized_access_point": "Allemands du Danube"}, {"authorized_access_point": "Daces"}, {"authorized_access_point": "Gépides"}, {"authorized_access_point": "Roumains"}, {"authorized_access_point": "Roumains d'origine française"}, {"authorized_access_point": "Roumains d'origine hongroise"}, {"authorized_access_point": "Ruthènes"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85045365", "source": "LCSH"}, "authorized_access_point": "Ethnology--Romania"}, {"source": "RVMLaval", "authorized_access_point": "Ethnologie--Roumanie"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030767806", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12211770b", "source": "BNF"}], "classification": [{"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "authorized_access_point": "Ethnologie - Roumanie"} 1 -2023-08-08 13:37:40.85888 2023-08-08 13:37:40.858883 42cf0a6f-bca9-41ac-bc42-ea0fb314906b {"md5": "bf2bd884be0b8b78dadbc5d961d31e00", "pid": "03116207X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Femmes enceintes - Examens médicaux"}, {"authorized_access_point": "Diagnostic prénatal"}], "related": [{"authorized_access_point": "Accouchement - Complications (médecine) -- Diagnostic"}, {"authorized_access_point": "Grossesse - Signes et diagnostic"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Imagerie pour le diagnostic en obstétrique"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03116207X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12243064k", "source": "BNF"}], "classification": [{"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Grossesse - Complications -- Diagnostic", "Diagnostic en obstétrique", "Diagnostic obstétrical", "Épreuve fonctionnelle en obstétrique", "Examen obstétrical", "Obstétrique - Épreuve fonctionnelle"], "authorized_access_point": "Grossesse - Complications (médecine) -- Diagnostic"} 1 -2023-08-08 13:37:40.922124 2023-08-08 13:37:40.922129 95acff84-4d76-46e4-be9e-7281d8b57973 {"md5": "581680c6f2c54900fa5beb2ed67bb5a6", "pid": "031474284", "note": [{"label": ["Trésor de la langue française (art. : Langage)", "Grand Robert de la langue française, 2001 (art. : Faute)", "Dict. de didactique des langues / D. Coste, R. Galisson, 1976"], "noteType": "dataSource"}, {"label": ["S'emploie également en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Langues - Étude et enseignement"}], "related": [{"authorized_access_point": "Fautes de langage - Analyse (enseignement des langues)"}, {"authorized_access_point": "Faux amis (linguistique)"}, {"authorized_access_point": "Normalisation linguistique"}, {"authorized_access_point": "Purisme (linguistique)"}, {"authorized_access_point": "Usage"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Fautes d'orthographe"}, {"authorized_access_point": "Lapsus"}, {"authorized_access_point": "Perles de langage"}, {"authorized_access_point": "Queísmo"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Fautes de langage"}, {"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85126446", "source": "LCSH"}, "authorized_access_point": "Speech errors"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031474284", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12268317h", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "401"}, {"name": "Poésie", "type": "bf:ClassificationDdc", "classificationPortion": "801"}], "variant_access_point": ["Barbarismes", "Cuirs (linguistique)", "Difficultés langagières", "Erreurs de langage", "Erreurs langagières", "Expressions incorrectes", "Fautes d'usage (linguistique)", "Fautes de langue", "Fautes de prononciation", "Fautes langagières", "Impropriétés (linguistique)", "Incorrections (linguistique)", "Langage, Fautes de", "Langue, Fautes de", "Pataquès (linguistique)", "Prononciation, Fautes de", "Solécismes"], "authorized_access_point": "Fautes de langage"} 1 -2023-08-08 13:37:41.010314 2023-08-08 13:37:41.010317 8a0261fd-e97d-45e4-a399-a836b7330d35 {"md5": "b93c4521b1f2ae1e6e9cc6270c31d0a5", "pid": "031911056", "note": [{"label": ["Cognition et lecture : processus de base de la reconnaissance des mots écrits chez l'adulte / L. Ferrand, 2001", "Lecture et dyslexie : approche cognitive / L. Sprenger-Charolles, Pascale Colé, 2003", "Apprendre à lire : des sciences cognitives à la salle de classe / S. Dehaene, 2011"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Cognition"}, {"authorized_access_point": "Lecture - Aspect psychologique"}, {"authorized_access_point": "Linguistique cognitive"}], "related": [{"authorized_access_point": "Communication écrite - Aspect cognitif"}, {"authorized_access_point": "Consignes (éducation)"}, {"authorized_access_point": "Écriture - Aspect cognitif"}, {"authorized_access_point": "Test de closure"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Dénomination rapide automatisée"}, {"authorized_access_point": "Lecture - Difficultés"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85111686", "source": "LCSH"}, "authorized_access_point": "Reading comprehension"}, {"source": "RVMLaval", "authorized_access_point": "Compréhension de la lecture"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031911056", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12303769k", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}, {"type": "bf:ClassificationDdc", "classificationPortion": "401"}], "variant_access_point": ["Cognition et lecture", "Lecture - Compréhension", "Lecture et cognition", "Psychologie cognitive de la lecture"], "authorized_access_point": "Lecture - Aspect cognitif"} 1 -2023-08-08 13:37:41.076217 2023-08-08 13:37:41.07622 a5996cba-92d3-45ba-b8ee-250278cbb57a {"md5": "69fe495cc96d63eb48ed1ba046dc18d2", "pid": "031992234", "note": [{"label": ["Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour saxophone et orchestre, et les recueils de compositions de formes et de genres différents pour cette même formation"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Concertos (saxophone)"}, {"authorized_access_point": "Poèmes symphoniques (saxophone et orchestre)"}, {"authorized_access_point": "Rhapsodies (saxophone et orchestre)"}, {"authorized_access_point": "Saxophone et orchestre à cordes"}, {"authorized_access_point": "Saxophone et orchestre à vent"}, {"authorized_access_point": "Saxophone et orchestre d'harmonie"}, {"authorized_access_point": "Saxophone et orchestre de chambre"}, {"authorized_access_point": "Saxophone et orchestre de jazz"}, {"authorized_access_point": "Suites (saxophone et orchestre)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85117865", "source": "LCSH"}, "authorized_access_point": "Saxophone with orchestra"}, {"source": "RVMLaval", "authorized_access_point": "Saxophone et orchestre"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031992234", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb123105743", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Saxophone et orchestre"} 1 -2023-08-08 13:37:41.164953 2023-08-08 13:37:41.164958 5f571655-b3a7-4393-b949-2b11881ae6d1 {"md5": "97231932656ef4e97017c1d12f804177", "pid": "03212743X", "note": [{"label": ["Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour flûte, violon et alto, et les recueils de compositions de formes et de genres différents pour cette même formation"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Trios ([distributions instrumentales])"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Sérénades (flûte, violon, alto)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85137637", "source": "LCSH"}, "authorized_access_point": "Trios (Flute, violin, viola)"}, {"source": "RVMLaval", "authorized_access_point": "Trios (flûte, violon, alto)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03212743X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12321733h", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Trios (flûte, violon, alto)"} 1 -2023-08-08 13:37:41.241852 2023-08-08 13:37:41.241856 890a7f5a-1a27-49f9-959a-1898a69b4dc0 {"md5": "3e59a3f7e7e47a95a5fc7c65274fd9f6", "pid": "032187130", "note": [{"label": ["Grand Robert de la langue française, 2001"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les documents sur les constructions propres à la langue espagnole qui ne possèdent aucun correspondant syntaxique dans une autre langue. Les documents sur les mots et locutions espagnols intégrés à une autre langue se trouvent sous le nom de cette langue suivie de la subdivision Emprunts espagnols, par ex. : Français (langue) -- Emprunts espagnols"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Idiotismes"}], "related": [{"authorized_access_point": "Espagnol (langue)"}, {"authorized_access_point": "Queísmo"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2008112151", "source": "LCSH"}, "authorized_access_point": "Spanish language--Idioms"}, {"source": "RVMLaval", "authorized_access_point": "Hispanismes (idiotismes)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032187130", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12326636g", "source": "BNF"}], "classification": [{"name": "Langues et linguistique", "type": "bf:ClassificationDdc", "classificationPortion": "400"}], "variant_access_point": ["Espagnol (langue) - Idiotismes"], "authorized_access_point": "Hispanismes (idiotismes)"} 1 -2023-08-08 13:37:41.333939 2023-08-08 13:37:41.333949 afcaaf3c-0284-4b4f-ad93-0b7896fc50d9 {"md5": "a50327d852627ff3411ac9ebe9cb6978", "pid": "032563507", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature néerlandaise"}], "related": [{"authorized_access_point": "Poètes néerlandais"}, {"authorized_access_point": "Chansons néerlandaises"}, {"authorized_access_point": "Mélodies néerlandaises"}, {"authorized_access_point": "Prose néerlandaise"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Épopées néerlandaises"}, {"authorized_access_point": "Poèmes en prose néerlandais"}, {"authorized_access_point": "Poésie didactique néerlandaise"}, {"authorized_access_point": "Poésie élogieuse néerlandaise"}, {"authorized_access_point": "Poésie érotique néerlandaise"}, {"authorized_access_point": "Poésie néerlandaise pour la jeunesse"}, {"authorized_access_point": "Poésie pastorale néerlandaise"}, {"authorized_access_point": "Poésie politique néerlandaise"}, {"authorized_access_point": "Poésie religieuse néerlandaise"}, {"authorized_access_point": "Poésie visuelle néerlandaise"}, {"authorized_access_point": "Sonnets néerlandais"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85040126", "source": "LCSH"}, "authorized_access_point": "Dutch poetry"}, {"source": "RVMLaval", "authorized_access_point": "Poésie néerlandaise"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032563507", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb123569227", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Poésie flamande - Avant 1830", "Poésie hollandaise"], "authorized_access_point": "Poésie néerlandaise"} 1 -2023-08-08 13:37:41.428865 2023-08-08 13:37:41.42887 ed6f2c2d-8851-4551-8dc5-5b43d2814cb0 {"md5": "faa5106feb3ec6f918adb83d81f00ea1", "pid": "032972938", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Femmes enceintes - Examens médicaux"}], "related": [{"authorized_access_point": "Grossesse - Complications (médecine) -- Diagnostic"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Imagerie pour le diagnostic en obstétrique"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032972938", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb123892668", "source": "BNF"}], "classification": [{"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Accouchement - Complications -- Diagnostic", "Diagnostic en obstétrique", "Diagnostic obstétrical", "Épreuve fonctionnelle en obstétrique", "Examen obstétrical", "Obstétrique - Épreuve fonctionnelle"], "authorized_access_point": "Accouchement - Complications (médecine) -- Diagnostic"} 1 -2023-08-08 13:37:41.513848 2023-08-08 13:37:41.513851 993ca3b3-a378-4171-963f-8f093b084322 {"md5": "e3b91fa67469388babc782ec799cb652", "pid": "03388157X", "note": [{"label": ["L'entretien d'explicitation / P. Vermersch, 1994", "L'entretien d'explication en entreprise : savoir questionner pour manager et former / H. Roux de Bézieux, 1999"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Entretiens en éducation"}, {"authorized_access_point": "Entretiens en psychologie"}, {"authorized_access_point": "Protocoles verbaux"}], "related": [{"authorized_access_point": "Entretiens professionnels"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Entretiens d'explicitation"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03388157X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12469337q", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}, {"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}, {"name": "Gestion et organisation de l'entreprise", "type": "bf:ClassificationDdc", "classificationPortion": "650"}], "variant_access_point": ["Entretien d'explicitation", "Entretiens critiques", "Explicitation, Entretiens d'"], "authorized_access_point": "Entretiens d'explicitation"} 1 -2023-08-08 14:28:41.499545 2023-08-08 14:28:41.499553 21442fef-901b-409f-9dc9-df9e5411c1e1 {"md5": "586f85a7c97edcb275b65af8dd17bad3", "pid": "027798682", "note": [{"label": ["Ne pas utiliser : employer les subdivisions 1500-1800, Histoire -- 1500-1800 ou les vedettes construites comprenant la subdivision 1648-1789"], "noteType": "seeReference"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:41.485675+00:00", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027798682", "source": "IDREF"}], "authorized_access_point": "1648-1789"} 1 -2023-08-08 13:37:41.56712 2023-08-08 13:37:41.567124 a4620f96-ccb4-4959-983e-2d7d2ff5d8c1 {"md5": "6968472d18b040c08cca7a3138250a0d", "pid": "034160523", "note": [{"label": ["Encycl. universalis (art. : Sectes) - http://www.universalis-edu.com (2018-03-01)", "Dict. de psychologie / R. Doron, F. Parot, 2003 (art. : Conscience)", "Les états modifiés de conscience / G. Lapassade, 1987", "Les états étranges de la conscience / J.-P. Valla, 1992", "La conscience modifiée / C. Le Scanff, 1995"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Conscience"}], "related": [{"authorized_access_point": "Chamanisme"}, {"authorized_access_point": "Parapsychologie"}, {"authorized_access_point": "Rebirth (psychothérapie)"}, {"authorized_access_point": "Voyages dans l'au-delà"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Extase"}, {"authorized_access_point": "Hypnose"}, {"authorized_access_point": "Ivresse"}, {"authorized_access_point": "Possession (anthropologie)"}, {"authorized_access_point": "Psychédélisme"}, {"authorized_access_point": "Transe"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh89006368", "source": "LCSH"}, "authorized_access_point": "Altered states of consciousness"}, {"source": "RVMLaval", "authorized_access_point": "États modifiés de conscience"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034160523", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12494645k", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}], "variant_access_point": ["Conscience, États modifiés de", "EMC (psychologie)", "État modifié de conscience", "États de conscience altérés", "États de conscience modifiés", "États étranges de conscience", "États non ordinaires de conscience", "États seconds", "Modification de la conscience"], "authorized_access_point": "États modifiés de conscience"} 1 -2023-08-08 13:37:41.663406 2023-08-08 13:37:41.663411 888c2b35-ad18-43dc-9f5a-c2a00a0034f9 {"md5": "f8f60673bdd787e375c86edfb898cb18", "pid": "034490906", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature flamande"}], "related": [{"authorized_access_point": "Poètes flamands"}, {"authorized_access_point": "Chansons flamandes"}, {"authorized_access_point": "Prose flamande"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Poésie politique flamande"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85049077", "source": "LCSH"}, "authorized_access_point": "Flemish poetry"}, {"source": "RVMLaval", "authorized_access_point": "Poésie flamande"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034490906", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12524209b", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Poésie flamande"} 1 -2023-08-08 13:37:41.742293 2023-08-08 13:37:41.742296 877cd5a6-7f0b-424b-8cd8-ea5e696816c0 {"md5": "4610a48c0891c3d53710a9aedeb21322", "pid": "034680365", "note": [{"label": ["L'Empire des tsars et les Russes. T.3. La religion / A. Leroy-Beaulieu, 1889", "Icons, portraits, or types? Photographic images of the Skoptsy in late Imperial Russia (1880-1917) / E. Emeliantseva [in] Jahrbücher für Geschichte Osteuropas, 2009, 57, 2 - https://www-jstor-org (2022-07-07)", "La secte russe des castrats / N. Volkov, 1995 : Skopcy, Skopcestvo", "Nouvelle encycl. nationale / M. Lachâtre, 1870 : Skoptzy", "Encycl. of religion and ethics / J. Hastings, 1994 : Skoptsi", "Oxford English dict. : Scoptsi - https://www-oed-com (2022-07-07)", "Wikipedia : Scoptes - https://fr.wikipedia.org (2022-07-13)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sectes chrétiennes"}], "related": [{"authorized_access_point": "Castration humaine"}, {"authorized_access_point": "Eunuques"}, {"authorized_access_point": "Vieux-croyants"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85123228", "source": "LCSH"}, "authorized_access_point": "Skoptsi"}, {"source": "RVMLaval", "authorized_access_point": "Skoptsis"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034680365", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb125409625", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Scoptes", "Secte des castrats", "Skopcestvo", "Skopcy", "Skoptsi", "Skoptsis", "Skoptzi", "Skoptzy"], "authorized_access_point": "Skoptsy"} 1 -2023-08-08 13:37:41.796381 2023-08-08 13:37:41.796384 11caf531-2c9e-477f-aaa3-3a89b5190f43 {"md5": "9e4bf4c5431fe8a7499f618443130528", "pid": "035801123", "note": [{"label": ["Petit Larousse 2004 (art. : Psychédélique)", "Encycl. universalis : rock psychédélique ou acid rock - http://www.universalis-edu.com (2013-11-08)", "Encycl. illustrée de toutes les musiques / P. Du Noyer, 2004", "Oxford Music online : psychedelic rock - http://www.oxfordmusiconline.com (2013-11-08)", "Allmusic : psychedelic rock ; acid rock - http://www.allmusic.com (2013-11-08)", "Dict. du rock / M. Assayas, 2000 : acid rock"], "noteType": "dataSource"}, {"label": ["Courant musical créé dans les années 1960 par des groupes californiens, qui cherchent à traduire dans leur musique les sensations dues à la prise de drogues hallucinogènes"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Psychédélisme"}, {"authorized_access_point": "Rock (musique)"}], "related": [{"authorized_access_point": "Drogues et arts"}, {"authorized_access_point": "Rock planant"}], "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh95010207", "source": "LCSH"}, "authorized_access_point": "Psychedelic rock music"}, {"source": "RVMLaval", "authorized_access_point": "Musique psychédélique"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035801123", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13337484c", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "variant_access_point": ["Acid-rock", "Musique psychédélique", "Psychédélique, Musique"], "authorized_access_point": "Rock psychédélique"} 1 -2023-08-08 13:37:41.848403 2023-08-08 13:37:41.848405 517033cf-d16f-4ec2-a65d-f2d2ab6211c5 {"md5": "9b9ea0c9e17d6a3eeba5d4c50c4d2e66", "pid": "050203177", "note": [{"label": ["Grand Larousse universel", "Grand Robert de la langue française, 2001"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, obligatoirement suivie d'une subdivision géographique ou de la subdivision : À l'étranger, directement ou après une subdivision de sujet, on trouve les documents sur les Ghanéens hors du Ghana. Les documents sur les Ghanéens au Ghana se trouvent sous des vedettes-matière telles que : Moeurs et coutumes -- Ghana ; etc"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ethnologie - Ghana"}], "related": [{"authorized_access_point": "Ghana"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Écrivains ghanéens"}, {"authorized_access_point": "Ghanéennes"}, {"authorized_access_point": "Travailleurs étrangers ghanéens"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85054784", "source": "LCSH"}, "authorized_access_point": "Ghanaians"}, {"source": "RVMLaval", "authorized_access_point": "Ghanéens"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050203177", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb135064736", "source": "BNF"}], "classification": [{"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "authorized_access_point": "Ghanéens"} 1 -2023-08-08 13:37:41.909566 2023-08-08 13:37:41.909569 980ea5aa-8387-44f1-b554-6ef8f1b4128a {"md5": "5635b76f682e0b567da89c0d5cb1d8ea", "pid": "050513478", "note": [{"label": ["Encycl. universalis (art. : Dance music ; House music ; etc.) - http://www.universalis-edu.com (2011-03-03)", "Wikipédia : séquenceur musical - http://fr.wikipedia.org (2011-03-03)", "Dict. des mots de la musique / J. Siron, 2006", "Dict. de la musique / M. Vignal, 2006", "Dict. encyclopédique de la musique / D. Arnold, 1988 (art. : Synthétiseur) : sequencer"], "noteType": "dataSource"}, {"label": ["Encycl. de la musique, 1992. - Dict. de la musique / M. Honegger, 1976. - Encycl. des instruments de musique / A. Buchner, 1980"], "noteType": "dataNotFound"}, {"label": ["Équipement permettant de faire jouer automatiquement un instrument de musique électronique"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Instruments de musique électroniques"}], "related": [{"authorized_access_point": "Boucles (musique)"}, {"authorized_access_point": "Séquenceurs (logiciels)"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh90005022", "source": "LCSH"}, "authorized_access_point": "Sequencer (Musical instrument)"}, {"source": "RVMLaval", "authorized_access_point": "Séquenceur (instrument de musique)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050513478", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13533493q", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "variant_access_point": ["Séquenceur musical"], "authorized_access_point": "Séquenceur (instrument de musique)"} 1 -2023-08-08 13:37:41.978017 2023-08-08 13:37:41.97802 4fc3234f-2eec-4186-8272-cfd373352061 {"md5": "56a87b8936637de76fd6fea79ed3dc66", "pid": "077061284", "note": [{"label": ["Grand Larousse universel (art. : Psychédélique) : peinture psychédélique", "L'art psychédélique / R. E. L. Masters, J. Houston, 1968", "Nus abstraits et psychédéliques / D. Olivier, 2012"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Art - 1970-...."}, {"authorized_access_point": "Psychédélisme"}], "related": [{"authorized_access_point": "Drogues et arts"}, {"authorized_access_point": "Hallucinogènes"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh90000085", "source": "LCSH"}, "authorized_access_point": "Psychedelic art"}, {"source": "RVMLaval", "authorized_access_point": "Art psychédélique"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077061284", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb14424877k", "source": "BNF"}], "classification": [{"name": "Arts", "type": "bf:ClassificationDdc", "classificationPortion": "700"}], "variant_access_point": ["Dessin psychédélique", "Peinture psychédélique", "Psychédélique, Art"], "authorized_access_point": "Art psychédélique"} 1 -2023-08-08 13:37:42.059147 2023-08-08 13:37:42.059149 02c51d91-b16d-410d-abbc-523e9e11e1b9 {"md5": "7db7f5add381f05a3c44e84800f375db", "pid": "080206913", "note": [{"label": ["Petit dict. d'anatomie, d'embryologie et d'histologie / P. Kamina, 1990", "Dict. de médecine Flammarion, 2008", "Dict. français de médecine et de biologie, 1981", "Atlas d'anatomie humaine / F. H. Netter, 1997"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Artère iliaque interne"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Artère ombilicale"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/080206913", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb14571495w", "source": "BNF"}], "classification": [{"name": "Sciences de la vie", "type": "bf:ClassificationDdc", "classificationPortion": "570"}, {"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Artère ombilico-vésicale", "Arteria umbilicalis"], "authorized_access_point": "Artère ombilicale"} 1 -2023-08-08 13:37:42.140938 2023-08-08 13:37:42.140942 2a758e2d-ff16-40fb-a97e-bcf8043b8f60 {"md5": "08e439e32d49bbdf589d4b025463647b", "pid": "083620338", "note": [{"label": ["S'emploie uniquement en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Droit d'amendement (droit constitutionnel)"}, {"authorized_access_point": "Révision constitutionnelle"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083620338", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb14604104c", "source": "BNF"}], "classification": [{"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}], "authorized_access_point": "Amendements"} 1 -2023-08-08 13:37:42.227061 2023-08-08 13:37:42.227067 7a8c8457-8a03-44f4-bfae-b88074ac5e38 {"md5": "e40d34d817236d7d1f8018b64be6d49f", "pid": "083622519", "note": [{"label": ["S'emploie uniquement en subdivision aux constitutions (datées ou non), par ex. : France -- Constitution (1958) -- Révision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "deleted": "2022-08-25T10:47:31.616254+00:00", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083622519", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb14603811b", "source": "BNF"}], "classification": [{"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}], "variant_access_point": ["XXXXX"], "authorized_access_point": "Révision"} 1 -2023-08-08 13:37:42.292695 2023-08-08 13:37:42.2927 00d72b51-ef99-40fe-bf0b-02779d5961e8 {"md5": "4ad26a8d36417065fefa81ea7b0f2348", "pid": "092468675", "note": [{"label": ["Illustrated glossary of protoctista, 1992", "Introductory phycology / F. R. Trainor, 1988"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Algues"}, {"authorized_access_point": "Microorganismes"}], "related": [{"authorized_access_point": "Algues unicellulaires"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Microalgues benthiques"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/092468675", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb150116468", "source": "BNF"}], "classification": [{"name": "Botanique", "type": "bf:ClassificationDdc", "classificationPortion": "580"}], "variant_access_point": ["Micro-algues"], "authorized_access_point": "Microalgues"} 1 -2023-08-08 14:28:41.601347 2023-08-08 14:28:41.601353 95e02703-3e3a-4ff6-879e-0b81a0517ce4 {"md5": "9a9a27a84296352ad601e8fa30b87766", "pid": "027799395", "note": [{"label": ["Ne pas utiliser : employer les subdivisions 1900-1945, Histoire -- 1900-1945 ou les vedettes construites comprenant la subdivision 1918-1933"], "noteType": "seeReference"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:41.593466+00:00", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027799395", "source": "IDREF"}], "authorized_access_point": "1918-1933 (république de weimar)"} 1 -2023-08-08 13:37:42.377819 2023-08-08 13:37:42.377822 3bb91178-7c4a-4b84-9807-26a1894daec1 {"md5": "f173d2f46f7718f7d8a341764c9bd5e1", "pid": "113531923", "note": [{"label": ["Grand Robert de la langue française, 2001", "Les mots de la presse écrite / S. Bénard, 2002", "Le synopsis : présenter et vendre ses sujets / A. Kerloc'h, 2007", "Vocabulaire technique du cinéma / V. Pinel, 1996"], "noteType": "dataSource"}, {"label": ["Document de synthèse décrivant la totalité ou un aperçu d'une œuvre", "S'emploie également en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Scénarios"}], "related": [{"authorized_access_point": "Écriture journalistique"}, {"authorized_access_point": "Résumés analytiques"}], "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "LCGFT", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/genreForms/gf2014026038", "source": "LCGFT"}, "authorized_access_point": "Abstracts"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/113531923", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15517814h", "source": "BNF"}], "classification": [{"name": "Sciences de l'information", "type": "bf:ClassificationDdc", "classificationPortion": "020"}, {"name": "Audiovisuel", "type": "bf:ClassificationDdc", "classificationPortion": "791"}], "variant_access_point": ["Lancement (cinéma)", "Notes d'intention (journalisme)", "Préparation (cinéma)", "Synopsis (cinéma)", "Synopsis (journalisme)", "Synopsis de film"], "authorized_access_point": "Synopsis"} 1 -2023-08-08 13:37:42.470437 2023-08-08 13:37:42.470442 559a2be3-1f78-44bc-8119-77eb09df2bb3 {"md5": "bddbfb2aee8f1967592209a8c90dc206", "pid": "119256347", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman arabe"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Roman historique égyptien"}, {"authorized_access_point": "Roman historique libanais"}, {"authorized_access_point": "Roman historique syrien"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh95003231", "source": "LCSH"}, "authorized_access_point": "Historical fiction, Arabic"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/119256347", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15575719q", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}, {"name": "Histoire et géographie (généralités)", "type": "bf:ClassificationDdc", "classificationPortion": "900"}], "authorized_access_point": "Roman historique arabe"} 1 -2023-08-08 13:37:42.550432 2023-08-08 13:37:42.550435 ef63110e-d76a-4836-bbdc-2dbde1e4fd22 {"md5": "76dc58d441124bc3aa45378c3c2c1592", "pid": "130730173", "note": [{"label": ["Nouveau petit Robert 2009 : dématérialisation", "Vocabulaire juridique / G. Cornu, 2007 : dématérialisation", "Conseil des ministres du 13 février 2008. Le plan de dématérialisation des procédures juridictionnelles - https://www.vie-publique.fr (2022-07-22)", "Ordonnance n°2005-1516 du 8 décembre 2005 relative aux échanges électroniques entre les usagers et les autorités administratives et entre les autorités administratives"], "noteType": "dataSource"}, {"label": ["En droit, la dématérialisation (ou suppression de support matériel tangible) consiste à transformer un flux de données numériques en fichiers informatiques et à leur restituer selon leur domaine une valeur juridique"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Droit - Informatique"}, {"authorized_access_point": "Échange électronique d'information"}, {"authorized_access_point": "Informatique - Droit"}], "related": [{"authorized_access_point": "Authentification"}, {"authorized_access_point": "Dématérialisation (informatique)"}, {"authorized_access_point": "Numérisation - Droit"}, {"authorized_access_point": "Preuve électronique"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Communication électronique de pièces (droit)"}, {"authorized_access_point": "Contrats électroniques"}, {"authorized_access_point": "Contrats informatiques"}, {"authorized_access_point": "E-fiscalité"}, {"authorized_access_point": "E-justice"}, {"authorized_access_point": "Monnaie électronique"}, {"authorized_access_point": "Signatures électroniques"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/130730173", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15894744m", "source": "BNF"}], "classification": [{"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}, {"type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Gestion et organisation de l'entreprise", "type": "bf:ClassificationDdc", "classificationPortion": "650"}], "variant_access_point": ["Dématérialisation (droit)", "Dématérialisation (informatique) et droit", "Dématérialisation (informatique) - Droit", "Droit et dématérialisation des documents"], "authorized_access_point": "Actes juridiques électroniques"} 1 -2023-08-08 13:37:42.626114 2023-08-08 13:37:42.626119 0576fde7-69a6-4401-a4ca-0d033de4f356 {"md5": "2430c99d3336c93178b6ada43682c2eb", "pid": "132184214", "note": [{"label": ["Petit Larousse 2005", "Encycl universalis (art. : Enregistrement) - http://www.universalis-edu.com (2009-03-20)", "Dict. de la musique / M. Vignal, 2005", "Dict. des mots de la musique / J. Siron, 2006", "Monter, sampler : l'échantillonnage généralisé, 2000"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Boucles (musique)"}], "related": [{"authorized_access_point": "Échantillonneur (instrument de musique)"}, {"authorized_access_point": "Synthèse sonore"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh96010851", "source": "LCSH"}, "authorized_access_point": "Sampling (Sound)"}, {"source": "RVMLaval", "authorized_access_point": "Échantillonnage de sons"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/132184214", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb159798158", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "variant_access_point": ["Échantillonnage de sons", "Sampling (musique)", "Sons, Échantillonnage de"], "authorized_access_point": "Échantillonnage (musique)"} 1 -2023-08-08 13:37:43.32265 2023-08-08 13:37:43.322654 1cb4f9da-2dcc-4815-bc2d-69d7d2bc9d26 {"md5": "95a4647a971ee803898c73194583345f", "pid": "25410875X", "note": [{"label": ["Encycl. universalis (art. : Islam (histoire) : le monde musulman contemporain) - http://www.universalis-edu.com (2022-04-29)", "Changer l'Islam : dict. des réformateurs musulmans des origines à nos jours / M. Chebel, 2013", "Islam et politique en Asie centrale / O. Roy, M. Gaborieau, A. Popovic [in] Archives de sciences sociales des religions, 2001, 115 - https://journals.openedition.org (2022-04-29)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Réformisme islamique"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "https://id.loc.gov/authorities/subjects/sh2004004554", "source": "LCSH"}, "authorized_access_point": "Jadidism"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25410875X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18011673k", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"type": "bf:ClassificationDdc", "classificationPortion": "950"}], "variant_access_point": ["Džadidizm", "Джадидизм", "Zhadidchilik"], "authorized_access_point": "Jadidisme"} 1 -2023-08-08 13:37:42.728491 2023-08-08 13:37:42.728496 0d5fa7cd-17e5-4f9e-8bed-57707e36ef7e {"md5": "603ab88829ef99cecec86002a4d6d925", "pid": "146321944", "note": [{"label": ["Wikipedia - http://fr.wikipedia.org (2010-08-17)", "Encycl. universalis (art. : Musique techno) : hardcore - http://www.universalis-edu.com (2010-08-17)", "Global tekno : voyage initiatique au coeur de la musique électronique / J.-Y. Leloup, J.-P. Renoult, 1999 : hardcore", "Dict. du rock / M. Assayas, 2000 (art. : Techno) : hardcore", "Dict. des mots de la musique / J. Siron, 2006 : hardcore techno", "Allmusic : hardcore techno - http://www.allmusic.com (2010-08-17)"], "noteType": "dataSource"}, {"label": ["Version dure, rapide et industrielle de la techno, apparue dans les années 1990"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Techno (musique)"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Breakcore"}, {"authorized_access_point": "Gabber"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Techno hardcore (Musique)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/146321944", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb162242755", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "variant_access_point": ["Hardcore techno"], "authorized_access_point": "Techno hardcore"} 1 -2023-08-08 13:37:42.801655 2023-08-08 13:37:42.801659 4efc7b99-b2d9-49eb-abc7-ad98748cfefb {"md5": "b23f2521a9287cb5cf268e2c6e3eba8e", "pid": "146774094", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Poésie italienne"}], "related": [{"authorized_access_point": "Littérature héroï-comique italienne"}, {"authorized_access_point": "Poésie narrative italienne"}], "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85044332", "source": "LCSH"}, "authorized_access_point": "Epic poetry, Italian"}, {"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85044288", "source": "LCSH"}, "authorized_access_point": "Epic literature, Italian"}, {"source": "RVMLaval", "authorized_access_point": "Littérature épique italienne"}, {"source": "RVMLaval", "authorized_access_point": "Poésie épique italienne"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/146774094", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120350248", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Épopées italiennes"} 1 -2023-08-08 13:37:42.850988 2023-08-08 13:37:42.850992 8a35e448-aad6-402c-9500-40e746129728 {"md5": "4dd1808ef506277d02ae096cd1ea216b", "pid": "16573762X", "note": [{"label": ["Dict. sanskrit-français / N. Stchoupak, L. Nitti, L. Renou, 1972", "Dict. encyclopédique du bouddhisme / P. Cornu, 2006", "Brill's encycl. of Hinduism / K. A. Jacobsen, 2009-2015", "Avidyā : a problem of truth and reality / E. A. Solomon, 1969", "BnF Service indien, 2017-04-19"], "noteType": "dataSource"}, {"label": ["Concept d'ignorance à la base de tous les maux et de toutes les passions dans les différentes écoles du bouddhisme"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bouddhisme - Doctrines"}], "related": [{"authorized_access_point": "Jñāna-yoga"}, {"authorized_access_point": "Samsāra"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85010544", "source": "LCSH"}, "authorized_access_point": "Avidyā"}, {"source": "RVMLaval", "authorized_access_point": "Avidyā"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/16573762X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16641477s", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Avijjā", "अविज्जा", "Avvijā", "अव्विजा"], "authorized_access_point": "Avidyā"} 1 -2023-08-08 13:37:42.901127 2023-08-08 13:37:42.90113 36efb1cd-2551-4847-883b-60a7e5fcc40f {"md5": "97b00d6974086b6339c77a07803598c0", "pid": "16719416X", "note": [{"label": ["Nouveau petit Robert 2010", "JurisClasseur Europe Traité > Fasc.100 : Union européenne.- Histoire de la construction européenne - Acte unique européen (1986-1987)", "Le système institutionnel européen ou l'affirmation d'une Europe puissance politique : l'enjeu des révisions des traités / F. R. Barbaro, [s.d.]"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Traités"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85137215", "source": "LCSH"}, "authorized_access_point": "Treaties--Revision"}, {"source": "RVMLaval", "authorized_access_point": "Traités -- Révision"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/16719416X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb166589741", "source": "BNF"}], "classification": [{"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}], "variant_access_point": ["Traités - Révision"], "authorized_access_point": "Révision des traités"} 1 -2023-08-08 13:37:43.416239 2023-08-08 13:37:43.416243 fc391a5f-587f-4bf3-9063-d2e9a4205969 {"md5": "adbab850a992784d4dc8847fce66b656", "pid": "255690444", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sérénades ([distributions instrumentales])"}, {"authorized_access_point": "Trios (flûte, violon, alto)"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255690444", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb179457866", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Sérénades (flûte, violon, alto)"} 1 -2023-08-08 14:28:41.677178 2023-08-08 14:28:41.677184 fac1ced9-3c64-43db-a6aa-8f055bc0d255 {"md5": "c47a5273bed0d6c1f50d0d6a2463e1c1", "pid": "027799409", "note": [{"label": ["Ne pas utiliser : employer les subdivisions 1900-1945, Histoire -- 1900-1945 ou les vedettes construites comprenant la subdivision 1918-1938"], "noteType": "seeReference"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:41.670485+00:00", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027799409", "source": "IDREF"}], "authorized_access_point": "1918-1938"} 1 -2023-08-08 13:37:42.954575 2023-08-08 13:37:42.954578 8f7707d6-5e96-4858-942e-d9bd58605344 {"md5": "f7f0d81565f2fbcf913a42ae8f366fb3", "pid": "172690250", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Vie intellectuelle - Espagne"}, {"authorized_access_point": "Mouvements littéraires - [Localisations géographiques]"}], "related": [{"authorized_access_point": "Littérature espagnole"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Créationnisme (mouvement littéraire)"}, {"authorized_access_point": "Generación del 50 (littérature espagnole)"}, {"authorized_access_point": "Génération de 98 (mouvement littéraire)"}, {"authorized_access_point": "La otra sentimentalidad"}, {"authorized_access_point": "Modernisme (mouvement littéraire hispanophone)"}, {"authorized_access_point": "Noucentisme"}, {"authorized_access_point": "Novísimos"}, {"authorized_access_point": "Nuevo romanticismo"}, {"authorized_access_point": "Poesía de la conciencia"}, {"authorized_access_point": "Ultraïsme"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2002008852", "source": "LCSH"}, "authorized_access_point": "Literary movements -- Spain"}, {"source": "RVMLaval", "authorized_access_point": "Mouvements littéraires -- Espagne"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/172690250", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb167173405", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Mouvements littéraires - Espagne"} 1 -2023-08-08 13:37:43.003869 2023-08-08 13:37:43.003873 07e5fe60-6ca7-46e3-9166-af9b308fb07e {"md5": "2f16051255a4ce5b77e21d8f6c737134", "pid": "174131887", "note": [{"label": ["Encycl. universalis (art. : Guitare basse) - http://www.universalis-edu.com (2013-11-04)", "Dict. des mots de la musique / J. Siron, 2006", "Les instruments de musique dans le monde vol. 1 / F.-R. Tranchefort, 1980", "Oxford Music online (art. : Nigeria, Federal Republic of) - http://www.oxfordmusiconline.com (2013-11-04)", "L'odyssée africaine d'un cordophone rudimentaire : le « luth à pique intérieure » / C. Baroin [in] Afrique Archéologie Arts, 7, 2011", "Musique et littérature orale chez les Peuls du Mali / C. Seydoux [in] L'Homme, 1998, 148"], "noteType": "dataSource"}, {"label": ["Encycl. de la musique, 1992. - Dict. encyclopédique de la musique / D. Arnold, 1988. - Médiathèque de la Cité de la musique : http://mediatheque.cite-musique.fr (2013-11-04). - Maison des cultures du monde : http://mcm.base-alexandrie.fr:8080 (2013-11-04)"], "noteType": "dataNotFound"}, {"label": ["Afrique de l'Ouest. Luth à structure composite. Caisse de résonance hémisphérique constituée d'une demi-calebasse recouverte d'une peau de vache tannée et pénétrée par un manche sans frettes en forme de bâton. Taille variable selon les régions. Cordes pincées au nombre de 1 (nord du Sénégal), de 2 (Ghana, Nigéria) ou de 3 (population songhaï et hausa)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Instruments de musique - Afrique occidentale"}, {"authorized_access_point": "Luths (famille d'instruments)"}], "related": [{"authorized_access_point": "Khalam"}, {"authorized_access_point": "Molo, Musique de"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/174131887", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16720369d", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "variant_access_point": ["Molaandu", "Móólóó", "Moolooru", "Mulore"], "authorized_access_point": "Molo"} 1 -2023-08-08 13:37:43.060945 2023-08-08 13:37:43.060947 8a075055-432c-4783-8aa8-b98721ae7ea0 {"md5": "489f92bf9c07a0102a6aa943ceb6c2ed", "pid": "18456381X", "note": [{"label": ["Grand Larousse universel (art. : Rouleau)", "Encycl. universalis (art. : Macadam) - http://www.universalis-edu.com (2017-01-10)", "Wikipédia - https://fr.wikipedia.org (2017-01-10)", "CACES R 372 m catégorie 7. Compacteurs : Guide pour l'évaluation pratique / INRS, 2014"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Engins de terrassement"}, {"authorized_access_point": "Engins routiers"}], "related": [{"authorized_access_point": "Sols - Compactage"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85114483", "source": "LCSH"}, "authorized_access_point": "Road rollers"}, {"source": "RVMLaval", "authorized_access_point": "Rouleaux (Travaux publics)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/18456381X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb170991500", "source": "BNF"}], "classification": [{"name": "Technique", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["Compacteurs", "Cylindres (rouleaux compresseurs)", "Engins de compactage", "Rouleaux à pieds", "Rouleaux à pneus", "Rouleaux compacteurs", "Rouleaux compresseurs vibrateurs", "Rouleaux vibrants"], "authorized_access_point": "Rouleaux compresseurs"} 1 -2023-08-08 13:37:43.142436 2023-08-08 13:37:43.142439 5f0e396e-e587-4130-a199-3f94b9205566 {"md5": "01f115aa70104733f60931bccd9f203a", "pid": "245367888", "note": [{"label": ["Wikipédia (art. : Hirak) ; Hirak (Algérie) - https://fr.wikipedia.org (2020-06-16)", "Du hirak au harak, tentative de lexique - https://www.elwatan.com (2020-06-16)", "Hirak en Algérie, l'invention d'un soulèvement, 2020", "Algérie, la nouvelle indépendance / J.-P. Filiu, 2019", "Algérie : l'inlassable défi du Hirak [in] Le Monde, 2020-02-22 - https://www.lemonde.fr (2020-06-16)"], "noteType": "dataSource"}, {"label": ["Hirak : mot arabe signifiant étymologiquement « mouvement » et désignant des mouvements de contestations populaires dans les pays du monde arabe, notamment au Yémen, en Irak, au Maroc (Rif) et en Algérie. En Algérie, série de manifestations sporadiques depuis le 22 février 2019 pour protester dans un premier temps contre la candidature d'Abdelaziz Bouteflika à un cinquième mandat présidentiel, puis contre son projet, également contesté par l'armée, de se maintenir au pouvoir à l'issue de son quatrième mandat dans le cadre d'une transition et de la mise en œuvre de réformes"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Manifestations - Algérie"}, {"authorized_access_point": "Mouvements contestataires"}, {"authorized_access_point": "Politique et gouvernement - Algérie - 1999-...."}, {"authorized_access_point": "Algérie - 1992-...."}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/245367888", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17876933v", "source": "BNF"}], "classification": [{"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"type": "bf:ClassificationDdc", "classificationPortion": "950"}], "variant_access_point": ["Al-Hirak (Algérie)", "Harak (Algérie ; 2019-....)", "Harak (mouvement ; Algérie ; 2019-....)", "Hirak (Algérie ; 2019-....)", "Hirak algérien"], "authorized_access_point": "Hirak (mouvement ; Algérie ; 2019-....)"} 1 -2023-08-08 13:37:43.230162 2023-08-08 13:37:43.230166 16b08667-c4cb-4ddd-b90e-f833e56afb0d {"md5": "aa42520f473197a96cbc62c9fc3cce1f", "pid": "252252063", "note": [{"label": ["Dic. do romantismo literário português, 1997 (art. : Coimbra, e a literature romantica)", "A geração de 70 : uma geração revolucionária e europeísta / J. Medina, 1999", "História e Ficção Romanesca : Um Olhar sobre a Geração de 70 em Portugal / P. Franchetti [in] Santa Barbara Portuguese Studies, 1997, 4", "A Geracão de 70 : uma sintese provisoria / J. Medina, 1975", "Portugal's Geração de 70 : Drama influenced by a Changing World / C. M. Pierson, 2009 [in] Theatre Research International , 1995, 20, 1", "La génération de 70 : époque, chefs de file, relations avec la France : exposition bibliographique, 1971", "Contribution à l'étude des idées politiques et sociales de l'École de Coimbra / R. Leal, 1941", "Modernity and modernism in Portugal : the \\"Questao Coimbra\\" and the generation of 1870 / D. J. Sadlier [in] Nineteenth-century prose, 2005, 32, 1"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Modernisme (mouvement littéraire portugais)"}, {"authorized_access_point": "Littérature portugaise"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/252252063", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18011072k", "source": "BNF"}], "classification": [{"name": "Poésie", "type": "bf:ClassificationDdc", "classificationPortion": "801"}], "variant_access_point": ["Génération de 1870 (littérature portugaise)", "Génération de 70 (littérature portugaise)", "Génération de Coïmbra (littérature portugaise)", "Geração de 1870 (littérature portugaise)"], "authorized_access_point": "Geração de 70 (littérature portugaise)"} 1 -2023-08-08 13:37:43.481245 2023-08-08 13:37:43.481248 c14db206-b3a5-4ea3-b88e-654dc272ef93 {"md5": "0d90d00c3139018d517f786652f99800", "pid": "256524203", "note": [{"label": ["Les intérêts théoriques de l'amorçage syntaxique / M. Poletti, L. Le Bigot, F.Rigalleau [in] L'année psychologique, 2012, 2, vol. 112 - https://www.cairn.info/revue-l-annee-psychologique1-2012-2-page-247", "Effet d'amorçage syntaxique - https://skosmos.loterre.fr/P66/fr/page/-GM3KP6TP-F (2022-07-19)", "Effet d'amorçage structurel en français langue seconde : une étude de corpus longitudinale / A. Thomas [in] SHS Web of Conferences 8, 1591-1605 (2014) - https://www.linguistiquefrancaise.org/articles/shsconf/abs/2014/05"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Psycholinguistique"}], "related": [{"authorized_access_point": "Mémoire implicite"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Amorçage (psychologie)"}, {"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh87006196", "source": "LCSH"}, "authorized_access_point": "Priming (psychology)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/256524203", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180252531", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}, {"type": "bf:ClassificationDdc", "classificationPortion": "401"}], "variant_access_point": ["Amorçage structural", "Effet d'amorçage syntaxique", "Persistance structurale", "Persistance syntaxique"], "authorized_access_point": "Amorçage syntaxique"} 1 -2023-08-08 13:37:43.562663 2023-08-08 13:37:43.562667 1bc315af-8d88-4610-9780-3ff86ce92bd7 {"md5": "27f7678f001a92dfe5eba0d6acc469dc", "pid": "258617527", "note": [{"label": ["Réseau Canopé : Rituels et activités ritualisées à l'école maternelle, des soutiens pour le développement de l'enfant - https://www.reseau-canope.fr (2022-07-15)", "Rituels d'enseignement et d'apprentissage / F. Hatchuel [in] Hermès, 2006, 43 - https://www.cairn.info (2022-07-15)", "L' entrée dans le contrat didactique à l'école maternelle : le rôle des rituels dans la construction d'un milieu pour apprendre / L. Garcion-Vautor, 2000 [thèse] (2022-07-15)", "Activités ritualisées en maternelle / J. Alban-Arrouy, I. Marchesan, P. Schmitt, 2009"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Psychologie scolaire"}, {"authorized_access_point": "Rituel (psychologie)"}], "related": [{"authorized_access_point": "Classes (éducation) - Conduite"}, {"authorized_access_point": "Contrat pédagogique"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "authorized_access_point": "Ritual--Study and teaching"}, {"source": "RVMLaval", "authorized_access_point": "Rituel--Étude et enseignement"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258617527", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18024967d", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}, {"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}], "variant_access_point": ["Activités ritualisées à l'école", "Rituels à l'école", "Rituels d'apprentissage", "Rituels d'enseignement", "Rituels de classe", "Rituels scolaires"], "authorized_access_point": "Rituels (éducation)"} 1 -2023-08-08 13:37:43.663041 2023-08-08 13:37:43.663046 d1eb5cb8-0597-46f3-b218-3aad43a5c53e {"md5": "12a22a266215d5dee558f6308b45a113", "pid": "25906288X", "note": [{"label": ["Trésor de la langue française - http://stella.atilf.fr (2022-07-18)", "Pédagogie, dict. des concepts clés / F. Raynal, A. Rieunier, 2009", "Eduscol : Lecture et compréhension de l'écrit : la compréhension des consignes - https://eduscol.education.fr (2022-07-18)", "Comprendre les énoncés et les consignes : un point fort du socle commun / J.-M. Zakhartchouk, 2019"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Énonciation (linguistique)"}, {"authorized_access_point": "Tâches (éducation)"}], "related": [{"authorized_access_point": "Langage - Compréhension"}, {"authorized_access_point": "Lecture - Aspect cognitif"}, {"authorized_access_point": "Psychologie cognitive"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25906288X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18025123t", "source": "BNF"}], "classification": [{"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}], "variant_access_point": ["Consignes pédagogiques", "Consignes scolaires", "Instructions (éducation)"], "authorized_access_point": "Consignes (éducation)"} 1 -2023-08-08 13:37:43.744297 2023-08-08 13:37:43.744305 5b0e2923-47a5-4f7d-8338-ee39e53561dd {"md5": "bf03a9de734d5750c2ddeb716dda9efe", "pid": "259596337", "note": [{"label": ["Ne pas confondre marge chirurgicale et marge histologique en chirurgie des carcinomes cutanés ! / J.-F. Sei, M. Beylot-Barry, B. Cribier [in] Annales de dermatologie et de vénéréologie FMC, 2021, 1, 5", "Les marges chirurgicales dans le cancer de la prostate. CCAFU revue de la littérature [in] Progrès en urologie, 2014, 24, 6"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Chirurgie"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "MeSH", "identifiedBy": {"type": "uri", "value": "https://id.nlm.nih.gov/mesh/M000617728", "source": "MeSH"}, "authorized_access_point": "Margins of Excision"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/259596337", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18021714j", "source": "BNF"}], "classification": [{"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Marges (chirurgie)", "Marges d'exérèse", "Marges histologiques", "Marges histologiques de sécurité"], "authorized_access_point": "Marges chirurgicales"} 1 -2023-08-08 13:37:44.078303 2023-08-08 13:37:44.078305 b9680856-5a24-4692-87cc-4d39fd49286c {"md5": "568fba0183f4e9b2d9aea72e1dd1e06e", "pid": "261107909", "note": [{"label": ["Naval Group promet un drone sous-marin dans quatre ans / A. Bauer [in] les Echos, 8 oct. 2021 - https://www.lesechos.fr (2022-07-11)", "Ligue de la mer : Drone sous marin : les 5 meilleurs modèles en 2022 - https://liguedelamer.com (2022-07-11)", "Poseidon oceanic multipurpose system : russia's nuclear strike undersea drone / H. Harkins, 2019"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Drones"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261107909", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180243861", "source": "BNF"}], "classification": [{"name": "Art et science militaires", "type": "bf:ClassificationDdc", "classificationPortion": "355"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["Undersea drone", "Underwater drone"], "authorized_access_point": "Drones sous-marins"} 1 -2023-08-08 13:37:43.825151 2023-08-08 13:37:43.825154 564be194-0dfa-4629-bdfc-57fb8841f95c {"md5": "f174e1ddf5a56c58b911f313b1953cc8", "pid": "259599174", "note": [{"label": ["Dict. de l'Académie de médecine - http://dictionnaire.academie-medecine.fr (2022-07-06)", "Dict. de médecine Flammarion, 2008 (art. : Banque)", "Une banque d'os de haute sécurité pour allogreffes [in] Revue française des laboratoires, 2005, 371"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Banques de tissus"}], "related": [{"authorized_access_point": "Os"}, {"authorized_access_point": "Tissu osseux"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "https://id.loc.gov/authorities/subjects/sh85015515", "source": "LCSH"}, "authorized_access_point": "Bone banks"}, {"source": "MeSH", "identifiedBy": {"type": "uri", "value": "https://id.nlm.nih.gov/mesh/M0027859", "source": "MeSH"}, "authorized_access_point": "Bone Banks"}, {"source": "RVMLaval", "authorized_access_point": "Banques d'os"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/259599174", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180217376", "source": "BNF"}], "classification": [{"name": "Sciences de la vie", "type": "bf:ClassificationDdc", "classificationPortion": "570"}, {"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Banques de tissu osseux", "Os, Banques d'", "Tissu osseux, Banques de"], "authorized_access_point": "Banques d'os"} 1 -2023-08-08 13:37:43.876555 2023-08-08 13:37:43.876558 4e42a26d-4632-49cf-a7a5-11729b80525f {"md5": "a6bcaa5e7d21d6f3bbf7283f336ce8e3", "pid": "259943401", "note": [{"label": ["Trésor de la langue française : corporéité, corporalité - http://stella.atilf.fr (2022-07-13)", "Grand dict. de la philosophie / M. Blay, 2003", "Dict. de philosophie / C. Godin, 2004", "Dict. Merleau-Ponty / P. Dupond, 2007", "Structure, origine et affectivité : quelques réflexions à propos de la corporéité / G. Florival [in] Revue philosophique de Louvain, 1979, 34 - https://www.persee.fr (2022-07-13)", "Le corps de la responsabilité : sensibilité, corporéité et subjectivité chez Lévinas / R. Calin [in] Les études philosophiques, 2006, 3, 78 - https://www.cairn.info (2022-07-13)", "Altérité et corporéité dans l'oeuvre de Jean-Paul Sartre / A. Abdellaoui, 2008 [thèse]"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Corps (philosophie)"}], "related": [{"authorized_access_point": "Esprit et corps"}, {"authorized_access_point": "Phénoménologie"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "GND", "authorized_access_point": "Leiblichkeit"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/259943401", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18024286r", "source": "BNF"}], "classification": [{"name": "Philosophie", "type": "bf:ClassificationDdc", "classificationPortion": "100"}], "variant_access_point": ["Corporalité (philosophie)", "Corporéité (philosophie)", "Corps vécu (philosophie)", "Leib (philosophie)"], "authorized_access_point": "Chair (philosophie)"} 1 -2023-08-08 13:37:43.926956 2023-08-08 13:37:43.926959 29371555-eb1b-4386-b464-08054b33a488 {"md5": "f34cb8c3c49098160a0d6cc0201b1576", "pid": "259951293", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Réfugiés syriens"}, {"authorized_access_point": "Syriennes"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/259951293", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17992194g", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"type": "bf:ClassificationDdc", "classificationPortion": "305"}, {"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Problèmes et services sociaux", "type": "bf:ClassificationDdc", "classificationPortion": "360"}, {"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "variant_access_point": ["Femmes syriennes réfugiées", "Syriennes - Réfugiées"], "authorized_access_point": "Réfugiées syriennes"} 1 -2023-08-08 13:37:43.981013 2023-08-08 13:37:43.981016 f4cf6a8e-44ff-4f96-ba37-8f98a0d567c6 {"md5": "a070b26c380708e0cb7a458c7310608e", "pid": "259974811", "note": [{"label": ["Orphanet - https://www.orpha.net (2022-07-15)", "Dict. de l'Académie de médecine - http://dictionnaire.academie-medecine.fr (2022-07-15)", "Dict. de l'Académie nationale de pharmacie - https://dictionnaire.acadpharm.org (2022-07-15)", "Dict. illustré des termes de médecine, 2012 (art. : Adamantinome)", "Dict. de médecine Flammarion, 2008"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tumeurs"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "MeSH", "identifiedBy": {"type": "uri", "value": "https://id.nlm.nih.gov/mesh/M0000883", "source": "MeSH"}, "authorized_access_point": "Ameloblastoma"}, {"source": "RVMLaval", "authorized_access_point": "Améloblastome"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/259974811", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180248643", "source": "BNF"}], "classification": [{"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Adamantinome", "Adamantoblastome", "Amélome"], "authorized_access_point": "Améloblastome"} 1 -2023-08-08 13:37:44.030669 2023-08-08 13:37:44.030673 ec796417-0adc-475a-8aaf-b0273521ce5c {"md5": "323ff5cf4b178270d43b26520c321fbf", "pid": "259995118", "note": [{"label": ["Syncopes vasoplégiques et lésion du sympathique cervical / T. Plagnieux, 2000 [thèse]", "Infarctus du myocarde chez un transplanté cardiaque / G. Drobinski, R. Dorent [in] La Lettre du cardiologue, 1999, 320", "La migraine : connaissances descriptives, traitements et prévention, 1998", "Dict. de médecine Flammarion, 2008 : tyramine (épreuve à la)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Diagnostic biologique"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/259995118", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18021099t", "source": "BNF"}], "classification": [{"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Épreuve à la tyramine", "Tyramine, Épreuve à la", "Tyramine, Test à la"], "authorized_access_point": "Test à la tyramine"} 1 -2023-08-08 13:37:44.158849 2023-08-08 13:37:44.158854 5fba171d-003d-494c-bd48-c1e89cc37710 {"md5": "e42955314869496c985b6f94bf2d9546", "pid": "261196715", "note": [{"label": ["Wikipédia - https://en.wikipedia.org (2022-07-11)", "Rules and regulations of the Magellanic Premium / American Philosophical Society, nc", "The Magellanic Premium of the American Philosophical Society - https://www.amphilsoc.org (2022-07-11)"], "noteType": "dataSource"}, {"label": ["Prix créé en 1786 grâce à une subvention de Jean-Hyacinthe Magellan. Il est attribué par l'American Philosophical Society pour des contributions majeures dans le domaine de la navigation (que ce soit par voie maritime, aérienne ou spatiale)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Prix et récompenses"}], "related": [{"authorized_access_point": "Navigation"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261196715", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18024307w", "source": "BNF"}], "classification": [{"name": "Généralités", "type": "bf:ClassificationDdc", "classificationPortion": "000"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["Magellanic Gold Medal", "Magellanic Prize"], "authorized_access_point": "Magellanic Premium"} 1 -2023-08-08 13:37:44.242476 2023-08-08 13:37:44.242479 c5e8ff27-3263-4022-9bfd-1b3b854f9280 {"md5": "9a7f43d1805d465fb08ff9cc2cdf7d3a", "pid": "261901532", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Guerre mondiale (1939-1945) - Mouvements de résistance"}, {"authorized_access_point": "Grèce - 1941-1944 (Occupation)"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2008113907", "source": "LCSH"}, "authorized_access_point": "World War, 1939-1945--Underground movements--Greece"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261901532", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb178988057", "source": "BNF"}], "classification": [{"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire médiévale, moderne et contemporaine (sauf la France)", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "authorized_access_point": "Guerre mondiale (1939-1945) - Mouvements de résistance - Grèce"} 1 -2023-08-08 13:37:44.312523 2023-08-08 13:37:44.312529 3f080b95-8ccf-453b-80f0-beb4f9954b5e {"md5": "4510d28fdc9fec8367a3bd4bb6f5aa6e", "pid": "262111012", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Poésie italienne"}], "related": [{"authorized_access_point": "Épopées italiennes"}], "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99010470", "source": "LCSH"}, "authorized_access_point": "Narrative poetry, Italian"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262111012", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18003960b", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Poésie narrative italienne"} 1 -2023-08-08 13:37:44.390746 2023-08-08 13:37:44.390755 eb451445-62b1-4033-a514-de55248fb188 {"md5": "fa3d70e0aa75a8179143a0083ab01f44", "pid": "262111020", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Nouvelles espagnoles"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262111020", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18003978d", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Minifictions espagnoles"], "authorized_access_point": "Micronouvelles espagnoles"} 1 -2023-08-08 13:37:44.476006 2023-08-08 13:37:44.47601 106e21c4-3d4d-4679-a999-77b84f008495 {"md5": "5772a7ec2d6923ef0e154cd43e416940", "pid": "262111039", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262111039", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18006555c", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Choeurs profanes (voix d'hommes, 5 voix) acc. de piano"} 1 -2023-08-08 13:37:44.541502 2023-08-08 13:37:44.541506 19c8c914-4725-41a7-865e-4c9e28dbc75b {"md5": "8d8edb307ff4d8719cb20763863dba93", "pid": "262111071", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh88005277", "source": "LCSH"}, "authorized_access_point": "Variations (Cello with string ensemble)"}, {"source": "RVMLaval", "authorized_access_point": "Variations (Violoncelle et ensemble à cordes)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262111071", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18008046h", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Variations (violoncelle et ensemble à cordes)"} 1 -2023-08-08 13:37:44.608373 2023-08-08 13:37:44.60838 f0a499fa-41bb-4211-a7b5-3afb14a8976b {"md5": "934f5a1c5cbf0279cf3884632e489222", "pid": "26211108X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26211108X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180080486", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Variations (violons (2), alto, violoncelles (2))"} 1 -2023-08-08 13:37:47.462587 2023-08-08 13:37:47.462592 04202c57-1d2f-4b95-82cd-3a63c8be2e66 {"md5": "e687ccad9f854cd328dbc38f456f4921", "pid": "263714357", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Arabesques ([distributions instrumentales])"}, {"authorized_access_point": "Alto, Musique d'"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714357", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18024243g", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Arabesques (alto)"} 1 -2023-08-08 13:37:44.699242 2023-08-08 13:37:44.699248 e105e009-9df4-4d65-9677-f648c398025d {"md5": "9ca0ee125bb6d7a4e06ccd6326ef9e5f", "pid": "262111098", "note": [{"label": ["Éléments pour une définition des séries cartographiques / J.-L. Arnaud [in] Documentation et bibliothèques, 2015, 61-4", "Séries cartographiques et géoréférencement : nouveau contexte, nouveaux enjeux / J.-L. Arnaud [in] e-Perimetron, 2015, 10, 4", "Catalogues et ressources du département des Cartes et plans - https://bnf.fr (2022-04-13)"], "noteType": "dataSource"}, {"label": ["Cartes dont la publication obéit à une logique sérielle, l'ensemble d'une série formant un tout cohérent"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Cartes"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262111098", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18008626j", "source": "BNF"}], "classification": [{"name": "Géographie, tourisme (guides) et voyages", "type": "bf:ClassificationDdc", "classificationPortion": "910"}], "variant_access_point": ["Séries de cartes"], "authorized_access_point": "Séries cartographiques"} 1 -2023-08-08 13:37:44.785615 2023-08-08 13:37:44.785627 3d6f937e-addc-4e71-916a-b62d0d0b74a4 {"md5": "5832609e6dc46e7c565999c3dc21cec2", "pid": "262125927", "note": [{"label": ["Grand Larousse universel", "Encycl. universalis - http://www.universalis-edu.com (2022-04-22)", "Dict. des religions / P. Poupard, 1993 (art. : Fêtes hindoues)", "Hist. des religions. II / H.-C. Puech, 1972"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fêtes religieuses - Hindouisme"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh86002490", "source": "LCSH"}, "authorized_access_point": "Holi (Hindu festival)"}, {"source": "RVMLaval", "authorized_access_point": "Holī"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262125927", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18010303b", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"type": "bf:ClassificationDdc", "classificationPortion": "391"}], "variant_access_point": ["Fête des couleurs (hindouisme)", "Phâlgunotsava", "Vasantotsava"], "authorized_access_point": "Holi"} 1 -2023-08-08 13:37:44.879204 2023-08-08 13:37:44.879208 3436d0a6-93d5-467b-ae0b-3e5bbc302d22 {"md5": "b412e5ac6c74cec12ab0619c71d8d3a2", "pid": "262413817", "note": [{"label": ["Biographisch-Bibliographisches Kirchenlexikon (art. : Abel, Karl August von) : Kniebeugungsstreit vom 14.8.1838 [bis] 12.12.1845 - https://www.bbkl.de (2022-07-21)", "Über Protantismus und Kniebegeugung in Bayern / F. Thiersch, 1844", "Zweites offenes Bedenken, die Kniebeugungs-Frage, insbesondere die neueste Entschliessung vom 3. November 1844 betreffend : mit zwei Beilagen / F. F. K. Graf von Giech, 1841", "Haus der Bayerischen Geschichte (art. Königsreich Bayern 1806-1918 : Kniebeugeerlass) - https://www.hdbg.eu (2022-04-29)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262413817", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18010802c", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["der Kniebeugungeerlass", "die Frage der Kniebeugung der Protestanten", "die Kniebeugungsstreit", "Question de la génuflexion"], "authorized_access_point": "die Kniebeugungsfrage (1838-1845)"} 1 -2023-08-08 13:37:44.92945 2023-08-08 13:37:44.929453 92ac3144-2c62-44e6-932f-d37e0baa03ae {"md5": "bb88efed39ec66d2e8ea8e621a4991ad", "pid": "262414023", "note": [{"label": ["Le soufisme à l'époque ottomane, XVI-XVIIIe siècle / R. Chih, C. Mayeur-Jaouen, 2010", "Dict. historique de l'Islam / J. et D. Sourdel, 2004 (art.: Suhrwardiya) : Shattâriya", "Encycl. of Islam, 1998 : S̲h̲aṭṭārīya", "The Oxford dict. of Islam / J. L. Esposito, 2003 : Shattari Tariqah", "Les voies d'Allah / A. Popovic, G. Veinstein, 1996 : Chattâriyya, Chattârî"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Confréries musulmanes"}, {"authorized_access_point": "Soufisme"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "https://id.loc.gov/authorities/subjects/sh2001009476", "source": "LCSH"}, "authorized_access_point": "Shaṭṭārīyyah"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262414023", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18011878v", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Shattâriyya", "Chattâriyya", "Chattârî", "Shattari tariqah"], "authorized_access_point": "Shaṭṭārīyya"} 1 -2023-08-08 13:37:44.978058 2023-08-08 13:37:44.978061 4659a9bf-dd38-42ef-8467-ce1fa903abf7 {"md5": "1b3cd2ce060dec04cccddea6143aafcd", "pid": "262414082", "note": [{"label": ["Encycl. universalis (art. : Judaïsme, les pratiques)", "Dict. encyclopédique du judaïsme, 1993 : kapparot", "Encycl. Judaica, 2007", "Les fêtes juives / Y. Leibowitz, 2008 : coutumes des kapparoth", "Dict. du judaïsme / A. Unterman, 1997 : coutume des kapparoth (sg : kapporos)", "Le judaïsme dans la vie quotidienne / E. Gugenheim, 1992 : usage des kapparoth", "Dict. de civilisation juive / J.-C. Attias, E. Benbassa, 1997 (art. : Solennités) : cérémonie des kaparot", "The encycl. of Judaism / J. Neusner, A. J. Avery-Peck, W. S. Green, 2003 (art. : Superstitions in Judaism) : Kapparah, sg. (yiddish : kappore shlagn)", "Oxford dict. of the Jewish religion : custom of kapparot"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Judaïsme - Rites et cérémonies"}], "related": [{"authorized_access_point": "Yom Kippour"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262414082", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180121874", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"type": "bf:ClassificationDdc", "classificationPortion": "391"}], "variant_access_point": ["Kaparot", "Kapparah", "Kappore shlagn", "Cérémonie des kapparoth", "Coutume des kapparoth", "Expiations", "Kapparoth, Cérémonie des", "Kapparoth, Coutume des"], "authorized_access_point": "Kapparoth"} 1 -2023-08-08 13:37:45.025572 2023-08-08 13:37:45.025576 86cbc751-c3c2-498b-bfc9-d2b73f75bfcb {"md5": "b146d4afef3127d6ad18adc50a195921", "pid": "262414112", "note": [{"label": ["Encycl. universalis (art. : Homme, fils de l') - www.universalis-edu.com (2022-05-05)", "Dict. Jésus / École biblique et archéologique française de Jérusalem, 2021 (art. : Fils de l'homme ; Fils d'homme ; Ho huios tou anthrôpou ; Ben ãdãm)", "Jésus, l'encycl., 2017", "Sur les pas du Fils de l'homme : la théologie selon Saint Marc / A. Begasse de Dhaem [in] Nouvelle revue théologique, 2011, 133 - https://www.cairn.info (2022-05-11)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "https://id.loc.gov/authorities/subjects/sh85124809", "source": "LCSH"}, "authorized_access_point": "Son of Man"}, {"source": "RVMLaval", "authorized_access_point": "Fils de l'homme"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262414112", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180125788", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Fils d'homme", "Homme, Fils de l'", "Homme, Fils d'", "Huios tou anthropou", "Ben ãdãm", "Bar enash", "Bar nash"], "authorized_access_point": "Fils de l'homme"} 1 -2023-08-08 13:37:45.076019 2023-08-08 13:37:45.076022 6577f639-3dc5-4cf2-ae8c-ac3675c84b07 {"md5": "8f484298c0bed27ee348b6fd325375a2", "pid": "262668858", "note": [{"label": ["Encycl. de l'Islam - https://referenceworks-brillonline-com (2022-05-27)", "Dict. de l'Empire ottoman / F. Georgeon, N. Vatin, G. Veinstein, 2015", "Les voies d'Allah : les ordres mystiques dans l'Islam des origines à aujourd'hui / A. Popovic, G. Veinstein, 1996", "Le soufisme à l'époque ottomane / R. Chih, C. Mayeur-Jaouen, 2010"], "noteType": "dataSource"}, {"label": ["Entre le XVe et le XIXe siècle, trois confréries soufies sans lien organique s'inspirèrent du mouvement mystique \\"malamatiyya\\" constitué au IXe s. qui consistait à accomplir délibérément des actes contraires à la loi pour s'attirer l'opprobre et vivre ainsi dans l'humilité selon l'épître d'al-Sulami"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mystique - Islam"}, {"authorized_access_point": "Soufisme"}], "related": [{"authorized_access_point": "Confréries musulmanes"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "https://id.loc.gov/authorities/subjects/sh95003301", "source": "LCSH"}, "authorized_access_point": "Malāmatīyah"}, {"source": "GND", "authorized_access_point": "Malāmatīya"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262668858", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18014674n", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Hamzavis", "Hamzawiye", "Malamati", "Malamatis", "Malâmi", "Malâmis", "Malāmiyya", "Malāmiyya-Nūriyya", "Melâmi", "Melâmî-Hamzevî", "Melâmilik", "Melâmis", "Melâmis-Bayrâmis", "Melâmiye-Hamzaviye", "Melāmiyya", "Melâmiyya-Nûriyya", "Melâmiyye-Bayrâmiye", "Melâmiyye-Nuriye"], "authorized_access_point": "Malāmatiyya"} 1 -2023-08-08 13:37:45.143147 2023-08-08 13:37:45.143151 f200497e-707e-499d-9b7a-14cecc477cf2 {"md5": "bfbaf42107d3a32b56b25487f6c339a4", "pid": "262669161", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Trios ([distributions instrumentales])"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262669161", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180158853", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Trios (accordéons (2), orgue)"} 1 -2023-08-08 13:37:45.22161 2023-08-08 13:37:45.221615 199c34c5-60f4-4aa1-9cbf-b4e6cb21eb7c {"md5": "4b489e1ef0b09addff298f6e489e864e", "pid": "262669188", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Quintettes à vent ([distributions instrumentales])"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262669188", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180160289", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Quintettes à vent (clarinette, hautbois, piccolo, saxophone, trompette)"} 1 -2023-08-08 13:37:45.3123 2023-08-08 13:37:45.312306 d6b487f9-bf92-4fdd-a47d-5c0c6455a1fb {"md5": "fd8d3f05cb98a22548f370e081834f32", "pid": "26266920X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Quatuors ([distributions instrumentales])"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26266920X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18016075t", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Quatuors (piano, clarinette, trompette, alto)"} 1 -2023-08-08 13:37:45.372696 2023-08-08 13:37:45.3727 d9b3954f-c581-414f-be09-df18421a9e1e {"md5": "f2789c20626468ba1cdf1646afea49df", "pid": "262669234", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Antiquités lydiennes"}, {"authorized_access_point": "Céramique antique"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262669234", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18016123v", "source": "BNF"}], "classification": [{"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}, {"name": "Arts plastiques, sculpture", "type": "bf:ClassificationDdc", "classificationPortion": "730"}, {"name": "Dessin, arts décoratifs, artisanat d'art", "type": "bf:ClassificationDdc", "classificationPortion": "740"}, {"name": "Préhistoire et histoire ancienne", "type": "bf:ClassificationDdc", "classificationPortion": "930"}], "variant_access_point": ["Lydiens - Céramique"], "authorized_access_point": "Céramique lydienne"} 1 -2023-08-08 13:37:45.450975 2023-08-08 13:37:45.450983 4292796d-f764-4b46-9fab-674bbaae6533 {"md5": "8653b5c19f5b163ed84b83f0db22c8b9", "pid": "262669242", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Architecture antique"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262669242", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18016132t", "source": "BNF"}], "classification": [{"name": "Architecture", "type": "bf:ClassificationDdc", "classificationPortion": "720"}, {"name": "Préhistoire et histoire ancienne", "type": "bf:ClassificationDdc", "classificationPortion": "930"}], "variant_access_point": ["Lydiens - Architecture"], "authorized_access_point": "Architecture lydienne"} 1 -2023-08-08 13:37:45.539048 2023-08-08 13:37:45.539052 591f8b9a-e5fa-4fc5-955c-a9f2e3c1526c {"md5": "433f20d62ffc7006c3ff0a23d2ec9c47", "pid": "262669250", "note": [{"label": ["Grand dict. encyclopédique Larousse", "Encycl. universalis (art. : Intendants) - http://www.universalis-edu.com (2022-05-23)", "Dict. encyclopédique d'histoire / M. Mourre, 1996", "Les Carolingiens / C. Bonnet, C. Descatoire, 2001 (p. 102)", "L'Europe carolingienne 714-888 / G. Bührer-Thierry, 2010 (p. 117-8)"], "noteType": "dataSource"}, {"label": ["Nom donné dans le royaume franc à des inspecteurs royaux chargés d'inspecter le gouvernement des comtes. Alors qu'ils existaient déjà à l'époque mérovingienne, Charlemagne les organisa par le capitulaire de 802. Choisis tous les ans, ils étaient envoyés au moins deux par deux (un comte, un évêque) dans des régions déterminées, les missiatica. Ils étaient les représentants absolus de l'empereur (justice, perception de l'impôt, contrôle des routes et des travaux publics, entretien du domaine royal). Ils surveillaient les administrateurs et réformaient les abus. Contrairement au comte qui n'avait reçu du roi que la délégation des pouvoirs d'exécution (potestas), les missi étaient détenteurs de toute l'autorité royale (auctoritas). Ils transmettaient aux comtes les nouveaux capitulaires. L'institution dégénéra après Charlemagne et disparut au Xe siècle"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Administration locale - Personnel"}, {"authorized_access_point": "Droit franc"}, {"authorized_access_point": "Pouvoir royal"}, {"authorized_access_point": "Empire carolingien"}], "related": [{"authorized_access_point": "Capitulaires"}, {"authorized_access_point": "Comtes"}, {"authorized_access_point": "Délégation des pouvoirs (science politique)"}, {"authorized_access_point": "Évêques"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262669250", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180161602", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "305"}, {"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}, {"name": "Administration publique", "type": "bf:ClassificationDdc", "classificationPortion": "350"}, {"name": "Histoire médiévale, moderne et contemporaine (sauf la France)", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Envoyés de l'empereur", "Envoyés du maître", "Envoyés du roi", "Envoyés du souverain", "Missus dominicus"], "authorized_access_point": "Missi dominici"} 1 -2023-08-08 13:37:45.609783 2023-08-08 13:37:45.609787 7f6547cc-01bd-4c1b-9c4f-115e6d0247a4 {"md5": "f1026676264a67e0b3620782a018d363", "pid": "262805111", "note": [{"label": ["Les prud'homies de pêche à l'époque contemporaine (1790-1962) : la permanence d'une institution hybride en Méditerranée française / D. Rauch, 2014", "Plus de 200 ans de Prud'homie de pêche à Collioure / Y. de Coninck, 2020", "Fiche d'inventaire du patrimoine culturel immatériel en France : pratiques des prud'homies de pêche en Méditerranée - https://www.culture.gouv.fr/Media/Pratiques-des-prud-homies-de-peche-en-Mediterranee (2022-06-27)"], "noteType": "dataSource"}, {"label": ["Communautés de patrons pêcheurs nées en France au Moyen Âge sur les côtes méditerranéennes. Elles constituent à la fois une communauté professionnelle et une juridiction de pêcheurs et œuvrent à la protection des espaces maritimes et la préservation des ressources halieutiques"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Métiers de la mer"}], "related": [{"authorized_access_point": "Pêches"}, {"authorized_access_point": "Coopératives de pêche"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262805111", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18021705k", "source": "BNF"}], "classification": [{"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}, {"name": "Agriculture, élevage", "type": "bf:ClassificationDdc", "classificationPortion": "630"}], "variant_access_point": ["Prud'homies de pêcheurs"], "authorized_access_point": "Prud'homies de pêche"} 1 -2023-08-08 13:37:45.686155 2023-08-08 13:37:45.686163 84426a96-ee07-4aa9-9eaa-257c0b2c0b2e {"md5": "f305ea61a3bf016b57035f408d8f1616", "pid": "262915219", "note": [{"label": ["Dict. de l'Académie de médecine - http://dictionnaire.academie-medecine.fr (2022-07-15)", "Dict. illustré des termes de médecine, 2012"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Technique immunoenzymatique"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262915219", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18025047j", "source": "BNF"}], "classification": [{"name": "Sciences de la vie", "type": "bf:ClassificationDdc", "classificationPortion": "570"}, {"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Immuno-capture"], "authorized_access_point": "Immunocapture"} 1 -2023-08-08 13:37:45.755026 2023-08-08 13:37:45.75503 813991ee-58b1-47f8-be35-694eb9fa257f {"md5": "0ebcff27d7419c6cf7150b5b7770544b", "pid": "262928264", "note": [{"label": ["Wikipedia (portail du genre et des études de genre) - https://fr.wikipedia.org (2022-05-20)", "Non-binarité et transidentités à l'adolescence : une revue de la littérature [in] Neuropsychiatrie de l'enfance et de l'adolescence, 2019, 67, 5-6 - https://www-sciencedirect-com (2022-05-20)", "Transidentités et transitude / K. Espineira, M.-Y. Thomas, 2022 - https://www.cairn.info (2022-05-27)", "Encycl. critique du genre : corps, sexualité, rapports sociaux / J. Rennes, 2016 (art. : Bicatégorisation)"], "noteType": "dataSource"}, {"label": ["Le concept englobe les identités de genre des personnes qui ne se reconnaissent ni strictement comme homme, ni strictement comme femme, réfutant ainsi la norme binaire masculin-féminin"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Identité sexuelle"}], "related": [{"authorized_access_point": "Études sur le genre"}, {"authorized_access_point": "Théorie queer"}, {"authorized_access_point": "Transidentité"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262928264", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180157598", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}, {"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}], "variant_access_point": ["Enby", "Genderqueer", "Genres non binaires", "No-binary gender"], "authorized_access_point": "Non-binarité"} 1 -2023-08-08 13:37:45.837503 2023-08-08 13:37:45.837507 e7c6b687-b2e0-420c-ab84-cb55ba1c6c23 {"md5": "07328b2ddc0bc0af99326e01e5790ef6", "pid": "26292837X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bagatelles ([distributions instrumentales])"}, {"authorized_access_point": "Violon et piano, Musique de"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26292837X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18017112f", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Bagatelles (violon et piano)"} 1 -2023-08-08 13:37:45.916958 2023-08-08 13:37:45.916961 9a615b04-57d8-467d-9325-129b05a99ae3 {"md5": "3a4ac42a8a7364a9e839590034c749a4", "pid": "262928507", "note": [{"label": ["Caméléon : les filles Asperger déboulent ! / C. Deroin, 2020"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Adolescentes"}, {"authorized_access_point": "Adolescents autistes"}], "related": [{"authorized_access_point": "Enfants autistes"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "https://id.loc.gov/authorities/subjects/sh92001053", "source": "LCSH"}, "authorized_access_point": "Autistic youth"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262928507", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18017672p", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Adolescentes autistiques"], "authorized_access_point": "Adolescentes autistes"} 1 -2023-08-08 13:37:45.967651 2023-08-08 13:37:45.967655 2998877c-921c-4a17-b5ae-5ad45b5f260b {"md5": "af6de4719283e4bfae506f9dfaaca95f", "pid": "262928701", "note": [{"label": ["Alfa Romeo Spider : l'hist. complète : 1966-1994 / J. Lombard, 2021", "The hist. of Alfa Romeo / S. Kingston, 2018", "Sports cars / B. Lafontaine, 1999"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Alfa Romeo (automobiles)"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2013002865", "source": "LCSH"}, "authorized_access_point": "Spider automobile"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262928701", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18018611q", "source": "BNF"}], "classification": [{"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["Spider Alfa Romeo (automobile)"], "authorized_access_point": "Alfa Romeo Spider (automobile)"} 1 -2023-08-08 13:37:46.036198 2023-08-08 13:37:46.036204 be95cf49-680e-43aa-85ed-7161542b31d9 {"md5": "16504d5827c6c77c79fcca3a15b8dda3", "pid": "26307837X", "note": [{"label": ["S'emploie également en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Géorgie - Histoire"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26307837X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180223705", "source": "BNF"}], "classification": [{"name": "Histoire et géographie (généralités)", "type": "bf:ClassificationDdc", "classificationPortion": "900"}], "authorized_access_point": "Récits personnels géorgiens"} 1 -2023-08-08 13:37:46.099145 2023-08-08 13:37:46.099149 f183e6b6-208d-413e-a146-cda28aac7c2c {"md5": "2c632ba725672dd5d6420566f10a5b6e", "pid": "263492680", "note": [{"label": ["Ministère de la culture - https://www.culture.gouv.fr (2000-06-13)", "Légifrance - https://www.legifrance.gouv.fr (2022-06-13)", "ONISEP : Diplôme d'études chorégraphiques - https://www.onisep.fr (2022-06-13)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Danse - Étude et enseignement"}, {"authorized_access_point": "Diplômes"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263492680", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180198821", "source": "BNF"}], "classification": [{"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}, {"name": "Dessin, arts décoratifs, artisanat d'art", "type": "bf:ClassificationDdc", "classificationPortion": "740"}], "variant_access_point": ["DEC", "Diplôme d'études chorégrahiques", "DNOP danse"], "authorized_access_point": "Diplôme national d'orientation professionnelle de danse"} 1 -2023-08-08 13:37:46.177153 2023-08-08 13:37:46.177158 653d3f4a-5bc1-43d8-8706-83068933b933 {"md5": "f73d3004a94854ef24206918e0a73945", "pid": "263499944", "note": [{"label": ["Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour harmonica de verre et orchestre, et les recueils de compositions de formes et de genres différents pour harmonica de verre et orchestre"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263499944", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180231507", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Harmonica de verre et orchestre"} 1 -2023-08-08 13:37:46.248585 2023-08-08 13:37:46.248588 ad585b2d-c68c-445e-ba1e-67bb62a24161 {"md5": "e5c24eebaa0db6d9207e821795bb7a95", "pid": "263499979", "note": [{"label": ["Orientation.ch - https://www.orientation.ch (2022-07-05)", "Secrétariat d'État à la formation, à la recherche et à l'innovation : liste des professions - https://www.becc.admin.ch (2022-07-05)", "Professionsante.ch - https://www.odasante.ch (2022-07-05)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hôpitaux - Personnel"}, {"authorized_access_point": "Personnel paramédical"}], "related": [{"authorized_access_point": "Soins infirmiers en santé communautaire"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85093360", "source": "LCSH"}, "authorized_access_point": "Nurses' aides"}, {"source": "RVMLaval", "authorized_access_point": "Aides-infirmiers"}, {"source": "MeSH", "identifiedBy": {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/M0000733", "source": "MeSH"}, "authorized_access_point": "Allied health personnel"}, {"source": "MeSH", "identifiedBy": {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D009728", "source": "MeSH"}, "authorized_access_point": "Nurses' aides"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263499979", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18023352g", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "305"}, {"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Assistantes en soin et santé communautaire (Suisse)"], "authorized_access_point": "Assistants en soins et santé communautaire (Suisse)"} 1 -2023-08-08 14:28:41.768251 2023-08-08 14:28:41.768262 72a7f534-4e8c-487a-b375-b6d71d6b4f36 {"md5": "9ddfc6e3ee5f77824ea9c9d4591b51d8", "pid": "027799425", "note": [{"label": ["Ne pas utiliser : employer les subdivisions 20e siècle, Histoire -- 20e siècle ou les vedettes construites comprenant la subdivision 1939-1975"], "noteType": "seeReference"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:41.752508+00:00", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027799425", "source": "IDREF"}], "authorized_access_point": "1939-1975 (f. Franco)"} 1 -2023-08-08 13:37:46.332838 2023-08-08 13:37:46.332845 f543da2c-929a-405a-8662-9d6bac837920 {"md5": "42d56ef1a4947458a52038aded08206f", "pid": "263500047", "note": [{"label": ["Sous cette vedette, obligatoirement suivie d'une subdivision géographique ou de la subdivision : À l'étranger, directement ou après une subdivision de sujet, on trouve les documents sur les marins français hors de France. Les documents sur les marins français en France se trouvent sous des vedettes-matière telles que : Marins -- France ; Marins -- [Subdivision de sujet] -- France ; etc"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Français"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263500047", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18023590k", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "305"}, {"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Art et science militaires", "type": "bf:ClassificationDdc", "classificationPortion": "355"}, {"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "authorized_access_point": "Marins français"} 1 -2023-08-08 13:37:46.429481 2023-08-08 13:37:46.429486 86f01ddc-b7f7-448f-a8e9-ff6ab47fdf81 {"md5": "13b5efe214fc9ccb24ac009086ec1c3f", "pid": "263500071", "note": [{"label": ["S'emploie uniquement en subdivision aux guerres et révolutions dont les Slovènes ne sont pas les principaux protagonistes, par ex. : Guerre mondiale (1914-1918) -- Participation slovène"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Slovénie - Histoire"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263500071", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180237219", "source": "BNF"}], "classification": [{"name": "Histoire et géographie (généralités)", "type": "bf:ClassificationDdc", "classificationPortion": "900"}], "authorized_access_point": "Participation slovène"} 1 -2023-08-08 13:37:46.529769 2023-08-08 13:37:46.529772 79f98fed-26ab-48bb-9998-70dd3d9fd32a {"md5": "b59b76b8d0a20b0b73639d9ea09189b3", "pid": "263500187", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Villes disparues, en ruine, etc. - [Localisations géographiques]"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263500187", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18024026b", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "915"}, {"name": "Préhistoire et histoire ancienne", "type": "bf:ClassificationDdc", "classificationPortion": "930"}], "authorized_access_point": "Villes disparues, en ruine, etc. - Angola"} 1 -2023-08-08 13:37:46.628885 2023-08-08 13:37:46.628888 7080360e-1d40-4535-b27a-e448658210f0 {"md5": "0ce3a3fc868e0084b8899a5ae6cdb160", "pid": "263610918", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman historique arabe"}, {"authorized_access_point": "Roman libanais"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263610918", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18025416c", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}, {"name": "Histoire et géographie (généralités)", "type": "bf:ClassificationDdc", "classificationPortion": "900"}], "variant_access_point": ["Roman historique arabe - Liban", "Roman historique libanais de langue arabe"], "authorized_access_point": "Roman historique libanais"} 1 -2023-08-08 13:37:46.68177 2023-08-08 13:37:46.681773 96c62ea3-8d0a-4ca2-870e-b72de9cfa9d6 {"md5": "60caa7a4170d71a442cd0424bb75076c", "pid": "263714233", "note": [{"label": ["Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour saxophone et ensemble à cordes, et les recueils de compositions de formes et de genres différents pour cette même formation"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Concertos (saxophone et ensemble à cordes)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85117870", "source": "LCSH"}, "authorized_access_point": "Saxophone with string ensemble"}, {"source": "RVMLaval", "authorized_access_point": "Saxophone et ensemble à cordes"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714233", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180050621", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Saxophone et ensemble à cordes"} 1 -2023-08-08 13:37:46.735987 2023-08-08 13:37:46.73599 547dda4c-ca2b-43b6-bf47-f68936eb1e27 {"md5": "8d238ff5a71b2c60ba2e160eb94bcdb8", "pid": "263714241", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Saxophone et orchestre"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714241", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180053547", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Poèmes symphoniques (saxophone et orchestre)"} 1 -2023-08-08 13:37:47.539836 2023-08-08 13:37:47.53984 51675c1e-ea80-41ac-b0c7-ca79583876a7 {"md5": "29369605bb3f92a731fa43b85f024e52", "pid": "263714365", "note": [{"label": ["Technologie fonctionnelle de l'automobile. 2, Transmission, train roulant et équipement électrique / H. Mémeteau, 2002", "Les trains roulants et ses évolutions technologiques, 2021"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Automobiles - Pièces"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714365", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18024292p", "source": "BNF"}], "classification": [{"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "authorized_access_point": "Trains roulants"} 1 -2023-08-08 13:37:46.784425 2023-08-08 13:37:46.784428 5fcff600-051d-43a0-8ff7-94515380c89c {"md5": "bdec5040ddab8d0bfb3c384caa51cff2", "pid": "26371425X", "note": [{"label": ["Grand dict. encyclopédique Larousse : ghanéen, enne", "Nouveau petit Robert 2009 (partie dérivés des noms propres) (art. : Ghana (Afrique)) : ghanéen, enne"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, obligatoirement suivie d'une subdivision géographique ou de la subdivision : À l'étranger, directement ou après une subdivision de sujet, on trouve les documents sur les femmes ghanéennes hors du Ghana. Les documents sur les femmes ghanéennes au Ghana se trouvent sous des vedettes-matière telles que : Femmes -- Ghana ; Femmes -- [Subdivision de sujet] -- Ghana ; etc"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ghanéens"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Prostituées ghanéennes"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Ghanéens"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26371425X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18005957x", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"type": "bf:ClassificationDdc", "classificationPortion": "305"}, {"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "variant_access_point": ["Femmes ghanéennes"], "authorized_access_point": "Ghanéennes"} 1 -2023-08-08 13:37:46.834037 2023-08-08 13:37:46.83404 1f43ac26-91fb-4b8d-870c-4be9ee7cfb09 {"md5": "767e88154b051cca58578b4c160479eb", "pid": "263714268", "note": [{"label": ["Grand dict. encyclopédique Larousse : syrien, enne", "Nouveau petit Robert 2009 (partie dérivés des noms propres) (art. : Syrie (Proche-Orient)) : syrien, enne"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, obligatoirement suivie d'une subdivision géographique ou de la subdivision : À l'étranger, directement ou après une subdivision de sujet, on trouve les documents sur les femmes syriennes hors de Syrie. Les documents sur les femmes syriennes en Syrie se trouvent sous des vedettes-matière telles que : Femmes -- Syrie ; Femmes -- [Subdivision de sujet] -- Syrie ; etc"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Syriens"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Réfugiées syriennes"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Syriens"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714268", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180061031", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"type": "bf:ClassificationDdc", "classificationPortion": "305"}, {"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "variant_access_point": ["Femmes syriennes"], "authorized_access_point": "Syriennes"} 1 -2023-08-08 13:37:46.924835 2023-08-08 13:37:46.92484 467705f3-9079-4797-b050-e230f29241a1 {"md5": "aa91216612d33d9af51d9951152da2c8", "pid": "263714276", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Poésie néerlandaise"}], "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh89000372", "source": "LCSH"}, "authorized_access_point": "Political poetry, Dutch"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714276", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18006157z", "source": "BNF"}], "classification": [{"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Poésie politique néerlandaise"} 1 -2023-08-08 13:37:46.976122 2023-08-08 13:37:46.976125 3fcd9b40-8aad-4129-a266-01e6d33605d1 {"md5": "6e826d8072207471e60430f9c3d7d793", "pid": "263714284", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Poésie flamande"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714284", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18006159n", "source": "BNF"}], "classification": [{"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Poésie politique flamande"} 1 -2023-08-08 13:37:47.025652 2023-08-08 13:37:47.025656 1b07ff3a-85bb-4e28-adac-878a8ef2f6b2 {"md5": "1bcf900671427d020cba02b534494dd0", "pid": "263714292", "note": [{"label": ["Droit des systèmes autonomes : véhicules intelligents, drones, seabots / A. Bensoussan, D. Gazagne, 2019", "Engins de déplacement personnel motorisés : la réglementation en pratique / J.-B Le Dall, F. Romey, 2021"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Véhicules"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714292", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180166117", "source": "BNF"}], "classification": [{"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["EDP (véhicules)", "EDPM (véhicules)", "Engins de déplacement personnel motorisés"], "authorized_access_point": "Engins de déplacement personnel"} 1 -2023-08-08 13:37:47.619692 2023-08-08 13:37:47.619696 f6971c4d-1601-40bb-9b40-54fc13f9cf35 {"md5": "7dfbf3c1a8fa71c956ef1c1ff9c869b7", "pid": "263714373", "note": [{"label": ["The evolution of project management in a Scaled Agile environment / K. Wills, 2018", "The project manager's guide to mastering Agile : principles and practices for an adaptive approach / C. G. Cobb, 2015", "Enterprise agility for dummies / D. Rose, 2018"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Méthodes agiles (informatique)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714373", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180243025", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["SAFe (informatique)"], "authorized_access_point": "Scaled agile framework (informatique)"} 1 -2023-08-08 13:37:47.075617 2023-08-08 13:37:47.07562 b3d7e379-1b9c-443b-a458-9ac4f50d25f0 {"md5": "003bb9adf2e8234e2c0353037c1d95eb", "pid": "263714306", "note": [{"label": ["Introduction à la psychologie cognitive / P. Lemaire, A. Didierjean, 2018", "Les protocoles verbaux (think-aloud protocols) : enjeux méthodologiques de validité pour la recherche en contexte scolaire / K. Roussel [in] Canadian journal for new scholars in education, 2017, 8, 1 - https://doaj.org (2022-07-20)", "Verbal protocols in literacy research / S. E. Israel, 2015", "La méthode de la pensée à voix haute pour analyser les difficultés en lecture des élèves de 14 à 17 ans / É. Falardeau, C. Pelletier, D. Pelletier [in] Éducation & didactique, 2014, 8, 3 - https://journals.openedition.org/educationdidactique (2022-07-19)"], "noteType": "dataSource"}, {"label": ["Méthode de collecte de données utilisée en ergonomie informatique puis en sciences humaines : l'utilisateur doit énoncer à haute voix ce qu'il est en train de penser pendant qu'il exécute une tâche"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Psychologie cognitive"}, {"authorized_access_point": "Recherche qualitative"}], "related": [{"authorized_access_point": "Recherche-action"}, {"authorized_access_point": "Résolution de problème"}, {"authorized_access_point": "Tests utilisateurs"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Entretiens d'explicitation"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714306", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18018604f", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}, {"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Méthode de la pensée à voix haute", "Raisonnement à voix haute", "Think-aloud protocols", "Verbal protocols"], "authorized_access_point": "Protocoles verbaux"} 1 -2023-08-08 13:37:47.130073 2023-08-08 13:37:47.130076 c987614c-4aef-4615-b6cb-d824903f5d64 {"md5": "b05b76f9223d96ce7a3e2207f80964c7", "pid": "263714314", "note": [{"label": ["Wikipédia : Affaire Ernest Rodric - https://fr.wikipedia.org (2022-07-01)", "L'affaire du Bois bleu : une innocente jetée aux chiens / G. Boursier, 2006", "Grands avocats - Chroniques juridiques : Affaire du Bois Bleu : autopsie d'une erreur judiciaire - https://www.grands-avocats.com (2022-07-01)"], "noteType": "dataSource"}, {"label": ["Affaire criminelle française. Suite au meurtre de Georges Segrétin au lieu-dit du Bois Bleu (Cher) le 4 novembre 1965, Monique Case sera inculpée avant d'être totalement innocentée grâce à une contre-enquête du juge d'instruction Mme Georgette Chouvelon. Le véritable assassin, Ernest Rodric sera condamné à perpétuité en 1967"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Erreurs judiciaires - France"}, {"authorized_access_point": "Faits divers - France"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714314", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18020814k", "source": "BNF"}], "classification": [{"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}, {"name": "Problèmes et services sociaux", "type": "bf:ClassificationDdc", "classificationPortion": "360"}], "variant_access_point": ["Affaire Ernest Rodric (1965-1967)", "Affaire Monique Case (1965-1967)", "Bois Bleu, Affaire du (1965-1967)", "Ernest Rodric, Affaire (1965-1967)", "Monique Case, Affaire (1965-1967)"], "authorized_access_point": "Affaire du Bois Bleu (1965-1967)"} 1 -2023-08-08 13:37:47.19069 2023-08-08 13:37:47.190693 a75d7e0e-ed34-4e2d-9ca2-f0544b03105a {"md5": "c898b250a049b610c201a5a3e10fac4e", "pid": "263714322", "note": [{"label": ["Languagecert test of english - https://www.languagecert.org (2022-07-20)", "Legifrance : Décision du 16 septembre 2021 portant enregistrement au Répertoire national des certifications professionnelles et au répertoire spécifique - https://www.legifrance.gouv.fr (2022-07-20)", "Using self-assessments to investigate comparability of the CEFR and CSE : an exploratory study using the LanguageCert Test of english / W. Zhao, D. Coniam [in] International journal of TESOL studies, 2022, 4, 1 - https://go-gale-com (2022-07-20)"], "noteType": "dataSource"}, {"label": ["Certification de l'organisme PeopleCert International alignée sur le Cadre européen commun de référence"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Anglais (langue) - Examens"}], "related": [{"authorized_access_point": "Cadre européen commun de référence en langue"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714322", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18020892c", "source": "BNF"}], "classification": [{"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}, {"name": "Langues et linguistique", "type": "bf:ClassificationDdc", "classificationPortion": "400"}], "variant_access_point": ["LTE"], "authorized_access_point": "LanguageCert Test of English"} 1 -2023-08-08 13:37:47.274633 2023-08-08 13:37:47.274639 c5c2f360-fe8f-409c-94ae-b4f57b566c95 {"md5": "27e3ebc50fb8c8098ce8ac6e9cfd02ba", "pid": "263714330", "note": [{"label": ["Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour clavecin, deux cors, deux violons et violoncelle, et les recueils de compositions de formes et de genres différents pour cette même formation"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sextuors ([distributions instrumentales])"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714330", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18021604z", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Sextuors (clavecin, cors (2), violons (2), violoncelle)"} 1 -2023-08-08 13:37:47.365004 2023-08-08 13:37:47.36501 32bb6900-42b7-42a7-85f8-eae0476802ef {"md5": "878b8ce44237dbce1b44f8046da03da2", "pid": "263714349", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Saxophone et ensemble à cordes"}], "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85030338", "source": "LCSH"}, "authorized_access_point": "Concertos (Saxophone with string ensemble)"}, {"source": "RVMLaval", "authorized_access_point": "Concertos (Saxophone et ensemble à cordes)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714349", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18024222h", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Concertos (saxophone et ensemble à cordes)"} 1 -2023-08-08 13:37:47.691692 2023-08-08 13:37:47.691697 17186f61-5b84-4a40-b8b2-afa4226083b6 {"md5": "2c8387988e5f505c57450f5fb14190ee", "pid": "26371439X", "note": [{"label": ["Wikipédia : Westland Lynx - http://fr.wikipedia.org (2022-07-11)", "Aviation militaire : Aérospatiale-Westland WG-13 Lynx - https://aviationsmilitaires.net (2022-07-11)", "The Royal Navy Lynx : An Operational History / L. Jeram-Croft, 2017"], "noteType": "dataSource"}, {"label": ["Hélicoptère conçu par Westland Helicopters et produit conjointement avec Aérospatiale. Son premier vol a eu lieu le 21 mars 1971. Opérationnel à partir 1977, il a été adopté par plus d'une douzaine de nations"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hélicoptères militaires - Europe"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2012003729", "source": "LCSH"}, "authorized_access_point": "Westland Lynx (Military helicopter)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26371439X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18024324g", "source": "BNF"}], "classification": [{"name": "Art et science militaires", "type": "bf:ClassificationDdc", "classificationPortion": "355"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["Westland Lynx (hélicoptère)", "WG13 (hélicoptère)"], "authorized_access_point": "Lynx (hélicoptère)"} 1 -2023-08-08 13:37:47.7814 2023-08-08 13:37:47.781409 395cca02-cb53-4ea3-83f5-ddd77ebd4ea6 {"md5": "afcf59e3488d6bcca2f3c36ee561efbf", "pid": "263714403", "note": [{"label": ["L'aviation : une révolution du XXe siècle / J. Noetinger, 2005", "Témoin privilégié de l'histoire de l'aviation du XXe siècle / J. Noetinger, 2010", "Carnet de vol / G.-H. Satgé, 1974"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Breguet (avions)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714403", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18024325t", "source": "BNF"}], "classification": [{"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["Br. 763 Provence (avion de transport)", "Breguet deux-ponts Provence (avion de transport)"], "authorized_access_point": "Breguet 763 Provence (avion de transport)"} 1 -2023-08-08 13:37:47.860137 2023-08-08 13:37:47.860143 7bd35b7b-33bf-4368-ae76-c352a13cac81 {"md5": "2ceb969c4056bad39e13cbb194946f9b", "pid": "263714411", "note": [{"label": ["Habiliter les enfants à l'occupation : l'approche CO-OP : guider l'enfant dans la découverte des stratégies cognitives pour améliorer son rendement occupationnel au quotidien / H. J. Polatajko, A. Mandich, 2017", "L'approche CO-OP et l'accompagnement d'enfants présentant un trouble développemental de la coordination, quels apports pour l'ergothérapeute libéral ? / G. Conte, 2020 [thèse]", "Apport de l'approche CO-OP (cognitive orientation to daily occupational performance) auprès d'enfants paralysés cérébraux / H. Lebrault [in] Motricité cérébrale, 2019, 40, 2 - https://www-sciencedirect-com (2022-07-11)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ergothérapie"}], "related": [{"authorized_access_point": "Rééducation motrice"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714411", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18024330d", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}, {"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}, {"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Cognitive orientation to daily occupational performance approach", "Orientation cognitive au rendement occupationnel quotidien"], "authorized_access_point": "Approche CO-OP"} 1 -2023-08-08 13:37:47.966694 2023-08-08 13:37:47.966698 249a50a4-2632-4971-827c-b9fa5dbb39d0 {"md5": "b168714abf2ad945e1901a06e3a4a67a", "pid": "26371442X", "note": [{"label": ["Autisme : le défi du programme TEACCH / G. B. Mesibov, 1995", "Approche éducative de l'autisme : le programme TEACCH, sa transposition en France / B. Rogé, E. Schopler [in] Psychologie française, 1998, 43, 3", "TEACCH autism programm - https://teach.com (2022-07-11)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Thérapie comportementale"}], "related": [{"authorized_access_point": "Enfants autistes - Communication"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26371442X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180243474", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}, {"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}, {"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Éducation structurée", "TEACCH programm", "Traitement et éducation des enfants autistes ou atteints de troubles de la communication associés", "Treatment and education of autistic and related communication handicapped children"], "authorized_access_point": "Programme TEACCH"} 1 -2023-08-08 13:37:48.024263 2023-08-08 13:37:48.024267 c41c5eeb-7a5f-4f67-a67f-a9aeff2a6b19 {"md5": "84252a5820edf8947c985afba41a08c7", "pid": "263714438", "note": [{"label": ["Le Robert - https://dictionnaire.lerobert.com/definition/sweat-shirt", "Trésor de la langue français (2022-07-11)", "Sweat-shirt - https://fr.wikipedia.org/wiki/Sweat-shirt", "Sweatshirts transformations / L. Rohlfing, 2012 (2022-07-11)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Vêtements de sport"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Sweatshirts"}, {"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh90001049", "source": "LCSH"}, "authorized_access_point": "Sweatshirts"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714438", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180244493", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "391"}, {"name": "Economie domestique, hôtellerie", "type": "bf:ClassificationDdc", "classificationPortion": "640"}], "variant_access_point": ["Hoodies", "Pulls molletonnés", "Sweats", "Sweatshirt"], "authorized_access_point": "Sweat-shirts"} 1 -2023-08-08 13:37:48.124715 2023-08-08 13:37:48.124717 e173339e-1f04-45ba-a504-616b50c2bdc1 {"md5": "dcc1e577bd87bc1614ffa26168689595", "pid": "263714454", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Cuisine balte"}, {"authorized_access_point": "Civilisation - Lituanie"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh87002092", "source": "LCSH"}, "authorized_access_point": "Cooking, Lithuanian"}, {"source": "RVMLaval", "authorized_access_point": "Cuisine lituanienne"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714454", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180244551", "source": "BNF"}], "classification": [{"name": "Economie domestique, hôtellerie", "type": "bf:ClassificationDdc", "classificationPortion": "640"}], "variant_access_point": ["Cuisine lituanienne - Lituanie"], "authorized_access_point": "Cuisine lituanienne"} 1 -2023-08-08 13:37:48.174002 2023-08-08 13:37:48.174005 483c1ec3-b084-4148-b75a-ea5586416199 {"md5": "6c59588b923baa83fdb07f7c1a04da4a", "pid": "263714462", "note": [{"label": ["L'apprentissage du langage : de la section enfantine au cours élémentaire (2e année) : leçons et exercices sur les thèmes des tableaux d'élocution de la Coopération Pédagogique / H. Géron, R. Charlot, G. Bonnin, 1954", "L'école de M. Rossignol : l'imagination pédagogique en images et en couleurs / P. Rossignol, M. Cordeboeuf, 2007", "Éléments pour une didactique des textes pluricodiques / M. Masselot-Girard [in] Repères : recherches en didactique du français langue maternelle, 1993, 7, p. 151-160 - www.persee.fr (2022-07-12)", "Vocabulaire, élocution, construction de phrases : cours élémentaire / J. Garagnon, 1966 : tableaux de vocabulaire-élocution - https://www.reseau-canope.fr/musee/collections/fr/museum (2022-07-12)", "Voir, savoir : la pédagogie par l'image au temps de l'imprimé du XVIe au XXe s. / A. Renonciat, 2011 (p. 108) : planches murales d'élocution"], "noteType": "dataSource"}, {"label": ["Planches au format jésus affichées aux murs des salles de classe élémentaires servant de supports à la verbalisation, l'élocution englobant alors lecture, orthographe, conjugaison et composition"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Acquisition du langage"}, {"authorized_access_point": "Illustrations en éducation"}], "related": [{"authorized_access_point": "Élocution"}, {"authorized_access_point": "Lecture - Méthodes d'apprentissage"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714462", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180245210", "source": "BNF"}], "classification": [{"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}, {"type": "bf:ClassificationDdc", "classificationPortion": "401"}], "variant_access_point": ["Planches murales d'élocution", "Tableaux de vocabulaire-élocution"], "authorized_access_point": "Tableaux d'élocution"} 1 -2023-08-08 13:37:48.226158 2023-08-08 13:37:48.226161 5fbe4b66-2768-4014-900b-09e8e6a7589f {"md5": "8922a60f79f92a50447de92a9f350411", "pid": "263714470", "note": [{"label": ["Le livre bleu de la marétique, 2013", "Cybermarétique.fr : la sécurité informatique des systèmes d'information maritimes et portuaires - https://cybermaretique.fr (2022-07-12)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Informatique"}, {"authorized_access_point": "Navigation"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714470", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18024616p", "source": "BNF"}], "classification": [{"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}, {"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "authorized_access_point": "Marétique"} 1 -2023-08-08 13:37:48.309411 2023-08-08 13:37:48.309415 aabcf15c-8a34-4a2a-97c2-4ae723199e7d {"md5": "c236f328d6bf536b84efac8b43aeacc8", "pid": "263714489", "note": [{"label": ["Le Robert - https://dictionnaire.lerobert.com/definition/nescafe (2022-07-12)", "Nescafé - https://fr.wikipedia.org/wiki/Nescaf%C3%A9 (2022-07-12)", "Communication stratégique et sensible à ll'ère numérique : vers un modèle relationnel dialogique ? : étude de cas : la communication en ligne de Nescafé / G. Tardin, 2022"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Marques de commerce"}], "related": [{"authorized_access_point": "Mots-valises"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85027704", "source": "LCSH"}, "authorized_access_point": "Instant coffee"}, {"source": "RVMLaval", "authorized_access_point": "Café soluble"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714489", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180246307", "source": "BNF"}], "classification": [{"name": "Economie domestique, hôtellerie", "type": "bf:ClassificationDdc", "classificationPortion": "640"}], "variant_access_point": ["Café instantané", "Café soluble"], "authorized_access_point": "Nescafé (marque déposée)"} 1 -2023-08-08 13:37:48.394762 2023-08-08 13:37:48.394765 0918ebc1-0c99-4489-980d-7be8f58f67b7 {"md5": "4716136e07a679d6ba4f59eedade15b4", "pid": "263714500", "note": [{"label": ["La difficile cohabitation de la géologie \\"profonde\\" et de la géomorphologie au pied des monts ibériques occidentaux / B. Lemartinel [in] Géomorphologie : relief, processus, environnement, 1999, 5, 3", "Recherches sur la géologie profonde - fosse de Valence (Drôme) / H. Gudefin, 1977"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Stratigraphie"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714500", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18024749x", "source": "BNF"}], "classification": [{"name": "Sciences de la Terre", "type": "bf:ClassificationDdc", "classificationPortion": "550"}], "variant_access_point": ["Couches géologiques profondes"], "authorized_access_point": "Géologie profonde"} 1 -2023-08-08 14:28:41.861265 2023-08-08 14:28:41.861276 3f58dea9-b00b-46d7-ae6e-8b9cf80b756b {"md5": "af23c8c245e4895254ebbd4861882789", "pid": "027804380", "note": [{"label": ["Ne pas utiliser : employer les subdivisions 19e siècle, Histoire -- 19e siècle ou les vedettes construites comprenant la subdivision 1849-1870"], "noteType": "seeReference"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:41.850206+00:00", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027804380", "source": "IDREF"}], "authorized_access_point": "1849-1870"} 1 -2023-08-08 13:37:48.493641 2023-08-08 13:37:48.493645 5475b721-056a-40e0-bbfc-d94000b83eb8 {"md5": "fa129cf3344d2c47049641d6fd941197", "pid": "263714519", "note": [{"label": ["Encycl. Larousse - https://www.larousse.fr/encyclopedie (2022-07-13)", "La protection contre la mer aux Pays-Bas : le Plan Delta [in] Géologues, 2008, 158", "La Zélande en arrive au terme du Plan Delta / F. Lentacker [in] Hommes et terres du Nord, 1981, 4"], "noteType": "dataSource"}, {"label": ["Plan conçu en 1955 aux Pays-Bas pour protéger le pays des inondations maritimes, suite à l'inondation meurtrière de 1953"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Inondations - Maîtrise"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714519", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18024775g", "source": "BNF"}], "classification": [{"name": "Sciences de la Terre", "type": "bf:ClassificationDdc", "classificationPortion": "550"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["Delta, Plan", "Travaux Delta"], "authorized_access_point": "Plan Delta"} 1 -2023-08-08 13:37:48.561316 2023-08-08 13:37:48.561318 6741db49-8d90-47f3-91f3-919e489f258b {"md5": "37ccb7fad88daaa1c762a2684a2c9c0c", "pid": "263714527", "note": [{"label": ["Grand dict. terminologique", "La difficile émergence d'une conscience écologique en Pologne / K. Herbst [in] Strates : matériaux pour la recherche en sciences sociales, 1992, 6", "Où en sommes-nous de notre conscience écologique / C. Dartiguepeyrou [in] Vraiment durable : revue interdisciplinaire du développement durable, 2013, 2, 4"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Écologie humaine"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714527", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18024815w", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "577"}], "variant_access_point": ["Conscience environnementale"], "authorized_access_point": "Conscience écologique"} 1 -2023-08-08 13:37:48.626093 2023-08-08 13:37:48.626097 daea8caf-f348-4ba0-9dec-4f1f0db22e2e {"md5": "98f680ac662a1aef18ba966ec5d78723", "pid": "263714535", "note": [{"label": ["Formationprofessionnelle.ch : lexique - https://www.berufsbildung.ch (2022-07-13)", "LFPr, art. 23 : Loi fédérale sur la formation professionnelle : cours interentreprises et autres lieux de formation comparables - https://fedlex.data.admin.ch (2022-07-13)", "Conférence suisse des offices de la formation professionnelle - https://www.edk.ch/fr/csfp (2022-07-13)"], "noteType": "dataSource"}, {"label": ["Pendant l'apprentissage professionnel suisse, ces cours obligatoires complètent la formation en entreprise et à l'école professionnelle"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Formation en alternance"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714535", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180248198", "source": "BNF"}], "classification": [{"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}], "variant_access_point": ["CIE (système éducatif suisse)", "Überbetriebliche Kurse (système éducatif suisse)"], "authorized_access_point": "Cours interentreprises (système éducatif suisse)"} 1 -2023-08-08 13:37:48.695651 2023-08-08 13:37:48.695654 8455f57d-f086-4b31-b543-87319d3832e5 {"md5": "250e9e047e44678772a2284c1f157de7", "pid": "263714543", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Luxembourgeois (langue)"}, {"authorized_access_point": "Poésie luxembourgeoise"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714543", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18024832g", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Chansons luxambourgeoises"} 1 -2023-08-08 13:37:48.764292 2023-08-08 13:37:48.764295 895280bd-88ad-4082-80ad-c083f96488a3 {"md5": "4ac6a6fe90069d5545aaef97bc25eef2", "pid": "263714551", "note": [{"label": ["Wikipédia - https://fr.wikipedia.org (2022-07-13)", "Dict. encyclopédique du son / P.-L. de Nanteuil, 2008", "Oxford Music online (art. : Groovebox) - http://www.oxfordmusiconline.com (2022-07-13)", "Inside Rihanna : la fabrique des tubes / J. Seabrook [in] Audimat, 2014, 2, 2"], "noteType": "dataSource"}, {"label": ["Courtes séquences musicales destinées à être répétées"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Son - Enregistrement et reproduction -- Techniques numériques"}], "related": [{"authorized_access_point": "Séquenceur (instrument de musique)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Échantillonnage (musique)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714551", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180248612", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "variant_access_point": ["Loops (musique)"], "authorized_access_point": "Boucles (musique)"} 1 -2023-08-08 13:37:48.84016 2023-08-08 13:37:48.840164 f1bbff97-3c88-4da5-a566-6133b3fc0668 {"md5": "beadd5aa5177e479cecffa427dbee4da", "pid": "26371456X", "note": [{"label": ["Guide pratique de la vinification en blanc et rosé / C. Gros, S. Yerle, 2011", "Encycl. Hachette des vins, 2021"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Vin"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26371456X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180251036", "source": "BNF"}], "classification": [{"name": "Agriculture, élevage", "type": "bf:ClassificationDdc", "classificationPortion": "630"}, {"name": "Economie domestique, hôtellerie", "type": "bf:ClassificationDdc", "classificationPortion": "640"}], "variant_access_point": ["Vin - Oxydation"], "authorized_access_point": "Vin oxydatif"} 1 -2023-08-08 13:37:48.923164 2023-08-08 13:37:48.923168 4cb57e12-a584-49f7-aec1-387b195c4677 {"md5": "e7a0cdf031a44995f614619364b057e2", "pid": "263714578", "note": [{"label": ["Voir aussi aux noms des personnes au centre des erreurs judiciaires, par ex. : Monique Case"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Erreurs judiciaires - [Localisations géographiques]"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Affaire du Bois Bleu (1965-1967)"}, {"authorized_access_point": "Calas, Affaire (1761-1762)"}, {"authorized_access_point": "Courrier de Lyon, Affaire du (1796)"}, {"authorized_access_point": "Dreyfus, Affaire (1894-1906)"}, {"authorized_access_point": "Outreau, Affaire d' (2001-2004)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714578", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180251930", "source": "BNF"}], "classification": [{"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}, {"name": "Problèmes et services sociaux", "type": "bf:ClassificationDdc", "classificationPortion": "360"}, {"name": "Histoire de la France (depuis 486)", "type": "bf:ClassificationDdc", "classificationPortion": "944"}], "authorized_access_point": "Erreurs judiciaires - France"} 1 -2023-08-08 13:37:49.007671 2023-08-08 13:37:49.007676 cec9f9e5-6189-42b6-b814-1e3f2b728055 {"md5": "c791808fac3f9594dd6dc5e18d97ba13", "pid": "263714594", "note": [{"label": ["Diccionario panhispánico de dudas - https://www.rae.es/dpd/que%C3%ADsmo (2022-07-18)", "Queísmo - https://fr.wikipedia.org (2022-07-18)", "El queísmo en la historia : variación y cambio lingüístico en el régimen preposicional del español (siglos XVI-XXI) / J. L. Blas Arroyo, M. Velando Casanova, [2022]"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Espagnol (langue)"}, {"authorized_access_point": "Fautes de langage"}], "related": [{"authorized_access_point": "Hispanismes (idiotismes)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714594", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180252353", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "401"}], "variant_access_point": ["Chéisme"], "authorized_access_point": "Queísmo"} 1 -2023-08-08 13:37:49.061395 2023-08-08 13:37:49.061398 8e1eba43-e5d7-4694-856e-c1edee20c129 {"md5": "dd1d72a5512898de7c3dd6336ce405c0", "pid": "263714608", "note": [{"label": ["The Cambridge history of Spanish literature / D.T. Gies, 2004", "La otra sentimentalidad : estudio y antologia / F. Díaz de Castro, 2003", "À quoi bon la poésie aujourd'hui ? / C. Le Bigot, 2016 : L'autre sentimentalité (p.146)", "L'engagement littéraire : cahiers du groupe φ / E. Bouju, 2005 : L'autre sentimentalité (p.67-71)"], "noteType": "dataSource"}, {"label": ["Renouvellement poétique initié en 1980 à Grenade par les poètes L. Garcia Montero, J. Egea et A. Salvador qui prônaient l'historicisation de la sentimentalité ainsi qu'une poésie réaliste engagée"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mouvements littéraires - Espagne"}, {"authorized_access_point": "Littérature espagnole - 20e siècle"}, {"authorized_access_point": "Poésie espagnole"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714608", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18025352z", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["L' autre sentimentalité"], "authorized_access_point": "La otra sentimentalidad"} 1 -2023-08-08 13:37:49.116517 2023-08-08 13:37:49.11652 44c3fdfa-5bce-498a-806c-108ce6384587 {"md5": "e2ace3cfc18d5e904adff750dedb6316", "pid": "263714616", "note": [{"label": ["Encycl. of world military aircraft, 1996", "Encycl. of US Air Force aircraft and missile systems, 1978"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Avions de chasse - États-Unis"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00001943", "source": "LCSH"}, "authorized_access_point": "Republic F-84 Thunderjet"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714616", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18025373x", "source": "BNF"}], "classification": [{"name": "Art et science militaires", "type": "bf:ClassificationDdc", "classificationPortion": "355"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["F-84 Thunderjet (avion de chasse)"], "authorized_access_point": "Republic F-84 Thunderjet (avion de chasse)"} 1 -2023-08-08 13:37:49.165851 2023-08-08 13:37:49.165854 bfc511ac-4e23-4926-8b57-a5a8c655ebdd {"md5": "4ff59e51c11f2bff49574e8e4120f630", "pid": "263714624", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Poésie samaritaine"}], "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "https://lccn.loc.gov/sh2002001652", "source": "LCSH"}, "authorized_access_point": "Hymns, Samaritan Aramaic"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714624", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18025421z", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}, {"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Hymnes samaritains"} 1 -2023-08-08 14:28:42.008329 2023-08-08 14:28:42.00834 69396906-17f8-4f31-9b92-82eb7740fd74 {"md5": "624b2dfc22b718da6f2b81728defb981", "pid": "027805158", "note": [{"label": ["Ne pas utiliser : employer les subdivisions 19e siècle, Histoire -- 19e siècle ou les vedettes construites comprenant la subdivision 1837-1901"], "noteType": "seeReference"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:41.984200+00:00", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027805158", "source": "IDREF"}], "authorized_access_point": "1837-1901"} 1 -2023-08-08 13:37:49.216037 2023-08-08 13:37:49.21604 e9a42c7a-03e2-4e5e-bfcf-acefe8dd06a8 {"md5": "17d700449c25137b09304f1053833f16", "pid": "263714632", "note": [{"label": ["Trésor de la langue française (art. : Psychédélique) - http://stella.atilf.fr (2022-07-19)", "La contre-culture, États-Unis, années 60 : la naissance de nouvelles utopies / C. Saint-Jean-Paulin, 1997 [thèse] : Expérience psychédélique", "L'expérience psychédélique : Leary, Metzner et Alpert / T. Leary, 2013", "Hallucinogènes et culture : une approche neuroanthropologique de l'expérience psychédélique / D. Dupuis, L. Berkovitch [in] PSN, 2020, 18 (3)"], "noteType": "dataSource"}, {"label": ["État provoqué par l'absorption de drogues hallucinogènes. - Par extension, façon de vivre, éthique qui préconise l'utilisation de drogues hallucinogènes"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "États modifiés de conscience"}, {"authorized_access_point": "Psychotropes"}], "related": [{"authorized_access_point": "Beat generation"}, {"authorized_access_point": "Champignons hallucinogènes"}, {"authorized_access_point": "Hallucinations et illusions"}, {"authorized_access_point": "Hallucinogènes"}, {"authorized_access_point": "Hippies"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Art psychédélique"}, {"authorized_access_point": "Rock psychédélique"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714632", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180254349", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}, {"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["État psychédélique", "Expérience hallucinogène", "Expérience psychédélique", "Hallucinogènes - Aspect psychologique", "Hallucinogènes - Aspect social"], "authorized_access_point": "Psychédélisme"} 1 -2023-08-08 13:37:49.27336 2023-08-08 13:37:49.273365 7740d1fb-1a78-453f-85a1-f0b7acd1de25 {"md5": "c82a11f69f48376d378e3ff56fcbcab5", "pid": "263714640", "note": [{"label": ["S'emploie uniquement en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Démographie"}], "related": [{"authorized_access_point": "Éducation - Aspect démographique"}, {"authorized_access_point": "Logement - Aspect démographique"}, {"authorized_access_point": "Religions - Aspect démographique"}, {"authorized_access_point": "Révolutions - Aspect démographique"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "--Aspect démographique"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714640", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180255546", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "304"}], "authorized_access_point": "Aspect démographique"} 1 -2023-08-08 13:37:49.348043 2023-08-08 13:37:49.34805 5db9dab6-72e2-402c-bc82-f5dce3bdf0c7 {"md5": "a5acf569efff53f998cd3a6053156f26", "pid": "263714659", "note": [{"label": ["Encycl. universalis (art. : Bhagavad-Gītā) : Jñānayoga - www.universalis-edu.com (2022-07-21)", "Dict. de la sagesse orientale : bouddhisme, hindouisme, taïoisme, zen, 1995 : Jñāna-yoga, Voie de la connaissance, Jñāna-yogi", "Yoga : l'encycl. / Y. Tardan-Masquelier, 2021 : Jñāna-yoga, Jñāna-mārga, Jñānin", "Introduction aux voies du yoga / T. Michaël, 2016 : Yoga de la connaissance"], "noteType": "dataSource"}, {"label": ["Du sanskrit \\"Jñāna\\" : connaissance. - La Vedanta (la fin des Veda) recommande de dépasser l'ignorance (Avidya) pour atteindre la réalité suprême (Brahman) et le véritable soi (Atman)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Yoga"}], "related": [{"authorized_access_point": "Ātman"}, {"authorized_access_point": "Avidyā"}, {"authorized_access_point": "Brahman"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85149180", "source": "LCSH"}, "authorized_access_point": "Yoga, Jñāna"}, {"source": "RVMLaval", "authorized_access_point": "Yoga, Jñāna"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714659", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180255604", "source": "BNF"}], "classification": [{"name": "Philosophie", "type": "bf:ClassificationDdc", "classificationPortion": "100"}, {"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Jñāna-mārga", "Jñāna-yogi", "Jñānayoga", "Jñānin", "Voie de la connaissance", "Yoga de la connaissance"], "authorized_access_point": "Jñāna-yoga"} 1 -2023-08-08 13:37:49.439331 2023-08-08 13:37:49.439336 aa93a2cc-1c85-487c-9c9e-959268ed17c0 {"md5": "5b56bac2331f985108d3316946135688", "pid": "263714667", "note": [{"label": ["Dict. historique de la Suisse (art. : Votations) - http://www.hls-dhs-dss.ch (2022-07-20)", "Le citoyen face à ses opinions : arguments, connaissances et campagnes politiques en Suisse / A. Nai, 2016", "Parlement suisse : Etude sur le financement des campagnes électorales et de votation / M. Meyer, 2019 - https://www.parlament.ch (2022-07-20)"], "noteType": "dataSource"}, {"label": ["S'emploie également en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Campagnes électorales"}], "related": [{"authorized_access_point": "Élections"}, {"authorized_access_point": "Référendum"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714667", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180255995", "source": "BNF"}], "classification": [{"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "variant_access_point": ["Campagnes de vote", "Votations - Campagnes de"], "authorized_access_point": "Campagnes de votation (Suisse)"} 1 -2023-08-08 13:37:49.525061 2023-08-08 13:37:49.525066 166d9f1e-7fb6-45d5-8084-ad568ff04c1e {"md5": "b19f9384a6dec401f83364e9a5da8cfd", "pid": "263714691", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Antiquités égyptiennes"}, {"authorized_access_point": "Lampes antiques"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714691", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180259680", "source": "BNF"}], "classification": [{"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}, {"name": "Dessin, arts décoratifs, artisanat d'art", "type": "bf:ClassificationDdc", "classificationPortion": "740"}, {"name": "Préhistoire et histoire ancienne", "type": "bf:ClassificationDdc", "classificationPortion": "930"}], "variant_access_point": ["Lampes égyptiennes - Antiquité", "Lampes égyptiennes antiques", "Lampes égyptiennes de l'Antiquité"], "authorized_access_point": "Lampes égyptiennes"} 1 -2023-08-08 14:28:42.148629 2023-08-08 14:28:42.148697 44ad847b-e2d5-4862-be53-417c0dfd25aa {"md5": "cfdd035b80013146fa412d11612f239e", "pid": "027805301", "note": [{"label": ["Ne pas utiliser : employer les subdivisions 19e siècle, Histoire -- 19e siècle ou les vedettes construites comprenant la subdivision 1815-1870"], "noteType": "seeReference"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:42.125605+00:00", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027805301", "source": "IDREF"}], "authorized_access_point": "1815-1870"} 1 -2023-08-08 13:37:49.57528 2023-08-08 13:37:49.575283 bab99072-979a-40c2-a58c-68dcdf272d2f {"md5": "3013bac93437e7af527bdd0954ccdd6b", "pid": "263714705", "note": [{"label": ["Respirianisme et risque de dérive sectaire - https://www.miviludes.interieur.gouv.fr (2022-07-22)", "Respirianisme : attention, danger ! - https://sante.journaldesfemmes.f (2022-07-22)", "Le jeûne thérapeutique : conséquenses métaboliques, pratiques, intérêts et limites / P. Chambouvet, 2016 [thèse] - bibnum.univ-lyon1.fr (2022-07-22)"], "noteType": "dataSource"}, {"label": ["Mouvement spirituel créé en 1993 par Jasmuheen prônant un jeûne extrême (inédie) et une \\"alimentation pranique\\" c'est-à-dire d'air et de lumière"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Jeûne"}], "related": [{"authorized_access_point": "Prāṇāyāma"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "GND", "authorized_access_point": "Lichtnahrung"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714705", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18025982j", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}, {"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Breatharisme", "Mouvement respirianiste", "Nutrition pranique", "Pranisme"], "authorized_access_point": "Respirianisme"} 1 -2023-08-08 13:37:49.645987 2023-08-08 13:37:49.64599 27eef000-77a1-4f05-bab9-5a4c233d4280 {"md5": "bfe50ed362070c5a3870aab3ff5599b8", "pid": "263714713", "note": [{"label": ["Dict. de la préhistoire / A. Leroi-Gourhan, 1997 (art. : Bracelets)", "La préhistoire / D. Vialou, 2004 (art. : Parure)", "Les bracelets de pierre du Néolithique méridional / J. Courtin, X. Gutherz [in] Bulletin de la société préhistorique française. Études et travaux, 1976, 73, 1 - https://www.persee.fr (2022-07-22)"], "noteType": "dataSource"}, {"label": ["Faits d'éléments enfilés ou attachés, attestés à partir du Mésolithique, ou faits d'une seule pièce, en test, pierre ou métal au Néolithique, en bronze à partir de l'âge du Bronze, de forme et matière variées à l'âge du Fer (verre, etc.)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bijoux préhistoriques"}, {"authorized_access_point": "Bracelets (bijoux)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263714713", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180259878", "source": "BNF"}], "classification": [{"name": "Dessin, arts décoratifs, artisanat d'art", "type": "bf:ClassificationDdc", "classificationPortion": "740"}, {"name": "Préhistoire et histoire ancienne", "type": "bf:ClassificationDdc", "classificationPortion": "930"}], "variant_access_point": ["Bracelets (bijoux) - Préhistoire", "Bracelets de la préhistoire", "Bracelets protohistoriques"], "authorized_access_point": "Bracelets préhistoriques"} 1 -2023-08-08 14:28:42.257143 2023-08-08 14:28:42.257151 48cd9898-f24d-4d28-93d7-e281b5632435 {"md5": "eabcfa699c405c06c2d4c9fe80069b0a", "pid": "027805824", "note": [{"label": ["Ne pas utiliser : employer les subdivisions 19e siècle, Histoire -- 19e siècle ou les vedettes construites comprenant la subdivision 1815-1848"], "noteType": "seeReference"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:42.243305+00:00", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027805824", "source": "IDREF"}], "authorized_access_point": "1815-1848"} 1 -2023-08-08 14:28:43.994487 2023-08-08 14:28:43.994492 84d4b0ee-072c-40c5-8954-74d841656051 {"md5": "cae57d83a68be8c607265ff469a2a8f1", "pid": "027812596", "note": [{"label": ["Ne plus utiliser : employer les subdivisions 20e siècle, Histoire -- 20e siècle ou les vedettes construites comprenant la subdivision 1918-1960"], "noteType": "seeReference"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:43.978364+00:00", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027812596", "source": "IDREF"}], "authorized_access_point": "1918-1960"} 1 -2023-08-08 14:28:44.067631 2023-08-08 14:28:44.067635 5e578a34-4d43-49b6-a5ad-0a9d6339a388 {"md5": "16fe5e514ce983f9df056df85e46ad26", "pid": "02781341X", "note": [{"label": ["Ne pas utiliser : employer les subdivisions 1970-...., Histoire -- 1970-...., ou les vedettes construites comprenant la subdivision 1981-"], "noteType": "seeReference"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:44.061768+00:00", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02781341X", "source": "IDREF"}], "authorized_access_point": "1981"} 1 -2023-08-08 14:28:44.862559 2023-08-08 14:28:44.862564 81f1b867-0897-4444-b8b2-5a2b77d61233 {"md5": "da2b7c67fbfab0ab7c20fee6e18cb08a", "pid": "027813533", "note": [{"label": ["Ne pas utiliser : employer les subdivisions 1900-1945, Histoire -- 1900-1945 ou les vedettes construites comprenant la subdivision 1917-1948"], "noteType": "seeReference"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:44.848459+00:00", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027813533", "source": "IDREF"}], "authorized_access_point": "1917-1948"} 1 -2023-08-08 14:28:46.899963 2023-08-08 14:28:46.899968 536add5e-018f-4e98-aedf-ae6b7be1d1a9 {"md5": "f38ef2f44cc52cccd0f6f614d0a0b79a", "pid": "027804232", "note": [{"label": ["Ne pas utiliser : employer les subdivisions 1900-1945 ; Histoire -- 1900-1945 ; Histoire -- 1939-1945 (Guerre mondiale) [ACN 787424] : aux noms des armes militaires ; Histoire -- 1940-1945 [ACN 162259] : aux noms de lieux français ; ou les vedettes construites comprenant la subdivision 1939-1945"], "noteType": "seeReference"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:46.891848+00:00", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027804232", "source": "IDREF"}], "authorized_access_point": "1939-1945"} 1 -2023-08-08 14:28:41.196148 2023-08-08 14:28:41.196153 f4f0e682-c018-4cd2-8dbc-7b32e2cd2048 {"md5": "215ab160a48f287a88affd57b670874c", "pid": "027796930", "note": [{"label": ["Ne pas utiliser : employer les subdivisions 1900-1945, Histoire -- 1900-1945 ou les vedettes construites comprenant la subdivision 1918-1939"], "noteType": "seeReference"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:41.182452+00:00", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027796930", "source": "IDREF"}], "authorized_access_point": "1918-1939"} 1 -2023-08-08 14:28:41.287102 2023-08-08 14:28:41.287114 32da71f8-3f15-4a87-b399-e73704929f9d {"md5": "b267858a4b6e93d997eea036808ce5f1", "pid": "027797619", "note": [{"label": ["Ne pas utiliser : employer les subdivisions Moyen âge (ACN 211948), Histoire -- Moyen âge (ACN 218067) ou les vedettes construites comprenant la subdivision 476-1492"], "noteType": "seeReference"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:41.276336+00:00", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027797619", "source": "IDREF"}], "authorized_access_point": "476-1492"} 1 -2023-08-08 14:28:41.389551 2023-08-08 14:28:41.389559 b6fdadc1-d4c0-47ae-b013-4e44193d618a {"md5": "2a8f99a372d55e63dfe6fc62289be74d", "pid": "027798461", "note": [{"label": ["Ne pas utiliser : employer les subdivisions 1900-1945, Histoire -- 1900-1945 ou les vedettes construites comprenant la subdivision 1889-1930"], "noteType": "seeReference"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:41.375163+00:00", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027798461", "source": "IDREF"}], "authorized_access_point": "1889-1930"} 1 -2023-08-08 14:25:02.813555 2023-08-08 14:35:53.190186 99024c9b-1e95-46e9-952f-0012b00b9d1e {"md5": "ee6b2b822d01cf06fe90b15f21f8a3ec", "pid": "029531411", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux vedettes du type : Église catholique -- [subd. géogr.] et aux vedettes en lien avec l'Église catholique"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Église catholique - 1965-...."}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029531411", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb121138342", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "08582898X"}, "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Histoire et géographie (généralités)", "type": "bf:ClassificationDdc", "classificationPortion": "900"}], "authorized_access_point": "1965-...."} 3 -2023-08-08 13:58:50.849152 2023-08-08 14:31:44.81173 52dd2fc8-bc87-4e7f-b3bb-4985ccf26ee6 {"md5": "4c3f92fdb4c60044f15ccad2b451fe8a", "pid": "027794687", "note": [{"label": ["Dict. encyclopédique d'histoire / M. Mourre, 1996"], "noteType": "dataSource"}, {"label": ["Laval RVM (en ligne), 2012-10-16."], "noteType": "dataNotFound"}, {"label": ["2 septembre 1945 : fin de la Seconde guerre mondiale", "S'emploie uniquement en subdivision chronologique [sans subd. géogr.] à tous sujets noms communs et noms propres, à l'exception des personnes et des sujets pour lesquels il existe un découpage chronologique spécifique, par ex. : Canada -- 1914-1945"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "20e siècle"}], "related": [{"authorized_access_point": "1870-1914"}, {"authorized_access_point": "Histoire universelle - 1914-1945"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027794687", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11976044c", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "028658531"}, "classification": [{"name": "Histoire", "type": "bf:ClassificationDdc", "classificationPortion": "900"}], "variant_access_point": ["1900-1945 (subdivision)"], "authorized_access_point": "1900-1945"} 8 -2023-08-08 14:34:56.662705 2023-08-08 14:35:50.046233 8e919197-8fe9-4c9f-8c99-11a69cb349ec {"md5": "7a024d7b6a7f20312a4467466359d9b6", "pid": "033297746", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures suédoises"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Suédois (langue) - 1525-1732"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033297746", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12417795g", "source": "BNF"}], "classification": [{"name": "Langues", "type": "bf:ClassificationDdc", "classificationPortion": "400"}], "authorized_access_point": "1525-1732"} 2 -2023-08-08 14:34:56.74233 2023-08-08 14:35:50.1512 fa7e361b-808e-4a30-8ebd-3467a4a9befc {"md5": "d2936409633838dc01b5efd5f06ec100", "pid": "050170406", "note": [{"label": ["S'emploie uniquement en subdivision chronologique non affranchie sous la vedette : Église catholique -- [subd. géogr.]"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050170406", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13339991h", "source": "BNF"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Histoire", "type": "bf:ClassificationDdc", "classificationPortion": "900"}], "authorized_access_point": "1900-1965"} 2 -2023-08-08 14:34:56.80743 2023-08-08 14:35:50.216607 396f5ee3-eb51-4d85-9ec8-ecb32d47e8a8 {"md5": "578c392be74219d8be719c0739bd3457", "pid": "098272225", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures turques"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature turque - 1839-1923"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/098272225", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15048183d", "source": "BNF"}], "classification": [{"name": "Littératures", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1839-1923"} 2 -2023-08-08 14:34:56.905927 2023-08-08 14:35:50.290622 f23d7806-3e56-44fe-8499-7c0f84293fbd {"md5": "9ae1b203c42ba83631436d766dbcbd30", "pid": "241963974", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures japonaises"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/241963974", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17818148x", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "2019-....(Ère Reiwa)"} 2 -2023-08-08 14:25:03.873956 2023-08-08 14:35:53.705899 3ca071f0-ddbc-47ab-84b1-051e28b3ccf0 {"md5": "c8dd3a54dc03d0d882de40daa121b1c0", "pid": "033466300", "note": [{"label": ["Dict. encyclopédique d'histoire / M. Mourre, 1996"], "noteType": "dataSource"}, {"label": ["3 octobre 1990 : unification de l'Allemagne et fin de la Guerre froide ; 2020 : coronavirus", "S'emploie uniquement en subdivision chronologique à tous sujets noms communs et noms propres à l'exception des personnes et des sujets pour lesquels il existe un découpage chronologique spécifique, par ex. : Europe -- 1989-"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "1970-...."}], "related": [{"authorized_access_point": "2000-...."}, {"authorized_access_point": "Histoire universelle - 1990-...."}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033466300", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12432924q", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "033466386"}, "classification": [{"name": "Histoire et géographie (généralités)", "type": "bf:ClassificationDdc", "classificationPortion": "900"}], "variant_access_point": ["1990-2020 (subdivision)"], "authorized_access_point": "1990-2020"} 3 -2023-08-08 14:25:04.600016 2023-08-08 14:35:54.342035 8eabcdf6-cfa4-466d-9109-fcc3bf4561ca {"md5": "36a14563741d351d7567f1692ec584d5", "pid": "050665391", "note": [{"label": ["S'emploie uniquement en subdivision chronologique à tous sujets noms communs et noms propres, à l'exception des personnes et des sujets pour lesquels il existe un découpage chronologique spécifique"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "1800-...."}], "related": [{"authorized_access_point": "1990-2020"}, {"authorized_access_point": "Vingt et unième siècle"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050665391", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb135365257", "source": "BNF"}], "classification": [{"name": "Histoire et géographie (généralités)", "type": "bf:ClassificationDdc", "classificationPortion": "900"}], "variant_access_point": ["2000-.... (subdivision)", "21e siècle (subdivision)", "Vingt et unième siècle (subdivision)", "XXIe siècle (subdivision)", "21e siècle"], "authorized_access_point": "2000-...."} 3 -2023-08-08 14:36:35.646803 2023-08-08 14:36:35.646818 d9a213e6-e932-48f7-9d2d-fcc984520412 {"md5": "a6b4ae4c7dc1b32374309573a4a0a2b7", "pid": "027793974", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures allemandes", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature allemande, qui sert de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires allemands"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature allemande - 1050-1350 (moyen haut-allemand)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027793974", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119759945", "source": "BNF"}], "classification": [{"name": "Langues et linguistique", "type": "bf:ClassificationDdc", "classificationPortion": "400"}, {"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1050-1350(moyen haut-allemand)"} 1 -2023-08-08 14:36:35.805204 2023-08-08 14:36:35.805215 d3de9aa0-6938-4e14-a8f8-cfdabb78514c {"md5": "f59538c5b5ed1bd32fcefb584c635c70", "pid": "027794016", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures anglaises", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature anglaise, qui sert de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires anglais"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Anglais (langue) - +* 1100......- 1500......+:1100-1500: (moyen anglais)"}, {"authorized_access_point": "Littérature anglaise - 1100-1500 (moyen anglais)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027794016", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11975996v", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1100-1500(moyen anglais)"} 1 -2023-08-08 14:36:35.916406 2023-08-08 14:36:35.916411 71d8d265-c917-496e-9d67-afa415d3ebbf {"md5": "05a59d3956c22ff4cc21f6b8f4e0056e", "pid": "027794903", "note": [{"label": ["Dict. encyclopédique d'histoire / M. Mourre, 1996"], "noteType": "dataSource"}, {"label": ["Laval RVM (en ligne), 2012-10-16"], "noteType": "dataNotFound"}, {"label": ["19 juillet 1870 : la France déclare la guerre à la Prusse ; 20 septembre 1870 : entrée de l'armée italienne à Rome. 28 juillet 1914 : début de la Première guerre mondiale", "S'emploie uniquement en subdivision chronologique [sans subd. géogr.] à tous sujets noms communs et noms propres, à l'exception des personnes et des sujets pour lesquels il existe un découpage chronologique spécifique, par ex. : Allemagne -- 1871-1918"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "1800-...."}], "related": [{"authorized_access_point": "19e siècle"}, {"authorized_access_point": "1900-1945"}, {"authorized_access_point": "Histoire universelle - 1870-1914"}, {"authorized_access_point": "Littérature française - 1870-1914"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027794903", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119760629", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "086114468"}, "classification": [{"name": "Histoire et géographie (généralités)", "type": "bf:ClassificationDdc", "classificationPortion": "900"}], "variant_access_point": ["1870-1914 (subdivision)"], "authorized_access_point": "1870-1914"} 1 -2023-08-08 14:36:36.024687 2023-08-08 14:36:36.024729 1a2c6162-ce90-486a-a187-79407712c2af {"md5": "470fa238803b41a0a61e324ac3ddaf63", "pid": "027794954", "note": [{"label": ["S'emploie uniquement en subdivision chronologique [sans subd. géogr.] à la vedette Cinéma et aux vedettes désignant des genres cinématographiques"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Cinéma - 1929-1945"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027794954", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11976066p", "source": "BNF"}], "classification": [{"name": "Audiovisuel", "type": "bf:ClassificationDdc", "classificationPortion": "791"}], "authorized_access_point": "1929-1945"} 1 -2023-08-08 14:36:36.15238 2023-08-08 14:36:36.152388 7be0f4cb-6092-49af-937d-67c577a22892 {"md5": "7fbcbe811a57ee625f0d3e95fcc0e34d", "pid": "027794962", "note": [{"label": ["S'emploie uniquement en subdivision chronologique [sans subd. géogr.] à la vedette Cinéma et aux vedettes désignant des genres cinématographiques"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Cinéma - 1945-1960"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027794962", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119760671", "source": "BNF"}], "classification": [{"name": "Audiovisuel", "type": "bf:ClassificationDdc", "classificationPortion": "791"}], "authorized_access_point": "1945-1960"} 1 -2023-08-08 14:36:36.25052 2023-08-08 14:36:36.250527 d51cab3c-3402-4bbc-9433-882ffc8725e3 {"md5": "85718db3c11c62080dfa28e992460878", "pid": "027794970", "note": [{"label": ["S'emploie uniquement en subdivision chronologique [sans subd. géogr.] à la vedette Cinéma et aux vedettes désignant des genres cinématographiques"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Cinéma - 1960-1990"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027794970", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11976068c", "source": "BNF"}], "classification": [{"name": "Audiovisuel", "type": "bf:ClassificationDdc", "classificationPortion": "791"}], "authorized_access_point": "1960-1990"} 1 -2023-08-08 14:36:36.319685 2023-08-08 14:36:36.319689 97674a84-34c2-4f53-bcb2-bde96ccb969c {"md5": "33af7a1894bb303d356f6f18189e41db", "pid": "027795926", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures polonaises", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature polonaise, celle-ci servant de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires polonais"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature polonaise - 1918-1945"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027795926", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15521981p", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "113932618"}, "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1918-1945"} 1 -2023-08-08 14:36:36.428666 2023-08-08 14:36:36.428678 fd1c8618-f5f8-4474-883d-91d0a8cbd332 {"md5": "18506a976f437cbb613506de2668b4b1", "pid": "027796817", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures espagnoles et portugaises", "Cette subdivision est utilisée dans une chaîne construite avec les vedettes Littérature espagnole et Littérature portugaise, qui servent de vedettes modèles. Elle est à utiliser par éléments avec tous les genres littéraires espagnols et portugais"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Espagnol (langue) - +* 1500......- 1700......+:1500-1700: (Période classique)"}, {"authorized_access_point": "Littérature espagnole - 1500-1700 (Période classique)"}, {"authorized_access_point": "Littérature portugaise - 1500-1700 (Période classique)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027796817", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11976189m", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1500-1700(Période classique)"} 1 -2023-08-08 14:36:36.532804 2023-08-08 14:36:36.532817 020bf9a9-fa75-4fea-bc71-06d203fcc4ae {"md5": "b1f7ce2f37b1374dee20a426f797bb2f", "pid": "027799433", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures espagnoles, catalanes et galiciennes"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature catalane - 1939-1975"}, {"authorized_access_point": "Littérature espagnole - 1939-1975"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027799433", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15586264m", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "120074303"}, "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1939-1975"} 1 -2023-08-08 14:36:36.643936 2023-08-08 14:36:36.643945 09bf1911-ebfc-42dd-bd15-875a04744e74 {"md5": "c59a35e4d5f82b6152804d9e3ee04676", "pid": "027804038", "note": [{"label": ["S'emploie uniquement en subdivision chronologique [sans subd. géogr.] à la vedette Cinéma et aux vedettes désignant des genres cinématographiques"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Cinéma - 1895-1929"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027804038", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11976743z", "source": "BNF"}], "classification": [{"name": "Audiovisuel", "type": "bf:ClassificationDdc", "classificationPortion": "791"}], "authorized_access_point": "1895-1929"} 1 -2023-08-08 14:36:36.742462 2023-08-08 14:36:36.742472 b775665f-e8f2-455d-80cd-ee3e36b045f0 {"md5": "d1e1ba8c5e56e22cbec9ee6a29ed03bf", "pid": "027804186", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures espagnoles, catalanes, galiciennes et vietnamiennes", "Cette subdivision est utilisée dans une chaîne construite avec les vedettes Littérature catalane, Littérature espagnole et Littérature vietnamienne, celles-ci servant de vedettes modèles. Elle est à utiliser par éléments avec tous les genres littéraires espagnols, catalans, galiciens et vietnamiens"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature catalane - 1975-...."}, {"authorized_access_point": "Littérature espagnole - 1975-...."}, {"authorized_access_point": "Littérature vietnamienne - 1975-...."}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027804186", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119767569", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1975-...."} 1 -2023-08-08 14:36:36.862358 2023-08-08 14:36:36.862362 06f00fc5-8fa3-429d-a624-2de659f12cbd {"md5": "a713f3716ced9f6a5d616aa5c2c92a3f", "pid": "030860466", "note": [{"label": ["Japanese Literary History - http://www.jlit.net (2018-08-30)"], "noteType": "dataSource"}, {"label": ["S'emploie uniquement en subdivision chronologique [sans subd. géogr.] aux littératures japonaises, par ex. : Poésie japonaise -- 1600-1868 (Époque d'Edo)", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature japonaise, qui sert de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires japonais"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature japonaise - 1600-1868 (Époque d'Edo)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030860466", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb122191473", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["1600-1868 (Époque d'Edo)", "Époque d'Edo (1600-1868)"], "authorized_access_point": "1600-1868(Époque d'Edo)"} 1 -2023-08-08 14:36:36.956526 2023-08-08 14:36:36.956537 f477327a-5ef0-45bd-9501-aa8da9a7064b {"md5": "1255b779ff036b71b8732ec555ed8703", "pid": "031022219", "note": [{"label": ["S'emploie uniquement en subdivision chronologique à certaines littératures", "Cette subdivision est utilisée dans une chaîne construite avec les vedettes de littératures, celles-ci servant de vedettes modèles pour tous les genres littéraires de même langue ou de même nationalité, par ex. : Littérature russe -- Avant 1700. Elle est à utiliser par éléments avec les genres littéraires"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature biélorusse - Avant 1700"}, {"authorized_access_point": "Littérature écossaise - Avant 1700"}, {"authorized_access_point": "Littérature lituanienne - Avant 1700"}, {"authorized_access_point": "Littérature russe - Avant 1700"}, {"authorized_access_point": "Littérature serbe - Avant 1700"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031022219", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12232063s", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Avant 1700"} 1 -2023-08-08 14:36:37.042457 2023-08-08 14:36:37.042461 b98b4d1f-e5d2-4865-873f-4ca9c125944b {"md5": "c24aa7d62b52901dd8ea61246aa5d8fe", "pid": "031937667", "note": [{"label": ["S'emploie uniquement en subdivision chronologique à la langue et aux littératures catalanes", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature catalane, celle-ci servant de modèle. Elle est à utiliser par éléments avec tous les genres littéraires catalans"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Catalan (langue) - +* 1500......- 1799......+:16e-18e siècles: (Décadence)"}, {"authorized_access_point": "Littérature catalane - 16e-18e siècles (Décadence)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031937667", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb123061282", "source": "BNF"}], "classification": [{"name": "Langues et linguistique", "type": "bf:ClassificationDdc", "classificationPortion": "400"}, {"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "16e-18e siècles(Décadence)"} 1 -2023-08-08 14:36:37.173679 2023-08-08 14:36:37.173687 09fa9bc5-7bc3-4136-b7ea-6c0443794d3c {"md5": "8b483cc5775ca6cdcd8d959fc2d659ba", "pid": "033070202", "note": [{"label": ["La subdivision chronologique 1600-1755 (Période coloniale) s'emploie uniquement aux littératures et genres littéraires américains", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature américaine, celle-ci servant de vedette modèle pour les genres littéraires de même nationalité. Elle est à utiliser par éléments avec les genres littéraires"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature américaine - 1600-1775 (période coloniale)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033070202", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb123973877", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1600-1775(Période coloniale)"} 1 -2023-08-08 14:36:37.252859 2023-08-08 14:36:37.252864 7d278631-1934-4a72-9c8b-3b6b8ca3e5cc {"md5": "dc0a30eadca3a8ca7f2e0a892fcd2ac2", "pid": "034577769", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures et genres littéraires belges, flamands et wallons", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature belge, celle-ci servant de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires belges"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature belge - 1830-1900"}, {"authorized_access_point": "Littérature flamande - 1830-1900"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034577769", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb125319537", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1830-1900"} 1 -2023-08-08 14:36:37.314421 2023-08-08 14:36:37.314423 4974ccd2-aed1-4c51-aca4-cef932987328 {"md5": "4b8dcf237c477d70493791b9363819b6", "pid": "03483446X", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures chypriotes", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature chypriote, qui sert de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires chypriotes"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature chypriote - 1571-...."}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03483446X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12554505d", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1571-...."} 1 -2023-08-08 14:36:37.387547 2023-08-08 14:36:37.387557 56165ddd-8151-41a4-9afb-d6f899f66f83 {"md5": "b95926ad7853c8be5393913ee172f565", "pid": "034853537", "note": [{"label": ["S'emploie uniquement en subdivision chronologique à certaines littératures, par exemple les littératures latino-américaines, la littérature arménienne, etc", "Cette subdivision est utilisée dans des chaînes construites avec les littératures, celles-ci servant de vedettes modèles pour tous les genres littéraires de même langue ou de même nationalité, par ex. : Littérature arménienne -- Avant 1800. Elle est à utiliser par éléments avec les genres littéraires"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature argentine - Avant 1800"}, {"authorized_access_point": "Littérature arménienne - Avant 1800"}, {"authorized_access_point": "Littérature basque - Avant 1800"}, {"authorized_access_point": "Littérature bolivienne - Avant 1800"}, {"authorized_access_point": "Littérature brésilienne - Avant 1800"}, {"authorized_access_point": "Littérature chilienne - Avant 1800"}, {"authorized_access_point": "Littérature colombienne - Avant 1800"}, {"authorized_access_point": "Littérature cubaine - Avant 1800"}, {"authorized_access_point": "Littérature équatorienne - Avant 1800"}, {"authorized_access_point": "Littérature finnoise - Avant 1800"}, {"authorized_access_point": "Littérature hispano-américaine - Avant 1800"}, {"authorized_access_point": "Littérature hongroise - Avant 1800"}, {"authorized_access_point": "Littérature latino américaine - Avant 1800"}, {"authorized_access_point": "Littérature mexicaine - Avant 1800"}, {"authorized_access_point": "Littérature persane - Avant 1800"}, {"authorized_access_point": "Littérature péruvienne - Avant 1800"}, {"authorized_access_point": "Littérature roumaine - Avant 1800"}, {"authorized_access_point": "Littérature slave - Avant 1800"}, {"authorized_access_point": "Littérature slovaque - Avant 1800"}, {"authorized_access_point": "Littérature slovène - Avant 1800"}, {"authorized_access_point": "Littérature ukrainienne - Avant 1800"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034853537", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12556227c", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Avant 1800"} 1 -2023-08-08 14:36:37.487359 2023-08-08 14:36:37.487369 db8d6bb2-8ebb-4b75-94f3-117c616bab14 {"md5": "ae15161166d70802ce226b68b137ffb0", "pid": "03487156X", "note": [{"label": ["Japanese Literary History - http://www.jlit.net (2010-07-12)"], "noteType": "dataSource"}, {"label": ["S'emploie uniquement en subdivision chronologique aux littératures japonaises", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature japonaise, qui sert de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires japonais"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature japonaise - 1185-1600"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03487156X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb125578398", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1185-1600"} 1 -2023-08-08 14:36:37.585033 2023-08-08 14:36:37.585038 ea879123-ffc8-4981-8c45-d6ea94c8e630 {"md5": "300d0379607c6700441f87ad978c22e0", "pid": "034933697", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures allemandes", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature allemande, qui sert de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires allemands"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature allemande - 750-1050 (vieux haut-allemand)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034933697", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb125633859", "source": "BNF"}], "classification": [{"name": "Langues et linguistique", "type": "bf:ClassificationDdc", "classificationPortion": "400"}, {"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "750-1050(vieux haut-allemand)"} 1 -2023-08-08 14:36:37.709926 2023-08-08 14:36:37.70994 e2ead26d-888c-414a-9627-e6dda081523b {"md5": "80ad0fea693e1ddc8ec846ab5e29cfca", "pid": "034934774", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures américaines", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature américaine, celle-ci servant de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires américains"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature américaine - 1783-1865"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034934774", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb125634727", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["1783-1850"], "authorized_access_point": "1783-1865"} 1 -2023-08-08 14:36:37.839071 2023-08-08 14:36:37.839076 e29aba64-5c62-409d-8413-24f976c6654b {"md5": "03ff6369b7b32d2d23f9c1938077ec43", "pid": "034934936", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures anglaises", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature anglaise, qui sert de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires anglais"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Anglais (langue) - +* 0450......- 1100......+:450-1100: (vieil anglais)"}, {"authorized_access_point": "Littérature anglaise - 450-1100 (vieil anglais)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034934936", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12563486x", "source": "BNF"}], "classification": [{"name": "Langues et linguistique", "type": "bf:ClassificationDdc", "classificationPortion": "400"}, {"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "450-1100(vieil anglais)"} 1 -2023-08-08 14:36:37.939476 2023-08-08 14:36:37.939486 c5414354-19e0-40e8-8490-83f2273b7503 {"md5": "5fd5f41bdeaf6c42613d2e35b7172e8a", "pid": "034935061", "note": [{"label": ["La subdivision chronologique Avant 622 s'emploie uniquement aux littératures et genres littéraires arabes", "Cette subdivision est utilisée dans une chaîne construite avec la littérature, celle-ci servant de vedette modèle pour les genres littéraires de même langue. Elle est à utiliser par éléments avec les genres littéraires"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature arabe - Avant 622"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034935061", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb125634967", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Avant 622"} 1 -2023-08-08 14:36:38.04093 2023-08-08 14:36:38.040934 a0f0022f-342d-44fc-a41e-df6a2a4147d3 {"md5": "40fcd9266ffe6af14d94a73f5ff18ae9", "pid": "034935134", "note": [{"label": ["La subdivision chronologique 622-750 s'emploie uniquement aux littératures et genres littéraires arabes", "Cette subdivision est utilisée dans une chaîne construite avec la littérature, celle-ci servant de vedette modèle pour les genres littéraires de même langue. Elle est à utiliser par éléments avec les genres littéraires"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature arabe - 622-750"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034935134", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb125635010", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "622-750"} 1 -2023-08-08 14:36:38.15992 2023-08-08 14:36:38.159924 b1bd4159-659e-42a4-911f-43a22c1815f8 {"md5": "c972c0188c5db3201ba3534db68394e5", "pid": "034935177", "note": [{"label": ["La subdivision chronologique 750-1258 s'emploie uniquement aux littératures et genres littéraires arabes", "Cette subdivision est utilisée dans une chaîne construite avec la littérature, celle-ci servant de vedette modèle pour les genres littéraires de même langue. Elle est à utiliser par éléments avec les genres littéraires"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature arabe - 750-1258"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034935177", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12563505c", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "750-1258"} 1 -2023-08-08 14:36:38.27549 2023-08-08 14:36:38.275494 905b11a4-a57c-4547-bb02-e6bdf1a657ac {"md5": "eac7be14a25c2f07cdd9a2b486c30312", "pid": "034935207", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures arabes"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature arabe - 1801-...."}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034935207", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb125635072", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1801-...."} 1 -2023-08-08 14:36:38.330467 2023-08-08 14:36:38.33047 8c8030e0-9385-42bb-8059-b4564db69157 {"md5": "224407fc8664efad7f87ce3f72205909", "pid": "034935274", "note": [{"label": ["La subdivision chronologique Avant 221 av. J.-C. s'emploie uniquement aux littératures et genres littéraires chinois", "Cette subdivision est utilisée dans une chaîne construite avec la littérature, celle-ci servant de vedette modèle pour les genres littéraires de même nationalité. Elle est à utiliser par éléments avec les genres littéraires"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature chinoise - Avant 221 av. J.-C."}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034935274", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12563512n", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Avant 221 av. J.-C."} 1 -2023-08-08 14:36:38.390747 2023-08-08 14:36:38.390752 1cf39e6e-f634-4c66-a5e4-aaba65228782 {"md5": "7d77391fb983b6e0a3537d483205eec2", "pid": "034935290", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures et genres littéraires chinois", "Cette subdivision est utilisée dans une chaîne construite avec la littérature chinoise, celle-ci servant de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires chinois"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature chinoise - 221 av. J.-C.-220 (dynasties des Qin et des Han)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034935290", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb125635130", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}, {"name": "Préhistoire et histoire ancienne", "type": "bf:ClassificationDdc", "classificationPortion": "930"}], "authorized_access_point": "221 av. J.-C.-220(Dynasties des Qin et des Han)"} 1 -2023-08-08 14:36:38.521827 2023-08-08 14:36:38.521851 f3bcc4c5-3dba-4e27-a74c-999bee8bc73a {"md5": "af768121369c422958aabbfd2b290806", "pid": "034935304", "note": [{"label": ["Encycl. universalis (art. : Chinoise (Civilisation) - La littérature) : Empire des Tang (618-907) - http://www.universalis-edu.com (2014-07-25)"], "noteType": "dataSource"}, {"label": ["S'emploie uniquement en subdivision chronologique [sans subd. géogr.] aux littératures chinoises, par ex. : Poésie chinoise -- 618-907 (Dynastie des T′ang)", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature chinoise, qui sert de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires chinois"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature chinoise - 618-907 (Dynastie des T′ang)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034935304", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12563514b", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "618-907(Dynastie des T′ang)"} 1 -2023-08-08 14:36:38.621724 2023-08-08 14:36:38.621734 2aa7711c-1eeb-4dc3-99da-ba94a1c9c11b {"md5": "8db12d54f85d7b12a7956bd23cb17692", "pid": "034935827", "note": [{"label": ["La subdivision chronologique 1368-1644 (Dynastie des Ming) s'emploie uniquement aux littératures et genres littéraires chinois", "Cette subdivision est utilisée dans une chaîne construite avec la littérature, celle-ci servant de vedette modèle pour les genres littéraires de même nationalité. Elle est à utiliser par éléments avec les genres littéraires"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature chinoise - 1368-1644 (Dynastie des Ming)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034935827", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12563558z", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1368-1644(Dynastie des Ming)"} 1 -2023-08-08 14:36:38.715927 2023-08-08 14:36:38.715932 b3276933-966c-4c6e-994d-3bf17b33d73b {"md5": "56fac10d6ef1399fc2c3bf98b30e5c3a", "pid": "034935835", "note": [{"label": ["La subdivision chronologique 1644-1912 (Dynastie Mandchoue) s'emploie uniquement aux littératures et genres littéraires chinois", "Cette subdivision est utilisée dans une chaîne construite avec la littérature, celle-ci servant de vedette modèle pour les genres littéraires de même nationalité. Elle est à utiliser par éléments avec les genres littéraires"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature chinoise - 1644-1912 (Dynastie mandchoue)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034935835", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb125635599", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1644-1912(Dynastie Mandchoue)"} 1 -2023-08-08 14:36:38.810937 2023-08-08 14:36:38.81094 a5d1eb4b-4345-414e-9f1f-5c0212eef780 {"md5": "2b5215066abda72b6791aeeb66dc7194", "pid": "034935908", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures coréennes", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature coréenne, celle-ci servant de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires coréens"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature coréenne - 1600-1800"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034935908", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12563564w", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["1598-1800"], "authorized_access_point": "1600-1800"} 1 -2023-08-08 14:36:38.922049 2023-08-08 14:36:38.922059 cbda8652-82ec-45ba-ba83-fc44175180eb {"md5": "36d17808b1df75a327dcabf7903a1cfd", "pid": "034936890", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures grecques modernes", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature grecque moderne, celle-ci servant de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires grecs modernes"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature grecque moderne - 1453-1820"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034936890", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb125636498", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["1453-1820", "1453-1800"], "authorized_access_point": "1453-1820"} 1 -2023-08-08 14:36:39.024576 2023-08-08 14:36:39.02458 bf47cc82-eee1-422d-a9d5-cecdc5385e2e {"md5": "c04b29a794e5e3ac8ac498c1e97ac7af", "pid": "034937072", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures coréennes et japonaises", "Cette subdivision est utilisée dans une chaîne construite avec les vedettes Littérature coréenne et Littérature japonaise, celles-ci servant de modèles. Elle est à utiliser par éléments avec tous les genres littéraires coréens et japonais"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature coréenne - Avant 1600"}, {"authorized_access_point": "Littérature japonaise - Avant 1600"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034937072", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb125636645", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Avant 1600"} 1 -2023-08-08 14:36:39.112601 2023-08-08 14:36:39.112605 0d0d8135-7eb1-46f8-addc-dda95a118ad4 {"md5": "a04ac83e897683f6112d0eaf02c9e259", "pid": "034937099", "note": [{"label": ["La subdivision chronologique Avant 794 s'emploie uniquement aux littératures et genres littéraires japonais", "Cette subdivision est utilisée dans une chaîne construite avec la littérature, celle-ci servant de vedette modèle pour les genres littéraires de même nationalité. Elle est à utiliser par éléments avec les genres littéraires"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature japonaise - Avant 794"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034937099", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12563666v", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Avant 794"} 1 -2023-08-08 14:36:39.223237 2023-08-08 14:36:39.223248 dd0bbd4a-0e71-46ca-85f8-7655b99e9558 {"md5": "2c8f977eb1bd4b951c4bc2b03d4e14e5", "pid": "034937129", "note": [{"label": ["La subdivision chronologique 1868-.... s'emploie uniquement aux littératures et genres littéraires japonais", "Cette subdivision est utilisée dans une chaîne construite avec la littérature, celle-ci servant de vedette modèle pour les genres littéraires de même nationalité. Elle est à utiliser par éléments avec les genres littéraires"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature japonaise - 1868-...."}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034937129", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12563668j", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "086230441"}, "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1868-...."} 1 -2023-08-08 14:36:39.327734 2023-08-08 14:36:39.327738 7363f33b-2cdc-4145-be7d-a1744ff52b67 {"md5": "b2b4d1763c043c6bb427ed13775ad035", "pid": "035021128", "note": [{"label": ["La subdivision chronologique Avant 1762 s'emploie uniquement aux littératures et genres littéraires bulgares", "Cette subdivision est utilisée dans des chaînes construites avec la littérature bulgare, celle-ci servant de vedette modèle pour les genres littéraires bulgares"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature bulgare - Avant 1762"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035021128", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12570883g", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Avant 1762"} 1 -2023-08-08 14:36:39.389369 2023-08-08 14:36:39.389372 864db971-841c-44eb-9315-0911e1bac34e {"md5": "dcbb414874538f693fb9e6fac5660683", "pid": "035021179", "note": [{"label": ["S'emploie uniquement en subdivision chronologique [sans subd. géogr.] aux littératures bulgares", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature bulgares, qui sert de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires bulgares"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature bulgare - 1762-1878"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035021179", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12570887v", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["1762-1880"], "authorized_access_point": "1762-1878"} 1 -2023-08-08 14:36:39.445362 2023-08-08 14:36:39.445366 b05461e5-628e-4165-b53e-6d2af2971567 {"md5": "7257b226b44548074ee1d5ea2e1ea46e", "pid": "035077948", "note": [{"label": ["La subdivision chronologique 1912-1949 s'emploie uniquement aux littératures et genres littéraires chinois", "Cette subdivision est utilisée dans une chaîne construite avec la littérature, celle-ci servant de vedette modèle pour les genres littéraires de même nationalité. Elle est à utiliser par éléments avec les genres littéraires"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature chinoise - 1912-1949"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035077948", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb131655179", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1912-1949"} 1 -2023-08-08 14:36:39.511255 2023-08-08 14:36:39.511258 eb5d813d-729c-4ffe-98c4-c783981b5076 {"md5": "a902aaf1610588b731473316c695c42c", "pid": "035077964", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures chinoises", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature chinoise, celle-ci servant de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires chinois"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature chinoise - 1949-1976"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035077964", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb131655190", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1949-1976"} 1 -2023-08-08 14:36:39.622558 2023-08-08 14:36:39.622566 f35d61f2-7ac1-443d-ab88-d1498a5eece0 {"md5": "efdae859455b0f6cc26393dba5a8a754", "pid": "035078316", "note": [{"label": ["Grand Larousse universel", "Encycl. universalis (art. : Chinoise (Civilisation) - La littérature) - http://www.universalis-edu.com (2014-07-25)", "Hist. des littératures / Encycl. de La Pléiade, 1958"], "noteType": "dataSource"}, {"label": ["S'emploie uniquement en subdivision chronologique [sans subd. géogr.] aux littératures chinoises, par ex. : Théâtre (genre littéraire) chinois -- 1280-1368 (Dynastie des Yuan)", "Cette subdivision est utilisée dans une chaîne construite avec la littérature chinoise, celle-ci servant de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires chinois"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature chinoise - 1280-1368 (Dynastie des Yuan)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035078316", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb131655535", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1280-1368(Dynastie des Yuan)"} 1 -2023-08-08 14:36:39.72181 2023-08-08 14:36:39.721818 9501b2b0-1dde-4b18-aed5-e01cdac4be65 {"md5": "68805e8a102ae6b4c467d833b597d4ee", "pid": "035087625", "note": [{"label": ["La subdivision chronologique 1775-1783 (Période révolutionnaire) s'emploie uniquement aux littératures et genres littéraires pratiqués aux Etats-Unis", "Cette subdivision est utilisée dans une chaîne construite avec la littérature, celle-ci servant de vedette modèle pour les genres littéraires de même nationalité. Elle est à utiliser par éléments avec les genres littéraires"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature américaine - 1775-1783 (Période révolutionnaire)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035087625", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13166188z", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1775-1783(Période révolutionnaire)"} 1 -2023-08-08 14:36:39.841464 2023-08-08 14:36:39.84147 7b48bfdc-2ba6-48c9-b823-7b3018af040d {"md5": "a08cd2c4929516a3920eb4ce7dbe2eec", "pid": "03509446X", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures galloises et suédoises", "Cette subdivision est utilisée dans une chaîne construite avec les vedettes Littérature galloise et Littérature suédoise, celles-ci servant de vedettes modèles. Elle est à utiliser par éléments avec tous les genres littéraires gallois et suédois"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature galloise - Avant 1550"}, {"authorized_access_point": "Littérature suédoise - Avant 1550"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03509446X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13166547g", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Avant 1550"} 1 -2023-08-08 14:36:39.944634 2023-08-08 14:36:39.944644 a6a542b3-a439-4bf3-8b55-67b2e757714e {"md5": "b3bdc08f45865c1309a0ffb98b406ded", "pid": "035207191", "note": [{"label": ["La subdivision Avant 1912 s'emploie uniquement aux littératures et genres littéraires chinois", "Cette subdivision est à utiliser dans des chaînes construites avec la littérature, celles-ci servant de vedettes modèles pour les genres littéraires de même langue ou de même nationalité. Elle est à utiliser par éléments avec les genres littéraires"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature chinoise - Avant 1912"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035207191", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb131743151", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Avant 1912"} 1 -2023-08-08 14:36:40.063923 2023-08-08 14:36:40.063929 5c0217bc-6953-4d95-90a9-cc81637cf867 {"md5": "b1f21dded8a37bfb7dab320badac5419", "pid": "03528076X", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures coréennes", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature coréenne, celle-ci servant de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires coréens"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature coréenne - Avant 1910"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03528076X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13320775b", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Avant 1910"} 1 -2023-08-08 14:36:40.160762 2023-08-08 14:36:40.160764 915d7477-0b1e-42e5-8684-50d2ca8babfd {"md5": "c610d75d7bb340cdf55c7e9c20d1f13e", "pid": "035383925", "note": [{"label": ["La subdivision Avant 1000 s'emploie uniquement aux littératures et genres littéraires turcs", "Cette subdivision est utilisée dans en chaîne construite avec la littérature turque, celle-ci servant de vedettes modèles pour les genres littéraires de même langue ou nationalité. Elle est à utiliser par éléments avec les genres littéraires"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature turque - Avant 1000"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035383925", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13320983h", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Avant 1000"} 1 -2023-08-08 14:36:40.260359 2023-08-08 14:36:40.260368 cc09ce48-53eb-46c6-af37-31ef9d14f58d {"md5": "94a6870557f4791e226776c552ffd926", "pid": "035623683", "note": [{"label": ["Laval-RVM, 1997-02. - LCSH, 1996-09"], "noteType": "dataNotFound"}, {"label": ["La subdivision chronologique 13e-19e siècles (dîvan) s'emploie uniquement à la littérature et aux genres littéraires turcs", "Cette subdivision est utilisée dans une chaîne construite avec la littérature, celle-ci servant de vedette modèle pour les genres littéraires de même nationalité. Elle est à utiliser par éléments avec les genres littéraires"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature turque - 13e-19e siècles (dîvan)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035623683", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13325307z", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "13e-19e siècles(dîvan)"} 1 -2023-08-08 14:36:40.376222 2023-08-08 14:36:40.376224 96d970fe-b145-470c-81ff-5b5558863fc1 {"md5": "0316d45f58c6ffeea8b54362f366e6e5", "pid": "035623691", "note": [{"label": ["S'emploie uniquement en subdivision chronologiques aux littératures et genres littéraires turcs", "Cette subdivision est à utiliser dans des chaînes construites avec la littérature turque, celles-ci servant de vedettes modèles pour les genres littéraires de même nationalité ; elle est à utiliser par éléments avec les genres littéraires"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature turque - 1923-.... (période républicaine)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035623691", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb133253089", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1923-....(période républicaine)"} 1 -2023-08-08 14:36:40.43902 2023-08-08 14:36:40.439024 38c9b788-03f8-49bc-9184-e9f9fffcc5f6 {"md5": "cee06d87b853f1e1e54c2307e1e07e89", "pid": "050323148", "note": [{"label": ["La subdivision chronologique 1550-1700 s'emploie uniquement aux littératures et aux genres littéraires gallois etirlandais", "Cette subdivision est utilisée dans une chaîne construite avec la littérature, celle-ci servant de vedette modèle pour les genres littéraires de même nationalité. Elle est à utiliser par éléments avec les genres littéraires"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature galloise - 1550-1700"}, {"authorized_access_point": "Littérature irlandaise (gaélique) - 1550-1700"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050323148", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13510132j", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1550-1700"} 1 -2023-08-08 14:36:40.505674 2023-08-08 14:36:40.505678 d43dd8d6-e710-4274-b7b8-2522ce42fa20 {"md5": "5058cf0f28a8229107e65ba51df98185", "pid": "050323172", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures galloises", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature galloise, celle-ci servant de modèle. Elle est à utiliser par éléments avec tous les genres littéraires gallois"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature galloise - 1100-1550"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050323172", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb135101347", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1100-1550"} 1 -2023-08-08 14:36:40.612911 2023-08-08 14:36:40.612915 c8d10c27-e59e-49d2-af5d-59ac1147dfea {"md5": "594bd8b0c4c4d10217d1377d0f660f46", "pid": "061617296", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures et genres littéraires japonais"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature japonaise - 1868-1912 (Ère Meiji)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/061617296", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb137741474", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}, {"type": "bf:ClassificationDdc", "classificationPortion": "950"}], "authorized_access_point": "1868-1912(Ère Meiji)"} 1 -2023-08-08 14:36:40.727453 2023-08-08 14:36:40.727462 c3393fdb-f1ea-460f-8b6d-88df824e9d69 {"md5": "278cfc6127cb21bc0d91d415f14e9a84", "pid": "077057384", "note": [{"label": ["Histoire des littératures / Encycl. de La Pléiade, 1958"], "noteType": "dataSource"}, {"label": ["La période 220-618 réunit la période des Trois Royaumes (220-265), les Six Dynasties (265-581) et la Dynastie Souei (581-618)", "S'emploie uniquement en subdivision chronologique aux littératures et genres littéraires chinois", "Cette subdivision est utilisée dans une chaîne construite avec la littérature, celle-ci servant de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires chinois"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature chinoise - 220-618 (Six dynasties)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077057384", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb144076013", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["220-589"], "authorized_access_point": "220-618"} 1 -2023-08-08 14:36:40.847056 2023-08-08 14:36:40.847059 1b3fb804-5c26-425b-a1ff-915331b91612 {"md5": "e936146abaec4cf19ad9b65d7923015f", "pid": "101481241", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures grecques modernes", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature grecque moderne, celle-ci servant de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires grecs modernes"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature grecque moderne - 1820-1880"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/101481241", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15061397c", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1820-1880"} 1 -2023-08-08 14:36:40.959296 2023-08-08 14:36:40.959299 5181758e-5127-41fe-b525-424c1a3eb400 {"md5": "4182e95d44e0497089f72a549aa6e5de", "pid": "101481330", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures irlandaises (gaéliques)", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature irlandaise (gaélique), celle-ci servant de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires irlandais (gaéliques)"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature irlandaise (gaélique) - Avant 1200"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/101481330", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15061668m", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Avant 1200"} 1 -2023-08-08 14:36:41.061361 2023-08-08 14:36:41.061369 2aa7c940-85b3-43e2-a2ee-b25387d6a571 {"md5": "04b4376d4bd30883f3f73c786885e89d", "pid": "101481349", "note": [{"label": ["S'emploie uniquement en subdivision chronologique [sans subd. géogr.] aux littératures irlandaises (gaéliques)", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature irlandaise (gaélique), qui sert de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires irlandais (gaéliques)"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature irlandaise (gaélique) - 1200-1550"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/101481349", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb150616798", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["1200-1550"], "authorized_access_point": "1200-1550"} 1 -2023-08-08 14:36:41.191555 2023-08-08 14:36:41.191565 1ecf2b92-fb7c-45c4-936f-0dba10ae91d4 {"md5": "b89cb0af4e732ec47b5e8cb12c83ae1d", "pid": "101481438", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures grecques modernes et hispano-américaines", "Cette subdivision est utilisée dans une chaîne construite avec les vedettes Littérature grecque moderne et Littérature hispano-américaine, celles-ci servant de vedettes modèles. Elle est à utiliser par éléments avec tous les genres littéraires grecs modernes et hispano-américains"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature grecque moderne"}, {"authorized_access_point": "Littérature hispano-américaine - 1880-1920"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/101481438", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb150619611", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["1880-1920"], "authorized_access_point": "1880-1920"} 1 -2023-08-08 14:36:41.295346 2023-08-08 14:36:41.295355 61f29ac2-2457-40d6-8b58-9800acf67e0f {"md5": "3c1949e3482ef3a066e371376f6ac5f7", "pid": "107841363", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures bretonnes", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature bretonne, qui sert de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires bretons"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Breton (langue) - +* 1100......- 1659......+:1100-1659: (moyen breton)"}, {"authorized_access_point": "Littérature bretonne - 1100-1659"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/107841363", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15089445r", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1100-1659"} 1 -2023-08-08 14:36:41.405839 2023-08-08 14:36:41.405845 9ecd5844-f64d-431e-be99-9d9844fec014 {"md5": "0d3763cb922c2fd37033e843a0aee2ec", "pid": "108812987", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures polonaises", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature polonaise, celle-ci servant de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires polonais"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature polonaise - 1864-1918"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/108812987", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15093914m", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1864-1918"} 1 -2023-08-08 14:36:41.472097 2023-08-08 14:36:41.4721 5ecf25ad-12a3-48e3-846e-a817644fde56 {"md5": "1a46214a9a76d7e9d622aa72f5832b94", "pid": "109094883", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures russes"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature russe - 1890-1917"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/109094883", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb150952323", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1890-1917"} 1 -2023-08-08 14:36:41.524235 2023-08-08 14:36:41.524238 a73f845f-2673-4cc4-801a-77b41b79b62a {"md5": "6d2d69e97c8233af935fb7ef77a61ce7", "pid": "11353213X", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures russes et soviétiques"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature russe - 1917-1945"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/11353213X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15518714g", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1917-1945"} 1 -2023-08-08 14:36:41.5913 2023-08-08 14:36:41.591309 3fb920b4-b90c-42ce-8611-ac2ce3f135e9 {"md5": "4c4b882a6490c55d9a768902585ec8a5", "pid": "11393260X", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures vietnamiennes", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature vietnamienne, celle-ci servant de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires vietnamiens"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature vietnamienne - 1945-1975"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/11393260X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb155219612", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1945-1975"} 1 -2023-08-08 14:36:42.052867 2023-08-08 14:36:42.052878 ba21535e-1b75-4844-a604-147c4db2984e {"md5": "50cbaf6aa76ea3ca989605f6b131bfb7", "pid": "12007432X", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures espagnoles, catalanes et galiciennes"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature catalane - 1900-1939"}, {"authorized_access_point": "Littérature espagnole - 1900-1939"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/12007432X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15586308d", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1900-1939"} 1 -2023-08-08 14:36:42.183567 2023-08-08 14:36:42.183577 0a8d783d-7802-472c-8c2b-46cfe469330c {"md5": "74d6f86c2c07e042ec9434ddaced6255", "pid": "120593904", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures grecques modernes", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature grecque moderne, celle-ci servant de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires grecs modernes"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature grecque moderne - 1920-1945"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/120593904", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15594731r", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1920-1945"} 1 -2023-08-08 14:36:42.286872 2023-08-08 14:36:42.286882 e21c737c-9807-42e8-a6a0-91e0270c27fa {"md5": "bc506a66471fbe8f0f5e526a3761dde9", "pid": "144664119", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures chinoises", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature chinoise, celle-ci servant de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires chinois"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature chinoise - 1976-...."}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/144664119", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16203928x", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1976-...."} 1 -2023-08-08 14:36:42.386276 2023-08-08 14:36:42.386286 9a6344f3-53b4-4d81-aa75-d32b09bf8cd4 {"md5": "dd0f4736ac53ada15291000b4ccd8e12", "pid": "146322134", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures indiennes (de l'Inde)", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature hindi, celle-ci servant de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires indiens (de l'Inde)"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature hindi - 1947-...."}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/146322134", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16225107n", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1947-...."} 1 -2023-08-08 14:36:42.476376 2023-08-08 14:36:42.47638 15c728d5-ee99-4e0c-b89c-74e7deae803b {"md5": "87ba2c400541f4219fd0e91d33dc4883", "pid": "148171095", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures bulgares", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature bulgare, celle-ci servant de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires bulgares"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature bulgare - 1878-1945"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148171095", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb162439173", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["1878-1945"], "authorized_access_point": "1878-1945"} 1 -2023-08-08 14:36:42.529098 2023-08-08 14:36:42.529101 6206b21d-f40d-4809-bbc4-e504c1d462e0 {"md5": "783e0a6c7450d5b690d2e6097e71cd72", "pid": "169177742", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures japonaises, polonaises et roumaines", "Cette subdivision est utilisée dans des chaînes construites avec les vedette Littérature japonaise, Littérature polonaise, Littérature roumaine, celles-ci servant de vedettes modèles. Elle est à utiliser par éléments avec tous les genres littéraires japonais, polonais et roumains"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature roumaine - 1945-1989"}, {"authorized_access_point": "Littérature japonaise - 1945-1989"}, {"authorized_access_point": "Littérature polonaise - 1945-1989"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/169177742", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb166782259", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1945-1989"} 1 -2023-08-08 14:36:42.581171 2023-08-08 14:36:42.581174 1baada6f-9073-479c-8acb-5deed5f10b55 {"md5": "833b772a1dcd74edddb2e38091549550", "pid": "169177750", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures japonaises", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature japonaise, celle-ci servant de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires japonais"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature japonaise - 1989-2019 (Ère Heisei)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/169177750", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb166782390", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1989-2019(Ère Heisei)"} 1 -2023-08-08 14:36:42.659915 2023-08-08 14:36:42.659921 6d573203-aaaa-43b8-9aae-93d4ae8dd54b {"md5": "1684793cdd6a3414c04c8486182e1526", "pid": "17089018X", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures allemandes", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature allemande, qui sert de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires allemands"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature allemande - 1350-1650 (nouvel haut-allemand)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/17089018X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16696953d", "source": "BNF"}], "classification": [{"name": "Langues et linguistique", "type": "bf:ClassificationDdc", "classificationPortion": "400"}, {"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1350-1650(nouvel haut-allemand)"} 1 -2023-08-08 14:36:42.75691 2023-08-08 14:36:42.756924 4b0e5cb4-bbd1-459e-9495-cb3601e3cb9c {"md5": "e58da5b16ac2adf861de8860688a67f7", "pid": "180122312", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures américaines", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature américaine, celle-ci servant de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires américains", "Ne pas employer la subdivision chronologique d'emploi général 1870-1914"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature américaine - 1865-1918"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/180122312", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16776999g", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1865-1918"} 1 -2023-08-08 14:36:42.868668 2023-08-08 14:36:42.868677 120a2199-58e1-4284-b808-70df2ca0f5f7 {"md5": "00ab096d11ce9adbad66f201b6f91974", "pid": "185676146", "note": [{"label": ["S'emploie uniquement en subdivision chronologique [sans subd. géogr.] aux littératures américaines", "Cette subdivision est utilisée dans des chaînes construites avec la vedette Littérature américaine, celle-ci servant de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires américains"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature américaine - 1945-2000"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/185676146", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16965970n", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["1945-2000 (subdivision)"], "authorized_access_point": "1945-2000"} 1 -2023-08-08 14:36:42.972919 2023-08-08 14:36:42.972929 f28d79f9-2e01-4374-afe5-dd770e9f3baa {"md5": "d7f103f468cc4946edd0daa7c3a9f954", "pid": "196345359", "note": [{"label": ["S'emploie uniquement en subdivision chronologique aux littératures néerlandaises", "Cette subdivision est utilisée dans une chaîne construite avec la vedette Littérature néerlandaise, celle-ci servant de vedette modèle. Elle est à utiliser par éléments avec tous les genres littéraires néerlandais"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature néerlandaise - 1880-1945"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196345359", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17082314s", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "1880-1945"} 1 -2023-08-08 14:36:43.96764 2023-08-08 14:36:43.967647 4fa1111e-edee-4671-b4dc-e88b3e1e580c {"md5": "39b70358da38a4a4770ea903851963a0", "pid": "027809773", "note": [{"label": ["S'emploie uniquement en subdivision chronologique à certaines littératures, comme la littérature italienne et la littérature tchèque", "Cette subdivision est utilisée dans une chaîne construite avec la littérature, celle-ci servant de vedette modèle pour les genres littéraires de même nationalité. Elle est à utiliser par éléments avec les genres littéraires"], "noteType": "general"}], "type": "bf:Temporal", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature italienne - Avant 1400"}, {"authorized_access_point": "Littérature tchèque - Avant 1400"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027809773", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11977185g", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Avant 1400"} 1 +2024-09-11 09:08:08.53118 2024-09-11 09:08:08.531185 810e9002-1742-4b0a-87bd-75b7e1c80b88 {"md5": "06299dff5ef1568b84da6566f7bab6c8", "pid": "027225798", "note": [{"label": ["Les droits des femmes / F. Martinetti, 2007", "L'État et les droits des femmes / S. Dauphin, 2010", "Fédération internationale des droits humains : droits des femmes - https://www.fidh.org (2022-01-25)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Droits de l'homme"}], "related": [{"authorized_access_point": "Discrimination sexuelle"}, {"authorized_access_point": "Femmes - Statut juridique"}, {"authorized_access_point": "Journée internationale de la femme"}, {"authorized_access_point": "Prix Simone de Beauvoir pour la liberté des femmes"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Antiféminisme"}, {"authorized_access_point": "Égalité des sexes"}, {"authorized_access_point": "Féminisme"}, {"authorized_access_point": "Femmes - Droit de vote"}, {"authorized_access_point": "Syndicats - Attitude envers la condition féminine"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85147765", "source": "LCSH"}], "authorized_access_point": "Women's rights"}, {"source": "RVMLaval", "authorized_access_point": "Femmes -- Droits"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027225798", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119313952", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11931395", "source": "BNF"}], "classification": [{"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}], "variant_access_point": ["Droit des femmes", "Droits de la femme", "Émancipation de la femme", "Émancipation des femmes", "Femmes - Droits", "Femmes - Droits civils", "Femmes - Droits de la femme", "Femmes - Émancipation", "Femmes - Libération", "Libération de la femme", "Libération des femmes"], "authorized_access_point": "Droits des femmes"} 1 +2024-09-11 09:08:08.624712 2024-09-11 09:08:08.624716 60a84960-702b-4ba8-957b-93b5e1cb99df {"md5": "49c29ae694de3ceb7a3c73a1e995a168", "pid": "027242250", "note": [{"label": ["Dict. critique du marxisme / G. Labica, G. Bensussan, 1985", "Le réalisme socialiste / M. Aucouturier, 1998", "Vocabulaire d'esthétique / É. Souriau, 1990 (art. : Réalisme)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Esthétique communiste"}, {"authorized_access_point": "Esthétique marxiste"}], "related": [{"authorized_access_point": "Réalisme socialiste (art)"}, {"authorized_access_point": "Réalisme socialiste (littérature)"}, {"authorized_access_point": "Réalisme socialiste (musique)"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85124145", "source": "LCSH"}], "authorized_access_point": "Socialist realism"}, {"source": "RVMLaval", "authorized_access_point": "Réalisme socialiste"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027242250", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119327288", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11932728", "source": "BNF"}], "classification": [{"name": "Philosophie", "type": "bf:ClassificationDdc", "classificationPortion": "100"}, {"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Arts (sauf littérature)", "type": "bf:ClassificationDdc", "classificationPortion": "700"}, {"name": "Littérature générale", "type": "bf:ClassificationDdc", "classificationPortion": "801"}], "authorized_access_point": "Réalisme socialiste"} 1 +2024-09-11 09:08:08.682522 2024-09-11 09:08:08.682526 eb6cd4c1-4f7e-42f8-b797-ceea2a4eea9a {"md5": "a8f2f10bcb16d09b91a80e438db341c3", "pid": "027246159", "note": [{"label": ["S'emploie également en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sciences de l'éducation"}], "related": [{"authorized_access_point": "Apprentissage transformationnel"}, {"authorized_access_point": "Éducation positive"}, {"authorized_access_point": "Enseignement"}, {"authorized_access_point": "Étude et enseignement"}, {"authorized_access_point": "Hautes écoles pédagogiques (système éducatif suisse)"}, {"authorized_access_point": "Pédagogues"}, {"authorized_access_point": "Psychologie de l'éducation"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Apprentissage contextualisé"}, {"authorized_access_point": "Conception universelle de l'apprentissage"}, {"authorized_access_point": "Didactique"}, {"authorized_access_point": "Dispositifs pédagogiques"}, {"authorized_access_point": "Éducation - Langage"}, {"authorized_access_point": "Éducation fonctionnelle"}, {"authorized_access_point": "Éducation par le territoire"}, {"authorized_access_point": "Enseignants - Formation"}, {"authorized_access_point": "Enseignants - Orientation pédagogique"}, {"authorized_access_point": "Enseignement - Méthode des projets"}, {"authorized_access_point": "Enseignement - Méthodes actives"}, {"authorized_access_point": "Enseignement accéléré"}, {"authorized_access_point": "Enseignement explicite"}, {"authorized_access_point": "Enseignement magistral"}, {"authorized_access_point": "Entretiens en éducation"}, {"authorized_access_point": "Herbartianisme"}, {"authorized_access_point": "Hypnopédie"}, {"authorized_access_point": "Lesson study"}, {"authorized_access_point": "Mathétique"}, {"authorized_access_point": "Méthode critique (pédagogie)"}, {"authorized_access_point": "Méthode de Bell et Lancaster"}, {"authorized_access_point": "Méthode des cas"}, {"authorized_access_point": "Méthode Montessori"}, {"authorized_access_point": "Méthode Ramain"}, {"authorized_access_point": "Pédagogie critique"}, {"authorized_access_point": "Pédagogie culturellement adaptée"}, {"authorized_access_point": "Pédagogie de soutien"}, {"authorized_access_point": "Pédagogie du corps"}, {"authorized_access_point": "Pédagogie expérimentale"}, {"authorized_access_point": "Pédagogie Germaine Tortel"}, {"authorized_access_point": "Pédagogie muséale"}, {"authorized_access_point": "Pédagogie sociale"}, {"authorized_access_point": "Récitation"}, {"authorized_access_point": "Suggestopédie"}, {"authorized_access_point": "Technologie éducative"}, {"authorized_access_point": "Dictées"}, {"authorized_access_point": "Matériel pédagogique"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85040989", "source": "LCSH"}], "authorized_access_point": "Education"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85133052", "source": "LCSH"}], "authorized_access_point": "Teaching"}, {"source": "RVMLaval", "authorized_access_point": "Pédagogie"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027246159", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11933049j", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11933049", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "029340578"}, "classification": [{"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}], "variant_access_point": ["Aspect éducatif", "Contribution à la pédagogie", "Méthodes d'enseignement", "Méthodes pédagogiques"], "authorized_access_point": "Pédagogie"} 1 +2024-09-11 09:08:08.768405 2024-09-11 09:08:08.768409 4d0afd24-40ee-4748-915b-afe50eea19ff {"md5": "9c5f6b72def8492b2c17106090dd122b", "pid": "027248062", "note": [{"label": ["Sous cette vedette on trouve les ouvrages sur la lutte contre la malveillance. Les ouvrages sur la lutte contre les dommages accidentels se trouvent sous Systèmes informatiques -- Mesures de sécurité"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Cybercriminalité"}], "related": [{"authorized_access_point": "Confiance numérique"}, {"authorized_access_point": "Cyberdéfense"}, {"authorized_access_point": "Hacking"}, {"authorized_access_point": "Microordinateurs - Accès - Contrôle"}, {"authorized_access_point": "Ordinateurs - Accès - Contrôle"}, {"authorized_access_point": "Systèmes informatiques - Mesures de sûreté - Examens"}, {"authorized_access_point": "Virus informatiques"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Gestion des droits numériques"}, {"authorized_access_point": "Contrats intelligents"}, {"authorized_access_point": "AltaRica (méthode formelle)"}, {"authorized_access_point": "Antivirus (logiciels)"}, {"authorized_access_point": "Blockchains"}, {"authorized_access_point": "Captcha"}, {"authorized_access_point": "Détection des anomalies (informatique)"}, {"authorized_access_point": "Infrastructures à clés publiques"}, {"authorized_access_point": "Protection de l'information (informatique)"}, {"authorized_access_point": "Réseaux d'ordinateurs - Mesures de sûreté"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Internet--Sécurité--Mesures"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85042310", "source": "LCSH"}], "authorized_access_point": "Electronic data processing departments--Security measures"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027248062", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13318381w", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13318381", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Cybersécurité", "Informatique - Mesures de sûreté", "Sécurité informatique", "Sûreté des systèmes d'information"], "authorized_access_point": "Systèmes informatiques - Mesures de sûreté"} 1 +2024-09-11 09:08:11.212814 2024-09-11 09:08:11.212818 5291dbe8-83aa-48a8-a966-bcf9fd9d6d7c {"md5": "6fba34101a31f9e419d611df243e755f", "pid": "027516652", "note": [{"label": ["Théo, 1989"], "noteType": "dataSource"}, {"label": ["LCSH, 2000-03. - Laval RVM, 2000-01"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Église catholique - Doctrine sociale"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027516652", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11954008m", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11954008", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "authorized_access_point": "Encycliques sociales"} 1 +2024-09-11 09:08:08.823559 2024-09-11 09:08:08.823563 84d3a370-d0ff-4966-9444-66353a954c89 {"md5": "8740963d02d11084f82110a110e1bd3f", "pid": "027255468", "note": [{"label": ["Nouveau petit Robert 1993", "Trésor de la langue française", "Dict. des termes d'art / G. Janneau, 1980"], "noteType": "dataSource"}, {"label": ["Art de fabriquer des objets tressés avec des fibres végétales ou des tiges"], "noteType": "general"}, {"label": ["Voir aussi les vedettes du type Vannerie [adjectif ethnique]"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Artisanat de nature"}, {"authorized_access_point": "Arts décoratifs"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Meubles en rotin"}, {"authorized_access_point": "Objets en écorces"}, {"authorized_access_point": "Paniers"}, {"authorized_access_point": "Travail de l'osier"}, {"authorized_access_point": "Travail de la paille"}, {"authorized_access_point": "Travail des feuilles de vaquois"}, {"authorized_access_point": "Travail des palmes"}, {"authorized_access_point": "Travail du raphia"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85012110", "source": "LCSH"}], "authorized_access_point": "Basket making"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85012127", "source": "LCSH"}], "authorized_access_point": "Basketwork"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85056513", "source": "LCSH"}], "authorized_access_point": "Grass weaving"}, {"source": "RVMLaval", "authorized_access_point": "Vannerie"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027255468", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13516282t", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13516282", "source": "BNF"}], "classification": [{"name": "Dessin, arts décoratifs, artisanat d'art", "type": "bf:ClassificationDdc", "classificationPortion": "740"}, {"name": "Jeux", "type": "bf:ClassificationDdc", "classificationPortion": "793"}], "variant_access_point": ["Croiserie", "Joncerie", "Lacerie", "Lasserie", "Mandrerie"], "authorized_access_point": "Vannerie"} 1 +2024-09-11 09:08:08.877691 2024-09-11 09:08:08.877696 51a0d75b-10ac-41aa-9b3f-bb5a8e539140 {"md5": "54c7e367f8eff1d33f197d3f7682d65e", "pid": "027256138", "note": [{"label": ["Les notions philosophiques / S. Auroux, 1990", "Vocabulaire technique et critique de la philosophie / A. Lalande, 1997", "Grand dict. de la philosophie / M. Blay, 2003", "Dict. de psychologie / R. Doron, F. Parot, 1991", "Vocabulaire de la psychologie / H. Piéron, 2003", "Grand dict. de la psychologie, 2002 : volition"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les documents sur les concepts philosophiques ou psychologiques de volonté et d'absence de volonté"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Morale"}, {"authorized_access_point": "Personnalité"}, {"authorized_access_point": "Philosophie de l'action"}], "related": [{"authorized_access_point": "Assentiment (philosophie)"}, {"authorized_access_point": "Procrastination"}, {"authorized_access_point": "Volontarisme doxastique"}, {"authorized_access_point": "Autonomie (philosophie)"}, {"authorized_access_point": "Dieu - Volonté"}, {"authorized_access_point": "Faiblesse (psychologie)"}, {"authorized_access_point": "Hekṓn (le mot grec)"}, {"authorized_access_point": "Inhibition"}, {"authorized_access_point": "Intention"}, {"authorized_access_point": "Libre arbitre"}, {"authorized_access_point": "Prise de décision"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85146775", "source": "LCSH"}], "authorized_access_point": "Will"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2006003161", "source": "LCSH"}], "authorized_access_point": "Akrasia"}, {"source": "RVMLaval", "authorized_access_point": "Volonté"}, {"source": "RVMLaval", "authorized_access_point": "Acrasie"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027256138", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11933815f", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11933815", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "055334873"}, "classification": [{"name": "Philosophie", "type": "bf:ClassificationDdc", "classificationPortion": "100"}, {"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}], "variant_access_point": ["Aboulie", "Acrasia", "Vouloir (morale)", "Acrasie", "Akrasia", "Akrasie", "Conation", "Faiblesse de la volonté", "Manque de volonté", "Volition", "Volonté, Manque de"], "authorized_access_point": "Volonté"} 1 +2024-09-11 09:08:08.934382 2024-09-11 09:08:08.934384 d7de914c-032a-40da-b4a3-0c7b0a4343c1 {"md5": "2e4e8e6798fccaa6b67332e917cf10aa", "pid": "027257045", "note": [{"label": ["Laval RVM, 1983"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Plombières, Entrevue de (1858)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027257045", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11933876n", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11933876", "source": "BNF"}], "authorized_access_point": "Relations extérieures - France - 1852-1870"} 1 +2024-09-11 09:08:08.991082 2024-09-11 09:08:08.991087 0d860896-aab6-4a7a-ac14-4609a6fa173c {"md5": "9c313c0bc5fd11fa017f909419d47d44", "pid": "027268284", "note": [{"label": ["Dict. des religions / P. Poupard, 1984"], "noteType": "dataSource"}, {"label": ["S'emploie également en subdivision. Cette subdivision s'applique aux sujets religieux"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Religions"}], "related": [{"authorized_access_point": "Brahmanisme"}, {"authorized_access_point": "Hindouisme"}, {"authorized_access_point": "Veda et sciences"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Védisme - Rites et cérémonies"}, {"authorized_access_point": "Cosmogonie védique"}, {"authorized_access_point": "Apsarā"}, {"authorized_access_point": "Asura"}, {"authorized_access_point": "Dieux védiques"}, {"authorized_access_point": "Morale védique"}, {"authorized_access_point": "Symbolisme védique"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027268284", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11934684z", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11934684", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Hindouisme ancien", "Religion védique"], "authorized_access_point": "Védisme"} 1 +2024-09-11 09:08:09.047389 2024-09-11 09:08:09.047394 3e895a26-ba8d-4303-8914-2a7ec63dd28f {"md5": "f12f3c09390c62798694773b3ff03dac", "pid": "027274144", "note": [{"label": ["GLU", "Encomiendas (se subd. géogr.) ; Laval RVM (en ligne), 2003-07-02"], "noteType": "dataSource"}, {"label": ["Institution de l'Amérique coloniale espagnole par laquelle un conquistador recevait autorité sur un groupe d'autochtones dont il pouvait utiliser le travail, à condition de les christianiser et les intégrer à l'ordre espagnol. - L'encomienda a été pratiquée également en Espagne reconquise sur les musulmans et aux Philippines"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Colonies espagnoles"}, {"authorized_access_point": "Travail forcé"}], "related": [{"authorized_access_point": "Travailleurs autochtones"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85042989", "source": "LCSH"}], "authorized_access_point": "Encomiendas (Latin America)"}, {"source": "RVMLaval", "authorized_access_point": "Encomiendas"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027274144", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11935180f", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11935180", "source": "BNF"}], "classification": [{"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}, {"name": "Histoire du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "950"}], "variant_access_point": ["Encomienda", "Repartimiento", "Repartimientos"], "authorized_access_point": "Encomiendas"} 1 +2024-09-11 09:08:09.101239 2024-09-11 09:08:09.101242 a834a3ec-67ae-4443-bcc9-d479f9467b0b {"md5": "9be1710085daf488e6a2197721c7742d", "pid": "02727991X", "note": [{"label": ["Grand Larousse universel"], "noteType": "dataSource"}, {"label": ["30 janvier 1933 : A. Hitler accède au pouvoir. 2 septembre 1945 : fin de la seconde guerre mondiale"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Amsterdam-Pleyel, Mouvement"}, {"authorized_access_point": "Guerre mondiale (1939-1945) - Histoire diplomatique"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02727991X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11935652k", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11935652", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire", "type": "bf:ClassificationDdc", "classificationPortion": "900"}], "variant_access_point": ["Politique mondiale - 1933-1945"], "authorized_access_point": "Relations internationales - 1933-1945"} 1 +2024-09-11 09:08:09.157721 2024-09-11 09:08:09.157726 0bec4d65-531d-4158-abfa-cc21d18bfd5e {"md5": "8278015a48cd6e19f50bb7dfabb2098b", "pid": "02728607X", "note": [{"label": ["Grand Larousse illustré", "Petit Larousse illustré 2010", "Dict. des religions / P. Poupard, 1984 (art. : Shiva, shivaïsme)", "Encycl. des religions / F. Lenoir, Y. T. Masquelier, 1997", "Dict. de la sagesse orientale, 1989 (art. : Shavaïsme)"], "noteType": "dataSource"}, {"label": ["S'emploie également en subdivision. Cette subdivision s'applique aux sujets religieux"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hindouisme"}, {"authorized_access_point": "Sectes hindoues"}], "related": [{"authorized_access_point": "Shivaïtes"}, {"authorized_access_point": "Hymnes shivaïtes"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Liṅga (hindouisme)"}, {"authorized_access_point": "Aghorī"}, {"authorized_access_point": "Kāpālika"}, {"authorized_access_point": "Liṅgāyat"}, {"authorized_access_point": "Śaiva Siddhānta"}, {"authorized_access_point": "Śaktisme"}, {"authorized_access_point": "Shivarātri"}, {"authorized_access_point": "Shivaïsme du Cachemire"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85123051", "source": "LCSH"}], "authorized_access_point": "?aivism"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02728607X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11936126w", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11936126", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Çivaïsme", "Shavaïsme", "Sivaïsme"], "authorized_access_point": "Shivaïsme"} 1 +2024-09-11 09:08:09.212033 2024-09-11 09:08:09.212037 f9814c24-73e7-4c3e-a57b-a03b00900b02 {"md5": "a6851a1692e9e3a40e52ee0e2c62bc57", "pid": "027292916", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Désarmement"}], "related": [{"authorized_access_point": "Armes nucléaires"}, {"authorized_access_point": "Course aux armements"}, {"authorized_access_point": "Non-prolifération nucléaire"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Mouvement antinucléaire"}, {"authorized_access_point": "Plan Rapacki"}, {"authorized_access_point": "Zones exemptes d'armes nucléaires"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027292916", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119366713", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11936671", "source": "BNF"}], "variant_access_point": ["Armes nucléaires - Prolifération", "Armes nucléaires et désarmement", "Bombe atomique et désarmement", "Dénucléarisation", "Prolifération des armes nucléaires"], "authorized_access_point": "Désarmement nucléaire"} 1 +2024-09-11 09:08:09.266899 2024-09-11 09:08:09.266904 f6a12d33-26e4-4c74-b006-c2dca1f1bb69 {"md5": "c72763f14f046fdca3b2df8cf26e2e11", "pid": "027302148", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Questions d'examens"}], "related": [{"authorized_access_point": "Internat (médecine)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Tests de concordance de script"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027302148", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11937378x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11937378", "source": "BNF"}], "classification": [{"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}, {"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Concours de l'internat", "Concours de l'internat de médecine", "ECN", "ECNi", "EDN", "Épreuves Classantes Nationales", "Épreuves Classantes Nationales informatisées", "Examen Classant National", "Examen Classant National Obligatoire", "iECN", "Internat (médecine) - Concours", "Internat (médecine) - Examens -- Questions", "Internat (médecine) - Examens, questions etc", "Internat (médecine) - Questions d'examens", "Questions d'internat"], "authorized_access_point": "Épreuves dématérialisées nationales"} 1 +2024-09-11 09:08:09.319796 2024-09-11 09:08:09.3198 87364995-7741-4138-a114-eeb8832b6a7d {"md5": "ed241013d147d9868fd0ba5da8ca245a", "pid": "027308359", "note": [{"label": ["Les notions philosophiques / S. Auroux, 1990", "Vocabulaire technique et critique de la philosophie / A. Lalande, 1997", "Encycl. de la philosophie, 2002", "Dict. de philosophie / C. Godin, 2004"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les documents sur la notion de vérité du point de vue de la théorie de la connaissance. Les documents sur la notion de vérité du point de vue moral se trouvent sous Vérité et mensonge", "S'emploie également en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Théorie de la connaissance"}], "related": [{"authorized_access_point": "Certitude"}, {"authorized_access_point": "Objectivité"}, {"authorized_access_point": "Preuve (philosophie)"}, {"authorized_access_point": "Théorie de la fiction"}, {"authorized_access_point": "Véridiction"}, {"authorized_access_point": "Vérité et mensonge"}, {"authorized_access_point": "Vraisemblance"}, {"authorized_access_point": "Critère de vérité"}, {"authorized_access_point": "Droit à la vérité (droit international)"}, {"authorized_access_point": "Erreur"}, {"authorized_access_point": "Évidence"}, {"authorized_access_point": "Faillibilisme"}, {"authorized_access_point": "Faux (philosophie)"}, {"authorized_access_point": "Logique aléthique"}, {"authorized_access_point": "Logique épistémique"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Vérité comme cohérence"}, {"authorized_access_point": "Vérité comme consensus"}, {"authorized_access_point": "Vérité comme correspondance"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85138279", "source": "LCSH"}], "authorized_access_point": "Truth"}, {"source": "RVMLaval", "authorized_access_point": "Vérité"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027308359", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119378816", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11937881", "source": "BNF"}], "classification": [{"name": "Philosophie", "type": "bf:ClassificationDdc", "classificationPortion": "100"}], "variant_access_point": ["Contribution au concept de vérité", "Vérité (épistémologie)", "Vérité (logique)", "Vrai (philosophie)"], "authorized_access_point": "Vérité"} 1 +2024-09-11 09:08:13.745381 2024-09-11 09:08:13.745386 24f7b133-8ca5-4451-8324-c06a3c5fea0b {"md5": "1f7285475914ab59b6b33efe8bd23032", "pid": "027887960", "note": [{"label": ["Laval RVM, 1990-08"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027887960", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11983314r", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11983314", "source": "BNF"}], "authorized_access_point": "Histoire religieuse - Autriche - 18e siècle"} 1 +2024-09-11 09:08:09.372234 2024-09-11 09:08:09.372238 92e17658-0fd4-4ea4-80fc-2cf766b43f77 {"md5": "3b275bbe6d86b7dd7f0a65e93bdd8ab3", "pid": "027317145", "note": [{"label": ["Grand Larousse universel", "Robert encyclopédique des noms propres 2008", "Encycl. universalis - http://www.universalis-edu.com (2017-06-29)", "Dict. encyclopédique d'histoire / M. Mourre, 1996", "La guerre de Trente ans : 1618-1648 / H. Bogdan, 2006", "La guerre de Trente ans / G. Livet, 1994"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Contre-Réforme"}, {"authorized_access_point": "Europe - 1517-1648"}], "related": [{"authorized_access_point": "Défenestration de Prague (1618)"}, {"authorized_access_point": "Guerre franco-espagnole (1635-1659)"}, {"authorized_access_point": "Sainte ligue allemande (1609)"}, {"authorized_access_point": "Allemagne - 1618-1648"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Guerre dano-suédoise (1643-1645)"}, {"authorized_access_point": "Guerre de la Valteline (1620-1626)"}, {"authorized_access_point": "Guerre de Trente Ans (1618-1648) - Opérations militaires"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85134910", "source": "LCSH"}], "authorized_access_point": "Thirty Years' War, 1618-1648"}, {"source": "RVMLaval", "authorized_access_point": "Guerre de Trente Ans, 1618-1648"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027317145", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119385761", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11938576", "source": "BNF"}], "classification": [{"name": "Histoire médiévale, moderne et contemporaine (sauf la France)", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Trente ans, Guerre de (1618-1648)"], "authorized_access_point": "Guerre de Trente Ans (1618-1648)"} 1 +2024-09-11 09:08:09.42983 2024-09-11 09:08:09.429835 0095a033-0a9d-4fc2-9c1f-5d0571c15d60 {"md5": "6c50eed41c0e33b309f36fa3a4fd1dcd", "pid": "027323552", "note": [{"label": ["Encycl. universalis - http://www.universalis-edu.com (2018-08-17)", "Le judaïsme et le christianisme antique : d'Antiochus Épiphane à Constantin / M. Simon, A. Benoît, 1998"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les documents sur le mouvement de pensée condamné comme hérésie par l'Église dans l'Antiquité. Les documents sur les doctrines ésotériques proposant une voie vers le salut par la connaissance de certaines vérités cachées sur Dieu, le monde et l'homme se trouvent sous Gnose"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hérésies chrétiennes - 30-600 (Église primitive)"}], "related": [{"authorized_access_point": "Christianisme - Relations - Gnosticisme"}, {"authorized_access_point": "Encratisme"}, {"authorized_access_point": "Gnose"}, {"authorized_access_point": "Gnōstikós (le mot grec)"}, {"authorized_access_point": "Interprétations gnostiques"}, {"authorized_access_point": "Néoplatonisme"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Éon (philosophie)"}, {"authorized_access_point": "Mandéisme"}, {"authorized_access_point": "Manuscrits de Medinet Madi"}, {"authorized_access_point": "Manuscrits de Nag Hammadi"}, {"authorized_access_point": "Naasséniens"}, {"authorized_access_point": "Ophites"}, {"authorized_access_point": "Sagesse - Gnosticisme"}, {"authorized_access_point": "Séthiens"}, {"authorized_access_point": "Valentiniens"}, {"authorized_access_point": "Littérature gnostique"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85055466", "source": "LCSH"}], "authorized_access_point": "Gnosticism"}, {"source": "RVMLaval", "authorized_access_point": "Gnosticisme"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027323552", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11939057m", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11939057", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Préhistoire et histoire ancienne", "type": "bf:ClassificationDdc", "classificationPortion": "930"}], "variant_access_point": ["Gnostiques"], "authorized_access_point": "Gnosticisme"} 1 +2024-09-11 09:08:09.503932 2024-09-11 09:08:09.503936 f052b519-cd0c-4ea5-bf8d-40e62de9f8b0 {"md5": "6fc197d6b32eb7dfbb79e8d1a03f0c1c", "pid": "027328589", "note": [{"label": ["Sous cette vedette, on trouve les documents sur l'esthétique littéraire en général. Les documents sur l'esthétique de la littérature d'une époque particulière se trouvent sous des vedettes-matières du type : Littérature -- [Subdivision chronologique] -- Esthétique, par ex. : Littérature -- 18e siècle -- Esthétique"], "noteType": "general"}, {"label": ["Voir aussi aux différents mouvements esthétiques, par ex. : Surréalisme (littérature)", "Voir aussi la subdivision Esthétique aux littératures et aux personnes"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Esthétique"}], "related": [{"authorized_access_point": "Littérature - Philosophie"}, {"authorized_access_point": "Mouvements littéraires"}, {"authorized_access_point": "Théorie littéraire"}, {"authorized_access_point": "Littérature"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Allégorie (littérature)"}, {"authorized_access_point": "Baroque littéraire"}, {"authorized_access_point": "Biedermeier (littérature)"}, {"authorized_access_point": "Burlesque (littérature)"}, {"authorized_access_point": "Canons littéraires"}, {"authorized_access_point": "Carnavalesque"}, {"authorized_access_point": "Classicisme (littérature)"}, {"authorized_access_point": "Comique (littérature)"}, {"authorized_access_point": "Création littéraire"}, {"authorized_access_point": "Décadentisme"}, {"authorized_access_point": "Description (littérature)"}, {"authorized_access_point": "Dialogisme"}, {"authorized_access_point": "Épique (esthétique)"}, {"authorized_access_point": "Fantastique (littérature)"}, {"authorized_access_point": "Fragment (littérature)"}, {"authorized_access_point": "Grotesque (littérature)"}, {"authorized_access_point": "Hermétisme (littérature)"}, {"authorized_access_point": "Illusion (littérature)"}, {"authorized_access_point": "Imitation (littérature)"}, {"authorized_access_point": "Impressionnisme (littérature)"}, {"authorized_access_point": "Intimisme"}, {"authorized_access_point": "Lyrisme (littérature)"}, {"authorized_access_point": "Maniérisme (littérature)"}, {"authorized_access_point": "Merveilleux (littérature)"}, {"authorized_access_point": "Minimalisme (littérature)"}, {"authorized_access_point": "Modernisme (littérature)"}, {"authorized_access_point": "Néo-classicisme (littérature)"}, {"authorized_access_point": "Néo-réalisme (littérature)"}, {"authorized_access_point": "Neue Sachlichkeit (littérature)"}, {"authorized_access_point": "Orientalisme (littérature)"}, {"authorized_access_point": "Pathétique (littérature)"}, {"authorized_access_point": "Poésie - Esthétique"}, {"authorized_access_point": "Polyphonie (littérature)"}, {"authorized_access_point": "Popliteratur"}, {"authorized_access_point": "Postmodernisme et littérature"}, {"authorized_access_point": "Primitivisme (littérature)"}, {"authorized_access_point": "Réalisme magique (littérature)"}, {"authorized_access_point": "Réalisme socialiste (littérature)"}, {"authorized_access_point": "Régionalisme (littérature)"}, {"authorized_access_point": "Représentation (littérature)"}, {"authorized_access_point": "Rhétorique"}, {"authorized_access_point": "Rococo (littérature)"}, {"authorized_access_point": "Roman - Esthétique"}, {"authorized_access_point": "Romantisme (littérature)"}, {"authorized_access_point": "Style littéraire"}, {"authorized_access_point": "Stylistique"}, {"authorized_access_point": "Sublime (littérature)"}, {"authorized_access_point": "Théâtre (genre littéraire) - Esthétique"}, {"authorized_access_point": "Tragi-comique (littérature)"}, {"authorized_access_point": "Tragique (littérature)"}, {"authorized_access_point": "Unanimisme (mouvement littéraire)"}, {"authorized_access_point": "Variations (littérature)"}, {"authorized_access_point": "Vraisemblance (littérature)"}, {"authorized_access_point": "Littérature expérimentale"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Littérature -- Esthétique"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85077509", "source": "LCSH"}], "authorized_access_point": "Literature--Aesthetics"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027328589", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11939457q", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11939457", "source": "BNF"}], "classification": [{"name": "Philosophie", "type": "bf:ClassificationDdc", "classificationPortion": "100"}, {"name": "Poésie", "type": "bf:ClassificationDdc", "classificationPortion": "801"}], "variant_access_point": ["Doctrines littéraires", "Esthétique littéraire"], "authorized_access_point": "Littérature - Esthétique"} 1 +2024-09-11 09:08:09.578571 2024-09-11 09:08:09.578576 dc56847a-7a94-49a6-a6f3-c13dddbad68b {"md5": "68d2e8abf8807c92d2bd99cb98bfe5dd", "pid": "027330176", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Langages de programmation"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Access Basic (langage de programmation)"}, {"authorized_access_point": "BASICA (langage de programmation)"}, {"authorized_access_point": "PICK/BASIC (langage de programmation)"}, {"authorized_access_point": "STOS Basic (langage de programmation)"}, {"authorized_access_point": "Omikron Basic (langage de programmation)"}, {"authorized_access_point": "MSX-Basic (langage de programmation)"}, {"authorized_access_point": "GW-BASIC (langage de programmation)"}, {"authorized_access_point": "GFA BASIC (langage de programmation)"}, {"authorized_access_point": "BASIC-PLUS (langage de programmation)"}, {"authorized_access_point": "AmigaBASIC (langage de programmation)"}, {"authorized_access_point": "AppleSoft BASIC (langage de programmation)"}, {"authorized_access_point": "Microsoft Visual BASIC (langage de programmation)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027330176", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11939574k", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11939574", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Beginner's All-Purpose Symbolic Instruction Code (langage de programmation)"], "authorized_access_point": "BASIC (langage de programmation)"} 1 +2024-09-11 09:08:09.632552 2024-09-11 09:08:09.632556 a529643e-27e6-46e8-a060-895a3fa28ad8 {"md5": "e181f1abb2ac66b952f4b3f5ba292239", "pid": "027333930", "note": [{"label": ["Voir aussi aux applications, langages de programmation, systèmes, etc. temps réel"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Informatique"}], "related": [{"authorized_access_point": "FlexRay (bus)"}, {"authorized_access_point": "Systèmes en ligne"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Ordonnancement dynamique"}, {"authorized_access_point": "Commande en temps réel"}, {"authorized_access_point": "Programmation en temps réel"}, {"authorized_access_point": "Projet SCEPTRE"}, {"authorized_access_point": "Réservations"}, {"authorized_access_point": "Systèmes transactionnels"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85111765", "source": "LCSH"}], "authorized_access_point": "Real-time data processing"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027333930", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119398403", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11939840", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Exploitation en temps réel", "Ordinateurs - Exploitation en temps réel", "Systèmes informatiques en temps réel", "Systèmes réactifs (informatiques)", "Systèmes temps réel (informatique)", "Temps réel", "Traitement en direct", "Traitement en temps réel"], "authorized_access_point": "Temps réel (informatique)"} 1 +2024-09-11 09:08:14.981358 2024-09-11 09:08:14.981362 e416d868-eb74-4b80-a44f-b9faf58cf6dc {"md5": "5b093b16752c5feb9ef2276f1058dc7a", "pid": "028287169", "note": [{"label": ["Laval RVM, 1983"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028287169", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12015381h", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12015381", "source": "BNF"}], "authorized_access_point": "Histoire religieuse - Allemagne - 18e siècle"} 1 +2024-09-11 09:08:09.687071 2024-09-11 09:08:09.687075 446330ef-3474-4a28-9898-862e2fcc7837 {"md5": "a1c921b650f9259b4a1906e0ca364ea2", "pid": "027336913", "note": [{"label": ["Grand Larousse universel", "Dict. encyclopédique d'histoire / M. Mourre, 1996"], "noteType": "dataSource"}, {"label": ["2 septembre 1945 : fin de la seconde guerre mondiale. 1955 : conférences de Bandung (avril) et de Genève (juillet)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "DC 3 suédois, Affaire du (1952)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027336913", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11940078m", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11940078", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire", "type": "bf:ClassificationDdc", "classificationPortion": "900"}], "variant_access_point": ["Politique mondiale - 1945-1955"], "authorized_access_point": "Relations internationales - 1945-1955"} 1 +2024-09-11 09:08:09.740336 2024-09-11 09:08:09.74034 f09f3ae7-f31c-4a44-be2d-bb190c22d097 {"md5": "38bb217a4d88d19a86632a403d055268", "pid": "027345203", "note": [{"label": ["Grand Larousse universel", "Encycl. universalis - http://www.universalis-edu.com (2006-10-18)", "Les langues du monde / A. Meillet, M. Cohen, 1981", "Les langues dans le monde ancien et moderne : Les langues chamito-sémitiques / J. Perrot, 1988", "Les langues du monde / M. Sala, I. Vintila-Radulescu, 1984 (art. : Hébreu)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hébreu (langue)"}], "related": [{"authorized_access_point": "Hébreu (langue) mishnaïque"}, {"authorized_access_point": "Poésie hébraïque biblique"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85059867", "source": "LCSH"}], "authorized_access_point": "Hebrew language"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027345203", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11940722x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11940722", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Langues et linguistique", "type": "bf:ClassificationDdc", "classificationPortion": "400"}], "variant_access_point": ["Hébreu (langue) ancien", "Hébreu (langue) classique", "Hébreu ancien (langue)", "Hébreu biblique (langue)", "Hébreu classique (langue)"], "authorized_access_point": "Hébreu (langue) biblique"} 1 +2024-09-11 09:08:09.797013 2024-09-11 09:08:09.797019 e3ae3f13-e316-4ab3-a751-8b55496f4bb5 {"md5": "dc43fe30e750c0c8299669f8568ba97d", "pid": "027355152", "note": [{"label": ["Voir aussi aux noms des particules et antiparticules"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Physique nucléaire"}], "related": [{"authorized_access_point": "Accélérateurs de particules"}, {"authorized_access_point": "Collisions (physique nucléaire)"}, {"authorized_access_point": "Lois d'échelle (physique)"}, {"authorized_access_point": "Matrices de mélanges"}, {"authorized_access_point": "Physique des hautes énergies"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Antinucléons"}, {"authorized_access_point": "Anyons"}, {"authorized_access_point": "Bethe-Salpeter, Équation de"}, {"authorized_access_point": "Bootstrap, Théorie du (physique nucléaire)"}, {"authorized_access_point": "Bosons"}, {"authorized_access_point": "Chromodynamique quantique"}, {"authorized_access_point": "Cônes de lumière"}, {"authorized_access_point": "Constantes de couplage"}, {"authorized_access_point": "Désintégration semileptonique"}, {"authorized_access_point": "Effet tunnel"}, {"authorized_access_point": "Faisceaux de particules"}, {"authorized_access_point": "Fonctions de structure"}, {"authorized_access_point": "Forces nucléaires (physique)"}, {"authorized_access_point": "Gluons"}, {"authorized_access_point": "Lois d'échelle (physique)"}, {"authorized_access_point": "Mandelstam, Représentation de"}, {"authorized_access_point": "Matrices densité"}, {"authorized_access_point": "Moment angulaire (physique nucléaire)"}, {"authorized_access_point": "Muographie"}, {"authorized_access_point": "Neutralinos"}, {"authorized_access_point": "Nucléons"}, {"authorized_access_point": "Particules étranges"}, {"authorized_access_point": "Particules lourdes (physique)"}, {"authorized_access_point": "Particules relativistes"}, {"authorized_access_point": "Partons"}, {"authorized_access_point": "Pions (particules)"}, {"authorized_access_point": "Polarisation (physique nucléaire)"}, {"authorized_access_point": "Pomerons"}, {"authorized_access_point": "Pouvoir d'arrêt (physique nucléaire)"}, {"authorized_access_point": "Quasi-particules"}, {"authorized_access_point": "Rayonnement synchrotron"}, {"authorized_access_point": "Réactions d'annihilation"}, {"authorized_access_point": "Regge, Trajectoires de"}, {"authorized_access_point": "Règles de somme (physique)"}, {"authorized_access_point": "Schrödinger, Équation de"}, {"authorized_access_point": "Supersymétrie"}, {"authorized_access_point": "Symétrie unitaire"}, {"authorized_access_point": "Tachyons"}, {"authorized_access_point": "Théorie du transport"}, {"authorized_access_point": "Van Allen, Ceinture de"}, {"authorized_access_point": "Violation de la règle CP (physique nucléaire)"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Particules (physique nucléaire)"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85098374", "source": "LCSH"}], "authorized_access_point": "Particles (Nuclear physics)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027355152", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119415082", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11941508", "source": "BNF"}], "variant_access_point": ["Anti-particules (physique)", "Antiparticules (physique)", "Particules élémentaires (physique)", "Particules fondamentales", "Particules nucléaires", "Physique des particules"], "authorized_access_point": "Particules (physique)"} 1 +2024-09-11 09:08:09.853845 2024-09-11 09:08:09.85385 dea10eff-91d7-4799-adf5-445ac931211f {"md5": "62dd97c2d8529ae7d048155c9aaf4655", "pid": "027355578", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Langages de programmation"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "MikroPascal (langage de programmation)"}, {"authorized_access_point": "WEB (langage de programmation)"}, {"authorized_access_point": "PasRo (système informatique)"}, {"authorized_access_point": "UCSD p-System"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027355578", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11941547z", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11941547", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "authorized_access_point": "PASCAL (langage de programmation)"} 1 +2024-09-11 09:08:09.9075 2024-09-11 09:08:09.907504 62838c37-c360-4955-b7a7-2f53a22b38b8 {"md5": "ee40159bf5755eb5b4e3af9468ef74f7", "pid": "027355985", "note": [{"label": ["Sous cette vedette, on trouve les ouvrages qui traitent de la politique religieuse de certains princes catholiques du XVIIIe siècle, adeptes du despotisme éclairé. Le joséphisme se caractérise par l'intervention du prince dans la discipline intérieure de l'Église nationale, afin d'affaiblir la souveraineté pontificale."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Église et État - Autriche"}, {"authorized_access_point": "Catholicisme antiromain"}, {"authorized_access_point": "Despotisme éclairé"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027355985", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119415814", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11941581", "source": "BNF"}], "variant_access_point": ["Joséphinisme"], "authorized_access_point": "Joséphisme"} 1 +2024-09-11 09:08:09.964386 2024-09-11 09:08:09.964391 5c01afa4-a143-40e4-a561-a2d5674b0129 {"md5": "878d354026c64257435fd56e9490ea92", "pid": "027356493", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Langages de programmation"}, {"authorized_access_point": "Progiciels"}, {"authorized_access_point": "Logiciels"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "ABAP (langage de programmation)"}, {"authorized_access_point": "AppleScript (langage de programmation)"}, {"authorized_access_point": "NOMAD (langage de programmation)"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Langages de 4e génération"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85107313", "source": "LCSH"}], "authorized_access_point": "Programming languages (Electronic computers)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027356493", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11941625x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11941625", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Infocentres (informatique)", "Info-centres (informatique)", "Langages de quatrième génération", "L4G"], "authorized_access_point": "Langages de 4e génération"} 1 +2024-09-11 09:08:10.021238 2024-09-11 09:08:10.021242 341a81a9-733c-47a7-b76e-6a215b480685 {"md5": "f7c371a4bd787c4044d6dbffb007c5b3", "pid": "027365697", "note": [{"label": ["Vitrine linguistique - https://vitrinelinguistique.oqlf.gouv.qc.ca (2024-05-31)", "Le nouveau dict. médical, 2018"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les documents sur le traitement des maladies à l'aide de champs magnétiques. Les documents sur la médecine magnétique, courant de pensée médicale datant du XVIIème siècle, se trouvent sous Médecine magnétique"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Médecines alternatives"}], "related": [{"authorized_access_point": "Magnétisme animal"}, {"authorized_access_point": "Médecine magnétique"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85079761", "source": "LCSH"}], "authorized_access_point": "Magnetotherapy"}, {"source": "MeSH", "identifiedBy": [{"type": "uri", "value": "https://id.nlm.nih.gov/mesh/M0522057", "source": "MeSH"}], "authorized_access_point": "Magnetic Field Therapy"}, {"source": "RVMLaval", "authorized_access_point": "Magnétothérapie"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027365697", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11942308r", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11942308", "source": "BNF"}], "classification": [{"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Aimants - Emploi en thérapeutique", "Champs magnétiques - Emploi en thérapeutique", "Guérison magnétique", "Magnétisme - Emploi en thérapeutique", "Magnétisme curatif", "Magnologie", "Thérapeutique magnétique"], "authorized_access_point": "Magnétothérapie"} 1 +2024-09-11 09:08:10.085641 2024-09-11 09:08:10.085646 6f560c87-1ce1-4f6a-a8b7-2cc3ec931224 {"md5": "f3b131816c4684efd48c35aa55e1e0ee", "pid": "027368661", "note": [{"label": ["Mourre, 1986"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Investiture (droit canonique)"}, {"authorized_access_point": "Papauté - 1054-1309"}], "related": [{"authorized_access_point": "Saint Empire romain germanique - 1056-1106 (Henri IV)"}, {"authorized_access_point": "Saint Empire romain germanique - 1106-1125 (Henri V)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Canossa, Entrevue de (1077)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027368661", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119425476", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11942547", "source": "BNF"}], "variant_access_point": ["Querelle des investitures", "Église et État - Saint Empire romain germanique - 1076-1122"], "authorized_access_point": "Investitures, Querelle des"} 1 +2024-09-11 09:08:10.139098 2024-09-11 09:08:10.139101 79c83a73-ea02-479f-b44f-d6c538b85d18 {"md5": "3b5de954c104c6d0b8d5eb394d803e1c", "pid": "027374351", "note": [{"label": ["Sous cette vedette, on trouve les ouvrages qui traitent d'objets, tels que documents historiques, livres, objets d'art, reliques, etc., qui concernent le Canada, sa civilisation ou sa culture, ou qui en sont caractéristiques"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Canada - Histoire"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Canadiana (objets de collection)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027374351", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11942987j", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11942987", "source": "BNF"}], "authorized_access_point": "Canadiana (objets de collection)"} 1 +2024-09-11 09:08:10.191833 2024-09-11 09:08:10.191837 89785c82-a0da-4fb2-9daf-16b932334d04 {"md5": "b60e9197ecbde0666cb31b35a82ebbe9", "pid": "027376982", "note": [{"label": ["Sous cette vedette, on trouve les ouvrages sur l'ensemble des mesures prises par Napoléon Ier pour fermer à la Grande-Bretagne tous les ports du continent"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Politique et gouvernement - Europe - 1789-1815"}, {"authorized_access_point": "Blocus"}, {"authorized_access_point": "France - 1799-1815 (Consulat et Empire)"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85031555", "source": "LCSH"}], "authorized_access_point": "Continental System (Economic blockade)"}, {"source": "RVMLaval", "authorized_access_point": "Blocus continental"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027376982", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119431898", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11943189", "source": "BNF"}], "authorized_access_point": "Blocus continental"} 1 +2024-09-11 09:08:10.249665 2024-09-11 09:08:10.249668 84f2f147-bae2-4626-8bfc-35564fbd2b49 {"md5": "6c8c578c5f061c0abcb2564893befefb", "pid": "027391396", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Masques (électronique)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027391396", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11944384b", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11944384", "source": "BNF"}], "authorized_access_point": "Circuits intégrés - Masques"} 1 +2024-09-11 09:08:10.30226 2024-09-11 09:08:10.302264 15d72b2d-e06d-498f-b69f-33ca5b5e2dd1 {"md5": "2b17ebf508735924f8b855d7c134f65e", "pid": "027396924", "note": [{"label": ["Grand Larousse universel", "Théo, 2009", "Les mots du christianisme / D. Le Tourneau, 2005", "Dict. des mots de la foi chrétienne / O. de La Brosse, A. M. Henry, P. Rouillard, 1992"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Christ-Emmanuel"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85081693", "source": "LCSH"}], "authorized_access_point": "Mary, Blessed Virgin, Saint--Annunciation"}, {"source": "RVMLaval", "authorized_access_point": "Marie, Sainte Vierge -- Annonciation"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027396924", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11944811h", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11944811", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Annonce faite à Marie", "Annonciation à la Vierge Marie"], "authorized_access_point": "Annonciation"} 1 +2024-09-11 09:08:10.360719 2024-09-11 09:08:10.360723 54764dbb-cfdb-4c23-b96f-a537ba780c64 {"md5": "8d6022be3f46abd3b24dc819f994608b", "pid": "02739770X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Attente"}, {"authorized_access_point": "Temps (psychanalyse)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Flux (psychologie)"}, {"authorized_access_point": "Perception du temps"}, {"authorized_access_point": "Perspective temporelle"}, {"authorized_access_point": "Anticipation (psychologie)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2008112897", "source": "LCSH"}], "authorized_access_point": "Time--Psychological aspects"}, {"source": "RVMLaval", "authorized_access_point": "Temps -- Aspect psychologique"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02739770X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119448674", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11944867", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}], "variant_access_point": ["Temps - Psychologie", "Temps - Aspect psychologique"], "authorized_access_point": "Psychologie du temps"} 1 +2024-09-11 09:08:10.419126 2024-09-11 09:08:10.419131 a100a928-919e-41dc-a928-130c1615e826 {"md5": "487f2a0a470bd97ea6fa524cd92a4f54", "pid": "027415252", "note": [{"label": ["Dict. encycl. des religions, 1993"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sectes shintoïstes"}], "related": [{"authorized_access_point": "Teodori"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCA", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/names/n50072712", "source": "LCA"}], "authorized_access_point": "Tenrikyo"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027415252", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11946162z", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11946162", "source": "BNF"}], "authorized_access_point": "Tenrikyō"} 1 +2024-09-11 09:08:10.474641 2024-09-11 09:08:10.474644 5c136ad1-c490-4f99-8789-ecaf03c061d5 {"md5": "caa1430697c308041bd748f72e8fb521", "pid": "02743141X", "note": [{"label": ["Grand Larousse universel", "Encycl. universalis (art. : Romantisme) - http://www.universalis-edu.com (2013-11-14)", "Vocabulaire d'esthétique / E. Souriau, 1990", "Dict. des lettres françaises. Le XVIIIe siècle / G. Grente, F. Moureau, 1995", "Dict. des termes littéraires, 2005 (art. : Romantisme)", "Dict. des littératures / P. Van Tieghem, 1984", "Dict. du littéraire / P. Aron, D. Saint-Jacques, A. Viala, 2002 (art. : Romantisme) : pré-romantisme"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Civilisation - Europe - 18e siècle"}, {"authorized_access_point": "Romantisme"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Sturm und Drang"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Préromantisme"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02743141X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11947424g", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11947424", "source": "BNF"}], "classification": [{"name": "Arts (sauf littérature)", "type": "bf:ClassificationDdc", "classificationPortion": "700"}, {"name": "Littérature générale", "type": "bf:ClassificationDdc", "classificationPortion": "801"}], "variant_access_point": ["Mouvement préromantique", "Pré-romantisme"], "authorized_access_point": "Préromantisme"} 1 +2024-09-11 09:08:10.530221 2024-09-11 09:08:10.530227 335ba397-5818-4599-bcff-26047e3507c0 {"md5": "3d00cfb24cbb5764ef4ae2787526a531", "pid": "027431444", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Psychologie religieuse"}], "related": [{"authorized_access_point": "Mystique - Psychologie"}, {"authorized_access_point": "Prière"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85106118", "source": "LCSH"}], "authorized_access_point": "Prayer -- Psychology"}, {"source": "RVMLaval", "authorized_access_point": "Prière -- Psychologie"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027431444", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11947427h", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11947427", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}, {"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Prière - Aspect psychologique", "Prière - Psychologie"], "authorized_access_point": "Psychologie de la prière"} 1 +2024-09-11 09:08:10.593326 2024-09-11 09:08:10.593331 13922ce5-5e78-4312-b8bc-0c4de227f321 {"md5": "1480846bbd255c77d2a26661fac04ce2", "pid": "027436683", "note": [{"label": ["Grand Larousse universel", "Encycl. universalis - http://www.universalis-edu.com (2012-02-24)", "Dict. encyclopédique d'histoire / M. Mourre, 1996"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Conditions sociales - Europe - 1492-1789"}, {"authorized_access_point": "Conditions rurales"}, {"authorized_access_point": "Travail forcé"}], "related": [{"authorized_access_point": "Esclavage"}, {"authorized_access_point": "Mainmorte"}, {"authorized_access_point": "Péonage"}, {"authorized_access_point": "Propriété foncière"}, {"authorized_access_point": "Serfs"}, {"authorized_access_point": "Serfs - Émancipation"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Colonat"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85120215", "source": "LCSH"}], "authorized_access_point": "Serfdom"}, {"source": "RVMLaval", "authorized_access_point": "Servage"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027436683", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119478388", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11947838", "source": "BNF"}], "classification": [{"name": "Économie politique", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}, {"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Condition servile", "Questalité"], "authorized_access_point": "Servage"} 1 +2024-09-11 09:08:10.657103 2024-09-11 09:08:10.657107 cb71f092-ccf5-4410-9130-9d4c8348fe81 {"md5": "8bf3f256b0f00a2d3bb89ca5bc95d848", "pid": "027455092", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Droits de l'homme"}], "related": [{"authorized_access_point": "Enfants - Statut juridique"}, {"authorized_access_point": "Protection de l'enfance"}, {"authorized_access_point": "Traite des enfants"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Relations personnelles (droits de l'enfant)"}, {"authorized_access_point": "Aide juridique aux enfants"}, {"authorized_access_point": "Conseils municipaux d'enfants"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027455092", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11949245c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11949245", "source": "BNF"}], "classification": [{"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}], "variant_access_point": ["Droits de l'enfant", "Droits des enfants", "Droits des mineurs"], "authorized_access_point": "Enfants - Droits"} 1 +2024-09-11 09:08:10.708913 2024-09-11 09:08:10.708917 89a74bf0-6c37-4a23-bbc5-e25a633eab66 {"md5": "2dbbe9c4bcaa44d8cafe80715f2fcde7", "pid": "027461599", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Manuscrits mexicains"}], "related": [{"authorized_access_point": "Écriture pictographique indienne d'Amérique"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85080746", "source": "LCSH"}], "authorized_access_point": "Manuscripts, Mexican (Pre-Columbian)"}, {"source": "RVMLaval", "authorized_access_point": "Manuscrits mexicains précolombiens"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027461599", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119497374", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11949737", "source": "BNF"}], "classification": [{"name": "Sciences de l'information", "type": "bf:ClassificationDdc", "classificationPortion": "020"}, {"name": "Archéologie. Histoire ancienne", "type": "bf:ClassificationDdc", "classificationPortion": "930"}], "variant_access_point": ["Codex mexicains précolombiens", "Codex pictographiques mexicains", "Codex précolombiens mexicains", "Indiens d'Amérique - Mexique - Manuscrits précolombiens", "Manuscrits pictographiques mexicains", "Manuscrits précolombiens mexicains"], "authorized_access_point": "Manuscrits mexicains précolombiens"} 1 +2024-09-11 09:08:10.765785 2024-09-11 09:08:10.765791 d3c33984-fea1-4c1d-84b2-1574463bcb92 {"md5": "ef1ed63b529db0b814aaa6aff05c0bb0", "pid": "027478033", "note": [{"label": ["National library of Israel - http://web.nli.org.il (2017-02-01)", "Milwn ḥadaš / ʾA. ʾEben-Šwšan, 1965", "Le Talmud et la littérature rabbinique / C. Y. Lambert, 1997", "BnF Service hébreu, 2017-02-01"], "noteType": "dataSource"}, {"label": ["Le mot Torah a plusieurs acceptions : il correspond au Pentateuque ou Loi écrite du judaïsme et à la Loi orale, Torah orale, constituée des commentaires explicatifs des préceptes contenus dans le Pentateuque"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hébreu (langue) - Vocabulaire"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85136098", "source": "LCSH"}], "authorized_access_point": "Torah (The Hebrew word)"}, {"source": "RVMLaval", "authorized_access_point": "Torah (Le mot hébraïque)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027478033", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119509560", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11950956", "source": "BNF"}], "classification": [{"name": "Langues et linguistique", "type": "bf:ClassificationDdc", "classificationPortion": "400"}], "variant_access_point": ["Thora (le mot hébreu)", "Torah (le mot hébreu)"], "authorized_access_point": "Twrah (le mot hébreu)"} 1 +2024-09-11 09:08:10.823603 2024-09-11 09:08:10.823608 fdd4b4e3-8044-4a4b-a5ca-b87d2c5c92c3 {"md5": "fb2d195e5f72cff866f89ab4802ab4dc", "pid": "027481352", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mouvement ouvrier"}, {"authorized_access_point": "Syndicats"}], "related": [{"authorized_access_point": "Travailleurs"}, {"authorized_access_point": "Coordinations"}, {"authorized_access_point": "Militantisme"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Action directe"}, {"authorized_access_point": "Bourses du travail"}, {"authorized_access_point": "Syndicalisation"}, {"authorized_access_point": "Syndicalisme révolutionnaire"}, {"authorized_access_point": "Syndicalistes"}, {"authorized_access_point": "Anarcho-syndicalisme"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Syndicalisme"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85131626", "source": "LCSH"}], "authorized_access_point": "Syndicalism"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027481352", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13318723t", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13318723", "source": "BNF"}], "variant_access_point": ["Action syndicale", "Activités syndicales", "Mouvement syndical"], "authorized_access_point": "Syndicalisme"} 1 +2024-09-11 09:08:10.880159 2024-09-11 09:08:10.880164 a9c1af07-1e72-46ea-8919-5e6b052dbb8d {"md5": "2c7d51935d740c38537a0635397e00e2", "pid": "027486753", "note": [{"label": ["Peut se subdiviser par le nom des provinces"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Relations fiscales intergouvernementales - Canada"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2008103642", "source": "LCSH"}], "authorized_access_point": "Federal government--Canada"}, {"source": "RVMLaval", "authorized_access_point": "Gouvernement fédéral -- Canada"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027486753", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13318731f", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13318731", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "variant_access_point": ["Relations fédérales-provinciales (Canada)"], "authorized_access_point": "Gouvernement fédéral - Canada"} 1 +2024-09-11 09:08:10.933575 2024-09-11 09:08:10.93358 bca1dda2-2eb2-4a2b-a205-81403f4b4953 {"md5": "e75fd588e765a76b5355d5d3fa931ae9", "pid": "027493032", "note": [{"label": ["LCSH, 1994-03. - Laval RVM, 1994-02"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027493032", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11952058p", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11952058", "source": "BNF"}], "authorized_access_point": "Hydrologie urbaine - Informatique"} 1 +2024-09-11 09:08:10.986234 2024-09-11 09:08:10.986237 55503fd3-33dc-4601-9570-cf4289f30824 {"md5": "29b2a03b8be63ab3ed0653ad6389229e", "pid": "027495213", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Protestants - Persécutions"}, {"authorized_access_point": "France - 1643-1715 (Louis XIV)"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85039286", "source": "LCSH"}], "authorized_access_point": "Dragonnades"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027495213", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11952229n", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11952229", "source": "BNF"}], "authorized_access_point": "Dragonnades"} 1 +2024-09-11 09:08:11.040944 2024-09-11 09:08:11.040948 c20102a0-be7c-4f82-b0e7-eca4e6045c01 {"md5": "55c49aa78719bee232102745b78e17ec", "pid": "027495922", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Intégration économique - Europe"}], "related": [{"authorized_access_point": "Europe de l'Ouest"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Politique économique - Pays de l'Union européenne"}, {"authorized_access_point": "Plan Schuman"}, {"authorized_access_point": "Politique agricole - Pays de l'Union européenne"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027495922", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119522796", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11952279", "source": "BNF"}], "classification": [{"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}], "variant_access_point": ["Grand marché européen", "Marché commun européen", "Marché intérieur européen", "Marché unique européen"], "authorized_access_point": "Intégration économique - Europe de l'Ouest"} 1 +2024-09-11 09:08:11.095471 2024-09-11 09:08:11.095475 d3ba0521-53d5-413f-9d64-73c83096c368 {"md5": "281ccf045ec2a92174475e95d09bc23d", "pid": "02750333X", "note": [{"label": ["Encycl. Larousse - http://www.larousse.fr/encyclopedie (2010-06-02)", "Dict. des sciences animales / C. Meyer - http://dico-sciences-animales.cirad.fr (2010-06-02)", "TermSciences (art. : Phylogenèse) - http://www.termsciences.fr (2010-06-02)", "Dict. de biologie / J. Berthet, 2006 (art. : Phylogenèse ; Phylogénie)", "Dict. raisonné de biologie, 2003 (art. : Phylogenèse ; Phylogénie)"], "noteType": "dataSource"}, {"label": ["Voir aussi la subdivision Analyse cladistique aux êtres vivants", "Voir aussi la subdivision Évolution aux êtres vivants, parties du corps et produits chimiques (biomolécules)"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sciences naturelles - Classification"}], "related": [{"authorized_access_point": "Analyse cladistique"}, {"authorized_access_point": "Évolution"}, {"authorized_access_point": "Évolution (biologie)"}, {"authorized_access_point": "Généalogie"}, {"authorized_access_point": "Homologie (biologie)"}, {"authorized_access_point": "Loi biogénétique fondamentale"}, {"authorized_access_point": "Ontogenèse"}, {"authorized_access_point": "Parenté"}, {"authorized_access_point": "Phylogénie moléculaire"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85101498", "source": "LCSH"}], "authorized_access_point": "Phylogeny"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02750333X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11952878h", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11952878", "source": "BNF"}], "classification": [{"name": "Sciences de la vie", "type": "bf:ClassificationDdc", "classificationPortion": "570"}], "variant_access_point": ["Arbres généalogiques", "Arbres phylogénétiques", "Lignée", "Phylogenèse", "Phylum"], "authorized_access_point": "Phylogénie"} 1 +2024-09-11 09:08:11.158672 2024-09-11 09:08:11.158677 b046fe3e-04ce-4803-83eb-22b5e2736ccd {"md5": "2de33619d211cd9901424b101512fc13", "pid": "027506762", "note": [{"label": ["Voir aussi la subdivision Influence française aux groupes ethniques et sujets noms communs appropriés (artistiques, culturels, littéraires et de civilisation en général)"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Équipements culturels français"}, {"authorized_access_point": "Influence française"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Art - France"}, {"authorized_access_point": "Cuisine française"}, {"authorized_access_point": "Droit - Influence française"}, {"authorized_access_point": "Francité"}, {"authorized_access_point": "Vin de France"}, {"authorized_access_point": "Littérature française"}, {"authorized_access_point": "Musique traditionnelle - France"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85051184", "source": "LCSH"}], "authorized_access_point": "France--Civilization"}, {"source": "RVMLaval", "authorized_access_point": "France--Civilisation"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027506762", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11953151s", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11953151", "source": "BNF"}], "classification": [{"name": "Histoire de la France (depuis 486)", "type": "bf:ClassificationDdc", "classificationPortion": "944"}], "variant_access_point": ["Civilisation française", "Culture française"], "authorized_access_point": "Civilisation - France"} 1 +2024-09-11 09:08:11.26735 2024-09-11 09:08:11.267354 ad5b2ff6-0e2c-4e4f-8291-10de99bf5ecb {"md5": "536474cf4190f0bf2b1349b7543039e3", "pid": "027519546", "note": [{"label": ["La Russie et la tentation de l'Orient / L. de Meaux, 2010", "Dict. de la Russie / P. Cauchy, 2008 (art. : Asie centrale)", "Le royaume de l'insolence : l'Afghanistan, 1504-2001 / M. Barry, 2002", "Encycl. of Russian hist. / J. R. Millar, 2003 (art. : Central Asia)", "Historical dict. of Afghanistan / L. W. Adamec, 2003 : Great Game", "Historical dict. of the British Empire / J. S. Olson, R. Shadle, 1996 : Great Game"], "noteType": "dataSource"}, {"label": ["Rivalité anglo-russe en Asie centrale (surnommée le \\"Grand Jeu\\"), qui a duré de la guerre russo-persane de 1804-1813 à la signature de la Convention anglo-russe de 1907 (l'expression Grand Jeu a aussi été utilisée pour la rivalité des puissances occidentales en Chine au début du 20e siècle)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Relations extérieures - Russie - 1801-1917"}, {"authorized_access_point": "Asie centrale - 19e siècle"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Guerre anglo-afghane (1839-1842)"}, {"authorized_access_point": "Guerre anglo-afghane (1878-1880)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85040619", "source": "LCSH"}], "authorized_access_point": "Eastern question (Central Asia)"}, {"source": "RVMLaval", "authorized_access_point": "Orient, Question d' (Asie centrale)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027519546", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11954245c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11954245", "source": "BNF"}], "classification": [{"name": "Histoire du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "950"}], "variant_access_point": ["Asie centrale, Question d'", "Grand Jeu (Asie centrale)", "Great Game (Asie centrale)", "Question d'Asie centrale", "Question d'Orient (Asie centrale)"], "authorized_access_point": "Orient, Question d' (Asie centrale)"} 1 +2024-09-11 09:08:11.324713 2024-09-11 09:08:11.324717 5135c2dc-d5eb-434c-b5aa-0a11dfab2cee {"md5": "a8c629ec11ae93dd0c1dfdd5cb19b0da", "pid": "027519686", "note": [{"label": ["Les mouvements pacifistes américains et français, hier et aujourd'hui : actes du colloque des 5, 6 et 7 avril 2006 à l'Université de Savoie / F. McCollum Feeley, 2007"], "noteType": "dataSource"}, {"label": ["Voir aussi la subdivision Mouvements contestataires aux guerres"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mouvements sociaux"}, {"authorized_access_point": "Pacifisme"}], "related": [{"authorized_access_point": "Droit à la paix"}, {"authorized_access_point": "Mouvements contestataires"}, {"authorized_access_point": "Pacifistes"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Amsterdam-Pleyel, Mouvement"}, {"authorized_access_point": "Copperheads (États-Unis, 1861-1865)"}, {"authorized_access_point": "Zimmerwald, Mouvement de"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85098950", "source": "LCSH"}], "authorized_access_point": "Peace movements"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85098945", "source": "LCSH"}], "authorized_access_point": "Peace -- Societies, etc"}, {"source": "RVMLaval", "authorized_access_point": "Mouvements pacifistes"}, {"source": "RVMLaval", "authorized_access_point": "Paix -- Associations"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027519686", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119542530", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11954253", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "variant_access_point": ["Mouvement pacifiste", "Mouvements contre la guerre", "Mouvements de protestation contre la guerre", "Mouvements pour la paix", "Paix - Associations", "Paix, Mouvements pour la"], "authorized_access_point": "Mouvements pacifistes"} 1 +2024-09-11 09:08:11.382589 2024-09-11 09:08:11.382595 b9d9d03e-c68d-4479-9b2f-d082617cd8be {"md5": "493cd89dd06aca4ab733e0ff7d30a903", "pid": "027528820", "note": [{"label": ["Grand Larousse universel", "Dict. encyclopédique d'histoire / M. Mourre, 1996", "Lexique d'hist. et de civilisation romaines / J.-L. Lamboley, 1995", "Vocabulaire de droit romain / R. Monier, 1948 (art. : Patrocinium)"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les documents sur le patronage dans la Rome antique. Les documents sur le clientélisme dans d'autres sociétés se trouvent sous Clientélisme"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Droit romain"}], "related": [{"authorized_access_point": "Affranchis (droit romain)"}, {"authorized_access_point": "Clientélisme"}, {"authorized_access_point": "Patriciens (Rome)"}, {"authorized_access_point": "Plèbe (Rome)"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh90003161", "source": "LCSH"}], "authorized_access_point": "Patron and client (Roman law)"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85098771", "source": "LCSH"}], "authorized_access_point": "Patron and client"}, {"source": "RVMLaval", "authorized_access_point": "Patron et client"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027528820", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11954979m", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11954979", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}, {"name": "Archéologie. Histoire ancienne", "type": "bf:ClassificationDdc", "classificationPortion": "930"}], "variant_access_point": ["Client et patron", "Clientèle romaine", "Clientélisme - Rome", "Clients et patrons", "Patrocinium", "Patron et client - Droit", "Patron et client (droit romain)", "Patronage (Rome)", "Patronage romain", "Patronat (Rome)", "Patrons (Rome)", "Patrons et clients"], "authorized_access_point": "Patron et client"} 1 +2024-09-11 09:08:11.442046 2024-09-11 09:08:11.44205 12def15f-8cca-4523-99a7-29e5fbf200c9 {"md5": "07f44847a7c2163d85f88ad1c1b3330e", "pid": "027532488", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Psychologie religieuse"}], "related": [{"authorized_access_point": "Mystique"}, {"authorized_access_point": "Psychologie de la prière"}, {"authorized_access_point": "Psychologie de la foi"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2008108167", "source": "LCSH"}], "authorized_access_point": "Mysticism -- Psychology"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027532488", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11955279x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11955279", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}, {"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Mystique - Aspect psychologique", "Mystiques - Psychologie"], "authorized_access_point": "Mystique - Psychologie"} 1 +2024-09-11 09:08:11.499868 2024-09-11 09:08:11.499872 1aaf6f10-2984-4fae-ac3b-e83ecf711c1a {"md5": "06f91328d1ab9e1c89aa990133cda311", "pid": "027545822", "note": [{"label": ["Wikipédia : crise des otages américains en Iran - https://fr.wikipedia.org (2017-06-09)", "Encycl. universalis (art. : États-Unis d'Amérique) : crise des otages de l'ambassade de Téhéran ; (art. : Iran - Histoire et politique) : occupation de l'ambassade des États-Unis à Téhéran - http://www.universalis-edu.com (2017-06-09)", "Grand Larousse universel", "Robert encyclopédique des noms propres 2008", "Otages : les négociations secrètes de Téhéran / P. Salinger, 1981", "Les otages américains à Téhéran / N. Yavari-d'Hellencourt, 1992"], "noteType": "dataSource"}, {"label": ["4 novembre 1979 : occupation de l'ambassade des États-Unis à Téhéran par des étudiants islamiques qui retiennent en otage 52 Américains et réclament l'extradition du shah. 24-25 avril 1980 : échec de l'opération Eagle Claw. 27 juillet : mort du shah au Caire. 20 janvier 1981 : libération des otages à Alger"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Relations extérieures - Iran - 1979-1997"}, {"authorized_access_point": "Relations extérieures - États-Unis - 1977-1981"}, {"authorized_access_point": "Politique et gouvernement - Iran - 1979-...."}, {"authorized_access_point": "Otages - Iran"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85067917", "source": "LCSH"}], "authorized_access_point": "Iran Hostage Crisis, 1979-1981"}, {"source": "RVMLaval", "authorized_access_point": "Affaire des otages américains en Iran, 1979-1981"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027545822", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11956325h", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11956325", "source": "BNF"}], "classification": [{"name": "Histoire du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "950"}], "variant_access_point": ["Affaire des otages américains en Iran (1979-1981)", "Ambassade des États-Unis à Téhéran, Prise d'otages de l' (1979-1981)", "Crise des otages américains en Iran (1979-1981)", "Occupation de l'ambassade américaine à Téhéran (1979-1981)", "Otages américains en Iran, Affaire des (1979-1981)", "Prise d'otages de Téhéran (1979-1981)", "Téhéran, Prise d'otages de (1979-1981)"], "authorized_access_point": "Prise d'otages de l'ambassade des États-Unis à Téhéran (1979-1981)"} 1 +2024-09-11 09:08:11.557483 2024-09-11 09:08:11.557487 26d0d3fa-3961-4477-8279-b59b5817a1df {"md5": "515b70822e523a87420c4c17c052d971", "pid": "027564878", "note": [{"label": ["Les notions philosophiques / S. Auroux, 1990", "Vocabulaire technique et critique de la philosophie / A. Lalande, 1997", "Encycl. de la philosophie, 2002", "Grand dict. de la philosophie / M. Blay, 2003", "Dict. de philosophie / C. Godin, 2004"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Philosophie de l'action"}, {"authorized_access_point": "Philosophie de l'homme"}], "related": [{"authorized_access_point": "Roue de Fortune (allégorie)"}, {"authorized_access_point": "Aî̓sa (le mot grec)"}, {"authorized_access_point": "Contingence"}, {"authorized_access_point": "Déterminisme (philosophie)"}, {"authorized_access_point": "Éternel retour"}, {"authorized_access_point": "Hasard"}, {"authorized_access_point": "Libre arbitre"}, {"authorized_access_point": "Moîra (le mot grec)"}, {"authorized_access_point": "Nécessité"}, {"authorized_access_point": "Prédestination"}, {"authorized_access_point": "Tragique (philosophie)"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85047439", "source": "LCSH"}], "authorized_access_point": "Fate and fatalism"}, {"source": "RVMLaval", "authorized_access_point": "Destin et fatalisme"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027564878", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11957809w", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11957809", "source": "BNF"}], "classification": [{"name": "Philosophie", "type": "bf:ClassificationDdc", "classificationPortion": "100"}], "variant_access_point": ["Destinée", "Fatalisme", "Fatalité", "Fatum", "Sort"], "authorized_access_point": "Destin et fatalisme"} 1 +2024-09-11 09:08:11.622157 2024-09-11 09:08:11.622164 b4996adc-5ddd-4127-87a4-36dd9782280e {"md5": "64b615f5e836bbf6425073ed59e5c314", "pid": "027578747", "note": [{"label": ["Prescription médicamenteuse : les attentes des patients [in] Revue médicale suisse, 2000, 4, 2296", "Prescription médicamenteuse : un acte sous influences / P. Gallois, J.-P. Vallée, Y. Le Noc [in] Médecine, 2007, 3, 10"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Prescription médicale"}, {"authorized_access_point": "Ordonnances médicales"}], "related": [{"authorized_access_point": "Déprescription médicamenteuse"}, {"authorized_access_point": "Bilan partagé de médication"}, {"authorized_access_point": "Chimiothérapie"}, {"authorized_access_point": "Erreurs médicamenteuses"}, {"authorized_access_point": "Médicaments - Modes d'administration"}, {"authorized_access_point": "Médicaments - Usage"}, {"authorized_access_point": "Recommandations sur le bon usage des médicaments"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Auto-prescription médicamenteuse"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85039743", "source": "LCSH"}], "authorized_access_point": "Drugs--Prescribing"}, {"source": "RVMLaval", "authorized_access_point": "Médicaments--Prescription"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027578747", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119588768", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11958876", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "615"}], "variant_access_point": ["Médicaments - Prescription", "Médicaments - Prescription médicale", "Prescription des médicaments", "Prescription pharmaceutique"], "authorized_access_point": "Prescription médicamenteuse"} 1 +2024-09-11 09:08:11.688848 2024-09-11 09:08:11.688852 b2c8587f-9203-4394-8332-af02f8cf29b2 {"md5": "4590db116ed44617e466f50bad7ae120", "pid": "02758254X", "note": [{"label": ["Grand Larousse universel", "Les Indiens d'Amérique du Nord / G. Turner, 1985", "Ethnologie régionale / J. Poirier, 1972-1978", "Dict. des peuples / J.-C. Tamisier, 1998", "Atlas des peuples d'Amérique / A. Sellier, 2006", "The Indian tribes of North America / J. R. Swanton, 1969", "American Indian tribes / Salem Press, 1985", "Atlas of the North American Indian / C. Waldman, 1985", "Encycl. of world cultures / D. Levinson, 1991-1996"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les documents sur les Iroquois proprement dits. Les documents sur l'ensemble des peuples formant la famille linguistique iroquoise se trouvent sous Iroquoiens", "L'adjectif ethnique correspondant est \\"iroquois\\". Il s'accorde en genre et en nombre"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Iroquoiens"}], "related": [{"authorized_access_point": "Art iroquois"}, {"authorized_access_point": "Légendes iroquoises"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Iroquoises"}, {"authorized_access_point": "Mohawk (Indiens)"}, {"authorized_access_point": "Oneida (Indiens)"}, {"authorized_access_point": "Onondaga (Indiens)"}, {"authorized_access_point": "Seneca (Indiens)"}, {"authorized_access_point": "Tuscarora (Indiens)"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Iroquois (Indiens)"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85068260", "source": "LCSH"}], "authorized_access_point": "Iroquois Indians"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02758254X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13318833d", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13318833", "source": "BNF"}], "classification": [{"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "variant_access_point": ["Agoneaseah (Indiens)", "Canton (Indiens)", "Massawomeke (Indiens)", "Mengwe (Indiens)", "Ongwanonhsioni (Indiens)", "Ongwehonweh (Indiens)", "Six Nations (Indiens)", "Cinq Nations (Indiens)", "Five Nations (Indiens)", "Haudenosaunee (Indiens)", "Hodé-no-sau-nee (Indiens)", "Hodenosaunee (Indiens)", "Iroquois", "Ligue des Cinq Nations (Indiens)", "Ligue des Six Nations (Indiens)"], "authorized_access_point": "Iroquois (Indiens)"} 1 +2024-09-11 09:08:11.744447 2024-09-11 09:08:11.74445 9e254f99-091a-4aba-8875-e6f00a0b8775 {"md5": "a9885a9ad1960474cbb881b5e1fd0e2d", "pid": "027613275", "note": [{"label": ["Trésor de la langue française", "Nouveau petit Robert 1993"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Compétitions équestres"}, {"authorized_access_point": "Spectacles et divertissements"}], "related": [{"authorized_access_point": "Cow-boys"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85114811", "source": "LCSH"}], "authorized_access_point": "Rodeos"}, {"source": "RVMLaval", "authorized_access_point": "Rodéos"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027613275", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11961559c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11961559", "source": "BNF"}], "classification": [{"name": "Arts du spectacle", "type": "bf:ClassificationDdc", "classificationPortion": "790"}, {"name": "Sports", "type": "bf:ClassificationDdc", "classificationPortion": "793"}], "authorized_access_point": "Rodéos"} 1 +2024-09-11 09:08:11.805362 2024-09-11 09:08:11.805365 574f0320-058b-4000-b48e-394f23513e51 {"md5": "1e2bbe3bdb53be721a197e64ef9314d5", "pid": "027616908", "note": [{"label": ["Dict. de l'éducation / A. van Zanten, 2008", "Thésaurus européen de l'éducation - http://eacea.ec.europa.eu/education (2009-11-30)", "Intégration scolaire des enfants immigrants en Europe : dispositif en faveur de la communication avec les familles immigrantes et de l'enseignement de la langue d'origine des enfants immigrants / communautés européennes, 2009 - http://www.eacea.ec.europa.eu (2009-11-30)"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les documents sur les systèmes scolaires qui permettent d'accueillir dans le cycle éducatif courant les enfants à besoins éducatifs particuliers ou spéciaux (accompagnés en outre de soins médicaux). Les documents sur l'aspect psychologique de l'intégration scolaire se trouvent sous Adaptation scolaire"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Éducation spéciale"}, {"authorized_access_point": "Pédagogie sociale"}], "related": [{"authorized_access_point": "Adaptation scolaire"}, {"authorized_access_point": "Ateliers relais"}, {"authorized_access_point": "Classes relais"}, {"authorized_access_point": "Conception universelle de l'apprentissage"}, {"authorized_access_point": "Discrimination en éducation"}, {"authorized_access_point": "Enfants appartenant à des minorités"}, {"authorized_access_point": "Enfants difficiles - Éducation"}, {"authorized_access_point": "Enfants handicapés - Éducation"}, {"authorized_access_point": "Enfants inadaptés - Éducation"}, {"authorized_access_point": "Enfants surdoués"}, {"authorized_access_point": "Enseignements généraux et professionnels adaptés"}, {"authorized_access_point": "Objectifs d'intégration (éducation)"}, {"authorized_access_point": "Ségrégation en éducation"}, {"authorized_access_point": "Sociologie de l'éducation"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Besoins éducatifs particuliers"}, {"authorized_access_point": "Certificat d'aptitude aux actions pédagogiques spécialisées de l'adaptation et de l'intégration scolaires"}, {"authorized_access_point": "Pédagogie culturellement adaptée"}, {"authorized_access_point": "Services d'éducation spécialisée et de soins à domicile"}, {"authorized_access_point": "Unités localisées pour l'inclusion scolaire"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85079929", "source": "LCSH"}], "authorized_access_point": "Mainstreaming in education"}, {"source": "RVMLaval", "authorized_access_point": "Intégration scolaire"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027616908", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11961876s", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11961876", "source": "BNF"}], "classification": [{"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}], "variant_access_point": ["Adaptation et intégration scolaire", "AIS", "Déségrégation en éducation", "Éducation - Intégration", "Éducation inclusive", "Éducation intégrative", "Éducation intégratrice", "Inclusion en éducation", "Intégration en éducation"], "authorized_access_point": "Intégration scolaire"} 1 +2024-09-11 09:08:11.862891 2024-09-11 09:08:11.862896 efdcd36c-e20b-4b5a-87f3-10e62b1c7b86 {"md5": "4de1d5ac84b50f3082a3396150cbc9ac", "pid": "027636461", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bibliographie - Méthodologie"}, {"authorized_access_point": "Bibliographie"}], "related": [{"authorized_access_point": "Notes (paratexte)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Recherche documentaire"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027636461", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11963535v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11963535", "source": "BNF"}], "variant_access_point": ["Citations bibliographiques", "Information bibliographique", "Informations bibliographiques", "Notices bibliographiques", "Renseignements bibliographiques"], "authorized_access_point": "Références bibliographiques"} 1 +2024-09-11 09:08:11.916258 2024-09-11 09:08:11.916262 6e566d03-0b1b-4058-8d51-87c31a5468f0 {"md5": "d079f2248c5dfedf30e9dc85dad12fdb", "pid": "027674118", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Télétel (service télématique)"}, {"authorized_access_point": "Terminaux à écran de visualisation"}], "related": [{"authorized_access_point": "Annuaires téléphoniques électroniques"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027674118", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11966659v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11966659", "source": "BNF"}], "authorized_access_point": "Minitel (terminal vidéotex)"} 1 +2024-09-11 09:08:11.970978 2024-09-11 09:08:11.97098 77fb8607-6034-405d-aaee-fabdbd512560 {"md5": "7e20a24a3cf6f0cec3f8f26b33ab4fd3", "pid": "027674150", "note": [{"label": ["Voir aussi la subdivision Structure aux produits chimiques"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Molécules"}, {"authorized_access_point": "Structure chimique"}], "related": [{"authorized_access_point": "Structure"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "G-quadruplexes"}, {"authorized_access_point": "Aromaticité"}, {"authorized_access_point": "Méthodes ab initio (chimie quantique)"}, {"authorized_access_point": "Spectroscopie moléculaire"}, {"authorized_access_point": "Structure atomique"}, {"authorized_access_point": "Structure électronique"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Structure moléculaire"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85086594", "source": "LCSH"}], "authorized_access_point": "Molecular structure"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027674150", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11966661d", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11966661", "source": "BNF"}], "classification": [{"name": "Chimie, minéralogie, cristallographie", "type": "bf:ClassificationDdc", "classificationPortion": "540"}], "variant_access_point": ["Molécules - Structure"], "authorized_access_point": "Structure moléculaire"} 1 +2024-09-11 09:08:12.034359 2024-09-11 09:08:12.034362 3e8909fa-12b5-45eb-9f7e-07de57ae27f1 {"md5": "3f9af523b435cb448fe74ad6f7595290", "pid": "027682226", "note": [{"label": ["Palestiniens -- Politique et gouvernement ; Laval RVM, 2001-07"], "noteType": "dataSource"}, {"label": ["Voir aussi aux noms des organisations palestiniennes, par ex. : Organisation de libération de la Palestine"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Palestiniens"}, {"authorized_access_point": "Conflit israélo-arabe"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Fedayin"}, {"authorized_access_point": "Intifada (1987-1993)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2001009475", "source": "LCSH"}], "authorized_access_point": "Palestinian Arabs--Politics and government"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027682226", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119672904", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11967290", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "950"}], "variant_access_point": ["Mouvements de résistance palestiniens", "Palestiniens - Activité politique", "Question palestinienne (1948-....)", "Résistance palestinienne"], "authorized_access_point": "Palestiniens - Politique et gouvernement - 1948-...."} 1 +2024-09-11 09:08:12.089615 2024-09-11 09:08:12.089619 3dcae516-65d6-4c01-940a-aeefb62a67fc {"md5": "0dae31e85ba705fac05b78b832f10569", "pid": "027688836", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Appareils enregistreurs"}, {"authorized_access_point": "Dispositifs optoélectroniques"}, {"authorized_access_point": "Dispositifs photoélectroniques"}, {"authorized_access_point": "Gestion électronique de documents"}, {"authorized_access_point": "Ordinateurs - Équipement d'entrée-sortie"}, {"authorized_access_point": "Ordinateurs - Équipement optique"}, {"authorized_access_point": "Traitement optique de l'information"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Écrans radioluminescents à mémoire"}, {"authorized_access_point": "Écrans tactiles"}, {"authorized_access_point": "Tubes à rayons cathodiques"}, {"authorized_access_point": "Affichage par électroluminescence"}, {"authorized_access_point": "Casques de visualisation"}, {"authorized_access_point": "Affichage sur écran de télévision"}, {"authorized_access_point": "Écrans plats"}, {"authorized_access_point": "Amplificateurs de luminance"}, {"authorized_access_point": "Collimateurs de pilotage"}, {"authorized_access_point": "Dispositifs électrochromiques"}, {"authorized_access_point": "Imagerie quadridimensionnelle"}, {"authorized_access_point": "Imagerie tridimensionnelle"}, {"authorized_access_point": "Systèmes d'affichage à cristaux liquides"}, {"authorized_access_point": "Terminaux à écran de visualisation"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85066140", "source": "LCSH"}], "authorized_access_point": "Information display systems"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027688836", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11967772k", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11967772", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["Affichage (technique)", "Affichage, Systèmes d'", "Systèmes de visualisation de l'information", "Visualisation (informatique)", "Visualisation de l'information, Systèmes de", "Visuel (informatique)", "Afficheurs", "Dispositifs d'affichage", "Dispositifs de visualisation de l'information", "Données - Affichage", "Données - Systèmes de visualisation", "Données - Visualisation", "Information, Systèmes d'affichage de l'", "Information, Systèmes de visualisation de l'"], "authorized_access_point": "Systèmes d'affichage"} 1 +2024-09-11 09:08:12.146123 2024-09-11 09:08:12.146127 3a4c52e3-f06a-406a-b3c4-e45924ee27cf {"md5": "95d93a059c417c9d1c818e28e243f7d7", "pid": "027694852", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Apple (ordinateurs)"}], "related": [{"authorized_access_point": "PowerMac (ordinateur)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "AppleTalk (système de réseau local)"}, {"authorized_access_point": "Macintosh Classic (ordinateur)"}, {"authorized_access_point": "Macintosh PowerBook (bloc-notes)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027694852", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11968218n", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11968218", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Apple Macintosh (ordinateur)"], "authorized_access_point": "Macintosh (ordinateur)"} 1 +2024-09-11 09:08:12.201177 2024-09-11 09:08:12.201182 e38f2858-bc5a-4da1-a66b-25efd83960b6 {"md5": "2cb17d696df5f36b0255c7a92b571a09", "pid": "027710025", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Alimentations (électricité)"}, {"authorized_access_point": "Électronique de puissance"}, {"authorized_access_point": "Machines électriques"}], "related": [{"authorized_access_point": "Commutation (électricité)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Redresseurs intégrés"}, {"authorized_access_point": "Convertisseurs multiniveaux"}, {"authorized_access_point": "Changeurs de fréquence"}, {"authorized_access_point": "Convertisseurs à thyristors"}, {"authorized_access_point": "Convertisseurs continu-continu"}, {"authorized_access_point": "Hacheurs (électricité)"}, {"authorized_access_point": "Klystrons"}, {"authorized_access_point": "Onduleurs (électricité)"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Convertisseurs électriques"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85041637", "source": "LCSH"}], "authorized_access_point": "Electric current converters"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027710025", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119694309", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11969430", "source": "BNF"}], "classification": [{"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["Conversion de courant (électricité)", "Convertisseurs électroniques", "Courants électriques - Convertisseurs"], "authorized_access_point": "Convertisseurs électriques"} 1 +2024-09-11 09:08:12.264897 2024-09-11 09:08:12.264901 c26bbc12-1bbc-44ab-ade5-f4ec10c02d7e {"md5": "24e37612ed60ed2f8b07af5dabf3f68d", "pid": "027727327", "note": [{"label": ["Grand Larousse universel", "Grand Robert de la langue française, 2001"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Communisme"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Maccarthysme"}, {"authorized_access_point": "Opération Zypresse (1944)"}, {"authorized_access_point": "Propagande anticommuniste"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027727327", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11970825v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11970825", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "variant_access_point": ["Anti-communisme", "Communisme - Mouvements d'opposition", "Mouvements anti-communistes", "Mouvements anticommunistes", "Opposition au communisme", "Résistance contre le communisme"], "authorized_access_point": "Anticommunisme"} 1 +2024-09-11 09:08:12.321149 2024-09-11 09:08:12.321153 b505d1fc-2d18-4d8b-85b9-54c51424c49a {"md5": "b8eee0abfc5fd32b90d371ce09830c18", "pid": "027727521", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Noirs américains"}, {"authorized_access_point": "Noirs américains - Droits"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Leadership noir américain"}, {"authorized_access_point": "Nationalisme noir - États-Unis"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh95010593", "source": "LCSH"}], "authorized_access_point": "African Americans--Politics and government"}, {"source": "RVMLaval", "authorized_access_point": "Noirs américains -- Politique et gouvernement"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027727521", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119708413", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11970841", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Ethnologie", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "variant_access_point": ["Noirs américains - Activité politique"], "authorized_access_point": "Noirs américains - Politique et gouvernement"} 1 +2024-09-11 09:08:12.377265 2024-09-11 09:08:12.377269 8fb05580-09ce-4990-ba10-229bb601f349 {"md5": "0e38441fe871b86757b8ed73aff7eb90", "pid": "027729044", "note": [{"label": ["Mourre", "GLU"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Consuls (Rome)"}, {"authorized_access_point": "Magistrats (Rome)"}, {"authorized_access_point": "Provinces romaines"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85107160", "source": "LCSH"}], "authorized_access_point": "Proconsuls, Roman"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027729044", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119709792", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11970979", "source": "BNF"}], "variant_access_point": ["Proconsulat (Rome)", "Proconsuls romains"], "authorized_access_point": "Proconsuls (Rome)"} 1 +2024-09-11 09:08:12.467216 2024-09-11 09:08:12.46722 e6797803-1a32-4827-a356-b9f545fff968 {"md5": "d2f2fd808af1c7ca75810fc95527eedd", "pid": "027735893", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Commutation de paquets"}, {"authorized_access_point": "Télécommunications - France"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027735893", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11971521w", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11971521", "source": "BNF"}], "variant_access_point": ["Réseau Transpac"], "authorized_access_point": "Transpac (réseau de transmission de données)"} 1 +2024-09-11 09:08:12.532582 2024-09-11 09:08:12.532585 0bf40bee-62b4-4162-8595-99a861c6ee70 {"md5": "999940958772c71cf96030c7491d707d", "pid": "027756580", "note": [{"label": ["Grand Larousse universel", "Encycl. universalis (art. : Sunnisme) - http://www.universalis-edu.com (2016-01-11)", "Wīkībīdyā al-mawsūʿaẗ al-ḥurraẗ - http://ar.wikipedia.org (2018-10-29)", "Al-munǧid fī al-luġaẗ wa al-aʿlām / Dār al-Mašriq, 2005", "Dict. historique de l'islam / J. et D. Sourdel, 2004", "Dict. encyclopédique de l'islam / C. Glassé, 1991 : sunnah", "BnF Service arabe, 2018-10-29"], "noteType": "dataSource"}, {"label": ["Paroles et actes du Prophète donnés en exemple, comprenant ce qu'il a approuvé, autorisé ou absous, tels qu'ils sont fixés dans les Hadith, et qui constituent la coutume et fondent les usages dans l'islam sunnite"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Islam"}], "related": [{"authorized_access_point": "Sunnisme"}, {"authorized_access_point": "Littérature islamique"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027756580", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11973106c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11973106", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Sunnaẗ", "سنّة", "Sunnah", "Al- sunnaẗ", "السنّة", "Tradition (islam)"], "authorized_access_point": "Sunna"} 1 +2024-09-11 09:08:12.594053 2024-09-11 09:08:12.594057 611dc29b-4064-49eb-a6f4-58dbc0c0858d {"md5": "4f5fc72af0f2bbe017483483c78e8ea4", "pid": "027756653", "note": [{"label": ["Grand Robert de la langue française, 2001", "Dicobat 10 : dict. général du bâtiment / J. de Vigan, 2011"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Construction - Matériaux"}, {"authorized_access_point": "Couverture (construction)"}], "related": [{"authorized_access_point": "Construction en tuiles"}, {"authorized_access_point": "Toits en tuiles"}, {"authorized_access_point": "Tuileries"}, {"authorized_access_point": "Tuiles - Industrie et commerce"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Tuiles à emboîtement"}, {"authorized_access_point": "Tuiles antiques"}, {"authorized_access_point": "Tuiles en béton"}, {"authorized_access_point": "Tuiles médiévales"}, {"authorized_access_point": "Tuiles photovoltaïques"}, {"authorized_access_point": "Tuiles vernissées"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85135357", "source": "LCSH"}], "authorized_access_point": "Tiles, Roofing"}, {"source": "RVMLaval", "authorized_access_point": "Tuiles"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027756653", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119731129", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11973112", "source": "BNF"}], "classification": [{"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}, {"name": "Bâtiment", "type": "bf:ClassificationDdc", "classificationPortion": "690"}], "variant_access_point": ["Couverture en tuiles"], "authorized_access_point": "Tuiles"} 1 +2024-09-11 09:08:12.65087 2024-09-11 09:08:12.650877 66fe6f05-ace9-4a78-b877-fb753215edce {"md5": "8ec0ee711f19d791032c3d27459e3227", "pid": "027759547", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Identification automatique"}, {"authorized_access_point": "Microprocesseurs"}, {"authorized_access_point": "Monnaie électronique"}, {"authorized_access_point": "Ordinateurs - Mémoires"}, {"authorized_access_point": "Systèmes de sécurité"}], "related": [{"authorized_access_point": "Cartes de crédit"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Cartes professionnelles de santé"}, {"authorized_access_point": "Cartes de téléphone"}, {"authorized_access_point": "Cartes de santé"}, {"authorized_access_point": "Porte-monnaie électronique"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Cartes à mémoire"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85123621", "source": "LCSH"}], "authorized_access_point": "Smart cards"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027759547", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119733403", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11973340", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["Billettique", "Cartes à circuit intégré", "Cartes à microcircuit", "Cartes à microprocesseur", "Cartes à pistes magnétiques", "Cartes à puce", "Cartes électroniques", "Cartes informatiques", "Cartes intelligentes", "Cartes magnétiques"], "authorized_access_point": "Cartes à mémoire"} 1 +2024-09-11 09:08:12.704875 2024-09-11 09:08:12.704879 afcf9cc6-fe33-406f-a74b-3acd03aa9807 {"md5": "4c40e3a6fc978c3c8fbad518692ff53c", "pid": "027789551", "note": [{"label": ["Encycl. autodidactique Quillet, 1998", "Wikipédia : entreprise de service du numérique - http://fr.wikipedia.org (2017-05-31)", "Encycl. de l'informatique et des systèmes d'information, 2006", "Le guide des SSII / P. Caillerez, 2013", "Dico du net : SSII - Société de Services en Ingéniérie Informatique - http://www.dicodunet.com (2017-05-31)", "Les services numériques / DGE, Direction générale des entreprises : entreprises de services numériques (ESN, nouveau nom des SSII) - http://www.entreprises.gouv.fr/services/services-numeriques (2017-05-31)"], "noteType": "dataSource"}, {"label": ["Sociétés de conseil spécialisées en génie informatique. L'appellation \\"entreprise de services du numérique\\" (ESN), décidée par le Syntec Numérique en 2013, reste très peu usitée face à société de services en ingéniérie informatique (SSII)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Informatique - Industrie et commerce"}, {"authorized_access_point": "Sociétés de conseil"}], "related": [{"authorized_access_point": "Centres de traitement informatique"}, {"authorized_access_point": "Infogérance"}, {"authorized_access_point": "Informaticiens-conseils"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Sociétés de services en logiciels libres"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027789551", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11975653r", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11975653", "source": "BNF"}], "classification": [{"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Gestion et organisation de l'entreprise", "type": "bf:ClassificationDdc", "classificationPortion": "650"}], "variant_access_point": ["Entreprises de services du numérique", "Entreprises de services numériques", "SS2I", "SSCI", "SSII", "ESN", "Informatique - Sociétés de services et de conseil", "Ingénierie informatique, Sociétés de services en", "Numérique, Entreprises de services du", "Services informatiques, Sociétés de", "Sociétés d'ingénierie informatique", "Sociétés de services et d'ingéniérie informatique", "Sociétés de services et de conseil en informatique"], "authorized_access_point": "Sociétés de services en ingénierie informatique"} 1 +2024-09-11 09:08:12.75864 2024-09-11 09:08:12.758645 1cb5dfc0-30e2-4d5e-ad51-6acf14445a9f {"md5": "03cf88cceacf2bac9127c1ab2f8d9020", "pid": "027793575", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Logiciels"}], "related": [{"authorized_access_point": "Grapheurs"}, {"authorized_access_point": "Solveurs (logiciels)"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Tableurs"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85042371", "source": "LCSH"}], "authorized_access_point": "Electronic spreadsheets"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027793575", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119759647", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11975964", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Chiffriers électroniques", "Feuilles de calcul électroniques"], "authorized_access_point": "Tableurs"} 1 +2024-09-11 09:08:12.813888 2024-09-11 09:08:12.813893 bac8ba1d-1485-46f4-9011-727b06259475 {"md5": "b43807ab0b1a5343da8df6c638fb317b", "pid": "027808394", "note": [{"label": ["Encycl. universalis (art. : Mauroy, Pierre) : droits des salariés dans l'entreprise ; (art. : Services, Économie de) : droits du personnel - http://www.universalis-edu.com (2016-05-13)", "Les droits des travailleurs / J. Auroux, 1982", "Droits des salariés : salariés du privé, guide juridique de la CFDT / T. Ouazan, 2015"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Droit du travail"}, {"authorized_access_point": "Droits économiques et sociaux"}], "related": [{"authorized_access_point": "Personnel"}, {"authorized_access_point": "Religion en milieu de travail"}, {"authorized_access_point": "Règlement intérieur"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Bases de données économiques et sociales (relations industrielles)"}, {"authorized_access_point": "Communication en direction du personnel"}, {"authorized_access_point": "Droit de grève"}, {"authorized_access_point": "Expression des salariés"}, {"authorized_access_point": "Représentation du personnel"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027808394", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11977077k", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11977077", "source": "BNF"}], "classification": [{"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}], "variant_access_point": ["Droits des salariés dans l'entreprise", "Droits des travailleurs dans l'entreprise", "Droits du personnel dans l'entreprise", "Entreprises - Droits du personnel", "Travailleurs - Droits"], "authorized_access_point": "Personnel - Droits"} 1 +2024-09-11 09:08:12.869192 2024-09-11 09:08:12.869196 73a09f9d-83a2-4164-9b20-bb686da030d9 {"md5": "b57c72553c6cb2cad1cd82a4c7ab3704", "pid": "027808629", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Recteurs d'académie"}, {"authorized_access_point": "Enseignement supérieur - Réforme"}, {"authorized_access_point": "Autonomie universitaire"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Étudiants - Participation à la gestion de l'administration"}, {"authorized_access_point": "Coopération universitaire"}, {"authorized_access_point": "Présidents et recteurs d'université"}, {"authorized_access_point": "Enseignants - Participation à la gestion de l'administration"}, {"authorized_access_point": "Doyens (enseignement supérieur)"}, {"authorized_access_point": "Bibliothécaires d'université - Rang de professeur"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027808629", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11977092g", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11977092", "source": "BNF"}], "variant_access_point": ["Administration universitaire"], "authorized_access_point": "Universités - Administration"} 1 +2024-09-11 09:08:13.276831 2024-09-11 09:08:13.276834 50b5deea-32d8-4bdf-9dcf-f77f59e558e2 {"md5": "83488a1613db55f2c0d9fb9d5ac3844a", "pid": "02786765X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Diplomatique pontificale"}, {"authorized_access_point": "Documents pontificaux"}], "related": [{"authorized_access_point": "Bulles (sceaux)"}, {"authorized_access_point": "Rescrits pontificaux"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02786765X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11981763k", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11981763", "source": "BNF"}], "variant_access_point": ["Bulles papales", "Papes - Bulles"], "authorized_access_point": "Bulles pontificales"} 1 +2024-09-11 09:08:12.922088 2024-09-11 09:08:12.92209 615bf971-927f-4c83-92aa-2afa4d913805 {"md5": "5f3e030e0d6c18aa6915806132f935b4", "pid": "027826171", "note": [{"label": ["Grand Larousse universel : zaydisme ; zaydite ; Zaydiyya", "Encycl. universalis : zaydiyya - http://www.universalis-edu.com (2018-05-15)", "Al-munǧid fī al-luġaẗ wa al-aʿlām / Dār al-Mašriq, 2005", "Dict. des religions / P. Poupard, 1985", "Dict. encyclopédique de l'islam / C. Glassé, 1991 : zaydītes", "Dict. historique de l'islam / J. et D. Sourdel, 1996 : zaydisme", "BnF Service arabe, 2018-06-22"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Chiites"}, {"authorized_access_point": "Sectes islamiques"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85149552", "source": "LCSH"}], "authorized_access_point": "Zaydīs"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh 91000306", "source": "LCSH"}], "authorized_access_point": "Zaydīyah"}, {"source": "RVMLaval", "authorized_access_point": "Zaydites"}, {"source": "RVMLaval", "authorized_access_point": "Zaydisme"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027826171", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11978443m", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11978443", "source": "BNF"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Groupes sociaux", "type": "bf:ClassificationDdc", "classificationPortion": "305"}], "variant_access_point": ["Zaydiyyaẗ", "زيديّة", "Zaydiyya", "Zaydiyyah", "Al- zaydiyyaẗ", "الزيديّة", "Zaidisme", "Zaidites", "Zaydisme"], "authorized_access_point": "Zaydites"} 1 +2024-09-11 09:08:12.980096 2024-09-11 09:08:12.980101 d242aa9f-355d-4084-8732-7779f4ab88ea {"md5": "08ec483680287accd1fd2294227c2cdd", "pid": "027845214", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Ai̓dṓs (le mot grec)"}, {"authorized_access_point": "Ai̓ṓn (le mot grec)"}, {"authorized_access_point": "Aî̓sa (le mot grec)"}, {"authorized_access_point": "Au̓tós (le mot grec)"}, {"authorized_access_point": "Cháris (le mot grec)"}, {"authorized_access_point": "Charopós (le mot grec)"}, {"authorized_access_point": "Chṓra (le mot grec)"}, {"authorized_access_point": "Chreía (le mot grec)"}, {"authorized_access_point": "Daímōn (le mot grec)"}, {"authorized_access_point": "Diakonía (le mot grec)"}, {"authorized_access_point": "Didáskalos (le mot grec)"}, {"authorized_access_point": "Dî̄mos (le mot grec)"}, {"authorized_access_point": "Doûlos (le mot grec)"}, {"authorized_access_point": "Drósos (le mot grec)"}, {"authorized_access_point": "Dýnamis (le mot grec)"}, {"authorized_access_point": "Ei̓kṓn (le mot grec)"}, {"authorized_access_point": "Ei̓kós (le mot grec)"}, {"authorized_access_point": "Eu̓́chesthai (le mot grec)"}, {"authorized_access_point": "Fantasía (le mot grec)"}, {"authorized_access_point": "Fármakon (le mot grec)"}, {"authorized_access_point": "Filía (le mot grec)"}, {"authorized_access_point": "Filólogos (le mot grec)"}, {"authorized_access_point": "Fílos (le mot grec)"}, {"authorized_access_point": "Filosofía (le mot grec)"}, {"authorized_access_point": "Flýax (le mot grec)"}, {"authorized_access_point": "Fōnī ́ (le mot grec)"}, {"authorized_access_point": "Frī́n (le mot grec)"}, {"authorized_access_point": "Fthónos (le mot grec)"}, {"authorized_access_point": "Fýsis (le mot grec)"}, {"authorized_access_point": "Glaukós (le mot grec)"}, {"authorized_access_point": "Gnōstikós (le mot grec)"}, {"authorized_access_point": "Hekṓn (le mot grec)"}, {"authorized_access_point": "Hósios (le mot grec)"}, {"authorized_access_point": "Hypokeímenon (le mot grec)"}, {"authorized_access_point": "Kardía (le mot grec)"}, {"authorized_access_point": "Kérdos (le mot grec)"}, {"authorized_access_point": "Koinōnía (le mot grec)"}, {"authorized_access_point": "Krâsis (le mot grec)"}, {"authorized_access_point": "Krátos (le mot grec)"}, {"authorized_access_point": "Krī́nī (le mot grec)"}, {"authorized_access_point": "Ktízō (le mot grec)"}, {"authorized_access_point": "Laoí (le mot grec)"}, {"authorized_access_point": "Leitourgía (le mot grec)"}, {"authorized_access_point": "Līḯs (le mot grec)"}, {"authorized_access_point": "Martyría (le mot grec)"}, {"authorized_access_point": "Mathītī́s (le mot grec)"}, {"authorized_access_point": "Méllein (le mot grec)"}, {"authorized_access_point": "Mî̄nis (le mot grec)"}, {"authorized_access_point": "Mîxis (le mot grec)"}, {"authorized_access_point": "Moîra (le mot grec)"}, {"authorized_access_point": "Mystī́rion (le mot grec)"}, {"authorized_access_point": "Mŷthos (le mot grec)"}, {"authorized_access_point": "Nī́pios (le mot grec)"}, {"authorized_access_point": "Nómos (le mot grec)"}, {"authorized_access_point": "Noûs (le mot grec)"}, {"authorized_access_point": "Oi̓kô̄ (le mot grec)"}, {"authorized_access_point": "Oi̓kodomeîn (le mot grec)"}, {"authorized_access_point": "Oi̓kodomī́ (le mot grec)"}, {"authorized_access_point": "Oi̓konomía (le mot grec)"}, {"authorized_access_point": "Paideía (le mot grec)"}, {"authorized_access_point": "Paráklit̄os (le mot grec)"}, {"authorized_access_point": "Pároikos (le mot grec)"}, {"authorized_access_point": "Parrīsía (le mot grec)"}, {"authorized_access_point": "Pâs (le mot grec)"}, {"authorized_access_point": "Páthos (le mot grec)"}, {"authorized_access_point": "Periīgītī́s (le mot grec)"}, {"authorized_access_point": "Peripatô̄ (le mot grec)"}, {"authorized_access_point": "Perisseía (le mot grec)"}, {"authorized_access_point": "Perisseúein (le mot grec)"}, {"authorized_access_point": "Pístis (le mot grec)"}, {"authorized_access_point": "Poíīsis (le mot grec)"}, {"authorized_access_point": "Pólis (le mot grec)"}, {"authorized_access_point": "Politeía (le mot grec)"}, {"authorized_access_point": "Pónos (le mot grec)"}, {"authorized_access_point": "Proaíresis (le mot grec)"}, {"authorized_access_point": "Prókrisis (le mot grec)"}, {"authorized_access_point": "Prosérchomai (le mot grec)"}, {"authorized_access_point": "Psychī́ (le mot grec)"}, {"authorized_access_point": "Skopós (le mot grec)"}, {"authorized_access_point": "Sōfrosýnī (le mot grec)"}, {"authorized_access_point": "Sōtī́r (le mot grec)"}, {"authorized_access_point": "Stoicheîon (le mot grec)"}, {"authorized_access_point": "Syggéneia (le mot grec)"}, {"authorized_access_point": "Syggnṓmī (le mot grec)"}, {"authorized_access_point": "Sykofántīs (le mot grec)"}, {"authorized_access_point": "Sýmvolon (le mot grec)"}, {"authorized_access_point": "Syneídīsis (le mot grec)"}, {"authorized_access_point": "Sýnthīma (le mot grec)"}, {"authorized_access_point": "Téchnī (le mot grec)"}, {"authorized_access_point": "Téleios (le mot grec)"}, {"authorized_access_point": "Telô̄ (le mot grec)"}, {"authorized_access_point": "Télos (le mot grec)"}, {"authorized_access_point": "Theōría (le mot grec)"}, {"authorized_access_point": "Theosofía (le mot grec)"}, {"authorized_access_point": "Thrónos (le mot grec)"}, {"authorized_access_point": "Thymós (le mot grec)"}, {"authorized_access_point": "Tīreîn (le mot grec)"}, {"authorized_access_point": "Tís (le mot grec)"}, {"authorized_access_point": "Tlî̄nai (le mot grec)"}, {"authorized_access_point": "Tragélafos (le mot grec)"}, {"authorized_access_point": "Vánausos (le mot grec)"}, {"authorized_access_point": "Vî̄ma (le mot grec)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85057154", "source": "LCSH"}], "authorized_access_point": "Greek language--Etymology"}, {"source": "RVMLaval", "authorized_access_point": "Grec (Langue)--Étymologie"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027845214", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb133191671", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13319167", "source": "BNF"}], "classification": [{"name": "Langues et linguistique", "type": "bf:ClassificationDdc", "classificationPortion": "400"}], "authorized_access_point": "Grec (langue) - Vocabulaire"} 1 +2024-09-11 09:08:13.042229 2024-09-11 09:08:13.042234 a358af4b-d3d1-4233-9aaf-f0cec5d77e62 {"md5": "619b0959fdf0c9d847477987010eb2d6", "pid": "02785082X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mathématiques"}, {"authorized_access_point": "Sciences - Notation"}], "related": [{"authorized_access_point": "Mathématiques - Formules"}, {"authorized_access_point": "Symboles mathématiques (industries graphiques)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Chiffres"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Mathématiques -- Notation"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85082126", "source": "LCSH"}], "authorized_access_point": "Mathematical notation"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02785082X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11980395v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11980395", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Mathématiques", "type": "bf:ClassificationDdc", "classificationPortion": "510"}], "variant_access_point": ["Écriture mathématique", "Mathématiques - Symboles", "Notation mathématique", "Symboles mathématiques"], "authorized_access_point": "Mathématiques - Notation"} 1 +2024-09-11 09:08:13.101218 2024-09-11 09:08:13.101222 c3eb88b1-877c-4613-86ba-fe0017a30740 {"md5": "cf49ca161cd32b90db5e16b5074f5604", "pid": "027856097", "note": [{"label": ["Encycl. universalis - http://www.universalis-edu.com (2018-01-15)", "Les mots du christianisme / D. Le Tourneau, 2005 : adamite ; picard", "Petit lexique des hérésies chrétiennes / M. Théron, 2014 : adamites ; picards", "Hist. des religions. II / H.-C. Puech, 1972 (p. 1264) : adamites ; picards", "Historical dict. of radical christianity / W. H. Brackney, 2012 : Adamite ; Pikarti", "The Oxford handbook of millennialism / C. Wessinger, 2016 : Pikarts (Pikarti) or Bohemian Adamites"], "noteType": "dataSource"}, {"label": ["Hérétiques chrétiens suivant un Picard se disant le nouvel Adam, établi en Bohême, au 15e s. Ne pas confondre avec la secte gnostique des premiers siècles du même nom"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hérétiques chrétiens"}, {"authorized_access_point": "Sectes chrétiennes médiévales"}], "related": [{"authorized_access_point": "Taborites"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85000787", "source": "LCSH"}], "authorized_access_point": "Adamites"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027856097", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119808310", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11980831", "source": "BNF"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Groupes sociaux", "type": "bf:ClassificationDdc", "classificationPortion": "305"}], "variant_access_point": ["Adamiens (secte médiévale)", "Adamites de Bohême", "Picards (secte)", "Pikarti (secte)"], "authorized_access_point": "Adamites (secte médiévale)"} 1 +2024-09-11 09:08:13.1584 2024-09-11 09:08:13.158404 de5212cd-59c1-43f7-b1ef-72ec95baafa2 {"md5": "914a7ac129d046355cfd1a322686a435", "pid": "02785714X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Analyse numérique"}, {"authorized_access_point": "Calculs numériques"}, {"authorized_access_point": "Échantillonnage (statistique)"}, {"authorized_access_point": "Jeux de hasard (mathématiques)"}, {"authorized_access_point": "Modèles mathématiques"}, {"authorized_access_point": "Processus stochastiques"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Monte-Carlo, Méthode de"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85087032", "source": "LCSH"}], "authorized_access_point": "Monte Carlo method"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02785714X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119809151", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11980915", "source": "BNF"}], "classification": [{"name": "Mathématiques", "type": "bf:ClassificationDdc", "classificationPortion": "510"}], "variant_access_point": ["Échantillonnage stochastique", "Méthode de Monte-Carlo"], "authorized_access_point": "Monte-Carlo, Méthode de"} 1 +2024-09-11 09:08:13.223156 2024-09-11 09:08:13.223158 f20db0c4-aa92-4bcb-bacd-9dbaab12c8ba {"md5": "f88b62d244c042ad478ef6b74f9725e4", "pid": "027867277", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Civilisation - Corée"}, {"authorized_access_point": "Mythologie d'Asie orientale"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Dieux coréens"}, {"authorized_access_point": "Dokkaebi"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85089406", "source": "LCSH"}], "authorized_access_point": "Mythology, Korean"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027867277", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11981731z", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11981731", "source": "BNF"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "authorized_access_point": "Mythologie coréenne"} 1 +2024-09-11 09:08:13.331382 2024-09-11 09:08:13.331387 d3f5ee25-28e3-404a-a944-48efc92900e1 {"md5": "4aeac83d7cacb0a8163a14816e533a6a", "pid": "027868338", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Bouddhisme - Chine - 1368-1644 (Dynastie des Ming)"}, {"authorized_access_point": "Chan (bouddhisme)"}, {"authorized_access_point": "Lotus blanc (secte)"}, {"authorized_access_point": "San jie jiao"}, {"authorized_access_point": "Tiantai"}, {"authorized_access_point": "Zhenyan"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85017494", "source": "LCSH"}], "authorized_access_point": "Buddhism -- China"}, {"source": "RVMLaval", "authorized_access_point": "Bouddhisme -- Chine"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027868338", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119818181", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11981818", "source": "BNF"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Bouddhisme chinois"], "authorized_access_point": "Bouddhisme - Chine"} 1 +2024-09-11 09:08:13.385545 2024-09-11 09:08:13.385553 03d32e6c-a300-4b6e-b403-aeb6e307a8be {"md5": "0790e90108923c9653ba2aa1180d360f", "pid": "027870510", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bases de données - Gestion"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027870510", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11981979h", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11981979", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "authorized_access_point": "Bases de données - Gestion - Logiciels"} 1 +2024-09-11 09:08:13.452563 2024-09-11 09:08:13.452571 cf6afad1-8949-4bf0-a78b-7a38e09facab {"md5": "6561f89359d444e331059f55a5a97871", "pid": "027873196", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Non expedit"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027873196", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11982200j", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11982200", "source": "BNF"}], "authorized_access_point": "Église et État - Italie - 19e siècle"} 1 +2024-09-11 09:08:13.513698 2024-09-11 09:08:13.5137 18d08443-e9e4-4126-b31d-3eec6894f3b9 {"md5": "4a2e25ed4e3f81be355cf8a2e6b24b72", "pid": "02787608X", "note": [{"label": ["Dict. de l'éducation / A. Van Zanten, 2008 (art. : Technologies de l'information et de la communication)", "L'intégration pédagogique des TIC dans le travail enseignant / T. Karsenty, F. Larose, 2005 (p.29)", "École, informatique et nouveau comportement / C. Laguerre, 1999 (p. 115)"], "noteType": "dataSource"}, {"label": ["Utilisation des ordinateurs pour assister les enseignants et les administrateurs dans la coordination du processus pédagogique (recherche, résumé des dossiers scolaires, etc.)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Éducation et informatique"}, {"authorized_access_point": "Technologie éducative"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Enseignement géré par ordinateur"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85029510", "source": "LCSH"}], "authorized_access_point": "Computer managed instruction"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02787608X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119824096", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11982409", "source": "BNF"}], "classification": [{"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}], "variant_access_point": ["Enseignement géré par ordinateur"], "authorized_access_point": "Administration scolaire - Informatique"} 1 +2024-09-11 09:08:13.568562 2024-09-11 09:08:13.568566 37e489b7-8c9f-44a9-bf05-c625a87b29af {"md5": "d419e719229fcc3e7eb80dbae0f4460c", "pid": "027883094", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027883094", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119829412", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11982941", "source": "BNF"}], "authorized_access_point": "Guerre mondiale (1939-1945) - Traités"} 1 +2024-09-11 09:08:13.625146 2024-09-11 09:08:13.625151 5471d640-5f3b-4c6a-8fe8-5a3effd8efb5 {"md5": "8029e91088e60f5e470a8602622e654c", "pid": "02788547X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Débogage"}, {"authorized_access_point": "Logiciels - Développement"}, {"authorized_access_point": "Logiciels - Validation"}, {"authorized_access_point": "Logiciels - Vérification"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Logiciels -- Essais"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85029526", "source": "LCSH"}], "authorized_access_point": "Computer programs--Testing"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02788547X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119831235", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11983123", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "authorized_access_point": "Logiciels - Essais"} 1 +2024-09-11 09:08:13.688425 2024-09-11 09:08:13.68843 5737c9c0-f88a-4d0b-afdc-69378960bb26 {"md5": "aa423c37e0ffa38fc54b694d062fa376", "pid": "027885496", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Débogage"}, {"authorized_access_point": "Logique mathématique"}], "related": [{"authorized_access_point": "Logiciels - Vérification"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Logiciels -- Exactitude"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85029525", "source": "LCSH"}], "authorized_access_point": "Computer programs--Correctness"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027885496", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11983124h", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11983124", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Logiciels - Précision"], "authorized_access_point": "Logiciels - Exactitude"} 1 +2024-09-11 09:08:13.805281 2024-09-11 09:08:13.805284 37476227-32be-423f-8147-24a0cc84ac0b {"md5": "908f3873184fca80ed4b6b7883471b66", "pid": "027908380", "note": [{"label": ["LCSH (en ligne), 2001-06-20"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Microordinateurs"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027908380", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11984914n", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11984914", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["QL (ordinateur)"], "authorized_access_point": "Sinclair QL (ordinateur)"} 1 +2024-09-11 09:08:13.865942 2024-09-11 09:08:13.865945 aa72e2c1-6dfa-460b-a633-a1cf51c41e2c {"md5": "48109fd893f7304637e8f070dda43a84", "pid": "027910210", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Informatique mobile"}, {"authorized_access_point": "Microordinateurs"}], "related": [{"authorized_access_point": "Calculatrices programmables"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "MacBook Pro (ordinateur)"}, {"authorized_access_point": "Liseuses numériques"}, {"authorized_access_point": "Tablettes numériques"}, {"authorized_access_point": "Mini-portables"}, {"authorized_access_point": "Atari Portfolio (ordinateur)"}, {"authorized_access_point": "Communicateurs personnels"}, {"authorized_access_point": "Ordinateurs de poche"}, {"authorized_access_point": "Macintosh PowerBook (bloc-notes)"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Ordinateurs portatifs"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh90002033", "source": "LCSH"}], "authorized_access_point": "Laptop computers"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85105056", "source": "LCSH"}], "authorized_access_point": "Portable computers"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027910210", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11985066n", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11985066", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["Microordinateurs portatifs", "Ordinateurs portables", "Ordinateurs transportables"], "authorized_access_point": "Ordinateurs portatifs"} 1 +2024-09-11 09:08:13.923465 2024-09-11 09:08:13.923469 790b974b-decc-45f0-ab5b-080fed24df9f {"md5": "7944903a5cede28a065e437b3b26aad4", "pid": "027915115", "note": [{"label": ["Sous cette vedette, on trouve les documents sur les micro-ordinateurs de différentes marques conformes à la norme MSX"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "MSX-Basic (langage de programmation)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027915115", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119855123", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11985512", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Microsoft Super eXtended Basic (ordinateurs)"], "authorized_access_point": "MSX (ordinateurs)"} 1 +2024-09-11 09:08:13.982857 2024-09-11 09:08:13.98286 51622b99-a039-4e58-b9c7-fcfa26f8cf83 {"md5": "2134689cbcf10dc213077546cacd3333", "pid": "027920216", "note": [{"label": ["Khrushchov's crimes in Ukraine, 1962"], "noteType": "dataSource"}, {"label": ["LCSH, 1991-06"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Politique et gouvernement - URSS - 1928-1941"}, {"authorized_access_point": "Massacres - Ukraine"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027920216", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11985929x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11985929", "source": "BNF"}], "authorized_access_point": "Vinnitsa, Massacres de (1937-1939)"} 1 +2024-09-11 09:08:14.035514 2024-09-11 09:08:14.035519 fc04609d-d0bc-4f50-bef0-8a92a9d39b6e {"md5": "665b2b470d2678c9e003fec5c215558a", "pid": "027940373", "note": [{"label": ["Base terminologique de l'intelligence artificielle / Y. Kodratoff, M. Barès, 1991", "L'Apprentissage automatique : de la sélection de variables à l'apprentissage de structure d'un classifieur bayésien / H. Bouhamed, 2013 [thèse]", "Réseaux de neurones artificiels : une introduction à l'apprentissage automatique, 2006"], "noteType": "dataSource"}, {"label": ["Processus par lequel un algorithme évalue et améliore ses performances sans l'intervention d'un programmeur, en répétant son exécution sur des jeux de données jusqu'à obtenir, de manière régulière, des résultats pertinents", "Sous cette vedette, on trouve les documents traitant de l'apprentissage par un système de raisonnement automatisé tout seul. Les documents sur la méthodologie de transfert des connaissances d'un expert humain vers le système se trouvent sous Acquisition des connaissances (systèmes experts)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Théorie des automates mathématiques"}, {"authorized_access_point": "Intelligence artificielle"}, {"authorized_access_point": "Systèmes adaptatifs"}, {"authorized_access_point": "Systèmes auto-organisés"}], "related": [{"authorized_access_point": "Acquisition des connaissances (systèmes experts)"}, {"authorized_access_point": "Co-adaptation (informatique)"}, {"authorized_access_point": "Conteneurs (informatique)"}, {"authorized_access_point": "Modélisation prédictive"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Apprentissage basé sur l'explication"}, {"authorized_access_point": "Apprentissage interactif"}, {"authorized_access_point": "Apprentissage non supervisé (intelligence artificielle)"}, {"authorized_access_point": "Apprentissage par renforcement (intelligence artificielle)"}, {"authorized_access_point": "Apprentissage profond"}, {"authorized_access_point": "Apprentissage supervisé (intelligence artificielle)"}, {"authorized_access_point": "Boosting (algorithmes)"}, {"authorized_access_point": "Machines à vecteurs de support"}, {"authorized_access_point": "Prédictions conformes (informatique)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85079324", "source": "LCSH"}], "authorized_access_point": "Machine learning"}, {"source": "RVMLaval", "authorized_access_point": "Apprentissage automatique"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027940373", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11987531v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11987531", "source": "BNF"}], "classification": [{"name": "Généralités", "type": "bf:ClassificationDdc", "classificationPortion": "000"}, {"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Apprentissage-machine", "Apprentissage (intelligence artificielle)", "Apprentissage artificiel", "Apprentissage machine", "Apprentissage statistique", "Machine learning"], "authorized_access_point": "Apprentissage automatique"} 1 +2024-09-11 09:08:14.093543 2024-09-11 09:08:14.093548 999ae369-28b7-49dc-9393-0427ecc2b9f9 {"md5": "d36ee163a1bb7465262df8b004724b4a", "pid": "027944492", "note": [{"label": ["Sous cette vedette on trouve les documents sur l'ensemble de la gamme des micro-ordinateurs Amstrad"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Microordinateurs"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027944492", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11987850z", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11987850", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Amstrad (ordinateur)", "Amstrad Micro (ordinateurs)"], "authorized_access_point": "Amstrad (ordinateurs)"} 1 +2024-09-11 09:08:14.151492 2024-09-11 09:08:14.151499 6ed1d14c-6fbb-4d81-ab23-f9a79c72ddb8 {"md5": "ed1fb189c81cc6cc3fd1702e7a119455", "pid": "027950808", "note": [{"label": ["S'emploie également en subdivision aux industries"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gestion"}, {"authorized_access_point": "Approvisionnement dans l'entreprise"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Relations clients-fournisseurs"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Gestion de l'approvisionnement"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2002007919", "source": "LCSH"}], "authorized_access_point": "Materials management"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027950808", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11988322k", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11988322", "source": "BNF"}], "classification": [{"name": "Gestion et organisation de l'entreprise", "type": "bf:ClassificationDdc", "classificationPortion": "650"}], "variant_access_point": ["Approvisionnement - Gestion", "Fonction approvisionnement", "Gestion des approvisionnements", "Gestion des fournitures"], "authorized_access_point": "Gestion de l'approvisionnement"} 1 +2024-09-11 09:08:16.173306 2024-09-11 09:08:16.173311 725c2214-8438-481d-820b-ff5ece48edc9 {"md5": "c0b51d4c7bb31831235819aed0c4916c", "pid": "028912098", "note": [{"label": ["LCSH, 1987-09", "Laval RVM suppl., 1987-09"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Convulsionnaires (religion)"}, {"authorized_access_point": "Multipliants"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028912098", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120649871", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12064987", "source": "BNF"}], "authorized_access_point": "Histoire religieuse - France - 18e siècle"} 1 +2024-09-11 09:08:14.207324 2024-09-11 09:08:14.207327 cc015bfc-d8a1-4870-9447-b6629e06c607 {"md5": "f9c5d51070f392325b690b830d968966", "pid": "027963675", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Enfants - Statut juridique"}], "related": [{"authorized_access_point": "Violence envers les enfants"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85023351", "source": "LCSH"}], "authorized_access_point": "Child abuse--Law and legislation"}, {"source": "RVMLaval", "authorized_access_point": "Enfants -- Violence envers -- Droit"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027963675", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb133192528", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13319252", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}, {"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}], "variant_access_point": ["Enfants - Violence envers -- Droit"], "authorized_access_point": "Violence envers les enfants - Droit"} 1 +2024-09-11 09:08:14.268192 2024-09-11 09:08:14.268196 3ee5323b-23f7-47f8-a921-b2e0a2ecbdc1 {"md5": "28df58b3d9d4f69fb7b8e3265bca9939", "pid": "028060563", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fonctionnaires - Rome"}, {"authorized_access_point": "Provinces romaines"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85107175", "source": "LCSH"}], "authorized_access_point": "Procurators (Rome)"}, {"source": "RVMLaval", "authorized_access_point": "Procurateurs (Rome)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028060563", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11997124p", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11997124", "source": "BNF"}], "authorized_access_point": "Procurateurs (Rome)"} 1 +2024-09-11 09:08:14.339146 2024-09-11 09:08:14.33915 6d2aa446-4ae9-4eea-bf27-36378c69f605 {"md5": "7587866b7bd0978ffeebfe1ca17dc0e3", "pid": "028071867", "note": [{"label": ["Sous cette vedette on trouve les documents sur la politique de séparation des races en Afrique du Sud et en Namibie"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Relations interethniques - Afrique australe"}, {"authorized_access_point": "Ségrégation"}], "related": [{"authorized_access_point": "Postapartheid"}, {"authorized_access_point": "Mouvements anti-apartheid"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Apartheid"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85005905", "source": "LCSH"}], "authorized_access_point": "Apartheid"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028071867", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11998012n", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11998012", "source": "BNF"}], "classification": [{"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "authorized_access_point": "Apartheid"} 1 +2024-09-11 09:08:14.397904 2024-09-11 09:08:14.397909 5b6a7932-8a0b-41cc-b9b3-1c43b5b4c101 {"md5": "6cfdc0f4e11ea7fa54cf16931078a142", "pid": "028071964", "note": [{"label": ["Guide pratique, Bull Micral.../ G. Perreau, 1985"], "noteType": "dataSource"}, {"label": ["Laval RVM (en ligne), 2005-07-05"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bull (ordinateurs)"}, {"authorized_access_point": "Mini-ordinateurs"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028071964", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119980208", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11998020", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Bull Micral (ordinateur)"], "authorized_access_point": "Micral (ordinateur)"} 1 +2024-09-11 09:08:14.454526 2024-09-11 09:08:14.454531 3a9be10c-2889-4658-a54f-d63753954fba {"md5": "6b30d1c13344cf72448d6111891a25d5", "pid": "02807842X", "note": [{"label": ["LCNA (en ligne), 2001-01-16"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Modélisation des données (informatique)"}, {"authorized_access_point": "Gestion - Informatique"}, {"authorized_access_point": "Systèmes, Conception de"}], "related": [{"authorized_access_point": "MEGA, Méthode"}, {"authorized_access_point": "OOM, Méthode"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02807842X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11998549c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11998549", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["MERISE (méthode de conception de systèmes)", "Méthode MERISE"], "authorized_access_point": "MERISE, Méthode"} 1 +2024-09-11 09:08:14.507773 2024-09-11 09:08:14.507777 194d2e16-4eb4-427d-9154-26cc14e1db93 {"md5": "54d958b2000b33b78d170d791bf44a49", "pid": "02810160X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02810160X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12000318b", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12000318", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "variant_access_point": ["Église catholique - Relations extérieures - 20e siècle"], "authorized_access_point": "Diplomatie pontificale - 20e siècle"} 1 +2024-09-11 09:08:14.566154 2024-09-11 09:08:14.566158 858ae35b-b99e-416d-aff7-d86179330542 {"md5": "426353e0f9f8bccbb022543184e3fe60", "pid": "028140362", "note": [{"label": ["Grand dict. encyclopédique Larousse : zombi ou zombie", "Trésor de la langue française : zombi, zombie", "Nouveau petit Robert 2009 : zombie ou zombi", "Le vaudou haïtien / A. Métraux, 1977 (p. 249)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fantômes"}, {"authorized_access_point": "Vaudou"}], "related": [{"authorized_access_point": "Films de zombis"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99001600", "source": "LCSH"}], "authorized_access_point": "Zombies"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85149949", "source": "LCSH"}], "authorized_access_point": "Zombiism"}, {"source": "RVMLaval", "authorized_access_point": "Zombies"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028140362", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120034050", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12003405", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"type": "bf:ClassificationDdc", "classificationPortion": "391"}], "variant_access_point": ["Morts-vivants", "Zombies", "Zombification", "Zonbis"], "authorized_access_point": "Zombis"} 1 +2024-09-11 09:08:14.630357 2024-09-11 09:08:14.630362 7e415503-05ae-410b-bb4c-bc4ce98eb979 {"md5": "39b0731bf2701818dd9bb22140a86fb4", "pid": "028148800", "note": [{"label": ["Laval RVM, 1983", "GDEL"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Mouvement éthiopien (Afrique du Sud)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028148800", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12004088n", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12004088", "source": "BNF"}], "variant_access_point": ["Ethiopian Church (Afrique du Sud)", "Éthiopianisme"], "authorized_access_point": "Mouvement éthiopien (Afrique du Sud)"} 1 +2024-09-11 09:08:14.696845 2024-09-11 09:08:14.69685 f8b327df-3738-4813-98f8-83dc1862321a {"md5": "c99eebbd23f691320878c3a2cfe0287b", "pid": "028211162", "note": [{"label": ["Laval RVM, 1989-06"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028211162", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12009267f", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12009267", "source": "BNF"}], "authorized_access_point": "Histoire religieuse - Allemagne - 17e siècle"} 1 +2024-09-11 09:08:14.755193 2024-09-11 09:08:14.755198 5e76579e-2093-440b-97ab-6c8a3de7b583 {"md5": "aeeb0070bd8ca742b19d0a14f8313df3", "pid": "028225090", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Bouddhisme - Corée - Jusqu'à 935"}, {"authorized_access_point": "Bouddhisme - Corée - 935-1392"}, {"authorized_access_point": "Sŏn (bouddhisme)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh87001465", "source": "LCSH"}], "authorized_access_point": "Buddhism -- Korea"}, {"source": "RVMLaval", "authorized_access_point": "Bouddhisme -- Corée"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028225090", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120104075", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12010407", "source": "BNF"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Bouddhisme coréen"], "authorized_access_point": "Bouddhisme - Corée"} 1 +2024-09-11 09:08:14.816626 2024-09-11 09:08:14.816629 2ca73e00-f239-45b6-8a87-22fb7461ec33 {"md5": "20ea9b4371ae27917765bb46d6d78c18", "pid": "028225767", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Missions officielles américaines"}], "related": [{"authorized_access_point": "Diplomates américains"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85140008", "source": "LCSH"}], "authorized_access_point": "Diplomatic and consular service, American"}, {"source": "RVMLaval", "authorized_access_point": "Service diplomatique et consulaire américain"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028225767", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120104640", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12010464", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "authorized_access_point": "Service diplomatique et consulaire américain"} 1 +2024-09-11 09:08:14.871567 2024-09-11 09:08:14.87157 dfdb200f-f294-44b3-9a4a-d74b6844e442 {"md5": "e4e534f76bc1439d37dbc884f491ae49", "pid": "028233506", "note": [{"label": ["Laval RVM, 1994-08"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Propriété industrielle (droit international)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028233506", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120111005", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12011100", "source": "BNF"}], "authorized_access_point": "Dessins et modèles (droit international)"} 1 +2024-09-11 09:08:14.926434 2024-09-11 09:08:14.926436 74e39873-8b85-4fd7-8726-e6e227bd815c {"md5": "9cb4f76a78c36d03b893b2fec0ee445c", "pid": "028262220", "note": [{"label": ["Dict. économique et financier / Y. Bernard et J.-C. Colli, 1996"], "noteType": "dataSource"}, {"label": ["Laval RVM, 1996-08. - LCSH, 1996-06"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Macroéconomie - Modèles mathématiques"}, {"authorized_access_point": "Modèles économétriques"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028262220", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12013419w", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12013419", "source": "BNF"}], "variant_access_point": ["Dynamique multi-sectoriel, Modèle", "Modèle DMS", "Modèle dynamique multi-sectoriel"], "authorized_access_point": "DMS, Modèle"} 1 +2024-09-11 09:08:15.040706 2024-09-11 09:08:15.040709 26e4edcc-e409-4802-9107-dba66e7d3f3c {"md5": "ca013bceb63fc3d083da8bf64b73a1a1", "pid": "028359380", "note": [{"label": ["Sous cette vedette, on trouve les documents sur le commerce international en général"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Commerce extérieur, aux lieux (pays, villes, etc.) pour les documents sur le commerce international envisagé du point de vue d'un lieu déterminé"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Commerce"}, {"authorized_access_point": "Relations économiques internationales"}], "related": [{"authorized_access_point": "Commerce international - Réglementation"}, {"authorized_access_point": "Commerce international et emploi"}, {"authorized_access_point": "Salaires - Effets du commerce international"}, {"authorized_access_point": "Accès aux médicaments"}, {"authorized_access_point": "Commerce extérieur"}, {"authorized_access_point": "Économie ouverte"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Juste échange"}, {"authorized_access_point": "Commerce parallèle"}, {"authorized_access_point": "Concurrence internationale"}, {"authorized_access_point": "Contrats d'exclusivité"}, {"authorized_access_point": "Droit commercial (droit international)"}, {"authorized_access_point": "Dumping"}, {"authorized_access_point": "Échanges compensés"}, {"authorized_access_point": "Échanges intra-branche"}, {"authorized_access_point": "Exportations"}, {"authorized_access_point": "Garanties à première demande"}, {"authorized_access_point": "Heckscher-Ohlin, Théorème de"}, {"authorized_access_point": "Importations"}, {"authorized_access_point": "Commerce international - Effets du terrorisme"}, {"authorized_access_point": "Incoterms"}, {"authorized_access_point": "Libre-échange"}, {"authorized_access_point": "Portage (commerce international)"}, {"authorized_access_point": "Protectionnisme"}, {"authorized_access_point": "Routes commerciales"}, {"authorized_access_point": "Stocks régulateurs"}, {"authorized_access_point": "Tarif douanier"}, {"authorized_access_point": "Vente internationale"}, {"authorized_access_point": "Services - Échanges internationaux"}, {"authorized_access_point": "Armes - Vente"}, {"authorized_access_point": "Avantage comparatif (commerce international)"}, {"authorized_access_point": "Balance commerciale"}, {"authorized_access_point": "Classification type pour le commerce international"}, {"authorized_access_point": "Commerce captif"}, {"authorized_access_point": "Commerce Est-Ouest"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Commerce international"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh87004890", "source": "LCSH"}], "authorized_access_point": "International trade"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028359380", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12021081x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12021081", "source": "BNF"}], "variant_access_point": ["Commerce extérieur international", "Commerce mondial", "Échanges commerciaux internationaux", "Échanges internationaux"], "authorized_access_point": "Commerce international"} 1 +2024-09-11 09:08:15.097168 2024-09-11 09:08:15.097173 2bc37703-2b51-4fc0-a545-019d72221d95 {"md5": "8299d03c95c77c87682f1f1f35a58715", "pid": "028431855", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2015001258", "source": "LCSH"}], "authorized_access_point": "Propaganda, Austrian"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028431855", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12026846t", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12026846", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "authorized_access_point": "Propagande autrichienne"} 1 +2024-09-11 09:08:15.15705 2024-09-11 09:08:15.157063 152d95e9-4ce8-42a8-af8d-73a419168375 {"md5": "4afbe4c341cf2f948774a3ec98fd2bad", "pid": "028433890", "note": [{"label": ["LCSH, 1991-06"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Droit social (droit européen)"}, {"authorized_access_point": "Droit privé (droit européen)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Discrimination dans l'emploi - Droit européen"}, {"authorized_access_point": "Risques psychosociaux - Droit européen"}, {"authorized_access_point": "Représentation du personnel - Droit européen"}, {"authorized_access_point": "Comités d'entreprise - Droit européen"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028433890", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12027009n", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12027009", "source": "BNF"}], "authorized_access_point": "Droit du travail (droit européen)"} 1 +2024-09-11 09:08:15.22183 2024-09-11 09:08:15.221833 ab2e2316-2258-4824-be65-d33676cf2a8e {"md5": "b0fd0a2976e70cae008c8c3dbda24104", "pid": "028497244", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Monnaies européennes"}], "related": [{"authorized_access_point": "Monnaie - Luxembourg"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85027844", "source": "LCSH"}], "authorized_access_point": "Coins, Luxembourg"}, {"source": "RVMLaval", "authorized_access_point": "Monnaies luxembourgeoises"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028497244", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12032142r", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12032142", "source": "BNF"}], "classification": [{"name": "Économie politique", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Sculpture", "type": "bf:ClassificationDdc", "classificationPortion": "730"}, {"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Pièces de monnaie luxembourgeoises"], "authorized_access_point": "Monnaies luxembourgeoises"} 1 +2024-09-11 09:08:15.28947 2024-09-11 09:08:15.289475 9faf8417-7566-442e-9e23-fa30433381ec {"md5": "e279915c50278b70022fe5606bf8e79a", "pid": "028517180", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Moyen-Orient - 1945-1979"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028517180", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12033740z", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12033740", "source": "BNF"}], "authorized_access_point": "Politique et gouvernement - Moyen-Orient - 1945-1979"} 1 +2024-09-11 09:08:15.343909 2024-09-11 09:08:15.343912 97cbc96b-f6cd-4e48-a6f5-655894d548c8 {"md5": "f9f4a55abc34bc73048289ba6e930389", "pid": "02852019X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02852019X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12033989v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12033989", "source": "BNF"}], "authorized_access_point": "Frontières - Pays de l'Union européenne"} 1 +2024-09-11 09:08:15.40182 2024-09-11 09:08:15.401824 e01113b5-9cd2-44c3-adea-3f0da16c9056 {"md5": "ff3da54271a35c1a7e6867eadb5d70a3", "pid": "028549082", "note": [{"label": ["Laval RVM, 1991-02"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Opération Condor"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028549082", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12036263z", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12036263", "source": "BNF"}], "authorized_access_point": "Politique et gouvernement - Amérique du Sud - 20e siècle"} 1 +2024-09-11 09:08:15.457709 2024-09-11 09:08:15.457713 281e2209-13d4-454a-98f0-162f4692e619 {"md5": "cc37a28537c1298037272c9aecf98613", "pid": "028631609", "note": [{"label": ["Encycl. de l'informatique et des systèmes d'information, 2006"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bases de données"}], "related": [{"authorized_access_point": "Java Persistence API"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "IBM Database 2 (système informatique)"}, {"authorized_access_point": "Ingres II (système informatique)"}, {"authorized_access_point": "Méta-REORG (système expert)"}, {"authorized_access_point": "Microsoft Jet (langage de programmation)"}, {"authorized_access_point": "Oracle (système informatique)"}, {"authorized_access_point": "PostgreSQL (système informatique)"}, {"authorized_access_point": "REORG (système expert)"}, {"authorized_access_point": "SAUVE (système expert)"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Bases de données relationnelles"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh86007768", "source": "LCSH"}], "authorized_access_point": "Relational databases"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028631609", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12042778m", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12042778", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["SGBDR", "Systèmes de gestion de bases de donnnées relationnelles"], "authorized_access_point": "Bases de données relationnelles"} 1 +2024-09-11 09:08:15.517522 2024-09-11 09:08:15.517528 e06f3d1d-3ec2-4edc-95b9-e8a9b7457ed2 {"md5": "161a467a1dcc5c8c02dd25a4c128ed95", "pid": "028637720", "note": [{"label": ["Wikidata : Missile antibalistique - https://www.wikidata.org/wiki/Q574594 (2023-08-23)"], "noteType": "dataSource"}, {"label": ["Missile conçu pour intercepter un missile balistique ou une roquette. Le terme est cependant principalement utilisé pour désigner les systèmes conçus pour contrer des missiles balistiques intercontinentaux"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Artillerie antiaérienne"}, {"authorized_access_point": "Missiles"}], "related": [{"authorized_access_point": "Défense antimissile de croisière"}, {"authorized_access_point": "Défense antimissile balistique"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Missiles antimissiles"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85005700", "source": "LCSH"}], "authorized_access_point": "Antimissile missiles"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028637720", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120432565", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12043256", "source": "BNF"}], "classification": [{"name": "Art et science militaires", "type": "bf:ClassificationDdc", "classificationPortion": "355"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["ABM", "Antimissiles", "Missiles antibalistiques"], "authorized_access_point": "Missiles antimissiles"} 1 +2024-09-11 09:08:15.583299 2024-09-11 09:08:15.583302 fe95a6f7-4113-43b6-9c5f-3d51eb3928d5 {"md5": "785b23a1ade13e504e944047842591de", "pid": "028675274", "note": [{"label": ["Laval RVM, 1991-02"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Puissances de l'Axe"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028675274", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12046184v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12046184", "source": "BNF"}], "authorized_access_point": "Relations extérieures - Allemagne - 1933-1945"} 1 +2024-09-11 09:08:15.639087 2024-09-11 09:08:15.63909 762f8dc8-aae2-42cc-86d8-92bf2498eb43 {"md5": "35dcce59ec476b9d88676bed1989b9af", "pid": "028676661", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028676661", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12046291d", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12046291", "source": "BNF"}], "authorized_access_point": "Relations extérieures - URSS - 1917-1945"} 1 +2024-09-11 09:08:15.695589 2024-09-11 09:08:15.695594 358db609-1fed-4260-96f7-b5a738df5578 {"md5": "236ab39b299e34c6d702a3c6ad121141", "pid": "02868589X", "note": [{"label": ["LCNA (en ligne), 2004-05-14 : Microsoft Windows (Computer file)"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les documents sur le logiciel de fenêtres informatiques commercialisé par la société Microsoft. Les documentss sur les fenêtres (\\"windows\\") informatiques en général se trouvent sous Fenêtres (informatique). Les documents traitant d'un logiciel spécifique utilisable avec l'interface graphique Microsoft Windows se trouvent sous le nom du logiciel"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fenêtres (informatique)"}], "related": [{"authorized_access_point": "MFC (logiciels)"}, {"authorized_access_point": "Windows Open Services Architecture"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Microsoft Visual BASIC (langage de programmation)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02868589X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120470824", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12047082", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Windows (logiciels)"], "authorized_access_point": "Microsoft Windows (logiciels)"} 1 +2024-09-11 09:08:17.884949 2024-09-11 09:08:17.884952 9cb4d633-e20b-4844-9ed7-c74679e964b0 {"md5": "182952c69278d776ba8b33ef2530aa30", "pid": "030086469", "note": [{"label": ["Laval RVM (en ligne), 2005-05-19"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030086469", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb121573543", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12157354", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}], "authorized_access_point": "Population - Histoire - Logiciels"} 1 +2024-09-11 09:08:15.748899 2024-09-11 09:08:15.748902 08e0c8b3-a5a7-4a23-b794-99a4df9e1c86 {"md5": "c7fa967c6d8defc11bf74e6805797839", "pid": "028698703", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Québec (Canada ; province)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Politique et gouvernement - Québec (Canada ; province) - 1791-1841"}, {"authorized_access_point": "Politique et gouvernement - Québec (Canada ; province) - 1897-1936"}, {"authorized_access_point": "Politique et gouvernement - Québec (Canada ; province) - 20e siècle"}, {"authorized_access_point": "Politique et gouvernement - Québec (Canada ; province) - 1960-...."}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028698703", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12048142d", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12048142", "source": "BNF"}], "classification": [{"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "authorized_access_point": "Politique et gouvernement - Québec (Canada ; province)"} 1 +2024-09-11 09:08:15.806972 2024-09-11 09:08:15.806975 fef0d967-4137-426d-aa24-84d0b3df02f7 {"md5": "9840f7951ee8a0b73b9622588986167b", "pid": "028700139", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028700139", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12048263n", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12048263", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "variant_access_point": ["Église catholique - Relations extérieures - 19e siècle"], "authorized_access_point": "Diplomatie pontificale - 19e siècle"} 1 +2024-09-11 09:08:15.866115 2024-09-11 09:08:15.866119 07385cb1-7f23-42cf-bf25-84445cb66726 {"md5": "bbf3b0db8d51ad03c15971a52dce0ea4", "pid": "028700171", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Politique et gouvernement - États-Unis - 1933-1945"}, {"authorized_access_point": "Conditions sociales - États-Unis - 1933-1945"}, {"authorized_access_point": "États-Unis - 1933-1945"}], "related": [{"authorized_access_point": "Crise économique (1929) - États-Unis"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "New Deal"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028700171", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12048266p", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12048266", "source": "BNF"}], "variant_access_point": ["New Deal (1933-1939)", "New Deal - États-Unis"], "authorized_access_point": "New Deal"} 1 +2024-09-11 09:08:15.924936 2024-09-11 09:08:15.92494 fa85a2de-d864-4a96-8ceb-63adc64a966b {"md5": "eb1f42946bd4d2f726471d6331dac2d7", "pid": "028725387", "note": [{"label": ["LCSH, 1994-09"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Consommation d'énergie"}, {"authorized_access_point": "Modèles mathématiques"}, {"authorized_access_point": "Ressources énergétiques"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028725387", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120502183", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12050218", "source": "BNF"}], "variant_access_point": ["Méthode MÉDÉE", "Modèle d'évaluation de la demande en énergie", "Modèle MÉDÉE"], "authorized_access_point": "MÉDÉE, Méthode"} 1 +2024-09-11 09:08:15.980276 2024-09-11 09:08:15.980279 2b2fd728-7996-48cd-b9c1-41a925549815 {"md5": "e19043d188103b412b7ac3459cabaa93", "pid": "028898338", "note": [{"label": ["LCSH 87"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028898338", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120638745", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12063874", "source": "BNF"}], "authorized_access_point": "Relations extérieures - France - 1914-1940"} 1 +2024-09-11 09:08:16.040697 2024-09-11 09:08:16.040702 d2479556-c4af-4347-a3aa-519349bd1244 {"md5": "10fc0121ebf53e9197ee76271c3705fe", "pid": "028909917", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programmation (informatique)"}], "related": [{"authorized_access_point": "Écosystèmes d'applications mobiles (informatique)"}, {"authorized_access_point": "Traitement d'exceptions (informatique)"}, {"authorized_access_point": "Débogage"}, {"authorized_access_point": "Logiciels - Essais"}, {"authorized_access_point": "Logiciels - Maintenance"}, {"authorized_access_point": "Systèmes, Conception de"}, {"authorized_access_point": "Méthodes formelles (informatique)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Architecture logicielle"}, {"authorized_access_point": "Xamarin (plate-forme informatique)"}, {"authorized_access_point": "Tests fonctionnels (informatique)"}, {"authorized_access_point": "Microsoft Visual studio (environnement de développement d'applications)"}, {"authorized_access_point": "SysML (informatique)"}, {"authorized_access_point": "COBIT (informatique)"}, {"authorized_access_point": "Modèle CMM (informatique)"}, {"authorized_access_point": "Éditeurs syntaxiques"}, {"authorized_access_point": "Générateurs (logiciels)"}, {"authorized_access_point": "Objectory, Méthode"}, {"authorized_access_point": "PISA (système informatique)"}, {"authorized_access_point": "Progiciels - Développement"}, {"authorized_access_point": "Test Driven Development"}, {"authorized_access_point": "Prototypage (informatique)"}, {"authorized_access_point": "UML (informatique)"}, {"authorized_access_point": "VDM, Méthode"}, {"authorized_access_point": "ISO/SPICE, Modèle"}, {"authorized_access_point": "Développement rapide d'applications"}, {"authorized_access_point": "Akka (plate-forme informatique)"}, {"authorized_access_point": "Allegro (informatique)"}, {"authorized_access_point": "OCL (informatique)"}, {"authorized_access_point": "PhoneGap (environnement de développement d'applications)"}, {"authorized_access_point": "Gamification"}, {"authorized_access_point": "OSGi (plate-forme informatique)"}, {"authorized_access_point": "Méthodes agiles (informatique)"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Logiciels -- Développement"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85029535", "source": "LCSH"}], "authorized_access_point": "Computer software--Development"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028909917", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12064812v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12064812", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Conception de logiciels", "Développement d'applications (informatique)", "Développement de logiciels", "Développement itératif de logiciels", "Logiciels - Conception", "Logiciels - Développement itératif", "Logiciels - Écriture", "RAD"], "authorized_access_point": "Logiciels - Développement"} 1 +2024-09-11 09:08:16.110803 2024-09-11 09:08:16.110807 ece776c8-82ad-4f39-a327-f7168eddeef4 {"md5": "b02e209c974cba1c952c49b1c7fb29da", "pid": "028910737", "note": [{"label": ["Laval RVM, 1990-08"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Grande-Bretagne - 1837-1901 (Victoria)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028910737", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12064877f", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12064877", "source": "BNF"}], "authorized_access_point": "Politique et gouvernement - Grande-Bretagne - 1837-1901"} 1 +2024-09-11 09:08:16.240975 2024-09-11 09:08:16.240979 2ce28c5e-fc88-4ea1-870a-60580d1debd3 {"md5": "eb23498b7633c38fcf6425b2e9b52404", "pid": "028929098", "note": [{"label": ["GDEL", "LCSH 1987-09"], "noteType": "dataSource"}, {"label": ["Laval 1987-09"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Guerre de la première coalition (1792-1797) - Opérations militaires - France"}, {"authorized_access_point": "France - 1792"}], "related": [{"authorized_access_point": "Valmy (prénom)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028929098", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12066311m", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12066311", "source": "BNF"}], "variant_access_point": ["Valmy, Bataille de (1792)"], "authorized_access_point": "Bataille de Valmy (1792)"} 1 +2024-09-11 09:08:16.298226 2024-09-11 09:08:16.298231 ee4bf341-5f84-40f0-b617-4c6015d89c11 {"md5": "879d44842bd0af91693be24da740ed8e", "pid": "028973631", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Europe de l'Est - 1945-1989"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028973631", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12069805s", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12069805", "source": "BNF"}], "authorized_access_point": "Politique et gouvernement - Europe de l'Est - 1945-1989"} 1 +2024-09-11 09:08:16.35538 2024-09-11 09:08:16.355384 dfc7e366-f65e-4589-89ad-191cf03a623d {"md5": "28869ffe87c0aaea11070e47852eff5f", "pid": "02900294X", "note": [{"label": ["Laval RVM, 1990-08"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Puissances de l'Axe"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02900294X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120720680", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12072068", "source": "BNF"}], "authorized_access_point": "Relations extérieures - Italie - 1922-1945"} 1 +2024-09-11 09:08:16.410045 2024-09-11 09:08:16.410049 7d7e0f4b-5893-4e23-abd4-b77000ded0db {"md5": "e6c9726ec8550e1d5262bc33c675e599", "pid": "02904197X", "note": [{"label": ["LCSH, 2000-03"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02904197X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12075107s", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12075107", "source": "BNF"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "authorized_access_point": "Église et État - Allemagne - 20e siècle"} 1 +2024-09-11 09:08:16.481293 2024-09-11 09:08:16.481297 b256964e-93bb-4793-9e85-f4e65012a9da {"md5": "e0cb35fa3c34126924dc60a21d417fdd", "pid": "029042046", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029042046", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12075113q", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12075113", "source": "BNF"}], "authorized_access_point": "Église et État - Italie - 20e siècle"} 1 +2024-09-11 09:08:16.537803 2024-09-11 09:08:16.537807 392a2a99-5283-44ae-a5e5-be697c88f227 {"md5": "5da17d674c2fe8a5a9d7b404e887f4bf", "pid": "029042186", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Kulturkampf"}, {"authorized_access_point": "Rheinisch-Westfälische Kirchenordnung"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029042186", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12075124c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12075124", "source": "BNF"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "authorized_access_point": "Église et État - Allemagne - 19e siècle"} 1 +2024-09-11 09:08:16.59456 2024-09-11 09:08:16.594565 932fa7d0-2d7f-423a-8c34-e94cd2bf9390 {"md5": "1c9a7bbc89a14dc208b15845e2f6834b", "pid": "02905026X", "note": [{"label": ["Laval RVM, 1992-08"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Blocus continental"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02905026X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12075741m", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12075741", "source": "BNF"}], "authorized_access_point": "Politique et gouvernement - Europe - 1789-1815"} 1 +2024-09-11 09:08:16.656263 2024-09-11 09:08:16.656267 a018f39e-5868-4549-ba5a-18204ba8b4ac {"md5": "524db13e1f5200790c7d4ad1bb221be6", "pid": "029182387", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85025254", "source": "LCSH"}], "authorized_access_point": "Christianity and other religions--Chinese"}, {"source": "RVMLaval", "authorized_access_point": "Christianisme -- Relations -- Religion chinoise"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029182387", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120862572", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12086257", "source": "BNF"}], "authorized_access_point": "Christianisme - Relations - Religion chinoise"} 1 +2024-09-11 09:08:16.710088 2024-09-11 09:08:16.710093 c6f1b723-60b4-43ef-9447-09a293c539d6 {"md5": "8230a9f31d43cc0a88bb76bd6f420c52", "pid": "029205794", "note": [{"label": ["Employer les subdivisions chronologiques communes"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Ressortissants des États membres de l'Union européenne"}, {"authorized_access_point": "Droit social (droit européen)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029205794", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12088093v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12088093", "source": "BNF"}], "variant_access_point": ["Espace social européen", "Europe sociale", "Marché intérieur européen - Aspect social", "Politique sociale européenne"], "authorized_access_point": "Politique sociale - Pays de l'Union européenne"} 1 +2024-09-11 09:08:16.769738 2024-09-11 09:08:16.769743 5e488674-d885-4eb3-8d3f-8cd3cc0ee4b1 {"md5": "813e283d0e1972cf238d0c00b4c92307", "pid": "029342147", "note": [{"label": ["La grande dépression : les États-Unis en crise, 1929-1933 / J. Heffer, 1991", "The Great Depression / D. F. Burg, 2005"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Crise économique (1929)"}], "related": [{"authorized_access_point": "New Deal"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029342147", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120988849", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12098884", "source": "BNF"}], "classification": [{"name": "Économie politique", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Histoire du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "950"}], "variant_access_point": ["Grande dépression (États-Unis ; 1929-1939)"], "authorized_access_point": "Crise économique (1929) - États-Unis"} 1 +2024-09-11 09:08:16.831288 2024-09-11 09:08:16.831293 67232783-47e3-457a-8f91-5cf25a4ef070 {"md5": "4a9ca06a2c9e6773b5f38290e8d32133", "pid": "029344212", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Comportement humain"}, {"authorized_access_point": "Psychodiagnostics"}, {"authorized_access_point": "Psychologie - Méthodologie"}], "related": [{"authorized_access_point": "Méthode ERTOMIS"}, {"authorized_access_point": "Méthode ELHAN"}, {"authorized_access_point": "Analyse comportementale des adolescents"}, {"authorized_access_point": "Analyse comportementale des enfants"}, {"authorized_access_point": "Méthode ABA"}, {"authorized_access_point": "Modification du comportement"}, {"authorized_access_point": "Profilage (droit)"}, {"authorized_access_point": "Thérapie comportementale"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Quantification de soi"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Analyse comportementale"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85012901", "source": "LCSH"}], "authorized_access_point": "Behavioral assessment"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029344212", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12099028v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12099028", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}], "variant_access_point": ["Analyse du comportement", "Comportement humain - Évaluation", "Évaluation comportementale", "Évaluation du comportement"], "authorized_access_point": "Analyse comportementale"} 1 +2024-09-11 09:08:16.88961 2024-09-11 09:08:16.889614 7d95c0af-6fd4-43ca-ad3e-3fd5fb0790ac {"md5": "b33bc659fc896ba9b92f9373fb7624cb", "pid": "029347254", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029347254", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120992768", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12099276", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Économie politique", "type": "bf:ClassificationDdc", "classificationPortion": "330"}], "authorized_access_point": "Patrimoine - Gestion - Logiciels"} 1 +2024-09-11 09:08:16.944439 2024-09-11 09:08:16.944443 abcd4d4d-8c07-4617-baf3-456ce9490d21 {"md5": "241dccc1bbb94d57ec95436035fd36c3", "pid": "029349230", "note": [{"label": ["Dict. encycl. de l'information et de la documentation"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bibliothéconomie - Logiciels"}, {"authorized_access_point": "Informatique documentaire"}, {"authorized_access_point": "Systèmes d'information"}, {"authorized_access_point": "Logiciels"}], "related": [{"authorized_access_point": "Vidéodisques"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029349230", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120994504", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12099450", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "085722545"}, "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Sciences de l'information", "type": "bf:ClassificationDdc", "classificationPortion": "020"}], "variant_access_point": ["Gestion des documents - Logiciels", "Recherche documentaire - Logiciels"], "authorized_access_point": "Logiciels documentaires"} 1 +2024-09-11 09:08:17.000482 2024-09-11 09:08:17.000486 6e02e43c-31af-4b0d-8027-cf9afb0845f3 {"md5": "f790b3fc4dc754d97065d922f1ac2ed7", "pid": "029404614", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Abbayes - [Localisations géographiques]"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Oliwa (pologne) - Abbaye"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029404614", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12103944f", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12103944", "source": "BNF"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Construction", "type": "bf:ClassificationDdc", "classificationPortion": "690"}, {"name": "Architecture", "type": "bf:ClassificationDdc", "classificationPortion": "720"}], "authorized_access_point": "Abbayes - Pologne"} 1 +2024-09-11 09:08:17.760138 2024-09-11 09:08:17.760141 e51fda62-f5f2-4740-8844-82294804a6c8 {"md5": "54c7b4d0eef27d8cd50a133c9a592d29", "pid": "030017653", "note": [{"label": ["Mourre", "GLU"], "noteType": "dataSource"}, {"label": ["Laval RVM, 1993-02"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Droit romain"}, {"authorized_access_point": "Magistrats (Rome)"}], "related": [{"authorized_access_point": "Plèbe (Rome)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Édiles (Rome)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85137435", "source": "LCSH"}], "authorized_access_point": "Tribunus plebis"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030017653", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb121520244", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12152024", "source": "BNF"}], "variant_access_point": ["Puissance tribunitienne", "Tribuni plebis", "Tribunicia potestas"], "authorized_access_point": "Tribuns de la plèbe (Rome)"} 1 +2024-09-11 09:08:17.062798 2024-09-11 09:08:17.062802 00149072-c65d-49b0-bce0-1dbc5a6c69d0 {"md5": "ee53b80d1e117f54fb184246e00d859a", "pid": "029410312", "note": [{"label": ["Sous cette vedette, on trouve les documents sur les facteurs humains dans les systèmes informatiques. Les documents sur les systèmes informatiques qui fonctionnent en temps réel se trouvent sous Systèmes conversationnels (informatique)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ergonomie"}, {"authorized_access_point": "Systèmes homme-machine"}], "related": [{"authorized_access_point": "Conception centrée sur l'utilisateur"}, {"authorized_access_point": "Cyberpsychologie"}, {"authorized_access_point": "Intelligence ambiante"}, {"authorized_access_point": "Interfaces utilisateur (informatique)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Aide en ligne (informatique)"}, {"authorized_access_point": "Apprentissage basé sur l'explication"}, {"authorized_access_point": "Co-adaptation (informatique)"}, {"authorized_access_point": "Crowdsourcing"}, {"authorized_access_point": "Ergonomie cognitive"}, {"authorized_access_point": "Interaction multimodale"}, {"authorized_access_point": "Traitement automatique du langage naturel"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh88003229", "source": "LCSH"}], "authorized_access_point": "Human-computer interaction"}, {"source": "RVMLaval", "authorized_access_point": "Interaction personne-ordinateur"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029410312", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12104414c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12104414", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Communication homme-ordinateur", "Dialogue homme-ordinateur", "Ergonomie informatique", "Facteurs humains dans les systèmes informatiques", "HCI", "Homme-ordinateur, Interaction", "IHM", "Interaction homme-machine (informatique)", "Interaction homme-ordinateur", "Interaction humain-système", "Ordinateur-homme, Interaction", "Relations homme-ordinateur", "Systèmes coopératifs (informatique)"], "authorized_access_point": "Interaction humain-machine"} 1 +2024-09-11 09:08:17.121034 2024-09-11 09:08:17.121037 ccc4e224-baf3-4cf6-b90f-e90eef3f0c9d {"md5": "b220f35e623e2b8d7b3cb2cb8938b782", "pid": "029575168", "note": [{"label": ["Grand Larousse illustré (art. : Rome - Religion)", "Hist. des religions / H. C. Puech, 1970", "Dict. des religions / P. Poupard, 1984 (art. : Romaine, religion)"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les documents sur les cultes pratiqués dans la Rome antique, qu'il s'agisse des cultes propres à la religion romaine ou des cultes liés à d'autres religions"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Vestales"}, {"authorized_access_point": "Religion romaine"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Taurobole"}, {"authorized_access_point": "Bacchanales"}, {"authorized_access_point": "Culte impérial - Rome"}, {"authorized_access_point": "Ver sacrum"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85034739", "source": "LCSH"}], "authorized_access_point": "Cults--Rome"}, {"source": "RVMLaval", "authorized_access_point": "Cultes -- Rome"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029575168", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12117201d", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12117201", "source": "BNF"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Archéologie. Histoire ancienne", "type": "bf:ClassificationDdc", "classificationPortion": "930"}], "authorized_access_point": "Cultes - Rome"} 1 +2024-09-11 09:08:17.180261 2024-09-11 09:08:17.180265 1877757b-7530-4097-a37c-5c573895eccf {"md5": "b4602c10d5b890f77f8c992bb6fc5de2", "pid": "029652308", "note": [{"label": ["Dict. de la sociologie / R. Boudon, 1989"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Interaction sociale"}, {"authorized_access_point": "Sciences sociales - Méthodologie"}], "related": [{"authorized_access_point": "Réseaux sociaux"}, {"authorized_access_point": "Sociométrie"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029652308", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12123187x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12123187", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}], "variant_access_point": ["Analyse de réseau (sciences sociales)", "Réseau, Analyse de (sciences sociales)", "Réseaux (sciences sociales)"], "authorized_access_point": "Sciences sociales - Analyse de réseau"} 1 +2024-09-11 09:08:17.236857 2024-09-11 09:08:17.23686 65998d93-76ab-4993-8414-cb5e65c380bf {"md5": "1d04c80d28e62597b0fd1e086416fa03", "pid": "029726190", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029726190", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12128840d", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12128840", "source": "BNF"}], "authorized_access_point": "Vêtements - Industrie et commerce - Logiciels"} 1 +2024-09-11 09:08:17.294519 2024-09-11 09:08:17.294522 78710d13-470c-4fe7-8fd1-3d46e62223be {"md5": "fc6d3086640f057ae8306902fbb04df8", "pid": "029753090", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Prise de décision (statistique)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Statistique bayésienne non paramétrique"}, {"authorized_access_point": "Segmentation bayésienne"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Statistique bayésienne"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85012506", "source": "LCSH"}], "authorized_access_point": "Bayesian statistical decision theory"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029753090", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb121309043", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12130904", "source": "BNF"}], "classification": [{"name": "Mathématiques", "type": "bf:ClassificationDdc", "classificationPortion": "510"}], "variant_access_point": ["Analyse bayésienne", "Bayes, Solution de", "Bayes, Théorème de", "Inférence bayésienne", "Prise de décision (statistique bayésienne)", "Réseaux bayésiens", "Solution de Bayes", "Théorème de Bayes"], "authorized_access_point": "Statistique bayésienne"} 1 +2024-09-11 09:08:17.823367 2024-09-11 09:08:17.823372 8fa1cdcb-ee33-4b23-85e3-b6ec947a419e {"md5": "bbfdc7a1b098e03582e4d8d6af311334", "pid": "030055849", "note": [{"label": ["Laval RVM, 1999-01"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030055849", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12154960z", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12154960", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"type": "bf:ClassificationDdc", "classificationPortion": "950"}], "authorized_access_point": "Histoire religieuse - Colombie"} 1 +2024-09-11 09:08:17.354953 2024-09-11 09:08:17.354957 42068420-c563-43f2-969b-34b43f6eae6b {"md5": "851bf3d71c0ffe5dd23af6f4e4d5fea9", "pid": "029755999", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Relations internationales - 1933-1945"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Guerre mondiale (1939-1945) - Gouvernements en exil"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Guerre mondiale (1939-1945) -- Histoire diplomatique"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85148402", "source": "LCSH"}], "authorized_access_point": "World War, 1939-1945--Diplomatic history"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029755999", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb121311253", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12131125", "source": "BNF"}], "classification": [{"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire et géographie (généralités)", "type": "bf:ClassificationDdc", "classificationPortion": "900"}], "authorized_access_point": "Guerre mondiale (1939-1945) - Histoire diplomatique"} 1 +2024-09-11 09:08:17.411554 2024-09-11 09:08:17.411558 34f0e7fe-4ce1-40a2-ac16-f88795a8fddc {"md5": "f724cd0c28e1126ac688f41c01046fa6", "pid": "029795826", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Guerre mondiale (1939-1945) - Opérations militaires - France (1944-1945)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029795826", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12134494g", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12134494", "source": "BNF"}], "authorized_access_point": "Bataille des Alpes (France ; 1944-1945)"} 1 +2024-09-11 09:08:17.466328 2024-09-11 09:08:17.466331 598d0117-bee3-4f35-99e5-0d7d6b030574 {"md5": "ba6aff83f903e7fc988fedcd5c0b2396", "pid": "029888026", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029888026", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12141859j", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12141859", "source": "BNF"}], "authorized_access_point": "Histoire religieuse - Portugal"} 1 +2024-09-11 09:08:17.529808 2024-09-11 09:08:17.529812 3c78ae02-729b-42f6-ab98-b208fab0a606 {"md5": "aaab1a5f43eb34a4f611f32c349b342f", "pid": "029918006", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Chimie"}, {"authorized_access_point": "Sciences - Formules"}, {"authorized_access_point": "Sciences - Notation"}], "related": [{"authorized_access_point": "Chimie - Nomenclature"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Équations chimiques"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Chimie -- Notation"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85023003", "source": "LCSH"}], "authorized_access_point": "Chemistry--Notation"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029918006", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb121441867", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12144186", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Chimie, minéralogie, cristallographie", "type": "bf:ClassificationDdc", "classificationPortion": "540"}], "variant_access_point": ["Chimie - Formules", "Chimie - Symboles", "Notation chimique", "Symboles chimiques"], "authorized_access_point": "Chimie - Notation"} 1 +2024-09-11 09:08:17.592368 2024-09-11 09:08:17.592374 3f8e9702-310d-4a13-9b53-fed45c902b51 {"md5": "d82698e36a2f0cffa94f99a2c3189894", "pid": "029933730", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029933730", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12145420c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12145420", "source": "BNF"}], "authorized_access_point": "Relations extérieures - Autriche - 1789-1900"} 1 +2024-09-11 09:08:17.644374 2024-09-11 09:08:17.644378 1f105c7f-8928-4ad5-99bc-b258aeed4d62 {"md5": "431447a9e1dda4d884a49ffcc233d666", "pid": "029958857", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bases de données - Gestion"}, {"authorized_access_point": "Bases de données relationnelles"}], "related": [{"authorized_access_point": "Oracle Application Express (environnement de développement d'applications)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029958857", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12147371g", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12147371", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "authorized_access_point": "Oracle (système informatique)"} 1 +2024-09-11 09:08:17.702506 2024-09-11 09:08:17.702511 46bf71b6-d21b-4a8b-aa63-d544b2519c53 {"md5": "48b9587017f55b36cdaa3b45faef917d", "pid": "03001235X", "note": [{"label": ["Grand Larousse universel", "Dict. de la musique / M. Honegger, 1976", "Dict. de la musique / M. Vignal, 2005", "Dict. des mots de la musique / J. Siron, 2006"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les documents sur la technique d'écriture musicale à plusieurs voix. Les compositions polyphoniques se trouvent sous Chansons polyphoniques et Polyphonies sacrées"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Composition (musique)"}], "related": [{"authorized_access_point": "Ars nova"}, {"authorized_access_point": "Contrepoint"}, {"authorized_access_point": "Chansons polyphoniques"}, {"authorized_access_point": "Fugues (musique)"}, {"authorized_access_point": "Polyphonies sacrées"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Cantus firmus"}, {"authorized_access_point": "Faux-bourdon (musique)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85033444", "source": "LCSH"}], "authorized_access_point": "Counterpoint"}, {"source": "RVMLaval", "authorized_access_point": "Polyphonies -- Histoire et critique"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03001235X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12151616x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12151616", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "variant_access_point": ["Polyphonie", "Musique polyphonique"], "authorized_access_point": "Polyphonie (musique)"} 1 +2024-09-11 09:08:17.943995 2024-09-11 09:08:17.944 e3e05b3e-1670-4620-aad6-1fb2a2be3b51 {"md5": "86abe49116e342aa4ac72864353cd1e5", "pid": "030128145", "note": [{"label": ["Hyperdocuments : hypertextes, hypermédias / J.-P. Balpe, 1990"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bases de données - Gestion"}, {"authorized_access_point": "Multimédias interactifs"}], "related": [{"authorized_access_point": "HTTP (protocole de réseaux d'ordinateurs)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "HTTP (protocole de réseaux d'ordinateurs)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh88002671", "source": "LCSH"}], "authorized_access_point": "Hypertext systems"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030128145", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13319505k", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13319505", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Hyperdocuments", "Hypertexte"], "authorized_access_point": "Hypertextes"} 1 +2024-09-11 09:08:18.001009 2024-09-11 09:08:18.001013 45b8b51b-0cb8-4fdb-b022-663f31a5b60f {"md5": "92f075c134e207251023e81b0ae76e78", "pid": "03018729X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "PASCAL-BTP (banque de données)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03018729X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb121654752", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12165475", "source": "BNF"}], "classification": [{"name": "Technique", "type": "bf:ClassificationDdc", "classificationPortion": "600"}, {"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "authorized_access_point": "Génie civil - Bases de données"} 1 +2024-09-11 09:08:18.066309 2024-09-11 09:08:18.066313 3cb49ae4-0627-4d86-8f52-16f0a104d883 {"md5": "dfc378166899db0a6ffa8da1b585b70b", "pid": "030219884", "note": [{"label": ["Wikipédia (art. : Wii) - https://fr.wikipedia.org (2021-12-08)", "Nintendo - http://www.nintendo.fr (2012-10-05)", "Video game Bible : 1985-2002 / A. Slaven, 2002", "Le plaisir de jouer ensemble : joueurs casuals et interfaces gestuelles de la Wii / E. Jacques, 2011"], "noteType": "dataSource"}, {"label": ["\\"Nintendo\\" et \\"Nintendo Entertainment System\\" sont des appellations commerciales", "Sous cette vedette, on trouve les documents sur le matériel ainsi que sur les jeux eux-mêmes"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Jeux vidéo"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh91002267", "source": "LCSH"}], "authorized_access_point": "Nintendo video games"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2007007398", "source": "LCSH"}], "authorized_access_point": "Nintendo Wii video games"}, {"source": "RVMLaval", "authorized_access_point": "Jeux vidéo Nintendo"}, {"source": "RVMLaval", "authorized_access_point": "Jeux vidéo Nintendo Wii"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030219884", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12168198m", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12168198", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Jeux", "type": "bf:ClassificationDdc", "classificationPortion": "793"}], "variant_access_point": ["Jeux vidéo Nintendo", "NES (jeux vidéo)", "Nintendo 64 (jeux vidéo)", "Nintendo Entertainment System (jeux vidéo)", "Super NES (jeux vidéo)", "Super Nintendo Entertainment System (jeux vidéo)", "Wii (jeux vidéo)"], "authorized_access_point": "Nintendo (jeux vidéo)"} 1 +2024-09-11 09:08:18.122797 2024-09-11 09:08:18.122801 71fcfd3c-e176-4003-a266-b8af799321fd {"md5": "ea2f047be6e858d44e1f990158feca63", "pid": "030336880", "note": [{"label": ["Dict. de la chim. et de ses appl./ Cl. Duval, 1978"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Matière - Propriétés"}], "related": [{"authorized_access_point": "Réactions chimiques"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030336880", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb121773326", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12177332", "source": "BNF"}], "classification": [{"name": "Chimie", "type": "bf:ClassificationDdc", "classificationPortion": "540"}], "variant_access_point": ["Conservation de la matière, Principe de", "Loi de conservation de la matière", "Loi de Lavoisier", "Principe de conservation de la matière", "Principe de conservation des éléments", "Principe de Lavoisier"], "authorized_access_point": "Lavoisier, Loi de"} 1 +2024-09-11 09:08:18.187348 2024-09-11 09:08:18.187353 870c9314-769d-47ad-87c1-1d28051bf1ca {"md5": "ec0b2fe6c71994681d5222071d02d1e5", "pid": "030423724", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fenêtres (informatique)"}, {"authorized_access_point": "Programmation (informatique)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "XFree86 (système informatique)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030423724", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12184011w", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12184011", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Système X Window (système informatique)", "X (système informatique)", "X11 (système informatique)"], "authorized_access_point": "X Window System (système informatique)"} 1 +2024-09-11 09:08:18.24978 2024-09-11 09:08:18.249785 39e0bee7-b5a8-4aa8-b4bc-3ca7df2a4101 {"md5": "21e4edf6a08aae402efa7e68399c1dfd", "pid": "030435056", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Calendrier (chronologie)"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh98000959", "source": "LCSH"}], "authorized_access_point": "Calendar, Ethiopian"}, {"source": "RVMLaval", "authorized_access_point": "Calendrier éthiopien"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030435056", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12185009k", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12185009", "source": "BNF"}], "authorized_access_point": "Calendrier éthiopien"} 1 +2024-09-11 09:08:18.712824 2024-09-11 09:08:18.712829 12110415-9b0e-49a8-af4d-59b63f140e3e {"md5": "6d16526160aec9ba855c5419aa449d32", "pid": "030975689", "note": [{"label": ["Laval RVM, 1993-02"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Puissances de l'Axe"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Incident du Panay (Chine ; 1937)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030975689", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12228429z", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12228429", "source": "BNF"}], "authorized_access_point": "Relations extérieures - Japon - 1912-1945"} 1 +2024-09-11 09:08:18.312955 2024-09-11 09:08:18.312961 23b75931-0d23-4d02-a46a-c9170ee5c186 {"md5": "c103967303b5e72acce9a3d99a1bf00e", "pid": "030642841", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Microordinateurs"}, {"authorized_access_point": "IBM (ordinateurs)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "PC (ordinateur)"}, {"authorized_access_point": "IBM PC/AT (ordinateur)"}, {"authorized_access_point": "IBM PC/XT (ordinateur)"}, {"authorized_access_point": "IBM PCjr (ordinateur)"}, {"authorized_access_point": "IBM PS/2 (ordinateur)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030642841", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb122018278", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12201827", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["IBM (micro-ordinateurs)"], "authorized_access_point": "IBM (microordinateurs)"} 1 +2024-09-11 09:08:18.382162 2024-09-11 09:08:18.382168 ab83dda2-e971-4216-88eb-7a5ae6edbf92 {"md5": "6c690ed15e35ce3017123d17c2f18739", "pid": "030768381", "note": [{"label": ["Laval RVM, 1991-02"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Politique et gouvernement - Chine - 1949-...."}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Crise des îles Quemoy et Matsu (1958)"}, {"authorized_access_point": "Crise des îles Quemoy et Matsu (1954-1955)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85024375", "source": "LCSH"}], "authorized_access_point": "Chinese reunification question, 1949-"}, {"source": "RVMLaval", "authorized_access_point": "Chine, Question de la réunification de la (1949-....)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030768381", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb122118202", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12211820", "source": "BNF"}], "variant_access_point": ["Question de la réunification de la Chine (1949-....)", "Réunification de la Chine, Question de la (1949-.....)", "Question de Taiwan (1949-....)", "Taiwan, Question de (1949-....)"], "authorized_access_point": "Chine, Question de la réunification de la (1949-....)"} 1 +2024-09-11 09:08:18.450576 2024-09-11 09:08:18.450582 5efe4203-81a1-486f-b3b1-15d35666ba7c {"md5": "ebfc0ead9523eef86c7f309fc4a58e8a", "pid": "03082401X", "note": [{"label": ["Colonies formées de citoyens romains établies dans les pays nouvellement conquis ou adverses", "S'emploie également en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Colonies"}, {"authorized_access_point": "Rome"}], "related": [{"authorized_access_point": "Expansion territoriale - Rome"}, {"authorized_access_point": "Canabae"}, {"authorized_access_point": "Citoyenneté (droit romain)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Pomerium"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03082401X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12216223n", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12216223", "source": "BNF"}], "classification": [{"name": "Géographie, tourisme (guides) et voyages", "type": "bf:ClassificationDdc", "classificationPortion": "910"}, {"name": "Préhistoire et histoire ancienne", "type": "bf:ClassificationDdc", "classificationPortion": "930"}], "variant_access_point": ["Colonies - Rome"], "authorized_access_point": "Colonies romaines"} 1 +2024-09-11 09:08:18.512159 2024-09-11 09:08:18.512164 b73811d6-ea2b-47d9-9eb3-d44658a387f2 {"md5": "b26d4d54f40f8bc448e52e939a6fc289", "pid": "030904218", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Antiquités - Lyon (Rhône) - Quartier de Vaise"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030904218", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb122226788", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12222678", "source": "BNF"}], "authorized_access_point": "Antiquités - Rhône (France)"} 1 +2024-09-11 09:08:18.569886 2024-09-11 09:08:18.56989 c08b3888-4f76-4c4f-8b37-1692b60fc3ba {"md5": "231aa1f0c73934f2b1783f18ec4fc3a5", "pid": "030909120", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Relations extérieures - Italie - 1861-1915"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030909120", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12223069w", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12223069", "source": "BNF"}], "authorized_access_point": "Irrédentisme - Italie"} 1 +2024-09-11 09:08:18.640249 2024-09-11 09:08:18.640254 2ae534f0-6e6b-4d06-b51e-a3eb25264d6b {"md5": "0396f80fd4e49ec2b31675dd37ec1831", "pid": "030924987", "note": [{"label": ["S'emploie également en subdivision aux sujets noms communs appropriés (instruments et équipements scientifiques et techniques)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mesures physiques"}, {"authorized_access_point": "Normes"}], "related": [{"authorized_access_point": "Calibreuses (machines)"}, {"authorized_access_point": "Incertitude de mesure"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Cales-étalons - Étalonnage"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Étalonnage"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99004829", "source": "LCSH"}], "authorized_access_point": "Calibration"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030924987", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12224356m", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12224356", "source": "BNF"}], "classification": [{"name": "Sciences (généralités)", "type": "bf:ClassificationDdc", "classificationPortion": "500"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["Calibrage"], "authorized_access_point": "Étalonnage"} 1 +2024-09-11 09:08:18.775082 2024-09-11 09:08:18.775086 b8441a0e-5949-4598-96d0-48c58b4fd6b5 {"md5": "78dc9d103c2f3c22c9c7a0b5c60a3a04", "pid": "031018866", "note": [{"label": ["Sur le modèle de la vedette Juifs -- Émancipation"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Gordon, Émeutes de (1780)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85021208", "source": "LCSH"}], "authorized_access_point": "Catholic emancipation"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031018866", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12231781d", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12231781", "source": "BNF"}], "variant_access_point": ["Émancipation des catholiques britanniques"], "authorized_access_point": "Catholiques - Émancipation - Grande-Bretagne"} 1 +2024-09-11 09:08:18.841453 2024-09-11 09:08:18.841457 b7a174d2-67c3-4f84-b4bd-504cdb3f4bee {"md5": "04c75263ae9fad51b5967881c1c629db", "pid": "031067956", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Holographie"}, {"authorized_access_point": "Systèmes d'affichage"}], "related": [{"authorized_access_point": "Photographie stéréoscopique"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Imagerie tridimensionnelle en géologie"}, {"authorized_access_point": "Vidéo 3D (imagerie tridimensionnelle)"}, {"authorized_access_point": "Télévision en relief"}, {"authorized_access_point": "Imagerie tridimensionnelle en biologie"}, {"authorized_access_point": "Imagerie tridimensionnelle en médecine"}, {"authorized_access_point": "Imagerie quadridimensionnelle"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Imagerie tridimensionnelle"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85135021", "source": "LCSH"}], "authorized_access_point": "Three-dimensional display systems"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031067956", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12235704x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12235704", "source": "BNF"}], "classification": [{"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["Affichage tridimensionnel", "Imagerie 3D", "Imagerie en 3 dimensions", "Systèmes d'affichage tridimensionnel"], "authorized_access_point": "Imagerie tridimensionnelle"} 1 +2024-09-11 09:08:18.91223 2024-09-11 09:08:18.912233 fe63feb5-3597-484e-b1e7-133995b781a8 {"md5": "05010074c558415fd75c80ab6f697c4c", "pid": "031208495", "note": [{"label": ["Encycl. Larousse (art. : Photographie) - http://www.larousse.fr (2014-10-31)", "Photo numérique / J. A. King, 2014", "Guide de la photo numérique : objectif photos réussies / M. Leuchter, 2012"], "noteType": "dataSource"}, {"label": ["Voir aussi la subdivision Photographie"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Électronique numérique"}, {"authorized_access_point": "Photographie"}], "related": [{"authorized_access_point": "Appareils photographiques numériques"}, {"authorized_access_point": "Flickr (site web)"}, {"authorized_access_point": "Instagram (site web)"}, {"authorized_access_point": "Photographie argentique"}, {"authorized_access_point": "Traitement d'images - Techniques numériques"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Digiscopie"}, {"authorized_access_point": "Photographie mobile"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh90001789", "source": "LCSH"}], "authorized_access_point": "Photography -- Digital techniques"}, {"source": "RVMLaval", "authorized_access_point": "Photographie numérique"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031208495", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12246762j", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12246762", "source": "BNF"}], "classification": [{"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}, {"name": "Photographie", "type": "bf:ClassificationDdc", "classificationPortion": "770"}], "variant_access_point": ["Photographie - Techniques numériques"], "authorized_access_point": "Photographie numérique"} 1 +2024-09-11 09:08:18.97876 2024-09-11 09:08:18.978766 eae1924a-b2dd-4eef-becb-0a2a93dbcc07 {"md5": "d134a5a0b660d451559b7e0032b03dbd", "pid": "031380107", "note": [{"label": ["Dict. de l'Académie de médecine - https://www.academie-medecine.fr/le-dictionnaire (2024-05-28)", "Dict. illustré des termes de médecine, 2012", "Dict. de biologie / J. Berthet, 2007", "Dict. de médecine Flammarion, 2008 (art. : Somatomédine)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Facteurs de croissance"}], "related": [{"authorized_access_point": "Protéines IGFBP"}, {"authorized_access_point": "Somatropine"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Facteur de croissance IGF-1"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85124781", "source": "LCSH"}], "authorized_access_point": "Somatomedin"}, {"source": "RVMLaval", "authorized_access_point": "Somatomédine"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031380107", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb122605848", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12260584", "source": "BNF"}], "classification": [{"name": "Sciences de la vie", "type": "bf:ClassificationDdc", "classificationPortion": "570"}], "variant_access_point": ["Facteurs de sulfatation", "Facteurs thymidine", "IGF (protéines)", "Insulin-like growth factors", "Somatomédine", "Somatomédines"], "authorized_access_point": "Facteurs de croissance IGF"} 1 +2024-09-11 09:08:19.042154 2024-09-11 09:08:19.042158 82b34d6f-7fd0-43ef-9242-00cb13bb0ef0 {"md5": "740eab7c6bf8eef571e4e574afdcee68", "pid": "031531121", "note": [{"label": ["Laval RVM, 1992-02"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031531121", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12272835k", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12272835", "source": "BNF"}], "variant_access_point": ["Marché commun sud-américain"], "authorized_access_point": "Intégration économique - Amérique du Sud"} 1 +2024-09-11 09:08:19.103818 2024-09-11 09:08:19.103824 a2b8fe77-adaf-45b6-9576-f53fd73c7ac8 {"md5": "aa3167d411ba7fdf0617c60c283ec4cb", "pid": "03166010X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fonctionnaires - Rome"}, {"authorized_access_point": "Provinces romaines"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Légats (Rome)"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85075776", "source": "LCSH"}], "authorized_access_point": "Legates (Rome)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03166010X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12283328c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12283328", "source": "BNF"}], "variant_access_point": ["Legati"], "authorized_access_point": "Légats (Rome)"} 1 +2024-09-11 09:08:19.170927 2024-09-11 09:08:19.170931 2b2dfe7a-32f6-4b17-a057-c5fe0ed28dbd {"md5": "9fe02cc51bec18b1cfb9c3540ad9379d", "pid": "031819877", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de la pratique des nations africaines de remplacer les fonctionnaires, les hommes d'affaires etc. par des Africains"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Africanisation"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85001756", "source": "LCSH"}], "authorized_access_point": "Africanization"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031819877", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12296380d", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12296380", "source": "BNF"}], "authorized_access_point": "Africanisation"} 1 +2024-09-11 09:08:19.238897 2024-09-11 09:08:19.238901 9d71f5e5-0601-41e0-b001-4e158571dcdb {"md5": "f1a3789d7a8e531c7ce9bee688f006bd", "pid": "032027524", "note": [{"label": ["Rens. tél., 1993-06-04, INRIA"], "noteType": "dataSource"}, {"label": ["Laval RVM (en ligne), 2003-08-28"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Interfaces (informatique)"}, {"authorized_access_point": "Programmation (informatique)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032027524", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12313565v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12313565", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "authorized_access_point": "Générateurs d'interfaces (logiciels)"} 1 +2024-09-11 09:08:19.298757 2024-09-11 09:08:19.29876 88e52a0f-f26e-4268-a8e3-4ce901a6307d {"md5": "6b1ff49aa341559724497320a884a581", "pid": "032184034", "note": [{"label": ["Encycl. universalis (art. : Argentine) - http://www.universalis-edu.com (2024-05-30)", "Disparition et témoignage : réinventer la résistance dans l'Argentine des mères de la place de Mai / A. Verstraeten, 2013", "Les folles de la place de Mai / J.-P. Bousquet, 1982"], "noteType": "dataSource"}, {"label": ["Femmes proches des \\"disparus\\" de la dictature militaire de 1976-1983, qui manifestaient silencieusement sur la place de Mai à Buenos Aires chaque jeudi à partir d'avril 1977"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Personnes disparues - Argentine"}, {"authorized_access_point": "Argentine - 1976-1983 (Dictature militaire)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032184034", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb123263986", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12326398", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "950"}], "variant_access_point": ["Folles de la place de Mai", "Folles de la place de Mai (Argentine)", "Madres de Plaza de Mayo", "Mères de la place de Mai", "Place de Mai, Folles de la", "Place de Mai, Mères de la"], "authorized_access_point": "Mères de la place de Mai (Argentine)"} 1 +2024-09-11 09:08:19.356191 2024-09-11 09:08:19.356195 a6465671-2e21-4fa1-ba4d-dcfaeb4cab1e {"md5": "8bac85a40f70aa47aa68e7ed935c83c1", "pid": "032317468", "note": [{"label": ["Voir aussi la subdivision Ressources Internet à tous sujets noms communs et noms propres pour les ressources électroniques sur ces sujets disponibles sur Internet"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Réseaux à grande distance (informatique)"}], "related": [{"authorized_access_point": "Administration électronique"}, {"authorized_access_point": "Babillards électroniques"}, {"authorized_access_point": "Internet - Gestion"}, {"authorized_access_point": "Internet et femmes"}, {"authorized_access_point": "Internet et immigrés"}, {"authorized_access_point": "Internet et personnes âgées"}, {"authorized_access_point": "Internet et propagande"}, {"authorized_access_point": "Intranets"}, {"authorized_access_point": "Langage et Internet"}, {"authorized_access_point": "Lecture sur écran"}, {"authorized_access_point": "Médias numériques"}, {"authorized_access_point": "Neutralité de l'Internet"}, {"authorized_access_point": "Cinéma et Internet"}, {"authorized_access_point": "Outernets"}, {"authorized_access_point": "RENATER"}, {"authorized_access_point": "Ressources Internet"}, {"authorized_access_point": "Théâtre et internet"}, {"authorized_access_point": "Viralité"}, {"authorized_access_point": "Cyberespace"}, {"authorized_access_point": "Démocratie électronique"}, {"authorized_access_point": "Droits de la personnalité et Internet"}, {"authorized_access_point": "Espaces publics multimédias"}, {"authorized_access_point": "Extranets"}, {"authorized_access_point": "Génération Internet"}, {"authorized_access_point": "Internet - Droit"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Thérapie en ligne"}, {"authorized_access_point": "Internet - Aspect économique"}, {"authorized_access_point": "Réputation numérique"}, {"authorized_access_point": "Formation en ligne"}, {"authorized_access_point": "Internet - Protection de la jeunesse"}, {"authorized_access_point": "Archives de l'Internet"}, {"authorized_access_point": "Internet dans les campagnes électorales"}, {"authorized_access_point": "Cybersexe"}, {"authorized_access_point": "Internet mobile"}, {"authorized_access_point": "Internet à haut débit"}, {"authorized_access_point": "Adresses Internet"}, {"authorized_access_point": "Chat (Internet)"}, {"authorized_access_point": "Aide psychologique en ligne"}, {"authorized_access_point": "Droit - Ressources Internet"}, {"authorized_access_point": "Ingénierie - Ressources Internet"}, {"authorized_access_point": "Médecine - Ressources Internet"}, {"authorized_access_point": "Noms de domaine (Internet)"}, {"authorized_access_point": "Pharmacie - Ressources Internet"}, {"authorized_access_point": "Programmation sur Internet"}, {"authorized_access_point": "Recherche sur Internet"}, {"authorized_access_point": "Sciences - Ressources Internet"}, {"authorized_access_point": "Serveurs gophers"}, {"authorized_access_point": "Téléphonie Internet"}, {"authorized_access_point": "Télévision - Ressources Internet"}, {"authorized_access_point": "WAIS (système d'information)"}, {"authorized_access_point": "Web"}, {"authorized_access_point": "Internet sur la télévision"}, {"authorized_access_point": "Enfants - Ressources Internet"}, {"authorized_access_point": "Visioconférences sur Internet"}, {"authorized_access_point": "Radio - Ressources Internet"}, {"authorized_access_point": "Bibliothèques - Ressources Internet"}, {"authorized_access_point": "Réseaux sociaux (Internet)"}, {"authorized_access_point": "Internet en milieu de travail"}, {"authorized_access_point": "Enquêtes en ligne"}, {"authorized_access_point": "Internet des objets"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Internet"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh92002816", "source": "LCSH"}], "authorized_access_point": "Internet"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032317468", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12337059x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12337059", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Net (réseau d'ordinateurs)", "Sites Internet"], "authorized_access_point": "Internet"} 1 +2024-09-11 09:08:19.413114 2024-09-11 09:08:19.413126 31eb79ee-bd17-4cfc-b5ee-2f60b0f165f7 {"md5": "26e6370f25ac716a1473c7bdff2ca35f", "pid": "032324650", "note": [{"label": ["Orphanet - https://www.orpha.net (2024-05-28)", "Syndrome de Laron : aspects diagnostiques, thérapeutiques et pronostiques / H. Latrech, M. Polak [in] La Presse médicale, 2016, 45, 1", "Dict. de médecine Flammarion, 2008 : Laron (syndrome de)", "Dict. de l'Académie de médecine : nanisme de type Laron - https://www.academie-medecine.fr/le-dictionnaire (2024-05-28)", "Dict. illustré des termes de médecine, 2012 : nanisme type Laron"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Maladies héréditaires"}, {"authorized_access_point": "Nanisme"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh93001158", "source": "LCSH"}], "authorized_access_point": "Laron dwarfism"}, {"source": "MeSH", "identifiedBy": [{"type": "uri", "value": "https://id.nlm.nih.gov/mesh/M0452907", "source": "MeSH"}], "authorized_access_point": "Laron Syndrome"}, {"source": "RVMLaval", "authorized_access_point": "Nanisme de Laron"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032324650", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb123376138", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12337613", "source": "BNF"}], "classification": [{"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Déficience en récepteur d'hormone de croissance", "Déficit du récepteur à l'hormone de croissance", "Insensibilité complète à l'hormone de croissance", "Insensibilité primaire à l'hormone de croissance", "Laron, Syndrome de", "Nanisme de Laron", "Nanisme de type Laron", "Nanisme hypophysaire de type II", "Nanisme type Laron", "Résistance primaire à l'hormone de croissance", "Syndrome de l'insensibilité à l'hormone de croissance"], "authorized_access_point": "Syndrome de Laron"} 1 +2024-09-11 09:08:19.469853 2024-09-11 09:08:19.469858 34966bb5-67f4-45b9-8586-cce9ba836539 {"md5": "1e48e8890fcf4608a99d2f2e05974064", "pid": "032324804", "note": [{"label": ["Les IGFs (insulin like growth factors) et leurs protéines de liaison (IGFBPs) [in] Journal de pédiatrie et de puériculture, 1996, 9, 7", "Rôle et variations de l'expression de la superfamille des protéines IGFBP par les cellules bêta des îlots pancréatiques, notamment en cas d'atteinte pancréatique comme celle induite par le diabète / C. Neftel, 2014 [mémoire]"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Protéines de liaison"}], "related": [{"authorized_access_point": "Facteurs de croissance IGF"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh90000055", "source": "LCSH"}], "authorized_access_point": "Insulin-like growth factor-binding proteins"}, {"source": "RVMLaval", "authorized_access_point": "Protéines de liaison de la somatomédine"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032324804", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12337626m", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12337626", "source": "BNF"}], "classification": [{"name": "Sciences de la vie", "type": "bf:ClassificationDdc", "classificationPortion": "570"}], "variant_access_point": ["IGF binding proteins", "IGFBP (protéines)", "Insulin-like growth factor binding proteins", "Protéines de liaison aux IGF", "Protéines de liaison de la somatomédine", "Protéines de liaison des IGF"], "authorized_access_point": "Protéines IGFBP"} 1 +2024-09-11 09:08:19.531953 2024-09-11 09:08:19.531957 e5d5855d-de1d-4268-91c7-1a168e3fe08e {"md5": "1c782acaf2d5b97213153254a033e66e", "pid": "032370474", "note": [{"label": ["Grand dict. encyclopédique Larousse (art. : Staline, Joseph) : complot des blouses blanches", "Les derniers complots de Staline : l'affaire des blouses blanches / Jean-Jacques Marie, 1993"], "noteType": "dataSource"}, {"label": ["Le 13 janvier 1953, à Moscou, des médecins juifs d'une organisation d'assistance sont accusés de l'assassinat de hauts dirigeants du régime. Ils seront réhabilités et libérés le 4 avril, après la mort de Staline"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Politique et gouvernement - URSS - 1941-1953"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032370474", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12341305k", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12341305", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "950"}], "variant_access_point": ["Affaire des blouses blanches (URSS ; 1953)", "Blouses blanches, Affaire des (1953)", "Complot des blouses blanches (1953)"], "authorized_access_point": "Affaire des blouses blanches (1953)"} 1 +2024-09-11 09:08:19.592846 2024-09-11 09:08:19.592849 d9d36433-8886-458c-8c47-7abc37657744 {"md5": "b9b8301185dab741b9e87cee879b47af", "pid": "03243782X", "note": [{"label": ["Grand Larousse universel", "Encycl. universalis (art. : Suppression des \\"Corn Laws\\") - http://www.universalis-edu.com (2018-08-14)", "Dict. encyclopédique d'histoire / M. Mourre, 1996"], "noteType": "dataSource"}, {"label": ["Législation protectionniste sur la production céréalière britannique, favorable aux grands propriétaires terriens. Renforcée en 1815, elle fut abolie en 1846-1849 à la suite de la campagne libre-échangiste de Richard Cobden et l'Anti-Corn-Law League"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Céréales - Industrie et commerce - Droit"}, {"authorized_access_point": "Protectionnisme"}, {"authorized_access_point": "Grande-Bretagne - Histoire"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Corn-Laws (Grande-Bretagne)"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85032773", "source": "LCSH"}], "authorized_access_point": "Corn laws (Great Britain)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03243782X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb123467810", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12346781", "source": "BNF"}], "classification": [{"name": "Économie politique", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}, {"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Lois sur le blé (Histoire de Grande-Bretagne)"], "authorized_access_point": "Corn-laws (Histoire de Grande-Bretagne)"} 1 +2024-09-11 09:08:19.660756 2024-09-11 09:08:19.66076 c946a7fc-41c0-4c4d-82b5-a54397d1a470 {"md5": "d276d745ca8f5e5ddbc1828b54166240", "pid": "032493940", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Philosophie - Chine - Histoire"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85100892", "source": "LCSH"}], "authorized_access_point": "Philosophy, Chinese--20th century"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032493940", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12351319g", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12351319", "source": "BNF"}], "classification": [{"name": "Philosophie", "type": "bf:ClassificationDdc", "classificationPortion": "100"}], "authorized_access_point": "Philosophie - Chine - 20e siècle"} 1 +2024-09-11 09:08:19.732542 2024-09-11 09:08:19.732545 302b1714-3388-4d09-93ed-2d4f6adf907f {"md5": "bc7d737f68fb9e6031c1aa25c77a81f5", "pid": "032506929", "note": [{"label": ["Grand Larousse universel", "Nouveau petit Robert 2008"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Vêtements de femme"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032506929", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12352358m", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12352358", "source": "BNF"}], "classification": [{"name": "Costume et apparence personnelle", "type": "bf:ClassificationDdc", "classificationPortion": "391"}, {"name": "Économie domestique", "type": "bf:ClassificationDdc", "classificationPortion": "640"}], "authorized_access_point": "Saris"} 1 +2024-09-11 09:08:19.79339 2024-09-11 09:08:19.793392 b7c04b2a-7636-44db-9b74-590c778b2b4d {"md5": "3afbb785c0bcac70aa36f8da3bcebe8d", "pid": "03256953X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Géomatique"}, {"authorized_access_point": "Logiciels"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03256953X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12357433r", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12357433", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Géographie, tourisme (guides) et voyages", "type": "bf:ClassificationDdc", "classificationPortion": "910"}], "variant_access_point": ["Géographie - Logiciels"], "authorized_access_point": "Géographie (discipline) - Logiciels"} 1 +2024-09-11 09:08:19.856261 2024-09-11 09:08:19.856265 7e6c14e8-eeab-423a-ae2e-d381a7db830b {"md5": "68f5ed3bec39b308963680c19a78004d", "pid": "032675011", "note": [{"label": ["GLU", "Encycl. universalis, thesaurus"], "noteType": "dataSource"}, {"label": ["Cités préexistantes à la conquête et soumises à Rome, les municipes pouvaient être de droit romain, de droit latin, ou conserver un droit propre"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Administration locale"}, {"authorized_access_point": "Droit romain"}, {"authorized_access_point": "Provinces romaines"}], "related": [{"authorized_access_point": "Canabae"}, {"authorized_access_point": "Villes antiques"}, {"authorized_access_point": "Droit latin"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85088457", "source": "LCSH"}], "authorized_access_point": "Municipal corporations (Roman law)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032675011", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12365897t", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12365897", "source": "BNF"}], "variant_access_point": ["Municipalités (droit romain)", "Municipia"], "authorized_access_point": "Municipes (droit romain)"} 1 +2024-09-11 09:08:19.914583 2024-09-11 09:08:19.914588 b311ff2d-d545-402b-ad1c-77ecd9b082eb {"md5": "ada6580f81ff9c100bb7d11a7c26b085", "pid": "032709501", "note": [{"label": ["Laval RVM (en ligne), 2005-03-18"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Données - Compression (informatique)"}, {"authorized_access_point": "Utilitaires (logiciels)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032709501", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb123687540", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12368754", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Logiciels de compactage des données (informatique)", "Logiciels de compression des données (informatique)"], "authorized_access_point": "Données - Compression (informatique) - Logiciels"} 1 +2024-09-11 09:08:19.977427 2024-09-11 09:08:19.977431 3d4f5d8f-8256-4ec9-a951-20335f8eda10 {"md5": "0a5e4fc2147b4847124c7ba4cfb4f719", "pid": "032916078", "note": [{"label": ["Sous cette vedette, on trouve les documents sur la gestion des systèmes informatiques. Les documents sur l'informatique appliquée à la gestion sont sous la vedette Gestion -- Informatique. Les documents sur les systèmes d'information spécialisés en gestion sont sous la vedette Systèmes d'information en gestion"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gestion"}], "related": [{"authorized_access_point": "Migration des systèmes d'information"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Gouvernance des données"}, {"authorized_access_point": "Scalabilité (informatique)"}, {"authorized_access_point": "Microsoft Windows Server Update Services (serveur)"}, {"authorized_access_point": "Infogérance"}, {"authorized_access_point": "Informatique - Procédures de secours"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Informatique -- Gestion"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2008102940", "source": "LCSH"}], "authorized_access_point": "Electronic data processing--Management"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032916078", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12385286x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12385286", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Gestion de l'informatique", "Gestion de parc d'ordinateurs", "Systèmes informatiques - Gestion", "Gestion de parc informatique", "Gestion des systèmes informatiques", "Informatique, Centres d' - Gestion", "Informatique - Planification", "Ordinateurs - Gestion", "Parc d'ordinateurs - Gestion", "Parc informatique - Gestion", "Planification informatique"], "authorized_access_point": "Informatique - Gestion"} 1 +2024-09-11 09:08:20.037277 2024-09-11 09:08:20.037279 8ddb7827-e74d-4901-8602-6b52eda87ea8 {"md5": "d7ee864da852018c34673a6d6047bf42", "pid": "032978294", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Arts - Japon"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Art - Japon - 794-1185 (Époque de Heian)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85008402", "source": "LCSH"}], "authorized_access_point": "Arts, Japanese--Heian period, 794-1185"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032978294", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb123896175", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12389617", "source": "BNF"}], "classification": [{"name": "Arts (sauf littérature)", "type": "bf:ClassificationDdc", "classificationPortion": "700"}], "authorized_access_point": "Arts - Japon - 794-1185 (Époque de Heian)"} 1 +2024-09-11 09:08:20.098024 2024-09-11 09:08:20.098028 92e2e6c2-4bf4-4df3-9888-d03359658190 {"md5": "e4f6f5df2afcb6ebf23caef713fb6109", "pid": "033125341", "note": [{"label": ["Les tentatives de réforme du calendrier grégorien entre la fin du XIXe siècle et le milieu du XXe siècle / P. Rocher, 2011 - http://www.imcce.fr (2015-09-21)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Calendrier (chronologie)"}], "related": [{"authorized_access_point": "Réforme"}, {"authorized_access_point": "Calendrier grégorien"}, {"authorized_access_point": "Calendrier julien"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033125341", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12402334r", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12402334", "source": "BNF"}], "classification": [{"name": "Astronomie", "type": "bf:ClassificationDdc", "classificationPortion": "520"}, {"name": "Histoire", "type": "bf:ClassificationDdc", "classificationPortion": "900"}], "variant_access_point": ["Calendrier - Réforme", "Réforme du calendrier"], "authorized_access_point": "Calendrier (chronologie) - Réforme"} 1 +2024-09-11 09:08:20.163487 2024-09-11 09:08:20.16349 9905daa1-2a72-4e58-9de7-62ec9846419d {"md5": "979af81daa1edaadfae0940563218251", "pid": "033136831", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Système tributaire (Chine)"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85137436", "source": "LCSH"}], "authorized_access_point": "Tributary system (China)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033136831", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12403376x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12403376", "source": "BNF"}], "variant_access_point": ["Tribut (Chine)"], "authorized_access_point": "Système tributaire (Chine)"} 1 +2024-09-11 09:08:20.221058 2024-09-11 09:08:20.221062 c436e666-4c83-4a3d-9562-0c2970847201 {"md5": "f9f0966b4ae387b8eec161d6f48b29b2", "pid": "033422605", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Art - Grande-Bretagne"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Architecture - Grande-Bretagne - 17e siècle"}, {"authorized_access_point": "Art jacobéen"}, {"authorized_access_point": "Art Stuart"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033422605", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12428983g", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12428983", "source": "BNF"}], "classification": [{"name": "Arts (sauf littérature)", "type": "bf:ClassificationDdc", "classificationPortion": "700"}], "authorized_access_point": "Art - Grande-Bretagne - 17e siècle"} 1 +2024-09-11 09:08:20.280076 2024-09-11 09:08:20.28008 f7ee9932-72e1-4c79-b36d-244ce22e1b27 {"md5": "1b59eba661d2091035079a4d2f35b030", "pid": "033433763", "note": [{"label": ["Grand Larousse universel", "Encycl. universalis, 1989 (art. : Canada)", "Petit Robert 1, 1993", "The way of the WASP : how it made America, and how it can save it, so to speak / R. Brookhiser, 1991"], "noteType": "dataSource"}, {"label": ["Nom donné, aux États-Unis et au Canada, aux citoyens d'origine anglo-saxonne et de religion protestante, constituant ou ayant constitué les couches dirigeantes du pays"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Conditions sociales - États-Unis"}, {"authorized_access_point": "Blancs"}, {"authorized_access_point": "Ethnologie - Canada"}, {"authorized_access_point": "Ethnologie - États-Unis"}, {"authorized_access_point": "Protestants"}], "related": [{"authorized_access_point": "Américains d'origine britannique"}, {"authorized_access_point": "Canadiens anglophones"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033433763", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12429955g", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12429955", "source": "BNF"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Groupes sociaux", "type": "bf:ClassificationDdc", "classificationPortion": "305"}, {"name": "Ethnologie", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "variant_access_point": ["WASPs", "White Anglo-Saxon Protestants"], "authorized_access_point": "WASP"} 1 +2024-09-11 09:08:20.344907 2024-09-11 09:08:20.344911 72316052-0e38-43ae-be53-9460253d7671 {"md5": "f1b6a68abff9c9802fdeffcef7c89766", "pid": "033642036", "note": [{"label": ["GLU"], "noteType": "dataSource"}, {"label": ["Partisans de Savonarole"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Histoire religieuse - Italie - 16e siècle"}, {"authorized_access_point": "Florence (Italie) - 1494-1512 (Exil des Médicis)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033642036", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12448906f", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12448906", "source": "BNF"}], "authorized_access_point": "Piagnoni (Mouvement de Savonarole)"} 1 +2024-09-11 09:08:20.408614 2024-09-11 09:08:20.408618 a93d3a70-3240-4a23-a0c2-aea41c02fab7 {"md5": "4c58e2aaff24ee6479720cf74796fadf", "pid": "033738653", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Utilitaires (logiciels)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033738653", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12457541t", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12457541", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Disques rigides - Gestion"], "authorized_access_point": "Disques durs - Gestion"} 1 +2024-09-11 09:08:20.470585 2024-09-11 09:08:20.470587 50b9b27b-d76d-471b-9975-cf5490f88401 {"md5": "91f0cc7747968df89a223d6efcd4338c", "pid": "03374033X", "note": [{"label": ["Laval RVM, 1994-08. - LCSH, 1994-09"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Équateur"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03374033X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12457696c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12457696", "source": "BNF"}], "authorized_access_point": "Relations extérieures - Équateur"} 1 +2024-09-11 09:08:20.531715 2024-09-11 09:08:20.531719 fe8ad560-b101-4c47-b900-4960bfa97a83 {"md5": "ac0e0749f3c1b28908190ccf2ed4fc48", "pid": "033869235", "note": [{"label": ["Une introduction à l'analyse du discours argumentatif / V. Mendenhall, 1990", "Grammaire du discours argumentatif / E. Eggs, 1994", "Le développement des discours argumentatifs / C. Golder, 1996"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Discours (linguistique)"}], "related": [{"authorized_access_point": "Argumentation"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033869235", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12468269t", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12468269", "source": "BNF"}], "classification": [{"name": "Linguistique générale", "type": "bf:ClassificationDdc", "classificationPortion": "401"}], "variant_access_point": ["Analyse du discours argumentatif", "Argumentation (linguistique)", "Argumentation dans la langue", "Parole argumentative", "Texte - Argumentation", "Texte argumentatif", "Textes argumentatifs", "Topoï (linguistique)"], "authorized_access_point": "Discours argumentatif"} 1 +2024-09-11 09:08:20.598283 2024-09-11 09:08:20.598288 9b82b289-4eab-4db1-a58b-42f6a7f84d2b {"md5": "04a5b715ef7a253d9dda65cefae655ff", "pid": "033895732", "note": [{"label": ["Laval RVM, 1997-02"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Logiciels"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033895732", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12470661f", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12470661", "source": "BNF"}], "variant_access_point": ["Logiciels de gestion du personnel"], "authorized_access_point": "Personnel - Direction -- Logiciels"} 1 +2024-09-11 09:08:20.672477 2024-09-11 09:08:20.67248 6bda11a0-796c-457e-ab65-7e82ac217726 {"md5": "457fd7d5ab7397ede1cea7eaad9e7cf2", "pid": "034054693", "note": [{"label": ["Grand Larousse universel", "Mourre"], "noteType": "dataSource"}, {"label": ["En Amérique latine, au 19e siècle et au début du 20e siècle, chefs politiques se faisant les champions des masses métisses et indiennes contre la bourgeoisie blanche et exerçant le pouvoir par des méthodes dictatoriales, avec l'appui de l'armée : par ex. J. Francia, J.A. Páez, J.M. Rosas, R. Carrera, P. Díaz, J.V. Gomez"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Politique et gouvernement - Amérique latine - 20e siècle"}, {"authorized_access_point": "Dictateurs"}, {"authorized_access_point": "Gouvernement militaire"}, {"authorized_access_point": "Hommes politiques"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Caudillos"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034054693", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb124850000", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12485000", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "authorized_access_point": "Caudillos"} 1 +2024-09-11 09:08:20.731332 2024-09-11 09:08:20.731335 36354466-08c9-4919-ab39-93b3ac5b08ac {"md5": "83d38b69798cf49e1b9de278fefae7e9", "pid": "03405491X", "note": [{"label": ["Encycl. universalis (Médiatisation d'Empire)", "GLU ; Mourre (Médiatisation)", "Mediatisierung ; SWD, 1995-04"], "noteType": "dataSource"}, {"label": ["Incorporation d'un État relevant directement de l'empereur dans un autre État de l'empire (Saint Empire puis Empire allemand)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Souveraineté"}, {"authorized_access_point": "Territoire - Acquisition"}, {"authorized_access_point": "Saint Empire romain germanique"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85082854", "source": "LCSH"}], "authorized_access_point": "Mediatized states"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03405491X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12485021z", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12485021", "source": "BNF"}], "classification": [{"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire médiévale, moderne et contemporaine (sauf la France)", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Médiatisation (Saint Empire romain germanique)"], "authorized_access_point": "Médiatisation d'Empire"} 1 +2024-09-11 09:08:20.785199 2024-09-11 09:08:20.785202 fccb020a-9adb-40c3-bc9f-44520b068d88 {"md5": "8cc1ef1083cb73e8e0674815f0a71fa6", "pid": "034133704", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Chartreuses (monastères) - [Localisations géographiques]"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Gosnay (Pas-de-Calais) - Chartreuse du Val Saint-Esprit"}, {"authorized_access_point": "Aix-en-Provence (Bouches-du-Rhône) - Couvent des Chartreux"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034133704", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12492226q", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12492226", "source": "BNF"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Construction", "type": "bf:ClassificationDdc", "classificationPortion": "690"}, {"name": "Architecture", "type": "bf:ClassificationDdc", "classificationPortion": "720"}], "authorized_access_point": "Chartreuses (monastères) - France"} 1 +2024-09-11 09:08:20.843674 2024-09-11 09:08:20.843678 84e8d8ff-d4aa-46a1-8431-1d421438430e {"md5": "c732927d75abe4c730fb370ea9ce4f00", "pid": "034195688", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Philosophie - Chine - Histoire"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85100889", "source": "LCSH"}], "authorized_access_point": "Philosophy, Chinese--960-1644"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034195688", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb124978822", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12497882", "source": "BNF"}], "classification": [{"name": "Philosophie", "type": "bf:ClassificationDdc", "classificationPortion": "100"}], "authorized_access_point": "Philosophie - Chine - 960-1644"} 1 +2024-09-11 09:08:20.904289 2024-09-11 09:08:20.904292 59822ef0-b1e8-415e-939f-1c3a80418a2e {"md5": "cfd52a933a54976ba29c09b75ae64f8b", "pid": "034254145", "note": [{"label": ["Access Basic 2 / B. Blier, 1995", "Crash course in Access Basic / A. Wyatt, S. Gilmore, 1994", "Access Basic cookbook / C. S. Valentine, 1993"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "BASIC (langage de programmation)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034254145", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12502863w", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12502863", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["AccessBasic (langage de programmation)"], "authorized_access_point": "Access Basic (langage de programmation)"} 1 +2024-09-11 09:08:20.960946 2024-09-11 09:08:20.96095 4420688a-e8e7-47ef-949b-ff6fbe50bad5 {"md5": "50a3aaf31e9bed8695fc5e94ccdabcea", "pid": "034259910", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Partis politiques -- Bangladesh"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034259910", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12503320g", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12503320", "source": "BNF"}], "authorized_access_point": "Partis politiques - Bangladesh"} 1 +2024-09-11 09:08:21.02783 2024-09-11 09:08:21.027835 4ee5c8b7-91cc-4037-8fe6-07df86d73182 {"md5": "c4bfb6efdaa63260836fad77fdf433a6", "pid": "034308695", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Microordinateurs"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Amiga (ordinateur)"}, {"authorized_access_point": "CBM (ordinateur)"}, {"authorized_access_point": "Commodore 64 (ordinateur)"}, {"authorized_access_point": "Commodore 128 (ordinateur)"}, {"authorized_access_point": "PET (ordinateur)"}, {"authorized_access_point": "VIC 20 (ordinateur)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034308695", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb125076777", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12507677", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "authorized_access_point": "Commodore (ordinateurs)"} 1 +2024-09-11 09:08:21.088907 2024-09-11 09:08:21.088912 2edd3f08-d064-4a8d-b02f-d91cdee4498f {"md5": "294adb4f7b86056fb89bd0eb619eae8b", "pid": "034342230", "note": [{"label": ["Vocabulaire de l'analyse littéraire / D. Bergez, V. Géraud, J.-J. Robrieux, 1994", "Dict. des termes littéraires, 2001", "Dict. du littéraire / P. Aron, D. Saint-Jacques, A. Viala, 2002", "Dict. des termes littéraires, 2005"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature - Esthétique"}], "related": [{"authorized_access_point": "Polyphonie (littérature)"}, {"authorized_access_point": "Carnavalesque"}, {"authorized_access_point": "Dialogue (littérature)"}, {"authorized_access_point": "Intertextualité"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00009821", "source": "LCSH"}], "authorized_access_point": "Dialogism (Literary analysis)"}, {"source": "RVMLaval", "authorized_access_point": "Dialogisme"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034342230", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12510697c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12510697", "source": "BNF"}], "classification": [{"name": "Poésie", "type": "bf:ClassificationDdc", "classificationPortion": "801"}], "authorized_access_point": "Dialogisme"} 1 +2024-09-11 09:08:21.144575 2024-09-11 09:08:21.144578 0b481f15-dde6-40c9-a261-cb32d8890930 {"md5": "28eec5e36ee58ae05cc42df8058cce37", "pid": "034566228", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Philosophie - Chine - Histoire"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85100890", "source": "LCSH"}], "authorized_access_point": "Philosophy, Chinese--1644-1912"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034566228", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12530940n", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12530940", "source": "BNF"}], "classification": [{"name": "Philosophie", "type": "bf:ClassificationDdc", "classificationPortion": "100"}], "authorized_access_point": "Philosophie - Chine - 1644-1912"} 1 +2024-09-11 09:08:21.19945 2024-09-11 09:08:21.199453 8606318f-c419-4476-98d5-8a57b60370a5 {"md5": "c4d6ad8217b5e14d0cce2969cec7f05c", "pid": "034591966", "note": [{"label": ["Encycl. universalis (art. : Langages de programmation) - http://www.universalis-edu.com (2011-11-04)", "Encycl. de l'informatique et des systèmes d'information, 2006", "Langage Java / P. Bellot, C. Matiachoff [in] Techniques de l'ingénieur, 1998, H3088", "TermSciences - http://www.termsciences.fr (2011-11-04)", "The encycl. of computer languages - http://hopl.murdoch.edu.au (2011-11-04)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Langages de programmation"}], "related": [{"authorized_access_point": "Akka (plate-forme informatique)"}, {"authorized_access_point": "BlueJ (environnement de développement d'applications)"}, {"authorized_access_point": "Scala (langage de programmation)"}, {"authorized_access_point": "Hadoop (plate-forme informatique)"}, {"authorized_access_point": "OSGi (plate-forme informatique)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Java Persistence API"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034591966", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12533207m", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12533207", "source": "BNF"}], "classification": [{"name": "Mathématiques", "type": "bf:ClassificationDdc", "classificationPortion": "510"}, {"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "authorized_access_point": "Java (langage de programmation)"} 1 +2024-09-11 09:08:21.258651 2024-09-11 09:08:21.258655 048c9445-06fd-4370-9100-5972bc75c687 {"md5": "7668aa6f04bb336efd49e36ea0447dd0", "pid": "034623574", "note": [{"label": ["L'aménagement linguistique dans le monde - http://www.tlfq.ulaval.ca (2008-11-26)", "Ethnologue (15th ed.) - http://www.ethnologue.com (2008-11-26)"], "noteType": "dataSource"}, {"label": ["Les langues du monde / M. Sala, I. Vintila-Radulescu, 1984. - Les langues dans le monde ancien et moderne / J. Perrot, 1981"], "noteType": "dataNotFound"}, {"label": ["Langue de Nouvelle-Calédonie (France)", "L'adjectif de langue correspondant est \\"tayo\\". Il est invariable"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Langues créoles françaises"}], "related": [{"authorized_access_point": "Langues mélanésiennes"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Tayo (langue)"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh95001065", "source": "LCSH"}], "authorized_access_point": "Tayo language"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034623574", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12536022p", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12536022", "source": "BNF"}], "classification": [{"name": "Langues", "type": "bf:ClassificationDdc", "classificationPortion": "400"}], "variant_access_point": ["Caldoche (langue)", "Kaldosh (langue)", "Langues créoles françaises - Nouvelle-Calédonie", "Patois de St-Louis (langue)"], "authorized_access_point": "Tayo (langue)"} 1 +2024-09-11 09:08:21.687998 2024-09-11 09:08:21.688003 abe820f0-62e3-42c0-8e05-f2494ec4a068 {"md5": "a325964297b402b36678a2edab7b6cdc", "pid": "034885420", "note": [{"label": ["Laval RVM (en ligne), 2005-05-24"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "E-justice"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034885420", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb125590502", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12559050", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}], "authorized_access_point": "Justice - Administration - Logiciels"} 1 +2024-09-11 09:08:21.316558 2024-09-11 09:08:21.316563 eda8242c-2685-4f11-8245-266ae804b91f {"md5": "dfe72b87f92f90e9fd70b4766dbcc195", "pid": "034679391", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Informatique - Gestion"}, {"authorized_access_point": "Protection de l'information (informatique)"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Informatique -- Procédures de secours"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh89004334", "source": "LCSH"}], "authorized_access_point": "Electronic data processing--Backup processing alternatives"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034679391", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12540873j", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12540873", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Copies de sauvegarde (informatique)", "Copies de secours (informatique)", "Sauvegardes (informatique)", "Traitement déporté (informatique)", "Copies de sécurité (informatique)", "Informatique - Reprises en secours", "Informatique - Sauvegardes", "Informatique - Traitement déporté", "Mesures de sauvegarde (informatique)", "Procédures de sauvegarde (informatique)", "Procédures de secours (informatique)", "Reprises en secours (informatique)"], "authorized_access_point": "Informatique - Procédures de secours"} 1 +2024-09-11 09:08:21.376469 2024-09-11 09:08:21.376473 6f4fe56a-f46d-4982-9057-73eb16e22b95 {"md5": "84eac5467af05e268121a351d9cee1a3", "pid": "034705384", "note": [{"label": ["Année 1994 dans \\"Le Monde", "Quid 1996 (p. 1161)", "Monde, 1997-02-24"], "noteType": "dataSource"}, {"label": ["Affaire consécutive à la faillite en 1989 de la société d'aménagement immobilier Whitewater Development, créée en 1978 dans l'Arkansas par les époux Clinton en copropriété avec des amis ; révélé en mars 1992 par le New York Times, le scandale du projet immobilier Whitewater devient alors une affaire politico-judiciaire qui a entraîné la condamnation de plusieurs proches des Clinton et pourrait connaître son dénouement en 1997-1998"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Politique et gouvernement - États-Unis - 1993-2001"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034705384", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12543176c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12543176", "source": "BNF"}], "variant_access_point": ["Affaire Whitewater (1992-....)"], "authorized_access_point": "Whitewater, Affaire (1992-....)"} 1 +2024-09-11 09:08:21.436985 2024-09-11 09:08:21.43699 de3878de-47b1-4b77-96a7-15f3401cd2a2 {"md5": "27267f75ad0e525f0b5a814569ea5fd9", "pid": "03472690X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Serveurs (informatique)"}, {"authorized_access_point": "Web"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03472690X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12545061j", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12545061", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["MSN (serveur)"], "authorized_access_point": "Microsoft Network (serveur)"} 1 +2024-09-11 09:08:21.496446 2024-09-11 09:08:21.496451 8f479e5c-48ff-4c3a-b8b8-d9af56a9eb78 {"md5": "ce3fafe09df93a9de04e1fc157fce8f6", "pid": "034766995", "note": [{"label": ["LCNA (en ligne) 2004-09-20 : Microsoft BackOffice"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Architecture client-serveur (informatique)"}, {"authorized_access_point": "Gestionnaires de réseaux (logiciels)"}], "related": [{"authorized_access_point": "SNA (architecture des réseaux d'ordinateurs)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034766995", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb125486790", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12548679", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Back Office (logiciels)", "BackOffice (logiciels)", "Microsoft Back Office (logiciels)"], "authorized_access_point": "Microsoft BackOffice (logiciels)"} 1 +2024-09-11 09:08:21.552981 2024-09-11 09:08:21.552985 088e4f25-c191-4b26-a514-dae54b0ddbd9 {"md5": "41969421ea6c6e1e7a3b3cf076baa287", "pid": "034781897", "note": [{"label": ["Laval RVM (en ligne), 2001-03-22"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bases de données relationnelles"}, {"authorized_access_point": "Langages de programmation"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034781897", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb125499792", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12549979", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Jet (langage de programmation)", "Microsoft Jet database engine (langage de programmation)", "Microsoft Jet DB engine (langage de programmation)", "Microsoft Jet engine (langage de programmation)"], "authorized_access_point": "Microsoft Jet (langage de programmation)"} 1 +2024-09-11 09:08:21.618373 2024-09-11 09:08:21.618377 7ff07024-94f7-4573-b1f5-fc242192d7ab {"md5": "2985f0c6dc49ecbaa4ffd274c5450015", "pid": "034857923", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Droit d'auteur - Domaine public"}, {"authorized_access_point": "Droit d'auteur et informatique"}], "related": [{"authorized_access_point": "Droit d'auteur - Logiciels"}, {"authorized_access_point": "Logiciels gratuits"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh91002599", "source": "LCSH"}], "authorized_access_point": "Shareware (Computer software)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034857923", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb125566086", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12556608", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Contribuciels", "Contributiels", "Logiciels à contribution volontaire", "Logiciels du domaine public", "Logiciels non brevetés", "Logiciels partagés", "Logiciels publics", "Logiciels tombés dans le domaine public", "Partagiciels", "Shareware (logiciels)"], "authorized_access_point": "Logiciels contributifs"} 1 +2024-09-11 09:08:21.744532 2024-09-11 09:08:21.744537 c2320b15-4f84-4957-8419-c80665482047 {"md5": "51fc1f55646d56be7bf67d61ed98fbaa", "pid": "034892710", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Intégration de données (informatique)"}, {"authorized_access_point": "Bases de données - Conception"}, {"authorized_access_point": "Exploration de données"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Entrepôts de données"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh97003695", "source": "LCSH"}], "authorized_access_point": "Data warehousing"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034892710", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12559694b", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12559694", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Data warehouse", "Centralisation de données", "Entreposage de données", "Magasins de données"], "authorized_access_point": "Entrepôts de données"} 1 +2024-09-11 09:08:21.804909 2024-09-11 09:08:21.804914 547d2152-e898-4adb-92a6-55d9896802bc {"md5": "06d05db1e469e596611e71ef246e02da", "pid": "034960848", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Logiciels - Maintenance"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Gestion de configurations des logiciels"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh91002171", "source": "LCSH"}], "authorized_access_point": "Software configuration management"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034960848", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12565703q", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12565703", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Logiciels - Configuration -- Gestion", "Logiciels - Gestion de configuration", "Gestion de configuration logiciel"], "authorized_access_point": "Gestion de configurations des logiciels"} 1 +2024-09-11 09:08:21.864117 2024-09-11 09:08:21.86412 cbc31745-7220-452d-a3be-0effdf352f48 {"md5": "85594be59908671abf387f6ae27e8208", "pid": "035061308", "note": [{"label": ["Convergence et diversité à l'heure de la mondialisation / Économica, 1997"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Développement économique"}, {"authorized_access_point": "Économie ouverte"}], "related": [{"authorized_access_point": "Aide économique"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035061308", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12574241v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12574241", "source": "BNF"}], "variant_access_point": ["Convergence des économies", "Convergence économique", "Harmonisation économique", "Productivité - Convergence", "Rapprochement (économie politique)"], "authorized_access_point": "Convergence (économie politique)"} 1 +2024-09-11 09:08:21.924644 2024-09-11 09:08:21.924648 e0e70de5-f278-4439-848f-a30cc5ae3ef7 {"md5": "44b6a18703cc487e9713642d4cdd9775", "pid": "035095679", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Langages de script (informatique)"}, {"authorized_access_point": "Interpréteurs (logiciels)"}, {"authorized_access_point": "Microsoft Visual BASIC (langage de programmation)"}], "related": [{"authorized_access_point": "HTML (langage de balisage)"}, {"authorized_access_point": "Sites Web - Conception"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035095679", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb131666483", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13166648", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["VB Script (langage de programmation)", "Microsoft Visual BASIC Scripting Edition (langage de programmation)"], "authorized_access_point": "VBScript (langage de programmation)"} 1 +2024-09-11 09:08:21.988172 2024-09-11 09:08:21.988176 90d6ba54-ac4a-4252-bbe0-43ac7ceb83d8 {"md5": "f1dfb4bf5aa3aa58b5a63bd1ee1c7308", "pid": "035167734", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bases de données - Interrogation"}, {"authorized_access_point": "Recherche sur Internet"}, {"authorized_access_point": "Web"}, {"authorized_access_point": "Moteurs de recherche"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Qwant"}, {"authorized_access_point": "Google"}, {"authorized_access_point": "FUSIN (système informatique)"}, {"authorized_access_point": "Portails Internet"}, {"authorized_access_point": "Sites Web - Référencement"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Moteurs de recherche sur Internet"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh97007463", "source": "LCSH"}], "authorized_access_point": "Web search engines"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035167734", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb131716541", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13171654", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Annuaires électroniques (Internet)", "Index électroniques (Internet)", "Internet - Moteurs de recherche", "Internet - Outils de recherche", "Outils de recherche sur Internet", "Web - Moteurs de recherche", "Web - Outils de recherche"], "authorized_access_point": "Moteurs de recherche sur Internet"} 1 +2024-09-11 09:08:34.963875 2024-09-11 09:08:34.963878 9dc457c3-9655-4935-9ca9-977f48fddc61 {"md5": "e84a690ed4c98a8252d9aa14998f833a", "pid": "273372785", "note": [{"label": ["Bois d'aviation / J.-M. Ballu, 2013", "Notice technique de l'hélice Chauvière, type 351 pour avion Morane 406 à moteur Hispano 12 Y 31 (liaison à cannelures), 1939"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hélices (aéronautique)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/273372785", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18113058p", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18113058", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "272965758"}, "classification": [{"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "authorized_access_point": "Chauvière (hélices aériennes)"} 1 +2024-09-11 09:08:22.052838 2024-09-11 09:08:22.052842 1ca98b06-e86f-4ba6-929e-eef422d8d7ee {"md5": "84dbef8285748075ddc581317d811ae8", "pid": "035198222", "note": [{"label": ["Le data warehouse : le data mining / J.-M. Franco..., 1997"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bases de données - Interrogation"}], "related": [{"authorized_access_point": "Analyse des données symboliques"}, {"authorized_access_point": "Entrepôts de données"}, {"authorized_access_point": "Modélisation prédictive"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Fouille de règles d'associations"}, {"authorized_access_point": "Systèmes de recommandation (informatique)"}, {"authorized_access_point": "Web usage mining"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh97002073", "source": "LCSH"}], "authorized_access_point": "Data mining"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035198222", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13173501n", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13173501", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Data mining", "Datamining", "Exploration de données (informatique)", "Extraction de données", "Forage de données", "Fouille de données", "Fouille de texte", "Prospection de données", "Text mining"], "authorized_access_point": "Exploration de données"} 1 +2024-09-11 09:08:22.117429 2024-09-11 09:08:22.117434 99ead225-320a-4c9b-b21e-d64baeefe81c {"md5": "9e6979fa568b890b3ddc3bc58fa339aa", "pid": "035260521", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Langages de balisage"}], "related": [{"authorized_access_point": "XQuery (langage de programmation)"}, {"authorized_access_point": "Ressource Description Framework (informatique)"}, {"authorized_access_point": "SOA"}, {"authorized_access_point": "XUL (langage de balisage)"}, {"authorized_access_point": "SVG (langage de balisage)"}, {"authorized_access_point": "XSL (langage de balisage)"}, {"authorized_access_point": "SOAP (protocole de réseaux d'ordinateurs)"}, {"authorized_access_point": "SGML (langage de balisage)"}, {"authorized_access_point": "WML (langage de balisage)"}, {"authorized_access_point": "XSLT (langage de programmation)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "SCXML (langage de balisage)"}, {"authorized_access_point": "ebXML (langage de balisage)"}, {"authorized_access_point": "Atom (XML)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035260521", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb131774360", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13177436", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Extendible Markup language (langage de balisage)", "eXtensible Markup language (langage de balisage)", "Langage de balisage extensible"], "authorized_access_point": "XML (langage de balisage)"} 1 +2024-09-11 09:08:22.179247 2024-09-11 09:08:22.179251 93df05e3-0253-4633-9639-0b0a95f967c7 {"md5": "479c5fc237047f79260f50ce5112687f", "pid": "035461152", "note": [{"label": ["Téléphonie Internet / F. Toutain [in] Techniques de l'ingénieur,2000 ,TE7510", "L'impact de la téléphonie Internet sur l'industrie des télécommunications / C. Sajo, 1999 [thèse]", "Voix sur IP : Internet, fixe et mobile : état de l'art, enjeux et perspectives / J. Pons [in] Techniques de l'ingénieur, 2009, TE7532"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Internet"}, {"authorized_access_point": "Téléphone"}], "related": [{"authorized_access_point": "IMS (protocole de réseaux d'ordinateurs)"}, {"authorized_access_point": "Modems ADSL"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "SIP (protocole de réseaux d'ordinateurs)"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Téléphonie Internet"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh98004350", "source": "LCSH"}], "authorized_access_point": "Internet telephony"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035461152", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb131909421", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13190942", "source": "BNF"}], "classification": [{"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}, {"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Cyberphone", "Téléphone Internet", "Voix sur IP", "Téléphone par Internet", "Téléphone sur Internet", "Téléphonie IP", "Téléphonie par Internet", "Téléphonie sur Internet", "Téléphonie via Internet", "Voice over IP", "VOIP"], "authorized_access_point": "Téléphonie Internet"} 1 +2024-09-11 09:08:22.240031 2024-09-11 09:08:22.240035 8d2d7c54-8474-4911-9c2a-436042244255 {"md5": "54bf2ab618c2866d9227904e43e815f8", "pid": "035486686", "note": [{"label": ["Quid 1998", "Wikipédia - http://fr.wikipedia.org (2008-04-09)"], "noteType": "dataSource"}, {"label": ["Élection présidentielle du 2 novembre 1948 : Harry S. Truman (démocrate) est élu avec 49,6% des voix contre Thomas E. Dewey (républicain, 45,1%)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Présidents - États-Unis - Élection"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2010106959", "source": "LCSH"}], "authorized_access_point": "Presidents--United States--Election--1948"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035486686", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13192308p", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13192308", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "950"}], "authorized_access_point": "Présidents - États-Unis - Élection (1948)"} 1 +2024-09-11 09:08:22.665411 2024-09-11 09:08:22.665416 215bf8cb-1e57-447e-bdc2-a368f6c6771a {"md5": "d4b345caf2b4d52668e640bda0e8863a", "pid": "050124315", "note": [{"label": ["GLU", "Mourre"], "noteType": "dataSource"}, {"label": ["Nom donné à un schisme qui se produisit dans l'ouest de la France au moment du Concordat de 1801 : l'une des clauses du Concordat était la démission de tous les évêques de l'ancienne Église de France ; les évêques non démissionnaires regroupèrent autour d'eux les communautés catholiques anti-concordataires qui donnèrent naissance à la Petite Église"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Église catholique - France"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85078480", "source": "LCSH"}], "authorized_access_point": "Louisets"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050124315", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12650661c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12650661", "source": "BNF"}], "authorized_access_point": "Petite Église"} 1 +2024-09-11 09:08:22.299135 2024-09-11 09:08:22.299138 3548849a-4028-448e-a68a-097675f7b6cd {"md5": "caf7786845a48e1740dd328183fdfbad", "pid": "035527250", "note": [{"label": ["Grand Larousse universel", "Dict. encyclopédique d'histoire / M. Mourre, 1996"], "noteType": "dataSource"}, {"label": ["1er-2 août 1798 : victoire de la flotte britannique (Nelson) sur la flotte française (Brueys d'Aigalliers, qui fut tué) dans la baie d'Aboukir (Égypte)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Guerre de la deuxième coalition (1798-1801) - Opérations militaires - Égypte"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85091947", "source": "LCSH"}], "authorized_access_point": "Nile, Battle of the, Egypt, 1798"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035527250", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13194746t", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13194746", "source": "BNF"}], "classification": [{"name": "Histoire du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "950"}], "variant_access_point": ["Aboukir, Bataille d' (1798)", "1re bataille d'Aboukir (1798)", "Nil, Bataille du (1798)", "Première bataille d'Aboukir (1798)"], "authorized_access_point": "Bataille d'Aboukir (1798)"} 1 +2024-09-11 09:08:22.357767 2024-09-11 09:08:22.357771 8f542fe9-f3c4-412b-ad25-184c4b4d223c {"md5": "d1ae0e11d0c7ef7a189278f3f14c6013", "pid": "035621664", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Informatique"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Programmation concurrente"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Fonctionnement multitâche"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh92001010", "source": "LCSH"}], "authorized_access_point": "Multitasking (Computer science)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035621664", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13325133z", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13325133", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Multitâche, Fonctionnement", "Traitement multitâche"], "authorized_access_point": "Fonctionnement multitâche"} 1 +2024-09-11 09:08:22.41734 2024-09-11 09:08:22.417346 afc394fc-87df-4886-ad22-ecefebb23c4e {"md5": "93717e9b30d7edfb0a31bcc1d8832ff0", "pid": "035634847", "note": [{"label": ["Grand Larousse universel", "Dict. encyclopédique d'histoire / M. Mourre, 1986", "Holidays and festivals index / H. Henderson, B. Puckett, 1995", "Celebrating the fourth : Independence Day and the rites of Nationalism in the Early Republic / L. Travers, 1997"], "noteType": "dataSource"}, {"label": ["Fête nationale des États-Unis (4 juillet) commémorant la Déclaration d'Indépendance (1776)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fêtes - Etats-Unis"}, {"authorized_access_point": "Fêtes nationales"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85051103", "source": "LCSH"}], "authorized_access_point": "Fourth of July celebrations"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035634847", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13325977s", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13325977", "source": "BNF"}], "classification": [{"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "variant_access_point": ["4 juillet (fête nationale américaine)", "Anniversaire de l'Indépendance américaine", "Fête de l'Indépendance américaine", "Fête nationale américaine", "Fourth of July (fête nationale américaine)", "Jour de l'indépendance (fête nationale américaine)", "July 4th (fête nationale américaine)", "Quatre juillet (fête nationale américaine)"], "authorized_access_point": "Independence Day (fête nationale américaine)"} 1 +2024-09-11 09:08:22.481799 2024-09-11 09:08:22.481802 45d492eb-8b8c-427e-b2ca-0b3f64705a9f {"md5": "e6c1bb45a76c06e87fea3a36bd13dd39", "pid": "035650532", "note": [{"label": ["Linux et XFree86 / E. Georgescu, 1997"], "noteType": "dataSource"}, {"label": ["LCSH (en ligne), 1998-09-03"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "X Window System (système informatique)"}, {"authorized_access_point": "Linux (logiciels)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035650532", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb133270366", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13327036", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["XFree 86 (système informatique)"], "authorized_access_point": "XFree86 (système informatique)"} 1 +2024-09-11 09:08:22.539895 2024-09-11 09:08:22.539901 4e7af043-e082-4599-885f-bd1b36546e47 {"md5": "d45d0e7d686f0d1c8badcd6113da2e07", "pid": "035658622", "note": [{"label": ["LCSH (en ligne), 1998-09-07"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Didacticiels"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035658622", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13327542h", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13327542", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}, {"name": "Mathématiques", "type": "bf:ClassificationDdc", "classificationPortion": "510"}], "variant_access_point": ["Géométrie - Étude et enseignement -- Logiciels"], "authorized_access_point": "Géométrie - Didacticiels"} 1 +2024-09-11 09:08:22.60062 2024-09-11 09:08:22.600622 866cf862-743a-4bfe-8970-49deb6dc06b6 {"md5": "bea101c0a4995826368d49b683cd703b", "pid": "035724099", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ordinateurs de poche"}], "related": [{"authorized_access_point": "Palm (ordinateur)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035724099", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13332134s", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13332134", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "authorized_access_point": "PalmPilot (ordinateur)"} 1 +2024-09-11 09:08:22.735575 2024-09-11 09:08:22.735578 8d6e8b54-7acb-4746-bf80-fc82e176b8a9 {"md5": "7ec5d99acc63919313ddb6f2e7af1261", "pid": "050186647", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Pilotes de périphérique (logiciels)"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "DOS, Pilotes de périphérique pour (logiciels)"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh90004446", "source": "LCSH"}], "authorized_access_point": "DOS device drivers (Computer programs)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050186647", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb133408511", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13340851", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Pilotes de périphérique pour DOS (logiciels)"], "authorized_access_point": "DOS, Pilotes de périphérique pour (logiciels)"} 1 +2024-09-11 09:08:22.794781 2024-09-11 09:08:22.794784 478a5e19-2532-4a6b-8152-231442f8b70f {"md5": "4d0ee0a21fdda16c55d37910971e0a09", "pid": "050220284", "note": [{"label": ["LCNA (en ligne) 2004-09-20 : Active server pages"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Microsoft Windows DNA"}, {"authorized_access_point": "Serveurs Web"}, {"authorized_access_point": "Sites Web - Systèmes-auteur"}], "related": [{"authorized_access_point": "ASP.NET (langage de programmation)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050220284", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13506900c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13506900", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["ASP", "Microsoft Active Server Pages"], "authorized_access_point": "Active Server Pages"} 1 +2024-09-11 09:08:22.857958 2024-09-11 09:08:22.857962 64394546-9b50-4556-81cd-6f2b34060fd0 {"md5": "cec8f09ad757fe93469ec5771990f4b8", "pid": "050366157", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Église et État - France - Histoire"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Séparation des Églises et de l'État (France ; 1905-1906)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2009119658", "source": "LCSH"}], "authorized_access_point": "Church and state--France--History--20th century"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050366157", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13511352z", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13511352", "source": "BNF"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "variant_access_point": ["Église et État - France - 20e siècle"], "authorized_access_point": "Église et État - France - 1905-...."} 1 +2024-09-11 09:08:22.920079 2024-09-11 09:08:22.920082 c71780b0-4ecb-46a4-935b-35c912efe73f {"md5": "ffea02a7ee64b395c3963a5d0033b1b1", "pid": "05041870X", "note": [{"label": ["Grand Larousse universel", "Dict. encyclopédique d'histoire / M. Mourre, 1996"], "noteType": "dataSource"}, {"label": ["7 octobre 1879 : alliance conclue à Vienne entre l'Allemagne et l'Autriche-Hongrie"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Relations extérieures - Autriche-Hongrie"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85039839", "source": "LCSH"}], "authorized_access_point": "Dual Alliance, 1879"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/05041870X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13512801p", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13512801", "source": "BNF"}], "classification": [{"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Alliance, Double (1879)", "Double Alliance (1879)", "Zweibund (1879)"], "authorized_access_point": "Duplice (1879)"} 1 +2024-09-11 09:08:22.977415 2024-09-11 09:08:22.977419 ccf0636a-b9fd-4ff3-9b7b-71f789c4143c {"md5": "96033410f7171cf0c053dc81e72c8d35", "pid": "050516760", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050516760", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13533849b", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13533849", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Histoire", "type": "bf:ClassificationDdc", "classificationPortion": "900"}], "authorized_access_point": "Généalogie - Logiciels"} 1 +2024-09-11 09:08:23.039219 2024-09-11 09:08:23.039223 051cc6dc-096d-4e9f-9b72-9bbdc8612aa5 {"md5": "80abdbeb8702acc09d2ce3b1a16d09f5", "pid": "050518526", "note": [{"label": ["Encycl. universalis (art. : Arenas, Reinaldo (1943-1990)) - http://www.universalis.fr (2017-06-08)", "Wikipédia - http://fr.wikipedia.org (2017-06-08)", "Castro, l'infidèle / S. Raffy, 2003 (p. 499-501)", "La génération des Cubains de Mariel et leur presse littéraire aux États-Unis / L. Hasson [in] America : cahiers du Criccal, 1986, 1 (p. 117-130)", "L'Amérique latine de 1945 à nos jours / P. Riado, 1992 (p. 378-379) : exode des Marielitos", "Les quatre saisons de Fidel Castro / J.-P. Clerc, 1996 (p. 301-302) : \\"crise de Mariel", "Encycl. of Latin American history and culture / J. Kinsbrunner, 2008 (art. : Cuba : since 1959) : Mariel boatlift"], "noteType": "dataSource"}, {"label": ["15 avril-31 octobre 1980 : à la suite d'un afflux massif de réfugiés cubains à l'ambassade du Pérou à La Havane, 125.000 Cubains (\\"Marielitos\\") sont autorisés à émigrer en Floride par le port de Mariel"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Cuba - 1959-...."}, {"authorized_access_point": "États-Unis - 1969-1981"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050518526", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb135340392", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13534039", "source": "BNF"}], "classification": [{"name": "Histoire du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "950"}], "variant_access_point": ["Affaire de Mariel (1980)", "Crise de Mariel (1980)", "Exode des Marielitos (1980)", "Mariel, Exode de (1980)", "Marielitos, Exode des (1980)"], "authorized_access_point": "Exode de Mariel (1980)"} 1 +2024-09-11 09:08:23.104217 2024-09-11 09:08:23.104221 505930e6-8458-4c86-bca0-9b95152e7b1b {"md5": "705985faf1557042304ca9e38992f4f2", "pid": "050534882", "note": [{"label": ["Wikipédia - https://fr.wikipedia.org (2017-10-20)", "Dict. encyclopédique du bouddhisme / P. Cornu, 2001", "Dict. de la sagesse orientale : bouddhisme, hindouisme, taoïsme, zen, 1989 : Lamdre", "The Sakya School of Tibetan Buddhism / Dhongthog Rinpoche, 2016 : Lamdre", "BNF Service indien"], "noteType": "dataSource"}, {"label": ["Littéralement : \\"Voie, but\\". Doctrine du bouddhisme Vajrayāna, fondée par Virūpa et transmise par l'école Sa-skya-pa"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bouddhisme - Doctrines"}], "related": [{"authorized_access_point": "Sa-skya-pa"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh 85074158", "source": "LCSH"}], "authorized_access_point": "Lam-ʾbras (Sa-skya-pa)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050534882", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb135355715", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13535571", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Lam-'bras", "Lam Dre", "Lamdre"], "authorized_access_point": "Lamdré"} 1 +2024-09-11 09:08:23.163306 2024-09-11 09:08:23.163308 c25f348e-4327-43c9-98fe-4f2a3dd13e49 {"md5": "8d0faeac6b12d2a2b4e64aede6fa2bac", "pid": "05056479X", "note": [{"label": ["The Oregon Trail / F. Parkman, 1994 (p. 458)", "Kearny's Plains Reconnaissance, 1845 - http://www.topogs.org/Kearny.htm (2017-06-16)"], "noteType": "dataSource"}, {"label": ["Expédition commandée par le colonel Stephen W. Kearny le long de l'Oregon Trail jusqu'à South Pass (Wyo.), qui obtint des Sioux une garantie de passage pour les immigrants vers l'Oregon, et cartographia la région"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "États-Unis (ouest) - Jusqu'à 1848"}], "related": [{"authorized_access_point": "Oregon Trail (États-Unis)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/05056479X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12649132c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12649132", "source": "BNF"}], "classification": [{"name": "Géographie du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "915"}, {"name": "Histoire du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "950"}], "variant_access_point": ["Kearny, Expédition de (1845)"], "authorized_access_point": "Expédition de Kearny (1845)"} 1 +2024-09-11 09:08:23.219873 2024-09-11 09:08:23.219876 5a9ff282-db54-4b2d-bacc-8bf81106595b {"md5": "fd6a1614c191cb0c5b805a2f32d3b14b", "pid": "050582453", "note": [{"label": ["Grand Larousse universel", "Petit Robert 1"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Orientalistes"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85122928", "source": "LCSH"}], "authorized_access_point": "Sinologists"}, {"source": "RVMLaval", "authorized_access_point": "Sinologues"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050582453", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12650586f", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12650586", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Histoire du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "950"}], "variant_access_point": ["Sinisants", "Spécialistes de la Chine"], "authorized_access_point": "Sinologues"} 1 +2024-09-11 09:08:23.281222 2024-09-11 09:08:23.281226 3e577a8b-e446-4f38-a340-15484a464d56 {"md5": "742d00956ec29114facf53988f974230", "pid": "050602195", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Civilisation - Japon"}, {"authorized_access_point": "Mythologie d'Asie orientale"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Dieux japonais"}, {"authorized_access_point": "Tengu (mythologie)"}, {"authorized_access_point": "Yōkai"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85089404", "source": "LCSH"}], "authorized_access_point": "Mythology, Japanese"}, {"source": "RVMLaval", "authorized_access_point": "Mythologie japonaise"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050602195", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12652113m", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12652113", "source": "BNF"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "authorized_access_point": "Mythologie japonaise"} 1 +2024-09-11 09:08:23.338318 2024-09-11 09:08:23.338322 aca9caa9-bbe5-4246-8a5b-228313b57278 {"md5": "6b33f4f9742dfc24684516f9f764d327", "pid": "050627953", "note": [{"label": ["Propagande de la Russie soviétique, puis de l'URSS (1917-1991)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Politique et gouvernement - URSS"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh89002047", "source": "LCSH"}], "authorized_access_point": "Propaganda, Soviet"}, {"source": "RVMLaval", "authorized_access_point": "Propagande soviétique"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050627953", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12654249c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12654249", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "authorized_access_point": "Propagande soviétique"} 1 +2024-09-11 09:08:23.398388 2024-09-11 09:08:23.398391 453c26e0-9a32-43c4-bd06-45aaf68203c0 {"md5": "47c4d828d552a1fdf254f342477ee82f", "pid": "050702858", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Systèmes, Conception de"}], "related": [{"authorized_access_point": "Logiciels - Développement"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "AltaRica (méthode formelle)"}, {"authorized_access_point": "B (méthode formelle)"}, {"authorized_access_point": "Z (méthode formelle)"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Méthodes formelles (informatique)"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99003622", "source": "LCSH"}], "authorized_access_point": "Formal methods (Computer science)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050702858", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13539618z", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13539618", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "authorized_access_point": "Méthodes formelles (informatique)"} 1 +2024-09-11 09:08:25.119671 2024-09-11 09:08:25.119675 cd762e75-85a7-4ce6-be43-1519b3175534 {"md5": "d18a574ec953ee6d6699d3f7e2b873a7", "pid": "083972684", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Composition musicale assistée par ordinateur"}, {"authorized_access_point": "Musique par ordinateur - Logiciels"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083972684", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb145986121", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF14598612", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "variant_access_point": ["Logiciels de composition musicale"], "authorized_access_point": "Composition musicale assistée par ordinateur - Logiciels"} 1 +2024-09-11 09:08:23.455849 2024-09-11 09:08:23.455852 1a66d9c6-dc92-4a1b-8be8-82bf01e67c8d {"md5": "096e042bace2ef488f7f8e83fd164b46", "pid": "050764861", "note": [{"label": ["Programmation MTS et MSMQ avec Visual Basic et ASP / Alex Homer..., 1999"], "noteType": "dataSource"}, {"label": ["LCNA (en ligne), 2000-03-01"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sites Web - Systèmes-auteur"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Active Server Pages"}, {"authorized_access_point": "COM (architecture des ordinateurs)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050764861", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13544731f", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13544731", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["DNA", "Windows DNA"], "authorized_access_point": "Microsoft Windows DNA"} 1 +2024-09-11 09:08:23.51622 2024-09-11 09:08:23.516225 5d5d5404-d693-411b-bb30-f66f3f647b60 {"md5": "ca5dae4a99dce00cc656894fea876e05", "pid": "050773313", "note": [{"label": ["LCSH (en ligne), 2000-03-08"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Linux, Pilotes de périphérique pour (logiciels)"}, {"authorized_access_point": "XFree86 (système informatique)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050773313", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb135454237", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13545423", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "authorized_access_point": "Linux (logiciels)"} 1 +2024-09-11 09:08:23.578979 2024-09-11 09:08:23.578984 a8af5784-cd83-4333-8599-98027779f0ab {"md5": "b9451672ea725480444efe58899e9e13", "pid": "050784005", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050784005", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13546289v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13546289", "source": "BNF"}], "classification": [{"name": "Histoire du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "950"}], "variant_access_point": ["Conflit israélo-arabe - Processus de paix (1993-....)", "Oslo, Processus d' (1993-....)", "Processus d'Oslo (1993-....)", "Processus de paix israélo-arabe", "Processus de paix israélo-palestinien"], "authorized_access_point": "Conflit israélo-arabe - 1993-.... - Paix"} 1 +2024-09-11 09:08:23.653443 2024-09-11 09:08:23.65345 ef030d05-8537-43c9-8988-ce81dce49009 {"md5": "9c6b398da4cc2c123822e8e17cd05dc9", "pid": "050808583", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Compilateurs de silicium"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Synthèse de haut niveau (informatique)"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Circuits intégrés -- Conception assistée par ordinateur"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85067118", "source": "LCSH"}], "authorized_access_point": "Integrated circuits--Design and construction"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050808583", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb135547638", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13554763", "source": "BNF"}], "classification": [{"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["CAO électronique", "EDA"], "authorized_access_point": "Circuits intégrés - Conception assistée par ordinateur"} 1 +2024-09-11 09:08:23.706137 2024-09-11 09:08:23.70614 76605374-4260-4857-bb81-5c0c1d1218f8 {"md5": "51e032f045ffa1039bdca19bbf27fb2e", "pid": "050827405", "note": [{"label": ["Dict. des systèmes d'information / Robert Reix, 1999", "Grand dict. Marabout de l'informatique et de l'Internet / Virga, 1996"], "noteType": "dataSource"}, {"label": ["Laval RVM (en ligne), 2000-04-27"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fichiers (informatique) - Organisation"}], "related": [{"authorized_access_point": "Adobe Acrobat (logiciels)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050827405", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb135554928", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13555492", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Portable Document Format"], "authorized_access_point": "PDF (format)"} 1 +2024-09-11 09:08:23.761301 2024-09-11 09:08:23.761304 271dd457-ebc1-4b8c-b154-133ba713194f {"md5": "53e77232540d041d60738a2f30eb25c0", "pid": "052587207", "note": [{"label": ["Programmer avec Qt / Matthias Kalle Dalheimer, 2000"], "noteType": "dataSource"}, {"label": ["LCNA (en ligne), 2000-08-16"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Interfaces graphiques (informatique)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/052587207", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13566350h", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13566350", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "authorized_access_point": "Qt (logiciels)"} 1 +2024-09-11 09:08:23.81969 2024-09-11 09:08:23.819694 f42a9a08-f75b-4bdf-8c5a-ee7574292c7e {"md5": "54e797e99c646af8e9368bfff9c45c89", "pid": "052634833", "note": [{"label": ["Programmation Linux avec GTK+.../ David Odin, 2000"], "noteType": "dataSource"}, {"label": ["LCNA (en ligne), 2000-09-27"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Interfaces graphiques (informatique)"}], "related": [{"authorized_access_point": "GNOME"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/052634833", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb135705577", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13570557", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Gimp Toolkit"], "authorized_access_point": "GTK+"} 1 +2024-09-11 09:08:23.877854 2024-09-11 09:08:23.877859 afc48af0-855e-4515-950a-938cbfa8681d {"md5": "2d9d8132a49e97e801eb0f19cba075cb", "pid": "053469844", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "CEGAR (algorithme)"}, {"authorized_access_point": "Logiciels - Exactitude"}, {"authorized_access_point": "Logiciels - Essais"}, {"authorized_access_point": "Logiciels - Validation"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Vérification de modèles (informatique)"}, {"authorized_access_point": "Filtres (informatique)"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Logiciels -- Vérification"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85029528", "source": "LCSH"}], "authorized_access_point": "Computer programs--Verification"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85029537", "source": "LCSH"}], "authorized_access_point": "Computer software--Verification"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/053469844", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb135762613", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13576261", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Analyse dynamique (informatique)", "Analyse statique (informatique)", "Comparaisons des données", "Logiciels - Analyse statique", "Logiciels - Analyse dynamique", "Vérification des logiciels"], "authorized_access_point": "Logiciels - Vérification"} 1 +2024-09-11 09:08:23.936955 2024-09-11 09:08:23.936959 d9fc3f15-d6a7-403f-b646-4bd8df921a2b {"md5": "94244b715360190c08bd21be54b2139f", "pid": "055308600", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Animaux célèbres"}], "related": [{"authorized_access_point": "Mammouth laineux"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2002005766", "source": "LCSH"}], "authorized_access_point": "Jarkov mammoth"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/055308600", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb136060769", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13606076", "source": "BNF"}], "classification": [{"name": "Paléontologie", "type": "bf:ClassificationDdc", "classificationPortion": "560"}, {"name": "Zoologie", "type": "bf:ClassificationDdc", "classificationPortion": "590"}], "variant_access_point": ["Jarkov, Mammouth", "Mammouth Jarkov"], "authorized_access_point": "Jarkov (mammouth)"} 1 +2024-09-11 09:08:23.999651 2024-09-11 09:08:23.999656 4711e5ed-e903-4f4a-b407-d3260924977d {"md5": "7842508ba473ed71b023f491ab5f32e5", "pid": "059302208", "note": [{"label": ["Grand dict. terminologique (en ligne), 2001-07-10"], "noteType": "dataSource"}, {"label": ["Grand dict. Marabout de l'informatique et de l'Internet / Virga, 1997 (Art : Hébergement de serveur)"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Fournisseurs de services Internet"}, {"authorized_access_point": "Sites Web"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Hébergement Web"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2002010032", "source": "LCSH"}], "authorized_access_point": "Web hosting"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/059302208", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13623447h", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13623447", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Hébergement (informatique)", "Hébergement de pages Web", "Hébergement de serveur", "Hébergement de sites Web", "Hébergement Internet", "Sites Web - Hébergement"], "authorized_access_point": "Hébergement Web"} 1 +2024-09-11 09:08:24.060075 2024-09-11 09:08:24.060079 ea89370f-e267-4aac-951d-a15a570bb47a {"md5": "e3255938338d451080c250331a634334", "pid": "05930278X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Art - France"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Art pompier"}, {"authorized_access_point": "Arts incohérents (mouvement artistique)"}, {"authorized_access_point": "Cénacles romantiques"}, {"authorized_access_point": "Peinture - France - 19e siècle"}, {"authorized_access_point": "Réalisme (mouvement artistique)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85007804", "source": "LCSH"}], "authorized_access_point": "Art, French--19th century"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/05930278X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13738221v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13738221", "source": "BNF"}], "classification": [{"name": "Arts (sauf littérature)", "type": "bf:ClassificationDdc", "classificationPortion": "700"}], "authorized_access_point": "Art - France - 19e siècle"} 1 +2024-09-11 09:08:24.120016 2024-09-11 09:08:24.120018 06438493-a73b-409b-9a8f-b311bcc00594 {"md5": "f5936ea57d54f8d3a6c016a508a3f0dc", "pid": "059307374", "note": [{"label": ["Rois et souverains -- Géorgie (République) ; Laval RVM, 2001-01"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh96007489", "source": "LCSH"}], "authorized_access_point": "Georgia (Republic)--Kings and rulers"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/059307374", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13744704w", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13744704", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "950"}], "authorized_access_point": "Rois et souverains - Géorgie"} 1 +2024-09-11 09:08:24.179384 2024-09-11 09:08:24.179387 40cb3919-af9a-4aba-91b7-77518fb8cb9d {"md5": "d29821559ac03f24e03b923d3e289bd8", "pid": "06082929X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Microsoft .NET"}, {"authorized_access_point": "Sites Web - Développement"}], "related": [{"authorized_access_point": "Xamarin (plate-forme informatique)"}, {"authorized_access_point": "Microsoft Windows PowerShell (langage de programmation)"}, {"authorized_access_point": "VB .NET (langage de programmation)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Microsoft Entity Framework Core (plate-forme informatique)"}, {"authorized_access_point": "Common Language Runtime (informatique)"}, {"authorized_access_point": "Microsoft Windows Presentation Foundation (plate-forme informatique)"}, {"authorized_access_point": "Microsoft Windows Workflow Foundation (plate-forme informatique)"}, {"authorized_access_point": "Microsoft Windows Communication Foundation (plate-forme informatique)"}, {"authorized_access_point": "ASP.NET (langage de programmation)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/06082929X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb14410737w", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF14410737", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": [".NET (plate-forme informatique)", ".NET Framework", "Microsoft .NET (plate-forme informatique)", "Microsoft .NET Framework", "Microsoft.NET Framework"], "authorized_access_point": "Microsoft .NET Framework (plate-forme informatique)"} 1 +2024-09-11 09:08:24.242627 2024-09-11 09:08:24.242632 d5030a18-c5f0-49d5-990e-d219a5cd1a34 {"md5": "5381f7fb07ee911583230d3cb37d1481", "pid": "06160738X", "note": [{"label": ["Wikipédia : légende noire espagnole - https://fr.wikipedia.org (2017-10-20)", "Encycl. universalis (art. : Las Casas, Barthomé de (1474-1566)) : légende noire antihispanique - http://www.universalis-edu.com (2017-10-20)", "Hist. de l'Espagne / P. Noury, 2013 (p. 207)", "Les Amériques. T1, Du Précolombien à 1830, 2016", "Civilisation espagnole / M. Jullian, 2010", "Dict. culturel de l'Espagne / J.-P. Duviols, J. Soriano, 2006", "L'Espagne de 1492 à 1808 / J.-P. Dedieu, 2005", "La légende noire de l'Espagne / J. Pérez, 2009", "Dicc. de hist. de España / C. Ferrera Cuestra, 2005 : leyenda negra"], "noteType": "dataSource"}, {"label": ["Jugement négatif porté à l'étranger sur la civilisation espagnole, son expansion et son influence dans le monde, particulièrement en Amérique. Il condamne le massacre des Amérindiens, dénoncé par Bartolomé de las Casas dans sa \\"Brevísima Relación de la Destrucción de las Indias\\", ainsi que les erreurs et les crimes de la vie privée et politique de Philippe II"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Espagne - Histoire"}], "related": [{"authorized_access_point": "Colonies espagnoles"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh93007281", "source": "LCSH"}], "authorized_access_point": "Black Legend (Spanish history)"}, {"source": "RVMLaval", "authorized_access_point": "Légende noire (Histoire espagnole)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/06160738X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13749265x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13749265", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Légende noire antihispanique", "Légende noire de l'Espagne", "Légende noire espagnole", "Leyenda negra (Histoire d'Espagne)", "Leyenda negra española", "Leyenda negra hispanoamericana"], "authorized_access_point": "Légende noire (Histoire de l'Espagne)"} 1 +2024-09-11 09:08:24.30734 2024-09-11 09:08:24.307344 335dce1a-8a4a-4cb6-bd7d-24438660d5cc {"md5": "26b5fb56fb5211817ba5adebeb65fe67", "pid": "075000504", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mythologie indonésienne"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh93005942", "source": "LCSH"}], "authorized_access_point": "Mythology, Javanese"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/075000504", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15105630t", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15105630", "source": "BNF"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "authorized_access_point": "Mythologie javanaise"} 1 +2024-09-11 09:08:24.365758 2024-09-11 09:08:24.365761 01c7a1f4-22fc-4920-9f84-fd1fc81b6639 {"md5": "5cd7101110399a12db67ec896960c68f", "pid": "077057589", "note": [{"label": ["Vocab. juridique / G. Cornu, 2001"], "noteType": "dataSource"}, {"label": ["Marchés de travaux, privés ou publics, dans lesquels le prix d'ensemble de l'ouvrage est déterminé ou fixé de façon définitive entre le maître d'ouvrage et l'entrepreneur"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Contrats d'entreprise"}, {"authorized_access_point": "Marchés de travaux publics"}, {"authorized_access_point": "Prix - Fixation"}], "related": [{"authorized_access_point": "Contrats à long terme"}, {"authorized_access_point": "Marchés publics - Prix"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Marchés à forfait"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077057589", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb14408398q", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF14408398", "source": "BNF"}], "classification": [{"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}], "variant_access_point": ["Contrats à prix forfaitaire", "Marchés de travaux à prix forfaitaire"], "authorized_access_point": "Marchés à forfait"} 1 +2024-09-11 09:08:24.423517 2024-09-11 09:08:24.423521 4cea8a81-7402-44f0-ae98-50c51282d7b1 {"md5": "ef274e65c4ceb3c07879e855a09cacc2", "pid": "077060377", "note": [{"label": ["Pierrot gourmand : un siècle de création sucrée / A. Besson, 2002", "Bases de données Marques - https://bases-marques.inpi.fr (2016-12-19)"], "noteType": "dataSource"}, {"label": ["Pierrot gourmand est une appellation commerciale"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Confiserie"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077060377", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb144197717", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF14419771", "source": "BNF"}], "classification": [{"name": "Economie domestique, hôtellerie", "type": "bf:ClassificationDdc", "classificationPortion": "640"}], "variant_access_point": ["Pégé (confiserie)", "Pierrot gourmand (marque déposée)", "Confiseries Pierrot gourmand"], "authorized_access_point": "Pierrot gourmand (confiserie)"} 1 +2024-09-11 09:08:24.482456 2024-09-11 09:08:24.482461 46b795ad-07d6-4f31-a48b-e1437919dba3 {"md5": "34cfa90b92e87ac377dfd26459242dc6", "pid": "077062809", "note": [{"label": ["GLU", "Mourre", "Brockhaus, 19. Aufl", "Berlinkrise <1958> ; Berlinkrise <1961> ; SWD, 1995-04"], "noteType": "dataSource"}, {"label": ["Crise déclenchée en 1958 par la volonté de l'URSS de revoir le statut de Berlin, qui se résolut en 1961 par la construction du Mur (13 août) qui gela le statu quo"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Relations extérieures - URSS - 1953-1975"}, {"authorized_access_point": "Statut international - Berlin (Allemagne)"}, {"authorized_access_point": "Guerre froide"}, {"authorized_access_point": "Allemagne - 1945-1990"}], "related": [{"authorized_access_point": "Berlin (Allemagne) - Berliner Mauer"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077062809", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb14430123z", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF14430123", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Berlin, Crise de (1958-1961)", "Mur de Berlin, Construction du (1961)"], "authorized_access_point": "Crise de Berlin (1958-1961)"} 1 +2024-09-11 09:08:24.539103 2024-09-11 09:08:24.539107 02fd6110-504c-42a9-b2d7-b69ea247c135 {"md5": "c3ceeb0a2f2b4096dfcf3d6f80c2b7aa", "pid": "077075757", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Langages de balisage"}], "related": [{"authorized_access_point": "D3.js (informatique)"}, {"authorized_access_point": "XML (langage de balisage)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077075757", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb14487634q", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF14487634", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Langage graphique vectoriel (langage de balisage)", "Scalable Vector Graphics (langage de balisage)"], "authorized_access_point": "SVG (langage de balisage)"} 1 +2024-09-11 09:08:24.596538 2024-09-11 09:08:24.596541 7ea6ded7-cdd4-48dd-a1a8-02fc816503df {"md5": "874083f561ebce49461a4a645aca4b5a", "pid": "077088883", "note": [{"label": ["Laval RVM (en ligne), 2005-05-09"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Logiciels"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077088883", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb14498699r", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF14498699", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}], "authorized_access_point": "Analyse de contenu (communication) - Logiciels"} 1 +2024-09-11 09:08:24.695745 2024-09-11 09:08:24.695748 e885322a-f0ea-4a8b-a0ad-2066032a9656 {"md5": "e0651822ce05d80f2a796a3313915cf7", "pid": "077091035", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077091035", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb14513380t", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF14513380", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Audiovisuel", "type": "bf:ClassificationDdc", "classificationPortion": "791"}], "authorized_access_point": "Son - Enregistrement et reproduction - Techniques numériques - Logiciels"} 1 +2024-09-11 09:08:24.752994 2024-09-11 09:08:24.752998 a135db48-32dc-4c60-a8da-1b5bdf52fa14 {"md5": "aa550733004286a56576039b84ceda1c", "pid": "077397827", "note": [{"label": ["Quid 1996", "Wikipedia - http://fr.wikipedia.org (2007-06-21)"], "noteType": "dataSource"}, {"label": ["Le 12 décembre 1969 une bombe explose dans le hall de la Banque de l'Agriculture, Piazza Fontana à Milan, faisant 16 morts et 107 blessés. La responsabilité de cet attentat n'a pas été officiellement établie"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Attentats - Italie"}, {"authorized_access_point": "Milan (Italie) - 1945-"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2002002032", "source": "LCSH"}], "authorized_access_point": "Piazza Fontana Bombing, Milan, Italy, 1969"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077397827", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb14555186n", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF14555186", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "080489095"}, "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Milan, Attentat de (1969)"], "authorized_access_point": "Piazza Fontana, Attentat de la (1969)"} 1 +2024-09-11 09:08:25.820926 2024-09-11 09:08:25.82093 9bae476e-b566-41cf-b274-530e78835367 {"md5": "94218416ae080ddb928f9b8adcdfb6e6", "pid": "118419722", "note": [{"label": ["Wikidata - https://www.wikidata.org/wiki/Q22645 (2023-09-25)", "Dict. de français Larousse : ordiphone ; smartphone - http://www.larousse.fr/dictionnaires (2016-01-21)", "Le guide du pocket PC, du smartphone et du portable Media center / G. de Lussigny, 2006", "Smartphones sous Windows mobile 2003 / P. Antouly, 2006"], "noteType": "dataSource"}, {"label": ["Téléphone mobile disposant des fonctions d'un assistant numérique personnel (PDA : personal digital assistant), d'un appareil photo numérique et d'un ordinateur portable"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ordinateurs de poche"}, {"authorized_access_point": "Téléphonie mobile"}], "related": [{"authorized_access_point": "Applications mobiles"}, {"authorized_access_point": "Écosystèmes d'applications mobiles (informatique)"}, {"authorized_access_point": "Nomophobie"}, {"authorized_access_point": "Photographie mobile"}, {"authorized_access_point": "Vidéo mobile"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "BlackBerry (smartphone)"}, {"authorized_access_point": "iPhone (smartphone)"}, {"authorized_access_point": "Samsung Galaxy (smartphones)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2007006251", "source": "LCSH"}], "authorized_access_point": "Smartphones"}, {"source": "RVMLaval", "authorized_access_point": "Téléphones intelligents"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/118419722", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15561010h", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15561010", "source": "BNF"}], "classification": [{"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}, {"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Ordiphones", "Téléphones assistants personnels", "Téléphones intelligents", "Téléphones multifonctions", "Téléphones PDA"], "authorized_access_point": "Smartphones"} 1 +2024-09-11 09:08:24.811672 2024-09-11 09:08:24.811677 544b62df-beb2-43c5-9c72-c9e2d1b9d74b {"md5": "6252e98a9abaaee7c99d19dca014a500", "pid": "077937007", "note": [{"label": ["Une hist. des Juifs / P. Johnson, 1989 (pp. 278-281)", "Dict. du judaïsme : histoire, mythes et traditions / A. Unterman, 1997"], "noteType": "dataSource"}, {"label": ["Négociants, banquiers et fournisseurs juifs au service des rois et souverains de l'Europe centrale aux 17e et 18e siècles"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Conditions économiques - Europe - 18e siècle"}, {"authorized_access_point": "Cour et courtisans"}, {"authorized_access_point": "Hommes d'affaires juifs"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85033553", "source": "LCSH"}], "authorized_access_point": "Court Jews"}, {"source": "RVMLaval", "authorized_access_point": "Juifs de cour"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077937007", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb14508891v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF14508891", "source": "BNF"}], "classification": [{"name": "Économie politique", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Ethnologie", "type": "bf:ClassificationDdc", "classificationPortion": "390"}, {"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Cour, Juifs de", "Hofjuden"], "authorized_access_point": "Juifs de cour"} 1 +2024-09-11 09:08:24.876168 2024-09-11 09:08:24.876184 1269aa58-5064-4460-ace0-b846199c84bd {"md5": "a0eab7cb8d0c23d83594ac6540ade81d", "pid": "078974089", "note": [{"label": ["Système intégré et multiplate-forme permettant aux entreprises et aux organisations de gérer rapidement et facilement le contenu dynamique et rédactionnel d'un site Web"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sites Web - Gestion"}], "related": [{"authorized_access_point": "ECM (gestion)"}, {"authorized_access_point": "Sites Web - Systèmes-auteur"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Portfolios électroniques"}, {"authorized_access_point": "Plateformes d'apprentissage en ligne"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/078974089", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb145496336", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF14549633", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Sciences de l'information", "type": "bf:ClassificationDdc", "classificationPortion": "020"}], "variant_access_point": ["Sites Web - Gestion - Logiciels", "CMS (Web)", "Content management systems", "SGC (Web)"], "authorized_access_point": "Systèmes de gestion de contenu Web"} 1 +2024-09-11 09:08:24.93686 2024-09-11 09:08:24.936864 f8a4d90b-e57b-45bf-9c58-165fad9d3ca2 {"md5": "c685afdebfcd6b2f5b45618113a3f5b0", "pid": "079180043", "note": [{"label": ["ITunes 4 et iPod / Virga, 2004"], "noteType": "dataSource"}, {"label": ["Laval RVM (en ligne), 2004-06-14"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Lecteurs MP3"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/079180043", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb14548815k", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF14548815", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Audiovisuel", "type": "bf:ClassificationDdc", "classificationPortion": "791"}], "authorized_access_point": "iPod"} 1 +2024-09-11 09:08:25.001869 2024-09-11 09:08:25.001873 8eb61bd9-dd74-43d5-9d68-f9d8daa603ac {"md5": "a4ad8c3b5874cc92dd0c0ec3ea155450", "pid": "081665660", "note": [{"label": ["La Révolution conservatrice en Allemagne, 1918-1932 / Armin Mohler, trad. par Henri Plard et Hector Lipstick, 1993", "Normdaten : SWD, 2005-01 : Konservative Revolution"], "noteType": "dataSource"}, {"label": ["Courant de pensée politique de la République de Weimar, développé notamment par Arthur Moeller van den Bruck, Oswald Spengler, Ernst Jünger et Ernst von Salomon, qui préconise un nationalisme autoritaire comme modèle alternatif au libéralisme et au communisme"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Politique et gouvernement - Allemagne - 1918-1933"}, {"authorized_access_point": "Conservatisme"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/081665660", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb14614901r", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF14614901", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "variant_access_point": ["Konservative Revolution"], "authorized_access_point": "Révolution conservatrice (Allemagne)"} 1 +2024-09-11 09:08:25.061458 2024-09-11 09:08:25.061461 ff7bbd77-4bc9-4574-8477-79d1eb9f21cb {"md5": "ac3f76df5c25573b7f03741a4b33ae3d", "pid": "083421467", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Disques compacts enregistrables"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/083421467", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb145971143", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF14597114", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Audiovisuel", "type": "bf:ClassificationDdc", "classificationPortion": "791"}], "variant_access_point": ["Cédéroms - Gravure - Logiciels"], "authorized_access_point": "Cédéroms - Systèmes-auteur"} 1 +2024-09-11 09:08:38.557836 2024-09-11 09:08:38.55784 a0145600-5eba-484e-9063-9491b6e79074 {"md5": "0a4bf556928d97ee71b27a6d67075a3d", "pid": "278747051", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman écossais"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747051", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181487709", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148770", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Roman de fantasy écossais pour adolescents", "Roman de fantasy écossais pour enfants", "Roman de fantasy écossais pour jeunes adultes"], "authorized_access_point": "Roman de fantasy écossais pour la jeunesse"} 1 +2024-09-11 09:08:25.179574 2024-09-11 09:08:25.179578 36c5a02e-187a-4976-954d-dea8d88c2e9a {"md5": "4f12241c0bbe64a672fcdc5914057517", "pid": "08523611X", "note": [{"label": ["Wikipedia - http://fr.wikipedia.org (2008-05-02)", "Election of 1912 - http://www.u-s-history.com/pages/h887.html (2008-05-02)"], "noteType": "dataSource"}, {"label": ["Élection présidentielle du 4 novembre 1912 : Woodrow Wilson (démocrate) est élu contre Theodore Roosevelt (Progressive Party, scission du parti républicain), William H. Taft (républicain), Eugene V. Debs (socialiste) et Eugene W. Chafin (Prohibition Party)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Présidents - États-Unis - Élection"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2010106963", "source": "LCSH"}], "authorized_access_point": "Presidents--United States--Election--1912"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/08523611X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb146122360", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF14612236", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "950"}], "authorized_access_point": "Présidents - États-Unis - Élection (1912)"} 1 +2024-09-11 09:08:25.251269 2024-09-11 09:08:25.251274 4d7c5be0-638d-4e09-9d5d-fa1af9849079 {"md5": "5104d8f0ec00ce7ac20ebcd4a2c5dc84", "pid": "087834979", "note": [{"label": ["Le scrapbooking de A à Z, 2012", "Dict. du scrapbooking / V. Alber-Latour, H. Meynard, 2011", "Le scrapbooking : montages créatifs / F. Fichet, 2005"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Loisirs créatifs"}], "related": [{"authorized_access_point": "Albums de photographies"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2008002216", "source": "LCSH"}], "authorized_access_point": "Scrapbooking"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/087834979", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb14633930h", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF14633930", "source": "BNF"}], "classification": [{"name": "Dessin, arts décoratifs, artisanat d'art", "type": "bf:ClassificationDdc", "classificationPortion": "740"}, {"name": "Photographie", "type": "bf:ClassificationDdc", "classificationPortion": "770"}, {"name": "Jeux", "type": "bf:ClassificationDdc", "classificationPortion": "793"}], "variant_access_point": ["Albums de photographies - Décoration", "Albums-souvenirs - Mise en page"], "authorized_access_point": "Scrapbooking"} 1 +2024-09-11 09:08:25.334404 2024-09-11 09:08:25.334411 293336af-b780-45cb-8d20-afd8f517f503 {"md5": "7aa436ac78b5d1489a236427e2268017", "pid": "087960621", "note": [{"label": ["Mourre"], "noteType": "dataSource"}, {"label": ["Le référendum du 2 juin 1946 (jour des élections à l'Assemblée constituante) instaure la République, par 12 072 000 voix contre 10 719 284 pour la monarchie. Le roi Humbert II, en faveur duquel son père Victor-Emmanuel III avait abdiqué le 9 mai 1946, part en exil sans toutefois abdiquer"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/087960621", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15011139m", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15011139", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Référendum sur la monarchie (Italie ; 1946)"], "authorized_access_point": "Référendum - Italie - 1946"} 1 +2024-09-11 09:08:25.39461 2024-09-11 09:08:25.394613 ef3514be-f355-4548-a618-c1b01d8965c7 {"md5": "3401692823518567129cf0b0135e1175", "pid": "092468594", "note": [{"label": ["Scotland decides : the Devolution issue and the 1997 referendum / David Denver et al., 2000"], "noteType": "dataSource"}, {"label": ["1997-09-11 : la création d'un Parlement écossais est approuvée par référendum (74,3 % de oui)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/092468594", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb150114999", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15011499", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "authorized_access_point": "Référendum - Grande-Bretagne - Écosse (GB) - 1997"} 1 +2024-09-11 09:08:25.451354 2024-09-11 09:08:25.451358 a6b44d01-3248-4ede-8d97-951e8f091a8a {"md5": "f9a471d4de371baac18ae6ab7131b37e", "pid": "092468950", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Monnaies européennes"}], "related": [{"authorized_access_point": "Monnaie - Russie"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85027859", "source": "LCSH"}], "authorized_access_point": "Coins, Russian"}, {"source": "RVMLaval", "authorized_access_point": "Monnaies russes"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/092468950", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb150128520", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15012852", "source": "BNF"}], "classification": [{"name": "Économie politique", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Sculpture", "type": "bf:ClassificationDdc", "classificationPortion": "730"}, {"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Pièces de monnaie russes"], "authorized_access_point": "Monnaies russes"} 1 +2024-09-11 09:08:25.511057 2024-09-11 09:08:25.511062 9f363944-d364-49e6-aba4-0fe479a0d682 {"md5": "487251673f1cfc015f2d2e82725afb92", "pid": "101481071", "note": [{"label": ["LC Authorities (en ligne), 2009-08-05", "Microsoft - http://www.microsoft.fr (2009-08-05)", "Développer avec Visual studio 2005 éditions Express / L. Desmons, 2006", "ASP.NET avec C# sous Visual studio 2008 : conception et développement d'applications Web / B.-A. Guérin, 2009"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Logiciels - Développement"}, {"authorized_access_point": "Sites Web - Systèmes-auteur"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/101481071", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15060332j", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15060332", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Microsoft Visual studio .NET (environnement de développement d'applications)", "Microsoft Visual studio 97 (environnement de développement d'applications)", "Microsoft Visual studio 2005 Express Edition (environnement de développement d'applications)", "Microsoft Visual studio 2008 (environnement de développement d'applications)", "Visual studio (environnement de développement d'applications)", "Visual studio .NET (environnement de développement d'applications)", "Visual studio 97 (environnement de développement d'applications)", "Visual studio 2005 Express Edition (environnement de développement d'applications)", "Visual studio 2008 (environnement de développement d'applications)"], "authorized_access_point": "Microsoft Visual studio (environnement de développement d'applications)"} 1 +2024-09-11 09:08:25.567807 2024-09-11 09:08:25.567811 681d6ba6-ce47-4dd0-be25-ee38a04d8821 {"md5": "821e4f194d96101c86cabec7f20a7572", "pid": "110905687", "note": [{"label": ["Images numériques et formats graphiques / G. Michel-Duthel, 2000"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fichiers d'images"}], "related": [{"authorized_access_point": "Caméras vidéo numériques"}, {"authorized_access_point": "Camescopes numériques"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/110905687", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb151251703", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15125170", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Photographie", "type": "bf:ClassificationDdc", "classificationPortion": "770"}], "variant_access_point": ["Fichiers RAW", "Formats de fichier RAW", "Formats de fichiers RAW", "Formats RAW"], "authorized_access_point": "RAW (fichiers d'images)"} 1 +2024-09-11 09:08:25.630682 2024-09-11 09:08:25.630685 d08cdb71-051f-4e6a-ae48-5326064e6d4b {"md5": "1efa9237678b07f63bcf074002967cde", "pid": "111597153", "note": [{"label": ["La destruction des juifs d'Europe / R. Hilberg, 2006 (t.1, p. 280)", "Monde, 05-07-2002", "Vokabular des Nationalsozialismus / C. Schmitz-Berning, 1998 (art. : Rassenschande)", "Dict. encycl. d'histoire / M. Mourre, 1996 (art. : Nuremberg)"], "noteType": "dataSource"}, {"label": ["L'une des lois promulguées à Nuremberg le 15 septembre 1935, la loi de protection du sang allemand et de l'honneur allemand (Gesetz zum Schutze des deutschen Blutes und der deutschen Ehre), interdisait les mariages et relations sexuelles entre juifs et Allemands"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Politique et gouvernement - Allemagne - 1933-1945"}, {"authorized_access_point": "Juifs - Statut juridique"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Souillure de la race (Lois de Nuremberg, 1935)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/111597153", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15126159t", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15126159", "source": "BNF"}], "classification": [{"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire médiévale, moderne et contemporaine (sauf la France)", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Atteinte à la pureté raciale (Lois de Nuremberg ; 1935)", "Attentat à la pureté raciale (Lois de Nuremberg ; 1935)", "Profanation de la race (Lois de Nuremberg ; 1935)", "Protection du sang et de l'honneur allemands (Lois de Nuremberg ; 1935)", "Pureté raciale, Atteinte à la (Lois de Nuremberg ; 1935)", "Race - Souillure (Lois de Nuremberg ; 1935)", "Rassenschande (Lois de Nuremberg ; 1935)", "Souillure raciale (Lois de Nuremberg ; 1935)"], "authorized_access_point": "Souillure de la race (Lois de Nuremberg ; 1935)"} 1 +2024-09-11 09:08:25.704921 2024-09-11 09:08:25.704927 37262985-266d-4073-946e-e3dae2215db6 {"md5": "366bf058b4053baf0aa9693ab3b0925a", "pid": "112539750", "note": [{"label": ["Les IAS : international accounting standards / C. Bigoy, 2003 - http://www.enssib.fr/bibliotheque/documents (2007-01-10)", "Les normes comptables internationales IAS/IFRS - http://www.comptalia.com (2007-01-10)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Normes comptables"}], "related": [{"authorized_access_point": "États financiers consolidés"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Normes IPSAS"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/112539750", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15126768f", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15126768", "source": "BNF"}], "classification": [{"name": "Gestion", "type": "bf:ClassificationDdc", "classificationPortion": "650"}], "variant_access_point": ["Comptabilité - Normes internationales", "IAS", "IFRS", "International Accounting Standards", "International Financial Reporting Standards", "NCI", "Normalisation comptable internationale", "Normes internationales d'information financière"], "authorized_access_point": "Normes comptables internationales"} 1 +2024-09-11 09:08:25.762907 2024-09-11 09:08:25.762911 d8de62f8-4771-41b0-8465-2d29c59b46cf {"md5": "029a4267d140e8983a53566ae1bc2d75", "pid": "115898840", "note": [{"label": ["Wikipédia - http://fr.wikipedia.org/wiki (2007)", "SY 2006", "Laval RVM (en ligne), 2007-06-04 : Québec (Province) -- Histoire -- 1995 (Référendum constitutionnel)"], "noteType": "dataSource"}, {"label": ["Le 30-10-1995, à une majorité de 50,58%, les Québécois refusent d'accorder au gouvernement de Jacques Parizeau le mandat de négocier une souveraineté-association avec le reste du Canada"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Québec (Canada ; province) - Autonomie et mouvements indépendantistes"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/115898840", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15542056n", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15542056", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "950"}], "variant_access_point": ["Référendum constitutionnel (Québec ; 1995)"], "authorized_access_point": "Référendum - Canada - Québec (Canada ; province) - 1995"} 1 +2024-09-11 09:08:25.885351 2024-09-11 09:08:25.885355 1b61d290-f481-45c1-bbb7-f5e74b38691c {"md5": "8fa7a14c6bb40736607ec8465637bfc5", "pid": "118420763", "note": [{"label": ["Dict. encyclopédique du bouddhisme / P. Cornu, 2006", "Dict. de la sagesse orientale : bouddhisme, hindouisme, taoïsme, zen, 1989", "Encycl. of Buddhism / R. E. Buswell, 2003 (art. : Bodhicitta) : lam rim literature", "Encycl. des religions / F. Lenoir, Y. Tardan-Masquelier, 1997 (p. 1043) : \\"voie graduelle vers l'Éveil"], "noteType": "dataSource"}, {"label": ["Corpus de doctrine bouddhique proposant une méthode de progression vers l'Éveil"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bouddhisme - Doctrines"}, {"authorized_access_point": "Littérature bouddhique"}], "related": [{"authorized_access_point": "Bka'-gdams-pa"}, {"authorized_access_point": "Dge-lugs-pa (secte)"}, {"authorized_access_point": "Éveil (bouddhisme)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/118420763", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15556981h", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15556981", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Lam-rim", "Voie graduelle vers l'Éveil", "Voie progressive (bouddhisme)"], "authorized_access_point": "Lamrim"} 1 +2024-09-11 09:08:25.94775 2024-09-11 09:08:25.947754 6916222d-2621-4e7e-88db-b916482e658f {"md5": "874dbff54992efb647a1f52d31aafa25", "pid": "11948949X", "note": [{"label": ["Loi n° 85-30 du 09 Janvier 1985 relative au développement et à la protection de la montagne - http://www.senat.fr (2007-11-08)", "International law and protection of mountain areas, 2002"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Espaces naturels - Protection"}], "related": [{"authorized_access_point": "Montagnes - Politique publique"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/11948949X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15570251m", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15570251", "source": "BNF"}], "classification": [{"name": "Écologie", "type": "bf:ClassificationDdc", "classificationPortion": "577"}], "variant_access_point": ["Protection de la montagne", "Protection des montagnes"], "authorized_access_point": "Montagnes - Protection"} 1 +2024-09-11 09:08:26.005532 2024-09-11 09:08:26.005539 68b79b55-6821-4de0-92f3-4fed365b840a {"md5": "3c62bdfe1d40890d4d0e8f32c1a46129", "pid": "120299658", "note": [{"label": ["The encycl. of computer language - http://hopl.murdoch.edu.au (2010-04-27)", "SAP et ABAP / Y. Szwec, 2007", "SAP Developper Network - http://www.sdn.sap.com (2010-04-27)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Langages de 4e génération"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/120299658", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15589937c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15589937", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["ABAP/4 (langage de programmation)", "Advanced Business Application Programming (langage de programmation)"], "authorized_access_point": "ABAP (langage de programmation)"} 1 +2024-09-11 09:08:26.065546 2024-09-11 09:08:26.06555 aa429a88-d5c3-422c-aaf6-453fc1c844a9 {"md5": "f89691b29983d32a5a4a167541fd7de5", "pid": "12059353X", "note": [{"label": ["Dict. encyclopédique d'histoire / M. Mourre, 1996", "Dict. du Grand siècle / F. Bluche, 2005"], "noteType": "dataSource"}, {"label": ["A la mort du duc Vincent II de Gonzague (16 décembre 1627), la succession de Mantoue est disputée entre les Nevers (soutenus par la France) et les Guastalla (soutenus par l'Espagne), tandis que le duc de Savoie Charles Emmanuel I revendique le Montferrat. 26 avril 1631 : le traité de Cherasco attribue la succession à Charles de Nevers"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Relations extérieures - France - 1610-1643"}, {"authorized_access_point": "Italie - 17e siècle"}], "related": [{"authorized_access_point": "Mantoue (Italie ; duché)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Bataille du pas de Suse (1629)"}, {"authorized_access_point": "Siège de Mantoue (Italie ; 1629-1630)"}, {"authorized_access_point": "Sièges de Casale Monferrato (Italie ; 1628-1630)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2017003035", "source": "LCSH"}], "authorized_access_point": "Mantuan Succession, War of the, 1628-1631"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/12059353X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb155937336", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15593733", "source": "BNF"}], "classification": [{"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Crise de la succession de Mantoue (1628-1631)", "Guerre de Mantoue (1628-1631)", "Guerre de succession de Mantoue (1628-1631)", "Mantoue, Guerre de (1628-1631)", "Succession de Mantoue, Guerre de la (1628-1631)"], "authorized_access_point": "Guerre de la succession de Mantoue (1628-1631)"} 1 +2024-09-11 09:08:26.128745 2024-09-11 09:08:26.12875 7bfad5c7-d0fe-4af1-a615-e60766a08769 {"md5": "1d5aad65dffd6432ec2f1fa0f0fd9932", "pid": "122348486", "note": [{"label": ["Services numériques - http://www2.educnet.education.fr (2008-02-15)", "Espaces numériques de travail - http://savoirscdi.cndp.fr (2008-02-15)", "ENT-SCOL : environnement numérique de travail, 2008"], "noteType": "dataSource"}, {"label": ["Dispositif global fournissant à un usager, un point d'accès, à travers les réseaux, à l'ensemble des ressources et des services numériques en rapport avec son activité"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Technologie éducative"}, {"authorized_access_point": "Portails Internet"}], "related": [{"authorized_access_point": "Environnement d'apprentissage personnel"}, {"authorized_access_point": "Tableaux blancs interactifs"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Plateformes d'apprentissage en ligne"}, {"authorized_access_point": "Universités virtuelles"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/122348486", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb156044499", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15604449", "source": "BNF"}], "classification": [{"name": "Éducation", "type": "bf:ClassificationDdc", "classificationPortion": "370"}, {"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Bureaux virtuels (éducation)", "ENT", "Environnements numériques de travail (éducation)", "Espace numérique de travail (éducation)", "Espaces numériques de travail (éducation)"], "authorized_access_point": "Environnement numérique de travail"} 1 +2024-09-11 09:08:26.18758 2024-09-11 09:08:26.187584 7fa3faaa-844b-490f-a401-3cb16e56d46a {"md5": "e997e3efce12b3746b0a715ea590218c", "pid": "122348877", "note": [{"label": ["iPhone / P. Fontaine, 2008", "Films & vidéos sur iPhone - iPod touch, 2007 [cédérom]", "Apple - http://www.apple.fr (2008-03-13)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Smartphones"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2007007371", "source": "LCSH"}], "authorized_access_point": "iPhone (Smartphone)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/122348877", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb156082549", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15608254", "source": "BNF"}], "classification": [{"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}, {"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Apple iPhone (smartphone)"], "authorized_access_point": "iPhone (smartphone)"} 1 +2024-09-11 09:08:26.244275 2024-09-11 09:08:26.244278 f445e61f-3e8f-4c28-994f-b702d18e4fbc {"md5": "b552542e2c3765cab7795043ea867f77", "pid": "122957032", "note": [{"label": ["Les Kindertransport, 1938-1940 - http://www.ushmm.org (2008-03-31)", "Dict. of the Holocaust / E. J. Epstein, P. Rosen, 1990"], "noteType": "dataSource"}, {"label": ["Hist. du peuple juif au XXe siècle : de 1914 à nos jours / S. Epstein, 1998. - Encycl. of the Holocaust / I. Gutman, 1990"], "noteType": "dataNotFound"}, {"label": ["Opération de sauvetage (décembre 1938-mai 1940) qui permit de transférer en Grande-Bretagne environ 10000 enfants juifs d'Allemagne, d'Autriche, de Tchécoslovaquie et de Dantzig"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Juifs - 1933-1945"}], "related": [{"authorized_access_point": "Enfants juifs pendant la Shoah"}, {"authorized_access_point": "Enfants réfugiés"}, {"authorized_access_point": "Guerre mondiale (1939-1945) - Enfants"}, {"authorized_access_point": "Guerre mondiale (1939-1945) - Juifs -- Sauvetage"}, {"authorized_access_point": "Réfugiés juifs"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00008556", "source": "LCSH"}], "authorized_access_point": "Kindertransports (Rescue operations)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/122957032", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb156163936", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15616393", "source": "BNF"}], "classification": [{"name": "Histoire médiévale, moderne et contemporaine (sauf la France)", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Kindertransports (opérations de sauvetage ; 1938-1940)"], "authorized_access_point": "Kindertransport (opération de sauvetage ; 1938-1940)"} 1 +2024-09-11 09:08:26.300934 2024-09-11 09:08:26.300939 d04b7bbe-1660-47fd-ba9c-58b935e6141d {"md5": "47ccbfea60495aa96897c114f3278736", "pid": "123472466", "note": [{"label": ["Encycl. de l'informatique et des systèmes d'information, 2006", "Entrepôts de données [in] Techniques de l'ingénieur, 2005, H3870", "Modélisation et implémentation de systèmes OLAP pour des objets mobiles / T. Wan, 2007 [thèse]", "Refonte globale d'un cube OLAP des ventes européennes de la société / M. Bellec, 2007 [mémoire]", "OLAP solutions : building multidimensional information systems / E. Thomsen, 2002"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Systèmes d'aide à la décision"}], "related": [{"authorized_access_point": "Bases de données multidimensionnelles"}, {"authorized_access_point": "Bases de données"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/123472466", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15711780x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15711780", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Gestion et organisation de l'entreprise", "type": "bf:ClassificationDdc", "classificationPortion": "650"}], "variant_access_point": ["Applications OLAP (informatique)", "Cubes OLAP (informatique)", "Online Analytical Processing (informatique)", "Systèmes OLAP (informatique)"], "authorized_access_point": "OLAP (informatique)"} 1 +2024-09-11 09:08:26.358493 2024-09-11 09:08:26.358497 77e2eeb5-314b-4735-9391-f80a49a67ad5 {"md5": "b02353c1c476bf89cd90b154ef3caa32", "pid": "124452248", "note": [{"label": ["LC Authorities (en ligne), 2008-06-16", "WPF : Windows Presentation Foundation : Développez des applications riches sous Windows / O. Dewit, 2008", "WPF : le développement d'interfaces riches : introduction à Silverlight / M. Diaz Orlich, X. Poinas, Y. Lautredou, 2008", "Foundations of WPF : an introduction to Windows Presentation Foundation / L. Moroney, 2006"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Microsoft .NET Framework (plate-forme informatique)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/124452248", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15661929k", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15661929", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Microsoft WPF (plate-forme informatique)", "Windows Presentation Foundation (plate-forme informatique)", "WPF (plate-forme informatique)"], "authorized_access_point": "Microsoft Windows Presentation Foundation (plate-forme informatique)"} 1 +2024-09-11 09:08:26.411461 2024-09-11 09:08:26.411466 a77b2987-32f6-41d4-83b3-f289057933ee {"md5": "9e245296dee80c6cfdd35b8419bae43d", "pid": "129822051", "note": [{"label": ["Wikidata - https://www.wikidata.org/wiki/Q836386 (2023-08-31)", "Robert encyclopédique des noms propres 2008", "L'année 2004 dans Le Monde / D. Rioux, 2005", "Universalia 2005", "Historical dict. of Ukraine / Z. E. Kohut, B. Y. Nebesio, M. Yurkevich, 2005 (p. 9-14)", "Le Monde, 2004-11-23"], "noteType": "dataSource"}, {"label": ["Novembre-décembre 2004 : manifestations pacifiques de masse à Kiev et dans les grandes villes d'Ukraine pour protester contre le résultat officiel de l'élection présidentielle, favorable au candidat pro-russe Viktor Ianoukovitch, contre Viktor Iouchtchenko (pro-occidental). Cette mobilisation et les pressions internationales aboutissent à un nouveau second tour et la victoire de V. Iouchtchenko (26 décembre)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ukraine - 1991-...."}], "related": [{"authorized_access_point": "Présidents - Ukraine - Élection (2004)"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2005001194", "source": "LCSH"}], "authorized_access_point": "Ukraine--History--Orange Revolution, 2004"}, {"source": "RVMLaval", "authorized_access_point": "Ukraine--Histoire--2004 (Révolution orange)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/129822051", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15847405k", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15847405", "source": "BNF"}], "classification": [{"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire médiévale, moderne et contemporaine (sauf la France)", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Marronniers, Révolution des (Ukraine ; 2004)", "Orange, Révolution (Ukraine ; 2004)", "Orange Revolution (Ukraine ; 2004)", "Révolution des marronniers (Ukraine ; 2004)"], "authorized_access_point": "Révolution Orange (Ukraine ; 2004)"} 1 +2024-09-11 09:08:26.47324 2024-09-11 09:08:26.473244 252e0c7b-137c-4629-ab58-37a3ef8cb962 {"md5": "b8d669690c7fcc676c28be46f37c009b", "pid": "130683035", "note": [{"label": ["Petit Robert 2009", "Pédagogie, dict. des concepts-clés : apprentissage, formation, psychologie cognitive / F. Raynal, A. Rieunier, 2005", "Dict. encyclopédique de l'éducation et de la formation / P. Champy, C. Étévé, 1994", "Dict. de l'éducation / A. van Zanten, 2008"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Comportement humain"}, {"authorized_access_point": "Éducation"}], "related": [{"authorized_access_point": "Apprentissage - Physiologie"}, {"authorized_access_point": "Apprentissage professionnel"}, {"authorized_access_point": "Compétence"}, {"authorized_access_point": "Compréhension"}, {"authorized_access_point": "Conception universelle de l'apprentissage"}, {"authorized_access_point": "Mathétique"}, {"authorized_access_point": "Psychologie de l'apprentissage"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Acquisition linguistique"}, {"authorized_access_point": "Apprentissage contextualisé"}, {"authorized_access_point": "Apprentissage exploratoire"}, {"authorized_access_point": "Apprentissage mixte"}, {"authorized_access_point": "Apprentissage organisationnel"}, {"authorized_access_point": "Apprentissage par investigation"}, {"authorized_access_point": "Apprentissage par la découverte"}, {"authorized_access_point": "Apprentissage par la pratique"}, {"authorized_access_point": "Apprentissage par le jeu"}, {"authorized_access_point": "Apprentissage social"}, {"authorized_access_point": "Apprentissage transformationnel"}, {"authorized_access_point": "Dispositifs pédagogiques"}, {"authorized_access_point": "Environnement d'apprentissage personnel"}, {"authorized_access_point": "Tâches (éducation)"}, {"authorized_access_point": "Transfert d'apprentissage"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Apprentissage"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85075520", "source": "LCSH"}], "authorized_access_point": "Learning"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/130683035", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb159423983", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15942398", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}, {"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}], "variant_access_point": ["Processus d'apprentissage"], "authorized_access_point": "Apprentissage"} 1 +2024-09-11 09:08:26.534164 2024-09-11 09:08:26.534167 ae46fc69-d830-4db7-9ecd-f2eb8997a437 {"md5": "3d22ab57af0860dd29167146362ccfcf", "pid": "13073019X", "note": [{"label": ["Hist. de la France au XXe siècle. 2, 1930-1945 / S. Berstein, P. Milza, 2003 (p. 64-65)", "Hist. de la France politique. 4, La République recommencée : de 1914 à nos jours / S. Berstein, M. Winock, 2004 (p. 62)", "Le siècle des intellectuels / M. Winock, 1997 (p. 204)", "Hist. politique de la Jeune Droite, 1929-1942 / S. Kessler, 2001"], "noteType": "dataSource"}, {"label": ["Hist. des droites en France. 2, Cultures / J.-F. Sirinelli, 2006"], "noteType": "dataNotFound"}, {"label": ["Nom donné par Emmanuel Mounier à un groupe d'écrivains et d'intellectuels français dits \\"non conformistes\\" des années 1930, d'obédience nationaliste et principalement catholique, qui voulaient renouveler la pensée de Charles Maurras (Jean de Fabrègues, Jean-Pierre Maxence, Thierry Maulnier)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Politique et gouvernement - France - 1914-1940"}, {"authorized_access_point": "Partis de droite"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/13073019X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb159000410", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15900041", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire de la France", "type": "bf:ClassificationDdc", "classificationPortion": "944"}], "variant_access_point": ["Droite, Jeune"], "authorized_access_point": "Jeune Droite"} 1 +2024-09-11 09:08:26.601116 2024-09-11 09:08:26.601118 91af766b-03a6-485d-b131-04028bb0c6d4 {"md5": "1970e76aeb35d44956441095949c9329", "pid": "131981226", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Art - Italie"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Peinture - Italie - 19e siècle"}, {"authorized_access_point": "Scapigliatura"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/131981226", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15936258b", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15936258", "source": "BNF"}], "classification": [{"name": "Arts (sauf littérature)", "type": "bf:ClassificationDdc", "classificationPortion": "700"}], "authorized_access_point": "Art - Italie - 19e siècle"} 1 +2024-09-11 09:08:26.672649 2024-09-11 09:08:26.672653 d44f70e4-84af-446f-9c84-10ec0218afe5 {"md5": "b0b9b5750b51efdf376b604c29f54091", "pid": "132211378", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Assistance militaire"}], "related": [{"authorized_access_point": "Forces armées russes"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/132211378", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb178103476", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF17810347", "source": "BNF"}], "classification": [{"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Art et science militaires", "type": "bf:ClassificationDdc", "classificationPortion": "355"}], "authorized_access_point": "Assistance militaire russe"} 1 +2024-09-11 09:08:26.740884 2024-09-11 09:08:26.740888 1c9ecf38-5ecc-45fd-8036-e68935f16979 {"md5": "b2c0b40e4a83fdcaf424860a2ec1f9ce", "pid": "133566129", "note": [{"label": ["GVK - Gemeinsamer Verbundkatalog : Freundschafts- Handels- und Schifffahrts- Vertrag zwischen Preußen und den übrigen Staaten des Zollvereins einerseits und der Argentinischen Konföderation andereseits - http://gso.gbv.de (2009-04-28)", "El tratado argentino-alemán de amistad, comercio y navegación de 1857 : estudios histórico-jurídicos / T. Duve, 2007"], "noteType": "dataSource"}, {"label": ["Traité signé le 19 septembre1857, ratifié le 3 juin 1859"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Relations extérieures - Prusse - 1815-1871"}, {"authorized_access_point": "Relations extérieures - Allemagne - 1848-1870"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/133566129", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb160053063", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16005306", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Économie politique", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}], "variant_access_point": ["Freundschafts- Handels- und Schifffahrts- Vertrag zwischen Preußen und den übrigen Staaten des Zollvereins einerseits und der Argentinischen Konföderation andererseits (1857)", "Tratado argentino-alemán de amistad, comercio y navegación (1857)"], "authorized_access_point": "Tratado de amistad, comercio y navegación entre la Prusia y los otros Estados del Zollverein alemán por una parte y la Confederación argentina por la otra parte (1857)"} 1 +2024-09-11 09:08:26.80266 2024-09-11 09:08:26.802663 e76f24d8-3c90-444e-aeec-f547cbb51844 {"md5": "f7b34ef4830c3b0a5b6d6fa15114729f", "pid": "135615003", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/135615003", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb160730930", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16073093", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "variant_access_point": ["Église catholique - Relations extérieures - 21e siècle"], "authorized_access_point": "Diplomatie pontificale - 21e siècle"} 1 +2024-09-11 09:08:26.861639 2024-09-11 09:08:26.861643 3893cec3-4990-4d56-b364-7599073b030f {"md5": "a8843d8019d78bdf02759060b2cd1755", "pid": "136707165", "note": [{"label": ["Encycl. universalis (art. : Chiisme ou shī‘isme) - http://www.universalis-edu.com (2018-05-29)", "Al-wasaṭ - http://www.alwasatnews.com (2018-05-14)", "Wīkī Šīʿaẗ - http://ar.wikishia.net (2018-05-14)", "Dict. encyclopédique de l'Islam / C. Glassé, 1991", "Dict. historique de l'Islam / D. et J. Sourdel, 2004", "Hist. de l'Islam / S. Mervin, 2001 : courant akhbārī", "Qu'est-ce que le shî'isme? / M.-A. Amir-Moezzi, C. Jambet, 2004 : Akhbārīyya", "The Oxford dict. of Islam / J.-L. Esposito, 2003", "BnF Service arabe, 2018-05-14"], "noteType": "dataSource"}, {"label": ["Membres d'une École du chiisme duodécimain, partisans d'une jurisprudence exclusivement fondée sur les traditions reçues (akhbār) des imams"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Chiites"}, {"authorized_access_point": "Théologiens musulmans"}], "related": [{"authorized_access_point": "Imāmat"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2008007856", "source": "LCSH"}], "authorized_access_point": "Akhbārīyah"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/136707165", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb161107725", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16110772", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"type": "bf:ClassificationDdc", "classificationPortion": "305"}], "variant_access_point": ["Akhbārī", "Aẖbārī", "أخباري", "Aẖbāriyyaẗ", "أخباريّة", "Akhbārīyah", "Akhbārīyya", "Aẖbāriyyūn", "أخباريّون", "Al- aẖbārī", "الأخباري", "Al- aẖbāriyyaẗ", "الأخباريّة", "Al- aẖbāriyyūn", "الأخباريّون", "Akhbarisme", "Courant akhbārī", "École akhbārīe", "Mouvement akhbārī", "Traditionalistes akhbārī"], "authorized_access_point": "Akhbārīs"} 1 +2024-09-11 09:08:26.919427 2024-09-11 09:08:26.919431 060e3851-a639-40a2-96f9-15c704b2b0c1 {"md5": "96a7bdfc071f1db4578e9ee81b468462", "pid": "13776541X", "note": [{"label": ["L'année 1989 dans Le Monde / E. Masurel, 1990", "Dict. encyclopédique d'histoire / M. Mourre (art. : Hongrie)", "Mil ans d'hist. hongroise / I. G. Tóth, 2003 (p. 667)", "Historical dict. of Hungary / S. B. Várdy, 1997 (art. : Communism, Collapse of (1989-1990) ; Iron Curtain)"], "noteType": "dataSource"}, {"label": ["27 mai 1989 : les ministres autrichien et hongrois des affaires étrangères (Alois Mock et Gyula Horn) coupent symboliquement les défenses frontalières. 19 août : l'organisation près de Sopron d'un \\"pique-nique paneuropéen\\" par Otto de Habsbourg et Imre Pozsgay permet à environ 500 Allemands de l'Est de passer en Autriche. 10 septembre : G. Horn annonce l'ouverture de la frontière, qu'environ 25.000 Allemands de l'Est franchissent en septembre"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Frontières - Hongrie"}, {"authorized_access_point": "Frontières - Autriche"}, {"authorized_access_point": "Rideau de fer (frontière)"}, {"authorized_access_point": "Europe de l'Est - 1989-1990 (Chute du communisme)"}], "related": [{"authorized_access_point": "Allemagne - 1989-1990 (Unification)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/13776541X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb161648597", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16164859", "source": "BNF"}], "classification": [{"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Frontière austro-hongroise, Ouverture de la (1989)", "Ouverture du Rideau de fer (1989)", "Pique-nique paneuropéen (1989)", "Rideau de fer, Ouverture du (1989)"], "authorized_access_point": "Ouverture de la frontière austro-hongroise (1989)"} 1 +2024-09-11 09:08:26.980993 2024-09-11 09:08:26.980998 7249b869-d2fa-45b4-9909-f2a72670f199 {"md5": "681e79b20069a1c7fb976a3dbc394e43", "pid": "137978685", "note": [{"label": ["Quid - http://www.quid.fr (2009-11-14)", "Wikipédia : Affaire des ventes d'armes à l'Angola - http://fr.wikipedia.org (2009-11-14)", "Les hommes de l'\\"Angolagate\\" / S. Smith [in] Le Monde, 2001-01-13", "Angolagate : Pasqua implique de nouveau Chirac et Villepin [in] Le Figaro, 2009-11-13"], "noteType": "dataSource"}, {"label": ["Affaire de trafic d'armes vers l'Angola au cours de la guerre civile entre 1993 et 1998. L'enquête, commencée en juillet 2000, a impliqué notamment Pierre Falcone, Arkadi Gaydamak, Charles Pasqua et Jean-Christophe Mitterrand. Le nom d'\\"Angolagate\\" (par allusion au Watergate), donné à l'affaire par le journal Le Monde en janvier 2001, a fait florès. 6 octobre 2008-27 octobre 2009 : procès en première instance"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Politique et gouvernement - France - 1995-2007"}, {"authorized_access_point": "Politique et gouvernement - France - 1993-1995"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/137978685", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16157417q", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16157417", "source": "BNF"}], "classification": [{"name": "Histoire de la France", "type": "bf:ClassificationDdc", "classificationPortion": "944"}, {"name": "Histoire du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "950"}], "variant_access_point": ["Affaire des ventes d'armes à l'Angola (1993-....)", "Affaire du trafic d'armes vers l'Angola (1993-....)", "Affaire Falcone (1993-....)", "Procès de l'Angolagate (2008-....)", "Scandale de l'Angolagate (1993-....)", "Trafic d'armes vers l'Angola, Affaire du (1993-....)", "Ventes d'armes à l'Angola, Affaire des (1993-....)"], "authorized_access_point": "Angolagate (1993-....)"} 1 +2024-09-11 09:08:27.043476 2024-09-11 09:08:27.04348 e6b5516c-8186-4ce4-bdd4-1c789b5d1677 {"md5": "c2efb824295a0e726a211e8af84fd38c", "pid": "139100857", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mythologie coréenne"}], "related": [{"authorized_access_point": "Dieux taoïstes"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2006004413", "source": "LCSH"}], "authorized_access_point": "Gods, Korean"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/139100857", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16158627t", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16158627", "source": "BNF"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "authorized_access_point": "Dieux coréens"} 1 +2024-09-11 09:08:27.098432 2024-09-11 09:08:27.098436 f3c9065a-ffb6-45ef-842c-0f7b7d7258c9 {"md5": "bf069e8fd5cf8ca041ea1cc006e2903f", "pid": "142761583", "note": [{"label": ["LC Authorities (en ligne), 2010-03-08", "VMware cookbook / R. Troy, M. Helmke, 2010", "VMware Virtualization Software for Desktops, Servers & Virtual Machines for a Private Cloud - http://www.vmware.com (2010-03-08)", "Virtualisation des systèmes d'information avec VMware / P. Gillet, 2009"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Systèmes virtuels (informatique)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/142761583", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16186298c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16186298", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "authorized_access_point": "VMware (logiciels)"} 1 +2024-09-11 09:08:39.961037 2024-09-11 09:08:39.961041 a1056818-4884-40d2-97f4-c4aa0620d180 {"md5": "57c7a63142038db34d3c5beb28cf4838", "pid": "279034873", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman gallois"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279034873", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18151562n", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18151562", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Roman historique gallois"} 1 +2024-09-11 09:08:27.155785 2024-09-11 09:08:27.155789 72a8b67d-d539-439b-a1df-f8cd9b9b6f6f {"md5": "e6c2a4b96827bc8e29699b6bf4ec883f", "pid": "144664194", "note": [{"label": ["Apple - http://www.apple.com/fr (2010-05-25)", "Développer pour l'iPhone et l'iPad / É. Vautherin, 2010", "My new iPad : simple ways to get started / W. Wang, 2010"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tablettes numériques"}, {"authorized_access_point": "Apple (ordinateurs)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/144664194", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16204308w", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16204308", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["iPad (ordinateur)"], "authorized_access_point": "Apple iPad (ordinateur)"} 1 +2024-09-11 09:08:27.215799 2024-09-11 09:08:27.215802 29cd325d-fadd-4b5b-8c34-7e37284fb88a {"md5": "96d8f79a5250b87c4c3700e0b7987610", "pid": "145035468", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Grec (langue) biblique"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Ai̓ṓn (le mot grec)"}, {"authorized_access_point": "Diakonía (le mot grec)"}, {"authorized_access_point": "Didáskalos (le mot grec)"}, {"authorized_access_point": "Dýnamis (le mot grec)"}, {"authorized_access_point": "Ei̓kṓn (le mot grec)"}, {"authorized_access_point": "Fōnī ́ (le mot grec)"}, {"authorized_access_point": "Gnōstikós (le mot grec)"}, {"authorized_access_point": "Kardía (le mot grec)"}, {"authorized_access_point": "Koinōnía (le mot grec)"}, {"authorized_access_point": "Leitourgía (le mot grec)"}, {"authorized_access_point": "Martyría (le mot grec)"}, {"authorized_access_point": "Mathītī́s (le mot grec)"}, {"authorized_access_point": "Mystī́rion (le mot grec)"}, {"authorized_access_point": "Nómos (le mot grec)"}, {"authorized_access_point": "Noûs (le mot grec)"}, {"authorized_access_point": "Oi̓kodomeîn (le mot grec)"}, {"authorized_access_point": "Oi̓kodomī́ (le mot grec)"}, {"authorized_access_point": "Oi̓konomía (le mot grec)"}, {"authorized_access_point": "Paideía (le mot grec)"}, {"authorized_access_point": "Paráklit̄os (le mot grec)"}, {"authorized_access_point": "Parrīsía (le mot grec)"}, {"authorized_access_point": "Pâs (le mot grec)"}, {"authorized_access_point": "Peripatô̄ (le mot grec)"}, {"authorized_access_point": "Perisseía (le mot grec)"}, {"authorized_access_point": "Perisseúein (le mot grec)"}, {"authorized_access_point": "Pístis (le mot grec)"}, {"authorized_access_point": "Proaíresis (le mot grec)"}, {"authorized_access_point": "Prosérchomai (le mot grec)"}, {"authorized_access_point": "Sōtī́r (le mot grec)"}, {"authorized_access_point": "Syggnṓmī (le mot grec)"}, {"authorized_access_point": "Syneídīsis (le mot grec)"}, {"authorized_access_point": "Téleios (le mot grec)"}, {"authorized_access_point": "Télos (le mot grec)"}, {"authorized_access_point": "Theosofía (le mot grec)"}, {"authorized_access_point": "Tīreîn (le mot grec)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/145035468", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb162077797", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16207779", "source": "BNF"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Langues", "type": "bf:ClassificationDdc", "classificationPortion": "400"}], "authorized_access_point": "Grec (langue) biblique - Vocabulaire"} 1 +2024-09-11 09:08:27.280665 2024-09-11 09:08:27.280669 797af630-1b74-4f90-9588-b1be8814d97f {"md5": "575ec0f83b3d0a3f4f01272eb44f23c6", "pid": "145909093", "note": [{"label": ["Wikipédia : Attentat du 8 mai 2002 à Karachi - http://fr.wikipedia.org (2010-06-28)", "Encycl. universalis (art. : Pakistan actualité (1990-2008)) - http://www.universalis-edu.com (2010-06-28)", "L'année 2002 dans Le Monde / M. Roche, 2003", "Collectif de familles de victimes décédées dans l'attentat du 8 mai 2002 à Karachi - http://www.verite-attentat-karachi.org (2010-06-28)"], "noteType": "dataSource"}, {"label": ["8 mai 2002 : un attentat à la voiture piégée à Karachi (Pakistan) tue 14 personnes, dont 11 Français travaillant à la Direction des constructions navales, et fait plus de 20 blessés (dont 12 Français)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Attentats - Pakistan"}, {"authorized_access_point": "Pakistan - 1947-...."}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/145909093", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16205959p", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16205959", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "950"}], "variant_access_point": ["Attentat de Karachi (2002)"], "authorized_access_point": "Karachi, Attentat de (2002)"} 1 +2024-09-11 09:08:27.337115 2024-09-11 09:08:27.337119 0f3e34ae-7c2c-4ff5-a953-5e49e690a239 {"md5": "f09db67dbaef4b4f97f431e645eb1499", "pid": "146923081", "note": [{"label": ["Apple - http://www.apple.fr (2010-09-29)", "Ipod touch / A. Glevarec, 2008", "The iPod touch pocket guide / C. Breen, 2009"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Lecteurs MP3"}, {"authorized_access_point": "Ordinateurs de poche"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/146923081", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16232911k", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16232911", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Audiovisuel", "type": "bf:ClassificationDdc", "classificationPortion": "791"}], "variant_access_point": ["Apple iPod touch (baladeur numérique)"], "authorized_access_point": "iPod touch (baladeur numérique)"} 1 +2024-09-11 09:08:27.393823 2024-09-11 09:08:27.393827 faa75781-3a20-497b-b4f3-92fdb34558ec {"md5": "ec3207fc0e52086f00cb72d98d16abc7", "pid": "147286433", "note": [{"label": ["Wikipedia - http://fr.wikipedia.org (2010-11-02)", "Mind map : dessine-moi l'intelligence / T. et B. Buzan,1995", "Organisez votre vie avec le mind mapping / P. Mongin, X. Delengaigne, 2009"], "noteType": "dataSource"}, {"label": ["Représentations graphiques des liens entre idées et/ou concepts sous une forme généralement arborescente. Pour des cartes mentales en géographie, voir la vedette \\"Perception géographique", "S'emploie également en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Méthodes graphiques"}, {"authorized_access_point": "Psychologie cognitive"}], "related": [{"authorized_access_point": "Cartes cognitives"}, {"authorized_access_point": "Créativité"}, {"authorized_access_point": "Heuristique"}, {"authorized_access_point": "Traitement de l'information (psychologie)"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2007007421", "source": "LCSH"}], "authorized_access_point": "Concept mapping"}, {"source": "RVMLaval", "authorized_access_point": "Cartographie conceptuelle"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/147286433", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16241164x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16241164", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}], "variant_access_point": ["Arborescences heuristiques", "Arbres à idées", "Arbres heuristiques", "Cartes des idées", "Cartes mentales (psychologie)", "Diagrammes heuristiques", "Idées, Cartes des", "Mind mapping", "Schémas heuristiques", "Topogrammes"], "authorized_access_point": "Cartes heuristiques"} 1 +2024-09-11 09:08:35.024734 2024-09-11 09:08:35.024739 fc2a9f64-a5e2-4918-a590-bd849dc5a432 {"md5": "f56031d448105ba6174fd6bfcd784e70", "pid": "277418216", "note": [{"label": ["Voir aussi aux régions et aux pays africains"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ethnologie - Iran"}], "related": [{"authorized_access_point": "Africains"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/277418216", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181432712", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18143271", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "274969289"}, "classification": [{"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "authorized_access_point": "Iraniens d'origine africaine"} 1 +2024-09-11 09:08:27.45405 2024-09-11 09:08:27.454054 775b0e95-4374-4b85-92e0-640ef1aa8c60 {"md5": "19ce83a049337ac2affc436dd25081d4", "pid": "148541372", "note": [{"label": ["Grand dict. terminologique : ardoise électronique ; tablette électronique ; ordinateur tablette - http://www.granddictionnaire.com (2010-12-02)", "Faut-il se laisser tenter par la tablette numérique ? [in] Le Particulier, 2010, 1054", "Les systèmes d'information de gestion / J. O'Brien, 1997 : tablettes électroniques"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ordinateurs portatifs"}], "related": [{"authorized_access_point": "Applications mobiles"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Samsung Galaxy Note 8.0 (ordinateur)"}, {"authorized_access_point": "Amazon Kindle Fire (ordinateur)"}, {"authorized_access_point": "Microsoft Surface (ordinateur)"}, {"authorized_access_point": "Google Nexus (ordinateur)"}, {"authorized_access_point": "Amazon Kindle (ordinateur)"}, {"authorized_access_point": "Samsung Galaxy Tab (ordinateur)"}, {"authorized_access_point": "Apple iPad (ordinateur)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2010009240", "source": "LCSH"}], "authorized_access_point": "Tablet computers"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148541372", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb162446761", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16244676", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Ardoises électroniques", "Ordinateurs tablettes", "Tablettes électroniques"], "authorized_access_point": "Tablettes numériques"} 1 +2024-09-11 09:08:27.520363 2024-09-11 09:08:27.520366 776f3004-3272-450a-8903-f3a5f37d9405 {"md5": "3aff89321bb874d1eb2ffbb078c76e8b", "pid": "148542182", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Tolérance religieuse"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148542182", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16248927m", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16248927", "source": "BNF"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire", "type": "bf:ClassificationDdc", "classificationPortion": "900"}], "authorized_access_point": "Tolérance religieuse - Histoire"} 1 +2024-09-11 09:08:27.594842 2024-09-11 09:08:27.594845 611e2dda-977f-4246-adc9-70bd97cecb16 {"md5": "6923b7fa9fcc240de53821ce3bf162b4", "pid": "151385432", "note": [{"label": ["Wikipédia - http://fr.wikipedia.org (2011-03-28)", "Hist. des États-Unis / J.-M. Lacroix, 2010", "Hist. des États-Unis : de 1776 à nos jours / J. Portes, 2010 (p. 22)", "Dict. des États-Unis / D. Royot, 2010 (art. : Constitution)", "Une hist. populaire des États-Unis / H. Zinn, 2002", "La Révolution américaine / B. Cottret, 2003 (p. 305) : Founding Fathers", "Historical dict. of Revolutionary America / T. M. Mays, 2005 : Founding Fathers"], "noteType": "dataSource"}, {"label": ["Nom donné aux 56 rédacteurs de la déclaration d'indépendance des États-Unis (1776) et aux 55 délégués à la Convention de Philadelphie, rédacteurs de la Constitution américaine (1787). Les principaux sont Georges Washington, James Madison, Thomas Jefferson, Benjamin Franklin, Alexander Hamilton et John Jay"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hommes d'État - États-Unis"}, {"authorized_access_point": "États-Unis - 1775-1783 (Révolution)"}, {"authorized_access_point": "États-Unis - 1783-1789 (Confédération)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/151385432", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16276915r", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16276915", "source": "BNF"}], "classification": [{"name": "Groupes sociaux", "type": "bf:ClassificationDdc", "classificationPortion": "305"}, {"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "950"}], "variant_access_point": ["Fondateurs des États-Unis", "Founding Fathers of the United States"], "authorized_access_point": "Pères fondateurs des États-Unis"} 1 +2024-09-11 09:08:27.652053 2024-09-11 09:08:27.652056 6db0dcf1-569f-417d-9312-098d8dfbcded {"md5": "4dc9f3b9fb7b2e050e5f0fb3e7b8fbaa", "pid": "15212201X", "note": [{"label": ["LC online cat., 2017-06-09 : Embassy takeovers -- England -- London", "Wikipédia : Opération Nimrod - https://fr.wikipedia.org (2017-06-09)", "Universalia 1981", "The Longman companion to Britain since 1945 / C. Cook, J. Stevenson, 2000", "Operation Nimrod : the Iranian Embassy Siege - http://www.eliteukforces.info - 2017-06-09 (2017-06-09)"], "noteType": "dataSource"}, {"label": ["30 avril 1980 : un commando de 6 Arabes iraniens du Khouzistan opposés à la République islamique prend en otage 26 membres du personnel de l'ambassade d'Iran à Londres, et réclament la libération de 91 prisonniers en Iran, que refuse le président Bani Sadr ; un otage est exécuté et 5 sont relâchés. Le 5 mai les SAS donnent l'assaut (opération Nimrod) : 5 des 6 membres du commando sont abattus, un otage est tué et 19 sont libérés"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Otages - Grande-Bretagne"}, {"authorized_access_point": "Grande-Bretagne - 1979-...."}, {"authorized_access_point": "Londres (GB) - Histoire"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/15212201X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb165050300", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16505030", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Ambassade d'Iran à Londres, Prise d'otages de l' (1980)", "Londres, Prise d'otages de (1980)", "Nimrod, Opération (1980)", "Opération Nimrod (1980)", "Otages de l'ambassade d'Iran à Londres (1980)", "Prise d'otages de Londres (1980)", "Siège de l'ambassade d'Iran à Londres (1980)"], "authorized_access_point": "Prise d'otages de l'ambassade d'Iran à Londres (1980)"} 1 +2024-09-11 09:08:27.708764 2024-09-11 09:08:27.708767 b0098c37-5e5e-477b-a0e5-92bc84633996 {"md5": "e4dd038bee08a84de6449ef7216b413c", "pid": "15909545X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Art - [Localisations géographiques]"}], "related": [{"authorized_access_point": "Art kazakh"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/15909545X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb165747246", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16574724", "source": "BNF"}], "classification": [{"name": "Arts (sauf littérature)", "type": "bf:ClassificationDdc", "classificationPortion": "700"}], "authorized_access_point": "Art - Kazakhstan"} 1 +2024-09-11 09:08:27.76653 2024-09-11 09:08:27.766533 a32a55ec-2cfa-4e83-b0e9-5c03bf9bf88d {"md5": "90cf9ae3fa8bae175a3ca84acec6bdf8", "pid": "167934813", "note": [{"label": ["Cloud computing : une rupture décisive pour l'informatique d'entreprise / G. Plouin, 2011", "Mashups : architecture des applications Web tactiques d'entreprise / J.-M. Chauvet [in] Techniques de l'ingénieur, 2012, H6025", "Big data glossary : a guide to the new generation of data tools / P. Warden, 2011", "Storing and managing big data : NoSQL, Hadoop and more / K. Roebuck, 2011"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bases de données"}], "related": [{"authorized_access_point": "Données massives"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/167934813", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16665965j", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16665965", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "authorized_access_point": "NoSQL"} 1 +2024-09-11 09:08:27.827216 2024-09-11 09:08:27.827221 246d1d72-bab1-4ef3-9c8b-4b86bd4d564b {"md5": "fab65aba87115a2584f6a99fef4e2827", "pid": "168476010", "note": [{"label": ["Code civil (art.16 à 16-9) - http://www.legifrance-gouv.fr (2013-03-26)", "Convention d'Oviédo du 4 avril 1997 sur les droits de l'homme et la biomédecine / Conseil de l'Europe, 1998", "Déclaration universelle sur la bioéthique et les droits de l'homme / Unesco, 2005 - http://portal.unesco.org (2013-03-26)", "Droits de l'homme, bioéthique et rapport au corps / Commission Nationale Consultative des droits de l'homme, 2007 - http://www.cncdh.fr (2013-03-26)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Bioéthique"}, {"authorized_access_point": "Droits de l'homme"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/168476010", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16672663h", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16672663", "source": "BNF"}], "classification": [{"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}, {"name": "Médecine", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Bioéthique et droits de l'homme"], "authorized_access_point": "Droits de l'homme et bioéthique"} 1 +2024-09-11 09:08:27.894092 2024-09-11 09:08:27.894097 b92d3070-fddb-403b-a177-4f7cb24eae02 {"md5": "feda2451907f2ab4db81dde20d4a4250", "pid": "169910733", "note": [{"label": ["Wikipédia : Élection présidentielle sénégalaise de 2012 - http://fr.wikipedia.org (2013-06-06)", "Les élections présidentielles au Sénégal de mars 2012 / A. A. Sy, 2013"], "noteType": "dataSource"}, {"label": ["26 février et 25 mars 2012 : Macky Sall (Alliance pour la République) est élu avec 65,8 % des voix face au président sortant Abdoulaye Wade (Parti démocratique sénégalais)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/169910733", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb166886279", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16688627", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "950"}], "authorized_access_point": "Présidents - Sénégal - Élection (2012)"} 1 +2024-09-11 09:08:27.956431 2024-09-11 09:08:27.956435 ac6e6256-e60b-4b62-8339-588aa832c03d {"md5": "a308af870b685bceceb34f492115562d", "pid": "17129226X", "note": [{"label": ["Bullecourt / G. Keech, 1999", "Les batailles de Bullecourt en 1917 / P. Duhamel, 2013", "Dict. of battles and sieges / T. Jaques, 2007 (art. : Arras - 1917)", "The Times hist. of the War, t. XV (p. 55-66)"], "noteType": "dataSource"}, {"label": ["11 avril et 3 mai 1917 : échec de deux offensives australiennes contre la Ligne Hindenburg à Bullecourt (Pas-de-Calais), dans le cadre de la bataille d'Arras"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bataille d'Arras (1917)"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2001007955", "source": "LCSH"}], "authorized_access_point": "Bullecourt, Battle of, Bullecourt, France, 1917"}, {"source": "RVMLaval", "authorized_access_point": "Bataille de Bullecourt, Bullecourt, France, 1917"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/17129226X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb167037941", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16703794", "source": "BNF"}], "classification": [{"name": "Histoire de la France", "type": "bf:ClassificationDdc", "classificationPortion": "944"}], "variant_access_point": ["Bataille de Bullecourt (1917)", "Bullecourt, Batailles de (1917)"], "authorized_access_point": "Batailles de Bullecourt (1917)"} 1 +2024-09-11 09:08:28.023809 2024-09-11 09:08:28.023814 71d82dcc-54d7-47d8-959e-1b5bbed54579 {"md5": "5b4fea04ccd23f969ef7f60fa6c07fa0", "pid": "17523308X", "note": [{"label": ["Encycl. universalis (art. : Bosnie-Herzégovine) - http://www.universalis-edu.com (2013-12-18)", "Dict. encyclopédique d'histoire / M. Mourre, 1996 (art. : Bosnie-Herzégovine)", "L'empire austro-hongrois, 1815-1918 / J. Bérenger, 2011", "The decline and fall of the Habsburg Empire, 1815-1918 / A. Shed, 1995 (p. 252-253) : Bosnian crisis", "Hist. du continent européen, de 1850 à la fin du XXe siècle / J.-M. Gaillard, A. Rowley, 1998 (p. 277-278)", "Hist. des Balkans, XIVe-XXe siècles / G. Castellan, 1991 (p. 367-368) : 4e crise d'Orient", "L'Europe de 1815 à nos jours / J.-B. Duroselle, 1993 (p. 159) : crise de Bosnie-Herzégovine"], "noteType": "dataSource"}, {"label": ["5 octobre 1908 : l'annexion de la Bosnie-Herzégovine (sous administration austro-hongroise depuis 1878) par l'Autriche-Hongrie suscite une crise européenne, résolue par une médiation allemande (29 mars 1909) : l'Empire ottoman accepte l'annexion moyennant la restitution du sandjak de Novi Pazar"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Politique et gouvernement - Europe - 1871-1918"}, {"authorized_access_point": "Orient, Question d' (Balkans)"}, {"authorized_access_point": "Bosnie-Herzégovine - 1878-1918"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/17523308X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16731093w", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16731093", "source": "BNF"}], "classification": [{"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Bosnie-Herzégovine, Crise de (1908-1909)", "Crise de Bosnie-Herzégovine (1908-1909)"], "authorized_access_point": "Crise bosniaque (1908-1909)"} 1 +2024-09-11 09:08:28.086533 2024-09-11 09:08:28.086536 8faf9177-0515-481b-8cb9-a71c8b0a6e77 {"md5": "f104c8692db95561fda68eea5a58d3e8", "pid": "17939360X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/17939360X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16776255x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16776255", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Éducation", "type": "bf:ClassificationDdc", "classificationPortion": "370"}], "authorized_access_point": "Échanges culturels danois"} 1 +2024-09-11 09:08:41.25031 2024-09-11 09:08:41.250315 7c381cad-a9fc-45b2-8126-8fd9e375d2a1 {"md5": "dc87ca4f72e10f72b7ac867884ec2a28", "pid": "279307446", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman danois"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307446", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181538472", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18153847", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Roman de science-fiction pour la jeunesse danois"], "authorized_access_point": "Roman de science-fiction danois pour la jeunesse"} 1 +2024-09-11 09:08:28.144133 2024-09-11 09:08:28.144136 59791290-d0e5-4263-a3be-0f4824f3981d {"md5": "d8822c4636ad758cd2c7fe30c3d1c5ad", "pid": "180214845", "note": [{"label": ["The complete costume dict. / E. J. Lewandowski, 2011", "Encycl. of national dress / J. Condra, 2013"], "noteType": "dataSource"}, {"label": ["Manteau traditionnel des bergers hongrois"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Manteaux"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/180214845", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16902679z", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16902679", "source": "BNF"}], "classification": [{"name": "Costume et apparence personnelle", "type": "bf:ClassificationDdc", "classificationPortion": "391"}, {"name": "Économie domestique", "type": "bf:ClassificationDdc", "classificationPortion": "640"}], "variant_access_point": ["Cifraszür"], "authorized_access_point": "Szür"} 1 +2024-09-11 09:08:28.204738 2024-09-11 09:08:28.204741 631dbff7-8295-40d2-b1c3-901a43aa9fde {"md5": "c4cb418473cb8544dd82c857ce40350b", "pid": "180214926", "note": [{"label": ["Wikipédia - http://fr.wikipedia.org (2014-08-07)", "L'Écosse et la tentation de l'indépendance : le référendum d'autodétermination de 2014 / E. Camp-Pietrain, 2014", "En Écosse, le oui à l'indépendance progresse / É. Albert [in] Le Monde, 2014-04-12 - http://www.lemonde.fr (2014-08-07)"], "noteType": "dataSource"}, {"label": ["Référendum sur l'indépendance prévu le 8 septembre 2014"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/180214926", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16902747m", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16902747", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Référendum sur l'indépendance de l'Écosse (2014)"], "authorized_access_point": "Référendum - Grande-Bretagne - Écosse (GB) - 2014"} 1 +2024-09-11 09:08:28.264136 2024-09-11 09:08:28.264139 a83cdf03-94b9-4644-a492-bf5075aa89e3 {"md5": "09b8548f643963087757203cf61096dc", "pid": "18028505X", "note": [{"label": ["S'emploie uniquement en subdivision aux guerres, par ex. : Guerre de Hollande (1672-1678) -- Prisonniers et prisons des Néerlandais"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/18028505X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16904476v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16904476", "source": "BNF"}], "classification": [{"name": "Art et science militaires", "type": "bf:ClassificationDdc", "classificationPortion": "355"}, {"name": "Histoire", "type": "bf:ClassificationDdc", "classificationPortion": "900"}], "authorized_access_point": "Prisonniers et prisons des Néerlandais"} 1 +2024-09-11 09:08:28.326444 2024-09-11 09:08:28.326448 9678efaf-b14e-4c78-a3f0-6bdf63dd58c1 {"md5": "b8213d2912e6ca8bed70df7b197bc366", "pid": "181882604", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Aide économique des pays BRICS"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99002742", "source": "LCSH"}], "authorized_access_point": "Economic assistance, South African"}, {"source": "RVMLaval", "authorized_access_point": "Aide économique sud-africaine"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/181882604", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb169205548", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16920554", "source": "BNF"}], "classification": [{"name": "Économie politique", "type": "bf:ClassificationDdc", "classificationPortion": "330"}], "authorized_access_point": "Aide économique sud-africaine"} 1 +2024-09-11 09:08:28.381361 2024-09-11 09:08:28.381364 49e075f8-c3c6-4a01-8521-f4a12c4248ec {"md5": "f9b9d60f4560e81a56e813238fbb20fb", "pid": "182446174", "note": [{"label": ["Wikipédia : Freedom Summer - http://fr.wikipedia.org (2014-12-23)", "Freedom Summer : luttes pour les droits civiques, Mississippi 1964 / D. McAdam, 2012", "Student activism and civil rights in Mississippi : protest politics and the struggle for racial justice, 1960-1965 / J. P. Marshall, 2013"], "noteType": "dataSource"}, {"label": ["Campagne menée au cours de l'été 1964 dans l'État du Mississippi par le Council of Federated Organizations (COFO) pour faire inscrire le maximum de Noirs sur les listes électorales"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Politique et gouvernement - États-Unis - 1963-1969"}, {"authorized_access_point": "Noirs américains - 1964-...."}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/182446174", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16934377j", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16934377", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "950"}], "variant_access_point": ["Freedom Summer (Mississippi ; 1964)", "Mississippi Summer Freedom Project (1964)", "Summer Freedom Project (Mississippi ; 1964)"], "authorized_access_point": "Mississippi Freedom Project (1964)"} 1 +2024-09-11 09:08:28.819889 2024-09-11 09:08:28.819894 940fb3a0-caf5-42a0-b55e-5a4947b15d70 {"md5": "362a8ceff5927e8df0b0e40ef6490cc5", "pid": "190994320", "note": [{"label": ["Théo, 2009", "Dict. encyclopédique du christianisme ancien / A. Di Berardino, 1990 (art. : Acace de Constantinople)", "Dict. encyclopédique d'histoire / M. Mourre, 1996 (art. : Acace de Constantinople) : schisme d'Acace"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Église - 30-600 (Église primitive)"}, {"authorized_access_point": "Schisme d'Orient"}], "related": [{"authorized_access_point": "Monophysisme"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/190994320", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16928417q", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16928417", "source": "BNF"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Histoire", "type": "bf:ClassificationDdc", "classificationPortion": "900"}], "variant_access_point": ["Acace, Schisme d'", "Schisme d'Acace"], "authorized_access_point": "Schisme acacien (484-519)"} 1 +2024-09-11 09:08:28.442121 2024-09-11 09:08:28.442125 132367f2-910c-4f62-ba86-88f848648dc6 {"md5": "a7d725634dfea4769b53f183707fc6c3", "pid": "183790936", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Métis - [Localisations géographiques]"}, {"authorized_access_point": "Ethnologie - États-Unis"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85083454", "source": "LCSH"}], "authorized_access_point": "Melungeons"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh94000806", "source": "LCSH"}], "authorized_access_point": "Racially mixed people--United States"}, {"source": "RVMLaval", "authorized_access_point": "Métis -- États-Unis"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/183790936", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb169439535", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16943953", "source": "BNF"}], "classification": [{"name": "Ethnologie", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "variant_access_point": ["Américains métis", "Malungeons", "Melungeons", "Métis américains"], "authorized_access_point": "Métis - États-Unis"} 1 +2024-09-11 09:08:28.508368 2024-09-11 09:08:28.508372 17039f90-258d-48e4-81ef-3fcbfdfccc25 {"md5": "5d33c42bf690b23814192be41c47da69", "pid": "183791428", "note": [{"label": ["Traité sur le fonctionnement de l'UE (art. 26)", "La libre circulation des ressortissants de l'UE - http://ec.europa.eu (2015-02-12)", "La dynamique du principe de proportionnalité : essai dans le contexte des libertés de circulation du droit de l'Union européenne / A. Marzal-Yetano"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Marché intérieur - Droit européen"}], "related": [{"authorized_access_point": "Libre circulation des personnes"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/183791428", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16945349r", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16945349", "source": "BNF"}], "classification": [{"name": "Droit", "type": "bf:ClassificationDdc", "classificationPortion": "340"}], "authorized_access_point": "Libre circulation des personnes - Droit européen"} 1 +2024-09-11 09:08:28.578429 2024-09-11 09:08:28.578433 2db8f149-3b57-447d-ae8e-9dd3c82287b8 {"md5": "d0aabb8c53fced44ef8b576ca8f323b8", "pid": "184625807", "note": [{"label": ["Wikidata : Euromaïdan - https://www.wikidata.org/wiki/Q15224558 (2023-08-31)", "Wikipédia : Euromaïdan - http://fr.wikipedia.org (2015-03-23)", "Encycl. universalis (art. : Kiev) : Maïdan - http://www.universalis.fr (2015-03-23)", "Les dessous de la Révolution ukrainienne / O. Ostriichouk [in] Le Débat, 2014, 180 (pp. 3-16) - http://www.cairn.info (2015-03-23)", "L'insurrection à Kiev : lieux et acteurs / M. Sagnol [in] Les Temps modernes, 2014, 678 (pp. 148-169) - http://www.cairn.info (2015-03-23)", "Journal de Maïdan / A. Kourkov, 2014"], "noteType": "dataSource"}, {"label": ["21 novembre 2013 : la décision du gouvernement ukrainien de ne pas signer un accord d'association avec l'Union européenne suscite un mouvement d'opposition connu sous le nom d'Euromaïdan ou Maïdan, du nom de la Place de l'Indépendance (Maidan Nezalejnosti) à Kiev, lieu principal des rassemblements ; 22 février 2014 : destitution par le Parlement ukrainien du président Viktor Ianoukovitch, en fuite depuis la veille"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ukraine - 2013-...."}], "related": [{"authorized_access_point": "Guerre du Donbass (Ukraine ; 2014-....)"}, {"authorized_access_point": "Guerre russo-ukrainienne (2022-....)"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Ukraine--Histoire--2013-2014 (Euromaïdan)"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2014001396", "source": "LCSH"}], "authorized_access_point": "Ukraine -- History -- Euromaidan Protests, 2013-2014"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/184625807", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16954349q", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16954349", "source": "BNF"}], "classification": [{"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire médiévale, moderne et contemporaine (sauf la France)", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Євромайдан", "Майдан Незалежності", "Maïdan (Ukraine ; 2013-2014)", "Révolution d'Euromaïdan (Ukraine ; 2013-2014)", "Révolution de février 2014 (Ukraine)", "Révolution de Maïdan (Ukraine ; 2013-2014)"], "authorized_access_point": "Euromaïdan (Ukraine ; 2013-2014)"} 1 +2024-09-11 09:08:28.638049 2024-09-11 09:08:28.638053 dd66eb7f-96d1-4c48-b68a-a7cfe68d7d6c {"md5": "9ade28729ef9b6b5ab912b63c65b3b8f", "pid": "185018440", "note": [{"label": ["AngularJS - https://www.angularjs.org (2015-03-30)", "AngularJS / P. Tarasiewicz, R. Böhm, 2014", "Learning AngularJS : a guide to AngularJS development / K. Williamson, 2015", "AngularJS : développez aujourd'hui les applications web de demain / S. Olliver, P.-A. Gury, 2015"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Langages de programmation"}], "related": [{"authorized_access_point": "Applications Web"}, {"authorized_access_point": "HTML (langage de balisage)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/185018440", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16956089m", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16956089", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "authorized_access_point": "AngularJS (langage de programmation)"} 1 +2024-09-11 09:08:28.696489 2024-09-11 09:08:28.696492 2d278946-ddce-4e01-ac69-d3fdf080158c {"md5": "9f8279872edf6274276ca347415a8170", "pid": "187082324", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Musique par ordinateur"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/187082324", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb169750099", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16975009", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Éditeurs de partitions (logiciels)"} 1 +2024-09-11 09:08:28.760006 2024-09-11 09:08:28.760009 90f5e018-560c-4aad-af00-cb3e6cc4169f {"md5": "7c5b1c7d2ba5048ccac44d8a75683538", "pid": "190795786", "note": [{"label": ["Lazarus - http://www.lazarus-ide.org (2016-01-12)", "Getting started with Lazarus and Free Pascal : a beginners and intermediate guide to Free Pascal using Lazarus Ide / M. Abiola-Ellison, 2015"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Développement rapide d'applications"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/190795786", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17018624x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF17018624", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "authorized_access_point": "Lazarus (environnement de développement d'applications)"} 1 +2024-09-11 09:08:28.878924 2024-09-11 09:08:28.878928 d77da66d-5914-4285-bff9-a06c442de576 {"md5": "ad40900a12f6ac64d498fd54ea290f74", "pid": "193304104", "note": [{"label": ["Wikipédia : référendum sur l'appartenance du Royaume-Uni à l'Union européenne - http://fr.wikipedia.org (2017-04-27)", "Brexit : résultat des sondages, définition, date du référendum,... 5 clés pour comprendre / B. Deshayes, 2016 - http://www.linternaute.com/actualite/politique/1279823-brexit-definition-date-du-referendum-resultat-consequences (2016-05-20)", "\\"Brexit\\" : le jour où le Royaume-Uni est sorti de l'Europe [in] Le Monde, 2016-06-24 - http://www.lemonde.fr (2017-04-27)"], "noteType": "dataSource"}, {"label": ["23 juin 2016 : 51,89 % des électeurs britanniques se prononcent pour la sortie du Royaume-Uni de l'Union européenne"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Brexit"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Grande-Bretagne -- Histoire -- 2016 (Référendum sur la sortie de l'Union européenne)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/193304104", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb170444330", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF17044433", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Brexit, Référendum sur le (2016)", "Référendum sur l'appartenance du Royaume-Uni à l'Union européenne (2016)", "Référendum sur la sortie de la Grande-Bretagne de l'Union européenne (2016)", "Référendum sur le Brexit (2016)", "Référendum sur le maintien de la Grande-Bretagne dans l'Union européenne (2016)"], "authorized_access_point": "Référendum - Grande-Bretagne - 2016"} 1 +2024-09-11 09:08:28.936646 2024-09-11 09:08:28.93665 b49f1dd2-dfc5-4393-802e-6ee0dd9ee944 {"md5": "6ed3a8d1fde65ffd650e63ed0dcd453f", "pid": "193617668", "note": [{"label": ["Bases de données Marques - https://bases-marques.inpi.fr (2016-05-25)", "La Worcester sauce / M. Dargent, 2015"], "noteType": "dataSource"}, {"label": ["Worcestershire Sauce est une appellation commerciale"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sauces"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Sauce Worcestershire"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85148091", "source": "LCSH"}], "authorized_access_point": "Worcestershire sauce"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/193617668", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb170482620", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF17048262", "source": "BNF"}], "classification": [{"name": "Economie domestique, hôtellerie", "type": "bf:ClassificationDdc", "classificationPortion": "640"}], "variant_access_point": ["Sauce Worcester", "Sauce Worcestershire - Recettes", "Worcestershire, Sauce"], "authorized_access_point": "Sauce Worcestershire"} 1 +2024-09-11 09:08:28.994594 2024-09-11 09:08:28.994598 185c5820-fa47-4731-b53f-1c94bde7dad7 {"md5": "e39333079ad40734ed26c12f0c3dd7ce", "pid": "196951763", "note": [{"label": ["Wikipedia : arbitrismo - https://es.wikipedia.org (2016-11-24)", "Les sociétés au XVIIe siècle : Angleterre, Espagne, France / A. Antoine, C. Michon, 2006 (p. 358-359)", "L'arbitrisme, un concept d'historien ? / A. Dubet [in] Les Cahiers du Centre de Recherches Historiques, 2000, 24 - https://ccrh.revues.org/2062 (2016-11-24)", "La pensée économique, Les auteurs : La Renaissance en Europe / J.-P. Potier, 2005 - http://ses.ens-lyon.fr/articles/les-auteurs-25452 (2016-11-24)"], "noteType": "dataSource"}, {"label": ["Penseurs économiques espagnols (fin 16e-17e siècle) qui adressaient aux autorités des mémoires pour que par leurs décisions (arbitrio) elles résolvent les problèmes économiques"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Vie intellectuelle - Espagne - 1516-1700"}, {"authorized_access_point": "Économie politique - Jusqu'à 1800"}, {"authorized_access_point": "Économistes"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196951763", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb170883801", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF17088380", "source": "BNF"}], "classification": [{"name": "Groupes sociaux", "type": "bf:ClassificationDdc", "classificationPortion": "305"}, {"name": "Économie politique", "type": "bf:ClassificationDdc", "classificationPortion": "330"}], "variant_access_point": ["Arbitrisme", "Arbitrismo", "Arbitristas"], "authorized_access_point": "Arbitristes"} 1 +2024-09-11 09:08:29.060195 2024-09-11 09:08:29.060199 cad4885c-667f-4182-b604-19cfa156a64f {"md5": "da3d469ac48d64726e0a3e5037cca0de", "pid": "197956653", "note": [{"label": ["\\"Dis Siri\\", enquête sur le génie à l'intérieur du smartphone / N. Santolaria, 2016", "Le deuxième âge de la machine : travail et prospérité à l'heure de la révolution technologique / E. Brynjolfsson, A. McAfee, 205", "Tous digitalisés : et si votre futur avait commencé sans vous ? / M. Diaz, 2015 (p. 58)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Agents intelligents (logiciels)"}, {"authorized_access_point": "Interfaces utilisateur (informatique)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/197956653", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17100386p", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF17100386", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Assistants intelligents", "Assistants numériques", "Assistants personnels virtuels", "Assistants virtuels"], "authorized_access_point": "Assistants personnels intelligents (logiciels)"} 1 +2024-09-11 09:08:29.120727 2024-09-11 09:08:29.12073 cb5f63f7-641e-4a03-b060-090f8c7d5ff8 {"md5": "a46ed8ceb98d0d5857ca5ab78aa716a5", "pid": "197957358", "note": [{"label": ["S'emploie uniquement en subdivision"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Enseignement biblique"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Dans la littérature"}, {"authorized_access_point": "Enseignement biblique"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/197957358", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17103399r", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF17103399", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Dans l'Ancien Testament", "Dans le Nouveau Testament", "Dans les livres bibliques", "Représentation biblique", "Représentation dans la Bible", "Thème biblique"], "authorized_access_point": "Dans la Bible"} 1 +2024-09-11 09:08:29.17654 2024-09-11 09:08:29.176543 8d7b5dca-8e64-48e4-a6fe-2374a9859db6 {"md5": "5ba79d6481bfaa65bfb27de642a57742", "pid": "199344019", "note": [{"label": ["S'emploie uniquement en subdivision"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Enseignement coranique"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Dans la littérature"}, {"authorized_access_point": "Enseignement coranique"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/199344019", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb171125084", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF17112508", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Représentation coranique", "Représentation dans le Coran", "Thème coranique"], "authorized_access_point": "Dans le Coran"} 1 +2024-09-11 09:08:29.236545 2024-09-11 09:08:29.236549 56fe3b28-5a7e-42dd-8339-c87bd13963bb {"md5": "b461064fb15af4a6907b499f909e6733", "pid": "199344248", "note": [{"label": ["Wikipédia : Table des Rangs - https://fr.wikipedia.org (2017-03-09)", "Hist. de la Russie des tsars / R. Pipes, 2013", "Pierre le Grand : le premier empereur de toutes les Russies / F.-D. Liechtenhan, 2015 (p. 327-330)", "Pierre le Grand : et son oeuvre / V. O. Klioutchevski, 1991 (p. 107-108)", "À propos de la notion de service dans la noblesse russe au XVIIIe et XIXe siècles / M. Confino [in] Cahiers du monde russe et soviétique, 1993, 34, 1-2 (p. 47-58) - http://www.persee.fr (2017-03-09)", "Encycl. of Russian hist. / J. R. Millar, 2004 : Table of Ranks", "Historical dict. of Russia / B. Raymond, P. Duffy, 1998 : Tabel o Rangakh (Table of Ranks)"], "noteType": "dataSource"}, {"label": ["Table créée par un oukase de Pierre le Grand du 24 janvier/4 février 1722, hiérarchisant en 14 degrés la noblesse, définie comme l'ensemble des serviteurs de l'État (tchinovniki), civils, militaires et de la Cour. Elle fut abolie le 11 novembre 1917"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Conditions sociales - Russie - 1801-1917"}, {"authorized_access_point": "Noblesse - Russie"}, {"authorized_access_point": "Stratification sociale"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/199344248", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17113185q", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF17113185", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Čin, Table des (Russie)", "Rangs, Table des (Russie)", "Tabel' o rangakh (Russie)", "Table des čin (Russie)", "Table des tchins (Russie)", "Table impériale des Rangs (Russie)", "Tchins, Table des (Russie)"], "authorized_access_point": "Table des Rangs (Russie)"} 1 +2024-09-11 09:08:29.301751 2024-09-11 09:08:29.301758 b6034189-ffd2-4777-a68a-d2c8d4123022 {"md5": "afcf7dd23dc4231a9eefcc7305dc78c4", "pid": "200582038", "note": [{"label": ["Wikipédia - https://fr.wikipedia.org (2017-04-24)", "Hist. de la RDA / S. Lorrain, 1994 (p. 42)", "Frontières du communisme / S. Carré, S. Dullin, 2007", "Berlin, guerre des images d'une mémoire partagée (1945-1989) / C. Delage [in] Vingtième siècle, 1992, 34 - http://www.jstor.org (2017-04-24)", "The German democratic Republic / P. Grider, 2012 : Combat groups of the working class", "Proletarischer Mythos und realer Sozialismus : die Kampfgruppen der Arbeitsklasse in der DDR / T. Siebeneichner, 2014"], "noteType": "dataSource"}, {"label": ["Organisations paramilitaires d'employés dans les entreprises de la République démocratique allemande (1953-1989), dépendant du SED"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Forces paramilitaires"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4240507-5", "source": "GND"}], "authorized_access_point": "Betriebskampfgruppe"}, {"source": "GND", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1041423551", "source": "GND"}], "authorized_access_point": "Sozialistische Einheitspartei Deutschlands. Kampfgruppen der Arbeitsklasse"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/200582038", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb171224020", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF17122402", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "variant_access_point": ["Betriebskampfgruppen (République démocratique allemande)", "Groupes de combat d'entreprise (République démocratique allemande)", "Kampfgruppen der Arbeitsklasse (République démocratique allemande)"], "authorized_access_point": "Groupes de combat de la classe ouvrière (République démocratique allemande)"} 1 +2024-09-11 09:08:29.36025 2024-09-11 09:08:29.360255 05ebfc68-d6d6-4bb9-b257-82babd55d520 {"md5": "d322a3994fd1b8f6b9c0b4b5c97232d6", "pid": "200884530", "note": [{"label": ["Du pain, du sel et du coeur, recettes de cuisine albanaise / R. Cela Grasset, 2017", "The best of Albanian cooking : favorite family recipes / K. et R. John Hysa, 1998"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Cuisine balkanique"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh98003206", "source": "LCSH"}], "authorized_access_point": "Cooking, Albanian"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/200884530", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb171255547", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF17125554", "source": "BNF"}], "classification": [{"name": "Économie domestique", "type": "bf:ClassificationDdc", "classificationPortion": "640"}], "variant_access_point": ["Cuisine albanaise - Albanie"], "authorized_access_point": "Cuisine albanaise"} 1 +2024-09-11 09:08:29.419715 2024-09-11 09:08:29.41972 7eb3da0a-a3ad-4d57-a4fa-00b5ee1223fd {"md5": "39d89397fa48b1c38e63f75ba38a5a14", "pid": "204008557", "note": [{"label": ["Wikipedia : meridionalismo - https://it.wikipedia.org (2017-09-07)", "L'émergence d'un néo-méridionalisme politique en Italie : vers l'accroissement de la fracture territoriale ? / A. Fazzi [in] Critique internationale, 2011/1, 50 (p. 111-128) - http://www.cairn.info (2017-09-07)", "Meridionalismo critico : scritti sulla questione meridionale (1945-1973) / B. Caizzi, 1998", "Tradizione e attualità del meridionalismo / S. Cafiero, 1989"], "noteType": "dataSource"}, {"label": ["Études spécialisées sur le développement économique, social et culturel de l'Italie du Sud, en particulier dans le cadre de l'État unitaire italien"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Conditions économiques - Italie"}, {"authorized_access_point": "Conditions sociales - Italie"}], "related": [{"authorized_access_point": "Régionalisme"}, {"authorized_access_point": "Italie (sud)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/204008557", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17149211h", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF17149211", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Économie politique", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Problèmes et services sociaux", "type": "bf:ClassificationDdc", "classificationPortion": "360"}], "variant_access_point": ["Études méridionalistes (Italie)", "Meridionalismo", "Question méridionale (Italie)"], "authorized_access_point": "Méridionalisme (Italie)"} 1 +2024-09-11 09:08:29.478625 2024-09-11 09:08:29.478629 3bd42093-71fa-4a75-9a50-f72b8da48b4c {"md5": "f131d1671c85deb87a4a1dd5fe730937", "pid": "219951152", "note": [{"label": ["Android developers - https://developer.android.com (2017-09-26)", "Démarrer avec Android Studio / B. Hohensee, 2014", "Expert Android Studio / M. Yener, O. Dundar, 2016", "Android Studio cookbook / M. van Drongelen, 2015"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Générateurs (logiciels)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/219951152", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17153081w", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF17153081", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Android Studio (environnement de développement d'applications)"], "authorized_access_point": "Google Android Studio (environnement de développement d'applications)"} 1 +2024-09-11 09:08:29.541777 2024-09-11 09:08:29.541781 4db7fcbb-19d7-4dfc-ac9a-b8737b868923 {"md5": "5b7f622589cdf192978f2c30d42f0813", "pid": "219966540", "note": [{"label": ["Wikipédia : Black Lives Matter - https://fr.wikipedia.org (2019-01-10)", "Black Lives Matter : un nouveau souffle pour les voix des Noirs / R. Diallo [in] Libération, 2016-05-28 - http://www.liberation.fr (2019-01-10)", "The making of Black lives matter : a brief history of an idea / C. J. Lebron, 2017", "Black Lives Matter - https://blacklivesmatter.com (2019-01-10)"], "noteType": "dataSource"}, {"label": ["Mouvement militant afro-américain apparu en 2013, qui se mobilise contre la violence et le racisme systémique envers les Noirs"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Politique et gouvernement - États-Unis - 2009-2017"}, {"authorized_access_point": "Mouvements sociaux - États-Unis"}], "related": [{"authorized_access_point": "Mouvements des droits civiques"}, {"authorized_access_point": "Noirs américains - Droits"}, {"authorized_access_point": "Lutte contre le racisme"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/219966540", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17156838p", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF17156838", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Économie politique", "type": "bf:ClassificationDdc", "classificationPortion": "330"}], "variant_access_point": ["Black Lives Matter", "BLM", "Les vies des Noirs comptent (mouvement)", "Mouvement Black Lives Matter", "Les vies des Noirs comptent (mouvement)"], "authorized_access_point": "Black Lives Matter (mouvement)"} 1 +2024-09-11 09:08:29.610617 2024-09-11 09:08:29.610621 1c7105eb-d1a3-410f-aee9-9fb78f4bcfbe {"md5": "e25603cb8a21a2eb00a604d5c81efbcc", "pid": "223495913", "note": [{"label": ["Wikipedia : Asaba massacre - https://en.wikipedia.org (2018-10-11)", "La crise du Biafra / J.-L. Clergerie, 1994 (p. 239)", "The Asaba massacre : trauma, memory, and the Nigerian civil war / S. E. Bird, F. M. Ottanelli, 2017", "The history and legacy of the Asaba, Nigeria, Massacres / S. E. Bird, F. Ottanelli [in] African studies Review, 2011, 54 - https://www.cambridge.org (2018-10-11)", "Asaba massacre of 1967 / Oldnaija - https://oldnaija.org (2018-10-11)"], "noteType": "dataSource"}, {"label": ["5-7 octobre 1967 : massacres par l'armée nigériane de la population civile d'Asaba, majoritairement ibo et soupçonnée de connivence avec les Biafrais : le 5, les militaires entrent dans la ville, pillent et tuent hommes, femmes et enfants ; le 7, ils rassemblent à l'écart la population masculine et l'exécutent à la mitrailleuse (plus de 1000 victimes au total) ; dans les jours suivants les femmes et filles sont violées ou mariées de force"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Massacres - Nigeria"}, {"authorized_access_point": "Nigeria - 1967-1970 (Guerre civile) - Atrocités"}], "related": [{"authorized_access_point": "Asaba (Nigeria)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/223495913", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17703943t", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF17703943", "source": "BNF"}], "classification": [{"name": "Histoire du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "950"}], "variant_access_point": ["Asaba, Massacre d' (1967)", "Massacres d'Asaba (1967)"], "authorized_access_point": "Massacre d'Asaba (1967)"} 1 +2024-09-11 09:08:29.671733 2024-09-11 09:08:29.671737 2b0159b7-3d11-4af2-a782-b8288e04b1c8 {"md5": "95b06843d26858441c5d947ca088d45e", "pid": "223831840", "note": [{"label": ["MIT App Inventor - http://appinventor.mit.edu (2018-01-22)", "Absolute App Inventor 2 : Android programming for all / H. Amerkashi, 2015", "App Inventor 2 : create your own Android apps, 2014", "Learning MIT App Inventor : a hands-on guide to building your own Android apps / D. Walter, M. Sherman, 2014"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Générateurs (logiciels)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/223831840", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb177092571", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF17709257", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["App Inventor pour Android (environnement de développement d'applications)"], "authorized_access_point": "App Inventor (environnement de développement d'applications)"} 1 +2024-09-11 09:08:29.730705 2024-09-11 09:08:29.730708 14b88cbe-3785-43f6-b819-810ff5b9218f {"md5": "afc303246e5a385fd884c9c7b5a12510", "pid": "225382520", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2017003944", "source": "LCSH"}], "authorized_access_point": "Diplomatic and consular service, Paraguayan"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/225382520", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17720890r", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF17720890", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "authorized_access_point": "Service diplomatique et consulaire paraguayen"} 1 +2024-09-11 09:08:30.039361 2024-09-11 09:08:30.039364 24c47dbf-c387-4922-8ac0-aec1c59692b1 {"md5": "36add1130792f974295d5ed37166b35b", "pid": "234183721", "note": [{"label": ["Internet Information Services 6 / [Johnny Brochard], cop. 2005"], "noteType": "dataSource"}, {"label": ["Intègre des fonctionnalités de serveur Web. IIS 6.0 fonctionne uniquement sur Microsoft Windows Server 2003"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Serveurs Web"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/234183721", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15077072v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15077072", "source": "BNF"}], "classification": [{"name": "Physique appliquée", "type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Microsoft Internet Information Services 6.0 (serveur)", "IIS (serveur)"], "authorized_access_point": "Microsoft Internet Information Services (serveur)"} 1 +2024-09-11 09:08:29.797351 2024-09-11 09:08:29.797356 bc44ffee-d61f-4d88-964d-ac16bb2d3781 {"md5": "5b72184c7432ff0e3ec90abd7c9136f8", "pid": "227367677", "note": [{"label": ["Wikipédia : référendum irlandais sur l'adhésion aux communautés européennes - http://fr.wikipedia.org (2018-06-01)", "Dict. encyclopédique d'histoire / M. Mourre, 1996", "Hist. de l'Irlande : de 1912 à nos jours / A. Slaby, 2016"], "noteType": "dataSource"}, {"label": ["10 mai 1972 : l'adhésion de la République d'Irlande aux Communautés européennes (3e amendement de la Constitution de 1937) est approuvée par 83 % des votants, avec un taux de participation de 70,8 %; elle est effective le 1er janvier 1973"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/227367677", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb177386832", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF17738683", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "226068277"}, "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Adhésion de l'Irlande aux Communautés européennes, Référendum sur l' (1972)", "Référendum sur l'adhésion aux Communautés européennes (Irlande ; 1972)", "Référendum sur l'adhésion de l'Irlande aux Communautés européennes (1972)"], "authorized_access_point": "Référendum - Irlande - 1972"} 1 +2024-09-11 09:08:29.857145 2024-09-11 09:08:29.857148 1face21f-6892-4eca-9132-ea3bc3f803bc {"md5": "f8836328524ec117f76aac15e41632ae", "pid": "227858689", "note": [{"label": ["Wikipédia - https://fr.wikipedia.org (2018-06-12)", "Encycl. universalis (art. : Extrême droite) : völkisch allemands - http://www.universalis-edu.com (2018-06-12)", "Aspects du fondamentalisme national en Allemagne de 1890 à 1945 / L. Dupeux, 2001 (p. 173-175)", "L'Europe et le mythe de l'Occident : la construction d'une histoire / G. Corm, 2012", "Handbuch zur \\"Völkischen Bewegung\\" 1871-1918 / U. Puschner, W. Schmitz, J. H. Ulbricht, 1996"], "noteType": "dataSource"}, {"label": ["Mouvement intellectuel et politique allemand (deuxième moitié du 19e siècle et début du 20e siècle), d'inspiration nationaliste, ethniciste et néopaïenne"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Vie intellectuelle - Allemagne - 1871-1918"}, {"authorized_access_point": "Nationalisme"}], "related": [{"authorized_access_point": "Néopaganisme"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/227858689", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb177411580", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF17741158", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "variant_access_point": ["Völkisch, Mouvement", "Völkische Bewegung"], "authorized_access_point": "Mouvement völkisch"} 1 +2024-09-11 09:08:29.919021 2024-09-11 09:08:29.919025 3ab8c243-7db2-48aa-9ddd-6c862e033939 {"md5": "52433090b89ae3721c358338e3b52648", "pid": "228803608", "note": [{"label": ["Hist. contemporaine des relations Sud-Sud. Les contours d'une évolution graduelle / F. Soulé-Kohndou [in] Afrique contemporaine, 2013, 248, (p. 108-111) - https://www.cairn.info (2018-06-26)", "Les relations Sud-Sud : culture et diplomatie [n° spécial de] Cahiers d'Amérique latine, 2015, 80", "Les nouvelles alliances Sud-Sud et le rôle des relations tricontinentales dans la crise / P. Hugon [in] Revue internationale et stratégique, 2012, 86 (p. 57-65) - https://www.cairn.info (2018-06-26)"], "noteType": "dataSource"}, {"label": ["Voir aussi la subdivision Relations extérieures aux continents et pays du Sud, par ex. : Amérique latine -- Relations extérieures -- Pays arabes"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Relations extérieures - Pays en voie de développement"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Coopération entre pays en voie de développement"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/228803608", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17744530f", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF17744530", "source": "BNF"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "variant_access_point": ["Relations internationales Sud-Sud", "Sud-Sud, Relations"], "authorized_access_point": "Relations Sud-Sud"} 1 +2024-09-11 09:08:29.977086 2024-09-11 09:08:29.977089 f180289c-afbe-4a57-a83b-02ba74f34545 {"md5": "b63d4ad8482140f526e8b282d7ed8727", "pid": "232818665", "note": [{"label": ["Grand dict. encyclopédique Larousse", "Encycl. universalis (art. : Pandanales) - http://www.universalis-edu.com (2018-12-11)", "Inventaire National du Patrimoine Naturel - http://inpn.mnhn.fr (2018-12-11)", "Le bon jardinier, 1992 (art. : Pandanus)", "Elsevier's dict. of plant names, 1996", "ITIS : Pandanus utilis - https://www.itis.gov (2018-12-11)", "NCBI : Pandanus utilis - https://www.ncbi.nlm.nih.gov/Taxonomy (2018-12-11)", "Dict. of plant names in Latin, German, English and French / H. Nikolov, 1996 : Pandanus utilis ; vacoi"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Pandanus"}], "related": [{"authorized_access_point": "Travail des feuilles de vaquois"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2009007922", "source": "LCSH"}], "authorized_access_point": "Vacoa"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/232818665", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17780931r", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF17780931", "source": "BNF"}], "classification": [{"name": "Botanique", "type": "bf:ClassificationDdc", "classificationPortion": "580"}], "variant_access_point": ["Baquois", "Pandanus utilis", "Vacoi", "Vacoi utile", "Vacoua"], "authorized_access_point": "Vaquois"} 1 +2024-09-11 09:08:30.102594 2024-09-11 09:08:30.102599 86dcc86c-3e59-477a-903a-bb40fec00879 {"md5": "823d5cb2b22e5999266c5d4228382d78", "pid": "236280147", "note": [{"label": ["Mission d'expertise sur la fiscalité de l'économie numérique / P. Collin, N. Colin, 2013 - https://www.economie.gouv.fr (2023-02-17)", "Le guide de la transformation digitale / V. Dreney, E. Vivier, 2016", "Encycl. of e-commerce development, implementation, and management, 2016 : mobile application ecosystem", "Competition in the mobile application ecosystem / Department of commerce, february 2023 - https://www.ntia.gov (2023-02-16)", "Écosystème des architectures mobiles / O. Cata, 2017 - https://www.asprom.com (2023-02-27)", "Tizen, le concurrent d'Android et d'iOS, est presque mort-né / Y. Rousseau [in] Les échos, n° 21609 du 21-01-2014"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Applications mobiles"}, {"authorized_access_point": "Économie numérique"}], "related": [{"authorized_access_point": "Logiciels - Développement"}, {"authorized_access_point": "OSI (architecture de réseaux)"}, {"authorized_access_point": "Smartphones"}, {"authorized_access_point": "Systèmes d'exploitation (ordinateurs)"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2014000122", "source": "LCSH"}], "authorized_access_point": "Software ecosystems"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/236280147", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18064574d", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18064574", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Ecosystem of communication apps (informatique)", "Écosystèmes d'applications de communication (informatique)", "Mobile application ecosystem", "Software ecosystems"], "authorized_access_point": "Écosystèmes d'applications mobiles (informatique)"} 1 +2024-09-11 09:08:30.160605 2024-09-11 09:08:30.160609 47e344c8-0f7e-418b-b1b3-b22796f091e3 {"md5": "4f6c09038b245b073eba977f1117517f", "pid": "26110683X", "note": [{"label": ["Wikipédia - http://fr.wikipedia.org (2022-03-03)", "Eurovoc : PESC - http://eurovoc.europa.eu (2022-03-03)", "Aux origines de la diplomatie européenne : les neuf et la coopération politique européenne de 1973 à 1980 / M. Găinar, 2012", "La Dynamique intégrationniste des communautés européennes : à travers la Coopération politique européenne, CPE et l'Acte unique / V. Monte, 1990"], "noteType": "dataSource"}, {"label": ["Projet de coordination des politiques étrangères entre les États membres amorcée dès les années 1970. La CPE est intégrée dans le Traité sur l'Union européenne (1986) et officialisée par la «politique étrangère de sécurité commune (1992). La coopération politique européenne (CPE) est l'ancêtre de la politique étrangère et de sécurité commune (PESC) et de la politique européenne de sécurité et de défense (PESD) de l'Union européenne"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Politique et gouvernement - Pays de l'Union européenne"}], "related": [{"authorized_access_point": "Politique de sécurité et de défense commune"}, {"authorized_access_point": "Politique étrangère et de sécurité commune"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCA", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/names/n91064789", "source": "LCA"}], "authorized_access_point": "European Political Cooperation"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26110683X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18001102g", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18001102", "source": "BNF"}], "classification": [{"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}], "variant_access_point": ["Cooperazione politica europea", "CPE", "EPC", "Europäische Politische Zusammenarbeit", "European Political Co-operation", "European Political Cooperation", "Politique étrangère européenne"], "authorized_access_point": "Coopération politique européenne (1986-1992)"} 1 +2024-09-11 09:08:30.221234 2024-09-11 09:08:30.221237 0038a57a-0c2a-4496-bc9b-53529e558cf6 {"md5": "599cac508e72b8972e21284983ac30aa", "pid": "261107119", "note": [{"label": ["Wikipédia : Système de Law - http://fr.wikipedia.org (2022-03-09)", "Lexique d'économie / A. Silem, J.-M. Albertini, 2002 (art. : Law (Système bancaire de John))", "Histoire du système de John Law, 1716-1720 / N. Dutot, 2020", "The medals concerning John Law and the Mississippi system / J. W. Adams, 2005"], "noteType": "dataSource"}, {"label": ["Mis en place progressivement à partir de 1716, le Système de Law constitue la première expérience de papier-monnaie menée en France. Il a pour objectif initial d'assainir les finances publiques françaises en facilitant le commerce et l'investissement. Système à l'origine des premières grandes émissions de titres boursiers. La banque royale de John Law, autorisée par le régent, émet des billets à cours forcé en 1718 et la Compagnie du Mississipi lancée en 1717 fait l'objet d'une spéculation éffrénée qui se terminera en faillite en 1720. La banqueroute du système de Law retardera par la suite l'emploi de la monnaie fiduciaire et la création d'une banque centrale en France"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Histoire économique - 1600-1750"}, {"authorized_access_point": "France - 1715-1723 (Régence)"}], "related": [{"authorized_access_point": "Banqueroute"}, {"authorized_access_point": "Papier-monnaie"}, {"authorized_access_point": "Spéculation"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261107119", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180021330", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18002133", "source": "BNF"}], "classification": [{"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Histoire de la France (depuis 486)", "type": "bf:ClassificationDdc", "classificationPortion": "944"}], "variant_access_point": ["Law, Système bancaire de", "Law, Système de", "Mississippi system", "Système bancaire de John Law", "Système du Mississipi"], "authorized_access_point": "Système de Law"} 1 +2024-09-11 09:08:30.279375 2024-09-11 09:08:30.279379 61de782b-e85f-4aa4-a134-173895c0c8db {"md5": "0b0eac7dad6927431ea57d2822ee6c09", "pid": "261901915", "note": [{"label": ["S'emploie uniquement en subdivision aux collectivités (à l'exception des types de collectivités) et aux personnes", "Pour l'application générale de cette subdivision, voir les notes sous le renvoi général Et [nom géographique]"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Et l'Égypte"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261901915", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18007814v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18007814", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "915"}], "authorized_access_point": "Et Alexandrie"} 1 +2024-09-11 09:08:30.34014 2024-09-11 09:08:30.340144 36de085d-f057-46cb-b30f-08975e3d6fb5 {"md5": "15df1110b08037a7ce2e49e306bf8379", "pid": "263499758", "note": [{"label": ["S'emploie uniquement en subdivision aux livres ou groupes de livres de l'Ancien et du Nouveau Testament, par ex. : Bible. A.T.. Exode -- Relation avec Jonas", "On établit une vedette-matière additionnelle inverse, par ex. : Bible. A.T.. Jonas -- Relation avec l'Exode"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Relation avec les Petits Prophètes"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263499758", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180221609", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18022160", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Relation avec le Livre de Jonas"], "authorized_access_point": "Relation avec Jonas"} 1 +2024-09-11 09:08:30.405596 2024-09-11 09:08:30.4056 fe68a98c-4192-4110-b5f9-dbb9c69902fd {"md5": "2c44e3f88d870785bdc5333c14aaff5d", "pid": "264222423", "note": [{"label": ["S'emploie également en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Colonies"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264222423", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17996787t", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "915"}, {"type": "bf:ClassificationDdc", "classificationPortion": "950"}], "authorized_access_point": "Colonies australiennes"} 1 +2024-09-11 09:08:30.46644 2024-09-11 09:08:30.466442 62e05ad5-8464-4a8f-bfbc-79d7a9306d1e {"md5": "5e0439aa928204e51e8eccef084ea386", "pid": "264325974", "note": [{"label": ["Le Japon : dict. et civilisation / L. Frédéric, 1996", "Hist. politique du Japon de 1853 à nos jours / E. Dufourmont, 2020 : Zainichi chôsenjin", "La langue japonaise est-elle la \\"mère\\" des Zainichi ? / A. Hosoi [in] Transtext(e)s transcultures 2013, 8", "Zainichi, les Coréens du Japon / M. Lesage [in] Journal du Japon, 2020-11-08 - https://www.journaldujapon.com (2022-03-21)", "Routledge handbook of Japanese culture and society / V. Lyon Bestor, T. C. Bestor, 2011 : Zainichi Koreans"], "noteType": "dataSource"}, {"label": ["Coréens établis au Japon entre 1910 et 1945 et leurs descendants. Le nom donné par les Japonais est péjoratif et signifie à l'origine \\"soleil de gauche\\" ou \\"ceux qui résident au Japon", "L'adjectif ethnique correspondant est \\"zainichi\\". Il est invariable"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Coréens"}, {"authorized_access_point": "Ethnologie - Japon"}], "related": [{"authorized_access_point": "Corée - 1910-1945 (Occupation japonaise)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264325974", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18004124h", "source": "BNF"}], "classification": [{"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "variant_access_point": ["Coréens (Zainichi)", "Coréens zainichi", "Zainichi chôsenjin", "Zainichi kankokuchôsenjin"], "authorized_access_point": "Zainichi"} 1 +2024-09-11 09:08:30.527478 2024-09-11 09:08:30.527482 e8ab62d1-21d6-43f7-bd22-f90679982d04 {"md5": "242a265e438b7af9e59e05047655ac28", "pid": "264387414", "note": [{"label": ["Encycl. Larousse (art. : Guyana) - https://www.larousse.fr", "Robert encyclopédique des noms propres, 2008 (art. : Guyana) : Guyanais ou Guyaniens", "Nouveau petit Robert 2009 (partie dérivés des noms propres) : guyanais, aise ou guyanien, ienne (2022-03-31)"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, obligatoirement suivie d'une subdivision géographique ou de la subdivision : À l'étranger, directement ou après une subdivision de sujet, on trouve les documents sur les Guyaniens hors de la Guyana. Les documents sur les Guyaniens en Guyana se trouvent sous des vedettes-matière telles que : Moeurs et coutumes -- Guyana ; etc"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ethnologie - Guyana"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Américains d'origine guyanienne"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85058026", "source": "LCSH"}], "authorized_access_point": "Guyanese"}, {"source": "RVMLaval", "authorized_access_point": "Guyanais"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264387414", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18006303k", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18006303", "source": "BNF"}], "classification": [{"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "variant_access_point": ["Guyanais (de la Guyana)"], "authorized_access_point": "Guyaniens"} 1 +2024-09-11 09:08:30.606042 2024-09-11 09:08:30.606046 e657c685-c64c-461f-9541-48bf29920bcf {"md5": "e2ecb16cee56f32967197276f6d4fb63", "pid": "264387538", "note": [{"label": ["Grand dict. encyclopédique Larousse (art. : Bergame)", "Robert encyclopédique des noms propres, 2008 (art. : Bergame)", "Trésor de la langue française (en ligne) : bergamasque"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, obligatoirement suivie d'une subdivision géographique ou de la subdivision : À l'étranger, directement ou après une subdivision de sujet, on trouve les documents sur les Bergamasques hors de la ville ou de la province de Bergame. Les documents sur les Bergamasques à Bergame se trouvent sous des vedettes-matière telles que : Moeurs et coutumes -- Bergame (italie) ; Moeurs et coutumes -- Bergame (Italie ; province) ; etc"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ethnologie - Italie"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Voyageurs bergamasques"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264387538", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18005762z", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18005762", "source": "BNF"}], "classification": [{"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "authorized_access_point": "Bergamasques"} 1 +2024-09-11 09:08:30.664486 2024-09-11 09:08:30.664489 e3b730c9-d121-4569-9201-779d9caae0e7 {"md5": "03421b86a63dfce10e2019cf73216294", "pid": "26438833X", "note": [{"label": ["Grand dict. encyclopédique Larousse : percheron, onne", "Nouveau petit Robert 2009 (partie dérivés des noms propres) (art. : Perche (France)) : percheron, onne", "Du Perche au Canada : qui étaient ces colons français du XVIIIe siècle ? [in] Geo Histoire, 2021, 55 - https://www.geo.fr (2022-03-29)"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, obligatoirement suivie d'une subdivision géographique ou de la subdivision : À l'étranger, directement ou après une subdivision de sujet, on trouve les documents sur les Percherons hors du Perche. Les documents sur les Percherons dans le Perche se trouvent sous des vedettes-matière telles que : Moeurs et coutumes -- Perche (France) ; etc"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ethnologie - France"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Percherons"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26438833X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18005688c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18005688", "source": "BNF"}], "classification": [{"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "variant_access_point": ["Percherons (habitants du Perche)"], "authorized_access_point": "Percherons"} 1 +2024-09-11 09:08:30.728272 2024-09-11 09:08:30.728276 6325be8d-7c00-4ceb-ad20-5dcea445d67b {"md5": "41ab63afa002aba90cf12ea9e579e799", "pid": "271981423", "note": [{"label": ["Paradoxographie et religion / M. García Teijeiro, M. T. Molinos Tejada [in] Kernos : revue internationale et pluridisciplinaire de religion grecque antique, 1994, 7 - https://journals.openedition.org/kernos (2023-08-29)", "The Oxford dict. of Byzantium / A. P. Kazhdan, 2005 - https://www.oxfordreference.com (2023-08-29)", "Religion past and present - https://referenceworks.brillonline.com (2023-08-29)", "The Oxford classical dict. / S. Hornblower, A. Spawforth, 2005 : paradoxographers - https://www.oxfordreference.com (2023-08-29)", "Wikidata : paradoxography - https://www.wikidata.org/wiki/Q686892 (2023-08-29)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature antique"}], "related": [{"authorized_access_point": "Merveilleux (littérature)"}, {"authorized_access_point": "Paradoxe"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271981423", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb180991357", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18099135", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Poésie", "type": "bf:ClassificationDdc", "classificationPortion": "801"}], "variant_access_point": ["Paradoxographes"], "authorized_access_point": "Paradoxographie"} 1 +2024-09-11 09:08:30.785756 2024-09-11 09:08:30.785758 5d14803c-c2f1-452c-b87c-beda3886f949 {"md5": "96be15fb7d9605a68393dbc569c45352", "pid": "27874690X", "note": [{"label": ["Wikidata : Goncourt des animaux - https://www.wikidata.org/wiki/Q56256265 (2024-05-22)", "Wikipédia : Goncourt des animaux - https://fr.wikipedia.org (2024-05-22)", "Le palmarès du Prix Littéraire 30 Millions d'Amis - http://www.lalettredulibraire.com (2024-05-22)", "120 ans de prix Goncourt : une histoire littéraire française / J.-Y. Le Naour, C. Valenti, 2023", "Vincent Maillard, Prix Littéraire 30 Millions d'Amis / M. De Roux, A. Develey [in] Le Figaro, 23 nov. 2021"], "noteType": "dataSource"}, {"label": ["Prix littéraire 30 millions d'amis, plus couramment appelé le Goncourt des animaux, est un prix annuel qui récompense un roman ou un essai qui met à l'honneur les animaux"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Prix littéraires - France"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27874690X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181480099", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148009", "source": "BNF"}], "classification": [{"name": "Généralités", "type": "bf:ClassificationDdc", "classificationPortion": "000"}, {"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["30 millions d'amis, Prix littéraire", "Goncourt des animaux", "Goncourt des animaux, Prix", "Prix littéraire 30 millions d'amis"], "authorized_access_point": "Prix Goncourt des animaux"} 1 +2024-09-11 09:08:30.845625 2024-09-11 09:08:30.845629 ac93985e-f09e-4ce0-8713-536fbc7a0f7a {"md5": "ff602362ff27a613903ffe491d4c274a", "pid": "278746969", "note": [{"label": ["Wikidata - https://www.wikidata.org/wiki/Q1201953 (2024-05-23)", "Wikipédia : Deutsch als Fremdsprache - https://de.wikipedia.org (2024-05-23)", "Deutsch als Fremdsprache : eine Einführung / H.-W. Huneke, W. Steinig, 2013", "Maîtriser la communication professionnelle : en français et en langue étrangère : allemand, anglais, espagnol, italien : BTS assistant de direction, BTS assistant trilingue, 1997", "Optimal A1 : cours d'allemand langue étrangère : glossaire allemand-français A1, 1994"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Allemand (langue)"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2008105237", "source": "LCSH"}], "authorized_access_point": "German language--Study and teaching--Foreign speakers"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278746969", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181481652", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148165", "source": "BNF"}], "classification": [{"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}, {"name": "Langues et linguistique", "type": "bf:ClassificationDdc", "classificationPortion": "400"}], "variant_access_point": ["ALE", "Allemand (langue) - Étude et enseignement -- Allophones", "Allemand (langue) - Étude et enseignement -- Étudiants étrangers", "Allemand (langue) - Étude et enseignement -- Non-anglophones", "Allemand (langue étrangère) - Étude et enseignement", "Allemand (langue seconde)", "Allemand comme langue étrangère", "DaF", "Deutsch als Fremdsprache", "German as a foreign language"], "authorized_access_point": "Allemand langue étrangère"} 1 +2024-09-11 09:08:30.904664 2024-09-11 09:08:30.904667 2c173cde-c823-4810-80cc-63ba13957ab6 {"md5": "e464072f8389db0b2749bdd403b24204", "pid": "278746985", "note": [{"label": ["Wikipédia : Prix Françoise-Sagan - https://fr.wikipedia.org (2024-05-23)", "Prix Françoise Sagan - https://www.francoisesagan.fr/le-prix (2024-05-23)", "Prix Françoise Sagan - https://www.livreshebdo.fr/prix-litteraires/tous-les-prix/prix-francoise-sagan (2024-05-22)"], "noteType": "dataSource"}, {"label": ["Prix littéraire créé en 2010 par Denis Westhoff, fils de Françoise Sagan. Il récompense chaque année une oeuvre en langue française d'un auteur n'ayant pas une notoriété trop importante et n'ayant pas reçu de prix ou de récompense majeure précédemment"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Prix littéraires - France"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278746985", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181483210", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148321", "source": "BNF"}], "classification": [{"name": "Généralités", "type": "bf:ClassificationDdc", "classificationPortion": "000"}, {"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Françoise-Sagan, Prix", "Françoise-Sagan, Prix littéraire", "Françoise Sagan, Prix", "Françoise Sagan, Prix littéraire", "Prix Françoise Sagan", "Prix littéraire Françoise-Sagan", "Prix littéraire Françoise Sagan"], "authorized_access_point": "Prix Françoise-Sagan"} 1 +2024-09-11 09:08:32.19657 2024-09-11 09:08:32.196574 8b426b06-f7b8-477a-afe5-8eb0ad7703e0 {"md5": "f10970493d6f041e925220503c5f8edc", "pid": "27903492X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Artistes africains"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27903492X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18152251d", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18152251", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "305"}, {"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}, {"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Musiciens africains"} 1 +2024-09-11 09:08:30.965173 2024-09-11 09:08:30.965177 712edb7f-08d2-4c84-a19c-2610d6b86f0d {"md5": "3b72a1ee21c2535c70699170c7e03ef7", "pid": "278746993", "note": [{"label": ["Prix Marcel Pagnol - https://www.marcel-pagnol.com/manifestations/prix-marcel-pagnol (2024-05-23)", "Les cinq finalistes du prix Marcel Pagnol 2024 / E. Carreira [in] LivresHebdo, 30 avr. 2024", "Attribution du prix Marcel-Pagnol 2024 / E. Carreira [in] L'Humanité, 8 juin 2000"], "noteType": "dataSource"}, {"label": ["Prix littéraire créé en 2000 qui récompense chaque année un roman en langue française sur le thème du souvenir d'enfance"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Prix littéraires - France"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278746993", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181483330", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148333", "source": "BNF"}], "classification": [{"name": "Généralités", "type": "bf:ClassificationDdc", "classificationPortion": "000"}, {"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Marcel-Pagnol, Prix", "Marcel-Pagnol, Prix littéraire", "Marcel Pagnol, Prix", "Marcel Pagnol, Prix littéraire", "Prix Marcel Pagnol", "Prix littéraire Marcel-Pagnol", "Prix littéraire Marcel Pagnol"], "authorized_access_point": "Prix Marcel-Pagnol"} 1 +2024-09-11 09:08:31.02594 2024-09-11 09:08:31.025945 0b90e84d-ad35-4c72-84e4-33389264e612 {"md5": "a11e38f080397d23eb4aeb100520481c", "pid": "278747000", "note": [{"label": ["Intervention en séance unique (ISU) : un projet novateur au CISSS de la Montérégie-Ouest, [in] Portail Santé Montérégie, 19 juin 2023 - https://www.santemonteregie.qc.ca (2024-05-23)", "Problèmes de dépendance des enfants : Vitalité tente une nouvelle stratégie / S. Paquette [in] Acadie nouvelle, 16 jan. 2023", "Une séance unique avec un psy pour gérer un problème / M.-E. Cousineau, [in] Le devoir, 13 juin 2022"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Psychothérapie brève"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh90001965", "source": "LCSH"}], "authorized_access_point": "Single-session psychotherapy"}, {"source": "RVMLaval", "authorized_access_point": "Psychothérapie en une séance"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747000", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18148359p", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148359", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}], "variant_access_point": ["ISU", "Psychothérapie en une séance", "Thérapie à séance unique"], "authorized_access_point": "Intervention en séance unique"} 1 +2024-09-11 09:08:31.092431 2024-09-11 09:08:31.092435 f18994de-0112-4c92-bb13-90020633afff {"md5": "17e8ef34711edc869322fa24a9d4a609", "pid": "278747019", "note": [{"label": ["L'oreille interne artificielle : implant cochléaire et vestibulaire / J.-P. Guyot, M. Pelizzone [in] Revue médicale suisse, 2023, 845-2", "Challenges anatomiques de la voie extralabyrinthique pour l'implantation vestibulaire / M. Senol, 2023 [thèse]"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Neuroprothèses"}, {"authorized_access_point": "Prothèses auditives"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747019", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181487542", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148754", "source": "BNF"}], "classification": [{"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Neuroprothèses vestibulaires"], "authorized_access_point": "Implants vestibulaires"} 1 +2024-09-11 09:08:31.148714 2024-09-11 09:08:31.148719 d708a307-d3e1-494a-9749-a770dd52a66d {"md5": "315d0723cf7c012b1227ebd40571ff10", "pid": "278747043", "note": [{"label": ["Kanski, ophtalmologie clinique : une approche systématique / J. F. Salmon, J. Chammas, R. K. Khanna, 2021", "Progression de la rétinopathie diabétique durant la grossesse [in] Journal français d'ophtalmologie, 2010, 33, 5", "Rétinopathie diabétique / P. Massin, A. Erginay, 2010", "Dict. de l'Académie de médecine : anomalie microvasculaire intrarétinienne de la rétinopathie diabétique (AMIR) - https://www.academie-medecine.fr/le-dictionnaire (2024-05-31)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Rétinopathie diabétique"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747043", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18148767d", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148767", "source": "BNF"}], "classification": [{"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["AMIR (maladies)", "Anomalies microvasculaires intrarétiniennes de la rétinopathie diabétique", "Rétinopathie diabétique, Anomalies microvasculaires intrarétiniennes de la"], "authorized_access_point": "Anomalies microvasculaires intrarétiniennes"} 1 +2024-09-11 09:08:31.202788 2024-09-11 09:08:31.202793 1d913423-fba9-4e82-bb07-b6fe874ed2c9 {"md5": "133a8af7a26c3eeb20e99aa8a6695f19", "pid": "278747167", "note": [{"label": ["Physiopathologie du lymphome à cellules du manteau / D. Chiron [in] Horizons hémato, 2016, 6, 2", "Duplication de génome et évolution de la famille Sox chez les poissons téléostéens / E. Voldoire, 2013 [thèse]"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Facteurs de transcription"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747167", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18148935b", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148935", "source": "BNF"}], "classification": [{"name": "Sciences de la vie", "type": "bf:ClassificationDdc", "classificationPortion": "570"}], "variant_access_point": ["Facteur de transcription SOX-11", "SOX11"], "authorized_access_point": "Facteur de transcription SOX11"} 1 +2024-09-11 09:08:31.262488 2024-09-11 09:08:31.262492 96160786-295a-4ba8-8b07-9b03f91f76d3 {"md5": "6d11126fd50c56d86c7906911cbf2e71", "pid": "278747175", "note": [{"label": ["Dict. thématique de biologie / C. Blanchet, 2020", "La gouttelette lipidique : un nouvel organite ? / P. Roingeard [in] Médecine/sciences, 2013, 29, 5", "Développement, architecture et dynamique des gouttelettes lipidiques de la diatomée Phaeodactylum tricornutum / J. Lupette, 2016 [thèse]", "Un regard neuf sur les gouttelettes lipidiques des adipocytes : jouent-elles un rôle dans la détection de l'état du stock de triglycérides ? / C. Blouin, E. Hajduch, I. Dugail [in] Journal de la Société de biologie, 2006, 200, 1"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Organites"}], "related": [{"authorized_access_point": "Lipides"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747175", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181489716", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148971", "source": "BNF"}], "classification": [{"name": "Sciences de la vie", "type": "bf:ClassificationDdc", "classificationPortion": "570"}], "variant_access_point": ["Adiposomes"], "authorized_access_point": "Gouttelettes lipidiques"} 1 +2024-09-11 09:08:31.326778 2024-09-11 09:08:31.326782 57a52452-1c62-434d-b5f7-ae3c2ac76df7 {"md5": "170b9def51b6b887cd5e1a73c7a36ce2", "pid": "278747183", "note": [{"label": ["Vocabulaire de l'analyse littéraire / D. Bergez, V. Géraud, J.-J. Robrieux, 1994", "Dict. des termes littéraires, 2001", "Dict. des termes littéraires, 2005", "Les figures à l'épreuve du discours : dialogisme et polyphonie, 2012"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature - Esthétique"}], "related": [{"authorized_access_point": "Carnavalesque"}, {"authorized_access_point": "Dialogisme"}, {"authorized_access_point": "Dialogue (littérature)"}, {"authorized_access_point": "Intertextualité"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747183", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18148976x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148976", "source": "BNF"}], "classification": [{"name": "Poésie", "type": "bf:ClassificationDdc", "classificationPortion": "801"}], "authorized_access_point": "Polyphonie (littérature)"} 1 +2024-09-11 09:08:31.391931 2024-09-11 09:08:31.391936 3fe3c19f-3545-4d83-8f62-fa7569ecf7ee {"md5": "b36f45e106bc27ece4c84488113e1937", "pid": "278747191", "note": [{"label": ["Loterre : Nutrition artificielle (thésaurus) - https://www.loterre.fr (2024-05-29)", "Existe-t-il une relation entre la dose d'hormone de croissance et d'éventuelles complications tumorales ou cardiovasculaires ? / Y. Le Bouc, F. Brioude [in] Bulletin de l'Académie nationale de médecine, 2012, 196, 1", "Dict. de biologie / J. Berthet, 2007 (art. : IGF) : IGF-1", "Dict. de médecine Flammarion, 2008 (art. : Somatomédine) : IGF I", "Dict. illustré des termes de médecine, 2012 (art. : IGF) : IGF I", "Dict. de l'Académie de médecine (art. : IGF) : IGF-I - https://www.academie-medecine.fr/le-dictionnaire (2024-05-29)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Facteurs de croissance IGF"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747191", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18149178n", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18149178", "source": "BNF"}], "classification": [{"name": "Sciences de la vie", "type": "bf:ClassificationDdc", "classificationPortion": "570"}], "variant_access_point": ["IGF-1 (protéine)", "IGF-I (protéine)", "IGF I (protéine)", "IGF1 (protéine)", "IGFI (protéine)", "Insulin-like growth factor-1", "Somatomédine C"], "authorized_access_point": "Facteur de croissance IGF-1"} 1 +2024-09-11 09:08:31.471858 2024-09-11 09:08:31.471863 afbb442d-e7ee-4f91-8d9c-4a022a5e6208 {"md5": "fffc11e497e207e1a5434483a5787372", "pid": "27874723X", "note": [{"label": ["L'onguent armaire entre science et folklore médical. Pour une épistémologie historique du concept de guérison / R. Poma [in] Archives de philosophie, 2010, 73, 4", "L'harmonie au prisme du mesmérisme : recompositions scientifiques, politiques et morales au tournant des XVIIIe et XIXe siècles [in] La Révolution française : cahiers de l'Institut d'histoire de la Révolution française, 2023, 24", "Petite hist. des remèdes magnétiques / P. Pinet [in] Revue d'histoire de la pharmacie, 2008, 360", "Exposition « Savoirs cachés », du 19 septembre au 22 décembre 2021, Bibliothèque Sainte-Geneviève - https://genovefa.bsg.univ-paris3.fr/s/esoterisme/page/accueil (2024-05-31)"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les documents sur le courant de pensée médicale datant du XVIIème siècle. Les documents sur le traitement des maladies à l'aide de champs magnétiques se trouvent sous Magnétothérapie"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Médecine - Philosophie"}, {"authorized_access_point": "Médecine et ésotérisme"}], "related": [{"authorized_access_point": "Magnétisme animal"}, {"authorized_access_point": "Magnétothérapie"}, {"authorized_access_point": "Mesmérisme"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27874723X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181498804", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18149880", "source": "BNF"}], "classification": [{"name": "Philosophie", "type": "bf:ClassificationDdc", "classificationPortion": "100"}, {"name": "Esotérisme, phénomènes paranormaux", "type": "bf:ClassificationDdc", "classificationPortion": "130"}, {"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "authorized_access_point": "Médecine magnétique"} 1 +2024-09-11 09:08:31.530061 2024-09-11 09:08:31.530064 36d4f059-e51c-46a2-a660-d1f2d8299b17 {"md5": "335217f5082e088b37a025c9f0fd1f01", "pid": "278747280", "note": [{"label": ["LC online cat., 2024-06-04 : Porticoes -- Italy"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Portiques (architecture) - [Localisations géographiques]"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747280", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18150656r", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18150656", "source": "BNF"}], "classification": [{"name": "Bâtiment", "type": "bf:ClassificationDdc", "classificationPortion": "690"}, {"name": "Architecture", "type": "bf:ClassificationDdc", "classificationPortion": "720"}], "authorized_access_point": "Portiques (architecture) - Italie"} 1 +2024-09-11 09:08:33.839319 2024-09-11 09:08:33.839322 d8464465-b3eb-4561-bad1-bd8e2398c0ee {"md5": "ee14bab503242e51c3203d001e415ef6", "pid": "028221044", "note": [{"label": ["LCSH, 1991-12. - Laval RVM, 1992-02"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028221044", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12010061v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12010061", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "14024994X"}, "authorized_access_point": "Conditions économiques - Afrique du Nord - 1960-...."} 1 +2024-09-11 09:08:31.585586 2024-09-11 09:08:31.58559 af650b15-7fc8-4038-9960-d34efb0b67ff {"md5": "dca0c4254cd84053c076afa7b920f75b", "pid": "278747329", "note": [{"label": ["Sous cette vedette, obligatoirement suivie d'une subdivision géographique ou de la subdivision : À l'étranger, directement ou après une subdivision de sujet, on trouve les documents sur les animateurs de radio tchécoslovaques hors de Tchécoslovaquie. Les documents sur les animateurs de radio tchécoslovaques en Tchécoslovaquie se trouvent sous des vedettes-matière telles que : Animateurs de radio -- Tchécoslovaquie ; Animateurs de radio -- [Subdivision de sujet] -- Tchécoslovaquie ; etc"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tchécoslovaques"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747329", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18151274t", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18151274", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "305"}, {"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}, {"name": "Audiovisuel", "type": "bf:ClassificationDdc", "classificationPortion": "791"}], "authorized_access_point": "Animateurs de radio tchécoslovaques"} 1 +2024-09-11 09:08:31.646082 2024-09-11 09:08:31.646086 9d1dae43-d2fe-4507-8031-531acbf50f57 {"md5": "a00cd33807bcc96689f99e75317008fe", "pid": "279034725", "note": [{"label": ["Rôle du facteur de transcription Nrf2 dans le contrôle de l'allergie cutanée en réponse aux molécules allergisantes / Z. El Ali, 2013 [thèse]", "Rôle du facteur de transcription Nrf2 dans la régulation des fonctions du neutrophile in vitro et dans l'allergie cutanée / D. Helou, 2018 [thèse]", "La voie Nrf2 en pathologie respiratoire [in] Médecine/sciences, 2011, 27, 11"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Facteurs de transcription"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279034725", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181050359", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18105035", "source": "BNF"}], "classification": [{"name": "Sciences de la vie", "type": "bf:ClassificationDdc", "classificationPortion": "570"}], "variant_access_point": ["Facteur de transcription Nrf-2", "NF-E2-related factor 2", "Nrf-2 (protéine)", "Nrf2 (protéine)", "Nuclear factor E2-related factor 2", "Nuclear factor erythroid-2-related factor 2"], "authorized_access_point": "Facteur de transcription Nrf2"} 1 +2024-09-11 09:08:31.712583 2024-09-11 09:08:31.712587 6fb6e136-4782-4053-830e-d846b0447635 {"md5": "5b350f90fdccf698ff150b32acafb5c6", "pid": "279034733", "note": [{"label": ["Étude fonctionnelle de mutants de DCLRE1B/Apollo dans l'oncogenèse rénale / C. Bories, 2023 [thèse]", "DCLRE1B/Apollo germline mutations associated with renal cell carcinoma impair telomere protection [in] BBA. Molecular basis of disease, 2024, 1870, 4"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gènes"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279034733", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18140209x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18140209", "source": "BNF"}], "classification": [{"name": "Sciences de la vie", "type": "bf:ClassificationDdc", "classificationPortion": "570"}], "variant_access_point": ["Apollo/DCLRE1B (gène)", "DCLRE1B/Apollo (gène)", "Gène Apollo/DCLRE1B"], "authorized_access_point": "Gène DCLRE1B/Apollo"} 1 +2024-09-11 09:08:31.769123 2024-09-11 09:08:31.769126 e21b1e58-90c1-429e-8a58-941b36cb0b0a {"md5": "5d07f550938e6ac786d7fa8b10f5c797", "pid": "279034741", "note": [{"label": ["Valeurs et modalités de mise en œuvre de la conception universelle de l'apprentissage dans les pays de langue française : une étude de portée / D. Odier-Guedj, L. Lefèvre, M.-E. Boisvert Hamelin, [in] La nouvelle revue - Éducation et société inclusives, 2023, 97, 3", "L'utilisation des principes de la conception universelle de l'apprentissage pour le développement d'un programme d'interventions basées sur la présence attentive pour les personnes adolescentes de 12 à 19 ans / C. Duranleau, N. Rousseau, F. Dionne [in] Éducation et francophonie, 2023, 51, 1", "La conception universelle de l'apprentissage : un « pont dynamique » entre une différenciation pédagogique et une évaluation humaniste ? / C. Eid [in] Contextes et didactiques, 2019, 13"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Pédagogie"}], "related": [{"authorized_access_point": "Apprentissage"}, {"authorized_access_point": "Intégration scolaire"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Conception universelle de l'apprentissage"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279034741", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181489491", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148949", "source": "BNF"}], "classification": [{"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}], "variant_access_point": ["Accessibilité universelle à l'apprentissage", "Conception universelle de l'enseignement", "CUA", "CUE", "Pédagogie universelle"], "authorized_access_point": "Conception universelle de l'apprentissage"} 1 +2024-09-11 09:08:31.82906 2024-09-11 09:08:31.829064 d8bcfdc4-e395-4cfd-8888-7abf674aa972 {"md5": "1a1e961f275d24ce90fd25b04a7bc891", "pid": "27903475X", "note": [{"label": ["Roman choral : fiction à voix multiples / J. Domingues de Almeida et F. Outeirinho, 2024", "Le Roman Polyphonique / B. Thibault [in] Danièle Sallenave et le don des morts, Collection Monographique Rodopi en Littérature Française Contemporaine, 2004, 40", "Le roman au XVIIIe siècle en Europe / A. Montandon, 1999, p. 221"], "noteType": "dataSource"}, {"label": ["Procédé narratif, ne relève pas du référentiel genre/forme"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Narration"}, {"authorized_access_point": "Roman - Technique"}], "related": [{"authorized_access_point": "Point de vue (littérature)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27903475X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181496990", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18149699", "source": "BNF"}], "classification": [{"name": "Poésie", "type": "bf:ClassificationDdc", "classificationPortion": "801"}], "variant_access_point": ["Roman polyphonique", "Roman à plusieurs voix", "Roman à voix multiples"], "authorized_access_point": "Roman choral"} 1 +2024-09-11 09:08:31.89746 2024-09-11 09:08:31.897463 216adfb5-5297-4260-826e-1945dca64eef {"md5": "8742a0db926d05a9b77d918e5c354dda", "pid": "279034806", "note": [{"label": ["Influence de la rigidité du substrat sur la migration des cellules souches de la pulpe dentaire / C. Ehlinger, 2020 [thèse]", "La migration des cellules et leur sensibilité aux propriétés physiques de la matrice extracellulaire : rôle d'ICAP-1, un régulateur des intégrines et de la contractilité / M. Régent, 2011 [thèse]", "Activité et réponse à une blessure d'un tapis de cellules [in] Reflets de la physique, 2010, 18"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Cellules - Motilité"}, {"authorized_access_point": "Taxie"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279034806", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181509228", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18150922", "source": "BNF"}], "classification": [{"name": "Sciences de la vie", "type": "bf:ClassificationDdc", "classificationPortion": "570"}], "variant_access_point": ["Durotactisme"], "authorized_access_point": "Durotaxie"} 1 +2024-09-11 09:08:31.953408 2024-09-11 09:08:31.953413 8284e0e7-d7f1-4748-91ab-3780adc60ead {"md5": "e5b67d4873d90ecb8eb02c9d84a3c89d", "pid": "279034814", "note": [{"label": ["Vitrine linguistique - https://vitrinelinguistique.oqlf.gouv.qc.ca (2024-06-05)", "Tour d'horizon des lignées de cellules souches pluripotentes / E. Kieffer, S. Kuntz, S. Viville [in] Médecine/sciences, 2010, 26, 10", "Biologie cellulaire et moléculaire, 2022"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Cellules souches"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279034814", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18150984t", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18150984", "source": "BNF"}], "classification": [{"name": "Sciences de la vie", "type": "bf:ClassificationDdc", "classificationPortion": "570"}], "authorized_access_point": "Cellules souches pluripotentes"} 1 +2024-09-11 09:08:32.013243 2024-09-11 09:08:32.013247 af389af3-c640-4a30-8cbe-492a98006eed {"md5": "0cc0f4e7e2f9c75cbf9bc43ee019ed52", "pid": "279034822", "note": [{"label": ["eVidal - https://evidal.vidal.fr (2024-06-11)", "La découverte des propriétés antidépressives de la kétamine / P. de Maricourt, R. Gaillard [in] Annales médico-psychologiques, revue psychiatrique, 2017, 175, 7", "Psychotropes du futur : de l'imipramine à la kétamine [in] Bulletin de l'Académie nationale de médecine, 2020, 204, 9", "PubChem : esketamine - https://pubchem.ncbi.nlm.nih.gov (2024-06-11)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Antidépresseurs"}, {"authorized_access_point": "Kétamine"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "MeSH", "identifiedBy": [{"type": "uri", "value": "https://id.nlm.nih.gov/mesh/M000647133", "source": "MeSH"}], "authorized_access_point": "Esketamine"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279034822", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181510341", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18151034", "source": "BNF"}], "classification": [{"name": "Chimie, minéralogie, cristallographie", "type": "bf:ClassificationDdc", "classificationPortion": "540"}, {"type": "bf:ClassificationDdc", "classificationPortion": "615"}], "authorized_access_point": "Eskétamine"} 1 +2024-09-11 09:08:32.078245 2024-09-11 09:08:32.07825 5c34a35e-97f3-4035-b82a-9b14c51bc49e {"md5": "0191aabc86572389a539a297fefb9d74", "pid": "279034849", "note": [{"label": ["Le flux 4D : technique et principales applications pour l'étude de l'aorte thoracique [in] Journal d'imagerie diagnostique et interventionnelle, 2021, 4, 2", "Scanner et imagerie par résonance magnétique des cardiopathies congénitales à l'âge adulte [in] EMC. Radiologie et imagerie médicale. Cardiovasculaire - thoracique - cervicale, 2022, 40, 4", "Évaluation des flux en imagerie par résonance magnétique cardiaque : l'imagerie de flux 4D / J.-F. Paul [in] Annales de cardiologie et d'angéiologie, 2020, 69, 5"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Imagerie par résonance magnétique"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279034849", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18151339k", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18151339", "source": "BNF"}], "classification": [{"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Imagerie de flux 4D", "IRM 4D de flux", "IRM 4D flow", "IRM de contraste de phase 4D", "IRM de flux 4D", "IRM en flux 4D", "IRM flux 4D"], "authorized_access_point": "Flux 4D"} 1 +2024-09-11 09:08:32.13756 2024-09-11 09:08:32.137565 71a0f8ec-565e-48b3-b8ed-dbfffbf7a36f {"md5": "a33c09f93294f9035ebb86772e22403e", "pid": "279034881", "note": [{"label": ["« Le parlage des jeunes » à la Réunion : bilan et perspectives / G. Ledegen [in] Cahiers de sociolinguistique, 2004, 1, 9", "Anéantir : les exécutions capitales à l'île Bourbon (1803-1848) / B. Maillard [in] Annales historiques de la Révolution française, 2023, 4, 414", "L'île Maurice et la société mauricienne / L. Simonnin [in] La Revue des Deux Mondes, 1861, 36, 1"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Vannerie"}], "related": [{"authorized_access_point": "Vaquois"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279034881", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181517370", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18151737", "source": "BNF"}], "classification": [{"name": "Dessin, arts décoratifs, artisanat d'art", "type": "bf:ClassificationDdc", "classificationPortion": "740"}, {"name": "Jeux", "type": "bf:ClassificationDdc", "classificationPortion": "793"}], "variant_access_point": ["Feuilles de vacoa tressées", "Feuilles de vaquois tressées", "Objets en feuilles de vacoa", "Objets en feuilles de vaquois", "Ouvrages en feuilles de vacoa", "Ouvrages en feuilles de vaquois", "Travail des feuilles de vacoa", "Tressage des feuilles de vacoa", "Tressage des feuilles de vaquois"], "authorized_access_point": "Travail des feuilles de vaquois"} 1 +2024-09-11 09:08:32.254138 2024-09-11 09:08:32.254141 547a20b8-35a9-4a73-be99-70bb1d154cf6 {"md5": "817e80734ba3dc7ec42a95550f87bc8f", "pid": "279034946", "note": [{"label": ["Sous cette vedette, obligatoirement suivie d'une subdivision géographique ou de la subdivision : À l'étranger, directement ou après une subdivision de sujet, on trouve les documents sur les viticulteurs italiens hors d'Italie. Les documents sur les viticulteurs italiens en Italie se trouvent sous des vedettes-matière telles que : Viticulteurs -- Italie ; Viticulteurs -- [Subdivision de sujet] -- Italie ; etc"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Italiens"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279034946", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181525308", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18152530", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "305"}, {"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}, {"name": "Agriculture, élevage", "type": "bf:ClassificationDdc", "classificationPortion": "630"}], "authorized_access_point": "Viticulteurs italiens"} 1 +2024-09-11 09:08:32.308439 2024-09-11 09:08:32.308443 6dbbdf43-21cd-41bb-b366-58e0be6724e1 {"md5": "3fee2d2cad9eb89b508fd6a4bf5151a5", "pid": "279034962", "note": [{"label": ["Étude de la co-exposition aux contraintes physiques et aux produits chimiques neurotoxiques chez les salariés des Pays de la Loire [in] Archives des maladies professionnelles et de l'environnement, 2014, 75, 4", "Risques liés à la co-exposition bruit et substances chimiques ototoxiques / C. Dematteo, T. Kerebel, A.-H. Liebert, 2005 [rapport]", "Multi-exposition en milieu urbain : approche multi-échelle de l'exposition humaine au bruit et à la pollution atmosphérique / Q. Tenailleau, 2014 [thèse]", "Polyexpositions - https://www.inrs.fr (2024-06-14)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Polluants"}, {"authorized_access_point": "Pollution"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279034962", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18152715x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18152715", "source": "BNF"}], "classification": [{"name": "Sciences de la vie", "type": "bf:ClassificationDdc", "classificationPortion": "570"}], "variant_access_point": ["Coexposition", "Exposition à de multiples polluants", "Exposition combinée", "Exposition conjointe", "Exposition multi-agents", "Exposition multiple", "Multi-exposition", "Multiexposition", "Poly-exposition", "Polyexposition"], "authorized_access_point": "Co-exposition"} 1 +2024-09-11 09:08:32.368273 2024-09-11 09:08:32.368277 dcd543ab-026a-43f5-aa1c-cdd87fb11d54 {"md5": "6e42b216e39e702d3022c25a85b82836", "pid": "279034970", "note": [{"label": ["Dict. de l'Académie de médecine - https://www.academie-medecine.fr/le-dictionnaire (2024-06-14)", "Le nouveau dict. médical, 2018", "Élastopathies et atteintes vasculaires / A. Rossi, M. Frank, E. Messas [in] EMC. Angéiologie, 2016, 11, 1", "L'invalidation du gène de la fibuline-5 induit une élastinopathie / M.-P. Jacob [in] Médecine/sciences, 2003, 19, 4"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tissu conjonctif - Maladies"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279034970", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181527435", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18152743", "source": "BNF"}], "classification": [{"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Élastinopathies", "Maladies du tissu élastique", "Tissu élastique (histologie) - Maladies"], "authorized_access_point": "Élastopathies"} 1 +2024-09-11 09:08:32.433401 2024-09-11 09:08:32.433405 2fc6e058-3489-4793-8fb1-2a7430ca747c {"md5": "c714b6374083c4162445275e350b1556", "pid": "279034997", "note": [{"label": ["GBIF - https://www.gbif.org/species (2024-06-17)", "NCBI - https://www.ncbi.nlm.nih.gov/Taxonomy (2024-06-17)", "Field guide to the micro-moths of Great Britain and Ireland / P. Sterling, M. Parsons, 2023", "British moths : a photographic guide to the moths of Britain and Ireland / C. Manley, 2015"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Lépidoptères"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279034997", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18152978c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18152978", "source": "BNF"}], "classification": [{"name": "Zoologie", "type": "bf:ClassificationDdc", "classificationPortion": "590"}], "variant_access_point": ["Ochsenheimeriidae", "Ypsolophinae"], "authorized_access_point": "Ypsolophidae"} 1 +2024-09-11 09:08:32.49443 2024-09-11 09:08:32.494433 25c80ba3-5a50-4dfc-87eb-7eac7e743d1b {"md5": "fa60935572e7367bb0e8b38e6cae52e0", "pid": "279035020", "note": [{"label": ["NCBI - https://www.ncbi.nlm.nih.gov/Taxonomy (2024-06-17)", "GBIF - https://www.gbif.org/species (2024-06-17)", "Aphids on the world's herbaceous plants and shrubs / R. L. Blackman, V. F. Eastop, 2006"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Aphididés"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Rhopalosiphum padi"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "https://id.loc.gov/authorities/subjects/sh85113791", "source": "LCSH"}], "authorized_access_point": "Rhopalosiphum"}, {"source": "RVMLaval", "authorized_access_point": "Rhopalosiphum"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279035020", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18153059v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18153059", "source": "BNF"}], "classification": [{"name": "Zoologie", "type": "bf:ClassificationDdc", "classificationPortion": "590"}], "authorized_access_point": "Rhopalosiphum"} 1 +2024-09-11 09:08:32.55234 2024-09-11 09:08:32.552343 d15b3b3b-f2e3-4313-a791-68a1dd453ac0 {"md5": "88ebd36a4b5de05e2dc8f7b7d6dd6652", "pid": "279035063", "note": [{"label": ["La révolution arcade de SEGA : de 1945 à nos jours / K. Horowitz, 2020", "Jeux d'arcade pour le Web : de la conception à la réalisation avec JavaScript / F. Delobel, 2020", "Programmation des jeux d'arcade en C / D. Gruber, 1995", "Arcade : une histoire du jeu d'Arcade à travers les âges, volume 1, 2023"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les documents sur le matériel ainsi que sur les jeux eux-mêmes"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Jeux vidéo"}], "related": [{"authorized_access_point": "Salles d'arcades"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2009000044", "source": "LCSH"}], "authorized_access_point": "Video arcades"}, {"source": "RVMLaval", "authorized_access_point": "Jeux vidéo"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279035063", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181532749", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18153274", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Jeux", "type": "bf:ClassificationDdc", "classificationPortion": "793"}], "variant_access_point": ["Bornes d'arcade", "Jeux vidéo d'arcade"], "authorized_access_point": "Arcade (jeux vidéo)"} 1 +2024-09-11 09:08:32.610946 2024-09-11 09:08:32.610949 9f894cde-31a0-465b-a7b9-bbebe2cdd9ee {"md5": "e8e9c028edb3cb0e60ecce28bcdbb6a1", "pid": "279035071", "note": [{"label": ["Compositions artistiques et creatives avec DALL-E 3 / P. Rey, 2024", "Développer des applications avec GPT-4 et ChatGPT / M.-A. Blete, O. Caelen, 2024", "Grand lexique français de l'intelligence artificielle - https://datafranca.org (2024-06-18)", "Unlocking the secrets of prompt engineering / G. Mizrahi, 2024", "The quick guide to prompt engineering / I. Khan, 2024"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Intelligence artificielle"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279035071", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18153302q", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18153302", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["Ingénierie de requête", "Prompt engeneering"], "authorized_access_point": "Ingénierie de prompt"} 1 +2024-09-11 09:08:32.67004 2024-09-11 09:08:32.670044 eb08dccc-e92e-470f-ba93-8ceb4ddb9d1e {"md5": "c5569c6f91058583a185b8cc202c0068", "pid": "27903508X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Navigation (aéronautique)"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2020000351", "source": "LCSH"}], "authorized_access_point": "Drone aircraft--Piloting"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27903508X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181533183", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18153318", "source": "BNF"}], "classification": [{"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "authorized_access_point": "Drones - Pilotage"} 1 +2024-09-11 09:08:32.729523 2024-09-11 09:08:32.729526 691bfbdb-cc67-471c-8747-5f9f5fbe4ba8 {"md5": "de3845d301c083df208a300fd55d2f78", "pid": "279035098", "note": [{"label": ["Trésor de la langue française", "Grand dict. encyclopédique Larousse"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Géomètres"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh90000849", "source": "LCSH"}], "authorized_access_point": "Women surveyors"}, {"source": "RVMLaval", "authorized_access_point": "Femmes géomètres"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279035098", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18153323p", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18153323", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "305"}, {"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["Arpenteures géométres", "Géomètres expertes"], "authorized_access_point": "Femmes géométres"} 1 +2024-09-11 09:08:32.791928 2024-09-11 09:08:32.791932 bbd95a21-35fb-4266-b568-cdaa34f38e27 {"md5": "946078f6f153d864ad27d0d8ffe36116", "pid": "279035101", "note": [{"label": ["Trésor de la langue française (art. : Tuile)", "Grand dict. encyclopédique Larousse (art. : Vernisser)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tuiles"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279035101", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18153329r", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18153329", "source": "BNF"}], "classification": [{"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}, {"name": "Bâtiment", "type": "bf:ClassificationDdc", "classificationPortion": "690"}], "authorized_access_point": "Tuiles vernissées"} 1 +2024-09-11 09:08:32.853694 2024-09-11 09:08:32.853698 c3a808a4-e502-4e43-973a-2ba8d30ad776 {"md5": "8640b0a6f1a2b05383187755441a8b53", "pid": "279035144", "note": [{"label": ["ISO : organisation internationale de normalisation - https://www.iso.org (2024-06-20)", "Afnor normalisation - https://normalisation.afnor.org (2024-06-20)", "Déploiement de la connectique sécurisée NRFit® au CHU de Tours : état des lieux, difficultés et alternatives envisagées / J. Michelat, 2023 [thèse]"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Dispositifs médicaux implantables"}, {"authorized_access_point": "Raccords (technologie)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279035144", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181537484", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18153748", "source": "BNF"}], "classification": [{"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["Norme ISO 80369-1", "Norme ISO 80369-6", "NRFit"], "authorized_access_point": "Norme ISO 80369"} 1 +2024-09-11 09:08:32.921242 2024-09-11 09:08:32.921245 720823e0-b885-4783-a984-2a4b08ddace6 {"md5": "d60726b9655956024986957000b7764f", "pid": "279035241", "note": [{"label": ["LC online cat., 2024-06-22 : Ukrainian Canadian women"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Canadiens d'origine ukrainienne"}], "related": [{"authorized_access_point": "Ukrainiennes"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Canadiennes d'origine ukrainienne"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279035241", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18154151m", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18154151", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"type": "bf:ClassificationDdc", "classificationPortion": "305"}, {"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "variant_access_point": ["Canadiens d'origine ukrainienne - Femmes"], "authorized_access_point": "Canadiennes d'origine ukrainienne"} 1 +2024-09-11 09:08:32.980988 2024-09-11 09:08:32.980992 6c9a2b99-0613-486e-a583-179d8db23fb9 {"md5": "c757e9d6f89a61b2583e52ae6ef681ea", "pid": "027233960", "note": [{"label": ["L'amour qui ose dire son nom : art et homosexualité / D. Fernandez, 2001", "The sexual perspective : homosexuality and art in the last 100 years in the West / E. Cooper, 1994"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Art"}, {"authorized_access_point": "Artistes homosexuels"}, {"authorized_access_point": "Homoérotisme"}, {"authorized_access_point": "Homosexualité"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Homosexualité et architecture"}, {"authorized_access_point": "Homosexualité et mode"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85061787", "source": "LCSH"}], "authorized_access_point": "Homosexuality and art"}, {"source": "RVMLaval", "authorized_access_point": "Homosexualité et art"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027233960", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11932036z", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11932036", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Arts", "type": "bf:ClassificationDdc", "classificationPortion": "700"}], "variant_access_point": ["Art et homosexualité"], "authorized_access_point": "Homosexualité et art"} 1 +2024-09-11 09:08:33.040584 2024-09-11 09:08:33.040588 baf79b78-2448-40bd-a9a3-ff8f5dbd4b8f {"md5": "5eced68b2a10186bfb541846d2c9f240", "pid": "027238431", "note": [{"label": ["Grand Larousse universel", "Petit Robert 1, 1993"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, obligatoirement suivie d'une subdivision géographique ou de la subdivision : À l'étranger, directement ou après une subdivision de sujet, on trouve les documents sur les Malgaches hors de Madagascar. Les documents sur les Malgaches à Madagascar se trouvent sous des vedettes-matière telles que : Madagascar -- Moeurs et coutumes ; etc"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ethnologie - Madagascar"}], "related": [{"authorized_access_point": "Madagascar"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Écrivains malgaches"}, {"authorized_access_point": "Femmes malgaches"}, {"authorized_access_point": "Militaires malgaches"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Malgaches"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027238431", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119324064", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11932406", "source": "BNF"}], "classification": [{"name": "Ethnologie", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "authorized_access_point": "Malgaches"} 1 +2024-09-11 09:08:33.10361 2024-09-11 09:08:33.103615 c28b67bf-fc77-4766-8000-9c4293e2389a {"md5": "bf1e8b469e9db8ebdb17a147e14b3308", "pid": "027248720", "note": [{"label": ["Grand Larousse universel", "Grand Robert de la langue française, 2001"], "noteType": "dataSource"}, {"label": ["S'emploie également en subdivision. Cette subdivision s'applique aux catégories de personnes, groupes ethniques et personnes"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Assistance sexuelle aux handicapés"}, {"authorized_access_point": "Communisme et sexualité"}, {"authorized_access_point": "Éducation sexuelle"}, {"authorized_access_point": "Érotisme"}, {"authorized_access_point": "Fascisme et sexualité"}, {"authorized_access_point": "Géographie des sexualités"}, {"authorized_access_point": "Industries du sexe"}, {"authorized_access_point": "Minorités sexuelles"}, {"authorized_access_point": "Musique et sexualité"}, {"authorized_access_point": "National-socialisme et sexualité"}, {"authorized_access_point": "Objets érotiques"}, {"authorized_access_point": "Relations amoureuses"}, {"authorized_access_point": "Sexologie"}, {"authorized_access_point": "Sexualité (biologie)"}, {"authorized_access_point": "Sexualité (psychologie)"}, {"authorized_access_point": "Sexualité - Aspect symbolique"}, {"authorized_access_point": "Sexualité - Dans la littérature"}, {"authorized_access_point": "Sexualité - Droit"}, {"authorized_access_point": "Sexualité - Religion"}, {"authorized_access_point": "Sexualité dans les arts du spectacle"}, {"authorized_access_point": "Sorcellerie et sexualité"}, {"authorized_access_point": "Sports et sexualité"}, {"authorized_access_point": "Vie sexuelle"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Abstinence sexuelle"}, {"authorized_access_point": "Adolescents - Sexualité"}, {"authorized_access_point": "Alcooliques - Sexualité"}, {"authorized_access_point": "Asexualité"}, {"authorized_access_point": "Comportement sexuel des animaux"}, {"authorized_access_point": "Consentement sexuel"}, {"authorized_access_point": "Cybersexe"}, {"authorized_access_point": "Enfants - Sexualité"}, {"authorized_access_point": "Exhibitionnisme"}, {"authorized_access_point": "Hétérosexualité"}, {"authorized_access_point": "Homosexualité"}, {"authorized_access_point": "Hygiène sexuelle"}, {"authorized_access_point": "Instinct sexuel"}, {"authorized_access_point": "Masturbation"}, {"authorized_access_point": "Paraplégiques - Sexualité"}, {"authorized_access_point": "Perversion sexuelle"}, {"authorized_access_point": "Polyamour"}, {"authorized_access_point": "Prisonniers - Sexualité"}, {"authorized_access_point": "Relations sexuelles"}, {"authorized_access_point": "Sexualité dans le mariage"}, {"authorized_access_point": "Sexualité dans les rêves"}, {"authorized_access_point": "Sexualité de groupe"}, {"authorized_access_point": "Sexualité féminine"}, {"authorized_access_point": "Sexualité masculine"}, {"authorized_access_point": "Sexualité prémaritale"}, {"authorized_access_point": "Travestisme"}, {"authorized_access_point": "Troubles sexuels"}, {"authorized_access_point": "Voyeurisme"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85120549", "source": "LCSH"}], "authorized_access_point": "Sex"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2001008764", "source": "LCSH"}], "authorized_access_point": "Sexual behavior"}, {"source": "RVMLaval", "authorized_access_point": "Sexualité"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027248720", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11933266p", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11933266", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "02864297X"}, "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}, {"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}], "variant_access_point": ["Comportement sexuel", "Pratiques sexuelles", "Sexe", "Sexualité humaine"], "authorized_access_point": "Sexualité"} 1 +2024-09-11 09:08:33.174325 2024-09-11 09:08:33.174329 d4fcd529-5c6a-444e-8a74-ba9048b4c1e3 {"md5": "7f44c703b98ed54dadeed0c75658aef7", "pid": "027255522", "note": [{"label": ["Nouveau petit Robert 2010", "Nouveau Littré 2006", "Trésor de la langue française"], "noteType": "dataSource"}, {"label": ["Voir aussi les vedettes du type Verrerie [adjectif de civilisation, ethnique, de nationalité ou d'origine géographique]"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Art du verre"}], "related": [{"authorized_access_point": "Marques de verriers"}, {"authorized_access_point": "Verre - Fabrication"}, {"authorized_access_point": "Verre - Industrie et commerce"}, {"authorized_access_point": "Verreries"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Bijoux en verre"}, {"authorized_access_point": "Boules à neige"}, {"authorized_access_point": "Bouteilles à sujet"}, {"authorized_access_point": "Clochettes en verre"}, {"authorized_access_point": "Cristallerie"}, {"authorized_access_point": "Fleurs en verre"}, {"authorized_access_point": "Meubles en verre"}, {"authorized_access_point": "Millefiori"}, {"authorized_access_point": "Opaline"}, {"authorized_access_point": "Ouraline"}, {"authorized_access_point": "Perles en verre"}, {"authorized_access_point": "Presse-papiers"}, {"authorized_access_point": "Sulfures (verrerie)"}, {"authorized_access_point": "Verre camée"}, {"authorized_access_point": "Verrerie antique"}, {"authorized_access_point": "Verrerie de la Renaissance"}, {"authorized_access_point": "Verrerie de Murano"}, {"authorized_access_point": "Verrerie médiévale"}, {"authorized_access_point": "Verrerie préhistorique"}, {"authorized_access_point": "Verres filés"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85055188", "source": "LCSH"}], "authorized_access_point": "Glassware"}, {"source": "RVMLaval", "authorized_access_point": "Verrerie"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027255522", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119337751", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11933775", "source": "BNF"}], "classification": [{"name": "Arts plastiques, sculpture", "type": "bf:ClassificationDdc", "classificationPortion": "730"}, {"name": "Dessin, arts décoratifs, artisanat d'art", "type": "bf:ClassificationDdc", "classificationPortion": "740"}], "variant_access_point": ["Objets en verre", "Verre, Objets en", "Verroterie"], "authorized_access_point": "Verrerie"} 1 +2024-09-11 09:08:33.231851 2024-09-11 09:08:33.231854 bf0d51cd-034d-4a9a-9f71-df9530a87f7d {"md5": "d53c6c9fd1b0171dc8a66765938ab695", "pid": "027258556", "note": [{"label": ["Grand Larousse universel", "Encycl. universalis - http://www.universalis-edu.com (2008-09-04)", "Dict. des sciences humaines / S. Mesure, P. Savidan, 2006"], "noteType": "dataSource"}, {"label": ["S'emploie également en subdivision", "Aux personnes, cette subdivision s'emploie également pour des études généalogiques. Dans ce cas, établir une vedette-matière additionnelle au nom de la famille"], "noteType": "general"}, {"label": ["Voir aussi les vedettes du type Familles [adjectif ethnique], par ex. : Familles juives"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Institutions sociales"}], "related": [{"authorized_access_point": "Archives familiales"}, {"authorized_access_point": "Bibliothèques et famille"}, {"authorized_access_point": "Démographie de la famille"}, {"authorized_access_point": "Entraide familiale"}, {"authorized_access_point": "Entreprises familiales"}, {"authorized_access_point": "Famille - Anthropologie"}, {"authorized_access_point": "Famille - Loisirs"}, {"authorized_access_point": "Famille - Vie religieuse"}, {"authorized_access_point": "Famille et école"}, {"authorized_access_point": "Family office"}, {"authorized_access_point": "Fêtes de famille"}, {"authorized_access_point": "Formation parentale"}, {"authorized_access_point": "Généalogie"}, {"authorized_access_point": "Mariage"}, {"authorized_access_point": "Médias et famille"}, {"authorized_access_point": "Médiation familiale"}, {"authorized_access_point": "Ménages"}, {"authorized_access_point": "Ordinateurs et famille"}, {"authorized_access_point": "Parenté"}, {"authorized_access_point": "Pastorale des familles"}, {"authorized_access_point": "Politique familiale"}, {"authorized_access_point": "Relations famille-malade"}, {"authorized_access_point": "Relations personnel médical-famille"}, {"authorized_access_point": "Secrets de famille"}, {"authorized_access_point": "Service social familial"}, {"authorized_access_point": "Travail et famille"}, {"authorized_access_point": "Vie domestique"}, {"authorized_access_point": "Photographie de famille"}, {"authorized_access_point": "Roman familial (littérature)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Arrière-grands-parents"}, {"authorized_access_point": "Brus"}, {"authorized_access_point": "Chefs de famille"}, {"authorized_access_point": "Éducation familiale"}, {"authorized_access_point": "Enfants"}, {"authorized_access_point": "Famille inadaptée"}, {"authorized_access_point": "Famille monoparentale"}, {"authorized_access_point": "Famille recomposée"}, {"authorized_access_point": "Famille rurale"}, {"authorized_access_point": "Familles à double carrière"}, {"authorized_access_point": "Familles choisies"}, {"authorized_access_point": "Familles d'accueil"}, {"authorized_access_point": "Familles immigrées"}, {"authorized_access_point": "Familles issues de maisons royales"}, {"authorized_access_point": "Familles mixtes"}, {"authorized_access_point": "Familles ouvrières"}, {"authorized_access_point": "Familles transnationales"}, {"authorized_access_point": "Frères et soeurs"}, {"authorized_access_point": "Gendres"}, {"authorized_access_point": "Grands-parents"}, {"authorized_access_point": "Grands-parents et enfants"}, {"authorized_access_point": "Maisons royales"}, {"authorized_access_point": "Oncles"}, {"authorized_access_point": "Parents"}, {"authorized_access_point": "Parents et enfants"}, {"authorized_access_point": "Rang de naissance"}, {"authorized_access_point": "Structure familiale"}, {"authorized_access_point": "Tantes"}, {"authorized_access_point": "Violence familiale"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00005743", "source": "LCSH"}], "authorized_access_point": "Family"}, {"source": "RVMLaval", "authorized_access_point": "Famille"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99005369", "source": "LCSH"}], "authorized_access_point": "Family relationships"}, {"source": "RVMLaval", "authorized_access_point": "Relations familiales"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027258556", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119339867", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11933986", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}], "variant_access_point": ["Cellule familiale", "Et la famille", "Vie familiale", "Et les relations familiales", "Famille - Aspect social", "Famille - Conditions sociales", "Famille nucléaire", "Liens familiaux", "Milieu familial", "Parents (membres d'une famille)", "Relations familiales"], "authorized_access_point": "Famille"} 1 +2024-09-11 09:08:34.905207 2024-09-11 09:08:34.90521 c982fbc5-8d90-4023-8f9c-da71697fed78 {"md5": "d53b3d89e2bc06c119ad43d42063866d", "pid": "273372777", "note": [{"label": ["Salmson : la belle mécanique française / C. et L. Chevalier, 2010", "Salmson register 1921-1930 / D. L. Hill, 2007", "The Salmson story : David & Charles / C. Draper, 1974"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Avions"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/273372777", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181130549", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18113054", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "272925985"}, "classification": [{"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "authorized_access_point": "Salmson (avions)"} 1 +2024-09-11 09:08:33.286842 2024-09-11 09:08:33.286846 5b51a4f4-34d5-4181-8182-443916093145 {"md5": "d5ff025fdd0855b4c5a2a33e6fc43982", "pid": "027266273", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Femmes"}, {"authorized_access_point": "Travailleurs du sexe"}], "related": [{"authorized_access_point": "Enfants de prostituées"}, {"authorized_access_point": "Ex-prostituées"}, {"authorized_access_point": "Prostitution"}, {"authorized_access_point": "Proxénètes"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Courtisanes"}, {"authorized_access_point": "Enfants prostitués"}, {"authorized_access_point": "Escorts"}, {"authorized_access_point": "Femmes de réconfort"}, {"authorized_access_point": "Pastorale des prostituées"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85107622", "source": "LCSH"}], "authorized_access_point": "Prostitutes"}, {"source": "RVMLaval", "authorized_access_point": "Prostituées"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027266273", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119345495", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11934549", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "305"}, {"name": "Problèmes et services sociaux", "type": "bf:ClassificationDdc", "classificationPortion": "360"}], "variant_access_point": ["Femmes prostituées", "Prostituées féminines", "Prostitués féminins", "Prostitution féminine"], "authorized_access_point": "Prostituées"} 1 +2024-09-11 09:08:33.36602 2024-09-11 09:08:33.366023 502d5300-8a2c-4357-a1b6-6c6f2aab7f7d {"md5": "d611a691a1854acac4412be4e67f8bae", "pid": "027314073", "note": [{"label": ["Grand Larousse universel", "Grand Robert de la langue française, 2001", "Robert des sports : dict. de la langue des sports / G. Petiot, 1982 (art. : Record)"], "noteType": "dataSource"}, {"label": ["S'emploie également en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Performance (sports)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Jeux olympiques - Records"}, {"authorized_access_point": "Records de vitesse"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85126900", "source": "LCSH"}], "authorized_access_point": "Sports records"}, {"source": "RVMLaval", "authorized_access_point": "Sports--Records"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027314073", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119383336", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11938333", "source": "BNF"}], "classification": [{"name": "Jeux", "type": "bf:ClassificationDdc", "classificationPortion": "793"}], "variant_access_point": ["Records", "Records (sports)", "Records mondiaux", "Sports - Records"], "authorized_access_point": "Records sportifs"} 1 +2024-09-11 09:08:33.426935 2024-09-11 09:08:33.426939 5dd028e9-4bc2-4666-b708-56a9aaebf971 {"md5": "742ad4eace2ec54c896650a20a8bc5e5", "pid": "027361705", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hommes"}, {"authorized_access_point": "Travailleurs du sexe"}], "related": [{"authorized_access_point": "Prostitution"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Escorts"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85107630", "source": "LCSH"}], "authorized_access_point": "Male prostitutes"}, {"source": "RVMLaval", "authorized_access_point": "Prostitués"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85107630", "source": "LCSH"}], "authorized_access_point": "Male Prostitution"}, {"source": "RVMLaval", "authorized_access_point": "Prostitution masculine"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027361705", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119420098", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11942009", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "305"}, {"name": "Problèmes et services sociaux", "type": "bf:ClassificationDdc", "classificationPortion": "360"}], "variant_access_point": ["Prostitution masculine", "Prostitués masculins", "Prostitués mâles"], "authorized_access_point": "Prostitués"} 1 +2024-09-11 09:08:33.485093 2024-09-11 09:08:33.485097 eb2782ad-04d6-4089-a0cb-215d401a83dc {"md5": "6e5b2e8345204b1f6240b2ee5e58ff50", "pid": "027390349", "note": [{"label": ["Garnier DTTM, 1992"], "noteType": "dataSource"}, {"label": ["Voir aussi la subdivision Tomographie [+ subd géogr.] aux maladies, parties du corps"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Imagerie pour le diagnostic"}], "related": [{"authorized_access_point": "Tomographie"}, {"authorized_access_point": "Scanographes"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Scanographie en médecine vétérinaire"}, {"authorized_access_point": "Scanographie en pédiatrie"}, {"authorized_access_point": "Scanographie hélicoïdale"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Scanographie"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00006372", "source": "LCSH"}], "authorized_access_point": "Tomography"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027390349", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11944283q", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11944283", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "241357721"}, "classification": [{"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Tomodensitométrie", "Tomographie axiale", "Tomographie informatisée"], "authorized_access_point": "Scanographie"} 1 +2024-09-11 09:08:33.543989 2024-09-11 09:08:33.543994 f65fac3d-73f0-45f3-9490-f13332cb1648 {"md5": "cf62e83e4bdd6c38d80b076abd50e321", "pid": "02741664X", "note": [{"label": ["Les politiques linguistiques / L.-J. Calvet, 1996", "L'idée de politique linguistique : actes du colloque du 18 décembre 2008 organisé à l'École normale supérieure / Société française de terminologie, 2009", "Politique linguistique : faits et théorie / N. Halaoui, 2011"], "noteType": "dataSource"}, {"label": ["S'emploie également en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Langues - Aspect politique"}, {"authorized_access_point": "Politique culturelle"}, {"authorized_access_point": "Politique de la communication"}], "related": [{"authorized_access_point": "Diffusion des langues"}, {"authorized_access_point": "Discrimination linguistique"}, {"authorized_access_point": "Écologie des langues"}, {"authorized_access_point": "Langues - Droit"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Monolinguisme"}, {"authorized_access_point": "Alphabétisation"}, {"authorized_access_point": "Cadre européen commun de référence en langue"}, {"authorized_access_point": "Féminisation (linguistique)"}, {"authorized_access_point": "Francophonie"}, {"authorized_access_point": "Langue d'enseignement"}, {"authorized_access_point": "Langue de travail"}, {"authorized_access_point": "Langue universelle"}, {"authorized_access_point": "Normalisation linguistique"}, {"authorized_access_point": "Organisations internationales - Politique linguistique"}, {"authorized_access_point": "Orthographe - Réforme"}, {"authorized_access_point": "Préservation des langues"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Politique linguistique"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85074563", "source": "LCSH"}], "authorized_access_point": "Language planning"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85074564", "source": "LCSH"}], "authorized_access_point": "Language policy"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02741664X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11946264x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11946264", "source": "BNF"}], "classification": [{"name": "Administration publique", "type": "bf:ClassificationDdc", "classificationPortion": "350"}, {"type": "bf:ClassificationDdc", "classificationPortion": "401"}], "variant_access_point": ["Action linguistique", "Aménagement linguistique", "État et langues", "Glottopolitique", "Langues - Planification", "Langues - Politique publique", "Langues et État", "Langues et nationalisme", "Langues et politique", "Langues nationales", "Langues officielles", "Nationalisme et langues", "Planification linguistique", "Politique de la langue", "Politique et langues"], "authorized_access_point": "Politique linguistique"} 1 +2024-09-11 09:08:33.600646 2024-09-11 09:08:33.600649 9114129d-0eb7-4aca-b060-bb8ea88e36c3 {"md5": "e9890918c9073e6ea21f7ae4cd03ee31", "pid": "027802973", "note": [{"label": ["Grand Larousse universel", "Grand Robert de la langue française, 2001"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Constructions commerciales"}], "related": [{"authorized_access_point": "Centres commerciaux"}, {"authorized_access_point": "Commerçants"}, {"authorized_access_point": "Commerce de détail"}, {"authorized_access_point": "Coopératives de consommation"}, {"authorized_access_point": "Entreprises à succursales"}, {"authorized_access_point": "Magasins - Façades"}, {"authorized_access_point": "Magasins - Horaires et jours d'ouverture"}, {"authorized_access_point": "Magasins - Localisation"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Dépôts-ventes"}, {"authorized_access_point": "Grands magasins"}, {"authorized_access_point": "Magasins d'usine"}, {"authorized_access_point": "Magasins de centre-ville"}, {"authorized_access_point": "Magasins discount"}, {"authorized_access_point": "Magasins en libre-service"}, {"authorized_access_point": "Magasins éphémères"}, {"authorized_access_point": "Magasins populaires"}, {"authorized_access_point": "Magasins spécialisés"}, {"authorized_access_point": "Petits commerces"}, {"authorized_access_point": "Rayons de magasin"}, {"authorized_access_point": "Sex-shops"}, {"authorized_access_point": "Tabernae"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85128377", "source": "LCSH"}], "authorized_access_point": "Stores, Retail"}, {"source": "RVMLaval", "authorized_access_point": "Magasins"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027802973", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119766650", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11976665", "source": "BNF"}], "classification": [{"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Bâtiment", "type": "bf:ClassificationDdc", "classificationPortion": "690"}], "variant_access_point": ["Boutiques", "Commerces", "Établissements commerciaux", "Magasins de détail", "Magasins de vente au détail"], "authorized_access_point": "Magasins"} 1 +2024-09-11 09:08:33.66137 2024-09-11 09:08:33.661374 9b323a40-0c8a-4b4c-99ba-dbf5df254748 {"md5": "31e0f11578d8fb5e027a90ed39da39bf", "pid": "027824586", "note": [{"label": ["Dict. de l'Académie de médecine - http://dictionnaire.academie-medecine.fr (2013-07-17)", "Dict. de médecine Flammarion, 2008", "Dict. français de médecine et de biologie, 1981", "Dict. illustré des termes de médecine, 2008 : glycogénique (maladie)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Maladies héréditaires métaboliques"}, {"authorized_access_point": "Troubles du métabolisme des glucides"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Maladie de McArdle"}, {"authorized_access_point": "Maladie de Pompe"}, {"authorized_access_point": "Maladie de von Gierke"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85055399", "source": "LCSH"}], "authorized_access_point": "Glycogen storage disease"}, {"source": "MeSH", "identifiedBy": [{"type": "uri", "value": "http://id.nlm.nih.gov/mesh/M0009469", "source": "MeSH"}], "authorized_access_point": "Glycogen Storage Disease"}, {"source": "RVMLaval", "authorized_access_point": "Glycogénose"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027824586", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11978325d", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11978325", "source": "BNF"}], "classification": [{"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Glycogen storage diseases", "Glycogénose", "GSD (maladies)", "Maladies glycogéniques", "Polycories glycogéniques"], "authorized_access_point": "Glycogénoses"} 1 +2024-09-11 09:08:33.719272 2024-09-11 09:08:33.719276 4e83f462-6552-425d-97b4-2513a4f0a7a1 {"md5": "a196599d659413b462972e82928b8c90", "pid": "027855929", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Droit canonique"}, {"authorized_access_point": "Église catholique - Finances"}], "related": [{"authorized_access_point": "Messe"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85081908", "source": "LCSH"}], "authorized_access_point": "Mass stipends"}, {"source": "RVMLaval", "authorized_access_point": "Honoraires de messe"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027855929", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11980818s", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11980818", "source": "BNF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}], "variant_access_point": ["Offrandes de messe"], "authorized_access_point": "Honoraires de messe"} 1 +2024-09-11 09:08:33.782514 2024-09-11 09:08:33.782519 1970b886-df0b-4a8c-ba33-0d135e2593f9 {"md5": "b65edcdfae717c7a02993d101fcc9494", "pid": "028205847", "note": [{"label": ["Ensemble des activités économiques et financières ayant pour objet les transactions, les échanges, etc", "S'emploie également en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Économie politique"}], "related": [{"authorized_access_point": "Astrologie et affaires"}, {"authorized_access_point": "Commerce"}, {"authorized_access_point": "Gestion"}, {"authorized_access_point": "Gestion d'entreprise"}, {"authorized_access_point": "Médias et affaires"}, {"authorized_access_point": "Prostitution et affaires"}, {"authorized_access_point": "Quartiers d'affaires"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Banques d'affaires"}, {"authorized_access_point": "Comptabilité"}, {"authorized_access_point": "Créativité dans les affaires"}, {"authorized_access_point": "Droit des affaires"}, {"authorized_access_point": "Entrepreneuriat"}, {"authorized_access_point": "Entreprises"}, {"authorized_access_point": "Éthique des affaires"}, {"authorized_access_point": "Femmes d'affaires"}, {"authorized_access_point": "Finances"}, {"authorized_access_point": "Gestion budgétaire"}, {"authorized_access_point": "Goodwill"}, {"authorized_access_point": "Hommes d'affaires"}, {"authorized_access_point": "Immobilier"}, {"authorized_access_point": "Industries du sexe"}, {"authorized_access_point": "Langage commercial et des affaires"}, {"authorized_access_point": "Marchandisation"}, {"authorized_access_point": "Négociations (affaires)"}, {"authorized_access_point": "Profit"}, {"authorized_access_point": "Relations avec la clientèle"}, {"authorized_access_point": "Secteur privé"}, {"authorized_access_point": "Sociétés"}, {"authorized_access_point": "Succès dans les affaires"}, {"authorized_access_point": "Téléphone dans les affaires"}, {"authorized_access_point": "Tenue des livres"}, {"authorized_access_point": "Voyages d'affaires"}, {"authorized_access_point": "Publicité"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Affaires"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85018260", "source": "LCSH"}], "authorized_access_point": "Business"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028205847", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13319296w", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13319296", "source": "BNF"}], "classification": [{"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}], "variant_access_point": ["Et les affaires"], "authorized_access_point": "Affaires"} 1 +2024-09-11 09:08:33.895148 2024-09-11 09:08:33.895152 91dfcc6a-90af-4ae2-9c7f-9bea87f7cae0 {"md5": "99038009dfdcc8001491f3fd3f5c4b69", "pid": "028889347", "note": [{"label": ["S'emploie également en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Enseignement"}], "related": [{"authorized_access_point": "Documents audiovisuels"}, {"authorized_access_point": "Documentation audiovisuelle"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Étude et enseignement -- Aides audiovisuelles"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2001009046", "source": "LCSH"}], "authorized_access_point": "Study and teaching--Audio-visual aids"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028889347", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12063139q", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12063139", "source": "BNF"}], "classification": [{"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}], "variant_access_point": ["Enseignement - Méthodes audiovisuelles", "Étude et enseignement - Aides audiovisuelles", "Magnétophones dans l'enseignement", "Radio en éducation", "Radio scolaire", "Télévision en éducation", "Télévision scolaire", "Vidéo en éducation", "Vidéodisques en éducation"], "authorized_access_point": "Enseignement audiovisuel"} 1 +2024-09-11 09:08:33.95385 2024-09-11 09:08:33.953854 28515121-8cac-477a-a485-7b17e77ccd70 {"md5": "b4e21ead7cd9dfd73d397d3df8db1f00", "pid": "028938615", "note": [{"label": ["Wikipédia : Industrie du sexe - http://fr.wikipedia.org (2011-09-02)", "La mondialisation des industries du sexe / R. Poulin, 2005", "L'industrie du sexe / D. Haddad, 1992"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Affaires"}], "related": [{"authorized_access_point": "Cybersexe"}, {"authorized_access_point": "Pornographie"}, {"authorized_access_point": "Sexualité"}, {"authorized_access_point": "Travailleurs du sexe"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Maisons de prostitution"}, {"authorized_access_point": "Prostitution"}, {"authorized_access_point": "Sex-shops"}, {"authorized_access_point": "Strip-tease"}, {"authorized_access_point": "Tourisme sexuel"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Industrie pornographique"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85120657", "source": "LCSH"}], "authorized_access_point": "Sex-oriented businesses"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028938615", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120670727", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12067072", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}], "variant_access_point": ["Sexe - Industrie et commerce", "Sexualité - Industrie et commerce", "Commerce pornographique", "Commerce sexuel", "Industrie du sexe", "Industrie pornographique", "Messageries roses", "Porno business", "Pornographie - Industrie et commerce", "Sex business"], "authorized_access_point": "Industries du sexe"} 1 +2024-09-11 09:08:34.014137 2024-09-11 09:08:34.014142 7928ec59-b3b2-482a-978e-a5150de532ac {"md5": "7e3b68f45e79e71061c365e00330413f", "pid": "031082599", "note": [{"label": ["Thesaurus international de la terminologie relative aux réfugiés / HCR-la Documentation française, 1992"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les documents sur les personnes nées à l'étranger entrées dans un pays dans l'intention de s'y établir, voire d'en devenir citoyens. Cette vedette peut être suivie d'une subdivision géographique qui indique le pays où les immigrés s'établissent. Pour préciser éventuellement l'origine géographique des immigrés, on établit une seconde vedette matière du type : [Nationalité] -- [Pays], par ex. : Irlandais -- États-Unis", "S'emploie également en subdivision"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Participation des immigrés aux guerres"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Population"}], "related": [{"authorized_access_point": "Émigration et immigration"}, {"authorized_access_point": "Enfants d'immigrés"}, {"authorized_access_point": "Envois de fonds"}, {"authorized_access_point": "Étrangers"}, {"authorized_access_point": "Immigrés - Acculturation"}, {"authorized_access_point": "Internet et immigrés"}, {"authorized_access_point": "Participation des immigrés"}, {"authorized_access_point": "Pastorale des migrants"}, {"authorized_access_point": "Travailleurs étrangers"}, {"authorized_access_point": "Écrits d'immigrés"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Adolescents immigrés"}, {"authorized_access_point": "Bibliothèques et immigrés"}, {"authorized_access_point": "Diasporas"}, {"authorized_access_point": "Familles immigrées"}, {"authorized_access_point": "Immigrées"}, {"authorized_access_point": "Immigrés âgés"}, {"authorized_access_point": "Immigrés clandestins"}, {"authorized_access_point": "Immigrés dans l'industrie du cinéma"}, {"authorized_access_point": "Jeunes immigrés"}, {"authorized_access_point": "Service social auprès des immigrés"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Immigrants"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85064517", "source": "LCSH"}], "authorized_access_point": "Immigrants"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031082599", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb122368540", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12236854", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}], "variant_access_point": ["Émigrants", "Et les émigrés", "Émigrés", "Et l'immigration", "Et les travailleurs étrangers", "Expatriés", "Immigrants", "Migrants", "Population d'origine étrangère"], "authorized_access_point": "Immigrés"} 1 +2024-09-11 09:08:34.076645 2024-09-11 09:08:34.076648 4a09abff-2752-42f7-bf89-91e79cd12bd0 {"md5": "21d25644592b37de7619e82e822e0841", "pid": "031955274", "note": [{"label": ["Grand Larousse universel", "Encycl. universalis (art. : Chalemie) : sahnāī (shahnāī, shehnāī) - http://www.universalis-edu.com (2011-02-15)", "Dict. de la musique / M. Honegger, 1976 (art. : Inde)", "Dict. de la musique / M. Vignal, 2005 (art. : Indienne (Musique)) : sahnaï", "Dict. des mots de la musique / J. Siron, 2006 : shahnāī", "Encycl. des instruments de musique / A. Buchner, 1980 : sahnaï", "Encycl. de la musique, 1992 : shenai", "Médiathèque de la Cité de la musique : sahnai - http://mediatheque.cite-musique.fr (2011-02-15)", "Dict. encyclopédique de la musique / D. Arnold, 1988 (art. : Inde ; Chalemie) : shahnaï ou sahnaï", "Oxford Music online : śahnāī - http://www.oxfordmusiconline.com (2011-02-15)", "Dict. général hindi-français / N. Balbir, 1992 : ś́ahnāī", "BnF Service indien, 2017-07-17"], "noteType": "dataSource"}, {"label": ["Inde du Nord, Pakistan, Bangladesh. Hautbois en feuille de palmier séchée, montée dans une petite base métallique conique insérée dans un tuyau en bois d'environ 50 cm avec 7 trous équidistants dans lequel est emboîté un pavillon métallique conique (facture pour la musique hindoustanie). Dans certaines traditions régionales, le tuyau et le pavillon ne forment qu'une seule pièce en bois ou en métal, le nombre de trous varie entre 6 et 8, et il y a parfois un trou pour le pouce"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hautbois (famille d'instruments)"}, {"authorized_access_point": "Instruments de musique - Inde"}], "related": [{"authorized_access_point": "Sahanai (hautbois népalais)"}, {"authorized_access_point": "Shanāī, Musique de"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCMP", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/performanceMediums/mp2013015636", "source": "LCMP"}], "authorized_access_point": "Śahnāī"}, {"source": "RVMLaval", "authorized_access_point": "Shahnaï"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85121263", "source": "LCSH"}], "authorized_access_point": "Shehnai"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031955274", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb123075977", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12307597", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "variant_access_point": ["Śahnāī", "Sahnaī", "Sahnai", "Shahnaï", "Shehnāī", "Shenai"], "authorized_access_point": "Shanāī (hautbois indien)"} 1 +2024-09-11 09:08:34.139794 2024-09-11 09:08:34.139798 8697dd8a-f601-49a7-b2ce-80052adf1eab {"md5": "7815af1a0078ea121c6a11b7a03c9ba1", "pid": "03465500X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Enseignement - Méthodes actives"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Méthode Agazzi"}, {"authorized_access_point": "Pédagogie Germaine Tortel"}, {"authorized_access_point": "Tapis de lecture"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Éducation de la première enfance -- Méthodes actives"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh89003664", "source": "LCSH"}], "authorized_access_point": "Early childhood education--Activity programs"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03465500X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb125387672", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12538767", "source": "BNF"}], "classification": [{"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}], "authorized_access_point": "Éducation de la première enfance - Méthodes actives"} 1 +2024-09-11 09:08:34.227937 2024-09-11 09:08:34.227942 2df6c2a1-f74c-42a8-8187-6cac97c3f3b4 {"md5": "919fadd91ed811a57dfe763c712ea21f", "pid": "035141913", "note": [{"label": ["La géographie culturelle / Paul Claval, 1995", "Les mots de la géographie / Roger Brunet, 1992 (art. culture)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Culture"}, {"authorized_access_point": "Géographie humaine"}], "related": [{"authorized_access_point": "Études régionales"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Géographie des sexualités"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Géographie culturelle"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035141913", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb131699688", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13169968", "source": "BNF"}], "classification": [{"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}, {"name": "Géographie, tourisme (guides) et voyages", "type": "bf:ClassificationDdc", "classificationPortion": "910"}], "variant_access_point": ["Anthropogéographie"], "authorized_access_point": "Géographie culturelle"} 1 +2024-09-11 09:08:34.293321 2024-09-11 09:08:34.293325 dc916a8f-9314-4b7f-9b33-b3e36fbe2f58 {"md5": "fb0169a93b2d09af64ecd6646c18cf21", "pid": "05058748X", "note": [{"label": ["Grand Larousse universel"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Aphrodisiaques"}, {"authorized_access_point": "Art érotique"}, {"authorized_access_point": "Homoérotisme"}, {"authorized_access_point": "Libertinage"}, {"authorized_access_point": "Morale sexuelle"}, {"authorized_access_point": "Objets érotiques"}, {"authorized_access_point": "Pornographie"}, {"authorized_access_point": "Séduction"}, {"authorized_access_point": "Sexualité"}, {"authorized_access_point": "Sexualité dans les arts du spectacle"}, {"authorized_access_point": "Bandes dessinées érotiques"}, {"authorized_access_point": "Films érotiques"}, {"authorized_access_point": "Photographie érotique"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Littérature érotique"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85044718", "source": "LCSH"}], "authorized_access_point": "Erotica"}, {"source": "RVMLaval", "authorized_access_point": "Érotisme"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/05058748X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12650884k", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12650884", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Arts", "type": "bf:ClassificationDdc", "classificationPortion": "700"}], "variant_access_point": ["Érographie"], "authorized_access_point": "Érotisme"} 1 +2024-09-11 09:08:34.348808 2024-09-11 09:08:34.348811 32364a2f-3ecc-40dd-8a33-4f71530e8c88 {"md5": "cda1ec910a3f8e89c9f08612c48d67de", "pid": "061612820", "note": [{"label": ["Sous cette vedette, on trouve les documents sur les périodiques en malgache ; ou publiés à Madagascar (quelle qu'en soit la langue) ; ou publiés par des Malgaches à l'étranger"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Malgache (langue)"}, {"authorized_access_point": "Madagascar"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85080027", "source": "LCSH"}], "authorized_access_point": "Malagasy periodicals"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/061612820", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13757124s", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13757124", "source": "BNF"}], "classification": [{"name": "Sciences de l'information", "type": "bf:ClassificationDdc", "classificationPortion": "020"}, {"name": "Ethnologie", "type": "bf:ClassificationDdc", "classificationPortion": "390"}, {"name": "Langues", "type": "bf:ClassificationDdc", "classificationPortion": "400"}], "variant_access_point": ["Périodiques en malgache"], "authorized_access_point": "Périodiques malgaches"} 1 +2024-09-11 09:08:34.406615 2024-09-11 09:08:34.406619 50ca3b68-ca53-4772-9bc3-d74eeb0ecbfd {"md5": "dae166cf551827c530b42ad7c4ebc4fd", "pid": "127977996", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Madagascar"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/127977996", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16079309j", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16079309", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Ethnologie", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "variant_access_point": ["Malgaches - Caractère national"], "authorized_access_point": "Caractère national malgache"} 1 +2024-09-11 09:08:34.464178 2024-09-11 09:08:34.464181 b9d38229-f8b7-4669-a984-6b9c866a9f9d {"md5": "eb820b3f3164a773667255374c0f831a", "pid": "131462415", "note": [{"label": ["S'emploie uniquement en subdivision aux collectivités (à l'exception des types de collectivités) et aux personnes", "Pour l'application générale de cette subdivision, voir les notes sous le renvoi général Et [nom géographique]"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Madagascar"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/131462415", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16061704s", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16061704", "source": "BNF"}], "classification": [{"name": "Géographie du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "915"}], "variant_access_point": ["Et les Malgaches"], "authorized_access_point": "Et Madagascar"} 1 +2024-09-11 09:08:34.525151 2024-09-11 09:08:34.525156 83c59a3d-b345-40a0-b980-9b569013c13d {"md5": "b1b59ea1c0109481e2a83242a98494a8", "pid": "144331373", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Allemand (langue)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Deutsche Sprachprüfung für den Hochschulzugang"}, {"authorized_access_point": "Goethe-Zertifikat A1"}, {"authorized_access_point": "Goethe-Zertifikat A2"}, {"authorized_access_point": "Goethe-Zertifikat B1"}, {"authorized_access_point": "Goethe-Zertifikat B2"}, {"authorized_access_point": "Goethe-Zertifikat C1"}, {"authorized_access_point": "Goethe-Zertifikat C2"}, {"authorized_access_point": "Test Deutsch als Fremdsprache"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2008008787", "source": "LCSH"}], "authorized_access_point": "German language -- Examinations"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/144331373", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb162021301", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16202130", "source": "BNF"}], "classification": [{"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}, {"name": "Langues et linguistique", "type": "bf:ClassificationDdc", "classificationPortion": "400"}], "authorized_access_point": "Allemand (langue) - Examens"} 1 +2024-09-11 09:08:34.577424 2024-09-11 09:08:34.577427 b06ed404-9f44-4d2b-b85d-1061101cbe42 {"md5": "0d5c42e39a47211a9a3e9568823ff66d", "pid": "180213911", "note": [{"label": ["Wikidata - https://www.wikidata.org/wiki/Q967853 (2024-06-27)", "France Terme - http://www.culture.fr (2014-08-04)", "Benoît Hamon introduit le cours en ligne massif et ouvert (CLOM) \\"Enseigner et former avec le numérique\\", destiné à la communauté enseignante - http://www.education.gouv.fr (2014-08-04)", "Un MOOC pour enseigner et former par le numérique - http://www.education.gouv.fr (2014-08-04)"], "noteType": "dataSource"}, {"label": ["Cours en ligne ouvert à tous, souvent gratuit, qui peut accueillir un très grand nombre de participants simultanément"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Formation en ligne"}], "related": [{"authorized_access_point": "Internet en éducation"}, {"authorized_access_point": "Universités virtuelles"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2013002540", "source": "LCSH"}], "authorized_access_point": "MOOCs (Web-based instruction)"}, {"source": "RVMLaval", "authorized_access_point": "Cours en ligne ouverts à tous"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/180213911", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16901246n", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16901246", "source": "BNF"}], "classification": [{"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}, {"type": "bf:ClassificationDdc", "classificationPortion": "621"}], "variant_access_point": ["CLOM", "COOC", "Corporate open online courses", "Cours en ligne", "Cours en ligne ouverts et massifs", "Masse open online courses", "Massively open online courses", "MOOC", "MOOC d'entreprise"], "authorized_access_point": "Cours en ligne ouverts à tous"} 1 +2024-09-11 09:08:34.635852 2024-09-11 09:08:34.635856 697cc6f5-1781-4237-85fc-5727ff9def29 {"md5": "b55466ba1f1522e8a24845780a974069", "pid": "181492628", "note": [{"label": ["Prüfungstraining Deutsch. Goethe-Zertifikat, C1. Zentrale Mittelstufenprüfung (ZMP) / G. Baier, R. Dittrich, 2008"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Allemand (langue) - Examens"}], "related": [{"authorized_access_point": "Goethe-Zertifikat A1"}, {"authorized_access_point": "Goethe-Zertifikat B1"}, {"authorized_access_point": "Goethe-Zertifikat C2"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/181492628", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16932316v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16932316", "source": "BNF"}], "classification": [{"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}, {"name": "Langues et linguistique", "type": "bf:ClassificationDdc", "classificationPortion": "400"}], "authorized_access_point": "Goethe-Zertifikat C1"} 1 +2024-09-11 09:08:34.697864 2024-09-11 09:08:34.697867 64eac061-a889-4a96-b42f-61fcce804e46 {"md5": "d654131ba2e6a9e22901bbff4e53eb03", "pid": "273372734", "note": [{"label": ["Félix Amiot : un industriel normand de l'aéronautique et de la construction navale / J. Lecarpentier, 2020"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Avions"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/273372734", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18113037q", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18113037", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "272748889"}, "classification": [{"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["Société d'emboutissage et de constructions mécaniques (avions)"], "authorized_access_point": "Amiot (avions)"} 1 +2024-09-11 09:08:34.756515 2024-09-11 09:08:34.756519 73ab5ed8-7939-4844-8ee1-82de4602915d {"md5": "2df02eb20d3a130ac80cc18679ddff35", "pid": "273372742", "note": [{"label": ["Jane's encycl. of aviation, M. J. Taylor, 1980"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Avions"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/273372742", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18113041z", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18113041", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "272765120"}, "classification": [{"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "authorized_access_point": "Farman (avions)"} 1 +2024-09-11 09:08:34.823215 2024-09-11 09:08:34.823218 809dcd54-7cbb-4421-a24f-3f9752c1b4ec {"md5": "380d8a5be2e2f51f522c1b866f292c42", "pid": "273372750", "note": [{"label": ["Aviation française - https://www.aviafrance.com (2023-11-09)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Avions"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/273372750", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18113046p", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18113046", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "272860972"}, "classification": [{"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "authorized_access_point": "Hanriot (avions)"} 1 +2024-09-11 09:08:35.085904 2024-09-11 09:08:35.085907 975d7716-8575-4ebb-9ba6-0e7c9ab6cc34 {"md5": "efd44e39f339e1b6afe5819a6774c7a5", "pid": "279035152", "note": [{"label": ["L'industrie automobile : 1905-1971 / J.-L. Loubet, 1999", "Club Delahaye - https://clubdelahaye.com (2024-06-20)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Camions"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279035152", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181537573", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18153757", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "278618901"}, "classification": [{"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "authorized_access_point": "Delahaye (camions)"} 1 +2024-09-11 09:08:35.150185 2024-09-11 09:08:35.150191 c5c53605-a464-4508-a604-71335f027cd7 {"md5": "38381d3d1dc24562614937fce03a501b", "pid": "279035160", "note": [{"label": ["Planète Renault - https://www.planeterenault.com (2024-06-20)", "Notice technique de l'autobus Renault type SXB moteur Renault 15 CV type 370‎ / Ministère de l'air. Armée de l'air, 1934"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Autobus"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279035160", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18153768r", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18153768", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "278626599"}, "classification": [{"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "authorized_access_point": "Renault (autobus)"} 1 +2024-09-11 09:08:35.216895 2024-09-11 09:08:35.216901 a58d98f5-d94e-4a6f-9bbd-5a7f426aa6fa {"md5": "b17ec25324a6b06d659de47e1ed7e752", "pid": "279035179", "note": [{"label": ["Wikipedia (art. : Latil (entreprise)) - https://fr.wikipedia.org (2024-06-20)", "Fondation Berliet - https://www.fondationberliet.org (2024-06-20)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Autobus"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279035179", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18153789q", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18153789", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "278653340"}, "classification": [{"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "authorized_access_point": "Latil (autobus)"} 1 +2024-09-11 09:08:35.275146 2024-09-11 09:08:35.275149 370f5f99-d13b-4547-bed4-e2cc51a99693 {"md5": "18f07ea99f1fd24ffd110084d15a9c8b", "pid": "279035187", "note": [{"label": ["L'encycl. mondiale des camions / P.-J. Davis, 2003", "L'Atlas des camions français / F. Dréer, 2007"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Camions"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279035187", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181537949", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18153794", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "278971148"}, "classification": [{"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "authorized_access_point": "Latil (camions)"} 1 +2024-09-11 09:08:35.337174 2024-09-11 09:08:35.337179 8bafb116-4dc7-484d-9e59-8a92dd7cd7fd {"md5": "5b5d293ec9c95d2bec63bf659e7be5df", "pid": "279307322", "note": [{"label": ["Wikidata - https://www.wikidata.org/wiki/Q190333 (2024-05-24)", "Wikipédia - https://en.wikipedia.org (2024-05-24)", "Goethe Institut - http://www.goethe.de (2024-05-24)", "Goethe-Zertifikat C2 : Grosses Deutsches Sprachdiplom : Übungsbuch mit Audios Online, Deutsch als Fremdsprache / J. Gerbes, 2022"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Allemand (langue) - Examens"}], "related": [{"authorized_access_point": "Goethe-Zertifikat C1"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307322", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18148590c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148590", "source": "BNF"}], "classification": [{"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}, {"name": "Langues et linguistique", "type": "bf:ClassificationDdc", "classificationPortion": "400"}], "authorized_access_point": "Goethe-Zertifikat C2"} 1 +2024-09-11 09:08:35.407523 2024-09-11 09:08:35.407527 a41711ad-11c2-4de7-b64f-8241a64e6b98 {"md5": "aaa6161b26eacea28dc2f7aeb50db80b", "pid": "279307330", "note": [{"label": ["La famille choisie toujours d'actualité ? Vers une diversification des formes de liens familiaux pour les minorités sexuelles et de genre au Québec [in] Écritures des sexualités, 2023, 29", "Familles choisies et réseaux sociaux : quelle importance pour les personnes LGBTQ ? / S. Doucet [in] Partenariat de recherche SAVIE-LGBTQ, 2018, 1", "La famille élective / D . Mehl [in] Dialogue, 2023, 242, 4"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Famille"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Familles choisies"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307330", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18148927q", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148927", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}], "variant_access_point": ["Famille choisie", "Famille de choix", "Famille élective", "Familles de choix", "Familles électives"], "authorized_access_point": "Familles choisies"} 1 +2024-09-11 09:08:35.46401 2024-09-11 09:08:35.464013 b9edd124-e1bc-4f3e-95f7-94adc792e275 {"md5": "eb5236400bfa052a9aaa9788bec4ce38", "pid": "279307349", "note": [{"label": ["Grand Robert de la langue française (art. : binaire) - https://grandrobert-lerobert-com (2024-06-10)", "Grand dict. terminologique (art. : personne non binaire) - https://vitrinelinguistique.oqlf.gouv.qc.ca (2024-06-10)", "Binaires / Non-Binaires [in] Adolescences, 2023, 41, 2"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Minorités sexuelles"}], "related": [{"authorized_access_point": "Non-binarité"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2017004882", "source": "LCSH"}], "authorized_access_point": "Gender-nonconforming people"}, {"source": "MeSH", "identifiedBy": [{"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000096224", "source": "MeSH"}], "authorized_access_point": "Gender-Nonconforming Persons"}, {"source": "RVMLaval", "authorized_access_point": "Personnes non binaires"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307349", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18151606f", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18151606", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}], "variant_access_point": ["Personnes non-binaires", "Non-binaires", "Personnes de genre non binaires", "Personnes non binaires dans le genre"], "authorized_access_point": "Personnes non binaires"} 1 +2024-09-11 09:08:35.52794 2024-09-11 09:08:35.527944 99c1a981-42bc-4e1e-be61-965db73015db {"md5": "569eaf1e040e78a15ef513107733ae66", "pid": "279307357", "note": [{"label": ["Wikidata - https://www.wikidata.org/wiki/Q221618 (2024-06-13)", "Trésor de la langue française - http://atilf.atilf.fr (2024-06-13)", "Grand Larousse universel", "Grand Robert de la langue française, 2001", "Le travail pornographique : enquête sur la production des fantasme / M. Trachman, 2013", "Sociologie de la sexualité / M. Bozon, 2018"], "noteType": "dataSource"}, {"label": ["Magasin d'articles ayant à voir avec la sexualité et la pornographie"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Industries du sexe"}, {"authorized_access_point": "Magasins"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307357", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18152495k", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18152495", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Bâtiment", "type": "bf:ClassificationDdc", "classificationPortion": "690"}], "variant_access_point": ["Boutiques érotiques", "Boutiques pornographiques"], "authorized_access_point": "Sex-shops"} 1 +2024-09-11 09:08:35.589754 2024-09-11 09:08:35.589758 2db8e34f-8f0f-4583-a4af-e62a9d58e215 {"md5": "42c45343b02e91dfb8a311db571f38c3", "pid": "279307365", "note": [{"label": ["Wikidata - https://www.wikidata.org/wiki/Q2069508 (2024-06-13)", "Wikipédia - https://fr.wikipedia.org (2024-06-13)", "Dict. de la psychologie / W. D. Fröhlich, 1997", "Dict. des cultures gays et lesbiennes / D. Eribon, 2003"], "noteType": "dataSource"}, {"label": ["Relations érotiques, mais pas nécessairement sexuelles, entre personnes du même sexe. - Imaginaire mettant en scène le jeu du désir entre deux personnes du même sexe"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Homosexualité"}], "related": [{"authorized_access_point": "Érotisme"}, {"authorized_access_point": "Homosexualité et art"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307365", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18152519r", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18152519", "source": "BNF"}], "classification": [{"name": "Psychologie, psychanalyse", "type": "bf:ClassificationDdc", "classificationPortion": "150"}, {"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Arts", "type": "bf:ClassificationDdc", "classificationPortion": "700"}], "authorized_access_point": "Homoérotisme"} 1 +2024-09-11 09:08:35.650217 2024-09-11 09:08:35.650223 7cfd13dd-1535-46bc-9c01-870d1e045747 {"md5": "e0ad4eb740e775b957265e9101a7f34b", "pid": "279307373", "note": [{"label": ["Géographies culturelles : objets, concepts, méthodes / P. Guinard, 2019", "Mapping desire : geographies of sexualities / D. Bell, G. Valentine, 1995", "Géographie de la sexualité ou sexualité du géographe ? Quelques leçons autour d'une injonction / M. Blidon [in] Annales de géographie, 2012, 5-6"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Géographie culturelle"}], "related": [{"authorized_access_point": "Sexualité"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307373", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18152571v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18152571", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Géographie, tourisme (guides) et voyages", "type": "bf:ClassificationDdc", "classificationPortion": "910"}], "variant_access_point": ["Géographie de la sexualité", "Sexualité - Géographie"], "authorized_access_point": "Géographie des sexualités"} 1 +2024-09-11 09:08:36.33737 2024-09-11 09:08:36.337376 e38cf459-6723-4bf1-a124-f19f77353dfc {"md5": "7890d1c5aad6d10ca21672978fba06aa", "pid": "27930773X", "note": [{"label": ["Vitrine linguistique - https://vitrinelinguistique.oqlf.gouv.qc.ca (2024-007-01)", "Dict. des sciences de la terre / M. Moureau, G. Brace, 2000", "Dict. de géologie / A. Foucault, J.-F. Raoult, 2000"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tectonique"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27930773X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18155575z", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155575", "source": "BNF"}], "classification": [{"name": "Sciences de la Terre", "type": "bf:ClassificationDdc", "classificationPortion": "550"}], "authorized_access_point": "Paléotectonique"} 1 +2024-09-11 09:08:35.715167 2024-09-11 09:08:35.715172 a89a9054-9a73-49bc-a34e-fb66d9f1566c {"md5": "ba6a80f7745afd535fb1fc2a9125c76b", "pid": "279307462", "note": [{"label": ["Vitrine linguistique - https://vitrinelinguistique.oqlf.gouv.qc.ca (2024-06-24)", "Dict. de l'Académie de médecine - https://www.academie-medecine.fr/le-dictionnaire (2024-06-24)", "Loterre : Nutrition artificielle (thésaurus) - https://www.loterre.fr (2024-06-24)", "Dict. médical de poche / I. Marroun, T. Sené, J. Quevauvilliers, 2018", "Hyperprotéinémies et hypoprotéinémies chez le chien et le chat / C. Coisnon, A. Briend-Marchal [in] EMC-Vétérinaire, 2020, 29, 1", "Dict. illustré des termes de médecine, 2012 : hypo-albuminémie"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hypoprotéinémie"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "MeSH", "identifiedBy": [{"type": "uri", "value": "https://id.nlm.nih.gov/mesh/M0404823", "source": "MeSH"}], "authorized_access_point": "Hypoalbuminemia"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307462", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18154211n", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18154211", "source": "BNF"}], "classification": [{"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Hypo-albuminémie"], "authorized_access_point": "Hypoalbuminémie"} 1 +2024-09-11 09:08:35.776476 2024-09-11 09:08:35.776479 54718d21-f6a9-4e82-bb15-ffef331d8783 {"md5": "cee82cd39201749c09f1b34fa1e7deff", "pid": "279307470", "note": [{"label": ["Encycl. universalis - https://www.universalis-edu.com (2024-06-24)", "Dict. de l'Académie de médecine - https://www.academie-medecine.fr/le-dictionnaire (2024)", "Dict. illustré des termes de médecine, 2012", "Dict. de médecine Flammarion, 2008", "Dict. français de médecine et de biologie, 1981"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Arythmie"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "https://id.loc.gov/authorities/subjects/sh85046589", "source": "LCSH"}], "authorized_access_point": "Extrasystole"}, {"source": "MeSH", "identifiedBy": [{"type": "uri", "value": "https://id.nlm.nih.gov/mesh/M0008072", "source": "MeSH"}], "authorized_access_point": "Cardiac Complexes, Premature"}, {"source": "RVMLaval", "authorized_access_point": "Extrasystole"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307470", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181542391", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18154239", "source": "BNF"}], "classification": [{"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Extrasystoles"], "authorized_access_point": "Extrasystole"} 1 +2024-09-11 09:08:35.835339 2024-09-11 09:08:35.835342 cc6b7ddd-8f44-43a8-81b5-809ef30d16ab {"md5": "9b2f6aa18a4939d1a6eb6099eebf43b0", "pid": "279307519", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307519", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181549138", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18154913", "source": "BNF"}], "classification": [{"name": "Physique", "type": "bf:ClassificationDdc", "classificationPortion": "530"}, {"name": "Sciences appliquées", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "authorized_access_point": "Installations nucléaires - Russie"} 1 +2024-09-11 09:08:35.896977 2024-09-11 09:08:35.896981 7b097e2b-aa1a-4bec-8725-afb6404539d2 {"md5": "cebc8ea337be0469624c98e14718681b", "pid": "279307535", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Architecture antique"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307535", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18155060j", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155060", "source": "BNF"}], "classification": [{"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}, {"name": "Architecture", "type": "bf:ClassificationDdc", "classificationPortion": "720"}, {"name": "Préhistoire et histoire ancienne", "type": "bf:ClassificationDdc", "classificationPortion": "930"}], "variant_access_point": ["Cananéens - Architecture"], "authorized_access_point": "Architecture cananéenne"} 1 +2024-09-11 09:08:35.958483 2024-09-11 09:08:35.958487 a66bd3d3-ef92-4501-918c-5c5b6d8dc047 {"md5": "5bf027716bbf2f9a715b2aabce45fdf4", "pid": "27930756X", "note": [{"label": ["Dict. de l'Académie nationale de pharmacie - https://dictionnaire.acadpharm.org (2024-06-28)", "Dict. de la chimie et de ses applications / C. et R. Duval, J.-C. Richer, 2010", "Dict. pharmaceutique : pharmacologie et chimie des médicaments / Y. Landry, Y. Rival, 2007", "Guide pratique des médicaments : Dorosz / D. Vital Durand, C. Le Jeunne, 2013", "Dict. de médecine Flammarion, 2008", "The Merck index, 2013 : naproxen"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Arylcarboxyliques"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "https://id.loc.gov/authorities/subjects/sh85089785", "source": "LCSH"}], "authorized_access_point": "Naproxen"}, {"source": "MeSH", "identifiedBy": [{"type": "uri", "value": "https://id.nlm.nih.gov/mesh/M0014467", "source": "MeSH"}], "authorized_access_point": "Naproxen"}, {"source": "RVMLaval", "authorized_access_point": "Naproxène"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27930756X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18155270d", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155270", "source": "BNF"}], "classification": [{"name": "Chimie, minéralogie, cristallographie", "type": "bf:ClassificationDdc", "classificationPortion": "540"}, {"type": "bf:ClassificationDdc", "classificationPortion": "615"}], "authorized_access_point": "Naproxène"} 1 +2024-09-11 09:08:38.339228 2024-09-11 09:08:38.339231 328f58e9-61f8-42bf-bf8b-1e8170e9a08a {"md5": "29c710f36d18cfc928897748cd91824d", "pid": "278746950", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature coréenne"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278746950", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181481087", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148108", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Feel-good book coréen"} 1 +2024-09-11 09:08:36.012365 2024-09-11 09:08:36.012369 15b9ef26-53bf-4bc7-93e8-8469b8644f0f {"md5": "dad5de1bd7db50552ea06034298e3ed0", "pid": "279307578", "note": [{"label": ["Dict. illustré des termes de médecine, 2012", "Dict. de médecine Flammarion, 2008", "Myélinolyse centropontine [in] La Presse médicale, 2008, 37, 12", "Dict. de l'Académie de médecine : myélinolyse centrale du pont cérébral - https://www.academie-medecine.fr/le-dictionnaire (2024-06-28)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Démyélinisation"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "MeSH", "identifiedBy": [{"type": "uri", "value": "https://id.nlm.nih.gov/mesh/M0026656", "source": "MeSH"}], "authorized_access_point": "Myelinolysis, Central Pontine"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307578", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18155286s", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155286", "source": "BNF"}], "classification": [{"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Myélinolyse centrale du pont cérébral", "Myélinolyse centro-pontine", "Syndrome de démyélinisation osmotique"], "authorized_access_point": "Myélinolyse centropontine"} 1 +2024-09-11 09:08:36.082172 2024-09-11 09:08:36.082177 6f3ba7e0-0df0-4be7-9c1a-578e86bf4723 {"md5": "624fef37141fb9687ad59e8015e16dbf", "pid": "279307586", "note": [{"label": ["Dict. de l'Académie de médecine - https://www.academie-medecine.fr/le-dictionnaire (2024-06-28)", "Dict. illustré des termes de médecine, 2012", "Manuel d'échocardiographie clinique, 2012"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Cardiopathies"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "https://id.loc.gov/authorities/subjects/sh85020160", "source": "LCSH"}], "authorized_access_point": "Carcinoid heart disease"}, {"source": "MeSH", "identifiedBy": [{"type": "uri", "value": "https://id.nlm.nih.gov/mesh/M0003420", "source": "MeSH"}], "authorized_access_point": "Carcinoid Heart Disease"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307586", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18155294d", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155294", "source": "BNF"}], "classification": [{"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "authorized_access_point": "Cardiopathie carcinoïde"} 1 +2024-09-11 09:08:36.145658 2024-09-11 09:08:36.145662 3751457e-251d-453d-b84e-833f0392bddd {"md5": "7e2902f11c241ea0e1f8cfce67bb6a43", "pid": "279307594", "note": [{"label": ["La néoglucogenèse intestinale : une fonction insulinomimétique / G. Mithieux [in] Biologie aujourd'hui, 2022, 216, 1-2", "Effets protecteurs de la néoglucogenèse intestinale dans le développement de l'obésité et de ses complications / J. Vily-Petit, 2020 [thèse]", "Microbiote intestinal et santé humaine, 2021"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Métabolisme"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307594", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18155316w", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155316", "source": "BNF"}], "classification": [{"name": "Sciences de la vie", "type": "bf:ClassificationDdc", "classificationPortion": "570"}], "variant_access_point": ["Gluconéogenèse intestinale", "Glyconéogenèse intestinale", "Néoglycogenèse intestinale", "NGI (biologie)"], "authorized_access_point": "Néoglucogenèse intestinale"} 1 +2024-09-11 09:08:36.212121 2024-09-11 09:08:36.212124 54c6a9ef-8e74-4010-a396-0886afa2bcfc {"md5": "7c26ba7fce25d81f0da6a595c8f58c2d", "pid": "279307632", "note": [{"label": ["Termium plus® - https://www.btb.termiumplus.gc.ca (2024-07-01)", "Mise en pratique du traitement de reperfusion dans les infarctus du myocarde avec élévation du segment ST [in] Revue médicale de Liège, 2010, 65, 1", "Une cause rare de syndrome coronarien aigu : l'embolie paradoxale [in] Annales de cardiologie et d'angéiologie, 2024, 73, 2", "L'infarctus du myocarde en France métropolitaine de 1995 à 2010 : évolution de la typologie des patients, de la prise en charge et du pronostic à court terme [in] Bulletin de l'Académie nationale de médecine, 2014, 198, 1 : infarctus du myocarde avec sus-décalage du segment ST", "Traitement de l'infarctus myocardique. Pourquoi l'angioplastie coronaire ? / C. Beauloye [in] Louvain médical, 2017, 136, 8 : STEMI", "Dict. de l'Académie de médecine : infarctus transmural - https://www.academie-medecine.fr/le-dictionnaire (2024-07-01)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Infarctus du myocarde"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "MeSH", "identifiedBy": [{"type": "uri", "value": "https://id.nlm.nih.gov/mesh/M000617719", "source": "MeSH"}], "authorized_access_point": "ST Elevation Myocardial Infarction"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307632", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181554552", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155455", "source": "BNF"}], "classification": [{"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Infarctus avec onde Q", "Infarctus avec sus-décalage du segment ST", "Infarctus avec sus-décalage persistant du segment ST", "Infarctus du myocarde avec sus-décalage du segment ST", "Infarctus du myocarde avec sus-décalage persistant du segment ST", "Infarctus du myocarde de type STEMI", "Infarctus STEMI", "Infarctus trans-mural", "Infarctus transmural", "ST elevation myocardial infarction", "STEMI (maladie)"], "authorized_access_point": "Infarctus du myocarde avec élévation du segment ST"} 1 +2024-09-11 09:08:36.274225 2024-09-11 09:08:36.27423 53b43039-cd65-4e4e-9f0a-4b85bfda0a24 {"md5": "41349bfb141625a8e81df9a958903069", "pid": "279307713", "note": [{"label": ["Termium plus® - https://www.btb.termiumplus.gc.ca (2024-07-01)", "Indications à la coronarographie en urgence. Partie II : syndromes coronariens aigus sans élévation du segment ST [in] Revue médicale suisse, 2009, 205", "Pronostic des syndromes coronariens aigus. Absence de différence en fonction du sexe [in] Bulletin de l'Académie nationale de médecine, 2004, 188, 3", "L'infarctus du myocarde en France métropolitaine de 1995 à 2010 : évolution de la typologie des patients, de la prise en charge et du pronostic à court terme [in] Bulletin de l'Académie nationale de médecine, 2014, 198, 1 : infarctus sans sus-décalage du segment ST", "Traitement de l'infarctus myocardique. Pourquoi l'angioplastie coronaire ? / C. Beauloye [in] Louvain médical, 2017, 136, 8 : NSTEMI"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Infarctus du myocarde"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "MeSH", "identifiedBy": [{"type": "uri", "value": "https://id.nlm.nih.gov/mesh/M000617720", "source": "MeSH"}], "authorized_access_point": "Non-ST Elevated Myocardial Infarction"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307713", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181555618", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155561", "source": "BNF"}], "classification": [{"name": "Sciences médicales et paramédicales", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Infarctus du myocarde de type NSTEMI", "Infarctus du myocarde sans sus-décalage du segment ST", "Infarctus du myocarde sans sus-décalage persistant du segment ST", "Infarctus non trans-mural", "Infarctus non transmural", "Infarctus NSTEMI", "Infarctus sans onde Q", "Infarctus sans sus-décalage du segment ST", "Infarctus sans sus-décalage persistant du segment ST", "Non ST elevation myocardial infarction", "NSTEMI (maladie)"], "authorized_access_point": "Infarctus du myocarde sans élévation du segment ST"} 1 +2024-09-11 09:08:36.399614 2024-09-11 09:08:36.399619 3d342dcc-ab95-4cac-8485-2e8126dc35ba {"md5": "0beef821ed2bc9b63f4e8b634248fa1a", "pid": "279307748", "note": [{"label": ["Termium plus® - https://www.btb.termiumplus.gc.ca (2024-07-01)", "GBIF - https://www.gbif.org/fr/species (2024-07-01)", "Dict. of animal names in five languages, birds / R. L. Boehme, V. E. Flint, 1994", "The IUCN Red List of Threatened Species : Hylophylax naevioides - http://www.iucnredlist.org (2024-07-01)", "Grzimek's animal life encycl.. Volume 10, Birds III, 2003 : Hylophylax naevioides", "The Howard and Moore complete checklist of the birds of the world, 2003 : Hylophylax naevioides"], "noteType": "dataSource"}, {"label": ["Rang taxonomique : espèce"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hylophylax"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "https://id.loc.gov/authorities/subjects/sh85126968", "source": "LCSH"}], "authorized_access_point": "Spotted antbird"}, {"source": "RVMLaval", "authorized_access_point": "Fourmilier grivelé"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307748", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18155596x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155596", "source": "BNF"}], "classification": [{"name": "Zoologie", "type": "bf:ClassificationDdc", "classificationPortion": "590"}], "variant_access_point": ["Hylophylax naevioides"], "authorized_access_point": "Fourmilier grivelé"} 1 +2024-09-11 09:08:36.460428 2024-09-11 09:08:36.460432 fe8b02a2-9b50-47a6-aaa2-cf4ba31aa9aa {"md5": "83a0484c68c00cf5d1df429712ea2645", "pid": "279307780", "note": [{"label": ["L'Italie : de Botticelli à Bonaparte / J. Delumeau, 2022", "Histoire économique de l'Europe moderne : XVe-XVIIIe siècle / F. Delleaux, 2015", "Les 100 mots de Venise / O. Alberti, 2021"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Verrerie"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307780", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181557505", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155750", "source": "BNF"}], "classification": [{"name": "Arts plastiques, sculpture", "type": "bf:ClassificationDdc", "classificationPortion": "730"}, {"name": "Dessin, arts décoratifs, artisanat d'art", "type": "bf:ClassificationDdc", "classificationPortion": "740"}], "variant_access_point": ["Verre de Murano", "Verreries de Murano"], "authorized_access_point": "Verrerie de Murano"} 1 +2024-09-11 09:08:36.518023 2024-09-11 09:08:36.518028 88cbb341-e6ed-43a8-bbb0-45cec41c2529 {"md5": "4ee6247377d5ca16a5fa5eb57cbbd4dd", "pid": "279307799", "note": [{"label": ["Wikidata - https://www.wikidata.org/wiki/Q814356 (2024-07-02)", "Grand Larousse universel", "Grand Robert de la langue française, 2001", "Trésor de la langue française (art. : Girl) - http://atilf.atilf.fr (2024-07-02)", "Wikipédia - https://fr.wikipedia.org (2024-07-02)"], "noteType": "dataSource"}, {"label": ["Personnes prostituées n'exerçant pas sur la voie publique et que l'on contacte, par exemple, par téléphone"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Prostituées"}, {"authorized_access_point": "Prostitués"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307799", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181557923", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155792", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "305"}, {"name": "Problèmes et services sociaux", "type": "bf:ClassificationDdc", "classificationPortion": "360"}], "variant_access_point": ["Call-boys", "Call-girls", "Escort-girls"], "authorized_access_point": "Escorts"} 1 +2024-09-11 09:08:36.577831 2024-09-11 09:08:36.577835 0670cc6e-8bda-4ce9-b247-76e0d112ef38 {"md5": "dde5602675fdcc92bfe37885c05dd149", "pid": "279307810", "note": [{"label": ["GBIF - https://www.gbif.org/species (2024-07-03)", "NCBI - https://www.ncbi.nlm.nih.gov/Taxonomy (2024-07-03)", "Dict. of animal names in five languages, birds / R. L. Boehme, V. E. Flint, 1994", "Grzimek's animal life encycl.. Volume 10, Birds III, 2003", "The Howard and Moore complete checklist of the birds of the world, 2003"], "noteType": "dataSource"}, {"label": ["Rang taxonomique : genre"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Thamnophilidae"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Fourmilier grivelé"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "https://id.loc.gov/authorities/subjects/sh85063574", "source": "LCSH"}], "authorized_access_point": "Hylophylax (Birds)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307810", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18155931f", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155931", "source": "BNF"}], "classification": [{"name": "Zoologie", "type": "bf:ClassificationDdc", "classificationPortion": "590"}], "authorized_access_point": "Hylophylax"} 1 +2024-09-11 09:08:36.634979 2024-09-11 09:08:36.634986 27fc30b4-45c4-4be2-ab58-92f142e8a309 {"md5": "6d7b9a2c98294f7e14f09197d445ded6", "pid": "279307837", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Asie du Sud"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307837", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18156044j", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18156044", "source": "BNF"}], "classification": [{"name": "Préhistoire et histoire ancienne", "type": "bf:ClassificationDdc", "classificationPortion": "930"}], "authorized_access_point": "Antiquités - Asie du Sud"} 1 +2024-09-11 09:08:38.393065 2024-09-11 09:08:38.39307 0169374b-63f2-4760-a2fc-b3a665cab622 {"md5": "7f3154a87336a1783eece2f8b45bc3ee", "pid": "278746977", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman australien"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278746977", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18148301c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148301", "source": "BNF"}], "classification": [{"name": "Problèmes et services sociaux", "type": "bf:ClassificationDdc", "classificationPortion": "360"}, {"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Thriller (roman) australien"} 1 +2024-09-11 09:08:36.692675 2024-09-11 09:08:36.69268 5c9034b4-40be-43d7-b2cc-b336d60db8e6 {"md5": "7fc4d9191dca4e023f01d26199a28050", "pid": "279307853", "note": [{"label": ["Sous cette vedette, obligatoirement suivie d'une subdivision géographique ou de la subdivision : À l'étranger, directement ou après une subdivision de sujet, on trouve les documents sur les familles nicaraguayennes hors du Nicaragua. Les documents sur les familles nicaraguayennes au Nicaragua se trouvent sous des vedettes-matière telles que : Famille -- Nicaragua ; Famille -- [Subdivision de sujet] -- Nicaragua ; etc"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Nicaraguayens"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307853", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18156498k", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18156498", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"type": "bf:ClassificationDdc", "classificationPortion": "305"}, {"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}], "authorized_access_point": "Familles nicaraguayennes"} 1 +2024-09-11 09:08:36.752675 2024-09-11 09:08:36.752679 6d705507-d0ea-4d1c-bb5c-90ecc3cc01e4 {"md5": "25fb882fe58f5329dc23ff22a90b619f", "pid": "027222144", "note": [{"label": ["S'emploie également en subdivision"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Catalogues commerciaux"}], "related": [{"authorized_access_point": "Librairie"}], "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Catalogues de librairies"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85020902", "source": "LCSH"}], "authorized_access_point": "Booksellers' catalogs"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027222144", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119311240", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11931124", "source": "BNF"}], "classification": [{"name": "Sciences de l'information", "type": "bf:ClassificationDdc", "classificationPortion": "020"}, {"name": "Economie", "type": "bf:ClassificationDdc", "classificationPortion": "330"}], "variant_access_point": ["Catalogues de librairies"], "authorized_access_point": "Catalogues de libraires"} 1 +2024-09-11 09:08:36.818377 2024-09-11 09:08:36.818381 cb84a39e-02ef-402c-99ad-bd631e50f8a0 {"md5": "f689eda9d7d5d850d0433cc940471845", "pid": "027236897", "note": [{"label": ["S'emploie également en subdivision", "Les subdivisions chronologiques spécifiques employées sous la vedette Littérature espagnole doivent être utilisées pour tous les genres littéraires espagnols"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Civilisation - Espagne"}, {"authorized_access_point": "Littérature hispanophone"}, {"authorized_access_point": "Littérature ibérique"}], "related": [{"authorized_access_point": "Écrivains espagnols"}, {"authorized_access_point": "Littérature comparée - Allemande et espagnole"}, {"authorized_access_point": "Littérature comparée - Américaine et espagnole"}, {"authorized_access_point": "Littérature comparée - Anglaise et espagnole"}, {"authorized_access_point": "Littérature comparée - Arabe et espagnole"}, {"authorized_access_point": "Littérature comparée - Argentine et espagnole"}, {"authorized_access_point": "Littérature comparée - Autrichienne et espagnole"}, {"authorized_access_point": "Littérature comparée - Brésilienne et espagnole"}, {"authorized_access_point": "Littérature comparée - Catalane et espagnole"}, {"authorized_access_point": "Littérature comparée - Chilienne et espagnole"}, {"authorized_access_point": "Littérature comparée - Chinoise et espagnole"}, {"authorized_access_point": "Littérature comparée - Cubaine et espagnole"}, {"authorized_access_point": "Littérature comparée - Espagnole et européenne"}, {"authorized_access_point": "Littérature comparée - Espagnole et française"}, {"authorized_access_point": "Littérature comparée - Espagnole et grecque"}, {"authorized_access_point": "Littérature comparée - Espagnole et irlandaise"}, {"authorized_access_point": "Littérature comparée - Espagnole et italienne"}, {"authorized_access_point": "Littérature comparée - Espagnole et mexicaine"}, {"authorized_access_point": "Littérature comparée - Espagnole et occitane"}, {"authorized_access_point": "Littérature comparée - Espagnole et polonaise"}, {"authorized_access_point": "Littérature comparée - Espagnole et portugaise"}, {"authorized_access_point": "Littérature comparée - Espagnole et russe"}, {"authorized_access_point": "Littérature comparée - Espagnole et suédoise"}, {"authorized_access_point": "Mouvements littéraires - Espagne"}, {"authorized_access_point": "Prix littéraires - Espagne"}, {"authorized_access_point": "Citations espagnoles"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Autobiographie espagnole"}, {"authorized_access_point": "Biographie espagnole"}, {"authorized_access_point": "Chroniques espagnoles"}, {"authorized_access_point": "Contes littéraires espagnols"}, {"authorized_access_point": "Dialogues (genre littéraire) espagnols"}, {"authorized_access_point": "Discours espagnols"}, {"authorized_access_point": "Écrits anonymes espagnols"}, {"authorized_access_point": "Écrits d'immigrés espagnols"}, {"authorized_access_point": "Écrits de jeunes espagnols"}, {"authorized_access_point": "Écrits de lesbiennes espagnoles"}, {"authorized_access_point": "Écrits de militaires espagnols"}, {"authorized_access_point": "Écrits de prisonniers espagnols"}, {"authorized_access_point": "Essai (genre littéraire) espagnol"}, {"authorized_access_point": "Fantasy espagnole"}, {"authorized_access_point": "Journaux intimes espagnols"}, {"authorized_access_point": "Littérature clandestine espagnole"}, {"authorized_access_point": "Littérature d'épouvante espagnole"}, {"authorized_access_point": "Littérature d'exil espagnole"}, {"authorized_access_point": "Littérature de colportage espagnole"}, {"authorized_access_point": "Littérature dialectale espagnole"}, {"authorized_access_point": "Littérature didactique espagnole"}, {"authorized_access_point": "Littérature épistolaire espagnole"}, {"authorized_access_point": "Littérature érotique espagnole"}, {"authorized_access_point": "Littérature espagnole - Auteurs juifs"}, {"authorized_access_point": "Littérature espagnole - Avant 1500"}, {"authorized_access_point": "Littérature espagnole - 1500-1700 (Période classique)"}, {"authorized_access_point": "Littérature espagnole - 18e siècle"}, {"authorized_access_point": "Littérature espagnole - 19e siècle"}, {"authorized_access_point": "Littérature espagnole - 1870-1914"}, {"authorized_access_point": "Littérature espagnole - 20e siècle"}, {"authorized_access_point": "Littérature espagnole - 1975-...."}, {"authorized_access_point": "Littérature espagnole pour la jeunesse"}, {"authorized_access_point": "Littérature expérimentale espagnole"}, {"authorized_access_point": "Littérature fantastique espagnole"}, {"authorized_access_point": "Littérature humoristique espagnole"}, {"authorized_access_point": "Littérature libertaire espagnole"}, {"authorized_access_point": "Littérature pastorale espagnole"}, {"authorized_access_point": "Littérature policière espagnole"}, {"authorized_access_point": "Littérature populaire espagnole"}, {"authorized_access_point": "Littérature religieuse espagnole"}, {"authorized_access_point": "Littérature révolutionnaire espagnole"}, {"authorized_access_point": "Mémoires (genre littéraire) espagnols"}, {"authorized_access_point": "Nouvelles espagnoles"}, {"authorized_access_point": "Pamphlets espagnols"}, {"authorized_access_point": "Parodie espagnole"}, {"authorized_access_point": "Poésie espagnole"}, {"authorized_access_point": "Portraits (genre littéraire) espagnols"}, {"authorized_access_point": "Prose espagnole"}, {"authorized_access_point": "Récits de guerre espagnols"}, {"authorized_access_point": "Récits de voyages espagnols"}, {"authorized_access_point": "Roman espagnol"}, {"authorized_access_point": "Satire espagnole"}, {"authorized_access_point": "Science-fiction espagnole"}, {"authorized_access_point": "Théâtre (genre littéraire) espagnol"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85126268", "source": "LCSH"}], "authorized_access_point": "Spanish literature"}, {"source": "RVMLaval", "authorized_access_point": "Littérature espagnole"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027236897", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11932273q", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11932273", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Et la littérature espagnole", "Littérature castillane"], "authorized_access_point": "Littérature espagnole"} 1 +2024-09-11 09:08:36.878698 2024-09-11 09:08:36.878702 3a7953ab-1016-4c02-99a8-832435ef1bdd {"md5": "4c37d4a5137e0d363ace919267cdac9a", "pid": "027276457", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature australienne"}, {"authorized_access_point": "Roman anglophone"}], "related": [{"authorized_access_point": "Romanciers australiens"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Roman autobiographique australien"}, {"authorized_access_point": "Roman d'amour australien"}, {"authorized_access_point": "Roman d'aventures australien"}, {"authorized_access_point": "Roman de science-fiction australien"}, {"authorized_access_point": "Roman familial australien"}, {"authorized_access_point": "Roman gothique australien"}, {"authorized_access_point": "Roman historique australien"}, {"authorized_access_point": "Roman policier australien"}, {"authorized_access_point": "Thriller (roman) australien"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85009635", "source": "LCSH"}], "authorized_access_point": "Australian fiction"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027276457", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12647669m", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12647669", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Roman australien"} 1 +2024-09-11 09:08:36.944615 2024-09-11 09:08:36.944619 10339eeb-d085-4c75-b69c-b6af09372bbf {"md5": "c151d9584e3037869db339c8b1fb387b", "pid": "027307565", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature canadienne de langue française"}, {"authorized_access_point": "Théâtre (genre littéraire) canadien"}, {"authorized_access_point": "Théâtre (genre littéraire) francophone"}], "related": [{"authorized_access_point": "Auteurs dramatiques canadiens de langue française"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Théâtre canadien de langue française pour la jeunesse"}, {"authorized_access_point": "Théâtre documentaire canadien de langue française"}, {"authorized_access_point": "Théâtre politique canadien de langue française"}, {"authorized_access_point": "Théâtre radiophonique canadien de langue française"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85051768", "source": "LCSH"}], "authorized_access_point": "French-Canadian drama"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027307565", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11937806f", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11937806", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Théâtre (genre littéraire) francophone canadien", "Théâtre (genre littéraire) québécois", "Théâtre canadien de langue française"], "authorized_access_point": "Théâtre (genre littéraire) canadien de langue française"} 1 +2024-09-11 09:08:38.446478 2024-09-11 09:08:38.446482 1777b388-cfd1-4915-bb2d-d3de2a940658 {"md5": "21fa05e4beab38c36b7ba5fd3b9d1612", "pid": "278747027", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman français"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747027", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18148761b", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148761", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}, {"name": "Préhistoire et histoire ancienne", "type": "bf:ClassificationDdc", "classificationPortion": "930"}], "authorized_access_point": "Roman préhistorique français"} 1 +2024-09-11 09:08:37.003482 2024-09-11 09:08:37.003485 4836eb5c-d65e-409c-adf4-b031abf576f2 {"md5": "4ec4498bd3745f175daf5dc66954daf9", "pid": "02767391X", "note": [{"label": ["Encycl. des jeux vidéo / F. Sanchez, 2008", "La saga des jeux vidéo / D. Ichbiah, 2011", "Jeuxvideo.com : la référence des jeux vidéo sur PC et consoles"], "noteType": "dataSource"}, {"label": ["S'emploie également en subdivision"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Dans les jeux vidéo à tous sujets noms communs et noms propres"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Jeux"}, {"authorized_access_point": "Jeux électroniques"}, {"authorized_access_point": "Logiciels"}], "related": [{"authorized_access_point": "Allegro (informatique)"}, {"authorized_access_point": "Bibliothèques et jeux vidéo"}, {"authorized_access_point": "Cinéma et jeux vidéo"}, {"authorized_access_point": "Concepteurs de jeux vidéo"}, {"authorized_access_point": "Dans les jeux vidéo"}, {"authorized_access_point": "Jeux vidéo et histoire"}, {"authorized_access_point": "Joueurs de jeux vidéo"}, {"authorized_access_point": "Pixel art"}, {"authorized_access_point": "Salles d'arcades"}, {"authorized_access_point": "Machinimas"}, {"authorized_access_point": "Musique de jeux vidéo"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Arcade (jeux vidéo)"}, {"authorized_access_point": "Game Boy (jeux vidéo)"}, {"authorized_access_point": "Jeux de combat (jeux vidéo)"}, {"authorized_access_point": "Jeux de gestion (jeux vidéo)"}, {"authorized_access_point": "Jeux vidéo de course"}, {"authorized_access_point": "Jeux vidéo de rôle"}, {"authorized_access_point": "Manettes de jeux vidéo"}, {"authorized_access_point": "Neo-Geo (jeux vidéo)"}, {"authorized_access_point": "Nintendo (jeux vidéo)"}, {"authorized_access_point": "PC-Engine (jeux vidéo)"}, {"authorized_access_point": "Personnages de jeux vidéo"}, {"authorized_access_point": "PlayStation (jeux vidéo)"}, {"authorized_access_point": "Publicité intégrée dans les jeux vidéo"}, {"authorized_access_point": "Sega (jeux vidéo)"}, {"authorized_access_point": "Sport électronique"}, {"authorized_access_point": "Xbox (jeux vidéo)"}, {"authorized_access_point": "Jeux d'aventure (jeux vidéo)"}, {"authorized_access_point": "Jeux de civilisation"}, {"authorized_access_point": "Jeux de guerre (jeux vidéo)"}, {"authorized_access_point": "Jeux musicaux (jeux vidéo)"}, {"authorized_access_point": "Jeux sur mobiles"}, {"authorized_access_point": "Logiciels ludoéducatifs"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85143202", "source": "LCSH"}], "authorized_access_point": "Video games"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85029499", "source": "LCSH"}], "authorized_access_point": "Computer games"}, {"source": "RVMLaval", "authorized_access_point": "Jeux vidéo"}, {"source": "RVMLaval", "authorized_access_point": "Jeux d'ordinateur"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02767391X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13318902d", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13318902", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "621"}, {"name": "Jeux", "type": "bf:ClassificationDdc", "classificationPortion": "793"}], "variant_access_point": ["Consoles de jeux vidéo", "Jeux - Logiciels", "Jeux d'ordinateur", "Jeux informatiques", "Jeux informatisés", "Jeux sur consoles", "Jeux sur microordinateurs", "Jeux sur ordinateur", "Logiciels de jeu", "Logiciels ludiques", "Ludiciels"], "authorized_access_point": "Jeux vidéo"} 1 +2024-09-11 09:08:37.064132 2024-09-11 09:08:37.064136 5855e952-4f24-4d98-bff9-aacca86f47b3 {"md5": "b9df34441a3ac3718439a88c79ee422b", "pid": "027800512", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature française"}, {"authorized_access_point": "Roman francophone"}], "related": [{"authorized_access_point": "Romanciers français"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Nouveau roman"}, {"authorized_access_point": "Politique-fiction française"}, {"authorized_access_point": "Roman biographique français"}, {"authorized_access_point": "Roman courtois français"}, {"authorized_access_point": "Roman d'amour français"}, {"authorized_access_point": "Roman d'aventures français"}, {"authorized_access_point": "Roman d'éducation français"}, {"authorized_access_point": "Roman d'espionnage français"}, {"authorized_access_point": "Roman de chevalerie français"}, {"authorized_access_point": "Roman de moeurs français"}, {"authorized_access_point": "Roman de science-fiction français"}, {"authorized_access_point": "Roman en vers français"}, {"authorized_access_point": "Roman épistolaire français"}, {"authorized_access_point": "Roman expérimental français"}, {"authorized_access_point": "Roman fantastique français"}, {"authorized_access_point": "Roman français pour la jeunesse"}, {"authorized_access_point": "Roman gothique français"}, {"authorized_access_point": "Roman héroïque"}, {"authorized_access_point": "Roman historique français"}, {"authorized_access_point": "Roman pastoral français"}, {"authorized_access_point": "Roman philosophique français"}, {"authorized_access_point": "Roman picaresque français"}, {"authorized_access_point": "Roman policier français"}, {"authorized_access_point": "Roman populaire français"}, {"authorized_access_point": "Roman préhistorique français"}, {"authorized_access_point": "Roman régionaliste français"}, {"authorized_access_point": "Roman rustique français"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85051802", "source": "LCSH"}], "authorized_access_point": "French fiction"}, {"source": "RVMLaval", "authorized_access_point": "Roman français"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027800512", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11976487r", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11976487", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Roman français"} 1 +2024-09-11 09:08:37.128488 2024-09-11 09:08:37.128491 9205f52a-2fa1-440a-b142-0a218cd88ff7 {"md5": "19495c6ffabc304640ca0ee562ee256a", "pid": "02781971X", "note": [{"label": ["Sous cette vedette, on trouve les recueils de littérature danoise de divers genres"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Civilisation - Danemark"}, {"authorized_access_point": "Littérature scandinave"}], "related": [{"authorized_access_point": "Danois (langue)"}, {"authorized_access_point": "Écrivains danois"}, {"authorized_access_point": "Littérature comparée - Allemande et danoise"}, {"authorized_access_point": "Littérature comparée - Danoise et française"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Autobiographie danoise"}, {"authorized_access_point": "Contes littéraires danois"}, {"authorized_access_point": "Écrits anonymes danois"}, {"authorized_access_point": "Essai (genre littéraire) danois"}, {"authorized_access_point": "Fables danoises"}, {"authorized_access_point": "Journaux intimes danois"}, {"authorized_access_point": "Littérature danoise pour la jeunesse"}, {"authorized_access_point": "Littérature populaire danoise"}, {"authorized_access_point": "Mémoires (genre littéraire) danois"}, {"authorized_access_point": "Nouvelles danoises"}, {"authorized_access_point": "Poésie danoise"}, {"authorized_access_point": "Prose danoise"}, {"authorized_access_point": "Récits de voyages danois"}, {"authorized_access_point": "Roman danois"}, {"authorized_access_point": "Science-fiction danoise"}, {"authorized_access_point": "Sermons danois"}, {"authorized_access_point": "Théâtre (genre littéraire) danois"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85035735", "source": "LCSH"}], "authorized_access_point": "Danish literature"}, {"source": "RVMLaval", "authorized_access_point": "Littérature danoise"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02781971X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11977960b", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11977960", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Littérature danoise"} 1 +2024-09-11 09:08:37.195234 2024-09-11 09:08:37.195238 13de8ae9-993f-4d24-a5d0-bde97f15b6ab {"md5": "c37df3ad430aeca2e75f4a0da9b8a6b1", "pid": "02787642X", "note": [{"label": ["Sous cette vedette, on trouve les romans américains en langue anglaise. Les romans non anglophones produits aux États-Unis se trouvent sous des vedettes telles que : Roman américain de langue française ; Roman mexicain-américain"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature américaine"}, {"authorized_access_point": "Roman anglophone"}], "related": [{"authorized_access_point": "Romanciers américains"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Politique-fiction américaine"}, {"authorized_access_point": "Roman américain - Auteurs d'origine mexicaine"}, {"authorized_access_point": "Roman américain - Auteurs indiens d'Amérique"}, {"authorized_access_point": "Roman américain - Auteurs juifs"}, {"authorized_access_point": "Roman américain - Auteurs noirs américains"}, {"authorized_access_point": "Roman américain pour la jeunesse"}, {"authorized_access_point": "Roman biographique américain"}, {"authorized_access_point": "Roman d'amour américain"}, {"authorized_access_point": "Roman d'aventures américain"}, {"authorized_access_point": "Roman d'éducation américain"}, {"authorized_access_point": "Roman d'espionnage américain"}, {"authorized_access_point": "Roman de la route américain"}, {"authorized_access_point": "Roman de science-fiction américain"}, {"authorized_access_point": "Roman épistolaire américain"}, {"authorized_access_point": "Roman expérimental américain"}, {"authorized_access_point": "Roman familial américain"}, {"authorized_access_point": "Roman gothique américain"}, {"authorized_access_point": "Roman historique américain"}, {"authorized_access_point": "Roman pastoral américain"}, {"authorized_access_point": "Roman picaresque américain"}, {"authorized_access_point": "Roman policier américain"}, {"authorized_access_point": "Roman populaire américain"}, {"authorized_access_point": "Roman régionaliste américain"}, {"authorized_access_point": "Roman religieux américain"}, {"authorized_access_point": "Roman satirique américain"}, {"authorized_access_point": "Roman sentimental américain"}, {"authorized_access_point": "Westerns (littérature)"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85004317", "source": "LCSH"}], "authorized_access_point": "American fiction"}, {"source": "RVMLaval", "authorized_access_point": "Roman américain"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02787642X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11982432q", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11982432", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Roman américain"} 1 +2024-09-11 09:08:37.254745 2024-09-11 09:08:37.254748 e606c36f-9c3e-4a70-9ed5-0ea97ed36b1c {"md5": "b09f9c7bbe6774d7cf63854f38e21ee2", "pid": "028374878", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature néerlandaise"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Récits de mer néerlandais"}, {"authorized_access_point": "Roman biographique néerlandais"}, {"authorized_access_point": "Roman courtois néerlandais"}, {"authorized_access_point": "Roman d'éducation néerlandais"}, {"authorized_access_point": "Roman historique néerlandais"}, {"authorized_access_point": "Roman policier néerlandais"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Roman néerlandais"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85040103", "source": "LCSH"}], "authorized_access_point": "Dutch fiction"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028374878", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12022290p", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12022290", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Roman néerlandais"} 1 +2024-09-11 09:08:37.318388 2024-09-11 09:08:37.318392 a159b607-85a0-4a7a-9ee6-dd225e5bdd88 {"md5": "835e4a4943ddc520ed2c27001f00b3e1", "pid": "028932358", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature mexicaine"}], "related": [{"authorized_access_point": "Romanciers mexicains"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Roman-photo mexicain"}, {"authorized_access_point": "Roman historique mexicain"}, {"authorized_access_point": "Roman picaresque mexicain"}, {"authorized_access_point": "Roman policier mexicain"}, {"authorized_access_point": "Roman social mexicain"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85084515", "source": "LCSH"}], "authorized_access_point": "Mexican fiction"}, {"source": "RVMLaval", "authorized_access_point": "Roman mexicain"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028932358", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120665533", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12066553", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Roman mexicain"} 1 +2024-09-11 09:08:37.386761 2024-09-11 09:08:37.386765 d8e7d1ab-63f6-4610-9a9f-7ca26e24cc4b {"md5": "da39819a7365594def98b3272d50c736", "pid": "030120640", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature galloise"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Roman autobiographique gallois"}, {"authorized_access_point": "Roman historique gallois"}, {"authorized_access_point": "Roman policier gallois"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85146067", "source": "LCSH"}], "authorized_access_point": "Welsh fiction"}, {"source": "RVMLaval", "authorized_access_point": "Roman gallois"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030120640", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb121600198", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12160019", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Roman gallois"} 1 +2024-09-11 09:08:37.442897 2024-09-11 09:08:37.442901 57f0bd73-e103-481f-861c-4793461a9ea8 {"md5": "ac1b79a576bcf40367d77179cbaff032", "pid": "03136795X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Littérature comparée - Irlandaise et moyen-orientale"}, {"authorized_access_point": "Littérature comparée - Grecque et moyen-orientale"}, {"authorized_access_point": "Philologie moyen-orientale"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Autobiographie moyen-orientale"}, {"authorized_access_point": "Littérature sémitique"}, {"authorized_access_point": "Poésie moyen-orientale"}], "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Littérature moyen-orientale"}, {"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85090516", "source": "LCSH"}], "authorized_access_point": "Middle Eastern literature"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03136795X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb122596537", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12259653", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Littérature proche-orientale"], "authorized_access_point": "Littérature moyen-orientale"} 1 +2024-09-11 09:08:37.504048 2024-09-11 09:08:37.504052 625e85d9-86d2-4c11-9e8a-8dab70f73686 {"md5": "804e2a0e147ea852824ba25dd8e5583b", "pid": "033293074", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature belge de langue française"}, {"authorized_access_point": "Théâtre (genre littéraire) francophone"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Farces belges de langue française"}, {"authorized_access_point": "Vaudevilles belges de langue française"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85051793", "source": "LCSH"}], "authorized_access_point": "Belgian drama (French)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033293074", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12417356g", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12417356", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Théâtre (genre littéraire) francophone belge", "Théâtre belge de langue française"], "authorized_access_point": "Théâtre (genre littéraire) belge de langue française"} 1 +2024-09-11 09:08:37.566076 2024-09-11 09:08:37.56608 054a3506-d024-44a4-9808-424c4fb8b082 {"md5": "c39c7ef05be8ffd35233707dee3317ba", "pid": "050174495", "note": [{"label": ["Sous cette vedette, on trouve la littérature italophone des États-Unis. La littérature américaine de langue anglaise par des auteurs d'origine italienne se trouve sous la vedette-matière Littérature américaine -- Auteurs d'origine italienne"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature - États-Unis"}], "related": [{"authorized_access_point": "Littérature américaine"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Micronouvelles américaines de langue italienne"}, {"authorized_access_point": "Poésie américaine de langue italienne"}, {"authorized_access_point": "Théâtre (genre littéraire) américain de langue italienne"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85068775", "source": "LCSH"}], "authorized_access_point": "Italian American literature"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050174495", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13340210s", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13340210", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Littérature italo-américaine"], "authorized_access_point": "Littérature américaine de langue italienne"} 1 +2024-09-11 09:08:37.625796 2024-09-11 09:08:37.625801 3e282e13-0c6e-4c0b-bda3-b1fa81fdd536 {"md5": "394213a0c05d1601f9b372424240c404", "pid": "06008989X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature burkinabé de langue française"}, {"authorized_access_point": "Roman francophone"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Roman biographique burkinabé de langue française"}, {"authorized_access_point": "Roman burkinabé de langue française pour la jeunesse"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh96004053", "source": "LCSH"}], "authorized_access_point": "Burkinabe fiction (French)"}, {"source": "RVMLaval", "authorized_access_point": "Roman burkinabé (français)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/06008989X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb150866029", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF15086602", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Roman francophone burkinabé"], "authorized_access_point": "Roman burkinabé de langue française"} 1 +2024-09-11 09:08:37.680993 2024-09-11 09:08:37.680996 66b1a629-bb15-4604-82ba-ce4561b80a53 {"md5": "3c51e645defa7e0d2b5c05aedc514866", "pid": "061604496", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature belge de langue française"}, {"authorized_access_point": "Nouvelles francophones"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Nouvelles fantastiques belges de langue française"}, {"authorized_access_point": "Nouvelles policières belges de langue française"}, {"authorized_access_point": "Thriller (nouvelles) belge de langue française"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh97001385", "source": "LCSH"}], "authorized_access_point": "Short stories, Belgian (French)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/061604496", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13769729v", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13769729", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Nouvelles francophones belges"], "authorized_access_point": "Nouvelles belges de langue française"} 1 +2024-09-11 09:08:37.748975 2024-09-11 09:08:37.748981 b11ce695-469b-42cb-8864-27391c44894b {"md5": "c312e98beaf0dc595b28b93b69e79359", "pid": "178480231", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature portugaise"}], "related": [{"authorized_access_point": "Autobiographie portugaise"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/178480231", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16764890d", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16764890", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Mémoires portugais"], "authorized_access_point": "Mémoires (genre littéraire) portugais"} 1 +2024-09-11 09:08:37.809989 2024-09-11 09:08:37.809993 a7e2bd86-0203-4640-bddf-e648fcba5728 {"md5": "83ed31d4353b28d65c652cb2eec82311", "pid": "238529495", "note": [{"label": ["Sous cette vedette, on trouve les oeuvres littéraires elles-mêmes. Les documents sur ces oeuvres se trouvent sous cette même vedette suivie de Histoire et critique ou de toute autre subdivision de sujet ou de forme appropriée"], "noteType": "general"}, {"label": ["Voir aussi aux romans autobiographiques des différents pays arabes, par ex. : Roman autobiographique algérien"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Autobiographie arabe"}], "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh95009760", "source": "LCSH"}], "authorized_access_point": "Autobiographical fiction, Arabic"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/238529495", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb178386926", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF17838692", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Roman autobiographique arabe"} 1 +2024-09-11 09:08:37.866155 2024-09-11 09:08:37.866158 a9ed6913-6ab7-435f-8e7e-08eac7b882fc {"md5": "129caa0ca7a8abffbb651b6a794a6f1a", "pid": "263906442", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "related": [{"authorized_access_point": "Estonien (langue)"}, {"authorized_access_point": "Chansons estoniennes"}, {"authorized_access_point": "Poésie estonienne"}], "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "https://authorities.loc", "source": "LCSH"}], "authorized_access_point": "Songs, Finnish"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263906442", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18026157c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18026157", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Mélodies estoniennes"} 1 +2024-09-11 09:08:38.502399 2024-09-11 09:08:38.502404 3ed2468a-49c7-49de-a646-7c94985299e5 {"md5": "afda38899704f4ea8fd5374deded51f2", "pid": "278747035", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman camerounais de langue française"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747035", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18148765q", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148765", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Roman familial francophone camerounais"], "authorized_access_point": "Roman familial camerounais de langue française"} 1 +2024-09-11 09:08:37.923854 2024-09-11 09:08:37.923857 abd85336-193d-4e8a-a424-d5e48d165c32 {"md5": "10708fb22e322305221b88aae9679cc7", "pid": "264225260", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman canadien de langue anglaise"}, {"authorized_access_point": "Roman policier canadien"}], "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85037272", "source": "LCSH"}], "authorized_access_point": "Detective and mystery stories, Canadian"}, {"source": "RVMLaval", "authorized_access_point": "Roman policier canadien-anglais"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264225260", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18024108p", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18024108", "source": "BNF"}], "classification": [{"name": "Problèmes et services sociaux", "type": "bf:ClassificationDdc", "classificationPortion": "360"}, {"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Roman policier canadien-anglais"], "authorized_access_point": "Roman policier canadien de langue anglaise"} 1 +2024-09-11 09:08:37.980968 2024-09-11 09:08:37.980973 86770189-1403-41f6-9254-8c1364f810ba {"md5": "931d0fc3b6dec95094ce23eff52a7285", "pid": "276037685", "note": [{"label": ["Sous cette vedette, on trouve les micronouvelles américaines italophones des États-Unis"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature américaine de langue italienne"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276037685", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181291307", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18129130", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Micronouvelles italiennes - États-Unis", "Micronouvelles italophones américaines"], "authorized_access_point": "Micronouvelles américaines de langue italienne"} 1 +2024-09-11 09:08:38.042354 2024-09-11 09:08:38.042357 a1e7675f-c4c7-47e7-823d-e5ca7506a18c {"md5": "73a0006594c2c57b99b0e086f6b33984", "pid": "278746896", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman irlandais"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278746896", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181471843", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18147184", "source": "BNF"}], "classification": [{"name": "Art et science militaires", "type": "bf:ClassificationDdc", "classificationPortion": "355"}, {"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}, {"name": "Histoire et géographie (généralités)", "type": "bf:ClassificationDdc", "classificationPortion": "900"}], "authorized_access_point": "Roman de guerre irlandais"} 1 +2024-09-11 09:08:38.099503 2024-09-11 09:08:38.099506 eb95989f-c21f-4f25-a212-d167f836a7c6 {"md5": "6e825d9d108548d15eba60e1ed742e3a", "pid": "278746918", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman canadien de langue anglaise"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278746918", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18148067g", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148067", "source": "BNF"}], "classification": [{"name": "Problèmes et services sociaux", "type": "bf:ClassificationDdc", "classificationPortion": "360"}, {"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Roman à suspense anglophone canadien", "Roman à suspense canadien-anglais", "Roman à suspense canadien de langue anglaise", "Thriller (roman) anglophone canadien", "Thriller (roman) canadien-anglais"], "authorized_access_point": "Thriller (roman) canadien de langue anglaise"} 1 +2024-09-11 09:08:38.157243 2024-09-11 09:08:38.157247 7e64d146-0ce9-41f2-8cc1-8db8205496c8 {"md5": "d8a342230d76f2586e0309df71f3c1bc", "pid": "278746926", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Théâtre (genre littéraire) canadien de langue française"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278746926", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181480873", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148087", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Théâtre documentaire canadien-français", "Théâtre documentaire francophone canadien"], "authorized_access_point": "Théâtre documentaire canadien de langue française"} 1 +2024-09-11 09:08:38.224664 2024-09-11 09:08:38.224668 39ceabdf-55b2-41dd-b602-2f0fea638458 {"md5": "027114afbea2b62abe8292f139522ff5", "pid": "278746934", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman mexicain"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278746934", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18148094c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148094", "source": "BNF"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Roman social mexicain"} 1 +2024-09-11 09:08:38.285002 2024-09-11 09:08:38.285006 6d6de45a-ca7c-4ec0-a6e7-14eb62dc3298 {"md5": "73fb4c850629fb861791aed80b74c4f1", "pid": "278746942", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature burkinabé pour la jeunesse"}, {"authorized_access_point": "Roman burkinabé de langue française"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278746942", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18148101t", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148101", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Roman francophone burkinabé pour la jeunesse", "Roman pour la jeunesse burkinabé de langue française", "Roman pour la jeunesse francophone burkinabé"], "authorized_access_point": "Roman burkinabé de langue française pour la jeunesse"} 1 +2024-09-11 09:08:38.619186 2024-09-11 09:08:38.61919 098c4882-6636-4905-9067-92bd493e2226 {"md5": "e1a1d55c7cd3ea5a0d62695da91dd0e2", "pid": "27874706X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Théâtre (genre littéraire) belge de langue française"}], "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh96004610", "source": "LCSH"}], "authorized_access_point": "Belgian farces (French)"}, {"source": "RVMLaval", "authorized_access_point": "Farces belges (françaises)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27874706X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18148776c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148776", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Farces francophones belges"], "authorized_access_point": "Farces belges de langue française"} 1 +2024-09-11 09:08:38.685908 2024-09-11 09:08:38.685913 8b2ffeb8-2f3d-4e71-8972-3ea4392a603c {"md5": "869bf740c1d472cbfcc1c0d8efbbb32b", "pid": "278747086", "note": [{"label": ["Sous cette vedette, on trouve les romans autobiographiques algériens de langue arabe ainsi que les romans autobiographiques algériens en diverses langues"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman algérien"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747086", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18148797b", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148797", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Roman autobiographique algérien de langue arabe", "Roman autobiographique arabe - Algérie"], "authorized_access_point": "Roman autobiographique algérien"} 1 +2024-09-11 09:08:38.750564 2024-09-11 09:08:38.750568 1ff507b8-1614-43a0-8f65-40ce93758b53 {"md5": "fc2eb32b4dde73eb8d8108abf48c5af7", "pid": "278747094", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature qatarienne"}], "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2001000526", "source": "LCSH"}], "authorized_access_point": "Arabic poetry--Qatar"}, {"source": "RVMLaval", "authorized_access_point": "Poésie qatarienne"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747094", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181488639", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148863", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Poésie arabe - Qatar", "Poésie du Qatar", "Poésie qatarie", "Poésie qatarie de langue arabe", "Poésie qatarienne de langue arabe", "Poésie qatariote", "Poésie qatariote de langue arabe"], "authorized_access_point": "Poésie qatarienne"} 1 +2024-09-11 09:08:38.806536 2024-09-11 09:08:38.80654 478447a7-e07a-4862-b606-c644d3c8a183 {"md5": "84e8b34a74670dcc39928a7c7a1947df", "pid": "278747108", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Poésie qatarienne"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2001000527", "source": "LCSH"}], "authorized_access_point": "Arabic literature--Qatar"}, {"source": "RVMLaval", "authorized_access_point": "Littérature qatarienne"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747108", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18148867p", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148867", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Littérature arabe - Qatar", "Littérature qatarie", "Littérature qatarie de langue arabe", "Littérature qatarienne de langue arabe", "Littérature qatariote", "Littérature qatariote de langue arabe"], "authorized_access_point": "Littérature qatarienne"} 1 +2024-09-11 09:08:38.867892 2024-09-11 09:08:38.867895 7ae5a20f-4790-45eb-bb5a-8fd6ec12ee54 {"md5": "da8b060ef6594b0aade2909909d46b6b", "pid": "278747116", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Biographie néerlandaise"}, {"authorized_access_point": "Roman néerlandais"}], "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2015001131", "source": "LCSH"}], "authorized_access_point": "Biographical fiction, Dutch"}, {"source": "RVMLaval", "authorized_access_point": "Roman biographique néerlandais"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747116", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18148871x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148871", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Roman biographique néerlandais"} 1 +2024-09-11 09:08:38.927448 2024-09-11 09:08:38.927452 9baa4428-3555-43a3-ba54-72348c87d400 {"md5": "d05f729d8e7946838bd0a35f0dd43ba3", "pid": "278747124", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature danoise"}], "related": [{"authorized_access_point": "Autobiographie danoise"}, {"authorized_access_point": "Journaux intimes danois"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747124", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18148880w", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148880", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Mémoires danois"], "authorized_access_point": "Mémoires (genre littéraire) danois"} 1 +2024-09-11 09:08:38.991668 2024-09-11 09:08:38.991672 39957abe-3c38-4927-8254-5ca5e7d1b443 {"md5": "eeadd847244c13d79859930e74be5496", "pid": "278747132", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature espagnole"}], "related": [{"authorized_access_point": "Autobiographie espagnole"}, {"authorized_access_point": "Journaux intimes espagnols"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747132", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181488848", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148884", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Mémoires espagnols"], "authorized_access_point": "Mémoires (genre littéraire) espagnols"} 1 +2024-09-11 09:08:39.050143 2024-09-11 09:08:39.050149 4253b799-ef43-4223-8de2-65edc405ddcc {"md5": "26a687868dad2bdad100691a833ce755", "pid": "278747140", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Théâtre (genre littéraire) belge de langue française"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747140", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18148900p", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148900", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Vaudevilles francophones belges"], "authorized_access_point": "Vaudevilles belges de langue française"} 1 +2024-09-11 09:08:39.109516 2024-09-11 09:08:39.109518 7c412e9e-8083-4713-8595-3fc659e6cf73 {"md5": "d4ba77736e34e888a46b30866795a162", "pid": "278747159", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman bosniaque"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747159", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18148911b", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148911", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Roman humoristique bosniaque"} 1 +2024-09-11 09:08:39.167385 2024-09-11 09:08:39.167392 15747825-d958-4eb3-99e6-2bfd4ada9d5e {"md5": "a517f79566453d72842ba6092863f3fe", "pid": "278747213", "note": [{"label": ["Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour orgue, violoncelle et orchestre, et les recueils de compositions de formes et de genres différents pour cette même formation"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Concertos (violoncelle et orgue)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747213", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181495015", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18149501", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Orgue, violoncelle et orchestre"} 1 +2024-09-11 09:08:39.229635 2024-09-11 09:08:39.229638 f58f7a3a-41a3-4bca-91f4-50fbb06aa229 {"md5": "aeec90e5df3a1df7c3f59c9f820747e3", "pid": "278747221", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Orgue, violoncelle et orchestre"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747221", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18149502h", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18149502", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Concertos (violoncelle et orgue)"} 1 +2024-09-11 09:08:39.285672 2024-09-11 09:08:39.285676 980803d2-1fc3-4f71-a628-24639abb4753 {"md5": "cf4c8be0e8ced0e99f7e5e776d146a93", "pid": "278747248", "note": [{"label": ["Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour voix (employée comme un instrument), piano, flûte à bec et guitare, et les recueils de compositions de formes et de genres différents pour cette même formation"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Quatuors ([distributions instrumentales])"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747248", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18150117g", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18150117", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Quatuors (voix, piano, flûte à bec, guitare)"} 1 +2024-09-11 09:08:39.342684 2024-09-11 09:08:39.342688 b2c42562-ddf5-4065-a5f0-a40a139a688a {"md5": "a8da2696d1bbd0d7939bb4468d942aef", "pid": "278747256", "note": [{"label": ["Sous cette vedette, on trouve les compositions pour un ou plusieurs récitant(s), soliste(s), choeur(s) d'hommes et ensemble instrumental"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747256", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18150337n", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18150337", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Récitants, solistes, choeurs d'hommes et ensemble instrumental"} 1 +2024-09-11 09:08:39.404313 2024-09-11 09:08:39.404317 9c3ed79d-274d-419b-a04f-970db9cadde8 {"md5": "613bde2a3d6f73ee24472f0095eefbdf", "pid": "278747264", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747264", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18150473s", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18150473", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Sextuors de cuivres (trombones (2), trompettes (3), tuba)"} 1 +2024-09-11 09:08:39.467807 2024-09-11 09:08:39.46781 2b3d686b-7cce-45e0-ab3b-6f83a1ced16e {"md5": "6fabf89a9335394b7d0f447143db04ce", "pid": "278747272", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Musique électroacoustique mixte ([distributions instrumentales])"}], "related": [{"authorized_access_point": "Orgue et ensemble à percussion"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747272", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181505701", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18150570", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "variant_access_point": ["PiOrgue, ensemble à percussion et musique électroacoustique"], "authorized_access_point": "Musique électroacoustique mixte (orgue et ensemble à percussion)"} 1 +2024-09-11 09:08:39.530606 2024-09-11 09:08:39.53061 e3c1d1a0-20ff-40d1-a381-ed552ec678cc {"md5": "46ca6b28b31d9dc8050f506a879f6b4d", "pid": "278747299", "note": [{"label": ["Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour flûte, percussion et violoncelle, et les recueils de compositions de formes et de genres différents pour cette même formation"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Trios ([distributions instrumentales])"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747299", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181506600", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18150660", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Trios (flûte, percussion, violoncelle)"} 1 +2024-09-11 09:08:39.587123 2024-09-11 09:08:39.587127 7f95c867-0fd8-4892-ba70-06ebcb43be3c {"md5": "4372416c60eeaa8cf0ea894d4d75c015", "pid": "278747302", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Musique électroacoustique mixte ([distributions instrumentales])"}], "related": [{"authorized_access_point": "Flûte et orchestre"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747302", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18150800p", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18150800", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Musique électroacoustique mixte (flûte et orchestre)"} 1 +2024-09-11 09:08:39.645591 2024-09-11 09:08:39.645595 db72cf9f-a76f-407f-9d35-ffd3f2e6e886 {"md5": "515cd3b4953a0250eb90fd7f55a63de9", "pid": "279034768", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Nouvelles belges de langue française"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279034768", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18150205r", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18150205", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Thriller (nouvelles) belge de langue française"} 1 +2024-09-11 09:08:39.702032 2024-09-11 09:08:39.702038 b3c036ff-5263-4efc-bc42-b8ece839014b {"md5": "bc711de906c7b2f3fc63f30c67974c53", "pid": "279034776", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman français pour la jeunesse"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279034776", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18150214q", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18150214", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Roman d'épouvante pour la jeunesse français"], "authorized_access_point": "Roman d'épouvante français pour la jeunesse"} 1 +2024-09-11 09:08:39.775838 2024-09-11 09:08:39.775842 8059366b-04f1-4b11-b34a-115d0989e071 {"md5": "46a293a5a59bfaab076233d257abdefb", "pid": "279034784", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature érotique américaine"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279034784", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18150222b", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18150222", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Dark romance américaine"} 1 +2024-09-11 09:08:39.841306 2024-09-11 09:08:39.84131 7b4ec8a4-852c-4e2c-bfa9-3a0251c07378 {"md5": "53b6d71095072384454390ee7be877e3", "pid": "279034792", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman américain"}, {"authorized_access_point": "Satire américaine"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279034792", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181502330", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18150233", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Roman satirique américain"} 1 +2024-09-11 09:08:39.904899 2024-09-11 09:08:39.904903 ebe6629f-6a30-4bd8-a2ee-7dc3eed3356b {"md5": "7b35c525e4b00ae097c088822b6f380e", "pid": "279034865", "note": [{"label": ["Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour synthétiseur et orchestre, et les recueils de compositions de formes et de genres différents pour synthétiseur et ensemble à vent"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279034865", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181515572", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18151557", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Synthétiseur et orchestre"} 1 +2024-09-11 09:08:40.07544 2024-09-11 09:08:40.075445 45bb6e81-aa3d-4a81-9657-632c0b543ab7 {"md5": "f9aa4e2583625e8bb903c12ee3a4ee53", "pid": "27903489X", "note": [{"label": ["Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour clavecin et ensemble de clarinettes, et les recueils de compositions de formes et de genres différents pour clavecin et ensemble à vent"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27903489X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181518525", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18151852", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Clavecin et ensemble de clarinettes"} 1 +2024-09-11 09:08:40.133988 2024-09-11 09:08:40.133993 0314f39b-9c08-4144-8f86-1ead3e640cf1 {"md5": "f8fdfec1062cbadc6535ce016a24596e", "pid": "279034903", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman luxembourgeois de langue allemande"}], "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Roman luxembourgeois"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279034903", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181519486", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18151948", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Roman psychologique germanophone luxembourgeois"], "authorized_access_point": "Roman psychologique luxembourgeois de langue allemande"} 1 +2024-09-11 09:08:40.191205 2024-09-11 09:08:40.191209 3395a10b-2578-437b-9b7f-30e356b0c5eb {"md5": "c8b78eaea81c4a3af3504fc34fb3b9d0", "pid": "279035039", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman guatémaltèque"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279035039", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18153143r", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18153143", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Roman policier guatemaltèque"} 1 +2024-09-11 09:08:40.249179 2024-09-11 09:08:40.249184 eefd9e39-abe0-45e8-9c65-d67a17205ffb {"md5": "89b5aba3511ec9b81e43f31312c8bd1f", "pid": "027275639", "note": [{"label": ["Sous cette vedette, on trouve les recueils de littérature belge francophone de divers genres"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature belge"}, {"authorized_access_point": "Littérature francophone"}], "related": [{"authorized_access_point": "Écrivains belges de langue française"}, {"authorized_access_point": "Littérature comparée - Belge de langue française et française"}, {"authorized_access_point": "Littérature comparée - Belge de langue française et italienne"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Autobiographie belge de langue française"}, {"authorized_access_point": "Biographie belge de langue française"}, {"authorized_access_point": "Contes belges de langue française"}, {"authorized_access_point": "Essai (genre littéraire) belge de langue française"}, {"authorized_access_point": "Littérature belge de langue française - 1830-1900"}, {"authorized_access_point": "Littérature belge de langue française pour la jeunesse"}, {"authorized_access_point": "Littérature didactique belge de langue française"}, {"authorized_access_point": "Littérature épistolaire belge de langue française"}, {"authorized_access_point": "Littérature érotique belge de langue française"}, {"authorized_access_point": "Littérature expérimentale belge de langue française"}, {"authorized_access_point": "Littérature fantastique belge de langue française"}, {"authorized_access_point": "Nouvelles belges de langue française"}, {"authorized_access_point": "Poésie belge de langue française"}, {"authorized_access_point": "Roman belge de langue française"}, {"authorized_access_point": "Satire belge de langue française"}, {"authorized_access_point": "Théâtre (genre littéraire) belge de langue française"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85051872", "source": "LCSH"}], "authorized_access_point": "Belgian literature (French)"}, {"source": "RVMLaval", "authorized_access_point": "Littérature belge (française)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027275639", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119352994", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11935299", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Littérature francophone belge"], "authorized_access_point": "Littérature belge de langue française"} 1 +2024-09-11 09:08:40.308965 2024-09-11 09:08:40.308969 50d19368-95c7-48bc-8709-20a81e42d4d4 {"md5": "92e04af0771c86f7702308e1e63d4c25", "pid": "027362434", "note": [{"label": ["Sous cette vedette, on trouve les recueils de littérature suisse francophone de divers genres"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature francophone"}, {"authorized_access_point": "Littérature suisse"}], "related": [{"authorized_access_point": "Écrivains suisses de langue française"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Contes suisses de langue française"}, {"authorized_access_point": "Dark romance suisse de langue française"}, {"authorized_access_point": "Essai (genre littéraire) suisse de langue française"}, {"authorized_access_point": "Fantasy suisse de langue française"}, {"authorized_access_point": "Littérature dialectale française - Suisse"}, {"authorized_access_point": "Littérature policière suisse de langue française"}, {"authorized_access_point": "Littérature révolutionnaire suisse de langue française"}, {"authorized_access_point": "Littérature suisse de langue française pour la jeunesse"}, {"authorized_access_point": "Nouvelles suisses de langue française"}, {"authorized_access_point": "Poésie suisse de langue française"}, {"authorized_access_point": "Proverbes suisses de langue française"}, {"authorized_access_point": "Roman suisse de langue française"}, {"authorized_access_point": "Science-fiction suisse de langue française"}, {"authorized_access_point": "Théâtre (genre littéraire) suisse de langue française"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85051883", "source": "LCSH"}], "authorized_access_point": "Swiss literature (French)"}, {"source": "RVMLaval", "authorized_access_point": "Littérature suisse (française)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027362434", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11942062q", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11942062", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Littérature francophone suisse", "Littérature romande"], "authorized_access_point": "Littérature suisse de langue française"} 1 +2024-09-11 09:08:40.372976 2024-09-11 09:08:40.372979 77dd832f-abd7-4ffe-a36b-9b93b0636d51 {"md5": "6fe4e760eceafb062855943dfd7d210b", "pid": "027612163", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature canadienne de langue anglaise"}, {"authorized_access_point": "Roman anglophone"}, {"authorized_access_point": "Roman canadien"}], "related": [{"authorized_access_point": "Romanciers canadiens de langue anglaise"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Roman autobiographique canadien de langue anglaise"}, {"authorized_access_point": "Roman d'aventures canadien de langue anglaise"}, {"authorized_access_point": "Roman historique canadien de langue anglaise"}, {"authorized_access_point": "Roman policier canadien de langue anglaise"}, {"authorized_access_point": "Roman sentimental canadien de langue anglaise"}, {"authorized_access_point": "Thriller (roman) canadien de langue anglaise"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85019380", "source": "LCSH"}], "authorized_access_point": "Canadian fiction"}, {"source": "RVMLaval", "authorized_access_point": "Roman canadien-anglais"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027612163", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11961467q", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF11961467", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Roman anglophone canadien"], "authorized_access_point": "Roman canadien de langue anglaise"} 1 +2024-09-11 09:08:40.430427 2024-09-11 09:08:40.43043 92e9aa80-9ed4-4939-a0c9-33e7dd8f5ed1 {"md5": "aeb48bb63b16eecdf3021b325e700507", "pid": "029385571", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature turque"}], "related": [{"authorized_access_point": "Poètes turcs"}, {"authorized_access_point": "Chansons turques"}, {"authorized_access_point": "Prose turque"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Élégies turques"}, {"authorized_access_point": "Épopées turques"}, {"authorized_access_point": "Poésie contestataire turque"}, {"authorized_access_point": "Poésie d'amour turque"}, {"authorized_access_point": "Poésie islamique turque"}, {"authorized_access_point": "Poésie patriotique turque"}, {"authorized_access_point": "Poésie populaire turque"}, {"authorized_access_point": "Poésie turque - 13e-19e siècles (dîvan)"}, {"authorized_access_point": "Poésie turque pour la jeunesse"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85138898", "source": "LCSH"}], "authorized_access_point": "Turkish poetry"}, {"source": "RVMLaval", "authorized_access_point": "Poésie turque"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029385571", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb121024006", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12102400", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Poésie turque"} 1 +2024-09-11 09:08:40.490495 2024-09-11 09:08:40.4905 a2186ffc-c846-443c-931e-ee256103cb72 {"md5": "fc746e1061326183b757e45b326b69f8", "pid": "029877555", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature didactique belge de langue française"}], "related": [{"authorized_access_point": "Aphorismes et apophtegmes belges de langue française"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029877555", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12141099k", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12141099", "source": "BNF"}], "classification": [{"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}, {"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Proverbes francophones belges"], "authorized_access_point": "Proverbes belges de langue française"} 1 +2024-09-11 09:08:40.548487 2024-09-11 09:08:40.548492 ac259d16-9bf9-462b-a7da-75096805c0c9 {"md5": "c1541d50a8ef7dbfdbdf095140f0d98a", "pid": "033689725", "note": [{"label": ["Encycl. universalis (art. : Policier, roman ; Pigasse, Albert (1887-1985)) - http://www.universalis-edu.com (2012-06-21)", "Dict. des littératures de langue française / J.-P. de Beaumarchais, D. Couty, A. Rey, 1987 (art. : Roman policier)", "Stanislas-André Steeman. Aux limites de la fiction policière / A. Huftier, 2006", "Dict. des littératures policières / C. Mesplède, 2007 : whodunit", "Dict. du roman policier / J. Tulard, 2005 : whodunit"], "noteType": "dataSource"}, {"label": ["Dict. des termes littéraires, 2005. - Lexique des termes littéraires / M. Jarrety, 2001"], "noteType": "dataNotFound"}, {"label": ["Sous cette vedette, on trouve les recueils de romans d'énigme de divers pays ou en diverses langues"], "noteType": "general"}, {"label": ["Voir aussi les vedettes du type Roman d'énigme [adjectif de langue, de nationalité ou géographique]"], "noteType": "seeReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman policier"}], "related": [{"authorized_access_point": "Cosy mystery"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033689725", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12453179f", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF12453179", "source": "BNF"}], "classification": [{"name": "Problèmes et services sociaux", "type": "bf:ClassificationDdc", "classificationPortion": "360"}, {"name": "Poésie", "type": "bf:ClassificationDdc", "classificationPortion": "801"}], "variant_access_point": ["Énigme (roman)", "Roman à énigme", "Roman d'énigme en chambre close", "Roman de détection", "Roman de mystère", "Roman jeu", "Roman policier à énigme", "Roman problème", "Whodunit"], "authorized_access_point": "Roman d'énigme"} 1 +2024-09-11 09:08:40.614219 2024-09-11 09:08:40.614223 ecdaa14d-5897-455a-b194-c015d80778fc {"md5": "7e33c6d471bf089390a16fdb13182237", "pid": "035381795", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman scandinave"}, {"authorized_access_point": "Littérature danoise"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Roman biographique danois"}, {"authorized_access_point": "Roman d'espionnage danois"}, {"authorized_access_point": "Roman de science-fiction danois pour la jeunesse"}, {"authorized_access_point": "Roman fantastique danois"}, {"authorized_access_point": "Roman historique danois"}, {"authorized_access_point": "Roman policier danois"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85035729", "source": "LCSH"}], "authorized_access_point": "Danish fiction"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035381795", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13185670f", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF13185670", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Roman danois"} 1 +2024-09-11 09:08:40.676147 2024-09-11 09:08:40.676151 b8721b42-0a94-4969-a9a3-a2957ef661fe {"md5": "9c5e18eafc1ca88ec019bc5732458a34", "pid": "174718276", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature suisse de langue française"}, {"authorized_access_point": "Roman francophone"}, {"authorized_access_point": "Roman suisse"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Roman biographique suisse de langue française"}, {"authorized_access_point": "Roman d'éducation suisse de langue française"}, {"authorized_access_point": "Roman fantastique suisse de langue française"}, {"authorized_access_point": "Roman historique suisse de langue française"}, {"authorized_access_point": "Roman humoristique suisse de langue française"}, {"authorized_access_point": "Roman policier suisse de langue française"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh96002305", "source": "LCSH"}], "authorized_access_point": "Swiss fiction (French)"}, {"source": "RVMLaval", "authorized_access_point": "Roman suisse (français)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/174718276", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16732628b", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF16732628", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Roman francophone suisse"], "authorized_access_point": "Roman suisse de langue française"} 1 +2024-09-11 09:08:40.736773 2024-09-11 09:08:40.736777 d9d61cb1-10e8-4b34-9294-5a89bfc24c6f {"md5": "529f0fb6c0a33458097e63851e0cafc5", "pid": "278747078", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature didactique belge de langue française"}], "related": [{"authorized_access_point": "Aphorismes et apophtegmes belges de langue française"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747078", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18148788c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18148788", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Maximes francophones belges"], "authorized_access_point": "Maximes belges de langue française"} 1 +2024-09-11 09:08:40.810433 2024-09-11 09:08:40.810437 f297ff08-632d-4ea2-b766-82355e0b024e {"md5": "4449cdb5237fbb1fabea0fc202453d4a", "pid": "279034954", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature kikuyu"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279034954", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181526598", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18152659", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Épopées kikuyu"} 1 +2024-09-11 09:08:40.877324 2024-09-11 09:08:40.877328 64569873-12b1-4902-bca2-eacc82b91c03 {"md5": "81a8e25eef39b9bb80f93b0eef05a18b", "pid": "279307381", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Poésie géorgienne"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307381", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18152987b", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18152987", "source": "BNF"}], "classification": [{"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Poésie contestataire géorgienne"} 1 +2024-09-11 09:08:40.938285 2024-09-11 09:08:40.93829 ed209050-2603-4cec-8354-8ea68660aa5d {"md5": "ca9b02b8c91a75ceeabc3bf9513b6812", "pid": "27930739X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature contestataire turque"}, {"authorized_access_point": "Poésie turque"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27930739X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181529891", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18152989", "source": "BNF"}], "classification": [{"name": "Sciences politiques", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Poésie contestataire turque"} 1 +2024-09-11 09:08:41.000188 2024-09-11 09:08:41.000192 15f34099-716d-41a2-ae32-238ad0d08ead {"md5": "a19822bd260cf4fbea774299bc47482d", "pid": "279307403", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature érotique française"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307403", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18152992x", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18152992", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Dark romance française"} 1 +2024-09-11 09:08:41.06533 2024-09-11 09:08:41.065333 e6b8e61c-bbf8-4ac6-983f-80e4b894880e {"md5": "d39ceba75755c74efd477c78b3622fe3", "pid": "279307411", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Poésie belge de langue française"}, {"authorized_access_point": "Poésie visuelle belge"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307411", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181529938", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18152993", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Poésie visuelle francophone belge"], "authorized_access_point": "Poésie visuelle belge de langue française"} 1 +2024-09-11 09:08:41.122218 2024-09-11 09:08:41.122222 11a7aed7-16f9-4e3b-982e-6fee7d5062f2 {"md5": "5a79a1bcd1b94bae6c4beba430bd61ef", "pid": "27930742X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman canadien de langue anglaise"}, {"authorized_access_point": "Roman sentimental canadien"}], "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Histoires d'amour canadiennes-anglaises"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27930742X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18153031g", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18153031", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Roman sentimental canadien-anglais"], "authorized_access_point": "Roman sentimental canadien de langue anglaise"} 1 +2024-09-11 09:08:41.18441 2024-09-11 09:08:41.184415 a5224851-d13e-429d-9944-342d5808843b {"md5": "f496ddee3004bfcc89f50a9f859e1b6e", "pid": "279307438", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature suisse de langue française"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307438", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18153842b", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18153842", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Dark romance francophone suisse"], "authorized_access_point": "Dark romance suisse de langue française"} 1 +2024-09-11 09:08:41.307957 2024-09-11 09:08:41.30796 2cea2d8c-8015-4199-af0c-d8060f316b9a {"md5": "613b09abea43dbbace3533c316aead8d", "pid": "279307454", "note": [{"label": ["Tapis à histoire - https://educdome.puy-de-dome.fr/ressources/6468 (2024-06-21)", "Les tapis de lecture : un pont entre l'enfant et le livre / C. Frasson-Cochet, interviewée par M. de Miribel [in] Veiller au confort des lecteurs, 2015", "Le raconte-tapis : un outil d'appropriation, d'expression et de transmission du plaisir de lire / V. Guilbaud, 2007"], "noteType": "dataSource"}, {"label": ["\\"Raconte-tapis\\" est une appellation commerciale"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Éducation de la première enfance - Méthodes actives"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307454", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18153935b", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18153935", "source": "BNF"}], "classification": [{"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}, {"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Raconte-tapis (marque déposée)", "Tapis à histoire", "Tapis bavard", "Tapis narratif"], "authorized_access_point": "Tapis de lecture"} 1 +2024-09-11 09:08:41.363185 2024-09-11 09:08:41.363188 ad3a0856-e9d7-4fc8-b436-d6a1ff20a576 {"md5": "e779d1299ed64746bbb5d45c3cc3a322", "pid": "279307543", "note": [{"label": ["Sous cette vedette, on trouve les compositions (qui n'ont pas de forme ou de genre particulier) pour basson, flûte, hautbois et harpe, et les recueils de compositions de formes et de genres différents pour cette même formation"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Quatuors ([distributions instrumentales])"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307543", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18155078m", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155078", "source": "BNF"}], "classification": [{"name": "Musique", "type": "bf:ClassificationDdc", "classificationPortion": "780"}], "authorized_access_point": "Quatuors (basson, flûte, hautbois, harpe)"} 1 +2024-09-11 09:08:41.422569 2024-09-11 09:08:41.422572 31996c3d-aa4a-448b-bba4-0ec5e2f08c0d {"md5": "089ae533798d535f9756d3fcb6da69b2", "pid": "279307608", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman uruguayen"}], "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "https://lccn.loc.gov/sh2009007782", "source": "LCSH"}], "authorized_access_point": "Historical fiction, Uruguayan"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307608", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18155352r", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155352", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}, {"name": "Histoire et géographie (généralités)", "type": "bf:ClassificationDdc", "classificationPortion": "900"}], "authorized_access_point": "Roman historique uruguayen"} 1 +2024-09-11 09:08:41.48387 2024-09-11 09:08:41.483875 dd68dc97-03ca-46c4-9365-00244f37112f {"md5": "2e1fcbce669e3ad6c309f33ed89472fc", "pid": "279307616", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman arménien"}], "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "https://id.loc.gov/authorities/subjects/sh89000504", "source": "LCSH"}], "authorized_access_point": "Historical fiction, Armenian"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307616", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18155375d", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155375", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}, {"name": "Histoire et géographie (généralités)", "type": "bf:ClassificationDdc", "classificationPortion": "900"}], "authorized_access_point": "Roman historique arménien"} 1 +2024-09-11 09:08:41.575553 2024-09-11 09:08:41.575558 dfb56599-a655-4427-b6ea-9d21bf920ab7 {"md5": "98f2b57ede1ad9ab924eea46aa2ade8f", "pid": "279307640", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Nouvelles pour la jeunesse"}, {"authorized_access_point": "Nouvelles fantastiques"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307640", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18155525d", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155525", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Nouvelles fantastiques pour adolescents", "Nouvelles fantastiques pour enfants", "Nouvelles fantastiques pour jeunes adultes"], "authorized_access_point": "Nouvelles fantastiques pour la jeunesse"} 1 +2024-09-11 09:08:41.639364 2024-09-11 09:08:41.639368 3c109a5b-0e53-4363-bffc-6640f29a7073 {"md5": "d5a36dd46b6d95bde51685661d705e7d", "pid": "279307659", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Poésie yiddish"}], "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "https://lccn.loc.gov/sh2022007681", "source": "LCSH"}], "authorized_access_point": "Epic poetry, Yiddish"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307659", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181555300", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155530", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Épopées yiddish"} 1 +2024-09-11 09:08:41.701824 2024-09-11 09:08:41.701829 ac19a51b-0348-48d5-9c2e-96b2884e3ce2 {"md5": "e4df2a3ec11f5c2698592851563b8d63", "pid": "279307667", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman fantastique suisse de langue française"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307667", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181555362", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155536", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Roman fantastique francophone suisse pour adolescents", "Roman fantastique francophone suisse pour enfants", "Roman fantastique francophone suisse pour jeunes adultes", "Roman fantastique francophone suisse pour la jeunesse", "Roman fantastique suisse de langue française pour adolescents", "Roman fantastique suisse de langue française pour enfants", "Roman fantastique suisse de langue française pour jeunes adultes"], "authorized_access_point": "Roman fantastique suisse de langue française pour la jeunesse"} 1 +2024-09-11 09:08:41.774747 2024-09-11 09:08:41.774751 c14cec20-a084-4011-a9d8-412b732ebbe4 {"md5": "53123327ce99334639e5dcfed6ae16f6", "pid": "279307675", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman français"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307675", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18155543b", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155543", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Roman d'énigme français"} 1 +2024-09-11 09:08:41.837963 2024-09-11 09:08:41.837966 eb3638a7-e2d5-4ab1-a8de-2e9ae99edcac {"md5": "269c66bbb9f9da25163684456443295f", "pid": "279307683", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature didactique belge de langue française"}], "related": [{"authorized_access_point": "Maximes belges de langue française"}, {"authorized_access_point": "Proverbes belges de langue française"}], "bnf_type": "genre/forme Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307683", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181555482", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155548", "source": "BNF"}], "classification": [{"name": "Education et enseignement", "type": "bf:ClassificationDdc", "classificationPortion": "370"}, {"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Aphorismes et apophtegmes francophones belges"], "authorized_access_point": "Aphorismes et apophtegmes belges de langue française"} 1 +2024-09-11 09:08:41.900394 2024-09-11 09:08:41.900399 9d33200b-d05d-4a8e-90eb-adb15118fb0d {"md5": "0791b71176ba22124a40662a162009a9", "pid": "279307705", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Littérature belge de langue française"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Aphorismes et apophtegmes belges de langue française"}, {"authorized_access_point": "Maximes belges de langue française"}, {"authorized_access_point": "Proverbes belges de langue française"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307705", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18155558c", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155558", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Littérature didactique francophone belge"], "authorized_access_point": "Littérature didactique belge de langue française"} 1 +2024-09-11 09:08:41.96194 2024-09-11 09:08:41.961945 26802d6c-744d-4981-80c1-3efad1667485 {"md5": "e1ab5d45734db66af0536e7208afeec7", "pid": "279307721", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman mexicain"}], "bnf_type": "genre/forme Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2023003043", "source": "LCSH"}], "authorized_access_point": "Autobiographical fiction, Mexican"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307721", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181555660", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155566", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "authorized_access_point": "Roman autobiographique mexicain"} 1 +2024-09-11 09:08:42.024597 2024-09-11 09:08:42.024601 af864897-4323-44bd-bb9e-4013541f15f0 {"md5": "46a8cac946148fc195e0ed202f255406", "pid": "279307756", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roman suisse de langue française"}], "bnf_type": "genre/forme Rameau", "narrower": [{"authorized_access_point": "Roman fantastique suisse de langue française pour la jeunesse"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307756", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18155609f", "source": "BNF"}, {"type": "bf:Nbn", "value": "FRBNF18155609", "source": "BNF"}], "classification": [{"name": "Histoire et critique littéraires", "type": "bf:ClassificationDdc", "classificationPortion": "800"}], "variant_access_point": ["Roman fantastique francophone suisse"], "authorized_access_point": "Roman fantastique suisse de langue française"} 1 diff --git a/data/cidref_pidstore.csv b/data/cidref_pidstore.csv index a252fa20..e74876ba 100644 --- a/data/cidref_pidstore.csv +++ b/data/cidref_pidstore.csv @@ -1,273 +1,551 @@ -2023-08-08 13:37:37.279849 2023-08-08 13:37:37.279855 cidref 027224430 R rec c4f5d555-0cb2-44e5-8609-86a0a9abd7c2 -2023-08-08 13:37:37.363257 2023-08-08 13:37:37.363262 cidref 027227219 R rec cb66f8c4-bf3b-4320-8e51-f127777f294e -2023-08-08 13:37:37.420937 2023-08-08 13:37:37.420941 cidref 027235548 R rec f4711140-6695-45e4-a13f-8afc376b6d02 -2023-08-08 13:37:37.469825 2023-08-08 13:37:37.469829 cidref 027236226 R rec 24764221-a437-40ab-92f2-81709d3cd66a -2023-08-08 13:37:37.51685 2023-08-08 13:37:37.516855 cidref 027243087 R rec ffb81954-7944-4fd0-8837-c7be39605ac6 -2023-08-08 13:37:37.57209 2023-08-08 13:37:37.572095 cidref 027246655 R rec a3b6ade6-9b94-47c7-bd98-553c6e5f5a8a -2023-08-08 13:37:37.632862 2023-08-08 13:37:37.632867 cidref 027256251 R rec cfd2fa00-c337-495e-aaec-4c186b4f7876 -2023-08-08 13:37:37.687279 2023-08-08 13:37:37.687283 cidref 027287289 R rec ba76549e-5f28-40bd-8b9e-bdfe59670832 -2023-08-08 13:37:37.735179 2023-08-08 13:37:37.735185 cidref 027294358 R rec 2715cfbd-d469-4ed6-bfba-d9faf31e435c -2023-08-08 13:37:37.782278 2023-08-08 13:37:37.782283 cidref 02730440X R rec 5c4676d3-8ef4-4d31-96fa-dab230df8905 -2023-08-08 13:37:37.828374 2023-08-08 13:37:37.828379 cidref 027328295 R rec 6386658a-b2b6-4041-9285-049b23e86833 -2023-08-08 13:37:37.879773 2023-08-08 13:37:37.879783 cidref 027354431 R rec 9abb3632-b40d-4c2c-99ba-354baccb7ddf -2023-08-08 13:37:37.958836 2023-08-08 13:37:37.958841 cidref 027366669 R rec 98baff3c-7e31-4f88-825c-7b6d563e9e0b -2023-08-08 13:37:38.041973 2023-08-08 13:37:38.041979 cidref 027389782 R rec ef11c0c0-edb0-4216-919e-a43bf2aee518 -2023-08-08 13:37:38.135518 2023-08-08 13:37:38.135523 cidref 027430162 R rec b6fbfec4-1100-44ca-bb94-e7a0ca002052 -2023-08-08 13:37:38.231425 2023-08-08 13:37:38.231663 cidref 027488462 R rec b4d49233-7c96-4c4d-ac16-c339f1dabd38 -2023-08-08 13:37:38.323323 2023-08-08 13:37:38.323334 cidref 02750610X R rec 60f21845-3787-4928-98bb-4ab3645602a9 -2023-08-08 13:37:38.41347 2023-08-08 13:37:38.413481 cidref 027510387 R rec f28ed9bd-c6b8-457d-b67e-f2713b5f4242 -2023-08-08 13:37:38.478691 2023-08-08 13:37:38.478701 cidref 027599701 R rec b04286af-15e1-48c9-b86e-9758c3b008eb -2023-08-08 13:37:38.551526 2023-08-08 13:37:38.551532 cidref 027652254 R rec 48dc1eab-56df-4e20-99d4-2080c2d418a7 -2023-08-08 13:37:38.619064 2023-08-08 13:37:38.619069 cidref 027661504 R rec 9a705760-060e-4c6e-ab0e-b22b54d8357f -2023-08-08 13:37:38.66669 2023-08-08 13:37:38.666695 cidref 027675823 R rec 90bf29e4-14ae-4ede-b9d6-2fae39e72794 -2023-08-08 13:37:38.717738 2023-08-08 13:37:38.717743 cidref 027688739 R rec ea6db838-8cc7-42fb-8fcb-ea9c8867400a -2023-08-08 13:37:38.764946 2023-08-08 13:37:38.764951 cidref 027699870 R rec 660a5aeb-ae05-4151-b483-6121a347c9fd -2023-08-08 13:37:38.812226 2023-08-08 13:37:38.812231 cidref 02770940X R rec d75cb1aa-6ca9-42b9-b90a-e9497d4fab0b -2023-08-08 13:37:38.867186 2023-08-08 13:37:38.867197 cidref 027741060 R rec ef8f49c4-98d4-4e5a-af45-fdb916daf346 -2023-08-08 13:37:38.947966 2023-08-08 13:37:38.947977 cidref 027741125 R rec 942230ad-9848-4f2a-8f3e-7010577ca49b -2023-08-08 13:37:39.016655 2023-08-08 13:37:39.016666 cidref 027765369 R rec cdbc2ed0-2a20-4a83-9c2e-81161b9aa4a7 -2023-08-08 13:37:39.075397 2023-08-08 13:37:39.075402 cidref 027785084 R rec 8eb81f3a-e1f3-47d7-a724-2a288275f289 -2023-08-08 13:37:39.147288 2023-08-08 13:37:39.147298 cidref 027805220 R rec b90bd685-3be0-45e4-8d8c-2023d72922f3 -2023-08-08 13:37:39.228614 2023-08-08 13:37:39.228619 cidref 027809781 R rec 1b0d280d-15af-4222-ab67-cfa75beed7f8 -2023-08-08 13:37:39.318806 2023-08-08 13:37:39.318818 cidref 027811611 R rec a315472d-07b8-4805-91c8-9afd6ea6b34f -2023-08-08 13:37:39.394738 2023-08-08 13:37:39.394743 cidref 027825280 R rec 0e29b412-5509-4e51-bac6-598e413304ce -2023-08-08 13:37:39.465771 2023-08-08 13:37:39.465776 cidref 027832953 R rec 519a4cd1-c078-4e97-b7da-4c6d90093d29 -2023-08-08 13:37:39.53157 2023-08-08 13:37:39.531575 cidref 027838919 R rec e230e8fc-8e47-4175-a36c-cdbbb12bb5a0 -2023-08-08 13:37:39.582771 2023-08-08 13:37:39.582784 cidref 02784532X R rec 0dbc6ae0-137c-4ddb-8159-e7874ac463cb -2023-08-08 13:37:39.651988 2023-08-08 13:37:39.651993 cidref 027852547 R rec a9b0b3ab-cca4-4dce-8c9d-fb9f5d966727 -2023-08-08 13:37:39.702429 2023-08-08 13:37:39.702434 cidref 028004698 R rec 28eed3bd-1ba4-432f-a446-f3a1710880a1 -2023-08-08 13:37:39.750434 2023-08-08 13:37:39.750439 cidref 028244494 R rec 1a928111-7486-4e27-92b8-64a9f2b0d69c -2023-08-08 13:37:39.803234 2023-08-08 13:37:39.803238 cidref 028283678 R rec 28b6eb17-89d2-44e2-a073-93da4ed30630 -2023-08-08 13:37:39.849624 2023-08-08 13:37:39.84963 cidref 028354559 R rec 6260af52-7445-4d79-8d48-bda09217b548 -2023-08-08 13:37:39.899673 2023-08-08 13:37:39.899683 cidref 028359070 R rec 6fa7d72f-b0e9-4365-86f4-7367406b49c1 -2023-08-08 13:37:39.980692 2023-08-08 13:37:39.980703 cidref 028701755 R rec e2672535-4a92-4bbf-8679-e4d977076198 -2023-08-08 13:37:40.051218 2023-08-08 13:37:40.051224 cidref 028910044 R rec 0a829037-d335-40c5-a6d3-9a4fcd8433f7 -2023-08-08 13:37:40.123535 2023-08-08 13:37:40.12354 cidref 028962389 R rec 96fc0147-4f4f-45ff-a843-243d39ee879c -2023-08-08 13:37:40.196216 2023-08-08 13:37:40.196227 cidref 02897297X R rec 3774dddb-99d7-4ac0-95c3-d24cb6e8c97d -2023-08-08 13:37:40.268873 2023-08-08 13:37:40.268878 cidref 029241693 R rec 5232e8e8-8aed-44fc-b765-176fb3829de9 -2023-08-08 13:37:40.358312 2023-08-08 13:37:40.358317 cidref 029260892 R rec 237ef3da-ffd2-4727-8717-7510288aa198 -2023-08-08 13:37:40.449144 2023-08-08 13:37:40.449154 cidref 029560020 R rec 228eb790-1a84-426d-ae8b-35816fbf4425 -2023-08-08 13:37:40.532346 2023-08-08 13:37:40.532351 cidref 029563321 R rec c70be705-e061-4fae-b4d4-1cdbe4fefea4 -2023-08-08 13:37:40.590218 2023-08-08 13:37:40.590223 cidref 029910609 R rec a5069a14-8590-435a-9d93-fb1e59731225 -2023-08-08 13:37:40.664696 2023-08-08 13:37:40.664701 cidref 030714451 R rec bf398d03-6552-4ecb-adcc-9e23a7c8851c -2023-08-08 13:37:40.735469 2023-08-08 13:37:40.735474 cidref 030763762 R rec fc5ef599-2851-44c3-9b74-d23f5ff5b120 -2023-08-08 13:37:40.806524 2023-08-08 13:37:40.806529 cidref 030767806 R rec 8b20633b-d431-4dbd-9684-9ae9306752db -2023-08-08 13:37:40.856109 2023-08-08 13:37:40.856114 cidref 03116207X R rec 42cf0a6f-bca9-41ac-bc42-ea0fb314906b -2023-08-08 13:37:40.914393 2023-08-08 13:37:40.914403 cidref 031474284 R rec 95acff84-4d76-46e4-be9e-7281d8b57973 -2023-08-08 13:37:41.007153 2023-08-08 13:37:41.007158 cidref 031911056 R rec 8a0261fd-e97d-45e4-a399-a836b7330d35 -2023-08-08 13:37:41.073456 2023-08-08 13:37:41.073461 cidref 031992234 R rec a5996cba-92d3-45ba-b8ee-250278cbb57a -2023-08-08 13:37:41.151398 2023-08-08 13:37:41.151408 cidref 03212743X R rec 5f571655-b3a7-4393-b949-2b11881ae6d1 -2023-08-08 13:37:41.238761 2023-08-08 13:37:41.238767 cidref 032187130 R rec 890a7f5a-1a27-49f9-959a-1898a69b4dc0 -2023-08-08 13:37:41.327938 2023-08-08 13:37:41.327948 cidref 032563507 R rec afcaaf3c-0284-4b4f-ad93-0b7896fc50d9 -2023-08-08 13:37:41.423626 2023-08-08 13:37:41.423637 cidref 032972938 R rec ed6f2c2d-8851-4551-8dc5-5b43d2814cb0 -2023-08-08 13:37:41.511014 2023-08-08 13:37:41.511019 cidref 03388157X R rec 993ca3b3-a378-4171-963f-8f093b084322 -2023-08-08 13:37:41.564473 2023-08-08 13:37:41.564478 cidref 034160523 R rec a4620f96-ccb4-4959-983e-2d7d2ff5d8c1 -2023-08-08 13:37:41.649008 2023-08-08 13:37:41.649017 cidref 034490906 R rec 888c2b35-ad18-43dc-9f5a-c2a00a0034f9 -2023-08-08 13:37:41.739574 2023-08-08 13:37:41.739579 cidref 034680365 R rec 877cd5a6-7f0b-424b-8cd8-ea5e696816c0 -2023-08-08 13:37:41.793831 2023-08-08 13:37:41.793836 cidref 035801123 R rec 11caf531-2c9e-477f-aaa3-3a89b5190f43 -2023-08-08 13:37:41.845797 2023-08-08 13:37:41.845802 cidref 050203177 R rec 517033cf-d16f-4ec2-a65d-f2d2ab6211c5 -2023-08-08 13:37:41.906885 2023-08-08 13:37:41.90689 cidref 050513478 R rec 980ea5aa-8387-44f1-b554-6ef8f1b4128a -2023-08-08 13:37:41.974862 2023-08-08 13:37:41.974867 cidref 077061284 R rec 4fc3234f-2eec-4186-8272-cfd373352061 -2023-08-08 13:37:42.056395 2023-08-08 13:37:42.0564 cidref 080206913 R rec 02c51d91-b16d-410d-abbc-523e9e11e1b9 -2023-08-08 13:37:42.131176 2023-08-08 13:37:42.131181 cidref 083620338 R rec 2a758e2d-ff16-40fb-a97e-bcf8043b8f60 -2023-08-08 13:37:42.216102 2023-08-08 13:37:42.216111 cidref 083622519 R rec 7a8c8457-8a03-44f4-bfae-b88074ac5e38 -2023-08-08 13:37:42.281793 2023-08-08 13:37:42.281803 cidref 092468675 R rec 00d72b51-ef99-40fe-bf0b-02779d5961e8 -2023-08-08 13:37:42.37505 2023-08-08 13:37:42.375054 cidref 113531923 R rec 3bb91178-7c4a-4b84-9807-26a1894daec1 -2023-08-08 13:37:42.467132 2023-08-08 13:37:42.467138 cidref 119256347 R rec 559a2be3-1f78-44bc-8119-77eb09df2bb3 -2023-08-08 13:37:42.547958 2023-08-08 13:37:42.547962 cidref 130730173 R rec ef63110e-d76a-4836-bbdc-2dbde1e4fd22 -2023-08-08 13:37:42.619449 2023-08-08 13:37:42.619459 cidref 132184214 R rec 0576fde7-69a6-4401-a4ca-0d033de4f356 -2023-08-08 13:37:42.722688 2023-08-08 13:37:42.722693 cidref 146321944 R rec 0d5fa7cd-17e5-4f9e-8bed-57707e36ef7e -2023-08-08 13:37:42.798851 2023-08-08 13:37:42.798856 cidref 146774094 R rec 4efc7b99-b2d9-49eb-abc7-ad98748cfefb -2023-08-08 13:37:42.848241 2023-08-08 13:37:42.848246 cidref 16573762X R rec 8a35e448-aad6-402c-9500-40e746129728 -2023-08-08 13:37:42.898633 2023-08-08 13:37:42.898638 cidref 16719416X R rec 36efb1cd-2551-4847-883b-60a7e5fcc40f -2023-08-08 13:37:42.951966 2023-08-08 13:37:42.951971 cidref 172690250 R rec 8f7707d6-5e96-4858-942e-d9bd58605344 -2023-08-08 13:37:43.001076 2023-08-08 13:37:43.001082 cidref 174131887 R rec 07e5fe60-6ca7-46e3-9166-af9b308fb07e -2023-08-08 13:37:43.058428 2023-08-08 13:37:43.058434 cidref 18456381X R rec 8a075055-432c-4783-8aa8-b98721ae7ea0 -2023-08-08 13:37:43.139802 2023-08-08 13:37:43.139806 cidref 245367888 R rec 5f0e396e-e587-4130-a199-3f94b9205566 -2023-08-08 13:37:43.226266 2023-08-08 13:37:43.226271 cidref 252252063 R rec 16b08667-c4cb-4ddd-b90e-f833e56afb0d -2023-08-08 13:37:43.316362 2023-08-08 13:37:43.316372 cidref 25410875X R rec 1cb4f9da-2dcc-4815-bc2d-69d7d2bc9d26 -2023-08-08 13:37:43.412729 2023-08-08 13:37:43.412734 cidref 255690444 R rec fc391a5f-587f-4bf3-9063-d2e9a4205969 -2023-08-08 13:37:43.478801 2023-08-08 13:37:43.478806 cidref 256524203 R rec c14db206-b3a5-4ea3-b88e-654dc272ef93 -2023-08-08 13:37:43.560121 2023-08-08 13:37:43.560126 cidref 258617527 R rec 1bc315af-8d88-4610-9780-3ff86ce92bd7 -2023-08-08 13:37:43.648134 2023-08-08 13:37:43.648144 cidref 25906288X R rec d1eb5cb8-0597-46f3-b218-3aad43a5c53e -2023-08-08 13:37:43.741317 2023-08-08 13:37:43.741323 cidref 259596337 R rec 5b0e2923-47a5-4f7d-8338-ee39e53561dd -2023-08-08 13:37:43.822581 2023-08-08 13:37:43.822587 cidref 259599174 R rec 564be194-0dfa-4629-bdfc-57fb8841f95c -2023-08-08 13:37:43.873853 2023-08-08 13:37:43.873858 cidref 259943401 R rec 4e42a26d-4632-49cf-a7a5-11729b80525f -2023-08-08 13:37:43.924597 2023-08-08 13:37:43.924603 cidref 259951293 R rec 29371555-eb1b-4386-b464-08054b33a488 -2023-08-08 13:37:43.978232 2023-08-08 13:37:43.978237 cidref 259974811 R rec f4cf6a8e-44ff-4f96-ba37-8f98a0d567c6 -2023-08-08 13:37:44.02815 2023-08-08 13:37:44.028155 cidref 259995118 R rec ec796417-0adc-475a-8aaf-b0273521ce5c -2023-08-08 13:37:44.075971 2023-08-08 13:37:44.075976 cidref 261107909 R rec b9680856-5a24-4692-87cc-4d39fd49286c -2023-08-08 13:37:44.150071 2023-08-08 13:37:44.15008 cidref 261196715 R rec 5fba171d-003d-494c-bd48-c1e89cc37710 -2023-08-08 13:37:44.23979 2023-08-08 13:37:44.239795 cidref 261901532 R rec c5e8ff27-3263-4022-9bfd-1b3b854f9280 -2023-08-08 13:37:44.298838 2023-08-08 13:37:44.298848 cidref 262111012 R rec 3f080b95-8ccf-453b-80f0-beb4f9954b5e -2023-08-08 13:37:44.379603 2023-08-08 13:37:44.379612 cidref 262111020 R rec eb451445-62b1-4033-a514-de55248fb188 -2023-08-08 13:37:44.473276 2023-08-08 13:37:44.47328 cidref 262111039 R rec 106e21c4-3d4d-4679-a999-77b84f008495 -2023-08-08 13:37:44.538621 2023-08-08 13:37:44.538626 cidref 262111071 R rec 19c8c914-4725-41a7-865e-4c9e28dbc75b -2023-08-08 13:37:44.597017 2023-08-08 13:37:44.597029 cidref 26211108X R rec f0a499fa-41bb-4211-a7b5-3afb14a8976b -2023-08-08 13:37:44.694675 2023-08-08 13:37:44.694684 cidref 262111098 R rec e105e009-9df4-4d65-9677-f648c398025d -2023-08-08 13:37:44.780051 2023-08-08 13:37:44.780061 cidref 262125927 R rec 3d6f937e-addc-4e71-916a-b62d0d0b74a4 -2023-08-08 13:37:44.876312 2023-08-08 13:37:44.876318 cidref 262413817 R rec 3436d0a6-93d5-467b-ae0b-3e5bbc302d22 -2023-08-08 13:37:44.927043 2023-08-08 13:37:44.927048 cidref 262414023 R rec 92ac3144-2c62-44e6-932f-d37e0baa03ae -2023-08-08 13:37:44.975538 2023-08-08 13:37:44.975543 cidref 262414082 R rec 4659a9bf-dd38-42ef-8467-ce1fa903abf7 -2023-08-08 13:37:45.022973 2023-08-08 13:37:45.022977 cidref 262414112 R rec 86cbc751-c3c2-498b-bfc9-d2b73f75bfcb -2023-08-08 13:37:45.073379 2023-08-08 13:37:45.073385 cidref 262668858 R rec 6577f639-3dc5-4cf2-ae8c-ac3675c84b07 -2023-08-08 13:37:45.138369 2023-08-08 13:37:45.138379 cidref 262669161 R rec f200497e-707e-499d-9b7a-14cecc477cf2 -2023-08-08 13:37:45.216465 2023-08-08 13:37:45.216475 cidref 262669188 R rec 199c34c5-60f4-4aa1-9cbf-b4e6cb21eb7c -2023-08-08 13:37:45.299047 2023-08-08 13:37:45.299056 cidref 26266920X R rec d6b487f9-bf92-4fdd-a47d-5c0c6455a1fb -2023-08-08 13:37:45.366033 2023-08-08 13:37:45.366043 cidref 262669234 R rec d9b3954f-c581-414f-be09-df18421a9e1e -2023-08-08 13:37:45.44655 2023-08-08 13:37:45.446556 cidref 262669242 R rec 4292796d-f764-4b46-9fab-674bbaae6533 -2023-08-08 13:37:45.535835 2023-08-08 13:37:45.53584 cidref 262669250 R rec 591f8b9a-e5fa-4fc5-955c-a9f2e3c1526c -2023-08-08 13:37:45.599105 2023-08-08 13:37:45.599114 cidref 262805111 R rec 7f6547cc-01bd-4c1b-9c4f-115e6d0247a4 -2023-08-08 13:37:45.680078 2023-08-08 13:37:45.680088 cidref 262915219 R rec 84426a96-ee07-4aa9-9eaa-257c0b2c0b2e -2023-08-08 13:37:45.752301 2023-08-08 13:37:45.752306 cidref 262928264 R rec 813991ee-58b1-47f8-be35-694eb9fa257f -2023-08-08 13:37:45.831596 2023-08-08 13:37:45.831605 cidref 26292837X R rec e7c6b687-b2e0-420c-ab84-cb55ba1c6c23 -2023-08-08 13:37:45.914459 2023-08-08 13:37:45.914464 cidref 262928507 R rec 9a615b04-57d8-467d-9325-129b05a99ae3 -2023-08-08 13:37:45.964743 2023-08-08 13:37:45.964748 cidref 262928701 R rec 2998877c-921c-4a17-b5ae-5ad45b5f260b -2023-08-08 13:37:46.03254 2023-08-08 13:37:46.032545 cidref 26307837X R rec be95cf49-680e-43aa-85ed-7161542b31d9 -2023-08-08 13:37:46.096458 2023-08-08 13:37:46.096464 cidref 263492680 R rec f183e6b6-208d-413e-a146-cda28aac7c2c -2023-08-08 13:37:46.169819 2023-08-08 13:37:46.169829 cidref 263499944 R rec 653d3f4a-5bc1-43d8-8706-83068933b933 -2023-08-08 13:37:46.246055 2023-08-08 13:37:46.24606 cidref 263499979 R rec ad585b2d-c68c-445e-ba1e-67bb62a24161 -2023-08-08 13:37:46.328165 2023-08-08 13:37:46.328175 cidref 263500047 R rec f543da2c-929a-405a-8662-9d6bac837920 -2023-08-08 13:37:46.416989 2023-08-08 13:37:46.416999 cidref 263500071 R rec 86f01ddc-b7f7-448f-a8e9-ff6ab47fdf81 -2023-08-08 13:37:46.527202 2023-08-08 13:37:46.527208 cidref 263500187 R rec 79f98fed-26ab-48bb-9998-70dd3d9fd32a -2023-08-08 13:37:46.626541 2023-08-08 13:37:46.626547 cidref 263610918 R rec 7080360e-1d40-4535-b27a-e448658210f0 -2023-08-08 13:37:46.679391 2023-08-08 13:37:46.679396 cidref 263714233 R rec 96c62ea3-8d0a-4ca2-870e-b72de9cfa9d6 -2023-08-08 13:37:46.733398 2023-08-08 13:37:46.733403 cidref 263714241 R rec 547dda4c-ca2b-43b6-bf47-f68936eb1e27 -2023-08-08 13:37:46.781978 2023-08-08 13:37:46.781983 cidref 26371425X R rec 5fcff600-051d-43a0-8ff7-94515380c89c -2023-08-08 13:37:46.831604 2023-08-08 13:37:46.831609 cidref 263714268 R rec 1f43ac26-91fb-4b8d-870c-4be9ee7cfb09 -2023-08-08 13:37:46.919337 2023-08-08 13:37:46.919347 cidref 263714276 R rec 467705f3-9079-4797-b050-e230f29241a1 -2023-08-08 13:37:46.973489 2023-08-08 13:37:46.973495 cidref 263714284 R rec 3fcd9b40-8aad-4129-a266-01e6d33605d1 -2023-08-08 13:37:47.023097 2023-08-08 13:37:47.023101 cidref 263714292 R rec 1b07ff3a-85bb-4e28-adac-878a8ef2f6b2 -2023-08-08 13:37:47.073116 2023-08-08 13:37:47.073121 cidref 263714306 R rec b3d7e379-1b9c-443b-a458-9ac4f50d25f0 -2023-08-08 13:37:47.127607 2023-08-08 13:37:47.127612 cidref 263714314 R rec c987614c-4aef-4615-b6cb-d824903f5d64 -2023-08-08 13:37:47.188104 2023-08-08 13:37:47.188108 cidref 263714322 R rec a75d7e0e-ed34-4e2d-9ca2-f0544b03105a -2023-08-08 13:37:47.26501 2023-08-08 13:37:47.265021 cidref 263714330 R rec c5c2f360-fe8f-409c-94ae-b4f57b566c95 -2023-08-08 13:37:47.349578 2023-08-08 13:37:47.349588 cidref 263714349 R rec 32bb6900-42b7-42a7-85f8-eae0476802ef -2023-08-08 13:37:47.44966 2023-08-08 13:37:47.449669 cidref 263714357 R rec 04202c57-1d2f-4b95-82cd-3a63c8be2e66 -2023-08-08 13:37:47.536849 2023-08-08 13:37:47.536854 cidref 263714365 R rec 51675c1e-ea80-41ac-b0c7-ca79583876a7 -2023-08-08 13:37:47.616654 2023-08-08 13:37:47.616659 cidref 263714373 R rec f6971c4d-1601-40bb-9b40-54fc13f9cf35 -2023-08-08 13:37:47.682255 2023-08-08 13:37:47.682265 cidref 26371439X R rec 17186f61-5b84-4a40-b8b2-afa4226083b6 -2023-08-08 13:37:47.778286 2023-08-08 13:37:47.778291 cidref 263714403 R rec 395cca02-cb53-4ea3-83f5-ddd77ebd4ea6 -2023-08-08 13:37:47.850136 2023-08-08 13:37:47.850146 cidref 263714411 R rec 7bd35b7b-33bf-4368-ae76-c352a13cac81 -2023-08-08 13:37:47.963554 2023-08-08 13:37:47.963559 cidref 26371442X R rec 249a50a4-2632-4971-827c-b9fa5dbb39d0 -2023-08-08 13:37:48.021713 2023-08-08 13:37:48.021717 cidref 263714438 R rec c41c5eeb-7a5f-4f67-a67f-a9aeff2a6b19 -2023-08-08 13:37:48.070586 2023-08-08 13:37:48.07059 cidref 263714446 R rec 2a749317-4f4e-4516-9986-4020cae9d454 -2023-08-08 13:37:48.122224 2023-08-08 13:37:48.122228 cidref 263714454 R rec e173339e-1f04-45ba-a504-616b50c2bdc1 -2023-08-08 13:37:48.171243 2023-08-08 13:37:48.171247 cidref 263714462 R rec 483c1ec3-b084-4148-b75a-ea5586416199 -2023-08-08 13:37:48.22367 2023-08-08 13:37:48.223675 cidref 263714470 R rec 5fbe4b66-2768-4014-900b-09e8e6a7589f -2023-08-08 13:37:48.297172 2023-08-08 13:37:48.297181 cidref 263714489 R rec aabcf15c-8a34-4a2a-97c2-4ae723199e7d -2023-08-08 13:37:48.391764 2023-08-08 13:37:48.391769 cidref 263714500 R rec 0918ebc1-0c99-4489-980d-7be8f58f67b7 -2023-08-08 13:37:48.490959 2023-08-08 13:37:48.490963 cidref 263714519 R rec 5475b721-056a-40e0-bbfc-d94000b83eb8 -2023-08-08 13:37:48.55891 2023-08-08 13:37:48.558915 cidref 263714527 R rec 6741db49-8d90-47f3-91f3-919e489f258b -2023-08-08 13:37:48.619317 2023-08-08 13:37:48.619328 cidref 263714535 R rec daea8caf-f348-4ba0-9dec-4f1f0db22e2e -2023-08-08 13:37:48.6928 2023-08-08 13:37:48.692805 cidref 263714543 R rec 8455f57d-f086-4b31-b543-87319d3832e5 -2023-08-08 13:37:48.761728 2023-08-08 13:37:48.761733 cidref 263714551 R rec 895280bd-88ad-4082-80ad-c083f96488a3 -2023-08-08 13:37:48.833385 2023-08-08 13:37:48.833397 cidref 26371456X R rec f1bbff97-3c88-4da5-a566-6133b3fc0668 -2023-08-08 13:37:48.913721 2023-08-08 13:37:48.913731 cidref 263714578 R rec 4cb57e12-a584-49f7-aec1-387b195c4677 -2023-08-08 13:37:48.996656 2023-08-08 13:37:48.996666 cidref 263714594 R rec cec9f9e5-6189-42b6-b814-1e3f2b728055 -2023-08-08 13:37:49.059021 2023-08-08 13:37:49.059026 cidref 263714608 R rec 8e1eba43-e5d7-4694-856e-c1edee20c129 -2023-08-08 13:37:49.114097 2023-08-08 13:37:49.114102 cidref 263714616 R rec 44c3fdfa-5bce-498a-806c-108ce6384587 -2023-08-08 13:37:49.163449 2023-08-08 13:37:49.163454 cidref 263714624 R rec bfc511ac-4e23-4926-8b57-a5a8c655ebdd -2023-08-08 13:37:49.213673 2023-08-08 13:37:49.213677 cidref 263714632 R rec e9a42c7a-03e2-4e5e-bfcf-acefe8dd06a8 -2023-08-08 13:37:49.267774 2023-08-08 13:37:49.267783 cidref 263714640 R rec 7740d1fb-1a78-453f-85a1-f0b7acd1de25 -2023-08-08 13:37:49.343002 2023-08-08 13:37:49.343012 cidref 263714659 R rec 5db9dab6-72e2-402c-bc82-f5dce3bdf0c7 -2023-08-08 13:37:49.430903 2023-08-08 13:37:49.430913 cidref 263714667 R rec aa93a2cc-1c85-487c-9c9e-959268ed17c0 -2023-08-08 13:37:49.519281 2023-08-08 13:37:49.519292 cidref 263714691 R rec 166d9f1e-7fb6-45d5-8084-ad568ff04c1e -2023-08-08 13:37:49.572735 2023-08-08 13:37:49.57274 cidref 263714705 R rec bab99072-979a-40c2-a58c-68dcdf272d2f -2023-08-08 13:37:49.643563 2023-08-08 13:37:49.643568 cidref 263714713 R rec 27eef000-77a1-4f05-bab9-5a4c233d4280 -2023-08-08 13:58:50.833206 2023-08-08 13:58:50.833212 cidref 027794687 R rec 52dd2fc8-bc87-4e7f-b3bb-4985ccf26ee6 -2023-08-08 14:25:02.798204 2023-08-08 14:25:02.79821 cidref 029531411 R rec 99024c9b-1e95-46e9-952f-0012b00b9d1e -2023-08-08 14:25:03.865353 2023-08-08 14:25:03.865359 cidref 033466300 R rec 3ca071f0-ddbc-47ab-84b1-051e28b3ccf0 -2023-08-08 14:25:04.592775 2023-08-08 14:25:04.59278 cidref 050665391 R rec 8eabcdf6-cfa4-466d-9109-fcc3bf4561ca -2023-08-08 14:28:41.189194 2023-08-08 14:28:41.189197 cidref 027796930 R rec f4f0e682-c018-4cd2-8dbc-7b32e2cd2048 -2023-08-08 14:28:41.282252 2023-08-08 14:28:41.282261 cidref 027797619 R rec 32da71f8-3f15-4a87-b399-e73704929f9d -2023-08-08 14:28:41.383524 2023-08-08 14:28:41.383533 cidref 027798461 R rec b6fdadc1-d4c0-47ae-b013-4e44193d618a -2023-08-08 14:28:41.491258 2023-08-08 14:28:41.491267 cidref 027798682 R rec 21442fef-901b-409f-9dc9-df9e5411c1e1 -2023-08-08 14:28:41.597485 2023-08-08 14:28:41.597492 cidref 027799395 R rec 95e02703-3e3a-4ff6-879e-0b81a0517ce4 -2023-08-08 14:28:41.67389 2023-08-08 14:28:41.673895 cidref 027799409 R rec fac1ced9-3c64-43db-a6aa-8f055bc0d255 -2023-08-08 14:28:41.758146 2023-08-08 14:28:41.758155 cidref 027799425 R rec 72a7f534-4e8c-487a-b375-b6d71d6b4f36 -2023-08-08 14:28:41.855634 2023-08-08 14:28:41.855642 cidref 027804380 R rec 3f58dea9-b00b-46d7-ae6e-8b9cf80b756b -2023-08-08 14:28:41.991634 2023-08-08 14:28:41.991644 cidref 027805158 R rec 69396906-17f8-4f31-9b92-82eb7740fd74 -2023-08-08 14:28:42.136308 2023-08-08 14:28:42.136318 cidref 027805301 R rec 44ad847b-e2d5-4862-be53-417c0dfd25aa -2023-08-08 14:28:42.251155 2023-08-08 14:28:42.25116 cidref 027805824 R rec 48cd9898-f24d-4d28-93d7-e281b5632435 -2023-08-08 14:28:43.986749 2023-08-08 14:28:43.986752 cidref 027812596 R rec 84d4b0ee-072c-40c5-8954-74d841656051 -2023-08-08 14:28:44.064779 2023-08-08 14:28:44.064783 cidref 02781341X R rec 5e578a34-4d43-49b6-a5ad-0a9d6339a388 -2023-08-08 14:28:44.856938 2023-08-08 14:28:44.856943 cidref 027813533 R rec 81f1b867-0897-4444-b8b2-5a2b77d61233 -2023-08-08 14:28:46.896263 2023-08-08 14:28:46.896269 cidref 027804232 R rec 536add5e-018f-4e98-aedf-ae6b7be1d1a9 -2023-08-08 14:34:56.651919 2023-08-08 14:34:56.651924 cidref 033297746 R rec 8e919197-8fe9-4c9f-8c99-11a69cb349ec -2023-08-08 14:34:56.739639 2023-08-08 14:34:56.739644 cidref 050170406 R rec fa7e361b-808e-4a30-8ebd-3467a4a9befc -2023-08-08 14:34:56.80273 2023-08-08 14:34:56.802739 cidref 098272225 R rec 396f5ee3-eb51-4d85-9ec8-ecb32d47e8a8 -2023-08-08 14:34:56.902499 2023-08-08 14:34:56.902504 cidref 241963974 R rec f23d7806-3e56-44fe-8499-7c0f84293fbd -2023-08-08 14:36:35.612884 2023-08-08 14:36:35.612898 cidref 027793974 R rec d9a213e6-e932-48f7-9d2d-fcc984520412 -2023-08-08 14:36:35.794368 2023-08-08 14:36:35.794379 cidref 027794016 R rec d3de9aa0-6938-4e14-a8f8-cfdabb78514c -2023-08-08 14:36:35.912787 2023-08-08 14:36:35.912793 cidref 027794903 R rec 71d8d265-c917-496e-9d67-afa415d3ebbf -2023-08-08 14:36:36.01651 2023-08-08 14:36:36.016521 cidref 027794954 R rec 1a2c6162-ce90-486a-a187-79407712c2af -2023-08-08 14:36:36.148567 2023-08-08 14:36:36.148574 cidref 027794962 R rec 7be0f4cb-6092-49af-937d-67c577a22892 -2023-08-08 14:36:36.247537 2023-08-08 14:36:36.247542 cidref 027794970 R rec d51cab3c-3402-4bbc-9433-882ffc8725e3 -2023-08-08 14:36:36.316487 2023-08-08 14:36:36.316494 cidref 027795926 R rec 97674a84-34c2-4f53-bcb2-bde96ccb969c -2023-08-08 14:36:36.421935 2023-08-08 14:36:36.421945 cidref 027796817 R rec fd1c8618-f5f8-4474-883d-91d0a8cbd332 -2023-08-08 14:36:36.523495 2023-08-08 14:36:36.523505 cidref 027799433 R rec 020bf9a9-fa75-4fea-bc71-06d203fcc4ae -2023-08-08 14:36:36.634223 2023-08-08 14:36:36.634233 cidref 027804038 R rec 09bf1911-ebfc-42dd-bd15-875a04744e74 -2023-08-08 14:36:36.733977 2023-08-08 14:36:36.733989 cidref 027804186 R rec b775665f-e8f2-455d-80cd-ee3e36b045f0 -2023-08-08 14:36:36.859555 2023-08-08 14:36:36.85956 cidref 030860466 R rec 06f00fc5-8fa3-429d-a624-2de659f12cbd -2023-08-08 14:36:36.942587 2023-08-08 14:36:36.942596 cidref 031022219 R rec f477327a-5ef0-45bd-9501-aa8da9a7064b -2023-08-08 14:36:37.039223 2023-08-08 14:36:37.039229 cidref 031937667 R rec b98b4d1f-e5d2-4865-873f-4ca9c125944b -2023-08-08 14:36:37.16718 2023-08-08 14:36:37.167193 cidref 033070202 R rec 09fa9bc5-7bc3-4136-b7ea-6c0443794d3c -2023-08-08 14:36:37.249696 2023-08-08 14:36:37.2497 cidref 034577769 R rec 7d278631-1934-4a72-9c8b-3b6b8ca3e5cc -2023-08-08 14:36:37.311955 2023-08-08 14:36:37.311959 cidref 03483446X R rec 4974ccd2-aed1-4c51-aca4-cef932987328 -2023-08-08 14:36:37.380182 2023-08-08 14:36:37.380193 cidref 034853537 R rec 56165ddd-8151-41a4-9afb-d6f899f66f83 -2023-08-08 14:36:37.474304 2023-08-08 14:36:37.474314 cidref 03487156X R rec db8d6bb2-8ebb-4b75-94f3-117c616bab14 -2023-08-08 14:36:37.581522 2023-08-08 14:36:37.581528 cidref 034933697 R rec ea879123-ffc8-4981-8c45-d6ea94c8e630 -2023-08-08 14:36:37.693913 2023-08-08 14:36:37.693978 cidref 034934774 R rec e2ead26d-888c-414a-9627-e6dda081523b -2023-08-08 14:36:37.827252 2023-08-08 14:36:37.827265 cidref 034934936 R rec e29aba64-5c62-409d-8413-24f976c6654b -2023-08-08 14:36:37.93341 2023-08-08 14:36:37.933422 cidref 034935061 R rec c5414354-19e0-40e8-8490-83f2273b7503 -2023-08-08 14:36:38.037711 2023-08-08 14:36:38.037717 cidref 034935134 R rec a0f0022f-342d-44fc-a41e-df6a2a4147d3 -2023-08-08 14:36:38.156706 2023-08-08 14:36:38.156711 cidref 034935177 R rec b1bd4159-659e-42a4-911f-43a22c1815f8 -2023-08-08 14:36:38.271438 2023-08-08 14:36:38.271449 cidref 034935207 R rec 905b11a4-a57c-4547-bb02-e6bdf1a657ac -2023-08-08 14:36:38.328082 2023-08-08 14:36:38.328086 cidref 034935274 R rec 8c8030e0-9385-42bb-8059-b4564db69157 -2023-08-08 14:36:38.38758 2023-08-08 14:36:38.387586 cidref 034935290 R rec 1cf39e6e-f634-4c66-a5e4-aaba65228782 -2023-08-08 14:36:38.5026 2023-08-08 14:36:38.50261 cidref 034935304 R rec f3bcc4c5-3dba-4e27-a74c-999bee8bc73a -2023-08-08 14:36:38.60884 2023-08-08 14:36:38.608852 cidref 034935827 R rec 2aa7711c-1eeb-4dc3-99da-ba94a1c9c11b -2023-08-08 14:36:38.712651 2023-08-08 14:36:38.712656 cidref 034935835 R rec b3276933-966c-4c6e-994d-3bf17b33d73b -2023-08-08 14:36:38.808097 2023-08-08 14:36:38.808103 cidref 034935908 R rec a5d1eb4b-4345-414e-9f1f-5c0212eef780 -2023-08-08 14:36:38.907616 2023-08-08 14:36:38.907626 cidref 034936890 R rec cbda8652-82ec-45ba-ba83-fc44175180eb -2023-08-08 14:36:39.021685 2023-08-08 14:36:39.021691 cidref 034937072 R rec bf47cc82-eee1-422d-a9d5-cecdc5385e2e -2023-08-08 14:36:39.109576 2023-08-08 14:36:39.109581 cidref 034937099 R rec 0d0d8135-7eb1-46f8-addc-dda95a118ad4 -2023-08-08 14:36:39.207126 2023-08-08 14:36:39.207137 cidref 034937129 R rec dd0bbd4a-0e71-46ca-85f8-7655b99e9558 -2023-08-08 14:36:39.323939 2023-08-08 14:36:39.32395 cidref 035021128 R rec 7363f33b-2cdc-4145-be7d-a1744ff52b67 -2023-08-08 14:36:39.386907 2023-08-08 14:36:39.386912 cidref 035021179 R rec 864db971-841c-44eb-9315-0911e1bac34e -2023-08-08 14:36:39.442682 2023-08-08 14:36:39.442686 cidref 035077948 R rec b05461e5-628e-4165-b53e-6d2af2971567 -2023-08-08 14:36:39.507903 2023-08-08 14:36:39.507909 cidref 035077964 R rec eb5d813d-729c-4ffe-98c4-c783981b5076 -2023-08-08 14:36:39.617093 2023-08-08 14:36:39.617104 cidref 035078316 R rec f35d61f2-7ac1-443d-ab88-d1498a5eece0 -2023-08-08 14:36:39.716595 2023-08-08 14:36:39.716607 cidref 035087625 R rec 9501b2b0-1dde-4b18-aed5-e01cdac4be65 -2023-08-08 14:36:39.836864 2023-08-08 14:36:39.836875 cidref 03509446X R rec 7b48bfdc-2ba6-48c9-b823-7b3018af040d -2023-08-08 14:36:39.937081 2023-08-08 14:36:39.937091 cidref 035207191 R rec a6a542b3-a439-4bf3-8b55-67b2e757714e -2023-08-08 14:36:40.060287 2023-08-08 14:36:40.060294 cidref 03528076X R rec 5c0217bc-6953-4d95-90a9-cc81637cf867 -2023-08-08 14:36:40.157852 2023-08-08 14:36:40.157858 cidref 035383925 R rec 915d7477-0b1e-42e5-8684-50d2ca8babfd -2023-08-08 14:36:40.252559 2023-08-08 14:36:40.252569 cidref 035623683 R rec cc09ce48-53eb-46c6-af37-31ef9d14f58d -2023-08-08 14:36:40.372868 2023-08-08 14:36:40.372874 cidref 035623691 R rec 96d970fe-b145-470c-81ff-5b5558863fc1 -2023-08-08 14:36:40.436191 2023-08-08 14:36:40.436196 cidref 050323148 R rec 38c9b788-03f8-49bc-9184-e9f9fffcc5f6 -2023-08-08 14:36:40.502231 2023-08-08 14:36:40.502242 cidref 050323172 R rec d43dd8d6-e710-4274-b7b8-2522ce42fa20 -2023-08-08 14:36:40.610104 2023-08-08 14:36:40.610109 cidref 061617296 R rec c8d10c27-e59e-49d2-af5d-59ac1147dfea -2023-08-08 14:36:40.718297 2023-08-08 14:36:40.71831 cidref 077057384 R rec c3393fdb-f1ea-460f-8b6d-88df824e9d69 -2023-08-08 14:36:40.844318 2023-08-08 14:36:40.844323 cidref 101481241 R rec 1b3fb804-5c26-425b-a1ff-915331b91612 -2023-08-08 14:36:40.956285 2023-08-08 14:36:40.956292 cidref 101481330 R rec 5181758e-5127-41fe-b525-424c1a3eb400 -2023-08-08 14:36:41.05347 2023-08-08 14:36:41.053481 cidref 101481349 R rec 2aa7c940-85b3-43e2-a2ee-b25387d6a571 -2023-08-08 14:36:41.175708 2023-08-08 14:36:41.175719 cidref 101481438 R rec 1ecf2b92-fb7c-45c4-936f-0dba10ae91d4 -2023-08-08 14:36:41.289133 2023-08-08 14:36:41.289143 cidref 107841363 R rec 61f29ac2-2457-40d6-8b58-9800acf67e0f -2023-08-08 14:36:41.393905 2023-08-08 14:36:41.393915 cidref 108812987 R rec 9ecd5844-f64d-431e-be99-9d9844fec014 -2023-08-08 14:36:41.469575 2023-08-08 14:36:41.46958 cidref 109094883 R rec 5ecf25ad-12a3-48e3-846e-a817644fde56 -2023-08-08 14:36:41.521808 2023-08-08 14:36:41.521813 cidref 11353213X R rec a73f845f-2673-4cc4-801a-77b41b79b62a -2023-08-08 14:36:41.585675 2023-08-08 14:36:41.585686 cidref 11393260X R rec 3fb920b4-b90c-42ce-8611-ac2ce3f135e9 -2023-08-08 14:36:42.04023 2023-08-08 14:36:42.04024 cidref 12007432X R rec ba21535e-1b75-4844-a604-147c4db2984e -2023-08-08 14:36:42.174808 2023-08-08 14:36:42.174824 cidref 120593904 R rec 0a8d783d-7802-472c-8c2b-46cfe469330c -2023-08-08 14:36:42.277975 2023-08-08 14:36:42.277985 cidref 144664119 R rec e21c737c-9807-42e8-a6a0-91e0270c27fa -2023-08-08 14:36:42.379497 2023-08-08 14:36:42.379506 cidref 146322134 R rec 9a6344f3-53b4-4d81-aa75-d32b09bf8cd4 -2023-08-08 14:36:42.473968 2023-08-08 14:36:42.473972 cidref 148171095 R rec 15c728d5-ee99-4e0c-b89c-74e7deae803b -2023-08-08 14:36:42.526702 2023-08-08 14:36:42.526706 cidref 169177742 R rec 6206b21d-f40d-4809-bbc4-e504c1d462e0 -2023-08-08 14:36:42.578759 2023-08-08 14:36:42.578763 cidref 169177750 R rec 1baada6f-9073-479c-8acb-5deed5f10b55 -2023-08-08 14:36:42.643921 2023-08-08 14:36:42.643932 cidref 17089018X R rec 6d573203-aaaa-43b8-9aae-93d4ae8dd54b -2023-08-08 14:36:42.750367 2023-08-08 14:36:42.750378 cidref 180122312 R rec 4b0e5cb4-bbd1-459e-9495-cb3601e3cb9c -2023-08-08 14:36:42.860597 2023-08-08 14:36:42.860607 cidref 185676146 R rec 120a2199-58e1-4284-b808-70df2ca0f5f7 -2023-08-08 14:36:42.965382 2023-08-08 14:36:42.965394 cidref 196345359 R rec f28d79f9-2e01-4374-afe5-dd770e9f3baa -2023-08-08 14:36:43.958922 2023-08-08 14:36:43.958928 cidref 027809773 R rec 4fa1111e-edee-4671-b4dc-e88b3e1e580c +2024-09-11 09:08:08.522177 2024-09-11 09:08:08.522183 cidref 027225798 R rec 810e9002-1742-4b0a-87bd-75b7e1c80b88 +2024-09-11 09:08:08.621934 2024-09-11 09:08:08.62194 cidref 027242250 R rec 60a84960-702b-4ba8-957b-93b5e1cb99df +2024-09-11 09:08:08.679523 2024-09-11 09:08:08.679529 cidref 027246159 R rec eb6cd4c1-4f7e-42f8-b797-ceea2a4eea9a +2024-09-11 09:08:08.76591 2024-09-11 09:08:08.765916 cidref 027248062 R rec 4d0afd24-40ee-4748-915b-afe50eea19ff +2024-09-11 09:08:08.820925 2024-09-11 09:08:08.820931 cidref 027255468 R rec 84d3a370-d0ff-4966-9444-66353a954c89 +2024-09-11 09:08:08.874766 2024-09-11 09:08:08.874772 cidref 027256138 R rec 51a0d75b-10ac-41aa-9b3f-bb5a8e539140 +2024-09-11 09:08:08.931955 2024-09-11 09:08:08.93196 cidref 027257045 R rec d7de914c-032a-40da-b4a3-0c7b0a4343c1 +2024-09-11 09:08:08.988325 2024-09-11 09:08:08.988357 cidref 027268284 R rec 0d860896-aab6-4a7a-ac14-4609a6fa173c +2024-09-11 09:08:09.044651 2024-09-11 09:08:09.044656 cidref 027274144 R rec 3e895a26-ba8d-4303-8914-2a7ec63dd28f +2024-09-11 09:08:09.099021 2024-09-11 09:08:09.099026 cidref 02727991X R rec a834a3ec-67ae-4443-bcc9-d479f9467b0b +2024-09-11 09:08:09.154737 2024-09-11 09:08:09.154742 cidref 02728607X R rec 0bec4d65-531d-4158-abfa-cc21d18bfd5e +2024-09-11 09:08:09.209246 2024-09-11 09:08:09.209251 cidref 027292916 R rec f9814c24-73e7-4c3e-a57b-a03b00900b02 +2024-09-11 09:08:09.263393 2024-09-11 09:08:09.263398 cidref 027302148 R rec f6a12d33-26e4-4c74-b006-c2dca1f1bb69 +2024-09-11 09:08:09.317324 2024-09-11 09:08:09.317328 cidref 027308359 R rec 87364995-7741-4138-a114-eeb8832b6a7d +2024-09-11 09:08:09.369374 2024-09-11 09:08:09.369379 cidref 027317145 R rec 92e17658-0fd4-4ea4-80fc-2cf766b43f77 +2024-09-11 09:08:09.427262 2024-09-11 09:08:09.427268 cidref 027323552 R rec 0095a033-0a9d-4fc2-9c1f-5d0571c15d60 +2024-09-11 09:08:09.50092 2024-09-11 09:08:09.500926 cidref 027328589 R rec f052b519-cd0c-4ea5-bf8d-40e62de9f8b0 +2024-09-11 09:08:09.575715 2024-09-11 09:08:09.57572 cidref 027330176 R rec dc56847a-7a94-49a6-a6f3-c13dddbad68b +2024-09-11 09:08:09.629974 2024-09-11 09:08:09.62998 cidref 027333930 R rec a529643e-27e6-46e8-a060-895a3fa28ad8 +2024-09-11 09:08:09.683881 2024-09-11 09:08:09.683887 cidref 027336913 R rec 446330ef-3474-4a28-9898-862e2fcc7837 +2024-09-11 09:08:09.737918 2024-09-11 09:08:09.737922 cidref 027345203 R rec f09f3ae7-f31c-4a44-be2d-bb190c22d097 +2024-09-11 09:08:09.793675 2024-09-11 09:08:09.793681 cidref 027355152 R rec e3ae3f13-e316-4ab3-a751-8b55496f4bb5 +2024-09-11 09:08:09.851074 2024-09-11 09:08:09.851084 cidref 027355578 R rec dea10eff-91d7-4799-adf5-445ac931211f +2024-09-11 09:08:09.905069 2024-09-11 09:08:09.905074 cidref 027355985 R rec 62838c37-c360-4955-b7a7-2f53a22b38b8 +2024-09-11 09:08:09.96178 2024-09-11 09:08:09.961785 cidref 027356493 R rec 5c01afa4-a143-40e4-a561-a2d5674b0129 +2024-09-11 09:08:10.018535 2024-09-11 09:08:10.01854 cidref 027365697 R rec 341a81a9-733c-47a7-b76e-6a215b480685 +2024-09-11 09:08:10.083132 2024-09-11 09:08:10.083137 cidref 027368661 R rec 6f560c87-1ce1-4f6a-a8b7-2cc3ec931224 +2024-09-11 09:08:10.136426 2024-09-11 09:08:10.136431 cidref 027374351 R rec 79c83a73-ea02-479f-b44f-d6c538b85d18 +2024-09-11 09:08:10.188938 2024-09-11 09:08:10.188943 cidref 027376982 R rec 89785c82-a0da-4fb2-9daf-16b932334d04 +2024-09-11 09:08:10.247341 2024-09-11 09:08:10.247368 cidref 027391396 R rec 84f2f147-bae2-4626-8bfc-35564fbd2b49 +2024-09-11 09:08:10.299807 2024-09-11 09:08:10.299812 cidref 027396924 R rec 15d72b2d-e06d-498f-b69f-33ca5b5e2dd1 +2024-09-11 09:08:10.357969 2024-09-11 09:08:10.357974 cidref 02739770X R rec 54764dbb-cfdb-4c23-b96f-a537ba780c64 +2024-09-11 09:08:10.416788 2024-09-11 09:08:10.416793 cidref 027415252 R rec a100a928-919e-41dc-a928-130c1615e826 +2024-09-11 09:08:10.471901 2024-09-11 09:08:10.471906 cidref 02743141X R rec 5c136ad1-c490-4f99-8789-ecaf03c061d5 +2024-09-11 09:08:10.527488 2024-09-11 09:08:10.527494 cidref 027431444 R rec 335ba397-5818-4599-bcff-26047e3507c0 +2024-09-11 09:08:10.590363 2024-09-11 09:08:10.590368 cidref 027436683 R rec 13922ce5-5e78-4312-b8bc-0c4de227f321 +2024-09-11 09:08:10.654375 2024-09-11 09:08:10.65438 cidref 027455092 R rec cb71f092-ccf5-4410-9130-9d4c8348fe81 +2024-09-11 09:08:10.70621 2024-09-11 09:08:10.706215 cidref 027461599 R rec 89a74bf0-6c37-4a23-bbc5-e25a633eab66 +2024-09-11 09:08:10.76245 2024-09-11 09:08:10.762457 cidref 027478033 R rec d3c33984-fea1-4c1d-84b2-1574463bcb92 +2024-09-11 09:08:10.820848 2024-09-11 09:08:10.820853 cidref 027481352 R rec fdd4b4e3-8044-4a4b-a5ca-b87d2c5c92c3 +2024-09-11 09:08:10.877424 2024-09-11 09:08:10.877429 cidref 027486753 R rec a9c1af07-1e72-46ea-8919-5e6b052dbb8d +2024-09-11 09:08:10.93125 2024-09-11 09:08:10.931256 cidref 027493032 R rec bca1dda2-2eb2-4a2b-a205-81403f4b4953 +2024-09-11 09:08:10.984175 2024-09-11 09:08:10.984181 cidref 027495213 R rec 55503fd3-33dc-4601-9570-cf4289f30824 +2024-09-11 09:08:11.038379 2024-09-11 09:08:11.038385 cidref 027495922 R rec c20102a0-be7c-4f82-b0e7-eca4e6045c01 +2024-09-11 09:08:11.09268 2024-09-11 09:08:11.092686 cidref 02750333X R rec d3ba0521-53d5-413f-9d64-73c83096c368 +2024-09-11 09:08:11.155302 2024-09-11 09:08:11.155308 cidref 027506762 R rec b046fe3e-04ce-4803-83eb-22b5e2736ccd +2024-09-11 09:08:11.21047 2024-09-11 09:08:11.210475 cidref 027516652 R rec 5291dbe8-83aa-48a8-a966-bcf9fd9d6d7c +2024-09-11 09:08:11.264472 2024-09-11 09:08:11.264478 cidref 027519546 R rec ad5b2ff6-0e2c-4e4f-8291-10de99bf5ecb +2024-09-11 09:08:11.321649 2024-09-11 09:08:11.321656 cidref 027519686 R rec 5135c2dc-d5eb-434c-b5aa-0a11dfab2cee +2024-09-11 09:08:11.379417 2024-09-11 09:08:11.379424 cidref 027528820 R rec b9d9d03e-c68d-4479-9b2f-d082617cd8be +2024-09-11 09:08:11.439289 2024-09-11 09:08:11.439294 cidref 027532488 R rec 12def15f-8cca-4523-99a7-29e5fbf200c9 +2024-09-11 09:08:11.497266 2024-09-11 09:08:11.497271 cidref 027545822 R rec 1aaf6f10-2984-4fae-ac3b-e83ecf711c1a +2024-09-11 09:08:11.555144 2024-09-11 09:08:11.555149 cidref 027564878 R rec 26d0d3fa-3961-4477-8279-b59b5817a1df +2024-09-11 09:08:11.618729 2024-09-11 09:08:11.618734 cidref 027578747 R rec b4996adc-5ddd-4127-87a4-36dd9782280e +2024-09-11 09:08:11.686347 2024-09-11 09:08:11.686352 cidref 02758254X R rec b2c8587f-9203-4394-8332-af02f8cf29b2 +2024-09-11 09:08:11.741844 2024-09-11 09:08:11.74185 cidref 027613275 R rec 9e254f99-091a-4aba-8875-e6f00a0b8775 +2024-09-11 09:08:11.802985 2024-09-11 09:08:11.80299 cidref 027616908 R rec 574f0320-058b-4000-b48e-394f23513e51 +2024-09-11 09:08:11.860119 2024-09-11 09:08:11.860124 cidref 027636461 R rec efdcd36c-e20b-4b5a-87f3-10e62b1c7b86 +2024-09-11 09:08:11.913684 2024-09-11 09:08:11.913689 cidref 027674118 R rec 6e566d03-0b1b-4058-8d51-87c31a5468f0 +2024-09-11 09:08:11.968784 2024-09-11 09:08:11.968789 cidref 027674150 R rec 77fb8607-6034-405d-aaee-fabdbd512560 +2024-09-11 09:08:12.031707 2024-09-11 09:08:12.031714 cidref 027682226 R rec 3e8909fa-12b5-45eb-9f7e-07de57ae27f1 +2024-09-11 09:08:12.086981 2024-09-11 09:08:12.086987 cidref 027688836 R rec 3dcae516-65d6-4c01-940a-aeefb62a67fc +2024-09-11 09:08:12.143453 2024-09-11 09:08:12.143459 cidref 027694852 R rec 3a4c52e3-f06a-406a-b3c4-e45924ee27cf +2024-09-11 09:08:12.198561 2024-09-11 09:08:12.198567 cidref 027710025 R rec e38f2858-bc5a-4da1-a66b-25efd83960b6 +2024-09-11 09:08:12.262187 2024-09-11 09:08:12.262194 cidref 027727327 R rec c26bbc12-1bbc-44ab-ade5-f4ec10c02d7e +2024-09-11 09:08:12.318494 2024-09-11 09:08:12.318501 cidref 027727521 R rec b505d1fc-2d18-4d8b-85b9-54c51424c49a +2024-09-11 09:08:12.374204 2024-09-11 09:08:12.37421 cidref 027729044 R rec 8fb05580-09ce-4990-ba10-229bb601f349 +2024-09-11 09:08:12.464704 2024-09-11 09:08:12.46471 cidref 027735893 R rec e6797803-1a32-4827-a356-b9f545fff968 +2024-09-11 09:08:12.529963 2024-09-11 09:08:12.529969 cidref 027756580 R rec 0bf40bee-62b4-4162-8595-99a861c6ee70 +2024-09-11 09:08:12.591115 2024-09-11 09:08:12.59112 cidref 027756653 R rec 611dc29b-4064-49eb-a6f4-58dbc0c0858d +2024-09-11 09:08:12.648131 2024-09-11 09:08:12.648137 cidref 027759547 R rec 66fe6f05-ace9-4a78-b877-fb753215edce +2024-09-11 09:08:12.702034 2024-09-11 09:08:12.70204 cidref 027789551 R rec afcf9cc6-fe33-406f-a74b-3acd03aa9807 +2024-09-11 09:08:12.756125 2024-09-11 09:08:12.75613 cidref 027793575 R rec 1cb5dfc0-30e2-4d5e-ad51-6acf14445a9f +2024-09-11 09:08:12.811299 2024-09-11 09:08:12.811304 cidref 027808394 R rec bac8ba1d-1485-46f4-9011-727b06259475 +2024-09-11 09:08:12.866842 2024-09-11 09:08:12.866847 cidref 027808629 R rec 73a09f9d-83a2-4164-9b20-bb686da030d9 +2024-09-11 09:08:12.919589 2024-09-11 09:08:12.919596 cidref 027826171 R rec 615bf971-927f-4c83-92aa-2afa4d913805 +2024-09-11 09:08:12.976614 2024-09-11 09:08:12.97662 cidref 027845214 R rec d242aa9f-355d-4084-8732-7779f4ab88ea +2024-09-11 09:08:13.039534 2024-09-11 09:08:13.03954 cidref 02785082X R rec a358af4b-d3d1-4233-9aaf-f0cec5d77e62 +2024-09-11 09:08:13.098355 2024-09-11 09:08:13.09836 cidref 027856097 R rec c3eb88b1-877c-4613-86ba-fe0017a30740 +2024-09-11 09:08:13.155715 2024-09-11 09:08:13.155721 cidref 02785714X R rec de5212cd-59c1-43f7-b1ef-72ec95baafa2 +2024-09-11 09:08:13.220766 2024-09-11 09:08:13.220772 cidref 027867277 R rec f20db0c4-aa92-4bcb-bacd-9dbaab12c8ba +2024-09-11 09:08:13.274571 2024-09-11 09:08:13.274576 cidref 02786765X R rec 50b5deea-32d8-4bdf-9dcf-f77f59e558e2 +2024-09-11 09:08:13.328836 2024-09-11 09:08:13.328841 cidref 027868338 R rec d3f5ee25-28e3-404a-a944-48efc92900e1 +2024-09-11 09:08:13.38229 2024-09-11 09:08:13.382295 cidref 027870510 R rec 03d32e6c-a300-4b6e-b403-aeb6e307a8be +2024-09-11 09:08:13.449764 2024-09-11 09:08:13.44977 cidref 027873196 R rec cf6afad1-8949-4bf0-a78b-7a38e09facab +2024-09-11 09:08:13.51099 2024-09-11 09:08:13.510994 cidref 02787608X R rec 18d08443-e9e4-4126-b31d-3eec6894f3b9 +2024-09-11 09:08:13.565663 2024-09-11 09:08:13.565669 cidref 027883094 R rec 37e489b7-8c9f-44a9-bf05-c625a87b29af +2024-09-11 09:08:13.622212 2024-09-11 09:08:13.622218 cidref 02788547X R rec 5471d640-5f3b-4c6a-8fe8-5a3effd8efb5 +2024-09-11 09:08:13.685567 2024-09-11 09:08:13.685575 cidref 027885496 R rec 5737c9c0-f88a-4d0b-afdc-69378960bb26 +2024-09-11 09:08:13.742881 2024-09-11 09:08:13.742887 cidref 027887960 R rec 24f7b133-8ca5-4451-8324-c06a3c5fea0b +2024-09-11 09:08:13.802943 2024-09-11 09:08:13.802948 cidref 027908380 R rec 37476227-32be-423f-8147-24a0cc84ac0b +2024-09-11 09:08:13.863363 2024-09-11 09:08:13.86337 cidref 027910210 R rec aa72e2c1-6dfa-460b-a633-a1cf51c41e2c +2024-09-11 09:08:13.921151 2024-09-11 09:08:13.921156 cidref 027915115 R rec 790b974b-decc-45f0-ab5b-080fed24df9f +2024-09-11 09:08:13.980817 2024-09-11 09:08:13.980823 cidref 027920216 R rec 51622b99-a039-4e58-b9c7-fcfa26f8cf83 +2024-09-11 09:08:14.032756 2024-09-11 09:08:14.032761 cidref 027940373 R rec fc04609d-d0bc-4f50-bef0-8a92a9d39b6e +2024-09-11 09:08:14.090639 2024-09-11 09:08:14.090645 cidref 027944492 R rec 999ae369-28b7-49dc-9393-0427ecc2b9f9 +2024-09-11 09:08:14.14856 2024-09-11 09:08:14.148564 cidref 027950808 R rec 6ed1d14c-6fbb-4d81-ab23-f9a79c72ddb8 +2024-09-11 09:08:14.204944 2024-09-11 09:08:14.20495 cidref 027963675 R rec cc015bfc-d8a1-4870-9447-b6629e06c607 +2024-09-11 09:08:14.265823 2024-09-11 09:08:14.265829 cidref 028060563 R rec 3ee5323b-23f7-47f8-a921-b2e0a2ecbdc1 +2024-09-11 09:08:14.336861 2024-09-11 09:08:14.336866 cidref 028071867 R rec 6d2aa446-4ae9-4eea-bf27-36378c69f605 +2024-09-11 09:08:14.395231 2024-09-11 09:08:14.395236 cidref 028071964 R rec 5b6a7932-8a0b-41cc-b9b3-1c43b5b4c101 +2024-09-11 09:08:14.451861 2024-09-11 09:08:14.451866 cidref 02807842X R rec 3a9be10c-2889-4658-a54f-d63753954fba +2024-09-11 09:08:14.505385 2024-09-11 09:08:14.505389 cidref 02810160X R rec 194d2e16-4eb4-427d-9154-26cc14e1db93 +2024-09-11 09:08:14.563153 2024-09-11 09:08:14.563158 cidref 028140362 R rec 858ae35b-b99e-416d-aff7-d86179330542 +2024-09-11 09:08:14.627762 2024-09-11 09:08:14.627767 cidref 028148800 R rec 7e415503-05ae-410b-bb4c-bc4ce98eb979 +2024-09-11 09:08:14.694167 2024-09-11 09:08:14.694172 cidref 028211162 R rec f8b327df-3738-4813-98f8-83dc1862321a +2024-09-11 09:08:14.752357 2024-09-11 09:08:14.752365 cidref 028225090 R rec 5e76579e-2093-440b-97ab-6c8a3de7b583 +2024-09-11 09:08:14.814256 2024-09-11 09:08:14.814261 cidref 028225767 R rec 2ca73e00-f239-45b6-8a87-22fb7461ec33 +2024-09-11 09:08:14.869353 2024-09-11 09:08:14.869358 cidref 028233506 R rec dfdb200f-f294-44b3-9a4a-d74b6844e442 +2024-09-11 09:08:14.923738 2024-09-11 09:08:14.923743 cidref 028262220 R rec 74e39873-8b85-4fd7-8726-e6e227bd815c +2024-09-11 09:08:14.97887 2024-09-11 09:08:14.978876 cidref 028287169 R rec e416d868-eb74-4b80-a44f-b9faf58cf6dc +2024-09-11 09:08:15.038049 2024-09-11 09:08:15.038054 cidref 028359380 R rec 26e4edcc-e409-4802-9107-dba66e7d3f3c +2024-09-11 09:08:15.094518 2024-09-11 09:08:15.094522 cidref 028431855 R rec 2bc37703-2b51-4fc0-a545-019d72221d95 +2024-09-11 09:08:15.154591 2024-09-11 09:08:15.154597 cidref 028433890 R rec 152d95e9-4ce8-42a8-af8d-73a419168375 +2024-09-11 09:08:15.219294 2024-09-11 09:08:15.2193 cidref 028497244 R rec ab2e2316-2258-4824-be65-d33676cf2a8e +2024-09-11 09:08:15.287101 2024-09-11 09:08:15.287107 cidref 028517180 R rec 9faf8417-7566-442e-9e23-fa30433381ec +2024-09-11 09:08:15.341504 2024-09-11 09:08:15.34151 cidref 02852019X R rec 97cbc96b-f6cd-4e48-a6f5-655894d548c8 +2024-09-11 09:08:15.399546 2024-09-11 09:08:15.399551 cidref 028549082 R rec e01113b5-9cd2-44c3-adea-3f0da16c9056 +2024-09-11 09:08:15.454991 2024-09-11 09:08:15.454997 cidref 028631609 R rec 281e2209-13d4-454a-98f0-162f4692e619 +2024-09-11 09:08:15.513765 2024-09-11 09:08:15.513772 cidref 028637720 R rec e06f3d1d-3ec2-4edc-95b9-e8a9b7457ed2 +2024-09-11 09:08:15.581149 2024-09-11 09:08:15.581154 cidref 028675274 R rec fe95a6f7-4113-43b6-9c5f-3d51eb3928d5 +2024-09-11 09:08:15.636705 2024-09-11 09:08:15.636709 cidref 028676661 R rec 762f8dc8-aae2-42cc-86d8-92bf2498eb43 +2024-09-11 09:08:15.693184 2024-09-11 09:08:15.69319 cidref 02868589X R rec 358db609-1fed-4260-96f7-b5a738df5578 +2024-09-11 09:08:15.746614 2024-09-11 09:08:15.74662 cidref 028698703 R rec 08e0c8b3-a5a7-4a23-b794-99a4df9e1c86 +2024-09-11 09:08:15.804353 2024-09-11 09:08:15.804358 cidref 028700139 R rec fef0d967-4137-426d-aa24-84d0b3df02f7 +2024-09-11 09:08:15.863553 2024-09-11 09:08:15.863559 cidref 028700171 R rec 07385cb1-7f23-42cf-bf25-84445cb66726 +2024-09-11 09:08:15.922424 2024-09-11 09:08:15.92243 cidref 028725387 R rec fa85a2de-d864-4a96-8ceb-63adc64a966b +2024-09-11 09:08:15.977857 2024-09-11 09:08:15.977863 cidref 028898338 R rec 2b2fd728-7996-48cd-b9c1-41a925549815 +2024-09-11 09:08:16.037555 2024-09-11 09:08:16.03756 cidref 028909917 R rec d2479556-c4af-4347-a3aa-519349bd1244 +2024-09-11 09:08:16.10831 2024-09-11 09:08:16.108317 cidref 028910737 R rec ece776c8-82ad-4f39-a327-f7168eddeef4 +2024-09-11 09:08:16.170672 2024-09-11 09:08:16.170677 cidref 028912098 R rec 725c2214-8438-481d-820b-ff5ece48edc9 +2024-09-11 09:08:16.238324 2024-09-11 09:08:16.23833 cidref 028929098 R rec 2ce28c5e-fc88-4ea1-870a-60580d1debd3 +2024-09-11 09:08:16.29575 2024-09-11 09:08:16.295756 cidref 028973631 R rec ee4bf341-5f84-40f0-b617-4c6015d89c11 +2024-09-11 09:08:16.352911 2024-09-11 09:08:16.352918 cidref 02900294X R rec dfc7e366-f65e-4589-89ad-191cf03a623d +2024-09-11 09:08:16.407307 2024-09-11 09:08:16.407313 cidref 02904197X R rec 7d7e0f4b-5893-4e23-abd4-b77000ded0db +2024-09-11 09:08:16.478687 2024-09-11 09:08:16.478693 cidref 029042046 R rec b256964e-93bb-4793-9e85-f4e65012a9da +2024-09-11 09:08:16.535323 2024-09-11 09:08:16.535329 cidref 029042186 R rec 392a2a99-5283-44ae-a5e5-be697c88f227 +2024-09-11 09:08:16.591944 2024-09-11 09:08:16.591949 cidref 02905026X R rec 932fa7d0-2d7f-423a-8c34-e94cd2bf9390 +2024-09-11 09:08:16.653788 2024-09-11 09:08:16.653794 cidref 029182387 R rec a018f39e-5868-4549-ba5a-18204ba8b4ac +2024-09-11 09:08:16.707498 2024-09-11 09:08:16.707504 cidref 029205794 R rec c6f1b723-60b4-43ef-9447-09a293c539d6 +2024-09-11 09:08:16.767382 2024-09-11 09:08:16.767387 cidref 029342147 R rec 5e488674-d885-4eb3-8d3f-8cd3cc0ee4b1 +2024-09-11 09:08:16.828529 2024-09-11 09:08:16.828535 cidref 029344212 R rec 67232783-47e3-457a-8f91-5cf25a4ef070 +2024-09-11 09:08:16.887194 2024-09-11 09:08:16.8872 cidref 029347254 R rec 7d95c0af-6fd4-43ca-ad3e-3fd5fb0790ac +2024-09-11 09:08:16.942038 2024-09-11 09:08:16.942043 cidref 029349230 R rec abcd4d4d-8c07-4617-baf3-456ce9490d21 +2024-09-11 09:08:16.997986 2024-09-11 09:08:16.997992 cidref 029404614 R rec 6e02e43c-31af-4b0d-8027-cf9afb0845f3 +2024-09-11 09:08:17.059551 2024-09-11 09:08:17.059557 cidref 029410312 R rec 00149072-c65d-49b0-bce0-1dbc5a6c69d0 +2024-09-11 09:08:17.118524 2024-09-11 09:08:17.11853 cidref 029575168 R rec ccc4e224-baf3-4cf6-b90f-e90eef3f0c9d +2024-09-11 09:08:17.177449 2024-09-11 09:08:17.177454 cidref 029652308 R rec 1877757b-7530-4097-a37c-5c573895eccf +2024-09-11 09:08:17.234802 2024-09-11 09:08:17.234807 cidref 029726190 R rec 65998d93-76ab-4993-8414-cb5e65c380bf +2024-09-11 09:08:17.291588 2024-09-11 09:08:17.291594 cidref 029753090 R rec 78710d13-470c-4fe7-8fd1-3d46e62223be +2024-09-11 09:08:17.352288 2024-09-11 09:08:17.352293 cidref 029755999 R rec 42068420-c563-43f2-969b-34b43f6eae6b +2024-09-11 09:08:17.409097 2024-09-11 09:08:17.409103 cidref 029795826 R rec 34f0e7fe-4ce1-40a2-ac16-f88795a8fddc +2024-09-11 09:08:17.464004 2024-09-11 09:08:17.46401 cidref 029888026 R rec 598d0117-bee3-4f35-99e5-0d7d6b030574 +2024-09-11 09:08:17.526897 2024-09-11 09:08:17.526902 cidref 029918006 R rec 3c78ae02-729b-42f6-ab98-b208fab0a606 +2024-09-11 09:08:17.589583 2024-09-11 09:08:17.589589 cidref 029933730 R rec 3f8e9702-310d-4a13-9b53-fed45c902b51 +2024-09-11 09:08:17.641781 2024-09-11 09:08:17.641787 cidref 029958857 R rec 1f105c7f-8928-4ad5-99bc-b258aeed4d62 +2024-09-11 09:08:17.700106 2024-09-11 09:08:17.700111 cidref 03001235X R rec 46bf71b6-d21b-4a8b-aa63-d544b2519c53 +2024-09-11 09:08:17.757499 2024-09-11 09:08:17.757505 cidref 030017653 R rec e51fda62-f5f2-4740-8844-82294804a6c8 +2024-09-11 09:08:17.819894 2024-09-11 09:08:17.819899 cidref 030055849 R rec 8fa1cdcb-ee33-4b23-85e3-b6ec947a419e +2024-09-11 09:08:17.882337 2024-09-11 09:08:17.882342 cidref 030086469 R rec 9cb4d633-e20b-4844-9ed7-c74679e964b0 +2024-09-11 09:08:17.941524 2024-09-11 09:08:17.94153 cidref 030128145 R rec e3e05b3e-1670-4620-aad6-1fb2a2be3b51 +2024-09-11 09:08:17.998732 2024-09-11 09:08:17.998737 cidref 03018729X R rec 45b8b51b-0cb8-4fdb-b022-663f31a5b60f +2024-09-11 09:08:18.06346 2024-09-11 09:08:18.063466 cidref 030219884 R rec 3cb49ae4-0627-4d86-8f52-16f0a104d883 +2024-09-11 09:08:18.120144 2024-09-11 09:08:18.12015 cidref 030336880 R rec 71fcfd3c-e176-4003-a266-b8af799321fd +2024-09-11 09:08:18.183662 2024-09-11 09:08:18.183668 cidref 030423724 R rec 870c9314-769d-47ad-87c1-1d28051bf1ca +2024-09-11 09:08:18.246414 2024-09-11 09:08:18.24642 cidref 030435056 R rec 39e0bee7-b5a8-4aa8-b4bc-3ca7df2a4101 +2024-09-11 09:08:18.310328 2024-09-11 09:08:18.310334 cidref 030642841 R rec 23b75931-0d23-4d02-a46a-c9170ee5c186 +2024-09-11 09:08:18.377861 2024-09-11 09:08:18.377866 cidref 030768381 R rec ab83dda2-e971-4216-88eb-7a5ae6edbf92 +2024-09-11 09:08:18.447535 2024-09-11 09:08:18.447541 cidref 03082401X R rec 5efe4203-81a1-486f-b3b1-15d35666ba7c +2024-09-11 09:08:18.509328 2024-09-11 09:08:18.509334 cidref 030904218 R rec b73811d6-ea2b-47d9-9eb3-d44658a387f2 +2024-09-11 09:08:18.567153 2024-09-11 09:08:18.567159 cidref 030909120 R rec c08b3888-4f76-4c4f-8b37-1692b60fc3ba +2024-09-11 09:08:18.636993 2024-09-11 09:08:18.636999 cidref 030924987 R rec 2ae534f0-6e6b-4d06-b51e-a3eb25264d6b +2024-09-11 09:08:18.709472 2024-09-11 09:08:18.709477 cidref 030975689 R rec 12110415-9b0e-49a8-af4d-59b63f140e3e +2024-09-11 09:08:18.772632 2024-09-11 09:08:18.772637 cidref 031018866 R rec b8441a0e-5949-4598-96d0-48c58b4fd6b5 +2024-09-11 09:08:18.838684 2024-09-11 09:08:18.838692 cidref 031067956 R rec b7a174d2-67c3-4f84-b4bd-504cdb3f4bee +2024-09-11 09:08:18.909454 2024-09-11 09:08:18.90946 cidref 031208495 R rec fe63feb5-3597-484e-b1e7-133995b781a8 +2024-09-11 09:08:18.975964 2024-09-11 09:08:18.97597 cidref 031380107 R rec eae1924a-b2dd-4eef-becb-0a2a93dbcc07 +2024-09-11 09:08:19.039646 2024-09-11 09:08:19.039651 cidref 031531121 R rec 82b34d6f-7fd0-43ef-9242-00cb13bb0ef0 +2024-09-11 09:08:19.100973 2024-09-11 09:08:19.100978 cidref 03166010X R rec a2b8fe77-adaf-45b6-9576-f53fd73c7ac8 +2024-09-11 09:08:19.168305 2024-09-11 09:08:19.168313 cidref 031819877 R rec 2b2dfe7a-32f6-4b17-a057-c5fe0ed28dbd +2024-09-11 09:08:19.23636 2024-09-11 09:08:19.236365 cidref 032027524 R rec 9d71f5e5-0601-41e0-b001-4e158571dcdb +2024-09-11 09:08:19.296486 2024-09-11 09:08:19.296491 cidref 032184034 R rec 88e52a0f-f26e-4268-a8e3-4ce901a6307d +2024-09-11 09:08:19.353443 2024-09-11 09:08:19.353448 cidref 032317468 R rec a6465671-2e21-4fa1-ba4d-dcfaeb4cab1e +2024-09-11 09:08:19.410592 2024-09-11 09:08:19.410598 cidref 032324650 R rec 31eb79ee-bd17-4cfc-b5ee-2f60b0f165f7 +2024-09-11 09:08:19.467432 2024-09-11 09:08:19.467437 cidref 032324804 R rec 34966bb5-67f4-45b9-8586-cce9ba836539 +2024-09-11 09:08:19.529155 2024-09-11 09:08:19.52916 cidref 032370474 R rec e5d5855d-de1d-4268-91c7-1a168e3fe08e +2024-09-11 09:08:19.589949 2024-09-11 09:08:19.589954 cidref 03243782X R rec d9d36433-8886-458c-8c47-7abc37657744 +2024-09-11 09:08:19.657963 2024-09-11 09:08:19.657969 cidref 032493940 R rec c946a7fc-41c0-4c4d-82b5-a54397d1a470 +2024-09-11 09:08:19.729978 2024-09-11 09:08:19.729984 cidref 032506929 R rec 302b1714-3388-4d09-93ed-2d4f6adf907f +2024-09-11 09:08:19.790754 2024-09-11 09:08:19.790759 cidref 03256953X R rec b7c04b2a-7636-44db-9b74-590c778b2b4d +2024-09-11 09:08:19.853696 2024-09-11 09:08:19.853701 cidref 032675011 R rec 7e6c14e8-eeab-423a-ae2e-d381a7db830b +2024-09-11 09:08:19.911856 2024-09-11 09:08:19.911862 cidref 032709501 R rec b311ff2d-d545-402b-ad1c-77ecd9b082eb +2024-09-11 09:08:19.974728 2024-09-11 09:08:19.974734 cidref 032916078 R rec 3d4f5d8f-8256-4ec9-a951-20335f8eda10 +2024-09-11 09:08:20.03467 2024-09-11 09:08:20.034676 cidref 032978294 R rec 8ddb7827-e74d-4901-8602-6b52eda87ea8 +2024-09-11 09:08:20.095538 2024-09-11 09:08:20.095543 cidref 033125341 R rec 92e2e6c2-4bf4-4df3-9888-d03359658190 +2024-09-11 09:08:20.161181 2024-09-11 09:08:20.161187 cidref 033136831 R rec 9905daa1-2a72-4e58-9de7-62ec9846419d +2024-09-11 09:08:20.218609 2024-09-11 09:08:20.218615 cidref 033422605 R rec c436e666-4c83-4a3d-9562-0c2970847201 +2024-09-11 09:08:20.277509 2024-09-11 09:08:20.277515 cidref 033433763 R rec f7ee9932-72e1-4c79-b36d-244ce22e1b27 +2024-09-11 09:08:20.342512 2024-09-11 09:08:20.342518 cidref 033642036 R rec 72316052-0e38-43ae-be53-9460253d7671 +2024-09-11 09:08:20.405956 2024-09-11 09:08:20.405961 cidref 033738653 R rec a93d3a70-3240-4a23-a0c2-aea41c02fab7 +2024-09-11 09:08:20.467716 2024-09-11 09:08:20.467723 cidref 03374033X R rec 50b9b27b-d76d-471b-9975-cf5490f88401 +2024-09-11 09:08:20.529055 2024-09-11 09:08:20.529061 cidref 033869235 R rec fe8ad560-b101-4c47-b900-4960bfa97a83 +2024-09-11 09:08:20.595579 2024-09-11 09:08:20.595585 cidref 033895732 R rec 9b82b289-4eab-4db1-a58b-42f6a7f84d2b +2024-09-11 09:08:20.670179 2024-09-11 09:08:20.670185 cidref 034054693 R rec 6bda11a0-796c-457e-ab65-7e82ac217726 +2024-09-11 09:08:20.72892 2024-09-11 09:08:20.728925 cidref 03405491X R rec 36354466-08c9-4919-ab39-93b3ac5b08ac +2024-09-11 09:08:20.782905 2024-09-11 09:08:20.782912 cidref 034133704 R rec fccb020a-9adb-40c3-bc9f-44520b068d88 +2024-09-11 09:08:20.841261 2024-09-11 09:08:20.841267 cidref 034195688 R rec 84e8d8ff-d4aa-46a1-8431-1d421438430e +2024-09-11 09:08:20.901872 2024-09-11 09:08:20.901879 cidref 034254145 R rec 59822ef0-b1e8-415e-939f-1c3a80418a2e +2024-09-11 09:08:20.958256 2024-09-11 09:08:20.958262 cidref 034259910 R rec 4420688a-e8e7-47ef-949b-ff6fbe50bad5 +2024-09-11 09:08:21.024941 2024-09-11 09:08:21.024947 cidref 034308695 R rec 4ee5c8b7-91cc-4037-8fe6-07df86d73182 +2024-09-11 09:08:21.086553 2024-09-11 09:08:21.086559 cidref 034342230 R rec 2edd3f08-d064-4a8d-b02f-d91cdee4498f +2024-09-11 09:08:21.142101 2024-09-11 09:08:21.142107 cidref 034566228 R rec 0b481f15-dde6-40c9-a261-cb32d8890930 +2024-09-11 09:08:21.197353 2024-09-11 09:08:21.197358 cidref 034591966 R rec 8606318f-c419-4476-98d5-8a57b60370a5 +2024-09-11 09:08:21.255948 2024-09-11 09:08:21.255954 cidref 034623574 R rec 048c9445-06fd-4370-9100-5972bc75c687 +2024-09-11 09:08:21.313452 2024-09-11 09:08:21.313458 cidref 034679391 R rec eda8242c-2685-4f11-8245-266ae804b91f +2024-09-11 09:08:21.37368 2024-09-11 09:08:21.373685 cidref 034705384 R rec 6f4fe56a-f46d-4982-9057-73eb16e22b95 +2024-09-11 09:08:21.433913 2024-09-11 09:08:21.433918 cidref 03472690X R rec de3878de-47b1-4b77-96a7-15f3401cd2a2 +2024-09-11 09:08:21.493644 2024-09-11 09:08:21.49365 cidref 034766995 R rec 8f479e5c-48ff-4c3a-b8b8-d9af56a9eb78 +2024-09-11 09:08:21.550455 2024-09-11 09:08:21.550461 cidref 034781897 R rec 088e4f25-c191-4b26-a514-dae54b0ddbd9 +2024-09-11 09:08:21.615121 2024-09-11 09:08:21.615127 cidref 034857923 R rec 7ff07024-94f7-4573-b1f5-fc242192d7ab +2024-09-11 09:08:21.68495 2024-09-11 09:08:21.684955 cidref 034885420 R rec abe820f0-62e3-42c0-8e05-f2494ec4a068 +2024-09-11 09:08:21.741828 2024-09-11 09:08:21.741833 cidref 034892710 R rec c2320b15-4f84-4957-8419-c80665482047 +2024-09-11 09:08:21.802445 2024-09-11 09:08:21.802453 cidref 034960848 R rec 547d2152-e898-4adb-92a6-55d9896802bc +2024-09-11 09:08:21.861818 2024-09-11 09:08:21.861823 cidref 035061308 R rec cbc31745-7220-452d-a3be-0effdf352f48 +2024-09-11 09:08:21.92231 2024-09-11 09:08:21.922315 cidref 035095679 R rec e0e70de5-f278-4439-848f-a30cc5ae3ef7 +2024-09-11 09:08:21.98556 2024-09-11 09:08:21.985565 cidref 035167734 R rec 90d6ba54-ac4a-4252-bbe0-43ac7ceb83d8 +2024-09-11 09:08:22.050448 2024-09-11 09:08:22.050454 cidref 035198222 R rec 1ca98b06-e86f-4ba6-929e-eef422d8d7ee +2024-09-11 09:08:22.114565 2024-09-11 09:08:22.11457 cidref 035260521 R rec 99ead225-320a-4c9b-b21e-d64baeefe81c +2024-09-11 09:08:22.17672 2024-09-11 09:08:22.176726 cidref 035461152 R rec 93df05e3-0253-4633-9639-0b0a95f967c7 +2024-09-11 09:08:22.237023 2024-09-11 09:08:22.23703 cidref 035486686 R rec 8d2d7c54-8474-4911-9c2a-436042244255 +2024-09-11 09:08:22.296567 2024-09-11 09:08:22.296573 cidref 035527250 R rec 3548849a-4028-448e-a68a-097675f7b6cd +2024-09-11 09:08:22.355063 2024-09-11 09:08:22.355069 cidref 035621664 R rec 8f542fe9-f3c4-412b-ad25-184c4b4d223c +2024-09-11 09:08:22.414291 2024-09-11 09:08:22.414297 cidref 035634847 R rec afc394fc-87df-4886-ad22-ecefebb23c4e +2024-09-11 09:08:22.4791 2024-09-11 09:08:22.479106 cidref 035650532 R rec 45d492eb-8b8c-427e-b2ca-0b3f64705a9f +2024-09-11 09:08:22.536613 2024-09-11 09:08:22.536618 cidref 035658622 R rec 4e7af043-e082-4599-885f-bd1b36546e47 +2024-09-11 09:08:22.598433 2024-09-11 09:08:22.598438 cidref 035724099 R rec 866cf862-743a-4bfe-8970-49deb6dc06b6 +2024-09-11 09:08:22.662232 2024-09-11 09:08:22.662239 cidref 050124315 R rec 215bf8cb-1e57-447e-bdc2-a368f6c6771a +2024-09-11 09:08:22.733343 2024-09-11 09:08:22.733348 cidref 050186647 R rec 8d6e8b54-7acb-4746-bf80-fc82e176b8a9 +2024-09-11 09:08:22.792289 2024-09-11 09:08:22.792296 cidref 050220284 R rec 478a5e19-2532-4a6b-8152-231442f8b70f +2024-09-11 09:08:22.855423 2024-09-11 09:08:22.855429 cidref 050366157 R rec 64394546-9b50-4556-81cd-6f2b34060fd0 +2024-09-11 09:08:22.917702 2024-09-11 09:08:22.917708 cidref 05041870X R rec c71780b0-4ecb-46a4-935b-35c912efe73f +2024-09-11 09:08:22.974928 2024-09-11 09:08:22.974934 cidref 050516760 R rec ccf0636a-b9fd-4ff3-9b7b-71f789c4143c +2024-09-11 09:08:23.036464 2024-09-11 09:08:23.03647 cidref 050518526 R rec 051cc6dc-096d-4e9f-9b72-9bbdc8612aa5 +2024-09-11 09:08:23.101526 2024-09-11 09:08:23.101535 cidref 050534882 R rec 505930e6-8458-4c86-bca0-9b95152e7b1b +2024-09-11 09:08:23.160917 2024-09-11 09:08:23.160922 cidref 05056479X R rec c25f348e-4327-43c9-98fe-4f2a3dd13e49 +2024-09-11 09:08:23.217489 2024-09-11 09:08:23.217495 cidref 050582453 R rec 5a9ff282-db54-4b2d-bacc-8bf81106595b +2024-09-11 09:08:23.278672 2024-09-11 09:08:23.278677 cidref 050602195 R rec 3e577a8b-e446-4f38-a340-15484a464d56 +2024-09-11 09:08:23.335489 2024-09-11 09:08:23.335496 cidref 050627953 R rec aca9caa9-bbe5-4246-8a5b-228313b57278 +2024-09-11 09:08:23.396046 2024-09-11 09:08:23.396051 cidref 050702858 R rec 453c26e0-9a32-43c4-bd06-45aaf68203c0 +2024-09-11 09:08:23.453691 2024-09-11 09:08:23.453697 cidref 050764861 R rec 1a66d9c6-dc92-4a1b-8be8-82bf01e67c8d +2024-09-11 09:08:23.513633 2024-09-11 09:08:23.513639 cidref 050773313 R rec 5d5d5404-d693-411b-bb30-f66f3f647b60 +2024-09-11 09:08:23.575944 2024-09-11 09:08:23.57595 cidref 050784005 R rec a8af5784-cd83-4333-8599-98027779f0ab +2024-09-11 09:08:23.650796 2024-09-11 09:08:23.650801 cidref 050808583 R rec ef030d05-8537-43c9-8988-ce81dce49009 +2024-09-11 09:08:23.703936 2024-09-11 09:08:23.703941 cidref 050827405 R rec 76605374-4260-4857-bb81-5c0c1d1218f8 +2024-09-11 09:08:23.758776 2024-09-11 09:08:23.758782 cidref 052587207 R rec 271dd457-ebc1-4b8c-b154-133ba713194f +2024-09-11 09:08:23.817376 2024-09-11 09:08:23.817382 cidref 052634833 R rec f42a9a08-f75b-4bdf-8c5a-ee7574292c7e +2024-09-11 09:08:23.874847 2024-09-11 09:08:23.874851 cidref 053469844 R rec afc48af0-855e-4515-950a-938cbfa8681d +2024-09-11 09:08:23.934322 2024-09-11 09:08:23.93433 cidref 055308600 R rec d9fc3f15-d6a7-403f-b646-4bd8df921a2b +2024-09-11 09:08:23.996579 2024-09-11 09:08:23.996585 cidref 059302208 R rec 4711e5ed-e903-4f4a-b407-d3260924977d +2024-09-11 09:08:24.057551 2024-09-11 09:08:24.057557 cidref 05930278X R rec ea89370f-e267-4aac-951d-a15a570bb47a +2024-09-11 09:08:24.117759 2024-09-11 09:08:24.117766 cidref 059307374 R rec 06438493-a73b-409b-9a8f-b311bcc00594 +2024-09-11 09:08:24.176975 2024-09-11 09:08:24.17698 cidref 06082929X R rec 40cb3919-af9a-4aba-91b7-77518fb8cb9d +2024-09-11 09:08:24.239935 2024-09-11 09:08:24.23994 cidref 06160738X R rec d5030a18-c5f0-49d5-990e-d219a5cd1a34 +2024-09-11 09:08:24.3048 2024-09-11 09:08:24.304805 cidref 075000504 R rec 335dce1a-8a4a-4cb6-bd7d-24438660d5cc +2024-09-11 09:08:24.363532 2024-09-11 09:08:24.363537 cidref 077057589 R rec 01c7a1f4-22fc-4920-9f84-fd1fc81b6639 +2024-09-11 09:08:24.420451 2024-09-11 09:08:24.420456 cidref 077060377 R rec 4cea8a81-7402-44f0-ae98-50c51282d7b1 +2024-09-11 09:08:24.479269 2024-09-11 09:08:24.479275 cidref 077062809 R rec 46b795ad-07d6-4f31-a48b-e1437919dba3 +2024-09-11 09:08:24.536742 2024-09-11 09:08:24.536748 cidref 077075757 R rec 02fd6110-504c-42a9-b2d7-b69ea247c135 +2024-09-11 09:08:24.594229 2024-09-11 09:08:24.594234 cidref 077088883 R rec 7ea6ded7-cdd4-48dd-a1a8-02fc816503df +2024-09-11 09:08:24.693051 2024-09-11 09:08:24.693057 cidref 077091035 R rec e885322a-f0ea-4a8b-a0ad-2066032a9656 +2024-09-11 09:08:24.750468 2024-09-11 09:08:24.750474 cidref 077397827 R rec a135db48-32dc-4c60-a8da-1b5bdf52fa14 +2024-09-11 09:08:24.808441 2024-09-11 09:08:24.808447 cidref 077937007 R rec 544b62df-beb2-43c5-9c72-c9e2d1b9d74b +2024-09-11 09:08:24.873466 2024-09-11 09:08:24.873471 cidref 078974089 R rec 1269aa58-5064-4460-ace0-b846199c84bd +2024-09-11 09:08:24.934069 2024-09-11 09:08:24.934076 cidref 079180043 R rec f8a4d90b-e57b-45bf-9c58-165fad9d3ca2 +2024-09-11 09:08:24.999504 2024-09-11 09:08:24.999509 cidref 081665660 R rec 8eb61bd9-dd74-43d5-9d68-f9d8daa603ac +2024-09-11 09:08:25.059166 2024-09-11 09:08:25.059172 cidref 083421467 R rec ff7bbd77-4bc9-4574-8477-79d1eb9f21cb +2024-09-11 09:08:25.117275 2024-09-11 09:08:25.117281 cidref 083972684 R rec cd762e75-85a7-4ce6-be43-1519b3175534 +2024-09-11 09:08:25.176866 2024-09-11 09:08:25.176871 cidref 08523611X R rec 36c5a02e-187a-4976-954d-dea8d88c2e9a +2024-09-11 09:08:25.248507 2024-09-11 09:08:25.248513 cidref 087834979 R rec 4d7c5be0-638d-4e09-9d5d-fa1af9849079 +2024-09-11 09:08:25.331384 2024-09-11 09:08:25.33139 cidref 087960621 R rec 293336af-b780-45cb-8d20-afd8f517f503 +2024-09-11 09:08:25.392264 2024-09-11 09:08:25.39227 cidref 092468594 R rec ef3514be-f355-4548-a618-c1b01d8965c7 +2024-09-11 09:08:25.44868 2024-09-11 09:08:25.448685 cidref 092468950 R rec a6b44d01-3248-4ede-8d97-951e8f091a8a +2024-09-11 09:08:25.508295 2024-09-11 09:08:25.508301 cidref 101481071 R rec 9f363944-d364-49e6-aba4-0fe479a0d682 +2024-09-11 09:08:25.565376 2024-09-11 09:08:25.565381 cidref 110905687 R rec 681d6ba6-ce47-4dd0-be25-ee38a04d8821 +2024-09-11 09:08:25.628024 2024-09-11 09:08:25.62803 cidref 111597153 R rec d08cdb71-051f-4e6a-ae48-5326064e6d4b +2024-09-11 09:08:25.701968 2024-09-11 09:08:25.701974 cidref 112539750 R rec 37262985-266d-4073-946e-e3dae2215db6 +2024-09-11 09:08:25.76034 2024-09-11 09:08:25.760345 cidref 115898840 R rec d8de62f8-4771-41b0-8465-2d29c59b46cf +2024-09-11 09:08:25.81796 2024-09-11 09:08:25.817965 cidref 118419722 R rec 9bae476e-b566-41cf-b274-530e78835367 +2024-09-11 09:08:25.882688 2024-09-11 09:08:25.882693 cidref 118420763 R rec 1b61d290-f481-45c1-bbb7-f5e74b38691c +2024-09-11 09:08:25.94488 2024-09-11 09:08:25.944885 cidref 11948949X R rec 6916222d-2621-4e7e-88db-b916482e658f +2024-09-11 09:08:26.00275 2024-09-11 09:08:26.002756 cidref 120299658 R rec 68b79b55-6821-4de0-92f3-4fed365b840a +2024-09-11 09:08:26.063228 2024-09-11 09:08:26.063232 cidref 12059353X R rec aa429a88-d5c3-422c-aaf6-453fc1c844a9 +2024-09-11 09:08:26.126015 2024-09-11 09:08:26.12602 cidref 122348486 R rec 7bfad5c7-d0fe-4af1-a615-e60766a08769 +2024-09-11 09:08:26.185064 2024-09-11 09:08:26.18507 cidref 122348877 R rec 7fa3faaa-844b-490f-a401-3cb16e56d46a +2024-09-11 09:08:26.241884 2024-09-11 09:08:26.241889 cidref 122957032 R rec f445e61f-3e8f-4c28-994f-b702d18e4fbc +2024-09-11 09:08:26.297845 2024-09-11 09:08:26.297851 cidref 123472466 R rec d04b7bbe-1660-47fd-ba9c-58b935e6141d +2024-09-11 09:08:26.356004 2024-09-11 09:08:26.35601 cidref 124452248 R rec 77e2eeb5-314b-4735-9391-f80a49a67ad5 +2024-09-11 09:08:26.408678 2024-09-11 09:08:26.408684 cidref 129822051 R rec a77b2987-32f6-41d4-83b3-f289057933ee +2024-09-11 09:08:26.470276 2024-09-11 09:08:26.470282 cidref 130683035 R rec 252e0c7b-137c-4629-ab58-37a3ef8cb962 +2024-09-11 09:08:26.531895 2024-09-11 09:08:26.5319 cidref 13073019X R rec ae46fc69-d830-4db7-9ecd-f2eb8997a437 +2024-09-11 09:08:26.599032 2024-09-11 09:08:26.599037 cidref 131981226 R rec 91af766b-03a6-485d-b131-04028bb0c6d4 +2024-09-11 09:08:26.670286 2024-09-11 09:08:26.670292 cidref 132211378 R rec d44f70e4-84af-446f-9c84-10ec0218afe5 +2024-09-11 09:08:26.738513 2024-09-11 09:08:26.738518 cidref 133566129 R rec 1c9ecf38-5ecc-45fd-8036-e68935f16979 +2024-09-11 09:08:26.8001 2024-09-11 09:08:26.800105 cidref 135615003 R rec e76f24d8-3c90-444e-aeec-f547cbb51844 +2024-09-11 09:08:26.858849 2024-09-11 09:08:26.858855 cidref 136707165 R rec 3893cec3-4990-4d56-b364-7599073b030f +2024-09-11 09:08:26.917061 2024-09-11 09:08:26.917067 cidref 13776541X R rec 060e3851-a639-40a2-96f9-15c704b2b0c1 +2024-09-11 09:08:26.978262 2024-09-11 09:08:26.978267 cidref 137978685 R rec 7249b869-d2fa-45b4-9909-f2a72670f199 +2024-09-11 09:08:27.041151 2024-09-11 09:08:27.041157 cidref 139100857 R rec e6b5516c-8186-4ce4-bdd4-1c789b5d1677 +2024-09-11 09:08:27.095466 2024-09-11 09:08:27.095471 cidref 142761583 R rec f3c9065a-ffb6-45ef-842c-0f7b7d7258c9 +2024-09-11 09:08:27.153171 2024-09-11 09:08:27.153177 cidref 144664194 R rec 72a8b67d-d539-439b-a1df-f8cd9b9b6f6f +2024-09-11 09:08:27.21287 2024-09-11 09:08:27.212875 cidref 145035468 R rec 29cd325d-fadd-4b5b-8c34-7e37284fb88a +2024-09-11 09:08:27.27796 2024-09-11 09:08:27.277966 cidref 145909093 R rec 797af630-1b74-4f90-9588-b1be8814d97f +2024-09-11 09:08:27.334675 2024-09-11 09:08:27.334681 cidref 146923081 R rec 0f3e34ae-7c2c-4ff5-a953-5e49e690a239 +2024-09-11 09:08:27.390953 2024-09-11 09:08:27.390958 cidref 147286433 R rec faa75781-3a20-497b-b4f3-92fdb34558ec +2024-09-11 09:08:27.451471 2024-09-11 09:08:27.451477 cidref 148541372 R rec 775b0e95-4374-4b85-92e0-640ef1aa8c60 +2024-09-11 09:08:27.517569 2024-09-11 09:08:27.517575 cidref 148542182 R rec 776f3004-3272-450a-8903-f3a5f37d9405 +2024-09-11 09:08:27.591876 2024-09-11 09:08:27.591883 cidref 151385432 R rec 611e2dda-977f-4246-adc9-70bd97cecb16 +2024-09-11 09:08:27.649617 2024-09-11 09:08:27.649623 cidref 15212201X R rec 6db0dcf1-569f-417d-9312-098d8dfbcded +2024-09-11 09:08:27.706308 2024-09-11 09:08:27.706313 cidref 15909545X R rec b0098c37-5e5e-477b-a0e5-92bc84633996 +2024-09-11 09:08:27.764251 2024-09-11 09:08:27.764256 cidref 167934813 R rec a32a55ec-2cfa-4e83-b0e9-5c03bf9bf88d +2024-09-11 09:08:27.824194 2024-09-11 09:08:27.824199 cidref 168476010 R rec 246d1d72-bab1-4ef3-9c8b-4b86bd4d564b +2024-09-11 09:08:27.891287 2024-09-11 09:08:27.891292 cidref 169910733 R rec b92d3070-fddb-403b-a177-4f7cb24eae02 +2024-09-11 09:08:27.953748 2024-09-11 09:08:27.953754 cidref 17129226X R rec ac6e6256-e60b-4b62-8339-588aa832c03d +2024-09-11 09:08:28.02087 2024-09-11 09:08:28.020877 cidref 17523308X R rec 71d82dcc-54d7-47d8-959e-1b5bbed54579 +2024-09-11 09:08:28.084149 2024-09-11 09:08:28.084155 cidref 17939360X R rec 8faf9177-0515-481b-8cb9-a71c8b0a6e77 +2024-09-11 09:08:28.141629 2024-09-11 09:08:28.141634 cidref 180214845 R rec 59791290-d0e5-4263-a3be-0f4824f3981d +2024-09-11 09:08:28.202149 2024-09-11 09:08:28.202156 cidref 180214926 R rec 631dbff7-8295-40d2-b1c3-901a43aa9fde +2024-09-11 09:08:28.261914 2024-09-11 09:08:28.26192 cidref 18028505X R rec a83cdf03-94b9-4644-a492-bf5075aa89e3 +2024-09-11 09:08:28.323738 2024-09-11 09:08:28.323744 cidref 181882604 R rec 9678efaf-b14e-4c78-a3f0-6bdf63dd58c1 +2024-09-11 09:08:28.378664 2024-09-11 09:08:28.37867 cidref 182446174 R rec 49e075f8-c3c6-4a01-8521-f4a12c4248ec +2024-09-11 09:08:28.439171 2024-09-11 09:08:28.439177 cidref 183790936 R rec 132367f2-910c-4f62-ba86-88f848648dc6 +2024-09-11 09:08:28.505359 2024-09-11 09:08:28.505365 cidref 183791428 R rec 17039f90-258d-48e4-81ef-3fcbfdfccc25 +2024-09-11 09:08:28.575251 2024-09-11 09:08:28.575256 cidref 184625807 R rec 2db8f149-3b57-447d-ae8e-9dd3c82287b8 +2024-09-11 09:08:28.635474 2024-09-11 09:08:28.635481 cidref 185018440 R rec dd66eb7f-96d1-4c48-b68a-a7cfe68d7d6c +2024-09-11 09:08:28.693876 2024-09-11 09:08:28.693881 cidref 187082324 R rec 2d278946-ddce-4e01-ac69-d3fdf080158c +2024-09-11 09:08:28.757593 2024-09-11 09:08:28.757599 cidref 190795786 R rec 90f5e018-560c-4aad-af00-cb3e6cc4169f +2024-09-11 09:08:28.817071 2024-09-11 09:08:28.817076 cidref 190994320 R rec 940fb3a0-caf5-42a0-b55e-5a4947b15d70 +2024-09-11 09:08:28.876303 2024-09-11 09:08:28.876308 cidref 193304104 R rec d77da66d-5914-4285-bff9-a06c442de576 +2024-09-11 09:08:28.934273 2024-09-11 09:08:28.934278 cidref 193617668 R rec b49f1dd2-dfc5-4393-802e-6ee0dd9ee944 +2024-09-11 09:08:28.991887 2024-09-11 09:08:28.991893 cidref 196951763 R rec 185c5820-fa47-4731-b53f-1c94bde7dad7 +2024-09-11 09:08:29.057284 2024-09-11 09:08:29.05729 cidref 197956653 R rec cad4885c-667f-4182-b604-19cfa156a64f +2024-09-11 09:08:29.118365 2024-09-11 09:08:29.11837 cidref 197957358 R rec cb5f63f7-641e-4a03-b060-090f8c7d5ff8 +2024-09-11 09:08:29.174199 2024-09-11 09:08:29.174205 cidref 199344019 R rec 8d7b5dca-8e64-48e4-a6fe-2374a9859db6 +2024-09-11 09:08:29.233839 2024-09-11 09:08:29.233845 cidref 199344248 R rec 56fe3b28-5a7e-42dd-8339-c87bd13963bb +2024-09-11 09:08:29.296571 2024-09-11 09:08:29.296576 cidref 200582038 R rec b6034189-ffd2-4777-a68a-d2c8d4123022 +2024-09-11 09:08:29.357534 2024-09-11 09:08:29.357539 cidref 200884530 R rec 05ebfc68-d6d6-4bb9-b257-82babd55d520 +2024-09-11 09:08:29.416927 2024-09-11 09:08:29.416932 cidref 204008557 R rec 7eb3da0a-a3ad-4d57-a4fa-00b5ee1223fd +2024-09-11 09:08:29.476038 2024-09-11 09:08:29.476044 cidref 219951152 R rec 3bd42093-71fa-4a75-9a50-f72b8da48b4c +2024-09-11 09:08:29.539049 2024-09-11 09:08:29.539055 cidref 219966540 R rec 4db7fcbb-19d7-4dfc-ac9a-b8737b868923 +2024-09-11 09:08:29.607755 2024-09-11 09:08:29.607761 cidref 223495913 R rec 1c7105eb-d1a3-410f-aee9-9fb78f4bcfbe +2024-09-11 09:08:29.668939 2024-09-11 09:08:29.668945 cidref 223831840 R rec 2b0159b7-3d11-4af2-a782-b8288e04b1c8 +2024-09-11 09:08:29.728358 2024-09-11 09:08:29.728364 cidref 225382520 R rec 14b88cbe-3785-43f6-b819-810ff5b9218f +2024-09-11 09:08:29.794893 2024-09-11 09:08:29.794898 cidref 227367677 R rec bc44ffee-d61f-4d88-964d-ac16bb2d3781 +2024-09-11 09:08:29.854738 2024-09-11 09:08:29.854742 cidref 227858689 R rec 1face21f-6892-4eca-9132-ea3bc3f803bc +2024-09-11 09:08:29.916573 2024-09-11 09:08:29.91658 cidref 228803608 R rec 3ab8c243-7db2-48aa-9ddd-6c862e033939 +2024-09-11 09:08:29.974285 2024-09-11 09:08:29.97429 cidref 232818665 R rec f180289c-afbe-4a57-a83b-02ba74f34545 +2024-09-11 09:08:30.036286 2024-09-11 09:08:30.036295 cidref 234183721 R rec 24c47dbf-c387-4922-8ac0-aec1c59692b1 +2024-09-11 09:08:30.099691 2024-09-11 09:08:30.099696 cidref 236280147 R rec 86dcc86c-3e59-477a-903a-bb40fec00879 +2024-09-11 09:08:30.157256 2024-09-11 09:08:30.157262 cidref 26110683X R rec 47e344c8-0f7e-418b-b1b3-b22796f091e3 +2024-09-11 09:08:30.21868 2024-09-11 09:08:30.218686 cidref 261107119 R rec 0038a57a-0c2a-4496-bc9b-53529e558cf6 +2024-09-11 09:08:30.276785 2024-09-11 09:08:30.276791 cidref 261901915 R rec 61de782b-e85f-4aa4-a134-173895c0c8db +2024-09-11 09:08:30.337872 2024-09-11 09:08:30.337877 cidref 263499758 R rec 36de085d-f057-46cb-b30f-08975e3d6fb5 +2024-09-11 09:08:30.403223 2024-09-11 09:08:30.403229 cidref 264222423 R rec fe68a98c-4192-4110-b5f9-dbb9c69902fd +2024-09-11 09:08:30.464035 2024-09-11 09:08:30.46404 cidref 264325974 R rec 62e05ad5-8464-4a8f-bfbc-79d7a9306d1e +2024-09-11 09:08:30.524646 2024-09-11 09:08:30.524652 cidref 264387414 R rec e8ab62d1-21d6-43f7-bd22-f90679982d04 +2024-09-11 09:08:30.603422 2024-09-11 09:08:30.603429 cidref 264387538 R rec e657c685-c64c-461f-9541-48bf29920bcf +2024-09-11 09:08:30.661864 2024-09-11 09:08:30.66187 cidref 26438833X R rec e3b730c9-d121-4569-9201-779d9caae0e7 +2024-09-11 09:08:30.72556 2024-09-11 09:08:30.725565 cidref 271981423 R rec 6325be8d-7c00-4ceb-ad20-5dcea445d67b +2024-09-11 09:08:30.783348 2024-09-11 09:08:30.783355 cidref 27874690X R rec 5d14803c-c2f1-452c-b87c-beda3886f949 +2024-09-11 09:08:30.842789 2024-09-11 09:08:30.842795 cidref 278746969 R rec ac93985e-f09e-4ce0-8713-536fbc7a0f7a +2024-09-11 09:08:30.902324 2024-09-11 09:08:30.902329 cidref 278746985 R rec 2c173cde-c823-4810-80cc-63ba13957ab6 +2024-09-11 09:08:30.962551 2024-09-11 09:08:30.962556 cidref 278746993 R rec 712edb7f-08d2-4c84-a19c-2610d6b86f0d +2024-09-11 09:08:31.023222 2024-09-11 09:08:31.023227 cidref 278747000 R rec 0b90e84d-ad35-4c72-84e4-33389264e612 +2024-09-11 09:08:31.089505 2024-09-11 09:08:31.089512 cidref 278747019 R rec f18994de-0112-4c92-bb13-90020633afff +2024-09-11 09:08:31.145842 2024-09-11 09:08:31.145846 cidref 278747043 R rec d708a307-d3e1-494a-9749-a770dd52a66d +2024-09-11 09:08:31.200294 2024-09-11 09:08:31.2003 cidref 278747167 R rec 1d913423-fba9-4e82-bb07-b6fe874ed2c9 +2024-09-11 09:08:31.259906 2024-09-11 09:08:31.259912 cidref 278747175 R rec 96160786-295a-4ba8-8b07-9b03f91f76d3 +2024-09-11 09:08:31.324207 2024-09-11 09:08:31.324214 cidref 278747183 R rec 57a52452-1c62-434d-b5f7-ae3c2ac76df7 +2024-09-11 09:08:31.388636 2024-09-11 09:08:31.388641 cidref 278747191 R rec 3fe3c19f-3545-4d83-8f62-fa7569ecf7ee +2024-09-11 09:08:31.468979 2024-09-11 09:08:31.468986 cidref 27874723X R rec afbb442d-e7ee-4f91-8d9c-4a022a5e6208 +2024-09-11 09:08:31.527955 2024-09-11 09:08:31.527961 cidref 278747280 R rec 36d4f059-e51c-46a2-a660-d1f2d8299b17 +2024-09-11 09:08:31.583227 2024-09-11 09:08:31.583233 cidref 278747329 R rec af650b15-7fc8-4038-9960-d34efb0b67ff +2024-09-11 09:08:31.643119 2024-09-11 09:08:31.643125 cidref 279034725 R rec 9d1dae43-d2fe-4507-8031-531acbf50f57 +2024-09-11 09:08:31.710142 2024-09-11 09:08:31.710147 cidref 279034733 R rec 6fb6e136-4782-4053-830e-d846b0447635 +2024-09-11 09:08:31.766899 2024-09-11 09:08:31.766904 cidref 279034741 R rec e21b1e58-90c1-429e-8a58-941b36cb0b0a +2024-09-11 09:08:31.826595 2024-09-11 09:08:31.8266 cidref 27903475X R rec d8bcfdc4-e395-4cfd-8888-7abf674aa972 +2024-09-11 09:08:31.895288 2024-09-11 09:08:31.895294 cidref 279034806 R rec 216adfb5-5297-4260-826e-1945dca64eef +2024-09-11 09:08:31.950998 2024-09-11 09:08:31.951003 cidref 279034814 R rec 8284e0e7-d7f1-4748-91ab-3780adc60ead +2024-09-11 09:08:32.010548 2024-09-11 09:08:32.010554 cidref 279034822 R rec af389af3-c640-4a30-8cbe-492a98006eed +2024-09-11 09:08:32.075691 2024-09-11 09:08:32.075696 cidref 279034849 R rec 5c34a35e-97f3-4035-b82a-9b14c51bc49e +2024-09-11 09:08:32.13511 2024-09-11 09:08:32.135115 cidref 279034881 R rec 71a0f8ec-565e-48b3-b8ed-dbfffbf7a36f +2024-09-11 09:08:32.193983 2024-09-11 09:08:32.193988 cidref 27903492X R rec 8b426b06-f7b8-477a-afe5-8eb0ad7703e0 +2024-09-11 09:08:32.251928 2024-09-11 09:08:32.251934 cidref 279034946 R rec 547a20b8-35a9-4a73-be99-70bb1d154cf6 +2024-09-11 09:08:32.305651 2024-09-11 09:08:32.305667 cidref 279034962 R rec 6dbbdf43-21cd-41bb-b366-58e0be6724e1 +2024-09-11 09:08:32.365497 2024-09-11 09:08:32.365503 cidref 279034970 R rec dcd543ab-026a-43f5-aa1c-cdd87fb11d54 +2024-09-11 09:08:32.431069 2024-09-11 09:08:32.431075 cidref 279034997 R rec 2fc6e058-3489-4793-8fb1-2a7430ca747c +2024-09-11 09:08:32.492223 2024-09-11 09:08:32.492229 cidref 279035020 R rec 25c80ba3-5a50-4dfc-87eb-7eac7e743d1b +2024-09-11 09:08:32.549906 2024-09-11 09:08:32.549912 cidref 279035063 R rec d15b3b3b-f2e3-4313-a791-68a1dd453ac0 +2024-09-11 09:08:32.608707 2024-09-11 09:08:32.608713 cidref 279035071 R rec 9f894cde-31a0-465b-a7b9-bbebe2cdd9ee +2024-09-11 09:08:32.667645 2024-09-11 09:08:32.66765 cidref 27903508X R rec eb08dccc-e92e-470f-ba93-8ceb4ddb9d1e +2024-09-11 09:08:32.727157 2024-09-11 09:08:32.727162 cidref 279035098 R rec 691bfbdb-cc67-471c-8747-5f9f5fbe4ba8 +2024-09-11 09:08:32.789379 2024-09-11 09:08:32.789384 cidref 279035101 R rec bbd95a21-35fb-4266-b568-cdaa34f38e27 +2024-09-11 09:08:32.851146 2024-09-11 09:08:32.851152 cidref 279035144 R rec c3a808a4-e502-4e43-973a-2ba8d30ad776 +2024-09-11 09:08:32.91895 2024-09-11 09:08:32.918956 cidref 279035241 R rec 720823e0-b885-4783-a984-2a4b08ddace6 +2024-09-11 09:08:32.9782 2024-09-11 09:08:32.978205 cidref 027233960 R rec 6c9a2b99-0613-486e-a583-179d8db23fb9 +2024-09-11 09:08:33.037446 2024-09-11 09:08:33.037452 cidref 027238431 R rec baf79b78-2448-40bd-a9a3-ff8f5dbd4b8f +2024-09-11 09:08:33.100294 2024-09-11 09:08:33.1003 cidref 027248720 R rec c28b67bf-fc77-4766-8000-9c4293e2389a +2024-09-11 09:08:33.17168 2024-09-11 09:08:33.171685 cidref 027255522 R rec d4fcd529-5c6a-444e-8a74-ba9048b4c1e3 +2024-09-11 09:08:33.229291 2024-09-11 09:08:33.229296 cidref 027258556 R rec bf0d51cd-034d-4a9a-9f71-df9530a87f7d +2024-09-11 09:08:33.284255 2024-09-11 09:08:33.284261 cidref 027266273 R rec 5b51a4f4-34d5-4181-8182-443916093145 +2024-09-11 09:08:33.36369 2024-09-11 09:08:33.363696 cidref 027314073 R rec 502d5300-8a2c-4357-a1b6-6c6f2aab7f7d +2024-09-11 09:08:33.42425 2024-09-11 09:08:33.424255 cidref 027361705 R rec 5dd028e9-4bc2-4666-b708-56a9aaebf971 +2024-09-11 09:08:33.482485 2024-09-11 09:08:33.482491 cidref 027390349 R rec eb2782ad-04d6-4089-a0cb-215d401a83dc +2024-09-11 09:08:33.541247 2024-09-11 09:08:33.541253 cidref 02741664X R rec f65fac3d-73f0-45f3-9490-f13332cb1648 +2024-09-11 09:08:33.59783 2024-09-11 09:08:33.597835 cidref 027802973 R rec 9114129d-0eb7-4aca-b060-bb8ea88e36c3 +2024-09-11 09:08:33.658833 2024-09-11 09:08:33.658838 cidref 027824586 R rec 9b323a40-0c8a-4b4c-99ba-dbf5df254748 +2024-09-11 09:08:33.716693 2024-09-11 09:08:33.716699 cidref 027855929 R rec 4e83f462-6552-425d-97b4-2513a4f0a7a1 +2024-09-11 09:08:33.779603 2024-09-11 09:08:33.779609 cidref 028205847 R rec 1970b886-df0b-4a8c-ba33-0d135e2593f9 +2024-09-11 09:08:33.83691 2024-09-11 09:08:33.836916 cidref 028221044 R rec d8464465-b3eb-4561-bad1-bd8e2398c0ee +2024-09-11 09:08:33.892662 2024-09-11 09:08:33.892667 cidref 028889347 R rec 91dfcc6a-90af-4ae2-9c7f-9bea87f7cae0 +2024-09-11 09:08:33.951516 2024-09-11 09:08:33.951521 cidref 028938615 R rec 28515121-8cac-477a-a485-7b17e77ccd70 +2024-09-11 09:08:34.011339 2024-09-11 09:08:34.011344 cidref 031082599 R rec 7928ec59-b3b2-482a-978e-a5150de532ac +2024-09-11 09:08:34.073914 2024-09-11 09:08:34.07392 cidref 031955274 R rec 4a09abff-2752-42f7-bf89-91e79cd12bd0 +2024-09-11 09:08:34.137198 2024-09-11 09:08:34.137203 cidref 03465500X R rec 8697dd8a-f601-49a7-b2ce-80052adf1eab +2024-09-11 09:08:34.225125 2024-09-11 09:08:34.22513 cidref 035141913 R rec 2df6c2a1-f74c-42a8-8187-6cac97c3f3b4 +2024-09-11 09:08:34.290419 2024-09-11 09:08:34.290424 cidref 05058748X R rec dc916a8f-9314-4b7f-9b33-b3e36fbe2f58 +2024-09-11 09:08:34.345958 2024-09-11 09:08:34.345963 cidref 061612820 R rec 32364a2f-3ecc-40dd-8a33-4f71530e8c88 +2024-09-11 09:08:34.40429 2024-09-11 09:08:34.404295 cidref 127977996 R rec 50ca3b68-ca53-4772-9bc3-d74eeb0ecbfd +2024-09-11 09:08:34.461967 2024-09-11 09:08:34.461972 cidref 131462415 R rec b9d38229-f8b7-4669-a984-6b9c866a9f9d +2024-09-11 09:08:34.522554 2024-09-11 09:08:34.52256 cidref 144331373 R rec 83c59a3d-b345-40a0-b980-9b569013c13d +2024-09-11 09:08:34.574784 2024-09-11 09:08:34.57479 cidref 180213911 R rec b06ed404-9f44-4d2b-b85d-1061101cbe42 +2024-09-11 09:08:34.633658 2024-09-11 09:08:34.633664 cidref 181492628 R rec 697cc6f5-1781-4237-85fc-5727ff9def29 +2024-09-11 09:08:34.695346 2024-09-11 09:08:34.695351 cidref 273372734 R rec 64eac061-a889-4a96-b42f-61fcce804e46 +2024-09-11 09:08:34.754234 2024-09-11 09:08:34.75424 cidref 273372742 R rec 73ab5ed8-7939-4844-8ee1-82de4602915d +2024-09-11 09:08:34.82056 2024-09-11 09:08:34.820566 cidref 273372750 R rec 809dcd54-7cbb-4421-a24f-3f9752c1b4ec +2024-09-11 09:08:34.9027 2024-09-11 09:08:34.902705 cidref 273372777 R rec c982fbc5-8d90-4023-8f9c-da71697fed78 +2024-09-11 09:08:34.96182 2024-09-11 09:08:34.961824 cidref 273372785 R rec 9dc457c3-9655-4935-9ca9-977f48fddc61 +2024-09-11 09:08:35.022001 2024-09-11 09:08:35.022006 cidref 277418216 R rec fc2a9f64-a5e2-4918-a590-bd849dc5a432 +2024-09-11 09:08:35.083594 2024-09-11 09:08:35.0836 cidref 279035152 R rec 975d7716-8575-4ebb-9ba6-0e7c9ab6cc34 +2024-09-11 09:08:35.146861 2024-09-11 09:08:35.146866 cidref 279035160 R rec c5c53605-a464-4508-a604-71335f027cd7 +2024-09-11 09:08:35.214164 2024-09-11 09:08:35.214169 cidref 279035179 R rec a58d98f5-d94e-4a6f-9bbd-5a7f426aa6fa +2024-09-11 09:08:35.272579 2024-09-11 09:08:35.272585 cidref 279035187 R rec 370f5f99-d13b-4547-bed4-e2cc51a99693 +2024-09-11 09:08:35.334682 2024-09-11 09:08:35.334687 cidref 279307322 R rec 8bafb116-4dc7-484d-9e59-8a92dd7cd7fd +2024-09-11 09:08:35.404831 2024-09-11 09:08:35.404836 cidref 279307330 R rec a41711ad-11c2-4de7-b64f-8241a64e6b98 +2024-09-11 09:08:35.461757 2024-09-11 09:08:35.461762 cidref 279307349 R rec b9edd124-e1bc-4f3e-95f7-94adc792e275 +2024-09-11 09:08:35.525142 2024-09-11 09:08:35.525147 cidref 279307357 R rec 99c1a981-42bc-4e1e-be61-965db73015db +2024-09-11 09:08:35.586953 2024-09-11 09:08:35.586958 cidref 279307365 R rec 2db8e34f-8f0f-4583-a4af-e62a9d58e215 +2024-09-11 09:08:35.64741 2024-09-11 09:08:35.647415 cidref 279307373 R rec 7cfd13dd-1535-46bc-9c01-870d1e045747 +2024-09-11 09:08:35.712412 2024-09-11 09:08:35.712419 cidref 279307462 R rec a89a9054-9a73-49bc-a34e-fb66d9f1566c +2024-09-11 09:08:35.773652 2024-09-11 09:08:35.773658 cidref 279307470 R rec 54718d21-f6a9-4e82-bb15-ffef331d8783 +2024-09-11 09:08:35.833013 2024-09-11 09:08:35.833017 cidref 279307519 R rec cc6b7ddd-8f44-43a8-81b5-809ef30d16ab +2024-09-11 09:08:35.894643 2024-09-11 09:08:35.894648 cidref 279307535 R rec 7b097e2b-aa1a-4bec-8725-afb6404539d2 +2024-09-11 09:08:35.956036 2024-09-11 09:08:35.956041 cidref 27930756X R rec a66bd3d3-ef92-4501-918c-5c5b6d8dc047 +2024-09-11 09:08:36.010062 2024-09-11 09:08:36.010068 cidref 279307578 R rec 15b9ef26-53bf-4bc7-93e8-8469b8644f0f +2024-09-11 09:08:36.078818 2024-09-11 09:08:36.078824 cidref 279307586 R rec 6f3ba7e0-0df0-4be7-9c1a-578e86bf4723 +2024-09-11 09:08:36.143164 2024-09-11 09:08:36.14317 cidref 279307594 R rec 3751457e-251d-453d-b84e-833f0392bddd +2024-09-11 09:08:36.209958 2024-09-11 09:08:36.209964 cidref 279307632 R rec 54c6a9ef-8e74-4010-a396-0886afa2bcfc +2024-09-11 09:08:36.27105 2024-09-11 09:08:36.271056 cidref 279307713 R rec 53b43039-cd65-4e4e-9f0a-4b85bfda0a24 +2024-09-11 09:08:36.33417 2024-09-11 09:08:36.334176 cidref 27930773X R rec e38cf459-6723-4bf1-a124-f19f77353dfc +2024-09-11 09:08:36.397 2024-09-11 09:08:36.397005 cidref 279307748 R rec 3d342dcc-ab95-4cac-8485-2e8126dc35ba +2024-09-11 09:08:36.457869 2024-09-11 09:08:36.457875 cidref 279307780 R rec fe8b02a2-9b50-47a6-aaa2-cf4ba31aa9aa +2024-09-11 09:08:36.515283 2024-09-11 09:08:36.515289 cidref 279307799 R rec 88cbb341-e6ed-43a8-bbb0-45cec41c2529 +2024-09-11 09:08:36.575094 2024-09-11 09:08:36.575099 cidref 279307810 R rec 0670cc6e-8bda-4ce9-b247-76e0d112ef38 +2024-09-11 09:08:36.632095 2024-09-11 09:08:36.6321 cidref 279307837 R rec 27fc30b4-45c4-4be2-ab58-92f142e8a309 +2024-09-11 09:08:36.690118 2024-09-11 09:08:36.690123 cidref 279307853 R rec 5c9034b4-40be-43d7-b2cc-b336d60db8e6 +2024-09-11 09:08:36.75025 2024-09-11 09:08:36.750256 cidref 027222144 R rec 6d705507-d0ea-4d1c-bb5c-90ecc3cc01e4 +2024-09-11 09:08:36.815473 2024-09-11 09:08:36.815478 cidref 027236897 R rec cb84a39e-02ef-402c-99ad-bd631e50f8a0 +2024-09-11 09:08:36.875916 2024-09-11 09:08:36.875944 cidref 027276457 R rec 3a7953ab-1016-4c02-99a8-832435ef1bdd +2024-09-11 09:08:36.942097 2024-09-11 09:08:36.942103 cidref 027307565 R rec 10339eeb-d085-4c75-b69c-b6af09372bbf +2024-09-11 09:08:37.000428 2024-09-11 09:08:37.000441 cidref 02767391X R rec 4836eb5c-d65e-409c-adf4-b031abf576f2 +2024-09-11 09:08:37.06145 2024-09-11 09:08:37.061456 cidref 027800512 R rec 5855e952-4f24-4d98-bff9-aacca86f47b3 +2024-09-11 09:08:37.125641 2024-09-11 09:08:37.125648 cidref 02781971X R rec 9205f52a-2fa1-440a-b142-0a218cd88ff7 +2024-09-11 09:08:37.192432 2024-09-11 09:08:37.192438 cidref 02787642X R rec 13de8ae9-993f-4d24-a5d0-bde97f15b6ab +2024-09-11 09:08:37.252472 2024-09-11 09:08:37.252478 cidref 028374878 R rec e606c36f-9c3e-4a70-9ed5-0ea97ed36b1c +2024-09-11 09:08:37.31568 2024-09-11 09:08:37.315685 cidref 028932358 R rec a159b607-85a0-4a7a-9ee6-dd225e5bdd88 +2024-09-11 09:08:37.384024 2024-09-11 09:08:37.38403 cidref 030120640 R rec d8e7d1ab-63f6-4610-9a9f-7ca26e24cc4b +2024-09-11 09:08:37.440396 2024-09-11 09:08:37.440401 cidref 03136795X R rec 57f0bd73-e103-481f-861c-4793461a9ea8 +2024-09-11 09:08:37.501263 2024-09-11 09:08:37.501269 cidref 033293074 R rec 625e85d9-86d2-4c11-9e8a-8dab70f73686 +2024-09-11 09:08:37.563542 2024-09-11 09:08:37.563548 cidref 050174495 R rec 054a3506-d024-44a4-9808-424c4fb8b082 +2024-09-11 09:08:37.623235 2024-09-11 09:08:37.62324 cidref 06008989X R rec 3e282e13-0c6e-4c0b-bda3-b1fa81fdd536 +2024-09-11 09:08:37.678628 2024-09-11 09:08:37.678633 cidref 061604496 R rec 66b1a629-bb15-4604-82ba-ce4561b80a53 +2024-09-11 09:08:37.746043 2024-09-11 09:08:37.746049 cidref 178480231 R rec b11ce695-469b-42cb-8864-27391c44894b +2024-09-11 09:08:37.807369 2024-09-11 09:08:37.807375 cidref 238529495 R rec a7e2bd86-0203-4640-bddf-e648fcba5728 +2024-09-11 09:08:37.863894 2024-09-11 09:08:37.8639 cidref 263906442 R rec a9ed6913-6ab7-435f-8e7e-08eac7b882fc +2024-09-11 09:08:37.921319 2024-09-11 09:08:37.921324 cidref 264225260 R rec abd85336-193d-4e8a-a424-d5e48d165c32 +2024-09-11 09:08:37.977893 2024-09-11 09:08:37.977899 cidref 276037685 R rec 86770189-1403-41f6-9254-8c1364f810ba +2024-09-11 09:08:38.039799 2024-09-11 09:08:38.039804 cidref 278746896 R rec a1e7675f-c4c7-47e7-823d-e5ca7506a18c +2024-09-11 09:08:38.097253 2024-09-11 09:08:38.097258 cidref 278746918 R rec eb95989f-c21f-4f25-a212-d167f836a7c6 +2024-09-11 09:08:38.15477 2024-09-11 09:08:38.154775 cidref 278746926 R rec 7e64d146-0ce9-41f2-8cc1-8db8205496c8 +2024-09-11 09:08:38.222322 2024-09-11 09:08:38.222328 cidref 278746934 R rec 39ceabdf-55b2-41dd-b602-2f0fea638458 +2024-09-11 09:08:38.282267 2024-09-11 09:08:38.282273 cidref 278746942 R rec 6d6de45a-ca7c-4ec0-a6e7-14eb62dc3298 +2024-09-11 09:08:38.33692 2024-09-11 09:08:38.336926 cidref 278746950 R rec 328f58e9-61f8-42bf-bf8b-1e8170e9a08a +2024-09-11 09:08:38.390415 2024-09-11 09:08:38.39042 cidref 278746977 R rec 0169374b-63f2-4760-a2fc-b3a665cab622 +2024-09-11 09:08:38.444042 2024-09-11 09:08:38.444047 cidref 278747027 R rec 1777b388-cfd1-4915-bb2d-d3de2a940658 +2024-09-11 09:08:38.49983 2024-09-11 09:08:38.499836 cidref 278747035 R rec 3ed2468a-49c7-49de-a646-7c94985299e5 +2024-09-11 09:08:38.555218 2024-09-11 09:08:38.555223 cidref 278747051 R rec a0145600-5eba-484e-9063-9491b6e79074 +2024-09-11 09:08:38.616608 2024-09-11 09:08:38.616613 cidref 27874706X R rec 098c4882-6636-4905-9067-92bd493e2226 +2024-09-11 09:08:38.683248 2024-09-11 09:08:38.683254 cidref 278747086 R rec 8b2ffeb8-2f3d-4e71-8972-3ea4392a603c +2024-09-11 09:08:38.747674 2024-09-11 09:08:38.74768 cidref 278747094 R rec 1ff507b8-1614-43a0-8f65-40ce93758b53 +2024-09-11 09:08:38.804156 2024-09-11 09:08:38.804162 cidref 278747108 R rec 478447a7-e07a-4862-b606-c644d3c8a183 +2024-09-11 09:08:38.865744 2024-09-11 09:08:38.865749 cidref 278747116 R rec 7ae5a20f-4790-45eb-bb5a-8fd6ec12ee54 +2024-09-11 09:08:38.924776 2024-09-11 09:08:38.924782 cidref 278747124 R rec 9baa4428-3555-43a3-ba54-72348c87d400 +2024-09-11 09:08:38.98916 2024-09-11 09:08:38.989165 cidref 278747132 R rec 39957abe-3c38-4927-8254-5ca5e7d1b443 +2024-09-11 09:08:39.047651 2024-09-11 09:08:39.047657 cidref 278747140 R rec 4253b799-ef43-4223-8de2-65edc405ddcc +2024-09-11 09:08:39.107028 2024-09-11 09:08:39.107034 cidref 278747159 R rec 7c412e9e-8083-4713-8595-3fc659e6cf73 +2024-09-11 09:08:39.164214 2024-09-11 09:08:39.164219 cidref 278747213 R rec 15747825-d958-4eb3-99e6-2bfd4ada9d5e +2024-09-11 09:08:39.227166 2024-09-11 09:08:39.227171 cidref 278747221 R rec f58f7a3a-41a3-4bca-91f4-50fbb06aa229 +2024-09-11 09:08:39.283242 2024-09-11 09:08:39.283248 cidref 278747248 R rec 980803d2-1fc3-4f71-a628-24639abb4753 +2024-09-11 09:08:39.340179 2024-09-11 09:08:39.340185 cidref 278747256 R rec b2c42562-ddf5-4065-a5f0-a40a139a688a +2024-09-11 09:08:39.401435 2024-09-11 09:08:39.401443 cidref 278747264 R rec 9c3ed79d-274d-419b-a04f-970db9cadde8 +2024-09-11 09:08:39.465273 2024-09-11 09:08:39.465279 cidref 278747272 R rec 2b3d686b-7cce-45e0-ab3b-6f83a1ced16e +2024-09-11 09:08:39.52836 2024-09-11 09:08:39.528365 cidref 278747299 R rec e3c1d1a0-20ff-40d1-a381-ed552ec678cc +2024-09-11 09:08:39.584782 2024-09-11 09:08:39.584788 cidref 278747302 R rec 7f95c867-0fd8-4892-ba70-06ebcb43be3c +2024-09-11 09:08:39.643255 2024-09-11 09:08:39.643261 cidref 279034768 R rec db72cf9f-a76f-407f-9d35-ffd3f2e6e886 +2024-09-11 09:08:39.699358 2024-09-11 09:08:39.699363 cidref 279034776 R rec b3c036ff-5263-4efc-bc42-b8ece839014b +2024-09-11 09:08:39.77323 2024-09-11 09:08:39.773235 cidref 279034784 R rec 8059366b-04f1-4b11-b34a-115d0989e071 +2024-09-11 09:08:39.838942 2024-09-11 09:08:39.838947 cidref 279034792 R rec 7b4ec8a4-852c-4e2c-bfa9-3a0251c07378 +2024-09-11 09:08:39.902174 2024-09-11 09:08:39.902181 cidref 279034865 R rec ebe6629f-6a30-4bd8-a2ee-7dc3eed3356b +2024-09-11 09:08:39.958687 2024-09-11 09:08:39.958693 cidref 279034873 R rec a1056818-4884-40d2-97f4-c4aa0620d180 +2024-09-11 09:08:40.07288 2024-09-11 09:08:40.072885 cidref 27903489X R rec 45bb6e81-aa3d-4a81-9657-632c0b543ab7 +2024-09-11 09:08:40.131301 2024-09-11 09:08:40.131307 cidref 279034903 R rec 0314f39b-9c08-4144-8f86-1ead3e640cf1 +2024-09-11 09:08:40.188832 2024-09-11 09:08:40.188837 cidref 279035039 R rec 3395a10b-2578-437b-9b7f-30e356b0c5eb +2024-09-11 09:08:40.24642 2024-09-11 09:08:40.246426 cidref 027275639 R rec eefd9e39-abe0-45e8-9c65-d67a17205ffb +2024-09-11 09:08:40.30628 2024-09-11 09:08:40.306285 cidref 027362434 R rec 50d19368-95c7-48bc-8709-20a81e42d4d4 +2024-09-11 09:08:40.370438 2024-09-11 09:08:40.370443 cidref 027612163 R rec 77dd832f-abd7-4ffe-a36b-9b93b0636d51 +2024-09-11 09:08:40.428019 2024-09-11 09:08:40.428025 cidref 029385571 R rec 92e9aa80-9ed4-4939-a0c9-33e7dd8f5ed1 +2024-09-11 09:08:40.48772 2024-09-11 09:08:40.487726 cidref 029877555 R rec a2186ffc-c846-443c-931e-ee256103cb72 +2024-09-11 09:08:40.545665 2024-09-11 09:08:40.545671 cidref 033689725 R rec ac259d16-9bf9-462b-a7da-75096805c0c9 +2024-09-11 09:08:40.611662 2024-09-11 09:08:40.611667 cidref 035381795 R rec ecdaa14d-5897-455a-b194-c015d80778fc +2024-09-11 09:08:40.673655 2024-09-11 09:08:40.67366 cidref 174718276 R rec b8721b42-0a94-4969-a9a3-a2957ef661fe +2024-09-11 09:08:40.733988 2024-09-11 09:08:40.733994 cidref 278747078 R rec d9d61cb1-10e8-4b34-9294-5a89bfc24c6f +2024-09-11 09:08:40.808042 2024-09-11 09:08:40.808048 cidref 279034954 R rec f297ff08-632d-4ea2-b766-82355e0b024e +2024-09-11 09:08:40.874411 2024-09-11 09:08:40.874416 cidref 279307381 R rec 64569873-12b1-4902-bca2-eacc82b91c03 +2024-09-11 09:08:40.935575 2024-09-11 09:08:40.935582 cidref 27930739X R rec ed209050-2603-4cec-8354-8ea68660aa5d +2024-09-11 09:08:40.997828 2024-09-11 09:08:40.997832 cidref 279307403 R rec 15f34099-716d-41a2-ae32-238ad0d08ead +2024-09-11 09:08:41.063114 2024-09-11 09:08:41.063119 cidref 279307411 R rec e6b8e61c-bbf8-4ac6-983f-80e4b894880e +2024-09-11 09:08:41.119681 2024-09-11 09:08:41.119687 cidref 27930742X R rec 11a7aed7-16f9-4e3b-982e-6fee7d5062f2 +2024-09-11 09:08:41.1815 2024-09-11 09:08:41.181507 cidref 279307438 R rec a5224851-d13e-429d-9944-342d5808843b +2024-09-11 09:08:41.247418 2024-09-11 09:08:41.247423 cidref 279307446 R rec 7c381cad-a9fc-45b2-8126-8fd9e375d2a1 +2024-09-11 09:08:41.305213 2024-09-11 09:08:41.305218 cidref 279307454 R rec 2cea2d8c-8015-4199-af0c-d8060f316b9a +2024-09-11 09:08:41.36106 2024-09-11 09:08:41.361065 cidref 279307543 R rec ad3a0856-e9d7-4fc8-b436-d6a1ff20a576 +2024-09-11 09:08:41.42016 2024-09-11 09:08:41.420167 cidref 279307608 R rec 31996c3d-aa4a-448b-bba4-0ec5e2f08c0d +2024-09-11 09:08:41.481298 2024-09-11 09:08:41.481304 cidref 279307616 R rec dd68dc97-03ca-46c4-9365-00244f37112f +2024-09-11 09:08:41.572807 2024-09-11 09:08:41.572812 cidref 279307640 R rec dfb56599-a655-4427-b6ea-9d21bf920ab7 +2024-09-11 09:08:41.636786 2024-09-11 09:08:41.636791 cidref 279307659 R rec 3c109a5b-0e53-4363-bffc-6640f29a7073 +2024-09-11 09:08:41.698925 2024-09-11 09:08:41.69893 cidref 279307667 R rec ac19a51b-0348-48d5-9c2e-96b2884e3ce2 +2024-09-11 09:08:41.772089 2024-09-11 09:08:41.772095 cidref 279307675 R rec c14cec20-a084-4011-a9d8-412b732ebbe4 +2024-09-11 09:08:41.835673 2024-09-11 09:08:41.835679 cidref 279307683 R rec eb3638a7-e2d5-4ab1-a8de-2e9ae99edcac +2024-09-11 09:08:41.897886 2024-09-11 09:08:41.897892 cidref 279307705 R rec 9d33200b-d05d-4a8e-90eb-adb15118fb0d +2024-09-11 09:08:41.959165 2024-09-11 09:08:41.959171 cidref 279307721 R rec 26802d6c-744d-4981-80c1-3efad1667485 +2024-09-11 09:08:42.022106 2024-09-11 09:08:42.022111 cidref 279307756 R rec af864897-4323-44bd-bb9e-4013541f15f0 diff --git a/data/cognd.json b/data/cognd.json new file mode 100644 index 00000000..6053861a --- /dev/null +++ b/data/cognd.json @@ -0,0 +1,125083 @@ +[ + { + "md5": "ec110c031a084cd665ea264c05091855", + "pid": "04000158X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Akronym" + }, + { + "authorized_access_point": "Kurzzeichen" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332649742", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11947909", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11947909z" + } + ], + "authorized_access_point": "Abre\u0301viations" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254332928", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "7958", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/7958" + } + ], + "authorized_access_point": "Abbreviazioni" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254400877", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX524425", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX524425" + } + ], + "authorized_access_point": "Abreviaturas" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4000158-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04000158X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4000158-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Abbreviatur", + "Kontraktion (Schrift)", + "Abku\u0308rzungen" + ], + "authorized_access_point": "Abku\u0308rzung" + }, + { + "md5": "d0e822da7f963a24c3de2bc318715d7b", + "pid": "040004570", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Regelung" + } + ], + "related": [ + { + "authorized_access_point": "Adaptives System" + }, + { + "authorized_access_point": "Extremwertregelung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113457617X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85000803", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85000803" + } + ], + "authorized_access_point": "Adaptive control systems" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113457617X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11977921", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11977921f" + } + ], + "authorized_access_point": "Syste\u0300mes adaptatifs" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4000457-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040004570", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4000457-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Adaptive Regelung" + ], + "authorized_access_point": "Adaptivregelung" + }, + { + "md5": "3110b46bc3676d208fcc4188e6270dbe", + "pid": "040009327", + "note": [ + { + "label": [ + "Eine Aktie ist ein Gesellschaftsanteil an einer Aktiengesellschaft, einer Kommanditgesellschaft auf Aktien oder einer Societas Europaea." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wertpapier" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113439179X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85128226", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85128226" + } + ], + "authorized_access_point": "Stocks" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113439179X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11967769", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11967769p" + } + ], + "authorized_access_point": "Actions de socie\u0301te\u0301s" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966676122", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "12232-5", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/12232-5" + } + ], + "authorized_access_point": "Aktie" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4000932-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040009327", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4000932-4", + "source": "GND" + } + ], + "authorized_access_point": "Aktie" + }, + { + "md5": "a32fbbd877b7d25633865cd476573b98", + "pid": "040009866", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Reflextherapie" + }, + { + "authorized_access_point": "Alternative Medizin" + }, + { + "authorized_access_point": "Erfahrungsheilkunde" + } + ], + "related": [ + { + "authorized_access_point": "Akupressur" + }, + { + "authorized_access_point": "Shiatsu" + }, + { + "authorized_access_point": "Moxibustion" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332651356", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11930824", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11930824p" + } + ], + "authorized_access_point": "Acupuncture" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254402470", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX524567", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX524567" + } + ], + "authorized_access_point": "Acupuntura" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256189340", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "16160", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_16160" + } + ], + "authorized_access_point": "acupuncture" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1282203762", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D026881", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D026881" + } + ], + "authorized_access_point": "Acupuncture" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970531125", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10035005", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10035005" + } + ], + "authorized_access_point": "Akupunktur" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4000986-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040009866", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4000986-5", + "source": "GND" + } + ], + "authorized_access_point": "Akupunktur" + }, + { + "md5": "26a6c3e61289dd007232d618cb0a277c", + "pid": "040018040", + "note": [ + { + "label": [ + "Amtshaftung ist ein deliktsrechtlicher Sondertatbestand, der die perso\u0308nliche Haftung einer hoheitlich handelnden Person wegen der schuldhaften Verletzung einer Amtspflicht vorsieht, die ihr gegenu\u0308ber einem durch ihr Verhalten gescha\u0308digten Dritten obliegt." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Haftung" + } + ], + "related": [ + { + "authorized_access_point": "Staatshaftung" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970531974", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10035427", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10035427" + } + ], + "authorized_access_point": "Amtshaftung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4001804-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040018040", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4001804-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Beamtenhaftung", + "Amtstra\u0308ger", + "Beamter" + ], + "authorized_access_point": "Amtshaftung" + }, + { + "md5": "7ff23ac20da6465952f2ed950404fa4c", + "pid": "040021459", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Chemie" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133687520", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85023017", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85023017" + } + ], + "authorized_access_point": "Chemistry, Inorganic" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133687520", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11978675", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11978675s" + } + ], + "authorized_access_point": "Chimie inorganique" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254352333", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "22797", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/22797" + } + ], + "authorized_access_point": "Chimica inorganica" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254404805", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX525776", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX525776" + } + ], + "authorized_access_point": "Qui\u0301mica inorga\u0301nica" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1328566218", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D015392", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D015392" + } + ], + "authorized_access_point": "Chemistry, Inorganic" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4002145-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040021459", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4002145-2", + "source": "GND" + } + ], + "authorized_access_point": "Anorganische Chemie" + }, + { + "md5": "bce302e17b5666c08872764dd430c275", + "pid": "040021475", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Chemische Verbindungen" + }, + { + "authorized_access_point": "Anorganischer Stoff" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134045263", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh86005967", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh86005967" + } + ], + "authorized_access_point": "Inorganic compounds" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134045263", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11977078", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11977078x" + } + ], + "authorized_access_point": "Compose\u0301s inorganiques" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254317880", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "789", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/789" + } + ], + "authorized_access_point": "Composti inorganici" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254404813", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX533227", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX533227" + } + ], + "authorized_access_point": "Compuestos inorga\u0301nicos" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336148381", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D007287", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D007287" + } + ], + "authorized_access_point": "Inorganic Chemicals" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4002147-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040021475", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4002147-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Anorganische Verbindung" + ], + "authorized_access_point": "Anorganische Verbindungen" + }, + { + "md5": "d48ff120a152fb5e27acb6c8f2c886d8", + "pid": "040030415", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Stickstoffgruppe" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134516541", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85007449", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85007449" + } + ], + "authorized_access_point": "Arsenic" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134516541", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11971740", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11971740q" + } + ], + "authorized_access_point": "Arsenic" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254356185", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "25597", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/25597" + } + ], + "authorized_access_point": "Arsenico" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254406638", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX535902", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX535902" + } + ], + "authorized_access_point": "Arse\u0301nico" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256192597", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "629", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_629" + } + ], + "authorized_access_point": "arsenic" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4003041-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040030415", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4003041-6", + "source": "GND" + } + ], + "authorized_access_point": "Arsen" + }, + { + "md5": "81eae698db07bd03335bdfc6249dc71c", + "pid": "040030962", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Artistin" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333994648", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85026090", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85026090" + } + ], + "authorized_access_point": "Circus performers" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333994648", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13318653", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13318653g" + } + ], + "authorized_access_point": "Artistes de cirque" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4003096-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040030962", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4003096-9", + "source": "GND" + } + ], + "authorized_access_point": "Artist" + }, + { + "md5": "b6fd96140c15b91b6f2c982b1cd371f5", + "pid": "04003500X", + "note": [ + { + "label": [ + "Nur bei Nachweis in den entsprechenden NSW Kompositum mit den aufzubereitenden Gut." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134037554", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11975726", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119757264" + } + ], + "authorized_access_point": "Transformation" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4003500-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04003500X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4003500-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Aufbereiten" + ], + "authorized_access_point": "Aufbereitung" + }, + { + "md5": "8792be655b3a1ec6d3891c4ee7b39f7d", + "pid": "040035506", + "note": [ + { + "label": [ + "Ein Aufsichtsrat ist das Organ einer Kapitalgesellschaft, das fu\u0308r die U\u0308berwachung der Gescha\u0308ftsfu\u0308hrung zusta\u0308ndig ist.", + "Benutzt fu\u0308r das Deutsche und Internationale Recht; fu\u0308r das Schweizer Recht benutze Revisionsstelle; Aktiengesellschaft wird nicht als pleonastisch behandelt." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Board of directors" + }, + { + "authorized_access_point": "Revisionsstelle" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134498152", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF14469068", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb14469068f" + } + ], + "authorized_access_point": "Conseils de surveillance" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966691369", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "12175-5", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/12175-5" + } + ], + "authorized_access_point": "Aufsichtsrat" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970534930", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10034959", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10034959" + } + ], + "authorized_access_point": "Aufsichtsrat" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4003550-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040035506", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4003550-5", + "source": "GND" + } + ], + "authorized_access_point": "Aufsichtsrat" + }, + { + "md5": "a33d77f907bd71b0e8dc92cb955072d1", + "pid": "040036774", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Extraktivismus" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133864414", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh96000331", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh96000331" + } + ], + "authorized_access_point": "Exploitation" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133864414", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13536692", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13536692n" + } + ], + "authorized_access_point": "Exploitation de l'homme par l'homme" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970535007", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10037031", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10037031" + } + ], + "authorized_access_point": "Ausbeutung" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966854969", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "30410-5", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/30410-5" + } + ], + "authorized_access_point": "Ausbeutung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4003677-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040036774", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4003677-7", + "source": "GND" + } + ], + "authorized_access_point": "Ausbeutung" + }, + { + "md5": "a9b396bcf06770e433a103bd67b35cb8", + "pid": "040048543", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ma\u0308ngelru\u0308ge" + }, + { + "authorized_access_point": "Mangel" + } + ], + "related": [ + { + "authorized_access_point": "Bauschaden" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133626475", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11936918", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11936918g" + } + ], + "authorized_access_point": "Vices de construction" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4004854-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040048543", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4004854-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Bauma\u0308ngel" + ], + "authorized_access_point": "Baumangel" + }, + { + "md5": "f49e665ad22739ca2effc51550174778", + "pid": "040054020", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kalte Ku\u0308che" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4005402-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040054020", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4005402-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Butterbrot" + ], + "authorized_access_point": "Belegtes Brot" + }, + { + "md5": "219ad2428c217022bb113499882a8143", + "pid": "040060055", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Werkstatt_f%C3%BCr_behinderte_Menschen&oldid=218572538f" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134017553", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85121315", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85121315" + } + ], + "authorized_access_point": "Sheltered workshops" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134017553", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11967806", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119678062" + } + ], + "authorized_access_point": "Entreprises adapte\u0301es" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254503145", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX552311", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX552311" + } + ], + "authorized_access_point": "Centros especiales de empleo" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970536852", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10038025", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10038025" + } + ], + "authorized_access_point": "Behindertenwerksta\u0308tte" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4006005-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040060055", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4006005-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Werkstatt fu\u0308r Behinderte", + "Behindertenwerksta\u0308tte", + "Behindertenwerkstatt", + "Beschu\u0308tzende Werkstatt", + "Fo\u0308rderwerkstatt", + "Werkstatt fu\u0308r Menschen mit Behinderungen", + "WfbM", + "Werksta\u0308tte fu\u0308r Behinderte", + "Geschu\u0308tzte Werkstatt" + ], + "authorized_access_point": "Werkstatt fu\u0308r behinderte Menschen" + }, + { + "md5": "ab974dd2da95b46eeb76552be1da1486", + "pid": "040062120", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Stilllegung" + } + ], + "related": [ + { + "authorized_access_point": "Betriebsaufgabe" + }, + { + "authorized_access_point": "Betriebsschlie\u00dfung" + }, + { + "authorized_access_point": "Betriebsunterbrechung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1335075461", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85102810f", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85102810" + } + ], + "authorized_access_point": "Plant shutdowns" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1335075461", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12069852", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb120698529" + } + ], + "authorized_access_point": "Entreprises - Disparition" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970538766", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10038913", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10038913" + } + ], + "authorized_access_point": "Betriebsstillegung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4006212-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040062120", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4006212-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Betrieb", + "Betriebsstillegung" + ], + "authorized_access_point": "Betriebsstilllegung" + }, + { + "md5": "6e5cf1062da15f816ca03652255055bb", + "pid": "040068560", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Biologische Landwirtschaft" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134597304", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85095504", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85095504" + } + ], + "authorized_access_point": "Organic farming" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134597304", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11930852", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11930852x" + } + ], + "authorized_access_point": "Agriculture biologique" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256197114", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "15912", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_15912" + } + ], + "authorized_access_point": "biodynamic agriculture" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4006856-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040068560", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4006856-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Biologisch-dynamischer Landbau", + "Biologisch-dynamische Landwirtschaft", + "Biodynamische Landwirtschaft", + "Biodynamie", + "Biodynamischer Anbau", + "Dynamisch-biologische Landwirtschaft", + "Landwirtschaft" + ], + "authorized_access_point": "Biologisch-dynamische Wirtschaftsweise" + }, + { + "md5": "def2f8092d10e91ca5f8d1e02881675d", + "pid": "040070328", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Krebs (Medizin)" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134492898", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2009117264", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2009117264" + } + ], + "authorized_access_point": "Bladder - Cancer" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1241593930", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D001749", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D001749" + } + ], + "authorized_access_point": "Urinary Bladder Neoplasms" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4007032-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040070328", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4007032-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Blasencarcinom", + "Harnblasenkrebs", + "Blasenkarzinom", + "Harnblasenkarzinom" + ], + "authorized_access_point": "Blasenkrebs" + }, + { + "md5": "99f25830daa6d47780d1abe69e3e2511", + "pid": "040072118", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Befruchtung" + } + ], + "related": [ + { + "authorized_access_point": "Besta\u0308uber" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133676006", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85104524", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85104524" + } + ], + "authorized_access_point": "Pollination" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133676006", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11972141", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11972141n" + } + ], + "authorized_access_point": "Pollinisation" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254351590", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "22309", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/22309" + } + ], + "authorized_access_point": "Impollinazione" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254411089", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX555520", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX555520" + } + ], + "authorized_access_point": "Polinizacio\u0301n" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4007211-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040072118", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4007211-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Blu\u0308tenbesta\u0308ubung", + "Pollination" + ], + "authorized_access_point": "Besta\u0308ubung" + }, + { + "md5": "6959757742e53c4e9452b6315d1b4689", + "pid": "040078124", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134253192", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh89002772", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh89002772" + } + ], + "authorized_access_point": "Boron compounds" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134253192", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12274183", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb122741830" + } + ], + "authorized_access_point": "Bore - Compose\u0301s" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133614856X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D001896", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D001896" + } + ], + "authorized_access_point": "Boron Compounds" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4007812-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040078124", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4007812-7", + "source": "GND" + } + ], + "authorized_access_point": "Borverbindungen" + }, + { + "md5": "3d5056a7ca092928d58cc76d166764e7", + "pid": "040085244", + "note": [ + { + "label": [ + "Benutzt fu\u0308r physiolog. u. anatomische Sachverhalte, fu\u0308r kulturgeschichtliche sowie erotische u. sonstige Symbolik verwende das SW Busen." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134518315", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85016677", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85016677" + } + ], + "authorized_access_point": "Breast" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134518315", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11938328", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11938328m" + } + ], + "authorized_access_point": "Sein" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254337466", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "12086", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/12086" + } + ], + "authorized_access_point": "Mammelle" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4008524-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040085244", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4008524-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Brust", + "Busen (Anatomie)", + "Weibliche Brust" + ], + "authorized_access_point": "Mamma" + }, + { + "md5": "89bf69ebf5aac2259a9fb541cbe248e6", + "pid": "040085287", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Krebs (Medizin)" + }, + { + "authorized_access_point": "Brustkrankheit" + } + ], + "related": [ + { + "authorized_access_point": "Gen BRCA 2" + }, + { + "authorized_access_point": "Gen BRCA 1" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133619894", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85016679", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85016679" + } + ], + "authorized_access_point": "Breast - Cancer" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133619894", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11933256", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11933256c" + } + ], + "authorized_access_point": "Sein - Cancer" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254414827", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX575163", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX575163" + } + ], + "authorized_access_point": "Mamas - Ca\u0301ncer" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)124159466X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D001943", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D001943" + } + ], + "authorized_access_point": "Breast Neoplasms" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4008528-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040085287", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4008528-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Brustdru\u0308senkrebs", + "Carcinoma mammae", + "Mammacarcinom", + "Mammakarzinom" + ], + "authorized_access_point": "Brustkrebs" + }, + { + "md5": "65569ab96449f6e76c5cae58fac79a7c", + "pid": "04009006X", + "note": [ + { + "label": [ + "Als Sachbegriff nur benutzt fu\u0308r Zentralstaat und die Bundesebene im Bundesstaat. Fu\u0308r die Gliedstaaten benutze als Sachbegriff die jeweils u\u0308bliche Bezeichnung, z.B. SW Bundesstaaten fu\u0308r USA, Bundesland fu\u0308r O\u0308sterreich, La\u0308nder fu\u0308r Deutschland, Provinz fu\u0308r Kanada, Kanton fu\u0308r die Schweiz usw. und Staat im Allgemeinen. Als instanzieller Oberbegriff bei der Erfassung von Bundesstaat als Gliedstaat soll Staat (gnd/4056618-3) verwendet werden." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Staatenverbindung" + } + ], + "related": [ + { + "authorized_access_point": "Fo\u0308deralismus" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134498322", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85047611", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85047611" + } + ], + "authorized_access_point": "Federal government" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134498322", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13318437", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13318437p" + } + ], + "authorized_access_point": "Gouvernement fe\u0301de\u0301ral" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254368582", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "35834", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/35834" + } + ], + "authorized_access_point": "Governo federale" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970540604", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10039967", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10039967" + } + ], + "authorized_access_point": "Bund" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970541031", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10040040", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10040040" + } + ], + "authorized_access_point": "Bundesstaat" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4009006-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04009006X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4009006-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Zentralstaat", + "Bund (Bundesstaat)", + "Bund" + ], + "authorized_access_point": "Bundesstaat" + }, + { + "md5": "3177fff6a5f9c1cf3766237a9b0bf2bf", + "pid": "040090809", + "note": [ + { + "label": [ + "Papier, das durch den Aufstrich von Farbe oder durch Bedrucken, Kaschieren und andere Oberfla\u0308chenbehandlungen seine Farbigkeit erha\u0308lt" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Spezialpapier" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4009080-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040090809", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4009080-2", + "source": "GND" + } + ], + "authorized_access_point": "Buntpapier" + }, + { + "md5": "118c5321c3b9ca72b4151c832b5fbf95", + "pid": "04009104X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Befestigung" + }, + { + "authorized_access_point": "Adelshaus" + }, + { + "authorized_access_point": "Residenz" + } + ], + "related": [ + { + "authorized_access_point": "Burgenkunde" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134636903", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85020702", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85020702" + } + ], + "authorized_access_point": "Castles" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134636903", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11931695", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11931695w" + } + ], + "authorized_access_point": "Cha\u0302teaux forts" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4009104-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04009104X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4009104-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Burgen" + ], + "authorized_access_point": "Burg" + }, + { + "md5": "d2059d1dda62767a4b1916ead06cf002", + "pid": "040092755", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schadstoffbelastung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134659253", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2009118139", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2009118139" + } + ], + "authorized_access_point": "Cadmium - Environmental aspects" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134397658", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh00004598", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00004598" + } + ], + "authorized_access_point": "Effect of cadmium on" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134397658", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13757341", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13757341x" + } + ], + "authorized_access_point": "Effets du cadmium" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4009275-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040092755", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4009275-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Cadmium", + "Cadmiumgehalt (Cadmiumbelastung)" + ], + "authorized_access_point": "Cadmiumbelastung" + }, + { + "md5": "225251352201f82fd4a303d0ba4f5224", + "pid": "040098923", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Systematik" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333245947", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12000515", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12000515v" + } + ], + "authorized_access_point": "Chimiotaxinomie" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133693687", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11981794", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11981794v" + } + ], + "authorized_access_point": "Plantes - Chimiotaxinomie" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256201782", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "1526", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_1526" + } + ], + "authorized_access_point": "chemotaxonomy" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4009892-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040098923", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4009892-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Chemosystematik" + ], + "authorized_access_point": "Chemotaxonomie" + }, + { + "md5": "3cbb6d8efa2de018d8a3ced02fd0a58f", + "pid": "040105423", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Polymere" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134081979", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh96003095", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh96003095" + } + ], + "authorized_access_point": "Copolymers" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134081979", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11983800", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11983800f" + } + ], + "authorized_access_point": "Copolyme\u0300res" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4010542-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040105423", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4010542-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Mischpolymere" + ], + "authorized_access_point": "Copolymere" + }, + { + "md5": "f831b57df11327fea7593a0ff29a4ab9", + "pid": "040110680", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Krebs (Medizin)" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134492731", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85067585", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85067585" + } + ], + "authorized_access_point": "Intestines - Cancer" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1241596999", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D007414", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D007414" + } + ], + "authorized_access_point": "Intestinal Neoplasms" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4011068-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040110680", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4011068-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Intestinalcarcinom", + "Darmkarzinom" + ], + "authorized_access_point": "Darmkrebs" + }, + { + "md5": "547677721cacb60dcaacaa515e9975ac", + "pid": "040130193", + "note": [ + { + "label": [ + "Ohne HZ Motiv", + "Neben dem Recht auch als Allgemeinbegriff benutzt." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4013019-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040130193", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4013019-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Drittperson", + "Der Dritte", + "Drittbeteiligter" + ], + "authorized_access_point": "Dritter" + }, + { + "md5": "cafccdb044ce5605b1d18920b8e6703f", + "pid": "040132153", + "note": [ + { + "label": [ + "Mit dem Du\u0308ngemittel wird i.d.R. ein Kompositum gebildet, z.B. Gu\u0308lledu\u0308ngung" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Pflanzenbau" + } + ], + "related": [ + { + "authorized_access_point": "Du\u0308ngemittel" + }, + { + "authorized_access_point": "Bestellung (Landbau)" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134228384", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85047920", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85047920" + } + ], + "authorized_access_point": "Fertilizers - Application" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134228384", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12244082", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12244082r" + } + ], + "authorized_access_point": "Engrais et amendements - E\u0301pandage" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256206393", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10795", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_10795" + } + ], + "authorized_access_point": "fertilizer application" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4013215-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040132153", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4013215-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Pflanzendu\u0308ngung" + ], + "authorized_access_point": "Du\u0308ngung" + }, + { + "md5": "7749c0f00766abddc01efee3027d4f2c", + "pid": "040136302", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Familie" + }, + { + "authorized_access_point": "Eheliche Lebensgemeinschaft" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966724763", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "15937-1", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/15937-1" + } + ], + "authorized_access_point": "Ehe" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970544901", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10041471", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10041471" + } + ], + "authorized_access_point": "Ehe" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4013630-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040136302", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4013630-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Eheleben", + "Ehen" + ], + "authorized_access_point": "Ehe" + }, + { + "md5": "522e3317f51f4343c19eb69452a9afd7", + "pid": "040137465", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Krebs (Medizin)" + }, + { + "authorized_access_point": "Eierstocktumor" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134590326", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2010104661", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2010104661" + } + ], + "authorized_access_point": "Ovaries - Cancer" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1241598770", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D010051", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D010051" + } + ], + "authorized_access_point": "Ovarian Neoplasms" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4013746-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040137465", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4013746-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Ovarialkarzinom", + "Ovarialcarcinom", + "Ovarialkrebs" + ], + "authorized_access_point": "Eierstockkrebs" + }, + { + "md5": "467f4ffd64b7f2fbd4e3ca7e82cbe8f9", + "pid": "040143376", + "note": [ + { + "label": [ + "Ungerichtet, im Gegensatz zu Elektronenstrahl" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Teilchenstrahlung" + } + ], + "related": [ + { + "authorized_access_point": "Freies Elektron" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134785607", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85042200", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85042200" + } + ], + "authorized_access_point": "Electron beams" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134785607", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11953144", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11953144h" + } + ], + "authorized_access_point": "Faisceaux e\u0301lectroniques" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4014337-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040143376", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4014337-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Elektronenstrahlen (Elektronenstrahlung)" + ], + "authorized_access_point": "Elektronenstrahlung" + }, + { + "md5": "474e1416df1ebf29dec56d543c5b1a7b", + "pid": "040143503", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Baugruppe" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134047428", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85042373", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85042373" + } + ], + "authorized_access_point": "Electronic systems" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134047428", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11977451", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119774510" + } + ], + "authorized_access_point": "Syste\u0300mes e\u0301lectroniques" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254332472", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "7588", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/7588" + } + ], + "authorized_access_point": "Sistemi elettronici" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4014350-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040143503", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4014350-8", + "source": "GND" + } + ], + "authorized_access_point": "Elektronische Baugruppe" + }, + { + "md5": "ad20d7aaba13c27cf5c2d22d4fb444db", + "pid": "040158292", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Evangelische Kirche" + }, + { + "authorized_access_point": "Kirchengemeinde" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4015829-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040158292", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4015829-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Evangelische Kirchengemeinde", + "Evangelische Pfarrei" + ], + "authorized_access_point": "Evangelische Gemeinde" + }, + { + "md5": "e96c149aa7056baca704b519f438d7cc", + "pid": "04015985X", + "note": [ + { + "label": [ + "Grafisch gestalteter Besitzervermerk in Zettelform, der auf die Innenseite von Bucheinba\u0308nden geklebt wird" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Eigentumsmarke" + } + ], + "related": [ + { + "authorized_access_point": "Besitzervermerk" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133626777", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85015646", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85015646" + } + ], + "authorized_access_point": "Bookplates" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133626777", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11937172", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119371729" + } + ], + "authorized_access_point": "Ex-libris" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254334572", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "9382", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/9382" + } + ], + "authorized_access_point": "Ex libris" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254426752", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX527355", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX527355" + } + ], + "authorized_access_point": "Ex libris" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1275771874", + "source": "GND" + }, + { + "type": "uri", + "value": "https://provenienz.gbv.de/T-PRO_Thesaurus_der_Provenienzbegriffe#Anker:Exlibris" + } + ], + "authorized_access_point": "Exlibris" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4015985-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04015985X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4015985-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Bucheignerzeichen", + "Bu\u0308cherzeichen (Exlibris)", + "Buchmarke", + "Ex-Libris" + ], + "authorized_access_point": "Exlibris" + }, + { + "md5": "e1337d0c407fed04484439c8d636c256", + "pid": "040163172", + "note": [ + { + "label": [ + "Fahrtu\u0308chtigkeit bezeichnet die auf einen konkreten Zeitpunkt bezogene Fa\u0308higkeit einer Person, mit einem Fahrzeug sicher am Stra\u00dfenverkehr teilzunehmen. Sie kann z. B. infolge von Drogenkonsum oder Ermu\u0308dung fehlen.", + "Fu\u0308r die generelle, dauerhafte Fa\u0308higkeit zur sicheren Stra\u00dfenverkehrsteilnahme verwende SW Fahreignung." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tauglichkeit" + } + ], + "related": [ + { + "authorized_access_point": "Fahreignung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133804497", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12468051", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb124680516" + } + ], + "authorized_access_point": "Automobilistes - Usage des drogues" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970548982", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10043201", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10043201" + } + ], + "authorized_access_point": "Fahrtauglichkeit" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4016317-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040163172", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4016317-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Fahrtauglichkeit", + "Verkehrstu\u0308chtigkeit", + "Fahruntu\u0308chtigkeit", + "Fahruntauglichkeit", + "Fahrsicherheit", + "Fahrunsicherheit" + ], + "authorized_access_point": "Fahrtu\u0308chtigkeit" + }, + { + "md5": "a4cf593ec7fe4cddb1f5fa6d7cca70dc", + "pid": "040171078", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Archiv" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133639569", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85088046", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85088046" + } + ], + "authorized_access_point": "Motion picture film collections" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133676782", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85006925", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85006925" + } + ], + "authorized_access_point": "Film archives" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133676782", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11973200", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11973200k" + } + ], + "authorized_access_point": "Archives cine\u0301matographiques" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133639569", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11945398", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119453988" + } + ], + "authorized_access_point": "Cine\u0301mathe\u0300ques" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254428798", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX526197", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX526197" + } + ], + "authorized_access_point": "Filmotecas" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4017107-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040171078", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4017107-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Kinemathek", + "Filmothek", + "Film", + "Filmarchive" + ], + "authorized_access_point": "Filmarchiv" + }, + { + "md5": "a8b9355f4f3152a5978a9ca20e88ecc3", + "pid": "040172503", + "note": [ + { + "label": [ + "Nicht fu\u0308r die Sacherschlie\u00dfung als Oberbegriff zu einzelnen Unternehmen verwendet; verwende in diesem Fall das Schlagwort \"Unternehmen\" oder einen spezifischeren Begriff. - Hingegen zu verwenden als identifizierender Zusatz (IZ) fu\u0308r die Individualisierung von Ko\u0308rperschaftsnamen in der GND gema\u0308\u00df \u201eKategorie einer Ko\u0308rperschaft\u201c, RDA-E-K070; bei der Verwendung als IZ im Bevorzugten Namen dann auch als instantieller Oberbegriff (obin). (\"Kategorie einer Ko\u0308rperschaft\" verwendet die umgangssprachliche Bedeutung von Firma)." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Unternehmen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4017250-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040172503", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4017250-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Firmierung", + "Firmenname", + "Firmenbezeichnung", + "Unternehmensname", + "Handelsname" + ], + "authorized_access_point": "Firma" + }, + { + "md5": "e5c3f6c59462ae08b492f314d8d3efc2", + "pid": "040189074", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Elektromagnetische_St%C3%B6rung&oldid=191732329" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Elektromagnetische Sto\u0308rung (auch Funksto\u0308rung) ist die Auswirkung einer durch Aussendung, Ausstrahlung oder Induktion (oder durch die Kombination von Aussendungen, Ausstrahlungen oder Induktionen) entstehende unerwu\u0308nschte Energie auf den Empfang in einem Funksystem; diese Auswirkung macht sich durch Verschlechterung der U\u0308bertragungsgu\u0308te, durch Entstellung oder Verlust von Nachrichteninhalten bemerkbar, welche bei Fehlen dieser unerwu\u0308nschten Energie verfu\u0308gbar wa\u0308re." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Sto\u0308rstrahlung" + }, + { + "authorized_access_point": "Elektromagnetische Vertra\u0308glichkeit" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4018907-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040189074", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4018907-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Elektromagnetische Sto\u0308rung", + "electromagnetic interference" + ], + "authorized_access_point": "Funksto\u0308rung" + }, + { + "md5": "1537c798d3c44fe58d2343d3bd89c49a", + "pid": "040195589", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Grafik" + }, + { + "authorized_access_point": "Design" + } + ], + "related": [ + { + "authorized_access_point": "Kommunikationsdesign" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4019558-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040195589", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4019558-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Gebrauchsgrafik", + "Gebrauchsgraphik", + "Graphikdesign", + "Graphic design", + "Grafik-Design" + ], + "authorized_access_point": "Grafikdesign" + }, + { + "md5": "daf2e6b0f8a4dde12919e5846c51e42e", + "pid": "040200159", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134594607", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13319114", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13319114f" + } + ], + "authorized_access_point": "Communaute\u0301" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966756886", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "16587-4", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/16587-4" + } + ], + "authorized_access_point": "Gemeinschaft" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)97055317X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10041283", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10041283" + } + ], + "authorized_access_point": "Gemeinschaft" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4020015-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040200159", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4020015-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Soziale Gemeinschaft", + "Gemeinschaften" + ], + "authorized_access_point": "Gemeinschaft" + }, + { + "md5": "40a940a863c72449fd54e247feedef6c", + "pid": "040200728", + "note": [ + { + "label": [ + "Benutzt fu\u0308r erwerbsma\u0308\u00dfigen Anbau, ansonsten verwende SW Gemu\u0308segarten" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gartenbau" + }, + { + "authorized_access_point": "Ackerbau" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332122256", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85142483", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85142483" + } + ], + "authorized_access_point": "Vegetable gardening" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332122256", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11933904", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119339042" + } + ], + "authorized_access_point": "Cultures potage\u0300res" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256216615", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "16509", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_16509" + } + ], + "authorized_access_point": "vegetable growing" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966757432", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "12942-2", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/12942-2" + } + ], + "authorized_access_point": "Gemu\u0308sebau" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4020072-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040200728", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4020072-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Gemu\u0308seanbau", + "Gemu\u0308sekultur", + "Gemu\u0308se" + ], + "authorized_access_point": "Gemu\u0308sebau" + }, + { + "md5": "19b58b780269fab78b0a5042f272494c", + "pid": "040205487", + "note": [ + { + "label": [ + "Wikipedia unter Gender Studies - https://de.wikipedia.org/w/index.php?oldid=244279195" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Allg. Bezeichnung fu\u0308r die strukturell verankerten Beziehungen zwischen den Geschlechtern (im Hinblick auf Zusta\u0308ndigkeiten, Rechte und Pflichten, Rollenbesetzungen und Geschlechtsidentita\u0308ten usw.)", + "Kombiniere z.B. mit Region, Untersuchungsaspekt und/oder Personengruppen. Fu\u0308r Geschlechterverha\u0308ltnis im Sinne des rein zahlenma\u0308\u00dfigen Verha\u0308ltnisses innerhalb einer Population (Geschlechterverteilung) nutze SW \"Geschlechterverha\u0308ltnis \"" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Heteronormativita\u0308t" + }, + { + "authorized_access_point": "Gender" + }, + { + "authorized_access_point": "Geschlechterverha\u0308ltnis (Demographie)" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133940080", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh92001504", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh92001504" + } + ], + "authorized_access_point": "Man-woman relationships" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133940080", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11936576", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11936576j" + } + ], + "authorized_access_point": "Relations hommes-femmes" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254434763", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX541405", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX541405" + } + ], + "authorized_access_point": "Relaciones de pareja" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970553765", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10064589", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10064589" + } + ], + "authorized_access_point": "Geschlechterverha\u0308ltnis" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4020548-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040205487", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4020548-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Geschlechterbeziehung", + "Geschlechterverha\u0308ltnisse", + "Geschlechterbeziehungen", + "Gender relationship" + ], + "authorized_access_point": "Geschlechterverha\u0308ltnis" + }, + { + "md5": "21cc93bf7d4b6a660fd13e0ec5e1353f", + "pid": "04021334X", + "note": [ + { + "label": [ + "Wiktionary - https://de.wiktionary.org/wiki/Gl%C3%BCckwunsch" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1299918344", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX5026483", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX5026483" + } + ], + "authorized_access_point": "Felicitaciones" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4021334-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04021334X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4021334-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Gratulation", + "Glu\u0308ckwu\u0308nsche" + ], + "authorized_access_point": "Glu\u0308ckwunsch" + }, + { + "md5": "3d0b3d8a90ac29a86dcc37ed9f9312ce", + "pid": "040218066", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Grammatiker" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134128304", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85056259", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85056259" + } + ], + "authorized_access_point": "Grammar" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134567324", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85056260", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85056260" + } + ], + "authorized_access_point": "Grammar, Comparative and general" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134128304", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF120427815", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12042781h" + } + ], + "authorized_access_point": "Grammaire" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254511822", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX535820", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX535820" + } + ], + "authorized_access_point": "Grama\u0301tica" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970555334", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10045876", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10045876" + } + ], + "authorized_access_point": "Grammatik" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4021806-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040218066", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4021806-5", + "source": "GND" + } + ], + "authorized_access_point": "Grammatik" + }, + { + "md5": "4f2fa8fecca06a134a903aa44701e11a", + "pid": "04024055X", + "note": [ + { + "label": [ + "Benutzt fu\u0308r ma\u0308nnliche heilige Personen und die Personengruppe im Plural; als identifizierender Zusatz und als instantieller Oberbegriff bei ma\u0308nnlichen heiligen Personen obligatorisch gem. EH-P-10 zur GND nach RDA" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Namenspatron" + }, + { + "authorized_access_point": "Heilige" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134039107", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85116629", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85116629" + } + ], + "authorized_access_point": "Saints" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134039107", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11975976", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119759767" + } + ], + "authorized_access_point": "Saints" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254325468", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "3549", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/3549" + } + ], + "authorized_access_point": "Santi" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254439153", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX526019", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX526019" + } + ], + "authorized_access_point": "Santos cristianos" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4024055-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04024055X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4024055-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Nothelfer" + ], + "authorized_access_point": "Heiliger" + }, + { + "md5": "6aa4ff77f34f293bb81c88c4e69b2528", + "pid": "040246655", + "note": [ + { + "label": [ + "Benutzt als Oberbegriff f. Blutgefa\u0308sssystem u. Herz" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Blutkreislauf" + }, + { + "authorized_access_point": "Biologisches System" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133623077", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11934858", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11934858z" + } + ], + "authorized_access_point": "Appareil cardiovasculaire" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254447202", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX525158", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX525158" + } + ], + "authorized_access_point": "Aparato circulatorio" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4024665-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040246655", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4024665-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Herz-Kreislauf-System", + "Cardiovascula\u0308res System" + ], + "authorized_access_point": "Kardiovaskula\u0308res System" + }, + { + "md5": "d6a385a337f1642de85cc82261940fb0", + "pid": "040247996", + "note": [ + { + "label": [ + "Als Berufsbezeichnung in Personendatensa\u0308tzen zugelassen; als Berufsbezeichnung in Personendatensa\u0308tzen nur fu\u0308r Personen zu verwenden, die sich als praktizierende Hexen verstehen und diesen Begriff als Selbstbezeichnung verwenden; fu\u0308r die Opfer von Hexenprozessen verwende SW Weibliche Angeklagte in Kombination mit SW Hexenprozess, beide jeweils mit dem Code rela" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Hexerei" + }, + { + "authorized_access_point": "Magier" + }, + { + "authorized_access_point": "Hexenglaube" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134220030", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh92005718", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh92005718" + } + ], + "authorized_access_point": "Witches" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134220030", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12226069", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12226069m" + } + ], + "authorized_access_point": "Sorcie\u0300res" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254439862", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX528134", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX528134" + } + ], + "authorized_access_point": "Brujas" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)97055723X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10046607", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10046607" + } + ], + "authorized_access_point": "Hexe" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4024799-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040247996", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4024799-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Hexenwesen", + "Hexen" + ], + "authorized_access_point": "Hexe" + }, + { + "md5": "d1ca36de8bd4383fa0d759e732464438", + "pid": "040252434", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=243780470" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Hochschullehrerin" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)129155713X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85028378", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85028378" + } + ], + "authorized_access_point": "College teachers" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)129155713X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11947431", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://ark.bnf.fr/ark:/12148/cb11947431r" + } + ], + "authorized_access_point": "Professeurs (enseignement supe\u0301rieur)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966775546", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "11372-1", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/11372-1" + } + ], + "authorized_access_point": "Hochschullehrer" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970557574", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10041291", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10041291" + } + ], + "authorized_access_point": "Hochschullehrer" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4025243-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040252434", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4025243-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Professor (Hochschule)", + "Lehrko\u0308rper", + "Lehrpersonal", + "Universita\u0308tsprofessor", + "Hochschulprofessor" + ], + "authorized_access_point": "Hochschullehrer" + }, + { + "md5": "adba146c6d48bf8743ff8bb748b0566a", + "pid": "040257029", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Holzfehler&oldid=245078730" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Als Holzfehler oder Wuchsfehler werden im Warenverkehr mit Rohholz diejenigen Holzmerkmale bezeichnet, die die Holznutzung beeintra\u0308chtigen." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Holzmerkmal" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134636652", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85147789", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85147789" + } + ], + "authorized_access_point": "Wood - Defects" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256222291", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "28188", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_28188" + } + ], + "authorized_access_point": "wood defects" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4025702-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040257029", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4025702-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Holz", + "Wuchsfehler" + ], + "authorized_access_point": "Holzfehler" + }, + { + "md5": "0c47059dc151324c69390a30a90f1bd9", + "pid": "040267210", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Indian reorganization act" + }, + { + "authorized_access_point": "Indianerreduktion" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133950914", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85065369", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85065369" + } + ], + "authorized_access_point": "Indian reservations" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133950914", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11941190", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119411900" + } + ], + "authorized_access_point": "Re\u0301serves indiennes" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1289266360", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "30365-5", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/30365-5" + } + ], + "authorized_access_point": "Reservat (Ethnische Gruppe)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4026721-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040267210", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4026721-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Indianerreservat", + "Indianerreservation", + "Reservat", + "Indianerreservate", + "Indian Reservation" + ], + "authorized_access_point": "Reservat (Ethnologie)" + }, + { + "md5": "de12aa62ee4c567230870a5eaf66d3e5", + "pid": "040270076", + "note": [ + { + "label": [ + "Bei Enzymen verwende Enzyminhibitor" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Antagonist" + }, + { + "authorized_access_point": "Inhibition" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133717403", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12082271", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12082271n" + } + ], + "authorized_access_point": "Inhibiteurs" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254389520", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "58311", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/58311" + } + ], + "authorized_access_point": "Inibitori" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4027007-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040270076", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4027007-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Hemmstoff" + ], + "authorized_access_point": "Inhibitor" + }, + { + "md5": "f56aed501056f3547c14f2f4172303e1", + "pid": "040296709", + "note": [ + { + "label": [ + "Fu\u0308r bildliche, satirische Darstellungen (RDA AH-007)." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Satire" + } + ], + "related": [ + { + "authorized_access_point": "Humoristische Darstellung" + }, + { + "authorized_access_point": "Cartoon" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133938841", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11936063", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11936063t" + } + ], + "authorized_access_point": "Caricatures et dessins humoristiques" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134048718", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11977710", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119777107" + } + ], + "authorized_access_point": "Caricature" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)97056287X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10040205", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10040205" + } + ], + "authorized_access_point": "Karikatur" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4029670-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040296709", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4029670-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Satire", + "Cartoon (Formschlagwort)", + "Bildsatire", + "Karikaturen", + "Satirische Darstellung (Kunst)" + ], + "authorized_access_point": "Karikatur" + }, + { + "md5": "17ab31cd49f5355a5cda3df27c6b1df4", + "pid": "040297519", + "note": [ + { + "label": [ + "Ausbildungsberuf 1938-1989, abgelo\u0308st vom Karosserie- und Fahrzeugbauer" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mechaniker" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134746075", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85020458", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85020458" + } + ], + "authorized_access_point": "Carriage industry" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134746075", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13163043", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb131630430" + } + ], + "authorized_access_point": "Carrossiers" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4029751-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040297519", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4029751-2", + "source": "GND" + } + ], + "authorized_access_point": "Karosseriebauer" + }, + { + "md5": "3c64f0945f3b04e28834130427573cc4", + "pid": "040299848", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kirchengemeinde" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4029984-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040299848", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4029984-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Katholische Kirchengemeinde", + "Katholische Pfarrei", + "Ro\u0308misch-katholische Gemeinde", + "Katholische Gemeinden" + ], + "authorized_access_point": "Katholische Gemeinde" + }, + { + "md5": "5d8a543f6f4e1e01c63da4960038c6fb", + "pid": "040302482", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kurve" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134426828", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85034931", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85034931" + } + ], + "authorized_access_point": "Curves in engineering" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134426828", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF14495002", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb144950025" + } + ], + "authorized_access_point": "Courbes en technologie" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4030248-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040302482", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4030248-9", + "source": "GND" + } + ], + "authorized_access_point": "Kennlinie" + }, + { + "md5": "1a3bb16fcb1a987f4004bdd37c18308d", + "pid": "04032009X", + "note": [ + { + "label": [ + "Mit einzelnen Richtungen u. Gattungen werden keine Komposita gebildet. Als Homonymenzusatz bei Personenschlagwo\u0308rtern zugelassen." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Musiker" + } + ], + "related": [ + { + "authorized_access_point": "Komponistin" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133614000", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85029386", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85029386" + } + ], + "authorized_access_point": "Composers" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133614000", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11931721", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11931721m" + } + ], + "authorized_access_point": "Compositeurs" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254315225", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "72", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/72" + } + ], + "authorized_access_point": "Compositori" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970564929", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10049435", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10049435" + } + ], + "authorized_access_point": "Komponist" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4032009-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04032009X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4032009-1", + "source": "GND" + } + ], + "authorized_access_point": "Komponist" + }, + { + "md5": "44cc37ab34d08f99e001ef0161e143bd", + "pid": "040328260", + "note": [ + { + "label": [ + "Ab dem 1.1.2004 neue offizielle Berufsbezeichnung in Dtld: \"Gesundheits- und Krankenpflegerin\". Vorher ausgebildete Pflegekra\u0308fte ko\u0308nnen wahlweise die alte oder die neue Berufsbezeichnung fu\u0308hren.", + "Als Homonymenzusatz bei Personenschlagwo\u0308rtern zugelassen." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Pflegepersonal" + } + ], + "related": [ + { + "authorized_access_point": "Krankenpfleger" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133947042", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85093349", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85093349" + } + ], + "authorized_access_point": "Nurses" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133947042", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11939194", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119391943" + } + ], + "authorized_access_point": "Infirmie\u0300res" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133465350X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D009726", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D009726" + } + ], + "authorized_access_point": "Nurses" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)97056628X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10045518", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10045518" + } + ], + "authorized_access_point": "Krankenschwester" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4032826-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040328260", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4032826-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Gesundheits- und Krankenpflegerin", + "Krankenpflegerin", + "Pflegefachfrau", + "Nurse" + ], + "authorized_access_point": "Krankenschwester" + }, + { + "md5": "c9cc25243ac8f9be161b80f2448c7ae5", + "pid": "040335682", + "note": [ + { + "label": [ + "Benutzt fu\u0308r Auseinandersetzungen zwischen Kirche u. Staat im weiteren Sinne, u. zwar in Deutschland - auch nach Bismarck - sowie in anderen La\u0308ndern; verknu\u0308pfe mit Ort u. Zeit; fu\u0308r den nationalsozialistischen Kirchenkampf benutze SW Kirchenkampf <1933-1945>" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133964583", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85073404", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85073404" + } + ], + "authorized_access_point": "Kulturkampf" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133964583", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11947326", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11947326w" + } + ], + "authorized_access_point": "Kulturkampf" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254453180", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX5526666", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX5526666" + } + ], + "authorized_access_point": "Kulturkampf" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970567138", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10050254", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10050254" + } + ], + "authorized_access_point": "Kulturkampf" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4033568-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040335682", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4033568-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Kirchenkampf (Kulturkampf)" + ], + "authorized_access_point": "Kulturkampf" + }, + { + "md5": "ac2e72bd0c6d45ddb2394bd3b883378e", + "pid": "040344029", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Prima\u0308rer Sektor" + } + ], + "related": [ + { + "authorized_access_point": "Landbau" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133603750", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85002415", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85002415" + } + ], + "authorized_access_point": "Agriculture" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133603750", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF119347980", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11934798x" + } + ], + "authorized_access_point": "Agriculture" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254321667", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "1992", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/1992" + } + ], + "authorized_access_point": "Agricoltura" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254454713", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX4576248", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX4576248" + } + ], + "authorized_access_point": "Agricultura" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1253486611", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "203", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_203" + } + ], + "authorized_access_point": "agriculture" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1253499470", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D000383", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000383" + } + ], + "authorized_access_point": "Agriculture" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966830601", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "12945-3", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/12945-3" + } + ], + "authorized_access_point": "Landwirtschaft" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970568134", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10034547", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10034547" + } + ], + "authorized_access_point": "Landwirtschaft" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4034402-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040344029", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4034402-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Agrarwirtschaft", + "Agrarsektor", + "Landwirtschaftlicher Sektor" + ], + "authorized_access_point": "Landwirtschaft" + }, + { + "md5": "13d875e2d6ab50f17773858638114eba", + "pid": "04034889X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Lebensmittelwirtschaft" + }, + { + "authorized_access_point": "Genussmittelindustrie" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134561490", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85050282", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85050282" + } + ], + "authorized_access_point": "Food industry and trade" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256232211", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "3020", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_3020" + } + ], + "authorized_access_point": "food industry" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970574878", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10045624", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10045624" + } + ], + "authorized_access_point": "Nahrungs- und Genussmittelgewerbe" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4034889-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04034889X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4034889-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Erna\u0308hrungsindustrie", + "Nahrungs- und Genussmittelindustrie", + "Nahrungsmittelindustrie", + "Lebensmittel" + ], + "authorized_access_point": "Lebensmittelindustrie" + }, + { + "md5": "8a55b48f5573eb4e463dd8bf636cce5f", + "pid": "040351130", + "note": [ + { + "label": [ + "Personen, die in einem Ausbildungsberuf im dualen System ausgebildet werden.", + "Verknu\u0308pfe mit der Berufsbezeichnung" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Berufsausbildung" + }, + { + "authorized_access_point": "Anlernling" + }, + { + "authorized_access_point": "Lehrling" + }, + { + "authorized_access_point": "Weibliche Auszubildende" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134495900", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11951682", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11951682z" + } + ], + "authorized_access_point": "Apprentis" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966693582", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "11288-4", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/11288-4" + } + ], + "authorized_access_point": "Auszubildende" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970535740", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10037155", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10037155" + } + ], + "authorized_access_point": "Auszubildender" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4035113-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040351130", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4035113-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Lehrling (O\u0308sterreich)" + ], + "authorized_access_point": "Auszubildender" + }, + { + "md5": "3f758aa9458b4b24b003979e2c0f4f9d", + "pid": "040354415", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Lektu\u0308re" + }, + { + "authorized_access_point": "Leserin" + }, + { + "authorized_access_point": "Lesen" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134807252", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85015758", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85015758" + } + ], + "authorized_access_point": "Books and reading" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332421776", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh99004859", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh99004859" + } + ], + "authorized_access_point": "Books and reading" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134807252", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13318354", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb133183540" + } + ], + "authorized_access_point": "Livres et lecture" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)125436207X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "30781", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/30781" + } + ], + "authorized_access_point": "Lettori" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970569491", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10051152", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10051152" + } + ], + "authorized_access_point": "Leser" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4035441-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040354415", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4035441-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Lesepublikum", + "Leserschaft" + ], + "authorized_access_point": "Leser" + }, + { + "md5": "f88c440e11dd0ab7f5257205236c8869", + "pid": "040357228", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Spirituosen" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133926541", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85077347", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85077347" + } + ], + "authorized_access_point": "Liqueurs" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133926541", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11932253", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119322533" + } + ], + "authorized_access_point": "Liqueurs" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254351760", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "22490", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/22490" + } + ], + "authorized_access_point": "Liquori" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254456481", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX527213", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX527213" + } + ], + "authorized_access_point": "Licores" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256233048", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "4369", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_4369" + } + ], + "authorized_access_point": "liqueurs" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4035722-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040357228", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4035722-3", + "source": "GND" + } + ], + "authorized_access_point": "Liko\u0308r" + }, + { + "md5": "9e9fe30317815ace3f37637f53b70f92", + "pid": "040366898", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Herpetologie" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133610870", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85004598", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85004598" + } + ], + "authorized_access_point": "Amphibians" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133610870", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11930880", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119308805" + } + ], + "authorized_access_point": "Amphibiens" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)125432187X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "2076", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/2076" + } + ], + "authorized_access_point": "Anfibi" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254457917", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX525093", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX525093" + } + ], + "authorized_access_point": "Anfibios" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256233978", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "359", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_359" + } + ], + "authorized_access_point": "amphibians" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4036689-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040366898", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4036689-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Amphibia", + "Amphibien" + ], + "authorized_access_point": "Lurche" + }, + { + "md5": "848f7f25513af1c80c522c015c450c42", + "pid": "040372170", + "note": [ + { + "label": [ + "Ausbildungsberuf", + "Als Homonymenzusatz bei Personenschlagwo\u0308rtern zugelassen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Handwerker" + }, + { + "authorized_access_point": "Bauwirtschaftsberuf" + } + ], + "related": [ + { + "authorized_access_point": "Malerin und Lackiererin" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113401631X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85096659", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85096659" + } + ], + "authorized_access_point": "Painters, Industrial" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113401631X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11967308", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11967308c" + } + ], + "authorized_access_point": "Peintres en ba\u0302timent" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4037217-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040372170", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4037217-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Lackierer", + "Anstreicher" + ], + "authorized_access_point": "Maler und Lackierer" + }, + { + "md5": "944bd42e917db661a551ec055b2b8522", + "pid": "040389065", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Chemische Verbindungen" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133724973", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85095561", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85095561" + } + ], + "authorized_access_point": "Organometallic compounds" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133724973", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12128919", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12128919v" + } + ], + "authorized_access_point": "Compose\u0301s organome\u0301talliques" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1299901581", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX528416", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX528416" + } + ], + "authorized_access_point": "Compuestos organometa\u0301licos" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336147954", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D009942", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D009942" + } + ], + "authorized_access_point": "Organometallic Compounds" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4038906-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040389065", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4038906-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Metallorganyle", + "Organische Metallverbindungen", + "Organometallverbindungen", + "Metallierte Verbindungen" + ], + "authorized_access_point": "Metallorganische Verbindungen" + }, + { + "md5": "a3d5f899639aac45dabf86acb450bae8", + "pid": "040403688", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motorradsport" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134008813", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85087573", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85087573" + } + ], + "authorized_access_point": "Motocross" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134008813", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11965366", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119653662" + } + ], + "authorized_access_point": "Motocross" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254464212", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX527735", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX527735" + } + ], + "authorized_access_point": "Motocross" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4040368-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040403688", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4040368-3", + "source": "GND" + } + ], + "authorized_access_point": "Moto-Cross" + }, + { + "md5": "004ed7911e764b5e09dc2b038e5177eb", + "pid": "040406938", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Encephalomyelitis" + }, + { + "authorized_access_point": "Entmarkungskrankheit" + } + ], + "related": [ + { + "authorized_access_point": "Multiple-Sklerose-Kranker" + }, + { + "authorized_access_point": "Weibliche Multiple-Sklerose-Kranke" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133629555", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85088374", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85088374" + } + ], + "authorized_access_point": "Multiple sclerosis" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133629555", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11938408", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119384088" + } + ], + "authorized_access_point": "Scle\u0301rose en plaques" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133799876", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12447406", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12447406t" + } + ], + "authorized_access_point": "Ence\u0301phalomye\u0301lite aigue\u0308 dissemine\u0301e" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254355677", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "25174", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/25174" + } + ], + "authorized_access_point": "Sclerosi multipla" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254464468", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX528904", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX528904" + } + ], + "authorized_access_point": "Esclerosis mu\u0301ltiple" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1241613591", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D009103", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D009103" + } + ], + "authorized_access_point": "Multiple Sclerosis" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)97057424X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10049932", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10049932" + } + ], + "authorized_access_point": "Multiple Sklerose" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4040693-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040406938", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4040693-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Encephalomyelitis disseminata" + ], + "authorized_access_point": "Multiple Sklerose" + }, + { + "md5": "4b67ee8b78b78fe98d9f28ca06bc25b8", + "pid": "040411583", + "note": [ + { + "label": [ + "Benutzt seit der Gru\u0308ndung des Staates Israel" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Internationale Politik" + } + ], + "related": [ + { + "authorized_access_point": "Pala\u0308stinafrage" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133712010", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh87002535", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh87002535" + } + ], + "authorized_access_point": "Arab-Israeli conflict" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133712010", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12047729", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12047729m" + } + ], + "authorized_access_point": "Conflit israe\u0301lo-arabe" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)129990159X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX528425", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX528425" + } + ], + "authorized_access_point": "Conflicto a\u0301rabe-israeli\u0301" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1027620000", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10071133", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10071133" + } + ], + "authorized_access_point": "Nahost-Konflikt" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4041158-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040411583", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4041158-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Arabisch-israelischer Konflikt", + "Israelisch-arabischer Konflikt" + ], + "authorized_access_point": "Nahostkonflikt" + }, + { + "md5": "f152878956a8a6f29d90acfd7d85676f", + "pid": "04041177X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Malerei" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133961800", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11946114", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119461143" + } + ], + "authorized_access_point": "Peinture nai\u0308ve" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4041177-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04041177X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4041177-1", + "source": "GND" + } + ], + "authorized_access_point": "Naive Malerei" + }, + { + "md5": "b46e562d7616b442afe250a7cb088c2a", + "pid": "040414124", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Religionsethnologie" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133630057", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13318507", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb133185071" + } + ], + "authorized_access_point": "Religion primitive" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254479139", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX525120", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX525120" + } + ], + "authorized_access_point": "Religiones primitivas" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970575343", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10053067", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10053067" + } + ], + "authorized_access_point": "Naturreligion" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4041412-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040414124", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4041412-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Naturreligion", + "Naturvolk", + "Elementarreligion", + "Primitive Religion", + "Stammesreligion", + "Naturreligionen", + "Indigene Religion", + "Traditionelle Religion", + "Traditionale Religion" + ], + "authorized_access_point": "Ethnische Religion" + }, + { + "md5": "4d0a239ad009706000fcbb366382bd0b", + "pid": "040416496", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zelle" + } + ], + "related": [ + { + "authorized_access_point": "Paraneuron" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133631606", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85091153", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85091153" + } + ], + "authorized_access_point": "Neurons" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133631606", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11940272", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119402723" + } + ], + "authorized_access_point": "Neurones" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254326529", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "4023", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/4023" + } + ], + "authorized_access_point": "Neuroni" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254466584", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX531517", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX531517" + } + ], + "authorized_access_point": "Neuronas" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336588594", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D009474", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D009474" + } + ], + "authorized_access_point": "Neurons" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4041649-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040416496", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4041649-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Ganglienzelle", + "Neurozyt", + "Neuron" + ], + "authorized_access_point": "Nervenzelle" + }, + { + "md5": "6a74e9b53cf6ba2f6ae6fc072443508c", + "pid": "040432149", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Politische O\u0308konomie" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133662560", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2010107054", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2010107054" + } + ], + "authorized_access_point": "Political science - Economic aspects" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133662560", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11963634", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11963634s" + } + ], + "authorized_access_point": "E\u0301conomie politique et politique" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966926625", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10975-4", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/10975-4" + } + ], + "authorized_access_point": "Neue politische O\u0308konomie" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4043214-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040432149", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4043214-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Neue Politische O\u0308konomie", + "Politik" + ], + "authorized_access_point": "O\u0308konomische Theorie der Politik" + }, + { + "md5": "19bb4bd577ab800fd7380eb5a2aa7fc5", + "pid": "040438163", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Chemische Verbindungen" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133638392", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85095499", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85095499" + } + ], + "authorized_access_point": "Organic compounds" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133638392", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11944403", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11944403s" + } + ], + "authorized_access_point": "Compose\u0301s organiques" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)125431511X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "53", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/53" + } + ], + "authorized_access_point": "Composti organici" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254469605", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX532834", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX532834" + } + ], + "authorized_access_point": "Compuestos orga\u0301nicos" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336147903", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D009930", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D009930" + } + ], + "authorized_access_point": "Organic Chemicals" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4043816-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040438163", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4043816-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Organische Verbindung" + ], + "authorized_access_point": "Organische Verbindungen" + }, + { + "md5": "b6279dca85e0a24dae6a3fea790b8dae", + "pid": "040448924", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Pathographie&oldid=240762026" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4044892-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040448924", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4044892-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Pathografie" + ], + "authorized_access_point": "Pathographie" + }, + { + "md5": "ebe98bfdefaad8e7ee2e4f0ddc011a08", + "pid": "040448932", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Medizin" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113361910X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85098685", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85098685" + } + ], + "authorized_access_point": "Pathology" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113361910X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11933033", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119330335" + } + ], + "authorized_access_point": "Pathologie" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1299898416", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX525081", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX525081" + } + ], + "authorized_access_point": "Patologi\u0301a" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256243809", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "5631", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_5631" + } + ], + "authorized_access_point": "pathology" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1241617228", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D010336", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D010336" + } + ], + "authorized_access_point": "Pathology" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970578377", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10054226", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10054226" + } + ], + "authorized_access_point": "Pathologie" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4044893-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040448932", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4044893-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Allgemeine Pathologie", + "Spezielle Pathologie", + "Klinische Pathologie", + "Allgemeine Krankheitslehre" + ], + "authorized_access_point": "Pathologie" + }, + { + "md5": "a2b0a881f6d51ef14632ed8d1f2cf851", + "pid": "040451259", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133631479", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85099692", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85099692" + } + ], + "authorized_access_point": "Peptides" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133631479", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11940224", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119402247" + } + ], + "authorized_access_point": "Peptides" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254323341", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "2724", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/2724" + } + ], + "authorized_access_point": "Peptidi" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254471782", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX533740", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX533740" + } + ], + "authorized_access_point": "Pe\u0301ptidos" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336147156", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D010455", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D010455" + } + ], + "authorized_access_point": "Peptides" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4045125-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040451259", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4045125-2", + "source": "GND" + } + ], + "authorized_access_point": "Peptide" + }, + { + "md5": "1e4f3fc9b1744a7ebab67c88fb325f33", + "pid": "040459195", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Mannequin" + }, + { + "authorized_access_point": "Dressman" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1324589744", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh93000734", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh93000734" + } + ], + "authorized_access_point": "Photographers' models" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333668309", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11968862", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11968862s" + } + ], + "authorized_access_point": "Mode\u0300les (art)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4045919-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040459195", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4045919-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Photomodell", + "Model (Beruf)" + ], + "authorized_access_point": "Fotomodell" + }, + { + "md5": "51c82eeabd454f60852bf808dd20f224", + "pid": "040459608", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Physikalische Medizin" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133995462", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85101568", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85101568" + } + ], + "authorized_access_point": "Physical therapy" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133995462", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11959340", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119593404" + } + ], + "authorized_access_point": "Physiothe\u0301rapie" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254318658", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "1055", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/1055" + } + ], + "authorized_access_point": "Fisioterapia" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254473203", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX526722", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX526722" + } + ], + "authorized_access_point": "Fisioterapia" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4045960-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040459608", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4045960-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Physiotherapie" + ], + "authorized_access_point": "Physikalische Therapie" + }, + { + "md5": "91799e610f5d77868a286fa3fc222a7d", + "pid": "040460495", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Protestantismus" + } + ], + "related": [ + { + "authorized_access_point": "Pietist" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133935265", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85102060", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85102060" + } + ], + "authorized_access_point": "Pietism" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133935265", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11934618", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119346185" + } + ], + "authorized_access_point": "Pie\u0301tisme" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254473386", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX535003", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX535003" + } + ], + "authorized_access_point": "Pietismo" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970579403", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10054565", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10054565" + } + ], + "authorized_access_point": "Pietismus" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4046049-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040460495", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4046049-6", + "source": "GND" + } + ], + "authorized_access_point": "Pietismus" + }, + { + "md5": "a7dc2408053c2c0985f7e3f7c91a366f", + "pid": "040461912", + "note": [ + { + "label": [ + "Ein Placebo (lat. \u201eIch werde gefallen.\u201c) ist eine Scheinsubstanz oder Scheinbehandlung, die die positiven Wirkungen eines Arzneimittels oder einer Intervention nachzuahmen vermag, ohne aber dabei das spezifische Arzneimittel oder die spezifische Behandlungsmethode zu beinhalten." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Arzneimittel" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133647499", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85102563", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85102563" + } + ], + "authorized_access_point": "Placebos (Medicine)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133647499", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11951043", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11951043d" + } + ], + "authorized_access_point": "Effet placebo" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1241618305", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D010919", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D010919" + } + ], + "authorized_access_point": "Placebos" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4046191-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040461912", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4046191-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Blindpra\u0308parat", + "Falsumpra\u0308parat", + "Leerpra\u0308parat", + "Plazebo", + "Scheinarznei" + ], + "authorized_access_point": "Placebo" + }, + { + "md5": "18becbbd207613f4afb7640f7f2ea0c5", + "pid": "040468003", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Biologie" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133684394", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85104917", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85104917" + } + ], + "authorized_access_point": "Population biology" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133684394", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11977642", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11977642k" + } + ], + "authorized_access_point": "Biologie des populations" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254474595", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX534766", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX534766" + } + ], + "authorized_access_point": "Biologi\u0301a de poblaciones" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4046800-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040468003", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4046800-8", + "source": "GND" + } + ], + "authorized_access_point": "Populationsbiologie" + }, + { + "md5": "04b70ac7430220fd83cf6774000b28af", + "pid": "040471233", + "note": [ + { + "label": [ + "Rechtsnormen, die a) die Festsetzung oder Genehmigung von Preisen sowie die Aufrechterhaltung des Preisstandes (Fest-, Ho\u0308chst- oder Mindestpreis) und b) die Preisangaben einschlie\u00dflich der Preisu\u0308berwachung regeln" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wirtschaftsverwaltungsrecht" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133685374", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85106618", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85106618" + } + ], + "authorized_access_point": "Price regulation" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133685374", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11977930", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11977930d" + } + ], + "authorized_access_point": "Prix - Droit" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4047123-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040471233", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4047123-8", + "source": "GND" + } + ], + "authorized_access_point": "Preisrecht" + }, + { + "md5": "3b8edb3f1f61d099e6f522052f89050b", + "pid": "040471713", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Medienrecht" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133975852", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85106520", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85106520" + } + ], + "authorized_access_point": "Press law" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133975852", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11951060", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119510600" + } + ], + "authorized_access_point": "Presse - Droit" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4047171-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040471713", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4047171-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Pre\u00dfrecht" + ], + "authorized_access_point": "Presserecht" + }, + { + "md5": "c9678bd863aa24258ef0c5f33713564b", + "pid": "040475778", + "note": [ + { + "label": [ + "Ohne Homonymenzusatz nur fu\u0308r das Gerichtsverfahren" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Rechtsstreit" + } + ], + "related": [ + { + "authorized_access_point": "Rechtsprechung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133608124", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85137328", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85137328" + } + ], + "authorized_access_point": "Trials" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133410185X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85077662", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85077662" + } + ], + "authorized_access_point": "Litigation" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133608124", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13319040", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13319040q" + } + ], + "authorized_access_point": "Proce\u0300s" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1299899986", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX526521", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX526521" + } + ], + "authorized_access_point": "Procesos" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970553552", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10045081", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10045081" + } + ], + "authorized_access_point": "Gerichtsverfahren" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4047577-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040475778", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4047577-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Gerichtsverfahren", + "Gerichtsprozess", + "Prozesse" + ], + "authorized_access_point": "Prozess" + }, + { + "md5": "e15323c2dc33b447f005e13181414ada", + "pid": "040475972", + "note": [ + { + "label": [ + "Ein Prozessvergleich ist ein nach Klageerhebung zwischen den Parteien, eventuell unter Beitritt eines Dritten, geschlossener Vergleich, der einerseits die Beendigung des Rechtsstreits und andererseits materiell-rechtliche Vereinbarungen, die u\u0308ber den Streitgegenstand hinausgehen ko\u0308nnen, zum Gegenstand hat." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Vergleich (Recht)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4047597-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040475972", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4047597-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Gerichtlicher Vergleich" + ], + "authorized_access_point": "Prozessvergleich" + }, + { + "md5": "c93484b4db9b008c8cd5bce73e0eead2", + "pid": "040490122", + "note": [ + { + "label": [ + "Einzelne Regierungen werden nach \u00a7 614 angesetzt. Fu\u0308r die Behandlung mehrer Regierungen in Bundesstaaten verknu\u0308pfe den jeweiligen Bundesstaat mit der Bezeichnung fu\u0308r die betr. Gliedstaaten und dem Sachschlagwort Regierung, z. B. Deutschland; Bundesland; Regierung." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Regierungsfa\u0308higkeit" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134039077", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh00005941", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00005941" + } + ], + "authorized_access_point": "Government" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134039077", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11975971", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11975971h" + } + ], + "authorized_access_point": "Gouvernement" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134495862", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13319146", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb133191462" + } + ], + "authorized_access_point": "Gouvernement (science politique)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134495870", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13319365", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13319365w" + } + ], + "authorized_access_point": "Politique publique" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256250546", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "11230", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_11230" + } + ], + "authorized_access_point": "government" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966937651", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "16329-5", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/16329-5" + } + ], + "authorized_access_point": "Regierung" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970584970", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10040090", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10040090" + } + ], + "authorized_access_point": "Regierung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4049012-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040490122", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4049012-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Kabinett", + "Ministerrat", + "Staatsfu\u0308hrung", + "Regierungspolitik", + "Regierungen" + ], + "authorized_access_point": "Regierung" + }, + { + "md5": "0e997780907b19bb68cfd9de225afd24", + "pid": "040490297", + "note": [ + { + "label": [ + "Als Homonymenzusatz nach Geographika zugelassen; das Blattgebiet eines Kartenwerks wird durch ein Geographikum mit dem Zusatz wiedergegeben; fu\u0308r die Verwaltungseinheit (Verwaltungsregion), soweit kein spezieller Homonymenzusatz mo\u0308glich; zu im Sinne von Umgebung vgl. \u00a7 204a. Fu\u0308r das Gebiet um eine Insel verknu\u0308pfe diese mit einem geeigneten Sach-SW wie SW Ku\u0308stenmeer bzw. SW Ku\u0308stengebiet (bei Meeresinseln), SW Litoral o. a\u0308" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Umland" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966940318", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "11857-5", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/11857-5" + } + ], + "authorized_access_point": "Region" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970585063", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10044625", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10044625" + } + ], + "authorized_access_point": "Region" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4049029-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040490297", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4049029-4", + "source": "GND" + } + ], + "authorized_access_point": "Region" + }, + { + "md5": "db4ce210649df8d78688b8df9a43d140", + "pid": "04051238X", + "note": [ + { + "label": [ + "Verwendet im geistesgeschichtl. Sinn", + "Fu\u0308r die Aufhebung geistlichen Besitzes verwende SW Sa\u0308kularisation." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Sa\u0308kularismus" + }, + { + "authorized_access_point": "Sa\u0308kularisation" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133648002", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85119462", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85119462" + } + ], + "authorized_access_point": "Secularization (Theology)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133648002", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11951712", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119517122" + } + ], + "authorized_access_point": "Se\u0301cularisation (the\u0301ologie)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133980104", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11952495", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119524950" + } + ], + "authorized_access_point": "De\u0301christianisation" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254481508", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX4576594", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX4576594" + } + ], + "authorized_access_point": "Secularizacio\u0301n (Teologi\u0301a)" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970596367", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10057048", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10057048" + } + ], + "authorized_access_point": "Sa\u0308kularisierung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4051238-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04051238X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4051238-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Entchristlichung", + "Entkirchlichung", + "Verweltlichung" + ], + "authorized_access_point": "Sa\u0308kularisierung" + }, + { + "md5": "caa2426e20ea04c5f182d87b672143ab", + "pid": "040512665", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Lewis-Sa\u0308ure" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113369540X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85000532", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85000532" + } + ], + "authorized_access_point": "Acids" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113369540X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11982607", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119826072" + } + ], + "authorized_access_point": "Acides" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254362630", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "31196", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/31196" + } + ], + "authorized_access_point": "Acidi" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254482210", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX534321", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX534321" + } + ], + "authorized_access_point": "A\u0301cidos" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336148500", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D000143", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000143" + } + ], + "authorized_access_point": "Acids" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4051266-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040512665", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4051266-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Sa\u0308uren" + ], + "authorized_access_point": "Sa\u0308ure" + }, + { + "md5": "9997dde9c023220f45bb448acdd5d8e4", + "pid": "040514927", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bewertung" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)96695016X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "19091-4", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/19091-4" + } + ], + "authorized_access_point": "Lagerbuchfu\u0308hrung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4051492-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040514927", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4051492-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Pauschalbewertung", + "Gesamtbewertung", + "Durchschnittsbewertung" + ], + "authorized_access_point": "Sammelbewertung" + }, + { + "md5": "e234c9c7118351de3ff8a9c9c3df4240", + "pid": "040515842", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Einsatzfahrzeug" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133685951", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11978147", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119781475" + } + ], + "authorized_access_point": "Ambulances" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4051584-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040515842", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4051584-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Krankenwagen", + "Notarztwagen", + "Rettungsfahrzeug", + "Sanita\u0308tsfahrzeug" + ], + "authorized_access_point": "Rettungswagen" + }, + { + "md5": "8cd7a80b0960fbf819029264fe6f6715", + "pid": "040519384", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133956351", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85123237", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85123237" + } + ], + "authorized_access_point": "Skull" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133956351", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11944099", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11944099j" + } + ], + "authorized_access_point": "Cra\u0302ne" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254328386", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "5120", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/5120" + } + ], + "authorized_access_point": "Cranio" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1282201786", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D012886", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D012886" + } + ], + "authorized_access_point": "Skull" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4051938-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040519384", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4051938-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Cranium", + "Kranium", + "Scha\u0308delskelett" + ], + "authorized_access_point": "Scha\u0308del" + }, + { + "md5": "996c8b72e26dcebfbc961af6e67d8489", + "pid": "04053376X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Beurteilung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134729618", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85129308", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85129308" + } + ], + "authorized_access_point": "Students - Rating of" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134729618", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15085667", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15085667n" + } + ], + "authorized_access_point": "E\u0301le\u0300ves - E\u0301valuation" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970568762", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10050838", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10050838" + } + ], + "authorized_access_point": "Lehrerurteil" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4053376-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04053376X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4053376-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Beurteilung", + "Beurteilung", + "Lehrer", + "Lehrer", + "Lehrerurteil", + "Schulbeurteilung" + ], + "authorized_access_point": "Schu\u0308lerbeurteilung" + }, + { + "md5": "46ffa51e52d3cc00c6bb827f41d077c6", + "pid": "040539644", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schadstoffbelastung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134715978", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2008105554", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2008105554" + } + ], + "authorized_access_point": "Heavy metals - Environmental aspects" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134043589", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2018002960", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2018002960" + } + ], + "authorized_access_point": "Heavy metal content" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134043589", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11976797", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11976797w" + } + ], + "authorized_access_point": "Teneur en me\u0301taux lourds" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4053964-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040539644", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4053964-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Schwermetall" + ], + "authorized_access_point": "Schwermetallbelastung" + }, + { + "md5": "c92d43167aa0e6193a351bf4b3d7e1bb", + "pid": "040544567", + "note": [ + { + "label": [ + "Benutzt fu\u0308r ma\u0308nnliche selige Personen und die Personengruppe im Plural; als instantieller Oberbegriff bei seligen Personen obligatorisch; nicht zugelassen als identifizierender Zusatz bei Personen gem. EH-P-10 zur GND nach RDA" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Selige" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134228295", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85014845", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85014845" + } + ], + "authorized_access_point": "Blessed" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134228295", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12243954", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12243954r" + } + ], + "authorized_access_point": "Bienheureux" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254345876", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "18676", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/18676" + } + ], + "authorized_access_point": "Beati" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254485996", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX4596790", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX4596790" + } + ], + "authorized_access_point": "Beatos" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4054456-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040544567", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4054456-4", + "source": "GND" + } + ], + "authorized_access_point": "Seliger" + }, + { + "md5": "6704561d6c0fd33b45510860233069a7", + "pid": "040562182", + "note": [ + { + "label": [ + "Satz von Gegensta\u0308nden, der fu\u0308r die Bedienung nach vorgeschriebenen oder impliziten Regeln fu\u0308r Unterricht, Unterhaltung oder Therapie konzipiert ist (RDA AH-007).", + "Auch fu\u0308r Computerspiele, nicht fu\u0308r Planspiele (RDA AH-007)." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Spielwissenschaft" + }, + { + "authorized_access_point": "Spielgera\u0308t" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254489150", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX524861", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX524861" + } + ], + "authorized_access_point": "Juegos" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1012432467", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "27571-1", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/27571-1" + } + ], + "authorized_access_point": "Spiel" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)97059223X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10045837", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10045837" + } + ], + "authorized_access_point": "Spiel" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4056218-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040562182", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4056218-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Spielen", + "Spiele" + ], + "authorized_access_point": "Spiel" + }, + { + "md5": "7cfe9643534e9ad876209064f92f61d6", + "pid": "040570215", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausdauernde Pflanzen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4057021-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040570215", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4057021-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Schmuckstaude", + "Stauden" + ], + "authorized_access_point": "Staude" + }, + { + "md5": "b5d0deb41dc0bd8ffa79d8eefdb7934e", + "pid": "040575136", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Du\u0308ngung" + } + ], + "related": [ + { + "authorized_access_point": "Stickstoffdu\u0308nger" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4057513-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040575136", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4057513-5", + "source": "GND" + } + ], + "variant_access_point": [ + "N-Du\u0308ngung", + "Stickstoff" + ], + "authorized_access_point": "Stickstoffdu\u0308ngung" + }, + { + "md5": "0726cd7392af6eb696d390a412c5d05e", + "pid": "040576337", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Statistisches Modell" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331612225", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2005004376", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2005004376" + } + ], + "authorized_access_point": "Stochastic models" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4057633-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040576337", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4057633-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Probabilistisches Modell", + "Wahrscheinlichkeitsmodell" + ], + "authorized_access_point": "Stochastisches Modell" + }, + { + "md5": "72594a61db87df73401721d0a5eb99c3", + "pid": "040579123", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Stra%C3%9Fennetz&oldid=240157115" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Stra\u00dfe" + }, + { + "authorized_access_point": "Verkehrsnetz" + }, + { + "authorized_access_point": "Verkehrstra\u0308ger" + } + ], + "related": [ + { + "authorized_access_point": "Wegenetz" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1290456496", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "30329-2", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/30329-2" + } + ], + "authorized_access_point": "Stra\u00dfennetz" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4057912-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040579123", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4057912-8", + "source": "GND" + } + ], + "authorized_access_point": "Stra\u00dfennetz" + }, + { + "md5": "f4d4e0063982225fc8720145b5ba350c", + "pid": "040581780", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ma\u0308nnerbund" + }, + { + "authorized_access_point": "Studentenvereinigung" + } + ], + "related": [ + { + "authorized_access_point": "Couleurstudent" + }, + { + "authorized_access_point": "Damenverbindung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134062133", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11980097", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11980097q" + } + ], + "authorized_access_point": "E\u0301tudiants - Associations" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970595395", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10059565", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10059565" + } + ], + "authorized_access_point": "Studentenverbindung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4058178-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040581780", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4058178-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Korporation (Student)", + "Korporierter", + "Studentenkorporation", + "Studentische Korporation", + "Studentische Verbindung", + "Verbindung (Student)", + "Hochschulverbindung", + "Hochschu\u0308lerverbindung", + "Akademische Verbindung" + ], + "authorized_access_point": "Studentenverbindung" + }, + { + "md5": "44a545f8605af913621c692d5ab7fd8d", + "pid": "040583317", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Low-Input Landwirtschaft" + }, + { + "authorized_access_point": "Extraktivismus" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134074778", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85129537", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85129537" + } + ], + "authorized_access_point": "Subsistence economy" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134074778", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11982331", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119823313" + } + ], + "authorized_access_point": "E\u0301conomie de subsistance" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256261602", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "7485", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_7485" + } + ], + "authorized_access_point": "subsistence farming" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966989805", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10511-4", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/10511-4" + } + ], + "authorized_access_point": "Subsistenzwirtschaft" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970595840", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10059703", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10059703" + } + ], + "authorized_access_point": "Subsistenzwirtschaft" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4058331-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040583317", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4058331-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Selbstversorgerwirtschaft" + ], + "authorized_access_point": "Subsistenzwirtschaft" + }, + { + "md5": "074f68185b231d65804f93cefa165753", + "pid": "04059596X", + "note": [ + { + "label": [ + "Als Formschlagwort nur bei lokaler Anwendung fu\u0308r die Erschlie\u00dfung mundartl. Texte (RSWK \u00a7 762,9) sowie fu\u0308r Erschlie\u00dfung scho\u0308ner Literatur, von Kinder- und Jugendliteratur sowie von Altbesta\u0308nden mit Gattungsbegriffen. Als Sach-SW z. B. benutzt fu\u0308r sprachdidakt. verwendete Texte; fu\u0308r linguist. Untersuchungen verknu\u0308pfe mit \"Textsorte\"" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134039182", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh99001271", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh99001271" + } + ], + "authorized_access_point": "Texts" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134039182", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11975991", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119759914" + } + ], + "authorized_access_point": "Textes" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970597525", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10060183", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10060183" + } + ], + "authorized_access_point": "Text" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4059596-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04059596X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4059596-1", + "source": "GND" + } + ], + "authorized_access_point": "Text" + }, + { + "md5": "ecb50c54e77872d431996f2c50448ca6", + "pid": "040596648", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Textlinguistik" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134567472", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85077490", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85077490" + } + ], + "authorized_access_point": "Literary form" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134567472", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11948071", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119480714" + } + ], + "authorized_access_point": "Genres litte\u0301raires" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4059664-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040596648", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4059664-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Textart", + "Texttyp" + ], + "authorized_access_point": "Textsorte" + }, + { + "md5": "36ec279d684ec7e3d3af222350c3de53", + "pid": "040598160", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Belastung" + } + ], + "related": [ + { + "authorized_access_point": "Temperaturverhalten" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113395345X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85134764", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85134764" + } + ], + "authorized_access_point": "Thermal stresses" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113395345X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11942174", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119421740" + } + ], + "authorized_access_point": "Contraintes thermiques" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4059816-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040598160", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4059816-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Wa\u0308rmebelastung", + "Temperaturbelastung", + "Temperaturbeanspruchung", + "Temperatur", + "Temperaturzwang" + ], + "authorized_access_point": "Thermische Belastung" + }, + { + "md5": "3537605eb9a620ed6b1586623f07b48b", + "pid": "040617203", + "type": "bf:Topic", + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332876544", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2008105294", + "source": "DLC" + }, + { + "type": "uri", + "value": "https://id.loc.gov/authorities/subjects/sh2008105294" + } + ], + "authorized_access_point": "Germans--Hungary" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332876544", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16173217", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16173217m" + } + ], + "authorized_access_point": "Allemands de Hongrie" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4061720-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040617203", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4061720-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Deutsche" + ], + "authorized_access_point": "Ungarndeutsche" + }, + { + "md5": "fdaaa48a8f1fb1061d00403bcd0dfe9b", + "pid": "040621278", + "note": [ + { + "label": [ + "Der Begriff umfasst das Urheberrecht im objektiven Sinne (Gesamtheit der Rechtsnormen, die das Verha\u0308ltnis des Urhebers zu seinem Werk regeln) und das Urheberrecht im subjektiven Sinne (absolutes Recht des Urhebers an seinem Werk)." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Immaterialgu\u0308terrecht" + } + ], + "related": [ + { + "authorized_access_point": "Leistungsschutzrecht" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133625290", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85032446", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85032446" + } + ], + "authorized_access_point": "Copyright" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133625290", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13318464", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13318464k" + } + ], + "authorized_access_point": "Droit d'auteur" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)967014727", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "16037-4", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/16037-4" + } + ], + "authorized_access_point": "Urheberrecht" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970599846", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10040422", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10040422" + } + ], + "authorized_access_point": "Urheberrecht" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4062127-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040621278", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4062127-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Copyright", + "Urheberrechtsschutz", + "Urheberschutz" + ], + "authorized_access_point": "Urheberrecht" + }, + { + "md5": "50e8215b5e47f5b42020fafe0e23f9f9", + "pid": "040628094", + "note": [ + { + "label": [ + "Verknu\u0308pfe mit Anwendungsgebiet (z. B. Literatur); bei Einzelwerken sowie bei mehreren Werken eines Autors oder Komponisten verknu\u0308pfe mit s Film oder ggf. mit engeren Schlagwo\u0308rtern (s Musikfilm etc.)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Film" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133610765", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85048224", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85048224" + } + ], + "authorized_access_point": "Film adaptations" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133986668", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85133480", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85133480" + } + ], + "authorized_access_point": "Television adaptations" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133610765", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11930825", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119308251" + } + ], + "authorized_access_point": "Adaptations cine\u0301matographiques" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133986668", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11955258", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11955258z" + } + ], + "authorized_access_point": "Adaptations te\u0301le\u0301vise\u0301es" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254322396", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "2287", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/2287" + } + ], + "authorized_access_point": "Riduzioni cinematografiche" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254499393", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX538457", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX538457" + } + ], + "authorized_access_point": "Adaptaciones cinematogra\u0301ficas" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4062809-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040628094", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4062809-7", + "source": "GND" + } + ], + "authorized_access_point": "Verfilmung" + }, + { + "md5": "e033f741c668bb0a7a4e45dc059f40aa", + "pid": "040628604", + "note": [ + { + "label": [ + "SW Mensch ist pleonastisch, mit Tieren wird verknu\u0308pft" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254345035", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "17992", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/17992" + } + ], + "authorized_access_point": "Etologia" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254499482", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX559474", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX559474" + } + ], + "authorized_access_point": "Animales - Conducta" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1299899013", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX525655", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX525655" + } + ], + "authorized_access_point": "Conducta" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256267902", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "868", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_868" + } + ], + "authorized_access_point": "behaviour" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)967018226", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "18859-1", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/18859-1" + } + ], + "authorized_access_point": "Verhalten" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)97060064X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10034530", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10034530" + } + ], + "authorized_access_point": "Verhalten" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4062860-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040628604", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4062860-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Mensch", + "Menschliches Verhalten" + ], + "authorized_access_point": "Verhalten" + }, + { + "md5": "7305c62eacaaacb7d99ab8b953ef2844", + "pid": "040633217", + "note": [ + { + "label": [ + "Ein Verwaltungsakt ist jede Verfu\u0308gung, Entscheidung oder andere hoheitliche Ma\u00dfnahme, die eine Beho\u0308rde zur Regelung eines Einzelfalls auf dem Gebiet des o\u0308ffentlichen Rechts trifft und die auf unmittelbare Rechtswirkung nach au\u00dfen gerichtet ist." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133645879", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85000900", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85000900" + } + ], + "authorized_access_point": "Administrative acts" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133645879", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12649789", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb126497890" + } + ], + "authorized_access_point": "Actes administratifs" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254330216", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "6046", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/6046" + } + ], + "authorized_access_point": "Atti amministrativi" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4063321-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040633217", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4063321-4", + "source": "GND" + } + ], + "authorized_access_point": "Verwaltungsakt" + }, + { + "md5": "9d8f4d510a6f1a9f036c5d3854a79206", + "pid": "040633306", + "note": [ + { + "label": [ + "Ausbildungsberuf", + "Fu\u0308r den Mittleren Dienst allgemein verknu\u0308pfe Verwaltungsdienst und Mittlerer Dienst." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fachangestellter" + } + ], + "related": [ + { + "authorized_access_point": "Weibliche Verwaltungsfachangestellte" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134769717", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16015424", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16015424h" + } + ], + "authorized_access_point": "Fonction publique - Carrie\u0300res" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4063330-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040633306", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4063330-5", + "source": "GND" + } + ], + "authorized_access_point": "Verwaltungsfachangestellter" + }, + { + "md5": "dbbceb9e63391ca8ce72705658880b1c", + "pid": "040641805", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134745354", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11976091", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11976091w" + } + ], + "authorized_access_point": "Traitement thermique" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4064180-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040641805", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4064180-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Warmbehandlung" + ], + "authorized_access_point": "Wa\u0308rmebehandlung" + }, + { + "md5": "9f4e465409a28517ec5de4a7564d29fc", + "pid": "040645312", + "note": [ + { + "label": [ + "Benutzt fu\u0308r sehr weite Sachverhalte, umfasst z.B. auch Schaustellergewerbe etc." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4064531-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040645312", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4064531-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Ambulantes Gewerbe", + "Wanderhandel (Reisegewerbe)", + "Wandergewerbe", + "Ambulanter Gewerbebetrieb" + ], + "authorized_access_point": "Reisegewerbe" + }, + { + "md5": "186fe461a01b1bd2ec593179bc60ebe6", + "pid": "040654648", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Verantwortung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4065464-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040654648", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4065464-3", + "source": "GND" + } + ], + "authorized_access_point": "Weltverantwortung" + }, + { + "md5": "ebc6661b0af4ef6e4778f9a0054aec01", + "pid": "040658864", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gruppe (Mathematik)" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333591713", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh95002984", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh95002984" + } + ], + "authorized_access_point": "Weyl groups" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333591713", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16561878", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16561878g" + } + ], + "authorized_access_point": "Groupes de Weyl" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4065886-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040658864", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4065886-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Weylsche Gruppe" + ], + "authorized_access_point": "Weyl-Gruppe" + }, + { + "md5": "b93fae2e15890bc1b603f3c6063cf4e4", + "pid": "040664104", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Integration" + } + ], + "related": [ + { + "authorized_access_point": "Integration (Internationale Politik)" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133972225", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85067394", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85067394" + } + ], + "authorized_access_point": "International economic integration" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133972225", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11949961", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11949961j" + } + ], + "authorized_access_point": "Inte\u0301gration e\u0301conomique internationale" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113412998X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12045383", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12045383t" + } + ], + "authorized_access_point": "Inte\u0301gration e\u0301conomique" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)967041201", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10626-1", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/10626-1" + } + ], + "authorized_access_point": "Wirtschaftsintegration" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970604653", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10038303", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10038303" + } + ], + "authorized_access_point": "wirtschaftliche Integration" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4066410-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040664104", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4066410-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Integration (Wirtschaft)", + "Internationale wirtschaftliche Integration", + "Regionale wirtschaftliche Integration", + "Wirtschaft", + "Wirtschaftsintegration", + "O\u0308konomische Integration", + "Regionalismus" + ], + "authorized_access_point": "Wirtschaftliche Integration" + }, + { + "md5": "96872e611bd522823a0dd5eb193097a9", + "pid": "040664244", + "note": [ + { + "label": [ + "Wertma\u0308\u00dfig erfassbare Gro\u0308\u00dfe zur Abbildung der Beziehung zwischen Handlungsergebnis und dem dafu\u0308r erforderlichen Mitteleinsatz (bewertetes Verha\u0308ltnis von Ertrag und Aufwand)." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Effizienz" + }, + { + "authorized_access_point": "Effektivita\u0308t" + }, + { + "authorized_access_point": "Unwirtschaftlichkeit" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)967040701", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "12073-6", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/12073-6" + } + ], + "authorized_access_point": "Wirtschaftlichkeit" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)97060470X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10062371", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10062371" + } + ], + "authorized_access_point": "Wirtschaftlichkeit" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4066424-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040664244", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4066424-7", + "source": "GND" + } + ], + "authorized_access_point": "Wirtschaftlichkeit" + }, + { + "md5": "c0956d73bfed95a787deec43a7aee4c0", + "pid": "040664643", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kriminalita\u0308t" + } + ], + "related": [ + { + "authorized_access_point": "Wirtschaftsdelikt" + }, + { + "authorized_access_point": "Wirtschaftsstrafrecht" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133158163X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85146466", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85146466" + } + ], + "authorized_access_point": "White collar crimes" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133158163X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13320552", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb133205524" + } + ], + "authorized_access_point": "Criminalite\u0301 des affaires" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)967041279", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "16201-3", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/16201-3" + } + ], + "authorized_access_point": "Wirtschaftskriminalita\u0308t" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970604912", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10049794", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10049794" + } + ], + "authorized_access_point": "Wirtschaftskriminalita\u0308t" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4066464-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040664643", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4066464-8", + "source": "GND" + } + ], + "variant_access_point": [ + "White-collar crime" + ], + "authorized_access_point": "Wirtschaftskriminalita\u0308t" + }, + { + "md5": "9437e203dcd08b4c77e4f0e8ecabd840", + "pid": "04066533X", + "note": [ + { + "label": [ + "Als Homonymenzusatz bei Personenschlagwo\u0308rtern zugelassen." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wissenschaftler" + } + ], + "related": [ + { + "authorized_access_point": "Wirtschaftswissenschaftlerin" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133925197", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85040878", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85040878" + } + ], + "authorized_access_point": "Economists" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133925197", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11931937", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11931937j" + } + ], + "authorized_access_point": "E\u0301conomistes" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254503978", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX527085", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX527085" + } + ], + "authorized_access_point": "Economistas" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)967043212", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "14017-6", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/14017-6" + } + ], + "authorized_access_point": "O\u0308konomen" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970605226", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10053624", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10053624" + } + ], + "authorized_access_point": "Wirtschaftswissenschaftler" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4066533-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04066533X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4066533-1", + "source": "GND" + } + ], + "variant_access_point": [ + "O\u0308konom (Wirtschaft)" + ], + "authorized_access_point": "Wirtschaftswissenschaftler" + }, + { + "md5": "86f7d2640f0302e53f68f2ade6e5d4a2", + "pid": "04067701X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Person" + } + ], + "related": [ + { + "authorized_access_point": "Gewa\u0308hrsmann" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334211922", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85147165", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85147165" + } + ], + "authorized_access_point": "Witnesses" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334211922", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11975370", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11975370h" + } + ], + "authorized_access_point": "Te\u0301moins" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1299918964", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX532019", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX532019" + } + ], + "authorized_access_point": "Testigos" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970606583", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10062915", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10062915" + } + ], + "authorized_access_point": "Zeuge" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4067701-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04067701X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4067701-1", + "source": "GND" + } + ], + "authorized_access_point": "Zeuge" + }, + { + "md5": "72df06d2a976114d8b90c24eb2faa663", + "pid": "040677036", + "note": [ + { + "label": [ + "Einzelne Organisationen der Zeugen Jehovas werden als Ko\u0308rperschaften angesetzt" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133622674", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85069870", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85069870" + } + ], + "authorized_access_point": "Jehovah's Witnesses" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133622674", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11934681", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11934681x" + } + ], + "authorized_access_point": "Te\u0301moins de Je\u0301hovah" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254359044", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "27904", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/27904" + } + ], + "authorized_access_point": "Testimoni di Geova" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4067703-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040677036", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4067703-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Bibelforscher", + "Jehovas Zeugen", + "Russelliten", + "Ernste Bibelforscher" + ], + "authorized_access_point": "Zeugen Jehovas" + }, + { + "md5": "9a0986fd79655dcdb9212e8ecc3b62c2", + "pid": "04067777X", + "note": [ + { + "label": [ + "Ethnie ohne Territorium. Au\u00dfer d. weibl. Form werden keine weiteren Komposita gebildet, sondern mit dem entsprechenden Sach-SW verknu\u0308pft, z.B. Zigeuner ; Kind; engere Bezeichnungen wie \"Roma \", \"Sinti\" o.a. sollten immer vorrangig verwendet werden, teilweise aber auch als Selbstbezeichnung gewu\u0308nscht." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Zigeunerin" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134501595", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85058109", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85058109" + } + ], + "authorized_access_point": "Romanies" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134501595", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11933633", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11933633t" + } + ], + "authorized_access_point": "Tsiganes" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970606753", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10062954", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10062954" + } + ], + "authorized_access_point": "Sinti und Roma" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4067777-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04067777X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4067777-1", + "source": "GND" + } + ], + "authorized_access_point": "Zigeuner" + }, + { + "md5": "1f55d17889705e639b122b05f11886e1", + "pid": "040685969", + "note": [ + { + "label": [ + "Fu\u0308r die Altersgruppe ab ca. 60 Jahre und in Verbindung mit dem Schlagwort Lebensfu\u0308hrung und dem Formschlagwort Ratgeber wird Alter bevorzugt." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Altersphysiologie" + }, + { + "authorized_access_point": "Gerontologie" + }, + { + "authorized_access_point": "Lebensalter" + }, + { + "authorized_access_point": "Biologisches Alter" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332657001", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11940843", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119408435" + } + ], + "authorized_access_point": "Vieillissement" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254403310", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX528051", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX528051" + } + ], + "authorized_access_point": "Envejecimiento" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)125619008X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "192", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_192" + } + ], + "authorized_access_point": "ageing" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1282195956", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D000375", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000375" + } + ], + "authorized_access_point": "Aging" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970531648", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10035269", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10035269" + } + ], + "authorized_access_point": "Altern" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4068596-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040685969", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4068596-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Alterungsprozess", + "Altwerden", + "Seneszenz", + "Alterungsprozess (Physiologie)", + "Alterung (Physiologie)" + ], + "authorized_access_point": "Altern" + }, + { + "md5": "ea920bb72e60075487246ceb553d0269", + "pid": "040687333", + "note": [ + { + "label": [ + "Benutzt fu\u0308r pathologische Varianten in der Medizin" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Missbildung" + }, + { + "authorized_access_point": "Behinderung" + }, + { + "authorized_access_point": "Normvariante" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134617119", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11953069", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11953069k" + } + ], + "authorized_access_point": "Malformations" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4068733-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040687333", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4068733-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Abart (Medizin)", + "Variation (Medizin)", + "Variante (Medizin)" + ], + "authorized_access_point": "Anomalie (Medizin)" + }, + { + "md5": "824b420b8f641400465f4613c64d6de3", + "pid": "040693538", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zu\u0308chtungstechnik" + } + ], + "related": [ + { + "authorized_access_point": "Besamungsstation" + }, + { + "authorized_access_point": "Insemination" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332731503", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11965301", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11965301g" + } + ], + "authorized_access_point": "Inse\u0301mination artificielle" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254343601", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "17023", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/17023" + } + ], + "authorized_access_point": "Fecondazione artificiale" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254410945", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX549870", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX549870" + } + ], + "authorized_access_point": "Inseminacio\u0301n artificial" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256196061", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "638", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_638" + } + ], + "authorized_access_point": "artificial insemination" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4069353-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040693538", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4069353-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Ku\u0308nstliche Besamung" + ], + "authorized_access_point": "Besamung" + }, + { + "md5": "e5e598e18266780cd5f048d0577c9586", + "pid": "040693759", + "note": [ + { + "label": [ + "Fu\u0308r Schweiz benutze Personalvorsorge" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Altersversorgung" + } + ], + "related": [ + { + "authorized_access_point": "Personalvorsorge" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4069375-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040693759", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4069375-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Altersversorgung", + "Betriebliche Altersfu\u0308rsorge", + "Betriebliche Altersrente", + "Betriebliche Pension", + "Betriebliche Versorgungsanwartschaft", + "Betriebliches Ruhegeld", + "Betriebspension", + "Betriebsrente", + "Ruhegehalt", + "Ruhegeld", + "Altersversorgung", + "Zweite Sa\u0308ule (Altersversorgung)", + "Company pension" + ], + "authorized_access_point": "Betriebliche Altersversorgung" + }, + { + "md5": "d67dffe706526735d4facee0e16277b9", + "pid": "040705846", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Dreyfus-Aff%C3%A4re&oldid=211040560" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Politischer Skandal" + } + ], + "related": [ + { + "authorized_access_point": "Milita\u0308rgerichtsverfahren" + }, + { + "authorized_access_point": "Antisemitismus" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133954790", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2019004577", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2019004577" + } + ], + "authorized_access_point": "Dreyfus, Alfred, 1859-1935 - Trials, litigation, etc." + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133954790", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11942701", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11942701f" + } + ], + "authorized_access_point": "Dreyfus, Affaire (1894-1906)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4070584-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040705846", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4070584-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Dreyfus-Affa\u0308re", + "Dreyfus-Prozess" + ], + "authorized_access_point": "Dreyfusaffa\u0308re" + }, + { + "md5": "1015a0ddcdbc655d521987712dc179e9", + "pid": "040706079", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Jaina" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133650783", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85069282", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85069282" + } + ], + "authorized_access_point": "Jainism" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133650783", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11953383", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11953383z" + } + ], + "authorized_access_point": "Jai\u0308nisme" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254333932", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "8777", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/8777" + } + ], + "authorized_access_point": "Giainismo" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254445331", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX542653", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX542653" + } + ], + "authorized_access_point": "Jainismo" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4070607-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040706079", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4070607-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Dschainismus", + "Dschinismus", + "Jaina (Religion)", + "Jinismus" + ], + "authorized_access_point": "Jainismus" + }, + { + "md5": "6125a974550647727a648cf548d3ff86", + "pid": "040707385", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schalenwild" + }, + { + "authorized_access_point": "Hirsche" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134206968", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85087175", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85087175" + } + ], + "authorized_access_point": "Moose" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134206968", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16175221", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16175221b" + } + ], + "authorized_access_point": "E\u0301lan" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)125437163X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "38252", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/38252" + } + ], + "authorized_access_point": "Alci" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256207454", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "2536", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_2536" + } + ], + "authorized_access_point": "elks" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4070738-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040707385", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4070738-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Alces alces" + ], + "authorized_access_point": "Elch" + }, + { + "md5": "1154940e1bd4c23b76ec01e98c79f82b", + "pid": "040709248", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Beweismittel" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113393370X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85034045", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85034045" + } + ], + "authorized_access_point": "Criminal investigation" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113393370X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11934170", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11934170w" + } + ], + "authorized_access_point": "Enque\u0302tes criminelles" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4070924-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040709248", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4070924-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Polizeiliche Ermittlungsta\u0308tigkeit", + "Ermitteln", + "Ermittlungsta\u0308tigkeit", + "Ermittlungen" + ], + "authorized_access_point": "Ermittlung" + }, + { + "md5": "a4138af69cb6f82ca732ed568aafd8c0", + "pid": "040712168", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133955533", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2008108033", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2008108033" + } + ], + "authorized_access_point": "Motion pictures - Philosophy" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254428917", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX4430093", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX4430093" + } + ], + "authorized_access_point": "Cine - Filosofi\u0301a" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4071216-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040712168", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4071216-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Film" + ], + "authorized_access_point": "Filmtheorie" + }, + { + "md5": "53c840dfb8cec3972e9ebf423594efd7", + "pid": "040715213", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wettbewerbskontrolle" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966751345", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10957-6", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/10957-6" + } + ], + "authorized_access_point": "Fusionskontrolle" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4071521-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040715213", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4071521-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Konzentrationskontrolle", + "Zusammenschlusskontrolle", + "Fusion", + "Unternehmenskonzentration", + "Merger control" + ], + "authorized_access_point": "Fusionskontrolle" + }, + { + "md5": "4ea97778c4241f14d0622b155d87ed4a", + "pid": "040717119", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Vererbung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254320245", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "1542", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/1542" + } + ], + "authorized_access_point": "Genetica vegetale" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254320229", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "1540", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/1540" + } + ], + "authorized_access_point": "Genetica" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254433902", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX524577", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX524577" + } + ], + "authorized_access_point": "Gene\u0301tica" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254433899", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX526352", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX526352" + } + ], + "authorized_access_point": "Gene\u0301tica vegetal" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256216747", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "3222", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_3222" + } + ], + "authorized_access_point": "genetics" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1012494675", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "28854-5", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/28854-5" + } + ], + "authorized_access_point": "Genetik" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970553366", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10045017", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10045017" + } + ], + "authorized_access_point": "Genforschung" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970553331", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10042870", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10042870" + } + ], + "authorized_access_point": "Genetik" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4071711-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040717119", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4071711-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Allgemeine Genetik", + "Erbbiologie", + "Erbforschung", + "Erblehre", + "Vererbungslehre", + "Vererbungswissenschaft", + "Erblichkeitslehre" + ], + "authorized_access_point": "Genetik" + }, + { + "md5": "352f8d8fee96f39e83ce63ef75867486", + "pid": "040717763", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Soziale Rolle" + } + ], + "related": [ + { + "authorized_access_point": "Geschlechtsunterschied" + }, + { + "authorized_access_point": "Gender" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133928579", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85120663", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85120663" + } + ], + "authorized_access_point": "Sex role" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133928579", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11932779", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119327795" + } + ], + "authorized_access_point": "Ro\u0302le selon le sexe" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1299901182", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX527889", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX527889" + } + ], + "authorized_access_point": "Rol sexual" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)96696148X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "30047-5", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/30047-5" + } + ], + "authorized_access_point": "Geschlechterrolle" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)97055379X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10044127", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10044127" + } + ], + "authorized_access_point": "Geschlechtsrolle" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4071776-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040717763", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4071776-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Geschlechtsrolle" + ], + "authorized_access_point": "Geschlechterrolle" + }, + { + "md5": "635cdf6e0459daa42e19f017ba7959fe", + "pid": "04071781X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Dimorphismus" + } + ], + "related": [ + { + "authorized_access_point": "Geschlechtsmerkmal" + }, + { + "authorized_access_point": "Geschlechterrolle" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133881475", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85120727", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85120727" + } + ], + "authorized_access_point": "Sexual dimorphism (Plants)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134040792", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85120580", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85120580" + } + ], + "authorized_access_point": "Sex differences" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133881475", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13617433", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13617433k" + } + ], + "authorized_access_point": "Dimorphisme sexuel chez les plantes" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134040792", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11976298", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11976298v" + } + ], + "authorized_access_point": "Diffe\u0301rences entre sexes" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254434844", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX539058", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX539058" + } + ], + "authorized_access_point": "Diferencias entre los sexos" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1067694579", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "30048-3", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/30048-3" + } + ], + "authorized_access_point": "Geschlechterunterschiede" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970553803", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10045237", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10045237" + } + ], + "authorized_access_point": "geschlechtsspezifische Faktoren" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4071781-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04071781X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4071781-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Geschlechterdifferenz", + "Geschlechtsdimorphismus", + "Geschlechtsspezifisch ...", + "Geschlechtsspezifische Differenz", + "Sexualdimorphismus", + "Geschlechterunterschied", + "Geschlecht", + "Geschlechtsunterschiede", + "Gender Diversity", + "Geschlechtsspezifische Diversita\u0308t" + ], + "authorized_access_point": "Geschlechtsunterschied" + }, + { + "md5": "e835e45fc082f9afd1aa54833805ad2d", + "pid": "040730913", + "note": [ + { + "label": [ + "Verwendet nur fu\u0308r Vernichtungslager und fu\u0308r den Vorgang als solchen, nicht in Verbindung mit einzelnen Orten in Deutschland, dann Judenverfolgung. To\u0308tungsaktionen an einzelnen Orten im Osten werden nicht als historisches Einzelereignis behandelt, sondern mit dem Geographikum verknu\u0308pft." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Judenverfolgung" + }, + { + "authorized_access_point": "Nationalsozialistisches Verbrechen" + } + ], + "related": [ + { + "authorized_access_point": "Vernichtungslager" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113360563X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85061515", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85061515" + } + ], + "authorized_access_point": "Holocaust, Jewish (1939-1945)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113360563X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11941579", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11941579k" + } + ], + "authorized_access_point": "Shoah" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254445757", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX4663627", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX4663627" + } + ], + "authorized_access_point": "Holocausto judi\u0301o (1939-1945)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4073091-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040730913", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4073091-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Endlo\u0308sung", + "Holocaust", + "Holokaust", + "Judenfrage", + "Schoah", + "Shoah", + "Sho\u02beah", + "Shoa", + "Drittes Reich", + "S\u030co\u0302'a\u0304", + "Juden" + ], + "authorized_access_point": "Judenvernichtung" + }, + { + "md5": "7de5f06eec626d2a13a985986fb98566", + "pid": "040737063", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Grammatik" + }, + { + "authorized_access_point": "Kontrastive Linguistik" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254369848", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "36872", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/36872" + } + ], + "authorized_access_point": "Grammatica comparata" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254511776", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX527548", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX527548" + } + ], + "authorized_access_point": "Grama\u0301tica comparada" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113404240X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11976576", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11976576c" + } + ], + "authorized_access_point": "Grammaire compare\u0301e" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4073706-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040737063", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4073706-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Grammatik", + "Vergleichende Grammatik", + "Konfrontative Grammatik" + ], + "authorized_access_point": "Kontrastive Grammatik" + }, + { + "md5": "3702333ac0177f916a09b009cd047810", + "pid": "040737810", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tumor" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134509650", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85019519", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85019519" + } + ], + "authorized_access_point": "Cancer - Patients" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134509650", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11931109", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119311093" + } + ], + "authorized_access_point": "Cance\u0301reux" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133610633", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11931105", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11931105q" + } + ], + "authorized_access_point": "Cancer" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254349537", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "21132", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/21132" + } + ], + "authorized_access_point": "Cancro" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254452176", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX526004", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX526004" + } + ], + "authorized_access_point": "Ca\u0301ncer" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1241609667", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D009369", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D009369" + } + ], + "authorized_access_point": "Neoplasms" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)968411649", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "18899-3", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/18899-3" + } + ], + "authorized_access_point": "Krebskrankheit" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970566395", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10049933", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10049933" + } + ], + "authorized_access_point": "Krebs" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4073781-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040737810", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4073781-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Carcinom", + "Malignom", + "Maligner Tumor", + "Neoplasma (Krebs)", + "Karzinom", + "Bo\u0308sartiger Tumor", + "Krebserkrankung" + ], + "authorized_access_point": "Krebs (Medizin)" + }, + { + "md5": "26f2f75efa9d714d0689d2d5e0e6b11c", + "pid": "040737888", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134089090", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85019945", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85019945" + } + ], + "authorized_access_point": "Capital market" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134089090", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11996016", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11996016j" + } + ], + "authorized_access_point": "Marche\u0301 financier" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966818679", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "11433-0", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/11433-0" + } + ], + "authorized_access_point": "Kreditmarkt" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970549962", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10034971", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10034971" + } + ], + "authorized_access_point": "Finanzmarkt" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970566425", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10044823", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10044823" + } + ], + "authorized_access_point": "Kreditmarkt" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4073788-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040737888", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4073788-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Finanzmarkt" + ], + "authorized_access_point": "Kreditmarkt" + }, + { + "md5": "5a6a297cfffb9644643170559fb8219e", + "pid": "040741117", + "note": [ + { + "label": [ + "Unterrichtsmedien als Hilfsmittel (RDA AH-007).", + "Fu\u0308r Materialien, die Schulbu\u0308cher erga\u0308nzen oder ersetzen, diesen gegenu\u0308ber eine geringere Verbindlichkeit fu\u0308r die Unterrichtsgestaltung haben und spezielle Themen fu\u0308r eines oder mehrere Unterrichtsfa\u0308cher aufbereiten; analog auch fu\u0308r den au\u00dferschulischen Bereich. Lehrmittel ko\u0308nnen sowohl fu\u0308r Lehrer wie fu\u0308r Schu\u0308ler (Lernende) bestimmt sein. Auch fu\u0308r Darstellungen von Fachwissen, in denen ein anderes Fach als das des eigentlichen Zielberufs behandelt wird. Nicht fu\u0308r studienbegleitende Literatur, Lehrbu\u0308cher und Lehrmaterialien zum Selbststudium; nicht fu\u0308r programmierte, interaktive Lehrmittel (verwende hierfu\u0308r Lernsoftware) (RDA AH-007).", + "Nicht fu\u0308r Studienbegleitende Lit., nicht fu\u0308r Lehrbu\u0308cher u. -materialien zum Selbststudium; zu Lehrbuch siehe dort. Methodisch-didaktische Anleitungen ohne spezielle Materialien (z.B. Medien) erhalten keine Formangabe." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Einfu\u0308hrung" + } + ], + "related": [ + { + "authorized_access_point": "Aufgabensammlung" + }, + { + "authorized_access_point": "Unterrichtstechnologie" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133683266", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85133053", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85133053" + } + ], + "authorized_access_point": "Teaching - Aids and devices" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133683266", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF119771160", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11977116n" + } + ], + "authorized_access_point": "Mate\u0301riel didactique" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254365559", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "33382", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/33382" + } + ], + "authorized_access_point": "Sussidi didattici" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254455639", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX528420", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX528420" + } + ], + "authorized_access_point": "Material dida\u0301ctico" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966834526", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "18292-6", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/18292-6" + } + ], + "authorized_access_point": "Lehrmaterial" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970568800", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10050780", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10050780" + } + ], + "authorized_access_point": "Lehrmittel" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970595581", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10059636", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10059636" + } + ], + "authorized_access_point": "Studienmaterial" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970599692", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10050859", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10050859" + } + ], + "authorized_access_point": "Unterrichtsmaterial" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970599706", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10051872", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10051872" + } + ], + "authorized_access_point": "Unterrichtsmedien" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4074111-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040741117", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4074111-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Arbeitsmittel", + "Bildungsmittel", + "Lehrmaterial", + "Lernmaterial", + "Lernmittel", + "Unterricht", + "Unterricht", + "Unterrichtsbeispiele", + "Unterrichtsmaterial", + "Unterrichtsmedien", + "Unterrichtsmedium", + "Unterrichtsmittel" + ], + "authorized_access_point": "Lehrmittel" + }, + { + "md5": "a20868aa1c0a58f4ea3bde998de104ce", + "pid": "04075121X", + "note": [ + { + "label": [ + "Benutzt fu\u0308r das Erzeugnis, zur Drucktechnik benutze Notendruck. Nach Anlage 6 RSWK 3. Aufl. auch als Formschlagwort zugelassen." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Musikalien" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134550618", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12135729", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb121357293" + } + ], + "authorized_access_point": "Musique imprime\u0301e" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4075121-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04075121X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4075121-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Musik", + "Musikausgabe", + "Notendruck (Musikausgabe)" + ], + "authorized_access_point": "Musikdruck" + }, + { + "md5": "90bd6e709a5917c4f28cc457e8067696", + "pid": "040760669", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Therapie" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333246218", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11946047", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11946047s" + } + ], + "authorized_access_point": "Chimiothe\u0301rapie" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)125433095X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "6603", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/6603" + } + ], + "authorized_access_point": "Farmacoterapia" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254472754", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX538644", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX538644" + } + ], + "authorized_access_point": "Farmacoterapia" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256245534", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "2394", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_2394" + } + ], + "authorized_access_point": "drug therapy" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1241636737", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D004358", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D004358" + } + ], + "authorized_access_point": "Drug Therapy" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4076066-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040760669", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4076066-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Arzneimitteltherapie", + "Arzneitherapie", + "Medikamento\u0308se Therapie" + ], + "authorized_access_point": "Pharmakotherapie" + }, + { + "md5": "5fc1152e05e5f84d1aa811882e0eeb42", + "pid": "040763889", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Genprodukt" + }, + { + "authorized_access_point": "Biopolymere" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133625789", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85107666", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85107666" + } + ], + "authorized_access_point": "Proteins" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133625789", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11936447", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11936447p" + } + ], + "authorized_access_point": "Prote\u0301ines" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254315101", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "51", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/51" + } + ], + "authorized_access_point": "Proteine" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254475982", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX526597", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX526597" + } + ], + "authorized_access_point": "Protei\u0301nas" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256248541", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "6259", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_6259" + } + ], + "authorized_access_point": "proteins" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336147075", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D011506", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D011506" + } + ], + "authorized_access_point": "Proteins" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4076388-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040763889", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4076388-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Eiweiss", + "Protein" + ], + "authorized_access_point": "Proteine" + }, + { + "md5": "151096832413ed4d17322387e2ca3f46", + "pid": "040775593", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sozialarbeit" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)96696277X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "16543-3", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/16543-3" + } + ], + "authorized_access_point": "Sozialer Dienst" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970590555", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10035231", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10035231" + } + ], + "authorized_access_point": "soziale Dienste" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4077559-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040775593", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4077559-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Soziale Dienste", + "Sozialer Dienst" + ], + "authorized_access_point": "Sozialdienst" + }, + { + "md5": "12632d11626ceade9d02cfd901f05fba", + "pid": "040776832", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Preisbildung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331580382", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh94005709", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh94005709" + } + ], + "authorized_access_point": "Peak-load pricing" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4077683-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040776832", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4077683-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Peak-load-pricing", + "Preisbildung", + "Spitzenleistung" + ], + "authorized_access_point": "Spitzenlast-Preisbildung" + }, + { + "md5": "542d302379f33caee03a000cf968e836", + "pid": "040777820", + "note": [ + { + "label": [ + "Staatshaftung bezeichnet die Einstandspflicht eines Hoheitstra\u0308gers fu\u0308r die Folgen seines Handelns. Im engeren Sinne umfasst die Benennung nur hoheitliches und rechtswidriges Handeln; im weiteren Sinne bezieht sie sich auch auf privatrechtliches und rechtma\u0308\u00dfiges Handeln." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Allgemeines Verwaltungsrecht" + }, + { + "authorized_access_point": "Haftung" + } + ], + "related": [ + { + "authorized_access_point": "Amtshaftung" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970593023", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10058963", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10058963" + } + ], + "authorized_access_point": "Staatshaftung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4077782-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040777820", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4077782-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Haftung", + "Staatshaftungsrecht", + "O\u0308ffentlich-rechtliche Ersatzleistung", + "O\u0308ffentlich-rechtliche Wiedergutmachung" + ], + "authorized_access_point": "Staatshaftung" + }, + { + "md5": "93ef08a4278930f58820fc1a9ff8a1a7", + "pid": "04077984X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gebetbuch" + } + ], + "related": [ + { + "authorized_access_point": "Brevier" + }, + { + "authorized_access_point": "Horologion" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113361633X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85062530", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85062530" + } + ], + "authorized_access_point": "Books of hours" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113361633X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13553869", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13553869c" + } + ], + "authorized_access_point": "Livres d'heures" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)125432996X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "5917", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/5917" + } + ], + "authorized_access_point": "Libri d'ore" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254491937", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX524632", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX524632" + } + ], + "authorized_access_point": "Libros de horas" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4077984-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04077984X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4077984-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Livre d'heures", + "Horarium", + "Stundenbu\u0308cher" + ], + "authorized_access_point": "Stundenbuch" + }, + { + "md5": "c2362d7eca04be7d95b3e6a73964d880", + "pid": "040785947", + "note": [ + { + "label": [ + "Nur benutzt fu\u0308r die Bewertung des Gesamtunternehmens. Fu\u0308r die Bewertung einzelner Bereiche oder Gegensta\u0308nde verknu\u0308pfe mit dem jeweils zutreffenden SW." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bewertung" + } + ], + "related": [ + { + "authorized_access_point": "Bonita\u0308t" + }, + { + "authorized_access_point": "Fairness Opinion" + }, + { + "authorized_access_point": "Due Diligence" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133973310", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85018291", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85018291" + } + ], + "authorized_access_point": "Business enterprises - Valuation" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133973329", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85032956", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85032956" + } + ], + "authorized_access_point": "Corporations - Valuation" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133973310", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11950175", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119501752" + } + ], + "authorized_access_point": "Entreprises - E\u0301valuation" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1299908144", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX568310", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX568310" + } + ], + "authorized_access_point": "Empresas - Valoracio\u0301n" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)967010810", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "12438-6", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/12438-6" + } + ], + "authorized_access_point": "Unternehmensbewertung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4078594-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)040785947", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4078594-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Bewertung", + "Unternehmenswert" + ], + "authorized_access_point": "Unternehmensbewertung" + }, + { + "md5": "48c1ed1933099e3ff9cd43bd6b3e78a4", + "pid": "041018699", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113394602X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85093489", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85093489" + } + ], + "authorized_access_point": "Nyamwezi (African people)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113394602X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11938722", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11938722n" + } + ], + "authorized_access_point": "Nyamwezi (peuple d'Afrique)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254468374", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX4760724", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX4760724" + } + ], + "authorized_access_point": "Nyamwezis (Pueblo africano)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4101869-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041018699", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4101869-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Nyamwesi", + "Njamwesi", + "Wanjamwesi", + "Wanyamwesi" + ], + "authorized_access_point": "Nyamwezi" + }, + { + "md5": "19a3a37f5ce420e956194d01d7e9d6f5", + "pid": "041067940", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4106794-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041067940", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4106794-0", + "source": "GND" + } + ], + "authorized_access_point": "Schwedisch-norwegische Union" + }, + { + "md5": "63dbfda3c32786bae5f7035e417330d9", + "pid": "041076842", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Indianer" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133987729", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85003081", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85003081" + } + ], + "authorized_access_point": "Xavante Indians" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133987729", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11955654", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11955654p" + } + ], + "authorized_access_point": "Chavante (Indiens)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254486607", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX549246", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX549246" + } + ], + "authorized_access_point": "Xavantes (Indios)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4107684-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041076842", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4107684-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Xavante", + "Chavante" + ], + "authorized_access_point": "Shavante" + }, + { + "md5": "81e78b37c01a20ad4563eee529779096", + "pid": "041091507", + "note": [ + { + "label": [ + "Auch benutzt fu\u0308r Angeho\u0308rige des Staates Iran soweit ausserhalb des Staates lebend, hierfu\u0308r benutze LC XB-IR" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Iranierin" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134077866", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85067929", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85067929" + } + ], + "authorized_access_point": "Iranians" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134077866", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11982855", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11982855g" + } + ], + "authorized_access_point": "Iraniens" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254444726", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX555380", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX555380" + } + ], + "authorized_access_point": "Irani\u0301es" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1008594873", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "26312-2", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/26312-2" + } + ], + "authorized_access_point": "Iraner" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970561199", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10066094", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10066094" + } + ], + "authorized_access_point": "Iraner" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4109150-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041091507", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4109150-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Iraner" + ], + "authorized_access_point": "Iranier" + }, + { + "md5": "97fb660eef00e7d57b40027fcb9e337d", + "pid": "041125002", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bauwerk" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)97053146X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10035178", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10035178" + } + ], + "authorized_access_point": "Altbau" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4112500-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041125002", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4112500-9", + "source": "GND" + } + ], + "authorized_access_point": "Altbau" + }, + { + "md5": "4191ee67dcdbf3242ec2f59e0f60a127", + "pid": "041133889", + "note": [ + { + "label": [ + "Das Grundgesetz (Artikel 14) sowie die Verfassungen der La\u0308nder in Deutschland enthalten Eigentumsgarantien." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4113388-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041133889", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4113388-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Eigentumsfreiheit", + "Eigentumsgrundrecht" + ], + "authorized_access_point": "Eigentumsgarantie" + }, + { + "md5": "472a1ddb386e2298c6942d0a0a576d38", + "pid": "041134346", + "note": [ + { + "label": [ + "Regulation durch Hormone" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Regulation" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4113434-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041134346", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4113434-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Hormonale Regulation", + "Hormonelle Regulation", + "Hormonregulation", + "Innersekretorische Regulation", + "Hormonsystem" + ], + "authorized_access_point": "Endokrine Regulation" + }, + { + "md5": "db3323bd073fdcc930244146e056842b", + "pid": "041142403", + "note": [ + { + "label": [ + "Sammlung von Rezepten aller Art (RDA AH-007).", + "Vorzugsweise mit dem Endprodukt (z. B. Kartoffelgericht, Geba\u0308ck) zu kombinieren, im Einzelnen siehe auch die Hinweise bei den jeweiligen Schlagwo\u0308rtern (z.B. Wildbret u. a\u0308.)." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Anleitung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133792855", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh96003769", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh96003769" + } + ], + "authorized_access_point": "Food writing" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133792855", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12425736", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12425736p" + } + ], + "authorized_access_point": "Livres de cuisine" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134838743", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12425736", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12425736p" + } + ], + "authorized_access_point": "Livres de cuisine" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254449876", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX556809", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX556809" + } + ], + "authorized_access_point": "Libros de cocina" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4114240-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041142403", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4114240-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Kochen", + "Kochrezept", + "Rezepte", + "Rezeptsammlung", + "Rezept" + ], + "authorized_access_point": "Kochbuch" + }, + { + "md5": "82600987bac318189f140f3e7069f0f5", + "pid": "041142993", + "note": [ + { + "label": [ + "Pluralansetzung nach Du. Verwende nach Mo\u0308glichkeit einen engeren Begriff wie Heilpflanzen, Wildkra\u0308uter, Zauberkra\u0308uter, Ku\u0308chenkra\u0308uter" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254338152", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "12724", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/12724" + } + ], + "authorized_access_point": "Erbe" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966822684", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "14068-3", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/14068-3" + } + ], + "authorized_access_point": "Kra\u0308uter" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4114299-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041142993", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4114299-8", + "source": "GND" + } + ], + "authorized_access_point": "Kra\u0308uter" + }, + { + "md5": "f0714b288e9526f6881201e909f37b17", + "pid": "041144910", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zerkleinern" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134045247", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh00006472", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00006472" + } + ], + "authorized_access_point": "Milling" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133670695", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85056219", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85056219" + } + ], + "authorized_access_point": "Grain - Milling" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133670695", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11967849", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11967849b" + } + ], + "authorized_access_point": "Ce\u0301re\u0301ales - Mouture" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134045247", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11977075", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11977075w" + } + ], + "authorized_access_point": "Mouture" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254458492", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX4663992", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX4663992" + } + ], + "authorized_access_point": "Cereales - Molienda" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256234427", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "4840", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_4840" + } + ], + "authorized_access_point": "milling" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4114491-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041144910", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4114491-0", + "source": "GND" + } + ], + "authorized_access_point": "Mahlen" + }, + { + "md5": "71f626be586118114ba34bc84531e6c8", + "pid": "04114516X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Controlling" + } + ], + "related": [ + { + "authorized_access_point": "Marketing" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4114516-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04114516X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4114516-1", + "source": "GND" + } + ], + "authorized_access_point": "Marketingaudit" + }, + { + "md5": "e424ecb18af764e1e8784acc1c1811a7", + "pid": "041154630", + "note": [ + { + "label": [ + "Organisation als kulturelles Sinnsystem" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134603371", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85032896", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85032896" + } + ], + "authorized_access_point": "Corporate culture" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134603371", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12004221", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12004221x" + } + ], + "authorized_access_point": "Culture d'entreprise" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)967011043", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "12108-6", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/12108-6" + } + ], + "authorized_access_point": "Unternehmenskultur" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970577311", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10060811", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10060811" + } + ], + "authorized_access_point": "Organisationskultur" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4115463-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041154630", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4115463-0", + "source": "GND" + } + ], + "authorized_access_point": "Organisationskultur" + }, + { + "md5": "7cbafeb4ced4689afb3495a725651f1d", + "pid": "041155513", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zelle" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113364211X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85102712", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85102712" + } + ], + "authorized_access_point": "Plant cells and tissues" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113364211X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11946982", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11946982s" + } + ], + "authorized_access_point": "Cellules ve\u0301ge\u0301tales" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1299903770", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX533812", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX533812" + } + ], + "authorized_access_point": "Ce\u0301lulas vegetales" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336588802", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D059828", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D059828" + } + ], + "authorized_access_point": "Plant Cells" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4115551-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041155513", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4115551-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Pflanzen" + ], + "authorized_access_point": "Pflanzenzelle" + }, + { + "md5": "fb39c80a9505542e1dae31f94043ecd0", + "pid": "04115746X", + "note": [ + { + "label": [ + "Als Reparatur bezeichnet man einen Prozess, bei dem ein mangelhafter Gegenstand wieder in einen Zustand gebracht wird, in dem es seine bestimmungsgema\u0308\u00dfe Verwendung erfu\u0308llen kann.", + "Im Unterschied dazu werden bei der Instandsetzung Verschleisserscheinungen behoben." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Instandsetzung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4115746-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04115746X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4115746-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Reparaturen" + ], + "authorized_access_point": "Reparatur" + }, + { + "md5": "755f8785881b1ba0c4ed394dad6d19a3", + "pid": "041164334", + "note": [ + { + "label": [ + "Ethnografikum ohne Territorium. Ausser d. weibl. Form werden keine weiteren Adjektiv-Substantiv-Verbindungen gebildet, sondern es wird mit dem entspr. Sach-SW verknu\u0308pft, z.B. s Schwarze ; s Kind", + "Auch fu\u0308r Schwarze innerhalb Afrikas" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Person of Color" + } + ], + "related": [ + { + "authorized_access_point": "Schwarze Frau" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133928021", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85014672", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85014672" + } + ], + "authorized_access_point": "Black people" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113430949X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85014604", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85014604" + } + ], + "authorized_access_point": "Black race" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133928021", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11932628", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119326280" + } + ], + "authorized_access_point": "Noirs" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113430949X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF123951634", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb123951636" + } + ], + "authorized_access_point": "Race ne\u0301groi\u0308de" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254343350", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "16861", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/16861" + } + ], + "authorized_access_point": "Neri" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254484787", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX4576825", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX4576825" + } + ], + "authorized_access_point": "Raza negra" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254484795", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX4576498", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX4576498" + } + ], + "authorized_access_point": "Negros" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970112211", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "15929-0", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/15929-0" + } + ], + "authorized_access_point": "Schwarze Menschen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4116433-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041164334", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4116433-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Neger", + "Schwarze Rasse", + "Schwarzer", + "Mohr", + "Schwarze Menschen" + ], + "authorized_access_point": "Schwarze" + }, + { + "md5": "0e711e033ef41f2918c914db07ec1340", + "pid": "041172299", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134546068", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85036108", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85036108" + } + ], + "authorized_access_point": "Death in literature" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134546076", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85036106", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85036106" + } + ], + "authorized_access_point": "Death in art" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4117229-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041172299", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4117229-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Todesdarstellung" + ], + "authorized_access_point": "Tod (Motiv)" + }, + { + "md5": "d28ad1b1fdf8f8230a3dbaac3b87ddc1", + "pid": "041172922", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4117292-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041172922", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4117292-9", + "source": "GND" + } + ], + "authorized_access_point": "Unrecht" + }, + { + "md5": "03a8215e2fe5ba288b7fac4f45720142", + "pid": "041173899", + "note": [ + { + "label": [ + "Eine Vertrauensperson ist eine Person, die weder einer Strafverfolgungsbeho\u0308rde noch einem Nachrichtendienst angeho\u0308rt und die diese Einrichtungen auf la\u0308ngere Zeit bei der Aufkla\u0308rung von Straftaten oder verfassungsfeindlichen Bestrebungen unterstu\u0308tzt, wobei diese Unterstu\u0308tzung Dritten nicht bekannt ist." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Informant" + } + ], + "related": [ + { + "authorized_access_point": "Agent provocateur" + }, + { + "authorized_access_point": "Verdeckter Ermittler" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134765045", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85066307", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85066307" + } + ], + "authorized_access_point": "Informers" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134765045", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11978390", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11978390v" + } + ], + "authorized_access_point": "Indicateurs" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4117389-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041173899", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4117389-2", + "source": "GND" + } + ], + "variant_access_point": [ + "V-Person", + "Vertrauensperson", + "Informant", + "Polizeispitzel", + "Vertrauensmann", + "V-Leute" + ], + "authorized_access_point": "V-Mann" + }, + { + "md5": "f8558d288e2a54d6d028a732258cd440", + "pid": "041175808", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Waldschaden" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134203578", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh88004553", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh88004553" + } + ], + "authorized_access_point": "Forest declines" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134203578", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12190274", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12190274k" + } + ], + "authorized_access_point": "Fore\u0302ts - De\u0301pe\u0301rissement" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256269948", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "29300", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_29300" + } + ], + "authorized_access_point": "forest decline" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970603223", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10061942", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10061942" + } + ], + "authorized_access_point": "Waldsterben" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4117580-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041175808", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4117580-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Neuartiger Waldschaden" + ], + "authorized_access_point": "Waldsterben" + }, + { + "md5": "c180aa6e9b3b827482932907a01067d8", + "pid": "041176065", + "note": [ + { + "label": [ + "Als identifizierender Zusatz und als instantieller Oberbegriff bei weiblichen heiligen Personen obligatorisch gem. EH-P-10 zur GND nach RDA" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Frau" + } + ], + "related": [ + { + "authorized_access_point": "Heiliger" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133986994", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85025188", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85025188" + } + ], + "authorized_access_point": "Christian women saints" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134610386", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85116638", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85116638" + } + ], + "authorized_access_point": "Women saints" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133986994", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11955309", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119553091" + } + ], + "authorized_access_point": "Saintes chre\u0301tiennes" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254361065", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "29798", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/29798" + } + ], + "authorized_access_point": "Sante" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254439110", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX537664", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX537664" + } + ], + "authorized_access_point": "Santas cristianas" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4117606-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041176065", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4117606-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Weibliche Heilige", + "Heilige Frau", + "Heiliggesprochene Frau", + "Heilig gesprochene Frau" + ], + "authorized_access_point": "Heilige" + }, + { + "md5": "ebb71a25a353e4561e2a37ec618eeed3", + "pid": "041176626", + "note": [ + { + "label": [ + "Bei Wo\u0308rterbu\u0308chern ist SW Wirtschaft zu bevorzugen." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fachsprache" + }, + { + "authorized_access_point": "Sondersprache" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134015186", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11967113", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11967113d" + } + ], + "authorized_access_point": "Langage commercial et des affaires" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)968557104", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "30030-1", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/30030-1" + } + ], + "authorized_access_point": "Wirtschaftsterminologie" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4117662-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041176626", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4117662-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Gescha\u0308ftssprache", + "Wirtschaft", + "Wirtschaft", + "Handelssprache", + "Handel", + "Handel", + "Kaufmannssprache", + "Businesssprache" + ], + "authorized_access_point": "Wirtschaftssprache" + }, + { + "md5": "85f52224c4d8f74ac33a81e734c056ef", + "pid": "041184432", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4118443-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041184432", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4118443-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Sassak" + ], + "authorized_access_point": "Sasak" + }, + { + "md5": "abc83ac9793584326f7d987a9214b7cb", + "pid": "041201116", + "note": [ + { + "label": [ + "mo\u0308glicherweise nur Sprachbund" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Uralaltaische Sprachen" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133699049", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85003868", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85003868" + } + ], + "authorized_access_point": "Altaic languages" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133699049", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11991545", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119915459" + } + ], + "authorized_access_point": "Langues altai\u0308ques" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254315659", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "181", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/181" + } + ], + "authorized_access_point": "Lingue altaiche" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254403205", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX546093", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX546093" + } + ], + "authorized_access_point": "Lenguas altaicas" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4120111-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041201116", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4120111-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Altaisch (Sprachfamilie)" + ], + "authorized_access_point": "Altaische Sprachen" + }, + { + "md5": "4476ad17c356d55b3df250ab2795b58d", + "pid": "041204409", + "note": [ + { + "label": [ + "Herkunft einer Person oder einer Sache.", + "I.d.R. nicht permutierend. Verknu\u0308pfe mit dem jeweiligen Gegenstand bzw. verwende spezifisches SW, z.B. Soziale Herkunft." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134650639", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2002006528", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2002006528" + } + ], + "authorized_access_point": "Provenances" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134650639", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12452859", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12452859h" + } + ], + "authorized_access_point": "Provenance" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256221309", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "16022", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_16022" + } + ], + "authorized_access_point": "provenance" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970585098", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10046547", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10046547" + } + ], + "authorized_access_point": "regionale Herkunft" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4120440-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041204409", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4120440-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Provenienz", + "Regionale Herkunft" + ], + "authorized_access_point": "Herkunft" + }, + { + "md5": "0baa8c333dd12a8972174ecd3b9efea5", + "pid": "041206592", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zelle" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134131135", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85077772", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85077772" + } + ], + "authorized_access_point": "Liver cells" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134131135", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12047088", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb120470886" + } + ], + "authorized_access_point": "Cellules he\u0301patiques" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254378499", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "45407", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/45407" + } + ], + "authorized_access_point": "Cellule epatiche" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254455493", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX559281", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX559281" + } + ], + "authorized_access_point": "Ce\u0301lulas hepa\u0301ticas" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336589078", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D022781", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D022781" + } + ], + "authorized_access_point": "Hepatocytes" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4120659-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041206592", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4120659-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Hepatozyt", + "Leberzelle", + "Leberparenchymzelle", + "Hepatocyt" + ], + "authorized_access_point": "Leberepithelzelle" + }, + { + "md5": "26b9c33aead686cdff46e8f8b025ff77", + "pid": "041207017", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gleichgewicht" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334903719", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85044538", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85044538" + } + ], + "authorized_access_point": "Equilibrium (Economics)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334903719", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11931264", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11931264h" + } + ], + "authorized_access_point": "E\u0301quilibre (e\u0301conomie politique)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4120701-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041207017", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4120701-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Markt", + "Konkurrenzgleichgewicht" + ], + "authorized_access_point": "Marktgleichgewicht" + }, + { + "md5": "c53e2535c5688ed4f432467533045720", + "pid": "041208862", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Unerlaubte Handlung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133822789", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85085982", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85085982" + } + ], + "authorized_access_point": "Misconduct in office" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133822789", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12527222", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb125272228" + } + ], + "authorized_access_point": "Fonctionnaires - Responsabilite\u0301 pe\u0301nale" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134279477", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12333253", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12333253f" + } + ], + "authorized_access_point": "Pre\u0301varication" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254512381", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX530145", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX530145" + } + ], + "authorized_access_point": "Delitos de los funcionarios" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4120886-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041208862", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4120886-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Amtspflicht" + ], + "authorized_access_point": "Amtspflichtverletzung" + }, + { + "md5": "48a98a32d9b7cb5959316f3f7688d005", + "pid": "041211154", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gewerk" + } + ], + "related": [ + { + "authorized_access_point": "Dachdecker" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1321205090", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85115317", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85115317" + } + ], + "authorized_access_point": "Roofing" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1321205090", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11933684", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11933684q" + } + ], + "authorized_access_point": "Couverture (construction)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4121115-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041211154", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4121115-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Dachdecken", + "Dachdeckungsarbeit", + "Dachdeckerarbeit" + ], + "authorized_access_point": "Dachdeckung" + }, + { + "md5": "c89ab2f36d5002048320aaf482205871", + "pid": "041211383", + "note": [ + { + "label": [ + "Verknu\u0308pfe mit Anwendungsgebiet" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970543697", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10038458", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10038458" + } + ], + "authorized_access_point": "Differenzierung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4121138-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041211383", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4121138-8", + "source": "GND" + } + ], + "authorized_access_point": "Differenzierung" + }, + { + "md5": "149ea5e3a3fc75ee98b34672a977e720", + "pid": "041212304", + "note": [ + { + "label": [ + "Programm fu\u0308r Externe Bilanzanalyse" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "related": [ + { + "authorized_access_point": "Bilanzanalyse" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4121230-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041212304", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4121230-7", + "source": "GND" + } + ], + "authorized_access_point": "EXBILA" + }, + { + "md5": "624709d40bfa62e7786c74760d75d163", + "pid": "041212339", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Reise" + } + ], + "related": [ + { + "authorized_access_point": "Studienreise" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332366899", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85136266", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85136266" + } + ], + "authorized_access_point": "Tourism and art" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332366899", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12528541", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12528541m" + } + ], + "authorized_access_point": "E\u0301le\u0300ves du secondaire - Voyages" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4121233-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041212339", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4121233-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Exkursionen" + ], + "authorized_access_point": "Exkursion" + }, + { + "md5": "0af9c8108dc751d82da025174e2a25b0", + "pid": "041214870", + "note": [ + { + "label": [ + "Als politische Justiz bezeichnet man die Instrumentalisierung von Gerichtsverfahren zur Benachteiligung oder Ausschaltung von Regimegegnern." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Justiz" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133696376", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85071136", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85071136" + } + ], + "authorized_access_point": "Justice, Administration of - Political aspects" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133696376", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13319233", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb133192330" + } + ], + "authorized_access_point": "Justice et politique" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254474099", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX549941", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX549941" + } + ], + "authorized_access_point": "Justicia y poli\u0301tica" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970580037", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10054809", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10054809" + } + ], + "authorized_access_point": "politische Justiz" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4121487-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041214870", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4121487-0", + "source": "GND" + } + ], + "authorized_access_point": "Politische Justiz" + }, + { + "md5": "5b12ac2803dc883769c872271b27d2c6", + "pid": "04121630X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Ratio legis" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4121630-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04121630X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4121630-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Rayon (Schutzbereich)", + "Schutzumfang" + ], + "authorized_access_point": "Schutzbereich" + }, + { + "md5": "0edf71b4d6baa4941793ed51aa0f2396", + "pid": "041217020", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Botanik" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4121702-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041217020", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4121702-0", + "source": "GND" + } + ], + "authorized_access_point": "Spezielle Botanik" + }, + { + "md5": "11e5f16b3f817bfec22afa811ce9dd41", + "pid": "041217225", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Statistisches_Modell&oldid=219273797" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mathematisches Modell" + } + ], + "related": [ + { + "authorized_access_point": "Stochastisches Modell" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134627246", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2005004376", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2005004376" + } + ], + "authorized_access_point": "Stochastic models" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4121722-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041217225", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4121722-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Statistik" + ], + "authorized_access_point": "Statistisches Modell" + }, + { + "md5": "9aa847acdbda739433f5c61341299cba", + "pid": "041217616", + "note": [ + { + "label": [ + "Erwerbsta\u0308tigkeit an einem externen Arbeitsplatz, der mit informationstechn. Endgera\u0308ten ausgestattet, dezentral eingerichtet und mit dem Auftraggeber/Arbeitgeber durch elektron. Kommunikationsnetze verbunden ist" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Heimarbeit" + }, + { + "authorized_access_point": "Arbeit" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134185731", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85133307", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85133307" + } + ], + "authorized_access_point": "Telecommuting" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134185731", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12140176", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12140176z" + } + ], + "authorized_access_point": "Te\u0301le\u0301travail" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)125432593X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "3744", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/3744" + } + ], + "authorized_access_point": "Telelavoro" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254493808", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX538553", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX538553" + } + ], + "authorized_access_point": "Teletrabajo" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966996208", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "18112-6", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/18112-6" + } + ], + "authorized_access_point": "Telearbeit" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970597282", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10035916", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10035916" + } + ], + "authorized_access_point": "Telearbeit" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4121761-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041217616", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4121761-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Tele-Heimarbeit", + "Home Office", + "Homeoffice", + "Fernarbeit", + "Computerheimarbeit", + "Tele-Working", + "Telecommuting", + "Tele-Arbeit", + "Telekommunikation", + "Mobiles Arbeiten" + ], + "authorized_access_point": "Telearbeit" + }, + { + "md5": "014771aad025d5ae41e0797f8d7dc555", + "pid": "041217896", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fasanenartige" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4121789-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041217896", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4121789-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Meleagridinae", + "Meleagrididae" + ], + "authorized_access_point": "Truthu\u0308hner (Unterfamilie)" + }, + { + "md5": "fa3c8d8afe89111232361864a4d80265", + "pid": "041218108", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133612857", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85044206", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85044206" + } + ], + "authorized_access_point": "Environmental protection - Research" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133612857", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12647462", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12647462n" + } + ], + "authorized_access_point": "Environnement - Recherche" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970598866", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10060580", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10060580" + } + ], + "authorized_access_point": "Umweltforschung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4121810-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041218108", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4121810-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Umweltschutzforschung" + ], + "authorized_access_point": "Umweltforschung" + }, + { + "md5": "b2830ce7047eac6efe43cda5bf77cd81", + "pid": "041218760", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schiff (Architektur)" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334556571", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85034295", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85034295" + } + ], + "authorized_access_point": "Crossing (Architecture)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4121876-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041218760", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4121876-0", + "source": "GND" + } + ], + "authorized_access_point": "Vierung" + }, + { + "md5": "a19476fcd24a7ae4649ce7636a89f4c1", + "pid": "04121952X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Verpackungspfand" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4121952-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04121952X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4121952-1", + "source": "GND" + } + ], + "authorized_access_point": "Zwangsverpackungspfand" + }, + { + "md5": "4297b2ccba36f523fd15d1b0628d54d0", + "pid": "041220609", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Industrieausstellung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133695337", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11982542", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119825429" + } + ], + "authorized_access_point": "Expositions automobiles" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4122060-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041220609", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4122060-2", + "source": "GND" + } + ], + "authorized_access_point": "Automobilausstellung" + }, + { + "md5": "b91c447f180a9d70737fdea24aae69df", + "pid": "041220803", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Ermessen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4122080-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041220803", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4122080-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Wertungsspielraum" + ], + "authorized_access_point": "Beurteilungsspielraum" + }, + { + "md5": "03e80aaca77d10ed56fcfbdac955f969", + "pid": "041227980", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Xenismus" + }, + { + "authorized_access_point": "Entlehnung" + } + ], + "related": [ + { + "authorized_access_point": "Amerikanismus" + }, + { + "authorized_access_point": "Englisch" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134149212", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12073697", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12073697g" + } + ], + "authorized_access_point": "Emprunts anglais" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4122798-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041227980", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4122798-0", + "source": "GND" + } + ], + "authorized_access_point": "Anglizismus" + }, + { + "md5": "bbc66f8654f64c4a0cb7ef55ecb47523", + "pid": "041231899", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Optischer Sensor" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133827055", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh93001076", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh93001076" + } + ], + "authorized_access_point": "Optical fiber detectors" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133827055", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12545899", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12545899f" + } + ], + "authorized_access_point": "De\u0301tecteurs a\u0300 fibres optiques" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4123189-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041231899", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4123189-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Faseroptik", + "FOS (Sensortechnik)" + ], + "authorized_access_point": "Faseroptischer Sensor" + }, + { + "md5": "7278f9c7f1067e70c75a03a92af42247", + "pid": "041235347", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zelle" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133886736", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85081545", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85081545" + } + ], + "authorized_access_point": "Bone marrow cells" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133886736", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13743509", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13743509t" + } + ], + "authorized_access_point": "Cellules de la moelle osseuse" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133658923X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D001854", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D001854" + } + ], + "authorized_access_point": "Bone Marrow Cells" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4123534-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041235347", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4123534-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Knochenmarkzellen", + "Knochenmarkszelle" + ], + "authorized_access_point": "Knochenmarkzelle" + }, + { + "md5": "7f8af601a82d1565383d06452899eee8", + "pid": "041236599", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "related": [ + { + "authorized_access_point": "Liquidita\u0308tsplanung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4123659-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041236599", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4123659-2", + "source": "GND" + } + ], + "authorized_access_point": "LIPLAN" + }, + { + "md5": "fcddfb7d0e539015de082e46fc76f7b0", + "pid": "041237226", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tourismus" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134026447", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2019000183", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2019000183" + } + ], + "authorized_access_point": "Overtourism" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134026447", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17901252", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17901252q" + } + ], + "authorized_access_point": "Tourisme de masse" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4123722-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041237226", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4123722-5", + "source": "GND" + } + ], + "authorized_access_point": "Massentourismus" + }, + { + "md5": "3195176767afd8ff50ee056060e3ec93", + "pid": "041238826", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133672825", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85080183", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85080183" + } + ], + "authorized_access_point": "Malocclusion" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133672825", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11970770", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11970770d" + } + ], + "authorized_access_point": "Malocclusion dentaire" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254468838", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX546636", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX546636" + } + ], + "authorized_access_point": "Maloclusio\u0301n" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1241615926", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D008310", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D008310" + } + ], + "authorized_access_point": "Malocclusion" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4123882-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041238826", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4123882-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Malokklusion", + "Okklusionsanomalie", + "Okklusionsabweichung" + ], + "authorized_access_point": "Okklusionssto\u0308rung" + }, + { + "md5": "597832018a786ba5ca8e1492ef1679c8", + "pid": "041239288", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Daten" + } + ], + "related": [ + { + "authorized_access_point": "Personenbezogene Daten" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113445919X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh00009296", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00009296" + } + ], + "authorized_access_point": "Electronic monitoring in the workplace" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113445919X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF14621537", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb146215374" + } + ], + "authorized_access_point": "Surveillance e\u0301lectronique en milieu de travail" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970578652", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10040511", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10040511" + } + ], + "authorized_access_point": "Personaldaten" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4123928-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041239288", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4123928-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Bescha\u0308ftigtendaten", + "Mitarbeiterdaten", + "Arbeitnehmer" + ], + "authorized_access_point": "Personaldaten" + }, + { + "md5": "f41db8a13d2b225d7630d962396f1619", + "pid": "041240510", + "note": [ + { + "label": [ + "Marketingmassnahme zur Verla\u0308ngerung des Produktlebenszyklus" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Produktlebenszyklus" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4124051-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041240510", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4124051-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Relaunching" + ], + "authorized_access_point": "Relaunch" + }, + { + "md5": "f79355352902db6a0b6bb7f8a51d2dad", + "pid": "041240839", + "note": [ + { + "label": [ + "Mit einzelnen Substanzen werden keine Komposita gebildet (Komposita wie Pestizidru\u0308ckstand sollten aber mo\u0308glich sein)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Reststoff" + }, + { + "authorized_access_point": "Restabfall" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134038585", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11975880", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119758806" + } + ], + "authorized_access_point": "Re\u0301sidus" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256252875", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "6518", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_6518" + } + ], + "authorized_access_point": "residues" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4124083-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041240839", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4124083-2", + "source": "GND" + } + ], + "authorized_access_point": "Ru\u0308ckstand" + }, + { + "md5": "277a08c015152011fdd16eeeffd3f2b1", + "pid": "04124317X", + "note": [ + { + "label": [ + "Eine Tochtergesellschaft ist ein Unternehmen, das unmittelbar oder mittelbar von einem Mutterunternehmen kontrolliert wird." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Abha\u0308ngiges Unternehmen" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134501099", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85129532", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85129532" + } + ], + "authorized_access_point": "Subsidiary corporations" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134501099", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11971987", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11971987x" + } + ], + "authorized_access_point": "Filiales" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1299912303", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX553203", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX553203" + } + ], + "authorized_access_point": "Filiales" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)967004896", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "18119-6", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/18119-6" + } + ], + "authorized_access_point": "Tochtergesellschaft" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970597851", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10037293", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10037293" + } + ], + "authorized_access_point": "Tochtergesellschaft" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4124317-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04124317X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4124317-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Tochterunternehmen" + ], + "authorized_access_point": "Tochtergesellschaft" + }, + { + "md5": "e2f2f9bb253421a4102ee757f0d95d37", + "pid": "041244362", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bedarf" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134045700", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh00005691", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00005691" + } + ], + "authorized_access_point": "Water requirements" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134045700", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11977153", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11977153v" + } + ], + "authorized_access_point": "Besoins en eau" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256270288", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "8323", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_8323" + } + ], + "authorized_access_point": "water requirements" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4124436-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041244362", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4124436-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Wasser" + ], + "authorized_access_point": "Wasserbedarf" + }, + { + "md5": "a63e44d7e01a22f53b704d98a8525e63", + "pid": "041245296", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4124529-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041245296", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4124529-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Betriebsmittel" + ], + "authorized_access_point": "Aggregat" + }, + { + "md5": "a5b39983c5a4bf64d75758cd9bc85586", + "pid": "041250117", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134693982", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85032941", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85032941" + } + ], + "authorized_access_point": "Corporations - Growth" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134693982", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11961373", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11961373c" + } + ], + "authorized_access_point": "Entreprises - Croissance" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)967010853", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "12069-4", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/12069-4" + } + ], + "authorized_access_point": "Unternehmenserfolg" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4125011-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041250117", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4125011-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Unternehmen" + ], + "authorized_access_point": "Unternehmensentwicklung" + }, + { + "md5": "5cb51316f9594ae29e37e8b07e0b1412", + "pid": "041251733", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ku\u0308nstler" + } + ], + "related": [ + { + "authorized_access_point": "Grafikerin" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134352247", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85028916", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85028916" + } + ], + "authorized_access_point": "Commercial artists" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331597730", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2006004207", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2006004207" + } + ], + "authorized_access_point": "Graphic artists" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134352247", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12507269", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12507269h" + } + ], + "authorized_access_point": "Graphistes" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4125173-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041251733", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4125173-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Graphiker" + ], + "authorized_access_point": "Grafiker" + }, + { + "md5": "18bfb474fc05c5f67dcf8e08faff5d62", + "pid": "041252896", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Feuerwehr" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133615511", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85048486", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85048486" + } + ], + "authorized_access_point": "Fire extinction" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133615511", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11932069", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11932069x" + } + ], + "authorized_access_point": "Incendies - Extinction" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254384669", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "52317", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/52317" + } + ], + "authorized_access_point": "Spegnimento" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)125441410X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX559831", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX559831" + } + ], + "authorized_access_point": "Incendios - Extincio\u0301n" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4125289-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041252896", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4125289-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Feuerbeka\u0308mpfung", + "Feuerlo\u0308schen", + "Feuer", + "Abwehrender Brandschutz" + ], + "authorized_access_point": "Brandbeka\u0308mpfung" + }, + { + "md5": "3871c9362ee3b24d0e98e903e4d26138", + "pid": "041254538", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1299909892", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX526296", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX526296" + } + ], + "authorized_access_point": "Especta\u0301culos" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966670582", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "27683-4", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/27683-4" + } + ], + "authorized_access_point": "Veranstaltung" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970600127", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10065094", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10065094" + } + ], + "authorized_access_point": "Veranstaltung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4125453-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041254538", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4125453-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Event", + "Veranstaltungen", + "Events" + ], + "authorized_access_point": "Veranstaltung" + }, + { + "md5": "f90ff6f506c771d1a8b17105072802bb", + "pid": "041254759", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Auxologie" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133629822", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11938480", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119384800" + } + ], + "authorized_access_point": "Anthropome\u0301trie" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254345205", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "18100", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/18100" + } + ], + "authorized_access_point": "Antropometria" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254404988", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX4576284", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX4576284" + } + ], + "authorized_access_point": "Antropometri\u0301a" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4125475-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041254759", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4125475-2", + "source": "GND" + } + ], + "authorized_access_point": "Anthropometrie" + }, + { + "md5": "a68c8a4659cf6d66364700f83803d77f", + "pid": "041255364", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134720793", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12145482", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12145482x" + } + ], + "authorized_access_point": "Communication te\u0301le\u0301phonique" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4125536-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041255364", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4125536-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Telefongespra\u0308ch", + "Fernsprechen", + "Anrufen (Telefonieren)" + ], + "authorized_access_point": "Telefonieren" + }, + { + "md5": "4fbebfff1da9511bd56a2334e76838a1", + "pid": "041255887", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133639275", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85091047", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85091047" + } + ], + "authorized_access_point": "Netsukes" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133639275", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11945149", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11945149h" + } + ], + "authorized_access_point": "Netsuke" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254326421", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "3974", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/3974" + } + ], + "authorized_access_point": "Netsuke" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254466614", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX558922", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX558922" + } + ], + "authorized_access_point": "Netsuke" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4125588-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041255887", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4125588-4", + "source": "GND" + } + ], + "authorized_access_point": "Netsuke" + }, + { + "md5": "0099ee4849c434ecbc99cfb6ccf479c3", + "pid": "041258584", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kultur" + } + ], + "related": [ + { + "authorized_access_point": "Alltagskultur" + }, + { + "authorized_access_point": "Arbeiterkultur" + }, + { + "authorized_access_point": "Industriekultur" + }, + { + "authorized_access_point": "Volkskultur" + }, + { + "authorized_access_point": "Popkultur" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134492146", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13318336", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb133183362" + } + ], + "authorized_access_point": "Culture de masse" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970571321", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10050181", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10050181" + } + ], + "authorized_access_point": "Massenkultur" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4125858-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041258584", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4125858-7", + "source": "GND" + } + ], + "authorized_access_point": "Massenkultur" + }, + { + "md5": "9ed69a0f65100af5f19a15df5b3b5205", + "pid": "041258762", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4125876-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041258762", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4125876-9", + "source": "GND" + } + ], + "authorized_access_point": "Brennverlauf" + }, + { + "md5": "93d5a574b5eefa415f89dd16b2b9fefb", + "pid": "041258819", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Lachsartige (Familie)" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134672071", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh88006387", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh88006387" + } + ], + "authorized_access_point": "Sea trout" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134672071", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11987418", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11987418c" + } + ], + "authorized_access_point": "Truite de mer" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256235938", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "24702", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_24702" + } + ], + "authorized_access_point": "Salmo trutta" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4125881-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041258819", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4125881-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Lachsforelle", + "Salmo trutta trutta" + ], + "authorized_access_point": "Meerforelle" + }, + { + "md5": "18a9b3312a0b69be19ae4643aa427952", + "pid": "04126133X", + "note": [ + { + "label": [ + "die in vielen Religionen und spirituellen Bewegungen vorhandene Idee, dass die Welt von Zeit zu Zeit in ein neues Zeitalter eintritt" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Wassermannzeitalter" + }, + { + "authorized_access_point": "New Age" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4126133-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04126133X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4126133-1", + "source": "GND" + } + ], + "authorized_access_point": "Neues Zeitalter" + }, + { + "md5": "43581750273ea01c7b58aa3db70042b0", + "pid": "041264487", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fu\u0308hrungskraft" + }, + { + "authorized_access_point": "Bevollma\u0308chtigter" + } + ], + "related": [ + { + "authorized_access_point": "Prokuristin" + }, + { + "authorized_access_point": "Prokura" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134692072", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11977389", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11977389d" + } + ], + "authorized_access_point": "Mandat" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4126448-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041264487", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4126448-4", + "source": "GND" + } + ], + "authorized_access_point": "Prokurist" + }, + { + "md5": "119025a0fb0ceed7fc15946ed453acbf", + "pid": "041269950", + "note": [ + { + "label": [ + "Avantgardistischer japan. Tanz" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tanz" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133786634", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh90000099", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh90000099" + } + ], + "authorized_access_point": "Buto\u0304" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133786634", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12389686", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb123896860" + } + ], + "authorized_access_point": "Buto\u0304" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4126995-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041269950", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4126995-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Butoh", + "Buto\u0302 (Tanz)" + ], + "authorized_access_point": "Buto\u0302-Tanz" + }, + { + "md5": "793e78c3645ee3380ebb9c8558ab1be6", + "pid": "041270290", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Name" + }, + { + "authorized_access_point": "Chemische Nomenklatur" + }, + { + "authorized_access_point": "Zoologische Nomenklatur" + }, + { + "authorized_access_point": "Botanische Nomenklatur" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134080697", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11983360", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11983360x" + } + ], + "authorized_access_point": "Noms vernaculaires" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4127029-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041270290", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4127029-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Trivialnamen" + ], + "authorized_access_point": "Trivialname" + }, + { + "md5": "f5a380dd3c9ff2bd459432c239cafbaa", + "pid": "041273230", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zelle" + }, + { + "authorized_access_point": "Muskelfaser" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134519516", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85088676", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85088676" + } + ], + "authorized_access_point": "Muscle cells" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134519516", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11937793", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11937793x" + } + ], + "authorized_access_point": "Myocytes" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336589426", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D032342", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D032342" + } + ], + "authorized_access_point": "Muscle Cells" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4127323-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041273230", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4127323-0", + "source": "GND" + } + ], + "authorized_access_point": "Muskelzelle" + }, + { + "md5": "3bb422fddd2b454c01bfa5d57df72a88", + "pid": "041274059", + "note": [ + { + "label": [ + "Alle Wissensgebiete umfassende spirituelle Bewegung", + "Fu\u0308r Schriften, die sich auf die Anku\u0308ndigung eines heraufkommenden neuen Zeitalters beschra\u0308nken, verwende |s|Neues Zeitalter bzw. |s|Wassermannzeitalter" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Neues Zeitalter" + }, + { + "authorized_access_point": "Wassermannzeitalter" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134187645", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh87000526", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh87000526" + } + ], + "authorized_access_point": "New Age movement" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134187645", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12144385", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12144385f" + } + ], + "authorized_access_point": "Nouvel a\u0302ge (mouvement)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254398813", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "7585", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/7585" + } + ], + "authorized_access_point": "New Age" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1299919162", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX535178", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX535178" + } + ], + "authorized_access_point": "Nueva Era" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970575831", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10048335", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10048335" + } + ], + "authorized_access_point": "New Age" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4127405-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041274059", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4127405-2", + "source": "GND" + } + ], + "authorized_access_point": "New Age" + }, + { + "md5": "3a3b4b19629dcc4c163fae991dba466d", + "pid": "041275829", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausgliederung" + } + ], + "related": [ + { + "authorized_access_point": "Fremdbezug" + }, + { + "authorized_access_point": "Make or buy" + }, + { + "authorized_access_point": "Contracting-out" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134494270", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85031614", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85031614" + } + ], + "authorized_access_point": "Contracting out" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134494270", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15719280", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15719280g" + } + ], + "authorized_access_point": "Externalisation" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966897404", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "19113-6", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/19113-6" + } + ], + "authorized_access_point": "Outsourcing" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970577702", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10063041", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10063041" + } + ], + "authorized_access_point": "Outsourcing" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4127582-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041275829", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4127582-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Funktionsbezogene Ausgliederung", + "Funktionsausgliederung" + ], + "authorized_access_point": "Outsourcing" + }, + { + "md5": "6796fe8c37bf86d769646cf524b8d25e", + "pid": "041277090", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Provision" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134105134", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85018275", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85018275" + } + ], + "authorized_access_point": "Business brokerage" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134105134", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12010402", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12010402f" + } + ], + "authorized_access_point": "Courtage" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4127709-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041277090", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4127709-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Maklerprovision", + "Maklercourtage", + "Courtage", + "Kurtage", + "Maklergebu\u0308hr", + "Maklervergu\u0308tung" + ], + "authorized_access_point": "Maklerlohn" + }, + { + "md5": "a956ef7174d48aed19a075e85d008209", + "pid": "041277848", + "note": [ + { + "label": [ + "O\u0308ffentl. Verurteilung von dogmat. Aussagen einer anderen Konfession" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Verurteilung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134615876", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13558002", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb135580023" + } + ], + "authorized_access_point": "Censures doctrinales" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4127784-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041277848", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4127784-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Verwerfungsaussage" + ], + "authorized_access_point": "Lehrverurteilung" + }, + { + "md5": "fa69ccf291d548a462b8e815624cf345", + "pid": "041280628", + "note": [ + { + "label": [ + "Gattungsgruppe" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bienen (Familie)" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134184484", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85017981", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85017981" + } + ], + "authorized_access_point": "Bumblebees" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134184484", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12137395", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb121373958" + } + ], + "authorized_access_point": "Bourdons (insectes)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4128062-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041280628", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4128062-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Bombini" + ], + "authorized_access_point": "Hummeln" + }, + { + "md5": "c9a2ef91cf1f27b3fcdfee9e39213b70", + "pid": "041281632", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Prognose" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4128163-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041281632", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4128163-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Kriminalita\u0308tsprognose", + "Legalprognose" + ], + "authorized_access_point": "Kriminalprognose" + }, + { + "md5": "445d0df391db108ef7e62ed1941e4eaa", + "pid": "04128237X", + "note": [ + { + "label": [ + "Zusammenfassender Begriff fu\u0308r alle Flexibilisierungsstrategien im Bereich d. Arbeit" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134493010", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11933626", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11933626j" + } + ], + "authorized_access_point": "Marche\u0301 du travail" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4128237-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04128237X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4128237-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Flexibilisierung", + "Arbeitsflexibilita\u0308t" + ], + "authorized_access_point": "Arbeitsflexibilisierung" + }, + { + "md5": "0260e58c47b19d4d263b11c5d1ad2985", + "pid": "041282787", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Flugtriebwerk" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134724330", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85002908", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85002908" + } + ], + "authorized_access_point": "Airplanes - Turbojet engines" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133696430", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85070170", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85070170" + } + ], + "authorized_access_point": "Jet propulsion" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134724330", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11944356", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119443563" + } + ], + "authorized_access_point": "Avions - Turbore\u0301acteurs" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133696430", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11982987", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11982987c" + } + ], + "authorized_access_point": "Propulsion par re\u0301action" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4128278-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041282787", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4128278-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Du\u0308senantrieb", + "Du\u0308sentriebwerk", + "Durchstro\u0308mtriebwerk", + "Strahlantrieb", + "Strahltriebwerk", + "Luftatmendes Flugtriebwerk" + ], + "authorized_access_point": "Luftstrahltriebwerk" + }, + { + "md5": "f5a4c169e2babf3f9297e08417faa6c1", + "pid": "041284100", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ideal" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134658567", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85012720", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85012720" + } + ], + "authorized_access_point": "Beauty, Personal" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134658567", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11938482", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11938482p" + } + ], + "authorized_access_point": "Beaute\u0301 corporelle" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254484205", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX525607", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX525607" + } + ], + "authorized_access_point": "Belleza corporal" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4128410-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041284100", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4128410-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Scho\u0308nheit", + "Scho\u0308nheitskult" + ], + "authorized_access_point": "Scho\u0308nheitsideal" + }, + { + "md5": "63eeb07f32045a6f9463485cb7a8a358", + "pid": "041285913", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Filter (Stochastik)" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113390596X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85071360", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85071360" + } + ], + "authorized_access_point": "Kalman filtering" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113390596X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12290051", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12290051j" + } + ], + "authorized_access_point": "Kalman, Filtrage de" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4128591-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041285913", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4128591-8", + "source": "GND" + } + ], + "authorized_access_point": "Kalman-Bucy-Filter" + }, + { + "md5": "e5d07e181f4287c60093d9ff970a5e92", + "pid": "041287045", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zelle" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133992099", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85019549", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85019549" + } + ], + "authorized_access_point": "Cancer cells" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133992099", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11958048", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11958048t" + } + ], + "authorized_access_point": "Cellules cance\u0301reuses" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254382798", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "50347", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/50347" + } + ], + "authorized_access_point": "Cellule neoplastiche" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254452249", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX533645", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX533645" + } + ], + "authorized_access_point": "Ce\u0301lulas cancerosas" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4128704-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041287045", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4128704-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Krebs (Medizin)" + ], + "authorized_access_point": "Krebszelle" + }, + { + "md5": "c2e7565ee7e5cf54a9547562805030d1", + "pid": "041287886", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4128788-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041287886", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4128788-5", + "source": "GND" + } + ], + "authorized_access_point": "Bezirk Detmold (Motiv)" + }, + { + "md5": "c4c5aa9c10a980e34a3c9a22aab68300", + "pid": "04128805X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kunststoff" + }, + { + "authorized_access_point": "Faserverbundwerkstoff" + } + ], + "related": [ + { + "authorized_access_point": "Noppenwabe" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133927459", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85112457", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85112457" + } + ], + "authorized_access_point": "Reinforced plastics" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134305737", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85048018", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85048018" + } + ], + "authorized_access_point": "Fiber-reinforced plastics" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133927459", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11932441", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11932441n" + } + ], + "authorized_access_point": "Matie\u0300res plastiques renforce\u0301es" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134305737", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12386115", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12386115c" + } + ], + "authorized_access_point": "Matie\u0300res plastiques renforce\u0301es avec des fibres" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4128805-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04128805X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4128805-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Faser-Kunststoff-Verbund", + "Faserverbundkunststoff", + "FKV (Werkstoff)", + "FVK (Werkstoff)", + "Fibre-reinforced plastic" + ], + "authorized_access_point": "Faserversta\u0308rkter Kunststoff" + }, + { + "md5": "39b3d002aaa0ae0698732e5882ae6193", + "pid": "041288769", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Nerv" + }, + { + "authorized_access_point": "Nervensystem" + }, + { + "authorized_access_point": "Nervale Regulation" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134045719", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh99002358", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh99002358" + } + ], + "authorized_access_point": "Innervation" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134045719", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11977157", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119771577" + } + ], + "authorized_access_point": "Innervation" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4128876-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041288769", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4128876-2", + "source": "GND" + } + ], + "authorized_access_point": "Innervation" + }, + { + "md5": "b6cebc7441d522173e10fd5565bbf60e", + "pid": "041289870", + "note": [ + { + "label": [ + "Mo\u0308glichst keine Komposita fu\u0308r bestimmte Gene bilden (Ausnahme: Gengruppen)." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Genom" + } + ], + "related": [ + { + "authorized_access_point": "Operon" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133736459", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh91000344", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh91000344" + } + ], + "authorized_access_point": "Genes" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133736459", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12224891", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12224891h" + } + ], + "authorized_access_point": "Ge\u0300nes" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254330909", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "6576", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/6576" + } + ], + "authorized_access_point": "Geni" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254433821", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX526735", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX526735" + } + ], + "authorized_access_point": "Genes" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256216682", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "3214", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_3214" + } + ], + "authorized_access_point": "genes" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4128987-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041289870", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4128987-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Erbanlage (Gen)", + "Erbeinheit", + "Erbfaktor" + ], + "authorized_access_point": "Gen" + }, + { + "md5": "1853d76988edc3bbef2d02815b39feec", + "pid": "041291107", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Teilchenstrahlung" + }, + { + "authorized_access_point": "Radioaktive Strahlung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134775881", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85013449", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85013449" + } + ], + "authorized_access_point": "Beta rays" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134775881", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11978653", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11978653g" + } + ], + "authorized_access_point": "Rayons be\u0302ta" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4129110-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041291107", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4129110-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Betastrahlen" + ], + "authorized_access_point": "Betastrahlung" + }, + { + "md5": "b98e1876c0d0788fc47bf1fa38644236", + "pid": "041296540", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Theaterbau" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133630715", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85088079", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85088079" + } + ], + "authorized_access_point": "Motion picture theaters" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133630715", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11939426", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11939426f" + } + ], + "authorized_access_point": "Cine\u0301mas" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254321977", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "2140", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/2140" + } + ], + "authorized_access_point": "Sale cinematografiche" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254448837", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX526308", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX526308" + } + ], + "authorized_access_point": "Cines" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966799305", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "18919-2", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/18919-2" + } + ], + "authorized_access_point": "Kino" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970563515", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10043586", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10043586" + } + ], + "authorized_access_point": "Kino" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4129654-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041296540", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4129654-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Filmtheater", + "Lichtspielhaus", + "Lichtspieltheater" + ], + "authorized_access_point": "Kino" + }, + { + "md5": "2c19c88cc8bbc78d492d3bd7eb759315", + "pid": "041299604", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zellwachstum" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133729088", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85021643", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85021643" + } + ], + "authorized_access_point": "Cell cycle" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113379047X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85102706", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85102706" + } + ], + "authorized_access_point": "Plant cell cycle" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113379047X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12412715", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12412715s" + } + ], + "authorized_access_point": "Cycle cellulaire ve\u0301ge\u0301tal" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133729088", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12153911", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12153911h" + } + ], + "authorized_access_point": "Cycle cellulaire" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)125627335X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "37218", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_37218" + } + ], + "authorized_access_point": "cell cycle" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336586133", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D002453", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D002453" + } + ], + "authorized_access_point": "Cell Cycle" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4129960-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041299604", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4129960-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Mitosezyklus", + "Zellcyclus" + ], + "authorized_access_point": "Zellzyklus" + }, + { + "md5": "8281978793a071222772cfc35b0ba5c6", + "pid": "041301005", + "note": [ + { + "label": [ + "Fu\u0308r das Recht benutze Ru\u0308ckfall" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134155158", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh98007420", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh98007420" + } + ], + "authorized_access_point": "Diseases - Relapse" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134155158", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12087741", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb120877419" + } + ], + "authorized_access_point": "Re\u0301cidives" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1241620768", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D012008", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D012008" + } + ], + "authorized_access_point": "Recurrence" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4130100-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041301005", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4130100-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Ru\u0308ckfall (Medizin)", + "Ru\u0308ckfall (Psychologie)" + ], + "authorized_access_point": "Rezidiv" + }, + { + "md5": "5360f8e4198808d6699abab1c3f4046a", + "pid": "041303768", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Geldmenge" + }, + { + "authorized_access_point": "Kreditscho\u0308pfung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334883556", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17740301b", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://catalogue.bnf.fr/ark:/12148/cb17740301b" + } + ], + "authorized_access_point": "Cre\u0301ation de monnaie" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966755669", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "11424-1", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/11424-1" + } + ], + "authorized_access_point": "Geldscho\u0308pfung" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970552912", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10044841", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10044841" + } + ], + "authorized_access_point": "Geldscho\u0308pfung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4130376-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041303768", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4130376-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Geldschaffung" + ], + "authorized_access_point": "Geldscho\u0308pfung" + }, + { + "md5": "710ce8fde4d5fbbbf3fae9008db0f690", + "pid": "041305450", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Unechtes Werk" + }, + { + "authorized_access_point": "Zuschreibung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134155654", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85010030", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85010030" + } + ], + "authorized_access_point": "Authorship" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134155654", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12088586", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12088586z" + } + ], + "authorized_access_point": "Attribution" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4130545-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041305450", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4130545-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Autorenschaft", + "Verfasserschaft", + "Verfasserschaftsfrage", + "Verfasserfrage" + ], + "authorized_access_point": "Autorschaft" + }, + { + "md5": "61ee80487cb85ea643e4cd8aac89123e", + "pid": "041306473", + "note": [ + { + "label": [ + "Zusammenfassend fu\u0308r alle Wettbewerbe" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Europapokal" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113480914X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13736020", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13736020g" + } + ], + "authorized_access_point": "Football - Ligue des champions" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4130647-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041306473", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4130647-8", + "source": "GND" + } + ], + "authorized_access_point": "Fu\u00dfballeuropapokal" + }, + { + "md5": "a0f1c10f9b1c23b9f0e8a2d946a0694f", + "pid": "041306570", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133633234", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85145963", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85145963" + } + ], + "authorized_access_point": "Weights and measures" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134210590", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12205303", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12205303v" + } + ], + "authorized_access_point": "Poids" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133633234", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11941221", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11941221f" + } + ], + "authorized_access_point": "Poids et mesures" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254350136", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "21495", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/21495" + } + ], + "authorized_access_point": "Misure" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254435301", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX526274", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX526274" + } + ], + "authorized_access_point": "Pesos y medidas" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256217689", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "8349", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_8349" + } + ], + "authorized_access_point": "weight" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4130657-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041306570", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4130657-0", + "source": "GND" + } + ], + "authorized_access_point": "Gewicht" + }, + { + "md5": "46c1a89d16adf76b7deecb6711b050b6", + "pid": "041308107", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Verfassungsma\u0308\u00dfige Ordnung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4130810-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041308107", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4130810-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Staat", + "Staatszielbestimmung", + "Staatsziele" + ], + "authorized_access_point": "Staatsziel" + }, + { + "md5": "20f92e09723a4130f61ac1d35c4b331b", + "pid": "041308166", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Beratender Ingenieur" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134046170", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85043219", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85043219" + } + ], + "authorized_access_point": "Engineering firms" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134046170", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11977242", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11977242g" + } + ], + "authorized_access_point": "Socie\u0301te\u0301s d'inge\u0301nieurs-conseils" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966782615", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "13381-4", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/13381-4" + } + ], + "authorized_access_point": "Ingenieurbu\u0308ro" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4130816-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041308166", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4130816-5", + "source": "GND" + } + ], + "authorized_access_point": "Ingenieurbu\u0308ro" + }, + { + "md5": "e4901d8b8cd542dc54a5da54064dc3c3", + "pid": "041308263", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4130826-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041308263", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4130826-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Schadensuntersuchung" + ], + "authorized_access_point": "Schadensanalyse" + }, + { + "md5": "9477782c51943aca9e04e43a48e42b2c", + "pid": "041311248", + "note": [ + { + "label": [ + "Als Videokonferenz bezeichnet man eine Form der Telekommunikation, bei der mithilfe von Kameras, Mikrofonen, Bildschirmen und Lautsprechern eine audiovisuelle Verbindung zwischen zwei oder mehr Personen hergestellt und so ein wechselseitiger Informationsaustausch ermo\u0308glicht wird." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Telekonferenz" + } + ], + "related": [ + { + "authorized_access_point": "Telepra\u0308senz" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134204450", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh88004839", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh88004839" + } + ], + "authorized_access_point": "Videoconferencing" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134204450", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12192080", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12192080f" + } + ], + "authorized_access_point": "Visioconfe\u0301rences" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1299905978", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX546241", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX546241" + } + ], + "authorized_access_point": "Videoconferencia" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970602065", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10065463", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10065463" + } + ], + "authorized_access_point": "Videokonferenz" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4131124-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041311248", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4131124-3", + "source": "GND" + } + ], + "authorized_access_point": "Videokonferenz" + }, + { + "md5": "edc059a66c715807cda14ef5139d2710", + "pid": "041312368", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mo\u0308rtel" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134748019", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85057520", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85057520" + } + ], + "authorized_access_point": "Grout (Mortar)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134748019", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12337766", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb123377664" + } + ], + "authorized_access_point": "Mortier liquide" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4131236-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041312368", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4131236-3", + "source": "GND" + } + ], + "authorized_access_point": "Zementmo\u0308rtel" + }, + { + "md5": "a6e9ba26ac652a61631997fbdc7626b4", + "pid": "041312406", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Beweis" + } + ], + "related": [ + { + "authorized_access_point": "Rechtsgutachten" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134028687", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85046005", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85046005" + } + ], + "authorized_access_point": "Evidence, Expert" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134028687", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11971981", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11971981v" + } + ], + "authorized_access_point": "Expertises" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4131240-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041312406", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4131240-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Sachversta\u0308ndiger" + ], + "authorized_access_point": "Sachversta\u0308ndigenbeweis" + }, + { + "md5": "06349153d7344d3dd5695b4e7f93ef15", + "pid": "041317718", + "note": [ + { + "label": [ + "Gemalte Strukturierung eines Objekts in Marmorart (beispielsweise zur Verzierung von Papier, Buchschnitt oder Leder mit typischen Mustern)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Malerei" + }, + { + "authorized_access_point": "Muster (Dekor)" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134528264", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85080958", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85080958" + } + ], + "authorized_access_point": "Marbling" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113454264X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85080959", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85080959" + } + ], + "authorized_access_point": "Marbling (Bookbinding)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113454264X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13319182", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13319182x" + } + ], + "authorized_access_point": "Marbrure (reliure)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254509968", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX5221003", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX5221003" + } + ], + "authorized_access_point": "Marmoleado" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4131771-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041317718", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4131771-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Marmormalerei" + ], + "authorized_access_point": "Marmorierung" + }, + { + "md5": "5dc4f354bce839a9a83fc5da36b59543", + "pid": "041318153", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schaden" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134220243", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12226409", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12226409v" + } + ], + "authorized_access_point": "Inte\u0301re\u0302t (droit)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4131815-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041318153", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4131815-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Drittinteresse" + ], + "authorized_access_point": "Interesse (Recht)" + }, + { + "md5": "1103a2308ed14155012a7469f657d909", + "pid": "041319125", + "note": [ + { + "label": [ + "Vielfalt der Arten in einem Biom" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Biodiversita\u0308t" + } + ], + "related": [ + { + "authorized_access_point": "Artensterben" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133775853", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh87005571", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh87005571" + } + ], + "authorized_access_point": "Species diversity" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133775853", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12336704", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12336704b" + } + ], + "authorized_access_point": "Diversite\u0301 des espe\u0300ces" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4131912-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041319125", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4131912-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Artenvielfalt", + "Artenmannigfaltigkeit" + ], + "authorized_access_point": "Artenreichtum" + }, + { + "md5": "388bd623e6a754ca238303343ab0f812", + "pid": "041321782", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ansiedlung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134609086", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12229177", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb122291777" + } + ], + "authorized_access_point": "Parcs d'activite\u0301s e\u0301conomiques" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970558945", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10038906", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10038906" + } + ], + "authorized_access_point": "Industrieansiedlung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4132178-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041321782", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4132178-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Industriebetrieb" + ], + "authorized_access_point": "Industrieansiedlung" + }, + { + "md5": "399dbdf450c60d9ff14b8bca1b865da4", + "pid": "041322886", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Epischer Kyklos" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134548559", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2001000063", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2001000063" + } + ], + "authorized_access_point": "Troy (Extinct city) - Legends" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254496750", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX5219319", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX5219319" + } + ], + "authorized_access_point": "Troya (Ciudad desaparecida) - Leyendas" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4132288-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041322886", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4132288-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Troischer Sagenkreis", + "Trojasage" + ], + "authorized_access_point": "Trojanischer Sagenkreis" + }, + { + "md5": "4bc778c9b61daf625742494af9057832", + "pid": "04132305X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Geografie" + }, + { + "authorized_access_point": "Historische Geologie" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133960545", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85097061", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85097061" + } + ], + "authorized_access_point": "Paleogeography" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133960545", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11945801", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11945801f" + } + ], + "authorized_access_point": "Pale\u0301oge\u0301ographie" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254370803", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "37702", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/37702" + } + ], + "authorized_access_point": "Paleogeografia" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254470395", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX531420", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX531420" + } + ], + "authorized_access_point": "Paleogeografi\u0301a" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4132305-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04132305X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4132305-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Pala\u0308ogeographie" + ], + "authorized_access_point": "Pala\u0308ogeografie" + }, + { + "md5": "ecb59d93e1658383d3665da9e6d65154", + "pid": "04132501X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Unwahrheit" + } + ], + "related": [ + { + "authorized_access_point": "Unehrlichkeit" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133937241", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85063768", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85063768" + } + ], + "authorized_access_point": "Hypocrisy" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133937241", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11935462", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11935462b" + } + ], + "authorized_access_point": "Hypocrisie" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4132501-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04132501X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4132501-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Hypokrisie" + ], + "authorized_access_point": "Heuchelei" + }, + { + "md5": "4d5f3cda163b622375452b6c81cebc6c", + "pid": "041325109", + "note": [ + { + "label": [ + "Rechtsnachfolge bezeichnet die Auswechslung des Rechtssubjekts bei ansonsten unvera\u0308ndertem Rechtsbestand." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Rechtsnachfolger" + }, + { + "authorized_access_point": "Rechtserwerb" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4132510-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041325109", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4132510-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Subjektwechsel", + "Sukzession (Bu\u0308rgerliches Recht)" + ], + "authorized_access_point": "Rechtsnachfolge" + }, + { + "md5": "989e47b1970eea7977622d474e27e319", + "pid": "041325710", + "note": [ + { + "label": [ + "Offizieller Besuch des Tra\u0308gers der kirchlichen Jurisdiktion in seinem Jurisdiktionsbezirk zum Zwecke der kirchlichen Aufsicht \"vor Ort\"" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kirchenrecht" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4132571-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041325710", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4132571-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Kanonische Visitation", + "Kirchenvisitation" + ], + "authorized_access_point": "Visitation" + }, + { + "md5": "1fdf6c24a5ff4e1a0480f00db44e54d4", + "pid": "041326202", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Niveaufla\u0308che" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4132620-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041326202", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4132620-9", + "source": "GND" + } + ], + "authorized_access_point": "Drei\u00dfig-Millibar-Fla\u0308che" + }, + { + "md5": "387503ee01be0b26cfa9f9627c3c5bcd", + "pid": "041326393", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Betriebssystem" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134018509", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "n92062941", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/names/n92062941" + } + ], + "authorized_access_point": "UCSD p-System" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134018509", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11968223", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119682237" + } + ], + "authorized_access_point": "UCSD p-System" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4132639-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041326393", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4132639-8", + "source": "GND" + } + ], + "authorized_access_point": "UCSD p-System" + }, + { + "md5": "e8a52541db2dd04198c5d72ac3180269", + "pid": "041327896", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Staat" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331526035", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh87000305", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh87000305" + } + ], + "authorized_access_point": "Landlocked states" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331526035", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12107185", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12107185s" + } + ], + "authorized_access_point": "Pays sans littoral" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4132789-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041327896", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4132789-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Binnenstaaten" + ], + "authorized_access_point": "Binnenstaat" + }, + { + "md5": "9c4ab634d2ce09e18c31d98ee51c1df3", + "pid": "041328523", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Ko\u0308rper" + }, + { + "authorized_access_point": "Leiblichkeit" + }, + { + "authorized_access_point": "Soma" + }, + { + "authorized_access_point": "Leib-Seele-Problem" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332900690", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85015235", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85015235" + } + ], + "authorized_access_point": "Human body (Philosophy)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332900690", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11965587", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11965587k" + } + ], + "authorized_access_point": "Corps (philosophie)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4132852-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041328523", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4132852-8", + "source": "GND" + } + ], + "authorized_access_point": "Leib" + }, + { + "md5": "1056c3ecb8820223597897ef135288cb", + "pid": "041330048", + "note": [ + { + "label": [ + "Bei einzelnen Schutzhu\u0308tten wird ein Geographikum mit \"geoa\" relationiert." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Beherbergungsbetrieb" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134006896", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85087807", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85087807" + } + ], + "authorized_access_point": "Mountain shelters" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134006896", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11964951", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11964951f" + } + ], + "authorized_access_point": "Refuges de montagne" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4133004-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041330048", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4133004-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Alpenvereinshu\u0308tte", + "Alpinistischer Stu\u0308tzpunkt", + "Berghu\u0308tte", + "Bergsteigerstu\u0308tzpunkt", + "Hu\u0308tte (Schutzhu\u0308tte)", + "Alpenvereinshaus", + "Schutzhaus", + "Wanderhu\u0308tte", + "Schutzhu\u0308tten", + "Berghu\u0308tten" + ], + "authorized_access_point": "Schutzhu\u0308tte" + }, + { + "md5": "1f473b5dfbdd00d94c0f076f89fd6d95", + "pid": "041332156", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Krieg" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134025572", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85092579", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85092579" + } + ], + "authorized_access_point": "Northern War, 1700-1721" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134025572", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11971267", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11971267c" + } + ], + "authorized_access_point": "Guerre du Nord (1700-1721)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254468021", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX5369050", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX5369050" + } + ], + "authorized_access_point": "Guerra del Norte, 1700-1721" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4133215-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041332156", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4133215-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Gro\u00dfer Nordischer Krieg", + "Zweiter Nordischer Krieg (1700-1721)", + "Dritter Nordischer Krieg (1700-1721)" + ], + "authorized_access_point": "Nordischer Krieg (1700-1721)" + }, + { + "md5": "c6750e5fdd88e5d5935ca511cffb0321", + "pid": "041332237", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Installateurhandwerk" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133619509", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85103551", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85103551" + } + ], + "authorized_access_point": "Plumbing" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133619509", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11933155", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11933155r" + } + ], + "authorized_access_point": "Plomberie" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966801873", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "13185-4", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/13185-4" + } + ], + "authorized_access_point": "Klempnerhandwerk" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4133223-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041332237", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4133223-4", + "source": "GND" + } + ], + "authorized_access_point": "Klempnerhandwerk" + }, + { + "md5": "abc73512dee4671826f04b7f275d7993", + "pid": "041332997", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Alemannisch" + }, + { + "authorized_access_point": "Schweizerdeutsch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4133299-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041332997", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4133299-4", + "source": "GND" + } + ], + "authorized_access_point": "Hochalemannisch" + }, + { + "md5": "b07ac797b63117cfb3d1ac616e92aa21", + "pid": "041333004", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Alemannisch" + }, + { + "authorized_access_point": "Schweizerdeutsch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4133300-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041333004", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4133300-7", + "source": "GND" + } + ], + "authorized_access_point": "Ho\u0308chstalemannisch" + }, + { + "md5": "589606e85ed1acf66537de4006554bea", + "pid": "041336720", + "note": [ + { + "label": [ + "Der Generalunternehmer bedient sich zur Ausfu\u0308hrung eines Auftrags des Subunternehmers. Rechtsbeziehungen entstehen nur zwischen Generalunternehmer und Subunternehmer." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Unternehmer" + } + ], + "related": [ + { + "authorized_access_point": "Generalunternehmer" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333585977", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh95001761", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh95001761" + } + ], + "authorized_access_point": "Subcontractors" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333585977", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11934339", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119343399" + } + ], + "authorized_access_point": "Sous-traitance" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1283872862", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "30284-5", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/30284-5" + } + ], + "authorized_access_point": "Subunternehmer" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970595875", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10060775", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10060775" + } + ], + "authorized_access_point": "Subunternehmen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4133672-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041336720", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4133672-0", + "source": "GND" + } + ], + "authorized_access_point": "Subunternehmer" + }, + { + "md5": "1a775d09f264f5409e55f47caea9f28b", + "pid": "041336844", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Trockenblume" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134515529", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13188664", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb131886647" + } + ], + "authorized_access_point": "Fleurs presse\u0301es" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4133684-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041336844", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4133684-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Gepresste Blume", + "Gepresste Pflanze" + ], + "authorized_access_point": "Gepresste Pflanzen" + }, + { + "md5": "bbac97812ab15f707e32546c04e79a2b", + "pid": "041340892", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Statistik" + } + ], + "related": [ + { + "authorized_access_point": "Arbeitsmarkt" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4134089-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041340892", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4134089-9", + "source": "GND" + } + ], + "authorized_access_point": "Arbeitslosenstatistik" + }, + { + "md5": "8b86e6d7730b32e3572f6a969cc1930f", + "pid": "04134166X", + "note": [ + { + "label": [ + "Internet Stand: 17.02.2020 - http://www.wirtschaftslexikon24.com/e/sanierungspr%C3%BCfung/sanierungspr%C3%BCfung.htm" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Sanierungsbedu\u0308rftigkeitspru\u0308fung, Sanierungsfa\u0308higkeitspru\u0308fung, Sanierungswu\u0308rdigkeitspru\u0308fung" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4134166-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04134166X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4134166-1", + "source": "GND" + } + ], + "authorized_access_point": "Sanierungspru\u0308fung" + }, + { + "md5": "ecfd3348157cf24675e7393451ea9863", + "pid": "041344677", + "note": [ + { + "label": [ + "Ohne HZ Motiv" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Christusdarstellung" + }, + { + "authorized_access_point": "Motiv" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134523947", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12464254", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12464254t" + } + ], + "authorized_access_point": "Je\u0301sus-Christ - Passion - Dans l'art" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4134467-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041344677", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4134467-4", + "source": "GND" + } + ], + "authorized_access_point": "Passionsdarstellung" + }, + { + "md5": "63334d969db525e01f9bc3a7f3d0ddc3", + "pid": "041345835", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ladungssicherung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4134583-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041345835", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4134583-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Niederzurren", + "Festzurren" + ], + "authorized_access_point": "Zurren" + }, + { + "md5": "374992660d789658200f4a153fdafd3c", + "pid": "041351169", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wirtschaftsfo\u0308rderung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134090730", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "no2015079330", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/names/no2015079330" + } + ], + "authorized_access_point": "United States. Foreign Assistance Act of 1948" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134090730", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11998785", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11998785s" + } + ], + "authorized_access_point": "Plan Marshall (1948-1952)" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966738357", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10610-2", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/10610-2" + } + ], + "authorized_access_point": "Wirtschaftlicher Wiederaufbau" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970571178", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10051738", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10051738" + } + ], + "authorized_access_point": "Marshall-Plan" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4135116-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041351169", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4135116-2", + "source": "GND" + } + ], + "variant_access_point": [ + "ERP (abku)", + "Europa\u0308isches Wiederaufbauprogramm", + "European Recovery Program" + ], + "authorized_access_point": "Marshall-Plan" + }, + { + "md5": "181e764ab59af72e2cf9b4062e5622d8", + "pid": "041354710", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Handlung" + } + ], + "related": [ + { + "authorized_access_point": "Affekt" + }, + { + "authorized_access_point": "Affekttat" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4135471-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041354710", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4135471-0", + "source": "GND" + } + ], + "authorized_access_point": "Affekthandlung" + }, + { + "md5": "3f86ac46d5c3d0cc478976d31361191d", + "pid": "041357515", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Antenne" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4135751-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041357515", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4135751-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Aktivantenne" + ], + "authorized_access_point": "Aktive Antenne" + }, + { + "md5": "457557467cc06608101f1ab27ef921fe", + "pid": "041358678", + "note": [ + { + "label": [ + "Als Formschlagwort nicht verwendet, hier verwende f Tontra\u0308ger." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tontra\u0308ger" + }, + { + "authorized_access_point": "Magnetband" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4135867-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041358678", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4135867-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Magnettonband", + "Tonbandspule" + ], + "authorized_access_point": "Tonband" + }, + { + "md5": "684a32b1ad991a4c9eb9a0a0a668da63", + "pid": "041358902", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Aussage" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334231974", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85037044", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85037044" + } + ], + "authorized_access_point": "Depositions" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334231974", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11983503", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11983503n" + } + ], + "authorized_access_point": "De\u0301positions (proce\u0301dure)" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970606591", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10062918", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10062918" + } + ], + "authorized_access_point": "Zeugenaussage" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4135890-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041358902", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4135890-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Aussage" + ], + "authorized_access_point": "Zeugenaussage" + }, + { + "md5": "f8b8091cfa2d097ce9eb25cd6d77ea33", + "pid": "041365844", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Gesundheitsfu\u0308rsorge" + }, + { + "authorized_access_point": "Pra\u0308ventivmedizin" + }, + { + "authorized_access_point": "Pra\u0308vention" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134497970", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85083162", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85083162" + } + ], + "authorized_access_point": "Medicine, Preventive" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134497970", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11932340", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119323401" + } + ], + "authorized_access_point": "Me\u0301decine pre\u0301ventive" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966764102", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "18892-3", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/18892-3" + } + ], + "authorized_access_point": "Gesundheitsvorsorge" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970554370", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10045507", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10045507" + } + ], + "authorized_access_point": "Gesundheitsvorsorge" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4136584-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041365844", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4136584-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Gesundheitspra\u0308vention" + ], + "authorized_access_point": "Gesundheitsvorsorge" + }, + { + "md5": "c64acf095edc59fc90485a5284cc8dfb", + "pid": "041366352", + "type": "bf:Topic", + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256213128", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "4679", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_4679" + } + ], + "authorized_access_point": "meat production" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4136635-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041366352", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4136635-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Fleischerzeugung", + "Fleisch" + ], + "authorized_access_point": "Fleischproduktion" + }, + { + "md5": "60aba997826e0c9d7087a0eda74c0c46", + "pid": "041367782", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Flu\u0308ssigkeitsfilm" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4136778-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041367782", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4136778-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Fallfilm" + ], + "authorized_access_point": "Rieselfilm" + }, + { + "md5": "5bff64ab230ada6cfed1e30e2c935fb8", + "pid": "041368118", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kulturelle Einrichtung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133948162", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11939893", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11939893p" + } + ], + "authorized_access_point": "Centres culturels" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4136811-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041368118", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4136811-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Kulturzentren" + ], + "authorized_access_point": "Kulturzentrum" + }, + { + "md5": "5c4e9721e008b9954df2411c1cf7711a", + "pid": "041368517", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "related": [ + { + "authorized_access_point": "Fru\u0308hwarnsystem" + }, + { + "authorized_access_point": "Unternehmen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4136851-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041368517", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4136851-4", + "source": "GND" + } + ], + "authorized_access_point": "FES (Programm)" + }, + { + "md5": "f989ef1bc991aa0e9786c825e431ec29", + "pid": "041369424", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Halbleiterdiode" + }, + { + "authorized_access_point": "Lichtempfindliches Halbleiterbauelement" + }, + { + "authorized_access_point": "Photoelektronisches Bauelement" + }, + { + "authorized_access_point": "Photodetektor" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4136942-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041369424", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4136942-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Fotodiode" + ], + "authorized_access_point": "Photodiode" + }, + { + "md5": "a7af7468f0c8bef119784686c8fb6522", + "pid": "041369785", + "note": [ + { + "label": [ + "Benutzt im Sinne von Bekleidung fu\u0308r eine Rolle (z.B. Filmausstattung); ggf. wird ein engeres Schlagwort verwendet, z.B. Theaterkostu\u0308m; nicht benutzt im Sinne der Kostu\u0308mkunde, verwende hierfu\u0308r Kleidung oder Tracht bzw. ein engeres Schlagwort wie z.B. Hofkleidung, Standestracht usw." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Verkleidung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4136978-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041369785", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4136978-6", + "source": "GND" + } + ], + "authorized_access_point": "Kostu\u0308m" + }, + { + "md5": "12b05316bf9fdfc54c800475d6228155", + "pid": "041372867", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Unternehmen_Seel%C3%B6we&oldid=203501632" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Invasion" + }, + { + "authorized_access_point": "Planung" + } + ], + "related": [ + { + "authorized_access_point": "Zweiter Weltkrieg" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134571194", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85095008", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85095008" + } + ], + "authorized_access_point": "Operation Sea Lion" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134571194", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16599920", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb165999200" + } + ], + "authorized_access_point": "Ope\u0301ration Seelo\u0308we (1940)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4137286-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041372867", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4137286-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Seelo\u0308we (Invasion)", + "Operation Seelo\u0308we", + "Operation Sea Lion", + "Britischer Invasionsplan (1940)" + ], + "authorized_access_point": "Unternehmen Seelo\u0308we" + }, + { + "md5": "2e2a7287abc116beffa1463ba3e9988b", + "pid": "041373146", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331703506", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85011924", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85011924" + } + ], + "authorized_access_point": "Barrages" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331703506", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11947035", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119470351" + } + ], + "authorized_access_point": "Barrages" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)125620403X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "2121", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_2121" + } + ], + "authorized_access_point": "dams" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4137314-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041373146", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4137314-5", + "source": "GND" + } + ], + "authorized_access_point": "Damm" + }, + { + "md5": "3ea9decb2b7841a1dd78e44ee6ac7449", + "pid": "041374444", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4137444-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041374444", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4137444-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Fettsteuer" + ], + "authorized_access_point": "Fettabgabe" + }, + { + "md5": "ba966530448fbe688291baf2e26987cb", + "pid": "041375157", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332651100", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12043461", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb120434619" + } + ], + "authorized_access_point": "Abce\u0300s" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256187542", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "8564", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_8564" + } + ], + "authorized_access_point": "abscesses" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1241589364", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D000038", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000038" + } + ], + "authorized_access_point": "Abscess" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4137515-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041375157", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4137515-4", + "source": "GND" + } + ], + "authorized_access_point": "Abszess" + }, + { + "md5": "50d61c3d6bd55ae80d5590cf50fa3aaf", + "pid": "041375785", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4137578-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041375785", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4137578-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Nachkommenschaft", + "Nachkommen", + "Nachfahre", + "Nachfahren" + ], + "authorized_access_point": "Nachkomme" + }, + { + "md5": "c18feff6118d17bee3817d2fd210c2da", + "pid": "04137651X", + "note": [ + { + "label": [ + "Von einer Kirche herausgegebene Sammlung geistlicher Lieder und Gesa\u0308nge zum liturgischen und privaten Gebrauch" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Liederbuch" + } + ], + "related": [ + { + "authorized_access_point": "Kirchenlied" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134587139", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85063599", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85063599" + } + ], + "authorized_access_point": "Hymns" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134587139", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13505214", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13505214w" + } + ], + "authorized_access_point": "Hymnes" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4137651-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04137651X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4137651-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Gesangsbuch", + "Kirchengesangbuch", + "Kirchenliederbuch" + ], + "authorized_access_point": "Gesangbuch" + }, + { + "md5": "fc5675db60df0622d372d4fc78d4da2f", + "pid": "041378296", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Autor" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4137829-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041378296", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4137829-5", + "source": "GND" + } + ], + "authorized_access_point": "Urheber" + }, + { + "md5": "8f2ef7efbd55e81cd8bfd2e0c6ae98f6", + "pid": "041378407", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bauernhof" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4137840-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041378407", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4137840-4", + "source": "GND" + } + ], + "authorized_access_point": "Erbhof" + }, + { + "md5": "698fdcdbcbc1bf4b3c1a0e68965e747b", + "pid": "041378970", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Forstproduktion" + } + ], + "related": [ + { + "authorized_access_point": "Holzwirtschaft" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256222356", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "28194", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_28194" + } + ], + "authorized_access_point": "wood production" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4137897-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041378970", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4137897-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Holz", + "Holz" + ], + "authorized_access_point": "Holzproduktion" + }, + { + "md5": "ce12446b55a2ed890aac83ec75460926", + "pid": "041380827", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bankenaufsicht" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4138082-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041380827", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4138082-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Sparkasse" + ], + "authorized_access_point": "Sparkassenaufsicht" + }, + { + "md5": "7411dde21367b66e3d6a59ab4a062844", + "pid": "041382994", + "note": [ + { + "label": [ + "Unterrichtsfach aus einer Gruppe von Schulfa\u0308chern, aus der ein Schu\u0308ler auszuwa\u0308hlen hat" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Obligatorischer Unterricht" + }, + { + "authorized_access_point": "Wahlbereich" + }, + { + "authorized_access_point": "Unterrichtsfach" + } + ], + "related": [ + { + "authorized_access_point": "Wahlpflichtunterricht" + }, + { + "authorized_access_point": "Wahlfach" + }, + { + "authorized_access_point": "Pflichtfach" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134333277", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12461627", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb124616279" + } + ], + "authorized_access_point": "Matie\u0300res a\u0300 option" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970603010", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10061888", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10061888" + } + ], + "authorized_access_point": "Wahlpflichtfach" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4138299-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041382994", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4138299-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Wahlpflichtfa\u0308cher" + ], + "authorized_access_point": "Wahlpflichtfach" + }, + { + "md5": "0a67f52a7e22f2e6f5898f29de32215a", + "pid": "041385659", + "note": [ + { + "label": [ + "Gemeint ist die adaptive Reaktion des Organismus, z.B.Adrenalinausschu\u0308ttung etc.", + "Im Bedarfsfall kann das SW u\u0308ber eine entsprechende Sys.Nr. auch in der Biologie verwendet werden. Fu\u0308r den psychischen Stress benutze Stress." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Stress" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133756859", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85128702", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85128702" + } + ], + "authorized_access_point": "Stress (Physiology)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134230729", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh00004590", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00004590" + } + ], + "authorized_access_point": "Effect of stress on" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133756859", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13319737", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13319737r" + } + ], + "authorized_access_point": "Stress - Aspect physiologique" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134230729", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12248546", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb122485467" + } + ], + "authorized_access_point": "Effets du stress" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4138565-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041385659", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4138565-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Vegetative Stressreaktion", + "Stressverarbeitung", + "Stress", + "Physiologische Stressreaktion", + "Stressantwort" + ], + "authorized_access_point": "Stressreaktion" + }, + { + "md5": "5e60ac3aac6b4f8650d14d58b5a25ccf", + "pid": "041385896", + "note": [ + { + "label": [ + "Buntpapier, das das Aussehen farbigen Marmors imitiert" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Buntpapier" + } + ], + "related": [ + { + "authorized_access_point": "Marmorierung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133679099", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85080956", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85080956" + } + ], + "authorized_access_point": "Marbled papers" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133679099", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11975028", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11975028w" + } + ], + "authorized_access_point": "Papier marbre\u0301" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254459529", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX538888", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX538888" + } + ], + "authorized_access_point": "Papel marmoleado" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4138589-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041385896", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4138589-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Marmoriertes Papier", + "Tunkpapier", + "Tunkmarmor", + "Tunkmarmorpapier", + "Tu\u0308rkisch Papier", + "Tu\u0308rkisch Marmor" + ], + "authorized_access_point": "Marmorpapier" + }, + { + "md5": "e29257f99731ea3cd9d5898e120fa96c", + "pid": "041388984", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4138898-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041388984", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4138898-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Ersatzsicherheit" + ], + "authorized_access_point": "Ersatzdeckung" + }, + { + "md5": "b64b36bb4fbeb292c083c5662e94b640", + "pid": "041392450", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Vertrag" + }, + { + "authorized_access_point": "Arztrecht" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4139245-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041392450", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4139245-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Arzt", + "Behandlungsvertrag" + ], + "authorized_access_point": "Arztvertrag" + }, + { + "md5": "bee79e5d7fc340cdfa56876279affb2b", + "pid": "041392736", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334215359", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2001009140", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2001009140" + } + ], + "authorized_access_point": "Transfer" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334215359", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13319743", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13319743p" + } + ], + "authorized_access_point": "Mutations" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4139273-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041392736", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4139273-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Arbeitnehmer" + ], + "authorized_access_point": "Versetzung (Arbeitsrecht)" + }, + { + "md5": "755cf6d522f4c9d39400a954d654b355", + "pid": "041393848", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bildhauer" + } + ], + "related": [ + { + "authorized_access_point": "Steinmetz" + }, + { + "authorized_access_point": "Steinplastik" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134164718", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12104643", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12104643h" + } + ], + "authorized_access_point": "Sculpteurs sur pierre" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4139384-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041393848", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4139384-3", + "source": "GND" + } + ], + "authorized_access_point": "Steinbildhauer" + }, + { + "md5": "b951b47c11cf89e967e0af3cfab70055", + "pid": "04139531X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tonbandgera\u0308t" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133638651", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85079736", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85079736" + } + ], + "authorized_access_point": "Cassette tape recorders" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133638651", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11944483", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119444838" + } + ], + "authorized_access_point": "Magne\u0301tophones a\u0300 cassettes" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4139531-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04139531X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4139531-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Cassettenrecorder", + "Kassettentonbandgera\u0308t", + "Tonbandkassettengera\u0308t" + ], + "authorized_access_point": "Kassettenrecorder" + }, + { + "md5": "7baed04262deb16600b213d3a4a0c252", + "pid": "041395786", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Rachenkrebs" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134620969", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2010009369", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2010009369" + } + ], + "authorized_access_point": "Hypopharynx - Cancer" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1241606749", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D007012", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D007012" + } + ], + "authorized_access_point": "Hypopharyngeal Neoplasms" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4139578-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041395786", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4139578-5", + "source": "GND" + } + ], + "authorized_access_point": "Hypopharynxkrebs" + }, + { + "md5": "daf11abc60d487bf6f7c1163545a0d33", + "pid": "04139674X", + "note": [ + { + "label": [ + "Festlegung des Geschlechts wa\u0308hrend der Individualentwicklung durch genetische oder andere Faktoren" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Determination (Ontogenie)" + } + ], + "related": [ + { + "authorized_access_point": "Geschlechtsdifferenzierung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133633609", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85120579", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85120579" + } + ], + "authorized_access_point": "Genetic sex determination" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134697333", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85120585", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85120585" + } + ], + "authorized_access_point": "Sex differentiation" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134697511", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85120578", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85120578" + } + ], + "authorized_access_point": "Diagnostic sex determination" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134697554", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh00005538", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00005538" + } + ], + "authorized_access_point": "Human remains (Archaeology) - Sex determination" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134797311", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85023312", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85023312" + } + ], + "authorized_access_point": "Chicks - Sexing" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113479732X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85048804", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85048804" + } + ], + "authorized_access_point": "Fishes - Sexing" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133633609", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11941363", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11941363n" + } + ], + "authorized_access_point": "De\u0301termination ge\u0301ne\u0301tique du sexe" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134697333", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11953259", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11953259t" + } + ], + "authorized_access_point": "Diffe\u0301renciation sexuelle" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254366199", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "33810", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/33810" + } + ], + "authorized_access_point": "Determinazione del sesso" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254434798", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX555988", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX555988" + } + ], + "authorized_access_point": "Sexaje de pollos" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254434801", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX4736771", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX4736771" + } + ], + "authorized_access_point": "Determinacio\u0301n gene\u0301tica del sexo" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256217190", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "14226", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_14226" + } + ], + "authorized_access_point": "sex determination" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4139674-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04139674X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4139674-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Geschlechtsdetermination", + "Sexuelle Determination" + ], + "authorized_access_point": "Geschlechtsbestimmung" + }, + { + "md5": "dd3bbdb16953fe497177b859214443c6", + "pid": "041397150", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Festigkeit" + }, + { + "authorized_access_point": "Bruchverhalten" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4139715-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041397150", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4139715-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Bruchsicherheit", + "Bruchwiderstand" + ], + "authorized_access_point": "Bruchfestigkeit" + }, + { + "md5": "8ec977e54617c0962e99ba8355b5eeae", + "pid": "041397932", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wa\u0308rmebehandlung" + } + ], + "related": [ + { + "authorized_access_point": "Ha\u0308rtbarkeit" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134705697", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11976092", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119760927" + } + ], + "authorized_access_point": "Trempe" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4139793-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041397932", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4139793-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Ha\u0308rtung" + ], + "authorized_access_point": "Ha\u0308rten" + }, + { + "md5": "bad2b1ee7bfc958df9f6c5666148f871", + "pid": "041398424", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Moderne" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134154844", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85026469", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85026469" + } + ], + "authorized_access_point": "Civilization, Modern" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134154844", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12086863", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12086863n" + } + ], + "authorized_access_point": "Modernite\u0301" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4139842-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041398424", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4139842-7", + "source": "GND" + } + ], + "authorized_access_point": "Modernita\u0308t" + }, + { + "md5": "51dc353f4717c9b8350324052bae85fd", + "pid": "041400909", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133915647", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85120738", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85120738" + } + ], + "authorized_access_point": "Sexual instinct" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133915647", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12050215", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb120502152" + } + ], + "authorized_access_point": "Libido" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4140090-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041400909", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4140090-2", + "source": "GND" + } + ], + "authorized_access_point": "Libido" + }, + { + "md5": "5a36b55f5cb67c210cdb85eec70b4106", + "pid": "041401522", + "note": [ + { + "label": [ + "Sprache des Tolai-Volkes in Papua-Neuguinea; au\u00dferdem Zweitsprache auf der Insel New Britain" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Melanesische Sprachen" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134153449", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85073344", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85073344" + } + ], + "authorized_access_point": "Tolai language" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4140152-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041401522", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4140152-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Tuna (Sprache)", + "Gunantuna", + "Tolai (Sprache)", + "Tinata Tuna", + "Blanche Bay", + "New Britain Language", + "Tolai Tok Ples", + "Kuanua-Sprache" + ], + "authorized_access_point": "Kuanua" + }, + { + "md5": "1f909d1ebd74a7884f0f08e4b2a37d94", + "pid": "041403657", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Gemeinschaftsbewegung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331869218", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2006006724", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2006006724" + } + ], + "authorized_access_point": "Holiness movement" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331869218", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11968664", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11968664x" + } + ], + "authorized_access_point": "Mouvement de sanctification" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4140365-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041403657", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4140365-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Holiness movement" + ], + "authorized_access_point": "Heiligungsbewegung" + }, + { + "md5": "c643ffed117fd2e530e59a4119e73930", + "pid": "041403886", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Industrieanlage" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134612893", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85065869", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85065869" + } + ], + "authorized_access_point": "Industrial equipment" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134612893", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13162966", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13162966w" + } + ], + "authorized_access_point": "E\u0301quipement industriel" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4140388-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041403886", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4140388-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Fertigungseinrichtung", + "Produktionsanlage" + ], + "authorized_access_point": "Fertigungsanlage" + }, + { + "md5": "1477fb045d5994495da3d8316e5deb8e", + "pid": "041406605", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Modellorganismus" + } + ], + "related": [ + { + "authorized_access_point": "Tierversuch" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134047444", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh99002322", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh99002322" + } + ], + "authorized_access_point": "Animal models" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134047444", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11977453", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11977453p" + } + ], + "authorized_access_point": "Mode\u0300les animaux" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256264016", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "34782", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_34782" + } + ], + "authorized_access_point": "animal models" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1241625255", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D023421", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D023421" + } + ], + "authorized_access_point": "Models, Animal" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4140660-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041406605", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4140660-6", + "source": "GND" + } + ], + "authorized_access_point": "Tiermodell" + }, + { + "md5": "a0c36f6a8cd099f964221a953e7aa5b8", + "pid": "041409760", + "note": [ + { + "label": [ + "Bildqualita\u0308tsmerkmal, mit der die U\u0308bereinstimmung zwischen Bild- und Objektgeometrie bewertet wird." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4140976-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041409760", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4140976-0", + "source": "GND" + } + ], + "authorized_access_point": "Abbildungstreue" + }, + { + "md5": "9d000102b9cd0048a9217583b720918d", + "pid": "041409965", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4140996-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041409965", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4140996-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Abelsche Erweiterung von Ko\u0308rpern", + "Kommutativer Ko\u0308rper" + ], + "authorized_access_point": "Abelscher Ko\u0308rper" + }, + { + "md5": "3a6a6709677916a57b4b78414ec0484e", + "pid": "041410513", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4141051-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041410513", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4141051-8", + "source": "GND" + } + ], + "authorized_access_point": "Abgeschlossene Kategorie" + }, + { + "md5": "df8c0a6b54f068ff890d362b5db5eee1", + "pid": "041411137", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Feuchtigkeit" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4141113-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041411137", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4141113-4", + "source": "GND" + } + ], + "authorized_access_point": "Absolute Feuchtigkeit" + }, + { + "md5": "fa37b1e824fd72b6dbe233da8aa92ef8", + "pid": "041413083", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4141308-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041413083", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4141308-8", + "source": "GND" + } + ], + "authorized_access_point": "Acridinfarbstoff" + }, + { + "md5": "b5547af5618c1c839fb42f0b6061bf16", + "pid": "041413334", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134252064", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12272667", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12272667n" + } + ], + "authorized_access_point": "Actinides - Compose\u0301s" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4141333-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041413334", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4141333-7", + "source": "GND" + } + ], + "authorized_access_point": "Actinoidverbindungen" + }, + { + "md5": "4bba16a4561f1f015ebcdf5bb2b82a1c", + "pid": "041419464", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Energieversorgung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4141946-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041419464", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4141946-7", + "source": "GND" + } + ], + "authorized_access_point": "Allgemeine Versorgungsbedingungen" + }, + { + "md5": "d60064c65fe08b9b651fc9648d0f8a65", + "pid": "041419677", + "note": [ + { + "label": [ + "Eine Allgemeinverfu\u0308gung ist ein Verwaltungsakt, der sich an einen nach allgemeinen Merkmalen bestimmten oder bestimmbaren Personenkreis richtet oder die o\u0308ffentlich-rechtliche Eigenschaft einer Sache oder ihre Benutzung durch die Allgemeinheit betrifft." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Verwaltungsakt" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4141967-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041419677", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4141967-4", + "source": "GND" + } + ], + "authorized_access_point": "Allgemeinverfu\u0308gung" + }, + { + "md5": "0546782f0101dcf34e2a0b782231e149", + "pid": "041422058", + "note": [ + { + "label": [ + "Benutzt sowohl fu\u0308r die natu\u0308rlich vorkommenden \u03b1-Aminosa\u0308uren als auch als OB fu\u0308r alle Aminosa\u0308uren, da man i.d.R. die \u03b1-Aminosa\u0308uren meint, wenn man von Aminosa\u0308uren spricht." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113395720X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85004486", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85004486" + } + ], + "authorized_access_point": "Amino acids" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113395720X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11944322", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11944322s" + } + ], + "authorized_access_point": "Acides amine\u0301s" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)125431508X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "49", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/49" + } + ], + "authorized_access_point": "Aminoacidi" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254403892", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX525009", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX525009" + } + ], + "authorized_access_point": "Aminoa\u0301cidos" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336147237", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D000596", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000596" + } + ], + "authorized_access_point": "Amino Acids" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4142205-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041422058", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4142205-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Aminosa\u0308uren (alpha-)", + "Aminocarbonsa\u0308uren", + "Aminosa\u0308ure", + "Aminosa\u0308uren (L-)", + "Aminosa\u0308uren (D-)" + ], + "authorized_access_point": "Aminosa\u0308uren" + }, + { + "md5": "1f7bdcad04ced6d31e08a21257baefda", + "pid": "041422260", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133649602", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85004547", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85004547" + } + ], + "authorized_access_point": "Ammonium compounds" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133789382", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85004546", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85004546" + } + ], + "authorized_access_point": "Ammonium" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133789382", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12406920", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12406920p" + } + ], + "authorized_access_point": "Ammonium" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133649602", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11952913", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119529136" + } + ], + "authorized_access_point": "Ammonium - Compose\u0301s" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254362606", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "31172", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/31172" + } + ], + "authorized_access_point": "Ammonio" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254403965", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX532312", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX532312" + } + ], + "authorized_access_point": "Amonio" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336148284", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D064751", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D064751" + } + ], + "authorized_access_point": "Ammonium Compounds" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4142226-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041422260", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4142226-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Ammoniumsalze", + "Ammoniumion", + "Ammonium" + ], + "authorized_access_point": "Ammoniumverbindungen" + }, + { + "md5": "7dee49491a9e8d28ab830d597ce0da56", + "pid": "041424492", + "note": [ + { + "label": [ + "Gefa\u0308ssentwicklung im adulten Organismus" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Antiangiogenese" + }, + { + "authorized_access_point": "Vaskularisation" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133719600", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh87002299", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh87002299" + } + ], + "authorized_access_point": "Neovascularization" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133719600", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12098723", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12098723t" + } + ], + "authorized_access_point": "Ne\u0301ovascularisation" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254390871", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "60283", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/60283" + } + ], + "authorized_access_point": "Angiogenesi" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254404511", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX554911", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX554911" + } + ], + "authorized_access_point": "Neovascularizacio\u0301n" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336025522", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D000096482", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000096482" + } + ], + "authorized_access_point": "Angiogenesis" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4142449-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041424492", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4142449-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Gefa\u0308\u00dfentwicklung" + ], + "authorized_access_point": "Angiogenese" + }, + { + "md5": "4b066d09be11ccd41e42cae5704bcbae", + "pid": "041424573", + "note": [ + { + "label": [ + "In Frankreich nach 1700 aus der E\u0301cossaise hervorgegangener ho\u0308f. Tanz im schnellen 3/4-Takt" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Contredanse" + }, + { + "authorized_access_point": "Franc\u0327aise" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134818203", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh95008970", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh95008970" + } + ], + "authorized_access_point": "Anglaise (Dance)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4142457-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041424573", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4142457-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Inglesa" + ], + "authorized_access_point": "Anglaise" + }, + { + "md5": "c02e672ab669522d90f1a67c6abfa3df", + "pid": "041424654", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4142465-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041424654", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4142465-7", + "source": "GND" + } + ], + "authorized_access_point": "Ellipsoid" + }, + { + "md5": "2241cbead61ef02660603d73dd3c7b23", + "pid": "04142574X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Plagioklas" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4142574-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04142574X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4142574-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Kalkfeldspat", + "Barsowit", + "Beffanit", + "Biotin (Anorthit)", + "Calciklas", + "Cyclopit", + "Lindsayit", + "Linseit", + "Sundvikit", + "Thjorsauit" + ], + "authorized_access_point": "Anorthit" + }, + { + "md5": "16ef00a46b3d94cc811ef01d1e8990f2", + "pid": "04142641X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Anthracenone" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4142641-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04142641X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4142641-1", + "source": "GND" + } + ], + "variant_access_point": [ + "CAS 90-44-8", + "Anthracenon (10H-Anthracen-9-on)" + ], + "authorized_access_point": "Anthron" + }, + { + "md5": "0af5463c48466ff795aae0841500dee3", + "pid": "041427548", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4142754-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041427548", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4142754-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Antrieb (Technik)" + ], + "authorized_access_point": "Antriebssteuerung" + }, + { + "md5": "957451aa1e49384d0dd8be0bd5ca012d", + "pid": "04143028X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tanz" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4143028-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04143028X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4143028-1", + "source": "GND" + } + ], + "authorized_access_point": "Franc\u0327aise" + }, + { + "md5": "fa534435bcd6a0f8c85b51a8282f949c", + "pid": "041431049", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133733697", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85007453", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85007453" + } + ], + "authorized_access_point": "Arsenic compounds" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133733697", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12204254", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb122042547" + } + ], + "authorized_access_point": "Arsenic - Compose\u0301s" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254406646", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX4578267", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX4578267" + } + ], + "authorized_access_point": "Arse\u0301nico - Compuestos" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4143104-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041431049", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4143104-2", + "source": "GND" + } + ], + "authorized_access_point": "Arsenverbindungen" + }, + { + "md5": "abc6c9486f098d3e8fe6432e11b98aae", + "pid": "041434722", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_von_Halbleitergeh%C3%A4usen&oldid=230043997" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Geha\u0308use" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4143472-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041434722", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4143472-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Chipgeha\u0308use", + "Package (Elektronik)" + ], + "authorized_access_point": "Halbleitergeha\u0308use" + }, + { + "md5": "2a298e024d929c787755ac6617a21cfd", + "pid": "041436512", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Plakat" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133809936", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12482403", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12482403d" + } + ], + "authorized_access_point": "Affiches d'expositions" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4143651-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041436512", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4143651-9", + "source": "GND" + } + ], + "authorized_access_point": "Ausstellungsplakat" + }, + { + "md5": "829b6cc1c0ab5c8489b02bcc99c980e7", + "pid": "041437896", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134250118", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85010647", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85010647" + } + ], + "authorized_access_point": "Azides" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134250118", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12269660", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12269660q" + } + ], + "authorized_access_point": "Azides" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254363505", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "31774", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/31774" + } + ], + "authorized_access_point": "Azidi" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336148233", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D001386", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D001386" + } + ], + "authorized_access_point": "Azides" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4143789-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041437896", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4143789-5", + "source": "GND" + } + ], + "authorized_access_point": "Azide" + }, + { + "md5": "8b7411548ff0f61b0c30d67016d2b969", + "pid": "04143823X", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134277539", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85010652", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85010652" + } + ], + "authorized_access_point": "Azo compounds" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134277539", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12327858", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12327858k" + } + ], + "authorized_access_point": "Compose\u0301s azoi\u0308ques" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)125436367X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "31880", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/31880" + } + ], + "authorized_access_point": "Azocomposti" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336148179", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D001391", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D001391" + } + ], + "authorized_access_point": "Azo Compounds" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4143823-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04143823X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4143823-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Diazene" + ], + "authorized_access_point": "Azoverbindungen" + }, + { + "md5": "a31eae305f8e28233223dbd2769a335d", + "pid": "041439686", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Flo\u0308te" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4143968-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041439686", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4143968-5", + "source": "GND" + } + ], + "authorized_access_point": "Bambusflo\u0308te" + }, + { + "md5": "57e665f44d3254ab1c914aaeb8800a3e", + "pid": "041439902", + "note": [ + { + "label": [ + "Traditionelles Handwerk, bei dem aus Weidengeho\u0308lz Reifen fu\u0308r die Ummantelung von Holzfa\u0308ssern hergestellt wurden." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4143990-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041439902", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4143990-9", + "source": "GND" + } + ], + "authorized_access_point": "Bandrei\u00dfer" + }, + { + "md5": "c2be82457676985c3ea212896353af22", + "pid": "041440706", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333373147", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17092938", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17092938n" + } + ], + "authorized_access_point": "Percoi\u0308de\u0301s" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4144070-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041440706", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4144070-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Percoidei" + ], + "authorized_access_point": "Barschfische" + }, + { + "md5": "282f6afe88d595d53e1057d83fd7563e", + "pid": "04144115X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tanz" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133810888", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85012180", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85012180" + } + ], + "authorized_access_point": "Basse danse (Dance)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133810888", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12484923", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12484923w" + } + ], + "authorized_access_point": "Basse danse (danse)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4144115-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04144115X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4144115-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Bassedanse" + ], + "authorized_access_point": "Basse danse" + }, + { + "md5": "8db39014d6bd41832f85497f7a27c3b2", + "pid": "041444108", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Notstandsrecht" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334565120", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85127508", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85127508" + } + ], + "authorized_access_point": "State of siege" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334565120", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11978466", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119784668" + } + ], + "authorized_access_point": "E\u0301tat de sie\u0300ge" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4144410-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041444108", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4144410-3", + "source": "GND" + } + ], + "authorized_access_point": "Belagerungszustand" + }, + { + "md5": "8d96baa97f2428701b1c7009bb79fbed", + "pid": "041444280", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zelle" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336590092", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D010295", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D010295" + } + ], + "authorized_access_point": "Parietal Cells, Gastric" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4144428-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041444280", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4144428-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Parietalzelle" + ], + "authorized_access_point": "Belegzelle" + }, + { + "md5": "ea70cf83c5b4aa72a651f61630e62aed", + "pid": "041444809", + "note": [ + { + "label": [ + "Empirische Untersuchung der tatsa\u0308chlichen oder auch nur potentiellen Benutzer einer wiss. Bibliothek, im Bereich der O\u0308B meist Leserforschung, im Bereich der Museen Besucherforschung genannt." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Benutzerverhalten" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970537077", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10038141", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10038141" + } + ], + "authorized_access_point": "Benutzerforschung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4144480-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041444809", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4144480-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Besucherforschung", + "Benutzer", + "Nutzerforschung", + "Nutzer" + ], + "authorized_access_point": "Benutzerforschung" + }, + { + "md5": "2055c38d270c9fb99826fedbcb180160", + "pid": "041444817", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Benutzerfreundlichkeit" + }, + { + "authorized_access_point": "Benutzererlebnis" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1170172067", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "30168-0", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/30168-0" + } + ], + "authorized_access_point": "Nutzererfahrung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4144481-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041444817", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4144481-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Benutzerfeedback", + "Benutzer" + ], + "authorized_access_point": "Benutzerru\u0308ckmeldung" + }, + { + "md5": "f706b7cd2c01f7b9b02f53e71a52db3f", + "pid": "041445082", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kraftstoff" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4144508-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041445082", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4144508-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Alkohol-Benzin-Mischkraftstoff" + ], + "authorized_access_point": "Benzin-Alkohol-Mischkraftstoff" + }, + { + "md5": "fb5fc0f4ca1c4facbca027f5229d0537", + "pid": "041445120", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Methanolkraftstoff" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4144512-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041445120", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4144512-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Methanol-Benzin-Mischkraftstoff" + ], + "authorized_access_point": "Benzin-Methanol-Mischkraftstoff" + }, + { + "md5": "f859d952dac6801f097e70f35a070fe0", + "pid": "041446186", + "note": [ + { + "label": [ + "Bereitschaftsdienst liegt vor, wenn sich der Arbeitnehmer, ohne dass von ihm wache Aufmerksamkeit gefordert wird, fu\u0308r Zwecke des Betriebs an einer vom Arbeitgeber bestimmten Stelle innerhalb oder au\u00dferhalb des Betriebs aufzuhalten hat, damit er erforderlichenfalls seine volle Arbeitsta\u0308tigkeit unverzu\u0308glich aufnehmen kann.", + "Verknu\u0308pfe mit jeweiliger Berufsgruppe bzw. Institution" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4144618-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041446186", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4144618-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Dienstbereitschaft" + ], + "authorized_access_point": "Bereitschaftsdienst" + }, + { + "md5": "79fdd97a4a2880103193da29a92231d3", + "pid": "041448723", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sensor" + } + ], + "related": [ + { + "authorized_access_point": "Beschleunigungsmesser" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134629885", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85000350", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85000350" + } + ], + "authorized_access_point": "Accelerometers" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134629885", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12520647", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb125206471" + } + ], + "authorized_access_point": "Acce\u0301le\u0301rome\u0300tres" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4144872-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041448723", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4144872-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Beschleunigungsaufnehmer", + "Tra\u0308gheitssensor", + "Schwingungsaufnehmer", + "Vibrationsaufnehmer" + ], + "authorized_access_point": "Beschleunigungssensor" + }, + { + "md5": "092227e9f6ea3117fc40e98ec0b82506", + "pid": "041449347", + "note": [ + { + "label": [ + "Benutzt fu\u0308r alle Bestechungstatbesta\u0308nde (\u00a7\u00a7 299 ff, 331-335a StGB), die Schlagwo\u0308rter Amtstra\u0308ger oder Angestellter sind nicht pleonastisch." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Korruption" + } + ], + "related": [ + { + "authorized_access_point": "Schmiergeld" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970565925", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10038818", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10038818" + } + ], + "authorized_access_point": "Korruption" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4144934-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041449347", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4144934-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Bestechlichkeit", + "Bestechungsdelikt", + "Vorteilsannahme", + "Vorteilsgewa\u0308hrung" + ], + "authorized_access_point": "Bestechung" + }, + { + "md5": "c19799e7d1475739bdcc37bdbce5aaa3", + "pid": "041450469", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Unternehmensgro\u0308\u00dfe" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334901856", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh99006010", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh99006010" + } + ], + "authorized_access_point": "Business enterprises--Size" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334901856", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF119783916", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://catalogue.bnf.fr/ark:/12148/cb119783916" + } + ], + "authorized_access_point": "Entreprises -- Dimension" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966703731", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "12038-1", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/12038-1" + } + ], + "authorized_access_point": "Betriebsgro\u0308\u00dfe" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970538650", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10038936", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10038936" + } + ], + "authorized_access_point": "Betriebsgro\u0308\u00dfe" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4145046-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041450469", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4145046-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Betrieb" + ], + "authorized_access_point": "Betriebsgro\u0308\u00dfe" + }, + { + "md5": "0b59368107626373db7c8472ab43dc7a", + "pid": "041450809", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Betroffenheit&oldid=218691521" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)97053891X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10039038", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10039038" + } + ], + "authorized_access_point": "Betroffenheit" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4145080-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041450809", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4145080-2", + "source": "GND" + } + ], + "authorized_access_point": "Betroffenheit" + }, + { + "md5": "4f4d5fe13b09464ca11427b968c8696a", + "pid": "041451732", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Beweisverbot" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4145173-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041451732", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4145173-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Beweisgewinnungsverbot" + ], + "authorized_access_point": "Beweiserhebungsverbot" + }, + { + "md5": "b54af7d9be154e58b1acf29fe3744e46", + "pid": "04145412X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Telefonieren" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134060017", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85143224", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85143224" + } + ], + "authorized_access_point": "Video telephone" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134592973", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh88004839", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh88004839" + } + ], + "authorized_access_point": "Videoconferencing" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134592973", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12192080", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12192080f" + } + ], + "authorized_access_point": "Visioconfe\u0301rences" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134592965", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12129502", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb121295028" + } + ], + "authorized_access_point": "Vide\u0301ocommunications" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134060017", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11979698", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11979698p" + } + ], + "authorized_access_point": "Visiophone" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4145412-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04145412X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4145412-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Bildtelephonie", + "Bildfernsprechen" + ], + "authorized_access_point": "Bildtelefonie" + }, + { + "md5": "32ed8147f6da2e83df806576e2026a97", + "pid": "041455908", + "note": [ + { + "label": [ + "Nicht als FormSW verwendet, hierfu\u0308r f Bibliografie" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Personalbibliografie" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133681530", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85014117", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85014117" + } + ], + "authorized_access_point": "Bio-bibliography" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133681530", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11976253", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11976253w" + } + ], + "authorized_access_point": "Biobibliographie" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254412220", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX525759", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX525759" + } + ], + "authorized_access_point": "Biobibliografi\u0301as" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4145590-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041455908", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4145590-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Biobibliographie" + ], + "authorized_access_point": "Biobibliografie" + }, + { + "md5": "38622f89ac183a033aa5c44d48058d27", + "pid": "041456629", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Biaryle" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134598122", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12364695", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12364695b" + } + ], + "authorized_access_point": "Biphe\u0301nyles" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256197475", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "933", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_933" + } + ], + "authorized_access_point": "biphenyl" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4145662-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041456629", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4145662-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Diphenyl", + "Phenylbenzol" + ], + "authorized_access_point": "Biphenyl" + }, + { + "md5": "3d717f940fd99dd91d9d44b61082891f", + "pid": "041462467", + "note": [ + { + "label": [ + "benutzt fu\u0308r das Ergebnis des Bohrens" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bohren" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134044232", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85015851", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85015851" + } + ], + "authorized_access_point": "Boring" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134044232", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11976902", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11976902x" + } + ], + "authorized_access_point": "Forage" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254340750", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "14775", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/14775" + } + ], + "authorized_access_point": "Perforazione" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254413731", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX526227", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX526227" + } + ], + "authorized_access_point": "Perforacio\u0301n y sondeo" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4146246-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041462467", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4146246-4", + "source": "GND" + } + ], + "authorized_access_point": "Bohrung" + }, + { + "md5": "447d7de876c109fae4db6758cbede9d7", + "pid": "041463250", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Untergruppe" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333592582", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh87007016", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh87007016" + } + ], + "authorized_access_point": "Borel subgroups" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4146325-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041463250", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4146325-0", + "source": "GND" + } + ], + "authorized_access_point": "Borel-Untergruppe" + }, + { + "md5": "2512d7f91367f6bcbaba6dfd5bf05424", + "pid": "04146351X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bornaviridae" + } + ], + "related": [ + { + "authorized_access_point": "Borna-Krankheit" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133805108", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12469236", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb124692363" + } + ], + "authorized_access_point": "Virus de la maladie de Borna" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256199036", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "18805", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_18805" + } + ], + "authorized_access_point": "Borna disease virus" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4146351-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04146351X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4146351-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Borna disease virus", + "BDV" + ], + "authorized_access_point": "Bornavirus" + }, + { + "md5": "1c5216afb44143ea3c1145f0043522d1", + "pid": "041463692", + "note": [ + { + "label": [ + "B(OH)3" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Borverbindungen" + }, + { + "authorized_access_point": "Sa\u0308ure" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133850944", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85015848", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85015848" + } + ], + "authorized_access_point": "Boric acid" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133850944", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13332324", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb133323241" + } + ], + "authorized_access_point": "Acide borique" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254349669", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "21199", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/21199" + } + ], + "authorized_access_point": "Acido borico" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336148675", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D001888", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D001888" + } + ], + "authorized_access_point": "Boric Acids" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4146369-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041463692", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4146369-9", + "source": "GND" + } + ], + "authorized_access_point": "Borsa\u0308ure" + }, + { + "md5": "4223734c1bb37fd630d54df46aabaad3", + "pid": "041466365", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bromverbindungen" + }, + { + "authorized_access_point": "Chloride" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4146636-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041466365", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4146636-6", + "source": "GND" + } + ], + "authorized_access_point": "Bromchlorid" + }, + { + "md5": "30743f6a86b7d0767b73d4c0e28265ba", + "pid": "041466578", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134237138", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh90006056", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh90006056" + } + ], + "authorized_access_point": "Bromine compounds" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134237138", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12258979", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12258979h" + } + ], + "authorized_access_point": "Brome - Compose\u0301s" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254414592", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX4577821", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX4577821" + } + ], + "authorized_access_point": "Bromo - Compuestos" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336148985", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D017605", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D017605" + } + ], + "authorized_access_point": "Bromine Compounds" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4146657-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041466578", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4146657-3", + "source": "GND" + } + ], + "authorized_access_point": "Bromverbindungen" + }, + { + "md5": "1e6c180443a55fd945e39cce1d1b0d80", + "pid": "041467612", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Milchdru\u0308senkrankheit" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133820808", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12521464", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb125214649" + } + ], + "authorized_access_point": "Mammite" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1241594635", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D008413", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D008413" + } + ], + "authorized_access_point": "Mastitis" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4146761-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041467612", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4146761-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Mastitis" + ], + "authorized_access_point": "Brustdru\u0308senentzu\u0308ndung" + }, + { + "md5": "6d244747af97edfcb613907d8310d618", + "pid": "04146768X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Mamma" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4146768-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04146768X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4146768-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Papilla mammae", + "Mamillae" + ], + "authorized_access_point": "Brustwarze" + }, + { + "md5": "19f5f299da974c1aff9529a1fc64c5fa", + "pid": "041467760", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Vo\u0308gel" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134790635", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2007010954", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2007010954" + } + ], + "authorized_access_point": "Endemic birds" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134790635", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12352687", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb123526871" + } + ], + "authorized_access_point": "Oiseaux nicheurs" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4146776-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041467760", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4146776-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Brutvogel", + "Einheimische Vo\u0308gel" + ], + "authorized_access_point": "Brutvo\u0308gel" + }, + { + "md5": "f001c6e8d2693eddbbf1768616e152f4", + "pid": "041470044", + "note": [ + { + "label": [ + "Sofern unterirdische Anlage verknu\u0308pfe ggf. mit Unterirdisches Bauwerk" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schutzbau" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134839286", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh97000842", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh97000842" + } + ], + "authorized_access_point": "Bunkers (Fortification)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134839286", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15517575", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15517575w" + } + ], + "authorized_access_point": "Casemates" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)125620028X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "907", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_907" + } + ], + "authorized_access_point": "bins" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4147004-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041470044", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4147004-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Schutzbunker", + "Luftschutzbunker" + ], + "authorized_access_point": "Bunker" + }, + { + "md5": "12c4b8cc06a7dc33c16b512c21607fe0", + "pid": "041470966", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zelle" + }, + { + "authorized_access_point": "Langerhans-Inseln" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134611005", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh89006279", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh89006279" + } + ], + "authorized_access_point": "Pancreatic beta cells" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134611005", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15054295", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15054295x" + } + ], + "authorized_access_point": "Cellules be\u0302ta" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336592893", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D050417", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D050417" + } + ], + "authorized_access_point": "Insulin-Secreting Cells" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4147096-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041470966", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4147096-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Beta-Zelle (Bauchspeicheldru\u0308se)" + ], + "authorized_access_point": "B-Zelle" + }, + { + "md5": "2d4b5c3a2d1e8c7cac24c1ec7a601a6c", + "pid": "041477936", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133691196", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85024536", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85024536" + } + ], + "authorized_access_point": "Chlorides" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133691196", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11980514", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11980514k" + } + ], + "authorized_access_point": "Chlorures" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)125436451X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "32686", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/32686" + } + ], + "authorized_access_point": "Cloruri" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254416927", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX4724682", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX4724682" + } + ], + "authorized_access_point": "Cloruros" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336148934", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D002712", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D002712" + } + ], + "authorized_access_point": "Chlorides" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4147793-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041477936", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4147793-5", + "source": "GND" + } + ], + "authorized_access_point": "Chloride" + }, + { + "md5": "b94b087f042c35d6f79abca5d994a9b5", + "pid": "041479017", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Chorraum" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334557462", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2006008364", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2006008364" + } + ], + "authorized_access_point": "Chevets" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334557462", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15043419", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15043419x" + } + ], + "authorized_access_point": "Chevets (architecture)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4147901-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041479017", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4147901-4", + "source": "GND" + } + ], + "authorized_access_point": "Chorhaupt" + }, + { + "md5": "0db49a8bc4fe57b0ac4fb267ea7006c6", + "pid": "041483626", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Werkstoffscha\u0308digung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113404111X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11976355", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11976355v" + } + ], + "authorized_access_point": "Fissuration" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4148362-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041483626", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4148362-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Crazebildung" + ], + "authorized_access_point": "Crazing" + }, + { + "md5": "efc2ae64d45074fbe6fe91b22e389f61", + "pid": "041487109", + "type": "bf:Topic", + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134759355", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2011005416", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2011005416" + } + ], + "authorized_access_point": "Cytometry" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4148710-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041487109", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4148710-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Zytometrie" + ], + "authorized_access_point": "Cytometrie" + }, + { + "md5": "ee8e7994ee2c67ca07db42944d14ad1f", + "pid": "041489837", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ladungstra\u0308ger" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4148983-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041489837", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4148983-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Loch (Halbleiterphysik)" + ], + "authorized_access_point": "Defektelektron" + }, + { + "md5": "1af068a594f2ba6309dab479dda97d86", + "pid": "041490673", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134325207", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh99005506", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh99005506" + } + ], + "authorized_access_point": "Denaturation" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134325207", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12437686", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12437686n" + } + ], + "authorized_access_point": "De\u0301naturation (chimie)" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256204498", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "2178", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_2178" + } + ], + "authorized_access_point": "denaturation" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4149067-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041490673", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4149067-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Denaturierung (Biochemie)" + ], + "authorized_access_point": "Denaturieren" + }, + { + "md5": "7e98db2544357e4ecf2ae1c0f7277eef", + "pid": "041497112", + "note": [ + { + "label": [ + "Als Homonymenzusatz bei Personenschlagwo\u0308rtern wird Krimineller verwendet" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Krimineller" + } + ], + "related": [ + { + "authorized_access_point": "Diebin" + }, + { + "authorized_access_point": "Diebstahl" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331708486", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85134855", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85134855" + } + ], + "authorized_access_point": "Thieves" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331708486", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13319307", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13319307q" + } + ], + "authorized_access_point": "Voleurs" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254344241", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "17481", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/17481" + } + ], + "authorized_access_point": "Ladri" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4149711-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041497112", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4149711-9", + "source": "GND" + } + ], + "authorized_access_point": "Dieb" + }, + { + "md5": "62aaf39bc1bdb4c65cf28530f88c5f61", + "pid": "041497848", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Transformator" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4149784-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041497848", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4149784-3", + "source": "GND" + } + ], + "authorized_access_point": "Differentialtransformator" + }, + { + "md5": "3b29c2d8d79dfb4c9968fffa652b46b0", + "pid": "041501608", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Foxtrott" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134576595", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85063225", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85063225" + } + ], + "authorized_access_point": "Hustle (Dance)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134576595", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16710437", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16710437v" + } + ], + "authorized_access_point": "Hustle (danse)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4150160-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041501608", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4150160-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Beatfox", + "Discofox" + ], + "authorized_access_point": "Diskofox" + }, + { + "md5": "30b4a4726e9feb365ff36c76915d9016", + "pid": "041501950", + "note": [ + { + "label": [ + "Ein Dispens ist die in der Regel einzelfallbezogene Aufhebung einer Rechtspflicht." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134024851", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85038453", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85038453" + } + ], + "authorized_access_point": "Dispensations (Canon law)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134024851", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11971132", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11971132f" + } + ], + "authorized_access_point": "Dispenses (droit canonique)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254336435", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "11079", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/11079" + } + ], + "authorized_access_point": "Dispensa canonica" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)125442069X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX537578", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX537578" + } + ], + "authorized_access_point": "Dispensas (Derecho cano\u0301nico)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4150195-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041501950", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4150195-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Befreiung (Recht)", + "Aussetzung (Recht)", + "Ausnahmebewilligung" + ], + "authorized_access_point": "Dispens" + }, + { + "md5": "03f143bf68cd8c52f238718dd0772578", + "pid": "041502264", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gebissanomalie" + }, + { + "authorized_access_point": "Okklusionssto\u0308rung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4150226-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041502264", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4150226-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Distalbisslage", + "Ru\u0308ckbiss" + ], + "authorized_access_point": "Distalbiss" + }, + { + "md5": "9aa8c9e4a677991de9febce3aec82345", + "pid": "04150335X", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4150335-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04150335X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4150335-1", + "source": "GND" + } + ], + "authorized_access_point": "DMS 77" + }, + { + "md5": "8c1c646331fc811011a8751aeb22f0be", + "pid": "041504925", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Halbleiter" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134155425", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85039078", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85039078" + } + ], + "authorized_access_point": "Doped semiconductors" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134155425", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12088361", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb120883612" + } + ], + "authorized_access_point": "Semiconducteurs dope\u0301s" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254377913", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "44844", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/44844" + } + ], + "authorized_access_point": "Semiconduttori estrinseci" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4150492-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041504925", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4150492-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Sto\u0308rstellenhalbleiter" + ], + "authorized_access_point": "Dotierter Halbleiter" + }, + { + "md5": "fc8c497994c2e83176c530df7451180d", + "pid": "041505077", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Dozentin" + }, + { + "authorized_access_point": "Lehrer" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4150507-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041505077", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4150507-4", + "source": "GND" + } + ], + "authorized_access_point": "Dozent" + }, + { + "md5": "9acb45838317770e017d8f59df700c3f", + "pid": "041505190", + "note": [ + { + "label": [ + "In der Regel Kompositumbildung mit dem Material." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "!041253906" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133785778", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85147059", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85147059" + } + ], + "authorized_access_point": "Wire" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133785778", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12384189", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12384189f" + } + ], + "authorized_access_point": "Fil me\u0301tallique" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966723422", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "14262-0", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/14262-0" + } + ], + "authorized_access_point": "Draht" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4150519-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041505190", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4150519-0", + "source": "GND" + } + ], + "authorized_access_point": "Draht" + }, + { + "md5": "81d8cb7637e709932031200e852f72c1", + "pid": "041505336", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4150533-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041505336", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4150533-5", + "source": "GND" + } + ], + "authorized_access_point": "Drahtweberei" + }, + { + "md5": "eefee24027b1c28db5702c674d5a96ea", + "pid": "041506588", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Dreikronenkrieg&oldid=210977439" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Krieg" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1230558713", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85092571", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85092571" + } + ], + "authorized_access_point": "Northern Seven Years' War, 1563-1570" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4150658-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041506588", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4150658-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Nordischer Siebenja\u0308hriger Krieg", + "Nordischer Krieg (1563-1570)" + ], + "authorized_access_point": "Dreikronenkrieg" + }, + { + "md5": "4b6d3aff450706c452a5e87e60059ed7", + "pid": "041507983", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4150798-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041507983", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4150798-8", + "source": "GND" + } + ], + "authorized_access_point": "Dualisierender Komplex" + }, + { + "md5": "7354ab30ddb7339afd83db94d29a65dd", + "pid": "041509412", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gebissanomalie" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4150941-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041509412", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4150941-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Fehlbiss", + "Kieferfehlstellung", + "Zahnfehlstellung" + ], + "authorized_access_point": "Dysgnathie" + }, + { + "md5": "5e650f369a855a9e7152eddf4f3b06df", + "pid": "041511360", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Unehrlichkeit" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134060467", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85061841", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85061841" + } + ], + "authorized_access_point": "Honesty" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134060467", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11979799", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119797999" + } + ], + "authorized_access_point": "Honne\u0302tete\u0301" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254327169", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "4444", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/4444" + } + ], + "authorized_access_point": "Onesta\u0300" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4151136-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041511360", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4151136-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Ehrenhaftigkeit" + ], + "authorized_access_point": "Ehrlichkeit" + }, + { + "md5": "d605a387b4fb829a80f6acd0969cc564", + "pid": "041511794", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Merkmal" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134831773", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85022615", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85022615" + } + ], + "authorized_access_point": "Character" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4151179-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041511794", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4151179-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Charakteristische Eigenschaft" + ], + "authorized_access_point": "Eigenschaft" + }, + { + "md5": "0ec20764eee05410d65ab1b5988a8502", + "pid": "041512820", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Umsatzsteuer" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4151282-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041512820", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4151282-0", + "source": "GND" + } + ], + "authorized_access_point": "Einfuhrumsatzsteuer" + }, + { + "md5": "e4506c1b5765cbb28303f7ffd3be2164", + "pid": "041515420", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Hu\u0308ttenwerk" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133705723", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85068240", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85068240" + } + ], + "authorized_access_point": "Iron-works" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133705723", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12010434", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb120104342" + } + ], + "authorized_access_point": "Usines side\u0301rurgiques" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4151542-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041515420", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4151542-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Eisenhu\u0308tte" + ], + "authorized_access_point": "Eisenhu\u0308ttenwerk" + }, + { + "md5": "a3c6e24c4705ef9596f0b84d9d824b9e", + "pid": "041516613", + "note": [ + { + "label": [ + "Fu\u0308r die Personifikation der Kirche und begriffsgeschichtliche Untersuchungen", + "Ansonsten benutze SW Kirche, fu\u0308r die Kunst SW s Ekklesia und Synagoge (daneben p Synagoge !), fu\u0308r die altgriech. Ekklesia in Athen SW Athen / Volksversammlung", + "Ohne HZ Motiv" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + }, + { + "authorized_access_point": "Fiktive Gestalt" + } + ], + "related": [ + { + "authorized_access_point": "Kirche" + }, + { + "authorized_access_point": "Ekklesia und Synagoge" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4151661-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041516613", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4151661-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Ecclesia (Personifikation)", + "Ekklesia (Personifikation)" + ], + "authorized_access_point": "Ekklesia" + }, + { + "md5": "a8de6cd42799d8bbe49f5b5ebcea024d", + "pid": "041518160", + "note": [ + { + "label": [ + "Ausbildungsberuf. Beruf im Elektrohandwerk bis zum 1. August 2004 .Die Berufsbezeichnung wurde durch Elektroniker - Fachrichtung Energie- und Geba\u0308udetechnik ersetzt." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Handwerklicher Elektroberuf" + } + ], + "related": [ + { + "authorized_access_point": "Elektriker" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113452689X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85042064", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85042064" + } + ], + "authorized_access_point": "Electricians" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113452689X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11954085", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119540852" + } + ], + "authorized_access_point": "E\u0301lectriciens" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4151816-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041518160", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4151816-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Elektromonteur" + ], + "authorized_access_point": "Elektroinstallateur" + }, + { + "md5": "94573f9b8a768114bbd91e8899534282", + "pid": "04151923X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kontaktloser Schalter" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4151923-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04151923X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4151923-1", + "source": "GND" + } + ], + "authorized_access_point": "Elektronischer Schalter" + }, + { + "md5": "841d68f0f37c57a588e0151ae5d447f1", + "pid": "041521927", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Endothel" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134405677", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF14418045", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb14418045h" + } + ], + "authorized_access_point": "Cellules endothe\u0301liales" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4152192-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041521927", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4152192-4", + "source": "GND" + } + ], + "authorized_access_point": "Endothelzelle" + }, + { + "md5": "a5aa1879cbb83035e8a163ff31a6f8b9", + "pid": "041523318", + "note": [ + { + "label": [ + "Gegner der Mittelma\u0308chte im 1.Weltkrieg" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Erster Weltkrieg" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4152331-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041523318", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4152331-3", + "source": "GND" + } + ], + "authorized_access_point": "Entente" + }, + { + "md5": "79b1f109e301f9035b3421035a02ecf9", + "pid": "041523393", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zelle" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133659313X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D004759", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D004759" + } + ], + "authorized_access_point": "Enterochromaffin Cells" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4152339-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041523393", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4152339-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Ciaccio-Zelle", + "Kultschitsky-Zelle", + "Schmidt-Zelle" + ], + "authorized_access_point": "Enterochromaffine Zelle" + }, + { + "md5": "db7536993b44f52aa435e20be558c865", + "pid": "04152697X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Raffinerie" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133976077", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85100456", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85100456" + } + ], + "authorized_access_point": "Petroleum refineries" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133976077", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11951091", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119510918" + } + ], + "authorized_access_point": "Pe\u0301trole - Raffineries" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254425543", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX526288", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX526288" + } + ], + "authorized_access_point": "Refineri\u0301as de petro\u0301leo" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966734238", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "19427-4", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/19427-4" + } + ], + "authorized_access_point": "Erdo\u0308lraffinerie" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4152697-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04152697X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4152697-1", + "source": "GND" + } + ], + "variant_access_point": [ + "O\u0308lraffinerie" + ], + "authorized_access_point": "Erdo\u0308lraffinerie" + }, + { + "md5": "cf97875197327010988402029af4488d", + "pid": "041527062", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Energieversorgung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134494394", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12221792", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12221792v" + } + ], + "authorized_access_point": "Pe\u0301trole - Industrie et commerce - Politique publique" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4152706-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041527062", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4152706-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Erdo\u0308l", + "O\u0308lversorgung", + "Erdo\u0308l" + ], + "authorized_access_point": "Erdo\u0308lversorgung" + }, + { + "md5": "25441be29841e494e7fb1af17fdfd359", + "pid": "041527186", + "note": [ + { + "label": [ + "Verknu\u0308pfe mit Anwendungsgebiet" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113483179X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12066490", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb120664901" + } + ], + "authorized_access_point": "E\u0301ve\u0301nement" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1024424219", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10069227", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10069227" + } + ], + "authorized_access_point": "Ereignis" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4152718-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041527186", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4152718-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Ereignisse" + ], + "authorized_access_point": "Ereignis" + }, + { + "md5": "d144c77e4545027e5a5c5cf1a28ec98b", + "pid": "041528565", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Erza\u0308hlung" + }, + { + "authorized_access_point": "Erotische Literatur" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134530471", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85044708", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85044708" + } + ], + "authorized_access_point": "Erotic stories" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134530471", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16932431", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb169324311" + } + ], + "authorized_access_point": "Nouvelles e\u0301rotiques" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254325360", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "3493", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/3493" + } + ], + "authorized_access_point": "Narrativa erotica" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254425748", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX4718660", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX4718660" + } + ], + "authorized_access_point": "Canciones ero\u0301ticas" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254425756", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX539152", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX539152" + } + ], + "authorized_access_point": "Cuentos ero\u0301ticos" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4152856-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041528565", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4152856-6", + "source": "GND" + } + ], + "authorized_access_point": "Erotische Erza\u0308hlung" + }, + { + "md5": "3392dc8aba066f38a00bd9fd38f8c899", + "pid": "04152862X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Lied" + }, + { + "authorized_access_point": "Erotische Literatur" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331605989", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85044707", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85044707" + } + ], + "authorized_access_point": "Erotic songs" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4152862-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04152862X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4152862-1", + "source": "GND" + } + ], + "authorized_access_point": "Erotisches Lied" + }, + { + "md5": "f9423ae3da5d6df2e161765b73eed7d6", + "pid": "041531426", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zelle" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133723098", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85045546", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85045546" + } + ], + "authorized_access_point": "Eukaryotic cells" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133723098", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12120745", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12120745x" + } + ], + "authorized_access_point": "Cellules eucaryotes" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254365168", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "33108", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/33108" + } + ], + "authorized_access_point": "Cellule eucariotiche" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254426426", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX4865884", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX4865884" + } + ], + "authorized_access_point": "Ce\u0301lulas eucariotas" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336593288", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D005057", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D005057" + } + ], + "authorized_access_point": "Eukaryotic Cells" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4153142-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041531426", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4153142-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Eukaryotische Zelle" + ], + "authorized_access_point": "Eukaryontische Zelle" + }, + { + "md5": "641e9903de4914107bffd910f36635d0", + "pid": "041534646", + "note": [ + { + "label": [ + "Ausbildungsberuf DDR" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Transport- und Logistikberuf" + } + ], + "related": [ + { + "authorized_access_point": "Fachkraft fu\u0308r Brief- und Frachtverkehr" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4153464-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041534646", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4153464-5", + "source": "GND" + } + ], + "authorized_access_point": "Facharbeiter fu\u0308r Betrieb und Verkehr des Post- und Zeitungswesens" + }, + { + "md5": "0bf584d91c25f63f0fceec4a7488cf1c", + "pid": "041537882", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Franzo\u0308sisch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4153788-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041537882", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4153788-9", + "source": "GND" + } + ], + "authorized_access_point": "Fatras" + }, + { + "md5": "00e64fae656dd9b5ad5d8a718141c071", + "pid": "041539346", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Lerchen" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133349419X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85123262", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85123262" + } + ], + "authorized_access_point": "Skylark" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133349419X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16670535", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16670535h" + } + ], + "authorized_access_point": "Alouette des champs" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4153934-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041539346", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4153934-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Alauda arvensis" + ], + "authorized_access_point": "Feldlerche" + }, + { + "md5": "0bd5c98b15996c67b3aba799d75cee7c", + "pid": "041540387", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kommunikationssatellit" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4154038-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041540387", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4154038-4", + "source": "GND" + } + ], + "authorized_access_point": "Fernmeldesatellit" + }, + { + "md5": "62329cc248a6eb7bbb4158a4264500fa", + "pid": "041540654", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kritiker" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331761379", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12423928", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb124239284" + } + ], + "authorized_access_point": "Critiques de te\u0301le\u0301vision" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4154065-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041540654", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4154065-7", + "source": "GND" + } + ], + "authorized_access_point": "Fernsehkritiker" + }, + { + "md5": "f038ce30f415c408468b67e1069a9f79", + "pid": "041542436", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zelle" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133663443", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh86006585", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh86006585" + } + ], + "authorized_access_point": "Fat cells" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133663443", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11964829", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119648290" + } + ], + "authorized_access_point": "Adipocytes" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254378154", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "45155", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/45155" + } + ], + "authorized_access_point": "Cellule adipose" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336593458", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D017667", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D017667" + } + ], + "authorized_access_point": "Adipocytes" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4154243-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041542436", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4154243-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Adipozyt", + "Adipocyt" + ], + "authorized_access_point": "Fettzelle" + }, + { + "md5": "1387a93b15552b99b0bf861d4d71192c", + "pid": "041543688", + "note": [ + { + "label": [ + "Als Homonymenzusatz bei Personenschlagworten zugelassen." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Filmkritiker" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331760828", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85147650", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85147650" + } + ], + "authorized_access_point": "Women film critics" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4154368-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041543688", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4154368-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Filmpublizistin" + ], + "authorized_access_point": "Filmkritikerin" + }, + { + "md5": "a3aebff71c6ebb938f0c80f3e2c9d516", + "pid": "041544323", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Handwerk" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4154432-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041544323", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4154432-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Fingerhut", + "Fingerhutherstellung" + ], + "authorized_access_point": "Fingerhuthandwerk" + }, + { + "md5": "885a1c5acab1cea59b428c46cf771219", + "pid": "041549457", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wagen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4154945-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041549457", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4154945-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Grubenwagen", + "Grubenhund" + ], + "authorized_access_point": "Fo\u0308rderwagen" + }, + { + "md5": "c07376da1860ef52a6efc681ae764715", + "pid": "041552334", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134287275", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh87003395", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh87003395" + } + ], + "authorized_access_point": "Women's shelters" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134287275", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12346055", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12346055h" + } + ], + "authorized_access_point": "Centres d'he\u0301bergement pour femmes" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970550995", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10044115", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10044115" + } + ], + "authorized_access_point": "Frauenhaus" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4155233-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041552334", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4155233-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Frauenzufluchtsta\u0308tte" + ], + "authorized_access_point": "Frauenhaus" + }, + { + "md5": "b2a6f9f36d741174111f9fe1ca8055c3", + "pid": "041552725", + "type": "bf:Topic", + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966977858", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "15115-1", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/15115-1" + } + ], + "authorized_access_point": "Datenerhebung" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970542453", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10040547", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10040547" + } + ], + "authorized_access_point": "Datengewinnung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4155272-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041552725", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4155272-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Erhebung (Statistik)", + "Statistische Erhebung", + "Datenbeschaffung", + "Datengewinnung", + "Datenproduktion", + "Datengenerierung" + ], + "authorized_access_point": "Datenerhebung" + }, + { + "md5": "59500827ddd8f1210d7f50ac4d7c5c81", + "pid": "041553128", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Freihandel" + } + ], + "related": [ + { + "authorized_access_point": "Zollunion" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966749707", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10612-5", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/10612-5" + } + ], + "authorized_access_point": "Freihandelsabkommen" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970551126", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10041435", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10041435" + } + ], + "authorized_access_point": "Freihandelszone" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4155312-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041553128", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4155312-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Freihandelsgebiet" + ], + "authorized_access_point": "Freihandelszone" + }, + { + "md5": "1fc044659c0d1baaabceb9efd929d019", + "pid": "041555252", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4155525-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041555252", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4155525-9", + "source": "GND" + } + ], + "authorized_access_point": "Fructoselysin" + }, + { + "md5": "334cfe98562b65c1aeeecc8923d00b47", + "pid": "041556984", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Pru\u0308ftechnik" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4155698-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041556984", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4155698-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Funktionspru\u0308fung", + "Funktionskontrolle" + ], + "authorized_access_point": "Funktionstest" + }, + { + "md5": "9d335ed733b808db8df4e41d479a8bbc", + "pid": "041558103", + "note": [ + { + "label": [ + "Gattung" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133871860", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85052750", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85052750" + } + ], + "authorized_access_point": "Galago (Genus)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133871860", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13571222", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb135712220" + } + ], + "authorized_access_point": "Galago (genre)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4155810-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041558103", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4155810-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Buschbaby" + ], + "authorized_access_point": "Galago" + }, + { + "md5": "4fc67536c7b2368c22160a862887da5b", + "pid": "04155812X", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133871852", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh90005631", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh90005631" + } + ], + "authorized_access_point": "Galagos" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133871852", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13571216", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb135712162" + } + ], + "authorized_access_point": "Galagide\u0301s" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4155812-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04155812X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4155812-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Buschbabies", + "Galagidae" + ], + "authorized_access_point": "Galagos (Familie)" + }, + { + "md5": "78cd14b2778063b973c7b3fd6e8ac911", + "pid": "041563247", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Psychische Folter" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133910483", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85016371", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85016371" + } + ], + "authorized_access_point": "Brainwashing" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133910483", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11932235", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119322355" + } + ], + "authorized_access_point": "Lavage de cerveau" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254386882", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "54518", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/54518" + } + ], + "authorized_access_point": "Lavaggio del cervello" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254433295", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX535656", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX535656" + } + ], + "authorized_access_point": "Lavado de cerebro" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336052236", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D000096965", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000096965" + } + ], + "authorized_access_point": "Brainwashing" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4156324-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041563247", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4156324-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Brainwashing", + "Mentizid" + ], + "authorized_access_point": "Gehirnwa\u0308sche" + }, + { + "md5": "a10b922e5d76379d2e3282d447f1b20d", + "pid": "041563409", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133665144", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85144471", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85144471" + } + ], + "authorized_access_point": "Vultures" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133665144", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11965079", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11965079k" + } + ], + "authorized_access_point": "Vautours" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4156340-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041563409", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4156340-2", + "source": "GND" + } + ], + "authorized_access_point": "Geier" + }, + { + "md5": "bd56660775d27b20580d5489e4b0969f", + "pid": "041565568", + "note": [ + { + "label": [ + "Zusammengeho\u0308rigkeitsgefu\u0308hl einer Gruppe (Familie, Gemeinde, Staat), das sich als Handlungsbereitschaft zugunsten des Gemeinwohls a\u0308u\u00dfert", + "Fu\u0308r Gemeinsinn im Sinne des gesunden Menschenverstands verwende Commonsense" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Common Sense" + }, + { + "authorized_access_point": "Gemeinwohl" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134032072", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85026301", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85026301" + } + ], + "authorized_access_point": "Civics" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134032072", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11973413", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11973413g" + } + ], + "authorized_access_point": "Civisme" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254341242", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "15328", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/15328" + } + ], + "authorized_access_point": "Educazione civica" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254433783", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX532612", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX532612" + } + ], + "authorized_access_point": "Civismo" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)983460760", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10044951", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10044951" + } + ], + "authorized_access_point": "Gemeinsinn" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4156556-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041565568", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4156556-3", + "source": "GND" + } + ], + "authorized_access_point": "Gemeinsinn" + }, + { + "md5": "d113f00e22ad9d928fe640824760f9a1", + "pid": "041565762", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Agrarproduktverarbeitung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134033109", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11973827", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119738278" + } + ], + "authorized_access_point": "Le\u0301gumes - Transformation" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4156576-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041565762", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4156576-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Gemu\u0308severwertung", + "Gemu\u0308se", + "Gemu\u0308se" + ], + "authorized_access_point": "Gemu\u0308severarbeitung" + }, + { + "md5": "ddf7232d0725ba99937c307444971c76", + "pid": "041570103", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Stereotyp" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4157010-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041570103", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4157010-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Geschlechtsstereotyp", + "Geschlechterrolle", + "Geschlechterklischee" + ], + "authorized_access_point": "Geschlechterstereotyp" + }, + { + "md5": "287b24873b1111a70f0d755d31bec180", + "pid": "041570154", + "note": [ + { + "label": [ + "Medizinische Ma\u00dfnahmen zur Anpassung der Geschlechtsmerkmale an die Geschlechtsidentita\u0308t" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332649548", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11980654", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119806543" + } + ], + "authorized_access_point": "Re\u0301assignation sexuelle" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254434836", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX533275", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX533275" + } + ], + "authorized_access_point": "Transexualismo" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4157015-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041570154", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4157015-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Geschlechtsumwandlung", + "Geschlechtsmerkmale", + "Geschlechtstransformation" + ], + "authorized_access_point": "Geschlechtsangleichung" + }, + { + "md5": "e6ea1d2af781347887666ec9be2d996a", + "pid": "041570170", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zelle" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134267150", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85052973", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85052973" + } + ], + "authorized_access_point": "Gametes" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134267150", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12307257", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb123072575" + } + ], + "authorized_access_point": "Game\u0300tes" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254362177", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "30877", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/30877" + } + ], + "authorized_access_point": "Gameti" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)125621535X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "3185", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_3185" + } + ], + "authorized_access_point": "gametes" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133659358X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D005854", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D005854" + } + ], + "authorized_access_point": "Germ Cells" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4157017-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041570170", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4157017-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Fortpflanzungszelle", + "Geschlechtszelle", + "Keimzelle", + "Germ cell" + ], + "authorized_access_point": "Gamet" + }, + { + "md5": "ff94caa93bb49ed7b7193c336eb46e49", + "pid": "041570316", + "note": [ + { + "label": [ + "ohne HZ fu\u0308r den Sprengko\u0308rper" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Munition" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334236135", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85107374", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85107374" + } + ], + "authorized_access_point": "Projectiles" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334236135", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13318836", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13318836f" + } + ], + "authorized_access_point": "Projectiles" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4157031-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041570316", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4157031-5", + "source": "GND" + } + ], + "authorized_access_point": "Geschoss" + }, + { + "md5": "6ae1444029e0f3dfe29830fda20ea053", + "pid": "041573579", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Supraleitung" + } + ], + "related": [ + { + "authorized_access_point": "Ginzburg-Landau-Gleichung" + }, + { + "authorized_access_point": "Landau-Theorie" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333593597", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16534388", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16534388h" + } + ], + "authorized_access_point": "The\u0301orie de Ginzburg-Landau" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4157357-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041573579", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4157357-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Ginsburg-Landau-Theorie" + ], + "authorized_access_point": "Ginzburg-Landau-Theorie" + }, + { + "md5": "1a45b6f79437fe2e151ae71bf31a0500", + "pid": "041577760", + "note": [ + { + "label": [ + "Form der Lehrdichtung in allen Literaturen, besonders auf der a\u0308lteren Stufe ihrer Entwicklung" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sinnspruch" + }, + { + "authorized_access_point": "Gnomologie" + } + ], + "related": [ + { + "authorized_access_point": "Sentenz" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4157776-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041577760", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4157776-0", + "source": "GND" + } + ], + "authorized_access_point": "Gnome" + }, + { + "md5": "71ba87f4039d6d815adb5ca430b9cdeb", + "pid": "041579550", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Urteil" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134373848", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85095346", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85095346" + } + ], + "authorized_access_point": "Ordeal" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134373848", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12647532", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb126475320" + } + ], + "authorized_access_point": "Ordalie" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4157955-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041579550", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4157955-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Gottesgericht (Gottesurteil)", + "Ordal" + ], + "authorized_access_point": "Gottesurteil" + }, + { + "md5": "d3f2130d70094760f01ec4218cc59204", + "pid": "041580176", + "note": [ + { + "label": [ + "Nur f. sprachenu\u0308bergreifende Sachverhalte, sonst verkn. z.B. Deutsch; Grammatik ; Deutschunterricht" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sprachunterricht" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134169531", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2008118370", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2008118370" + } + ], + "authorized_access_point": "Grammar, Comparative and general - Study and teaching" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134169531", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12110550", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12110550r" + } + ], + "authorized_access_point": "Grammaire - E\u0301tude et enseignement" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4158017-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041580176", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4158017-5", + "source": "GND" + } + ], + "authorized_access_point": "Grammatikunterricht" + }, + { + "md5": "e5c5c473a209394305b3494128f0a292", + "pid": "041582500", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Seenadeln" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133348982X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17818710", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17818710w" + } + ], + "authorized_access_point": "Syngnathe aiguille" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4158250-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041582500", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4158250-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Syngnathus acus" + ], + "authorized_access_point": "Gro\u00dfe Seenadel" + }, + { + "md5": "e16327956c450417c85831fc7f9d22c6", + "pid": "041582667", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Scho\u0308llkraut" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134488254", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh96009459", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh96009459" + } + ], + "authorized_access_point": "Greater celandine" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134488254", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15018776", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb150187765" + } + ], + "authorized_access_point": "Chelidonium majus" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336585765", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D000097563", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000097563" + } + ], + "authorized_access_point": "Chelidonium majus" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4158266-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041582667", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4158266-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Chelidonium majus" + ], + "authorized_access_point": "Gro\u00dfes Scho\u0308llkraut" + }, + { + "md5": "89c2971b7f7fe603aedc7d861caf101a", + "pid": "041582675", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Familie" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1270440217", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2005004783", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2005004783" + } + ], + "authorized_access_point": "Extended families" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970555512", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10043232", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10043232" + } + ], + "authorized_access_point": "Gro\u00dffamilie" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970572069", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10043230", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10043230" + } + ], + "authorized_access_point": "Mehrgenerationenfamilie" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4158267-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041582675", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4158267-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Mehrgenerationenfamilie", + "Mehrgenerationenverband" + ], + "authorized_access_point": "Gro\u00dffamilie" + }, + { + "md5": "8614c72063a7fff6b1f1a62b0c27723d", + "pid": "041582969", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Polnisch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4158296-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041582969", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4158296-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Mundart Polnisch (Gro\u00dfpolen)" + ], + "authorized_access_point": "Gro\u00dfpolnisch" + }, + { + "md5": "688447ad1c16483c440895be37588165", + "pid": "041584929", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4158492-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041584929", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4158492-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Guanidin" + ], + "authorized_access_point": "Guanidinderivate" + }, + { + "md5": "d9b56152a074ae01035ad8bf99146c8f", + "pid": "041585623", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Streichinstrument" + } + ], + "related": [ + { + "authorized_access_point": "Guslar" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134816634", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh92005165", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh92005165" + } + ], + "authorized_access_point": "Gusle" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4158562-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041585623", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4158562-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Gusla", + "Lahuta" + ], + "authorized_access_point": "Gusle" + }, + { + "md5": "60edc23c17a198a4b45d521d16af83ac", + "pid": "041591267", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4159126-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041591267", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4159126-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Fourier-Synthese" + ], + "authorized_access_point": "Harmonische Synthese" + }, + { + "md5": "8a66ca641e8156dbdb0dc642070fb244", + "pid": "041594800", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Installateurhandwerk" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113460808X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11979039", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11979039h" + } + ], + "authorized_access_point": "Chauffagistes" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4159480-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041594800", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4159480-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Heizungsinstallateurhandwerk", + "Heizungsinstallation", + "Heizungsinstallation" + ], + "authorized_access_point": "Heizungshandwerk" + }, + { + "md5": "9de58fd35071bd9e60f5fe1eb9682bcc", + "pid": "041595505", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Antigen" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133688675", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85060294", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85060294" + } + ], + "authorized_access_point": "Hepatitis associated antigen" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133688675", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11979078", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11979078d" + } + ], + "authorized_access_point": "Antige\u0300ne Australia" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)125435199X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "22623", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/22623" + } + ], + "authorized_access_point": "Antigene Australia" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4159550-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041595505", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4159550-6", + "source": "GND" + } + ], + "variant_access_point": [ + "HAA" + ], + "authorized_access_point": "Hepatitis-Assoziiertes Antigen" + }, + { + "md5": "5aaaed475b2a7524269fd904d4d1fcb1", + "pid": "041596277", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Viren" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113400849X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85060462", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85060462" + } + ], + "authorized_access_point": "Herpesviruses" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113400849X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11965282", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119652821" + } + ], + "authorized_access_point": "Herpesviride\u0301s" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254328882", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "5356", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/5356" + } + ], + "authorized_access_point": "Herpesviridae" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254439528", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX533805", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX533805" + } + ], + "authorized_access_point": "Virus del herpes" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4159627-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041596277", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4159627-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Herpesviridae" + ], + "authorized_access_point": "Herpesviren" + }, + { + "md5": "835644ad85f873257f2c76a1af26f09d", + "pid": "041597508", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134667248", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85060545", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85060545" + } + ], + "authorized_access_point": "Heteroscedasticity" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966774140", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "15362-5", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/15362-5" + } + ], + "authorized_access_point": "Heteroskedastizita\u0308t" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4159750-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041597508", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4159750-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Heterogenita\u0308t der Varianzen", + "Heteroskedastie", + "Heteroskedasticity" + ], + "authorized_access_point": "Heteroskedastizita\u0308t" + }, + { + "md5": "97552f01381dd80804b9249e714cc890", + "pid": "041599470", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gehirn" + }, + { + "authorized_access_point": "Zelle" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4159947-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041599470", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4159947-0", + "source": "GND" + } + ], + "variant_access_point": [ + "ZNS-Gewebe" + ], + "authorized_access_point": "Hirnzelle" + }, + { + "md5": "023fa24c101ce5643b3934f8aa9b1407", + "pid": "041600010", + "note": [ + { + "label": [ + "Verwendet fu\u0308r Gesamtdarstellungen; bei zeitlich und/oder sachlich eingeschra\u0308nkten Darstellungen verwende Geschichte mit Jahreszahl und ggf. zusa\u0308tzliches Sach-SW." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Grammatik" + }, + { + "authorized_access_point": "Sprachwandel" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134037708", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11975748", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11975748f" + } + ], + "authorized_access_point": "Grammaire historique" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4160001-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041600010", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4160001-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Grammatik" + ], + "authorized_access_point": "Historische Grammatik" + }, + { + "md5": "778d9d96b5d5e5cdc10bef8f2939d8f0", + "pid": "041600622", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Geometrie" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4160062-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041600622", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4160062-9", + "source": "GND" + } + ], + "authorized_access_point": "Hjelmslevsche Geometrie" + }, + { + "md5": "d7995adabbebfd272022dd0c04950e3b", + "pid": "041601475", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Elektronische Schaltung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133676413", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85084954", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85084954" + } + ], + "authorized_access_point": "Microwave circuits" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133676413", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11972999", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119729995" + } + ], + "authorized_access_point": "Circuits pour microondes" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4160147-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041601475", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4160147-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Hochfrequenz-Schaltung" + ], + "authorized_access_point": "Hochfrequenzschaltung" + }, + { + "md5": "186646cfd5afe528cecd9e54c217eec5", + "pid": "041603176", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Krebs (Medizin)" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134590423", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2010010377", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2010010377" + } + ], + "authorized_access_point": "Testis - Cancer" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1241605815", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D013736", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D013736" + } + ], + "authorized_access_point": "Testicular Neoplasms" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4160317-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041603176", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4160317-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Maligner Hodentumor" + ], + "authorized_access_point": "Hodenkrebs" + }, + { + "md5": "b364e3c5940c63c2d710ce8ed315ef36", + "pid": "041605799", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Katalyse" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134085923", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2014001146", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2014001146" + } + ], + "authorized_access_point": "Homogeneous catalysis" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134085923", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11991895", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11991895p" + } + ], + "authorized_access_point": "Catalyse homoge\u0300ne" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4160579-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041605799", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4160579-2", + "source": "GND" + } + ], + "authorized_access_point": "Homogene Katalyse" + }, + { + "md5": "b2280e406e961a7e799c398b8d548f6b", + "pid": "041606760", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Haut" + } + ], + "related": [ + { + "authorized_access_point": "Horn" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334796270", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16736881", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb167368819" + } + ], + "authorized_access_point": "Stratum corne\u0301um" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4160676-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041606760", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4160676-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Hornhaut (Epidermis)", + "Stratum corneum" + ], + "authorized_access_point": "Hornschicht" + }, + { + "md5": "69f0ea47f484fa2888d2f98406ddffe5", + "pid": "041607988", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Humoristin" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4160798-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041607988", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4160798-3", + "source": "GND" + } + ], + "authorized_access_point": "Humorist" + }, + { + "md5": "2d96eb84aa7d9762de2bb7e845230e74", + "pid": "041612469", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133982174", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85064235", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85064235" + } + ], + "authorized_access_point": "Ikat" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133982174", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11953399", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11953399b" + } + ], + "authorized_access_point": "Ikat" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4161246-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041612469", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4161246-2", + "source": "GND" + } + ], + "authorized_access_point": "Ikat" + }, + { + "md5": "913be6808b7aec10773b306ac3c0e6ac", + "pid": "041613597", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zelle" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134245610", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85064524", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85064524" + } + ], + "authorized_access_point": "Immobilized cells" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134245610", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12266500", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12266500v" + } + ], + "authorized_access_point": "Cellules immobilise\u0301es" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336593954", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D018914", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D018914" + } + ], + "authorized_access_point": "Cells, Immobilized" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4161359-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041613597", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4161359-4", + "source": "GND" + } + ], + "authorized_access_point": "Immobilisierte Zelle" + }, + { + "md5": "10a74f82e8fccafaa24cb229f59775ba", + "pid": "041613872", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zelle" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133713416", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85064551", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85064551" + } + ], + "authorized_access_point": "Immunocompetent cells" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133713416", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12049642", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb120496421" + } + ], + "authorized_access_point": "Cellules immunocompe\u0301tentes" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)125439608X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "67680", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/67680" + } + ], + "authorized_access_point": "Cellule immunocompetenti" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4161387-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041613872", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4161387-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Immunzelle", + "Immunkompetente Zelle", + "Immunocyt", + "Abwehrzelle" + ], + "authorized_access_point": "Immunozyt" + }, + { + "md5": "c2e8974a95e5f66a76791fe3715aacff", + "pid": "041614836", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Index&oldid=232182921" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Nicht im Sinne von Register zu verwenden! Als Formschlagwort verwende f Bibliographie, f Konkordanz oder f Verzeichnis." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966779029", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "15082-4", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/15082-4" + } + ], + "authorized_access_point": "Index" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4161483-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041614836", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4161483-5", + "source": "GND" + } + ], + "authorized_access_point": "Index" + }, + { + "md5": "051fc6629a67a3a6d48f1baffbbc90a3", + "pid": "041614909", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134150776", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85064859", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85064859" + } + ], + "authorized_access_point": "Index numbers (Economics)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134150776", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12076887", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12076887f" + } + ], + "authorized_access_point": "Indices (e\u0301conomie politique)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254442901", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX533854", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX533854" + } + ], + "authorized_access_point": "Nu\u0301meros i\u0301ndices (Economi\u0301a)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4161490-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041614909", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4161490-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Indexziffer", + "Statistische Kennziffer", + "Aggregatindex", + "Generalindex", + "Zusammengesetzte Indexzahl" + ], + "authorized_access_point": "Indexzahl" + }, + { + "md5": "075c42dbd43f198a857f953c4a297555", + "pid": "041616375", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tragwerk" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4161637-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041616375", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4161637-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Starres Tragwerk" + ], + "authorized_access_point": "Inelastisches Tragwerk" + }, + { + "md5": "797760432b52492785c2d3ee29aae2bb", + "pid": "041616715", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134028997", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85066293", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85066293" + } + ], + "authorized_access_point": "Information theory in economics" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134028997", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11972022", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119720223" + } + ], + "authorized_access_point": "Information, The\u0301orie de l' en e\u0301conomie politique" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966782380", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10141-4", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/10141-4" + } + ], + "authorized_access_point": "Informationso\u0308konomik" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4161671-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041616715", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4161671-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Informationso\u0308konomik" + ], + "authorized_access_point": "Informationso\u0308konomie" + }, + { + "md5": "c0afea7cc64561233266fe403dada66f", + "pid": "041617266", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Anleihe" + }, + { + "authorized_access_point": "Inhaberpapier" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4161726-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041617266", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4161726-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Schuldverschreibung auf den Inhaber", + "Bearer bond" + ], + "authorized_access_point": "Inhaberschuldverschreibung" + }, + { + "md5": "3a2578182c6484b691196ba302428dac", + "pid": "041619366", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bauelement" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134739672", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh97007351", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh97007351" + } + ], + "authorized_access_point": "Microelectromechanical systems" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134739672", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13602331", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb136023316" + } + ], + "authorized_access_point": "Syste\u0300mes microe\u0301lectrome\u0301caniques" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4161936-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041619366", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4161936-5", + "source": "GND" + } + ], + "authorized_access_point": "Integriertes Bauelement" + }, + { + "md5": "2d33668ca92e5e587a93d44563387cd4", + "pid": "041619633", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Krankenpflege" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133738958", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85067185", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85067185" + } + ], + "authorized_access_point": "Intensive care nursing" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133738958", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12245931", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12245931k" + } + ], + "authorized_access_point": "Soins infirmiers en soins intensifs" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4161963-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041619633", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4161963-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Critical care nursing" + ], + "authorized_access_point": "Intensivpflege" + }, + { + "md5": "8a0db843f632e5ba92d2f36a90d808fd", + "pid": "041621662", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Toleranz" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134651988", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85135882", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85135882" + } + ], + "authorized_access_point": "Toleration" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134651988", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11933613", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119336136" + } + ], + "authorized_access_point": "Tole\u0301rance" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4162166-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041621662", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4162166-9", + "source": "GND" + } + ], + "authorized_access_point": "Intoleranz" + }, + { + "md5": "3d03dbc88d25d751ff02e742b36709d6", + "pid": "041623010", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Semipermeable Membran" + }, + { + "authorized_access_point": "Membranionenaustauscher" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133692990", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85067803", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85067803" + } + ], + "authorized_access_point": "Ion-permeable membranes" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133692990", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11981513", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11981513g" + } + ], + "authorized_access_point": "Membranes e\u0301changeuses d'ions" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254444629", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX553088", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX553088" + } + ], + "authorized_access_point": "Membranas de intercambio io\u0301nico" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4162301-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041623010", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4162301-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Ionenaustauschmembran" + ], + "authorized_access_point": "Ionenaustauschermembran" + }, + { + "md5": "0bd2cf58c37ff0822778e6c5e91d00e4", + "pid": "041627458", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133878296", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85070147", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85070147" + } + ], + "authorized_access_point": "Jesus People" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133878296", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13607037", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13607037n" + } + ], + "authorized_access_point": "Mouvements pour Je\u0301sus" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970585713", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10048163", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10048163" + } + ], + "authorized_access_point": "religio\u0308se Bewegung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4162745-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041627458", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4162745-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Jesus-People", + "Jesus-Revolution" + ], + "authorized_access_point": "Jesus-Bewegung" + }, + { + "md5": "b3601793787a3244275f2bc9ebadd5fd", + "pid": "04163120X", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Kalmarer_Union&oldid=212527898" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Vereinigung der Ko\u0308nigreiche Da\u0308nemark, Norwegen u. Schweden, mit Unterbrechungen von 1397 bis 1523 (06.06.) bestanden." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bu\u0308ndnis" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133842003", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85071361", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85071361" + } + ], + "authorized_access_point": "Kalmar, Union of, 1397" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133842003", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13182978", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb131829789" + } + ], + "authorized_access_point": "Kalmar, Union de (1397)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4163120-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04163120X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4163120-1", + "source": "GND" + } + ], + "authorized_access_point": "Kalmarer Union" + }, + { + "md5": "ff5047663ac2d3d5d6db228700c2181c", + "pid": "041631676", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134052545", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85028791", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85028791" + } + ], + "authorized_access_point": "Combat" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134052545", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11978385", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119783858" + } + ], + "authorized_access_point": "Combat" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4163167-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041631676", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4163167-5", + "source": "GND" + } + ], + "authorized_access_point": "Kampf" + }, + { + "md5": "8711b06503946a2e7bef5ff128b7108a", + "pid": "041631692", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gro\u00dfguramis" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333951116", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85122191", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85122191" + } + ], + "authorized_access_point": "Siamese fighting fish" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333951116", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15954764", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15954764k" + } + ], + "authorized_access_point": "Betta splendens" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4163169-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041631692", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4163169-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Siamesischer Kampffisch", + "Betta splendens", + "Schleierkampffisch" + ], + "authorized_access_point": "Kampffisch" + }, + { + "md5": "989750ca88ffcb4b3c7db5135aac2d51", + "pid": "041633237", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Toxizita\u0308t" + } + ], + "related": [ + { + "authorized_access_point": "Herzgift" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)124163503X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D066126", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D066126" + } + ], + "authorized_access_point": "Cardiotoxicity" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4163323-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041633237", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4163323-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Cardiotoxizita\u0308t" + ], + "authorized_access_point": "Kardiotoxizita\u0308t" + }, + { + "md5": "110eb2fb0cdd67e8a48d82b36c968790", + "pid": "041634179", + "note": [ + { + "label": [ + "Bestandsverzeichnis einer Sammlung (Bibliothek, Museum usw.) oder einer Gesamtheit von Sammlungen (RDA AH-007).", + "Auch fu\u0308r Verlagskataloge. Sofern zutreffend verwende die spezifischen Begriffe Antiquariatskatalog, Auktionskatalog, Ausstellungskatalog, Verkaufskatalog. Bei Archivbesta\u0308nden verwende Inventar. Fu\u0308r andere Arten der Auflistung verwende Verzeichnis (RDA AH-007)." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Verzeichnis" + } + ], + "related": [ + { + "authorized_access_point": "Bibliografie" + }, + { + "authorized_access_point": "Inventar" + }, + { + "authorized_access_point": "Neuerwerbungsliste" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133643949", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85020917", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85020917" + } + ], + "authorized_access_point": "Publishers' catalogs" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133680755", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2005003411", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2005003411" + } + ], + "authorized_access_point": "Catalogs" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133643949", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF119484598", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11948459c" + } + ], + "authorized_access_point": "Catalogues d'e\u0301diteurs" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133680755", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF119759400", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119759407" + } + ], + "authorized_access_point": "Catalogues" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254335196", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10004", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/10004" + } + ], + "authorized_access_point": "Cataloghi editoriali" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254447520", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX528701", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX528701" + } + ], + "authorized_access_point": "Cata\u0301logos de editores" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1253498628", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D019494", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D019494" + } + ], + "authorized_access_point": "Catalog" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4163417-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041634179", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4163417-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Bestandskatalog", + "Bestandsverzeichnis (Formschlagwort)" + ], + "authorized_access_point": "Katalog" + }, + { + "md5": "1c8911a52d29869dba022c7ff790ed2a", + "pid": "041636422", + "type": "bf:Topic", + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336587253", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D048750", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D048750" + } + ], + "authorized_access_point": "Cell Nucleus Division" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4163642-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041636422", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4163642-9", + "source": "GND" + } + ], + "authorized_access_point": "Kernteilung" + }, + { + "md5": "97f067070ecbb8c562632cc4571711aa", + "pid": "041637763", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zelle" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134130406", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85072328", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85072328" + } + ], + "authorized_access_point": "Killer cells" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134130406", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12046164", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb120461647" + } + ], + "authorized_access_point": "Cellules K (lymphocytes)" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336594861", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D013602", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D013602" + } + ], + "authorized_access_point": "T-Lymphocytes, Cytotoxic" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4163776-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041637763", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4163776-8", + "source": "GND" + } + ], + "variant_access_point": [ + "K-Zelle", + "Cytotoxische Zelle", + "Zytotoxische Zelle", + "Zytotoxischer T-Lymphozyt", + "Cytotoxischer T-Lymphozyt" + ], + "authorized_access_point": "Killerzelle" + }, + { + "md5": "8c4c42fe43e79132847117a8d006bc2e", + "pid": "041639383", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Konkordat" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134706170", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85030644", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85030644" + } + ], + "authorized_access_point": "Concordats" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134706170", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13318920", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13318920b" + } + ], + "authorized_access_point": "Concordats" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4163938-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041639383", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4163938-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Staatskirchenvertrag", + "Staat" + ], + "authorized_access_point": "Kirchenvertrag" + }, + { + "md5": "dd0039fceba17539742665cf1088d2ed", + "pid": "041640047", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kapuzineraffenartige" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333261039", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85126622", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85126622" + } + ], + "authorized_access_point": "Spider monkeys" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333261039", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16723695", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16723695h" + } + ], + "authorized_access_point": "Singes-araigne\u0301es" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4164004-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041640047", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4164004-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Ateles" + ], + "authorized_access_point": "Klammeraffe" + }, + { + "md5": "de7751a2bb51c2e8c67e53b75b9b22b2", + "pid": "041647459", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Partisan" + }, + { + "authorized_access_point": "Widerstand" + }, + { + "authorized_access_point": "Nichtkombattant" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134295294", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85028799", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85028799" + } + ], + "authorized_access_point": "Combatants and noncombatants (International law)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134295294", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12364444", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12364444w" + } + ], + "authorized_access_point": "Combattants et non-combattants (droit international)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4164745-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041647459", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4164745-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Kriegsteilnehmer (Kombattant)" + ], + "authorized_access_point": "Kombattant" + }, + { + "md5": "2a7ae1a34fe62fdbc8b91832234581c2", + "pid": "041650018", + "note": [ + { + "label": [ + "Alphabetisches Verzeichnis aller in einer Schrift vorkommenden Wo\u0308rter oder Sachen mit Stellenangabe (RDA AH-007).", + "Auch fu\u0308r Register verwendet (RDA AH-007)." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Verzeichnis" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133614140", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85030642", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85030642" + } + ], + "authorized_access_point": "Concordances" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133614140", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11931766", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11931766k" + } + ], + "authorized_access_point": "Concordances" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254339159", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "13311", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/13311" + } + ], + "authorized_access_point": "Concordanze" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254450777", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX526531", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX526531" + } + ], + "authorized_access_point": "Concordancias" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4165001-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041650018", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4165001-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Personenregister", + "Sachregister (Formschlagwort)", + "Wortindex", + "Wo\u0308rterverzeichnis", + "Werkkonkordanz" + ], + "authorized_access_point": "Konkordanz" + }, + { + "md5": "b98cddd42bd29478527e28f65735adf6", + "pid": "041653025", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Geflecht (Technik)" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134799934", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13516282", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13516282t" + } + ], + "authorized_access_point": "Vannerie" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1299909876", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX526260", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX526260" + } + ], + "authorized_access_point": "Cesteri\u0301a" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4165302-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041653025", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4165302-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Korbflechterei" + ], + "authorized_access_point": "Korbware" + }, + { + "md5": "e1675a836cc68a15da7ea449265b8066", + "pid": "041653386", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Linguistik" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134838050", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2006006393", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2006006393" + } + ], + "authorized_access_point": "Corpora (Linguistics)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134838050", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15997252", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15997252r" + } + ], + "authorized_access_point": "Corpus linguistique" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254451552", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX4874758", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX4874758" + } + ], + "authorized_access_point": "Corpora (Lingu\u0308i\u0301stica)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4165338-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041653386", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4165338-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Korpus (Sprachwissenschaft)", + "Corpus (Linguistik)", + "Korpuslinguistik", + "Textkorpus" + ], + "authorized_access_point": "Korpus (Linguistik)" + }, + { + "md5": "0881ae8fe51a45a2ea47c783a73f8478", + "pid": "041654013", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4165401-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041654013", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4165401-8", + "source": "GND" + } + ], + "authorized_access_point": "Kovariante Darstellung" + }, + { + "md5": "372e985d566e6278c6073463df67c7c7", + "pid": "041655168", + "note": [ + { + "label": [ + "Ab dem 1.1.2004 neue offizielle Berufsbezeichnung in Dtld: \"Gesundheits- und Krankenpfleger\". Vorher ausgebildete Pflegekra\u0308fte ko\u0308nnen wahlweise die alte oder die neue Berufsbezeichnung fu\u0308hren.", + "Als Homonymenzusatz bei Personenschlagwo\u0308rtern zugelassen." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Pflegepersonal" + } + ], + "related": [ + { + "authorized_access_point": "Krankenschwester" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134065833", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85083530", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85083530" + } + ], + "authorized_access_point": "Male nurses" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134065833", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11980730", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11980730c" + } + ], + "authorized_access_point": "Infirmiers" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333273207", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D009727", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D009727" + } + ], + "authorized_access_point": "Nurses, Male" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970566271", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10045517", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10045517" + } + ], + "authorized_access_point": "Krankenpfleger" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4165516-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041655168", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4165516-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Gesundheits- und Krankenpfleger", + "Pflegefachmann" + ], + "authorized_access_point": "Krankenpfleger" + }, + { + "md5": "085dfcdfd4046c23dd55b4a504f4c4ba", + "pid": "041655974", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kompass" + } + ], + "related": [ + { + "authorized_access_point": "Kreiselgera\u0308t" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4165597-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041655974", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4165597-7", + "source": "GND" + } + ], + "authorized_access_point": "Kreiselkompass" + }, + { + "md5": "7ef52627bffdb26377e9aeaae2147950", + "pid": "041656032", + "note": [ + { + "label": [ + "Benutzt fu\u0308r das deutsche und internationale Recht, fu\u0308r das o\u0308sterreichische Recht benutze Stadt mit eigenem Statut" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Stadt" + } + ], + "related": [ + { + "authorized_access_point": "Gro\u00dfe Kreisstadt" + }, + { + "authorized_access_point": "Stadt mit eigenem Statut" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4165603-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041656032", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4165603-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Stadtkreis (Kreisfreie Stadt)" + ], + "authorized_access_point": "Kreisfreie Stadt" + }, + { + "md5": "e44b0e224d4b4a28e9e407552d859c92", + "pid": "04165725X", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Kriminalfall&oldid=201807873" + ], + "noteType": "dataSource" + }, + { + "label": [ + "fu\u0308r popula\u0308rwiss., quasiliterarische Darstellungen von Kriminalfa\u0308llen, ansonsten wird Straftat benutzt; nicht zusa\u0308tzlich f Fallsammlung. Bei belletrist. Darstellungen nicht-permutierendes USW nach Geographikum" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4165725-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04165725X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4165725-1", + "source": "GND" + } + ], + "authorized_access_point": "Kriminalfall" + }, + { + "md5": "665bd02e366f365e76eea34029f529e6", + "pid": "041663659", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Antibiotikum" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134245041", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh86002798", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh86002798" + } + ], + "authorized_access_point": "Beta lactam antibiotics" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134245041", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12266277", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12266277m" + } + ], + "authorized_access_point": "Be\u0302ta-lactamines" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254394842", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "66202", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/66202" + } + ], + "authorized_access_point": "Beta-lattamici" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254454187", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX549031", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX549031" + } + ], + "authorized_access_point": "Antibio\u0301ticos betalacta\u0301micos" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336118954", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D000097902", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000097902" + } + ], + "authorized_access_point": "beta Lactam Antibiotics" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4166365-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041663659", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4166365-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Betalactamantibiotikum", + "Beta-Lactam-Antibiotikum", + "Cepheme", + "Betalaktam-Antibiotika" + ], + "authorized_access_point": "Lactamantibiotikum (beta-)" + }, + { + "md5": "cd40c22119f3db6281f404fb883e3692", + "pid": "041664795", + "note": [ + { + "label": [ + "Seelsorge durch Laien" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Seelsorge" + } + ], + "related": [ + { + "authorized_access_point": "Laienapostolat" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134596170", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13554687", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb135546870" + } + ], + "authorized_access_point": "Agents de pastorale" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4166479-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041664795", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4166479-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Laie" + ], + "authorized_access_point": "Laienseelsorge" + }, + { + "md5": "faaf3e65fa297ae21c0a35ae636e3f5a", + "pid": "041667093", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Walzer" + }, + { + "authorized_access_point": "Standardta\u0308nze" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133811841", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85015940", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85015940" + } + ], + "authorized_access_point": "Boston (Dance)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133811841", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12489782", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb124897822" + } + ], + "authorized_access_point": "Boston (danse)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4166709-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041667093", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4166709-8", + "source": "GND" + } + ], + "variant_access_point": [ + "English waltz", + "English-Waltz", + "Englishwaltz", + "Valse Boston", + "Boston (Musik)" + ], + "authorized_access_point": "Langsamer Walzer" + }, + { + "md5": "bc02c16febf003006d4af4881e289b3e", + "pid": "041667670", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Grubenottern" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1323096663", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2008007750", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2008007750" + } + ], + "authorized_access_point": "Fer-de-lance" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1323096663", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17058270", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17058270t" + } + ], + "authorized_access_point": "Bothrops atrox" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336108002", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D000097142", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000097142" + } + ], + "authorized_access_point": "Bothrops atrox" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4166767-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041667670", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4166767-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Bothrops atrox", + "Gewo\u0308hnliche Lanzenotter" + ], + "authorized_access_point": "Lanzenotter" + }, + { + "md5": "588a953fdd76c0c92fbb58384e37ba07", + "pid": "041667689", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Grubenottern" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134429665", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85016019", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85016019" + } + ], + "authorized_access_point": "Bothrops" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134429665", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF14508508", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb14508508n" + } + ], + "authorized_access_point": "Bothrops" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336105909", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D017837", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D017837" + } + ], + "authorized_access_point": "Bothrops" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4166768-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041667689", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4166768-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Lanzenotter (Gattung)" + ], + "authorized_access_point": "Bothrops" + }, + { + "md5": "0d4de7748719b3e9ec7d9c3284f62b40", + "pid": "041678532", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133824862", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2007010787", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2007010787" + } + ], + "authorized_access_point": "Literary manifestos" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133824862", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12536532", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12536532c" + } + ], + "authorized_access_point": "Manifestes litte\u0301raires et artistiques" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4167853-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041678532", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4167853-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Manifest" + ], + "authorized_access_point": "Literarisches Manifest" + }, + { + "md5": "2e1e6ad760feff75c93afabe2ecafe93", + "pid": "041679792", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Livl%C3%A4ndischer_Krieg&oldid=213445252" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Krieg" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4167979-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041679792", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4167979-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Livonskaja vojna" + ], + "authorized_access_point": "Livla\u0308ndischer Krieg" + }, + { + "md5": "21ff2f9d3ae7ae991f48bbc5fd231853", + "pid": "041682106", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Entlu\u0308ftung" + }, + { + "authorized_access_point": "Durchlu\u0308ftung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334018308", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85142747", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85142747" + } + ], + "authorized_access_point": "Ventilation" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334018308", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11951224", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11951224p" + } + ], + "authorized_access_point": "Ventilation" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4168210-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041682106", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4168210-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Lu\u0308ftungssystem" + ], + "authorized_access_point": "Lu\u0308ftung" + }, + { + "md5": "e9186b82b4f4499a2c294e4ac71990bf", + "pid": "041687167", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Mande-Sprachen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4168716-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041687167", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4168716-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Manding-Sprache", + "Mandinka-Sprache", + "Mandinkakan-Sprache", + "Maninka-Sprache", + "Mandekan", + "Maninlakan" + ], + "authorized_access_point": "Malinke-Sprache" + }, + { + "md5": "b6cf542c891be9ef494d153747aad36e", + "pid": "041688473", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113404609X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11977231", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11977231t" + } + ], + "authorized_access_point": "Maniabilite\u0301" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4168847-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041688473", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4168847-8", + "source": "GND" + } + ], + "authorized_access_point": "Mano\u0308vrierfa\u0308higkeit" + }, + { + "md5": "e1e4b4be7a336a1d5754a71618fb7beb", + "pid": "041689763", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Funktionale Musik" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133737870", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85080979", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85080979" + } + ], + "authorized_access_point": "Marches" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133737870", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12238072", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb122380726" + } + ], + "authorized_access_point": "Marches (musique)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254397973", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "69890", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/69890" + } + ], + "authorized_access_point": "Marce " + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254459553", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX537163", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX537163" + } + ], + "authorized_access_point": "Marchas militares" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4168976-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041689763", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4168976-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Marschmusik" + ], + "authorized_access_point": "Marsch (Musik)" + }, + { + "md5": "1e157aa7c984dc3d934906fe460b71af", + "pid": "041689976", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ingenieur" + } + ], + "related": [ + { + "authorized_access_point": "Maschinenbauingenieurin" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4168997-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041689976", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4168997-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Maschineningenieur" + ], + "authorized_access_point": "Maschinenbauingenieur" + }, + { + "md5": "c1403f250f57ef966e9dfd807d0cd762", + "pid": "041691504", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zwergmoschustiere" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4169150-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041691504", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4169150-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Kantschil", + "Tragulus" + ], + "authorized_access_point": "Maushirsch" + }, + { + "md5": "0367a930c41fdca1d3f50c6a010277fc", + "pid": "041691989", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Medienzentrum" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133679013", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85009465", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85009465" + } + ], + "authorized_access_point": "Audio-visual library service" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133679013", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11975004", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11975004w" + } + ], + "authorized_access_point": "Me\u0301diathe\u0300ques" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4169198-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041691989", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4169198-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Mediathek" + ], + "authorized_access_point": "Mediothek" + }, + { + "md5": "abae6a15556e381980fba427af655717", + "pid": "041692403", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134278373", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85056581", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85056581" + } + ], + "authorized_access_point": "Gray mullets" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134278373", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12330195", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12330195c" + } + ], + "authorized_access_point": "Mugilide\u0301s" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4169240-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041692403", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4169240-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Mugilidae" + ], + "authorized_access_point": "Meera\u0308schen" + }, + { + "md5": "947bf1e0e4a55f1bbf6ccfbbf93fa5f5", + "pid": "041692705", + "note": [ + { + "label": [ + "Mit der Integraltransformation nahe verwandte Konzepte sind der Mehler-Kern und die Mehler-Formel mit Anwendung in der Quantenmechanik." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Integraltransformation" + } + ], + "related": [ + { + "authorized_access_point": "Harmonischer Oszillator" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4169270-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041692705", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4169270-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Mehler-Fock-Transformation" + ], + "authorized_access_point": "Mehler-Fok-Transformation" + }, + { + "md5": "8675c2a1bea18c3c4d628fade420ee54", + "pid": "041693442", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Eid" + }, + { + "authorized_access_point": "Falschaussage" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134106920", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85099968", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85099968" + } + ], + "authorized_access_point": "Perjury" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134106920", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12010894", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb120108941" + } + ], + "authorized_access_point": "Parjure" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4169344-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041693442", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4169344-9", + "source": "GND" + } + ], + "authorized_access_point": "Meineid" + }, + { + "md5": "126e8c89510e0ecd6b1f0216b89a8165", + "pid": "041693477", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133740073", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85083346", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85083346" + } + ], + "authorized_access_point": "Meiosis" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133740073", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12253594", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb122535943" + } + ], + "authorized_access_point": "Me\u0301iose" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254363955", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "32284", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/32284" + } + ], + "authorized_access_point": "Meiosi" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254460950", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX533954", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX533954" + } + ], + "authorized_access_point": "Meiosis" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256236209", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "4706", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_4706" + } + ], + "authorized_access_point": "meiosis" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133658677X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D008540", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D008540" + } + ], + "authorized_access_point": "Meiosis" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4169347-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041693477", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4169347-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Reifeteilung", + "Reduktionsteilung", + "Meiosis" + ], + "authorized_access_point": "Meiose" + }, + { + "md5": "450d4cac7068a8c4da6d20f9c7582ffc", + "pid": "041696492", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zellteilung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133884040", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13737516", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13737516v" + } + ], + "authorized_access_point": "Me\u0301taphase" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336586443", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D008677", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D008677" + } + ], + "authorized_access_point": "Metaphase" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4169649-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041696492", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4169649-9", + "source": "GND" + } + ], + "authorized_access_point": "Metaphase" + }, + { + "md5": "04caba5849a44ece07b45132b8158e2c", + "pid": "041699114", + "note": [ + { + "label": [ + "Fu\u0308r Tiere benutze Euter bzw. Gesa\u0308uge" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Exokrine Dru\u0308se" + } + ], + "related": [ + { + "authorized_access_point": "Mamma" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133751105", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85080275", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85080275" + } + ], + "authorized_access_point": "Mammary glands" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133751105", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12285824", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12285824v" + } + ], + "authorized_access_point": "Glande mammaire" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256237515", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "4562", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_4562" + } + ], + "authorized_access_point": "mammary glands" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4169911-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041699114", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4169911-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Brustdru\u0308se", + "Glandula mammaria", + "Mammadru\u0308se" + ], + "authorized_access_point": "Milchdru\u0308se" + }, + { + "md5": "54d839843783d00f2cbb40ebb67bc103", + "pid": "041699122", + "note": [ + { + "label": [ + "In der Tiermedizin verwende Gesa\u0308ugekrankheit bzw.Euterkrankheit" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Brustkrankheit" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4169912-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041699122", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4169912-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Brustdru\u0308senerkrankung" + ], + "authorized_access_point": "Milchdru\u0308senkrankheit" + }, + { + "md5": "4897e1bcda91462b0c76848cd8a78b81", + "pid": "041700465", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fahrzeug" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133675050", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85027439", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85027439" + } + ], + "authorized_access_point": "Coaster cars" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4170046-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041700465", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4170046-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Minicar (Seifenkiste)" + ], + "authorized_access_point": "Seifenkiste" + }, + { + "md5": "24936afafc08d21db1145858afcf047f", + "pid": "041701852", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kernteilung" + } + ], + "related": [ + { + "authorized_access_point": "Amitose" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133728553", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85086289", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85086289" + } + ], + "authorized_access_point": "Mitosis" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133728553", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12151573", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12151573g" + } + ], + "authorized_access_point": "Mitose" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254366571", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "34116", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/34116" + } + ], + "authorized_access_point": "Mitosi" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)125446302X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX550158", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX550158" + } + ], + "authorized_access_point": "Mitosis" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256238120", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "4870", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_4870" + } + ], + "authorized_access_point": "mitosis" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336586613", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D008938", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D008938" + } + ], + "authorized_access_point": "Mitosis" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4170185-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041701852", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4170185-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Mitotische Teilung", + "Indirekte Kernteilung", + "Indirekte Zellteilung", + "M-Phase" + ], + "authorized_access_point": "Mitose" + }, + { + "md5": "12d441d5cd200429128d95813c7ab565", + "pid": "04170441X", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133867782", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13557117", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb135571175" + } + ], + "authorized_access_point": "Lune - Surface" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4170441-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04170441X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4170441-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Mond" + ], + "authorized_access_point": "Mondoberfla\u0308che" + }, + { + "md5": "106431918b21530d1f84452b909165fc", + "pid": "04170553X", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Moriskentanz" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tanz" + } + ], + "related": [ + { + "authorized_access_point": "Morisken" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134139004", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85087339", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85087339" + } + ], + "authorized_access_point": "Moros y Cristianos (Dance)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134139004", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12050074", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb120500741" + } + ], + "authorized_access_point": "Moresca (danse)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254394389", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "65611", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/65611" + } + ], + "authorized_access_point": "Moresca" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133811833", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85087356", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85087356" + } + ], + "authorized_access_point": "Morris dance" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133811833", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12489728", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb124897288" + } + ], + "authorized_access_point": "Morris dance" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4170553-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04170553X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4170553-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Morisca", + "Moreskentanz", + "Moriskentanz", + "Moriska", + "Mourisca", + "Morris dance", + "Morrisdance" + ], + "authorized_access_point": "Moresca" + }, + { + "md5": "1654346c39fe454b7b2331c50abc2011", + "pid": "041707109", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gruppe (Mathematik)" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133359478X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85063698", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85063698" + } + ], + "authorized_access_point": "Hypergroups" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133359478X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12451436", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12451436h" + } + ], + "authorized_access_point": "Hypergroupes" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4170710-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041707109", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4170710-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Hypergruppe (Gruppentheorie)" + ], + "authorized_access_point": "Multigruppe" + }, + { + "md5": "32b359d7276ea84d971811e79bd11441", + "pid": "041707222", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kranker" + } + ], + "related": [ + { + "authorized_access_point": "Multiple Sklerose" + }, + { + "authorized_access_point": "Weibliche Multiple-Sklerose-Kranke" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134505272", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12447406", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12447406t" + } + ], + "authorized_access_point": "Ence\u0301phalomye\u0301lite aigue\u0308 dissemine\u0301e" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4170722-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041707222", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4170722-9", + "source": "GND" + } + ], + "authorized_access_point": "Multiple-Sklerose-Kranker" + }, + { + "md5": "940aa47919687e55e005ed27870e77ae", + "pid": "04171007X", + "note": [ + { + "label": [ + "Physiolog. Vorga\u0308nge nach der Ernte" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113380554X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2002006516", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2002006516" + } + ], + "authorized_access_point": "Postharvest physiology" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113380554X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12470674", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12470674s" + } + ], + "authorized_access_point": "Physiologie apre\u0300s re\u0301colte" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256239585", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "24406", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_24406" + } + ], + "authorized_access_point": "postharvest physiology" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4171007-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04171007X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4171007-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Postharvest physiology" + ], + "authorized_access_point": "Nacherntephysiologie" + }, + { + "md5": "faa1d0240d670d9269b81b99b1ae7ab5", + "pid": "04171069X", + "note": [ + { + "label": [ + "Pflanzliche und tierische Materialien" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Organischer Rohstoff" + }, + { + "authorized_access_point": "Agrarprodukt" + } + ], + "related": [ + { + "authorized_access_point": "Erneuerbare Ressourcen" + }, + { + "authorized_access_point": "Biomasse" + }, + { + "authorized_access_point": "Biorohstoff" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970574819", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10065163", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10065163" + } + ], + "authorized_access_point": "nachwachsende Rohstoffe" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4171069-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04171069X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4171069-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Nachwachsende Rohstoffe" + ], + "authorized_access_point": "Nachwachsender Rohstoff" + }, + { + "md5": "1270b5a24e0f6c4e4fd8253c8ad65ce3", + "pid": "041712188", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Staat" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134669534", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2009003712", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2009003712" + } + ], + "authorized_access_point": "Multinational states" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134669534", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16276182", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16276182p" + } + ], + "authorized_access_point": "E\u0301tats multinationaux" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970602103", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10053023", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10053023" + } + ], + "authorized_access_point": "Vielvo\u0308lkerstaat" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4171218-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041712188", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4171218-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Vielvo\u0308lkerstaat", + "Multinationaler Staat" + ], + "authorized_access_point": "Nationalita\u0308tenstaat" + }, + { + "md5": "431ae66289d53adcfd36683c08235077", + "pid": "041712900", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Killerzelle" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134259670", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85072328", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85072328" + } + ], + "authorized_access_point": "Killer cells" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134259670", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12290850", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12290850d" + } + ], + "authorized_access_point": "Cellules NK" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336594470", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D007694", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D007694" + } + ], + "authorized_access_point": "Killer Cells, Natural" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4171290-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041712900", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4171290-0", + "source": "GND" + } + ], + "variant_access_point": [ + "NK-Zelle" + ], + "authorized_access_point": "Natu\u0308rliche Killerzelle" + }, + { + "md5": "800a114ee35002107380fe5d15524437", + "pid": "041714059", + "note": [ + { + "label": [ + "Die negative Feststellungsklage ist eine Klageart, mit der die Feststellung des Nichtbestehens eines Rechtsverha\u0308ltnisses geltend gemacht werden kann." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Feststellungsklage" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4171405-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041714059", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4171405-2", + "source": "GND" + } + ], + "authorized_access_point": "Negative Feststellungsklage" + }, + { + "md5": "e250b83457e05060968b3deb279ae980", + "pid": "041716159", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Teilchendetektor" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4171615-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041716159", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4171615-2", + "source": "GND" + } + ], + "authorized_access_point": "Neutrinodetektor" + }, + { + "md5": "f1613cadcac2c597b3ee9f7e0b972c67", + "pid": "041717007", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113436394X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85091709", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85091709" + } + ], + "authorized_access_point": "Nias language" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113436394X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12545964", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb125459642" + } + ], + "authorized_access_point": "Nias (langue)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4171700-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041717007", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4171700-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Niassisch", + "Nias (Sprache)" + ], + "authorized_access_point": "Nias-Sprache" + }, + { + "md5": "518897d13ae81b5a8a08a46ba7f831ae", + "pid": "041718380", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Adel" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134023499", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85053953", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85053953" + } + ], + "authorized_access_point": "Gentry" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134023499", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11970875", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11970875d" + } + ], + "authorized_access_point": "Petite noblesse" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4171838-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041718380", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4171838-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Niederer Adel", + "Kleinadel" + ], + "authorized_access_point": "Niederadel" + }, + { + "md5": "f36b69559cfbbcfc11974b3b6a340f9c", + "pid": "041718429", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gera\u0308usch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4171842-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041718429", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4171842-2", + "source": "GND" + } + ], + "authorized_access_point": "Niederfrequentes Gera\u0308usch" + }, + { + "md5": "cb5fd691e65f2dfe415b06e0138f1b75", + "pid": "041720040", + "note": [ + { + "label": [ + "Benutze fu\u0308r den gesamten Krieg und fu\u0308r den Krieg zwischen Schweden und Polen allein; fu\u0308r den Krieg zwischen Schweden und Da\u0308nemark allein benutze \"Schwedisch-Da\u0308nischer Krieg (1657-1660)\"" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Krieg" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4172004-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041720040", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4172004-0", + "source": "GND" + } + ], + "variant_access_point": [ + "1. Nordischer Krieg", + "Erster Nordischer Krieg", + "Nordischer Krieg (1655-1660)", + "Schwedisch-Polnisch-Russisch-Da\u0308nischer Krieg", + "Polnisch-schwedischer Krieg (1655-1660)", + "Schwedisch-polnischer Krieg (1655-1660)", + "Zweiter Nordischer Krieg (1655-1661)", + "Zweiter Polnisch-Schwedischer Krieg", + "Kleiner Nordischer Krieg" + ], + "authorized_access_point": "Schwedisch-polnisch-da\u0308nischer Krieg" + }, + { + "md5": "af998127c0007cbeb8e0894b519117e7", + "pid": "041722027", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Brunnen" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133747493", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh92004203", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh92004203" + } + ], + "authorized_access_point": "Nymphaea (Architecture)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133747493", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12268889", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12268889r" + } + ], + "authorized_access_point": "Nymphe\u0301es" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4172202-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041722027", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4172202-4", + "source": "GND" + } + ], + "authorized_access_point": "Nymphaeum" + }, + { + "md5": "e5d9c63c05c49c57482f98be3f36ccd2", + "pid": "041725522", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sperma" + } + ], + "related": [ + { + "authorized_access_point": "Azoospermie" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1241615969", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D009845", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D009845" + } + ], + "authorized_access_point": "Oligospermia" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4172552-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041725522", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4172552-9", + "source": "GND" + } + ], + "authorized_access_point": "Oligospermie" + }, + { + "md5": "7fc27f637ae16049adc4f77739ec81cd", + "pid": "041730380", + "note": [ + { + "label": [ + "Fu\u0308r bodennahes Ozon verknu\u0308pfe: Ozon / Bodennahe Luftschicht." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sauerstoff" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133692281", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85096391", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85096391" + } + ], + "authorized_access_point": "Ozone" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133692281", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11981162", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11981162k" + } + ], + "authorized_access_point": "Ozone" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254328858", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "5327", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/5327" + } + ], + "authorized_access_point": "Ozono" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254470212", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX543193", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX543193" + } + ], + "authorized_access_point": "Ozono" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256242993", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "5485", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_5485" + } + ], + "authorized_access_point": "ozone" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334635641", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D010126", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D010126" + } + ], + "authorized_access_point": "Ozone" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4173038-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041730380", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4173038-0", + "source": "GND" + } + ], + "authorized_access_point": "Ozon" + }, + { + "md5": "b922026628ba7315085dae269ccdc11c", + "pid": "041733819", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134142498", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85075821", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85075821" + } + ], + "authorized_access_point": "Legislative bodies - Reform" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134142498", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12063314", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12063314x" + } + ], + "authorized_access_point": "Parlements - Re\u0301forme" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4173381-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041733819", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4173381-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Parlament" + ], + "authorized_access_point": "Parlamentsreform" + }, + { + "md5": "6a8f5c68db5df7bd5b0e611f34424b3c", + "pid": "041734467", + "note": [ + { + "label": [ + "Benutzt fu\u0308r den Kampf der Partisanen und deren Beka\u0308mpfung" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Krieg" + } + ], + "related": [ + { + "authorized_access_point": "Guerilla" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134567057", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85057695", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85057695" + } + ], + "authorized_access_point": "Guerrilla warfare" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134567057", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13516336", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13516336x" + } + ], + "authorized_access_point": "Gue\u0301rilla" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4173446-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041734467", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4173446-4", + "source": "GND" + } + ], + "authorized_access_point": "Partisanenkrieg" + }, + { + "md5": "c157da1d5144a649d175cdbacd0e4241", + "pid": "041734688", + "note": [ + { + "label": [ + "Kompositabildung nur mit Bezeichnungen fu\u0308r Jungtiere, z.B. Ka\u0308lberaufzucht; mit anderen Tieren wird verknu\u0308pft, z.B. Orang-Utan ; Aufzucht" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tierzucht" + }, + { + "authorized_access_point": "Tierhaltung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332441262", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh99004865", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh99004865" + } + ], + "authorized_access_point": "Breeding" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133612407", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85016717", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85016717" + } + ], + "authorized_access_point": "Breeding" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133612407", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11931237", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11931237m" + } + ], + "authorized_access_point": "Ame\u0301lioration ge\u0301ne\u0301tique" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133922597", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11931346", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11931346v" + } + ], + "authorized_access_point": "E\u0301levage" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4173468-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041734688", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4173468-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Tieraufzucht" + ], + "authorized_access_point": "Aufzucht" + }, + { + "md5": "2604c67de8d200d7d288c4714caa0baa", + "pid": "041735390", + "note": [ + { + "label": [ + "Versto\u00df gegen patentrechtliche Vorschriften" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Patentrecht" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134665784", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh96001068", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh96001068" + } + ], + "authorized_access_point": "Patent infringement" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4173539-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041735390", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4173539-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Patentrechtsverletzung", + "Patent" + ], + "authorized_access_point": "Patentverletzung" + }, + { + "md5": "cd70fcd042fe7161c0e83f012663bd31", + "pid": "041736346", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Agglomerieren" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134745400", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85099278", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85099278" + } + ], + "authorized_access_point": "Pelletizing" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4173634-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041736346", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4173634-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Kugelsintern", + "Aufbaugranulieren" + ], + "authorized_access_point": "Pelletieren" + }, + { + "md5": "17cbdb8bef9dea73f457f81e59713649", + "pid": "041737539", + "note": [ + { + "label": [ + "Fu\u0308r das Fru\u0308h- und Hochmittelalter nur benutzt, wenn der Beschreibstoff besonders thematisiert ist; sonst SW Handschrift" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Handschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4173753-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041737539", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4173753-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Pergament" + ], + "authorized_access_point": "Pergamenthandschrift" + }, + { + "md5": "b6874f9d0525fc4204fb392fa608683a", + "pid": "041738063", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254471987", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX533663", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX533663" + } + ], + "authorized_access_point": "Perlas" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)125624435X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "5644", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_5644" + } + ], + "authorized_access_point": "pearls" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4173806-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041738063", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4173806-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Perlen" + ], + "authorized_access_point": "Perle" + }, + { + "md5": "b2530cd0e63feecc50f9c0afae58c157", + "pid": "04174084X", + "note": [ + { + "label": [ + "Im medizin. Bereich werden nach Mo\u0308glichkeit die SWW Krankenpflege, Altenpflege, Kinderkrankenpflege usw. verwendet." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113483182X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85009391", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85009391" + } + ], + "authorized_access_point": "Attention" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113483182X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13318901", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb133189012" + } + ], + "authorized_access_point": "Entretien" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133944809", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11938292", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11938292f" + } + ], + "authorized_access_point": "Soins" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970579012", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10035229", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10035229" + } + ], + "authorized_access_point": "Pflege" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4174084-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04174084X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4174084-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Pflegekonzept" + ], + "authorized_access_point": "Pflege" + }, + { + "md5": "8af987e8b0713799ad3bb1d7cfa5002a", + "pid": "041742648", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Wohlta\u0308tigkeit" + }, + { + "authorized_access_point": "Philanthrop" + }, + { + "authorized_access_point": "Philanthropin" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134557973", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13318795", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13318795p" + } + ], + "authorized_access_point": "Oeuvres de bienfaisance" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1024440249", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10069666", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10069666" + } + ], + "authorized_access_point": "Philanthropie" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4174264-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041742648", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4174264-3", + "source": "GND" + } + ], + "authorized_access_point": "Philanthropie" + }, + { + "md5": "2760667d8de9b071ca22708aa9264f2a", + "pid": "04174604X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Akustik" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4174604-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04174604X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4174604-1", + "source": "GND" + } + ], + "authorized_access_point": "Physikalische Akustik" + }, + { + "md5": "7f61137425bc8bc99b4e2536cb68348a", + "pid": "041748379", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Plasmaphysik" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4174837-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041748379", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4174837-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Plasma" + ], + "authorized_access_point": "Plasmatheorie" + }, + { + "md5": "4abf2743d5673ecd917b0f44240a2679", + "pid": "041748964", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fu\u00dfdeformita\u0308t" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333254393", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85049021", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85049021" + } + ], + "authorized_access_point": "Flatfoot" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1241618364", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D005413", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D005413" + } + ], + "authorized_access_point": "Flatfoot" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4174896-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041748964", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4174896-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Pes planus" + ], + "authorized_access_point": "Plattfu\u00df" + }, + { + "md5": "3004a7bd772c98e402b9324a2c97ca45", + "pid": "04174926X", + "note": [ + { + "label": [ + "Art der Familie der Loris" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333260261", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2004001089", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2004001089" + } + ], + "authorized_access_point": "Slow loris" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4174926-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04174926X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4174926-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Nycticebus coucang" + ], + "authorized_access_point": "Plumplori" + }, + { + "md5": "4ae1627dd999077e632dd16d2d0bbae5", + "pid": "041753615", + "note": [ + { + "label": [ + "Kulturgu\u0308ter, Erzeugnisse oder ku\u0308nstlerische Ausdrucksformen, die von einem gro\u00dfen Teil der Gesellschaft konsumiert und als relevant oder beliebt angesehen werden; wird als Gegensatz zur Hochkultur verstanden und als Ausdruck des Zeitgeistes betrachtet" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Massenkultur" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1291583955", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85104904", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85104904" + } + ], + "authorized_access_point": "Popular culture" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1291583955", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13318541", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://ark.bnf.fr/ark:/12148/cb133185416" + } + ], + "authorized_access_point": "Culture populaire" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)106889248X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "30024-3", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/30024-3" + } + ], + "authorized_access_point": "Popkultur" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)983461848", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10048286", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10048286" + } + ], + "authorized_access_point": "Popkultur" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4175361-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041753615", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4175361-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Pop-Kultur", + "Popula\u0308rkultur", + "Popula\u0308re Kultur" + ], + "authorized_access_point": "Popkultur" + }, + { + "md5": "85843e7bc95776b6979e5a50c0a4e0d2", + "pid": "04175431X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Operatorhalbgruppe" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4175431-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04175431X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4175431-1", + "source": "GND" + } + ], + "authorized_access_point": "Positive Operatorhalbgruppe" + }, + { + "md5": "c63f5e3a83a2fc03799bfda3d6cd396a", + "pid": "041754557", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kutsche" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134495595", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2002004206", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2002004206" + } + ], + "authorized_access_point": "Stagecoaches" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134495595", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12287719", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12287719g" + } + ], + "authorized_access_point": "Ve\u0301hicules hippomobiles" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4175455-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041754557", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4175455-4", + "source": "GND" + } + ], + "authorized_access_point": "Postkutsche" + }, + { + "md5": "b22572de9e797a310af529134c242a99", + "pid": "041755014", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=241778247" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fest" + } + ], + "related": [ + { + "authorized_access_point": "Nordwestku\u0308stenindianer" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4175501-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041755014", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4175501-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Potlatsch", + "Potlach" + ], + "authorized_access_point": "Potlatch" + }, + { + "md5": "a741331b4bc6c064db90fa7fb0390035", + "pid": "041759834", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Protamine" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4175983-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041759834", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4175983-7", + "source": "GND" + } + ], + "authorized_access_point": "Protaminsulfate" + }, + { + "md5": "27f721f41afb2b316b37bb91f959023b", + "pid": "041762223", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Student" + } + ], + "related": [ + { + "authorized_access_point": "Psychologiestudentin" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334681244", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2009008206", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2009008206" + } + ], + "authorized_access_point": "Psychology students" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334681244", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15094972", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb150949721" + } + ], + "authorized_access_point": "E\u0301tudiants en psychologie" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4176222-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041762223", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4176222-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Psychologiestudium" + ], + "authorized_access_point": "Psychologiestudent" + }, + { + "md5": "1692555d784dfb6ba2bfa3b934bd251c", + "pid": "041763165", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134797893", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85108894", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85108894" + } + ], + "authorized_access_point": "Puddings" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134797893", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15517468", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15517468b" + } + ], + "authorized_access_point": "Flans" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4176316-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041763165", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4176316-6", + "source": "GND" + } + ], + "authorized_access_point": "Pudding" + }, + { + "md5": "9efce3103067e47e783e6f666f84d752", + "pid": "04176420X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Truthuhn" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133695000", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11982369", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11982369s" + } + ], + "authorized_access_point": "Dindes" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4176420-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04176420X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4176420-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Pute (Truthenne)" + ], + "authorized_access_point": "Truthenne" + }, + { + "md5": "c5a388e1b6e5adbc32061ff4b00791f8", + "pid": "041766040", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bildanalyse" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4176604-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041766040", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4176604-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Bildanalyse" + ], + "authorized_access_point": "Quantitative Bildanalyse" + }, + { + "md5": "4d1e828c628a7fb91f8361a4e4cac936", + "pid": "041766717", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134340494", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2006007175", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2006007175" + } + ], + "authorized_access_point": "Mercury content" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134340494", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12480742", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12480742n" + } + ], + "authorized_access_point": "Teneur en mercure" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4176671-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041766717", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4176671-4", + "source": "GND" + } + ], + "authorized_access_point": "Quecksilbergehalt" + }, + { + "md5": "5f1776f845edde10b77f7fc3a7bc6d3f", + "pid": "041767934", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Radiererin" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133923755", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85043993", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85043993" + } + ], + "authorized_access_point": "Engravers" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133923755", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11931591", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119315917" + } + ], + "authorized_access_point": "Graveurs" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4176793-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041767934", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4176793-7", + "source": "GND" + } + ], + "authorized_access_point": "Radierer" + }, + { + "md5": "36ee4e99a0ce46d6aee3dd965955f342", + "pid": "041772768", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Zuwiderhandlung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133978622", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85136182", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85136182" + } + ], + "authorized_access_point": "Torts" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133978622", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11952132", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119521328" + } + ], + "authorized_access_point": "Responsabilite\u0301 civile" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970584598", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10040642", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10040642" + } + ], + "authorized_access_point": "Rechtsverletzung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4177276-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041772768", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4177276-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Rechtsbruch", + "Rechtsversto\u00df" + ], + "authorized_access_point": "Rechtsverletzung" + }, + { + "md5": "a70e88f0c374440d66b2e238371ee2c7", + "pid": "041772822", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4177282-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041772822", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4177282-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Instanzenzug", + "Instanz" + ], + "authorized_access_point": "Rechtszug" + }, + { + "md5": "3bd0a2adc8681363abb5c726e338bc77", + "pid": "041774434", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134758804", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13318572", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13318572g" + } + ], + "authorized_access_point": "Archives" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4177443-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041774434", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4177443-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Ablage (Verwaltung)", + "Aktenablage", + "Schriftgutverwaltung", + "Records Management" + ], + "authorized_access_point": "Registratur" + }, + { + "md5": "dab13e75f7bf3c0eba75eb83bf9e6495", + "pid": "041779452", + "note": [ + { + "label": [ + "Als Homonymenzusatz bei Personenschlagworten zugelassen." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Revolutiona\u0308r" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133920535", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85147698", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85147698" + } + ], + "authorized_access_point": "Women revolutionaries" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133920535", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13340891", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb133408918" + } + ], + "authorized_access_point": "Femmes re\u0301volutionnaires" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254392122", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "62269", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/62269" + } + ], + "authorized_access_point": "Rivoluzionarie" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4177945-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041779452", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4177945-9", + "source": "GND" + } + ], + "authorized_access_point": "Revolutiona\u0308rin" + }, + { + "md5": "2fbb2815f779e7f1bbb37f57177bd884", + "pid": "041781635", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133810713", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12484134", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12484134b" + } + ], + "authorized_access_point": "Taenia saginata" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4178163-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041781635", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4178163-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Taeniarhynchus saginatus", + "Taenia saginata" + ], + "authorized_access_point": "Rinderbandwurm" + }, + { + "md5": "8a6f6cb25d094c8b818e05897c3bc93c", + "pid": "041782445", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Orden" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133631452", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85095375", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85095375" + } + ], + "authorized_access_point": "Orders of knighthood and chivalry" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133631452", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13318528", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb133185280" + } + ], + "authorized_access_point": "Ordres de chevalerie" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134505213", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13318794", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13318794b" + } + ], + "authorized_access_point": "Ordres militaires (religion)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254480234", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX530947", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX530947" + } + ], + "authorized_access_point": "O\u0301rdenes de caballeri\u0301a" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4178244-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041782445", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4178244-6", + "source": "GND" + } + ], + "authorized_access_point": "Ritterorden" + }, + { + "md5": "8051e1c9eb2439527bf20b0baf595690", + "pid": "041784839", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133733719", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85113776", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85113776" + } + ], + "authorized_access_point": "Red algae" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4178483-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041784839", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4178483-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Rottange", + "Rhodophyceae", + "Rhodophyzeen", + "Rhodophyta", + "Agarophyten", + "Rhodophycophyta" + ], + "authorized_access_point": "Rotalgen" + }, + { + "md5": "dcb834265088647daf01c2b84421f29a", + "pid": "041785134", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133825397", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh96010897", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh96010897" + } + ], + "authorized_access_point": "Rotaxanes" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133825397", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12538357", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12538357n" + } + ], + "authorized_access_point": "Rotaxanes" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133614811X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D043862", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D043862" + } + ], + "authorized_access_point": "Rotaxanes" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4178513-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041785134", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4178513-7", + "source": "GND" + } + ], + "authorized_access_point": "Rotaxane" + }, + { + "md5": "b339dfd530ade37f49995d901c99548f", + "pid": "041785215", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Buntbarsche" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333964943", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17802092", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17802092g" + } + ], + "authorized_access_point": "Hemichromis bimaculatus" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4178521-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041785215", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4178521-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Hemichromis bimaculatus" + ], + "authorized_access_point": "Roter Buntbarsch" + }, + { + "md5": "1a4bbf0e5b93903a56ed9b3ed6fd8b28", + "pid": "041787250", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schleifen" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134709471", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85057370", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85057370" + } + ], + "authorized_access_point": "Grinding and polishing" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134709471", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11980486", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119804865" + } + ], + "authorized_access_point": "Meulage" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4178725-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041787250", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4178725-0", + "source": "GND" + } + ], + "authorized_access_point": "Rundschleifen" + }, + { + "md5": "64cc261e118016ce21a964c12db4d6fb", + "pid": "041789989", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Steuer" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134083637", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85116855", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85116855" + } + ], + "authorized_access_point": "Salt - Taxation" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134083637", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11986454", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119864540" + } + ], + "authorized_access_point": "Sel - Impo\u0302ts" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4178998-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041789989", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4178998-2", + "source": "GND" + } + ], + "authorized_access_point": "Salzsteuer" + }, + { + "md5": "cacf79100e1f7782d2050b39d126320e", + "pid": "041792432", + "note": [ + { + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung und hier nicht permutierender Wortart, z. B. Hebra\u0308isch ; Verb ; s\u030cava\u0301" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134004958", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85121185", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85121185" + } + ], + "authorized_access_point": "Shb\u02bb (The Hebrew root)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134004958", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11963587", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119635873" + } + ], + "authorized_access_point": "S\u030cB\u02bf (la racine he\u0301brai\u0308que)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4179243-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041792432", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4179243-9", + "source": "GND" + } + ], + "variant_access_point": [ + "s\u030cba" + ], + "authorized_access_point": "s\u030cava\u0301" + }, + { + "md5": "fad704025552f4b3fe6e2d7bdcaa7317", + "pid": "041794524", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Reibungsbremse" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133699626", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85010244", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85010244" + } + ], + "authorized_access_point": "Automobiles - Disc brakes" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133699626", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11993213", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11993213b" + } + ], + "authorized_access_point": "Automobiles - Freins a\u0300 disque" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134310862", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12398340", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12398340t" + } + ], + "authorized_access_point": "Freins a\u0300 disque" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4179452-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041794524", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4179452-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Axialbremse" + ], + "authorized_access_point": "Scheibenbremse" + }, + { + "md5": "d0a6e0f8b6611e4140c02695458b10a8", + "pid": "041794923", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Unterwelt" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4179492-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041794923", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4179492-8", + "source": "GND" + } + ], + "authorized_access_point": "Scheol" + }, + { + "md5": "fc8e87575378ea1adcb874bf67f6d8d9", + "pid": "041796462", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Luftschlacht_um_England&oldid=211129893" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Luftkrieg" + } + ], + "related": [ + { + "authorized_access_point": "Unternehmen Seelo\u0308we" + }, + { + "authorized_access_point": "Zweiter Weltkrieg" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133985025", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85016958", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85016958" + } + ], + "authorized_access_point": "Britain, Battle of, Great Britain, 1940" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133985025", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11954542", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119545425" + } + ], + "authorized_access_point": "Bataille d'Angleterre (1940)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254378812", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "45870", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/45870" + } + ], + "authorized_access_point": "Battaglia d'Inghilterra <1940>" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254457631", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX533012", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX533012" + } + ], + "authorized_access_point": "Inglaterra, Batalla de, 1940" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4179646-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041796462", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4179646-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Schlacht um England", + "Battle of Britain" + ], + "authorized_access_point": "Luftschlacht um England" + }, + { + "md5": "6b1325738f2224d8c8a14c6613984128", + "pid": "041798813", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zuggattung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134657854", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85110967", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85110967" + } + ], + "authorized_access_point": "Express trains" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134657854", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12141363", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12141363d" + } + ], + "authorized_access_point": "Trains rapides" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4179881-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041798813", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4179881-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Schnellzu\u0308ge", + "D-Zug" + ], + "authorized_access_point": "Schnellzug" + }, + { + "md5": "37a3df47b580ea94146c4eaec23fe58c", + "pid": "041802659", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Inertgas" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4180265-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041802659", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4180265-2", + "source": "GND" + } + ], + "authorized_access_point": "Schutzgas" + }, + { + "md5": "c4b10dbdf5afa8ae3fc90cd644e98772", + "pid": "04180466X", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133930867", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85146007", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85146007" + } + ], + "authorized_access_point": "Welded joints - Testing" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133930867", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11933298", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119332989" + } + ], + "authorized_access_point": "Soudures - Essais" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4180466-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04180466X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4180466-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Schwei\u00dfnaht" + ], + "authorized_access_point": "Schwei\u00dfnahtpru\u0308fung" + }, + { + "md5": "3d4cf874ece55f8489044f178c0a512a", + "pid": "041805348", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fechten" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134267819", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85131357", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85131357" + } + ], + "authorized_access_point": "Swordplay" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134267819", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12308292", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12308292x" + } + ], + "authorized_access_point": "E\u0301pe\u0301e (sport)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4180534-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041805348", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4180534-3", + "source": "GND" + } + ], + "authorized_access_point": "Schwertfechten" + }, + { + "md5": "eaa3adbe22ef531a713c98191f5b1e9f", + "pid": "041806417", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Elektrisches Kabel" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134064403", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85018581", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85018581" + } + ], + "authorized_access_point": "Cables, Submarine" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134064403", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11980419", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119804191" + } + ], + "authorized_access_point": "Ca\u0302bles sous-marins" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254485392", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX525880", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX525880" + } + ], + "authorized_access_point": "Cables submarinos" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4180641-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041806417", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4180641-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Unterwasserkabel", + "Tiefseekabel", + "Unterseeische Kabel" + ], + "authorized_access_point": "Seekabel" + }, + { + "md5": "6ffbf31c1349bda28c303239ba24a455", + "pid": "041807677", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tektonik" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334019568", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17038712", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17038712m" + } + ], + "authorized_access_point": "Sismotectonique" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4180767-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041807677", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4180767-4", + "source": "GND" + } + ], + "authorized_access_point": "Seismotektonik" + }, + { + "md5": "e4c21e8550367cb1ced82c38f5ab7586", + "pid": "041808525", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Studium" + } + ], + "related": [ + { + "authorized_access_point": "E-Learning" + }, + { + "authorized_access_point": "Selbstunterricht" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134729782", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13324470", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13324470r" + } + ], + "authorized_access_point": "Autoformation" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970589115", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10057750", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10057750" + } + ], + "authorized_access_point": "Selbststudium" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4180852-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041808525", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4180852-6", + "source": "GND" + } + ], + "authorized_access_point": "Selbststudium" + }, + { + "md5": "45f62e4b059af8a2d4a8aaf167652962", + "pid": "041809165", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Doldengewa\u0308chse" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113469086X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2010012605", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2010012605" + } + ], + "authorized_access_point": "Cooking (Celery)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133860575", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85021621", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85021621" + } + ], + "authorized_access_point": "Celery" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133860575", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13511810", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13511810d" + } + ], + "authorized_access_point": "Ce\u0301leri" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113469086X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13511811", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13511811r" + } + ], + "authorized_access_point": "Cuisine (ce\u0301leris)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254397086", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "68941", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/68941" + } + ], + "authorized_access_point": "Sedani" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254486011", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX529731", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX529731" + } + ], + "authorized_access_point": "Apio" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256257079", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "535", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_535" + } + ], + "authorized_access_point": "Apium graveolens" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256257087", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "1412", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_1412" + } + ], + "authorized_access_point": "celery" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4180916-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041809165", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4180916-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Apium graveolens" + ], + "authorized_access_point": "Sellerie" + }, + { + "md5": "45596d3b2ac7e9c1d49380b3540436db", + "pid": "041809858", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Galagos (Familie)" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133674267", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85076193", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85076193" + } + ], + "authorized_access_point": "Northern lesser bushbaby" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133674267", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12653203", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12653203t" + } + ], + "authorized_access_point": "Galago du Se\u0301ne\u0301gal" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4180985-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041809858", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4180985-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Moholi", + "Galago senegalensis", + "Senegal-Bushbaby" + ], + "authorized_access_point": "Senegalgalago" + }, + { + "md5": "1b50506be9309071d8e2dfc0878173ea", + "pid": "041810252", + "note": [ + { + "label": [ + "Aufeinanderfolge verschiedener gleichartiger Biomoleku\u0308le", + "Fu\u0308r Sequenz im Allgemeinen verwende Reihenfolge, gnd/4507704-6", + "Fu\u0308r Sequenz (Film) verwende Sequenz (Film), gnd/132554891X", + "Fu\u0308r Sequenz (Musik) verwende Sequenz (Musik), gnd/7591624-1", + "Fu\u0308r Sequenz (Informatik) verwende Sequenzieller Algorithmus, gnd/4719581-2", + "Fu\u0308r Sequenz (Mathematik) verwende Zeichenkette, gnd/4067448-4" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4181025-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041810252", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4181025-9", + "source": "GND" + } + ], + "authorized_access_point": "Sequenz (Biochemie)" + }, + { + "md5": "8cc0f1e1288846a699ce14e6e19df885", + "pid": "041815173", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4181517-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041815173", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4181517-8", + "source": "GND" + } + ], + "authorized_access_point": "Singula\u0308re Gleichung" + }, + { + "md5": "0a9d71deff43b2e0967ff58be68ac095", + "pid": "041822218", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Kugel" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134621248", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85126590", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85126590" + } + ], + "authorized_access_point": "Sphere" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134621248", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11981287", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119812876" + } + ], + "authorized_access_point": "Sphe\u0300re" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1299911781", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX543469", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX543469" + } + ], + "authorized_access_point": "Esfera" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4182221-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041822218", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4182221-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Hyperspha\u0308re" + ], + "authorized_access_point": "Spha\u0308re" + }, + { + "md5": "8ed818963de2a28e9e95d5584cefdb4a", + "pid": "04182265X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mechanisches Musikinstrument" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133632823", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85088897", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85088897" + } + ], + "authorized_access_point": "Music box" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133632823", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11940905", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11940905w" + } + ], + "authorized_access_point": "Boi\u0302tes a\u0300 musique" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4182265-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04182265X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4182265-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Musikdose" + ], + "authorized_access_point": "Spieldose" + }, + { + "md5": "b93f254dbf5cb51499ee1ef938c170ba", + "pid": "041823788", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bogen (Architektur)" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334556091", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2021001467", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2021001467" + } + ], + "authorized_access_point": "Ogee arches" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4182378-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041823788", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4182378-3", + "source": "GND" + } + ], + "authorized_access_point": "Spitzbogen" + }, + { + "md5": "e8ea5aada4bd65664e8cbefc77f3e540", + "pid": "041830180", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bauweise" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133989896", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85017717", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85017717" + } + ], + "authorized_access_point": "Building, Stone" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336575867", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85128340", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85128340" + } + ], + "authorized_access_point": "Stonemasonry" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133989896", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11957075", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11957075g" + } + ], + "authorized_access_point": "Construction en pierre" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4183018-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041830180", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4183018-0", + "source": "GND" + } + ], + "authorized_access_point": "Steinbau" + }, + { + "md5": "18ed15a4b83e29cc5a93d5f7a80850ff", + "pid": "041830989", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134237480", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85025933", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85025933" + } + ], + "authorized_access_point": "Ciconiiformes" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333255802", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12293127", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12293127p" + } + ], + "authorized_access_point": "E\u0301chassiers" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134237480", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12259528", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12259528r" + } + ], + "authorized_access_point": "Ciconiiformes" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254372318", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "38774", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/38774" + } + ], + "authorized_access_point": "Trampolieri" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254316930", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "525", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/525" + } + ], + "authorized_access_point": "Ciconiformi" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254490582", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX542045", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX542045" + } + ], + "authorized_access_point": "Ciconiformes" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4183098-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041830989", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4183098-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Schreitvo\u0308gel", + "Gressores", + "Ciconiiformes" + ], + "authorized_access_point": "Stelzvo\u0308gel" + }, + { + "md5": "c5100b7b5b2c0bc1f245316c6d4564f8", + "pid": "041833333", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gesellschafter" + } + ], + "related": [ + { + "authorized_access_point": "Stille Gesellschaft" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134081774", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85122474", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85122474" + } + ], + "authorized_access_point": "Silent partners" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134081774", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11983551", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11983551h" + } + ], + "authorized_access_point": "Bailleurs de fonds" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4183333-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041833333", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4183333-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Stiller Teilhaber" + ], + "authorized_access_point": "Stiller Gesellschafter" + }, + { + "md5": "985c3bc19f8826b94f00aa66a0d857f8", + "pid": "041835662", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113381252X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85128502", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85128502" + } + ], + "authorized_access_point": "Strangling" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113381252X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12491952", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12491952z" + } + ], + "authorized_access_point": "Strangulation" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4183566-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041835662", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4183566-9", + "source": "GND" + } + ], + "authorized_access_point": "Strangulation" + }, + { + "md5": "15475091c2a39f8c63ac5fae1d90e808", + "pid": "041840658", + "note": [ + { + "label": [ + "EC 2.8.2" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Transferasen" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133824757", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2004014824", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2004014824" + } + ], + "authorized_access_point": "Sulfotransferases" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133824757", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12535709", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb125357095" + } + ], + "authorized_access_point": "Sulfotransfe\u0301rases" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336133015", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D015238", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D015238" + } + ], + "authorized_access_point": "Sulfotransferases" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4184065-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041840658", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4184065-3", + "source": "GND" + } + ], + "variant_access_point": [ + "SULTs" + ], + "authorized_access_point": "Sulfotransferasen" + }, + { + "md5": "610d82774e4e0d3fe71e27d9bcf166d8", + "pid": "041841387", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Elektrisches Bauelement" + } + ], + "related": [ + { + "authorized_access_point": "Supraleitung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133689086", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85130585", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85130585" + } + ], + "authorized_access_point": "Superconductors" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133689086", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11979263", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11979263x" + } + ], + "authorized_access_point": "Supraconducteurs" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4184138-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041841387", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4184138-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Superconducting devices", + "Supraleitende Vorrichtung" + ], + "authorized_access_point": "Supraleitendes Bauelement" + }, + { + "md5": "b8ca826690129d85d5fe6d3be0c1c57d", + "pid": "041844513", + "note": [ + { + "label": [ + "Sammelbezeichnung fu\u0308r eine Gegenbewegung zum klassischen Ballett, die seit Mitte der 1970er-Jahre zunehmend an Bedeutung gewonnen hat", + "Einzelne Tanztheater-Produktionen werden als anonyme Werktitel angesetzt, Verweisungen vom Choreographen und ggf. weiteren wichtigen Beteiligten werden gemacht; auch als Oberbegriff fu\u0308r Tanztheaterkompanien zu verwenden" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tanz" + } + ], + "related": [ + { + "authorized_access_point": "Ballett" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4184451-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041844513", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4184451-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Tanzdrama", + "Tanzstu\u0308ck", + "Tanztheaterstu\u0308ck" + ], + "authorized_access_point": "Tanztheater" + }, + { + "md5": "7a9757ccbbc3a38aa97d3c14e0bfd6bb", + "pid": "041844793", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134441231", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85010984", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85010984" + } + ], + "authorized_access_point": "Bags" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134441231", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF14550405", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb14550405f" + } + ], + "authorized_access_point": "Sacs" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4184479-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041844793", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4184479-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Taschen" + ], + "authorized_access_point": "Tasche" + }, + { + "md5": "6f446adf69854d27affc2e7e184d8093", + "pid": "041848020", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Staat" + } + ], + "related": [ + { + "authorized_access_point": "Landeshoheit" + }, + { + "authorized_access_point": "Territorium" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4184802-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041848020", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4184802-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Landesstaat", + "Territorialisierung" + ], + "authorized_access_point": "Territorialstaat" + }, + { + "md5": "801ca160a72277611c12fd55e420fd23", + "pid": "041856325", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Benzolderivate" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134295766", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85135907", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85135907" + } + ], + "authorized_access_point": "Toluene" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134295766", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12365423", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb123654235" + } + ], + "authorized_access_point": "Tolue\u0300ne" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254354751", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "24400", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/24400" + } + ], + "authorized_access_point": "Toluene" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254495630", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX545422", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX545422" + } + ], + "authorized_access_point": "Tolueno" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256264377", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "7803", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_7803" + } + ], + "authorized_access_point": "toluene" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4185632-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041856325", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4185632-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Methylbenzol", + "Toluen" + ], + "authorized_access_point": "Toluol" + }, + { + "md5": "34ca7e27ecffba1168a63e94d0006aef", + "pid": "041856333", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4185633-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041856333", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4185633-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Toluol" + ], + "authorized_access_point": "Toluolderivate" + }, + { + "md5": "ccb8904d236b665a7ec98e1b48923441", + "pid": "041862465", + "note": [ + { + "label": [ + "Ro\u0308misches Reich wird nicht als pleonastisch behandelt" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134137931", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85137947", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85137947" + } + ], + "authorized_access_point": "Triumph" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134137931", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12049670", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb120496708" + } + ], + "authorized_access_point": "Triomphe" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4186246-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041862465", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4186246-6", + "source": "GND" + } + ], + "authorized_access_point": "Triumph" + }, + { + "md5": "003dafac7e4284f2fbb678c92883f81d", + "pid": "041862473", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Denkmal" + }, + { + "authorized_access_point": "Bogen (Architektur)" + }, + { + "authorized_access_point": "Torbau" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113368419X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85006535", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85006535" + } + ], + "authorized_access_point": "Triumphal arches" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113368419X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11977585", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11977585k" + } + ], + "authorized_access_point": "Arcs de triomphe" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254341692", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "15752", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/15752" + } + ], + "authorized_access_point": "Archi di trionfo" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4186247-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041862473", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4186247-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Ehrenbogen" + ], + "authorized_access_point": "Triumphbogen" + }, + { + "md5": "db860da49c35a9dfe082a1ab281c6f6e", + "pid": "04186347X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Truthuhn" + } + ], + "related": [ + { + "authorized_access_point": "Truthuhnrasse" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134370725", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85032143", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85032143" + } + ], + "authorized_access_point": "Cooking (Turkey)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134790775", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85138859", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85138859" + } + ], + "authorized_access_point": "Turkeys" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134370725", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12567282", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12567282z" + } + ], + "authorized_access_point": "Cuisine (dinde. - viande)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134790775", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11967907", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11967907p" + } + ], + "authorized_access_point": "Dindon domestique" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1299911064", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX533616", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX533616" + } + ], + "authorized_access_point": "Pavos" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256266051", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "8016", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_8016" + } + ], + "authorized_access_point": "turkeys" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4186347-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04186347X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4186347-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Puter" + ], + "authorized_access_point": "Truthahn" + }, + { + "md5": "6b6ef600efcf3d18f98895da84502333", + "pid": "041863488", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Pute&oldid=231902473" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fasanenartige" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133670962", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85138859", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85138859" + } + ], + "authorized_access_point": "Turkeys" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133670962", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11967907", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11967907p" + } + ], + "authorized_access_point": "Dindon domestique" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)125626606X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "8016", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_8016" + } + ], + "authorized_access_point": "turkeys" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4186348-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041863488", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4186348-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Meleagris gallopavo", + "Pute", + "Haustruthuhn" + ], + "authorized_access_point": "Truthuhn" + }, + { + "md5": "3577a5aa16977ba9604010c803c3c0dc", + "pid": "041867785", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Umrichter&oldid=245571003" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Stromrichter" + } + ], + "related": [ + { + "authorized_access_point": "Umformer" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133656927", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85041752", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85041752" + } + ], + "authorized_access_point": "Electric inverters" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133656927", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11959005", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11959005s" + } + ], + "authorized_access_point": "Onduleurs (e\u0301lectricite\u0301)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4186778-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041867785", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4186778-6", + "source": "GND" + } + ], + "authorized_access_point": "Umrichter" + }, + { + "md5": "9f46c3040b47dac35dd8ff09a1c394ed", + "pid": "041871189", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schwei\u00dfen" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133880754", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85139630", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85139630" + } + ], + "authorized_access_point": "Underwater welding and cutting" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133880754", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13615612", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13615612p" + } + ], + "authorized_access_point": "Oxycoupage et soudage sous l'eau" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254498338", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX538871", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX538871" + } + ], + "authorized_access_point": "Soldadura subacua\u0301tica" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4187118-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041871189", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4187118-2", + "source": "GND" + } + ], + "authorized_access_point": "Unterwasserschwei\u00dfen" + }, + { + "md5": "ca9356e0539d0d404eb3ec7df0d3a5be", + "pid": "041871286", + "note": [ + { + "label": [ + "Verknu\u0308pfe mit Anwendungsgebiet" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4187128-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041871286", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4187128-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Intoleranz (Medizin)", + "Unvertra\u0308glichkeitsreaktion" + ], + "authorized_access_point": "Unvertra\u0308glichkeit" + }, + { + "md5": "9a9b3af18fc20c5426cf8f14195c6ff4", + "pid": "041873270", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Vakuumfluktuation" + }, + { + "authorized_access_point": "Quantenelektrodynamik" + } + ], + "related": [ + { + "authorized_access_point": "Casimir-Effekt" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133836054", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85141738", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85141738" + } + ], + "authorized_access_point": "Vacuum polarization" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133836054", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12573071", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb125730710" + } + ], + "authorized_access_point": "Polarisation du vide" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4187327-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041873270", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4187327-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Polarisation (Vakuum)" + ], + "authorized_access_point": "Vakuumpolarisation" + }, + { + "md5": "d0e0b92c803203c39b3193606f3cea1e", + "pid": "041874919", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Schiebersteuerung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4187491-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041874919", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4187491-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Ventiltrieb" + ], + "authorized_access_point": "Ventilsteuerung" + }, + { + "md5": "b42e76a9cde46381596e7e73f36485a8", + "pid": "041876938", + "note": [ + { + "label": [ + "SW Verfolgung wird bevorzugt benutzt" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Verfolgung" + }, + { + "authorized_access_point": "Weibliche Verfolgte" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4187693-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041876938", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4187693-3", + "source": "GND" + } + ], + "authorized_access_point": "Verfolgter" + }, + { + "md5": "6255bda70c6adb8aee2f0363cbc8a8f4", + "pid": "041878515", + "note": [ + { + "label": [ + "Verknu\u0308pfe mit Anwendungsgebiet" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134566506", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12468269", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12468269t" + } + ], + "authorized_access_point": "Discours argumentatif" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4187851-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041878515", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4187851-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Verknu\u0308pfung" + ], + "authorized_access_point": "Verkettung" + }, + { + "md5": "b05734e7b9010ca1875d6132228af6d5", + "pid": "041881745", + "note": [ + { + "label": [ + "auch ausserhalb des Rechts als Allgemeinbegriff verwendet" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970602014", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10037167", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10037167" + } + ], + "authorized_access_point": "Verzicht" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4188174-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041881745", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4188174-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Rechtsverzicht", + "Anspruchsverzicht" + ], + "authorized_access_point": "Verzicht" + }, + { + "md5": "d7ca4e1e29df0fd112be3c57ae9f3861", + "pid": "041882229", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bildaufzeichnung" + } + ], + "related": [ + { + "authorized_access_point": "Videokassette" + }, + { + "authorized_access_point": "Bildplatte" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1321561245", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11933779", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11933779d" + } + ], + "authorized_access_point": "Vide\u0301o" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1321561245", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh92003035", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh92003035" + } + ], + "authorized_access_point": "Video recording" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4188222-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041882229", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4188222-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Audiovisuelle Aufzeichnung", + "Audio-visuelle Aufzeichnung", + "Videoaufnahme" + ], + "authorized_access_point": "Videoaufzeichnung" + }, + { + "md5": "330900056f706fc1f1fa1bfbe066a181", + "pid": "041884612", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Vizekanzlerin" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4188461-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041884612", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4188461-9", + "source": "GND" + } + ], + "authorized_access_point": "Vizekanzler" + }, + { + "md5": "e8a3b1ae9f6e1e1939d279fd2dff69cc", + "pid": "04188566X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wirtschaftswissenschaftler" + } + ], + "related": [ + { + "authorized_access_point": "Volkswirtin" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4188566-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04188566X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4188566-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Diplomvolkswirt", + "Nationalo\u0308konom", + "Volkswirtschafter", + "Volkswirtschaftler" + ], + "authorized_access_point": "Volkswirt" + }, + { + "md5": "6da80320ccd561cb536f34bf5b9205c2", + "pid": "041887786", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Genitalkrebs" + }, + { + "authorized_access_point": "Vulvakrankheit" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134590385", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2010010521", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2010010521" + } + ], + "authorized_access_point": "Vulva - Cancer" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1241627908", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D014846", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D014846" + } + ], + "authorized_access_point": "Vulvar Neoplasms" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4188778-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041887786", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4188778-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Carcinoma vulvae", + "Vulvakarzinom" + ], + "authorized_access_point": "Vulvakrebs" + }, + { + "md5": "cc97fffa1018e20aae17f0cf5e9d64d0", + "pid": "041887913", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Drosseln" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133776590", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2009010378", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2009010378" + } + ], + "authorized_access_point": "Fieldfare" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133776590", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12338097", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12338097q" + } + ], + "authorized_access_point": "Grive litorne" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4188791-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041887913", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4188791-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Turdus pilaris", + "Krammetsvogel", + "Ziemer" + ], + "authorized_access_point": "Wacholderdrossel" + }, + { + "md5": "503acd11ac9d2f02ad0be542811d68d7", + "pid": "041889959", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Waldkrankheit" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)967030552", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "15779-0", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/15779-0" + } + ], + "authorized_access_point": "Waldschaden" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4188995-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041889959", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4188995-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Waldzersto\u0308rung (Waldschaden)", + "Baumschaden (Waldschaden)", + "Forstschaden", + "Wald", + "Waldscha\u0308den", + "Forstscha\u0308den" + ], + "authorized_access_point": "Waldschaden" + }, + { + "md5": "5c12ea1a8e5f902bcbc1faed5504fc71", + "pid": "041890353", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schra\u0308mlader" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4189035-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041890353", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4189035-8", + "source": "GND" + } + ], + "authorized_access_point": "Walzenschra\u0308mlader" + }, + { + "md5": "ab74f91f894b1ca24c5d306f7fd04416", + "pid": "041890787", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Grabmal" + } + ], + "related": [ + { + "authorized_access_point": "Epitaph" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4189078-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041890787", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4189078-4", + "source": "GND" + } + ], + "authorized_access_point": "Wandgrabmal" + }, + { + "md5": "4c60e4d43e745917efb4089105bb224c", + "pid": "041891775", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133864058", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13535580", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb135355804" + } + ], + "authorized_access_point": "Bassins de jardins" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4189177-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041891775", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4189177-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Wasserbecken" + ], + "authorized_access_point": "Bassin" + }, + { + "md5": "dcf9d1b72bd5b4678eaed298d693b393", + "pid": "041896807", + "note": [ + { + "label": [ + "Vollsta\u0308ndiges Verzeichnis des Werks (des Lebenswerks oder eines Teils) von Ku\u0308nstlern (RDA AH-007).", + "Verwendet fu\u0308r bildende und darstellende Ku\u0308nstler (Interpreten, Regisseure, Schauspieler) sowie fu\u0308r Komponisten und Architekten bzw. Architekturbu\u0308ros. Sowohl fu\u0308r einzelne Personen wie fu\u0308r Personengruppen. Bei anderen Werkverzeichnissen verwende Bibliografie (RDA AH-007)." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134151365", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh99001388", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh99001388" + } + ], + "authorized_access_point": "Catalogues raisonne\u0301s" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134151365", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12078007", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb120780077" + } + ], + "authorized_access_point": "Catalogues raisonne\u0301s" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4189680-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041896807", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4189680-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Werkkatalog", + "Oeuvrekatalog", + "Oeuvre-Verzeichnis", + "Thematischer Katalog (Formschlagwort)", + "Thematisches Verzeichnis (Formschlagwort)" + ], + "authorized_access_point": "Werkverzeichnis" + }, + { + "md5": "4d71655d2cbc096e015b5a4c307761f4", + "pid": "041898273", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Eintritt (Raumfahrt)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4189827-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041898273", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4189827-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Atmospha\u0308renwiedereintritt", + "Reentry" + ], + "authorized_access_point": "Wiedereintritt" + }, + { + "md5": "18d5a65a7e1dc19b14ab2c6d2ddc07e0", + "pid": "041899849", + "note": [ + { + "label": [ + "W. umfasst den Begriff Wintersport (im Sinne des Breitensports) u. ko\u0308nnte als Wintersport im weiteren Sinne bezeichnet werden" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sporttourismus" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332366708", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18097333", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb18097333m" + } + ], + "authorized_access_point": "Tourisme hivernal" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4189984-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041899849", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4189984-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Wintersport" + ], + "authorized_access_point": "Wintertourismus" + }, + { + "md5": "18f836bccec9f2abd919dff2c9d65cc6", + "pid": "041900804", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Verwaltung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4190080-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041900804", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4190080-7", + "source": "GND" + } + ], + "authorized_access_point": "Wirtschaftsverwaltung" + }, + { + "md5": "d9ba87f2343f588bfa21fd46fe9a1ac7", + "pid": "041901398", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Landhaus" + } + ], + "related": [ + { + "authorized_access_point": "Zweitwohnung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133946550", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85119417", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85119417" + } + ], + "authorized_access_point": "Second homes" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133946550", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11938910", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119389106" + } + ], + "authorized_access_point": "Re\u0301sidences secondaires" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334794960", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16764757", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb167647579" + } + ], + "authorized_access_point": "Datchas" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4190139-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041901398", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4190139-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Datscha (Wochenendhaus)", + "Datsche (Wochenendhaus)" + ], + "authorized_access_point": "Wochenendhaus" + }, + { + "md5": "2671f8ea368b040bfd14e2a1d3495ae9", + "pid": "04190186X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Miete" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4190186-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04190186X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4190186-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Wohnung", + "Wohnraummiete" + ], + "authorized_access_point": "Wohnungsmiete" + }, + { + "md5": "a496fb7b9a838bcb78e5e26f26382b50", + "pid": "041902955", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Wu\u0308nschelrute" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133175478X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85039245", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85039245" + } + ], + "authorized_access_point": "Dowsers" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133175478X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13571198", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13571198z" + } + ], + "authorized_access_point": "Sourciers" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4190295-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041902955", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4190295-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Rutenga\u0308nger", + "Wu\u0308nschelrute" + ], + "authorized_access_point": "Wu\u0308nschelrutenga\u0308nger" + }, + { + "md5": "445140c110b13eb022239a59690556a3", + "pid": "041906683", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133655165", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85021646", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85021646" + } + ], + "authorized_access_point": "Cell division" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133655165", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11958046", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119580464" + } + ], + "authorized_access_point": "Cellules - Division" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133883516", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13622694", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13622694b" + } + ], + "authorized_access_point": "Cellules ve\u0301ge\u0301tales - Division" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1299906753", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX550146", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX550146" + } + ], + "authorized_access_point": "Divisio\u0301n celular" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256273333", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "1413", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_1413" + } + ], + "authorized_access_point": "cell division" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336586273", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D002455", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D002455" + } + ], + "authorized_access_point": "Cell Division" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4190668-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041906683", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4190668-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Zytokinese", + "Cytokinese" + ], + "authorized_access_point": "Zellteilung" + }, + { + "md5": "e7463b0f11c9bd43f803856cd2a4e55c", + "pid": "041907078", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Architektur" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134387849", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13171768", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb131717680" + } + ], + "authorized_access_point": "Constructions a\u0300 plan centre\u0301" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4190707-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041907078", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4190707-3", + "source": "GND" + } + ], + "authorized_access_point": "Zentralbau" + }, + { + "md5": "693f05d94148c1635debdfd62516ab31", + "pid": "041909836", + "type": "bf:Topic", + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256273848", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "14813", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_14813" + } + ], + "authorized_access_point": "teats" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4190983-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041909836", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4190983-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Mamille", + "Papilla mammae", + "Milchdru\u0308senpapille" + ], + "authorized_access_point": "Zitze" + }, + { + "md5": "50832a6f7f7034ee6fdb3bd7da9b0f72", + "pid": "041910842", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Zu\u0308nder" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134040016", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11976165", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11976165m" + } + ], + "authorized_access_point": "Allumage" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4191084-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041910842", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4191084-9", + "source": "GND" + } + ], + "authorized_access_point": "Zu\u0308ndung" + }, + { + "md5": "7622da94b0b520bb723f43d33a248546", + "pid": "041911199", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Vo\u0308gel" + } + ], + "related": [ + { + "authorized_access_point": "Vogelzug" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134219709", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2009008921", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2009008921" + } + ], + "authorized_access_point": "Migratory birds" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134219709", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12225354", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb122253545" + } + ], + "authorized_access_point": "Oiseaux migrateurs" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1312527749", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "38120", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/38120" + } + ], + "authorized_access_point": "Uccelli migratori" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4191119-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041911199", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4191119-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Zugvogel" + ], + "authorized_access_point": "Zugvo\u0308gel" + }, + { + "md5": "d81433481aa94190b40a8f7ed029af1f", + "pid": "041911598", + "note": [ + { + "label": [ + "in der Regel als USW verwendet" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134038208", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh99004944", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh99004944" + } + ], + "authorized_access_point": "Composition" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134038208", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11975822", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119758221" + } + ], + "authorized_access_point": "Composition" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4191159-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041911598", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4191159-3", + "source": "GND" + } + ], + "authorized_access_point": "Zusammensetzung" + }, + { + "md5": "9664a4f567e039399d70f73366f432eb", + "pid": "041911849", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4191184-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041911849", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4191184-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Zwangla\u0308ufigkeit", + "Zwangsla\u0308ufige Bewegung" + ], + "authorized_access_point": "Zwanglauf" + }, + { + "md5": "b379be6393f8b4a8b2186641775d6770", + "pid": "041912888", + "note": [ + { + "label": [ + "Benutzt fu\u0308r u\u0308berwiegend eigengenutzte Wohnungen; gemietete Wohnungen s. unter Ferienwohnung" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Freizeitwohnen" + } + ], + "related": [ + { + "authorized_access_point": "Ferienwohnung" + }, + { + "authorized_access_point": "Wochenendhaus" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133479376X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85119417", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85119417" + } + ], + "authorized_access_point": "Second homes" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133479376X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11938910", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119389106" + } + ], + "authorized_access_point": "Re\u0301sidences secondaires" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970607334", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10062702", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10062702" + } + ], + "authorized_access_point": "Zweitwohnung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4191288-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041912888", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4191288-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Freizeitwohnung", + "Zweitwohnsitz" + ], + "authorized_access_point": "Zweitwohnung" + }, + { + "md5": "f4113641978bff2e7669d411a016b4ab", + "pid": "041913272", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Volkstanz" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4191327-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041913272", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4191327-9", + "source": "GND" + } + ], + "authorized_access_point": "Zwiefacher" + }, + { + "md5": "d4c65df471a034d6927c5eef5911273f", + "pid": "041913574", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Volksglaube" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4191357-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041913574", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4191357-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Rauhnacht", + "Rauchna\u0308chte", + "Raunacht", + "Rauna\u0308chte", + "Unterna\u0308chte", + "Zwo\u0308lfna\u0308chte", + "Zwo\u0308lf heilige Na\u0308chte", + "Zwo\u0308lften" + ], + "authorized_access_point": "Rauhna\u0308chte" + }, + { + "md5": "be080d8eb4d8066ec90f8e4d3c357a34", + "pid": "041917413", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fachzeitschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4191741-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041917413", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4191741-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Ethnologische Zeitschrift" + ], + "authorized_access_point": "Vo\u0308lkerkundliche Zeitschrift" + }, + { + "md5": "e27bebc2b2d603de573256ed120b75c8", + "pid": "041918754", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Computerarchitektur" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133728634", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh88006799", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh88006799" + } + ], + "authorized_access_point": "Reduced instruction set computers" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134337671", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh90005948", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh90005948" + } + ], + "authorized_access_point": "RISC microprocessors" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133728634", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12151658", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12151658v" + } + ], + "authorized_access_point": "Ordinateurs a\u0300 jeu d'instructions re\u0301duit" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134337671", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12473275", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12473275r" + } + ], + "authorized_access_point": "RISC (microprocesseurs)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4191875-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041918754", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4191875-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Reduced instruction set computer", + "Rechner mit reduziertem Befehlsvorrat" + ], + "authorized_access_point": "RISC" + }, + { + "md5": "326dec08b80472ef36e5d1dac7861705", + "pid": "041920279", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Niveaufla\u0308che" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4192027-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041920279", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4192027-2", + "source": "GND" + } + ], + "authorized_access_point": "Fu\u0308nfhundert-Millibar-Fla\u0308che" + }, + { + "md5": "521d2a0f6e98e3e23b5ec02fb5345561", + "pid": "041920287", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Niveaufla\u0308che" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4192028-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041920287", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4192028-4", + "source": "GND" + } + ], + "authorized_access_point": "Achthundertfu\u0308nfzig-Millibar-Fla\u0308che" + }, + { + "md5": "efd278b13e0c05b3c6f0ffe681cdde2b", + "pid": "041924878", + "note": [ + { + "label": [ + "Nicht synonym mit Multilineare Algebra" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113389495X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85018808", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85018808" + } + ], + "authorized_access_point": "Calculus of tensors" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113389495X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11931685", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11931685k" + } + ], + "authorized_access_point": "Calcul tensoriel" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254362584", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "31130", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/31130" + } + ], + "authorized_access_point": "Calcolo tensoriale" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254494138", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX525919", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX525919" + } + ], + "authorized_access_point": "Ca\u0301lculo tensorial" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4192487-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041924878", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4192487-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Tensorkalku\u0308l" + ], + "authorized_access_point": "Tensorrechnung" + }, + { + "md5": "43b616b42bcfe16611de8b4dea56cf70", + "pid": "041928326", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Neues Zeitalter" + }, + { + "authorized_access_point": "New Age" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4192832-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041928326", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4192832-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Aquariuszeitalter", + "Wassermann-Zeitalter", + "Age of aquarius" + ], + "authorized_access_point": "Wassermannzeitalter" + }, + { + "md5": "428299a2c2c3cbfa4601267818855954", + "pid": "041928547", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134195974", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85105031", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85105031" + } + ], + "authorized_access_point": "Porpoises" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134195974", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12163944", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12163944p" + } + ], + "authorized_access_point": "Marsouins" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4192854-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041928547", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4192854-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Phocoenidae", + "Phocaenidae" + ], + "authorized_access_point": "Schweinswale (Familie)" + }, + { + "md5": "a58eb0db69773f9a6ec4efc3fdb8ec7e", + "pid": "04193458X", + "note": [ + { + "label": [ + "Neben der Bedeutung \"Distanzfunktion\"/\"Abstandsfunktion\" wird auch der metrische Tensor aus der Differentialgeometrie als Metrik bezeichnet." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Linienelement" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134610475", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85084442", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85084442" + } + ], + "authorized_access_point": "Metric system" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134610475", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11941225", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11941225t" + } + ], + "authorized_access_point": "Syste\u0300me me\u0301trique" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4193458-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04193458X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4193458-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Distanzfunktion", + "Abstandsfunktion" + ], + "authorized_access_point": "Metrik (Mathematik)" + }, + { + "md5": "41c91c08a5f0ded9dff7d8e75e86ebd0", + "pid": "041935659", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Corporate Design" + }, + { + "authorized_access_point": "Unternehmenskultur" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134080468", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85032900", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85032900" + } + ], + "authorized_access_point": "Corporate image" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134080468", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11983326", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11983326r" + } + ], + "authorized_access_point": "Entreprises - Image" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970542151", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10060812", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10060812" + } + ], + "authorized_access_point": "Corporate Identity" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4193565-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041935659", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4193565-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Unternehmensidentita\u0308t", + "CI", + "Firmenimage (Corporate Identity)", + "Unternehmensperso\u0308nlichkeit" + ], + "authorized_access_point": "Corporate Identity" + }, + { + "md5": "7096c6487a67a632c505372405b226f6", + "pid": "041943236", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Emissionsverringerung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4194323-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041943236", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4194323-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Schadstoff", + "Schadstoffminderung" + ], + "authorized_access_point": "Schadstoffverringerung" + }, + { + "md5": "2d6e46bdbbd3ea9c3bb6d79890d5a72a", + "pid": "041944240", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Konferenz" + }, + { + "authorized_access_point": "Internationale Veranstaltung" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966784510", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "19711-0", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/19711-0" + } + ], + "authorized_access_point": "Internationale Konferenz" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4194424-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041944240", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4194424-0", + "source": "GND" + } + ], + "authorized_access_point": "Internationale Konferenz" + }, + { + "md5": "a38230721d31fd824152f647ade395a5", + "pid": "041954327", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schifffahrt" + }, + { + "authorized_access_point": "Personenverkehr" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966898923", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "18589-4", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/18589-4" + } + ], + "authorized_access_point": "Passagierschifffahrt" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4195432-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041954327", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4195432-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Passagierschifffahrt", + "Personenschifffahrt", + "Passagierschifffahrt", + "Personenschifffahrt" + ], + "authorized_access_point": "Fahrgastschifffahrt" + }, + { + "md5": "d47fbabd6b16533394ddb14e59b29db7", + "pid": "041954378", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133681328", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11976149", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11976149c" + } + ], + "authorized_access_point": "Hylobatide\u0301s" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4195437-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041954378", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4195437-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Hylobatidae", + "Langarmaffen" + ], + "authorized_access_point": "Gibbons (Familie)" + }, + { + "md5": "41695d9958eec5289213c1cb289423fb", + "pid": "041961080", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4196108-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041961080", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4196108-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Philosophiegeschichtsschreibung" + ], + "authorized_access_point": "Philosophiegeschichte (Fach)" + }, + { + "md5": "8f7c41a028af2d13b4787f34f4aa5280", + "pid": "041962923", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tanz" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133867901", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85003648", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85003648" + } + ], + "authorized_access_point": "Allemandes" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134387296", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85003647", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85003647" + } + ], + "authorized_access_point": "Allemande" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133867901", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13557889", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13557889z" + } + ], + "authorized_access_point": "Allemandes (musique)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134387296", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13169979", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13169979x" + } + ], + "authorized_access_point": "Allemande (danse)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254394192", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "65506", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/65506" + } + ], + "authorized_access_point": "Allemanda" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4196292-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041962923", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4196292-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Allemanda" + ], + "authorized_access_point": "Allemande" + }, + { + "md5": "1427eb0232e72d0ef86348075c5e0594", + "pid": "041966716", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134075464", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85119931", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85119931" + } + ], + "authorized_access_point": "Seminarians" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134075464", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11982450", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11982450n" + } + ], + "authorized_access_point": "Se\u0301minaristes" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)129991084X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX532029", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX532029" + } + ], + "authorized_access_point": "Seminaristas" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4196671-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041966716", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4196671-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Alumnus (Theologie)", + "Seminarist", + "Priesterseminarist", + "Priesteramtskandidat" + ], + "authorized_access_point": "Alumne" + }, + { + "md5": "6588f4d5d1e831c727e12fdacea52f36", + "pid": "041969596", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "O\u0308konomische Theorie der Politik" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)967055202", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "11167-2", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/11167-2" + } + ], + "authorized_access_point": "O\u0308konomische Theorie der Demokratie" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4196959-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041969596", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4196959-5", + "source": "GND" + } + ], + "authorized_access_point": "O\u0308konomische Theorie der Demokratie" + }, + { + "md5": "7990d3983ad83a6fbcbac810fe20008f", + "pid": "041975278", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134045018", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11977041", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11977041k" + } + ], + "authorized_access_point": "Vocalisation (phone\u0301tique)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4197527-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041975278", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4197527-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Vokalisation" + ], + "authorized_access_point": "Vokalisierung" + }, + { + "md5": "cc09ea952483bdb781ca819d19b65e3d", + "pid": "041977009", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kraftstoff" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133693911", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85037815", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85037815" + } + ], + "authorized_access_point": "Diesel fuels" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133693911", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11981884", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11981884t" + } + ], + "authorized_access_point": "Carburants diesel" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254376836", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "43453", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/43453" + } + ], + "authorized_access_point": "Gasolio" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966722108", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "14214-4", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/14214-4" + } + ], + "authorized_access_point": "Dieselkraftstoff" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4197700-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041977009", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4197700-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Dieselo\u0308l" + ], + "authorized_access_point": "Dieselkraftstoff" + }, + { + "md5": "08e21c3999f50b5fe2f7a1cbd39eaa2a", + "pid": "041981804", + "note": [ + { + "label": [ + "Gattung d. Familie Kiemenschlitzaale (Synbranchidae)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333488068", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85131603", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85131603" + } + ], + "authorized_access_point": "Synbranchus" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333488068", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17758460", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb177584608" + } + ], + "authorized_access_point": "Synbranchus" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4198180-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041981804", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4198180-7", + "source": "GND" + } + ], + "authorized_access_point": "Synbranchus" + }, + { + "md5": "947ef2545a188b3590b46db476476f37", + "pid": "041987489", + "note": [ + { + "label": [ + "Produktbezeichnung" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Whisky" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4198748-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041987489", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4198748-2", + "source": "GND" + } + ], + "authorized_access_point": "Bourbon (Getra\u0308nk)" + }, + { + "md5": "c548330c8aa0d19ca08ef5dabdd8e3db", + "pid": "041992555", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134320841", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12426400", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb124264003" + } + ], + "authorized_access_point": "Re\u0301sistance aux collisions" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4199255-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041992555", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4199255-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Kollisionsvermeidung (Technik)" + ], + "authorized_access_point": "Kollisionsschutz" + }, + { + "md5": "0a1cb6f8f845028da5be01d82d695dde", + "pid": "041995724", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Polizeibeamter" + } + ], + "related": [ + { + "authorized_access_point": "Verdeckte Ermittlerin" + }, + { + "authorized_access_point": "V-Mann" + }, + { + "authorized_access_point": "Verdeckte Ermittlung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4199572-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)041995724", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4199572-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Under-Cover-Agent", + "Undercover investigator" + ], + "authorized_access_point": "Verdeckter Ermittler" + }, + { + "md5": "1b5e5c3f5afeb57941f5a78a8dd8814f", + "pid": "042003458", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Grafiker" + } + ], + "related": [ + { + "authorized_access_point": "Zeichnerin" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133636462", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11944016", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119440161" + } + ], + "authorized_access_point": "Dessinateurs" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4200345-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042003458", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4200345-3", + "source": "GND" + } + ], + "authorized_access_point": "Zeichner" + }, + { + "md5": "50264b443c946033242a7066017a1f60", + "pid": "042017246", + "note": [ + { + "label": [ + "Verknu\u0308pfe mit Anwendungsgebiet; z.B. Seeschiff" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bewachung" + } + ], + "related": [ + { + "authorized_access_point": "Wa\u0308chter" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4201724-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042017246", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4201724-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Wache" + ], + "authorized_access_point": "Wachdienst" + }, + { + "md5": "6a316ec57d78ef7cbb8590233fc16c16", + "pid": "042017793", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4201779-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042017793", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4201779-8", + "source": "GND" + } + ], + "authorized_access_point": "Markierung (Chemie)" + }, + { + "md5": "2d980cf14f52a80a2ddd2d10b7788183", + "pid": "042020646", + "note": [ + { + "label": [ + "Modell zur Erfassung der strategischen Gro\u0308ssen einer Strategie und Bewertung der finanziellen Auswirkungen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4202064-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042020646", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4202064-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Strategische Kosten- und Ergebnisplanung" + ], + "authorized_access_point": "SKEP" + }, + { + "md5": "e9895eebb505fef5c5ba8eaed4ae3db9", + "pid": "042022622", + "note": [ + { + "label": [ + "Literarische Gattung" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Literatur" + } + ], + "related": [ + { + "authorized_access_point": "Utopie" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134096054", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85040350", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85040350" + } + ], + "authorized_access_point": "Dystopias" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134096054", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17718158", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb177181582" + } + ], + "authorized_access_point": "Dystopies" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254348263", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "20474", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/20474" + } + ], + "authorized_access_point": "Distopia" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254405437", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX527178", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX527178" + } + ], + "authorized_access_point": "Utopi\u0301as" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4202262-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042022622", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4202262-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Negative Utopie", + "Dystopie (Literatur)" + ], + "authorized_access_point": "Anti-Utopie" + }, + { + "md5": "8b2c18d19417077f8222032e92be43cc", + "pid": "042033276", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "related": [ + { + "authorized_access_point": "Kapitalanlage" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4203327-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042033276", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4203327-5", + "source": "GND" + } + ], + "authorized_access_point": "INVESTOR (Programm)" + }, + { + "md5": "4b5b818638dd320188d4ae1ab775e0b4", + "pid": "042044529", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Stadt" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4204452-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042044529", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4204452-2", + "source": "GND" + } + ], + "authorized_access_point": "Ackerbu\u0308rgerstadt" + }, + { + "md5": "509f4f5ae979a0fad8adec1996098942", + "pid": "042056349", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Artist" + } + ], + "related": [ + { + "authorized_access_point": "Seiltanz" + }, + { + "authorized_access_point": "Seilta\u0308nzerin" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333938861", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85001286", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85001286" + } + ], + "authorized_access_point": "Aerialists" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333938861", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12651407", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb126514078" + } + ], + "authorized_access_point": "Funambules" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4205634-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042056349", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4205634-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Hochseilartist" + ], + "authorized_access_point": "Seilta\u0308nzer" + }, + { + "md5": "a5ea175434206a37e3d1d6f562f7759a", + "pid": "042066107", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Genauigkeit" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4206610-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042066107", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4206610-4", + "source": "GND" + } + ], + "authorized_access_point": "Positioniergenauigkeit" + }, + { + "md5": "85136fce5acf273b2f0f5ce3b8ec3907", + "pid": "042074150", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133693458", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85021644", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85021644" + } + ], + "authorized_access_point": "Cell death" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133693458", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11981727", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11981727q" + } + ], + "authorized_access_point": "Mort cellulaire" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254319336", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "1251", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/1251" + } + ], + "authorized_access_point": "Morte cellulare" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254505474", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX550134", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX550134" + } + ], + "authorized_access_point": "Muerte celular" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336587970", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D016923", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D016923" + } + ], + "authorized_access_point": "Cell Death" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4207415-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042074150", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4207415-0", + "source": "GND" + } + ], + "authorized_access_point": "Zelltod" + }, + { + "md5": "dc5997cd43ec545e9608fb6a81ec6231", + "pid": "042081033", + "note": [ + { + "label": [ + "Seit dem Beweis durch Louis de Branges de Bourcia 1985 ist die Bieberbach-Vermutung auch als Satz von de Branges bekannt." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4208103-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042081033", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4208103-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Bieberbachsche Vermutung", + "Satz von de Branges" + ], + "authorized_access_point": "Bieberbach-Vermutung" + }, + { + "md5": "6689f7e49b67ee8b8ff6fcc67c84047a", + "pid": "04208394X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Extension (Medizin)" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134234295", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12255417", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12255417v" + } + ], + "authorized_access_point": "Traction (orthope\u0301die)" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1241625662", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D014143", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D014143" + } + ], + "authorized_access_point": "Traction" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4208394-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04208394X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4208394-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Zug (Medizin)" + ], + "authorized_access_point": "Traktion (Medizin)" + }, + { + "md5": "1d9944ee1b80ddba55d119e754497e0c", + "pid": "042086280", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gedruckte Schaltung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134727879", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85106738", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85106738" + } + ], + "authorized_access_point": "Printed circuits" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134727879", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11936916", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11936916s" + } + ], + "authorized_access_point": "Circuits imprime\u0301s" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4208628-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042086280", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4208628-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Mehrlagenleiterplatte", + "Multilayer (Mehrschichtleiterplatte)", + "Vielschichtleiterplatte" + ], + "authorized_access_point": "Mehrschichtleiterplatte" + }, + { + "md5": "63b2f9b69791b96981345dada30f6f24", + "pid": "042092175", + "note": [ + { + "label": [ + "Benutzt fu\u0308r d. Produkt" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134452365", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85138931", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85138931" + } + ], + "authorized_access_point": "Turning (Lathe work)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134452365", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF14597781", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb14597781w" + } + ], + "authorized_access_point": "Tournage sur bois" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4209217-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042092175", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4209217-6", + "source": "GND" + } + ], + "authorized_access_point": "Drechslerarbeit" + }, + { + "md5": "0cfbdf4aaae2322bcd339e4724507d01", + "pid": "042098386", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schadstoffbelastung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134310439", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh00002519", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00002519" + } + ], + "authorized_access_point": "Effect of ozone on" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134310439", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12397591", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb123975911" + } + ], + "authorized_access_point": "Effets de l'ozone" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1065910479", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "19482-3", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/19482-3" + } + ], + "authorized_access_point": "Ozonbelastung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4209838-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042098386", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4209838-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Ozon" + ], + "authorized_access_point": "Ozonbelastung" + }, + { + "md5": "8944fd27d379f25cd1b2e5b679785cca", + "pid": "042100445", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Mastopathie&oldid=243852289" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Benutze Kombination \"Mamma AND Krankheit\" fu\u0308r weitere Treffer" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Brustkrankheit" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1335338195", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85016686", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85016686" + } + ], + "authorized_access_point": "Breast - Fibrocystic disease" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)124161198X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D005348", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D005348" + } + ], + "authorized_access_point": "Fibrocystic Breast Disease" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4210044-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042100445", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4210044-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Cystische Mastopathie", + "Fibrocystische Mastopathie", + "Fibro\u0308s-zystische Mastopathie", + "Fibrozystische Brusterkrankung", + "Fibrozystische Mastopathie", + "Mammadysplasie", + "Mastopathia chronica cystica", + "Mastopathia fibrosa cystica", + "Zystenmamma", + "Zystische Brusterkrankung" + ], + "authorized_access_point": "Mastopathie" + }, + { + "md5": "5ac35003859de5e233c10070df27f536", + "pid": "042100917", + "note": [ + { + "label": [ + "Programm zur Analyse des Jahresabschlusses einer Kapitalgesellschaft" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "related": [ + { + "authorized_access_point": "Bilanzanalyse" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4210091-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042100917", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4210091-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Jahresabschlussanalyse als Planungs- und Entscheidungsrechnung (Programm)", + "JASPER, Vollversion 2.12" + ], + "authorized_access_point": "JASPER (Programm)" + }, + { + "md5": "ab46f9d9bf71eadd47b7a9456e52ad37", + "pid": "042104068", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Teig" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134799179", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15118262", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb151182628" + } + ], + "authorized_access_point": "Cuisine (pa\u0302te feuillete\u0301e)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134799160", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15118244", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15118244b" + } + ], + "authorized_access_point": "Pa\u0302te feuillete\u0301e" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4210406-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042104068", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4210406-3", + "source": "GND" + } + ], + "authorized_access_point": "Bla\u0308tterteig" + }, + { + "md5": "7105ee2e50e6ac810fbef1ecc7587b3e", + "pid": "042104378", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "related": [ + { + "authorized_access_point": "Fertigungskontrolle" + }, + { + "authorized_access_point": "Simulation" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4210437-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042104378", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4210437-3", + "source": "GND" + } + ], + "authorized_access_point": "FERSIM" + }, + { + "md5": "3d149de018874b50cef10bc46248ea15", + "pid": "042108152", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Polymorphismus" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133881483", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85038052", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85038052" + } + ], + "authorized_access_point": "Dimorphism (Plants)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133881483", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13617434", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13617434x" + } + ], + "authorized_access_point": "Dimorphisme chez les plantes" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4210815-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042108152", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4210815-9", + "source": "GND" + } + ], + "authorized_access_point": "Dimorphismus" + }, + { + "md5": "c79672afe42ed490b27ed8164374a1cf", + "pid": "042108160", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Dimorphismus" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4210816-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042108160", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4210816-0", + "source": "GND" + } + ], + "authorized_access_point": "Saisondimorphismus" + }, + { + "md5": "fb1aac0f10f987a853f5ba36c4cd9de9", + "pid": "04211277X", + "note": [ + { + "label": [ + "Sprache in Indonesien" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133936830", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85017675", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85017675" + } + ], + "authorized_access_point": "Bugis language" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133936830", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11935314", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119353146" + } + ], + "authorized_access_point": "Bugis (langue)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4211277-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04211277X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4211277-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Buginesisch" + ], + "authorized_access_point": "Bugi-Sprache" + }, + { + "md5": "b70a826e34bd4f5dec18146e51ced993", + "pid": "042123909", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kennlinie" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4212390-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042123909", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4212390-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Isentrope" + ], + "authorized_access_point": "Adiabate" + }, + { + "md5": "3585db47d0e4832351128a604f81f226", + "pid": "042124093", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4212409-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042124093", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4212409-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Kadazan (Sprache)" + ], + "authorized_access_point": "Kadajan" + }, + { + "md5": "daf667e1d220788673cf59dfb2a7db8f", + "pid": "042137268", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Array" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4213726-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042137268", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4213726-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Sensoranordnung", + "Matrixsensor", + "Sensormatrix" + ], + "authorized_access_point": "Sensor-Array" + }, + { + "md5": "41eb72552fcece6e14436e19d3c2c941", + "pid": "042137519", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Insolationsverwitterung" + } + ], + "related": [ + { + "authorized_access_point": "Grus" + }, + { + "authorized_access_point": "Vergrusung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4213751-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042137519", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4213751-2", + "source": "GND" + } + ], + "authorized_access_point": "Abgrusung" + }, + { + "md5": "d8b2aeb0426fad718f9d5297858f471c", + "pid": "042140048", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Film" + } + ], + "related": [ + { + "authorized_access_point": "Kinderfilm" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133626386", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11936861", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11936861b" + } + ], + "authorized_access_point": "Films pour la jeunesse" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)125434165X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "15718", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/15718" + } + ], + "authorized_access_point": "Film per ragazzi" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970561717", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10043579", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10043579" + } + ], + "authorized_access_point": "Jugendfilm" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4214004-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042140048", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4214004-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Jugendfilme" + ], + "authorized_access_point": "Jugendfilm" + }, + { + "md5": "54adf26e95d1a513cf1da65633a7ab6e", + "pid": "042142237", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kartenauswertung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4214223-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042142237", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4214223-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Kartenmessung" + ], + "authorized_access_point": "Kartometrie" + }, + { + "md5": "63313ec47049e6b4c015f105c12277b6", + "pid": "042147670", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Programmiersystem" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4214767-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042147670", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4214767-0", + "source": "GND" + } + ], + "authorized_access_point": "BEPSYS" + }, + { + "md5": "5642abd1576a9f9b65ade96dc1a8d227", + "pid": "042150876", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kapuzineraffenartige" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333261160", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16716962", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16716962w" + } + ], + "authorized_access_point": "Ate\u0300le noir" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4215087-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042150876", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4215087-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Ateles paniscus", + "Koata" + ], + "authorized_access_point": "Schwarzer Klammeraffe" + }, + { + "md5": "2d76726c79ba915f24ca6573f9f3f5ec", + "pid": "042152089", + "note": [ + { + "label": [ + "Als Management Buyout bezeichnet man die Unternehmensvera\u0308u\u00dferung an Gescha\u0308ftsfu\u0308hrer oder Vorstandsmitglieder des betreffenden Unternehmens." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Unternehmenskauf" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134171064", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85080351", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85080351" + } + ], + "authorized_access_point": "Management buyouts" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134171064", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12113560", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12113560s" + } + ], + "authorized_access_point": "Reprise d'entreprise par les salarie\u0301s" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254458883", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX4911373", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX4911373" + } + ], + "authorized_access_point": "Compra de empresas por sus gestores" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4215208-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042152089", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4215208-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Management Buy Out", + "MBO", + "MBI", + "Management Buyin", + "Management Buy In" + ], + "authorized_access_point": "Management Buyout" + }, + { + "md5": "48a28a8d136b43effc42c15c83885113", + "pid": "042154316", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Phasenumwandlung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4215431-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042154316", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4215431-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Glasu\u0308bergang", + "Erweichung (Glasumwandlung)", + "Glasbildung", + "Glasprozess" + ], + "authorized_access_point": "Glasumwandlung" + }, + { + "md5": "7202b965c7948d396c93fbc64284e00e", + "pid": "042159458", + "note": [ + { + "label": [ + "4 nahe verwandte indigene Gruppen in d. Bundesstaaten Oaxaca u. Veracruz" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Indianer" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4215945-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042159458", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4215945-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Mije", + "Ayo\u0308o\u0308k", + "Ayook", + "Ayuc", + "Ayuujk", + "Ayuuk", + "Guichiovian", + "Tapijualapane-Mixe" + ], + "authorized_access_point": "Mixe" + }, + { + "md5": "5bd2687b5e9d0bbc7385943bcbfd3257", + "pid": "042161258", + "note": [ + { + "label": [ + "Internet - http://www.juedische-allgemeine.de/article/view/id/14708", + "Wikipedia - https://de.wikipedia.org/wiki/Haftara" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Im ju\u0308dischen Ritus der Synagoge der an Sabbaten, Feier- und Fasttagen an die Vorlesung aus dem Pentateuch sich anschlie\u00dfende Abschnitt aus den Propheten" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Judentum" + } + ], + "related": [ + { + "authorized_access_point": "Liturgie" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134589379", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "n81026486", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/names/n81026486" + } + ], + "authorized_access_point": "Haftarot" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134589379", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13537030", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13537030p" + } + ], + "authorized_access_point": "Hapt\u0323arah" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4216125-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042161258", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4216125-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Haftarah", + "Haft\u0323arah", + "Haphtara", + "Haftara banawi", + "Haft\u0323arah ba-navi", + "Haft\u0323arot" + ], + "authorized_access_point": "Haftara" + }, + { + "md5": "696e060199b306932b6189bf71438c6c", + "pid": "04216818X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Vo\u0308lkerkundliche Ausstellung" + } + ], + "related": [ + { + "authorized_access_point": "Kolonialausstellung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134559305", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2006001275", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2006001275" + } + ], + "authorized_access_point": "Human zoos" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134559305", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF14406121", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb144061213" + } + ], + "authorized_access_point": "Exhibitions ethnographiques" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4216818-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04216818X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4216818-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Vo\u0308lkerschau" + ], + "authorized_access_point": "Vo\u0308lkerkundliche Schaustellung" + }, + { + "md5": "f592dc093974cd4383f111c26d118de5", + "pid": "042180805", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Messumformer" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134708769", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85134779", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85134779" + } + ], + "authorized_access_point": "Thermocouples" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134708769", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11979701", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11979701r" + } + ], + "authorized_access_point": "Thermocouples" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4218080-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042180805", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4218080-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Thermokonverter" + ], + "authorized_access_point": "Thermoumformer" + }, + { + "md5": "2376e203642b73bf1fc2009170fb052d", + "pid": "042183154", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Handwerk" + } + ], + "related": [ + { + "authorized_access_point": "Klempnerhandwerk" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134558260", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85103551", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85103551" + } + ], + "authorized_access_point": "Plumbing" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134558260", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11933155", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11933155r" + } + ], + "authorized_access_point": "Plomberie" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966697308", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "13181-5", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/13181-5" + } + ], + "authorized_access_point": "Bauinstallation" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4218315-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042183154", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4218315-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Installationshandwerk", + "SHK-Handwerk", + "Sanita\u0308r-, Heizungs-, Klimatechnikhandwerk", + "Sanita\u0308rhandwerk" + ], + "authorized_access_point": "Installateurhandwerk" + }, + { + "md5": "6f628ca25f51065b2d5f9ac6306c1e74", + "pid": "042187494", + "note": [ + { + "label": [ + "Als Homonymenzusatz bei Personenschlagwo\u0308rtern zugelassen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Erfinder" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331759846", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85147449", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85147449" + } + ], + "authorized_access_point": "Women inventors" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331759846", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16742339", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16742339c" + } + ], + "authorized_access_point": "Inventrices" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4218749-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042187494", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4218749-7", + "source": "GND" + } + ], + "authorized_access_point": "Erfinderin" + }, + { + "md5": "824d6f74cd360703b6a52fb0e15c0b12", + "pid": "042189748", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Therapie" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133731988", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh99005037", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh99005037" + } + ], + "authorized_access_point": "Adjuvant treatment" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133731988", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12185143", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb121851431" + } + ], + "authorized_access_point": "Traitement adjuvant" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4218974-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042189748", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4218974-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Supportive Therapie", + "Unterstu\u0308tzende Therapie", + "Begleitende Therapie", + "Begleittherapie", + "Adjuvanstherapie", + "Supportivtherapie" + ], + "authorized_access_point": "Adjuvante Therapie" + }, + { + "md5": "6c884a383c3aed56fe945cdbf3ebd5b1", + "pid": "04219007X", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4219007-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04219007X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4219007-1", + "source": "GND" + } + ], + "authorized_access_point": "Anzeigengestaltung" + }, + { + "md5": "b6815efa28c2ffcf38f1328732bcbe66", + "pid": "042193958", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Flasche" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333328788", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh93006012", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh93006012" + } + ], + "authorized_access_point": "Canteens (Beverage containers)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333328788", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13743057", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb137430579" + } + ], + "authorized_access_point": "Gourdes (re\u0301cipients)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4219395-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042193958", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4219395-3", + "source": "GND" + } + ], + "authorized_access_point": "Feldflasche" + }, + { + "md5": "07a6f5bbd25802a62d8f1855d418405d", + "pid": "042195810", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Freistu\u0308ck" + } + ], + "related": [ + { + "authorized_access_point": "Pflichtexemplarrecht" + }, + { + "authorized_access_point": "Zensurexemplar" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134054874", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85075741", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85075741" + } + ], + "authorized_access_point": "Legal deposit of books, etc." + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134054874", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11978766", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119787663" + } + ], + "authorized_access_point": "De\u0301po\u0302t le\u0301gal" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4219581-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042195810", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4219581-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Pflichtstu\u0308ck" + ], + "authorized_access_point": "Pflichtexemplar" + }, + { + "md5": "8a0d18175523eb90ec8b2bcb5e03affe", + "pid": "042203023", + "note": [ + { + "label": [ + "Von R. Thurnwald begru\u0308ndete, sozialwissenschaftlich ausgerichtete Forschungsrichtung in der Ethnologie, deren Grundlage wie in der britischen Social Anthropology der Funktionalismus ist" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Soziologie" + } + ], + "related": [ + { + "authorized_access_point": "Sozialanthropologie" + }, + { + "authorized_access_point": "Kulturanthropologie" + }, + { + "authorized_access_point": "Ethnosoziologe" + }, + { + "authorized_access_point": "Ethnosoziologin" + }, + { + "authorized_access_point": "Sozialethnologie" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133267612X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2013001662", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2013001662" + } + ], + "authorized_access_point": "Ethnosociology" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133267612X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17972469", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17972469p" + } + ], + "authorized_access_point": "Ethnosociologie" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)971397511", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10042835", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10042835" + } + ], + "authorized_access_point": "Ethnologie" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4220302-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042203023", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4220302-8", + "source": "GND" + } + ], + "authorized_access_point": "Ethnosoziologie" + }, + { + "md5": "021ca00bd04b57ecf3a4c8cdb0dcba22", + "pid": "042203856", + "note": [ + { + "label": [ + "Art. 7,4-6 GG" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schulrecht" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4220385-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042203856", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4220385-5", + "source": "GND" + } + ], + "authorized_access_point": "Privatschulfreiheit" + }, + { + "md5": "e3f5764f0693bf6a7423e82474a41695", + "pid": "042208408", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Beamter" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4220840-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042208408", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4220840-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Probezeitbeamter" + ], + "authorized_access_point": "Beamter auf Probe" + }, + { + "md5": "81703fe60ff33d33d0a55bdd03311703", + "pid": "042213010", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Relief (Geografie)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4221301-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042213010", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4221301-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Erosionsform" + ], + "authorized_access_point": "Abtragungsform" + }, + { + "md5": "e3e6dba088b614149da8bc22530fb067", + "pid": "042221234", + "note": [ + { + "label": [ + "Zeitalter, das den histor. Prozess abschlie\u00dft, meist ein \"drittes\" Zeitalter" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Geschichtsphilosophie" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4222123-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042221234", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4222123-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Letztphase", + "Ende der Geschichte", + "The ends of history", + "Posthistorisches Zeitalter", + "Nachgeschichte", + "Geschichte" + ], + "authorized_access_point": "Posthistoire" + }, + { + "md5": "6ce947184d15a82c223f221a177b24ea", + "pid": "042230284", + "note": [ + { + "label": [ + "Nicht-indoarisches Volk in Su\u0308dindien" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134208367", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85039403", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85039403" + } + ], + "authorized_access_point": "Dravidians" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134208367", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12201689", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb122016898" + } + ], + "authorized_access_point": "Dravidiens" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4223028-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042230284", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4223028-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Dravida", + "Drawiden" + ], + "authorized_access_point": "Drawida" + }, + { + "md5": "d8c09f9d9d3522a9bf80a97262160972", + "pid": "042237688", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Erfolg" + } + ], + "related": [ + { + "authorized_access_point": "Unternehmensergebnis" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134694016", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85129589", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85129589" + } + ], + "authorized_access_point": "Success in business" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134694016", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12004278", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12004278w" + } + ], + "authorized_access_point": "Succe\u0300s dans les affaires" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4223768-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042237688", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4223768-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Unternehmen" + ], + "authorized_access_point": "Unternehmenserfolg" + }, + { + "md5": "b9f08eb9680cf208e36eb795d0c2d054", + "pid": "042241839", + "note": [ + { + "label": [ + "Der deutsche Wortschatz - https://www.dwds.de/wb/Linguist" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Philologe" + } + ], + "related": [ + { + "authorized_access_point": "Linguistin" + }, + { + "authorized_access_point": "Linguistik" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133932878", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85077231", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85077231" + } + ], + "authorized_access_point": "Linguists" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133932878", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11933934", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119339340" + } + ], + "authorized_access_point": "Linguistes" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254371966", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "38524", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/38524" + } + ], + "authorized_access_point": "Linguisti" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254456627", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX527503", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX527503" + } + ], + "authorized_access_point": "Lingu\u0308istas" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4224183-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042241839", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4224183-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Sprachwissenschaftler", + "Sprachforscher" + ], + "authorized_access_point": "Linguist" + }, + { + "md5": "4e5f54403dc8f1aa412bd4c868cd90b8", + "pid": "042250234", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wolfsmilchgewa\u0308chse" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134648898", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2017004395", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2017004395" + } + ], + "authorized_access_point": "Jatropha curcas" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134648898", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15542948", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15542948h" + } + ], + "authorized_access_point": "Jatropha curcas" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)125624919X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "16254", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_16254" + } + ], + "authorized_access_point": "Jatropha curcas" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4225023-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042250234", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4225023-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Jatropha curcas" + ], + "authorized_access_point": "Purgiernuss" + }, + { + "md5": "0d03945e853468703b30979127d84391", + "pid": "042259177", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Disposition (Medizin)" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134614748", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85037625", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85037625" + } + ], + "authorized_access_point": "Disease susceptibility" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134614748", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12255741", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12255741j" + } + ], + "authorized_access_point": "Pre\u0301disposition (me\u0301decine)" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1241636885", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D004198", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D004198" + } + ], + "authorized_access_point": "Disease Susceptibility" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4225917-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042259177", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4225917-4", + "source": "GND" + } + ], + "authorized_access_point": "Pra\u0308disposition" + }, + { + "md5": "eda7342dab0b3242f2b7e7c339b30595", + "pid": "042266289", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Cytometrie" + }, + { + "authorized_access_point": "Durchflussmessung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134175647", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85049287", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85049287" + } + ], + "authorized_access_point": "Flow cytometry" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134175647", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12121528", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb121215281" + } + ], + "authorized_access_point": "Cytome\u0301trie de flux" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254321098", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "1795", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/1795" + } + ], + "authorized_access_point": "Citometria a flusso" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254421912", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX547339", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX547339" + } + ], + "authorized_access_point": "Citometri\u0301a de flujo" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1241598517", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D005434", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D005434" + } + ], + "authorized_access_point": "Flow Cytometry" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4226628-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042266289", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4226628-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Flow cytometry", + "Durchflusszytometrie", + "Flowzytometrie" + ], + "authorized_access_point": "Durchflusscytometrie" + }, + { + "md5": "1e98a8f50e3c47dd7c09bab2c72277b9", + "pid": "042277558", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4227755-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042277558", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4227755-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Badjau-Sprache", + "Sama-Sprache (Austronesische Sprache)" + ], + "authorized_access_point": "Badjaw-Sprache" + }, + { + "md5": "b9ac248efd2914da188408988931b847", + "pid": "042294118", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Markenverletzung" + } + ], + "related": [ + { + "authorized_access_point": "Produktpiraterie" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1027738478", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10080065", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10080065" + } + ], + "authorized_access_point": "Produktpiraterie" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4229411-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042294118", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4229411-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Markenfa\u0308lschung", + "Trademark piracy", + "Trademark counterfeiting", + "Piraterie de marque" + ], + "authorized_access_point": "Markenpiraterie" + }, + { + "md5": "20b8a33bbc560f38324bebd75ecdf22b", + "pid": "042313414", + "note": [ + { + "label": [ + "Fu\u0308hrung durch Museen, zur Besichtigung von Sehenswu\u0308rdigkeiten und sonstigen Einrichtungen aller Art" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Fremdenfu\u0308hrer" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134267916", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85122383", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85122383" + } + ], + "authorized_access_point": "Sightseeing business" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134267916", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12308374", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb123083748" + } + ], + "authorized_access_point": "Visites touristiques" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254411127", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX534646", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX534646" + } + ], + "authorized_access_point": "Empresas turi\u0301sticas" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4231341-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042313414", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4231341-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Ga\u0308stefu\u0308hrung", + "Besucher", + "Fu\u0308hrung (Besucher)", + "Fremdenfu\u0308hrung", + "Museumsfu\u0308hrung" + ], + "authorized_access_point": "Besucherfu\u0308hrung" + }, + { + "md5": "ba1f993c7687bc49fa7a8201d874e8e1", + "pid": "04231416X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Vo\u0308gel" + }, + { + "authorized_access_point": "Scha\u0308dling" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133637655", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85014297", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85014297" + } + ], + "authorized_access_point": "Bird pests" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133637655", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11944219", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11944219m" + } + ], + "authorized_access_point": "Oiseaux nuisibles" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256254495", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "5243", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_5243" + } + ], + "authorized_access_point": "noxious birds" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4231416-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04231416X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4231416-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Scha\u0308dliche Vo\u0308gel" + ], + "authorized_access_point": "Schadvo\u0308gel" + }, + { + "md5": "73739a85c681394a8dfbf290b96d4b3e", + "pid": "042319986", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bildungso\u0308konomie" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133922295", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11931253", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11931253v" + } + ], + "authorized_access_point": "Enseignement supe\u0301rieur - Aspect e\u0301conomique" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4231998-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042319986", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4231998-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Hochschule", + "Hochschulwesen", + "Hochschulo\u0308konomik" + ], + "authorized_access_point": "Hochschulo\u0308konomie" + }, + { + "md5": "4d77d9f233c0f2729072ea5d471b749f", + "pid": "042325897", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Granulozyt" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133811159", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85012133", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85012133" + } + ], + "authorized_access_point": "Basophils" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133811159", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12486075", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb124860754" + } + ], + "authorized_access_point": "Basophiles" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336596848", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D001491", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D001491" + } + ], + "authorized_access_point": "Basophils" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4232589-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042325897", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4232589-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Basophiler", + "Granulocytus basophilicus" + ], + "authorized_access_point": "Basophiler Granulozyt" + }, + { + "md5": "794b3edf37176ed79da4c4bd610913ab", + "pid": "042325900", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Epithelzelle" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4232590-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042325900", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4232590-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Beta-Zelle (Hypophysenvorderlappen)", + "Adenohypophyse" + ], + "authorized_access_point": "Basophile Zelle" + }, + { + "md5": "2737dde3cd7b5c74034aeeb522669ec6", + "pid": "042349877", + "note": [ + { + "label": [ + "In der Regel fu\u0308r historische Vorga\u0308nge verwendet", + "In Verknu\u0308pfung mit anderen Schlagwo\u0308rtern i.d.R. nicht permutierend" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133693466", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85022510", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85022510" + } + ], + "authorized_access_point": "Change" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133693466", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13319201", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13319201c" + } + ], + "authorized_access_point": "Changement (philosophie)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4234987-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042349877", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4234987-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Wandlung (Wandel)" + ], + "authorized_access_point": "Wandel" + }, + { + "md5": "543a56e0ba96221fce0d4672dfa6e732", + "pid": "042349885", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4234988-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042349885", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4234988-6", + "source": "GND" + } + ], + "authorized_access_point": "Wandel (Motiv)" + }, + { + "md5": "535a540449850e4ac59813914ef6cfc6", + "pid": "042362466", + "note": [ + { + "label": [ + "Sampling bezeichnet eine musikalische Kopierpraxis, bei der eine digitale Kopie eines Klangs in einen neuen musikalischen Zusammenhang gestellt wird." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134372469", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh96010851", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh96010851" + } + ], + "authorized_access_point": "Sampling (Sound)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134372469", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12572200", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12572200s" + } + ], + "authorized_access_point": "Synthe\u0300se sonore" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4236246-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042362466", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4236246-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Sound sampling" + ], + "authorized_access_point": "Sampling (Musik)" + }, + { + "md5": "c317d7bfe77c7b9cbd95d37488746052", + "pid": "042363527", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Betriebshaftpflichtversicherung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134126891", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85067017", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85067017" + } + ], + "authorized_access_point": "Products liability insurance" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134126891", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12039818", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12039818h" + } + ], + "authorized_access_point": "Assurance de responsabilite\u0301 civile des produits" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4236352-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042363527", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4236352-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Produkthaftungsversicherung", + "Produzentenhaftpflichtversicherung" + ], + "authorized_access_point": "Produkthaftpflichtversicherung" + }, + { + "md5": "bd286ebba414d20bf8e652e087a269e6", + "pid": "042374480", + "note": [ + { + "label": [ + "Krankheitssymptom ohne organisches Korrelat" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Funktionssto\u0308rung" + } + ], + "related": [ + { + "authorized_access_point": "Organische Sto\u0308rung" + }, + { + "authorized_access_point": "Psychosomatische Sto\u0308rung" + }, + { + "authorized_access_point": "Neurasthenie" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133690696", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11980105", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11980105h" + } + ], + "authorized_access_point": "Troubles fonctionnels (me\u0301decine)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4237448-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042374480", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4237448-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Somatisierungssto\u0308rung", + "Somatoforme Sto\u0308rung", + "Somatoforme autonome Funktionssto\u0308rung", + "Parafunktion", + "Psychogene Dysfunktion" + ], + "authorized_access_point": "Funktionelle Sto\u0308rung" + }, + { + "md5": "0df1a3e08c4a69b73ec3dd45fa795afa", + "pid": "042380480", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4238048-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042380480", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4238048-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Mina-Sprache (Westindonesisch)", + "Muna (Sprache)", + "Mina (Sprache, Westindonesisch)" + ], + "authorized_access_point": "Muna-Sprache" + }, + { + "md5": "f77d87a1a9e8ca553601f17f134dfacb", + "pid": "042402239", + "note": [ + { + "label": [ + "Verknu\u0308pfe mit Anwendungsgebiet" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134832060", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11979799", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119797999" + } + ], + "authorized_access_point": "Honne\u0302tete\u0301" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4240223-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042402239", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4240223-2", + "source": "GND" + } + ], + "authorized_access_point": "Korrektheit" + }, + { + "md5": "05168bbc132cd82bb5aea4289a93c8fa", + "pid": "042402883", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4240288-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042402883", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4240288-8", + "source": "GND" + } + ], + "authorized_access_point": "Friedliche Revolution in der DDR (Motiv)" + }, + { + "md5": "12f1bbd56ff71cb4f935b8e8827be305", + "pid": "042416795", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sprachverstehen" + }, + { + "authorized_access_point": "Textverarbeitung (Psycholinguistik)" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133936881", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85111686", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85111686" + } + ], + "authorized_access_point": "Reading comprehension" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133936881", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12303769", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12303769k" + } + ], + "authorized_access_point": "Lecture - Aspect cognitif" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4241679-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042416795", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4241679-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Verstehen", + "Textversta\u0308ndnis", + "Leseverstehen (Muttersprache)" + ], + "authorized_access_point": "Textverstehen" + }, + { + "md5": "e8b545f7c5c4e1f3ca7b6dba5580035d", + "pid": "042422825", + "note": [ + { + "label": [ + "Benutzt sowohl im engeren Sinne (Materialbestandsplanung) als auch im weiteren Sinne" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334875782", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85067678", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85067678" + } + ], + "authorized_access_point": "Inventory control" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334875782", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11933321", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119333210" + } + ], + "authorized_access_point": "Gestion des stocks" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4242282-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042422825", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4242282-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Materialbestand", + "Materialbestandsplanung" + ], + "authorized_access_point": "Bestandsplanung" + }, + { + "md5": "ef86ffc3a667e4ba30912f1cf08ef983", + "pid": "042425875", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Trainingsplanung" + } + ], + "related": [ + { + "authorized_access_point": "Jahrestrainingsplan" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4242587-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042425875", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4242587-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Periodisierung (Training)" + ], + "authorized_access_point": "Trainingsperiodisierung" + }, + { + "md5": "ed53bef1f80d774f36afb98ed5010a7f", + "pid": "042427045", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckwerk" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133158230X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18015044", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb180150449" + } + ], + "authorized_access_point": "Tire\u0301s a\u0300 part" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4242704-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042427045", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4242704-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Sonderabdruck" + ], + "authorized_access_point": "Sonderdruck" + }, + { + "md5": "f8b9a8732f5afc44b820b14da8eadcc5", + "pid": "042433517", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=RoRo-Schiff&oldid=233657111" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Frachtschiffe, die bewegliche Gu\u0308ter transportieren, die auf die Schiffe gefahren werden (RoRo-Verfahren)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Frachtschiff" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4243351-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042433517", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4243351-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Ro-ro-Schiff", + "RoRo-Schiff", + "Roll-on-/Roll-off-Schiff", + "RORO ship" + ], + "authorized_access_point": "Roll-on-roll-off-Schiff" + }, + { + "md5": "0a1a673b3f6eed9da665ea00ed836f71", + "pid": "042438799", + "type": "bf:Topic", + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)971407800", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10036866", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10036866" + } + ], + "authorized_access_point": "Notunterkunft" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4243879-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042438799", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4243879-2", + "source": "GND" + } + ], + "authorized_access_point": "Lager (Unterkunft)" + }, + { + "md5": "a253dc963b6cddf37cba9c62e456213e", + "pid": "042439086", + "note": [ + { + "label": [ + "Verknu\u0308pfe ggf. mit Sprachbezeichnung u. hier nicht permutierender Wortart: z.B. Griechisch / Substantiv / telo\u0304ne\u0304s" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4243908-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042439086", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4243908-5", + "source": "GND" + } + ], + "variant_access_point": [ + "\u03c4\u03b5\u03bb\u03c9\u0301\u03bd\u03b7\u03c2" + ], + "authorized_access_point": "telo\u0304ne\u0304s" + }, + { + "md5": "ad30b0b0c86c934e93e5d24f77b7be33", + "pid": "042447690", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4244769-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042447690", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4244769-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Orak Lawoi\u02be-Sprache" + ], + "authorized_access_point": "Urak Lawoi\u02be-Sprache" + }, + { + "md5": "e00a03d16d5f656f14e00aac10b658d9", + "pid": "04245395X", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134007892", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85109450", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85109450" + } + ], + "authorized_access_point": "Quantity (Philosophy)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134007892", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11965167", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11965167v" + } + ], + "authorized_access_point": "Quantite\u0301 (philosophie)" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)97058346X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10044683", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10044683" + } + ], + "authorized_access_point": "Quantita\u0308t" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4245395-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04245395X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4245395-1", + "source": "GND" + } + ], + "authorized_access_point": "Quantita\u0308t" + }, + { + "md5": "ee83e7b5e8d1f16bbb68c0924ce801ca", + "pid": "042466199", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113455026X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85052608", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85052608" + } + ], + "authorized_access_point": "Future, The, in literature" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134550278", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh99001312", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh99001312" + } + ], + "authorized_access_point": "Future in art" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4246619-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042466199", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4246619-2", + "source": "GND" + } + ], + "authorized_access_point": "Zukunft (Motiv)" + }, + { + "md5": "e7cf97061b45c4f068761c371d1a5e5a", + "pid": "042479770", + "note": [ + { + "label": [ + "Brasilian. indigene Gruppe" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Indianer" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134334915", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12466779", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb124667791" + } + ], + "authorized_access_point": "Wari' (Indiens)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4247977-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042479770", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4247977-0", + "source": "GND" + } + ], + "authorized_access_point": "Pakaa\u0301 nova" + }, + { + "md5": "e76b68efb59f5999074bafa39eb640a6", + "pid": "042486386", + "note": [ + { + "label": [ + "Computergestu\u0308tztes Modellsystem zur Berechnung von Agrarfaktor- und -produktpreisen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Preisinformationssystem" + } + ], + "related": [ + { + "authorized_access_point": "Agrarpreis" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4248638-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042486386", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4248638-5", + "source": "GND" + } + ], + "authorized_access_point": "PRESET" + }, + { + "md5": "44fc7e32d65529e252f7e3a915934be6", + "pid": "042491010", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4249101-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042491010", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4249101-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Sample-and-hold-Schaltung", + "Abtast-halte-Schaltung" + ], + "authorized_access_point": "Abtast- und Haltekreis" + }, + { + "md5": "bae08ff6e1b7a85dafbff6a09c786c0a", + "pid": "042496675", + "note": [ + { + "label": [ + "Benutzt fu\u0308r finanzwirtschaftl. Statistik, nicht fu\u0308r Geld u. Kredit" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wirtschaftsstatistik" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966744160", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "11534-1", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/11534-1" + } + ], + "authorized_access_point": "Finanzstatistik" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4249667-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042496675", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4249667-6", + "source": "GND" + } + ], + "authorized_access_point": "Finanzstatistik" + }, + { + "md5": "fd97708dbc965d89a7b4b275236507bf", + "pid": "042496896", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gewa\u0308sserausbau" + }, + { + "authorized_access_point": "Naturnahe Gestaltung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134708971", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13745579", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13745579g" + } + ], + "authorized_access_point": "Rives - Ame\u0301nagement" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4249689-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042496896", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4249689-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Naturnaher Gewa\u0308sserbau" + ], + "authorized_access_point": "Naturnaher Gewa\u0308sserausbau" + }, + { + "md5": "bcbdf2b61a67f1b85be2a62593d3e753", + "pid": "042496918", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Renaturierung (O\u0308kologie)" + }, + { + "authorized_access_point": "Rekultivierung" + }, + { + "authorized_access_point": "Naturnahe Pflege" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4249691-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042496918", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4249691-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Naturnaher Ausbau", + "Naturnahe Umgestaltung" + ], + "authorized_access_point": "Naturnahe Gestaltung" + }, + { + "md5": "b5935dd403bae1022accaf8004c251b6", + "pid": "04251729X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sonnenbarsche (Familie)" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333375859", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85123609", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85123609" + } + ], + "authorized_access_point": "Smallmouth bass" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333375859", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17800584", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17800584r" + } + ], + "authorized_access_point": "Black-bass a\u0300 petite bouche" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4251729-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04251729X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4251729-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Micropterus dolomieui" + ], + "authorized_access_point": "Schwarzbarsch" + }, + { + "md5": "30b8af12cd9bb45053592a336e1cb26e", + "pid": "04252184X", + "note": [ + { + "label": [ + "Kunstzentrum mit Ateliers, Veranstaltungsort fu\u0308r Theaterspiel, Produktionssta\u0308tten", + "Kein OB fu\u0308r Wohnha\u0308user von Ku\u0308nstlern. Hierfu\u0308r benutze neben der architektonischen Gattungsbezeichnung Haus, Villa, Gartenhaus etc. gegebenenfalls Atelierhaus oder Literarische Sta\u0308tte" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kulturgeba\u0308ude" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133799965", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12447905", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12447905v" + } + ], + "authorized_access_point": "Re\u0301sidences d'artistes" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4252184-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04252184X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4252184-1", + "source": "GND" + } + ], + "authorized_access_point": "Ku\u0308nstlerhaus" + }, + { + "md5": "581e323287e4a1a253e7c5d6c7cd12b1", + "pid": "042536367", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Naturheilverfahren" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4253636-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042536367", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4253636-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Autoregulative Therapie" + ], + "authorized_access_point": "Regulationstherapie" + }, + { + "md5": "67c090fb8aa22a2f6cee689340a14027", + "pid": "042552192", + "note": [ + { + "label": [ + "Scha\u0308tzverfahren der empirischen Sozialforschung, bei denen Auskunftspersonen Personen bzw. Sachverhalte anhand einer vorgegebenen Skala beurteilen. Verknu\u0308pfe mit Anwendungsgebiet." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Skalierung" + }, + { + "authorized_access_point": "Ranking" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1027503195", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10080932", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10080932" + } + ], + "authorized_access_point": "Rating" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4255219-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042552192", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4255219-9", + "source": "GND" + } + ], + "authorized_access_point": "Rating" + }, + { + "md5": "6ad0080257a6e7d44974711657dcd5a4", + "pid": "042556740", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113360269X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12453839", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb124538394" + } + ], + "authorized_access_point": "Tourne\u0301es (arts du spectacle)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4255674-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042556740", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4255674-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Tournee" + ], + "authorized_access_point": "Gastspiel" + }, + { + "md5": "7a7d19d4c923875971652a45a794d606", + "pid": "042573254", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4257325-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042573254", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4257325-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Teilchen" + ], + "authorized_access_point": "Beweglichkeit (Physik)" + }, + { + "md5": "5834389a2e4da9ca0e8fee638f58d95f", + "pid": "042578205", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Widerstand" + }, + { + "authorized_access_point": "Widerstandska\u0308mpferin" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134491964", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13537085", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13537085z" + } + ], + "authorized_access_point": "Re\u0301sistants" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4257820-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042578205", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4257820-6", + "source": "GND" + } + ], + "authorized_access_point": "Widerstandska\u0308mpfer" + }, + { + "md5": "73bb656890257ba636eb3ade024c89c0", + "pid": "042586208", + "note": [ + { + "label": [ + "Westmalaiopolynes. Sprache auf (Zentral-)Sulawesi, Kaili-Pomona" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4258620-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042586208", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4258620-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Kaili", + "Palu" + ], + "authorized_access_point": "Ledo" + }, + { + "md5": "d11307a98c1f4a14f55c01f44864aac8", + "pid": "042612292", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Drosseln" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134326912", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85125035", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85125035" + } + ], + "authorized_access_point": "Song thrush" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134326912", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12443231", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12443231h" + } + ], + "authorized_access_point": "Grive musicienne" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4261229-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042612292", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4261229-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Turdus philomelos" + ], + "authorized_access_point": "Singdrossel" + }, + { + "md5": "67e4f618a17d852546fb234bbdca3fcd", + "pid": "042616727", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ra\u0308umliche Verteilung" + } + ], + "related": [ + { + "authorized_access_point": "Tiefenprofilmessung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134129041", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12043931", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12043931r" + } + ], + "authorized_access_point": "Distribution verticale" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4261672-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042616727", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4261672-4", + "source": "GND" + } + ], + "authorized_access_point": "Tiefenverteilung" + }, + { + "md5": "6510e08153a49ea1a336b6e139a0cbf4", + "pid": "042625025", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Pflanzen" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133929443", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85099785", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85099785" + } + ], + "authorized_access_point": "Perennials" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133929443", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11932972", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119329729" + } + ], + "authorized_access_point": "Plantes vivaces" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254408150", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX544340", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX544340" + } + ], + "authorized_access_point": "Plantas vivaces" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4262502-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042625025", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4262502-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Perennierende Pflanzen" + ], + "authorized_access_point": "Ausdauernde Pflanzen" + }, + { + "md5": "f2bc2b65f987c1e597f919f94a3ca9a8", + "pid": "042627222", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134188870", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85043175", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85043175" + } + ], + "authorized_access_point": "Enggano language" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134188870", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12146429", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12146429q" + } + ], + "authorized_access_point": "Enggano (langue)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4262722-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042627222", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4262722-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Enggano-Sprache", + "Enggano (Sprache)" + ], + "authorized_access_point": "Engganesisch" + }, + { + "md5": "1da534933675b7650042f83317ecbb0a", + "pid": "04264044X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Ostozeanisch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4264044-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04264044X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4264044-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Mikronesisch" + ], + "authorized_access_point": "Mikronesische Sprachen" + }, + { + "md5": "6f59b6d6cbf9135b62861551319bbb41", + "pid": "042645212", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134760205", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85134851", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85134851" + } + ], + "authorized_access_point": "Thickness measurement" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134760205", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12493536", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb124935363" + } + ], + "authorized_access_point": "E\u0301paisseur - Mesure" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4264521-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042645212", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4264521-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Filmdicke" + ], + "authorized_access_point": "Schichtdicke" + }, + { + "md5": "ad4ecfa39f8acd3ef3e679540ff077d4", + "pid": "042653304", + "note": [ + { + "label": [ + "Anlageform am Geldmarkt ohne Wertpapiercharakter" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4265330-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042653304", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4265330-7", + "source": "GND" + } + ], + "authorized_access_point": "Geldmarktbuchforderung" + }, + { + "md5": "a7a3e3f0541025413980fc4efa01c036", + "pid": "04266702X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "U\u0308bergangsmetallkomplexe" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4266702-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04266702X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4266702-1", + "source": "GND" + } + ], + "authorized_access_point": "Rutheniumkomplexe" + }, + { + "md5": "31b32b499594874bf5339777d4bc5819", + "pid": "042667208", + "note": [ + { + "label": [ + "Als Homonymenzusatz bei Personenschlagworten zugelassen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Verlag" + }, + { + "authorized_access_point": "Verleger" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134507925", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh92005004", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh92005004" + } + ], + "authorized_access_point": "Women editors" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331604567", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85147695", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85147695" + } + ], + "authorized_access_point": "Women publishers" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134507925", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13505351", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13505351c" + } + ], + "authorized_access_point": "E\u0301ditrices" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331604567", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13505351", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13505351c" + } + ], + "authorized_access_point": "E\u0301ditrices" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4266720-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042667208", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4266720-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Verlagsleiterin" + ], + "authorized_access_point": "Verlegerin" + }, + { + "md5": "ed5237924acf8ef954567434c96afa08", + "pid": "042707870", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113459996X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12502627", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12502627g" + } + ], + "authorized_access_point": "Or comme valeur de placement" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4270787-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042707870", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4270787-0", + "source": "GND" + } + ], + "authorized_access_point": "Goldreserve" + }, + { + "md5": "65e55981eed4b97165303334675220e8", + "pid": "042720133", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4272013-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042720133", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4272013-8", + "source": "GND" + } + ], + "authorized_access_point": "Zellaufschluss" + }, + { + "md5": "8ce9b0e953e132712e09ea6cb68089ae", + "pid": "042725739", + "note": [ + { + "label": [ + "Handeln auf der Grundlage von Zweckma\u0308\u00dfigkeit. Oft abwertend im Sinn von \"charakterlosem Verhalten\" verwendet." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Politische Ethik" + } + ], + "related": [ + { + "authorized_access_point": "Pragmatismus" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1068404876", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "30005-0", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/30005-0" + } + ], + "authorized_access_point": "Opportunismus" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970577095", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10053773", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10053773" + } + ], + "authorized_access_point": "Opportunismus" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4272573-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042725739", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4272573-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Pragmatismus" + ], + "authorized_access_point": "Opportunismus" + }, + { + "md5": "5f44615d1d422735dc6c5973cf0c9a68", + "pid": "042728622", + "note": [ + { + "label": [ + "Benutzt fu\u0308r Musik" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Musiker" + } + ], + "related": [ + { + "authorized_access_point": "Solist" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332757650", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16949658", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16949658h" + } + ], + "authorized_access_point": "Virtuoses (musique)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4272862-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042728622", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4272862-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Kammervirtuose" + ], + "authorized_access_point": "Virtuose" + }, + { + "md5": "174d9b0d7ee26c6aa5ac27f1169b2d97", + "pid": "042731437", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schaltverhalten" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4273143-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042731437", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4273143-4", + "source": "GND" + } + ], + "authorized_access_point": "Einschaltverhalten" + }, + { + "md5": "cdabbdedd419820f50f6052c72049d13", + "pid": "042731887", + "note": [ + { + "label": [ + "Benutzt, soweit im Ausland lebend" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausla\u0308ndischer Student" + }, + { + "authorized_access_point": "Lateinamerikaner" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134492170", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85074931", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85074931" + } + ], + "authorized_access_point": "Latin American students" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134492170", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17148865", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17148865v" + } + ], + "authorized_access_point": "E\u0301tudiants latino-ame\u0301ricains" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4273188-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042731887", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4273188-4", + "source": "GND" + } + ], + "authorized_access_point": "Lateinamerikanischer Student" + }, + { + "md5": "f16899eecbe3ada6b688d5f3d84d832b", + "pid": "042740983", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Thyristor" + }, + { + "authorized_access_point": "Abschaltbarer Leistungshalbleiter" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4274098-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042740983", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4274098-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Feldgesteuerter Thyristor", + "FTD", + "SI-Thyristor", + "Bipolarer Gridistor" + ], + "authorized_access_point": "FCT" + }, + { + "md5": "dc0e29b7475787d6b94e068c5e1e1df5", + "pid": "042749298", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Krebs (Medizin)" + }, + { + "authorized_access_point": "Thoraxtumor" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134574444", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2010008992", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2010008992" + } + ], + "authorized_access_point": "Chest - Cancer" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1241624984", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D013899", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D013899" + } + ], + "authorized_access_point": "Thoracic Neoplasms" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4274929-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042749298", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4274929-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Thorax (Medizin)", + "Thoraxkarzinom", + "Thoraxcarcinom", + "Brustkorb", + "Brustorgan", + "Brustkorbkrebs" + ], + "authorized_access_point": "Thoraxkrebs" + }, + { + "md5": "517c17edeead32950b6dd90eb7222b3f", + "pid": "04275206X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zelle" + } + ], + "related": [ + { + "authorized_access_point": "Osteoklast" + }, + { + "authorized_access_point": "Osteozyt" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133798454", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12442115", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12442115r" + } + ], + "authorized_access_point": "Oste\u0301oblastes" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4275206-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04275206X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4275206-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Cellula osteoblastica", + "Osteoplast" + ], + "authorized_access_point": "Osteoblast" + }, + { + "md5": "8684b2b14a7beb67cced17b5aa241ebc", + "pid": "042755255", + "note": [ + { + "label": [ + "Gattung der Buntbarsche" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Buntbarsche" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133396207X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh92000995", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh92000995" + } + ], + "authorized_access_point": "Tylochromis" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133396207X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17801991", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17801991c" + } + ], + "authorized_access_point": "Tylochromis" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4275525-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042755255", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4275525-6", + "source": "GND" + } + ], + "authorized_access_point": "Tylochromis" + }, + { + "md5": "88852d51adbc499e4ed8f2d01b60f26a", + "pid": "04276243X", + "note": [ + { + "label": [ + "Als o\u0308ffentliche Ordnung bezeichnet man die Gesamtheit au\u00dferrechtlicher ungeschriebener Regeln fu\u0308r das Verhalten des Einzelnen in der O\u0308ffentlichkeit, deren Beachtung nach den jeweils herrschenden Anschauungen fu\u0308r ein geordnetes staatsbu\u0308rgerliches Zusammenleben unerla\u0308sslich ist." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134595816", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85108741", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85108741" + } + ], + "authorized_access_point": "Public policy" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134595816", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11972065", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11972065c" + } + ], + "authorized_access_point": "Ordre public" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970607997", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10047519", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10047519" + } + ], + "authorized_access_point": "o\u0308ffentliche Ordnung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4276243-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04276243X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4276243-1", + "source": "GND" + } + ], + "authorized_access_point": "O\u0308ffentliche Ordnung" + }, + { + "md5": "9987f7988fdd610b5137f9b6a7f6fcd1", + "pid": "042763568", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4276356-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042763568", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4276356-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Kommandant (Lagerkommandant)" + ], + "authorized_access_point": "Lagerkommandant" + }, + { + "md5": "4ed9f107f4a19baabe96da0b7163c6b4", + "pid": "042765315", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fertigung" + } + ], + "related": [ + { + "authorized_access_point": "Fertigbauteil" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4276531-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042765315", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4276531-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Vorfabrikation" + ], + "authorized_access_point": "Vorfertigung" + }, + { + "md5": "685c4c4e914551e2747450cbc396c53f", + "pid": "042773539", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Proteine" + } + ], + "related": [ + { + "authorized_access_point": "Rekombinante DNS" + }, + { + "authorized_access_point": "Recombinasen" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133738346", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh90005744", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh90005744" + } + ], + "authorized_access_point": "Recombinant proteins" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133738346", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12242267", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12242267x" + } + ], + "authorized_access_point": "Prote\u0301ines recombine\u0301es" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331727316", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D011994", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D011994" + } + ], + "authorized_access_point": "Recombinant Proteins" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4277353-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042773539", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4277353-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Rekombinante Substanz", + "Hybrid-Protein", + "Rekombiniertes Protein", + "Fusionsprotein" + ], + "authorized_access_point": "Rekombinantes Protein" + }, + { + "md5": "8b988065a4d8f8e971754176655d10d9", + "pid": "042777089", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Araliengewa\u0308chse" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134235577", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85000324", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85000324" + } + ], + "authorized_access_point": "Acanthopanax senticosus" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134235577", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12258006", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12258006t" + } + ], + "authorized_access_point": "Eleutherococcus senticosus" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4277708-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042777089", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4277708-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Eleutherococcus senticosus", + "Acanthopanax senticosus", + "Eleukokk", + "Taigawurzel", + "Teufelsbusch", + "Sibirischer Ginseng" + ], + "authorized_access_point": "Stachelpanax" + }, + { + "md5": "d6cc3f732f9eea5ea74beacd937af57f", + "pid": "042798477", + "note": [ + { + "label": [ + "Art der Kapuzinerartigen Affen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kapuzineraffenartige" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333261721", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85021586", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85021586" + } + ], + "authorized_access_point": "Cebus apella" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333261721", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16244425", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16244425k" + } + ], + "authorized_access_point": "Sajou apelle" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4279847-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042798477", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4279847-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Apella (Zoologie)", + "Faunaffe", + "Cebus apella" + ], + "authorized_access_point": "Gehaubter Kapuziner" + }, + { + "md5": "7e620e1fc511be003c58faee2b4055fd", + "pid": "042798760", + "note": [ + { + "label": [ + "Benutzt fu\u0308r Ostdeutsche, soweit ausserhalb Deutschland lebend" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Deutsche" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332874002", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17701910", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17701910c" + } + ], + "authorized_access_point": "Allemands de l'Est" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4279876-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042798760", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4279876-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Deutsche (O\u0308stliche La\u0308nder)" + ], + "authorized_access_point": "Ostdeutsche" + }, + { + "md5": "9a6224b62b65b0a5d8a553af523ba011", + "pid": "042798779", + "note": [ + { + "label": [ + "Benutzt fu\u0308r Westdeutsche bzw. Bewohner der Bundesrepublik Deutschland (vor 1990) ausserhalb Deutschland " + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Deutsche" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332874800", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF177016487", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb177016487" + } + ], + "authorized_access_point": "Allemands de l'Ouest" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4279877-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042798779", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4279877-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Deutsche (Westliche La\u0308nder)", + "Deutsche (Bundesrepublik)" + ], + "authorized_access_point": "Westdeutsche" + }, + { + "md5": "46f1e2141d52e1e652f502fbbc1a39b7", + "pid": "042803098", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Terminbo\u0308rse" + }, + { + "authorized_access_point": "Warenbo\u0308rse" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134086660", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh88001652", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh88001652" + } + ], + "authorized_access_point": "Commodity futures" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134086660", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11993552", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119935522" + } + ], + "authorized_access_point": "Bourses de marchandises" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4280309-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042803098", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4280309-3", + "source": "GND" + } + ], + "authorized_access_point": "Warenterminbo\u0308rse" + }, + { + "md5": "25815339f06162e017c9af8cb127e555", + "pid": "042813905", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113377640X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12337857", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12337857f" + } + ], + "authorized_access_point": "Gorgones (animaux)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4281390-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042813905", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4281390-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Rindenkorallen", + "Gorgonaria", + "Gorgonien" + ], + "authorized_access_point": "Hornkorallen" + }, + { + "md5": "033cfd6760fc526d26fbabf568ce8cbb", + "pid": "042815479", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134130015", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85085475", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85085475" + } + ], + "authorized_access_point": "Minangkabau language" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134130015", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12045391", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12045391f" + } + ], + "authorized_access_point": "Minangkabau (langue)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4281547-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042815479", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4281547-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Menangkabau-Sprache" + ], + "authorized_access_point": "Minangkabau-Sprache" + }, + { + "md5": "3532fff8f8733a1b26917531b8ad3613", + "pid": "042817293", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Katharina_Wasa_(1539%E2%80%931610)&oldid=207626567" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Vermutl. Intima zwischen Cecilia v. Schweden und Johann v. Ostfriesland" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Politischer Skandal" + } + ], + "related": [ + { + "authorized_access_point": "Liebesbeziehung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4281729-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042817293", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4281729-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Vadstena-La\u0308rm" + ], + "authorized_access_point": "Vadstena-Affa\u0308re" + }, + { + "md5": "a9877c9a936c29625e53aa9f3fa2b6d2", + "pid": "042819415", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Profil (Aerodynamik)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4281941-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042819415", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4281941-6", + "source": "GND" + } + ], + "authorized_access_point": "Laminarprofil" + }, + { + "md5": "c429609695c7f7c48a23c462b06961cd", + "pid": "042819458", + "note": [ + { + "label": [ + "INN" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Cephalosporine" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134245491", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12266467", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12266467v" + } + ], + "authorized_access_point": "Ce\u0301fpodoxime" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336146117", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D000097623", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000097623" + } + ], + "authorized_access_point": "Cefpodoxime" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4281945-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042819458", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4281945-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Orelox", + "CAS 80210-62-4", + "CAS 87239-81-4" + ], + "authorized_access_point": "Cefpodoxim" + }, + { + "md5": "ec2f8f02ced8a4f4012c303ae2a4d34d", + "pid": "042825210", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4282521-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042825210", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4282521-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Riss" + ], + "authorized_access_point": "Rissverlauf" + }, + { + "md5": "646caff391621ed7bc5fe93a6c41611d", + "pid": "042828465", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133824234", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85038225", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85038225" + } + ], + "authorized_access_point": "Dippers (Birds)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133824234", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13621371", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13621371m" + } + ], + "authorized_access_point": "Cincles" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4282846-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042828465", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4282846-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Cinclidae" + ], + "authorized_access_point": "Wasseramseln (Familie)" + }, + { + "md5": "5b6ccbc374e7d10d215f55cae9fde9c8", + "pid": "042829194", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Operatoralgebra" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4282919-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042829194", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4282919-7", + "source": "GND" + } + ], + "authorized_access_point": "Cuntz-Algebra" + }, + { + "md5": "a89bb763a70a7685b5e61b6718889083", + "pid": "042829763", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Nationalfeiertag" + } + ], + "related": [ + { + "authorized_access_point": "Wiedervereinigung (Deutschland)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4282976-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042829763", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4282976-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Dritter Oktober (Nationlfeiertag)", + "3. Oktober (Nationalfeiertag)", + "Tag der deutschen Vereinigung", + "Siebzehnter Juni (Nationalfeiertag)", + "17. Juni (Nationalfeiertag)" + ], + "authorized_access_point": "Tag der deutschen Einheit" + }, + { + "md5": "909e6920a12600413bc2aa68a966a558", + "pid": "042841259", + "note": [ + { + "label": [ + "Wikipedia - https://nl.wikipedia.org/w/index.php?title=Stellingwerfs&oldid=67416841" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Nichtfriesische Mundart eines kleinen Gebietes im niederla\u0308ndischen Friesland" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Niederla\u0308ndisch" + }, + { + "authorized_access_point": "Niedersa\u0308chsisch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4284125-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042841259", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4284125-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Stellingwerfs", + "Stellingwarfs" + ], + "authorized_access_point": "Mundart Niedersa\u0308chsisch (Stellingwerven)" + }, + { + "md5": "9353d7967667584cc748f9ff4f6c3319", + "pid": "042848792", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "related": [ + { + "authorized_access_point": "Finanzmathematik" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4284879-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042848792", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4284879-9", + "source": "GND" + } + ], + "authorized_access_point": "FIMA" + }, + { + "md5": "d1c24f6e02ff55eb672b2ba9455ba15e", + "pid": "042854083", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333472862", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85090721", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85090721" + } + ], + "authorized_access_point": "Nemipteridae" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333472862", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17155703", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17155703h" + } + ], + "authorized_access_point": "Nemipteridae" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4285408-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042854083", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4285408-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Nemipteridae" + ], + "authorized_access_point": "Scheinschnapper" + }, + { + "md5": "f895c5bb07a407fa3330aa550e32e4f0", + "pid": "042855098", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134229682", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12246565", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb122465651" + } + ], + "authorized_access_point": "Information financie\u0300re" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4285509-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042855098", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4285509-3", + "source": "GND" + } + ], + "authorized_access_point": "Bo\u0308rseninformation" + }, + { + "md5": "e898511faf6289d6616643534e2fb404", + "pid": "042863627", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Schulu\u0308bergang" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4286362-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042863627", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4286362-4", + "source": "GND" + } + ], + "authorized_access_point": "Durchla\u0308ssigkeit (Schule)" + }, + { + "md5": "305024fd18d042b7bceecb8856760df5", + "pid": "042868696", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334020086", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16556915", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16556915v" + } + ], + "authorized_access_point": "Meruliaceae" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4286869-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042868696", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4286869-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Fa\u0308ltlinge", + "Meruliaceae" + ], + "authorized_access_point": "Faltenpilze" + }, + { + "md5": "2256ce966746e9bd3c177273d724058a", + "pid": "042870526", + "note": [ + { + "label": [ + "Nicht auf Zoologische Ga\u0308rten beschra\u0308nkt, auch in Museen, Schulen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Pa\u0308dagogik" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4287052-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042870526", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4287052-5", + "source": "GND" + } + ], + "authorized_access_point": "Zoopa\u0308dagogik" + }, + { + "md5": "95ca24942d4baf38b0296ae069120241", + "pid": "042871093", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Stressreaktion" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134207492", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh00004602", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00004602" + } + ], + "authorized_access_point": "Effect of drought on" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134207492", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12200367", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12200367w" + } + ], + "authorized_access_point": "Effets de la se\u0301cheresse" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4287109-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042871093", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4287109-8", + "source": "GND" + } + ], + "authorized_access_point": "Wasserstress" + }, + { + "md5": "18aca1965ab7d8fd3a5f1d4b6dc6ed15", + "pid": "042871255", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bilanzierungsgrundsa\u0308tze" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134743416", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2004005271", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2004005271" + } + ], + "authorized_access_point": "Precautionary principle" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134743416", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13564166", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13564166v" + } + ], + "authorized_access_point": "Principe de pre\u0301caution" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966706951", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "12432-4", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/12432-4" + } + ], + "authorized_access_point": "Vorsichtsprinzip" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4287125-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042871255", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4287125-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Vorsichtsgrundsatz", + "Bilanzvorsicht", + "Bilanzvorsicht", + "Vorsichtige Bilanzierung", + "Prinzip der vorsichtigen Bewertung" + ], + "authorized_access_point": "Vorsichtsprinzip" + }, + { + "md5": "f059d72d85a145bd2e2f665f821085ce", + "pid": "042892562", + "note": [ + { + "label": [ + "O\u0308konometrisches Modell fu\u0308r die niederla\u0308nd. Finanzwirtschaft" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Makroo\u0308konomisches Modell" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4289256-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042892562", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4289256-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Dutch Financial System" + ], + "authorized_access_point": "DUFIS" + }, + { + "md5": "c8f6f4ae9902cb32dbfd297c6780b416", + "pid": "042898250", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Harmonische Analyse" + } + ], + "related": [ + { + "authorized_access_point": "Amenabilita\u0308tstheorie" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4289825-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042898250", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4289825-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Amenability" + ], + "authorized_access_point": "Amenabilita\u0308t" + }, + { + "md5": "813c1f3983f6f64fc5c4318bd033a976", + "pid": "042909163", + "note": [ + { + "label": [ + "Benutzt fu\u0308r Stilprinzip" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Essay" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113450652X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85044913", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85044913" + } + ], + "authorized_access_point": "Essay" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113450652X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11948997", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119489979" + } + ], + "authorized_access_point": "Essai (genre litte\u0301raire)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4290916-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042909163", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4290916-8", + "source": "GND" + } + ], + "authorized_access_point": "Essayismus" + }, + { + "md5": "3773dfa6dee78740bcd7a4f12d59421d", + "pid": "042910870", + "note": [ + { + "label": [ + "INN" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Cephalosporine" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134245483", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12266464", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12266464t" + } + ], + "authorized_access_point": "Cefpirome" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336145846", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D000097572", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000097572" + } + ], + "authorized_access_point": "Cefpirome" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4291087-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042910870", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4291087-0", + "source": "GND" + } + ], + "variant_access_point": [ + "CAS 84957-29-9", + "CAS 98753-19-6" + ], + "authorized_access_point": "Cefpirom" + }, + { + "md5": "7aaae42025f831372c2c3b5fc160e38b", + "pid": "04291096X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zelltod" + } + ], + "related": [ + { + "authorized_access_point": "Regeneration" + }, + { + "authorized_access_point": "Tumorlysesyndrom" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133803601", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh91000743", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh91000743" + } + ], + "authorized_access_point": "Apoptosis" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133803601", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12463578", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12463578d" + } + ], + "authorized_access_point": "Apoptose" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254319298", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "1245", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/1245" + } + ], + "authorized_access_point": "Apoptosi" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254405623", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX547652", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX547652" + } + ], + "authorized_access_point": "Apoptosis" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1241591687", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D017209", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D017209" + } + ], + "authorized_access_point": "Apoptosis" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4291096-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04291096X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4291096-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Apoptose", + "Programmierter Zelltod" + ], + "authorized_access_point": "Apoptosis" + }, + { + "md5": "93b2c6cc89042cf6ac2def57927b30bb", + "pid": "042911915", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Xenismus" + }, + { + "authorized_access_point": "Entlehnung" + } + ], + "related": [ + { + "authorized_access_point": "Italienisch" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134157150", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2008124258", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2008124258" + } + ], + "authorized_access_point": "Italian language - Idioms" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134044984", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11977038", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11977038p" + } + ], + "authorized_access_point": "Emprunts italiens" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134157150", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12092334", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12092334x" + } + ], + "authorized_access_point": "Italianismes (idiotismes)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4291191-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042911915", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4291191-6", + "source": "GND" + } + ], + "authorized_access_point": "Italianismus" + }, + { + "md5": "4622742d491234353b4d31fd16116408", + "pid": "042912709", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Himmelsmechanik" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134443021", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85136957", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85136957" + } + ], + "authorized_access_point": "Transits" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134443021", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF14558309", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb14558309g" + } + ], + "authorized_access_point": "Passages (astronomie)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4291270-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042912709", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4291270-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Transit (Astronomie)" + ], + "authorized_access_point": "Durchgang (Astronomie)" + }, + { + "md5": "9c8159c517102c68f21ce78911ea53ce", + "pid": "04291373X", + "note": [ + { + "label": [ + "Ohne USW fu\u0308r das Milita\u0308r" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Niederlage" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334552770", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12308292", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb151000210" + } + ], + "authorized_access_point": "Victoire" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4291373-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04291373X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4291373-1", + "source": "GND" + } + ], + "authorized_access_point": "Sieg" + }, + { + "md5": "4fce8fff35f2fe7b977b76134ee617dd", + "pid": "042913748", + "note": [ + { + "label": [ + "Multifunktionaler Naturkorridor, der Fuss-, Fahrrad-, Reitwege und/oder Wasserla\u0308ufe umschliesst u. bestehende Freifla\u0308chen (z.B. Parks) beinhaltet; meist an naturra\u0308uml. Strukturen orientiert" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Gru\u0308ngu\u0308rtel" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4291374-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042913748", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4291374-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Greenway" + ], + "authorized_access_point": "Gru\u0308nzug" + }, + { + "md5": "cc0386294d58384990d6f03888e5bee5", + "pid": "042914582", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Produktivita\u0308t" + } + ], + "related": [ + { + "authorized_access_point": "Grenzertrag" + }, + { + "authorized_access_point": "Grenzproduktivita\u0308tstheorie" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113450361X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85081054", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85081054" + } + ], + "authorized_access_point": "Marginal productivity" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113450361X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16600937v", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://catalogue.bnf.fr/ark:/12148/cb16600937v" + } + ], + "authorized_access_point": "Productivite\u0301 marginale" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254365591", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "33441", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/33441" + } + ], + "authorized_access_point": "Produttivita\u0300 marginale" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966850807", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "29921-4", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/29921-4" + } + ], + "authorized_access_point": "Grenzproduktivita\u0308t" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970555407", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10045917", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10045917" + } + ], + "authorized_access_point": "Grenzproduktivita\u0308t" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4291458-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042914582", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4291458-9", + "source": "GND" + } + ], + "authorized_access_point": "Grenzproduktivita\u0308t" + }, + { + "md5": "65e44aa7e065cc82786963aaf3b97eff", + "pid": "042928664", + "note": [ + { + "label": [ + "Nicht permutierendes USW nach bioaktiven Stoffen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133739253", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh90002304", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh90002304" + } + ], + "authorized_access_point": "Mechanism of action (Biochemistry)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134230044", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh00006598", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00006598" + } + ], + "authorized_access_point": "Mechanism of action" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133739253", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12247262", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12247262d" + } + ], + "authorized_access_point": "Me\u0301canisme d'action (biochimie)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134230044", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12247263", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12247263r" + } + ], + "authorized_access_point": "Me\u0301canisme d'action" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4292866-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042928664", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4292866-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Wirkungsweise", + "Wirkprinzip" + ], + "authorized_access_point": "Wirkungsmechanismus" + }, + { + "md5": "76037902b5e02def26451a2b163f3d15", + "pid": "042932297", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fraktal" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254397841", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "69810", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/69810" + } + ], + "authorized_access_point": "Tappeti di Sierpin\u0301ski" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4293229-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042932297", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4293229-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Sierpinski gasket" + ], + "authorized_access_point": "Sierpinski-Dichtung" + }, + { + "md5": "8f4ba60b756e5ad75d9c21b91e8b1352", + "pid": "042933854", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Polnisch-Schwedischer_Krieg_(1600%E2%80%931629)&oldid=179265478" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Krieg" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4293385-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042933854", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4293385-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Schwedisch-Polnischer Krieg (1600-1629)" + ], + "authorized_access_point": "Polnisch-Schwedischer Krieg (1600-1629)" + }, + { + "md5": "b6a8271eda56437b7dac8a11565c33a2", + "pid": "042936586", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Person of Color" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1136963847", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "30160-2", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/30160-2" + } + ], + "authorized_access_point": "People of Color" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4293658-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042936586", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4293658-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Weibliche Person of Colour", + "Weibliche Farbige", + "Woman of Color", + "Woman of Colour", + "Farbige", + "Farbige Frau", + "Weibliche Black and People of Color", + "Weibliche Black, Indigenous and People of Color", + "Weibliche PoC", + "Weibliche BPoC", + "Weibliche BIPoC" + ], + "authorized_access_point": "Weibliche Person of Color" + }, + { + "md5": "5eb29639f179fd34fd73fd34f79df96c", + "pid": "042940664", + "note": [ + { + "label": [ + "Benutzt, soweit im Ausland lebend" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausla\u0308ndischer Student" + }, + { + "authorized_access_point": "Griechen" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134821360", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85057194", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85057194" + } + ], + "authorized_access_point": "Greek students" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134821360", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16605366", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb166053660" + } + ], + "authorized_access_point": "E\u0301tudiants grecs" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4294066-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042940664", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4294066-7", + "source": "GND" + } + ], + "authorized_access_point": "Griechischer Student" + }, + { + "md5": "c138594f80382c80e94f2efbb64a4b27", + "pid": "04296962X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Hu\u0308ttenwartin" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334004277", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16721482", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb167214824" + } + ], + "authorized_access_point": "Gardiens de refuge" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4296962-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04296962X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4296962-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Hu\u0308ttenwirt", + "Schutzhu\u0308ttenwirt", + "Schutzhu\u0308ttenwart" + ], + "authorized_access_point": "Hu\u0308ttenwart" + }, + { + "md5": "0f76eabdc651b5a9c2466cca0197eb35", + "pid": "042975174", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tierrasse" + } + ], + "related": [ + { + "authorized_access_point": "Pony" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134711182", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16247535", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16247535w" + } + ], + "authorized_access_point": "Races de poneys" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4297517-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042975174", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4297517-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Pony" + ], + "authorized_access_point": "Ponyrasse" + }, + { + "md5": "40c951f42772168a048868e857572b9a", + "pid": "042981794", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bromverbindungen" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134593279", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85017042", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85017042" + } + ], + "authorized_access_point": "Bromate" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336226919", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D001959", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D001959" + } + ], + "authorized_access_point": "Bromates" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4298179-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042981794", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4298179-7", + "source": "GND" + } + ], + "authorized_access_point": "Bromate" + }, + { + "md5": "45df9ac2832bc902769db91e725f3456", + "pid": "042982553", + "note": [ + { + "label": [ + "Lehre von den Erkrankungen der weiblichen Brust" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Brustkrankheit" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133629563", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85016683", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85016683" + } + ], + "authorized_access_point": "Breast - Diseases" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133629563", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11938410", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11938410t" + } + ], + "authorized_access_point": "Sein - Maladies" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254356177", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "25596", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/25596" + } + ], + "authorized_access_point": "Mastopatie" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254486186", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX564846", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX564846" + } + ], + "authorized_access_point": "Mamas - Enfermedades" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4298255-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)042982553", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4298255-8", + "source": "GND" + } + ], + "authorized_access_point": "Senologie" + }, + { + "md5": "ad048db24f89116d40b9017361c41aec", + "pid": "043000150", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "related": [ + { + "authorized_access_point": "Fakturierung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4300015-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043000150", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4300015-0", + "source": "GND" + } + ], + "authorized_access_point": "TOP-FAKTURA" + }, + { + "md5": "9521a8fe5f7fbc2cb5971931206671d8", + "pid": "04300024X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Tischdecken" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133998410", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85131801", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85131801" + } + ], + "authorized_access_point": "Table setting and decoration" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133998410", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11960524", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11960524g" + } + ], + "authorized_access_point": "Arts de la table" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254495401", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX538094", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX538094" + } + ], + "authorized_access_point": "Arte de servir la mesa" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4300024-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04300024X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4300024-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Tischschmuck" + ], + "authorized_access_point": "Tischdekoration" + }, + { + "md5": "a6c64a6043a0388b382ee7121dad1402", + "pid": "043001173", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4300117-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043001173", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4300117-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Feuchtigkeitstransport", + "Feuchtetransport" + ], + "authorized_access_point": "Feuchteleitung" + }, + { + "md5": "8696ec194b0add4cae35c1363219062d", + "pid": "043003583", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Lewis-S%C3%A4ure-Base-Konzept" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Sa\u0308ure" + }, + { + "authorized_access_point": "Lewis-Addukt" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113425038X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh89004433", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh89004433" + } + ], + "authorized_access_point": "Lewis acids" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113425038X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12269978", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12269978m" + } + ], + "authorized_access_point": "Lewis, Acides de" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336148020", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D058116", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D058116" + } + ], + "authorized_access_point": "Lewis Acids" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4300358-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043003583", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4300358-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Lewis-Sa\u0308uren" + ], + "authorized_access_point": "Lewis-Sa\u0308ure" + }, + { + "md5": "bfa801ee897f69af8e66171670f87f99", + "pid": "043004164", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "A\u0308olisch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4300416-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043004164", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4300416-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Boiotisch" + ], + "authorized_access_point": "Bo\u0308otisch" + }, + { + "md5": "ecbeb5656fc366c8f75d124a90022108", + "pid": "043006248", + "note": [ + { + "label": [ + "Verfasst 1587, sollte die Union Polens u. Schwedens vorbereiten" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4300624-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043006248", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4300624-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Kalmar stadgar" + ], + "authorized_access_point": "Kalmarer Statuten" + }, + { + "md5": "546e096f37b69e4f237c15d97ee1b8cc", + "pid": "043007708", + "note": [ + { + "label": [ + "Mantik hat e. weitere Bedeutung als Wahrsagen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113479195X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85038589", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85038589" + } + ], + "authorized_access_point": "Divination" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113479195X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11938266", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11938266w" + } + ], + "authorized_access_point": "Divination" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4300770-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043007708", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4300770-3", + "source": "GND" + } + ], + "authorized_access_point": "Mantik" + }, + { + "md5": "fb614b1fb433ff7805b4646207efe1dd", + "pid": "043022790", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4302279-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043022790", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4302279-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Pitu Uluna Binanga" + ], + "authorized_access_point": "Pitu-ulunna-salu" + }, + { + "md5": "02abae30c9a9f690031eb03f499d35af", + "pid": "043023932", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Koagulopathie" + }, + { + "authorized_access_point": "Thrombotische Mikroangiopathie" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332910955", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh92002901", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh92002901" + } + ], + "authorized_access_point": "Thrombotic thrombocytopenic purpura" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332910955", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12259284", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12259284d" + } + ], + "authorized_access_point": "Purpura thrombotique thrombocytope\u0301nique" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1241613486", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D011697", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D011697" + } + ], + "authorized_access_point": "Purpura, Thrombotic Thrombocytopenic" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4302393-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043023932", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4302393-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Thrombotisch-thrombozytopenische Purpura", + "Moschcowitz-Singer-Symmers-Syndrom" + ], + "authorized_access_point": "Moschcowitz-Syndrom" + }, + { + "md5": "c5cb7055495e04268de30731ff249968", + "pid": "043035167", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133809227", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh86005267", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh86005267" + } + ], + "authorized_access_point": "Rejang language (Sumatra, Indonesia)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133809227", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13516519", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13516519w" + } + ], + "authorized_access_point": "Rejang (langue)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4303516-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043035167", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4303516-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Rejang-Sprache" + ], + "authorized_access_point": "Redjang-Sprache" + }, + { + "md5": "22861ed87c3469d921c36e924a668401", + "pid": "043045820", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Stochastischer Prozess" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4304582-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043045820", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4304582-0", + "source": "GND" + } + ], + "authorized_access_point": "Nichtlinearer Prozess" + }, + { + "md5": "f69d1db0ca31a3cb9819d933768dfed3", + "pid": "043047815", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4304781-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043047815", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4304781-6", + "source": "GND" + } + ], + "authorized_access_point": "Begriffskalku\u0308l" + }, + { + "md5": "3566f96cd3193abcec6c8af5da9f663a", + "pid": "04304929X", + "note": [ + { + "label": [ + "Su\u0308d-Sulawesi" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4304929-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04304929X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4304929-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Luwu-Sprache" + ], + "authorized_access_point": "Toala-Sprache" + }, + { + "md5": "c46c2d79d9b0790fb440463c5bfe3979", + "pid": "043049354", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bibliotheksinformationssystem" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4304935-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043049354", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4304935-7", + "source": "GND" + } + ], + "authorized_access_point": "Allegro (Bibliotheksinformationssystem)" + }, + { + "md5": "bf286f3324c64ab58d2ce9563ee183fb", + "pid": "04304980X", + "note": [ + { + "label": [ + "Erythrozyt mit abnormer Farbstoffverteilung" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Erythrozyt" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4304980-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04304980X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4304980-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Schie\u00dfscheibenzelle", + "Kokardenzelle", + "Leptozyt" + ], + "authorized_access_point": "Targetzelle" + }, + { + "md5": "5971239cdcf82827dedbea3d8bf55857", + "pid": "043062008", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4306200-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043062008", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4306200-3", + "source": "GND" + } + ], + "authorized_access_point": "Mundart Xin Xiangyu (Changsha)" + }, + { + "md5": "e4e020888e82bb05b3553ef37ffd014b", + "pid": "043062024", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Chronologie" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333671210", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85025412", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85025412" + } + ], + "authorized_access_point": "Chronology, Historical" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333671210", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13318624", + "source": "BNF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13318624w" + } + ], + "authorized_access_point": "Chronologie historique" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1275766404", + "source": "GND" + }, + { + "type": "uri", + "value": "https://provenienz.gbv.de/T-PRO_Thesaurus_der_Provenienzbegriffe#Anker:Datum" + } + ], + "authorized_access_point": "Datum" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4306202-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043062024", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4306202-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Datumsangabe", + "Kalendarisches Datum" + ], + "authorized_access_point": "Datum" + }, + { + "md5": "8c874c7bb162c73ad875b6aef8904676", + "pid": "043078664", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Retroviren" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133790364", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12412463", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12412463t" + } + ], + "authorized_access_point": "Virus de l'immunode\u0301ficience simienne" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4307866-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043078664", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4307866-7", + "source": "GND" + } + ], + "variant_access_point": [ + "SIV", + "Simian immunodeficiency virus" + ], + "authorized_access_point": "Affenimmundefizienzvirus" + }, + { + "md5": "8bcb27e294e29fe98e770900381f2885", + "pid": "043079458", + "note": [ + { + "label": [ + "Ranking bezeichnet die Einordnung von Elementen in eine Rangliste." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Rating" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966685695", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "15320-0", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/15320-0" + } + ], + "authorized_access_point": "Ranking-Verfahren" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)971416281", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10042956", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10042956" + } + ], + "authorized_access_point": "Ranking" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4307945-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043079458", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4307945-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Rangreihenverfahren", + "Ranking-Verfahren" + ], + "authorized_access_point": "Ranking" + }, + { + "md5": "63090521f42bed777df9aa8f8daaf810", + "pid": "043087787", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gentechnologie" + }, + { + "authorized_access_point": "Klonierung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134360436", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh00007750", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00007750" + } + ], + "authorized_access_point": "Clones" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134360436", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12533180", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12533180d" + } + ], + "authorized_access_point": "Clones (biologie)" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256227994", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "1678", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_1678" + } + ], + "authorized_access_point": "clones" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4308778-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043087787", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4308778-4", + "source": "GND" + } + ], + "authorized_access_point": "Klon" + }, + { + "md5": "7b9fe667fa06aad025c50b16db4bf775", + "pid": "043092756", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "A\u0308rztin" + } + ], + "related": [ + { + "authorized_access_point": "Vertragsarzt" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4309275-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043092756", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4309275-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Kassena\u0308rztin" + ], + "authorized_access_point": "Vertragsa\u0308rztin" + }, + { + "md5": "42fb42d7faffa91aca717712e3243e58", + "pid": "043104754", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Digitale Telefonvermittlung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4310475-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043104754", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4310475-7", + "source": "GND" + } + ], + "authorized_access_point": "Alcatel 1000 S12" + }, + { + "md5": "7f17cf2af8540501dbcddc514f05ca25", + "pid": "043110290", + "note": [ + { + "label": [ + "Buntbarschart" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333965877", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh00003454", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00003454" + } + ], + "authorized_access_point": "Redbreast tilapia" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333965877", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17838459", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17838459t" + } + ], + "authorized_access_point": "Coptodon rendalli" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256264202", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "35436", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_35436" + } + ], + "authorized_access_point": "Tilapia rendalli" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4311029-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043110290", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4311029-0", + "source": "GND" + } + ], + "authorized_access_point": "Tilapia rendalli" + }, + { + "md5": "3153fa84eb695938d9cc84e576c7c07f", + "pid": "04311704X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Regelung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4311704-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04311704X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4311704-1", + "source": "GND" + } + ], + "authorized_access_point": "Kaskadenregelung" + }, + { + "md5": "fb5697f213b88bc9d224fe5be5375e72", + "pid": "043119816", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kapuzineraffenartige" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133798934", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh91006486", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh91006486" + } + ], + "authorized_access_point": "Southern muriqui" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133798934", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12443392", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb124433920" + } + ], + "authorized_access_point": "Eroi\u0308de" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4311981-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043119816", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4311981-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Brachyteles arachnoides" + ], + "authorized_access_point": "Spinnenaffe" + }, + { + "md5": "a3aabd1fdb343bae496350332b88a6ef", + "pid": "043122507", + "note": [ + { + "label": [ + "Ma\u00dfgeschneiderte Materialien mit bestimmten gewu\u0308nschten Eigenschaften, die durch gezielte Synthese erreicht werden" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Material" + }, + { + "authorized_access_point": "Werkstoff" + } + ], + "related": [ + { + "authorized_access_point": "Intelligenter Werkstoff" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4312250-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043122507", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4312250-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Advanced materials", + "Advanced material", + "High-tech-Werkstoff" + ], + "authorized_access_point": "Hochleistungswerkstoff" + }, + { + "md5": "f77b3692e732fd64b6e45cf9b7033eeb", + "pid": "043126944", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133834795", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85105550", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85105550" + } + ], + "authorized_access_point": "Posthouses" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133834795", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12569669", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12569669b" + } + ], + "authorized_access_point": "Relais de poste" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4312694-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043126944", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4312694-7", + "source": "GND" + } + ], + "authorized_access_point": "Poststation" + }, + { + "md5": "c7140384b07fc4d50a41d6739751f5ce", + "pid": "043128629", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "related": [ + { + "authorized_access_point": "Anlagenbuchhaltung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4312862-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043128629", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4312862-2", + "source": "GND" + } + ], + "authorized_access_point": "JOKO-AVW" + }, + { + "md5": "2360b79cdbd7e625ef89f414ad16b4b0", + "pid": "04313291X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Proteinogene Aminosa\u0308uren" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134402074", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85003136", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85003136" + } + ], + "authorized_access_point": "Alanine" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134402074", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF14407404", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb14407404k" + } + ], + "authorized_access_point": "Alanine" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256189383", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "239", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_239" + } + ], + "authorized_access_point": "alanine" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133614730X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D000409", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000409" + } + ], + "authorized_access_point": "Alanine" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4313291-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04313291X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4313291-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Aminopropionsa\u0308ure", + "Aminopropansa\u0308ure", + "Alanin (alpha-)", + "CAS 338-69-2", + "CAS 56-41-7", + "CAS 302-72-7", + "Alanin (beta-)", + "CAS 107-95-9" + ], + "authorized_access_point": "Alanin" + }, + { + "md5": "8a11676d22c21f0e9e49157b10c67ca0", + "pid": "043133789", + "note": [ + { + "label": [ + "Unter Regierungskriminalita\u0308t versteht man die Verwirklichung strafbarer Handlungen, die der Erhaltung oder Ausweitung politischer Macht dienen, durch oder auf Veranlassung von hochrangigen politischen Machthabern. Hierzu za\u0308hlen etwa Verbrechen gegen die Menschlichkeit zulasten von Regimegegnern, Korruption, Wahlfa\u0308lschung und Rechtsbeugung." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kriminalita\u0308t" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331581338", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2010008055", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2010008055" + } + ], + "authorized_access_point": "State crimes" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4313378-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043133789", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4313378-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Staatskriminalita\u0308t", + "Politische Kriminalita\u0308t", + "Makrokriminalita\u0308t", + "Staatsverbrechen", + "State crime", + "State-organized crime", + "Kriminalita\u0308t der Ma\u0308chtigen", + "Staat" + ], + "authorized_access_point": "Regierungskriminalita\u0308t" + }, + { + "md5": "47a54df497cee4d86e9ce96d9244ba7d", + "pid": "043133908", + "note": [ + { + "label": [ + "Da\u0308nischer Angriff von Norwegen aus auf Schweden" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Krieg" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4313390-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043133908", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4313390-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Schwedisch-Da\u0308nischer Krieg (1788-1789)" + ], + "authorized_access_point": "Da\u0308nisch-Schwedischer Krieg (1788-1789)" + }, + { + "md5": "9188a2e7a8d7ad3245ad8eb57c73008e", + "pid": "043134106", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tauchunfall" + } + ], + "related": [ + { + "authorized_access_point": "High pressure neurological syndrome" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113419434X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85065986", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85065986" + } + ], + "authorized_access_point": "Inert gas narcosis" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113419434X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12160328", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb121603282" + } + ], + "authorized_access_point": "Narcose a\u0300 l'azote" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1282205935", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D007222", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D007222" + } + ], + "authorized_access_point": "Inert Gas Narcosis" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4313410-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043134106", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4313410-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Stickstoffnarkose" + ], + "authorized_access_point": "Tiefenrausch" + }, + { + "md5": "28617aade62f5c3a0470d1228130b2c8", + "pid": "043134475", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Korallenbarsche" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333372299", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17805633", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17805633b" + } + ], + "authorized_access_point": "Amphiprion frenatus" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4313447-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043134475", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4313447-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Amphiprion frenatus" + ], + "authorized_access_point": "Halsband-Anemonenfisch" + }, + { + "md5": "54e82cf5e7b6bd393db0ca70bf207e85", + "pid": "043153607", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Halbleiterlaser" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4315360-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043153607", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4315360-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Distributed-Bragg-Reflektor-Laser" + ], + "authorized_access_point": "DBR-Laser" + }, + { + "md5": "7e5ba097a0e1ea98cdc04280f0845cf2", + "pid": "04316532X", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333376375", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85011925", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85011925" + } + ], + "authorized_access_point": "Giant perch" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333376375", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16914666", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb169146669" + } + ], + "authorized_access_point": "Barramundi" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4316532-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04316532X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4316532-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Plakapong", + "Lates calcarifer" + ], + "authorized_access_point": "Barramundi" + }, + { + "md5": "20cf71b1a74b8f5becbf46502230c3c3", + "pid": "043166202", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Literaturpreis" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4316620-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043166202", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4316620-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Montblanc-Literaturpreis fu\u0308r kurze Geschichten" + ], + "authorized_access_point": "Montblanc-Literaturpreis" + }, + { + "md5": "b704034193c01fcab03964328663adeb", + "pid": "043166644", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Moronidae" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133652603", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85037661", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85037661" + } + ], + "authorized_access_point": "European seabass" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133652603", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11955348", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11955348x" + } + ], + "authorized_access_point": "Bar commun" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256256692", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "6893", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_6893" + } + ], + "authorized_access_point": "sea bass" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4316664-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043166644", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4316664-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Wolfsbarsch", + "Roccus labrax", + "Dicentrarchus labrax" + ], + "authorized_access_point": "Seebarsch" + }, + { + "md5": "eb5bd44096c588867bd262672921e2fb", + "pid": "043170854", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kirchenbau" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334557942", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15595575", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb155955752" + } + ], + "authorized_access_point": "Sacristies" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4317085-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043170854", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4317085-7", + "source": "GND" + } + ], + "authorized_access_point": "Sakristei" + }, + { + "md5": "5000492df2c1685a619081171c42e011", + "pid": "043172415", + "note": [ + { + "label": [ + "Ausschluss von Mitgliedern einer Gesellschaft bei Verzug der Einzahlung ihres Kapitalanteils" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gesellschaftsanteil" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4317241-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043172415", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4317241-6", + "source": "GND" + } + ], + "authorized_access_point": "Kaduzierung" + }, + { + "md5": "3a8dc78ea8049ad5390250e3490342f2", + "pid": "043195733", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kernteilung" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336587482", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D020090", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D020090" + } + ], + "authorized_access_point": "Chromosome Segregation" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4319573-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043195733", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4319573-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Chromosom", + "Chromosomensegregation" + ], + "authorized_access_point": "Segregation (Genetik)" + }, + { + "md5": "97fffa4cc032cdc500a3fdbc6d55a07d", + "pid": "043196063", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Doppelblindversuch" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)124159404X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D016037", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D016037" + } + ], + "authorized_access_point": "Single-Blind Method" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4319606-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043196063", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4319606-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Blindfold test", + "Einfacher Blindversuch" + ], + "authorized_access_point": "Blindversuch" + }, + { + "md5": "be2635b7fcd20431033867ec65cf15b9", + "pid": "043197574", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Lewis-Addukt" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134402171", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF14407869", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb144078698" + } + ], + "authorized_access_point": "Lewis, Bases de" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336148071", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D058115", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D058115" + } + ], + "authorized_access_point": "Lewis Bases" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4319757-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043197574", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4319757-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Lewis-Basen" + ], + "authorized_access_point": "Lewis-Base" + }, + { + "md5": "384efa7d5e584be8d477df407d826160", + "pid": "043203469", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Hanfwirtschaft" + }, + { + "authorized_access_point": "Pflanzenbau" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4320346-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043203469", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4320346-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Hanf", + "Cannabisanbau", + "Cannabis-Anbau" + ], + "authorized_access_point": "Hanfanbau" + }, + { + "md5": "d195c9856bceee2e2c86e8700248d095", + "pid": "043220797", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Entzu\u0308ndung" + }, + { + "authorized_access_point": "Parodontopathie" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134620675", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85099925", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85099925" + } + ], + "authorized_access_point": "Periodontitis" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134620675", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11965426", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119654263" + } + ], + "authorized_access_point": "Parodontopathies" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254356584", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "25875", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/25875" + } + ], + "authorized_access_point": "Periodontiti" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254471235", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX531351", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX531351" + } + ], + "authorized_access_point": "Periodontitis" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1299919812", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX700280", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX700280" + } + ], + "authorized_access_point": "Periodonto - Enfermedades" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1241617104", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D010518", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D010518" + } + ], + "authorized_access_point": "Periodontitis" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4322079-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043220797", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4322079-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Paradentitis", + "Paradontitis", + "Parodontose", + "Zahnbettschwund", + "Parodontosis", + "Rasch fortschreitende Parodontitis", + "RPP", + "Rapid progredient parodontitis", + "Early-onset peridontitis" + ], + "authorized_access_point": "Parodontitis" + }, + { + "md5": "785b513c4de599dde324d5442594c151", + "pid": "043225276", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ra\u0308uber" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331709628", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2022005388", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2022005388" + } + ], + "authorized_access_point": "Bank robbers" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4322527-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043225276", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4322527-5", + "source": "GND" + } + ], + "authorized_access_point": "Bankra\u0308uber" + }, + { + "md5": "3880e3f29a3cc1a48af0204501b6f064", + "pid": "043229395", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334234000", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh95001703", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh95001703" + } + ], + "authorized_access_point": "Jade carving" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334234000", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15095710", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb150957105" + } + ], + "authorized_access_point": "Sculpture sur jade" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4322939-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043229395", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4322939-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Jadeschnitzerei" + ], + "authorized_access_point": "Jadekunst" + }, + { + "md5": "9b1650f1e5cbeec3f714dd8b4fdea47d", + "pid": "043252044", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Russischer_B%C3%BCrgerkrieg&oldid=214352964#Intervention_der_Entente-Ma\u0308chte" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Intervention (Vo\u0308lkerrecht)" + } + ], + "related": [ + { + "authorized_access_point": "Russischer Bu\u0308rgerkrieg" + }, + { + "authorized_access_point": "Entente" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1231385979", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85125813", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85125813" + } + ], + "authorized_access_point": "Soviet Union - History - Allied intervention, 1918-1920" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1231385979", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11980886", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119808868" + } + ], + "authorized_access_point": "URSS - 1918-1920 (Intervention allie\u0301e)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4325204-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043252044", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4325204-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Alliierte Intervention in der Sowjetunion (1918-1920)", + "Milita\u0308rische Intervention in der Sowjetunion (1918-1920)" + ], + "authorized_access_point": "Intervention der Entente-Ma\u0308chte in der Sowjetunion (1918-1920)" + }, + { + "md5": "dbee6ecab4ddb3493870604d6a6a4bb2", + "pid": "043265006", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Johanniskrautgewa\u0308chse" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134596413", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85080526", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85080526" + } + ], + "authorized_access_point": "Mangosteen" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134596413", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16649658", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb166496580" + } + ], + "authorized_access_point": "Garcinia mangostana" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256234893", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "12368", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_12368" + } + ], + "authorized_access_point": "mangosteen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4326500-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043265006", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4326500-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Garcinia mangostana", + "Mangostanbaum", + "Mangostanapfel" + ], + "authorized_access_point": "Mangostane" + }, + { + "md5": "476af237c2574b61c9368e99f0e842b7", + "pid": "043269605", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kreatur" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4326960-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043269605", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4326960-6", + "source": "GND" + } + ], + "authorized_access_point": "Mitgescho\u0308pf" + }, + { + "md5": "184e1ea1e39cca77573c34adf64106f7", + "pid": "043270328", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Aluminiumhydrid" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4327032-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043270328", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4327032-3", + "source": "GND" + } + ], + "authorized_access_point": "Alanate" + }, + { + "md5": "de35b08243bcf872ab6edec12a3b9853", + "pid": "043270972", + "note": [ + { + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung und (hier nicht permutierender - gilt bis 31. 03. 2010) Wortart; z.B. Deutsch / Hilfsverb / haben " + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113422303X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2011001716", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2011001716" + } + ], + "authorized_access_point": "Haben (The German word)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113422303X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12232750", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12232750c" + } + ], + "authorized_access_point": "Haben (le mot allemand)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4327097-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043270972", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4327097-9", + "source": "GND" + } + ], + "authorized_access_point": "haben (Wort)" + }, + { + "md5": "311136f6ec65bd6d93b6efb8a216d1ce", + "pid": "043274994", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bewegliche Sache" + } + ], + "related": [ + { + "authorized_access_point": "Wiederherbeigeschaffte Sache" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4327499-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043274994", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4327499-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Bewegliche Sache" + ], + "authorized_access_point": "Abhanden gekommene Sache" + }, + { + "md5": "8a5d95515789966e55a1696f3e22dd17", + "pid": "043280072", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333473583", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85000447", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85000447" + } + ], + "authorized_access_point": "Gymnocephalus cernuus" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333473583", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17805440", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb178054402" + } + ], + "authorized_access_point": "Gymnocephalus cernua" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4328007-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043280072", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4328007-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Stur", + "Gymnocephalus cernua", + "Gymnocephalus cernuus" + ], + "authorized_access_point": "Kaulbarsch" + }, + { + "md5": "ee1232f0882b78cf70cb65c5386cd087", + "pid": "04328213X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Geschwindigkeit" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4328213-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04328213X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4328213-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Deposition (Meteorologie)" + ], + "authorized_access_point": "Ablagerungsgeschwindigkeit" + }, + { + "md5": "79924e3235f8597b528f59d466ecb1f4", + "pid": "043282695", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Haar" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334795894", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85058320", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85058320" + } + ], + "authorized_access_point": "Hair follicles" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334795894", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15062168", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15062168g" + } + ], + "authorized_access_point": "Follicule du poil" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)125439432X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "65584", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/65584" + } + ], + "authorized_access_point": "Follicoli piliferi" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1282203460", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D018859", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D018859" + } + ], + "authorized_access_point": "Hair Follicle" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4328269-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)043282695", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4328269-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Haartasche", + "Haarbalg", + "Folliculus pili" + ], + "authorized_access_point": "Haarfollikel" + }, + { + "md5": "957b391b2654d390d76eb7ef1618f416", + "pid": "04328762X", + "note": [ + { + "label": [ + "Lehrprogrammsystem fu\u0308r Finanzbuchhaltung" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "related": [ + { + "authorized_access_point": "Finanzbuchhaltung" + }, + { + "authorized_access_point": "Einfu\u0308hrung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4328762-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)04328762X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4328762-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Computerorientierte Buchfu\u0308hrung fu\u0308r kaufma\u0308nnische Schulen (Programm)" + ], + "authorized_access_point": "COBUKAS" + }, + { + "md5": "a6cdb1147511ee788aaf84986808435a", + "pid": "1000168972", + "note": [ + { + "label": [ + "Entstehungsjahr: 1923" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fraktur (Druckschrift)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7690681-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1000168972", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7690681-4", + "source": "GND" + } + ], + "authorized_access_point": "Mo\u0308rike-Fraktur" + }, + { + "md5": "32eb6c2d1e7bea244dfb4da5fe81a889", + "pid": "1000465403", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Westfa\u0308lisch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7692522-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1000465403", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7692522-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Tecklenburger Platt" + ], + "authorized_access_point": "Mundart Westfa\u0308lisch (Tecklenburg)" + }, + { + "md5": "d1d26860df8a6d7e2b8d89d153a1df2c", + "pid": "1000642119", + "note": [ + { + "label": [ + "Benutzt fu\u0308r alle Steinschrift-Schriften. Einzelne Steinschrift-Schriften werden getrennt angesetzt." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Antiqua" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7693298-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1000642119", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7693298-9", + "source": "GND" + } + ], + "authorized_access_point": "Steinschrift" + }, + { + "md5": "13133e59f48e969c5ec0505c637a4f7e", + "pid": "1001213157", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Agamen" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133848672", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh98005624", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh98005624" + } + ], + "authorized_access_point": "Bearded dragons (Reptiles)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133848672", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13327120", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb133271203" + } + ], + "authorized_access_point": "Pogona" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7696635-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1001213157", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7696635-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Bartagame (Gattung)" + ], + "authorized_access_point": "Pogona" + }, + { + "md5": "6b645af4a145850f9fb5cd621392886f", + "pid": "1002238951", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Conditio_humana" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Die Umsta\u0308nde des Menschseins und die Natur des Menschen als Gegenstand der Philosophischen Anthropologie" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Philosophische Anthropologie" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7701000-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1002238951", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7701000-0", + "source": "GND" + } + ], + "variant_access_point": [ + "condicio humana" + ], + "authorized_access_point": "Conditio humana" + }, + { + "md5": "f8ac2b375477c143ef2ee9e4d2599be5", + "pid": "1003591590", + "note": [ + { + "label": [ + "Ein eindimensionaler Ansatz der O\u0308kobilanzierung. Messung der Klimarelevanz von Ta\u0308tigkeiten, Prozessen, Produkten und Dienstleistungen." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Umweltbilanz" + } + ], + "related": [ + { + "authorized_access_point": "Umweltbelastung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332366201", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15566354", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb155663545" + } + ], + "authorized_access_point": "Empreinte e\u0301cologique" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7705788-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1003591590", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7705788-0", + "source": "GND" + } + ], + "authorized_access_point": "O\u0308kologischer Fu\u00dfabdruck" + }, + { + "md5": "4a6759a5bffcc409eb5727248112f09a", + "pid": "1005003262", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Signaltransduktion" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7710598-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1005003262", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7710598-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Two-component system", + "TCS" + ], + "authorized_access_point": "Zweikomponentensystem (Molekularbiologie)" + }, + { + "md5": "a4d096ed5dbc00b67ec43bb0e19200e6", + "pid": "1005638322", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tablet PC" + } + ], + "related": [ + { + "authorized_access_point": "Apple (Marke)" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113482369X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2010009235", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2010009235" + } + ], + "authorized_access_point": "iPad (Computer)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113482369X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16204308", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16204308w" + } + ], + "authorized_access_point": "Apple iPad (ordinateur)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)125444470X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX5019827", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX5019827" + } + ], + "authorized_access_point": "iPad (Ordenador)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7712886-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1005638322", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7712886-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Apple iPad" + ], + "authorized_access_point": "iPad" + }, + { + "md5": "e1f9760f57ef34b98c2bb853a67a21f3", + "pid": "1005952930", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Spielgera\u0308t" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133278884X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh90001167", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh90001167" + } + ], + "authorized_access_point": "Pedal cars" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7713696-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1005952930", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7713696-2", + "source": "GND" + } + ], + "authorized_access_point": "Tretauto" + }, + { + "md5": "49e04d38d3bff902f2122735ed08ff60", + "pid": "1006156577", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Computerkriminalita\u0308t" + }, + { + "authorized_access_point": "Spionage" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7714184-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1006156577", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7714184-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Datenspionage", + "Computerspionage", + "Cyberspionage" + ], + "authorized_access_point": "Ausspa\u0308hen von Daten" + }, + { + "md5": "c20bc09d24ec0d389baf917047dc5b7b", + "pid": "1006894675", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sa\u0308ule" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7716437-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1006894675", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7716437-4", + "source": "GND" + } + ], + "authorized_access_point": "Poller" + }, + { + "md5": "2dfcf2dc13bd08e9cd1676909529365f", + "pid": "1007096462", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Green_IT&oldid=244326078" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Informationstechnik" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7717106-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1007096462", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7717106-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Green IT", + "Green ICT", + "Green computing", + "Gru\u0308ne IT", + "Green IS", + "Green-IS", + "Green information systems" + ], + "authorized_access_point": "Green-IT" + }, + { + "md5": "a3889b451964b1606a3dc1877c6a9310", + "pid": "100735531X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7718660-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)100735531X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7718660-6", + "source": "GND" + } + ], + "authorized_access_point": "Golfkrieg (1990-1991, Motiv)" + }, + { + "md5": "2026786bcfa92389c4fa5aab4f16a14d", + "pid": "1007553405", + "note": [ + { + "label": [ + "Zwergseepferdchenart" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Seenadeln" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333488432", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85040183", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85040183" + } + ], + "authorized_access_point": "Dwarf sea horse" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333488432", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17817676", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb178176769" + } + ], + "authorized_access_point": "Hippocampus zosterae" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7719938-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1007553405", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7719938-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Florida-Zwergseepferdchen" + ], + "authorized_access_point": "Hippocampus zosterae" + }, + { + "md5": "c8bdde462cafcf5057ee07380da3ef6f", + "pid": "1007558903", + "note": [ + { + "label": [ + "Geho\u0308rt zu d. UF Astronotinae d. Neuweltbuntbarsche" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Buntbarsche" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134832648", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh99003794", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh99003794" + } + ], + "authorized_access_point": "Astronotus" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134832648", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17801808", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17801808q" + } + ], + "authorized_access_point": "Astronotus" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7719954-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1007558903", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7719954-6", + "source": "GND" + } + ], + "authorized_access_point": "Astronotus" + }, + { + "md5": "230093fb0e0af9edec60f85c602daa64", + "pid": "1008049115", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zunft" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7722831-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1008049115", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7722831-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Messerschmied" + ], + "authorized_access_point": "Messerschmiedezunft" + }, + { + "md5": "007a7b5f3514937fa9bb0de4e4e38873", + "pid": "1008599360", + "note": [ + { + "label": [ + "Rakete, die vom Boden auf ein Bodenziel abgeschossen wird" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Milita\u0308rische Rakete" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134177372", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85130729", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85130729" + } + ], + "authorized_access_point": "Surface-to-surface missiles" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134177372", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12124483", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12124483m" + } + ], + "authorized_access_point": "Missiles sol-sol" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7725945-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1008599360", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7725945-2", + "source": "GND" + } + ], + "authorized_access_point": "Boden-Boden-Rakete" + }, + { + "md5": "ef4d9930547048797e76196f4a70f5be", + "pid": "1008996270", + "note": [ + { + "label": [ + "Im Barock als Gegensatz zur Kirchensonate, im 20. Jhdt. als Bezeichnung wieder aufgegriffen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sonate" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7727964-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1008996270", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7727964-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Sonata da camera", + "Sonate de chambre" + ], + "authorized_access_point": "Kammersonate" + }, + { + "md5": "5ebbba3f4794844837ea55eb28678266", + "pid": "100914135X", + "note": [ + { + "label": [ + "Ca. 1734 erbaut, urspru\u0308nglich Handelsschiff, spa\u0308ter im Dienst d. engl. Marine, sank 1741 vor d. Westku\u0308ste Chiles" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Segelschiff" + }, + { + "authorized_access_point": "Handelsschiff" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7728659-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)100914135X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7728659-5", + "source": "GND" + } + ], + "authorized_access_point": "Wager (Schiff)" + }, + { + "md5": "f20ed873b786d6c67ee847e897d89dd8", + "pid": "1009172255", + "note": [ + { + "label": [ + "ab 2003 Fo\u0308rderprogramm fu\u0308r Textilarbeiterinnen der Firma MAS Holdings Pvt. Ltd." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fo\u0308rderungsprogramm" + } + ], + "related": [ + { + "authorized_access_point": "Textilarbeiterin" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7728838-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1009172255", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7728838-5", + "source": "GND" + } + ], + "variant_access_point": [ + "MAS Holdings", + "Women Go Beyond", + "Go Beyond", + "MAS Women Go Beyond Programme" + ], + "authorized_access_point": "MAS Go Beyond" + }, + { + "md5": "abc8ddf751869bf2f3ac240f3cecfcc6", + "pid": "100974786X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Fernmeldegeheimnis" + }, + { + "authorized_access_point": "Postu\u0308berwachung" + }, + { + "authorized_access_point": "Telefonu\u0308berwachung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1218115521", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11961331", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11961331f" + } + ], + "authorized_access_point": "E\u0301coute e\u0301lectronique" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7732308-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)100974786X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7732308-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Telekommunikation", + "Telecommunication surveillance", + "TKU\u0308" + ], + "authorized_access_point": "Telekommunikationsu\u0308berwachung" + }, + { + "md5": "4f9adc805ade0fcb5a82dfadf9eefef9", + "pid": "1009887017", + "note": [ + { + "label": [ + "Zuru\u0308cklenkung der Aufmerksamkeit auf das Ich und seine Ta\u0308tigkeit." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7733566-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1009887017", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7733566-1", + "source": "GND" + } + ], + "authorized_access_point": "Reflexion (Psychologie)" + }, + { + "md5": "437d351a52edd0c82d982a98d80821ac", + "pid": "1010242008", + "note": [ + { + "label": [ + "Art der Giftnattern (Elapidae)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Giftnattern" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1323122141", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17057750", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17057750b" + } + ], + "authorized_access_point": "Bungarus fasciatus" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7736415-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1010242008", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7736415-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Gelber Bungar", + "Ba\u0308nder-Krait", + "Geba\u0308nderter Krait", + "Bungarus fasciatus" + ], + "authorized_access_point": "Krait" + }, + { + "md5": "a0e8eed6d728438877c437292b8f5045", + "pid": "101081933X", + "note": [ + { + "label": [ + "Internet - http://tierdoku.de/index.php?title=Spinnerartige" + ], + "noteType": "dataSource" + }, + { + "label": [ + "U\u0308berfamilie der Schmetterlinge" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7740795-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)101081933X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7740795-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Bombycoidea", + "Spinnerartige", + "Spinner (U\u0308berfamilie)" + ], + "authorized_access_point": "Spinner und Schwa\u0308rmer (U\u0308berfamilie)" + }, + { + "md5": "ff374966e68874ce1ab570362c34af24", + "pid": "1010820389", + "note": [ + { + "label": [ + "Wikipedia unter Systematik der Schmetterlinge - https://de.wikipedia.org/wiki/Systematik_der_Schmetterlinge" + ], + "noteType": "dataSource" + }, + { + "label": [ + "U\u0308berfamilie der Schmetterlinge innerhalb der Unterordnung Glossata" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schmetterlinge" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7740801-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1010820389", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7740801-9", + "source": "GND" + } + ], + "authorized_access_point": "Drepanoidea" + }, + { + "md5": "2f8cf3b0caf66b663197f63339d3ced7", + "pid": "1010824597", + "note": [ + { + "label": [ + "U\u0308berfamilie der Schmetterlinge" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schmetterlinge" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7740844-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1010824597", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7740844-5", + "source": "GND" + } + ], + "authorized_access_point": "Hesperioidea" + }, + { + "md5": "c534d967659db5a811f8ff79d0fd10cb", + "pid": "1011095351", + "note": [ + { + "label": [ + "Wikipedia unter Liliena\u0308hnliche - https://de.wikipedia.org/wiki/Lilien%C3%A4hnliche" + ], + "noteType": "dataSource" + }, + { + "label": [ + "einkeimbla\u0308ttrige Famile aus der Ordnung der Spargelartigen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Spargelartige" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134821204", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2003011156", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2003011156" + } + ], + "authorized_access_point": "Hemerocallidaceae" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7742665-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1011095351", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7742665-4", + "source": "GND" + } + ], + "authorized_access_point": "Phormiaceae" + }, + { + "md5": "2bca381a5cb2117c3c07f5f55dde2253", + "pid": "1011172399", + "note": [ + { + "label": [ + "Lex. Biol. (1999) als Cunoniaceae - http://www.spektrum.de/lexikon/biologie/cunoniaceae/16042", + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Cunoniaceae&oldid=165412165" + ], + "noteType": "dataSource" + }, + { + "label": [ + "zweikeimbla\u0308ttrige Pflanzenfamilie" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133862942", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85034815", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85034815" + } + ], + "authorized_access_point": "Cunoniaceae" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133862942", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13515290", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb135152906" + } + ], + "authorized_access_point": "Cunoniace\u0301es" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7743101-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1011172399", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7743101-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Cunoniengewa\u0308chse", + "Cunoniaceae" + ], + "authorized_access_point": "Cunoniagewa\u0308chse" + }, + { + "md5": "8da5dabcfcf991d8fdc1524c26716f34", + "pid": "1011212722", + "note": [ + { + "label": [ + "Wikipedia unter Lactoris fernandeziana - https://de.wikipedia.org/wiki/Lactoris_fernandeziana" + ], + "noteType": "dataSource" + }, + { + "label": [ + "monotypische Ordnung der Magnoliopsida, deren einzige Gattung mit nur manchmal auch zu den Pfefferartigen oder zu den Osterluzeigewa\u0308chsen gerechnet wird" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7743251-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1011212722", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7743251-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Lactoridaceae", + "Lactoris", + "Lactoris fernandeziana" + ], + "authorized_access_point": "Lactoridales" + }, + { + "md5": "49d4aca6cd467fea7339553f502f8b6a", + "pid": "1011253313", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Australheidegew%C3%A4chse" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Familie der Heidekrautartigen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7743404-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1011253313", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7743404-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Epacridaceae", + "Australheidengewa\u0308chse", + "Styphelioideae" + ], + "authorized_access_point": "Australheidegewa\u0308chse" + }, + { + "md5": "fedc053512dab16697c231c5173b96a7", + "pid": "1011278723", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Biebersteinia" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Familie der Seifenbaumartigen; Einzige Gattung Biebersteinia" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7743558-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1011278723", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7743558-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Biebersteinia" + ], + "authorized_access_point": "Biebersteiniaceae" + }, + { + "md5": "fcc29ffd2888890dd020984348321fc4", + "pid": "1011281368", + "note": [ + { + "label": [ + "Wikipedia unter Keulenfru\u0308chte - https://de.wikipedia.org/wiki/Keulenfr%C3%BCchte" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Familie unsicherer systematischer Stellung fru\u0308her zu den Spindelbaumartigen heute eher zu den Cucurbitales gerechnet" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7743592-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1011281368", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7743592-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Keulenfrucht (Gattung)", + "Keulenfru\u0308chte (Gattung)", + "Corynocarpaceae", + "Corynocarpus", + "Karakabaum (Gattung)", + "Corinocarpus", + "Merretia" + ], + "authorized_access_point": "Keulenfruchtgewa\u0308chse" + }, + { + "md5": "144ff904ff334d0a45dd6a35b850bee0", + "pid": "1011282518", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Kirkiaceae" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Familie der Seifenbaumartigen [sensu Sapindales]" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Seifenbaumartige" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7743599-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1011282518", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7743599-0", + "source": "GND" + } + ], + "authorized_access_point": "Kirkiaceae" + }, + { + "md5": "13da36da922a68e5205f4b1c815dc4b2", + "pid": "1011285436", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Nitrariaceae" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Familie der Seifenbaumartigen [Sapindales]" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Seifenbaumartige" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134821166", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16063257", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16063257g" + } + ], + "authorized_access_point": "Nitraria" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7743625-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1011285436", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7743625-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Nitraria" + ], + "authorized_access_point": "Nitrariaceae" + }, + { + "md5": "4335b4bf1cf61cd6d4de01d2aaa59559", + "pid": "1011285738", + "note": [ + { + "label": [ + "Wikipedia unter Seifenbaumartige - https://de.wikipedia.org/wiki/Seifenbaumartige" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Familie der Seifenbaumartigen (Sapindales)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Seifenbaumartige" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7743628-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1011285738", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7743628-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Tetradiclis" + ], + "authorized_access_point": "Tetradiclidaceae" + }, + { + "md5": "9a38673c7bc169ced0fe04e8e0116a85", + "pid": "1011385856", + "note": [ + { + "label": [ + "Wikipedia unter Kobralilie - https://de.wikipedia.org/wiki/Kobralilie" + ], + "noteType": "dataSource" + }, + { + "label": [ + "in NW-Amerika endemische, monotypische Gattung der Schlauchpflanzengewa\u0308chse" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schlauchpflanzengewa\u0308chse" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134821107", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85035810", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85035810" + } + ], + "authorized_access_point": "Darlingtonia californica" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7743987-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1011385856", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7743987-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Darlingtonia", + "Darlingtonia californica", + "Darlingtonie", + "Kobraschlauchpflanze (Gattung)", + "Kobralilie (Gattung)", + "Kobralilien (Gattung)", + "Kobraschlauchpflanze", + "Kobralilie", + "Chrysamphora", + "Chrysamphora californica" + ], + "authorized_access_point": "Kobrapflanze" + }, + { + "md5": "a5d04cbae1e84427721abc3ea6b54b8b", + "pid": "1011536455", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Dorschbarsche" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134832605", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh92004648", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh92004648" + } + ], + "authorized_access_point": "Macquarie perch" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134832605", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17156241", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17156241x" + } + ], + "authorized_access_point": "Macquaria australasica" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7744753-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1011536455", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7744753-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Macquarie Perch", + "Mountain Perch" + ], + "authorized_access_point": "Macquaria australasica" + }, + { + "md5": "d0b5943d41e3cad0acd2f9079dcddddc", + "pid": "1011935201", + "note": [ + { + "label": [ + "Entstehungsjahr: 1910, auch halbfett 1910" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fraktur (Druckschrift)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7746253-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1011935201", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7746253-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Weltfraktur" + ], + "authorized_access_point": "Welt-Fraktur" + }, + { + "md5": "6b4e02509e1c636efcbc58c710de4ab1", + "pid": "1011954141", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333473001", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85099724", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85099724" + } + ], + "authorized_access_point": "Percichthyidae" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333473001", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17156205", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb171562052" + } + ], + "authorized_access_point": "Percichthyidae" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7746334-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1011954141", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7746334-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Percichthyidae" + ], + "authorized_access_point": "Dorschbarsche" + }, + { + "md5": "10371644ed9b393073574683660a0f34", + "pid": "1013014065", + "note": [ + { + "label": [ + "\u00a7 20a WpHG" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Manipulation" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7749818-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1013014065", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7749818-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Bo\u0308rsen- und Marktmanipulation", + "Kursmanipulation", + "Marktpreismanipulation", + "Strafbare Marktmanipulation", + "Marktmanipulationsverbot", + "Kursbetrug", + "Kurs- und Marktpreismanipulation", + "Marktmanipulation", + "Finanzinstrument" + ], + "authorized_access_point": "Marktmanipulation" + }, + { + "md5": "bdc9a386e97dbfbc88ef22786882026e", + "pid": "1013709640", + "note": [ + { + "label": [ + "Japan. Tanzform, im 8. Jh. aus China u\u0308bernommen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tanz" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134319576", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh88005510", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh88005510" + } + ], + "authorized_access_point": "Gigaku" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134319576", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12423745", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb124237455" + } + ], + "authorized_access_point": "Gigaku" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7753091-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1013709640", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7753091-3", + "source": "GND" + } + ], + "authorized_access_point": "Gigaku" + }, + { + "md5": "db6d208975fd8974e160c596fd313a0f", + "pid": "1014400783", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Auktion" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1335137777", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2003012332", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2003012332" + } + ], + "authorized_access_point": "Postage stamp auctions" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7755757-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1014400783", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7755757-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Briefmarke", + "Briefmarkenversteigerung" + ], + "authorized_access_point": "Briefmarkenauktion" + }, + { + "md5": "7035c5f9a2a269400b9e86f65eb4d45f", + "pid": "1015079253", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7758150-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1015079253", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7758150-7", + "source": "GND" + } + ], + "authorized_access_point": "Anschluss O\u0308sterreichs (Motiv)" + }, + { + "md5": "c5699e8d2e97a0d0381b16c557663557", + "pid": "1015187382", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kieselsediment" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7758564-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1015187382", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7758564-1", + "source": "GND" + } + ], + "authorized_access_point": "Kieselschiefer" + }, + { + "md5": "a23d26b606abe80fb6bec928f0217e40", + "pid": "1016326106", + "note": [ + { + "label": [ + "auf Homologien beruhende, den verwandtschaftlichen Beziehungen entsprechende Gruppierung der Organismen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Klassifikation" + }, + { + "authorized_access_point": "Systematik" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7836847-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1016326106", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7836847-9", + "source": "GND" + } + ], + "authorized_access_point": "Natu\u0308rliches System" + }, + { + "md5": "c1729f6af51d5ae73c55b4cab13c5b93", + "pid": "1016599463", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Okkultistin" + }, + { + "authorized_access_point": "Okkultismus" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331753430", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh87003651", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh87003651" + } + ], + "authorized_access_point": "Occultists" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331753430", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16745674", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16745674f" + } + ], + "authorized_access_point": "Occultistes" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7840293-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1016599463", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7840293-1", + "source": "GND" + } + ], + "authorized_access_point": "Okkultist" + }, + { + "md5": "2d51af55b6a15b0ef9082eeaf73248d5", + "pid": "1016810989", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Kugelk%C3%A4fer" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Ka\u0308ferfamilie" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133797040", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12438548", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb124385482" + } + ], + "authorized_access_point": "Sphaeriusidae" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7840811-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1016810989", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7840811-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Sphaeriusidae", + "Sphaeridae", + "Sphaeriidae", + "Microsporidae", + "Sphaerius" + ], + "authorized_access_point": "Kugelka\u0308fer" + }, + { + "md5": "7ed05fc94a7f6661fa6525d88c89308a", + "pid": "1017027366", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Picrodendraceae" + ], + "noteType": "dataSource" + }, + { + "label": [ + "zweikeimbla\u0308ttrige Familie, mit den Wolfsmilchgewa\u0308chsen nah verwandt" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Malpighienartige" + } + ], + "related": [ + { + "authorized_access_point": "Wolfsmilchgewa\u0308chse" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7841608-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1017027366", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7841608-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Euphorbiaceae subtrib. Picrodendrinae", + "Euphorbiaceae trib. Picrodendreae", + "Euphorbiaceae subfam. Oldfieldioideae", + "Euphorbiaceae subtrib. Dissiliariinae", + "Euphorbiaceae subtrib. Paivaeusinae", + "Euphorbiaceae subtrib. Petalostimatinae", + "Euphorbiaceae subtrib. Toxicodendrinae" + ], + "authorized_access_point": "Picrodendraceae" + }, + { + "md5": "1dce1c0726ebeca373d422b1627428a0", + "pid": "1017177503", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Einwanderin" + }, + { + "authorized_access_point": "Chilenin" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7842262-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1017177503", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7842262-0", + "source": "GND" + } + ], + "authorized_access_point": "Chilenische Einwanderin" + }, + { + "md5": "21b432860e806602105c31d2629252b2", + "pid": "1017217165", + "note": [ + { + "label": [ + "Wikipedia unter Noctuoidea - https://de.wikipedia.org/wiki/Noctuoidea" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Unterfamilie der Schmetterlingsfamilie Eulen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Eulen (Schmetterlinge)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7842430-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1017217165", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7842430-6", + "source": "GND" + } + ], + "authorized_access_point": "Psaphidinae" + }, + { + "md5": "df236aed2a273e7044bc7ba3313240db", + "pid": "1017490090", + "note": [ + { + "label": [ + "OBV - https://permalink.obvsg.at/AC08535331", + "Wikipedia - https://de.wikipedia.org/wiki/%C3%96BB_4020" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Elektrotriebwagen der O\u0308BB, gebaut 1978-1987" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Elektrotriebwagen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7843327-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1017490090", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7843327-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Triebwagen Baureihe 4020", + "O\u0308BB Reihe 4020", + "O\u0308BB 4020" + ], + "authorized_access_point": "Elektrotriebwagen Baureihe 4020" + }, + { + "md5": "97a794212fd5a58c71316591a27fca97", + "pid": "1017491062", + "note": [ + { + "label": [ + "OBV - https://permalink.obvsg.at/AC08535334", + "Wikipedia - https://de.wikipedia.org/wiki/%C3%96BB_4030" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Elektrotriebwagen der O\u0308BB, gebaut 1956-1975" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Elektrotriebwagen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7843328-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1017491062", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7843328-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Triebwagen Baureihe 4030", + "O\u0308BB Reihe 4030", + "O\u0308BB 4030" + ], + "authorized_access_point": "Elektrotriebwagen Baureihe 4030" + }, + { + "md5": "f5adacb632ee5afc1ddac954233c5847", + "pid": "1018220429", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Westfa\u0308lisch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7846068-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1018220429", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7846068-2", + "source": "GND" + } + ], + "authorized_access_point": "Mundart Westfa\u0308lisch (Kreis Herford)" + }, + { + "md5": "d91acaddede4794d12b78c674f5e6fd1", + "pid": "1019980389", + "note": [ + { + "label": [ + "Benutzt soweit im Ausland lebend" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausla\u0308ndischer Student" + }, + { + "authorized_access_point": "O\u0308sterreicher" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133467972X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85009755", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85009755" + } + ], + "authorized_access_point": "Austrian students" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133467972X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17124632", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17124632z" + } + ], + "authorized_access_point": "E\u0301tudiants autrichiens" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7855380-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1019980389", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7855380-5", + "source": "GND" + } + ], + "authorized_access_point": "O\u0308sterreichischer Student" + }, + { + "md5": "944566984ec273311e8e13500b170513", + "pid": "1021256064", + "note": [ + { + "label": [ + "Hypothetisches Meson aus vier Quarks." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Exotisches Hadron" + } + ], + "related": [ + { + "authorized_access_point": "Quark (Physik)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7863105-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1021256064", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7863105-1", + "source": "GND" + } + ], + "authorized_access_point": "Tetraquark" + }, + { + "md5": "bfcbede0edf11ea0bb35da9574b46d2c", + "pid": "1022832425", + "note": [ + { + "label": [ + "Ordnung Mucorales" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134250681", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh86007263", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh86007263" + } + ], + "authorized_access_point": "Mucoraceae" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134250681", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12270265", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12270265c" + } + ], + "authorized_access_point": "Mucorace\u0301es" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1022832425", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1022832425", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1022832425", + "source": "GND" + } + ], + "authorized_access_point": "Mucoraceae" + }, + { + "md5": "7b375e94b72e3d24f613a5cbc5081ea6", + "pid": "1023362872", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133337481X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85021929", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85021929" + } + ], + "authorized_access_point": "Centrarchidae" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133337481X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15555678", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15555678j" + } + ], + "authorized_access_point": "Centrarchide\u0301s" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1023362872", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1023362872", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1023362872", + "source": "GND" + } + ], + "variant_access_point": [ + "Centrarchidae", + "Sunfish" + ], + "authorized_access_point": "Sonnenbarsche (Familie)" + }, + { + "md5": "e10c89ac68929424a160add0f37b85ef", + "pid": "1023745712", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tankstelle" + }, + { + "authorized_access_point": "Batterieaufladung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1228385939", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2012003590", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2012003590" + } + ], + "authorized_access_point": "Battery charging stations (Electric vehicles)" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)120528379X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "30212-2", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/30212-2" + } + ], + "authorized_access_point": "Ladeinfrastruktur" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1023745712", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1023745712", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1023745712", + "source": "GND" + } + ], + "variant_access_point": [ + "Elektrotankstelle", + "Ladestation", + "Ladesa\u0308ule", + "Ladeinfrastruktur", + "Charging station" + ], + "authorized_access_point": "Stromtankstelle" + }, + { + "md5": "6585d469260d24f1a715a9efaaceeefd", + "pid": "1025228928", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Spezielle Soziologie" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1026988039", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10044108", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10044108" + } + ], + "authorized_access_point": "Geschlechterforschung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1025228928", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1025228928", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1025228928", + "source": "GND" + } + ], + "authorized_access_point": "Geschlechtersoziologie" + }, + { + "md5": "19d24a325a1a81729435b039e90686c5", + "pid": "1026351537", + "note": [ + { + "label": [ + "Tonstempel mit verschiedenen Verzierungsmustern, schon in d. Jungsteinzeit bekannt" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Stempel" + } + ], + "related": [ + { + "authorized_access_point": "Brotlaibidol" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334232970", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18066386", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb18066386b" + } + ], + "authorized_access_point": "Pintaderas" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1026351537", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1026351537", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1026351537", + "source": "GND" + } + ], + "authorized_access_point": "Pintadera" + }, + { + "md5": "dc759b4de205887805de52d08f477fbc", + "pid": "1026470986", + "note": [ + { + "label": [ + "Erstflug 1958" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Transportflugzeug" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1026470986", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1026470986", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1026470986", + "source": "GND" + } + ], + "variant_access_point": [ + "De Havilland Canada DHC-4 Caribou", + "De Havilland D.H. 4 Caribou", + "D.H. 4 Caribou", + "DHC 4", + "DHC-4" + ], + "authorized_access_point": "DHC-4 Caribou" + }, + { + "md5": "8c88a6c6534a05fb7d9d4cb777362e9c", + "pid": "1027071171", + "note": [ + { + "label": [ + "NCBI-Taxonomy - http://www.ncbi.nlm.nih.gov/taxonomy?term=sciaenops%20ocellatus" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Umberfische" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333485506", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85022524", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85022524" + } + ], + "authorized_access_point": "Red drum" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333485506", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17807388", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb178073888" + } + ], + "authorized_access_point": "Tambour rouge" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1027071171", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1027071171", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1027071171", + "source": "GND" + } + ], + "variant_access_point": [ + "Perca ocellata", + "Red drum", + "Roter Trommler" + ], + "authorized_access_point": "Sciaenops ocellatus" + }, + { + "md5": "8c249912aef0c4ea84cf1a919f1593a5", + "pid": "1027073808", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331845491", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh88020731", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh88020731" + } + ], + "authorized_access_point": "Galatheidae" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331845491", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15749610", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb157496101" + } + ], + "authorized_access_point": "Galathe\u0301ide\u0301s" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1027073808", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1027073808", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1027073808", + "source": "GND" + } + ], + "variant_access_point": [ + "Galatheidae", + "Squat lobsters" + ], + "authorized_access_point": "Furchenkrebse" + }, + { + "md5": "d571c4fde4f255b621b1ace416f39b51", + "pid": "1028524978", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ethnologie" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134386982", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh93005976", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh93005976" + } + ], + "authorized_access_point": "Visual anthropology" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134386982", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13168664", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13168664t" + } + ], + "authorized_access_point": "Anthropologie visuelle" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254500537", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX545504", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX545504" + } + ], + "authorized_access_point": "Antropologi\u0301a visual" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1028524978", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1028524978", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1028524978", + "source": "GND" + } + ], + "variant_access_point": [ + "Visuelle Anthropologie", + "Visual anthropology" + ], + "authorized_access_point": "Visuelle Ethnologie" + }, + { + "md5": "5b52b373b8c0e7cd11b137c1701e0364", + "pid": "1029263361", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Proteste_in_Spanien_2011/2012&oldid=246952051", + "Wikipedia - https://es.wikipedia.org/wiki/Movimiento_15-M" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Span. polit. Protestbewegung seit d. 15. Mai 2011" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Protestbewegung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1029263361", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1029263361", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1029263361", + "source": "GND" + } + ], + "variant_access_point": [ + "15M", + "15-M", + "Indignados", + "Movimiento de los indignados", + "Bewegung 15. Mai" + ], + "authorized_access_point": "Movimiento 15-M" + }, + { + "md5": "18d2a2f0580a7db8585745ca50c3fd11", + "pid": "1030464197", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1030464197", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1030464197", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1030464197", + "source": "GND" + } + ], + "authorized_access_point": "Stoff (Motiv)" + }, + { + "md5": "4fcf465ac4b257262d9537a331e3d184", + "pid": "1033705691", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Marienfest" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331871239", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17737043", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17737043x" + } + ], + "authorized_access_point": "Nativite\u0301 de Marie (fe\u0302te)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1033705691", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1033705691", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1033705691", + "source": "GND" + } + ], + "authorized_access_point": "Maria\u0308 Geburt" + }, + { + "md5": "14e0bc44092997c7b9deb82138503037", + "pid": "1034281828", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1034281828", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1034281828", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1034281828", + "source": "GND" + } + ], + "authorized_access_point": "Hauswirtschaft (Motiv)" + }, + { + "md5": "02259806d69c144b4d3c5b17c349a6c0", + "pid": "1036857263", + "note": [ + { + "label": [ + "Wikipedia, unter Kindesmisshandlung - https://de.wikipedia.org/w/index.php?oldid=245619752" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Missbrauch" + } + ], + "related": [ + { + "authorized_access_point": "Psychoterror" + }, + { + "authorized_access_point": "Mobbing" + }, + { + "authorized_access_point": "Gaslighting" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1221158570", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh94002308", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh94002308" + } + ], + "authorized_access_point": "Psychological abuse" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1221158570", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16918426", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16918426g" + } + ], + "authorized_access_point": "Violence psychologique" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1036857263", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1036857263", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1036857263", + "source": "GND" + } + ], + "variant_access_point": [ + "Psychischer Missbrauch", + "Emotionale Gewalt", + "Psychische Gewalt", + "Seelische Gewalt" + ], + "authorized_access_point": "Emotionaler Missbrauch" + }, + { + "md5": "ebfdd136d30207b3e665eab039f13331", + "pid": "1036907430", + "note": [ + { + "label": [ + "Benutzt soweit im Ausland lebend" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausla\u0308ndischer Student" + }, + { + "authorized_access_point": "Belgier" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334679959", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85012953", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85012953" + } + ], + "authorized_access_point": "Belgian students" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334679959", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16084808", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16084808k" + } + ], + "authorized_access_point": "E\u0301tudiants belges" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1036907430", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1036907430", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1036907430", + "source": "GND" + } + ], + "authorized_access_point": "Belgischer Student" + }, + { + "md5": "fd9fed7c88ef6722abb17d6c6b2dc274", + "pid": "1037919874", + "note": [ + { + "label": [ + "Internet - http://www.menantes-wandersleben.de/litpreis.html" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Seit 2006 alle zwei Jahre vom Menantes-Fo\u0308rderkreis und Ev. Kirchengemeinde Wandersleben vergebener Literaturpreis" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Literaturpreis" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1037919874", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1037919874", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1037919874", + "source": "GND" + } + ], + "variant_access_point": [ + "Menantes-Preis", + "Menantes-Preis fu\u0308r erotische Literatur" + ], + "authorized_access_point": "Menantes-Preis fu\u0308r erotische Dichtung" + }, + { + "md5": "51af0deae7800ffec767bd3cb41d1f86", + "pid": "1041610890", + "note": [ + { + "label": [ + "Als Nocebo-Effekt (Nocebo = lat. \u201eIch werde schaden.\u201c) bezeichnet man das Auftreten oder die Zunahme von Krankheitssymptomen nach einer medizinischen oder pharmakologischen Behandlung, wobei die Symtomatik von den negativen Erwartungen des Patienten ausgelo\u0308st wird, nicht von der Behandlung selbst." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Nebenwirkung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1222525097", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16254337", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16254337h" + } + ], + "authorized_access_point": "Effet nocebo" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)128220467X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D064786", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D064786" + } + ], + "authorized_access_point": "Nocebo Effect" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1041610890", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1041610890", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1041610890", + "source": "GND" + } + ], + "variant_access_point": [ + "Nocebo", + "Nocebowirkung", + "Noceboantwort" + ], + "authorized_access_point": "Nocebo-Effekt" + }, + { + "md5": "95b945b3e47002f4425b65726abd9755", + "pid": "1041611064", + "note": [ + { + "label": [ + "Meist u\u0308ber digitale Plattformen abgewickelte Finanzierungsmo\u0308glichkeit, bei der eine gro\u0308\u00dfere Anzahl von Personen den Finanzierungsbedarf eines Projektes deckt." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Finanzierung" + }, + { + "authorized_access_point": "Kapitalbeschaffung" + }, + { + "authorized_access_point": "Crowdsourcing" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334879613", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2012003482", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2012003482" + } + ], + "authorized_access_point": "Crowd funding" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334879613", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16596756q", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://catalogue.bnf.fr/ark:/12148/cb16596756q" + } + ], + "authorized_access_point": "Financement participatif" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1042215081", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "30026-6", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/30026-6" + } + ], + "authorized_access_point": "Crowdfunding" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1041611064", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1041611064", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1041611064", + "source": "GND" + } + ], + "variant_access_point": [ + "Schwarmfinanzierung", + "Crowdinvestment", + "Crowdinvesting" + ], + "authorized_access_point": "Crowdfunding" + }, + { + "md5": "01f0f13d51b02fab258717c7c197e8e9", + "pid": "1044279206", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Weinkellner&oldid=209455822" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kellnerin" + } + ], + "related": [ + { + "authorized_access_point": "Sommelier" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1044279206", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1044279206", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1044279206", + "source": "GND" + } + ], + "variant_access_point": [ + "Weinkellnerin" + ], + "authorized_access_point": "Sommelie\u0300re" + }, + { + "md5": "de00fd36ccbb6c96f852d7802b3796ed", + "pid": "1047231085", + "note": [ + { + "label": [ + "Politische Demonstration 28.8.1963 fu\u0308r mehr Menschenrechte der afroamerikanischen Bu\u0308rger" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bu\u0308rgerrechtsbewegung" + }, + { + "authorized_access_point": "Demonstration" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133845851", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "n2012036795", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/names/n2012036795" + } + ], + "authorized_access_point": "March on Washington for Jobs and Freedom (1963 : Washington, D.C.)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133845851", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13194028", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13194028z" + } + ], + "authorized_access_point": "Marche sur Washington (1963)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1047231085", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1047231085", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1047231085", + "source": "GND" + } + ], + "variant_access_point": [ + "March on Washington for jobs and freedom", + "Marsch auf Washington", + "The great March on Washington" + ], + "authorized_access_point": "Marsch auf Washington fu\u0308r Arbeit und Freiheit" + }, + { + "md5": "b0e89bef94de4d39ceb042eca111d18d", + "pid": "104797553X", + "note": [ + { + "label": [ + "Flussdelphine des Ganges-Brahmaputra-Systems und des Mittellaufs des Indus" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zahnwale" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331847222", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85114240", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85114240" + } + ], + "authorized_access_point": "River dolphins" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331847222", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13541390", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb135413904" + } + ], + "authorized_access_point": "Dauphins d'eau douce" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/104797553X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)104797553X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)104797553X", + "source": "GND" + } + ], + "variant_access_point": [ + "Su\u0308\u00dfwasserdelphine", + "Gangesdelphine", + "Indusdelphine", + "Platanistidae" + ], + "authorized_access_point": "Schnabeldelphine" + }, + { + "md5": "fa7a23fc5365386c52a68558151c2b20", + "pid": "1049270851", + "note": [ + { + "label": [ + "Derivat der Salicylsa\u0308ure und des Anilins, die miteinander als Amid verknu\u0308pft sind (Salicylanilid); Wirkung: Vermizid und Molluskizid; C13H8Cl2N2O4" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Salicylsa\u0308urederivate" + }, + { + "authorized_access_point": "Anilinderivate" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1279524227", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D009534", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D009534" + } + ], + "authorized_access_point": "Niclosamide" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1049270851", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1049270851", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1049270851", + "source": "GND" + } + ], + "variant_access_point": [ + "Ethanolamin-Salz" + ], + "authorized_access_point": "Niclosamid" + }, + { + "md5": "b1e87676de0f78b446d8a515eb0b0d4b", + "pid": "1049453719", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Urheberrechtsverletzung&oldid=196809744" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Versto\u00df gegen urheberrechtliche Vorschriften" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Urheberrecht" + }, + { + "authorized_access_point": "Rechtsverletzung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254498478", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX4576999", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX4576999" + } + ], + "authorized_access_point": "Delitos contra la propiedad intelectual" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113404321X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85032500", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85032500" + } + ], + "authorized_access_point": "Copyright infringement" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113404321X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11976722", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119767220" + } + ], + "authorized_access_point": "Infractions au droit d'auteur" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1049453719", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1049453719", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1049453719", + "source": "GND" + } + ], + "variant_access_point": [ + "Urheberrechtsversto\u00df", + "Urheberrecht" + ], + "authorized_access_point": "Urheberrechtsverletzung" + }, + { + "md5": "c062c5a1ced2417bccb2f9b2c0a0645d", + "pid": "1049971213", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sonnenbarsche (Familie)" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333375107", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85109081", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85109081" + } + ], + "authorized_access_point": "Pumpkinseed (Fish)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333375107", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17800495", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb178004954" + } + ], + "authorized_access_point": "Crapet-soleil" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1049971213", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1049971213", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1049971213", + "source": "GND" + } + ], + "variant_access_point": [ + "Gemeiner Sonnenbarsch", + "Lepomis gibbosus" + ], + "authorized_access_point": "Sonnenbarsch" + }, + { + "md5": "24434869dbb0d5b84d52fb58f02951f5", + "pid": "1050440188", + "note": [ + { + "label": [ + "Ethnie im Hochland Papua-Neuguineas, Southern Highlands Province" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Papua" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134383754", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12699651", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb126996512" + } + ], + "authorized_access_point": "Wiru (peuple de Papouasie-Nouvelle-Guine\u0301e)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1050440188", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1050440188", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1050440188", + "source": "GND" + } + ], + "variant_access_point": [ + "Witu (Volk)", + "Pangia" + ], + "authorized_access_point": "Wiru" + }, + { + "md5": "53eb1d4398a48c6ade9c5a7ae8e2df72", + "pid": "1050801644", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Westfla\u0308misch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1050801644", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1050801644", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1050801644", + "source": "GND" + } + ], + "authorized_access_point": "Mundart Westfla\u0308misch (Bachten de Kupe)" + }, + { + "md5": "1825a3f4264053de730a6b925ded123e", + "pid": "1051146089", + "note": [ + { + "label": [ + "Fu\u0308r das schwedische Mode- und Kulturmagazin \"Rodeo\" 2012 bei \"Letters from Sweden\" entworfen; beeinflusst von Scho\u0308nheit, Schreibschrift, Graffiti und Kritzeleien" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Font" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1051146089", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1051146089", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1051146089", + "source": "GND" + } + ], + "authorized_access_point": "Line (Druckschrift)" + }, + { + "md5": "89afa3191c30c0b522209ca59291bd2e", + "pid": "1051355478", + "note": [ + { + "label": [ + "Soziale Bewegung mit Zentrum in der kongolesischen Hauptstadt Brazzaville, die sich durch das Tragen sehr eleganter Kleidung im Stile englischer Dandys bzw. Gentleman auszeichnet" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Soziale Bewegung" + } + ], + "related": [ + { + "authorized_access_point": "Mode" + }, + { + "authorized_access_point": "Sapeur" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1051355478", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1051355478", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1051355478", + "source": "GND" + } + ], + "variant_access_point": [ + "La Sape" + ], + "authorized_access_point": "Socie\u0301te\u0301 des Ambianceurs et des Personnes E\u0301le\u0301gantes" + }, + { + "md5": "6bc464c47e581708c377e902fbec1eb8", + "pid": "1052970427", + "note": [ + { + "label": [ + "Raum, Kabine fu\u0308r den Projektor in einem Kino" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Kino" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1052970427", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1052970427", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1052970427", + "source": "GND" + } + ], + "variant_access_point": [ + "Filmvorfu\u0308hrraum", + "Vorfu\u0308hrraum", + "Projektionskabine" + ], + "authorized_access_point": "Projektionsraum (Kino)" + }, + { + "md5": "8229c7a12707ea1f68b964b63d987952", + "pid": "1054037531", + "note": [ + { + "label": [ + "Sammelbezeichnung fu\u0308r Reisen mit geistlichen, religio\u0308sen oder kirchlichen Inhalten" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tourismus" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332366457", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2021007042", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2021007042" + } + ], + "authorized_access_point": "Spiritual tourism" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332366457", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12323007", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12323007h" + } + ], + "authorized_access_point": "Tourisme spirituel" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1054037531", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1054037531", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1054037531", + "source": "GND" + } + ], + "variant_access_point": [ + "Religio\u0308ser Tourismus" + ], + "authorized_access_point": "Spiritueller Tourismus" + }, + { + "md5": "24abf5117dc186f02271e77825ba13a6", + "pid": "1054182620", + "note": [ + { + "label": [ + "Markengattung zum Freimachen von Drucksachen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Briefmarke" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1054182620", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1054182620", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1054182620", + "source": "GND" + } + ], + "authorized_access_point": "Drucksachenmarke" + }, + { + "md5": "3e4a26cb8c6316f57b9aa72060f0c1a8", + "pid": "1054182779", + "note": [ + { + "label": [ + "Markenart zur Freimachung bei Massenauslieferung von Gescha\u0308ftsdrucksachen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Drucksachenmarke" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1054182779", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1054182779", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1054182779", + "source": "GND" + } + ], + "authorized_access_point": "Gescha\u0308ftsdrucksachenmarke" + }, + { + "md5": "439543d703d1831fae2e654229223d67", + "pid": "1054183104", + "note": [ + { + "label": [ + "Markengattung zum Frankieren von Zeitungssendungen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Briefmarke" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1054183104", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1054183104", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1054183104", + "source": "GND" + } + ], + "authorized_access_point": "Zeitungsmarke" + }, + { + "md5": "6e28cb814b9d2b7ec50aae02b438f5b0", + "pid": "1055013458", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Antiqua" + }, + { + "authorized_access_point": "Font" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1055013458", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1055013458", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1055013458", + "source": "GND" + } + ], + "authorized_access_point": "Fresco (Druckschrift)" + }, + { + "md5": "84c4d76ccaf32de675ae112f00b05055", + "pid": "1055857745", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Gaskonisch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1055857745", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1055857745", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1055857745", + "source": "GND" + } + ], + "authorized_access_point": "Mundart Gaskonisch (Entre-deux-Mers)" + }, + { + "md5": "7aae1390443bc9c79b702f20833e00ab", + "pid": "1058118161", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Musikerin" + } + ], + "related": [ + { + "authorized_access_point": "Bluesmusiker" + }, + { + "authorized_access_point": "Blues" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331602610", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh96006944", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh96006944" + } + ], + "authorized_access_point": "Women blues musicians" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331602610", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16619055", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16619055p" + } + ], + "authorized_access_point": "Musiciennes de blues" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1058118161", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1058118161", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1058118161", + "source": "GND" + } + ], + "authorized_access_point": "Bluesmusikerin" + }, + { + "md5": "beaf5131c9f7ecef6a218bb7426470b0", + "pid": "1058206753", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Gegisch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1058206753", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1058206753", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1058206753", + "source": "GND" + } + ], + "variant_access_point": [ + "Petreshtice\u0308r Albanisch" + ], + "authorized_access_point": "Mundart Albanisch (Petreshtice\u0308)" + }, + { + "md5": "f570b2838cbe3cbe3ed3248061fe93d4", + "pid": "1058249436", + "note": [ + { + "label": [ + "Benutzt fu\u0308r Tiere" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bein" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1058249436", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1058249436", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1058249436", + "source": "GND" + } + ], + "variant_access_point": [ + "Hinterlauf" + ], + "authorized_access_point": "Hinterbein" + }, + { + "md5": "b18dea8ba973d110d44e2b2785616e95", + "pid": "1058280910", + "note": [ + { + "label": [ + "Kombiniere mit Sprachbezeichnung und Wortart, z.B. SWW Mittelhochdeutsch ; Adjektiv ; saelic" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1058280910", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1058280910", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1058280910", + "source": "GND" + } + ], + "authorized_access_point": "saelic" + }, + { + "md5": "85b00a92812766f0d2297d1a6eda4d44", + "pid": "1058284096", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Roter Riese" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1058284096", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1058284096", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1058284096", + "source": "GND" + } + ], + "authorized_access_point": "OH/IR-Stern" + }, + { + "md5": "d4027af298ae717ed0d000761dbff3db", + "pid": "1058284304", + "note": [ + { + "label": [ + "Kombiniere mit Sprachbezeichnung und SW Morphem, z. B. SWW Altenglisch ; Morphem ; aht, Morphem" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1058284304", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1058284304", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1058284304", + "source": "GND" + } + ], + "authorized_access_point": "aht (Morphem)" + }, + { + "md5": "6f405e5259f23afd1bb47b209e737aad", + "pid": "1058284371", + "note": [ + { + "label": [ + "Kombiniere mit Sprachbezeichnung und SW Morphem, z. B. SWW Altenglisch ; Morphem ; oht" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1058284371", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1058284371", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1058284371", + "source": "GND" + } + ], + "authorized_access_point": "oht" + }, + { + "md5": "a723f7bf8c90f4d7ce2d9713abdb9811", + "pid": "1058370677", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1058370677", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1058370677", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1058370677", + "source": "GND" + } + ], + "authorized_access_point": "Castrop-Rauxel (Motiv)" + }, + { + "md5": "786668fb78bd73815f9b84e68f25e86a", + "pid": "1058371266", + "note": [ + { + "label": [ + "5-teiliger antiker Versfu\u00df" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Versfu\u00df" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1058371266", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1058371266", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1058371266", + "source": "GND" + } + ], + "authorized_access_point": "Dochmius" + }, + { + "md5": "3a48803f0095f4bafc4d06ef28b62e51", + "pid": "1058382799", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Westfa\u0308lisch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1058382799", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1058382799", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1058382799", + "source": "GND" + } + ], + "variant_access_point": [ + "Almer Platt" + ], + "authorized_access_point": "Mundart Westfa\u0308lisch (Brilon-Alme)" + }, + { + "md5": "fec990af264ad90b7b340e9e5702e8da", + "pid": "1058389041", + "note": [ + { + "label": [ + "Ordnung der Braunalgen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1058389041", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1058389041", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1058389041", + "source": "GND" + } + ], + "authorized_access_point": "Tilopteridales" + }, + { + "md5": "0e0d92ddbc5deb0266b4bbd65aaaf62d", + "pid": "1058507044", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Ethnolekt&oldid=193420767" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Sammelbegriff fu\u0308r sprachliche Varianten bzw. Sprechstile, die von Sprechern einer ethnischen (eigentlich: sprachlichen) Minderheit in einem bestimmten Sprachraum verwendet und als fu\u0308r sie typisch eingestuft werden" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Soziolinguistik" + } + ], + "related": [ + { + "authorized_access_point": "Dialekt (Verhaltensforschung)" + }, + { + "authorized_access_point": "Soziolekt" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1058507044", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1058507044", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1058507044", + "source": "GND" + } + ], + "authorized_access_point": "Ethnolekt" + }, + { + "md5": "0e594e1eb8662f1ffab98a22d46d0f02", + "pid": "1058513710", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Sizilianisch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1058513710", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1058513710", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1058513710", + "source": "GND" + } + ], + "authorized_access_point": "Mundart Sizilianisch (Pachino)" + }, + { + "md5": "dbe83e9b0f423978d108eff0d78ad5ec", + "pid": "105858488X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Musiker" + } + ], + "related": [ + { + "authorized_access_point": "Folkmusikerin" + }, + { + "authorized_access_point": "Folk music" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133818382", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh97002077", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh97002077" + } + ], + "authorized_access_point": "Folk musicians" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133818382", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12508672", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12508672r" + } + ], + "authorized_access_point": "Musiciens de folk" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/105858488X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)105858488X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)105858488X", + "source": "GND" + } + ], + "authorized_access_point": "Folkmusiker" + }, + { + "md5": "8d68b09b370169d579bea6b6c093bf57", + "pid": "105862394X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Elektroniker" + } + ], + "related": [ + { + "authorized_access_point": "Radar" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/105862394X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)105862394X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)105862394X", + "source": "GND" + } + ], + "variant_access_point": [ + "Radartechniker", + "Flugsicherungs-Radartechniker" + ], + "authorized_access_point": "Radarelektroniker" + }, + { + "md5": "be71cab0e6ff7376a7eb1b88249276b5", + "pid": "1058669559", + "note": [ + { + "label": [ + "Wikipedia - http://de.wikipedia.org/wiki/PZL_P.11" + ], + "noteType": "dataSource" + }, + { + "label": [ + "1931-1939 von den staatlichen polnischen Flugzeugwerken (PZL) in mehreren Serien gebautes Jagdflugzeug; bei Ausbruch des Zweiten Weltkrieges Standardja\u0308ger der polnischen Luftwaffe." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Jagdflugzeug" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1058669559", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1058669559", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1058669559", + "source": "GND" + } + ], + "variant_access_point": [ + "P.11 (Jagdflugzeug)" + ], + "authorized_access_point": "PZL P.11" + }, + { + "md5": "3de55bd1b038f880426d2153e80bdb0c", + "pid": "1058674900", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Holzeinschlag" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1058674900", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1058674900", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1058674900", + "source": "GND" + } + ], + "variant_access_point": [ + "Hiebsatz", + "Nutzungssatz", + "Abnutzungssatz" + ], + "authorized_access_point": "Hiebssatz" + }, + { + "md5": "dad1977d8f748e64a3e8ed84c65bdc18", + "pid": "1058723790", + "note": [ + { + "label": [ + "Meist du\u0308nnes, mit bunten Motiven bedrucktes Papier, in das Orangen eingewickelt zum Verkauf angeboten werden; als Sammelobjekt beliebt" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Papierverpackung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1058723790", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1058723790", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1058723790", + "source": "GND" + } + ], + "authorized_access_point": "Orangenpapier" + }, + { + "md5": "9b3978e33c7b50b1e99a5429b34c7ce7", + "pid": "1058846361", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Elektrolokomotive" + }, + { + "authorized_access_point": "Schmalspurlokomotive" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1058846361", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1058846361", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1058846361", + "source": "GND" + } + ], + "variant_access_point": [ + "Ge 4/6", + "Gebirgslokomotive 4/6" + ], + "authorized_access_point": "RhB Ge 4/6" + }, + { + "md5": "68a70afb620e89e113ded448bf8e280d", + "pid": "105896920X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Theodolit" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/105896920X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)105896920X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)105896920X", + "source": "GND" + } + ], + "authorized_access_point": "Kreiseltheodolit" + }, + { + "md5": "2a2cfb38e5d7fa71c0f6100ddc92ed62", + "pid": "1058986295", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sazspiel" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1058986295", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1058986295", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1058986295", + "source": "GND" + } + ], + "variant_access_point": [ + "Bag\u0306lama", + "Langhalslaute" + ], + "authorized_access_point": "Bag\u0306lamaspiel" + }, + { + "md5": "15ae84129a63a86c5bbc837600234c06", + "pid": "1059087871", + "note": [ + { + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?title=Family_literacy&oldid=1070312475" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Generationsu\u0308bergreifender Lernansatz zur Fo\u0308rderung von Schriftsprachkompetenz" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bildungsfo\u0308rderung" + }, + { + "authorized_access_point": "Alphabetisierung" + } + ], + "related": [ + { + "authorized_access_point": "Schreib- und Lesefa\u0308higkeit" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1059087871", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1059087871", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1059087871", + "source": "GND" + } + ], + "authorized_access_point": "Family Literacy" + }, + { + "md5": "8e078f4919362ce52d2afc4018077377", + "pid": "1059090767", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Graswurzel-Journalismus&oldid=195160241" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Journalismus, in dem Bu\u0308rger eine aktive Rolle im Prozess der Recherche, des Berichtens, des Analysierens sowie des Verbreitens von Nachrichten und Informationen einnehmen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Journalismus" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1219100331", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2009003468", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2009003468" + } + ], + "authorized_access_point": "Citizen journalism" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1219100331", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15619301", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15619301f" + } + ], + "authorized_access_point": "Journalisme participatif" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1059090767", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1059090767", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1059090767", + "source": "GND" + } + ], + "variant_access_point": [ + "Bu\u0308rger-Journalismus", + "Partizipativer Journalismus", + "Citizen journalism" + ], + "authorized_access_point": "Graswurzel-Journalismus" + }, + { + "md5": "ba1e52512db6647dbb86a022021b9502", + "pid": "1059103257", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1059103257", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1059103257", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1059103257", + "source": "GND" + } + ], + "variant_access_point": [ + "Maitresse (Motiv)" + ], + "authorized_access_point": "Ma\u0308tresse (Motiv)" + }, + { + "md5": "8498e13dd9dba90b76997aa3b8502a7e", + "pid": "1059152312", + "note": [ + { + "label": [ + "Wikipedia als O\u0308BB 2048 - https://de.wikipedia.org/wiki/%C3%96BB_2048" + ], + "noteType": "dataSource" + }, + { + "label": [ + "o\u0308sterr. Diesellokomotive", + "Die Baureihe entstand ab 1991 durch Umbau aus DB Reihe 211 (vormals V 100)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Diesellokomotive" + } + ], + "related": [ + { + "authorized_access_point": "Diesellokomotive Baureihe V 100" + }, + { + "authorized_access_point": "Diesellokomotive Baureihe 211" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1059152312", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1059152312", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1059152312", + "source": "GND" + } + ], + "variant_access_point": [ + "O\u0308BB 2048" + ], + "authorized_access_point": "Diesellokomotive Baureihe 2048" + }, + { + "md5": "fa551a9328a2552e96261cf10a816228", + "pid": "1059226529", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bu\u0308roberuf" + } + ], + "related": [ + { + "authorized_access_point": "Steuerfachangestellter" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1059226529", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1059226529", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1059226529", + "source": "GND" + } + ], + "variant_access_point": [ + "Steuerfachgehilfin", + "Fachgehilfin in steuer- und wirtschaftsberatenden Berufen", + "Steuergehilfin", + "Weibliche Fachangestellte fu\u0308r steuer- und wirtschaftsberatende Berufe" + ], + "authorized_access_point": "Weibliche Steuerfachangestellte" + }, + { + "md5": "a9c35553dfcb2d8c8965a509f86d9e06", + "pid": "1059254646", + "note": [ + { + "label": [ + "Homepage - http://www.nikon.de/de_DE/product/digital-cameras/slr/consumer/d3300" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Spiegelreflexkamera" + }, + { + "authorized_access_point": "Digitalkamera" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1059254646", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1059254646", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1059254646", + "source": "GND" + } + ], + "authorized_access_point": "Nikon D3300" + }, + { + "md5": "29123a745e5c137cc6c19fb295c887d4", + "pid": "1059254697", + "note": [ + { + "label": [ + "Homepage - http://www.canon.de/For_Home/Product_Finder/Cameras/Digital_SLR/EOS_1200D/discover/" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Spiegelreflexkamera" + }, + { + "authorized_access_point": "Digitalkamera" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1059254697", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1059254697", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1059254697", + "source": "GND" + } + ], + "authorized_access_point": "Canon EOS 1200D" + }, + { + "md5": "d124700a6a3f1d6eb9fa349b054ac091", + "pid": "1059271745", + "note": [ + { + "label": [ + "Art d. Familie d. Canidae" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Hundeartige" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1059271745", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1059271745", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1059271745", + "source": "GND" + } + ], + "variant_access_point": [ + "Canis aureus" + ], + "authorized_access_point": "Goldschakal" + }, + { + "md5": "1f5404925075efb9c73272953dc505cc", + "pid": "1059323001", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Armleuchteralgen (Familie)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1059323001", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1059323001", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1059323001", + "source": "GND" + } + ], + "variant_access_point": [ + "Zarteste Glanzleuchteralge", + "Nitella tenuissima" + ], + "authorized_access_point": "Schirmfo\u0308rmige Glanzleuchteralge" + }, + { + "md5": "52f1593fbd3368738ce85c0d09c6651d", + "pid": "1059383780", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Raumsonde" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1059383780", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1059383780", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1059383780", + "source": "GND" + } + ], + "variant_access_point": [ + "Pioneer-Saturn" + ], + "authorized_access_point": "Pioneer 10" + }, + { + "md5": "3a8695d3ffda9079f8a6562910e1c79e", + "pid": "1059384434", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Raumsonde" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1059384434", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1059384434", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1059384434", + "source": "GND" + } + ], + "authorized_access_point": "Pioneer 11" + }, + { + "md5": "18894f1714603d720da5d460ded85153", + "pid": "1059388464", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tragflu\u0308gel" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1059388464", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1059388464", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1059388464", + "source": "GND" + } + ], + "authorized_access_point": "Schlagflu\u0308gel" + }, + { + "md5": "1d8043095743649302c270de9a519732", + "pid": "1059388499", + "note": [ + { + "label": [ + "Monospezif. Gattung aus d. Familie d. Riesensalamander" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Riesensalamander" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1059388499", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1059388499", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1059388499", + "source": "GND" + } + ], + "variant_access_point": [ + "Cryptobranchus alleganiensis", + "Hellbender" + ], + "authorized_access_point": "Schlammteufel" + }, + { + "md5": "bf625233abe4476df9638943da2b1dfa", + "pid": "1059388502", + "note": [ + { + "label": [ + "Entfernen von Fibrinogen aus Blut oder Plasma durch U\u0308berfu\u0308hren in Fibrin" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fibrinogen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1059388502", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1059388502", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1059388502", + "source": "GND" + } + ], + "variant_access_point": [ + "Defibrinieren" + ], + "authorized_access_point": "Defibrinierung" + }, + { + "md5": "c45ce63a15fe31b0a510e41ed516634a", + "pid": "1059408058", + "note": [ + { + "label": [ + "Familie d. Schwanzlurche" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1059408058", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1059408058", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1059408058", + "source": "GND" + } + ], + "variant_access_point": [ + "Cryptobranchidae" + ], + "authorized_access_point": "Riesensalamander" + }, + { + "md5": "2f3c4e55f1ae14fa6ebea1ecebe75acc", + "pid": "1059463385", + "note": [ + { + "label": [ + "Waage zur Kontrolle des gleichma\u0308\u00dfigen Gewichts von Zentrifugenro\u0308hrchen, bis Mitte des 20. Jh. in Gebrauch" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Waage" + }, + { + "authorized_access_point": "Laborgera\u0308t" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1059463385", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1059463385", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1059463385", + "source": "GND" + } + ], + "authorized_access_point": "Zentrifugenwaage" + }, + { + "md5": "b35b092108e20b3a225fc16b697371c6", + "pid": "1059464667", + "note": [ + { + "label": [ + "Untergattung d. Familie d. Laufka\u0308fer" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Laufka\u0308fer" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1059464667", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1059464667", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1059464667", + "source": "GND" + } + ], + "authorized_access_point": "Carabus apotomopterus" + }, + { + "md5": "71f1585fb8956c7545b4a4bc1f675450", + "pid": "1059558653", + "note": [ + { + "label": [ + "Wikipedia - http://de.wikipedia.org/wiki/Spieleautor" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Spieleautoren erfinden und entwickeln Gesellschaftsspiele." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Autor" + } + ], + "related": [ + { + "authorized_access_point": "Spieleautorin" + }, + { + "authorized_access_point": "Gesellschaftsspiel" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1059558653", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1059558653", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1059558653", + "source": "GND" + } + ], + "variant_access_point": [ + "Spiele-Autor" + ], + "authorized_access_point": "Spieleautor" + }, + { + "md5": "853759904c27393f1ec562dd12dfa546", + "pid": "105960552X", + "note": [ + { + "label": [ + "Seelenhaltung der Traurigkeit und des Bedauerns in der tschechischen Kultur" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Traurigkeit" + }, + { + "authorized_access_point": "Reue" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/105960552X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)105960552X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)105960552X", + "source": "GND" + } + ], + "authorized_access_point": "Li\u0301tost" + }, + { + "md5": "574ddc7c96fc86582a3d8075c341dc74", + "pid": "105962091X", + "note": [ + { + "label": [ + "Seelenhaltung der Melancholie u. Traurigkeit in der tu\u0308rkischen Kultur" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Melancholie" + }, + { + "authorized_access_point": "Traurigkeit" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/105962091X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)105962091X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)105962091X", + "source": "GND" + } + ], + "authorized_access_point": "Hu\u0308zu\u0308n" + }, + { + "md5": "a9026d24ceb026d3e16d2e94ec07ba09", + "pid": "1059732483", + "note": [ + { + "label": [ + "Flugschrauber, ein Prototyp steht heute im Muse\u0301e de l\u2019air et de l\u2019espace in Le Bourget bei Paris" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Hubschrauber" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1059732483", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1059732483", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1059732483", + "source": "GND" + } + ], + "variant_access_point": [ + "X\u00b3", + "X3", + "Eurocopter X3", + "X 3", + "Highspeed-Hybrid-Helicopter", + "H3" + ], + "authorized_access_point": "Eurocopter X\u00b3" + }, + { + "md5": "7888ff47cc250de324cd2ef82fb69ca0", + "pid": "1059823527", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Vokalmusik" + }, + { + "authorized_access_point": "Advent" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1059823527", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1059823527", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1059823527", + "source": "GND" + } + ], + "authorized_access_point": "Adventssingen" + }, + { + "md5": "7579ed9f84a60c6325fdae3f13ce28db", + "pid": "1059889455", + "note": [ + { + "label": [ + "Wikipedia - http://en.wikipedia.org" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Selbstorganisierende Modellmembran aus einem kleinen Lipiddoppelschicht-Fragment und zwei Kopien eines amphipathischen Geru\u0308stproteins; Nanodiscs eignen sich zur funktionellen Rekonstitution und Solubilisierung zahlreicher integraler Membranproteine" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Nanobiotechnologie" + }, + { + "authorized_access_point": "Phospholipidmembran" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1059889455", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1059889455", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1059889455", + "source": "GND" + } + ], + "variant_access_point": [ + "Nanodisk", + "Nano-Disc", + "Nano-Disk" + ], + "authorized_access_point": "Nanodisc" + }, + { + "md5": "68bc0f6cf85297f1df8d6e3c9c1f6cf9", + "pid": "1060077817", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1060077817", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1060077817", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1060077817", + "source": "GND" + } + ], + "authorized_access_point": "Grippe (Motiv)" + }, + { + "md5": "620436e0c1d4fe2d936772c38bcfe32f", + "pid": "1060077914", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1060077914", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1060077914", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1060077914", + "source": "GND" + } + ], + "authorized_access_point": "Pandemie (Motiv)" + }, + { + "md5": "7037a066f5a0e7ca1df70d3f99b3669d", + "pid": "1060090236", + "note": [ + { + "label": [ + "Ma\u00df fu\u0308r die relative Ha\u0308rte, die Bleichbarkeit und den Aufschlussgrad von Zellstoffen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zahlenwert" + }, + { + "authorized_access_point": "Zellstoff" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1060090236", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1060090236", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1060090236", + "source": "GND" + } + ], + "variant_access_point": [ + "Kappazahl", + "Kappa number" + ], + "authorized_access_point": "Kappa-Zahl" + }, + { + "md5": "17fcb586f00d191c9762af5e7accbab9", + "pid": "1060114909", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1060114909", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1060114909", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1060114909", + "source": "GND" + } + ], + "authorized_access_point": "Senn (Motiv)" + }, + { + "md5": "ae72701b002a5a903770200dd534a44c", + "pid": "106013411X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Italienisch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/106013411X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)106013411X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)106013411X", + "source": "GND" + } + ], + "authorized_access_point": "Mundart Italienisch (San Severino Marche)" + }, + { + "md5": "4d10929df36dd7950b6ea76d239da791", + "pid": "1060358328", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1060358328", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1060358328", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1060358328", + "source": "GND" + } + ], + "authorized_access_point": "Verwandtenehe (Motiv)" + }, + { + "md5": "0ff5d8738bb9b95cc31197cc3b282a50", + "pid": "1060399172", + "note": [ + { + "label": [ + "Homepage - http://www.severinsbuergerpreis.de/" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Seit 1984 ja\u0308hrlich verliehener Preis fu\u0308r Personen oder Institutionen, die sich in besonderem Ma\u00dfe um ko\u0308lnische Sprache, Kultur und Lebensart sowie ko\u0308lnisches Brauchtum verdient gemacht haben" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kulturpreis" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1060399172", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1060399172", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1060399172", + "source": "GND" + } + ], + "variant_access_point": [ + "Severins-Bu\u0308rgerpreis", + "Severinsbu\u0308rgerpreis" + ], + "authorized_access_point": "SeverinsBu\u0308rgerpreis" + }, + { + "md5": "39a6ff727f431b34b3e2cd4844cf8ed6", + "pid": "1060471329", + "note": [ + { + "label": [ + "Homepage - http://www.sdl.com/products/sdl-trados-studio/", + "Wikipedia - http://de.wikipedia.org/wiki/SDL_Trados#SDL_Trados_Studio_2014" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "related": [ + { + "authorized_access_point": "U\u0308bersetzungsspeicher" + }, + { + "authorized_access_point": "Computerunterstu\u0308tzte U\u0308bersetzung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1060471329", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1060471329", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1060471329", + "source": "GND" + } + ], + "authorized_access_point": "SDL Trados Studio 2014" + }, + { + "md5": "cab432db595df57401ef652f6bff8400", + "pid": "1060521229", + "note": [ + { + "label": [ + "DWDS - https://www.dwds.de/wb/Koordinator" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Koordinator" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1060521229", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1060521229", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1060521229", + "source": "GND" + } + ], + "authorized_access_point": "Koordinatorin" + }, + { + "md5": "3fefcfcd42efafdf518d2559d6d8d1c4", + "pid": "106057683X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Burgundisch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/106057683X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)106057683X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)106057683X", + "source": "GND" + } + ], + "authorized_access_point": "Mundart Burgundisch (Puisaye)" + }, + { + "md5": "2758859678bebcb211615e1a33250a79", + "pid": "1060577895", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Sizilianisch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1060577895", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1060577895", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1060577895", + "source": "GND" + } + ], + "authorized_access_point": "Mundart Sizilianisch (Lentini)" + }, + { + "md5": "13e5f4dc84fddf9d4e502cc3e600a7e7", + "pid": "1060581957", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Mundart Mittelitalienisch (Marken)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1060581957", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1060581957", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1060581957", + "source": "GND" + } + ], + "authorized_access_point": "Mundart Mittelitalienisch, Marken (San Severino Marche)" + }, + { + "md5": "96b2ab44f2d0e39388b41d0f7025e151", + "pid": "1060674483", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1060674483", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1060674483", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1060674483", + "source": "GND" + } + ], + "authorized_access_point": "Frechheit (Motiv)" + }, + { + "md5": "f1119d0ec47663e363498d95c32de90f", + "pid": "1060778947", + "note": [ + { + "label": [ + "Internet - http://species.wikimedia.org/wiki/Varanus_macraei", + "Internet - http://reptile-database.reptarium.cz/species?genus=Varanus&species=macraei&search_param=%28%28search%3D%27varanus+macraei%27%29%29" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Warane" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1060778947", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1060778947", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1060778947", + "source": "GND" + } + ], + "variant_access_point": [ + "Varanus macraei", + "Blaugefleckter Baumwaran", + "MacRae's Waran" + ], + "authorized_access_point": "Blauer Baumwaran" + }, + { + "md5": "f1a8666b4237c7ba31fb20f250cb05dd", + "pid": "1060804263", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Westfa\u0308lisch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1060804263", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1060804263", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1060804263", + "source": "GND" + } + ], + "variant_access_point": [ + "Osnabru\u0308cker Platt" + ], + "authorized_access_point": "Mundart Westfa\u0308lisch (Osnabru\u0308cker Land)" + }, + { + "md5": "a1913e5b5bbace69a3eecf46f830f90e", + "pid": "1060811529", + "note": [ + { + "label": [ + "Homepage J. A. Comenius-Stiftung - http://www.comenius-stiftung.de/" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Seit 1992 an Menschen, die sich in besonderer Weise um die Kinder- und Jugendhilfe verdient gemacht haben, vergebener Preis" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Preis (Auszeichnung)" + } + ], + "related": [ + { + "authorized_access_point": "Jugendhilfe" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1060811529", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1060811529", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1060811529", + "source": "GND" + } + ], + "variant_access_point": [ + "J.-A.-Comenius-Preis" + ], + "authorized_access_point": "Comenius-Preis" + }, + { + "md5": "7008375508eb09b27ecd6e5662545b3e", + "pid": "1060858703", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Westfla\u0308misch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1060858703", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1060858703", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1060858703", + "source": "GND" + } + ], + "authorized_access_point": "Mundart Westfla\u0308misch (Torhout)" + }, + { + "md5": "b5960baa4178b6eb382e03ed3daaf656", + "pid": "1060881039", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Westfa\u0308lisch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1060881039", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1060881039", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1060881039", + "source": "GND" + } + ], + "authorized_access_point": "Mundart Westfa\u0308lisch (Ahaus-Alsta\u0308tte)" + }, + { + "md5": "7e3e45d8412292a28816c148eaa67622", + "pid": "1060881373", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Westfa\u0308lisch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1060881373", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1060881373", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1060881373", + "source": "GND" + } + ], + "authorized_access_point": "Mundart Westfa\u0308lisch (Gronau (Westf.))" + }, + { + "md5": "9ca5fbce202074e0cb5d99a59e84e48d", + "pid": "1060882191", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Westfa\u0308lisch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1060882191", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1060882191", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1060882191", + "source": "GND" + } + ], + "authorized_access_point": "Mundart Westfa\u0308lisch (Hagen-Hohenlimburg)" + }, + { + "md5": "b3096f780f5fca05a214676c0a2e4d29", + "pid": "1060882345", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Westfa\u0308lisch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1060882345", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1060882345", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1060882345", + "source": "GND" + } + ], + "authorized_access_point": "Mundart Westfa\u0308lisch (Reken- Klein Reken)" + }, + { + "md5": "e5ee79a78b92ecebba615579f5a42af3", + "pid": "1060907534", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Westfa\u0308lisch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1060907534", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1060907534", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1060907534", + "source": "GND" + } + ], + "variant_access_point": [ + "Unnaer Platt" + ], + "authorized_access_point": "Mundart Westfa\u0308lisch (Unna)" + }, + { + "md5": "53ea007bfaa55f3f9e97da1ea8fadbee", + "pid": "1060909251", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Westfa\u0308lisch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1060909251", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1060909251", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1060909251", + "source": "GND" + } + ], + "authorized_access_point": "Mundart Westfa\u0308lisch (Steinhagen, Gu\u0308tersloh)" + }, + { + "md5": "f51b57f6db664b8d04dd9d7201b6a31e", + "pid": "1060912503", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Westfa\u0308lisch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1060912503", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1060912503", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1060912503", + "source": "GND" + } + ], + "variant_access_point": [ + "Vo\u0308rdener Platt" + ], + "authorized_access_point": "Mundart Westfa\u0308lisch (Marienmu\u0308nster-Vo\u0308rden)" + }, + { + "md5": "d038c0eca0c833e8db8a3de916015c08", + "pid": "1060931796", + "note": [ + { + "label": [ + "Internet - http://www.inboxproject.it/schedacompagnia.php?lang=&id=617" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Theaterkonzept des Installationsku\u0308nstlers Paolo Ferrari" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Theater" + } + ], + "related": [ + { + "authorized_access_point": "Theater der Grausamkeit" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1060931796", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1060931796", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1060931796", + "source": "GND" + } + ], + "variant_access_point": [ + "Teatro dell'Oggetto Mancato", + "Teatro dell'O.M.", + "T.O.M." + ], + "authorized_access_point": "Teatr'Absentia" + }, + { + "md5": "9f464356bc55af5ad7adc41b63836acd", + "pid": "1062937325", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1062937325", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1062937325", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1062937325", + "source": "GND" + } + ], + "authorized_access_point": "Eduard-Mu\u0308ller-Krematorium (Hagen, Motiv)" + }, + { + "md5": "46e7c9feb4145556a32633a319f66c14", + "pid": "106307147X", + "note": [ + { + "label": [ + "Valencianische Mundart im Tal Valldigna in der span. Provinz Valencia" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Valencianisch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/106307147X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)106307147X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)106307147X", + "source": "GND" + } + ], + "authorized_access_point": "Mundart Valencianisch (Valldigna)" + }, + { + "md5": "43f311c8737d899cf3d557b9a8b93991", + "pid": "1063349230", + "note": [ + { + "label": [ + "Singvogel aus der Familie der Grasmu\u0308ckenartigen (Sylviidae), geho\u0308rt zur Gattung der Laubsa\u0308nger (Phylloscopus)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Grasmu\u0308cken (Familie)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1063349230", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1063349230", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1063349230", + "source": "GND" + } + ], + "variant_access_point": [ + "Phylloscopus trochiloides" + ], + "authorized_access_point": "Gru\u0308nlaubsa\u0308nger" + }, + { + "md5": "d2e805a1d8a4a372e6ea98f851c7cb74", + "pid": "1063925908", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Chirurg" + } + ], + "related": [ + { + "authorized_access_point": "Kieferchirurgie" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1063925908", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1063925908", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1063925908", + "source": "GND" + } + ], + "authorized_access_point": "Kieferchirurg" + }, + { + "md5": "b3b07181f83b72ca443f4e7a753f6eb9", + "pid": "1063927110", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wissenschaftler" + } + ], + "related": [ + { + "authorized_access_point": "Managementwissenschaftlerin" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1063927110", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1063927110", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1063927110", + "source": "GND" + } + ], + "authorized_access_point": "Managementwissenschaftler" + }, + { + "md5": "ea762322027dc143e1a2b7326c4b79fb", + "pid": "1063927137", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wissenschaftlerin" + } + ], + "related": [ + { + "authorized_access_point": "Managementwissenschaftler" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1063927137", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1063927137", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1063927137", + "source": "GND" + } + ], + "authorized_access_point": "Managementwissenschaftlerin" + }, + { + "md5": "3627824ff98d481c9c829803eb2e7b1d", + "pid": "1064098363", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Westfla\u0308misch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1064098363", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1064098363", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1064098363", + "source": "GND" + } + ], + "variant_access_point": [ + "Roeselaars" + ], + "authorized_access_point": "Mundart Westfla\u0308misch (Roeselare)" + }, + { + "md5": "7e2f7dbfec16f0b7494ffa522fe3a4a9", + "pid": "106427546X", + "note": [ + { + "label": [ + "Nachtfalter aus der Familie der Eulenfalter" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Eulen (Schmetterlinge)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/106427546X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)106427546X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)106427546X", + "source": "GND" + } + ], + "variant_access_point": [ + "Lamprotes c-aureum" + ], + "authorized_access_point": "Wiesenrauten-Goldeule" + }, + { + "md5": "c3bddf1e775d727f460ea2d99a58c9b1", + "pid": "1064280692", + "note": [ + { + "label": [ + "Nachtfalter aus der Familie der Eulenfalter" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Eulen (Schmetterlinge)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1064280692", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1064280692", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1064280692", + "source": "GND" + } + ], + "authorized_access_point": "Thysanoplusia orichalcea" + }, + { + "md5": "5fad01809f1e1c365f4be60bee8e03fe", + "pid": "1064281230", + "note": [ + { + "label": [ + "Internet - http://www.lepiforum.de/lepiwiki.pl?Bucculatrix_Ainsliella" + ], + "noteType": "dataSource" + }, + { + "label": [ + "In den USA verbreitete Mottenart aus der Familie der Bucculatricidae" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motten (Familie)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1064281230", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1064281230", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1064281230", + "source": "GND" + } + ], + "variant_access_point": [ + "Bucculatrix ainsliella" + ], + "authorized_access_point": "Roteichen-Zwergwickler" + }, + { + "md5": "ebf873d9019c9da72daa293bcd4f48a7", + "pid": "1064698727", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Radierer" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113386158X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85147529", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85147529" + } + ], + "authorized_access_point": "Women engravers" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113386158X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13554116", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb135541163" + } + ], + "authorized_access_point": "Graveuses" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1064698727", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1064698727", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1064698727", + "source": "GND" + } + ], + "authorized_access_point": "Radiererin" + }, + { + "md5": "980bed165bb155a21dfa7f96e1609600", + "pid": "1065486421", + "note": [ + { + "label": [ + "Majuskelschrift gru\u0308ndet auf der handgeschriebenen Schrift eines unbekannten Nachbarn" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Font" + }, + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1065486421", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1065486421", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1065486421", + "source": "GND" + } + ], + "authorized_access_point": "Yard Sale" + }, + { + "md5": "dd368f632e905644e747d9c0abe81111", + "pid": "1066801789", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Bogolan" + ], + "noteType": "dataSource" + }, + { + "label": [ + "handgewebte Baumwollstoffe, Produkt einer afrikanischen Web- und Fa\u0308rbetechnik, die urspru\u0308nglich in Mali beheimatet ist" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Stoff (Textilien)" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332765262", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2001002069", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2001002069" + } + ], + "authorized_access_point": "Bogolan cloth" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332765262", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12207632", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12207632r" + } + ], + "authorized_access_point": "Bogolan" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1066801789", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1066801789", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1066801789", + "source": "GND" + } + ], + "variant_access_point": [ + "Mud Cloth", + "Bogolanfini" + ], + "authorized_access_point": "Bogolan" + }, + { + "md5": "19db420e4ace4f824fe41f3aebe06ca7", + "pid": "1066896534", + "note": [ + { + "label": [ + "Nu\u0308tzlinge aus der Familie der Blumenwanzen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Blumenwanzen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1066896534", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1066896534", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1066896534", + "source": "GND" + } + ], + "variant_access_point": [ + "Triphleps laevigata" + ], + "authorized_access_point": "Orius laevigatus" + }, + { + "md5": "30c3a8eeaf9e8950f76d3ed989507fc0", + "pid": "1067974490", + "note": [ + { + "label": [ + "Zum Inbegriff der Schwarzwa\u0308lder Tracht gewordene weibliche Kopfbedeckung aus Stroh mit roten (bei Ma\u0308dchen) oder schwarzen (bei Frauen) Wollba\u0308llchen (\"Bollen\")" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Damenhut" + }, + { + "authorized_access_point": "Tracht" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1067974490", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1067974490", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1067974490", + "source": "GND" + } + ], + "authorized_access_point": "Bollenhut" + }, + { + "md5": "25368a461f256c7286f05f4bba455ddb", + "pid": "1068048328", + "note": [ + { + "label": [ + "Zuerst verwendet im Book of common prayer (Prayer Book of King Edward VII), Essex House Press 1903" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1068048328", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1068048328", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1068048328", + "source": "GND" + } + ], + "variant_access_point": [ + "Prayer Book Type" + ], + "authorized_access_point": "Prayer Book (Druckschrift)" + }, + { + "md5": "62f4c21cb8807a8c32ee9a42ce924391", + "pid": "1068604875", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Computerspiel" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331592720", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2012000023", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2012000023" + } + ], + "authorized_access_point": "Minecraft (Game)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331592720", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16737735", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb167377353" + } + ], + "authorized_access_point": "Minecraft (jeu vide\u0301o)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1068604875", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1068604875", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1068604875", + "source": "GND" + } + ], + "authorized_access_point": "Minecraft (Computerspiel)" + }, + { + "md5": "a22633352cad9046f82503b87e18b1bf", + "pid": "1068606975", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Marketingberatung" + } + ], + "related": [ + { + "authorized_access_point": "Marketingberater" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1068606975", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1068606975", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1068606975", + "source": "GND" + } + ], + "authorized_access_point": "Marketingberaterin" + }, + { + "md5": "58263dc3457777098ba6793ad007b01b", + "pid": "1068825820", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Geometrie" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1068825820", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1068825820", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1068825820", + "source": "GND" + } + ], + "variant_access_point": [ + "Hilbert-Geometrie", + "Hilbert geometry", + "Hilbertian geometry" + ], + "authorized_access_point": "Hilbertsche Geometrie" + }, + { + "md5": "05a6c3035d4dbccd7ad77c436d2dec70", + "pid": "1069336971", + "note": [ + { + "label": [ + "Gender-Medizin ist ein Teilgebiet der Humanmedizin und der personalisierten Medizin und bescha\u0308ftigt sich mit dem Einfluss von biologischen und soziokulturellen Geschlechteraspekten auf die Pra\u0308vention, Entstehung, Diagnose, Therapie und Erforschung von Erkrankungen." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Individualisierte Medizin" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1069336971", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1069336971", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1069336971", + "source": "GND" + } + ], + "variant_access_point": [ + "Geschlechtsspezifische Medizin", + "Gender medicine", + "Gender-specific medicine" + ], + "authorized_access_point": "Gender-Medizin" + }, + { + "md5": "b604ed40aa8924d5308956916dfca34e", + "pid": "1069453420", + "note": [ + { + "label": [ + "Kostenlose digitalisierte Version von Dieter Steffmann" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fraktur (Druckschrift)" + }, + { + "authorized_access_point": "Font" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1069453420", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1069453420", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1069453420", + "source": "GND" + } + ], + "authorized_access_point": "Kleist-Fraktur" + }, + { + "md5": "dcd318e2309d2e2ea0a9459993f86337", + "pid": "1069526703", + "note": [ + { + "label": [ + "Speziell fu\u0308r ein Buch aus der Handschrift von Alexandra Klobouk entwickelt" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Font" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1069526703", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1069526703", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1069526703", + "source": "GND" + } + ], + "authorized_access_point": "Kobolt (Druckschrift)" + }, + { + "md5": "7692064c6f472f50880008ac1d516e06", + "pid": "1069698822", + "note": [ + { + "label": [ + "U\u0308berwiegend benutzt im Zusammenhang mit polizeilichen und beho\u0308rdlichen Ma\u00dfnahmen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Auslese" + }, + { + "authorized_access_point": "Institutioneller Rassismus" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331567602", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh00007474", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00007474" + } + ], + "authorized_access_point": "Racial profiling in law enforcement" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331567602", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16571541", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16571541h" + } + ], + "authorized_access_point": "Profilage ethnique" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1069698822", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1069698822", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1069698822", + "source": "GND" + } + ], + "variant_access_point": [ + "Racial Profiling" + ], + "authorized_access_point": "Ethnisches Profiling" + }, + { + "md5": "cb57389ea1f2f6926a384daab049e1f1", + "pid": "1069876534", + "note": [ + { + "label": [ + "Themenpark oder Ausstellung, die eine Marke oder ein Unternehmen erlebbar machen, Bsp. Autostadt Wolfsburg, BMW-Welt Mu\u0308nchen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Marketing" + }, + { + "authorized_access_point": "Themenpark" + } + ], + "related": [ + { + "authorized_access_point": "Ausstellung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1069876534", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1069876534", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1069876534", + "source": "GND" + } + ], + "variant_access_point": [ + "Brandland", + "Industrieerlebniswelt" + ], + "authorized_access_point": "Markenwelt" + }, + { + "md5": "60c62804fd24d49be7ada019721cae59", + "pid": "1070750409", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Kanalkodierung&oldid=243666848#Polar_Codes" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Blockcode" + }, + { + "authorized_access_point": "Fehlerkorrekturcode" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1070750409", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1070750409", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1070750409", + "source": "GND" + } + ], + "authorized_access_point": "Polar-Code (Codierungstheorie)" + }, + { + "md5": "97458cb5d17c7a0d5947f0f5bfffe482", + "pid": "107257439X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Musikerin" + } + ], + "related": [ + { + "authorized_access_point": "Rapmusiker" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331602416", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2008006704", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2008006704" + } + ], + "authorized_access_point": "Women rap musicians" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331602416", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17881108", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17881108f" + } + ], + "authorized_access_point": "Rappeuses" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/107257439X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)107257439X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)107257439X", + "source": "GND" + } + ], + "variant_access_point": [ + "Rap", + "Rapperin" + ], + "authorized_access_point": "Rapmusikerin" + }, + { + "md5": "a807b5129735974bf3f293dd939c2f32", + "pid": "1072723875", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Personalreferent&oldid=212451022" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Personalentwicklung" + }, + { + "authorized_access_point": "Personalverwaltung" + }, + { + "authorized_access_point": "Personalreferentin" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1072723875", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1072723875", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1072723875", + "source": "GND" + } + ], + "authorized_access_point": "Personalreferent" + }, + { + "md5": "6cbf432c93da9cb558e035975dc7e566", + "pid": "1072727021", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Personalverwaltung" + }, + { + "authorized_access_point": "Personalentwicklung" + }, + { + "authorized_access_point": "Personalreferent" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1072727021", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1072727021", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1072727021", + "source": "GND" + } + ], + "authorized_access_point": "Personalreferentin" + }, + { + "md5": "6b0b0a340402b577d220f4d23afc5e0c", + "pid": "1073212491", + "note": [ + { + "label": [ + "Homepage - http://doublechooz.in2p3.fr" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Experiment zur Bestimmung der Umwandlungswahrscheinlichkeit (Mischungswinkel \u03b813) von Elektronenneutrinos bei Neutrinooszillationen." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Teilchendetektor" + } + ], + "related": [ + { + "authorized_access_point": "Neutrinooszillation" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1073212491", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1073212491", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1073212491", + "source": "GND" + } + ], + "variant_access_point": [ + "Double Chooz", + "Double Chooz experiment", + "Double-Chooz-Detektor", + "Double Chooz detector" + ], + "authorized_access_point": "Double-Chooz-Experiment" + }, + { + "md5": "b01fac1f4240de45d0635205639e6b53", + "pid": "107366371X", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Hybridkrieg&oldid=223107821" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Kriegsfu\u0308hrung des 21. Jhs.: Operation von Soldaten u. milita\u0308rischer Ausru\u0308stung ohne Hoheitszeichen auf fremdem Territorium, begleitet von Desinformationskampagnen u. Cyberattacken" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kriegfu\u0308hrung" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1217682147", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2016001601", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2016001601" + } + ], + "authorized_access_point": "Hybrid warfare" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1217682147", + "source": "GND" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb18146328x" + } + ], + "authorized_access_point": "Guerre hybride" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/107366371X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)107366371X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)107366371X", + "source": "GND" + } + ], + "variant_access_point": [ + "Hybrider Krieg", + "Hybride Kriegfu\u0308hrung" + ], + "authorized_access_point": "Hybridkrieg" + }, + { + "md5": "c43f84aaabbb093972d481613267c7a4", + "pid": "1077065876", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Organisation" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1077065876", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1077065876", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1077065876", + "source": "GND" + } + ], + "authorized_access_point": "Halb-o\u0308ffentliche Organisation" + }, + { + "md5": "3f1a57e8ad3e4151c08bfdc3c81e3c7a", + "pid": "1077386478", + "note": [ + { + "label": [ + "Schriftfamilie, mit und ohne Serifen, hergestellt von Fontsmith", + "Benutzt fu\u0308r alle FS-Silas-Schriften. Einzelne FS-Silas-Schriften werden getrennt angesetzt." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Antiqua" + }, + { + "authorized_access_point": "Font" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1077386478", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1077386478", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1077386478", + "source": "GND" + } + ], + "variant_access_point": [ + "Silas (Druckschrift)" + ], + "authorized_access_point": "FS Silas" + }, + { + "md5": "01c7a8eec54307c3dfa1cf9a40ac2b98", + "pid": "1077459335", + "note": [ + { + "label": [ + "Besonders geschnittene Kleidung fu\u0308r Frauen, die schwanger sind" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Frauenkleidung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1077459335", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1077459335", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1077459335", + "source": "GND" + } + ], + "variant_access_point": [ + "Umstandsmode", + "Schwangerschaftskleidung" + ], + "authorized_access_point": "Umstandskleidung" + }, + { + "md5": "e0b1e16fd04ad08692d32174ba86c0ab", + "pid": "1078298378", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Knochenz%C3%BCngler%C3%A4hnliche" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Kohorte der Echten Knochenfische (Teleostei)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333490674", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17839916", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb178399165" + } + ], + "authorized_access_point": "Oste\u0301oglossomorphes" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1078298378", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1078298378", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1078298378", + "source": "GND" + } + ], + "variant_access_point": [ + "Osteoglossomorpha" + ], + "authorized_access_point": "Knochenzu\u0308nglera\u0308hnliche" + }, + { + "md5": "57aaefd782b422210c7ad3a4dc3f4a6f", + "pid": "1081489480", + "note": [ + { + "label": [ + "Digitales Zahlungsmittel" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zahlungsmittel" + }, + { + "authorized_access_point": "Kryptowert" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1136961666", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "30143-2", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/30143-2" + } + ], + "authorized_access_point": "Virtuelle Wa\u0308hrung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1081489480", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1081489480", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1081489480", + "source": "GND" + } + ], + "variant_access_point": [ + "Digitale Wa\u0308hrung", + "Kryptogeld", + "Kryptowa\u0308hrung", + "Virtual currency", + "Payment Token" + ], + "authorized_access_point": "Virtuelle Wa\u0308hrung" + }, + { + "md5": "e6d360a290b306c458cae867e1f64dc2", + "pid": "108229814X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Auszeichnungsschrift" + }, + { + "authorized_access_point": "Font" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/108229814X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)108229814X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)108229814X", + "source": "GND" + } + ], + "authorized_access_point": "Kleopatra (Druckschrift)" + }, + { + "md5": "293fba368d4aeb6567c30f417b1f5258", + "pid": "1085190633", + "note": [ + { + "label": [ + "BSZ Liste: \"Musikalische Besetzungen\" - http://verbund-swop.bsz-bw.de/volltexte/2010/174/" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Trommel" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334657823", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2003002994", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2003002994" + } + ], + "authorized_access_point": "Tom-tom" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334657823", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16258655", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb162586557" + } + ], + "authorized_access_point": "Tom-tom" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1085190633", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1085190633", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1085190633", + "source": "GND" + } + ], + "variant_access_point": [ + "Tom-Tom (Musikinstrument)", + "Tom (Musikinstrument)" + ], + "authorized_access_point": "Tomtom (Musikinstrument)" + }, + { + "md5": "43e2c47fe7b178a089071cc4b8f00a91", + "pid": "1099123399", + "note": [ + { + "label": [ + "1932 fu\u0308r den Wettbewerb \"Europarundflug\" konstruiert" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sportflugzeug" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1099123399", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1099123399", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1099123399", + "source": "GND" + } + ], + "variant_access_point": [ + "M-29", + "Messerschmitt M 29", + "Me 29" + ], + "authorized_access_point": "M 29" + }, + { + "md5": "54a085b41fb00c349b6bf860f613cc15", + "pid": "1101498900", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1101498900", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1101498900", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1101498900", + "source": "GND" + } + ], + "authorized_access_point": "Ungeziefer (Motiv)" + }, + { + "md5": "090526376219bc504687fec4957ce5a1", + "pid": "1103240579", + "note": [ + { + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?title=Loop_quantum_gravity&oldid=1232727400" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Hintergrundmetrikunabha\u0308ngige Theorie der Quantengravitation, in der die Raum-Zeit durch ein Netzwerk dargestellt wird; also diskret ist." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Hintergrundunabha\u0308ngigkeit" + }, + { + "authorized_access_point": "Quantengravitation" + } + ], + "related": [ + { + "authorized_access_point": "Wilson-Loop" + }, + { + "authorized_access_point": "Quantenkosmologie" + }, + { + "authorized_access_point": "Raum-Zeit" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1103240579", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1103240579", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1103240579", + "source": "GND" + } + ], + "variant_access_point": [ + "Loop-Quantengravitation", + "Loop Quantum Gravity" + ], + "authorized_access_point": "Schleifenquantengravitation" + }, + { + "md5": "f87ea0b534a94c16a7e080b3828c46af", + "pid": "1103248596", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Bibliolog" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Hermeneutisch-methodischer Zugang zu biblischen Texten, der auf die Begegnung zwischen Mensch und biblischem Text zielt; eine Gruppe, Gemeinde oder Schulklasse identifiziert sich mit biblischen Gestalten und entdeckt auf diesem Wege einen biblischen Text, der Leiter gibt den Text vor und weist die Rollen zu, methodisch bewegt sich der Bibliolog auf der rein sprachlichen Ebene, eng am Text; hermeneutisch an der Texterkenntnis orientiert" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Darstellendes Spiel" + } + ], + "related": [ + { + "authorized_access_point": "Bibliodrama" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1103248596", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1103248596", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1103248596", + "source": "GND" + } + ], + "authorized_access_point": "Bibliolog" + }, + { + "md5": "c60da99d2552f76a31e435bb129f431f", + "pid": "1104861453", + "note": [ + { + "label": [ + "Angeho\u0308riger einer orthodoxen Kirche" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Christ" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1104861453", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1104861453", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1104861453", + "source": "GND" + } + ], + "authorized_access_point": "Orthodoxer Christ" + }, + { + "md5": "6ee88c6fa0a89ba62ed5ea36885b11ca", + "pid": "110642154X", + "note": [ + { + "label": [ + "Satzschrift, verwendet fu\u0308r das Gutenberg-Jahrbuch 2016" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Font" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/110642154X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)110642154X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)110642154X", + "source": "GND" + } + ], + "authorized_access_point": "Mangan (Druckschrift)" + }, + { + "md5": "f1b988a54792f58fd708735999b96a47", + "pid": "1111593051", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1111593051", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1111593051", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1111593051", + "source": "GND" + } + ], + "authorized_access_point": "Lebensreform (Motiv)" + }, + { + "md5": "35c01992c72553507f2fd29d885ab6b7", + "pid": "1113031921", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Biokomposit&oldid=165586163" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Verbundwerkstoffe mit einer biogenen Komponente, z.B. der Matrixwerkstoff ist ein Harz wie z.B. Polymer oder Biopolymer und die Versta\u0308rkung erfolgt durch eine Naturfaser wie z.B. Hanf." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Faserverbundwerkstoff" + }, + { + "authorized_access_point": "Biowerkstoff" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1113031921", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1113031921", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1113031921", + "source": "GND" + } + ], + "variant_access_point": [ + "Biokomposit", + "Biocomposit" + ], + "authorized_access_point": "Bioverbundwerkstoff" + }, + { + "md5": "6f66ddc811c67d7fefca4cdd3483d441", + "pid": "1114188395", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Italienische_Metropolitanst%C3%A4dte" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Als Metropolitansta\u0308dte werden Gebietsko\u0308rperschaften bezeichnet, die sich auf dem Metropolitangebiet bzw. auf dem Gebiet vierzehn italienischer Gro\u00dfsta\u0308dte und deren Umland erstrecken. Anders als der Wortlaut suggeriert, handelt es sich bei den Metropolitansta\u0308dten nicht um Sta\u0308dte im eigentlichen Sinne, sondern um administrativ abgegrenzte Stadtregionen, die neben der Kernstadt auch ein gro\u00dfes Hinterland umfassen. Als solche sind die italienischen Metropolitansta\u0308dte die Rechtsnachfolger von ehemaligen Provinzen, die umbenannt und mit zusa\u0308tzlichen Funktionen ausgestattet wurden." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1114188395", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1114188395", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1114188395", + "source": "GND" + } + ], + "variant_access_point": [ + "Citta\u0300 metropolitana", + "Gro\u00dfstadt" + ], + "authorized_access_point": "Metropolitanstadt" + }, + { + "md5": "2ad2e70796bcce51acd158e526a5bd14", + "pid": "1115371371", + "note": [ + { + "label": [ + "Debonding occurs when an adhesive stops sticking (adhering) to an adherend or substrate material." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kleben" + }, + { + "authorized_access_point": "Adha\u0308sion" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1115371371", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1115371371", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1115371371", + "source": "GND" + } + ], + "authorized_access_point": "Debonding" + }, + { + "md5": "4013fda6bf34b398584d17449c021646", + "pid": "1116981521", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Werbetexter&oldid=209682870", + "Berufenet - https://berufenet.arbeitsagentur.de/berufenet/faces/index?path=null/suchergebnisse&such=werbetexter" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Werbesprache" + }, + { + "authorized_access_point": "Werbetexterin" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1116981521", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1116981521", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1116981521", + "source": "GND" + } + ], + "authorized_access_point": "Werbetexter" + }, + { + "md5": "926b02502dc1983b9b3ca1e99973ec19", + "pid": "1117164012", + "note": [ + { + "label": [ + "Digitalisierung der Mobilita\u0308t, Digitalisierung im Verkehr" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Verkehr" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1117164012", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1117164012", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1117164012", + "source": "GND" + } + ], + "variant_access_point": [ + "Mobility 4.0" + ], + "authorized_access_point": "Mobilita\u0308t 4.0" + }, + { + "md5": "80f4dc0d92358f0a95e607485980972e", + "pid": "1117228215", + "note": [ + { + "label": [ + "Gesichtsschleier muslimischer Frauen mit schmalem Augenschlitz, im Unterschied zur die Augen vollsta\u0308ndig bedeckenden Burka, v.a. auf der arabischen Halbinsel verbreitet; als wei\u00dfer Niqab bereits vor der islamischen Kultur von Beduinen als Schutz vor Sonne und Sand verwendet; schwarz und in Verbindung mit einem Tschador getragen, verbreitete er sich seit Ende des 19. Jh. zuna\u0308chst im Osmanischen Reich" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schleier" + } + ], + "related": [ + { + "authorized_access_point": "Burka" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1117228215", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1117228215", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1117228215", + "source": "GND" + } + ], + "variant_access_point": [ + "Nikab", + "Nikap", + "niqa\u0304b" + ], + "authorized_access_point": "Niqab" + }, + { + "md5": "ddd1eac8cccd275328b7d998c618cc0c", + "pid": "1118514823", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Alter (Motiv)" + }, + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1118514823", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1118514823", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1118514823", + "source": "GND" + } + ], + "variant_access_point": [ + "Erwachsener (60-80 Jahre, Motiv)", + "Alter (60-80 Jahre, Motiv)" + ], + "authorized_access_point": "A\u0308lterer Mensch (60-80 Jahre, Motiv)" + }, + { + "md5": "ad665764a29554f46a7b4d3ff8a50ed7", + "pid": "1119923417", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Oration" + } + ], + "related": [ + { + "authorized_access_point": "Gabenbereitung" + }, + { + "authorized_access_point": "Offertorium" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1119923417", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1119923417", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1119923417", + "source": "GND" + } + ], + "variant_access_point": [ + "Oratio secreta" + ], + "authorized_access_point": "Gabengebet" + }, + { + "md5": "54f5210fa8d04878f688533d57bf2f58", + "pid": "1120526310", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Font" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1120526310", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1120526310", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1120526310", + "source": "GND" + } + ], + "variant_access_point": [ + "Nite Club (Druckschrift)" + ], + "authorized_access_point": "NiteClub (Druckschrift)" + }, + { + "md5": "d57ff07eb38e9cb1e662788fdc2be4b1", + "pid": "1120527775", + "note": [ + { + "label": [ + "Herausgeber: HanYang Information & Communication, gibt es nicht nur fu\u0308r lateinische Alphabete" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Serifenschrift" + }, + { + "authorized_access_point": "Font" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1120527775", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1120527775", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1120527775", + "source": "GND" + } + ], + "authorized_access_point": "Batang (Druckschrift)" + }, + { + "md5": "4153f388b0c68a99ac8c87abd65834e4", + "pid": "1121689914", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Tetris&oldid=187895104" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Computerspiel" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331594111", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2019000397", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2019000397" + } + ], + "authorized_access_point": "Tetris (Game)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331594111", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16703785", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb167037852" + } + ], + "authorized_access_point": "Tetris (jeu vide\u0301o)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1121689914", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1121689914", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1121689914", + "source": "GND" + } + ], + "authorized_access_point": "Tetris" + }, + { + "md5": "4bc83dad4cc2c4ff4bfbffacc1241d71", + "pid": "1122355092", + "note": [ + { + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?title=Hermitian_manifold&oldid=887773398" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Komplexe Mannigfaltigkeit" + } + ], + "related": [ + { + "authorized_access_point": "Riemannscher Raum" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1122355092", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1122355092", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1122355092", + "source": "GND" + } + ], + "authorized_access_point": "Hermitesche Mannigfaltigkeit" + }, + { + "md5": "b5a6203dfc197b15da0d394e770bd8a3", + "pid": "1124612114", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kirchliche Organisation" + } + ], + "related": [ + { + "authorized_access_point": "Hilfsorganisation" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1124612114", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1124612114", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1124612114", + "source": "GND" + } + ], + "variant_access_point": [ + "Hilfswerke" + ], + "authorized_access_point": "Hilfswerk" + }, + { + "md5": "dc7f7d9a9e212efc77ba8300b835f3d2", + "pid": "1124811885", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1124811885", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1124811885", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1124811885", + "source": "GND" + } + ], + "authorized_access_point": "Braut Christi (Motiv)" + }, + { + "md5": "ba62bd4b75ae4ab79259057e7827fda9", + "pid": "1126284823", + "note": [ + { + "label": [ + "Entworfen neben R. Kegler auch vom Schriftgestalter Desmond Poirier, Schriftfamilie mit 5 Schriften: Pop Art Comic, Pop Art Comic Bold Italic, Pop Art Comic Stencil, Pop Art Comic Three D, Pop Art Extras", + "Benutzt fu\u0308r alle PoP-Art-Schriften. Einzelne PoP-Art-Schriften werden getrennt angesetzt." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Font" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1126284823", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1126284823", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1126284823", + "source": "GND" + } + ], + "variant_access_point": [ + "PoP-Art (Druckschrift)", + "P22 PoP Art", + "P22 PoP Art Comic", + "P22 PoP Art (Druckschrift)", + "P22-PoP-Art (Druckschrift)", + "P22-PoP-Art" + ], + "authorized_access_point": "PoP Art (Druckschrift)" + }, + { + "md5": "de6a968fa719c480bc6db38434d17f7a", + "pid": "1127087932", + "note": [ + { + "label": [ + "Sammelbezeichnung antimissionarischer Baptistenvereinigungen und Kirchen in den USA, hauptsa\u0308chlich in den su\u0308dl. Staaten" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Baptisten" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1127087932", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1127087932", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1127087932", + "source": "GND" + } + ], + "variant_access_point": [ + "Anti-Mission Baptists", + "Old School Baptists", + "Predestinarian Baptists", + "Hard Shell Baptists" + ], + "authorized_access_point": "Primitive Baptists" + }, + { + "md5": "114f82bf7f98f7163ac805b9c28c2de8", + "pid": "1131360478", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Produktmanager" + }, + { + "authorized_access_point": "Produktmanagement" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1131360478", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1131360478", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1131360478", + "source": "GND" + } + ], + "authorized_access_point": "Produktmanagerin" + }, + { + "md5": "e988abcb71fa99f0694b0f17a697754f", + "pid": "1132231477", + "note": [ + { + "label": [ + "Geistliche U\u0308bungen auf der Stra\u00dfe, im o\u0308ffentlichen Raum einer Stadt, bei ausgeschlossenen Randgruppen, in Suppenku\u0308chen, Drogentreffs, vor dem Sozialamt; begru\u0308ndet durch Christian Herwartz S.J." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Exerzitien" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1132231477", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1132231477", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1132231477", + "source": "GND" + } + ], + "variant_access_point": [ + "Exerzitien auf der Stra\u00dfe" + ], + "authorized_access_point": "Stra\u00dfenexerzitien" + }, + { + "md5": "3fb0b88d60375097826f1e88328ecf70", + "pid": "1132275067", + "note": [ + { + "label": [ + "Indigene Ethnie im karibischen Teil Kolumbiens" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Indianer" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1132275067", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1132275067", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1132275067", + "source": "GND" + } + ], + "variant_access_point": [ + "Arosario", + "Arsario", + "Arzario", + "Dimina", + "D'm'na", + "Guamaca", + "Malayo", + "Maracasero", + "Maromasero", + "Sanha\u0301", + "Sanja", + "Sanke\u0301", + "Wiwa (Kolumbien)" + ], + "authorized_access_point": "Damana" + }, + { + "md5": "eb7e5f5193d112cd45c20047d580e5bc", + "pid": "1133521657", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=C%C4%83lu%C8%99ari&oldid=148469577", + "Internet - https://ich.unesco.org/en/RL/calus-ritual-00090" + ], + "noteType": "dataSource" + }, + { + "label": [ + "urspru\u0308nglich ritueller Tanz eines in Ruma\u0308nien existierenden bru\u0308derlichen Geheimbundes; 2008 von der UNESCO u\u0308bernommen in die Repra\u0308sentative Liste des immateriellen Kulturerbes der Menschheit" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kulttanz" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334651957", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17763168", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb177631686" + } + ], + "authorized_access_point": "Ca\u0306lus\u0327" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1133521657", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1133521657", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1133521657", + "source": "GND" + } + ], + "authorized_access_point": "Ca\u0306lus\u0327 (Tanz)" + }, + { + "md5": "c81ac3844cf8f5df96462ca3d283b0cd", + "pid": "1135938261", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Nichtlineare_modellbasierte_pr%C3%A4diktive_Regelung&oldid=182549694" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Die nichtlineare modellpra\u0308diktive Regelung ist eine Methode aus dem Teilgebiet der Kontrolltheorie und Regelungstechnik und wird speziell dazu verwendet, um nichtlineare Prozesse mit Einschra\u0308nkungen und ohne Linearisierung behandeln zu ko\u0308nnen." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Modellpra\u0308diktive Regelung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1135938261", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1135938261", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1135938261", + "source": "GND" + } + ], + "variant_access_point": [ + "Non-Linear Model-Predictive-Control" + ], + "authorized_access_point": "Nichtlineare modellpra\u0308diktive Regelung" + }, + { + "md5": "55341980fe2ec438e6e05565856a6b7e", + "pid": "1136044426", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Zweite_industrielle_Revolution&oldid=221638655" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Automatisierung der Fertigungstechnik, U\u0308bergang zur Massenproduktion basierend auf der Rationalisierung der industriellen Fertigung durch Automatisierung." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1136044426", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1136044426", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1136044426", + "source": "GND" + } + ], + "authorized_access_point": "Zweite industrielle Revolution" + }, + { + "md5": "0b73704f9315cd23a9808b38818c1076", + "pid": "1136198113", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1136198113", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1136198113", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1136198113", + "source": "GND" + } + ], + "variant_access_point": [ + "Bradford-Beta", + "Bradford (Druckschrift)", + "Beta (Druckschrift)" + ], + "authorized_access_point": "Bradford Beta" + }, + { + "md5": "d239da13e46d92fdf0af109316f7d235", + "pid": "113724061X", + "note": [ + { + "label": [ + "Ohne HZ Motiv" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/113724061X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)113724061X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)113724061X", + "source": "GND" + } + ], + "variant_access_point": [ + "Das Zarte", + "Zartes", + "Zartheit (Motiv)" + ], + "authorized_access_point": "Zartheit" + }, + { + "md5": "bb40623c666f36885b1602aca80fea20", + "pid": "1139178725", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333487517", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85137512", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85137512" + } + ], + "authorized_access_point": "Triglidae" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333487517", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17751355", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17751355q" + } + ], + "authorized_access_point": "Triglide\u0301s" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1139178725", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1139178725", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1139178725", + "source": "GND" + } + ], + "variant_access_point": [ + "Triglidae", + "Seeha\u0308hne" + ], + "authorized_access_point": "Knurrha\u0308hne" + }, + { + "md5": "e3a91c32bb6f982484954fd7785a3fff", + "pid": "114005791X", + "note": [ + { + "label": [ + "In der Schweiz ein staatlich angeordneter u\u0308berkonfessioneller Feiertag, der jeweils am dritten Sonntag im September begangen wird." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bu\u00df- und Bettag" + }, + { + "authorized_access_point": "Feiertag" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331870496", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17157263", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17157263g" + } + ], + "authorized_access_point": "Jeu\u0302ne fe\u0301de\u0301ral" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/114005791X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)114005791X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)114005791X", + "source": "GND" + } + ], + "variant_access_point": [ + "Jeu\u0302ne fe\u0301de\u0301ral", + "Digiuno federale", + "Rogaziun federala" + ], + "authorized_access_point": "Eidgeno\u0308ssischer Dank-, Buss- und Bettag" + }, + { + "md5": "a7d46e9d8c9e940b0771b97cd206ec31", + "pid": "1144301971", + "note": [ + { + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?oldid=944815699" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Ethnische Gruppe am mittleren Niger, von den marokkanischen und andalusischen Einwanderern des 16. Jh. abstammend." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Songhai-Sprache" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1144301971", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1144301971", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1144301971", + "source": "GND" + } + ], + "variant_access_point": [ + "Ruma (Volk)" + ], + "authorized_access_point": "Arma (Volk)" + }, + { + "md5": "741b86e13689ad321612901fc47f6b06", + "pid": "1145164617", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Kunstradfahren&oldid=171099299" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Radfahrer" + } + ], + "related": [ + { + "authorized_access_point": "Kunstradfahren" + }, + { + "authorized_access_point": "Kunstradfahrerin" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1145164617", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1145164617", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1145164617", + "source": "GND" + } + ], + "variant_access_point": [ + "Kunstfahrer", + "Kunstradsportler" + ], + "authorized_access_point": "Kunstradfahrer" + }, + { + "md5": "3eae990cdf3ab7c5a7119da2c31275a5", + "pid": "1145186815", + "note": [ + { + "label": [ + "Wikipedia unter Multispektral - https://de.wikipedia.org/w/index.php?title=Multispektral&oldid=172622311" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Multispektralkamera ist ein analoges Kamerasystem. Multispektralkameras bestehen aus vier, sechs oder neun auf einem Tra\u0308ger montierten Me\u00dfkameras mit gena\u0308hert gleicher innerer Orientierung. Die Aufnahmeachsen sind exakt parallel ausgerichtet, um eine Kongruenz der aufgenommenen Bilder zu gewa\u0308hrleisten. Die Objektive werden mit verschiedenen Filtern und Filmen (panchromatisch, schwarzwei\u00df, infrarot) kombiniert. Es entstehen von einer Szene geometrisch identische schwarzwei\u00dfe Fotos, die durch die jeweiligen Film-Filter-Kombinationen unterschiedliche spektrale Inhalte aufzeichnen." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mehrkamerasystem" + } + ], + "related": [ + { + "authorized_access_point": "Multispektraltechnik" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1145186815", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1145186815", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1145186815", + "source": "GND" + } + ], + "variant_access_point": [ + "Multispektrale Kamera", + "Multispectral camera" + ], + "authorized_access_point": "Multispektralkamera" + }, + { + "md5": "77e8066f3b6c0a651d72fea058d4edd5", + "pid": "1148982329", + "note": [ + { + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung und Wortart" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1148982329", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1148982329", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1148982329", + "source": "GND" + } + ], + "variant_access_point": [ + "\u03bf\u03b9\u0313\u0342\u03ba\u03bf\u03c2" + ], + "authorized_access_point": "oikos" + }, + { + "md5": "12e161d22cca42dc60d523b506c8caae", + "pid": "1148983317", + "note": [ + { + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung und Wortart Substantiv" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1148983317", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1148983317", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1148983317", + "source": "GND" + } + ], + "variant_access_point": [ + "\u03c0\u03c1\u03bf\u03c3\u03c4\u03b1\u0301\u03c4\u03b7\u03c2" + ], + "authorized_access_point": "prostate\u0304s" + }, + { + "md5": "f07ada28844c28bcc3f8d17784d0f91d", + "pid": "1148983325", + "note": [ + { + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung und Wortart Substantiv" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1148983325", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1148983325", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1148983325", + "source": "GND" + } + ], + "variant_access_point": [ + "\u03c0\u03c1\u03bf\u03c3\u03c4\u03b1\u0301\u03c4\u03b9\u03c2" + ], + "authorized_access_point": "prostatis" + }, + { + "md5": "155bf341c7cff419ef496a50727b2d63", + "pid": "1150861010", + "note": [ + { + "label": [ + "Berufenet - https://berufenet.arbeitsagentur.de/berufenet/faces/index?path=null/suchergebnisse&such=werbetexter" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Werbetexter" + }, + { + "authorized_access_point": "Werbesprache" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1150861010", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1150861010", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1150861010", + "source": "GND" + } + ], + "authorized_access_point": "Werbetexterin" + }, + { + "md5": "9ff9a9ccffdbe730bf74ba87035d2505", + "pid": "1153645505", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Kognitive_Religionswissenschaft" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Interdisziplina\u0308res Forschungsgebiet, das die Religion aus kognitionswissenschaftlicher Sicht untersucht; 1975 aus einem Forschungsfo\u0308rderungsprogramm entstanden" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Religionswissenschaft" + }, + { + "authorized_access_point": "Kognitionswissenschaft" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1153645505", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1153645505", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1153645505", + "source": "GND" + } + ], + "variant_access_point": [ + "Cognitive science of religion" + ], + "authorized_access_point": "Kognitive Religionswissenschaft" + }, + { + "md5": "0d70a8984e13ab8ce17dacbc6a468b56", + "pid": "1153834367", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Gezielte_To\u0308tung" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Die absichtliche, vorsa\u0308tzliche u. bewusste To\u0308tung von mutma\u00dflichen Terroristen und anderen nichtstaatlichen Gewaltakteuren durch staatliche Akteure; unter Vorgabe der Rechtma\u0308\u00dfigkeit erfolgen die Liquidierungen auch auf fremden Gebiet, zunehmend unter Einsatz unbemannter Fluggera\u0308te, wobei auch Unbeteiligte geto\u0308tet werden; die Vorgehensweise ist ethisch und juristisch umstritten und wird als Bruch des Vo\u0308lkerrechts angesehen, aber unter westlichen Staaten u. ihren Verbu\u0308ndeten gegenseitig geduldet" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "To\u0308tung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331566177", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2011002213", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2011002213" + } + ], + "authorized_access_point": "Targeted killing" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331566177", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17047512", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb170475121" + } + ], + "authorized_access_point": "Assassinat cible\u0301" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1153834367", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1153834367", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1153834367", + "source": "GND" + } + ], + "variant_access_point": [ + "Targeted killing", + "Targeted killings", + "Assassinat cible\u0301" + ], + "authorized_access_point": "Gezielte To\u0308tung" + }, + { + "md5": "b99902a8ef480eb86b40b4637ee0d4a2", + "pid": "1153848325", + "note": [ + { + "label": [ + "Anspruch auf Ru\u0308ckgewa\u0308hr einer erbrachten Leistung" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Anspruch" + } + ], + "related": [ + { + "authorized_access_point": "Ru\u0308ckforderung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1153848325", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1153848325", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1153848325", + "source": "GND" + } + ], + "variant_access_point": [ + "Ru\u0308ckerstattungsanspruch", + "Ru\u0308ckforderungsanspruch" + ], + "authorized_access_point": "Ru\u0308ckgewa\u0308hranspruch" + }, + { + "md5": "2ba3da3c223fa9924efbbd74bcc77484", + "pid": "1153904039", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Etikett" + } + ], + "related": [ + { + "authorized_access_point": "Buchgestaltung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1153904039", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1153904039", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1153904039", + "source": "GND" + } + ], + "authorized_access_point": "Titelschild" + }, + { + "md5": "27f5ae5f02f884b87c27684f40666ba7", + "pid": "1155424573", + "note": [ + { + "label": [ + "Messung der Viskosita\u0308t von Mehl" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Viskosimeter" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1155424573", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1155424573", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1155424573", + "source": "GND" + } + ], + "authorized_access_point": "Amylograph" + }, + { + "md5": "4c3e79d29cbf6bc3310bdde34b027367", + "pid": "1155851412", + "note": [ + { + "label": [ + "Bezeichnung von literarischen Textsorten, die Merkmale unterschiedlicher Gattungen in sich vereinen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Literaturgattung" + } + ], + "related": [ + { + "authorized_access_point": "Gattungstheorie" + }, + { + "authorized_access_point": "Intermedialita\u0308t" + }, + { + "authorized_access_point": "Intertextualita\u0308t" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331493722", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17041531", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17041531v" + } + ], + "authorized_access_point": "Brouillage ge\u0301ne\u0301rique" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1155851412", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1155851412", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1155851412", + "source": "GND" + } + ], + "variant_access_point": [ + "Gattungskontamination", + "Gattungsvermischung" + ], + "authorized_access_point": "Hybride Genres" + }, + { + "md5": "811dfe8119a7f632f825e764e3bb7a92", + "pid": "1156463467", + "note": [ + { + "label": [ + "Verzierung d. Bucheinbands durch aufgeklebte Leder- oder Textilstu\u0308ckchen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Buchgestaltung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1156463467", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1156463467", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1156463467", + "source": "GND" + } + ], + "authorized_access_point": "Auflage (Einbandkunde)" + }, + { + "md5": "0a160a4112dddf382bf2f7c1a8651a88", + "pid": "1158529643", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1158529643", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1158529643", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1158529643", + "source": "GND" + } + ], + "authorized_access_point": "Kardinal (Druckschrift)" + }, + { + "md5": "168760e548e73d34d1b6fa6ae176f19d", + "pid": "1159652686", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1159652686", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1159652686", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1159652686", + "source": "GND" + } + ], + "authorized_access_point": "Dynamit (Druckschrift)" + }, + { + "md5": "aa2aeb80cb941285a3bc42a8bf82c85d", + "pid": "1159673381", + "note": [ + { + "label": [ + "Entstehungsjahr: 1928; Mammut Schmalfett 1932" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1159673381", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1159673381", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1159673381", + "source": "GND" + } + ], + "authorized_access_point": "Mammut (Druckschrift)" + }, + { + "md5": "2ccaa24af2c74b75fca9eb770d9dd29e", + "pid": "1159716978", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1159716978", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1159716978", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1159716978", + "source": "GND" + } + ], + "authorized_access_point": "Nu\u0308rnberg (Druckschrift)" + }, + { + "md5": "cb241fda9b6499636d027a2c3e8036eb", + "pid": "1159919828", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1159919828", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1159919828", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1159919828", + "source": "GND" + } + ], + "authorized_access_point": "Orator (Druckschrift)" + }, + { + "md5": "6eea1a3df6a3e42966fcf2e1000d41cb", + "pid": "115992063X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/115992063X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)115992063X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)115992063X", + "source": "GND" + } + ], + "authorized_access_point": "Bristol (Druckschrift)" + }, + { + "md5": "1ec86f4c694dd91d0163598cfe70f313", + "pid": "1159920850", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1159920850", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1159920850", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1159920850", + "source": "GND" + } + ], + "authorized_access_point": "Carlton (Druckschrift)" + }, + { + "md5": "f67d3b1e290445a20fff19307a1952ac", + "pid": "115992869X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/115992869X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)115992869X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)115992869X", + "source": "GND" + } + ], + "authorized_access_point": "Juno (Druckschrift)" + }, + { + "md5": "6ecd26b2867d6f31c33399be95a1f7b6", + "pid": "1159933006", + "note": [ + { + "label": [ + "Entstehungszeit 1948, Rondo Fett: 1954" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1159933006", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1159933006", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1159933006", + "source": "GND" + } + ], + "authorized_access_point": "Rondo (Druckschrift)" + }, + { + "md5": "534443dde7dba24975706a5da1580900", + "pid": "1159933278", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1159933278", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1159933278", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1159933278", + "source": "GND" + } + ], + "authorized_access_point": "Succes (Druckschrift)" + }, + { + "md5": "2f7ed6d6949468fcfc68ac35286cbf2d", + "pid": "1160040834", + "note": [ + { + "label": [ + "Benutzt, soweit im Ausland lebend" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausla\u0308ndischer Student" + }, + { + "authorized_access_point": "Jordanier" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334682283", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh98006531", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh98006531" + } + ], + "authorized_access_point": "Jordanian students" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334682283", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16080762", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb160807624" + } + ], + "authorized_access_point": "E\u0301tudiants jordaniens" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1160040834", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1160040834", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1160040834", + "source": "GND" + } + ], + "authorized_access_point": "Jordanischer Student" + }, + { + "md5": "ed9a7231f3453132b142e7d2bdfb4d36", + "pid": "1160916276", + "note": [ + { + "label": [ + "Entstehungszeit 1904" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1160916276", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1160916276", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1160916276", + "source": "GND" + } + ], + "authorized_access_point": "Schiller-Jubila\u0308umsschrift" + }, + { + "md5": "17158d8643d8a5e5ab90e5171a3ab817", + "pid": "1161142878", + "note": [ + { + "label": [ + "Mongolischsta\u0308mmige muslimische ethnische Minderheit der Volksrepublik China." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1161142878", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1161142878", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1161142878", + "source": "GND" + } + ], + "variant_access_point": [ + "Bao\u2019an", + "Paoan", + "Bonan" + ], + "authorized_access_point": "Baoan" + }, + { + "md5": "bd68b62b6559b7df61922ba1c918959f", + "pid": "1161370048", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Su\u0308damerikaner" + }, + { + "authorized_access_point": "Einwanderer" + } + ], + "related": [ + { + "authorized_access_point": "Su\u0308damerikanische Einwanderin" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1161370048", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1161370048", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1161370048", + "source": "GND" + } + ], + "authorized_access_point": "Su\u0308damerikanischer Einwanderer" + }, + { + "md5": "64c5b4a68de4806e419a1c94e052f002", + "pid": "1162069279", + "note": [ + { + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung (hier: Hebra\u0308isch) und Wortart" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1162069279", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1162069279", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1162069279", + "source": "GND" + } + ], + "variant_access_point": [ + "jph\u0323", + "\u05d9\u05e4\u05d7" + ], + "authorized_access_point": "yph\u0323" + }, + { + "md5": "b5450089fda7f4bb6d377c8369d25dd2", + "pid": "1162069848", + "note": [ + { + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung (hier: Hebra\u0308isch) und Wortart" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1162069848", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1162069848", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1162069848", + "source": "GND" + } + ], + "variant_access_point": [ + "mabbul", + "mabbu\u0302l", + "\u05de\u05b7\u05d1\u05bc\u05d5\u05bc\u05dc" + ], + "authorized_access_point": "mabu\u0302l" + }, + { + "md5": "d1405f8f1f3f8b74be8f6724cd7b5557", + "pid": "1162070234", + "note": [ + { + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung (hier: Hebra\u0308isch) und Wortart" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1162070234", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1162070234", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1162070234", + "source": "GND" + } + ], + "variant_access_point": [ + "\u05de\u05dc\u05d0" + ], + "authorized_access_point": "ml\u02be" + }, + { + "md5": "8394afb2ecc1cf47164bf4eda066eede", + "pid": "1162072040", + "note": [ + { + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung (hier: Hebra\u0308isch) und Wortart" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1162072040", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1162072040", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1162072040", + "source": "GND" + } + ], + "variant_access_point": [ + "shadday", + "s\u030caddaj", + "\u05e9\u05b7\u05c1\u05d3\u05b7\u05bc\u05d9" + ], + "authorized_access_point": "shaday" + }, + { + "md5": "70d46d74eec448870eb03f9c89f23202", + "pid": "1162074078", + "note": [ + { + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung (hier: Hebra\u0308isch) und Wortart" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1162074078", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1162074078", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1162074078", + "source": "GND" + } + ], + "variant_access_point": [ + "\u05e2\u05d6\u05e8" + ], + "authorized_access_point": "\u02bfzr" + }, + { + "md5": "740100a05944467944a389f26a5e586d", + "pid": "1164102931", + "note": [ + { + "label": [ + "Hinduistische Gruppierung mit wachsender Popularita\u0308t; VerehrerInnen der Go\u0308ttin A\u0304tipara\u0304cakti" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Religio\u0308se Bewegung" + } + ], + "related": [ + { + "authorized_access_point": "Hinduismus" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1164102931", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1164102931", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1164102931", + "source": "GND" + } + ], + "variant_access_point": [ + "Melmaruvathur Adhiparasakthi Spiritual Movement" + ], + "authorized_access_point": "Melmaruvathur movement" + }, + { + "md5": "65e8105582872c78e2d75a91454e01c6", + "pid": "1165347768", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=243277040" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Begriff zur Kategorisierung von Menschen und transdisziplina\u0308res Studienfeld" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wei\u00dfe" + }, + { + "authorized_access_point": "Ethnische Beziehungen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1165347768", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1165347768", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1165347768", + "source": "GND" + } + ], + "variant_access_point": [ + "Whiteness", + "Kritische Wei\u00dfseinsforschung", + "Critical Whiteness Studies" + ], + "authorized_access_point": "Wei\u00dfsein" + }, + { + "md5": "b798e4742d27e65067e5dc6f6051a893", + "pid": "1165352362", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tiere" + }, + { + "authorized_access_point": "Zirkus" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113431275X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85026086", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85026086" + } + ], + "authorized_access_point": "Circus animals" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113431275X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12403950", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12403950w" + } + ], + "authorized_access_point": "Animaux de cirque" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1165352362", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1165352362", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1165352362", + "source": "GND" + } + ], + "variant_access_point": [ + "Zirkus" + ], + "authorized_access_point": "Zirkustiere" + }, + { + "md5": "1be5140ba878839e5af89d2d14c91e7d", + "pid": "1166161722", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1166161722", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1166161722", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1166161722", + "source": "GND" + } + ], + "authorized_access_point": "Beschwerde (Motiv)" + }, + { + "md5": "31f9056e9c2043f235d6e59ad459f13f", + "pid": "1172567794", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Fluiddynamik&oldid=166437703" + ], + "noteType": "dataSource" + }, + { + "label": [ + "\"Die Fluiddynamik ist ein Teilgebiet der Stro\u0308mungslehre und bescha\u0308ftigt sich mit bewegten Fluiden (Flu\u0308ssigkeiten und Gasen). Teilgebiet fu\u0308r Gase ist die Aerodynamik, fu\u0308r Flu\u0308ssigkeiten die Hydrodynamik. Untersucht werden z. B. laminare und turbulente Stro\u0308mungen in offenen und geschlossenen Gerinnen sowie Bewegungen und Kraftverha\u0308ltnisse in Druckleitungen.\" (Wikipedia: Fluiddynamik)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Stro\u0308mungsmechanik" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333587996", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85049376", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85049376" + } + ], + "authorized_access_point": "Fluid dynamics" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333587996", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11931416", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119314166" + } + ], + "authorized_access_point": "Fluides, Dynamique des" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1299918271", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX4659783", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX4659783" + } + ], + "authorized_access_point": "Dina\u0301mica de fluidos" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1172567794", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1172567794", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1172567794", + "source": "GND" + } + ], + "authorized_access_point": "Fluiddynamik" + }, + { + "md5": "bf5501c7e9ddc5573ea4217e9ab96da3", + "pid": "1172931720", + "note": [ + { + "label": [ + "basieren auf der Beschriftung, die nach 1933 fu\u0308r das Geba\u0308ude der Kunstgewerbeschule Zu\u0308rich (heute ZHdK) und dem Museum fu\u0308r Gestaltung gezeichnet wurde, geschaffen von der Foundry Nouvelle Noire, Zu\u0308rich, 14 Schriftschnitte erha\u0308ltlich", + "Benutzt fu\u0308r alle Rektorat-Schriften. Einzelne Rektorat-Schriften werden getrennt angesetzt." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Font" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1172931720", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1172931720", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1172931720", + "source": "GND" + } + ], + "authorized_access_point": "Rektorat (Druckschrift)" + }, + { + "md5": "82dca7df6618f124224deef22211381b", + "pid": "1173062238", + "note": [ + { + "label": [ + "Geregelt in \u00a7\u00a7 280 Abs. 3, 281-283, 311a Abs. 2 BGB" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schadensersatz" + } + ], + "related": [ + { + "authorized_access_point": "Nichterfu\u0308llungsschaden" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1173062238", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1173062238", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1173062238", + "source": "GND" + } + ], + "authorized_access_point": "Schadensersatz statt der Leistung" + }, + { + "md5": "467f65b7d0f667e1b00e128a9d848823", + "pid": "1173842845", + "note": [ + { + "label": [ + "Das Anbieten oder Liefern von Mitteln zur unbefugten Benutzung einer Erfindung (\u00a7 10 PatG)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Patentverletzung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1173842845", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1173842845", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1173842845", + "source": "GND" + } + ], + "variant_access_point": [ + "Indirekte Patentverletzung", + "Indirect patent infringement" + ], + "authorized_access_point": "Mittelbare Patentverletzung" + }, + { + "md5": "a0b4695216912f7e2470e7f24c208d73", + "pid": "1177428253", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1177428253", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1177428253", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1177428253", + "source": "GND" + } + ], + "variant_access_point": [ + "ENTPD1 Gene", + "Ectonucleoside triphosphate diphosphohydrolase 1", + "CD39", + "SPG64", + "ATPDase", + "NTPDase-1" + ], + "authorized_access_point": "Gen ENTPD1" + }, + { + "md5": "a763db69c4973da9f70563fbaa974fe9", + "pid": "1181007100", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Afrikanischer_Knochenz%C3%BCngler", + "Wikimedia - https://species.wikimedia.org/wiki/Heterotis_niloticus" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Knochenzu\u0308nglera\u0308hnliche" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333491085", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12038061", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb120380616" + } + ], + "authorized_access_point": "Heterotis niloticus" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1181007100", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1181007100", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1181007100", + "source": "GND" + } + ], + "variant_access_point": [ + "Heterotis niloticus", + "Clupisudis niloticus", + "Heterotis adansoni Valenciennes", + "Heterotis adansonii", + "Heterotis ehrenbergii Valenciennes", + "Heterotis nilotica", + "Sudis adansonii Cuvier", + "Sudis nilotica Cuvier", + "Sudis niloticus Cuvier", + "Sudis niloticus Ru\u0308ppell" + ], + "authorized_access_point": "Afrikanischer Knochenzu\u0308ngler" + }, + { + "md5": "63aeefbe7a4e620faefe7f637e299ff8", + "pid": "1181268311", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Futura (Druckschrift)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1181268311", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1181268311", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1181268311", + "source": "GND" + } + ], + "variant_access_point": [ + "Futura medium", + "Futura demi-gras", + "Futura seminegra", + "Futura neretto", + "Futura halvfet" + ], + "authorized_access_point": "Futura Halbfett" + }, + { + "md5": "e8da64d9fcffec53ada77718229c10e3", + "pid": "1181270391", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Futura (Druckschrift)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1181270391", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1181270391", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1181270391", + "source": "GND" + } + ], + "authorized_access_point": "Futura Mager" + }, + { + "md5": "0e2f5aee9080c325eff829d4b2d880f9", + "pid": "1183863349", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Sonntage_der_Osterzeit&oldid=183677215" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Zweiter Sonntag nach Ostern." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sonntag" + }, + { + "authorized_access_point": "Osterzeit" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331870097", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15100620", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb151006209" + } + ], + "authorized_access_point": "Dimanche de la Divine Mise\u0301ricorde" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1183863349", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1183863349", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1183863349", + "source": "GND" + } + ], + "variant_access_point": [ + "Sonntag nach Ostern 2", + "Misericordia", + "Misericordias Domini" + ], + "authorized_access_point": "Sonntag der Osterzeit 3" + }, + { + "md5": "2749b4cf608dc9073add32cfcf5be39d", + "pid": "1188589024", + "note": [ + { + "label": [ + "Preis fu\u0308r wissenschaftliche Prosa, verliehen von der Deutschen Akademie fu\u0308r Sprache und Dichtung und gefo\u0308rdert von der ENTEGA Stiftung" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Preis (Auszeichnung)" + } + ], + "related": [ + { + "authorized_access_point": "Wissenschaftliche Literatur" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1188589024", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1188589024", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1188589024", + "source": "GND" + } + ], + "variant_access_point": [ + "Sigmund-Freud-Preis fu\u0308r wissenschaftliche Prosa" + ], + "authorized_access_point": "Sigmund-Freud-Preis" + }, + { + "md5": "1c7578fd530f7449ec8b60a139588e86", + "pid": "1189251949", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1189251949", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1189251949", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1189251949", + "source": "GND" + } + ], + "authorized_access_point": "Zwangsvorstellung (Motiv)" + }, + { + "md5": "b0157aa77a1120c9c9bd2e984286ab5f", + "pid": "1190744996", + "note": [ + { + "label": [ + "Theater, das Eigenproduktionen in mehreren Sparten der Bu\u0308hnenkunst (Musik, Schauspiel, Tanz) zeigt. Fu\u0308r jede Sparte ist ein eigenes Ensemble engagiert" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Theater" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1190744996", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1190744996", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1190744996", + "source": "GND" + } + ], + "variant_access_point": [ + "Zweispartentheater", + "Dreispartentheater", + "Vierspartentheater", + "Fu\u0308nfspartentheater" + ], + "authorized_access_point": "Mehrspartentheater" + }, + { + "md5": "993af2d291b3a4d91021d0935f1eeb7b", + "pid": "1191213307", + "note": [ + { + "label": [ + "\"Color Fonts\" (mehrfarbige Schrift, pro Letter mehrere Farben) fu\u0308r U\u0308berschriften und Mengentext" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Font" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1191213307", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1191213307", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1191213307", + "source": "GND" + } + ], + "authorized_access_point": "Ziza (Druckschrift)" + }, + { + "md5": "0b79c07170cf3a0a76315348411d0947", + "pid": "1191508781", + "note": [ + { + "label": [ + "Nur f. das Fest; fu\u0308r das Geschehen SW Unbefleckte Empfa\u0308ngnis. Hochfest am 8. Dezember" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Marienfest" + } + ], + "related": [ + { + "authorized_access_point": "Unbefleckte Empfa\u0308ngnis" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133870880", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85064510", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85064510" + } + ], + "authorized_access_point": "Feast of the Immaculate Conception" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133870880", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13569072", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13569072q" + } + ], + "authorized_access_point": "Immacule\u0301e Conception (fe\u0302te)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1191508781", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1191508781", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1191508781", + "source": "GND" + } + ], + "variant_access_point": [ + "Empfa\u0308ngnis Maria\u0308 (Fest)", + "Empfa\u0308ngnis Mariens (Fest)", + "Hochfest der ohne Erbsu\u0308nde empfangenen Jungfrau und Gottesmutter Maria", + "Immaculata conceptio Mariae (Fest)", + "Immaculata conceptio Beatae Mariae Virginis (Fest)", + "Immaculata conceptio B.M.V. (Fest)" + ], + "authorized_access_point": "Maria\u0308 Empfa\u0308ngnis (Fest)" + }, + { + "md5": "cf64a7f08d9b1356805075300b896aa2", + "pid": "119298918X", + "note": [ + { + "label": [ + "Im Juni 2018 freigeschaltetes Portal mit digitalisierten Lokalzeitungen aus Nordrhein-Westfalen im Zeitraum von 1801-1845" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Portal (Internet)" + } + ], + "related": [ + { + "authorized_access_point": "Zeitung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/119298918X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)119298918X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)119298918X", + "source": "GND" + } + ], + "variant_access_point": [ + "zeit.punktNRW (Portal, Internet)", + "Zeitungsportal Nordrhein-Westfalen", + "Zeitungsport NRW" + ], + "authorized_access_point": "zeit.punktNRW" + }, + { + "md5": "f7ed57efbf488a6f03f2f1745099ae7a", + "pid": "1192998324", + "note": [ + { + "label": [ + "Wikipedia - https://en.wikipedia.org/wiki/Way_of_the_Gods_according_to_the_Confucian_Tradition" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Ansetzung als Personengruppe, da ohne einheitliche ko\u0308rperschaftliche Struktur" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Religio\u0308se Bewegung" + }, + { + "authorized_access_point": "Konfuzianismus" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1192998324", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1192998324", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1192998324", + "source": "GND" + } + ], + "variant_access_point": [ + "Ru\u0301zo\u0304ng She\u0301njia\u0300o", + "Way of the Gods according to the Confucian tradition", + "Luandao", + "Phoenix Way", + "Phoenix Gate", + "Phoenix halls", + "Phoenix churches", + "Lua\u0301nme\u0301n", + "Luanism", + "Lua\u0301njia\u0300o", + "Rumen", + "Holy Church of the Confucian Tradition", + "Ru\u0301zo\u0304ng She\u0300ngjia\u0300o" + ], + "authorized_access_point": "Ruzong Shenjiao" + }, + { + "md5": "e75a36e8e75d96de1c3abb08ef371e9f", + "pid": "1195720424", + "note": [ + { + "label": [ + "The treasury of lives - https://treasuryoflives.org/tradition/Sakya" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Einer der drei Zweige der Sa skya Tradition des tibetischen Buddhismus; ngor pa, tshar pa, rdzong pa/gong dkar pa; etabliert von Ngor chen kun dga' bzang po mit der Gru\u0308ndung des Klosters Ngor Ewam\u0323 Choden (Ngor e wam\u0323 chos ldan) in 1429" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sakyapa" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1195720424", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1195720424", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1195720424", + "source": "GND" + } + ], + "variant_access_point": [ + "Ngor-pa", + "N\u0307or pa", + "Ngor pa-Zweig", + "Ngor pa Unterschule", + "Ngor Tradition" + ], + "authorized_access_point": "Ngor pa" + }, + { + "md5": "287946289cd59982a084a7b54f55af1d", + "pid": "1195721455", + "note": [ + { + "label": [ + "The treasury of lives - https://treasuryoflives.org/tradition/Sakya" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Einer der drei Zweige der Sa skya Tradition des tibetischen Buddhismus; ngor pa, tshar pa, rdzong pa/gong dkar pa; verbunden mit dem Kloster Gongkar Chode (Gong dkar chos sde) - gegru\u0308ndet von Gong dkar rdo rje gdan pa kun dga' rnam rgyal (1432-1496)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sakyapa" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1195721455", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1195721455", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1195721455", + "source": "GND" + } + ], + "variant_access_point": [ + "rDzong-pa", + "rDzon\u0307 pa", + "Dzongpa", + "rDzong pa-Zweig", + "rDzong pa Unterschule", + "rDzong Tradition", + "Dzongpa Tradition", + "Dzongpa-Tradition", + "Gong dkar ba", + "Gon\u0307 dkar ba", + "Gong dkar-Zweig", + "Gong dkar Tradition", + "Gongkar" + ], + "authorized_access_point": "rDzong pa" + }, + { + "md5": "4754c8739033c05f887afd724f160744", + "pid": "1196153183", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Assassin%E2%80%99s_Creed" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Computerspielserie aus dem Genre Action-Adventure, ab 2007 wurden 11 Hauptspiele und zahlreiche Ableger vero\u0308ffentlicht" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Computerspiel" + }, + { + "authorized_access_point": "Serie" + }, + { + "authorized_access_point": "Abenteuerspiel" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1272017613", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "no2016008920", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/names/no2016008920" + } + ], + "authorized_access_point": "Assassin's creed series (Video games)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1272017613", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16573084", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/16573084/assassin_s_creed___jeu_video/" + } + ], + "authorized_access_point": "Assassin's creed (jeu vide\u0301o ; se\u0301rie)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1196153183", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1196153183", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1196153183", + "source": "GND" + } + ], + "variant_access_point": [ + "Assassin's-Creed-Reihe", + "Assassin's creed series" + ], + "authorized_access_point": "Assassin's Creed (Computerspiel, Serie)" + }, + { + "md5": "f2a51988ce4e179c7dddbbe7010cf32e", + "pid": "1197084231", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Open_Science&oldid=242180012" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Sammelbegriff fu\u0308r z.B. Open Access, Open Data, Open Educational Resources, Open Methodology, Open Peer Review, Open Source etc. Ziel ist, wissenschaftliche Prozesse transparent und reproduzierbar sowie Wissenschaft fu\u0308r alle frei zuga\u0308nglich zu machen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wissenschaft" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331216990", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2022002066", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2022002066" + } + ], + "authorized_access_point": "Open scholarship" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331216990", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18068255", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb180682558" + } + ], + "authorized_access_point": "Science ouverte" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1289086672", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "30309-1", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/30309-1" + } + ], + "authorized_access_point": "Open science" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1197084231", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1197084231", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1197084231", + "source": "GND" + } + ], + "variant_access_point": [ + "Offene Wissenschaft", + "O\u0308ffentliche Wissenschaft", + "Open Research", + "Open Scholarship" + ], + "authorized_access_point": "Open Science" + }, + { + "md5": "259deb12225319765cec11582dc94bac", + "pid": "1197813853", + "note": [ + { + "label": [ + "Benutzt, soweit im Ausland lebend" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausla\u0308ndischer Student" + }, + { + "authorized_access_point": "Slowaken" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334683123", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh94004603", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh94004603" + } + ], + "authorized_access_point": "Slovak students" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334683123", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12392703", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb123927038" + } + ], + "authorized_access_point": "E\u0301tudiants slovaques" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1197813853", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1197813853", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1197813853", + "source": "GND" + } + ], + "authorized_access_point": "Slowakischer Student" + }, + { + "md5": "9d0dc9953f357908ac5084ce5432c24e", + "pid": "1198723262", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Insulysin&oldid=177216971" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Den zellula\u0308ren Abbau von Insulin, Glucagon und anderen Polypeptiden beeinflussendes Enzym" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Endopeptidasen" + }, + { + "authorized_access_point": "Metalloproteinasen" + } + ], + "related": [ + { + "authorized_access_point": "Insulinabbau" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1198723262", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1198723262", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1198723262", + "source": "GND" + } + ], + "variant_access_point": [ + "Insulinase", + "Insulin-abbauendes Enzym", + "IDE", + "Insulin-degrading enzyme", + "Insulin protease", + "EC 3.4.24.56" + ], + "authorized_access_point": "Insulysin" + }, + { + "md5": "d93904f7054fb1102ad711b1c80150f5", + "pid": "1199404365", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Donaukaulbarsch" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Im Unterlauf der Donau und deren Nebengewa\u0308ssern lebende endemische Art der Barsche" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Barsche" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333473451", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17805417", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17805417j" + } + ], + "authorized_access_point": "Gymnocephalus baloni" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1199404365", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1199404365", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1199404365", + "source": "GND" + } + ], + "variant_access_point": [ + "Gymnocephalus baloni" + ], + "authorized_access_point": "Donaukaulbarsch" + }, + { + "md5": "fdd99fd8de4de1f24d139c7d336cc3d0", + "pid": "1201306663", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Portal (Internet)" + }, + { + "authorized_access_point": "Online-Community" + } + ], + "related": [ + { + "authorized_access_point": "Evangelikale Bewegung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1201306663", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1201306663", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1201306663", + "source": "GND" + } + ], + "variant_access_point": [ + "TopChre\u0301tien.com" + ], + "authorized_access_point": "TopChre\u0301tien" + }, + { + "md5": "9b2c55613975bb8e219b8fbb53cb7e2e", + "pid": "1201330661", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Moyamoya&oldid=188131848" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Hirngefa\u0308\u00dfkrankheit" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133799884", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12447412", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12447412r" + } + ], + "authorized_access_point": "Maladie de moya-moya" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1282200224", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D009072", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D009072" + } + ], + "authorized_access_point": "Moyamoya Disease" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1201330661", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1201330661", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1201330661", + "source": "GND" + } + ], + "variant_access_point": [ + "Moyamoya-Erkrankung", + "Moyamoya-Syndrom", + "Moya-Moya-Syndrom", + "Moyamoya-Angiopathie", + "Moyamoya disease", + "Cerebrovascular Moyamoya Disease", + "Moyamoya Vasculopathy", + "MMV" + ], + "authorized_access_point": "Moyamoya-Krankheit" + }, + { + "md5": "76b12d6cbf334d0bbabb57e6f8eac6da", + "pid": "120246193X", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Chemokinrezeptoren&oldid=183008713" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "G-Protein gekoppelter Rezeptor" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336575654", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D019707", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D019707" + } + ], + "authorized_access_point": "Receptors, Chemokine" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/120246193X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)120246193X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)120246193X", + "source": "GND" + } + ], + "variant_access_point": [ + "Chemokine receptor" + ], + "authorized_access_point": "Chemokinrezpetor" + }, + { + "md5": "b77ead35baab2e9c38cbdc0394b40e27", + "pid": "1202575048", + "note": [ + { + "label": [ + "Hauptsa\u0308chlich vom Bu\u0308hnenvertrieb und Vereinen hergestelltes Manuskript oder Typoskript, noch nicht vero\u0308ffentlichter oder noch nicht gespielter Stu\u0308cke, Stu\u0308ckfassungen oder -u\u0308bersetzungen.", + "Fu\u0308r bereits vero\u0308ffentlichte Stu\u0308cke bzw. Werke verwende \"Theaterstu\u0308ck\".", + "Als Formangabe fu\u0308r die Art des Inhalts als Teil des optionalen Sets fu\u0308r die Darstellende Kunst zugelassen." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Drama" + }, + { + "authorized_access_point": "Inszenierung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1202575048", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1202575048", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1202575048", + "source": "GND" + } + ], + "authorized_access_point": "Bu\u0308hnenmanuskript" + }, + { + "md5": "1d115af96067df401d552844592e5f02", + "pid": "1204138915", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1204138915", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1204138915", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1204138915", + "source": "GND" + } + ], + "authorized_access_point": "Holzha\u0308ndler" + }, + { + "md5": "6cc70a380e9cc101b75403ad9c886837", + "pid": "1205504184", + "note": [ + { + "label": [ + "Entworfen als Hausschrift fu\u0308r die Oxford University, an Rohrfederhandschriften angelehnt, erstes gedrucktes Buch mit dieser wieder in Blei gegossenen Schrift: Krohn, Tim: Zum Paradies, Edition Offizin Parnassia Va\u0308ttis, 2015" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Antiqua" + }, + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1205504184", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1205504184", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1205504184", + "source": "GND" + } + ], + "variant_access_point": [ + "Treyford (Druckschrift)", + "Type Treyford" + ], + "authorized_access_point": "Treyford Type" + }, + { + "md5": "761ae75daf181370c76c40d01c74a5b3", + "pid": "1206111984", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Szientometrie&oldid=196832777" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Szientometrie ist die Wissenschaft der Wissenschaftsmessung, die mathematische und statistische Methoden zur Analyse von wissenschaftlichen Vero\u0308ffentlichungen und Forschungsergebnissen verwendet." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wissenschaftsforschung" + }, + { + "authorized_access_point": "Informetrie" + } + ], + "related": [ + { + "authorized_access_point": "Bibliometrie" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1239139888", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10064428", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10064428" + } + ], + "authorized_access_point": "Szientometrie" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1206111984", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1206111984", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1206111984", + "source": "GND" + } + ], + "variant_access_point": [ + "Scientometrie" + ], + "authorized_access_point": "Szientometrie" + }, + { + "md5": "520fa8b393b2e9c1d472aac1f04d3841", + "pid": "1210456753", + "note": [ + { + "label": [ + "Homepage - https://www.yallaitalia.it" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Weblog" + } + ], + "related": [ + { + "authorized_access_point": "Araber" + }, + { + "authorized_access_point": "Islam" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1210456753", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1210456753", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1210456753", + "source": "GND" + } + ], + "variant_access_point": [ + "Yalla" + ], + "authorized_access_point": "Yalla Italia" + }, + { + "md5": "fdec3f4765edc3fad3ba2b8b8ffed946", + "pid": "1211610659", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Synagogenvorsteher" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1211610659", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1211610659", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1211610659", + "source": "GND" + } + ], + "variant_access_point": [ + "Archisyna\u0301go\u0304gos", + "Archisynagogos", + "Archisynagogus", + "Rosh ha-knesset", + "Rosch ha-Knesset", + "Rosch hake\u0306nesset", + "Synagogenvorsitzender", + "Princeps synagogae" + ], + "authorized_access_point": "Synagogenvorsteher" + }, + { + "md5": "683704c00f81b71f2e3294d6e45bf2b2", + "pid": "1213276500", + "note": [ + { + "label": [ + "Afroamerikanische Religion in Brasilien" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Afroamerikanischer Synkretismus" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1213276500", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1213276500", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1213276500", + "source": "GND" + } + ], + "variant_access_point": [ + "Catimbo\u0301s" + ], + "authorized_access_point": "Catimbo\u0301" + }, + { + "md5": "5061c6a6875a169ceb463e400522ac87", + "pid": "1213474337", + "note": [ + { + "label": [ + "Universita\u0308t Hohenheim - https://popgenomik.uni-hohenheim.de/", + "Ludwig-Maximilians-Universita\u0308t Mu\u0308nchen - https://www.genom.vetmed.uni-muenchen.de/forschung/forschungsschwerpunkte/populationsgenomik/index.html", + "Wikipedia (engl.) - https://en.wikipedia.org/w/index.php?title=Population_genomics&oldid=955719198" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Verfahren zur populationsgenetischen Analyse mittels gro\u00dfer (Sequenz-)Datensa\u0308tzen, die durch Hochdurchsatzverfahren gewonnen werden. Insbesondere erlaubt das Sequenzieren von Stichproben von ganzen Genomen, die genetische Variation von Populationen zu analysieren" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Populationsgenetik" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1213474337", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1213474337", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1213474337", + "source": "GND" + } + ], + "variant_access_point": [ + "Population genomics" + ], + "authorized_access_point": "Populationsgenomik" + }, + { + "md5": "71dc9a7ce03561b4179c0389765ca647", + "pid": "1217543678", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Crowdsourcing&oldid=203048762" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Crowdsourcing ist die Auslagerung bestimmter Aufgaben an eine undefinierte Vielzahl an Menschen mittels eines offenen Aufrufs. Die Bezeichnung wird verschiedentlich auch als Synonym zu Crowdworking gesehen." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Outsourcing" + } + ], + "related": [ + { + "authorized_access_point": "Prosumerismus" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334879311", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2017004056", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2017004056" + } + ], + "authorized_access_point": "Crowdsourcing" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334879311", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF167129727", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://catalogue.bnf.fr/ark:/12148/cb167129727" + } + ], + "authorized_access_point": "Crowdsourcing" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1217543686", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "29770-6", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/29770-6" + } + ], + "authorized_access_point": "Crowdsourcing" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1217543678", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1217543678", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1217543678", + "source": "GND" + } + ], + "variant_access_point": [ + "Schwarmauslagerung" + ], + "authorized_access_point": "Crowdsourcing" + }, + { + "md5": "7b7bdb707bddce5af47849d0999d75b3", + "pid": "1219598135", + "note": [ + { + "label": [ + "Anfang des 15. Jahrhunderts aus dem Faustrohr entwickeltes Gewehr mit glattem Lauf und Luntenschloss" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Vorderlader" + }, + { + "authorized_access_point": "Gewehr" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333656866", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF14408507", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb144085074" + } + ], + "authorized_access_point": "Arquebuses" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1219598135", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1219598135", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1219598135", + "source": "GND" + } + ], + "variant_access_point": [ + "Hakenbu\u0308chse" + ], + "authorized_access_point": "Arkebuse" + }, + { + "md5": "118cb66a50e2269854560bc90b4c52e7", + "pid": "1225001064", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Mangaka&oldid=205181449" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Mangaka, oder auch Manga-ka, sind professionell fu\u0308r einen Manga-Verlag arbeitende Manga-Zeichnerinnen und -Zeichner. Es gibt keine Unterscheidung einer weiblichen und ma\u0308nnlichen Bezeichnung. Der Begriff setzt sich zusammen aus dem Wort Manga fu\u0308r japanische Comics und der Endung -ka im Sinne von \u201eMacher\u201c oder \u201eScho\u0308pfer\u201c. Die meisten Mangaka zeichnen ihre Geschichten nicht nur, sondern schreiben auch den dazugeho\u0308rigen Text. In Japan sind Mangaka eine eigene Berufsgruppe." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zeichner" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1225001064", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1225001064", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1225001064", + "source": "GND" + } + ], + "variant_access_point": [ + "Manga-ka", + "Manga-Zeichner", + "Mangazeichnerin" + ], + "authorized_access_point": "Mangaka" + }, + { + "md5": "ee678fbba3498a7cb3a53e9c6448ab67", + "pid": "1225893461", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Comic" + }, + { + "authorized_access_point": "Erotik (Motiv)" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113424097X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh88001850", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh88001850" + } + ], + "authorized_access_point": "Erotic comic books, strips, etc." + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113424097X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12262211", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12262211q" + } + ], + "authorized_access_point": "Bandes dessine\u0301es e\u0301rotiques" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1225893461", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1225893461", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1225893461", + "source": "GND" + } + ], + "authorized_access_point": "Erotischer Comic" + }, + { + "md5": "58368546d0dc3e175753e2e3ab63407e", + "pid": "1228154325", + "note": [ + { + "label": [ + "U\u0308bertragung des Pollens einer Blu\u0308te auf die Narbe einer artgleichen anderen Blu\u0308te durch ein Tier" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Besta\u0308ubung" + } + ], + "related": [ + { + "authorized_access_point": "Anemogamie" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1228154325", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1228154325", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1228154325", + "source": "GND" + } + ], + "variant_access_point": [ + "Anthophilie", + "Zoophilie (Blu\u0308teno\u0308kologie)", + "Tierblu\u0308tigkeit", + "Tierbesta\u0308ubung" + ], + "authorized_access_point": "Zoogamie" + }, + { + "md5": "9cf4542d3435e3692fd7adc749f37767", + "pid": "1229013695", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Pansexualit%C3%A4t&oldid=208933170" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sexuelle Orientierung" + } + ], + "related": [ + { + "authorized_access_point": "Bisexualita\u0308t" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1229013695", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1229013695", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1229013695", + "source": "GND" + } + ], + "variant_access_point": [ + "Omnisexualita\u0308t" + ], + "authorized_access_point": "Pansexualita\u0308t" + }, + { + "md5": "e378659d1c1d27d605a23c9854677145", + "pid": "1232346071", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=User_Experience&oldid=211010591" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Umschreibt alle Aspekte der Eindru\u0308cke und das Erlebnis eines Nutzers bei der Interaktion mit einem Produkt, Dienst, einer Umgebung oder Einrichtung. Dazu za\u0308hlen auch Software und IT-Systeme." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Benutzerfreundlichkeit" + }, + { + "authorized_access_point": "Benutzerru\u0308ckmeldung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1232346071", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1232346071", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1232346071", + "source": "GND" + } + ], + "variant_access_point": [ + "User experience", + "Nutzererfahrung", + "Nutzererlebnis", + "Nutzungserlebnis" + ], + "authorized_access_point": "Benutzererlebnis" + }, + { + "md5": "72c137f214deaf37a6b00f056d038b0b", + "pid": "1232354244", + "note": [ + { + "label": [ + "Benutzt, soweit im Ausland leben" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausla\u0308ndischer Student" + }, + { + "authorized_access_point": "Armenier" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334679487", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh87002994", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh87002994" + } + ], + "authorized_access_point": "Armenian students" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334679487", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17881071", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17881071x" + } + ], + "authorized_access_point": "E\u0301tudiants arme\u0301niens" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1232354244", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1232354244", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1232354244", + "source": "GND" + } + ], + "authorized_access_point": "Armenischer Student" + }, + { + "md5": "8585306353c2b1a8803fbf24548bf551", + "pid": "1234514702", + "note": [ + { + "label": [ + "Su\u0308dostasiatisch verbreitete Gattung der Anabantoidei. Ko\u0308nnen knurrende Gera\u0308usche erzeugen." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Labyrinthfische" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333957734", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17805197", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb178051976" + } + ], + "authorized_access_point": "Trichopsis" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1234514702", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1234514702", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1234514702", + "source": "GND" + } + ], + "variant_access_point": [ + "Trichopsis" + ], + "authorized_access_point": "Knurrende Guramis" + }, + { + "md5": "25119d0ee5a06d1c165d2eca71e463a4", + "pid": "1237145422", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Massaker_in_S%C3%BCdkorea&oldid=210930843", + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Jeju-Aufstand&oldid=187183989" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Widerstand gegen Polizeirepression und die Angst vor Fremdbestimmung der Insel hatten einen Aufstand linksgerichteter Rebellen ausgelo\u0308st. Am 3. April 1948 griffen diese auf der ganzen Insel Polizeikommandos sowie die Einrichtungen einer rechtsextremen paramilita\u0308rischen Organisation an. Polizei und Armee schlugen mit gro\u00dfer Brutalita\u0308t zuru\u0308ck und verfolgten eine Strategie der verbrannten Erde. Um die Aufsta\u0308ndischen im bergigen Landesinnern zu isolieren, wurden alle Do\u0308rfer, die mehr als vier Kilometer von der Ku\u0308ste entfernt waren, dem Erdboden gleichgemacht. Nach offiziellen su\u0308dkoreanischen Angaben wurden dadurch zwischen April 1948 und August 1949 270 von insgesamt 400 Do\u0308rfern auf der Insel ausgelo\u0308scht. Mehr als 27.000 Personen wurden geto\u0308tet, zum u\u0308berwiegenden Teil Zivilisten; Scha\u0308tzungen der Opferzahl weichen allerdings deutlich voneinander ab. Auch das Ende der Unruhen Anfang der 1950er wird unterschiedlich angesetzt." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Massaker" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1237145422", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1237145422", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1237145422", + "source": "GND" + } + ], + "variant_access_point": [ + "Jeju-Massaker", + "Jeju-Aufstand", + "Cheju-Massaker", + "Massaker von Cheju-do", + "Jeju massacre", + "Cheju massacre" + ], + "authorized_access_point": "Massaker von Jeju-do" + }, + { + "md5": "a03d636c93598c50898915004f915e74", + "pid": "1239152302", + "note": [ + { + "label": [ + "Sans- und Serif-Schriftfamilie fu\u0308r die Lernprodukte des Cornelsen Verlages", + "Benutzt fu\u0308r alle CV-Dida-Schriften. Einzelne CV-Dida-Schriften werden getrennt angesetzt." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Font" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1239152302", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1239152302", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1239152302", + "source": "GND" + } + ], + "variant_access_point": [ + "CV-Dida", + "Dida (Druckschrift)" + ], + "authorized_access_point": "CV Dida" + }, + { + "md5": "0b4de56c230585d973ff4e2069c84ff4", + "pid": "124129562X", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Sonntagsversammlung&oldid=191625041" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Bezeichnet eine Versammlung nichtreligio\u0308ser Menschen, die von den britischen Komikern Sanderson Jones und Pippa Evans im Januar 2013 in London erstmals durchgefu\u0308hrt wurde. Die Versammlung hat in erster Linie das Ziel, Menschen ohne Konfession zusammenzubringen und ihnen ein positives Gemeinschaftserlebnis zu bieten, das auf Bezu\u0308ge zu religio\u0308sen Vorstellungen verzichtet. Das Motto der Sunday Assembly lautet: \u201eLive better, help often and wonder more\u201c \u2013 auf Deutsch etwa \u201eLebe besser, hilf oft, staune mehr\u201c bzw. \u201eLebe besser, hilf oft, denk mehr nach\u201c. Heute gibt es zahlreiche lokale Assemblies auf der ganzen Welt" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Versammlung" + }, + { + "authorized_access_point": "Gemeinschaft" + }, + { + "authorized_access_point": "Soziale Bewegung" + } + ], + "related": [ + { + "authorized_access_point": "Sonntag" + }, + { + "authorized_access_point": "Religionslosigkeit" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/124129562X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)124129562X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)124129562X", + "source": "GND" + } + ], + "variant_access_point": [ + "Sonntagsversammlung" + ], + "authorized_access_point": "Sunday Assembly" + }, + { + "md5": "8a4af882df955863733a2e04836255e8", + "pid": "1241975299", + "note": [ + { + "label": [ + "Familie der Barschartigen Fische" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Barschartige Fische" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333442068", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85073370", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85073370" + } + ], + "authorized_access_point": "Kuhliidae" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333442068", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17155128", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb171551286" + } + ], + "authorized_access_point": "Kuhliidae" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1241975299", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1241975299", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1241975299", + "source": "GND" + } + ], + "variant_access_point": [ + "Kuhlie", + "Kuhliidae" + ], + "authorized_access_point": "Kuhlien" + }, + { + "md5": "e183ebb770a7e2004780c01fe70a8c56", + "pid": "1242560637", + "note": [ + { + "label": [ + "H Kulturpreise Online - http://www.kulturpreise.de/web/preise_info.php?preisd_id=2534", + "Wikipedia unter Effie (Preis) - https://de.wikipedia.org/w/index.php?title=Effie_(Preis)&oldid=205963252" + ], + "noteType": "dataSource" + }, + { + "label": [ + "In Deutschland seit 1981 jedes Jahr vom Gesamtverband Kommunikationsagenturen GWA e. V. innerhalb der nationalen Werbe- und Kommunikationsbranche verliehen fu\u0308r die beste Marketingkommunikation bzgl. Wirksamkeit und Effizienz in zehn Kategorien. 2021 erstmals in Leipzig statt in Frankfurt a. Main verliehen. Der Effie wurde 1968 in den Vereinigten Staaten durch die New York American Marketing Association (NYAMA) gegru\u0308ndet. Neben u\u0308ber 40 nationalen Effies gibt es 5 regionale und einen Effie Worldwide." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Preis (Auszeichnung)" + } + ], + "related": [ + { + "authorized_access_point": "Werbung" + }, + { + "authorized_access_point": "Marketingkonzept" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1242560637", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1242560637", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1242560637", + "source": "GND" + } + ], + "variant_access_point": [ + "GWA Effie Award", + "Effie-Award (Gesamtverband Werbeagenturen)", + "GWA Effie Awards", + "GWA Effie", + "Effie Awards Germany", + "Effie Germany Awards", + "Effie Germany", + "Effie (Preis, Auszeichnung)", + "Effie (Preis)" + ], + "authorized_access_point": "GWA Effie-Award" + }, + { + "md5": "a6544b1675a4256e984c85bb78ae3918", + "pid": "1245158511", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Gezeitenm%C3%BChle&oldid=216756166", + "Homepage Tide Mill Institute - https://www.tidemillinstitute.org/" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Periodisch mittels Ebbe und Flut angetriebene Mu\u0308hle; wurde ab dem fru\u0308hen Mittelalter vorwiegend an Ku\u0308sten mit ausreichendem Tidenhub errichtet" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mu\u0308hle" + } + ], + "related": [ + { + "authorized_access_point": "Wassermu\u0308hle" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1245158511", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1245158511", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1245158511", + "source": "GND" + } + ], + "variant_access_point": [ + "Flutmu\u0308hle", + "Tidenmu\u0308hle", + "Tidemu\u0308hle", + "Tide mill", + "Tidal mill", + "Getijdenmolen" + ], + "authorized_access_point": "Gezeitenmu\u0308hle" + }, + { + "md5": "6ea24b1a4e98c236edefb9174e610453", + "pid": "124608841X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Gesundheitszeugnis" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/124608841X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)124608841X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)124608841X", + "source": "GND" + } + ], + "variant_access_point": [ + "Impfausweis", + "Impfnachweis", + "Impfzertifikat", + "Impfbescheinigung", + "Impfdokumentation" + ], + "authorized_access_point": "Impfpass" + }, + { + "md5": "d1f2671a93ecae54b97df4d0cb18d201", + "pid": "1246126877", + "note": [ + { + "label": [ + "Kleiner Baum oder gro\u00dfer Strauch aus der Pflanzenfamilie der Rosaceae." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Prunus" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1246126877", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1246126877", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1246126877", + "source": "GND" + } + ], + "variant_access_point": [ + "Prunus padus", + "Gewo\u0308hnliche Traubenkirsche", + "Ahlkirsche" + ], + "authorized_access_point": "Traubenkirsche" + }, + { + "md5": "c11fa240e362b00c6338c0357efc73bc", + "pid": "1247639401", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Kulturelle_Aneignung&oldid=218864021" + ], + "noteType": "dataSource" + }, + { + "label": [ + "U\u0308bernahme eines Bestandteils einer Kultur von Mitgliedern einer anderen Kultur oder Identita\u0308t bezeichnet. Die ethische Dimension kultureller Aneignung wird in der Regel nur dann kritisiert, wenn die angeeignete Kultur einer Minderheit angeho\u0308rt, die als sozial, politisch, wirtschaftlich oder milita\u0308risch benachteiligt gilt, etwa wegen ethnischer Konflikte. Die Kultur werde aus Sicht der Kritiker durch ihre historischen Unterdru\u0308cker ihrem Kontext entrissen." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kulturbeziehungen" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331872340", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2018001171", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2018001171" + } + ], + "authorized_access_point": "Cultural appropriation" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331872340", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18004355", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb18004355b" + } + ], + "authorized_access_point": "Appropriation culturelle" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1247639401", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1247639401", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1247639401", + "source": "GND" + } + ], + "variant_access_point": [ + "Cultural appropriation" + ], + "authorized_access_point": "Kulturelle Aneignung" + }, + { + "md5": "0ff3e713eb352745fecd3435b5d4a274", + "pid": "1248276604", + "note": [ + { + "label": [ + "Modell schulkooperativer Bildungs- und Erziehungsarbeit von Schulen und evangelischen Landeskirchen in Norddeutschland" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kirchliche Kinderarbeit" + }, + { + "authorized_access_point": "Jugendarbeit" + }, + { + "authorized_access_point": "Schulsozialarbeit" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1248276604", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1248276604", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1248276604", + "source": "GND" + } + ], + "variant_access_point": [ + "TEO" + ], + "authorized_access_point": "Tage Ethischer Orientierung" + }, + { + "md5": "62b6e07da426d3075891a5383d55b464", + "pid": "1248945506", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333635532", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2010006454", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2010006454" + } + ], + "authorized_access_point": "Practical jokes in literature" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1248945506", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1248945506", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1248945506", + "source": "GND" + } + ], + "authorized_access_point": "Streich (Scherz, Motiv)" + }, + { + "md5": "18f403f3050e6d922aed0b037918f9a6", + "pid": "1249112877", + "note": [ + { + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?title=Pyridopyrimidine&oldid=879376703" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Pyrimidinderivate" + }, + { + "authorized_access_point": "Pyridinderivate" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134439474", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF14546066", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb14546066s" + } + ], + "authorized_access_point": "Pyridodiazines" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1249112877", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1249112877", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1249112877", + "source": "GND" + } + ], + "variant_access_point": [ + "Pyridopyrimidinderivate", + "Pyridopyrimidin" + ], + "authorized_access_point": "Pyridopyrimidine" + }, + { + "md5": "33027595a14e71a34b5457ca24616c88", + "pid": "124994516X", + "note": [ + { + "label": [ + "Zentralmonogolischer Stammesverband in der Zeit vor dem Mongolischen Reich" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332859674", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2010012538", + "source": "DLC" + }, + { + "type": "uri", + "value": "https://id.loc.gov/authorities/subjects/sh2010012538" + } + ], + "authorized_access_point": "Kereyid" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/124994516X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)124994516X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)124994516X", + "source": "GND" + } + ], + "variant_access_point": [ + "Kerait", + "Kereit", + "Kera\u0308it", + "Kereyid" + ], + "authorized_access_point": "Keraiten" + }, + { + "md5": "7da1cd6e92c096545bce957677caaf0e", + "pid": "1250258731", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Jainismus&oldid=219669705670" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Anha\u0308nger der indischen Religion Jainismus" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Jainismus" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134089961", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85069288", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85069288" + } + ], + "authorized_access_point": "Jains" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134089961", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11997604", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11997604f" + } + ], + "authorized_access_point": "Jaina" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1250258731", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1250258731", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1250258731", + "source": "GND" + } + ], + "variant_access_point": [ + "Jains", + "Jina", + "Dschaina", + "Jain", + "Dschain" + ], + "authorized_access_point": "Jaina" + }, + { + "md5": "6948c6723f0b7e875395f1075ef47f2a", + "pid": "1251426239", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1251426239", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1251426239", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1251426239", + "source": "GND" + } + ], + "authorized_access_point": "Nichtverbale Kommunikation (Motiv)" + }, + { + "md5": "39899d42f14eb614dc5613a0e477e5c9", + "pid": "1251536492", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1251536492", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1251536492", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1251536492", + "source": "GND" + } + ], + "variant_access_point": [ + "Corona-Pandemie" + ], + "authorized_access_point": "COVID-19-Pandemie" + }, + { + "md5": "7b25ec7580d7f9e64c3217981b22736c", + "pid": "1252257295", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Kankurang&oldid=207951252" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Initiation" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1252257295", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1252257295", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1252257295", + "source": "GND" + } + ], + "authorized_access_point": "Kankurang" + }, + { + "md5": "8fc7f9c27efb794d09e69cd981c28a0d", + "pid": "1252827512", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Flugsicherung" + }, + { + "authorized_access_point": "Turm" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133865976", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85002968", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85002968" + } + ], + "authorized_access_point": "Airport control towers" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133865976", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13543290", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13543290b" + } + ], + "authorized_access_point": "Tours de contro\u0302le (ae\u0301roports)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1252827512", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1252827512", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1252827512", + "source": "GND" + } + ], + "variant_access_point": [ + "Tower (Luftfahrt)", + "Flugverkehrskontrollturm" + ], + "authorized_access_point": "Kontrollturm (Luftfahrt)" + }, + { + "md5": "64957bb0685f5819f88d2dbe3fada760", + "pid": "1253837457", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Planetary_Health&oldid=217168638" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gesundheitsvorsorge" + } + ], + "related": [ + { + "authorized_access_point": "Umweltmedizin" + }, + { + "authorized_access_point": "Globale Gesundheit" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1253837457", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1253837457", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1253837457", + "source": "GND" + } + ], + "variant_access_point": [ + "Planetary Health", + "Sante\u0301 plane\u0301taire" + ], + "authorized_access_point": "Planetare Gesundheit" + }, + { + "md5": "684d159434602ec5886540b505235185", + "pid": "1254291482", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1254291482", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1254291482", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1254291482", + "source": "GND" + } + ], + "authorized_access_point": "Postapokalypse (Motiv)" + }, + { + "md5": "2ccadc831208459b7e9feefb50823ebe", + "pid": "1254535594", + "note": [ + { + "label": [ + "Pschyrembel online - https://www.pschyrembel.de/mRNA-Impfstoff/A0TVP/doc/" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Impfstofftyp, bei dem RNA (in aller Regel mRNA) injiziert wird, die fu\u0308r einen Bestandteil des Erregers codiert. In der Zelle wird aus der mRNA das nichtpathogene Protein des Erregers gebildet (Antigen), das schlie\u00dflich die Immunantwort triggert. Die ersten zugelassenen mRNA-Impfstoffe sind die SARS-CoV-2-Impfstoffe von BioNTech und Moderna" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Impfstoff" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332908640", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2022005581", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2022005581" + } + ], + "authorized_access_point": "mRNA vaccines" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332908640", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18084862", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb18084862n" + } + ], + "authorized_access_point": "Vaccins a\u0300 ARN messager" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1260520943", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D000087503", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000087503" + } + ], + "authorized_access_point": "mRNA Vaccines" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1254535594", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1254535594", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1254535594", + "source": "GND" + } + ], + "variant_access_point": [ + "mRNA-Vakzin", + "RNA-Impfstoff", + "RNA-Vakzin", + "RNS-Impfstoff", + "mRNA-Impfung (Quasisynonym)" + ], + "authorized_access_point": "mRNA-Impfstoff" + }, + { + "md5": "6a51c05334d46073f02dc1c2d54a80ae", + "pid": "1254569642", + "note": [ + { + "label": [ + "Wikipedia englisch - https://en.wikipedia.org/w/index.php?title=Vibrio_natriegens&oldid=1064078091" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gram-negative Bakterien" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1254569642", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1254569642", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1254569642", + "source": "GND" + } + ], + "authorized_access_point": "Vibrio natriegens" + }, + { + "md5": "b5d1feb70d6d514b68c7351291c3bd00", + "pid": "1256072893", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Cancellans&oldid=160063593" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Vom korrigierten Satz neu gedrucktes Ersatzblatt, das vom Buchbinder fu\u0308r ein fehlerhaft gedrucktes Blatt (Cancellandum) eingeklebt werden sollte" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Cancellandum" + }, + { + "authorized_access_point": "Analytische Druckforschung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1256072893", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1256072893", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1256072893", + "source": "GND" + } + ], + "variant_access_point": [ + "Austauschblatt", + "Auswechselblatt", + "Cancelans", + "Cancel", + "Canceling leaf", + "Karton", + "Carton" + ], + "authorized_access_point": "Cancellans" + }, + { + "md5": "7efa4177a213f6c41faffd31ce9356c3", + "pid": "1256073210", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Cancellans&oldid=160063593" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Fehlerhaft gedrucktes Blatt, das ha\u0308ufig durch Einschnitt oder Ausri\u00df markiert und vom Buchbinder durch ein neu gedrucktes Austauschblatt (Cancellans) ersetzt werden sollte" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Cancellans" + }, + { + "authorized_access_point": "Analytische Druckforschung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1256073210", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1256073210", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1256073210", + "source": "GND" + } + ], + "variant_access_point": [ + "Cancellatum", + "Canceled leaf" + ], + "authorized_access_point": "Cancellandum" + }, + { + "md5": "169dc1d220e50bd7b59cabce2537e271", + "pid": "1257092030", + "note": [ + { + "label": [ + "Trinkgefa\u0308\u00df aus Fayence, Glas, Steinzeug oder Silber, ha\u0308ufig in Form von Tieren, Stiefeln oder Fa\u0308ssern, das beim Trinken besondere Geschicklichkeit erfordert, weil die Flu\u0308ssigkeit z.B. durch den Henkel emporsteigt; besonders im 16.\u201318. Jahrhundert verbreitet" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Trinkgefa\u0308\u00df" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1257092030", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1257092030", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1257092030", + "source": "GND" + } + ], + "variant_access_point": [ + "Vexierglas", + "Scherzglas", + "Vexiergefa\u0308\u00dfe", + "Scherzgefa\u0308\u00df", + "Vexiergla\u0308ser" + ], + "authorized_access_point": "Vexiergefa\u0308\u00df" + }, + { + "md5": "846cac083f9b5ae69ecc388373e276f5", + "pid": "1257092804", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Wirbelschicht&oldid=215906776" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schu\u0308ttgut" + }, + { + "authorized_access_point": "Wirbelschicht" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1257092804", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1257092804", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1257092804", + "source": "GND" + } + ], + "authorized_access_point": "Geldart-Gruppe B" + }, + { + "md5": "6ad856e091ae23fa7c7e9568a0ed8418", + "pid": "1257346415", + "note": [ + { + "label": [ + "Internet - https://wiki.polymerservice-merseburg.de/index.php/Luftultraschall" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ultraschallpru\u0308fung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1257346415", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1257346415", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1257346415", + "source": "GND" + } + ], + "authorized_access_point": "Luftultraschall" + }, + { + "md5": "96823bcc6755776a0b0a773dcaf5a52c", + "pid": "125746423X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Reis" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/125746423X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)125746423X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)125746423X", + "source": "GND" + } + ], + "variant_access_point": [ + "Paddyreis", + "gedroschener Reis", + "bespelzte Reisko\u0308rner" + ], + "authorized_access_point": "Paddy-Reis" + }, + { + "md5": "036d56f26a3af3ed2f8f37406156230e", + "pid": "1258881675", + "type": "bf:Topic", + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332862187", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh91005542", + "source": "DLC" + }, + { + "type": "uri", + "value": "https://id.loc.gov/authorities/subjects/sh91005542" + } + ], + "authorized_access_point": "Balangao (Philippine people)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1258881675", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1258881675", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1258881675", + "source": "GND" + } + ], + "variant_access_point": [ + "Balangao Bontoc", + "Balangao-Bontok", + "Balangaw" + ], + "authorized_access_point": "Balangao" + }, + { + "md5": "8c8ed9d473535daf8389ec01f23ffb17", + "pid": "1259273660", + "note": [ + { + "label": [ + "Protein codierendes Gen. Genprodukt FKBP Prolyl Isomerase 5; wird auch bezeichnet als EC 5.2.1.8, Rotamase, FKBP-51, Peptidylprolyl Cis-Trans Isomerase u.a." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1259273660", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1259273660", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1259273660", + "source": "GND" + } + ], + "variant_access_point": [ + "FKBP5 Gene", + "FKBP5" + ], + "authorized_access_point": "Gen FKBP5" + }, + { + "md5": "28ce0994e264f4ba6b597e69d2f09cc4", + "pid": "1259460460", + "note": [ + { + "label": [ + "Letzte (technische) Fassung eines Drehbuchs, die in die einzelnen zu drehenden Aufnahmen zerlegt ist." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Drehbuch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1259460460", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1259460460", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1259460460", + "source": "GND" + } + ], + "variant_access_point": [ + "Shooting script" + ], + "authorized_access_point": "De\u0301coupage (Film)" + }, + { + "md5": "b01c652323ffb423f51748c90a3ed48e", + "pid": "1261254937", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Font" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1261254937", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1261254937", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1261254937", + "source": "GND" + } + ], + "authorized_access_point": "Bumpy (Druckschrift)" + }, + { + "md5": "91d306222d937c5b957d37cce98085de", + "pid": "1261933737", + "note": [ + { + "label": [ + "MGG online - https://www.mgg-online.com/mgg/stable/403049" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Theater" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1261933737", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1261933737", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1261933737", + "source": "GND" + } + ], + "variant_access_point": [ + "Klostertheater" + ], + "authorized_access_point": "Ordenstheater" + }, + { + "md5": "a3d47e385d2b4d79de44100acfb9b370", + "pid": "1262928265", + "note": [ + { + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?oldid=1095914761" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gesundheit" + } + ], + "related": [ + { + "authorized_access_point": "Planetare Gesundheit" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133930549", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85148199", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85148199" + } + ], + "authorized_access_point": "World health" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133930549", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11933219", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119332195" + } + ], + "authorized_access_point": "Sante\u0301 publique" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1277080682", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D014943", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D014943" + } + ], + "authorized_access_point": "Global Health" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1262928265", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1262928265", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1262928265", + "source": "GND" + } + ], + "variant_access_point": [ + "Global Health", + "Weltgesundheit", + "Internationale Gesundheit" + ], + "authorized_access_point": "Globale Gesundheit" + }, + { + "md5": "773ed67c172b056927ec7586a02ccdc9", + "pid": "1264956134", + "note": [ + { + "label": [ + "Forschungsplan, der verschiedene Verfahren kombiniert; gemeint sind meist qualitative und quantitative Methoden" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Forschungsmethode" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332866999", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2010001158", + "source": "DLC" + }, + { + "type": "uri", + "value": "https://id.loc.gov/authorities/subjects/sh2010001158" + } + ], + "authorized_access_point": "Mixed methods research" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332866999", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16582642", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16582642k" + } + ], + "authorized_access_point": "Me\u0301thodes de recherche mixtes" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1264956134", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1264956134", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1264956134", + "source": "GND" + } + ], + "variant_access_point": [ + "Mixed-Methods", + "Mixed methods" + ], + "authorized_access_point": "Methodenmix" + }, + { + "md5": "32fcdef3a915749d86f61fac9d44f947", + "pid": "1265218374", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=207466436" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Zum Erhalt der beno\u0308tigten Wassertiefe ku\u0308mmerten sich Fleetenkieker seit dem 16. Jh. um die Reinhaltung der Fleete von Abfall, Schlick und Exkrementen. Ab dem 18. Jh. bis Anfang des 20. Jh. wurden so arme Leute bezeichnet, die die Fleete bei Ebbe nach verwertbarem Abfall durchsuchten. Ha\u0308ufig wurden Darstellungen romantisiert." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mu\u0308llwerker" + } + ], + "related": [ + { + "authorized_access_point": "Fahrwasser" + }, + { + "authorized_access_point": "Abfallbeseitigung" + }, + { + "authorized_access_point": "Gewa\u0308sserreinigung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1265218374", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1265218374", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1265218374", + "source": "GND" + } + ], + "authorized_access_point": "Fleetenkieker" + }, + { + "md5": "126386604810d20898f39851745016c2", + "pid": "1265612927", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ku\u0308nstler" + } + ], + "related": [ + { + "authorized_access_point": "Streetartku\u0308nstlerin" + }, + { + "authorized_access_point": "Streetart" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1265612927", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1265612927", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1265612927", + "source": "GND" + } + ], + "variant_access_point": [ + "Strassenku\u0308nstler", + "Streetart-Ku\u0308nstler" + ], + "authorized_access_point": "Streetartku\u0308nstler" + }, + { + "md5": "ffb12e56641dba2cc13a1dc5e03aca0c", + "pid": "1266330917", + "note": [ + { + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung und Wortart, z. B. Griechisch ; Substantiv ; tekme\u0304rion" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1266330917", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1266330917", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1266330917", + "source": "GND" + } + ], + "variant_access_point": [ + "\u03c4\u03b5\u03ba\u03bc\u03b7\u0301\u03c1\u03b9\u03bf\u03bd" + ], + "authorized_access_point": "tekme\u0304rion" + }, + { + "md5": "aa7d827ccceacff19e5f06c84a088e06", + "pid": "1266799931", + "note": [ + { + "label": [ + "- BERUFENET - https://berufenet.arbeitsagentur.de/berufenet/faces/index;BERUFENETJSESSIONID=Mtv0BwN248FRIrQfZ4wj9Z21aQDNCzvOiov-sEw9T51hrJVD2gfR!-131719411?path=null/suchergebnisse/kurzbeschreibung&dkz=132173&such=pflegefachmann" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Seit dem 1.1.2020 neue offizielle Berufsbezeichnung in Dtld., das Pflegeberufegesetz fu\u0308hrt die bisherigen Berufsausbildungen der Altenpflege, der Gesundheits- und Krankenpflege und der Gesundheits- und Kinderkrankenpflege zusammen.", + "Als Homonymenzusatz bei Personenschlagwo\u0308rtern zugelassen." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Pflegepersonal" + } + ], + "related": [ + { + "authorized_access_point": "Pflegefachfrau" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333273010", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D009727", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D009727" + } + ], + "authorized_access_point": "Nurses, Male" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133327288X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85083530", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85083530" + } + ], + "authorized_access_point": "Male nurses" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1266799931", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1266799931", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1266799931", + "source": "GND" + } + ], + "authorized_access_point": "Pflegefachmann" + }, + { + "md5": "3caab3a0b30501ae7995cb6d3e263eb4", + "pid": "1266800611", + "note": [ + { + "label": [ + "- BERUFENET - https://berufenet.arbeitsagentur.de/berufenet/faces/index;BERUFENETJSESSIONID=Mtv0BwN248FRIrQfZ4wj9Z21aQDNCzvOiov-sEw9T51hrJVD2gfR!-131719411?path=null/suchergebnisse/kurzbeschreibung&dkz=132173&such=pflegefachmann" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Seit dem 1.1.2020 neue offizielle Berufsbezeichnung in Dtld., das Pflegeberufegesetz fu\u0308hrt die bisherigen Berufsausbildungen der Altenpflege, der Gesundheits- und Krankenpflege und der Gesundheits- und Kinderkrankenpflege zusammen.", + "Als Homonymenzusatz bei Personenschlagwo\u0308rtern zugelassen." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Pflegepersonal" + } + ], + "related": [ + { + "authorized_access_point": "Pflegefachmann" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133327260X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D009726", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D009726" + } + ], + "authorized_access_point": "Nurses" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333271700", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2016000330", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2016000330" + } + ], + "authorized_access_point": "Women nurses" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1266800611", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1266800611", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1266800611", + "source": "GND" + } + ], + "authorized_access_point": "Pflegefachfrau" + }, + { + "md5": "38a1d93a2a32a685912c0545a9cd57dd", + "pid": "1267358122", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1267358122", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1267358122", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1267358122", + "source": "GND" + } + ], + "authorized_access_point": "Beurteilung (Motiv)" + }, + { + "md5": "a082795ee51291a18e67c7335f261605", + "pid": "1267493216", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1267493216", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1267493216", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1267493216", + "source": "GND" + } + ], + "authorized_access_point": "Isabel (Druckschrift)" + }, + { + "md5": "e311563aecb9adaffb43bbc8daaad440", + "pid": "1267495847", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1267495847", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1267495847", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1267495847", + "source": "GND" + } + ], + "authorized_access_point": "Parcival-Antiqua" + }, + { + "md5": "c52f1319fd2012d60fbac707545e665d", + "pid": "126750370X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/126750370X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)126750370X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)126750370X", + "source": "GND" + } + ], + "authorized_access_point": "Roland-Grotesk (Druckschrift)" + }, + { + "md5": "1cff6e1d4cd3a629a3e5cc706ce15650", + "pid": "1267608366", + "note": [ + { + "label": [ + "Wikipedia (eng) - https://en.wikipedia.org/w/index.php?title=Beardmore_Inflexible&oldid=1018097769" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Britischer Bomber, zwischen 1925 und 1927 hergestellt von Beardmore nach einem Entwurf von Rohrbach. 1928 Erstflug, 1930 Au\u00dferdienststellung." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bombenflugzeug" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1267608366", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1267608366", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1267608366", + "source": "GND" + } + ], + "variant_access_point": [ + "Rohrbach Ro VI", + "BeRo Inflexible", + "Inflexible (Flugzeug)", + "Ro VI", + "Beadmore AV 1 Inflexible", + "BeRo 1" + ], + "authorized_access_point": "Beardmore Inflexible" + }, + { + "md5": "60b9049f8443964ab4eb7a67fd6e3c68", + "pid": "1267608781", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Rohrbach_Ro_IV&oldid=215067231" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Britisches Flugboot, unter Lizenz nach einem Entwurf von Rohrbach gebaut von Beardsmore, Erstflug 1925" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Flugboot" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1267608781", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1267608781", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1267608781", + "source": "GND" + } + ], + "variant_access_point": [ + "Beardmore Inverness", + "Beardmore BeRo.2 Inverness", + "Inverness (Flugboot)", + "Ro IV", + "BeRo Inverness", + "Ro-IV Inverness" + ], + "authorized_access_point": "Rohrbach Ro IV" + }, + { + "md5": "dd4e64c525a6ece9ad53399924931ce5", + "pid": "1268246964", + "note": [ + { + "label": [ + "Nur soweit au\u00dferhalb der eigenen Armee in ausla\u0308nd. Einheiten dienend. Ansonsten Verknu\u0308pfungskette Australien ; Soldat" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Soldat" + } + ], + "related": [ + { + "authorized_access_point": "Australier" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334684014", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16555302", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16555302m" + } + ], + "authorized_access_point": "Militaires australiens" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1268246964", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1268246964", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1268246964", + "source": "GND" + } + ], + "authorized_access_point": "Australischer Soldat" + }, + { + "md5": "60c0527e6958fe4517c1b1baa11f62ae", + "pid": "1268867829", + "note": [ + { + "label": [ + "OBV - https://permalink.obvsg.at/AC16604043" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Sammelbezeichnung fu\u0308r Syndrome mit mikroangiopathischer ha\u0308molytischer Ana\u0308mie, Thrombozythopenie und thrombotischen Verschlu\u0308ssen in der Mikrozirkulation" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mikroangiopathie" + } + ], + "related": [ + { + "authorized_access_point": "Mikrozirkulationssto\u0308rung" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1277091897", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D057049", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D057049" + } + ], + "authorized_access_point": "Thrombotic Microangiopathies" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1268867829", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1268867829", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1268867829", + "source": "GND" + } + ], + "variant_access_point": [ + "TMA" + ], + "authorized_access_point": "Thrombotische Mikroangiopathie" + }, + { + "md5": "56994f8a19ec702224637260c295571a", + "pid": "1270459880", + "note": [ + { + "label": [ + "Aus mehreren Ethnien zusammengesetzte Volksgruppe der Bantu in Ostafrika, die gro\u0308\u00dftenteils in der West-Provinz (Hauptstadt: Kakamega) von Kenia in der Region um den Mount Elgon und in Su\u0308dostuganda leben." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Bantu" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332861334", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85079057", + "source": "DLC" + }, + { + "type": "uri", + "value": "https://id.loc.gov/authorities/subjects/sh85079057" + } + ], + "authorized_access_point": "Luyia (African people)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332861334", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13496553", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13496553j" + } + ], + "authorized_access_point": "Luyia (peuple d'Afrique)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1270459880", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1270459880", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1270459880", + "source": "GND" + } + ], + "variant_access_point": [ + "Luhia", + "Baluhya", + "Bantu-Kavirondo", + "Lujia", + "Luyia", + "Abaluhyia", + "Abaluyia" + ], + "authorized_access_point": "Luhya" + }, + { + "md5": "480e539da8472d9243a49865746f4dcf", + "pid": "1270556959", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Green_New_Deal&oldid=225070424" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Konzept(e) zur Einleitung einer o\u0308kologischen Wende der Industriegesellschaft" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wirtschaftspolitik" + } + ], + "related": [ + { + "authorized_access_point": "New Deal" + }, + { + "authorized_access_point": "Wirtschaftsentwicklung" + }, + { + "authorized_access_point": "Nachhaltigkeit" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334882894", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2020001010", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2020001010" + } + ], + "authorized_access_point": "Green New Deal" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334882894", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF180064402", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://catalogue.bnf.fr/ark:/12148/cb180064402" + } + ], + "authorized_access_point": "Green New Deal" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1317470362", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "30419-1", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/30419-1" + } + ], + "authorized_access_point": "Green Deal" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1270556959", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1270556959", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1270556959", + "source": "GND" + } + ], + "variant_access_point": [ + "Green Deal", + "Gru\u0308ner Deal", + "Der Gru\u0308ne Deal" + ], + "authorized_access_point": "Green New Deal" + }, + { + "md5": "b3afb04011592cdca2ffcd2ffa9f11c4", + "pid": "1271381702", + "note": [ + { + "label": [ + "Wikipedia (engl.) - https://en.wikipedia.org/w/index.php?title=Jumli_language&oldid=1145680164" + ], + "noteType": "dataSource" + }, + { + "label": [ + "eng mit Nepali verwandt, wird hauptsa\u0308chlich in der Provinz Karnali in Nepal gesprochen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Nepali" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1271381702", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1271381702", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1271381702", + "source": "GND" + } + ], + "variant_access_point": [ + "Jumli\u0304", + "Jumleli" + ], + "authorized_access_point": "Jumli" + }, + { + "md5": "6d0aa5fecd4b1a40b837b7028f56d459", + "pid": "1271715899", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1271715899", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1271715899", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1271715899", + "source": "GND" + } + ], + "authorized_access_point": "Energos" + }, + { + "md5": "51358cb59aa0ef11d3a2ecbb97420429", + "pid": "1271790165", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1271790165", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1271790165", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1271790165", + "source": "GND" + } + ], + "authorized_access_point": "Kursachsen (Druckschrift)" + }, + { + "md5": "588dd47d14e1586048a4a3e4b3eb2f1c", + "pid": "1271808897", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1271808897", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1271808897", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1271808897", + "source": "GND" + } + ], + "authorized_access_point": "Ne-Po" + }, + { + "md5": "73346def6ef883a03ca4ca605670dcc0", + "pid": "1271822776", + "note": [ + { + "label": [ + "Kiel-Wiki - https://www.kiel-wiki.de/index.php?title=Hof_Kroog&oldid=58147" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Elmenschagener Flurbezeichnung" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Flurname" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1271822776", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1271822776", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1271822776", + "source": "GND" + } + ], + "authorized_access_point": "Hof Kroog" + }, + { + "md5": "105ca53c01f1488b39483ed1995600ad", + "pid": "127188898X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/127188898X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)127188898X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)127188898X", + "source": "GND" + } + ], + "authorized_access_point": "Schreibedeutsch" + }, + { + "md5": "f5f31b8dc7e9c39d6e24843a22714630", + "pid": "1271895765", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1271895765", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1271895765", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1271895765", + "source": "GND" + } + ], + "authorized_access_point": "Supremo-Versalien" + }, + { + "md5": "b74d707bb3d720ae606a425e6ded0558", + "pid": "1271905698", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1271905698", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1271905698", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1271905698", + "source": "GND" + } + ], + "authorized_access_point": "Wieynck-Gotisch" + }, + { + "md5": "6b0984eadc1541187206d2d5b4152f64", + "pid": "1272258963", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1272258963", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1272258963", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1272258963", + "source": "GND" + } + ], + "authorized_access_point": "Admiral (Druckschrift)" + }, + { + "md5": "cf68a45f378e39f455b4f670e7d3feff", + "pid": "1272267792", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1272267792", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1272267792", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1272267792", + "source": "GND" + } + ], + "authorized_access_point": "Bibliophile Antiqua" + }, + { + "md5": "b191315fb7093b4cbe617727a79224de", + "pid": "1272271439", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1272271439", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1272271439", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1272271439", + "source": "GND" + } + ], + "authorized_access_point": "Consul (Druckschrift)" + }, + { + "md5": "a10991cd595cd49edb5b9454ea839791", + "pid": "1272339785", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1272339785", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1272339785", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1272339785", + "source": "GND" + } + ], + "authorized_access_point": "Marschall (Druckschrift)" + }, + { + "md5": "401ce00d5c9342e485256f0e61df4df0", + "pid": "1272429997", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1272429997", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1272429997", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1272429997", + "source": "GND" + } + ], + "authorized_access_point": "Alarm (Druckschrift)" + }, + { + "md5": "3f7beb7a3bf8d3b3cdc082ca58fd4f6b", + "pid": "127243124X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/127243124X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)127243124X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)127243124X", + "source": "GND" + } + ], + "authorized_access_point": "Ferrum (Druckschrift)" + }, + { + "md5": "9b8f87bccc0ebba354aa6bd752fe6763", + "pid": "1272436322", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1272436322", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1272436322", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1272436322", + "source": "GND" + } + ], + "authorized_access_point": "Klassische Grotesk" + }, + { + "md5": "aedaa8bafee680403d28b99c133181c8", + "pid": "1272439836", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1272439836", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1272439836", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1272439836", + "source": "GND" + } + ], + "authorized_access_point": "Merkantil Kursiv" + }, + { + "md5": "df7d4257ea87f96433c331c2dc4c9350", + "pid": "1273295374", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Pescetarismus&oldid=225934559" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Erna\u0308hrung" + }, + { + "authorized_access_point": "Speise" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1273295374", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1273295374", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1273295374", + "source": "GND" + } + ], + "variant_access_point": [ + "Pescetarische Erna\u0308hrung", + "Pescetarier-Dia\u0308t" + ], + "authorized_access_point": "Pescetarische Kost" + }, + { + "md5": "51ed440e89efd927f946c55a3494d3f7", + "pid": "1273298268", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Elektronisches_Rezept&oldid=227742217" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Arzneiverordnung" + }, + { + "authorized_access_point": "Elektronische Gesundheitskarte" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333252048", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D055695", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D055695" + } + ], + "authorized_access_point": "Electronic Prescribing" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1273298268", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1273298268", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1273298268", + "source": "GND" + } + ], + "variant_access_point": [ + "E-Rezept", + "eRezept" + ], + "authorized_access_point": "Elektronisches Rezept" + }, + { + "md5": "b095df2493c23dfacee83b95a00bbcc1", + "pid": "1273395077", + "note": [ + { + "label": [ + "Homepage - https://www.so-geht-saechsisch.de/saechsischer-verlagspreis", + "Wikipedia - https://de.wikipedia.org/w/index.php?title=S%C3%A4chsischer_Verlagspreis&oldid=217233083" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Branchenpreis - Auszeichnung unabha\u0308ngiger sa\u0308chsischer Verlage fu\u0308r ihr Wirken und besondere verlegerische Leistungen", + "Vergabe seit 2018, anfangs an jeweils einen Verlag, ab 2022 an bis zu 20 Verlage" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kulturpreis" + } + ], + "related": [ + { + "authorized_access_point": "Verlag" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1273395077", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1273395077", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1273395077", + "source": "GND" + } + ], + "authorized_access_point": "Sa\u0308chsischer Verlagspreis" + }, + { + "md5": "f45a90c58064c5dbc4be39f1d497aa17", + "pid": "1274269121", + "note": [ + { + "label": [ + "Wikipedia - http://de.wikipedia.org/wiki/Spieleautor" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Spieleautoren erfinden und entwickeln Gesellschaftsspiele." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Autorin" + } + ], + "related": [ + { + "authorized_access_point": "Spieleautor" + }, + { + "authorized_access_point": "Gesellschaftsspiel" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1274269121", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1274269121", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1274269121", + "source": "GND" + } + ], + "variant_access_point": [ + "Spiele-Autorin" + ], + "authorized_access_point": "Spieleautorin" + }, + { + "md5": "2f0555c30db9f258a8db6e86125f1fa1", + "pid": "1274846765", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Triolett&oldid=204730333" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Lyrik" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1274846765", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1274846765", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1274846765", + "source": "GND" + } + ], + "variant_access_point": [ + "Triolet" + ], + "authorized_access_point": "Triolett" + }, + { + "md5": "5eab9a2a684d672138d5e0c633aca710", + "pid": "1274948169", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1274948169", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1274948169", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1274948169", + "source": "GND" + } + ], + "authorized_access_point": "Tat (Motiv)" + }, + { + "md5": "3c27ae6ac87ba35090a903535a979339", + "pid": "1275016057", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Buchfluch&oldid=222549031" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Schriftlich fixierte magisch-religio\u0308s wirkende Formel, die fu\u0308r Diebstahl, Vernichtung oder Verfa\u0308lschung von Texten und Bu\u0308chern eine Verwu\u0308nschung androht" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fluch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1275016057", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1275016057", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1275016057", + "source": "GND" + } + ], + "variant_access_point": [ + "Bu\u0308cherfluch" + ], + "authorized_access_point": "Buchfluch" + }, + { + "md5": "e837fd909ffec989a17982d1cb3863c8", + "pid": "1275172962", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=The_Legend_of_Zelda&oldid=233760337" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Videospielserie, in bisher 20 Teilen erschienen ab 1986; die gleichnamigen Mangas beruhen auf den Spielen; inzwischen auch als Fernsehserie erschienen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Abenteuerspiel" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331595134", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh90003532", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh90003532" + } + ], + "authorized_access_point": "Legend of Zelda (Game)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331595134", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16549048", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16549048v" + } + ], + "authorized_access_point": "Zeruda no densetsu (jeu vide\u0301o ; se\u0301rie)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1275172962", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1275172962", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1275172962", + "source": "GND" + } + ], + "variant_access_point": [ + "Zeruda no densetsu (Abenteuerspiel)", + "Die Legende von Zelda", + "Zelda" + ], + "authorized_access_point": "The legend of Zelda (Abenteuerspiel)" + }, + { + "md5": "ab0d6258344a4b96c62a2fc7b6e8ea2d", + "pid": "1275619533", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Knickfu%C3%9F&oldid=200221909" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Fehlstellung des Fu\u00dfes mit einer Senkung am inneren Fu\u00dfrand und einer Anhebung des a\u0308u\u00dferen Fu\u00dfrandes" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fu\u00dfdeformita\u0308t" + }, + { + "authorized_access_point": "Fehlstellung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1275619533", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1275619533", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1275619533", + "source": "GND" + } + ], + "variant_access_point": [ + "Pes valgus", + "X-Fu\u00df" + ], + "authorized_access_point": "Knickfu\u00df" + }, + { + "md5": "9ee466dedf29d42560a2c8a59aeda99b", + "pid": "1275762158", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Nullsummenspiel&oldid=226909291" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Spieltheorie" + } + ], + "related": [ + { + "authorized_access_point": "Nullsummenspiel" + }, + { + "authorized_access_point": "Coopetition" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1275762158", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1275762158", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1275762158", + "source": "GND" + } + ], + "variant_access_point": [ + "Nicht-Nullsummenspiel" + ], + "authorized_access_point": "Nichtnullsummenspiel" + }, + { + "md5": "63c84a2ed81ea4c79864c026c2532ccd", + "pid": "1276176597", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Bushcrafting&oldid=228966190" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "U\u0308berlebenstraining" + }, + { + "authorized_access_point": "Trekking" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1276176597", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1276176597", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1276176597", + "source": "GND" + } + ], + "variant_access_point": [ + "Bushcraft", + "Waldhandwerk", + "Buschhandwerk", + "Buschfertigkeit", + "Naturhandwerk", + "Naturfertigkeit" + ], + "authorized_access_point": "Bushcrafting" + }, + { + "md5": "66bd6fecae2b1cbe4e7ce7337fbe61c9", + "pid": "1276707304", + "note": [ + { + "label": [ + "Als Emittenten bezeichnet man eine juristische Person, die zum Handel bestimmte Wertpapiere und Vermo\u0308gensanlagen ausgibt." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kapitalmarktrecht" + } + ], + "related": [ + { + "authorized_access_point": "Kreditwesen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1276707304", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1276707304", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1276707304", + "source": "GND" + } + ], + "authorized_access_point": "Emittent" + }, + { + "md5": "1c148459684cc08c4e9c22ef046514a7", + "pid": "1277560676", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Mundart Su\u0308ditalienisch (Basilicata)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1277560676", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1277560676", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1277560676", + "source": "GND" + } + ], + "authorized_access_point": "Mundart Su\u0308ditalienisch, Basilicata (Monte-Pollino-Gebiet)" + }, + { + "md5": "15c8befd4b2ec7ce5f5d539474a51faa", + "pid": "1277678871", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Kalmarkrieg&oldid=196297680" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Krieg zwischen Da\u0308nemark und Schweden um die Kontrolle der Finnmark" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Krieg" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1277678871", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1277678871", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1277678871", + "source": "GND" + } + ], + "variant_access_point": [ + "Kalmarkriget", + "Kalmarkrigen" + ], + "authorized_access_point": "Kalmarkrieg" + }, + { + "md5": "f5b96dc92a6e0177b93d359cf93aa46d", + "pid": "1278063730", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Dritter_Ort&oldid=227398286" + ], + "noteType": "dataSource" + }, + { + "label": [ + "1989 vom Soziologen Ray Oldenburg gepra\u0308gter Begriff, der Orte der Gemeinschaft umschreibt, als Ausgleich zum Zuhause (erster Ort) und zum Arbeitsplatz (zweiter Ort)." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "O\u0308ffentlicher Raum" + } + ], + "related": [ + { + "authorized_access_point": "Sozialraum" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1278063730", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1278063730", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1278063730", + "source": "GND" + } + ], + "variant_access_point": [ + "Third place", + "Great good place" + ], + "authorized_access_point": "Dritter Ort" + }, + { + "md5": "2a6a0a16d1367b95fabe3349447aafd6", + "pid": "1278300821", + "note": [ + { + "label": [ + "Wikipedia - https://en.wikipedia.org/wiki/Saltire_Society_Literary_Awards" + ], + "noteType": "dataSource" + }, + { + "label": [ + "The Saltire Society Literary Awards are made annually by the Saltire Society. The awards seek to recognise books which are either by \"living authors of Scottish descent or residing in Scotland,\" or which deal with \"the work or life of a Scot or with a Scottish question, event or situation.\"" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Literaturpreis" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1278300821", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1278300821", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1278300821", + "source": "GND" + } + ], + "authorized_access_point": "Saltire Society Literary Awards" + }, + { + "md5": "8e6249bc262de31002710012c207b6b7", + "pid": "127857025X", + "note": [ + { + "label": [ + "Wikipedia (eng) - https://en.wikipedia.org/w/index.php?title=Viva_Maria_(movement)&oldid=1039075561" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Antinapoleonische Bewegung in Italien zwischen 1799 und 1800" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Politische Bewegung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/127857025X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)127857025X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)127857025X", + "source": "GND" + } + ], + "authorized_access_point": "Viva Maria (Politische Bewegung)" + }, + { + "md5": "e30775ffab03d85504e0fb47419bee5f", + "pid": "1279534311", + "note": [ + { + "label": [ + "Jubila\u0308umsjahr zum 200. Geburtstag des Dichters Georg Weerth" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Jubila\u0308um" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1279534311", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1279534311", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1279534311", + "source": "GND" + } + ], + "variant_access_point": [ + "Georg Weerth-Jahr (2022)", + "200 Jahre Georg Weerth (2022)", + "Weerth 200 (2022)" + ], + "authorized_access_point": "Georg Weerth - Jubila\u0308um (2022)" + }, + { + "md5": "87a4f923e4f269a999b35db27e0d74bf", + "pid": "127990271X", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Rheinromantik&oldid=228805995" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Romantik" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/127990271X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)127990271X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)127990271X", + "source": "GND" + } + ], + "authorized_access_point": "Rheinromantik" + }, + { + "md5": "0f1a50ff096409ad42855738b74cf206", + "pid": "1283002477", + "note": [ + { + "label": [ + "Calothrixin A oder I und Calothrixin B oder II sind Metabolite des Cyanobakteriums Calothrix mit potentieller Anti-Malaria-Wirkung" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Alkaloide" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1283002477", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1283002477", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1283002477", + "source": "GND" + } + ], + "authorized_access_point": "Calothrixine" + }, + { + "md5": "a593799fd2cdf271525628c85db98e09", + "pid": "1284760456", + "note": [ + { + "label": [ + "Verwendung wa\u0308hrend eines Feueropfers zum Gie\u00dfen von flu\u0308ssigem Butterfett als Opfergabe in die Flammen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Lo\u0308ffel" + }, + { + "authorized_access_point": "Kultgera\u0308t" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1284760456", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1284760456", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1284760456", + "source": "GND" + } + ], + "variant_access_point": [ + "Opfer" + ], + "authorized_access_point": "Opferlo\u0308ffel" + }, + { + "md5": "3228c438199297d3be5d7efd36160ded", + "pid": "1284854744", + "note": [ + { + "label": [ + "Homepage - https://www.zollvertrag.li/" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Jubila\u0308um" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1284854744", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1284854744", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1284854744", + "source": "GND" + } + ], + "variant_access_point": [ + "Zollvertrag Schweiz-Liechtenstein (2023)" + ], + "authorized_access_point": "Zollvertrag Schweiz-Liechtenstein - Jubila\u0308um (2023)" + }, + { + "md5": "b07807d6eecbc9e101b7239938e678b8", + "pid": "1285304527", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Prozessionsstange" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1285304527", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1285304527", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1285304527", + "source": "GND" + } + ], + "variant_access_point": [ + "Prozessionsstange" + ], + "authorized_access_point": "Prozessionsstangenaufsatz" + }, + { + "md5": "181d55548ba953cf28d96fff278a6d2b", + "pid": "1286106745", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Vajra&oldid=239624111" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Ritualgera\u0308t im tibetischen Buddhismus" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kultgegenstand" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1286106745", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1286106745", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1286106745", + "source": "GND" + } + ], + "variant_access_point": [ + "Dorje", + "Donnerkeil", + "Diamantzepter" + ], + "authorized_access_point": "Vajra" + }, + { + "md5": "884b33f3603bdccde35c2a755eaff1ba", + "pid": "1286227941", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Terroranschl%C3%A4ge_am_13._November_2015_in_Paris" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Die Terroranschla\u0308ge in Paris am Freitag, dem 13. November 2015, waren koordinierte, islamistisch motivierte Attentate an fu\u0308nf verschiedenen Orten im 10. und 11. Pariser Arrondissement sowie in der Umgebung des Stade de France im Vorort Saint-Denis." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Attentat" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1286227941", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1286227941", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1286227941", + "source": "GND" + } + ], + "variant_access_point": [ + "Attentats du 13 novembre 2015 en France", + "November 2015 Paris attacks", + "13. November 2015", + "Terroranschlag im Stade de France", + "Terroranschlag im Bataclan-Theater" + ], + "authorized_access_point": "Terroranschla\u0308ge am 13. November 2015 in Paris" + }, + { + "md5": "3326070cf8f3ab4cf8c8fcf426b78300", + "pid": "1286766397", + "note": [ + { + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung und Wortart, Z.B. Hebra\u0308isch / Substantiv / \u02bfa\u0304ma\u0304l" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1286766397", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1286766397", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1286766397", + "source": "GND" + } + ], + "variant_access_point": [ + "\u02bfamal", + "\u05e2\u05b8\u05de\u05b8\u05dc" + ], + "authorized_access_point": "\u02bfa\u0304ma\u0304l" + }, + { + "md5": "f79f058a76e10f1998c7fd32d3c5ae76", + "pid": "1292845384", + "note": [ + { + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?title=Allen%E2%80%93Cahn_equation&oldid=1086819347" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Reaktions-Diffusionsgleichung, welche z.B. die Phasentrennung in Mehrkomponenten-Legierungen beschreibt" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Reaktions-Diffusionsgleichung" + } + ], + "related": [ + { + "authorized_access_point": "Ginzburg-Landau-Gleichung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1292845384", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1292845384", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1292845384", + "source": "GND" + } + ], + "variant_access_point": [ + "Allen-Cahn equation" + ], + "authorized_access_point": "Allen-Cahn-Gleichung" + }, + { + "md5": "53339b17236050804cb2772b1bf9a72f", + "pid": "1293306673", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Familienname" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1293306673", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1293306673", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1293306673", + "source": "GND" + } + ], + "variant_access_point": [ + "Gabelmann (Familienname)" + ], + "authorized_access_point": "Gabel (Familienname)" + }, + { + "md5": "8cc7e07e69fbcc93e4febce26d8373d8", + "pid": "129400283X", + "note": [ + { + "label": [ + "nach antiker platonischer Auffassung Zustand der rauschhaften dichterischen Begeisterung" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Enthusiasmus" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/129400283X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)129400283X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)129400283X", + "source": "GND" + } + ], + "authorized_access_point": "Furor poeticus" + }, + { + "md5": "ea8aa466c8ec607c6f9317bf08eff60c", + "pid": "1294772627", + "note": [ + { + "label": [ + "Internet - https://www.bpb.de/shop/zeitschriften/apuz/nigeria-2021/337820/nollywood/", + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Nigerianischer_Film&oldid=234975760", + "Wikipedia - https://en.wikipedia.org/wiki/Cinema_of_Nigeria" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Nigeria ist inzwischen die zweitgro\u0308\u00dfte Filmnation der Welt nach Indien und vor den USA. Seit den 1970er Jahren werden in Nigeria Filme gedreht, doch erst seit den 1990er Jahren in gro\u0308\u00dferem Umfang. In Anlehnung an Hollywood wird der nigerianische Film auch unter dem Namen Nollywood vermarktet. Seit 2004 kommen nigerianische Filmemacher zur Berlinale. Okechukwu Ogunjiofor gilt als \"Erfinder\" Nollywoods." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Filmwirtschaft" + }, + { + "authorized_access_point": "Filmproduktion" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1294772627", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1294772627", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1294772627", + "source": "GND" + } + ], + "variant_access_point": [ + "Nigerianischer Film", + "Cinema of Nigeria" + ], + "authorized_access_point": "Nollywood" + }, + { + "md5": "b5a4b96d9830aab08aba5cae3d7a63db", + "pid": "1294996460", + "note": [ + { + "label": [ + "Duden online - https://www.duden.de/rechtschreibung/Reederin" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Als Homonymenzusatz bei Personen verwende Unternehmerin" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Reeder" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1294996460", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1294996460", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1294996460", + "source": "GND" + } + ], + "authorized_access_point": "Reederin" + }, + { + "md5": "35d8d5a57c553f86e0054ab4595ec826", + "pid": "1295208512", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Sozialrendite&oldid=228032253" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Ab 2002 entwickelter Ansatz zur Bewertung des gesellschaftlichen Mehrwerts durch soziale Projekte" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Return on Investment" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1295208512", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1295208512", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1295208512", + "source": "GND" + } + ], + "variant_access_point": [ + "Social Return on Investment", + "SROI" + ], + "authorized_access_point": "Sozialrendite" + }, + { + "md5": "cab35cf8eb019c469e70147c9f278743", + "pid": "1295539519", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Tchamba_(Kult)&oldid=224257647" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Besessenheitskult v.a. im Su\u0308den von Togo und Benin, bei dem die Geister ehemaliger Sklaven geehrt werden, die v.a. die Nachfahren fru\u0308herer Sklaven und Sklavenbesitzer befallen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Besessenheitskult" + } + ], + "related": [ + { + "authorized_access_point": "Geister" + }, + { + "authorized_access_point": "Wodu" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1295539519", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1295539519", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1295539519", + "source": "GND" + } + ], + "variant_access_point": [ + "Tsamba", + "Tsaba", + "Tsemba", + "Tseba", + "Tchamba-Kult" + ], + "authorized_access_point": "Tchamba" + }, + { + "md5": "2ae7dd7534dc8435f4f8f8b9ec280b27", + "pid": "1296369811", + "note": [ + { + "label": [ + "Wikipedia - https://en.wikipedia.org/wiki/Congolese_rumba", + "Internet - https://www.aai.uni-hamburg.de/afrika/veranstaltungen/ausstellung/2-musik/5-rumba-lingala-kongo.html" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Die Kongolesische Rumba ist eine Tanzmusik aus der Region um Brazzaville und Kinshasa und wird oft in der Sprache Lingala gesungen." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tanzmusik" + } + ], + "related": [ + { + "authorized_access_point": "Soukous" + }, + { + "authorized_access_point": "Lingala" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1296369811", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1296369811", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1296369811", + "source": "GND" + } + ], + "variant_access_point": [ + "Kongolesische Rumba", + "Rumba Lingala", + "Kongo-Rumba", + "Zaire-Musik" + ], + "authorized_access_point": "Rumba (Tanzmusik)" + }, + { + "md5": "0a056733edbdf44ad477782158bc710d", + "pid": "1296860906", + "note": [ + { + "label": [ + "1905 Elfe halbfett" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Kursive" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1296860906", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1296860906", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1296860906", + "source": "GND" + } + ], + "variant_access_point": [ + "Kunstschrift Elfe" + ], + "authorized_access_point": "Elfe (Druckschrift)" + }, + { + "md5": "dce7e5688954c58e1e4015acc54f8b3f", + "pid": "1297822668", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=White_Power&oldid=235014502" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Urspru\u0308nglich Losungswort des \"Ku-Klux-Klans\". Inzwischen Schlu\u0308sselbegriff aus rassistischen oder neonazistischen Szenen; steht fu\u0308r die nazistische und rassistische Theorie von der Vorherrschaft der \u201ewei\u00dfen Rasse\u201c" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Slogan" + }, + { + "authorized_access_point": "Politische Theorie" + } + ], + "related": [ + { + "authorized_access_point": "Rassismus" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1297822668", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1297822668", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1297822668", + "source": "GND" + } + ], + "variant_access_point": [ + "White Pride", + "WP" + ], + "authorized_access_point": "White Power" + }, + { + "md5": "ba5ea8eeb4f393ae21a0fbb78c8cc50c", + "pid": "1298190746", + "note": [ + { + "label": [ + "Informelle Gruppe afrokreolischer Ma\u0308nner, die in New Orleans spiritistische Sitzungen abhielten. Die Praxis des Cercle Harmonique verband Religion und Politik, da viele Botschaften, die sie erhielten, die Rechte der Schwarzen und soziale Gleichheit forderten" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ma\u0308nnergruppe" + } + ], + "related": [ + { + "authorized_access_point": "Spiritismus" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1298190746", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1298190746", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1298190746", + "source": "GND" + } + ], + "authorized_access_point": "Cercle Harmonique" + }, + { + "md5": "ed41ab6de1b673841769a7e36b004a56", + "pid": "1298312817", + "note": [ + { + "label": [ + "Homepage - https://emin.org" + ], + "noteType": "dataSource" + }, + { + "label": [ + "1971 durch Raymond Armin, genannt Leo, in London begru\u0308ndet, heute internationales Netzwerk Gleichgesinnter" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Lebensphilosophie" + }, + { + "authorized_access_point": "Neue Religion" + }, + { + "authorized_access_point": "Netzwerk" + } + ], + "related": [ + { + "authorized_access_point": "Esoterik" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1298312817", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1298312817", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1298312817", + "source": "GND" + } + ], + "variant_access_point": [ + "Emin society", + "The Eminent Way", + "Template Network", + "Emin movement" + ], + "authorized_access_point": "Emin" + }, + { + "md5": "f609d80061a5c4907a8ea30b9a550034", + "pid": "1298858054", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Retrocomputing&oldid=232682995" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Nutzung alter, von ihren Herstellern aufgegebener Hard- und Software zur Datensicherung, Forschung oder zum Zeitvertreib (fu\u0308r letzteres verwandter Begriff: Retrogaming)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Computer" + } + ], + "related": [ + { + "authorized_access_point": "Software" + }, + { + "authorized_access_point": "Datenverarbeitung" + }, + { + "authorized_access_point": "Retrogaming" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1298858054", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1298858054", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1298858054", + "source": "GND" + } + ], + "variant_access_point": [ + "Retro-Computing", + "Computerarcha\u0308ologie" + ], + "authorized_access_point": "Retrocomputing" + }, + { + "md5": "e225cf2e6dca9109acf03982f214a4fe", + "pid": "129922539X", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Motivierende_Gespr%C3%A4chsf%C3%BChrung&oldid=232935635" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gespra\u0308chsfu\u0308hrung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "sh2006005865", + "source": "DLC" + }, + { + "type": "uri", + "value": "https://id.loc.gov/authorities/subjects/sh2006005865" + } + ], + "authorized_access_point": "Motivational interviewing" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "FRBNF16167865", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16167865w" + } + ], + "authorized_access_point": "Entretiens motivationnels" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/129922539X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)129922539X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)129922539X", + "source": "GND" + } + ], + "variant_access_point": [ + "Motivationale Gespra\u0308chsfu\u0308hrung" + ], + "authorized_access_point": "Motivierende Gespra\u0308chsfu\u0308hrung" + }, + { + "md5": "c3c38caed7390f4a5d317c1687ed4816", + "pid": "1302496050", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Vergewaltigung&oldid=236552945#Gruppenvergewaltigung" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Vergewaltigung einer oder mehrerer Personen durch eine Gruppe von Personen." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Vergewaltigung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1302496050", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1302496050", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1302496050", + "source": "GND" + } + ], + "authorized_access_point": "Gruppenvergewaltigung" + }, + { + "md5": "50c3e07a931f3762ed946e7e03475054", + "pid": "1302592122", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1302592122", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1302592122", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1302592122", + "source": "GND" + } + ], + "authorized_access_point": "Lautsprecher (Druckschrift)" + }, + { + "md5": "5ab23a92fd82d975e5fc099d0230680d", + "pid": "1302781162", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Auszeichnungsschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1302781162", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1302781162", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1302781162", + "source": "GND" + } + ], + "authorized_access_point": "Lucina (Druckschrift)" + }, + { + "md5": "1fd916224b75325b99454d30c27277b4", + "pid": "1302782274", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Auszeichnungsschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1302782274", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1302782274", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1302782274", + "source": "GND" + } + ], + "authorized_access_point": "Lumina (Druckschrift)" + }, + { + "md5": "ece305a2983e68fa5eded5326583d9c1", + "pid": "1302782517", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Auszeichnungsschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1302782517", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1302782517", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1302782517", + "source": "GND" + } + ], + "authorized_access_point": "Lux (Druckschrift)" + }, + { + "md5": "3c7096bee1ed26b6a81d324126edcc41", + "pid": "1302981390", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Jubila\u0308um" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1302981390", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1302981390", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1302981390", + "source": "GND" + } + ], + "variant_access_point": [ + "1200 Jahre Corvey 822-2022", + "Tausendzweihundert Jahre Corvey", + "Kloster Corvey (2022-2023)", + "Corvey-Jubila\u0308um (2022-2023)" + ], + "authorized_access_point": "1200 Jahre Corvey" + }, + { + "md5": "f5c88bcd99995174d3b5ae2943178db3", + "pid": "1303066408", + "note": [ + { + "label": [ + "Weiterer Schriftschnitt: Lichte Motor nach Zeichnung von Karl Sommer in fu\u0308nf Graden von 36 bis 72 Punkten" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Auszeichnungsschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1303066408", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1303066408", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1303066408", + "source": "GND" + } + ], + "authorized_access_point": "Motor (Druckschrift)" + }, + { + "md5": "8957a735790b4b95e26335a252762d9a", + "pid": "1304458741", + "note": [ + { + "label": [ + "Homosaurus - https://homosaurus.org/v3/homoit0001229", + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Queerfeindlichkeit&oldid=233532639", + "Queer Lexikon - https://queer-lexikon.net/glossar/" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Feindlichkeit gegenu\u0308ber queeren Menschen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Vorurteil" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1304458741", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1304458741", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1304458741", + "source": "GND" + } + ], + "variant_access_point": [ + "Queerphobie", + "Queerphobia" + ], + "authorized_access_point": "Queerfeindlichkeit" + }, + { + "md5": "8e7c22bfe3751e4d31de63f3d4e8feeb", + "pid": "1304711749", + "note": [ + { + "label": [ + "Getreidegebinde, angefertigt zum Ende der Getreideernte anla\u0308sslich des Ernetdankfestes" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kranz" + }, + { + "authorized_access_point": "Brauch" + } + ], + "related": [ + { + "authorized_access_point": "Getreideernte" + }, + { + "authorized_access_point": "Erntedankfest" + }, + { + "authorized_access_point": "Bauernleben" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1304711749", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1304711749", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1304711749", + "source": "GND" + } + ], + "variant_access_point": [ + "Erntekrone" + ], + "authorized_access_point": "Erntekranz" + }, + { + "md5": "2f20333849d0c7f1ed6a688fd61c4da2", + "pid": "1305189876", + "note": [ + { + "label": [ + "Wiktionary - https://en.wiktionary.org/w/index.php?title=%CE%B2%CE%BF%CE%B7%CE%B8%CE%AD%CF%89&oldid=69059160" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung und Wortart, z.B. Griechisch / Verb / boe\u0304the\u0301o\u0304" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1305189876", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1305189876", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1305189876", + "source": "GND" + } + ], + "variant_access_point": [ + "\u03b2\u03bf\u03b7\u03b8\u03b5\u0301\u03c9" + ], + "authorized_access_point": "boe\u0304the\u0301o\u0304" + }, + { + "md5": "7695ccd213bbbab4063ed6615c5473f0", + "pid": "1305992857", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zelltransplantation" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1305993039", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D033581", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D033581" + } + ], + "authorized_access_point": "Stem Cell Transplantation" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1305992857", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1305992857", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1305992857", + "source": "GND" + } + ], + "variant_access_point": [ + "Stammzellentransplantation" + ], + "authorized_access_point": "Stammzelltransplantation" + }, + { + "md5": "53ecda7bec11befda9da31c92cd85423", + "pid": "130692476", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7501863-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)130692476", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7501863-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Literarische Interpretation" + ], + "authorized_access_point": "Literaturinterpretation" + }, + { + "md5": "1e73dbe92f42d6a36376e32668583655", + "pid": "13069374X", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7502002-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)13069374X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7502002-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Verfassungsma\u0308\u00dfiges Gesetz", + "Verfassungswidrigkeit von Gesetzen", + "Verfassungswidriges Gesetz", + "Nichtiges Gesetz", + "Gesetz", + "Gesetz" + ], + "authorized_access_point": "Verfassungsma\u0308\u00dfigkeit von Gesetzen" + }, + { + "md5": "01a30df4e6c8c57a72836ab755cb7c2d", + "pid": "130698644", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7502541-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)130698644", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7502541-3", + "source": "GND" + } + ], + "authorized_access_point": "Evangelische Seelsorge" + }, + { + "md5": "e0939910cf5534c907dbe5a0018c70b0", + "pid": "130699101", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7502591-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)130699101", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7502591-7", + "source": "GND" + } + ], + "authorized_access_point": "EG-Beamter" + }, + { + "md5": "501ce04b70435a06c2970fb954fbecfd", + "pid": "130699152", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7502596-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)130699152", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7502596-6", + "source": "GND" + } + ], + "authorized_access_point": "EG-Dienstrecht" + }, + { + "md5": "14c098750d76f5168ea071e62d6cc311", + "pid": "130700525", + "note": [ + { + "label": [ + "einz. Richtlinien werden nach \u00a7715 RSWK angesetzt" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7502749-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)130700525", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7502749-5", + "source": "GND" + } + ], + "authorized_access_point": "EG-Richtlinie" + }, + { + "md5": "bae724b4faa4f672ba77df8561d9afa9", + "pid": "130702722", + "note": [ + { + "label": [ + "Nur benutzt fu\u0308r die Autorita\u0308t des Erziehenden" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7502991-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)130702722", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7502991-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Erzieherische Autorita\u0308t" + ], + "authorized_access_point": "Pa\u0308dagogische Autorita\u0308t" + }, + { + "md5": "6e240123670a13dd25f8338cf08da060", + "pid": "130703907", + "note": [ + { + "label": [ + "Verwendet fu\u0308r das Recht der Datenverarbeitung", + "Aktualisierung des Hinweissatzes nach Mx-Entscheidung; bis Juli/2024 wurden die Schlagwo\u0308rter \"Datenverarbeitung\" und \"Recht\" fu\u0308r den Nicht-Deskriptor verwendet." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7503120-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)130703907", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7503120-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Datenverarbeitungsrecht", + "Datenverarbeitung", + "Computer" + ], + "authorized_access_point": "Computerrecht" + }, + { + "md5": "29dd89a1c7aa523a712fd7da5503d308", + "pid": "130708291", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7503603-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)130708291", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7503603-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Ehe", + "Eherecht der katholischen Kirche" + ], + "authorized_access_point": "Kanonisches Eherecht" + }, + { + "md5": "f7637ca3d3d5fd4d5edc91620f6fa41d", + "pid": "13071206X", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Rekombination_(Genetik)&oldid=219839856" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7504017-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)13071206X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7504017-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Genetische Rekombination", + "Neukombination", + "Gen" + ], + "authorized_access_point": "Rekombination (Genetik)" + }, + { + "md5": "ca7b4c0ce5b13fc3eb471142f25d449e", + "pid": "130712930", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7504114-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)130712930", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7504114-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Stickstoff-Schwefel-Verbindungen", + "Schwefelnitride" + ], + "authorized_access_point": "Schwefel-Stickstoff-Verbindungen" + }, + { + "md5": "ea0eabbea598f6bdaccfe952e0afabb1", + "pid": "130714941", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7504334-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)130714941", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7504334-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Betrieb", + "Betriebsorganisation", + "Unternehmensstruktur (Organisation)", + "Unternehmen" + ], + "authorized_access_point": "Unternehmensorganisation" + }, + { + "md5": "9ae7ef7e7fd0e146888c61e09b1beb2d", + "pid": "130715107", + "note": [ + { + "label": [ + "Von Arzneimittelallergie unterschieden, siehe dort" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7504353-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)130715107", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7504353-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Inkompatibilita\u0308t" + ], + "authorized_access_point": "Arzneimittelinkompatibilita\u0308t" + }, + { + "md5": "4dcb52e815f679bd3a37d643a41fbe07", + "pid": "130715387", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7504382-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)130715387", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7504382-8", + "source": "GND" + } + ], + "authorized_access_point": "Evidenztheorie (Recht)" + }, + { + "md5": "99b1613a623e828cb71948173524340a", + "pid": "130722529", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7505168-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)130722529", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7505168-0", + "source": "GND" + } + ], + "authorized_access_point": "Alkoholintoleranz" + }, + { + "md5": "c305b906a56b4da917104f4178ed3f95", + "pid": "130724572", + "note": [ + { + "label": [ + "Fu\u0308r rein motivische Behandlung der Antike in den Ku\u0308nsten verwende SW Antike " + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7505393-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)130724572", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7505393-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Antikenstudium", + "Antikenkopie", + "Antikerezeption" + ], + "authorized_access_point": "Antikenrezeption" + }, + { + "md5": "4b0771d61a1c8e8a6e72c1343f1f4c6d", + "pid": "130741094", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7507209-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)130741094", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7507209-9", + "source": "GND" + } + ], + "authorized_access_point": "Gedichtinterpretation" + }, + { + "md5": "3b288b59d795d9c4d8166b55e794ad5b", + "pid": "130741531", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7507258-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)130741531", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7507258-0", + "source": "GND" + } + ], + "authorized_access_point": "Betonkorrosion" + }, + { + "md5": "792a32aeb6416e0ba1022321bd57e159", + "pid": "130749478", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7508128-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)130749478", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7508128-3", + "source": "GND" + } + ], + "authorized_access_point": "Chinesische Philosophie" + }, + { + "md5": "6eba53f7cd3f508d121abfc824c0ef22", + "pid": "130750085", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7508194-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)130750085", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7508194-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Homophilie", + "Schwule Liebe", + "Schwule Orientierung" + ], + "authorized_access_point": "Ma\u0308nnliche Homosexualita\u0308t" + }, + { + "md5": "8e07d334f592be118a20470e49f0505b", + "pid": "130755087", + "note": [ + { + "label": [ + "Disziplin, die sich mit neuropsychologischen Sto\u0308rungen unter klinischen Gesichtspunkten befa\u00dft (einschl. Behandlung/Rehabilitation)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7508743-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)130755087", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7508743-1", + "source": "GND" + } + ], + "authorized_access_point": "Klinische Neuropsychologie" + }, + { + "md5": "96810d2cf447e7c57dee58abfda60efa", + "pid": "130791008", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7512682-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)130791008", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7512682-5", + "source": "GND" + } + ], + "authorized_access_point": "Auslandseinsatz (Milita\u0308r)" + }, + { + "md5": "0562b8920bc67f735f7dadfc7f60dd28", + "pid": "1308455038", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Science_and_Technology_Studies&oldid=233892252", + "Niewo\u0308hner, S\u00f8rensen, Beck: Science and Technology Studies. Eine sozialanthropologische Einfu\u0308hrung - https://doi.org/10.14361/transcript.9783839421062.intro", + "Havard University. What is STS? - https://sts.hks.harvard.edu/about/whatissts.html" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Interdisziplina\u0308res Forschungsfeld bzw. interdisziplina\u0308rer Studiengang, der sich mit der Verschra\u0308nkung von Wissenschaft, Technologie und Gesellschaft bescha\u0308ftigt" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Forschung" + } + ], + "related": [ + { + "authorized_access_point": "Wissenschaftsforschung" + }, + { + "authorized_access_point": "Techniksoziologie" + }, + { + "authorized_access_point": "Wissenschaftssoziologie" + }, + { + "authorized_access_point": "Actor-Network-Theory" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1308455038", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1308455038", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1308455038", + "source": "GND" + } + ], + "variant_access_point": [ + "Wissenschafts- und Technikforschung", + "STS" + ], + "authorized_access_point": "Science and Technology Studies" + }, + { + "md5": "dd04cee8b69cfd16b802adf5fcb96807", + "pid": "1308550189", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Innovation" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334878129", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2005020553", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2005020553" + } + ], + "authorized_access_point": "Disruptive technologies" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334878129", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF171317510", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://catalogue.bnf.fr/ark:/12148/cb171317510" + } + ], + "authorized_access_point": "Technologie de rupture" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1308891393", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "30176-1", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/30176-1" + } + ], + "authorized_access_point": "Disruptive Innovation" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1308550189", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1308550189", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1308550189", + "source": "GND" + } + ], + "variant_access_point": [ + "Disruptive Technologie", + "Disruptive innovation", + "Disruptive technology" + ], + "authorized_access_point": "Disruptive Innovation" + }, + { + "md5": "3d9bebdbcff8b3584533b928a0defc22", + "pid": "130899687X", + "note": [ + { + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?title=Live_coding&oldid=1168454487" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Live-Coding beschreibt eine ku\u0308nstlerische Praxis und kreative Technik, bei der Computerprogramme in Echtzeit und auf der Bu\u0308hne geschrieben werden, wird ha\u0308ufig zur Erstellung von klang- und bildbasierten digitalen Medien sowie von Lichtsystemen, improvisiertem Tanz und Poesie, Computermusik verwendet" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Programmierung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/130899687X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)130899687X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)130899687X", + "source": "GND" + } + ], + "variant_access_point": [ + "Live Coding", + "Just-in-Time-Programmierung", + "On-the-fly-Programmierung", + "Konversationsprogrammierung" + ], + "authorized_access_point": "Live-Coding" + }, + { + "md5": "25bbcd4ee04e70d29ced4ea23a5d06fd", + "pid": "1309822123", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Retro&oldid=242338507" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Nachahmung od. Wiederbelebung von Elementen fru\u0308herer Stilrichtungen in Musik, Design, Architektur, Literatur o. A\u0308. aus einer nostalgischen Motivation. Diese kulturelle Stro\u0308mung gibt es ca. seit den 1970er Jahren, mit einer Nachahmung von Stilen ab den 1920er Jahren." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Stil" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1309822123", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1309822123", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1309822123", + "source": "GND" + } + ], + "variant_access_point": [ + "Retro-Stil", + "Vintage-Stil", + "Retrowelle" + ], + "authorized_access_point": "Retro" + }, + { + "md5": "896a7f887ba4d32f3d552287feebb2cb", + "pid": "1310159343", + "note": [ + { + "label": [ + "Verknu\u0308pfe mit dem jeweils zutreffenden Sachverhalt, z. B. Eucharistie. Nicht zu verwenden fu\u0308r rechtliche Sachverhalte; hier liegen speziellere SWW vor, z. B. Dispens oder Aussetzung (Strafrecht)." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1310159343", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1310159343", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1310159343", + "source": "GND" + } + ], + "authorized_access_point": "Aussetzung" + }, + { + "md5": "34ae3fca85d7d2c3d563830515111892", + "pid": "1310673683", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Auszeichnungsschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1310673683", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1310673683", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1310673683", + "source": "GND" + } + ], + "authorized_access_point": "Pharos (Druckschrift)" + }, + { + "md5": "3285fbfd4c867a3f1bededb6ed636a46", + "pid": "1311025847", + "note": [ + { + "label": [ + "Dialekt der Sprache Ghale" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Ghale" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1311025847", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1311025847", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1311025847", + "source": "GND" + } + ], + "variant_access_point": [ + "Bhotte", + "Kutang", + "Kuke" + ], + "authorized_access_point": "Kutang Ghale" + }, + { + "md5": "71234a3b92a9920779e3d78fa70aba26", + "pid": "1311262989", + "note": [ + { + "label": [ + "Geho\u0308rt zu den bodischen Sprachen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Tibeto-Himalaja-Sprachen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1311262989", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1311262989", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1311262989", + "source": "GND" + } + ], + "variant_access_point": [ + "Galle Gurung", + "Ghale Gurung" + ], + "authorized_access_point": "Ghale" + }, + { + "md5": "95d905340b4e1a3876544b94d2220470", + "pid": "1311352430", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Hilberts_Hotel&oldid=243090788" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Von David Hilbert erdachtes Gedankenexperiment zur Veranschaulichung von Unendlichkeiten, Paradoxon" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gedankenexperiment" + }, + { + "authorized_access_point": "Paradoxon" + } + ], + "related": [ + { + "authorized_access_point": "Unendlichkeit" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1311352430", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1311352430", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1311352430", + "source": "GND" + } + ], + "variant_access_point": [ + "Hilbert's paradox of the Grand Hotel", + "Hilbert's hotel", + "Hilberts Paradoxon des Grand Hotels", + "Unendliches Hotelparadoxon", + "Hotel infinity" + ], + "authorized_access_point": "Hilberts Hotel" + }, + { + "md5": "2dac0d5f5bd2578a930facc18776dda2", + "pid": "131143609X", + "note": [ + { + "label": [ + "aus dem indischen Saiteninstrument Tanpura abgeleitetes und umgeformtes Saiteninstrument, das auf den Ko\u0308rper gelegt wird" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zupfinstrument" + } + ], + "related": [ + { + "authorized_access_point": "Tanbur" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/131143609X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)131143609X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)131143609X", + "source": "GND" + } + ], + "variant_access_point": [ + "Body Tambura" + ], + "authorized_access_point": "Ko\u0308rpertambura" + }, + { + "md5": "04e30fd2aa8ad59c46fcf424b3aae7d6", + "pid": "1311509100", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Gimbri&oldid=230664992" + ], + "noteType": "dataSource" + }, + { + "label": [ + "eine 1 bis 1,5 Meter lange gezupfte Binnenspie\u00dflaute mit drei Saiten in den La\u0308ndern Marokko, Tunesien und Algerien" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Laute" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1311509100", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1311509100", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1311509100", + "source": "GND" + } + ], + "variant_access_point": [ + "Ginbri", + "Guinbri", + "Guembri", + "Gmbri", + "Gnibra", + "Gombri", + "Gunbri", + "Gunibri" + ], + "authorized_access_point": "Gimbri" + }, + { + "md5": "5ff6cb949b4258165c6d42ce6fa86746", + "pid": "1312506059", + "note": [ + { + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung und Wortart, z.B. Griechisch / Verb / poiein" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1312506059", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1312506059", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1312506059", + "source": "GND" + } + ], + "variant_access_point": [ + "\u03c0\u03bf\u03b9\u03b5\u03b9\u03bd" + ], + "authorized_access_point": "poiein" + }, + { + "md5": "d42acbf6bc4fb77bf813b066fbac53b2", + "pid": "1312507497", + "note": [ + { + "label": [ + "Kombiniere mit Sprachbezeichnung und Wortart, z.B. s Griechisch ; s Substantiv ; s pho\u0304tiste\u0304rion" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1312507497", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1312507497", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1312507497", + "source": "GND" + } + ], + "variant_access_point": [ + "\u03c6\u03c9\u03c4\u03b9\u03c3\u03c4\u03b7\u03c1\u03b9\u03bf\u03bd" + ], + "authorized_access_point": "pho\u0304tiste\u0304rion" + }, + { + "md5": "8664bda48f7dd5027fd4c98426ec48e9", + "pid": "1314016032", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sportler" + } + ], + "related": [ + { + "authorized_access_point": "Biathlon" + }, + { + "authorized_access_point": "Biathletin" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1314016032", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1314016032", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1314016032", + "source": "GND" + } + ], + "authorized_access_point": "Biathlet" + }, + { + "md5": "98ce1135ac7c2a4a76d5ff3591616cc6", + "pid": "1314016547", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sportlerin" + } + ], + "related": [ + { + "authorized_access_point": "Biathlon" + }, + { + "authorized_access_point": "Biathlet" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1314016547", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1314016547", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1314016547", + "source": "GND" + } + ], + "authorized_access_point": "Biathletin" + }, + { + "md5": "90e91bead1c16be0a2d0234e47e70b70", + "pid": "1314019333", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Cabinentaxi&oldid=238294207" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Entwicklungsprojekt des bundesdeutschen Forschungsministeriums fu\u0308r ein Personentransportsystem" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kabinenbahn (Nahverkehr)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1314019333", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1314019333", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1314019333", + "source": "GND" + } + ], + "variant_access_point": [ + "CabinenTaxi", + "Cabintaxi PRT System", + "C-Bahn", + "Kleinkabinenbahn", + "Kabinentaxi" + ], + "authorized_access_point": "Cabinentaxi" + }, + { + "md5": "cf60b6ab9b859b9ea203d3d8eeac3ec2", + "pid": "1314207296", + "note": [ + { + "label": [ + "Werke fu\u0308r zwei und mehr Spielende auf zwei Orgeln" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Orgelmusik" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1314207296", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1314207296", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1314207296", + "source": "GND" + } + ], + "variant_access_point": [ + "Musik fu\u0308r 2 Orgeln", + "Orgelmusik fu\u0308r zwei Instrumente" + ], + "authorized_access_point": "Musik fu\u0308r zwei Orgeln" + }, + { + "md5": "b87a93b6834cc45d0c6eb4f54ce485e5", + "pid": "1314347403", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Proteste_im_Irak_2019/2020&oldid=245262844" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Aufstand" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1314347403", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1314347403", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1314347403", + "source": "GND" + } + ], + "variant_access_point": [ + "T\u0331aurat Tis\u030cri\u0304n", + "Thawrat Tishri\u0304n", + "Tishri\u0304n-Aufstand", + "Tishreen-Revolution", + "Tishreen Movement", + "October Protest Movement", + "Oktoberrevolution (2019-2020)", + "\u062b\u0648\u0631\u0629 \u062a\u0634\u0631\u064a\u0646", + "\u0627\u0644\u0627\u0646\u062a\u0641\u0627\u0636\u0629 \u0627\u0644\u062a\u0634\u0631\u064a\u0646\u064a\u0629" + ], + "authorized_access_point": "Proteste im Irak" + }, + { + "md5": "7c18d7c186467b5c92853b2a0afaa17d", + "pid": "131453260X", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Magister_equitum&oldid=236888767" + ], + "noteType": "dataSource" + }, + { + "label": [ + "In der ro\u0308mischen Republik der vom Diktator (urspru\u0308nglich Magister Populi) ernannte Befehlshaber der Reiterei; In der ro\u0308mischen Kaiserzeit einer der Magistri Militum (Magister)." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Magistrat" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/131453260X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)131453260X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)131453260X", + "source": "GND" + } + ], + "authorized_access_point": "Magister Equitum" + }, + { + "md5": "f65f6d368952764deee4044ff753aea9", + "pid": "1315045133", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Buyruk&oldid=229267516" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Sammlung von alevitischen Glaubensinhalten, Rezitationsvorschriften sowie moralischen Ermahnungen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Religio\u0308se Literatur" + } + ], + "related": [ + { + "authorized_access_point": "Aleviten" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1315045133", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1315045133", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1315045133", + "source": "GND" + } + ], + "authorized_access_point": "Buyruk" + }, + { + "md5": "45bbaad5ead1f2ca2d33ed9197ab5510", + "pid": "1315166526", + "note": [ + { + "label": [ + "Sammelbezeichnung fu\u0308r die v.a. austronesische Sprachen sprechenden melanesischen Bevo\u0308lkerungsgruppen im a\u0308u\u00dfersten Su\u0308dosten von Neuguinea und den no\u0308rdlich und o\u0308stlich vorgelagerten Archipelen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134218907", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12223472", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12223472w" + } + ], + "authorized_access_point": "Massim (peuple de Papouasie-Nouvelle-Guine\u0301e)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1315166526", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1315166526", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1315166526", + "source": "GND" + } + ], + "authorized_access_point": "Massim" + }, + { + "md5": "b593bbb848f1e663724e8d8ce7fe27d6", + "pid": "1315226715", + "note": [ + { + "label": [ + "gem. Tagliavini (S. 344) wird in den Lanzo-Ta\u0308lern eine frankoprovenzalische Mundart gesprochen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Frankoprovenzalisch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1315226715", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1315226715", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1315226715", + "source": "GND" + } + ], + "variant_access_point": [ + "Mundart Frankoprovenzalisch (Ba\u0300rmes)" + ], + "authorized_access_point": "Mundart Frankoprovenzalisch (Balme)" + }, + { + "md5": "dc55968fd93071bce15fae2a66e0d544", + "pid": "1315344238", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Aufenthaltsrecht" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1315344238", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1315344238", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1315344238", + "source": "GND" + } + ], + "authorized_access_point": "Subsidia\u0308rer Schutz" + }, + { + "md5": "c1894cae11cb454fc88138517ac09fa1", + "pid": "1315438240", + "note": [ + { + "label": [ + "Unterhaltungssoftware Selbstkontrolle. Lexikon - https://usk.de/alle-lexikonbegriffe/mod/", + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Mod_(Computerspiele)&oldid=240387416" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Kurzwort fu\u0308r die oftmals communitybasierte Modifikation eines Computerspiels" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Computerspiel" + }, + { + "authorized_access_point": "A\u0308nderung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1315438240", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1315438240", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1315438240", + "source": "GND" + } + ], + "variant_access_point": [ + "Modifikation (Computerspiel)", + "Video Game Mod" + ], + "authorized_access_point": "Mod (Computerspiel)" + }, + { + "md5": "e054f042186db1bceb09d705343ccce8", + "pid": "1315456125", + "note": [ + { + "label": [ + "Das Kollegium der Dendrophori geho\u0308rte zu einem hohen Feiertag des Kybelekults und hatte die Aufgabe, die heilige Kiefer zu fa\u0308llen und zum Bildnis des Attis zu bringen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Priesterkollegium" + } + ], + "related": [ + { + "authorized_access_point": "Kybelekult" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1315456125", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1315456125", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1315456125", + "source": "GND" + } + ], + "variant_access_point": [ + "Dendrophori" + ], + "authorized_access_point": "Dendrophoroi" + }, + { + "md5": "28ec5fa68b71f4eb31d8ce1932672dbb", + "pid": "1315679264", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Oskar_Pastior&oldid=240480140#Oskar-Pastior-Stiftung_und_Oskar-Pastior-Preis" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Literaturpreis fu\u0308r experimentelle Lyrik" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Literaturpreis" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1315679264", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1315679264", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1315679264", + "source": "GND" + } + ], + "variant_access_point": [ + "Oskar Pastior Preis" + ], + "authorized_access_point": "Oskar-Pastior-Preis" + }, + { + "md5": "1039e6af2c05451ffba9edeaf4b4c4da", + "pid": "131634410X", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Else-Lasker-Sch%C3%BCler-Gesellschaft&oldid=240984809#Else-Lasker-Sch%C3%BCler-Lyrikpreis" + ], + "noteType": "dataSource" + }, + { + "label": [ + "bisher vergeben in den Jahren 1994, 1996, 2016, 2018 und 2022" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Literaturpreis" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/131634410X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)131634410X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)131634410X", + "source": "GND" + } + ], + "variant_access_point": [ + "Else Lasker-Schu\u0308ler-Lyrikpreis", + "Else-Lasker-Schu\u0308ler-Preis fu\u0308r Lyrik", + "Fo\u0308rderpreis des Else-Lasker-Schu\u0308ler-Lyrikpreises", + "Else-Lasker-Schu\u0308ler-Fo\u0308rderpreis" + ], + "authorized_access_point": "Else-Lasker-Schu\u0308ler-Lyrikpreis" + }, + { + "md5": "da2f47e104ae1cabe2beb51bfd4e8375", + "pid": "1318430968", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Hochalemannisch" + }, + { + "authorized_access_point": "Schweizerdeutsch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1318430968", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1318430968", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1318430968", + "source": "GND" + } + ], + "authorized_access_point": "Mundart Hochalemannisch (Tuggen)" + }, + { + "md5": "881b0e00098077a473cd4901c0eb4bac", + "pid": "1318529573", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Okkultist" + }, + { + "authorized_access_point": "Okkultismus" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331753716", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2020008750", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2020008750" + } + ], + "authorized_access_point": "Women occultists" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1318529573", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1318529573", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1318529573", + "source": "GND" + } + ], + "authorized_access_point": "Okkultistin" + }, + { + "md5": "f85fa82175b3451e039405228d41c00c", + "pid": "1318600871", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Haager_Schule&oldid=240944142" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Bezeichnung fu\u0308r eine Gruppe niederla\u0308ndischer Ku\u0308nstler, die nach einer Erneuerung der Malerei strebte; Hauptvertreter W. Roelofs, J. Israe\u0308ls, J. H. Weissenbruch, H. W. Mesdag, J., M. und W. Maris sowie A. Mauve, die sta\u0308ndig oder zeitweise in Den Haag lebten" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ku\u0308nstlerschule" + } + ], + "related": [ + { + "authorized_access_point": "Malerei" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1318600871", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1318600871", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1318600871", + "source": "GND" + } + ], + "variant_access_point": [ + "Haagse School", + "Schule von Den Haag", + "E\u0301cole de La Haye" + ], + "authorized_access_point": "Haager Schule" + }, + { + "md5": "c8c9a0ae09c1402415bfec4a4f0c3963", + "pid": "1318715598", + "note": [ + { + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung und hier nicht permutierender Wortart, z. B. Hebra\u0308isch / Partikel / \u02beal" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1318715598", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1318715598", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1318715598", + "source": "GND" + } + ], + "authorized_access_point": "\u02beal" + }, + { + "md5": "2b7297a143e04b65da89f205ebffeb76", + "pid": "1318875676", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Krieg_in_Israel_und_Gaza_seit_2023&oldid=242011894" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Krieg zwischen Israel und Hamas, ausgelo\u0308st durch den Terrorangriff der Hamas auf Israel am 7. Oktober 2023" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Krieg" + } + ], + "related": [ + { + "authorized_access_point": "Terrorangriff der Hamas auf Israel 2023" + }, + { + "authorized_access_point": "Nahostkonflikt" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1318875676", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1318875676", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1318875676", + "source": "GND" + } + ], + "variant_access_point": [ + "Hamas-Israel-Krieg", + "Krieg Israel-Hamas", + "Krieg Hamas-Israel", + "Krieg zwischen Israel und Hamas", + "Krieg zwischen Hamas und Israel", + "Israel-Gaza-Krieg", + "Krieg Gaza-Israel", + "Israel-Hamas war", + "Hamas-Israel war", + "Israel-Gaza war", + "Gaza-Israel war", + "Guerre Israe\u0308l-Hamas", + "Guerre Hamas-Israe\u0308l", + "Guerre Israe\u0308l-Gaza", + "Guerre Gaza-Israe\u0308l" + ], + "authorized_access_point": "Israel-Hamas-Krieg" + }, + { + "md5": "c49b735f6c8d41d6d653378319ae1d3e", + "pid": "1319352146", + "note": [ + { + "label": [ + "Einzige Art der Familie Walhaie (Rhincodontidae)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Haie (Ordnung)" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333493509", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85146344", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85146344" + } + ], + "authorized_access_point": "Whale shark" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333493509", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15515151", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb155151519" + } + ], + "authorized_access_point": "Requin baleine" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1319352146", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1319352146", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1319352146", + "source": "GND" + } + ], + "variant_access_point": [ + "Rhincodon typus" + ], + "authorized_access_point": "Walhai" + }, + { + "md5": "0e87a434cfc0725f654f18d206a314df", + "pid": "1319390072", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Franzo\u0308sisch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1319390072", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1319390072", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1319390072", + "source": "GND" + } + ], + "authorized_access_point": "Mundart Franzo\u0308sisch (Beaune-la-Rolande)" + }, + { + "md5": "1b897eefea3bd3bcb8d2dcc819b0fb5d", + "pid": "1319483321", + "note": [ + { + "label": [ + "OBV - https://permalink.obvsg.at/AC17027232", + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Plasmamedizin&oldid=225082653" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Anwendung von kalten physikalischen Plasmen fu\u0308r therapeutische Zwecke", + "Nicht zu verwenden fu\u0308r die (vor allem kosmetische) Behandlung mit Blutplasma!" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Therapie" + } + ], + "related": [ + { + "authorized_access_point": "Kaltes Plasma" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1319483321", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1319483321", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1319483321", + "source": "GND" + } + ], + "variant_access_point": [ + "Plasmabehandlung", + "Plasmatherapie" + ], + "authorized_access_point": "Plasmamedizin" + }, + { + "md5": "8dea0b3387c0ba873b45890d52cda1d4", + "pid": "1319608302", + "note": [ + { + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?title=1923_Spanish_coup_d%27%C3%A9tat&oldid=1228246566" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Staatsstreich von Miguel Primo de Rivera 1923 in Spanien" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Staatsstreich" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1319608302", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1319608302", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1319608302", + "source": "GND" + } + ], + "variant_access_point": [ + "Putsch in Spanien (1923)" + ], + "authorized_access_point": "Staatsstreich in Spanien (1923)" + }, + { + "md5": "9d6f36fb763e02b2afab8f9d9ff85618", + "pid": "1321125577", + "note": [ + { + "label": [ + "Kombiniere mit Sprachbezeichnung und Wortart, z. B. SWW s Franzo\u0308sisch ; s Substantiv ; s baron (Wort)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1321125577", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1321125577", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1321125577", + "source": "GND" + } + ], + "authorized_access_point": "baron (Wort)" + }, + { + "md5": "c1ef82a7f238f73e95d48596f5b22b50", + "pid": "1321125623", + "note": [ + { + "label": [ + "Kombiniere mit Sprachbezeichnung und Wortart, z. B. SWW s Franzo\u0308sisch ; s Substantiv ; s chevalier" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1321125623", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1321125623", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1321125623", + "source": "GND" + } + ], + "authorized_access_point": "chevalier" + }, + { + "md5": "f8ecb9e4630789e9ad7af005bb878751", + "pid": "132121202X", + "note": [ + { + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?title=Jinghu_(instrument)&oldid=1158694952" + ], + "noteType": "dataSource" + }, + { + "label": [ + "chinesisches Streichinstrument, das hauptsa\u0308chlich in der Peking-Oper verwendet wird" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Streichinstrument" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/132121202X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)132121202X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)132121202X", + "source": "GND" + } + ], + "authorized_access_point": "Jinghu" + }, + { + "md5": "da83caf2a44b1f496565bdb8590d64c7", + "pid": "1321257988", + "note": [ + { + "label": [ + "Wikipedia, unter der ga\u0308ngigen falschen U\u0308bersetzung \"normalisierter Fluss\" (statt \"normierter Fluss)\" - https://de.wikipedia.org/w/index.php?title=Normalisierter_Fluss&oldid=238188256" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Modell zur statistischen Klassifikation, das auf einem Variablenwechsel zur Berechnung der Wahrscheinlichkeitsdichte beruht" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Stochastisches Modell" + } + ], + "related": [ + { + "authorized_access_point": "Maschinelles Lernen" + }, + { + "authorized_access_point": "Dichte (Stochastik)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1321257988", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1321257988", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1321257988", + "source": "GND" + } + ], + "variant_access_point": [ + "Flow-based generative model", + "Normalizing Flow" + ], + "authorized_access_point": "Flussbasiertes generatives Modell" + }, + { + "md5": "433b20245e60d95f08eaa19320b515a8", + "pid": "1321325754", + "note": [ + { + "label": [ + "Handwerksanweisungen fu\u0308r Tasten- und Saiteninstrumente mit Lehrbeispielen als Lehrgrundlage fu\u0308r die Spielfertigkeit, das mehrstimmige Improvisieren und Intavolieren auf diesen Instrumenten" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Instrumentaltechnik" + }, + { + "authorized_access_point": "Anleitung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1321325754", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1321325754", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1321325754", + "source": "GND" + } + ], + "variant_access_point": [ + "Fundamentum" + ], + "authorized_access_point": "Fundamentbuch" + }, + { + "md5": "4dc4d490e1fc73f71d298a2a056d9b1e", + "pid": "1321369956", + "note": [ + { + "label": [ + "Gender ist eine analytische Kategorie der Geschlechterforschung bzw. Gender Studies. Sie untersucht (historische, sozio-kulturelle und praxeologische) Zuschreibungen an sowie Verhaltensweisen und Beziehungen von Menschen in Hinblick auf ihre Vergeschlechtlichung. Neues Schlagwort ab 2024. Titel wurden davor meist mit der Kombination der folgenden Schlagwo\u0308rter erschlossen: Geschlechterrolle, Geschlechterverha\u0308ltnis und Geschlechterforschung, ggf. weitere", + "Zu verwenden bei eher umfassenden oder theoretischen Darstellungen zum Thema des vergeschlechtlichten Zusammenlebens von Menschen. Fu\u0308r thematisch eingegrenzte Darstellungen sind spezifischere Schlagwo\u0308rter vorzuziehen, wie z.B. \"Geschlechterrolle\", \"Geschlechterverha\u0308ltnis\", usw." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Geschlechterforschung" + } + ], + "related": [ + { + "authorized_access_point": "Geschlechterrolle" + }, + { + "authorized_access_point": "Geschlechterverha\u0308ltnis" + }, + { + "authorized_access_point": "Geschlecht" + }, + { + "authorized_access_point": "Geschlechtsunterschied" + }, + { + "authorized_access_point": "Geschlechtsidentita\u0308t" + }, + { + "authorized_access_point": "Drittes Geschlecht" + }, + { + "authorized_access_point": "Transgender" + }, + { + "authorized_access_point": "Nichtbina\u0308re Geschlechtsidentita\u0308t" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1321369956", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1321369956", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1321369956", + "source": "GND" + } + ], + "variant_access_point": [ + "Soziales Geschlecht", + "Geschlecht (Kategorie)", + "Geschlecht (Gender)" + ], + "authorized_access_point": "Gender" + }, + { + "md5": "7b947b3c23902e4e82ab900e6585e9cb", + "pid": "1321930690", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Buckeltanzfliegen&oldid=211586716", + "NCBI-Taxonomy - https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=1446258" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Empidoidea" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133349338X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16649867", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16649867h" + } + ], + "authorized_access_point": "Hybotidae" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1321930690", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1321930690", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1321930690", + "source": "GND" + } + ], + "variant_access_point": [ + "Hybotidae" + ], + "authorized_access_point": "Buckeltanzfliegen" + }, + { + "md5": "30eb9434d5e96f72073d230940103c71", + "pid": "1322264716", + "note": [ + { + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung (hier: Hebra\u0308isch) und Wortart" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1322264716", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1322264716", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1322264716", + "source": "GND" + } + ], + "variant_access_point": [ + "zo\u0302le\u0304la\u0304", + "\u05d6\u05d5\u05b9\u05dc\u05b0\u05dc\u05b8\u05d4" + ], + "authorized_access_point": "zo\u0302le\u0304la\u0304h" + }, + { + "md5": "6c06a55749be45803ab40af548a0cd67", + "pid": "1322498083", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=DR-Baureihe_270&oldid=240684515#cite_note-1" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Triebwagen der Berliner S-Bahn" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Elektrotriebwagen" + } + ], + "related": [ + { + "authorized_access_point": "S-Bahn" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1322498083", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1322498083", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1322498083", + "source": "GND" + } + ], + "variant_access_point": [ + "Baureihe 270", + "Baureihe 485", + "DB-Baureihe 485", + "DB-Baureihe 485/885", + "DR-Baureihe 270" + ], + "authorized_access_point": "Elektrotriebwagen Baureihe 270" + }, + { + "md5": "7e382e47b59f9d84910a80b6985332aa", + "pid": "1322508801", + "note": [ + { + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung und Wortart, z.B. Hebra\u0308isch ; Adjektiv ; yph" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1322508801", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1322508801", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1322508801", + "source": "GND" + } + ], + "variant_access_point": [ + "jph", + "\u05d9\u05e4\u05d4" + ], + "authorized_access_point": "yph" + }, + { + "md5": "8a5baba491f34ac2108d4f718d91382e", + "pid": "1322661030", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Bosniaken&oldid=242002094" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Bosniaken (serbokroatisch \u0411\u043e\u0448\u045a\u0430\u0446\u0438 Bos\u030cnjaci, Sg.: \u0411\u043e\u0448\u045a\u0430\u043a Bos\u030cnjak, auch Bosnische Muslime) sind eine su\u0308dslawische Ethnie mit etwa drei Millionen Angeho\u0308rigen, davon u\u0308ber zwei Millionen prima\u0308r in Bosnien und Herzegowina, aber auch in Serbien und Montenegro, Kosovo und Albanien. Ethnische Sa\u0308uberungen wa\u0308hrend des Bosnienkrieges 1992-1995 haben ihre ethnische Struktur und Verteilung in Bosnien und Herzegowina sehr vera\u0308ndert. U\u0308ber eine Million ausgewanderter oder wa\u0308hrend des Bosnienkrieges geflu\u0308chteter Bosniaken leben heute verteilt auf der ganzen Welt.", + "Entgegen den Regelungen in RSWK \u00a7330a 1.a, 1.b und 2 wird dieses Ethnografikum auch zur Beschlagwortung von Dokumenten verwendet, die die Situation der Bosniaken in Bosnien-Herzegowina behandeln." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Muslim" + } + ], + "related": [ + { + "authorized_access_point": "Bosniakin" + }, + { + "authorized_access_point": "Su\u0308dslawen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1322661030", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1322661030", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1322661030", + "source": "GND" + } + ], + "variant_access_point": [ + "Bosnjaken", + "Bos\u030cnjaci", + "Bos\u030cnjak", + "Bosnische Muslime" + ], + "authorized_access_point": "Bosniaken (Volk)" + }, + { + "md5": "b8a283afabcf247984b0967f537739b6", + "pid": "1322662401", + "note": [ + { + "label": [ + "Entgegen den Regelungen in RSWK \u00a7330a 1.a, 1.b und 2 wird dieses Ethnografikum auch zur Beschlagwortung von Dokumenten verwendet, die die Situation bosniakischer Frauen in Bosnien-Herzegowina behandeln." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Bosniaken (Volk)" + }, + { + "authorized_access_point": "Muslimin" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1322662401", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1322662401", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1322662401", + "source": "GND" + } + ], + "variant_access_point": [ + "Bosnische Frau" + ], + "authorized_access_point": "Bosniakin" + }, + { + "md5": "5ed62353dfe29ea629048104134bb123", + "pid": "1323069380", + "note": [ + { + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?title=Caribbean_Hindustani&oldid=1211330438", + "Wikipedia - https://nl.wikipedia.org/w/index.php?title=Cara%C3%AFbisch-Hindoestani&oldid=65241041" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Indoarische Sprache, die in Surinam gesprochen wird. Entha\u0308lt Anteile von Bhojpuri und Bihari." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Bihari" + }, + { + "authorized_access_point": "Bhojpuri\u0304" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1323069380", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1323069380", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1323069380", + "source": "GND" + } + ], + "variant_access_point": [ + "Sarname Hindustani", + "Aili-Gaili", + "Surinam-Hindustani", + "Caribbean Hindi", + "Sarnami", + "Sarnami Hindoestani", + "Sarnami Hindustani", + "Surinamse Hindustani", + "Surinamisches Hindustani", + "Surinaams Hindostaans", + "Carai\u0308bisch-Hindoestani", + "Hindoustani caribe\u0301en" + ], + "authorized_access_point": "Sarnami-Hindi" + }, + { + "md5": "667b1d786daabdcadd52c352fb87b651", + "pid": "1323303103", + "note": [ + { + "label": [ + "Eine der beiden Xiangyu-Dialektgruppen (Su\u0308d-Hunan)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Xiangyu" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1323303103", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1323303103", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1323303103", + "source": "GND" + } + ], + "variant_access_point": [ + "Lao Hsiang-yu\u0308", + "Nanpian Xiangyu", + "Nan-p'ien Hsiang-yu\u0308" + ], + "authorized_access_point": "Lao Xiangyu" + }, + { + "md5": "6039d607c03b4e5dba551bfc148dd1be", + "pid": "1323303669", + "note": [ + { + "label": [ + "Eine der beiden Xiangyu-Dialektgruppen (NW-Hunan)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Xiangyu" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1323303669", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1323303669", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1323303669", + "source": "GND" + } + ], + "variant_access_point": [ + "Hsin Hsiang-yu\u0308", + "Pei-p'ien Hsiang-yu\u0308", + "Beipian Xiangyu" + ], + "authorized_access_point": "Xin Xiangyu" + }, + { + "md5": "2a4f526588e675dfce4e2f67467a63d0", + "pid": "1323590102", + "note": [ + { + "label": [ + "Von Augustinus stammende Bezeichnung einer universalen Kirche vor Christus und au\u00dferhalb ihrer Grenzen, die aufgrund der universalen Heilsmittlerschaft Christi alle Gerechten von Abel an in der Heilsgemeinde Gottes versammelt." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ekklesiologie" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1323590102", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1323590102", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1323590102", + "source": "GND" + } + ], + "authorized_access_point": "Ecclesia ab Abel" + }, + { + "md5": "b02ddc9eda9c9d2012a5407881a7c6da", + "pid": "1323705910", + "note": [ + { + "label": [ + "Milita\u0308rmusik der Janitscharen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Milita\u0308rmusik" + }, + { + "authorized_access_point": "Marsch (Musik)" + } + ], + "related": [ + { + "authorized_access_point": "Janitscharen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1323705910", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1323705910", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1323705910", + "source": "GND" + } + ], + "variant_access_point": [ + "Tu\u0308rkische Musik", + "Janissary Music", + "Turkish Music", + "Musique des Janissaires", + "Musique Turque", + "Banda" + ], + "authorized_access_point": "Janitscharenmusik" + }, + { + "md5": "408906e183c2481ab99afe8be018af75", + "pid": "1323769536", + "note": [ + { + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung und Wortart, z.B. Hebra\u0308isch ; Verb ; zr'" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1323769536", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1323769536", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1323769536", + "source": "GND" + } + ], + "variant_access_point": [ + "\u05d6\u05e8\u05e2" + ], + "authorized_access_point": "zr\u02bf" + }, + { + "md5": "ec21d1d7010dca8a4458021f740cf049", + "pid": "1323804129", + "note": [ + { + "label": [ + "Wikipedia - https://en.wikipedia.org/wiki/Yuin%E2%80%93Kuric_languages" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Eine Sprache der Aborigines in Neusu\u0308dwales" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Pama-Nyunganisch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1323804129", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1323804129", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1323804129", + "source": "GND" + } + ], + "variant_access_point": [ + "Durga (Sprache)", + "Thoorga", + "Thurga-Sprache" + ], + "authorized_access_point": "Dhurga" + }, + { + "md5": "1a7d99c9c582784c0e13e18a76eadc5c", + "pid": "1323832262", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Ostindonesische Sprachen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1323832262", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1323832262", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1323832262", + "source": "GND" + } + ], + "variant_access_point": [ + "Lote", + "Rote", + "Rotinesisch", + "Rotti", + "Rottinesisch" + ], + "authorized_access_point": "Roti" + }, + { + "md5": "08c751a9db9f8ade1f5100d54e3d03dc", + "pid": "1323835148", + "note": [ + { + "label": [ + "Internet - https://bacdive-dsmz-de.translate.goog/strain/11940?_x_tr_sl=en&_x_tr_tl=de&_x_tr_hl=de&_x_tr_pto=sc" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Planctomycetaceae" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336044586", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "C000644441", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/C000644441" + } + ], + "authorized_access_point": "Planctopirus limnophila" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1323835148", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1323835148", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1323835148", + "source": "GND" + } + ], + "variant_access_point": [ + "Planctopirus limnophilus", + "Planctomyces limnophilus" + ], + "authorized_access_point": "Planctopirus limnophila" + }, + { + "md5": "7ce5a7eff6286594f67506e32c46f0b4", + "pid": "1323913084", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Transkreation&oldid=206768584" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Bei der Transkreation wird eine U\u0308bertragung des Textes in den kulturellen Kontext des Empfa\u0308ngers angestrebt, so dass sich das Ergebnis im Gegensatz zu einer sich nah am Ursprungstext haltenden U\u0308bersetzung relativ weit vom Ursprungstext entfernen kann." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "U\u0308bersetzung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1323913084", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1323913084", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1323913084", + "source": "GND" + } + ], + "variant_access_point": [ + "Transcreation" + ], + "authorized_access_point": "Transkreation" + }, + { + "md5": "0ab52b907a1d58fe85a6917dba6b8fb5", + "pid": "1324092424", + "note": [ + { + "label": [ + "Personen, die bei Abwesenheit d. Eigentu\u0308mers das Haus hu\u0308ten" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Haushu\u0308ter" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1324092424", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1324092424", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1324092424", + "source": "GND" + } + ], + "authorized_access_point": "Haushu\u0308terin" + }, + { + "md5": "aeb50c16b4cef27dfe790a066f2104ab", + "pid": "1324101318", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Sicherheitsbeauftragter" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1324101318", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1324101318", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1324101318", + "source": "GND" + } + ], + "variant_access_point": [ + "Arbeitssicherheit" + ], + "authorized_access_point": "Sicherheitsbeauftragte" + }, + { + "md5": "e1425a9de2ecc4f92596386fe5fae5bc", + "pid": "1324101571", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Anarchafeminismus&oldid=243042613" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1324101571", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1324101571", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1324101571", + "source": "GND" + } + ], + "authorized_access_point": "Anarchafeminismus" + }, + { + "md5": "3dd2a8d9ced3609f1caa9aff13a1d2f7", + "pid": "1324473703", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Terrorangriff_der_Hamas_auf_Israel_2023&oldid=243422572" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Terroristischer U\u0308berfall unter Fu\u0308hrung der pala\u0308stinensischen radikal-islamistischen Hamas, der vom Gazastreifen aus gegen Israel veru\u0308bt wurde." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Attentat" + } + ], + "related": [ + { + "authorized_access_point": "Nahostkonflikt" + }, + { + "authorized_access_point": "Israel-Hamas-Krieg" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1324473703", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1324473703", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1324473703", + "source": "GND" + } + ], + "variant_access_point": [ + "Anschlag der Hamas auf Israel 2023", + "Operation Al-Aksa-Flut", + "7. Oktober (Attentat)", + "Siebenter Oktober (Attentat)", + "Siebter Oktober (Attentat)" + ], + "authorized_access_point": "Terrorangriff der Hamas auf Israel 2023" + }, + { + "md5": "3afdb4968394d49abc1bf00d8997a3fa", + "pid": "1324590173", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Venezianisch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1324590173", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1324590173", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1324590173", + "source": "GND" + } + ], + "variant_access_point": [ + "Dialetto fiumano" + ], + "authorized_access_point": "Mundart Venezianisch (Rijeka)" + }, + { + "md5": "55ee9a41e27272f70e6e0e5ddcb818d8", + "pid": "1324688629", + "note": [ + { + "label": [ + "NCBI-Taxonomy - https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=1051616" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Verticillium" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336050047", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "C000685650", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/C000685650" + } + ], + "authorized_access_point": "Verticillium nonalfalfae" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1324688629", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1324688629", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1324688629", + "source": "GND" + } + ], + "authorized_access_point": "Verticillium nonalfalfae" + }, + { + "md5": "5d075793ed031ffb977c76a19d3ed6b5", + "pid": "1325061557", + "note": [ + { + "label": [ + "Dichterkreis europa\u0308ischer sentimentaler Lyriker des spa\u0308ten 18. Jh., gegr. von Robert Merry, Mitglied der Accademia Della Crusca" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schriftstellergruppe" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1325061557", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1325061557", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1325061557", + "source": "GND" + } + ], + "authorized_access_point": "Della Cruscans" + }, + { + "md5": "1dae5ea975e056c675b2372307afa102", + "pid": "1325526541", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Micro-Credential&oldid=231500268", + "EU Vocabularies - https://op.europa.eu/de/web/eu-vocabularies/concept/-/resource?uri=http://eurovoc.europa.eu/c_6659516b", + "ABl. EU 2022, C243, S.1 - https://eur-lex.europa.eu/legal-content/DE/TXT/?uri=CELEX:32022H0627(02)" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Qualifikation zum Nachweis von Lernergebnissen, die im Rahmen eines kurzen, transparenten Kurses oder Moduls erzielt wurde" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Leistungspunkt" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1325526541", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1325526541", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1325526541", + "source": "GND" + } + ], + "variant_access_point": [ + "Micro-Credential" + ], + "authorized_access_point": "Microcredential" + }, + { + "md5": "734d5f533e31cb330dfb394c3ceccfe5", + "pid": "1325643645", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Prosektor&oldid=242227867" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Historische Berufsbezeichnung fu\u0308r den \u201eSezierer\u201c einer anatomischen Anstalt, dem die Entnahme der aus Leichen gewonnenen Pra\u0308parate oblag bzw. (in gro\u0308\u00dferen Krankenha\u0308usern) historisch auch Bezeichnung fu\u0308r A\u0308rzte, die zur Feststellung der Todesursache Leichen sezierten.", + "Ausschlie\u00dflich fu\u0308r historische Sachverhalte und Personen zu verwenden; ansonsten benutze \"Anatom\" oder \"Pathologe\"!" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Medizinisches Personal" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1325643645", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1325643645", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1325643645", + "source": "GND" + } + ], + "variant_access_point": [ + "Prosector" + ], + "authorized_access_point": "Prosektor" + }, + { + "md5": "28f076de9ea01075eef0306c8603425c", + "pid": "1325836214", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Kryptowert&oldid=240601727" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Finanzinstrument" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1325836214", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1325836214", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1325836214", + "source": "GND" + } + ], + "variant_access_point": [ + "Kryptotoken", + "Token (Kryptologie)", + "Crypto-Asset" + ], + "authorized_access_point": "Kryptowert" + }, + { + "md5": "1363e9bb27d71b2a1e7049c46c1bec87", + "pid": "132585283X", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Feuchtwiesen-Kr%C3%A4utereule&oldid=240451943" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Ist ein Schmetterling (Nachtfalter) aus der Familie der Eulenfalter (Noctuidae)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Eulen (Schmetterlinge)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/132585283X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)132585283X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)132585283X", + "source": "GND" + } + ], + "variant_access_point": [ + "Rote Mooreule", + "Lacanobia (Diataraxia) splendens", + "Lacanobia splendens" + ], + "authorized_access_point": "Feuchtwiesen-Kra\u0308utereule" + }, + { + "md5": "5f99b660e6c44c5f65f9c0548ad7bb00", + "pid": "1325970743", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Minolta_SR-T_303&oldid=228565347" + ], + "noteType": "dataSource" + }, + { + "label": [ + "mechanische Kleinbild-Spiegelreflexkamera, die von der japanischen Firma Minolta in verschiedenen Varianten von 1973 bis 1980 hergestellt wurde" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Spiegelreflexkamera" + }, + { + "authorized_access_point": "Kleinbildkamera" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1325970743", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1325970743", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1325970743", + "source": "GND" + } + ], + "authorized_access_point": "Minolta SR-T 303" + }, + { + "md5": "20e552bfc3c51854b3206a9e625ac8f4", + "pid": "1326349392", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Paramyxoviren" + } + ], + "related": [ + { + "authorized_access_point": "Newcastle-Krankheit" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134301715", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85091547", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85091547" + } + ], + "authorized_access_point": "Newcastle disease virus" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134301715", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12377360", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12377360s" + } + ], + "authorized_access_point": "Virus de la maladie de Newcastle" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336044268", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D009522", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D009522" + } + ], + "authorized_access_point": "Newcastle disease virus" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1326349392", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1326349392", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1326349392", + "source": "GND" + } + ], + "variant_access_point": [ + "NDV", + "Geflu\u0308gelpestvirus (Newcastle-Krankheit)" + ], + "authorized_access_point": "Newcastle-disease-Virus" + }, + { + "md5": "0a939c434ab7295e074f9343ac24fe9d", + "pid": "1326598325", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Gqom&oldid=246252358" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Genre der elektronischen Tanzmusik, das Anfang der 2010er Jahre in Durban, Su\u0308dafrika, entstand" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Elektronische Tanzmusik" + }, + { + "authorized_access_point": "House" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1326598325", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1326598325", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1326598325", + "source": "GND" + } + ], + "variant_access_point": [ + "Igqom", + "Igqomu", + "Qgom", + "Gqom tech", + "Sghubu" + ], + "authorized_access_point": "Gqom" + }, + { + "md5": "7420b3ff9db3611a2807be3ac7d64680", + "pid": "1327458667", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Solarpunk&oldid=237852295" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Optimistisches Genre der Science-Fiction- und Phantastik-Literatur, ku\u0308nstlerisches Genre und Kultur- und Nachhaltigkeitsbewegung." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Literarische Bewegung" + }, + { + "authorized_access_point": "Kulturbewegung" + }, + { + "authorized_access_point": "Subkultur" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1327458667", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1327458667", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1327458667", + "source": "GND" + } + ], + "authorized_access_point": "Solarpunk" + }, + { + "md5": "a7856def5dc055dab42ccba4fc4733d4", + "pid": "1327910268", + "note": [ + { + "label": [ + "Seema\u0308nnin der Handelsschifffahrt mit mehrja\u0308hriger Ausbildung (Berufsbezeichnung) oder Soldatin des Dienstgrades Matrose" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Weiblicher Seemann" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1327910268", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1327910268", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1327910268", + "source": "GND" + } + ], + "variant_access_point": [ + "Seema\u0308nnin" + ], + "authorized_access_point": "Matrosin" + }, + { + "md5": "d5b7b382e9bb90d089a7fa82fba0c328", + "pid": "1327991349", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Berbice-Niederl%C3%A4ndisch&oldid=208367674" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Niederla\u0308ndischbasierte Kreolsprache, die etwa bis zur Mitte des 20. Jahrhunderts in Guyana gesprochen wurde" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Kreolische Sprachen" + }, + { + "authorized_access_point": "Niederla\u0308ndisch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1327991349", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1327991349", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1327991349", + "source": "GND" + } + ], + "variant_access_point": [ + "Berbice-Nederlands", + "Berbice Dutch Creole", + "Berbice Creole Dutch", + "Berbice Dutch", + "Berbice (Sprache)", + "Berbice-Kreolisch" + ], + "authorized_access_point": "Berbice-Niederla\u0308ndisch" + }, + { + "md5": "5f46ad95228d2df56cf639eacbfd1424", + "pid": "1328114813", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Feldmaus (Gattung)" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333493223", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85102534", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85102534" + } + ], + "authorized_access_point": "Microtus subterraneus" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1328114813", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1328114813", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1328114813", + "source": "GND" + } + ], + "variant_access_point": [ + "Microtus subterraneus", + "Kleine Wu\u0308hlmaus", + "Pitymys subterraneus", + "Kleinwu\u0308hlmaus" + ], + "authorized_access_point": "Kleina\u0308ugige Wu\u0308hlmaus" + }, + { + "md5": "304be4bdd58dd619b62418264d8b074d", + "pid": "1328159116", + "note": [ + { + "label": [ + "Nachgewiesen 1929" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Renaissance-Antiqua" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1328159116", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1328159116", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1328159116", + "source": "GND" + } + ], + "variant_access_point": [ + "Intertype Mediaeval", + "Medieval (Druckschrift)", + "Mediaeval (Druckschrift)", + "Medieval (Druckschrift, New York)", + "Intertype-Medieval", + "Intertype-Mediaeval" + ], + "authorized_access_point": "Intertype Medieval" + }, + { + "md5": "06e47d979c4fc96cc5766326c436001a", + "pid": "1328712400", + "note": [ + { + "label": [ + "Wikipedia - https://en.wikipedia.org/wiki/Penicillium_citrinum" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336044381", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "C000698383", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/C000698383" + } + ], + "authorized_access_point": "Penicillium citrinum" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1328712400", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1328712400", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1328712400", + "source": "GND" + } + ], + "authorized_access_point": "Penicillium citrinum" + }, + { + "md5": "334c2bbe64c98c3a30d862da3d97cfc0", + "pid": "1328905152", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + }, + { + "authorized_access_point": "Pflanzendarstellung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1328905152", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1328905152", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1328905152", + "source": "GND" + } + ], + "authorized_access_point": "Kaiserkrone (Pflanze, Motiv)" + }, + { + "md5": "1c15d29c9d56297a30de12cd1026d826", + "pid": "1329171675", + "note": [ + { + "label": [ + "Brockhaus - https://brockhaus.de/ecs/enzy/article/djizya-islam", + "Wikipedia - https://de.wikipedia.org/wiki/Dschizya" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Kopfsteuer fu\u0308r nichtmuslimische Schutzbefohlene (Dhimmi) unter islamischer Herrschaft" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Steuer" + } + ], + "related": [ + { + "authorized_access_point": "D\u0331h\u0331immi\u0304" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1329171675", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1329171675", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1329171675", + "source": "GND" + } + ], + "variant_access_point": [ + "Dschizya", + "G\u030cizya", + "Cizye", + "Jizya", + "Jizyah" + ], + "authorized_access_point": "Djizya" + }, + { + "md5": "08bee7e0ed51baafbe5dcac1beab454b", + "pid": "1329174003", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Amerikanisches Englisch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1329174003", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1329174003", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1329174003", + "source": "GND" + } + ], + "variant_access_point": [ + "Missouri English" + ], + "authorized_access_point": "Mundart Amerikanisches Englisch (Missouri-Gebiet)" + }, + { + "md5": "b1477ceedf7966661a19d4b01c771bca", + "pid": "1329325958", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1329325958", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1329325958", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1329325958", + "source": "GND" + } + ], + "authorized_access_point": "Meduse (Motiv)" + }, + { + "md5": "2c8342d880599b57aa8c09007d6aa211", + "pid": "132935639X", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Hochstapler-Syndrom&oldid=238870181" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Psychologisches Pha\u0308nomen, bei dem Betroffene von massiven Selbstzweifeln hinsichtlich eigener Fa\u0308higkeiten, Leistungen und Erfolge geplagt werden und sich selbst fu\u0308r Hochstapler halten." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Verzerrte Kognition" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133604392X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "C000711547", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/C000711547" + } + ], + "authorized_access_point": "imposter syndrome" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/132935639X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)132935639X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)132935639X", + "source": "GND" + } + ], + "variant_access_point": [ + "Impostor-Syndrom", + "Impostor-Pha\u0308nomen" + ], + "authorized_access_point": "Hochstapler-Syndrom" + }, + { + "md5": "8b5bda3c267907dcdba2dbba70a3c64b", + "pid": "1329376129", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Prostataspezifisches_Membranantigen&oldid=214439179" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tumormarker" + }, + { + "authorized_access_point": "Membranproteine" + }, + { + "authorized_access_point": "Glykoproteine" + }, + { + "authorized_access_point": "Carboxypeptidasen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1329376129", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1329376129", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1329376129", + "source": "GND" + } + ], + "variant_access_point": [ + "PSMA", + "Prostata-Spezifisches-Membran-Antigen", + "CAS 9074-87-7", + "Glutamatcarboxypeptidase II", + "EC 3.4.17.21", + "Prostate-specific membrane antigen" + ], + "authorized_access_point": "Prostataspezifisches Membranantigen" + }, + { + "md5": "77fb3485dcb597539ef156220bb53d59", + "pid": "132940422X", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Dibenzyltoluol&oldid=240106931" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Toluolderivate" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/132940422X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)132940422X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)132940422X", + "source": "GND" + } + ], + "variant_access_point": [ + "Dibenzylmethylbenzol", + "Marlotherm SH", + "DBT (Dibenzyltoluol)", + "CAS 26898-17-9" + ], + "authorized_access_point": "Dibenzyltoluol" + }, + { + "md5": "cdc1ccbfc845d74086e5f837281d6ab7", + "pid": "1329573331", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1329573331", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1329573331", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1329573331", + "source": "GND" + } + ], + "authorized_access_point": "Ordensleute (Motiv)" + }, + { + "md5": "4d2ba0232b9998f5f1147cb247502ea6", + "pid": "1329650123", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Kajkavisch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1329650123", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1329650123", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1329650123", + "source": "GND" + } + ], + "authorized_access_point": "Mundart Kajkavisch (Varaz\u030cdin)" + }, + { + "md5": "2d4f3c93c1f6e50117bdf711149fabda", + "pid": "1330126599", + "note": [ + { + "label": [ + "Benutzt, soweit im Ausland lebend" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausla\u0308ndischer Schu\u0308ler" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1330126599", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1330126599", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1330126599", + "source": "GND" + } + ], + "authorized_access_point": "Da\u0308nischer Schu\u0308ler" + }, + { + "md5": "3d902ce7d0065a7c27f3c1eefd75b769", + "pid": "1330186664", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Ambisonics&oldid=237488687" + ], + "noteType": "dataSource" + }, + { + "label": [ + "ein Verfahren zur Aufnahme und Wiedergabe eines Klangfeldes" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Technische Akustik" + }, + { + "authorized_access_point": "Audiotechnik" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1330186664", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1330186664", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1330186664", + "source": "GND" + } + ], + "variant_access_point": [ + "Ambisonic" + ], + "authorized_access_point": "Ambisonics" + }, + { + "md5": "04c738504dfd4d18e3581262473669c9", + "pid": "1330201647", + "note": [ + { + "label": [ + "INN" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Enzyminhibitor" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336044195", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "C059539", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/C059539" + } + ], + "authorized_access_point": "midostaurin" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1330201647", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1330201647", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1330201647", + "source": "GND" + } + ], + "variant_access_point": [ + "CAS 120685-11-2", + "Rydapt" + ], + "authorized_access_point": "Midostaurin" + }, + { + "md5": "95b30a180876bd00714d038ddaf62d00", + "pid": "1330343085", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1330343085", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1330343085", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1330343085", + "source": "GND" + } + ], + "authorized_access_point": "Bergisch Gladbach (Motiv)" + }, + { + "md5": "2d3531f7d4e4378de1bb1c54bec48c4a", + "pid": "1330360036", + "note": [ + { + "label": [ + "Zu verwenden fu\u0308r den au\u00dferschulischen Bereich, fu\u0308r den schulischen Bereich verwende Geschichtsunterricht." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Vermittlung" + } + ], + "related": [ + { + "authorized_access_point": "Geschichtsunterricht" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1330360036", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1330360036", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1330360036", + "source": "GND" + } + ], + "variant_access_point": [ + "Geschichte" + ], + "authorized_access_point": "Geschichtsvermittlung" + }, + { + "md5": "bee74d510f70e6ed7cee1d2b683e59d0", + "pid": "1330408837", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Planctomyceten&oldid=243380997" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Phylum innerhalb der Bakterien" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336044411", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D000090643", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000090643" + } + ], + "authorized_access_point": "Planctomycetes" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1330408837", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1330408837", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1330408837", + "source": "GND" + } + ], + "variant_access_point": [ + "Planctomyceten", + "Planctomycetes" + ], + "authorized_access_point": "Planctomycetota" + }, + { + "md5": "a751bd0662abfde0f0fac7e04f521048", + "pid": "1330430964", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Datsun&oldid=243657328" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Markenname" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1330430964", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1330430964", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1330430964", + "source": "GND" + } + ], + "variant_access_point": [ + "Datson (Marke)" + ], + "authorized_access_point": "Datsun (Marke)" + }, + { + "md5": "eb11ce43aa1d121a232f2d2e8f95450b", + "pid": "1330433858", + "note": [ + { + "label": [ + "Wikipedia (unter Geschichte des Elektroautos) - https://de.wikipedia.org/w/index.php?title=Geschichte_des_Elektroautos&oldid=243876878" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Dreira\u0308driges Zwei-Personen-Auto" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Personenkraftwagen" + }, + { + "authorized_access_point": "Elektrofahrzeug" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1330433858", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1330433858", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1330433858", + "source": "GND" + } + ], + "authorized_access_point": "Witkar (Elektroauto)" + }, + { + "md5": "ea66feb7fa7edad6b0b95a0f2f0213f8", + "pid": "1330447611", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1330447611", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1330447611", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1330447611", + "source": "GND" + } + ], + "authorized_access_point": "Massaker von Sabra und Schatila (Motiv)" + }, + { + "md5": "5717dc3a9ac3dfdebfb70be25eb4c17c", + "pid": "1330585747", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Z%C3%BCndapp_R_50&oldid=243884554" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motorroller" + } + ], + "related": [ + { + "authorized_access_point": "Zu\u0308ndapp" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1330585747", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1330585747", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1330585747", + "source": "GND" + } + ], + "authorized_access_point": "Zu\u0308ndapp R 50" + }, + { + "md5": "a45220636c987d51d8f74b48f158351b", + "pid": "1330585992", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Vespa_P80X&oldid=197009978" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motorroller" + } + ], + "related": [ + { + "authorized_access_point": "Vespa" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1330585992", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1330585992", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1330585992", + "source": "GND" + } + ], + "authorized_access_point": "Vespa P80X" + }, + { + "md5": "873becbcbb01e7febbadce604a34a1df", + "pid": "1330586271", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Elbe_3_(Schiff,_1888)&oldid=238101652" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Seit 1979 im Museumshafen Oevelgo\u0308nne in Hamburg liegend; nicht zu verwechseln mit dem weiteren Feuerschiff gleichen Namens \"Elbe 3 / Bu\u0308rgermeister Abendroth\" im Bremerhavener Museumshafens" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Feuerschiff" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1330586271", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1330586271", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1330586271", + "source": "GND" + } + ], + "variant_access_point": [ + "Leuchtschiff Weser", + "Weser (Schiff, 1888-)" + ], + "authorized_access_point": "Elbe 3 (Schiff, 1888-)" + }, + { + "md5": "f02677042b265da19912b5ad1ebb09e7", + "pid": "1330586557", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Daihatsu_Feroza&oldid=240372676" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Personenkraftwagen" + } + ], + "related": [ + { + "authorized_access_point": "Daihatsu" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1330586557", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1330586557", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1330586557", + "source": "GND" + } + ], + "authorized_access_point": "Daihatsu Feroza" + }, + { + "md5": "42c5970e96a5ea99b0950623808bc792", + "pid": "1330588517", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Akutes Koronarsyndrom" + }, + { + "authorized_access_point": "Herzinfarkt" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336044314", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D000072658", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000072658" + } + ], + "authorized_access_point": "Non-ST Elevated Myocardial Infarction" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1330588517", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1330588517", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1330588517", + "source": "GND" + } + ], + "variant_access_point": [ + "Akutes Koronarsyndrom ohne ST-Hebung", + "NSTE-ACS", + "NSTEMI", + "Nicht-ST-Hebungs-Infarkt", + "Nicht-ST-Hebungs-Myokardinfarkt", + "Non-ST-segment elevation myocardial infarction" + ], + "authorized_access_point": "Nicht-ST-Hebungsinfarkt" + }, + { + "md5": "b3f887931f3cabfb2574c0ebf9a60816", + "pid": "1330843584", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1330843584", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1330843584", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1330843584", + "source": "GND" + } + ], + "authorized_access_point": "Theaterbau (Motiv)" + }, + { + "md5": "dd9643f4bfa190608fc001bd16355330", + "pid": "1330854640", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Klangsynthese&oldid=237322405" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Methode zur Herstellung ku\u0308nstlicher oder Abwandlung natu\u0308rlicher Kla\u0308nge" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Klangerzeugung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1330854640", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1330854640", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1330854640", + "source": "GND" + } + ], + "authorized_access_point": "Klangsynthese" + }, + { + "md5": "38dad197452c5fe5cfd3bcaf86cb3579", + "pid": "1330985524", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Phorbeia&oldid=240313163" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Leder- oder Leinenbinden, die um den Kopf des Musikers geschlungen waren, zum Spielen von antiken Rohrblattinstrumenten, hauptsa\u0308chlich von Aulousspielern genutzt" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Aulet" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1330985524", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1330985524", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1330985524", + "source": "GND" + } + ], + "variant_access_point": [ + "Capistrum" + ], + "authorized_access_point": "Phorbeia" + }, + { + "md5": "86307d5a520274f0975cded5f402a7ef", + "pid": "1330988728", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Hochalemannisch" + }, + { + "authorized_access_point": "Schweizerdeutsch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1330988728", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1330988728", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1330988728", + "source": "GND" + } + ], + "authorized_access_point": "Mundart Hochalemannisch (Steckborn)" + }, + { + "md5": "406778358fbac4a8e604263ff686e119", + "pid": "1330990056", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1330990056", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1330990056", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1330990056", + "source": "GND" + } + ], + "authorized_access_point": "Adlercreutzia equolifaciens" + }, + { + "md5": "1e93e217cde9ded6884cd9016ab9ed07", + "pid": "133099051X", + "type": "bf:Topic", + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336047755", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "C000635046", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/C000635046" + } + ], + "authorized_access_point": "Shewanella oneidensis" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/133099051X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)133099051X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)133099051X", + "source": "GND" + } + ], + "authorized_access_point": "Shewanella oneidensis" + }, + { + "md5": "a6a264114b788a05c2f7bec3bd7b8e0a", + "pid": "1331098114", + "note": [ + { + "label": [ + "Wikipedia - https://ro.wikipedia.org/w/index.php?title=Grupul_Infra-Noir&oldid=15774257" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schriftstellergruppe" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1331098114", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1331098114", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1331098114", + "source": "GND" + } + ], + "variant_access_point": [ + "Grupul Infra Noir", + "Grupul Infranoir" + ], + "authorized_access_point": "Grupul Infra-Noir" + }, + { + "md5": "d468e5ac990a2a0450d8e8d55f93c1da", + "pid": "1331102170", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Versehgarnitur&oldid=244395395" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Eine Versehgarnitur (auch Versehbesteck) gab es bis in die Mitte des 20. Jahrhunderts hinein in vielen katholischen Haushalten. Der Priester gebrauchte sie bei der Spendung der Krankensalbung." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kirchengera\u0308t" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1331102170", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1331102170", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1331102170", + "source": "GND" + } + ], + "variant_access_point": [ + "Versehbesteck" + ], + "authorized_access_point": "Versehgarnitur" + }, + { + "md5": "421d4582d65376dd9751c0150aec8c9c", + "pid": "1331380073", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1331380073", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1331380073", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1331380073", + "source": "GND" + } + ], + "authorized_access_point": "Blumensprache (Motiv)" + }, + { + "md5": "63fa0adaa10d24783bc44cb5930ed115", + "pid": "1331482941", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Abrechnungsbetrug&oldid=239347627" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Als Abrechnungsbetrug bezeichnet man eine vorsa\u0308tzliche Manipulation bei der Rechnungsstellung durch einen Leistungserbringer im Gesundheitswesen, die den Empfa\u0308nger zu einer Vermo\u0308gensdisposition veranlasst, obwohl die vom jeweiligen Vergu\u0308tungssystem vorgesehenen Voraussetzungen nicht vorliegen." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Betrug" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1331482941", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1331482941", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1331482941", + "source": "GND" + } + ], + "authorized_access_point": "Abrechnungsbetrug" + }, + { + "md5": "e2547a00ee53470eca5d3b128d3f46b1", + "pid": "1331496861", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Walliserdeutsch" + }, + { + "authorized_access_point": "Schweizerdeutsch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1331496861", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1331496861", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1331496861", + "source": "GND" + } + ], + "variant_access_point": [ + "Avner Mundart", + "Oovnrtu\u0308u\u0308tsch" + ], + "authorized_access_point": "Mundart Walliserdeutsch (Avers)" + }, + { + "md5": "a1e2a1dd2cc0f7a52c6ae05cd673c5e4", + "pid": "1331496918", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wasserstoffionenkonzentration" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1331496918", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1331496918", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1331496918", + "source": "GND" + } + ], + "authorized_access_point": "Isoelektrischer Punkt" + }, + { + "md5": "bc138a62000ea9ca9637e4a5e2d40057", + "pid": "1331530806", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Holzmerkmal&oldid=230021794" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Als Holzmerkmale werden alle Eigenschaften bezeichnet, welche die individuelle Gestalt von Holz beschreiben." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Holz" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1331530806", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1331530806", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1331530806", + "source": "GND" + } + ], + "variant_access_point": [ + "Holz" + ], + "authorized_access_point": "Holzmerkmal" + }, + { + "md5": "6cba5f2007e19f6533ac3aa60f4c781a", + "pid": "1331584167", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Vizekanzler" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1331584167", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1331584167", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1331584167", + "source": "GND" + } + ], + "authorized_access_point": "Vizekanzlerin" + }, + { + "md5": "ecbf2fc6359c6fad4a9128b4e86304e8", + "pid": "1331592208", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=M%C3%BCcken-H%C3%A4ndelwurz&oldid=245590641" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Art aus der Gattung der Ha\u0308ndelwurzen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Orchideen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1331592208", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1331592208", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1331592208", + "source": "GND" + } + ], + "variant_access_point": [ + "Gymnadenia conopsea", + "Langsporn-Ha\u0308ndelwurz", + "Fliegen-Ha\u0308ndelwurz", + "Gro\u00dfe Ha\u0308ndelwurz" + ], + "authorized_access_point": "Mu\u0308cken-Ha\u0308ndelwurz" + }, + { + "md5": "311ef9b1d6a3a12b2fc348fb59b5c19a", + "pid": "1331594014", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Schlacht_um_Pensacola_(1781)&oldid=185703545", + "Wikipedia - https://en.wikipedia.org/w/index.php?title=Siege_of_Pensacola&oldid=1231422844" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Teil des spanischen Feldzugs gegen die britische Kolonie Westflorida wa\u0308hrend des amerik. Unabha\u0308ngigkeitskrieges." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schlacht" + } + ], + "related": [ + { + "authorized_access_point": "Nordamerikanischer Unabha\u0308ngigkeitskrieg" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1331594014", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1331594014", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1331594014", + "source": "GND" + } + ], + "variant_access_point": [ + "Belagerung von Pensacola", + "Siege of Pensacola" + ], + "authorized_access_point": "Schlacht um Pensacola (1781)" + }, + { + "md5": "47e448ae88849a063bbf9dc4d972b480", + "pid": "1331603897", + "note": [ + { + "label": [ + "Fabelwesen, im ersten Teil ein Pferd, im letzten in einen schlangenartigen Fisch u\u0308bergehend" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fabeltiere" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1331603897", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1331603897", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1331603897", + "source": "GND" + } + ], + "variant_access_point": [ + "Hippokamp", + "Hippocamp" + ], + "authorized_access_point": "Hippokampos" + }, + { + "md5": "6da79c77abd4e76d4c32c61e19d8f23f", + "pid": "1331604893", + "note": [ + { + "label": [ + "antike, auf kleinasiatische Urspru\u0308nge zuru\u0308ckgehende kegelfo\u0308rmige Mu\u0308tze der Phryger und Perser aus Stoff oder Leder mit nach vorn fallender rundlicher Spitze" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mu\u0308tze" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1331604893", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1331604893", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1331604893", + "source": "GND" + } + ], + "authorized_access_point": "Phrygische Mu\u0308tze" + }, + { + "md5": "8fe75a6e2078c02066418bb8aac9e509", + "pid": "1331605091", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1331605091", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1331605091", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1331605091", + "source": "GND" + } + ], + "authorized_access_point": "Phrygische Mu\u0308tze (Motiv)" + }, + { + "md5": "a1b666a2e780b578b9d57cca6b57c70a", + "pid": "1331605164", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Krakauer_Auschwitzprozess&oldid=244500822" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kriegsverbrecherprozess" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1331605164", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1331605164", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1331605164", + "source": "GND" + } + ], + "variant_access_point": [ + "Auschwitz-Prozess (Krakau)", + "Auschwitz-Prozess (1947)" + ], + "authorized_access_point": "Krakauer Auschwitz-Prozess" + }, + { + "md5": "cf1e332d632fb83128a199af4daa7c64", + "pid": "1331613426", + "note": [ + { + "label": [ + "in der fru\u0308hen Mythologie stellt der Sonnenwagen den scheinbar ta\u0308glichen Sonnenlauf von Ost nach West und den noch vollkommen unklare Ru\u0308ckweg dar, u\u0308berliefert in mytholog. Darstellungen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kultwagen" + }, + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1331613426", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1331613426", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1331613426", + "source": "GND" + } + ], + "authorized_access_point": "Sonnenwagen" + }, + { + "md5": "6e176db5861f157fb9d9a4abb7423b5e", + "pid": "1331614392", + "note": [ + { + "label": [ + "Helm, an dem beidseits nachgebildete Flu\u0308gel angebracht sind; findet sich in antiken und antikisierenden Darstellungen von Go\u0308ttern (u.a. Hermes/Merkur) und Go\u0308ttinnen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Helm" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1331614392", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1331614392", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1331614392", + "source": "GND" + } + ], + "authorized_access_point": "Flu\u0308gelhelm" + }, + { + "md5": "d1dfd30fc4b29118c7c655009752ee23", + "pid": "1331704014", + "note": [ + { + "label": [ + "Wikipedia unter Dorfwaage - https://de.wikipedia.org/w/index.php?title=Dorfwaage&oldid=232866456" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1331704014", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1331704014", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1331704014", + "source": "GND" + } + ], + "variant_access_point": [ + "Waagemeister" + ], + "authorized_access_point": "Wiegemeister" + }, + { + "md5": "4dbb0317be0fa3a81cf0dc7eca6ec43a", + "pid": "1331710464", + "note": [ + { + "label": [ + "Begriff in der Theorie kompakter Gruppen, insb. der kompakten Lie-Gruppen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Toroid (Gruppentheorie)" + }, + { + "authorized_access_point": "Kompakte Gruppe" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1331710464", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1331710464", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1331710464", + "source": "GND" + } + ], + "variant_access_point": [ + "Maximaler Torus", + "Maximal Torus" + ], + "authorized_access_point": "Maximaler Toroid" + }, + { + "md5": "0ff944471fa810d6d2bc11ee43ae8e98", + "pid": "1331717353", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=TAPSE&oldid=221946233" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ultraschallkardiografie" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1331717353", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1331717353", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1331717353", + "source": "GND" + } + ], + "variant_access_point": [ + "TAPSE", + "Tricuspid annular motion" + ], + "authorized_access_point": "Tricuspid Anular Plane Systolic Excursion" + }, + { + "md5": "503b9c11a871749e57b989643a20e8b6", + "pid": "1331719054", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Attenuation_(Genexpression)&oldid=239090494" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Genregulation" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1331719054", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1331719054", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1331719054", + "source": "GND" + } + ], + "authorized_access_point": "Attenuation (Molekulargenetik)" + }, + { + "md5": "4dcdd1495702898aa92c42a3ce3e8626", + "pid": "1331723361", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Seidenbienen-%C3%96lk%C3%A4fer&oldid=238939855" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "O\u0308lka\u0308fer (Familie)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1331723361", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1331723361", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1331723361", + "source": "GND" + } + ], + "variant_access_point": [ + "Schwarze Pelzbienen-O\u0308lka\u0308fer", + "Stenoria analis" + ], + "authorized_access_point": "Seidenbienen-O\u0308lka\u0308fer" + }, + { + "md5": "9f2256b2a2ba76ebc34ab87c4c610d16", + "pid": "1331733316", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Crista_(Helm)&oldid=229512606" + ], + "noteType": "dataSource" + }, + { + "label": [ + "lat. fu\u0308r \"Kamm\"; Helmzier/Helmbusch ro\u0308mischer Legiona\u0308re" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Helm" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1331733316", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1331733316", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1331733316", + "source": "GND" + } + ], + "authorized_access_point": "Crista" + }, + { + "md5": "018727ed8bb6f230a848e5beb1895a62", + "pid": "1331734045", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Ehrlichkeit" + }, + { + "authorized_access_point": "Unaufrichtigkeit" + }, + { + "authorized_access_point": "Heuchelei" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1331734045", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1331734045", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1331734045", + "source": "GND" + } + ], + "authorized_access_point": "Unehrlichkeit" + }, + { + "md5": "01f24df377adbfa81a3b0ee07f629caf", + "pid": "1331734126", + "note": [ + { + "label": [ + "als freiwillige Kastraten Begleiter/Priester der Magna Mater (Kybele)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Priesterkollegium" + } + ], + "related": [ + { + "authorized_access_point": "Kybelekult" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1331734126", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1331734126", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1331734126", + "source": "GND" + } + ], + "variant_access_point": [ + "Galloi" + ], + "authorized_access_point": "Galli (Priesterkollegium)" + }, + { + "md5": "754739e86a3642e54860e9aa00342446", + "pid": "1331747716", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Riesenbakterium&oldid=237975080" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bakterien" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1331747716", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1331747716", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1331747716", + "source": "GND" + } + ], + "variant_access_point": [ + "Riesenbakterium" + ], + "authorized_access_point": "Riesenbakterien" + }, + { + "md5": "62d166d2d2f50b309052005ccc96ec63", + "pid": "1331840627", + "note": [ + { + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?title=Eggon_people&oldid=1212081727" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Ethnische Gruppe, die hauptsa\u0308chlich im Norden Zentralnigerias (na\u0308mlich Nassarawa und im Bundesstaat Plateau) beheimatet ist. Muttersprache ist die Eggon-Sprache, die die meisten Eggon-Leute auch heute noch sprechen." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Egon-Sprache" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1331840627", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1331840627", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1331840627", + "source": "GND" + } + ], + "variant_access_point": [ + "Eggon people", + "Egon (Volk)", + "Ero (Volk)", + "Mo Egon (Volk)" + ], + "authorized_access_point": "Eggon (Volk)" + }, + { + "md5": "1491d475814c2ab37162e5a2274b71c5", + "pid": "1331864321", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Schweizerdeutsch" + }, + { + "authorized_access_point": "Hochalemannisch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1331864321", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1331864321", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1331864321", + "source": "GND" + } + ], + "authorized_access_point": "Mundart Hochalemannisch (Balgach)" + }, + { + "md5": "eaa452c191dc86b1d9d8c12c529744be", + "pid": "1331876540", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=.NET_(Plattform)&oldid=245448784" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Framework (Informatik)" + } + ], + "related": [ + { + "authorized_access_point": "Microsoft dot net 7" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1331876540", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1331876540", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1331876540", + "source": "GND" + } + ], + "variant_access_point": [ + "Microsoft dot net 8.0", + "Microsoft.Net 8", + "Microsoft.Net 8.0", + ".Net 8", + ".Net Framework 8", + "Microsoft .NET Framework 8" + ], + "authorized_access_point": "Microsoft dot net 8" + }, + { + "md5": "65fa919bfbf8acd6931ff910ae51eaf7", + "pid": "1331886929", + "note": [ + { + "label": [ + "Wikipedia unter Grimmia - https://de.wikipedia.org/w/index.php?title=Grimmia&oldid=227976746" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Grimmiaceae" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1331886929", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1331886929", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1331886929", + "source": "GND" + } + ], + "variant_access_point": [ + "Mausfell-Kissenmoos" + ], + "authorized_access_point": "Grimmia crinita" + }, + { + "md5": "9b32921f1ece7d8afed678cf8e6e8aff", + "pid": "1331975794", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Ruten-Lattich&oldid=234087294" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Lactuceae" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1331975794", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1331975794", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1331975794", + "source": "GND" + } + ], + "variant_access_point": [ + "Lactuca viminea", + "Rutenlattich" + ], + "authorized_access_point": "Ruten-Lattich" + }, + { + "md5": "969b9261ce1e8f646680b136b8ad17fd", + "pid": "133197593X", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Kleines_Nixenkraut&oldid=217982529" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Froschbissgewa\u0308chse" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/133197593X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)133197593X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)133197593X", + "source": "GND" + } + ], + "variant_access_point": [ + "Najas minor" + ], + "authorized_access_point": "Kleines Nixenkraut" + }, + { + "md5": "8d86663428bd364155b161145757571f", + "pid": "133197612X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fuchsschwanzgewa\u0308chse" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/133197612X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)133197612X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)133197612X", + "source": "GND" + } + ], + "variant_access_point": [ + "Corispermum leptopterum" + ], + "authorized_access_point": "Gro\u00dfflu\u0308geliger Wanzensame" + }, + { + "md5": "c3581590eeb71b2ff15a4e28bb2729c9", + "pid": "1332095119", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1332095119", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1332095119", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1332095119", + "source": "GND" + } + ], + "authorized_access_point": "Schaufensterpuppe (Motiv)" + }, + { + "md5": "ca4cd5b587de87a5a10791128910c750", + "pid": "1332101607", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Paunaka&oldid=220820255", + "Terhart, Lena: A grammar of Paunaka. 2024 - https://refubium.fu-berlin.de/handle/fub188/42745" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Stark bedrohte Sprache gesprochen in der bolivianischen Region Chiquitani\u0301a" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Arawak-Sprachen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1332101607", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1332101607", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1332101607", + "source": "GND" + } + ], + "variant_access_point": [ + "Paunaca", + "Pauneca", + "Pauna" + ], + "authorized_access_point": "Paunaka" + }, + { + "md5": "14c8f4d1c23afd1b8a8fdc56c236c0bc", + "pid": "1332111971", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Small_Modular_Reactor&oldid=245567340" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Small Modular Reactors sind modulare Kernspaltungsreaktoren, die kleiner als herko\u0308mmliche Reaktoren sind und daher in einer Fabrik vorgefertigt und anschlie\u00dfend an einen Montageort verbracht werden ko\u0308nnen." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kernkraftwerk" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1332111971", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1332111971", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1332111971", + "source": "GND" + } + ], + "variant_access_point": [ + "SMR", + "kleiner modularer Reaktor", + "Miniatomkraftwerk", + "Minikernkraftwerk" + ], + "authorized_access_point": "Small Modular Reactor" + }, + { + "md5": "cee4353c2dae75f307cc1d33f25b8be7", + "pid": "1332318142", + "note": [ + { + "label": [ + "Als elektronisches Wertpapier bezeichnet man ein Wertpapier ohne Urkunde, dessen Begebung dadurch erfolgt, dass der Emittent anstelle der Ausstellung einer Wertpapierurkunde eine Eintragung in ein elektronisches Wertpapierregister bewirkt." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wertpapier" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1332318142", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1332318142", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1332318142", + "source": "GND" + } + ], + "variant_access_point": [ + "E-Wertpapier" + ], + "authorized_access_point": "Elektronisches Wertpapier" + }, + { + "md5": "6db608211b8e0aca694c534870737236", + "pid": "1332365841", + "note": [ + { + "label": [ + "Im Handdruckverfahren mit Modeln gefertigtes Buntpapier, das nach handgemalten Entwu\u0308rfen oft gro\u00dffla\u0308chig mit Kleisterfarben bedruckt wurde." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Buntpapier" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1332365841", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1332365841", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1332365841", + "source": "GND" + } + ], + "variant_access_point": [ + "Modeldruckpapier", + "Zitzpapier" + ], + "authorized_access_point": "Kattunpapier" + }, + { + "md5": "8690c724a7560578aa7e24511bf8c2f3", + "pid": "1332426336", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Einwanderin" + }, + { + "authorized_access_point": "Amerikanerin" + } + ], + "related": [ + { + "authorized_access_point": "Amerikanischer Einwanderer" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1332426336", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1332426336", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1332426336", + "source": "GND" + } + ], + "variant_access_point": [ + "US-Amerikanische Einwanderin" + ], + "authorized_access_point": "Amerikanische Einwanderin" + }, + { + "md5": "44579fd652506f4fcbbcd490831c54ff", + "pid": "1332426751", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Fotobuch&oldid=229660915" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Individuelles, u\u0308ber ein Layoutprogramm eines Foto-Anbieters digital erstelltes Fotobuch; in der Regel nur in sehr geringer Stu\u0308ckzahl produziert.", + "Als Formangabe fu\u0308r die Art des Inhalts als Teil des optionalen Sets zugelassen." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bildband" + } + ], + "related": [ + { + "authorized_access_point": "Fotobuch" + }, + { + "authorized_access_point": "CEWE Fotobuch Pro" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1332426751", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1332426751", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1332426751", + "source": "GND" + } + ], + "variant_access_point": [ + "Personalisiertes Fotobuch", + "Personalisiertes Photobuch", + "Perso\u0308nliches Photobuch" + ], + "authorized_access_point": "Perso\u0308nliches Fotobuch" + }, + { + "md5": "50f4628e6023e29ae2b9c281e9921383", + "pid": "1332430376", + "note": [ + { + "label": [ + "Ein Konzertzettel gibt Information u\u0308ber Veranstalter, Ort, Datum und Zeit einer oder mehreren Konzertveranstaltungen und listet alle geplanten Programmpunkte auf, in der Regel mit Angabe der Komponisten und der Interpreten. Oft ist der Eintrittspreis angegeben, manchmal sind Verhaltensregeln fu\u0308r den Konzertsaal genannt. Im Gegensatz zum Konzertprogramm entha\u0308lt ein Konzertzettel keine weitergehenden Informationen zu den Stu\u0308cken und den Interpreten.", + "Zu verwenden fu\u0308r ein einseitig oder beidseitig bedrucktes Blatt im Handzettel-, Faltblatt- oder Plakatformat.", + "Als Formangabe fu\u0308r die Art des Inhalts als Teil des optionalen Sets zugelassen." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1332430376", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1332430376", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1332430376", + "source": "GND" + } + ], + "variant_access_point": [ + "Konzert" + ], + "authorized_access_point": "Konzertzettel" + }, + { + "md5": "0943f5aca1b1d455078c218c52e32738", + "pid": "1332459587", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Polyzephalie&oldid=224564950" + ], + "noteType": "dataSource" + }, + { + "label": [ + "bezeichnet allgemein das Auftreten mehrerer Ko\u0308pfe bei Lebewesen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Missbildung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1332459587", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1332459587", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1332459587", + "source": "GND" + } + ], + "variant_access_point": [ + "Mehrko\u0308pfigkeit" + ], + "authorized_access_point": "Polyzephalie" + }, + { + "md5": "1093afd76249eb4eafc6c9ce9b72d785", + "pid": "1332649688", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bockka\u0308fer" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1332649688", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1332649688", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1332649688", + "source": "GND" + } + ], + "variant_access_point": [ + "Zimmerbock", + "Acanthocinus aedilis" + ], + "authorized_access_point": "Zimmermannsbock" + }, + { + "md5": "6776aecb139f56a5536b9ba9193b8c1c", + "pid": "1332657273", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Birkengewa\u0308chse" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1332657273", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1332657273", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1332657273", + "source": "GND" + } + ], + "variant_access_point": [ + "Betula lenta" + ], + "authorized_access_point": "Zuckerbirke" + }, + { + "md5": "9fc5a83045fbb5e38b8ba35d576a4486", + "pid": "1332661297", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Kleine_Binsenjungfer&oldid=221779523" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Libelle der Gattung der Binsenjungfern, Familie der Teichjungfern" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Teichjungfern" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1332661297", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1332661297", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1332661297", + "source": "GND" + } + ], + "variant_access_point": [ + "Lestes virens" + ], + "authorized_access_point": "Kleine Binsenjungfer" + }, + { + "md5": "c88ef51c01c22912d8b52d5c06521274", + "pid": "1332661327", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Soldatin" + } + ], + "related": [ + { + "authorized_access_point": "Grenzsoldat" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1332661327", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1332661327", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1332661327", + "source": "GND" + } + ], + "authorized_access_point": "Grenzsoldatin" + }, + { + "md5": "e396ac6564b6667ec8566c75f5d13ec5", + "pid": "1332672701", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Azadi" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Kurdische Widerstandsorganisation gegen die Abschaffung des Kalifats" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Politische Gruppe" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1332672701", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1332672701", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1332672701", + "source": "GND" + } + ], + "variant_access_point": [ + "Civata Azadiya Kurd", + "Civata Xweseriya Kurd", + "Ku\u0308rt I\u0307stikla\u0302l Komitesi", + "Azadi\u0302 o\u0308rgu\u0308tu\u0308" + ], + "authorized_access_point": "Azadi\u0302" + }, + { + "md5": "9e173a2ad0ff58ee5d47fb72143eaed3", + "pid": "1332688047", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1332688047", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1332688047", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1332688047", + "source": "GND" + } + ], + "authorized_access_point": "Posthumanismus (Motiv)" + }, + { + "md5": "c5683fb14804525da847f6959991531a", + "pid": "1332734316", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Transiente_Osteoporose&oldid=243930206", + "OBV - https://permalink.obvsg.at/AC17191350" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Schmerzhafte, zeitlich begrenzte Erkrankung der Hu\u0308fte (selten anderer Knochen)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Osteoporose" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1332734316", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1332734316", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1332734316", + "source": "GND" + } + ], + "variant_access_point": [ + "Knochenmarko\u0308dem-Syndrom", + "Transitorische Osteoporose", + "Knochenmarko\u0308demsyndrom", + "KMO\u0308S" + ], + "authorized_access_point": "Transiente Osteoporose" + }, + { + "md5": "aed99b42795f7790bf8ad736941fc012", + "pid": "1332759254", + "note": [ + { + "label": [ + "Amtsnamen aus Toponymen von Herolden des Mittelalters, die fest im Dienst eines Landesherrn standen, auf die der Name indirekt verwies. Mit dem Namenswechsel zum Amtsnamen erschienen diese Personen fortan oft ohne Vornamen." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Name" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1332759254", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1332759254", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1332759254", + "source": "GND" + } + ], + "variant_access_point": [ + "Herold" + ], + "authorized_access_point": "Heroldsname" + }, + { + "md5": "695cf72185e672ec1794bba22fc5dc22", + "pid": "1332765785", + "note": [ + { + "label": [ + "Glottolog - https://glottolog.org/resource/languoid/id/xava1240", + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Xavante_(Sprache)&oldid=213259576" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Ge" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1332765785", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1332765785", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1332765785", + "source": "GND" + } + ], + "variant_access_point": [ + "Shavante-Sprache", + "Chavante-Sprache", + "Acua", + "Akua\u0308n", + "Akuen", + "Akwen (Sprache)", + "Chavantean", + "Akwe (Sprache)" + ], + "authorized_access_point": "Xavante-Sprache" + }, + { + "md5": "fab788043c833668ce8d1141279f1ac1", + "pid": "133276648X", + "note": [ + { + "label": [ + "Homepage - https://docs.python.org/dev/whatsnew/3.12html" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Objektorientierte Programmiersprache" + } + ], + "related": [ + { + "authorized_access_point": "Python 3.7" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/133276648X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)133276648X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)133276648X", + "source": "GND" + } + ], + "authorized_access_point": "Python 3.12" + }, + { + "md5": "7b498fa2071fdf08e9a5c24585e10bfe", + "pid": "1332767702", + "note": [ + { + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?title=Aimol_language&oldid=1218551092" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Sprache der Aimol im indischen Bundesstaat Maipur" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Kukisch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1332767702", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1332767702", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1332767702", + "source": "GND" + } + ], + "variant_access_point": [ + "Aimual-Sprache" + ], + "authorized_access_point": "Aimol-Sprache" + }, + { + "md5": "40d25324dcca992cc0b411d063299cb1", + "pid": "1332774113", + "note": [ + { + "label": [ + "Die Herolde 'Hessenland' erscheinen in Quellen oft nur mit den Amtsnamen, wa\u0308hrend ihre Eigennamen oder Hinweise auf die genaue Funktion fehlen. Landgraf Ludwig I. (1402-1458) bediente sich eines Herolds, der den Namen seines Landes trug." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Heroldsname" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1332774113", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1332774113", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1332774113", + "source": "GND" + } + ], + "authorized_access_point": "Hessenland (Heroldsname)" + }, + { + "md5": "c9bc8e6add7511887ea7c3079f71fb57", + "pid": "1332775381", + "note": [ + { + "label": [ + "Das Lo\u0308sungsverhalten von einem Parameter abha\u0308ngiger Differentialgleichungen ist insb. in Hinblick auf Sto\u0308rungen interessant." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Differentialgleichung" + }, + { + "authorized_access_point": "Parameter (Mathematik)" + } + ], + "related": [ + { + "authorized_access_point": "Sto\u0308rungstheorie" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1332775381", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1332775381", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1332775381", + "source": "GND" + } + ], + "variant_access_point": [ + "Parametrische Differentialgleichung", + "Parametric Differential Equation" + ], + "authorized_access_point": "Parameterabha\u0308ngige Differentialgleichung" + }, + { + "md5": "31973cacffd21a501ea9f858825e3ae1", + "pid": "1332860451", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Tier%C3%A4rztliche_Hausapotheke&oldid=223225029" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Hausapotheke" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1332860451", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1332860451", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1332860451", + "source": "GND" + } + ], + "authorized_access_point": "Tiera\u0308rztliche Hausapotheke" + }, + { + "md5": "7f203c553ee819ed65ce4d58b2316270", + "pid": "1332889549", + "note": [ + { + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?title=GRPC&oldid=1228337631" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Framework von Google" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Framework (Informatik)" + }, + { + "authorized_access_point": "Open Source" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1332889549", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1332889549", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1332889549", + "source": "GND" + } + ], + "variant_access_point": [ + "gRPC Remote Procedure Calls" + ], + "authorized_access_point": "gRPC (Software)" + }, + { + "md5": "fc314265cb652d8ea8327908439cb49b", + "pid": "1332895018", + "note": [ + { + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?title=TigerGraph&oldid=1183528280" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Graphdatenbank" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1332895018", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1332895018", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1332895018", + "source": "GND" + } + ], + "authorized_access_point": "TigerGraph (Graphdatenbank)" + }, + { + "md5": "b36438a0e34c32e63c1a4fc22723431b", + "pid": "1332899730", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Sch%C3%A4ferlauf&oldid=239016245" + ], + "noteType": "dataSource" + }, + { + "label": [ + "entwickelte sich aus dem Zunftfest der gewerblichen Scha\u0308ferrei; heute wu\u0308rttembergisches Volksfest (Jahrmarkt) in den Sta\u0308dten Markgro\u0308ningen, Bad Urach und Wildberg" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Volksfest" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1332899730", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1332899730", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1332899730", + "source": "GND" + } + ], + "authorized_access_point": "Scha\u0308ferlauf" + }, + { + "md5": "d8d4adf069926538d847b2bd98228e7d", + "pid": "1332990258", + "note": [ + { + "label": [ + "Wikipedia - https://nl.wikipedia.org/w/index.php?title=Zaans&oldid=67492702" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Holla\u0308ndisch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1332990258", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1332990258", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1332990258", + "source": "GND" + } + ], + "variant_access_point": [ + "Zaans (Holla\u0308ndisch)" + ], + "authorized_access_point": "Mundart Holla\u0308ndisch (Zaan-Gebiet)" + }, + { + "md5": "79b7748043c7f1768ba23e23921b32a0", + "pid": "1333027249", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Pro-Lie-Gruppe&oldid=233764246" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Eine Pro-Lie-Gruppe ist in der Mathematik eine topologische Gruppe, die sich in gewisser Weise als Grenzwert von Lie-Gruppen schreiben la\u0308sst." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Topologische Gruppe" + }, + { + "authorized_access_point": "Lie-Theorie" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333027249", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333027249", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333027249", + "source": "GND" + } + ], + "variant_access_point": [ + "Pro-Lie Group" + ], + "authorized_access_point": "Pro-Lie-Gruppe" + }, + { + "md5": "80b862c3f0a6c82c56c0d57772440e7a", + "pid": "1333037414", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Aufst%C3%A4nde_und_Revolten_gegen_die_britische_Herrschaft_in_Indien&oldid=244895818#1859_bis_1947", + "Engl. Wikipedia - https://en.wikipedia.org/w/index.php?title=Kuki_Rebellion_of_1917%E2%80%931919&oldid=1187443399" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Rebellion der Kuki-Sta\u0308mme von Manipur gegen die Einmischung der britischen Kolonialherrschaft in die Lebensgrundlage der Kuki" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Aufstand" + }, + { + "authorized_access_point": "Kolonialkrieg" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333037414", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333037414", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333037414", + "source": "GND" + } + ], + "variant_access_point": [ + "Anglo-Kuki-Krieg", + "Anglo-Kuki Rebellion", + "Anglo-Kuki war" + ], + "authorized_access_point": "Kuki-Aufstand" + }, + { + "md5": "857edd3248cc66a9361e1eb8586fe85b", + "pid": "133306179X", + "note": [ + { + "label": [ + "Versto\u00df gegen markenrechtliche Vorschriften" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Markenrecht" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/133306179X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)133306179X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)133306179X", + "source": "GND" + } + ], + "variant_access_point": [ + "Markenrechtsverletzung", + "Markenrechtsversto\u00df", + "Markenrecht" + ], + "authorized_access_point": "Markenverletzung" + }, + { + "md5": "6876fcfe72b723c1ef0062e943e3ab6d", + "pid": "1333063717", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Pr%C3%A4keramisches_Neolithikum_A&oldid=239924826" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Fru\u0308hjungsteinzeitliche Epoche im Vorderen Orient, von Kathleen Kenyon anhand der Stratigraphie von Jericho definiert, lo\u0308ste das Natufian ab", + "Epochenbezeichnung der Vorderasiatischen Archa\u0308ologie" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Neolithikum" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333063717", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333063717", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333063717", + "source": "GND" + } + ], + "variant_access_point": [ + "Pre-pottery Neolithic A", + "PPNA", + "Akeramisches Neolithikum A" + ], + "authorized_access_point": "Pra\u0308keramisches Neolithikum A" + }, + { + "md5": "1d4f0910e1e13d975c6d7f958fbc14ff", + "pid": "1333063970", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Pr%C3%A4keramisches_Neolithikum_B&oldid=239924777" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Folgt auf das Pra\u0308keramische Neolithikum A der Levante, von Kathleen Kenyon aufgrund der Befunde von Jericho definiert", + "Epochenbezeichnung der Vorderasiatischen Archa\u0308ologie" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Neolithikum" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333063970", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333063970", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333063970", + "source": "GND" + } + ], + "variant_access_point": [ + "Pre-pottery Neolithic B", + "PPNB", + "Akeramisches Neolithikum B" + ], + "authorized_access_point": "Pra\u0308keramisches Neolithikum B" + }, + { + "md5": "b029793292df95f84bb6eb80e91ac54b", + "pid": "1333064136", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Pr%C3%A4keramisches_Neolithikum&oldid=242925924", + "engl. Wikipedia - https://en.wikipedia.org/w/index.php?title=Pre-Pottery_Neolithic&oldid=1230052305" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Diese Stufe des pra\u0308keramischen Neolithikums wurde erstmals in Ain Ghazal festgestellt", + "Epochenbezeichnung der Vorderasiatischen Archa\u0308ologie" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Neolithikum" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333064136", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333064136", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333064136", + "source": "GND" + } + ], + "variant_access_point": [ + "PPNC", + "Pre-pottery Neolithic C", + "Akeramisches Neolithikum C", + "Vorkeramische Jungsteinzeit C" + ], + "authorized_access_point": "Pra\u0308keramisches Neolithikum C" + }, + { + "md5": "17c678fa081cc113c411b0eb82fbb425", + "pid": "1333065841", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Fr%C3%BChdynastische_Zeit_(Mesopotamien)&oldid=241217962" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Epochenbezeichnung der altorientalischen Geschichte" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Bronzezeit" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333065841", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333065841", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333065841", + "source": "GND" + } + ], + "variant_access_point": [ + "Fru\u0308hdynastikum (Mesopotamien)", + "Pra\u0308sargonidenzeit" + ], + "authorized_access_point": "Fru\u0308hdynastische Zeit (Mesopotamien)" + }, + { + "md5": "c6153c5df3a8f83f707bd425b8e5e0fa", + "pid": "1333113749", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fraktur (Druckschrift)" + }, + { + "authorized_access_point": "Auszeichnungsschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333113749", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333113749", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333113749", + "source": "GND" + } + ], + "authorized_access_point": "Werbekraft (Druckschrift)" + }, + { + "md5": "15947e75c26519c82935eb8bef30387b", + "pid": "1333115482", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Spanisch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333115482", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333115482", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333115482", + "source": "GND" + } + ], + "authorized_access_point": "Mundart Spanisch (Provinz Salamanca)" + }, + { + "md5": "2f2981704ae72d7e5bfc63c131e72b76", + "pid": "1333115881", + "note": [ + { + "label": [ + "Entstehungszeit der Halbfetten Werbe-Grotesk 1926" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Groteskschrift" + }, + { + "authorized_access_point": "Auszeichnungsschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333115881", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333115881", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333115881", + "source": "GND" + } + ], + "variant_access_point": [ + "Werbegrotesk", + "Halbfette Werbe-Grotesk", + "Schmalfette Werbe-Grotesk" + ], + "authorized_access_point": "Werbe-Grotesk" + }, + { + "md5": "ea9ebf6981c01cdb60899d028659fcec", + "pid": "1333117329", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Alma_(Bibliothekssoftware)&oldid=232264077" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Bibliotheksinformationssystem (Backend) der Ex Libris Group" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bibliotheksinformationssystem" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333117329", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333117329", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333117329", + "source": "GND" + } + ], + "authorized_access_point": "Alma (Bibliotheksinformationssystem)" + }, + { + "md5": "a2b0c1178973e3141c7190a52194d3fb", + "pid": "1333118023", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Groteskschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333118023", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333118023", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333118023", + "source": "GND" + } + ], + "variant_access_point": [ + "Werk Grotesk", + "Werk-Grotesque", + "Werk Grotesque" + ], + "authorized_access_point": "Werk-Grotesk" + }, + { + "md5": "30d27aedba73926a1df43e072486f5f3", + "pid": "1333119267", + "note": [ + { + "label": [ + "Homepage - https://knowledge.exlibrisgroup.com/Primo/Product_Documentation/020Primo_VE" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Bibliotheksinformationssystem (Frontend, Discovery Service) der Ex Libris Group" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bibliotheksinformationssystem" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333119267", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333119267", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333119267", + "source": "GND" + } + ], + "authorized_access_point": "Primo VE (Bibliotheksinformationssystem)" + }, + { + "md5": "ac85f996cbbe45524ea41e12596cb591", + "pid": "1333125127", + "note": [ + { + "label": [ + "Enstehungszeit 1928" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gotische Schrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333125127", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333125127", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333125127", + "source": "GND" + } + ], + "authorized_access_point": "Altenburger Gotisch" + }, + { + "md5": "e87355141ab51ba35b9dccc03172b4f4", + "pid": "1333126433", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Auszeichnungsschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333126433", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333126433", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333126433", + "source": "GND" + } + ], + "authorized_access_point": "Wolfram (Druckschrift)" + }, + { + "md5": "92c43f2a0564071e1579db9c02b23cf9", + "pid": "1333141017", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Cristal_Baschet" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Glasharmonika" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333141017", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333141017", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333141017", + "source": "GND" + } + ], + "variant_access_point": [ + "Crystal (Musikinstrument)", + "Kristal Baschet" + ], + "authorized_access_point": "Cristal Baschet" + }, + { + "md5": "5dc740e726cfba94797f268aa4032e4c", + "pid": "1333208901", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Musikinstrument" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333208901", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333208901", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333208901", + "source": "GND" + } + ], + "variant_access_point": [ + "Diskant-Instrument" + ], + "authorized_access_point": "Diskantinstrument" + }, + { + "md5": "d67621d7c89283d36328ac7257c0f905", + "pid": "1333209908", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schlaginstrument" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333209908", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333209908", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333209908", + "source": "GND" + } + ], + "variant_access_point": [ + "Guiro", + "Ku\u0308rbisraspel" + ], + "authorized_access_point": "Gu\u0308iro" + }, + { + "md5": "0855be49d018b8fda466d4e0aeec73c8", + "pid": "1333210043", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tuba" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333210043", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333210043", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333210043", + "source": "GND" + } + ], + "variant_access_point": [ + "Helikontuba" + ], + "authorized_access_point": "Helikon (Musikinstrument)" + }, + { + "md5": "373a597775088713337af0d0210fbccb", + "pid": "1333255616", + "note": [ + { + "label": [ + "Einsaitige Zither aus Japan" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zither" + }, + { + "authorized_access_point": "Monochord" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333255616", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333255616", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333255616", + "source": "GND" + } + ], + "variant_access_point": [ + "Sumagoto" + ], + "authorized_access_point": "Ichigenkin" + }, + { + "md5": "d9f752f258ac0c1e5f30138b0e8b7343", + "pid": "133325590X", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Klavierharfe" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Harfe" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/133325590X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)133325590X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)133325590X", + "source": "GND" + } + ], + "variant_access_point": [ + "Harfenklavier" + ], + "authorized_access_point": "Klavierharfe" + }, + { + "md5": "49be048007e91ddf31e81ecfd75ebcd1", + "pid": "1333256302", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Kobys" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Laute" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333256302", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333256302", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333256302", + "source": "GND" + } + ], + "variant_access_point": [ + "Kobys" + ], + "authorized_access_point": "Kobyz" + }, + { + "md5": "c85cad9e477f9097af6e1d32f2dbd7a5", + "pid": "1333260148", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bambusflo\u0308te" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334653623", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16961839", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb169618398" + } + ], + "authorized_access_point": "Komabue" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333260148", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333260148", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333260148", + "source": "GND" + } + ], + "authorized_access_point": "Komabue" + }, + { + "md5": "91cf1c4df806ec6ce269f9f5fd7edc86", + "pid": "1333260830", + "note": [ + { + "label": [ + "Wiki - https://de.wikipedia.org/w/index.php?title=Tuba&oldid=245431105" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tuba" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333260830", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333260830", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333260830", + "source": "GND" + } + ], + "authorized_access_point": "Kontrabasstuba" + }, + { + "md5": "60d08fb0e6463535d5bcc26b29b0c376", + "pid": "133326514X", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Kuhglocke_(Schlaginstrument)" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Konische Metallglocke ohne Innenklo\u0308ppel" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schlaginstrument" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/133326514X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)133326514X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)133326514X", + "source": "GND" + } + ], + "variant_access_point": [ + "Cowbell" + ], + "authorized_access_point": "Kuhglocke (Musikinstrument)" + }, + { + "md5": "da6e10213075ac9fc4f5ab6dbc284f0c", + "pid": "1333270267", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Okzitanisch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333270267", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333270267", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333270267", + "source": "GND" + } + ], + "authorized_access_point": "Mundart Okzitanisch (Argentera, Provinz Cuneo)" + }, + { + "md5": "162c5e4699214273dd669daea77975bb", + "pid": "1333312326", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zupfinstrument" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333312326", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333312326", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333312326", + "source": "GND" + } + ], + "authorized_access_point": "Mandoloncello" + }, + { + "md5": "fbf221478a35077e5fab85ebac9af9b3", + "pid": "1333312415", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Mark_Tree" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schlaginstrument" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333312415", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333312415", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333312415", + "source": "GND" + } + ], + "authorized_access_point": "Mark Tree" + }, + { + "md5": "f88030001cf39672f1efb9d05be44b64", + "pid": "1333321201", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Micropayment&oldid=239826416" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Zahlungsverfahren fu\u0308r geringe Summen, vor allem beim Kauf digitaler Gu\u0308ter." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zahlungsverfahren" + }, + { + "authorized_access_point": "Elektronischer Zahlungsverkehr" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333321201", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333321201", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333321201", + "source": "GND" + } + ], + "variant_access_point": [ + "Mikrozahlung", + "Micro payment", + "Micro transaction", + "Mikrotransaktion" + ], + "authorized_access_point": "Micropayment" + }, + { + "md5": "5e13498e5562b019a629838b8e1e12fb", + "pid": "1333323778", + "note": [ + { + "label": [ + "Wert, an dem die Dichtefunktion einer stetigen Zufallsgro\u0308\u00dfe ein relatives Maximum aufweist" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Lageparameter" + }, + { + "authorized_access_point": "Deskriptive Statistik" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333323778", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333323778", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333323778", + "source": "GND" + } + ], + "variant_access_point": [ + "Modus (Statistik)", + "Modal value", + "Mode" + ], + "authorized_access_point": "Modalwert" + }, + { + "md5": "bb612301917ca69e453dde15dc33663b", + "pid": "1333331002", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Einkeimbla\u0308ttrige" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333331002", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333331002", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333331002", + "source": "GND" + } + ], + "variant_access_point": [ + "Butomaceae", + "Blumenlieschgewa\u0308chse" + ], + "authorized_access_point": "Schwanenblumengewa\u0308chse" + }, + { + "md5": "05727840980bba47d7aa10a35c9eecef", + "pid": "1333352085", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Venezianisch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333352085", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333352085", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333352085", + "source": "GND" + } + ], + "authorized_access_point": "Mundart Venezianisch (Segusino)" + }, + { + "md5": "038131b6fa129d160d0fd6edcdc4f8bb", + "pid": "133335245X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schwanenblumengewa\u0308chse" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/133335245X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)133335245X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)133335245X", + "source": "GND" + } + ], + "variant_access_point": [ + "Blumenbinse", + "Butomus umbellatus" + ], + "authorized_access_point": "Schwanenblume" + }, + { + "md5": "c55848eea0317be2213cc6f65359b14b", + "pid": "1333353421", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Limousinisch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333353421", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333353421", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333353421", + "source": "GND" + } + ], + "authorized_access_point": "Mundart Limousinisch (Saint-Junien)" + }, + { + "md5": "75233850468f339fd64cd8e06ec80d14", + "pid": "1333376049", + "note": [ + { + "label": [ + "Baskischer Tanz im 5/8-Takt" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Volkstanz" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333376049", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333376049", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333376049", + "source": "GND" + } + ], + "variant_access_point": [ + "Zorcico" + ], + "authorized_access_point": "Zortziko" + }, + { + "md5": "37853b4eec39e1d6774b7744de13f714", + "pid": "1333421427", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Letzte_Meile&oldid=235677594" + ], + "noteType": "dataSource" + }, + { + "label": [ + "letzter Abschnitt einer Transportkette bis zum Endverbraucher, Empfa\u0308nger, oder zum Reiseziel, z.B. bei der Energieversorgung, im Gu\u0308terverkehr, im Individualverkehr oder in der Telekommunikationstechnik" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Transportkette (Gu\u0308terverkehr)" + }, + { + "authorized_access_point": "Gu\u0308terverkehr" + }, + { + "authorized_access_point": "Individualverkehr" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333421427", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333421427", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333421427", + "source": "GND" + } + ], + "authorized_access_point": "Letzte Meile" + }, + { + "md5": "6ee99ba9984586d976e0238b6a460fec", + "pid": "1333566352", + "note": [ + { + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?title=Akka_(toolkit)&oldid=1214896464" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Middleware" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333566352", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333566352", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333566352", + "source": "GND" + } + ], + "authorized_access_point": "Akka (Software)" + }, + { + "md5": "2c29bf722e37927236c73b916639d364", + "pid": "1333570651", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Weibliche Kranke" + } + ], + "related": [ + { + "authorized_access_point": "Multiple Sklerose" + }, + { + "authorized_access_point": "Multiple-Sklerose-Kranker" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333570651", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333570651", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333570651", + "source": "GND" + } + ], + "authorized_access_point": "Weibliche Multiple-Sklerose-Kranke" + }, + { + "md5": "40dd7c72af7a6fc064640ecba027f3ca", + "pid": "1333716354", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=W%C3%A4rmekraftwerk&oldid=245966421#Durchlaufk%C3%BChlung_ohne_K%C3%BChlturm" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Wenn das erwa\u0308rmte Ku\u0308hlwasser unbehandelt in das Gewa\u0308sser zuru\u0308ckgefu\u0308hrt wird, handelt es sich um eine Durchlaufku\u0308hlung." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ku\u0308hlung" + } + ], + "related": [ + { + "authorized_access_point": "Kraftwerk" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333716354", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333716354", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333716354", + "source": "GND" + } + ], + "authorized_access_point": "Durchlaufku\u0308hlung" + }, + { + "md5": "996829b52e513e6c95bd7f7219cbe986", + "pid": "1333729863", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333729863", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333729863", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333729863", + "source": "GND" + } + ], + "authorized_access_point": "Ambiguita\u0308t (Motiv)" + }, + { + "md5": "f3c6d497133f093fc5c075eb89cd6c3c", + "pid": "1333849435", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333849435", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333849435", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333849435", + "source": "GND" + } + ], + "authorized_access_point": "Ku\u0308nstlersignatur (Motiv)" + }, + { + "md5": "b40d764000fafafd707f41c5f28f5260", + "pid": "1333849788", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333849788", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333849788", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333849788", + "source": "GND" + } + ], + "authorized_access_point": "Authentizita\u0308t (Motiv)" + }, + { + "md5": "7ea974e53ce07bdaa3f876bece0ca42b", + "pid": "1333849850", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333849850", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333849850", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333849850", + "source": "GND" + } + ], + "authorized_access_point": "Hacker (Motiv)" + }, + { + "md5": "1d38c20835ee33c18becde893699dd72", + "pid": "1333852673", + "note": [ + { + "label": [ + "bis zum Ende der letzten Eiszeit in Europa verbreitet, lebte in Laubwa\u0308ldern, Savannen und Grasla\u0308ndern, in Mitteleuropa bis zum Ende des letzten Interglazials, in Spanien bis zum Beginn der Wu\u0308rm-Eiszeit" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Nasho\u0308rner" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333852673", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333852673", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333852673", + "source": "GND" + } + ], + "variant_access_point": [ + "Merck-Nashorn", + "Dicerorhinus kirchbergensis", + "Stephanorhinus kirchbergensis" + ], + "authorized_access_point": "Waldnashorn" + }, + { + "md5": "6965cd416b112695c58a2e874e9443f5", + "pid": "1333853084", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bison" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333853084", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333853084", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333853084", + "source": "GND" + } + ], + "variant_access_point": [ + "Bison bison athabascae" + ], + "authorized_access_point": "Waldbison" + }, + { + "md5": "0e67f562a831f96aba75b9c65acb3e15", + "pid": "133385501X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Feldmaus (Gattung)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/133385501X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)133385501X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)133385501X", + "source": "GND" + } + ], + "variant_access_point": [ + "Sumpfmaus", + "Microtus oeconomus" + ], + "authorized_access_point": "Nordische Wu\u0308hlmaus" + }, + { + "md5": "c69b88d43d13204af636555627fb6812", + "pid": "1333855907", + "note": [ + { + "label": [ + "Gattung" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Lemminge" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333855907", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333855907", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333855907", + "source": "GND" + } + ], + "variant_access_point": [ + "Dicrostonyx" + ], + "authorized_access_point": "Halsbandlemminge" + }, + { + "md5": "d9fb3d2299891d658bcd356821a5f30f", + "pid": "1333876874", + "note": [ + { + "label": [ + "erstes echtes Pferd der Gattung Equus in Eurasien, im Mittelpleistoza\u0308n, es ist benannt nach dem ersten Fundort der Fossilien, wurde aber spa\u0308ter auch im ganzen eurasischen Raum gefunden" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Pferde (Familie)" + }, + { + "authorized_access_point": "Fossile Pferde" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333876874", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333876874", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333876874", + "source": "GND" + } + ], + "variant_access_point": [ + "Mosbacher Wildpferd", + "Mosbacher Pferd", + "Equus mosbachensis" + ], + "authorized_access_point": "Mosbachpferd" + }, + { + "md5": "9e0c470361e8298621d87bbb2b6e6591", + "pid": "133396420X", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=242602086" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Eine Late-Night-Show ist eine am spa\u0308ten Abend ausgestrahlte Fernsehsendung, die Comedy- und Talkshow-Elemente kombiniert und typische Bestandteile wie Stand-up-Einlagen, ein Studiopublikum, sowie ggf. einen Gast und eine Showband entha\u0308lt." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Unterhaltungssendung" + }, + { + "authorized_access_point": "Fernsehsendung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/133396420X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)133396420X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)133396420X", + "source": "GND" + } + ], + "variant_access_point": [ + "Late-night show", + "Late night show" + ], + "authorized_access_point": "Late-Night-Show" + }, + { + "md5": "fc23646788a2cf752c8867d29f0be3d9", + "pid": "1333987366", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Pflanzliche_Milch&oldid=244609687" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Pflanzliches Produkt" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333987366", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333987366", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333987366", + "source": "GND" + } + ], + "variant_access_point": [ + "Pflanzenmilch (Lebensmittel)" + ], + "authorized_access_point": "Pflanzliche Milch" + }, + { + "md5": "89e21ce165c5fb7e1312715cec74aaa7", + "pid": "1333992548", + "note": [ + { + "label": [ + "spa\u0308tpleistoza\u0308ner Riesenhirsch, oder -Elch" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Hirsche" + }, + { + "authorized_access_point": "Fossile Hirsche" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333992548", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333992548", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333992548", + "source": "GND" + } + ], + "variant_access_point": [ + "Alces latifrons" + ], + "authorized_access_point": "Breitstirnelch" + }, + { + "md5": "a208ff11d549085fafa854bb735b88c0", + "pid": "1333993331", + "note": [ + { + "label": [ + "Lex. Soz., S. 533 - https://doi.org/10.1007/978-3-658-30834-6", + "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=216806976", + "Thes. Sozialwiss. - http://lod.gesis.org/thesoz/concept_10068103" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Gesellschaftsform, die auf der Universalisierung des Organisationsprinzips des sozialen Netzwerks, i.S. von dezentralen, offenen Strukturen von interagierenden Knoten, beruht" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gesellschaft" + } + ], + "related": [ + { + "authorized_access_point": "Soziales Netzwerk" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1333993331", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1333993331", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1333993331", + "source": "GND" + } + ], + "variant_access_point": [ + "Network Society" + ], + "authorized_access_point": "Netzwerkgesellschaft" + }, + { + "md5": "9327a3db1ce633c8bbc0fd701db07909", + "pid": "133400076X", + "note": [ + { + "label": [ + "ausgestorbene Ba\u0308renart, die wa\u0308hrend des Pleistoza\u0308ns in Eurasien beheimatet war" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ba\u0308ren (Familie)" + }, + { + "authorized_access_point": "Fossile Ba\u0308ren" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/133400076X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)133400076X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)133400076X", + "source": "GND" + } + ], + "variant_access_point": [ + "Ursus deningeri" + ], + "authorized_access_point": "Deninger-Ba\u0308r" + }, + { + "md5": "1c948cb7608b1a1f49a6ec86b21a7ede", + "pid": "1334087156", + "note": [ + { + "label": [ + "Homepage - https://www.matrikelportal.uni-hamburg.de/content/index.xml" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Datenbank" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1334087156", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1334087156", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1334087156", + "source": "GND" + } + ], + "variant_access_point": [ + "Matrikelportal (Hamburg)" + ], + "authorized_access_point": "Hamburger Matrikelportal" + }, + { + "md5": "5efc3eccac036915a69635e44515f96b", + "pid": "1334088217", + "note": [ + { + "label": [ + "Auf Initiative des Lyrikers Raoul Schrott und mit Unterstu\u0308tzung des Tourismusbu\u0308ros von Lech Zu\u0308rs wird ja\u0308hrlich ein \u201ePoeta Laureatus\u201c gewa\u0308hlt." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Literaturpreis" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1334088217", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1334088217", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1334088217", + "source": "GND" + } + ], + "authorized_access_point": "Poeta Laureatus" + }, + { + "md5": "c46ea796d402a04fccf11030e5dfd052", + "pid": "1334088837", + "note": [ + { + "label": [ + "Homepage - https://web.archive.org/web/20180821112655/https://www.kulturradio.de/programm/literatur/walter_serner_preis/", + "kulturpreise.de - https://www.kulturpreise.de/web/preise_info.php?preisd_id=48" + ], + "noteType": "dataSource" + }, + { + "label": [ + "vergeben fu\u0308r eine Kurzgeschichte zu einem vorgegebenen Thema" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Literaturpreis" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1334088837", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1334088837", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1334088837", + "source": "GND" + } + ], + "variant_access_point": [ + "Walter Serner Preis" + ], + "authorized_access_point": "Walter-Serner-Preis" + }, + { + "md5": "769dfada13db8f6a413aa1e7cf190f4f", + "pid": "1334089663", + "note": [ + { + "label": [ + "Homepage - https://www.fontanepreis.de/", + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Fontane-Preis&oldid=236484432" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Wu\u0308rdigung eine:r Schriftsteller:in im europa\u0308ischen Raum, der/die durch Arbeiten und Werke in besonderem Ma\u00dfe hervorgetreten ist. - seit 2012 Ausrichtung auf Reiseliteratur und -journalismus", + "erstmals von 1913 bis 1922 vergeben. - nach 1949 gab es zwei Fontane-Preise (Westberliner Preis und Preis des DDR-Bezirks Potsdam). - 1994 wurde der Fontane-Literaturpreis von Theodor Fontanes Geburtsstadt Neuruppin neu gestiftet. - ab 2019 alle zwei Jahre gemeinschaftlich von der Fontanestadt Neuruppin und dem Land Brandenburg vergeben" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Literaturpreis" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1334089663", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1334089663", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1334089663", + "source": "GND" + } + ], + "variant_access_point": [ + "Fontane-Preis fu\u0308r Literatur der Fontanestadt Neuruppin", + "Berliner Kunstpreis fu\u0308r Literatur", + "Kunstpreis Berlin fu\u0308r Literatur", + "Gro\u00dfer Kunstpreis Berlin fu\u0308r Literatur" + ], + "authorized_access_point": "Fontane-Preis" + }, + { + "md5": "f267b12110dcd1c063b370fc0a79ed44", + "pid": "1334091412", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Werner_Br%C3%A4unig&oldid=237561503#Leben_und_Wirken" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Literaturpreis" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1334091412", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1334091412", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1334091412", + "source": "GND" + } + ], + "authorized_access_point": "Werner-Bra\u0308uning-Literaturpreis" + }, + { + "md5": "141b8f7de73536a2d9b43d7751d03278", + "pid": "1334127158", + "note": [ + { + "label": [ + "eiszeitlicher Maulwurf, disjunkte Funde in Su\u0308deuropa, Balkan, Kaukasus und Japan, aber auch in Mitteleuropa" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Maulwu\u0308rfe (Familie)" + }, + { + "authorized_access_point": "Fossile Kleinsa\u0308uger" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1334127158", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1334127158", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1334127158", + "source": "GND" + } + ], + "variant_access_point": [ + "Talpa minor" + ], + "authorized_access_point": "Zwergmaulwurf" + }, + { + "md5": "2641ff23199b411b6ad52a1b7f5d521f", + "pid": "1334131074", + "note": [ + { + "label": [ + "eiszeitlicher Biber" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Biber (Familie)" + }, + { + "authorized_access_point": "Fossile Nagetiere" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1334131074", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1334131074", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1334131074", + "source": "GND" + } + ], + "variant_access_point": [ + "Trogontherium cuvieri" + ], + "authorized_access_point": "Gro\u00dfbiber" + }, + { + "md5": "4adbf48f78d9c312b885477a99f99d04", + "pid": "1334205639", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1334205639", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1334205639", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1334205639", + "source": "GND" + } + ], + "authorized_access_point": "Luftschlacht um England (Motiv)" + }, + { + "md5": "f22793b76e6e6f62252605ce7e0bfa44", + "pid": "1334225907", + "note": [ + { + "label": [ + "Spektrum Lexikon der Mathematik - https://www.spektrum.de/lexikon/mathematik/hirzebruch-flaeche/3987", + "Wikipedia - https://en.wikipedia.org/w/index.php?title=Hirzebruch_surface&oldid=1177831601" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Eine Hirzebruch-Fla\u0308che ist Regelfla\u0308che u\u0308ber der projektiven Geraden." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Komplexe Mannigfaltigkeit" + }, + { + "authorized_access_point": "Regelfla\u0308che" + }, + { + "authorized_access_point": "Projektive Gerade" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1334225907", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1334225907", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1334225907", + "source": "GND" + } + ], + "variant_access_point": [ + "Hirzebruch Surface" + ], + "authorized_access_point": "Hirzebruch-Fla\u0308che" + }, + { + "md5": "1e566c495ec1bfa52b6f77b57e505e08", + "pid": "1334227209", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Laplace-Matrix&oldid=237255983" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Die Lapcematrix ist die diskrete Version des Laplace-Operator und hat Anwendungen in der Graphentheorie." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Graphentheorie" + } + ], + "related": [ + { + "authorized_access_point": "Laplace-Operator" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1334227209", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1334227209", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1334227209", + "source": "GND" + } + ], + "variant_access_point": [ + "Kirchhoff-Matrix", + "Diskreter Laplace-Operator", + "Graph Laplacian" + ], + "authorized_access_point": "Laplace-Matrix" + }, + { + "md5": "647b26e74f6f0d388c14678a32839753", + "pid": "1334230463", + "note": [ + { + "label": [ + "Encyclopedia of Math - https://encyclopediaofmath.org/index.php?title=Limit-absorption_principle&oldid=53491" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Methode aus der Operatprtheorie und Streutheorie zum Finden von Lo\u0308sungen der Helmholtz-Schwingungsgleichung und verwandter Gleichungen." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Operatortheorie" + }, + { + "authorized_access_point": "Streutheorie" + } + ], + "related": [ + { + "authorized_access_point": "Helmholtz-Schwingungsgleichung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1334230463", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1334230463", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1334230463", + "source": "GND" + } + ], + "variant_access_point": [ + "Limiting Absorption Principle" + ], + "authorized_access_point": "Limit-Absoprtion Principle" + }, + { + "md5": "052fed01d674eeffb4b6e741e315d9d4", + "pid": "1334231826", + "note": [ + { + "label": [ + "ncatlab - https://ncatlab.org/nlab/show/Witten+index" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Supersymmetrische Verteilungsfunktion in der Quantenfeldtheorie" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Verteilungsfunktion" + }, + { + "authorized_access_point": "Supersymmetrie" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1334231826", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1334231826", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1334231826", + "source": "GND" + } + ], + "authorized_access_point": "Witten-Index" + }, + { + "md5": "6ad8d81762161b6d05011d8da5e2fb62", + "pid": "1334314950", + "note": [ + { + "label": [ + "Homepage - https://heieditions.github.io/" + ], + "noteType": "dataSource" + }, + { + "label": [ + "technische Infrastruktur fu\u0308r die Online-Publikation von digitalisiertem Quellenmaterial inkl. Redaktionsmodul" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Softwareplattform" + } + ], + "related": [ + { + "authorized_access_point": "Digitale Edition" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1334314950", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1334314950", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1334314950", + "source": "GND" + } + ], + "variant_access_point": [ + "Heidelberger digitale Editionen" + ], + "authorized_access_point": "heiEDITIONS" + }, + { + "md5": "7be1cdf42c834b417c371d4a87ec1176", + "pid": "1334320462", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Betrieb" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1334320462", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1334320462", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1334320462", + "source": "GND" + } + ], + "authorized_access_point": "Inklusionsbetrieb" + }, + { + "md5": "bbe380994a49c76fb1375ff6ee64c665", + "pid": "1334336342", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Diamantoide&oldid=227953008" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ka\u0308figverbindungen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1334336342", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1334336342", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1334336342", + "source": "GND" + } + ], + "variant_access_point": [ + "Diamantartige", + "Polymantane", + "Nanodiamanten", + "Diamondoids" + ], + "authorized_access_point": "Diamantoide" + }, + { + "md5": "92f37f26b093f11a1fc0c9e68abad196", + "pid": "1334484775", + "note": [ + { + "label": [ + "Wikipedia - https://nl.wikipedia.org/w/index.php?title=Bildts&oldid=67394558" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Holla\u0308ndisch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1334484775", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1334484775", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1334484775", + "source": "GND" + } + ], + "variant_access_point": [ + "Bildts (Holla\u0308ndisch)", + "Bildtse taal (Holla\u0308ndisch)" + ], + "authorized_access_point": "Mundart Holla\u0308ndisch (Het Bildt)" + }, + { + "md5": "8696eac82d52063b0db85626d7d76187", + "pid": "1334538549", + "note": [ + { + "label": [ + "Kombiniere mit Sprachbezeichnung und Wortart; z.B. SWW Griechisch ; Verb ; oikodomeo\u0304" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1334538549", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1334538549", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1334538549", + "source": "GND" + } + ], + "variant_access_point": [ + "oikodomein", + "\u03bf\u03b9\u03ba\u03bf\u03b4\u03bf\u03bc\u03b5\u03b9\u03bd", + "\u03bf\u03b9\u03ba\u03bf\u03b4\u03bf\u03bc\u03b5\u03c9" + ], + "authorized_access_point": "oikodomeo\u0304" + }, + { + "md5": "225ea2dda78ff465a51ccdfdd240446c", + "pid": "1334542139", + "note": [ + { + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?title=Arithmetic_combinatorics&oldid=1174356901" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Mathematisches Forschungsgebiet zwischen Zahlentheorie, Kombinatorik, Ergodentheorie und Harmonischer Analyse" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kombinatorik" + } + ], + "related": [ + { + "authorized_access_point": "Arithmetische Operation" + }, + { + "authorized_access_point": "Arithmetische Folge" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1334542139", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1334542139", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1334542139", + "source": "GND" + } + ], + "variant_access_point": [ + "Arithmetic Combinatorics" + ], + "authorized_access_point": "Arithmetische Kombinatorik" + }, + { + "md5": "7e4ebbb869a0662b769e29fa4a700a24", + "pid": "1334652074", + "note": [ + { + "label": [ + "Homepage - https://www.naturpark-stromberg-heuchelberg.de/erleben/wandern/eppinger-linien-weg" + ], + "noteType": "dataSource" + }, + { + "label": [ + "40 km lange kulturhistorischer Wanderweg im Naturpark Stromberg-Heuchelberg zwischen Eppingen und Mu\u0308hlacker" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wanderweg" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1334652074", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1334652074", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1334652074", + "source": "GND" + } + ], + "authorized_access_point": "Eppinger-Linien-Weg" + }, + { + "md5": "c25e4345e03e70bc9ca55e6e147394a8", + "pid": "1334676844", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Schlacht_um_%C5%81%C3%B3d%C5%BA" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schlacht" + } + ], + "related": [ + { + "authorized_access_point": "Erster Weltkrieg" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1334676844", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1334676844", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1334676844", + "source": "GND" + } + ], + "variant_access_point": [ + "Schlacht um Lodz", + "Bitwa pod \u0141odzia\u0328 (1914)", + "Lodzinskaja operacija", + "\u041b\u043e\u0434\u0437\u0438\u043d\u0441\u043a\u0430\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u044f" + ], + "authorized_access_point": "Schlacht um \u0141o\u0301dz\u0301" + }, + { + "md5": "087d82c5ccc50f732412e40b40d596d1", + "pid": "1334784639", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Biowerkstoff&oldid=224587293" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Der Begriff Biowerkstoff wurde als Oberbegriff fu\u0308r Werkstoffe geschaffen, die vollsta\u0308ndig oder zu relevanten Anteilen auf nachwachsenden Rohstoffen (Naturprodukte oder Holz) basieren." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Werkstoff" + } + ], + "related": [ + { + "authorized_access_point": "Biomaterial" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1334784639", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1334784639", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1334784639", + "source": "GND" + } + ], + "variant_access_point": [ + "Biobasierter Werkstoff", + "biomaterial (eng)" + ], + "authorized_access_point": "Biowerkstoff" + }, + { + "md5": "3a691c8a4d83cf06581be3fcc914b4da", + "pid": "1334795533", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Cyberfeminismus&oldid=243932731" + ], + "noteType": "dataSource" + }, + { + "label": [ + "seit ca. 1990 Bezeichnung fu\u0308r einen feministischen Ansatz, der dazu dient, das Internet, den Cyberspace und neue Medientechnologien im Allgemeinen zu theoretisieren, kritisieren, erforschen und neu zu gestalten" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Feminismus" + } + ], + "related": [ + { + "authorized_access_point": "Medientheorie" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1334795533", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1334795533", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1334795533", + "source": "GND" + } + ], + "variant_access_point": [ + "Netzfeminismus", + "Technofeminismus" + ], + "authorized_access_point": "Cyberfeminismus" + }, + { + "md5": "db29455b8533c48997b387315583f4f7", + "pid": "1334804281", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Ulmer_Einsatzgruppen-Prozess&oldid=237591756" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Der Prozess gegen zehn Angeho\u0308rige der \u201eEinsatzgruppe Tilsit\u201c im April 1958 verhandelte den Mord an u\u0308ber 5.500 Menschen im deutsch-litauischen Grenzgebiet 1941" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kriegsverbrecherprozess" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1334804281", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1334804281", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1334804281", + "source": "GND" + } + ], + "variant_access_point": [ + "Ulmer Einsatzkommandoprozess" + ], + "authorized_access_point": "Ulmer Einsatzgruppen-Prozess" + }, + { + "md5": "1b31307228a559b8eaeabb9deb9840de", + "pid": "1334804699", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1334804699", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1334804699", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1334804699", + "source": "GND" + } + ], + "authorized_access_point": "Spitze (Textilien, Motiv)" + }, + { + "md5": "ddd4e7668e647cb236878ce992504d75", + "pid": "1334804893", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Stockfotografie&oldid=243286041" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fotografie" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1334804893", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1334804893", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1334804893", + "source": "GND" + } + ], + "authorized_access_point": "Stockfotografie" + }, + { + "md5": "a18fbb8e40c9a2962ddeb8f9619ee02a", + "pid": "1334810524", + "note": [ + { + "label": [ + "Darstellungsweise des Laubwerks in der bildenden Kunst", + "Ohne IZ Motiv" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + }, + { + "authorized_access_point": "Landschaftsmalerei" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1334810524", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1334810524", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1334810524", + "source": "GND" + } + ], + "authorized_access_point": "Baumschlag (Landschaftsmalerei)" + }, + { + "md5": "2c7534c8a35f3f0afb201a25bbf59f01", + "pid": "1334879079", + "note": [ + { + "label": [ + "Sammlung wichtiger Stellen aus Opern, Konzerten usw. fu\u0308r ein bestimmtes Instrument" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Musikalien" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1334879079", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1334879079", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1334879079", + "source": "GND" + } + ], + "authorized_access_point": "Orchesterstudien" + }, + { + "md5": "aeb17adb279c1e2489481bab24e40f97", + "pid": "1334906815", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ortsname" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1334906815", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1334906815", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1334906815", + "source": "GND" + } + ], + "authorized_access_point": "Finnentrop (Ortsname)" + }, + { + "md5": "38f9a4b322c4ca006441aca13163a59e", + "pid": "1334935475", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Spektrum_(Topologie)&oldid=200053574", + "Encyclopedia of Math - https://encyclopediaofmath.org/index.php?title=Spectrum_of_spaces&oldid=52273" + ], + "noteType": "dataSource" + }, + { + "label": [ + "In der algebraischen Topologie werden Spektren zur Definition verallgemeinerter Homologietheorien benutzt." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Spektrum (Mathematik)" + }, + { + "authorized_access_point": "Algebraische Topologie" + } + ], + "related": [ + { + "authorized_access_point": "Homotopietheorie" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1334935475", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1334935475", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1334935475", + "source": "GND" + } + ], + "variant_access_point": [ + "Spectrum of Spaces" + ], + "authorized_access_point": "Spektrum (Topologie)" + }, + { + "md5": "25378d4eab501ff94176437050a1e2d7", + "pid": "1335054405", + "note": [ + { + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?&oldid=1232080765", + "Singer; Snipes: Generations of Suffering: Experiences of a Treatment Program for Substance Abuse During Pregnancy, 1992, S. 225 - https://doi.org/10.1353/hpu.2010.0180", + "Medico International: Pandemie? Syndemie! - https://www.medico.de/pandemie-syndemie-18186" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Eine Syndemie ist eine Reihe miteinander verflochtener und sich gegenseitig versta\u0308rkender Gesundheitsprobleme, die im Zusammenwirken mit scha\u0308dlichen sozialen und physischen Bedingungen die Gesamtkrankheitslast und den Gesundheitszustand einer Bevo\u0308lkerung erheblich beeinflussen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sozialepidemiologie" + } + ], + "related": [ + { + "authorized_access_point": "Pandemie" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336048573", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2014100257", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2014100257" + } + ], + "authorized_access_point": "Syndemics" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336048115", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D000076603", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000076603" + } + ], + "authorized_access_point": "Syndemic" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1335054405", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1335054405", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1335054405", + "source": "GND" + } + ], + "authorized_access_point": "Syndemie" + }, + { + "md5": "2c57033cbea05a59d8e1f82391a48a1b", + "pid": "1335134549", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Jubila\u0308um" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1335134549", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1335134549", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1335134549", + "source": "GND" + } + ], + "variant_access_point": [ + "700-Jahrfeier der Stadt Beckum 1924", + "Siebenhundert-Jahrfeier der Stadt Beckum", + "Beckum (1924)" + ], + "authorized_access_point": "700-Jahrfeier der Stadt Beckum" + }, + { + "md5": "1ca09be230102533327dd88936acf6ba", + "pid": "1335201068", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Vorarlberger_Volkserhebung_1809&oldid=208849160" + ], + "noteType": "dataSource" + }, + { + "label": [ + "gewaltsamer Widerstand der Bevo\u0308lkerung des o\u0308sterreichischen Landes Vorarlberg gegen die bayerische Fremdherrschaft im Rahmen des O\u0308sterreichisch-Franzo\u0308sischen Kriegs" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Aufstand" + } + ], + "related": [ + { + "authorized_access_point": "O\u0308sterreichisch-Franzo\u0308sischer Krieg (1809)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1335201068", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1335201068", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1335201068", + "source": "GND" + } + ], + "variant_access_point": [ + "Vorarlberger Volksaufstand (1809)", + "Vorarlberger Aufstand (1809)", + "Vorarlberger Erhebung (1809)" + ], + "authorized_access_point": "Vorarlberger Volkserhebung (1809)" + }, + { + "md5": "806d920cfcbe5b164d16cb47e127fc7c", + "pid": "133521075X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Jubila\u0308um" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/133521075X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)133521075X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)133521075X", + "source": "GND" + } + ], + "variant_access_point": [ + "700-Jahrfeier der Stadt Borken", + "700-Jahr-Feier der Stadt Borken 1926", + "Siebenhundert-Jahr-Feier der Stadt Borken", + "Borken (Westf.) (1926)" + ], + "authorized_access_point": "700-Jahr-Feier der Stadt Borken" + }, + { + "md5": "9804d14eed8b0853b0d197ba225bcdc9", + "pid": "1335212299", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Jubila\u0308um" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1335212299", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1335212299", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1335212299", + "source": "GND" + } + ], + "variant_access_point": [ + "Siebenhundertfu\u0308nfundsiebzig Jahre Stadt Borken", + "Borken (Westf.) (2001)" + ], + "authorized_access_point": "775 Jahre Stadt Borken" + }, + { + "md5": "6c09dc95ccf9f61c25ee916387b59c16", + "pid": "1335228187", + "note": [ + { + "label": [ + "Rameau - https://data.bnf.fr/ark:/12148/cb17034367t", + "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=236304205" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Formen der Wirtschaft, bei denen natu\u0308rliche Ressourcen entnommen, genutzt und vermarktet werden" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Rohstoffwirtschaft" + }, + { + "authorized_access_point": "Entwicklungsmodell" + } + ], + "related": [ + { + "authorized_access_point": "Ausbeutung" + }, + { + "authorized_access_point": "Subsistenzwirtschaft" + }, + { + "authorized_access_point": "Rohstoffexport" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17034367t" + } + ], + "authorized_access_point": "Extractivisme" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1335228187", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1335228187", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1335228187", + "source": "GND" + } + ], + "variant_access_point": [ + "Neo-Extraktivismus", + "Neuextraktivismus" + ], + "authorized_access_point": "Extraktivismus" + }, + { + "md5": "b428829ee70be6834b14e2622becc748", + "pid": "133523490X", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=228402100" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Unter Rationalisierung ist in der Soziologie der umfassende Prozess zu verstehen, in dem alle gesellschaftlichen Pha\u0308nomene der Vernunft unterworfen werden" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Soziologie" + } + ], + "related": [ + { + "authorized_access_point": "Vernunft" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/133523490X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)133523490X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)133523490X", + "source": "GND" + } + ], + "authorized_access_point": "Rationalisierung (Soziologie)" + }, + { + "md5": "e18710fb1dad8b85856476f7a0647196", + "pid": "1335237046", + "note": [ + { + "label": [ + "Spektrum Lex. Psychol. (online) - https://www.spektrum.de/lexikon/psychologie/schismogenese/13471", + "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=245926045" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Gruppendynamik" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1335237046", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1335237046", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1335237046", + "source": "GND" + } + ], + "variant_access_point": [ + "Schismogenesis" + ], + "authorized_access_point": "Schismogenese" + }, + { + "md5": "8b13a53f2fa4ef4e1edc24cd4776419a", + "pid": "1335237232", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Preis (Auszeichnung)" + } + ], + "related": [ + { + "authorized_access_point": "Umweltschutz" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1335237232", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1335237232", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1335237232", + "source": "GND" + } + ], + "authorized_access_point": "Umweltpreis der Stadt Bergkamen" + }, + { + "md5": "ee174f290bc505815f2e06a8ec8b6034", + "pid": "1335255869", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Stadtkreis_(Russland)&oldid=229834610" + ], + "noteType": "dataSource" + }, + { + "label": [ + "in der Russischen Fo\u0308deration eine Verwaltungseinheit im Rahmen der lokalen Selbstverwaltung" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Verwaltungseinheit" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1335255869", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1335255869", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1335255869", + "source": "GND" + } + ], + "variant_access_point": [ + "Gorodskoi Okrug", + "Gorodskoj okrug" + ], + "authorized_access_point": "Stadtkreis (Russland)" + }, + { + "md5": "820627776999884abbed210cc6436879", + "pid": "1335263977", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Permutaeder&oldid=244419551" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Konvexes Polytop, dessen Ecken sich als Permutation des Vektors (1,2,\u2026,n) definieren." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Konvexes Polytop" + } + ], + "related": [ + { + "authorized_access_point": "Permutation" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1335263977", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1335263977", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1335263977", + "source": "GND" + } + ], + "variant_access_point": [ + "Permutohedron", + "Permutahedron" + ], + "authorized_access_point": "Permutaeder" + }, + { + "md5": "79653563009d8db252902d07cf570965", + "pid": "1335327541", + "note": [ + { + "label": [ + "Benutze Kombination \"Mamma AND Krankheit\" fu\u0308r weitere Treffer" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Krankheit" + } + ], + "related": [ + { + "authorized_access_point": "Senologie" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1335330070", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85016683", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85016683" + } + ], + "authorized_access_point": "Breast - Diseases" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1335330070", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11938410", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11938410t" + } + ], + "authorized_access_point": "Sein - Maladies" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1335329935", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D001941", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D001941" + } + ], + "authorized_access_point": "Breast Diseases" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1335327541", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1335327541", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1335327541", + "source": "GND" + } + ], + "variant_access_point": [ + "Brusterkrankung", + "Brustkrankheiten", + "Brusterkrankungen" + ], + "authorized_access_point": "Brustkrankheit" + }, + { + "md5": "78c600fb9c3996031bca5c3b29dfe89e", + "pid": "1335332510", + "note": [ + { + "label": [ + "OBV - https://permalink.obvsg.at/AC12153949", + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Priorisierung_medizinischer_Leistungen&oldid=212761464" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Vorrangigkeit bestimmter Indikationen, Patientengruppen od. Verfahren vor anderen; nicht ident mit Rationierung" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gesundheitspolitik" + }, + { + "authorized_access_point": "Medizinische Versorgung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1335332510", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1335332510", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1335332510", + "source": "GND" + } + ], + "variant_access_point": [ + "Priorisierung (Gesundheitswesen)", + "Priorisierung medizinischer Leistungen", + "Medizinische Priorisierung" + ], + "authorized_access_point": "Priorisierung" + }, + { + "md5": "8e3ae6c5734bd95acd92ae6e75950e35", + "pid": "1335334955", + "note": [ + { + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?title=Liouville_field_theory&oldid=1231830939", + "ncatlab - https://ncatlab.org/nlab/show/Liouville+theory" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Zweidimensionale konforme Feldtheorie, deren klassische Bewegungsgleichungen auf einer Verallgemeinerung der Liouville-Gleichung beruhen." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zweidimensionale konforme Feldtheorie" + }, + { + "authorized_access_point": "Liouville-Gleichung" + } + ], + "related": [ + { + "authorized_access_point": "Quantengravitation" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1335334955", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1335334955", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1335334955", + "source": "GND" + } + ], + "variant_access_point": [ + "Liouville-Quantengravitation", + "Liouville Field Theory", + "Liouville Theory", + "Liouville Quantum Gravity" + ], + "authorized_access_point": "Liouville-Feldtheorie" + }, + { + "md5": "750700fa45ac07b5928481111717bb4b", + "pid": "1335348379", + "note": [ + { + "label": [ + "Seit 2017 vergebenes Stipendium an Kunstvermittler*innen." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kulturpreis" + }, + { + "authorized_access_point": "Stipendium" + } + ], + "related": [ + { + "authorized_access_point": "Kunstvermittlung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1335348379", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1335348379", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1335348379", + "source": "GND" + } + ], + "variant_access_point": [ + "Stipendium Volkswagen Fellowship fu\u0308r Kunstvermittlung", + "Volkswagen Fellowship fu\u0308r Kunstvermittlung an der Sta\u0308dtischen Galerie Wolfsburg", + "Volkswagen Group Fellowship", + "Volkswagen Fellowship" + ], + "authorized_access_point": "Volkswagen Fellowship fu\u0308r Kunstvermittlung" + }, + { + "md5": "9f4308c26975b0b0f8dae07ea3844f24", + "pid": "1335475575", + "note": [ + { + "label": [ + "Internet - https://www.plastverarbeiter.de/markt/die-perfekte-welle.html" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schnecke (Maschinenbau)" + } + ], + "related": [ + { + "authorized_access_point": "Extruder" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1335475575", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1335475575", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1335475575", + "source": "GND" + } + ], + "variant_access_point": [ + "Wave-Schnecke" + ], + "authorized_access_point": "Wellenschnecke" + }, + { + "md5": "4b099c43bfbe00b5c767afd880f82848", + "pid": "1335475753", + "note": [ + { + "label": [ + "Larner, A. J.: A dictionary of neurological signs. Springer, 2016, 4. Aufl., S. 139 - https://doi.org/10.1007/978-3-319-29821-4", + "MeSH - https://id.nlm.nih.gov/mesh/D000090206.html", + "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=243986138", + "Du. - https://www.duden.de/rechtschreibung/Gaslighting" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Form der gezielten psychologischen Manipulation, bei dem ein Opfer dazu gebracht wird, seine Wahrnehmungen der Realita\u0308t inkl. Erinnerungen u.a. in Frage zu stellen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Manipulation" + } + ], + "related": [ + { + "authorized_access_point": "Emotionaler Missbrauch" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "uri", + "value": "https://id.nlm.nih.gov/mesh/D000090206.html" + } + ], + "authorized_access_point": "Gaslighting" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1335475753", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1335475753", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1335475753", + "source": "GND" + } + ], + "variant_access_point": [ + "Gaslight Phenomenon", + "Gaslight Syndrome", + "Gaslichtern", + "Gas-lighting" + ], + "authorized_access_point": "Gaslighting" + }, + { + "md5": "10c3a736b1876210c5e293b816861547", + "pid": "1335484639", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Medienkunst&oldid=244560852" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Ku\u0308nstlerin die die sich unterschiedlicher audiovisueller Medien (Radio, Film, Fernsehen, Video, Computer und Internet) bedient" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ku\u0308nstlerin" + } + ], + "related": [ + { + "authorized_access_point": "Medienku\u0308nstler" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1335484639", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1335484639", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1335484639", + "source": "GND" + } + ], + "authorized_access_point": "Medienku\u0308nstlerin" + }, + { + "md5": "b5b5822c321a786d45ee8d6966f65fd8", + "pid": "1335484930", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Medienkunst&oldid=244560852" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Ku\u0308nstler der sich unterschiedlicher audiovisueller Medien (Radio, Film, Fernsehen, Video, Computer und Internet) bedient" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ku\u0308nstler" + } + ], + "related": [ + { + "authorized_access_point": "Medienku\u0308nstlerin" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1335484930", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1335484930", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1335484930", + "source": "GND" + } + ], + "authorized_access_point": "Medienku\u0308nstler" + }, + { + "md5": "19514f284df7a97e8768f6c1c1f7c8dd", + "pid": "1335503307", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Avro_Shackleton&oldid=230785070" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Aufkla\u0308rungsflugzeug" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1335503307", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1335503307", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1335503307", + "source": "GND" + } + ], + "variant_access_point": [ + "Shackleton (Flugzeug)" + ], + "authorized_access_point": "Avro 696 Shackleton" + }, + { + "md5": "51d7b2543f4db5a363f3fc483f2392f3", + "pid": "1335514767", + "note": [ + { + "label": [ + "UNESCO - https://ich.unesco.org/en/RL/nguon-rituals-of-governance-and-associated-expressions-in-the-bamoun-community-01955", + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Ko\u0308nigreich_Bamum&oldid=240119185#Nguon" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Die u\u0308ber 600 Jahre alten Nguon-Rituale zwischen dem Mfon, dem Monarchen, und seinem Volk gelten als Quelle des sozialen Zusammenhalts und Widerstandsfa\u0308higkeit, sie werden von der Bamoun-Gemeinschaft in der Westregion Kameruns durchgefu\u0308hrt." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ritual" + } + ], + "related": [ + { + "authorized_access_point": "Bamum" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1335514767", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1335514767", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1335514767", + "source": "GND" + } + ], + "authorized_access_point": "Nguon" + }, + { + "md5": "8fd305843742406a7a621bfab647832a", + "pid": "1335528539", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Moritz_von_Oraniens_Feldzug_von_1597&oldid=236205338" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Feldzug" + } + ], + "related": [ + { + "authorized_access_point": "Achtzigja\u0308hriger Krieg" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1335528539", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1335528539", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1335528539", + "source": "GND" + } + ], + "variant_access_point": [ + "Moritz von Oraniens Feldzug von 1597", + "Moritz' Feldzug von 1597" + ], + "authorized_access_point": "Moritz von Oraniens Feldzug (1597)" + }, + { + "md5": "b889c6fcdfbf91af4a0d6d959bba1eb5", + "pid": "1335727701", + "note": [ + { + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?oldid=1021987957", + "Evens; Handelman: The Manchester School: Practice and Ethnographic Praxis in Anthropology. Berghahn, 2006 - https://doi.org/10.1515/9780857458582" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Die Manchester School of Anthropology ist eine interaktionistische Richtung der britischen Ethnologie, die vom Department of Social Anthropology der Victoria University of Manchester ausging, federfu\u0308hrend war Max Gluckman" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sozialanthropologie" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1335727701", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1335727701", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1335727701", + "source": "GND" + } + ], + "variant_access_point": [ + "Manchester School of Anthropology" + ], + "authorized_access_point": "Manchester School" + }, + { + "md5": "ee5a877ecd93130a332a4f652790a319", + "pid": "1335729577", + "note": [ + { + "label": [ + "Nach 2009 als \"Umwelt- und Klimaschutzpreis\" fortgefu\u0308hrt und alle 2 Jahre verliehen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Preis (Auszeichnung)" + } + ], + "related": [ + { + "authorized_access_point": "Umweltschutz" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1335729577", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1335729577", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1335729577", + "source": "GND" + } + ], + "variant_access_point": [ + "Umweltpreis (Bielefeld)" + ], + "authorized_access_point": "Umweltpreis der Stadt Bielefeld" + }, + { + "md5": "53fa7b242c5e0ff3fbdcb333fda9d06c", + "pid": "1335733086", + "note": [ + { + "label": [ + "Benutzt, soweit im Ausland lebend" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausla\u0308ndischer Schu\u0308ler" + }, + { + "authorized_access_point": "Ukrainer" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1335733086", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1335733086", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1335733086", + "source": "GND" + } + ], + "authorized_access_point": "Ukrainischer Schu\u0308ler" + }, + { + "md5": "21f43aff5255991f4320a95af997bd8d", + "pid": "1335736832", + "note": [ + { + "label": [ + "AAT - http://vocab.getty.edu/page/aat/300027201", + "Thomas, S.: Beobachtungsprotokolle und Feldnotizen. In: Ethnografie. Qualitative Sozialforschung. Springer, 2019. - https://doi.org/10.1007/978-3-531-94218-6_5", + "Dellwing; Prus: Einfu\u0308hrung in die interaktionistische Ethnografie. Springer, 2012, S. 163-171. - https://doi.org/10.1007/978-3-531-94265-0_5" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Notizen, die von Forschenden im Laufe der Feldforschung bzw. Vermessung aufgezeichnet werden" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Feldforschung" + }, + { + "authorized_access_point": "Qualitative Sozialforschung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1335736832", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1335736832", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1335736832", + "source": "GND" + } + ], + "variant_access_point": [ + "Feldnotizen", + "Feldbuch", + "Beobachtungsprotokoll" + ], + "authorized_access_point": "Feldnotiz" + }, + { + "md5": "fdf662f7df7b3e3b69e2a829916adca4", + "pid": "133575086X", + "note": [ + { + "label": [ + "milita\u0308rischer Konflikt zwischen England und Frankreich, der hauptsa\u0308chlich in der Gascogne sowie in Flandern ausgetragen wurde." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/133575086X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)133575086X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)133575086X", + "source": "GND" + } + ], + "variant_access_point": [ + "Englisch-franzo\u0308sischer Krieg (1294-1303)", + "Guerre de Guyenne", + "Gascon war" + ], + "authorized_access_point": "Franzo\u0308sisch-englischer Krieg (1294-1303)" + }, + { + "md5": "c2dc155b7d45acf328781d68ff7dbe1b", + "pid": "1335752897", + "note": [ + { + "label": [ + "Homepage Bielefeld - https://historischer-rueckklick-bielefeld.com/2019/07/01/01072019/" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Jubila\u0308um" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1335752897", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1335752897", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1335752897", + "source": "GND" + } + ], + "variant_access_point": [ + "1000 Jahre Schildesche", + "Ortsjubila\u0308um von Schildesche 1939", + "Tausendjahrfeier von Schildesche 1939", + "Bielefeld-Schildesche (1939)", + "Bielefeld-Schildesche", + "Schildesche (1939)" + ], + "authorized_access_point": "Tausendjahrfeier Schildesche" + }, + { + "md5": "7bf26df2cbd4cdf74f1041fb4a150c21", + "pid": "1335762779", + "note": [ + { + "label": [ + "Internet - https://www.ipm.fraunhofer.de/de/gf/energiewandler-thermische/komp/kalorische-systeme/elastokalorische-systeme.html" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ka\u0308ltetechnik" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1335762779", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1335762779", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1335762779", + "source": "GND" + } + ], + "variant_access_point": [ + "Elastokalorischer Effekt" + ], + "authorized_access_point": "Elastokalorisches System" + }, + { + "md5": "908641b0d0bad0332825e847af85670a", + "pid": "1335777539", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Step-Aerobic&oldid=244133339" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Aerobes Gruppenfitnesstraining nach Musik, das mit einem ho\u0308henverstellbaren Stepbrett durchgefu\u0308hrt wird" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1335777539", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1335777539", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1335777539", + "source": "GND" + } + ], + "variant_access_point": [ + "Step Aerobic", + "Step-Training" + ], + "authorized_access_point": "Step-Aerobic" + }, + { + "md5": "aa93839e828989f94bfd3a5b095999f4", + "pid": "133582569X", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Neotantra&oldid=245226944" + ], + "noteType": "dataSource" + }, + { + "label": [ + "in den 70en Jahren, im Westen entstandene Lehre und Lebenspraxis, in der die sexuellen Aspekte des Tantra im Vordergrund stehen." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Tantrismus" + }, + { + "authorized_access_point": "Esoterik" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/133582569X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)133582569X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)133582569X", + "source": "GND" + } + ], + "variant_access_point": [ + "Navatantra" + ], + "authorized_access_point": "Neotantra" + }, + { + "md5": "0b2b1afd243d6c536bfc444d2403ee47", + "pid": "1335881247", + "note": [ + { + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?oldid=1219699028" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Interdisziplina\u0308re akademische Disziplin, die sich mit dem Studium der Chicano-Kultur befasst" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kulturraumforschung" + } + ], + "related": [ + { + "authorized_access_point": "Chicano Movement" + }, + { + "authorized_access_point": "Chicanos" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1335881247", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1335881247", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1335881247", + "source": "GND" + } + ], + "variant_access_point": [ + "Chicano/a studies", + "Chicana studies", + "Xicano studies", + "Chicana and Chicano Studies", + "Mexican American studies" + ], + "authorized_access_point": "Chicano Studies" + }, + { + "md5": "fb5db925c0a949ce4acda99b9bae3045", + "pid": "1335882758", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Mundart Mittelitalienisch (Latium)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1335882758", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1335882758", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1335882758", + "source": "GND" + } + ], + "authorized_access_point": "Mundart Mittelitalienisch, Latium (Anagni)" + }, + { + "md5": "df8cd9cc4a38986bb46e1d87de3ffd5f", + "pid": "1335900330", + "note": [ + { + "label": [ + "670 Wikipedia - https://de.wikipedia.org/w/index.php?title=Hopak&oldid=243940069" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Laut Wikipedia (eng.) sind Tropak und Hopak verwandt (\"The tropak shares many musical and choreographic characteristics with the better known hopak.\"). Daher die Quasisynonymie." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Volkstanz" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1335900330", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1335900330", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1335900330", + "source": "GND" + } + ], + "variant_access_point": [ + "Gopak", + "Trepak", + "Tropak" + ], + "authorized_access_point": "Hopak" + }, + { + "md5": "baf115d2abda53f6c4adb618600ecd61", + "pid": "1335903623", + "note": [ + { + "label": [ + "670 Wikipedia - https://de.wikipedia.org/w/index.php?title=Halling&oldid=236383404" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Volkstanz" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1335903623", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1335903623", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1335903623", + "source": "GND" + } + ], + "variant_access_point": [ + "Hallingdans", + "Lausdans", + "Hallingdansen" + ], + "authorized_access_point": "Halling" + }, + { + "md5": "65d62e9d0ae355e4e8a6397669999fc8", + "pid": "1335904158", + "note": [ + { + "label": [ + "670 Wikipedia - https://de.wikipedia.org/w/index.php?title=Piva_(Tanz)&oldid=243663985" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tanz" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1335904158", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1335904158", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1335904158", + "source": "GND" + } + ], + "authorized_access_point": "Piva (Tanz)" + }, + { + "md5": "bf45f05aa07132f0a9166cd2338787a5", + "pid": "133595368X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Jubila\u0308um" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/133595368X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)133595368X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)133595368X", + "source": "GND" + } + ], + "variant_access_point": [ + "Breckerfeld - 600 Jahre Stadt", + "Jubila\u0308umsjahr 1996 (Breckerfeld)", + "Breckerfeld (1996)" + ], + "authorized_access_point": "Breckerfeld - 600 Jahre Stadtrechte" + }, + { + "md5": "159fc4f7283c013894f95a6376b15fd8", + "pid": "1335982361", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Math-Rock&oldid=238152802" + ], + "noteType": "dataSource" + }, + { + "label": [ + "In den spa\u0308ten 80er Jahren entstandene Stilrichtung, die sich durch komplexe, atypische rhythmische Strukturen, abgehackte Melodien, Riffdominanz und dissonante Akkorde auszeichnet." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Rockmusik" + } + ], + "related": [ + { + "authorized_access_point": "Progressive Rock" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1335982361", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1335982361", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1335982361", + "source": "GND" + } + ], + "variant_access_point": [ + "Math-Rock" + ], + "authorized_access_point": "Math Rock" + }, + { + "md5": "ad4f88c20af33934a683afdb7c26b02e", + "pid": "1336015497", + "note": [ + { + "label": [ + "Internet - https://www.darpa.mil/program/mechanically-interlocked-materials" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Funktionswerkstoff" + }, + { + "authorized_access_point": "Metallorganisches Netzwerk" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1336015497", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1336015497", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1336015497", + "source": "GND" + } + ], + "variant_access_point": [ + "MIMs", + "Mechanically Interlocked Materials" + ], + "authorized_access_point": "Mechanisch verzahnter Werkstoff" + }, + { + "md5": "24ff59706c18cb3a33c1332ce9a4a972", + "pid": "1336019883", + "note": [ + { + "label": [ + "NCBI-Taxonomy - https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=1542538", + "Wikipedia - https://de.wikipedia.org/w/index.php?title=St%C3%A4ngel-Blattschneiderbiene&oldid=224648687" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Art aus der Familie der Bauchsammlerbienen, Gattung: Megachile" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bauchsammler (Megachilidae)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1336019883", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1336019883", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1336019883", + "source": "GND" + } + ], + "variant_access_point": [ + "Sta\u0308ngel-Blattschneiderbiene" + ], + "authorized_access_point": "Megachile genalis" + }, + { + "md5": "80bcc4bd4946cbf0f21fdd96646b36a8", + "pid": "1336026758", + "note": [ + { + "label": [ + "NCBI-Taxonomy - https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=1553505" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Art aus der Familie der Glanzka\u0308fer" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Glanzka\u0308fer" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1336026758", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1336026758", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1336026758", + "source": "GND" + } + ], + "authorized_access_point": "Ipidia binotata" + }, + { + "md5": "7beb704ed01d1abf6abd08b49710137b", + "pid": "1336035544", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1336035544", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1336035544", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1336035544", + "source": "GND" + } + ], + "authorized_access_point": "Infanterie (Motiv)" + }, + { + "md5": "1c3f8a150a56d2e5ed42cab1ff92b4fa", + "pid": "1336037571", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Zentralkhoisan-Sprachen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1336037571", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1336037571", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1336037571", + "source": "GND" + } + ], + "variant_access_point": [ + "Cua (Sprache)", + "Tyhua", + "Tyua", + "Kuasi" + ], + "authorized_access_point": "Kua" + }, + { + "md5": "09837256b15dd398ccdbf177b21de808", + "pid": "133603906X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/133603906X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)133603906X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)133603906X", + "source": "GND" + } + ], + "authorized_access_point": "Schlachtkreuzer (Motiv)" + }, + { + "md5": "b7769212513aecba1a2e66f8809b4e16", + "pid": "1336043652", + "note": [ + { + "label": [ + "Entstehungszeit 1917" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1336043652", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1336043652", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1336043652", + "source": "GND" + } + ], + "variant_access_point": [ + "Windisch-Kursiv (Druckschrift)" + ], + "authorized_access_point": "Windisch Kursiv (Druckschrift)" + }, + { + "md5": "b373be2c7f3bcea1b93baed6d5459da3", + "pid": "1336125306", + "note": [ + { + "label": [ + "Scho\u0308neich, Svenja: 'On a Hot Day in the Field...' The Art of Writing Ethnographic Vignettes. In: Ethnoscripts 2021, 23 (1), S. 116-124 - http://nbn-resolving.de/urn:nbn:de:gbv:18-8-16664", + "Wikipedia - https://en.wikipedia.org/w/index.php?oldid=1231406965" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Vignetten sind erza\u0308hlerische Beschreibungen von Szenen, die analytischen Schlussfolgerungen dienen (Ethnologie) oder sind in psychol. u. soziol. Experimenten die Darstellung hypothetischer Situationen, auf die Versuchsteilnehmer*innen reagieren u. dabei ihre Wahrnehmungen, Werte, sozialen Normen oder Eindru\u0308cke von Ereignissen offenbaren" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Forschungsmethode" + } + ], + "related": [ + { + "authorized_access_point": "Faktorieller Survey" + }, + { + "authorized_access_point": "Feldnotiz" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1336125306", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1336125306", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1336125306", + "source": "GND" + } + ], + "variant_access_point": [ + "Fallvignette" + ], + "authorized_access_point": "Vignette (Sozialwissenschaften)" + }, + { + "md5": "d1ec6fc7f9ac4c91df56b9d6306abbb5", + "pid": "1336136634", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Epimelet&oldid=220490949" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Aufsichtsbeamter, der politische, wirtschaftliche und kultische Aufgaben wahrnimmt" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Beamter" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1336136634", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1336136634", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1336136634", + "source": "GND" + } + ], + "authorized_access_point": "Epimelet" + }, + { + "md5": "498f401797acceea8f7dd7dd874360ab", + "pid": "1336140607", + "note": [ + { + "label": [ + "Entstehungszeit 1903" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1336140607", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1336140607", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1336140607", + "source": "GND" + } + ], + "authorized_access_point": "Offenbacher Schwabacher" + }, + { + "md5": "805d6323eb294a20513d16aa7eb241b7", + "pid": "1336144033", + "note": [ + { + "label": [ + "Encyclopedia of Math - https://encyclopediaofmath.org/index.php?title=Poincare\u0301-Hopf_theorem&oldid=32943" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Wichtiger Satz der Differentialtopologie. Bekannter Spezialfall ist der Satz vom Igel." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Differentialtopologie" + }, + { + "authorized_access_point": "Indexformel" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1336144033", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1336144033", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1336144033", + "source": "GND" + } + ], + "variant_access_point": [ + "Poincare\u0301-Hopf-Indexformel", + "Poincare\u0301-Hopf-Indextheorem", + "Hopf-Indextheorem", + "Poincare\u0301-Hopf Theorem" + ], + "authorized_access_point": "Satz von Poincare\u0301-Hopf" + }, + { + "md5": "4f75abf15790f1d5dd6b72e4260ea88e", + "pid": "1336166509", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1336166509", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1336166509", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1336166509", + "source": "GND" + } + ], + "authorized_access_point": "Stadtgeschichtsschreibung (Motiv)" + }, + { + "md5": "0108bc41f40eb2e5e223b54948d107ac", + "pid": "1336168528", + "note": [ + { + "label": [ + "Ho\u0308henverstellbares Trainingsgera\u0308t, z.B. fu\u0308r Step Aerobic" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Trainingsgera\u0308t" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1336168528", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1336168528", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1336168528", + "source": "GND" + } + ], + "variant_access_point": [ + "Stepbank", + "Step-Bench", + "Stepperbrett", + "Steppbrett", + "Trittgera\u0308t", + "Step (Trainingsgera\u0308t)", + "Stepper (Aerobic)" + ], + "authorized_access_point": "Stepbrett" + }, + { + "md5": "7acd6ac8e8cffa431fc16fc0ba7cd3c2", + "pid": "1336223200", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Fashwave&oldid=244165778" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Subkultur" + } + ], + "related": [ + { + "authorized_access_point": "Faschismus" + }, + { + "authorized_access_point": "Rechtsradikalismus" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1336223200", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1336223200", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1336223200", + "source": "GND" + } + ], + "authorized_access_point": "Fashwave" + }, + { + "md5": "cc432fe2ec4678c820e1bf7a90f248ce", + "pid": "1336230754", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Italienfeldzug_(Zweiter_Weltkrieg)&oldid=246969151" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Feldzug der Alliierten gegen die Achsenma\u0308chte in Italien von 1943-1945" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Feldzug" + } + ], + "related": [ + { + "authorized_access_point": "Zweiter Weltkrieg" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1336230754", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1336230754", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1336230754", + "source": "GND" + } + ], + "authorized_access_point": "Italienfeldzug (1943-1945)" + }, + { + "md5": "f3e7a9f43a7cad3d7b4eb9a7c6ed27f1", + "pid": "1336235047", + "note": [ + { + "label": [ + "Art aus der Familie der Dickblattgewa\u0308chse" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Dickblattgewa\u0308chse" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1336235047", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1336235047", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1336235047", + "source": "GND" + } + ], + "variant_access_point": [ + "Moos-Dickblatt", + "Crassula tillaea" + ], + "authorized_access_point": "Moosblu\u0308mchen" + }, + { + "md5": "eda774430e605c71175fad3c60a389b4", + "pid": "1336248335", + "note": [ + { + "label": [ + "Entstehungszeit 1935" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1336248335", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1336248335", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1336248335", + "source": "GND" + } + ], + "variant_access_point": [ + "Koch Kurrent" + ], + "authorized_access_point": "Koch-Kurrent" + }, + { + "md5": "2a08b0b8ec95cccd1d11a2991ad77c7f", + "pid": "1336255609", + "note": [ + { + "label": [ + "Entstehungszeit ca. 1908" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1336255609", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1336255609", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1336255609", + "source": "GND" + } + ], + "authorized_access_point": "Kegelschrift (Druckschrift)" + }, + { + "md5": "4cc1b66d294a71d2f0f922461dba5e51", + "pid": "1336255692", + "note": [ + { + "label": [ + "Entstehungszeit ca. 1908" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1336255692", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1336255692", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1336255692", + "source": "GND" + } + ], + "authorized_access_point": "Keilschrift (Druckschrift)" + }, + { + "md5": "674dae7ca02f210f5b0e8eae472e1334", + "pid": "1336255897", + "note": [ + { + "label": [ + "Entstehungszeit 1908; Varianten: Lichte Tam-Tam und Volle Tam-Tam" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1336255897", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1336255897", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1336255897", + "source": "GND" + } + ], + "authorized_access_point": "Tam-Tam (Druckschrift)" + }, + { + "md5": "dafcd3525aac27e89049ef225799da75", + "pid": "1336259086", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Blockierung_(Manuelle_Medizin)&oldid=244981953" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1336259086", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1336259086", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1336259086", + "source": "GND" + } + ], + "variant_access_point": [ + "Reversible segmentale Dysfunktion" + ], + "authorized_access_point": "Blockierung (Manuelle Medizin)" + }, + { + "md5": "80f71672f6a76926016e6929e542c93c", + "pid": "1336261625", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Angle-Klassifizierung" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336262486", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D008313", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D008313" + } + ], + "authorized_access_point": "Malocclusion, Angle Class III" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1336261625", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1336261625", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1336261625", + "source": "GND" + } + ], + "authorized_access_point": "Angle-Klasse III" + }, + { + "md5": "ed040c5c0331cdde09da4fc81133d643", + "pid": "1336381698", + "note": [ + { + "label": [ + "homepage - https://www.odins-haddeby.de" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gaststa\u0308tte" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1336381698", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1336381698", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1336381698", + "source": "GND" + } + ], + "authorized_access_point": "Odins Haithabu" + }, + { + "md5": "f8f32e5318860b954959948922f7bc21", + "pid": "1336401087", + "note": [ + { + "label": [ + "Medaille fu\u0308r besondere Verdienste um die Med Uni Graz" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Preis (Auszeichnung)" + } + ], + "related": [ + { + "authorized_access_point": "Medizin" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1336401087", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1336401087", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1336401087", + "source": "GND" + } + ], + "variant_access_point": [ + "Auenbrugger-Ehrenmedaille" + ], + "authorized_access_point": "Auenbrugger Ehrenmedaille" + }, + { + "md5": "a290c45a403aad76fd357a3eebd5a3e0", + "pid": "133646609X", + "note": [ + { + "label": [ + "Homepage Bochum - https://www.bochum.de/Kulturbuero/Dienstleistungen-und-Infos/Staedtische-Kulturpreise", + "Kulturpreise.de - https://www.kulturpreise.de/web/preise_info.php?preisd_id=1765" + ], + "noteType": "dataSource" + }, + { + "label": [ + "A\u0308ltester Bochumer Kulturpreis, bis 1993 zuna\u0308chst ja\u0308hrlich, danach alle 2 Jahre ausgelobt. Zweck des Preises ist die \"Fo\u0308rderung der Auseinandersetzung mit den vielfa\u0308ltigen kreativen Mo\u0308glichkeiten des Figurentheaters\"." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Theaterpreis" + }, + { + "authorized_access_point": "Kulturpreis" + } + ], + "related": [ + { + "authorized_access_point": "Figurentheater" + }, + { + "authorized_access_point": "Laienspiel" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/133646609X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)133646609X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)133646609X", + "source": "GND" + } + ], + "variant_access_point": [ + "Fritz-Wortelmann-Preis der Stadt Bochum", + "Fritz-Wortelmann-Preis der Stadt Bochum fu\u0308r das Amateurfigurentheater", + "Wettbewerb um den Fritz-Wortelmann-Preis" + ], + "authorized_access_point": "Fritz-Wortelmann-Preis" + }, + { + "md5": "0e9752b278a13ba4e75952b3b4dd89b9", + "pid": "1336532009", + "note": [ + { + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?oldid=1207537941" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Interdisziplina\u0308re akademische Disziplin, die sich mit dem Studium der pazifischen Region (Ozeanien) befasst" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kulturraumforschung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1336532009", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1336532009", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1336532009", + "source": "GND" + } + ], + "variant_access_point": [ + "Pazifikstudien", + "Pacific Studies" + ], + "authorized_access_point": "Pazifik-Studien" + }, + { + "md5": "19b0727d4ead2f43660ed696b0272f83", + "pid": "133658873X", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Japanische_Invasion_der_Malaiischen_Halbinsel" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Invasion" + } + ], + "related": [ + { + "authorized_access_point": "Zweiter Weltkrieg" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/133658873X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)133658873X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)133658873X", + "source": "GND" + } + ], + "variant_access_point": [ + "Invasion in die Federated Malay States", + "Japanische Invasion in die Verbu\u0308ndeten Malaienstaaten", + "Operation E" + ], + "authorized_access_point": "Japanische Invasion der Malaiischen Halbinsel" + }, + { + "md5": "02d77d5aa8c43618e579e949c325c7b9", + "pid": "1336589876", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Schlacht_um_Singapur" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schlacht" + } + ], + "related": [ + { + "authorized_access_point": "Pazifikkrieg (1941-1945)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1336589876", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1336589876", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1336589876", + "source": "GND" + } + ], + "authorized_access_point": "Schlacht um Singapur" + }, + { + "md5": "f2c55be53db285570c8e24a2864103d7", + "pid": "1336591390", + "note": [ + { + "label": [ + "Chronik Borgentreich - https://chronik-borgentreich.jimdofree.com/1985-2005/", + "Homepage Borgentreich - https://www.borgentreich.de/media/custom/2564_1496_1.PDF?1556095273" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Jubila\u0308um" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1336591390", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1336591390", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1336591390", + "source": "GND" + } + ], + "variant_access_point": [ + "Borgentreich (2005)", + "725-Jahrfeier (Borgentreich)", + "725-Jahr-Feier (Borgentreich)", + "Siebenhundertfu\u0308nfundzwanzig-Jahrfeier (Borgentreich)" + ], + "authorized_access_point": "725-Jahr-Feier der Stadt Borgentreich" + }, + { + "md5": "3c2bbff6e8d4d70922b5710845cd3300", + "pid": "1336749369", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Kalabresisch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1336749369", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1336749369", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1336749369", + "source": "GND" + } + ], + "authorized_access_point": "Mundart Kalabresisch (Siderno)" + }, + { + "md5": "4d33039e90fc63053496d5dde6390010", + "pid": "1336761083", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Asuka-Zeit&oldid=238607348" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Periode der japanischen Geschichte." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kofun" + }, + { + "authorized_access_point": "Nara-Zeit" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1336761083", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1336761083", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1336761083", + "source": "GND" + } + ], + "variant_access_point": [ + "Asuka jidai" + ], + "authorized_access_point": "Asuka-Zeit" + }, + { + "md5": "59b9440d4c429937bb1c8723bd9e96b8", + "pid": "1336763213", + "note": [ + { + "label": [ + "Internet - https://www.klingspor-museum.de/Schriftgiessereien.html" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Entstehungszeit 1948" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1336763213", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1336763213", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1336763213", + "source": "GND" + } + ], + "authorized_access_point": "Kumlien (Druckschrift)" + }, + { + "md5": "2e055af5066fbc9a3798a2896064bd56", + "pid": "1336765410", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Niederalemannisch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1336765410", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1336765410", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1336765410", + "source": "GND" + } + ], + "authorized_access_point": "Mundart Niederalemannisch (Widnau)" + }, + { + "md5": "08d71754b0ccd77b36530bfac5d9d0fd", + "pid": "1336835052", + "note": [ + { + "label": [ + "Homepage - https://www.raspberrypi.com/products/raspberry-pi-5/" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Einplatinen-Computer" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1336835052", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1336835052", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1336835052", + "source": "GND" + } + ], + "variant_access_point": [ + "Raspberry Pi5" + ], + "authorized_access_point": "Raspberry Pi 5" + }, + { + "md5": "14643d69bf75ab78c4569bbe134f0daf", + "pid": "133686463X", + "note": [ + { + "label": [ + "Encyclopedia of Math - https://encyclopediaofmath.org/index.php?title=Banach_limit&oldid=39373" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Verallgeminerung des Grenzwertbegriffs in der Funktionalanalysis" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Funktional" + } + ], + "related": [ + { + "authorized_access_point": "Grenzwert (Mathematik)" + }, + { + "authorized_access_point": "Hahn-Banach-Fortsetzungssatz" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/133686463X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)133686463X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)133686463X", + "source": "GND" + } + ], + "variant_access_point": [ + "Banach Limit" + ], + "authorized_access_point": "Banachlimes" + }, + { + "md5": "90c4c420d7ef2e208a77d1d3056ebe00", + "pid": "1336874414", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Gutbrod_Atlas&oldid=227463637" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Personenkraftwagen" + }, + { + "authorized_access_point": "Nutzfahrzeug" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1336874414", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1336874414", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1336874414", + "source": "GND" + } + ], + "authorized_access_point": "Gutbrod Atlas" + }, + { + "md5": "5c8c8e34a306853b8845caf967989401", + "pid": "1336874678", + "note": [ + { + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?title=Tchaman&oldid=1116117651" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Urspru\u0308ngliche Namen waren Tchaman, Kyama, Gyama, Chaman oder Achan, Atchan; die Ethnie macht etwa 0,7 % der Bevo\u0308lkerung der Elfenbeinku\u0308ste aus." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Akan" + }, + { + "authorized_access_point": "Kwa-Sprachen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1336874678", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1336874678", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1336874678", + "source": "GND" + } + ], + "variant_access_point": [ + "Atcha", + "Cama", + "Caman", + "Chaman", + "Gyaman", + "Kyama", + "Kyaman", + "Tchaman", + "Tsama", + "Tshaman", + "Tyama" + ], + "authorized_access_point": "Ebrie\u0301" + }, + { + "md5": "7a5271908414ea97be0cc494af0ac708", + "pid": "1336876913", + "note": [ + { + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?title=Hunde_people&oldid=1230006150" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Hunde-Sprache" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1336876913", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1336876913", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1336876913", + "source": "GND" + } + ], + "variant_access_point": [ + "Bahunde", + "Kihunde", + "Kobi", + "Rukobi" + ], + "authorized_access_point": "Hunde (Volk)" + }, + { + "md5": "6b1bfcd00ac32e6719e4d494c4d7892f", + "pid": "1336884762", + "note": [ + { + "label": [ + "Eine Menge hei\u00dft messbar, wenn sie Element der Sigma-Algebra eines Messraums ist." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ma\u00dftheorie" + }, + { + "authorized_access_point": "Menge" + } + ], + "related": [ + { + "authorized_access_point": "Messraum" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1336884762", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1336884762", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1336884762", + "source": "GND" + } + ], + "variant_access_point": [ + "Measurable Set" + ], + "authorized_access_point": "Messbare Menge" + }, + { + "md5": "64371a16d558974f7b9ab87d5733234f", + "pid": "1336884932", + "note": [ + { + "label": [ + "Grundbegriff der Mengenlehre" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mengenlehre" + } + ], + "related": [ + { + "authorized_access_point": "Summe" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/1336884932", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)1336884932", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)1336884932", + "source": "GND" + } + ], + "variant_access_point": [ + "Vereinigung (Mengenlehre)", + "Union" + ], + "authorized_access_point": "Vereinigungsmenge" + }, + { + "md5": "cde1c9cbe572c37cc0443e7991938361", + "pid": "199099952", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Westfa\u0308lisch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7772912-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)199099952", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7772912-2", + "source": "GND" + } + ], + "authorized_access_point": "Mundart Westfa\u0308lisch (Lemgo)" + }, + { + "md5": "85bcb92c9b03e4d1c5ad5c60ce781e4e", + "pid": "199129215", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Versicherungsteuer" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7776182-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)199129215", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7776182-0", + "source": "GND" + } + ], + "authorized_access_point": "Feuerschutzsteuer" + }, + { + "md5": "7ee514828f0d8f00cbcc884f75843aff", + "pid": "19915046X", + "note": [ + { + "label": [ + "Internet - http://www.miz.org/themenportale/musikfoerderung" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kulturfo\u0308rderung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7778528-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)19915046X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7778528-9", + "source": "GND" + } + ], + "authorized_access_point": "Musikfo\u0308rderung" + }, + { + "md5": "b3f258847dc3f7b2d6951080959dbd3b", + "pid": "199170711", + "note": [ + { + "label": [ + "Bundesverband der Deutschen Spirituosen-Industrie - https://www.spirituosen-verband.de/genuss/geschichte/", + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Brennen_(Spirituosen)&oldid=198247823" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Getra\u0308nkeherstellung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7780760-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)199170711", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7780760-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Spirituosenproduktion", + "Brennen (Spirituosen)", + "Spirituosen" + ], + "authorized_access_point": "Spirituosenherstellung" + }, + { + "md5": "7e0b01a5ac1414f8446822680db89084", + "pid": "19917606X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Handel" + }, + { + "authorized_access_point": "Seilerware" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7781349-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)19917606X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7781349-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Seilerware", + "Seilhandel", + "Seil" + ], + "authorized_access_point": "Seilerwarenhandel" + }, + { + "md5": "6389992bf281519385a9fceec9497aa8", + "pid": "199193835", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Aak&oldid=186723436#Flussfrachtschiffe_im_Gebiet_des_Niederrheins", + "Dorsten Lexikon - http://www.dorsten-lexikon.de/dorstener-aak/" + ], + "noteType": "dataSource" + }, + { + "label": [ + "In Dorsten gebauter, flacher Flussfrachtschiffstyp; wurde vorwiegend auf Lippe, Ruhr und Niederrhein sowie auf den seela\u0308ndischen Wasserstra\u00dfen (wie Maas, Schelde und Waal) eingesetzt" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Aak" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7783302-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)199193835", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7783302-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Dorsten'sche Aak" + ], + "authorized_access_point": "Dorstener Aak" + }, + { + "md5": "0eeb357b51a39869b673d23dffc5772a", + "pid": "199249903", + "note": [ + { + "label": [ + "Verbreitung des Namens im 13.-16. Jh. in der Grafschaft Sayn-Wittgenstein" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Familienname" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7789724-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)199249903", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7789724-9", + "source": "GND" + } + ], + "authorized_access_point": "Riedesel (Familienname)" + }, + { + "md5": "24a2e3920dd5af977e1197644d5e9842", + "pid": "199254435", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Seidenbienen (Familie)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7790265-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)199254435", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7790265-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Colletes hederae" + ], + "authorized_access_point": "Efeu-Seidenbiene" + }, + { + "md5": "5234baafad867f0dd5166525e55b6306", + "pid": "199279101", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Ratio_legis&oldid=168865992" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Sinn und Zweck einer Rechtsnorm, bzw. das Ziel, zu dessen Schutz ein Rechtssatz aufgestellt wurde." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ratio" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7793148-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)199279101", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7793148-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Gesetzeszweck", + "Normzweck", + "Ratio des Gesetzes", + "Ratio einer Norm", + "Rechtsnormzweck", + "Schutzzweck", + "Schutzzweck der Norm" + ], + "authorized_access_point": "Ratio legis" + }, + { + "md5": "91336f81c96e538e754ed47e7836163b", + "pid": "199281823", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7793453-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)199281823", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7793453-2", + "source": "GND" + } + ], + "authorized_access_point": "Rosenkranzgebet (Motiv)" + }, + { + "md5": "d06fd164ad3c361e125a7db9d930fd8b", + "pid": "199289190", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7794288-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)199289190", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7794288-7", + "source": "GND" + } + ], + "authorized_access_point": "Wunderheilung (Motiv)" + }, + { + "md5": "87b7b59954ce8ecad562639719481956", + "pid": "940035731", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Mitla\u0308uferin" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)971410755", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10053774", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10053774" + } + ], + "authorized_access_point": "Mitla\u0308ufer" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4329122-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)940035731", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4329122-3", + "source": "GND" + } + ], + "authorized_access_point": "Mitla\u0308ufer" + }, + { + "md5": "16ea406b353ef61956172510b58dd191", + "pid": "940049570", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bekanntheit" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4329198-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)940049570", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4329198-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Marke", + "Bekannte Marke", + "Beru\u0308hmte Marke", + "Starke Marke" + ], + "authorized_access_point": "Markenbekanntheit" + }, + { + "md5": "365d774d2a78b41d4bc5592b37d2347e", + "pid": "940085798", + "note": [ + { + "label": [ + "Benutzt fu\u0308r die bestimmte physikalische Theorie, fu\u0308r allgemein physikalische oder philosophische Sachverhalte verwende Paralleluniversum." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Quantentheorie" + } + ], + "related": [ + { + "authorized_access_point": "Paralleluniversum" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134836198", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16665034", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16665034s" + } + ], + "authorized_access_point": "Univers paralle\u0300les" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4329474-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)940085798", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4329474-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Viel-Welten-Deutung", + "Viel-Welten-Theorie", + "Viel-Welten-Interpretation", + "Parallele-Welten-Deutung", + "EWG-Interpretation", + "Many-worlds-Interpretation", + "Vielweltendeutung" + ], + "authorized_access_point": "Viele-Welten-Deutung" + }, + { + "md5": "dd9273ed5f8120a169ab27429d1a6264", + "pid": "940111187", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333373538", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh95004913", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh95004913" + } + ], + "authorized_access_point": "Sillaginidae" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333373538", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17101899", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17101899n" + } + ], + "authorized_access_point": "Sillaginidae" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4329678-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)940111187", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4329678-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Sillaginidae" + ], + "authorized_access_point": "Wei\u00dflinge (Fische)" + }, + { + "md5": "af48f28532f1cdf195a0a247b96c9861", + "pid": "940125897", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Polnisch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4329873-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)940125897", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4329873-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Mundart Polnisch (Kleinpolen)" + ], + "authorized_access_point": "Kleinpolnisch" + }, + { + "md5": "aaa4bc49e0e1fe00b268c55fa14120b4", + "pid": "94052113X", + "note": [ + { + "label": [ + "Notgeld in GB u. seinen Kolonien sowie in den USA im 17. u. 18. Jh.", + "Fu\u0308r die Kryptowa\u0308hrung verwende SW Virtuelle Wa\u0308hrung" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Notgeld" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4332618-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)94052113X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4332618-3", + "source": "GND" + } + ], + "authorized_access_point": "Token (Numismatik)" + }, + { + "md5": "00f5f7db3d479c3cb4b94b0779771401", + "pid": "940535912", + "note": [ + { + "label": [ + "Fu\u0308r Kulturen von Organismen im Reagenzglas, Bioreaktor usw., fu\u0308r Grundlagenforschung u. Anwendung; verknu\u0308pfe mit Organismus bzw. Teilen bzw. verwende engeres SW, z.B. Zellkultur, Organkultur" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "In vitro" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134222505", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh00005933", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00005933" + } + ], + "authorized_access_point": "Micropropagation" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134222505", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12231761", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12231761s" + } + ], + "authorized_access_point": "Multiplication in vitro" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4332883-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)940535912", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4332883-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Kultur (Biologie)", + "Mikroorganismus (Biologie)", + "Laborkultur", + "Kultivierung" + ], + "authorized_access_point": "In-vitro-Kultur" + }, + { + "md5": "c3dbdc8d3b69d55b7beddd89ae3653e3", + "pid": "940540959", + "note": [ + { + "label": [ + "Gattung der Kardinalbarsche" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333374003", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85006019", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85006019" + } + ], + "authorized_access_point": "Apogon" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333374003", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17797552", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17797552h" + } + ], + "authorized_access_point": "Apogon (genre)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4332961-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)940540959", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4332961-5", + "source": "GND" + } + ], + "authorized_access_point": "Apogon" + }, + { + "md5": "539e2498d3b8dbb5e19167a05479360f", + "pid": "940594919", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4333440-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)940594919", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4333440-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Leinen" + ], + "authorized_access_point": "Leinenproduktion" + }, + { + "md5": "0b5242f685f36f9dc2df1b0ddee66bef", + "pid": "940604833", + "note": [ + { + "label": [ + "Verknu\u0308pfung mit SW Fernsehsendung bzw. Ho\u0308rfunksendung und ggf. engerem Schlagwort (z.B. Lokaler Ho\u0308rfunk); Verknu\u0308pfung mit Rundfunksendung gilt als pleonastisch." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Rundfunksendung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331210461", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2007003217", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2007003217" + } + ], + "authorized_access_point": "Cultural television programs" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331210461", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12066447", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12066447w" + } + ], + "authorized_access_point": "E\u0301missions te\u0301le\u0301vise\u0301es culturelles" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4333556-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)940604833", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4333556-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Kultur", + "Kulturprogramm", + "Kulturmagazin (Rundfunksendung)" + ], + "authorized_access_point": "Kultursendung" + }, + { + "md5": "6503b7e5b6fcf527b6844731442df677", + "pid": "94063855X", + "note": [ + { + "label": [ + "Verknu\u0308pfe mit Ho\u0308rfunk bzw. Fernsehen oder engerem Schlagwort (z.B. Lokaler Ho\u0308rfunk), Verknu\u0308pfung mit Rundfunk gilt als pleonastisch." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Rundfunksendung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134144377", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2001000815", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2001000815" + } + ], + "authorized_access_point": "Educational television programs" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134212968", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2007025636", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2007025636" + } + ], + "authorized_access_point": "Educational radio programs" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134212968", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12214963", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12214963b" + } + ], + "authorized_access_point": "Radio - E\u0301missions culturelles" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4333982-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)94063855X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4333982-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Bildungsprogramm", + "Bildungssendung", + "Bildungsfunk" + ], + "authorized_access_point": "Bildungssendung" + }, + { + "md5": "e61f3354abb3682f7b44411934ccbd1d", + "pid": "94074449X", + "note": [ + { + "label": [ + "Benutzt, soweit au\u00dferhalb Japans lebend, sonst verknu\u0308pfe Japan ; Frau" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausla\u0308nderin" + } + ], + "related": [ + { + "authorized_access_point": "Japaner" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134533144", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12426891", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12426891b" + } + ], + "authorized_access_point": "Japonaises" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1009504312", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "26360-5", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/26360-5" + } + ], + "authorized_access_point": "Japaner" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4335258-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)94074449X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4335258-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Japanische Frau" + ], + "authorized_access_point": "Japanerin" + }, + { + "md5": "2bbf1444bebc1465b70079960e098472", + "pid": "940755459", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Krieg" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134297904", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85116061", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85116061" + } + ], + "authorized_access_point": "Russo-Swedish War, 1788-1790" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134297904", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12369215", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12369215z" + } + ], + "authorized_access_point": "Guerre russo-sue\u0301doise (1788-1790)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4335478-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)940755459", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4335478-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Russisch-Schwedischer Krieg (1788-1790)" + ], + "authorized_access_point": "Schwedisch-Russischer Krieg (1788-1790)" + }, + { + "md5": "b69bb4442408b706d03a2320f398704a", + "pid": "940758776", + "note": [ + { + "label": [ + "Familie der Lachsartigen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333487878", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85128045", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85128045" + } + ], + "authorized_access_point": "Sternoptychidae" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333487878", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17760838", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17760838g" + } + ], + "authorized_access_point": "Sternoptychide\u0301s" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4335526-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)940758776", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4335526-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Beilfische", + "Sternoptychidae" + ], + "authorized_access_point": "Tiefseebeilfische" + }, + { + "md5": "bab5283a46ec3d9479dd13ee84d994bf", + "pid": "940762048", + "note": [ + { + "label": [ + "Art der Kapuzinerartigen Affen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333264259", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh86000946", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh86000946" + } + ], + "authorized_access_point": "Cebus olivaceus" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4335637-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)940762048", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4335637-0", + "source": "GND" + } + ], + "authorized_access_point": "Cebus olivaceus" + }, + { + "md5": "76ef60c634f5c8ed58377dd97fa000d1", + "pid": "940788187", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Baukonstruktion" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4335910-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)940788187", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4335910-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Ausfu\u0308llung" + ], + "authorized_access_point": "Verfu\u0308llung" + }, + { + "md5": "50be3b13df83574969fd84a25db017a5", + "pid": "940807904", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Stevia" + } + ], + "related": [ + { + "authorized_access_point": "Steviosid" + }, + { + "authorized_access_point": "Stevia (Su\u0308\u00dfstoff)" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133878318", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85128079", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85128079" + } + ], + "authorized_access_point": "Stevia rebaudiana" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133878318", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13607123", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb136071237" + } + ], + "authorized_access_point": "Stevia rebaudiana" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134690886", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13607124", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13607124k" + } + ], + "authorized_access_point": "Cuisine (ste\u0301via)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254490841", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX4969935", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX4969935" + } + ], + "authorized_access_point": "Stevia rebaudiana" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)125626055X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "24805", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_24805" + } + ], + "authorized_access_point": "Stevia rebaudiana" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4336140-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)940807904", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4336140-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Su\u0308\u00dfkraut", + "Su\u0308\u00dfblatt", + "Honigkraut" + ], + "authorized_access_point": "Stevia rebaudiana" + }, + { + "md5": "5c1fcae3966d82e4ecc13cf61b3d8228", + "pid": "940842440", + "type": "bf:Topic", + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336027118", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D000095322", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000095322" + } + ], + "authorized_access_point": "Anthrones" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4336558-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)940842440", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4336558-9", + "source": "GND" + } + ], + "authorized_access_point": "Anthronderivate" + }, + { + "md5": "22f19712fdc00adb627b9160d0648a57", + "pid": "940910004", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134673965", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85035778", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85035778" + } + ], + "authorized_access_point": "Daphnia pulex" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4337469-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)940910004", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4337469-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Daphnia pulex", + "Gemeiner Wasserfloh" + ], + "authorized_access_point": "Wasserfloh" + }, + { + "md5": "6d66f56129bb359c91bf284828299644", + "pid": "940921588", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Butanole" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4337578-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)940921588", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4337578-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Butanol (2-)", + "2-Butanol", + "Butan-2-ol" + ], + "authorized_access_point": "Butylalkohol (sekunda\u0308r-)" + }, + { + "md5": "929704c916d9506b341d00aedcf64a82", + "pid": "941131572", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ordnung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4339733-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)941131572", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4339733-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Alphabetisierung (Ordnung)", + "Alphabetische Anordnung" + ], + "authorized_access_point": "Alphabetische Ordnung" + }, + { + "md5": "e08d224ec6f8b44b672e5bbeaef889b5", + "pid": "941158748", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gruppe (Mathematik)" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133359335X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85092216", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85092216" + } + ], + "authorized_access_point": "Non-Abelian groups" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4340007-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)941158748", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4340007-3", + "source": "GND" + } + ], + "authorized_access_point": "Nichtabelsche Gruppe" + }, + { + "md5": "f699861fad6a1659b304bb18bfa3ccac", + "pid": "941365050", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133860737", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85131354", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85131354" + } + ], + "authorized_access_point": "Swordfish" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133860737", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13511922", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13511922p" + } + ], + "authorized_access_point": "Espadon (poissons)" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256256439", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "7559", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_7559" + } + ], + "authorized_access_point": "swordfish" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4341960-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)941365050", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4341960-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Xiphias gladius" + ], + "authorized_access_point": "Schwertfisch" + }, + { + "md5": "f6de86e59145717d3aeec210ce39440e", + "pid": "941366138", + "note": [ + { + "label": [ + "Familie mariner Barschartiger; Tropische Speisefische" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333374453", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh94007272", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh94007272" + } + ], + "authorized_access_point": "Caesionidae" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333374453", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18140447", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb181404471" + } + ], + "authorized_access_point": "Caesionidae" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4341973-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)941366138", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4341973-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Fusilier fish" + ], + "authorized_access_point": "Caesionidae" + }, + { + "md5": "498793c1f7874fec96ecec6f046aa260", + "pid": "941482774", + "note": [ + { + "label": [ + "Als Aussetzung bezeichnet man Vorga\u0308nge, bei denen ein Mensch in eine hilflose Lage versetzt oder trotz bestehender Beistandspflicht in einer hilflosen Lage im Stich gelassen wird." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Strafrecht" + }, + { + "authorized_access_point": "Straftat" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134192274", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85046514", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85046514" + } + ], + "authorized_access_point": "Exposure (Criminal law)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134192274", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12154030", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12154030j" + } + ], + "authorized_access_point": "Abandon d'enfant" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1312659106", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "12445", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/12445" + } + ], + "authorized_access_point": "Abbandono" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254408452", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX549929", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX549929" + } + ], + "authorized_access_point": "Abandono de menores" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4343351-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)941482774", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4343351-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Hilflose Person", + "Kindesweglegung" + ], + "authorized_access_point": "Aussetzung (Strafrecht)" + }, + { + "md5": "34019ee3b8b429784d9868b0302f4a57", + "pid": "941495256", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kalibrieren (Messtechnik)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4343426-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)941495256", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4343426-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Autocalibration" + ], + "authorized_access_point": "Automatisches Kalibrieren" + }, + { + "md5": "85b658a7865efadc03ef6278d5d1707d", + "pid": "941532704", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Versagen" + } + ], + "related": [ + { + "authorized_access_point": "Bruch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4343948-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)941532704", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4343948-2", + "source": "GND" + } + ], + "authorized_access_point": "Mechanisches Versagen" + }, + { + "md5": "7f1ceab2f81d931a1b8ade367bef6c39", + "pid": "941589021", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "La\u0308ngen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4344537-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)941589021", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4344537-8", + "source": "GND" + } + ], + "authorized_access_point": "Strecken" + }, + { + "md5": "9d6ad81bf4c4058b38c0135e55d4e443", + "pid": "941781437", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4346819-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)941781437", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4346819-6", + "source": "GND" + } + ], + "authorized_access_point": "Kalkutta (Motiv)" + }, + { + "md5": "2167a373ee8c5d6bcfc50f0f3ccfac0d", + "pid": "941869121", + "note": [ + { + "label": [ + "Als Homonymenzusatz bei Personenschlagwo\u0308rtern wird Krimineller verwendet" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Krimineller" + } + ], + "related": [ + { + "authorized_access_point": "Bandit" + }, + { + "authorized_access_point": "Weiblicher Outlaw" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134661266", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85096166", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85096166" + } + ], + "authorized_access_point": "Outlaws" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134661266", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13319110", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb133191102" + } + ], + "authorized_access_point": "Hors-la-loi" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4347962-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)941869121", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4347962-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Gesetzloser", + "Desperado" + ], + "authorized_access_point": "Outlaw" + }, + { + "md5": "ca3e801c5cd9426810edb80a5190b720", + "pid": "94203712X", + "note": [ + { + "label": [ + "Trennung eines Ionengemisches aufgrund unterschiedlicher Beweglichkeit der Ionen; kein chromatographisches oder massenspektrometrisches Verfahren (nicht: Ionenbeweglichkeits-Massenspektrometrie)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Spektroskopie" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134484240", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh89005249", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh89005249" + } + ], + "authorized_access_point": "Ion mobility spectroscopy" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134484240", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15007908", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15007908s" + } + ], + "authorized_access_point": "Spectroscopie de mobilite\u0301 ionique" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4349293-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)94203712X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4349293-9", + "source": "GND" + } + ], + "variant_access_point": [ + "IMS (Analytische Chemie)", + "Ion mobility spectrometry", + "Plasmachromatographie", + "Ionenbeweglichkeitsspektrometrie", + "Ionenmobilita\u0308tsspektrometrie", + "Ionen-Mobilita\u0308ts-Spektrometer", + "Ionenmobilita\u0308tsspektrometer" + ], + "authorized_access_point": "Ionenbeweglichkeitsspektroskopie" + }, + { + "md5": "dfc9134150a73066ba607cc47584a413", + "pid": "94206285X", + "note": [ + { + "label": [ + "Makroo\u0308konomisches Modell der OECD; dynamisches, allgemeines Multila\u0308nder-, Multisektoren-Gleichgewichtsmodell, das der Kostenermittlung fu\u0308r Ma\u00dfnahmen der Kohlendioxidemissionssenkung dient" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Makroo\u0308konomisches Modell" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4349431-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)94206285X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4349431-6", + "source": "GND" + } + ], + "variant_access_point": [ + "GEEM" + ], + "authorized_access_point": "General Equilibrium Environmental Model" + }, + { + "md5": "f7245c9ad104b60117993ca765175fab", + "pid": "942142845", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kontinentalverschiebung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133815243", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh89003758", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh89003758" + } + ], + "authorized_access_point": "Pangaea (Supercontinent)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133815243", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12500043", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12500043k" + } + ], + "authorized_access_point": "Pange\u0301e (ge\u0301ologie)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4350499-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)942142845", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4350499-1", + "source": "GND" + } + ], + "authorized_access_point": "Pangaea" + }, + { + "md5": "7dbb7e968a5526050a85080d2e577faf", + "pid": "942203283", + "note": [ + { + "label": [ + "Nach dem Zusammenschluss von Novell und WordPerfect wurde Office 4.0 umbenannt in GroupWise 4.1" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Office 4.0" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4351435-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)942203283", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4351435-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Novell GroupWise 4.1" + ], + "authorized_access_point": "GroupWise 4.1" + }, + { + "md5": "8e8766e2bf1f0007edc83bcc109992e1", + "pid": "942346300", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kalender" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134480040", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2016000550", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2016000550" + } + ], + "authorized_access_point": "Lunar calendars" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134480040", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF14642380", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb14642380c" + } + ], + "authorized_access_point": "Calendrier lunaire" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4352625-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)942346300", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4352625-1", + "source": "GND" + } + ], + "authorized_access_point": "Mondkalender" + }, + { + "md5": "5af942dd4f9a3d6efe30e4743860cbe4", + "pid": "942348036", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Drama" + }, + { + "authorized_access_point": "Erotische Literatur" + } + ], + "related": [ + { + "authorized_access_point": "Erotisches Theater" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331606454", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh98006158", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh98006158" + } + ], + "authorized_access_point": "Erotic drama" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4352648-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)942348036", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4352648-2", + "source": "GND" + } + ], + "authorized_access_point": "Erotisches Drama" + }, + { + "md5": "02d23d984175a3f776fbfa858425be4e", + "pid": "942370295", + "note": [ + { + "label": [ + "Tafelgeschirr mit einheitlichem Dekor" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Essgeschirr" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134514441", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15505355", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb155053551" + } + ], + "authorized_access_point": "Services de table" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4352883-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)942370295", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4352883-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Tafelservice" + ], + "authorized_access_point": "Service (Hausrat)" + }, + { + "md5": "01e440cabcf600c97880af3448b3705d", + "pid": "942531639", + "note": [ + { + "label": [ + "elektronische Informations- und Kommunikationsdienste, die im Internet angeboten werden und weder Telekommunikationsdienste noch Rundfunk sind (vgl. \u00a7 1 Satz 1 TMG), also z. B. Online-Shops, Online-Banking, elektronische Presse, Chatrooms und Internet-Suchmaschinen", + "Nicht ersatzweise verwenden fu\u0308r online allgemein oder fu\u0308r die Zerlegung von Komposita mit Online." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Mailbox" + }, + { + "authorized_access_point": "Service provider" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134839154", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh95004892", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh95004892" + } + ], + "authorized_access_point": "Online information services" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254469117", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX4675869", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX4675869" + } + ], + "authorized_access_point": "Servicios de informacio\u0301n en li\u0301nea" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966895487", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "24664-2", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/24664-2" + } + ], + "authorized_access_point": "Digitale Gu\u0308ter" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970576986", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10064826", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10064826" + } + ], + "authorized_access_point": "Online-Dienst" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4354267-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)942531639", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4354267-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Onlinedienst", + "Digitaler Dienst", + "Digitale Dienste", + "Telemediendienst", + "Telemedienanbieter" + ], + "authorized_access_point": "Online-Dienst" + }, + { + "md5": "9dd60ace93b2faa29694e5fa1db308f7", + "pid": "942627644", + "type": "bf:Topic", + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134335032", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85131909", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85131909" + } + ], + "authorized_access_point": "Tagbanua (Philippine people)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134335032", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12466856", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12466856n" + } + ], + "authorized_access_point": "Tagbanuwa (peuple des Philippines)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4355229-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)942627644", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4355229-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Tagbanun" + ], + "authorized_access_point": "Tagbanua" + }, + { + "md5": "d70f3ecdde4e5ba403aaca9ff828104c", + "pid": "943138604", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zellaufschluss" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4360354-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)943138604", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4360354-3", + "source": "GND" + } + ], + "authorized_access_point": "Lysat" + }, + { + "md5": "0529f970bb68b53c9e8019263ca2ed36", + "pid": "943209374", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333946007", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16740937", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16740937v" + } + ], + "authorized_access_point": "Gempylide\u0301s" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4361575-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)943209374", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4361575-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Gempylidae" + ], + "authorized_access_point": "Schlangenmakrelen" + }, + { + "md5": "4fa899c2fde21f7645d3fe293acd8b23", + "pid": "943258170", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Hu\u0308ttenwart" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334004544", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16986926", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16986926t" + } + ], + "authorized_access_point": "Gardiennes de refuge" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4362317-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)943258170", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4362317-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Hu\u0308ttenwirtin", + "Schutzhu\u0308ttenwirtin", + "Schutzhu\u0308ttenwartin" + ], + "authorized_access_point": "Hu\u0308ttenwartin" + }, + { + "md5": "49b4e775d694ec4875d75594d636838d", + "pid": "94337426X", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133740219", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2017000361", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2017000361" + } + ], + "authorized_access_point": "Dependoviruses" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133740219", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12254722", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb122547221" + } + ], + "authorized_access_point": "Dependovirus" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4363893-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)94337426X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4363893-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Adeno-assoziierte Viren", + "AAV", + "Defekte Parvoviren" + ], + "authorized_access_point": "Dependoviren" + }, + { + "md5": "34099f243d2f55544ece2e4e4fa5b9f6", + "pid": "943440017", + "note": [ + { + "label": [ + "Technische Konstruktion, die Sto\u0308rungen selbst zu korrigieren vermag,so da\u00df die Funktionsfa\u0308higkeit der Konstruktion erhalten bleibt" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Konstruktion" + } + ], + "related": [ + { + "authorized_access_point": "Intelligenter Werkstoff" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4364681-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)943440017", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4364681-5", + "source": "GND" + } + ], + "authorized_access_point": "Intelligente Konstruktion" + }, + { + "md5": "7c137a0a634fe1eab0d6cb8dc7709669", + "pid": "943496799", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gesellschaftstanz" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133773540", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85116847", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85116847" + } + ], + "authorized_access_point": "Salsa (Music)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134552629", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh99014258", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh99014258" + } + ], + "authorized_access_point": "Salsa (Dance)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133773540", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12331117", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12331117t" + } + ], + "authorized_access_point": "Salsas" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134552629", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13542512", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb135425124" + } + ], + "authorized_access_point": "Salsa (danse)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254379495", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "46674", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/46674" + } + ], + "authorized_access_point": "Salsa" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254481648", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX527887", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX527887" + } + ], + "authorized_access_point": "Salsa (Mu\u0301sica)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4365525-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)943496799", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4365525-7", + "source": "GND" + } + ], + "authorized_access_point": "Salsa (Tanz)" + }, + { + "md5": "c70288a3952bc109a9c8f7b4a5f3d412", + "pid": "943592267", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Nachtw%C3%A4chter&oldid=206468413" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wa\u0308chter" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4366957-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)943592267", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4366957-8", + "source": "GND" + } + ], + "authorized_access_point": "Nachtwa\u0308chter" + }, + { + "md5": "a0fa6429bbb3b1a22c234907c1b86798", + "pid": "943618118", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sa\u0308ngerin" + } + ], + "related": [ + { + "authorized_access_point": "Sopran" + }, + { + "authorized_access_point": "Sopranist" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133730353", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh89005961", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh89005961" + } + ], + "authorized_access_point": "Sopranos (Singers)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133730353", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12166784", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb121667843" + } + ], + "authorized_access_point": "Sopranos" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254394877", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "66221", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/66221" + } + ], + "authorized_access_point": "Soprani" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4367362-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)943618118", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4367362-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Sopran (Sa\u0308ngerin)" + ], + "authorized_access_point": "Sopranistin" + }, + { + "md5": "c6be583f63aff2d4d4086225b54f231b", + "pid": "943625394", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Zeitkonstante" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134758537", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh99005491", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh99005491" + } + ], + "authorized_access_point": "Decay" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4367531-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)943625394", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4367531-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Abklingdauer" + ], + "authorized_access_point": "Abklingzeit" + }, + { + "md5": "867195a126f690c8330e3d7e1695d2b5", + "pid": "943836476", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Erinnerung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4369798-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)943836476", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4369798-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Geda\u0308chtnis (Gedenken)", + "Angedenken" + ], + "authorized_access_point": "Gedenken" + }, + { + "md5": "115e5a8973969ed862325a318a0c69f8", + "pid": "943889170", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333369808", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85137450", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85137450" + } + ], + "authorized_access_point": "Trichiuridae" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333369808", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17160836", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17160836r" + } + ], + "authorized_access_point": "Trichiuride\u0301s" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4370633-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)943889170", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4370633-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Trichiuridae" + ], + "authorized_access_point": "Haarschwa\u0308nze" + }, + { + "md5": "bcaa5b6105327668f770e7953ae8e8c2", + "pid": "94392684X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133725848", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh90002897", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh90002897" + } + ], + "authorized_access_point": "Sangir language (Indonesia and Philippines)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133725848", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12134169", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12134169f" + } + ], + "authorized_access_point": "Sangir (langue)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4370851-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)94392684X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4370851-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Sanggil", + "Sanggir", + "Sangihe (Sprache)", + "Sangil (Sprache)", + "Sangir (Sprache)" + ], + "authorized_access_point": "Sangiresisch" + }, + { + "md5": "1a50ce3c879c3297408b6a76e83b1082", + "pid": "94392961X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4370880-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)94392961X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4370880-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Bolaan-Mongondou", + "Mongondow" + ], + "authorized_access_point": "Mongondou" + }, + { + "md5": "8340af21b20f80240debac9c4fdccd87", + "pid": "94430396X", + "note": [ + { + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung und (hier nicht permutierender - gilt bis 31. 03. 2010) Wortart, z.B. Franzo\u0308sisch / Verb / aller " + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134523785", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12533714", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb125337148" + } + ], + "authorized_access_point": "Aller (le mot franc\u0327ais)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4374559-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)94430396X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4374559-3", + "source": "GND" + } + ], + "authorized_access_point": "aller (Wort)" + }, + { + "md5": "f9f47d7ea315ea58ff1accd9ef3dc972", + "pid": "944352820", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Hindernis" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134390033", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13179032", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb131790320" + } + ], + "authorized_access_point": "Barricades" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4375362-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)944352820", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4375362-0", + "source": "GND" + } + ], + "authorized_access_point": "Barrikade" + }, + { + "md5": "c56c3b7a3167d52dfe83df21aee5d377", + "pid": "944484611", + "note": [ + { + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung und hier nicht permutierender Wortart, z.B. Latein / Substantiv / felicitas" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134310730", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh91005717", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh91005717" + } + ], + "authorized_access_point": "Felicitas (The Latin word)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134310730", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12398160", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12398160w" + } + ], + "authorized_access_point": "Felicitas (le mot latin)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4376981-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)944484611", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4376981-0", + "source": "GND" + } + ], + "authorized_access_point": "felicitas" + }, + { + "md5": "75d8067d41a5998f4ab7a130dcc73c1a", + "pid": "944502172", + "note": [ + { + "label": [ + "Preis, bei dem das Produkt als Bu\u0308ndel von Einzelnutzen /-leistungen aufgefasst wird, die einzeln zu bewerten sind und in den Preis einfliessen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Preis" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331580285", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2021005695", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2021005695" + } + ], + "authorized_access_point": "Hedonic pricing" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966773241", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10199-1", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/10199-1" + } + ], + "authorized_access_point": "Hedonischer Preisindex" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4377236-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)944502172", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4377236-5", + "source": "GND" + } + ], + "authorized_access_point": "Hedonischer Preis" + }, + { + "md5": "bab2390c400ce41dcf3780f4ccbbf74e", + "pid": "944522297", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Irokesische Sprachen" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134446675", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh96003821", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh96003821" + } + ], + "authorized_access_point": "Cayuga language" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134446675", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF14575245", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb14575245r" + } + ], + "authorized_access_point": "Cayuga (langue)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4377405-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)944522297", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4377405-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Cayiuker", + "Ruengues", + "Gayogo\u0331ho\u0301:no\u0328\u02c0" + ], + "authorized_access_point": "Cayuga-Sprache" + }, + { + "md5": "a887d64dcace9c687d3d7844fe2447c6", + "pid": "945325150", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Vo\u0308lkerrechtlicher Vertrag" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4384293-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)945325150", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4384293-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Zollvertrag" + ], + "authorized_access_point": "Zollabkommen" + }, + { + "md5": "ae13aa69f4063787780545fb2737b63b", + "pid": "945372604", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mitose" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336587016", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D011418", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D011418" + } + ], + "authorized_access_point": "Prophase" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4384678-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)945372604", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4384678-6", + "source": "GND" + } + ], + "authorized_access_point": "Prophase" + }, + { + "md5": "80f80a2b700f4539c894bfccde000eda", + "pid": "945675267", + "note": [ + { + "label": [ + "Angloamerikanischer Tanz und entspr. Musik" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gesellschaftstanz" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134342098", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85139049", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85139049" + } + ], + "authorized_access_point": "Twist (Dance)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332661807", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2005006466", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2005006466" + } + ], + "authorized_access_point": "Twist (Music)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134342098", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12484982", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12484982d" + } + ], + "authorized_access_point": "Twist (danse)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4388032-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)945675267", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4388032-0", + "source": "GND" + } + ], + "authorized_access_point": "Twist" + }, + { + "md5": "22e614bc928102ec8c0f9b4dcdf26e8e", + "pid": "94574577X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Qualita\u0308tsregelkarte" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113476099X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85109440", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85109440" + } + ], + "authorized_access_point": "Quality control" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113476099X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11932687", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11932687h" + } + ], + "authorized_access_point": "Qualite\u0301 - Contro\u0302le" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4388728-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)94574577X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4388728-4", + "source": "GND" + } + ], + "variant_access_point": [ + "EWMA-Kontrollkarte", + "EWMA-Karte", + "Exponentially-weighted-moving-average-Regelkarte" + ], + "authorized_access_point": "EWMA-Regelkarte" + }, + { + "md5": "86dcfa3ca7089ae4f0980a84905eb299", + "pid": "945831749", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zelle" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4389509-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)945831749", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4389509-8", + "source": "GND" + } + ], + "authorized_access_point": "Basalzelle" + }, + { + "md5": "4b7658d27c38c82fe14107077a56a30e", + "pid": "945863837", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Groppen (Familie)" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133348710X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85033386", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85033386" + } + ], + "authorized_access_point": "Cottus gobio" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133348710X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17813225", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17813225b" + } + ], + "authorized_access_point": "Chabot commun" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256218782", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "6888", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_6888" + } + ], + "authorized_access_point": "sculpins" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4389859-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)945863837", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4389859-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Cottus gobio", + "Koppe", + "Mu\u0308hlkoppe" + ], + "authorized_access_point": "Groppe" + }, + { + "md5": "a1a39c1e8dc1997d8429c43b2280f733", + "pid": "94601888X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Stressreaktion" + } + ], + "related": [ + { + "authorized_access_point": "Hitzeschock-Proteine" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134243006", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh00004617", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00004617" + } + ], + "authorized_access_point": "Effect of heat on" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134243006", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12264597", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12264597k" + } + ], + "authorized_access_point": "Effets de la chaleur" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256221880", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "11488", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_11488" + } + ], + "authorized_access_point": "heat stress" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4391224-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)94601888X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4391224-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Hitzeschock (Molekularbiologie)", + "Hitzeschockantwort", + "Heat-shock-response" + ], + "authorized_access_point": "Hitzestress" + }, + { + "md5": "891eed9d377bbc9fb1532b071a98819f", + "pid": "946022895", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tanz" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133885330", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85053573", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85053573" + } + ], + "authorized_access_point": "Gavottes" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133885330", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13742456", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13742456t" + } + ], + "authorized_access_point": "Gavottes" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332662234", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18071066", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb18071066w" + } + ], + "authorized_access_point": "Gavotte (danse)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254394230", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "65536", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/65536" + } + ], + "authorized_access_point": "Gavotte" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4391319-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)946022895", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4391319-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Gavotto", + "Gavotta", + "Gavot (Tanz)", + "Gavota" + ], + "authorized_access_point": "Gavotte" + }, + { + "md5": "a575b2e1fc894f06760f4da3b7855e25", + "pid": "946062706", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Stadt" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134702809", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13554339", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb135543399" + } + ], + "authorized_access_point": "Fronts de mer" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4392076-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)946062706", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4392076-7", + "source": "GND" + } + ], + "authorized_access_point": "Ku\u0308stenstadt" + }, + { + "md5": "5146c62cd8ff8d219b76ffac8ad32d78", + "pid": "946267340", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Grenzsoldat&oldid=193965284" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Soldat" + } + ], + "related": [ + { + "authorized_access_point": "Grenzsoldatin" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4394827-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)946267340", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4394827-3", + "source": "GND" + } + ], + "authorized_access_point": "Grenzsoldat" + }, + { + "md5": "77975a87f871f60711a6705ff4f2b539", + "pid": "94646085X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bakterien" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134680317", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2017004780", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2017004780" + } + ], + "authorized_access_point": "Proteobacteria" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134680317", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15537035", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15537035p" + } + ], + "authorized_access_point": "Prote\u0301obacte\u0301ries" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254378596", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "45491", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/45491" + } + ], + "authorized_access_point": "Proteobacteria" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4397407-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)94646085X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4397407-7", + "source": "GND" + } + ], + "authorized_access_point": "Proteobakterien" + }, + { + "md5": "4b4927368c62b1302c43ed4cba4296d4", + "pid": "946529981", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "related": [ + { + "authorized_access_point": "Fakturierung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4398195-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)946529981", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4398195-1", + "source": "GND" + } + ], + "authorized_access_point": "Faku" + }, + { + "md5": "a7aa5d3b6f30136cb573777dd75f43c9", + "pid": "946530629", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "AutoCAD" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4398207-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)946530629", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4398207-4", + "source": "GND" + } + ], + "authorized_access_point": "ACAD-Bau 5.1" + }, + { + "md5": "e00abbea28cc9640c7ed6d20673c53c2", + "pid": "946538506", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tiere (Motiv)" + }, + { + "authorized_access_point": "Tierdarstellung" + }, + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4398263-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)946538506", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4398263-3", + "source": "GND" + } + ], + "authorized_access_point": "Flo\u0308he (Motiv)" + }, + { + "md5": "35e245985b806b35c2fa85c33a7b5403", + "pid": "946776164", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Novelle" + }, + { + "authorized_access_point": "Erotische Literatur" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331607299", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85044708", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85044708" + } + ], + "authorized_access_point": "Erotic stories" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331607299", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16932431", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb169324311" + } + ], + "authorized_access_point": "Nouvelles e\u0301rotiques" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4400938-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)946776164", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4400938-0", + "source": "GND" + } + ], + "authorized_access_point": "Erotische Novelle" + }, + { + "md5": "c9634b2e73f31bd3ba0dc09cb518d708", + "pid": "946792631", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Lasergenerieren" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133774687", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12334888", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb123348880" + } + ], + "authorized_access_point": "Ste\u0301re\u0301olithographie" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4401168-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)946792631", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4401168-4", + "source": "GND" + } + ], + "authorized_access_point": "Stereolithographie" + }, + { + "md5": "bba39b2d4a7e7e11b8703d33000b05e4", + "pid": "94683203X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Algebraischer Funktionenko\u0308rper" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4401685-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)94683203X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4401685-2", + "source": "GND" + } + ], + "authorized_access_point": "Arithmetischer Funktionenko\u0308rper" + }, + { + "md5": "2c396aba8eaecc06386e067d0da2ce1f", + "pid": "946840318", + "note": [ + { + "label": [ + "Vereinfachte isostatische Anomalie der Ausgleichstiefe im Bereich des Meeresniveaus" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schwereanomalie" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4401794-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)946840318", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4401794-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Fayesche Anomalie" + ], + "authorized_access_point": "Freiluftanomalie" + }, + { + "md5": "85854dfff3841479760283c64109a50e", + "pid": "946868093", + "note": [ + { + "label": [ + "World Heritage List - https://whc.unesco.org/en/list" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134105703", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12010561", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb120105617" + } + ], + "authorized_access_point": "Patrimoine mondial culturel et naturel" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4402276-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)946868093", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4402276-1", + "source": "GND" + } + ], + "variant_access_point": [ + "World Heritage", + "UNESCO-Welterbe" + ], + "authorized_access_point": "Welterbe" + }, + { + "md5": "042bab32250e3563846ccf290ce2a6ff", + "pid": "946944210", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wappentier" + }, + { + "authorized_access_point": "Adler (Motiv)" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333635303", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2002005586", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2002005586" + } + ], + "authorized_access_point": "Double-headed eagle (Emblem)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4402791-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)946944210", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4402791-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Doppelko\u0308pfiger Adler" + ], + "authorized_access_point": "Doppeladler" + }, + { + "md5": "71b2e7e334691afcfc9e9c6af545ec9c", + "pid": "946998051", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Seilta\u0308nzer" + }, + { + "authorized_access_point": "Slacklinen" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134090099", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85135325", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85135325" + } + ], + "authorized_access_point": "Tightrope walking" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134090099", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11997970", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119979702" + } + ], + "authorized_access_point": "Funambulisme" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4403427-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)946998051", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4403427-1", + "source": "GND" + } + ], + "authorized_access_point": "Seiltanz" + }, + { + "md5": "5df210a59cb3b5b35aecf152464881e9", + "pid": "947015388", + "note": [ + { + "label": [ + "Formgattung der Fadenpilze" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mucoraceae" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134560745", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh88022093", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh88022093" + } + ], + "authorized_access_point": "Sporotrichum" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134560745", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16624535", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16624535f" + } + ], + "authorized_access_point": "Sporotrichum" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256259357", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "27613", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_27613" + } + ], + "authorized_access_point": "Sporotrichum" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4403631-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)947015388", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4403631-0", + "source": "GND" + } + ], + "authorized_access_point": "Sporotrichum" + }, + { + "md5": "f76743b8c9ef6decb811a7f5c1a26ff3", + "pid": "947024387", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Installateurhandwerk" + } + ], + "related": [ + { + "authorized_access_point": "Klimatechnische Wirtschaft" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4403725-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)947024387", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4403725-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Klimatechnik", + "Klimatechnik", + "Klimatechnik" + ], + "authorized_access_point": "Klimatechnisches Handwerk" + }, + { + "md5": "645f1175084e22fe1d125c6ee7d4ee0a", + "pid": "947085017", + "note": [ + { + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung und hier nicht permutierender Wortart, z.B. Englisch ; Substantiv ; democracy" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4404603-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)947085017", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4404603-0", + "source": "GND" + } + ], + "authorized_access_point": "democracy" + }, + { + "md5": "3332258540edffd4cc52d412bc75be63", + "pid": "947167293", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Lu\u0308ge" + } + ], + "related": [ + { + "authorized_access_point": "Unehrlichkeit" + }, + { + "authorized_access_point": "Unwahrheit" + }, + { + "authorized_access_point": "Wahrhaftigkeit" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4405481-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)947167293", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4405481-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Unwahrhaftigkeit" + ], + "authorized_access_point": "Unaufrichtigkeit" + }, + { + "md5": "3f067a69d65368e920684f603dbc3e36", + "pid": "947210601", + "note": [ + { + "label": [ + "Programm fu\u0308r Bilanzanalyse" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "related": [ + { + "authorized_access_point": "Bilanzanalyse" + }, + { + "authorized_access_point": "Betriebsanalyse" + }, + { + "authorized_access_point": "Kennzahlensystem" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4406289-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)947210601", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4406289-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Systematische Bilanzanalyse mit dem PC (Programm)", + "SYBILA plus" + ], + "authorized_access_point": "SYBILA-PLUS" + }, + { + "md5": "4893cca718734c7941278c0c23171129", + "pid": "947337555", + "note": [ + { + "label": [ + "Ostslaw. Stammesverband" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Ostslawen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4407717-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)947337555", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4407717-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Kryvic\u030cy", + "Krivic\u030ci" + ], + "authorized_access_point": "Kriwitschen" + }, + { + "md5": "d2c1e3719f97e4c819b698804dd8ed5f", + "pid": "94736093X", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4408014-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)94736093X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4408014-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Urteilskorrektur", + "Urteil", + "Urteil" + ], + "authorized_access_point": "Urteilsberichtigung" + }, + { + "md5": "7c40ad38e35091ddb5f555ca371c1be8", + "pid": "947389229", + "note": [ + { + "label": [ + "Wikipedia unter Aufstand der Vende\u0301e - https://de.wikipedia.org/w/index.php?title=Aufstand_der_Vend%C3%A9e&oldid=243780170" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Royalistische Erhebung fu\u0308r die Thronrechte der Bourbonen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Aufstand" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4408277-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)947389229", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4408277-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Aufstand in der Vende\u0301e (1815)", + "Rebellion in der Vende\u0301e (1815)", + "Royalistische Erhebung in der Vende\u0301e (1815)", + "Guerre de Vende\u0301e et Chouannerie de 1815" + ], + "authorized_access_point": "Aufstand der Vende\u0301e (1815)" + }, + { + "md5": "baacd7e57ecf66637931509ee2d2f769", + "pid": "947397213", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schiff (Architektur)" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334556784", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2007007528", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2007007528" + } + ], + "authorized_access_point": "Transepts" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334556784", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13331557", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb133315579" + } + ], + "authorized_access_point": "Transepts" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4408354-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)947397213", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4408354-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Querhaus", + "Transept", + "Transeptum" + ], + "authorized_access_point": "Querschiff" + }, + { + "md5": "85a2874446cec258f2eaad068b31349d", + "pid": "947415874", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Finnischer_B%C3%BCrgerkrieg&oldid=201962892" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bu\u0308rgerkrieg" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4408662-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)947415874", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4408662-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Bu\u0308rgerkrieg in Finnland", + "Suomen sisa\u0308llissota", + "Sisa\u0308llissota (Finnland)" + ], + "authorized_access_point": "Finnischer Bu\u0308rgerkrieg" + }, + { + "md5": "ba207337804ec6eb1a75fdee5f3380a4", + "pid": "947465928", + "note": [ + { + "label": [ + "Programmpaket, bestehend aus WinAuftrag 1.0 und WinFiBu 1.0" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "related": [ + { + "authorized_access_point": "Finanzbuchhaltung" + }, + { + "authorized_access_point": "Auftragsabwicklung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4409161-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)947465928", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4409161-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Bu\u0308ro Plus 1.0 (Programm)" + ], + "authorized_access_point": "Bu\u0308ro Plus fu\u0308r WINDOWS 1.0" + }, + { + "md5": "26290c8b7850a66e02e28bdf595dd88c", + "pid": "947466223", + "note": [ + { + "label": [ + "Programmpaket, bestehend aus WinAuftrag 3.0 und WinFiBu 3.0" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "related": [ + { + "authorized_access_point": "Finanzbuchhaltung" + }, + { + "authorized_access_point": "Auftragsabwicklung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4409165-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)947466223", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4409165-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Bu\u0308ro Plus 3.0 (Programm)" + ], + "authorized_access_point": "Bu\u0308ro Plus fu\u0308r WINDOWS 3.0" + }, + { + "md5": "02485ee10cdf40976de94b1b7b516a4d", + "pid": "947543112", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134651961", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12252146", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12252146w" + } + ], + "authorized_access_point": "Fruits - Transformation" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4409883-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)947543112", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4409883-2", + "source": "GND" + } + ], + "authorized_access_point": "Fruchtzubereitung" + }, + { + "md5": "6dbb49df54105dbfdf18103aa9d8ad2c", + "pid": "947568441", + "note": [ + { + "label": [ + "Kennzahl zur Beurteilung von Zinsa\u0308nderungsrisiken, erlaubt im Zusammenhang mit der Duration eine genaue Abscha\u0308tzung des Barwertes der Zinsa\u0308nderung", + "Kapitalanlage + Bewertung oder eng. Sachverhalte nicht pleonastisch" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kennzahl" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4410173-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)947568441", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4410173-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Convexity", + "Konvexity" + ], + "authorized_access_point": "Konvexita\u0308t (Kapitalanlage)" + }, + { + "md5": "b57cda29d2b6481cb36dfb5dbd7fde79", + "pid": "947572090", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "related": [ + { + "authorized_access_point": "Finanzmathematik" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4410220-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)947572090", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4410220-3", + "source": "GND" + } + ], + "authorized_access_point": "FinWin" + }, + { + "md5": "320c2a87695ca33ff83df67914d1bb81", + "pid": "947636676", + "note": [ + { + "label": [ + "Eigensta\u0308ndiger Studiengang z.B. an der Hochschule fu\u0308r Grafik und Buchkunst in Leipzig" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Studium" + } + ], + "related": [ + { + "authorized_access_point": "Kunststudium" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4411049-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)947636676", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4411049-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Photographiestudium", + "Fotografie" + ], + "authorized_access_point": "Fotografiestudium" + }, + { + "md5": "5b43ed4fa0a506787eb82f70a2a1336f", + "pid": "947667040", + "note": [ + { + "label": [ + "Pyramide aus Menschen, sportl.- wettkampfa\u0308hnl. Darbietung, auch Zirkusnummer", + "Verknu\u0308pfe ggf. mit SW Sportakrobatik" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Akrobatik" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113438873X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85109303", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85109303" + } + ], + "authorized_access_point": "Pyramids (Gymnastics)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113438873X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13174928", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb131749281" + } + ], + "authorized_access_point": "Pyramides humaines" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4411444-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)947667040", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4411444-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Pyramide (Akrobatik)" + ], + "authorized_access_point": "Menschenpyramide" + }, + { + "md5": "e0550680416160c4abb4f0899b866727", + "pid": "947762868", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Angle-Klassifizierung" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1241591032", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D008312", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D008312" + } + ], + "authorized_access_point": "Malocclusion, Angle Class II" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4412407-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)947762868", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4412407-7", + "source": "GND" + } + ], + "authorized_access_point": "Angle-Klasse II" + }, + { + "md5": "07dfb817bd52e39ac7961d092dff0804", + "pid": "947807691", + "note": [ + { + "label": [ + "Wikipedia unter Aufstand der Vende\u0301e - https://de.wikipedia.org/w/index.php?title=Aufstand_der_Vend%C3%A9e&oldid=243780170" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Legitimistische Erhebung fu\u0308r die Thronrechte der Bourbonen gegen die Julimonarchie, angestiftet von der Herzogin von Berry" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Aufstand" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4413095-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)947807691", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4413095-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Aufstand in der Vende\u0301e (1832)", + "Rebellion in der Vende\u0301e (1832)", + "Legitimistische Erhebung in der Vende\u0301e (1832)" + ], + "authorized_access_point": "Aufstand der Vende\u0301e (1832)" + }, + { + "md5": "2c50e51b3c4eb0deae7a5a29af510b04", + "pid": "947999043", + "note": [ + { + "label": [ + "Benutzt fu\u0308r die Pflanze" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ingwergewa\u0308chse" + } + ], + "related": [ + { + "authorized_access_point": "Kardamom (Gewu\u0308rz)" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134409761", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh88022764", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh88022764" + } + ], + "authorized_access_point": "Elettaria" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134409761", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF14431349", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb14431349f" + } + ], + "authorized_access_point": "Elettaria" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256226521", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "2529", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_2529" + } + ], + "authorized_access_point": "Elettaria cardamomum" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)125622653X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "9620", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_9620" + } + ], + "authorized_access_point": "cardamoms" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4416048-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)947999043", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4416048-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Cardamom", + "Elettaria" + ], + "authorized_access_point": "Kardamom" + }, + { + "md5": "73b03c2f243bdc38b587658a79f9350a", + "pid": "948023465", + "note": [ + { + "label": [ + "Art aus d. Fam. Synbranchidae" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333488181", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85131604", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85131604" + } + ], + "authorized_access_point": "Synbranchus marmoratus" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333488181", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17758506", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17758506r" + } + ], + "authorized_access_point": "Synbranchus marmoratus" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4416523-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)948023465", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4416523-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Synbranchus marmoratus" + ], + "authorized_access_point": "Su\u0308damerikanischer Kurzschwanzaal" + }, + { + "md5": "d547faf469e60331d35eac571df3bd5c", + "pid": "948059028", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Showtanz" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133837832", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2016001989", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2016001989" + } + ], + "authorized_access_point": "Cancan (Dance)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133837832", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13169985", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13169985v" + } + ], + "authorized_access_point": "Cancan (danse)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254395598", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "67289", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/67289" + } + ], + "authorized_access_point": "Cancan" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4417076-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)948059028", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4417076-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Chahut", + "Can can" + ], + "authorized_access_point": "Cancan" + }, + { + "md5": "6f04307ad1cda113d794c2f43f9a6970", + "pid": "94818387X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Optisches Kommunikationsnetz" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134645503", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2007007027", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2007007027" + } + ], + "authorized_access_point": "Passive optical networks" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4418747-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)94818387X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4418747-6", + "source": "GND" + } + ], + "variant_access_point": [ + "PON", + "Passiv optical network" + ], + "authorized_access_point": "Passives optisches Netz" + }, + { + "md5": "8deb39adac273a58a3d2f382d7d1b974", + "pid": "948358742", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Artist" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113382739X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh96009049", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh96009049" + } + ], + "authorized_access_point": "Women circus performers" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113382739X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12546462", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb125464627" + } + ], + "authorized_access_point": "Femmes artistes de cirque" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4420603-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)948358742", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4420603-3", + "source": "GND" + } + ], + "authorized_access_point": "Artistin" + }, + { + "md5": "3427f3c89e1afb175dc4ba48c3d0a2dc", + "pid": "948367032", + "note": [ + { + "label": [ + "Gattung der Schleimfische" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schuppenlose Schleimfische" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333368518", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85040884", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85040884" + } + ], + "authorized_access_point": "Ecsenius" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333368518", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17798786", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17798786m" + } + ], + "authorized_access_point": "Ecsenius" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4420692-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)948367032", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4420692-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Escenius" + ], + "authorized_access_point": "Ecsenius" + }, + { + "md5": "147201c636e4676d5e472770cc0f8492", + "pid": "948474688", + "note": [ + { + "label": [ + "Popula\u0308rer franzo\u0308sischer Tanzstil zu Akkordeonmusik" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tanz" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134457324", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF14618415", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb146184151" + } + ], + "authorized_access_point": "Bals musettes" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4422248-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)948474688", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4422248-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Danse Musette", + "Bal Musette", + "Musette-Walzer", + "Valse a\u0300 la musette" + ], + "authorized_access_point": "Musette (Tanz)" + }, + { + "md5": "f9d941db0e0869a302bccb66c4c420ac", + "pid": "948520116", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Bar" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334889856", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2009010761", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2009010761" + } + ], + "authorized_access_point": "Happy hours" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4423019-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)948520116", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4423019-9", + "source": "GND" + } + ], + "authorized_access_point": "Happy-hour" + }, + { + "md5": "dcdb97d1a5728068661b16ea39407d62", + "pid": "948565977", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Architektur (Informatik)" + } + ], + "related": [ + { + "authorized_access_point": "CIM" + }, + { + "authorized_access_point": "Offenes System" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4423632-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)948565977", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4423632-3", + "source": "GND" + } + ], + "variant_access_point": [ + "CIM-OSA-Modell", + "CIM-Open-Systems-Architecture-Modell", + "ESPRIT (Forschungsprogramm)" + ], + "authorized_access_point": "CIM-OSA" + }, + { + "md5": "126bcb3390ff291a9c66d71210a60f7c", + "pid": "948567317", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4423654-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)948567317", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4423654-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Mentawei", + "Mentawi" + ], + "authorized_access_point": "Mentawai" + }, + { + "md5": "e2e59c82001d78eeed43e47393391e75", + "pid": "948567341", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4423655-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)948567341", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4423655-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Andian", + "Mandar (Sprache)" + ], + "authorized_access_point": "Mandaresisch" + }, + { + "md5": "c994952999941f3c781acea0a0b86857", + "pid": "948581387", + "note": [ + { + "label": [ + "Gattung der Ro\u0308hrlinge" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ro\u0308hrlinge" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4423844-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)948581387", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4423844-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Leccinum", + "Rauhfu\u0308\u00dfe", + "Rauhfu\u00df", + "Raufu\u0308\u00dfe", + "Raufu\u00df", + "Rauhfu\u00dfro\u0308hrling", + "Raustielro\u0308hrling", + "Rauhstielro\u0308hrling" + ], + "authorized_access_point": "Raufu\u00dfro\u0308hrling" + }, + { + "md5": "639c3047c2dd5bb4a2efb891c5592b08", + "pid": "948616792", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Residenz" + } + ], + "related": [ + { + "authorized_access_point": "Ko\u0308nigspfalz" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334012520", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85014421", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85014421" + } + ], + "authorized_access_point": "Bishops - Homes and haunts" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334012520", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16650585", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16650585n" + } + ], + "authorized_access_point": "Palais e\u0301piscopaux" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4424386-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)948616792", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4424386-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Bischofspalast" + ], + "authorized_access_point": "Bischofspfalz" + }, + { + "md5": "3dc92b4b59e1f824204feb8beb873749", + "pid": "948734418", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Materialermu\u0308dung" + }, + { + "authorized_access_point": "Thermomechanische Eigenschaft" + } + ], + "related": [ + { + "authorized_access_point": "Thermoschock" + }, + { + "authorized_access_point": "Temperaturwechselbesta\u0308ndigkeit" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134216092", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12218766", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12218766s" + } + ], + "authorized_access_point": "Fatigue thermique" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4425895-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)948734418", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4425895-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Thermoermu\u0308dung" + ], + "authorized_access_point": "Thermische Ermu\u0308dung" + }, + { + "md5": "6cbfb9dd8855b5af8d3bd390450b9917", + "pid": "948861975", + "note": [ + { + "label": [ + "Unterart der Schimpansen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Hominidae" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4427691-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)948861975", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4427691-6", + "source": "GND" + } + ], + "authorized_access_point": "Pan troglodytes verus" + }, + { + "md5": "09d0b8beeae53fe3b07371d9ef1762d5", + "pid": "948897244", + "type": "bf:Topic", + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1027688217", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10077203", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10077203" + } + ], + "authorized_access_point": "soziale Koha\u0308sion" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970555849", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10046095", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10046095" + } + ], + "authorized_access_point": "Gruppenkoha\u0308sion" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4427991-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)948897244", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4427991-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Gruppenzusammenhalt", + "Koha\u0308sion (Sozialpsychologie)", + "Zusammenhalt" + ], + "authorized_access_point": "Gruppenkoha\u0308sion" + }, + { + "md5": "68075759bc0556228ab7e6414e3d6a55", + "pid": "948985429", + "note": [ + { + "label": [ + "aus Japan stammende Form der Beteiligung von Arbeitnehmern an der Entwicklung von Innovationen in Unternehmen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Vorschlagswesen" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134492219", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13191265", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb131912650" + } + ], + "authorized_access_point": "Production au plus juste" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4429179-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)948985429", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4429179-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Kontinuierlicher Verbesserungsprozess", + "KVP", + "Continuous Improvement Process" + ], + "authorized_access_point": "Kaizen" + }, + { + "md5": "79cd558bd91beed173b383123ce33ff7", + "pid": "949178594", + "note": [ + { + "label": [ + "Wiktionary - https://de.wiktionary.org/w/index.php?title=Stra%C3%9Fenverk%C3%A4ufer&oldid=7904470" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Verka\u0308ufer" + } + ], + "related": [ + { + "authorized_access_point": "Stra\u00dfenverkauf" + }, + { + "authorized_access_point": "Stra\u00dfenverka\u0308uferin" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134504179", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh00003150", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00003150" + } + ], + "authorized_access_point": "Street vendors" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4432422-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)949178594", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4432422-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Stra\u00dfenha\u0308ndler" + ], + "authorized_access_point": "Stra\u00dfenverka\u0308ufer" + }, + { + "md5": "6345898ef2c79f6bee1f2c359e138241", + "pid": "94925584X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Spa\u0308htrupp" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134048165", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11977593", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119775936" + } + ], + "authorized_access_point": "E\u0301claireurs (reconnaissance)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4433683-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)94925584X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4433683-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Kundschafter" + ], + "authorized_access_point": "Spa\u0308her" + }, + { + "md5": "906988a7dfd46c5ffffb7988251978dd", + "pid": "949435015", + "note": [ + { + "label": [ + "Bezeichnung fu\u0308r die Diktaturen in Portugal (1933-1974) und Brasilien (1934/1937-1945)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4436273-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)949435015", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4436273-0", + "source": "GND" + } + ], + "authorized_access_point": "Estado Novo" + }, + { + "md5": "6c1ca1e037131af8bac37345d7fab005", + "pid": "949582964", + "note": [ + { + "label": [ + "Flache, ausgedehnte Schotter- oder Sandebene" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ebene" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4438987-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)949582964", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4438987-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Sandur", + "Sandr" + ], + "authorized_access_point": "Sander" + }, + { + "md5": "09d37efe294ef88d34fc04d65ce010bb", + "pid": "949736864", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332646476", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85122115", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85122115" + } + ], + "authorized_access_point": "Showers (Plumbing fixtures)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332646476", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13561411", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13561411p" + } + ], + "authorized_access_point": "Douches" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4442449-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)949736864", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4442449-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Brause" + ], + "authorized_access_point": "Dusche" + }, + { + "md5": "fb5c0e7f8267d162a2a251e64ca04819", + "pid": "949894028", + "note": [ + { + "label": [ + "Ja\u0308hrl. Preis zur Fo\u0308rd. d. wu\u0308rttemberg. Handwerks" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fo\u0308rderungspreis" + }, + { + "authorized_access_point": "Preis (Auszeichnung)" + } + ], + "related": [ + { + "authorized_access_point": "Handwerk" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4444587-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)949894028", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4444587-8", + "source": "GND" + } + ], + "authorized_access_point": "Fo\u0308rderpreis Junges Handwerk" + }, + { + "md5": "ea9811c0ef5eb2853b490e3244f68b84", + "pid": "94996591X", + "note": [ + { + "label": [ + "Wikipedia - https://en.wikipedia.org/w/index.php?title=Prayer_Book_Rebellion&oldid=1187132856" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Die Durchsetzung der englischen Sprache mittels der Einfu\u0308hrung des ersten \"Book of Common Prayer\", zusammen mit schlechten wirtschaftlichen Bedingungen, fu\u0308hrte 1549 zu einem Volksaufstand in Cornwall und Devon" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Aufstand" + } + ], + "related": [ + { + "authorized_access_point": "Reformation" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4446374-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)94996591X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4446374-1", + "source": "GND" + } + ], + "variant_access_point": [ + "England (West, 1549)", + "Western Rising", + "Prayer Book Rebellion", + "Cornish Prayer Book Rebellion", + "West Country Prayer Book Rebellion" + ], + "authorized_access_point": "Western Rebellion" + }, + { + "md5": "921fb71a15d6907b7772e294e6227cba", + "pid": "950268593", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4451259-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)950268593", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4451259-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Bauernaufstand" + ], + "authorized_access_point": "Schweden - Bauernaufstand (1743)" + }, + { + "md5": "a878c5a509ce8bf982159c60353f6be6", + "pid": "950276014", + "note": [ + { + "label": [ + "Pflanzenparasit, zu der Gattung der Kleeseide geho\u0308rend" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4451407-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)950276014", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4451407-4", + "source": "GND" + } + ], + "authorized_access_point": "Cuscuta odorata" + }, + { + "md5": "2f5a08ccd9f1a7f34f7db5d7a1711b19", + "pid": "950280984", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Kinderklavier" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Spielzeug" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332762301", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2001006041", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2001006041" + } + ], + "authorized_access_point": "Toy piano" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332762301", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16035513", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16035513j" + } + ], + "authorized_access_point": "Piano-jouet" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4451509-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)950280984", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4451509-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Spielzeugklavier", + "Toy piano", + "Toypiano" + ], + "authorized_access_point": "Kinderklavier" + }, + { + "md5": "d12acf9181b17c92dbd7137e923388d1", + "pid": "950378658", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Meera\u0308schen" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133944787", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85088271", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85088271" + } + ], + "authorized_access_point": "Mugil capito" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133944787", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11938288", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119382886" + } + ], + "authorized_access_point": "Mulet-porc (poissons)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4453022-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)950378658", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4453022-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Mugil capito" + ], + "authorized_access_point": "Du\u0308nnlippige Meera\u0308sche" + }, + { + "md5": "c574b5692da43415d761872af7bbe4f7", + "pid": "950378682", + "note": [ + { + "label": [ + "Art der Meera\u0308schen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Meera\u0308schen" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333492510", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17816474", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17816474t" + } + ], + "authorized_access_point": "Mulet lebranche" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4453023-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)950378682", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4453023-7", + "source": "GND" + } + ], + "authorized_access_point": "Mugil platanus" + }, + { + "md5": "98dc674daa20aae9dd13f8971e4f61df", + "pid": "950453544", + "note": [ + { + "label": [ + "Verknu\u0308pfe mit der jeweiligen Gattung. z. B. Kinderliteratur / Illustratorin. Als Homonymenzusatz bei Personenschlagwo\u0308rtern verwende Ku\u0308nstlerin" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Illustrator" + }, + { + "authorized_access_point": "Buchmalerin" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331598281", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2001008322", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2001008322" + } + ], + "authorized_access_point": "Women illustrators" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331598281", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17769817", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17769817p" + } + ], + "authorized_access_point": "Illustratrices" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4454346-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)950453544", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4454346-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Buchillustratorin" + ], + "authorized_access_point": "Illustratorin" + }, + { + "md5": "4ef7742ff17182d3ea3ca478c544ca54", + "pid": "950461083", + "note": [ + { + "label": [ + "Wei\u00dffa\u0308ulepilz" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334020353", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17987279", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17987279v" + } + ], + "authorized_access_point": "Trame\u0300te bru\u0302le\u0301e" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4454459-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)950461083", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4454459-5", + "source": "GND" + } + ], + "authorized_access_point": "Bjerkandera adusta" + }, + { + "md5": "3d2fa25f3ed8082e87e3c937c7a45f97", + "pid": "95058410X", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133749372", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2017004979", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2017004979" + } + ], + "authorized_access_point": "Intensification (Linguistics)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133749372", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12272694", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12272694j" + } + ], + "authorized_access_point": "Intensifs (linguistique)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4456696-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)95058410X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4456696-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Intensifikator", + "Gradmodifikator" + ], + "authorized_access_point": "Steigerungspartikel" + }, + { + "md5": "e95254460da6761265f2c8b9cdfc3932", + "pid": "950632481", + "note": [ + { + "label": [ + "PPS-Modularprogramm" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "PPS" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4457570-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)950632481", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4457570-1", + "source": "GND" + } + ], + "authorized_access_point": "COPICS" + }, + { + "md5": "582fbc7ed816a945cac694db22cfafbb", + "pid": "950692433", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134836120", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85139514", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85139514" + } + ], + "authorized_access_point": "Uma language" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134836120", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15777212", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15777212r" + } + ], + "authorized_access_point": "Uma (langue)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4458960-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)950692433", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4458960-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Uma-Aria-Sprache", + "Oema-Sprache", + "Pipikoro (Sprache)", + "Uma Aria (Sprache)", + "Oema (Sprache)" + ], + "authorized_access_point": "Pipikoro-Sprache" + }, + { + "md5": "8ad1b076fc5d326d0a350cb20d1fd58a", + "pid": "950693375", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4459018-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)950693375", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4459018-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Tondano-Sprache", + "Tolou-Sprache", + "Tolour-Sprache", + "Tondano (Sprache)", + "Tolou (Sprache)", + "Tolour (Sprache)" + ], + "authorized_access_point": "Tondanesisch" + }, + { + "md5": "b1472ba6b4c2c9e277ed7bac0fa5b8a5", + "pid": "950693413", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4459021-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)950693413", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4459021-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Minahasa-Sprachen" + ], + "authorized_access_point": "Minahassa-Sprachen" + }, + { + "md5": "8c4d4cda0a32de4c41b8a0e73a487118", + "pid": "950857157", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=246525497" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Bestehend aus einem Turmpaar, dem G(efechts)-Turm u. dem L(eit)-Turm", + "Nicht zu verwenden fu\u0308r Bunker, die mit Flugabwehrgeschu\u0308tz versehen waren (z.B. Bunker auf dem Heiliggeistfeld in Hamburg); hierfu\u0308r verknu\u0308pfe geograph. Schlagwort mit SW Bunker u. SW Flugabwehrgeschu\u0308tz" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Turm" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4461928-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)950857157", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4461928-5", + "source": "GND" + } + ], + "authorized_access_point": "Flakturm" + }, + { + "md5": "97d281fbc4e0111910bd68814640632b", + "pid": "950872555", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Grafiker" + } + ], + "related": [ + { + "authorized_access_point": "Druckgrafikerin" + }, + { + "authorized_access_point": "Druckgrafik" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134513712", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85043993", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85043993" + } + ], + "authorized_access_point": "Engravers" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134162871", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85106829", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85106829" + } + ], + "authorized_access_point": "Printmakers" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134513712", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11931591", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119315917" + } + ], + "authorized_access_point": "Graveurs" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134162871", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12101115", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb121011155" + } + ], + "authorized_access_point": "Graveurs d'estampe" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4461989-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)950872555", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4461989-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Druckgraphiker" + ], + "authorized_access_point": "Druckgrafiker" + }, + { + "md5": "d80c6c6c981cac482c23ef9fd2f94314", + "pid": "951040960", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113403993X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11976146", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11976146b" + } + ], + "authorized_access_point": "E\u0301tiquetage" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4464866-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)951040960", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4464866-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Etikettierung" + ], + "authorized_access_point": "Etikettieren" + }, + { + "md5": "e381b7f8499ca402438380de84a0927f", + "pid": "951151541", + "note": [ + { + "label": [ + "Benutzt, soweit au\u00dferhalb Portugals lebend, sonst verknu\u0308pfe Portugal ; Frau" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausla\u0308nderin" + } + ], + "related": [ + { + "authorized_access_point": "Portugiesen" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)101055395X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "26602-0", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/26602-0" + } + ], + "authorized_access_point": "Portugiesen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4466604-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)951151541", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4466604-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Portugiesische Frau" + ], + "authorized_access_point": "Portugiesin" + }, + { + "md5": "0777fee4539c0604bb89c09cb161d6c0", + "pid": "95136653X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kirchenfest" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331870402", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85061570", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85061570" + } + ], + "authorized_access_point": "Feast of the Holy Innocents" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331870402", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16612328", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16612328x" + } + ], + "authorized_access_point": "Fe\u0302te des Saints-Innocents" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4467778-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)95136653X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4467778-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Unschuldige Kinder (Kirchenfest)" + ], + "authorized_access_point": "Fest der Unschuldigen Kinder" + }, + { + "md5": "392a4ed93a7b1285a049534ab7915239", + "pid": "951452940", + "note": [ + { + "label": [ + "Bez. fu\u0308r die sensiblen (z. B. Taubheitsgefu\u0308hl, Kribbeln), sensor. (z. B. Geruchs- od. Geschmacksaura), vegetativen (epigastrische A.) od. psychischen (Glu\u0308cks-, Angstgefu\u0308hl, De\u0301ja\u0300-vu-Erlebnis) Wahrnehmungen unmittelbar vor einem epilept. Anfall." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Epileptischer Anfall" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4469122-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)951452940", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4469122-1", + "source": "GND" + } + ], + "authorized_access_point": "Aura (Epilepsie)" + }, + { + "md5": "e9e7c77b06dc7995190ac16e4e347cbc", + "pid": "95152092X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4470454-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)95152092X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4470454-9", + "source": "GND" + } + ], + "authorized_access_point": "Bakumpai-Sprache" + }, + { + "md5": "387b2be322ee7efdbb90a11cb399d8fd", + "pid": "95153047X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4470686-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)95153047X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4470686-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Sakai (Sprache)", + "Sakei" + ], + "authorized_access_point": "Sakai-Sprache" + }, + { + "md5": "f0a1719f9e7d9e434ee0f95bd9d5d271", + "pid": "951549650", + "note": [ + { + "label": [ + "Als Triage bezeichnet man ein Verfahren, in dem u\u0308ber die Zuteilung knapper u\u0308berlebenswichtiger Behandlungsressourcen entschieden wird.", + "Auch benutzt fu\u0308r psychosoziale Entscheidungshilfen fu\u0308r die Handlungsorientierung in Notlagen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Priorisierung" + }, + { + "authorized_access_point": "Katastrophenmedizin" + }, + { + "authorized_access_point": "Notfallpsychologie" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1282202472", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D014218", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D014218" + } + ], + "authorized_access_point": "Triage" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4471021-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)951549650", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4471021-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Triage-Index" + ], + "authorized_access_point": "Triage" + }, + { + "md5": "987255721041869cd96c89363fa8cccd", + "pid": "951567241", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Einbau" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4471593-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)951567241", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4471593-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Sto\u0308rko\u0308rper", + "Ho\u0308cker (Wasserbau)" + ], + "authorized_access_point": "Schikane (Technik)" + }, + { + "md5": "d3809f154637026405c2b0df7d6226a5", + "pid": "95159981X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Carrier-Proteine" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134394896", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2004000512", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2004000512" + } + ], + "authorized_access_point": "ATP-binding cassette transporters" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134394896", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13743526", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13743526d" + } + ], + "authorized_access_point": "Transporteurs ABC" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336028378", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D018528", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D018528" + } + ], + "authorized_access_point": "ATP-Binding Cassette Transporters" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4472594-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)95159981X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4472594-2", + "source": "GND" + } + ], + "variant_access_point": [ + "ATP-Binding Cassette Transporter" + ], + "authorized_access_point": "ABC-Transporter" + }, + { + "md5": "5cc37f10d02888a48475a438e9f5a6b6", + "pid": "951607804", + "note": [ + { + "label": [ + "benutzt fu\u0308r den Stoff (O\u0308dipusthematik)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Legende" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4472697-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)951607804", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4472697-1", + "source": "GND" + } + ], + "authorized_access_point": "Albanuslegende" + }, + { + "md5": "be51bd8e40d9c8b96b99f58958ffeef2", + "pid": "951618563", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Reise" + }, + { + "authorized_access_point": "Aufbruch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4472809-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)951618563", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4472809-8", + "source": "GND" + } + ], + "authorized_access_point": "Abreise" + }, + { + "md5": "e1a6a0ed7e407bfb3be7cf11b92ea1bf", + "pid": "95171337X", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4473972-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)95171337X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4473972-2", + "source": "GND" + } + ], + "authorized_access_point": "Zuteilung" + }, + { + "md5": "7c78db4e9ec162105a95f1035f6d7400", + "pid": "951810189", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Grubenottern" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1323097007", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17058267", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17058267x" + } + ], + "authorized_access_point": "Jararaca" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336110708", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D000097145", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000097145" + } + ], + "authorized_access_point": "Bothrops jararaca" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4474362-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)951810189", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4474362-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Bothrops jararaca" + ], + "authorized_access_point": "Jararaca" + }, + { + "md5": "7d2da45c98becab5c4676c888babbb34", + "pid": "951939440", + "note": [ + { + "label": [ + "Kuban. Gesellschaftstanz in gemessenem Tempo, der zwischen 1900 und 1920 zum Nationaltanz wurde; aus dem Danzo\u0301n gingen 1939 der Mambo und 1949 der Cha-Cha-Cha hervor" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gesellschaftstanz" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332687431", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2009009519", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2009009519" + } + ], + "authorized_access_point": "Danzo\u0301n (Dance)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332687431", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18143564", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb18143564m" + } + ], + "authorized_access_point": "Danzo\u0301n (danse)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4474574-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)951939440", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4474574-6", + "source": "GND" + } + ], + "authorized_access_point": "Danzo\u0301n" + }, + { + "md5": "bbb2bdc4f7f5ea31a0e5cd383d219414", + "pid": "952082098", + "note": [ + { + "label": [ + "Zusammenfassend fu\u0308r Volkstanz-, Volksmusik-, Trachten- und Brauchtumsgruppen oder -vereine etc." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Volkskultur" + }, + { + "authorized_access_point": "Gruppe" + }, + { + "authorized_access_point": "Verein" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4476699-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)952082098", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4476699-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Folkloregruppen" + ], + "authorized_access_point": "Folkloregruppe" + }, + { + "md5": "3758180b9060f1b711e51adf28abb63b", + "pid": "952090163", + "note": [ + { + "label": [ + "Zwischen d. Zeilen e. fremdsprachigen Textes geschriebene Wort-fu\u0308r-Wort-U\u0308bersetzung ohne Ru\u0308cksicht auf grammat. oder idiomat. Unterschiede zwischen d. Grundtext u. d. U\u0308bersetzung" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Glosse" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134312733", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12403938", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb124039381" + } + ], + "authorized_access_point": "Traductions interline\u0301aires" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4476872-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)952090163", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4476872-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Interlinearglosse", + "Interlinearu\u0308bersetzung" + ], + "authorized_access_point": "Interlinearversion" + }, + { + "md5": "d52ec1e81f167f6cae4b8157e6b14e43", + "pid": "952319888", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Energiearmes Lebensmittel" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133801110", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh90005360", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh90005360" + } + ], + "authorized_access_point": "Low-fat foods" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133801110", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12454183", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12454183x" + } + ], + "authorized_access_point": "Aliments a\u0300 faible teneur en lipides" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4480030-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)952319888", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4480030-7", + "source": "GND" + } + ], + "authorized_access_point": "Fettreduziertes Lebensmittel" + }, + { + "md5": "c9d0793be2462c7ab4c0353c0e768e27", + "pid": "952431602", + "note": [ + { + "label": [ + "Preis d. Informedia-Stiftung fu\u0308r Gesellschaftswissenschaften u. Publizistik fu\u0308r d. Erkla\u0308rung d. Sozialen Marktwirtschaft e. breiten O\u0308ffentlichkeit" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Preis (Auszeichnung)" + } + ], + "related": [ + { + "authorized_access_point": "Journalismus" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4481376-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)952431602", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4481376-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Preis der Informedia-Stiftung fu\u0308r Gesellschaftswissenschaften und Publizistik" + ], + "authorized_access_point": "Informedia-Preis fu\u0308r Wirtschafts-Journalismus" + }, + { + "md5": "4c232ded6a4895d7b706c92738c5ec6f", + "pid": "952440431", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Einwanderer" + }, + { + "authorized_access_point": "Amerikaner" + } + ], + "related": [ + { + "authorized_access_point": "Amerikanische Einwanderin" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4481511-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)952440431", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4481511-6", + "source": "GND" + } + ], + "variant_access_point": [ + "US-Amerikanischer Einwanderer" + ], + "authorized_access_point": "Amerikanischer Einwanderer" + }, + { + "md5": "1a84bf1ba68151e0afa00a2e85fce93d", + "pid": "952619636", + "note": [ + { + "label": [ + "In weiter Bedeutung verwendet: Forschung in allen geisteswiss., sozialwiss. und historischen Disziplinen u\u0308ber Geschlechterfragen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Forschung" + } + ], + "related": [ + { + "authorized_access_point": "Geschlechterverha\u0308ltnis" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966762037", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "19757-4", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/19757-4" + } + ], + "authorized_access_point": "Geschlechterforschung" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)970553757", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10044108", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10044108" + } + ], + "authorized_access_point": "Geschlechterforschung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4482930-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)952619636", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4482930-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Gender Studies", + "Gender-Forschung", + "Geschlechterfrage", + "Geschlechtertheorie", + "Gender-Theorie", + "Gendertheorie", + "Genderstudie" + ], + "authorized_access_point": "Geschlechterforschung" + }, + { + "md5": "1178d4e659811f0ecd0d6a88f2addf68", + "pid": "952702053", + "note": [ + { + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung und hier nicht permutierender Wortart, z.B. SWW Latein ; Substantiv ; humanitas" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4484471-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)952702053", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4484471-2", + "source": "GND" + } + ], + "authorized_access_point": "humanitas" + }, + { + "md5": "dc88a798d285cb919116f77fbbc00824", + "pid": "952794357", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Decodierung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4486066-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)952794357", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4486066-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Turbo-Decodierung" + ], + "authorized_access_point": "Iterative Decodierung" + }, + { + "md5": "9057dd40f1ddd2b5a07218cf27f10618", + "pid": "952896605", + "note": [ + { + "label": [ + "Den Entwicklungsprozess vorantreibender Akteur in der Organisationsentwicklung" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Organisationsentwicklung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4487767-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)952896605", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4487767-5", + "source": "GND" + } + ], + "authorized_access_point": "Change Agent" + }, + { + "md5": "bf143dee15e5fd3da51fa854ac32a4d5", + "pid": "952945819", + "note": [ + { + "label": [ + "Familie der Barschfische" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133871984", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh97008600", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh97008600" + } + ], + "authorized_access_point": "Pearl perches" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133871984", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13571291", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13571291t" + } + ], + "authorized_access_point": "Glaucosomatidae" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4488671-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)952945819", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4488671-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Glaucosomatidae" + ], + "authorized_access_point": "Glaucosomidae" + }, + { + "md5": "7089538793f90d73ef219bfb017484c1", + "pid": "952945991", + "note": [ + { + "label": [ + "Familie Amerikanischer Brachsen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333442521", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh95000247", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh95000247" + } + ], + "authorized_access_point": "Moronidae" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333442521", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15506722", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15506722d" + } + ], + "authorized_access_point": "Moronidae" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4488675-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)952945991", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4488675-5", + "source": "GND" + } + ], + "authorized_access_point": "Moronidae" + }, + { + "md5": "93e1388c73f1cd10c25dd0196890f6d5", + "pid": "952966336", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gemischbildung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4489196-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)952966336", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4489196-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Kraftstoff" + ], + "authorized_access_point": "Gemischaufbereitung" + }, + { + "md5": "92de3f088712d56bb5f6edefce784465", + "pid": "953011992", + "note": [ + { + "label": [ + "Art der Fam. Agamen (Agamidae)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Agamen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4490181-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)953011992", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4490181-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Amphibolorus barbatus", + "Pogona barbata", + "Amphibolurus barbatus", + "Agama barbata" + ], + "authorized_access_point": "Bartagame" + }, + { + "md5": "afd0ea3ead2176e05af4fae08b8dcd0e", + "pid": "953019209", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334212538", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85119760", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85119760" + } + ], + "authorized_access_point": "Self-incrimination" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4490382-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)953019209", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4490382-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Selbstbezichtigung", + "Selbstbelastung" + ], + "authorized_access_point": "Selbstbeschuldigung" + }, + { + "md5": "d05607e13d5a193b85097eb119f7705f", + "pid": "953056082", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Hebra\u0308ische Schrift (Druckschrift)" + }, + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4491111-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)953056082", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4491111-7", + "source": "GND" + } + ], + "authorized_access_point": "Frank-Ru\u0308hl-Hebra\u0308isch" + }, + { + "md5": "7667fe529a5fe80b79019d9045ce2950", + "pid": "95324590X", + "note": [ + { + "label": [ + "Benutzt, soweit au\u00dferhalb Finnlands lebend, sonst verknu\u0308pfe Finnland ; Frau" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausla\u0308nderin" + } + ], + "related": [ + { + "authorized_access_point": "Finnen" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331610125", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16634513", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16634513b" + } + ], + "authorized_access_point": "Finlandaises" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1008375284", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "26247-1", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/26247-1" + } + ], + "authorized_access_point": "Finnen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4494485-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)95324590X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4494485-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Finnische Frau" + ], + "authorized_access_point": "Finnin" + }, + { + "md5": "9b31e3ff7385fa156eb2206859f30db4", + "pid": "953354431", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Personenkontrolle" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133156705X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12317685", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12317685q" + } + ], + "authorized_access_point": "Contro\u0302les d'identite\u0301" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4497117-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)953354431", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4497117-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Identita\u0308tsfeststellung", + "Personalienfeststellung", + "Polizeiliche Personenfeststellung" + ], + "authorized_access_point": "Personenfeststellung" + }, + { + "md5": "ce0281273ed27ecea3fa39dd2a2a6129", + "pid": "953444201", + "note": [ + { + "label": [ + "Auf Sumatra gesprochen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4498755-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)953444201", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4498755-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Karo (Sprache)", + "Karo-Batak (Sprache)" + ], + "authorized_access_point": "Karo-Batak-Sprache" + }, + { + "md5": "68ffa365faf4510b53d4d0f31fd6b7b3", + "pid": "953463176", + "note": [ + { + "label": [ + "Gattung der Hu\u0308lsenfru\u0308chtler mit landwirtschaftl. Nutzpflanzen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Hu\u0308lsenfru\u0308chtler" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1300115416", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX550734", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX550734" + } + ], + "authorized_access_point": "Ajipa" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134541414", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh93006873", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh93006873" + } + ], + "authorized_access_point": "Pachyrhizus" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256243051", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "5486", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_5486" + } + ], + "authorized_access_point": "Pachyrhizus" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4499220-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)953463176", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4499220-8", + "source": "GND" + } + ], + "authorized_access_point": "Pachyrhizus" + }, + { + "md5": "3d2063e74b6683162b25132bf1731868", + "pid": "953467732", + "note": [ + { + "label": [ + "Dienstgrad von Wehrpflichtigen, die in der NVA Wehrdienst ohne Waffe leisteten" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kriegsdienstverweigerer" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4499305-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)953467732", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4499305-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Spatensoldat" + ], + "authorized_access_point": "Bausoldat" + }, + { + "md5": "469d55329ca84ef843e794d312992f08", + "pid": "953550346", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4500908-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)953550346", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4500908-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Indexzahl", + "Statistische Indexreihe", + "Dynamische Indexreihe" + ], + "authorized_access_point": "Indexreihe" + }, + { + "md5": "85318d0cf73f2497e05acb08678962ee", + "pid": "953679802", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zelle" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336596554", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D000078422", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000078422" + } + ], + "authorized_access_point": "Allogeneic Cells" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4502212-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)953679802", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4502212-4", + "source": "GND" + } + ], + "authorized_access_point": "Allogene Zelle" + }, + { + "md5": "c65740d3e7750f8deb0aa5814e15e9a2", + "pid": "953936503", + "note": [ + { + "label": [ + "Wikipedia unter Lager (Maschinenelement) - https://de.wikipedia.org/w/index.php?title=Lager_(Maschinenelement)&oldid=243251254#Radial-Axial-Lager_%28Radiaxlager%29" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gleitlager" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4507097-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)953936503", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4507097-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Radial-Axialgleitlager" + ], + "authorized_access_point": "Radial-Axialbund-Gleitlager" + }, + { + "md5": "7efdf33e888cfb50b3c7e58f36ae26aa", + "pid": "954021185", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4507704-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)954021185", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4507704-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Abfolge", + "Sequenz (Gemeinsprache)", + "Sequenz (Abfolge)", + "Sequenz (Reihenfolge)" + ], + "authorized_access_point": "Reihenfolge" + }, + { + "md5": "6137b4a04467b89998b9fea77ed24620", + "pid": "95406853X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schiff (Architektur)" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334557225", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15085485", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb150854851" + } + ], + "authorized_access_point": "Bas-co\u0302te\u0301s (architecture)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4508348-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)95406853X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4508348-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Nebenschiff" + ], + "authorized_access_point": "Seitenschiff" + }, + { + "md5": "5f7383e34edb00965992ce211927d8dd", + "pid": "954068572", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334556873", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13508234", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb135082347" + } + ], + "authorized_access_point": "Nefs (architecture)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4508350-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)954068572", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4508350-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Kirchenschiff" + ], + "authorized_access_point": "Schiff (Architektur)" + }, + { + "md5": "3f0b1f5a80c7dccc4b686eb2fa2bb46c", + "pid": "954203232", + "note": [ + { + "label": [ + "Bantusprache in Tansania" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Bantusprachen" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113442034X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85009040", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85009040" + } + ], + "authorized_access_point": "Asu language" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113442034X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF14470028", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb144700287" + } + ], + "authorized_access_point": "Asu (langue)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4509866-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)954203232", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4509866-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Asu-Sprache", + "Chasu-Sprache" + ], + "authorized_access_point": "Pare-Sprache" + }, + { + "md5": "91f48e9784a0968b5df8b1e32b4fa173", + "pid": "954206738", + "note": [ + { + "label": [ + "Wert der Verminderung zuku\u0308nftiger Risiken hinsichtlich irreversibler zuku\u0308nftiger Nutzungen von Umweltgu\u0308tern durch pra\u0308ventive Umweltschutzinvestitionen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4509905-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)954206738", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4509905-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Umwelto\u0308konomie (Umwelto\u0308konomie)" + ], + "authorized_access_point": "Optionswert (Umwelto\u0308konomie)" + }, + { + "md5": "f6b300f57ee72106c75f24f89e77e772", + "pid": "954211774", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "related": [ + { + "authorized_access_point": "Chipkarte" + }, + { + "authorized_access_point": "Funktelefon" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4509985-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)954211774", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4509985-6", + "source": "GND" + } + ], + "authorized_access_point": "Chipy (Programm)" + }, + { + "md5": "b4c715d7b2cde5e10d6fcd68703e4021", + "pid": "954299973", + "note": [ + { + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung und hier nicht permutierender Wortart, z.B. Mittelhochdeutsch ; Adjektiv ; guot" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4511160-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)954299973", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4511160-1", + "source": "GND" + } + ], + "authorized_access_point": "guot" + }, + { + "md5": "7df6852beaee5f7b12dc9e9585e088a5", + "pid": "95439836X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Materie" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332896871", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF177105", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17710562g" + } + ], + "authorized_access_point": "Mate\u0301rialite\u0301" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4512697-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)95439836X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4512697-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Stofflichkeit" + ], + "authorized_access_point": "Materialita\u0308t" + }, + { + "md5": "3a6fadcd5e1f6599cb9bc46810b1d862", + "pid": "95462839X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "related": [ + { + "authorized_access_point": "Klein- und Mittelbetrieb" + }, + { + "authorized_access_point": "Anlagegut" + }, + { + "authorized_access_point": "Absetzung fu\u0308r Abnutzung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4515541-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)95462839X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4515541-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Windows 3.1", + "Windows 95" + ], + "authorized_access_point": "PRESTO AfA" + }, + { + "md5": "473d5b83e968b0171bb1fb802f66807b", + "pid": "954658248", + "note": [ + { + "label": [ + "Art d. Afrikanischen Buntbarsche" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333965699", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85135344", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85135344" + } + ], + "authorized_access_point": "Tilapia zillii" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333965699", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17838469", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb178384694" + } + ], + "authorized_access_point": "Coptodon zillii" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256264210", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "35437", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_35437" + } + ], + "authorized_access_point": "Tilapia zillii" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4516008-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)954658248", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4516008-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Zilles Buntbarsch", + "Tilapia zilli" + ], + "authorized_access_point": "Tilapia zillii" + }, + { + "md5": "0b2cadd9179e2ae15fc558e5cb759ffe", + "pid": "95469483X", + "note": [ + { + "label": [ + "Due Diligence (engl. \u201egebotene Sorgfalt\u201c) bezeichnet im US-amerikanischen Recht einen Verhaltensma\u00dfstab, der zwecks Haftungsvermeidung zu beachten ist. U\u0308ber diese allgemeine Bedeutung hinaus wird die Bezeichnung im gesellschaftsrechtlichen Kontext fu\u0308r die sorgfa\u0308ltige Pru\u0308fung der wirtschaftlichen und rechtlichen Verha\u0308ltnisse eines Unternehmens verwendet, deren Ergebnisse im Rahmen der Unternehmensfu\u0308hrung als Informationsgrundlage beno\u0308tigt werden, etwa zur Vorbereitung der Unternehmensvera\u0308u\u00dferung, des Bo\u0308rsengangs, einer Kreditgewa\u0308hrung gegenu\u0308ber dem Unternehmen oder zur Ermittlung der Ho\u0308he von Abfindungsanspru\u0308chen.", + "Mergers and Acquisitions ist nicht pleonastisch" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Sorgfaltspflicht" + }, + { + "authorized_access_point": "Unternehmensbewertung" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1019866322", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "29559-2", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/29559-2" + } + ], + "authorized_access_point": "Due Diligence" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4516677-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)95469483X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4516677-8", + "source": "GND" + } + ], + "authorized_access_point": "Due Diligence" + }, + { + "md5": "79e47c3cf4a97c78e1318d09b4dcd581", + "pid": "95471752X", + "note": [ + { + "label": [ + "Lt. NCBI-Taxonomy Gattung aus d. UF Luciocephalinae=Hechtkopfartige.(Fru\u0308her UF Trichogasterinae). Einige Trichogasterarten werden der Gattung Zwergfadenfisch=Colisa zugeordnet und haben den Gattungsnamen Trichogaster als Synonym." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gro\u00dfguramis" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333955340", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85137463", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85137463" + } + ], + "authorized_access_point": "Trichogaster" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333955340", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17805195", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17805195h" + } + ], + "authorized_access_point": "Trichogaster" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4517241-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)95471752X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4517241-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Trichogaster" + ], + "authorized_access_point": "Fadenfisch (Gattung)" + }, + { + "md5": "73d366a09e46609c906785c0856c8f70", + "pid": "954752554", + "note": [ + { + "label": [ + "Russ. evangelikale Sekte" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sekte" + }, + { + "authorized_access_point": "Evangelikale Bewegung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331867657", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85098434", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85098434" + } + ], + "authorized_access_point": "Pashkovism" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4517749-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)954752554", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4517749-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Pas\u030ckovcy" + ], + "authorized_access_point": "Paschkowianer" + }, + { + "md5": "b55b3ecc76e45f9fb59a74ecd6f209de", + "pid": "954782232", + "note": [ + { + "label": [ + "Bezeichnet die u\u0308berlieferten Kenntnisse, Fa\u0308higkeiten und Weltbilder, die in einer bestimmten natu\u0308rlichen Umwelt und einem bestimmten kulturellen Rahmen entstanden sind." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Alltagswissen" + } + ], + "related": [ + { + "authorized_access_point": "Implizites Wissen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4518241-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)954782232", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4518241-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Indigenes Wissen", + "Traditionelles Wissen", + "Indigenous knowledge" + ], + "authorized_access_point": "Lokales Wissen" + }, + { + "md5": "33b04556c150137fe7f88882a348ae29", + "pid": "95489748X", + "note": [ + { + "label": [ + "Programm zur Simulierung von Zielvorstellungen fu\u0308r Umweltvera\u0308nderung und nachhaltige Entwicklung, erarbeitet vom Rijksinstituut voor Volksgezondheit en Milieu (Bilthoven, NL)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "related": [ + { + "authorized_access_point": "Umweltvera\u0308nderung" + }, + { + "authorized_access_point": "Nachhaltigkeit" + }, + { + "authorized_access_point": "Zielvorstellung" + }, + { + "authorized_access_point": "Modell" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4519867-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)95489748X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4519867-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Tool to Assess Regional and Global Environmental and Health Targets for Sustainability" + ], + "authorized_access_point": "TARGETS (Programm)" + }, + { + "md5": "2a5b9c812159777fd06d72c5b91c00e7", + "pid": "955150507", + "note": [ + { + "label": [ + "Fayencewandfliesen mit ornamentalem oder figu\u0308rlichem Dekor, die von den Mauren auf der Iberischen Halbinsel eingefu\u0308hrt wurden; spa\u0308ter neben Portugal u. Spanien auch in deren Kolonien verbreitet; oft in Form von grossen Tableaus verwendet." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fayencefliese" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332766943", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11994207", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11994207n" + } + ], + "authorized_access_point": "Azulejos" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1299918867", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX529896", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX529896" + } + ], + "authorized_access_point": "Azulejos" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4522486-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)955150507", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4522486-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Azulejos" + ], + "authorized_access_point": "Azulejo" + }, + { + "md5": "281300961f33cbd9610d9bf1921790cb", + "pid": "955181178", + "note": [ + { + "label": [ + "Fu\u0308r vorliegendes audiovisuelles Material, das nicht unter einen der zugelassenen Unterbegriffe fa\u0308llt, oder eine Kombination von mindestens zwei audiovisuellen Materialien; nicht fu\u0308r elektronische Publikationen.", + "Nur als Form-SW zula\u0308ssig" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4523048-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)955181178", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4523048-1", + "source": "GND" + } + ], + "authorized_access_point": "Audiovisuelles Material (fu\u0308r Kinder)" + }, + { + "md5": "e508071fb7961645f4a1929f5b20d7ac", + "pid": "955244641", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Informierte_Einwilligung&oldid=242937451" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Einwilligung zur Teilnahme an einem Versuch, Behandlung oder Forschung nach vorheriger eingehender Aufkla\u0308rung", + "Nicht im Zusammenhang mit sexuellen Praktiken zu verwenden, verwende hier das SW \"Einwilligung\"" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Einwilligung" + } + ], + "related": [ + { + "authorized_access_point": "A\u0308rztliche Aufkla\u0308rungspflicht" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113413603X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85066306", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85066306" + } + ], + "authorized_access_point": "Informed consent (Medical law)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113413603X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12048898", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12048898z" + } + ], + "authorized_access_point": "Consentement e\u0301claire\u0301 (droit me\u0301dical)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)129990534X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX542468", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX542468" + } + ], + "authorized_access_point": "Consentimiento informado (Derecho me\u0301dico)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4524137-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)955244641", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4524137-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Informed consent", + "Einwilligung nach erfolgter Aufkla\u0308rung", + "Informiertes Einversta\u0308ndnis", + "Informierte Zustimmung", + "Patient" + ], + "authorized_access_point": "Informierte Einwilligung" + }, + { + "md5": "be60837ede0469fea2e2adc2eb035eab", + "pid": "955249929", + "note": [ + { + "label": [ + "Familie der Knochenfische" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134450273", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2003001333", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2003001333" + } + ], + "authorized_access_point": "Snakeheads (Fish)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134450273", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF14589077", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb145890770" + } + ], + "authorized_access_point": "Channidae" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4524273-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)955249929", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4524273-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Schlangenko\u0308pfe", + "Channidae", + "Ophicephalidae" + ], + "authorized_access_point": "Schlangenkopffische" + }, + { + "md5": "b7f4c3806967de8152087e72d1f02f31", + "pid": "955286999", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Hofmusik" + }, + { + "authorized_access_point": "Tanzmusik" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332662544", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2011000868", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2011000868" + } + ], + "authorized_access_point": "Court dances (Music)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4524885-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)955286999", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4524885-0", + "source": "GND" + } + ], + "authorized_access_point": "Ho\u0308fische Tanzmusik" + }, + { + "md5": "05fe917d95bf6e9e1a9910a54ca9fd4f", + "pid": "955297966", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gemeinnu\u0308tziges Unternehmen" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133959911", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11945380", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119453806" + } + ], + "authorized_access_point": "E\u0301tablissements et services d'aide par le travail" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4525077-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)955297966", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4525077-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Integrationsfirma" + ], + "authorized_access_point": "Selbsthilfefirma" + }, + { + "md5": "1726540cedecbcfbedbb36541c5588a8", + "pid": "955324300", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Helium" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134227558", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85077369", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85077369" + } + ], + "authorized_access_point": "Liquid helium" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134227558", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12242449", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12242449j" + } + ], + "authorized_access_point": "He\u0301lium liquide" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254347356", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "19751", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/19751" + } + ], + "authorized_access_point": "Elio liquido" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4525343-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)955324300", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4525343-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Helium", + "Liquid helium" + ], + "authorized_access_point": "Flu\u0308ssiges Helium" + }, + { + "md5": "1718322024d0d2868364f92e7b00eb4c", + "pid": "955497205", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333483384", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85144937", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85144937" + } + ], + "authorized_access_point": "Walleye (Fish)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333483384", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17805480", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb178054809" + } + ], + "authorized_access_point": "Dore\u0301 jaune" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4527911-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)955497205", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4527911-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Stizostedion vitreum", + "Perca vitrea", + "Perca salmonea", + "Lucioperca americana" + ], + "authorized_access_point": "Glasaugenbarsch" + }, + { + "md5": "bc3262ee42b3e3e4bf09e98c21dc2d4d", + "pid": "955510392", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134731035", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11938453", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119384533" + } + ], + "authorized_access_point": "Mesure" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4528272-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)955510392", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4528272-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Kettenstruktur (Messtechnik)", + "Reihenschaltung" + ], + "authorized_access_point": "Messkette (Schaltung)" + }, + { + "md5": "95b4c171b00fff1d6f9d88649984080c", + "pid": "955522552", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Turm" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334015155", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh00004969", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00004969" + } + ], + "authorized_access_point": "Watchtowers" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334015155", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16902666", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16902666m" + } + ], + "authorized_access_point": "Tours de guet" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4528427-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)955522552", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4528427-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Wachturm", + "Wartturm", + "Warte" + ], + "authorized_access_point": "Wachtturm" + }, + { + "md5": "19c483c13e3ce84bbd7caca44c7a2d41", + "pid": "955631963", + "type": "bf:Topic", + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333268149", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh88004894", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh88004894" + } + ], + "authorized_access_point": "Labroides dimidiatus" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333268149", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17803581", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17803581f" + } + ], + "authorized_access_point": "Labroides dimidiatus" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4529376-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)955631963", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4529376-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Labroides dimidiatus", + "Labrus dimidiatus" + ], + "authorized_access_point": "Meerschwalbe" + }, + { + "md5": "ce069b7a611f18bfceddc811b8515c66", + "pid": "955633087", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Windkanal" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4529416-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)955633087", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4529416-1", + "source": "GND" + } + ], + "authorized_access_point": "Plasmawindkanal" + }, + { + "md5": "319155cd3ed123dc20d4ecf446aaaa3b", + "pid": "955671906", + "note": [ + { + "label": [ + "Zusammenfassende Bezeichnung fu\u0308r Neuronale Netze, in denen der Puls die verwendete Informationseinheit beschreibt.", + "Ansetzung nach Auskunft der Uni Bonn (Prof. Dr. Anlauf, Dipl. Ing. C. Grassmann)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Neuronales Netz" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4529621-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)955671906", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4529621-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Pulsgekoppeltes neuronales Netz", + "Pulskodiertes neuronales Netz", + "Pulscodiertes neuronales Netz", + "PCNN", + "Pulse coupled neural networks", + "Spikendes neuronales Netz", + "Pulsed neural network", + "Spiking neural network", + "Impulskodierendes neuronales Netz" + ], + "authorized_access_point": "Pulsverarbeitendes neuronales Netz" + }, + { + "md5": "b3c04172cc10284288e9669ef12096f3", + "pid": "955777844", + "note": [ + { + "label": [ + "Krieg zwischen Schweden unter Karl X. Gustav und Da\u0308nemark; nach dem Tod Karls wurde am 3.5.1660 der Friede von Oliva und am 6.6.1660 der Friede von Kopenhagen geschlossen." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Krieg" + } + ], + "related": [ + { + "authorized_access_point": "Schwedisch-polnisch-da\u0308nischer Krieg" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)127182888X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85035763", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85035763" + } + ], + "authorized_access_point": "Dano-Swedish Wars, 1657-1660" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4530836-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)955777844", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4530836-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Da\u0308nisch-Schwedischer Krieg (1657-1660)" + ], + "authorized_access_point": "Schwedisch-Da\u0308nischer Krieg (1657-1660)" + }, + { + "md5": "4ee953e4da64869bca787c260d9fe637", + "pid": "955845483", + "note": [ + { + "label": [ + "Gattung der Buntbarsche" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Buntbarsche" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333965303", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15597084", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb155970844" + } + ], + "authorized_access_point": "Oreochromis" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256242535", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "26596", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_26596" + } + ], + "authorized_access_point": "Oreochromis" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4531766-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)955845483", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4531766-5", + "source": "GND" + } + ], + "authorized_access_point": "Oreochromis" + }, + { + "md5": "a271df780322faf5863b2ec02dbf053b", + "pid": "955952638", + "note": [ + { + "label": [ + "Lektine, die spez. \u00df-Galactosidase binden." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Lectine" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4534183-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)955952638", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4534183-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Galektine" + ], + "authorized_access_point": "Galectine" + }, + { + "md5": "4644d0857effd615b7921de002ca865c", + "pid": "956033679", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Britisch-Amerikanischer Krieg" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1239387687", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85145353", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85145353" + } + ], + "authorized_access_point": "Washington (D.C.) - History - Capture by the British, 1814" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4536367-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)956033679", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4536367-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Washington, DC (1814)" + ], + "authorized_access_point": "Washington (DC) - Eroberung (1814)" + }, + { + "md5": "6e28cf698f67abd6ae37957e232467c9", + "pid": "956220495", + "note": [ + { + "label": [ + "Benutzt, soweit im Ausland lebend" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausla\u0308ndischer Student" + }, + { + "authorized_access_point": "Ruma\u0308nen" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134821441", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2008001682", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2008001682" + } + ], + "authorized_access_point": "Romanian students" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134821441", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17141239", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17141239z" + } + ], + "authorized_access_point": "E\u0301tudiants roumains" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4539828-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)956220495", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4539828-8", + "source": "GND" + } + ], + "authorized_access_point": "Ruma\u0308nischer Student" + }, + { + "md5": "70da54b422ad151ea90c39bccc2c6e93", + "pid": "956635709", + "note": [ + { + "label": [ + "C5H6-SO2-NH2" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Weichmacher" + }, + { + "authorized_access_point": "Benzolderivate" + }, + { + "authorized_access_point": "Sulfonamide" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4548010-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)956635709", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4548010-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Benzolsulfamid", + "CAS 98-10-2" + ], + "authorized_access_point": "Benzolsulfonamid" + }, + { + "md5": "1eb1e9c371f8c4bfb0c237758dfae378", + "pid": "956643221", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4548250-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)956643221", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4548250-0", + "source": "GND" + } + ], + "authorized_access_point": "Tukangbesi" + }, + { + "md5": "ed9de9648f7f31cc9573bcca8ac75e63", + "pid": "956836976", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ku\u0308nstlerin" + } + ], + "related": [ + { + "authorized_access_point": "Grafiker" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331597935", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2022007951", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2022007951" + } + ], + "authorized_access_point": "Women graphic artists" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4550852-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)956836976", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4550852-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Graphikerin" + ], + "authorized_access_point": "Grafikerin" + }, + { + "md5": "5ca95bccebd3591c7de128cd3d610843", + "pid": "956838049", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Programmierumgebung" + } + ], + "related": [ + { + "authorized_access_point": "SAP R/3" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4550881-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)956838049", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4550881-1", + "source": "GND" + } + ], + "authorized_access_point": "Borland Delphi/Connect fu\u0308r SAP" + }, + { + "md5": "e0e17567a171462a6ffb3d35a3fa2837", + "pid": "957133235", + "note": [ + { + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung und hier nicht permutierender Wortart; z.B. SWW Deutsch ; Pronomen ; beide" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4554787-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)957133235", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4554787-7", + "source": "GND" + } + ], + "authorized_access_point": "beide" + }, + { + "md5": "a8a709f18f06c62db164065fa1cb00da", + "pid": "957192517", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Antiarrhythmikum" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)124159175X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D001073", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D001073" + } + ], + "authorized_access_point": "Aprindine" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4555512-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)957192517", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4555512-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Aprindina", + "Aprindine", + "Aprindinum", + "CAS 37640-71-4" + ], + "authorized_access_point": "Aprindin" + }, + { + "md5": "5c3fa84fdf98ebc6bba01d149fd489c2", + "pid": "957193599", + "note": [ + { + "label": [ + "Vertrag zur Regelung von gegenseitigen Reparationszahlungen zwischen Gro\u00dfbritannien und USA fu\u0308r Scha\u0308den im amerikan. Bu\u0308rgerkrieg" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4555543-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)957193599", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4555543-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Washington, DC (1871)" + ], + "authorized_access_point": "Washington (DC) - Vertrag (1871)" + }, + { + "md5": "c05379e4f8c77b9e8e3059efc2b25194", + "pid": "957331673", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gie\u00dferei" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4558147-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)957331673", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4558147-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Geschu\u0308tz" + ], + "authorized_access_point": "Geschu\u0308tzgie\u00dferei" + }, + { + "md5": "c8d356f61742eb8b282f9149303feb9c", + "pid": "957331940", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tanz" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4558162-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)957331940", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4558162-9", + "source": "GND" + } + ], + "authorized_access_point": "Sa\u0308beltanz" + }, + { + "md5": "3b87ffd85a47edec8160bb122fb6b8f5", + "pid": "957564554", + "note": [ + { + "label": [ + "Terminus der Phototechnik" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4561589-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)957564554", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4561589-5", + "source": "GND" + } + ], + "authorized_access_point": "Farbkupplung" + }, + { + "md5": "be2f2d43f9321ba261a7898f6ecdd113", + "pid": "95765894X", + "note": [ + { + "label": [ + "benutzt, soweit im Ausland lebend" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausla\u0308ndischer Student" + }, + { + "authorized_access_point": "Inder" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134821379", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85040564", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85040564" + } + ], + "authorized_access_point": "East Indian students" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134821379", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18034849", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb18034849d" + } + ], + "authorized_access_point": "E\u0301tudiants indiens (de l'Inde)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4563960-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)95765894X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4563960-7", + "source": "GND" + } + ], + "authorized_access_point": "Indischer Student" + }, + { + "md5": "eea475445fb98f3acb2731e951777fa4", + "pid": "957705611", + "note": [ + { + "label": [ + "1998 ersch." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "related": [ + { + "authorized_access_point": "Auftragsabwicklung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4565110-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)957705611", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4565110-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Fakt-Star-Extra", + "MS-DOS 5.0", + "Windows 3.1" + ], + "authorized_access_point": "Fakt-Star extra" + }, + { + "md5": "6c26d6044b181c5e1edac427c2d413fc", + "pid": "958121966", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Linguistik" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4572685-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)958121966", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4572685-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Volkslinguistik" + ], + "authorized_access_point": "Laienlinguistik" + }, + { + "md5": "ebcef59693eb4beac309175f24509938", + "pid": "958190453", + "note": [ + { + "label": [ + "Erzstufen, die eine Handfla\u0308che ausfu\u0308llen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4574751-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)958190453", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4574751-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Handstu\u0308ck" + ], + "authorized_access_point": "Handstein" + }, + { + "md5": "c522b1917cf37cf99186862dfb9b989a", + "pid": "958195455", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Folge (Mathematik)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4575172-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)958195455", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4575172-9", + "source": "GND" + } + ], + "authorized_access_point": "Doppelfolge" + }, + { + "md5": "1d97f9fdc28652b5e4b34620ff2fc994", + "pid": "958195889", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Veredelung (Pflanzenbau)" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256242187", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "1132", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_1132" + } + ], + "authorized_access_point": "budding (grafting)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4575226-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)958195889", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4575226-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Augenveredelung" + ], + "authorized_access_point": "Okulation" + }, + { + "md5": "0f921ac2e4ee1e725accece72d0d45e1", + "pid": "958224625", + "note": [ + { + "label": [ + "1995 ersch." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "related": [ + { + "authorized_access_point": "Wirtschaftssprache" + }, + { + "authorized_access_point": "Sprachkurs" + }, + { + "authorized_access_point": "Englisch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4576050-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)958224625", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4576050-0", + "source": "GND" + } + ], + "variant_access_point": [ + "MS-DOS" + ], + "authorized_access_point": "COACH 5.0" + }, + { + "md5": "246aae2ce3ba7fc48f728175fa02e051", + "pid": "958467102", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4580391-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)958467102", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4580391-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Kanay", + "Kenja", + "Kenjah", + "Kehja", + "Kinyah" + ], + "authorized_access_point": "Kenyah" + }, + { + "md5": "e3f0ab22090baa35cd7cf2c592a0c7ac", + "pid": "958503001", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sperrschichtgleichrichter" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4581262-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)958503001", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4581262-7", + "source": "GND" + } + ], + "authorized_access_point": "Selengleichrichter" + }, + { + "md5": "4581ada1627e58db273d814f544d651d", + "pid": "958508402", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331749921", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2010013672", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2010013672" + } + ], + "authorized_access_point": "Walpurgis Night" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331749921", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16626256", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb166262562" + } + ], + "authorized_access_point": "Nuit de Walpurgis" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4581377-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)958508402", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4581377-2", + "source": "GND" + } + ], + "authorized_access_point": "Walpurgisnacht" + }, + { + "md5": "9415c4db60274f8e3f78ef4c78da70d2", + "pid": "958577447", + "note": [ + { + "label": [ + "Funde der Urnenfelderkultur im Gebiet der Mittleren Iser, Nordbo\u0308hm. Gebiet" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Urnenfelderkultur" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4582452-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)958577447", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4582452-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Turnover Typ" + ], + "authorized_access_point": "Turnover Typus" + }, + { + "md5": "a38d509d8771024d03ed9974ba0adf2b", + "pid": "958745307", + "note": [ + { + "label": [ + "DVD-Applikation und -standard zum Verbreiten und Abspielen von bewegten Bildern", + "Verwendet als Sach- und Formschlagwort; \"DVD-Video\" wird nur dann als Formschlagwort benutzt, wenn als Abspielgera\u0308te DVD-Player und TVs ausreichen; Videos mit interaktiven Lernprogrammen erfordern einen Computer und bekommen als Formschlagwort \"DVD-Rom\"." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "DVD" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133861857", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh99002636", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh99002636" + } + ], + "authorized_access_point": "DVD-Video discs" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133861857", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13514055", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13514055w" + } + ], + "authorized_access_point": "DVD vide\u0301o" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4585125-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)958745307", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4585125-6", + "source": "GND" + } + ], + "variant_access_point": [ + "DVD-Film" + ], + "authorized_access_point": "DVD-Video" + }, + { + "md5": "8fc970ae6f6884763bf398b312add87d", + "pid": "958745374", + "note": [ + { + "label": [ + "DVD-Applikation und -standard zum Verbreiten und Abspielen von Audiodaten", + "Verwendet als Sach- und Formschlagwort" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "DVD" + }, + { + "authorized_access_point": "Tontra\u0308ger" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133861881", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2001004459", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2001004459" + } + ], + "authorized_access_point": "DVD-Audio discs" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133861881", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13514059", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb135140598" + } + ], + "authorized_access_point": "DVD audio" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4585129-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)958745374", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4585129-3", + "source": "GND" + } + ], + "authorized_access_point": "DVD-Audio" + }, + { + "md5": "b28e5984c200eb0fc06389ca3f08069f", + "pid": "958745404", + "note": [ + { + "label": [ + "DVD-Applikation und -standard zum Verbreiten und Abspielen von Daten", + "Verwendet als Sach- und Formschlagwort; als Formschlagwort fu\u0308r alle Arten von DVDs, fu\u0308r die ein Computer als Abspielgera\u0308t notwendig ist (vgl. auch Hinweis bei \"DVD-Video\")." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "DVD" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133880940", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh00009187", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00009187" + } + ], + "authorized_access_point": "DVD-ROMs" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133880940", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13616261", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb136162611" + } + ], + "authorized_access_point": "DVD-ROM" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4585131-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)958745404", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4585131-1", + "source": "GND" + } + ], + "authorized_access_point": "DVD-ROM" + }, + { + "md5": "aa037ce4f600daf4cec162c75a391042", + "pid": "959143459", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gera\u0308t" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4592565-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)959143459", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4592565-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Fahrbares Gera\u0308t", + "Mobiles Gera\u0308t", + "Tragbares Gera\u0308t" + ], + "authorized_access_point": "Transportables Gera\u0308t" + }, + { + "md5": "cc3ec095f427f275038a5e354d9c7eda", + "pid": "959148477", + "note": [ + { + "label": [ + "Verbreitung: Su\u0308dcelebes" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4592664-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)959148477", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4592664-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Tolaki" + ], + "authorized_access_point": "Kendari" + }, + { + "md5": "ead7f6bb6d3d6d13ab682f2381c3d7f1", + "pid": "959148485", + "note": [ + { + "label": [ + "Verbreitung: Celebes, Distrikte Bungku u. Labota; Kabaena Is." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4592665-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)959148485", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4592665-7", + "source": "GND" + } + ], + "authorized_access_point": "Bungku" + }, + { + "md5": "485bb7b6c63ebf117af8691be7d77025", + "pid": "959148523", + "note": [ + { + "label": [ + "Verbreitung: Celebes, zw. Towuti-See u. Tombuku-Bergland" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4592666-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)959148523", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4592666-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Mori (Sprache)", + "Aikoa" + ], + "authorized_access_point": "Mori-Sprache" + }, + { + "md5": "394cd20bb3397d02c163545a53b39059", + "pid": "959710248", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Abgeschlossenheit" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4603779-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)959710248", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4603779-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Cartesische Abgeschlossenheit" + ], + "authorized_access_point": "Kartesische Abgeschlossenheit" + }, + { + "md5": "e506693fe8e6fe65fe7d3ce5dc1471b8", + "pid": "959716688", + "note": [ + { + "label": [ + "Ostindonesische Sprachgruppe, vor allem in Westtimor gesprochen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Ostindonesische Sprachen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4603925-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)959716688", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4603925-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Atoni", + "Orang Gunung", + "Orang Timor", + "Timol", + "Timor", + "Timoresisch", + "Uab Atoni Pah Meto", + "Uab Pah Meto" + ], + "authorized_access_point": "Uab Meto" + }, + { + "md5": "e3c5c6676a809bac4f957d7027f41741", + "pid": "959740864", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4604725-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)959740864", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4604725-6", + "source": "GND" + } + ], + "authorized_access_point": "Meteorologisches Feld" + }, + { + "md5": "e6ec1ec6bff6e7269d4f2a4a94b959e1", + "pid": "959794859", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + }, + { + "authorized_access_point": "Gayo" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134818963", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85053584", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85053584" + } + ], + "authorized_access_point": "Gayo language" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134818963", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16172335", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16172335k" + } + ], + "authorized_access_point": "Gayo (langue)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254315152", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "64", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/64" + } + ], + "authorized_access_point": "Lingua gayo" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4605656-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)959794859", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4605656-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Gajo-Sprache" + ], + "authorized_access_point": "Gayo-Sprache" + }, + { + "md5": "bdfb8349ca8b4f3becd920b6045cda91", + "pid": "959794921", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4605659-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)959794921", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4605659-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Ku\u0308sten-Dajak-Sprache", + "See-Dajak-Sprache" + ], + "authorized_access_point": "Iban-Sprache" + }, + { + "md5": "ba056c49921b869baa95f68fabec809e", + "pid": "959794972", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134818971", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85079988", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85079988" + } + ], + "authorized_access_point": "Makasar language" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134818971", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13529312", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13529312v" + } + ], + "authorized_access_point": "Makasar (langue)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4605661-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)959794972", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4605661-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Macassarese", + "Makasarese", + "Tawna", + "Makassar (Sprache)" + ], + "authorized_access_point": "Makassarisch" + }, + { + "md5": "e6ce97448048233d742f19ea87a78217", + "pid": "959807241", + "note": [ + { + "label": [ + "System , das in der Lage ist, in einer periodischen Struktur Teilchen mit nichtverschwindender makroskopischen Geschwindigkeit zu transportieren, obwohl im zeitlichen Mittel keine Kraft wirkt" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4605880-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)959807241", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4605880-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Ratchet", + "Ratscheneffekt" + ], + "authorized_access_point": "Ratsche (Physik)" + }, + { + "md5": "e0471b82ba74f4ec35df181c66af84f2", + "pid": "959893202", + "note": [ + { + "label": [ + "skandinavische Kulturideologie des 17. -19. Jhs: proklamiert skandinavische U\u0308berlegenheit unter Berufung auf die Goten und ihren Sieg u\u0308ber Rom" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Nationalismus" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4607525-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)959893202", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4607525-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Goticismus", + "Go\u0308tizismus" + ], + "authorized_access_point": "Gotizismus" + }, + { + "md5": "36e47827e5d282e16e0adf40a6529ee9", + "pid": "959959750", + "note": [ + { + "label": [ + "O\u0308kologisches Computerprogramm" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "related": [ + { + "authorized_access_point": "O\u0308kologie" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4609145-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)959959750", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4609145-2", + "source": "GND" + } + ], + "authorized_access_point": "EcoBeaker 2.0" + }, + { + "md5": "b8bd47fa607f04b440129ce3b43cd8d2", + "pid": "959960775", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Honen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4609158-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)959960775", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4609158-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Precidor-Honen" + ], + "authorized_access_point": "Dornhonen" + }, + { + "md5": "fa10eb297fe01ba2f9ac982dea9b8296", + "pid": "959965831", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Diagnose" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133778232", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12344924", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb123449247" + } + ], + "authorized_access_point": "Diagnostic infirmier" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1241617775", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D009733", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D009733" + } + ], + "authorized_access_point": "Nursing Diagnosis" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4609251-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)959965831", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4609251-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Krankenpflege", + "Pflegediagnostik" + ], + "authorized_access_point": "Pflegediagnose" + }, + { + "md5": "7d20f3651fe0ac72b88131530cd70a54", + "pid": "960161872", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Konstruktion" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4613026-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)960161872", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4613026-3", + "source": "GND" + } + ], + "variant_access_point": [ + "A\u0308nderungskonstruktion" + ], + "authorized_access_point": "Anpassungskonstruktion" + }, + { + "md5": "c067c7e1e2447b2a2e75447db5575b4a", + "pid": "960175105", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Dokumentenverwaltungssystem" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4613370-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)960175105", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4613370-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Dokumenten Retrieval- und Informations-System" + ], + "authorized_access_point": "DORIS (Programm)" + }, + { + "md5": "dbcd7302498c3eeaaef749b153b70cb6", + "pid": "960375988", + "note": [ + { + "label": [ + "Schriftsprache der Batak-Gruppe" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134835191", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85012311", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85012311" + } + ], + "authorized_access_point": "Batak language" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4617338-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)960375988", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4617338-9", + "source": "GND" + } + ], + "authorized_access_point": "Batak-Sprache" + }, + { + "md5": "0479ac0fdf783e265526476fc04719ec", + "pid": "96037650X", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134200579", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85040270", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85040270" + } + ], + "authorized_access_point": "Dayak language" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134200579", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12179945", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12179945p" + } + ], + "authorized_access_point": "Langues dayak" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254418776", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX543421", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX543421" + } + ], + "authorized_access_point": "Lengua dayak" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4617354-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)96037650X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4617354-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Dayakisch", + "Dajak-Sprache" + ], + "authorized_access_point": "Dajakisch" + }, + { + "md5": "e06ecc714871e91a1ae9de83926c30aa", + "pid": "960658491", + "note": [ + { + "label": [ + "Gattung der Drosseln" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Drosseln" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333493878", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh93001601", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh93001601" + } + ], + "authorized_access_point": "Turdus" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333493878", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12266592", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12266592b" + } + ], + "authorized_access_point": "Turdus" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4620929-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)960658491", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4620929-3", + "source": "GND" + } + ], + "authorized_access_point": "Turdus" + }, + { + "md5": "f04e27fc8114b34c3efb221c20a38771", + "pid": "960733108", + "note": [ + { + "label": [ + "Gattung der Primelgewa\u0308chse" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Primelgewa\u0308chse" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134525567", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2009010914", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2009010914" + } + ], + "authorized_access_point": "Anthemis" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134525567", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12290124", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12290124x" + } + ], + "authorized_access_point": "Anthemis" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4622149-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)960733108", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4622149-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Anagallis" + ], + "authorized_access_point": "Gauchheil" + }, + { + "md5": "47df213a237c7fed54564dd789056d0d", + "pid": "960895175", + "note": [ + { + "label": [ + "Markenname", + "Verknu\u0308pfe mit einer Produktgruppe, z.B. Motorrad" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4624787-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)960895175", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4624787-7", + "source": "GND" + } + ], + "authorized_access_point": "Aprilia (Marke)" + }, + { + "md5": "ecbbc39db6fac83a5390b954d21d1db3", + "pid": "960936785", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Weltbu\u0308rgerin" + }, + { + "authorized_access_point": "Weltbu\u0308rgertum" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134570465", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15115323", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15115323x" + } + ], + "authorized_access_point": "Citoyennete\u0301 mondiale" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4625760-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)960936785", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4625760-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Kosmopolit" + ], + "authorized_access_point": "Weltbu\u0308rger" + }, + { + "md5": "2ce4bf87fff5ea9dc780224c8b6fba30", + "pid": "961049510", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sonde" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4628589-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)961049510", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4628589-1", + "source": "GND" + } + ], + "authorized_access_point": "Abwurfsonde" + }, + { + "md5": "4252966f1ebfb9d451b1fe19c8765842", + "pid": "961192356", + "note": [ + { + "label": [ + "Benutzt, soweit im Ausland lebend" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausla\u0308ndischer Student" + }, + { + "authorized_access_point": "Araber" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134821301", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85006344", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85006344" + } + ], + "authorized_access_point": "Arab students" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134821301", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16961808", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb169618080" + } + ], + "authorized_access_point": "E\u0301tudiants arabes" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4630739-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)961192356", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4630739-4", + "source": "GND" + } + ], + "authorized_access_point": "Arabischer Student" + }, + { + "md5": "5d17566f4afda35385ea47205bd500be", + "pid": "961236752", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Du\u0308ne" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4631459-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)961236752", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4631459-3", + "source": "GND" + } + ], + "authorized_access_point": "Altdu\u0308ne" + }, + { + "md5": "b1bf46c04a927e23ed5c808c5b7affb3", + "pid": "961468319", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ha\u0308ndler" + } + ], + "related": [ + { + "authorized_access_point": "Fischhandel" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113452787X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2019000240", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2019000240" + } + ], + "authorized_access_point": "Fishmongers" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113452787X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13337698", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13337698m" + } + ], + "authorized_access_point": "Poissonniers" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254384502", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "52128", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/52128" + } + ], + "authorized_access_point": "Pescivendoli" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4634759-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)961468319", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4634759-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Fische" + ], + "authorized_access_point": "Fischha\u0308ndler" + }, + { + "md5": "0733fb6d1dd8af8814ec45b5b52d4279", + "pid": "961897546", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausstellung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4641693-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)961897546", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4641693-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Ethnologische Ausstellung" + ], + "authorized_access_point": "Vo\u0308lkerkundliche Ausstellung" + }, + { + "md5": "ccf78f8b6c9cd70bb9ab2d6a2afb8951", + "pid": "961909021", + "note": [ + { + "label": [ + "Not-Postbefo\u0308rderung in wasserdichten, unter der Wasseroberfla\u0308che treibenden Zinkkugeln, angewendet 1871 zur Postbefo\u0308rderung in das belagerte Paris" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Post" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331570603", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13745361", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13745361v" + } + ], + "authorized_access_point": "Boules de Moulins" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4641892-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)961909021", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4641892-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Unterwasserpost", + "Schwimmkugelpost", + "Flusskugelpost", + "Boules-des-Moulins", + "Paris-par-Moulins" + ], + "authorized_access_point": "Zinkkugelpost" + }, + { + "md5": "0fd2b99733e887b8a37108362f0e7185", + "pid": "962005959", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ball" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333710399", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18096033", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb18096033j" + } + ], + "authorized_access_point": "Ballons de football" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1290726485", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85050423", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85050423" + } + ], + "authorized_access_point": "Footballs" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4643833-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)962005959", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4643833-6", + "source": "GND" + } + ], + "authorized_access_point": "Fu\u00dfball (Sportgera\u0308t)" + }, + { + "md5": "0366ba8ff8ddcb01032be065df35719e", + "pid": "962073881", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Pru\u0308fungsausschuss" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134561563", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85009476", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85009476" + } + ], + "authorized_access_point": "Audit committees" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134561563", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11939756", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119397566" + } + ], + "authorized_access_point": "Ve\u0301rification comptable" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254407812", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX558471", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX558471" + } + ], + "authorized_access_point": "Comite\u0301s de auditori\u0301a" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4644800-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)962073881", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4644800-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Corporate Audit Committee", + "Bilanzpru\u0308fungsausschuss" + ], + "authorized_access_point": "Audit Committee" + }, + { + "md5": "a4b67f6f1efac3780374bc5e5fbc882c", + "pid": "962075272", + "note": [ + { + "label": [ + "Fru\u0308her Familie schwerer, hochbeiniger Hu\u0308hnervo\u0308gel, heute als Unterfamilie Meleagridinae der Fasanenvo\u0308gel gefu\u0308hrt" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fasanenartige" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4644834-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)962075272", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4644834-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Meleagrididae" + ], + "authorized_access_point": "Truthu\u0308hner" + }, + { + "md5": "d73c9ed4e19421ac0a753a9cbd9c7e91", + "pid": "962256978", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Ho\u0308chstalemannisch" + }, + { + "authorized_access_point": "Walliserdeutsch" + }, + { + "authorized_access_point": "Schweizerdeutsch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4647862-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)962256978", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4647862-0", + "source": "GND" + } + ], + "authorized_access_point": "Mundart Ho\u0308chstalemannisch (Pra\u0308ttigau)" + }, + { + "md5": "241f4a33aceaff4b7c9d6523b4311268", + "pid": "962681539", + "note": [ + { + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung und hier nicht permutierender Wortart, z.B. SWW Franzo\u0308sisch ; Adjektiv ; droit" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4651342-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)962681539", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4651342-5", + "source": "GND" + } + ], + "authorized_access_point": "droit" + }, + { + "md5": "9b6186f1c64aef9ff16794ff899b2c5d", + "pid": "962794015", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Messgera\u0308t" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4654254-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)962794015", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4654254-1", + "source": "GND" + } + ], + "authorized_access_point": "Komparator (La\u0308ngenmessung)" + }, + { + "md5": "80f8f33e8cffd7c73ddd1140a10bd269", + "pid": "962846104", + "note": [ + { + "label": [ + "Art der Drosseln (Turdidae)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Drosseln" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333493991", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85013886", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85013886" + } + ], + "authorized_access_point": "Gray-cheeked thrush" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333493991", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15642549", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15642549x" + } + ], + "authorized_access_point": "Grive a\u0300 joues grises" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4655437-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)962846104", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4655437-3", + "source": "GND" + } + ], + "authorized_access_point": "Catharus minimus" + }, + { + "md5": "6cb028b64c5b599484618f387e971683", + "pid": "962883026", + "note": [ + { + "label": [ + "Als Homonymenzusatz bei Personenschlagwo\u0308rtern zugelassen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kritikerin" + } + ], + "related": [ + { + "authorized_access_point": "Kunstkritiker" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331761115", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85147442", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85147442" + } + ], + "authorized_access_point": "Women art critics" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331761115", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13506562", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13506562t" + } + ], + "authorized_access_point": "Femmes critiques d'art" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4656207-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)962883026", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4656207-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Kunst" + ], + "authorized_access_point": "Kunstkritikerin" + }, + { + "md5": "c036c10fcf094f05d9ac400acc5f9d47", + "pid": "963005553", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Makrelen und Thunfische" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134189834", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh99004145", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh99004145" + } + ], + "authorized_access_point": "Atlantic mackerel" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134189834", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12149035", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb121490358" + } + ], + "authorized_access_point": "Maquereau" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256234591", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "4498", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_4498" + } + ], + "authorized_access_point": "mackerel" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4657894-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)963005553", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4657894-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Europa\u0308ische Makrele", + "Scomber scrombrus" + ], + "authorized_access_point": "Makrele" + }, + { + "md5": "fb6b8eae8e92d906bcc8af52ceaeaffc", + "pid": "963125125", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausschuss" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4659913-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)963125125", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4659913-7", + "source": "GND" + } + ], + "authorized_access_point": "Wissenschaftlicher Ausschuss" + }, + { + "md5": "0faa18eea6937ee6a983d11c6eb19349", + "pid": "963127608", + "note": [ + { + "label": [ + "Oberster da\u0308n. Orden; gu\u0308ltige Form mit d. Statuen v. 1693 festgelegt." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Orden (Ehrenzeichen)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4659956-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)963127608", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4659956-3", + "source": "GND" + } + ], + "authorized_access_point": "Elefantenorden" + }, + { + "md5": "82976cce95be23d95fffe38e0f7db17e", + "pid": "96317066X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Manufaktur" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4661091-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)96317066X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4661091-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Spiegelglas" + ], + "authorized_access_point": "Spiegelglasmanufaktur" + }, + { + "md5": "913dadb82b152a401d684f5e9e8e35b8", + "pid": "963483927", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Altersversorgung" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)966914562", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "18739-4", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/18739-4" + } + ], + "authorized_access_point": "Private Altersvorsorge" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4665610-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)963483927", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4665610-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Private Alterssicherung", + "Riester-Rente", + "Private Altersvorsorge" + ], + "authorized_access_point": "Private Altersversorgung" + }, + { + "md5": "801b809969689850711a91a8dd64881e", + "pid": "963495046", + "note": [ + { + "label": [ + "Erkla\u0308rung des Verzichts auf bestimmte Rechte oder Einreden" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4666004-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)963495046", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4666004-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Verzichtserkla\u0308rung", + "Einrede", + "Verzicht", + "Renunziation", + "Waiver" + ], + "authorized_access_point": "Renuntiation" + }, + { + "md5": "d8d2b00700017c4bb18c96247f39384e", + "pid": "963553984", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ko\u0308rper (Algebra)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4667267-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)963553984", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4667267-9", + "source": "GND" + } + ], + "authorized_access_point": "Quadratischer Ko\u0308rper" + }, + { + "md5": "b53934e5624f27232b9ccde50f32fed0", + "pid": "963658166", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Romanist" + } + ], + "related": [ + { + "authorized_access_point": "Hispanistik" + }, + { + "authorized_access_point": "Hispanistin" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134176104", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85061068", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85061068" + } + ], + "authorized_access_point": "Hispanists" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134176104", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12122241", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12122241n" + } + ], + "authorized_access_point": "Hispanistes" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254389385", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "58143", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/58143" + } + ], + "authorized_access_point": "Ispanisti" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254440216", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX555556", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX555556" + } + ], + "authorized_access_point": "Hispanistas" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4669578-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)963658166", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4669578-3", + "source": "GND" + } + ], + "authorized_access_point": "Hispanist" + }, + { + "md5": "538d06c5aef9623dc306f2aa77bad751", + "pid": "963707884", + "note": [ + { + "label": [ + "Fischgattung" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Meerbarben" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333447876", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85088336", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85088336" + } + ], + "authorized_access_point": "Mullus" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333447876", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17093883", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17093883f" + } + ], + "authorized_access_point": "Mullus" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256238872", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "4981", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_4981" + } + ], + "authorized_access_point": "Mullus" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4670731-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)963707884", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4670731-1", + "source": "GND" + } + ], + "authorized_access_point": "Mullus" + }, + { + "md5": "6fbedff0740e6bb7a39715eeb02a91ab", + "pid": "963707906", + "note": [ + { + "label": [ + "Fischart" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333376200", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85123762", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85123762" + } + ], + "authorized_access_point": "Snook" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333376200", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17798724", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb177987242" + } + ], + "authorized_access_point": "Centropomus undecimalis" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4670732-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)963707906", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4670732-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Centropomus undecimalis" + ], + "authorized_access_point": "Olivgru\u0308ner Snook" + }, + { + "md5": "8bcadbbd9ca9e2a25c727fe561d7aac5", + "pid": "963708708", + "note": [ + { + "label": [ + "Familie der Barschfische" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333377517", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85057550.html", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85057550.html" + } + ], + "authorized_access_point": "Grunts (Fishes)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333377517", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16593896", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16593896h" + } + ], + "authorized_access_point": "Haemulidae" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4670781-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)963708708", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4670781-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Pomadasyidae", + "Grunzer", + "Haemulidae" + ], + "authorized_access_point": "Su\u0308\u00dflippen" + }, + { + "md5": "90bab6a1abfd5397f4e9f2c9942f7732", + "pid": "963708856", + "note": [ + { + "label": [ + "Westindonesische Sprache, Nordcelebes" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134835159", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh96010747", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh96010747" + } + ], + "authorized_access_point": "Tolitoli language" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4670794-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)963708856", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4670794-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Tontoli", + "Gage (Sprache)", + "Totoli" + ], + "authorized_access_point": "Tolitoli-Sprache" + }, + { + "md5": "60c27a7b699982e436a26597d23a8af1", + "pid": "963708872", + "note": [ + { + "label": [ + "Westindonesische Sprache, Nordcelebes" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4670798-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)963708872", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4670798-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Tiadje", + "Tialo", + "Dondo" + ], + "authorized_access_point": "Tomini-Sprache" + }, + { + "md5": "40d292e28390eaf404d94822bf861183", + "pid": "963711636", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Versuch" + } + ], + "related": [ + { + "authorized_access_point": "Untauglicher Versuch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4670829-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)963711636", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4670829-7", + "source": "GND" + } + ], + "variant_access_point": [ + "De\u0301lit manque\u0301" + ], + "authorized_access_point": "Fehlgeschlagener Versuch" + }, + { + "md5": "a322bfff6655e6a56ab89bb92e445971", + "pid": "964078880", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Riesenschlangen" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134673639", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15046308", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15046308q" + } + ], + "authorized_access_point": "Python vert" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4678979-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)964078880", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4678979-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Chondropython viridis", + "Morelia viridis" + ], + "authorized_access_point": "Gru\u0308ner Baumpython" + }, + { + "md5": "0194d8d1e0ee3ecece03ec30bf5d1ca2", + "pid": "964115166", + "note": [ + { + "label": [ + "Wiederherstellung eines naturnahen Zustandes in einem durch Eingriffe des Menschen zersto\u0308rten oder erheblich beeintra\u0308chtigten Teil der Landschaft im Rahmen von Naturschutz und Landschaftspflege" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Naturschutz" + } + ], + "related": [ + { + "authorized_access_point": "Naturnahe Gestaltung" + }, + { + "authorized_access_point": "Rekultivierung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4679877-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)964115166", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4679877-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Revitalisierung (Renaturierung, O\u0308kologie)", + "Rewilding" + ], + "authorized_access_point": "Renaturierung (O\u0308kologie)" + }, + { + "md5": "6af78ba4dfed637713bee539c81e42dc", + "pid": "964240254", + "note": [ + { + "label": [ + "DWDS - https://www.dwds.de/wb/H%C3%BCttenarbeiter" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Arbeiter am Hoch- u. Schmelzofen in der Eisenindustrie" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Arbeiter" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4681784-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)964240254", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4681784-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Hu\u0308ttner", + "Eisenhu\u0308ttenarbeiter", + "Hu\u0308ttenwerk" + ], + "authorized_access_point": "Hu\u0308ttenarbeiter" + }, + { + "md5": "10874a5db223a32c2b15d757bdc5cb0d", + "pid": "964240300", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4681786-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)964240300", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4681786-4", + "source": "GND" + } + ], + "authorized_access_point": "Stickerei (Motiv)" + }, + { + "md5": "f71d5f2e8e9054eceff6a9f07f5ed53d", + "pid": "964248026", + "note": [ + { + "label": [ + "GTP-bindende Proteine; Regulatoren fu\u0308r Zellfunktionen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kleine GTP-bindende Proteine" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133811779", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12488550", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12488550n" + } + ], + "authorized_access_point": "GTPases Rho" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4681926-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)964248026", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4681926-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Rho-GTPasen", + "Rho-GTPase", + "Rho-Guanosintriphosphatasen", + "Rho-Guanin-Triphosphatasen", + "EC 3.6.5.2", + "P21 (rho)Protein", + "Rho G-Proteins", + "Rho GTP-Binding Protein", + "Rho GTPases", + "Rho Protein P21", + "Rho Small GTP-Binding Proteins" + ], + "authorized_access_point": "Rho-Proteine" + }, + { + "md5": "6458a201774e2f762dbc6b6bdcd8e920", + "pid": "964334666", + "note": [ + { + "label": [ + "Art der Makrelen (Scombridae)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Makrelen und Thunfische" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333371233", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85025467", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85025467" + } + ], + "authorized_access_point": "Chub mackerel" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333371233", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17807471", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17807471t" + } + ], + "authorized_access_point": "Maquereau espagnol" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4683068-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)964334666", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4683068-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Scomber japonicus", + "Scomber japonicus japonicus", + "Pneumatophorus japonicus", + "Pneumatophorus colias", + "Thunmakrele", + "Chub mackerel" + ], + "authorized_access_point": "Mittelmeer-Makrele" + }, + { + "md5": "ae51212867ed59568647c8353a03b533", + "pid": "964339676", + "note": [ + { + "label": [ + "Zusammenklappbarer Fa\u0308cher mit Gestell aus Sta\u0308ben, die durch ein gefaltetes Blatt (meist aus Papier) miteinander verbunden sind." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fa\u0308cher" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4683225-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)964339676", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4683225-7", + "source": "GND" + } + ], + "authorized_access_point": "Faltfa\u0308cher" + }, + { + "md5": "9b7483ec1578e049921e294e4c181617", + "pid": "96441631X", + "note": [ + { + "label": [ + "Der Schreibschrift nachgebildete franz. Druckschrift, 1557 geschaffen von Robert Granjon" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4684771-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)96441631X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4684771-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Civilite\u0301-Schrift", + "Caracte\u0300res de civilite\u0301" + ], + "authorized_access_point": "Civilite\u0301 (Schrift)" + }, + { + "md5": "daf76e38e824dbd5502e5428cdfb768e", + "pid": "964421062", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Becher" + }, + { + "authorized_access_point": "Essgeschirr" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133852424", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85041219", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85041219" + } + ], + "authorized_access_point": "Eggcups" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133852424", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13335794", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb133357941" + } + ], + "authorized_access_point": "Coquetiers" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4684942-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)964421062", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4684942-7", + "source": "GND" + } + ], + "authorized_access_point": "Eierbecher" + }, + { + "md5": "f258fa42fdcd17ec98b64d3f92760999", + "pid": "964519194", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Messer" + }, + { + "authorized_access_point": "Hieb- und Sto\u00dfwaffe" + } + ], + "related": [ + { + "authorized_access_point": "Dolch" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334551006", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2002007547", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2002007547" + } + ], + "authorized_access_point": "Cutlasses" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334551006", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16672701", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb166727017" + } + ], + "authorized_access_point": "Couteaux de combat" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4686440-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)964519194", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4686440-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Kampf-Messer", + "Taktisches Einsatzmesser" + ], + "authorized_access_point": "Kampfmesser" + }, + { + "md5": "5fccda872780bc3151b9bcbf0c7b3fa1", + "pid": "964720272", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Messer" + }, + { + "authorized_access_point": "Jagdwaffe" + }, + { + "authorized_access_point": "Hieb- und Sto\u00dfwaffe" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334235244", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17711271", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17711271v" + } + ], + "authorized_access_point": "Couteaux de chasse" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4689877-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)964720272", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4689877-3", + "source": "GND" + } + ], + "authorized_access_point": "Jagdmesser" + }, + { + "md5": "a85ef1a82974d7904ea1da51f77e0f22", + "pid": "96473222X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Numerische Mathematik" + }, + { + "authorized_access_point": "Fluiddynamik" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1281121487", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17104887", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17104887c" + } + ], + "authorized_access_point": "Mode\u0301lisation CFD" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1281121487", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2007008173", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2007008173" + } + ], + "authorized_access_point": "Computational fluid dynamics" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4690080-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)96473222X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4690080-9", + "source": "GND" + } + ], + "variant_access_point": [ + "CFD", + "Computational fluid dynamics", + "Numerische Stro\u0308mungsmechanik", + "Stro\u0308mungsmechanik" + ], + "authorized_access_point": "Numerische Stro\u0308mungssimulation" + }, + { + "md5": "2dd4a2da97628aced7ea6b2808f3762b", + "pid": "964848651", + "note": [ + { + "label": [ + "Altweltlich-tropische Gattung der Johanniskrautgewa\u0308chse" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134521839", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85053063", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85053063" + } + ], + "authorized_access_point": "Garcinia" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134521839", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16649644", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb166496449" + } + ], + "authorized_access_point": "Garcinia" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1256215473", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "3190", + "source": "ITRFAO" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_3190" + } + ], + "authorized_access_point": "Garcinia" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4692790-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)964848651", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4692790-6", + "source": "GND" + } + ], + "authorized_access_point": "Garcinia" + }, + { + "md5": "2fdad8e35365a19657ef0af7004030ca", + "pid": "964866862", + "note": [ + { + "label": [ + "In der politischen Auseinandersetzung international gebra\u0308uchlich gewordene Bezeichnung fu\u0308r Staaten, deren Politik als unberechenbar und friedensgefa\u0308hrdend betrachtet wird" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Staat" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331527570", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16772002", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16772002t" + } + ], + "authorized_access_point": "E\u0301tats voyous" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4692880-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)964866862", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4692880-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Rogue State" + ], + "authorized_access_point": "Schurkenstaat" + }, + { + "md5": "cc62ed1034f2b2350caade0c15c7e8db", + "pid": "964979683", + "note": [ + { + "label": [ + "Da\u0308n.-schwed. Krieg 1675-1679" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Krieg" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4695869-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)964979683", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4695869-1", + "source": "GND" + } + ], + "authorized_access_point": "Schonischer Krieg" + }, + { + "md5": "388bbfbadf24be30fe03e3e8922177ba", + "pid": "965195686", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Angle-Klasse II" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4699051-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)965195686", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4699051-3", + "source": "GND" + } + ], + "authorized_access_point": "Angle-Klasse II/2" + }, + { + "md5": "927b1321ac7c6f44151b312d4a79177d", + "pid": "965252973", + "note": [ + { + "label": [ + "Verknu\u0308pfe mit Sprachbezeichnung und hier nicht permutierender Wortart; z.B. SWW Amerikanisches Englisch ; Interjektion ; O.K." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4699958-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)965252973", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4699958-9", + "source": "GND" + } + ], + "variant_access_point": [ + "O. K.", + "okay" + ], + "authorized_access_point": "O.K." + }, + { + "md5": "061deb0f263404f7852b4f01564770de", + "pid": "965367924", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Volkstanz" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134405928", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85116888", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85116888" + } + ], + "authorized_access_point": "Saltarellos" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134405928", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF14418759", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb144187594" + } + ], + "authorized_access_point": "Saltarelles" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254398546", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "70395", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/70395" + } + ], + "authorized_access_point": "Saltarelli" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4702316-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)965367924", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4702316-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Passo brabante", + "Pas de breban", + "Alta danza", + "Hupfauff", + "Hupfauf", + "Springtanz", + "Nachtanz", + "Tripla" + ], + "authorized_access_point": "Saltarello" + }, + { + "md5": "4207f03d6d295db538756e2d8ba0acd5", + "pid": "965369846", + "note": [ + { + "label": [ + "Kombiniere mit Sprachbezeichnung und Wortart, z.B. SWW Deutsch ; Adjektiv ; gro\u00df" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134009992", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2012004781", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2012004781" + } + ], + "authorized_access_point": "Gross (The German word)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134009992", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11965640", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119656406" + } + ], + "authorized_access_point": "Gross (le mot allemand)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4702395-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)965369846", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4702395-8", + "source": "GND" + } + ], + "authorized_access_point": "gro\u00df" + }, + { + "md5": "27e31c61860f1f02f5864ab191c5bad7", + "pid": "965576825", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Intrusion_Detection_System&oldid=188067782" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Teilgebiet aus dem IT-Sicherheitsbereich. Methoden und (Software-)Systeme, mit deren Hilfe Angriffe auf Rechnersysteme erkannt werden ko\u0308nnen.", + "Fu\u0308r Systeme zur Erkennung physischer Eindringversuche auf ein Gela\u0308nde, in ein Geba\u0308ude oder in einen Raum verwende Einbruchmeldeanlage" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Computersicherheit" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334216967", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2010008203", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2010008203" + } + ], + "authorized_access_point": "Intrusion detection systems (Computer security)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334216967", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17163602", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17163602m" + } + ], + "authorized_access_point": "Syste\u0300mes de de\u0301tection d'intrusion (informatique)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4706627-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)965576825", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4706627-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Intrusion Detection", + "Einbruchserkennung (Informatik)", + "Erkennen von Eindringversuchen (Informatik)", + "Erkennung von Eindringlingen (Informatik)", + "Intruder Detection", + "Angriffserkennungssystem", + "Eindring-Erkennungssystem", + "Intrusion Detection System", + "IDS (Informatik)", + "Eindringerkennungssystem" + ], + "authorized_access_point": "Eindringerkennung" + }, + { + "md5": "0381a1f335c318c5e8bda68295ab1ca0", + "pid": "965652785", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Randwertproblem" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333590725", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17773664", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17773664d" + } + ], + "authorized_access_point": "Conditions de Robin" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4708822-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)965652785", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4708822-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Robin Boundary Value Problem", + "Robin Boundary Condition", + "Robin-Randbedingung", + "Dritte Randbedingung" + ], + "authorized_access_point": "Robin-Randwertproblem" + }, + { + "md5": "83cbbaa433052e2cdea6b5c486b43c0e", + "pid": "965886654", + "note": [ + { + "label": [ + "Einsatz von Duftstoffen zur Verkaufsfo\u0308rderung u. zur Schaffung eines angenehmen Raumklimas in Unternehmen, auf Werbedrucksachen usw." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Erlebnismarketing" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334882479", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh90005055", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh90005055" + } + ], + "authorized_access_point": "Scent as a marketing device" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334882479", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15585133t", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://catalogue.bnf.fr/ark:/12148/cb15585133t" + } + ], + "authorized_access_point": "Marketing sensoriel" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4712134-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)965886654", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4712134-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Air-Design", + "Olfaktorisches Marketing" + ], + "authorized_access_point": "Duftmarketing" + }, + { + "md5": "1745ca5f551b88e9b33bb92b73ed6795", + "pid": "966016297", + "note": [ + { + "label": [ + "Kommunale Informationsplattform und interaktives System zwischen Bu\u0308rger und Gemeindeverwaltung" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Informationssystem" + } + ], + "related": [ + { + "authorized_access_point": "E-Government" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4713287-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)966016297", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4713287-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Kommunales Informationssystem" + ], + "authorized_access_point": "Bu\u0308rgerinformationssystem" + }, + { + "md5": "b29849f9ae9208897333e5d70f3b9328", + "pid": "966464141", + "note": [ + { + "label": [ + "Zu Ehren des hl. Martin am 11.11." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Umritt" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4720271-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)966464141", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4720271-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Martiniritt" + ], + "authorized_access_point": "Martinsritt" + }, + { + "md5": "a9284b20c577b6d806d5367e66237c3e", + "pid": "966536304", + "note": [ + { + "label": [ + "Art der Barschartigen Fische" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Lippfische" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333268718", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17803543", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17803543w" + } + ], + "authorized_access_point": "Girelle" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4721357-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)966536304", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4721357-7", + "source": "GND" + } + ], + "authorized_access_point": "Coris julis" + }, + { + "md5": "797e1c7582848a227de4ffbd877a9f95", + "pid": "966649052", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Nichtlineare parabolische Differentialgleichung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333589484", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16605436", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16605436b" + } + ], + "authorized_access_point": "E\u0301quations de Cahn-Hilliard" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4723055-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)966649052", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4723055-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Cahn-Hilliard equation" + ], + "authorized_access_point": "Cahn-Hilliard-Gleichung" + }, + { + "md5": "43f7db7727456c68c63ffc5c0775d7eb", + "pid": "967155223", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Virtuose" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133859593", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13510667", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13510667k" + } + ], + "authorized_access_point": "Solistes (musiciens)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4724917-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)967155223", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4724917-1", + "source": "GND" + } + ], + "authorized_access_point": "Solist" + }, + { + "md5": "a5a133c0d40b0c2a82412a3bf068bd50", + "pid": "967169399", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tourismus" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134501994", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17047235", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17047235v" + } + ], + "authorized_access_point": "Tourisme de bien e\u0302tre" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1019769505", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "29062-5", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/29062-5" + } + ], + "authorized_access_point": "Gesundheitstourismus" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4725163-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)967169399", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4725163-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Wellness", + "Gesundheitstourismus", + "Gesundheit", + "Gesundheitsorientierter Urlaub" + ], + "authorized_access_point": "Wellnesstourismus" + }, + { + "md5": "dce2971cad2f34256d1a00322090c3b2", + "pid": "96717757X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Metallbauteil" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4725280-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)96717757X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4725280-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Eisen", + "Eisen" + ], + "authorized_access_point": "Eisenbauteil" + }, + { + "md5": "784d3c1c7c901f0be69a40d4573065ba", + "pid": "967286034", + "note": [ + { + "label": [ + "Ab 1960 in Chile entstandene polit.-sozial ausgerichtete Musikbewegung" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Politisches Lied" + } + ], + "related": [ + { + "authorized_access_point": "Nueva cancio\u0301n (Politisches Lied)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4727316-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)967286034", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4727316-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Nueva Cancio\u0301n Chilena", + "NCCh", + "Canto Nuevo de Chile", + "Neues Politisches Lied" + ], + "authorized_access_point": "Neues chilenisches Lied" + }, + { + "md5": "2e05b2b0dc3c1ee48be282f5c74e945f", + "pid": "967326133", + "note": [ + { + "label": [ + "wikipedia - https://de.wikipedia.org/w/index.php?title=Selbst%C3%BCbersetzung&oldid=208077138" + ], + "noteType": "dataSource" + }, + { + "label": [ + "U\u0308bersetzung eines Werkes durch seinen Autor" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "U\u0308bersetzung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133156462X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2015002455", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2015002455" + } + ], + "authorized_access_point": "Self-translation" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4727899-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)967326133", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4727899-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Selbstu\u0308bersetzung", + "Ipsou\u0308bersetzung" + ], + "authorized_access_point": "Eigenu\u0308bersetzung" + }, + { + "md5": "b064defc4e560291135c9a5ca1cc1cbf", + "pid": "967612896", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Model (Form)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4731815-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)967612896", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4731815-6", + "source": "GND" + } + ], + "authorized_access_point": "Holzmodel" + }, + { + "md5": "ee2a49647e815ab0167e349845223b3f", + "pid": "967617987", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Cobia&oldid=183936477" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Fischart" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133348514X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh93003516", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh93003516" + } + ], + "authorized_access_point": "Cobia" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133348514X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17157745", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17157745x" + } + ], + "authorized_access_point": "Mafou" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4731987-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)967617987", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4731987-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Rachycentron canadum", + "Cobia", + "Kobia", + "Ko\u0308nigsfisch", + "Offiziersbarsch" + ], + "authorized_access_point": "Ko\u0308nigsbarsch" + }, + { + "md5": "4b3d3494ddc9651439240c10211c91e4", + "pid": "967659523", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Stab" + }, + { + "authorized_access_point": "Leuchte" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333320264", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17135690", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17135690k" + } + ], + "authorized_access_point": "Flambeaux" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4732668-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)967659523", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4732668-2", + "source": "GND" + } + ], + "authorized_access_point": "Fackel" + }, + { + "md5": "9f7f04bf1c5d6dfcce2a2be88ffdb7c2", + "pid": "967681758", + "note": [ + { + "label": [ + "Tasse, aus der Kaffee getrunken wird" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tasse" + } + ], + "related": [ + { + "authorized_access_point": "Kaffeegeschirr" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4732915-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)967681758", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4732915-4", + "source": "GND" + } + ], + "authorized_access_point": "Kaffeetasse" + }, + { + "md5": "160aa41ae3d0cf6d0e2ed35a309c58bb", + "pid": "967734657", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Onkologie" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4733618-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)967734657", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4733618-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Prima\u0308re Mehrfachmalignome", + "Multiple malignant tumors" + ], + "authorized_access_point": "Mehrfachmalignom" + }, + { + "md5": "7fb874053ff876421507344e04664f59", + "pid": "967876710", + "note": [ + { + "label": [ + "Empfindung des Cybernauten (= Benutzer einer virtuellen Welt), Teil der virtuellen Welt zu sein" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Telepra\u0308senz" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134758278", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2006004463", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2006004463" + } + ], + "authorized_access_point": "Shared virtual environments" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4736034-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)967876710", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4736034-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Pra\u0308senzerleben", + "Virtuelle Realita\u0308t (Virtuelle Realita\u0308t)" + ], + "authorized_access_point": "Immersion (Virtuelle Realita\u0308t)" + }, + { + "md5": "5625534380698e5df40fee1294ef5e76", + "pid": "967930308", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Abgabe" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4736684-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)967930308", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4736684-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Honorarium", + "Abfahrtsgeld", + "Abzug (Abgabe)", + "Anfall (Abgabe)", + "Auffahrt (Abgabe)", + "Auffahrtsgeld", + "Ehrschatz", + "Ehrschatzung", + "Eingangsgeld", + "Handlohn", + "Herrenwein", + "Immobiliargebu\u0308hr", + "Kaufgeld", + "Kaufschatz", + "Lehengeld", + "Lehnware", + "Markgroschen", + "Pfundgeld", + "Satzwein" + ], + "authorized_access_point": "Laudemium" + }, + { + "md5": "e2a0284b5449ffbde232b0771324c3f9", + "pid": "96832780X", + "note": [ + { + "label": [ + "Platz vor einer Kirche" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Platz" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334557888", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12349199", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb123491994" + } + ], + "authorized_access_point": "Parvis" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4739584-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)96832780X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4739584-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Kirchenplatz" + ], + "authorized_access_point": "Kirchplatz" + }, + { + "md5": "903bea04b693efdae890c91f35dbcb3b", + "pid": "968360009", + "note": [ + { + "label": [ + "B 1996, Internet - http://www.abenteuerreisen.de/wg/mh/wg_mh__rf09__01.htm" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Du\u0308nne, gesplei\u00dfte Bambussta\u0308be und kleine Kaurischnecken, von feinen Pandanusblatt-Streifen zusammengehalten. Mit ihnen versuchten erfahrene Navigatoren auf den Marshallinseln ihr profundes Wissen an andere Mitglieder ihres Clans weiterzugeben." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Seekarte" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4740073-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)968360009", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4740073-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Sta\u0308bchenkarte" + ], + "authorized_access_point": "Stabkarte" + }, + { + "md5": "b1ec5994d65d346fa9104269c256e8e7", + "pid": "968377955", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Dissident" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113450991X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17766693", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17766693h" + } + ], + "authorized_access_point": "Dissidentes" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4740335-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)968377955", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4740335-4", + "source": "GND" + } + ], + "authorized_access_point": "Dissidentin" + }, + { + "md5": "9f9093468238019d3df30fa5deb8ba9d", + "pid": "968387705", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kegel" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4740628-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)968387705", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4740628-8", + "source": "GND" + } + ], + "authorized_access_point": "Elliptischer Kegel" + }, + { + "md5": "3ded776044acf1fc2957dc0c4eb07cdd", + "pid": "968438121", + "note": [ + { + "label": [ + "Fischart" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sonnenbarsche (Familie)" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333375506", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85074713", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85074713" + } + ], + "authorized_access_point": "Largemouth bass" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333375506", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17800601", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17800601h" + } + ], + "authorized_access_point": "Black-bass a\u0300 grande bouche" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4741261-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)968438121", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4741261-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Micropterus salmoides" + ], + "authorized_access_point": "Forellenbarsch" + }, + { + "md5": "c8b74e29c1c9072cc50f0fc4681dcf2f", + "pid": "968634737", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4744435-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)968634737", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4744435-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Chipkarte" + ], + "authorized_access_point": "Chipkartenherstellung" + }, + { + "md5": "e40857e85cd60e9241be20a9f3dccd32", + "pid": "968663664", + "note": [ + { + "label": [ + "Satir. Gattung der frz. Renaissancedichtung" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Satirische Lyrik" + } + ], + "related": [ + { + "authorized_access_point": "Franzo\u0308sisch" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134067267", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11980993", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11980993t" + } + ], + "authorized_access_point": "Coq-a\u0300-l'a\u0302ne" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4744950-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)968663664", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4744950-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Franzo\u0308sisch" + ], + "authorized_access_point": "Coq-a\u0300-l'a\u0302ne" + }, + { + "md5": "e75bcc00776a34df88d971519e9f4a21", + "pid": "968800459", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Twents&oldid=187939466" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Mundart" + } + ], + "related": [ + { + "authorized_access_point": "Niederla\u0308ndisch" + }, + { + "authorized_access_point": "Westfa\u0308lisch" + }, + { + "authorized_access_point": "Niedersa\u0308chsisch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4747853-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)968800459", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4747853-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Twents" + ], + "authorized_access_point": "Mundart Niederla\u0308ndisch (Twente)" + }, + { + "md5": "be494cd4f02806b8ed490eb7508ef0c6", + "pid": "969131240", + "note": [ + { + "label": [ + "Art der Labyrinthfische" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333960581", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17797530", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb177975306" + } + ], + "authorized_access_point": "Anabas testudineus" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4752661-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)969131240", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4752661-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Kletterbarsch", + "Anabas testudineus" + ], + "authorized_access_point": "Kletterfisch" + }, + { + "md5": "23690fc23b1f5a321404e1699f9f05ca", + "pid": "969678363", + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4760319-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)969678363", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4760319-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Mehrgeschlecht", + "Plurigenus" + ], + "authorized_access_point": "Plurigeschlecht" + }, + { + "md5": "80418c44886a6d4b2d84e7b3b6a7a8c6", + "pid": "969789726", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Pietismus" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4762345-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)969789726", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4762345-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Radikalpietismus" + ], + "authorized_access_point": "Radikaler Pietismus" + }, + { + "md5": "ca435c30ce88e686f0d44896f1df1efa", + "pid": "970142838", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Studentin" + } + ], + "related": [ + { + "authorized_access_point": "Medizinstudent" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334680930", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85147645", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85147645" + } + ], + "authorized_access_point": "Women medical students" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334680930", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18099017", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb180990171" + } + ], + "authorized_access_point": "E\u0301tudiantes en me\u0301decine" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4766829-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)970142838", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4766829-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Medizinstudium" + ], + "authorized_access_point": "Medizinstudentin" + }, + { + "md5": "d6b3f857a206b13db7accfe8f7b8b228", + "pid": "970188919", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Antigen" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1336143207", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D000097802", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000097802" + } + ], + "authorized_access_point": "CD83 Antigen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4767577-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)970188919", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4767577-9", + "source": "GND" + } + ], + "variant_access_point": [ + "CD83-Antigen" + ], + "authorized_access_point": "Antigen CD83" + }, + { + "md5": "5b44e347ec912af5f75cea8f6555a1ef", + "pid": "970190417", + "note": [ + { + "label": [ + "Fischart" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Aalmuttern (Familie)" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113483294X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85149936", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85149936" + } + ], + "authorized_access_point": "Zoarces viviparus" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113483294X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17810619", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17810619s" + } + ], + "authorized_access_point": "Loquette d'Europe" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4767596-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)970190417", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4767596-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Zoarces viviparus" + ], + "authorized_access_point": "Aalmutter" + }, + { + "md5": "995fabd6d0f0306b6be14d335d12eaf9", + "pid": "970665806", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134835183", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85072053", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85072053" + } + ], + "authorized_access_point": "Kerinci language" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4772270-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)970665806", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4772270-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Kerinchi", + "Kinchai", + "Kerinci (Sprache)" + ], + "authorized_access_point": "Kerinci-Sprache" + }, + { + "md5": "33de2e9a532948db010f63d9178e637f", + "pid": "970679645", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/wiki/Lattice-Boltzmann-Methode" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Numerisches Verfahren zur Simulation von Stro\u0308mungs- und Transportvorga\u0308ngen. Die Simulation wird auf der Teilchenebene durchgefu\u0308hrt. Dabei werden im Gegensatz zu den Lattice-Gas-Verfahren keine bina\u0308ren Teilchen sondern kontinuierliche Teilchendichten verwendet." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Numerisches Verfahren" + } + ], + "related": [ + { + "authorized_access_point": "Numerische Stro\u0308mungssimulation" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134532490", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2008008129", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2008008129" + } + ], + "authorized_access_point": "Lattice Boltzmann methods" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134532490", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18052725", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb180527252" + } + ], + "authorized_access_point": "Me\u0301thode de Boltzmann sur re\u0301seau" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4772570-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)970679645", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4772570-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Gitter-Boltzmann-Verfahren", + "Lattice-Boltzmann-Methode", + "Lattice-Boltzmann-Verfahren", + "Lattice Boltzmann Method", + "LBM" + ], + "authorized_access_point": "Gitter-Boltzmann-Methode" + }, + { + "md5": "9d2abd87482d924363e0c4091889a168", + "pid": "970758065", + "note": [ + { + "label": [ + "Religio\u0308ses Fest der anatolischen Alewiten und Bektaschiten in Verbindung mit Tanz und Alkoholgenuss" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Religio\u0308ses Fest" + } + ], + "related": [ + { + "authorized_access_point": "Bektaschismus" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4774342-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)970758065", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4774342-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Cem Ayini", + "Ayinu\u0308'l-cem" + ], + "authorized_access_point": "Ayin-i Cem" + }, + { + "md5": "324e13e4a5431979a63c43a2bc0262ed", + "pid": "970782195", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "related": [ + { + "authorized_access_point": "Ausbreitung" + }, + { + "authorized_access_point": "Modell" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4774580-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)970782195", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4774580-0", + "source": "GND" + } + ], + "authorized_access_point": "AUSTAL 86" + }, + { + "md5": "3682ec5488c476e2b6b6bf54f108f1b5", + "pid": "971044899", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kapuzineraffenartige" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133326125X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85021897", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85021897" + } + ], + "authorized_access_point": "Central American spider monkey" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4779167-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)971044899", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4779167-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Ateles geoffroyi" + ], + "authorized_access_point": "Geoffroy-Klammeraffe" + }, + { + "md5": "2f0e681ba28d3450d8100318995a0a17", + "pid": "971566429", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134835175", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh99004097", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh99004097" + } + ], + "authorized_access_point": "Ratahan language" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4783715-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)971566429", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4783715-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Ratahan", + "Pasan", + "Bentenan" + ], + "authorized_access_point": "Toratan" + }, + { + "md5": "c7b7c6f89cebdd5c65ee465c38f60692", + "pid": "971750289", + "note": [ + { + "label": [ + "Fo\u0308rder-, Transportmittel" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wagen" + }, + { + "authorized_access_point": "Flurfo\u0308rderer" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4786444-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)971750289", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4786444-8", + "source": "GND" + } + ], + "authorized_access_point": "Hubwagen" + }, + { + "md5": "3855afb078fd5a1a862a2c5c442f7f6f", + "pid": "971874549", + "note": [ + { + "label": [ + "Methode der Demoskopie bzw. Marktforschung" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Umfrage" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134778651", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2003010653", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2003010653" + } + ], + "authorized_access_point": "Internet questionnaires" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1012497135", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "28130-5", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/28130-5" + } + ], + "authorized_access_point": "Online-Befragung" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)983461716", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10037911", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10037911" + } + ], + "authorized_access_point": "Online-Befragung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4788337-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)971874549", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4788337-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Online-Umfrage", + "Online-Interview" + ], + "authorized_access_point": "Online-Befragung" + }, + { + "md5": "e9a2dbada142fc2040914bc19e7f5832", + "pid": "971890188", + "note": [ + { + "label": [ + "Gesprochen auf Sarawak" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4788592-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)971890188", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4788592-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Narom (Sprache)", + "Narum (Sprache)" + ], + "authorized_access_point": "Narom-Sprache" + }, + { + "md5": "aecf1032c164af645854a128fd69916b", + "pid": "972391010", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tumor" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4796842-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)972391010", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4796842-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Germinaler Tumor" + ], + "authorized_access_point": "Keimzelltumor" + }, + { + "md5": "182e20684b67a3758d0437ac0fb81cfb", + "pid": "972616705", + "note": [ + { + "label": [ + "Benutzt, soweit au\u00dferhalb von Tunesien, sonst verknu\u0308pfe Tunesien ; Frau" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausla\u0308nderin" + } + ], + "related": [ + { + "authorized_access_point": "Tunesier" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134403763", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85138663", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85138663" + } + ], + "authorized_access_point": "Tunisians" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134403763", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF14412750", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb14412750k" + } + ], + "authorized_access_point": "Tunisiennes" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1011431920", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "26827-4", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/26827-4" + } + ], + "authorized_access_point": "Tunesier" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4801057-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)972616705", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4801057-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Tunesische Frau" + ], + "authorized_access_point": "Tunesierin" + }, + { + "md5": "7e1f398efc151f5dcc893509fd79cfcf", + "pid": "973067144", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Antigen" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133614288X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "D000097382", + "source": "DNLM" + }, + { + "type": "uri", + "value": "http://id.nlm.nih.gov/mesh/D000097382" + } + ], + "authorized_access_point": "CD68 Molecule" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4806375-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)973067144", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4806375-7", + "source": "GND" + } + ], + "variant_access_point": [ + "CD68", + "CD 68", + "CD68-Antigen", + "Makrosialin", + "Macrosialin" + ], + "authorized_access_point": "Antigen CD68" + }, + { + "md5": "ae5a04d0d14eb175d490f71360a74104", + "pid": "973073764", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Musik" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4806598-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)973073764", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4806598-5", + "source": "GND" + } + ], + "authorized_access_point": "Gera\u0308uschmusik" + }, + { + "md5": "6ecfcdb8e959cd66391e5cd5d0c21772", + "pid": "97397687X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kapuzineraffenartige" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133818668", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85014575", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85014575" + } + ], + "authorized_access_point": "Black howler monkey" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133818668", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12509694", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb125096949" + } + ], + "authorized_access_point": "Hurleur noir" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4817251-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)97397687X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4817251-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Alouatta caraya", + "Caraya" + ], + "authorized_access_point": "Schwarzer Bru\u0308llaffe" + }, + { + "md5": "278247d49f942541fdc014bf5dd4e802", + "pid": "974131733", + "note": [ + { + "label": [ + "Gesprochen in Westborneo u. Sarawak" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4819075-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)974131733", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4819075-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Salakau", + "Selako", + "Selako Dayak", + "Silakau", + "Salako", + "Bahasa Badamea\u0300", + "Bahasa Damea\u0300" + ], + "authorized_access_point": "Selekau-Sprache" + }, + { + "md5": "0723c75659ead86971b9b2f6d328b83a", + "pid": "974160032", + "note": [ + { + "label": [ + "1957 von Max Miedinger fu\u0308r die Haas'sche Schriftgiesserei in Basel entwickelte serifenlose Schrift. 1960 Umbenennung in Helvetica", + "Benutzt fu\u0308r alle Helvetica-Schriften. Einzelne Helvetica-Schriften werden getrennt angesetzt." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Groteskschrift" + } + ], + "related": [ + { + "authorized_access_point": "Neue Haas-Grotesk" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134800983", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2010012863", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2010012863" + } + ], + "authorized_access_point": "Helvetica type" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134800983", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16084551", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16084551w" + } + ], + "authorized_access_point": "Caracte\u0300res Helvetica" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4819794-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)974160032", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4819794-4", + "source": "GND" + } + ], + "authorized_access_point": "Helvetica (Druckschrift)" + }, + { + "md5": "b2a2b223eb4df2a50981876d0eb81775", + "pid": "974476560", + "note": [ + { + "label": [ + "urspru\u0308ngl. von den USA ausgehende Evangelisationsbewegung" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Evangelikale Bewegung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331867320", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh00006530", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh00006530" + } + ], + "authorized_access_point": "Lighthouse movement" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4824680-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)974476560", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4824680-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Discipling A Whole Nation", + "Lighthouse-Bewegung", + "DAWN-Bewegung", + "DAWN-Strategie", + "Lighthouse Movement" + ], + "authorized_access_point": "Leuchthaus-Bewegung" + }, + { + "md5": "5362ca31c9b9eb50b020e548f2924748", + "pid": "97466068X", + "note": [ + { + "label": [ + "Der kontrollierten Versuch (\"gelenktes Hacking\") , von au\u00dfen in ein bestimmtes Computersystem bzw. -netzwerk einzudringen, um Schwachstellen zu identifizieren. Dazu werden die gleichen bzw. a\u0308hnliche Techniken eingesetzt, die auch bei einem realen Angriff verwendet werden. (Bundesamt fu\u0308r Sicherheit in der Informationstechnik)", + "Fu\u0308r das Erkennen versuchter Angriffe verwende Eindringerkennung." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Computersicherheit" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334217106", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2011003137", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2011003137" + } + ], + "authorized_access_point": "Penetration testing (Computer security)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334217106", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17163606", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb171636060" + } + ], + "authorized_access_point": "Tests d'intrusion (informatique)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4825817-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)97466068X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4825817-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Penetration Testing", + "Pen-Test" + ], + "authorized_access_point": "Penetrationstest" + }, + { + "md5": "d16332df7e5ca2d7433d0121a3469f9e", + "pid": "974924423", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "related": [ + { + "authorized_access_point": "Haushaltsbuch" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4827174-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)974924423", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4827174-3", + "source": "GND" + } + ], + "variant_access_point": [ + "sCHECK up" + ], + "authorized_access_point": "sCHECKup" + }, + { + "md5": "1dcbb925d2ae9db4e3ee9ab73ca74943", + "pid": "975199056", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "RAM" + }, + { + "authorized_access_point": "Nichtflu\u0308chtiger Speicher" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134626886", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85047879", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85047879" + } + ], + "authorized_access_point": "Ferroelectric storage cells" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4830042-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)975199056", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4830042-1", + "source": "GND" + } + ], + "variant_access_point": [ + "FeRAM", + "F-RAM", + "Ferroelectric random access memory", + "Ferroelectric RAM", + "Ferroelektrischer Speicher mit wahlfreiem Zugriff" + ], + "authorized_access_point": "FRAM (Informatik)" + }, + { + "md5": "30e8043a1657038dd07d9bf1d6af949a", + "pid": "97549175X", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Deflektometrie&oldid=237818776" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Optische Messung" + }, + { + "authorized_access_point": "Oberfla\u0308chenmessung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4832784-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)97549175X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4832784-0", + "source": "GND" + } + ], + "authorized_access_point": "Deflektometrie" + }, + { + "md5": "d42edfcefb070bb64c63f3df54821213", + "pid": "975670824", + "note": [ + { + "label": [ + "fu\u0308r das Beschwerdemanagement verknu\u0308pfe mit Kundenmanagement, Servicepolitik o.a\u0308." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Retoure" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113450019X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85031477", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85031477" + } + ], + "authorized_access_point": "Consumer complaints" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113450019X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16582482", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb165824828" + } + ], + "authorized_access_point": "Re\u0301clamations clients" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254479023", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX547082", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX547082" + } + ], + "authorized_access_point": "Reclamaciones de consumo" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)975677063", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "19134-5", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/19134-5" + } + ], + "authorized_access_point": "Beschwerdemanagement" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)975677306", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "10056526", + "source": "GESIS" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10056526" + } + ], + "authorized_access_point": "Reklamation" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4834499-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)975670824", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4834499-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Beschwerde (Reklamation)", + "Verbraucherbeschwerde", + "Verbraucherreklamation", + "Verbraucher", + "Verbraucher", + "Kundenbeschwerde", + "Kundenreklamation", + "Kunde", + "Kunde", + "Complaint" + ], + "authorized_access_point": "Reklamation" + }, + { + "md5": "6dd0a108851399bc4530cd256354b662", + "pid": "976009048", + "note": [ + { + "label": [ + "Familie der Barschartigen Fische" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333484488", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85104687", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85104687" + } + ], + "authorized_access_point": "Polynemidae" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333484488", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17157668", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb171576689" + } + ], + "authorized_access_point": "Polynemidae" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4838008-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)976009048", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4838008-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Polynemidae", + "Fingerfische" + ], + "authorized_access_point": "Fa\u0308dlerfische" + }, + { + "md5": "c58eba599945023e1a62646bcd071bde", + "pid": "976859416", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Meerbarben" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333450095", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17804174", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb178041749" + } + ], + "authorized_access_point": "Rouget de roche" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4847270-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)976859416", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4847270-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Mullus surmuletus" + ], + "authorized_access_point": "Gestreifte Meerbarbe" + }, + { + "md5": "ab03585fa3788d9124bb72816280a4c0", + "pid": "976865351", + "note": [ + { + "label": [ + "Art der Lippfische (Labridae); Putzerfisch" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Lippfische" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333266111", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17803725", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17803725h" + } + ], + "authorized_access_point": "Cre\u0301nilabre paon" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4847293-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)976865351", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4847293-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Pfauenlippfisch" + ], + "authorized_access_point": "Symphodus tinca" + }, + { + "md5": "0effac53abdc4d228b6670a3297258b6", + "pid": "977294390", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sichtfeld" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4997436-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)977294390", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4997436-1", + "source": "GND" + } + ], + "authorized_access_point": "Toter Winkel" + }, + { + "md5": "86e3d428d10ddbe14708327a471d7994", + "pid": "977682633", + "note": [ + { + "label": [ + "Sufiorden in Zentralasien" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sufi-Bruderschaft" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/4998520-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)977682633", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)4998520-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Kubravi", + "Kubra\u0304viya", + "Kubrawiyya", + "Kubraviyya", + "Kubrawi\u0304ya", + "Ku\u0308breviyye" + ], + "authorized_access_point": "Kubrawi" + }, + { + "md5": "3537f7e6c62fb63aa7a66bc03d6c6528", + "pid": "977813762", + "note": [ + { + "label": [ + "Familie d. Barschartigen Fische im Atlantik, Pazifik u. Indischen Ozean" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333377096", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85040688", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85040688" + } + ], + "authorized_access_point": "Echeneidae" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333377096", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17153281", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17153281f" + } + ], + "authorized_access_point": "E\u0301che\u0301ne\u0301ide\u0301s" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7500175-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)977813762", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7500175-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Kopfsauger", + "Echeneidae" + ], + "authorized_access_point": "Schiffshalter" + }, + { + "md5": "e8f9f680b7eacaa7c26eb7076cd0555c", + "pid": "978483669", + "note": [ + { + "label": [ + "Malaiisch, Dialekt: Indonesia, Sulawesi (Celebes)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Westindonesische Sprachen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7517482-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)978483669", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7517482-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Manado-Malaiisch" + ], + "authorized_access_point": "Menado-Malaiisch" + }, + { + "md5": "640dfca43d867744db28449d4751d63c", + "pid": "979214998", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Manifest" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333996292", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2016001208", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2016001208" + } + ], + "authorized_access_point": "Art manifestos" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333996292", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12536532", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12536532c" + } + ], + "authorized_access_point": "Manifestes litte\u0301raires et artistiques" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7523608-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)979214998", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7523608-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Manifest" + ], + "authorized_access_point": "Ku\u0308nstlerisches Manifest" + }, + { + "md5": "4ade0ad17b7bc0a83b7c607aad14cd7b", + "pid": "979217253", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fertigung" + } + ], + "related": [ + { + "authorized_access_point": "Mikrosystemtechnik" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7523640-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)979217253", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7523640-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Mikrofertigungsverfahren" + ], + "authorized_access_point": "Mikrofertigung" + }, + { + "md5": "0bfc57ea4004a5a5f9c75369ee0bbe00", + "pid": "979340586", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Transhumanismus&oldid=224666895" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Der Transhumanismus ist eine philosophische Denkrichtung, die sich zum Ziel gesetzt hat, die intellektuellen und ko\u0308rperlichen Fa\u0308higkeiten des Menschen zu erweitern. Dieses Ziel will der Transhumanismus durch eine Synthese des Menschen mit Technik erreichen." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Humanismus" + } + ], + "related": [ + { + "authorized_access_point": "Posthumanismus" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254397442", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "69366", + "source": "IT" + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/69366" + } + ], + "authorized_access_point": "Transumanesimo" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7524756-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)979340586", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7524756-2", + "source": "GND" + } + ], + "authorized_access_point": "Transhumanismus" + }, + { + "md5": "153a496a30abd9ddce585f66e8d42199", + "pid": "979385261", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Smart-Ger%C3%A4t&oldid=242686638" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Informationstechnisch aufgeru\u0308stete Alltagsgegensta\u0308nde, die einen Mehrwert durch sensorgestu\u0308tzte Informationsverarbeitung und Kommunikation erhalten" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Mobiles Endgera\u0308t" + }, + { + "authorized_access_point": "Ubiquitous Computing" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7525182-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)979385261", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7525182-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Smart Devices", + "Smart-Gera\u0308t" + ], + "authorized_access_point": "Smart Device" + }, + { + "md5": "98b4bfe51a8127f1f3964b3281a6b0d5", + "pid": "979633079", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=DR-Baureihe_ET_165&oldid=221388856" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Elektrischer Triebwagen, der von 1928 bis 1932 fu\u0308r die Berliner S-Bahn gebaut wurde" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Elektrotriebwagen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7526925-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)979633079", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7526925-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Stadtbahner", + "DR-Baureihe ET 165", + "Baureihe 275 (DR)", + "Baureihe 475 (DB)" + ], + "authorized_access_point": "Elektrotriebwagen Baureihe ET 165" + }, + { + "md5": "1ae52b1797d5d10b99b0f0e0b559357d", + "pid": "979728509", + "note": [ + { + "label": [ + "Schlacht am 21.7.1798 bei Giseh zwischen Franzosen u. Mamelucken, Sieg Napoleons" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "A\u0308gyptische Expedition" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7527686-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)979728509", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7527686-0", + "source": "GND" + } + ], + "authorized_access_point": "Schlacht bei den Pyramiden" + }, + { + "md5": "2a343cf763f6cff8a8bba4d014d91a4b", + "pid": "980347890", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Schlacht_von_Otterburn&oldid=216793433" + ], + "noteType": "dataSource" + }, + { + "label": [ + "15. August 1388" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schlacht" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134272138", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12317384", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12317384j" + } + ], + "authorized_access_point": "Otterburn, Bataille d' (1388)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7532405-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)980347890", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7532405-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Battle of Otterburn" + ], + "authorized_access_point": "Schlacht von Otterburn" + }, + { + "md5": "3e2dbd77e07cd91f29e7a7ba5234424f", + "pid": "980485371", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7533814-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)980485371", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7533814-2", + "source": "GND" + } + ], + "authorized_access_point": "Sportlerin (Motiv)" + }, + { + "md5": "ec75a31caa66a9d89cd7665cebf229fd", + "pid": "980596920", + "note": [ + { + "label": [ + "Von Rudolf Koch geschaffene, jedoch selten benutzte Antiqua-Schrift; 1930 begonnen, aber erst 1938 in allen Graden vorliegend" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Antiqua" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7535517-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)980596920", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7535517-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Marathon-Antiqua" + ], + "authorized_access_point": "Marathon (Druckschrift)" + }, + { + "md5": "7fe8328db91f2d8a68ffed67fc286c18", + "pid": "980868459", + "note": [ + { + "label": [ + "Als Homonymenzusatz bei Personenschlagworten zugelassen." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Medizinisches Personal" + } + ], + "related": [ + { + "authorized_access_point": "Hebamme" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7538946-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)980868459", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7538946-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Entbindungspfleger", + "Geburtshelfer (Ma\u0308nnliche Hebamme)" + ], + "authorized_access_point": "Ma\u0308nnliche Hebamme" + }, + { + "md5": "8f08217c4b451e93f7e2ee7e437bd72b", + "pid": "98106521X", + "note": [ + { + "label": [ + "Berufenet - https://berufenet.arbeitsagentur.de/berufenet/faces/index?path=null/suchergebnisse/kurzbeschreibung&dkz=58778&such=Statistiker%2Fin" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Als Homonymenzusatz bei Personenschlagworten zugelassen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Statistiker" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331756308", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85147716", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85147716" + } + ], + "authorized_access_point": "Women statisticians" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7541108-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)98106521X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7541108-8", + "source": "GND" + } + ], + "authorized_access_point": "Statistikerin" + }, + { + "md5": "23196fd2951e36cac8b45d0cd530bc46", + "pid": "981073328", + "note": [ + { + "label": [ + "Als Homonymenzusatz bei Personenschlagworten zugelassen." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kritikerin" + } + ], + "related": [ + { + "authorized_access_point": "Theaterkritiker" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331761549", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2010007778", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2010007778" + } + ], + "authorized_access_point": "Women theater critics" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7541288-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)981073328", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7541288-3", + "source": "GND" + } + ], + "authorized_access_point": "Theaterkritikerin" + }, + { + "md5": "e97093a71a82ec96b1bb4d7f531cf545", + "pid": "981078206", + "note": [ + { + "label": [ + "Benutzt fu\u0308r weibliche Selige; als instantieller Oberbegriff bei weiblichen seligen Personen obligatorisch; nicht zugelassen als identifizierender Zusatz bei Personen gem. EH-P-10 zur GND nach RDA" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Frau" + } + ], + "related": [ + { + "authorized_access_point": "Seliger" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7541405-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)981078206", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7541405-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Weibliche Selige", + "Selige Frau", + "Seliggesprochene Frau" + ], + "authorized_access_point": "Selige" + }, + { + "md5": "c809a6a1106a5d77fc6ca02ca8d45926", + "pid": "981355196", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Framework (Informatik)" + } + ], + "related": [ + { + "authorized_access_point": "Informationsmanagement" + }, + { + "authorized_access_point": "Corporate Governance" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7544194-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)981355196", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7544194-9", + "source": "GND" + } + ], + "authorized_access_point": "COBIT" + }, + { + "md5": "d8cc6074f9d62bf03afb504dbded4e48", + "pid": "982125461", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133325802X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh95008717", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh95008717" + } + ], + "authorized_access_point": "Prosimians" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133325802X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF13571212", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb13571212p" + } + ], + "authorized_access_point": "Strepsirhiniens" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7551325-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)982125461", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7551325-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Strepsirrhini", + "Feuchtnasenaffen" + ], + "authorized_access_point": "Strepsirhini" + }, + { + "md5": "09e4e187b357c16d8dea755e227578ae", + "pid": "982377649", + "note": [ + { + "label": [ + "Bantu-Sprache in Tansania, S Kilosa Dist." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Bantusprachen" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134833679", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2011001549", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2011001549" + } + ], + "authorized_access_point": "Vidunda language" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134833679", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17951629", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17951629b" + } + ], + "authorized_access_point": "Vidunda (langue)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7553407-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)982377649", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7553407-1", + "source": "GND" + } + ], + "variant_access_point": [ + "ChiVidunda", + "KiVidunda", + "Ndunda" + ], + "authorized_access_point": "Vidunda" + }, + { + "md5": "06f99d96f4fc81f5f2abe1206f6f7ce7", + "pid": "982938322", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Beschriftung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331595843", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2002000621", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2002000621" + } + ], + "authorized_access_point": "Photograph captions" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331595843", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF18058702", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb18058702v" + } + ], + "authorized_access_point": "Le\u0301gendes (images)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7557792-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)982938322", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7557792-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Bildlegende", + "Bildunterschrift", + "Begleittext (Bild)" + ], + "authorized_access_point": "Legende (Bild)" + }, + { + "md5": "14a4b0e243581107b2ce676e4ae533b5", + "pid": "983481628", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Drosseln" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333493827", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12491932", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12491932b" + } + ], + "authorized_access_point": "Grive draine" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7562900-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)983481628", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7562900-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Turdus viscivorus" + ], + "authorized_access_point": "Misteldrossel" + }, + { + "md5": "2957b051e7d70e051b5a02ac84475199", + "pid": "983481644", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Drosseln" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333493673", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh94009324", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh94009324" + } + ], + "authorized_access_point": "Ring ouzel" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333493673", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17998713", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17998713r" + } + ], + "authorized_access_point": "Merle a\u0300 plastron" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7562902-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)983481644", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7562902-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Turdus torquatus" + ], + "authorized_access_point": "Ringdrossel" + }, + { + "md5": "badbcfc9e887482173993dd42b470dc0", + "pid": "98350816X", + "note": [ + { + "label": [ + "Benutzt, soweit au\u00dferhalb Armeniens, sonst verknu\u0308pfe Armenien ; Frau" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ausla\u0308nderin" + } + ], + "related": [ + { + "authorized_access_point": "Armenier" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "FRBNF17942155", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb17942155j" + } + ], + "authorized_access_point": "Arme\u0301niennes" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1007250054", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "26103-4", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/26103-4" + } + ], + "authorized_access_point": "Armenier" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7563049-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)98350816X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7563049-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Armenische Frau" + ], + "authorized_access_point": "Armenierin" + }, + { + "md5": "c268ac47c0c959a37b3cc575f948c62b", + "pid": "983616299", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "A\u0308sthetik" + } + ], + "related": [ + { + "authorized_access_point": "Vornehmheit" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333314981", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12068131", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb120681315" + } + ], + "authorized_access_point": "E\u0301le\u0301gance" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7564301-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)983616299", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7564301-7", + "source": "GND" + } + ], + "authorized_access_point": "Eleganz" + }, + { + "md5": "6d08c5c66500125f47aa7592537f3a21", + "pid": "983782784", + "note": [ + { + "label": [ + "Teilgebiet der Genetik, das untersucht, wie und warum Gene in unterschiedlicher Weise ein- und ausgeschaltet werden, ohne dass sich dabei die Nukleotidsequenzen dieser Gene a\u0308ndern." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Genetik" + } + ], + "related": [ + { + "authorized_access_point": "Epigenese" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1134695667", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF14560895", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb14560895j" + } + ], + "authorized_access_point": "E\u0301pige\u0301ne\u0301tique" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7566079-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)983782784", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7566079-9", + "source": "GND" + } + ], + "authorized_access_point": "Epigenetik" + }, + { + "md5": "fa49868dd8125dd57183c50a8e50ed47", + "pid": "984430695", + "note": [ + { + "label": [ + "Von der Zentralbank vero\u0308ffentlicher Zielwert oder Zielkorridor einer Inflationsrate, die noch mit dem Ziel der Geldwertstabilita\u0308t vereinbar scheint" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Geldpolitik" + } + ], + "related": [ + { + "authorized_access_point": "Inflationsbeka\u0308mpfung" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133489549X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2010012786", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2010012786" + } + ], + "authorized_access_point": "Inflation targeting" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)985037393", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "19547-1", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/19547-1" + } + ], + "authorized_access_point": "Inflationssteuerung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7570943-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)984430695", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7570943-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Inflationsziel", + "Inflation-Forecast Targeting", + "Inflation Forecast Targeting", + "Inflationsrate" + ], + "authorized_access_point": "Inflation Targeting" + }, + { + "md5": "1c04b0361a0e189c552c9d9c638b3584", + "pid": "984505180", + "note": [ + { + "label": [ + "Art d. Gattung Pogona , UF Amphibolurinae, Fam. Agamen (Agamidae)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Agamen" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333990774", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15961384", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15961384k" + } + ], + "authorized_access_point": "Agame barbu de Lawson" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7571568-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)984505180", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7571568-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Zwergbartagame", + "Schwarzerde-Bartagame" + ], + "authorized_access_point": "Pogona henrylawsoni" + }, + { + "md5": "bde9ab58fd960fbf00d93c6a2a747af7", + "pid": "984855246", + "note": [ + { + "label": [ + "Als Vergaberecht bezeichnet man die Gesamtheit der Rechtsvorschriften, die o\u0308ffentliche Auftraggeber bei der Beschaffung von Gu\u0308tern und Leistungen zu beachten haben." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Wirtschaftsrecht" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)984869689", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "11580-1", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/11580-1" + } + ], + "authorized_access_point": "Vergaberecht" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7574511-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)984855246", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7574511-2", + "source": "GND" + } + ], + "variant_access_point": [ + "O\u0308ffentlicher Auftrag", + "Vergabe" + ], + "authorized_access_point": "Vergaberecht" + }, + { + "md5": "ab4183a00ed797fe78754bf23c5f9075", + "pid": "985075619", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Erlo\u0308sung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7576365-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)985075619", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7576365-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Autosoterik" + ], + "authorized_access_point": "Selbsterlo\u0308sung" + }, + { + "md5": "8b33e1b93ddd125220b493ff46aef17d", + "pid": "985142758", + "note": [ + { + "label": [ + "geho\u0308rt zur Gattung der Puffottern" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Vipern" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7576822-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)985142758", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7576822-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Bitis nasicornis" + ], + "authorized_access_point": "Nashornviper" + }, + { + "md5": "f3d92b152b706d7ba8aeaa60f9b50c8c", + "pid": "985147172", + "note": [ + { + "label": [ + "Wikipedia - https://de.wikipedia.org/w/index.php?title=Mari%C3%A4_Heimsuchung&oldid=185056160" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Das Fest Maria\u0308 Heimsuchung am 2. Juli (oder mancherorts am 31. Mai)." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Marienfest" + }, + { + "authorized_access_point": "Kirchenfest" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133660339", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85143888", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85143888" + } + ], + "authorized_access_point": "Visitation Festival" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133660339", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11961516", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119615163" + } + ], + "authorized_access_point": "Visitation (fe\u0302te)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7576849-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)985147172", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7576849-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Mariae Heimsuchung (Fest)", + "Maria Heimsuchung", + "Visitatio Beatae Mariae Virginis", + "Visitatio Mariae" + ], + "authorized_access_point": "Heimsuchung Maria\u0308 (Fest)" + }, + { + "md5": "f26fe5bfd20f77b68413f5aa29302df3", + "pid": "985948116", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ma\u0308rchen" + }, + { + "authorized_access_point": "Erotische Literatur" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133160835X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85044708", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85044708" + } + ], + "authorized_access_point": "Erotic stories" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)133160835X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16918747", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb169187478" + } + ], + "authorized_access_point": "Contes e\u0301rotiques" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7583981-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)985948116", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7583981-7", + "source": "GND" + } + ], + "authorized_access_point": "Erotisches Ma\u0308rchen" + }, + { + "md5": "0c71db3b4e40743155878bcfc199e624", + "pid": "985953780", + "note": [ + { + "label": [ + "Art d. Glasbarsche" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133714390", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85091950", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85091950" + } + ], + "authorized_access_point": "Nile perch" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1133714390", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12061925", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12061925r" + } + ], + "authorized_access_point": "Perche du Nil" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7584064-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)985953780", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7584064-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Lates niloticus", + "Viktoriabarsch" + ], + "authorized_access_point": "Nilbarsch" + }, + { + "md5": "6c9a6803d83ea0bd88ab84dc4384c97d", + "pid": "986124265", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kauffrau" + } + ], + "related": [ + { + "authorized_access_point": "Buchhalter" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1331760119", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85147420", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85147420" + } + ], + "authorized_access_point": "Women accountants" + } + ], + "exactMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)986131555", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "29760-2", + "source": "ZBW" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/29760-2" + } + ], + "authorized_access_point": "Buchhalter" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7586536-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)986124265", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7586536-1", + "source": "GND" + } + ], + "authorized_access_point": "Buchhalterin" + }, + { + "md5": "b2b32a7bb0bed523d28feb5527312c80", + "pid": "987031708", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Student" + } + ], + "related": [ + { + "authorized_access_point": "Physikstudentin" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334680612", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2020008950", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2020008950" + } + ], + "authorized_access_point": "Physics students" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334680612", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11938246", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb119382468" + } + ], + "authorized_access_point": "E\u0301tudiants en physique" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7595663-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)987031708", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7595663-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Physikstudium" + ], + "authorized_access_point": "Physikstudent" + }, + { + "md5": "0d20f390ab571d92806816cbf364cfae", + "pid": "987246100", + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Nordischer Krieg (1700-1721)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7597978-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)987246100", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7597978-0", + "source": "GND" + } + ], + "authorized_access_point": "Pommernfeldzug" + }, + { + "md5": "e583e09f6f7d346a5ff302c0bc4b797a", + "pid": "987870920", + "note": [ + { + "label": [ + "Primitiver Stamm mit dravidischer Sprache in Kerala" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113425024X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh91005878", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh91005878" + } + ], + "authorized_access_point": "Cholanaickan (Indic people)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113425024X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF12269831", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb12269831p" + } + ], + "authorized_access_point": "Cholanaickan (peuple de l'Inde)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7604010-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)987870920", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7604010-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Cholakka\u0304r", + "Cholanaicken" + ], + "authorized_access_point": "Cholanaickan" + }, + { + "md5": "a0d6f064f2e2337c0a0030a8cec419ba", + "pid": "989819264", + "note": [ + { + "label": [ + "Voreingestellter Wert fu\u0308r System- oder Programmparameter" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7620656-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)989819264", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7620656-7", + "source": "GND" + } + ], + "variant_access_point": [ + "Defaultwert", + "Voreinstellung" + ], + "authorized_access_point": "Default" + }, + { + "md5": "b4c6e1ceeebbfaf2a590de55707fb961", + "pid": "99018207X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Sulfotransferasen" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7623456-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)99018207X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7623456-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Heparan-Sulfat-6-O-Endosulfatase", + "Protein Sulf1", + "Protein Sulf2", + "heparan sulfate 6-O-endosulfatase", + "heparan sulfate 6O-endosulfatase" + ], + "authorized_access_point": "Heparan-Sulfat-6-O-Endosulfatasen" + }, + { + "md5": "4c8b5a355ee24f049205aa600629029c", + "pid": "990635139", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Ingenieurin" + } + ], + "related": [ + { + "authorized_access_point": "Maschinenbauingenieur" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7627826-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)990635139", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7627826-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Maschineningenieurin" + ], + "authorized_access_point": "Maschinenbauingenieurin" + }, + { + "md5": "50b4b3c5047f292265a74e388030ddc9", + "pid": "99110546X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Puppenhaus" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113396169X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85038854", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85038854" + } + ], + "authorized_access_point": "Doll furniture" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113396169X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11946086", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11946086p" + } + ], + "authorized_access_point": "Meubles de poupe\u0301e" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7632599-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)99110546X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7632599-4", + "source": "GND" + } + ], + "authorized_access_point": "Puppenmo\u0308bel" + }, + { + "md5": "f53d90028c8717fe229cf7c730772eb8", + "pid": "991512669", + "note": [ + { + "label": [ + "Kritische Infrastrukturen sind Organisationen und Einrichtung mit wichtiger Bedeutung fu\u0308r das staatliche Gemeinwesen, bei deren Beeintra\u0308chtigung oder Ausfall nachhaltig wirkende Versorgungsengpa\u0308sse, erhebliche Sto\u0308rungen der o\u0308ffentlichen Sicherheit oder andere dramatische Folgen eintra\u0308ten." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Infrastruktur" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7636249-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)991512669", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7636249-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Critical infrastructure", + "KRITIS" + ], + "authorized_access_point": "Kritische Infrastruktur" + }, + { + "md5": "63cb47c1c9822c3e944a28b6ecbde399", + "pid": "992096200", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kunststoff" + }, + { + "authorized_access_point": "Biowerkstoff" + } + ], + "related": [ + { + "authorized_access_point": "Biopolymere" + }, + { + "authorized_access_point": "Biologisch abbaubarer Kunststoff" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7641320-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992096200", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7641320-2", + "source": "GND" + } + ], + "authorized_access_point": "Biokunststoff" + }, + { + "md5": "c07aac8dac888fc738bb7af7ba53ac9b", + "pid": "992258820", + "note": [ + { + "label": [ + "Kanzel in der Moschee, auf der die Freitagspredigt gehalten wird" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Moschee" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334558051", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh98000721", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh98000721" + } + ], + "authorized_access_point": "Minbars" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334558051", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16908643", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16908643d" + } + ], + "authorized_access_point": "Minbars" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7642353-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992258820", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7642353-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Mimbar" + ], + "authorized_access_point": "Minbar" + }, + { + "md5": "aebe79d780e26b2c745e8965511a9b8c", + "pid": "99273052X", + "note": [ + { + "label": [ + "Entstehungszeit 1914" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Renaissance-Antiqua" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7645690-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)99273052X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7645690-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Mediaeval", + "Media\u0308val" + ], + "authorized_access_point": "Behrens-Mediaeval" + }, + { + "md5": "3d6c99ab32404c48fa5359ed4c25e83d", + "pid": "992730937", + "note": [ + { + "label": [ + "Wikipedia unter Otto Eckmann - http://www.klingspor-museum.de/KlingsporKuenstler/Schriftdesigner/Eckmann/OttoEckmann.pdf" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Entstehungsjahr: 1900; Jugendstilschrift" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7645736-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992730937", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7645736-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Eckmann (Druckschrift)", + "Eckmann-Druckschrift" + ], + "authorized_access_point": "Eckmann-Schrift" + }, + { + "md5": "4da6c133a2d573803531c5af9966acb8", + "pid": "992731348", + "note": [ + { + "label": [ + "Lex. ges. Buchwesen - http://www.bleikloetzle.de/html/hammer-unziale.html" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Entstehungsjahr: 1921; handschriftliche Antiqua" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Unziale" + } + ], + "related": [ + { + "authorized_access_point": "Neue Hammer-Unziale" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7645780-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992731348", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7645780-1", + "source": "GND" + } + ], + "authorized_access_point": "Hammer-Unziale" + }, + { + "md5": "c5446764bce50c9c0fba0bae5b1ca222", + "pid": "99273147X", + "note": [ + { + "label": [ + "Entstehungsjahr: 1928 (Broadway Condensed 1929)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7645789-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)99273147X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7645789-8", + "source": "GND" + } + ], + "authorized_access_point": "Broadway (Druckschrift)" + }, + { + "md5": "646338ac712a35e4ad23efaec8ab16e5", + "pid": "992731496", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7645791-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992731496", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7645791-6", + "source": "GND" + } + ], + "authorized_access_point": "Charleston (Druckschrift)" + }, + { + "md5": "aedee40e3bcee0950a26b09c93c783db", + "pid": "992732468", + "note": [ + { + "label": [ + "Wikipedia unter Peter Behrens - http://www.klingspor-museum.de/KlingsporKuenstler/Schriftdesigner/Behrens/PeterBehrens.pdf" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Entstehungszeit 1901-1907 (auch Behrensschrift Kursiv)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gebrochene Schrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7645889-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992732468", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7645889-1", + "source": "GND" + } + ], + "authorized_access_point": "Behrens-Schrift" + }, + { + "md5": "1b9d13db34ffa840da4b5fbe0c3a6ab7", + "pid": "99273312X", + "note": [ + { + "label": [ + "Entstehungsjahr: 1954 (abweichend 1953)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "related": [ + { + "authorized_access_point": "Studio (Druckschrift)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7645958-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)99273312X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7645958-5", + "source": "GND" + } + ], + "authorized_access_point": "Flambard (Druckschrift)" + }, + { + "md5": "f550aa720a32970343b26c8c58d91c71", + "pid": "992733510", + "note": [ + { + "label": [ + "Entstehungsjahr: 1923 (Hausschnitt)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Baskerville-Antiqua" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7645998-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992733510", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7645998-6", + "source": "GND" + } + ], + "authorized_access_point": "Baskerville-Antiqua (Frankfurt am Main, 1923)" + }, + { + "md5": "373a5d9843ab1f7f6bfd8243711f1435", + "pid": "992733634", + "note": [ + { + "label": [ + "Lex. ges. Buchwesen - http://www.klingspor-museum.de/KlingsporKuenstler/Schriftgiessereien/Klingspor/Klingspor.pdf" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Entstehungsjahr: 1905" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Breitkopf-Fraktur" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7646010-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992733634", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7646010-1", + "source": "GND" + } + ], + "authorized_access_point": "Breitkopf-Fraktur (Offenbach, Main)" + }, + { + "md5": "563ff9da97d0e613b4d2d80230dd2238", + "pid": "992734894", + "note": [ + { + "label": [ + "Enstehungsjahr 1923" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Renaissance-Antiqua" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7646131-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992734894", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7646131-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Erasmus (Druckschrift)" + ], + "authorized_access_point": "Erasmus-Mediaeval" + }, + { + "md5": "8270b1b800beb97856a599a4e99effa8", + "pid": "992735122", + "note": [ + { + "label": [ + "Lex. ges. Buchwesen unter Tiemann, Walter - http://www.klingspor-museum.de/KlingsporKuenstler/Schriftdesigner/Tiemann/WTiemann.pdf" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Entstehungsjahre: Fichte-Fraktur mager 1935, Fichte-Fraktur fett 1939" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fraktur (Druckschrift)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7646157-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992735122", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7646157-9", + "source": "GND" + } + ], + "authorized_access_point": "Fichte-Fraktur" + }, + { + "md5": "2cab2bad100deff69f280d28d46a1019", + "pid": "992735270", + "note": [ + { + "label": [ + "Entstehungsjahr 1949; kursiv; halbfett" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7646172-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992735270", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7646172-5", + "source": "GND" + } + ], + "authorized_access_point": "Folkwang (Druckschrift)" + }, + { + "md5": "404e4fb759c628b91056b7d693a12c93", + "pid": "992735823", + "note": [ + { + "label": [ + "Entstehungsjahr: 1925" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Renaissance-Antiqua" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7646231-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992735823", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7646231-6", + "source": "GND" + } + ], + "authorized_access_point": "Grotius (Druckschrift)" + }, + { + "md5": "49386a9fcb5d82a3a7b798920fd448e4", + "pid": "99273584X", + "note": [ + { + "label": [ + "Entstehungsjahr: nach 1906 (nachgewiesen 1921)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Antiqua" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7646234-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)99273584X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7646234-1", + "source": "GND" + } + ], + "authorized_access_point": "Haenel-Antiqua" + }, + { + "md5": "4d6ae8dec4e97b2518e159c4e2374057", + "pid": "992735858", + "note": [ + { + "label": [ + "Entstehungsjahr 1933, fett" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fraktur (Druckschrift)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7646235-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992735858", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7646235-3", + "source": "GND" + } + ], + "authorized_access_point": "Haenel-Fraktur" + }, + { + "md5": "72ff48a12ede8bcfbe6bc1f8a4b5a6c4", + "pid": "992736099", + "note": [ + { + "label": [ + "Wikipedia unter Rudolf Koch - http://beepworld.de/members66/vau-ef-be/schriftliste2.htm" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Entstehungsjahr 1932" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schreibschrift (Druckschrift)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7646259-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992736099", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7646259-6", + "source": "GND" + } + ], + "authorized_access_point": "Holla (Druckschrift)" + }, + { + "md5": "4ad9df59c484cdaa9bd60acc2ff53f34", + "pid": "992736269", + "note": [ + { + "label": [ + "Wikipedia unter Otto Hupp - http://beepworld.de/members66/vau-ef-be/schriftliste1.htm" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Entstehungsjahr 1911 (abweichend 1910)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fraktur (Druckschrift)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7646277-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992736269", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7646277-8", + "source": "GND" + } + ], + "authorized_access_point": "Hupp-Fraktur" + }, + { + "md5": "bb6c2700f81d5bdc2c2c40d9e19c4150", + "pid": "992737532", + "note": [ + { + "label": [ + "Enstehungsjahr 1936 (Typothek gibt 1928 an)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7646406-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992737532", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7646406-4", + "source": "GND" + } + ], + "authorized_access_point": "Euphorion (Druckschrift)" + }, + { + "md5": "f1154e93cf2fc5c9422ede758bf2aaf5", + "pid": "992737788", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Font" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7646431-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992737788", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7646431-3", + "source": "GND" + } + ], + "variant_access_point": [ + "European (Druckschrift)", + "Linotype European PI" + ], + "authorized_access_point": "European PI" + }, + { + "md5": "e98710d81672775110b6a51f9b15bd0e", + "pid": "992737826", + "note": [ + { + "label": [ + "Nachgewiesen 2004" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Font" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7646435-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992737826", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7646435-0", + "source": "GND" + } + ], + "variant_access_point": [ + "SpaceCowboy" + ], + "authorized_access_point": "Space Cowboy" + }, + { + "md5": "a97cc38c23484b527a222419c6ed2654", + "pid": "992737834", + "note": [ + { + "label": [ + "Vorlage Deutsches Buch- und Schriftmuseum - http://de.ffonts.net/Beebop.font" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Nachgewiesen 2002" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Font" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7646436-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992737834", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7646436-2", + "source": "GND" + } + ], + "authorized_access_point": "Beebop (Druckschrift)" + }, + { + "md5": "45fda31a69572d3da798a536c0d8335b", + "pid": "992738075", + "note": [ + { + "label": [ + "Entstehungszeit 1931" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7646463-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992738075", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7646463-5", + "source": "GND" + } + ], + "authorized_access_point": "Salut (Druckschrift)" + }, + { + "md5": "ada1507f52db66b677fdb6df0b77586b", + "pid": "992738083", + "note": [ + { + "label": [ + "Wikipedia unter Walter Tiemann - http://www.klingspor-museum.de/KlingsporKuenstler/Schriftdesigner/Tiemann/WTiemann.pdf" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Entstehungszeit 1923, halbfett 1917" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Antiqua" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7646464-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992738083", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7646464-7", + "source": "GND" + } + ], + "authorized_access_point": "Tiemann-Antiqua" + }, + { + "md5": "2084c4e979deb391d3b851c7ae252098", + "pid": "992738172", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7646473-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992738172", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7646473-8", + "source": "GND" + } + ], + "authorized_access_point": "Phalanx (Druckschrift)" + }, + { + "md5": "48fb49a98a7fd9ade4f17388c68a597f", + "pid": "992738601", + "note": [ + { + "label": [ + "Wikipedia - http://www.klingspor-museum.de/KlingsporKuenstler/Schriftdesigner/Brudi/Brudi.pdf" + ], + "noteType": "dataSource" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7646519-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992738601", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7646519-6", + "source": "GND" + } + ], + "authorized_access_point": "Orbis (Druckschrift)" + }, + { + "md5": "6808a98849bab2b37ad942f2930d28dc", + "pid": "992739659", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7646620-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992739659", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7646620-6", + "source": "GND" + } + ], + "authorized_access_point": "Romantiques" + }, + { + "md5": "ce13fed911c5154cdc3be65e4f87ae25", + "pid": "992739888", + "note": [ + { + "label": [ + "Entstehungsjahr 1915" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schreibschrift (Druckschrift)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7646644-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992739888", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7646644-9", + "source": "GND" + } + ], + "authorized_access_point": "Batarde (Druckschrift)" + }, + { + "md5": "72868ca8dfe11e5d8db2ab88b0ba91ba", + "pid": "992740002", + "note": [ + { + "label": [ + "Entstehungsjahr: 1932" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Lucian (Druckschrift)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7646656-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992740002", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7646656-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Lucian-Schrift", + "Lucian-Antiqua (Frankfurt am Main)" + ], + "authorized_access_point": "Lucian (Druckschrift, Frankfurt am Main)" + }, + { + "md5": "859264ddf8b653c9edb22b44379781b0", + "pid": "992740622", + "note": [ + { + "label": [ + "Entstehungsjahr: 1937" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Rundgotische Schrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7646722-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992740622", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7646722-3", + "source": "GND" + } + ], + "authorized_access_point": "Wei\u00df-Rundgotisch" + }, + { + "md5": "6f79106ea7f49958de526a138d2ba30c", + "pid": "992741491", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7646814-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992741491", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7646814-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Schlemihl (Schrift)" + ], + "authorized_access_point": "Peter Schlemihl (Druckschrift)" + }, + { + "md5": "10359bb5132b555bd55c6100fc751672", + "pid": "992741696", + "note": [ + { + "label": [ + "Entstehungsjahr 1939" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schreibschrift (Druckschrift)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7646834-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992741696", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7646834-3", + "source": "GND" + } + ], + "authorized_access_point": "Gavotte (Druckschrift)" + }, + { + "md5": "de840f0e8bc5a3a20bf018e9aada601e", + "pid": "992742145", + "note": [ + { + "label": [ + "Entstehungszeit 1922; nach Vorlage des 18. Jh.; Bezeichnung der Schriftgiesserei Ludwig & Mayer fu\u0308r die Schrift \"Nicolas Cochin\"; auch kursiv u. fett" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Antiqua" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7646878-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992742145", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7646878-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Nicolas Cochin (Druckschrift)" + ], + "authorized_access_point": "Sonderdruck-Antiqua" + }, + { + "md5": "b088a612d5c70a6d219e7ad886ed0037", + "pid": "992742498", + "note": [ + { + "label": [ + "Entstehungszeit 1939; mager, fett, kursiv, schmal fett" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7646915-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992742498", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7646915-3", + "source": "GND" + } + ], + "authorized_access_point": "Stahl (Druckschrift)" + }, + { + "md5": "8d0768da0197374416bb34626c7ee21b", + "pid": "992742722", + "note": [ + { + "label": [ + "Entstehungsjahr 1934 (normal u.fett); licht 1937" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7646939-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992742722", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7646939-6", + "source": "GND" + } + ], + "authorized_access_point": "Superba (Druckschrift)" + }, + { + "md5": "0ac74b09ae6331cf06610b0578ba0dbd", + "pid": "992742854", + "note": [ + { + "label": [ + "Benannt nach Heinrich Wallau, einem Buchdrucker und Schriftkenner aus Mainz, mit der Breitfeder entworfen, auch mager, fett, halbfett und mit unterschiedlichen Gro\u00dfbuchstaben" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Rundgotische Schrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7646953-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992742854", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7646953-0", + "source": "GND" + } + ], + "authorized_access_point": "Wallau (Druckschrift)" + }, + { + "md5": "9a27ff068c34f913460e1388ef3e2b7f", + "pid": "992742889", + "note": [ + { + "label": [ + "Entstehungszeit 1924" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gotische Schrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7646956-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992742889", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7646956-6", + "source": "GND" + } + ], + "authorized_access_point": "Tiemann-Gotisch" + }, + { + "md5": "fd0f9434a170529bd95d1a9f822bf7f0", + "pid": "992743273", + "note": [ + { + "label": [ + "Wikipedia unter Rudolf Koch - http://www.klingspor-museum.de/KlingsporKuenstler/Schriftdesigner/Koch/RudolfKoch.pdf" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Entstehunmgsjahr 1929; Auszeichnungsschrift" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Groteskschrift" + } + ], + "related": [ + { + "authorized_access_point": "Kabel (Druckschrift)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7647001-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992743273", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7647001-5", + "source": "GND" + } + ], + "authorized_access_point": "Zeppelin (Druckschrift)" + }, + { + "md5": "dbbc854ed960d40d9ab0864702316e7d", + "pid": "992743605", + "note": [ + { + "label": [ + "Nachgewiesen 2005" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7647034-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992743605", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7647034-9", + "source": "GND" + } + ], + "authorized_access_point": "Cocotte minute (Druckschrift)" + }, + { + "md5": "92c5c91cdaee557ebb96f38167ac23e7", + "pid": "992744040", + "note": [ + { + "label": [ + "Entstehungsjahr 1956" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schreibschrift (Druckschrift)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7647080-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992744040", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7647080-5", + "source": "GND" + } + ], + "authorized_access_point": "Maxim (Druckschrift)" + }, + { + "md5": "0b299a128d61221265e20e253623cbd7", + "pid": "992744091", + "note": [ + { + "label": [ + "Enstehungsjahr 1965" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Font" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7647085-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992744091", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7647085-4", + "source": "GND" + } + ], + "authorized_access_point": "Amelia (Druckschrift)" + }, + { + "md5": "1699bcf0bf4594686ac22c52d626d11b", + "pid": "992744431", + "note": [ + { + "label": [ + "Entstehungszeit 1928 (leicht, kra\u0308ftig)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Egyptienne" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7647121-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992744431", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7647121-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Landi (Druckschrift)" + ], + "authorized_access_point": "Welt-Antiqua" + }, + { + "md5": "123a66502253d7c7aee1a37ae3fe69a8", + "pid": "992744792", + "note": [ + { + "label": [ + "Gestalter: Koch, Rudolf <1876-1934>, fertiggestellt von Friedrich Heinrichsen, Halbfette von Hans Ku\u0308hne; Druckschrift mit gebrochenen Versalien" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7647157-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992744792", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7647157-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Offenbacher Schrift (Druckschrift)" + ], + "authorized_access_point": "Offenbach (Druckschrift)" + }, + { + "md5": "41e41abd0a0ab3200fc0001cd8285011", + "pid": "99274508X", + "note": [ + { + "label": [ + "Entstehungszeit um 1906" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gotische Schrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7647185-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)99274508X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7647185-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Hupp-Liturgisch" + ], + "authorized_access_point": "Liturgisch (Druckschrift)" + }, + { + "md5": "fbae9b8cf23fd5f1930c6af2ff6bbad6", + "pid": "992745187", + "note": [ + { + "label": [ + "Entstehungszeit 1905" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Antiqua" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7647196-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992745187", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7647196-2", + "source": "GND" + } + ], + "authorized_access_point": "Ko\u0308nig-Antiqua" + }, + { + "md5": "7f422eb8e0081b539488eb8fc997600c", + "pid": "992745292", + "note": [ + { + "label": [ + "Entstehungszeit vor 1940" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7647206-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992745292", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7647206-1", + "source": "GND" + } + ], + "authorized_access_point": "Konupkova italka" + }, + { + "md5": "6bb500221b4b7f259ed7a18095e42f13", + "pid": "992745489", + "note": [ + { + "label": [ + "Mengel, Willi: Druckschriften der Gegenwart, Stuttgart 1966 - http://www.klingspor-museum.de/KlingsporKuenstler/Schriftgiessereien/Berthold/BertholdAG.pdf" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Entstehungszeit 1905-1926; weitere Formen: kursiv, halbfett, fett, kursiv fett" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Klassizistische Antiqua" + } + ], + "related": [ + { + "authorized_access_point": "Pressa-Antiqua" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7647226-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992745489", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7647226-7", + "source": "GND" + } + ], + "authorized_access_point": "Augustea" + }, + { + "md5": "cd9919e4f2a3e32c4bbaf8f62a556f08", + "pid": "992745969", + "note": [ + { + "label": [ + "Entstehungszeit 1927; Schrift der Heuvelpers" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7647276-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992745969", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7647276-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Meidoorntype" + ], + "authorized_access_point": "Meidoorn (Druckschrift)" + }, + { + "md5": "976233483a3b22107255e6f0bebab084", + "pid": "992746248", + "note": [ + { + "label": [ + "Entstehungszeit: 1900" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schwabacher" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7647301-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992746248", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7647301-6", + "source": "GND" + } + ], + "authorized_access_point": "Offenbacher Schwabacher" + }, + { + "md5": "949c42e06e95fd043fbbaa05ad664c5f", + "pid": "992746779", + "note": [ + { + "label": [ + "Entstehungszeit 1924; weitere Formen: Wilhelm-Klingspor-Gotisch, Wilhelm-Klingspor-Fraktur" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gebrochene Schrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7647356-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992746779", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7647356-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Wilhelm Klingspor Schrift" + ], + "authorized_access_point": "Wilhelm-Klingspor-Schrift" + }, + { + "md5": "2e31644969583550514f4dbccba342f3", + "pid": "992747031", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Font" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7647381-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992747031", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7647381-8", + "source": "GND" + } + ], + "authorized_access_point": "Helena (Druckschrift)" + }, + { + "md5": "06af1af06cf50bc92bdcf49ff66d2eb6", + "pid": "992747260", + "note": [ + { + "label": [ + "Enstehungszeit 1928" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gotische Schrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7647384-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992747260", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7647384-3", + "source": "GND" + } + ], + "authorized_access_point": "Altenburger Werk-Gotisch" + }, + { + "md5": "c242a656918fb09132fb79a94e2241f3", + "pid": "99274881X", + "note": [ + { + "label": [ + "Entstehungszeit 1901; Hausschnitt" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fraktur (Druckschrift)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7647389-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)99274881X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7647389-2", + "source": "GND" + } + ], + "authorized_access_point": "Offenbacher Fraktur" + }, + { + "md5": "c8ba1c2e2c3ce6176911b4c36604a8a4", + "pid": "992751020", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7647399-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992751020", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7647399-5", + "source": "GND" + } + ], + "authorized_access_point": "Astre\u0301e" + }, + { + "md5": "cc1083ab5c147e46ec3f4a655f2a81b3", + "pid": "992752973", + "note": [ + { + "label": [ + "Entstehungsjahr 1929 (normal, mager, halbfett, fett)", + "Benutzt fu\u0308r alle Metro-Schriften. Einzelne Metro-Schriften werden getrennt angesetzt." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Groteskschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7647406-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992752973", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7647406-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Metroblack", + "Metrolite", + "Metrothin", + "Metromedium" + ], + "authorized_access_point": "Metro (Druckschrift)" + }, + { + "md5": "6d04a03bcae06114559f97ab376c7b10", + "pid": "992753589", + "note": [ + { + "label": [ + "Entstehungszeit 1913" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gebrochene Schrift" + } + ], + "related": [ + { + "authorized_access_point": "Kanzleischrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7647466-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992753589", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7647466-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Laudan-Kanzlei" + ], + "authorized_access_point": "Laudahn-Kanzlei" + }, + { + "md5": "cb5b42c5af7e4ac88e9f9b3f6e7b968d", + "pid": "99275366X", + "note": [ + { + "label": [ + "Vero\u0308ffentlicht: 1914. Abweichende Entstehungszeit 1917 (Klingspor)", + "Die Benennung Maximilian-Fraktur (Zettelkatalog Deutsches Buch- und Schriftmuseum, Entstehungszeit 1922) ist bislang nur nachgewiesen in: Faust : eine Monatsschrift fu\u0308r Kunst, Literatur und Musik. Die Zeitschrift erschien von 1921-1926. Die Maximilian-Fraktur entspricht der Maximilian-Gotisch (Stand: 22.10.2021)" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gebrochene Schrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7647473-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)99275366X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7647473-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Maximilian (Druckschrift)", + "Maximilian-Fraktur" + ], + "authorized_access_point": "Maximilian-Gotisch" + }, + { + "md5": "aa2c9409a592a3ae7e6b851108be64b9", + "pid": "992753694", + "note": [ + { + "label": [ + "Entstehungszeit 1922, auch kursiv" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Antiqua" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7647475-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992753694", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7647475-6", + "source": "GND" + } + ], + "authorized_access_point": "Koch-Antiqua" + }, + { + "md5": "7d18c1815ae5a5ba3373900f18c77517", + "pid": "992754151", + "note": [ + { + "label": [ + "Entstehungsjahr: 1956, Deutsches Buch- und Schriftmuseum 1954" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Kursive" + } + ], + "related": [ + { + "authorized_access_point": "Schneidler-Mediaeval" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7647523-2", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992754151", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7647523-2", + "source": "GND" + } + ], + "variant_access_point": [ + "Schneidler-Amalthea (Druckschrift)", + "Schneidler (Druckschrift)", + "Schneidler-Kursiv", + "Schneidler-Mediaeval kursiv" + ], + "authorized_access_point": "Amalthea (Druckschrift)" + }, + { + "md5": "3dcc5d1639267979dd19cb544b46f560", + "pid": "992754305", + "note": [ + { + "label": [ + "Entstehungszeit 1992, bei MyFonts ab Januar 2000" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Groteskschrift" + }, + { + "authorized_access_point": "Font" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7647539-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992754305", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7647539-6", + "source": "GND" + } + ], + "authorized_access_point": "FF Schulbuch" + }, + { + "md5": "a1f728fb0ff31f94538aabd4e960871b", + "pid": "992754534", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Antiqua" + }, + { + "authorized_access_point": "Font" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7647565-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992754534", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7647565-7", + "source": "GND" + } + ], + "authorized_access_point": "Typewriter Elite" + }, + { + "md5": "921ad26d0a30b907f67ffc3a27b83cc7", + "pid": "992754550", + "note": [ + { + "label": [ + "Verwendet fu\u0308r alle auf dem arabischen Schriftsystem basierenden Druckschriften; Einordnung in Gruppe XI der DIN 16518" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + }, + { + "authorized_access_point": "Arabische Schrift" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113367707X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85139095", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85139095" + } + ], + "authorized_access_point": "Arabic type" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)113367707X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF11973333", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11973333t" + } + ], + "authorized_access_point": "Caracte\u0300res arabes (imprimerie)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1254405860", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "XX550520", + "source": "SPMABN" + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX550520" + } + ], + "authorized_access_point": "Tipos de imprenta a\u0301rabes" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7647567-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992754550", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7647567-0", + "source": "GND" + } + ], + "authorized_access_point": "Arabische Schrift (Druckschrift)" + }, + { + "md5": "65c1497c4be4e5da1d8d8848499186ae", + "pid": "992754909", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7647600-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992754909", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7647600-5", + "source": "GND" + } + ], + "authorized_access_point": "Retina (Druckschrift)" + }, + { + "md5": "7336c2b6b3d0434301bc91cae0e2a530", + "pid": "992757126", + "note": [ + { + "label": [ + "Wikipedia unter Koch, Rudolf - http://www.klingspor-museum.de/KlingsporKuenstler/Schriftdesigner/Koch/koch_special.pdf" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Entstehungsjahr: 1933/34" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Fraktur (Druckschrift)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7647830-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992757126", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7647830-0", + "source": "GND" + } + ], + "authorized_access_point": "Neu-Fraktur" + }, + { + "md5": "fa447ab21bc67cb52eaa9a78440aae44", + "pid": "992757681", + "note": [ + { + "label": [ + "Wikipedia unter Kurt Weidemann - http://www.linotype.com/639/kurtweidemann.html" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Entstehungsjahr: 1983" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Venezianische Renaissance-Antiqua" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7647886-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992757681", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7647886-5", + "source": "GND" + } + ], + "variant_access_point": [ + "Weidemann (Druckschrift)" + ], + "authorized_access_point": "ITC Weidemann" + }, + { + "md5": "fa3eaab0a9ddecb464c29405d1ca18d9", + "pid": "992779871", + "note": [ + { + "label": [ + "Entstehungsjahr 1937" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Venezianische Renaissance-Antiqua" + } + ], + "related": [ + { + "authorized_access_point": "Amalthea (Druckschrift)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7648207-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)992779871", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7648207-8", + "source": "GND" + } + ], + "authorized_access_point": "Schneidler-Mediaeval" + }, + { + "md5": "7df59078bb989ed29957ccb5b17f1258", + "pid": "99283600X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Brettspiel" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7648685-0", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)99283600X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7648685-0", + "source": "GND" + } + ], + "variant_access_point": [ + "Chaupad", + "Chaupar", + "Chaupat", + "Chaupur", + "Pat (Brettspiel)" + ], + "authorized_access_point": "Pachisi" + }, + { + "md5": "d05b8701f2ea2e9b1e66f7a00ce6e3d3", + "pid": "993971806", + "note": [ + { + "label": [ + "Oberbegriff fu\u0308r die zwei ersten Gruppen in der Klassifikation von Schrift nach DIN 16518", + "Mediaeval nannt man Antiqua-Schriften, die im Zuge einer typographischen Erneuerungsbewegung im 19. Jahrhundert entstanden sind (Lex. ges. Buchwesens, Bd. V, S. 110), engl. U\u0308bersetzung/Schreibweise ist medieval" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Antiqua" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7657325-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)993971806", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7657325-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Mediaeval", + "Mediaeval-Antiqua" + ], + "authorized_access_point": "Renaissance-Antiqua" + }, + { + "md5": "3282477a3281ec2afe8eda9832ffb480", + "pid": "994042582", + "note": [ + { + "label": [ + "Feldzug Schwedens unter Karl X. Gustav, der den zugefrorenen Kleinen und Gro\u00dfen Belt u\u0308berquert und im Frieden von Roskilde die Abtretung gro\u00dfer Landgebiete durchsetzt." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "related": [ + { + "authorized_access_point": "Schwedisch-Da\u0308nischer Krieg (1657-1660)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7657707-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)994042582", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7657707-7", + "source": "GND" + } + ], + "authorized_access_point": "Feldzug gegen Da\u0308nemark (1657-1658)" + }, + { + "md5": "6f5dddc3c009408c462400d859efd866", + "pid": "99405212X", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7657749-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)99405212X", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7657749-1", + "source": "GND" + } + ], + "authorized_access_point": "A\u0308rztliche Behandlung (Motiv)" + }, + { + "md5": "a9e85a71647ad902675770e66e4b4f06", + "pid": "994508417", + "note": [ + { + "label": [ + "Buch, dessen Autor zumeist ein Fotograf ist und dessen prima\u0308re Aussage durch die enthaltenen Fotografien transportiert wird", + "Fu\u0308r Bu\u0308cher, die man sich von eigenen digitalen Fotos erstellen lassen kann, verwende \u201ePerso\u0308nliches Fotobuch\u201c.", + "Fu\u0308r vorliegende Fotobu\u0308cher wird in der Sacherschlie\u00dfung das SW Fotografie (oder ein engeres zutreffendes Schlagwort) zusammen mit dem Formbegriff Bildband vergeben.", + "Als Formangabe fu\u0308r die Art des Inhalts als Teil des optionalen Sets zugelassen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Buch" + } + ], + "related": [ + { + "authorized_access_point": "Perso\u0308nliches Fotobuch" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1223003159", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2006009091", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2006009091" + } + ], + "authorized_access_point": "Photobooks" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7660057-9", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)994508417", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7660057-9", + "source": "GND" + } + ], + "variant_access_point": [ + "Fotobuch (Kunst)", + "Photobuch", + "Photobuch (Kunst)", + "Photobook" + ], + "authorized_access_point": "Fotobuch" + }, + { + "md5": "e7a7163477aaa21132321b40c6c7b429", + "pid": "994659857", + "note": [ + { + "label": [ + "Afrobrasilianischer Tanz" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Tanz" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334651493", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh2006000144", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2006000144" + } + ], + "authorized_access_point": "Jongo (Dance)" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1334651493", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF17146982", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb171469827" + } + ], + "authorized_access_point": "Jongo (danse)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7661541-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)994659857", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7661541-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Caxambu (Tanz)" + ], + "authorized_access_point": "Jongo" + }, + { + "md5": "796b82098da046610275523cd93f7a1f", + "pid": "994660987", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Zahl" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7661563-7", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)994660987", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7661563-7", + "source": "GND" + } + ], + "authorized_access_point": "Quadratfreie Zahl" + }, + { + "md5": "e077bfd805384199b09b955342f0a487", + "pid": "995780951", + "note": [ + { + "label": [ + "Schmied, der spezialisiert ist auf das Schmieden von Gliederketten aus Eisen" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schmied" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7668511-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)995780951", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7668511-1", + "source": "GND" + } + ], + "authorized_access_point": "Kettenschmied" + }, + { + "md5": "320ff81421ecfec9f9a1a24d013de0de", + "pid": "997781491", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Programm" + } + ], + "related": [ + { + "authorized_access_point": "Videobearbeitung" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7679461-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)997781491", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7679461-1", + "source": "GND" + } + ], + "authorized_access_point": "VirtualDub" + }, + { + "md5": "806d1aafdb5c67ffcda8397884f736d7", + "pid": "998759074", + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Motiv" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7683770-1", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)998759074", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7683770-1", + "source": "GND" + } + ], + "variant_access_point": [ + "Morisca (Motiv)" + ], + "authorized_access_point": "Moresca (Motiv)" + }, + { + "md5": "9a29e21147cd980434c2f2eb95ba23e3", + "pid": "998776785", + "note": [ + { + "label": [ + "Wikipedia - http://www.typolexikon.de/g/gebrochene-schriften.html" + ], + "noteType": "dataSource" + }, + { + "label": [ + "Auch Blackletter, Gotische Schrift oder Frakturschrift umgangssprachlich genannt" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Druckschrift" + } + ], + "related": [ + { + "authorized_access_point": "Gotische Schrift" + }, + { + "authorized_access_point": "Fraktur (Druckschrift)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7683814-6", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)998776785", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7683814-6", + "source": "GND" + } + ], + "variant_access_point": [ + "Deutsche Schrift" + ], + "authorized_access_point": "Gebrochene Schrift" + }, + { + "md5": "29803e63901d5a9476172b93432c3b18", + "pid": "999038095", + "note": [ + { + "label": [ + "Japanische Stofffa\u0308rbeschablonen, die unter dem Namen Katagami-Technik bekannt geworden sind." + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Schablone" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1332766072", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16595573", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16595573h" + } + ], + "authorized_access_point": "Katagami" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7685117-5", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)999038095", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7685117-5", + "source": "GND" + } + ], + "authorized_access_point": "Katagami" + }, + { + "md5": "c55d0a260db71a47470699c00df34e37", + "pid": "999129317", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333486758", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "sh85033299", + "source": "DLC" + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85033299" + } + ], + "authorized_access_point": "Cottidae" + }, + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333486758", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF16207651", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb16207651k" + } + ], + "authorized_access_point": "Cottide\u0301s" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7685452-8", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)999129317", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7685452-8", + "source": "GND" + } + ], + "variant_access_point": [ + "Cottidae" + ], + "authorized_access_point": "Groppen (Familie)" + }, + { + "md5": "9403bf0b97ee93ebd0ad3fa643384b35", + "pid": "999602810", + "note": [ + { + "label": [ + "Gattung d. Gro\u00dfguramis" + ], + "noteType": "general" + } + ], + "type": "bf:Topic", + "broader": [ + { + "authorized_access_point": "Gro\u00dfguramis" + } + ], + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333946708", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15952715", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15952715w" + } + ], + "authorized_access_point": "Colisa" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7687697-4", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)999602810", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7687697-4", + "source": "GND" + } + ], + "variant_access_point": [ + "Colisa" + ], + "authorized_access_point": "Zwergfadenfisch (Gattung)" + }, + { + "md5": "aaf8e2318d90d7716496ed3e0e9bdb81", + "pid": "999617249", + "type": "bf:Topic", + "closeMatch": [ + { + "source": "GND", + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)1333946120", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "FRBNF15080454", + "source": "BNF" + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb15080454j" + } + ], + "authorized_access_point": "Osphronemidae" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://d-nb.info/gnd/7687772-3", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-101)999617249", + "source": "GND" + }, + { + "type": "bf:Nbn", + "value": "(DE-588)7687772-3", + "source": "GND" + } + ], + "variant_access_point": [ + "Osphronemidae" + ], + "authorized_access_point": "Gro\u00dfguramis" + } +] \ No newline at end of file diff --git a/data/cognd_metadata.csv b/data/cognd_metadata.csv new file mode 100644 index 00000000..3f1f1ce7 --- /dev/null +++ b/data/cognd_metadata.csv @@ -0,0 +1,2124 @@ +2024-09-11 09:08:43.919467 2024-09-11 09:08:43.919472 38719915-d3ce-47fb-be1a-890442e882b9 {"md5": "225ea2dda78ff465a51ccdfdd240446c", "pid": "1334542139", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Arithmetic_combinatorics&oldid=1174356901"], "noteType": "dataSource"}, {"label": ["Mathematisches Forschungsgebiet zwischen Zahlentheorie, Kombinatorik, Ergodentheorie und Harmonischer Analyse"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kombinatorik"}], "related": [{"authorized_access_point": "Arithmetische Operation"}, {"authorized_access_point": "Arithmetische Folge"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334542139", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334542139", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334542139", "source": "GND"}], "variant_access_point": ["Arithmetic Combinatorics"], "authorized_access_point": "Arithmetische Kombinatorik"} 1 +2024-09-11 09:08:44.007298 2024-09-11 09:08:44.007303 bdbf3909-1094-4feb-981f-d0a9d153a3d5 {"md5": "8696eac82d52063b0db85626d7d76187", "pid": "1334538549", "note": [{"label": ["Kombiniere mit Sprachbezeichnung und Wortart; z.B. SWW Griechisch ; Verb ; oikodomeō"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334538549", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334538549", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334538549", "source": "GND"}], "variant_access_point": ["oikodomein", "οικοδομειν", "οικοδομεω"], "authorized_access_point": "oikodomeō"} 1 +2024-09-11 09:08:44.060747 2024-09-11 09:08:44.060752 c269dfed-5f4b-41c8-8a98-6dc6758c2dfb {"md5": "92f37f26b093f11a1fc0c9e68abad196", "pid": "1334484775", "note": [{"label": ["Wikipedia - https://nl.wikipedia.org/w/index.php?title=Bildts&oldid=67394558"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Holländisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334484775", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334484775", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334484775", "source": "GND"}], "variant_access_point": ["Bildts (Holländisch)", "Bildtse taal (Holländisch)"], "authorized_access_point": "Mundart Holländisch (Het Bildt)"} 1 +2024-09-11 09:08:44.119685 2024-09-11 09:08:44.119688 901be49d-44f4-4566-9f67-ba73963597d0 {"md5": "bbe380994a49c76fb1375ff6ee64c665", "pid": "1334336342", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Diamantoide&oldid=227953008"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Käfigverbindungen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334336342", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334336342", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334336342", "source": "GND"}], "variant_access_point": ["Diamantartige", "Polymantane", "Nanodiamanten", "Diamondoids"], "authorized_access_point": "Diamantoide"} 1 +2024-09-11 09:08:44.174637 2024-09-11 09:08:44.174641 bbc3132b-6aa4-45e0-8d39-3b263e048cf3 {"md5": "7be1cdf42c834b417c371d4a87ec1176", "pid": "1334320462", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Betrieb"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334320462", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334320462", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334320462", "source": "GND"}], "authorized_access_point": "Inklusionsbetrieb"} 1 +2024-09-11 09:08:44.230972 2024-09-11 09:08:44.230997 cc0ac9a2-d026-449b-9d9d-38243e3967bd {"md5": "6ad8d81762161b6d05011d8da5e2fb62", "pid": "1334314950", "note": [{"label": ["Homepage - https://heieditions.github.io/"], "noteType": "dataSource"}, {"label": ["technische Infrastruktur für die Online-Publikation von digitalisiertem Quellenmaterial inkl. Redaktionsmodul"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Softwareplattform"}], "related": [{"authorized_access_point": "Digitale Edition"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334314950", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334314950", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334314950", "source": "GND"}], "variant_access_point": ["Heidelberger digitale Editionen"], "authorized_access_point": "heiEDITIONS"} 1 +2024-09-11 09:08:44.286533 2024-09-11 09:08:44.286536 1a892206-6e14-4b8f-a99d-7f97676edcd8 {"md5": "052fed01d674eeffb4b6e741e315d9d4", "pid": "1334231826", "note": [{"label": ["ncatlab - https://ncatlab.org/nlab/show/Witten+index"], "noteType": "dataSource"}, {"label": ["Supersymmetrische Verteilungsfunktion in der Quantenfeldtheorie"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Verteilungsfunktion"}, {"authorized_access_point": "Supersymmetrie"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334231826", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334231826", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334231826", "source": "GND"}], "authorized_access_point": "Witten-Index"} 1 +2024-09-11 09:08:44.337921 2024-09-11 09:08:44.337925 9e6c3310-3d59-4420-8abd-ea07b833de9a {"md5": "647b26e74f6f0d388c14678a32839753", "pid": "1334230463", "note": [{"label": ["Encyclopedia of Math - https://encyclopediaofmath.org/index.php?title=Limit-absorption_principle&oldid=53491"], "noteType": "dataSource"}, {"label": ["Methode aus der Operatprtheorie und Streutheorie zum Finden von Lösungen der Helmholtz-Schwingungsgleichung und verwandter Gleichungen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Operatortheorie"}, {"authorized_access_point": "Streutheorie"}], "related": [{"authorized_access_point": "Helmholtz-Schwingungsgleichung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334230463", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334230463", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334230463", "source": "GND"}], "variant_access_point": ["Limiting Absorption Principle"], "authorized_access_point": "Limit-Absoprtion Principle"} 1 +2024-09-11 09:09:23.735745 2024-09-11 09:09:23.735748 39f24cb7-4de4-4c70-8b56-df4e5416af43 {"md5": "99b1613a623e828cb71948173524340a", "pid": "130722529", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7505168-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)130722529", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7505168-0", "source": "GND"}], "authorized_access_point": "Alkoholintoleranz"} 1 +2024-09-11 09:08:44.388854 2024-09-11 09:08:44.388857 0a17e4f2-704f-4bfe-bc3e-e741778cdcd1 {"md5": "1e566c495ec1bfa52b6f77b57e505e08", "pid": "1334227209", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Laplace-Matrix&oldid=237255983"], "noteType": "dataSource"}, {"label": ["Die Lapcematrix ist die diskrete Version des Laplace-Operator und hat Anwendungen in der Graphentheorie."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Graphentheorie"}], "related": [{"authorized_access_point": "Laplace-Operator"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334227209", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334227209", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334227209", "source": "GND"}], "variant_access_point": ["Kirchhoff-Matrix", "Diskreter Laplace-Operator", "Graph Laplacian"], "authorized_access_point": "Laplace-Matrix"} 1 +2024-09-11 09:08:44.441371 2024-09-11 09:08:44.441374 9a1f7670-4148-454a-9eb1-32e432454920 {"md5": "f22793b76e6e6f62252605ce7e0bfa44", "pid": "1334225907", "note": [{"label": ["Spektrum Lexikon der Mathematik - https://www.spektrum.de/lexikon/mathematik/hirzebruch-flaeche/3987", "Wikipedia - https://en.wikipedia.org/w/index.php?title=Hirzebruch_surface&oldid=1177831601"], "noteType": "dataSource"}, {"label": ["Eine Hirzebruch-Fläche ist Regelfläche über der projektiven Geraden."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Komplexe Mannigfaltigkeit"}, {"authorized_access_point": "Regelfläche"}, {"authorized_access_point": "Projektive Gerade"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334225907", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334225907", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334225907", "source": "GND"}], "variant_access_point": ["Hirzebruch Surface"], "authorized_access_point": "Hirzebruch-Fläche"} 1 +2024-09-11 09:08:44.493828 2024-09-11 09:08:44.493831 d51d7c38-2cf9-4b0b-a0e1-fea64d375097 {"md5": "2641ff23199b411b6ad52a1b7f5d521f", "pid": "1334131074", "note": [{"label": ["eiszeitlicher Biber"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Biber (Familie)"}, {"authorized_access_point": "Fossile Nagetiere"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334131074", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334131074", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334131074", "source": "GND"}], "variant_access_point": ["Trogontherium cuvieri"], "authorized_access_point": "Großbiber"} 1 +2024-09-11 09:08:44.545648 2024-09-11 09:08:44.545651 ddc336d7-d34c-400d-916b-f343cc21d765 {"md5": "141b8f7de73536a2d9b43d7751d03278", "pid": "1334127158", "note": [{"label": ["eiszeitlicher Maulwurf, disjunkte Funde in Südeuropa, Balkan, Kaukasus und Japan, aber auch in Mitteleuropa"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Maulwürfe (Familie)"}, {"authorized_access_point": "Fossile Kleinsäuger"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334127158", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334127158", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334127158", "source": "GND"}], "variant_access_point": ["Talpa minor"], "authorized_access_point": "Zwergmaulwurf"} 1 +2024-09-11 09:08:44.597271 2024-09-11 09:08:44.597276 c75ded5a-a045-4387-a26c-1458d3c4bbb7 {"md5": "f267b12110dcd1c063b370fc0a79ed44", "pid": "1334091412", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Werner_Br%C3%A4unig&oldid=237561503#Leben_und_Wirken"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Literaturpreis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334091412", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334091412", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334091412", "source": "GND"}], "authorized_access_point": "Werner-Bräuning-Literaturpreis"} 1 +2024-09-11 09:08:44.653815 2024-09-11 09:08:44.653819 8a3699f2-3f92-45a7-a341-5d5d24c03349 {"md5": "769dfada13db8f6a413aa1e7cf190f4f", "pid": "1334089663", "note": [{"label": ["Homepage - https://www.fontanepreis.de/", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Fontane-Preis&oldid=236484432"], "noteType": "dataSource"}, {"label": ["Würdigung eine:r Schriftsteller:in im europäischen Raum, der/die durch Arbeiten und Werke in besonderem Maße hervorgetreten ist. - seit 2012 Ausrichtung auf Reiseliteratur und -journalismus", "erstmals von 1913 bis 1922 vergeben. - nach 1949 gab es zwei Fontane-Preise (Westberliner Preis und Preis des DDR-Bezirks Potsdam). - 1994 wurde der Fontane-Literaturpreis von Theodor Fontanes Geburtsstadt Neuruppin neu gestiftet. - ab 2019 alle zwei Jahre gemeinschaftlich von der Fontanestadt Neuruppin und dem Land Brandenburg vergeben"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Literaturpreis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334089663", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334089663", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334089663", "source": "GND"}], "variant_access_point": ["Fontane-Preis für Literatur der Fontanestadt Neuruppin", "Berliner Kunstpreis für Literatur", "Kunstpreis Berlin für Literatur", "Großer Kunstpreis Berlin für Literatur"], "authorized_access_point": "Fontane-Preis"} 1 +2024-09-11 09:08:44.707111 2024-09-11 09:08:44.707114 0eec8860-9b63-40f4-a900-c24c14d90b27 {"md5": "c46ea796d402a04fccf11030e5dfd052", "pid": "1334088837", "note": [{"label": ["Homepage - https://web.archive.org/web/20180821112655/https://www.kulturradio.de/programm/literatur/walter_serner_preis/", "kulturpreise.de - https://www.kulturpreise.de/web/preise_info.php?preisd_id=48"], "noteType": "dataSource"}, {"label": ["vergeben für eine Kurzgeschichte zu einem vorgegebenen Thema"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Literaturpreis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334088837", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334088837", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334088837", "source": "GND"}], "variant_access_point": ["Walter Serner Preis"], "authorized_access_point": "Walter-Serner-Preis"} 1 +2024-09-11 09:08:44.773202 2024-09-11 09:08:44.773207 11cafe82-1337-4038-937c-6038bd10c82a {"md5": "5efc3eccac036915a69635e44515f96b", "pid": "1334088217", "note": [{"label": ["Auf Initiative des Lyrikers Raoul Schrott und mit Unterstützung des Tourismusbüros von Lech Zürs wird jährlich ein „Poeta Laureatus“ gewählt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Literaturpreis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334088217", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334088217", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334088217", "source": "GND"}], "authorized_access_point": "Poeta Laureatus"} 1 +2024-09-11 09:08:44.822416 2024-09-11 09:08:44.822418 07c24a80-f8ce-47ac-857d-fff875cfb78e {"md5": "1c948cb7608b1a1f49a6ec86b21a7ede", "pid": "1334087156", "note": [{"label": ["Homepage - https://www.matrikelportal.uni-hamburg.de/content/index.xml"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Datenbank"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334087156", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334087156", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334087156", "source": "GND"}], "variant_access_point": ["Matrikelportal (Hamburg)"], "authorized_access_point": "Hamburger Matrikelportal"} 1 +2024-09-11 09:08:44.872977 2024-09-11 09:08:44.872981 2c987098-7f5f-4e01-8318-8a5c4d5559f3 {"md5": "9327a3db1ce633c8bbc0fd701db07909", "pid": "133400076X", "note": [{"label": ["ausgestorbene Bärenart, die während des Pleistozäns in Eurasien beheimatet war"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bären (Familie)"}, {"authorized_access_point": "Fossile Bären"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133400076X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133400076X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133400076X", "source": "GND"}], "variant_access_point": ["Ursus deningeri"], "authorized_access_point": "Deninger-Bär"} 1 +2024-09-11 09:08:44.954528 2024-09-11 09:08:44.954531 99a3421b-f374-40f0-b2ee-962c405429a0 {"md5": "a208ff11d549085fafa854bb735b88c0", "pid": "1333993331", "note": [{"label": ["Lex. Soz., S. 533 - https://doi.org/10.1007/978-3-658-30834-6", "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=216806976", "Thes. Sozialwiss. - http://lod.gesis.org/thesoz/concept_10068103"], "noteType": "dataSource"}, {"label": ["Gesellschaftsform, die auf der Universalisierung des Organisationsprinzips des sozialen Netzwerks, i.S. von dezentralen, offenen Strukturen von interagierenden Knoten, beruht"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gesellschaft"}], "related": [{"authorized_access_point": "Soziales Netzwerk"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333993331", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333993331", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333993331", "source": "GND"}], "variant_access_point": ["Network Society"], "authorized_access_point": "Netzwerkgesellschaft"} 1 +2024-09-11 09:08:45.006842 2024-09-11 09:08:45.006845 5347eeca-a08e-4b2d-aded-bdae3b1780e9 {"md5": "89e21ce165c5fb7e1312715cec74aaa7", "pid": "1333992548", "note": [{"label": ["spätpleistozäner Riesenhirsch, oder -Elch"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hirsche"}, {"authorized_access_point": "Fossile Hirsche"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333992548", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333992548", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333992548", "source": "GND"}], "variant_access_point": ["Alces latifrons"], "authorized_access_point": "Breitstirnelch"} 1 +2024-09-11 09:08:45.061217 2024-09-11 09:08:45.061222 f0b6343b-14c0-4f2c-b92d-b6f28b726fc5 {"md5": "fc23646788a2cf752c8867d29f0be3d9", "pid": "1333987366", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Pflanzliche_Milch&oldid=244609687"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Pflanzliches Produkt"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333987366", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333987366", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333987366", "source": "GND"}], "variant_access_point": ["Pflanzenmilch (Lebensmittel)"], "authorized_access_point": "Pflanzliche Milch"} 1 +2024-09-11 09:08:45.11182 2024-09-11 09:08:45.111822 fa4eb04f-083b-4279-83b7-17b931883b0d {"md5": "9e0c470361e8298621d87bbb2b6e6591", "pid": "133396420X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=242602086"], "noteType": "dataSource"}, {"label": ["Eine Late-Night-Show ist eine am späten Abend ausgestrahlte Fernsehsendung, die Comedy- und Talkshow-Elemente kombiniert und typische Bestandteile wie Stand-up-Einlagen, ein Studiopublikum, sowie ggf. einen Gast und eine Showband enthält."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Unterhaltungssendung"}, {"authorized_access_point": "Fernsehsendung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133396420X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133396420X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133396420X", "source": "GND"}], "variant_access_point": ["Late-night show", "Late night show"], "authorized_access_point": "Late-Night-Show"} 1 +2024-09-11 09:08:45.164223 2024-09-11 09:08:45.164226 1fd27323-9d23-49f9-b3a8-1134d95621e2 {"md5": "d9fb3d2299891d658bcd356821a5f30f", "pid": "1333876874", "note": [{"label": ["erstes echtes Pferd der Gattung Equus in Eurasien, im Mittelpleistozän, es ist benannt nach dem ersten Fundort der Fossilien, wurde aber später auch im ganzen eurasischen Raum gefunden"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Pferde (Familie)"}, {"authorized_access_point": "Fossile Pferde"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333876874", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333876874", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333876874", "source": "GND"}], "variant_access_point": ["Mosbacher Wildpferd", "Mosbacher Pferd", "Equus mosbachensis"], "authorized_access_point": "Mosbachpferd"} 1 +2024-09-11 09:08:45.216222 2024-09-11 09:08:45.216225 5d8135f0-5843-4129-8350-ff050a3b7c44 {"md5": "c69b88d43d13204af636555627fb6812", "pid": "1333855907", "note": [{"label": ["Gattung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Lemminge"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333855907", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333855907", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333855907", "source": "GND"}], "variant_access_point": ["Dicrostonyx"], "authorized_access_point": "Halsbandlemminge"} 1 +2024-09-11 09:08:45.266113 2024-09-11 09:08:45.266116 03a8fb00-f900-4408-b599-49992fde9be0 {"md5": "0e67f562a831f96aba75b9c65acb3e15", "pid": "133385501X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Feldmaus (Gattung)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133385501X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133385501X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133385501X", "source": "GND"}], "variant_access_point": ["Sumpfmaus", "Microtus oeconomus"], "authorized_access_point": "Nordische Wühlmaus"} 1 +2024-09-11 09:08:45.318392 2024-09-11 09:08:45.318396 7463eb59-0f7e-4829-b5cb-7aff4258a47d {"md5": "6965cd416b112695c58a2e874e9443f5", "pid": "1333853084", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bison"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333853084", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333853084", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333853084", "source": "GND"}], "variant_access_point": ["Bison bison athabascae"], "authorized_access_point": "Waldbison"} 1 +2024-09-11 09:08:45.372861 2024-09-11 09:08:45.372864 2e4a46a6-419b-4ad1-804f-8454541482d6 {"md5": "1d38c20835ee33c18becde893699dd72", "pid": "1333852673", "note": [{"label": ["bis zum Ende der letzten Eiszeit in Europa verbreitet, lebte in Laubwäldern, Savannen und Grasländern, in Mitteleuropa bis zum Ende des letzten Interglazials, in Spanien bis zum Beginn der Würm-Eiszeit"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Nashörner"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333852673", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333852673", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333852673", "source": "GND"}], "variant_access_point": ["Merck-Nashorn", "Dicerorhinus kirchbergensis", "Stephanorhinus kirchbergensis"], "authorized_access_point": "Waldnashorn"} 1 +2024-09-11 09:08:45.469664 2024-09-11 09:08:45.469667 abd65a7d-39c2-44ec-81ef-fd7dc0d92a6b {"md5": "b40d764000fafafd707f41c5f28f5260", "pid": "1333849788", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333849788", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333849788", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333849788", "source": "GND"}], "authorized_access_point": "Authentizität (Motiv)"} 1 +2024-09-11 09:08:45.522667 2024-09-11 09:08:45.52267 336755cb-dac0-4fa7-9096-8453370d997a {"md5": "f3c6d497133f093fc5c075eb89cd6c3c", "pid": "1333849435", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333849435", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333849435", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333849435", "source": "GND"}], "authorized_access_point": "Künstlersignatur (Motiv)"} 1 +2024-09-11 09:08:45.576113 2024-09-11 09:08:45.576118 bbd1e737-f12b-468f-89d4-8945641c7aab {"md5": "996829b52e513e6c95bd7f7219cbe986", "pid": "1333729863", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333729863", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333729863", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333729863", "source": "GND"}], "authorized_access_point": "Ambiguität (Motiv)"} 1 +2024-09-11 09:08:45.627838 2024-09-11 09:08:45.627842 2c95f97e-321f-4a95-bced-7d09cf268363 {"md5": "40dd7c72af7a6fc064640ecba027f3ca", "pid": "1333716354", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=W%C3%A4rmekraftwerk&oldid=245966421#Durchlaufk%C3%BChlung_ohne_K%C3%BChlturm"], "noteType": "dataSource"}, {"label": ["Wenn das erwärmte Kühlwasser unbehandelt in das Gewässer zurückgeführt wird, handelt es sich um eine Durchlaufkühlung."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kühlung"}], "related": [{"authorized_access_point": "Kraftwerk"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333716354", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333716354", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333716354", "source": "GND"}], "authorized_access_point": "Durchlaufkühlung"} 1 +2024-09-11 09:08:45.680793 2024-09-11 09:08:45.680798 c0421bba-31a4-48c8-8599-43853e6e5037 {"md5": "6ee99ba9984586d976e0238b6a460fec", "pid": "1333566352", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Akka_(toolkit)&oldid=1214896464"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Middleware"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333566352", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333566352", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333566352", "source": "GND"}], "authorized_access_point": "Akka (Software)"} 1 +2024-09-11 09:08:45.731762 2024-09-11 09:08:45.731767 031f6c3c-f152-4b5f-9420-bb14ce83809c {"md5": "37853b4eec39e1d6774b7744de13f714", "pid": "1333421427", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Letzte_Meile&oldid=235677594"], "noteType": "dataSource"}, {"label": ["letzter Abschnitt einer Transportkette bis zum Endverbraucher, Empfänger, oder zum Reiseziel, z.B. bei der Energieversorgung, im Güterverkehr, im Individualverkehr oder in der Telekommunikationstechnik"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Transportkette (Güterverkehr)"}, {"authorized_access_point": "Güterverkehr"}, {"authorized_access_point": "Individualverkehr"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333421427", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333421427", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333421427", "source": "GND"}], "authorized_access_point": "Letzte Meile"} 1 +2024-09-11 09:08:45.784326 2024-09-11 09:08:45.784332 8749e28a-abe4-4ac5-9cf6-d6e76e720291 {"md5": "75233850468f339fd64cd8e06ec80d14", "pid": "1333376049", "note": [{"label": ["Baskischer Tanz im 5/8-Takt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Volkstanz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333376049", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333376049", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333376049", "source": "GND"}], "variant_access_point": ["Zorcico"], "authorized_access_point": "Zortziko"} 1 +2024-09-11 09:08:45.836614 2024-09-11 09:08:45.836619 1f6c7ecc-08ef-4307-8c80-107f9952674d {"md5": "038131b6fa129d160d0fd6edcdc4f8bb", "pid": "133335245X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schwanenblumengewächse"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133335245X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133335245X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133335245X", "source": "GND"}], "variant_access_point": ["Blumenbinse", "Butomus umbellatus"], "authorized_access_point": "Schwanenblume"} 1 +2024-09-11 09:08:45.885948 2024-09-11 09:08:45.885951 1e43b977-334e-420c-abfc-f60ac8dd657a {"md5": "05727840980bba47d7aa10a35c9eecef", "pid": "1333352085", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Venezianisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333352085", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333352085", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333352085", "source": "GND"}], "authorized_access_point": "Mundart Venezianisch (Segusino)"} 1 +2024-09-11 09:08:45.937096 2024-09-11 09:08:45.937102 99bc749f-8593-4b1d-b482-c470f3577d23 {"md5": "bb612301917ca69e453dde15dc33663b", "pid": "1333331002", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Einkeimblättrige"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333331002", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333331002", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333331002", "source": "GND"}], "variant_access_point": ["Butomaceae", "Blumenlieschgewächse"], "authorized_access_point": "Schwanenblumengewächse"} 1 +2024-09-11 09:08:45.987112 2024-09-11 09:08:45.987115 57dd8ee6-14b8-4d50-87c8-7214b268ac75 {"md5": "5e13498e5562b019a629838b8e1e12fb", "pid": "1333323778", "note": [{"label": ["Wert, an dem die Dichtefunktion einer stetigen Zufallsgröße ein relatives Maximum aufweist"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Lageparameter"}, {"authorized_access_point": "Deskriptive Statistik"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333323778", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333323778", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333323778", "source": "GND"}], "variant_access_point": ["Modus (Statistik)", "Modal value", "Mode"], "authorized_access_point": "Modalwert"} 1 +2024-09-11 09:08:46.046241 2024-09-11 09:08:46.046247 b5a4ad55-c024-4174-a342-21fc88e8e215 {"md5": "fbf221478a35077e5fab85ebac9af9b3", "pid": "1333312415", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Mark_Tree"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schlaginstrument"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333312415", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333312415", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333312415", "source": "GND"}], "authorized_access_point": "Mark Tree"} 1 +2024-09-11 09:08:46.107305 2024-09-11 09:08:46.107309 8807197e-23b6-475b-86ae-a623bcb69487 {"md5": "162c5e4699214273dd669daea77975bb", "pid": "1333312326", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zupfinstrument"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333312326", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333312326", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333312326", "source": "GND"}], "authorized_access_point": "Mandoloncello"} 1 +2024-09-11 09:08:46.168218 2024-09-11 09:08:46.168223 4a9a4b90-7c38-4216-89ee-32714fa8d50c {"md5": "da6e10213075ac9fc4f5ab6dbc284f0c", "pid": "1333270267", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Okzitanisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333270267", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333270267", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333270267", "source": "GND"}], "authorized_access_point": "Mundart Okzitanisch (Argentera, Provinz Cuneo)"} 1 +2024-09-11 09:08:46.246787 2024-09-11 09:08:46.24679 95bdb931-b1ad-409c-b6c1-9d15afb99ce7 {"md5": "60d08fb0e6463535d5bcc26b29b0c376", "pid": "133326514X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Kuhglocke_(Schlaginstrument)"], "noteType": "dataSource"}, {"label": ["Konische Metallglocke ohne Innenklöppel"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schlaginstrument"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133326514X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133326514X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133326514X", "source": "GND"}], "variant_access_point": ["Cowbell"], "authorized_access_point": "Kuhglocke (Musikinstrument)"} 1 +2024-09-11 09:08:46.301927 2024-09-11 09:08:46.301931 927479fa-0d50-475c-b588-9a0735f5a03d {"md5": "91cf1c4df806ec6ce269f9f5fd7edc86", "pid": "1333260830", "note": [{"label": ["Wiki - https://de.wikipedia.org/w/index.php?title=Tuba&oldid=245431105"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tuba"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333260830", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333260830", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333260830", "source": "GND"}], "authorized_access_point": "Kontrabasstuba"} 1 +2024-09-11 09:08:50.717805 2024-09-11 09:08:50.717809 9b952305-21fb-4441-84a3-153a5e0725d2 {"md5": "cdc1ccbfc845d74086e5f837281d6ab7", "pid": "1329573331", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1329573331", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1329573331", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1329573331", "source": "GND"}], "authorized_access_point": "Ordensleute (Motiv)"} 1 +2024-09-11 09:08:46.350854 2024-09-11 09:08:46.350858 67b8c93c-506f-4cb1-bd1d-edea176fc6f9 {"md5": "49be048007e91ddf31e81ecfd75ebcd1", "pid": "1333256302", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Kobys"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Laute"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333256302", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333256302", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333256302", "source": "GND"}], "variant_access_point": ["Kobys"], "authorized_access_point": "Kobyz"} 1 +2024-09-11 09:08:46.398478 2024-09-11 09:08:46.39848 482a3415-6a4a-4bad-9f7a-6684266bf90c {"md5": "d9f752f258ac0c1e5f30138b0e8b7343", "pid": "133325590X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Klavierharfe"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Harfe"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133325590X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133325590X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133325590X", "source": "GND"}], "variant_access_point": ["Harfenklavier"], "authorized_access_point": "Klavierharfe"} 1 +2024-09-11 09:08:46.449391 2024-09-11 09:08:46.449395 06118035-3ac5-4183-8f27-7997b81c0dc2 {"md5": "373a597775088713337af0d0210fbccb", "pid": "1333255616", "note": [{"label": ["Einsaitige Zither aus Japan"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zither"}, {"authorized_access_point": "Monochord"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333255616", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333255616", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333255616", "source": "GND"}], "variant_access_point": ["Sumagoto"], "authorized_access_point": "Ichigenkin"} 1 +2024-09-11 09:08:46.496712 2024-09-11 09:08:46.496715 bc209657-04bc-4248-bb86-5b9f8bb80aeb {"md5": "0855be49d018b8fda466d4e0aeec73c8", "pid": "1333210043", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tuba"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333210043", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333210043", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333210043", "source": "GND"}], "variant_access_point": ["Helikontuba"], "authorized_access_point": "Helikon (Musikinstrument)"} 1 +2024-09-11 09:08:46.545776 2024-09-11 09:08:46.54578 9ef68ea8-465c-46a1-91b0-7dbaf947aab8 {"md5": "d67621d7c89283d36328ac7257c0f905", "pid": "1333209908", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schlaginstrument"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333209908", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333209908", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333209908", "source": "GND"}], "variant_access_point": ["Guiro", "Kürbisraspel"], "authorized_access_point": "Güiro"} 1 +2024-09-11 09:08:46.598988 2024-09-11 09:08:46.598992 22bbf1d8-04cb-4fec-b4c5-92c9c208cee8 {"md5": "5dc740e726cfba94797f268aa4032e4c", "pid": "1333208901", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Musikinstrument"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333208901", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333208901", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333208901", "source": "GND"}], "variant_access_point": ["Diskant-Instrument"], "authorized_access_point": "Diskantinstrument"} 1 +2024-09-11 09:08:46.651168 2024-09-11 09:08:46.651172 10258aff-bf68-46c6-a44d-e5312b208054 {"md5": "92c43f2a0564071e1579db9c02b23cf9", "pid": "1333141017", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Cristal_Baschet"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Glasharmonika"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333141017", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333141017", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333141017", "source": "GND"}], "variant_access_point": ["Crystal (Musikinstrument)", "Kristal Baschet"], "authorized_access_point": "Cristal Baschet"} 1 +2024-09-11 09:08:46.703098 2024-09-11 09:08:46.703102 4dd19e0d-cc17-4ef5-8a2b-f5daddf12c43 {"md5": "ac85f996cbbe45524ea41e12596cb591", "pid": "1333125127", "note": [{"label": ["Enstehungszeit 1928"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gotische Schrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333125127", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333125127", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333125127", "source": "GND"}], "authorized_access_point": "Altenburger Gotisch"} 1 +2024-09-11 09:08:46.754273 2024-09-11 09:08:46.754277 21933dc1-163c-48bf-a6d9-f52fce3f34a9 {"md5": "30d27aedba73926a1df43e072486f5f3", "pid": "1333119267", "note": [{"label": ["Homepage - https://knowledge.exlibrisgroup.com/Primo/Product_Documentation/020Primo_VE"], "noteType": "dataSource"}, {"label": ["Bibliotheksinformationssystem (Frontend, Discovery Service) der Ex Libris Group"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bibliotheksinformationssystem"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333119267", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333119267", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333119267", "source": "GND"}], "authorized_access_point": "Primo VE (Bibliotheksinformationssystem)"} 1 +2024-09-11 09:08:46.811535 2024-09-11 09:08:46.81154 eb2ba512-0349-4f34-8fba-104162916fd9 {"md5": "a2b0c1178973e3141c7190a52194d3fb", "pid": "1333118023", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Groteskschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333118023", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333118023", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333118023", "source": "GND"}], "variant_access_point": ["Werk Grotesk", "Werk-Grotesque", "Werk Grotesque"], "authorized_access_point": "Werk-Grotesk"} 1 +2024-09-11 09:08:46.862082 2024-09-11 09:08:46.862085 ecf3de89-b6a1-4ece-97b2-2a313c2e2c50 {"md5": "ea9ebf6981c01cdb60899d028659fcec", "pid": "1333117329", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Alma_(Bibliothekssoftware)&oldid=232264077"], "noteType": "dataSource"}, {"label": ["Bibliotheksinformationssystem (Backend) der Ex Libris Group"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bibliotheksinformationssystem"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333117329", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333117329", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333117329", "source": "GND"}], "authorized_access_point": "Alma (Bibliotheksinformationssystem)"} 1 +2024-09-11 09:08:46.918408 2024-09-11 09:08:46.918413 69429341-caf1-49f0-a5ba-fee9a8782c9b {"md5": "2f2981704ae72d7e5bfc63c131e72b76", "pid": "1333115881", "note": [{"label": ["Entstehungszeit der Halbfetten Werbe-Grotesk 1926"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Groteskschrift"}, {"authorized_access_point": "Auszeichnungsschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333115881", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333115881", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333115881", "source": "GND"}], "variant_access_point": ["Werbegrotesk", "Halbfette Werbe-Grotesk", "Schmalfette Werbe-Grotesk"], "authorized_access_point": "Werbe-Grotesk"} 1 +2024-09-11 09:08:46.9765 2024-09-11 09:08:46.976504 18682fb1-cdd0-450e-9865-c07f3d183414 {"md5": "c6153c5df3a8f83f707bd425b8e5e0fa", "pid": "1333113749", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fraktur (Druckschrift)"}, {"authorized_access_point": "Auszeichnungsschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333113749", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333113749", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333113749", "source": "GND"}], "authorized_access_point": "Werbekraft (Druckschrift)"} 1 +2024-09-11 09:08:47.027571 2024-09-11 09:08:47.027575 37ba6054-be97-4e11-9336-1179a49fa1cd {"md5": "17c678fa081cc113c411b0eb82fbb425", "pid": "1333065841", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Fr%C3%BChdynastische_Zeit_(Mesopotamien)&oldid=241217962"], "noteType": "dataSource"}, {"label": ["Epochenbezeichnung der altorientalischen Geschichte"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Bronzezeit"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333065841", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333065841", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333065841", "source": "GND"}], "variant_access_point": ["Frühdynastikum (Mesopotamien)", "Präsargonidenzeit"], "authorized_access_point": "Frühdynastische Zeit (Mesopotamien)"} 1 +2024-09-11 09:08:47.080485 2024-09-11 09:08:47.08049 3648b21f-b324-4e0a-bd50-a5f8a62e84cb {"md5": "b029793292df95f84bb6eb80e91ac54b", "pid": "1333064136", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Pr%C3%A4keramisches_Neolithikum&oldid=242925924", "engl. Wikipedia - https://en.wikipedia.org/w/index.php?title=Pre-Pottery_Neolithic&oldid=1230052305"], "noteType": "dataSource"}, {"label": ["Diese Stufe des präkeramischen Neolithikums wurde erstmals in Ain Ghazal festgestellt", "Epochenbezeichnung der Vorderasiatischen Archäologie"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Neolithikum"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333064136", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333064136", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333064136", "source": "GND"}], "variant_access_point": ["PPNC", "Pre-pottery Neolithic C", "Akeramisches Neolithikum C", "Vorkeramische Jungsteinzeit C"], "authorized_access_point": "Präkeramisches Neolithikum C"} 1 +2024-09-11 09:08:47.132554 2024-09-11 09:08:47.132559 1a3080c3-9c7e-43aa-bba2-a596ef2f3ec6 {"md5": "1d4f0910e1e13d975c6d7f958fbc14ff", "pid": "1333063970", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Pr%C3%A4keramisches_Neolithikum_B&oldid=239924777"], "noteType": "dataSource"}, {"label": ["Folgt auf das Präkeramische Neolithikum A der Levante, von Kathleen Kenyon aufgrund der Befunde von Jericho definiert", "Epochenbezeichnung der Vorderasiatischen Archäologie"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Neolithikum"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333063970", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333063970", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333063970", "source": "GND"}], "variant_access_point": ["Pre-pottery Neolithic B", "PPNB", "Akeramisches Neolithikum B"], "authorized_access_point": "Präkeramisches Neolithikum B"} 1 +2024-09-11 09:08:47.190954 2024-09-11 09:08:47.190959 f77422da-c93c-4ba4-84e6-db9011bb0be9 {"md5": "6876fcfe72b723c1ef0062e943e3ab6d", "pid": "1333063717", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Pr%C3%A4keramisches_Neolithikum_A&oldid=239924826"], "noteType": "dataSource"}, {"label": ["Frühjungsteinzeitliche Epoche im Vorderen Orient, von Kathleen Kenyon anhand der Stratigraphie von Jericho definiert, löste das Natufian ab", "Epochenbezeichnung der Vorderasiatischen Archäologie"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Neolithikum"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333063717", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333063717", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333063717", "source": "GND"}], "variant_access_point": ["Pre-pottery Neolithic A", "PPNA", "Akeramisches Neolithikum A"], "authorized_access_point": "Präkeramisches Neolithikum A"} 1 +2024-09-11 09:08:47.243238 2024-09-11 09:08:47.24324 35b76d2b-13d4-4925-a36f-6da9894dcebb {"md5": "857edd3248cc66a9361e1eb8586fe85b", "pid": "133306179X", "note": [{"label": ["Verstoß gegen markenrechtliche Vorschriften"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Markenrecht"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133306179X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133306179X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133306179X", "source": "GND"}], "variant_access_point": ["Markenrechtsverletzung", "Markenrechtsverstoß", "Markenrecht"], "authorized_access_point": "Markenverletzung"} 1 +2024-09-11 09:08:47.294451 2024-09-11 09:08:47.294455 dd5f0514-54b5-4aa1-b6e0-275070b62789 {"md5": "80b862c3f0a6c82c56c0d57772440e7a", "pid": "1333037414", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Aufst%C3%A4nde_und_Revolten_gegen_die_britische_Herrschaft_in_Indien&oldid=244895818#1859_bis_1947", "Engl. Wikipedia - https://en.wikipedia.org/w/index.php?title=Kuki_Rebellion_of_1917%E2%80%931919&oldid=1187443399"], "noteType": "dataSource"}, {"label": ["Rebellion der Kuki-Stämme von Manipur gegen die Einmischung der britischen Kolonialherrschaft in die Lebensgrundlage der Kuki"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Aufstand"}, {"authorized_access_point": "Kolonialkrieg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333037414", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333037414", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333037414", "source": "GND"}], "variant_access_point": ["Anglo-Kuki-Krieg", "Anglo-Kuki Rebellion", "Anglo-Kuki war"], "authorized_access_point": "Kuki-Aufstand"} 1 +2024-09-11 09:08:47.351956 2024-09-11 09:08:47.351959 846b96f3-da60-4e55-b1d6-a561d8f8f8da {"md5": "79b7748043c7f1768ba23e23921b32a0", "pid": "1333027249", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Pro-Lie-Gruppe&oldid=233764246"], "noteType": "dataSource"}, {"label": ["Eine Pro-Lie-Gruppe ist in der Mathematik eine topologische Gruppe, die sich in gewisser Weise als Grenzwert von Lie-Gruppen schreiben lässt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Topologische Gruppe"}, {"authorized_access_point": "Lie-Theorie"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333027249", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333027249", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333027249", "source": "GND"}], "variant_access_point": ["Pro-Lie Group"], "authorized_access_point": "Pro-Lie-Gruppe"} 1 +2024-09-11 09:08:47.410201 2024-09-11 09:08:47.410206 96e18e79-0456-4d1c-8eb9-efb43ab6deed {"md5": "d8d4adf069926538d847b2bd98228e7d", "pid": "1332990258", "note": [{"label": ["Wikipedia - https://nl.wikipedia.org/w/index.php?title=Zaans&oldid=67492702"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Holländisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332990258", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332990258", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332990258", "source": "GND"}], "variant_access_point": ["Zaans (Holländisch)"], "authorized_access_point": "Mundart Holländisch (Zaan-Gebiet)"} 1 +2024-09-11 09:08:47.472718 2024-09-11 09:08:47.472721 3a095bfa-bae9-4c28-b59a-cbd843f06116 {"md5": "b36438a0e34c32e63c1a4fc22723431b", "pid": "1332899730", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Sch%C3%A4ferlauf&oldid=239016245"], "noteType": "dataSource"}, {"label": ["entwickelte sich aus dem Zunftfest der gewerblichen Schäferrei; heute württembergisches Volksfest (Jahrmarkt) in den Städten Markgröningen, Bad Urach und Wildberg"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Volksfest"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332899730", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332899730", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332899730", "source": "GND"}], "authorized_access_point": "Schäferlauf"} 1 +2024-09-11 09:08:47.524093 2024-09-11 09:08:47.524096 8b8655b7-1779-4c5f-b078-c77868226205 {"md5": "fc314265cb652d8ea8327908439cb49b", "pid": "1332895018", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=TigerGraph&oldid=1183528280"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Graphdatenbank"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332895018", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332895018", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332895018", "source": "GND"}], "authorized_access_point": "TigerGraph (Graphdatenbank)"} 1 +2024-09-11 09:08:47.573865 2024-09-11 09:08:47.573869 bd56d123-e875-4f44-85ef-b2ac854c8d83 {"md5": "7f203c553ee819ed65ce4d58b2316270", "pid": "1332889549", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=GRPC&oldid=1228337631"], "noteType": "dataSource"}, {"label": ["Framework von Google"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Framework (Informatik)"}, {"authorized_access_point": "Open Source"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332889549", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332889549", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332889549", "source": "GND"}], "variant_access_point": ["gRPC Remote Procedure Calls"], "authorized_access_point": "gRPC (Software)"} 1 +2024-09-11 09:08:47.632344 2024-09-11 09:08:47.632348 7a258936-e277-4e4f-8d47-caf3ca62f8ab {"md5": "c9bc8e6add7511887ea7c3079f71fb57", "pid": "1332775381", "note": [{"label": ["Das Lösungsverhalten von einem Parameter abhängiger Differentialgleichungen ist insb. in Hinblick auf Störungen interessant."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Differentialgleichung"}, {"authorized_access_point": "Parameter (Mathematik)"}], "related": [{"authorized_access_point": "Störungstheorie"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332775381", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332775381", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332775381", "source": "GND"}], "variant_access_point": ["Parametrische Differentialgleichung", "Parametric Differential Equation"], "authorized_access_point": "Parameterabhängige Differentialgleichung"} 1 +2024-09-11 09:08:47.683506 2024-09-11 09:08:47.683512 951b5b8c-2780-4233-b029-b9a32bee557e {"md5": "40d25324dcca992cc0b411d063299cb1", "pid": "1332774113", "note": [{"label": ["Die Herolde 'Hessenland' erscheinen in Quellen oft nur mit den Amtsnamen, während ihre Eigennamen oder Hinweise auf die genaue Funktion fehlen. Landgraf Ludwig I. (1402-1458) bediente sich eines Herolds, der den Namen seines Landes trug."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Heroldsname"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332774113", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332774113", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332774113", "source": "GND"}], "authorized_access_point": "Hessenland (Heroldsname)"} 1 +2024-09-11 09:08:47.736539 2024-09-11 09:08:47.736542 cf3d28de-2d1e-4d35-b8f9-aea245724269 {"md5": "fab788043c833668ce8d1141279f1ac1", "pid": "133276648X", "note": [{"label": ["Homepage - https://docs.python.org/dev/whatsnew/3.12html"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Objektorientierte Programmiersprache"}], "related": [{"authorized_access_point": "Python 3.7"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133276648X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133276648X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133276648X", "source": "GND"}], "authorized_access_point": "Python 3.12"} 1 +2024-09-11 09:08:47.787371 2024-09-11 09:08:47.787376 9b24879b-2c18-4aea-a4f0-32cc33afac93 {"md5": "aed99b42795f7790bf8ad736941fc012", "pid": "1332759254", "note": [{"label": ["Amtsnamen aus Toponymen von Herolden des Mittelalters, die fest im Dienst eines Landesherrn standen, auf die der Name indirekt verwies. Mit dem Namenswechsel zum Amtsnamen erschienen diese Personen fortan oft ohne Vornamen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Name"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332759254", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332759254", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332759254", "source": "GND"}], "variant_access_point": ["Herold"], "authorized_access_point": "Heroldsname"} 1 +2024-09-11 09:08:47.841182 2024-09-11 09:08:47.841186 01d36a58-124f-4a04-adc3-28720ac27b47 {"md5": "9e173a2ad0ff58ee5d47fb72143eaed3", "pid": "1332688047", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332688047", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332688047", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332688047", "source": "GND"}], "authorized_access_point": "Posthumanismus (Motiv)"} 1 +2024-09-11 09:08:47.895602 2024-09-11 09:08:47.895606 d141dad9-7bf4-4b25-b686-24d916fa996a {"md5": "9fc5a83045fbb5e38b8ba35d576a4486", "pid": "1332661297", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Kleine_Binsenjungfer&oldid=221779523"], "noteType": "dataSource"}, {"label": ["Libelle der Gattung der Binsenjungfern, Familie der Teichjungfern"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Teichjungfern"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332661297", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332661297", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332661297", "source": "GND"}], "variant_access_point": ["Lestes virens"], "authorized_access_point": "Kleine Binsenjungfer"} 1 +2024-09-11 09:08:47.9425 2024-09-11 09:08:47.942504 9a48e9f3-6568-4a38-9593-7688cc3b5203 {"md5": "6776aecb139f56a5536b9ba9193b8c1c", "pid": "1332657273", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Birkengewächse"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332657273", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332657273", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332657273", "source": "GND"}], "variant_access_point": ["Betula lenta"], "authorized_access_point": "Zuckerbirke"} 1 +2024-09-11 09:08:47.993065 2024-09-11 09:08:47.993068 f07cef41-61e2-4852-97e1-7e649deed060 {"md5": "1093afd76249eb4eafc6c9ce9b72d785", "pid": "1332649688", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bockkäfer"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332649688", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332649688", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332649688", "source": "GND"}], "variant_access_point": ["Zimmerbock", "Acanthocinus aedilis"], "authorized_access_point": "Zimmermannsbock"} 1 +2024-09-11 09:08:48.048966 2024-09-11 09:08:48.04897 85f19506-0827-4027-9270-74176f5c5f48 {"md5": "0943f5aca1b1d455078c218c52e32738", "pid": "1332459587", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Polyzephalie&oldid=224564950"], "noteType": "dataSource"}, {"label": ["bezeichnet allgemein das Auftreten mehrerer Köpfe bei Lebewesen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Missbildung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332459587", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332459587", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332459587", "source": "GND"}], "variant_access_point": ["Mehrköpfigkeit"], "authorized_access_point": "Polyzephalie"} 1 +2024-09-11 09:08:48.100134 2024-09-11 09:08:48.100137 01c2ada4-860c-4fe8-ac43-fac2bae57602 {"md5": "50f4628e6023e29ae2b9c281e9921383", "pid": "1332430376", "note": [{"label": ["Ein Konzertzettel gibt Information über Veranstalter, Ort, Datum und Zeit einer oder mehreren Konzertveranstaltungen und listet alle geplanten Programmpunkte auf, in der Regel mit Angabe der Komponisten und der Interpreten. Oft ist der Eintrittspreis angegeben, manchmal sind Verhaltensregeln für den Konzertsaal genannt. Im Gegensatz zum Konzertprogramm enthält ein Konzertzettel keine weitergehenden Informationen zu den Stücken und den Interpreten.", "Zu verwenden für ein einseitig oder beidseitig bedrucktes Blatt im Handzettel-, Faltblatt- oder Plakatformat.", "Als Formangabe für die Art des Inhalts als Teil des optionalen Sets zugelassen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332430376", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332430376", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332430376", "source": "GND"}], "variant_access_point": ["Konzert"], "authorized_access_point": "Konzertzettel"} 1 +2024-09-11 09:08:48.580707 2024-09-11 09:08:48.580712 fe2f880b-8160-409a-84e1-ddaa6849033e {"md5": "65fa919bfbf8acd6931ff910ae51eaf7", "pid": "1331886929", "note": [{"label": ["Wikipedia unter Grimmia - https://de.wikipedia.org/w/index.php?title=Grimmia&oldid=227976746"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Grimmiaceae"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331886929", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331886929", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331886929", "source": "GND"}], "variant_access_point": ["Mausfell-Kissenmoos"], "authorized_access_point": "Grimmia crinita"} 1 +2024-09-11 09:08:48.155223 2024-09-11 09:08:48.155226 9d43a78d-b2ac-44dc-aef8-24ac55127135 {"md5": "44579fd652506f4fcbbcd490831c54ff", "pid": "1332426751", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Fotobuch&oldid=229660915"], "noteType": "dataSource"}, {"label": ["Individuelles, über ein Layoutprogramm eines Foto-Anbieters digital erstelltes Fotobuch; in der Regel nur in sehr geringer Stückzahl produziert.", "Als Formangabe für die Art des Inhalts als Teil des optionalen Sets zugelassen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bildband"}], "related": [{"authorized_access_point": "Fotobuch"}, {"authorized_access_point": "CEWE Fotobuch Pro"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332426751", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332426751", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332426751", "source": "GND"}], "variant_access_point": ["Personalisiertes Fotobuch", "Personalisiertes Photobuch", "Persönliches Photobuch"], "authorized_access_point": "Persönliches Fotobuch"} 1 +2024-09-11 09:08:48.209684 2024-09-11 09:08:48.209688 7e0b4986-214f-4307-a57f-74d18194167a {"md5": "6db608211b8e0aca694c534870737236", "pid": "1332365841", "note": [{"label": ["Im Handdruckverfahren mit Modeln gefertigtes Buntpapier, das nach handgemalten Entwürfen oft großflächig mit Kleisterfarben bedruckt wurde."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Buntpapier"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332365841", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332365841", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332365841", "source": "GND"}], "variant_access_point": ["Modeldruckpapier", "Zitzpapier"], "authorized_access_point": "Kattunpapier"} 1 +2024-09-11 09:08:48.262813 2024-09-11 09:08:48.262818 37c50e9d-16bf-4155-9f81-55b9a35da79f {"md5": "cee4353c2dae75f307cc1d33f25b8be7", "pid": "1332318142", "note": [{"label": ["Als elektronisches Wertpapier bezeichnet man ein Wertpapier ohne Urkunde, dessen Begebung dadurch erfolgt, dass der Emittent anstelle der Ausstellung einer Wertpapierurkunde eine Eintragung in ein elektronisches Wertpapierregister bewirkt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wertpapier"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332318142", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332318142", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332318142", "source": "GND"}], "variant_access_point": ["E-Wertpapier"], "authorized_access_point": "Elektronisches Wertpapier"} 1 +2024-09-11 09:08:48.314771 2024-09-11 09:08:48.314775 c8afeb25-8ba1-4880-b007-fcba87d58910 {"md5": "14c8f4d1c23afd1b8a8fdc56c236c0bc", "pid": "1332111971", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Small_Modular_Reactor&oldid=245567340"], "noteType": "dataSource"}, {"label": ["Small Modular Reactors sind modulare Kernspaltungsreaktoren, die kleiner als herkömmliche Reaktoren sind und daher in einer Fabrik vorgefertigt und anschließend an einen Montageort verbracht werden können."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kernkraftwerk"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332111971", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332111971", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332111971", "source": "GND"}], "variant_access_point": ["SMR", "kleiner modularer Reaktor", "Miniatomkraftwerk", "Minikernkraftwerk"], "authorized_access_point": "Small Modular Reactor"} 1 +2024-09-11 09:08:48.366839 2024-09-11 09:08:48.366843 4351fb22-aa84-4cd7-974c-a0a42753ca59 {"md5": "c3581590eeb71b2ff15a4e28bb2729c9", "pid": "1332095119", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332095119", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332095119", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332095119", "source": "GND"}], "authorized_access_point": "Schaufensterpuppe (Motiv)"} 1 +2024-09-11 09:08:48.421359 2024-09-11 09:08:48.421363 9dd27903-3e7b-46c5-b805-e9d7e55b4277 {"md5": "8d86663428bd364155b161145757571f", "pid": "133197612X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fuchsschwanzgewächse"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133197612X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133197612X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133197612X", "source": "GND"}], "variant_access_point": ["Corispermum leptopterum"], "authorized_access_point": "Großflügeliger Wanzensame"} 1 +2024-09-11 09:08:48.474633 2024-09-11 09:08:48.474637 cc8d86f4-7f7a-42a5-8e64-06c6280ec719 {"md5": "969b9261ce1e8f646680b136b8ad17fd", "pid": "133197593X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Kleines_Nixenkraut&oldid=217982529"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Froschbissgewächse"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133197593X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133197593X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133197593X", "source": "GND"}], "variant_access_point": ["Najas minor"], "authorized_access_point": "Kleines Nixenkraut"} 1 +2024-09-11 09:08:48.527775 2024-09-11 09:08:48.527779 3e302e03-948d-45ff-9b23-66c8368f5956 {"md5": "9b32921f1ece7d8afed678cf8e6e8aff", "pid": "1331975794", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Ruten-Lattich&oldid=234087294"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Lactuceae"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331975794", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331975794", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331975794", "source": "GND"}], "variant_access_point": ["Lactuca viminea", "Rutenlattich"], "authorized_access_point": "Ruten-Lattich"} 1 +2024-09-11 09:08:50.665967 2024-09-11 09:08:50.66597 837c7dd7-377c-4f31-9ece-a7885f2a4b6a {"md5": "4d2ba0232b9998f5f1147cb247502ea6", "pid": "1329650123", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Kajkavisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1329650123", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1329650123", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1329650123", "source": "GND"}], "authorized_access_point": "Mundart Kajkavisch (Varaždin)"} 1 +2024-09-11 09:08:48.632832 2024-09-11 09:08:48.632835 4d11b0c2-e6d9-4d14-9f95-160ff4b1327c {"md5": "eaa452c191dc86b1d9d8c12c529744be", "pid": "1331876540", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=.NET_(Plattform)&oldid=245448784"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Framework (Informatik)"}], "related": [{"authorized_access_point": "Microsoft dot net 7"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331876540", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331876540", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331876540", "source": "GND"}], "variant_access_point": ["Microsoft dot net 8.0", "Microsoft.Net 8", "Microsoft.Net 8.0", ".Net 8", ".Net Framework 8", "Microsoft .NET Framework 8"], "authorized_access_point": "Microsoft dot net 8"} 1 +2024-09-11 09:08:48.693168 2024-09-11 09:08:48.693173 74a5a862-e66c-4df6-bbd0-d095df1d0aa9 {"md5": "62d166d2d2f50b309052005ccc96ec63", "pid": "1331840627", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Eggon_people&oldid=1212081727"], "noteType": "dataSource"}, {"label": ["Ethnische Gruppe, die hauptsächlich im Norden Zentralnigerias (nämlich Nassarawa und im Bundesstaat Plateau) beheimatet ist. Muttersprache ist die Eggon-Sprache, die die meisten Eggon-Leute auch heute noch sprechen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Egon-Sprache"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331840627", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331840627", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331840627", "source": "GND"}], "variant_access_point": ["Eggon people", "Egon (Volk)", "Ero (Volk)", "Mo Egon (Volk)"], "authorized_access_point": "Eggon (Volk)"} 1 +2024-09-11 09:08:48.761646 2024-09-11 09:08:48.761651 357c8a4b-b752-43af-ac2a-f343a793b9d2 {"md5": "754739e86a3642e54860e9aa00342446", "pid": "1331747716", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Riesenbakterium&oldid=237975080"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bakterien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331747716", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331747716", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331747716", "source": "GND"}], "variant_access_point": ["Riesenbakterium"], "authorized_access_point": "Riesenbakterien"} 1 +2024-09-11 09:08:48.81877 2024-09-11 09:08:48.818774 1b08a79a-2f6f-4d80-8dc1-b47558c2dc8a {"md5": "01f24df377adbfa81a3b0ee07f629caf", "pid": "1331734126", "note": [{"label": ["als freiwillige Kastraten Begleiter/Priester der Magna Mater (Kybele)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Priesterkollegium"}], "related": [{"authorized_access_point": "Kybelekult"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331734126", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331734126", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331734126", "source": "GND"}], "variant_access_point": ["Galloi"], "authorized_access_point": "Galli (Priesterkollegium)"} 1 +2024-09-11 09:08:48.874387 2024-09-11 09:08:48.874391 2a87d663-6ed6-4688-884b-ff48c6897e83 {"md5": "018727ed8bb6f230a848e5beb1895a62", "pid": "1331734045", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Ehrlichkeit"}, {"authorized_access_point": "Unaufrichtigkeit"}, {"authorized_access_point": "Heuchelei"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331734045", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331734045", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331734045", "source": "GND"}], "authorized_access_point": "Unehrlichkeit"} 1 +2024-09-11 09:08:48.929651 2024-09-11 09:08:48.929656 beea54e3-7788-4a63-a190-5efd81096623 {"md5": "9f2256b2a2ba76ebc34ab87c4c610d16", "pid": "1331733316", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Crista_(Helm)&oldid=229512606"], "noteType": "dataSource"}, {"label": ["lat. für \\"Kamm\\"; Helmzier/Helmbusch römischer Legionäre"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Helm"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331733316", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331733316", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331733316", "source": "GND"}], "authorized_access_point": "Crista"} 1 +2024-09-11 09:08:48.980149 2024-09-11 09:08:48.980152 5b3d9dae-ff98-474b-b270-7c83cf9de1fb {"md5": "4dcdd1495702898aa92c42a3ce3e8626", "pid": "1331723361", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Seidenbienen-%C3%96lk%C3%A4fer&oldid=238939855"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ölkäfer (Familie)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331723361", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331723361", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331723361", "source": "GND"}], "variant_access_point": ["Schwarze Pelzbienen-Ölkäfer", "Stenoria analis"], "authorized_access_point": "Seidenbienen-Ölkäfer"} 1 +2024-09-11 09:08:49.032148 2024-09-11 09:08:49.032151 28516aca-5c88-443d-8137-48cb5613b6d3 {"md5": "503b9c11a871749e57b989643a20e8b6", "pid": "1331719054", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Attenuation_(Genexpression)&oldid=239090494"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Genregulation"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331719054", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331719054", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331719054", "source": "GND"}], "authorized_access_point": "Attenuation (Molekulargenetik)"} 1 +2024-09-11 09:08:49.085489 2024-09-11 09:08:49.085494 74ec0117-6a78-4984-9445-f3d7f25d368f {"md5": "0ff944471fa810d6d2bc11ee43ae8e98", "pid": "1331717353", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=TAPSE&oldid=221946233"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ultraschallkardiografie"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331717353", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331717353", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331717353", "source": "GND"}], "variant_access_point": ["TAPSE", "Tricuspid annular motion"], "authorized_access_point": "Tricuspid Anular Plane Systolic Excursion"} 1 +2024-09-11 09:08:49.139006 2024-09-11 09:08:49.139011 63cb8ab9-51da-4ebe-b921-e4b223b2289d {"md5": "4dbb0317be0fa3a81cf0dc7eca6ec43a", "pid": "1331710464", "note": [{"label": ["Begriff in der Theorie kompakter Gruppen, insb. der kompakten Lie-Gruppen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Toroid (Gruppentheorie)"}, {"authorized_access_point": "Kompakte Gruppe"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331710464", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331710464", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331710464", "source": "GND"}], "variant_access_point": ["Maximaler Torus", "Maximal Torus"], "authorized_access_point": "Maximaler Toroid"} 1 +2024-09-11 09:08:49.19875 2024-09-11 09:08:49.198753 1f3c5f57-8385-4323-887b-bc0396d41dbd {"md5": "d1dfd30fc4b29118c7c655009752ee23", "pid": "1331704014", "note": [{"label": ["Wikipedia unter Dorfwaage - https://de.wikipedia.org/w/index.php?title=Dorfwaage&oldid=232866456"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331704014", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331704014", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331704014", "source": "GND"}], "variant_access_point": ["Waagemeister"], "authorized_access_point": "Wiegemeister"} 1 +2024-09-11 09:08:49.257639 2024-09-11 09:08:49.257643 b27afe3f-09ca-4073-9e34-f82e1b5eb0cf {"md5": "6e176db5861f157fb9d9a4abb7423b5e", "pid": "1331614392", "note": [{"label": ["Helm, an dem beidseits nachgebildete Flügel angebracht sind; findet sich in antiken und antikisierenden Darstellungen von Göttern (u.a. Hermes/Merkur) und Göttinnen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Helm"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331614392", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331614392", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331614392", "source": "GND"}], "authorized_access_point": "Flügelhelm"} 1 +2024-09-11 09:08:49.317136 2024-09-11 09:08:49.317141 11bb4a3f-7911-443e-9c17-5b3dcdc50cff {"md5": "cf1e332d632fb83128a199af4daa7c64", "pid": "1331613426", "note": [{"label": ["in der frühen Mythologie stellt der Sonnenwagen den scheinbar täglichen Sonnenlauf von Ost nach West und den noch vollkommen unklare Rückweg dar, überliefert in mytholog. Darstellungen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kultwagen"}, {"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331613426", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331613426", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331613426", "source": "GND"}], "authorized_access_point": "Sonnenwagen"} 1 +2024-09-11 09:08:49.369744 2024-09-11 09:08:49.369749 dd4e9f3b-5378-4d93-bdde-7c56e6891709 {"md5": "a1b666a2e780b578b9d57cca6b57c70a", "pid": "1331605164", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Krakauer_Auschwitzprozess&oldid=244500822"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kriegsverbrecherprozess"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331605164", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331605164", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331605164", "source": "GND"}], "variant_access_point": ["Auschwitz-Prozess (Krakau)", "Auschwitz-Prozess (1947)"], "authorized_access_point": "Krakauer Auschwitz-Prozess"} 1 +2024-09-11 09:08:49.424929 2024-09-11 09:08:49.424933 91275857-f6a9-4134-973e-5948c780f02a {"md5": "8fe75a6e2078c02066418bb8aac9e509", "pid": "1331605091", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331605091", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331605091", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331605091", "source": "GND"}], "authorized_access_point": "Phrygische Mütze (Motiv)"} 1 +2024-09-11 09:08:49.481974 2024-09-11 09:08:49.481979 ad655013-3cdd-4522-a7d2-0051f6e0897e {"md5": "6da79c77abd4e76d4c32c61e19d8f23f", "pid": "1331604893", "note": [{"label": ["antike, auf kleinasiatische Ursprünge zurückgehende kegelförmige Mütze der Phryger und Perser aus Stoff oder Leder mit nach vorn fallender rundlicher Spitze"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mütze"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331604893", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331604893", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331604893", "source": "GND"}], "authorized_access_point": "Phrygische Mütze"} 1 +2024-09-11 09:08:49.534071 2024-09-11 09:08:49.534076 8c5ac03e-2267-4de5-bfdc-e531b28f499b {"md5": "47e448ae88849a063bbf9dc4d972b480", "pid": "1331603897", "note": [{"label": ["Fabelwesen, im ersten Teil ein Pferd, im letzten in einen schlangenartigen Fisch übergehend"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fabeltiere"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331603897", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331603897", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331603897", "source": "GND"}], "variant_access_point": ["Hippokamp", "Hippocamp"], "authorized_access_point": "Hippokampos"} 1 +2024-09-11 09:08:49.591807 2024-09-11 09:08:49.591812 6a744db2-f442-4d3c-a117-3203c65bddc8 {"md5": "311ef9b1d6a3a12b2fc348fb59b5c19a", "pid": "1331594014", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Schlacht_um_Pensacola_(1781)&oldid=185703545", "Wikipedia - https://en.wikipedia.org/w/index.php?title=Siege_of_Pensacola&oldid=1231422844"], "noteType": "dataSource"}, {"label": ["Teil des spanischen Feldzugs gegen die britische Kolonie Westflorida während des amerik. Unabhängigkeitskrieges."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schlacht"}], "related": [{"authorized_access_point": "Nordamerikanischer Unabhängigkeitskrieg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331594014", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331594014", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331594014", "source": "GND"}], "variant_access_point": ["Belagerung von Pensacola", "Siege of Pensacola"], "authorized_access_point": "Schlacht um Pensacola (1781)"} 1 +2024-09-11 09:08:49.650346 2024-09-11 09:08:49.650351 0da9c955-d5cd-43d0-933d-efb8da61ef74 {"md5": "ecbf2fc6359c6fad4a9128b4e86304e8", "pid": "1331592208", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=M%C3%BCcken-H%C3%A4ndelwurz&oldid=245590641"], "noteType": "dataSource"}, {"label": ["Art aus der Gattung der Händelwurzen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Orchideen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331592208", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331592208", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331592208", "source": "GND"}], "variant_access_point": ["Gymnadenia conopsea", "Langsporn-Händelwurz", "Fliegen-Händelwurz", "Große Händelwurz"], "authorized_access_point": "Mücken-Händelwurz"} 1 +2024-09-11 09:08:49.704075 2024-09-11 09:08:49.704079 22471d2a-fbdf-4f08-989d-e93f7122f5d8 {"md5": "6cba5f2007e19f6533ac3aa60f4c781a", "pid": "1331584167", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Vizekanzler"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331584167", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331584167", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331584167", "source": "GND"}], "authorized_access_point": "Vizekanzlerin"} 1 +2024-09-11 09:08:49.759183 2024-09-11 09:08:49.759188 065e0a09-a802-4700-bac3-04a64afa97a1 {"md5": "bc138a62000ea9ca9637e4a5e2d40057", "pid": "1331530806", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Holzmerkmal&oldid=230021794"], "noteType": "dataSource"}, {"label": ["Als Holzmerkmale werden alle Eigenschaften bezeichnet, welche die individuelle Gestalt von Holz beschreiben."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Holz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331530806", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331530806", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331530806", "source": "GND"}], "variant_access_point": ["Holz"], "authorized_access_point": "Holzmerkmal"} 1 +2024-09-11 09:08:49.820834 2024-09-11 09:08:49.820838 209a47fa-d48d-4f96-ad07-c80894c98dcf {"md5": "a1e2a1dd2cc0f7a52c6ae05cd673c5e4", "pid": "1331496918", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wasserstoffionenkonzentration"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331496918", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331496918", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331496918", "source": "GND"}], "authorized_access_point": "Isoelektrischer Punkt"} 1 +2024-09-11 09:08:49.886486 2024-09-11 09:08:49.88649 952d7fac-7c0e-4988-8f30-c2e517bca4a1 {"md5": "63fa0adaa10d24783bc44cb5930ed115", "pid": "1331482941", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Abrechnungsbetrug&oldid=239347627"], "noteType": "dataSource"}, {"label": ["Als Abrechnungsbetrug bezeichnet man eine vorsätzliche Manipulation bei der Rechnungsstellung durch einen Leistungserbringer im Gesundheitswesen, die den Empfänger zu einer Vermögensdisposition veranlasst, obwohl die vom jeweiligen Vergütungssystem vorgesehenen Voraussetzungen nicht vorliegen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Betrug"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331482941", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331482941", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331482941", "source": "GND"}], "authorized_access_point": "Abrechnungsbetrug"} 1 +2024-09-11 09:08:49.937897 2024-09-11 09:08:49.9379 9c961e04-529c-4f10-9c00-59224e1f9c49 {"md5": "421d4582d65376dd9751c0150aec8c9c", "pid": "1331380073", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331380073", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331380073", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331380073", "source": "GND"}], "authorized_access_point": "Blumensprache (Motiv)"} 1 +2024-09-11 09:08:49.995518 2024-09-11 09:08:49.995522 8e26fae9-fe30-4b58-ac75-3119aa8ff2fa {"md5": "d468e5ac990a2a0450d8e8d55f93c1da", "pid": "1331102170", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Versehgarnitur&oldid=244395395"], "noteType": "dataSource"}, {"label": ["Eine Versehgarnitur (auch Versehbesteck) gab es bis in die Mitte des 20. Jahrhunderts hinein in vielen katholischen Haushalten. Der Priester gebrauchte sie bei der Spendung der Krankensalbung."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kirchengerät"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331102170", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331102170", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331102170", "source": "GND"}], "variant_access_point": ["Versehbesteck"], "authorized_access_point": "Versehgarnitur"} 1 +2024-09-11 09:08:50.057725 2024-09-11 09:08:50.057728 073ead4d-be82-4c4f-8c32-999a531c0133 {"md5": "dd9643f4bfa190608fc001bd16355330", "pid": "1330854640", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Klangsynthese&oldid=237322405"], "noteType": "dataSource"}, {"label": ["Methode zur Herstellung künstlicher oder Abwandlung natürlicher Klänge"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Klangerzeugung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330854640", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330854640", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330854640", "source": "GND"}], "authorized_access_point": "Klangsynthese"} 1 +2024-09-11 09:08:50.111599 2024-09-11 09:08:50.111604 76be9a35-5d6b-4629-8496-f37b8d192b44 {"md5": "b3f887931f3cabfb2574c0ebf9a60816", "pid": "1330843584", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330843584", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330843584", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330843584", "source": "GND"}], "authorized_access_point": "Theaterbau (Motiv)"} 1 +2024-09-11 09:08:50.160638 2024-09-11 09:08:50.160642 157c5955-5b2d-4dec-bb4b-5d04c9372534 {"md5": "f02677042b265da19912b5ad1ebb09e7", "pid": "1330586557", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Daihatsu_Feroza&oldid=240372676"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Personenkraftwagen"}], "related": [{"authorized_access_point": "Daihatsu"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330586557", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330586557", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330586557", "source": "GND"}], "authorized_access_point": "Daihatsu Feroza"} 1 +2024-09-11 09:08:50.219091 2024-09-11 09:08:50.219097 3c52c80e-4485-4c0f-9cf0-8dd578660073 {"md5": "873becbcbb01e7febbadce604a34a1df", "pid": "1330586271", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Elbe_3_(Schiff,_1888)&oldid=238101652"], "noteType": "dataSource"}, {"label": ["Seit 1979 im Museumshafen Oevelgönne in Hamburg liegend; nicht zu verwechseln mit dem weiteren Feuerschiff gleichen Namens \\"Elbe 3 / Bürgermeister Abendroth\\" im Bremerhavener Museumshafens"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Feuerschiff"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330586271", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330586271", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330586271", "source": "GND"}], "variant_access_point": ["Leuchtschiff Weser", "Weser (Schiff, 1888-)"], "authorized_access_point": "Elbe 3 (Schiff, 1888-)"} 1 +2024-09-11 09:08:50.278366 2024-09-11 09:08:50.278368 c7c66774-671b-47e5-ba03-9d9ac875f784 {"md5": "a45220636c987d51d8f74b48f158351b", "pid": "1330585992", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Vespa_P80X&oldid=197009978"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motorroller"}], "related": [{"authorized_access_point": "Vespa"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330585992", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330585992", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330585992", "source": "GND"}], "authorized_access_point": "Vespa P80X"} 1 +2024-09-11 09:08:50.336823 2024-09-11 09:08:50.336828 b5ad4f9b-982e-4d79-89e1-4e32ebd65ee8 {"md5": "5717dc3a9ac3dfdebfb70be25eb4c17c", "pid": "1330585747", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Z%C3%BCndapp_R_50&oldid=243884554"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motorroller"}], "related": [{"authorized_access_point": "Zündapp"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330585747", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330585747", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330585747", "source": "GND"}], "authorized_access_point": "Zündapp R 50"} 1 +2024-09-11 09:08:50.392072 2024-09-11 09:08:50.392076 22d4e9a4-3bf6-4ea4-8471-16b5a6d753ad {"md5": "ea66feb7fa7edad6b0b95a0f2f0213f8", "pid": "1330447611", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330447611", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330447611", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330447611", "source": "GND"}], "authorized_access_point": "Massaker von Sabra und Schatila (Motiv)"} 1 +2024-09-11 09:08:50.444473 2024-09-11 09:08:50.444477 657a8eb4-c42f-471b-b94b-c734cce56ea3 {"md5": "eb11ce43aa1d121a232f2d2e8f95450b", "pid": "1330433858", "note": [{"label": ["Wikipedia (unter Geschichte des Elektroautos) - https://de.wikipedia.org/w/index.php?title=Geschichte_des_Elektroautos&oldid=243876878"], "noteType": "dataSource"}, {"label": ["Dreirädriges Zwei-Personen-Auto"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Personenkraftwagen"}, {"authorized_access_point": "Elektrofahrzeug"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330433858", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330433858", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330433858", "source": "GND"}], "authorized_access_point": "Witkar (Elektroauto)"} 1 +2024-09-11 09:08:50.502569 2024-09-11 09:08:50.502573 aeaaf794-ab8f-4319-8aed-dca69dd704be {"md5": "a751bd0662abfde0f0fac7e04f521048", "pid": "1330430964", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Datsun&oldid=243657328"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Markenname"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330430964", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330430964", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330430964", "source": "GND"}], "variant_access_point": ["Datson (Marke)"], "authorized_access_point": "Datsun (Marke)"} 1 +2024-09-11 09:08:50.555272 2024-09-11 09:08:50.555277 a0dedeb4-1516-438f-9a2f-0d816302622f {"md5": "95b30a180876bd00714d038ddaf62d00", "pid": "1330343085", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330343085", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330343085", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330343085", "source": "GND"}], "authorized_access_point": "Bergisch Gladbach (Motiv)"} 1 +2024-09-11 09:08:50.609905 2024-09-11 09:08:50.60991 bfd05f66-c87f-453a-84fe-cb61f9b3c783 {"md5": "3d902ce7d0065a7c27f3c1eefd75b769", "pid": "1330186664", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Ambisonics&oldid=237488687"], "noteType": "dataSource"}, {"label": ["ein Verfahren zur Aufnahme und Wiedergabe eines Klangfeldes"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Technische Akustik"}, {"authorized_access_point": "Audiotechnik"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330186664", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330186664", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330186664", "source": "GND"}], "variant_access_point": ["Ambisonic"], "authorized_access_point": "Ambisonics"} 1 +2024-09-11 09:08:50.772807 2024-09-11 09:08:50.77281 d7d3063c-74da-46f0-b781-5441d89bba74 {"md5": "b1477ceedf7966661a19d4b01c771bca", "pid": "1329325958", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1329325958", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1329325958", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1329325958", "source": "GND"}], "authorized_access_point": "Meduse (Motiv)"} 1 +2024-09-11 09:08:50.825827 2024-09-11 09:08:50.825832 deb7c106-ee93-4e46-8d21-07e7d6a5c839 {"md5": "334c2bbe64c98c3a30d862da3d97cfc0", "pid": "1328905152", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}, {"authorized_access_point": "Pflanzendarstellung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1328905152", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1328905152", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1328905152", "source": "GND"}], "authorized_access_point": "Kaiserkrone (Pflanze, Motiv)"} 1 +2024-09-11 09:08:50.877456 2024-09-11 09:08:50.87746 92599db7-30d4-4497-b3a9-abba27b6a15f {"md5": "304be4bdd58dd619b62418264d8b074d", "pid": "1328159116", "note": [{"label": ["Nachgewiesen 1929"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Renaissance-Antiqua"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1328159116", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1328159116", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1328159116", "source": "GND"}], "variant_access_point": ["Intertype Mediaeval", "Medieval (Druckschrift)", "Mediaeval (Druckschrift)", "Medieval (Druckschrift, New York)", "Intertype-Medieval", "Intertype-Mediaeval"], "authorized_access_point": "Intertype Medieval"} 1 +2024-09-11 09:08:50.933064 2024-09-11 09:08:50.933068 a3606793-44e1-48e6-8cad-08f934851e23 {"md5": "5f46ad95228d2df56cf639eacbfd1424", "pid": "1328114813", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Feldmaus (Gattung)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333493223", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85102534", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85102534"}], "authorized_access_point": "Microtus subterraneus"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1328114813", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1328114813", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1328114813", "source": "GND"}], "variant_access_point": ["Microtus subterraneus", "Kleine Wühlmaus", "Pitymys subterraneus", "Kleinwühlmaus"], "authorized_access_point": "Kleinäugige Wühlmaus"} 1 +2024-09-11 09:08:50.992951 2024-09-11 09:08:50.992955 26dc4433-97fb-462f-8714-9865512966e9 {"md5": "0a939c434ab7295e074f9343ac24fe9d", "pid": "1326598325", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Gqom&oldid=246252358"], "noteType": "dataSource"}, {"label": ["Genre der elektronischen Tanzmusik, das Anfang der 2010er Jahre in Durban, Südafrika, entstand"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Elektronische Tanzmusik"}, {"authorized_access_point": "House"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1326598325", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1326598325", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1326598325", "source": "GND"}], "variant_access_point": ["Igqom", "Igqomu", "Qgom", "Gqom tech", "Sghubu"], "authorized_access_point": "Gqom"} 1 +2024-09-11 09:08:51.050408 2024-09-11 09:08:51.050414 05e6a531-f669-4b88-9251-5cee3d616547 {"md5": "5f99b660e6c44c5f65f9c0548ad7bb00", "pid": "1325970743", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Minolta_SR-T_303&oldid=228565347"], "noteType": "dataSource"}, {"label": ["mechanische Kleinbild-Spiegelreflexkamera, die von der japanischen Firma Minolta in verschiedenen Varianten von 1973 bis 1980 hergestellt wurde"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Spiegelreflexkamera"}, {"authorized_access_point": "Kleinbildkamera"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1325970743", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1325970743", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1325970743", "source": "GND"}], "authorized_access_point": "Minolta SR-T 303"} 1 +2024-09-11 09:08:51.107121 2024-09-11 09:08:51.107125 110e916c-1e18-4626-bc7c-35bb489ef91e {"md5": "28f076de9ea01075eef0306c8603425c", "pid": "1325836214", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Kryptowert&oldid=240601727"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Finanzinstrument"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1325836214", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1325836214", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1325836214", "source": "GND"}], "variant_access_point": ["Kryptotoken", "Token (Kryptologie)", "Crypto-Asset"], "authorized_access_point": "Kryptowert"} 1 +2024-09-11 09:08:51.164615 2024-09-11 09:08:51.164619 14b20fb1-c08b-4a50-86f4-99fd7467d602 {"md5": "1dae5ea975e056c675b2372307afa102", "pid": "1325526541", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Micro-Credential&oldid=231500268", "EU Vocabularies - https://op.europa.eu/de/web/eu-vocabularies/concept/-/resource?uri=http://eurovoc.europa.eu/c_6659516b", "ABl. EU 2022, C243, S.1 - https://eur-lex.europa.eu/legal-content/DE/TXT/?uri=CELEX:32022H0627(02)"], "noteType": "dataSource"}, {"label": ["Qualifikation zum Nachweis von Lernergebnissen, die im Rahmen eines kurzen, transparenten Kurses oder Moduls erzielt wurde"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Leistungspunkt"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1325526541", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1325526541", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1325526541", "source": "GND"}], "variant_access_point": ["Micro-Credential"], "authorized_access_point": "Microcredential"} 1 +2024-09-11 09:09:13.513867 2024-09-11 09:09:13.513871 f60abf5f-9fb5-45a3-80e9-536e898fe8ee {"md5": "fb6b8eae8e92d906bcc8af52ceaeaffc", "pid": "963125125", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ausschuss"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4659913-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963125125", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4659913-7", "source": "GND"}], "authorized_access_point": "Wissenschaftlicher Ausschuss"} 1 +2024-09-11 09:08:51.228554 2024-09-11 09:08:51.228557 3ac676e5-b1a7-4c2b-8b4f-201b21bbc555 {"md5": "3dd2a8d9ced3609f1caa9aff13a1d2f7", "pid": "1324473703", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Terrorangriff_der_Hamas_auf_Israel_2023&oldid=243422572"], "noteType": "dataSource"}, {"label": ["Terroristischer Überfall unter Führung der palästinensischen radikal-islamistischen Hamas, der vom Gazastreifen aus gegen Israel verübt wurde."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Attentat"}], "related": [{"authorized_access_point": "Nahostkonflikt"}, {"authorized_access_point": "Israel-Hamas-Krieg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1324473703", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1324473703", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1324473703", "source": "GND"}], "variant_access_point": ["Anschlag der Hamas auf Israel 2023", "Operation Al-Aksa-Flut", "7. Oktober (Attentat)", "Siebenter Oktober (Attentat)", "Siebter Oktober (Attentat)"], "authorized_access_point": "Terrorangriff der Hamas auf Israel 2023"} 1 +2024-09-11 09:08:51.285152 2024-09-11 09:08:51.285156 553c5da0-1ed4-4302-a787-38ca91ce8aee {"md5": "e1425a9de2ecc4f92596386fe5fae5bc", "pid": "1324101571", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Anarchafeminismus&oldid=243042613"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1324101571", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1324101571", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1324101571", "source": "GND"}], "authorized_access_point": "Anarchafeminismus"} 1 +2024-09-11 09:08:51.335194 2024-09-11 09:08:51.335197 b838450c-2e29-4ba9-b4fa-95f2987310f9 {"md5": "6c06a55749be45803ab40af548a0cd67", "pid": "1322498083", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=DR-Baureihe_270&oldid=240684515#cite_note-1"], "noteType": "dataSource"}, {"label": ["Triebwagen der Berliner S-Bahn"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Elektrotriebwagen"}], "related": [{"authorized_access_point": "S-Bahn"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1322498083", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1322498083", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1322498083", "source": "GND"}], "variant_access_point": ["Baureihe 270", "Baureihe 485", "DB-Baureihe 485", "DB-Baureihe 485/885", "DR-Baureihe 270"], "authorized_access_point": "Elektrotriebwagen Baureihe 270"} 1 +2024-09-11 09:08:51.386298 2024-09-11 09:08:51.386302 7ac506ec-9bcc-4c01-b508-b2133f7c0006 {"md5": "7b947b3c23902e4e82ab900e6585e9cb", "pid": "1321930690", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Buckeltanzfliegen&oldid=211586716", "NCBI-Taxonomy - https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=1446258"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Empidoidea"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133349338X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16649867", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16649867h"}], "authorized_access_point": "Hybotidae"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1321930690", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1321930690", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1321930690", "source": "GND"}], "variant_access_point": ["Hybotidae"], "authorized_access_point": "Buckeltanzfliegen"} 1 +2024-09-11 09:08:51.444557 2024-09-11 09:08:51.444561 91e69fab-8925-45ff-a3b3-4acb14a83b47 {"md5": "4dc4d490e1fc73f71d298a2a056d9b1e", "pid": "1321369956", "note": [{"label": ["Gender ist eine analytische Kategorie der Geschlechterforschung bzw. Gender Studies. Sie untersucht (historische, sozio-kulturelle und praxeologische) Zuschreibungen an sowie Verhaltensweisen und Beziehungen von Menschen in Hinblick auf ihre Vergeschlechtlichung. Neues Schlagwort ab 2024. Titel wurden davor meist mit der Kombination der folgenden Schlagwörter erschlossen: Geschlechterrolle, Geschlechterverhältnis und Geschlechterforschung, ggf. weitere", "Zu verwenden bei eher umfassenden oder theoretischen Darstellungen zum Thema des vergeschlechtlichten Zusammenlebens von Menschen. Für thematisch eingegrenzte Darstellungen sind spezifischere Schlagwörter vorzuziehen, wie z.B. \\"Geschlechterrolle\\", \\"Geschlechterverhältnis\\", usw."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Geschlechterforschung"}], "related": [{"authorized_access_point": "Geschlechterrolle"}, {"authorized_access_point": "Geschlechterverhältnis"}, {"authorized_access_point": "Geschlecht"}, {"authorized_access_point": "Geschlechtsunterschied"}, {"authorized_access_point": "Geschlechtsidentität"}, {"authorized_access_point": "Drittes Geschlecht"}, {"authorized_access_point": "Transgender"}, {"authorized_access_point": "Nichtbinäre Geschlechtsidentität"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1321369956", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1321369956", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1321369956", "source": "GND"}], "variant_access_point": ["Soziales Geschlecht", "Geschlecht (Kategorie)", "Geschlecht (Gender)"], "authorized_access_point": "Gender"} 1 +2024-09-11 09:08:51.495391 2024-09-11 09:08:51.495396 e4ea5f35-c724-4fb7-bd3b-ea344041c930 {"md5": "433b20245e60d95f08eaa19320b515a8", "pid": "1321325754", "note": [{"label": ["Handwerksanweisungen für Tasten- und Saiteninstrumente mit Lehrbeispielen als Lehrgrundlage für die Spielfertigkeit, das mehrstimmige Improvisieren und Intavolieren auf diesen Instrumenten"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Instrumentaltechnik"}, {"authorized_access_point": "Anleitung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1321325754", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1321325754", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1321325754", "source": "GND"}], "variant_access_point": ["Fundamentum"], "authorized_access_point": "Fundamentbuch"} 1 +2024-09-11 09:08:51.548769 2024-09-11 09:08:51.548773 76757f83-17d1-42a9-8f76-74bd53677628 {"md5": "f8ecb9e4630789e9ad7af005bb878751", "pid": "132121202X", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Jinghu_(instrument)&oldid=1158694952"], "noteType": "dataSource"}, {"label": ["chinesisches Streichinstrument, das hauptsächlich in der Peking-Oper verwendet wird"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Streichinstrument"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/132121202X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)132121202X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)132121202X", "source": "GND"}], "authorized_access_point": "Jinghu"} 1 +2024-09-11 09:08:51.605273 2024-09-11 09:08:51.605276 64509204-c67f-4c1c-96a0-7366da1012d2 {"md5": "8dea0b3387c0ba873b45890d52cda1d4", "pid": "1319608302", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=1923_Spanish_coup_d%27%C3%A9tat&oldid=1228246566"], "noteType": "dataSource"}, {"label": ["Staatsstreich von Miguel Primo de Rivera 1923 in Spanien"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Staatsstreich"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1319608302", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1319608302", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1319608302", "source": "GND"}], "variant_access_point": ["Putsch in Spanien (1923)"], "authorized_access_point": "Staatsstreich in Spanien (1923)"} 1 +2024-09-11 09:08:51.65559 2024-09-11 09:08:51.655592 c627324e-a8c4-442a-add1-fd78b138aefa {"md5": "c49b735f6c8d41d6d653378319ae1d3e", "pid": "1319352146", "note": [{"label": ["Einzige Art der Familie Walhaie (Rhincodontidae)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Haie (Ordnung)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333493509", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85146344", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85146344"}], "authorized_access_point": "Whale shark"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333493509", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15515151", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb155151519"}], "authorized_access_point": "Requin baleine"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1319352146", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1319352146", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1319352146", "source": "GND"}], "variant_access_point": ["Rhincodon typus"], "authorized_access_point": "Walhai"} 1 +2024-09-11 09:08:51.708841 2024-09-11 09:08:51.708845 e21d93e2-79aa-4358-8c9d-92c839e1a4d1 {"md5": "2b7297a143e04b65da89f205ebffeb76", "pid": "1318875676", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Krieg_in_Israel_und_Gaza_seit_2023&oldid=242011894"], "noteType": "dataSource"}, {"label": ["Krieg zwischen Israel und Hamas, ausgelöst durch den Terrorangriff der Hamas auf Israel am 7. Oktober 2023"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Krieg"}], "related": [{"authorized_access_point": "Terrorangriff der Hamas auf Israel 2023"}, {"authorized_access_point": "Nahostkonflikt"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1318875676", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1318875676", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1318875676", "source": "GND"}], "variant_access_point": ["Hamas-Israel-Krieg", "Krieg Israel-Hamas", "Krieg Hamas-Israel", "Krieg zwischen Israel und Hamas", "Krieg zwischen Hamas und Israel", "Israel-Gaza-Krieg", "Krieg Gaza-Israel", "Israel-Hamas war", "Hamas-Israel war", "Israel-Gaza war", "Gaza-Israel war", "Guerre Israël-Hamas", "Guerre Hamas-Israël", "Guerre Israël-Gaza", "Guerre Gaza-Israël"], "authorized_access_point": "Israel-Hamas-Krieg"} 1 +2024-09-11 09:08:51.76993 2024-09-11 09:08:51.769938 1cd4dd04-05aa-4810-a078-da2f25c37d80 {"md5": "f85fa82175b3451e039405228d41c00c", "pid": "1318600871", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Haager_Schule&oldid=240944142"], "noteType": "dataSource"}, {"label": ["Bezeichnung für eine Gruppe niederländischer Künstler, die nach einer Erneuerung der Malerei strebte; Hauptvertreter W. Roelofs, J. Israëls, J. H. Weissenbruch, H. W. Mesdag, J., M. und W. Maris sowie A. Mauve, die ständig oder zeitweise in Den Haag lebten"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Künstlerschule"}], "related": [{"authorized_access_point": "Malerei"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1318600871", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1318600871", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1318600871", "source": "GND"}], "variant_access_point": ["Haagse School", "Schule von Den Haag", "École de La Haye"], "authorized_access_point": "Haager Schule"} 1 +2024-09-11 09:08:51.828528 2024-09-11 09:08:51.828533 664e207a-1bef-42b3-b5c4-ec09d3f38896 {"md5": "881b0e00098077a473cd4901c0eb4bac", "pid": "1318529573", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Okkultist"}, {"authorized_access_point": "Okkultismus"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331753716", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2020008750", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2020008750"}], "authorized_access_point": "Women occultists"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1318529573", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1318529573", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1318529573", "source": "GND"}], "authorized_access_point": "Okkultistin"} 1 +2024-09-11 09:08:51.881065 2024-09-11 09:08:51.881067 16afcf29-9307-4585-96ca-074456be7741 {"md5": "c1894cae11cb454fc88138517ac09fa1", "pid": "1315438240", "note": [{"label": ["Unterhaltungssoftware Selbstkontrolle. Lexikon - https://usk.de/alle-lexikonbegriffe/mod/", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Mod_(Computerspiele)&oldid=240387416"], "noteType": "dataSource"}, {"label": ["Kurzwort für die oftmals communitybasierte Modifikation eines Computerspiels"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Computerspiel"}, {"authorized_access_point": "Änderung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1315438240", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1315438240", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1315438240", "source": "GND"}], "variant_access_point": ["Modifikation (Computerspiel)", "Video Game Mod"], "authorized_access_point": "Mod (Computerspiel)"} 1 +2024-09-11 09:08:51.933755 2024-09-11 09:08:51.933758 57950e37-bb18-4d1b-8c4b-dd95dabffec3 {"md5": "dc55968fd93071bce15fae2a66e0d544", "pid": "1315344238", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Aufenthaltsrecht"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1315344238", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1315344238", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1315344238", "source": "GND"}], "authorized_access_point": "Subsidiärer Schutz"} 1 +2024-09-11 09:08:51.991739 2024-09-11 09:08:51.991743 825147c1-828b-41c4-96be-9e784690931f {"md5": "45bbaad5ead1f2ca2d33ed9197ab5510", "pid": "1315166526", "note": [{"label": ["Sammelbezeichnung für die v.a. austronesische Sprachen sprechenden melanesischen Bevölkerungsgruppen im äußersten Südosten von Neuguinea und den nördlich und östlich vorgelagerten Archipelen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134218907", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12223472", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12223472w"}], "authorized_access_point": "Massim (peuple de Papouasie-Nouvelle-Guinée)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1315166526", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1315166526", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1315166526", "source": "GND"}], "authorized_access_point": "Massim"} 1 +2024-09-11 09:08:52.050461 2024-09-11 09:08:52.050465 886b11f9-4b0e-4f86-afb2-d65758c4602a {"md5": "cf60b6ab9b859b9ea203d3d8eeac3ec2", "pid": "1314207296", "note": [{"label": ["Werke für zwei und mehr Spielende auf zwei Orgeln"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Orgelmusik"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1314207296", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1314207296", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1314207296", "source": "GND"}], "variant_access_point": ["Musik für 2 Orgeln", "Orgelmusik für zwei Instrumente"], "authorized_access_point": "Musik für zwei Orgeln"} 1 +2024-09-11 09:08:52.105799 2024-09-11 09:08:52.105802 f4fe3847-e97f-4a94-bd98-b93ee941a003 {"md5": "98ce1135ac7c2a4a76d5ff3591616cc6", "pid": "1314016547", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sportlerin"}], "related": [{"authorized_access_point": "Biathlon"}, {"authorized_access_point": "Biathlet"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1314016547", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1314016547", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1314016547", "source": "GND"}], "authorized_access_point": "Biathletin"} 1 +2024-09-11 09:08:52.159212 2024-09-11 09:08:52.159216 f7f38797-da9a-4798-8b8a-b1e849da2e10 {"md5": "8664bda48f7dd5027fd4c98426ec48e9", "pid": "1314016032", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sportler"}], "related": [{"authorized_access_point": "Biathlon"}, {"authorized_access_point": "Biathletin"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1314016032", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1314016032", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1314016032", "source": "GND"}], "authorized_access_point": "Biathlet"} 1 +2024-09-11 09:08:52.211234 2024-09-11 09:08:52.211237 afacf178-b065-427f-bc8b-07f5195c21fe {"md5": "04e30fd2aa8ad59c46fcf424b3aae7d6", "pid": "1311509100", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Gimbri&oldid=230664992"], "noteType": "dataSource"}, {"label": ["eine 1 bis 1,5 Meter lange gezupfte Binnenspießlaute mit drei Saiten in den Ländern Marokko, Tunesien und Algerien"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Laute"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1311509100", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1311509100", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1311509100", "source": "GND"}], "variant_access_point": ["Ginbri", "Guinbri", "Guembri", "Gmbri", "Gnibra", "Gombri", "Gunbri", "Gunibri"], "authorized_access_point": "Gimbri"} 1 +2024-09-11 09:08:52.266869 2024-09-11 09:08:52.266874 9571a899-d6a5-47bf-b924-919eb0b82ea5 {"md5": "2dac0d5f5bd2578a930facc18776dda2", "pid": "131143609X", "note": [{"label": ["aus dem indischen Saiteninstrument Tanpura abgeleitetes und umgeformtes Saiteninstrument, das auf den Körper gelegt wird"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zupfinstrument"}], "related": [{"authorized_access_point": "Tanbur"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/131143609X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)131143609X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)131143609X", "source": "GND"}], "variant_access_point": ["Body Tambura"], "authorized_access_point": "Körpertambura"} 1 +2024-09-11 09:08:52.320758 2024-09-11 09:08:52.320761 c0a00087-440d-4884-b44b-07f91557defe {"md5": "95d905340b4e1a3876544b94d2220470", "pid": "1311352430", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Hilberts_Hotel&oldid=243090788"], "noteType": "dataSource"}, {"label": ["Von David Hilbert erdachtes Gedankenexperiment zur Veranschaulichung von Unendlichkeiten, Paradoxon"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gedankenexperiment"}, {"authorized_access_point": "Paradoxon"}], "related": [{"authorized_access_point": "Unendlichkeit"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1311352430", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1311352430", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1311352430", "source": "GND"}], "variant_access_point": ["Hilbert's paradox of the Grand Hotel", "Hilbert's hotel", "Hilberts Paradoxon des Grand Hotels", "Unendliches Hotelparadoxon", "Hotel infinity"], "authorized_access_point": "Hilberts Hotel"} 1 +2024-09-11 09:08:52.376432 2024-09-11 09:08:52.376435 a26acaef-bd0b-4af6-9993-cb25ea5e11a1 {"md5": "896a7f887ba4d32f3d552287feebb2cb", "pid": "1310159343", "note": [{"label": ["Verknüpfe mit dem jeweils zutreffenden Sachverhalt, z. B. Eucharistie. Nicht zu verwenden für rechtliche Sachverhalte; hier liegen speziellere SWW vor, z. B. Dispens oder Aussetzung (Strafrecht)."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1310159343", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1310159343", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1310159343", "source": "GND"}], "authorized_access_point": "Aussetzung"} 1 +2024-09-11 09:09:01.288317 2024-09-11 09:09:01.288321 5e8e9121-9e0d-410f-99de-bcebe7c777d2 {"md5": "52f1593fbd3368738ce85c0d09c6651d", "pid": "1059383780", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Raumsonde"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059383780", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059383780", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059383780", "source": "GND"}], "variant_access_point": ["Pioneer-Saturn"], "authorized_access_point": "Pioneer 10"} 1 +2024-09-11 09:08:52.435358 2024-09-11 09:08:52.435373 62eeaa85-a369-42ca-a420-25f68b6efb9d {"md5": "3d9bebdbcff8b3584533b928a0defc22", "pid": "130899687X", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Live_coding&oldid=1168454487"], "noteType": "dataSource"}, {"label": ["Live-Coding beschreibt eine künstlerische Praxis und kreative Technik, bei der Computerprogramme in Echtzeit und auf der Bühne geschrieben werden, wird häufig zur Erstellung von klang- und bildbasierten digitalen Medien sowie von Lichtsystemen, improvisiertem Tanz und Poesie, Computermusik verwendet"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programmierung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/130899687X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)130899687X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)130899687X", "source": "GND"}], "variant_access_point": ["Live Coding", "Just-in-Time-Programmierung", "On-the-fly-Programmierung", "Konversationsprogrammierung"], "authorized_access_point": "Live-Coding"} 1 +2024-09-11 09:08:52.500252 2024-09-11 09:08:52.500256 3f4706c2-64c8-406f-a0ee-cd2b3fe1b276 {"md5": "0562b8920bc67f735f7dadfc7f60dd28", "pid": "1308455038", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Science_and_Technology_Studies&oldid=233892252", "Niewöhner, Sørensen, Beck: Science and Technology Studies. Eine sozialanthropologische Einführung - https://doi.org/10.14361/transcript.9783839421062.intro", "Havard University. What is STS? - https://sts.hks.harvard.edu/about/whatissts.html"], "noteType": "dataSource"}, {"label": ["Interdisziplinäres Forschungsfeld bzw. interdisziplinärer Studiengang, der sich mit der Verschränkung von Wissenschaft, Technologie und Gesellschaft beschäftigt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Forschung"}], "related": [{"authorized_access_point": "Wissenschaftsforschung"}, {"authorized_access_point": "Techniksoziologie"}, {"authorized_access_point": "Wissenschaftssoziologie"}, {"authorized_access_point": "Actor-Network-Theory"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1308455038", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1308455038", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1308455038", "source": "GND"}], "variant_access_point": ["Wissenschafts- und Technikforschung", "STS"], "authorized_access_point": "Science and Technology Studies"} 1 +2024-09-11 09:08:52.556467 2024-09-11 09:08:52.556471 41194b6f-2686-44ce-89b6-889c8d9ea1c9 {"md5": "7695ccd213bbbab4063ed6615c5473f0", "pid": "1305992857", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zelltransplantation"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1305993039", "source": "GND"}, {"type": "bf:Nbn", "value": "D033581", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D033581"}], "authorized_access_point": "Stem Cell Transplantation"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1305992857", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1305992857", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1305992857", "source": "GND"}], "variant_access_point": ["Stammzellentransplantation"], "authorized_access_point": "Stammzelltransplantation"} 1 +2024-09-11 09:08:52.610995 2024-09-11 09:08:52.610999 24fcfdc0-5e62-4888-819b-a94343d2e4b6 {"md5": "c3c38caed7390f4a5d317c1687ed4816", "pid": "1302496050", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Vergewaltigung&oldid=236552945#Gruppenvergewaltigung"], "noteType": "dataSource"}, {"label": ["Vergewaltigung einer oder mehrerer Personen durch eine Gruppe von Personen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Vergewaltigung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1302496050", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1302496050", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1302496050", "source": "GND"}], "authorized_access_point": "Gruppenvergewaltigung"} 1 +2024-09-11 09:08:52.673993 2024-09-11 09:08:52.673996 d1cab7cb-355b-43fd-9a80-a9a3a2446ce6 {"md5": "e225cf2e6dca9109acf03982f214a4fe", "pid": "129922539X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Motivierende_Gespr%C3%A4chsf%C3%BChrung&oldid=232935635"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gesprächsführung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "sh2006005865", "source": "DLC"}, {"type": "uri", "value": "https://id.loc.gov/authorities/subjects/sh2006005865"}], "authorized_access_point": "Motivational interviewing"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "FRBNF16167865", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16167865w"}], "authorized_access_point": "Entretiens motivationnels"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129922539X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)129922539X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)129922539X", "source": "GND"}], "variant_access_point": ["Motivationale Gesprächsführung"], "authorized_access_point": "Motivierende Gesprächsführung"} 1 +2024-09-11 09:08:52.740024 2024-09-11 09:08:52.740026 efa3a3f6-3c36-4a24-bef6-7566d8e310ae {"md5": "f609d80061a5c4907a8ea30b9a550034", "pid": "1298858054", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Retrocomputing&oldid=232682995"], "noteType": "dataSource"}, {"label": ["Nutzung alter, von ihren Herstellern aufgegebener Hard- und Software zur Datensicherung, Forschung oder zum Zeitvertreib (für letzteres verwandter Begriff: Retrogaming)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Computer"}], "related": [{"authorized_access_point": "Software"}, {"authorized_access_point": "Datenverarbeitung"}, {"authorized_access_point": "Retrogaming"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1298858054", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1298858054", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1298858054", "source": "GND"}], "variant_access_point": ["Retro-Computing", "Computerarchäologie"], "authorized_access_point": "Retrocomputing"} 1 +2024-09-11 09:08:52.795143 2024-09-11 09:08:52.795147 230171e1-b74a-4cca-b808-1f47ab4d6ed9 {"md5": "ed41ab6de1b673841769a7e36b004a56", "pid": "1298312817", "note": [{"label": ["Homepage - https://emin.org"], "noteType": "dataSource"}, {"label": ["1971 durch Raymond Armin, genannt Leo, in London begründet, heute internationales Netzwerk Gleichgesinnter"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Lebensphilosophie"}, {"authorized_access_point": "Neue Religion"}, {"authorized_access_point": "Netzwerk"}], "related": [{"authorized_access_point": "Esoterik"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1298312817", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1298312817", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1298312817", "source": "GND"}], "variant_access_point": ["Emin society", "The Eminent Way", "Template Network", "Emin movement"], "authorized_access_point": "Emin"} 1 +2024-09-11 09:08:52.845363 2024-09-11 09:08:52.845367 ddeff11b-4da0-4bdc-81e9-097c70f47f62 {"md5": "dce7e5688954c58e1e4015acc54f8b3f", "pid": "1297822668", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=White_Power&oldid=235014502"], "noteType": "dataSource"}, {"label": ["Ursprünglich Losungswort des \\"Ku-Klux-Klans\\". Inzwischen Schlüsselbegriff aus rassistischen oder neonazistischen Szenen; steht für die nazistische und rassistische Theorie von der Vorherrschaft der „weißen Rasse“"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Slogan"}, {"authorized_access_point": "Politische Theorie"}], "related": [{"authorized_access_point": "Rassismus"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1297822668", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1297822668", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1297822668", "source": "GND"}], "variant_access_point": ["White Pride", "WP"], "authorized_access_point": "White Power"} 1 +2024-09-11 09:08:52.897549 2024-09-11 09:08:52.897554 1a129cb2-5bb3-49ea-b299-41c17656e38f {"md5": "cab35cf8eb019c469e70147c9f278743", "pid": "1295539519", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Tchamba_(Kult)&oldid=224257647"], "noteType": "dataSource"}, {"label": ["Besessenheitskult v.a. im Süden von Togo und Benin, bei dem die Geister ehemaliger Sklaven geehrt werden, die v.a. die Nachfahren früherer Sklaven und Sklavenbesitzer befallen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Besessenheitskult"}], "related": [{"authorized_access_point": "Geister"}, {"authorized_access_point": "Wodu"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1295539519", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1295539519", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1295539519", "source": "GND"}], "variant_access_point": ["Tsamba", "Tsaba", "Tsemba", "Tseba", "Tchamba-Kult"], "authorized_access_point": "Tchamba"} 1 +2024-09-11 09:08:52.955306 2024-09-11 09:08:52.95531 99d18655-e5a5-4f8a-ac8c-38af6a288c5c {"md5": "53339b17236050804cb2772b1bf9a72f", "pid": "1293306673", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Familienname"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1293306673", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1293306673", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1293306673", "source": "GND"}], "variant_access_point": ["Gabelmann (Familienname)"], "authorized_access_point": "Gabel (Familienname)"} 1 +2024-09-11 09:08:53.010075 2024-09-11 09:08:53.010078 781d3164-685c-4916-a826-fc9ecbed9579 {"md5": "0f1a50ff096409ad42855738b74cf206", "pid": "1283002477", "note": [{"label": ["Calothrixin A oder I und Calothrixin B oder II sind Metabolite des Cyanobakteriums Calothrix mit potentieller Anti-Malaria-Wirkung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Alkaloide"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1283002477", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1283002477", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1283002477", "source": "GND"}], "authorized_access_point": "Calothrixine"} 1 +2024-09-11 09:08:53.065522 2024-09-11 09:08:53.065525 531452a0-8929-4e1d-a9c0-3cbf95a2ab78 {"md5": "8e6249bc262de31002710012c207b6b7", "pid": "127857025X", "note": [{"label": ["Wikipedia (eng) - https://en.wikipedia.org/w/index.php?title=Viva_Maria_(movement)&oldid=1039075561"], "noteType": "dataSource"}, {"label": ["Antinapoleonische Bewegung in Italien zwischen 1799 und 1800"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Politische Bewegung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/127857025X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)127857025X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)127857025X", "source": "GND"}], "authorized_access_point": "Viva Maria (Politische Bewegung)"} 1 +2024-09-11 09:08:53.120763 2024-09-11 09:08:53.120767 c131d1d3-e7c2-4ecc-8a2f-57309faa39f8 {"md5": "f5b96dc92a6e0177b93d359cf93aa46d", "pid": "1278063730", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Dritter_Ort&oldid=227398286"], "noteType": "dataSource"}, {"label": ["1989 vom Soziologen Ray Oldenburg geprägter Begriff, der Orte der Gemeinschaft umschreibt, als Ausgleich zum Zuhause (erster Ort) und zum Arbeitsplatz (zweiter Ort)."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Öffentlicher Raum"}], "related": [{"authorized_access_point": "Sozialraum"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1278063730", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1278063730", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1278063730", "source": "GND"}], "variant_access_point": ["Third place", "Great good place"], "authorized_access_point": "Dritter Ort"} 1 +2024-09-11 09:08:53.177703 2024-09-11 09:08:53.177707 85b1b524-b6b3-4797-92fc-9cb5d602a5b0 {"md5": "15c8befd4b2ec7ce5f5d539474a51faa", "pid": "1277678871", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Kalmarkrieg&oldid=196297680"], "noteType": "dataSource"}, {"label": ["Krieg zwischen Dänemark und Schweden um die Kontrolle der Finnmark"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Krieg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1277678871", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1277678871", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1277678871", "source": "GND"}], "variant_access_point": ["Kalmarkriget", "Kalmarkrigen"], "authorized_access_point": "Kalmarkrieg"} 1 +2024-09-11 09:08:53.230399 2024-09-11 09:08:53.230402 713b71d4-59f9-4314-ae0e-cad93c8262fa {"md5": "1c148459684cc08c4e9c22ef046514a7", "pid": "1277560676", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Mundart Süditalienisch (Basilicata)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1277560676", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1277560676", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1277560676", "source": "GND"}], "authorized_access_point": "Mundart Süditalienisch, Basilicata (Monte-Pollino-Gebiet)"} 1 +2024-09-11 09:08:53.285044 2024-09-11 09:08:53.285048 de3b4aa3-4763-4dd7-a10b-c87f4cf085f6 {"md5": "66bd6fecae2b1cbe4e7ce7337fbe61c9", "pid": "1276707304", "note": [{"label": ["Als Emittenten bezeichnet man eine juristische Person, die zum Handel bestimmte Wertpapiere und Vermögensanlagen ausgibt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kapitalmarktrecht"}], "related": [{"authorized_access_point": "Kreditwesen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1276707304", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1276707304", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1276707304", "source": "GND"}], "authorized_access_point": "Emittent"} 1 +2024-09-11 09:08:53.338721 2024-09-11 09:08:53.338726 683ecca5-43c8-4782-957b-fecf17b4e070 {"md5": "63c84a2ed81ea4c79864c026c2532ccd", "pid": "1276176597", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Bushcrafting&oldid=228966190"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Überlebenstraining"}, {"authorized_access_point": "Trekking"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1276176597", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1276176597", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1276176597", "source": "GND"}], "variant_access_point": ["Bushcraft", "Waldhandwerk", "Buschhandwerk", "Buschfertigkeit", "Naturhandwerk", "Naturfertigkeit"], "authorized_access_point": "Bushcrafting"} 1 +2024-09-11 09:08:53.393105 2024-09-11 09:08:53.393109 12094f75-3f68-434b-af3e-4649bdccb66f {"md5": "ab0d6258344a4b96c62a2fc7b6e8ea2d", "pid": "1275619533", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Knickfu%C3%9F&oldid=200221909"], "noteType": "dataSource"}, {"label": ["Fehlstellung des Fußes mit einer Senkung am inneren Fußrand und einer Anhebung des äußeren Fußrandes"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fußdeformität"}, {"authorized_access_point": "Fehlstellung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1275619533", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1275619533", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1275619533", "source": "GND"}], "variant_access_point": ["Pes valgus", "X-Fuß"], "authorized_access_point": "Knickfuß"} 1 +2024-09-11 09:08:53.448397 2024-09-11 09:08:53.448401 f4be044b-565d-4dc1-a387-6a96793f38cc {"md5": "e837fd909ffec989a17982d1cb3863c8", "pid": "1275172962", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=The_Legend_of_Zelda&oldid=233760337"], "noteType": "dataSource"}, {"label": ["Videospielserie, in bisher 20 Teilen erschienen ab 1986; die gleichnamigen Mangas beruhen auf den Spielen; inzwischen auch als Fernsehserie erschienen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Abenteuerspiel"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331595134", "source": "GND"}, {"type": "bf:Nbn", "value": "sh90003532", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh90003532"}], "authorized_access_point": "Legend of Zelda (Game)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331595134", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16549048", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16549048v"}], "authorized_access_point": "Zeruda no densetsu (jeu vidéo ; série)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1275172962", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1275172962", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1275172962", "source": "GND"}], "variant_access_point": ["Zeruda no densetsu (Abenteuerspiel)", "Die Legende von Zelda", "Zelda"], "authorized_access_point": "The legend of Zelda (Abenteuerspiel)"} 1 +2024-09-11 09:08:53.505569 2024-09-11 09:08:53.505573 673c4ffc-9051-4814-8877-f6ec277b9b35 {"md5": "5eab9a2a684d672138d5e0c633aca710", "pid": "1274948169", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1274948169", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1274948169", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1274948169", "source": "GND"}], "authorized_access_point": "Tat (Motiv)"} 1 +2024-09-11 09:08:53.565508 2024-09-11 09:08:53.565512 735e7601-88fe-4f96-bffe-ec09e1543f80 {"md5": "f45a90c58064c5dbc4be39f1d497aa17", "pid": "1274269121", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Spieleautor"], "noteType": "dataSource"}, {"label": ["Spieleautoren erfinden und entwickeln Gesellschaftsspiele."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Autorin"}], "related": [{"authorized_access_point": "Spieleautor"}, {"authorized_access_point": "Gesellschaftsspiel"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1274269121", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1274269121", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1274269121", "source": "GND"}], "variant_access_point": ["Spiele-Autorin"], "authorized_access_point": "Spieleautorin"} 1 +2024-09-11 09:08:56.74023 2024-09-11 09:08:56.740234 aa3fdea8-bb24-4406-8419-c7746395814e {"md5": "8394afb2ecc1cf47164bf4eda066eede", "pid": "1162072040", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung (hier: Hebräisch) und Wortart"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1162072040", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1162072040", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1162072040", "source": "GND"}], "variant_access_point": ["shadday", "šaddaj", "שַׁדַּי"], "authorized_access_point": "shaday"} 1 +2024-09-11 09:08:53.630467 2024-09-11 09:08:53.63047 e8e19595-cb70-4443-b81e-def74906b2aa {"md5": "b095df2493c23dfacee83b95a00bbcc1", "pid": "1273395077", "note": [{"label": ["Homepage - https://www.so-geht-saechsisch.de/saechsischer-verlagspreis", "Wikipedia - https://de.wikipedia.org/w/index.php?title=S%C3%A4chsischer_Verlagspreis&oldid=217233083"], "noteType": "dataSource"}, {"label": ["Branchenpreis - Auszeichnung unabhängiger sächsischer Verlage für ihr Wirken und besondere verlegerische Leistungen", "Vergabe seit 2018, anfangs an jeweils einen Verlag, ab 2022 an bis zu 20 Verlage"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kulturpreis"}], "related": [{"authorized_access_point": "Verlag"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1273395077", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1273395077", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1273395077", "source": "GND"}], "authorized_access_point": "Sächsischer Verlagspreis"} 1 +2024-09-11 09:08:53.686389 2024-09-11 09:08:53.686393 793c028d-2b25-4ae1-8214-86d2998f7212 {"md5": "51ed440e89efd927f946c55a3494d3f7", "pid": "1273298268", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Elektronisches_Rezept&oldid=227742217"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Arzneiverordnung"}, {"authorized_access_point": "Elektronische Gesundheitskarte"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333252048", "source": "GND"}, {"type": "bf:Nbn", "value": "D055695", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D055695"}], "authorized_access_point": "Electronic Prescribing"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1273298268", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1273298268", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1273298268", "source": "GND"}], "variant_access_point": ["E-Rezept", "eRezept"], "authorized_access_point": "Elektronisches Rezept"} 1 +2024-09-11 09:08:53.740528 2024-09-11 09:08:53.740531 6a26cef3-eaeb-4542-882b-096340cc4688 {"md5": "df7d4257ea87f96433c331c2dc4c9350", "pid": "1273295374", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Pescetarismus&oldid=225934559"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ernährung"}, {"authorized_access_point": "Speise"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1273295374", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1273295374", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1273295374", "source": "GND"}], "variant_access_point": ["Pescetarische Ernährung", "Pescetarier-Diät"], "authorized_access_point": "Pescetarische Kost"} 1 +2024-09-11 09:08:53.795139 2024-09-11 09:08:53.795142 21125496-88ba-40ad-a8ec-7cc5d6de3c9b {"md5": "56994f8a19ec702224637260c295571a", "pid": "1270459880", "note": [{"label": ["Aus mehreren Ethnien zusammengesetzte Volksgruppe der Bantu in Ostafrika, die größtenteils in der West-Provinz (Hauptstadt: Kakamega) von Kenia in der Region um den Mount Elgon und in Südostuganda leben."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Bantu"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332861334", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85079057", "source": "DLC"}, {"type": "uri", "value": "https://id.loc.gov/authorities/subjects/sh85079057"}], "authorized_access_point": "Luyia (African people)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332861334", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13496553", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13496553j"}], "authorized_access_point": "Luyia (peuple d'Afrique)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1270459880", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1270459880", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1270459880", "source": "GND"}], "variant_access_point": ["Luhia", "Baluhya", "Bantu-Kavirondo", "Lujia", "Luyia", "Abaluhyia", "Abaluyia"], "authorized_access_point": "Luhya"} 1 +2024-09-11 09:08:53.848444 2024-09-11 09:08:53.848449 ba8a881c-0e48-4493-a040-cad0aed0cceb {"md5": "60c0527e6958fe4517c1b1baa11f62ae", "pid": "1268867829", "note": [{"label": ["OBV - https://permalink.obvsg.at/AC16604043"], "noteType": "dataSource"}, {"label": ["Sammelbezeichnung für Syndrome mit mikroangiopathischer hämolytischer Anämie, Thrombozythopenie und thrombotischen Verschlüssen in der Mikrozirkulation"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mikroangiopathie"}], "related": [{"authorized_access_point": "Mikrozirkulationsstörung"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1277091897", "source": "GND"}, {"type": "bf:Nbn", "value": "D057049", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D057049"}], "authorized_access_point": "Thrombotic Microangiopathies"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1268867829", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1268867829", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1268867829", "source": "GND"}], "variant_access_point": ["TMA"], "authorized_access_point": "Thrombotische Mikroangiopathie"} 1 +2024-09-11 09:08:53.90285 2024-09-11 09:08:53.902855 c0347fbb-a1a5-45cd-a7b9-1ac983fc2dc2 {"md5": "60b9049f8443964ab4eb7a67fd6e3c68", "pid": "1267608781", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Rohrbach_Ro_IV&oldid=215067231"], "noteType": "dataSource"}, {"label": ["Britisches Flugboot, unter Lizenz nach einem Entwurf von Rohrbach gebaut von Beardsmore, Erstflug 1925"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Flugboot"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1267608781", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1267608781", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1267608781", "source": "GND"}], "variant_access_point": ["Beardmore Inverness", "Beardmore BeRo.2 Inverness", "Inverness (Flugboot)", "Ro IV", "BeRo Inverness", "Ro-IV Inverness"], "authorized_access_point": "Rohrbach Ro IV"} 1 +2024-09-11 09:08:53.958105 2024-09-11 09:08:53.958111 48daf426-32bf-435c-8684-9fe5aed18870 {"md5": "1cff6e1d4cd3a629a3e5cc706ce15650", "pid": "1267608366", "note": [{"label": ["Wikipedia (eng) - https://en.wikipedia.org/w/index.php?title=Beardmore_Inflexible&oldid=1018097769"], "noteType": "dataSource"}, {"label": ["Britischer Bomber, zwischen 1925 und 1927 hergestellt von Beardmore nach einem Entwurf von Rohrbach. 1928 Erstflug, 1930 Außerdienststellung."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bombenflugzeug"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1267608366", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1267608366", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1267608366", "source": "GND"}], "variant_access_point": ["Rohrbach Ro VI", "BeRo Inflexible", "Inflexible (Flugzeug)", "Ro VI", "Beadmore AV 1 Inflexible", "BeRo 1"], "authorized_access_point": "Beardmore Inflexible"} 1 +2024-09-11 09:08:54.015905 2024-09-11 09:08:54.01591 5ed1f0d2-fb7c-4548-95dd-44585f36bb27 {"md5": "38a1d93a2a32a685912c0545a9cd57dd", "pid": "1267358122", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1267358122", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1267358122", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1267358122", "source": "GND"}], "authorized_access_point": "Beurteilung (Motiv)"} 1 +2024-09-11 09:08:54.074878 2024-09-11 09:08:54.074882 73666fe1-074b-459f-a2eb-e2b6bd4187cf {"md5": "3caab3a0b30501ae7995cb6d3e263eb4", "pid": "1266800611", "note": [{"label": ["- BERUFENET - https://berufenet.arbeitsagentur.de/berufenet/faces/index;BERUFENETJSESSIONID=Mtv0BwN248FRIrQfZ4wj9Z21aQDNCzvOiov-sEw9T51hrJVD2gfR!-131719411?path=null/suchergebnisse/kurzbeschreibung&dkz=132173&such=pflegefachmann"], "noteType": "dataSource"}, {"label": ["Seit dem 1.1.2020 neue offizielle Berufsbezeichnung in Dtld., das Pflegeberufegesetz führt die bisherigen Berufsausbildungen der Altenpflege, der Gesundheits- und Krankenpflege und der Gesundheits- und Kinderkrankenpflege zusammen.", "Als Homonymenzusatz bei Personenschlagwörtern zugelassen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Pflegepersonal"}], "related": [{"authorized_access_point": "Pflegefachmann"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133327260X", "source": "GND"}, {"type": "bf:Nbn", "value": "D009726", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D009726"}], "authorized_access_point": "Nurses"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333271700", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2016000330", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2016000330"}], "authorized_access_point": "Women nurses"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1266800611", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1266800611", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1266800611", "source": "GND"}], "authorized_access_point": "Pflegefachfrau"} 1 +2024-09-11 09:08:54.132073 2024-09-11 09:08:54.132076 ded9f874-a28a-4bd0-8ba7-1d0dc1edd7ba {"md5": "aa7d827ccceacff19e5f06c84a088e06", "pid": "1266799931", "note": [{"label": ["- BERUFENET - https://berufenet.arbeitsagentur.de/berufenet/faces/index;BERUFENETJSESSIONID=Mtv0BwN248FRIrQfZ4wj9Z21aQDNCzvOiov-sEw9T51hrJVD2gfR!-131719411?path=null/suchergebnisse/kurzbeschreibung&dkz=132173&such=pflegefachmann"], "noteType": "dataSource"}, {"label": ["Seit dem 1.1.2020 neue offizielle Berufsbezeichnung in Dtld., das Pflegeberufegesetz führt die bisherigen Berufsausbildungen der Altenpflege, der Gesundheits- und Krankenpflege und der Gesundheits- und Kinderkrankenpflege zusammen.", "Als Homonymenzusatz bei Personenschlagwörtern zugelassen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Pflegepersonal"}], "related": [{"authorized_access_point": "Pflegefachfrau"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333273010", "source": "GND"}, {"type": "bf:Nbn", "value": "D009727", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D009727"}], "authorized_access_point": "Nurses, Male"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133327288X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85083530", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85083530"}], "authorized_access_point": "Male nurses"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1266799931", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1266799931", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1266799931", "source": "GND"}], "authorized_access_point": "Pflegefachmann"} 1 +2024-09-11 09:08:54.192305 2024-09-11 09:08:54.19231 109f0022-f1dd-4cc6-a909-256a6a17c7bb {"md5": "773ed67c172b056927ec7586a02ccdc9", "pid": "1264956134", "note": [{"label": ["Forschungsplan, der verschiedene Verfahren kombiniert; gemeint sind meist qualitative und quantitative Methoden"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Forschungsmethode"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332866999", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2010001158", "source": "DLC"}, {"type": "uri", "value": "https://id.loc.gov/authorities/subjects/sh2010001158"}], "authorized_access_point": "Mixed methods research"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332866999", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16582642", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16582642k"}], "authorized_access_point": "Méthodes de recherche mixtes"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1264956134", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1264956134", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1264956134", "source": "GND"}], "variant_access_point": ["Mixed-Methods", "Mixed methods"], "authorized_access_point": "Methodenmix"} 1 +2024-09-11 09:08:56.79533 2024-09-11 09:08:56.795335 5bcc36aa-444b-4545-a29a-2eecda753445 {"md5": "17158d8643d8a5e5ab90e5171a3ab817", "pid": "1161142878", "note": [{"label": ["Mongolischstämmige muslimische ethnische Minderheit der Volksrepublik China."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1161142878", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1161142878", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1161142878", "source": "GND"}], "variant_access_point": ["Bao’an", "Paoan", "Bonan"], "authorized_access_point": "Baoan"} 1 +2024-09-11 09:08:54.251903 2024-09-11 09:08:54.251908 bbd85b20-cbab-42e8-9291-f6297f0ebe4e {"md5": "a3d47e385d2b4d79de44100acfb9b370", "pid": "1262928265", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?oldid=1095914761"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gesundheit"}], "related": [{"authorized_access_point": "Planetare Gesundheit"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133930549", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85148199", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85148199"}], "authorized_access_point": "World health"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133930549", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11933219", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119332195"}], "authorized_access_point": "Santé publique"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1277080682", "source": "GND"}, {"type": "bf:Nbn", "value": "D014943", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D014943"}], "authorized_access_point": "Global Health"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1262928265", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1262928265", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1262928265", "source": "GND"}], "variant_access_point": ["Global Health", "Weltgesundheit", "Internationale Gesundheit"], "authorized_access_point": "Globale Gesundheit"} 1 +2024-09-11 09:08:54.313076 2024-09-11 09:08:54.313079 f7684b70-c1b9-45cf-bd53-6c0900c358f9 {"md5": "91d306222d937c5b957d37cce98085de", "pid": "1261933737", "note": [{"label": ["MGG online - https://www.mgg-online.com/mgg/stable/403049"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Theater"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1261933737", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1261933737", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1261933737", "source": "GND"}], "variant_access_point": ["Klostertheater"], "authorized_access_point": "Ordenstheater"} 1 +2024-09-11 09:08:54.373366 2024-09-11 09:08:54.373369 5d160734-2d18-482c-b9d4-46099971242f {"md5": "28ce0994e264f4ba6b597e69d2f09cc4", "pid": "1259460460", "note": [{"label": ["Letzte (technische) Fassung eines Drehbuchs, die in die einzelnen zu drehenden Aufnahmen zerlegt ist."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Drehbuch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1259460460", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1259460460", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1259460460", "source": "GND"}], "variant_access_point": ["Shooting script"], "authorized_access_point": "Découpage (Film)"} 1 +2024-09-11 09:08:54.436904 2024-09-11 09:08:54.436908 72e7a89f-2d13-4628-9f8a-94fed1ec634a {"md5": "036d56f26a3af3ed2f8f37406156230e", "pid": "1258881675", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332862187", "source": "GND"}, {"type": "bf:Nbn", "value": "sh91005542", "source": "DLC"}, {"type": "uri", "value": "https://id.loc.gov/authorities/subjects/sh91005542"}], "authorized_access_point": "Balangao (Philippine people)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1258881675", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1258881675", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1258881675", "source": "GND"}], "variant_access_point": ["Balangao Bontoc", "Balangao-Bontok", "Balangaw"], "authorized_access_point": "Balangao"} 1 +2024-09-11 09:08:54.489512 2024-09-11 09:08:54.489515 0f23aee4-b797-4590-92ae-d142c66a1b18 {"md5": "96823bcc6755776a0b0a773dcaf5a52c", "pid": "125746423X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Reis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/125746423X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)125746423X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)125746423X", "source": "GND"}], "variant_access_point": ["Paddyreis", "gedroschener Reis", "bespelzte Reiskörner"], "authorized_access_point": "Paddy-Reis"} 1 +2024-09-11 09:08:54.54556 2024-09-11 09:08:54.545565 434e62f8-b9b5-4d90-a86a-62e6aae63ce5 {"md5": "6ad856e091ae23fa7c7e9568a0ed8418", "pid": "1257346415", "note": [{"label": ["Internet - https://wiki.polymerservice-merseburg.de/index.php/Luftultraschall"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ultraschallprüfung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1257346415", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1257346415", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1257346415", "source": "GND"}], "authorized_access_point": "Luftultraschall"} 1 +2024-09-11 09:08:54.601138 2024-09-11 09:08:54.601143 12df433e-d652-44e0-a7d7-8de4e9662cdc {"md5": "846cac083f9b5ae69ecc388373e276f5", "pid": "1257092804", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Wirbelschicht&oldid=215906776"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schüttgut"}, {"authorized_access_point": "Wirbelschicht"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1257092804", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1257092804", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1257092804", "source": "GND"}], "authorized_access_point": "Geldart-Gruppe B"} 1 +2024-09-11 09:08:54.664297 2024-09-11 09:08:54.664302 f7d40c12-10e9-45c1-8e7d-6479367261a3 {"md5": "6a51c05334d46073f02dc1c2d54a80ae", "pid": "1254569642", "note": [{"label": ["Wikipedia englisch - https://en.wikipedia.org/w/index.php?title=Vibrio_natriegens&oldid=1064078091"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gram-negative Bakterien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1254569642", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1254569642", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1254569642", "source": "GND"}], "authorized_access_point": "Vibrio natriegens"} 1 +2024-09-11 09:08:54.732686 2024-09-11 09:08:54.732691 34e413cb-497d-4883-9790-fe29bc5738eb {"md5": "2ccadc831208459b7e9feefb50823ebe", "pid": "1254535594", "note": [{"label": ["Pschyrembel online - https://www.pschyrembel.de/mRNA-Impfstoff/A0TVP/doc/"], "noteType": "dataSource"}, {"label": ["Impfstofftyp, bei dem RNA (in aller Regel mRNA) injiziert wird, die für einen Bestandteil des Erregers codiert. In der Zelle wird aus der mRNA das nichtpathogene Protein des Erregers gebildet (Antigen), das schließlich die Immunantwort triggert. Die ersten zugelassenen mRNA-Impfstoffe sind die SARS-CoV-2-Impfstoffe von BioNTech und Moderna"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Impfstoff"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332908640", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2022005581", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2022005581"}], "authorized_access_point": "mRNA vaccines"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332908640", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF18084862", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb18084862n"}], "authorized_access_point": "Vaccins à ARN messager"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1260520943", "source": "GND"}, {"type": "bf:Nbn", "value": "D000087503", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000087503"}], "authorized_access_point": "mRNA Vaccines"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1254535594", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1254535594", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1254535594", "source": "GND"}], "variant_access_point": ["mRNA-Vakzin", "RNA-Impfstoff", "RNA-Vakzin", "RNS-Impfstoff", "mRNA-Impfung (Quasisynonym)"], "authorized_access_point": "mRNA-Impfstoff"} 1 +2024-09-11 09:08:54.795345 2024-09-11 09:08:54.79535 d31fc293-6663-46ca-b5b5-214b2149831a {"md5": "64957bb0685f5819f88d2dbe3fada760", "pid": "1253837457", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Planetary_Health&oldid=217168638"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gesundheitsvorsorge"}], "related": [{"authorized_access_point": "Umweltmedizin"}, {"authorized_access_point": "Globale Gesundheit"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1253837457", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1253837457", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1253837457", "source": "GND"}], "variant_access_point": ["Planetary Health", "Santé planétaire"], "authorized_access_point": "Planetare Gesundheit"} 1 +2024-09-11 09:08:54.848257 2024-09-11 09:08:54.84826 7f2b6c6a-4439-4641-a3f5-56c3543cc9bc {"md5": "8fc7f9c27efb794d09e69cd981c28a0d", "pid": "1252827512", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Flugsicherung"}, {"authorized_access_point": "Turm"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133865976", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85002968", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85002968"}], "authorized_access_point": "Airport control towers"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133865976", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13543290", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13543290b"}], "authorized_access_point": "Tours de contrôle (aéroports)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1252827512", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1252827512", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1252827512", "source": "GND"}], "variant_access_point": ["Tower (Luftfahrt)", "Flugverkehrskontrollturm"], "authorized_access_point": "Kontrollturm (Luftfahrt)"} 1 +2024-09-11 09:08:54.90351 2024-09-11 09:08:54.903516 55e64f7c-f358-453b-ac4f-caecf92dfa56 {"md5": "7b25ec7580d7f9e64c3217981b22736c", "pid": "1252257295", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Kankurang&oldid=207951252"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Initiation"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1252257295", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1252257295", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1252257295", "source": "GND"}], "authorized_access_point": "Kankurang"} 1 +2024-09-11 09:08:54.958184 2024-09-11 09:08:54.958189 188d2408-0731-417a-a21c-d136b9e3760f {"md5": "39899d42f14eb614dc5613a0e477e5c9", "pid": "1251536492", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1251536492", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1251536492", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1251536492", "source": "GND"}], "variant_access_point": ["Corona-Pandemie"], "authorized_access_point": "COVID-19-Pandemie"} 1 +2024-09-11 09:08:55.014514 2024-09-11 09:08:55.014518 10250033-b54f-4f29-93d1-77b18b905f8c {"md5": "7da1cd6e92c096545bce957677caaf0e", "pid": "1250258731", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Jainismus&oldid=219669705670"], "noteType": "dataSource"}, {"label": ["Anhänger der indischen Religion Jainismus"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Jainismus"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134089961", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85069288", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85069288"}], "authorized_access_point": "Jains"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134089961", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11997604", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11997604f"}], "authorized_access_point": "Jaina"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1250258731", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1250258731", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1250258731", "source": "GND"}], "variant_access_point": ["Jains", "Jina", "Dschaina", "Jain", "Dschain"], "authorized_access_point": "Jaina"} 1 +2024-09-11 09:08:55.073753 2024-09-11 09:08:55.073757 2022c97a-db9d-405e-9d66-8005612966b9 {"md5": "33027595a14e71a34b5457ca24616c88", "pid": "124994516X", "note": [{"label": ["Zentralmonogolischer Stammesverband in der Zeit vor dem Mongolischen Reich"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332859674", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2010012538", "source": "DLC"}, {"type": "uri", "value": "https://id.loc.gov/authorities/subjects/sh2010012538"}], "authorized_access_point": "Kereyid"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124994516X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)124994516X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)124994516X", "source": "GND"}], "variant_access_point": ["Kerait", "Kereit", "Keräit", "Kereyid"], "authorized_access_point": "Keraiten"} 1 +2024-09-11 09:08:55.127548 2024-09-11 09:08:55.127551 73651508-b9d1-4a08-b2a1-126af09fc222 {"md5": "18f403f3050e6d922aed0b037918f9a6", "pid": "1249112877", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Pyridopyrimidine&oldid=879376703"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Pyrimidinderivate"}, {"authorized_access_point": "Pyridinderivate"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134439474", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF14546066", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb14546066s"}], "authorized_access_point": "Pyridodiazines"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1249112877", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1249112877", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1249112877", "source": "GND"}], "variant_access_point": ["Pyridopyrimidinderivate", "Pyridopyrimidin"], "authorized_access_point": "Pyridopyrimidine"} 1 +2024-09-11 09:08:55.187024 2024-09-11 09:08:55.187029 727542c8-1b14-402a-b4c2-37684e661a39 {"md5": "62b6e07da426d3075891a5383d55b464", "pid": "1248945506", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333635532", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2010006454", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2010006454"}], "authorized_access_point": "Practical jokes in literature"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1248945506", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1248945506", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1248945506", "source": "GND"}], "authorized_access_point": "Streich (Scherz, Motiv)"} 1 +2024-09-11 09:08:55.255696 2024-09-11 09:08:55.2557 24bb3859-eea3-48ba-908e-ea59f552b6b6 {"md5": "c11fa240e362b00c6338c0357efc73bc", "pid": "1247639401", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Kulturelle_Aneignung&oldid=218864021"], "noteType": "dataSource"}, {"label": ["Übernahme eines Bestandteils einer Kultur von Mitgliedern einer anderen Kultur oder Identität bezeichnet. Die ethische Dimension kultureller Aneignung wird in der Regel nur dann kritisiert, wenn die angeeignete Kultur einer Minderheit angehört, die als sozial, politisch, wirtschaftlich oder militärisch benachteiligt gilt, etwa wegen ethnischer Konflikte. Die Kultur werde aus Sicht der Kritiker durch ihre historischen Unterdrücker ihrem Kontext entrissen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kulturbeziehungen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331872340", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2018001171", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2018001171"}], "authorized_access_point": "Cultural appropriation"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331872340", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF18004355", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb18004355b"}], "authorized_access_point": "Appropriation culturelle"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1247639401", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1247639401", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1247639401", "source": "GND"}], "variant_access_point": ["Cultural appropriation"], "authorized_access_point": "Kulturelle Aneignung"} 1 +2024-09-11 09:08:55.324492 2024-09-11 09:08:55.324496 7b28ad5b-320f-4827-859e-dfa51bc2dd9f {"md5": "d1f2671a93ecae54b97df4d0cb18d201", "pid": "1246126877", "note": [{"label": ["Kleiner Baum oder großer Strauch aus der Pflanzenfamilie der Rosaceae."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Prunus"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1246126877", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1246126877", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1246126877", "source": "GND"}], "variant_access_point": ["Prunus padus", "Gewöhnliche Traubenkirsche", "Ahlkirsche"], "authorized_access_point": "Traubenkirsche"} 1 +2024-09-11 09:08:55.376402 2024-09-11 09:08:55.376407 412ca9fb-03a8-4e7e-a979-a5bff39b2863 {"md5": "6ea24b1a4e98c236edefb9174e610453", "pid": "124608841X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Gesundheitszeugnis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124608841X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)124608841X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)124608841X", "source": "GND"}], "variant_access_point": ["Impfausweis", "Impfnachweis", "Impfzertifikat", "Impfbescheinigung", "Impfdokumentation"], "authorized_access_point": "Impfpass"} 1 +2024-09-11 09:08:55.429098 2024-09-11 09:08:55.429101 afc897d2-6ac5-4fc9-acef-41f2c96e9af4 {"md5": "8a4af882df955863733a2e04836255e8", "pid": "1241975299", "note": [{"label": ["Familie der Barschartigen Fische"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Barschartige Fische"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333442068", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85073370", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85073370"}], "authorized_access_point": "Kuhliidae"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333442068", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17155128", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb171551286"}], "authorized_access_point": "Kuhliidae"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1241975299", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1241975299", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1241975299", "source": "GND"}], "variant_access_point": ["Kuhlie", "Kuhliidae"], "authorized_access_point": "Kuhlien"} 1 +2024-09-11 09:08:55.486092 2024-09-11 09:08:55.486097 77f1a25d-630a-43b5-8831-c633142f7583 {"md5": "8585306353c2b1a8803fbf24548bf551", "pid": "1234514702", "note": [{"label": ["Südostasiatisch verbreitete Gattung der Anabantoidei. Können knurrende Geräusche erzeugen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Labyrinthfische"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333957734", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17805197", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb178051976"}], "authorized_access_point": "Trichopsis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1234514702", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1234514702", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1234514702", "source": "GND"}], "variant_access_point": ["Trichopsis"], "authorized_access_point": "Knurrende Guramis"} 1 +2024-09-11 09:08:55.550122 2024-09-11 09:08:55.550127 1e0cefcd-d4fc-45cf-a456-f978f6fb3f05 {"md5": "e378659d1c1d27d605a23c9854677145", "pid": "1232346071", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=User_Experience&oldid=211010591"], "noteType": "dataSource"}, {"label": ["Umschreibt alle Aspekte der Eindrücke und das Erlebnis eines Nutzers bei der Interaktion mit einem Produkt, Dienst, einer Umgebung oder Einrichtung. Dazu zählen auch Software und IT-Systeme."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Benutzerfreundlichkeit"}, {"authorized_access_point": "Benutzerrückmeldung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1232346071", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1232346071", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1232346071", "source": "GND"}], "variant_access_point": ["User experience", "Nutzererfahrung", "Nutzererlebnis", "Nutzungserlebnis"], "authorized_access_point": "Benutzererlebnis"} 1 +2024-09-11 09:08:55.647157 2024-09-11 09:08:55.647162 590a31b0-4a62-419e-afc3-8392819c875b {"md5": "58368546d0dc3e175753e2e3ab63407e", "pid": "1228154325", "note": [{"label": ["Übertragung des Pollens einer Blüte auf die Narbe einer artgleichen anderen Blüte durch ein Tier"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bestäubung"}], "related": [{"authorized_access_point": "Anemogamie"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1228154325", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1228154325", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1228154325", "source": "GND"}], "variant_access_point": ["Anthophilie", "Zoophilie (Blütenökologie)", "Tierblütigkeit", "Tierbestäubung"], "authorized_access_point": "Zoogamie"} 1 +2024-09-11 09:08:55.700511 2024-09-11 09:08:55.700515 3d030d7b-48fc-4834-b911-c8f873975216 {"md5": "ee678fbba3498a7cb3a53e9c6448ab67", "pid": "1225893461", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Comic"}, {"authorized_access_point": "Erotik (Motiv)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113424097X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh88001850", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh88001850"}], "authorized_access_point": "Erotic comic books, strips, etc."}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113424097X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12262211", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12262211q"}], "authorized_access_point": "Bandes dessinées érotiques"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1225893461", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1225893461", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1225893461", "source": "GND"}], "authorized_access_point": "Erotischer Comic"} 1 +2024-09-11 09:08:55.759738 2024-09-11 09:08:55.759743 ae99061a-2df5-45c8-aece-82338916c313 {"md5": "7b7bdb707bddce5af47849d0999d75b3", "pid": "1219598135", "note": [{"label": ["Anfang des 15. Jahrhunderts aus dem Faustrohr entwickeltes Gewehr mit glattem Lauf und Luntenschloss"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Vorderlader"}, {"authorized_access_point": "Gewehr"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333656866", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF14408507", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb144085074"}], "authorized_access_point": "Arquebuses"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1219598135", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1219598135", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1219598135", "source": "GND"}], "variant_access_point": ["Hakenbüchse"], "authorized_access_point": "Arkebuse"} 1 +2024-09-11 09:08:55.821337 2024-09-11 09:08:55.821341 e8f4e725-3bb2-42bd-a503-e874ad0cb598 {"md5": "520fa8b393b2e9c1d472aac1f04d3841", "pid": "1210456753", "note": [{"label": ["Homepage - https://www.yallaitalia.it"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Weblog"}], "related": [{"authorized_access_point": "Araber"}, {"authorized_access_point": "Islam"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1210456753", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1210456753", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1210456753", "source": "GND"}], "variant_access_point": ["Yalla"], "authorized_access_point": "Yalla Italia"} 1 +2024-09-11 09:08:55.884253 2024-09-11 09:08:55.884258 d68f9e53-0ecd-44ea-8f67-300b7e8ab4b0 {"md5": "b77ead35baab2e9c38cbdc0394b40e27", "pid": "1202575048", "note": [{"label": ["Hauptsächlich vom Bühnenvertrieb und Vereinen hergestelltes Manuskript oder Typoskript, noch nicht veröffentlichter oder noch nicht gespielter Stücke, Stückfassungen oder -übersetzungen.", "Für bereits veröffentlichte Stücke bzw. Werke verwende \\"Theaterstück\\".", "Als Formangabe für die Art des Inhalts als Teil des optionalen Sets für die Darstellende Kunst zugelassen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Drama"}, {"authorized_access_point": "Inszenierung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1202575048", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1202575048", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1202575048", "source": "GND"}], "authorized_access_point": "Bühnenmanuskript"} 1 +2024-09-11 09:08:56.222096 2024-09-11 09:08:56.222099 cfc5253b-130d-445b-993c-e95b58db5c2d {"md5": "0e2f5aee9080c325eff829d4b2d880f9", "pid": "1183863349", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Sonntage_der_Osterzeit&oldid=183677215"], "noteType": "dataSource"}, {"label": ["Zweiter Sonntag nach Ostern."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sonntag"}, {"authorized_access_point": "Osterzeit"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331870097", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15100620", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb151006209"}], "authorized_access_point": "Dimanche de la Divine Miséricorde"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1183863349", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1183863349", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1183863349", "source": "GND"}], "variant_access_point": ["Sonntag nach Ostern 2", "Misericordia", "Misericordias Domini"], "authorized_access_point": "Sonntag der Osterzeit 3"} 1 +2024-09-11 09:08:55.938873 2024-09-11 09:08:55.938876 03231bf6-31f1-436e-986e-de3079045749 {"md5": "9b2c55613975bb8e219b8fbb53cb7e2e", "pid": "1201330661", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Moyamoya&oldid=188131848"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hirngefäßkrankheit"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133799884", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12447412", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12447412r"}], "authorized_access_point": "Maladie de moya-moya"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1282200224", "source": "GND"}, {"type": "bf:Nbn", "value": "D009072", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D009072"}], "authorized_access_point": "Moyamoya Disease"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1201330661", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1201330661", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1201330661", "source": "GND"}], "variant_access_point": ["Moyamoya-Erkrankung", "Moyamoya-Syndrom", "Moya-Moya-Syndrom", "Moyamoya-Angiopathie", "Moyamoya disease", "Cerebrovascular Moyamoya Disease", "Moyamoya Vasculopathy", "MMV"], "authorized_access_point": "Moyamoya-Krankheit"} 1 +2024-09-11 09:08:55.998134 2024-09-11 09:08:55.998138 102cacb7-be9b-4dde-a48a-a38607932dff {"md5": "d93904f7054fb1102ad711b1c80150f5", "pid": "1199404365", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Donaukaulbarsch"], "noteType": "dataSource"}, {"label": ["Im Unterlauf der Donau und deren Nebengewässern lebende endemische Art der Barsche"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Barsche"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333473451", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17805417", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17805417j"}], "authorized_access_point": "Gymnocephalus baloni"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1199404365", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1199404365", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1199404365", "source": "GND"}], "variant_access_point": ["Gymnocephalus baloni"], "authorized_access_point": "Donaukaulbarsch"} 1 +2024-09-11 09:08:56.057868 2024-09-11 09:08:56.057872 77c90f1d-6fe2-41f4-94a7-7f6c4a92ff75 {"md5": "9d0dc9953f357908ac5084ce5432c24e", "pid": "1198723262", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Insulysin&oldid=177216971"], "noteType": "dataSource"}, {"label": ["Den zellulären Abbau von Insulin, Glucagon und anderen Polypeptiden beeinflussendes Enzym"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Endopeptidasen"}, {"authorized_access_point": "Metalloproteinasen"}], "related": [{"authorized_access_point": "Insulinabbau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1198723262", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1198723262", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1198723262", "source": "GND"}], "variant_access_point": ["Insulinase", "Insulin-abbauendes Enzym", "IDE", "Insulin-degrading enzyme", "Insulin protease", "EC 3.4.24.56"], "authorized_access_point": "Insulysin"} 1 +2024-09-11 09:08:56.112166 2024-09-11 09:08:56.112168 40b11670-2e83-4424-921e-5c7c2adbc1ec {"md5": "0b79c07170cf3a0a76315348411d0947", "pid": "1191508781", "note": [{"label": ["Nur f. das Fest; für das Geschehen SW Unbefleckte Empfängnis. Hochfest am 8. Dezember"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Marienfest"}], "related": [{"authorized_access_point": "Unbefleckte Empfängnis"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133870880", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85064510", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85064510"}], "authorized_access_point": "Feast of the Immaculate Conception"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133870880", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13569072", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13569072q"}], "authorized_access_point": "Immaculée Conception (fête)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1191508781", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1191508781", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1191508781", "source": "GND"}], "variant_access_point": ["Empfängnis Mariä (Fest)", "Empfängnis Mariens (Fest)", "Hochfest der ohne Erbsünde empfangenen Jungfrau und Gottesmutter Maria", "Immaculata conceptio Mariae (Fest)", "Immaculata conceptio Beatae Mariae Virginis (Fest)", "Immaculata conceptio B.M.V. (Fest)"], "authorized_access_point": "Mariä Empfängnis (Fest)"} 1 +2024-09-11 09:08:56.169244 2024-09-11 09:08:56.16925 2d154ec8-4760-49eb-a83b-3ee5cdd4e146 {"md5": "2749b4cf608dc9073add32cfcf5be39d", "pid": "1188589024", "note": [{"label": ["Preis für wissenschaftliche Prosa, verliehen von der Deutschen Akademie für Sprache und Dichtung und gefördert von der ENTEGA Stiftung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Preis (Auszeichnung)"}], "related": [{"authorized_access_point": "Wissenschaftliche Literatur"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1188589024", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1188589024", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1188589024", "source": "GND"}], "variant_access_point": ["Sigmund-Freud-Preis für wissenschaftliche Prosa"], "authorized_access_point": "Sigmund-Freud-Preis"} 1 +2024-09-11 09:08:56.280844 2024-09-11 09:08:56.280849 dd0313b1-9df7-4598-a7d0-e189a0a9a304 {"md5": "63aeefbe7a4e620faefe7f637e299ff8", "pid": "1181268311", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Futura (Druckschrift)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1181268311", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1181268311", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1181268311", "source": "GND"}], "variant_access_point": ["Futura medium", "Futura demi-gras", "Futura seminegra", "Futura neretto", "Futura halvfet"], "authorized_access_point": "Futura Halbfett"} 1 +2024-09-11 09:08:56.334455 2024-09-11 09:08:56.33446 50dedbfb-a6c2-4cd8-b89b-396a11fc308f {"md5": "a763db69c4973da9f70563fbaa974fe9", "pid": "1181007100", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Afrikanischer_Knochenz%C3%BCngler", "Wikimedia - https://species.wikimedia.org/wiki/Heterotis_niloticus"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Knochenzünglerähnliche"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333491085", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12038061", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb120380616"}], "authorized_access_point": "Heterotis niloticus"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1181007100", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1181007100", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1181007100", "source": "GND"}], "variant_access_point": ["Heterotis niloticus", "Clupisudis niloticus", "Heterotis adansoni Valenciennes", "Heterotis adansonii", "Heterotis ehrenbergii Valenciennes", "Heterotis nilotica", "Sudis adansonii Cuvier", "Sudis nilotica Cuvier", "Sudis niloticus Cuvier", "Sudis niloticus Rüppell"], "authorized_access_point": "Afrikanischer Knochenzüngler"} 1 +2024-09-11 09:08:56.392383 2024-09-11 09:08:56.392388 d55259c8-8b90-4d71-bfe1-8a8e8a4269c3 {"md5": "467f65b7d0f667e1b00e128a9d848823", "pid": "1173842845", "note": [{"label": ["Das Anbieten oder Liefern von Mitteln zur unbefugten Benutzung einer Erfindung (§ 10 PatG)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Patentverletzung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1173842845", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1173842845", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1173842845", "source": "GND"}], "variant_access_point": ["Indirekte Patentverletzung", "Indirect patent infringement"], "authorized_access_point": "Mittelbare Patentverletzung"} 1 +2024-09-11 09:08:56.451339 2024-09-11 09:08:56.451342 8db658bb-de96-453e-b62b-569560587b99 {"md5": "82dca7df6618f124224deef22211381b", "pid": "1173062238", "note": [{"label": ["Geregelt in §§ 280 Abs. 3, 281-283, 311a Abs. 2 BGB"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schadensersatz"}], "related": [{"authorized_access_point": "Nichterfüllungsschaden"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1173062238", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1173062238", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1173062238", "source": "GND"}], "authorized_access_point": "Schadensersatz statt der Leistung"} 1 +2024-09-11 09:08:56.511636 2024-09-11 09:08:56.511641 6d33e37b-daeb-4f4e-bbd0-dcf0cb12f2c5 {"md5": "31f9056e9c2043f235d6e59ad459f13f", "pid": "1172567794", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Fluiddynamik&oldid=166437703"], "noteType": "dataSource"}, {"label": ["\\"Die Fluiddynamik ist ein Teilgebiet der Strömungslehre und beschäftigt sich mit bewegten Fluiden (Flüssigkeiten und Gasen). Teilgebiet für Gase ist die Aerodynamik, für Flüssigkeiten die Hydrodynamik. Untersucht werden z. B. laminare und turbulente Strömungen in offenen und geschlossenen Gerinnen sowie Bewegungen und Kraftverhältnisse in Druckleitungen.\\" (Wikipedia: Fluiddynamik)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Strömungsmechanik"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333587996", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85049376", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85049376"}], "authorized_access_point": "Fluid dynamics"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333587996", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11931416", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119314166"}], "authorized_access_point": "Fluides, Dynamique des"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1299918271", "source": "GND"}, {"type": "bf:Nbn", "value": "XX4659783", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX4659783"}], "authorized_access_point": "Dinámica de fluidos"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1172567794", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1172567794", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1172567794", "source": "GND"}], "authorized_access_point": "Fluiddynamik"} 1 +2024-09-11 09:08:56.56838 2024-09-11 09:08:56.568382 dff64d8b-ad30-4c8f-ac9d-e98eb2ffb18a {"md5": "1be5140ba878839e5af89d2d14c91e7d", "pid": "1166161722", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1166161722", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1166161722", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1166161722", "source": "GND"}], "authorized_access_point": "Beschwerde (Motiv)"} 1 +2024-09-11 09:08:56.624642 2024-09-11 09:08:56.624646 4a8b6670-effc-4586-abf7-305b6a84d1dc {"md5": "b798e4742d27e65067e5dc6f6051a893", "pid": "1165352362", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tiere"}, {"authorized_access_point": "Zirkus"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113431275X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85026086", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85026086"}], "authorized_access_point": "Circus animals"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113431275X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12403950", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12403950w"}], "authorized_access_point": "Animaux de cirque"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1165352362", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1165352362", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1165352362", "source": "GND"}], "variant_access_point": ["Zirkus"], "authorized_access_point": "Zirkustiere"} 1 +2024-09-11 09:08:56.68695 2024-09-11 09:08:56.686953 bb240ca0-6532-471f-973d-0b7e41670010 {"md5": "65e8105582872c78e2d75a91454e01c6", "pid": "1165347768", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=243277040"], "noteType": "dataSource"}, {"label": ["Begriff zur Kategorisierung von Menschen und transdisziplinäres Studienfeld"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Weiße"}, {"authorized_access_point": "Ethnische Beziehungen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1165347768", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1165347768", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1165347768", "source": "GND"}], "variant_access_point": ["Whiteness", "Kritische Weißseinsforschung", "Critical Whiteness Studies"], "authorized_access_point": "Weißsein"} 1 +2024-09-11 09:08:56.851674 2024-09-11 09:08:56.851678 2d5c43d8-1bce-4037-aafa-33bdfad64ecc {"md5": "4c3e79d29cbf6bc3310bdde34b027367", "pid": "1155851412", "note": [{"label": ["Bezeichnung von literarischen Textsorten, die Merkmale unterschiedlicher Gattungen in sich vereinen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Literaturgattung"}], "related": [{"authorized_access_point": "Gattungstheorie"}, {"authorized_access_point": "Intermedialität"}, {"authorized_access_point": "Intertextualität"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331493722", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17041531", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17041531v"}], "authorized_access_point": "Brouillage générique"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1155851412", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1155851412", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1155851412", "source": "GND"}], "variant_access_point": ["Gattungskontamination", "Gattungsvermischung"], "authorized_access_point": "Hybride Genres"} 1 +2024-09-11 09:08:56.907083 2024-09-11 09:08:56.907086 7d317f60-cd6b-4821-81eb-b030ac7d36b7 {"md5": "27f5ae5f02f884b87c27684f40666ba7", "pid": "1155424573", "note": [{"label": ["Messung der Viskosität von Mehl"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Viskosimeter"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1155424573", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1155424573", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1155424573", "source": "GND"}], "authorized_access_point": "Amylograph"} 1 +2024-09-11 09:08:56.96713 2024-09-11 09:08:56.967135 e3ee11f3-416f-48c1-8d82-3c42abe3a7c9 {"md5": "0d70a8984e13ab8ce17dacbc6a468b56", "pid": "1153834367", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Gezielte_Tötung"], "noteType": "dataSource"}, {"label": ["Die absichtliche, vorsätzliche u. bewusste Tötung von mutmaßlichen Terroristen und anderen nichtstaatlichen Gewaltakteuren durch staatliche Akteure; unter Vorgabe der Rechtmäßigkeit erfolgen die Liquidierungen auch auf fremden Gebiet, zunehmend unter Einsatz unbemannter Fluggeräte, wobei auch Unbeteiligte getötet werden; die Vorgehensweise ist ethisch und juristisch umstritten und wird als Bruch des Völkerrechts angesehen, aber unter westlichen Staaten u. ihren Verbündeten gegenseitig geduldet"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tötung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331566177", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2011002213", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2011002213"}], "authorized_access_point": "Targeted killing"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331566177", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17047512", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb170475121"}], "authorized_access_point": "Assassinat ciblé"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1153834367", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1153834367", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1153834367", "source": "GND"}], "variant_access_point": ["Targeted killing", "Targeted killings", "Assassinat ciblé"], "authorized_access_point": "Gezielte Tötung"} 1 +2024-09-11 09:08:57.024814 2024-09-11 09:08:57.024818 a09e5208-1040-4dd9-84da-adaf05e00ca5 {"md5": "155bf341c7cff419ef496a50727b2d63", "pid": "1150861010", "note": [{"label": ["Berufenet - https://berufenet.arbeitsagentur.de/berufenet/faces/index?path=null/suchergebnisse&such=werbetexter"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Werbetexter"}, {"authorized_access_point": "Werbesprache"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1150861010", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1150861010", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1150861010", "source": "GND"}], "authorized_access_point": "Werbetexterin"} 1 +2024-09-11 09:08:57.086752 2024-09-11 09:08:57.086755 8d768453-5927-42a3-981e-ead8235c1039 {"md5": "3eae990cdf3ab7c5a7119da2c31275a5", "pid": "1145186815", "note": [{"label": ["Wikipedia unter Multispektral - https://de.wikipedia.org/w/index.php?title=Multispektral&oldid=172622311"], "noteType": "dataSource"}, {"label": ["Multispektralkamera ist ein analoges Kamerasystem. Multispektralkameras bestehen aus vier, sechs oder neun auf einem Träger montierten Meßkameras mit genähert gleicher innerer Orientierung. Die Aufnahmeachsen sind exakt parallel ausgerichtet, um eine Kongruenz der aufgenommenen Bilder zu gewährleisten. Die Objektive werden mit verschiedenen Filtern und Filmen (panchromatisch, schwarzweiß, infrarot) kombiniert. Es entstehen von einer Szene geometrisch identische schwarzweiße Fotos, die durch die jeweiligen Film-Filter-Kombinationen unterschiedliche spektrale Inhalte aufzeichnen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mehrkamerasystem"}], "related": [{"authorized_access_point": "Multispektraltechnik"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1145186815", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1145186815", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1145186815", "source": "GND"}], "variant_access_point": ["Multispektrale Kamera", "Multispectral camera"], "authorized_access_point": "Multispektralkamera"} 1 +2024-09-11 09:08:57.147111 2024-09-11 09:08:57.147115 9d5f25f9-c7af-4467-8488-fa30d31f39a8 {"md5": "a7d46e9d8c9e940b0771b97cd206ec31", "pid": "1144301971", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?oldid=944815699"], "noteType": "dataSource"}, {"label": ["Ethnische Gruppe am mittleren Niger, von den marokkanischen und andalusischen Einwanderern des 16. Jh. abstammend."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Songhai-Sprache"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1144301971", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1144301971", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1144301971", "source": "GND"}], "variant_access_point": ["Ruma (Volk)"], "authorized_access_point": "Arma (Volk)"} 1 +2024-09-11 09:08:57.614148 2024-09-11 09:08:57.614152 0a570056-35c7-4315-8dc6-daa7b6bb34e9 {"md5": "4013fda6bf34b398584d17449c021646", "pid": "1116981521", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Werbetexter&oldid=209682870", "Berufenet - https://berufenet.arbeitsagentur.de/berufenet/faces/index?path=null/suchergebnisse&such=werbetexter"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Werbesprache"}, {"authorized_access_point": "Werbetexterin"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1116981521", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1116981521", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1116981521", "source": "GND"}], "authorized_access_point": "Werbetexter"} 1 +2024-09-11 09:08:57.201575 2024-09-11 09:08:57.201582 095e0202-150d-4a0c-aa28-51159c5215fd {"md5": "e3a91c32bb6f982484954fd7785a3fff", "pid": "114005791X", "note": [{"label": ["In der Schweiz ein staatlich angeordneter überkonfessioneller Feiertag, der jeweils am dritten Sonntag im September begangen wird."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Buß- und Bettag"}, {"authorized_access_point": "Feiertag"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331870496", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17157263", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17157263g"}], "authorized_access_point": "Jeûne fédéral"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/114005791X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)114005791X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)114005791X", "source": "GND"}], "variant_access_point": ["Jeûne fédéral", "Digiuno federale", "Rogaziun federala"], "authorized_access_point": "Eidgenössischer Dank-, Buss- und Bettag"} 1 +2024-09-11 09:08:57.258413 2024-09-11 09:08:57.258417 9c865140-bda0-4aed-8122-d2236fb6f36d {"md5": "bb40623c666f36885b1602aca80fea20", "pid": "1139178725", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333487517", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85137512", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85137512"}], "authorized_access_point": "Triglidae"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333487517", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17751355", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17751355q"}], "authorized_access_point": "Triglidés"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1139178725", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1139178725", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1139178725", "source": "GND"}], "variant_access_point": ["Triglidae", "Seehähne"], "authorized_access_point": "Knurrhähne"} 1 +2024-09-11 09:08:57.313672 2024-09-11 09:08:57.313679 a448ad26-f84f-4280-881c-295e3255848f {"md5": "c81ac3844cf8f5df96462ca3d283b0cd", "pid": "1135938261", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Nichtlineare_modellbasierte_pr%C3%A4diktive_Regelung&oldid=182549694"], "noteType": "dataSource"}, {"label": ["Die nichtlineare modellprädiktive Regelung ist eine Methode aus dem Teilgebiet der Kontrolltheorie und Regelungstechnik und wird speziell dazu verwendet, um nichtlineare Prozesse mit Einschränkungen und ohne Linearisierung behandeln zu können."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Modellprädiktive Regelung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1135938261", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1135938261", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1135938261", "source": "GND"}], "variant_access_point": ["Non-Linear Model-Predictive-Control"], "authorized_access_point": "Nichtlineare modellprädiktive Regelung"} 1 +2024-09-11 09:08:57.37718 2024-09-11 09:08:57.377184 f8059d26-7aa2-40d2-a856-70952b44a1ec {"md5": "4bc83dad4cc2c4ff4bfbffacc1241d71", "pid": "1122355092", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Hermitian_manifold&oldid=887773398"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Komplexe Mannigfaltigkeit"}], "related": [{"authorized_access_point": "Riemannscher Raum"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1122355092", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1122355092", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1122355092", "source": "GND"}], "authorized_access_point": "Hermitesche Mannigfaltigkeit"} 1 +2024-09-11 09:08:57.435799 2024-09-11 09:08:57.435803 dbe1ebd4-9298-4728-bc7f-326a69e26880 {"md5": "4153f388b0c68a99ac8c87abd65834e4", "pid": "1121689914", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Tetris&oldid=187895104"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Computerspiel"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331594111", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2019000397", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2019000397"}], "authorized_access_point": "Tetris (Game)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331594111", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16703785", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb167037852"}], "authorized_access_point": "Tetris (jeu vidéo)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1121689914", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1121689914", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1121689914", "source": "GND"}], "authorized_access_point": "Tetris"} 1 +2024-09-11 09:08:57.493745 2024-09-11 09:08:57.493751 174639b8-037a-44ca-aae4-f2c66f5102f6 {"md5": "ddd1eac8cccd275328b7d998c618cc0c", "pid": "1118514823", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Alter (Motiv)"}, {"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1118514823", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1118514823", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1118514823", "source": "GND"}], "variant_access_point": ["Erwachsener (60-80 Jahre, Motiv)", "Alter (60-80 Jahre, Motiv)"], "authorized_access_point": "Älterer Mensch (60-80 Jahre, Motiv)"} 1 +2024-09-11 09:08:57.550665 2024-09-11 09:08:57.550671 9aac1c00-8a74-46e5-8fff-2dfb59fb7075 {"md5": "926b02502dc1983b9b3ca1e99973ec19", "pid": "1117164012", "note": [{"label": ["Digitalisierung der Mobilität, Digitalisierung im Verkehr"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Verkehr"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1117164012", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1117164012", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1117164012", "source": "GND"}], "variant_access_point": ["Mobility 4.0"], "authorized_access_point": "Mobilität 4.0"} 1 +2024-09-11 09:08:57.671939 2024-09-11 09:08:57.671942 513d51de-2e51-4195-a2fe-23cfec79eac7 {"md5": "2ad2e70796bcce51acd158e526a5bd14", "pid": "1115371371", "note": [{"label": ["Debonding occurs when an adhesive stops sticking (adhering) to an adherend or substrate material."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kleben"}, {"authorized_access_point": "Adhäsion"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1115371371", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1115371371", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1115371371", "source": "GND"}], "authorized_access_point": "Debonding"} 1 +2024-09-11 09:08:57.730906 2024-09-11 09:08:57.730909 47e51f40-4117-44ab-8dea-5679d8a916a7 {"md5": "43e2c47fe7b178a089071cc4b8f00a91", "pid": "1099123399", "note": [{"label": ["1932 für den Wettbewerb \\"Europarundflug\\" konstruiert"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sportflugzeug"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1099123399", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1099123399", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1099123399", "source": "GND"}], "variant_access_point": ["M-29", "Messerschmitt M 29", "Me 29"], "authorized_access_point": "M 29"} 1 +2024-09-11 09:08:57.781665 2024-09-11 09:08:57.781669 fccfe1b6-dccc-4fdb-9d1c-1a69eb57165b {"md5": "57aaefd782b422210c7ad3a4dc3f4a6f", "pid": "1081489480", "note": [{"label": ["Digitales Zahlungsmittel"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zahlungsmittel"}, {"authorized_access_point": "Kryptowert"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1136961666", "source": "GND"}, {"type": "bf:Nbn", "value": "30143-2", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/30143-2"}], "authorized_access_point": "Virtuelle Währung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081489480", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081489480", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081489480", "source": "GND"}], "variant_access_point": ["Digitale Währung", "Kryptogeld", "Kryptowährung", "Virtual currency", "Payment Token"], "authorized_access_point": "Virtuelle Währung"} 1 +2024-09-11 09:08:57.834071 2024-09-11 09:08:57.834074 6e10886a-62d8-4f1c-8fac-dd3f86c7ed42 {"md5": "e0b1e16fd04ad08692d32174ba86c0ab", "pid": "1078298378", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Knochenz%C3%BCngler%C3%A4hnliche"], "noteType": "dataSource"}, {"label": ["Kohorte der Echten Knochenfische (Teleostei)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333490674", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17839916", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb178399165"}], "authorized_access_point": "Ostéoglossomorphes"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1078298378", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1078298378", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1078298378", "source": "GND"}], "variant_access_point": ["Osteoglossomorpha"], "authorized_access_point": "Knochenzünglerähnliche"} 1 +2024-09-11 09:08:57.891783 2024-09-11 09:08:57.891787 433a46dc-7b5b-48e4-ba1a-0d05560845dd {"md5": "b01fac1f4240de45d0635205639e6b53", "pid": "107366371X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Hybridkrieg&oldid=223107821"], "noteType": "dataSource"}, {"label": ["Kriegsführung des 21. Jhs.: Operation von Soldaten u. militärischer Ausrüstung ohne Hoheitszeichen auf fremdem Territorium, begleitet von Desinformationskampagnen u. Cyberattacken"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kriegführung"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1217682147", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2016001601", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2016001601"}], "authorized_access_point": "Hybrid warfare"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1217682147", "source": "GND"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb18146328x"}], "authorized_access_point": "Guerre hybride"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/107366371X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)107366371X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)107366371X", "source": "GND"}], "variant_access_point": ["Hybrider Krieg", "Hybride Kriegführung"], "authorized_access_point": "Hybridkrieg"} 1 +2024-09-11 09:08:57.942487 2024-09-11 09:08:57.94249 062f420e-d191-4be7-86e6-10a958d3937e {"md5": "6b0b0a340402b577d220f4d23afc5e0c", "pid": "1073212491", "note": [{"label": ["Homepage - http://doublechooz.in2p3.fr"], "noteType": "dataSource"}, {"label": ["Experiment zur Bestimmung der Umwandlungswahrscheinlichkeit (Mischungswinkel θ13) von Elektronenneutrinos bei Neutrinooszillationen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Teilchendetektor"}], "related": [{"authorized_access_point": "Neutrinooszillation"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1073212491", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1073212491", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1073212491", "source": "GND"}], "variant_access_point": ["Double Chooz", "Double Chooz experiment", "Double-Chooz-Detektor", "Double Chooz detector"], "authorized_access_point": "Double-Chooz-Experiment"} 1 +2024-09-11 09:08:57.997819 2024-09-11 09:08:57.997822 52da2302-4942-402b-b137-c83c5cd903ff {"md5": "6cbf432c93da9cb558e035975dc7e566", "pid": "1072727021", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Personalverwaltung"}, {"authorized_access_point": "Personalentwicklung"}, {"authorized_access_point": "Personalreferent"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1072727021", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1072727021", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1072727021", "source": "GND"}], "authorized_access_point": "Personalreferentin"} 1 +2024-09-11 09:08:58.056794 2024-09-11 09:08:58.056798 1d002243-985a-47ba-9e80-2c9096c4a83b {"md5": "a807b5129735974bf3f293dd939c2f32", "pid": "1072723875", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Personalreferent&oldid=212451022"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Personalentwicklung"}, {"authorized_access_point": "Personalverwaltung"}, {"authorized_access_point": "Personalreferentin"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1072723875", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1072723875", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1072723875", "source": "GND"}], "authorized_access_point": "Personalreferent"} 1 +2024-09-11 09:08:58.123702 2024-09-11 09:08:58.123705 599e331f-5845-4455-9199-1ec65588dbf7 {"md5": "97458cb5d17c7a0d5947f0f5bfffe482", "pid": "107257439X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Musikerin"}], "related": [{"authorized_access_point": "Rapmusiker"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331602416", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2008006704", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2008006704"}], "authorized_access_point": "Women rap musicians"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331602416", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17881108", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17881108f"}], "authorized_access_point": "Rappeuses"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/107257439X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)107257439X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)107257439X", "source": "GND"}], "variant_access_point": ["Rap", "Rapperin"], "authorized_access_point": "Rapmusikerin"} 1 +2024-09-11 09:08:58.178368 2024-09-11 09:08:58.178372 5179d6f8-432d-4d2c-83d5-1f7f9e5c1e15 {"md5": "60c62804fd24d49be7ada019721cae59", "pid": "1070750409", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Kanalkodierung&oldid=243666848#Polar_Codes"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Blockcode"}, {"authorized_access_point": "Fehlerkorrekturcode"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1070750409", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1070750409", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1070750409", "source": "GND"}], "authorized_access_point": "Polar-Code (Codierungstheorie)"} 1 +2024-09-11 09:08:58.234583 2024-09-11 09:08:58.234589 19a07a58-b6bd-44e9-be1f-4dd542d2f932 {"md5": "7692064c6f472f50880008ac1d516e06", "pid": "1069698822", "note": [{"label": ["Überwiegend benutzt im Zusammenhang mit polizeilichen und behördlichen Maßnahmen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Auslese"}, {"authorized_access_point": "Institutioneller Rassismus"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331567602", "source": "GND"}, {"type": "bf:Nbn", "value": "sh00007474", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00007474"}], "authorized_access_point": "Racial profiling in law enforcement"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331567602", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16571541", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16571541h"}], "authorized_access_point": "Profilage ethnique"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1069698822", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1069698822", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1069698822", "source": "GND"}], "variant_access_point": ["Racial Profiling"], "authorized_access_point": "Ethnisches Profiling"} 1 +2024-09-11 09:08:58.288525 2024-09-11 09:08:58.288529 1a5d3d16-da68-4af6-b878-c1c5c81ea642 {"md5": "05a6c3035d4dbccd7ad77c436d2dec70", "pid": "1069336971", "note": [{"label": ["Gender-Medizin ist ein Teilgebiet der Humanmedizin und der personalisierten Medizin und beschäftigt sich mit dem Einfluss von biologischen und soziokulturellen Geschlechteraspekten auf die Prävention, Entstehung, Diagnose, Therapie und Erforschung von Erkrankungen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Individualisierte Medizin"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1069336971", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1069336971", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1069336971", "source": "GND"}], "variant_access_point": ["Geschlechtsspezifische Medizin", "Gender medicine", "Gender-specific medicine"], "authorized_access_point": "Gender-Medizin"} 1 +2024-09-11 09:08:58.348435 2024-09-11 09:08:58.34844 11999e12-0e8f-46c0-890d-3adc872d252e {"md5": "62f4c21cb8807a8c32ee9a42ce924391", "pid": "1068604875", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Computerspiel"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331592720", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2012000023", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2012000023"}], "authorized_access_point": "Minecraft (Game)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331592720", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16737735", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb167377353"}], "authorized_access_point": "Minecraft (jeu vidéo)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1068604875", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1068604875", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1068604875", "source": "GND"}], "authorized_access_point": "Minecraft (Computerspiel)"} 1 +2024-09-11 09:08:58.859471 2024-09-11 09:08:58.859476 cb27762f-7c5e-450a-a122-d3c7cec9008b {"md5": "d2e805a1d8a4a372e6ea98f851c7cb74", "pid": "1063925908", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Chirurg"}], "related": [{"authorized_access_point": "Kieferchirurgie"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1063925908", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1063925908", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1063925908", "source": "GND"}], "authorized_access_point": "Kieferchirurg"} 1 +2024-09-11 09:08:58.411474 2024-09-11 09:08:58.411479 0eeefae1-0fda-4091-bda9-c91e09bf310c {"md5": "dd368f632e905644e747d9c0abe81111", "pid": "1066801789", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Bogolan"], "noteType": "dataSource"}, {"label": ["handgewebte Baumwollstoffe, Produkt einer afrikanischen Web- und Färbetechnik, die ursprünglich in Mali beheimatet ist"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Stoff (Textilien)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332765262", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2001002069", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2001002069"}], "authorized_access_point": "Bogolan cloth"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332765262", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12207632", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12207632r"}], "authorized_access_point": "Bogolan"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1066801789", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1066801789", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1066801789", "source": "GND"}], "variant_access_point": ["Mud Cloth", "Bogolanfini"], "authorized_access_point": "Bogolan"} 1 +2024-09-11 09:08:58.473179 2024-09-11 09:08:58.473183 e935e36e-1592-4b40-8db5-b8bc2e918341 {"md5": "ebf873d9019c9da72daa293bcd4f48a7", "pid": "1064698727", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Radierer"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113386158X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85147529", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85147529"}], "authorized_access_point": "Women engravers"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113386158X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13554116", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb135541163"}], "authorized_access_point": "Graveuses"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1064698727", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1064698727", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1064698727", "source": "GND"}], "authorized_access_point": "Radiererin"} 1 +2024-09-11 09:08:58.529501 2024-09-11 09:08:58.529504 f28fe396-13fb-4b47-b374-b0418e9325e2 {"md5": "5fad01809f1e1c365f4be60bee8e03fe", "pid": "1064281230", "note": [{"label": ["Internet - http://www.lepiforum.de/lepiwiki.pl?Bucculatrix_Ainsliella"], "noteType": "dataSource"}, {"label": ["In den USA verbreitete Mottenart aus der Familie der Bucculatricidae"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motten (Familie)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1064281230", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1064281230", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1064281230", "source": "GND"}], "variant_access_point": ["Bucculatrix ainsliella"], "authorized_access_point": "Roteichen-Zwergwickler"} 1 +2024-09-11 09:08:58.583218 2024-09-11 09:08:58.583223 40ed030d-913e-4a90-86c7-e5e580c5f920 {"md5": "c3bddf1e775d727f460ea2d99a58c9b1", "pid": "1064280692", "note": [{"label": ["Nachtfalter aus der Familie der Eulenfalter"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Eulen (Schmetterlinge)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1064280692", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1064280692", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1064280692", "source": "GND"}], "authorized_access_point": "Thysanoplusia orichalcea"} 1 +2024-09-11 09:08:58.641941 2024-09-11 09:08:58.641945 2082dbb8-960a-475b-a466-5b327c0b5fb7 {"md5": "7e2f7dbfec16f0b7494ffa522fe3a4a9", "pid": "106427546X", "note": [{"label": ["Nachtfalter aus der Familie der Eulenfalter"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Eulen (Schmetterlinge)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/106427546X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)106427546X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)106427546X", "source": "GND"}], "variant_access_point": ["Lamprotes c-aureum"], "authorized_access_point": "Wiesenrauten-Goldeule"} 1 +2024-09-11 09:08:58.695652 2024-09-11 09:08:58.695655 dbfb71fe-961c-4a4d-88a2-40c96bc86ffa {"md5": "3627824ff98d481c9c829803eb2e7b1d", "pid": "1064098363", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Westflämisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1064098363", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1064098363", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1064098363", "source": "GND"}], "variant_access_point": ["Roeselaars"], "authorized_access_point": "Mundart Westflämisch (Roeselare)"} 1 +2024-09-11 09:08:58.748732 2024-09-11 09:08:58.748737 7270bccb-5e12-4479-a937-f525e47cfc72 {"md5": "ea762322027dc143e1a2b7326c4b79fb", "pid": "1063927137", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wissenschaftlerin"}], "related": [{"authorized_access_point": "Managementwissenschaftler"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1063927137", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1063927137", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1063927137", "source": "GND"}], "authorized_access_point": "Managementwissenschaftlerin"} 1 +2024-09-11 09:08:58.805413 2024-09-11 09:08:58.805416 0aa8bd57-e242-4b23-b801-46e445539bdc {"md5": "b3b07181f83b72ca443f4e7a753f6eb9", "pid": "1063927110", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wissenschaftler"}], "related": [{"authorized_access_point": "Managementwissenschaftlerin"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1063927110", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1063927110", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1063927110", "source": "GND"}], "authorized_access_point": "Managementwissenschaftler"} 1 +2024-09-11 09:08:58.916617 2024-09-11 09:08:58.916622 a8c1a039-648f-4ad5-9f69-d9768414eb37 {"md5": "43f311c8737d899cf3d557b9a8b93991", "pid": "1063349230", "note": [{"label": ["Singvogel aus der Familie der Grasmückenartigen (Sylviidae), gehört zur Gattung der Laubsänger (Phylloscopus)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Grasmücken (Familie)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1063349230", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1063349230", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1063349230", "source": "GND"}], "variant_access_point": ["Phylloscopus trochiloides"], "authorized_access_point": "Grünlaubsänger"} 1 +2024-09-11 09:08:58.971326 2024-09-11 09:08:58.97133 2854ad5a-9202-4931-aa41-d002320fba76 {"md5": "9f464356bc55af5ad7adc41b63836acd", "pid": "1062937325", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1062937325", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1062937325", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1062937325", "source": "GND"}], "authorized_access_point": "Eduard-Müller-Krematorium (Hagen, Motiv)"} 1 +2024-09-11 09:08:59.031792 2024-09-11 09:08:59.031797 1819c16c-76df-4920-b01e-e510834e5186 {"md5": "d038c0eca0c833e8db8a3de916015c08", "pid": "1060931796", "note": [{"label": ["Internet - http://www.inboxproject.it/schedacompagnia.php?lang=&id=617"], "noteType": "dataSource"}, {"label": ["Theaterkonzept des Installationskünstlers Paolo Ferrari"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Theater"}], "related": [{"authorized_access_point": "Theater der Grausamkeit"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060931796", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060931796", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060931796", "source": "GND"}], "variant_access_point": ["Teatro dell'Oggetto Mancato", "Teatro dell'O.M.", "T.O.M."], "authorized_access_point": "Teatr'Absentia"} 1 +2024-09-11 09:08:59.086789 2024-09-11 09:08:59.086792 84be58cd-0eb6-4c15-a453-b26a058185c6 {"md5": "f51b57f6db664b8d04dd9d7201b6a31e", "pid": "1060912503", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Westfälisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060912503", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060912503", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060912503", "source": "GND"}], "variant_access_point": ["Vördener Platt"], "authorized_access_point": "Mundart Westfälisch (Marienmünster-Vörden)"} 1 +2024-09-11 09:08:59.14713 2024-09-11 09:08:59.147134 82e2c3d4-dead-488f-9f63-75c309285769 {"md5": "53ea007bfaa55f3f9e97da1ea8fadbee", "pid": "1060909251", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Westfälisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060909251", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060909251", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060909251", "source": "GND"}], "authorized_access_point": "Mundart Westfälisch (Steinhagen, Gütersloh)"} 1 +2024-09-11 09:08:59.207919 2024-09-11 09:08:59.207924 953a696d-c9a2-43ca-b164-1848ed31dac6 {"md5": "e5ee79a78b92ecebba615579f5a42af3", "pid": "1060907534", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Westfälisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060907534", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060907534", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060907534", "source": "GND"}], "variant_access_point": ["Unnaer Platt"], "authorized_access_point": "Mundart Westfälisch (Unna)"} 1 +2024-09-11 09:08:59.277709 2024-09-11 09:08:59.277714 5bbfc7df-c24c-4398-abcd-3e94bd5cab6b {"md5": "b3096f780f5fca05a214676c0a2e4d29", "pid": "1060882345", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Westfälisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060882345", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060882345", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060882345", "source": "GND"}], "authorized_access_point": "Mundart Westfälisch (Reken- Klein Reken)"} 1 +2024-09-11 09:08:59.332938 2024-09-11 09:08:59.332943 5ca29b59-3a78-4d1e-b9b9-ef191f9a3aa3 {"md5": "9ca5fbce202074e0cb5d99a59e84e48d", "pid": "1060882191", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Westfälisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060882191", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060882191", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060882191", "source": "GND"}], "authorized_access_point": "Mundart Westfälisch (Hagen-Hohenlimburg)"} 1 +2024-09-11 09:08:59.386033 2024-09-11 09:08:59.386038 6d28a168-14f9-40c9-8476-00dfb840abff {"md5": "7e3e45d8412292a28816c148eaa67622", "pid": "1060881373", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Westfälisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060881373", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060881373", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060881373", "source": "GND"}], "authorized_access_point": "Mundart Westfälisch (Gronau (Westf.))"} 1 +2024-09-11 09:08:59.438103 2024-09-11 09:08:59.438106 bb86f1c4-c78d-4bb2-8704-824a4c60c967 {"md5": "b5960baa4178b6eb382e03ed3daaf656", "pid": "1060881039", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Westfälisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060881039", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060881039", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060881039", "source": "GND"}], "authorized_access_point": "Mundart Westfälisch (Ahaus-Alstätte)"} 1 +2024-09-11 09:08:59.490087 2024-09-11 09:08:59.490091 e128d96b-3fa5-4fa4-8167-664fefb46d83 {"md5": "7008375508eb09b27ecd6e5662545b3e", "pid": "1060858703", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Westflämisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060858703", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060858703", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060858703", "source": "GND"}], "authorized_access_point": "Mundart Westflämisch (Torhout)"} 1 +2024-09-11 09:08:59.545906 2024-09-11 09:08:59.54591 d2ba9afb-bf27-4d3a-8be7-577289e2a777 {"md5": "a1913e5b5bbace69a3eecf46f830f90e", "pid": "1060811529", "note": [{"label": ["Homepage J. A. Comenius-Stiftung - http://www.comenius-stiftung.de/"], "noteType": "dataSource"}, {"label": ["Seit 1992 an Menschen, die sich in besonderer Weise um die Kinder- und Jugendhilfe verdient gemacht haben, vergebener Preis"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Preis (Auszeichnung)"}], "related": [{"authorized_access_point": "Jugendhilfe"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060811529", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060811529", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060811529", "source": "GND"}], "variant_access_point": ["J.-A.-Comenius-Preis"], "authorized_access_point": "Comenius-Preis"} 1 +2024-09-11 09:08:59.60712 2024-09-11 09:08:59.607124 54a45773-f9d4-4c04-ac0c-38e509ef6eb4 {"md5": "f1a8666b4237c7ba31fb20f250cb05dd", "pid": "1060804263", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Westfälisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060804263", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060804263", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060804263", "source": "GND"}], "variant_access_point": ["Osnabrücker Platt"], "authorized_access_point": "Mundart Westfälisch (Osnabrücker Land)"} 1 +2024-09-11 09:08:59.661412 2024-09-11 09:08:59.661415 7674aad0-7049-471d-9d45-98f8b9414976 {"md5": "f1119d0ec47663e363498d95c32de90f", "pid": "1060778947", "note": [{"label": ["Internet - http://species.wikimedia.org/wiki/Varanus_macraei", "Internet - http://reptile-database.reptarium.cz/species?genus=Varanus&species=macraei&search_param=%28%28search%3D%27varanus+macraei%27%29%29"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Warane"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060778947", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060778947", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060778947", "source": "GND"}], "variant_access_point": ["Varanus macraei", "Blaugefleckter Baumwaran", "MacRae's Waran"], "authorized_access_point": "Blauer Baumwaran"} 1 +2024-09-11 09:08:59.716936 2024-09-11 09:08:59.716941 9af7d325-be7b-4898-80c3-945fc0bf649a {"md5": "96b2ab44f2d0e39388b41d0f7025e151", "pid": "1060674483", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060674483", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060674483", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060674483", "source": "GND"}], "authorized_access_point": "Frechheit (Motiv)"} 1 +2024-09-11 09:08:59.773738 2024-09-11 09:08:59.773742 791a4b30-bc25-4866-ad4e-a7994d6fdd46 {"md5": "13e5f4dc84fddf9d4e502cc3e600a7e7", "pid": "1060581957", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Mundart Mittelitalienisch (Marken)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060581957", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060581957", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060581957", "source": "GND"}], "authorized_access_point": "Mundart Mittelitalienisch, Marken (San Severino Marche)"} 1 +2024-09-11 09:08:59.827937 2024-09-11 09:08:59.827942 6b01307d-67ee-41a0-b2a0-06adb1be13b5 {"md5": "2758859678bebcb211615e1a33250a79", "pid": "1060577895", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Sizilianisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060577895", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060577895", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060577895", "source": "GND"}], "authorized_access_point": "Mundart Sizilianisch (Lentini)"} 1 +2024-09-11 09:08:59.888559 2024-09-11 09:08:59.888562 eaf4c6cd-e48d-4bda-a168-a34d9836ac02 {"md5": "3fefcfcd42efafdf518d2559d6d8d1c4", "pid": "106057683X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Burgundisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/106057683X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)106057683X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)106057683X", "source": "GND"}], "authorized_access_point": "Mundart Burgundisch (Puisaye)"} 1 +2024-09-11 09:08:59.940224 2024-09-11 09:08:59.940227 f4d863f0-7e5a-48d1-a30b-059a2bf6632e {"md5": "cab432db595df57401ef652f6bff8400", "pid": "1060521229", "note": [{"label": ["DWDS - https://www.dwds.de/wb/Koordinator"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Koordinator"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060521229", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060521229", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060521229", "source": "GND"}], "authorized_access_point": "Koordinatorin"} 1 +2024-09-11 09:08:59.995106 2024-09-11 09:08:59.995109 2d8ecaae-57f9-4fd0-8811-581dde311dfd {"md5": "39a6ff727f431b34b3e2cd4844cf8ed6", "pid": "1060471329", "note": [{"label": ["Homepage - http://www.sdl.com/products/sdl-trados-studio/", "Wikipedia - http://de.wikipedia.org/wiki/SDL_Trados#SDL_Trados_Studio_2014"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Übersetzungsspeicher"}, {"authorized_access_point": "Computerunterstützte Übersetzung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060471329", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060471329", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060471329", "source": "GND"}], "authorized_access_point": "SDL Trados Studio 2014"} 1 +2024-09-11 09:09:00.050734 2024-09-11 09:09:00.050739 e88909c5-b1d6-4243-8bad-e54316ec8358 {"md5": "0ff5d8738bb9b95cc31197cc3b282a50", "pid": "1060399172", "note": [{"label": ["Homepage - http://www.severinsbuergerpreis.de/"], "noteType": "dataSource"}, {"label": ["Seit 1984 jährlich verliehener Preis für Personen oder Institutionen, die sich in besonderem Maße um kölnische Sprache, Kultur und Lebensart sowie kölnisches Brauchtum verdient gemacht haben"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kulturpreis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060399172", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060399172", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060399172", "source": "GND"}], "variant_access_point": ["Severins-Bürgerpreis", "Severinsbürgerpreis"], "authorized_access_point": "SeverinsBürgerpreis"} 1 +2024-09-11 09:09:00.10322 2024-09-11 09:09:00.103225 ef11b4a6-d626-4544-a7fd-eedf8554d129 {"md5": "4d10929df36dd7950b6ea76d239da791", "pid": "1060358328", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060358328", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060358328", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060358328", "source": "GND"}], "authorized_access_point": "Verwandtenehe (Motiv)"} 1 +2024-09-11 09:09:00.160121 2024-09-11 09:09:00.160125 99c84c71-c628-46b8-b70c-ed7c1de09725 {"md5": "ae72701b002a5a903770200dd534a44c", "pid": "106013411X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Italienisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/106013411X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)106013411X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)106013411X", "source": "GND"}], "authorized_access_point": "Mundart Italienisch (San Severino Marche)"} 1 +2024-09-11 09:09:00.219995 2024-09-11 09:09:00.219998 0d252a41-8ae2-45b5-b74b-2facf3799cbc {"md5": "17fcb586f00d191c9762af5e7accbab9", "pid": "1060114909", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060114909", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060114909", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060114909", "source": "GND"}], "authorized_access_point": "Senn (Motiv)"} 1 +2024-09-11 09:09:00.27433 2024-09-11 09:09:00.274334 60c81d1d-ae84-45d3-ab1f-077c41928789 {"md5": "7037a066f5a0e7ca1df70d3f99b3669d", "pid": "1060090236", "note": [{"label": ["Maß für die relative Härte, die Bleichbarkeit und den Aufschlussgrad von Zellstoffen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zahlenwert"}, {"authorized_access_point": "Zellstoff"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060090236", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060090236", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060090236", "source": "GND"}], "variant_access_point": ["Kappazahl", "Kappa number"], "authorized_access_point": "Kappa-Zahl"} 1 +2024-09-11 09:09:00.326444 2024-09-11 09:09:00.326449 20254ba7-4fd8-4c64-8dff-858f81b4f3ae {"md5": "620436e0c1d4fe2d936772c38bcfe32f", "pid": "1060077914", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060077914", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060077914", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060077914", "source": "GND"}], "authorized_access_point": "Pandemie (Motiv)"} 1 +2024-09-11 09:09:00.382969 2024-09-11 09:09:00.382974 71b8da1e-5589-4650-95e3-3fe22aeb8eb1 {"md5": "68bc0f6cf85297f1df8d6e3c9c1f6cf9", "pid": "1060077817", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060077817", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060077817", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060077817", "source": "GND"}], "authorized_access_point": "Grippe (Motiv)"} 1 +2024-09-11 09:09:00.438329 2024-09-11 09:09:00.438333 7b539cc7-1021-4ead-85f0-5bdcaf33d7dd {"md5": "7579ed9f84a60c6325fdae3f13ce28db", "pid": "1059889455", "note": [{"label": ["Wikipedia - http://en.wikipedia.org"], "noteType": "dataSource"}, {"label": ["Selbstorganisierende Modellmembran aus einem kleinen Lipiddoppelschicht-Fragment und zwei Kopien eines amphipathischen Gerüstproteins; Nanodiscs eignen sich zur funktionellen Rekonstitution und Solubilisierung zahlreicher integraler Membranproteine"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Nanobiotechnologie"}, {"authorized_access_point": "Phospholipidmembran"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059889455", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059889455", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059889455", "source": "GND"}], "variant_access_point": ["Nanodisk", "Nano-Disc", "Nano-Disk"], "authorized_access_point": "Nanodisc"} 1 +2024-09-11 09:09:00.493991 2024-09-11 09:09:00.493997 e90e49a2-5c9a-4090-85a7-cd3474cd1ddf {"md5": "7888ff47cc250de324cd2ef82fb69ca0", "pid": "1059823527", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Vokalmusik"}, {"authorized_access_point": "Advent"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059823527", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059823527", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059823527", "source": "GND"}], "authorized_access_point": "Adventssingen"} 1 +2024-09-11 09:09:00.548451 2024-09-11 09:09:00.548456 7870e91b-0b2f-44d2-9abc-3079d1cc25f8 {"md5": "a9026d24ceb026d3e16d2e94ec07ba09", "pid": "1059732483", "note": [{"label": ["Flugschrauber, ein Prototyp steht heute im Musée de l’air et de l’espace in Le Bourget bei Paris"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hubschrauber"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059732483", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059732483", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059732483", "source": "GND"}], "variant_access_point": ["X³", "X3", "Eurocopter X3", "X 3", "Highspeed-Hybrid-Helicopter", "H3"], "authorized_access_point": "Eurocopter X³"} 1 +2024-09-11 09:09:00.604527 2024-09-11 09:09:00.604532 530dcdd0-d6d6-4db8-9013-b0f431ff9e07 {"md5": "574ddc7c96fc86582a3d8075c341dc74", "pid": "105962091X", "note": [{"label": ["Seelenhaltung der Melancholie u. Traurigkeit in der türkischen Kultur"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Melancholie"}, {"authorized_access_point": "Traurigkeit"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/105962091X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)105962091X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)105962091X", "source": "GND"}], "authorized_access_point": "Hüzün"} 1 +2024-09-11 09:09:00.67949 2024-09-11 09:09:00.679494 e1d2d40f-ce38-48c2-a2b0-985169facca0 {"md5": "853759904c27393f1ec562dd12dfa546", "pid": "105960552X", "note": [{"label": ["Seelenhaltung der Traurigkeit und des Bedauerns in der tschechischen Kultur"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Traurigkeit"}, {"authorized_access_point": "Reue"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/105960552X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)105960552X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)105960552X", "source": "GND"}], "authorized_access_point": "Lítost"} 1 +2024-09-11 09:09:00.752297 2024-09-11 09:09:00.752302 d6452fbd-d83b-4d86-9721-1307df848433 {"md5": "71f1585fb8956c7545b4a4bc1f675450", "pid": "1059558653", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Spieleautor"], "noteType": "dataSource"}, {"label": ["Spieleautoren erfinden und entwickeln Gesellschaftsspiele."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Autor"}], "related": [{"authorized_access_point": "Spieleautorin"}, {"authorized_access_point": "Gesellschaftsspiel"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059558653", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059558653", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059558653", "source": "GND"}], "variant_access_point": ["Spiele-Autor"], "authorized_access_point": "Spieleautor"} 1 +2024-09-11 09:09:00.81872 2024-09-11 09:09:00.818726 20c6b856-3e76-4e06-a1ac-61a2e0225f13 {"md5": "b35b092108e20b3a225fc16b697371c6", "pid": "1059464667", "note": [{"label": ["Untergattung d. Familie d. Laufkäfer"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Laufkäfer"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059464667", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059464667", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059464667", "source": "GND"}], "authorized_access_point": "Carabus apotomopterus"} 1 +2024-09-11 09:09:00.889986 2024-09-11 09:09:00.889991 cbf4a92e-cbb9-410e-8861-2d47f8295be0 {"md5": "2f3c4e55f1ae14fa6ebea1ecebe75acc", "pid": "1059463385", "note": [{"label": ["Waage zur Kontrolle des gleichmäßigen Gewichts von Zentrifugenröhrchen, bis Mitte des 20. Jh. in Gebrauch"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Waage"}, {"authorized_access_point": "Laborgerät"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059463385", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059463385", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059463385", "source": "GND"}], "authorized_access_point": "Zentrifugenwaage"} 1 +2024-09-11 09:09:00.956776 2024-09-11 09:09:00.956781 78a71bc2-522b-435c-a1cd-1da4d162e860 {"md5": "c45ce63a15fe31b0a510e41ed516634a", "pid": "1059408058", "note": [{"label": ["Familie d. Schwanzlurche"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059408058", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059408058", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059408058", "source": "GND"}], "variant_access_point": ["Cryptobranchidae"], "authorized_access_point": "Riesensalamander"} 1 +2024-09-11 09:09:01.026543 2024-09-11 09:09:01.026549 1883b8b9-2fff-4aff-8a04-449ec39b66a3 {"md5": "bf625233abe4476df9638943da2b1dfa", "pid": "1059388502", "note": [{"label": ["Entfernen von Fibrinogen aus Blut oder Plasma durch Überführen in Fibrin"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fibrinogen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059388502", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059388502", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059388502", "source": "GND"}], "variant_access_point": ["Defibrinieren"], "authorized_access_point": "Defibrinierung"} 1 +2024-09-11 09:09:01.097679 2024-09-11 09:09:01.097683 68f77424-bb3f-474f-92ae-1c2e15781f1f {"md5": "1d8043095743649302c270de9a519732", "pid": "1059388499", "note": [{"label": ["Monospezif. Gattung aus d. Familie d. Riesensalamander"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Riesensalamander"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059388499", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059388499", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059388499", "source": "GND"}], "variant_access_point": ["Cryptobranchus alleganiensis", "Hellbender"], "authorized_access_point": "Schlammteufel"} 1 +2024-09-11 09:09:01.161965 2024-09-11 09:09:01.16197 c8fc25f0-bc57-4def-b6d2-eddfa1465b59 {"md5": "18894f1714603d720da5d460ded85153", "pid": "1059388464", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tragflügel"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059388464", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059388464", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059388464", "source": "GND"}], "authorized_access_point": "Schlagflügel"} 1 +2024-09-11 09:09:01.226725 2024-09-11 09:09:01.226729 032338fa-2bc8-488d-ba5b-68cf9901481b {"md5": "3a8695d3ffda9079f8a6562910e1c79e", "pid": "1059384434", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Raumsonde"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059384434", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059384434", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059384434", "source": "GND"}], "authorized_access_point": "Pioneer 11"} 1 +2024-09-11 09:09:01.357345 2024-09-11 09:09:01.357348 612714cb-cac1-4edb-b7b6-be1d575ddf75 {"md5": "1f5404925075efb9c73272953dc505cc", "pid": "1059323001", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Armleuchteralgen (Familie)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059323001", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059323001", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059323001", "source": "GND"}], "variant_access_point": ["Zarteste Glanzleuchteralge", "Nitella tenuissima"], "authorized_access_point": "Schirmförmige Glanzleuchteralge"} 1 +2024-09-11 09:09:01.411701 2024-09-11 09:09:01.411704 3650b77c-1061-4bf4-ba1b-854997b8c2e9 {"md5": "d124700a6a3f1d6eb9fa349b054ac091", "pid": "1059271745", "note": [{"label": ["Art d. Familie d. Canidae"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hundeartige"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059271745", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059271745", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059271745", "source": "GND"}], "variant_access_point": ["Canis aureus"], "authorized_access_point": "Goldschakal"} 1 +2024-09-11 09:09:01.470742 2024-09-11 09:09:01.470748 02d9c99b-b82d-4eda-8d52-b43b2a2f280b {"md5": "29123a745e5c137cc6c19fb295c887d4", "pid": "1059254697", "note": [{"label": ["Homepage - http://www.canon.de/For_Home/Product_Finder/Cameras/Digital_SLR/EOS_1200D/discover/"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Spiegelreflexkamera"}, {"authorized_access_point": "Digitalkamera"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059254697", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059254697", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059254697", "source": "GND"}], "authorized_access_point": "Canon EOS 1200D"} 1 +2024-09-11 09:09:01.532201 2024-09-11 09:09:01.532203 e16a5154-4575-4413-bd48-27796c5a6c8e {"md5": "a9c35553dfcb2d8c8965a509f86d9e06", "pid": "1059254646", "note": [{"label": ["Homepage - http://www.nikon.de/de_DE/product/digital-cameras/slr/consumer/d3300"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Spiegelreflexkamera"}, {"authorized_access_point": "Digitalkamera"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059254646", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059254646", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059254646", "source": "GND"}], "authorized_access_point": "Nikon D3300"} 1 +2024-09-11 09:09:01.591316 2024-09-11 09:09:01.591321 c09d15ad-d833-4358-8eaf-1eab800a1ce2 {"md5": "fa551a9328a2552e96261cf10a816228", "pid": "1059226529", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Büroberuf"}], "related": [{"authorized_access_point": "Steuerfachangestellter"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059226529", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059226529", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059226529", "source": "GND"}], "variant_access_point": ["Steuerfachgehilfin", "Fachgehilfin in steuer- und wirtschaftsberatenden Berufen", "Steuergehilfin", "Weibliche Fachangestellte für steuer- und wirtschaftsberatende Berufe"], "authorized_access_point": "Weibliche Steuerfachangestellte"} 1 +2024-09-11 09:09:01.650288 2024-09-11 09:09:01.650293 86603140-d531-482e-8370-aca4de884103 {"md5": "8498e13dd9dba90b76997aa3b8502a7e", "pid": "1059152312", "note": [{"label": ["Wikipedia als ÖBB 2048 - https://de.wikipedia.org/wiki/%C3%96BB_2048"], "noteType": "dataSource"}, {"label": ["österr. Diesellokomotive", "Die Baureihe entstand ab 1991 durch Umbau aus DB Reihe 211 (vormals V 100)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Diesellokomotive"}], "related": [{"authorized_access_point": "Diesellokomotive Baureihe V 100"}, {"authorized_access_point": "Diesellokomotive Baureihe 211"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059152312", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059152312", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059152312", "source": "GND"}], "variant_access_point": ["ÖBB 2048"], "authorized_access_point": "Diesellokomotive Baureihe 2048"} 1 +2024-09-11 09:09:01.70576 2024-09-11 09:09:01.705763 e17aa80c-1ed2-4b73-af3f-28800e0fb1b5 {"md5": "ba1e52512db6647dbb86a022021b9502", "pid": "1059103257", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059103257", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059103257", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059103257", "source": "GND"}], "variant_access_point": ["Maitresse (Motiv)"], "authorized_access_point": "Mätresse (Motiv)"} 1 +2024-09-11 09:09:01.761227 2024-09-11 09:09:01.76123 55c33211-4b35-4da0-8dce-35f9193e6a5f {"md5": "8e078f4919362ce52d2afc4018077377", "pid": "1059090767", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Graswurzel-Journalismus&oldid=195160241"], "noteType": "dataSource"}, {"label": ["Journalismus, in dem Bürger eine aktive Rolle im Prozess der Recherche, des Berichtens, des Analysierens sowie des Verbreitens von Nachrichten und Informationen einnehmen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Journalismus"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1219100331", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2009003468", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2009003468"}], "authorized_access_point": "Citizen journalism"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1219100331", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15619301", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15619301f"}], "authorized_access_point": "Journalisme participatif"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059090767", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059090767", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059090767", "source": "GND"}], "variant_access_point": ["Bürger-Journalismus", "Partizipativer Journalismus", "Citizen journalism"], "authorized_access_point": "Graswurzel-Journalismus"} 1 +2024-09-11 09:09:01.818154 2024-09-11 09:09:01.818159 146033db-7f32-4d42-8a10-2d045d77a175 {"md5": "15ae84129a63a86c5bbc837600234c06", "pid": "1059087871", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Family_literacy&oldid=1070312475"], "noteType": "dataSource"}, {"label": ["Generationsübergreifender Lernansatz zur Förderung von Schriftsprachkompetenz"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bildungsförderung"}, {"authorized_access_point": "Alphabetisierung"}], "related": [{"authorized_access_point": "Schreib- und Lesefähigkeit"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059087871", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059087871", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059087871", "source": "GND"}], "authorized_access_point": "Family Literacy"} 1 +2024-09-11 09:09:01.874446 2024-09-11 09:09:01.87445 84d0f6da-614a-44f4-afcb-4bdef25c23f6 {"md5": "2a2cfb38e5d7fa71c0f6100ddc92ed62", "pid": "1058986295", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sazspiel"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058986295", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058986295", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058986295", "source": "GND"}], "variant_access_point": ["Bağlama", "Langhalslaute"], "authorized_access_point": "Bağlamaspiel"} 1 +2024-09-11 09:09:01.928298 2024-09-11 09:09:01.928302 1f027a04-cddd-4dcf-9dba-59c0d82ad700 {"md5": "68a70afb620e89e113ded448bf8e280d", "pid": "105896920X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Theodolit"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/105896920X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)105896920X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)105896920X", "source": "GND"}], "authorized_access_point": "Kreiseltheodolit"} 1 +2024-09-11 09:09:01.982589 2024-09-11 09:09:01.982592 9f50422f-1b93-40a9-ab1e-6615db37024b {"md5": "9b3978e33c7b50b1e99a5429b34c7ce7", "pid": "1058846361", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Elektrolokomotive"}, {"authorized_access_point": "Schmalspurlokomotive"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058846361", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058846361", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058846361", "source": "GND"}], "variant_access_point": ["Ge 4/6", "Gebirgslokomotive 4/6"], "authorized_access_point": "RhB Ge 4/6"} 1 +2024-09-11 09:09:02.044864 2024-09-11 09:09:02.044869 b16bcca0-9864-43cd-a869-f10d2bb7fba6 {"md5": "dad1977d8f748e64a3e8ed84c65bdc18", "pid": "1058723790", "note": [{"label": ["Meist dünnes, mit bunten Motiven bedrucktes Papier, in das Orangen eingewickelt zum Verkauf angeboten werden; als Sammelobjekt beliebt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Papierverpackung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058723790", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058723790", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058723790", "source": "GND"}], "authorized_access_point": "Orangenpapier"} 1 +2024-09-11 09:09:02.10755 2024-09-11 09:09:02.107556 4a216fc2-e683-4f0f-a6b3-aeea7c0e4b11 {"md5": "3de55bd1b038f880426d2153e80bdb0c", "pid": "1058674900", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Holzeinschlag"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058674900", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058674900", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058674900", "source": "GND"}], "variant_access_point": ["Hiebsatz", "Nutzungssatz", "Abnutzungssatz"], "authorized_access_point": "Hiebssatz"} 1 +2024-09-11 09:09:02.16494 2024-09-11 09:09:02.164945 871bd9c4-96e1-4242-aab2-9cfb30ced46b {"md5": "be71cab0e6ff7376a7eb1b88249276b5", "pid": "1058669559", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/PZL_P.11"], "noteType": "dataSource"}, {"label": ["1931-1939 von den staatlichen polnischen Flugzeugwerken (PZL) in mehreren Serien gebautes Jagdflugzeug; bei Ausbruch des Zweiten Weltkrieges Standardjäger der polnischen Luftwaffe."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Jagdflugzeug"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058669559", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058669559", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058669559", "source": "GND"}], "variant_access_point": ["P.11 (Jagdflugzeug)"], "authorized_access_point": "PZL P.11"} 1 +2024-09-11 09:09:02.225306 2024-09-11 09:09:02.225311 8bff7de8-bc83-4153-85e8-5e9d81a9a214 {"md5": "8d68b09b370169d579bea6b6c093bf57", "pid": "105862394X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Elektroniker"}], "related": [{"authorized_access_point": "Radar"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/105862394X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)105862394X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)105862394X", "source": "GND"}], "variant_access_point": ["Radartechniker", "Flugsicherungs-Radartechniker"], "authorized_access_point": "Radarelektroniker"} 1 +2024-09-11 09:09:02.28008 2024-09-11 09:09:02.280084 fcf2311c-3653-46be-8513-e6d014bc5758 {"md5": "0e594e1eb8662f1ffab98a22d46d0f02", "pid": "1058513710", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Sizilianisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058513710", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058513710", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058513710", "source": "GND"}], "authorized_access_point": "Mundart Sizilianisch (Pachino)"} 1 +2024-09-11 09:09:03.655245 2024-09-11 09:09:03.655248 4e058cfc-325c-4fd7-bb84-4b7c8447102e {"md5": "fd9fed7c88ef6722abb17d6c6b2dc274", "pid": "1037919874", "note": [{"label": ["Internet - http://www.menantes-wandersleben.de/litpreis.html"], "noteType": "dataSource"}, {"label": ["Seit 2006 alle zwei Jahre vom Menantes-Förderkreis und Ev. Kirchengemeinde Wandersleben vergebener Literaturpreis"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Literaturpreis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1037919874", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1037919874", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1037919874", "source": "GND"}], "variant_access_point": ["Menantes-Preis", "Menantes-Preis für erotische Literatur"], "authorized_access_point": "Menantes-Preis für erotische Dichtung"} 1 +2024-09-11 09:09:02.334926 2024-09-11 09:09:02.334929 59180b54-6da2-43c2-90a1-79a5a2fb3909 {"md5": "0e0d92ddbc5deb0266b4bbd65aaaf62d", "pid": "1058507044", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Ethnolekt&oldid=193420767"], "noteType": "dataSource"}, {"label": ["Sammelbegriff für sprachliche Varianten bzw. Sprechstile, die von Sprechern einer ethnischen (eigentlich: sprachlichen) Minderheit in einem bestimmten Sprachraum verwendet und als für sie typisch eingestuft werden"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Soziolinguistik"}], "related": [{"authorized_access_point": "Dialekt (Verhaltensforschung)"}, {"authorized_access_point": "Soziolekt"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058507044", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058507044", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058507044", "source": "GND"}], "authorized_access_point": "Ethnolekt"} 1 +2024-09-11 09:09:02.393525 2024-09-11 09:09:02.393528 a1d21c15-1723-4db4-9157-fb5423c4426a {"md5": "fec990af264ad90b7b340e9e5702e8da", "pid": "1058389041", "note": [{"label": ["Ordnung der Braunalgen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058389041", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058389041", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058389041", "source": "GND"}], "authorized_access_point": "Tilopteridales"} 1 +2024-09-11 09:09:02.449687 2024-09-11 09:09:02.44969 415ea904-e53f-48a0-b111-0a900d595d28 {"md5": "3a48803f0095f4bafc4d06ef28b62e51", "pid": "1058382799", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Westfälisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058382799", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058382799", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058382799", "source": "GND"}], "variant_access_point": ["Almer Platt"], "authorized_access_point": "Mundart Westfälisch (Brilon-Alme)"} 1 +2024-09-11 09:09:02.50384 2024-09-11 09:09:02.503847 1227bb0a-d0c7-4a33-93ea-cbd03330197d {"md5": "786668fb78bd73815f9b84e68f25e86a", "pid": "1058371266", "note": [{"label": ["5-teiliger antiker Versfuß"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Versfuß"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058371266", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058371266", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058371266", "source": "GND"}], "authorized_access_point": "Dochmius"} 1 +2024-09-11 09:09:02.561547 2024-09-11 09:09:02.561552 9257ccb9-e22b-4f35-abcc-a484f1faa391 {"md5": "a723f7bf8c90f4d7ce2d9713abdb9811", "pid": "1058370677", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058370677", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058370677", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058370677", "source": "GND"}], "authorized_access_point": "Castrop-Rauxel (Motiv)"} 1 +2024-09-11 09:09:02.614591 2024-09-11 09:09:02.614594 5153fba1-6250-466a-bdad-950312cc572f {"md5": "6f405e5259f23afd1bb47b209e737aad", "pid": "1058284371", "note": [{"label": ["Kombiniere mit Sprachbezeichnung und SW Morphem, z. B. SWW Altenglisch ; Morphem ; oht"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058284371", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058284371", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058284371", "source": "GND"}], "authorized_access_point": "oht"} 1 +2024-09-11 09:09:02.669234 2024-09-11 09:09:02.66924 f9430512-db9a-4807-8008-e59b0dc07f56 {"md5": "d4027af298ae717ed0d000761dbff3db", "pid": "1058284304", "note": [{"label": ["Kombiniere mit Sprachbezeichnung und SW Morphem, z. B. SWW Altenglisch ; Morphem ; aht, Morphem"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058284304", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058284304", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058284304", "source": "GND"}], "authorized_access_point": "aht (Morphem)"} 1 +2024-09-11 09:09:02.724659 2024-09-11 09:09:02.724663 99952616-0bf9-4b58-9688-5e41284d65db {"md5": "85b00a92812766f0d2297d1a6eda4d44", "pid": "1058284096", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Roter Riese"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058284096", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058284096", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058284096", "source": "GND"}], "authorized_access_point": "OH/IR-Stern"} 1 +2024-09-11 09:09:02.779937 2024-09-11 09:09:02.77994 18a70d87-d947-4281-87f1-24b712b3a7d6 {"md5": "b18dea8ba973d110d44e2b2785616e95", "pid": "1058280910", "note": [{"label": ["Kombiniere mit Sprachbezeichnung und Wortart, z.B. SWW Mittelhochdeutsch ; Adjektiv ; saelic"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058280910", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058280910", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058280910", "source": "GND"}], "authorized_access_point": "saelic"} 1 +2024-09-11 09:09:02.835755 2024-09-11 09:09:02.83576 ec3d768e-ec64-42fa-b176-6f563ad86655 {"md5": "f570b2838cbe3cbe3ed3248061fe93d4", "pid": "1058249436", "note": [{"label": ["Benutzt für Tiere"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bein"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058249436", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058249436", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058249436", "source": "GND"}], "variant_access_point": ["Hinterlauf"], "authorized_access_point": "Hinterbein"} 1 +2024-09-11 09:09:02.889039 2024-09-11 09:09:02.889042 7bfafca1-cff7-4e0a-8372-cf77359919d0 {"md5": "beaf5131c9f7ecef6a218bb7426470b0", "pid": "1058206753", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Gegisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058206753", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058206753", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058206753", "source": "GND"}], "variant_access_point": ["Petreshticër Albanisch"], "authorized_access_point": "Mundart Albanisch (Petreshticë)"} 1 +2024-09-11 09:09:02.94391 2024-09-11 09:09:02.943915 cea5a4ad-c66e-4e88-bfcb-de8735020dab {"md5": "7aae1390443bc9c79b702f20833e00ab", "pid": "1058118161", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Musikerin"}], "related": [{"authorized_access_point": "Bluesmusiker"}, {"authorized_access_point": "Blues"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331602610", "source": "GND"}, {"type": "bf:Nbn", "value": "sh96006944", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh96006944"}], "authorized_access_point": "Women blues musicians"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331602610", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16619055", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16619055p"}], "authorized_access_point": "Musiciennes de blues"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058118161", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058118161", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058118161", "source": "GND"}], "authorized_access_point": "Bluesmusikerin"} 1 +2024-09-11 09:09:02.999179 2024-09-11 09:09:02.999184 d74ebe90-3ac9-4cbc-8ace-426f1b07aa6a {"md5": "84c4d76ccaf32de675ae112f00b05055", "pid": "1055857745", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Gaskonisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1055857745", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1055857745", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1055857745", "source": "GND"}], "authorized_access_point": "Mundart Gaskonisch (Entre-deux-Mers)"} 1 +2024-09-11 09:09:03.056663 2024-09-11 09:09:03.056666 b8a697af-d802-4bac-8efb-50f7915b4379 {"md5": "8229c7a12707ea1f68b964b63d987952", "pid": "1054037531", "note": [{"label": ["Sammelbezeichnung für Reisen mit geistlichen, religiösen oder kirchlichen Inhalten"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tourismus"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332366457", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2021007042", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2021007042"}], "authorized_access_point": "Spiritual tourism"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332366457", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12323007", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12323007h"}], "authorized_access_point": "Tourisme spirituel"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1054037531", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1054037531", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1054037531", "source": "GND"}], "variant_access_point": ["Religiöser Tourismus"], "authorized_access_point": "Spiritueller Tourismus"} 1 +2024-09-11 09:09:03.114065 2024-09-11 09:09:03.114068 19213dfc-e3a5-439b-b750-ac1060ec3399 {"md5": "6bc464c47e581708c377e902fbec1eb8", "pid": "1052970427", "note": [{"label": ["Raum, Kabine für den Projektor in einem Kino"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Kino"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1052970427", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1052970427", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1052970427", "source": "GND"}], "variant_access_point": ["Filmvorführraum", "Vorführraum", "Projektionskabine"], "authorized_access_point": "Projektionsraum (Kino)"} 1 +2024-09-11 09:09:03.165954 2024-09-11 09:09:03.16596 f5ffd250-44a2-45a0-aa8d-4eedccc80074 {"md5": "89afa3191c30c0b522209ca59291bd2e", "pid": "1051355478", "note": [{"label": ["Soziale Bewegung mit Zentrum in der kongolesischen Hauptstadt Brazzaville, die sich durch das Tragen sehr eleganter Kleidung im Stile englischer Dandys bzw. Gentleman auszeichnet"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Soziale Bewegung"}], "related": [{"authorized_access_point": "Mode"}, {"authorized_access_point": "Sapeur"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1051355478", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1051355478", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1051355478", "source": "GND"}], "variant_access_point": ["La Sape"], "authorized_access_point": "Société des Ambianceurs et des Personnes Élégantes"} 1 +2024-09-11 09:09:03.228227 2024-09-11 09:09:03.228232 43ffa64d-1cc0-47ad-9ea2-eda71941e284 {"md5": "53eb1d4398a48c6ade9c5a7ae8e2df72", "pid": "1050801644", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Westflämisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1050801644", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1050801644", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1050801644", "source": "GND"}], "authorized_access_point": "Mundart Westflämisch (Bachten de Kupe)"} 1 +2024-09-11 09:09:03.294059 2024-09-11 09:09:03.294063 f737688f-ccd1-40a9-b70b-0cdb5e22f6ed {"md5": "24434869dbb0d5b84d52fb58f02951f5", "pid": "1050440188", "note": [{"label": ["Ethnie im Hochland Papua-Neuguineas, Southern Highlands Province"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Papua"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134383754", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12699651", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb126996512"}], "authorized_access_point": "Wiru (peuple de Papouasie-Nouvelle-Guinée)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1050440188", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1050440188", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1050440188", "source": "GND"}], "variant_access_point": ["Witu (Volk)", "Pangia"], "authorized_access_point": "Wiru"} 1 +2024-09-11 09:09:03.712063 2024-09-11 09:09:03.712068 c3bf023b-5ca4-4a24-879b-241308b0e24d {"md5": "14e0bc44092997c7b9deb82138503037", "pid": "1034281828", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1034281828", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1034281828", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1034281828", "source": "GND"}], "authorized_access_point": "Hauswirtschaft (Motiv)"} 1 +2024-09-11 09:09:03.35464 2024-09-11 09:09:03.354647 c17a3492-930b-491b-ac22-6a64956375a2 {"md5": "c062c5a1ced2417bccb2f9b2c0a0645d", "pid": "1049971213", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sonnenbarsche (Familie)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333375107", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85109081", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85109081"}], "authorized_access_point": "Pumpkinseed (Fish)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333375107", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17800495", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb178004954"}], "authorized_access_point": "Crapet-soleil"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1049971213", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1049971213", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1049971213", "source": "GND"}], "variant_access_point": ["Gemeiner Sonnenbarsch", "Lepomis gibbosus"], "authorized_access_point": "Sonnenbarsch"} 1 +2024-09-11 09:09:03.411118 2024-09-11 09:09:03.411121 542611f6-35e1-4521-b3cd-0ca39a2f6f1d {"md5": "b1e87676de0f78b446d8a515eb0b0d4b", "pid": "1049453719", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Urheberrechtsverletzung&oldid=196809744"], "noteType": "dataSource"}, {"label": ["Verstoß gegen urheberrechtliche Vorschriften"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Urheberrecht"}, {"authorized_access_point": "Rechtsverletzung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254498478", "source": "GND"}, {"type": "bf:Nbn", "value": "XX4576999", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX4576999"}], "authorized_access_point": "Delitos contra la propiedad intelectual"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113404321X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85032500", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85032500"}], "authorized_access_point": "Copyright infringement"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113404321X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11976722", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119767220"}], "authorized_access_point": "Infractions au droit d'auteur"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1049453719", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1049453719", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1049453719", "source": "GND"}], "variant_access_point": ["Urheberrechtsverstoß", "Urheberrecht"], "authorized_access_point": "Urheberrechtsverletzung"} 1 +2024-09-11 09:09:03.4717 2024-09-11 09:09:03.471703 0402462a-7e48-466f-8ac2-df25d31ff031 {"md5": "b0e89bef94de4d39ceb042eca111d18d", "pid": "104797553X", "note": [{"label": ["Flussdelphine des Ganges-Brahmaputra-Systems und des Mittellaufs des Indus"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zahnwale"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331847222", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85114240", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85114240"}], "authorized_access_point": "River dolphins"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331847222", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13541390", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb135413904"}], "authorized_access_point": "Dauphins d'eau douce"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/104797553X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)104797553X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)104797553X", "source": "GND"}], "variant_access_point": ["Süßwasserdelphine", "Gangesdelphine", "Indusdelphine", "Platanistidae"], "authorized_access_point": "Schnabeldelphine"} 1 +2024-09-11 09:09:03.535675 2024-09-11 09:09:03.535678 68fac5af-1d3c-46a4-be9f-40f2234868a6 {"md5": "de00fd36ccbb6c96f852d7802b3796ed", "pid": "1047231085", "note": [{"label": ["Politische Demonstration 28.8.1963 für mehr Menschenrechte der afroamerikanischen Bürger"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bürgerrechtsbewegung"}, {"authorized_access_point": "Demonstration"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133845851", "source": "GND"}, {"type": "bf:Nbn", "value": "n2012036795", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/names/n2012036795"}], "authorized_access_point": "March on Washington for Jobs and Freedom (1963 : Washington, D.C.)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133845851", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13194028", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13194028z"}], "authorized_access_point": "Marche sur Washington (1963)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1047231085", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1047231085", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1047231085", "source": "GND"}], "variant_access_point": ["March on Washington for jobs and freedom", "Marsch auf Washington", "The great March on Washington"], "authorized_access_point": "Marsch auf Washington für Arbeit und Freiheit"} 1 +2024-09-11 09:09:03.592078 2024-09-11 09:09:03.592083 3b47fc06-cd9e-40bc-b2ce-abb9ce676d12 {"md5": "51af0deae7800ffec767bd3cb41d1f86", "pid": "1041610890", "note": [{"label": ["Als Nocebo-Effekt (Nocebo = lat. „Ich werde schaden.“) bezeichnet man das Auftreten oder die Zunahme von Krankheitssymptomen nach einer medizinischen oder pharmakologischen Behandlung, wobei die Symtomatik von den negativen Erwartungen des Patienten ausgelöst wird, nicht von der Behandlung selbst."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Nebenwirkung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1222525097", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16254337", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16254337h"}], "authorized_access_point": "Effet nocebo"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)128220467X", "source": "GND"}, {"type": "bf:Nbn", "value": "D064786", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D064786"}], "authorized_access_point": "Nocebo Effect"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1041610890", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1041610890", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1041610890", "source": "GND"}], "variant_access_point": ["Nocebo", "Nocebowirkung", "Noceboantwort"], "authorized_access_point": "Nocebo-Effekt"} 1 +2024-09-11 09:09:03.768534 2024-09-11 09:09:03.768537 af26dcd6-f727-427c-b06a-2d702a4a59dd {"md5": "4fcf465ac4b257262d9537a331e3d184", "pid": "1033705691", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Marienfest"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331871239", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17737043", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17737043x"}], "authorized_access_point": "Nativité de Marie (fête)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1033705691", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1033705691", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1033705691", "source": "GND"}], "authorized_access_point": "Mariä Geburt"} 1 +2024-09-11 09:09:03.825841 2024-09-11 09:09:03.825846 35e3535d-139b-4b8c-bb33-95e6308985f1 {"md5": "18d2a2f0580a7db8585745ca50c3fd11", "pid": "1030464197", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1030464197", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1030464197", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1030464197", "source": "GND"}], "authorized_access_point": "Stoff (Motiv)"} 1 +2024-09-11 09:09:03.882907 2024-09-11 09:09:03.882911 e007e76b-10ab-44c2-8d02-db6fc67b845e {"md5": "d571c4fde4f255b621b1ace416f39b51", "pid": "1028524978", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ethnologie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134386982", "source": "GND"}, {"type": "bf:Nbn", "value": "sh93005976", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh93005976"}], "authorized_access_point": "Visual anthropology"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134386982", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13168664", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13168664t"}], "authorized_access_point": "Anthropologie visuelle"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254500537", "source": "GND"}, {"type": "bf:Nbn", "value": "XX545504", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX545504"}], "authorized_access_point": "Antropología visual"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1028524978", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1028524978", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1028524978", "source": "GND"}], "variant_access_point": ["Visuelle Anthropologie", "Visual anthropology"], "authorized_access_point": "Visuelle Ethnologie"} 1 +2024-09-11 09:09:03.943199 2024-09-11 09:09:03.943204 433810e4-198c-443c-af29-f850b068d2cc {"md5": "8c249912aef0c4ea84cf1a919f1593a5", "pid": "1027073808", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331845491", "source": "GND"}, {"type": "bf:Nbn", "value": "sh88020731", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh88020731"}], "authorized_access_point": "Galatheidae"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331845491", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15749610", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb157496101"}], "authorized_access_point": "Galathéidés"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1027073808", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1027073808", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1027073808", "source": "GND"}], "variant_access_point": ["Galatheidae", "Squat lobsters"], "authorized_access_point": "Furchenkrebse"} 1 +2024-09-11 09:09:03.999941 2024-09-11 09:09:03.999946 b14cc7c3-75c6-4541-9f81-81e1ccd81b5b {"md5": "8c88a6c6534a05fb7d9d4cb777362e9c", "pid": "1027071171", "note": [{"label": ["NCBI-Taxonomy - http://www.ncbi.nlm.nih.gov/taxonomy?term=sciaenops%20ocellatus"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Umberfische"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333485506", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85022524", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85022524"}], "authorized_access_point": "Red drum"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333485506", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17807388", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb178073888"}], "authorized_access_point": "Tambour rouge"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1027071171", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1027071171", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1027071171", "source": "GND"}], "variant_access_point": ["Perca ocellata", "Red drum", "Roter Trommler"], "authorized_access_point": "Sciaenops ocellatus"} 1 +2024-09-11 09:09:04.0606 2024-09-11 09:09:04.060604 0b66e51c-c2a0-4aeb-93d7-9c0b54b17ddd {"md5": "dc759b4de205887805de52d08f477fbc", "pid": "1026470986", "note": [{"label": ["Erstflug 1958"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Transportflugzeug"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1026470986", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1026470986", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1026470986", "source": "GND"}], "variant_access_point": ["De Havilland Canada DHC-4 Caribou", "De Havilland D.H. 4 Caribou", "D.H. 4 Caribou", "DHC 4", "DHC-4"], "authorized_access_point": "DHC-4 Caribou"} 1 +2024-09-11 09:09:04.118106 2024-09-11 09:09:04.118108 dd898e24-83d5-48a8-84ca-df8f59bd1286 {"md5": "19d24a325a1a81729435b039e90686c5", "pid": "1026351537", "note": [{"label": ["Tonstempel mit verschiedenen Verzierungsmustern, schon in d. Jungsteinzeit bekannt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Stempel"}], "related": [{"authorized_access_point": "Brotlaibidol"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334232970", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF18066386", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb18066386b"}], "authorized_access_point": "Pintaderas"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1026351537", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1026351537", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1026351537", "source": "GND"}], "authorized_access_point": "Pintadera"} 1 +2024-09-11 09:09:04.173152 2024-09-11 09:09:04.173155 1cd9cd9b-54bd-43f7-8477-df65bdef6c3e {"md5": "6585d469260d24f1a715a9efaaceeefd", "pid": "1025228928", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Spezielle Soziologie"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1026988039", "source": "GND"}, {"type": "bf:Nbn", "value": "10044108", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10044108"}], "authorized_access_point": "Geschlechterforschung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1025228928", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1025228928", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1025228928", "source": "GND"}], "authorized_access_point": "Geschlechtersoziologie"} 1 +2024-09-11 09:09:04.238588 2024-09-11 09:09:04.238592 988d1041-9b65-475f-9b25-5017ffb37353 {"md5": "e10c89ac68929424a160add0f37b85ef", "pid": "1023745712", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tankstelle"}, {"authorized_access_point": "Batterieaufladung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1228385939", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2012003590", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2012003590"}], "authorized_access_point": "Battery charging stations (Electric vehicles)"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)120528379X", "source": "GND"}, {"type": "bf:Nbn", "value": "30212-2", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/30212-2"}], "authorized_access_point": "Ladeinfrastruktur"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1023745712", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1023745712", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1023745712", "source": "GND"}], "variant_access_point": ["Elektrotankstelle", "Ladestation", "Ladesäule", "Ladeinfrastruktur", "Charging station"], "authorized_access_point": "Stromtankstelle"} 1 +2024-09-11 09:09:04.296609 2024-09-11 09:09:04.296613 53434a88-0512-4255-a6d9-5ad97bc96f84 {"md5": "7b375e94b72e3d24f613a5cbc5081ea6", "pid": "1023362872", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133337481X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85021929", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85021929"}], "authorized_access_point": "Centrarchidae"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133337481X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15555678", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15555678j"}], "authorized_access_point": "Centrarchidés"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1023362872", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1023362872", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1023362872", "source": "GND"}], "variant_access_point": ["Centrarchidae", "Sunfish"], "authorized_access_point": "Sonnenbarsche (Familie)"} 1 +2024-09-11 09:09:04.350921 2024-09-11 09:09:04.350926 ff40fa06-33db-4051-9742-8283d896ccdb {"md5": "bfcbede0edf11ea0bb35da9574b46d2c", "pid": "1022832425", "note": [{"label": ["Ordnung Mucorales"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134250681", "source": "GND"}, {"type": "bf:Nbn", "value": "sh86007263", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh86007263"}], "authorized_access_point": "Mucoraceae"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134250681", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12270265", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12270265c"}], "authorized_access_point": "Mucoracées"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1022832425", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1022832425", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1022832425", "source": "GND"}], "authorized_access_point": "Mucoraceae"} 1 +2024-09-11 09:09:04.40868 2024-09-11 09:09:04.408685 07013f9c-46bb-4f81-8328-d150a1993244 {"md5": "944566984ec273311e8e13500b170513", "pid": "1021256064", "note": [{"label": ["Hypothetisches Meson aus vier Quarks."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Exotisches Hadron"}], "related": [{"authorized_access_point": "Quark (Physik)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7863105-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1021256064", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7863105-1", "source": "GND"}], "authorized_access_point": "Tetraquark"} 1 +2024-09-11 09:09:04.46493 2024-09-11 09:09:04.464933 260b3c0a-ea45-410e-8c7c-bc66f3a0d55c {"md5": "f5adacb632ee5afc1ddac954233c5847", "pid": "1018220429", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Westfälisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7846068-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1018220429", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7846068-2", "source": "GND"}], "authorized_access_point": "Mundart Westfälisch (Kreis Herford)"} 1 +2024-09-11 09:09:04.523187 2024-09-11 09:09:04.52319 c13193d8-a6aa-4aae-8754-0e0e7ae53124 {"md5": "97a794212fd5a58c71316591a27fca97", "pid": "1017491062", "note": [{"label": ["OBV - https://permalink.obvsg.at/AC08535334", "Wikipedia - https://de.wikipedia.org/wiki/%C3%96BB_4030"], "noteType": "dataSource"}, {"label": ["Elektrotriebwagen der ÖBB, gebaut 1956-1975"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Elektrotriebwagen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7843328-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1017491062", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7843328-9", "source": "GND"}], "variant_access_point": ["Triebwagen Baureihe 4030", "ÖBB Reihe 4030", "ÖBB 4030"], "authorized_access_point": "Elektrotriebwagen Baureihe 4030"} 1 +2024-09-11 09:09:04.577326 2024-09-11 09:09:04.57733 a310101f-64d0-4711-895d-ac1dd6fa2804 {"md5": "df236aed2a273e7044bc7ba3313240db", "pid": "1017490090", "note": [{"label": ["OBV - https://permalink.obvsg.at/AC08535331", "Wikipedia - https://de.wikipedia.org/wiki/%C3%96BB_4020"], "noteType": "dataSource"}, {"label": ["Elektrotriebwagen der ÖBB, gebaut 1978-1987"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Elektrotriebwagen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7843327-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1017490090", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7843327-7", "source": "GND"}], "variant_access_point": ["Triebwagen Baureihe 4020", "ÖBB Reihe 4020", "ÖBB 4020"], "authorized_access_point": "Elektrotriebwagen Baureihe 4020"} 1 +2024-09-11 09:09:04.629925 2024-09-11 09:09:04.629929 0f3cec07-d31f-428e-a59d-f7ed652f4d5c {"md5": "21b432860e806602105c31d2629252b2", "pid": "1017217165", "note": [{"label": ["Wikipedia unter Noctuoidea - https://de.wikipedia.org/wiki/Noctuoidea"], "noteType": "dataSource"}, {"label": ["Unterfamilie der Schmetterlingsfamilie Eulen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Eulen (Schmetterlinge)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7842430-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1017217165", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7842430-6", "source": "GND"}], "authorized_access_point": "Psaphidinae"} 1 +2024-09-11 09:09:04.68345 2024-09-11 09:09:04.683454 3373b8ff-1133-4cdd-8edd-68a176780dd8 {"md5": "1dce1c0726ebeca373d422b1627428a0", "pid": "1017177503", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Einwanderin"}, {"authorized_access_point": "Chilenin"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7842262-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1017177503", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7842262-0", "source": "GND"}], "authorized_access_point": "Chilenische Einwanderin"} 1 +2024-09-11 09:09:04.735935 2024-09-11 09:09:04.735938 4e314cd8-7f53-4e02-8371-9bdf253fc9b9 {"md5": "7ed05fc94a7f6661fa6525d88c89308a", "pid": "1017027366", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Picrodendraceae"], "noteType": "dataSource"}, {"label": ["zweikeimblättrige Familie, mit den Wolfsmilchgewächsen nah verwandt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Malpighienartige"}], "related": [{"authorized_access_point": "Wolfsmilchgewächse"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7841608-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1017027366", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7841608-5", "source": "GND"}], "variant_access_point": ["Euphorbiaceae subtrib. Picrodendrinae", "Euphorbiaceae trib. Picrodendreae", "Euphorbiaceae subfam. Oldfieldioideae", "Euphorbiaceae subtrib. Dissiliariinae", "Euphorbiaceae subtrib. Paivaeusinae", "Euphorbiaceae subtrib. Petalostimatinae", "Euphorbiaceae subtrib. Toxicodendrinae"], "authorized_access_point": "Picrodendraceae"} 1 +2024-09-11 09:09:04.789163 2024-09-11 09:09:04.789168 057338b4-d041-4d27-8e61-75e4100e1da9 {"md5": "2d51af55b6a15b0ef9082eeaf73248d5", "pid": "1016810989", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Kugelk%C3%A4fer"], "noteType": "dataSource"}, {"label": ["Käferfamilie"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133797040", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12438548", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb124385482"}], "authorized_access_point": "Sphaeriusidae"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7840811-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1016810989", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7840811-8", "source": "GND"}], "variant_access_point": ["Sphaeriusidae", "Sphaeridae", "Sphaeriidae", "Microsporidae", "Sphaerius"], "authorized_access_point": "Kugelkäfer"} 1 +2024-09-11 09:09:04.853824 2024-09-11 09:09:04.853829 14b520ec-9f3b-4d62-8e37-894d19924816 {"md5": "c1729f6af51d5ae73c55b4cab13c5b93", "pid": "1016599463", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Okkultistin"}, {"authorized_access_point": "Okkultismus"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331753430", "source": "GND"}, {"type": "bf:Nbn", "value": "sh87003651", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh87003651"}], "authorized_access_point": "Occultists"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331753430", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16745674", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16745674f"}], "authorized_access_point": "Occultistes"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7840293-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1016599463", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7840293-1", "source": "GND"}], "authorized_access_point": "Okkultist"} 1 +2024-09-11 09:09:04.975548 2024-09-11 09:09:04.975553 6574953b-21ef-4dfb-b43e-c1c69701e79c {"md5": "a23d26b606abe80fb6bec928f0217e40", "pid": "1016326106", "note": [{"label": ["auf Homologien beruhende, den verwandtschaftlichen Beziehungen entsprechende Gruppierung der Organismen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Klassifikation"}, {"authorized_access_point": "Systematik"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7836847-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1016326106", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7836847-9", "source": "GND"}], "authorized_access_point": "Natürliches System"} 1 +2024-09-11 09:09:05.035978 2024-09-11 09:09:05.035983 a66518b6-20fd-4ea4-97a0-f33c3c22dfae {"md5": "7035c5f9a2a269400b9e86f65eb4d45f", "pid": "1015079253", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7758150-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1015079253", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7758150-7", "source": "GND"}], "authorized_access_point": "Anschluss Österreichs (Motiv)"} 1 +2024-09-11 09:09:05.097429 2024-09-11 09:09:05.097433 3d883fef-af3a-453b-b130-794a2643300f {"md5": "10371644ed9b393073574683660a0f34", "pid": "1013014065", "note": [{"label": ["§ 20a WpHG"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Manipulation"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7749818-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1013014065", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7749818-5", "source": "GND"}], "variant_access_point": ["Börsen- und Marktmanipulation", "Kursmanipulation", "Marktpreismanipulation", "Strafbare Marktmanipulation", "Marktmanipulationsverbot", "Kursbetrug", "Kurs- und Marktpreismanipulation", "Marktmanipulation", "Finanzinstrument"], "authorized_access_point": "Marktmanipulation"} 1 +2024-09-11 09:09:05.151122 2024-09-11 09:09:05.151127 3ee48cd4-a98b-43ae-ac91-15fb9bb32158 {"md5": "6b4e02509e1c636efcbc58c710de4ab1", "pid": "1011954141", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333473001", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85099724", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85099724"}], "authorized_access_point": "Percichthyidae"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333473001", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17156205", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb171562052"}], "authorized_access_point": "Percichthyidae"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7746334-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1011954141", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7746334-1", "source": "GND"}], "variant_access_point": ["Percichthyidae"], "authorized_access_point": "Dorschbarsche"} 1 +2024-09-11 09:09:05.205174 2024-09-11 09:09:05.205177 5e539127-f7db-4e83-bf3c-941386874c85 {"md5": "d0b5943d41e3cad0acd2f9079dcddddc", "pid": "1011935201", "note": [{"label": ["Entstehungsjahr: 1910, auch halbfett 1910"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fraktur (Druckschrift)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7746253-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1011935201", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7746253-1", "source": "GND"}], "variant_access_point": ["Weltfraktur"], "authorized_access_point": "Welt-Fraktur"} 1 +2024-09-11 09:09:05.261991 2024-09-11 09:09:05.261996 42cfe286-6333-426d-aad4-2be060c9b250 {"md5": "a5d04cbae1e84427721abc3ea6b54b8b", "pid": "1011536455", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Dorschbarsche"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134832605", "source": "GND"}, {"type": "bf:Nbn", "value": "sh92004648", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh92004648"}], "authorized_access_point": "Macquarie perch"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134832605", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17156241", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17156241x"}], "authorized_access_point": "Macquaria australasica"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7744753-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1011536455", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7744753-0", "source": "GND"}], "variant_access_point": ["Macquarie Perch", "Mountain Perch"], "authorized_access_point": "Macquaria australasica"} 1 +2024-09-11 09:09:05.319634 2024-09-11 09:09:05.31964 e9095d4f-2078-41b4-9b91-3ca851ac34e5 {"md5": "9a38673c7bc169ced0fe04e8e0116a85", "pid": "1011385856", "note": [{"label": ["Wikipedia unter Kobralilie - https://de.wikipedia.org/wiki/Kobralilie"], "noteType": "dataSource"}, {"label": ["in NW-Amerika endemische, monotypische Gattung der Schlauchpflanzengewächse"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schlauchpflanzengewächse"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134821107", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85035810", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85035810"}], "authorized_access_point": "Darlingtonia californica"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7743987-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1011385856", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7743987-9", "source": "GND"}], "variant_access_point": ["Darlingtonia", "Darlingtonia californica", "Darlingtonie", "Kobraschlauchpflanze (Gattung)", "Kobralilie (Gattung)", "Kobralilien (Gattung)", "Kobraschlauchpflanze", "Kobralilie", "Chrysamphora", "Chrysamphora californica"], "authorized_access_point": "Kobrapflanze"} 1 +2024-09-11 09:09:05.375146 2024-09-11 09:09:05.375151 06a454df-7a8f-4a92-974d-cb701acc1871 {"md5": "4335b4bf1cf61cd6d4de01d2aaa59559", "pid": "1011285738", "note": [{"label": ["Wikipedia unter Seifenbaumartige - https://de.wikipedia.org/wiki/Seifenbaumartige"], "noteType": "dataSource"}, {"label": ["Familie der Seifenbaumartigen (Sapindales)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Seifenbaumartige"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7743628-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1011285738", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7743628-3", "source": "GND"}], "variant_access_point": ["Tetradiclis"], "authorized_access_point": "Tetradiclidaceae"} 1 +2024-09-11 09:09:05.428524 2024-09-11 09:09:05.428527 b06505f9-4425-4450-aae2-a213f2c32b60 {"md5": "13da36da922a68e5205f4b1c815dc4b2", "pid": "1011285436", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Nitrariaceae"], "noteType": "dataSource"}, {"label": ["Familie der Seifenbaumartigen [Sapindales]"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Seifenbaumartige"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134821166", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16063257", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16063257g"}], "authorized_access_point": "Nitraria"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7743625-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1011285436", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7743625-8", "source": "GND"}], "variant_access_point": ["Nitraria"], "authorized_access_point": "Nitrariaceae"} 1 +2024-09-11 09:09:05.493225 2024-09-11 09:09:05.49323 046f65aa-b1e5-4af1-9d5e-4d3883b0bd39 {"md5": "144ff904ff334d0a45dd6a35b850bee0", "pid": "1011282518", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Kirkiaceae"], "noteType": "dataSource"}, {"label": ["Familie der Seifenbaumartigen [sensu Sapindales]"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Seifenbaumartige"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7743599-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1011282518", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7743599-0", "source": "GND"}], "authorized_access_point": "Kirkiaceae"} 1 +2024-09-11 09:09:05.564344 2024-09-11 09:09:05.564348 7b112198-9ea6-4461-8eb2-bc940b458277 {"md5": "fcc29ffd2888890dd020984348321fc4", "pid": "1011281368", "note": [{"label": ["Wikipedia unter Keulenfrüchte - https://de.wikipedia.org/wiki/Keulenfr%C3%BCchte"], "noteType": "dataSource"}, {"label": ["Familie unsicherer systematischer Stellung früher zu den Spindelbaumartigen heute eher zu den Cucurbitales gerechnet"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7743592-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1011281368", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7743592-8", "source": "GND"}], "variant_access_point": ["Keulenfrucht (Gattung)", "Keulenfrüchte (Gattung)", "Corynocarpaceae", "Corynocarpus", "Karakabaum (Gattung)", "Corinocarpus", "Merretia"], "authorized_access_point": "Keulenfruchtgewächse"} 1 +2024-09-11 09:09:05.622574 2024-09-11 09:09:05.622578 7261b21f-6f64-43e1-8876-ec9e2709d792 {"md5": "fedc053512dab16697c231c5173b96a7", "pid": "1011278723", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Biebersteinia"], "noteType": "dataSource"}, {"label": ["Familie der Seifenbaumartigen; Einzige Gattung Biebersteinia"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7743558-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1011278723", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7743558-8", "source": "GND"}], "variant_access_point": ["Biebersteinia"], "authorized_access_point": "Biebersteiniaceae"} 1 +2024-09-11 09:09:05.678196 2024-09-11 09:09:05.678199 21b1769a-a6e8-4b0f-a5d0-a0c9afdeada3 {"md5": "49d4aca6cd467fea7339553f502f8b6a", "pid": "1011253313", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Australheidegew%C3%A4chse"], "noteType": "dataSource"}, {"label": ["Familie der Heidekrautartigen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7743404-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1011253313", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7743404-3", "source": "GND"}], "variant_access_point": ["Epacridaceae", "Australheidengewächse", "Styphelioideae"], "authorized_access_point": "Australheidegewächse"} 1 +2024-09-11 09:09:05.734206 2024-09-11 09:09:05.734211 eecdbabd-3f1f-46b7-a9cb-39fe32aecbe5 {"md5": "8da5dabcfcf991d8fdc1524c26716f34", "pid": "1011212722", "note": [{"label": ["Wikipedia unter Lactoris fernandeziana - https://de.wikipedia.org/wiki/Lactoris_fernandeziana"], "noteType": "dataSource"}, {"label": ["monotypische Ordnung der Magnoliopsida, deren einzige Gattung mit nur manchmal auch zu den Pfefferartigen oder zu den Osterluzeigewächsen gerechnet wird"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7743251-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1011212722", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7743251-4", "source": "GND"}], "variant_access_point": ["Lactoridaceae", "Lactoris", "Lactoris fernandeziana"], "authorized_access_point": "Lactoridales"} 1 +2024-09-11 09:09:05.792168 2024-09-11 09:09:05.792171 7a3d92af-13ae-4976-abbd-cca3e92585ed {"md5": "2bca381a5cb2117c3c07f5f55dde2253", "pid": "1011172399", "note": [{"label": ["Lex. Biol. (1999) als Cunoniaceae - http://www.spektrum.de/lexikon/biologie/cunoniaceae/16042", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Cunoniaceae&oldid=165412165"], "noteType": "dataSource"}, {"label": ["zweikeimblättrige Pflanzenfamilie"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133862942", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85034815", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85034815"}], "authorized_access_point": "Cunoniaceae"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133862942", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13515290", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb135152906"}], "authorized_access_point": "Cunoniacées"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7743101-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1011172399", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7743101-7", "source": "GND"}], "variant_access_point": ["Cunoniengewächse", "Cunoniaceae"], "authorized_access_point": "Cunoniagewächse"} 1 +2024-09-11 09:09:05.851733 2024-09-11 09:09:05.851738 4ac8420c-7be6-4880-960a-08553d45f5a1 {"md5": "c534d967659db5a811f8ff79d0fd10cb", "pid": "1011095351", "note": [{"label": ["Wikipedia unter Lilienähnliche - https://de.wikipedia.org/wiki/Lilien%C3%A4hnliche"], "noteType": "dataSource"}, {"label": ["einkeimblättrige Famile aus der Ordnung der Spargelartigen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Spargelartige"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134821204", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2003011156", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2003011156"}], "authorized_access_point": "Hemerocallidaceae"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7742665-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1011095351", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7742665-4", "source": "GND"}], "authorized_access_point": "Phormiaceae"} 1 +2024-09-11 09:09:24.375241 2024-09-11 09:09:24.375245 61600dda-d2e8-4cbe-bdf1-b293f3bff97a {"md5": "476af237c2574b61c9368e99f0e842b7", "pid": "043269605", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kreatur"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4326960-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043269605", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4326960-6", "source": "GND"}], "authorized_access_point": "Mitgeschöpf"} 1 +2024-09-11 09:09:05.910906 2024-09-11 09:09:05.910911 385b33ec-afd0-43f8-a11f-04a18077cb59 {"md5": "2f8cf3b0caf66b663197f63339d3ced7", "pid": "1010824597", "note": [{"label": ["Überfamilie der Schmetterlinge"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schmetterlinge"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7740844-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1010824597", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7740844-5", "source": "GND"}], "authorized_access_point": "Hesperioidea"} 1 +2024-09-11 09:09:05.974497 2024-09-11 09:09:05.974502 6c24dd9d-68e7-4ce6-a1a9-3d05d03d3869 {"md5": "ff374966e68874ce1ab570362c34af24", "pid": "1010820389", "note": [{"label": ["Wikipedia unter Systematik der Schmetterlinge - https://de.wikipedia.org/wiki/Systematik_der_Schmetterlinge"], "noteType": "dataSource"}, {"label": ["Überfamilie der Schmetterlinge innerhalb der Unterordnung Glossata"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schmetterlinge"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7740801-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1010820389", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7740801-9", "source": "GND"}], "authorized_access_point": "Drepanoidea"} 1 +2024-09-11 09:09:06.040249 2024-09-11 09:09:06.040255 eb2ea921-8ab6-41ad-82d8-91d5308ba150 {"md5": "a0e8eed6d728438877c437292b8f5045", "pid": "101081933X", "note": [{"label": ["Internet - http://tierdoku.de/index.php?title=Spinnerartige"], "noteType": "dataSource"}, {"label": ["Überfamilie der Schmetterlinge"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7740795-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)101081933X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7740795-7", "source": "GND"}], "variant_access_point": ["Bombycoidea", "Spinnerartige", "Spinner (Überfamilie)"], "authorized_access_point": "Spinner und Schwärmer (Überfamilie)"} 1 +2024-09-11 09:09:06.099141 2024-09-11 09:09:06.099148 87613bc3-8023-47fd-92ed-ac9740eb3a7c {"md5": "abc8ddf751869bf2f3ac240f3cecfcc6", "pid": "100974786X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Fernmeldegeheimnis"}, {"authorized_access_point": "Postüberwachung"}, {"authorized_access_point": "Telefonüberwachung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1218115521", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11961331", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11961331f"}], "authorized_access_point": "Écoute électronique"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7732308-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)100974786X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7732308-7", "source": "GND"}], "variant_access_point": ["Telekommunikation", "Telecommunication surveillance", "TKÜ"], "authorized_access_point": "Telekommunikationsüberwachung"} 1 +2024-09-11 09:09:06.1719 2024-09-11 09:09:06.171904 80bb2128-fd69-4f86-8035-4cede09d0b22 {"md5": "f20ed873b786d6c67ee847e897d89dd8", "pid": "1009172255", "note": [{"label": ["ab 2003 Förderprogramm für Textilarbeiterinnen der Firma MAS Holdings Pvt. Ltd."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Förderungsprogramm"}], "related": [{"authorized_access_point": "Textilarbeiterin"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7728838-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1009172255", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7728838-5", "source": "GND"}], "variant_access_point": ["MAS Holdings", "Women Go Beyond", "Go Beyond", "MAS Women Go Beyond Programme"], "authorized_access_point": "MAS Go Beyond"} 1 +2024-09-11 09:09:06.23354 2024-09-11 09:09:06.233546 4251af3b-6045-424b-811c-8ed0c15e0c7b {"md5": "5ebbba3f4794844837ea55eb28678266", "pid": "100914135X", "note": [{"label": ["Ca. 1734 erbaut, ursprünglich Handelsschiff, später im Dienst d. engl. Marine, sank 1741 vor d. Westküste Chiles"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Segelschiff"}, {"authorized_access_point": "Handelsschiff"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7728659-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)100914135X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7728659-5", "source": "GND"}], "authorized_access_point": "Wager (Schiff)"} 1 +2024-09-11 09:09:06.286603 2024-09-11 09:09:06.286609 d35c0636-0981-4086-a5d3-60fcf5df4712 {"md5": "007a7b5f3514937fa9bb0de4e4e38873", "pid": "1008599360", "note": [{"label": ["Rakete, die vom Boden auf ein Bodenziel abgeschossen wird"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Militärische Rakete"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134177372", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85130729", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85130729"}], "authorized_access_point": "Surface-to-surface missiles"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134177372", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12124483", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12124483m"}], "authorized_access_point": "Missiles sol-sol"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7725945-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1008599360", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7725945-2", "source": "GND"}], "authorized_access_point": "Boden-Boden-Rakete"} 1 +2024-09-11 09:09:07.185663 2024-09-11 09:09:07.185668 13aec1c2-0113-47cf-be72-be6ec48b6998 {"md5": "806d1aafdb5c67ffcda8397884f736d7", "pid": "998759074", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7683770-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)998759074", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7683770-1", "source": "GND"}], "variant_access_point": ["Morisca (Motiv)"], "authorized_access_point": "Moresca (Motiv)"} 1 +2024-09-11 09:09:06.350372 2024-09-11 09:09:06.350375 7f5efe23-1b10-47dc-9f56-ef3718d3b12e {"md5": "c8bdde462cafcf5057ee07380da3ef6f", "pid": "1007558903", "note": [{"label": ["Gehört zu d. UF Astronotinae d. Neuweltbuntbarsche"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Buntbarsche"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134832648", "source": "GND"}, {"type": "bf:Nbn", "value": "sh99003794", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99003794"}], "authorized_access_point": "Astronotus"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134832648", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17801808", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17801808q"}], "authorized_access_point": "Astronotus"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7719954-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1007558903", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7719954-6", "source": "GND"}], "authorized_access_point": "Astronotus"} 1 +2024-09-11 09:09:06.406736 2024-09-11 09:09:06.40674 4f736da0-6887-482c-9c7f-85cf98903ab5 {"md5": "2026786bcfa92389c4fa5aab4f16a14d", "pid": "1007553405", "note": [{"label": ["Zwergseepferdchenart"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Seenadeln"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333488432", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85040183", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85040183"}], "authorized_access_point": "Dwarf sea horse"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333488432", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17817676", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb178176769"}], "authorized_access_point": "Hippocampus zosterae"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7719938-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1007553405", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7719938-8", "source": "GND"}], "variant_access_point": ["Florida-Zwergseepferdchen"], "authorized_access_point": "Hippocampus zosterae"} 1 +2024-09-11 09:09:06.465595 2024-09-11 09:09:06.465601 ea7565d4-031f-467a-84ac-e50b2b7adb1d {"md5": "2dfcf2dc13bd08e9cd1676909529365f", "pid": "1007096462", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Green_IT&oldid=244326078"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Informationstechnik"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7717106-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1007096462", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7717106-8", "source": "GND"}], "variant_access_point": ["Green IT", "Green ICT", "Green computing", "Grüne IT", "Green IS", "Green-IS", "Green information systems"], "authorized_access_point": "Green-IT"} 1 +2024-09-11 09:09:06.523013 2024-09-11 09:09:06.523017 38151e5a-235f-4fec-964f-859dc5a8c592 {"md5": "49e04d38d3bff902f2122735ed08ff60", "pid": "1006156577", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Computerkriminalität"}, {"authorized_access_point": "Spionage"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7714184-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1006156577", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7714184-2", "source": "GND"}], "variant_access_point": ["Datenspionage", "Computerspionage", "Cyberspionage"], "authorized_access_point": "Ausspähen von Daten"} 1 +2024-09-11 09:09:06.582218 2024-09-11 09:09:06.58222 592ca50e-0a52-4e53-9512-edafb2a38ba7 {"md5": "e1f9760f57ef34b98c2bb853a67a21f3", "pid": "1005952930", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Spielgerät"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133278884X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh90001167", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh90001167"}], "authorized_access_point": "Pedal cars"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7713696-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1005952930", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7713696-2", "source": "GND"}], "authorized_access_point": "Tretauto"} 1 +2024-09-11 09:09:06.639755 2024-09-11 09:09:06.639759 3cfa9e50-f0dd-44fd-83a9-69c5da34d275 {"md5": "a4d096ed5dbc00b67ec43bb0e19200e6", "pid": "1005638322", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tablet PC"}], "related": [{"authorized_access_point": "Apple (Marke)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113482369X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2010009235", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2010009235"}], "authorized_access_point": "iPad (Computer)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113482369X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16204308", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16204308w"}], "authorized_access_point": "Apple iPad (ordinateur)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125444470X", "source": "GND"}, {"type": "bf:Nbn", "value": "XX5019827", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX5019827"}], "authorized_access_point": "iPad (Ordenador)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7712886-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1005638322", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7712886-2", "source": "GND"}], "variant_access_point": ["Apple iPad"], "authorized_access_point": "iPad"} 1 +2024-09-11 09:09:06.697438 2024-09-11 09:09:06.697443 f660c573-1475-4701-a369-9facd4c18a50 {"md5": "4a6759a5bffcc409eb5727248112f09a", "pid": "1005003262", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Signaltransduktion"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7710598-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1005003262", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7710598-9", "source": "GND"}], "variant_access_point": ["Two-component system", "TCS"], "authorized_access_point": "Zweikomponentensystem (Molekularbiologie)"} 1 +2024-09-11 09:09:06.75041 2024-09-11 09:09:06.750414 84f97ffb-125a-4fc1-aaad-085655f43c3f {"md5": "f8ac2b375477c143ef2ee9e4d2599be5", "pid": "1003591590", "note": [{"label": ["Ein eindimensionaler Ansatz der Ökobilanzierung. Messung der Klimarelevanz von Tätigkeiten, Prozessen, Produkten und Dienstleistungen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Umweltbilanz"}], "related": [{"authorized_access_point": "Umweltbelastung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332366201", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15566354", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb155663545"}], "authorized_access_point": "Empreinte écologique"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7705788-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1003591590", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7705788-0", "source": "GND"}], "authorized_access_point": "Ökologischer Fußabdruck"} 1 +2024-09-11 09:09:06.813627 2024-09-11 09:09:06.813631 6febe9bd-0010-46d0-b581-6cd3591cc1fc {"md5": "13133e59f48e969c5ec0505c637a4f7e", "pid": "1001213157", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Agamen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133848672", "source": "GND"}, {"type": "bf:Nbn", "value": "sh98005624", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh98005624"}], "authorized_access_point": "Bearded dragons (Reptiles)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133848672", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13327120", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb133271203"}], "authorized_access_point": "Pogona"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7696635-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1001213157", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7696635-5", "source": "GND"}], "variant_access_point": ["Bartagame (Gattung)"], "authorized_access_point": "Pogona"} 1 +2024-09-11 09:09:06.882753 2024-09-11 09:09:06.882758 ff6cc948-b49c-495c-8359-e90d2545fff9 {"md5": "32eb6c2d1e7bea244dfb4da5fe81a889", "pid": "1000465403", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Westfälisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7692522-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1000465403", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7692522-5", "source": "GND"}], "variant_access_point": ["Tecklenburger Platt"], "authorized_access_point": "Mundart Westfälisch (Tecklenburg)"} 1 +2024-09-11 09:09:06.948657 2024-09-11 09:09:06.948661 e45f77bd-12b1-4bb6-8ff3-d90e7fa294dd {"md5": "aaf8e2318d90d7716496ed3e0e9bdb81", "pid": "999617249", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333946120", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15080454", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15080454j"}], "authorized_access_point": "Osphronemidae"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7687772-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)999617249", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7687772-3", "source": "GND"}], "variant_access_point": ["Osphronemidae"], "authorized_access_point": "Großguramis"} 1 +2024-09-11 09:09:07.008754 2024-09-11 09:09:07.008759 49ee1a95-65b0-4fb6-aa91-d1dde15e2948 {"md5": "9403bf0b97ee93ebd0ad3fa643384b35", "pid": "999602810", "note": [{"label": ["Gattung d. Großguramis"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Großguramis"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333946708", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15952715", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15952715w"}], "authorized_access_point": "Colisa"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7687697-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)999602810", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7687697-4", "source": "GND"}], "variant_access_point": ["Colisa"], "authorized_access_point": "Zwergfadenfisch (Gattung)"} 1 +2024-09-11 09:09:07.073751 2024-09-11 09:09:07.073756 cf4bdfa3-0e4b-4322-a64e-34449aac81a2 {"md5": "c55d0a260db71a47470699c00df34e37", "pid": "999129317", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333486758", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85033299", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85033299"}], "authorized_access_point": "Cottidae"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333486758", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16207651", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16207651k"}], "authorized_access_point": "Cottidés"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7685452-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)999129317", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7685452-8", "source": "GND"}], "variant_access_point": ["Cottidae"], "authorized_access_point": "Groppen (Familie)"} 1 +2024-09-11 09:09:07.129325 2024-09-11 09:09:07.129327 e7231afe-d369-4c5a-acf3-12ae7556e34a {"md5": "29803e63901d5a9476172b93432c3b18", "pid": "999038095", "note": [{"label": ["Japanische Stofffärbeschablonen, die unter dem Namen Katagami-Technik bekannt geworden sind."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schablone"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332766072", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16595573", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16595573h"}], "authorized_access_point": "Katagami"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7685117-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)999038095", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7685117-5", "source": "GND"}], "authorized_access_point": "Katagami"} 1 +2024-09-11 09:09:07.245443 2024-09-11 09:09:07.245446 2e4d6489-68dd-4335-9ff2-15ab702c862c {"md5": "320ff81421ecfec9f9a1a24d013de0de", "pid": "997781491", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Videobearbeitung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7679461-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)997781491", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7679461-1", "source": "GND"}], "authorized_access_point": "VirtualDub"} 1 +2024-09-11 09:09:07.298633 2024-09-11 09:09:07.298637 4d6c352e-cc20-4845-bd8f-b929c6c4e6cc {"md5": "796b82098da046610275523cd93f7a1f", "pid": "994660987", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zahl"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7661563-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)994660987", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7661563-7", "source": "GND"}], "authorized_access_point": "Quadratfreie Zahl"} 1 +2024-09-11 09:09:07.351235 2024-09-11 09:09:07.351238 94e824c0-6388-4d82-921d-8278ac0dbd85 {"md5": "a9e85a71647ad902675770e66e4b4f06", "pid": "994508417", "note": [{"label": ["Buch, dessen Autor zumeist ein Fotograf ist und dessen primäre Aussage durch die enthaltenen Fotografien transportiert wird", "Für Bücher, die man sich von eigenen digitalen Fotos erstellen lassen kann, verwende „Persönliches Fotobuch“.", "Für vorliegende Fotobücher wird in der Sacherschließung das SW Fotografie (oder ein engeres zutreffendes Schlagwort) zusammen mit dem Formbegriff Bildband vergeben.", "Als Formangabe für die Art des Inhalts als Teil des optionalen Sets zugelassen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Buch"}], "related": [{"authorized_access_point": "Persönliches Fotobuch"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1223003159", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2006009091", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2006009091"}], "authorized_access_point": "Photobooks"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7660057-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)994508417", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7660057-9", "source": "GND"}], "variant_access_point": ["Fotobuch (Kunst)", "Photobuch", "Photobuch (Kunst)", "Photobook"], "authorized_access_point": "Fotobuch"} 1 +2024-09-11 09:09:07.409774 2024-09-11 09:09:07.409779 916e67d0-8f02-4cf4-a72a-a6a71af43722 {"md5": "3282477a3281ec2afe8eda9832ffb480", "pid": "994042582", "note": [{"label": ["Feldzug Schwedens unter Karl X. Gustav, der den zugefrorenen Kleinen und Großen Belt überquert und im Frieden von Roskilde die Abtretung großer Landgebiete durchsetzt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Schwedisch-Dänischer Krieg (1657-1660)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7657707-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)994042582", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7657707-7", "source": "GND"}], "authorized_access_point": "Feldzug gegen Dänemark (1657-1658)"} 1 +2024-09-11 09:09:07.468946 2024-09-11 09:09:07.468952 25063fbb-49f5-433c-8960-f840685a3d2c {"md5": "d05b8701f2ea2e9b1e66f7a00ce6e3d3", "pid": "993971806", "note": [{"label": ["Oberbegriff für die zwei ersten Gruppen in der Klassifikation von Schrift nach DIN 16518", "Mediaeval nannt man Antiqua-Schriften, die im Zuge einer typographischen Erneuerungsbewegung im 19. Jahrhundert entstanden sind (Lex. ges. Buchwesens, Bd. V, S. 110), engl. Übersetzung/Schreibweise ist medieval"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Antiqua"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7657325-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)993971806", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7657325-4", "source": "GND"}], "variant_access_point": ["Mediaeval", "Mediaeval-Antiqua"], "authorized_access_point": "Renaissance-Antiqua"} 1 +2024-09-11 09:09:07.533823 2024-09-11 09:09:07.533828 e75748e2-acc5-4608-ad0f-b46d4c8ae6b7 {"md5": "fa3eaab0a9ddecb464c29405d1ca18d9", "pid": "992779871", "note": [{"label": ["Entstehungsjahr 1937"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Venezianische Renaissance-Antiqua"}], "related": [{"authorized_access_point": "Amalthea (Druckschrift)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7648207-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992779871", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7648207-8", "source": "GND"}], "authorized_access_point": "Schneidler-Mediaeval"} 1 +2024-09-11 09:09:07.596654 2024-09-11 09:09:07.596659 da0d20ae-74b8-4012-add5-f4059904977b {"md5": "fa447ab21bc67cb52eaa9a78440aae44", "pid": "992757681", "note": [{"label": ["Wikipedia unter Kurt Weidemann - http://www.linotype.com/639/kurtweidemann.html"], "noteType": "dataSource"}, {"label": ["Entstehungsjahr: 1983"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Venezianische Renaissance-Antiqua"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647886-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992757681", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647886-5", "source": "GND"}], "variant_access_point": ["Weidemann (Druckschrift)"], "authorized_access_point": "ITC Weidemann"} 1 +2024-09-11 09:09:07.653698 2024-09-11 09:09:07.653702 a5235a6c-b006-4011-8f33-fc37d89c0acb {"md5": "7d18c1815ae5a5ba3373900f18c77517", "pid": "992754151", "note": [{"label": ["Entstehungsjahr: 1956, Deutsches Buch- und Schriftmuseum 1954"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kursive"}], "related": [{"authorized_access_point": "Schneidler-Mediaeval"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647523-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992754151", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647523-2", "source": "GND"}], "variant_access_point": ["Schneidler-Amalthea (Druckschrift)", "Schneidler (Druckschrift)", "Schneidler-Kursiv", "Schneidler-Mediaeval kursiv"], "authorized_access_point": "Amalthea (Druckschrift)"} 1 +2024-09-11 09:09:07.704018 2024-09-11 09:09:07.704021 d1788d05-09c5-4523-89a6-509a1b2a62fa {"md5": "6d04a03bcae06114559f97ab376c7b10", "pid": "992753589", "note": [{"label": ["Entstehungszeit 1913"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gebrochene Schrift"}], "related": [{"authorized_access_point": "Kanzleischrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647466-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992753589", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647466-5", "source": "GND"}], "variant_access_point": ["Laudan-Kanzlei"], "authorized_access_point": "Laudahn-Kanzlei"} 1 +2024-09-11 09:09:07.756495 2024-09-11 09:09:07.756498 200f3e07-c7b6-4763-87f1-72553339d00b {"md5": "06af1af06cf50bc92bdcf49ff66d2eb6", "pid": "992747260", "note": [{"label": ["Enstehungszeit 1928"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gotische Schrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647384-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992747260", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647384-3", "source": "GND"}], "authorized_access_point": "Altenburger Werk-Gotisch"} 1 +2024-09-11 09:09:07.80966 2024-09-11 09:09:07.809665 a65cd3db-09d4-49ab-bfe0-8e5e39d3415c {"md5": "6bb500221b4b7f259ed7a18095e42f13", "pid": "992745489", "note": [{"label": ["Mengel, Willi: Druckschriften der Gegenwart, Stuttgart 1966 - http://www.klingspor-museum.de/KlingsporKuenstler/Schriftgiessereien/Berthold/BertholdAG.pdf"], "noteType": "dataSource"}, {"label": ["Entstehungszeit 1905-1926; weitere Formen: kursiv, halbfett, fett, kursiv fett"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Klassizistische Antiqua"}], "related": [{"authorized_access_point": "Pressa-Antiqua"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647226-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992745489", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647226-7", "source": "GND"}], "authorized_access_point": "Augustea"} 1 +2024-09-11 09:09:07.86742 2024-09-11 09:09:07.867425 36f27135-dd8d-4a5f-8cfd-e385d8b69107 {"md5": "1699bcf0bf4594686ac22c52d626d11b", "pid": "992744431", "note": [{"label": ["Entstehungszeit 1928 (leicht, kräftig)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Egyptienne"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647121-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992744431", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647121-4", "source": "GND"}], "variant_access_point": ["Landi (Druckschrift)"], "authorized_access_point": "Welt-Antiqua"} 1 +2024-09-11 09:09:07.933973 2024-09-11 09:09:07.933979 5e442c1d-1d6e-4b7f-a4ed-e1f076f89265 {"md5": "92c5c91cdaee557ebb96f38167ac23e7", "pid": "992744040", "note": [{"label": ["Entstehungsjahr 1956"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schreibschrift (Druckschrift)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647080-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992744040", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647080-5", "source": "GND"}], "authorized_access_point": "Maxim (Druckschrift)"} 1 +2024-09-11 09:09:08.00015 2024-09-11 09:09:08.000156 5f1634f5-6164-486a-ab80-37dd8e93ea00 {"md5": "de840f0e8bc5a3a20bf018e9aada601e", "pid": "992742145", "note": [{"label": ["Entstehungszeit 1922; nach Vorlage des 18. Jh.; Bezeichnung der Schriftgiesserei Ludwig & Mayer für die Schrift \\"Nicolas Cochin\\"; auch kursiv u. fett"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Antiqua"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646878-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992742145", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646878-1", "source": "GND"}], "variant_access_point": ["Nicolas Cochin (Druckschrift)"], "authorized_access_point": "Sonderdruck-Antiqua"} 1 +2024-09-11 09:09:08.066168 2024-09-11 09:09:08.066174 bb343185-f7aa-4532-9bd3-d5ca25caa680 {"md5": "859264ddf8b653c9edb22b44379781b0", "pid": "992740622", "note": [{"label": ["Entstehungsjahr: 1937"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Rundgotische Schrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646722-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992740622", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646722-3", "source": "GND"}], "authorized_access_point": "Weiß-Rundgotisch"} 1 +2024-09-11 09:09:08.118029 2024-09-11 09:09:08.118035 ce106827-d0f7-461b-957b-42edde7a1e96 {"md5": "72868ca8dfe11e5d8db2ab88b0ba91ba", "pid": "992740002", "note": [{"label": ["Entstehungsjahr: 1932"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Lucian (Druckschrift)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646656-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992740002", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646656-5", "source": "GND"}], "variant_access_point": ["Lucian-Schrift", "Lucian-Antiqua (Frankfurt am Main)"], "authorized_access_point": "Lucian (Druckschrift, Frankfurt am Main)"} 1 +2024-09-11 09:09:08.174417 2024-09-11 09:09:08.174421 77d0103d-8f64-4ff6-9be3-1b1dd502b144 {"md5": "ce13fed911c5154cdc3be65e4f87ae25", "pid": "992739888", "note": [{"label": ["Entstehungsjahr 1915"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schreibschrift (Druckschrift)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646644-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992739888", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646644-9", "source": "GND"}], "authorized_access_point": "Batarde (Druckschrift)"} 1 +2024-09-11 09:09:08.234988 2024-09-11 09:09:08.234992 1497d596-4513-496d-b700-c67f98feb774 {"md5": "563ff9da97d0e613b4d2d80230dd2238", "pid": "992734894", "note": [{"label": ["Enstehungsjahr 1923"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Renaissance-Antiqua"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646131-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992734894", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646131-2", "source": "GND"}], "variant_access_point": ["Erasmus (Druckschrift)"], "authorized_access_point": "Erasmus-Mediaeval"} 1 +2024-09-11 09:09:08.288281 2024-09-11 09:09:08.288285 53c32e68-f87b-4fa8-a7fb-bc6bb0bd236e {"md5": "f550aa720a32970343b26c8c58d91c71", "pid": "992733510", "note": [{"label": ["Entstehungsjahr: 1923 (Hausschnitt)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Baskerville-Antiqua"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7645998-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992733510", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7645998-6", "source": "GND"}], "authorized_access_point": "Baskerville-Antiqua (Frankfurt am Main, 1923)"} 1 +2024-09-11 09:09:08.340745 2024-09-11 09:09:08.340749 44c51f35-24ba-4221-984c-c9088c6456c1 {"md5": "c07aac8dac888fc738bb7af7ba53ac9b", "pid": "992258820", "note": [{"label": ["Kanzel in der Moschee, auf der die Freitagspredigt gehalten wird"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Moschee"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334558051", "source": "GND"}, {"type": "bf:Nbn", "value": "sh98000721", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh98000721"}], "authorized_access_point": "Minbars"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334558051", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16908643", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16908643d"}], "authorized_access_point": "Minbars"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7642353-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992258820", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7642353-0", "source": "GND"}], "variant_access_point": ["Mimbar"], "authorized_access_point": "Minbar"} 1 +2024-09-11 09:09:08.39803 2024-09-11 09:09:08.398034 6479aa54-791f-48a7-bdf2-8c35a9ecfc32 {"md5": "f53d90028c8717fe229cf7c730772eb8", "pid": "991512669", "note": [{"label": ["Kritische Infrastrukturen sind Organisationen und Einrichtung mit wichtiger Bedeutung für das staatliche Gemeinwesen, bei deren Beeinträchtigung oder Ausfall nachhaltig wirkende Versorgungsengpässe, erhebliche Störungen der öffentlichen Sicherheit oder andere dramatische Folgen einträten."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Infrastruktur"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7636249-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)991512669", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7636249-8", "source": "GND"}], "variant_access_point": ["Critical infrastructure", "KRITIS"], "authorized_access_point": "Kritische Infrastruktur"} 1 +2024-09-11 09:09:08.458865 2024-09-11 09:09:08.458868 269ba91d-63a7-4fa2-aba7-84720268bd65 {"md5": "50b4b3c5047f292265a74e388030ddc9", "pid": "99110546X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Puppenhaus"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113396169X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85038854", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85038854"}], "authorized_access_point": "Doll furniture"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113396169X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11946086", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11946086p"}], "authorized_access_point": "Meubles de poupée"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7632599-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)99110546X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7632599-4", "source": "GND"}], "authorized_access_point": "Puppenmöbel"} 1 +2024-09-11 09:09:08.513589 2024-09-11 09:09:08.513593 967ec8ab-5b8c-4423-abcd-117b2c8b5ef2 {"md5": "4c8b5a355ee24f049205aa600629029c", "pid": "990635139", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ingenieurin"}], "related": [{"authorized_access_point": "Maschinenbauingenieur"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7627826-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)990635139", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7627826-8", "source": "GND"}], "variant_access_point": ["Maschineningenieurin"], "authorized_access_point": "Maschinenbauingenieurin"} 1 +2024-09-11 09:09:08.5669 2024-09-11 09:09:08.566905 11f60da0-d584-47d3-ac78-443c14d135fa {"md5": "a0d6f064f2e2337c0a0030a8cec419ba", "pid": "989819264", "note": [{"label": ["Voreingestellter Wert für System- oder Programmparameter"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7620656-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)989819264", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7620656-7", "source": "GND"}], "variant_access_point": ["Defaultwert", "Voreinstellung"], "authorized_access_point": "Default"} 1 +2024-09-11 09:09:08.619697 2024-09-11 09:09:08.619703 4634c3f0-08b6-4d1e-a317-f7e53c2735af {"md5": "0d20f390ab571d92806816cbf364cfae", "pid": "987246100", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Nordischer Krieg (1700-1721)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7597978-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)987246100", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7597978-0", "source": "GND"}], "authorized_access_point": "Pommernfeldzug"} 1 +2024-09-11 09:09:08.672385 2024-09-11 09:09:08.672389 9f7f80b8-80d8-464c-bbf2-dc32fbcda68e {"md5": "6c9a6803d83ea0bd88ab84dc4384c97d", "pid": "986124265", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kauffrau"}], "related": [{"authorized_access_point": "Buchhalter"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331760119", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85147420", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85147420"}], "authorized_access_point": "Women accountants"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)986131555", "source": "GND"}, {"type": "bf:Nbn", "value": "29760-2", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/29760-2"}], "authorized_access_point": "Buchhalter"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7586536-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)986124265", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7586536-1", "source": "GND"}], "authorized_access_point": "Buchhalterin"} 1 +2024-09-11 09:09:08.728901 2024-09-11 09:09:08.728905 08962905-8699-4e0c-954a-34d0cf7abc58 {"md5": "0c71db3b4e40743155878bcfc199e624", "pid": "985953780", "note": [{"label": ["Art d. Glasbarsche"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133714390", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85091950", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85091950"}], "authorized_access_point": "Nile perch"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133714390", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12061925", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12061925r"}], "authorized_access_point": "Perche du Nil"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7584064-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)985953780", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7584064-9", "source": "GND"}], "variant_access_point": ["Lates niloticus", "Viktoriabarsch"], "authorized_access_point": "Nilbarsch"} 1 +2024-09-11 09:09:08.783901 2024-09-11 09:09:08.783906 5ca3d31d-f48b-4284-91ae-8990ba760b89 {"md5": "f26fe5bfd20f77b68413f5aa29302df3", "pid": "985948116", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Märchen"}, {"authorized_access_point": "Erotische Literatur"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133160835X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85044708", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85044708"}], "authorized_access_point": "Erotic stories"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133160835X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16918747", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb169187478"}], "authorized_access_point": "Contes érotiques"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7583981-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)985948116", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7583981-7", "source": "GND"}], "authorized_access_point": "Erotisches Märchen"} 1 +2024-09-11 09:09:08.839452 2024-09-11 09:09:08.839455 37ac57f3-0f57-4b7c-9b3c-97df0a5cf312 {"md5": "f3d92b152b706d7ba8aeaa60f9b50c8c", "pid": "985147172", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Mari%C3%A4_Heimsuchung&oldid=185056160"], "noteType": "dataSource"}, {"label": ["Das Fest Mariä Heimsuchung am 2. Juli (oder mancherorts am 31. Mai)."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Marienfest"}, {"authorized_access_point": "Kirchenfest"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133660339", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85143888", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85143888"}], "authorized_access_point": "Visitation Festival"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133660339", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11961516", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119615163"}], "authorized_access_point": "Visitation (fête)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7576849-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)985147172", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7576849-5", "source": "GND"}], "variant_access_point": ["Mariae Heimsuchung (Fest)", "Maria Heimsuchung", "Visitatio Beatae Mariae Virginis", "Visitatio Mariae"], "authorized_access_point": "Heimsuchung Mariä (Fest)"} 1 +2024-09-11 09:09:08.893493 2024-09-11 09:09:08.893496 b5c0f59f-cbda-4696-a5c6-8accffb518e5 {"md5": "ab4183a00ed797fe78754bf23c5f9075", "pid": "985075619", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Erlösung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7576365-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)985075619", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7576365-5", "source": "GND"}], "variant_access_point": ["Autosoterik"], "authorized_access_point": "Selbsterlösung"} 1 +2024-09-11 09:09:08.945961 2024-09-11 09:09:08.945966 e8573d61-552a-4b93-847d-773cb4ca7692 {"md5": "1c04b0361a0e189c552c9d9c638b3584", "pid": "984505180", "note": [{"label": ["Art d. Gattung Pogona , UF Amphibolurinae, Fam. Agamen (Agamidae)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Agamen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333990774", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15961384", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15961384k"}], "authorized_access_point": "Agame barbu de Lawson"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7571568-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)984505180", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7571568-5", "source": "GND"}], "variant_access_point": ["Zwergbartagame", "Schwarzerde-Bartagame"], "authorized_access_point": "Pogona henrylawsoni"} 1 +2024-09-11 09:09:09.009731 2024-09-11 09:09:09.009737 597aa010-01e5-4a8f-98a9-e5ca7b4cb7b9 {"md5": "6d08c5c66500125f47aa7592537f3a21", "pid": "983782784", "note": [{"label": ["Teilgebiet der Genetik, das untersucht, wie und warum Gene in unterschiedlicher Weise ein- und ausgeschaltet werden, ohne dass sich dabei die Nukleotidsequenzen dieser Gene ändern."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Genetik"}], "related": [{"authorized_access_point": "Epigenese"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134695667", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF14560895", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb14560895j"}], "authorized_access_point": "Épigénétique"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7566079-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)983782784", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7566079-9", "source": "GND"}], "authorized_access_point": "Epigenetik"} 1 +2024-09-11 09:09:26.012031 2024-09-11 09:09:26.012036 68e1efa2-045f-4ed6-9a06-c9f5873c152b {"md5": "f69d1db0ca31a3cb9819d933768dfed3", "pid": "043047815", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4304781-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043047815", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4304781-6", "source": "GND"}], "authorized_access_point": "Begriffskalkül"} 1 +2024-09-11 09:09:09.088396 2024-09-11 09:09:09.088401 b8131e35-a9d5-46f3-8096-3cf50be4c0af {"md5": "c268ac47c0c959a37b3cc575f948c62b", "pid": "983616299", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ästhetik"}], "related": [{"authorized_access_point": "Vornehmheit"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333314981", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12068131", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb120681315"}], "authorized_access_point": "Élégance"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7564301-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)983616299", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7564301-7", "source": "GND"}], "authorized_access_point": "Eleganz"} 1 +2024-09-11 09:09:09.149687 2024-09-11 09:09:09.149691 a09e3c86-6ce4-423f-b6c7-48aeb2843768 {"md5": "badbcfc9e887482173993dd42b470dc0", "pid": "98350816X", "note": [{"label": ["Benutzt, soweit außerhalb Armeniens, sonst verknüpfe Armenien ; Frau"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ausländerin"}], "related": [{"authorized_access_point": "Armenier"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "FRBNF17942155", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17942155j"}], "authorized_access_point": "Arméniennes"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1007250054", "source": "GND"}, {"type": "bf:Nbn", "value": "26103-4", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/26103-4"}], "authorized_access_point": "Armenier"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7563049-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)98350816X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7563049-7", "source": "GND"}], "variant_access_point": ["Armenische Frau"], "authorized_access_point": "Armenierin"} 1 +2024-09-11 09:09:09.207204 2024-09-11 09:09:09.207209 7946f766-e98f-422a-a636-f9ee4bfe13d3 {"md5": "2957b051e7d70e051b5a02ac84475199", "pid": "983481644", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Drosseln"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333493673", "source": "GND"}, {"type": "bf:Nbn", "value": "sh94009324", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh94009324"}], "authorized_access_point": "Ring ouzel"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333493673", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17998713", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17998713r"}], "authorized_access_point": "Merle à plastron"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7562902-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)983481644", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7562902-1", "source": "GND"}], "variant_access_point": ["Turdus torquatus"], "authorized_access_point": "Ringdrossel"} 1 +2024-09-11 09:09:09.260289 2024-09-11 09:09:09.260293 675e2345-e3f4-420f-b1d0-3831a6fe04a0 {"md5": "14a4b0e243581107b2ce676e4ae533b5", "pid": "983481628", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Drosseln"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333493827", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12491932", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12491932b"}], "authorized_access_point": "Grive draine"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7562900-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)983481628", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7562900-8", "source": "GND"}], "variant_access_point": ["Turdus viscivorus"], "authorized_access_point": "Misteldrossel"} 1 +2024-09-11 09:09:09.317792 2024-09-11 09:09:09.317797 8eec5703-6a51-45e4-ba23-66d2be02b3e0 {"md5": "06f99d96f4fc81f5f2abe1206f6f7ce7", "pid": "982938322", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Beschriftung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331595843", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2002000621", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2002000621"}], "authorized_access_point": "Photograph captions"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331595843", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF18058702", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb18058702v"}], "authorized_access_point": "Légendes (images)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7557792-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)982938322", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7557792-6", "source": "GND"}], "variant_access_point": ["Bildlegende", "Bildunterschrift", "Begleittext (Bild)"], "authorized_access_point": "Legende (Bild)"} 1 +2024-09-11 09:09:09.37933 2024-09-11 09:09:09.379334 08d3b8de-db24-4fef-a811-ea1ff85049f7 {"md5": "09e4e187b357c16d8dea755e227578ae", "pid": "982377649", "note": [{"label": ["Bantu-Sprache in Tansania, S Kilosa Dist."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Bantusprachen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134833679", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2011001549", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2011001549"}], "authorized_access_point": "Vidunda language"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134833679", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17951629", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17951629b"}], "authorized_access_point": "Vidunda (langue)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7553407-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)982377649", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7553407-1", "source": "GND"}], "variant_access_point": ["ChiVidunda", "KiVidunda", "Ndunda"], "authorized_access_point": "Vidunda"} 1 +2024-09-11 09:09:09.437703 2024-09-11 09:09:09.437708 9d4824b4-68d4-4674-a542-d0e33080e26e {"md5": "d8cc6074f9d62bf03afb504dbded4e48", "pid": "982125461", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133325802X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh95008717", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh95008717"}], "authorized_access_point": "Prosimians"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133325802X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13571212", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13571212p"}], "authorized_access_point": "Strepsirhiniens"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7551325-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)982125461", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7551325-0", "source": "GND"}], "variant_access_point": ["Strepsirrhini", "Feuchtnasenaffen"], "authorized_access_point": "Strepsirhini"} 1 +2024-09-11 09:09:09.490593 2024-09-11 09:09:09.490597 0936cb18-5d0d-46c4-9c7a-f7f3d4093231 {"md5": "23196fd2951e36cac8b45d0cd530bc46", "pid": "981073328", "note": [{"label": ["Als Homonymenzusatz bei Personenschlagworten zugelassen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kritikerin"}], "related": [{"authorized_access_point": "Theaterkritiker"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331761549", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2010007778", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2010007778"}], "authorized_access_point": "Women theater critics"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7541288-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)981073328", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7541288-3", "source": "GND"}], "authorized_access_point": "Theaterkritikerin"} 1 +2024-09-11 09:09:09.546784 2024-09-11 09:09:09.546788 31b161e1-54b4-4d87-ad9e-ef570e94d06f {"md5": "8f08217c4b451e93f7e2ee7e437bd72b", "pid": "98106521X", "note": [{"label": ["Berufenet - https://berufenet.arbeitsagentur.de/berufenet/faces/index?path=null/suchergebnisse/kurzbeschreibung&dkz=58778&such=Statistiker%2Fin"], "noteType": "dataSource"}, {"label": ["Als Homonymenzusatz bei Personenschlagworten zugelassen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Statistiker"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331756308", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85147716", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85147716"}], "authorized_access_point": "Women statisticians"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7541108-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)98106521X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7541108-8", "source": "GND"}], "authorized_access_point": "Statistikerin"} 1 +2024-09-11 09:09:09.605993 2024-09-11 09:09:09.605997 ea411185-18a6-4697-9e56-4ca5f425d0d1 {"md5": "7fe8328db91f2d8a68ffed67fc286c18", "pid": "980868459", "note": [{"label": ["Als Homonymenzusatz bei Personenschlagworten zugelassen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Medizinisches Personal"}], "related": [{"authorized_access_point": "Hebamme"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7538946-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)980868459", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7538946-0", "source": "GND"}], "variant_access_point": ["Entbindungspfleger", "Geburtshelfer (Männliche Hebamme)"], "authorized_access_point": "Männliche Hebamme"} 1 +2024-09-11 09:09:09.661335 2024-09-11 09:09:09.661338 f5e60f1f-a286-4fe3-888e-7271a0ab95ac {"md5": "2a343cf763f6cff8a8bba4d014d91a4b", "pid": "980347890", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Schlacht_von_Otterburn&oldid=216793433"], "noteType": "dataSource"}, {"label": ["15. August 1388"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schlacht"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134272138", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12317384", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12317384j"}], "authorized_access_point": "Otterburn, Bataille d' (1388)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7532405-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)980347890", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7532405-2", "source": "GND"}], "variant_access_point": ["Battle of Otterburn"], "authorized_access_point": "Schlacht von Otterburn"} 1 +2024-09-11 09:09:09.720831 2024-09-11 09:09:09.720833 6febbc98-72c8-4bbf-a5ae-20839086501c {"md5": "98b4bfe51a8127f1f3964b3281a6b0d5", "pid": "979633079", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=DR-Baureihe_ET_165&oldid=221388856"], "noteType": "dataSource"}, {"label": ["Elektrischer Triebwagen, der von 1928 bis 1932 für die Berliner S-Bahn gebaut wurde"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Elektrotriebwagen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7526925-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)979633079", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7526925-9", "source": "GND"}], "variant_access_point": ["Stadtbahner", "DR-Baureihe ET 165", "Baureihe 275 (DR)", "Baureihe 475 (DB)"], "authorized_access_point": "Elektrotriebwagen Baureihe ET 165"} 1 +2024-09-11 09:09:09.772156 2024-09-11 09:09:09.772159 e804fb94-743b-4c0b-973f-8983cf555869 {"md5": "4ade0ad17b7bc0a83b7c607aad14cd7b", "pid": "979217253", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fertigung"}], "related": [{"authorized_access_point": "Mikrosystemtechnik"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7523640-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)979217253", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7523640-0", "source": "GND"}], "variant_access_point": ["Mikrofertigungsverfahren"], "authorized_access_point": "Mikrofertigung"} 1 +2024-09-11 09:09:09.828716 2024-09-11 09:09:09.828721 f4f4a159-00bc-4a15-9ae4-a9c8060c63bc {"md5": "640dfca43d867744db28449d4751d63c", "pid": "979214998", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Manifest"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333996292", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2016001208", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2016001208"}], "authorized_access_point": "Art manifestos"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333996292", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12536532", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12536532c"}], "authorized_access_point": "Manifestes littéraires et artistiques"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7523608-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)979214998", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7523608-4", "source": "GND"}], "variant_access_point": ["Manifest"], "authorized_access_point": "Künstlerisches Manifest"} 1 +2024-09-11 09:09:09.887989 2024-09-11 09:09:09.887994 0cb0e05e-aa6c-4ac1-997e-09c8ef299474 {"md5": "3537f7e6c62fb63aa7a66bc03d6c6528", "pid": "977813762", "note": [{"label": ["Familie d. Barschartigen Fische im Atlantik, Pazifik u. Indischen Ozean"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333377096", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85040688", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85040688"}], "authorized_access_point": "Echeneidae"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333377096", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17153281", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17153281f"}], "authorized_access_point": "Échénéidés"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7500175-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)977813762", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7500175-5", "source": "GND"}], "variant_access_point": ["Kopfsauger", "Echeneidae"], "authorized_access_point": "Schiffshalter"} 1 +2024-09-11 09:09:09.940521 2024-09-11 09:09:09.940525 b2bebf4b-5124-425d-a028-66211bccfdf9 {"md5": "86e3d428d10ddbe14708327a471d7994", "pid": "977682633", "note": [{"label": ["Sufiorden in Zentralasien"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sufi-Bruderschaft"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4998520-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)977682633", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4998520-6", "source": "GND"}], "variant_access_point": ["Kubravi", "Kubrāviya", "Kubrawiyya", "Kubraviyya", "Kubrawīya", "Kübreviyye"], "authorized_access_point": "Kubrawi"} 1 +2024-09-11 09:09:09.992642 2024-09-11 09:09:09.992646 eacc3484-32d5-420f-b444-5f046640b408 {"md5": "0effac53abdc4d228b6670a3297258b6", "pid": "977294390", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sichtfeld"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4997436-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)977294390", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4997436-1", "source": "GND"}], "authorized_access_point": "Toter Winkel"} 1 +2024-09-11 09:09:10.047278 2024-09-11 09:09:10.047282 7e8cacaf-545a-4045-8eb5-1f14555e3581 {"md5": "ab03585fa3788d9124bb72816280a4c0", "pid": "976865351", "note": [{"label": ["Art der Lippfische (Labridae); Putzerfisch"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Lippfische"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333266111", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17803725", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17803725h"}], "authorized_access_point": "Crénilabre paon"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4847293-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)976865351", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4847293-1", "source": "GND"}], "variant_access_point": ["Pfauenlippfisch"], "authorized_access_point": "Symphodus tinca"} 1 +2024-09-11 09:09:10.110745 2024-09-11 09:09:10.11075 feee8011-f67e-42a4-ae32-f139483a9951 {"md5": "c58eba599945023e1a62646bcd071bde", "pid": "976859416", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Meerbarben"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333450095", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17804174", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb178041749"}], "authorized_access_point": "Rouget de roche"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4847270-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)976859416", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4847270-0", "source": "GND"}], "variant_access_point": ["Mullus surmuletus"], "authorized_access_point": "Gestreifte Meerbarbe"} 1 +2024-09-11 09:09:10.180322 2024-09-11 09:09:10.180326 63d0d948-a2b2-4249-818a-4136deae3114 {"md5": "6dd0a108851399bc4530cd256354b662", "pid": "976009048", "note": [{"label": ["Familie der Barschartigen Fische"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333484488", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85104687", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85104687"}], "authorized_access_point": "Polynemidae"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333484488", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17157668", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb171576689"}], "authorized_access_point": "Polynemidae"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4838008-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)976009048", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4838008-8", "source": "GND"}], "variant_access_point": ["Polynemidae", "Fingerfische"], "authorized_access_point": "Fädlerfische"} 1 +2024-09-11 09:09:10.241043 2024-09-11 09:09:10.241047 fe3d4d6b-3c64-46d7-99d3-ec960deb9f4d {"md5": "d42edfcefb070bb64c63f3df54821213", "pid": "975670824", "note": [{"label": ["für das Beschwerdemanagement verknüpfe mit Kundenmanagement, Servicepolitik o.ä."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Retoure"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113450019X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85031477", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85031477"}], "authorized_access_point": "Consumer complaints"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113450019X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16582482", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb165824828"}], "authorized_access_point": "Réclamations clients"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254479023", "source": "GND"}, {"type": "bf:Nbn", "value": "XX547082", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX547082"}], "authorized_access_point": "Reclamaciones de consumo"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)975677063", "source": "GND"}, {"type": "bf:Nbn", "value": "19134-5", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/19134-5"}], "authorized_access_point": "Beschwerdemanagement"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)975677306", "source": "GND"}, {"type": "bf:Nbn", "value": "10056526", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10056526"}], "authorized_access_point": "Reklamation"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4834499-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)975670824", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4834499-0", "source": "GND"}], "variant_access_point": ["Beschwerde (Reklamation)", "Verbraucherbeschwerde", "Verbraucherreklamation", "Verbraucher", "Verbraucher", "Kundenbeschwerde", "Kundenreklamation", "Kunde", "Kunde", "Complaint"], "authorized_access_point": "Reklamation"} 1 +2024-09-11 09:09:10.299797 2024-09-11 09:09:10.299802 5947c7a3-6362-4799-8c78-5d6e983a551f {"md5": "1dcbb925d2ae9db4e3ee9ab73ca74943", "pid": "975199056", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "RAM"}, {"authorized_access_point": "Nichtflüchtiger Speicher"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134626886", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85047879", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85047879"}], "authorized_access_point": "Ferroelectric storage cells"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4830042-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)975199056", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4830042-1", "source": "GND"}], "variant_access_point": ["FeRAM", "F-RAM", "Ferroelectric random access memory", "Ferroelectric RAM", "Ferroelektrischer Speicher mit wahlfreiem Zugriff"], "authorized_access_point": "FRAM (Informatik)"} 1 +2024-09-11 09:09:10.355536 2024-09-11 09:09:10.355539 49b9d983-77b1-4f25-9394-6d91e2b1d745 {"md5": "5362ca31c9b9eb50b020e548f2924748", "pid": "97466068X", "note": [{"label": ["Der kontrollierten Versuch (\\"gelenktes Hacking\\") , von außen in ein bestimmtes Computersystem bzw. -netzwerk einzudringen, um Schwachstellen zu identifizieren. Dazu werden die gleichen bzw. ähnliche Techniken eingesetzt, die auch bei einem realen Angriff verwendet werden. (Bundesamt für Sicherheit in der Informationstechnik)", "Für das Erkennen versuchter Angriffe verwende Eindringerkennung."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Computersicherheit"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334217106", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2011003137", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2011003137"}], "authorized_access_point": "Penetration testing (Computer security)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334217106", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17163606", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb171636060"}], "authorized_access_point": "Tests d'intrusion (informatique)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4825817-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)97466068X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4825817-9", "source": "GND"}], "variant_access_point": ["Penetration Testing", "Pen-Test"], "authorized_access_point": "Penetrationstest"} 1 +2024-09-11 09:09:10.409347 2024-09-11 09:09:10.409349 bb41fea4-67a4-45e6-bec4-3314534827b3 {"md5": "b2a2b223eb4df2a50981876d0eb81775", "pid": "974476560", "note": [{"label": ["ursprüngl. von den USA ausgehende Evangelisationsbewegung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Evangelikale Bewegung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331867320", "source": "GND"}, {"type": "bf:Nbn", "value": "sh00006530", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00006530"}], "authorized_access_point": "Lighthouse movement"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4824680-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)974476560", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4824680-3", "source": "GND"}], "variant_access_point": ["Discipling A Whole Nation", "Lighthouse-Bewegung", "DAWN-Bewegung", "DAWN-Strategie", "Lighthouse Movement"], "authorized_access_point": "Leuchthaus-Bewegung"} 1 +2024-09-11 09:09:10.46907 2024-09-11 09:09:10.469076 bb1c9f56-ba3a-450d-857c-e3d11a4141ed {"md5": "0723c75659ead86971b9b2f6d328b83a", "pid": "974160032", "note": [{"label": ["1957 von Max Miedinger für die Haas'sche Schriftgiesserei in Basel entwickelte serifenlose Schrift. 1960 Umbenennung in Helvetica", "Benutzt für alle Helvetica-Schriften. Einzelne Helvetica-Schriften werden getrennt angesetzt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Groteskschrift"}], "related": [{"authorized_access_point": "Neue Haas-Grotesk"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134800983", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2010012863", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2010012863"}], "authorized_access_point": "Helvetica type"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134800983", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16084551", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16084551w"}], "authorized_access_point": "Caractères Helvetica"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4819794-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)974160032", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4819794-4", "source": "GND"}], "authorized_access_point": "Helvetica (Druckschrift)"} 1 +2024-09-11 09:09:11.748994 2024-09-11 09:09:11.748996 bf1312e2-9689-4bdb-b878-8d9e8ff9105c {"md5": "dce2971cad2f34256d1a00322090c3b2", "pid": "96717757X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Metallbauteil"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4725280-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)96717757X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4725280-7", "source": "GND"}], "variant_access_point": ["Eisen", "Eisen"], "authorized_access_point": "Eisenbauteil"} 1 +2024-09-11 09:09:10.526765 2024-09-11 09:09:10.526769 28199adc-a8d3-4c1a-8591-3137bf2010de {"md5": "6ecfcdb8e959cd66391e5cd5d0c21772", "pid": "97397687X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kapuzineraffenartige"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133818668", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85014575", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85014575"}], "authorized_access_point": "Black howler monkey"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133818668", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12509694", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb125096949"}], "authorized_access_point": "Hurleur noir"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4817251-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)97397687X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4817251-0", "source": "GND"}], "variant_access_point": ["Alouatta caraya", "Caraya"], "authorized_access_point": "Schwarzer Brüllaffe"} 1 +2024-09-11 09:09:10.591046 2024-09-11 09:09:10.591052 03fc7459-704a-4e2f-a774-3ad771178e6d {"md5": "182e20684b67a3758d0437ac0fb81cfb", "pid": "972616705", "note": [{"label": ["Benutzt, soweit außerhalb von Tunesien, sonst verknüpfe Tunesien ; Frau"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ausländerin"}], "related": [{"authorized_access_point": "Tunesier"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134403763", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85138663", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85138663"}], "authorized_access_point": "Tunisians"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134403763", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF14412750", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb14412750k"}], "authorized_access_point": "Tunisiennes"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1011431920", "source": "GND"}, {"type": "bf:Nbn", "value": "26827-4", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/26827-4"}], "authorized_access_point": "Tunesier"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4801057-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)972616705", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4801057-1", "source": "GND"}], "variant_access_point": ["Tunesische Frau"], "authorized_access_point": "Tunesierin"} 1 +2024-09-11 09:09:10.651207 2024-09-11 09:09:10.65121 b89e8c74-b696-46a9-9277-9663fc2059a4 {"md5": "aecf1032c164af645854a128fd69916b", "pid": "972391010", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tumor"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4796842-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)972391010", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4796842-4", "source": "GND"}], "variant_access_point": ["Germinaler Tumor"], "authorized_access_point": "Keimzelltumor"} 1 +2024-09-11 09:09:10.708065 2024-09-11 09:09:10.708069 433ec3c7-917f-4b55-8987-78fa2af5db65 {"md5": "3682ec5488c476e2b6b6bf54f108f1b5", "pid": "971044899", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kapuzineraffenartige"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133326125X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85021897", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85021897"}], "authorized_access_point": "Central American spider monkey"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4779167-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)971044899", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4779167-6", "source": "GND"}], "variant_access_point": ["Ateles geoffroyi"], "authorized_access_point": "Geoffroy-Klammeraffe"} 1 +2024-09-11 09:09:10.762524 2024-09-11 09:09:10.762528 db8d677a-c32c-402c-9ed4-1a2a1bf09cd8 {"md5": "9d2abd87482d924363e0c4091889a168", "pid": "970758065", "note": [{"label": ["Religiöses Fest der anatolischen Alewiten und Bektaschiten in Verbindung mit Tanz und Alkoholgenuss"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Religiöses Fest"}], "related": [{"authorized_access_point": "Bektaschismus"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4774342-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)970758065", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4774342-6", "source": "GND"}], "variant_access_point": ["Cem Ayini", "Ayinü'l-cem"], "authorized_access_point": "Ayin-i Cem"} 1 +2024-09-11 09:09:10.821733 2024-09-11 09:09:10.821738 91acdc15-453a-406b-943c-aab0397f90d8 {"md5": "33de2e9a532948db010f63d9178e637f", "pid": "970679645", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Lattice-Boltzmann-Methode"], "noteType": "dataSource"}, {"label": ["Numerisches Verfahren zur Simulation von Strömungs- und Transportvorgängen. Die Simulation wird auf der Teilchenebene durchgeführt. Dabei werden im Gegensatz zu den Lattice-Gas-Verfahren keine binären Teilchen sondern kontinuierliche Teilchendichten verwendet."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Numerisches Verfahren"}], "related": [{"authorized_access_point": "Numerische Strömungssimulation"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134532490", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2008008129", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2008008129"}], "authorized_access_point": "Lattice Boltzmann methods"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134532490", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF18052725", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb180527252"}], "authorized_access_point": "Méthode de Boltzmann sur réseau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4772570-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)970679645", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4772570-9", "source": "GND"}], "variant_access_point": ["Gitter-Boltzmann-Verfahren", "Lattice-Boltzmann-Methode", "Lattice-Boltzmann-Verfahren", "Lattice Boltzmann Method", "LBM"], "authorized_access_point": "Gitter-Boltzmann-Methode"} 1 +2024-09-11 09:09:13.457205 2024-09-11 09:09:13.457209 b34a6bd9-538f-4d77-b058-bd9d47c81834 {"md5": "0faa18eea6937ee6a983d11c6eb19349", "pid": "963127608", "note": [{"label": ["Oberster dän. Orden; gültige Form mit d. Statuen v. 1693 festgelegt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Orden (Ehrenzeichen)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4659956-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963127608", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4659956-3", "source": "GND"}], "authorized_access_point": "Elefantenorden"} 1 +2024-09-11 09:09:10.877756 2024-09-11 09:09:10.87776 7a537c77-652d-494d-a8a6-050aebe77d12 {"md5": "5b44e347ec912af5f75cea8f6555a1ef", "pid": "970190417", "note": [{"label": ["Fischart"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Aalmuttern (Familie)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113483294X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85149936", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85149936"}], "authorized_access_point": "Zoarces viviparus"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113483294X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17810619", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17810619s"}], "authorized_access_point": "Loquette d'Europe"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4767596-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)970190417", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4767596-2", "source": "GND"}], "variant_access_point": ["Zoarces viviparus"], "authorized_access_point": "Aalmutter"} 1 +2024-09-11 09:09:10.937194 2024-09-11 09:09:10.937198 746084cb-5ad8-4ed6-a25f-097eccdcf475 {"md5": "23690fc23b1f5a321404e1699f9f05ca", "pid": "969678363", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4760319-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)969678363", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4760319-7", "source": "GND"}], "variant_access_point": ["Mehrgeschlecht", "Plurigenus"], "authorized_access_point": "Plurigeschlecht"} 1 +2024-09-11 09:09:10.991264 2024-09-11 09:09:10.991267 c9f63ad7-0568-47eb-ac99-8b5636c16436 {"md5": "be494cd4f02806b8ed490eb7508ef0c6", "pid": "969131240", "note": [{"label": ["Art der Labyrinthfische"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333960581", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17797530", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb177975306"}], "authorized_access_point": "Anabas testudineus"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4752661-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)969131240", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4752661-0", "source": "GND"}], "variant_access_point": ["Kletterbarsch", "Anabas testudineus"], "authorized_access_point": "Kletterfisch"} 1 +2024-09-11 09:09:11.052772 2024-09-11 09:09:11.05278 c3ddd3be-616d-4d89-b45e-d53093b9960f {"md5": "e40857e85cd60e9241be20a9f3dccd32", "pid": "968663664", "note": [{"label": ["Satir. Gattung der frz. Renaissancedichtung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Satirische Lyrik"}], "related": [{"authorized_access_point": "Französisch"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134067267", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11980993", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11980993t"}], "authorized_access_point": "Coq-à-l'âne"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4744950-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)968663664", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4744950-0", "source": "GND"}], "variant_access_point": ["Französisch"], "authorized_access_point": "Coq-à-l'âne"} 1 +2024-09-11 09:09:11.131398 2024-09-11 09:09:11.131402 cbbac589-92a9-4e7e-8c36-c5fcc2a7ed90 {"md5": "c8b74e29c1c9072cc50f0fc4681dcf2f", "pid": "968634737", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4744435-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)968634737", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4744435-6", "source": "GND"}], "variant_access_point": ["Chipkarte"], "authorized_access_point": "Chipkartenherstellung"} 1 +2024-09-11 09:09:11.186186 2024-09-11 09:09:11.18619 958680b6-70e6-45f4-be5b-e2b3dbd8109d {"md5": "3ded776044acf1fc2957dc0c4eb07cdd", "pid": "968438121", "note": [{"label": ["Fischart"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sonnenbarsche (Familie)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333375506", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85074713", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85074713"}], "authorized_access_point": "Largemouth bass"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333375506", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17800601", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17800601h"}], "authorized_access_point": "Black-bass à grande bouche"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4741261-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)968438121", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4741261-6", "source": "GND"}], "variant_access_point": ["Micropterus salmoides"], "authorized_access_point": "Forellenbarsch"} 1 +2024-09-11 09:09:11.245261 2024-09-11 09:09:11.245266 371eea2a-f474-40cb-9fa8-9260bbd6391d {"md5": "9f9093468238019d3df30fa5deb8ba9d", "pid": "968387705", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kegel"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4740628-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)968387705", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4740628-8", "source": "GND"}], "authorized_access_point": "Elliptischer Kegel"} 1 +2024-09-11 09:09:11.298208 2024-09-11 09:09:11.298213 35c0b581-09ab-4059-a3f4-be72cf38bfed {"md5": "b1ec5994d65d346fa9104269c256e8e7", "pid": "968377955", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Dissident"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113450991X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17766693", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17766693h"}], "authorized_access_point": "Dissidentes"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4740335-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)968377955", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4740335-4", "source": "GND"}], "authorized_access_point": "Dissidentin"} 1 +2024-09-11 09:09:11.355852 2024-09-11 09:09:11.355856 f47e3fbe-439d-4d90-9dce-bc8c9b591433 {"md5": "903bea04b693efdae890c91f35dbcb3b", "pid": "968360009", "note": [{"label": ["B 1996, Internet - http://www.abenteuerreisen.de/wg/mh/wg_mh__rf09__01.htm"], "noteType": "dataSource"}, {"label": ["Dünne, gespleißte Bambusstäbe und kleine Kaurischnecken, von feinen Pandanusblatt-Streifen zusammengehalten. Mit ihnen versuchten erfahrene Navigatoren auf den Marshallinseln ihr profundes Wissen an andere Mitglieder ihres Clans weiterzugeben."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Seekarte"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4740073-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)968360009", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4740073-0", "source": "GND"}], "variant_access_point": ["Stäbchenkarte"], "authorized_access_point": "Stabkarte"} 1 +2024-09-11 09:09:11.40866 2024-09-11 09:09:11.408664 baf4259d-bd88-4c2d-bd4b-5926d4208a65 {"md5": "e2a0284b5449ffbde232b0771324c3f9", "pid": "96832780X", "note": [{"label": ["Platz vor einer Kirche"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Platz"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334557888", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12349199", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb123491994"}], "authorized_access_point": "Parvis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4739584-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)96832780X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4739584-9", "source": "GND"}], "variant_access_point": ["Kirchenplatz"], "authorized_access_point": "Kirchplatz"} 1 +2024-09-11 09:09:11.467672 2024-09-11 09:09:11.467677 d8a4e0b9-c565-4d45-aba2-3a5d036651a4 {"md5": "7fb874053ff876421507344e04664f59", "pid": "967876710", "note": [{"label": ["Empfindung des Cybernauten (= Benutzer einer virtuellen Welt), Teil der virtuellen Welt zu sein"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Telepräsenz"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134758278", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2006004463", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2006004463"}], "authorized_access_point": "Shared virtual environments"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4736034-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)967876710", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4736034-3", "source": "GND"}], "variant_access_point": ["Präsenzerleben", "Virtuelle Realität (Virtuelle Realität)"], "authorized_access_point": "Immersion (Virtuelle Realität)"} 1 +2024-09-11 09:09:11.523936 2024-09-11 09:09:11.52394 5a0158b5-a3b8-47b0-ad49-2973636ec45a {"md5": "160aa41ae3d0cf6d0e2ed35a309c58bb", "pid": "967734657", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Onkologie"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4733618-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)967734657", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4733618-3", "source": "GND"}], "variant_access_point": ["Primäre Mehrfachmalignome", "Multiple malignant tumors"], "authorized_access_point": "Mehrfachmalignom"} 1 +2024-09-11 09:09:11.575834 2024-09-11 09:09:11.57584 986f7d4b-a41d-4bc7-ae7e-50ab4b5a2a96 {"md5": "4b3d3494ddc9651439240c10211c91e4", "pid": "967659523", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Stab"}, {"authorized_access_point": "Leuchte"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333320264", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17135690", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17135690k"}], "authorized_access_point": "Flambeaux"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4732668-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)967659523", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4732668-2", "source": "GND"}], "authorized_access_point": "Fackel"} 1 +2024-09-11 09:09:11.63615 2024-09-11 09:09:11.636153 7227f684-02b1-4c79-aa65-abc55e7b89ce {"md5": "ee2a49647e815ab0167e349845223b3f", "pid": "967617987", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Cobia&oldid=183936477"], "noteType": "dataSource"}, {"label": ["Fischart"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133348514X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh93003516", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh93003516"}], "authorized_access_point": "Cobia"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133348514X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17157745", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17157745x"}], "authorized_access_point": "Mafou"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4731987-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)967617987", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4731987-2", "source": "GND"}], "variant_access_point": ["Rachycentron canadum", "Cobia", "Kobia", "Königsfisch", "Offiziersbarsch"], "authorized_access_point": "Königsbarsch"} 1 +2024-09-11 09:09:11.690761 2024-09-11 09:09:11.690765 051afb06-4e05-4917-a194-1dfa1b8093c1 {"md5": "2e05b2b0dc3c1ee48be282f5c74e945f", "pid": "967326133", "note": [{"label": ["wikipedia - https://de.wikipedia.org/w/index.php?title=Selbst%C3%BCbersetzung&oldid=208077138"], "noteType": "dataSource"}, {"label": ["Übersetzung eines Werkes durch seinen Autor"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Übersetzung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133156462X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2015002455", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2015002455"}], "authorized_access_point": "Self-translation"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4727899-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)967326133", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4727899-7", "source": "GND"}], "variant_access_point": ["Selbstübersetzung", "Ipsoübersetzung"], "authorized_access_point": "Eigenübersetzung"} 1 +2024-09-11 09:09:11.80258 2024-09-11 09:09:11.802583 bb35a9c8-5119-49ea-af88-4d064f082a1e {"md5": "a5a133c0d40b0c2a82412a3bf068bd50", "pid": "967169399", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tourismus"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134501994", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17047235", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17047235v"}], "authorized_access_point": "Tourisme de bien être"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1019769505", "source": "GND"}, {"type": "bf:Nbn", "value": "29062-5", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/29062-5"}], "authorized_access_point": "Gesundheitstourismus"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4725163-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)967169399", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4725163-3", "source": "GND"}], "variant_access_point": ["Wellness", "Gesundheitstourismus", "Gesundheit", "Gesundheitsorientierter Urlaub"], "authorized_access_point": "Wellnesstourismus"} 1 +2024-09-11 09:09:11.861642 2024-09-11 09:09:11.861645 7f918fb3-b818-45fa-961f-5fd73575cd7f {"md5": "43f7db7727456c68c63ffc5c0775d7eb", "pid": "967155223", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Virtuose"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133859593", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13510667", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13510667k"}], "authorized_access_point": "Solistes (musiciens)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4724917-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)967155223", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4724917-1", "source": "GND"}], "authorized_access_point": "Solist"} 1 +2024-09-11 09:09:11.923143 2024-09-11 09:09:11.923146 9398f642-a846-4f5f-833e-977def2821db {"md5": "797e1c7582848a227de4ffbd877a9f95", "pid": "966649052", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Nichtlineare parabolische Differentialgleichung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333589484", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16605436", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16605436b"}], "authorized_access_point": "Équations de Cahn-Hilliard"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4723055-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)966649052", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4723055-1", "source": "GND"}], "variant_access_point": ["Cahn-Hilliard equation"], "authorized_access_point": "Cahn-Hilliard-Gleichung"} 1 +2024-09-11 09:09:11.986174 2024-09-11 09:09:11.986179 34430dec-bf88-494f-8a63-d48988f4acda {"md5": "a9284b20c577b6d806d5367e66237c3e", "pid": "966536304", "note": [{"label": ["Art der Barschartigen Fische"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Lippfische"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333268718", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17803543", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17803543w"}], "authorized_access_point": "Girelle"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4721357-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)966536304", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4721357-7", "source": "GND"}], "authorized_access_point": "Coris julis"} 1 +2024-09-11 09:09:12.045194 2024-09-11 09:09:12.045198 2cee0790-2876-4b20-b44f-0335fd4d6100 {"md5": "0381a1f335c318c5e8bda68295ab1ca0", "pid": "965652785", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Randwertproblem"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333590725", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17773664", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17773664d"}], "authorized_access_point": "Conditions de Robin"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4708822-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)965652785", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4708822-9", "source": "GND"}], "variant_access_point": ["Robin Boundary Value Problem", "Robin Boundary Condition", "Robin-Randbedingung", "Dritte Randbedingung"], "authorized_access_point": "Robin-Randwertproblem"} 1 +2024-09-11 09:09:12.100017 2024-09-11 09:09:12.100022 af769912-80c1-441c-9b34-1c4ea01e20ae {"md5": "27e31c61860f1f02f5864ab191c5bad7", "pid": "965576825", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Intrusion_Detection_System&oldid=188067782"], "noteType": "dataSource"}, {"label": ["Teilgebiet aus dem IT-Sicherheitsbereich. Methoden und (Software-)Systeme, mit deren Hilfe Angriffe auf Rechnersysteme erkannt werden können.", "Für Systeme zur Erkennung physischer Eindringversuche auf ein Gelände, in ein Gebäude oder in einen Raum verwende Einbruchmeldeanlage"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Computersicherheit"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334216967", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2010008203", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2010008203"}], "authorized_access_point": "Intrusion detection systems (Computer security)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334216967", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17163602", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17163602m"}], "authorized_access_point": "Systèmes de détection d'intrusion (informatique)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4706627-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)965576825", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4706627-1", "source": "GND"}], "variant_access_point": ["Intrusion Detection", "Einbruchserkennung (Informatik)", "Erkennen von Eindringversuchen (Informatik)", "Erkennung von Eindringlingen (Informatik)", "Intruder Detection", "Angriffserkennungssystem", "Eindring-Erkennungssystem", "Intrusion Detection System", "IDS (Informatik)", "Eindringerkennungssystem"], "authorized_access_point": "Eindringerkennung"} 1 +2024-09-11 09:09:13.333313 2024-09-11 09:09:13.333319 50ee92c5-1421-4a7f-bf36-58664213c7cb {"md5": "913dadb82b152a401d684f5e9e8e35b8", "pid": "963483927", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Altersversorgung"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966914562", "source": "GND"}, {"type": "bf:Nbn", "value": "18739-4", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/18739-4"}], "authorized_access_point": "Private Altersvorsorge"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4665610-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963483927", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4665610-8", "source": "GND"}], "variant_access_point": ["Private Alterssicherung", "Riester-Rente", "Private Altersvorsorge"], "authorized_access_point": "Private Altersversorgung"} 1 +2024-09-11 09:09:12.155247 2024-09-11 09:09:12.15525 27d4ca38-9dc6-4226-a9bb-6c8b31b487a5 {"md5": "4207f03d6d295db538756e2d8ba0acd5", "pid": "965369846", "note": [{"label": ["Kombiniere mit Sprachbezeichnung und Wortart, z.B. SWW Deutsch ; Adjektiv ; groß"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134009992", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2012004781", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2012004781"}], "authorized_access_point": "Gross (The German word)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134009992", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11965640", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119656406"}], "authorized_access_point": "Gross (le mot allemand)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4702395-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)965369846", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4702395-8", "source": "GND"}], "authorized_access_point": "groß"} 1 +2024-09-11 09:09:12.209745 2024-09-11 09:09:12.209749 f8dc241c-5664-4868-8afb-684584914c4d {"md5": "061deb0f263404f7852b4f01564770de", "pid": "965367924", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Volkstanz"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134405928", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85116888", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85116888"}], "authorized_access_point": "Saltarellos"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134405928", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF14418759", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb144187594"}], "authorized_access_point": "Saltarelles"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254398546", "source": "GND"}, {"type": "bf:Nbn", "value": "70395", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/70395"}], "authorized_access_point": "Saltarelli"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4702316-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)965367924", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4702316-8", "source": "GND"}], "variant_access_point": ["Passo brabante", "Pas de breban", "Alta danza", "Hupfauff", "Hupfauf", "Springtanz", "Nachtanz", "Tripla"], "authorized_access_point": "Saltarello"} 1 +2024-09-11 09:09:12.264016 2024-09-11 09:09:12.26402 4c2b8abe-0cd9-4c38-be81-7833900897d9 {"md5": "927b1321ac7c6f44151b312d4a79177d", "pid": "965252973", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung und hier nicht permutierender Wortart; z.B. SWW Amerikanisches Englisch ; Interjektion ; O.K."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4699958-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)965252973", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4699958-9", "source": "GND"}], "variant_access_point": ["O. K.", "okay"], "authorized_access_point": "O.K."} 1 +2024-09-11 09:09:12.321376 2024-09-11 09:09:12.321379 01aaf7eb-65c1-4cb6-9293-75c3945d7cef {"md5": "cc62ed1034f2b2350caade0c15c7e8db", "pid": "964979683", "note": [{"label": ["Dän.-schwed. Krieg 1675-1679"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Krieg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4695869-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)964979683", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4695869-1", "source": "GND"}], "authorized_access_point": "Schonischer Krieg"} 1 +2024-09-11 09:09:12.391443 2024-09-11 09:09:12.391448 367751bd-d7e0-40cc-8fb4-a610814375e1 {"md5": "2fdad8e35365a19657ef0af7004030ca", "pid": "964866862", "note": [{"label": ["In der politischen Auseinandersetzung international gebräuchlich gewordene Bezeichnung für Staaten, deren Politik als unberechenbar und friedensgefährdend betrachtet wird"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Staat"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331527570", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16772002", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16772002t"}], "authorized_access_point": "États voyous"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4692880-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)964866862", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4692880-7", "source": "GND"}], "variant_access_point": ["Rogue State"], "authorized_access_point": "Schurkenstaat"} 1 +2024-09-11 09:09:12.461104 2024-09-11 09:09:12.461108 f792a5ed-8008-4fdc-a5cc-ab897fd00e23 {"md5": "2dd4a2da97628aced7ea6b2808f3762b", "pid": "964848651", "note": [{"label": ["Altweltlich-tropische Gattung der Johanniskrautgewächse"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134521839", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85053063", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85053063"}], "authorized_access_point": "Garcinia"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134521839", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16649644", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb166496449"}], "authorized_access_point": "Garcinia"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256215473", "source": "GND"}, {"type": "bf:Nbn", "value": "3190", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_3190"}], "authorized_access_point": "Garcinia"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4692790-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)964848651", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4692790-6", "source": "GND"}], "authorized_access_point": "Garcinia"} 1 +2024-09-11 09:09:13.404846 2024-09-11 09:09:13.40485 5c738cc0-3ecb-42ca-8e6b-fd81a5d2b465 {"md5": "82976cce95be23d95fffe38e0f7db17e", "pid": "96317066X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Manufaktur"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4661091-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)96317066X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4661091-1", "source": "GND"}], "variant_access_point": ["Spiegelglas"], "authorized_access_point": "Spiegelglasmanufaktur"} 1 +2024-09-11 09:09:12.52657 2024-09-11 09:09:12.526574 2f2d4177-c176-480d-b021-b98e51aad3d8 {"md5": "a85ef1a82974d7904ea1da51f77e0f22", "pid": "96473222X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Numerische Mathematik"}, {"authorized_access_point": "Fluiddynamik"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1281121487", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17104887", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17104887c"}], "authorized_access_point": "Modélisation CFD"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1281121487", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2007008173", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2007008173"}], "authorized_access_point": "Computational fluid dynamics"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4690080-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)96473222X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4690080-9", "source": "GND"}], "variant_access_point": ["CFD", "Computational fluid dynamics", "Numerische Strömungsmechanik", "Strömungsmechanik"], "authorized_access_point": "Numerische Strömungssimulation"} 1 +2024-09-11 09:09:12.600362 2024-09-11 09:09:12.600367 c05b551e-8ea1-415e-ac30-43473b4a8848 {"md5": "5fccda872780bc3151b9bcbf0c7b3fa1", "pid": "964720272", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Messer"}, {"authorized_access_point": "Jagdwaffe"}, {"authorized_access_point": "Hieb- und Stoßwaffe"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334235244", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17711271", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17711271v"}], "authorized_access_point": "Couteaux de chasse"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4689877-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)964720272", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4689877-3", "source": "GND"}], "authorized_access_point": "Jagdmesser"} 1 +2024-09-11 09:09:12.685908 2024-09-11 09:09:12.685914 f443e8f1-8564-4c8a-b3d6-5774dd2575fa {"md5": "f258fa42fdcd17ec98b64d3f92760999", "pid": "964519194", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Messer"}, {"authorized_access_point": "Hieb- und Stoßwaffe"}], "related": [{"authorized_access_point": "Dolch"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334551006", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2002007547", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2002007547"}], "authorized_access_point": "Cutlasses"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334551006", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16672701", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb166727017"}], "authorized_access_point": "Couteaux de combat"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4686440-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)964519194", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4686440-4", "source": "GND"}], "variant_access_point": ["Kampf-Messer", "Taktisches Einsatzmesser"], "authorized_access_point": "Kampfmesser"} 1 +2024-09-11 09:09:12.744114 2024-09-11 09:09:12.744118 654b467d-e892-4247-8dcb-5aae0a7dc0ac {"md5": "daf76e38e824dbd5502e5428cdfb768e", "pid": "964421062", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Becher"}, {"authorized_access_point": "Essgeschirr"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133852424", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85041219", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85041219"}], "authorized_access_point": "Eggcups"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133852424", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13335794", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb133357941"}], "authorized_access_point": "Coquetiers"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4684942-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)964421062", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4684942-7", "source": "GND"}], "authorized_access_point": "Eierbecher"} 1 +2024-09-11 09:09:12.810171 2024-09-11 09:09:12.810177 fada3ef4-d14c-4d88-ac4b-2e1f0ab1d079 {"md5": "ae51212867ed59568647c8353a03b533", "pid": "964339676", "note": [{"label": ["Zusammenklappbarer Fächer mit Gestell aus Stäben, die durch ein gefaltetes Blatt (meist aus Papier) miteinander verbunden sind."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fächer"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4683225-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)964339676", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4683225-7", "source": "GND"}], "authorized_access_point": "Faltfächer"} 1 +2024-09-11 09:09:12.879285 2024-09-11 09:09:12.87929 5750685c-b91e-4e3b-b478-a9c409a66552 {"md5": "6458a201774e2f762dbc6b6bdcd8e920", "pid": "964334666", "note": [{"label": ["Art der Makrelen (Scombridae)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Makrelen und Thunfische"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333371233", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85025467", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85025467"}], "authorized_access_point": "Chub mackerel"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333371233", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17807471", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17807471t"}], "authorized_access_point": "Maquereau espagnol"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4683068-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)964334666", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4683068-6", "source": "GND"}], "variant_access_point": ["Scomber japonicus", "Scomber japonicus japonicus", "Pneumatophorus japonicus", "Pneumatophorus colias", "Thunmakrele", "Chub mackerel"], "authorized_access_point": "Mittelmeer-Makrele"} 1 +2024-09-11 09:09:12.951553 2024-09-11 09:09:12.951556 3f8eaf3e-d33b-476e-adf0-c932be0b643d {"md5": "f71d5f2e8e9054eceff6a9f07f5ed53d", "pid": "964248026", "note": [{"label": ["GTP-bindende Proteine; Regulatoren für Zellfunktionen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kleine GTP-bindende Proteine"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133811779", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12488550", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12488550n"}], "authorized_access_point": "GTPases Rho"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4681926-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)964248026", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4681926-5", "source": "GND"}], "variant_access_point": ["Rho-GTPasen", "Rho-GTPase", "Rho-Guanosintriphosphatasen", "Rho-Guanin-Triphosphatasen", "EC 3.6.5.2", "P21 (rho)Protein", "Rho G-Proteins", "Rho GTP-Binding Protein", "Rho GTPases", "Rho Protein P21", "Rho Small GTP-Binding Proteins"], "authorized_access_point": "Rho-Proteine"} 1 +2024-09-11 09:09:13.018343 2024-09-11 09:09:13.018348 67909ea5-de63-4c77-805a-4d7c90e495bb {"md5": "a322bfff6655e6a56ab89bb92e445971", "pid": "964078880", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Riesenschlangen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134673639", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15046308", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15046308q"}], "authorized_access_point": "Python vert"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4678979-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)964078880", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4678979-0", "source": "GND"}], "variant_access_point": ["Chondropython viridis", "Morelia viridis"], "authorized_access_point": "Grüner Baumpython"} 1 +2024-09-11 09:09:13.094504 2024-09-11 09:09:13.094509 cd91d663-3a42-4eb4-a56c-236c562fce02 {"md5": "8bcadbbd9ca9e2a25c727fe561d7aac5", "pid": "963708708", "note": [{"label": ["Familie der Barschfische"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333377517", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85057550.html", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85057550.html"}], "authorized_access_point": "Grunts (Fishes)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333377517", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16593896", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16593896h"}], "authorized_access_point": "Haemulidae"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4670781-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963708708", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4670781-5", "source": "GND"}], "variant_access_point": ["Pomadasyidae", "Grunzer", "Haemulidae"], "authorized_access_point": "Süßlippen"} 1 +2024-09-11 09:09:13.169127 2024-09-11 09:09:13.169131 6c7d4672-14a7-4e5b-9328-96849bb39434 {"md5": "6fbedff0740e6bb7a39715eeb02a91ab", "pid": "963707906", "note": [{"label": ["Fischart"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333376200", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85123762", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85123762"}], "authorized_access_point": "Snook"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333376200", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17798724", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb177987242"}], "authorized_access_point": "Centropomus undecimalis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4670732-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963707906", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4670732-3", "source": "GND"}], "variant_access_point": ["Centropomus undecimalis"], "authorized_access_point": "Olivgrüner Snook"} 1 +2024-09-11 09:09:13.223059 2024-09-11 09:09:13.223063 6050107e-b5c8-4b11-a6b6-246ae3ac1dc8 {"md5": "538d06c5aef9623dc306f2aa77bad751", "pid": "963707884", "note": [{"label": ["Fischgattung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Meerbarben"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333447876", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85088336", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85088336"}], "authorized_access_point": "Mullus"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333447876", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17093883", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17093883f"}], "authorized_access_point": "Mullus"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256238872", "source": "GND"}, {"type": "bf:Nbn", "value": "4981", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_4981"}], "authorized_access_point": "Mullus"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4670731-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963707884", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4670731-1", "source": "GND"}], "authorized_access_point": "Mullus"} 1 +2024-09-11 09:09:13.278757 2024-09-11 09:09:13.27876 58a58ff8-97c3-4349-aeec-8f101f49ebfa {"md5": "801b809969689850711a91a8dd64881e", "pid": "963495046", "note": [{"label": ["Erklärung des Verzichts auf bestimmte Rechte oder Einreden"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4666004-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963495046", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4666004-5", "source": "GND"}], "variant_access_point": ["Verzichtserklärung", "Einrede", "Verzicht", "Renunziation", "Waiver"], "authorized_access_point": "Renuntiation"} 1 +2024-09-11 09:09:13.570706 2024-09-11 09:09:13.570708 ab08ed04-4be4-4432-93f6-62dff7a6ff9e {"md5": "c036c10fcf094f05d9ac400acc5f9d47", "pid": "963005553", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Makrelen und Thunfische"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134189834", "source": "GND"}, {"type": "bf:Nbn", "value": "sh99004145", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99004145"}], "authorized_access_point": "Atlantic mackerel"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134189834", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12149035", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb121490358"}], "authorized_access_point": "Maquereau"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256234591", "source": "GND"}, {"type": "bf:Nbn", "value": "4498", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_4498"}], "authorized_access_point": "mackerel"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4657894-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963005553", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4657894-8", "source": "GND"}], "variant_access_point": ["Europäische Makrele", "Scomber scrombrus"], "authorized_access_point": "Makrele"} 1 +2024-09-11 09:09:13.62882 2024-09-11 09:09:13.628824 db929409-6c59-459e-a1fc-3c585a4392cd {"md5": "6cb028b64c5b599484618f387e971683", "pid": "962883026", "note": [{"label": ["Als Homonymenzusatz bei Personenschlagwörtern zugelassen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kritikerin"}], "related": [{"authorized_access_point": "Kunstkritiker"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331761115", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85147442", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85147442"}], "authorized_access_point": "Women art critics"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331761115", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13506562", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13506562t"}], "authorized_access_point": "Femmes critiques d'art"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4656207-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)962883026", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4656207-2", "source": "GND"}], "variant_access_point": ["Kunst"], "authorized_access_point": "Kunstkritikerin"} 1 +2024-09-11 09:09:13.689839 2024-09-11 09:09:13.689844 9aa9499b-958a-4f6a-b685-c467c5054609 {"md5": "80f8f33e8cffd7c73ddd1140a10bd269", "pid": "962846104", "note": [{"label": ["Art der Drosseln (Turdidae)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Drosseln"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333493991", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85013886", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85013886"}], "authorized_access_point": "Gray-cheeked thrush"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333493991", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15642549", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15642549x"}], "authorized_access_point": "Grive à joues grises"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4655437-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)962846104", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4655437-3", "source": "GND"}], "authorized_access_point": "Catharus minimus"} 1 +2024-09-11 09:09:13.747362 2024-09-11 09:09:13.747366 47d1d916-4883-4848-a899-5f94606f02bd {"md5": "9b6186f1c64aef9ff16794ff899b2c5d", "pid": "962794015", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Messgerät"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4654254-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)962794015", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4654254-1", "source": "GND"}], "authorized_access_point": "Komparator (Längenmessung)"} 1 +2024-09-11 09:09:13.806145 2024-09-11 09:09:13.806149 5883c8e8-879e-4f29-b08a-14b7442c0971 {"md5": "241f4a33aceaff4b7c9d6523b4311268", "pid": "962681539", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung und hier nicht permutierender Wortart, z.B. SWW Französisch ; Adjektiv ; droit"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4651342-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)962681539", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4651342-5", "source": "GND"}], "authorized_access_point": "droit"} 1 +2024-09-11 09:09:13.864398 2024-09-11 09:09:13.864403 feed7895-e06c-47db-af5a-4ed96ccc5b67 {"md5": "d73c9ed4e19421ac0a753a9cbd9c7e91", "pid": "962256978", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Höchstalemannisch"}, {"authorized_access_point": "Walliserdeutsch"}, {"authorized_access_point": "Schweizerdeutsch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4647862-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)962256978", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4647862-0", "source": "GND"}], "authorized_access_point": "Mundart Höchstalemannisch (Prättigau)"} 1 +2024-09-11 09:09:13.928516 2024-09-11 09:09:13.92852 e4809bb3-91b2-4e62-b3ee-6257e837f9bf {"md5": "0fd2b99733e887b8a37108362f0e7185", "pid": "962005959", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ball"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333710399", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF18096033", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb18096033j"}], "authorized_access_point": "Ballons de football"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1290726485", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85050423", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85050423"}], "authorized_access_point": "Footballs"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4643833-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)962005959", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4643833-6", "source": "GND"}], "authorized_access_point": "Fußball (Sportgerät)"} 1 +2024-09-11 09:09:13.993079 2024-09-11 09:09:13.993083 f93229b7-25b4-45ac-ab88-7d0292f80777 {"md5": "ccf78f8b6c9cd70bb9ab2d6a2afb8951", "pid": "961909021", "note": [{"label": ["Not-Postbeförderung in wasserdichten, unter der Wasseroberfläche treibenden Zinkkugeln, angewendet 1871 zur Postbeförderung in das belagerte Paris"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Post"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331570603", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13745361", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13745361v"}], "authorized_access_point": "Boules de Moulins"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4641892-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)961909021", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4641892-1", "source": "GND"}], "variant_access_point": ["Unterwasserpost", "Schwimmkugelpost", "Flusskugelpost", "Boules-des-Moulins", "Paris-par-Moulins"], "authorized_access_point": "Zinkkugelpost"} 1 +2024-09-11 09:09:14.058204 2024-09-11 09:09:14.058209 6c67b017-3b6d-4562-a470-50e37637768e {"md5": "b1bf46c04a927e23ed5c808c5b7affb3", "pid": "961468319", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Händler"}], "related": [{"authorized_access_point": "Fischhandel"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113452787X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2019000240", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2019000240"}], "authorized_access_point": "Fishmongers"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113452787X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13337698", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13337698m"}], "authorized_access_point": "Poissonniers"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254384502", "source": "GND"}, {"type": "bf:Nbn", "value": "52128", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/52128"}], "authorized_access_point": "Pescivendoli"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4634759-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)961468319", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4634759-8", "source": "GND"}], "variant_access_point": ["Fische"], "authorized_access_point": "Fischhändler"} 1 +2024-09-11 09:09:14.112157 2024-09-11 09:09:14.112161 a4702fee-74ab-4340-a857-dcf93123924f {"md5": "ecbbc39db6fac83a5390b954d21d1db3", "pid": "960936785", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Weltbürgerin"}, {"authorized_access_point": "Weltbürgertum"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134570465", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15115323", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15115323x"}], "authorized_access_point": "Citoyenneté mondiale"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4625760-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)960936785", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4625760-3", "source": "GND"}], "variant_access_point": ["Kosmopolit"], "authorized_access_point": "Weltbürger"} 1 +2024-09-11 09:09:14.172648 2024-09-11 09:09:14.172651 39081977-9428-4929-9106-263c3431e14d {"md5": "f04e27fc8114b34c3efb221c20a38771", "pid": "960733108", "note": [{"label": ["Gattung der Primelgewächse"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Primelgewächse"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134525567", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2009010914", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2009010914"}], "authorized_access_point": "Anthemis"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134525567", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12290124", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12290124x"}], "authorized_access_point": "Anthemis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4622149-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)960733108", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4622149-9", "source": "GND"}], "variant_access_point": ["Anagallis"], "authorized_access_point": "Gauchheil"} 1 +2024-09-11 09:09:14.239515 2024-09-11 09:09:14.23952 eb073463-70d0-4418-ad04-84987cf0549a {"md5": "e06ecc714871e91a1ae9de83926c30aa", "pid": "960658491", "note": [{"label": ["Gattung der Drosseln"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Drosseln"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333493878", "source": "GND"}, {"type": "bf:Nbn", "value": "sh93001601", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh93001601"}], "authorized_access_point": "Turdus"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333493878", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12266592", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12266592b"}], "authorized_access_point": "Turdus"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4620929-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)960658491", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4620929-3", "source": "GND"}], "authorized_access_point": "Turdus"} 1 +2024-09-11 09:09:14.302269 2024-09-11 09:09:14.302275 f3cc93de-4827-4768-bcbf-d21ae26181fe {"md5": "7d20f3651fe0ac72b88131530cd70a54", "pid": "960161872", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Konstruktion"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4613026-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)960161872", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4613026-3", "source": "GND"}], "variant_access_point": ["Änderungskonstruktion"], "authorized_access_point": "Anpassungskonstruktion"} 1 +2024-09-11 09:09:26.070586 2024-09-11 09:09:26.070589 bdec99b1-97d0-4cb6-ad60-3c2615bc3355 {"md5": "22861ed87c3469d921c36e924a668401", "pid": "043045820", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Stochastischer Prozess"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4304582-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043045820", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4304582-0", "source": "GND"}], "authorized_access_point": "Nichtlinearer Prozess"} 1 +2024-09-11 09:09:14.357102 2024-09-11 09:09:14.357105 9168c79f-f9e3-4289-958a-40e1fcf308cb {"md5": "fa10eb297fe01ba2f9ac982dea9b8296", "pid": "959965831", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Diagnose"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133778232", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12344924", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb123449247"}], "authorized_access_point": "Diagnostic infirmier"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241617775", "source": "GND"}, {"type": "bf:Nbn", "value": "D009733", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D009733"}], "authorized_access_point": "Nursing Diagnosis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4609251-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959965831", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4609251-1", "source": "GND"}], "variant_access_point": ["Krankenpflege", "Pflegediagnostik"], "authorized_access_point": "Pflegediagnose"} 1 +2024-09-11 09:09:14.412558 2024-09-11 09:09:14.412562 63bdf274-f066-4e3d-88c2-ca8d667e362c {"md5": "b8bd47fa607f04b440129ce3b43cd8d2", "pid": "959960775", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Honen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4609158-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959960775", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4609158-0", "source": "GND"}], "variant_access_point": ["Precidor-Honen"], "authorized_access_point": "Dornhonen"} 1 +2024-09-11 09:09:14.466294 2024-09-11 09:09:14.4663 716bf812-a148-4f85-93ac-2d6ae707ce97 {"md5": "e0471b82ba74f4ec35df181c66af84f2", "pid": "959893202", "note": [{"label": ["skandinavische Kulturideologie des 17. -19. Jhs: proklamiert skandinavische Überlegenheit unter Berufung auf die Goten und ihren Sieg über Rom"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Nationalismus"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4607525-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959893202", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4607525-2", "source": "GND"}], "variant_access_point": ["Goticismus", "Götizismus"], "authorized_access_point": "Gotizismus"} 1 +2024-09-11 09:09:14.522702 2024-09-11 09:09:14.522706 3ea5b44e-9214-47d9-8310-7caba33361a5 {"md5": "e6ce97448048233d742f19ea87a78217", "pid": "959807241", "note": [{"label": ["System , das in der Lage ist, in einer periodischen Struktur Teilchen mit nichtverschwindender makroskopischen Geschwindigkeit zu transportieren, obwohl im zeitlichen Mittel keine Kraft wirkt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4605880-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959807241", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4605880-1", "source": "GND"}], "variant_access_point": ["Ratchet", "Ratscheneffekt"], "authorized_access_point": "Ratsche (Physik)"} 1 +2024-09-11 09:09:14.579985 2024-09-11 09:09:14.579989 94099ed2-f702-4210-a513-45d89e4bbbd5 {"md5": "394cd20bb3397d02c163545a53b39059", "pid": "959710248", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Abgeschlossenheit"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4603779-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959710248", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4603779-2", "source": "GND"}], "variant_access_point": ["Cartesische Abgeschlossenheit"], "authorized_access_point": "Kartesische Abgeschlossenheit"} 1 +2024-09-11 09:09:14.636089 2024-09-11 09:09:14.636093 e0d41bf4-dff5-46ea-a5c6-064aadc40222 {"md5": "aa037ce4f600daf4cec162c75a391042", "pid": "959143459", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gerät"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4592565-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959143459", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4592565-3", "source": "GND"}], "variant_access_point": ["Fahrbares Gerät", "Mobiles Gerät", "Tragbares Gerät"], "authorized_access_point": "Transportables Gerät"} 1 +2024-09-11 09:09:14.689901 2024-09-11 09:09:14.689906 e7f87d05-dd9c-4b69-8b45-17b8ce929c83 {"md5": "b28e5984c200eb0fc06389ca3f08069f", "pid": "958745404", "note": [{"label": ["DVD-Applikation und -standard zum Verbreiten und Abspielen von Daten", "Verwendet als Sach- und Formschlagwort; als Formschlagwort für alle Arten von DVDs, für die ein Computer als Abspielgerät notwendig ist (vgl. auch Hinweis bei \\"DVD-Video\\")."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "DVD"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133880940", "source": "GND"}, {"type": "bf:Nbn", "value": "sh00009187", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00009187"}], "authorized_access_point": "DVD-ROMs"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133880940", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13616261", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb136162611"}], "authorized_access_point": "DVD-ROM"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4585131-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)958745404", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4585131-1", "source": "GND"}], "authorized_access_point": "DVD-ROM"} 1 +2024-09-11 09:09:15.193983 2024-09-11 09:09:15.193987 b335cf25-97d0-4ece-b2e6-86c97fcc31e2 {"md5": "e0e17567a171462a6ffb3d35a3fa2837", "pid": "957133235", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung und hier nicht permutierender Wortart; z.B. SWW Deutsch ; Pronomen ; beide"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4554787-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)957133235", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4554787-7", "source": "GND"}], "authorized_access_point": "beide"} 1 +2024-09-11 09:09:17.211726 2024-09-11 09:09:17.21173 6795062b-ec45-4d23-8ecb-5594552969e6 {"md5": "93e1388c73f1cd10c25dd0196890f6d5", "pid": "952966336", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gemischbildung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4489196-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)952966336", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4489196-9", "source": "GND"}], "variant_access_point": ["Kraftstoff"], "authorized_access_point": "Gemischaufbereitung"} 1 +2024-09-11 09:09:14.746942 2024-09-11 09:09:14.746945 7868bcd0-1919-43d1-ac3d-a53cd5521647 {"md5": "8fc970ae6f6884763bf398b312add87d", "pid": "958745374", "note": [{"label": ["DVD-Applikation und -standard zum Verbreiten und Abspielen von Audiodaten", "Verwendet als Sach- und Formschlagwort"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "DVD"}, {"authorized_access_point": "Tonträger"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133861881", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2001004459", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2001004459"}], "authorized_access_point": "DVD-Audio discs"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133861881", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13514059", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb135140598"}], "authorized_access_point": "DVD audio"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4585129-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)958745374", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4585129-3", "source": "GND"}], "authorized_access_point": "DVD-Audio"} 1 +2024-09-11 09:09:14.802576 2024-09-11 09:09:14.802581 98c2ed8d-e08f-4723-a815-e906588d297f {"md5": "a38d509d8771024d03ed9974ba0adf2b", "pid": "958745307", "note": [{"label": ["DVD-Applikation und -standard zum Verbreiten und Abspielen von bewegten Bildern", "Verwendet als Sach- und Formschlagwort; \\"DVD-Video\\" wird nur dann als Formschlagwort benutzt, wenn als Abspielgeräte DVD-Player und TVs ausreichen; Videos mit interaktiven Lernprogrammen erfordern einen Computer und bekommen als Formschlagwort \\"DVD-Rom\\"."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "DVD"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133861857", "source": "GND"}, {"type": "bf:Nbn", "value": "sh99002636", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99002636"}], "authorized_access_point": "DVD-Video discs"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133861857", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13514055", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13514055w"}], "authorized_access_point": "DVD vidéo"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4585125-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)958745307", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4585125-6", "source": "GND"}], "variant_access_point": ["DVD-Film"], "authorized_access_point": "DVD-Video"} 1 +2024-09-11 09:09:14.859807 2024-09-11 09:09:14.859811 e0cfc09a-398d-475a-b149-219b55ea8cb9 {"md5": "9415c4db60274f8e3f78ef4c78da70d2", "pid": "958577447", "note": [{"label": ["Funde der Urnenfelderkultur im Gebiet der Mittleren Iser, Nordböhm. Gebiet"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Urnenfelderkultur"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4582452-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)958577447", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4582452-6", "source": "GND"}], "variant_access_point": ["Turnover Typ"], "authorized_access_point": "Turnover Typus"} 1 +2024-09-11 09:09:14.916378 2024-09-11 09:09:14.916382 1d9886fd-3239-4477-8c38-23d0c1e13283 {"md5": "4581ada1627e58db273d814f544d651d", "pid": "958508402", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331749921", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2010013672", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2010013672"}], "authorized_access_point": "Walpurgis Night"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331749921", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16626256", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb166262562"}], "authorized_access_point": "Nuit de Walpurgis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4581377-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)958508402", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4581377-2", "source": "GND"}], "authorized_access_point": "Walpurgisnacht"} 1 +2024-09-11 09:09:14.975093 2024-09-11 09:09:14.975097 753dcfe7-1c6f-4e30-ae39-947f2c3349d1 {"md5": "c522b1917cf37cf99186862dfb9b989a", "pid": "958195455", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Folge (Mathematik)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4575172-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)958195455", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4575172-9", "source": "GND"}], "authorized_access_point": "Doppelfolge"} 1 +2024-09-11 09:09:15.030905 2024-09-11 09:09:15.03091 dd7d6b15-dfc6-4986-bb22-b0e2b628400f {"md5": "6c26d6044b181c5e1edac427c2d413fc", "pid": "958121966", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Linguistik"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4572685-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)958121966", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4572685-1", "source": "GND"}], "variant_access_point": ["Volkslinguistik"], "authorized_access_point": "Laienlinguistik"} 1 +2024-09-11 09:09:15.083932 2024-09-11 09:09:15.083938 34b15015-59d1-4135-8aeb-24b66d263e0a {"md5": "3b87ffd85a47edec8160bb122fb6b8f5", "pid": "957564554", "note": [{"label": ["Terminus der Phototechnik"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4561589-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)957564554", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4561589-5", "source": "GND"}], "authorized_access_point": "Farbkupplung"} 1 +2024-09-11 09:09:15.139243 2024-09-11 09:09:15.139246 a2e93674-2023-4bf0-9552-a3d926faf371 {"md5": "5c3fa84fdf98ebc6bba01d149fd489c2", "pid": "957193599", "note": [{"label": ["Vertrag zur Regelung von gegenseitigen Reparationszahlungen zwischen Großbritannien und USA für Schäden im amerikan. Bürgerkrieg"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4555543-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)957193599", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4555543-6", "source": "GND"}], "variant_access_point": ["Washington, DC (1871)"], "authorized_access_point": "Washington (DC) - Vertrag (1871)"} 1 +2024-09-11 09:09:15.246224 2024-09-11 09:09:15.246228 ed5116a8-ca85-4d86-994e-6b3ecba9a2df {"md5": "ed9de9648f7f31cc9573bcca8ac75e63", "pid": "956836976", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Künstlerin"}], "related": [{"authorized_access_point": "Grafiker"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331597935", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2022007951", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2022007951"}], "authorized_access_point": "Women graphic artists"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4550852-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)956836976", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4550852-5", "source": "GND"}], "variant_access_point": ["Graphikerin"], "authorized_access_point": "Grafikerin"} 1 +2024-09-11 09:09:15.30234 2024-09-11 09:09:15.302345 66640990-4491-47f2-a107-4a02ed91fb50 {"md5": "4644d0857effd615b7921de002ca865c", "pid": "956033679", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Britisch-Amerikanischer Krieg"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1239387687", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85145353", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85145353"}], "authorized_access_point": "Washington (D.C.) - History - Capture by the British, 1814"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4536367-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)956033679", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4536367-5", "source": "GND"}], "variant_access_point": ["Washington, DC (1814)"], "authorized_access_point": "Washington (DC) - Eroberung (1814)"} 1 +2024-09-11 09:09:15.35934 2024-09-11 09:09:15.359344 cab8fb44-8772-428c-88ee-7281928ceeec {"md5": "a271df780322faf5863b2ec02dbf053b", "pid": "955952638", "note": [{"label": ["Lektine, die spez. ß-Galactosidase binden."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Lectine"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4534183-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955952638", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4534183-7", "source": "GND"}], "variant_access_point": ["Galektine"], "authorized_access_point": "Galectine"} 1 +2024-09-11 09:09:15.413904 2024-09-11 09:09:15.413908 22a9ca93-367a-417d-b988-6544063fcf3a {"md5": "4ee953e4da64869bca787c260d9fe637", "pid": "955845483", "note": [{"label": ["Gattung der Buntbarsche"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Buntbarsche"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333965303", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15597084", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb155970844"}], "authorized_access_point": "Oreochromis"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256242535", "source": "GND"}, {"type": "bf:Nbn", "value": "26596", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_26596"}], "authorized_access_point": "Oreochromis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4531766-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955845483", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4531766-5", "source": "GND"}], "authorized_access_point": "Oreochromis"} 1 +2024-09-11 09:09:15.470855 2024-09-11 09:09:15.470858 92b03770-c1ba-4148-82c5-b14ac803c0ec {"md5": "b3c04172cc10284288e9669ef12096f3", "pid": "955777844", "note": [{"label": ["Krieg zwischen Schweden unter Karl X. Gustav und Dänemark; nach dem Tod Karls wurde am 3.5.1660 der Friede von Oliva und am 6.6.1660 der Friede von Kopenhagen geschlossen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Krieg"}], "related": [{"authorized_access_point": "Schwedisch-polnisch-dänischer Krieg"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)127182888X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85035763", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85035763"}], "authorized_access_point": "Dano-Swedish Wars, 1657-1660"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4530836-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955777844", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4530836-6", "source": "GND"}], "variant_access_point": ["Dänisch-Schwedischer Krieg (1657-1660)"], "authorized_access_point": "Schwedisch-Dänischer Krieg (1657-1660)"} 1 +2024-09-11 09:09:15.54108 2024-09-11 09:09:15.541084 8e1bc50d-ac8d-4300-8357-8babf2144ea6 {"md5": "319155cd3ed123dc20d4ecf446aaaa3b", "pid": "955671906", "note": [{"label": ["Zusammenfassende Bezeichnung für Neuronale Netze, in denen der Puls die verwendete Informationseinheit beschreibt.", "Ansetzung nach Auskunft der Uni Bonn (Prof. Dr. Anlauf, Dipl. Ing. C. Grassmann)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Neuronales Netz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4529621-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955671906", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4529621-2", "source": "GND"}], "variant_access_point": ["Pulsgekoppeltes neuronales Netz", "Pulskodiertes neuronales Netz", "Pulscodiertes neuronales Netz", "PCNN", "Pulse coupled neural networks", "Spikendes neuronales Netz", "Pulsed neural network", "Spiking neural network", "Impulskodierendes neuronales Netz"], "authorized_access_point": "Pulsverarbeitendes neuronales Netz"} 1 +2024-09-11 09:09:15.604246 2024-09-11 09:09:15.604249 0a67eaa6-5442-47ea-a63c-3e083757a1e4 {"md5": "ce069b7a611f18bfceddc811b8515c66", "pid": "955633087", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Windkanal"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4529416-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955633087", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4529416-1", "source": "GND"}], "authorized_access_point": "Plasmawindkanal"} 1 +2024-09-11 09:09:18.433033 2024-09-11 09:09:18.433038 73331841-5d55-4496-973e-89444f6ce554 {"md5": "921fb71a15d6907b7772e294e6227cba", "pid": "950268593", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4451259-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950268593", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4451259-4", "source": "GND"}], "variant_access_point": ["Bauernaufstand"], "authorized_access_point": "Schweden - Bauernaufstand (1743)"} 1 +2024-09-11 09:09:15.657223 2024-09-11 09:09:15.657226 cdfb2bfc-b111-4a73-847a-0c7538f53309 {"md5": "19c483c13e3ce84bbd7caca44c7a2d41", "pid": "955631963", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333268149", "source": "GND"}, {"type": "bf:Nbn", "value": "sh88004894", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh88004894"}], "authorized_access_point": "Labroides dimidiatus"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333268149", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17803581", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17803581f"}], "authorized_access_point": "Labroides dimidiatus"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4529376-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955631963", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4529376-4", "source": "GND"}], "variant_access_point": ["Labroides dimidiatus", "Labrus dimidiatus"], "authorized_access_point": "Meerschwalbe"} 1 +2024-09-11 09:09:15.713718 2024-09-11 09:09:15.71372 901a6d5e-631a-42a4-87d9-baec3cdc2b4e {"md5": "95b4c171b00fff1d6f9d88649984080c", "pid": "955522552", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Turm"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334015155", "source": "GND"}, {"type": "bf:Nbn", "value": "sh00004969", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00004969"}], "authorized_access_point": "Watchtowers"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334015155", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16902666", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16902666m"}], "authorized_access_point": "Tours de guet"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4528427-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955522552", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4528427-1", "source": "GND"}], "variant_access_point": ["Wachturm", "Wartturm", "Warte"], "authorized_access_point": "Wachtturm"} 1 +2024-09-11 09:09:15.767782 2024-09-11 09:09:15.767788 a3858948-d7e7-457f-8521-96c3c2b13444 {"md5": "bc3262ee42b3e3e4bf09e98c21dc2d4d", "pid": "955510392", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134731035", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11938453", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119384533"}], "authorized_access_point": "Mesure"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4528272-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955510392", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4528272-9", "source": "GND"}], "variant_access_point": ["Kettenstruktur (Messtechnik)", "Reihenschaltung"], "authorized_access_point": "Messkette (Schaltung)"} 1 +2024-09-11 09:09:15.826252 2024-09-11 09:09:15.826257 b5b45861-585b-48a2-92b4-62af16f0d5a6 {"md5": "1718322024d0d2868364f92e7b00eb4c", "pid": "955497205", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333483384", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85144937", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85144937"}], "authorized_access_point": "Walleye (Fish)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333483384", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17805480", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb178054809"}], "authorized_access_point": "Doré jaune"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4527911-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955497205", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4527911-1", "source": "GND"}], "variant_access_point": ["Stizostedion vitreum", "Perca vitrea", "Perca salmonea", "Lucioperca americana"], "authorized_access_point": "Glasaugenbarsch"} 1 +2024-09-11 09:09:15.879384 2024-09-11 09:09:15.879387 c1f6bcce-419c-4097-9f12-83547dfc104a {"md5": "1726540cedecbcfbedbb36541c5588a8", "pid": "955324300", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Helium"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134227558", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85077369", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85077369"}], "authorized_access_point": "Liquid helium"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134227558", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12242449", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12242449j"}], "authorized_access_point": "Hélium liquide"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254347356", "source": "GND"}, {"type": "bf:Nbn", "value": "19751", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/19751"}], "authorized_access_point": "Elio liquido"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4525343-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955324300", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4525343-2", "source": "GND"}], "variant_access_point": ["Helium", "Liquid helium"], "authorized_access_point": "Flüssiges Helium"} 1 +2024-09-11 09:09:15.935316 2024-09-11 09:09:15.935319 a904c06a-e42b-488c-bc93-9d7c085560a5 {"md5": "05fe917d95bf6e9e1a9910a54ca9fd4f", "pid": "955297966", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gemeinnütziges Unternehmen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133959911", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11945380", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119453806"}], "authorized_access_point": "Établissements et services d'aide par le travail"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4525077-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955297966", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4525077-7", "source": "GND"}], "variant_access_point": ["Integrationsfirma"], "authorized_access_point": "Selbsthilfefirma"} 1 +2024-09-11 09:09:15.989577 2024-09-11 09:09:15.989581 c644682f-c026-458c-9c83-4b37418c4c3d {"md5": "b7f4c3806967de8152087e72d1f02f31", "pid": "955286999", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hofmusik"}, {"authorized_access_point": "Tanzmusik"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332662544", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2011000868", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2011000868"}], "authorized_access_point": "Court dances (Music)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4524885-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955286999", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4524885-0", "source": "GND"}], "authorized_access_point": "Höfische Tanzmusik"} 1 +2024-09-11 09:09:16.048684 2024-09-11 09:09:16.048689 1d4301d4-4f28-4b51-8006-cb49273f6762 {"md5": "be60837ede0469fea2e2adc2eb035eab", "pid": "955249929", "note": [{"label": ["Familie der Knochenfische"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134450273", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2003001333", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2003001333"}], "authorized_access_point": "Snakeheads (Fish)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134450273", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF14589077", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb145890770"}], "authorized_access_point": "Channidae"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4524273-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955249929", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4524273-2", "source": "GND"}], "variant_access_point": ["Schlangenköpfe", "Channidae", "Ophicephalidae"], "authorized_access_point": "Schlangenkopffische"} 1 +2024-09-11 09:09:16.113587 2024-09-11 09:09:16.113589 a49689bb-513b-4a24-bcb5-3154ec7533a1 {"md5": "281300961f33cbd9610d9bf1921790cb", "pid": "955181178", "note": [{"label": ["Für vorliegendes audiovisuelles Material, das nicht unter einen der zugelassenen Unterbegriffe fällt, oder eine Kombination von mindestens zwei audiovisuellen Materialien; nicht für elektronische Publikationen.", "Nur als Form-SW zulässig"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4523048-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955181178", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4523048-1", "source": "GND"}], "authorized_access_point": "Audiovisuelles Material (für Kinder)"} 1 +2024-09-11 09:09:16.168674 2024-09-11 09:09:16.16868 aeed5afe-c215-446c-bc42-63781f0ca201 {"md5": "2a5b9c812159777fd06d72c5b91c00e7", "pid": "955150507", "note": [{"label": ["Fayencewandfliesen mit ornamentalem oder figürlichem Dekor, die von den Mauren auf der Iberischen Halbinsel eingeführt wurden; später neben Portugal u. Spanien auch in deren Kolonien verbreitet; oft in Form von grossen Tableaus verwendet."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fayencefliese"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332766943", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11994207", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11994207n"}], "authorized_access_point": "Azulejos"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1299918867", "source": "GND"}, {"type": "bf:Nbn", "value": "XX529896", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX529896"}], "authorized_access_point": "Azulejos"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4522486-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955150507", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4522486-9", "source": "GND"}], "variant_access_point": ["Azulejos"], "authorized_access_point": "Azulejo"} 1 +2024-09-11 09:09:16.243872 2024-09-11 09:09:16.243875 aeeb748b-fdbd-48eb-91f2-41e4b93d5ea5 {"md5": "73d366a09e46609c906785c0856c8f70", "pid": "954752554", "note": [{"label": ["Russ. evangelikale Sekte"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sekte"}, {"authorized_access_point": "Evangelikale Bewegung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331867657", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85098434", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85098434"}], "authorized_access_point": "Pashkovism"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4517749-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)954752554", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4517749-1", "source": "GND"}], "variant_access_point": ["Paškovcy"], "authorized_access_point": "Paschkowianer"} 1 +2024-09-11 09:09:16.298313 2024-09-11 09:09:16.298318 4e6f5583-feec-455f-8624-bdba25f4755b {"md5": "79e47c3cf4a97c78e1318d09b4dcd581", "pid": "95471752X", "note": [{"label": ["Lt. NCBI-Taxonomy Gattung aus d. UF Luciocephalinae=Hechtkopfartige.(Früher UF Trichogasterinae). Einige Trichogasterarten werden der Gattung Zwergfadenfisch=Colisa zugeordnet und haben den Gattungsnamen Trichogaster als Synonym."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Großguramis"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333955340", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85137463", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85137463"}], "authorized_access_point": "Trichogaster"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333955340", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17805195", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17805195h"}], "authorized_access_point": "Trichogaster"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4517241-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)95471752X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4517241-9", "source": "GND"}], "variant_access_point": ["Trichogaster"], "authorized_access_point": "Fadenfisch (Gattung)"} 1 +2024-09-11 09:09:16.356517 2024-09-11 09:09:16.35652 e56b2708-5211-44f8-8b8d-e2c348a4455b {"md5": "0b2cadd9179e2ae15fc558e5cb759ffe", "pid": "95469483X", "note": [{"label": ["Due Diligence (engl. „gebotene Sorgfalt“) bezeichnet im US-amerikanischen Recht einen Verhaltensmaßstab, der zwecks Haftungsvermeidung zu beachten ist. Über diese allgemeine Bedeutung hinaus wird die Bezeichnung im gesellschaftsrechtlichen Kontext für die sorgfältige Prüfung der wirtschaftlichen und rechtlichen Verhältnisse eines Unternehmens verwendet, deren Ergebnisse im Rahmen der Unternehmensführung als Informationsgrundlage benötigt werden, etwa zur Vorbereitung der Unternehmensveräußerung, des Börsengangs, einer Kreditgewährung gegenüber dem Unternehmen oder zur Ermittlung der Höhe von Abfindungsansprüchen.", "Mergers and Acquisitions ist nicht pleonastisch"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Sorgfaltspflicht"}, {"authorized_access_point": "Unternehmensbewertung"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1019866322", "source": "GND"}, {"type": "bf:Nbn", "value": "29559-2", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/29559-2"}], "authorized_access_point": "Due Diligence"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4516677-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)95469483X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4516677-8", "source": "GND"}], "authorized_access_point": "Due Diligence"} 1 +2024-09-11 09:09:16.412356 2024-09-11 09:09:16.412361 177c1787-effb-4aed-ab1c-67c828263bc3 {"md5": "473d5b83e968b0171bb1fb802f66807b", "pid": "954658248", "note": [{"label": ["Art d. Afrikanischen Buntbarsche"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333965699", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85135344", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85135344"}], "authorized_access_point": "Tilapia zillii"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333965699", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17838469", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb178384694"}], "authorized_access_point": "Coptodon zillii"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256264210", "source": "GND"}, {"type": "bf:Nbn", "value": "35437", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_35437"}], "authorized_access_point": "Tilapia zillii"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4516008-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)954658248", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4516008-9", "source": "GND"}], "variant_access_point": ["Zilles Buntbarsch", "Tilapia zilli"], "authorized_access_point": "Tilapia zillii"} 1 +2024-09-11 09:09:16.477447 2024-09-11 09:09:16.477452 a0cb396a-155a-492a-92ef-476fd203afc2 {"md5": "7df6852beaee5f7b12dc9e9585e088a5", "pid": "95439836X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Materie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332896871", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF177105", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17710562g"}], "authorized_access_point": "Matérialité"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4512697-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)95439836X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4512697-5", "source": "GND"}], "variant_access_point": ["Stofflichkeit"], "authorized_access_point": "Materialität"} 1 +2024-09-11 09:09:16.538915 2024-09-11 09:09:16.538918 04c149b3-36a2-4f47-a75f-a4e6b5215c22 {"md5": "b4c715d7b2cde5e10d6fcd68703e4021", "pid": "954299973", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung und hier nicht permutierender Wortart, z.B. Mittelhochdeutsch ; Adjektiv ; guot"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4511160-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)954299973", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4511160-1", "source": "GND"}], "authorized_access_point": "guot"} 1 +2024-09-11 09:09:16.595375 2024-09-11 09:09:16.595381 3a2b8d8d-dede-40e8-85df-22d44d96bc07 {"md5": "5f7383e34edb00965992ce211927d8dd", "pid": "954068572", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334556873", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13508234", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb135082347"}], "authorized_access_point": "Nefs (architecture)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4508350-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)954068572", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4508350-2", "source": "GND"}], "variant_access_point": ["Kirchenschiff"], "authorized_access_point": "Schiff (Architektur)"} 1 +2024-09-11 09:09:16.669022 2024-09-11 09:09:16.669026 dbd6fd88-f9c0-4815-adee-e050e632f2c4 {"md5": "6137b4a04467b89998b9fea77ed24620", "pid": "95406853X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schiff (Architektur)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334557225", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15085485", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb150854851"}], "authorized_access_point": "Bas-côtés (architecture)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4508348-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)95406853X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4508348-4", "source": "GND"}], "variant_access_point": ["Nebenschiff"], "authorized_access_point": "Seitenschiff"} 1 +2024-09-11 09:09:16.735103 2024-09-11 09:09:16.735106 4681f60a-250a-4a70-9668-ddb6a34b10f5 {"md5": "7efdf33e888cfb50b3c7e58f36ae26aa", "pid": "954021185", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4507704-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)954021185", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4507704-6", "source": "GND"}], "variant_access_point": ["Abfolge", "Sequenz (Gemeinsprache)", "Sequenz (Abfolge)", "Sequenz (Reihenfolge)"], "authorized_access_point": "Reihenfolge"} 1 +2024-09-11 09:09:16.794015 2024-09-11 09:09:16.794019 efc14438-b6a6-4197-8c8a-46af2b365c71 {"md5": "c65740d3e7750f8deb0aa5814e15e9a2", "pid": "953936503", "note": [{"label": ["Wikipedia unter Lager (Maschinenelement) - https://de.wikipedia.org/w/index.php?title=Lager_(Maschinenelement)&oldid=243251254#Radial-Axial-Lager_%28Radiaxlager%29"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gleitlager"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4507097-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)953936503", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4507097-0", "source": "GND"}], "variant_access_point": ["Radial-Axialgleitlager"], "authorized_access_point": "Radial-Axialbund-Gleitlager"} 1 +2024-09-11 09:09:16.857999 2024-09-11 09:09:16.858002 92cc2f9f-940a-4555-a6a5-1450344aa5c0 {"md5": "3d2063e74b6683162b25132bf1731868", "pid": "953467732", "note": [{"label": ["Dienstgrad von Wehrpflichtigen, die in der NVA Wehrdienst ohne Waffe leisteten"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kriegsdienstverweigerer"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4499305-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)953467732", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4499305-5", "source": "GND"}], "variant_access_point": ["Spatensoldat"], "authorized_access_point": "Bausoldat"} 1 +2024-09-11 09:09:16.910593 2024-09-11 09:09:16.910596 e25f7d40-80bb-4010-83b9-6170409b59e5 {"md5": "68ffa365faf4510b53d4d0f31fd6b7b3", "pid": "953463176", "note": [{"label": ["Gattung der Hülsenfrüchtler mit landwirtschaftl. Nutzpflanzen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hülsenfrüchtler"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1300115416", "source": "GND"}, {"type": "bf:Nbn", "value": "XX550734", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX550734"}], "authorized_access_point": "Ajipa"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134541414", "source": "GND"}, {"type": "bf:Nbn", "value": "sh93006873", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh93006873"}], "authorized_access_point": "Pachyrhizus"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256243051", "source": "GND"}, {"type": "bf:Nbn", "value": "5486", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_5486"}], "authorized_access_point": "Pachyrhizus"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4499220-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)953463176", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4499220-8", "source": "GND"}], "authorized_access_point": "Pachyrhizus"} 1 +2024-09-11 09:09:16.96526 2024-09-11 09:09:16.965265 5fe0d7a6-ada2-4d9c-98d0-92655a9cda25 {"md5": "9b31e3ff7385fa156eb2206859f30db4", "pid": "953354431", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Personenkontrolle"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133156705X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12317685", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12317685q"}], "authorized_access_point": "Contrôles d'identité"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4497117-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)953354431", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4497117-5", "source": "GND"}], "variant_access_point": ["Identitätsfeststellung", "Personalienfeststellung", "Polizeiliche Personenfeststellung"], "authorized_access_point": "Personenfeststellung"} 1 +2024-09-11 09:09:17.028806 2024-09-11 09:09:17.028809 5d3432fa-834d-4015-965d-c47b5f5fd77c {"md5": "7667fe529a5fe80b79019d9045ce2950", "pid": "95324590X", "note": [{"label": ["Benutzt, soweit außerhalb Finnlands lebend, sonst verknüpfe Finnland ; Frau"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ausländerin"}], "related": [{"authorized_access_point": "Finnen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331610125", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16634513", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16634513b"}], "authorized_access_point": "Finlandaises"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1008375284", "source": "GND"}, {"type": "bf:Nbn", "value": "26247-1", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/26247-1"}], "authorized_access_point": "Finnen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4494485-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)95324590X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4494485-8", "source": "GND"}], "variant_access_point": ["Finnische Frau"], "authorized_access_point": "Finnin"} 1 +2024-09-11 09:09:17.090756 2024-09-11 09:09:17.090762 449fc6c0-822c-414e-9248-0cf424edc602 {"md5": "afd0ea3ead2176e05af4fae08b8dcd0e", "pid": "953019209", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334212538", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85119760", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85119760"}], "authorized_access_point": "Self-incrimination"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4490382-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)953019209", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4490382-0", "source": "GND"}], "variant_access_point": ["Selbstbezichtigung", "Selbstbelastung"], "authorized_access_point": "Selbstbeschuldigung"} 1 +2024-09-11 09:09:17.150412 2024-09-11 09:09:17.150417 cecfd63f-466a-44a3-99c0-70085a27dfe2 {"md5": "92de3f088712d56bb5f6edefce784465", "pid": "953011992", "note": [{"label": ["Art der Fam. Agamen (Agamidae)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Agamen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4490181-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)953011992", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4490181-1", "source": "GND"}], "variant_access_point": ["Amphibolorus barbatus", "Pogona barbata", "Amphibolurus barbatus", "Agama barbata"], "authorized_access_point": "Bartagame"} 1 +2024-09-11 09:09:17.273875 2024-09-11 09:09:17.273878 ef1987e2-e3d8-458d-8d9e-669f4c08c499 {"md5": "7089538793f90d73ef219bfb017484c1", "pid": "952945991", "note": [{"label": ["Familie Amerikanischer Brachsen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333442521", "source": "GND"}, {"type": "bf:Nbn", "value": "sh95000247", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh95000247"}], "authorized_access_point": "Moronidae"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333442521", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15506722", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15506722d"}], "authorized_access_point": "Moronidae"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4488675-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)952945991", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4488675-5", "source": "GND"}], "authorized_access_point": "Moronidae"} 1 +2024-09-11 09:09:17.33437 2024-09-11 09:09:17.334375 d308d744-a1ee-4cb7-a530-4b2fcdd73c74 {"md5": "bf143dee15e5fd3da51fa854ac32a4d5", "pid": "952945819", "note": [{"label": ["Familie der Barschfische"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133871984", "source": "GND"}, {"type": "bf:Nbn", "value": "sh97008600", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh97008600"}], "authorized_access_point": "Pearl perches"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133871984", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13571291", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13571291t"}], "authorized_access_point": "Glaucosomatidae"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4488671-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)952945819", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4488671-8", "source": "GND"}], "variant_access_point": ["Glaucosomatidae"], "authorized_access_point": "Glaucosomidae"} 1 +2024-09-11 09:09:17.391365 2024-09-11 09:09:17.39137 fbf63f5b-ecda-444c-a14b-34f1af7c863b {"md5": "dc88a798d285cb919116f77fbbc00824", "pid": "952794357", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Decodierung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4486066-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)952794357", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4486066-3", "source": "GND"}], "variant_access_point": ["Turbo-Decodierung"], "authorized_access_point": "Iterative Decodierung"} 1 +2024-09-11 09:09:17.444377 2024-09-11 09:09:17.444381 08340086-afb3-4574-a8cc-221d3e852f8a {"md5": "d52ec1e81f167f6cae4b8157e6b14e43", "pid": "952319888", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Energiearmes Lebensmittel"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133801110", "source": "GND"}, {"type": "bf:Nbn", "value": "sh90005360", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh90005360"}], "authorized_access_point": "Low-fat foods"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133801110", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12454183", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12454183x"}], "authorized_access_point": "Aliments à faible teneur en lipides"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4480030-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)952319888", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4480030-7", "source": "GND"}], "authorized_access_point": "Fettreduziertes Lebensmittel"} 1 +2024-09-11 09:09:17.499947 2024-09-11 09:09:17.499952 528fcdc5-0475-4d02-b3ff-eebf38851a24 {"md5": "3758180b9060f1b711e51adf28abb63b", "pid": "952090163", "note": [{"label": ["Zwischen d. Zeilen e. fremdsprachigen Textes geschriebene Wort-für-Wort-Übersetzung ohne Rücksicht auf grammat. oder idiomat. Unterschiede zwischen d. Grundtext u. d. Übersetzung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Glosse"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134312733", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12403938", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb124039381"}], "authorized_access_point": "Traductions interlinéaires"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4476872-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)952090163", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4476872-2", "source": "GND"}], "variant_access_point": ["Interlinearglosse", "Interlinearübersetzung"], "authorized_access_point": "Interlinearversion"} 1 +2024-09-11 09:09:17.573431 2024-09-11 09:09:17.573435 1a05c625-c479-495a-a0e3-eaac0898f535 {"md5": "bbb2bdc4f7f5ea31a0e5cd383d219414", "pid": "952082098", "note": [{"label": ["Zusammenfassend für Volkstanz-, Volksmusik-, Trachten- und Brauchtumsgruppen oder -vereine etc."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Volkskultur"}, {"authorized_access_point": "Gruppe"}, {"authorized_access_point": "Verein"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4476699-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)952082098", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4476699-3", "source": "GND"}], "variant_access_point": ["Folkloregruppen"], "authorized_access_point": "Folkloregruppe"} 1 +2024-09-11 09:09:18.89402 2024-09-11 09:09:18.894024 dd5bfcd8-badb-4040-9896-cc345d236892 {"md5": "3dc92b4b59e1f824204feb8beb873749", "pid": "948734418", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Materialermüdung"}, {"authorized_access_point": "Thermomechanische Eigenschaft"}], "related": [{"authorized_access_point": "Thermoschock"}, {"authorized_access_point": "Temperaturwechselbeständigkeit"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134216092", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12218766", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12218766s"}], "authorized_access_point": "Fatigue thermique"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4425895-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948734418", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4425895-1", "source": "GND"}], "variant_access_point": ["Thermoermüdung"], "authorized_access_point": "Thermische Ermüdung"} 1 +2024-09-11 09:09:17.630097 2024-09-11 09:09:17.630102 5907e25e-630e-40b2-b83a-0d4485a727c0 {"md5": "7d2da45c98becab5c4676c888babbb34", "pid": "951939440", "note": [{"label": ["Kuban. Gesellschaftstanz in gemessenem Tempo, der zwischen 1900 und 1920 zum Nationaltanz wurde; aus dem Danzón gingen 1939 der Mambo und 1949 der Cha-Cha-Cha hervor"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gesellschaftstanz"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332687431", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2009009519", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2009009519"}], "authorized_access_point": "Danzón (Dance)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332687431", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF18143564", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb18143564m"}], "authorized_access_point": "Danzón (danse)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4474574-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)951939440", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4474574-6", "source": "GND"}], "authorized_access_point": "Danzón"} 1 +2024-09-11 09:09:17.685692 2024-09-11 09:09:17.685696 ae14d98f-1524-4012-b3c2-0ec8cb9bc468 {"md5": "e1a6a0ed7e407bfb3be7cf11b92ea1bf", "pid": "95171337X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4473972-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)95171337X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4473972-2", "source": "GND"}], "authorized_access_point": "Zuteilung"} 1 +2024-09-11 09:09:17.738081 2024-09-11 09:09:17.738084 db0eedfe-11ed-4b5b-a06f-efb9722ea0c1 {"md5": "987255721041869cd96c89363fa8cccd", "pid": "951567241", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Einbau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4471593-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)951567241", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4471593-6", "source": "GND"}], "variant_access_point": ["Störkörper", "Höcker (Wasserbau)"], "authorized_access_point": "Schikane (Technik)"} 1 +2024-09-11 09:09:17.790198 2024-09-11 09:09:17.790215 f662f92a-b866-4d09-af22-ae9cebcbf529 {"md5": "392a4ed93a7b1285a049534ab7915239", "pid": "951452940", "note": [{"label": ["Bez. für die sensiblen (z. B. Taubheitsgefühl, Kribbeln), sensor. (z. B. Geruchs- od. Geschmacksaura), vegetativen (epigastrische A.) od. psychischen (Glücks-, Angstgefühl, Déjà-vu-Erlebnis) Wahrnehmungen unmittelbar vor einem epilept. Anfall."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Epileptischer Anfall"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4469122-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)951452940", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4469122-1", "source": "GND"}], "authorized_access_point": "Aura (Epilepsie)"} 1 +2024-09-11 09:09:17.845968 2024-09-11 09:09:17.845971 2ac7df46-f38f-4607-ac89-8dbec3aa5643 {"md5": "0777fee4539c0604bb89c09cb161d6c0", "pid": "95136653X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kirchenfest"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331870402", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85061570", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85061570"}], "authorized_access_point": "Feast of the Holy Innocents"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331870402", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16612328", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16612328x"}], "authorized_access_point": "Fête des Saints-Innocents"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4467778-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)95136653X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4467778-9", "source": "GND"}], "variant_access_point": ["Unschuldige Kinder (Kirchenfest)"], "authorized_access_point": "Fest der Unschuldigen Kinder"} 1 +2024-09-11 09:09:17.901329 2024-09-11 09:09:17.901334 949691ae-f248-4748-a566-d23c59cfdb49 {"md5": "e381b7f8499ca402438380de84a0927f", "pid": "951151541", "note": [{"label": ["Benutzt, soweit außerhalb Portugals lebend, sonst verknüpfe Portugal ; Frau"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ausländerin"}], "related": [{"authorized_access_point": "Portugiesen"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)101055395X", "source": "GND"}, {"type": "bf:Nbn", "value": "26602-0", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/26602-0"}], "authorized_access_point": "Portugiesen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4466604-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)951151541", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4466604-4", "source": "GND"}], "variant_access_point": ["Portugiesische Frau"], "authorized_access_point": "Portugiesin"} 1 +2024-09-11 09:09:17.958482 2024-09-11 09:09:17.958486 59f808f9-2b2f-479d-a5ef-e169dbf8c85a {"md5": "d80c6c6c981cac482c23ef9fd2f94314", "pid": "951040960", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113403993X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11976146", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11976146b"}], "authorized_access_point": "Étiquetage"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4464866-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)951040960", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4464866-2", "source": "GND"}], "variant_access_point": ["Etikettierung"], "authorized_access_point": "Etikettieren"} 1 +2024-09-11 09:09:18.021122 2024-09-11 09:09:18.021126 5e39a027-f620-426b-b41f-59df7d320c61 {"md5": "97d281fbc4e0111910bd68814640632b", "pid": "950872555", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Grafiker"}], "related": [{"authorized_access_point": "Druckgrafikerin"}, {"authorized_access_point": "Druckgrafik"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134513712", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85043993", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85043993"}], "authorized_access_point": "Engravers"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134162871", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85106829", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85106829"}], "authorized_access_point": "Printmakers"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134513712", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11931591", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119315917"}], "authorized_access_point": "Graveurs"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134162871", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12101115", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb121011155"}], "authorized_access_point": "Graveurs d'estampe"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4461989-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950872555", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4461989-3", "source": "GND"}], "variant_access_point": ["Druckgraphiker"], "authorized_access_point": "Druckgrafiker"} 1 +2024-09-11 09:09:18.079407 2024-09-11 09:09:18.07941 78c20900-345d-40fc-b9fa-07d649d1e5ae {"md5": "3d2fa25f3ed8082e87e3c937c7a45f97", "pid": "95058410X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133749372", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2017004979", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2017004979"}], "authorized_access_point": "Intensification (Linguistics)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133749372", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12272694", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12272694j"}], "authorized_access_point": "Intensifs (linguistique)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4456696-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)95058410X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4456696-7", "source": "GND"}], "variant_access_point": ["Intensifikator", "Gradmodifikator"], "authorized_access_point": "Steigerungspartikel"} 1 +2024-09-11 09:09:18.132262 2024-09-11 09:09:18.132266 9fb8078f-b6a5-49cf-b0fb-d5799d1052d7 {"md5": "4ef7742ff17182d3ea3ca478c544ca54", "pid": "950461083", "note": [{"label": ["Weißfäulepilz"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334020353", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17987279", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17987279v"}], "authorized_access_point": "Tramète brûlée"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4454459-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950461083", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4454459-5", "source": "GND"}], "authorized_access_point": "Bjerkandera adusta"} 1 +2024-09-11 09:09:18.200067 2024-09-11 09:09:18.200073 d06d168e-f24a-46e4-8fc2-ca7d92cd7a3b {"md5": "98dc674daa20aae9dd13f8971e4f61df", "pid": "950453544", "note": [{"label": ["Verknüpfe mit der jeweiligen Gattung. z. B. Kinderliteratur / Illustratorin. Als Homonymenzusatz bei Personenschlagwörtern verwende Künstlerin"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Illustrator"}, {"authorized_access_point": "Buchmalerin"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331598281", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2001008322", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2001008322"}], "authorized_access_point": "Women illustrators"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331598281", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17769817", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17769817p"}], "authorized_access_point": "Illustratrices"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4454346-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950453544", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4454346-3", "source": "GND"}], "variant_access_point": ["Buchillustratorin"], "authorized_access_point": "Illustratorin"} 1 +2024-09-11 09:09:18.256696 2024-09-11 09:09:18.256699 b0a72954-7be4-4a4e-8da3-26ad4ac8ca21 {"md5": "c574b5692da43415d761872af7bbe4f7", "pid": "950378682", "note": [{"label": ["Art der Meeräschen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Meeräschen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333492510", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17816474", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17816474t"}], "authorized_access_point": "Mulet lebranche"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4453023-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950378682", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4453023-7", "source": "GND"}], "authorized_access_point": "Mugil platanus"} 1 +2024-09-11 09:09:18.322624 2024-09-11 09:09:18.322628 0c65f44e-3fe0-41dc-aa30-6fd45fae1726 {"md5": "d12acf9181b17c92dbd7137e923388d1", "pid": "950378658", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Meeräschen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133944787", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85088271", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85088271"}], "authorized_access_point": "Mugil capito"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133944787", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11938288", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119382886"}], "authorized_access_point": "Mulet-porc (poissons)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4453022-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950378658", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4453022-5", "source": "GND"}], "variant_access_point": ["Mugil capito"], "authorized_access_point": "Dünnlippige Meeräsche"} 1 +2024-09-11 09:09:18.376646 2024-09-11 09:09:18.37665 b88e60b4-156e-44b7-965d-5e6243d89bae {"md5": "2f5a08ccd9f1a7f34f7db5d7a1711b19", "pid": "950280984", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Kinderklavier"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Spielzeug"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332762301", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2001006041", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2001006041"}], "authorized_access_point": "Toy piano"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332762301", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16035513", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16035513j"}], "authorized_access_point": "Piano-jouet"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4451509-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950280984", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4451509-1", "source": "GND"}], "variant_access_point": ["Spielzeugklavier", "Toy piano", "Toypiano"], "authorized_access_point": "Kinderklavier"} 1 +2024-09-11 09:09:18.485993 2024-09-11 09:09:18.485998 2de03c32-8190-4c86-8986-707d8815911e {"md5": "ea9811c0ef5eb2853b490e3244f68b84", "pid": "94996591X", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Prayer_Book_Rebellion&oldid=1187132856"], "noteType": "dataSource"}, {"label": ["Die Durchsetzung der englischen Sprache mittels der Einführung des ersten \\"Book of Common Prayer\\", zusammen mit schlechten wirtschaftlichen Bedingungen, führte 1549 zu einem Volksaufstand in Cornwall und Devon"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Aufstand"}], "related": [{"authorized_access_point": "Reformation"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4446374-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)94996591X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4446374-1", "source": "GND"}], "variant_access_point": ["England (West, 1549)", "Western Rising", "Prayer Book Rebellion", "Cornish Prayer Book Rebellion", "West Country Prayer Book Rebellion"], "authorized_access_point": "Western Rebellion"} 1 +2024-09-11 09:09:18.540841 2024-09-11 09:09:18.540845 52bdc91e-84df-416c-8035-8f8605714f3c {"md5": "09d37efe294ef88d34fc04d65ce010bb", "pid": "949736864", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332646476", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85122115", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85122115"}], "authorized_access_point": "Showers (Plumbing fixtures)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332646476", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13561411", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13561411p"}], "authorized_access_point": "Douches"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4442449-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949736864", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4442449-8", "source": "GND"}], "variant_access_point": ["Brause"], "authorized_access_point": "Dusche"} 1 +2024-09-11 09:09:18.595775 2024-09-11 09:09:18.595779 279b35d5-7623-4472-99c2-8b6459137322 {"md5": "6c1ca1e037131af8bac37345d7fab005", "pid": "949582964", "note": [{"label": ["Flache, ausgedehnte Schotter- oder Sandebene"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ebene"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4438987-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949582964", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4438987-5", "source": "GND"}], "variant_access_point": ["Sandur", "Sandr"], "authorized_access_point": "Sander"} 1 +2024-09-11 09:09:18.650461 2024-09-11 09:09:18.650467 4a518457-9651-41a9-9920-09a4b8dae7f4 {"md5": "6345898ef2c79f6bee1f2c359e138241", "pid": "94925584X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Spähtrupp"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134048165", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11977593", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119775936"}], "authorized_access_point": "Éclaireurs (reconnaissance)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4433683-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)94925584X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4433683-4", "source": "GND"}], "variant_access_point": ["Kundschafter"], "authorized_access_point": "Späher"} 1 +2024-09-11 09:09:18.71399 2024-09-11 09:09:18.713995 513c1028-6e04-47eb-89a2-c3977ce6d2b6 {"md5": "79cd558bd91beed173b383123ce33ff7", "pid": "949178594", "note": [{"label": ["Wiktionary - https://de.wiktionary.org/w/index.php?title=Stra%C3%9Fenverk%C3%A4ufer&oldid=7904470"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Verkäufer"}], "related": [{"authorized_access_point": "Straßenverkauf"}, {"authorized_access_point": "Straßenverkäuferin"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134504179", "source": "GND"}, {"type": "bf:Nbn", "value": "sh00003150", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00003150"}], "authorized_access_point": "Street vendors"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4432422-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949178594", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4432422-4", "source": "GND"}], "variant_access_point": ["Straßenhändler"], "authorized_access_point": "Straßenverkäufer"} 1 +2024-09-11 09:09:18.778715 2024-09-11 09:09:18.778719 a4c959e9-5849-407a-9ce6-0913dc2bea0a {"md5": "68075759bc0556228ab7e6414e3d6a55", "pid": "948985429", "note": [{"label": ["aus Japan stammende Form der Beteiligung von Arbeitnehmern an der Entwicklung von Innovationen in Unternehmen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Vorschlagswesen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134492219", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13191265", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb131912650"}], "authorized_access_point": "Production au plus juste"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4429179-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948985429", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4429179-6", "source": "GND"}], "variant_access_point": ["Kontinuierlicher Verbesserungsprozess", "KVP", "Continuous Improvement Process"], "authorized_access_point": "Kaizen"} 1 +2024-09-11 09:09:18.840115 2024-09-11 09:09:18.840118 945f4b99-b4ec-48e4-9820-1cac9efb5404 {"md5": "6cbfb9dd8855b5af8d3bd390450b9917", "pid": "948861975", "note": [{"label": ["Unterart der Schimpansen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hominidae"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4427691-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948861975", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4427691-6", "source": "GND"}], "authorized_access_point": "Pan troglodytes verus"} 1 +2024-09-11 09:09:18.95605 2024-09-11 09:09:18.956053 86307bb8-e2b9-4e06-8533-af9214fd18b1 {"md5": "639c3047c2dd5bb4a2efb891c5592b08", "pid": "948616792", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Residenz"}], "related": [{"authorized_access_point": "Königspfalz"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334012520", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85014421", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85014421"}], "authorized_access_point": "Bishops - Homes and haunts"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334012520", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16650585", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16650585n"}], "authorized_access_point": "Palais épiscopaux"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4424386-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948616792", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4424386-8", "source": "GND"}], "variant_access_point": ["Bischofspalast"], "authorized_access_point": "Bischofspfalz"} 1 +2024-09-11 09:09:19.009494 2024-09-11 09:09:19.009498 f0b35a14-e614-4730-84f1-b35ccee80547 {"md5": "c994952999941f3c781acea0a0b86857", "pid": "948581387", "note": [{"label": ["Gattung der Röhrlinge"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Röhrlinge"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4423844-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948581387", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4423844-7", "source": "GND"}], "variant_access_point": ["Leccinum", "Rauhfüße", "Rauhfuß", "Raufüße", "Raufuß", "Rauhfußröhrling", "Raustielröhrling", "Rauhstielröhrling"], "authorized_access_point": "Raufußröhrling"} 1 +2024-09-11 09:09:19.066202 2024-09-11 09:09:19.066208 3b34f7b4-60a6-4e3b-8cc4-7aa6348fcac3 {"md5": "3427f3c89e1afb175dc4ba48c3d0a2dc", "pid": "948367032", "note": [{"label": ["Gattung der Schleimfische"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schuppenlose Schleimfische"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333368518", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85040884", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85040884"}], "authorized_access_point": "Ecsenius"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333368518", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17798786", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17798786m"}], "authorized_access_point": "Ecsenius"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4420692-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948367032", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4420692-6", "source": "GND"}], "variant_access_point": ["Escenius"], "authorized_access_point": "Ecsenius"} 1 +2024-09-11 09:09:19.123183 2024-09-11 09:09:19.123187 8c4b822e-3e78-4eea-aa40-c8cb829d9b3b {"md5": "8deb39adac273a58a3d2f382d7d1b974", "pid": "948358742", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Artist"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113382739X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh96009049", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh96009049"}], "authorized_access_point": "Women circus performers"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113382739X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12546462", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb125464627"}], "authorized_access_point": "Femmes artistes de cirque"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4420603-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948358742", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4420603-3", "source": "GND"}], "authorized_access_point": "Artistin"} 1 +2024-09-11 09:09:19.175694 2024-09-11 09:09:19.175698 4a8537a8-080a-4853-a932-99c6b8371b66 {"md5": "6f04307ad1cda113d794c2f43f9a6970", "pid": "94818387X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Optisches Kommunikationsnetz"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134645503", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2007007027", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2007007027"}], "authorized_access_point": "Passive optical networks"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4418747-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)94818387X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4418747-6", "source": "GND"}], "variant_access_point": ["PON", "Passiv optical network"], "authorized_access_point": "Passives optisches Netz"} 1 +2024-09-11 09:09:19.23557 2024-09-11 09:09:19.235574 5a0edf54-5ead-40dc-a71b-7a497a66e2c0 {"md5": "d547faf469e60331d35eac571df3bd5c", "pid": "948059028", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Showtanz"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133837832", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2016001989", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2016001989"}], "authorized_access_point": "Cancan (Dance)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133837832", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13169985", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13169985v"}], "authorized_access_point": "Cancan (danse)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254395598", "source": "GND"}, {"type": "bf:Nbn", "value": "67289", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/67289"}], "authorized_access_point": "Cancan"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4417076-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948059028", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4417076-2", "source": "GND"}], "variant_access_point": ["Chahut", "Can can"], "authorized_access_point": "Cancan"} 1 +2024-09-11 09:09:19.292921 2024-09-11 09:09:19.292928 24186cb1-9c0f-477e-9b4d-e28434d7c719 {"md5": "73b03c2f243bdc38b587658a79f9350a", "pid": "948023465", "note": [{"label": ["Art aus d. Fam. Synbranchidae"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333488181", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85131604", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85131604"}], "authorized_access_point": "Synbranchus marmoratus"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333488181", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17758506", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17758506r"}], "authorized_access_point": "Synbranchus marmoratus"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4416523-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948023465", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4416523-7", "source": "GND"}], "variant_access_point": ["Synbranchus marmoratus"], "authorized_access_point": "Südamerikanischer Kurzschwanzaal"} 1 +2024-09-11 09:09:19.354634 2024-09-11 09:09:19.354638 e0d58dce-7503-4ea4-b421-60121952d78f {"md5": "2c50e51b3c4eb0deae7a5a29af510b04", "pid": "947999043", "note": [{"label": ["Benutzt für die Pflanze"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ingwergewächse"}], "related": [{"authorized_access_point": "Kardamom (Gewürz)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134409761", "source": "GND"}, {"type": "bf:Nbn", "value": "sh88022764", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh88022764"}], "authorized_access_point": "Elettaria"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134409761", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF14431349", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb14431349f"}], "authorized_access_point": "Elettaria"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256226521", "source": "GND"}, {"type": "bf:Nbn", "value": "2529", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_2529"}], "authorized_access_point": "Elettaria cardamomum"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125622653X", "source": "GND"}, {"type": "bf:Nbn", "value": "9620", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_9620"}], "authorized_access_point": "cardamoms"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4416048-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947999043", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4416048-3", "source": "GND"}], "variant_access_point": ["Cardamom", "Elettaria"], "authorized_access_point": "Kardamom"} 1 +2024-09-11 09:09:19.414612 2024-09-11 09:09:19.414616 5351745d-e86a-4ae6-a6f2-200b7b0e96e1 {"md5": "07dfb817bd52e39ac7961d092dff0804", "pid": "947807691", "note": [{"label": ["Wikipedia unter Aufstand der Vendée - https://de.wikipedia.org/w/index.php?title=Aufstand_der_Vend%C3%A9e&oldid=243780170"], "noteType": "dataSource"}, {"label": ["Legitimistische Erhebung für die Thronrechte der Bourbonen gegen die Julimonarchie, angestiftet von der Herzogin von Berry"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Aufstand"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4413095-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947807691", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4413095-8", "source": "GND"}], "variant_access_point": ["Aufstand in der Vendée (1832)", "Rebellion in der Vendée (1832)", "Legitimistische Erhebung in der Vendée (1832)"], "authorized_access_point": "Aufstand der Vendée (1832)"} 1 +2024-09-11 09:09:19.470057 2024-09-11 09:09:19.470061 2e01617b-4ff1-460d-a07a-dd2252ed2c00 {"md5": "5b43ed4fa0a506787eb82f70a2a1336f", "pid": "947667040", "note": [{"label": ["Pyramide aus Menschen, sportl.- wettkampfähnl. Darbietung, auch Zirkusnummer", "Verknüpfe ggf. mit SW Sportakrobatik"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Akrobatik"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113438873X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85109303", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85109303"}], "authorized_access_point": "Pyramids (Gymnastics)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113438873X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13174928", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb131749281"}], "authorized_access_point": "Pyramides humaines"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4411444-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947667040", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4411444-8", "source": "GND"}], "variant_access_point": ["Pyramide (Akrobatik)"], "authorized_access_point": "Menschenpyramide"} 1 +2024-09-11 09:09:19.525965 2024-09-11 09:09:19.52597 54cddda2-625e-42fc-948d-094bbe78f5ad {"md5": "320c2a87695ca33ff83df67914d1bb81", "pid": "947636676", "note": [{"label": ["Eigenständiger Studiengang z.B. an der Hochschule für Grafik und Buchkunst in Leipzig"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Studium"}], "related": [{"authorized_access_point": "Kunststudium"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4411049-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947636676", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4411049-2", "source": "GND"}], "variant_access_point": ["Photographiestudium", "Fotografie"], "authorized_access_point": "Fotografiestudium"} 1 +2024-09-11 09:09:19.579851 2024-09-11 09:09:19.579854 b094c77b-1466-4f10-bdec-8561b2c68064 {"md5": "6dbb49df54105dbfdf18103aa9d8ad2c", "pid": "947568441", "note": [{"label": ["Kennzahl zur Beurteilung von Zinsänderungsrisiken, erlaubt im Zusammenhang mit der Duration eine genaue Abschätzung des Barwertes der Zinsänderung", "Kapitalanlage + Bewertung oder eng. Sachverhalte nicht pleonastisch"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kennzahl"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4410173-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947568441", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4410173-9", "source": "GND"}], "variant_access_point": ["Convexity", "Konvexity"], "authorized_access_point": "Konvexität (Kapitalanlage)"} 1 +2024-09-11 09:09:19.636781 2024-09-11 09:09:19.636784 2e29e20a-6f21-417b-83da-6834effa14f4 {"md5": "02485ee10cdf40976de94b1b7b516a4d", "pid": "947543112", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134651961", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12252146", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12252146w"}], "authorized_access_point": "Fruits - Transformation"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4409883-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947543112", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4409883-2", "source": "GND"}], "authorized_access_point": "Fruchtzubereitung"} 1 +2024-09-11 09:09:19.692488 2024-09-11 09:09:19.692492 8ddc1933-a05f-4ec8-94a0-4a4b8f5de51d {"md5": "26290c8b7850a66e02e28bdf595dd88c", "pid": "947466223", "note": [{"label": ["Programmpaket, bestehend aus WinAuftrag 3.0 und WinFiBu 3.0"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Finanzbuchhaltung"}, {"authorized_access_point": "Auftragsabwicklung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4409165-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947466223", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4409165-5", "source": "GND"}], "variant_access_point": ["Büro Plus 3.0 (Programm)"], "authorized_access_point": "Büro Plus für WINDOWS 3.0"} 1 +2024-09-11 09:09:19.743056 2024-09-11 09:09:19.743061 36ab804a-6703-4200-8f57-22779e71ed23 {"md5": "ba207337804ec6eb1a75fdee5f3380a4", "pid": "947465928", "note": [{"label": ["Programmpaket, bestehend aus WinAuftrag 1.0 und WinFiBu 1.0"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Finanzbuchhaltung"}, {"authorized_access_point": "Auftragsabwicklung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4409161-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947465928", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4409161-8", "source": "GND"}], "variant_access_point": ["Büro Plus 1.0 (Programm)"], "authorized_access_point": "Büro Plus für WINDOWS 1.0"} 1 +2024-09-11 09:09:19.797187 2024-09-11 09:09:19.797192 8478a45e-3acd-448e-b02c-ed1f83b50bc6 {"md5": "85a2874446cec258f2eaad068b31349d", "pid": "947415874", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Finnischer_B%C3%BCrgerkrieg&oldid=201962892"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bürgerkrieg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4408662-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947415874", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4408662-3", "source": "GND"}], "variant_access_point": ["Bürgerkrieg in Finnland", "Suomen sisällissota", "Sisällissota (Finnland)"], "authorized_access_point": "Finnischer Bürgerkrieg"} 1 +2024-09-11 09:09:19.851598 2024-09-11 09:09:19.851602 512defdf-bc78-45ae-b347-8f60f0821b56 {"md5": "baacd7e57ecf66637931509ee2d2f769", "pid": "947397213", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schiff (Architektur)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334556784", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2007007528", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2007007528"}], "authorized_access_point": "Transepts"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334556784", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13331557", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb133315579"}], "authorized_access_point": "Transepts"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4408354-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947397213", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4408354-3", "source": "GND"}], "variant_access_point": ["Querhaus", "Transept", "Transeptum"], "authorized_access_point": "Querschiff"} 1 +2024-09-11 09:09:19.914809 2024-09-11 09:09:19.914813 a4bbd63f-9d6a-4a6b-abc4-d447191038b4 {"md5": "7c40ad38e35091ddb5f555ca371c1be8", "pid": "947389229", "note": [{"label": ["Wikipedia unter Aufstand der Vendée - https://de.wikipedia.org/w/index.php?title=Aufstand_der_Vend%C3%A9e&oldid=243780170"], "noteType": "dataSource"}, {"label": ["Royalistische Erhebung für die Thronrechte der Bourbonen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Aufstand"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4408277-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947389229", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4408277-0", "source": "GND"}], "variant_access_point": ["Aufstand in der Vendée (1815)", "Rebellion in der Vendée (1815)", "Royalistische Erhebung in der Vendée (1815)", "Guerre de Vendée et Chouannerie de 1815"], "authorized_access_point": "Aufstand der Vendée (1815)"} 1 +2024-09-11 09:09:19.976869 2024-09-11 09:09:19.976872 96a29393-71fc-4979-be95-fe95b7bdba19 {"md5": "d2c1e3719f97e4c819b698804dd8ed5f", "pid": "94736093X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4408014-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)94736093X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4408014-1", "source": "GND"}], "variant_access_point": ["Urteilskorrektur", "Urteil", "Urteil"], "authorized_access_point": "Urteilsberichtigung"} 1 +2024-09-11 09:09:20.034598 2024-09-11 09:09:20.034603 c7e0907e-5433-4324-8636-61c44dc33826 {"md5": "4893cca718734c7941278c0c23171129", "pid": "947337555", "note": [{"label": ["Ostslaw. Stammesverband"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Ostslawen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4407717-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947337555", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4407717-8", "source": "GND"}], "variant_access_point": ["Kryvičy", "Kriviči"], "authorized_access_point": "Kriwitschen"} 1 +2024-09-11 09:09:20.089355 2024-09-11 09:09:20.089358 64f00069-5be7-4b4b-b8dd-8ce9184629e9 {"md5": "3332258540edffd4cc52d412bc75be63", "pid": "947167293", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Lüge"}], "related": [{"authorized_access_point": "Unehrlichkeit"}, {"authorized_access_point": "Unwahrheit"}, {"authorized_access_point": "Wahrhaftigkeit"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4405481-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947167293", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4405481-6", "source": "GND"}], "variant_access_point": ["Unwahrhaftigkeit"], "authorized_access_point": "Unaufrichtigkeit"} 1 +2024-09-11 09:09:27.379693 2024-09-11 09:09:27.379697 a024e9a7-f269-42cf-be8d-3171c0d89a02 {"md5": "5b6ccbc374e7d10d215f55cae9fde9c8", "pid": "042829194", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Operatoralgebra"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4282919-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042829194", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4282919-7", "source": "GND"}], "authorized_access_point": "Cuntz-Algebra"} 1 +2024-09-11 09:09:20.149976 2024-09-11 09:09:20.149981 2e0b9f15-aacc-464a-9d24-1e4822142018 {"md5": "645f1175084e22fe1d125c6ee7d4ee0a", "pid": "947085017", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung und hier nicht permutierender Wortart, z.B. Englisch ; Substantiv ; democracy"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4404603-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947085017", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4404603-0", "source": "GND"}], "authorized_access_point": "democracy"} 1 +2024-09-11 09:09:20.210901 2024-09-11 09:09:20.210906 de3f9ae2-9c82-4fc6-a6d1-44ed3fc50a18 {"md5": "5df210a59cb3b5b35aecf152464881e9", "pid": "947015388", "note": [{"label": ["Formgattung der Fadenpilze"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mucoraceae"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134560745", "source": "GND"}, {"type": "bf:Nbn", "value": "sh88022093", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh88022093"}], "authorized_access_point": "Sporotrichum"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134560745", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16624535", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16624535f"}], "authorized_access_point": "Sporotrichum"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256259357", "source": "GND"}, {"type": "bf:Nbn", "value": "27613", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_27613"}], "authorized_access_point": "Sporotrichum"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4403631-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947015388", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4403631-0", "source": "GND"}], "authorized_access_point": "Sporotrichum"} 1 +2024-09-11 09:09:20.266011 2024-09-11 09:09:20.266016 6915f9b1-a25c-4d9d-8e41-2637342565fc {"md5": "71b2e7e334691afcfc9e9c6af545ec9c", "pid": "946998051", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Seiltänzer"}, {"authorized_access_point": "Slacklinen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134090099", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85135325", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85135325"}], "authorized_access_point": "Tightrope walking"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134090099", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11997970", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119979702"}], "authorized_access_point": "Funambulisme"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4403427-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)946998051", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4403427-1", "source": "GND"}], "authorized_access_point": "Seiltanz"} 1 +2024-09-11 09:09:20.322536 2024-09-11 09:09:20.322541 548b5828-a764-454f-b602-d52e3b4babb8 {"md5": "042bab32250e3563846ccf290ce2a6ff", "pid": "946944210", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wappentier"}, {"authorized_access_point": "Adler (Motiv)"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333635303", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2002005586", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2002005586"}], "authorized_access_point": "Double-headed eagle (Emblem)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4402791-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)946944210", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4402791-6", "source": "GND"}], "variant_access_point": ["Doppelköpfiger Adler"], "authorized_access_point": "Doppeladler"} 1 +2024-09-11 09:09:20.379788 2024-09-11 09:09:20.379791 f5eb947c-5898-4cc8-91e5-071fef261eeb {"md5": "85854dfff3841479760283c64109a50e", "pid": "946868093", "note": [{"label": ["World Heritage List - https://whc.unesco.org/en/list"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134105703", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12010561", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb120105617"}], "authorized_access_point": "Patrimoine mondial culturel et naturel"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4402276-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)946868093", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4402276-1", "source": "GND"}], "variant_access_point": ["World Heritage", "UNESCO-Welterbe"], "authorized_access_point": "Welterbe"} 1 +2024-09-11 09:09:20.451247 2024-09-11 09:09:20.451252 f83be1f2-f764-48a1-85cc-72461c174bd3 {"md5": "c9634b2e73f31bd3ba0dc09cb518d708", "pid": "946792631", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Lasergenerieren"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133774687", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12334888", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb123348880"}], "authorized_access_point": "Stéréolithographie"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4401168-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)946792631", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4401168-4", "source": "GND"}], "authorized_access_point": "Stereolithographie"} 1 +2024-09-11 09:09:21.111388 2024-09-11 09:09:21.111393 3dd177b5-98aa-45ff-8da2-b3e137b06a8d {"md5": "8340af21b20f80240debac9c4fdccd87", "pid": "94430396X", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung und (hier nicht permutierender - gilt bis 31. 03. 2010) Wortart, z.B. Französisch / Verb / aller "], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134523785", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12533714", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb125337148"}], "authorized_access_point": "Aller (le mot français)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4374559-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)94430396X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4374559-3", "source": "GND"}], "authorized_access_point": "aller (Wort)"} 1 +2024-09-11 09:09:20.508924 2024-09-11 09:09:20.50893 f918b3fb-e641-4eb6-be5f-46a486391181 {"md5": "35e245985b806b35c2fa85c33a7b5403", "pid": "946776164", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Novelle"}, {"authorized_access_point": "Erotische Literatur"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331607299", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85044708", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85044708"}], "authorized_access_point": "Erotic stories"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331607299", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16932431", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb169324311"}], "authorized_access_point": "Nouvelles érotiques"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4400938-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)946776164", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4400938-0", "source": "GND"}], "authorized_access_point": "Erotische Novelle"} 1 +2024-09-11 09:09:20.57191 2024-09-11 09:09:20.571914 b4b54b6f-e20c-4b80-b5b4-7ab38267b3d0 {"md5": "a7aa5d3b6f30136cb573777dd75f43c9", "pid": "946530629", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "AutoCAD"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4398207-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)946530629", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4398207-4", "source": "GND"}], "authorized_access_point": "ACAD-Bau 5.1"} 1 +2024-09-11 09:09:20.629934 2024-09-11 09:09:20.629938 606e2f92-a8ca-4e01-a7ff-fc60aae3ddf6 {"md5": "77975a87f871f60711a6705ff4f2b539", "pid": "94646085X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bakterien"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134680317", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2017004780", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2017004780"}], "authorized_access_point": "Proteobacteria"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134680317", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15537035", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15537035p"}], "authorized_access_point": "Protéobactéries"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254378596", "source": "GND"}, {"type": "bf:Nbn", "value": "45491", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/45491"}], "authorized_access_point": "Proteobacteria"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4397407-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)94646085X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4397407-7", "source": "GND"}], "authorized_access_point": "Proteobakterien"} 1 +2024-09-11 09:09:20.690958 2024-09-11 09:09:20.690962 356c5dca-2d78-4ae8-b534-dece6de9729f {"md5": "a575b2e1fc894f06760f4da3b7855e25", "pid": "946062706", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Stadt"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134702809", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13554339", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb135543399"}], "authorized_access_point": "Fronts de mer"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4392076-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)946062706", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4392076-7", "source": "GND"}], "authorized_access_point": "Küstenstadt"} 1 +2024-09-11 09:09:20.760591 2024-09-11 09:09:20.760597 fdc82701-9a4e-4668-ad95-c566765cf49c {"md5": "891eed9d377bbc9fb1532b071a98819f", "pid": "946022895", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tanz"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133885330", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85053573", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85053573"}], "authorized_access_point": "Gavottes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133885330", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13742456", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13742456t"}], "authorized_access_point": "Gavottes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332662234", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF18071066", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb18071066w"}], "authorized_access_point": "Gavotte (danse)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254394230", "source": "GND"}, {"type": "bf:Nbn", "value": "65536", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/65536"}], "authorized_access_point": "Gavotte"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4391319-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)946022895", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4391319-2", "source": "GND"}], "variant_access_point": ["Gavotto", "Gavotta", "Gavot (Tanz)", "Gavota"], "authorized_access_point": "Gavotte"} 1 +2024-09-11 09:09:21.169394 2024-09-11 09:09:21.169398 5cb9ed71-4f19-4efa-bd06-69ea6227ebfa {"md5": "115e5a8973969ed862325a318a0c69f8", "pid": "943889170", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333369808", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85137450", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85137450"}], "authorized_access_point": "Trichiuridae"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333369808", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17160836", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17160836r"}], "authorized_access_point": "Trichiuridés"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4370633-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)943889170", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4370633-2", "source": "GND"}], "variant_access_point": ["Trichiuridae"], "authorized_access_point": "Haarschwänze"} 1 +2024-09-11 09:09:20.817978 2024-09-11 09:09:20.817984 f6dfd3b0-d9a2-4334-9171-9c4dffeca571 {"md5": "a1a39c1e8dc1997d8429c43b2280f733", "pid": "94601888X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Stressreaktion"}], "related": [{"authorized_access_point": "Hitzeschock-Proteine"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134243006", "source": "GND"}, {"type": "bf:Nbn", "value": "sh00004617", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00004617"}], "authorized_access_point": "Effect of heat on"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134243006", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12264597", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12264597k"}], "authorized_access_point": "Effets de la chaleur"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256221880", "source": "GND"}, {"type": "bf:Nbn", "value": "11488", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_11488"}], "authorized_access_point": "heat stress"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4391224-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)94601888X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4391224-2", "source": "GND"}], "variant_access_point": ["Hitzeschock (Molekularbiologie)", "Hitzeschockantwort", "Heat-shock-response"], "authorized_access_point": "Hitzestress"} 1 +2024-09-11 09:09:20.872741 2024-09-11 09:09:20.872745 35e52a6c-77ae-4db2-8f8c-89350db3de86 {"md5": "4b7658d27c38c82fe14107077a56a30e", "pid": "945863837", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Groppen (Familie)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133348710X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85033386", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85033386"}], "authorized_access_point": "Cottus gobio"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133348710X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17813225", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17813225b"}], "authorized_access_point": "Chabot commun"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256218782", "source": "GND"}, {"type": "bf:Nbn", "value": "6888", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_6888"}], "authorized_access_point": "sculpins"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4389859-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)945863837", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4389859-2", "source": "GND"}], "variant_access_point": ["Cottus gobio", "Koppe", "Mühlkoppe"], "authorized_access_point": "Groppe"} 1 +2024-09-11 09:09:20.941015 2024-09-11 09:09:20.94102 0014f040-ca0b-48fd-9281-a3c7098eec55 {"md5": "bab2390c400ce41dcf3780f4ccbbf74e", "pid": "944522297", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Irokesische Sprachen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134446675", "source": "GND"}, {"type": "bf:Nbn", "value": "sh96003821", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh96003821"}], "authorized_access_point": "Cayuga language"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134446675", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF14575245", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb14575245r"}], "authorized_access_point": "Cayuga (langue)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4377405-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)944522297", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4377405-2", "source": "GND"}], "variant_access_point": ["Cayiuker", "Ruengues", "Gayogo̱hó:nǫˀ"], "authorized_access_point": "Cayuga-Sprache"} 1 +2024-09-11 09:09:21.000237 2024-09-11 09:09:21.000242 4d972378-3166-4b3c-b14d-c12f621fa33c {"md5": "75d8067d41a5998f4ab7a130dcc73c1a", "pid": "944502172", "note": [{"label": ["Preis, bei dem das Produkt als Bündel von Einzelnutzen /-leistungen aufgefasst wird, die einzeln zu bewerten sind und in den Preis einfliessen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Preis"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331580285", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2021005695", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2021005695"}], "authorized_access_point": "Hedonic pricing"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966773241", "source": "GND"}, {"type": "bf:Nbn", "value": "10199-1", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/10199-1"}], "authorized_access_point": "Hedonischer Preisindex"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4377236-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)944502172", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4377236-5", "source": "GND"}], "authorized_access_point": "Hedonischer Preis"} 1 +2024-09-11 09:09:21.057582 2024-09-11 09:09:21.057587 af7a7bf0-ff28-4c6a-80c3-2945995d0ef1 {"md5": "c56c3b7a3167d52dfe83df21aee5d377", "pid": "944484611", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung und hier nicht permutierender Wortart, z.B. Latein / Substantiv / felicitas"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134310730", "source": "GND"}, {"type": "bf:Nbn", "value": "sh91005717", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh91005717"}], "authorized_access_point": "Felicitas (The Latin word)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134310730", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12398160", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12398160w"}], "authorized_access_point": "Felicitas (le mot latin)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4376981-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)944484611", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4376981-0", "source": "GND"}], "authorized_access_point": "felicitas"} 1 +2024-09-11 09:09:21.226905 2024-09-11 09:09:21.226909 22e83d75-115e-4205-8fcc-aa23fc6b1eec {"md5": "867195a126f690c8330e3d7e1695d2b5", "pid": "943836476", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Erinnerung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4369798-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)943836476", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4369798-7", "source": "GND"}], "variant_access_point": ["Gedächtnis (Gedenken)", "Angedenken"], "authorized_access_point": "Gedenken"} 1 +2024-09-11 09:09:21.281525 2024-09-11 09:09:21.281529 58c32621-8b9e-40ee-9804-c5192f7e1191 {"md5": "c6be583f63aff2d4d4086225b54f231b", "pid": "943625394", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Zeitkonstante"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134758537", "source": "GND"}, {"type": "bf:Nbn", "value": "sh99005491", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99005491"}], "authorized_access_point": "Decay"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4367531-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)943625394", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4367531-1", "source": "GND"}], "variant_access_point": ["Abklingdauer"], "authorized_access_point": "Abklingzeit"} 1 +2024-09-11 09:09:21.341264 2024-09-11 09:09:21.341268 1aac3a47-57b5-488b-8ec7-33e4dfd44cd4 {"md5": "34099f243d2f55544ece2e4e4fa5b9f6", "pid": "943440017", "note": [{"label": ["Technische Konstruktion, die Störungen selbst zu korrigieren vermag,so daß die Funktionsfähigkeit der Konstruktion erhalten bleibt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Konstruktion"}], "related": [{"authorized_access_point": "Intelligenter Werkstoff"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4364681-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)943440017", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4364681-5", "source": "GND"}], "authorized_access_point": "Intelligente Konstruktion"} 1 +2024-09-11 09:09:21.412853 2024-09-11 09:09:21.412857 ce347cb9-364e-477a-a3f9-0ff73f6bfda0 {"md5": "49b4e775d694ec4875d75594d636838d", "pid": "94337426X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133740219", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2017000361", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2017000361"}], "authorized_access_point": "Dependoviruses"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133740219", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12254722", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb122547221"}], "authorized_access_point": "Dependovirus"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4363893-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)94337426X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4363893-4", "source": "GND"}], "variant_access_point": ["Adeno-assoziierte Viren", "AAV", "Defekte Parvoviren"], "authorized_access_point": "Dependoviren"} 1 +2024-09-11 09:09:21.466467 2024-09-11 09:09:21.466472 9de5f220-6875-42c2-a8e7-aec9112193d0 {"md5": "4fa899c2fde21f7645d3fe293acd8b23", "pid": "943258170", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Hüttenwart"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334004544", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16986926", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16986926t"}], "authorized_access_point": "Gardiennes de refuge"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4362317-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)943258170", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4362317-7", "source": "GND"}], "variant_access_point": ["Hüttenwirtin", "Schutzhüttenwirtin", "Schutzhüttenwartin"], "authorized_access_point": "Hüttenwartin"} 1 +2024-09-11 09:09:21.527829 2024-09-11 09:09:21.527833 0bbbffb6-14de-4c2b-b3a5-6a950036160e {"md5": "0529f970bb68b53c9e8019263ca2ed36", "pid": "943209374", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333946007", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16740937", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16740937v"}], "authorized_access_point": "Gempylidés"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4361575-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)943209374", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4361575-2", "source": "GND"}], "variant_access_point": ["Gempylidae"], "authorized_access_point": "Schlangenmakrelen"} 1 +2024-09-11 09:09:21.585119 2024-09-11 09:09:21.585122 a64adf39-30f1-4042-b840-177ca7119e6f {"md5": "9dd60ace93b2faa29694e5fa1db308f7", "pid": "942627644", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134335032", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85131909", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85131909"}], "authorized_access_point": "Tagbanua (Philippine people)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134335032", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12466856", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12466856n"}], "authorized_access_point": "Tagbanuwa (peuple des Philippines)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4355229-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)942627644", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4355229-8", "source": "GND"}], "variant_access_point": ["Tagbanun"], "authorized_access_point": "Tagbanua"} 1 +2024-09-11 09:09:22.316112 2024-09-11 09:09:22.316115 f4bae4f7-d146-4ce2-8ce2-09fc3ca5fc65 {"md5": "e08d224ec6f8b44b672e5bbeaef889b5", "pid": "941158748", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gruppe (Mathematik)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133359335X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85092216", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85092216"}], "authorized_access_point": "Non-Abelian groups"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4340007-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)941158748", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4340007-3", "source": "GND"}], "authorized_access_point": "Nichtabelsche Gruppe"} 1 +2024-09-11 09:09:21.641121 2024-09-11 09:09:21.641126 e9ebd0eb-9018-408a-9009-935ada246862 {"md5": "01e440cabcf600c97880af3448b3705d", "pid": "942531639", "note": [{"label": ["elektronische Informations- und Kommunikationsdienste, die im Internet angeboten werden und weder Telekommunikationsdienste noch Rundfunk sind (vgl. § 1 Satz 1 TMG), also z. B. Online-Shops, Online-Banking, elektronische Presse, Chatrooms und Internet-Suchmaschinen", "Nicht ersatzweise verwenden für online allgemein oder für die Zerlegung von Komposita mit Online."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Mailbox"}, {"authorized_access_point": "Service provider"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134839154", "source": "GND"}, {"type": "bf:Nbn", "value": "sh95004892", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh95004892"}], "authorized_access_point": "Online information services"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254469117", "source": "GND"}, {"type": "bf:Nbn", "value": "XX4675869", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX4675869"}], "authorized_access_point": "Servicios de información en línea"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966895487", "source": "GND"}, {"type": "bf:Nbn", "value": "24664-2", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/24664-2"}], "authorized_access_point": "Digitale Güter"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970576986", "source": "GND"}, {"type": "bf:Nbn", "value": "10064826", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10064826"}], "authorized_access_point": "Online-Dienst"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4354267-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)942531639", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4354267-0", "source": "GND"}], "variant_access_point": ["Onlinedienst", "Digitaler Dienst", "Digitale Dienste", "Telemediendienst", "Telemedienanbieter"], "authorized_access_point": "Online-Dienst"} 1 +2024-09-11 09:09:21.697861 2024-09-11 09:09:21.697865 f33e089d-a903-4490-9fc8-c67646f80f0f {"md5": "5af942dd4f9a3d6efe30e4743860cbe4", "pid": "942348036", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Drama"}, {"authorized_access_point": "Erotische Literatur"}], "related": [{"authorized_access_point": "Erotisches Theater"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331606454", "source": "GND"}, {"type": "bf:Nbn", "value": "sh98006158", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh98006158"}], "authorized_access_point": "Erotic drama"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4352648-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)942348036", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4352648-2", "source": "GND"}], "authorized_access_point": "Erotisches Drama"} 1 +2024-09-11 09:09:21.754156 2024-09-11 09:09:21.754161 f1e21fa1-87b4-4d26-8663-ce8c4a408084 {"md5": "8e8766e2bf1f0007edc83bcc109992e1", "pid": "942346300", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kalender"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134480040", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2016000550", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2016000550"}], "authorized_access_point": "Lunar calendars"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134480040", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF14642380", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb14642380c"}], "authorized_access_point": "Calendrier lunaire"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4352625-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)942346300", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4352625-1", "source": "GND"}], "authorized_access_point": "Mondkalender"} 1 +2024-09-11 09:09:21.810036 2024-09-11 09:09:21.810042 8656925f-f16a-4114-add0-ac82826b6ddb {"md5": "f7245c9ad104b60117993ca765175fab", "pid": "942142845", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kontinentalverschiebung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133815243", "source": "GND"}, {"type": "bf:Nbn", "value": "sh89003758", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh89003758"}], "authorized_access_point": "Pangaea (Supercontinent)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133815243", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12500043", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12500043k"}], "authorized_access_point": "Pangée (géologie)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4350499-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)942142845", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4350499-1", "source": "GND"}], "authorized_access_point": "Pangaea"} 1 +2024-09-11 09:09:21.86614 2024-09-11 09:09:21.866145 907b113f-b576-415c-9431-c2b2b8c7e214 {"md5": "ca3e801c5cd9426810edb80a5190b720", "pid": "94203712X", "note": [{"label": ["Trennung eines Ionengemisches aufgrund unterschiedlicher Beweglichkeit der Ionen; kein chromatographisches oder massenspektrometrisches Verfahren (nicht: Ionenbeweglichkeits-Massenspektrometrie)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Spektroskopie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134484240", "source": "GND"}, {"type": "bf:Nbn", "value": "sh89005249", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh89005249"}], "authorized_access_point": "Ion mobility spectroscopy"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134484240", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15007908", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15007908s"}], "authorized_access_point": "Spectroscopie de mobilité ionique"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4349293-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)94203712X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4349293-9", "source": "GND"}], "variant_access_point": ["IMS (Analytische Chemie)", "Ion mobility spectrometry", "Plasmachromatographie", "Ionenbeweglichkeitsspektrometrie", "Ionenmobilitätsspektrometrie", "Ionen-Mobilitäts-Spektrometer", "Ionenmobilitätsspektrometer"], "authorized_access_point": "Ionenbeweglichkeitsspektroskopie"} 1 +2024-09-11 09:09:22.365859 2024-09-11 09:09:22.365864 ff59d947-024e-4156-962b-0688a0e2395f {"md5": "929704c916d9506b341d00aedcf64a82", "pid": "941131572", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ordnung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4339733-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)941131572", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4339733-5", "source": "GND"}], "variant_access_point": ["Alphabetisierung (Ordnung)", "Alphabetische Anordnung"], "authorized_access_point": "Alphabetische Ordnung"} 1 +2024-09-11 09:09:21.922324 2024-09-11 09:09:21.922328 8ec07d4f-e186-4eae-a369-320191aaf43a {"md5": "2167a373ee8c5d6bcfc50f0f3ccfac0d", "pid": "941869121", "note": [{"label": ["Als Homonymenzusatz bei Personenschlagwörtern wird Krimineller verwendet"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Krimineller"}], "related": [{"authorized_access_point": "Bandit"}, {"authorized_access_point": "Weiblicher Outlaw"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134661266", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85096166", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85096166"}], "authorized_access_point": "Outlaws"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134661266", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13319110", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb133191102"}], "authorized_access_point": "Hors-la-loi"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4347962-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)941869121", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4347962-5", "source": "GND"}], "variant_access_point": ["Gesetzloser", "Desperado"], "authorized_access_point": "Outlaw"} 1 +2024-09-11 09:09:21.981615 2024-09-11 09:09:21.981618 a88357b2-269f-4924-8c39-0339290065c5 {"md5": "7f1ceab2f81d931a1b8ade367bef6c39", "pid": "941589021", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Längen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4344537-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)941589021", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4344537-8", "source": "GND"}], "authorized_access_point": "Strecken"} 1 +2024-09-11 09:09:22.046997 2024-09-11 09:09:22.047001 512ae0e2-67be-4d65-aa3b-f4a3cd40cbd3 {"md5": "85b658a7865efadc03ef6278d5d1707d", "pid": "941532704", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Versagen"}], "related": [{"authorized_access_point": "Bruch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4343948-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)941532704", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4343948-2", "source": "GND"}], "authorized_access_point": "Mechanisches Versagen"} 1 +2024-09-11 09:09:22.096336 2024-09-11 09:09:22.09634 6d5657a4-d686-4c64-a12e-651ea4400031 {"md5": "34019ee3b8b429784d9868b0302f4a57", "pid": "941495256", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kalibrieren (Messtechnik)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4343426-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)941495256", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4343426-5", "source": "GND"}], "variant_access_point": ["Autocalibration"], "authorized_access_point": "Automatisches Kalibrieren"} 1 +2024-09-11 09:09:22.146273 2024-09-11 09:09:22.146277 98470b72-b389-4563-8a80-f432b6e4ec5a {"md5": "498793c1f7874fec96ecec6f046aa260", "pid": "941482774", "note": [{"label": ["Als Aussetzung bezeichnet man Vorgänge, bei denen ein Mensch in eine hilflose Lage versetzt oder trotz bestehender Beistandspflicht in einer hilflosen Lage im Stich gelassen wird."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Strafrecht"}, {"authorized_access_point": "Straftat"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134192274", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85046514", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85046514"}], "authorized_access_point": "Exposure (Criminal law)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134192274", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12154030", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12154030j"}], "authorized_access_point": "Abandon d'enfant"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1312659106", "source": "GND"}, {"type": "bf:Nbn", "value": "12445", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/12445"}], "authorized_access_point": "Abbandono"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254408452", "source": "GND"}, {"type": "bf:Nbn", "value": "XX549929", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX549929"}], "authorized_access_point": "Abandono de menores"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4343351-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)941482774", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4343351-0", "source": "GND"}], "variant_access_point": ["Hilflose Person", "Kindesweglegung"], "authorized_access_point": "Aussetzung (Strafrecht)"} 1 +2024-09-11 09:09:22.20399 2024-09-11 09:09:22.203994 fef9b7c7-63b7-4059-97a8-8c052b6b096e {"md5": "f6de86e59145717d3aeec210ce39440e", "pid": "941366138", "note": [{"label": ["Familie mariner Barschartiger; Tropische Speisefische"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333374453", "source": "GND"}, {"type": "bf:Nbn", "value": "sh94007272", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh94007272"}], "authorized_access_point": "Caesionidae"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333374453", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF18140447", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb181404471"}], "authorized_access_point": "Caesionidae"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4341973-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)941366138", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4341973-2", "source": "GND"}], "variant_access_point": ["Fusilier fish"], "authorized_access_point": "Caesionidae"} 1 +2024-09-11 09:09:22.258995 2024-09-11 09:09:22.258999 a059aa43-cf5b-4be7-8ba1-ed6d5ed0d247 {"md5": "f699861fad6a1659b304bb18bfa3ccac", "pid": "941365050", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133860737", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85131354", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85131354"}], "authorized_access_point": "Swordfish"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133860737", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13511922", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13511922p"}], "authorized_access_point": "Espadon (poissons)"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256256439", "source": "GND"}, {"type": "bf:Nbn", "value": "7559", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_7559"}], "authorized_access_point": "swordfish"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4341960-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)941365050", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4341960-4", "source": "GND"}], "variant_access_point": ["Xiphias gladius"], "authorized_access_point": "Schwertfisch"} 1 +2024-09-11 09:09:22.413695 2024-09-11 09:09:22.413698 9ecd35f2-2660-4b81-b606-22ee64129c18 {"md5": "6d66f56129bb359c91bf284828299644", "pid": "940921588", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Butanole"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4337578-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)940921588", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4337578-9", "source": "GND"}], "variant_access_point": ["Butanol (2-)", "2-Butanol", "Butan-2-ol"], "authorized_access_point": "Butylalkohol (sekundär-)"} 1 +2024-09-11 09:09:22.46773 2024-09-11 09:09:22.467735 a3231745-7f5c-4349-a722-e9fd21ad665a {"md5": "50be3b13df83574969fd84a25db017a5", "pid": "940807904", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Stevia"}], "related": [{"authorized_access_point": "Steviosid"}, {"authorized_access_point": "Stevia (Süßstoff)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133878318", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85128079", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85128079"}], "authorized_access_point": "Stevia rebaudiana"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133878318", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13607123", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb136071237"}], "authorized_access_point": "Stevia rebaudiana"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134690886", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13607124", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13607124k"}], "authorized_access_point": "Cuisine (stévia)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254490841", "source": "GND"}, {"type": "bf:Nbn", "value": "XX4969935", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX4969935"}], "authorized_access_point": "Stevia rebaudiana"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125626055X", "source": "GND"}, {"type": "bf:Nbn", "value": "24805", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_24805"}], "authorized_access_point": "Stevia rebaudiana"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4336140-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)940807904", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4336140-7", "source": "GND"}], "variant_access_point": ["Süßkraut", "Süßblatt", "Honigkraut"], "authorized_access_point": "Stevia rebaudiana"} 1 +2024-09-11 09:09:22.523713 2024-09-11 09:09:22.523717 95f1d17a-bc08-4eb6-b6ab-49e2e63bf5b4 {"md5": "76ef60c634f5c8ed58377dd97fa000d1", "pid": "940788187", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Baukonstruktion"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4335910-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)940788187", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4335910-3", "source": "GND"}], "variant_access_point": ["Ausfüllung"], "authorized_access_point": "Verfüllung"} 1 +2024-09-11 09:09:22.576912 2024-09-11 09:09:22.576916 765e9c6d-5e24-417e-9bfe-648f29c63166 {"md5": "bab5283a46ec3d9479dd13ee84d994bf", "pid": "940762048", "note": [{"label": ["Art der Kapuzinerartigen Affen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333264259", "source": "GND"}, {"type": "bf:Nbn", "value": "sh86000946", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh86000946"}], "authorized_access_point": "Cebus olivaceus"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4335637-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)940762048", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4335637-0", "source": "GND"}], "authorized_access_point": "Cebus olivaceus"} 1 +2024-09-11 09:09:22.635088 2024-09-11 09:09:22.635093 1657627d-c917-42e7-ab8f-a153d5ba2693 {"md5": "b69bb4442408b706d03a2320f398704a", "pid": "940758776", "note": [{"label": ["Familie der Lachsartigen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333487878", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85128045", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85128045"}], "authorized_access_point": "Sternoptychidae"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333487878", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17760838", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17760838g"}], "authorized_access_point": "Sternoptychidés"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4335526-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)940758776", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4335526-2", "source": "GND"}], "variant_access_point": ["Beilfische", "Sternoptychidae"], "authorized_access_point": "Tiefseebeilfische"} 1 +2024-09-11 09:09:22.691565 2024-09-11 09:09:22.691569 faa663cf-3761-4594-bf09-45507f2f7943 {"md5": "2bbf1444bebc1465b70079960e098472", "pid": "940755459", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Krieg"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134297904", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85116061", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85116061"}], "authorized_access_point": "Russo-Swedish War, 1788-1790"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134297904", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12369215", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12369215z"}], "authorized_access_point": "Guerre russo-suédoise (1788-1790)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4335478-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)940755459", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4335478-6", "source": "GND"}], "variant_access_point": ["Russisch-Schwedischer Krieg (1788-1790)"], "authorized_access_point": "Schwedisch-Russischer Krieg (1788-1790)"} 1 +2024-09-11 09:09:22.747825 2024-09-11 09:09:22.747829 92ec63d1-23c0-4436-88d1-be971c5283c3 {"md5": "e61f3354abb3682f7b44411934ccbd1d", "pid": "94074449X", "note": [{"label": ["Benutzt, soweit außerhalb Japans lebend, sonst verknüpfe Japan ; Frau"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ausländerin"}], "related": [{"authorized_access_point": "Japaner"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134533144", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12426891", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12426891b"}], "authorized_access_point": "Japonaises"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1009504312", "source": "GND"}, {"type": "bf:Nbn", "value": "26360-5", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/26360-5"}], "authorized_access_point": "Japaner"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4335258-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)94074449X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4335258-3", "source": "GND"}], "variant_access_point": ["Japanische Frau"], "authorized_access_point": "Japanerin"} 1 +2024-09-11 09:09:22.812627 2024-09-11 09:09:22.812631 eca0e0b7-99a6-470b-a6a5-c84bd0cefae4 {"md5": "0b5242f685f36f9dc2df1b0ddee66bef", "pid": "940604833", "note": [{"label": ["Verknüpfung mit SW Fernsehsendung bzw. Hörfunksendung und ggf. engerem Schlagwort (z.B. Lokaler Hörfunk); Verknüpfung mit Rundfunksendung gilt als pleonastisch."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Rundfunksendung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331210461", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2007003217", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2007003217"}], "authorized_access_point": "Cultural television programs"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331210461", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12066447", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12066447w"}], "authorized_access_point": "Émissions télévisées culturelles"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4333556-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)940604833", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4333556-1", "source": "GND"}], "variant_access_point": ["Kultur", "Kulturprogramm", "Kulturmagazin (Rundfunksendung)"], "authorized_access_point": "Kultursendung"} 1 +2024-09-11 09:09:22.86932 2024-09-11 09:09:22.869324 eac7a1f5-5433-4be2-a320-054ee88d8308 {"md5": "c3dbdc8d3b69d55b7beddd89ae3653e3", "pid": "940540959", "note": [{"label": ["Gattung der Kardinalbarsche"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333374003", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85006019", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85006019"}], "authorized_access_point": "Apogon"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333374003", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17797552", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17797552h"}], "authorized_access_point": "Apogon (genre)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4332961-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)940540959", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4332961-5", "source": "GND"}], "authorized_access_point": "Apogon"} 1 +2024-09-11 09:09:22.924139 2024-09-11 09:09:22.924142 6a6507f2-d7b3-4431-88cf-9c51273d6d2f {"md5": "00f5f7db3d479c3cb4b94b0779771401", "pid": "940535912", "note": [{"label": ["Für Kulturen von Organismen im Reagenzglas, Bioreaktor usw., für Grundlagenforschung u. Anwendung; verknüpfe mit Organismus bzw. Teilen bzw. verwende engeres SW, z.B. Zellkultur, Organkultur"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "In vitro"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134222505", "source": "GND"}, {"type": "bf:Nbn", "value": "sh00005933", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00005933"}], "authorized_access_point": "Micropropagation"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134222505", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12231761", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12231761s"}], "authorized_access_point": "Multiplication in vitro"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4332883-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)940535912", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4332883-0", "source": "GND"}], "variant_access_point": ["Kultur (Biologie)", "Mikroorganismus (Biologie)", "Laborkultur", "Kultivierung"], "authorized_access_point": "In-vitro-Kultur"} 1 +2024-09-11 09:09:22.983145 2024-09-11 09:09:22.983148 57825dc8-4270-4408-9ec4-b8ff352805ff {"md5": "aaa4bc49e0e1fe00b268c55fa14120b4", "pid": "94052113X", "note": [{"label": ["Notgeld in GB u. seinen Kolonien sowie in den USA im 17. u. 18. Jh.", "Für die Kryptowährung verwende SW Virtuelle Währung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Notgeld"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4332618-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)94052113X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4332618-3", "source": "GND"}], "authorized_access_point": "Token (Numismatik)"} 1 +2024-09-11 09:09:23.03931 2024-09-11 09:09:23.039314 3dad84a9-b39a-415d-839d-42798bc9b5cb {"md5": "af48f28532f1cdf195a0a247b96c9861", "pid": "940125897", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Polnisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4329873-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)940125897", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4329873-4", "source": "GND"}], "variant_access_point": ["Mundart Polnisch (Kleinpolen)"], "authorized_access_point": "Kleinpolnisch"} 1 +2024-09-11 09:09:23.106169 2024-09-11 09:09:23.106173 2b804788-712c-4efe-8364-4fa5fe0bca2c {"md5": "dd9273ed5f8120a169ab27429d1a6264", "pid": "940111187", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333373538", "source": "GND"}, {"type": "bf:Nbn", "value": "sh95004913", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh95004913"}], "authorized_access_point": "Sillaginidae"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333373538", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17101899", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17101899n"}], "authorized_access_point": "Sillaginidae"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4329678-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)940111187", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4329678-6", "source": "GND"}], "variant_access_point": ["Sillaginidae"], "authorized_access_point": "Weißlinge (Fische)"} 1 +2024-09-11 09:09:23.681253 2024-09-11 09:09:23.681256 f8055627-8b54-40af-b90c-94bc03daa9a0 {"md5": "3b288b59d795d9c4d8166b55e794ad5b", "pid": "130741531", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7507258-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)130741531", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7507258-0", "source": "GND"}], "authorized_access_point": "Betonkorrosion"} 1 +2024-09-11 09:09:23.165999 2024-09-11 09:09:23.166004 9da9e02f-18e3-49e9-9d39-5da41d8d863c {"md5": "365d774d2a78b41d4bc5592b37d2347e", "pid": "940085798", "note": [{"label": ["Benutzt für die bestimmte physikalische Theorie, für allgemein physikalische oder philosophische Sachverhalte verwende Paralleluniversum."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Quantentheorie"}], "related": [{"authorized_access_point": "Paralleluniversum"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134836198", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16665034", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16665034s"}], "authorized_access_point": "Univers parallèles"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4329474-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)940085798", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4329474-1", "source": "GND"}], "variant_access_point": ["Viel-Welten-Deutung", "Viel-Welten-Theorie", "Viel-Welten-Interpretation", "Parallele-Welten-Deutung", "EWG-Interpretation", "Many-worlds-Interpretation", "Vielweltendeutung"], "authorized_access_point": "Viele-Welten-Deutung"} 1 +2024-09-11 09:09:23.237644 2024-09-11 09:09:23.237649 abb44c60-27ab-444f-a8af-c114c9fe4013 {"md5": "16ea406b353ef61956172510b58dd191", "pid": "940049570", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bekanntheit"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4329198-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)940049570", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4329198-3", "source": "GND"}], "variant_access_point": ["Marke", "Bekannte Marke", "Berühmte Marke", "Starke Marke"], "authorized_access_point": "Markenbekanntheit"} 1 +2024-09-11 09:09:23.29009 2024-09-11 09:09:23.290093 de4a0af9-cec0-4d04-a1d1-3ffc82cbe00f {"md5": "87b7b59954ce8ecad562639719481956", "pid": "940035731", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Mitläuferin"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)971410755", "source": "GND"}, {"type": "bf:Nbn", "value": "10053774", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10053774"}], "authorized_access_point": "Mitläufer"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4329122-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)940035731", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4329122-3", "source": "GND"}], "authorized_access_point": "Mitläufer"} 1 +2024-09-11 09:09:23.342568 2024-09-11 09:09:23.342571 5fa4106a-e8ca-435c-9499-aee3a52d78a7 {"md5": "5234baafad867f0dd5166525e55b6306", "pid": "199279101", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Ratio_legis&oldid=168865992"], "noteType": "dataSource"}, {"label": ["Sinn und Zweck einer Rechtsnorm, bzw. das Ziel, zu dessen Schutz ein Rechtssatz aufgestellt wurde."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ratio"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7793148-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199279101", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7793148-8", "source": "GND"}], "variant_access_point": ["Gesetzeszweck", "Normzweck", "Ratio des Gesetzes", "Ratio einer Norm", "Rechtsnormzweck", "Schutzzweck", "Schutzzweck der Norm"], "authorized_access_point": "Ratio legis"} 1 +2024-09-11 09:09:23.398818 2024-09-11 09:09:23.398822 4c7433cb-811e-4eb2-91d8-30caec1c0275 {"md5": "24a2e3920dd5af977e1197644d5e9842", "pid": "199254435", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Seidenbienen (Familie)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7790265-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199254435", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7790265-8", "source": "GND"}], "variant_access_point": ["Colletes hederae"], "authorized_access_point": "Efeu-Seidenbiene"} 1 +2024-09-11 09:09:23.458707 2024-09-11 09:09:23.458712 14804fe2-d234-4871-b629-9f357777bbed {"md5": "0eeb357b51a39869b673d23dffc5772a", "pid": "199249903", "note": [{"label": ["Verbreitung des Namens im 13.-16. Jh. in der Grafschaft Sayn-Wittgenstein"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Familienname"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7789724-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199249903", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7789724-9", "source": "GND"}], "authorized_access_point": "Riedesel (Familienname)"} 1 +2024-09-11 09:09:23.514814 2024-09-11 09:09:23.514817 5a254eb3-e350-4485-a468-c99c1e42a927 {"md5": "cde1c9cbe572c37cc0443e7991938361", "pid": "199099952", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Westfälisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7772912-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199099952", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7772912-2", "source": "GND"}], "authorized_access_point": "Mundart Westfälisch (Lemgo)"} 1 +2024-09-11 09:09:23.571264 2024-09-11 09:09:23.571268 a4dc5c6a-cfe3-4fed-96ef-6164b7531da6 {"md5": "8e07d334f592be118a20470e49f0505b", "pid": "130755087", "note": [{"label": ["Disziplin, die sich mit neuropsychologischen Störungen unter klinischen Gesichtspunkten befaßt (einschl. Behandlung/Rehabilitation)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7508743-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)130755087", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7508743-1", "source": "GND"}], "authorized_access_point": "Klinische Neuropsychologie"} 1 +2024-09-11 09:09:23.624424 2024-09-11 09:09:23.624428 d12e39bf-dbc3-49d8-8496-50fcc7685985 {"md5": "792a32aeb6416e0ba1022321bd57e159", "pid": "130749478", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7508128-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)130749478", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7508128-3", "source": "GND"}], "authorized_access_point": "Chinesische Philosophie"} 1 +2024-09-11 09:09:23.79603 2024-09-11 09:09:23.796034 3184ec0b-fa29-4bee-b41b-ea209662a515 {"md5": "9ae7ef7e7fd0e146888c61e09b1beb2d", "pid": "130715107", "note": [{"label": ["Von Arzneimittelallergie unterschieden, siehe dort"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7504353-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)130715107", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7504353-1", "source": "GND"}], "variant_access_point": ["Inkompatibilität"], "authorized_access_point": "Arzneimittelinkompatibilität"} 1 +2024-09-11 09:09:23.85644 2024-09-11 09:09:23.856444 e0113b65-43a5-4117-8cc9-07655118c559 {"md5": "ca7b4c0ce5b13fc3eb471142f25d449e", "pid": "130712930", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7504114-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)130712930", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7504114-5", "source": "GND"}], "variant_access_point": ["Stickstoff-Schwefel-Verbindungen", "Schwefelnitride"], "authorized_access_point": "Schwefel-Stickstoff-Verbindungen"} 1 +2024-09-11 09:09:23.909078 2024-09-11 09:09:23.909083 056ae349-a52c-46e6-a30d-682865c1cdaa {"md5": "f7637ca3d3d5fd4d5edc91620f6fa41d", "pid": "13071206X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Rekombination_(Genetik)&oldid=219839856"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7504017-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)13071206X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7504017-7", "source": "GND"}], "variant_access_point": ["Genetische Rekombination", "Neukombination", "Gen"], "authorized_access_point": "Rekombination (Genetik)"} 1 +2024-09-11 09:09:23.965468 2024-09-11 09:09:23.965473 d7fb287d-9fff-416c-9486-243aedbf4a39 {"md5": "14c098750d76f5168ea071e62d6cc311", "pid": "130700525", "note": [{"label": ["einz. Richtlinien werden nach §715 RSWK angesetzt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7502749-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)130700525", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7502749-5", "source": "GND"}], "authorized_access_point": "EG-Richtlinie"} 1 +2024-09-11 09:09:24.031452 2024-09-11 09:09:24.031458 c28c295e-c6ed-4560-a82d-180f906bfbae {"md5": "501ce04b70435a06c2970fb954fbecfd", "pid": "130699152", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7502596-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)130699152", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7502596-6", "source": "GND"}], "authorized_access_point": "EG-Dienstrecht"} 1 +2024-09-11 09:09:24.103046 2024-09-11 09:09:24.10305 78d52cd8-70aa-43a8-ba33-f07f7ea417cd {"md5": "e0939910cf5534c907dbe5a0018c70b0", "pid": "130699101", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7502591-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)130699101", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7502591-7", "source": "GND"}], "authorized_access_point": "EG-Beamter"} 1 +2024-09-11 09:09:24.154647 2024-09-11 09:09:24.154652 bc5e7fc5-1314-406c-9774-e1e71578b09f {"md5": "01a30df4e6c8c57a72836ab755cb7c2d", "pid": "130698644", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7502541-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)130698644", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7502541-3", "source": "GND"}], "authorized_access_point": "Evangelische Seelsorge"} 1 +2024-09-11 09:09:24.20845 2024-09-11 09:09:24.208452 f7dda039-9125-418d-b8ac-077ab92f9b38 {"md5": "8a5d95515789966e55a1696f3e22dd17", "pid": "043280072", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333473583", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85000447", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85000447"}], "authorized_access_point": "Gymnocephalus cernuus"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333473583", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17805440", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb178054402"}], "authorized_access_point": "Gymnocephalus cernua"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4328007-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043280072", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4328007-9", "source": "GND"}], "variant_access_point": ["Stur", "Gymnocephalus cernua", "Gymnocephalus cernuus"], "authorized_access_point": "Kaulbarsch"} 1 +2024-09-11 09:09:24.263228 2024-09-11 09:09:24.263232 9c5e3c86-8d3c-4ca4-b292-db57ce36d6c8 {"md5": "de35b08243bcf872ab6edec12a3b9853", "pid": "043270972", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung und (hier nicht permutierender - gilt bis 31. 03. 2010) Wortart; z.B. Deutsch / Hilfsverb / haben "], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113422303X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2011001716", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2011001716"}], "authorized_access_point": "Haben (The German word)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113422303X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12232750", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12232750c"}], "authorized_access_point": "Haben (le mot allemand)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4327097-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043270972", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4327097-9", "source": "GND"}], "authorized_access_point": "haben (Wort)"} 1 +2024-09-11 09:09:24.322828 2024-09-11 09:09:24.322831 b5314878-3d75-4e91-8114-590eadff24fe {"md5": "184e1ea1e39cca77573c34adf64106f7", "pid": "043270328", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Aluminiumhydrid"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4327032-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043270328", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4327032-3", "source": "GND"}], "authorized_access_point": "Alanate"} 1 +2024-09-11 09:09:24.426712 2024-09-11 09:09:24.426716 43725d80-99a9-4cf8-821c-e0a2e83c3def {"md5": "dbee6ecab4ddb3493870604d6a6a4bb2", "pid": "043265006", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Johanniskrautgewächse"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134596413", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85080526", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85080526"}], "authorized_access_point": "Mangosteen"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134596413", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16649658", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb166496580"}], "authorized_access_point": "Garcinia mangostana"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256234893", "source": "GND"}, {"type": "bf:Nbn", "value": "12368", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_12368"}], "authorized_access_point": "mangosteen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4326500-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043265006", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4326500-5", "source": "GND"}], "variant_access_point": ["Garcinia mangostana", "Mangostanbaum", "Mangostanapfel"], "authorized_access_point": "Mangostane"} 1 +2024-09-11 09:09:24.482081 2024-09-11 09:09:24.482086 88b261f8-7179-4870-b3b2-d07502032a41 {"md5": "3880e3f29a3cc1a48af0204501b6f064", "pid": "043229395", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334234000", "source": "GND"}, {"type": "bf:Nbn", "value": "sh95001703", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh95001703"}], "authorized_access_point": "Jade carving"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334234000", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15095710", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb150957105"}], "authorized_access_point": "Sculpture sur jade"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4322939-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043229395", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4322939-6", "source": "GND"}], "variant_access_point": ["Jadeschnitzerei"], "authorized_access_point": "Jadekunst"} 1 +2024-09-11 09:09:24.538731 2024-09-11 09:09:24.538734 8aec748a-b3cf-41ba-802c-83791eae8417 {"md5": "785b513c4de599dde324d5442594c151", "pid": "043225276", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Räuber"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331709628", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2022005388", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2022005388"}], "authorized_access_point": "Bank robbers"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4322527-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043225276", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4322527-5", "source": "GND"}], "authorized_access_point": "Bankräuber"} 1 +2024-09-11 09:09:24.602753 2024-09-11 09:09:24.602757 f66846dc-6363-4a0f-9d94-c4dfcadbc0a4 {"md5": "d195c9856bceee2e2c86e8700248d095", "pid": "043220797", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Entzündung"}, {"authorized_access_point": "Parodontopathie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134620675", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85099925", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85099925"}], "authorized_access_point": "Periodontitis"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134620675", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11965426", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119654263"}], "authorized_access_point": "Parodontopathies"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254356584", "source": "GND"}, {"type": "bf:Nbn", "value": "25875", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/25875"}], "authorized_access_point": "Periodontiti"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254471235", "source": "GND"}, {"type": "bf:Nbn", "value": "XX531351", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX531351"}], "authorized_access_point": "Periodontitis"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1299919812", "source": "GND"}, {"type": "bf:Nbn", "value": "XX700280", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX700280"}], "authorized_access_point": "Periodonto - Enfermedades"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241617104", "source": "GND"}, {"type": "bf:Nbn", "value": "D010518", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D010518"}], "authorized_access_point": "Periodontitis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4322079-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043220797", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4322079-4", "source": "GND"}], "variant_access_point": ["Paradentitis", "Paradontitis", "Parodontose", "Zahnbettschwund", "Parodontosis", "Rasch fortschreitende Parodontitis", "RPP", "Rapid progredient parodontitis", "Early-onset peridontitis"], "authorized_access_point": "Parodontitis"} 1 +2024-09-11 09:09:24.658871 2024-09-11 09:09:24.658875 fa13473f-66da-431f-86f9-e69702dfad50 {"md5": "97fffa4cc032cdc500a3fdbc6d55a07d", "pid": "043196063", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Doppelblindversuch"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)124159404X", "source": "GND"}, {"type": "bf:Nbn", "value": "D016037", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D016037"}], "authorized_access_point": "Single-Blind Method"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4319606-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043196063", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4319606-8", "source": "GND"}], "variant_access_point": ["Blindfold test", "Einfacher Blindversuch"], "authorized_access_point": "Blindversuch"} 1 +2024-09-11 09:09:24.71503 2024-09-11 09:09:24.715032 92f4939d-3d55-4910-abca-c814e3b7b4dd {"md5": "5000492df2c1685a619081171c42e011", "pid": "043172415", "note": [{"label": ["Ausschluss von Mitgliedern einer Gesellschaft bei Verzug der Einzahlung ihres Kapitalanteils"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gesellschaftsanteil"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4317241-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043172415", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4317241-6", "source": "GND"}], "authorized_access_point": "Kaduzierung"} 1 +2024-09-11 09:09:24.766719 2024-09-11 09:09:24.766724 4bea93c2-43cc-4435-a843-4ad66a573bdc {"md5": "eb5bd44096c588867bd262672921e2fb", "pid": "043170854", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kirchenbau"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334557942", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15595575", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb155955752"}], "authorized_access_point": "Sacristies"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4317085-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043170854", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4317085-7", "source": "GND"}], "authorized_access_point": "Sakristei"} 1 +2024-09-11 09:09:24.825991 2024-09-11 09:09:24.825996 6a3bf5fc-ef99-40e7-811f-cdda2d385bda {"md5": "b704034193c01fcab03964328663adeb", "pid": "043166644", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Moronidae"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133652603", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85037661", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85037661"}], "authorized_access_point": "European seabass"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133652603", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11955348", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11955348x"}], "authorized_access_point": "Bar commun"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256256692", "source": "GND"}, {"type": "bf:Nbn", "value": "6893", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_6893"}], "authorized_access_point": "sea bass"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4316664-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043166644", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4316664-7", "source": "GND"}], "variant_access_point": ["Wolfsbarsch", "Roccus labrax", "Dicentrarchus labrax"], "authorized_access_point": "Seebarsch"} 1 +2024-09-11 09:09:24.889228 2024-09-11 09:09:24.889233 9926b21c-5c53-4228-8240-d61b5e21f78d {"md5": "20cf71b1a74b8f5becbf46502230c3c3", "pid": "043166202", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Literaturpreis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4316620-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043166202", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4316620-9", "source": "GND"}], "variant_access_point": ["Montblanc-Literaturpreis für kurze Geschichten"], "authorized_access_point": "Montblanc-Literaturpreis"} 1 +2024-09-11 09:09:24.941309 2024-09-11 09:09:24.941313 4de42fb8-6cdd-4942-a6de-2d28027f0686 {"md5": "7e5ba097a0e1ea98cdc04280f0845cf2", "pid": "04316532X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333376375", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85011925", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85011925"}], "authorized_access_point": "Giant perch"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333376375", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16914666", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb169146669"}], "authorized_access_point": "Barramundi"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4316532-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04316532X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4316532-1", "source": "GND"}], "variant_access_point": ["Plakapong", "Lates calcarifer"], "authorized_access_point": "Barramundi"} 1 +2024-09-11 09:09:25.002176 2024-09-11 09:09:25.00218 7ba8468d-56b0-4156-9357-9b0d7c4f92ac {"md5": "54e82cf5e7b6bd393db0ca70bf207e85", "pid": "043153607", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Halbleiterlaser"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4315360-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043153607", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4315360-4", "source": "GND"}], "variant_access_point": ["Distributed-Bragg-Reflektor-Laser"], "authorized_access_point": "DBR-Laser"} 1 +2024-09-11 09:09:25.054589 2024-09-11 09:09:25.054592 e6547d94-5923-47e2-8199-f03b714101dc {"md5": "28617aade62f5c3a0470d1228130b2c8", "pid": "043134475", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Korallenbarsche"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333372299", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17805633", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17805633b"}], "authorized_access_point": "Amphiprion frenatus"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4313447-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043134475", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4313447-6", "source": "GND"}], "variant_access_point": ["Amphiprion frenatus"], "authorized_access_point": "Halsband-Anemonenfisch"} 1 +2024-09-11 09:09:25.121058 2024-09-11 09:09:25.121063 857522d5-f014-4286-a59a-93f1fa1cf69f {"md5": "9188a2e7a8d7ad3245ad8eb57c73008e", "pid": "043134106", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tauchunfall"}], "related": [{"authorized_access_point": "High pressure neurological syndrome"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113419434X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85065986", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85065986"}], "authorized_access_point": "Inert gas narcosis"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113419434X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12160328", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb121603282"}], "authorized_access_point": "Narcose à l'azote"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1282205935", "source": "GND"}, {"type": "bf:Nbn", "value": "D007222", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D007222"}], "authorized_access_point": "Inert Gas Narcosis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4313410-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043134106", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4313410-5", "source": "GND"}], "variant_access_point": ["Stickstoffnarkose"], "authorized_access_point": "Tiefenrausch"} 1 +2024-09-11 09:09:25.175665 2024-09-11 09:09:25.17567 8eb126ed-5aaf-4718-9db4-96bd72df0201 {"md5": "47a54df497cee4d86e9ce96d9244ba7d", "pid": "043133908", "note": [{"label": ["Dänischer Angriff von Norwegen aus auf Schweden"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Krieg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4313390-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043133908", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4313390-3", "source": "GND"}], "variant_access_point": ["Schwedisch-Dänischer Krieg (1788-1789)"], "authorized_access_point": "Dänisch-Schwedischer Krieg (1788-1789)"} 1 +2024-09-11 09:09:25.228788 2024-09-11 09:09:25.228792 7544f445-c7d5-4ff7-a1b1-8b447a0d4338 {"md5": "8a11676d22c21f0e9e49157b10c67ca0", "pid": "043133789", "note": [{"label": ["Unter Regierungskriminalität versteht man die Verwirklichung strafbarer Handlungen, die der Erhaltung oder Ausweitung politischer Macht dienen, durch oder auf Veranlassung von hochrangigen politischen Machthabern. Hierzu zählen etwa Verbrechen gegen die Menschlichkeit zulasten von Regimegegnern, Korruption, Wahlfälschung und Rechtsbeugung."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kriminalität"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331581338", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2010008055", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2010008055"}], "authorized_access_point": "State crimes"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4313378-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043133789", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4313378-2", "source": "GND"}], "variant_access_point": ["Staatskriminalität", "Politische Kriminalität", "Makrokriminalität", "Staatsverbrechen", "State crime", "State-organized crime", "Kriminalität der Mächtigen", "Staat"], "authorized_access_point": "Regierungskriminalität"} 1 +2024-09-11 09:09:25.291157 2024-09-11 09:09:25.291161 f8d0b37c-ba3f-4b85-ae1e-2381e26022d1 {"md5": "f77b3692e732fd64b6e45cf9b7033eeb", "pid": "043126944", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133834795", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85105550", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85105550"}], "authorized_access_point": "Posthouses"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133834795", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12569669", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12569669b"}], "authorized_access_point": "Relais de poste"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4312694-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043126944", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4312694-7", "source": "GND"}], "authorized_access_point": "Poststation"} 1 +2024-09-11 09:09:25.344841 2024-09-11 09:09:25.344843 7edbb75e-d5ff-4495-8790-0ebe0ffa41cc {"md5": "a3aabd1fdb343bae496350332b88a6ef", "pid": "043122507", "note": [{"label": ["Maßgeschneiderte Materialien mit bestimmten gewünschten Eigenschaften, die durch gezielte Synthese erreicht werden"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Material"}, {"authorized_access_point": "Werkstoff"}], "related": [{"authorized_access_point": "Intelligenter Werkstoff"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4312250-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043122507", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4312250-4", "source": "GND"}], "variant_access_point": ["Advanced materials", "Advanced material", "High-tech-Werkstoff"], "authorized_access_point": "Hochleistungswerkstoff"} 1 +2024-09-11 09:09:25.399511 2024-09-11 09:09:25.399516 7ff8541c-afb6-4371-8be2-824a04ac606f {"md5": "fb5697f213b88bc9d224fe5be5375e72", "pid": "043119816", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kapuzineraffenartige"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133798934", "source": "GND"}, {"type": "bf:Nbn", "value": "sh91006486", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh91006486"}], "authorized_access_point": "Southern muriqui"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133798934", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12443392", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb124433920"}], "authorized_access_point": "Eroïde"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4311981-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043119816", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4311981-5", "source": "GND"}], "variant_access_point": ["Brachyteles arachnoides"], "authorized_access_point": "Spinnenaffe"} 1 +2024-09-11 09:09:25.453701 2024-09-11 09:09:25.453705 d1618f5d-6376-4217-b802-94a1bbfaed3c {"md5": "3153fa84eb695938d9cc84e576c7c07f", "pid": "04311704X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Regelung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4311704-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04311704X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4311704-1", "source": "GND"}], "authorized_access_point": "Kaskadenregelung"} 1 +2024-09-11 09:09:25.50851 2024-09-11 09:09:25.508514 a385dab1-3b19-455c-ab00-76824b66d127 {"md5": "7f17cf2af8540501dbcddc514f05ca25", "pid": "043110290", "note": [{"label": ["Buntbarschart"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333965877", "source": "GND"}, {"type": "bf:Nbn", "value": "sh00003454", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00003454"}], "authorized_access_point": "Redbreast tilapia"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333965877", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17838459", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17838459t"}], "authorized_access_point": "Coptodon rendalli"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256264202", "source": "GND"}, {"type": "bf:Nbn", "value": "35436", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_35436"}], "authorized_access_point": "Tilapia rendalli"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4311029-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043110290", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4311029-0", "source": "GND"}], "authorized_access_point": "Tilapia rendalli"} 1 +2024-09-11 09:09:25.56834 2024-09-11 09:09:25.568345 1661c71d-da4b-454b-9689-dfbe715c02f8 {"md5": "42fb42d7faffa91aca717712e3243e58", "pid": "043104754", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Digitale Telefonvermittlung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4310475-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043104754", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4310475-7", "source": "GND"}], "authorized_access_point": "Alcatel 1000 S12"} 1 +2024-09-11 09:09:25.621069 2024-09-11 09:09:25.621073 2d1f45f4-d39f-4634-b7c9-60091fc80d91 {"md5": "7b9fe667fa06aad025c50b16db4bf775", "pid": "043092756", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ärztin"}], "related": [{"authorized_access_point": "Vertragsarzt"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4309275-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043092756", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4309275-5", "source": "GND"}], "variant_access_point": ["Kassenärztin"], "authorized_access_point": "Vertragsärztin"} 1 +2024-09-11 09:09:25.676883 2024-09-11 09:09:25.676887 6e94578b-1b66-44fa-ba3d-14c0403b9e18 {"md5": "63090521f42bed777df9aa8f8daaf810", "pid": "043087787", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gentechnologie"}, {"authorized_access_point": "Klonierung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134360436", "source": "GND"}, {"type": "bf:Nbn", "value": "sh00007750", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00007750"}], "authorized_access_point": "Clones"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134360436", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12533180", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12533180d"}], "authorized_access_point": "Clones (biologie)"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256227994", "source": "GND"}, {"type": "bf:Nbn", "value": "1678", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_1678"}], "authorized_access_point": "clones"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4308778-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043087787", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4308778-4", "source": "GND"}], "authorized_access_point": "Klon"} 1 +2024-09-11 09:09:25.734201 2024-09-11 09:09:25.734206 ac677c89-f020-48f4-87b4-9f46216c20b4 {"md5": "8bcb27e294e29fe98e770900381f2885", "pid": "043079458", "note": [{"label": ["Ranking bezeichnet die Einordnung von Elementen in eine Rangliste."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Rating"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966685695", "source": "GND"}, {"type": "bf:Nbn", "value": "15320-0", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/15320-0"}], "authorized_access_point": "Ranking-Verfahren"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)971416281", "source": "GND"}, {"type": "bf:Nbn", "value": "10042956", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10042956"}], "authorized_access_point": "Ranking"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4307945-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043079458", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4307945-3", "source": "GND"}], "variant_access_point": ["Rangreihenverfahren", "Ranking-Verfahren"], "authorized_access_point": "Ranking"} 1 +2024-09-11 09:09:25.79464 2024-09-11 09:09:25.794645 c85a87e8-906f-420d-a56a-342e6bf67df5 {"md5": "8c874c7bb162c73ad875b6aef8904676", "pid": "043078664", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Retroviren"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133790364", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12412463", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12412463t"}], "authorized_access_point": "Virus de l'immunodéficience simienne"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4307866-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043078664", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4307866-7", "source": "GND"}], "variant_access_point": ["SIV", "Simian immunodeficiency virus"], "authorized_access_point": "Affenimmundefizienzvirus"} 1 +2024-09-11 09:09:25.850061 2024-09-11 09:09:25.850065 50383936-64ec-4ad5-9281-0a067013cdee {"md5": "e4e020888e82bb05b3553ef37ffd014b", "pid": "043062024", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Chronologie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333671210", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85025412", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85025412"}], "authorized_access_point": "Chronology, Historical"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333671210", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13318624", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13318624w"}], "authorized_access_point": "Chronologie historique"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1275766404", "source": "GND"}, {"type": "uri", "value": "https://provenienz.gbv.de/T-PRO_Thesaurus_der_Provenienzbegriffe#Anker:Datum"}], "authorized_access_point": "Datum"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4306202-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043062024", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4306202-7", "source": "GND"}], "variant_access_point": ["Datumsangabe", "Kalendarisches Datum"], "authorized_access_point": "Datum"} 1 +2024-09-11 09:09:25.906077 2024-09-11 09:09:25.90608 cb79b92f-c90e-4615-8c09-60a450154200 {"md5": "bf286f3324c64ab58d2ce9563ee183fb", "pid": "04304980X", "note": [{"label": ["Erythrozyt mit abnormer Farbstoffverteilung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Erythrozyt"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4304980-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04304980X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4304980-1", "source": "GND"}], "variant_access_point": ["Schießscheibenzelle", "Kokardenzelle", "Leptozyt"], "authorized_access_point": "Targetzelle"} 1 +2024-09-11 09:09:25.959937 2024-09-11 09:09:25.95994 a034321c-34f0-4477-bef7-c7eda95280cd {"md5": "c46c2d79d9b0790fb440463c5bfe3979", "pid": "043049354", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bibliotheksinformationssystem"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4304935-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043049354", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4304935-7", "source": "GND"}], "authorized_access_point": "Allegro (Bibliotheksinformationssystem)"} 1 +2024-09-11 09:09:26.127006 2024-09-11 09:09:26.12701 905d85ff-896a-4577-b91b-e7e2010c27ff {"md5": "02abae30c9a9f690031eb03f499d35af", "pid": "043023932", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Koagulopathie"}, {"authorized_access_point": "Thrombotische Mikroangiopathie"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332910955", "source": "GND"}, {"type": "bf:Nbn", "value": "sh92002901", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh92002901"}], "authorized_access_point": "Thrombotic thrombocytopenic purpura"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332910955", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12259284", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12259284d"}], "authorized_access_point": "Purpura thrombotique thrombocytopénique"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241613486", "source": "GND"}, {"type": "bf:Nbn", "value": "D011697", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D011697"}], "authorized_access_point": "Purpura, Thrombotic Thrombocytopenic"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4302393-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043023932", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4302393-9", "source": "GND"}], "variant_access_point": ["Thrombotisch-thrombozytopenische Purpura", "Moschcowitz-Singer-Symmers-Syndrom"], "authorized_access_point": "Moschcowitz-Syndrom"} 1 +2024-09-11 09:09:26.19116 2024-09-11 09:09:26.191164 a6b56fef-4044-4388-ba0f-891d31267259 {"md5": "546e096f37b69e4f237c15d97ee1b8cc", "pid": "043007708", "note": [{"label": ["Mantik hat e. weitere Bedeutung als Wahrsagen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113479195X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85038589", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85038589"}], "authorized_access_point": "Divination"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113479195X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11938266", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11938266w"}], "authorized_access_point": "Divination"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4300770-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043007708", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4300770-3", "source": "GND"}], "authorized_access_point": "Mantik"} 1 +2024-09-11 09:09:26.246514 2024-09-11 09:09:26.246518 90730c54-15bb-4cf8-a2d9-9e2eed938e3a {"md5": "ecbeb5656fc366c8f75d124a90022108", "pid": "043006248", "note": [{"label": ["Verfasst 1587, sollte die Union Polens u. Schwedens vorbereiten"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4300624-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043006248", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4300624-3", "source": "GND"}], "variant_access_point": ["Kalmar stadgar"], "authorized_access_point": "Kalmarer Statuten"} 1 +2024-09-11 09:09:26.299711 2024-09-11 09:09:26.299716 bbadfd58-2f4a-4ba8-b801-bef067407d9d {"md5": "0f76eabdc651b5a9c2466cca0197eb35", "pid": "042975174", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tierrasse"}], "related": [{"authorized_access_point": "Pony"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134711182", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16247535", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16247535w"}], "authorized_access_point": "Races de poneys"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4297517-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042975174", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4297517-7", "source": "GND"}], "variant_access_point": ["Pony"], "authorized_access_point": "Ponyrasse"} 1 +2024-09-11 09:09:26.373549 2024-09-11 09:09:26.373553 cece2edb-623d-4e68-908a-7d2489130891 {"md5": "c138594f80382c80e94f2efbb64a4b27", "pid": "04296962X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Hüttenwartin"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334004277", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16721482", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb167214824"}], "authorized_access_point": "Gardiens de refuge"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4296962-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04296962X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4296962-1", "source": "GND"}], "variant_access_point": ["Hüttenwirt", "Schutzhüttenwirt", "Schutzhüttenwart"], "authorized_access_point": "Hüttenwart"} 1 +2024-09-11 09:09:26.43343 2024-09-11 09:09:26.433434 61944d28-5fa3-4a13-a78b-2ed3b2e3619d {"md5": "b6a8271eda56437b7dac8a11565c33a2", "pid": "042936586", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Person of Color"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1136963847", "source": "GND"}, {"type": "bf:Nbn", "value": "30160-2", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/30160-2"}], "authorized_access_point": "People of Color"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4293658-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042936586", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4293658-5", "source": "GND"}], "variant_access_point": ["Weibliche Person of Colour", "Weibliche Farbige", "Woman of Color", "Woman of Colour", "Farbige", "Farbige Frau", "Weibliche Black and People of Color", "Weibliche Black, Indigenous and People of Color", "Weibliche PoC", "Weibliche BPoC", "Weibliche BIPoC"], "authorized_access_point": "Weibliche Person of Color"} 1 +2024-09-11 09:09:26.494931 2024-09-11 09:09:26.494936 abb85803-8ec5-4526-88c0-3e5c5cdbf17b {"md5": "8f4ba60b756e5ad75d9c21b91e8b1352", "pid": "042933854", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Polnisch-Schwedischer_Krieg_(1600%E2%80%931629)&oldid=179265478"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Krieg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4293385-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042933854", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4293385-7", "source": "GND"}], "variant_access_point": ["Schwedisch-Polnischer Krieg (1600-1629)"], "authorized_access_point": "Polnisch-Schwedischer Krieg (1600-1629)"} 1 +2024-09-11 09:09:26.55144 2024-09-11 09:09:26.551445 6da29c05-32dc-459b-af64-04d6263f9b9c {"md5": "76037902b5e02def26451a2b163f3d15", "pid": "042932297", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fraktal"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254397841", "source": "GND"}, {"type": "bf:Nbn", "value": "69810", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/69810"}], "authorized_access_point": "Tappeti di Sierpiński"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4293229-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042932297", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4293229-4", "source": "GND"}], "variant_access_point": ["Sierpinski gasket"], "authorized_access_point": "Sierpinski-Dichtung"} 1 +2024-09-11 09:09:26.609062 2024-09-11 09:09:26.609067 f5326870-1331-4f5b-b92e-72d16db9e726 {"md5": "65e44aa7e065cc82786963aaf3b97eff", "pid": "042928664", "note": [{"label": ["Nicht permutierendes USW nach bioaktiven Stoffen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133739253", "source": "GND"}, {"type": "bf:Nbn", "value": "sh90002304", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh90002304"}], "authorized_access_point": "Mechanism of action (Biochemistry)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134230044", "source": "GND"}, {"type": "bf:Nbn", "value": "sh00006598", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00006598"}], "authorized_access_point": "Mechanism of action"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133739253", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12247262", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12247262d"}], "authorized_access_point": "Mécanisme d'action (biochimie)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134230044", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12247263", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12247263r"}], "authorized_access_point": "Mécanisme d'action"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4292866-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042928664", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4292866-7", "source": "GND"}], "variant_access_point": ["Wirkungsweise", "Wirkprinzip"], "authorized_access_point": "Wirkungsmechanismus"} 1 +2024-09-11 09:09:26.663163 2024-09-11 09:09:26.663167 b556c40f-6511-4538-bd65-c6d7bd51ff42 {"md5": "9c8159c517102c68f21ce78911ea53ce", "pid": "04291373X", "note": [{"label": ["Ohne USW für das Militär"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Niederlage"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334552770", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12308292", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb151000210"}], "authorized_access_point": "Victoire"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4291373-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04291373X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4291373-1", "source": "GND"}], "authorized_access_point": "Sieg"} 1 +2024-09-11 09:09:26.724049 2024-09-11 09:09:26.724053 24e204a3-2df4-4f2b-a9ff-fa69cfd279f1 {"md5": "4622742d491234353b4d31fd16116408", "pid": "042912709", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Himmelsmechanik"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134443021", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85136957", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85136957"}], "authorized_access_point": "Transits"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134443021", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF14558309", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb14558309g"}], "authorized_access_point": "Passages (astronomie)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4291270-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042912709", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4291270-2", "source": "GND"}], "variant_access_point": ["Transit (Astronomie)"], "authorized_access_point": "Durchgang (Astronomie)"} 1 +2024-09-11 09:09:26.77996 2024-09-11 09:09:26.779963 2c28e72a-522c-49f6-b987-7898b8ac5838 {"md5": "93b2c6cc89042cf6ac2def57927b30bb", "pid": "042911915", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Xenismus"}, {"authorized_access_point": "Entlehnung"}], "related": [{"authorized_access_point": "Italienisch"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134157150", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2008124258", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2008124258"}], "authorized_access_point": "Italian language - Idioms"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134044984", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11977038", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11977038p"}], "authorized_access_point": "Emprunts italiens"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134157150", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12092334", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12092334x"}], "authorized_access_point": "Italianismes (idiotismes)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4291191-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042911915", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4291191-6", "source": "GND"}], "authorized_access_point": "Italianismus"} 1 +2024-09-11 09:09:26.840195 2024-09-11 09:09:26.840199 a196a891-0538-4fc3-a4ee-fce8a7db250c {"md5": "813c1f3983f6f64fc5c4318bd033a976", "pid": "042909163", "note": [{"label": ["Benutzt für Stilprinzip"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Essay"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113450652X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85044913", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85044913"}], "authorized_access_point": "Essay"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113450652X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11948997", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119489979"}], "authorized_access_point": "Essai (genre littéraire)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4290916-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042909163", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4290916-8", "source": "GND"}], "authorized_access_point": "Essayismus"} 1 +2024-09-11 09:09:51.563038 2024-09-11 09:09:51.563041 28b43bce-0258-40d6-a45b-6ec4cd3f4978 {"md5": "186fe461a01b1bd2ec593179bc60ebe6", "pid": "040654648", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Verantwortung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4065464-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040654648", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4065464-3", "source": "GND"}], "authorized_access_point": "Weltverantwortung"} 1 +2024-09-11 09:09:26.903648 2024-09-11 09:09:26.903653 49ecfc5e-08d0-424d-b07f-01ab2efef5ca {"md5": "c8f6f4ae9902cb32dbfd297c6780b416", "pid": "042898250", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Harmonische Analyse"}], "related": [{"authorized_access_point": "Amenabilitätstheorie"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4289825-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042898250", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4289825-0", "source": "GND"}], "variant_access_point": ["Amenability"], "authorized_access_point": "Amenabilität"} 1 +2024-09-11 09:09:26.962368 2024-09-11 09:09:26.962372 05562d2b-4371-46f8-b748-b6951290c3c3 {"md5": "18aca1965ab7d8fd3a5f1d4b6dc6ed15", "pid": "042871255", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bilanzierungsgrundsätze"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134743416", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2004005271", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2004005271"}], "authorized_access_point": "Precautionary principle"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134743416", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13564166", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13564166v"}], "authorized_access_point": "Principe de précaution"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966706951", "source": "GND"}, {"type": "bf:Nbn", "value": "12432-4", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/12432-4"}], "authorized_access_point": "Vorsichtsprinzip"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4287125-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042871255", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4287125-6", "source": "GND"}], "variant_access_point": ["Vorsichtsgrundsatz", "Bilanzvorsicht", "Bilanzvorsicht", "Vorsichtige Bilanzierung", "Prinzip der vorsichtigen Bewertung"], "authorized_access_point": "Vorsichtsprinzip"} 1 +2024-09-11 09:09:27.026481 2024-09-11 09:09:27.026486 42fd0b59-2f99-44ec-b398-a6b2168374d3 {"md5": "95ca24942d4baf38b0296ae069120241", "pid": "042871093", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Stressreaktion"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134207492", "source": "GND"}, {"type": "bf:Nbn", "value": "sh00004602", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00004602"}], "authorized_access_point": "Effect of drought on"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134207492", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12200367", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12200367w"}], "authorized_access_point": "Effets de la sécheresse"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4287109-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042871093", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4287109-8", "source": "GND"}], "authorized_access_point": "Wasserstress"} 1 +2024-09-11 09:09:27.080488 2024-09-11 09:09:27.080492 4c9f2dc7-f265-4ace-9b6b-7d5166626835 {"md5": "305024fd18d042b7bceecb8856760df5", "pid": "042868696", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334020086", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16556915", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16556915v"}], "authorized_access_point": "Meruliaceae"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4286869-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042868696", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4286869-5", "source": "GND"}], "variant_access_point": ["Fältlinge", "Meruliaceae"], "authorized_access_point": "Faltenpilze"} 1 +2024-09-11 09:09:27.146335 2024-09-11 09:09:27.146338 f914920c-d2b8-4941-bc72-228483658af4 {"md5": "f895c5bb07a407fa3330aa550e32e4f0", "pid": "042855098", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134229682", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12246565", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb122465651"}], "authorized_access_point": "Information financière"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4285509-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042855098", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4285509-3", "source": "GND"}], "authorized_access_point": "Börseninformation"} 1 +2024-09-11 09:09:27.207891 2024-09-11 09:09:27.207895 8bd415b5-742a-4b7e-94ef-a7ff7a0f2819 {"md5": "d1c24f6e02ff55eb672b2ba9455ba15e", "pid": "042854083", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333472862", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85090721", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85090721"}], "authorized_access_point": "Nemipteridae"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333472862", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17155703", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17155703h"}], "authorized_access_point": "Nemipteridae"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4285408-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042854083", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4285408-8", "source": "GND"}], "variant_access_point": ["Nemipteridae"], "authorized_access_point": "Scheinschnapper"} 1 +2024-09-11 09:09:27.284762 2024-09-11 09:09:27.284768 f897458b-5953-49c4-a8bb-59c1264b0b63 {"md5": "a89bb763a70a7685b5e61b6718889083", "pid": "042829763", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Nationalfeiertag"}], "related": [{"authorized_access_point": "Wiedervereinigung (Deutschland)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4282976-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042829763", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4282976-8", "source": "GND"}], "variant_access_point": ["Dritter Oktober (Nationlfeiertag)", "3. Oktober (Nationalfeiertag)", "Tag der deutschen Vereinigung", "Siebzehnter Juni (Nationalfeiertag)", "17. Juni (Nationalfeiertag)"], "authorized_access_point": "Tag der deutschen Einheit"} 1 +2024-09-11 09:09:27.43507 2024-09-11 09:09:27.435074 bf8fdb8b-c4c2-4b8e-89a5-7ab1e2d55176 {"md5": "646caff391621ed7bc5fe93a6c41611d", "pid": "042828465", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133824234", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85038225", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85038225"}], "authorized_access_point": "Dippers (Birds)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133824234", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13621371", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13621371m"}], "authorized_access_point": "Cincles"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4282846-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042828465", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4282846-6", "source": "GND"}], "variant_access_point": ["Cinclidae"], "authorized_access_point": "Wasseramseln (Familie)"} 1 +2024-09-11 09:09:27.498275 2024-09-11 09:09:27.49828 8bbd0b68-853e-46ea-856e-1d0d27c9dd5e {"md5": "ec2f8f02ced8a4f4012c303ae2a4d34d", "pid": "042825210", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4282521-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042825210", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4282521-0", "source": "GND"}], "variant_access_point": ["Riss"], "authorized_access_point": "Rissverlauf"} 1 +2024-09-11 09:09:27.550676 2024-09-11 09:09:27.550679 05785c90-fa63-4f8b-bcc5-21807f1d3327 {"md5": "a9877c9a936c29625e53aa9f3fa2b6d2", "pid": "042819415", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Profil (Aerodynamik)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4281941-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042819415", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4281941-6", "source": "GND"}], "authorized_access_point": "Laminarprofil"} 1 +2024-09-11 09:09:27.603411 2024-09-11 09:09:27.603414 f8b40ef6-939f-44a6-a865-0b4cc2b4b9be {"md5": "3532fff8f8733a1b26917531b8ad3613", "pid": "042817293", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Katharina_Wasa_(1539%E2%80%931610)&oldid=207626567"], "noteType": "dataSource"}, {"label": ["Vermutl. Intima zwischen Cecilia v. Schweden und Johann v. Ostfriesland"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Politischer Skandal"}], "related": [{"authorized_access_point": "Liebesbeziehung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4281729-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042817293", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4281729-8", "source": "GND"}], "variant_access_point": ["Vadstena-Lärm"], "authorized_access_point": "Vadstena-Affäre"} 1 +2024-09-11 09:09:27.656172 2024-09-11 09:09:27.656174 404c416c-532c-487c-978e-30e104e368dc {"md5": "25815339f06162e017c9af8cb127e555", "pid": "042813905", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113377640X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12337857", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12337857f"}], "authorized_access_point": "Gorgones (animaux)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4281390-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042813905", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4281390-6", "source": "GND"}], "variant_access_point": ["Rindenkorallen", "Gorgonaria", "Gorgonien"], "authorized_access_point": "Hornkorallen"} 1 +2024-09-11 09:09:27.718922 2024-09-11 09:09:27.718926 45c4a1ea-a720-4e54-bef6-4a358aaab361 {"md5": "46f1e2141d52e1e652f502fbbc1a39b7", "pid": "042803098", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Terminbörse"}, {"authorized_access_point": "Warenbörse"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134086660", "source": "GND"}, {"type": "bf:Nbn", "value": "sh88001652", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh88001652"}], "authorized_access_point": "Commodity futures"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134086660", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11993552", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119935522"}], "authorized_access_point": "Bourses de marchandises"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4280309-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042803098", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4280309-3", "source": "GND"}], "authorized_access_point": "Warenterminbörse"} 1 +2024-09-11 09:09:27.772265 2024-09-11 09:09:27.772267 6b0083b3-b053-44dd-9e9b-3875c3e695eb {"md5": "9a6224b62b65b0a5d8a553af523ba011", "pid": "042798779", "note": [{"label": ["Benutzt für Westdeutsche bzw. Bewohner der Bundesrepublik Deutschland (vor 1990) ausserhalb Deutschland "], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Deutsche"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332874800", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF177016487", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb177016487"}], "authorized_access_point": "Allemands de l'Ouest"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4279877-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042798779", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4279877-2", "source": "GND"}], "variant_access_point": ["Deutsche (Westliche Länder)", "Deutsche (Bundesrepublik)"], "authorized_access_point": "Westdeutsche"} 1 +2024-09-11 09:09:28.451441 2024-09-11 09:09:28.451449 11d70eaa-fd31-40a0-8a93-024d9b3044b0 {"md5": "ed5237924acf8ef954567434c96afa08", "pid": "042707870", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113459996X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12502627", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12502627g"}], "authorized_access_point": "Or comme valeur de placement"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4270787-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042707870", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4270787-0", "source": "GND"}], "authorized_access_point": "Goldreserve"} 1 +2024-09-11 09:09:27.832332 2024-09-11 09:09:27.832337 da1a603c-5341-4a6a-83b9-8c7130d0ce2a {"md5": "7e620e1fc511be003c58faee2b4055fd", "pid": "042798760", "note": [{"label": ["Benutzt für Ostdeutsche, soweit ausserhalb Deutschland lebend"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Deutsche"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332874002", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17701910", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17701910c"}], "authorized_access_point": "Allemands de l'Est"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4279876-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042798760", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4279876-0", "source": "GND"}], "variant_access_point": ["Deutsche (Östliche Länder)"], "authorized_access_point": "Ostdeutsche"} 1 +2024-09-11 09:09:27.889333 2024-09-11 09:09:27.889338 a6272fef-bb86-4fd3-8d5d-cd2a24fc0b62 {"md5": "d6cc3f732f9eea5ea74beacd937af57f", "pid": "042798477", "note": [{"label": ["Art der Kapuzinerartigen Affen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kapuzineraffenartige"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333261721", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85021586", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85021586"}], "authorized_access_point": "Cebus apella"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333261721", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16244425", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16244425k"}], "authorized_access_point": "Sajou apelle"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4279847-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042798477", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4279847-4", "source": "GND"}], "variant_access_point": ["Apella (Zoologie)", "Faunaffe", "Cebus apella"], "authorized_access_point": "Gehaubter Kapuziner"} 1 +2024-09-11 09:09:27.943492 2024-09-11 09:09:27.943496 e0394299-d3ca-4242-a265-10a60f8243a8 {"md5": "685c4c4e914551e2747450cbc396c53f", "pid": "042773539", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Proteine"}], "related": [{"authorized_access_point": "Rekombinante DNS"}, {"authorized_access_point": "Recombinasen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133738346", "source": "GND"}, {"type": "bf:Nbn", "value": "sh90005744", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh90005744"}], "authorized_access_point": "Recombinant proteins"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133738346", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12242267", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12242267x"}], "authorized_access_point": "Protéines recombinées"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331727316", "source": "GND"}, {"type": "bf:Nbn", "value": "D011994", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D011994"}], "authorized_access_point": "Recombinant Proteins"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4277353-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042773539", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4277353-2", "source": "GND"}], "variant_access_point": ["Rekombinante Substanz", "Hybrid-Protein", "Rekombiniertes Protein", "Fusionsprotein"], "authorized_access_point": "Rekombinantes Protein"} 1 +2024-09-11 09:09:27.997086 2024-09-11 09:09:27.99709 5b6c70a7-c93b-4aa3-ad3d-ce7bada3d99a {"md5": "9987f7988fdd610b5137f9b6a7f6fcd1", "pid": "042763568", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4276356-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042763568", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4276356-3", "source": "GND"}], "variant_access_point": ["Kommandant (Lagerkommandant)"], "authorized_access_point": "Lagerkommandant"} 1 +2024-09-11 09:09:28.050775 2024-09-11 09:09:28.050781 00dff2f4-7686-4f79-ad93-1313a37b649b {"md5": "88852d51adbc499e4ed8f2d01b60f26a", "pid": "04276243X", "note": [{"label": ["Als öffentliche Ordnung bezeichnet man die Gesamtheit außerrechtlicher ungeschriebener Regeln für das Verhalten des Einzelnen in der Öffentlichkeit, deren Beachtung nach den jeweils herrschenden Anschauungen für ein geordnetes staatsbürgerliches Zusammenleben unerlässlich ist."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134595816", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85108741", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85108741"}], "authorized_access_point": "Public policy"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134595816", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11972065", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11972065c"}], "authorized_access_point": "Ordre public"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970607997", "source": "GND"}, {"type": "bf:Nbn", "value": "10047519", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10047519"}], "authorized_access_point": "öffentliche Ordnung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4276243-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04276243X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4276243-1", "source": "GND"}], "authorized_access_point": "Öffentliche Ordnung"} 1 +2024-09-11 09:09:28.513883 2024-09-11 09:09:28.513886 719b3e6c-6482-4558-9536-b815e1acd006 {"md5": "31b32b499594874bf5339777d4bc5819", "pid": "042667208", "note": [{"label": ["Als Homonymenzusatz bei Personenschlagworten zugelassen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Verlag"}, {"authorized_access_point": "Verleger"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134507925", "source": "GND"}, {"type": "bf:Nbn", "value": "sh92005004", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh92005004"}], "authorized_access_point": "Women editors"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331604567", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85147695", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85147695"}], "authorized_access_point": "Women publishers"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134507925", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13505351", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13505351c"}], "authorized_access_point": "Éditrices"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331604567", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13505351", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13505351c"}], "authorized_access_point": "Éditrices"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4266720-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042667208", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4266720-3", "source": "GND"}], "variant_access_point": ["Verlagsleiterin"], "authorized_access_point": "Verlegerin"} 1 +2024-09-11 09:09:28.106865 2024-09-11 09:09:28.106869 4a1e899b-a2c8-4454-806c-2d70fc2d9f3f {"md5": "8684b2b14a7beb67cced17b5aa241ebc", "pid": "042755255", "note": [{"label": ["Gattung der Buntbarsche"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Buntbarsche"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133396207X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh92000995", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh92000995"}], "authorized_access_point": "Tylochromis"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133396207X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17801991", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17801991c"}], "authorized_access_point": "Tylochromis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4275525-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042755255", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4275525-6", "source": "GND"}], "authorized_access_point": "Tylochromis"} 1 +2024-09-11 09:09:28.163295 2024-09-11 09:09:28.163299 ac51318c-ac0d-4891-8933-acf1443fb4a1 {"md5": "517c17edeead32950b6dd90eb7222b3f", "pid": "04275206X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zelle"}], "related": [{"authorized_access_point": "Osteoklast"}, {"authorized_access_point": "Osteozyt"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133798454", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12442115", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12442115r"}], "authorized_access_point": "Ostéoblastes"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4275206-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04275206X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4275206-1", "source": "GND"}], "variant_access_point": ["Cellula osteoblastica", "Osteoplast"], "authorized_access_point": "Osteoblast"} 1 +2024-09-11 09:09:28.21846 2024-09-11 09:09:28.218463 8196d877-d853-41b0-bc37-bef9ab170946 {"md5": "dc0e29b7475787d6b94e068c5e1e1df5", "pid": "042749298", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Krebs (Medizin)"}, {"authorized_access_point": "Thoraxtumor"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134574444", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2010008992", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2010008992"}], "authorized_access_point": "Chest - Cancer"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241624984", "source": "GND"}, {"type": "bf:Nbn", "value": "D013899", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D013899"}], "authorized_access_point": "Thoracic Neoplasms"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4274929-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042749298", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4274929-3", "source": "GND"}], "variant_access_point": ["Thorax (Medizin)", "Thoraxkarzinom", "Thoraxcarcinom", "Brustkorb", "Brustorgan", "Brustkorbkrebs"], "authorized_access_point": "Thoraxkrebs"} 1 +2024-09-11 09:09:28.273838 2024-09-11 09:09:28.273841 d100df90-41a3-45a4-bf8c-426ef43a9ba8 {"md5": "f16899eecbe3ada6b688d5f3d84d832b", "pid": "042740983", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Thyristor"}, {"authorized_access_point": "Abschaltbarer Leistungshalbleiter"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4274098-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042740983", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4274098-8", "source": "GND"}], "variant_access_point": ["Feldgesteuerter Thyristor", "FTD", "SI-Thyristor", "Bipolarer Gridistor"], "authorized_access_point": "FCT"} 1 +2024-09-11 09:09:28.326899 2024-09-11 09:09:28.326902 fbf1b34a-fd13-4ad0-accd-fde922980835 {"md5": "5f44615d1d422735dc6c5973cf0c9a68", "pid": "042728622", "note": [{"label": ["Benutzt für Musik"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Musiker"}], "related": [{"authorized_access_point": "Solist"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332757650", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16949658", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16949658h"}], "authorized_access_point": "Virtuoses (musique)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4272862-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042728622", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4272862-9", "source": "GND"}], "variant_access_point": ["Kammervirtuose"], "authorized_access_point": "Virtuose"} 1 +2024-09-11 09:09:28.385971 2024-09-11 09:09:28.385976 b8c78775-2ff6-4b57-b287-d733ac039518 {"md5": "8ce9b0e953e132712e09ea6cb68089ae", "pid": "042725739", "note": [{"label": ["Handeln auf der Grundlage von Zweckmäßigkeit. Oft abwertend im Sinn von \\"charakterlosem Verhalten\\" verwendet."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Politische Ethik"}], "related": [{"authorized_access_point": "Pragmatismus"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1068404876", "source": "GND"}, {"type": "bf:Nbn", "value": "30005-0", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/30005-0"}], "authorized_access_point": "Opportunismus"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970577095", "source": "GND"}, {"type": "bf:Nbn", "value": "10053773", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10053773"}], "authorized_access_point": "Opportunismus"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4272573-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042725739", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4272573-2", "source": "GND"}], "variant_access_point": ["Pragmatismus"], "authorized_access_point": "Opportunismus"} 1 +2024-09-11 09:09:28.571899 2024-09-11 09:09:28.571904 02085880-df75-4f28-acaa-7423e6959334 {"md5": "1da534933675b7650042f83317ecbb0a", "pid": "04264044X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Ostozeanisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4264044-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04264044X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4264044-1", "source": "GND"}], "variant_access_point": ["Mikronesisch"], "authorized_access_point": "Mikronesische Sprachen"} 1 +2024-09-11 09:09:28.625768 2024-09-11 09:09:28.625772 efff1564-ac80-48b0-bb15-d4e1f3878616 {"md5": "6510e08153a49ea1a336b6e139a0cbf4", "pid": "042625025", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Pflanzen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133929443", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85099785", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85099785"}], "authorized_access_point": "Perennials"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133929443", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11932972", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119329729"}], "authorized_access_point": "Plantes vivaces"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254408150", "source": "GND"}, {"type": "bf:Nbn", "value": "XX544340", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX544340"}], "authorized_access_point": "Plantas vivaces"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4262502-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042625025", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4262502-6", "source": "GND"}], "variant_access_point": ["Perennierende Pflanzen"], "authorized_access_point": "Ausdauernde Pflanzen"} 1 +2024-09-11 09:09:28.680572 2024-09-11 09:09:28.680575 e1cd8797-0b67-4e3b-8828-91db22774551 {"md5": "67e4f618a17d852546fb234bbdca3fcd", "pid": "042616727", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Räumliche Verteilung"}], "related": [{"authorized_access_point": "Tiefenprofilmessung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134129041", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12043931", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12043931r"}], "authorized_access_point": "Distribution verticale"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4261672-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042616727", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4261672-4", "source": "GND"}], "authorized_access_point": "Tiefenverteilung"} 1 +2024-09-11 09:09:28.738999 2024-09-11 09:09:28.739004 326c7e84-97b6-4b58-97b5-11067f07721d {"md5": "d11307a98c1f4a14f55c01f44864aac8", "pid": "042612292", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Drosseln"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134326912", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85125035", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85125035"}], "authorized_access_point": "Song thrush"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134326912", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12443231", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12443231h"}], "authorized_access_point": "Grive musicienne"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4261229-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042612292", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4261229-9", "source": "GND"}], "variant_access_point": ["Turdus philomelos"], "authorized_access_point": "Singdrossel"} 1 +2024-09-11 09:09:28.793017 2024-09-11 09:09:28.793021 c2f64ec8-86f9-4ef4-81e3-68ac4a898a5b {"md5": "6ad0080257a6e7d44974711657dcd5a4", "pid": "042556740", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113360269X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12453839", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb124538394"}], "authorized_access_point": "Tournées (arts du spectacle)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4255674-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042556740", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4255674-0", "source": "GND"}], "variant_access_point": ["Tournee"], "authorized_access_point": "Gastspiel"} 1 +2024-09-11 09:09:28.84863 2024-09-11 09:09:28.848633 0d60b623-2689-4209-bfb7-557b9c41838d {"md5": "67c090fb8aa22a2f6cee689340a14027", "pid": "042552192", "note": [{"label": ["Schätzverfahren der empirischen Sozialforschung, bei denen Auskunftspersonen Personen bzw. Sachverhalte anhand einer vorgegebenen Skala beurteilen. Verknüpfe mit Anwendungsgebiet."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Skalierung"}, {"authorized_access_point": "Ranking"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1027503195", "source": "GND"}, {"type": "bf:Nbn", "value": "10080932", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10080932"}], "authorized_access_point": "Rating"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4255219-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042552192", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4255219-9", "source": "GND"}], "authorized_access_point": "Rating"} 1 +2024-09-11 09:09:28.904124 2024-09-11 09:09:28.904128 46058ba3-2bf3-4c6f-ba67-7d4a19d4969c {"md5": "30b8af12cd9bb45053592a336e1cb26e", "pid": "04252184X", "note": [{"label": ["Kunstzentrum mit Ateliers, Veranstaltungsort für Theaterspiel, Produktionsstätten", "Kein OB für Wohnhäuser von Künstlern. Hierfür benutze neben der architektonischen Gattungsbezeichnung Haus, Villa, Gartenhaus etc. gegebenenfalls Atelierhaus oder Literarische Stätte"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kulturgebäude"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133799965", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12447905", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12447905v"}], "authorized_access_point": "Résidences d'artistes"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4252184-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04252184X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4252184-1", "source": "GND"}], "authorized_access_point": "Künstlerhaus"} 1 +2024-09-11 09:10:42.093217 2024-09-11 09:10:42.093226 e5a1178a-6216-401b-b9bd-f831ee4acf1f {"md5": "8f2ef7efbd55e81cd8bfd2e0c6ae98f6", "pid": "041378407", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bauernhof"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4137840-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041378407", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4137840-4", "source": "GND"}], "authorized_access_point": "Erbhof"} 1 +2024-09-11 09:09:28.966025 2024-09-11 09:09:28.966029 c2ed7ff6-ab46-41d2-a1c8-b167c10e21b4 {"md5": "b5935dd403bae1022accaf8004c251b6", "pid": "04251729X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sonnenbarsche (Familie)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333375859", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85123609", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85123609"}], "authorized_access_point": "Smallmouth bass"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333375859", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17800584", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17800584r"}], "authorized_access_point": "Black-bass à petite bouche"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4251729-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04251729X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4251729-1", "source": "GND"}], "variant_access_point": ["Micropterus dolomieui"], "authorized_access_point": "Schwarzbarsch"} 1 +2024-09-11 09:09:29.027752 2024-09-11 09:09:29.027755 67691bad-80c7-4d63-b57b-bcd08ad69e36 {"md5": "bcbdf2b61a67f1b85be2a62593d3e753", "pid": "042496918", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Renaturierung (Ökologie)"}, {"authorized_access_point": "Rekultivierung"}, {"authorized_access_point": "Naturnahe Pflege"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4249691-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042496918", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4249691-3", "source": "GND"}], "variant_access_point": ["Naturnaher Ausbau", "Naturnahe Umgestaltung"], "authorized_access_point": "Naturnahe Gestaltung"} 1 +2024-09-11 09:09:29.082719 2024-09-11 09:09:29.082722 ab52a422-53c4-4b35-990e-7cec2023b122 {"md5": "fd97708dbc965d89a7b4b275236507bf", "pid": "042496896", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gewässerausbau"}, {"authorized_access_point": "Naturnahe Gestaltung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134708971", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13745579", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13745579g"}], "authorized_access_point": "Rives - Aménagement"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4249689-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042496896", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4249689-5", "source": "GND"}], "variant_access_point": ["Naturnaher Gewässerbau"], "authorized_access_point": "Naturnaher Gewässerausbau"} 1 +2024-09-11 09:09:29.140696 2024-09-11 09:09:29.140699 22b1dd65-eab6-4fc4-ace3-ad2ae55a1b24 {"md5": "44fc7e32d65529e252f7e3a915934be6", "pid": "042491010", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4249101-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042491010", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4249101-0", "source": "GND"}], "variant_access_point": ["Sample-and-hold-Schaltung", "Abtast-halte-Schaltung"], "authorized_access_point": "Abtast- und Haltekreis"} 1 +2024-09-11 09:09:29.190589 2024-09-11 09:09:29.190593 e424c3c5-b629-4771-9db6-adcdd15e32df {"md5": "e7cf97061b45c4f068761c371d1a5e5a", "pid": "042479770", "note": [{"label": ["Brasilian. indigene Gruppe"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Indianer"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134334915", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12466779", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb124667791"}], "authorized_access_point": "Wari' (Indiens)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4247977-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042479770", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4247977-0", "source": "GND"}], "authorized_access_point": "Pakaá nova"} 1 +2024-09-11 09:09:29.247933 2024-09-11 09:09:29.247937 7db65d6d-7fef-4c3c-be67-76ebd5661edd {"md5": "ee83e7b5e8d1f16bbb68c0924ce801ca", "pid": "042466199", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113455026X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85052608", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85052608"}], "authorized_access_point": "Future, The, in literature"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134550278", "source": "GND"}, {"type": "bf:Nbn", "value": "sh99001312", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99001312"}], "authorized_access_point": "Future in art"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4246619-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042466199", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4246619-2", "source": "GND"}], "authorized_access_point": "Zukunft (Motiv)"} 1 +2024-09-11 09:09:29.304043 2024-09-11 09:09:29.304049 b6d9ac0c-b873-4efe-91d4-46b4e29ce2de {"md5": "e00a03d16d5f656f14e00aac10b658d9", "pid": "04245395X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134007892", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85109450", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85109450"}], "authorized_access_point": "Quantity (Philosophy)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134007892", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11965167", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11965167v"}], "authorized_access_point": "Quantité (philosophie)"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)97058346X", "source": "GND"}, {"type": "bf:Nbn", "value": "10044683", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10044683"}], "authorized_access_point": "Quantität"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4245395-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04245395X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4245395-1", "source": "GND"}], "authorized_access_point": "Quantität"} 1 +2024-09-11 09:09:29.361607 2024-09-11 09:09:29.361611 49679f6d-2341-4b57-96a9-3320143565e2 {"md5": "a253dc963b6cddf37cba9c62e456213e", "pid": "042439086", "note": [{"label": ["Verknüpfe ggf. mit Sprachbezeichnung u. hier nicht permutierender Wortart: z.B. Griechisch / Substantiv / telōnēs"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4243908-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042439086", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4243908-5", "source": "GND"}], "variant_access_point": ["τελώνης"], "authorized_access_point": "telōnēs"} 1 +2024-09-11 09:09:29.411922 2024-09-11 09:09:29.411925 bf8da753-fe9d-473a-ba18-3f81907d06b3 {"md5": "f8b9a8732f5afc44b820b14da8eadcc5", "pid": "042433517", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=RoRo-Schiff&oldid=233657111"], "noteType": "dataSource"}, {"label": ["Frachtschiffe, die bewegliche Güter transportieren, die auf die Schiffe gefahren werden (RoRo-Verfahren)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Frachtschiff"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4243351-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042433517", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4243351-4", "source": "GND"}], "variant_access_point": ["Ro-ro-Schiff", "RoRo-Schiff", "Roll-on-/Roll-off-Schiff", "RORO ship"], "authorized_access_point": "Roll-on-roll-off-Schiff"} 1 +2024-09-11 09:09:29.460117 2024-09-11 09:09:29.460121 4073b4ed-97ea-465c-96ae-6daa7eda8c52 {"md5": "ed53bef1f80d774f36afb98ed5010a7f", "pid": "042427045", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckwerk"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133158230X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF18015044", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb180150449"}], "authorized_access_point": "Tirés à part"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4242704-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042427045", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4242704-6", "source": "GND"}], "variant_access_point": ["Sonderabdruck"], "authorized_access_point": "Sonderdruck"} 1 +2024-09-11 09:09:29.53203 2024-09-11 09:09:29.532036 d7bc317b-2037-4924-a83e-d8f245e2487e {"md5": "12f1bbd56ff71cb4f935b8e8827be305", "pid": "042416795", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sprachverstehen"}, {"authorized_access_point": "Textverarbeitung (Psycholinguistik)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133936881", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85111686", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85111686"}], "authorized_access_point": "Reading comprehension"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133936881", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12303769", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12303769k"}], "authorized_access_point": "Lecture - Aspect cognitif"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4241679-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042416795", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4241679-6", "source": "GND"}], "variant_access_point": ["Verstehen", "Textverständnis", "Leseverstehen (Muttersprache)"], "authorized_access_point": "Textverstehen"} 1 +2024-09-11 09:09:29.590226 2024-09-11 09:09:29.59023 49faae35-ed5b-4d3b-9db5-fa8b68483b75 {"md5": "05168bbc132cd82bb5aea4289a93c8fa", "pid": "042402883", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4240288-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042402883", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4240288-8", "source": "GND"}], "authorized_access_point": "Friedliche Revolution in der DDR (Motiv)"} 1 +2024-09-11 09:09:29.647239 2024-09-11 09:09:29.647243 deaa4e6b-03c5-4d58-b0e2-45fb2939c99a {"md5": "f77d87a1a9e8ca553601f17f134dfacb", "pid": "042402239", "note": [{"label": ["Verknüpfe mit Anwendungsgebiet"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134832060", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11979799", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119797999"}], "authorized_access_point": "Honnêteté"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4240223-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042402239", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4240223-2", "source": "GND"}], "authorized_access_point": "Korrektheit"} 1 +2024-09-11 09:09:29.707875 2024-09-11 09:09:29.70788 3cf41755-4ca8-48ad-bda5-458223b7bdc0 {"md5": "c317d7bfe77c7b9cbd95d37488746052", "pid": "042363527", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Betriebshaftpflichtversicherung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134126891", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85067017", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85067017"}], "authorized_access_point": "Products liability insurance"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134126891", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12039818", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12039818h"}], "authorized_access_point": "Assurance de responsabilité civile des produits"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4236352-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042363527", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4236352-4", "source": "GND"}], "variant_access_point": ["Produkthaftungsversicherung", "Produzentenhaftpflichtversicherung"], "authorized_access_point": "Produkthaftpflichtversicherung"} 1 +2024-09-11 09:09:31.147139 2024-09-11 09:09:31.147142 7d3a4df7-aba6-41e3-8ede-693b8e2bf531 {"md5": "daf667e1d220788673cf59dfb2a7db8f", "pid": "042137268", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Array"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4213726-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042137268", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4213726-3", "source": "GND"}], "variant_access_point": ["Sensoranordnung", "Matrixsensor", "Sensormatrix"], "authorized_access_point": "Sensor-Array"} 1 +2024-09-11 09:09:29.762136 2024-09-11 09:09:29.762141 cefd2606-6a37-44f6-b013-f4110cd7253c {"md5": "535a540449850e4ac59813914ef6cfc6", "pid": "042362466", "note": [{"label": ["Sampling bezeichnet eine musikalische Kopierpraxis, bei der eine digitale Kopie eines Klangs in einen neuen musikalischen Zusammenhang gestellt wird."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134372469", "source": "GND"}, {"type": "bf:Nbn", "value": "sh96010851", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh96010851"}], "authorized_access_point": "Sampling (Sound)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134372469", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12572200", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12572200s"}], "authorized_access_point": "Synthèse sonore"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4236246-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042362466", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4236246-5", "source": "GND"}], "variant_access_point": ["Sound sampling"], "authorized_access_point": "Sampling (Musik)"} 1 +2024-09-11 09:09:29.815643 2024-09-11 09:09:29.815645 bbf79d25-a081-4f9c-bd6f-34918cc1c414 {"md5": "543a56e0ba96221fce0d4672dfa6e732", "pid": "042349885", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4234988-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042349885", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4234988-6", "source": "GND"}], "authorized_access_point": "Wandel (Motiv)"} 1 +2024-09-11 09:09:29.871325 2024-09-11 09:09:29.871328 57590e42-1c5e-469f-a06e-4c55408e4cd9 {"md5": "2737dde3cd7b5c74034aeeb522669ec6", "pid": "042349877", "note": [{"label": ["In der Regel für historische Vorgänge verwendet", "In Verknüpfung mit anderen Schlagwörtern i.d.R. nicht permutierend"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133693466", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85022510", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85022510"}], "authorized_access_point": "Change"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133693466", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13319201", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13319201c"}], "authorized_access_point": "Changement (philosophie)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4234987-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042349877", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4234987-4", "source": "GND"}], "variant_access_point": ["Wandlung (Wandel)"], "authorized_access_point": "Wandel"} 1 +2024-09-11 09:09:29.930324 2024-09-11 09:09:29.930329 63dc5457-fd6c-4d12-9e82-d9739e1c8b0b {"md5": "73739a85c681394a8dfbf290b96d4b3e", "pid": "042319986", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bildungsökonomie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133922295", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11931253", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11931253v"}], "authorized_access_point": "Enseignement supérieur - Aspect économique"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4231998-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042319986", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4231998-5", "source": "GND"}], "variant_access_point": ["Hochschule", "Hochschulwesen", "Hochschulökonomik"], "authorized_access_point": "Hochschulökonomie"} 1 +2024-09-11 09:09:29.990681 2024-09-11 09:09:29.990685 60a53ac8-6b3c-48aa-8e81-767c3f466502 {"md5": "ba1f993c7687bc49fa7a8201d874e8e1", "pid": "04231416X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Vögel"}, {"authorized_access_point": "Schädling"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133637655", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85014297", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85014297"}], "authorized_access_point": "Bird pests"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133637655", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11944219", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11944219m"}], "authorized_access_point": "Oiseaux nuisibles"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256254495", "source": "GND"}, {"type": "bf:Nbn", "value": "5243", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_5243"}], "authorized_access_point": "noxious birds"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4231416-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04231416X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4231416-1", "source": "GND"}], "variant_access_point": ["Schädliche Vögel"], "authorized_access_point": "Schadvögel"} 1 +2024-09-11 09:09:30.05088 2024-09-11 09:09:30.050884 36b72ff2-a2d0-45e0-b5a2-c4766b3ec116 {"md5": "b9ac248efd2914da188408988931b847", "pid": "042294118", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Markenverletzung"}], "related": [{"authorized_access_point": "Produktpiraterie"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1027738478", "source": "GND"}, {"type": "bf:Nbn", "value": "10080065", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10080065"}], "authorized_access_point": "Produktpiraterie"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4229411-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042294118", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4229411-3", "source": "GND"}], "variant_access_point": ["Markenfälschung", "Trademark piracy", "Trademark counterfeiting", "Piraterie de marque"], "authorized_access_point": "Markenpiraterie"} 1 +2024-09-11 09:09:31.199806 2024-09-11 09:09:31.199811 1cd3bc04-968e-4165-ad28-bf6e09999039 {"md5": "c79672afe42ed490b27ed8164374a1cf", "pid": "042108160", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Dimorphismus"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4210816-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042108160", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4210816-0", "source": "GND"}], "authorized_access_point": "Saisondimorphismus"} 1 +2024-09-11 09:09:30.106826 2024-09-11 09:09:30.10683 0ce0e243-c839-4549-8f2d-493b91762c3e {"md5": "0d03945e853468703b30979127d84391", "pid": "042259177", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Disposition (Medizin)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134614748", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85037625", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85037625"}], "authorized_access_point": "Disease susceptibility"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134614748", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12255741", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12255741j"}], "authorized_access_point": "Prédisposition (médecine)"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241636885", "source": "GND"}, {"type": "bf:Nbn", "value": "D004198", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D004198"}], "authorized_access_point": "Disease Susceptibility"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4225917-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042259177", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4225917-4", "source": "GND"}], "authorized_access_point": "Prädisposition"} 1 +2024-09-11 09:09:30.16897 2024-09-11 09:09:30.168973 6daf4b2a-8f66-4e3a-887b-03b36c0d10f8 {"md5": "4e5f54403dc8f1aa412bd4c868cd90b8", "pid": "042250234", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wolfsmilchgewächse"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134648898", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2017004395", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2017004395"}], "authorized_access_point": "Jatropha curcas"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134648898", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15542948", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15542948h"}], "authorized_access_point": "Jatropha curcas"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125624919X", "source": "GND"}, {"type": "bf:Nbn", "value": "16254", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_16254"}], "authorized_access_point": "Jatropha curcas"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4225023-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042250234", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4225023-7", "source": "GND"}], "variant_access_point": ["Jatropha curcas"], "authorized_access_point": "Purgiernuss"} 1 +2024-09-11 09:09:30.224695 2024-09-11 09:09:30.2247 e0cdc9f4-24dc-4378-bc23-4860aa3351e5 {"md5": "d8c09f9d9d3522a9bf80a97262160972", "pid": "042237688", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Erfolg"}], "related": [{"authorized_access_point": "Unternehmensergebnis"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134694016", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85129589", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85129589"}], "authorized_access_point": "Success in business"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134694016", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12004278", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12004278w"}], "authorized_access_point": "Succès dans les affaires"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4223768-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042237688", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4223768-3", "source": "GND"}], "variant_access_point": ["Unternehmen"], "authorized_access_point": "Unternehmenserfolg"} 1 +2024-09-11 09:09:30.284225 2024-09-11 09:09:30.284229 a0029651-818e-49f8-9248-0b2ea2dfb470 {"md5": "e3e6dba088b614149da8bc22530fb067", "pid": "042221234", "note": [{"label": ["Zeitalter, das den histor. Prozess abschließt, meist ein \\"drittes\\" Zeitalter"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Geschichtsphilosophie"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4222123-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042221234", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4222123-7", "source": "GND"}], "variant_access_point": ["Letztphase", "Ende der Geschichte", "The ends of history", "Posthistorisches Zeitalter", "Nachgeschichte", "Geschichte"], "authorized_access_point": "Posthistoire"} 1 +2024-09-11 09:09:30.338748 2024-09-11 09:09:30.33875 14f1c4f2-6798-4191-9b4e-4da70904a0a0 {"md5": "e3f5764f0693bf6a7423e82474a41695", "pid": "042208408", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Beamter"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4220840-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042208408", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4220840-3", "source": "GND"}], "variant_access_point": ["Probezeitbeamter"], "authorized_access_point": "Beamter auf Probe"} 1 +2024-09-11 09:09:30.390942 2024-09-11 09:09:30.390946 50a0f35f-2ee1-4843-8043-214f1200d19d {"md5": "021ca00bd04b57ecf3a4c8cdb0dcba22", "pid": "042203856", "note": [{"label": ["Art. 7,4-6 GG"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schulrecht"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4220385-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042203856", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4220385-5", "source": "GND"}], "authorized_access_point": "Privatschulfreiheit"} 1 +2024-09-11 09:09:32.051848 2024-09-11 09:09:32.051853 3b0cd2fe-a525-4678-b8e9-b1f6322a5adb {"md5": "947ef2545a188b3590b46db476476f37", "pid": "041987489", "note": [{"label": ["Produktbezeichnung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Whisky"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4198748-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041987489", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4198748-2", "source": "GND"}], "authorized_access_point": "Bourbon (Getränk)"} 1 +2024-09-11 09:09:30.447873 2024-09-11 09:09:30.447876 76419700-d122-4b3e-8fdc-986f779abbca {"md5": "8a0d18175523eb90ec8b2bcb5e03affe", "pid": "042203023", "note": [{"label": ["Von R. Thurnwald begründete, sozialwissenschaftlich ausgerichtete Forschungsrichtung in der Ethnologie, deren Grundlage wie in der britischen Social Anthropology der Funktionalismus ist"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Soziologie"}], "related": [{"authorized_access_point": "Sozialanthropologie"}, {"authorized_access_point": "Kulturanthropologie"}, {"authorized_access_point": "Ethnosoziologe"}, {"authorized_access_point": "Ethnosoziologin"}, {"authorized_access_point": "Sozialethnologie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133267612X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2013001662", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2013001662"}], "authorized_access_point": "Ethnosociology"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133267612X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17972469", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17972469p"}], "authorized_access_point": "Ethnosociologie"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)971397511", "source": "GND"}, {"type": "bf:Nbn", "value": "10042835", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10042835"}], "authorized_access_point": "Ethnologie"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4220302-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042203023", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4220302-8", "source": "GND"}], "authorized_access_point": "Ethnosoziologie"} 1 +2024-09-11 09:09:30.518597 2024-09-11 09:09:30.518624 c184f824-7309-4c2d-bdfd-bc06977a1939 {"md5": "07a6f5bbd25802a62d8f1855d418405d", "pid": "042195810", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Freistück"}], "related": [{"authorized_access_point": "Pflichtexemplarrecht"}, {"authorized_access_point": "Zensurexemplar"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134054874", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85075741", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85075741"}], "authorized_access_point": "Legal deposit of books, etc."}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134054874", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11978766", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119787663"}], "authorized_access_point": "Dépôt légal"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4219581-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042195810", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4219581-0", "source": "GND"}], "variant_access_point": ["Pflichtstück"], "authorized_access_point": "Pflichtexemplar"} 1 +2024-09-11 09:09:30.582895 2024-09-11 09:09:30.582897 d3847a88-3606-43a7-89e0-e2fc295e24c0 {"md5": "b6815efa28c2ffcf38f1328732bcbe66", "pid": "042193958", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Flasche"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333328788", "source": "GND"}, {"type": "bf:Nbn", "value": "sh93006012", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh93006012"}], "authorized_access_point": "Canteens (Beverage containers)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333328788", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13743057", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb137430579"}], "authorized_access_point": "Gourdes (récipients)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4219395-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042193958", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4219395-3", "source": "GND"}], "authorized_access_point": "Feldflasche"} 1 +2024-09-11 09:09:30.641807 2024-09-11 09:09:30.641811 54c76eef-a066-4077-80e2-57065902c439 {"md5": "6c884a383c3aed56fe945cdbf3ebd5b1", "pid": "04219007X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4219007-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04219007X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4219007-1", "source": "GND"}], "authorized_access_point": "Anzeigengestaltung"} 1 +2024-09-11 09:09:30.696751 2024-09-11 09:09:30.696754 e3f5e358-74d6-4e57-959e-d472d660c2c1 {"md5": "824d6f74cd360703b6a52fb0e15c0b12", "pid": "042189748", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Therapie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133731988", "source": "GND"}, {"type": "bf:Nbn", "value": "sh99005037", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99005037"}], "authorized_access_point": "Adjuvant treatment"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133731988", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12185143", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb121851431"}], "authorized_access_point": "Traitement adjuvant"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4218974-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042189748", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4218974-3", "source": "GND"}], "variant_access_point": ["Supportive Therapie", "Unterstützende Therapie", "Begleitende Therapie", "Begleittherapie", "Adjuvanstherapie", "Supportivtherapie"], "authorized_access_point": "Adjuvante Therapie"} 1 +2024-09-11 09:09:30.754132 2024-09-11 09:09:30.754138 8a0e9b34-e19a-4462-aec0-07df56573651 {"md5": "6f628ca25f51065b2d5f9ac6306c1e74", "pid": "042187494", "note": [{"label": ["Als Homonymenzusatz bei Personenschlagwörtern zugelassen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Erfinder"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331759846", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85147449", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85147449"}], "authorized_access_point": "Women inventors"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331759846", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16742339", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16742339c"}], "authorized_access_point": "Inventrices"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4218749-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042187494", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4218749-7", "source": "GND"}], "authorized_access_point": "Erfinderin"} 1 +2024-09-11 09:09:42.850752 2024-09-11 09:09:42.850756 a82f65d0-7b61-4513-947e-f7ba3a5fe4c7 {"md5": "f706b7cd2c01f7b9b02f53e71a52db3f", "pid": "041445082", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kraftstoff"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4144508-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041445082", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4144508-9", "source": "GND"}], "variant_access_point": ["Alkohol-Benzin-Mischkraftstoff"], "authorized_access_point": "Benzin-Alkohol-Mischkraftstoff"} 1 +2024-09-11 09:09:30.8078 2024-09-11 09:09:30.807805 8a9d4853-b282-4341-95c3-3b166eda5e46 {"md5": "f592dc093974cd4383f111c26d118de5", "pid": "042180805", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Messumformer"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134708769", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85134779", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85134779"}], "authorized_access_point": "Thermocouples"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134708769", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11979701", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11979701r"}], "authorized_access_point": "Thermocouples"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4218080-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042180805", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4218080-6", "source": "GND"}], "variant_access_point": ["Thermokonverter"], "authorized_access_point": "Thermoumformer"} 1 +2024-09-11 09:09:30.861935 2024-09-11 09:09:30.861939 d4658854-4817-4410-9eb6-b3d6655ff38a {"md5": "7202b965c7948d396c93fbc64284e00e", "pid": "042159458", "note": [{"label": ["4 nahe verwandte indigene Gruppen in d. Bundesstaaten Oaxaca u. Veracruz"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Indianer"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4215945-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042159458", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4215945-3", "source": "GND"}], "variant_access_point": ["Mije", "Ayöök", "Ayook", "Ayuc", "Ayuujk", "Ayuuk", "Guichiovian", "Tapijualapane-Mixe"], "authorized_access_point": "Mixe"} 1 +2024-09-11 09:09:30.915729 2024-09-11 09:09:30.915734 b6e46656-bd1a-4273-92b0-589fc63e0916 {"md5": "48a28a8d136b43effc42c15c83885113", "pid": "042154316", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Phasenumwandlung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4215431-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042154316", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4215431-5", "source": "GND"}], "variant_access_point": ["Glasübergang", "Erweichung (Glasumwandlung)", "Glasbildung", "Glasprozess"], "authorized_access_point": "Glasumwandlung"} 1 +2024-09-11 09:09:30.975957 2024-09-11 09:09:30.975961 2a4332cd-8f23-4496-9c59-4a509b163fd7 {"md5": "2d76726c79ba915f24ca6573f9f3f5ec", "pid": "042152089", "note": [{"label": ["Als Management Buyout bezeichnet man die Unternehmensveräußerung an Geschäftsführer oder Vorstandsmitglieder des betreffenden Unternehmens."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Unternehmenskauf"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134171064", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85080351", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85080351"}], "authorized_access_point": "Management buyouts"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134171064", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12113560", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12113560s"}], "authorized_access_point": "Reprise d'entreprise par les salariés"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254458883", "source": "GND"}, {"type": "bf:Nbn", "value": "XX4911373", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX4911373"}], "authorized_access_point": "Compra de empresas por sus gestores"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4215208-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042152089", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4215208-2", "source": "GND"}], "variant_access_point": ["Management Buy Out", "MBO", "MBI", "Management Buyin", "Management Buy In"], "authorized_access_point": "Management Buyout"} 1 +2024-09-11 09:09:31.03401 2024-09-11 09:09:31.034016 92c57788-fcef-4329-b238-83aecf5038b8 {"md5": "5642abd1576a9f9b65ade96dc1a8d227", "pid": "042150876", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kapuzineraffenartige"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333261160", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16716962", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16716962w"}], "authorized_access_point": "Atèle noir"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4215087-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042150876", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4215087-5", "source": "GND"}], "variant_access_point": ["Ateles paniscus", "Koata"], "authorized_access_point": "Schwarzer Klammeraffe"} 1 +2024-09-11 09:09:31.089957 2024-09-11 09:09:31.089961 74d966fe-a28c-45e2-95d3-8593ae830bcc {"md5": "d8b2aeb0426fad718f9d5297858f471c", "pid": "042140048", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Film"}], "related": [{"authorized_access_point": "Kinderfilm"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133626386", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11936861", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11936861b"}], "authorized_access_point": "Films pour la jeunesse"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125434165X", "source": "GND"}, {"type": "bf:Nbn", "value": "15718", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/15718"}], "authorized_access_point": "Film per ragazzi"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970561717", "source": "GND"}, {"type": "bf:Nbn", "value": "10043579", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10043579"}], "authorized_access_point": "Jugendfilm"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4214004-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042140048", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4214004-3", "source": "GND"}], "variant_access_point": ["Jugendfilme"], "authorized_access_point": "Jugendfilm"} 1 +2024-09-11 09:09:31.255732 2024-09-11 09:09:31.255736 78b1967e-0aec-460a-adfa-4e82dfebdca0 {"md5": "3d149de018874b50cef10bc46248ea15", "pid": "042108152", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Polymorphismus"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133881483", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85038052", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85038052"}], "authorized_access_point": "Dimorphism (Plants)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133881483", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13617434", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13617434x"}], "authorized_access_point": "Dimorphisme chez les plantes"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4210815-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042108152", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4210815-9", "source": "GND"}], "authorized_access_point": "Dimorphismus"} 1 +2024-09-11 09:09:31.313674 2024-09-11 09:09:31.313677 dcb2cd82-b22b-4b18-a174-650ddf0029ae {"md5": "ab46f9d9bf71eadd47b7a9456e52ad37", "pid": "042104068", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Teig"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134799179", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15118262", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb151182628"}], "authorized_access_point": "Cuisine (pâte feuilletée)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134799160", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15118244", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15118244b"}], "authorized_access_point": "Pâte feuilletée"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4210406-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042104068", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4210406-3", "source": "GND"}], "authorized_access_point": "Blätterteig"} 1 +2024-09-11 09:09:31.370057 2024-09-11 09:09:31.37006 cc0190d0-2626-4070-bd89-73c80608101a {"md5": "0cfbdf4aaae2322bcd339e4724507d01", "pid": "042098386", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schadstoffbelastung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134310439", "source": "GND"}, {"type": "bf:Nbn", "value": "sh00002519", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00002519"}], "authorized_access_point": "Effect of ozone on"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134310439", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12397591", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb123975911"}], "authorized_access_point": "Effets de l'ozone"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1065910479", "source": "GND"}, {"type": "bf:Nbn", "value": "19482-3", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/19482-3"}], "authorized_access_point": "Ozonbelastung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4209838-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042098386", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4209838-5", "source": "GND"}], "variant_access_point": ["Ozon"], "authorized_access_point": "Ozonbelastung"} 1 +2024-09-11 09:09:31.423976 2024-09-11 09:09:31.42398 12d8f9af-0ca5-483f-8e5c-2df9762eae2f {"md5": "63b2f9b69791b96981345dada30f6f24", "pid": "042092175", "note": [{"label": ["Benutzt für d. Produkt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134452365", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85138931", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85138931"}], "authorized_access_point": "Turning (Lathe work)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134452365", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF14597781", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb14597781w"}], "authorized_access_point": "Tournage sur bois"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4209217-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042092175", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4209217-6", "source": "GND"}], "authorized_access_point": "Drechslerarbeit"} 1 +2024-09-11 09:09:31.479816 2024-09-11 09:09:31.479819 ba812dc8-9b46-4a0d-af30-b0a087cf8986 {"md5": "1d9944ee1b80ddba55d119e754497e0c", "pid": "042086280", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gedruckte Schaltung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134727879", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85106738", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85106738"}], "authorized_access_point": "Printed circuits"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134727879", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11936916", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11936916s"}], "authorized_access_point": "Circuits imprimés"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4208628-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042086280", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4208628-0", "source": "GND"}], "variant_access_point": ["Mehrlagenleiterplatte", "Multilayer (Mehrschichtleiterplatte)", "Vielschichtleiterplatte"], "authorized_access_point": "Mehrschichtleiterplatte"} 1 +2024-09-11 09:09:35.539502 2024-09-11 09:09:35.539506 27faa1a5-72a6-45ac-b454-695dce9c5f92 {"md5": "8051e1c9eb2439527bf20b0baf595690", "pid": "041784839", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133733719", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85113776", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85113776"}], "authorized_access_point": "Red algae"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4178483-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041784839", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4178483-2", "source": "GND"}], "variant_access_point": ["Rottange", "Rhodophyceae", "Rhodophyzeen", "Rhodophyta", "Agarophyten", "Rhodophycophyta"], "authorized_access_point": "Rotalgen"} 1 +2024-09-11 09:09:31.540871 2024-09-11 09:09:31.540876 6f8b72ce-a461-436e-98b5-5984e47bd044 {"md5": "6689f7e49b67ee8b8ff6fcc67c84047a", "pid": "04208394X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Extension (Medizin)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134234295", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12255417", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12255417v"}], "authorized_access_point": "Traction (orthopédie)"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241625662", "source": "GND"}, {"type": "bf:Nbn", "value": "D014143", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D014143"}], "authorized_access_point": "Traction"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4208394-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04208394X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4208394-1", "source": "GND"}], "variant_access_point": ["Zug (Medizin)"], "authorized_access_point": "Traktion (Medizin)"} 1 +2024-09-11 09:09:31.625475 2024-09-11 09:09:31.62548 b83a0a07-eeab-429c-8cb1-bf005abe0266 {"md5": "a5ea175434206a37e3d1d6f562f7759a", "pid": "042066107", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Genauigkeit"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4206610-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042066107", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4206610-4", "source": "GND"}], "authorized_access_point": "Positioniergenauigkeit"} 1 +2024-09-11 09:09:31.710841 2024-09-11 09:09:31.710847 a00b1e82-b07c-4cbc-8030-0d297ea81111 {"md5": "509f4f5ae979a0fad8adec1996098942", "pid": "042056349", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Artist"}], "related": [{"authorized_access_point": "Seiltanz"}, {"authorized_access_point": "Seiltänzerin"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333938861", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85001286", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85001286"}], "authorized_access_point": "Aerialists"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333938861", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12651407", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb126514078"}], "authorized_access_point": "Funambules"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4205634-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042056349", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4205634-2", "source": "GND"}], "variant_access_point": ["Hochseilartist"], "authorized_access_point": "Seiltänzer"} 1 +2024-09-11 09:09:31.770906 2024-09-11 09:09:31.770909 71319113-4c64-4e23-b767-06e6352a51ef {"md5": "6a316ec57d78ef7cbb8590233fc16c16", "pid": "042017793", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4201779-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042017793", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4201779-8", "source": "GND"}], "authorized_access_point": "Markierung (Chemie)"} 1 +2024-09-11 09:09:31.824094 2024-09-11 09:09:31.824097 3692f759-9abb-4fb1-8981-36fcc3963a49 {"md5": "50264b443c946033242a7066017a1f60", "pid": "042017246", "note": [{"label": ["Verknüpfe mit Anwendungsgebiet; z.B. Seeschiff"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bewachung"}], "related": [{"authorized_access_point": "Wächter"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4201724-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042017246", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4201724-5", "source": "GND"}], "variant_access_point": ["Wache"], "authorized_access_point": "Wachdienst"} 1 +2024-09-11 09:09:31.880431 2024-09-11 09:09:31.880434 19587508-9d8c-4dcf-9d1a-feecf6f347ee {"md5": "1b5e5c3f5afeb57941f5a78a8dd8814f", "pid": "042003458", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Grafiker"}], "related": [{"authorized_access_point": "Zeichnerin"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133636462", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11944016", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119440161"}], "authorized_access_point": "Dessinateurs"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4200345-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042003458", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4200345-3", "source": "GND"}], "authorized_access_point": "Zeichner"} 1 +2024-09-11 09:09:31.938198 2024-09-11 09:09:31.938202 fe7b5465-fe0f-4dea-b6e9-168e1eb63359 {"md5": "0a1cb6f8f845028da5be01d82d695dde", "pid": "041995724", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Polizeibeamter"}], "related": [{"authorized_access_point": "Verdeckte Ermittlerin"}, {"authorized_access_point": "V-Mann"}, {"authorized_access_point": "Verdeckte Ermittlung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4199572-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041995724", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4199572-7", "source": "GND"}], "variant_access_point": ["Under-Cover-Agent", "Undercover investigator"], "authorized_access_point": "Verdeckter Ermittler"} 1 +2024-09-11 09:09:31.992225 2024-09-11 09:09:31.99223 1691545b-3d8a-4177-9e31-6ae433b77608 {"md5": "c548330c8aa0d19ca08ef5dabdd8e3db", "pid": "041992555", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134320841", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12426400", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb124264003"}], "authorized_access_point": "Résistance aux collisions"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4199255-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041992555", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4199255-6", "source": "GND"}], "variant_access_point": ["Kollisionsvermeidung (Technik)"], "authorized_access_point": "Kollisionsschutz"} 1 +2024-09-11 09:09:32.104528 2024-09-11 09:09:32.104532 6041e6a5-3a0c-4114-bd5e-a13db1164df9 {"md5": "08e21c3999f50b5fe2f7a1cbd39eaa2a", "pid": "041981804", "note": [{"label": ["Gattung d. Familie Kiemenschlitzaale (Synbranchidae)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333488068", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85131603", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85131603"}], "authorized_access_point": "Synbranchus"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333488068", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17758460", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb177584608"}], "authorized_access_point": "Synbranchus"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4198180-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041981804", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4198180-7", "source": "GND"}], "authorized_access_point": "Synbranchus"} 1 +2024-09-11 09:09:32.164739 2024-09-11 09:09:32.164744 8a683b7e-586b-41aa-a94e-4b985edf6782 {"md5": "cc09ea952483bdb781ca819d19b65e3d", "pid": "041977009", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kraftstoff"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133693911", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85037815", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85037815"}], "authorized_access_point": "Diesel fuels"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133693911", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11981884", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11981884t"}], "authorized_access_point": "Carburants diesel"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254376836", "source": "GND"}, {"type": "bf:Nbn", "value": "43453", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/43453"}], "authorized_access_point": "Gasolio"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966722108", "source": "GND"}, {"type": "bf:Nbn", "value": "14214-4", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/14214-4"}], "authorized_access_point": "Dieselkraftstoff"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4197700-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041977009", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4197700-2", "source": "GND"}], "variant_access_point": ["Dieselöl"], "authorized_access_point": "Dieselkraftstoff"} 1 +2024-09-11 09:09:32.226378 2024-09-11 09:09:32.226383 c92ad5c9-f8a7-445b-ac44-d5f54121759a {"md5": "7990d3983ad83a6fbcbac810fe20008f", "pid": "041975278", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134045018", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11977041", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11977041k"}], "authorized_access_point": "Vocalisation (phonétique)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4197527-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041975278", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4197527-3", "source": "GND"}], "variant_access_point": ["Vokalisation"], "authorized_access_point": "Vokalisierung"} 1 +2024-09-11 09:09:32.292645 2024-09-11 09:09:32.292649 33bfb109-a127-463c-91bd-d369be347f96 {"md5": "d47fbabd6b16533394ddb14e59b29db7", "pid": "041954378", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133681328", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11976149", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11976149c"}], "authorized_access_point": "Hylobatidés"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4195437-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041954378", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4195437-3", "source": "GND"}], "variant_access_point": ["Hylobatidae", "Langarmaffen"], "authorized_access_point": "Gibbons (Familie)"} 1 +2024-09-11 09:09:32.359696 2024-09-11 09:09:32.3597 47d108d8-c70d-4dfb-9252-7b40bd2eb9ac {"md5": "a38230721d31fd824152f647ade395a5", "pid": "041954327", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schifffahrt"}, {"authorized_access_point": "Personenverkehr"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966898923", "source": "GND"}, {"type": "bf:Nbn", "value": "18589-4", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/18589-4"}], "authorized_access_point": "Passagierschifffahrt"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4195432-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041954327", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4195432-4", "source": "GND"}], "variant_access_point": ["Passagierschifffahrt", "Personenschifffahrt", "Passagierschifffahrt", "Personenschifffahrt"], "authorized_access_point": "Fahrgastschifffahrt"} 1 +2024-09-11 09:09:32.420112 2024-09-11 09:09:32.420116 2e741b5a-9acb-4f5b-8e5d-bfd7280eb2be {"md5": "7096c6487a67a632c505372405b226f6", "pid": "041943236", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Emissionsverringerung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4194323-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041943236", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4194323-5", "source": "GND"}], "variant_access_point": ["Schadstoff", "Schadstoffminderung"], "authorized_access_point": "Schadstoffverringerung"} 1 +2024-09-11 09:09:35.598095 2024-09-11 09:09:35.598099 32adfdc3-5e10-4ccb-8b37-36090600b726 {"md5": "2fbb2815f779e7f1bbb37f57177bd884", "pid": "041781635", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133810713", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12484134", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12484134b"}], "authorized_access_point": "Taenia saginata"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4178163-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041781635", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4178163-6", "source": "GND"}], "variant_access_point": ["Taeniarhynchus saginatus", "Taenia saginata"], "authorized_access_point": "Rinderbandwurm"} 1 +2024-09-11 09:09:32.47091 2024-09-11 09:09:32.470914 7450ff5e-2139-4393-8acd-79326a3f7240 {"md5": "428299a2c2c3cbfa4601267818855954", "pid": "041928547", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134195974", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85105031", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85105031"}], "authorized_access_point": "Porpoises"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134195974", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12163944", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12163944p"}], "authorized_access_point": "Marsouins"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4192854-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041928547", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4192854-4", "source": "GND"}], "variant_access_point": ["Phocoenidae", "Phocaenidae"], "authorized_access_point": "Schweinswale (Familie)"} 1 +2024-09-11 09:09:32.528436 2024-09-11 09:09:32.52844 c664b54f-a2b8-4548-9e59-7899d2d82016 {"md5": "43b616b42bcfe16611de8b4dea56cf70", "pid": "041928326", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Neues Zeitalter"}, {"authorized_access_point": "New Age"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4192832-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041928326", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4192832-5", "source": "GND"}], "variant_access_point": ["Aquariuszeitalter", "Wassermann-Zeitalter", "Age of aquarius"], "authorized_access_point": "Wassermannzeitalter"} 1 +2024-09-11 09:09:32.593724 2024-09-11 09:09:32.593729 a8c41e6a-a873-4865-9910-b47629f9eef3 {"md5": "efd278b13e0c05b3c6f0ffe681cdde2b", "pid": "041924878", "note": [{"label": ["Nicht synonym mit Multilineare Algebra"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113389495X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85018808", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85018808"}], "authorized_access_point": "Calculus of tensors"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113389495X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11931685", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11931685k"}], "authorized_access_point": "Calcul tensoriel"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254362584", "source": "GND"}, {"type": "bf:Nbn", "value": "31130", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/31130"}], "authorized_access_point": "Calcolo tensoriale"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254494138", "source": "GND"}, {"type": "bf:Nbn", "value": "XX525919", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX525919"}], "authorized_access_point": "Cálculo tensorial"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4192487-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041924878", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4192487-3", "source": "GND"}], "variant_access_point": ["Tensorkalkül"], "authorized_access_point": "Tensorrechnung"} 1 +2024-09-11 09:09:32.65782 2024-09-11 09:09:32.657824 bc988581-013b-4eba-bbd3-2dc008c7feff {"md5": "e27bebc2b2d603de573256ed120b75c8", "pid": "041918754", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Computerarchitektur"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133728634", "source": "GND"}, {"type": "bf:Nbn", "value": "sh88006799", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh88006799"}], "authorized_access_point": "Reduced instruction set computers"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134337671", "source": "GND"}, {"type": "bf:Nbn", "value": "sh90005948", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh90005948"}], "authorized_access_point": "RISC microprocessors"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133728634", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12151658", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12151658v"}], "authorized_access_point": "Ordinateurs à jeu d'instructions réduit"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134337671", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12473275", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12473275r"}], "authorized_access_point": "RISC (microprocesseurs)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4191875-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041918754", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4191875-7", "source": "GND"}], "variant_access_point": ["Reduced instruction set computer", "Rechner mit reduziertem Befehlsvorrat"], "authorized_access_point": "RISC"} 1 +2024-09-11 09:09:32.713614 2024-09-11 09:09:32.713617 2b180ff2-97c2-435a-8238-ba1f1d78f078 {"md5": "f4113641978bff2e7669d411a016b4ab", "pid": "041913272", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Volkstanz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4191327-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041913272", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4191327-9", "source": "GND"}], "authorized_access_point": "Zwiefacher"} 1 +2024-09-11 09:09:32.769498 2024-09-11 09:09:32.769503 2aa69925-5946-4bf0-b486-6685e957c9d3 {"md5": "9664a4f567e039399d70f73366f432eb", "pid": "041911849", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4191184-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041911849", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4191184-2", "source": "GND"}], "variant_access_point": ["Zwangläufigkeit", "Zwangsläufige Bewegung"], "authorized_access_point": "Zwanglauf"} 1 +2024-09-11 09:09:32.824592 2024-09-11 09:09:32.824595 151e08b2-1055-43b9-9380-2e9e97391fd1 {"md5": "d81433481aa94190b40a8f7ed029af1f", "pid": "041911598", "note": [{"label": ["in der Regel als USW verwendet"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134038208", "source": "GND"}, {"type": "bf:Nbn", "value": "sh99004944", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99004944"}], "authorized_access_point": "Composition"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134038208", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11975822", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119758221"}], "authorized_access_point": "Composition"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4191159-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041911598", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4191159-3", "source": "GND"}], "authorized_access_point": "Zusammensetzung"} 1 +2024-09-11 09:09:36.469805 2024-09-11 09:09:36.469809 c0059f90-17ac-4c4d-b15a-d7ff8328b7ea {"md5": "2760667d8de9b071ca22708aa9264f2a", "pid": "04174604X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Akustik"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4174604-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04174604X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4174604-1", "source": "GND"}], "authorized_access_point": "Physikalische Akustik"} 1 +2024-09-11 09:09:32.882322 2024-09-11 09:09:32.882325 d2136bfb-a287-4222-900a-e4c0d75e519c {"md5": "7622da94b0b520bb723f43d33a248546", "pid": "041911199", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Vögel"}], "related": [{"authorized_access_point": "Vogelzug"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134219709", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2009008921", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2009008921"}], "authorized_access_point": "Migratory birds"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134219709", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12225354", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb122253545"}], "authorized_access_point": "Oiseaux migrateurs"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1312527749", "source": "GND"}, {"type": "bf:Nbn", "value": "38120", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/38120"}], "authorized_access_point": "Uccelli migratori"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4191119-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041911199", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4191119-2", "source": "GND"}], "variant_access_point": ["Zugvogel"], "authorized_access_point": "Zugvögel"} 1 +2024-09-11 09:09:32.940983 2024-09-11 09:09:32.940987 454420f9-4c20-49b0-9833-e57f2da3ccb3 {"md5": "50832a6f7f7034ee6fdb3bd7da9b0f72", "pid": "041910842", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Zünder"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134040016", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11976165", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11976165m"}], "authorized_access_point": "Allumage"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4191084-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041910842", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4191084-9", "source": "GND"}], "authorized_access_point": "Zündung"} 1 +2024-09-11 09:09:33.001247 2024-09-11 09:09:33.001251 57dd2d58-838f-4e6a-9aac-b77865e52587 {"md5": "e7463b0f11c9bd43f803856cd2a4e55c", "pid": "041907078", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Architektur"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134387849", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13171768", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb131717680"}], "authorized_access_point": "Constructions à plan centré"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4190707-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041907078", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4190707-3", "source": "GND"}], "authorized_access_point": "Zentralbau"} 1 +2024-09-11 09:09:33.061104 2024-09-11 09:09:33.061108 6c0c76f7-401c-48fa-91e0-b7f4c36a0e97 {"md5": "a496fb7b9a838bcb78e5e26f26382b50", "pid": "041902955", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Wünschelrute"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133175478X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85039245", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85039245"}], "authorized_access_point": "Dowsers"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133175478X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13571198", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13571198z"}], "authorized_access_point": "Sourciers"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4190295-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041902955", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4190295-6", "source": "GND"}], "variant_access_point": ["Rutengänger", "Wünschelrute"], "authorized_access_point": "Wünschelrutengänger"} 1 +2024-09-11 09:09:33.113649 2024-09-11 09:09:33.113652 214b6a13-0e36-4757-8fd7-e46feb5e6b19 {"md5": "2671f8ea368b040bfd14e2a1d3495ae9", "pid": "04190186X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Miete"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4190186-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04190186X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4190186-1", "source": "GND"}], "variant_access_point": ["Wohnung", "Wohnraummiete"], "authorized_access_point": "Wohnungsmiete"} 1 +2024-09-11 09:09:33.170932 2024-09-11 09:09:33.170937 207e3cb9-0a9a-4997-8124-9b942ef4cf23 {"md5": "18f836bccec9f2abd919dff2c9d65cc6", "pid": "041900804", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Verwaltung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4190080-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041900804", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4190080-7", "source": "GND"}], "authorized_access_point": "Wirtschaftsverwaltung"} 1 +2024-09-11 09:09:33.223058 2024-09-11 09:09:33.223061 4f06e977-0806-4350-9d3a-13a8a4cd56af {"md5": "18d5a65a7e1dc19b14ab2c6d2ddc07e0", "pid": "041899849", "note": [{"label": ["W. umfasst den Begriff Wintersport (im Sinne des Breitensports) u. könnte als Wintersport im weiteren Sinne bezeichnet werden"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sporttourismus"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332366708", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF18097333", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb18097333m"}], "authorized_access_point": "Tourisme hivernal"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4189984-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041899849", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4189984-2", "source": "GND"}], "variant_access_point": ["Wintersport"], "authorized_access_point": "Wintertourismus"} 1 +2024-09-11 09:09:33.279257 2024-09-11 09:09:33.279262 24bd4c7a-fa5f-4421-888f-379f41c3bff9 {"md5": "4d71655d2cbc096e015b5a4c307761f4", "pid": "041898273", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Eintritt (Raumfahrt)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4189827-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041898273", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4189827-8", "source": "GND"}], "variant_access_point": ["Atmosphärenwiedereintritt", "Reentry"], "authorized_access_point": "Wiedereintritt"} 1 +2024-09-11 09:09:33.339577 2024-09-11 09:09:33.339579 a251cc86-b507-48a5-81d8-edff99a15595 {"md5": "dcf9d1b72bd5b4678eaed298d693b393", "pid": "041896807", "note": [{"label": ["Vollständiges Verzeichnis des Werks (des Lebenswerks oder eines Teils) von Künstlern (RDA AH-007).", "Verwendet für bildende und darstellende Künstler (Interpreten, Regisseure, Schauspieler) sowie für Komponisten und Architekten bzw. Architekturbüros. Sowohl für einzelne Personen wie für Personengruppen. Bei anderen Werkverzeichnissen verwende Bibliografie (RDA AH-007)."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134151365", "source": "GND"}, {"type": "bf:Nbn", "value": "sh99001388", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99001388"}], "authorized_access_point": "Catalogues raisonnés"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134151365", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12078007", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb120780077"}], "authorized_access_point": "Catalogues raisonnés"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4189680-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041896807", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4189680-4", "source": "GND"}], "variant_access_point": ["Werkkatalog", "Oeuvrekatalog", "Oeuvre-Verzeichnis", "Thematischer Katalog (Formschlagwort)", "Thematisches Verzeichnis (Formschlagwort)"], "authorized_access_point": "Werkverzeichnis"} 1 +2024-09-11 09:09:33.389814 2024-09-11 09:09:33.389817 83185fea-2bf1-4fc9-9a19-4270ce41150d {"md5": "4c60e4d43e745917efb4089105bb224c", "pid": "041891775", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133864058", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13535580", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb135355804"}], "authorized_access_point": "Bassins de jardins"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4189177-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041891775", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4189177-6", "source": "GND"}], "variant_access_point": ["Wasserbecken"], "authorized_access_point": "Bassin"} 1 +2024-09-11 09:09:33.445661 2024-09-11 09:09:33.44567 9952cd9a-cd40-46a7-88b0-9b795c6a494e {"md5": "ab74f91f894b1ca24c5d306f7fd04416", "pid": "041890787", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Grabmal"}], "related": [{"authorized_access_point": "Epitaph"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4189078-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041890787", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4189078-4", "source": "GND"}], "authorized_access_point": "Wandgrabmal"} 1 +2024-09-11 09:09:33.500297 2024-09-11 09:09:33.500303 44764e04-2a3d-4d11-9cda-f6209217004d {"md5": "503acd11ac9d2f02ad0be542811d68d7", "pid": "041889959", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Waldkrankheit"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)967030552", "source": "GND"}, {"type": "bf:Nbn", "value": "15779-0", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/15779-0"}], "authorized_access_point": "Waldschaden"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4188995-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041889959", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4188995-2", "source": "GND"}], "variant_access_point": ["Waldzerstörung (Waldschaden)", "Baumschaden (Waldschaden)", "Forstschaden", "Wald", "Waldschäden", "Forstschäden"], "authorized_access_point": "Waldschaden"} 1 +2024-09-11 09:09:33.560105 2024-09-11 09:09:33.560109 4f33fe29-4e9b-4520-9a42-67599eff554e {"md5": "cc97fffa1018e20aae17f0cf5e9d64d0", "pid": "041887913", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Drosseln"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133776590", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2009010378", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2009010378"}], "authorized_access_point": "Fieldfare"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133776590", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12338097", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12338097q"}], "authorized_access_point": "Grive litorne"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4188791-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041887913", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4188791-8", "source": "GND"}], "variant_access_point": ["Turdus pilaris", "Krammetsvogel", "Ziemer"], "authorized_access_point": "Wacholderdrossel"} 1 +2024-09-11 09:09:33.619353 2024-09-11 09:09:33.619357 93845cb3-35f4-4301-ba04-4c771a9fbb90 {"md5": "6da80320ccd561cb536f34bf5b9205c2", "pid": "041887786", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Genitalkrebs"}, {"authorized_access_point": "Vulvakrankheit"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134590385", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2010010521", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2010010521"}], "authorized_access_point": "Vulva - Cancer"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241627908", "source": "GND"}, {"type": "bf:Nbn", "value": "D014846", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D014846"}], "authorized_access_point": "Vulvar Neoplasms"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4188778-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041887786", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4188778-5", "source": "GND"}], "variant_access_point": ["Carcinoma vulvae", "Vulvakarzinom"], "authorized_access_point": "Vulvakrebs"} 1 +2024-09-11 09:09:33.677069 2024-09-11 09:09:33.677074 2bdc937b-f1b1-4940-9b4d-a7fee82292f4 {"md5": "330900056f706fc1f1fa1bfbe066a181", "pid": "041884612", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Vizekanzlerin"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4188461-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041884612", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4188461-9", "source": "GND"}], "authorized_access_point": "Vizekanzler"} 1 +2024-09-11 09:09:33.743279 2024-09-11 09:09:33.743282 c73c37ec-08dd-45f3-80e4-072eac87511d {"md5": "d7ca4e1e29df0fd112be3c57ae9f3861", "pid": "041882229", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bildaufzeichnung"}], "related": [{"authorized_access_point": "Videokassette"}, {"authorized_access_point": "Bildplatte"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1321561245", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11933779", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11933779d"}], "authorized_access_point": "Vidéo"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1321561245", "source": "GND"}, {"type": "bf:Nbn", "value": "sh92003035", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh92003035"}], "authorized_access_point": "Video recording"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4188222-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041882229", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4188222-2", "source": "GND"}], "variant_access_point": ["Audiovisuelle Aufzeichnung", "Audio-visuelle Aufzeichnung", "Videoaufnahme"], "authorized_access_point": "Videoaufzeichnung"} 1 +2024-09-11 09:09:33.804784 2024-09-11 09:09:33.804787 3c9abd6d-99c9-4c90-8c14-9936560a9650 {"md5": "b05734e7b9010ca1875d6132228af6d5", "pid": "041881745", "note": [{"label": ["auch ausserhalb des Rechts als Allgemeinbegriff verwendet"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970602014", "source": "GND"}, {"type": "bf:Nbn", "value": "10037167", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10037167"}], "authorized_access_point": "Verzicht"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4188174-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041881745", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4188174-6", "source": "GND"}], "variant_access_point": ["Rechtsverzicht", "Anspruchsverzicht"], "authorized_access_point": "Verzicht"} 1 +2024-09-11 09:09:33.858688 2024-09-11 09:09:33.858693 d973ee05-2b81-4fab-94af-dea0858aec05 {"md5": "6255bda70c6adb8aee2f0363cbc8a8f4", "pid": "041878515", "note": [{"label": ["Verknüpfe mit Anwendungsgebiet"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134566506", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12468269", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12468269t"}], "authorized_access_point": "Discours argumentatif"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4187851-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041878515", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4187851-6", "source": "GND"}], "variant_access_point": ["Verknüpfung"], "authorized_access_point": "Verkettung"} 1 +2024-09-11 09:09:33.928866 2024-09-11 09:09:33.92887 11e9c2c5-10a9-49d2-8a9a-8d855a262af4 {"md5": "b42e76a9cde46381596e7e73f36485a8", "pid": "041876938", "note": [{"label": ["SW Verfolgung wird bevorzugt benutzt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Verfolgung"}, {"authorized_access_point": "Weibliche Verfolgte"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4187693-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041876938", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4187693-3", "source": "GND"}], "authorized_access_point": "Verfolgter"} 1 +2024-09-11 09:09:33.981952 2024-09-11 09:09:33.981955 fa1c225e-0eb9-44bb-9524-0c64319e8051 {"md5": "d0e0b92c803203c39b3193606f3cea1e", "pid": "041874919", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Schiebersteuerung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4187491-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041874919", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4187491-2", "source": "GND"}], "variant_access_point": ["Ventiltrieb"], "authorized_access_point": "Ventilsteuerung"} 1 +2024-09-11 09:09:34.038783 2024-09-11 09:09:34.038786 834da4d6-c9ad-408f-a778-abc7cd144356 {"md5": "9a9b3af18fc20c5426cf8f14195c6ff4", "pid": "041873270", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Vakuumfluktuation"}, {"authorized_access_point": "Quantenelektrodynamik"}], "related": [{"authorized_access_point": "Casimir-Effekt"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133836054", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85141738", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85141738"}], "authorized_access_point": "Vacuum polarization"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133836054", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12573071", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb125730710"}], "authorized_access_point": "Polarisation du vide"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4187327-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041873270", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4187327-0", "source": "GND"}], "variant_access_point": ["Polarisation (Vakuum)"], "authorized_access_point": "Vakuumpolarisation"} 1 +2024-09-11 09:09:34.097495 2024-09-11 09:09:34.097499 e8a4f1a8-594a-4fa6-809d-a2fcdd2f58ce {"md5": "ca9356e0539d0d404eb3ec7df0d3a5be", "pid": "041871286", "note": [{"label": ["Verknüpfe mit Anwendungsgebiet"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4187128-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041871286", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4187128-5", "source": "GND"}], "variant_access_point": ["Intoleranz (Medizin)", "Unverträglichkeitsreaktion"], "authorized_access_point": "Unverträglichkeit"} 1 +2024-09-11 09:09:38.14629 2024-09-11 09:09:38.146293 b6f317ea-6515-4298-baaf-ea1bfadbabf9 {"md5": "2e1e6ad760feff75c93afabe2ecafe93", "pid": "041679792", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Livl%C3%A4ndischer_Krieg&oldid=213445252"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Krieg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4167979-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041679792", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4167979-9", "source": "GND"}], "variant_access_point": ["Livonskaja vojna"], "authorized_access_point": "Livländischer Krieg"} 1 +2024-09-11 09:09:34.15201 2024-09-11 09:09:34.152018 4750f8eb-ee42-406b-8f1c-0e9b3787f399 {"md5": "9f46c3040b47dac35dd8ff09a1c394ed", "pid": "041871189", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schweißen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133880754", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85139630", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85139630"}], "authorized_access_point": "Underwater welding and cutting"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133880754", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13615612", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13615612p"}], "authorized_access_point": "Oxycoupage et soudage sous l'eau"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254498338", "source": "GND"}, {"type": "bf:Nbn", "value": "XX538871", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX538871"}], "authorized_access_point": "Soldadura subacuática"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4187118-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041871189", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4187118-2", "source": "GND"}], "authorized_access_point": "Unterwasserschweißen"} 1 +2024-09-11 09:09:34.215296 2024-09-11 09:09:34.2153 eda24e90-d77c-4cfa-a7ed-63271dc1f708 {"md5": "3577a5aa16977ba9604010c803c3c0dc", "pid": "041867785", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Umrichter&oldid=245571003"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Stromrichter"}], "related": [{"authorized_access_point": "Umformer"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133656927", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85041752", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85041752"}], "authorized_access_point": "Electric inverters"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133656927", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11959005", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11959005s"}], "authorized_access_point": "Onduleurs (électricité)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4186778-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041867785", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4186778-6", "source": "GND"}], "authorized_access_point": "Umrichter"} 1 +2024-09-11 09:09:34.269918 2024-09-11 09:09:34.269923 edadfeaa-b674-457a-b63b-d5537d0322df {"md5": "6b6ef600efcf3d18f98895da84502333", "pid": "041863488", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Pute&oldid=231902473"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fasanenartige"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133670962", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85138859", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85138859"}], "authorized_access_point": "Turkeys"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133670962", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11967907", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11967907p"}], "authorized_access_point": "Dindon domestique"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125626606X", "source": "GND"}, {"type": "bf:Nbn", "value": "8016", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_8016"}], "authorized_access_point": "turkeys"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4186348-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041863488", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4186348-3", "source": "GND"}], "variant_access_point": ["Meleagris gallopavo", "Pute", "Haustruthuhn"], "authorized_access_point": "Truthuhn"} 1 +2024-09-11 09:09:34.326519 2024-09-11 09:09:34.326523 5c9d6688-bc5a-4f52-a662-5883fff93721 {"md5": "db860da49c35a9dfe082a1ab281c6f6e", "pid": "04186347X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Truthuhn"}], "related": [{"authorized_access_point": "Truthuhnrasse"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134370725", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85032143", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85032143"}], "authorized_access_point": "Cooking (Turkey)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134790775", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85138859", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85138859"}], "authorized_access_point": "Turkeys"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134370725", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12567282", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12567282z"}], "authorized_access_point": "Cuisine (dinde. - viande)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134790775", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11967907", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11967907p"}], "authorized_access_point": "Dindon domestique"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1299911064", "source": "GND"}, {"type": "bf:Nbn", "value": "XX533616", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX533616"}], "authorized_access_point": "Pavos"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256266051", "source": "GND"}, {"type": "bf:Nbn", "value": "8016", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_8016"}], "authorized_access_point": "turkeys"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4186347-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04186347X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4186347-1", "source": "GND"}], "variant_access_point": ["Puter"], "authorized_access_point": "Truthahn"} 1 +2024-09-11 09:09:34.385822 2024-09-11 09:09:34.385828 0394562e-e983-4c47-b9cf-b882dd891b78 {"md5": "003dafac7e4284f2fbb678c92883f81d", "pid": "041862473", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Denkmal"}, {"authorized_access_point": "Bogen (Architektur)"}, {"authorized_access_point": "Torbau"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113368419X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85006535", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85006535"}], "authorized_access_point": "Triumphal arches"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113368419X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11977585", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11977585k"}], "authorized_access_point": "Arcs de triomphe"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254341692", "source": "GND"}, {"type": "bf:Nbn", "value": "15752", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/15752"}], "authorized_access_point": "Archi di trionfo"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4186247-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041862473", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4186247-8", "source": "GND"}], "variant_access_point": ["Ehrenbogen"], "authorized_access_point": "Triumphbogen"} 1 +2024-09-11 09:09:34.443851 2024-09-11 09:09:34.443856 9651b1a9-2d22-4d54-8dc3-7a12dd13a0f8 {"md5": "ccb8904d236b665a7ec98e1b48923441", "pid": "041862465", "note": [{"label": ["Römisches Reich wird nicht als pleonastisch behandelt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134137931", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85137947", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85137947"}], "authorized_access_point": "Triumph"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134137931", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12049670", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb120496708"}], "authorized_access_point": "Triomphe"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4186246-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041862465", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4186246-6", "source": "GND"}], "authorized_access_point": "Triumph"} 1 +2024-09-11 09:09:34.503309 2024-09-11 09:09:34.503313 275c8507-c9e3-4a8c-9d59-98ba72e3bfbe {"md5": "610d82774e4e0d3fe71e27d9bcf166d8", "pid": "041841387", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Elektrisches Bauelement"}], "related": [{"authorized_access_point": "Supraleitung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133689086", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85130585", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85130585"}], "authorized_access_point": "Superconductors"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133689086", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11979263", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11979263x"}], "authorized_access_point": "Supraconducteurs"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4184138-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041841387", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4184138-4", "source": "GND"}], "variant_access_point": ["Superconducting devices", "Supraleitende Vorrichtung"], "authorized_access_point": "Supraleitendes Bauelement"} 1 +2024-09-11 09:09:34.561242 2024-09-11 09:09:34.561247 2a3a0754-e0a5-4346-84b2-2d40db352863 {"md5": "985c3bc19f8826b94f00aa66a0d857f8", "pid": "041835662", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113381252X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85128502", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85128502"}], "authorized_access_point": "Strangling"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113381252X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12491952", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12491952z"}], "authorized_access_point": "Strangulation"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4183566-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041835662", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4183566-9", "source": "GND"}], "authorized_access_point": "Strangulation"} 1 +2024-09-11 09:09:34.621625 2024-09-11 09:09:34.621628 a95eb3d1-9a6f-447b-a5d1-167bc2059c70 {"md5": "c5100b7b5b2c0bc1f245316c6d4564f8", "pid": "041833333", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gesellschafter"}], "related": [{"authorized_access_point": "Stille Gesellschaft"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134081774", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85122474", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85122474"}], "authorized_access_point": "Silent partners"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134081774", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11983551", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11983551h"}], "authorized_access_point": "Bailleurs de fonds"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4183333-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041833333", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4183333-8", "source": "GND"}], "variant_access_point": ["Stiller Teilhaber"], "authorized_access_point": "Stiller Gesellschafter"} 1 +2024-09-11 09:09:34.698194 2024-09-11 09:09:34.698199 bc958794-b22d-457e-934f-39984347ac39 {"md5": "18ed15a4b83e29cc5a93d5f7a80850ff", "pid": "041830989", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134237480", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85025933", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85025933"}], "authorized_access_point": "Ciconiiformes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333255802", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12293127", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12293127p"}], "authorized_access_point": "Échassiers"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134237480", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12259528", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12259528r"}], "authorized_access_point": "Ciconiiformes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254372318", "source": "GND"}, {"type": "bf:Nbn", "value": "38774", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/38774"}], "authorized_access_point": "Trampolieri"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254316930", "source": "GND"}, {"type": "bf:Nbn", "value": "525", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/525"}], "authorized_access_point": "Ciconiformi"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254490582", "source": "GND"}, {"type": "bf:Nbn", "value": "XX542045", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX542045"}], "authorized_access_point": "Ciconiformes"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4183098-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041830989", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4183098-2", "source": "GND"}], "variant_access_point": ["Schreitvögel", "Gressores", "Ciconiiformes"], "authorized_access_point": "Stelzvögel"} 1 +2024-09-11 09:09:34.756104 2024-09-11 09:09:34.756107 19384e32-7514-48bf-abe3-4370f1f6d6c7 {"md5": "b93f254dbf5cb51499ee1ef938c170ba", "pid": "041823788", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bogen (Architektur)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334556091", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2021001467", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2021001467"}], "authorized_access_point": "Ogee arches"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4182378-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041823788", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4182378-3", "source": "GND"}], "authorized_access_point": "Spitzbogen"} 1 +2024-09-11 09:09:39.175641 2024-09-11 09:09:39.175645 96fe9374-e81d-4385-a1f7-c4006d65c2a2 {"md5": "075c42dbd43f198a857f953c4a297555", "pid": "041616375", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tragwerk"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4161637-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041616375", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4161637-6", "source": "GND"}], "variant_access_point": ["Starres Tragwerk"], "authorized_access_point": "Inelastisches Tragwerk"} 1 +2024-09-11 09:09:34.813972 2024-09-11 09:09:34.813976 0808cb4c-4233-4034-8a26-d1bfdd3559f4 {"md5": "8ed818963de2a28e9e95d5584cefdb4a", "pid": "04182265X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mechanisches Musikinstrument"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133632823", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85088897", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85088897"}], "authorized_access_point": "Music box"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133632823", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11940905", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11940905w"}], "authorized_access_point": "Boîtes à musique"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4182265-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04182265X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4182265-1", "source": "GND"}], "variant_access_point": ["Musikdose"], "authorized_access_point": "Spieldose"} 1 +2024-09-11 09:09:34.876032 2024-09-11 09:09:34.876036 b0218733-eafc-451a-bcf3-66024cd88957 {"md5": "45596d3b2ac7e9c1d49380b3540436db", "pid": "041809858", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Galagos (Familie)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133674267", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85076193", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85076193"}], "authorized_access_point": "Northern lesser bushbaby"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133674267", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12653203", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12653203t"}], "authorized_access_point": "Galago du Sénégal"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4180985-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041809858", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4180985-3", "source": "GND"}], "variant_access_point": ["Moholi", "Galago senegalensis", "Senegal-Bushbaby"], "authorized_access_point": "Senegalgalago"} 1 +2024-09-11 09:09:34.927927 2024-09-11 09:09:34.927931 dddd929f-2c76-410e-853c-2ab6b310adfa {"md5": "45f62e4b059af8a2d4a8aaf167652962", "pid": "041809165", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Doldengewächse"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113469086X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2010012605", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2010012605"}], "authorized_access_point": "Cooking (Celery)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133860575", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85021621", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85021621"}], "authorized_access_point": "Celery"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133860575", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13511810", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13511810d"}], "authorized_access_point": "Céleri"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113469086X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13511811", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13511811r"}], "authorized_access_point": "Cuisine (céleris)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254397086", "source": "GND"}, {"type": "bf:Nbn", "value": "68941", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/68941"}], "authorized_access_point": "Sedani"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254486011", "source": "GND"}, {"type": "bf:Nbn", "value": "XX529731", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX529731"}], "authorized_access_point": "Apio"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256257079", "source": "GND"}, {"type": "bf:Nbn", "value": "535", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_535"}], "authorized_access_point": "Apium graveolens"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256257087", "source": "GND"}, {"type": "bf:Nbn", "value": "1412", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_1412"}], "authorized_access_point": "celery"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4180916-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041809165", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4180916-6", "source": "GND"}], "variant_access_point": ["Apium graveolens"], "authorized_access_point": "Sellerie"} 1 +2024-09-11 09:09:34.983759 2024-09-11 09:09:34.983764 c05a2e6b-4abf-4969-b84d-48f2888d9919 {"md5": "e4c21e8550367cb1ced82c38f5ab7586", "pid": "041808525", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Studium"}], "related": [{"authorized_access_point": "E-Learning"}, {"authorized_access_point": "Selbstunterricht"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134729782", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13324470", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13324470r"}], "authorized_access_point": "Autoformation"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970589115", "source": "GND"}, {"type": "bf:Nbn", "value": "10057750", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10057750"}], "authorized_access_point": "Selbststudium"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4180852-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041808525", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4180852-6", "source": "GND"}], "authorized_access_point": "Selbststudium"} 1 +2024-09-11 09:09:35.068008 2024-09-11 09:09:35.068013 edcb8556-3e18-404d-a4f6-e7c9244ae9ad {"md5": "6ffbf31c1349bda28c303239ba24a455", "pid": "041807677", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tektonik"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334019568", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17038712", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17038712m"}], "authorized_access_point": "Sismotectonique"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4180767-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041807677", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4180767-4", "source": "GND"}], "authorized_access_point": "Seismotektonik"} 1 +2024-09-11 09:09:35.135418 2024-09-11 09:09:35.135422 70070cf9-d6ad-42cc-98bc-5d55e38466f5 {"md5": "3d4cf874ece55f8489044f178c0a512a", "pid": "041805348", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fechten"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134267819", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85131357", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85131357"}], "authorized_access_point": "Swordplay"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134267819", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12308292", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12308292x"}], "authorized_access_point": "Épée (sport)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4180534-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041805348", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4180534-3", "source": "GND"}], "authorized_access_point": "Schwertfechten"} 1 +2024-09-11 09:09:35.189519 2024-09-11 09:09:35.189523 2cc6075d-6913-443d-bfa1-2d3e8dbd216e {"md5": "c4b10dbdf5afa8ae3fc90cd644e98772", "pid": "04180466X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133930867", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85146007", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85146007"}], "authorized_access_point": "Welded joints - Testing"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133930867", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11933298", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119332989"}], "authorized_access_point": "Soudures - Essais"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4180466-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04180466X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4180466-1", "source": "GND"}], "variant_access_point": ["Schweißnaht"], "authorized_access_point": "Schweißnahtprüfung"} 1 +2024-09-11 09:09:35.251075 2024-09-11 09:09:35.251082 5d70fa26-d4e3-477a-ba6a-eed3a9688326 {"md5": "37a3df47b580ea94146c4eaec23fe58c", "pid": "041802659", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Inertgas"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4180265-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041802659", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4180265-2", "source": "GND"}], "authorized_access_point": "Schutzgas"} 1 +2024-09-11 09:09:35.306406 2024-09-11 09:09:35.30641 db742b09-f9fe-402e-b4a9-b401a86e0a81 {"md5": "6b1325738f2224d8c8a14c6613984128", "pid": "041798813", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zuggattung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134657854", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85110967", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85110967"}], "authorized_access_point": "Express trains"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134657854", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12141363", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12141363d"}], "authorized_access_point": "Trains rapides"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4179881-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041798813", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4179881-8", "source": "GND"}], "variant_access_point": ["Schnellzüge", "D-Zug"], "authorized_access_point": "Schnellzug"} 1 +2024-09-11 09:09:35.36717 2024-09-11 09:09:35.367175 9ff7efad-b8fb-46fa-9bb7-85928624f38d {"md5": "fad704025552f4b3fe6e2d7bdcaa7317", "pid": "041794524", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Reibungsbremse"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133699626", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85010244", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85010244"}], "authorized_access_point": "Automobiles - Disc brakes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133699626", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11993213", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11993213b"}], "authorized_access_point": "Automobiles - Freins à disque"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134310862", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12398340", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12398340t"}], "authorized_access_point": "Freins à disque"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4179452-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041794524", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4179452-7", "source": "GND"}], "variant_access_point": ["Axialbremse"], "authorized_access_point": "Scheibenbremse"} 1 +2024-09-11 09:09:35.423021 2024-09-11 09:09:35.423025 3cf4288e-18c4-4256-b457-f1ebaa9777b3 {"md5": "cacf79100e1f7782d2050b39d126320e", "pid": "041792432", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung und hier nicht permutierender Wortart, z. B. Hebräisch ; Verb ; šavá"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134004958", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85121185", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85121185"}], "authorized_access_point": "Shbʻ (The Hebrew root)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134004958", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11963587", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119635873"}], "authorized_access_point": "ŠBʿ (la racine hébraïque)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4179243-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041792432", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4179243-9", "source": "GND"}], "variant_access_point": ["šba"], "authorized_access_point": "šavá"} 1 +2024-09-11 09:09:35.48311 2024-09-11 09:09:35.483113 35fb08b7-6247-45fc-b14c-531e2efd09bc {"md5": "b339dfd530ade37f49995d901c99548f", "pid": "041785215", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Buntbarsche"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333964943", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17802092", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17802092g"}], "authorized_access_point": "Hemichromis bimaculatus"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4178521-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041785215", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4178521-6", "source": "GND"}], "variant_access_point": ["Hemichromis bimaculatus"], "authorized_access_point": "Roter Buntbarsch"} 1 +2024-09-11 09:09:53.976028 2024-09-11 09:09:53.976032 4db35855-df42-43d5-ab5e-8a33e3647819 {"md5": "3c64f0945f3b04e28834130427573cc4", "pid": "040299848", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kirchengemeinde"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4029984-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040299848", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4029984-3", "source": "GND"}], "variant_access_point": ["Katholische Kirchengemeinde", "Katholische Pfarrei", "Römisch-katholische Gemeinde", "Katholische Gemeinden"], "authorized_access_point": "Katholische Gemeinde"} 1 +2024-09-11 09:09:35.657774 2024-09-11 09:09:35.657778 a8b9743e-a66d-4320-9ebb-6a0eaf112a0d {"md5": "dab13e75f7bf3c0eba75eb83bf9e6495", "pid": "041779452", "note": [{"label": ["Als Homonymenzusatz bei Personenschlagworten zugelassen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Revolutionär"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133920535", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85147698", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85147698"}], "authorized_access_point": "Women revolutionaries"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133920535", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13340891", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb133408918"}], "authorized_access_point": "Femmes révolutionnaires"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254392122", "source": "GND"}, {"type": "bf:Nbn", "value": "62269", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/62269"}], "authorized_access_point": "Rivoluzionarie"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4177945-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041779452", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4177945-9", "source": "GND"}], "authorized_access_point": "Revolutionärin"} 1 +2024-09-11 09:09:35.721787 2024-09-11 09:09:35.721789 3f098271-16ce-4cd2-bb0b-02731943af8c {"md5": "3bd0a2adc8681363abb5c726e338bc77", "pid": "041774434", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134758804", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13318572", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13318572g"}], "authorized_access_point": "Archives"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4177443-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041774434", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4177443-7", "source": "GND"}], "variant_access_point": ["Ablage (Verwaltung)", "Aktenablage", "Schriftgutverwaltung", "Records Management"], "authorized_access_point": "Registratur"} 1 +2024-09-11 09:09:35.78665 2024-09-11 09:09:35.786661 18526907-d313-4597-9e6b-d47ede80624e {"md5": "a70e88f0c374440d66b2e238371ee2c7", "pid": "041772822", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4177282-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041772822", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4177282-9", "source": "GND"}], "variant_access_point": ["Instanzenzug", "Instanz"], "authorized_access_point": "Rechtszug"} 1 +2024-09-11 09:09:35.851035 2024-09-11 09:09:35.85104 bde35115-fa60-4c01-914f-fa6cbedd05f9 {"md5": "36ee4e99a0ce46d6aee3dd965955f342", "pid": "041772768", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Zuwiderhandlung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133978622", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85136182", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85136182"}], "authorized_access_point": "Torts"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133978622", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11952132", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119521328"}], "authorized_access_point": "Responsabilité civile"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970584598", "source": "GND"}, {"type": "bf:Nbn", "value": "10040642", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10040642"}], "authorized_access_point": "Rechtsverletzung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4177276-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041772768", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4177276-3", "source": "GND"}], "variant_access_point": ["Rechtsbruch", "Rechtsverstoß"], "authorized_access_point": "Rechtsverletzung"} 1 +2024-09-11 09:09:35.904487 2024-09-11 09:09:35.90449 5b10aabd-0987-480c-a4e3-f8eef97d66f7 {"md5": "5f1776f845edde10b77f7fc3a7bc6d3f", "pid": "041767934", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Radiererin"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133923755", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85043993", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85043993"}], "authorized_access_point": "Engravers"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133923755", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11931591", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119315917"}], "authorized_access_point": "Graveurs"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4176793-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041767934", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4176793-7", "source": "GND"}], "authorized_access_point": "Radierer"} 1 +2024-09-11 09:09:35.958715 2024-09-11 09:09:35.958719 675af584-6007-4c2b-9f2a-14178985f10c {"md5": "4d1e828c628a7fb91f8361a4e4cac936", "pid": "041766717", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134340494", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2006007175", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2006007175"}], "authorized_access_point": "Mercury content"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134340494", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12480742", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12480742n"}], "authorized_access_point": "Teneur en mercure"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4176671-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041766717", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4176671-4", "source": "GND"}], "authorized_access_point": "Quecksilbergehalt"} 1 +2024-09-11 09:10:07.968897 2024-09-11 09:10:07.968901 59d18090-432a-45fe-8a96-077ce7e48c75 {"md5": "aedaa8bafee680403d28b99c133181c8", "pid": "1272439836", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1272439836", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1272439836", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1272439836", "source": "GND"}], "authorized_access_point": "Merkantil Kursiv"} 1 +2024-09-11 09:09:36.015713 2024-09-11 09:09:36.015716 e12d525f-00a8-48af-a5b0-a0588845bcbb {"md5": "9efce3103067e47e783e6f666f84d752", "pid": "04176420X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Truthuhn"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133695000", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11982369", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11982369s"}], "authorized_access_point": "Dindes"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4176420-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04176420X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4176420-1", "source": "GND"}], "variant_access_point": ["Pute (Truthenne)"], "authorized_access_point": "Truthenne"} 1 +2024-09-11 09:09:36.072755 2024-09-11 09:09:36.072759 42f6f0ed-ab22-42f6-8a15-a3b514d48667 {"md5": "1692555d784dfb6ba2bfa3b934bd251c", "pid": "041763165", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134797893", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85108894", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85108894"}], "authorized_access_point": "Puddings"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134797893", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15517468", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15517468b"}], "authorized_access_point": "Flans"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4176316-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041763165", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4176316-6", "source": "GND"}], "authorized_access_point": "Pudding"} 1 +2024-09-11 09:09:36.127867 2024-09-11 09:09:36.127871 dbae0436-4a49-4d52-90fb-3768913054d8 {"md5": "a741331b4bc6c064db90fa7fb0390035", "pid": "041759834", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Protamine"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4175983-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041759834", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4175983-7", "source": "GND"}], "authorized_access_point": "Protaminsulfate"} 1 +2024-09-11 09:09:36.183336 2024-09-11 09:09:36.18334 f1ff1303-9859-4f2b-8c63-2ebb2d993b75 {"md5": "b22572de9e797a310af529134c242a99", "pid": "041755014", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=241778247"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fest"}], "related": [{"authorized_access_point": "Nordwestküstenindianer"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4175501-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041755014", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4175501-7", "source": "GND"}], "variant_access_point": ["Potlatsch", "Potlach"], "authorized_access_point": "Potlatch"} 1 +2024-09-11 09:09:36.236856 2024-09-11 09:09:36.236861 a86a0a1c-8b0c-47fe-ab2c-1099903c0e0e {"md5": "c63f5e3a83a2fc03799bfda3d6cd396a", "pid": "041754557", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kutsche"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134495595", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2002004206", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2002004206"}], "authorized_access_point": "Stagecoaches"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134495595", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12287719", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12287719g"}], "authorized_access_point": "Véhicules hippomobiles"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4175455-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041754557", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4175455-4", "source": "GND"}], "authorized_access_point": "Postkutsche"} 1 +2024-09-11 09:09:36.295134 2024-09-11 09:09:36.295138 604e22f3-7d5f-497d-9250-36f57d63b7f6 {"md5": "85843e7bc95776b6979e5a50c0a4e0d2", "pid": "04175431X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Operatorhalbgruppe"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4175431-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04175431X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4175431-1", "source": "GND"}], "authorized_access_point": "Positive Operatorhalbgruppe"} 1 +2024-09-11 09:09:36.355253 2024-09-11 09:09:36.355256 4de934ed-9897-4a3a-a87d-edd3fcb6893a {"md5": "3004a7bd772c98e402b9324a2c97ca45", "pid": "04174926X", "note": [{"label": ["Art der Familie der Loris"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333260261", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2004001089", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2004001089"}], "authorized_access_point": "Slow loris"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4174926-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04174926X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4174926-1", "source": "GND"}], "variant_access_point": ["Nycticebus coucang"], "authorized_access_point": "Plumplori"} 1 +2024-09-11 09:09:36.416438 2024-09-11 09:09:36.416441 e9b568c0-c3ea-4122-b233-05c701feb87c {"md5": "4abf2743d5673ecd917b0f44240a2679", "pid": "041748964", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fußdeformität"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333254393", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85049021", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85049021"}], "authorized_access_point": "Flatfoot"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241618364", "source": "GND"}, {"type": "bf:Nbn", "value": "D005413", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D005413"}], "authorized_access_point": "Flatfoot"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4174896-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041748964", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4174896-7", "source": "GND"}], "variant_access_point": ["Pes planus"], "authorized_access_point": "Plattfuß"} 1 +2024-09-11 09:09:36.526674 2024-09-11 09:09:36.526678 8265b756-1325-4a7e-9705-7544e07ebb77 {"md5": "8af987e8b0713799ad3bb1d7cfa5002a", "pid": "041742648", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Wohltätigkeit"}, {"authorized_access_point": "Philanthrop"}, {"authorized_access_point": "Philanthropin"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134557973", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13318795", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13318795p"}], "authorized_access_point": "Oeuvres de bienfaisance"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1024440249", "source": "GND"}, {"type": "bf:Nbn", "value": "10069666", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10069666"}], "authorized_access_point": "Philanthropie"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4174264-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041742648", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4174264-3", "source": "GND"}], "authorized_access_point": "Philanthropie"} 1 +2024-09-11 09:09:36.592099 2024-09-11 09:09:36.592104 4dc56804-63cc-49de-a502-2c2a9107ba70 {"md5": "b2530cd0e63feecc50f9c0afae58c157", "pid": "04174084X", "note": [{"label": ["Im medizin. Bereich werden nach Möglichkeit die SWW Krankenpflege, Altenpflege, Kinderkrankenpflege usw. verwendet."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113483182X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85009391", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85009391"}], "authorized_access_point": "Attention"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113483182X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13318901", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb133189012"}], "authorized_access_point": "Entretien"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133944809", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11938292", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11938292f"}], "authorized_access_point": "Soins"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970579012", "source": "GND"}, {"type": "bf:Nbn", "value": "10035229", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10035229"}], "authorized_access_point": "Pflege"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4174084-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04174084X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4174084-1", "source": "GND"}], "variant_access_point": ["Pflegekonzept"], "authorized_access_point": "Pflege"} 1 +2024-09-11 09:09:36.649927 2024-09-11 09:09:36.649933 a9ba18bf-6675-4ff5-817d-9fb3139db365 {"md5": "b6874f9d0525fc4204fb392fa608683a", "pid": "041738063", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254471987", "source": "GND"}, {"type": "bf:Nbn", "value": "XX533663", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX533663"}], "authorized_access_point": "Perlas"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125624435X", "source": "GND"}, {"type": "bf:Nbn", "value": "5644", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_5644"}], "authorized_access_point": "pearls"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4173806-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041738063", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4173806-8", "source": "GND"}], "variant_access_point": ["Perlen"], "authorized_access_point": "Perle"} 1 +2024-09-11 09:09:36.707188 2024-09-11 09:09:36.707193 0dd58270-1cf1-43ec-bea1-86add70d7487 {"md5": "17cbdb8bef9dea73f457f81e59713649", "pid": "041737539", "note": [{"label": ["Für das Früh- und Hochmittelalter nur benutzt, wenn der Beschreibstoff besonders thematisiert ist; sonst SW Handschrift"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Handschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4173753-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041737539", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4173753-2", "source": "GND"}], "variant_access_point": ["Pergament"], "authorized_access_point": "Pergamenthandschrift"} 1 +2024-09-11 09:09:36.770782 2024-09-11 09:09:36.770786 e92c98da-3839-47e3-a76f-5a9f3ba02bbc {"md5": "cd70fcd042fe7161c0e83f012663bd31", "pid": "041736346", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Agglomerieren"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134745400", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85099278", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85099278"}], "authorized_access_point": "Pelletizing"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4173634-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041736346", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4173634-5", "source": "GND"}], "variant_access_point": ["Kugelsintern", "Aufbaugranulieren"], "authorized_access_point": "Pelletieren"} 1 +2024-09-11 09:09:36.836249 2024-09-11 09:09:36.836252 9b908e60-8fe5-4bf7-94e5-ce4b5e90cda3 {"md5": "2604c67de8d200d7d288c4714caa0baa", "pid": "041735390", "note": [{"label": ["Verstoß gegen patentrechtliche Vorschriften"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Patentrecht"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134665784", "source": "GND"}, {"type": "bf:Nbn", "value": "sh96001068", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh96001068"}], "authorized_access_point": "Patent infringement"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4173539-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041735390", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4173539-0", "source": "GND"}], "variant_access_point": ["Patentrechtsverletzung", "Patent"], "authorized_access_point": "Patentverletzung"} 1 +2024-09-11 09:09:36.901922 2024-09-11 09:09:36.901926 990963f5-10b5-4f3e-9c73-1db61a4effa0 {"md5": "c157da1d5144a649d175cdbacd0e4241", "pid": "041734688", "note": [{"label": ["Kompositabildung nur mit Bezeichnungen für Jungtiere, z.B. Kälberaufzucht; mit anderen Tieren wird verknüpft, z.B. Orang-Utan ; Aufzucht"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tierzucht"}, {"authorized_access_point": "Tierhaltung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332441262", "source": "GND"}, {"type": "bf:Nbn", "value": "sh99004865", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99004865"}], "authorized_access_point": "Breeding"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133612407", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85016717", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85016717"}], "authorized_access_point": "Breeding"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133612407", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11931237", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11931237m"}], "authorized_access_point": "Amélioration génétique"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133922597", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11931346", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11931346v"}], "authorized_access_point": "Élevage"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4173468-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041734688", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4173468-3", "source": "GND"}], "variant_access_point": ["Tieraufzucht"], "authorized_access_point": "Aufzucht"} 1 +2024-09-11 09:09:36.958468 2024-09-11 09:09:36.958472 de103f8d-fbfd-4b03-ba96-3f31f1b69821 {"md5": "b922026628ba7315085dae269ccdc11c", "pid": "041733819", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134142498", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85075821", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85075821"}], "authorized_access_point": "Legislative bodies - Reform"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134142498", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12063314", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12063314x"}], "authorized_access_point": "Parlements - Réforme"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4173381-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041733819", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4173381-2", "source": "GND"}], "variant_access_point": ["Parlament"], "authorized_access_point": "Parlamentsreform"} 1 +2024-09-11 09:09:37.008687 2024-09-11 09:09:37.00869 90b93cb0-924f-4c1c-a45b-7680ea152d6b {"md5": "e5d9c63c05c49c57482f98be3f36ccd2", "pid": "041725522", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sperma"}], "related": [{"authorized_access_point": "Azoospermie"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241615969", "source": "GND"}, {"type": "bf:Nbn", "value": "D009845", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D009845"}], "authorized_access_point": "Oligospermia"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4172552-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041725522", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4172552-9", "source": "GND"}], "authorized_access_point": "Oligospermie"} 1 +2024-09-11 09:09:37.066246 2024-09-11 09:09:37.066251 9846d7bc-e976-485b-84ac-57147ba2f749 {"md5": "af998127c0007cbeb8e0894b519117e7", "pid": "041722027", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Brunnen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133747493", "source": "GND"}, {"type": "bf:Nbn", "value": "sh92004203", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh92004203"}], "authorized_access_point": "Nymphaea (Architecture)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133747493", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12268889", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12268889r"}], "authorized_access_point": "Nymphées"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4172202-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041722027", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4172202-4", "source": "GND"}], "authorized_access_point": "Nymphaeum"} 1 +2024-09-11 09:09:37.126941 2024-09-11 09:09:37.126945 7f6449af-35e3-4b51-9003-3418954e1fc8 {"md5": "cb5fd691e65f2dfe415b06e0138f1b75", "pid": "041720040", "note": [{"label": ["Benutze für den gesamten Krieg und für den Krieg zwischen Schweden und Polen allein; für den Krieg zwischen Schweden und Dänemark allein benutze \\"Schwedisch-Dänischer Krieg (1657-1660)\\""], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Krieg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4172004-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041720040", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4172004-0", "source": "GND"}], "variant_access_point": ["1. Nordischer Krieg", "Erster Nordischer Krieg", "Nordischer Krieg (1655-1660)", "Schwedisch-Polnisch-Russisch-Dänischer Krieg", "Polnisch-schwedischer Krieg (1655-1660)", "Schwedisch-polnischer Krieg (1655-1660)", "Zweiter Nordischer Krieg (1655-1661)", "Zweiter Polnisch-Schwedischer Krieg", "Kleiner Nordischer Krieg"], "authorized_access_point": "Schwedisch-polnisch-dänischer Krieg"} 1 +2024-09-11 09:09:37.183259 2024-09-11 09:09:37.183262 403a0119-43f2-4edf-ab5b-11e265e81491 {"md5": "f36b69559cfbbcfc11974b3b6a340f9c", "pid": "041718429", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Geräusch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4171842-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041718429", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4171842-2", "source": "GND"}], "authorized_access_point": "Niederfrequentes Geräusch"} 1 +2024-09-11 09:09:37.246477 2024-09-11 09:09:37.24648 946c85dc-7eb0-4f56-a218-8b5624c7ec09 {"md5": "e250b83457e05060968b3deb279ae980", "pid": "041716159", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Teilchendetektor"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4171615-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041716159", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4171615-2", "source": "GND"}], "authorized_access_point": "Neutrinodetektor"} 1 +2024-09-11 09:09:37.301038 2024-09-11 09:09:37.301042 d6aeaddb-2314-42ec-8c93-4240f14e73c0 {"md5": "800a114ee35002107380fe5d15524437", "pid": "041714059", "note": [{"label": ["Die negative Feststellungsklage ist eine Klageart, mit der die Feststellung des Nichtbestehens eines Rechtsverhältnisses geltend gemacht werden kann."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Feststellungsklage"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4171405-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041714059", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4171405-2", "source": "GND"}], "authorized_access_point": "Negative Feststellungsklage"} 1 +2024-09-11 09:09:39.229967 2024-09-11 09:09:39.229971 dcf297d1-ea95-481a-92ef-0b67d8419ba7 {"md5": "2d96eb84aa7d9762de2bb7e845230e74", "pid": "041612469", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133982174", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85064235", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85064235"}], "authorized_access_point": "Ikat"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133982174", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11953399", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11953399b"}], "authorized_access_point": "Ikat"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4161246-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041612469", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4161246-2", "source": "GND"}], "authorized_access_point": "Ikat"} 1 +2024-09-11 09:09:37.363655 2024-09-11 09:09:37.363659 a88f0164-1321-4ef0-9b38-8d76bc01f79e {"md5": "1270b5a24e0f6c4e4fd8253c8ad65ce3", "pid": "041712188", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Staat"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134669534", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2009003712", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2009003712"}], "authorized_access_point": "Multinational states"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134669534", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16276182", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16276182p"}], "authorized_access_point": "États multinationaux"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970602103", "source": "GND"}, {"type": "bf:Nbn", "value": "10053023", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10053023"}], "authorized_access_point": "Vielvölkerstaat"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4171218-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041712188", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4171218-3", "source": "GND"}], "variant_access_point": ["Vielvölkerstaat", "Multinationaler Staat"], "authorized_access_point": "Nationalitätenstaat"} 1 +2024-09-11 09:09:37.424206 2024-09-11 09:09:37.42421 940fac53-bcdf-4a11-9ce6-0b4c7bddc0c2 {"md5": "faa1d0240d670d9269b81b99b1ae7ab5", "pid": "04171069X", "note": [{"label": ["Pflanzliche und tierische Materialien"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Organischer Rohstoff"}, {"authorized_access_point": "Agrarprodukt"}], "related": [{"authorized_access_point": "Erneuerbare Ressourcen"}, {"authorized_access_point": "Biomasse"}, {"authorized_access_point": "Biorohstoff"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970574819", "source": "GND"}, {"type": "bf:Nbn", "value": "10065163", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10065163"}], "authorized_access_point": "nachwachsende Rohstoffe"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4171069-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04171069X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4171069-1", "source": "GND"}], "variant_access_point": ["Nachwachsende Rohstoffe"], "authorized_access_point": "Nachwachsender Rohstoff"} 1 +2024-09-11 09:09:37.480528 2024-09-11 09:09:37.480531 9dd89a1c-e67a-4f32-8870-a7b8a6c11139 {"md5": "940aa47919687e55e005ed27870e77ae", "pid": "04171007X", "note": [{"label": ["Physiolog. Vorgänge nach der Ernte"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113380554X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2002006516", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2002006516"}], "authorized_access_point": "Postharvest physiology"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113380554X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12470674", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12470674s"}], "authorized_access_point": "Physiologie après récolte"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256239585", "source": "GND"}, {"type": "bf:Nbn", "value": "24406", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_24406"}], "authorized_access_point": "postharvest physiology"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4171007-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04171007X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4171007-1", "source": "GND"}], "variant_access_point": ["Postharvest physiology"], "authorized_access_point": "Nacherntephysiologie"} 1 +2024-09-11 09:09:37.54746 2024-09-11 09:09:37.547464 56ea52c6-72ac-4cfd-a3e1-cc7947b8c282 {"md5": "1654346c39fe454b7b2331c50abc2011", "pid": "041707109", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gruppe (Mathematik)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133359478X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85063698", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85063698"}], "authorized_access_point": "Hypergroups"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133359478X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12451436", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12451436h"}], "authorized_access_point": "Hypergroupes"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4170710-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041707109", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4170710-2", "source": "GND"}], "variant_access_point": ["Hypergruppe (Gruppentheorie)"], "authorized_access_point": "Multigruppe"} 1 +2024-09-11 09:09:37.607525 2024-09-11 09:09:37.607529 3a21e3d5-fe15-4b20-8976-ede6d0ea283d {"md5": "12d441d5cd200429128d95813c7ab565", "pid": "04170441X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133867782", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13557117", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb135571175"}], "authorized_access_point": "Lune - Surface"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4170441-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04170441X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4170441-1", "source": "GND"}], "variant_access_point": ["Mond"], "authorized_access_point": "Mondoberfläche"} 1 +2024-09-11 09:09:37.670378 2024-09-11 09:09:37.670382 5a2f063f-e0f2-4469-a5a7-80c6531a3357 {"md5": "4897e1bcda91462b0c76848cd8a78b81", "pid": "041700465", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fahrzeug"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133675050", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85027439", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85027439"}], "authorized_access_point": "Coaster cars"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4170046-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041700465", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4170046-6", "source": "GND"}], "variant_access_point": ["Minicar (Seifenkiste)"], "authorized_access_point": "Seifenkiste"} 1 +2024-09-11 09:09:37.727932 2024-09-11 09:09:37.727937 627d394d-06da-46fa-82b1-3b38531dcb1d {"md5": "8675c2a1bea18c3c4d628fade420ee54", "pid": "041693442", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Eid"}, {"authorized_access_point": "Falschaussage"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134106920", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85099968", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85099968"}], "authorized_access_point": "Perjury"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134106920", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12010894", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb120108941"}], "authorized_access_point": "Parjure"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4169344-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041693442", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4169344-9", "source": "GND"}], "authorized_access_point": "Meineid"} 1 +2024-09-11 09:09:37.786936 2024-09-11 09:09:37.786942 d5506729-b7a0-45dc-af05-71c38bd0b1c6 {"md5": "abae6a15556e381980fba427af655717", "pid": "041692403", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134278373", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85056581", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85056581"}], "authorized_access_point": "Gray mullets"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134278373", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12330195", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12330195c"}], "authorized_access_point": "Mugilidés"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4169240-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041692403", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4169240-8", "source": "GND"}], "variant_access_point": ["Mugilidae"], "authorized_access_point": "Meeräschen"} 1 +2024-09-11 09:09:37.860598 2024-09-11 09:09:37.860602 aa1e272b-5539-4427-9115-1bab6fbdb85e {"md5": "0367a930c41fdca1d3f50c6a010277fc", "pid": "041691989", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Medienzentrum"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133679013", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85009465", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85009465"}], "authorized_access_point": "Audio-visual library service"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133679013", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11975004", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11975004w"}], "authorized_access_point": "Médiathèques"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4169198-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041691989", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4169198-2", "source": "GND"}], "variant_access_point": ["Mediathek"], "authorized_access_point": "Mediothek"} 1 +2024-09-11 09:09:37.921204 2024-09-11 09:09:37.921209 40645a27-42b5-424a-8d15-7c774372c826 {"md5": "c1403f250f57ef966e9dfd807d0cd762", "pid": "041691504", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zwergmoschustiere"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4169150-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041691504", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4169150-7", "source": "GND"}], "variant_access_point": ["Kantschil", "Tragulus"], "authorized_access_point": "Maushirsch"} 1 +2024-09-11 09:09:37.978476 2024-09-11 09:09:37.978479 481dba8d-6ff1-4325-a1be-acc7789a24c7 {"md5": "1e157aa7c984dc3d934906fe460b71af", "pid": "041689976", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ingenieur"}], "related": [{"authorized_access_point": "Maschinenbauingenieurin"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4168997-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041689976", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4168997-5", "source": "GND"}], "variant_access_point": ["Maschineningenieur"], "authorized_access_point": "Maschinenbauingenieur"} 1 +2024-09-11 09:09:38.033352 2024-09-11 09:09:38.033357 680ce689-a4e8-4809-a4e8-49c6765fc00b {"md5": "b6cf542c891be9ef494d153747aad36e", "pid": "041688473", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113404609X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11977231", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11977231t"}], "authorized_access_point": "Maniabilité"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4168847-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041688473", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4168847-8", "source": "GND"}], "authorized_access_point": "Manövrierfähigkeit"} 1 +2024-09-11 09:09:38.091023 2024-09-11 09:09:38.091027 c2a01a58-bcfd-4618-8910-0cb8f662321c {"md5": "21ff2f9d3ae7ae991f48bbc5fd231853", "pid": "041682106", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Entlüftung"}, {"authorized_access_point": "Durchlüftung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334018308", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85142747", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85142747"}], "authorized_access_point": "Ventilation"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334018308", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11951224", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11951224p"}], "authorized_access_point": "Ventilation"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4168210-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041682106", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4168210-5", "source": "GND"}], "variant_access_point": ["Lüftungssystem"], "authorized_access_point": "Lüftung"} 1 +2024-09-11 09:09:38.200107 2024-09-11 09:09:38.200112 9ebca7f6-7128-4196-b859-bb73369f5fd6 {"md5": "0d4de7748719b3e9ec7d9c3284f62b40", "pid": "041678532", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133824862", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2007010787", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2007010787"}], "authorized_access_point": "Literary manifestos"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133824862", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12536532", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12536532c"}], "authorized_access_point": "Manifestes littéraires et artistiques"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4167853-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041678532", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4167853-9", "source": "GND"}], "variant_access_point": ["Manifest"], "authorized_access_point": "Literarisches Manifest"} 1 +2024-09-11 09:09:38.255358 2024-09-11 09:09:38.255362 cec19104-4df4-44ab-9f1f-21d38500f54f {"md5": "faaf3e65fa297ae21c0a35ae636e3f5a", "pid": "041667093", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Walzer"}, {"authorized_access_point": "Standardtänze"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133811841", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85015940", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85015940"}], "authorized_access_point": "Boston (Dance)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133811841", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12489782", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb124897822"}], "authorized_access_point": "Boston (danse)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4166709-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041667093", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4166709-8", "source": "GND"}], "variant_access_point": ["English waltz", "English-Waltz", "Englishwaltz", "Valse Boston", "Boston (Musik)"], "authorized_access_point": "Langsamer Walzer"} 1 +2024-09-11 09:09:38.310079 2024-09-11 09:09:38.310083 6db79fb6-c5b8-4be2-ae93-e3a172870679 {"md5": "cd40c22119f3db6281f404fb883e3692", "pid": "041664795", "note": [{"label": ["Seelsorge durch Laien"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Seelsorge"}], "related": [{"authorized_access_point": "Laienapostolat"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134596170", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13554687", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb135546870"}], "authorized_access_point": "Agents de pastorale"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4166479-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041664795", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4166479-6", "source": "GND"}], "variant_access_point": ["Laie"], "authorized_access_point": "Laienseelsorge"} 1 +2024-09-11 09:09:38.376918 2024-09-11 09:09:38.376921 a98ee64d-9fb0-4fd5-8233-6c92731e5dc3 {"md5": "b98cddd42bd29478527e28f65735adf6", "pid": "041653025", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Geflecht (Technik)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134799934", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13516282", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13516282t"}], "authorized_access_point": "Vannerie"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1299909876", "source": "GND"}, {"type": "bf:Nbn", "value": "XX526260", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX526260"}], "authorized_access_point": "Cestería"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4165302-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041653025", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4165302-6", "source": "GND"}], "variant_access_point": ["Korbflechterei"], "authorized_access_point": "Korbware"} 1 +2024-09-11 09:09:38.430967 2024-09-11 09:09:38.430971 7941b1bb-90ea-4f94-a7af-46c8c609eab3 {"md5": "2a7ae1a34fe62fdbc8b91832234581c2", "pid": "041650018", "note": [{"label": ["Alphabetisches Verzeichnis aller in einer Schrift vorkommenden Wörter oder Sachen mit Stellenangabe (RDA AH-007).", "Auch für Register verwendet (RDA AH-007)."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Verzeichnis"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133614140", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85030642", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85030642"}], "authorized_access_point": "Concordances"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133614140", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11931766", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11931766k"}], "authorized_access_point": "Concordances"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254339159", "source": "GND"}, {"type": "bf:Nbn", "value": "13311", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/13311"}], "authorized_access_point": "Concordanze"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254450777", "source": "GND"}, {"type": "bf:Nbn", "value": "XX526531", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX526531"}], "authorized_access_point": "Concordancias"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4165001-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041650018", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4165001-3", "source": "GND"}], "variant_access_point": ["Personenregister", "Sachregister (Formschlagwort)", "Wortindex", "Wörterverzeichnis", "Werkkonkordanz"], "authorized_access_point": "Konkordanz"} 1 +2024-09-11 09:09:38.485803 2024-09-11 09:09:38.48581 ddbf61ee-4afc-4da5-a559-f459e28cbf53 {"md5": "dd0039fceba17539742665cf1088d2ed", "pid": "041640047", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kapuzineraffenartige"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333261039", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85126622", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85126622"}], "authorized_access_point": "Spider monkeys"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333261039", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16723695", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16723695h"}], "authorized_access_point": "Singes-araignées"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4164004-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041640047", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4164004-4", "source": "GND"}], "variant_access_point": ["Ateles"], "authorized_access_point": "Klammeraffe"} 1 +2024-09-11 09:09:38.540389 2024-09-11 09:09:38.540393 2e2c1757-2821-43d8-b8c7-35921a104781 {"md5": "8c4c42fe43e79132847117a8d006bc2e", "pid": "041639383", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Konkordat"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134706170", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85030644", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85030644"}], "authorized_access_point": "Concordats"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134706170", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13318920", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13318920b"}], "authorized_access_point": "Concordats"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4163938-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041639383", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4163938-8", "source": "GND"}], "variant_access_point": ["Staatskirchenvertrag", "Staat"], "authorized_access_point": "Kirchenvertrag"} 1 +2024-09-11 09:09:38.599691 2024-09-11 09:09:38.599697 dc7437da-9d0d-438e-871c-25f7a4503fe0 {"md5": "110eb2fb0cdd67e8a48d82b36c968790", "pid": "041634179", "note": [{"label": ["Bestandsverzeichnis einer Sammlung (Bibliothek, Museum usw.) oder einer Gesamtheit von Sammlungen (RDA AH-007).", "Auch für Verlagskataloge. Sofern zutreffend verwende die spezifischen Begriffe Antiquariatskatalog, Auktionskatalog, Ausstellungskatalog, Verkaufskatalog. Bei Archivbeständen verwende Inventar. Für andere Arten der Auflistung verwende Verzeichnis (RDA AH-007)."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Verzeichnis"}], "related": [{"authorized_access_point": "Bibliografie"}, {"authorized_access_point": "Inventar"}, {"authorized_access_point": "Neuerwerbungsliste"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133643949", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85020917", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85020917"}], "authorized_access_point": "Publishers' catalogs"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133680755", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2005003411", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2005003411"}], "authorized_access_point": "Catalogs"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133643949", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF119484598", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11948459c"}], "authorized_access_point": "Catalogues d'éditeurs"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133680755", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF119759400", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119759407"}], "authorized_access_point": "Catalogues"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254335196", "source": "GND"}, {"type": "bf:Nbn", "value": "10004", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/10004"}], "authorized_access_point": "Cataloghi editoriali"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254447520", "source": "GND"}, {"type": "bf:Nbn", "value": "XX528701", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX528701"}], "authorized_access_point": "Catálogos de editores"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1253498628", "source": "GND"}, {"type": "bf:Nbn", "value": "D019494", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D019494"}], "authorized_access_point": "Catalog"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4163417-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041634179", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4163417-2", "source": "GND"}], "variant_access_point": ["Bestandskatalog", "Bestandsverzeichnis (Formschlagwort)"], "authorized_access_point": "Katalog"} 1 +2024-09-11 09:09:38.657645 2024-09-11 09:09:38.657649 9277357b-4918-4dbb-808a-8e94a1206bfb {"md5": "8711b06503946a2e7bef5ff128b7108a", "pid": "041631692", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Großguramis"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333951116", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85122191", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85122191"}], "authorized_access_point": "Siamese fighting fish"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333951116", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15954764", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15954764k"}], "authorized_access_point": "Betta splendens"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4163169-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041631692", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4163169-9", "source": "GND"}], "variant_access_point": ["Siamesischer Kampffisch", "Betta splendens", "Schleierkampffisch"], "authorized_access_point": "Kampffisch"} 1 +2024-09-11 09:09:38.7135 2024-09-11 09:09:38.713504 3189bf0a-84e6-478c-a4d4-4651d430b245 {"md5": "ff5047663ac2d3d5d6db228700c2181c", "pid": "041631676", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134052545", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85028791", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85028791"}], "authorized_access_point": "Combat"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134052545", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11978385", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119783858"}], "authorized_access_point": "Combat"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4163167-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041631676", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4163167-5", "source": "GND"}], "authorized_access_point": "Kampf"} 1 +2024-09-11 09:09:38.768149 2024-09-11 09:09:38.768153 cfb9dcdc-0ffd-4bd7-86b2-e7374fb673e5 {"md5": "b3601793787a3244275f2bc9ebadd5fd", "pid": "04163120X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Kalmarer_Union&oldid=212527898"], "noteType": "dataSource"}, {"label": ["Vereinigung der Königreiche Dänemark, Norwegen u. Schweden, mit Unterbrechungen von 1397 bis 1523 (06.06.) bestanden."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bündnis"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133842003", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85071361", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85071361"}], "authorized_access_point": "Kalmar, Union of, 1397"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133842003", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13182978", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb131829789"}], "authorized_access_point": "Kalmar, Union de (1397)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4163120-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04163120X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4163120-1", "source": "GND"}], "authorized_access_point": "Kalmarer Union"} 1 +2024-09-11 09:09:39.284363 2024-09-11 09:09:39.284366 5119677e-d32c-409c-860e-a5644e91085d {"md5": "69f0ea47f484fa2888d2f98406ddffe5", "pid": "041607988", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Humoristin"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4160798-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041607988", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4160798-3", "source": "GND"}], "authorized_access_point": "Humorist"} 1 +2024-09-11 09:09:38.821819 2024-09-11 09:09:38.821823 2351e9cc-5322-454b-8010-a3ec12b0e98f {"md5": "0bd2cf58c37ff0822778e6c5e91d00e4", "pid": "041627458", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133878296", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85070147", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85070147"}], "authorized_access_point": "Jesus People"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133878296", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13607037", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13607037n"}], "authorized_access_point": "Mouvements pour Jésus"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970585713", "source": "GND"}, {"type": "bf:Nbn", "value": "10048163", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10048163"}], "authorized_access_point": "religiöse Bewegung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4162745-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041627458", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4162745-3", "source": "GND"}], "variant_access_point": ["Jesus-People", "Jesus-Revolution"], "authorized_access_point": "Jesus-Bewegung"} 1 +2024-09-11 09:09:38.875564 2024-09-11 09:09:38.875568 e63ce854-ce8f-41fa-9216-9445405926c9 {"md5": "3d03dbc88d25d751ff02e742b36709d6", "pid": "041623010", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Semipermeable Membran"}, {"authorized_access_point": "Membranionenaustauscher"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133692990", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85067803", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85067803"}], "authorized_access_point": "Ion-permeable membranes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133692990", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11981513", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11981513g"}], "authorized_access_point": "Membranes échangeuses d'ions"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254444629", "source": "GND"}, {"type": "bf:Nbn", "value": "XX553088", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX553088"}], "authorized_access_point": "Membranas de intercambio iónico"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4162301-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041623010", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4162301-0", "source": "GND"}], "variant_access_point": ["Ionenaustauschmembran"], "authorized_access_point": "Ionenaustauschermembran"} 1 +2024-09-11 09:09:38.932911 2024-09-11 09:09:38.932916 5d1d1037-a9c5-4814-86db-a9b0c05959a4 {"md5": "8a0db843f632e5ba92d2f36a90d808fd", "pid": "041621662", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Toleranz"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134651988", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85135882", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85135882"}], "authorized_access_point": "Toleration"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134651988", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11933613", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119336136"}], "authorized_access_point": "Tolérance"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4162166-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041621662", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4162166-9", "source": "GND"}], "authorized_access_point": "Intoleranz"} 1 +2024-09-11 09:09:38.995035 2024-09-11 09:09:38.995041 18577551-6e52-4690-b00e-ec6b21aa8a8c {"md5": "2d33668ca92e5e587a93d44563387cd4", "pid": "041619633", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Krankenpflege"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133738958", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85067185", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85067185"}], "authorized_access_point": "Intensive care nursing"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133738958", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12245931", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12245931k"}], "authorized_access_point": "Soins infirmiers en soins intensifs"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4161963-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041619633", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4161963-8", "source": "GND"}], "variant_access_point": ["Critical care nursing"], "authorized_access_point": "Intensivpflege"} 1 +2024-09-11 09:09:39.066506 2024-09-11 09:09:39.06651 41af4203-c449-4239-8c92-447507bf9459 {"md5": "3a2578182c6484b691196ba302428dac", "pid": "041619366", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bauelement"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134739672", "source": "GND"}, {"type": "bf:Nbn", "value": "sh97007351", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh97007351"}], "authorized_access_point": "Microelectromechanical systems"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134739672", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13602331", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb136023316"}], "authorized_access_point": "Systèmes microélectromécaniques"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4161936-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041619366", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4161936-5", "source": "GND"}], "authorized_access_point": "Integriertes Bauelement"} 1 +2024-09-11 09:09:39.120581 2024-09-11 09:09:39.120587 89dca221-2d59-45d1-85fa-4f5ec84f32c8 {"md5": "c0afea7cc64561233266fe403dada66f", "pid": "041617266", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Anleihe"}, {"authorized_access_point": "Inhaberpapier"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4161726-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041617266", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4161726-5", "source": "GND"}], "variant_access_point": ["Schuldverschreibung auf den Inhaber", "Bearer bond"], "authorized_access_point": "Inhaberschuldverschreibung"} 1 +2024-09-11 09:09:39.338907 2024-09-11 09:09:39.33891 6ae2d20d-2ef1-4198-add1-e293293ac228 {"md5": "b364e3c5940c63c2d710ce8ed315ef36", "pid": "041605799", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Katalyse"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134085923", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2014001146", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2014001146"}], "authorized_access_point": "Homogeneous catalysis"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134085923", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11991895", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11991895p"}], "authorized_access_point": "Catalyse homogène"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4160579-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041605799", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4160579-2", "source": "GND"}], "authorized_access_point": "Homogene Katalyse"} 1 +2024-09-11 09:09:39.400376 2024-09-11 09:09:39.400381 976bf541-2283-4465-9074-ae663587d907 {"md5": "186646cfd5afe528cecd9e54c217eec5", "pid": "041603176", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Krebs (Medizin)"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134590423", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2010010377", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2010010377"}], "authorized_access_point": "Testis - Cancer"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241605815", "source": "GND"}, {"type": "bf:Nbn", "value": "D013736", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D013736"}], "authorized_access_point": "Testicular Neoplasms"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4160317-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041603176", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4160317-5", "source": "GND"}], "variant_access_point": ["Maligner Hodentumor"], "authorized_access_point": "Hodenkrebs"} 1 +2024-09-11 09:09:39.453008 2024-09-11 09:09:39.453014 64b6928c-27ef-493e-b51b-d4a9862782f2 {"md5": "d7995adabbebfd272022dd0c04950e3b", "pid": "041601475", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Elektronische Schaltung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133676413", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85084954", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85084954"}], "authorized_access_point": "Microwave circuits"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133676413", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11972999", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119729995"}], "authorized_access_point": "Circuits pour microondes"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4160147-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041601475", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4160147-6", "source": "GND"}], "variant_access_point": ["Hochfrequenz-Schaltung"], "authorized_access_point": "Hochfrequenzschaltung"} 1 +2024-09-11 09:09:39.504669 2024-09-11 09:09:39.504681 8386a720-dada-4081-abfe-4d95ed61223a {"md5": "778d9d96b5d5e5cdc10bef8f2939d8f0", "pid": "041600622", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Geometrie"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4160062-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041600622", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4160062-9", "source": "GND"}], "authorized_access_point": "Hjelmslevsche Geometrie"} 1 +2024-09-11 09:09:39.555204 2024-09-11 09:09:39.555207 804dc48a-e62c-4a28-8858-680f3037aadd {"md5": "023fa24c101ce5643b3934f8aa9b1407", "pid": "041600010", "note": [{"label": ["Verwendet für Gesamtdarstellungen; bei zeitlich und/oder sachlich eingeschränkten Darstellungen verwende Geschichte mit Jahreszahl und ggf. zusätzliches Sach-SW."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Grammatik"}, {"authorized_access_point": "Sprachwandel"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134037708", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11975748", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11975748f"}], "authorized_access_point": "Grammaire historique"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4160001-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041600010", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4160001-0", "source": "GND"}], "variant_access_point": ["Grammatik"], "authorized_access_point": "Historische Grammatik"} 1 +2024-09-11 09:09:39.613781 2024-09-11 09:09:39.613784 2ee69fd3-970e-44ee-b448-db8accb7c570 {"md5": "5aaaed475b2a7524269fd904d4d1fcb1", "pid": "041596277", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Viren"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113400849X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85060462", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85060462"}], "authorized_access_point": "Herpesviruses"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113400849X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11965282", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119652821"}], "authorized_access_point": "Herpesviridés"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254328882", "source": "GND"}, {"type": "bf:Nbn", "value": "5356", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/5356"}], "authorized_access_point": "Herpesviridae"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254439528", "source": "GND"}, {"type": "bf:Nbn", "value": "XX533805", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX533805"}], "authorized_access_point": "Virus del herpes"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4159627-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041596277", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4159627-4", "source": "GND"}], "variant_access_point": ["Herpesviridae"], "authorized_access_point": "Herpesviren"} 1 +2024-09-11 09:09:39.670033 2024-09-11 09:09:39.670039 40ca1de4-66e4-4174-8b3e-9fdf99966bb1 {"md5": "9de58fd35071bd9e60f5fe1eb9682bcc", "pid": "041595505", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Antigen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133688675", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85060294", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85060294"}], "authorized_access_point": "Hepatitis associated antigen"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133688675", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11979078", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11979078d"}], "authorized_access_point": "Antigène Australia"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125435199X", "source": "GND"}, {"type": "bf:Nbn", "value": "22623", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/22623"}], "authorized_access_point": "Antigene Australia"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4159550-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041595505", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4159550-6", "source": "GND"}], "variant_access_point": ["HAA"], "authorized_access_point": "Hepatitis-Assoziiertes Antigen"} 1 +2024-09-11 09:09:39.730196 2024-09-11 09:09:39.7302 47f9e58b-c825-486e-a8f6-d64f2a2314a2 {"md5": "8614c72063a7fff6b1f1a62b0c27723d", "pid": "041582969", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Polnisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4158296-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041582969", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4158296-2", "source": "GND"}], "variant_access_point": ["Mundart Polnisch (Großpolen)"], "authorized_access_point": "Großpolnisch"} 1 +2024-09-11 09:09:39.791849 2024-09-11 09:09:39.791854 9e92c72d-9065-4247-b14f-23ae044c1dd5 {"md5": "89c2971b7f7fe603aedc7d861caf101a", "pid": "041582675", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Familie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1270440217", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2005004783", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2005004783"}], "authorized_access_point": "Extended families"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970555512", "source": "GND"}, {"type": "bf:Nbn", "value": "10043232", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10043232"}], "authorized_access_point": "Großfamilie"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970572069", "source": "GND"}, {"type": "bf:Nbn", "value": "10043230", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10043230"}], "authorized_access_point": "Mehrgenerationenfamilie"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4158267-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041582675", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4158267-6", "source": "GND"}], "variant_access_point": ["Mehrgenerationenfamilie", "Mehrgenerationenverband"], "authorized_access_point": "Großfamilie"} 1 +2024-09-11 09:09:39.850685 2024-09-11 09:09:39.850688 408ee1a4-1a02-4c0f-9077-106ef0783945 {"md5": "e5c5c473a209394305b3494128f0a292", "pid": "041582500", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Seenadeln"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133348982X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17818710", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17818710w"}], "authorized_access_point": "Syngnathe aiguille"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4158250-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041582500", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4158250-0", "source": "GND"}], "variant_access_point": ["Syngnathus acus"], "authorized_access_point": "Große Seenadel"} 1 +2024-09-11 09:09:39.909899 2024-09-11 09:09:39.909901 ef0f248d-465c-46f4-8d3a-7d2042701874 {"md5": "d3f2130d70094760f01ec4218cc59204", "pid": "041580176", "note": [{"label": ["Nur f. sprachenübergreifende Sachverhalte, sonst verkn. z.B. Deutsch; Grammatik ; Deutschunterricht"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sprachunterricht"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134169531", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2008118370", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2008118370"}], "authorized_access_point": "Grammar, Comparative and general - Study and teaching"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134169531", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12110550", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12110550r"}], "authorized_access_point": "Grammaire - Étude et enseignement"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4158017-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041580176", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4158017-5", "source": "GND"}], "authorized_access_point": "Grammatikunterricht"} 1 +2024-09-11 09:09:39.963785 2024-09-11 09:09:39.96379 85ca01d0-1463-49c1-b399-1b290c453904 {"md5": "71ba87f4039d6d815adb5ca430b9cdeb", "pid": "041579550", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Urteil"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134373848", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85095346", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85095346"}], "authorized_access_point": "Ordeal"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134373848", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12647532", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb126475320"}], "authorized_access_point": "Ordalie"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4157955-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041579550", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4157955-0", "source": "GND"}], "variant_access_point": ["Gottesgericht (Gottesurteil)", "Ordal"], "authorized_access_point": "Gottesurteil"} 1 +2024-09-11 09:09:40.02501 2024-09-11 09:09:40.025015 44ccc143-69cc-4fb0-b905-36c77b4e17ba {"md5": "1a45b6f79437fe2e151ae71bf31a0500", "pid": "041577760", "note": [{"label": ["Form der Lehrdichtung in allen Literaturen, besonders auf der älteren Stufe ihrer Entwicklung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sinnspruch"}, {"authorized_access_point": "Gnomologie"}], "related": [{"authorized_access_point": "Sentenz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4157776-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041577760", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4157776-0", "source": "GND"}], "authorized_access_point": "Gnome"} 1 +2024-09-11 09:09:40.091068 2024-09-11 09:09:40.091073 031add7b-e6fb-497c-9cfe-13f2b9e0d65a {"md5": "6ae1444029e0f3dfe29830fda20ea053", "pid": "041573579", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Supraleitung"}], "related": [{"authorized_access_point": "Ginzburg-Landau-Gleichung"}, {"authorized_access_point": "Landau-Theorie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333593597", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16534388", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16534388h"}], "authorized_access_point": "Théorie de Ginzburg-Landau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4157357-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041573579", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4157357-2", "source": "GND"}], "variant_access_point": ["Ginsburg-Landau-Theorie"], "authorized_access_point": "Ginzburg-Landau-Theorie"} 1 +2024-09-11 09:09:40.15291 2024-09-11 09:09:40.152914 34ca4a44-7c17-4704-89fd-046f047de20b {"md5": "ff94caa93bb49ed7b7193c336eb46e49", "pid": "041570316", "note": [{"label": ["ohne HZ für den Sprengkörper"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Munition"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334236135", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85107374", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85107374"}], "authorized_access_point": "Projectiles"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334236135", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13318836", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13318836f"}], "authorized_access_point": "Projectiles"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4157031-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041570316", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4157031-5", "source": "GND"}], "authorized_access_point": "Geschoss"} 1 +2024-09-11 09:09:40.209102 2024-09-11 09:09:40.209106 c2d03907-cc40-431f-8b17-19baaae20c48 {"md5": "287b24873b1111a70f0d755d31bec180", "pid": "041570154", "note": [{"label": ["Medizinische Maßnahmen zur Anpassung der Geschlechtsmerkmale an die Geschlechtsidentität"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332649548", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11980654", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119806543"}], "authorized_access_point": "Réassignation sexuelle"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254434836", "source": "GND"}, {"type": "bf:Nbn", "value": "XX533275", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX533275"}], "authorized_access_point": "Transexualismo"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4157015-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041570154", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4157015-7", "source": "GND"}], "variant_access_point": ["Geschlechtsumwandlung", "Geschlechtsmerkmale", "Geschlechtstransformation"], "authorized_access_point": "Geschlechtsangleichung"} 1 +2024-09-11 09:09:40.270568 2024-09-11 09:09:40.270573 687f5ca2-7a75-4c2e-9b23-f5dc50a56613 {"md5": "d113f00e22ad9d928fe640824760f9a1", "pid": "041565762", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Agrarproduktverarbeitung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134033109", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11973827", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119738278"}], "authorized_access_point": "Légumes - Transformation"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4156576-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041565762", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4156576-9", "source": "GND"}], "variant_access_point": ["Gemüseverwertung", "Gemüse", "Gemüse"], "authorized_access_point": "Gemüseverarbeitung"} 1 +2024-09-11 09:09:40.33602 2024-09-11 09:09:40.336023 ef83c797-5cbf-4137-acca-7041ca5fe4ec {"md5": "a10b922e5d76379d2e3282d447f1b20d", "pid": "041563409", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133665144", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85144471", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85144471"}], "authorized_access_point": "Vultures"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133665144", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11965079", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11965079k"}], "authorized_access_point": "Vautours"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4156340-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041563409", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4156340-2", "source": "GND"}], "authorized_access_point": "Geier"} 1 +2024-09-11 09:09:42.329026 2024-09-11 09:09:42.329029 1c6050a8-b0af-4533-8e73-e1b22c532ea5 {"md5": "447d7de876c109fae4db6758cbede9d7", "pid": "041463250", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Untergruppe"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333592582", "source": "GND"}, {"type": "bf:Nbn", "value": "sh87007016", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh87007016"}], "authorized_access_point": "Borel subgroups"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4146325-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041463250", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4146325-0", "source": "GND"}], "authorized_access_point": "Borel-Untergruppe"} 1 +2024-09-11 09:09:40.393771 2024-09-11 09:09:40.393775 dcd8fa80-abe0-4cb2-8f6e-e5117dfb7f9d {"md5": "4fc67536c7b2368c22160a862887da5b", "pid": "04155812X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133871852", "source": "GND"}, {"type": "bf:Nbn", "value": "sh90005631", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh90005631"}], "authorized_access_point": "Galagos"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133871852", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13571216", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb135712162"}], "authorized_access_point": "Galagidés"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4155812-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04155812X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4155812-1", "source": "GND"}], "variant_access_point": ["Buschbabies", "Galagidae"], "authorized_access_point": "Galagos (Familie)"} 1 +2024-09-11 09:09:40.448497 2024-09-11 09:09:40.448502 86625c3c-a503-404f-86f2-24f83f375722 {"md5": "9d335ed733b808db8df4e41d479a8bbc", "pid": "041558103", "note": [{"label": ["Gattung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133871860", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85052750", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85052750"}], "authorized_access_point": "Galago (Genus)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133871860", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13571222", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb135712220"}], "authorized_access_point": "Galago (genre)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4155810-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041558103", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4155810-8", "source": "GND"}], "variant_access_point": ["Buschbaby"], "authorized_access_point": "Galago"} 1 +2024-09-11 09:09:40.50203 2024-09-11 09:09:40.502033 d1ecb9fd-0efd-474e-a413-0dce8a94f43b {"md5": "334cfe98562b65c1aeeecc8923d00b47", "pid": "041556984", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Prüftechnik"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4155698-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041556984", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4155698-7", "source": "GND"}], "variant_access_point": ["Funktionsprüfung", "Funktionskontrolle"], "authorized_access_point": "Funktionstest"} 1 +2024-09-11 09:09:40.564496 2024-09-11 09:09:40.564501 fa0d2904-94a2-46b7-923c-a26fbb73b4a7 {"md5": "1fc044659c0d1baaabceb9efd929d019", "pid": "041555252", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4155525-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041555252", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4155525-9", "source": "GND"}], "authorized_access_point": "Fructoselysin"} 1 +2024-09-11 09:09:40.628121 2024-09-11 09:09:40.628126 93bd6e3a-f1a0-4486-8671-9a22c1e6fba9 {"md5": "b2a6f9f36d741174111f9fe1ca8055c3", "pid": "041552725", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966977858", "source": "GND"}, {"type": "bf:Nbn", "value": "15115-1", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/15115-1"}], "authorized_access_point": "Datenerhebung"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970542453", "source": "GND"}, {"type": "bf:Nbn", "value": "10040547", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10040547"}], "authorized_access_point": "Datengewinnung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4155272-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041552725", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4155272-6", "source": "GND"}], "variant_access_point": ["Erhebung (Statistik)", "Statistische Erhebung", "Datenbeschaffung", "Datengewinnung", "Datenproduktion", "Datengenerierung"], "authorized_access_point": "Datenerhebung"} 1 +2024-09-11 09:09:40.685883 2024-09-11 09:09:40.68589 ca6646e8-36e1-47f4-9733-c82b37b3baa1 {"md5": "c07376da1860ef52a6efc681ae764715", "pid": "041552334", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134287275", "source": "GND"}, {"type": "bf:Nbn", "value": "sh87003395", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh87003395"}], "authorized_access_point": "Women's shelters"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134287275", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12346055", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12346055h"}], "authorized_access_point": "Centres d'hébergement pour femmes"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970550995", "source": "GND"}, {"type": "bf:Nbn", "value": "10044115", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10044115"}], "authorized_access_point": "Frauenhaus"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4155233-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041552334", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4155233-7", "source": "GND"}], "variant_access_point": ["Frauenzufluchtstätte"], "authorized_access_point": "Frauenhaus"} 1 +2024-09-11 09:09:40.739757 2024-09-11 09:09:40.739761 ca882dac-b874-4156-861f-18c63aef103b {"md5": "885a1c5acab1cea59b428c46cf771219", "pid": "041549457", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wagen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4154945-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041549457", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4154945-4", "source": "GND"}], "variant_access_point": ["Grubenwagen", "Grubenhund"], "authorized_access_point": "Förderwagen"} 1 +2024-09-11 09:10:08.02414 2024-09-11 09:10:08.024143 ebef07be-5e2e-42e5-aa8e-a6d118f4ebc4 {"md5": "9b8f87bccc0ebba354aa6bd752fe6763", "pid": "1272436322", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1272436322", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1272436322", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1272436322", "source": "GND"}], "authorized_access_point": "Klassische Grotesk"} 1 +2024-09-11 09:09:40.794242 2024-09-11 09:09:40.794245 0e8c3067-6ba4-4b93-8450-fa0dea5d2f2d {"md5": "1387a93b15552b99b0bf861d4d71192c", "pid": "041543688", "note": [{"label": ["Als Homonymenzusatz bei Personenschlagworten zugelassen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Filmkritiker"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331760828", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85147650", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85147650"}], "authorized_access_point": "Women film critics"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4154368-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041543688", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4154368-3", "source": "GND"}], "variant_access_point": ["Filmpublizistin"], "authorized_access_point": "Filmkritikerin"} 1 +2024-09-11 09:09:40.848346 2024-09-11 09:09:40.848348 a02cb485-692a-4517-8c71-4484ba2fbbb8 {"md5": "62329cc248a6eb7bbb4158a4264500fa", "pid": "041540654", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kritiker"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331761379", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12423928", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb124239284"}], "authorized_access_point": "Critiques de télévision"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4154065-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041540654", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4154065-7", "source": "GND"}], "authorized_access_point": "Fernsehkritiker"} 1 +2024-09-11 09:09:40.90562 2024-09-11 09:09:40.905623 3497d019-663a-4525-9aea-51d7fcd6c5da {"md5": "0bd5c98b15996c67b3aba799d75cee7c", "pid": "041540387", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kommunikationssatellit"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4154038-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041540387", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4154038-4", "source": "GND"}], "authorized_access_point": "Fernmeldesatellit"} 1 +2024-09-11 09:09:40.959411 2024-09-11 09:09:40.959416 1a020b94-fecf-4bf8-b67f-8e74f67c3cf2 {"md5": "00e64fae656dd9b5ad5d8a718141c071", "pid": "041539346", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Lerchen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133349419X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85123262", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85123262"}], "authorized_access_point": "Skylark"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133349419X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16670535", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16670535h"}], "authorized_access_point": "Alouette des champs"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4153934-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041539346", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4153934-5", "source": "GND"}], "variant_access_point": ["Alauda arvensis"], "authorized_access_point": "Feldlerche"} 1 +2024-09-11 09:09:41.015375 2024-09-11 09:09:41.01538 68bad41a-ab36-4110-8fa3-a21de43940de {"md5": "0bf584d91c25f63f0fceec4a7488cf1c", "pid": "041537882", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Französisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4153788-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041537882", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4153788-9", "source": "GND"}], "authorized_access_point": "Fatras"} 1 +2024-09-11 09:09:41.076251 2024-09-11 09:09:41.076255 79aadd3e-41ec-46b2-989a-69b9a86324f3 {"md5": "3392dc8aba066f38a00bd9fd38f8c899", "pid": "04152862X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Lied"}, {"authorized_access_point": "Erotische Literatur"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331605989", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85044707", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85044707"}], "authorized_access_point": "Erotic songs"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4152862-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04152862X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4152862-1", "source": "GND"}], "authorized_access_point": "Erotisches Lied"} 1 +2024-09-11 09:09:41.142224 2024-09-11 09:09:41.14223 b44fb0e7-b216-4168-b8f7-d24c504d6891 {"md5": "d144c77e4545027e5a5c5cf1a28ec98b", "pid": "041528565", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Erzählung"}, {"authorized_access_point": "Erotische Literatur"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134530471", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85044708", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85044708"}], "authorized_access_point": "Erotic stories"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134530471", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16932431", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb169324311"}], "authorized_access_point": "Nouvelles érotiques"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254325360", "source": "GND"}, {"type": "bf:Nbn", "value": "3493", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/3493"}], "authorized_access_point": "Narrativa erotica"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254425748", "source": "GND"}, {"type": "bf:Nbn", "value": "XX4718660", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX4718660"}], "authorized_access_point": "Canciones eróticas"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254425756", "source": "GND"}, {"type": "bf:Nbn", "value": "XX539152", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX539152"}], "authorized_access_point": "Cuentos eróticos"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4152856-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041528565", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4152856-6", "source": "GND"}], "authorized_access_point": "Erotische Erzählung"} 1 +2024-09-11 09:09:41.207834 2024-09-11 09:09:41.207838 0712b51c-734c-4fae-a39e-b5a7959e25d5 {"md5": "25441be29841e494e7fb1af17fdfd359", "pid": "041527186", "note": [{"label": ["Verknüpfe mit Anwendungsgebiet"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113483179X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12066490", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb120664901"}], "authorized_access_point": "Événement"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1024424219", "source": "GND"}, {"type": "bf:Nbn", "value": "10069227", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10069227"}], "authorized_access_point": "Ereignis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4152718-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041527186", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4152718-5", "source": "GND"}], "variant_access_point": ["Ereignisse"], "authorized_access_point": "Ereignis"} 1 +2024-09-11 09:09:41.266044 2024-09-11 09:09:41.266049 d33c01ad-7ed9-46c2-b2e0-143b6f6761c9 {"md5": "cf97875197327010988402029af4488d", "pid": "041527062", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Energieversorgung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134494394", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12221792", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12221792v"}], "authorized_access_point": "Pétrole - Industrie et commerce - Politique publique"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4152706-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041527062", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4152706-9", "source": "GND"}], "variant_access_point": ["Erdöl", "Ölversorgung", "Erdöl"], "authorized_access_point": "Erdölversorgung"} 1 +2024-09-11 09:09:41.326026 2024-09-11 09:09:41.326031 79c40b2f-da0a-498b-9350-7895d976a8af {"md5": "841d68f0f37c57a588e0151ae5d447f1", "pid": "041521927", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Endothel"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134405677", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF14418045", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb14418045h"}], "authorized_access_point": "Cellules endothéliales"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4152192-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041521927", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4152192-4", "source": "GND"}], "authorized_access_point": "Endothelzelle"} 1 +2024-09-11 09:09:41.383842 2024-09-11 09:09:41.383848 5c37d098-3917-4de7-84c8-b33b7d0db5f8 {"md5": "d605a387b4fb829a80f6acd0969cc564", "pid": "041511794", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Merkmal"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134831773", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85022615", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85022615"}], "authorized_access_point": "Character"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4151179-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041511794", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4151179-7", "source": "GND"}], "variant_access_point": ["Charakteristische Eigenschaft"], "authorized_access_point": "Eigenschaft"} 1 +2024-09-11 09:09:41.438862 2024-09-11 09:09:41.438866 ac6b6faa-bfa0-4cb9-b513-223c724cd490 {"md5": "5e650f369a855a9e7152eddf4f3b06df", "pid": "041511360", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Unehrlichkeit"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134060467", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85061841", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85061841"}], "authorized_access_point": "Honesty"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134060467", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11979799", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119797999"}], "authorized_access_point": "Honnêteté"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254327169", "source": "GND"}, {"type": "bf:Nbn", "value": "4444", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/4444"}], "authorized_access_point": "Onestà"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4151136-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041511360", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4151136-0", "source": "GND"}], "variant_access_point": ["Ehrenhaftigkeit"], "authorized_access_point": "Ehrlichkeit"} 1 +2024-09-11 09:09:41.494393 2024-09-11 09:09:41.494397 f0b1e702-ff43-4140-bfe4-3d747a2ba530 {"md5": "4b6d3aff450706c452a5e87e60059ed7", "pid": "041507983", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4150798-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041507983", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4150798-8", "source": "GND"}], "authorized_access_point": "Dualisierender Komplex"} 1 +2024-09-11 09:09:41.548487 2024-09-11 09:09:41.548491 de45de19-1bfb-496c-a8ed-80985444161d {"md5": "eefee24027b1c28db5702c674d5a96ea", "pid": "041506588", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Dreikronenkrieg&oldid=210977439"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Krieg"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1230558713", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85092571", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85092571"}], "authorized_access_point": "Northern Seven Years' War, 1563-1570"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4150658-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041506588", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4150658-3", "source": "GND"}], "variant_access_point": ["Nordischer Siebenjähriger Krieg", "Nordischer Krieg (1563-1570)"], "authorized_access_point": "Dreikronenkrieg"} 1 +2024-09-11 09:09:41.605373 2024-09-11 09:09:41.605375 452c2e7f-1a7b-4001-a6e2-dc3772235406 {"md5": "9acb45838317770e017d8f59df700c3f", "pid": "041505190", "note": [{"label": ["In der Regel Kompositumbildung mit dem Material."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "!041253906"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133785778", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85147059", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85147059"}], "authorized_access_point": "Wire"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133785778", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12384189", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12384189f"}], "authorized_access_point": "Fil métallique"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966723422", "source": "GND"}, {"type": "bf:Nbn", "value": "14262-0", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/14262-0"}], "authorized_access_point": "Draht"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4150519-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041505190", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4150519-0", "source": "GND"}], "authorized_access_point": "Draht"} 1 +2024-09-11 09:09:41.661763 2024-09-11 09:09:41.661767 fad3f9c8-1faf-46fc-8d0d-0710bb6123ef {"md5": "8c1c646331fc811011a8751aeb22f0be", "pid": "041504925", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Halbleiter"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134155425", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85039078", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85039078"}], "authorized_access_point": "Doped semiconductors"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134155425", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12088361", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb120883612"}], "authorized_access_point": "Semiconducteurs dopés"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254377913", "source": "GND"}, {"type": "bf:Nbn", "value": "44844", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/44844"}], "authorized_access_point": "Semiconduttori estrinseci"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4150492-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041504925", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4150492-6", "source": "GND"}], "variant_access_point": ["Störstellenhalbleiter"], "authorized_access_point": "Dotierter Halbleiter"} 1 +2024-09-11 09:09:41.727462 2024-09-11 09:09:41.727468 c15dbbb3-7419-4531-85bd-e618d40337c8 {"md5": "30b4a4726e9feb365ff36c76915d9016", "pid": "041501950", "note": [{"label": ["Ein Dispens ist die in der Regel einzelfallbezogene Aufhebung einer Rechtspflicht."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134024851", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85038453", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85038453"}], "authorized_access_point": "Dispensations (Canon law)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134024851", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11971132", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11971132f"}], "authorized_access_point": "Dispenses (droit canonique)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254336435", "source": "GND"}, {"type": "bf:Nbn", "value": "11079", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/11079"}], "authorized_access_point": "Dispensa canonica"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125442069X", "source": "GND"}, {"type": "bf:Nbn", "value": "XX537578", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX537578"}], "authorized_access_point": "Dispensas (Derecho canónico)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4150195-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041501950", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4150195-0", "source": "GND"}], "variant_access_point": ["Befreiung (Recht)", "Aussetzung (Recht)", "Ausnahmebewilligung"], "authorized_access_point": "Dispens"} 1 +2024-09-11 09:09:41.792809 2024-09-11 09:09:41.792813 fe39025b-f84e-45b8-8f1d-898ee4957ed7 {"md5": "3b29c2d8d79dfb4c9968fffa652b46b0", "pid": "041501608", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Foxtrott"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134576595", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85063225", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85063225"}], "authorized_access_point": "Hustle (Dance)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134576595", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16710437", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16710437v"}], "authorized_access_point": "Hustle (danse)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4150160-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041501608", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4150160-3", "source": "GND"}], "variant_access_point": ["Beatfox", "Discofox"], "authorized_access_point": "Diskofox"} 1 +2024-09-11 09:09:41.845262 2024-09-11 09:09:41.845266 6d3e4ac2-91e4-434d-a9c8-22e04e3f96ec {"md5": "62aaf39bc1bdb4c65cf28530f88c5f61", "pid": "041497848", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Transformator"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4149784-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041497848", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4149784-3", "source": "GND"}], "authorized_access_point": "Differentialtransformator"} 1 +2024-09-11 09:09:41.90152 2024-09-11 09:09:41.901525 fde675a2-e94f-4c8d-af1b-ed5ac22f42c6 {"md5": "7e98db2544357e4ecf2ae1c0f7277eef", "pid": "041497112", "note": [{"label": ["Als Homonymenzusatz bei Personenschlagwörtern wird Krimineller verwendet"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Krimineller"}], "related": [{"authorized_access_point": "Diebin"}, {"authorized_access_point": "Diebstahl"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331708486", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85134855", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85134855"}], "authorized_access_point": "Thieves"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331708486", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13319307", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13319307q"}], "authorized_access_point": "Voleurs"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254344241", "source": "GND"}, {"type": "bf:Nbn", "value": "17481", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/17481"}], "authorized_access_point": "Ladri"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4149711-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041497112", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4149711-9", "source": "GND"}], "authorized_access_point": "Dieb"} 1 +2024-09-11 09:09:42.728066 2024-09-11 09:09:42.72807 b87601a5-79ef-404c-9f33-78428cd5972e {"md5": "79fdd97a4a2880103193da29a92231d3", "pid": "041448723", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sensor"}], "related": [{"authorized_access_point": "Beschleunigungsmesser"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134629885", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85000350", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85000350"}], "authorized_access_point": "Accelerometers"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134629885", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12520647", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb125206471"}], "authorized_access_point": "Accéléromètres"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4144872-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041448723", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4144872-8", "source": "GND"}], "variant_access_point": ["Beschleunigungsaufnehmer", "Trägheitssensor", "Schwingungsaufnehmer", "Vibrationsaufnehmer"], "authorized_access_point": "Beschleunigungssensor"} 1 +2024-09-11 09:09:41.96276 2024-09-11 09:09:41.962765 8b157198-42c7-4e9b-bf03-6d4b648f6560 {"md5": "1af068a594f2ba6309dab479dda97d86", "pid": "041490673", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134325207", "source": "GND"}, {"type": "bf:Nbn", "value": "sh99005506", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99005506"}], "authorized_access_point": "Denaturation"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134325207", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12437686", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12437686n"}], "authorized_access_point": "Dénaturation (chimie)"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256204498", "source": "GND"}, {"type": "bf:Nbn", "value": "2178", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_2178"}], "authorized_access_point": "denaturation"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4149067-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041490673", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4149067-8", "source": "GND"}], "variant_access_point": ["Denaturierung (Biochemie)"], "authorized_access_point": "Denaturieren"} 1 +2024-09-11 09:09:42.022159 2024-09-11 09:09:42.022163 b1929d6b-522d-4285-864c-8772634b624c {"md5": "ee8e7994ee2c67ca07db42944d14ad1f", "pid": "041489837", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ladungsträger"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4148983-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041489837", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4148983-4", "source": "GND"}], "variant_access_point": ["Loch (Halbleiterphysik)"], "authorized_access_point": "Defektelektron"} 1 +2024-09-11 09:09:42.080966 2024-09-11 09:09:42.080969 cfdfcd64-2c55-4285-a416-bd60ec0929b8 {"md5": "0db49a8bc4fe57b0ac4fb267ea7006c6", "pid": "041483626", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Werkstoffschädigung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113404111X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11976355", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11976355v"}], "authorized_access_point": "Fissuration"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4148362-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041483626", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4148362-5", "source": "GND"}], "variant_access_point": ["Crazebildung"], "authorized_access_point": "Crazing"} 1 +2024-09-11 09:09:42.145795 2024-09-11 09:09:42.1458 6f627db8-66ea-4603-9c42-090209227447 {"md5": "b94b087f042c35d6f79abca5d994a9b5", "pid": "041479017", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Chorraum"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334557462", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2006008364", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2006008364"}], "authorized_access_point": "Chevets"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334557462", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15043419", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15043419x"}], "authorized_access_point": "Chevets (architecture)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4147901-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041479017", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4147901-4", "source": "GND"}], "authorized_access_point": "Chorhaupt"} 1 +2024-09-11 09:09:42.212492 2024-09-11 09:09:42.212497 f11e7e66-137f-4ac3-bf40-c784d59ab0d7 {"md5": "19f5f299da974c1aff9529a1fc64c5fa", "pid": "041467760", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Vögel"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134790635", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2007010954", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2007010954"}], "authorized_access_point": "Endemic birds"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134790635", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12352687", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb123526871"}], "authorized_access_point": "Oiseaux nicheurs"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4146776-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041467760", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4146776-0", "source": "GND"}], "variant_access_point": ["Brutvogel", "Einheimische Vögel"], "authorized_access_point": "Brutvögel"} 1 +2024-09-11 09:09:42.270924 2024-09-11 09:09:42.270929 bd08905b-c34f-43d2-b8f8-cd1fda5b56ed {"md5": "2512d7f91367f6bcbaba6dfd5bf05424", "pid": "04146351X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bornaviridae"}], "related": [{"authorized_access_point": "Borna-Krankheit"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133805108", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12469236", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb124692363"}], "authorized_access_point": "Virus de la maladie de Borna"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256199036", "source": "GND"}, {"type": "bf:Nbn", "value": "18805", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_18805"}], "authorized_access_point": "Borna disease virus"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4146351-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04146351X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4146351-1", "source": "GND"}], "variant_access_point": ["Borna disease virus", "BDV"], "authorized_access_point": "Bornavirus"} 1 +2024-09-11 09:09:42.78691 2024-09-11 09:09:42.786916 195ba7cb-3cd9-4496-b6c8-46c05cf1c0a9 {"md5": "fb5fc0f4ca1c4facbca027f5229d0537", "pid": "041445120", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Methanolkraftstoff"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4144512-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041445120", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4144512-0", "source": "GND"}], "variant_access_point": ["Methanol-Benzin-Mischkraftstoff"], "authorized_access_point": "Benzin-Methanol-Mischkraftstoff"} 1 +2024-09-11 09:09:42.381519 2024-09-11 09:09:42.381524 ca4178f7-d19e-4a87-8833-10fce0f73568 {"md5": "3d717f940fd99dd91d9d44b61082891f", "pid": "041462467", "note": [{"label": ["benutzt für das Ergebnis des Bohrens"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bohren"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134044232", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85015851", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85015851"}], "authorized_access_point": "Boring"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134044232", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11976902", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11976902x"}], "authorized_access_point": "Forage"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254340750", "source": "GND"}, {"type": "bf:Nbn", "value": "14775", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/14775"}], "authorized_access_point": "Perforazione"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254413731", "source": "GND"}, {"type": "bf:Nbn", "value": "XX526227", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX526227"}], "authorized_access_point": "Perforación y sondeo"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4146246-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041462467", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4146246-4", "source": "GND"}], "authorized_access_point": "Bohrung"} 1 +2024-09-11 09:09:42.437771 2024-09-11 09:09:42.437775 76318d8b-6b77-4f5d-aa53-3f8ff46a64c1 {"md5": "38622f89ac183a033aa5c44d48058d27", "pid": "041456629", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Biaryle"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134598122", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12364695", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12364695b"}], "authorized_access_point": "Biphényles"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256197475", "source": "GND"}, {"type": "bf:Nbn", "value": "933", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_933"}], "authorized_access_point": "biphenyl"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4145662-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041456629", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4145662-2", "source": "GND"}], "variant_access_point": ["Diphenyl", "Phenylbenzol"], "authorized_access_point": "Biphenyl"} 1 +2024-09-11 09:09:42.494251 2024-09-11 09:09:42.494256 b592739d-e6f7-42a1-ba7a-9c43526c4a27 {"md5": "32ed8147f6da2e83df806576e2026a97", "pid": "041455908", "note": [{"label": ["Nicht als FormSW verwendet, hierfür f Bibliografie"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Personalbibliografie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133681530", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85014117", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85014117"}], "authorized_access_point": "Bio-bibliography"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133681530", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11976253", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11976253w"}], "authorized_access_point": "Biobibliographie"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254412220", "source": "GND"}, {"type": "bf:Nbn", "value": "XX525759", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX525759"}], "authorized_access_point": "Biobibliografías"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4145590-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041455908", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4145590-3", "source": "GND"}], "variant_access_point": ["Biobibliographie"], "authorized_access_point": "Biobibliografie"} 1 +2024-09-11 09:09:42.55291 2024-09-11 09:09:42.552914 bb34fa13-d83a-42d1-9c41-67b93bd30000 {"md5": "b54af7d9be154e58b1acf29fe3744e46", "pid": "04145412X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Telefonieren"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134060017", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85143224", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85143224"}], "authorized_access_point": "Video telephone"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134592973", "source": "GND"}, {"type": "bf:Nbn", "value": "sh88004839", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh88004839"}], "authorized_access_point": "Videoconferencing"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134592973", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12192080", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12192080f"}], "authorized_access_point": "Visioconférences"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134592965", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12129502", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb121295028"}], "authorized_access_point": "Vidéocommunications"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134060017", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11979698", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11979698p"}], "authorized_access_point": "Visiophone"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4145412-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04145412X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4145412-1", "source": "GND"}], "variant_access_point": ["Bildtelephonie", "Bildfernsprechen"], "authorized_access_point": "Bildtelefonie"} 1 +2024-09-11 09:09:42.610351 2024-09-11 09:09:42.610354 13613cfc-bfd9-4550-a3de-57a6e5a95e6e {"md5": "4f4d5fe13b09464ca11427b968c8696a", "pid": "041451732", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Beweisverbot"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4145173-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041451732", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4145173-9", "source": "GND"}], "variant_access_point": ["Beweisgewinnungsverbot"], "authorized_access_point": "Beweiserhebungsverbot"} 1 +2024-09-11 09:09:42.662902 2024-09-11 09:09:42.662906 25efad65-4f7e-4c16-b9c1-42769bfedcef {"md5": "092227e9f6ea3117fc40e98ec0b82506", "pid": "041449347", "note": [{"label": ["Benutzt für alle Bestechungstatbestände (§§ 299 ff, 331-335a StGB), die Schlagwörter Amtsträger oder Angestellter sind nicht pleonastisch."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Korruption"}], "related": [{"authorized_access_point": "Schmiergeld"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970565925", "source": "GND"}, {"type": "bf:Nbn", "value": "10038818", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10038818"}], "authorized_access_point": "Korruption"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4144934-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041449347", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4144934-4", "source": "GND"}], "variant_access_point": ["Bestechlichkeit", "Bestechungsdelikt", "Vorteilsannahme", "Vorteilsgewährung"], "authorized_access_point": "Bestechung"} 1 +2024-09-11 09:09:42.909515 2024-09-11 09:09:42.90952 6e0176a2-200f-414a-b2a7-2fc84f2a4a9f {"md5": "2055c38d270c9fb99826fedbcb180160", "pid": "041444817", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Benutzerfreundlichkeit"}, {"authorized_access_point": "Benutzererlebnis"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1170172067", "source": "GND"}, {"type": "bf:Nbn", "value": "30168-0", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/30168-0"}], "authorized_access_point": "Nutzererfahrung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4144481-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041444817", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4144481-4", "source": "GND"}], "variant_access_point": ["Benutzerfeedback", "Benutzer"], "authorized_access_point": "Benutzerrückmeldung"} 1 +2024-09-11 09:09:42.972662 2024-09-11 09:09:42.972665 9efa114b-d2e0-42f0-b2c3-b754fcaa57dd {"md5": "ea70cf83c5b4aa72a651f61630e62aed", "pid": "041444809", "note": [{"label": ["Empirische Untersuchung der tatsächlichen oder auch nur potentiellen Benutzer einer wiss. Bibliothek, im Bereich der ÖB meist Leserforschung, im Bereich der Museen Besucherforschung genannt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Benutzerverhalten"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970537077", "source": "GND"}, {"type": "bf:Nbn", "value": "10038141", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10038141"}], "authorized_access_point": "Benutzerforschung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4144480-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041444809", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4144480-2", "source": "GND"}], "variant_access_point": ["Besucherforschung", "Benutzer", "Nutzerforschung", "Nutzer"], "authorized_access_point": "Benutzerforschung"} 1 +2024-09-11 09:09:43.028202 2024-09-11 09:09:43.028205 62693f2f-b4f7-4421-8d31-8a5fcd88e30f {"md5": "8db39014d6bd41832f85497f7a27c3b2", "pid": "041444108", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Notstandsrecht"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334565120", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85127508", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85127508"}], "authorized_access_point": "State of siege"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334565120", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11978466", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119784668"}], "authorized_access_point": "État de siège"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4144410-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041444108", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4144410-3", "source": "GND"}], "authorized_access_point": "Belagerungszustand"} 1 +2024-09-11 09:09:43.088641 2024-09-11 09:09:43.08865 9256b09d-2a65-4010-9158-d10a1772df54 {"md5": "282f6afe88d595d53e1057d83fd7563e", "pid": "04144115X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tanz"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133810888", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85012180", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85012180"}], "authorized_access_point": "Basse danse (Dance)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133810888", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12484923", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12484923w"}], "authorized_access_point": "Basse danse (danse)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4144115-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04144115X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4144115-1", "source": "GND"}], "variant_access_point": ["Bassedanse"], "authorized_access_point": "Basse danse"} 1 +2024-09-11 09:09:43.158294 2024-09-11 09:09:43.158299 d4723562-9e26-4478-9d21-7ec24216c0c0 {"md5": "c2be82457676985c3ea212896353af22", "pid": "041440706", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333373147", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17092938", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17092938n"}], "authorized_access_point": "Percoïdés"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4144070-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041440706", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4144070-5", "source": "GND"}], "variant_access_point": ["Percoidei"], "authorized_access_point": "Barschfische"} 1 +2024-09-11 09:09:43.223622 2024-09-11 09:09:43.223625 e3c6afc7-4dc1-4792-b440-b55c80b4553e {"md5": "a31eae305f8e28233223dbd2769a335d", "pid": "041439686", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Flöte"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4143968-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041439686", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4143968-5", "source": "GND"}], "authorized_access_point": "Bambusflöte"} 1 +2024-09-11 09:09:43.276791 2024-09-11 09:09:43.276795 787d3748-8cfb-4846-9634-85810d2d1dd8 {"md5": "2a298e024d929c787755ac6617a21cfd", "pid": "041436512", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Plakat"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133809936", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12482403", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12482403d"}], "authorized_access_point": "Affiches d'expositions"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4143651-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041436512", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4143651-9", "source": "GND"}], "authorized_access_point": "Ausstellungsplakat"} 1 +2024-09-11 09:10:42.159295 2024-09-11 09:10:42.159303 d88601eb-faff-45fb-836b-6be5ef792b64 {"md5": "3ea9decb2b7841a1dd78e44ee6ac7449", "pid": "041374444", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4137444-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041374444", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4137444-7", "source": "GND"}], "variant_access_point": ["Fettsteuer"], "authorized_access_point": "Fettabgabe"} 1 +2024-09-11 09:09:43.336327 2024-09-11 09:09:43.336332 6dc0ca85-2925-4247-a3ae-4da6433b601f {"md5": "abc6c9486f098d3e8fe6432e11b98aae", "pid": "041434722", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_von_Halbleitergeh%C3%A4usen&oldid=230043997"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gehäuse"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4143472-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041434722", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4143472-9", "source": "GND"}], "variant_access_point": ["Chipgehäuse", "Package (Elektronik)"], "authorized_access_point": "Halbleitergehäuse"} 1 +2024-09-11 09:09:43.389616 2024-09-11 09:09:43.38962 69bbc9e4-184f-400d-970c-37423b116a9e {"md5": "0af5463c48466ff795aae0841500dee3", "pid": "041427548", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4142754-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041427548", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4142754-3", "source": "GND"}], "variant_access_point": ["Antrieb (Technik)"], "authorized_access_point": "Antriebssteuerung"} 1 +2024-09-11 09:09:43.444427 2024-09-11 09:09:43.444432 9eb02764-fb34-459c-b0f3-66be44625889 {"md5": "c02e672ab669522d90f1a67c6abfa3df", "pid": "041424654", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4142465-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041424654", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4142465-7", "source": "GND"}], "authorized_access_point": "Ellipsoid"} 1 +2024-09-11 09:09:43.499758 2024-09-11 09:09:43.499763 d7b76d7b-2d7e-4121-9983-a8c6bf13ce3c {"md5": "4bba16a4561f1f015ebcdf5bb2b82a1c", "pid": "041419464", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Energieversorgung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4141946-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041419464", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4141946-7", "source": "GND"}], "authorized_access_point": "Allgemeine Versorgungsbedingungen"} 1 +2024-09-11 09:09:43.55064 2024-09-11 09:09:43.550643 528c0783-5ae6-42d4-be1a-64270e48fdbf {"md5": "b5547af5618c1c839fb42f0b6061bf16", "pid": "041413334", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134252064", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12272667", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12272667n"}], "authorized_access_point": "Actinides - Composés"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4141333-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041413334", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4141333-7", "source": "GND"}], "authorized_access_point": "Actinoidverbindungen"} 1 +2024-09-11 09:09:43.607015 2024-09-11 09:09:43.607019 1e6882a9-967b-4f34-9699-410f34a679b4 {"md5": "fa37b1e824fd72b6dbe233da8aa92ef8", "pid": "041413083", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4141308-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041413083", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4141308-8", "source": "GND"}], "authorized_access_point": "Acridinfarbstoff"} 1 +2024-09-11 09:09:43.655406 2024-09-11 09:09:43.655411 e2a117f7-2b40-4704-b427-4496b31d16d3 {"md5": "3a6a6709677916a57b4b78414ec0484e", "pid": "041410513", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4141051-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041410513", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4141051-8", "source": "GND"}], "authorized_access_point": "Abgeschlossene Kategorie"} 1 +2024-09-11 09:09:43.709422 2024-09-11 09:09:43.709426 c3f83c99-3851-444d-ae31-9ccfb1c84eb7 {"md5": "1477fb045d5994495da3d8316e5deb8e", "pid": "041406605", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Modellorganismus"}], "related": [{"authorized_access_point": "Tierversuch"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134047444", "source": "GND"}, {"type": "bf:Nbn", "value": "sh99002322", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99002322"}], "authorized_access_point": "Animal models"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134047444", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11977453", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11977453p"}], "authorized_access_point": "Modèles animaux"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256264016", "source": "GND"}, {"type": "bf:Nbn", "value": "34782", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_34782"}], "authorized_access_point": "animal models"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241625255", "source": "GND"}, {"type": "bf:Nbn", "value": "D023421", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D023421"}], "authorized_access_point": "Models, Animal"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4140660-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041406605", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4140660-6", "source": "GND"}], "authorized_access_point": "Tiermodell"} 1 +2024-09-11 09:09:43.761403 2024-09-11 09:09:43.761406 fe3d0534-0bb1-4c6c-a3af-320b7ca3eea2 {"md5": "c643ffed117fd2e530e59a4119e73930", "pid": "041403886", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Industrieanlage"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134612893", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85065869", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85065869"}], "authorized_access_point": "Industrial equipment"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134612893", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13162966", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13162966w"}], "authorized_access_point": "Équipement industriel"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4140388-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041403886", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4140388-5", "source": "GND"}], "variant_access_point": ["Fertigungseinrichtung", "Produktionsanlage"], "authorized_access_point": "Fertigungsanlage"} 1 +2024-09-11 09:09:43.816387 2024-09-11 09:09:43.816391 63f08dce-fbad-4f4f-8f72-baf10ef6e344 {"md5": "1f909d1ebd74a7884f0f08e4b2a37d94", "pid": "041403657", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Gemeinschaftsbewegung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331869218", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2006006724", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2006006724"}], "authorized_access_point": "Holiness movement"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331869218", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11968664", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11968664x"}], "authorized_access_point": "Mouvement de sanctification"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4140365-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041403657", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4140365-4", "source": "GND"}], "variant_access_point": ["Holiness movement"], "authorized_access_point": "Heiligungsbewegung"} 1 +2024-09-11 09:09:43.877148 2024-09-11 09:09:43.877152 a2ac68cd-89b1-40cd-902d-286afdc1be32 {"md5": "5a36b55f5cb67c210cdb85eec70b4106", "pid": "041401522", "note": [{"label": ["Sprache des Tolai-Volkes in Papua-Neuguinea; außerdem Zweitsprache auf der Insel New Britain"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Melanesische Sprachen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134153449", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85073344", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85073344"}], "authorized_access_point": "Tolai language"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4140152-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041401522", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4140152-9", "source": "GND"}], "variant_access_point": ["Tuna (Sprache)", "Gunantuna", "Tolai (Sprache)", "Tinata Tuna", "Blanche Bay", "New Britain Language", "Tolai Tok Ples", "Kuanua-Sprache"], "authorized_access_point": "Kuanua"} 1 +2024-09-11 09:09:43.933999 2024-09-11 09:09:43.934005 b7aa25a8-9f38-4515-8020-f6482dc77096 {"md5": "51dc353f4717c9b8350324052bae85fd", "pid": "041400909", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133915647", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85120738", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85120738"}], "authorized_access_point": "Sexual instinct"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133915647", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12050215", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb120502152"}], "authorized_access_point": "Libido"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4140090-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041400909", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4140090-2", "source": "GND"}], "authorized_access_point": "Libido"} 1 +2024-09-11 09:09:43.994538 2024-09-11 09:09:43.994543 5be8a571-8b24-4b81-8e6a-6185d672f88d {"md5": "bad2b1ee7bfc958df9f6c5666148f871", "pid": "041398424", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Moderne"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134154844", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85026469", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85026469"}], "authorized_access_point": "Civilization, Modern"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134154844", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12086863", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12086863n"}], "authorized_access_point": "Modernité"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4139842-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041398424", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4139842-7", "source": "GND"}], "authorized_access_point": "Modernität"} 1 +2024-09-11 09:09:44.050436 2024-09-11 09:09:44.050439 d99659d2-f4f7-49b9-9e57-e56e07913b07 {"md5": "8ec977e54617c0962e99ba8355b5eeae", "pid": "041397932", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wärmebehandlung"}], "related": [{"authorized_access_point": "Härtbarkeit"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134705697", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11976092", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119760927"}], "authorized_access_point": "Trempe"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4139793-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041397932", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4139793-9", "source": "GND"}], "variant_access_point": ["Härtung"], "authorized_access_point": "Härten"} 1 +2024-09-11 09:09:44.107792 2024-09-11 09:09:44.107796 b5b06142-7e36-4e23-b241-b3339b4ebc78 {"md5": "dd3bbdb16953fe497177b859214443c6", "pid": "041397150", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Festigkeit"}, {"authorized_access_point": "Bruchverhalten"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4139715-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041397150", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4139715-0", "source": "GND"}], "variant_access_point": ["Bruchsicherheit", "Bruchwiderstand"], "authorized_access_point": "Bruchfestigkeit"} 1 +2024-09-11 09:09:45.162924 2024-09-11 09:09:45.162928 21b3f9d4-f06a-49e3-9e0d-72cf799e0402 {"md5": "5bff64ab230ada6cfed1e30e2c935fb8", "pid": "041368118", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kulturelle Einrichtung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133948162", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11939893", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11939893p"}], "authorized_access_point": "Centres culturels"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4136811-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041368118", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4136811-3", "source": "GND"}], "variant_access_point": ["Kulturzentren"], "authorized_access_point": "Kulturzentrum"} 1 +2024-09-11 09:09:44.16058 2024-09-11 09:09:44.160582 918c6a89-3ce3-487e-a578-498b15039e00 {"md5": "daf11abc60d487bf6f7c1163545a0d33", "pid": "04139674X", "note": [{"label": ["Festlegung des Geschlechts während der Individualentwicklung durch genetische oder andere Faktoren"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Determination (Ontogenie)"}], "related": [{"authorized_access_point": "Geschlechtsdifferenzierung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133633609", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85120579", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85120579"}], "authorized_access_point": "Genetic sex determination"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134697333", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85120585", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85120585"}], "authorized_access_point": "Sex differentiation"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134697511", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85120578", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85120578"}], "authorized_access_point": "Diagnostic sex determination"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134697554", "source": "GND"}, {"type": "bf:Nbn", "value": "sh00005538", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00005538"}], "authorized_access_point": "Human remains (Archaeology) - Sex determination"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134797311", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85023312", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85023312"}], "authorized_access_point": "Chicks - Sexing"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113479732X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85048804", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85048804"}], "authorized_access_point": "Fishes - Sexing"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133633609", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11941363", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11941363n"}], "authorized_access_point": "Détermination génétique du sexe"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134697333", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11953259", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11953259t"}], "authorized_access_point": "Différenciation sexuelle"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254366199", "source": "GND"}, {"type": "bf:Nbn", "value": "33810", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/33810"}], "authorized_access_point": "Determinazione del sesso"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254434798", "source": "GND"}, {"type": "bf:Nbn", "value": "XX555988", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX555988"}], "authorized_access_point": "Sexaje de pollos"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254434801", "source": "GND"}, {"type": "bf:Nbn", "value": "XX4736771", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX4736771"}], "authorized_access_point": "Determinación genética del sexo"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256217190", "source": "GND"}, {"type": "bf:Nbn", "value": "14226", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_14226"}], "authorized_access_point": "sex determination"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4139674-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04139674X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4139674-1", "source": "GND"}], "variant_access_point": ["Geschlechtsdetermination", "Sexuelle Determination"], "authorized_access_point": "Geschlechtsbestimmung"} 1 +2024-09-11 09:09:44.230426 2024-09-11 09:09:44.230431 f7057e44-9cb5-4fb8-8299-e538b8ab134c {"md5": "7baed04262deb16600b213d3a4a0c252", "pid": "041395786", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Rachenkrebs"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134620969", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2010009369", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2010009369"}], "authorized_access_point": "Hypopharynx - Cancer"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241606749", "source": "GND"}, {"type": "bf:Nbn", "value": "D007012", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D007012"}], "authorized_access_point": "Hypopharyngeal Neoplasms"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4139578-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041395786", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4139578-5", "source": "GND"}], "authorized_access_point": "Hypopharynxkrebs"} 1 +2024-09-11 09:09:44.287079 2024-09-11 09:09:44.287083 403fcfbb-5c03-4e18-a212-8b25e269ae78 {"md5": "b951b47c11cf89e967e0af3cfab70055", "pid": "04139531X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tonbandgerät"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133638651", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85079736", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85079736"}], "authorized_access_point": "Cassette tape recorders"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133638651", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11944483", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119444838"}], "authorized_access_point": "Magnétophones à cassettes"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4139531-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04139531X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4139531-1", "source": "GND"}], "variant_access_point": ["Cassettenrecorder", "Kassettentonbandgerät", "Tonbandkassettengerät"], "authorized_access_point": "Kassettenrecorder"} 1 +2024-09-11 09:09:44.343131 2024-09-11 09:09:44.343135 39842684-f5a4-4416-a7e2-c07cdc3800b8 {"md5": "755cf6d522f4c9d39400a954d654b355", "pid": "041393848", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bildhauer"}], "related": [{"authorized_access_point": "Steinmetz"}, {"authorized_access_point": "Steinplastik"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134164718", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12104643", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12104643h"}], "authorized_access_point": "Sculpteurs sur pierre"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4139384-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041393848", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4139384-3", "source": "GND"}], "authorized_access_point": "Steinbildhauer"} 1 +2024-09-11 09:09:44.399388 2024-09-11 09:09:44.399393 12a4c1af-6b7a-4d5f-9513-fa389bf25614 {"md5": "bee79e5d7fc340cdfa56876279affb2b", "pid": "041392736", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334215359", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2001009140", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2001009140"}], "authorized_access_point": "Transfer"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334215359", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13319743", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13319743p"}], "authorized_access_point": "Mutations"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4139273-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041392736", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4139273-5", "source": "GND"}], "variant_access_point": ["Arbeitnehmer"], "authorized_access_point": "Versetzung (Arbeitsrecht)"} 1 +2024-09-11 09:09:45.221584 2024-09-11 09:09:45.221587 b9151d42-6222-41b1-bb91-bc0ab35635b2 {"md5": "60aba997826e0c9d7087a0eda74c0c46", "pid": "041367782", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Flüssigkeitsfilm"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4136778-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041367782", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4136778-9", "source": "GND"}], "variant_access_point": ["Fallfilm"], "authorized_access_point": "Rieselfilm"} 1 +2024-09-11 09:09:56.779828 2024-09-11 09:09:56.779833 3a1eb90c-7e26-4d0e-b734-87ad5188ad05 {"md5": "59b9440d4c429937bb1c8723bd9e96b8", "pid": "1336763213", "note": [{"label": ["Internet - https://www.klingspor-museum.de/Schriftgiessereien.html"], "noteType": "dataSource"}, {"label": ["Entstehungszeit 1948"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336763213", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336763213", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336763213", "source": "GND"}], "authorized_access_point": "Kumlien (Druckschrift)"} 1 +2024-09-11 09:09:44.456663 2024-09-11 09:09:44.456667 075a4100-a713-4614-b690-5cba6e99ec2d {"md5": "5e60ac3aac6b4f8650d14d58b5a25ccf", "pid": "041385896", "note": [{"label": ["Buntpapier, das das Aussehen farbigen Marmors imitiert"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Buntpapier"}], "related": [{"authorized_access_point": "Marmorierung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133679099", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85080956", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85080956"}], "authorized_access_point": "Marbled papers"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133679099", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11975028", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11975028w"}], "authorized_access_point": "Papier marbré"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254459529", "source": "GND"}, {"type": "bf:Nbn", "value": "XX538888", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX538888"}], "authorized_access_point": "Papel marmoleado"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4138589-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041385896", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4138589-5", "source": "GND"}], "variant_access_point": ["Marmoriertes Papier", "Tunkpapier", "Tunkmarmor", "Tunkmarmorpapier", "Türkisch Papier", "Türkisch Marmor"], "authorized_access_point": "Marmorpapier"} 1 +2024-09-11 09:09:44.514501 2024-09-11 09:09:44.514505 e990e2a0-6c12-404e-839d-ed6e5baab7cf {"md5": "0a67f52a7e22f2e6f5898f29de32215a", "pid": "041385659", "note": [{"label": ["Gemeint ist die adaptive Reaktion des Organismus, z.B.Adrenalinausschüttung etc.", "Im Bedarfsfall kann das SW über eine entsprechende Sys.Nr. auch in der Biologie verwendet werden. Für den psychischen Stress benutze Stress."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Stress"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133756859", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85128702", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85128702"}], "authorized_access_point": "Stress (Physiology)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134230729", "source": "GND"}, {"type": "bf:Nbn", "value": "sh00004590", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00004590"}], "authorized_access_point": "Effect of stress on"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133756859", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13319737", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13319737r"}], "authorized_access_point": "Stress - Aspect physiologique"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134230729", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12248546", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb122485467"}], "authorized_access_point": "Effets du stress"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4138565-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041385659", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4138565-2", "source": "GND"}], "variant_access_point": ["Vegetative Stressreaktion", "Stressverarbeitung", "Stress", "Physiologische Stressreaktion", "Stressantwort"], "authorized_access_point": "Stressreaktion"} 1 +2024-09-11 09:09:44.574114 2024-09-11 09:09:44.574117 5d8dcc8f-8cb5-487e-94c2-b97dcaf8f1e2 {"md5": "7411dde21367b66e3d6a59ab4a062844", "pid": "041382994", "note": [{"label": ["Unterrichtsfach aus einer Gruppe von Schulfächern, aus der ein Schüler auszuwählen hat"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Obligatorischer Unterricht"}, {"authorized_access_point": "Wahlbereich"}, {"authorized_access_point": "Unterrichtsfach"}], "related": [{"authorized_access_point": "Wahlpflichtunterricht"}, {"authorized_access_point": "Wahlfach"}, {"authorized_access_point": "Pflichtfach"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134333277", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12461627", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb124616279"}], "authorized_access_point": "Matières à option"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970603010", "source": "GND"}, {"type": "bf:Nbn", "value": "10061888", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10061888"}], "authorized_access_point": "Wahlpflichtfach"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4138299-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041382994", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4138299-7", "source": "GND"}], "variant_access_point": ["Wahlpflichtfächer"], "authorized_access_point": "Wahlpflichtfach"} 1 +2024-09-11 09:09:44.637173 2024-09-11 09:09:44.637176 691a67a7-ae21-46d0-b6f1-c6c84242359d {"md5": "ce12446b55a2ed890aac83ec75460926", "pid": "041380827", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bankenaufsicht"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4138082-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041380827", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4138082-4", "source": "GND"}], "variant_access_point": ["Sparkasse"], "authorized_access_point": "Sparkassenaufsicht"} 1 +2024-09-11 09:09:44.692204 2024-09-11 09:09:44.692209 ee006388-5e54-47d6-993a-2813ad6f9922 {"md5": "698fdcdbcbc1bf4b3c1a0e68965e747b", "pid": "041378970", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Forstproduktion"}], "related": [{"authorized_access_point": "Holzwirtschaft"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256222356", "source": "GND"}, {"type": "bf:Nbn", "value": "28194", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_28194"}], "authorized_access_point": "wood production"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4137897-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041378970", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4137897-0", "source": "GND"}], "variant_access_point": ["Holz", "Holz"], "authorized_access_point": "Holzproduktion"} 1 +2024-09-11 09:09:44.746065 2024-09-11 09:09:44.746068 c9d414dd-cf52-460b-ad3f-47b717d4e74b {"md5": "fc5675db60df0622d372d4fc78d4da2f", "pid": "041378296", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Autor"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4137829-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041378296", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4137829-5", "source": "GND"}], "authorized_access_point": "Urheber"} 1 +2024-09-11 09:09:48.621169 2024-09-11 09:09:48.621178 49824ee5-08a1-4346-8fba-721dbaab3024 {"md5": "0edf71b4d6baa4941793ed51aa0f2396", "pid": "041217020", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Botanik"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4121702-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041217020", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4121702-0", "source": "GND"}], "authorized_access_point": "Spezielle Botanik"} 1 +2024-09-11 09:09:44.799381 2024-09-11 09:09:44.799387 1347e4af-c126-464e-989a-3cd956aa8363 {"md5": "c18feff6118d17bee3817d2fd210c2da", "pid": "04137651X", "note": [{"label": ["Von einer Kirche herausgegebene Sammlung geistlicher Lieder und Gesänge zum liturgischen und privaten Gebrauch"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Liederbuch"}], "related": [{"authorized_access_point": "Kirchenlied"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134587139", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85063599", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85063599"}], "authorized_access_point": "Hymns"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134587139", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13505214", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13505214w"}], "authorized_access_point": "Hymnes"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4137651-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04137651X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4137651-1", "source": "GND"}], "variant_access_point": ["Gesangsbuch", "Kirchengesangbuch", "Kirchenliederbuch"], "authorized_access_point": "Gesangbuch"} 1 +2024-09-11 09:09:44.860055 2024-09-11 09:09:44.860059 f14a92c9-93a4-4db5-b5c4-11ba4b3c529c {"md5": "50d61c3d6bd55ae80d5590cf50fa3aaf", "pid": "041375785", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4137578-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041375785", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4137578-6", "source": "GND"}], "variant_access_point": ["Nachkommenschaft", "Nachkommen", "Nachfahre", "Nachfahren"], "authorized_access_point": "Nachkomme"} 1 +2024-09-11 09:09:44.916698 2024-09-11 09:09:44.916704 e1730d09-48db-4d50-a3a6-03723cc1d03a {"md5": "ba966530448fbe688291baf2e26987cb", "pid": "041375157", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332651100", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12043461", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb120434619"}], "authorized_access_point": "Abcès"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256187542", "source": "GND"}, {"type": "bf:Nbn", "value": "8564", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_8564"}], "authorized_access_point": "abscesses"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241589364", "source": "GND"}, {"type": "bf:Nbn", "value": "D000038", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000038"}], "authorized_access_point": "Abscess"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4137515-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041375157", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4137515-4", "source": "GND"}], "authorized_access_point": "Abszess"} 1 +2024-09-11 09:09:44.982804 2024-09-11 09:09:44.982809 6b7946e6-966c-4258-8d32-359e40dca0fe {"md5": "2e2a7287abc116beffa1463ba3e9988b", "pid": "041373146", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331703506", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85011924", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85011924"}], "authorized_access_point": "Barrages"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331703506", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11947035", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119470351"}], "authorized_access_point": "Barrages"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125620403X", "source": "GND"}, {"type": "bf:Nbn", "value": "2121", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_2121"}], "authorized_access_point": "dams"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4137314-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041373146", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4137314-5", "source": "GND"}], "authorized_access_point": "Damm"} 1 +2024-09-11 09:09:45.051006 2024-09-11 09:09:45.051009 d4e7bfdc-0aa7-48e4-9c05-7f8306d222d4 {"md5": "12b05316bf9fdfc54c800475d6228155", "pid": "041372867", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Unternehmen_Seel%C3%B6we&oldid=203501632"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Invasion"}, {"authorized_access_point": "Planung"}], "related": [{"authorized_access_point": "Zweiter Weltkrieg"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134571194", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85095008", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85095008"}], "authorized_access_point": "Operation Sea Lion"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134571194", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16599920", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb165999200"}], "authorized_access_point": "Opération Seelöwe (1940)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4137286-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041372867", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4137286-4", "source": "GND"}], "variant_access_point": ["Seelöwe (Invasion)", "Operation Seelöwe", "Operation Sea Lion", "Britischer Invasionsplan (1940)"], "authorized_access_point": "Unternehmen Seelöwe"} 1 +2024-09-11 09:09:45.107996 2024-09-11 09:09:45.108 395043dd-8aca-40f2-970e-42a7bb548b33 {"md5": "f989ef1bc991aa0e9786c825e431ec29", "pid": "041369424", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Halbleiterdiode"}, {"authorized_access_point": "Lichtempfindliches Halbleiterbauelement"}, {"authorized_access_point": "Photoelektronisches Bauelement"}, {"authorized_access_point": "Photodetektor"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4136942-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041369424", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4136942-7", "source": "GND"}], "variant_access_point": ["Fotodiode"], "authorized_access_point": "Photodiode"} 1 +2024-09-11 09:09:45.278897 2024-09-11 09:09:45.278903 4bbaa92b-cf96-4ee4-94b2-24a75332a8e8 {"md5": "684a32b1ad991a4c9eb9a0a0a668da63", "pid": "041358902", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Aussage"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334231974", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85037044", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85037044"}], "authorized_access_point": "Depositions"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334231974", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11983503", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11983503n"}], "authorized_access_point": "Dépositions (procédure)"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970606591", "source": "GND"}, {"type": "bf:Nbn", "value": "10062918", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10062918"}], "authorized_access_point": "Zeugenaussage"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4135890-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041358902", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4135890-9", "source": "GND"}], "variant_access_point": ["Aussage"], "authorized_access_point": "Zeugenaussage"} 1 +2024-09-11 09:09:45.348713 2024-09-11 09:09:45.348716 125d4acf-2846-4ece-9f63-ab18f9f409a9 {"md5": "457557467cc06608101f1ab27ef921fe", "pid": "041358678", "note": [{"label": ["Als Formschlagwort nicht verwendet, hier verwende f Tonträger."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tonträger"}, {"authorized_access_point": "Magnetband"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4135867-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041358678", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4135867-3", "source": "GND"}], "variant_access_point": ["Magnettonband", "Tonbandspule"], "authorized_access_point": "Tonband"} 1 +2024-09-11 09:09:45.411469 2024-09-11 09:09:45.411474 b4ee0884-657c-4449-80ce-bc8708368087 {"md5": "3f86ac46d5c3d0cc478976d31361191d", "pid": "041357515", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Antenne"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4135751-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041357515", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4135751-6", "source": "GND"}], "variant_access_point": ["Aktivantenne"], "authorized_access_point": "Aktive Antenne"} 1 +2024-09-11 09:09:45.470801 2024-09-11 09:09:45.470805 d001933e-70f8-41c9-9325-5461177baa78 {"md5": "374992660d789658200f4a153fdafd3c", "pid": "041351169", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wirtschaftsförderung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134090730", "source": "GND"}, {"type": "bf:Nbn", "value": "no2015079330", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/names/no2015079330"}], "authorized_access_point": "United States. Foreign Assistance Act of 1948"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134090730", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11998785", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11998785s"}], "authorized_access_point": "Plan Marshall (1948-1952)"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966738357", "source": "GND"}, {"type": "bf:Nbn", "value": "10610-2", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/10610-2"}], "authorized_access_point": "Wirtschaftlicher Wiederaufbau"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970571178", "source": "GND"}, {"type": "bf:Nbn", "value": "10051738", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10051738"}], "authorized_access_point": "Marshall-Plan"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4135116-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041351169", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4135116-2", "source": "GND"}], "variant_access_point": ["ERP (abku)", "Europäisches Wiederaufbauprogramm", "European Recovery Program"], "authorized_access_point": "Marshall-Plan"} 1 +2024-09-11 09:09:45.531779 2024-09-11 09:09:45.531783 70f990c1-922a-416a-9667-95d70f1a980b {"md5": "ecfd3348157cf24675e7393451ea9863", "pid": "041344677", "note": [{"label": ["Ohne HZ Motiv"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Christusdarstellung"}, {"authorized_access_point": "Motiv"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134523947", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12464254", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12464254t"}], "authorized_access_point": "Jésus-Christ - Passion - Dans l'art"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4134467-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041344677", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4134467-4", "source": "GND"}], "authorized_access_point": "Passionsdarstellung"} 1 +2024-09-11 09:09:45.597231 2024-09-11 09:09:45.597235 48daed62-3d0f-47e3-857e-44083caa424a {"md5": "1a775d09f264f5409e55f47caea9f28b", "pid": "041336844", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Trockenblume"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134515529", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13188664", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb131886647"}], "authorized_access_point": "Fleurs pressées"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4133684-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041336844", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4133684-7", "source": "GND"}], "variant_access_point": ["Gepresste Blume", "Gepresste Pflanze"], "authorized_access_point": "Gepresste Pflanzen"} 1 +2024-09-11 09:09:45.663414 2024-09-11 09:09:45.663419 763d65ba-dedd-4ba7-a003-04373c23a5db {"md5": "589606e85ed1acf66537de4006554bea", "pid": "041336720", "note": [{"label": ["Der Generalunternehmer bedient sich zur Ausführung eines Auftrags des Subunternehmers. Rechtsbeziehungen entstehen nur zwischen Generalunternehmer und Subunternehmer."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Unternehmer"}], "related": [{"authorized_access_point": "Generalunternehmer"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333585977", "source": "GND"}, {"type": "bf:Nbn", "value": "sh95001761", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh95001761"}], "authorized_access_point": "Subcontractors"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333585977", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11934339", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119343399"}], "authorized_access_point": "Sous-traitance"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1283872862", "source": "GND"}, {"type": "bf:Nbn", "value": "30284-5", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/30284-5"}], "authorized_access_point": "Subunternehmer"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970595875", "source": "GND"}, {"type": "bf:Nbn", "value": "10060775", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10060775"}], "authorized_access_point": "Subunternehmen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4133672-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041336720", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4133672-0", "source": "GND"}], "authorized_access_point": "Subunternehmer"} 1 +2024-09-11 09:09:45.731293 2024-09-11 09:09:45.731297 c7eb3bba-32b4-47f5-a8e8-7ce49373a01b {"md5": "1f473b5dfbdd00d94c0f076f89fd6d95", "pid": "041332156", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Krieg"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134025572", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85092579", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85092579"}], "authorized_access_point": "Northern War, 1700-1721"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134025572", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11971267", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11971267c"}], "authorized_access_point": "Guerre du Nord (1700-1721)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254468021", "source": "GND"}, {"type": "bf:Nbn", "value": "XX5369050", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX5369050"}], "authorized_access_point": "Guerra del Norte, 1700-1721"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4133215-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041332156", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4133215-5", "source": "GND"}], "variant_access_point": ["Großer Nordischer Krieg", "Zweiter Nordischer Krieg (1700-1721)", "Dritter Nordischer Krieg (1700-1721)"], "authorized_access_point": "Nordischer Krieg (1700-1721)"} 1 +2024-09-11 09:09:45.787071 2024-09-11 09:09:45.787075 39f7602e-d1bc-488f-b015-1220a536016a {"md5": "1056c3ecb8820223597897ef135288cb", "pid": "041330048", "note": [{"label": ["Bei einzelnen Schutzhütten wird ein Geographikum mit \\"geoa\\" relationiert."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Beherbergungsbetrieb"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134006896", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85087807", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85087807"}], "authorized_access_point": "Mountain shelters"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134006896", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11964951", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11964951f"}], "authorized_access_point": "Refuges de montagne"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4133004-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041330048", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4133004-3", "source": "GND"}], "variant_access_point": ["Alpenvereinshütte", "Alpinistischer Stützpunkt", "Berghütte", "Bergsteigerstützpunkt", "Hütte (Schutzhütte)", "Alpenvereinshaus", "Schutzhaus", "Wanderhütte", "Schutzhütten", "Berghütten"], "authorized_access_point": "Schutzhütte"} 1 +2024-09-11 09:09:45.845349 2024-09-11 09:09:45.845352 b9c14308-ec9e-4d2f-8c88-67430a99b9c2 {"md5": "9c4ab634d2ce09e18c31d98ee51c1df3", "pid": "041328523", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Körper"}, {"authorized_access_point": "Leiblichkeit"}, {"authorized_access_point": "Soma"}, {"authorized_access_point": "Leib-Seele-Problem"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332900690", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85015235", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85015235"}], "authorized_access_point": "Human body (Philosophy)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332900690", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11965587", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11965587k"}], "authorized_access_point": "Corps (philosophie)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4132852-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041328523", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4132852-8", "source": "GND"}], "authorized_access_point": "Leib"} 1 +2024-09-11 09:09:45.90453 2024-09-11 09:09:45.904534 4631406a-4ff9-418c-9b0b-94e554b1651d {"md5": "e8a52541db2dd04198c5d72ac3180269", "pid": "041327896", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Staat"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331526035", "source": "GND"}, {"type": "bf:Nbn", "value": "sh87000305", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh87000305"}], "authorized_access_point": "Landlocked states"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331526035", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12107185", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12107185s"}], "authorized_access_point": "Pays sans littoral"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4132789-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041327896", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4132789-5", "source": "GND"}], "variant_access_point": ["Binnenstaaten"], "authorized_access_point": "Binnenstaat"} 1 +2024-09-11 09:09:45.965851 2024-09-11 09:09:45.965857 f636ab69-e88e-48f7-921a-96f5ba9cccf1 {"md5": "387503ee01be0b26cfa9f9627c3c5bcd", "pid": "041326393", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Betriebssystem"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134018509", "source": "GND"}, {"type": "bf:Nbn", "value": "n92062941", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/names/n92062941"}], "authorized_access_point": "UCSD p-System"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134018509", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11968223", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119682237"}], "authorized_access_point": "UCSD p-System"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4132639-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041326393", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4132639-8", "source": "GND"}], "authorized_access_point": "UCSD p-System"} 1 +2024-09-11 09:10:08.076451 2024-09-11 09:10:08.076456 68378045-428a-4d87-9545-85edfa262cc4 {"md5": "3f7beb7a3bf8d3b3cdc082ca58fd4f6b", "pid": "127243124X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/127243124X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)127243124X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)127243124X", "source": "GND"}], "authorized_access_point": "Ferrum (Druckschrift)"} 1 +2024-09-11 09:09:46.021639 2024-09-11 09:09:46.021644 e163b5fd-4f2d-48bd-9061-504fe1dbc452 {"md5": "4d5f3cda163b622375452b6c81cebc6c", "pid": "041325109", "note": [{"label": ["Rechtsnachfolge bezeichnet die Auswechslung des Rechtssubjekts bei ansonsten unverändertem Rechtsbestand."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Rechtsnachfolger"}, {"authorized_access_point": "Rechtserwerb"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4132510-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041325109", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4132510-2", "source": "GND"}], "variant_access_point": ["Subjektwechsel", "Sukzession (Bürgerliches Recht)"], "authorized_access_point": "Rechtsnachfolge"} 1 +2024-09-11 09:09:46.079895 2024-09-11 09:09:46.0799 e3e0aff2-27a8-4ddc-af34-b2a8a569b8c3 {"md5": "ecb59d93e1658383d3665da9e6d65154", "pid": "04132501X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Unwahrheit"}], "related": [{"authorized_access_point": "Unehrlichkeit"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133937241", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85063768", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85063768"}], "authorized_access_point": "Hypocrisy"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133937241", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11935462", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11935462b"}], "authorized_access_point": "Hypocrisie"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4132501-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04132501X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4132501-1", "source": "GND"}], "variant_access_point": ["Hypokrisie"], "authorized_access_point": "Heuchelei"} 1 +2024-09-11 09:09:46.138485 2024-09-11 09:09:46.138487 a064db7f-7c38-476a-a40c-8477c8a8c596 {"md5": "388bd623e6a754ca238303343ab0f812", "pid": "041321782", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ansiedlung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134609086", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12229177", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb122291777"}], "authorized_access_point": "Parcs d'activités économiques"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970558945", "source": "GND"}, {"type": "bf:Nbn", "value": "10038906", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10038906"}], "authorized_access_point": "Industrieansiedlung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4132178-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041321782", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4132178-9", "source": "GND"}], "variant_access_point": ["Industriebetrieb"], "authorized_access_point": "Industrieansiedlung"} 1 +2024-09-11 09:09:46.204098 2024-09-11 09:09:46.204103 e81103af-8148-4751-a587-6f62a93b415d {"md5": "5dc4f354bce839a9a83fc5da36b59543", "pid": "041318153", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schaden"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134220243", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12226409", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12226409v"}], "authorized_access_point": "Intérêt (droit)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4131815-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041318153", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4131815-8", "source": "GND"}], "variant_access_point": ["Drittinteresse"], "authorized_access_point": "Interesse (Recht)"} 1 +2024-09-11 09:09:46.292966 2024-09-11 09:09:46.292969 6c8c2e99-efc4-4431-99a2-740e939ceb0f {"md5": "a6e9ba26ac652a61631997fbdc7626b4", "pid": "041312406", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Beweis"}], "related": [{"authorized_access_point": "Rechtsgutachten"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134028687", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85046005", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85046005"}], "authorized_access_point": "Evidence, Expert"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134028687", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11971981", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11971981v"}], "authorized_access_point": "Expertises"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4131240-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041312406", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4131240-5", "source": "GND"}], "variant_access_point": ["Sachverständiger"], "authorized_access_point": "Sachverständigenbeweis"} 1 +2024-09-11 09:09:46.348203 2024-09-11 09:09:46.348208 1798cec3-fe91-4a18-a5b1-35317ed53198 {"md5": "9477782c51943aca9e04e43a48e42b2c", "pid": "041311248", "note": [{"label": ["Als Videokonferenz bezeichnet man eine Form der Telekommunikation, bei der mithilfe von Kameras, Mikrofonen, Bildschirmen und Lautsprechern eine audiovisuelle Verbindung zwischen zwei oder mehr Personen hergestellt und so ein wechselseitiger Informationsaustausch ermöglicht wird."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Telekonferenz"}], "related": [{"authorized_access_point": "Telepräsenz"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134204450", "source": "GND"}, {"type": "bf:Nbn", "value": "sh88004839", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh88004839"}], "authorized_access_point": "Videoconferencing"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134204450", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12192080", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12192080f"}], "authorized_access_point": "Visioconférences"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1299905978", "source": "GND"}, {"type": "bf:Nbn", "value": "XX546241", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX546241"}], "authorized_access_point": "Videoconferencia"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970602065", "source": "GND"}, {"type": "bf:Nbn", "value": "10065463", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10065463"}], "authorized_access_point": "Videokonferenz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4131124-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041311248", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4131124-3", "source": "GND"}], "authorized_access_point": "Videokonferenz"} 1 +2024-09-11 09:09:46.40273 2024-09-11 09:09:46.402735 5fac9f93-c907-487c-a172-dec448369c94 {"md5": "e4901d8b8cd542dc54a5da54064dc3c3", "pid": "041308263", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4130826-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041308263", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4130826-8", "source": "GND"}], "variant_access_point": ["Schadensuntersuchung"], "authorized_access_point": "Schadensanalyse"} 1 +2024-09-11 09:09:46.45421 2024-09-11 09:09:46.454213 787e5cd4-fb53-48e7-9925-b89b172c31ef {"md5": "a0f1c10f9b1c23b9f0e8a2d946a0694f", "pid": "041306570", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133633234", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85145963", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85145963"}], "authorized_access_point": "Weights and measures"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134210590", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12205303", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12205303v"}], "authorized_access_point": "Poids"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133633234", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11941221", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11941221f"}], "authorized_access_point": "Poids et mesures"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254350136", "source": "GND"}, {"type": "bf:Nbn", "value": "21495", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/21495"}], "authorized_access_point": "Misure"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254435301", "source": "GND"}, {"type": "bf:Nbn", "value": "XX526274", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX526274"}], "authorized_access_point": "Pesos y medidas"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256217689", "source": "GND"}, {"type": "bf:Nbn", "value": "8349", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_8349"}], "authorized_access_point": "weight"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4130657-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041306570", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4130657-0", "source": "GND"}], "authorized_access_point": "Gewicht"} 1 +2024-09-11 09:09:46.51282 2024-09-11 09:09:46.512824 8850231c-e9f1-4aa7-b96d-a243ad6b44df {"md5": "61ee80487cb85ea643e4cd8aac89123e", "pid": "041306473", "note": [{"label": ["Zusammenfassend für alle Wettbewerbe"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Europapokal"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113480914X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13736020", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13736020g"}], "authorized_access_point": "Football - Ligue des champions"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4130647-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041306473", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4130647-8", "source": "GND"}], "authorized_access_point": "Fußballeuropapokal"} 1 +2024-09-11 09:09:46.570713 2024-09-11 09:09:46.570717 4a16adbd-df10-4504-bbd5-51f8459e571e {"md5": "710ce8fde4d5fbbbf3fae9008db0f690", "pid": "041305450", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Unechtes Werk"}, {"authorized_access_point": "Zuschreibung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134155654", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85010030", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85010030"}], "authorized_access_point": "Authorship"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134155654", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12088586", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12088586z"}], "authorized_access_point": "Attribution"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4130545-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041305450", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4130545-0", "source": "GND"}], "variant_access_point": ["Autorenschaft", "Verfasserschaft", "Verfasserschaftsfrage", "Verfasserfrage"], "authorized_access_point": "Autorschaft"} 1 +2024-09-11 09:09:46.62697 2024-09-11 09:09:46.626973 44d19629-4e34-4cf4-b1b2-8ede8cd353bf {"md5": "8281978793a071222772cfc35b0ba5c6", "pid": "041301005", "note": [{"label": ["Für das Recht benutze Rückfall"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134155158", "source": "GND"}, {"type": "bf:Nbn", "value": "sh98007420", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh98007420"}], "authorized_access_point": "Diseases - Relapse"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134155158", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12087741", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb120877419"}], "authorized_access_point": "Récidives"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241620768", "source": "GND"}, {"type": "bf:Nbn", "value": "D012008", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D012008"}], "authorized_access_point": "Recurrence"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4130100-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041301005", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4130100-6", "source": "GND"}], "variant_access_point": ["Rückfall (Medizin)", "Rückfall (Psychologie)"], "authorized_access_point": "Rezidiv"} 1 +2024-09-11 09:09:46.680142 2024-09-11 09:09:46.680145 1cda0b62-2284-4e49-88c8-adaa7a4e39e8 {"md5": "b98e1876c0d0788fc47bf1fa38644236", "pid": "041296540", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Theaterbau"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133630715", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85088079", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85088079"}], "authorized_access_point": "Motion picture theaters"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133630715", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11939426", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11939426f"}], "authorized_access_point": "Cinémas"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254321977", "source": "GND"}, {"type": "bf:Nbn", "value": "2140", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/2140"}], "authorized_access_point": "Sale cinematografiche"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254448837", "source": "GND"}, {"type": "bf:Nbn", "value": "XX526308", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX526308"}], "authorized_access_point": "Cines"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966799305", "source": "GND"}, {"type": "bf:Nbn", "value": "18919-2", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/18919-2"}], "authorized_access_point": "Kino"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970563515", "source": "GND"}, {"type": "bf:Nbn", "value": "10043586", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10043586"}], "authorized_access_point": "Kino"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4129654-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041296540", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4129654-0", "source": "GND"}], "variant_access_point": ["Filmtheater", "Lichtspielhaus", "Lichtspieltheater"], "authorized_access_point": "Kino"} 1 +2024-09-11 09:09:46.733042 2024-09-11 09:09:46.733047 910db17f-f05c-452e-8d5d-69ab8a3d946b {"md5": "1853d76988edc3bbef2d02815b39feec", "pid": "041291107", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Teilchenstrahlung"}, {"authorized_access_point": "Radioaktive Strahlung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134775881", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85013449", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85013449"}], "authorized_access_point": "Beta rays"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134775881", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11978653", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11978653g"}], "authorized_access_point": "Rayons bêta"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4129110-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041291107", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4129110-4", "source": "GND"}], "variant_access_point": ["Betastrahlen"], "authorized_access_point": "Betastrahlung"} 1 +2024-09-11 09:09:46.788699 2024-09-11 09:09:46.788702 a02977b0-2f69-4b13-92e9-856b1203f4f2 {"md5": "b6cebc7441d522173e10fd5565bbf60e", "pid": "041289870", "note": [{"label": ["Möglichst keine Komposita für bestimmte Gene bilden (Ausnahme: Gengruppen)."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Genom"}], "related": [{"authorized_access_point": "Operon"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133736459", "source": "GND"}, {"type": "bf:Nbn", "value": "sh91000344", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh91000344"}], "authorized_access_point": "Genes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133736459", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12224891", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12224891h"}], "authorized_access_point": "Gènes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254330909", "source": "GND"}, {"type": "bf:Nbn", "value": "6576", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/6576"}], "authorized_access_point": "Geni"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254433821", "source": "GND"}, {"type": "bf:Nbn", "value": "XX526735", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX526735"}], "authorized_access_point": "Genes"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256216682", "source": "GND"}, {"type": "bf:Nbn", "value": "3214", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_3214"}], "authorized_access_point": "genes"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4128987-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041289870", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4128987-0", "source": "GND"}], "variant_access_point": ["Erbanlage (Gen)", "Erbeinheit", "Erbfaktor"], "authorized_access_point": "Gen"} 1 +2024-09-11 09:09:46.848106 2024-09-11 09:09:46.848109 9d38a184-8e8f-4547-a663-5ddfed33bd09 {"md5": "39b3d002aaa0ae0698732e5882ae6193", "pid": "041288769", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Nerv"}, {"authorized_access_point": "Nervensystem"}, {"authorized_access_point": "Nervale Regulation"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134045719", "source": "GND"}, {"type": "bf:Nbn", "value": "sh99002358", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99002358"}], "authorized_access_point": "Innervation"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134045719", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11977157", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119771577"}], "authorized_access_point": "Innervation"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4128876-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041288769", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4128876-2", "source": "GND"}], "authorized_access_point": "Innervation"} 1 +2024-09-11 09:09:46.910436 2024-09-11 09:09:46.910439 e059cfd9-c581-4351-ab52-1cf3d9fbc9e1 {"md5": "c4c5aa9c10a980e34a3c9a22aab68300", "pid": "04128805X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kunststoff"}, {"authorized_access_point": "Faserverbundwerkstoff"}], "related": [{"authorized_access_point": "Noppenwabe"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133927459", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85112457", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85112457"}], "authorized_access_point": "Reinforced plastics"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134305737", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85048018", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85048018"}], "authorized_access_point": "Fiber-reinforced plastics"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133927459", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11932441", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11932441n"}], "authorized_access_point": "Matières plastiques renforcées"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134305737", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12386115", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12386115c"}], "authorized_access_point": "Matières plastiques renforcées avec des fibres"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4128805-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04128805X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4128805-1", "source": "GND"}], "variant_access_point": ["Faser-Kunststoff-Verbund", "Faserverbundkunststoff", "FKV (Werkstoff)", "FVK (Werkstoff)", "Fibre-reinforced plastic"], "authorized_access_point": "Faserverstärkter Kunststoff"} 1 +2024-09-11 09:09:46.977119 2024-09-11 09:09:46.977124 1c63452f-7ec3-4f44-88f4-d288a4498c9f {"md5": "c2e7565ee7e5cf54a9547562805030d1", "pid": "041287886", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4128788-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041287886", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4128788-5", "source": "GND"}], "authorized_access_point": "Bezirk Detmold (Motiv)"} 1 +2024-09-11 09:09:47.039205 2024-09-11 09:09:47.039209 185c835e-446a-4aa9-9069-29bf41298bae {"md5": "63eeb07f32045a6f9463485cb7a8a358", "pid": "041285913", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Filter (Stochastik)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113390596X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85071360", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85071360"}], "authorized_access_point": "Kalman filtering"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113390596X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12290051", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12290051j"}], "authorized_access_point": "Kalman, Filtrage de"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4128591-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041285913", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4128591-8", "source": "GND"}], "authorized_access_point": "Kalman-Bucy-Filter"} 1 +2024-09-11 09:09:47.094068 2024-09-11 09:09:47.094072 bd410844-3744-497e-9a26-4eaf1d0c4a85 {"md5": "f5a4c169e2babf3f9297e08417faa6c1", "pid": "041284100", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ideal"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134658567", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85012720", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85012720"}], "authorized_access_point": "Beauty, Personal"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134658567", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11938482", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11938482p"}], "authorized_access_point": "Beauté corporelle"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254484205", "source": "GND"}, {"type": "bf:Nbn", "value": "XX525607", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX525607"}], "authorized_access_point": "Belleza corporal"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4128410-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041284100", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4128410-0", "source": "GND"}], "variant_access_point": ["Schönheit", "Schönheitskult"], "authorized_access_point": "Schönheitsideal"} 1 +2024-09-11 09:09:48.675652 2024-09-11 09:09:48.675658 512378d5-4403-4e4a-ba06-24fa9b001829 {"md5": "5b12ac2803dc883769c872271b27d2c6", "pid": "04121630X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Ratio legis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4121630-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04121630X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4121630-1", "source": "GND"}], "variant_access_point": ["Rayon (Schutzbereich)", "Schutzumfang"], "authorized_access_point": "Schutzbereich"} 1 +2024-09-11 09:09:47.149332 2024-09-11 09:09:47.149336 37427aad-79eb-41ca-ad08-27830e71632c {"md5": "0260e58c47b19d4d263b11c5d1ad2985", "pid": "041282787", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Flugtriebwerk"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134724330", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85002908", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85002908"}], "authorized_access_point": "Airplanes - Turbojet engines"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133696430", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85070170", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85070170"}], "authorized_access_point": "Jet propulsion"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134724330", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11944356", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119443563"}], "authorized_access_point": "Avions - Turboréacteurs"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133696430", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11982987", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11982987c"}], "authorized_access_point": "Propulsion par réaction"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4128278-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041282787", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4128278-4", "source": "GND"}], "variant_access_point": ["Düsenantrieb", "Düsentriebwerk", "Durchströmtriebwerk", "Strahlantrieb", "Strahltriebwerk", "Luftatmendes Flugtriebwerk"], "authorized_access_point": "Luftstrahltriebwerk"} 1 +2024-09-11 09:09:47.205707 2024-09-11 09:09:47.20571 865527c4-7b94-460d-8ffc-c20bb8bb5224 {"md5": "fa69ccf291d548a462b8e815624cf345", "pid": "041280628", "note": [{"label": ["Gattungsgruppe"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bienen (Familie)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134184484", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85017981", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85017981"}], "authorized_access_point": "Bumblebees"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134184484", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12137395", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb121373958"}], "authorized_access_point": "Bourdons (insectes)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4128062-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041280628", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4128062-3", "source": "GND"}], "variant_access_point": ["Bombini"], "authorized_access_point": "Hummeln"} 1 +2024-09-11 09:09:47.267051 2024-09-11 09:09:47.267056 b94c04ff-cb32-406e-a1e7-80a9601715b3 {"md5": "a956ef7174d48aed19a075e85d008209", "pid": "041277848", "note": [{"label": ["Öffentl. Verurteilung von dogmat. Aussagen einer anderen Konfession"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Verurteilung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134615876", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13558002", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb135580023"}], "authorized_access_point": "Censures doctrinales"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4127784-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041277848", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4127784-3", "source": "GND"}], "variant_access_point": ["Verwerfungsaussage"], "authorized_access_point": "Lehrverurteilung"} 1 +2024-09-11 09:09:47.337451 2024-09-11 09:09:47.337455 c6e8bed8-107d-46e7-bd8b-8a8181fef3b2 {"md5": "6796fe8c37bf86d769646cf524b8d25e", "pid": "041277090", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Provision"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134105134", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85018275", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85018275"}], "authorized_access_point": "Business brokerage"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134105134", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12010402", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12010402f"}], "authorized_access_point": "Courtage"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4127709-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041277090", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4127709-0", "source": "GND"}], "variant_access_point": ["Maklerprovision", "Maklercourtage", "Courtage", "Kurtage", "Maklergebühr", "Maklervergütung"], "authorized_access_point": "Maklerlohn"} 1 +2024-09-11 09:09:47.395536 2024-09-11 09:09:47.39554 7396fbf5-57da-458e-b244-f67d9d9f3f93 {"md5": "3a3b4b19629dcc4c163fae991dba466d", "pid": "041275829", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ausgliederung"}], "related": [{"authorized_access_point": "Fremdbezug"}, {"authorized_access_point": "Make or buy"}, {"authorized_access_point": "Contracting-out"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134494270", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85031614", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85031614"}], "authorized_access_point": "Contracting out"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134494270", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15719280", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15719280g"}], "authorized_access_point": "Externalisation"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966897404", "source": "GND"}, {"type": "bf:Nbn", "value": "19113-6", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/19113-6"}], "authorized_access_point": "Outsourcing"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970577702", "source": "GND"}, {"type": "bf:Nbn", "value": "10063041", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10063041"}], "authorized_access_point": "Outsourcing"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4127582-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041275829", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4127582-2", "source": "GND"}], "variant_access_point": ["Funktionsbezogene Ausgliederung", "Funktionsausgliederung"], "authorized_access_point": "Outsourcing"} 1 +2024-09-11 09:09:47.454109 2024-09-11 09:09:47.454113 8106770e-ce10-4037-9487-5f7b15122cd9 {"md5": "3bb422fddd2b454c01bfa5d57df72a88", "pid": "041274059", "note": [{"label": ["Alle Wissensgebiete umfassende spirituelle Bewegung", "Für Schriften, die sich auf die Ankündigung eines heraufkommenden neuen Zeitalters beschränken, verwende |s|Neues Zeitalter bzw. |s|Wassermannzeitalter"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Neues Zeitalter"}, {"authorized_access_point": "Wassermannzeitalter"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134187645", "source": "GND"}, {"type": "bf:Nbn", "value": "sh87000526", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh87000526"}], "authorized_access_point": "New Age movement"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134187645", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12144385", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12144385f"}], "authorized_access_point": "Nouvel âge (mouvement)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254398813", "source": "GND"}, {"type": "bf:Nbn", "value": "7585", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/7585"}], "authorized_access_point": "New Age"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1299919162", "source": "GND"}, {"type": "bf:Nbn", "value": "XX535178", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX535178"}], "authorized_access_point": "Nueva Era"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970575831", "source": "GND"}, {"type": "bf:Nbn", "value": "10048335", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10048335"}], "authorized_access_point": "New Age"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4127405-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041274059", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4127405-2", "source": "GND"}], "authorized_access_point": "New Age"} 1 +2024-09-11 09:09:57.313478 2024-09-11 09:09:57.313483 38bd6b6d-e453-4cd2-a2fe-a98022873a61 {"md5": "ed040c5c0331cdde09da4fc81133d643", "pid": "1336381698", "note": [{"label": ["homepage - https://www.odins-haddeby.de"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gaststätte"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336381698", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336381698", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336381698", "source": "GND"}], "authorized_access_point": "Odins Haithabu"} 1 +2024-09-11 09:09:47.509266 2024-09-11 09:09:47.50927 4ceaa047-03f6-4c9b-a9f6-5633ef7b1a7c {"md5": "793e78c3645ee3380ebb9c8558ab1be6", "pid": "041270290", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Name"}, {"authorized_access_point": "Chemische Nomenklatur"}, {"authorized_access_point": "Zoologische Nomenklatur"}, {"authorized_access_point": "Botanische Nomenklatur"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134080697", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11983360", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11983360x"}], "authorized_access_point": "Noms vernaculaires"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4127029-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041270290", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4127029-0", "source": "GND"}], "variant_access_point": ["Trivialnamen"], "authorized_access_point": "Trivialname"} 1 +2024-09-11 09:09:47.567313 2024-09-11 09:09:47.567317 6a9c00b1-467d-4c59-98dc-a5c44c0f867d {"md5": "43581750273ea01c7b58aa3db70042b0", "pid": "041264487", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Führungskraft"}, {"authorized_access_point": "Bevollmächtigter"}], "related": [{"authorized_access_point": "Prokuristin"}, {"authorized_access_point": "Prokura"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134692072", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11977389", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11977389d"}], "authorized_access_point": "Mandat"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4126448-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041264487", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4126448-4", "source": "GND"}], "authorized_access_point": "Prokurist"} 1 +2024-09-11 09:09:47.624778 2024-09-11 09:09:47.624782 d2493d21-3b4f-4933-9f8e-6b5f907c5529 {"md5": "18a9b3312a0b69be19ae4643aa427952", "pid": "04126133X", "note": [{"label": ["die in vielen Religionen und spirituellen Bewegungen vorhandene Idee, dass die Welt von Zeit zu Zeit in ein neues Zeitalter eintritt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Wassermannzeitalter"}, {"authorized_access_point": "New Age"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4126133-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04126133X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4126133-1", "source": "GND"}], "authorized_access_point": "Neues Zeitalter"} 1 +2024-09-11 09:09:47.682275 2024-09-11 09:09:47.682279 3c2fc4ef-eb33-4894-a79c-00eb947369c1 {"md5": "93d5a574b5eefa415f89dd16b2b9fefb", "pid": "041258819", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Lachsartige (Familie)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134672071", "source": "GND"}, {"type": "bf:Nbn", "value": "sh88006387", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh88006387"}], "authorized_access_point": "Sea trout"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134672071", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11987418", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11987418c"}], "authorized_access_point": "Truite de mer"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256235938", "source": "GND"}, {"type": "bf:Nbn", "value": "24702", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_24702"}], "authorized_access_point": "Salmo trutta"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4125881-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041258819", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4125881-2", "source": "GND"}], "variant_access_point": ["Lachsforelle", "Salmo trutta trutta"], "authorized_access_point": "Meerforelle"} 1 +2024-09-11 09:09:47.747076 2024-09-11 09:09:47.747079 22a5df9c-c1fc-4cfe-9426-7f45583006ec {"md5": "9ed69a0f65100af5f19a15df5b3b5205", "pid": "041258762", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4125876-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041258762", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4125876-9", "source": "GND"}], "authorized_access_point": "Brennverlauf"} 1 +2024-09-11 09:09:47.805626 2024-09-11 09:09:47.80563 49fce4e0-f100-424a-86cb-84df2157b0a2 {"md5": "a68c8a4659cf6d66364700f83803d77f", "pid": "041255364", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134720793", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12145482", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12145482x"}], "authorized_access_point": "Communication téléphonique"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4125536-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041255364", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4125536-7", "source": "GND"}], "variant_access_point": ["Telefongespräch", "Fernsprechen", "Anrufen (Telefonieren)"], "authorized_access_point": "Telefonieren"} 1 +2024-09-11 09:09:47.862169 2024-09-11 09:09:47.862173 6c46315f-e232-4c89-95b2-93b8e806cacb {"md5": "f90ff6f506c771d1a8b17105072802bb", "pid": "041254759", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Auxologie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133629822", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11938480", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119384800"}], "authorized_access_point": "Anthropométrie"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254345205", "source": "GND"}, {"type": "bf:Nbn", "value": "18100", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/18100"}], "authorized_access_point": "Antropometria"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254404988", "source": "GND"}, {"type": "bf:Nbn", "value": "XX4576284", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX4576284"}], "authorized_access_point": "Antropometría"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4125475-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041254759", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4125475-2", "source": "GND"}], "authorized_access_point": "Anthropometrie"} 1 +2024-09-11 09:09:47.922174 2024-09-11 09:09:47.922177 95e53e10-667d-49bd-bd57-2d9da932420f {"md5": "3871c9362ee3b24d0e98e903e4d26138", "pid": "041254538", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1299909892", "source": "GND"}, {"type": "bf:Nbn", "value": "XX526296", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX526296"}], "authorized_access_point": "Espectáculos"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966670582", "source": "GND"}, {"type": "bf:Nbn", "value": "27683-4", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/27683-4"}], "authorized_access_point": "Veranstaltung"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970600127", "source": "GND"}, {"type": "bf:Nbn", "value": "10065094", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10065094"}], "authorized_access_point": "Veranstaltung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4125453-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041254538", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4125453-3", "source": "GND"}], "variant_access_point": ["Event", "Veranstaltungen", "Events"], "authorized_access_point": "Veranstaltung"} 1 +2024-09-11 09:09:47.979832 2024-09-11 09:09:47.979836 496b438b-2e33-44bc-aa9c-f371603b2aa2 {"md5": "5cb51316f9594ae29e37e8b07e0b1412", "pid": "041251733", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Künstler"}], "related": [{"authorized_access_point": "Grafikerin"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134352247", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85028916", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85028916"}], "authorized_access_point": "Commercial artists"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331597730", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2006004207", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2006004207"}], "authorized_access_point": "Graphic artists"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134352247", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12507269", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12507269h"}], "authorized_access_point": "Graphistes"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4125173-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041251733", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4125173-8", "source": "GND"}], "variant_access_point": ["Graphiker"], "authorized_access_point": "Grafiker"} 1 +2024-09-11 09:09:48.036435 2024-09-11 09:09:48.03644 0841d278-2d7d-45ce-8b3f-7c899ec3277f {"md5": "a5b39983c5a4bf64d75758cd9bc85586", "pid": "041250117", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134693982", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85032941", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85032941"}], "authorized_access_point": "Corporations - Growth"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134693982", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11961373", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11961373c"}], "authorized_access_point": "Entreprises - Croissance"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)967010853", "source": "GND"}, {"type": "bf:Nbn", "value": "12069-4", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/12069-4"}], "authorized_access_point": "Unternehmenserfolg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4125011-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041250117", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4125011-4", "source": "GND"}], "variant_access_point": ["Unternehmen"], "authorized_access_point": "Unternehmensentwicklung"} 1 +2024-09-11 09:09:48.097211 2024-09-11 09:09:48.097216 021cef7b-eb8d-4929-83de-fe5ed1a82452 {"md5": "e2f2f9bb253421a4102ee757f0d95d37", "pid": "041244362", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bedarf"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134045700", "source": "GND"}, {"type": "bf:Nbn", "value": "sh00005691", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00005691"}], "authorized_access_point": "Water requirements"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134045700", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11977153", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11977153v"}], "authorized_access_point": "Besoins en eau"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256270288", "source": "GND"}, {"type": "bf:Nbn", "value": "8323", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_8323"}], "authorized_access_point": "water requirements"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4124436-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041244362", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4124436-9", "source": "GND"}], "variant_access_point": ["Wasser"], "authorized_access_point": "Wasserbedarf"} 1 +2024-09-11 09:09:48.157361 2024-09-11 09:09:48.157364 59a2d0a5-9126-45e3-ab33-7e398598f392 {"md5": "277a08c015152011fdd16eeeffd3f2b1", "pid": "04124317X", "note": [{"label": ["Eine Tochtergesellschaft ist ein Unternehmen, das unmittelbar oder mittelbar von einem Mutterunternehmen kontrolliert wird."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Abhängiges Unternehmen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134501099", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85129532", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85129532"}], "authorized_access_point": "Subsidiary corporations"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134501099", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11971987", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11971987x"}], "authorized_access_point": "Filiales"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1299912303", "source": "GND"}, {"type": "bf:Nbn", "value": "XX553203", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX553203"}], "authorized_access_point": "Filiales"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)967004896", "source": "GND"}, {"type": "bf:Nbn", "value": "18119-6", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/18119-6"}], "authorized_access_point": "Tochtergesellschaft"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970597851", "source": "GND"}, {"type": "bf:Nbn", "value": "10037293", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10037293"}], "authorized_access_point": "Tochtergesellschaft"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4124317-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04124317X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4124317-1", "source": "GND"}], "variant_access_point": ["Tochterunternehmen"], "authorized_access_point": "Tochtergesellschaft"} 1 +2024-09-11 09:09:48.214403 2024-09-11 09:09:48.214407 ab59acc0-f7d8-444c-8afe-6ca9d976624f {"md5": "f79355352902db6a0b6bb7f8a51d2dad", "pid": "041240839", "note": [{"label": ["Mit einzelnen Substanzen werden keine Komposita gebildet (Komposita wie Pestizidrückstand sollten aber möglich sein)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Reststoff"}, {"authorized_access_point": "Restabfall"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134038585", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11975880", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119758806"}], "authorized_access_point": "Résidus"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256252875", "source": "GND"}, {"type": "bf:Nbn", "value": "6518", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_6518"}], "authorized_access_point": "residues"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4124083-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041240839", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4124083-2", "source": "GND"}], "authorized_access_point": "Rückstand"} 1 +2024-09-11 09:09:48.28386 2024-09-11 09:09:48.283866 acecfb39-3699-44a6-9f9a-346df9f0c4c9 {"md5": "fcddfb7d0e539015de082e46fc76f7b0", "pid": "041237226", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tourismus"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134026447", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2019000183", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2019000183"}], "authorized_access_point": "Overtourism"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134026447", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17901252", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17901252q"}], "authorized_access_point": "Tourisme de masse"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4123722-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041237226", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4123722-5", "source": "GND"}], "authorized_access_point": "Massentourismus"} 1 +2024-09-11 09:09:48.34324 2024-09-11 09:09:48.343245 44ebe4e6-8c1c-42a5-92ad-c99757459cf5 {"md5": "bbc66f8654f64c4a0cb7ef55ecb47523", "pid": "041231899", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Optischer Sensor"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133827055", "source": "GND"}, {"type": "bf:Nbn", "value": "sh93001076", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh93001076"}], "authorized_access_point": "Optical fiber detectors"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133827055", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12545899", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12545899f"}], "authorized_access_point": "Détecteurs à fibres optiques"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4123189-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041231899", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4123189-2", "source": "GND"}], "variant_access_point": ["Faseroptik", "FOS (Sensortechnik)"], "authorized_access_point": "Faseroptischer Sensor"} 1 +2024-09-11 09:09:48.397625 2024-09-11 09:09:48.39763 13e5b8c6-9019-4a56-b79a-1b0fd6440c82 {"md5": "b91c447f180a9d70737fdea24aae69df", "pid": "041220803", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Ermessen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4122080-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041220803", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4122080-8", "source": "GND"}], "variant_access_point": ["Wertungsspielraum"], "authorized_access_point": "Beurteilungsspielraum"} 1 +2024-09-11 09:09:48.451581 2024-09-11 09:09:48.451588 bb638b81-7392-4577-a1cb-82d5eedf8ec2 {"md5": "b2830ce7047eac6efe43cda5bf77cd81", "pid": "041218760", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schiff (Architektur)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334556571", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85034295", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85034295"}], "authorized_access_point": "Crossing (Architecture)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4121876-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041218760", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4121876-0", "source": "GND"}], "authorized_access_point": "Vierung"} 1 +2024-09-11 09:09:48.507358 2024-09-11 09:09:48.507362 490348b8-19d9-4035-af54-a35bbea14555 {"md5": "014771aad025d5ae41e0797f8d7dc555", "pid": "041217896", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fasanenartige"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4121789-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041217896", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4121789-5", "source": "GND"}], "variant_access_point": ["Meleagridinae", "Meleagrididae"], "authorized_access_point": "Truthühner (Unterfamilie)"} 1 +2024-09-11 09:09:48.561238 2024-09-11 09:09:48.561243 193201f9-1b34-423a-849c-174eb45bdfc5 {"md5": "11e5f16b3f817bfec22afa811ce9dd41", "pid": "041217225", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Statistisches_Modell&oldid=219273797"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mathematisches Modell"}], "related": [{"authorized_access_point": "Stochastisches Modell"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134627246", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2005004376", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2005004376"}], "authorized_access_point": "Stochastic models"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4121722-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041217225", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4121722-6", "source": "GND"}], "variant_access_point": ["Statistik"], "authorized_access_point": "Statistisches Modell"} 1 +2024-09-11 09:09:48.731358 2024-09-11 09:09:48.731362 de17b6d3-03d2-4d13-8c4c-3bd88b3b2bf8 {"md5": "0af9c8108dc751d82da025174e2a25b0", "pid": "041214870", "note": [{"label": ["Als politische Justiz bezeichnet man die Instrumentalisierung von Gerichtsverfahren zur Benachteiligung oder Ausschaltung von Regimegegnern."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Justiz"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133696376", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85071136", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85071136"}], "authorized_access_point": "Justice, Administration of - Political aspects"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133696376", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13319233", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb133192330"}], "authorized_access_point": "Justice et politique"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254474099", "source": "GND"}, {"type": "bf:Nbn", "value": "XX549941", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX549941"}], "authorized_access_point": "Justicia y política"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970580037", "source": "GND"}, {"type": "bf:Nbn", "value": "10054809", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10054809"}], "authorized_access_point": "politische Justiz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4121487-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041214870", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4121487-0", "source": "GND"}], "authorized_access_point": "Politische Justiz"} 1 +2024-09-11 09:09:48.789486 2024-09-11 09:09:48.789489 1f6c4e90-93f9-4595-b3ac-2cbc7ff448f4 {"md5": "624709d40bfa62e7786c74760d75d163", "pid": "041212339", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Reise"}], "related": [{"authorized_access_point": "Studienreise"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332366899", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85136266", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85136266"}], "authorized_access_point": "Tourism and art"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332366899", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12528541", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12528541m"}], "authorized_access_point": "Élèves du secondaire - Voyages"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4121233-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041212339", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4121233-2", "source": "GND"}], "variant_access_point": ["Exkursionen"], "authorized_access_point": "Exkursion"} 1 +2024-09-11 09:09:48.846495 2024-09-11 09:09:48.8465 0c56f98d-256a-4896-92f2-c65157567a6a {"md5": "c89ab2f36d5002048320aaf482205871", "pid": "041211383", "note": [{"label": ["Verknüpfe mit Anwendungsgebiet"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970543697", "source": "GND"}, {"type": "bf:Nbn", "value": "10038458", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10038458"}], "authorized_access_point": "Differenzierung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4121138-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041211383", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4121138-8", "source": "GND"}], "authorized_access_point": "Differenzierung"} 1 +2024-09-11 09:09:48.900975 2024-09-11 09:09:48.900981 b7e4ecde-bbe7-4311-9709-a3b20ba9ed29 {"md5": "48a98a32d9b7cb5959316f3f7688d005", "pid": "041211154", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gewerk"}], "related": [{"authorized_access_point": "Dachdecker"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1321205090", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85115317", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85115317"}], "authorized_access_point": "Roofing"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1321205090", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11933684", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11933684q"}], "authorized_access_point": "Couverture (construction)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4121115-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041211154", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4121115-7", "source": "GND"}], "variant_access_point": ["Dachdecken", "Dachdeckungsarbeit", "Dachdeckerarbeit"], "authorized_access_point": "Dachdeckung"} 1 +2024-09-11 09:09:48.963325 2024-09-11 09:09:48.96333 5c646444-72fb-4efa-bcff-e78f8e582271 {"md5": "c53e2535c5688ed4f432467533045720", "pid": "041208862", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Unerlaubte Handlung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133822789", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85085982", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85085982"}], "authorized_access_point": "Misconduct in office"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133822789", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12527222", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb125272228"}], "authorized_access_point": "Fonctionnaires - Responsabilité pénale"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134279477", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12333253", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12333253f"}], "authorized_access_point": "Prévarication"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254512381", "source": "GND"}, {"type": "bf:Nbn", "value": "XX530145", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX530145"}], "authorized_access_point": "Delitos de los funcionarios"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4120886-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041208862", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4120886-9", "source": "GND"}], "variant_access_point": ["Amtspflicht"], "authorized_access_point": "Amtspflichtverletzung"} 1 +2024-09-11 09:09:49.667363 2024-09-11 09:09:49.667368 e0bf7efd-4bb3-4ad8-93be-61c9f298c637 {"md5": "472a1ddb386e2298c6942d0a0a576d38", "pid": "041134346", "note": [{"label": ["Regulation durch Hormone"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Regulation"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4113434-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041134346", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4113434-5", "source": "GND"}], "variant_access_point": ["Hormonale Regulation", "Hormonelle Regulation", "Hormonregulation", "Innersekretorische Regulation", "Hormonsystem"], "authorized_access_point": "Endokrine Regulation"} 1 +2024-09-11 09:09:49.021668 2024-09-11 09:09:49.021673 6f41d4e3-4909-40ea-ab00-0a32ec38cdac {"md5": "4476ad17c356d55b3df250ab2795b58d", "pid": "041204409", "note": [{"label": ["Herkunft einer Person oder einer Sache.", "I.d.R. nicht permutierend. Verknüpfe mit dem jeweiligen Gegenstand bzw. verwende spezifisches SW, z.B. Soziale Herkunft."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134650639", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2002006528", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2002006528"}], "authorized_access_point": "Provenances"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134650639", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12452859", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12452859h"}], "authorized_access_point": "Provenance"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256221309", "source": "GND"}, {"type": "bf:Nbn", "value": "16022", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_16022"}], "authorized_access_point": "provenance"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970585098", "source": "GND"}, {"type": "bf:Nbn", "value": "10046547", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10046547"}], "authorized_access_point": "regionale Herkunft"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4120440-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041204409", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4120440-2", "source": "GND"}], "variant_access_point": ["Provenienz", "Regionale Herkunft"], "authorized_access_point": "Herkunft"} 1 +2024-09-11 09:09:49.076775 2024-09-11 09:09:49.076779 dc66c128-3286-4cc2-b4ee-00df7c156e15 {"md5": "ebb71a25a353e4561e2a37ec618eeed3", "pid": "041176626", "note": [{"label": ["Bei Wörterbüchern ist SW Wirtschaft zu bevorzugen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fachsprache"}, {"authorized_access_point": "Sondersprache"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134015186", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11967113", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11967113d"}], "authorized_access_point": "Langage commercial et des affaires"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)968557104", "source": "GND"}, {"type": "bf:Nbn", "value": "30030-1", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/30030-1"}], "authorized_access_point": "Wirtschaftsterminologie"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4117662-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041176626", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4117662-5", "source": "GND"}], "variant_access_point": ["Geschäftssprache", "Wirtschaft", "Wirtschaft", "Handelssprache", "Handel", "Handel", "Kaufmannssprache", "Businesssprache"], "authorized_access_point": "Wirtschaftssprache"} 1 +2024-09-11 09:09:49.138863 2024-09-11 09:09:49.138867 fa3022ae-02cb-4d6d-b46c-124f2b5759e9 {"md5": "f8558d288e2a54d6d028a732258cd440", "pid": "041175808", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Waldschaden"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134203578", "source": "GND"}, {"type": "bf:Nbn", "value": "sh88004553", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh88004553"}], "authorized_access_point": "Forest declines"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134203578", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12190274", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12190274k"}], "authorized_access_point": "Forêts - Dépérissement"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256269948", "source": "GND"}, {"type": "bf:Nbn", "value": "29300", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_29300"}], "authorized_access_point": "forest decline"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970603223", "source": "GND"}, {"type": "bf:Nbn", "value": "10061942", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10061942"}], "authorized_access_point": "Waldsterben"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4117580-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041175808", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4117580-3", "source": "GND"}], "variant_access_point": ["Neuartiger Waldschaden"], "authorized_access_point": "Waldsterben"} 1 +2024-09-11 09:09:49.193336 2024-09-11 09:09:49.19334 48f23b14-7365-4542-b44d-24a6364e0297 {"md5": "03a8215e2fe5ba288b7fac4f45720142", "pid": "041173899", "note": [{"label": ["Eine Vertrauensperson ist eine Person, die weder einer Strafverfolgungsbehörde noch einem Nachrichtendienst angehört und die diese Einrichtungen auf längere Zeit bei der Aufklärung von Straftaten oder verfassungsfeindlichen Bestrebungen unterstützt, wobei diese Unterstützung Dritten nicht bekannt ist."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Informant"}], "related": [{"authorized_access_point": "Agent provocateur"}, {"authorized_access_point": "Verdeckter Ermittler"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134765045", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85066307", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85066307"}], "authorized_access_point": "Informers"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134765045", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11978390", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11978390v"}], "authorized_access_point": "Indicateurs"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4117389-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041173899", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4117389-2", "source": "GND"}], "variant_access_point": ["V-Person", "Vertrauensperson", "Informant", "Polizeispitzel", "Vertrauensmann", "V-Leute"], "authorized_access_point": "V-Mann"} 1 +2024-09-11 09:09:49.260339 2024-09-11 09:09:49.260344 d0f69add-fd98-4a51-9981-d20ea6501c5a {"md5": "d28ad1b1fdf8f8230a3dbaac3b87ddc1", "pid": "041172922", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4117292-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041172922", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4117292-9", "source": "GND"}], "authorized_access_point": "Unrecht"} 1 +2024-09-11 09:09:49.726142 2024-09-11 09:09:49.726147 110b8632-a38b-4be1-ab20-7c9da641ba12 {"md5": "4191ee67dcdbf3242ec2f59e0f60a127", "pid": "041133889", "note": [{"label": ["Das Grundgesetz (Artikel 14) sowie die Verfassungen der Länder in Deutschland enthalten Eigentumsgarantien."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4113388-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041133889", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4113388-2", "source": "GND"}], "variant_access_point": ["Eigentumsfreiheit", "Eigentumsgrundrecht"], "authorized_access_point": "Eigentumsgarantie"} 1 +2024-09-11 09:09:49.323017 2024-09-11 09:09:49.32302 58581559-dc63-4f68-b509-f2bf356101e9 {"md5": "0e711e033ef41f2918c914db07ec1340", "pid": "041172299", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134546068", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85036108", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85036108"}], "authorized_access_point": "Death in literature"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134546076", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85036106", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85036106"}], "authorized_access_point": "Death in art"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4117229-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041172299", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4117229-2", "source": "GND"}], "variant_access_point": ["Todesdarstellung"], "authorized_access_point": "Tod (Motiv)"} 1 +2024-09-11 09:09:49.379096 2024-09-11 09:09:49.379101 0ae36323-d941-4160-8ba5-2c001db0d077 {"md5": "755f8785881b1ba0c4ed394dad6d19a3", "pid": "041164334", "note": [{"label": ["Ethnografikum ohne Territorium. Ausser d. weibl. Form werden keine weiteren Adjektiv-Substantiv-Verbindungen gebildet, sondern es wird mit dem entspr. Sach-SW verknüpft, z.B. s Schwarze ; s Kind", "Auch für Schwarze innerhalb Afrikas"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Person of Color"}], "related": [{"authorized_access_point": "Schwarze Frau"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133928021", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85014672", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85014672"}], "authorized_access_point": "Black people"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113430949X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85014604", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85014604"}], "authorized_access_point": "Black race"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133928021", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11932628", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119326280"}], "authorized_access_point": "Noirs"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113430949X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF123951634", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb123951636"}], "authorized_access_point": "Race négroïde"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254343350", "source": "GND"}, {"type": "bf:Nbn", "value": "16861", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/16861"}], "authorized_access_point": "Neri"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254484787", "source": "GND"}, {"type": "bf:Nbn", "value": "XX4576825", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX4576825"}], "authorized_access_point": "Raza negra"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254484795", "source": "GND"}, {"type": "bf:Nbn", "value": "XX4576498", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX4576498"}], "authorized_access_point": "Negros"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970112211", "source": "GND"}, {"type": "bf:Nbn", "value": "15929-0", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/15929-0"}], "authorized_access_point": "Schwarze Menschen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4116433-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041164334", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4116433-7", "source": "GND"}], "variant_access_point": ["Neger", "Schwarze Rasse", "Schwarzer", "Mohr", "Schwarze Menschen"], "authorized_access_point": "Schwarze"} 1 +2024-09-11 09:09:49.436049 2024-09-11 09:09:49.436053 faf11413-de69-48ce-9a37-e2f86f240abc {"md5": "fb39c80a9505542e1dae31f94043ecd0", "pid": "04115746X", "note": [{"label": ["Als Reparatur bezeichnet man einen Prozess, bei dem ein mangelhafter Gegenstand wieder in einen Zustand gebracht wird, in dem es seine bestimmungsgemäße Verwendung erfüllen kann.", "Im Unterschied dazu werden bei der Instandsetzung Verschleisserscheinungen behoben."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Instandsetzung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4115746-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04115746X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4115746-1", "source": "GND"}], "variant_access_point": ["Reparaturen"], "authorized_access_point": "Reparatur"} 1 +2024-09-11 09:09:49.492893 2024-09-11 09:09:49.492898 e1219cff-e943-45f8-83bf-26578b33eec1 {"md5": "f0714b288e9526f6881201e909f37b17", "pid": "041144910", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zerkleinern"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134045247", "source": "GND"}, {"type": "bf:Nbn", "value": "sh00006472", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00006472"}], "authorized_access_point": "Milling"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133670695", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85056219", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85056219"}], "authorized_access_point": "Grain - Milling"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133670695", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11967849", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11967849b"}], "authorized_access_point": "Céréales - Mouture"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134045247", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11977075", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11977075w"}], "authorized_access_point": "Mouture"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254458492", "source": "GND"}, {"type": "bf:Nbn", "value": "XX4663992", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX4663992"}], "authorized_access_point": "Cereales - Molienda"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256234427", "source": "GND"}, {"type": "bf:Nbn", "value": "4840", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_4840"}], "authorized_access_point": "milling"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4114491-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041144910", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4114491-0", "source": "GND"}], "authorized_access_point": "Mahlen"} 1 +2024-09-11 09:09:49.553181 2024-09-11 09:09:49.553186 52a85a18-7a7c-4de4-bf44-6d8b2ce3708a {"md5": "82600987bac318189f140f3e7069f0f5", "pid": "041142993", "note": [{"label": ["Pluralansetzung nach Du. Verwende nach Möglichkeit einen engeren Begriff wie Heilpflanzen, Wildkräuter, Zauberkräuter, Küchenkräuter"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254338152", "source": "GND"}, {"type": "bf:Nbn", "value": "12724", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/12724"}], "authorized_access_point": "Erbe"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966822684", "source": "GND"}, {"type": "bf:Nbn", "value": "14068-3", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/14068-3"}], "authorized_access_point": "Kräuter"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4114299-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041142993", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4114299-8", "source": "GND"}], "authorized_access_point": "Kräuter"} 1 +2024-09-11 09:09:49.608884 2024-09-11 09:09:49.608888 bf06bd51-ae54-466a-9c44-6fdefef51ba3 {"md5": "db3323bd073fdcc930244146e056842b", "pid": "041142403", "note": [{"label": ["Sammlung von Rezepten aller Art (RDA AH-007).", "Vorzugsweise mit dem Endprodukt (z. B. Kartoffelgericht, Gebäck) zu kombinieren, im Einzelnen siehe auch die Hinweise bei den jeweiligen Schlagwörtern (z.B. Wildbret u. ä.)."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Anleitung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133792855", "source": "GND"}, {"type": "bf:Nbn", "value": "sh96003769", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh96003769"}], "authorized_access_point": "Food writing"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133792855", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12425736", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12425736p"}], "authorized_access_point": "Livres de cuisine"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134838743", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12425736", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12425736p"}], "authorized_access_point": "Livres de cuisine"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254449876", "source": "GND"}, {"type": "bf:Nbn", "value": "XX556809", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX556809"}], "authorized_access_point": "Libros de cocina"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4114240-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041142403", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4114240-8", "source": "GND"}], "variant_access_point": ["Kochen", "Kochrezept", "Rezepte", "Rezeptsammlung", "Rezept"], "authorized_access_point": "Kochbuch"} 1 +2024-09-11 09:09:49.779047 2024-09-11 09:09:49.779051 39f7b125-6038-45a9-806f-6c702cf7f988 {"md5": "97fb660eef00e7d57b40027fcb9e337d", "pid": "041125002", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bauwerk"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)97053146X", "source": "GND"}, {"type": "bf:Nbn", "value": "10035178", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10035178"}], "authorized_access_point": "Altbau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4112500-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041125002", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4112500-9", "source": "GND"}], "authorized_access_point": "Altbau"} 1 +2024-09-11 09:09:49.834357 2024-09-11 09:09:49.834362 1018ea14-11d2-4036-902f-7d902bd02234 {"md5": "19a3a37f5ce420e956194d01d7e9d6f5", "pid": "041067940", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4106794-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041067940", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4106794-0", "source": "GND"}], "authorized_access_point": "Schwedisch-norwegische Union"} 1 +2024-09-11 09:09:49.886302 2024-09-11 09:09:49.886306 ed37d9e2-b08f-4075-b6b8-d240e1461f70 {"md5": "c2362d7eca04be7d95b3e6a73964d880", "pid": "040785947", "note": [{"label": ["Nur benutzt für die Bewertung des Gesamtunternehmens. Für die Bewertung einzelner Bereiche oder Gegenstände verknüpfe mit dem jeweils zutreffenden SW."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bewertung"}], "related": [{"authorized_access_point": "Bonität"}, {"authorized_access_point": "Fairness Opinion"}, {"authorized_access_point": "Due Diligence"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133973310", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85018291", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85018291"}], "authorized_access_point": "Business enterprises - Valuation"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133973329", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85032956", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85032956"}], "authorized_access_point": "Corporations - Valuation"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133973310", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11950175", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119501752"}], "authorized_access_point": "Entreprises - Évaluation"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1299908144", "source": "GND"}, {"type": "bf:Nbn", "value": "XX568310", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX568310"}], "authorized_access_point": "Empresas - Valoración"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)967010810", "source": "GND"}, {"type": "bf:Nbn", "value": "12438-6", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/12438-6"}], "authorized_access_point": "Unternehmensbewertung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4078594-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040785947", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4078594-4", "source": "GND"}], "variant_access_point": ["Bewertung", "Unternehmenswert"], "authorized_access_point": "Unternehmensbewertung"} 1 +2024-09-11 09:09:49.946459 2024-09-11 09:09:49.946462 7e18c647-7064-45ee-bec0-70030e5f65b5 {"md5": "93ef08a4278930f58820fc1a9ff8a1a7", "pid": "04077984X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gebetbuch"}], "related": [{"authorized_access_point": "Brevier"}, {"authorized_access_point": "Horologion"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113361633X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85062530", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85062530"}], "authorized_access_point": "Books of hours"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113361633X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13553869", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13553869c"}], "authorized_access_point": "Livres d'heures"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125432996X", "source": "GND"}, {"type": "bf:Nbn", "value": "5917", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/5917"}], "authorized_access_point": "Libri d'ore"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254491937", "source": "GND"}, {"type": "bf:Nbn", "value": "XX524632", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX524632"}], "authorized_access_point": "Libros de horas"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4077984-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04077984X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4077984-1", "source": "GND"}], "variant_access_point": ["Livre d'heures", "Horarium", "Stundenbücher"], "authorized_access_point": "Stundenbuch"} 1 +2024-09-11 09:09:50.003158 2024-09-11 09:09:50.003161 0eed4e66-08df-4732-bd27-d8ae91193fb7 {"md5": "542d302379f33caee03a000cf968e836", "pid": "040777820", "note": [{"label": ["Staatshaftung bezeichnet die Einstandspflicht eines Hoheitsträgers für die Folgen seines Handelns. Im engeren Sinne umfasst die Benennung nur hoheitliches und rechtswidriges Handeln; im weiteren Sinne bezieht sie sich auch auf privatrechtliches und rechtmäßiges Handeln."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Allgemeines Verwaltungsrecht"}, {"authorized_access_point": "Haftung"}], "related": [{"authorized_access_point": "Amtshaftung"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970593023", "source": "GND"}, {"type": "bf:Nbn", "value": "10058963", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10058963"}], "authorized_access_point": "Staatshaftung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4077782-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040777820", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4077782-0", "source": "GND"}], "variant_access_point": ["Haftung", "Staatshaftungsrecht", "Öffentlich-rechtliche Ersatzleistung", "Öffentlich-rechtliche Wiedergutmachung"], "authorized_access_point": "Staatshaftung"} 1 +2024-09-11 09:09:50.059328 2024-09-11 09:09:50.059332 b776c89b-8a33-493f-8afd-19bbf864d308 {"md5": "12632d11626ceade9d02cfd901f05fba", "pid": "040776832", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Preisbildung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331580382", "source": "GND"}, {"type": "bf:Nbn", "value": "sh94005709", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh94005709"}], "authorized_access_point": "Peak-load pricing"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4077683-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040776832", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4077683-9", "source": "GND"}], "variant_access_point": ["Peak-load-pricing", "Preisbildung", "Spitzenleistung"], "authorized_access_point": "Spitzenlast-Preisbildung"} 1 +2024-09-11 09:09:50.118376 2024-09-11 09:09:50.118382 623f57fe-f624-4410-9431-00bd550240e2 {"md5": "90bd6e709a5917c4f28cc457e8067696", "pid": "040760669", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Therapie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333246218", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11946047", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11946047s"}], "authorized_access_point": "Chimiothérapie"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125433095X", "source": "GND"}, {"type": "bf:Nbn", "value": "6603", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/6603"}], "authorized_access_point": "Farmacoterapia"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254472754", "source": "GND"}, {"type": "bf:Nbn", "value": "XX538644", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX538644"}], "authorized_access_point": "Farmacoterapia"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256245534", "source": "GND"}, {"type": "bf:Nbn", "value": "2394", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_2394"}], "authorized_access_point": "drug therapy"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241636737", "source": "GND"}, {"type": "bf:Nbn", "value": "D004358", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D004358"}], "authorized_access_point": "Drug Therapy"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4076066-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040760669", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4076066-2", "source": "GND"}], "variant_access_point": ["Arzneimitteltherapie", "Arzneitherapie", "Medikamentöse Therapie"], "authorized_access_point": "Pharmakotherapie"} 1 +2024-09-11 09:09:50.174142 2024-09-11 09:09:50.174146 955c2aaf-1a99-4db0-8776-9e5a6314efe3 {"md5": "a20868aa1c0a58f4ea3bde998de104ce", "pid": "04075121X", "note": [{"label": ["Benutzt für das Erzeugnis, zur Drucktechnik benutze Notendruck. Nach Anlage 6 RSWK 3. Aufl. auch als Formschlagwort zugelassen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Musikalien"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134550618", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12135729", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb121357293"}], "authorized_access_point": "Musique imprimée"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4075121-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04075121X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4075121-1", "source": "GND"}], "variant_access_point": ["Musik", "Musikausgabe", "Notendruck (Musikausgabe)"], "authorized_access_point": "Musikdruck"} 1 +2024-09-11 09:09:50.235748 2024-09-11 09:09:50.235752 9a4920d0-8648-49da-b950-b6ee6fba8c7b {"md5": "5a6a297cfffb9644643170559fb8219e", "pid": "040741117", "note": [{"label": ["Unterrichtsmedien als Hilfsmittel (RDA AH-007).", "Für Materialien, die Schulbücher ergänzen oder ersetzen, diesen gegenüber eine geringere Verbindlichkeit für die Unterrichtsgestaltung haben und spezielle Themen für eines oder mehrere Unterrichtsfächer aufbereiten; analog auch für den außerschulischen Bereich. Lehrmittel können sowohl für Lehrer wie für Schüler (Lernende) bestimmt sein. Auch für Darstellungen von Fachwissen, in denen ein anderes Fach als das des eigentlichen Zielberufs behandelt wird. Nicht für studienbegleitende Literatur, Lehrbücher und Lehrmaterialien zum Selbststudium; nicht für programmierte, interaktive Lehrmittel (verwende hierfür Lernsoftware) (RDA AH-007).", "Nicht für Studienbegleitende Lit., nicht für Lehrbücher u. -materialien zum Selbststudium; zu Lehrbuch siehe dort. Methodisch-didaktische Anleitungen ohne spezielle Materialien (z.B. Medien) erhalten keine Formangabe."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Einführung"}], "related": [{"authorized_access_point": "Aufgabensammlung"}, {"authorized_access_point": "Unterrichtstechnologie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133683266", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85133053", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85133053"}], "authorized_access_point": "Teaching - Aids and devices"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133683266", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF119771160", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11977116n"}], "authorized_access_point": "Matériel didactique"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254365559", "source": "GND"}, {"type": "bf:Nbn", "value": "33382", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/33382"}], "authorized_access_point": "Sussidi didattici"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254455639", "source": "GND"}, {"type": "bf:Nbn", "value": "XX528420", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX528420"}], "authorized_access_point": "Material didáctico"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966834526", "source": "GND"}, {"type": "bf:Nbn", "value": "18292-6", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/18292-6"}], "authorized_access_point": "Lehrmaterial"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970568800", "source": "GND"}, {"type": "bf:Nbn", "value": "10050780", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10050780"}], "authorized_access_point": "Lehrmittel"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970595581", "source": "GND"}, {"type": "bf:Nbn", "value": "10059636", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10059636"}], "authorized_access_point": "Studienmaterial"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970599692", "source": "GND"}, {"type": "bf:Nbn", "value": "10050859", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10050859"}], "authorized_access_point": "Unterrichtsmaterial"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970599706", "source": "GND"}, {"type": "bf:Nbn", "value": "10051872", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10051872"}], "authorized_access_point": "Unterrichtsmedien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4074111-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040741117", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4074111-4", "source": "GND"}], "variant_access_point": ["Arbeitsmittel", "Bildungsmittel", "Lehrmaterial", "Lernmaterial", "Lernmittel", "Unterricht", "Unterricht", "Unterrichtsbeispiele", "Unterrichtsmaterial", "Unterrichtsmedien", "Unterrichtsmedium", "Unterrichtsmittel"], "authorized_access_point": "Lehrmittel"} 1 +2024-09-11 09:09:50.30697 2024-09-11 09:09:50.306975 f1980ce1-39ba-4e0a-aabc-65af53ae2376 {"md5": "26f2f75efa9d714d0689d2d5e0e6b11c", "pid": "040737888", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134089090", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85019945", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85019945"}], "authorized_access_point": "Capital market"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134089090", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11996016", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11996016j"}], "authorized_access_point": "Marché financier"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966818679", "source": "GND"}, {"type": "bf:Nbn", "value": "11433-0", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/11433-0"}], "authorized_access_point": "Kreditmarkt"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970549962", "source": "GND"}, {"type": "bf:Nbn", "value": "10034971", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10034971"}], "authorized_access_point": "Finanzmarkt"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970566425", "source": "GND"}, {"type": "bf:Nbn", "value": "10044823", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10044823"}], "authorized_access_point": "Kreditmarkt"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4073788-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040737888", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4073788-3", "source": "GND"}], "variant_access_point": ["Finanzmarkt"], "authorized_access_point": "Kreditmarkt"} 1 +2024-09-11 09:09:50.373175 2024-09-11 09:09:50.373178 9acd98e7-0086-460f-bd64-2441fdc3f807 {"md5": "3702333ac0177f916a09b009cd047810", "pid": "040737810", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tumor"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134509650", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85019519", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85019519"}], "authorized_access_point": "Cancer - Patients"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134509650", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11931109", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119311093"}], "authorized_access_point": "Cancéreux"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133610633", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11931105", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11931105q"}], "authorized_access_point": "Cancer"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254349537", "source": "GND"}, {"type": "bf:Nbn", "value": "21132", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/21132"}], "authorized_access_point": "Cancro"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254452176", "source": "GND"}, {"type": "bf:Nbn", "value": "XX526004", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX526004"}], "authorized_access_point": "Cáncer"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241609667", "source": "GND"}, {"type": "bf:Nbn", "value": "D009369", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D009369"}], "authorized_access_point": "Neoplasms"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)968411649", "source": "GND"}, {"type": "bf:Nbn", "value": "18899-3", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/18899-3"}], "authorized_access_point": "Krebskrankheit"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970566395", "source": "GND"}, {"type": "bf:Nbn", "value": "10049933", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10049933"}], "authorized_access_point": "Krebs"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4073781-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040737810", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4073781-0", "source": "GND"}], "variant_access_point": ["Carcinom", "Malignom", "Maligner Tumor", "Neoplasma (Krebs)", "Karzinom", "Bösartiger Tumor", "Krebserkrankung"], "authorized_access_point": "Krebs (Medizin)"} 1 +2024-09-11 09:09:50.434428 2024-09-11 09:09:50.434433 0e9f01bb-c7a6-49c6-9b3c-e3bbe9ff2bbf {"md5": "7de5f06eec626d2a13a985986fb98566", "pid": "040737063", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Grammatik"}, {"authorized_access_point": "Kontrastive Linguistik"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254369848", "source": "GND"}, {"type": "bf:Nbn", "value": "36872", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/36872"}], "authorized_access_point": "Grammatica comparata"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254511776", "source": "GND"}, {"type": "bf:Nbn", "value": "XX527548", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX527548"}], "authorized_access_point": "Gramática comparada"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113404240X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11976576", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11976576c"}], "authorized_access_point": "Grammaire comparée"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4073706-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040737063", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4073706-8", "source": "GND"}], "variant_access_point": ["Grammatik", "Vergleichende Grammatik", "Konfrontative Grammatik"], "authorized_access_point": "Kontrastive Grammatik"} 1 +2024-09-11 09:09:50.492272 2024-09-11 09:09:50.492277 f5bd6052-1ef8-48ab-b056-cfdbf9391115 {"md5": "352f8d8fee96f39e83ce63ef75867486", "pid": "040717763", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Soziale Rolle"}], "related": [{"authorized_access_point": "Geschlechtsunterschied"}, {"authorized_access_point": "Gender"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133928579", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85120663", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85120663"}], "authorized_access_point": "Sex role"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133928579", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11932779", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119327795"}], "authorized_access_point": "Rôle selon le sexe"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1299901182", "source": "GND"}, {"type": "bf:Nbn", "value": "XX527889", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX527889"}], "authorized_access_point": "Rol sexual"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)96696148X", "source": "GND"}, {"type": "bf:Nbn", "value": "30047-5", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/30047-5"}], "authorized_access_point": "Geschlechterrolle"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)97055379X", "source": "GND"}, {"type": "bf:Nbn", "value": "10044127", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10044127"}], "authorized_access_point": "Geschlechtsrolle"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4071776-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040717763", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4071776-8", "source": "GND"}], "variant_access_point": ["Geschlechtsrolle"], "authorized_access_point": "Geschlechterrolle"} 1 +2024-09-11 09:09:50.547637 2024-09-11 09:09:50.547641 e617069a-1cd7-4c74-95fd-cebd4a3ea2a1 {"md5": "4ea97778c4241f14d0622b155d87ed4a", "pid": "040717119", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Vererbung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254320245", "source": "GND"}, {"type": "bf:Nbn", "value": "1542", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/1542"}], "authorized_access_point": "Genetica vegetale"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254320229", "source": "GND"}, {"type": "bf:Nbn", "value": "1540", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/1540"}], "authorized_access_point": "Genetica"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254433902", "source": "GND"}, {"type": "bf:Nbn", "value": "XX524577", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX524577"}], "authorized_access_point": "Genética"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254433899", "source": "GND"}, {"type": "bf:Nbn", "value": "XX526352", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX526352"}], "authorized_access_point": "Genética vegetal"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256216747", "source": "GND"}, {"type": "bf:Nbn", "value": "3222", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_3222"}], "authorized_access_point": "genetics"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1012494675", "source": "GND"}, {"type": "bf:Nbn", "value": "28854-5", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/28854-5"}], "authorized_access_point": "Genetik"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970553366", "source": "GND"}, {"type": "bf:Nbn", "value": "10045017", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10045017"}], "authorized_access_point": "Genforschung"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970553331", "source": "GND"}, {"type": "bf:Nbn", "value": "10042870", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10042870"}], "authorized_access_point": "Genetik"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4071711-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040717119", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4071711-2", "source": "GND"}], "variant_access_point": ["Allgemeine Genetik", "Erbbiologie", "Erbforschung", "Erblehre", "Vererbungslehre", "Vererbungswissenschaft", "Erblichkeitslehre"], "authorized_access_point": "Genetik"} 1 +2024-09-11 09:09:50.604166 2024-09-11 09:09:50.604169 281724c2-189b-473f-b8f6-ad7e7d2c483e {"md5": "53c840dfb8cec3972e9ebf423594efd7", "pid": "040715213", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wettbewerbskontrolle"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966751345", "source": "GND"}, {"type": "bf:Nbn", "value": "10957-6", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/10957-6"}], "authorized_access_point": "Fusionskontrolle"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4071521-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040715213", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4071521-8", "source": "GND"}], "variant_access_point": ["Konzentrationskontrolle", "Zusammenschlusskontrolle", "Fusion", "Unternehmenskonzentration", "Merger control"], "authorized_access_point": "Fusionskontrolle"} 1 +2024-09-11 09:09:50.654005 2024-09-11 09:09:50.654011 b0982876-bf52-4700-a8d9-c5ed1cb17183 {"md5": "a4138af69cb6f82ca732ed568aafd8c0", "pid": "040712168", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133955533", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2008108033", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2008108033"}], "authorized_access_point": "Motion pictures - Philosophy"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254428917", "source": "GND"}, {"type": "bf:Nbn", "value": "XX4430093", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX4430093"}], "authorized_access_point": "Cine - Filosofía"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4071216-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040712168", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4071216-3", "source": "GND"}], "variant_access_point": ["Film"], "authorized_access_point": "Filmtheorie"} 1 +2024-09-11 09:09:50.712176 2024-09-11 09:09:50.71218 43f154db-d873-4677-a7cc-3631e9ed6e69 {"md5": "1154940e1bd4c23b76ec01e98c79f82b", "pid": "040709248", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Beweismittel"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113393370X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85034045", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85034045"}], "authorized_access_point": "Criminal investigation"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113393370X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11934170", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11934170w"}], "authorized_access_point": "Enquêtes criminelles"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4070924-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040709248", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4070924-3", "source": "GND"}], "variant_access_point": ["Polizeiliche Ermittlungstätigkeit", "Ermitteln", "Ermittlungstätigkeit", "Ermittlungen"], "authorized_access_point": "Ermittlung"} 1 +2024-09-11 09:09:50.767902 2024-09-11 09:09:50.767906 9c6eda1f-e5ee-4481-9593-0e674322a0ff {"md5": "6125a974550647727a648cf548d3ff86", "pid": "040707385", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schalenwild"}, {"authorized_access_point": "Hirsche"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134206968", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85087175", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85087175"}], "authorized_access_point": "Moose"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134206968", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16175221", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16175221b"}], "authorized_access_point": "Élan"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125437163X", "source": "GND"}, {"type": "bf:Nbn", "value": "38252", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/38252"}], "authorized_access_point": "Alci"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256207454", "source": "GND"}, {"type": "bf:Nbn", "value": "2536", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_2536"}], "authorized_access_point": "elks"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4070738-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040707385", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4070738-6", "source": "GND"}], "variant_access_point": ["Alces alces"], "authorized_access_point": "Elch"} 1 +2024-09-11 09:09:50.822775 2024-09-11 09:09:50.822779 cd421a45-210b-4f67-934f-95415477070d {"md5": "1015a0ddcdbc655d521987712dc179e9", "pid": "040706079", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Jaina"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133650783", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85069282", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85069282"}], "authorized_access_point": "Jainism"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133650783", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11953383", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11953383z"}], "authorized_access_point": "Jaïnisme"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254333932", "source": "GND"}, {"type": "bf:Nbn", "value": "8777", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/8777"}], "authorized_access_point": "Giainismo"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254445331", "source": "GND"}, {"type": "bf:Nbn", "value": "XX542653", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX542653"}], "authorized_access_point": "Jainismo"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4070607-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040706079", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4070607-2", "source": "GND"}], "variant_access_point": ["Dschainismus", "Dschinismus", "Jaina (Religion)", "Jinismus"], "authorized_access_point": "Jainismus"} 1 +2024-09-11 09:09:50.879929 2024-09-11 09:09:50.879932 5c1559ba-41c1-4e3c-9e0f-7cc99e6b7a3d {"md5": "d67dffe706526735d4facee0e16277b9", "pid": "040705846", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Dreyfus-Aff%C3%A4re&oldid=211040560"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Politischer Skandal"}], "related": [{"authorized_access_point": "Militärgerichtsverfahren"}, {"authorized_access_point": "Antisemitismus"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133954790", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2019004577", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2019004577"}], "authorized_access_point": "Dreyfus, Alfred, 1859-1935 - Trials, litigation, etc."}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133954790", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11942701", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11942701f"}], "authorized_access_point": "Dreyfus, Affaire (1894-1906)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4070584-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040705846", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4070584-5", "source": "GND"}], "variant_access_point": ["Dreyfus-Affäre", "Dreyfus-Prozess"], "authorized_access_point": "Dreyfusaffäre"} 1 +2024-09-11 09:09:50.942255 2024-09-11 09:09:50.94226 c99bd93b-ffc6-46a6-9a32-e83987aae79d {"md5": "e5e598e18266780cd5f048d0577c9586", "pid": "040693759", "note": [{"label": ["Für Schweiz benutze Personalvorsorge"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Altersversorgung"}], "related": [{"authorized_access_point": "Personalvorsorge"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4069375-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040693759", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4069375-2", "source": "GND"}], "variant_access_point": ["Altersversorgung", "Betriebliche Altersfürsorge", "Betriebliche Altersrente", "Betriebliche Pension", "Betriebliche Versorgungsanwartschaft", "Betriebliches Ruhegeld", "Betriebspension", "Betriebsrente", "Ruhegehalt", "Ruhegeld", "Altersversorgung", "Zweite Säule (Altersversorgung)", "Company pension"], "authorized_access_point": "Betriebliche Altersversorgung"} 1 +2024-09-11 09:09:51.000747 2024-09-11 09:09:51.000752 9aaeaac2-ff4c-40aa-abbf-104bb85f6413 {"md5": "824b420b8f641400465f4613c64d6de3", "pid": "040693538", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Züchtungstechnik"}], "related": [{"authorized_access_point": "Besamungsstation"}, {"authorized_access_point": "Insemination"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332731503", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11965301", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11965301g"}], "authorized_access_point": "Insémination artificielle"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254343601", "source": "GND"}, {"type": "bf:Nbn", "value": "17023", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/17023"}], "authorized_access_point": "Fecondazione artificiale"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254410945", "source": "GND"}, {"type": "bf:Nbn", "value": "XX549870", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX549870"}], "authorized_access_point": "Inseminación artificial"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256196061", "source": "GND"}, {"type": "bf:Nbn", "value": "638", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_638"}], "authorized_access_point": "artificial insemination"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4069353-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040693538", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4069353-3", "source": "GND"}], "variant_access_point": ["Künstliche Besamung"], "authorized_access_point": "Besamung"} 1 +2024-09-11 09:09:51.057391 2024-09-11 09:09:51.057395 aa96cfd7-44b5-489e-8d72-d4e688d21927 {"md5": "ea920bb72e60075487246ceb553d0269", "pid": "040687333", "note": [{"label": ["Benutzt für pathologische Varianten in der Medizin"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Missbildung"}, {"authorized_access_point": "Behinderung"}, {"authorized_access_point": "Normvariante"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134617119", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11953069", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11953069k"}], "authorized_access_point": "Malformations"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4068733-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040687333", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4068733-8", "source": "GND"}], "variant_access_point": ["Abart (Medizin)", "Variation (Medizin)", "Variante (Medizin)"], "authorized_access_point": "Anomalie (Medizin)"} 1 +2024-09-11 09:09:51.122916 2024-09-11 09:09:51.122919 1746a47c-3799-40b6-a9fe-3aaffdb16ac2 {"md5": "1f55d17889705e639b122b05f11886e1", "pid": "040685969", "note": [{"label": ["Für die Altersgruppe ab ca. 60 Jahre und in Verbindung mit dem Schlagwort Lebensführung und dem Formschlagwort Ratgeber wird Alter bevorzugt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Altersphysiologie"}, {"authorized_access_point": "Gerontologie"}, {"authorized_access_point": "Lebensalter"}, {"authorized_access_point": "Biologisches Alter"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332657001", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11940843", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119408435"}], "authorized_access_point": "Vieillissement"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254403310", "source": "GND"}, {"type": "bf:Nbn", "value": "XX528051", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX528051"}], "authorized_access_point": "Envejecimiento"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125619008X", "source": "GND"}, {"type": "bf:Nbn", "value": "192", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_192"}], "authorized_access_point": "ageing"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1282195956", "source": "GND"}, {"type": "bf:Nbn", "value": "D000375", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000375"}], "authorized_access_point": "Aging"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970531648", "source": "GND"}, {"type": "bf:Nbn", "value": "10035269", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10035269"}], "authorized_access_point": "Altern"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4068596-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040685969", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4068596-2", "source": "GND"}], "variant_access_point": ["Alterungsprozess", "Altwerden", "Seneszenz", "Alterungsprozess (Physiologie)", "Alterung (Physiologie)"], "authorized_access_point": "Altern"} 1 +2024-09-11 09:09:51.50862 2024-09-11 09:09:51.508625 6692125e-c46f-42ff-ae13-8f63b429fd13 {"md5": "ebc6661b0af4ef6e4778f9a0054aec01", "pid": "040658864", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gruppe (Mathematik)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333591713", "source": "GND"}, {"type": "bf:Nbn", "value": "sh95002984", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh95002984"}], "authorized_access_point": "Weyl groups"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333591713", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16561878", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16561878g"}], "authorized_access_point": "Groupes de Weyl"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4065886-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040658864", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4065886-7", "source": "GND"}], "variant_access_point": ["Weylsche Gruppe"], "authorized_access_point": "Weyl-Gruppe"} 1 +2024-09-11 09:09:51.212081 2024-09-11 09:09:51.212087 675a2f70-208c-409a-abde-b5499bcdefe7 {"md5": "72df06d2a976114d8b90c24eb2faa663", "pid": "040677036", "note": [{"label": ["Einzelne Organisationen der Zeugen Jehovas werden als Körperschaften angesetzt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133622674", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85069870", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85069870"}], "authorized_access_point": "Jehovah's Witnesses"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133622674", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11934681", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11934681x"}], "authorized_access_point": "Témoins de Jéhovah"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254359044", "source": "GND"}, {"type": "bf:Nbn", "value": "27904", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/27904"}], "authorized_access_point": "Testimoni di Geova"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4067703-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040677036", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4067703-5", "source": "GND"}], "variant_access_point": ["Bibelforscher", "Jehovas Zeugen", "Russelliten", "Ernste Bibelforscher"], "authorized_access_point": "Zeugen Jehovas"} 1 +2024-09-11 09:09:51.276854 2024-09-11 09:09:51.276859 60642b94-e758-47b6-9e93-a5061dffa1c8 {"md5": "86f7d2640f0302e53f68f2ade6e5d4a2", "pid": "04067701X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Person"}], "related": [{"authorized_access_point": "Gewährsmann"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334211922", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85147165", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85147165"}], "authorized_access_point": "Witnesses"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334211922", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11975370", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11975370h"}], "authorized_access_point": "Témoins"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1299918964", "source": "GND"}, {"type": "bf:Nbn", "value": "XX532019", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX532019"}], "authorized_access_point": "Testigos"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970606583", "source": "GND"}, {"type": "bf:Nbn", "value": "10062915", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10062915"}], "authorized_access_point": "Zeuge"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4067701-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04067701X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4067701-1", "source": "GND"}], "authorized_access_point": "Zeuge"} 1 +2024-09-11 09:09:51.33891 2024-09-11 09:09:51.338916 056dd7d5-c4e2-4c9e-9bf4-e45cb87802cc {"md5": "c0956d73bfed95a787deec43a7aee4c0", "pid": "040664643", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kriminalität"}], "related": [{"authorized_access_point": "Wirtschaftsdelikt"}, {"authorized_access_point": "Wirtschaftsstrafrecht"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133158163X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85146466", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85146466"}], "authorized_access_point": "White collar crimes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133158163X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13320552", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb133205524"}], "authorized_access_point": "Criminalité des affaires"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)967041279", "source": "GND"}, {"type": "bf:Nbn", "value": "16201-3", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/16201-3"}], "authorized_access_point": "Wirtschaftskriminalität"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970604912", "source": "GND"}, {"type": "bf:Nbn", "value": "10049794", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10049794"}], "authorized_access_point": "Wirtschaftskriminalität"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4066464-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040664643", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4066464-8", "source": "GND"}], "variant_access_point": ["White-collar crime"], "authorized_access_point": "Wirtschaftskriminalität"} 1 +2024-09-11 09:09:51.393889 2024-09-11 09:09:51.393891 99ea1b51-903a-47b2-a977-19e093c5c68e {"md5": "96872e611bd522823a0dd5eb193097a9", "pid": "040664244", "note": [{"label": ["Wertmäßig erfassbare Größe zur Abbildung der Beziehung zwischen Handlungsergebnis und dem dafür erforderlichen Mitteleinsatz (bewertetes Verhältnis von Ertrag und Aufwand)."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Effizienz"}, {"authorized_access_point": "Effektivität"}, {"authorized_access_point": "Unwirtschaftlichkeit"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)967040701", "source": "GND"}, {"type": "bf:Nbn", "value": "12073-6", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/12073-6"}], "authorized_access_point": "Wirtschaftlichkeit"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)97060470X", "source": "GND"}, {"type": "bf:Nbn", "value": "10062371", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10062371"}], "authorized_access_point": "Wirtschaftlichkeit"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4066424-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040664244", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4066424-7", "source": "GND"}], "authorized_access_point": "Wirtschaftlichkeit"} 1 +2024-09-11 09:09:51.447024 2024-09-11 09:09:51.447028 9986c069-4d56-4bde-90a7-5706bd88f850 {"md5": "b93fae2e15890bc1b603f3c6063cf4e4", "pid": "040664104", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Integration"}], "related": [{"authorized_access_point": "Integration (Internationale Politik)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133972225", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85067394", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85067394"}], "authorized_access_point": "International economic integration"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133972225", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11949961", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11949961j"}], "authorized_access_point": "Intégration économique internationale"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113412998X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12045383", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12045383t"}], "authorized_access_point": "Intégration économique"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)967041201", "source": "GND"}, {"type": "bf:Nbn", "value": "10626-1", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/10626-1"}], "authorized_access_point": "Wirtschaftsintegration"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970604653", "source": "GND"}, {"type": "bf:Nbn", "value": "10038303", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10038303"}], "authorized_access_point": "wirtschaftliche Integration"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4066410-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040664104", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4066410-7", "source": "GND"}], "variant_access_point": ["Integration (Wirtschaft)", "Internationale wirtschaftliche Integration", "Regionale wirtschaftliche Integration", "Wirtschaft", "Wirtschaftsintegration", "Ökonomische Integration", "Regionalismus"], "authorized_access_point": "Wirtschaftliche Integration"} 1 +2024-09-11 09:09:51.619283 2024-09-11 09:09:51.619292 05da178d-cc68-4a78-b6e6-a9db1bde3e3d {"md5": "dbbceb9e63391ca8ce72705658880b1c", "pid": "040641805", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134745354", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11976091", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11976091w"}], "authorized_access_point": "Traitement thermique"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4064180-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040641805", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4064180-6", "source": "GND"}], "variant_access_point": ["Warmbehandlung"], "authorized_access_point": "Wärmebehandlung"} 1 +2024-09-11 09:09:51.675622 2024-09-11 09:09:51.675627 738f5dd0-4049-4208-ae3b-f9a206f7c75d {"md5": "9d8f4d510a6f1a9f036c5d3854a79206", "pid": "040633306", "note": [{"label": ["Ausbildungsberuf", "Für den Mittleren Dienst allgemein verknüpfe Verwaltungsdienst und Mittlerer Dienst."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fachangestellter"}], "related": [{"authorized_access_point": "Weibliche Verwaltungsfachangestellte"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134769717", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16015424", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16015424h"}], "authorized_access_point": "Fonction publique - Carrières"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4063330-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040633306", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4063330-5", "source": "GND"}], "authorized_access_point": "Verwaltungsfachangestellter"} 1 +2024-09-11 09:09:51.733739 2024-09-11 09:09:51.733743 21660110-1e75-43f4-9176-31b4a0fef479 {"md5": "e033f741c668bb0a7a4e45dc059f40aa", "pid": "040628604", "note": [{"label": ["SW Mensch ist pleonastisch, mit Tieren wird verknüpft"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254345035", "source": "GND"}, {"type": "bf:Nbn", "value": "17992", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/17992"}], "authorized_access_point": "Etologia"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254499482", "source": "GND"}, {"type": "bf:Nbn", "value": "XX559474", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX559474"}], "authorized_access_point": "Animales - Conducta"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1299899013", "source": "GND"}, {"type": "bf:Nbn", "value": "XX525655", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX525655"}], "authorized_access_point": "Conducta"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256267902", "source": "GND"}, {"type": "bf:Nbn", "value": "868", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_868"}], "authorized_access_point": "behaviour"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)967018226", "source": "GND"}, {"type": "bf:Nbn", "value": "18859-1", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/18859-1"}], "authorized_access_point": "Verhalten"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)97060064X", "source": "GND"}, {"type": "bf:Nbn", "value": "10034530", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10034530"}], "authorized_access_point": "Verhalten"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4062860-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040628604", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4062860-7", "source": "GND"}], "variant_access_point": ["Mensch", "Menschliches Verhalten"], "authorized_access_point": "Verhalten"} 1 +2024-09-11 09:09:51.793564 2024-09-11 09:09:51.793567 dcb15a8b-481c-43ca-ba7d-9a5766d4e42f {"md5": "50e8215b5e47f5b42020fafe0e23f9f9", "pid": "040628094", "note": [{"label": ["Verknüpfe mit Anwendungsgebiet (z. B. Literatur); bei Einzelwerken sowie bei mehreren Werken eines Autors oder Komponisten verknüpfe mit s Film oder ggf. mit engeren Schlagwörtern (s Musikfilm etc.)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Film"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133610765", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85048224", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85048224"}], "authorized_access_point": "Film adaptations"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133986668", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85133480", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85133480"}], "authorized_access_point": "Television adaptations"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133610765", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11930825", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119308251"}], "authorized_access_point": "Adaptations cinématographiques"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133986668", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11955258", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11955258z"}], "authorized_access_point": "Adaptations télévisées"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254322396", "source": "GND"}, {"type": "bf:Nbn", "value": "2287", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/2287"}], "authorized_access_point": "Riduzioni cinematografiche"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254499393", "source": "GND"}, {"type": "bf:Nbn", "value": "XX538457", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX538457"}], "authorized_access_point": "Adaptaciones cinematográficas"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4062809-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040628094", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4062809-7", "source": "GND"}], "authorized_access_point": "Verfilmung"} 1 +2024-09-11 09:09:51.853264 2024-09-11 09:09:51.853269 52182b3b-9b28-4b81-bc2b-6f44d32ae8b9 {"md5": "fdaaa48a8f1fb1061d00403bcd0dfe9b", "pid": "040621278", "note": [{"label": ["Der Begriff umfasst das Urheberrecht im objektiven Sinne (Gesamtheit der Rechtsnormen, die das Verhältnis des Urhebers zu seinem Werk regeln) und das Urheberrecht im subjektiven Sinne (absolutes Recht des Urhebers an seinem Werk)."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Immaterialgüterrecht"}], "related": [{"authorized_access_point": "Leistungsschutzrecht"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133625290", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85032446", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85032446"}], "authorized_access_point": "Copyright"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133625290", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13318464", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13318464k"}], "authorized_access_point": "Droit d'auteur"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)967014727", "source": "GND"}, {"type": "bf:Nbn", "value": "16037-4", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/16037-4"}], "authorized_access_point": "Urheberrecht"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970599846", "source": "GND"}, {"type": "bf:Nbn", "value": "10040422", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10040422"}], "authorized_access_point": "Urheberrecht"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4062127-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040621278", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4062127-3", "source": "GND"}], "variant_access_point": ["Copyright", "Urheberrechtsschutz", "Urheberschutz"], "authorized_access_point": "Urheberrecht"} 1 +2024-09-11 09:09:51.911259 2024-09-11 09:09:51.911263 b3f0c4d8-78cd-4291-a96d-849062c2d07c {"md5": "3537605eb9a620ed6b1586623f07b48b", "pid": "040617203", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332876544", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2008105294", "source": "DLC"}, {"type": "uri", "value": "https://id.loc.gov/authorities/subjects/sh2008105294"}], "authorized_access_point": "Germans--Hungary"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332876544", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16173217", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16173217m"}], "authorized_access_point": "Allemands de Hongrie"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4061720-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040617203", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4061720-8", "source": "GND"}], "variant_access_point": ["Deutsche"], "authorized_access_point": "Ungarndeutsche"} 1 +2024-09-11 09:09:54.593341 2024-09-11 09:09:54.593346 2229ef4c-b2a1-4333-9e1f-414c1a5197ef {"md5": "1537c798d3c44fe58d2343d3bd89c49a", "pid": "040195589", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Grafik"}, {"authorized_access_point": "Design"}], "related": [{"authorized_access_point": "Kommunikationsdesign"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4019558-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040195589", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4019558-2", "source": "GND"}], "variant_access_point": ["Gebrauchsgrafik", "Gebrauchsgraphik", "Graphikdesign", "Graphic design", "Grafik-Design"], "authorized_access_point": "Grafikdesign"} 1 +2024-09-11 09:09:51.968792 2024-09-11 09:09:51.968797 6e9eb4af-698b-4d00-a9c3-340dcebd39b8 {"md5": "36ec279d684ec7e3d3af222350c3de53", "pid": "040598160", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Belastung"}], "related": [{"authorized_access_point": "Temperaturverhalten"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113395345X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85134764", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85134764"}], "authorized_access_point": "Thermal stresses"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113395345X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11942174", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119421740"}], "authorized_access_point": "Contraintes thermiques"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4059816-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040598160", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4059816-0", "source": "GND"}], "variant_access_point": ["Wärmebelastung", "Temperaturbelastung", "Temperaturbeanspruchung", "Temperatur", "Temperaturzwang"], "authorized_access_point": "Thermische Belastung"} 1 +2024-09-11 09:09:52.023505 2024-09-11 09:09:52.023509 474f0aa1-198e-4a01-8a61-72003a35493b {"md5": "ecb50c54e77872d431996f2c50448ca6", "pid": "040596648", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Textlinguistik"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134567472", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85077490", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85077490"}], "authorized_access_point": "Literary form"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134567472", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11948071", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119480714"}], "authorized_access_point": "Genres littéraires"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4059664-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040596648", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4059664-3", "source": "GND"}], "variant_access_point": ["Textart", "Texttyp"], "authorized_access_point": "Textsorte"} 1 +2024-09-11 09:09:52.076256 2024-09-11 09:09:52.07626 6e9a53af-b5ad-469b-a03a-8eaa86d086b9 {"md5": "074f68185b231d65804f93cefa165753", "pid": "04059596X", "note": [{"label": ["Als Formschlagwort nur bei lokaler Anwendung für die Erschließung mundartl. Texte (RSWK § 762,9) sowie für Erschließung schöner Literatur, von Kinder- und Jugendliteratur sowie von Altbeständen mit Gattungsbegriffen. Als Sach-SW z. B. benutzt für sprachdidakt. verwendete Texte; für linguist. Untersuchungen verknüpfe mit \\"Textsorte\\""], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134039182", "source": "GND"}, {"type": "bf:Nbn", "value": "sh99001271", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99001271"}], "authorized_access_point": "Texts"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134039182", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11975991", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119759914"}], "authorized_access_point": "Textes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970597525", "source": "GND"}, {"type": "bf:Nbn", "value": "10060183", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10060183"}], "authorized_access_point": "Text"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4059596-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04059596X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4059596-1", "source": "GND"}], "authorized_access_point": "Text"} 1 +2024-09-11 09:09:52.139132 2024-09-11 09:09:52.139137 9d4fcaf3-7e00-44c6-aee8-4dcd9a31f3e4 {"md5": "f4d4e0063982225fc8720145b5ba350c", "pid": "040581780", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Männerbund"}, {"authorized_access_point": "Studentenvereinigung"}], "related": [{"authorized_access_point": "Couleurstudent"}, {"authorized_access_point": "Damenverbindung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134062133", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11980097", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11980097q"}], "authorized_access_point": "Étudiants - Associations"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970595395", "source": "GND"}, {"type": "bf:Nbn", "value": "10059565", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10059565"}], "authorized_access_point": "Studentenverbindung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4058178-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040581780", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4058178-0", "source": "GND"}], "variant_access_point": ["Korporation (Student)", "Korporierter", "Studentenkorporation", "Studentische Korporation", "Studentische Verbindung", "Verbindung (Student)", "Hochschulverbindung", "Hochschülerverbindung", "Akademische Verbindung"], "authorized_access_point": "Studentenverbindung"} 1 +2024-09-11 09:09:52.209776 2024-09-11 09:09:52.20978 a3e4ce36-05d7-4c53-b375-b2ce169b30c5 {"md5": "72594a61db87df73401721d0a5eb99c3", "pid": "040579123", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Stra%C3%9Fennetz&oldid=240157115"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Straße"}, {"authorized_access_point": "Verkehrsnetz"}, {"authorized_access_point": "Verkehrsträger"}], "related": [{"authorized_access_point": "Wegenetz"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1290456496", "source": "GND"}, {"type": "bf:Nbn", "value": "30329-2", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/30329-2"}], "authorized_access_point": "Straßennetz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4057912-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040579123", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4057912-8", "source": "GND"}], "authorized_access_point": "Straßennetz"} 1 +2024-09-11 09:09:52.268057 2024-09-11 09:09:52.268061 f038d4ef-c84f-4fc1-98bc-f045c8b47f3b {"md5": "0726cd7392af6eb696d390a412c5d05e", "pid": "040576337", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Statistisches Modell"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331612225", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2005004376", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2005004376"}], "authorized_access_point": "Stochastic models"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4057633-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040576337", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4057633-4", "source": "GND"}], "variant_access_point": ["Probabilistisches Modell", "Wahrscheinlichkeitsmodell"], "authorized_access_point": "Stochastisches Modell"} 1 +2024-09-11 09:09:52.328341 2024-09-11 09:09:52.328345 4b9c0d9e-a0b2-441f-8f50-ddf566e8a8f2 {"md5": "b5d0deb41dc0bd8ffa79d8eefdb7934e", "pid": "040575136", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Düngung"}], "related": [{"authorized_access_point": "Stickstoffdünger"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4057513-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040575136", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4057513-5", "source": "GND"}], "variant_access_point": ["N-Düngung", "Stickstoff"], "authorized_access_point": "Stickstoffdüngung"} 1 +2024-09-11 09:09:52.383872 2024-09-11 09:09:52.383875 b2601987-bd6b-4ac3-a686-38bcfcb82123 {"md5": "7cfe9643534e9ad876209064f92f61d6", "pid": "040570215", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ausdauernde Pflanzen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4057021-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040570215", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4057021-6", "source": "GND"}], "variant_access_point": ["Schmuckstaude", "Stauden"], "authorized_access_point": "Staude"} 1 +2024-09-11 09:09:52.438062 2024-09-11 09:09:52.438067 38059078-09ec-43a1-9e19-478e02a0f5b5 {"md5": "6704561d6c0fd33b45510860233069a7", "pid": "040562182", "note": [{"label": ["Satz von Gegenständen, der für die Bedienung nach vorgeschriebenen oder impliziten Regeln für Unterricht, Unterhaltung oder Therapie konzipiert ist (RDA AH-007).", "Auch für Computerspiele, nicht für Planspiele (RDA AH-007)."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Spielwissenschaft"}, {"authorized_access_point": "Spielgerät"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254489150", "source": "GND"}, {"type": "bf:Nbn", "value": "XX524861", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX524861"}], "authorized_access_point": "Juegos"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1012432467", "source": "GND"}, {"type": "bf:Nbn", "value": "27571-1", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/27571-1"}], "authorized_access_point": "Spiel"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)97059223X", "source": "GND"}, {"type": "bf:Nbn", "value": "10045837", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10045837"}], "authorized_access_point": "Spiel"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4056218-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040562182", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4056218-9", "source": "GND"}], "variant_access_point": ["Spielen", "Spiele"], "authorized_access_point": "Spiel"} 1 +2024-09-11 09:09:52.497035 2024-09-11 09:09:52.49704 fa3fb0c9-41a3-426d-b82d-b9ec85728b10 {"md5": "46ffa51e52d3cc00c6bb827f41d077c6", "pid": "040539644", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schadstoffbelastung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134715978", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2008105554", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2008105554"}], "authorized_access_point": "Heavy metals - Environmental aspects"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134043589", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2018002960", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2018002960"}], "authorized_access_point": "Heavy metal content"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134043589", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11976797", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11976797w"}], "authorized_access_point": "Teneur en métaux lourds"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4053964-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040539644", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4053964-7", "source": "GND"}], "variant_access_point": ["Schwermetall"], "authorized_access_point": "Schwermetallbelastung"} 1 +2024-09-11 09:09:52.554444 2024-09-11 09:09:52.554448 f78c196d-5c3f-4890-a218-8b6403a1ce59 {"md5": "996c8b72e26dcebfbc961af6e67d8489", "pid": "04053376X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Beurteilung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134729618", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85129308", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85129308"}], "authorized_access_point": "Students - Rating of"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134729618", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15085667", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15085667n"}], "authorized_access_point": "Élèves - Évaluation"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970568762", "source": "GND"}, {"type": "bf:Nbn", "value": "10050838", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10050838"}], "authorized_access_point": "Lehrerurteil"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4053376-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04053376X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4053376-1", "source": "GND"}], "variant_access_point": ["Beurteilung", "Beurteilung", "Lehrer", "Lehrer", "Lehrerurteil", "Schulbeurteilung"], "authorized_access_point": "Schülerbeurteilung"} 1 +2024-09-11 09:09:52.612099 2024-09-11 09:09:52.612103 e44ad03c-e158-4844-8763-c78092a37cbb {"md5": "e234c9c7118351de3ff8a9c9c3df4240", "pid": "040515842", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Einsatzfahrzeug"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133685951", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11978147", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119781475"}], "authorized_access_point": "Ambulances"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4051584-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040515842", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4051584-9", "source": "GND"}], "variant_access_point": ["Krankenwagen", "Notarztwagen", "Rettungsfahrzeug", "Sanitätsfahrzeug"], "authorized_access_point": "Rettungswagen"} 1 +2024-09-11 09:09:52.672022 2024-09-11 09:09:52.672025 70fff1da-bbba-4146-b7d1-668f27466fc7 {"md5": "c93484b4db9b008c8cd5bce73e0eead2", "pid": "040490122", "note": [{"label": ["Einzelne Regierungen werden nach § 614 angesetzt. Für die Behandlung mehrer Regierungen in Bundesstaaten verknüpfe den jeweiligen Bundesstaat mit der Bezeichnung für die betr. Gliedstaaten und dem Sachschlagwort Regierung, z. B. Deutschland; Bundesland; Regierung."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Regierungsfähigkeit"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134039077", "source": "GND"}, {"type": "bf:Nbn", "value": "sh00005941", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00005941"}], "authorized_access_point": "Government"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134039077", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11975971", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11975971h"}], "authorized_access_point": "Gouvernement"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134495862", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13319146", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb133191462"}], "authorized_access_point": "Gouvernement (science politique)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134495870", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13319365", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13319365w"}], "authorized_access_point": "Politique publique"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256250546", "source": "GND"}, {"type": "bf:Nbn", "value": "11230", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_11230"}], "authorized_access_point": "government"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966937651", "source": "GND"}, {"type": "bf:Nbn", "value": "16329-5", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/16329-5"}], "authorized_access_point": "Regierung"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970584970", "source": "GND"}, {"type": "bf:Nbn", "value": "10040090", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10040090"}], "authorized_access_point": "Regierung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4049012-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040490122", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4049012-9", "source": "GND"}], "variant_access_point": ["Kabinett", "Ministerrat", "Staatsführung", "Regierungspolitik", "Regierungen"], "authorized_access_point": "Regierung"} 1 +2024-09-11 09:09:52.727036 2024-09-11 09:09:52.72704 fd80a978-f907-4eaf-8908-b3167453df78 {"md5": "e15323c2dc33b447f005e13181414ada", "pid": "040475972", "note": [{"label": ["Ein Prozessvergleich ist ein nach Klageerhebung zwischen den Parteien, eventuell unter Beitritt eines Dritten, geschlossener Vergleich, der einerseits die Beendigung des Rechtsstreits und andererseits materiell-rechtliche Vereinbarungen, die über den Streitgegenstand hinausgehen können, zum Gegenstand hat."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Vergleich (Recht)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4047597-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040475972", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4047597-9", "source": "GND"}], "variant_access_point": ["Gerichtlicher Vergleich"], "authorized_access_point": "Prozessvergleich"} 1 +2024-09-11 09:09:52.781702 2024-09-11 09:09:52.781705 501033f6-66cd-4ff8-aff6-97f476377684 {"md5": "c9678bd863aa24258ef0c5f33713564b", "pid": "040475778", "note": [{"label": ["Ohne Homonymenzusatz nur für das Gerichtsverfahren"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Rechtsstreit"}], "related": [{"authorized_access_point": "Rechtsprechung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133608124", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85137328", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85137328"}], "authorized_access_point": "Trials"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133410185X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85077662", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85077662"}], "authorized_access_point": "Litigation"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133608124", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13319040", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13319040q"}], "authorized_access_point": "Procès"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1299899986", "source": "GND"}, {"type": "bf:Nbn", "value": "XX526521", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX526521"}], "authorized_access_point": "Procesos"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970553552", "source": "GND"}, {"type": "bf:Nbn", "value": "10045081", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10045081"}], "authorized_access_point": "Gerichtsverfahren"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4047577-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040475778", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4047577-3", "source": "GND"}], "variant_access_point": ["Gerichtsverfahren", "Gerichtsprozess", "Prozesse"], "authorized_access_point": "Prozess"} 1 +2024-09-11 09:09:52.837157 2024-09-11 09:09:52.83716 a878fe06-0092-4b60-a7fd-a639e97ce89d {"md5": "3b8edb3f1f61d099e6f522052f89050b", "pid": "040471713", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Medienrecht"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133975852", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85106520", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85106520"}], "authorized_access_point": "Press law"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133975852", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11951060", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119510600"}], "authorized_access_point": "Presse - Droit"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4047171-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040471713", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4047171-8", "source": "GND"}], "variant_access_point": ["Preßrecht"], "authorized_access_point": "Presserecht"} 1 +2024-09-11 09:09:52.893159 2024-09-11 09:09:52.893164 61db01cf-5fba-4487-9e2d-2922495103aa {"md5": "04b70ac7430220fd83cf6774000b28af", "pid": "040471233", "note": [{"label": ["Rechtsnormen, die a) die Festsetzung oder Genehmigung von Preisen sowie die Aufrechterhaltung des Preisstandes (Fest-, Höchst- oder Mindestpreis) und b) die Preisangaben einschließlich der Preisüberwachung regeln"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wirtschaftsverwaltungsrecht"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133685374", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85106618", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85106618"}], "authorized_access_point": "Price regulation"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133685374", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11977930", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11977930d"}], "authorized_access_point": "Prix - Droit"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4047123-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040471233", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4047123-8", "source": "GND"}], "authorized_access_point": "Preisrecht"} 1 +2024-09-11 09:09:52.949163 2024-09-11 09:09:52.949166 becb5dfb-e6c1-488a-abd7-374fb9ed97df {"md5": "18becbbd207613f4afb7640f7f2ea0c5", "pid": "040468003", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Biologie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133684394", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85104917", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85104917"}], "authorized_access_point": "Population biology"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133684394", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11977642", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11977642k"}], "authorized_access_point": "Biologie des populations"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254474595", "source": "GND"}, {"type": "bf:Nbn", "value": "XX534766", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX534766"}], "authorized_access_point": "Biología de poblaciones"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4046800-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040468003", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4046800-8", "source": "GND"}], "authorized_access_point": "Populationsbiologie"} 1 +2024-09-11 09:09:53.003961 2024-09-11 09:09:53.003965 6ac37693-e759-4e55-a403-48c2bb5a32a9 {"md5": "a7dc2408053c2c0985f7e3f7c91a366f", "pid": "040461912", "note": [{"label": ["Ein Placebo (lat. „Ich werde gefallen.“) ist eine Scheinsubstanz oder Scheinbehandlung, die die positiven Wirkungen eines Arzneimittels oder einer Intervention nachzuahmen vermag, ohne aber dabei das spezifische Arzneimittel oder die spezifische Behandlungsmethode zu beinhalten."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Arzneimittel"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133647499", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85102563", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85102563"}], "authorized_access_point": "Placebos (Medicine)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133647499", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11951043", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11951043d"}], "authorized_access_point": "Effet placebo"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241618305", "source": "GND"}, {"type": "bf:Nbn", "value": "D010919", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D010919"}], "authorized_access_point": "Placebos"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4046191-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040461912", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4046191-9", "source": "GND"}], "variant_access_point": ["Blindpräparat", "Falsumpräparat", "Leerpräparat", "Plazebo", "Scheinarznei"], "authorized_access_point": "Placebo"} 1 +2024-09-11 09:09:53.06848 2024-09-11 09:09:53.068484 925a8e45-9d3b-47c4-a1cc-09e2041a9d16 {"md5": "91799e610f5d77868a286fa3fc222a7d", "pid": "040460495", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Protestantismus"}], "related": [{"authorized_access_point": "Pietist"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133935265", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85102060", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85102060"}], "authorized_access_point": "Pietism"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133935265", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11934618", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119346185"}], "authorized_access_point": "Piétisme"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254473386", "source": "GND"}, {"type": "bf:Nbn", "value": "XX535003", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX535003"}], "authorized_access_point": "Pietismo"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970579403", "source": "GND"}, {"type": "bf:Nbn", "value": "10054565", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10054565"}], "authorized_access_point": "Pietismus"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4046049-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040460495", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4046049-6", "source": "GND"}], "authorized_access_point": "Pietismus"} 1 +2024-09-11 09:09:53.141256 2024-09-11 09:09:53.14126 386fa94a-ba73-485e-984c-a56e45364fc4 {"md5": "1e4f3fc9b1744a7ebab67c88fb325f33", "pid": "040459195", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Mannequin"}, {"authorized_access_point": "Dressman"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1324589744", "source": "GND"}, {"type": "bf:Nbn", "value": "sh93000734", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh93000734"}], "authorized_access_point": "Photographers' models"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333668309", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11968862", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11968862s"}], "authorized_access_point": "Modèles (art)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4045919-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040459195", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4045919-6", "source": "GND"}], "variant_access_point": ["Photomodell", "Model (Beruf)"], "authorized_access_point": "Fotomodell"} 1 +2024-09-11 09:09:53.198473 2024-09-11 09:09:53.198477 dd2d0c44-d107-4d95-9f2b-0d0763bca68e {"md5": "ebe98bfdefaad8e7ee2e4f0ddc011a08", "pid": "040448932", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Medizin"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113361910X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85098685", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85098685"}], "authorized_access_point": "Pathology"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113361910X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11933033", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119330335"}], "authorized_access_point": "Pathologie"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1299898416", "source": "GND"}, {"type": "bf:Nbn", "value": "XX525081", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX525081"}], "authorized_access_point": "Patología"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256243809", "source": "GND"}, {"type": "bf:Nbn", "value": "5631", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_5631"}], "authorized_access_point": "pathology"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241617228", "source": "GND"}, {"type": "bf:Nbn", "value": "D010336", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D010336"}], "authorized_access_point": "Pathology"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970578377", "source": "GND"}, {"type": "bf:Nbn", "value": "10054226", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10054226"}], "authorized_access_point": "Pathologie"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4044893-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040448932", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4044893-9", "source": "GND"}], "variant_access_point": ["Allgemeine Pathologie", "Spezielle Pathologie", "Klinische Pathologie", "Allgemeine Krankheitslehre"], "authorized_access_point": "Pathologie"} 1 +2024-09-11 09:09:53.250939 2024-09-11 09:09:53.250942 2bca53f8-5dad-4762-b034-90bea9a770a6 {"md5": "b6279dca85e0a24dae6a3fea790b8dae", "pid": "040448924", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Pathographie&oldid=240762026"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4044892-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040448924", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4044892-7", "source": "GND"}], "variant_access_point": ["Pathografie"], "authorized_access_point": "Pathographie"} 1 +2024-09-11 09:09:53.305352 2024-09-11 09:09:53.305356 b5cfc7f7-33cf-41e0-a32d-f38ab4f82d7d {"md5": "b46e562d7616b442afe250a7cb088c2a", "pid": "040414124", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Religionsethnologie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133630057", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13318507", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb133185071"}], "authorized_access_point": "Religion primitive"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254479139", "source": "GND"}, {"type": "bf:Nbn", "value": "XX525120", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX525120"}], "authorized_access_point": "Religiones primitivas"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970575343", "source": "GND"}, {"type": "bf:Nbn", "value": "10053067", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10053067"}], "authorized_access_point": "Naturreligion"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4041412-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040414124", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4041412-7", "source": "GND"}], "variant_access_point": ["Naturreligion", "Naturvolk", "Elementarreligion", "Primitive Religion", "Stammesreligion", "Naturreligionen", "Indigene Religion", "Traditionelle Religion", "Traditionale Religion"], "authorized_access_point": "Ethnische Religion"} 1 +2024-09-11 09:09:53.362691 2024-09-11 09:09:53.362696 0aeff81a-b63e-4193-ab1a-4d0a5bb93427 {"md5": "f152878956a8a6f29d90acfd7d85676f", "pid": "04041177X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Malerei"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133961800", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11946114", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119461143"}], "authorized_access_point": "Peinture naïve"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4041177-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04041177X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4041177-1", "source": "GND"}], "authorized_access_point": "Naive Malerei"} 1 +2024-09-11 09:09:53.428934 2024-09-11 09:09:53.428939 d67b4db8-02c0-479f-be6b-d57cbda72bd4 {"md5": "4b67ee8b78b78fe98d9f28ca06bc25b8", "pid": "040411583", "note": [{"label": ["Benutzt seit der Gründung des Staates Israel"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Internationale Politik"}], "related": [{"authorized_access_point": "Palästinafrage"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133712010", "source": "GND"}, {"type": "bf:Nbn", "value": "sh87002535", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh87002535"}], "authorized_access_point": "Arab-Israeli conflict"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133712010", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12047729", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12047729m"}], "authorized_access_point": "Conflit israélo-arabe"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)129990159X", "source": "GND"}, {"type": "bf:Nbn", "value": "XX528425", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX528425"}], "authorized_access_point": "Conflicto árabe-israelí"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1027620000", "source": "GND"}, {"type": "bf:Nbn", "value": "10071133", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10071133"}], "authorized_access_point": "Nahost-Konflikt"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4041158-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040411583", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4041158-8", "source": "GND"}], "variant_access_point": ["Arabisch-israelischer Konflikt", "Israelisch-arabischer Konflikt"], "authorized_access_point": "Nahostkonflikt"} 1 +2024-09-11 09:09:53.491219 2024-09-11 09:09:53.491224 d099abda-9fc1-4f56-aa2c-239d18ca7294 {"md5": "848f7f25513af1c80c522c015c450c42", "pid": "040372170", "note": [{"label": ["Ausbildungsberuf", "Als Homonymenzusatz bei Personenschlagwörtern zugelassen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Handwerker"}, {"authorized_access_point": "Bauwirtschaftsberuf"}], "related": [{"authorized_access_point": "Malerin und Lackiererin"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113401631X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85096659", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85096659"}], "authorized_access_point": "Painters, Industrial"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113401631X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11967308", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11967308c"}], "authorized_access_point": "Peintres en bâtiment"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4037217-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040372170", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4037217-0", "source": "GND"}], "variant_access_point": ["Lackierer", "Anstreicher"], "authorized_access_point": "Maler und Lackierer"} 1 +2024-09-11 09:09:53.564012 2024-09-11 09:09:53.564018 2549bac0-2226-43cb-98a4-d7aa3006fec1 {"md5": "9e9fe30317815ace3f37637f53b70f92", "pid": "040366898", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Herpetologie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133610870", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85004598", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85004598"}], "authorized_access_point": "Amphibians"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133610870", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11930880", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119308805"}], "authorized_access_point": "Amphibiens"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125432187X", "source": "GND"}, {"type": "bf:Nbn", "value": "2076", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/2076"}], "authorized_access_point": "Anfibi"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254457917", "source": "GND"}, {"type": "bf:Nbn", "value": "XX525093", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX525093"}], "authorized_access_point": "Anfibios"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256233978", "source": "GND"}, {"type": "bf:Nbn", "value": "359", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_359"}], "authorized_access_point": "amphibians"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4036689-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040366898", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4036689-3", "source": "GND"}], "variant_access_point": ["Amphibia", "Amphibien"], "authorized_access_point": "Lurche"} 1 +2024-09-11 09:09:53.615254 2024-09-11 09:09:53.615256 26792b78-673b-4cd6-88ef-514d0ebc443b {"md5": "f88c440e11dd0ab7f5257205236c8869", "pid": "040357228", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Spirituosen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133926541", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85077347", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85077347"}], "authorized_access_point": "Liqueurs"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133926541", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11932253", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119322533"}], "authorized_access_point": "Liqueurs"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254351760", "source": "GND"}, {"type": "bf:Nbn", "value": "22490", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/22490"}], "authorized_access_point": "Liquori"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254456481", "source": "GND"}, {"type": "bf:Nbn", "value": "XX527213", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX527213"}], "authorized_access_point": "Licores"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256233048", "source": "GND"}, {"type": "bf:Nbn", "value": "4369", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_4369"}], "authorized_access_point": "liqueurs"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4035722-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040357228", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4035722-3", "source": "GND"}], "authorized_access_point": "Likör"} 1 +2024-09-11 09:09:53.667625 2024-09-11 09:09:53.66763 a9a8bb4b-a466-4a72-b796-ce9afce93bb2 {"md5": "3f758aa9458b4b24b003979e2c0f4f9d", "pid": "040354415", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Lektüre"}, {"authorized_access_point": "Leserin"}, {"authorized_access_point": "Lesen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134807252", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85015758", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85015758"}], "authorized_access_point": "Books and reading"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332421776", "source": "GND"}, {"type": "bf:Nbn", "value": "sh99004859", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99004859"}], "authorized_access_point": "Books and reading"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134807252", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13318354", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb133183540"}], "authorized_access_point": "Livres et lecture"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125436207X", "source": "GND"}, {"type": "bf:Nbn", "value": "30781", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/30781"}], "authorized_access_point": "Lettori"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970569491", "source": "GND"}, {"type": "bf:Nbn", "value": "10051152", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10051152"}], "authorized_access_point": "Leser"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4035441-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040354415", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4035441-6", "source": "GND"}], "variant_access_point": ["Lesepublikum", "Leserschaft"], "authorized_access_point": "Leser"} 1 +2024-09-11 09:09:53.723998 2024-09-11 09:09:53.724003 8d26a948-7b8c-44e2-9d28-24b0bf00149c {"md5": "8a55b48f5573eb4e463dd8bf636cce5f", "pid": "040351130", "note": [{"label": ["Personen, die in einem Ausbildungsberuf im dualen System ausgebildet werden.", "Verknüpfe mit der Berufsbezeichnung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Berufsausbildung"}, {"authorized_access_point": "Anlernling"}, {"authorized_access_point": "Lehrling"}, {"authorized_access_point": "Weibliche Auszubildende"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134495900", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11951682", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11951682z"}], "authorized_access_point": "Apprentis"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966693582", "source": "GND"}, {"type": "bf:Nbn", "value": "11288-4", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/11288-4"}], "authorized_access_point": "Auszubildende"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970535740", "source": "GND"}, {"type": "bf:Nbn", "value": "10037155", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10037155"}], "authorized_access_point": "Auszubildender"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4035113-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040351130", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4035113-0", "source": "GND"}], "variant_access_point": ["Lehrling (Österreich)"], "authorized_access_point": "Auszubildender"} 1 +2024-09-11 09:09:53.781637 2024-09-11 09:09:53.781641 4074ad6f-8990-4a5a-8ff1-0b2cfd85b3e0 {"md5": "13d875e2d6ab50f17773858638114eba", "pid": "04034889X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Lebensmittelwirtschaft"}, {"authorized_access_point": "Genussmittelindustrie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134561490", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85050282", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85050282"}], "authorized_access_point": "Food industry and trade"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256232211", "source": "GND"}, {"type": "bf:Nbn", "value": "3020", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_3020"}], "authorized_access_point": "food industry"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970574878", "source": "GND"}, {"type": "bf:Nbn", "value": "10045624", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10045624"}], "authorized_access_point": "Nahrungs- und Genussmittelgewerbe"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4034889-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04034889X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4034889-1", "source": "GND"}], "variant_access_point": ["Ernährungsindustrie", "Nahrungs- und Genussmittelindustrie", "Nahrungsmittelindustrie", "Lebensmittel"], "authorized_access_point": "Lebensmittelindustrie"} 1 +2024-09-11 09:09:53.837979 2024-09-11 09:09:53.837983 4c238a7f-2e0b-4380-b192-213617aa28a0 {"md5": "ac2e72bd0c6d45ddb2394bd3b883378e", "pid": "040344029", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Primärer Sektor"}], "related": [{"authorized_access_point": "Landbau"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133603750", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85002415", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85002415"}], "authorized_access_point": "Agriculture"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133603750", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF119347980", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11934798x"}], "authorized_access_point": "Agriculture"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254321667", "source": "GND"}, {"type": "bf:Nbn", "value": "1992", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/1992"}], "authorized_access_point": "Agricoltura"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254454713", "source": "GND"}, {"type": "bf:Nbn", "value": "XX4576248", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX4576248"}], "authorized_access_point": "Agricultura"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1253486611", "source": "GND"}, {"type": "bf:Nbn", "value": "203", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_203"}], "authorized_access_point": "agriculture"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1253499470", "source": "GND"}, {"type": "bf:Nbn", "value": "D000383", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000383"}], "authorized_access_point": "Agriculture"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966830601", "source": "GND"}, {"type": "bf:Nbn", "value": "12945-3", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/12945-3"}], "authorized_access_point": "Landwirtschaft"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970568134", "source": "GND"}, {"type": "bf:Nbn", "value": "10034547", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10034547"}], "authorized_access_point": "Landwirtschaft"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4034402-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040344029", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4034402-2", "source": "GND"}], "variant_access_point": ["Agrarwirtschaft", "Agrarsektor", "Landwirtschaftlicher Sektor"], "authorized_access_point": "Landwirtschaft"} 1 +2024-09-11 09:09:53.911067 2024-09-11 09:09:53.911071 7e74dce9-2575-4b73-96f0-075c8e04f738 {"md5": "5d8a543f6f4e1e01c63da4960038c6fb", "pid": "040302482", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kurve"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134426828", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85034931", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85034931"}], "authorized_access_point": "Curves in engineering"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134426828", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF14495002", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb144950025"}], "authorized_access_point": "Courbes en technologie"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4030248-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040302482", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4030248-9", "source": "GND"}], "authorized_access_point": "Kennlinie"} 1 +2024-09-11 09:09:54.026793 2024-09-11 09:09:54.026797 bdebffc1-90ae-46f6-841a-1fc911e54885 {"md5": "17ab31cd49f5355a5cda3df27c6b1df4", "pid": "040297519", "note": [{"label": ["Ausbildungsberuf 1938-1989, abgelöst vom Karosserie- und Fahrzeugbauer"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mechaniker"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134746075", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85020458", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85020458"}], "authorized_access_point": "Carriage industry"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134746075", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13163043", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb131630430"}], "authorized_access_point": "Carrossiers"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4029751-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040297519", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4029751-2", "source": "GND"}], "authorized_access_point": "Karosseriebauer"} 1 +2024-09-11 09:09:54.0766 2024-09-11 09:09:54.076605 667d7970-f167-4fed-bbed-6c3263200248 {"md5": "f56aed501056f3547c14f2f4172303e1", "pid": "040296709", "note": [{"label": ["Für bildliche, satirische Darstellungen (RDA AH-007)."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Satire"}], "related": [{"authorized_access_point": "Humoristische Darstellung"}, {"authorized_access_point": "Cartoon"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133938841", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11936063", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11936063t"}], "authorized_access_point": "Caricatures et dessins humoristiques"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134048718", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11977710", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119777107"}], "authorized_access_point": "Caricature"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)97056287X", "source": "GND"}, {"type": "bf:Nbn", "value": "10040205", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10040205"}], "authorized_access_point": "Karikatur"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4029670-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040296709", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4029670-2", "source": "GND"}], "variant_access_point": ["Satire", "Cartoon (Formschlagwort)", "Bildsatire", "Karikaturen", "Satirische Darstellung (Kunst)"], "authorized_access_point": "Karikatur"} 1 +2024-09-11 09:09:54.134525 2024-09-11 09:09:54.134529 da6d40f1-20c0-4a8c-a3d9-d93e71660278 {"md5": "de12aa62ee4c567230870a5eaf66d3e5", "pid": "040270076", "note": [{"label": ["Bei Enzymen verwende Enzyminhibitor"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Antagonist"}, {"authorized_access_point": "Inhibition"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133717403", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12082271", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12082271n"}], "authorized_access_point": "Inhibiteurs"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254389520", "source": "GND"}, {"type": "bf:Nbn", "value": "58311", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/58311"}], "authorized_access_point": "Inibitori"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4027007-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040270076", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4027007-5", "source": "GND"}], "variant_access_point": ["Hemmstoff"], "authorized_access_point": "Inhibitor"} 1 +2024-09-11 09:09:54.187715 2024-09-11 09:09:54.18772 bda11640-888c-470b-8705-0e3998dcb4eb {"md5": "0c47059dc151324c69390a30a90f1bd9", "pid": "040267210", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Indian reorganization act"}, {"authorized_access_point": "Indianerreduktion"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133950914", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85065369", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85065369"}], "authorized_access_point": "Indian reservations"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133950914", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11941190", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119411900"}], "authorized_access_point": "Réserves indiennes"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1289266360", "source": "GND"}, {"type": "bf:Nbn", "value": "30365-5", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/30365-5"}], "authorized_access_point": "Reservat (Ethnische Gruppe)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4026721-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040267210", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4026721-0", "source": "GND"}], "variant_access_point": ["Indianerreservat", "Indianerreservation", "Reservat", "Indianerreservate", "Indian Reservation"], "authorized_access_point": "Reservat (Ethnologie)"} 1 +2024-09-11 09:09:54.648054 2024-09-11 09:09:54.648058 fdc8f561-08a8-485d-bf05-609b72c015ad {"md5": "a8b9355f4f3152a5978a9ca20e88ecc3", "pid": "040172503", "note": [{"label": ["Nicht für die Sacherschließung als Oberbegriff zu einzelnen Unternehmen verwendet; verwende in diesem Fall das Schlagwort \\"Unternehmen\\" oder einen spezifischeren Begriff. - Hingegen zu verwenden als identifizierender Zusatz (IZ) für die Individualisierung von Körperschaftsnamen in der GND gemäß „Kategorie einer Körperschaft“, RDA-E-K070; bei der Verwendung als IZ im Bevorzugten Namen dann auch als instantieller Oberbegriff (obin). (\\"Kategorie einer Körperschaft\\" verwendet die umgangssprachliche Bedeutung von Firma)."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Unternehmen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4017250-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040172503", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4017250-8", "source": "GND"}], "variant_access_point": ["Firmierung", "Firmenname", "Firmenbezeichnung", "Unternehmensname", "Handelsname"], "authorized_access_point": "Firma"} 1 +2024-09-11 09:09:54.243464 2024-09-11 09:09:54.243469 4b7b9f96-e0d4-4507-b8b3-f8828912bd83 {"md5": "adba146c6d48bf8743ff8bb748b0566a", "pid": "040257029", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Holzfehler&oldid=245078730"], "noteType": "dataSource"}, {"label": ["Als Holzfehler oder Wuchsfehler werden im Warenverkehr mit Rohholz diejenigen Holzmerkmale bezeichnet, die die Holznutzung beeinträchtigen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Holzmerkmal"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134636652", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85147789", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85147789"}], "authorized_access_point": "Wood - Defects"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256222291", "source": "GND"}, {"type": "bf:Nbn", "value": "28188", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_28188"}], "authorized_access_point": "wood defects"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4025702-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040257029", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4025702-2", "source": "GND"}], "variant_access_point": ["Holz", "Wuchsfehler"], "authorized_access_point": "Holzfehler"} 1 +2024-09-11 09:09:54.298946 2024-09-11 09:09:54.298952 44ba732e-df81-423a-b44f-70cec263fc91 {"md5": "6aa4ff77f34f293bb81c88c4e69b2528", "pid": "040246655", "note": [{"label": ["Benutzt als Oberbegriff f. Blutgefässsystem u. Herz"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Blutkreislauf"}, {"authorized_access_point": "Biologisches System"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133623077", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11934858", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11934858z"}], "authorized_access_point": "Appareil cardiovasculaire"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254447202", "source": "GND"}, {"type": "bf:Nbn", "value": "XX525158", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX525158"}], "authorized_access_point": "Aparato circulatorio"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4024665-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040246655", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4024665-6", "source": "GND"}], "variant_access_point": ["Herz-Kreislauf-System", "Cardiovasculäres System"], "authorized_access_point": "Kardiovaskuläres System"} 1 +2024-09-11 09:09:54.353369 2024-09-11 09:09:54.353374 7ad075b8-7656-46e1-b024-f51fba3f69b8 {"md5": "3d0b3d8a90ac29a86dcc37ed9f9312ce", "pid": "040218066", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Grammatiker"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134128304", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85056259", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85056259"}], "authorized_access_point": "Grammar"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134567324", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85056260", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85056260"}], "authorized_access_point": "Grammar, Comparative and general"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134128304", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF120427815", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12042781h"}], "authorized_access_point": "Grammaire"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254511822", "source": "GND"}, {"type": "bf:Nbn", "value": "XX535820", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX535820"}], "authorized_access_point": "Gramática"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970555334", "source": "GND"}, {"type": "bf:Nbn", "value": "10045876", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10045876"}], "authorized_access_point": "Grammatik"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4021806-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040218066", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4021806-5", "source": "GND"}], "authorized_access_point": "Grammatik"} 1 +2024-09-11 09:09:54.412328 2024-09-11 09:09:54.412333 e573fc77-924d-4834-b490-d3b083287683 {"md5": "21cc93bf7d4b6a660fd13e0ec5e1353f", "pid": "04021334X", "note": [{"label": ["Wiktionary - https://de.wiktionary.org/wiki/Gl%C3%BCckwunsch"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1299918344", "source": "GND"}, {"type": "bf:Nbn", "value": "XX5026483", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX5026483"}], "authorized_access_point": "Felicitaciones"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4021334-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04021334X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4021334-1", "source": "GND"}], "variant_access_point": ["Gratulation", "Glückwünsche"], "authorized_access_point": "Glückwunsch"} 1 +2024-09-11 09:09:54.469525 2024-09-11 09:09:54.469529 06430827-f193-495d-be54-97968af8a8bb {"md5": "40a940a863c72449fd54e247feedef6c", "pid": "040200728", "note": [{"label": ["Benutzt für erwerbsmäßigen Anbau, ansonsten verwende SW Gemüsegarten"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gartenbau"}, {"authorized_access_point": "Ackerbau"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332122256", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85142483", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85142483"}], "authorized_access_point": "Vegetable gardening"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332122256", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11933904", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119339042"}], "authorized_access_point": "Cultures potagères"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256216615", "source": "GND"}, {"type": "bf:Nbn", "value": "16509", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_16509"}], "authorized_access_point": "vegetable growing"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966757432", "source": "GND"}, {"type": "bf:Nbn", "value": "12942-2", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/12942-2"}], "authorized_access_point": "Gemüsebau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4020072-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040200728", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4020072-3", "source": "GND"}], "variant_access_point": ["Gemüseanbau", "Gemüsekultur", "Gemüse"], "authorized_access_point": "Gemüsebau"} 1 +2024-09-11 09:09:54.53485 2024-09-11 09:09:54.534854 915c6a51-72db-4628-8bca-8380097a1951 {"md5": "daf2e6b0f8a4dde12919e5846c51e42e", "pid": "040200159", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134594607", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13319114", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13319114f"}], "authorized_access_point": "Communauté"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966756886", "source": "GND"}, {"type": "bf:Nbn", "value": "16587-4", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/16587-4"}], "authorized_access_point": "Gemeinschaft"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)97055317X", "source": "GND"}, {"type": "bf:Nbn", "value": "10041283", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10041283"}], "authorized_access_point": "Gemeinschaft"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4020015-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040200159", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4020015-2", "source": "GND"}], "variant_access_point": ["Soziale Gemeinschaft", "Gemeinschaften"], "authorized_access_point": "Gemeinschaft"} 1 +2024-09-11 09:09:54.698946 2024-09-11 09:09:54.698951 829a19bb-08a3-4f5d-b802-821f785ae894 {"md5": "a4cf593ec7fe4cddb1f5fa6d7cca70dc", "pid": "040171078", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Archiv"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133639569", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85088046", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85088046"}], "authorized_access_point": "Motion picture film collections"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133676782", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85006925", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85006925"}], "authorized_access_point": "Film archives"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133676782", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11973200", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11973200k"}], "authorized_access_point": "Archives cinématographiques"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133639569", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11945398", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119453988"}], "authorized_access_point": "Cinémathèques"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254428798", "source": "GND"}, {"type": "bf:Nbn", "value": "XX526197", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX526197"}], "authorized_access_point": "Filmotecas"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4017107-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040171078", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4017107-3", "source": "GND"}], "variant_access_point": ["Kinemathek", "Filmothek", "Film", "Filmarchive"], "authorized_access_point": "Filmarchiv"} 1 +2024-09-11 09:09:54.748677 2024-09-11 09:09:54.748681 9c5f3ce8-f7e0-43b6-8d51-93182fd1af4e {"md5": "e1337d0c407fed04484439c8d636c256", "pid": "040163172", "note": [{"label": ["Fahrtüchtigkeit bezeichnet die auf einen konkreten Zeitpunkt bezogene Fähigkeit einer Person, mit einem Fahrzeug sicher am Straßenverkehr teilzunehmen. Sie kann z. B. infolge von Drogenkonsum oder Ermüdung fehlen.", "Für die generelle, dauerhafte Fähigkeit zur sicheren Straßenverkehrsteilnahme verwende SW Fahreignung."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tauglichkeit"}], "related": [{"authorized_access_point": "Fahreignung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133804497", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12468051", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb124680516"}], "authorized_access_point": "Automobilistes - Usage des drogues"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970548982", "source": "GND"}, {"type": "bf:Nbn", "value": "10043201", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10043201"}], "authorized_access_point": "Fahrtauglichkeit"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4016317-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040163172", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4016317-9", "source": "GND"}], "variant_access_point": ["Fahrtauglichkeit", "Verkehrstüchtigkeit", "Fahruntüchtigkeit", "Fahruntauglichkeit", "Fahrsicherheit", "Fahrunsicherheit"], "authorized_access_point": "Fahrtüchtigkeit"} 1 +2024-09-11 09:09:54.808054 2024-09-11 09:09:54.808058 faff72e5-e25c-47d4-99cc-aabb2c4cf659 {"md5": "e96c149aa7056baca704b519f438d7cc", "pid": "04015985X", "note": [{"label": ["Grafisch gestalteter Besitzervermerk in Zettelform, der auf die Innenseite von Bucheinbänden geklebt wird"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Eigentumsmarke"}], "related": [{"authorized_access_point": "Besitzervermerk"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133626777", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85015646", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85015646"}], "authorized_access_point": "Bookplates"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133626777", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11937172", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119371729"}], "authorized_access_point": "Ex-libris"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254334572", "source": "GND"}, {"type": "bf:Nbn", "value": "9382", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/9382"}], "authorized_access_point": "Ex libris"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254426752", "source": "GND"}, {"type": "bf:Nbn", "value": "XX527355", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX527355"}], "authorized_access_point": "Ex libris"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1275771874", "source": "GND"}, {"type": "uri", "value": "https://provenienz.gbv.de/T-PRO_Thesaurus_der_Provenienzbegriffe#Anker:Exlibris"}], "authorized_access_point": "Exlibris"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4015985-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04015985X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4015985-1", "source": "GND"}], "variant_access_point": ["Bucheignerzeichen", "Bücherzeichen (Exlibris)", "Buchmarke", "Ex-Libris"], "authorized_access_point": "Exlibris"} 1 +2024-09-11 09:09:54.86457 2024-09-11 09:09:54.864574 b4fb2a00-b977-4404-b166-e9fcaf73d83a {"md5": "ad20d7aaba13c27cf5c2d22d4fb444db", "pid": "040158292", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Evangelische Kirche"}, {"authorized_access_point": "Kirchengemeinde"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4015829-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040158292", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4015829-9", "source": "GND"}], "variant_access_point": ["Evangelische Kirchengemeinde", "Evangelische Pfarrei"], "authorized_access_point": "Evangelische Gemeinde"} 1 +2024-09-11 09:09:54.92764 2024-09-11 09:09:54.927646 708a61b7-2b6a-43b9-a50e-260d5ebf601b {"md5": "474e1416df1ebf29dec56d543c5b1a7b", "pid": "040143503", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Baugruppe"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134047428", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85042373", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85042373"}], "authorized_access_point": "Electronic systems"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134047428", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11977451", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119774510"}], "authorized_access_point": "Systèmes électroniques"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254332472", "source": "GND"}, {"type": "bf:Nbn", "value": "7588", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/7588"}], "authorized_access_point": "Sistemi elettronici"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4014350-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040143503", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4014350-8", "source": "GND"}], "authorized_access_point": "Elektronische Baugruppe"} 1 +2024-09-11 09:09:55.281423 2024-09-11 09:09:55.281427 4a8462bd-4c30-4f81-981e-d57f36e1ee2b {"md5": "3cbb6d8efa2de018d8a3ced02fd0a58f", "pid": "040105423", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Polymere"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134081979", "source": "GND"}, {"type": "bf:Nbn", "value": "sh96003095", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh96003095"}], "authorized_access_point": "Copolymers"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134081979", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11983800", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11983800f"}], "authorized_access_point": "Copolymères"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4010542-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040105423", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4010542-8", "source": "GND"}], "variant_access_point": ["Mischpolymere"], "authorized_access_point": "Copolymere"} 1 +2024-09-11 09:09:54.998524 2024-09-11 09:09:54.998529 a0305253-a4e3-4ae1-9c2f-614d0626fed8 {"md5": "467f4ffd64b7f2fbd4e3ca7e82cbe8f9", "pid": "040143376", "note": [{"label": ["Ungerichtet, im Gegensatz zu Elektronenstrahl"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Teilchenstrahlung"}], "related": [{"authorized_access_point": "Freies Elektron"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134785607", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85042200", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85042200"}], "authorized_access_point": "Electron beams"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134785607", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11953144", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11953144h"}], "authorized_access_point": "Faisceaux électroniques"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4014337-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040143376", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4014337-5", "source": "GND"}], "variant_access_point": ["Elektronenstrahlen (Elektronenstrahlung)"], "authorized_access_point": "Elektronenstrahlung"} 1 +2024-09-11 09:09:55.059627 2024-09-11 09:09:55.05963 7e7af758-efd4-4f83-b926-e462e4cdb97f {"md5": "522e3317f51f4343c19eb69452a9afd7", "pid": "040137465", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Krebs (Medizin)"}, {"authorized_access_point": "Eierstocktumor"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134590326", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2010104661", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2010104661"}], "authorized_access_point": "Ovaries - Cancer"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241598770", "source": "GND"}, {"type": "bf:Nbn", "value": "D010051", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D010051"}], "authorized_access_point": "Ovarian Neoplasms"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4013746-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040137465", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4013746-6", "source": "GND"}], "variant_access_point": ["Ovarialkarzinom", "Ovarialcarcinom", "Ovarialkrebs"], "authorized_access_point": "Eierstockkrebs"} 1 +2024-09-11 09:09:55.117387 2024-09-11 09:09:55.117392 49d97edb-adc9-4369-bd91-462bdb4dbc7a {"md5": "7749c0f00766abddc01efee3027d4f2c", "pid": "040136302", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Familie"}, {"authorized_access_point": "Eheliche Lebensgemeinschaft"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966724763", "source": "GND"}, {"type": "bf:Nbn", "value": "15937-1", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/15937-1"}], "authorized_access_point": "Ehe"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970544901", "source": "GND"}, {"type": "bf:Nbn", "value": "10041471", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10041471"}], "authorized_access_point": "Ehe"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4013630-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040136302", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4013630-9", "source": "GND"}], "variant_access_point": ["Eheleben", "Ehen"], "authorized_access_point": "Ehe"} 1 +2024-09-11 09:09:55.170726 2024-09-11 09:09:55.170729 0944c6cb-59a0-4bc9-a94e-3344c059403a {"md5": "cafccdb044ce5605b1d18920b8e6703f", "pid": "040132153", "note": [{"label": ["Mit dem Düngemittel wird i.d.R. ein Kompositum gebildet, z.B. Gülledüngung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Pflanzenbau"}], "related": [{"authorized_access_point": "Düngemittel"}, {"authorized_access_point": "Bestellung (Landbau)"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134228384", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85047920", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85047920"}], "authorized_access_point": "Fertilizers - Application"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134228384", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12244082", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12244082r"}], "authorized_access_point": "Engrais et amendements - Épandage"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256206393", "source": "GND"}, {"type": "bf:Nbn", "value": "10795", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_10795"}], "authorized_access_point": "fertilizer application"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4013215-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040132153", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4013215-8", "source": "GND"}], "variant_access_point": ["Pflanzendüngung"], "authorized_access_point": "Düngung"} 1 +2024-09-11 09:09:55.228464 2024-09-11 09:09:55.228469 e8baa67b-c20d-47ec-8ccb-0284ba34ec4d {"md5": "f831b57df11327fea7593a0ff29a4ab9", "pid": "040110680", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Krebs (Medizin)"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134492731", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85067585", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85067585"}], "authorized_access_point": "Intestines - Cancer"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241596999", "source": "GND"}, {"type": "bf:Nbn", "value": "D007414", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D007414"}], "authorized_access_point": "Intestinal Neoplasms"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4011068-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040110680", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4011068-0", "source": "GND"}], "variant_access_point": ["Intestinalcarcinom", "Darmkarzinom"], "authorized_access_point": "Darmkrebs"} 1 +2024-09-11 09:09:55.341728 2024-09-11 09:09:55.341734 3238d542-8c78-4969-b486-8493f1671c77 {"md5": "225251352201f82fd4a303d0ba4f5224", "pid": "040098923", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Systematik"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333245947", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12000515", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12000515v"}], "authorized_access_point": "Chimiotaxinomie"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133693687", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11981794", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11981794v"}], "authorized_access_point": "Plantes - Chimiotaxinomie"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256201782", "source": "GND"}, {"type": "bf:Nbn", "value": "1526", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_1526"}], "authorized_access_point": "chemotaxonomy"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4009892-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040098923", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4009892-8", "source": "GND"}], "variant_access_point": ["Chemosystematik"], "authorized_access_point": "Chemotaxonomie"} 1 +2024-09-11 09:09:55.40079 2024-09-11 09:09:55.400792 ff860d9c-ade2-47e6-8ae6-ae5aa486285d {"md5": "d2059d1dda62767a4b1916ead06cf002", "pid": "040092755", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schadstoffbelastung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134659253", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2009118139", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2009118139"}], "authorized_access_point": "Cadmium - Environmental aspects"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134397658", "source": "GND"}, {"type": "bf:Nbn", "value": "sh00004598", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00004598"}], "authorized_access_point": "Effect of cadmium on"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134397658", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13757341", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13757341x"}], "authorized_access_point": "Effets du cadmium"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4009275-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040092755", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4009275-6", "source": "GND"}], "variant_access_point": ["Cadmium", "Cadmiumgehalt (Cadmiumbelastung)"], "authorized_access_point": "Cadmiumbelastung"} 1 +2024-09-11 09:09:55.460172 2024-09-11 09:09:55.460176 ace565af-e2bb-4b71-95b8-f193b34b4c43 {"md5": "118c5321c3b9ca72b4151c832b5fbf95", "pid": "04009104X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Befestigung"}, {"authorized_access_point": "Adelshaus"}, {"authorized_access_point": "Residenz"}], "related": [{"authorized_access_point": "Burgenkunde"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134636903", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85020702", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85020702"}], "authorized_access_point": "Castles"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134636903", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11931695", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11931695w"}], "authorized_access_point": "Châteaux forts"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4009104-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04009104X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4009104-1", "source": "GND"}], "variant_access_point": ["Burgen"], "authorized_access_point": "Burg"} 1 +2024-09-11 09:09:55.517955 2024-09-11 09:09:55.517959 42150206-b93e-4fa1-a12d-b877c24ff745 {"md5": "3177fff6a5f9c1cf3766237a9b0bf2bf", "pid": "040090809", "note": [{"label": ["Papier, das durch den Aufstrich von Farbe oder durch Bedrucken, Kaschieren und andere Oberflächenbehandlungen seine Farbigkeit erhält"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Spezialpapier"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4009080-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040090809", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4009080-2", "source": "GND"}], "authorized_access_point": "Buntpapier"} 1 +2024-09-11 09:09:55.581219 2024-09-11 09:09:55.581222 173ae906-dd40-41d7-8fa0-55f53e68c5cc {"md5": "99f25830daa6d47780d1abe69e3e2511", "pid": "040072118", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Befruchtung"}], "related": [{"authorized_access_point": "Bestäuber"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133676006", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85104524", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85104524"}], "authorized_access_point": "Pollination"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133676006", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11972141", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11972141n"}], "authorized_access_point": "Pollinisation"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254351590", "source": "GND"}, {"type": "bf:Nbn", "value": "22309", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/22309"}], "authorized_access_point": "Impollinazione"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254411089", "source": "GND"}, {"type": "bf:Nbn", "value": "XX555520", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX555520"}], "authorized_access_point": "Polinización"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4007211-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040072118", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4007211-3", "source": "GND"}], "variant_access_point": ["Blütenbestäubung", "Pollination"], "authorized_access_point": "Bestäubung"} 1 +2024-09-11 09:09:55.636842 2024-09-11 09:09:55.636847 4b5463d0-e9c4-4d7b-83f0-3f65287cea0d {"md5": "def2f8092d10e91ca5f8d1e02881675d", "pid": "040070328", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Krebs (Medizin)"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134492898", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2009117264", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2009117264"}], "authorized_access_point": "Bladder - Cancer"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241593930", "source": "GND"}, {"type": "bf:Nbn", "value": "D001749", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D001749"}], "authorized_access_point": "Urinary Bladder Neoplasms"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4007032-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040070328", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4007032-3", "source": "GND"}], "variant_access_point": ["Blasencarcinom", "Harnblasenkrebs", "Blasenkarzinom", "Harnblasenkarzinom"], "authorized_access_point": "Blasenkrebs"} 1 +2024-09-11 09:09:55.690472 2024-09-11 09:09:55.690475 d497c7d1-fdbf-48d1-9f73-f42d68588468 {"md5": "219ad2428c217022bb113499882a8143", "pid": "040060055", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Werkstatt_f%C3%BCr_behinderte_Menschen&oldid=218572538f"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134017553", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85121315", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85121315"}], "authorized_access_point": "Sheltered workshops"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134017553", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11967806", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119678062"}], "authorized_access_point": "Entreprises adaptées"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254503145", "source": "GND"}, {"type": "bf:Nbn", "value": "XX552311", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX552311"}], "authorized_access_point": "Centros especiales de empleo"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970536852", "source": "GND"}, {"type": "bf:Nbn", "value": "10038025", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10038025"}], "authorized_access_point": "Behindertenwerkstätte"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4006005-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040060055", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4006005-6", "source": "GND"}], "variant_access_point": ["Werkstatt für Behinderte", "Behindertenwerkstätte", "Behindertenwerkstatt", "Beschützende Werkstatt", "Förderwerkstatt", "Werkstatt für Menschen mit Behinderungen", "WfbM", "Werkstätte für Behinderte", "Geschützte Werkstatt"], "authorized_access_point": "Werkstatt für behinderte Menschen"} 1 +2024-09-11 09:09:55.74598 2024-09-11 09:09:55.745985 4d55a37c-e9d8-4ba7-b17e-d67b9d875fc2 {"md5": "f49e665ad22739ca2effc51550174778", "pid": "040054020", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kalte Küche"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4005402-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040054020", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4005402-0", "source": "GND"}], "variant_access_point": ["Butterbrot"], "authorized_access_point": "Belegtes Brot"} 1 +2024-09-11 09:09:55.793885 2024-09-11 09:09:55.793888 192f6c86-12a8-4a45-8c86-90f6b71c4bc0 {"md5": "a9b396bcf06770e433a103bd67b35cb8", "pid": "040048543", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mängelrüge"}, {"authorized_access_point": "Mangel"}], "related": [{"authorized_access_point": "Bauschaden"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133626475", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11936918", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11936918g"}], "authorized_access_point": "Vices de construction"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4004854-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040048543", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4004854-8", "source": "GND"}], "variant_access_point": ["Baumängel"], "authorized_access_point": "Baumangel"} 1 +2024-09-11 09:09:55.86339 2024-09-11 09:09:55.863394 21bfea06-1e4f-44e0-9d05-a4a3331a1aec {"md5": "8792be655b3a1ec6d3891c4ee7b39f7d", "pid": "040035506", "note": [{"label": ["Ein Aufsichtsrat ist das Organ einer Kapitalgesellschaft, das für die Überwachung der Geschäftsführung zuständig ist.", "Benutzt für das Deutsche und Internationale Recht; für das Schweizer Recht benutze Revisionsstelle; Aktiengesellschaft wird nicht als pleonastisch behandelt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Board of directors"}, {"authorized_access_point": "Revisionsstelle"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134498152", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF14469068", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb14469068f"}], "authorized_access_point": "Conseils de surveillance"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966691369", "source": "GND"}, {"type": "bf:Nbn", "value": "12175-5", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/12175-5"}], "authorized_access_point": "Aufsichtsrat"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970534930", "source": "GND"}, {"type": "bf:Nbn", "value": "10034959", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10034959"}], "authorized_access_point": "Aufsichtsrat"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4003550-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040035506", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4003550-5", "source": "GND"}], "authorized_access_point": "Aufsichtsrat"} 1 +2024-09-11 09:09:55.924635 2024-09-11 09:09:55.924637 c7e2ad0b-9595-4d4a-9899-e070f0d02fa7 {"md5": "b6fd96140c15b91b6f2c982b1cd371f5", "pid": "04003500X", "note": [{"label": ["Nur bei Nachweis in den entsprechenden NSW Kompositum mit den aufzubereitenden Gut."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134037554", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11975726", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119757264"}], "authorized_access_point": "Transformation"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4003500-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04003500X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4003500-1", "source": "GND"}], "variant_access_point": ["Aufbereiten"], "authorized_access_point": "Aufbereitung"} 1 +2024-09-11 09:09:55.984026 2024-09-11 09:09:55.984029 13217642-442b-4f5b-8d7d-4fe39df2ea72 {"md5": "81eae698db07bd03335bdfc6249dc71c", "pid": "040030962", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Artistin"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333994648", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85026090", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85026090"}], "authorized_access_point": "Circus performers"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333994648", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13318653", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13318653g"}], "authorized_access_point": "Artistes de cirque"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4003096-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040030962", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4003096-9", "source": "GND"}], "authorized_access_point": "Artist"} 1 +2024-09-11 09:09:56.042612 2024-09-11 09:09:56.042616 fcb3a05a-d506-4cb9-8b9f-bb30f390b4b8 {"md5": "26a6c3e61289dd007232d618cb0a277c", "pid": "040018040", "note": [{"label": ["Amtshaftung ist ein deliktsrechtlicher Sondertatbestand, der die persönliche Haftung einer hoheitlich handelnden Person wegen der schuldhaften Verletzung einer Amtspflicht vorsieht, die ihr gegenüber einem durch ihr Verhalten geschädigten Dritten obliegt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Haftung"}], "related": [{"authorized_access_point": "Staatshaftung"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970531974", "source": "GND"}, {"type": "bf:Nbn", "value": "10035427", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10035427"}], "authorized_access_point": "Amtshaftung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4001804-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040018040", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4001804-0", "source": "GND"}], "variant_access_point": ["Beamtenhaftung", "Amtsträger", "Beamter"], "authorized_access_point": "Amtshaftung"} 1 +2024-09-11 09:09:56.097384 2024-09-11 09:09:56.097389 17196880-2d51-4358-9623-707479a05b7c {"md5": "a32fbbd877b7d25633865cd476573b98", "pid": "040009866", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Reflextherapie"}, {"authorized_access_point": "Alternative Medizin"}, {"authorized_access_point": "Erfahrungsheilkunde"}], "related": [{"authorized_access_point": "Akupressur"}, {"authorized_access_point": "Shiatsu"}, {"authorized_access_point": "Moxibustion"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332651356", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11930824", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11930824p"}], "authorized_access_point": "Acupuncture"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254402470", "source": "GND"}, {"type": "bf:Nbn", "value": "XX524567", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX524567"}], "authorized_access_point": "Acupuntura"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256189340", "source": "GND"}, {"type": "bf:Nbn", "value": "16160", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_16160"}], "authorized_access_point": "acupuncture"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1282203762", "source": "GND"}, {"type": "bf:Nbn", "value": "D026881", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D026881"}], "authorized_access_point": "Acupuncture"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970531125", "source": "GND"}, {"type": "bf:Nbn", "value": "10035005", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10035005"}], "authorized_access_point": "Akupunktur"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4000986-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040009866", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4000986-5", "source": "GND"}], "authorized_access_point": "Akupunktur"} 1 +2024-09-11 09:09:56.154646 2024-09-11 09:09:56.15465 f25e164c-c1d5-4889-8922-643c1229cf39 {"md5": "3110b46bc3676d208fcc4188e6270dbe", "pid": "040009327", "note": [{"label": ["Eine Aktie ist ein Gesellschaftsanteil an einer Aktiengesellschaft, einer Kommanditgesellschaft auf Aktien oder einer Societas Europaea."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wertpapier"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113439179X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85128226", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85128226"}], "authorized_access_point": "Stocks"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113439179X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11967769", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11967769p"}], "authorized_access_point": "Actions de sociétés"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966676122", "source": "GND"}, {"type": "bf:Nbn", "value": "12232-5", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/12232-5"}], "authorized_access_point": "Aktie"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4000932-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040009327", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4000932-4", "source": "GND"}], "authorized_access_point": "Aktie"} 1 +2024-09-11 09:09:56.207368 2024-09-11 09:09:56.207371 d9825d07-5d20-47f7-a8bb-a93980b844a0 {"md5": "d0e822da7f963a24c3de2bc318715d7b", "pid": "040004570", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Regelung"}], "related": [{"authorized_access_point": "Adaptives System"}, {"authorized_access_point": "Extremwertregelung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113457617X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85000803", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85000803"}], "authorized_access_point": "Adaptive control systems"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113457617X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11977921", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11977921f"}], "authorized_access_point": "Systèmes adaptatifs"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4000457-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040004570", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4000457-0", "source": "GND"}], "variant_access_point": ["Adaptive Regelung"], "authorized_access_point": "Adaptivregelung"} 1 +2024-09-11 09:09:56.664174 2024-09-11 09:09:56.664179 e24c34d8-da6e-413d-852a-51b13ca28232 {"md5": "08d71754b0ccd77b36530bfac5d9d0fd", "pid": "1336835052", "note": [{"label": ["Homepage - https://www.raspberrypi.com/products/raspberry-pi-5/"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Einplatinen-Computer"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336835052", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336835052", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336835052", "source": "GND"}], "variant_access_point": ["Raspberry Pi5"], "authorized_access_point": "Raspberry Pi 5"} 1 +2024-09-11 09:09:56.262798 2024-09-11 09:09:56.262801 26fd52d3-d29f-43de-96e4-34f529beab8c {"md5": "ec110c031a084cd665ea264c05091855", "pid": "04000158X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Akronym"}, {"authorized_access_point": "Kurzzeichen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332649742", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11947909", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11947909z"}], "authorized_access_point": "Abréviations"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254332928", "source": "GND"}, {"type": "bf:Nbn", "value": "7958", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/7958"}], "authorized_access_point": "Abbreviazioni"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254400877", "source": "GND"}, {"type": "bf:Nbn", "value": "XX524425", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX524425"}], "authorized_access_point": "Abreviaturas"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4000158-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04000158X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4000158-1", "source": "GND"}], "variant_access_point": ["Abbreviatur", "Kontraktion (Schrift)", "Abkürzungen"], "authorized_access_point": "Abkürzung"} 1 +2024-09-11 09:09:56.32189 2024-09-11 09:09:56.321895 9cf08c30-44ef-422b-8094-83da8416d000 {"md5": "64371a16d558974f7b9ab87d5733234f", "pid": "1336884932", "note": [{"label": ["Grundbegriff der Mengenlehre"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mengenlehre"}], "related": [{"authorized_access_point": "Summe"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336884932", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336884932", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336884932", "source": "GND"}], "variant_access_point": ["Vereinigung (Mengenlehre)", "Union"], "authorized_access_point": "Vereinigungsmenge"} 1 +2024-09-11 09:09:56.382738 2024-09-11 09:09:56.382741 e7f442fb-4b08-45c9-95fd-f26b350228b2 {"md5": "6b1bfcd00ac32e6719e4d494c4d7892f", "pid": "1336884762", "note": [{"label": ["Eine Menge heißt messbar, wenn sie Element der Sigma-Algebra eines Messraums ist."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Maßtheorie"}, {"authorized_access_point": "Menge"}], "related": [{"authorized_access_point": "Messraum"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336884762", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336884762", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336884762", "source": "GND"}], "variant_access_point": ["Measurable Set"], "authorized_access_point": "Messbare Menge"} 1 +2024-09-11 09:09:56.437716 2024-09-11 09:09:56.43772 8596dc7c-4fe4-4350-9f1a-5aa30f3f7a7e {"md5": "7a5271908414ea97be0cc494af0ac708", "pid": "1336876913", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Hunde_people&oldid=1230006150"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Hunde-Sprache"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336876913", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336876913", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336876913", "source": "GND"}], "variant_access_point": ["Bahunde", "Kihunde", "Kobi", "Rukobi"], "authorized_access_point": "Hunde (Volk)"} 1 +2024-09-11 09:09:56.49213 2024-09-11 09:09:56.492135 c812b6fd-87cd-4a71-900e-6d6cbd692461 {"md5": "5c8c8e34a306853b8845caf967989401", "pid": "1336874678", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Tchaman&oldid=1116117651"], "noteType": "dataSource"}, {"label": ["Ursprüngliche Namen waren Tchaman, Kyama, Gyama, Chaman oder Achan, Atchan; die Ethnie macht etwa 0,7 % der Bevölkerung der Elfenbeinküste aus."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Akan"}, {"authorized_access_point": "Kwa-Sprachen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336874678", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336874678", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336874678", "source": "GND"}], "variant_access_point": ["Atcha", "Cama", "Caman", "Chaman", "Gyaman", "Kyama", "Kyaman", "Tchaman", "Tsama", "Tshaman", "Tyama"], "authorized_access_point": "Ebrié"} 1 +2024-09-11 09:09:56.549376 2024-09-11 09:09:56.549379 84071372-decc-4af3-bda1-82d0ab18fa05 {"md5": "90c4c420d7ef2e208a77d1d3056ebe00", "pid": "1336874414", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Gutbrod_Atlas&oldid=227463637"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Personenkraftwagen"}, {"authorized_access_point": "Nutzfahrzeug"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336874414", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336874414", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336874414", "source": "GND"}], "authorized_access_point": "Gutbrod Atlas"} 1 +2024-09-11 09:09:56.605736 2024-09-11 09:09:56.605741 f351720f-4ba4-4d0f-80df-9214d6497d1d {"md5": "14643d69bf75ab78c4569bbe134f0daf", "pid": "133686463X", "note": [{"label": ["Encyclopedia of Math - https://encyclopediaofmath.org/index.php?title=Banach_limit&oldid=39373"], "noteType": "dataSource"}, {"label": ["Verallgeminerung des Grenzwertbegriffs in der Funktionalanalysis"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Funktional"}], "related": [{"authorized_access_point": "Grenzwert (Mathematik)"}, {"authorized_access_point": "Hahn-Banach-Fortsetzungssatz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133686463X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133686463X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133686463X", "source": "GND"}], "variant_access_point": ["Banach Limit"], "authorized_access_point": "Banachlimes"} 1 +2024-09-11 09:09:56.717783 2024-09-11 09:09:56.717786 6fe0518e-a269-45aa-a46d-4285a401318e {"md5": "2e055af5066fbc9a3798a2896064bd56", "pid": "1336765410", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Niederalemannisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336765410", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336765410", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336765410", "source": "GND"}], "authorized_access_point": "Mundart Niederalemannisch (Widnau)"} 1 +2024-09-11 09:09:56.844115 2024-09-11 09:09:56.844118 c19f1169-9d8c-4922-b836-e08fb2929e46 {"md5": "4d33039e90fc63053496d5dde6390010", "pid": "1336761083", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Asuka-Zeit&oldid=238607348"], "noteType": "dataSource"}, {"label": ["Periode der japanischen Geschichte."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kofun"}, {"authorized_access_point": "Nara-Zeit"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336761083", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336761083", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336761083", "source": "GND"}], "variant_access_point": ["Asuka jidai"], "authorized_access_point": "Asuka-Zeit"} 1 +2024-09-11 09:09:56.893308 2024-09-11 09:09:56.893312 14f6271b-f4a7-4ca4-b6c1-57c7d99ae701 {"md5": "3c2bbff6e8d4d70922b5710845cd3300", "pid": "1336749369", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Kalabresisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336749369", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336749369", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336749369", "source": "GND"}], "authorized_access_point": "Mundart Kalabresisch (Siderno)"} 1 +2024-09-11 09:09:56.961855 2024-09-11 09:09:56.96186 1c15236f-9a70-4a0b-8e42-a07ddbd69858 {"md5": "f2c55be53db285570c8e24a2864103d7", "pid": "1336591390", "note": [{"label": ["Chronik Borgentreich - https://chronik-borgentreich.jimdofree.com/1985-2005/", "Homepage Borgentreich - https://www.borgentreich.de/media/custom/2564_1496_1.PDF?1556095273"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Jubiläum"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336591390", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336591390", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336591390", "source": "GND"}], "variant_access_point": ["Borgentreich (2005)", "725-Jahrfeier (Borgentreich)", "725-Jahr-Feier (Borgentreich)", "Siebenhundertfünfundzwanzig-Jahrfeier (Borgentreich)"], "authorized_access_point": "725-Jahr-Feier der Stadt Borgentreich"} 1 +2024-09-11 09:09:57.019429 2024-09-11 09:09:57.019434 d639a1d7-2a5d-4cbc-85c1-7cdffeca117a {"md5": "02d77d5aa8c43618e579e949c325c7b9", "pid": "1336589876", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Schlacht_um_Singapur"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schlacht"}], "related": [{"authorized_access_point": "Pazifikkrieg (1941-1945)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336589876", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336589876", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336589876", "source": "GND"}], "authorized_access_point": "Schlacht um Singapur"} 1 +2024-09-11 09:09:57.080898 2024-09-11 09:09:57.080903 7216664c-0e19-47ee-9294-afa04dbe091a {"md5": "19b0727d4ead2f43660ed696b0272f83", "pid": "133658873X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Japanische_Invasion_der_Malaiischen_Halbinsel"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Invasion"}], "related": [{"authorized_access_point": "Zweiter Weltkrieg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133658873X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133658873X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133658873X", "source": "GND"}], "variant_access_point": ["Invasion in die Federated Malay States", "Japanische Invasion in die Verbündeten Malaienstaaten", "Operation E"], "authorized_access_point": "Japanische Invasion der Malaiischen Halbinsel"} 1 +2024-09-11 09:09:57.14309 2024-09-11 09:09:57.143094 fc157949-3695-409f-92e4-553e97727842 {"md5": "0e9752b278a13ba4e75952b3b4dd89b9", "pid": "1336532009", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?oldid=1207537941"], "noteType": "dataSource"}, {"label": ["Interdisziplinäre akademische Disziplin, die sich mit dem Studium der pazifischen Region (Ozeanien) befasst"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kulturraumforschung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336532009", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336532009", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336532009", "source": "GND"}], "variant_access_point": ["Pazifikstudien", "Pacific Studies"], "authorized_access_point": "Pazifik-Studien"} 1 +2024-09-11 09:09:57.198984 2024-09-11 09:09:57.198989 81d118e9-9089-4f65-a002-d0fcde0c3726 {"md5": "a290c45a403aad76fd357a3eebd5a3e0", "pid": "133646609X", "note": [{"label": ["Homepage Bochum - https://www.bochum.de/Kulturbuero/Dienstleistungen-und-Infos/Staedtische-Kulturpreise", "Kulturpreise.de - https://www.kulturpreise.de/web/preise_info.php?preisd_id=1765"], "noteType": "dataSource"}, {"label": ["Ältester Bochumer Kulturpreis, bis 1993 zunächst jährlich, danach alle 2 Jahre ausgelobt. Zweck des Preises ist die \\"Förderung der Auseinandersetzung mit den vielfältigen kreativen Möglichkeiten des Figurentheaters\\"."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Theaterpreis"}, {"authorized_access_point": "Kulturpreis"}], "related": [{"authorized_access_point": "Figurentheater"}, {"authorized_access_point": "Laienspiel"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133646609X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133646609X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133646609X", "source": "GND"}], "variant_access_point": ["Fritz-Wortelmann-Preis der Stadt Bochum", "Fritz-Wortelmann-Preis der Stadt Bochum für das Amateurfigurentheater", "Wettbewerb um den Fritz-Wortelmann-Preis"], "authorized_access_point": "Fritz-Wortelmann-Preis"} 1 +2024-09-11 09:09:57.257233 2024-09-11 09:09:57.257237 1d0986bd-5ace-419e-9454-16a1f33f85a6 {"md5": "f8f32e5318860b954959948922f7bc21", "pid": "1336401087", "note": [{"label": ["Medaille für besondere Verdienste um die Med Uni Graz"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Preis (Auszeichnung)"}], "related": [{"authorized_access_point": "Medizin"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336401087", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336401087", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336401087", "source": "GND"}], "variant_access_point": ["Auenbrugger-Ehrenmedaille"], "authorized_access_point": "Auenbrugger Ehrenmedaille"} 1 +2024-09-11 09:09:57.365152 2024-09-11 09:09:57.365157 3ba16987-a9a5-470d-98b1-e153d13683d5 {"md5": "80f71672f6a76926016e6929e542c93c", "pid": "1336261625", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Angle-Klassifizierung"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336262486", "source": "GND"}, {"type": "bf:Nbn", "value": "D008313", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D008313"}], "authorized_access_point": "Malocclusion, Angle Class III"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336261625", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336261625", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336261625", "source": "GND"}], "authorized_access_point": "Angle-Klasse III"} 1 +2024-09-11 09:09:57.414296 2024-09-11 09:09:57.414299 9d639458-997d-4d14-aa91-827684e531d6 {"md5": "dafcd3525aac27e89049ef225799da75", "pid": "1336259086", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Blockierung_(Manuelle_Medizin)&oldid=244981953"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336259086", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336259086", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336259086", "source": "GND"}], "variant_access_point": ["Reversible segmentale Dysfunktion"], "authorized_access_point": "Blockierung (Manuelle Medizin)"} 1 +2024-09-11 09:09:57.475236 2024-09-11 09:09:57.47524 72510e08-e839-4a0d-b5aa-64426fd74565 {"md5": "674dae7ca02f210f5b0e8eae472e1334", "pid": "1336255897", "note": [{"label": ["Entstehungszeit 1908; Varianten: Lichte Tam-Tam und Volle Tam-Tam"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336255897", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336255897", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336255897", "source": "GND"}], "authorized_access_point": "Tam-Tam (Druckschrift)"} 1 +2024-09-11 09:09:57.539404 2024-09-11 09:09:57.539409 1d1c7e85-eab7-436e-84e6-c0f73a6a1588 {"md5": "4cc1b66d294a71d2f0f922461dba5e51", "pid": "1336255692", "note": [{"label": ["Entstehungszeit ca. 1908"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336255692", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336255692", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336255692", "source": "GND"}], "authorized_access_point": "Keilschrift (Druckschrift)"} 1 +2024-09-11 09:09:57.597722 2024-09-11 09:09:57.597727 07642aaf-39df-40d6-bf04-54ad76fd1f11 {"md5": "2a08b0b8ec95cccd1d11a2991ad77c7f", "pid": "1336255609", "note": [{"label": ["Entstehungszeit ca. 1908"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336255609", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336255609", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336255609", "source": "GND"}], "authorized_access_point": "Kegelschrift (Druckschrift)"} 1 +2024-09-11 09:09:57.647571 2024-09-11 09:09:57.647575 def3adb5-410d-491c-b31f-a3b9a16bef91 {"md5": "eda774430e605c71175fad3c60a389b4", "pid": "1336248335", "note": [{"label": ["Entstehungszeit 1935"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336248335", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336248335", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336248335", "source": "GND"}], "variant_access_point": ["Koch Kurrent"], "authorized_access_point": "Koch-Kurrent"} 1 +2024-09-11 09:09:57.70444 2024-09-11 09:09:57.704444 a28680a4-2277-4cb3-bf9d-cea66471b6d3 {"md5": "f3e7a9f43a7cad3d7b4eb9a7c6ed27f1", "pid": "1336235047", "note": [{"label": ["Art aus der Familie der Dickblattgewächse"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Dickblattgewächse"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336235047", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336235047", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336235047", "source": "GND"}], "variant_access_point": ["Moos-Dickblatt", "Crassula tillaea"], "authorized_access_point": "Moosblümchen"} 1 +2024-09-11 09:09:57.759508 2024-09-11 09:09:57.759511 be4ef23f-897e-4979-aba4-e495fa4f6b5b {"md5": "cc432fe2ec4678c820e1bf7a90f248ce", "pid": "1336230754", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Italienfeldzug_(Zweiter_Weltkrieg)&oldid=246969151"], "noteType": "dataSource"}, {"label": ["Feldzug der Alliierten gegen die Achsenmächte in Italien von 1943-1945"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Feldzug"}], "related": [{"authorized_access_point": "Zweiter Weltkrieg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336230754", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336230754", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336230754", "source": "GND"}], "authorized_access_point": "Italienfeldzug (1943-1945)"} 1 +2024-09-11 09:09:57.814022 2024-09-11 09:09:57.814026 06464f8e-46ee-4110-adef-f1b991415e2b {"md5": "7acd6ac8e8cffa431fc16fc0ba7cd3c2", "pid": "1336223200", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Fashwave&oldid=244165778"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Subkultur"}], "related": [{"authorized_access_point": "Faschismus"}, {"authorized_access_point": "Rechtsradikalismus"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336223200", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336223200", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336223200", "source": "GND"}], "authorized_access_point": "Fashwave"} 1 +2024-09-11 09:09:58.404356 2024-09-11 09:09:58.404359 185adb5f-f19b-4040-80c9-3748c31a5fd0 {"md5": "7beb704ed01d1abf6abd08b49710137b", "pid": "1336035544", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336035544", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336035544", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336035544", "source": "GND"}], "authorized_access_point": "Infanterie (Motiv)"} 1 +2024-09-11 09:09:57.873144 2024-09-11 09:09:57.873147 37e143e6-bdfd-420f-80e7-5ca2ab39de42 {"md5": "0108bc41f40eb2e5e223b54948d107ac", "pid": "1336168528", "note": [{"label": ["Höhenverstellbares Trainingsgerät, z.B. für Step Aerobic"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Trainingsgerät"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336168528", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336168528", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336168528", "source": "GND"}], "variant_access_point": ["Stepbank", "Step-Bench", "Stepperbrett", "Steppbrett", "Trittgerät", "Step (Trainingsgerät)", "Stepper (Aerobic)"], "authorized_access_point": "Stepbrett"} 1 +2024-09-11 09:09:57.931097 2024-09-11 09:09:57.931101 f64cdf9a-238c-4679-9a86-8007fca3cdcd {"md5": "4f75abf15790f1d5dd6b72e4260ea88e", "pid": "1336166509", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336166509", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336166509", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336166509", "source": "GND"}], "authorized_access_point": "Stadtgeschichtsschreibung (Motiv)"} 1 +2024-09-11 09:09:57.985952 2024-09-11 09:09:57.985957 9a60febf-b2d3-4cea-956b-0c536605e8fb {"md5": "805d6323eb294a20513d16aa7eb241b7", "pid": "1336144033", "note": [{"label": ["Encyclopedia of Math - https://encyclopediaofmath.org/index.php?title=Poincaré-Hopf_theorem&oldid=32943"], "noteType": "dataSource"}, {"label": ["Wichtiger Satz der Differentialtopologie. Bekannter Spezialfall ist der Satz vom Igel."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Differentialtopologie"}, {"authorized_access_point": "Indexformel"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336144033", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336144033", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336144033", "source": "GND"}], "variant_access_point": ["Poincaré-Hopf-Indexformel", "Poincaré-Hopf-Indextheorem", "Hopf-Indextheorem", "Poincaré-Hopf Theorem"], "authorized_access_point": "Satz von Poincaré-Hopf"} 1 +2024-09-11 09:09:58.054386 2024-09-11 09:09:58.05439 df8bda32-73c6-4408-8c61-69c6da5778f9 {"md5": "498f401797acceea8f7dd7dd874360ab", "pid": "1336140607", "note": [{"label": ["Entstehungszeit 1903"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336140607", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336140607", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336140607", "source": "GND"}], "authorized_access_point": "Offenbacher Schwabacher"} 1 +2024-09-11 09:09:58.122276 2024-09-11 09:09:58.122279 db3f1a74-5293-47c0-856b-6632266206a0 {"md5": "d1ec6fc7f9ac4c91df56b9d6306abbb5", "pid": "1336136634", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Epimelet&oldid=220490949"], "noteType": "dataSource"}, {"label": ["Aufsichtsbeamter, der politische, wirtschaftliche und kultische Aufgaben wahrnimmt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Beamter"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336136634", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336136634", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336136634", "source": "GND"}], "authorized_access_point": "Epimelet"} 1 +2024-09-11 09:09:58.179227 2024-09-11 09:09:58.179231 42d35f01-42c3-466f-b673-2261c61457ac {"md5": "b373be2c7f3bcea1b93baed6d5459da3", "pid": "1336125306", "note": [{"label": ["Schöneich, Svenja: 'On a Hot Day in the Field...' The Art of Writing Ethnographic Vignettes. In: Ethnoscripts 2021, 23 (1), S. 116-124 - http://nbn-resolving.de/urn:nbn:de:gbv:18-8-16664", "Wikipedia - https://en.wikipedia.org/w/index.php?oldid=1231406965"], "noteType": "dataSource"}, {"label": ["Vignetten sind erzählerische Beschreibungen von Szenen, die analytischen Schlussfolgerungen dienen (Ethnologie) oder sind in psychol. u. soziol. Experimenten die Darstellung hypothetischer Situationen, auf die Versuchsteilnehmer*innen reagieren u. dabei ihre Wahrnehmungen, Werte, sozialen Normen oder Eindrücke von Ereignissen offenbaren"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Forschungsmethode"}], "related": [{"authorized_access_point": "Faktorieller Survey"}, {"authorized_access_point": "Feldnotiz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336125306", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336125306", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336125306", "source": "GND"}], "variant_access_point": ["Fallvignette"], "authorized_access_point": "Vignette (Sozialwissenschaften)"} 1 +2024-09-11 09:09:58.237015 2024-09-11 09:09:58.237018 36549683-b4ce-4f34-a950-fb8fa8f09206 {"md5": "b7769212513aecba1a2e66f8809b4e16", "pid": "1336043652", "note": [{"label": ["Entstehungszeit 1917"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336043652", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336043652", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336043652", "source": "GND"}], "variant_access_point": ["Windisch-Kursiv (Druckschrift)"], "authorized_access_point": "Windisch Kursiv (Druckschrift)"} 1 +2024-09-11 09:09:58.295892 2024-09-11 09:09:58.295896 b0b3e7ee-3762-47f8-9e62-1c2a708bd8c1 {"md5": "09837256b15dd398ccdbf177b21de808", "pid": "133603906X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133603906X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133603906X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133603906X", "source": "GND"}], "authorized_access_point": "Schlachtkreuzer (Motiv)"} 1 +2024-09-11 09:09:58.348801 2024-09-11 09:09:58.348805 637b5637-536e-4e4f-b69e-8b871a3d9276 {"md5": "1c3f8a150a56d2e5ed42cab1ff92b4fa", "pid": "1336037571", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Zentralkhoisan-Sprachen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336037571", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336037571", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336037571", "source": "GND"}], "variant_access_point": ["Cua (Sprache)", "Tyhua", "Tyua", "Kuasi"], "authorized_access_point": "Kua"} 1 +2024-09-11 09:09:58.456961 2024-09-11 09:09:58.456964 6e77dc1c-753f-4d21-9b09-c948e2c1f384 {"md5": "80bcc4bd4946cbf0f21fdd96646b36a8", "pid": "1336026758", "note": [{"label": ["NCBI-Taxonomy - https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=1553505"], "noteType": "dataSource"}, {"label": ["Art aus der Familie der Glanzkäfer"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Glanzkäfer"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336026758", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336026758", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336026758", "source": "GND"}], "authorized_access_point": "Ipidia binotata"} 1 +2024-09-11 09:09:58.508474 2024-09-11 09:09:58.508478 768970cc-920a-4769-ab95-033bcf279f49 {"md5": "24ff59706c18cb3a33c1332ce9a4a972", "pid": "1336019883", "note": [{"label": ["NCBI-Taxonomy - https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=1542538", "Wikipedia - https://de.wikipedia.org/w/index.php?title=St%C3%A4ngel-Blattschneiderbiene&oldid=224648687"], "noteType": "dataSource"}, {"label": ["Art aus der Familie der Bauchsammlerbienen, Gattung: Megachile"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bauchsammler (Megachilidae)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336019883", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336019883", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336019883", "source": "GND"}], "variant_access_point": ["Stängel-Blattschneiderbiene"], "authorized_access_point": "Megachile genalis"} 1 +2024-09-11 09:09:58.568581 2024-09-11 09:09:58.568584 55b363e1-526a-4921-a574-5c0cb31bc127 {"md5": "ad4f88c20af33934a683afdb7c26b02e", "pid": "1336015497", "note": [{"label": ["Internet - https://www.darpa.mil/program/mechanically-interlocked-materials"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Funktionswerkstoff"}, {"authorized_access_point": "Metallorganisches Netzwerk"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1336015497", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1336015497", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1336015497", "source": "GND"}], "variant_access_point": ["MIMs", "Mechanically Interlocked Materials"], "authorized_access_point": "Mechanisch verzahnter Werkstoff"} 1 +2024-09-11 09:09:58.622576 2024-09-11 09:09:58.622581 2d75f982-3905-4ebc-b9ea-19b117de6b46 {"md5": "159fc4f7283c013894f95a6376b15fd8", "pid": "1335982361", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Math-Rock&oldid=238152802"], "noteType": "dataSource"}, {"label": ["In den späten 80er Jahren entstandene Stilrichtung, die sich durch komplexe, atypische rhythmische Strukturen, abgehackte Melodien, Riffdominanz und dissonante Akkorde auszeichnet."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Rockmusik"}], "related": [{"authorized_access_point": "Progressive Rock"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335982361", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335982361", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335982361", "source": "GND"}], "variant_access_point": ["Math-Rock"], "authorized_access_point": "Math Rock"} 1 +2024-09-11 09:09:58.68731 2024-09-11 09:09:58.687316 b552ef6b-8f23-4b90-af39-857f82363303 {"md5": "bf45f05aa07132f0a9166cd2338787a5", "pid": "133595368X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Jubiläum"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133595368X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133595368X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133595368X", "source": "GND"}], "variant_access_point": ["Breckerfeld - 600 Jahre Stadt", "Jubiläumsjahr 1996 (Breckerfeld)", "Breckerfeld (1996)"], "authorized_access_point": "Breckerfeld - 600 Jahre Stadtrechte"} 1 +2024-09-11 09:09:58.743618 2024-09-11 09:09:58.743623 49852986-a3fc-4b5d-898f-786f86d12e2a {"md5": "65d62e9d0ae355e4e8a6397669999fc8", "pid": "1335904158", "note": [{"label": ["670 Wikipedia - https://de.wikipedia.org/w/index.php?title=Piva_(Tanz)&oldid=243663985"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tanz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335904158", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335904158", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335904158", "source": "GND"}], "authorized_access_point": "Piva (Tanz)"} 1 +2024-09-11 09:09:58.796572 2024-09-11 09:09:58.796576 5a832742-62c7-4730-9479-9e6ba3e6b5fc {"md5": "baf115d2abda53f6c4adb618600ecd61", "pid": "1335903623", "note": [{"label": ["670 Wikipedia - https://de.wikipedia.org/w/index.php?title=Halling&oldid=236383404"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Volkstanz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335903623", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335903623", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335903623", "source": "GND"}], "variant_access_point": ["Hallingdans", "Lausdans", "Hallingdansen"], "authorized_access_point": "Halling"} 1 +2024-09-11 09:09:58.850559 2024-09-11 09:09:58.850562 99e3988c-c889-4947-a302-762c77ebdc8b {"md5": "df8cd9cc4a38986bb46e1d87de3ffd5f", "pid": "1335900330", "note": [{"label": ["670 Wikipedia - https://de.wikipedia.org/w/index.php?title=Hopak&oldid=243940069"], "noteType": "dataSource"}, {"label": ["Laut Wikipedia (eng.) sind Tropak und Hopak verwandt (\\"The tropak shares many musical and choreographic characteristics with the better known hopak.\\"). Daher die Quasisynonymie."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Volkstanz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335900330", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335900330", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335900330", "source": "GND"}], "variant_access_point": ["Gopak", "Trepak", "Tropak"], "authorized_access_point": "Hopak"} 1 +2024-09-11 09:09:58.904461 2024-09-11 09:09:58.904466 3a155dbd-44e2-4470-9e7a-b57389ba1495 {"md5": "fb5db925c0a949ce4acda99b9bae3045", "pid": "1335882758", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Mundart Mittelitalienisch (Latium)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335882758", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335882758", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335882758", "source": "GND"}], "authorized_access_point": "Mundart Mittelitalienisch, Latium (Anagni)"} 1 +2024-09-11 09:09:58.9591 2024-09-11 09:09:58.959105 f0c4039c-f19d-46ca-b702-b03213465842 {"md5": "0b2b1afd243d6c536bfc444d2403ee47", "pid": "1335881247", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?oldid=1219699028"], "noteType": "dataSource"}, {"label": ["Interdisziplinäre akademische Disziplin, die sich mit dem Studium der Chicano-Kultur befasst"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kulturraumforschung"}], "related": [{"authorized_access_point": "Chicano Movement"}, {"authorized_access_point": "Chicanos"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335881247", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335881247", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335881247", "source": "GND"}], "variant_access_point": ["Chicano/a studies", "Chicana studies", "Xicano studies", "Chicana and Chicano Studies", "Mexican American studies"], "authorized_access_point": "Chicano Studies"} 1 +2024-09-11 09:09:59.015183 2024-09-11 09:09:59.015186 7357f1b1-c6fd-4449-a71b-500f66cb547e {"md5": "aa93839e828989f94bfd3a5b095999f4", "pid": "133582569X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Neotantra&oldid=245226944"], "noteType": "dataSource"}, {"label": ["in den 70en Jahren, im Westen entstandene Lehre und Lebenspraxis, in der die sexuellen Aspekte des Tantra im Vordergrund stehen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Tantrismus"}, {"authorized_access_point": "Esoterik"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133582569X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133582569X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133582569X", "source": "GND"}], "variant_access_point": ["Navatantra"], "authorized_access_point": "Neotantra"} 1 +2024-09-11 09:09:59.079416 2024-09-11 09:09:59.07942 7b36d6d8-1391-4820-ba40-fb42e39e2cfa {"md5": "908641b0d0bad0332825e847af85670a", "pid": "1335777539", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Step-Aerobic&oldid=244133339"], "noteType": "dataSource"}, {"label": ["Aerobes Gruppenfitnesstraining nach Musik, das mit einem höhenverstellbaren Stepbrett durchgeführt wird"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335777539", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335777539", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335777539", "source": "GND"}], "variant_access_point": ["Step Aerobic", "Step-Training"], "authorized_access_point": "Step-Aerobic"} 1 +2024-09-11 09:09:59.207259 2024-09-11 09:09:59.207263 f3d5c12b-1d51-4c84-b979-bb800358bfda {"md5": "7bf26df2cbd4cdf74f1041fb4a150c21", "pid": "1335762779", "note": [{"label": ["Internet - https://www.ipm.fraunhofer.de/de/gf/energiewandler-thermische/komp/kalorische-systeme/elastokalorische-systeme.html"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kältetechnik"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335762779", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335762779", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335762779", "source": "GND"}], "variant_access_point": ["Elastokalorischer Effekt"], "authorized_access_point": "Elastokalorisches System"} 1 +2024-09-11 09:09:59.258125 2024-09-11 09:09:59.258129 09d180b7-b4e7-44d5-9308-d5a4ea40de30 {"md5": "c2dc155b7d45acf328781d68ff7dbe1b", "pid": "1335752897", "note": [{"label": ["Homepage Bielefeld - https://historischer-rueckklick-bielefeld.com/2019/07/01/01072019/"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Jubiläum"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335752897", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335752897", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335752897", "source": "GND"}], "variant_access_point": ["1000 Jahre Schildesche", "Ortsjubiläum von Schildesche 1939", "Tausendjahrfeier von Schildesche 1939", "Bielefeld-Schildesche (1939)", "Bielefeld-Schildesche", "Schildesche (1939)"], "authorized_access_point": "Tausendjahrfeier Schildesche"} 1 +2024-09-11 09:09:59.314654 2024-09-11 09:09:59.314658 439586a2-9d09-403a-8372-ad4e1f04e976 {"md5": "fdf662f7df7b3e3b69e2a829916adca4", "pid": "133575086X", "note": [{"label": ["militärischer Konflikt zwischen England und Frankreich, der hauptsächlich in der Gascogne sowie in Flandern ausgetragen wurde."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133575086X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133575086X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133575086X", "source": "GND"}], "variant_access_point": ["Englisch-französischer Krieg (1294-1303)", "Guerre de Guyenne", "Gascon war"], "authorized_access_point": "Französisch-englischer Krieg (1294-1303)"} 1 +2024-09-11 09:09:59.372746 2024-09-11 09:09:59.37275 1caf608c-091a-494a-8000-b68f2c536b5a {"md5": "21f43aff5255991f4320a95af997bd8d", "pid": "1335736832", "note": [{"label": ["AAT - http://vocab.getty.edu/page/aat/300027201", "Thomas, S.: Beobachtungsprotokolle und Feldnotizen. In: Ethnografie. Qualitative Sozialforschung. Springer, 2019. - https://doi.org/10.1007/978-3-531-94218-6_5", "Dellwing; Prus: Einführung in die interaktionistische Ethnografie. Springer, 2012, S. 163-171. - https://doi.org/10.1007/978-3-531-94265-0_5"], "noteType": "dataSource"}, {"label": ["Notizen, die von Forschenden im Laufe der Feldforschung bzw. Vermessung aufgezeichnet werden"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Feldforschung"}, {"authorized_access_point": "Qualitative Sozialforschung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335736832", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335736832", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335736832", "source": "GND"}], "variant_access_point": ["Feldnotizen", "Feldbuch", "Beobachtungsprotokoll"], "authorized_access_point": "Feldnotiz"} 1 +2024-09-11 09:09:59.425549 2024-09-11 09:09:59.425554 4959e5f7-6d15-436d-94df-6bfd6028f746 {"md5": "53fa7b242c5e0ff3fbdcb333fda9d06c", "pid": "1335733086", "note": [{"label": ["Benutzt, soweit im Ausland lebend"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ausländischer Schüler"}, {"authorized_access_point": "Ukrainer"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335733086", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335733086", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335733086", "source": "GND"}], "authorized_access_point": "Ukrainischer Schüler"} 1 +2024-09-11 09:09:59.479552 2024-09-11 09:09:59.479555 ef5f2e74-bacc-4d53-88bc-0e97b4b804b9 {"md5": "ee5a877ecd93130a332a4f652790a319", "pid": "1335729577", "note": [{"label": ["Nach 2009 als \\"Umwelt- und Klimaschutzpreis\\" fortgeführt und alle 2 Jahre verliehen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Preis (Auszeichnung)"}], "related": [{"authorized_access_point": "Umweltschutz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335729577", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335729577", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335729577", "source": "GND"}], "variant_access_point": ["Umweltpreis (Bielefeld)"], "authorized_access_point": "Umweltpreis der Stadt Bielefeld"} 1 +2024-09-11 09:09:59.535222 2024-09-11 09:09:59.535226 b76052f9-d875-47b7-89f5-2930bf119087 {"md5": "b889c6fcdfbf91af4a0d6d959bba1eb5", "pid": "1335727701", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?oldid=1021987957", "Evens; Handelman: The Manchester School: Practice and Ethnographic Praxis in Anthropology. Berghahn, 2006 - https://doi.org/10.1515/9780857458582"], "noteType": "dataSource"}, {"label": ["Die Manchester School of Anthropology ist eine interaktionistische Richtung der britischen Ethnologie, die vom Department of Social Anthropology der Victoria University of Manchester ausging, federführend war Max Gluckman"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sozialanthropologie"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335727701", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335727701", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335727701", "source": "GND"}], "variant_access_point": ["Manchester School of Anthropology"], "authorized_access_point": "Manchester School"} 1 +2024-09-11 09:09:59.595078 2024-09-11 09:09:59.595082 ee26d43e-5990-4770-b038-deabfc53f0f1 {"md5": "8fd305843742406a7a621bfab647832a", "pid": "1335528539", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Moritz_von_Oraniens_Feldzug_von_1597&oldid=236205338"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Feldzug"}], "related": [{"authorized_access_point": "Achtzigjähriger Krieg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335528539", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335528539", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335528539", "source": "GND"}], "variant_access_point": ["Moritz von Oraniens Feldzug von 1597", "Moritz' Feldzug von 1597"], "authorized_access_point": "Moritz von Oraniens Feldzug (1597)"} 1 +2024-09-11 09:09:59.647344 2024-09-11 09:09:59.647347 f2d62061-b837-477d-bba2-d3603c7c046f {"md5": "51d7b2543f4db5a363f3fc483f2392f3", "pid": "1335514767", "note": [{"label": ["UNESCO - https://ich.unesco.org/en/RL/nguon-rituals-of-governance-and-associated-expressions-in-the-bamoun-community-01955", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Königreich_Bamum&oldid=240119185#Nguon"], "noteType": "dataSource"}, {"label": ["Die über 600 Jahre alten Nguon-Rituale zwischen dem Mfon, dem Monarchen, und seinem Volk gelten als Quelle des sozialen Zusammenhalts und Widerstandsfähigkeit, sie werden von der Bamoun-Gemeinschaft in der Westregion Kameruns durchgeführt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ritual"}], "related": [{"authorized_access_point": "Bamum"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335514767", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335514767", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335514767", "source": "GND"}], "authorized_access_point": "Nguon"} 1 +2024-09-11 09:09:59.706658 2024-09-11 09:09:59.706664 7b1ed412-5802-4d06-bc38-542d47d3c14a {"md5": "19514f284df7a97e8768f6c1c1f7c8dd", "pid": "1335503307", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Avro_Shackleton&oldid=230785070"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Aufklärungsflugzeug"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335503307", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335503307", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335503307", "source": "GND"}], "variant_access_point": ["Shackleton (Flugzeug)"], "authorized_access_point": "Avro 696 Shackleton"} 1 +2024-09-11 09:09:59.765877 2024-09-11 09:09:59.765883 72df83aa-d751-473f-8013-927b2425a592 {"md5": "b5b5822c321a786d45ee8d6966f65fd8", "pid": "1335484930", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Medienkunst&oldid=244560852"], "noteType": "dataSource"}, {"label": ["Künstler der sich unterschiedlicher audiovisueller Medien (Radio, Film, Fernsehen, Video, Computer und Internet) bedient"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Künstler"}], "related": [{"authorized_access_point": "Medienkünstlerin"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335484930", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335484930", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335484930", "source": "GND"}], "authorized_access_point": "Medienkünstler"} 1 +2024-09-11 09:09:59.820134 2024-09-11 09:09:59.820139 21d11137-fce6-4d74-bb4a-0a29cf6ce52e {"md5": "10c3a736b1876210c5e293b816861547", "pid": "1335484639", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Medienkunst&oldid=244560852"], "noteType": "dataSource"}, {"label": ["Künstlerin die die sich unterschiedlicher audiovisueller Medien (Radio, Film, Fernsehen, Video, Computer und Internet) bedient"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Künstlerin"}], "related": [{"authorized_access_point": "Medienkünstler"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335484639", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335484639", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335484639", "source": "GND"}], "authorized_access_point": "Medienkünstlerin"} 1 +2024-09-11 09:10:01.135424 2024-09-11 09:10:01.135429 123d17f9-5f88-4904-a45b-003aca41784e {"md5": "1b31307228a559b8eaeabb9deb9840de", "pid": "1334804699", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334804699", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334804699", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334804699", "source": "GND"}], "authorized_access_point": "Spitze (Textilien, Motiv)"} 1 +2024-09-11 09:09:59.87607 2024-09-11 09:09:59.876075 dca40820-45d1-45e0-ac50-bb2fc4e0ef09 {"md5": "4b099c43bfbe00b5c767afd880f82848", "pid": "1335475753", "note": [{"label": ["Larner, A. J.: A dictionary of neurological signs. Springer, 2016, 4. Aufl., S. 139 - https://doi.org/10.1007/978-3-319-29821-4", "MeSH - https://id.nlm.nih.gov/mesh/D000090206.html", "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=243986138", "Du. - https://www.duden.de/rechtschreibung/Gaslighting"], "noteType": "dataSource"}, {"label": ["Form der gezielten psychologischen Manipulation, bei dem ein Opfer dazu gebracht wird, seine Wahrnehmungen der Realität inkl. Erinnerungen u.a. in Frage zu stellen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Manipulation"}], "related": [{"authorized_access_point": "Emotionaler Missbrauch"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "uri", "value": "https://id.nlm.nih.gov/mesh/D000090206.html"}], "authorized_access_point": "Gaslighting"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335475753", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335475753", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335475753", "source": "GND"}], "variant_access_point": ["Gaslight Phenomenon", "Gaslight Syndrome", "Gaslichtern", "Gas-lighting"], "authorized_access_point": "Gaslighting"} 1 +2024-09-11 09:09:59.931553 2024-09-11 09:09:59.931558 6c49ee16-e241-45f3-8cda-5d59a5a261d3 {"md5": "9f4308c26975b0b0f8dae07ea3844f24", "pid": "1335475575", "note": [{"label": ["Internet - https://www.plastverarbeiter.de/markt/die-perfekte-welle.html"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schnecke (Maschinenbau)"}], "related": [{"authorized_access_point": "Extruder"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335475575", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335475575", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335475575", "source": "GND"}], "variant_access_point": ["Wave-Schnecke"], "authorized_access_point": "Wellenschnecke"} 1 +2024-09-11 09:09:59.986406 2024-09-11 09:09:59.986412 25554c79-25e4-458a-baf6-2b39abb14d40 {"md5": "750700fa45ac07b5928481111717bb4b", "pid": "1335348379", "note": [{"label": ["Seit 2017 vergebenes Stipendium an Kunstvermittler*innen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kulturpreis"}, {"authorized_access_point": "Stipendium"}], "related": [{"authorized_access_point": "Kunstvermittlung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335348379", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335348379", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335348379", "source": "GND"}], "variant_access_point": ["Stipendium Volkswagen Fellowship für Kunstvermittlung", "Volkswagen Fellowship für Kunstvermittlung an der Städtischen Galerie Wolfsburg", "Volkswagen Group Fellowship", "Volkswagen Fellowship"], "authorized_access_point": "Volkswagen Fellowship für Kunstvermittlung"} 1 +2024-09-11 09:10:00.043044 2024-09-11 09:10:00.043049 6bd8b470-a4b8-462d-b548-b66f24e84a9b {"md5": "8e3ae6c5734bd95acd92ae6e75950e35", "pid": "1335334955", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Liouville_field_theory&oldid=1231830939", "ncatlab - https://ncatlab.org/nlab/show/Liouville+theory"], "noteType": "dataSource"}, {"label": ["Zweidimensionale konforme Feldtheorie, deren klassische Bewegungsgleichungen auf einer Verallgemeinerung der Liouville-Gleichung beruhen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zweidimensionale konforme Feldtheorie"}, {"authorized_access_point": "Liouville-Gleichung"}], "related": [{"authorized_access_point": "Quantengravitation"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335334955", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335334955", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335334955", "source": "GND"}], "variant_access_point": ["Liouville-Quantengravitation", "Liouville Field Theory", "Liouville Theory", "Liouville Quantum Gravity"], "authorized_access_point": "Liouville-Feldtheorie"} 1 +2024-09-11 09:10:00.097653 2024-09-11 09:10:00.097657 d40d8a72-7c57-4515-b766-e6ff8d916ad0 {"md5": "78c600fb9c3996031bca5c3b29dfe89e", "pid": "1335332510", "note": [{"label": ["OBV - https://permalink.obvsg.at/AC12153949", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Priorisierung_medizinischer_Leistungen&oldid=212761464"], "noteType": "dataSource"}, {"label": ["Vorrangigkeit bestimmter Indikationen, Patientengruppen od. Verfahren vor anderen; nicht ident mit Rationierung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gesundheitspolitik"}, {"authorized_access_point": "Medizinische Versorgung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335332510", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335332510", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335332510", "source": "GND"}], "variant_access_point": ["Priorisierung (Gesundheitswesen)", "Priorisierung medizinischer Leistungen", "Medizinische Priorisierung"], "authorized_access_point": "Priorisierung"} 1 +2024-09-11 09:10:00.160889 2024-09-11 09:10:00.160895 17c0cc23-5fa5-490a-a67c-566cf045b06f {"md5": "79653563009d8db252902d07cf570965", "pid": "1335327541", "note": [{"label": ["Benutze Kombination \\"Mamma AND Krankheit\\" für weitere Treffer"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Krankheit"}], "related": [{"authorized_access_point": "Senologie"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1335330070", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85016683", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85016683"}], "authorized_access_point": "Breast - Diseases"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1335330070", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11938410", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11938410t"}], "authorized_access_point": "Sein - Maladies"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1335329935", "source": "GND"}, {"type": "bf:Nbn", "value": "D001941", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D001941"}], "authorized_access_point": "Breast Diseases"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335327541", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335327541", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335327541", "source": "GND"}], "variant_access_point": ["Brusterkrankung", "Brustkrankheiten", "Brusterkrankungen"], "authorized_access_point": "Brustkrankheit"} 1 +2024-09-11 09:10:00.237165 2024-09-11 09:10:00.237169 a264f5aa-780b-4788-9714-c3015c2b5d64 {"md5": "820627776999884abbed210cc6436879", "pid": "1335263977", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Permutaeder&oldid=244419551"], "noteType": "dataSource"}, {"label": ["Konvexes Polytop, dessen Ecken sich als Permutation des Vektors (1,2,…,n) definieren."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Konvexes Polytop"}], "related": [{"authorized_access_point": "Permutation"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335263977", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335263977", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335263977", "source": "GND"}], "variant_access_point": ["Permutohedron", "Permutahedron"], "authorized_access_point": "Permutaeder"} 1 +2024-09-11 09:10:00.293884 2024-09-11 09:10:00.293889 18ed7d26-3490-4173-9feb-5fcf460de811 {"md5": "ee174f290bc505815f2e06a8ec8b6034", "pid": "1335255869", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Stadtkreis_(Russland)&oldid=229834610"], "noteType": "dataSource"}, {"label": ["in der Russischen Föderation eine Verwaltungseinheit im Rahmen der lokalen Selbstverwaltung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Verwaltungseinheit"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335255869", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335255869", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335255869", "source": "GND"}], "variant_access_point": ["Gorodskoi Okrug", "Gorodskoj okrug"], "authorized_access_point": "Stadtkreis (Russland)"} 1 +2024-09-11 09:10:00.352107 2024-09-11 09:10:00.352112 b902431a-0f7f-4ff1-853d-b80533be667e {"md5": "8b13a53f2fa4ef4e1edc24cd4776419a", "pid": "1335237232", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Preis (Auszeichnung)"}], "related": [{"authorized_access_point": "Umweltschutz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335237232", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335237232", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335237232", "source": "GND"}], "authorized_access_point": "Umweltpreis der Stadt Bergkamen"} 1 +2024-09-11 09:10:00.407772 2024-09-11 09:10:00.407776 481aabaa-bb1a-4e7e-835a-0463811b9be7 {"md5": "e18710fb1dad8b85856476f7a0647196", "pid": "1335237046", "note": [{"label": ["Spektrum Lex. Psychol. (online) - https://www.spektrum.de/lexikon/psychologie/schismogenese/13471", "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=245926045"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Gruppendynamik"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335237046", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335237046", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335237046", "source": "GND"}], "variant_access_point": ["Schismogenesis"], "authorized_access_point": "Schismogenese"} 1 +2024-09-11 09:10:00.46444 2024-09-11 09:10:00.464445 f1d269fa-a57c-47af-9011-68b8409680d9 {"md5": "b428829ee70be6834b14e2622becc748", "pid": "133523490X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=228402100"], "noteType": "dataSource"}, {"label": ["Unter Rationalisierung ist in der Soziologie der umfassende Prozess zu verstehen, in dem alle gesellschaftlichen Phänomene der Vernunft unterworfen werden"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Soziologie"}], "related": [{"authorized_access_point": "Vernunft"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133523490X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133523490X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133523490X", "source": "GND"}], "authorized_access_point": "Rationalisierung (Soziologie)"} 1 +2024-09-11 09:10:00.519673 2024-09-11 09:10:00.519677 cbbafa66-e4e6-43a7-b67f-aad37d82bd4d {"md5": "6c09dc95ccf9f61c25ee916387b59c16", "pid": "1335228187", "note": [{"label": ["Rameau - https://data.bnf.fr/ark:/12148/cb17034367t", "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=236304205"], "noteType": "dataSource"}, {"label": ["Formen der Wirtschaft, bei denen natürliche Ressourcen entnommen, genutzt und vermarktet werden"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Rohstoffwirtschaft"}, {"authorized_access_point": "Entwicklungsmodell"}], "related": [{"authorized_access_point": "Ausbeutung"}, {"authorized_access_point": "Subsistenzwirtschaft"}, {"authorized_access_point": "Rohstoffexport"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17034367t"}], "authorized_access_point": "Extractivisme"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335228187", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335228187", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335228187", "source": "GND"}], "variant_access_point": ["Neo-Extraktivismus", "Neuextraktivismus"], "authorized_access_point": "Extraktivismus"} 1 +2024-09-11 09:10:00.575028 2024-09-11 09:10:00.575031 a0350211-dec8-455d-9f71-27c11cdf274c {"md5": "9804d14eed8b0853b0d197ba225bcdc9", "pid": "1335212299", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Jubiläum"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335212299", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335212299", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335212299", "source": "GND"}], "variant_access_point": ["Siebenhundertfünfundsiebzig Jahre Stadt Borken", "Borken (Westf.) (2001)"], "authorized_access_point": "775 Jahre Stadt Borken"} 1 +2024-09-11 09:10:00.631809 2024-09-11 09:10:00.631811 82afba21-00f9-40f0-aa2c-852a1aaf250a {"md5": "806d920cfcbe5b164d16cb47e127fc7c", "pid": "133521075X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Jubiläum"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133521075X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133521075X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133521075X", "source": "GND"}], "variant_access_point": ["700-Jahrfeier der Stadt Borken", "700-Jahr-Feier der Stadt Borken 1926", "Siebenhundert-Jahr-Feier der Stadt Borken", "Borken (Westf.) (1926)"], "authorized_access_point": "700-Jahr-Feier der Stadt Borken"} 1 +2024-09-11 09:10:00.690645 2024-09-11 09:10:00.690649 63fa340e-e7a3-47fd-955e-ef61c0361c5f {"md5": "1ca09be230102533327dd88936acf6ba", "pid": "1335201068", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Vorarlberger_Volkserhebung_1809&oldid=208849160"], "noteType": "dataSource"}, {"label": ["gewaltsamer Widerstand der Bevölkerung des österreichischen Landes Vorarlberg gegen die bayerische Fremdherrschaft im Rahmen des Österreichisch-Französischen Kriegs"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Aufstand"}], "related": [{"authorized_access_point": "Österreichisch-Französischer Krieg (1809)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335201068", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335201068", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335201068", "source": "GND"}], "variant_access_point": ["Vorarlberger Volksaufstand (1809)", "Vorarlberger Aufstand (1809)", "Vorarlberger Erhebung (1809)"], "authorized_access_point": "Vorarlberger Volkserhebung (1809)"} 1 +2024-09-11 09:10:00.747635 2024-09-11 09:10:00.747639 242161f9-a554-4f49-8338-0710f92f33eb {"md5": "2c57033cbea05a59d8e1f82391a48a1b", "pid": "1335134549", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Jubiläum"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335134549", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335134549", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335134549", "source": "GND"}], "variant_access_point": ["700-Jahrfeier der Stadt Beckum 1924", "Siebenhundert-Jahrfeier der Stadt Beckum", "Beckum (1924)"], "authorized_access_point": "700-Jahrfeier der Stadt Beckum"} 1 +2024-09-11 09:10:00.803083 2024-09-11 09:10:00.803088 33c3bf5b-4972-4962-b11d-46ba52516a78 {"md5": "25378d4eab501ff94176437050a1e2d7", "pid": "1335054405", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?&oldid=1232080765", "Singer; Snipes: Generations of Suffering: Experiences of a Treatment Program for Substance Abuse During Pregnancy, 1992, S. 225 - https://doi.org/10.1353/hpu.2010.0180", "Medico International: Pandemie? Syndemie! - https://www.medico.de/pandemie-syndemie-18186"], "noteType": "dataSource"}, {"label": ["Eine Syndemie ist eine Reihe miteinander verflochtener und sich gegenseitig verstärkender Gesundheitsprobleme, die im Zusammenwirken mit schädlichen sozialen und physischen Bedingungen die Gesamtkrankheitslast und den Gesundheitszustand einer Bevölkerung erheblich beeinflussen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sozialepidemiologie"}], "related": [{"authorized_access_point": "Pandemie"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336048573", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2014100257", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2014100257"}], "authorized_access_point": "Syndemics"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336048115", "source": "GND"}, {"type": "bf:Nbn", "value": "D000076603", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000076603"}], "authorized_access_point": "Syndemic"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335054405", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335054405", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335054405", "source": "GND"}], "authorized_access_point": "Syndemie"} 1 +2024-09-11 09:10:00.857872 2024-09-11 09:10:00.857877 aaf59dcd-db6f-4bb2-aa3c-c5481fec8ec6 {"md5": "38f9a4b322c4ca006441aca13163a59e", "pid": "1334935475", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Spektrum_(Topologie)&oldid=200053574", "Encyclopedia of Math - https://encyclopediaofmath.org/index.php?title=Spectrum_of_spaces&oldid=52273"], "noteType": "dataSource"}, {"label": ["In der algebraischen Topologie werden Spektren zur Definition verallgemeinerter Homologietheorien benutzt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Spektrum (Mathematik)"}, {"authorized_access_point": "Algebraische Topologie"}], "related": [{"authorized_access_point": "Homotopietheorie"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334935475", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334935475", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334935475", "source": "GND"}], "variant_access_point": ["Spectrum of Spaces"], "authorized_access_point": "Spektrum (Topologie)"} 1 +2024-09-11 09:10:00.913961 2024-09-11 09:10:00.913965 63f04988-7fa4-4d54-bb15-58edf34467dc {"md5": "aeb17adb279c1e2489481bab24e40f97", "pid": "1334906815", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ortsname"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334906815", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334906815", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334906815", "source": "GND"}], "authorized_access_point": "Finnentrop (Ortsname)"} 1 +2024-09-11 09:10:00.970214 2024-09-11 09:10:00.970217 4d7c7ce3-b8a6-4870-b625-071e475b764c {"md5": "2c7534c8a35f3f0afb201a25bbf59f01", "pid": "1334879079", "note": [{"label": ["Sammlung wichtiger Stellen aus Opern, Konzerten usw. für ein bestimmtes Instrument"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Musikalien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334879079", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334879079", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334879079", "source": "GND"}], "authorized_access_point": "Orchesterstudien"} 1 +2024-09-11 09:10:01.026182 2024-09-11 09:10:01.026186 e544823d-42fd-4c6d-ba2c-2f7d8238a671 {"md5": "a18fbb8e40c9a2962ddeb8f9619ee02a", "pid": "1334810524", "note": [{"label": ["Darstellungsweise des Laubwerks in der bildenden Kunst", "Ohne IZ Motiv"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}, {"authorized_access_point": "Landschaftsmalerei"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334810524", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334810524", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334810524", "source": "GND"}], "authorized_access_point": "Baumschlag (Landschaftsmalerei)"} 1 +2024-09-11 09:10:01.079964 2024-09-11 09:10:01.079968 9f8f096f-0439-4eb7-a8a0-cf9ade02e4eb {"md5": "ddd4e7668e647cb236878ce992504d75", "pid": "1334804893", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Stockfotografie&oldid=243286041"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fotografie"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334804893", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334804893", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334804893", "source": "GND"}], "authorized_access_point": "Stockfotografie"} 1 +2024-09-11 09:10:01.193303 2024-09-11 09:10:01.193307 5eb3bcf9-88da-4b2c-9b54-ec5f4bc62598 {"md5": "db29455b8533c48997b387315583f4f7", "pid": "1334804281", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Ulmer_Einsatzgruppen-Prozess&oldid=237591756"], "noteType": "dataSource"}, {"label": ["Der Prozess gegen zehn Angehörige der „Einsatzgruppe Tilsit“ im April 1958 verhandelte den Mord an über 5.500 Menschen im deutsch-litauischen Grenzgebiet 1941"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kriegsverbrecherprozess"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334804281", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334804281", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334804281", "source": "GND"}], "variant_access_point": ["Ulmer Einsatzkommandoprozess"], "authorized_access_point": "Ulmer Einsatzgruppen-Prozess"} 1 +2024-09-11 09:10:01.24827 2024-09-11 09:10:01.248274 f3532009-c9a7-4662-b136-4464e99c2036 {"md5": "3a691c8a4d83cf06581be3fcc914b4da", "pid": "1334795533", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Cyberfeminismus&oldid=243932731"], "noteType": "dataSource"}, {"label": ["seit ca. 1990 Bezeichnung für einen feministischen Ansatz, der dazu dient, das Internet, den Cyberspace und neue Medientechnologien im Allgemeinen zu theoretisieren, kritisieren, erforschen und neu zu gestalten"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Feminismus"}], "related": [{"authorized_access_point": "Medientheorie"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334795533", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334795533", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334795533", "source": "GND"}], "variant_access_point": ["Netzfeminismus", "Technofeminismus"], "authorized_access_point": "Cyberfeminismus"} 1 +2024-09-11 09:10:01.320616 2024-09-11 09:10:01.320622 5f0279ab-8473-452b-9d78-dc6417d6773d {"md5": "087d82c5ccc50f732412e40b40d596d1", "pid": "1334784639", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Biowerkstoff&oldid=224587293"], "noteType": "dataSource"}, {"label": ["Der Begriff Biowerkstoff wurde als Oberbegriff für Werkstoffe geschaffen, die vollständig oder zu relevanten Anteilen auf nachwachsenden Rohstoffen (Naturprodukte oder Holz) basieren."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Werkstoff"}], "related": [{"authorized_access_point": "Biomaterial"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334784639", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334784639", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334784639", "source": "GND"}], "variant_access_point": ["Biobasierter Werkstoff", "biomaterial (eng)"], "authorized_access_point": "Biowerkstoff"} 1 +2024-09-11 09:10:01.39205 2024-09-11 09:10:01.392054 14a52d9c-f827-4c4c-ab56-361f6ea5a7a1 {"md5": "c25e4345e03e70bc9ca55e6e147394a8", "pid": "1334676844", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Schlacht_um_%C5%81%C3%B3d%C5%BA"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schlacht"}], "related": [{"authorized_access_point": "Erster Weltkrieg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334676844", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334676844", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334676844", "source": "GND"}], "variant_access_point": ["Schlacht um Lodz", "Bitwa pod Łodzią (1914)", "Lodzinskaja operacija", "Лодзинская операция"], "authorized_access_point": "Schlacht um Łódź"} 1 +2024-09-11 09:10:01.44821 2024-09-11 09:10:01.448214 c168f1ce-0fb4-44ba-abac-63ddbf7947fb {"md5": "7e4ebbb869a0662b769e29fa4a700a24", "pid": "1334652074", "note": [{"label": ["Homepage - https://www.naturpark-stromberg-heuchelberg.de/erleben/wandern/eppinger-linien-weg"], "noteType": "dataSource"}, {"label": ["40 km lange kulturhistorischer Wanderweg im Naturpark Stromberg-Heuchelberg zwischen Eppingen und Mühlacker"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wanderweg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334652074", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334652074", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334652074", "source": "GND"}], "authorized_access_point": "Eppinger-Linien-Weg"} 1 +2024-09-11 09:10:01.502963 2024-09-11 09:10:01.502968 96318630-e9a5-4d86-81d6-6dbdc09ba425 {"md5": "4adbf48f78d9c312b885477a99f99d04", "pid": "1334205639", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334205639", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334205639", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334205639", "source": "GND"}], "authorized_access_point": "Luftschlacht um England (Motiv)"} 1 +2024-09-11 09:10:01.560609 2024-09-11 09:10:01.560614 a270ccdc-943b-41ac-b2d5-7d8def47e7fe {"md5": "7ea974e53ce07bdaa3f876bece0ca42b", "pid": "1333849850", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333849850", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333849850", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333849850", "source": "GND"}], "authorized_access_point": "Hacker (Motiv)"} 1 +2024-09-11 09:10:01.624455 2024-09-11 09:10:01.62446 46ae1de2-3b0f-410a-9678-a6d8705f16fa {"md5": "2c29bf722e37927236c73b916639d364", "pid": "1333570651", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Weibliche Kranke"}], "related": [{"authorized_access_point": "Multiple Sklerose"}, {"authorized_access_point": "Multiple-Sklerose-Kranker"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333570651", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333570651", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333570651", "source": "GND"}], "authorized_access_point": "Weibliche Multiple-Sklerose-Kranke"} 1 +2024-09-11 09:10:01.681717 2024-09-11 09:10:01.681722 ca16b732-bcba-46b4-8ef0-b0c529f13973 {"md5": "c55848eea0317be2213cc6f65359b14b", "pid": "1333353421", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Limousinisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333353421", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333353421", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333353421", "source": "GND"}], "authorized_access_point": "Mundart Limousinisch (Saint-Junien)"} 1 +2024-09-11 09:10:01.741227 2024-09-11 09:10:01.741231 5fa12d1b-1022-4e51-a655-a04775b9563d {"md5": "f88030001cf39672f1efb9d05be44b64", "pid": "1333321201", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Micropayment&oldid=239826416"], "noteType": "dataSource"}, {"label": ["Zahlungsverfahren für geringe Summen, vor allem beim Kauf digitaler Güter."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zahlungsverfahren"}, {"authorized_access_point": "Elektronischer Zahlungsverkehr"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333321201", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333321201", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333321201", "source": "GND"}], "variant_access_point": ["Mikrozahlung", "Micro payment", "Micro transaction", "Mikrotransaktion"], "authorized_access_point": "Micropayment"} 1 +2024-09-11 09:10:01.797129 2024-09-11 09:10:01.797134 e1486436-36de-4021-8f89-cb2de45797ce {"md5": "c85cad9e477f9097af6e1d32f2dbd7a5", "pid": "1333260148", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bambusflöte"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334653623", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16961839", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb169618398"}], "authorized_access_point": "Komabue"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333260148", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333260148", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333260148", "source": "GND"}], "authorized_access_point": "Komabue"} 1 +2024-09-11 09:10:01.857675 2024-09-11 09:10:01.857679 3ae28f8b-79cb-4ff5-bef1-a82cb3929677 {"md5": "e87355141ab51ba35b9dccc03172b4f4", "pid": "1333126433", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Auszeichnungsschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333126433", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333126433", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333126433", "source": "GND"}], "authorized_access_point": "Wolfram (Druckschrift)"} 1 +2024-09-11 09:10:01.911784 2024-09-11 09:10:01.911788 b2707a24-5882-4621-a7a4-a9a6eb8ae5a5 {"md5": "15947e75c26519c82935eb8bef30387b", "pid": "1333115482", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Spanisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333115482", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333115482", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333115482", "source": "GND"}], "authorized_access_point": "Mundart Spanisch (Provinz Salamanca)"} 1 +2024-09-11 09:10:01.966097 2024-09-11 09:10:01.9661 c9fce23d-b257-4089-95dd-d28e96594f80 {"md5": "31973cacffd21a501ea9f858825e3ae1", "pid": "1332860451", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Tier%C3%A4rztliche_Hausapotheke&oldid=223225029"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hausapotheke"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332860451", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332860451", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332860451", "source": "GND"}], "authorized_access_point": "Tierärztliche Hausapotheke"} 1 +2024-09-11 09:10:02.022112 2024-09-11 09:10:02.022115 418b29c8-b7ed-4511-98a5-56b3c4b3434d {"md5": "7b498fa2071fdf08e9a5c24585e10bfe", "pid": "1332767702", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Aimol_language&oldid=1218551092"], "noteType": "dataSource"}, {"label": ["Sprache der Aimol im indischen Bundesstaat Maipur"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Kukisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332767702", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332767702", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332767702", "source": "GND"}], "variant_access_point": ["Aimual-Sprache"], "authorized_access_point": "Aimol-Sprache"} 1 +2024-09-11 09:10:02.077523 2024-09-11 09:10:02.077527 cb343bec-bd03-4ecb-aa20-84a5c49ba0ff {"md5": "695cf72185e672ec1794bba22fc5dc22", "pid": "1332765785", "note": [{"label": ["Glottolog - https://glottolog.org/resource/languoid/id/xava1240", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Xavante_(Sprache)&oldid=213259576"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Ge"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332765785", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332765785", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332765785", "source": "GND"}], "variant_access_point": ["Shavante-Sprache", "Chavante-Sprache", "Acua", "Akuän", "Akuen", "Akwen (Sprache)", "Chavantean", "Akwe (Sprache)"], "authorized_access_point": "Xavante-Sprache"} 1 +2024-09-11 09:10:02.131981 2024-09-11 09:10:02.131986 ba3ffaa1-3dff-4526-bac8-bf13700896b1 {"md5": "c5683fb14804525da847f6959991531a", "pid": "1332734316", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Transiente_Osteoporose&oldid=243930206", "OBV - https://permalink.obvsg.at/AC17191350"], "noteType": "dataSource"}, {"label": ["Schmerzhafte, zeitlich begrenzte Erkrankung der Hüfte (selten anderer Knochen)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Osteoporose"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332734316", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332734316", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332734316", "source": "GND"}], "variant_access_point": ["Knochenmarködem-Syndrom", "Transitorische Osteoporose", "Knochenmarködemsyndrom", "KMÖS"], "authorized_access_point": "Transiente Osteoporose"} 1 +2024-09-11 09:10:02.702404 2024-09-11 09:10:02.702408 191aa2b8-5f14-44d6-9dd1-444d564073a3 {"md5": "86307d5a520274f0975cded5f402a7ef", "pid": "1330988728", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Hochalemannisch"}, {"authorized_access_point": "Schweizerdeutsch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330988728", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330988728", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330988728", "source": "GND"}], "authorized_access_point": "Mundart Hochalemannisch (Steckborn)"} 1 +2024-09-11 09:10:02.187224 2024-09-11 09:10:02.187231 a932f3cd-876b-40f8-b210-6b8cf7f16901 {"md5": "e396ac6564b6667ec8566c75f5d13ec5", "pid": "1332672701", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Azadi"], "noteType": "dataSource"}, {"label": ["Kurdische Widerstandsorganisation gegen die Abschaffung des Kalifats"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Politische Gruppe"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332672701", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332672701", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332672701", "source": "GND"}], "variant_access_point": ["Civata Azadiya Kurd", "Civata Xweseriya Kurd", "Kürt İstiklâl Komitesi", "Azadî örgütü"], "authorized_access_point": "Azadî"} 1 +2024-09-11 09:10:02.24541 2024-09-11 09:10:02.245413 1aa27db2-cb7b-43c4-85b7-023edb8209ef {"md5": "c88ef51c01c22912d8b52d5c06521274", "pid": "1332661327", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Soldatin"}], "related": [{"authorized_access_point": "Grenzsoldat"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332661327", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332661327", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332661327", "source": "GND"}], "authorized_access_point": "Grenzsoldatin"} 1 +2024-09-11 09:10:02.299871 2024-09-11 09:10:02.299876 0550d609-586f-41da-b7be-77d4ef8522b2 {"md5": "8690c724a7560578aa7e24511bf8c2f3", "pid": "1332426336", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Einwanderin"}, {"authorized_access_point": "Amerikanerin"}], "related": [{"authorized_access_point": "Amerikanischer Einwanderer"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332426336", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332426336", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332426336", "source": "GND"}], "variant_access_point": ["US-Amerikanische Einwanderin"], "authorized_access_point": "Amerikanische Einwanderin"} 1 +2024-09-11 09:10:02.354662 2024-09-11 09:10:02.354664 fa7d27b7-a6b1-4f3c-add3-5de10cb47a38 {"md5": "ca4cd5b587de87a5a10791128910c750", "pid": "1332101607", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Paunaka&oldid=220820255", "Terhart, Lena: A grammar of Paunaka. 2024 - https://refubium.fu-berlin.de/handle/fub188/42745"], "noteType": "dataSource"}, {"label": ["Stark bedrohte Sprache gesprochen in der bolivianischen Region Chiquitanía"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Arawak-Sprachen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332101607", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332101607", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332101607", "source": "GND"}], "variant_access_point": ["Paunaca", "Pauneca", "Pauna"], "authorized_access_point": "Paunaka"} 1 +2024-09-11 09:10:02.409009 2024-09-11 09:10:02.409011 e1d99d40-879c-4b34-a471-a85c6250ccf4 {"md5": "1491d475814c2ab37162e5a2274b71c5", "pid": "1331864321", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Schweizerdeutsch"}, {"authorized_access_point": "Hochalemannisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331864321", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331864321", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331864321", "source": "GND"}], "authorized_access_point": "Mundart Hochalemannisch (Balgach)"} 1 +2024-09-11 09:10:02.464429 2024-09-11 09:10:02.464435 eed56d4e-c9a2-4264-830c-3a469edbfe6f {"md5": "e2547a00ee53470eca5d3b128d3f46b1", "pid": "1331496861", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Walliserdeutsch"}, {"authorized_access_point": "Schweizerdeutsch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331496861", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331496861", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331496861", "source": "GND"}], "variant_access_point": ["Avner Mundart", "Oovnrtüütsch"], "authorized_access_point": "Mundart Walliserdeutsch (Avers)"} 1 +2024-09-11 09:10:02.536034 2024-09-11 09:10:02.536039 70a1a71e-c83e-4b6c-9d93-5331f7d935d2 {"md5": "a6a264114b788a05c2f7bec3bd7b8e0a", "pid": "1331098114", "note": [{"label": ["Wikipedia - https://ro.wikipedia.org/w/index.php?title=Grupul_Infra-Noir&oldid=15774257"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schriftstellergruppe"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331098114", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331098114", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331098114", "source": "GND"}], "variant_access_point": ["Grupul Infra Noir", "Grupul Infranoir"], "authorized_access_point": "Grupul Infra-Noir"} 1 +2024-09-11 09:10:02.587847 2024-09-11 09:10:02.58785 785cdaed-4dff-4388-968d-32c521a6f2fa {"md5": "1e93e217cde9ded6884cd9016ab9ed07", "pid": "133099051X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336047755", "source": "GND"}, {"type": "bf:Nbn", "value": "C000635046", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/C000635046"}], "authorized_access_point": "Shewanella oneidensis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133099051X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133099051X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133099051X", "source": "GND"}], "authorized_access_point": "Shewanella oneidensis"} 1 +2024-09-11 09:10:02.644857 2024-09-11 09:10:02.644861 a4e683a3-ae6b-48c0-a6d7-59fb000dc66b {"md5": "406778358fbac4a8e604263ff686e119", "pid": "1330990056", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330990056", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330990056", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330990056", "source": "GND"}], "authorized_access_point": "Adlercreutzia equolifaciens"} 1 +2024-09-11 09:10:03.988832 2024-09-11 09:10:03.988836 6ed0ceaf-df34-4232-ac16-564b5e21c6a4 {"md5": "aeb50c16b4cef27dfe790a066f2104ab", "pid": "1324101318", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Sicherheitsbeauftragter"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1324101318", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1324101318", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1324101318", "source": "GND"}], "variant_access_point": ["Arbeitssicherheit"], "authorized_access_point": "Sicherheitsbeauftragte"} 1 +2024-09-11 09:10:02.760743 2024-09-11 09:10:02.760747 6e413b14-ca64-4032-a6cc-276226a23d6a {"md5": "38dad197452c5fe5cfd3bcaf86cb3579", "pid": "1330985524", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Phorbeia&oldid=240313163"], "noteType": "dataSource"}, {"label": ["Leder- oder Leinenbinden, die um den Kopf des Musikers geschlungen waren, zum Spielen von antiken Rohrblattinstrumenten, hauptsächlich von Aulousspielern genutzt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Aulet"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330985524", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330985524", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330985524", "source": "GND"}], "variant_access_point": ["Capistrum"], "authorized_access_point": "Phorbeia"} 1 +2024-09-11 09:10:02.81759 2024-09-11 09:10:02.817594 72a42020-358e-4c39-9ffb-f6bb41c9efbe {"md5": "42c5970e96a5ea99b0950623808bc792", "pid": "1330588517", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Akutes Koronarsyndrom"}, {"authorized_access_point": "Herzinfarkt"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336044314", "source": "GND"}, {"type": "bf:Nbn", "value": "D000072658", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000072658"}], "authorized_access_point": "Non-ST Elevated Myocardial Infarction"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330588517", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330588517", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330588517", "source": "GND"}], "variant_access_point": ["Akutes Koronarsyndrom ohne ST-Hebung", "NSTE-ACS", "NSTEMI", "Nicht-ST-Hebungs-Infarkt", "Nicht-ST-Hebungs-Myokardinfarkt", "Non-ST-segment elevation myocardial infarction"], "authorized_access_point": "Nicht-ST-Hebungsinfarkt"} 1 +2024-09-11 09:10:02.872209 2024-09-11 09:10:02.872212 96d39f62-c226-4084-b691-88c480060578 {"md5": "bee74d510f70e6ed7cee1d2b683e59d0", "pid": "1330408837", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Planctomyceten&oldid=243380997"], "noteType": "dataSource"}, {"label": ["Phylum innerhalb der Bakterien"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336044411", "source": "GND"}, {"type": "bf:Nbn", "value": "D000090643", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000090643"}], "authorized_access_point": "Planctomycetes"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330408837", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330408837", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330408837", "source": "GND"}], "variant_access_point": ["Planctomyceten", "Planctomycetes"], "authorized_access_point": "Planctomycetota"} 1 +2024-09-11 09:10:02.930081 2024-09-11 09:10:02.930086 044eea47-0f61-41df-ad67-6878b22c7ad8 {"md5": "2d3531f7d4e4378de1bb1c54bec48c4a", "pid": "1330360036", "note": [{"label": ["Zu verwenden für den außerschulischen Bereich, für den schulischen Bereich verwende Geschichtsunterricht."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Vermittlung"}], "related": [{"authorized_access_point": "Geschichtsunterricht"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330360036", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330360036", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330360036", "source": "GND"}], "variant_access_point": ["Geschichte"], "authorized_access_point": "Geschichtsvermittlung"} 1 +2024-09-11 09:10:02.992686 2024-09-11 09:10:02.992691 3bc0cc2b-4016-401c-acb6-b61df027fabb {"md5": "04c738504dfd4d18e3581262473669c9", "pid": "1330201647", "note": [{"label": ["INN"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Enzyminhibitor"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336044195", "source": "GND"}, {"type": "bf:Nbn", "value": "C059539", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/C059539"}], "authorized_access_point": "midostaurin"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330201647", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330201647", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330201647", "source": "GND"}], "variant_access_point": ["CAS 120685-11-2", "Rydapt"], "authorized_access_point": "Midostaurin"} 1 +2024-09-11 09:10:03.053881 2024-09-11 09:10:03.053884 49a119c7-3c88-4642-9f01-157dcef472fb {"md5": "2d4f3c93c1f6e50117bdf711149fabda", "pid": "1330126599", "note": [{"label": ["Benutzt, soweit im Ausland lebend"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ausländischer Schüler"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330126599", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330126599", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330126599", "source": "GND"}], "authorized_access_point": "Dänischer Schüler"} 1 +2024-09-11 09:10:03.113773 2024-09-11 09:10:03.113776 c3404715-4067-4214-becc-91e14403cd4b {"md5": "77fb3485dcb597539ef156220bb53d59", "pid": "132940422X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Dibenzyltoluol&oldid=240106931"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Toluolderivate"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/132940422X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)132940422X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)132940422X", "source": "GND"}], "variant_access_point": ["Dibenzylmethylbenzol", "Marlotherm SH", "DBT (Dibenzyltoluol)", "CAS 26898-17-9"], "authorized_access_point": "Dibenzyltoluol"} 1 +2024-09-11 09:10:04.055007 2024-09-11 09:10:04.055012 062bcb83-11ef-4efc-b519-04d6754ea36b {"md5": "0ab52b907a1d58fe85a6917dba6b8fb5", "pid": "1324092424", "note": [{"label": ["Personen, die bei Abwesenheit d. Eigentümers das Haus hüten"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Haushüter"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1324092424", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1324092424", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1324092424", "source": "GND"}], "authorized_access_point": "Haushüterin"} 1 +2024-09-11 09:10:03.176385 2024-09-11 09:10:03.17639 a035d590-0493-4c7f-9cd4-ed7e0274e44b {"md5": "8b5bda3c267907dcdba2dbba70a3c64b", "pid": "1329376129", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Prostataspezifisches_Membranantigen&oldid=214439179"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tumormarker"}, {"authorized_access_point": "Membranproteine"}, {"authorized_access_point": "Glykoproteine"}, {"authorized_access_point": "Carboxypeptidasen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1329376129", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1329376129", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1329376129", "source": "GND"}], "variant_access_point": ["PSMA", "Prostata-Spezifisches-Membran-Antigen", "CAS 9074-87-7", "Glutamatcarboxypeptidase II", "EC 3.4.17.21", "Prostate-specific membrane antigen"], "authorized_access_point": "Prostataspezifisches Membranantigen"} 1 +2024-09-11 09:10:03.232954 2024-09-11 09:10:03.23296 61b96039-d42b-4968-9e16-094d1226dc09 {"md5": "2c8342d880599b57aa8c09007d6aa211", "pid": "132935639X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Hochstapler-Syndrom&oldid=238870181"], "noteType": "dataSource"}, {"label": ["Psychologisches Phänomen, bei dem Betroffene von massiven Selbstzweifeln hinsichtlich eigener Fähigkeiten, Leistungen und Erfolge geplagt werden und sich selbst für Hochstapler halten."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Verzerrte Kognition"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133604392X", "source": "GND"}, {"type": "bf:Nbn", "value": "C000711547", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/C000711547"}], "authorized_access_point": "imposter syndrome"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/132935639X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)132935639X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)132935639X", "source": "GND"}], "variant_access_point": ["Impostor-Syndrom", "Impostor-Phänomen"], "authorized_access_point": "Hochstapler-Syndrom"} 1 +2024-09-11 09:10:03.288661 2024-09-11 09:10:03.288667 dfa1e5c9-37d3-48b3-bc63-750938b45916 {"md5": "08bee7e0ed51baafbe5dcac1beab454b", "pid": "1329174003", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Amerikanisches Englisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1329174003", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1329174003", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1329174003", "source": "GND"}], "variant_access_point": ["Missouri English"], "authorized_access_point": "Mundart Amerikanisches Englisch (Missouri-Gebiet)"} 1 +2024-09-11 09:10:03.350502 2024-09-11 09:10:03.350504 167aa819-1f8d-4598-8a91-e257468b3c06 {"md5": "1c15d29c9d56297a30de12cd1026d826", "pid": "1329171675", "note": [{"label": ["Brockhaus - https://brockhaus.de/ecs/enzy/article/djizya-islam", "Wikipedia - https://de.wikipedia.org/wiki/Dschizya"], "noteType": "dataSource"}, {"label": ["Kopfsteuer für nichtmuslimische Schutzbefohlene (Dhimmi) unter islamischer Herrschaft"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Steuer"}], "related": [{"authorized_access_point": "Ḏẖimmī"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1329171675", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1329171675", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1329171675", "source": "GND"}], "variant_access_point": ["Dschizya", "Ǧizya", "Cizye", "Jizya", "Jizyah"], "authorized_access_point": "Djizya"} 1 +2024-09-11 09:10:03.416333 2024-09-11 09:10:03.416337 022192d2-8399-4d68-b955-60a93b80a6e1 {"md5": "06e47d979c4fc96cc5766326c436001a", "pid": "1328712400", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/wiki/Penicillium_citrinum"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336044381", "source": "GND"}, {"type": "bf:Nbn", "value": "C000698383", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/C000698383"}], "authorized_access_point": "Penicillium citrinum"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1328712400", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1328712400", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1328712400", "source": "GND"}], "authorized_access_point": "Penicillium citrinum"} 1 +2024-09-11 09:10:03.473296 2024-09-11 09:10:03.473299 c81e892e-b40b-4ba4-bb15-4bc79521ed75 {"md5": "d5b7b382e9bb90d089a7fa82fba0c328", "pid": "1327991349", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Berbice-Niederl%C3%A4ndisch&oldid=208367674"], "noteType": "dataSource"}, {"label": ["Niederländischbasierte Kreolsprache, die etwa bis zur Mitte des 20. Jahrhunderts in Guyana gesprochen wurde"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Kreolische Sprachen"}, {"authorized_access_point": "Niederländisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1327991349", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1327991349", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1327991349", "source": "GND"}], "variant_access_point": ["Berbice-Nederlands", "Berbice Dutch Creole", "Berbice Creole Dutch", "Berbice Dutch", "Berbice (Sprache)", "Berbice-Kreolisch"], "authorized_access_point": "Berbice-Niederländisch"} 1 +2024-09-11 09:10:03.527046 2024-09-11 09:10:03.52705 f7ddf285-c10d-4790-a7e5-20d884a14de7 {"md5": "a7856def5dc055dab42ccba4fc4733d4", "pid": "1327910268", "note": [{"label": ["Seemännin der Handelsschifffahrt mit mehrjähriger Ausbildung (Berufsbezeichnung) oder Soldatin des Dienstgrades Matrose"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Weiblicher Seemann"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1327910268", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1327910268", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1327910268", "source": "GND"}], "variant_access_point": ["Seemännin"], "authorized_access_point": "Matrosin"} 1 +2024-09-11 09:10:03.583784 2024-09-11 09:10:03.583787 0a10bb85-7365-4c17-bebc-a2195e60b36c {"md5": "7420b3ff9db3611a2807be3ac7d64680", "pid": "1327458667", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Solarpunk&oldid=237852295"], "noteType": "dataSource"}, {"label": ["Optimistisches Genre der Science-Fiction- und Phantastik-Literatur, künstlerisches Genre und Kultur- und Nachhaltigkeitsbewegung."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Literarische Bewegung"}, {"authorized_access_point": "Kulturbewegung"}, {"authorized_access_point": "Subkultur"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1327458667", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1327458667", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1327458667", "source": "GND"}], "authorized_access_point": "Solarpunk"} 1 +2024-09-11 09:10:03.642903 2024-09-11 09:10:03.642907 0e7527c7-079e-4797-9681-8c26763a51f9 {"md5": "20e552bfc3c51854b3206a9e625ac8f4", "pid": "1326349392", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Paramyxoviren"}], "related": [{"authorized_access_point": "Newcastle-Krankheit"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134301715", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85091547", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85091547"}], "authorized_access_point": "Newcastle disease virus"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134301715", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12377360", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12377360s"}], "authorized_access_point": "Virus de la maladie de Newcastle"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336044268", "source": "GND"}, {"type": "bf:Nbn", "value": "D009522", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D009522"}], "authorized_access_point": "Newcastle disease virus"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1326349392", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1326349392", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1326349392", "source": "GND"}], "variant_access_point": ["NDV", "Geflügelpestvirus (Newcastle-Krankheit)"], "authorized_access_point": "Newcastle-disease-Virus"} 1 +2024-09-11 09:10:03.696652 2024-09-11 09:10:03.696657 f130988c-eda6-41b1-9391-8e8ae750b9ec {"md5": "1363e9bb27d71b2a1e7049c46c1bec87", "pid": "132585283X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Feuchtwiesen-Kr%C3%A4utereule&oldid=240451943"], "noteType": "dataSource"}, {"label": ["Ist ein Schmetterling (Nachtfalter) aus der Familie der Eulenfalter (Noctuidae)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Eulen (Schmetterlinge)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/132585283X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)132585283X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)132585283X", "source": "GND"}], "variant_access_point": ["Rote Mooreule", "Lacanobia (Diataraxia) splendens", "Lacanobia splendens"], "authorized_access_point": "Feuchtwiesen-Kräutereule"} 1 +2024-09-11 09:10:03.750296 2024-09-11 09:10:03.750299 b3a2e988-f40c-4f29-b597-61d383250a92 {"md5": "734d5f533e31cb330dfb394c3ceccfe5", "pid": "1325643645", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Prosektor&oldid=242227867"], "noteType": "dataSource"}, {"label": ["Historische Berufsbezeichnung für den „Sezierer“ einer anatomischen Anstalt, dem die Entnahme der aus Leichen gewonnenen Präparate oblag bzw. (in größeren Krankenhäusern) historisch auch Bezeichnung für Ärzte, die zur Feststellung der Todesursache Leichen sezierten.", "Ausschließlich für historische Sachverhalte und Personen zu verwenden; ansonsten benutze \\"Anatom\\" oder \\"Pathologe\\"!"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Medizinisches Personal"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1325643645", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1325643645", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1325643645", "source": "GND"}], "variant_access_point": ["Prosector"], "authorized_access_point": "Prosektor"} 1 +2024-09-11 09:10:03.804817 2024-09-11 09:10:03.804822 02eef002-2f33-4fff-8a6f-07e2c9cbc3ab {"md5": "5d075793ed031ffb977c76a19d3ed6b5", "pid": "1325061557", "note": [{"label": ["Dichterkreis europäischer sentimentaler Lyriker des späten 18. Jh., gegr. von Robert Merry, Mitglied der Accademia Della Crusca"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schriftstellergruppe"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1325061557", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1325061557", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1325061557", "source": "GND"}], "authorized_access_point": "Della Cruscans"} 1 +2024-09-11 09:10:03.868338 2024-09-11 09:10:03.868343 b6852adf-d4b2-4c6e-8b7d-3901f18196d6 {"md5": "55ee9a41e27272f70e6e0e5ddcb818d8", "pid": "1324688629", "note": [{"label": ["NCBI-Taxonomy - https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=1051616"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Verticillium"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336050047", "source": "GND"}, {"type": "bf:Nbn", "value": "C000685650", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/C000685650"}], "authorized_access_point": "Verticillium nonalfalfae"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1324688629", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1324688629", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1324688629", "source": "GND"}], "authorized_access_point": "Verticillium nonalfalfae"} 1 +2024-09-11 09:10:03.924448 2024-09-11 09:10:03.924452 d0f50e23-b2b3-4d8d-b723-5eaa8b18f0c1 {"md5": "3afdb4968394d49abc1bf00d8997a3fa", "pid": "1324590173", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Venezianisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1324590173", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1324590173", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1324590173", "source": "GND"}], "variant_access_point": ["Dialetto fiumano"], "authorized_access_point": "Mundart Venezianisch (Rijeka)"} 1 +2024-09-11 09:10:04.115604 2024-09-11 09:10:04.115607 5f9916e9-00b6-4d13-80b9-168f2d4dbe10 {"md5": "7ce5a7eff6286594f67506e32c46f0b4", "pid": "1323913084", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Transkreation&oldid=206768584"], "noteType": "dataSource"}, {"label": ["Bei der Transkreation wird eine Übertragung des Textes in den kulturellen Kontext des Empfängers angestrebt, so dass sich das Ergebnis im Gegensatz zu einer sich nah am Ursprungstext haltenden Übersetzung relativ weit vom Ursprungstext entfernen kann."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Übersetzung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1323913084", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1323913084", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1323913084", "source": "GND"}], "variant_access_point": ["Transcreation"], "authorized_access_point": "Transkreation"} 1 +2024-09-11 09:10:04.173976 2024-09-11 09:10:04.17398 b33716fc-4916-4662-b67a-e3312f81271f {"md5": "08c751a9db9f8ade1f5100d54e3d03dc", "pid": "1323835148", "note": [{"label": ["Internet - https://bacdive-dsmz-de.translate.goog/strain/11940?_x_tr_sl=en&_x_tr_tl=de&_x_tr_hl=de&_x_tr_pto=sc"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Planctomycetaceae"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336044586", "source": "GND"}, {"type": "bf:Nbn", "value": "C000644441", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/C000644441"}], "authorized_access_point": "Planctopirus limnophila"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1323835148", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1323835148", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1323835148", "source": "GND"}], "variant_access_point": ["Planctopirus limnophilus", "Planctomyces limnophilus"], "authorized_access_point": "Planctopirus limnophila"} 1 +2024-09-11 09:10:04.227374 2024-09-11 09:10:04.22738 8acc155c-0361-461c-a46e-437f9ee25f32 {"md5": "1a7d99c9c582784c0e13e18a76eadc5c", "pid": "1323832262", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Ostindonesische Sprachen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1323832262", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1323832262", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1323832262", "source": "GND"}], "variant_access_point": ["Lote", "Rote", "Rotinesisch", "Rotti", "Rottinesisch"], "authorized_access_point": "Roti"} 1 +2024-09-11 09:10:04.284248 2024-09-11 09:10:04.284255 a6bbffe5-00ae-4341-a45c-9cdaed7e144b {"md5": "ec21d1d7010dca8a4458021f740cf049", "pid": "1323804129", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/wiki/Yuin%E2%80%93Kuric_languages"], "noteType": "dataSource"}, {"label": ["Eine Sprache der Aborigines in Neusüdwales"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Pama-Nyunganisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1323804129", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1323804129", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1323804129", "source": "GND"}], "variant_access_point": ["Durga (Sprache)", "Thoorga", "Thurga-Sprache"], "authorized_access_point": "Dhurga"} 1 +2024-09-11 09:10:04.336593 2024-09-11 09:10:04.336597 b11696e6-11a3-41a3-9801-5b8f51153137 {"md5": "408906e183c2481ab99afe8be018af75", "pid": "1323769536", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung und Wortart, z.B. Hebräisch ; Verb ; zr'"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1323769536", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1323769536", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1323769536", "source": "GND"}], "variant_access_point": ["זרע"], "authorized_access_point": "zrʿ"} 1 +2024-09-11 09:10:04.389627 2024-09-11 09:10:04.38963 10d7bb09-9a9c-4e33-acfd-78dc04e14822 {"md5": "b02ddc9eda9c9d2012a5407881a7c6da", "pid": "1323705910", "note": [{"label": ["Militärmusik der Janitscharen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Militärmusik"}, {"authorized_access_point": "Marsch (Musik)"}], "related": [{"authorized_access_point": "Janitscharen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1323705910", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1323705910", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1323705910", "source": "GND"}], "variant_access_point": ["Türkische Musik", "Janissary Music", "Turkish Music", "Musique des Janissaires", "Musique Turque", "Banda"], "authorized_access_point": "Janitscharenmusik"} 1 +2024-09-11 09:10:04.444686 2024-09-11 09:10:04.44469 202b31e1-cb27-4525-90c7-ffdc6e941491 {"md5": "2a4f526588e675dfce4e2f67467a63d0", "pid": "1323590102", "note": [{"label": ["Von Augustinus stammende Bezeichnung einer universalen Kirche vor Christus und außerhalb ihrer Grenzen, die aufgrund der universalen Heilsmittlerschaft Christi alle Gerechten von Abel an in der Heilsgemeinde Gottes versammelt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ekklesiologie"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1323590102", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1323590102", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1323590102", "source": "GND"}], "authorized_access_point": "Ecclesia ab Abel"} 1 +2024-09-11 09:10:04.514431 2024-09-11 09:10:04.514435 55290cc8-10dd-4361-af60-6663c53ab7a3 {"md5": "6039d607c03b4e5dba551bfc148dd1be", "pid": "1323303669", "note": [{"label": ["Eine der beiden Xiangyu-Dialektgruppen (NW-Hunan)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Xiangyu"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1323303669", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1323303669", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1323303669", "source": "GND"}], "variant_access_point": ["Hsin Hsiang-yü", "Pei-p'ien Hsiang-yü", "Beipian Xiangyu"], "authorized_access_point": "Xin Xiangyu"} 1 +2024-09-11 09:10:08.13106 2024-09-11 09:10:08.131066 fd65bac2-d704-44ba-8d74-127746d23c60 {"md5": "401ce00d5c9342e485256f0e61df4df0", "pid": "1272429997", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1272429997", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1272429997", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1272429997", "source": "GND"}], "authorized_access_point": "Alarm (Druckschrift)"} 1 +2024-09-11 09:10:04.569289 2024-09-11 09:10:04.569292 f4089413-4783-422c-9b04-75f97fdce573 {"md5": "667b1d786daabdcadd52c352fb87b651", "pid": "1323303103", "note": [{"label": ["Eine der beiden Xiangyu-Dialektgruppen (Süd-Hunan)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Xiangyu"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1323303103", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1323303103", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1323303103", "source": "GND"}], "variant_access_point": ["Lao Hsiang-yü", "Nanpian Xiangyu", "Nan-p'ien Hsiang-yü"], "authorized_access_point": "Lao Xiangyu"} 1 +2024-09-11 09:10:04.624385 2024-09-11 09:10:04.624391 ef3a5f65-0fa2-4bac-942d-4ee56e8ef499 {"md5": "5ed62353dfe29ea629048104134bb123", "pid": "1323069380", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Caribbean_Hindustani&oldid=1211330438", "Wikipedia - https://nl.wikipedia.org/w/index.php?title=Cara%C3%AFbisch-Hindoestani&oldid=65241041"], "noteType": "dataSource"}, {"label": ["Indoarische Sprache, die in Surinam gesprochen wird. Enthält Anteile von Bhojpuri und Bihari."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Bihari"}, {"authorized_access_point": "Bhojpurī"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1323069380", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1323069380", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1323069380", "source": "GND"}], "variant_access_point": ["Sarname Hindustani", "Aili-Gaili", "Surinam-Hindustani", "Caribbean Hindi", "Sarnami", "Sarnami Hindoestani", "Sarnami Hindustani", "Surinamse Hindustani", "Surinamisches Hindustani", "Surinaams Hindostaans", "Caraïbisch-Hindoestani", "Hindoustani caribéen"], "authorized_access_point": "Sarnami-Hindi"} 1 +2024-09-11 09:10:04.680747 2024-09-11 09:10:04.68075 6158201c-836c-4711-938b-277479a6c1bf {"md5": "b8a283afabcf247984b0967f537739b6", "pid": "1322662401", "note": [{"label": ["Entgegen den Regelungen in RSWK §330a 1.a, 1.b und 2 wird dieses Ethnografikum auch zur Beschlagwortung von Dokumenten verwendet, die die Situation bosniakischer Frauen in Bosnien-Herzegowina behandeln."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Bosniaken (Volk)"}, {"authorized_access_point": "Muslimin"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1322662401", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1322662401", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1322662401", "source": "GND"}], "variant_access_point": ["Bosnische Frau"], "authorized_access_point": "Bosniakin"} 1 +2024-09-11 09:10:04.738468 2024-09-11 09:10:04.738472 cb981650-3af7-4a71-bdcd-7b8b05b192e7 {"md5": "8a5baba491f34ac2108d4f718d91382e", "pid": "1322661030", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Bosniaken&oldid=242002094"], "noteType": "dataSource"}, {"label": ["Bosniaken (serbokroatisch Бошњаци Bošnjaci, Sg.: Бошњак Bošnjak, auch Bosnische Muslime) sind eine südslawische Ethnie mit etwa drei Millionen Angehörigen, davon über zwei Millionen primär in Bosnien und Herzegowina, aber auch in Serbien und Montenegro, Kosovo und Albanien. Ethnische Säuberungen während des Bosnienkrieges 1992-1995 haben ihre ethnische Struktur und Verteilung in Bosnien und Herzegowina sehr verändert. Über eine Million ausgewanderter oder während des Bosnienkrieges geflüchteter Bosniaken leben heute verteilt auf der ganzen Welt.", "Entgegen den Regelungen in RSWK §330a 1.a, 1.b und 2 wird dieses Ethnografikum auch zur Beschlagwortung von Dokumenten verwendet, die die Situation der Bosniaken in Bosnien-Herzegowina behandeln."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Muslim"}], "related": [{"authorized_access_point": "Bosniakin"}, {"authorized_access_point": "Südslawen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1322661030", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1322661030", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1322661030", "source": "GND"}], "variant_access_point": ["Bosnjaken", "Bošnjaci", "Bošnjak", "Bosnische Muslime"], "authorized_access_point": "Bosniaken (Volk)"} 1 +2024-09-11 09:10:04.793639 2024-09-11 09:10:04.793642 47a38df7-865e-4e92-936a-ac024ec03593 {"md5": "7e382e47b59f9d84910a80b6985332aa", "pid": "1322508801", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung und Wortart, z.B. Hebräisch ; Adjektiv ; yph"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1322508801", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1322508801", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1322508801", "source": "GND"}], "variant_access_point": ["jph", "יפה"], "authorized_access_point": "yph"} 1 +2024-09-11 09:10:04.84829 2024-09-11 09:10:04.848293 78572590-72c1-4e80-b851-1b5355b68d36 {"md5": "30eb9434d5e96f72073d230940103c71", "pid": "1322264716", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung (hier: Hebräisch) und Wortart"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1322264716", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1322264716", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1322264716", "source": "GND"}], "variant_access_point": ["zôlēlā", "זוֹלְלָה"], "authorized_access_point": "zôlēlāh"} 1 +2024-09-11 09:10:04.903067 2024-09-11 09:10:04.903071 95c5cb25-c35a-4c00-8e06-964848adbeac {"md5": "da83caf2a44b1f496565bdb8590d64c7", "pid": "1321257988", "note": [{"label": ["Wikipedia, unter der gängigen falschen Übersetzung \\"normalisierter Fluss\\" (statt \\"normierter Fluss)\\" - https://de.wikipedia.org/w/index.php?title=Normalisierter_Fluss&oldid=238188256"], "noteType": "dataSource"}, {"label": ["Modell zur statistischen Klassifikation, das auf einem Variablenwechsel zur Berechnung der Wahrscheinlichkeitsdichte beruht"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Stochastisches Modell"}], "related": [{"authorized_access_point": "Maschinelles Lernen"}, {"authorized_access_point": "Dichte (Stochastik)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1321257988", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1321257988", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1321257988", "source": "GND"}], "variant_access_point": ["Flow-based generative model", "Normalizing Flow"], "authorized_access_point": "Flussbasiertes generatives Modell"} 1 +2024-09-11 09:10:04.956696 2024-09-11 09:10:04.956727 54e36f6c-5c95-4329-8a4d-d9fb5f8aacaa {"md5": "c1ef82a7f238f73e95d48596f5b22b50", "pid": "1321125623", "note": [{"label": ["Kombiniere mit Sprachbezeichnung und Wortart, z. B. SWW s Französisch ; s Substantiv ; s chevalier"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1321125623", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1321125623", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1321125623", "source": "GND"}], "authorized_access_point": "chevalier"} 1 +2024-09-11 09:10:05.01076 2024-09-11 09:10:05.010764 8ff9addc-4c60-4414-a748-90bf0543208b {"md5": "9d6f36fb763e02b2afab8f9d9ff85618", "pid": "1321125577", "note": [{"label": ["Kombiniere mit Sprachbezeichnung und Wortart, z. B. SWW s Französisch ; s Substantiv ; s baron (Wort)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1321125577", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1321125577", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1321125577", "source": "GND"}], "authorized_access_point": "baron (Wort)"} 1 +2024-09-11 09:10:05.072351 2024-09-11 09:10:05.072356 ae13450c-57aa-463c-8471-fa549bef9507 {"md5": "1b897eefea3bd3bcb8d2dcc819b0fb5d", "pid": "1319483321", "note": [{"label": ["OBV - https://permalink.obvsg.at/AC17027232", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Plasmamedizin&oldid=225082653"], "noteType": "dataSource"}, {"label": ["Anwendung von kalten physikalischen Plasmen für therapeutische Zwecke", "Nicht zu verwenden für die (vor allem kosmetische) Behandlung mit Blutplasma!"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Therapie"}], "related": [{"authorized_access_point": "Kaltes Plasma"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1319483321", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1319483321", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1319483321", "source": "GND"}], "variant_access_point": ["Plasmabehandlung", "Plasmatherapie"], "authorized_access_point": "Plasmamedizin"} 1 +2024-09-11 09:10:05.163587 2024-09-11 09:10:05.163592 c4542680-2909-4baa-b63a-c24d67f07c67 {"md5": "0e87a434cfc0725f654f18d206a314df", "pid": "1319390072", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Französisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1319390072", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1319390072", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1319390072", "source": "GND"}], "authorized_access_point": "Mundart Französisch (Beaune-la-Rolande)"} 1 +2024-09-11 09:10:05.21951 2024-09-11 09:10:05.219515 6cb0a182-8aa0-46af-b677-b7d4a4e44627 {"md5": "c8c9a0ae09c1402415bfec4a4f0c3963", "pid": "1318715598", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung und hier nicht permutierender Wortart, z. B. Hebräisch / Partikel / ʾal"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1318715598", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1318715598", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1318715598", "source": "GND"}], "authorized_access_point": "ʾal"} 1 +2024-09-11 09:10:05.274839 2024-09-11 09:10:05.274844 cb61a407-1f40-4980-85e9-b3fcf1a20a58 {"md5": "da2f47e104ae1cabe2beb51bfd4e8375", "pid": "1318430968", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Hochalemannisch"}, {"authorized_access_point": "Schweizerdeutsch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1318430968", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1318430968", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1318430968", "source": "GND"}], "authorized_access_point": "Mundart Hochalemannisch (Tuggen)"} 1 +2024-09-11 09:10:05.334765 2024-09-11 09:10:05.334771 2d80578b-daa6-4374-8483-62a75bd35c1b {"md5": "1039e6af2c05451ffba9edeaf4b4c4da", "pid": "131634410X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Else-Lasker-Sch%C3%BCler-Gesellschaft&oldid=240984809#Else-Lasker-Sch%C3%BCler-Lyrikpreis"], "noteType": "dataSource"}, {"label": ["bisher vergeben in den Jahren 1994, 1996, 2016, 2018 und 2022"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Literaturpreis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/131634410X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)131634410X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)131634410X", "source": "GND"}], "variant_access_point": ["Else Lasker-Schüler-Lyrikpreis", "Else-Lasker-Schüler-Preis für Lyrik", "Förderpreis des Else-Lasker-Schüler-Lyrikpreises", "Else-Lasker-Schüler-Förderpreis"], "authorized_access_point": "Else-Lasker-Schüler-Lyrikpreis"} 1 +2024-09-11 09:10:05.389831 2024-09-11 09:10:05.389834 b6cc822b-3376-4bdf-aeea-f596a9ed22fd {"md5": "28ec5fa68b71f4eb31d8ce1932672dbb", "pid": "1315679264", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Oskar_Pastior&oldid=240480140#Oskar-Pastior-Stiftung_und_Oskar-Pastior-Preis"], "noteType": "dataSource"}, {"label": ["Literaturpreis für experimentelle Lyrik"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Literaturpreis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1315679264", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1315679264", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1315679264", "source": "GND"}], "variant_access_point": ["Oskar Pastior Preis"], "authorized_access_point": "Oskar-Pastior-Preis"} 1 +2024-09-11 09:10:05.447187 2024-09-11 09:10:05.44719 ad56fcff-8d10-487d-b5a0-d681ce637e7a {"md5": "e054f042186db1bceb09d705343ccce8", "pid": "1315456125", "note": [{"label": ["Das Kollegium der Dendrophori gehörte zu einem hohen Feiertag des Kybelekults und hatte die Aufgabe, die heilige Kiefer zu fällen und zum Bildnis des Attis zu bringen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Priesterkollegium"}], "related": [{"authorized_access_point": "Kybelekult"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1315456125", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1315456125", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1315456125", "source": "GND"}], "variant_access_point": ["Dendrophori"], "authorized_access_point": "Dendrophoroi"} 1 +2024-09-11 09:10:05.504205 2024-09-11 09:10:05.50423 c7f7715e-1cbb-4c1c-a066-995d0ad2d64d {"md5": "b593bbb848f1e663724e8d8ce7fe27d6", "pid": "1315226715", "note": [{"label": ["gem. Tagliavini (S. 344) wird in den Lanzo-Tälern eine frankoprovenzalische Mundart gesprochen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Frankoprovenzalisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1315226715", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1315226715", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1315226715", "source": "GND"}], "variant_access_point": ["Mundart Frankoprovenzalisch (Bàrmes)"], "authorized_access_point": "Mundart Frankoprovenzalisch (Balme)"} 1 +2024-09-11 09:10:05.570134 2024-09-11 09:10:05.570139 fdedeeb7-bf1b-4818-bc2d-e663a9798061 {"md5": "f65f6d368952764deee4044ff753aea9", "pid": "1315045133", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Buyruk&oldid=229267516"], "noteType": "dataSource"}, {"label": ["Sammlung von alevitischen Glaubensinhalten, Rezitationsvorschriften sowie moralischen Ermahnungen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Religiöse Literatur"}], "related": [{"authorized_access_point": "Aleviten"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1315045133", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1315045133", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1315045133", "source": "GND"}], "authorized_access_point": "Buyruk"} 1 +2024-09-11 09:10:05.636439 2024-09-11 09:10:05.636443 327af292-4d41-42e6-94a4-dd5e7a21cb4a {"md5": "7c18d7c186467b5c92853b2a0afaa17d", "pid": "131453260X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Magister_equitum&oldid=236888767"], "noteType": "dataSource"}, {"label": ["In der römischen Republik der vom Diktator (ursprünglich Magister Populi) ernannte Befehlshaber der Reiterei; In der römischen Kaiserzeit einer der Magistri Militum (Magister)."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Magistrat"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/131453260X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)131453260X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)131453260X", "source": "GND"}], "authorized_access_point": "Magister Equitum"} 1 +2024-09-11 09:10:05.70858 2024-09-11 09:10:05.708586 aac6bf41-31f3-4958-aa6b-7ddcd20a0ba8 {"md5": "b87a93b6834cc45d0c6eb4f54ce485e5", "pid": "1314347403", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Proteste_im_Irak_2019/2020&oldid=245262844"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Aufstand"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1314347403", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1314347403", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1314347403", "source": "GND"}], "variant_access_point": ["Ṯaurat Tišrīn", "Thawrat Tishrīn", "Tishrīn-Aufstand", "Tishreen-Revolution", "Tishreen Movement", "October Protest Movement", "Oktoberrevolution (2019-2020)", "ثورة تشرين", "الانتفاضة التشرينية"], "authorized_access_point": "Proteste im Irak"} 1 +2024-09-11 09:10:05.776813 2024-09-11 09:10:05.776818 086134cf-e953-4fa5-81de-0caa53187bab {"md5": "90e91bead1c16be0a2d0234e47e70b70", "pid": "1314019333", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Cabinentaxi&oldid=238294207"], "noteType": "dataSource"}, {"label": ["Entwicklungsprojekt des bundesdeutschen Forschungsministeriums für ein Personentransportsystem"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kabinenbahn (Nahverkehr)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1314019333", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1314019333", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1314019333", "source": "GND"}], "variant_access_point": ["CabinenTaxi", "Cabintaxi PRT System", "C-Bahn", "Kleinkabinenbahn", "Kabinentaxi"], "authorized_access_point": "Cabinentaxi"} 1 +2024-09-11 09:10:05.839718 2024-09-11 09:10:05.839721 abc96d82-61a9-42e8-a4f4-6fa4c38c57e1 {"md5": "d42acbf6bc4fb77bf813b066fbac53b2", "pid": "1312507497", "note": [{"label": ["Kombiniere mit Sprachbezeichnung und Wortart, z.B. s Griechisch ; s Substantiv ; s phōtistērion"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1312507497", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1312507497", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1312507497", "source": "GND"}], "variant_access_point": ["φωτιστηριον"], "authorized_access_point": "phōtistērion"} 1 +2024-09-11 09:10:05.894789 2024-09-11 09:10:05.894794 a4aa8005-6625-4cb4-92e3-ee0a625a9326 {"md5": "5ff6cb949b4258165c6d42ce6fa86746", "pid": "1312506059", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung und Wortart, z.B. Griechisch / Verb / poiein"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1312506059", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1312506059", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1312506059", "source": "GND"}], "variant_access_point": ["ποιειν"], "authorized_access_point": "poiein"} 1 +2024-09-11 09:10:05.950389 2024-09-11 09:10:05.950392 dd7eaa08-b516-4dd6-9a24-e77700586149 {"md5": "71234a3b92a9920779e3d78fa70aba26", "pid": "1311262989", "note": [{"label": ["Gehört zu den bodischen Sprachen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Tibeto-Himalaja-Sprachen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1311262989", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1311262989", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1311262989", "source": "GND"}], "variant_access_point": ["Galle Gurung", "Ghale Gurung"], "authorized_access_point": "Ghale"} 1 +2024-09-11 09:10:08.185332 2024-09-11 09:10:08.18534 abf085b7-183e-4f46-85de-966f2a5555c6 {"md5": "a10991cd595cd49edb5b9454ea839791", "pid": "1272339785", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1272339785", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1272339785", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1272339785", "source": "GND"}], "authorized_access_point": "Marschall (Druckschrift)"} 1 +2024-09-11 09:10:06.011393 2024-09-11 09:10:06.011399 11a9ea3e-fbaf-4c78-aa08-cd2a2dfb5f99 {"md5": "3285fbfd4c867a3f1bededb6ed636a46", "pid": "1311025847", "note": [{"label": ["Dialekt der Sprache Ghale"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Ghale"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1311025847", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1311025847", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1311025847", "source": "GND"}], "variant_access_point": ["Bhotte", "Kutang", "Kuke"], "authorized_access_point": "Kutang Ghale"} 1 +2024-09-11 09:10:06.069181 2024-09-11 09:10:06.069185 ff999835-1d76-45aa-ab4f-74c3bc05706f {"md5": "34ae3fca85d7d2c3d563830515111892", "pid": "1310673683", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Auszeichnungsschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1310673683", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1310673683", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1310673683", "source": "GND"}], "authorized_access_point": "Pharos (Druckschrift)"} 1 +2024-09-11 09:10:06.126986 2024-09-11 09:10:06.126991 a7827285-8e1d-4c5d-aa6f-9c6c99f6953f {"md5": "25bbcd4ee04e70d29ced4ea23a5d06fd", "pid": "1309822123", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Retro&oldid=242338507"], "noteType": "dataSource"}, {"label": ["Nachahmung od. Wiederbelebung von Elementen früherer Stilrichtungen in Musik, Design, Architektur, Literatur o. Ä. aus einer nostalgischen Motivation. Diese kulturelle Strömung gibt es ca. seit den 1970er Jahren, mit einer Nachahmung von Stilen ab den 1920er Jahren."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Stil"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1309822123", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1309822123", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1309822123", "source": "GND"}], "variant_access_point": ["Retro-Stil", "Vintage-Stil", "Retrowelle"], "authorized_access_point": "Retro"} 1 +2024-09-11 09:10:06.188125 2024-09-11 09:10:06.188131 741a2e99-9346-4235-a10e-e8418d722c06 {"md5": "dd04cee8b69cfd16b802adf5fcb96807", "pid": "1308550189", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Innovation"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334878129", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2005020553", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2005020553"}], "authorized_access_point": "Disruptive technologies"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334878129", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF171317510", "source": "BNF"}, {"type": "uri", "value": "https://catalogue.bnf.fr/ark:/12148/cb171317510"}], "authorized_access_point": "Technologie de rupture"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1308891393", "source": "GND"}, {"type": "bf:Nbn", "value": "30176-1", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/30176-1"}], "authorized_access_point": "Disruptive Innovation"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1308550189", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1308550189", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1308550189", "source": "GND"}], "variant_access_point": ["Disruptive Technologie", "Disruptive innovation", "Disruptive technology"], "authorized_access_point": "Disruptive Innovation"} 1 +2024-09-11 09:10:06.248226 2024-09-11 09:10:06.248231 df8e5c2c-30f0-4e49-95e4-90a26811d451 {"md5": "2f20333849d0c7f1ed6a688fd61c4da2", "pid": "1305189876", "note": [{"label": ["Wiktionary - https://en.wiktionary.org/w/index.php?title=%CE%B2%CE%BF%CE%B7%CE%B8%CE%AD%CF%89&oldid=69059160"], "noteType": "dataSource"}, {"label": ["Verknüpfe mit Sprachbezeichnung und Wortart, z.B. Griechisch / Verb / boēthéō"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1305189876", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1305189876", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1305189876", "source": "GND"}], "variant_access_point": ["βοηθέω"], "authorized_access_point": "boēthéō"} 1 +2024-09-11 09:10:06.308944 2024-09-11 09:10:06.308949 34de84c8-d5e2-46d3-ac75-c04cfa7cce9a {"md5": "8e7c22bfe3751e4d31de63f3d4e8feeb", "pid": "1304711749", "note": [{"label": ["Getreidegebinde, angefertigt zum Ende der Getreideernte anlässlich des Ernetdankfestes"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kranz"}, {"authorized_access_point": "Brauch"}], "related": [{"authorized_access_point": "Getreideernte"}, {"authorized_access_point": "Erntedankfest"}, {"authorized_access_point": "Bauernleben"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1304711749", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1304711749", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1304711749", "source": "GND"}], "variant_access_point": ["Erntekrone"], "authorized_access_point": "Erntekranz"} 1 +2024-09-11 09:10:06.371327 2024-09-11 09:10:06.371332 328ab20d-fb3b-4f61-b20a-eb171f962ecb {"md5": "8957a735790b4b95e26335a252762d9a", "pid": "1304458741", "note": [{"label": ["Homosaurus - https://homosaurus.org/v3/homoit0001229", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Queerfeindlichkeit&oldid=233532639", "Queer Lexikon - https://queer-lexikon.net/glossar/"], "noteType": "dataSource"}, {"label": ["Feindlichkeit gegenüber queeren Menschen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Vorurteil"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1304458741", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1304458741", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1304458741", "source": "GND"}], "variant_access_point": ["Queerphobie", "Queerphobia"], "authorized_access_point": "Queerfeindlichkeit"} 1 +2024-09-11 09:10:08.240201 2024-09-11 09:10:08.240205 9eb9909b-7764-4501-b543-9a07a26e7bc5 {"md5": "b191315fb7093b4cbe617727a79224de", "pid": "1272271439", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1272271439", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1272271439", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1272271439", "source": "GND"}], "authorized_access_point": "Consul (Druckschrift)"} 1 +2024-09-11 09:10:06.436523 2024-09-11 09:10:06.436528 1478786e-2192-4e5f-8ae4-acb34e235bf5 {"md5": "f5c88bcd99995174d3b5ae2943178db3", "pid": "1303066408", "note": [{"label": ["Weiterer Schriftschnitt: Lichte Motor nach Zeichnung von Karl Sommer in fünf Graden von 36 bis 72 Punkten"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Auszeichnungsschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1303066408", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1303066408", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1303066408", "source": "GND"}], "authorized_access_point": "Motor (Druckschrift)"} 1 +2024-09-11 09:10:06.493836 2024-09-11 09:10:06.493841 64607f08-c89d-4a96-9a60-ddbf0b0d709a {"md5": "3c7096bee1ed26b6a81d324126edcc41", "pid": "1302981390", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Jubiläum"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1302981390", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1302981390", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1302981390", "source": "GND"}], "variant_access_point": ["1200 Jahre Corvey 822-2022", "Tausendzweihundert Jahre Corvey", "Kloster Corvey (2022-2023)", "Corvey-Jubiläum (2022-2023)"], "authorized_access_point": "1200 Jahre Corvey"} 1 +2024-09-11 09:10:06.556564 2024-09-11 09:10:06.556569 1a9cf11e-bcb8-4324-8839-dadd23a7b310 {"md5": "ece305a2983e68fa5eded5326583d9c1", "pid": "1302782517", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Auszeichnungsschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1302782517", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1302782517", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1302782517", "source": "GND"}], "authorized_access_point": "Lux (Druckschrift)"} 1 +2024-09-11 09:10:06.615738 2024-09-11 09:10:06.615741 a9f80b90-5ab2-40ef-9eae-62b084b80137 {"md5": "1fd916224b75325b99454d30c27277b4", "pid": "1302782274", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Auszeichnungsschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1302782274", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1302782274", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1302782274", "source": "GND"}], "authorized_access_point": "Lumina (Druckschrift)"} 1 +2024-09-11 09:10:06.675837 2024-09-11 09:10:06.675841 25b5cfbc-8c9c-49ac-adaf-6e798c70bb42 {"md5": "5ab23a92fd82d975e5fc099d0230680d", "pid": "1302781162", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Auszeichnungsschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1302781162", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1302781162", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1302781162", "source": "GND"}], "authorized_access_point": "Lucina (Druckschrift)"} 1 +2024-09-11 09:10:06.735222 2024-09-11 09:10:06.735226 48cbc13a-2c57-4e31-aa25-d3ba11ef9b65 {"md5": "50c3e07a931f3762ed946e7e03475054", "pid": "1302592122", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1302592122", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1302592122", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1302592122", "source": "GND"}], "authorized_access_point": "Lautsprecher (Druckschrift)"} 1 +2024-09-11 09:10:06.804549 2024-09-11 09:10:06.804553 a6cb4914-bf9e-4312-adbd-9b9c1ed4afc7 {"md5": "ba5ea8eeb4f393ae21a0fbb78c8cc50c", "pid": "1298190746", "note": [{"label": ["Informelle Gruppe afrokreolischer Männer, die in New Orleans spiritistische Sitzungen abhielten. Die Praxis des Cercle Harmonique verband Religion und Politik, da viele Botschaften, die sie erhielten, die Rechte der Schwarzen und soziale Gleichheit forderten"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Männergruppe"}], "related": [{"authorized_access_point": "Spiritismus"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1298190746", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1298190746", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1298190746", "source": "GND"}], "authorized_access_point": "Cercle Harmonique"} 1 +2024-09-11 09:10:06.857852 2024-09-11 09:10:06.857856 51eeaa3d-459b-4ab8-a0d0-c63e356f9eaf {"md5": "0a056733edbdf44ad477782158bc710d", "pid": "1296860906", "note": [{"label": ["1905 Elfe halbfett"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Kursive"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1296860906", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1296860906", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1296860906", "source": "GND"}], "variant_access_point": ["Kunstschrift Elfe"], "authorized_access_point": "Elfe (Druckschrift)"} 1 +2024-09-11 09:10:06.913091 2024-09-11 09:10:06.913095 a99778e5-6a42-44a3-98f1-1a319d047905 {"md5": "2ae7dd7534dc8435f4f8f8b9ec280b27", "pid": "1296369811", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/wiki/Congolese_rumba", "Internet - https://www.aai.uni-hamburg.de/afrika/veranstaltungen/ausstellung/2-musik/5-rumba-lingala-kongo.html"], "noteType": "dataSource"}, {"label": ["Die Kongolesische Rumba ist eine Tanzmusik aus der Region um Brazzaville und Kinshasa und wird oft in der Sprache Lingala gesungen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tanzmusik"}], "related": [{"authorized_access_point": "Soukous"}, {"authorized_access_point": "Lingala"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1296369811", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1296369811", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1296369811", "source": "GND"}], "variant_access_point": ["Kongolesische Rumba", "Rumba Lingala", "Kongo-Rumba", "Zaire-Musik"], "authorized_access_point": "Rumba (Tanzmusik)"} 1 +2024-09-11 09:10:08.295 2024-09-11 09:10:08.295005 6f05f00c-b021-4b78-b707-63399650d9fa {"md5": "cf68a45f378e39f455b4f670e7d3feff", "pid": "1272267792", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1272267792", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1272267792", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1272267792", "source": "GND"}], "authorized_access_point": "Bibliophile Antiqua"} 1 +2024-09-11 09:10:06.974342 2024-09-11 09:10:06.974346 6a97fb5f-2c29-49f8-8894-ad053f76f6e2 {"md5": "35d8d5a57c553f86e0054ab4595ec826", "pid": "1295208512", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Sozialrendite&oldid=228032253"], "noteType": "dataSource"}, {"label": ["Ab 2002 entwickelter Ansatz zur Bewertung des gesellschaftlichen Mehrwerts durch soziale Projekte"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Return on Investment"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1295208512", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1295208512", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1295208512", "source": "GND"}], "variant_access_point": ["Social Return on Investment", "SROI"], "authorized_access_point": "Sozialrendite"} 1 +2024-09-11 09:10:07.033715 2024-09-11 09:10:07.03372 3f9ec143-4400-45ee-a4df-06bb0f64fa99 {"md5": "b5a4b96d9830aab08aba5cae3d7a63db", "pid": "1294996460", "note": [{"label": ["Duden online - https://www.duden.de/rechtschreibung/Reederin"], "noteType": "dataSource"}, {"label": ["Als Homonymenzusatz bei Personen verwende Unternehmerin"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Reeder"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1294996460", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1294996460", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1294996460", "source": "GND"}], "authorized_access_point": "Reederin"} 1 +2024-09-11 09:10:07.092546 2024-09-11 09:10:07.092551 24535f4d-d0a6-4795-80d3-6077ead9e2bf {"md5": "ea8aa466c8ec607c6f9317bf08eff60c", "pid": "1294772627", "note": [{"label": ["Internet - https://www.bpb.de/shop/zeitschriften/apuz/nigeria-2021/337820/nollywood/", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Nigerianischer_Film&oldid=234975760", "Wikipedia - https://en.wikipedia.org/wiki/Cinema_of_Nigeria"], "noteType": "dataSource"}, {"label": ["Nigeria ist inzwischen die zweitgrößte Filmnation der Welt nach Indien und vor den USA. Seit den 1970er Jahren werden in Nigeria Filme gedreht, doch erst seit den 1990er Jahren in größerem Umfang. In Anlehnung an Hollywood wird der nigerianische Film auch unter dem Namen Nollywood vermarktet. Seit 2004 kommen nigerianische Filmemacher zur Berlinale. Okechukwu Ogunjiofor gilt als \\"Erfinder\\" Nollywoods."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Filmwirtschaft"}, {"authorized_access_point": "Filmproduktion"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1294772627", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1294772627", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1294772627", "source": "GND"}], "variant_access_point": ["Nigerianischer Film", "Cinema of Nigeria"], "authorized_access_point": "Nollywood"} 1 +2024-09-11 09:10:07.154604 2024-09-11 09:10:07.15461 5e4d43d7-58f9-4c59-96f8-70f17ec30fcf {"md5": "8cc7e07e69fbcc93e4febce26d8373d8", "pid": "129400283X", "note": [{"label": ["nach antiker platonischer Auffassung Zustand der rauschhaften dichterischen Begeisterung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Enthusiasmus"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129400283X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)129400283X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)129400283X", "source": "GND"}], "authorized_access_point": "Furor poeticus"} 1 +2024-09-11 09:10:07.219643 2024-09-11 09:10:07.219649 67dace66-e84a-4fc8-82c5-c3929668696b {"md5": "f79f058a76e10f1998c7fd32d3c5ae76", "pid": "1292845384", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Allen%E2%80%93Cahn_equation&oldid=1086819347"], "noteType": "dataSource"}, {"label": ["Reaktions-Diffusionsgleichung, welche z.B. die Phasentrennung in Mehrkomponenten-Legierungen beschreibt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Reaktions-Diffusionsgleichung"}], "related": [{"authorized_access_point": "Ginzburg-Landau-Gleichung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1292845384", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1292845384", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1292845384", "source": "GND"}], "variant_access_point": ["Allen-Cahn equation"], "authorized_access_point": "Allen-Cahn-Gleichung"} 1 +2024-09-11 09:10:07.279296 2024-09-11 09:10:07.2793 f1bf39a2-3edb-47a7-b008-072159ec81f0 {"md5": "3326070cf8f3ab4cf8c8fcf426b78300", "pid": "1286766397", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung und Wortart, Z.B. Hebräisch / Substantiv / ʿāmāl"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1286766397", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1286766397", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1286766397", "source": "GND"}], "variant_access_point": ["ʿamal", "עָמָל"], "authorized_access_point": "ʿāmāl"} 1 +2024-09-11 09:10:07.340074 2024-09-11 09:10:07.340079 7ee61979-6af3-4a27-bac7-eee1d997fb33 {"md5": "884b33f3603bdccde35c2a755eaff1ba", "pid": "1286227941", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Terroranschl%C3%A4ge_am_13._November_2015_in_Paris"], "noteType": "dataSource"}, {"label": ["Die Terroranschläge in Paris am Freitag, dem 13. November 2015, waren koordinierte, islamistisch motivierte Attentate an fünf verschiedenen Orten im 10. und 11. Pariser Arrondissement sowie in der Umgebung des Stade de France im Vorort Saint-Denis."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Attentat"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1286227941", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1286227941", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1286227941", "source": "GND"}], "variant_access_point": ["Attentats du 13 novembre 2015 en France", "November 2015 Paris attacks", "13. November 2015", "Terroranschlag im Stade de France", "Terroranschlag im Bataclan-Theater"], "authorized_access_point": "Terroranschläge am 13. November 2015 in Paris"} 1 +2024-09-11 09:10:07.911331 2024-09-11 09:10:07.911337 1275294e-fb3d-4ce9-bb5b-4b7329b18f86 {"md5": "2f0555c30db9f258a8db6e86125f1fa1", "pid": "1274846765", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Triolett&oldid=204730333"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Lyrik"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1274846765", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1274846765", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1274846765", "source": "GND"}], "variant_access_point": ["Triolet"], "authorized_access_point": "Triolett"} 1 +2024-09-11 09:10:07.401201 2024-09-11 09:10:07.401206 27abd0a3-4047-4b5e-abd7-6ba4eea6ad74 {"md5": "181d55548ba953cf28d96fff278a6d2b", "pid": "1286106745", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Vajra&oldid=239624111"], "noteType": "dataSource"}, {"label": ["Ritualgerät im tibetischen Buddhismus"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kultgegenstand"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1286106745", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1286106745", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1286106745", "source": "GND"}], "variant_access_point": ["Dorje", "Donnerkeil", "Diamantzepter"], "authorized_access_point": "Vajra"} 1 +2024-09-11 09:10:07.455717 2024-09-11 09:10:07.455719 452b5178-6958-40ff-9c68-0ca982ea4aed {"md5": "b07807d6eecbc9e101b7239938e678b8", "pid": "1285304527", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Prozessionsstange"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1285304527", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1285304527", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1285304527", "source": "GND"}], "variant_access_point": ["Prozessionsstange"], "authorized_access_point": "Prozessionsstangenaufsatz"} 1 +2024-09-11 09:10:07.510963 2024-09-11 09:10:07.510967 7427c94e-f0fd-4ba8-8ff0-e7f28a85fa9d {"md5": "3228c438199297d3be5d7efd36160ded", "pid": "1284854744", "note": [{"label": ["Homepage - https://www.zollvertrag.li/"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Jubiläum"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1284854744", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1284854744", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1284854744", "source": "GND"}], "variant_access_point": ["Zollvertrag Schweiz-Liechtenstein (2023)"], "authorized_access_point": "Zollvertrag Schweiz-Liechtenstein - Jubiläum (2023)"} 1 +2024-09-11 09:10:07.568252 2024-09-11 09:10:07.568256 9864f695-513f-4098-b4a3-3f024593547a {"md5": "a593799fd2cdf271525628c85db98e09", "pid": "1284760456", "note": [{"label": ["Verwendung während eines Feueropfers zum Gießen von flüssigem Butterfett als Opfergabe in die Flammen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Löffel"}, {"authorized_access_point": "Kultgerät"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1284760456", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1284760456", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1284760456", "source": "GND"}], "variant_access_point": ["Opfer"], "authorized_access_point": "Opferlöffel"} 1 +2024-09-11 09:10:07.629507 2024-09-11 09:10:07.629509 00d0b864-147b-4598-a05b-e2f92835b6be {"md5": "87a4f923e4f269a999b35db27e0d74bf", "pid": "127990271X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Rheinromantik&oldid=228805995"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Romantik"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/127990271X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)127990271X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)127990271X", "source": "GND"}], "authorized_access_point": "Rheinromantik"} 1 +2024-09-11 09:10:07.686741 2024-09-11 09:10:07.686745 ae9456ba-2351-4b05-a41a-1f0d79ea108e {"md5": "e30775ffab03d85504e0fb47419bee5f", "pid": "1279534311", "note": [{"label": ["Jubiläumsjahr zum 200. Geburtstag des Dichters Georg Weerth"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Jubiläum"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1279534311", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1279534311", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1279534311", "source": "GND"}], "variant_access_point": ["Georg Weerth-Jahr (2022)", "200 Jahre Georg Weerth (2022)", "Weerth 200 (2022)"], "authorized_access_point": "Georg Weerth - Jubiläum (2022)"} 1 +2024-09-11 09:10:07.742271 2024-09-11 09:10:07.742275 228c90f3-b011-4a42-82d1-33e8c0ee00f4 {"md5": "2a6a0a16d1367b95fabe3349447aafd6", "pid": "1278300821", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/wiki/Saltire_Society_Literary_Awards"], "noteType": "dataSource"}, {"label": ["The Saltire Society Literary Awards are made annually by the Saltire Society. The awards seek to recognise books which are either by \\"living authors of Scottish descent or residing in Scotland,\\" or which deal with \\"the work or life of a Scot or with a Scottish question, event or situation.\\""], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Literaturpreis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1278300821", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1278300821", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1278300821", "source": "GND"}], "authorized_access_point": "Saltire Society Literary Awards"} 1 +2024-09-11 09:10:07.794525 2024-09-11 09:10:07.794528 2b24b10c-6a2e-411b-9eb2-baa6415824d9 {"md5": "9ee466dedf29d42560a2c8a59aeda99b", "pid": "1275762158", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Nullsummenspiel&oldid=226909291"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Spieltheorie"}], "related": [{"authorized_access_point": "Nullsummenspiel"}, {"authorized_access_point": "Coopetition"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1275762158", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1275762158", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1275762158", "source": "GND"}], "variant_access_point": ["Nicht-Nullsummenspiel"], "authorized_access_point": "Nichtnullsummenspiel"} 1 +2024-09-11 09:10:07.846863 2024-09-11 09:10:07.846868 d35ccf33-ad2e-4d0f-9f2d-d6ad8d773a38 {"md5": "3c27ae6ac87ba35090a903535a979339", "pid": "1275016057", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Buchfluch&oldid=222549031"], "noteType": "dataSource"}, {"label": ["Schriftlich fixierte magisch-religiös wirkende Formel, die für Diebstahl, Vernichtung oder Verfälschung von Texten und Büchern eine Verwünschung androht"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fluch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1275016057", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1275016057", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1275016057", "source": "GND"}], "variant_access_point": ["Bücherfluch"], "authorized_access_point": "Buchfluch"} 1 +2024-09-11 09:10:08.347035 2024-09-11 09:10:08.347038 ebf91008-5f9c-4d51-a12b-c2467192ea0c {"md5": "6b0984eadc1541187206d2d5b4152f64", "pid": "1272258963", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1272258963", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1272258963", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1272258963", "source": "GND"}], "authorized_access_point": "Admiral (Druckschrift)"} 1 +2024-09-11 09:10:08.403869 2024-09-11 09:10:08.403873 3c2417bf-acd0-4327-9b38-d3d24ccb508c {"md5": "b74d707bb3d720ae606a425e6ded0558", "pid": "1271905698", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1271905698", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1271905698", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1271905698", "source": "GND"}], "authorized_access_point": "Wieynck-Gotisch"} 1 +2024-09-11 09:10:08.459187 2024-09-11 09:10:08.459191 a1cc33b1-635a-416e-ab8f-0a131a7efd76 {"md5": "f5f31b8dc7e9c39d6e24843a22714630", "pid": "1271895765", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1271895765", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1271895765", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1271895765", "source": "GND"}], "authorized_access_point": "Supremo-Versalien"} 1 +2024-09-11 09:10:08.51734 2024-09-11 09:10:08.517346 7105252d-67ee-406b-80f5-4aa97b33165e {"md5": "105ca53c01f1488b39483ed1995600ad", "pid": "127188898X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/127188898X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)127188898X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)127188898X", "source": "GND"}], "authorized_access_point": "Schreibedeutsch"} 1 +2024-09-11 09:10:08.585125 2024-09-11 09:10:08.585128 d10e321a-66da-4da8-970d-5351a4e13df6 {"md5": "73346def6ef883a03ca4ca605670dcc0", "pid": "1271822776", "note": [{"label": ["Kiel-Wiki - https://www.kiel-wiki.de/index.php?title=Hof_Kroog&oldid=58147"], "noteType": "dataSource"}, {"label": ["Elmenschagener Flurbezeichnung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Flurname"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1271822776", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1271822776", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1271822776", "source": "GND"}], "authorized_access_point": "Hof Kroog"} 1 +2024-09-11 09:10:08.644413 2024-09-11 09:10:08.644417 3b067392-6e8f-49e0-b62e-d3002ffa456a {"md5": "588dd47d14e1586048a4a3e4b3eb2f1c", "pid": "1271808897", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1271808897", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1271808897", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1271808897", "source": "GND"}], "authorized_access_point": "Ne-Po"} 1 +2024-09-11 09:10:08.700801 2024-09-11 09:10:08.700805 b633478f-c487-4cf3-b250-959d55b0deb5 {"md5": "51358cb59aa0ef11d3a2ecbb97420429", "pid": "1271790165", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1271790165", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1271790165", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1271790165", "source": "GND"}], "authorized_access_point": "Kursachsen (Druckschrift)"} 1 +2024-09-11 09:10:08.75584 2024-09-11 09:10:08.755843 c9416631-ddbf-449d-a54e-8fcd54fcea7f {"md5": "6d0aa5fecd4b1a40b837b7028f56d459", "pid": "1271715899", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1271715899", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1271715899", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1271715899", "source": "GND"}], "authorized_access_point": "Energos"} 1 +2024-09-11 09:10:08.819346 2024-09-11 09:10:08.819351 e4e78b49-6382-4f14-b107-e70f4b5daeed {"md5": "b3afb04011592cdca2ffcd2ffa9f11c4", "pid": "1271381702", "note": [{"label": ["Wikipedia (engl.) - https://en.wikipedia.org/w/index.php?title=Jumli_language&oldid=1145680164"], "noteType": "dataSource"}, {"label": ["eng mit Nepali verwandt, wird hauptsächlich in der Provinz Karnali in Nepal gesprochen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Nepali"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1271381702", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1271381702", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1271381702", "source": "GND"}], "variant_access_point": ["Jumlī", "Jumleli"], "authorized_access_point": "Jumli"} 1 +2024-09-11 09:10:08.873056 2024-09-11 09:10:08.873061 e2c823f4-b6ad-4d23-96cd-bef4b6235447 {"md5": "480e539da8472d9243a49865746f4dcf", "pid": "1270556959", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Green_New_Deal&oldid=225070424"], "noteType": "dataSource"}, {"label": ["Konzept(e) zur Einleitung einer ökologischen Wende der Industriegesellschaft"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wirtschaftspolitik"}], "related": [{"authorized_access_point": "New Deal"}, {"authorized_access_point": "Wirtschaftsentwicklung"}, {"authorized_access_point": "Nachhaltigkeit"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334882894", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2020001010", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2020001010"}], "authorized_access_point": "Green New Deal"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334882894", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF180064402", "source": "BNF"}, {"type": "uri", "value": "https://catalogue.bnf.fr/ark:/12148/cb180064402"}], "authorized_access_point": "Green New Deal"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1317470362", "source": "GND"}, {"type": "bf:Nbn", "value": "30419-1", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/30419-1"}], "authorized_access_point": "Green Deal"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1270556959", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1270556959", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1270556959", "source": "GND"}], "variant_access_point": ["Green Deal", "Grüner Deal", "Der Grüne Deal"], "authorized_access_point": "Green New Deal"} 1 +2024-09-11 09:10:11.442846 2024-09-11 09:10:11.44285 5ad68220-0d5f-4d30-ad0f-0cba21d1f7c2 {"md5": "a0b4695216912f7e2470e7f24c208d73", "pid": "1177428253", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1177428253", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1177428253", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1177428253", "source": "GND"}], "variant_access_point": ["ENTPD1 Gene", "Ectonucleoside triphosphate diphosphohydrolase 1", "CD39", "SPG64", "ATPDase", "NTPDase-1"], "authorized_access_point": "Gen ENTPD1"} 1 +2024-09-11 09:10:08.932768 2024-09-11 09:10:08.932777 e3a174fa-6278-4314-9cc3-80d0fbe9539e {"md5": "dd4e64c525a6ece9ad53399924931ce5", "pid": "1268246964", "note": [{"label": ["Nur soweit außerhalb der eigenen Armee in ausländ. Einheiten dienend. Ansonsten Verknüpfungskette Australien ; Soldat"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Soldat"}], "related": [{"authorized_access_point": "Australier"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334684014", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16555302", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16555302m"}], "authorized_access_point": "Militaires australiens"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1268246964", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1268246964", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1268246964", "source": "GND"}], "authorized_access_point": "Australischer Soldat"} 1 +2024-09-11 09:10:08.994217 2024-09-11 09:10:08.994221 b5c3901f-49c1-40ae-b975-4c91f1d44e98 {"md5": "c52f1319fd2012d60fbac707545e665d", "pid": "126750370X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/126750370X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)126750370X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)126750370X", "source": "GND"}], "authorized_access_point": "Roland-Grotesk (Druckschrift)"} 1 +2024-09-11 09:10:09.049983 2024-09-11 09:10:09.049987 ad093365-38bc-475a-9a0d-32488e0240f3 {"md5": "e311563aecb9adaffb43bbc8daaad440", "pid": "1267495847", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1267495847", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1267495847", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1267495847", "source": "GND"}], "authorized_access_point": "Parcival-Antiqua"} 1 +2024-09-11 09:10:09.133336 2024-09-11 09:10:09.133342 e256b06c-9456-4efe-b7fc-3d17176c085e {"md5": "a082795ee51291a18e67c7335f261605", "pid": "1267493216", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1267493216", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1267493216", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1267493216", "source": "GND"}], "authorized_access_point": "Isabel (Druckschrift)"} 1 +2024-09-11 09:10:09.190242 2024-09-11 09:10:09.190245 976c0336-83d4-4590-b300-06844c431d30 {"md5": "ffb12e56641dba2cc13a1dc5e03aca0c", "pid": "1266330917", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung und Wortart, z. B. Griechisch ; Substantiv ; tekmērion"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1266330917", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1266330917", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1266330917", "source": "GND"}], "variant_access_point": ["τεκμήριον"], "authorized_access_point": "tekmērion"} 1 +2024-09-11 09:10:09.252418 2024-09-11 09:10:09.252424 1b53b949-e4b0-4d48-ab40-8758e2975f5b {"md5": "126386604810d20898f39851745016c2", "pid": "1265612927", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Künstler"}], "related": [{"authorized_access_point": "Streetartkünstlerin"}, {"authorized_access_point": "Streetart"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1265612927", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1265612927", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1265612927", "source": "GND"}], "variant_access_point": ["Strassenkünstler", "Streetart-Künstler"], "authorized_access_point": "Streetartkünstler"} 1 +2024-09-11 09:10:09.310552 2024-09-11 09:10:09.310556 089c924d-e9a1-4e8b-ae24-e035cc32eb74 {"md5": "32fcdef3a915749d86f61fac9d44f947", "pid": "1265218374", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=207466436"], "noteType": "dataSource"}, {"label": ["Zum Erhalt der benötigten Wassertiefe kümmerten sich Fleetenkieker seit dem 16. Jh. um die Reinhaltung der Fleete von Abfall, Schlick und Exkrementen. Ab dem 18. Jh. bis Anfang des 20. Jh. wurden so arme Leute bezeichnet, die die Fleete bei Ebbe nach verwertbarem Abfall durchsuchten. Häufig wurden Darstellungen romantisiert."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Müllwerker"}], "related": [{"authorized_access_point": "Fahrwasser"}, {"authorized_access_point": "Abfallbeseitigung"}, {"authorized_access_point": "Gewässerreinigung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1265218374", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1265218374", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1265218374", "source": "GND"}], "authorized_access_point": "Fleetenkieker"} 1 +2024-09-11 09:10:09.362991 2024-09-11 09:10:09.362996 2dd86396-c544-4066-a326-54a282c1b93d {"md5": "b01c652323ffb423f51748c90a3ed48e", "pid": "1261254937", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Font"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1261254937", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1261254937", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1261254937", "source": "GND"}], "authorized_access_point": "Bumpy (Druckschrift)"} 1 +2024-09-11 09:10:09.413509 2024-09-11 09:10:09.413511 0709ea5b-aa34-4616-9148-c189826fa747 {"md5": "8c8ed9d473535daf8389ec01f23ffb17", "pid": "1259273660", "note": [{"label": ["Protein codierendes Gen. Genprodukt FKBP Prolyl Isomerase 5; wird auch bezeichnet als EC 5.2.1.8, Rotamase, FKBP-51, Peptidylprolyl Cis-Trans Isomerase u.a."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1259273660", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1259273660", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1259273660", "source": "GND"}], "variant_access_point": ["FKBP5 Gene", "FKBP5"], "authorized_access_point": "Gen FKBP5"} 1 +2024-09-11 09:10:09.465625 2024-09-11 09:10:09.465629 62aa9497-7b95-487d-a4f7-717370a2d96d {"md5": "169dc1d220e50bd7b59cabce2537e271", "pid": "1257092030", "note": [{"label": ["Trinkgefäß aus Fayence, Glas, Steinzeug oder Silber, häufig in Form von Tieren, Stiefeln oder Fässern, das beim Trinken besondere Geschicklichkeit erfordert, weil die Flüssigkeit z.B. durch den Henkel emporsteigt; besonders im 16.–18. Jahrhundert verbreitet"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Trinkgefäß"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1257092030", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1257092030", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1257092030", "source": "GND"}], "variant_access_point": ["Vexierglas", "Scherzglas", "Vexiergefäße", "Scherzgefäß", "Vexiergläser"], "authorized_access_point": "Vexiergefäß"} 1 +2024-09-11 09:10:09.520513 2024-09-11 09:10:09.52052 13ab6cd6-2453-4957-8d84-057918ee8008 {"md5": "7efa4177a213f6c41faffd31ce9356c3", "pid": "1256073210", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Cancellans&oldid=160063593"], "noteType": "dataSource"}, {"label": ["Fehlerhaft gedrucktes Blatt, das häufig durch Einschnitt oder Ausriß markiert und vom Buchbinder durch ein neu gedrucktes Austauschblatt (Cancellans) ersetzt werden sollte"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Cancellans"}, {"authorized_access_point": "Analytische Druckforschung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1256073210", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1256073210", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1256073210", "source": "GND"}], "variant_access_point": ["Cancellatum", "Canceled leaf"], "authorized_access_point": "Cancellandum"} 1 +2024-09-11 09:10:09.578095 2024-09-11 09:10:09.578098 d001d1fe-3c7b-4877-8ee4-9e0722072c31 {"md5": "b5d1feb70d6d514b68c7351291c3bd00", "pid": "1256072893", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Cancellans&oldid=160063593"], "noteType": "dataSource"}, {"label": ["Vom korrigierten Satz neu gedrucktes Ersatzblatt, das vom Buchbinder für ein fehlerhaft gedrucktes Blatt (Cancellandum) eingeklebt werden sollte"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Cancellandum"}, {"authorized_access_point": "Analytische Druckforschung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1256072893", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1256072893", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1256072893", "source": "GND"}], "variant_access_point": ["Austauschblatt", "Auswechselblatt", "Cancelans", "Cancel", "Canceling leaf", "Karton", "Carton"], "authorized_access_point": "Cancellans"} 1 +2024-09-11 09:10:09.634759 2024-09-11 09:10:09.634763 c12e43d5-615f-43bd-8267-8aaac5ea8a03 {"md5": "684d159434602ec5886540b505235185", "pid": "1254291482", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1254291482", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1254291482", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1254291482", "source": "GND"}], "authorized_access_point": "Postapokalypse (Motiv)"} 1 +2024-09-11 09:10:09.692047 2024-09-11 09:10:09.692052 04df69cb-f5a2-4539-819a-88daeaaaaaf6 {"md5": "6948c6723f0b7e875395f1075ef47f2a", "pid": "1251426239", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1251426239", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1251426239", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1251426239", "source": "GND"}], "authorized_access_point": "Nichtverbale Kommunikation (Motiv)"} 1 +2024-09-11 09:10:09.75421 2024-09-11 09:10:09.754215 a2606792-794a-4d80-a548-dcb3284e4d48 {"md5": "0ff3e713eb352745fecd3435b5d4a274", "pid": "1248276604", "note": [{"label": ["Modell schulkooperativer Bildungs- und Erziehungsarbeit von Schulen und evangelischen Landeskirchen in Norddeutschland"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kirchliche Kinderarbeit"}, {"authorized_access_point": "Jugendarbeit"}, {"authorized_access_point": "Schulsozialarbeit"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1248276604", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1248276604", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1248276604", "source": "GND"}], "variant_access_point": ["TEO"], "authorized_access_point": "Tage Ethischer Orientierung"} 1 +2024-09-11 09:10:09.808168 2024-09-11 09:10:09.808172 b0d67d92-4c99-4a71-8f9e-3574a939539e {"md5": "a6544b1675a4256e984c85bb78ae3918", "pid": "1245158511", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Gezeitenm%C3%BChle&oldid=216756166", "Homepage Tide Mill Institute - https://www.tidemillinstitute.org/"], "noteType": "dataSource"}, {"label": ["Periodisch mittels Ebbe und Flut angetriebene Mühle; wurde ab dem frühen Mittelalter vorwiegend an Küsten mit ausreichendem Tidenhub errichtet"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mühle"}], "related": [{"authorized_access_point": "Wassermühle"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1245158511", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1245158511", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1245158511", "source": "GND"}], "variant_access_point": ["Flutmühle", "Tidenmühle", "Tidemühle", "Tide mill", "Tidal mill", "Getijdenmolen"], "authorized_access_point": "Gezeitenmühle"} 1 +2024-09-11 09:10:10.168384 2024-09-11 09:10:10.168388 df60f137-6da7-48d8-b75a-69cd0f821722 {"md5": "9cf4542d3435e3692fd7adc749f37767", "pid": "1229013695", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Pansexualit%C3%A4t&oldid=208933170"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sexuelle Orientierung"}], "related": [{"authorized_access_point": "Bisexualität"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1229013695", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1229013695", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1229013695", "source": "GND"}], "variant_access_point": ["Omnisexualität"], "authorized_access_point": "Pansexualität"} 1 +2024-09-11 09:10:09.863112 2024-09-11 09:10:09.863117 3df54b17-d9b9-4b4d-9447-cc872108336f {"md5": "e183ebb770a7e2004780c01fe70a8c56", "pid": "1242560637", "note": [{"label": ["H Kulturpreise Online - http://www.kulturpreise.de/web/preise_info.php?preisd_id=2534", "Wikipedia unter Effie (Preis) - https://de.wikipedia.org/w/index.php?title=Effie_(Preis)&oldid=205963252"], "noteType": "dataSource"}, {"label": ["In Deutschland seit 1981 jedes Jahr vom Gesamtverband Kommunikationsagenturen GWA e. V. innerhalb der nationalen Werbe- und Kommunikationsbranche verliehen für die beste Marketingkommunikation bzgl. Wirksamkeit und Effizienz in zehn Kategorien. 2021 erstmals in Leipzig statt in Frankfurt a. Main verliehen. Der Effie wurde 1968 in den Vereinigten Staaten durch die New York American Marketing Association (NYAMA) gegründet. Neben über 40 nationalen Effies gibt es 5 regionale und einen Effie Worldwide."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Preis (Auszeichnung)"}], "related": [{"authorized_access_point": "Werbung"}, {"authorized_access_point": "Marketingkonzept"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1242560637", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1242560637", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1242560637", "source": "GND"}], "variant_access_point": ["GWA Effie Award", "Effie-Award (Gesamtverband Werbeagenturen)", "GWA Effie Awards", "GWA Effie", "Effie Awards Germany", "Effie Germany Awards", "Effie Germany", "Effie (Preis, Auszeichnung)", "Effie (Preis)"], "authorized_access_point": "GWA Effie-Award"} 1 +2024-09-11 09:10:09.926327 2024-09-11 09:10:09.926332 4fbc0d1c-f0d3-4524-ab3d-9c760ea608b0 {"md5": "0b4de56c230585d973ff4e2069c84ff4", "pid": "124129562X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Sonntagsversammlung&oldid=191625041"], "noteType": "dataSource"}, {"label": ["Bezeichnet eine Versammlung nichtreligiöser Menschen, die von den britischen Komikern Sanderson Jones und Pippa Evans im Januar 2013 in London erstmals durchgeführt wurde. Die Versammlung hat in erster Linie das Ziel, Menschen ohne Konfession zusammenzubringen und ihnen ein positives Gemeinschaftserlebnis zu bieten, das auf Bezüge zu religiösen Vorstellungen verzichtet. Das Motto der Sunday Assembly lautet: „Live better, help often and wonder more“ – auf Deutsch etwa „Lebe besser, hilf oft, staune mehr“ bzw. „Lebe besser, hilf oft, denk mehr nach“. Heute gibt es zahlreiche lokale Assemblies auf der ganzen Welt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Versammlung"}, {"authorized_access_point": "Gemeinschaft"}, {"authorized_access_point": "Soziale Bewegung"}], "related": [{"authorized_access_point": "Sonntag"}, {"authorized_access_point": "Religionslosigkeit"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/124129562X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)124129562X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)124129562X", "source": "GND"}], "variant_access_point": ["Sonntagsversammlung"], "authorized_access_point": "Sunday Assembly"} 1 +2024-09-11 09:10:09.986341 2024-09-11 09:10:09.986346 97e3b96d-a9e3-48ba-9041-c65428e949d5 {"md5": "a03d636c93598c50898915004f915e74", "pid": "1239152302", "note": [{"label": ["Sans- und Serif-Schriftfamilie für die Lernprodukte des Cornelsen Verlages", "Benutzt für alle CV-Dida-Schriften. Einzelne CV-Dida-Schriften werden getrennt angesetzt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Font"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1239152302", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1239152302", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1239152302", "source": "GND"}], "variant_access_point": ["CV-Dida", "Dida (Druckschrift)"], "authorized_access_point": "CV Dida"} 1 +2024-09-11 09:10:10.044971 2024-09-11 09:10:10.044975 d67d077b-508f-4f28-9ed4-b22c866b65ba {"md5": "25119d0ee5a06d1c165d2eca71e463a4", "pid": "1237145422", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Massaker_in_S%C3%BCdkorea&oldid=210930843", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Jeju-Aufstand&oldid=187183989"], "noteType": "dataSource"}, {"label": ["Widerstand gegen Polizeirepression und die Angst vor Fremdbestimmung der Insel hatten einen Aufstand linksgerichteter Rebellen ausgelöst. Am 3. April 1948 griffen diese auf der ganzen Insel Polizeikommandos sowie die Einrichtungen einer rechtsextremen paramilitärischen Organisation an. Polizei und Armee schlugen mit großer Brutalität zurück und verfolgten eine Strategie der verbrannten Erde. Um die Aufständischen im bergigen Landesinnern zu isolieren, wurden alle Dörfer, die mehr als vier Kilometer von der Küste entfernt waren, dem Erdboden gleichgemacht. Nach offiziellen südkoreanischen Angaben wurden dadurch zwischen April 1948 und August 1949 270 von insgesamt 400 Dörfern auf der Insel ausgelöscht. Mehr als 27.000 Personen wurden getötet, zum überwiegenden Teil Zivilisten; Schätzungen der Opferzahl weichen allerdings deutlich voneinander ab. Auch das Ende der Unruhen Anfang der 1950er wird unterschiedlich angesetzt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Massaker"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1237145422", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1237145422", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1237145422", "source": "GND"}], "variant_access_point": ["Jeju-Massaker", "Jeju-Aufstand", "Cheju-Massaker", "Massaker von Cheju-do", "Jeju massacre", "Cheju massacre"], "authorized_access_point": "Massaker von Jeju-do"} 1 +2024-09-11 09:10:10.10412 2024-09-11 09:10:10.104123 ebc8e630-bad0-4442-b4f0-ec731dc54bbe {"md5": "72c137f214deaf37a6b00f056d038b0b", "pid": "1232354244", "note": [{"label": ["Benutzt, soweit im Ausland leben"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ausländischer Student"}, {"authorized_access_point": "Armenier"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334679487", "source": "GND"}, {"type": "bf:Nbn", "value": "sh87002994", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh87002994"}], "authorized_access_point": "Armenian students"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334679487", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17881071", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17881071x"}], "authorized_access_point": "Étudiants arméniens"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1232354244", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1232354244", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1232354244", "source": "GND"}], "authorized_access_point": "Armenischer Student"} 1 +2024-09-11 09:10:10.232198 2024-09-11 09:10:10.232203 2ab54fda-9599-47c7-b89d-603f98892f6b {"md5": "118cb66a50e2269854560bc90b4c52e7", "pid": "1225001064", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Mangaka&oldid=205181449"], "noteType": "dataSource"}, {"label": ["Mangaka, oder auch Manga-ka, sind professionell für einen Manga-Verlag arbeitende Manga-Zeichnerinnen und -Zeichner. Es gibt keine Unterscheidung einer weiblichen und männlichen Bezeichnung. Der Begriff setzt sich zusammen aus dem Wort Manga für japanische Comics und der Endung -ka im Sinne von „Macher“ oder „Schöpfer“. Die meisten Mangaka zeichnen ihre Geschichten nicht nur, sondern schreiben auch den dazugehörigen Text. In Japan sind Mangaka eine eigene Berufsgruppe."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zeichner"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1225001064", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1225001064", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1225001064", "source": "GND"}], "variant_access_point": ["Manga-ka", "Manga-Zeichner", "Mangazeichnerin"], "authorized_access_point": "Mangaka"} 1 +2024-09-11 09:10:10.288205 2024-09-11 09:10:10.288208 9f1cdbec-c312-49ff-ad46-20297d90f430 {"md5": "71dc9a7ce03561b4179c0389765ca647", "pid": "1217543678", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Crowdsourcing&oldid=203048762"], "noteType": "dataSource"}, {"label": ["Crowdsourcing ist die Auslagerung bestimmter Aufgaben an eine undefinierte Vielzahl an Menschen mittels eines offenen Aufrufs. Die Bezeichnung wird verschiedentlich auch als Synonym zu Crowdworking gesehen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Outsourcing"}], "related": [{"authorized_access_point": "Prosumerismus"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334879311", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2017004056", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2017004056"}], "authorized_access_point": "Crowdsourcing"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334879311", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF167129727", "source": "BNF"}, {"type": "uri", "value": "https://catalogue.bnf.fr/ark:/12148/cb167129727"}], "authorized_access_point": "Crowdsourcing"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1217543686", "source": "GND"}, {"type": "bf:Nbn", "value": "29770-6", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/29770-6"}], "authorized_access_point": "Crowdsourcing"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1217543678", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1217543678", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1217543678", "source": "GND"}], "variant_access_point": ["Schwarmauslagerung"], "authorized_access_point": "Crowdsourcing"} 1 +2024-09-11 09:10:10.34279 2024-09-11 09:10:10.342794 5e9b97e8-b875-44e3-acb2-9563b1315c3b {"md5": "5061c6a6875a169ceb463e400522ac87", "pid": "1213474337", "note": [{"label": ["Universität Hohenheim - https://popgenomik.uni-hohenheim.de/", "Ludwig-Maximilians-Universität München - https://www.genom.vetmed.uni-muenchen.de/forschung/forschungsschwerpunkte/populationsgenomik/index.html", "Wikipedia (engl.) - https://en.wikipedia.org/w/index.php?title=Population_genomics&oldid=955719198"], "noteType": "dataSource"}, {"label": ["Verfahren zur populationsgenetischen Analyse mittels großer (Sequenz-)Datensätzen, die durch Hochdurchsatzverfahren gewonnen werden. Insbesondere erlaubt das Sequenzieren von Stichproben von ganzen Genomen, die genetische Variation von Populationen zu analysieren"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Populationsgenetik"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1213474337", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1213474337", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1213474337", "source": "GND"}], "variant_access_point": ["Population genomics"], "authorized_access_point": "Populationsgenomik"} 1 +2024-09-11 09:10:10.396614 2024-09-11 09:10:10.396619 8b36da65-15af-42ff-9eac-c9c21ecaac76 {"md5": "683704c00f81b71f2e3294d6e45bf2b2", "pid": "1213276500", "note": [{"label": ["Afroamerikanische Religion in Brasilien"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Afroamerikanischer Synkretismus"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1213276500", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1213276500", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1213276500", "source": "GND"}], "variant_access_point": ["Catimbós"], "authorized_access_point": "Catimbó"} 1 +2024-09-11 09:10:10.454616 2024-09-11 09:10:10.454619 8aa2b4a1-c14e-4d7b-98a3-cb04a1be6b43 {"md5": "fdec3f4765edc3fad3ba2b8b8ffed946", "pid": "1211610659", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Synagogenvorsteher"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1211610659", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1211610659", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1211610659", "source": "GND"}], "variant_access_point": ["Archisynágōgos", "Archisynagogos", "Archisynagogus", "Rosh ha-knesset", "Rosch ha-Knesset", "Rosch hakĕnesset", "Synagogenvorsitzender", "Princeps synagogae"], "authorized_access_point": "Synagogenvorsteher"} 1 +2024-09-11 09:10:10.508218 2024-09-11 09:10:10.508222 262007ef-13f4-4b06-a6ba-2e77fddf324b {"md5": "761ae75daf181370c76c40d01c74a5b3", "pid": "1206111984", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Szientometrie&oldid=196832777"], "noteType": "dataSource"}, {"label": ["Szientometrie ist die Wissenschaft der Wissenschaftsmessung, die mathematische und statistische Methoden zur Analyse von wissenschaftlichen Veröffentlichungen und Forschungsergebnissen verwendet."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wissenschaftsforschung"}, {"authorized_access_point": "Informetrie"}], "related": [{"authorized_access_point": "Bibliometrie"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1239139888", "source": "GND"}, {"type": "bf:Nbn", "value": "10064428", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10064428"}], "authorized_access_point": "Szientometrie"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1206111984", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1206111984", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1206111984", "source": "GND"}], "variant_access_point": ["Scientometrie"], "authorized_access_point": "Szientometrie"} 1 +2024-09-11 09:10:12.020374 2024-09-11 09:10:12.020379 0eddc454-4a7b-4f7a-8ffe-c9906bdbc7da {"md5": "534443dde7dba24975706a5da1580900", "pid": "1159933278", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159933278", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1159933278", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1159933278", "source": "GND"}], "authorized_access_point": "Succes (Druckschrift)"} 1 +2024-09-11 09:10:10.563805 2024-09-11 09:10:10.56381 d967895c-af93-45a8-a691-5d495577508d {"md5": "6cc70a380e9cc101b75403ad9c886837", "pid": "1205504184", "note": [{"label": ["Entworfen als Hausschrift für die Oxford University, an Rohrfederhandschriften angelehnt, erstes gedrucktes Buch mit dieser wieder in Blei gegossenen Schrift: Krohn, Tim: Zum Paradies, Edition Offizin Parnassia Vättis, 2015"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Antiqua"}, {"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1205504184", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1205504184", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1205504184", "source": "GND"}], "variant_access_point": ["Treyford (Druckschrift)", "Type Treyford"], "authorized_access_point": "Treyford Type"} 1 +2024-09-11 09:10:10.615837 2024-09-11 09:10:10.615839 c0d0b07c-6671-4e4d-8096-3f483d0d714e {"md5": "1d115af96067df401d552844592e5f02", "pid": "1204138915", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1204138915", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1204138915", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1204138915", "source": "GND"}], "authorized_access_point": "Holzhändler"} 1 +2024-09-11 09:10:10.674691 2024-09-11 09:10:10.674696 55e10bc4-ee37-4965-a03a-1f95638a2c68 {"md5": "76b12d6cbf334d0bbabb57e6f8eac6da", "pid": "120246193X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Chemokinrezeptoren&oldid=183008713"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "G-Protein gekoppelter Rezeptor"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336575654", "source": "GND"}, {"type": "bf:Nbn", "value": "D019707", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D019707"}], "authorized_access_point": "Receptors, Chemokine"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/120246193X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)120246193X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)120246193X", "source": "GND"}], "variant_access_point": ["Chemokine receptor"], "authorized_access_point": "Chemokinrezpetor"} 1 +2024-09-11 09:10:10.736499 2024-09-11 09:10:10.736503 cadc95f9-9ca7-4875-84b9-75dd9e978d61 {"md5": "fdd99fd8de4de1f24d139c7d336cc3d0", "pid": "1201306663", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Portal (Internet)"}, {"authorized_access_point": "Online-Community"}], "related": [{"authorized_access_point": "Evangelikale Bewegung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1201306663", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1201306663", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1201306663", "source": "GND"}], "variant_access_point": ["TopChrétien.com"], "authorized_access_point": "TopChrétien"} 1 +2024-09-11 09:10:10.795568 2024-09-11 09:10:10.795572 716da34d-8243-4d32-a002-7f4ee19641ab {"md5": "259deb12225319765cec11582dc94bac", "pid": "1197813853", "note": [{"label": ["Benutzt, soweit im Ausland lebend"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ausländischer Student"}, {"authorized_access_point": "Slowaken"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334683123", "source": "GND"}, {"type": "bf:Nbn", "value": "sh94004603", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh94004603"}], "authorized_access_point": "Slovak students"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334683123", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12392703", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb123927038"}], "authorized_access_point": "Étudiants slovaques"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1197813853", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1197813853", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1197813853", "source": "GND"}], "authorized_access_point": "Slowakischer Student"} 1 +2024-09-11 09:10:10.854327 2024-09-11 09:10:10.854332 c594d972-7e59-4000-81b0-e50101344dbc {"md5": "f2a51988ce4e179c7dddbbe7010cf32e", "pid": "1197084231", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Open_Science&oldid=242180012"], "noteType": "dataSource"}, {"label": ["Sammelbegriff für z.B. Open Access, Open Data, Open Educational Resources, Open Methodology, Open Peer Review, Open Source etc. Ziel ist, wissenschaftliche Prozesse transparent und reproduzierbar sowie Wissenschaft für alle frei zugänglich zu machen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wissenschaft"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331216990", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2022002066", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2022002066"}], "authorized_access_point": "Open scholarship"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1331216990", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF18068255", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb180682558"}], "authorized_access_point": "Science ouverte"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1289086672", "source": "GND"}, {"type": "bf:Nbn", "value": "30309-1", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/30309-1"}], "authorized_access_point": "Open science"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1197084231", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1197084231", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1197084231", "source": "GND"}], "variant_access_point": ["Offene Wissenschaft", "Öffentliche Wissenschaft", "Open Research", "Open Scholarship"], "authorized_access_point": "Open Science"} 1 +2024-09-11 09:10:11.273887 2024-09-11 09:10:11.273892 2b9816d6-1480-44be-a4c2-ed794af18811 {"md5": "b0157aa77a1120c9c9bd2e984286ab5f", "pid": "1190744996", "note": [{"label": ["Theater, das Eigenproduktionen in mehreren Sparten der Bühnenkunst (Musik, Schauspiel, Tanz) zeigt. Für jede Sparte ist ein eigenes Ensemble engagiert"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Theater"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1190744996", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1190744996", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1190744996", "source": "GND"}], "variant_access_point": ["Zweispartentheater", "Dreispartentheater", "Vierspartentheater", "Fünfspartentheater"], "authorized_access_point": "Mehrspartentheater"} 1 +2024-09-11 09:10:11.331577 2024-09-11 09:10:11.331582 30c1ef8e-4211-4895-983a-760d95a975c8 {"md5": "1c7578fd530f7449ec8b60a139588e86", "pid": "1189251949", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1189251949", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1189251949", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1189251949", "source": "GND"}], "authorized_access_point": "Zwangsvorstellung (Motiv)"} 1 +2024-09-11 09:10:10.916346 2024-09-11 09:10:10.91635 2edbde91-00b3-46ab-a243-be8f5371b0b9 {"md5": "4754c8739033c05f887afd724f160744", "pid": "1196153183", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Assassin%E2%80%99s_Creed"], "noteType": "dataSource"}, {"label": ["Computerspielserie aus dem Genre Action-Adventure, ab 2007 wurden 11 Hauptspiele und zahlreiche Ableger veröffentlicht"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Computerspiel"}, {"authorized_access_point": "Serie"}, {"authorized_access_point": "Abenteuerspiel"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1272017613", "source": "GND"}, {"type": "bf:Nbn", "value": "no2016008920", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/names/no2016008920"}], "authorized_access_point": "Assassin's creed series (Video games)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1272017613", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16573084", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/16573084/assassin_s_creed___jeu_video/"}], "authorized_access_point": "Assassin's creed (jeu vidéo ; série)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1196153183", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1196153183", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1196153183", "source": "GND"}], "variant_access_point": ["Assassin's-Creed-Reihe", "Assassin's creed series"], "authorized_access_point": "Assassin's Creed (Computerspiel, Serie)"} 1 +2024-09-11 09:10:10.977734 2024-09-11 09:10:10.977738 b72a2357-0874-4f34-85ce-a2449fcc9f87 {"md5": "287946289cd59982a084a7b54f55af1d", "pid": "1195721455", "note": [{"label": ["The treasury of lives - https://treasuryoflives.org/tradition/Sakya"], "noteType": "dataSource"}, {"label": ["Einer der drei Zweige der Sa skya Tradition des tibetischen Buddhismus; ngor pa, tshar pa, rdzong pa/gong dkar pa; verbunden mit dem Kloster Gongkar Chode (Gong dkar chos sde) - gegründet von Gong dkar rdo rje gdan pa kun dga' rnam rgyal (1432-1496)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sakyapa"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1195721455", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1195721455", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1195721455", "source": "GND"}], "variant_access_point": ["rDzong-pa", "rDzoṅ pa", "Dzongpa", "rDzong pa-Zweig", "rDzong pa Unterschule", "rDzong Tradition", "Dzongpa Tradition", "Dzongpa-Tradition", "Gong dkar ba", "Goṅ dkar ba", "Gong dkar-Zweig", "Gong dkar Tradition", "Gongkar"], "authorized_access_point": "rDzong pa"} 1 +2024-09-11 09:10:11.0343 2024-09-11 09:10:11.034305 ba60a288-2a6c-476e-90a9-aabf90609b89 {"md5": "e75a36e8e75d96de1c3abb08ef371e9f", "pid": "1195720424", "note": [{"label": ["The treasury of lives - https://treasuryoflives.org/tradition/Sakya"], "noteType": "dataSource"}, {"label": ["Einer der drei Zweige der Sa skya Tradition des tibetischen Buddhismus; ngor pa, tshar pa, rdzong pa/gong dkar pa; etabliert von Ngor chen kun dga' bzang po mit der Gründung des Klosters Ngor Ewaṃ Choden (Ngor e waṃ chos ldan) in 1429"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sakyapa"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1195720424", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1195720424", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1195720424", "source": "GND"}], "variant_access_point": ["Ngor-pa", "Ṅor pa", "Ngor pa-Zweig", "Ngor pa Unterschule", "Ngor Tradition"], "authorized_access_point": "Ngor pa"} 1 +2024-09-11 09:10:11.091173 2024-09-11 09:10:11.091177 0a27769b-f213-4c1c-bab2-4e104d5e032b {"md5": "f7ed57efbf488a6f03f2f1745099ae7a", "pid": "1192998324", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/wiki/Way_of_the_Gods_according_to_the_Confucian_Tradition"], "noteType": "dataSource"}, {"label": ["Ansetzung als Personengruppe, da ohne einheitliche körperschaftliche Struktur"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Religiöse Bewegung"}, {"authorized_access_point": "Konfuzianismus"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1192998324", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1192998324", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1192998324", "source": "GND"}], "variant_access_point": ["Rúzōng Shénjiào", "Way of the Gods according to the Confucian tradition", "Luandao", "Phoenix Way", "Phoenix Gate", "Phoenix halls", "Phoenix churches", "Luánmén", "Luanism", "Luánjiào", "Rumen", "Holy Church of the Confucian Tradition", "Rúzōng Shèngjiào"], "authorized_access_point": "Ruzong Shenjiao"} 1 +2024-09-11 09:10:11.144786 2024-09-11 09:10:11.144789 595fee1f-2d08-4ba8-b0e9-fdcff8aa48bd {"md5": "cf64a7f08d9b1356805075300b896aa2", "pid": "119298918X", "note": [{"label": ["Im Juni 2018 freigeschaltetes Portal mit digitalisierten Lokalzeitungen aus Nordrhein-Westfalen im Zeitraum von 1801-1845"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Portal (Internet)"}], "related": [{"authorized_access_point": "Zeitung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/119298918X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)119298918X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)119298918X", "source": "GND"}], "variant_access_point": ["zeit.punktNRW (Portal, Internet)", "Zeitungsportal Nordrhein-Westfalen", "Zeitungsport NRW"], "authorized_access_point": "zeit.punktNRW"} 1 +2024-09-11 09:10:11.207708 2024-09-11 09:10:11.207712 4ed7d7fd-27e1-4855-8e45-165a4a71842b {"md5": "993af2d291b3a4d91021d0935f1eeb7b", "pid": "1191213307", "note": [{"label": ["\\"Color Fonts\\" (mehrfarbige Schrift, pro Letter mehrere Farben) für Überschriften und Mengentext"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Font"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1191213307", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1191213307", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1191213307", "source": "GND"}], "authorized_access_point": "Ziza (Druckschrift)"} 1 +2024-09-11 09:10:11.386869 2024-09-11 09:10:11.386873 59925ceb-c121-4813-b6c9-9238f53cf54f {"md5": "e8da64d9fcffec53ada77718229c10e3", "pid": "1181270391", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Futura (Druckschrift)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1181270391", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1181270391", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1181270391", "source": "GND"}], "authorized_access_point": "Futura Mager"} 1 +2024-09-11 09:10:11.498081 2024-09-11 09:10:11.498085 a7dee2b5-6c4d-4154-a3ef-0f0d2b96f1b9 {"md5": "bf5501c7e9ddc5573ea4217e9ab96da3", "pid": "1172931720", "note": [{"label": ["basieren auf der Beschriftung, die nach 1933 für das Gebäude der Kunstgewerbeschule Zürich (heute ZHdK) und dem Museum für Gestaltung gezeichnet wurde, geschaffen von der Foundry Nouvelle Noire, Zürich, 14 Schriftschnitte erhältlich", "Benutzt für alle Rektorat-Schriften. Einzelne Rektorat-Schriften werden getrennt angesetzt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Font"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1172931720", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1172931720", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1172931720", "source": "GND"}], "authorized_access_point": "Rektorat (Druckschrift)"} 1 +2024-09-11 09:10:11.553802 2024-09-11 09:10:11.553805 138c808f-3fe1-4a9f-8c01-b617c158a62c {"md5": "740100a05944467944a389f26a5e586d", "pid": "1164102931", "note": [{"label": ["Hinduistische Gruppierung mit wachsender Popularität; VerehrerInnen der Göttin Ātiparācakti"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Religiöse Bewegung"}], "related": [{"authorized_access_point": "Hinduismus"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1164102931", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1164102931", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1164102931", "source": "GND"}], "variant_access_point": ["Melmaruvathur Adhiparasakthi Spiritual Movement"], "authorized_access_point": "Melmaruvathur movement"} 1 +2024-09-11 09:10:11.609232 2024-09-11 09:10:11.609237 443a3d01-5e86-40c9-911f-762ee72bc01a {"md5": "70d46d74eec448870eb03f9c89f23202", "pid": "1162074078", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung (hier: Hebräisch) und Wortart"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1162074078", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1162074078", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1162074078", "source": "GND"}], "variant_access_point": ["עזר"], "authorized_access_point": "ʿzr"} 1 +2024-09-11 09:10:11.666231 2024-09-11 09:10:11.666237 d7788567-1b92-4032-b3a7-ccfe3e35b4fd {"md5": "d1405f8f1f3f8b74be8f6724cd7b5557", "pid": "1162070234", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung (hier: Hebräisch) und Wortart"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1162070234", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1162070234", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1162070234", "source": "GND"}], "variant_access_point": ["מלא"], "authorized_access_point": "mlʾ"} 1 +2024-09-11 09:10:11.732128 2024-09-11 09:10:11.732133 3931254a-ad74-421b-afdf-fd1923529093 {"md5": "b5450089fda7f4bb6d377c8369d25dd2", "pid": "1162069848", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung (hier: Hebräisch) und Wortart"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1162069848", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1162069848", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1162069848", "source": "GND"}], "variant_access_point": ["mabbul", "mabbûl", "מַבּוּל"], "authorized_access_point": "mabûl"} 1 +2024-09-11 09:10:11.787409 2024-09-11 09:10:11.787414 46c216d4-5114-4d3b-81c0-c6db6667d844 {"md5": "64c5b4a68de4806e419a1c94e052f002", "pid": "1162069279", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung (hier: Hebräisch) und Wortart"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1162069279", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1162069279", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1162069279", "source": "GND"}], "variant_access_point": ["jpḥ", "יפח"], "authorized_access_point": "ypḥ"} 1 +2024-09-11 09:10:11.843871 2024-09-11 09:10:11.843875 84ef4ea4-1f4a-4609-a897-64324f9698de {"md5": "bd68b62b6559b7df61922ba1c918959f", "pid": "1161370048", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Südamerikaner"}, {"authorized_access_point": "Einwanderer"}], "related": [{"authorized_access_point": "Südamerikanische Einwanderin"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1161370048", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1161370048", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1161370048", "source": "GND"}], "authorized_access_point": "Südamerikanischer Einwanderer"} 1 +2024-09-11 09:10:11.901339 2024-09-11 09:10:11.901343 abb5d62e-318e-4045-bc1b-813d30a6afb7 {"md5": "ed9a7231f3453132b142e7d2bdfb4d36", "pid": "1160916276", "note": [{"label": ["Entstehungszeit 1904"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1160916276", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1160916276", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1160916276", "source": "GND"}], "authorized_access_point": "Schiller-Jubiläumsschrift"} 1 +2024-09-11 09:10:11.961652 2024-09-11 09:10:11.961655 90fe9a2e-6131-4407-9979-95cd4e3273fa {"md5": "2f7ed6d6949468fcfc68ac35286cbf2d", "pid": "1160040834", "note": [{"label": ["Benutzt, soweit im Ausland lebend"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ausländischer Student"}, {"authorized_access_point": "Jordanier"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334682283", "source": "GND"}, {"type": "bf:Nbn", "value": "sh98006531", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh98006531"}], "authorized_access_point": "Jordanian students"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334682283", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16080762", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb160807624"}], "authorized_access_point": "Étudiants jordaniens"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1160040834", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1160040834", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1160040834", "source": "GND"}], "authorized_access_point": "Jordanischer Student"} 1 +2024-09-11 09:10:12.074644 2024-09-11 09:10:12.074648 910502b5-fa61-4e1d-937f-b61a9645dfb0 {"md5": "6ecd26b2867d6f31c33399be95a1f7b6", "pid": "1159933006", "note": [{"label": ["Entstehungszeit 1948, Rondo Fett: 1954"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159933006", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1159933006", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1159933006", "source": "GND"}], "authorized_access_point": "Rondo (Druckschrift)"} 1 +2024-09-11 09:10:12.129387 2024-09-11 09:10:12.129391 ea9c8d41-769a-47f4-8714-ed4b1a4a5872 {"md5": "f67d3b1e290445a20fff19307a1952ac", "pid": "115992869X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/115992869X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)115992869X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)115992869X", "source": "GND"}], "authorized_access_point": "Juno (Druckschrift)"} 1 +2024-09-11 09:10:12.188137 2024-09-11 09:10:12.188142 bbb62549-6e0c-4c83-875f-38e5b3dae2ab {"md5": "1ec86f4c694dd91d0163598cfe70f313", "pid": "1159920850", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159920850", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1159920850", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1159920850", "source": "GND"}], "authorized_access_point": "Carlton (Druckschrift)"} 1 +2024-09-11 09:10:12.238146 2024-09-11 09:10:12.238149 5bf8b049-984e-4498-9ac6-e56be690e7da {"md5": "6eea1a3df6a3e42966fcf2e1000d41cb", "pid": "115992063X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/115992063X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)115992063X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)115992063X", "source": "GND"}], "authorized_access_point": "Bristol (Druckschrift)"} 1 +2024-09-11 09:10:12.293741 2024-09-11 09:10:12.293745 c0f27507-cc42-4218-890d-528151ea5207 {"md5": "cb241fda9b6499636d027a2c3e8036eb", "pid": "1159919828", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159919828", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1159919828", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1159919828", "source": "GND"}], "authorized_access_point": "Orator (Druckschrift)"} 1 +2024-09-11 09:10:12.349527 2024-09-11 09:10:12.349533 b2e005df-9cae-4eea-8d51-d74726731bab {"md5": "2ccaa24af2c74b75fca9eb770d9dd29e", "pid": "1159716978", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159716978", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1159716978", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1159716978", "source": "GND"}], "authorized_access_point": "Nürnberg (Druckschrift)"} 1 +2024-09-11 09:10:12.420399 2024-09-11 09:10:12.420407 54843f71-a4cd-492e-a6ca-16560e7a07b8 {"md5": "aa2aeb80cb941285a3bc42a8bf82c85d", "pid": "1159673381", "note": [{"label": ["Entstehungsjahr: 1928; Mammut Schmalfett 1932"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159673381", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1159673381", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1159673381", "source": "GND"}], "authorized_access_point": "Mammut (Druckschrift)"} 1 +2024-09-11 09:10:12.478037 2024-09-11 09:10:12.478042 23f662e8-77ae-483e-9167-ec45fc673e98 {"md5": "168760e548e73d34d1b6fa6ae176f19d", "pid": "1159652686", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1159652686", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1159652686", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1159652686", "source": "GND"}], "authorized_access_point": "Dynamit (Druckschrift)"} 1 +2024-09-11 09:10:12.537402 2024-09-11 09:10:12.537406 04aaf422-c539-403d-9dbb-6b79e6a0bf57 {"md5": "0a160a4112dddf382bf2f7c1a8651a88", "pid": "1158529643", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1158529643", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1158529643", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1158529643", "source": "GND"}], "authorized_access_point": "Kardinal (Druckschrift)"} 1 +2024-09-11 09:10:12.591885 2024-09-11 09:10:12.591889 7b367ba2-fe3e-4893-93be-be46cc6306a6 {"md5": "811dfe8119a7f632f825e764e3bb7a92", "pid": "1156463467", "note": [{"label": ["Verzierung d. Bucheinbands durch aufgeklebte Leder- oder Textilstückchen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Buchgestaltung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1156463467", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1156463467", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1156463467", "source": "GND"}], "authorized_access_point": "Auflage (Einbandkunde)"} 1 +2024-09-11 09:10:12.645762 2024-09-11 09:10:12.645765 aefb74c7-cc47-4f4f-919a-ccc3294c2550 {"md5": "2ba3da3c223fa9924efbbd74bcc77484", "pid": "1153904039", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Etikett"}], "related": [{"authorized_access_point": "Buchgestaltung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1153904039", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1153904039", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1153904039", "source": "GND"}], "authorized_access_point": "Titelschild"} 1 +2024-09-11 09:10:14.135731 2024-09-11 09:10:14.135735 1924173a-94c9-4689-a40c-edaf03da6aba {"md5": "c60da99d2552f76a31e435bb129f431f", "pid": "1104861453", "note": [{"label": ["Angehöriger einer orthodoxen Kirche"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Christ"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1104861453", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1104861453", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1104861453", "source": "GND"}], "authorized_access_point": "Orthodoxer Christ"} 1 +2024-09-11 09:10:12.701095 2024-09-11 09:10:12.701099 c874010d-9fb0-482c-a3d4-410ae30c9abd {"md5": "b99902a8ef480eb86b40b4637ee0d4a2", "pid": "1153848325", "note": [{"label": ["Anspruch auf Rückgewähr einer erbrachten Leistung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Anspruch"}], "related": [{"authorized_access_point": "Rückforderung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1153848325", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1153848325", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1153848325", "source": "GND"}], "variant_access_point": ["Rückerstattungsanspruch", "Rückforderungsanspruch"], "authorized_access_point": "Rückgewähranspruch"} 1 +2024-09-11 09:10:12.753984 2024-09-11 09:10:12.753988 6383aa11-8adc-4395-95cd-e7d1976701af {"md5": "9ff9a9ccffdbe730bf74ba87035d2505", "pid": "1153645505", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Kognitive_Religionswissenschaft"], "noteType": "dataSource"}, {"label": ["Interdisziplinäres Forschungsgebiet, das die Religion aus kognitionswissenschaftlicher Sicht untersucht; 1975 aus einem Forschungsförderungsprogramm entstanden"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Religionswissenschaft"}, {"authorized_access_point": "Kognitionswissenschaft"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1153645505", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1153645505", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1153645505", "source": "GND"}], "variant_access_point": ["Cognitive science of religion"], "authorized_access_point": "Kognitive Religionswissenschaft"} 1 +2024-09-11 09:10:12.811797 2024-09-11 09:10:12.811801 35607629-1ef8-4235-a099-5d6d28fd08a5 {"md5": "f07ada28844c28bcc3f8d17784d0f91d", "pid": "1148983325", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung und Wortart Substantiv"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1148983325", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1148983325", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1148983325", "source": "GND"}], "variant_access_point": ["προστάτις"], "authorized_access_point": "prostatis"} 1 +2024-09-11 09:10:12.867418 2024-09-11 09:10:12.867422 0f9bb5d0-1ac0-4acd-a922-3112880a0bd4 {"md5": "12e161d22cca42dc60d523b506c8caae", "pid": "1148983317", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung und Wortart Substantiv"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1148983317", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1148983317", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1148983317", "source": "GND"}], "variant_access_point": ["προστάτης"], "authorized_access_point": "prostatēs"} 1 +2024-09-11 09:10:12.925602 2024-09-11 09:10:12.925607 8604d189-ddcc-45dc-858d-b8e2e191a6cd {"md5": "77e8066f3b6c0a651d72fea058d4edd5", "pid": "1148982329", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung und Wortart"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1148982329", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1148982329", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1148982329", "source": "GND"}], "variant_access_point": ["οἶκος"], "authorized_access_point": "oikos"} 1 +2024-09-11 09:10:12.985364 2024-09-11 09:10:12.985367 11d0b2b9-e07b-4f0d-b1a0-a653f1cb6374 {"md5": "741b86e13689ad321612901fc47f6b06", "pid": "1145164617", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Kunstradfahren&oldid=171099299"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Radfahrer"}], "related": [{"authorized_access_point": "Kunstradfahren"}, {"authorized_access_point": "Kunstradfahrerin"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1145164617", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1145164617", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1145164617", "source": "GND"}], "variant_access_point": ["Kunstfahrer", "Kunstradsportler"], "authorized_access_point": "Kunstradfahrer"} 1 +2024-09-11 09:10:13.050743 2024-09-11 09:10:13.050749 53f16920-45b5-418d-ad93-07c462fbf5da {"md5": "d239da13e46d92fdf0af109316f7d235", "pid": "113724061X", "note": [{"label": ["Ohne HZ Motiv"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/113724061X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)113724061X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)113724061X", "source": "GND"}], "variant_access_point": ["Das Zarte", "Zartes", "Zartheit (Motiv)"], "authorized_access_point": "Zartheit"} 1 +2024-09-11 09:10:13.106963 2024-09-11 09:10:13.106967 8981cb35-e086-4fea-88ba-26a2e53501d8 {"md5": "0b73704f9315cd23a9808b38818c1076", "pid": "1136198113", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1136198113", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1136198113", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1136198113", "source": "GND"}], "variant_access_point": ["Bradford-Beta", "Bradford (Druckschrift)", "Beta (Druckschrift)"], "authorized_access_point": "Bradford Beta"} 1 +2024-09-11 09:10:13.163444 2024-09-11 09:10:13.163449 c928b895-ece8-4a10-b9ae-ba2ba6b15293 {"md5": "55341980fe2ec438e6e05565856a6b7e", "pid": "1136044426", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Zweite_industrielle_Revolution&oldid=221638655"], "noteType": "dataSource"}, {"label": ["Automatisierung der Fertigungstechnik, Übergang zur Massenproduktion basierend auf der Rationalisierung der industriellen Fertigung durch Automatisierung."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1136044426", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1136044426", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1136044426", "source": "GND"}], "authorized_access_point": "Zweite industrielle Revolution"} 1 +2024-09-11 09:10:13.221804 2024-09-11 09:10:13.22181 cadfa88f-6031-4679-aa10-c4c5a8456a7e {"md5": "eb7e5f5193d112cd45c20047d580e5bc", "pid": "1133521657", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=C%C4%83lu%C8%99ari&oldid=148469577", "Internet - https://ich.unesco.org/en/RL/calus-ritual-00090"], "noteType": "dataSource"}, {"label": ["ursprünglich ritueller Tanz eines in Rumänien existierenden brüderlichen Geheimbundes; 2008 von der UNESCO übernommen in die Repräsentative Liste des immateriellen Kulturerbes der Menschheit"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kulttanz"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334651957", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17763168", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb177631686"}], "authorized_access_point": "Căluş"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1133521657", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1133521657", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1133521657", "source": "GND"}], "authorized_access_point": "Căluş (Tanz)"} 1 +2024-09-11 09:10:13.278604 2024-09-11 09:10:13.278607 06f8abcb-4330-49a9-993f-b4dcc0f583a7 {"md5": "3fb0b88d60375097826f1e88328ecf70", "pid": "1132275067", "note": [{"label": ["Indigene Ethnie im karibischen Teil Kolumbiens"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Indianer"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1132275067", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1132275067", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1132275067", "source": "GND"}], "variant_access_point": ["Arosario", "Arsario", "Arzario", "Dimina", "D'm'na", "Guamaca", "Malayo", "Maracasero", "Maromasero", "Sanhá", "Sanja", "Sanké", "Wiwa (Kolumbien)"], "authorized_access_point": "Damana"} 1 +2024-09-11 09:10:13.333397 2024-09-11 09:10:13.333402 1b81b81d-4361-45e6-9afd-827003105e46 {"md5": "e988abcb71fa99f0694b0f17a697754f", "pid": "1132231477", "note": [{"label": ["Geistliche Übungen auf der Straße, im öffentlichen Raum einer Stadt, bei ausgeschlossenen Randgruppen, in Suppenküchen, Drogentreffs, vor dem Sozialamt; begründet durch Christian Herwartz S.J."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Exerzitien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1132231477", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1132231477", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1132231477", "source": "GND"}], "variant_access_point": ["Exerzitien auf der Straße"], "authorized_access_point": "Straßenexerzitien"} 1 +2024-09-11 09:10:13.399394 2024-09-11 09:10:13.3994 2888de09-6d48-4971-8faf-794f047270c1 {"md5": "114f82bf7f98f7163ac805b9c28c2de8", "pid": "1131360478", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Produktmanager"}, {"authorized_access_point": "Produktmanagement"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1131360478", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1131360478", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1131360478", "source": "GND"}], "authorized_access_point": "Produktmanagerin"} 1 +2024-09-11 09:10:13.467281 2024-09-11 09:10:13.467287 400a87f4-e77e-461e-b3b8-17686f61f238 {"md5": "de6a968fa719c480bc6db38434d17f7a", "pid": "1127087932", "note": [{"label": ["Sammelbezeichnung antimissionarischer Baptistenvereinigungen und Kirchen in den USA, hauptsächlich in den südl. Staaten"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Baptisten"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1127087932", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1127087932", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1127087932", "source": "GND"}], "variant_access_point": ["Anti-Mission Baptists", "Old School Baptists", "Predestinarian Baptists", "Hard Shell Baptists"], "authorized_access_point": "Primitive Baptists"} 1 +2024-09-11 09:10:13.523416 2024-09-11 09:10:13.523422 8c8a8d87-e212-4340-917b-97e25964c9db {"md5": "ba62bd4b75ae4ab79259057e7827fda9", "pid": "1126284823", "note": [{"label": ["Entworfen neben R. Kegler auch vom Schriftgestalter Desmond Poirier, Schriftfamilie mit 5 Schriften: Pop Art Comic, Pop Art Comic Bold Italic, Pop Art Comic Stencil, Pop Art Comic Three D, Pop Art Extras", "Benutzt für alle PoP-Art-Schriften. Einzelne PoP-Art-Schriften werden getrennt angesetzt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Font"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1126284823", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1126284823", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1126284823", "source": "GND"}], "variant_access_point": ["PoP-Art (Druckschrift)", "P22 PoP Art", "P22 PoP Art Comic", "P22 PoP Art (Druckschrift)", "P22-PoP-Art (Druckschrift)", "P22-PoP-Art"], "authorized_access_point": "PoP Art (Druckschrift)"} 1 +2024-09-11 09:10:13.580731 2024-09-11 09:10:13.580734 ab6b68d8-6a81-4a9a-85ad-e9c079f35fb2 {"md5": "dc7f7d9a9e212efc77ba8300b835f3d2", "pid": "1124811885", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1124811885", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1124811885", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1124811885", "source": "GND"}], "authorized_access_point": "Braut Christi (Motiv)"} 1 +2024-09-11 09:10:13.638769 2024-09-11 09:10:13.638772 cc1540b3-353c-47d3-8ba0-b4604e817c5a {"md5": "b5a6203dfc197b15da0d394e770bd8a3", "pid": "1124612114", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kirchliche Organisation"}], "related": [{"authorized_access_point": "Hilfsorganisation"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1124612114", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1124612114", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1124612114", "source": "GND"}], "variant_access_point": ["Hilfswerke"], "authorized_access_point": "Hilfswerk"} 1 +2024-09-11 09:10:16.003141 2024-09-11 09:10:16.003145 0da5521c-0835-480a-a878-90417298e2d0 {"md5": "c5699e8d2e97a0d0381b16c557663557", "pid": "1015187382", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kieselsediment"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7758564-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1015187382", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7758564-1", "source": "GND"}], "authorized_access_point": "Kieselschiefer"} 1 +2024-09-11 09:10:13.690576 2024-09-11 09:10:13.690579 84d5402c-fc49-4d36-92f8-3c762defa0db {"md5": "d57ff07eb38e9cb1e662788fdc2be4b1", "pid": "1120527775", "note": [{"label": ["Herausgeber: HanYang Information & Communication, gibt es nicht nur für lateinische Alphabete"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Serifenschrift"}, {"authorized_access_point": "Font"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1120527775", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1120527775", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1120527775", "source": "GND"}], "authorized_access_point": "Batang (Druckschrift)"} 1 +2024-09-11 09:10:13.746483 2024-09-11 09:10:13.746488 b23cc6f7-6425-439e-b076-ddaf47613d6a {"md5": "54f5210fa8d04878f688533d57bf2f58", "pid": "1120526310", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Font"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1120526310", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1120526310", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1120526310", "source": "GND"}], "variant_access_point": ["Nite Club (Druckschrift)"], "authorized_access_point": "NiteClub (Druckschrift)"} 1 +2024-09-11 09:10:13.80107 2024-09-11 09:10:13.801075 fe1046ac-982b-4f75-aa38-c710d961dd79 {"md5": "ad665764a29554f46a7b4d3ff8a50ed7", "pid": "1119923417", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Oration"}], "related": [{"authorized_access_point": "Gabenbereitung"}, {"authorized_access_point": "Offertorium"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1119923417", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1119923417", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1119923417", "source": "GND"}], "variant_access_point": ["Oratio secreta"], "authorized_access_point": "Gabengebet"} 1 +2024-09-11 09:10:13.854858 2024-09-11 09:10:13.854862 7615a3c6-cce4-4638-ad28-1910cb30ec35 {"md5": "80f4dc0d92358f0a95e607485980972e", "pid": "1117228215", "note": [{"label": ["Gesichtsschleier muslimischer Frauen mit schmalem Augenschlitz, im Unterschied zur die Augen vollständig bedeckenden Burka, v.a. auf der arabischen Halbinsel verbreitet; als weißer Niqab bereits vor der islamischen Kultur von Beduinen als Schutz vor Sonne und Sand verwendet; schwarz und in Verbindung mit einem Tschador getragen, verbreitete er sich seit Ende des 19. Jh. zunächst im Osmanischen Reich"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schleier"}], "related": [{"authorized_access_point": "Burka"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1117228215", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1117228215", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1117228215", "source": "GND"}], "variant_access_point": ["Nikab", "Nikap", "niqāb"], "authorized_access_point": "Niqab"} 1 +2024-09-11 09:10:13.91328 2024-09-11 09:10:13.913283 5721b141-06d7-4342-9b48-017510580113 {"md5": "6f66ddc811c67d7fefca4cdd3483d441", "pid": "1114188395", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Italienische_Metropolitanst%C3%A4dte"], "noteType": "dataSource"}, {"label": ["Als Metropolitanstädte werden Gebietskörperschaften bezeichnet, die sich auf dem Metropolitangebiet bzw. auf dem Gebiet vierzehn italienischer Großstädte und deren Umland erstrecken. Anders als der Wortlaut suggeriert, handelt es sich bei den Metropolitanstädten nicht um Städte im eigentlichen Sinne, sondern um administrativ abgegrenzte Stadtregionen, die neben der Kernstadt auch ein großes Hinterland umfassen. Als solche sind die italienischen Metropolitanstädte die Rechtsnachfolger von ehemaligen Provinzen, die umbenannt und mit zusätzlichen Funktionen ausgestattet wurden."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1114188395", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1114188395", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1114188395", "source": "GND"}], "variant_access_point": ["Città metropolitana", "Großstadt"], "authorized_access_point": "Metropolitanstadt"} 1 +2024-09-11 09:10:13.96799 2024-09-11 09:10:13.967993 6c0ae0bf-ddde-4c10-ae05-a4c1f13d9a80 {"md5": "35c01992c72553507f2fd29d885ab6b7", "pid": "1113031921", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Biokomposit&oldid=165586163"], "noteType": "dataSource"}, {"label": ["Verbundwerkstoffe mit einer biogenen Komponente, z.B. der Matrixwerkstoff ist ein Harz wie z.B. Polymer oder Biopolymer und die Verstärkung erfolgt durch eine Naturfaser wie z.B. Hanf."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Faserverbundwerkstoff"}, {"authorized_access_point": "Biowerkstoff"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1113031921", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1113031921", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1113031921", "source": "GND"}], "variant_access_point": ["Biokomposit", "Biocomposit"], "authorized_access_point": "Bioverbundwerkstoff"} 1 +2024-09-11 09:10:14.028994 2024-09-11 09:10:14.028996 56af7d22-aaf7-4d82-b963-d1a8f047c60d {"md5": "f1b988a54792f58fd708735999b96a47", "pid": "1111593051", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1111593051", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1111593051", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1111593051", "source": "GND"}], "authorized_access_point": "Lebensreform (Motiv)"} 1 +2024-09-11 09:10:14.083286 2024-09-11 09:10:14.083289 6dda7c26-7425-4407-aa76-0a29071186a4 {"md5": "6ee88c6fa0a89ba62ed5ea36885b11ca", "pid": "110642154X", "note": [{"label": ["Satzschrift, verwendet für das Gutenberg-Jahrbuch 2016"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Font"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/110642154X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)110642154X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)110642154X", "source": "GND"}], "authorized_access_point": "Mangan (Druckschrift)"} 1 +2024-09-11 09:10:14.188836 2024-09-11 09:10:14.18884 3ca20c29-0675-460e-a17f-28dca3fc4d05 {"md5": "f87ea0b534a94c16a7e080b3828c46af", "pid": "1103248596", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Bibliolog"], "noteType": "dataSource"}, {"label": ["Hermeneutisch-methodischer Zugang zu biblischen Texten, der auf die Begegnung zwischen Mensch und biblischem Text zielt; eine Gruppe, Gemeinde oder Schulklasse identifiziert sich mit biblischen Gestalten und entdeckt auf diesem Wege einen biblischen Text, der Leiter gibt den Text vor und weist die Rollen zu, methodisch bewegt sich der Bibliolog auf der rein sprachlichen Ebene, eng am Text; hermeneutisch an der Texterkenntnis orientiert"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Darstellendes Spiel"}], "related": [{"authorized_access_point": "Bibliodrama"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1103248596", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1103248596", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1103248596", "source": "GND"}], "authorized_access_point": "Bibliolog"} 1 +2024-09-11 09:10:14.241978 2024-09-11 09:10:14.241982 b8afa936-0669-4b23-8a4c-a25e7608e012 {"md5": "090526376219bc504687fec4957ce5a1", "pid": "1103240579", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Loop_quantum_gravity&oldid=1232727400"], "noteType": "dataSource"}, {"label": ["Hintergrundmetrikunabhängige Theorie der Quantengravitation, in der die Raum-Zeit durch ein Netzwerk dargestellt wird; also diskret ist."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hintergrundunabhängigkeit"}, {"authorized_access_point": "Quantengravitation"}], "related": [{"authorized_access_point": "Wilson-Loop"}, {"authorized_access_point": "Quantenkosmologie"}, {"authorized_access_point": "Raum-Zeit"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1103240579", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1103240579", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1103240579", "source": "GND"}], "variant_access_point": ["Loop-Quantengravitation", "Loop Quantum Gravity"], "authorized_access_point": "Schleifenquantengravitation"} 1 +2024-09-11 09:10:14.303641 2024-09-11 09:10:14.303645 4b7d1f59-df7f-4d81-ad9b-94a6dae8c23b {"md5": "54a085b41fb00c349b6bf860f613cc15", "pid": "1101498900", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1101498900", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1101498900", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1101498900", "source": "GND"}], "authorized_access_point": "Ungeziefer (Motiv)"} 1 +2024-09-11 09:10:14.365533 2024-09-11 09:10:14.365537 96f0a4cc-7265-4e70-9f69-3f9da12da0d5 {"md5": "293fba368d4aeb6567c30f417b1f5258", "pid": "1085190633", "note": [{"label": ["BSZ Liste: \\"Musikalische Besetzungen\\" - http://verbund-swop.bsz-bw.de/volltexte/2010/174/"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Trommel"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334657823", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2003002994", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2003002994"}], "authorized_access_point": "Tom-tom"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334657823", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16258655", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb162586557"}], "authorized_access_point": "Tom-tom"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1085190633", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1085190633", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1085190633", "source": "GND"}], "variant_access_point": ["Tom-Tom (Musikinstrument)", "Tom (Musikinstrument)"], "authorized_access_point": "Tomtom (Musikinstrument)"} 1 +2024-09-11 09:10:14.422022 2024-09-11 09:10:14.422026 970efb7a-ecdb-4f32-9fa1-f43a1624d5df {"md5": "e6d360a290b306c458cae867e1f64dc2", "pid": "108229814X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Auszeichnungsschrift"}, {"authorized_access_point": "Font"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/108229814X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)108229814X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)108229814X", "source": "GND"}], "authorized_access_point": "Kleopatra (Druckschrift)"} 1 +2024-09-11 09:10:14.478163 2024-09-11 09:10:14.478168 e2601afb-603d-40ac-852a-135cdc563a30 {"md5": "01c7a8eec54307c3dfa1cf9a40ac2b98", "pid": "1077459335", "note": [{"label": ["Besonders geschnittene Kleidung für Frauen, die schwanger sind"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Frauenkleidung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1077459335", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1077459335", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1077459335", "source": "GND"}], "variant_access_point": ["Umstandsmode", "Schwangerschaftskleidung"], "authorized_access_point": "Umstandskleidung"} 1 +2024-09-11 09:10:14.541342 2024-09-11 09:10:14.541347 8ba3885e-50ba-45de-a3bb-2a752ee5b0cc {"md5": "3f1a57e8ad3e4151c08bfdc3c81e3c7a", "pid": "1077386478", "note": [{"label": ["Schriftfamilie, mit und ohne Serifen, hergestellt von Fontsmith", "Benutzt für alle FS-Silas-Schriften. Einzelne FS-Silas-Schriften werden getrennt angesetzt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Antiqua"}, {"authorized_access_point": "Font"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1077386478", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1077386478", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1077386478", "source": "GND"}], "variant_access_point": ["Silas (Druckschrift)"], "authorized_access_point": "FS Silas"} 1 +2024-09-11 09:10:14.600408 2024-09-11 09:10:14.600413 8220c368-e6ad-4fa6-9009-26029baf9f90 {"md5": "c43f84aaabbb093972d481613267c7a4", "pid": "1077065876", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Organisation"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1077065876", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1077065876", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1077065876", "source": "GND"}], "authorized_access_point": "Halb-öffentliche Organisation"} 1 +2024-09-11 09:10:14.665403 2024-09-11 09:10:14.665408 06548d00-7ace-4dd1-b71e-a64c83c06dc4 {"md5": "cb57389ea1f2f6926a384daab049e1f1", "pid": "1069876534", "note": [{"label": ["Themenpark oder Ausstellung, die eine Marke oder ein Unternehmen erlebbar machen, Bsp. Autostadt Wolfsburg, BMW-Welt München"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Marketing"}, {"authorized_access_point": "Themenpark"}], "related": [{"authorized_access_point": "Ausstellung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1069876534", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1069876534", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1069876534", "source": "GND"}], "variant_access_point": ["Brandland", "Industrieerlebniswelt"], "authorized_access_point": "Markenwelt"} 1 +2024-09-11 09:10:14.723454 2024-09-11 09:10:14.723458 689722f3-cd0d-47e6-93c9-96699d47c880 {"md5": "dcd318e2309d2e2ea0a9459993f86337", "pid": "1069526703", "note": [{"label": ["Speziell für ein Buch aus der Handschrift von Alexandra Klobouk entwickelt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Font"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1069526703", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1069526703", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1069526703", "source": "GND"}], "authorized_access_point": "Kobolt (Druckschrift)"} 1 +2024-09-11 09:10:14.773398 2024-09-11 09:10:14.773401 d05154c0-3a3e-49d0-abed-83f20c605455 {"md5": "b604ed40aa8924d5308956916dfca34e", "pid": "1069453420", "note": [{"label": ["Kostenlose digitalisierte Version von Dieter Steffmann"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fraktur (Druckschrift)"}, {"authorized_access_point": "Font"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1069453420", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1069453420", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1069453420", "source": "GND"}], "authorized_access_point": "Kleist-Fraktur"} 1 +2024-09-11 09:10:14.82539 2024-09-11 09:10:14.825394 35563d2a-ac50-478e-8a55-d535926eac4d {"md5": "58263dc3457777098ba6793ad007b01b", "pid": "1068825820", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Geometrie"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1068825820", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1068825820", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1068825820", "source": "GND"}], "variant_access_point": ["Hilbert-Geometrie", "Hilbert geometry", "Hilbertian geometry"], "authorized_access_point": "Hilbertsche Geometrie"} 1 +2024-09-11 09:10:14.882216 2024-09-11 09:10:14.882219 8dc11ab1-03db-4a31-ac1b-03c06b187b83 {"md5": "a22633352cad9046f82503b87e18b1bf", "pid": "1068606975", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Marketingberatung"}], "related": [{"authorized_access_point": "Marketingberater"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1068606975", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1068606975", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1068606975", "source": "GND"}], "authorized_access_point": "Marketingberaterin"} 1 +2024-09-11 09:10:14.933508 2024-09-11 09:10:14.933513 852d2a2c-ef27-4bc2-8c55-9179deea4c3b {"md5": "25368a461f256c7286f05f4bba455ddb", "pid": "1068048328", "note": [{"label": ["Zuerst verwendet im Book of common prayer (Prayer Book of King Edward VII), Essex House Press 1903"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1068048328", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1068048328", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1068048328", "source": "GND"}], "variant_access_point": ["Prayer Book Type"], "authorized_access_point": "Prayer Book (Druckschrift)"} 1 +2024-09-11 09:10:14.988268 2024-09-11 09:10:14.988272 3db6a9a7-1352-4334-8b61-a94e0ec7288f {"md5": "30c3a8eeaf9e8950f76d3ed989507fc0", "pid": "1067974490", "note": [{"label": ["Zum Inbegriff der Schwarzwälder Tracht gewordene weibliche Kopfbedeckung aus Stroh mit roten (bei Mädchen) oder schwarzen (bei Frauen) Wollbällchen (\\"Bollen\\")"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Damenhut"}, {"authorized_access_point": "Tracht"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1067974490", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1067974490", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1067974490", "source": "GND"}], "authorized_access_point": "Bollenhut"} 1 +2024-09-11 09:10:15.049125 2024-09-11 09:10:15.049128 508fda80-d7a9-469f-ab54-5778216ee6a4 {"md5": "19db420e4ace4f824fe41f3aebe06ca7", "pid": "1066896534", "note": [{"label": ["Nützlinge aus der Familie der Blumenwanzen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Blumenwanzen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1066896534", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1066896534", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1066896534", "source": "GND"}], "variant_access_point": ["Triphleps laevigata"], "authorized_access_point": "Orius laevigatus"} 1 +2024-09-11 09:10:15.110402 2024-09-11 09:10:15.110407 637192f7-e50c-4400-b3eb-87590389794c {"md5": "980bed165bb155a21dfa7f96e1609600", "pid": "1065486421", "note": [{"label": ["Majuskelschrift gründet auf der handgeschriebenen Schrift eines unbekannten Nachbarn"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Font"}, {"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1065486421", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1065486421", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1065486421", "source": "GND"}], "authorized_access_point": "Yard Sale"} 1 +2024-09-11 09:10:16.61314 2024-09-11 09:10:16.613144 32485fb5-1948-419e-8a36-db5e441e6e82 {"md5": "d1d26860df8a6d7e2b8d89d153a1df2c", "pid": "1000642119", "note": [{"label": ["Benutzt für alle Steinschrift-Schriften. Einzelne Steinschrift-Schriften werden getrennt angesetzt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Antiqua"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7693298-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1000642119", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7693298-9", "source": "GND"}], "authorized_access_point": "Steinschrift"} 1 +2024-09-11 09:10:15.164924 2024-09-11 09:10:15.16493 ca491ab2-b1bc-45cf-91aa-840d35964452 {"md5": "46e7c9feb4145556a32633a319f66c14", "pid": "106307147X", "note": [{"label": ["Valencianische Mundart im Tal Valldigna in der span. Provinz Valencia"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Valencianisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/106307147X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)106307147X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)106307147X", "source": "GND"}], "authorized_access_point": "Mundart Valencianisch (Valldigna)"} 1 +2024-09-11 09:10:15.22726 2024-09-11 09:10:15.227263 b9a57c88-358e-448e-88a4-03691eace12e {"md5": "dbe83e9b0f423978d108eff0d78ad5ec", "pid": "105858488X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Musiker"}], "related": [{"authorized_access_point": "Folkmusikerin"}, {"authorized_access_point": "Folk music"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133818382", "source": "GND"}, {"type": "bf:Nbn", "value": "sh97002077", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh97002077"}], "authorized_access_point": "Folk musicians"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133818382", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12508672", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12508672r"}], "authorized_access_point": "Musiciens de folk"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/105858488X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)105858488X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)105858488X", "source": "GND"}], "authorized_access_point": "Folkmusiker"} 1 +2024-09-11 09:10:15.284917 2024-09-11 09:10:15.284924 77cb34fb-0af1-4ad2-8568-b98c2afd5a58 {"md5": "6e28cb814b9d2b7ec50aae02b438f5b0", "pid": "1055013458", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Antiqua"}, {"authorized_access_point": "Font"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1055013458", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1055013458", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1055013458", "source": "GND"}], "authorized_access_point": "Fresco (Druckschrift)"} 1 +2024-09-11 09:10:15.338137 2024-09-11 09:10:15.338141 66fda987-37d4-4570-87ed-2b58b80e0a9a {"md5": "439543d703d1831fae2e654229223d67", "pid": "1054183104", "note": [{"label": ["Markengattung zum Frankieren von Zeitungssendungen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Briefmarke"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1054183104", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1054183104", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1054183104", "source": "GND"}], "authorized_access_point": "Zeitungsmarke"} 1 +2024-09-11 09:10:15.392089 2024-09-11 09:10:15.39209 c87e302b-698e-4059-b57d-fe44a8f3de92 {"md5": "3e4a26cb8c6316f57b9aa72060f0c1a8", "pid": "1054182779", "note": [{"label": ["Markenart zur Freimachung bei Massenauslieferung von Geschäftsdrucksachen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Drucksachenmarke"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1054182779", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1054182779", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1054182779", "source": "GND"}], "authorized_access_point": "Geschäftsdrucksachenmarke"} 1 +2024-09-11 09:10:15.445195 2024-09-11 09:10:15.445201 79acca89-53b2-47d9-abf9-e24b1e9cd034 {"md5": "24abf5117dc186f02271e77825ba13a6", "pid": "1054182620", "note": [{"label": ["Markengattung zum Freimachen von Drucksachen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Briefmarke"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1054182620", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1054182620", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1054182620", "source": "GND"}], "authorized_access_point": "Drucksachenmarke"} 1 +2024-09-11 09:10:15.500499 2024-09-11 09:10:15.500504 0a5de1a1-50fe-4faf-8b50-beacc9e0c3be {"md5": "1825a3f4264053de730a6b925ded123e", "pid": "1051146089", "note": [{"label": ["Für das schwedische Mode- und Kulturmagazin \\"Rodeo\\" 2012 bei \\"Letters from Sweden\\" entworfen; beeinflusst von Schönheit, Schreibschrift, Graffiti und Kritzeleien"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Font"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1051146089", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1051146089", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1051146089", "source": "GND"}], "authorized_access_point": "Line (Druckschrift)"} 1 +2024-09-11 09:10:15.556335 2024-09-11 09:10:15.556338 95e22fed-89e6-4038-a459-5f225218211e {"md5": "fa7a23fc5365386c52a68558151c2b20", "pid": "1049270851", "note": [{"label": ["Derivat der Salicylsäure und des Anilins, die miteinander als Amid verknüpft sind (Salicylanilid); Wirkung: Vermizid und Molluskizid; C13H8Cl2N2O4"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Salicylsäurederivate"}, {"authorized_access_point": "Anilinderivate"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1279524227", "source": "GND"}, {"type": "bf:Nbn", "value": "D009534", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D009534"}], "authorized_access_point": "Niclosamide"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1049270851", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1049270851", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1049270851", "source": "GND"}], "variant_access_point": ["Ethanolamin-Salz"], "authorized_access_point": "Niclosamid"} 1 +2024-09-11 09:10:16.674375 2024-09-11 09:10:16.67438 7bf65dda-db32-44e4-a8d1-6e808b3ae422 {"md5": "a6cdb1147511ee788aaf84986808435a", "pid": "1000168972", "note": [{"label": ["Entstehungsjahr: 1923"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fraktur (Druckschrift)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7690681-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1000168972", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7690681-4", "source": "GND"}], "authorized_access_point": "Mörike-Fraktur"} 1 +2024-09-11 09:10:15.622375 2024-09-11 09:10:15.62238 978f6317-a44c-4d26-8b41-f7c52b7a3c5f {"md5": "01f0f13d51b02fab258717c7c197e8e9", "pid": "1044279206", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Weinkellner&oldid=209455822"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kellnerin"}], "related": [{"authorized_access_point": "Sommelier"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1044279206", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1044279206", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1044279206", "source": "GND"}], "variant_access_point": ["Weinkellnerin"], "authorized_access_point": "Sommelière"} 1 +2024-09-11 09:10:15.674314 2024-09-11 09:10:15.674319 d9d9c848-d109-46f1-b1d4-2062d496db2c {"md5": "95b945b3e47002f4425b65726abd9755", "pid": "1041611064", "note": [{"label": ["Meist über digitale Plattformen abgewickelte Finanzierungsmöglichkeit, bei der eine größere Anzahl von Personen den Finanzierungsbedarf eines Projektes deckt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Finanzierung"}, {"authorized_access_point": "Kapitalbeschaffung"}, {"authorized_access_point": "Crowdsourcing"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334879613", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2012003482", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2012003482"}], "authorized_access_point": "Crowd funding"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334879613", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16596756q", "source": "BNF"}, {"type": "uri", "value": "https://catalogue.bnf.fr/ark:/12148/cb16596756q"}], "authorized_access_point": "Financement participatif"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1042215081", "source": "GND"}, {"type": "bf:Nbn", "value": "30026-6", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/30026-6"}], "authorized_access_point": "Crowdfunding"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1041611064", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1041611064", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1041611064", "source": "GND"}], "variant_access_point": ["Schwarmfinanzierung", "Crowdinvestment", "Crowdinvesting"], "authorized_access_point": "Crowdfunding"} 1 +2024-09-11 09:10:15.759233 2024-09-11 09:10:15.759238 9b6dc9a9-911c-4caa-a189-a6233a462266 {"md5": "ebfdd136d30207b3e665eab039f13331", "pid": "1036907430", "note": [{"label": ["Benutzt soweit im Ausland lebend"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ausländischer Student"}, {"authorized_access_point": "Belgier"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334679959", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85012953", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85012953"}], "authorized_access_point": "Belgian students"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334679959", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16084808", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16084808k"}], "authorized_access_point": "Étudiants belges"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1036907430", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1036907430", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1036907430", "source": "GND"}], "authorized_access_point": "Belgischer Student"} 1 +2024-09-11 09:10:15.827765 2024-09-11 09:10:15.82777 f2af46ca-a180-4457-b838-c2ee87fc3092 {"md5": "02259806d69c144b4d3c5b17c349a6c0", "pid": "1036857263", "note": [{"label": ["Wikipedia, unter Kindesmisshandlung - https://de.wikipedia.org/w/index.php?oldid=245619752"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Missbrauch"}], "related": [{"authorized_access_point": "Psychoterror"}, {"authorized_access_point": "Mobbing"}, {"authorized_access_point": "Gaslighting"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1221158570", "source": "GND"}, {"type": "bf:Nbn", "value": "sh94002308", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh94002308"}], "authorized_access_point": "Psychological abuse"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1221158570", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16918426", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16918426g"}], "authorized_access_point": "Violence psychologique"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1036857263", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1036857263", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1036857263", "source": "GND"}], "variant_access_point": ["Psychischer Missbrauch", "Emotionale Gewalt", "Psychische Gewalt", "Seelische Gewalt"], "authorized_access_point": "Emotionaler Missbrauch"} 1 +2024-09-11 09:10:15.892891 2024-09-11 09:10:15.892895 336664f2-b513-4a00-bb26-2951c36c6d7f {"md5": "5b52b373b8c0e7cd11b137c1701e0364", "pid": "1029263361", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Proteste_in_Spanien_2011/2012&oldid=246952051", "Wikipedia - https://es.wikipedia.org/wiki/Movimiento_15-M"], "noteType": "dataSource"}, {"label": ["Span. polit. Protestbewegung seit d. 15. Mai 2011"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Protestbewegung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1029263361", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1029263361", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1029263361", "source": "GND"}], "variant_access_point": ["15M", "15-M", "Indignados", "Movimiento de los indignados", "Bewegung 15. Mai"], "authorized_access_point": "Movimiento 15-M"} 1 +2024-09-11 09:10:15.94513 2024-09-11 09:10:15.945134 46b202d4-bba3-4382-a5c4-67d4317074fb {"md5": "d91acaddede4794d12b78c674f5e6fd1", "pid": "1019980389", "note": [{"label": ["Benutzt soweit im Ausland lebend"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ausländischer Student"}, {"authorized_access_point": "Österreicher"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133467972X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85009755", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85009755"}], "authorized_access_point": "Austrian students"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133467972X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17124632", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17124632z"}], "authorized_access_point": "Étudiants autrichiens"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7855380-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1019980389", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7855380-5", "source": "GND"}], "authorized_access_point": "Österreichischer Student"} 1 +2024-09-11 09:10:16.062217 2024-09-11 09:10:16.062221 6c660a44-6e65-472b-9a88-04c056444e0d {"md5": "db6d208975fd8974e160c596fd313a0f", "pid": "1014400783", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Auktion"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1335137777", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2003012332", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2003012332"}], "authorized_access_point": "Postage stamp auctions"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7755757-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1014400783", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7755757-8", "source": "GND"}], "variant_access_point": ["Briefmarke", "Briefmarkenversteigerung"], "authorized_access_point": "Briefmarkenauktion"} 1 +2024-09-11 09:10:16.123567 2024-09-11 09:10:16.123571 e5aaeb4b-47e5-42d9-977e-ccbdbe310c1a {"md5": "bdc9a386e97dbfbc88ef22786882026e", "pid": "1013709640", "note": [{"label": ["Japan. Tanzform, im 8. Jh. aus China übernommen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tanz"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134319576", "source": "GND"}, {"type": "bf:Nbn", "value": "sh88005510", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh88005510"}], "authorized_access_point": "Gigaku"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134319576", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12423745", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb124237455"}], "authorized_access_point": "Gigaku"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7753091-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1013709640", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7753091-3", "source": "GND"}], "authorized_access_point": "Gigaku"} 1 +2024-09-11 09:10:16.190771 2024-09-11 09:10:16.190775 c25ea7a4-014e-46b4-8d69-eea31afe7f8d {"md5": "437d351a52edd0c82d982a98d80821ac", "pid": "1010242008", "note": [{"label": ["Art der Giftnattern (Elapidae)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Giftnattern"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1323122141", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17057750", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17057750b"}], "authorized_access_point": "Bungarus fasciatus"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7736415-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1010242008", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7736415-6", "source": "GND"}], "variant_access_point": ["Gelber Bungar", "Bänder-Krait", "Gebänderter Krait", "Bungarus fasciatus"], "authorized_access_point": "Krait"} 1 +2024-09-11 09:10:16.281925 2024-09-11 09:10:16.28193 ee444251-9fdb-4638-ad45-9cc5f4710911 {"md5": "4f9adc805ade0fcb5a82dfadf9eefef9", "pid": "1009887017", "note": [{"label": ["Zurücklenkung der Aufmerksamkeit auf das Ich und seine Tätigkeit."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7733566-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1009887017", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7733566-1", "source": "GND"}], "authorized_access_point": "Reflexion (Psychologie)"} 1 +2024-09-11 09:10:16.338734 2024-09-11 09:10:16.338737 c846c35b-58f8-462f-848b-713fea2580c8 {"md5": "ef4d9930547048797e76196f4a70f5be", "pid": "1008996270", "note": [{"label": ["Im Barock als Gegensatz zur Kirchensonate, im 20. Jhdt. als Bezeichnung wieder aufgegriffen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sonate"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7727964-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1008996270", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7727964-5", "source": "GND"}], "variant_access_point": ["Sonata da camera", "Sonate de chambre"], "authorized_access_point": "Kammersonate"} 1 +2024-09-11 09:10:16.392493 2024-09-11 09:10:16.392497 efc639cc-c537-44ba-9c10-ffe2a4a6e0d3 {"md5": "230093fb0e0af9edec60f85c602daa64", "pid": "1008049115", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zunft"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7722831-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1008049115", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7722831-5", "source": "GND"}], "variant_access_point": ["Messerschmied"], "authorized_access_point": "Messerschmiedezunft"} 1 +2024-09-11 09:10:16.447904 2024-09-11 09:10:16.447908 9011b187-0ecd-44f0-8e32-dda26c5cd373 {"md5": "a3889b451964b1606a3dc1877c6a9310", "pid": "100735531X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7718660-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)100735531X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7718660-6", "source": "GND"}], "authorized_access_point": "Golfkrieg (1990-1991, Motiv)"} 1 +2024-09-11 09:10:16.503369 2024-09-11 09:10:16.503373 ee7c3b35-bce3-4846-a321-4c6997fb663c {"md5": "c20bc09d24ec0d389baf917047dc5b7b", "pid": "1006894675", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Säule"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7716437-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1006894675", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7716437-4", "source": "GND"}], "authorized_access_point": "Poller"} 1 +2024-09-11 09:10:16.556573 2024-09-11 09:10:16.556578 d2648d0e-431d-4010-8739-5f5a34aadf35 {"md5": "6b645af4a145850f9fb5cd621392886f", "pid": "1002238951", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Conditio_humana"], "noteType": "dataSource"}, {"label": ["Die Umstände des Menschseins und die Natur des Menschen als Gegenstand der Philosophischen Anthropologie"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Philosophische Anthropologie"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7701000-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1002238951", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7701000-0", "source": "GND"}], "variant_access_point": ["condicio humana"], "authorized_access_point": "Conditio humana"} 1 +2024-09-11 09:10:16.734292 2024-09-11 09:10:16.734297 918d945a-58f3-472f-aaf3-3e6b98ebbaa5 {"md5": "9a29e21147cd980434c2f2eb95ba23e3", "pid": "998776785", "note": [{"label": ["Wikipedia - http://www.typolexikon.de/g/gebrochene-schriften.html"], "noteType": "dataSource"}, {"label": ["Auch Blackletter, Gotische Schrift oder Frakturschrift umgangssprachlich genannt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "related": [{"authorized_access_point": "Gotische Schrift"}, {"authorized_access_point": "Fraktur (Druckschrift)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7683814-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)998776785", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7683814-6", "source": "GND"}], "variant_access_point": ["Deutsche Schrift"], "authorized_access_point": "Gebrochene Schrift"} 1 +2024-09-11 09:10:16.78766 2024-09-11 09:10:16.787664 29026b17-159d-43bb-b89a-351c73044394 {"md5": "e077bfd805384199b09b955342f0a487", "pid": "995780951", "note": [{"label": ["Schmied, der spezialisiert ist auf das Schmieden von Gliederketten aus Eisen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schmied"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7668511-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)995780951", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7668511-1", "source": "GND"}], "authorized_access_point": "Kettenschmied"} 1 +2024-09-11 09:10:16.836368 2024-09-11 09:10:16.836372 f434a713-456a-4e7a-8986-642e6eebdc42 {"md5": "e7a7163477aaa21132321b40c6c7b429", "pid": "994659857", "note": [{"label": ["Afrobrasilianischer Tanz"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tanz"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334651493", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2006000144", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2006000144"}], "authorized_access_point": "Jongo (Dance)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334651493", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17146982", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb171469827"}], "authorized_access_point": "Jongo (danse)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7661541-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)994659857", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7661541-8", "source": "GND"}], "variant_access_point": ["Caxambu (Tanz)"], "authorized_access_point": "Jongo"} 1 +2024-09-11 09:10:16.887409 2024-09-11 09:10:16.887415 41b7acc8-0e87-42f2-ad1e-69b0392401d1 {"md5": "6f5dddc3c009408c462400d859efd866", "pid": "99405212X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7657749-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)99405212X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7657749-1", "source": "GND"}], "authorized_access_point": "Ärztliche Behandlung (Motiv)"} 1 +2024-09-11 09:10:16.938087 2024-09-11 09:10:16.93809 98dc7e90-fc7a-4ec7-bdc3-92d221707321 {"md5": "7df59078bb989ed29957ccb5b17f1258", "pid": "99283600X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Brettspiel"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7648685-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)99283600X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7648685-0", "source": "GND"}], "variant_access_point": ["Chaupad", "Chaupar", "Chaupat", "Chaupur", "Pat (Brettspiel)"], "authorized_access_point": "Pachisi"} 1 +2024-09-11 09:10:16.990404 2024-09-11 09:10:16.990407 4128cbc9-d65c-4317-bb22-b445653a9b31 {"md5": "7336c2b6b3d0434301bc91cae0e2a530", "pid": "992757126", "note": [{"label": ["Wikipedia unter Koch, Rudolf - http://www.klingspor-museum.de/KlingsporKuenstler/Schriftdesigner/Koch/koch_special.pdf"], "noteType": "dataSource"}, {"label": ["Entstehungsjahr: 1933/34"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fraktur (Druckschrift)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647830-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992757126", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647830-0", "source": "GND"}], "authorized_access_point": "Neu-Fraktur"} 1 +2024-09-11 09:10:17.048218 2024-09-11 09:10:17.048222 a31df0eb-b514-4a5f-a1b4-4e2027f8e137 {"md5": "65c1497c4be4e5da1d8d8848499186ae", "pid": "992754909", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647600-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992754909", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647600-5", "source": "GND"}], "authorized_access_point": "Retina (Druckschrift)"} 1 +2024-09-11 09:10:17.103753 2024-09-11 09:10:17.103756 8a4f70ef-8fff-44c7-ba5b-71991f20fc5d {"md5": "921ad26d0a30b907f67ffc3a27b83cc7", "pid": "992754550", "note": [{"label": ["Verwendet für alle auf dem arabischen Schriftsystem basierenden Druckschriften; Einordnung in Gruppe XI der DIN 16518"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Arabische Schrift"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113367707X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85139095", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85139095"}], "authorized_access_point": "Arabic type"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113367707X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11973333", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11973333t"}], "authorized_access_point": "Caractères arabes (imprimerie)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254405860", "source": "GND"}, {"type": "bf:Nbn", "value": "XX550520", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX550520"}], "authorized_access_point": "Tipos de imprenta árabes"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647567-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992754550", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647567-0", "source": "GND"}], "authorized_access_point": "Arabische Schrift (Druckschrift)"} 1 +2024-09-11 09:10:17.155859 2024-09-11 09:10:17.155862 15ad6949-e3eb-430b-9272-c46d7fbb335f {"md5": "a1f728fb0ff31f94538aabd4e960871b", "pid": "992754534", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Antiqua"}, {"authorized_access_point": "Font"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647565-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992754534", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647565-7", "source": "GND"}], "authorized_access_point": "Typewriter Elite"} 1 +2024-09-11 09:10:17.219354 2024-09-11 09:10:17.219359 4d7db909-2f69-437a-a22b-0eb8cddb58ce {"md5": "3dcc5d1639267979dd19cb544b46f560", "pid": "992754305", "note": [{"label": ["Entstehungszeit 1992, bei MyFonts ab Januar 2000"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Groteskschrift"}, {"authorized_access_point": "Font"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647539-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992754305", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647539-6", "source": "GND"}], "authorized_access_point": "FF Schulbuch"} 1 +2024-09-11 09:10:17.280071 2024-09-11 09:10:17.280075 3b55bf1d-a1b0-4238-a203-45a90b6c674a {"md5": "aa2c9409a592a3ae7e6b851108be64b9", "pid": "992753694", "note": [{"label": ["Entstehungszeit 1922, auch kursiv"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Antiqua"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647475-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992753694", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647475-6", "source": "GND"}], "authorized_access_point": "Koch-Antiqua"} 1 +2024-09-11 09:10:17.337098 2024-09-11 09:10:17.337102 1c43f803-2018-4e2d-96fa-068aad619ed3 {"md5": "cb5b42c5af7e4ac88e9f9b3f6e7b968d", "pid": "99275366X", "note": [{"label": ["Veröffentlicht: 1914. Abweichende Entstehungszeit 1917 (Klingspor)", "Die Benennung Maximilian-Fraktur (Zettelkatalog Deutsches Buch- und Schriftmuseum, Entstehungszeit 1922) ist bislang nur nachgewiesen in: Faust : eine Monatsschrift für Kunst, Literatur und Musik. Die Zeitschrift erschien von 1921-1926. Die Maximilian-Fraktur entspricht der Maximilian-Gotisch (Stand: 22.10.2021)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gebrochene Schrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647473-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)99275366X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647473-2", "source": "GND"}], "variant_access_point": ["Maximilian (Druckschrift)", "Maximilian-Fraktur"], "authorized_access_point": "Maximilian-Gotisch"} 1 +2024-09-11 09:10:17.391757 2024-09-11 09:10:17.39176 8721570f-78ac-4d4b-8187-a4f9814f9a46 {"md5": "cc1083ab5c147e46ec3f4a655f2a81b3", "pid": "992752973", "note": [{"label": ["Entstehungsjahr 1929 (normal, mager, halbfett, fett)", "Benutzt für alle Metro-Schriften. Einzelne Metro-Schriften werden getrennt angesetzt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Groteskschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647406-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992752973", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647406-9", "source": "GND"}], "variant_access_point": ["Metroblack", "Metrolite", "Metrothin", "Metromedium"], "authorized_access_point": "Metro (Druckschrift)"} 1 +2024-09-11 09:10:17.44736 2024-09-11 09:10:17.447364 aa0c82a0-1077-4a9e-a71a-afcceb5fda71 {"md5": "c8ba1c2e2c3ce6176911b4c36604a8a4", "pid": "992751020", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647399-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992751020", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647399-5", "source": "GND"}], "authorized_access_point": "Astrée"} 1 +2024-09-11 09:10:17.502717 2024-09-11 09:10:17.502721 11e5c023-db5b-4a08-8a27-906e5c801c24 {"md5": "c242a656918fb09132fb79a94e2241f3", "pid": "99274881X", "note": [{"label": ["Entstehungszeit 1901; Hausschnitt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fraktur (Druckschrift)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647389-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)99274881X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647389-2", "source": "GND"}], "authorized_access_point": "Offenbacher Fraktur"} 1 +2024-09-11 09:10:17.558363 2024-09-11 09:10:17.558373 9820b77b-d7c2-4da7-b24b-1c5c51b03eb5 {"md5": "2e31644969583550514f4dbccba342f3", "pid": "992747031", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Font"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647381-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992747031", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647381-8", "source": "GND"}], "authorized_access_point": "Helena (Druckschrift)"} 1 +2024-09-11 09:10:17.608212 2024-09-11 09:10:17.608216 f8d29572-85ad-4748-a322-6b6387d62d01 {"md5": "949c42e06e95fd043fbbaa05ad664c5f", "pid": "992746779", "note": [{"label": ["Entstehungszeit 1924; weitere Formen: Wilhelm-Klingspor-Gotisch, Wilhelm-Klingspor-Fraktur"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gebrochene Schrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647356-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992746779", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647356-9", "source": "GND"}], "variant_access_point": ["Wilhelm Klingspor Schrift"], "authorized_access_point": "Wilhelm-Klingspor-Schrift"} 1 +2024-09-11 09:10:17.666759 2024-09-11 09:10:17.666764 1bf91140-e11c-4907-bd5a-d51610266fb9 {"md5": "976233483a3b22107255e6f0bebab084", "pid": "992746248", "note": [{"label": ["Entstehungszeit: 1900"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schwabacher"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647301-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992746248", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647301-6", "source": "GND"}], "authorized_access_point": "Offenbacher Schwabacher"} 1 +2024-09-11 09:10:17.737704 2024-09-11 09:10:17.737709 1cb874d6-2934-4be6-a5f5-a1f0fae02b52 {"md5": "cd9919e4f2a3e32c4bbaf8f62a556f08", "pid": "992745969", "note": [{"label": ["Entstehungszeit 1927; Schrift der Heuvelpers"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647276-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992745969", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647276-0", "source": "GND"}], "variant_access_point": ["Meidoorntype"], "authorized_access_point": "Meidoorn (Druckschrift)"} 1 +2024-09-11 09:10:17.808472 2024-09-11 09:10:17.808476 23580e81-64fb-4592-9f86-19708c92dc2b {"md5": "7f422eb8e0081b539488eb8fc997600c", "pid": "992745292", "note": [{"label": ["Entstehungszeit vor 1940"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647206-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992745292", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647206-1", "source": "GND"}], "authorized_access_point": "Konupkova italka"} 1 +2024-09-11 09:10:17.865175 2024-09-11 09:10:17.865181 40704be9-9213-4a75-bce7-be91a799e030 {"md5": "fbae9b8cf23fd5f1930c6af2ff6bbad6", "pid": "992745187", "note": [{"label": ["Entstehungszeit 1905"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Antiqua"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647196-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992745187", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647196-2", "source": "GND"}], "authorized_access_point": "König-Antiqua"} 1 +2024-09-11 09:10:17.925954 2024-09-11 09:10:17.925958 cb3ae43a-2657-42eb-bf21-d51652d4cd15 {"md5": "41e41abd0a0ab3200fc0001cd8285011", "pid": "99274508X", "note": [{"label": ["Entstehungszeit um 1906"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gotische Schrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647185-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)99274508X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647185-8", "source": "GND"}], "variant_access_point": ["Hupp-Liturgisch"], "authorized_access_point": "Liturgisch (Druckschrift)"} 1 +2024-09-11 09:10:17.987384 2024-09-11 09:10:17.987389 b9be06de-7c15-4789-86e2-55ec52f1dec6 {"md5": "123a66502253d7c7aee1a37ae3fe69a8", "pid": "992744792", "note": [{"label": ["Gestalter: Koch, Rudolf <1876-1934>, fertiggestellt von Friedrich Heinrichsen, Halbfette von Hans Kühne; Druckschrift mit gebrochenen Versalien"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647157-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992744792", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647157-3", "source": "GND"}], "variant_access_point": ["Offenbacher Schrift (Druckschrift)"], "authorized_access_point": "Offenbach (Druckschrift)"} 1 +2024-09-11 09:10:18.0481 2024-09-11 09:10:18.048105 efab8712-1a91-49cc-be85-ae148619fe03 {"md5": "0b299a128d61221265e20e253623cbd7", "pid": "992744091", "note": [{"label": ["Enstehungsjahr 1965"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Font"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647085-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992744091", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647085-4", "source": "GND"}], "authorized_access_point": "Amelia (Druckschrift)"} 1 +2024-09-11 09:10:18.111155 2024-09-11 09:10:18.111159 98639542-b439-42a7-b5b9-b55d50c741ba {"md5": "dbbc854ed960d40d9ab0864702316e7d", "pid": "992743605", "note": [{"label": ["Nachgewiesen 2005"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647034-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992743605", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647034-9", "source": "GND"}], "authorized_access_point": "Cocotte minute (Druckschrift)"} 1 +2024-09-11 09:10:18.172856 2024-09-11 09:10:18.17286 3746ba42-9154-440c-acd7-d8e7fcc9bd74 {"md5": "fd0f9434a170529bd95d1a9f822bf7f0", "pid": "992743273", "note": [{"label": ["Wikipedia unter Rudolf Koch - http://www.klingspor-museum.de/KlingsporKuenstler/Schriftdesigner/Koch/RudolfKoch.pdf"], "noteType": "dataSource"}, {"label": ["Entstehunmgsjahr 1929; Auszeichnungsschrift"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Groteskschrift"}], "related": [{"authorized_access_point": "Kabel (Druckschrift)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7647001-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992743273", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7647001-5", "source": "GND"}], "authorized_access_point": "Zeppelin (Druckschrift)"} 1 +2024-09-11 09:10:18.233214 2024-09-11 09:10:18.233219 7a7a79d0-a24b-4dee-adad-a4594d4a94ec {"md5": "9a27ff068c34f913460e1388ef3e2b7f", "pid": "992742889", "note": [{"label": ["Entstehungszeit 1924"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gotische Schrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646956-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992742889", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646956-6", "source": "GND"}], "authorized_access_point": "Tiemann-Gotisch"} 1 +2024-09-11 09:10:18.29375 2024-09-11 09:10:18.293753 d84d1b95-bb1b-4faf-a567-e27e7d886782 {"md5": "0ac74b09ae6331cf06610b0578ba0dbd", "pid": "992742854", "note": [{"label": ["Benannt nach Heinrich Wallau, einem Buchdrucker und Schriftkenner aus Mainz, mit der Breitfeder entworfen, auch mager, fett, halbfett und mit unterschiedlichen Großbuchstaben"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Rundgotische Schrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646953-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992742854", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646953-0", "source": "GND"}], "authorized_access_point": "Wallau (Druckschrift)"} 1 +2024-09-11 09:10:18.355779 2024-09-11 09:10:18.355784 222af061-5d64-4c0a-b683-bf5cf411984f {"md5": "8d0768da0197374416bb34626c7ee21b", "pid": "992742722", "note": [{"label": ["Entstehungsjahr 1934 (normal u.fett); licht 1937"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646939-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992742722", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646939-6", "source": "GND"}], "authorized_access_point": "Superba (Druckschrift)"} 1 +2024-09-11 09:10:18.411771 2024-09-11 09:10:18.411776 3123da4d-7b3f-4b27-86f5-42dca0efc1fa {"md5": "b088a612d5c70a6d219e7ad886ed0037", "pid": "992742498", "note": [{"label": ["Entstehungszeit 1939; mager, fett, kursiv, schmal fett"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646915-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992742498", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646915-3", "source": "GND"}], "authorized_access_point": "Stahl (Druckschrift)"} 1 +2024-09-11 09:10:18.472391 2024-09-11 09:10:18.472394 1e6b5b79-10ba-418f-8916-39bd9c709a62 {"md5": "10359bb5132b555bd55c6100fc751672", "pid": "992741696", "note": [{"label": ["Entstehungsjahr 1939"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schreibschrift (Druckschrift)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646834-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992741696", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646834-3", "source": "GND"}], "authorized_access_point": "Gavotte (Druckschrift)"} 1 +2024-09-11 09:10:18.529793 2024-09-11 09:10:18.529797 d4cab683-b2a4-40a9-8e3f-8e65ede21adc {"md5": "6f79106ea7f49958de526a138d2ba30c", "pid": "992741491", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646814-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992741491", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646814-8", "source": "GND"}], "variant_access_point": ["Schlemihl (Schrift)"], "authorized_access_point": "Peter Schlemihl (Druckschrift)"} 1 +2024-09-11 09:10:18.587785 2024-09-11 09:10:18.587789 abbc0351-a879-4af3-99eb-f08384f73015 {"md5": "6808a98849bab2b37ad942f2930d28dc", "pid": "992739659", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646620-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992739659", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646620-6", "source": "GND"}], "authorized_access_point": "Romantiques"} 1 +2024-09-11 09:10:18.647084 2024-09-11 09:10:18.647089 50c5712a-2185-42b8-b702-411d4cd5b20d {"md5": "48fb49a98a7fd9ade4f17388c68a597f", "pid": "992738601", "note": [{"label": ["Wikipedia - http://www.klingspor-museum.de/KlingsporKuenstler/Schriftdesigner/Brudi/Brudi.pdf"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646519-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992738601", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646519-6", "source": "GND"}], "authorized_access_point": "Orbis (Druckschrift)"} 1 +2024-09-11 09:10:18.705258 2024-09-11 09:10:18.705262 c0b47c1f-34a0-4940-bf4e-b1656cd75f5f {"md5": "2084c4e979deb391d3b851c7ae252098", "pid": "992738172", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646473-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992738172", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646473-8", "source": "GND"}], "authorized_access_point": "Phalanx (Druckschrift)"} 1 +2024-09-11 09:10:18.763081 2024-09-11 09:10:18.763085 3c2dfc7b-0f21-41b0-8402-95971943862f {"md5": "ada1507f52db66b677fdb6df0b77586b", "pid": "992738083", "note": [{"label": ["Wikipedia unter Walter Tiemann - http://www.klingspor-museum.de/KlingsporKuenstler/Schriftdesigner/Tiemann/WTiemann.pdf"], "noteType": "dataSource"}, {"label": ["Entstehungszeit 1923, halbfett 1917"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Antiqua"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646464-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992738083", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646464-7", "source": "GND"}], "authorized_access_point": "Tiemann-Antiqua"} 1 +2024-09-11 09:10:18.816441 2024-09-11 09:10:18.816444 facdc174-f947-4406-962a-fc7f7c747ca9 {"md5": "45fda31a69572d3da798a536c0d8335b", "pid": "992738075", "note": [{"label": ["Entstehungszeit 1931"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646463-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992738075", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646463-5", "source": "GND"}], "authorized_access_point": "Salut (Druckschrift)"} 1 +2024-09-11 09:10:18.870967 2024-09-11 09:10:18.870971 aa032971-2ef8-4b95-a0f1-467b9624c470 {"md5": "a97cc38c23484b527a222419c6ed2654", "pid": "992737834", "note": [{"label": ["Vorlage Deutsches Buch- und Schriftmuseum - http://de.ffonts.net/Beebop.font"], "noteType": "dataSource"}, {"label": ["Nachgewiesen 2002"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Font"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646436-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992737834", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646436-2", "source": "GND"}], "authorized_access_point": "Beebop (Druckschrift)"} 1 +2024-09-11 09:10:20.499954 2024-09-11 09:10:20.49996 4c70e4c6-01bf-4ba8-819f-899a9d432993 {"md5": "c809a6a1106a5d77fc6ca02ca8d45926", "pid": "981355196", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Framework (Informatik)"}], "related": [{"authorized_access_point": "Informationsmanagement"}, {"authorized_access_point": "Corporate Governance"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7544194-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)981355196", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7544194-9", "source": "GND"}], "authorized_access_point": "COBIT"} 1 +2024-09-11 09:10:18.928659 2024-09-11 09:10:18.928666 32c4743e-f199-4808-a0d0-66c0013586fe {"md5": "e98710d81672775110b6a51f9b15bd0e", "pid": "992737826", "note": [{"label": ["Nachgewiesen 2004"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Font"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646435-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992737826", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646435-0", "source": "GND"}], "variant_access_point": ["SpaceCowboy"], "authorized_access_point": "Space Cowboy"} 1 +2024-09-11 09:10:19.007402 2024-09-11 09:10:19.007407 9b968849-e260-4fed-8e89-8a038067d3e9 {"md5": "f1154e93cf2fc5c9422ede758bf2aaf5", "pid": "992737788", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}, {"authorized_access_point": "Font"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646431-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992737788", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646431-3", "source": "GND"}], "variant_access_point": ["European (Druckschrift)", "Linotype European PI"], "authorized_access_point": "European PI"} 1 +2024-09-11 09:10:19.07175 2024-09-11 09:10:19.071753 77e488ad-e752-4eaf-8018-4cbb43f118bf {"md5": "bb6c2700f81d5bdc2c2c40d9e19c4150", "pid": "992737532", "note": [{"label": ["Enstehungsjahr 1936 (Typothek gibt 1928 an)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646406-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992737532", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646406-4", "source": "GND"}], "authorized_access_point": "Euphorion (Druckschrift)"} 1 +2024-09-11 09:10:19.130273 2024-09-11 09:10:19.130277 2a58a734-f0e7-4853-8b2e-10b8721212ef {"md5": "4ad9df59c484cdaa9bd60acc2ff53f34", "pid": "992736269", "note": [{"label": ["Wikipedia unter Otto Hupp - http://beepworld.de/members66/vau-ef-be/schriftliste1.htm"], "noteType": "dataSource"}, {"label": ["Entstehungsjahr 1911 (abweichend 1910)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fraktur (Druckschrift)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646277-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992736269", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646277-8", "source": "GND"}], "authorized_access_point": "Hupp-Fraktur"} 1 +2024-09-11 09:10:19.19633 2024-09-11 09:10:19.196335 b9a06d75-2e81-447f-9b65-32d3476fe371 {"md5": "72ff48a12ede8bcfbe6bc1f8a4b5a6c4", "pid": "992736099", "note": [{"label": ["Wikipedia unter Rudolf Koch - http://beepworld.de/members66/vau-ef-be/schriftliste2.htm"], "noteType": "dataSource"}, {"label": ["Entstehungsjahr 1932"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schreibschrift (Druckschrift)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646259-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992736099", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646259-6", "source": "GND"}], "authorized_access_point": "Holla (Druckschrift)"} 1 +2024-09-11 09:10:19.25379 2024-09-11 09:10:19.253796 4b2f230e-7952-4834-89e7-85357fbd078b {"md5": "4d6ae8dec4e97b2518e159c4e2374057", "pid": "992735858", "note": [{"label": ["Entstehungsjahr 1933, fett"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fraktur (Druckschrift)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646235-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992735858", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646235-3", "source": "GND"}], "authorized_access_point": "Haenel-Fraktur"} 1 +2024-09-11 09:10:19.312383 2024-09-11 09:10:19.312386 b77c972a-e1be-4af3-8457-bb505e1d7356 {"md5": "49386a9fcb5d82a3a7b798920fd448e4", "pid": "99273584X", "note": [{"label": ["Entstehungsjahr: nach 1906 (nachgewiesen 1921)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Antiqua"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646234-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)99273584X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646234-1", "source": "GND"}], "authorized_access_point": "Haenel-Antiqua"} 1 +2024-09-11 09:10:19.370021 2024-09-11 09:10:19.370024 3f78ebb6-9c3d-4f4e-8d3c-6cb92293b5ff {"md5": "404e4fb759c628b91056b7d693a12c93", "pid": "992735823", "note": [{"label": ["Entstehungsjahr: 1925"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Renaissance-Antiqua"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646231-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992735823", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646231-6", "source": "GND"}], "authorized_access_point": "Grotius (Druckschrift)"} 1 +2024-09-11 09:10:19.428255 2024-09-11 09:10:19.42826 587ce8a5-62e7-42ee-a5f4-a730d8ff7982 {"md5": "2cab2bad100deff69f280d28d46a1019", "pid": "992735270", "note": [{"label": ["Entstehungsjahr 1949; kursiv; halbfett"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646172-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992735270", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646172-5", "source": "GND"}], "authorized_access_point": "Folkwang (Druckschrift)"} 1 +2024-09-11 09:10:19.483678 2024-09-11 09:10:19.483682 3a25b339-b324-4866-be97-b07c729c57fd {"md5": "8270b1b800beb97856a599a4e99effa8", "pid": "992735122", "note": [{"label": ["Lex. ges. Buchwesen unter Tiemann, Walter - http://www.klingspor-museum.de/KlingsporKuenstler/Schriftdesigner/Tiemann/WTiemann.pdf"], "noteType": "dataSource"}, {"label": ["Entstehungsjahre: Fichte-Fraktur mager 1935, Fichte-Fraktur fett 1939"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fraktur (Druckschrift)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646157-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992735122", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646157-9", "source": "GND"}], "authorized_access_point": "Fichte-Fraktur"} 1 +2024-09-11 09:10:19.54742 2024-09-11 09:10:19.547423 268c2f78-7768-47d0-bb3c-7bd69458638c {"md5": "373a5d9843ab1f7f6bfd8243711f1435", "pid": "992733634", "note": [{"label": ["Lex. ges. Buchwesen - http://www.klingspor-museum.de/KlingsporKuenstler/Schriftgiessereien/Klingspor/Klingspor.pdf"], "noteType": "dataSource"}, {"label": ["Entstehungsjahr: 1905"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Breitkopf-Fraktur"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7646010-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992733634", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7646010-1", "source": "GND"}], "authorized_access_point": "Breitkopf-Fraktur (Offenbach, Main)"} 1 +2024-09-11 09:10:19.62075 2024-09-11 09:10:19.620756 dfab1726-b729-4c90-846b-c92731712105 {"md5": "1b9d13db34ffa840da4b5fbe0c3a6ab7", "pid": "99273312X", "note": [{"label": ["Entstehungsjahr: 1954 (abweichend 1953)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "related": [{"authorized_access_point": "Studio (Druckschrift)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7645958-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)99273312X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7645958-5", "source": "GND"}], "authorized_access_point": "Flambard (Druckschrift)"} 1 +2024-09-11 09:10:19.678674 2024-09-11 09:10:19.678677 0582dc59-957c-49d6-8824-d109aa2ff04d {"md5": "aedee40e3bcee0950a26b09c93c783db", "pid": "992732468", "note": [{"label": ["Wikipedia unter Peter Behrens - http://www.klingspor-museum.de/KlingsporKuenstler/Schriftdesigner/Behrens/PeterBehrens.pdf"], "noteType": "dataSource"}, {"label": ["Entstehungszeit 1901-1907 (auch Behrensschrift Kursiv)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gebrochene Schrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7645889-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992732468", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7645889-1", "source": "GND"}], "authorized_access_point": "Behrens-Schrift"} 1 +2024-09-11 09:10:19.741622 2024-09-11 09:10:19.741625 7a9d22c4-9d55-4b5e-a0c5-61111f38ff57 {"md5": "646338ac712a35e4ad23efaec8ab16e5", "pid": "992731496", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7645791-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992731496", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7645791-6", "source": "GND"}], "authorized_access_point": "Charleston (Druckschrift)"} 1 +2024-09-11 09:10:19.808446 2024-09-11 09:10:19.808451 c0fde69e-873f-4df1-a8b0-4efd2079e9a0 {"md5": "c5446764bce50c9c0fba0bae5b1ca222", "pid": "99273147X", "note": [{"label": ["Entstehungsjahr: 1928 (Broadway Condensed 1929)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7645789-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)99273147X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7645789-8", "source": "GND"}], "authorized_access_point": "Broadway (Druckschrift)"} 1 +2024-09-11 09:10:19.868277 2024-09-11 09:10:19.868282 a3875b05-21d3-45ac-b853-fdaa5f58dc14 {"md5": "4da6c133a2d573803531c5af9966acb8", "pid": "992731348", "note": [{"label": ["Lex. ges. Buchwesen - http://www.bleikloetzle.de/html/hammer-unziale.html"], "noteType": "dataSource"}, {"label": ["Entstehungsjahr: 1921; handschriftliche Antiqua"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Unziale"}], "related": [{"authorized_access_point": "Neue Hammer-Unziale"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7645780-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992731348", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7645780-1", "source": "GND"}], "authorized_access_point": "Hammer-Unziale"} 1 +2024-09-11 09:10:19.925074 2024-09-11 09:10:19.925079 bb43c78a-7722-4d1f-84ab-263d9ca07e6c {"md5": "3d6c99ab32404c48fa5359ed4c25e83d", "pid": "992730937", "note": [{"label": ["Wikipedia unter Otto Eckmann - http://www.klingspor-museum.de/KlingsporKuenstler/Schriftdesigner/Eckmann/OttoEckmann.pdf"], "noteType": "dataSource"}, {"label": ["Entstehungsjahr: 1900; Jugendstilschrift"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7645736-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992730937", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7645736-9", "source": "GND"}], "variant_access_point": ["Eckmann (Druckschrift)", "Eckmann-Druckschrift"], "authorized_access_point": "Eckmann-Schrift"} 1 +2024-09-11 09:10:19.982009 2024-09-11 09:10:19.982014 c666e7c3-2b55-4b43-889b-531deb889599 {"md5": "aebe79d780e26b2c745e8965511a9b8c", "pid": "99273052X", "note": [{"label": ["Entstehungszeit 1914"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Renaissance-Antiqua"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7645690-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)99273052X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7645690-0", "source": "GND"}], "variant_access_point": ["Mediaeval", "Mediäval"], "authorized_access_point": "Behrens-Mediaeval"} 1 +2024-09-11 09:10:20.042065 2024-09-11 09:10:20.042069 369fd1f1-58e0-4a62-afad-9e7ac26c97b4 {"md5": "63cb47c1c9822c3e944a28b6ecbde399", "pid": "992096200", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kunststoff"}, {"authorized_access_point": "Biowerkstoff"}], "related": [{"authorized_access_point": "Biopolymere"}, {"authorized_access_point": "Biologisch abbaubarer Kunststoff"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7641320-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992096200", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7641320-2", "source": "GND"}], "authorized_access_point": "Biokunststoff"} 1 +2024-09-11 09:10:20.099274 2024-09-11 09:10:20.099279 d3585f51-62d2-4766-a48b-79eb66d39866 {"md5": "b4c6e1ceeebbfaf2a590de55707fb961", "pid": "99018207X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sulfotransferasen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7623456-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)99018207X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7623456-3", "source": "GND"}], "variant_access_point": ["Heparan-Sulfat-6-O-Endosulfatase", "Protein Sulf1", "Protein Sulf2", "heparan sulfate 6-O-endosulfatase", "heparan sulfate 6O-endosulfatase"], "authorized_access_point": "Heparan-Sulfat-6-O-Endosulfatasen"} 1 +2024-09-11 09:10:20.160225 2024-09-11 09:10:20.16023 ad2ad7ad-e99e-4e57-b6c3-941bbcdbebb7 {"md5": "e583e09f6f7d346a5ff302c0bc4b797a", "pid": "987870920", "note": [{"label": ["Primitiver Stamm mit dravidischer Sprache in Kerala"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113425024X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh91005878", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh91005878"}], "authorized_access_point": "Cholanaickan (Indic people)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113425024X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12269831", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12269831p"}], "authorized_access_point": "Cholanaickan (peuple de l'Inde)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7604010-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)987870920", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7604010-0", "source": "GND"}], "variant_access_point": ["Cholakkār", "Cholanaicken"], "authorized_access_point": "Cholanaickan"} 1 +2024-09-11 09:10:20.222774 2024-09-11 09:10:20.222778 14b5dd80-da36-4423-80bf-a60d648cd996 {"md5": "b2b32a7bb0bed523d28feb5527312c80", "pid": "987031708", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Student"}], "related": [{"authorized_access_point": "Physikstudentin"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334680612", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2020008950", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2020008950"}], "authorized_access_point": "Physics students"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334680612", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11938246", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119382468"}], "authorized_access_point": "Étudiants en physique"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7595663-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)987031708", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7595663-9", "source": "GND"}], "variant_access_point": ["Physikstudium"], "authorized_access_point": "Physikstudent"} 1 +2024-09-11 09:10:20.309225 2024-09-11 09:10:20.30923 a288dab8-e9cb-4d9a-8f1a-8fe722316d29 {"md5": "8b33e1b93ddd125220b493ff46aef17d", "pid": "985142758", "note": [{"label": ["gehört zur Gattung der Puffottern"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Vipern"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7576822-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)985142758", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7576822-7", "source": "GND"}], "variant_access_point": ["Bitis nasicornis"], "authorized_access_point": "Nashornviper"} 1 +2024-09-11 09:10:20.374705 2024-09-11 09:10:20.374709 fadf47bc-4259-48ec-9226-8f9fe8102238 {"md5": "bde9ab58fd960fbf00d93c6a2a747af7", "pid": "984855246", "note": [{"label": ["Als Vergaberecht bezeichnet man die Gesamtheit der Rechtsvorschriften, die öffentliche Auftraggeber bei der Beschaffung von Gütern und Leistungen zu beachten haben."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wirtschaftsrecht"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)984869689", "source": "GND"}, {"type": "bf:Nbn", "value": "11580-1", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/11580-1"}], "authorized_access_point": "Vergaberecht"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7574511-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)984855246", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7574511-2", "source": "GND"}], "variant_access_point": ["Öffentlicher Auftrag", "Vergabe"], "authorized_access_point": "Vergaberecht"} 1 +2024-09-11 09:10:20.436925 2024-09-11 09:10:20.436929 90769861-a862-4dc8-85d3-4aeb5a24a746 {"md5": "fa49868dd8125dd57183c50a8e50ed47", "pid": "984430695", "note": [{"label": ["Von der Zentralbank veröffentlicher Zielwert oder Zielkorridor einer Inflationsrate, die noch mit dem Ziel der Geldwertstabilität vereinbar scheint"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Geldpolitik"}], "related": [{"authorized_access_point": "Inflationsbekämpfung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133489549X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2010012786", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2010012786"}], "authorized_access_point": "Inflation targeting"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)985037393", "source": "GND"}, {"type": "bf:Nbn", "value": "19547-1", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/19547-1"}], "authorized_access_point": "Inflationssteuerung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7570943-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)984430695", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7570943-0", "source": "GND"}], "variant_access_point": ["Inflationsziel", "Inflation-Forecast Targeting", "Inflation Forecast Targeting", "Inflationsrate"], "authorized_access_point": "Inflation Targeting"} 1 +2024-09-11 09:10:21.040123 2024-09-11 09:10:21.040126 2a6719e5-a4ff-41c9-adbf-17a16194cb7b {"md5": "d16332df7e5ca2d7433d0121a3469f9e", "pid": "974924423", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Haushaltsbuch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4827174-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)974924423", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4827174-3", "source": "GND"}], "variant_access_point": ["sCHECK up"], "authorized_access_point": "sCHECKup"} 1 +2024-09-11 09:10:20.554873 2024-09-11 09:10:20.554876 9d1761a2-93b3-471a-b05b-cffff443b436 {"md5": "e97093a71a82ec96b1bb4d7f531cf545", "pid": "981078206", "note": [{"label": ["Benutzt für weibliche Selige; als instantieller Oberbegriff bei weiblichen seligen Personen obligatorisch; nicht zugelassen als identifizierender Zusatz bei Personen gem. EH-P-10 zur GND nach RDA"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Frau"}], "related": [{"authorized_access_point": "Seliger"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7541405-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)981078206", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7541405-3", "source": "GND"}], "variant_access_point": ["Weibliche Selige", "Selige Frau", "Seliggesprochene Frau"], "authorized_access_point": "Selige"} 1 +2024-09-11 09:10:20.616098 2024-09-11 09:10:20.616102 5a038902-148f-461b-a41f-3f71974e1103 {"md5": "ec75a31caa66a9d89cd7665cebf229fd", "pid": "980596920", "note": [{"label": ["Von Rudolf Koch geschaffene, jedoch selten benutzte Antiqua-Schrift; 1930 begonnen, aber erst 1938 in allen Graden vorliegend"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Antiqua"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7535517-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)980596920", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7535517-6", "source": "GND"}], "variant_access_point": ["Marathon-Antiqua"], "authorized_access_point": "Marathon (Druckschrift)"} 1 +2024-09-11 09:10:20.683495 2024-09-11 09:10:20.683499 2192351f-5199-4534-8593-57f79552d07d {"md5": "3e2dbd77e07cd91f29e7a7ba5234424f", "pid": "980485371", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7533814-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)980485371", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7533814-2", "source": "GND"}], "authorized_access_point": "Sportlerin (Motiv)"} 1 +2024-09-11 09:10:20.744228 2024-09-11 09:10:20.744233 a10ef1b3-ef1d-4e75-9843-a87829479aa3 {"md5": "1ae52b1797d5d10b99b0f0e0b559357d", "pid": "979728509", "note": [{"label": ["Schlacht am 21.7.1798 bei Giseh zwischen Franzosen u. Mamelucken, Sieg Napoleons"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Ägyptische Expedition"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7527686-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)979728509", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7527686-0", "source": "GND"}], "authorized_access_point": "Schlacht bei den Pyramiden"} 1 +2024-09-11 09:10:20.800312 2024-09-11 09:10:20.800315 cd6cc6c6-188c-46f0-895d-ae0a7a8af65d {"md5": "153a496a30abd9ddce585f66e8d42199", "pid": "979385261", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Smart-Ger%C3%A4t&oldid=242686638"], "noteType": "dataSource"}, {"label": ["Informationstechnisch aufgerüstete Alltagsgegenstände, die einen Mehrwert durch sensorgestützte Informationsverarbeitung und Kommunikation erhalten"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Mobiles Endgerät"}, {"authorized_access_point": "Ubiquitous Computing"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7525182-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)979385261", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7525182-6", "source": "GND"}], "variant_access_point": ["Smart Devices", "Smart-Gerät"], "authorized_access_point": "Smart Device"} 1 +2024-09-11 09:10:20.857364 2024-09-11 09:10:20.857368 bb1cc41e-ef81-47ad-9c57-e9e56c64e38f {"md5": "0bfc57ea4004a5a5f9c75369ee0bbe00", "pid": "979340586", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Transhumanismus&oldid=224666895"], "noteType": "dataSource"}, {"label": ["Der Transhumanismus ist eine philosophische Denkrichtung, die sich zum Ziel gesetzt hat, die intellektuellen und körperlichen Fähigkeiten des Menschen zu erweitern. Dieses Ziel will der Transhumanismus durch eine Synthese des Menschen mit Technik erreichen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Humanismus"}], "related": [{"authorized_access_point": "Posthumanismus"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254397442", "source": "GND"}, {"type": "bf:Nbn", "value": "69366", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/69366"}], "authorized_access_point": "Transumanesimo"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7524756-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)979340586", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7524756-2", "source": "GND"}], "authorized_access_point": "Transhumanismus"} 1 +2024-09-11 09:10:20.920725 2024-09-11 09:10:20.92073 6f2de8f3-dbc5-4db9-b0fa-111a09ce9284 {"md5": "e8f9f680b7eacaa7c26eb7076cd0555c", "pid": "978483669", "note": [{"label": ["Malaiisch, Dialekt: Indonesia, Sulawesi (Celebes)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7517482-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)978483669", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7517482-0", "source": "GND"}], "variant_access_point": ["Manado-Malaiisch"], "authorized_access_point": "Menado-Malaiisch"} 1 +2024-09-11 09:10:20.97737 2024-09-11 09:10:20.977374 ee856f9f-c0a6-43f1-adf9-ed062342cdbb {"md5": "30e8043a1657038dd07d9bf1d6af949a", "pid": "97549175X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Deflektometrie&oldid=237818776"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Optische Messung"}, {"authorized_access_point": "Oberflächenmessung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4832784-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)97549175X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4832784-0", "source": "GND"}], "authorized_access_point": "Deflektometrie"} 1 +2024-09-11 09:10:21.096467 2024-09-11 09:10:21.096472 9068d0c4-6fe3-4d3e-85b1-9463ed22f13a {"md5": "278247d49f942541fdc014bf5dd4e802", "pid": "974131733", "note": [{"label": ["Gesprochen in Westborneo u. Sarawak"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4819075-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)974131733", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4819075-5", "source": "GND"}], "variant_access_point": ["Salakau", "Selako", "Selako Dayak", "Silakau", "Salako", "Bahasa Badameà", "Bahasa Dameà"], "authorized_access_point": "Selekau-Sprache"} 1 +2024-09-11 09:10:21.152528 2024-09-11 09:10:21.152533 4fcfe544-e248-425e-9f30-bb33ec8834b0 {"md5": "ae5a04d0d14eb175d490f71360a74104", "pid": "973073764", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Musik"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4806598-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)973073764", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4806598-5", "source": "GND"}], "authorized_access_point": "Geräuschmusik"} 1 +2024-09-11 09:10:21.211776 2024-09-11 09:10:21.21178 3ab175a7-d176-435e-9be3-d6b311e5cfa6 {"md5": "7e1f398efc151f5dcc893509fd79cfcf", "pid": "973067144", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Antigen"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133614288X", "source": "GND"}, {"type": "bf:Nbn", "value": "D000097382", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000097382"}], "authorized_access_point": "CD68 Molecule"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4806375-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)973067144", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4806375-7", "source": "GND"}], "variant_access_point": ["CD68", "CD 68", "CD68-Antigen", "Makrosialin", "Macrosialin"], "authorized_access_point": "Antigen CD68"} 1 +2024-09-11 09:10:21.28089 2024-09-11 09:10:21.280896 5e5e307a-723f-4d6b-abf7-d3cc6262d279 {"md5": "e9a2dbada142fc2040914bc19e7f5832", "pid": "971890188", "note": [{"label": ["Gesprochen auf Sarawak"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4788592-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)971890188", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4788592-0", "source": "GND"}], "variant_access_point": ["Narom (Sprache)", "Narum (Sprache)"], "authorized_access_point": "Narom-Sprache"} 1 +2024-09-11 09:10:21.334154 2024-09-11 09:10:21.334158 a4d57915-7180-4fdb-adec-caf6d336d653 {"md5": "3855afb078fd5a1a862a2c5c442f7f6f", "pid": "971874549", "note": [{"label": ["Methode der Demoskopie bzw. Marktforschung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Umfrage"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134778651", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2003010653", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2003010653"}], "authorized_access_point": "Internet questionnaires"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1012497135", "source": "GND"}, {"type": "bf:Nbn", "value": "28130-5", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/28130-5"}], "authorized_access_point": "Online-Befragung"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)983461716", "source": "GND"}, {"type": "bf:Nbn", "value": "10037911", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10037911"}], "authorized_access_point": "Online-Befragung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4788337-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)971874549", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4788337-6", "source": "GND"}], "variant_access_point": ["Online-Umfrage", "Online-Interview"], "authorized_access_point": "Online-Befragung"} 1 +2024-09-11 09:10:21.389173 2024-09-11 09:10:21.389177 10f58bb7-5d87-4f1f-8eb7-351df2df63b4 {"md5": "c7b7c6f89cebdd5c65ee465c38f60692", "pid": "971750289", "note": [{"label": ["Förder-, Transportmittel"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wagen"}, {"authorized_access_point": "Flurförderer"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4786444-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)971750289", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4786444-8", "source": "GND"}], "authorized_access_point": "Hubwagen"} 1 +2024-09-11 09:10:21.442182 2024-09-11 09:10:21.442186 372e9059-c08a-413a-ad98-fa2945823366 {"md5": "2f0e681ba28d3450d8100318995a0a17", "pid": "971566429", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134835175", "source": "GND"}, {"type": "bf:Nbn", "value": "sh99004097", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99004097"}], "authorized_access_point": "Ratahan language"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4783715-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)971566429", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4783715-9", "source": "GND"}], "variant_access_point": ["Ratahan", "Pasan", "Bentenan"], "authorized_access_point": "Toratan"} 1 +2024-09-11 09:10:21.499399 2024-09-11 09:10:21.499404 f1e304bf-2750-4000-8bea-e89dd7548c67 {"md5": "324e13e4a5431979a63c43a2bc0262ed", "pid": "970782195", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Ausbreitung"}, {"authorized_access_point": "Modell"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4774580-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)970782195", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4774580-0", "source": "GND"}], "authorized_access_point": "AUSTAL 86"} 1 +2024-09-11 09:10:21.557693 2024-09-11 09:10:21.557697 c3f8e97b-a168-4500-a7ef-cf80917c4489 {"md5": "995fabd6d0f0306b6be14d335d12eaf9", "pid": "970665806", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134835183", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85072053", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85072053"}], "authorized_access_point": "Kerinci language"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4772270-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)970665806", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4772270-8", "source": "GND"}], "variant_access_point": ["Kerinchi", "Kinchai", "Kerinci (Sprache)"], "authorized_access_point": "Kerinci-Sprache"} 1 +2024-09-11 09:10:21.610624 2024-09-11 09:10:21.610628 3ab914bd-3a8c-4df3-adba-b4efff6ffdb3 {"md5": "d6b3f857a206b13db7accfe8f7b8b228", "pid": "970188919", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Antigen"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336143207", "source": "GND"}, {"type": "bf:Nbn", "value": "D000097802", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000097802"}], "authorized_access_point": "CD83 Antigen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4767577-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)970188919", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4767577-9", "source": "GND"}], "variant_access_point": ["CD83-Antigen"], "authorized_access_point": "Antigen CD83"} 1 +2024-09-11 09:10:21.668073 2024-09-11 09:10:21.668078 75fed8b2-d6e8-41aa-a3b9-05a7982b0c4a {"md5": "ca435c30ce88e686f0d44896f1df1efa", "pid": "970142838", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Studentin"}], "related": [{"authorized_access_point": "Medizinstudent"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334680930", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85147645", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85147645"}], "authorized_access_point": "Women medical students"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334680930", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF18099017", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb180990171"}], "authorized_access_point": "Étudiantes en médecine"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4766829-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)970142838", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4766829-5", "source": "GND"}], "variant_access_point": ["Medizinstudium"], "authorized_access_point": "Medizinstudentin"} 1 +2024-09-11 09:10:21.725441 2024-09-11 09:10:21.725444 e665d33c-1072-4f13-9a9b-c0aa43330473 {"md5": "80418c44886a6d4b2d84e7b3b6a7a8c6", "pid": "969789726", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Pietismus"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4762345-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)969789726", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4762345-7", "source": "GND"}], "variant_access_point": ["Radikalpietismus"], "authorized_access_point": "Radikaler Pietismus"} 1 +2024-09-11 09:10:21.785983 2024-09-11 09:10:21.785988 93c961be-835f-4484-aa7d-9c01f458bdad {"md5": "e75bcc00776a34df88d971519e9f4a21", "pid": "968800459", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Twents&oldid=187939466"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Niederländisch"}, {"authorized_access_point": "Westfälisch"}, {"authorized_access_point": "Niedersächsisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4747853-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)968800459", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4747853-6", "source": "GND"}], "variant_access_point": ["Twents"], "authorized_access_point": "Mundart Niederländisch (Twente)"} 1 +2024-09-11 09:10:21.841598 2024-09-11 09:10:21.841603 9be02e54-0990-4cd9-a02c-9127b9ae2223 {"md5": "5625534380698e5df40fee1294ef5e76", "pid": "967930308", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Abgabe"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4736684-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)967930308", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4736684-9", "source": "GND"}], "variant_access_point": ["Honorarium", "Abfahrtsgeld", "Abzug (Abgabe)", "Anfall (Abgabe)", "Auffahrt (Abgabe)", "Auffahrtsgeld", "Ehrschatz", "Ehrschatzung", "Eingangsgeld", "Handlohn", "Herrenwein", "Immobiliargebühr", "Kaufgeld", "Kaufschatz", "Lehengeld", "Lehnware", "Markgroschen", "Pfundgeld", "Satzwein"], "authorized_access_point": "Laudemium"} 1 +2024-09-11 09:10:21.898775 2024-09-11 09:10:21.898779 5e2b7e41-744c-4d35-a1f5-b91954fe787e {"md5": "9f7f04bf1c5d6dfcce2a2be88ffdb7c2", "pid": "967681758", "note": [{"label": ["Tasse, aus der Kaffee getrunken wird"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tasse"}], "related": [{"authorized_access_point": "Kaffeegeschirr"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4732915-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)967681758", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4732915-4", "source": "GND"}], "authorized_access_point": "Kaffeetasse"} 1 +2024-09-11 09:10:21.957589 2024-09-11 09:10:21.957593 4005584b-1cd7-4800-91d4-3265a735ef37 {"md5": "b064defc4e560291135c9a5ca1cc1cbf", "pid": "967612896", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Model (Form)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4731815-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)967612896", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4731815-6", "source": "GND"}], "authorized_access_point": "Holzmodel"} 1 +2024-09-11 09:10:41.316861 2024-09-11 09:10:41.316865 3f70d8a4-92b5-4da5-b777-3665f2edeaae {"md5": "16ef00a46b3d94cc811ef01d1e8990f2", "pid": "04142641X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Anthracenone"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4142641-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04142641X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4142641-1", "source": "GND"}], "variant_access_point": ["CAS 90-44-8", "Anthracenon (10H-Anthracen-9-on)"], "authorized_access_point": "Anthron"} 1 +2024-09-11 09:10:22.015345 2024-09-11 09:10:22.015349 abf6dc97-cdf1-4e6c-b4bc-2ffa5e2fe67d {"md5": "784d3c1c7c901f0be69a40d4573065ba", "pid": "967286034", "note": [{"label": ["Ab 1960 in Chile entstandene polit.-sozial ausgerichtete Musikbewegung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Politisches Lied"}], "related": [{"authorized_access_point": "Nueva canción (Politisches Lied)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4727316-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)967286034", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4727316-1", "source": "GND"}], "variant_access_point": ["Nueva Canción Chilena", "NCCh", "Canto Nuevo de Chile", "Neues Politisches Lied"], "authorized_access_point": "Neues chilenisches Lied"} 1 +2024-09-11 09:10:22.069937 2024-09-11 09:10:22.069941 9f4b4471-ce39-4c88-85b9-9226124c1c17 {"md5": "b29849f9ae9208897333e5d70f3b9328", "pid": "966464141", "note": [{"label": ["Zu Ehren des hl. Martin am 11.11."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Umritt"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4720271-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)966464141", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4720271-3", "source": "GND"}], "variant_access_point": ["Martiniritt"], "authorized_access_point": "Martinsritt"} 1 +2024-09-11 09:10:22.123068 2024-09-11 09:10:22.123073 4d0fd9ac-12d9-4b6f-a640-d025bca4fb3a {"md5": "1745ca5f551b88e9b33bb92b73ed6795", "pid": "966016297", "note": [{"label": ["Kommunale Informationsplattform und interaktives System zwischen Bürger und Gemeindeverwaltung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Informationssystem"}], "related": [{"authorized_access_point": "E-Government"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4713287-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)966016297", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4713287-5", "source": "GND"}], "variant_access_point": ["Kommunales Informationssystem"], "authorized_access_point": "Bürgerinformationssystem"} 1 +2024-09-11 09:10:22.2368 2024-09-11 09:10:22.236807 d2e722e3-0af7-4712-94e2-455a66fbd531 {"md5": "83cbbaa433052e2cdea6b5c486b43c0e", "pid": "965886654", "note": [{"label": ["Einsatz von Duftstoffen zur Verkaufsförderung u. zur Schaffung eines angenehmen Raumklimas in Unternehmen, auf Werbedrucksachen usw."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Erlebnismarketing"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334882479", "source": "GND"}, {"type": "bf:Nbn", "value": "sh90005055", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh90005055"}], "authorized_access_point": "Scent as a marketing device"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334882479", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15585133t", "source": "BNF"}, {"type": "uri", "value": "https://catalogue.bnf.fr/ark:/12148/cb15585133t"}], "authorized_access_point": "Marketing sensoriel"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4712134-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)965886654", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4712134-8", "source": "GND"}], "variant_access_point": ["Air-Design", "Olfaktorisches Marketing"], "authorized_access_point": "Duftmarketing"} 1 +2024-09-11 09:10:22.340015 2024-09-11 09:10:22.34006 864cda2c-d94e-4558-90f6-5f0e544a8a62 {"md5": "388bbfbadf24be30fe03e3e8922177ba", "pid": "965195686", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Angle-Klasse II"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4699051-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)965195686", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4699051-3", "source": "GND"}], "authorized_access_point": "Angle-Klasse II/2"} 1 +2024-09-11 09:10:22.394224 2024-09-11 09:10:22.394229 9935da42-5876-4843-907a-b822bfb6a6f3 {"md5": "9b7483ec1578e049921e294e4c181617", "pid": "96441631X", "note": [{"label": ["Der Schreibschrift nachgebildete franz. Druckschrift, 1557 geschaffen von Robert Granjon"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4684771-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)96441631X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4684771-6", "source": "GND"}], "variant_access_point": ["Civilité-Schrift", "Caractères de civilité"], "authorized_access_point": "Civilité (Schrift)"} 1 +2024-09-11 09:10:22.445983 2024-09-11 09:10:22.445987 34668862-537a-469b-9f6d-333fe2b520b9 {"md5": "10874a5db223a32c2b15d757bdc5cb0d", "pid": "964240300", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4681786-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)964240300", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4681786-4", "source": "GND"}], "authorized_access_point": "Stickerei (Motiv)"} 1 +2024-09-11 09:10:22.495553 2024-09-11 09:10:22.495555 06276431-8e5c-47d1-a5ec-fe31941d49f8 {"md5": "6af78ba4dfed637713bee539c81e42dc", "pid": "964240254", "note": [{"label": ["DWDS - https://www.dwds.de/wb/H%C3%BCttenarbeiter"], "noteType": "dataSource"}, {"label": ["Arbeiter am Hoch- u. Schmelzofen in der Eisenindustrie"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Arbeiter"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4681784-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)964240254", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4681784-0", "source": "GND"}], "variant_access_point": ["Hüttner", "Eisenhüttenarbeiter", "Hüttenwerk"], "authorized_access_point": "Hüttenarbeiter"} 1 +2024-09-11 09:10:23.789661 2024-09-11 09:10:23.789666 ea3d6960-7776-4721-a620-7dd4fcad8e90 {"md5": "485bb7b6c63ebf117af8691be7d77025", "pid": "959148523", "note": [{"label": ["Verbreitung: Celebes, zw. Towuti-See u. Tombuku-Bergland"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4592666-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959148523", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4592666-9", "source": "GND"}], "variant_access_point": ["Mori (Sprache)", "Aikoa"], "authorized_access_point": "Mori-Sprache"} 1 +2024-09-11 09:10:22.548117 2024-09-11 09:10:22.54812 61ecb64e-0636-460b-9cb7-74f376e5c2dc {"md5": "0194d8d1e0ee3ecece03ec30bf5d1ca2", "pid": "964115166", "note": [{"label": ["Wiederherstellung eines naturnahen Zustandes in einem durch Eingriffe des Menschen zerstörten oder erheblich beeinträchtigten Teil der Landschaft im Rahmen von Naturschutz und Landschaftspflege"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Naturschutz"}], "related": [{"authorized_access_point": "Naturnahe Gestaltung"}, {"authorized_access_point": "Rekultivierung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4679877-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)964115166", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4679877-8", "source": "GND"}], "variant_access_point": ["Revitalisierung (Renaturierung, Ökologie)", "Rewilding"], "authorized_access_point": "Renaturierung (Ökologie)"} 1 +2024-09-11 09:10:22.601153 2024-09-11 09:10:22.601157 0e55a1da-eea2-483f-95e1-eb4f63e80efa {"md5": "40d292e28390eaf404d94822bf861183", "pid": "963711636", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Versuch"}], "related": [{"authorized_access_point": "Untauglicher Versuch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4670829-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963711636", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4670829-7", "source": "GND"}], "variant_access_point": ["Délit manqué"], "authorized_access_point": "Fehlgeschlagener Versuch"} 1 +2024-09-11 09:10:22.653531 2024-09-11 09:10:22.653534 58d32caf-68d0-432f-9e5a-1c8344bbcece {"md5": "60c27a7b699982e436a26597d23a8af1", "pid": "963708872", "note": [{"label": ["Westindonesische Sprache, Nordcelebes"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4670798-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963708872", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4670798-0", "source": "GND"}], "variant_access_point": ["Tiadje", "Tialo", "Dondo"], "authorized_access_point": "Tomini-Sprache"} 1 +2024-09-11 09:10:22.706887 2024-09-11 09:10:22.706892 a923b2d5-04ad-419a-a551-04aadb0a4d99 {"md5": "90bab6a1abfd5397f4e9f2c9942f7732", "pid": "963708856", "note": [{"label": ["Westindonesische Sprache, Nordcelebes"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134835159", "source": "GND"}, {"type": "bf:Nbn", "value": "sh96010747", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh96010747"}], "authorized_access_point": "Tolitoli language"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4670794-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963708856", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4670794-3", "source": "GND"}], "variant_access_point": ["Tontoli", "Gage (Sprache)", "Totoli"], "authorized_access_point": "Tolitoli-Sprache"} 1 +2024-09-11 09:10:22.772118 2024-09-11 09:10:22.772122 b4ee42f9-c7a6-4923-827b-3c0f500ea1ce {"md5": "b53934e5624f27232b9ccde50f32fed0", "pid": "963658166", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Romanist"}], "related": [{"authorized_access_point": "Hispanistik"}, {"authorized_access_point": "Hispanistin"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134176104", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85061068", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85061068"}], "authorized_access_point": "Hispanists"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134176104", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12122241", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12122241n"}], "authorized_access_point": "Hispanistes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254389385", "source": "GND"}, {"type": "bf:Nbn", "value": "58143", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/58143"}], "authorized_access_point": "Ispanisti"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254440216", "source": "GND"}, {"type": "bf:Nbn", "value": "XX555556", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX555556"}], "authorized_access_point": "Hispanistas"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4669578-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963658166", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4669578-3", "source": "GND"}], "authorized_access_point": "Hispanist"} 1 +2024-09-11 09:10:22.834008 2024-09-11 09:10:22.834012 3fc5b694-0736-4efa-9a58-23f9144eaf08 {"md5": "d8d2b00700017c4bb18c96247f39384e", "pid": "963553984", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Körper (Algebra)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4667267-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963553984", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4667267-9", "source": "GND"}], "authorized_access_point": "Quadratischer Körper"} 1 +2024-09-11 09:10:22.894565 2024-09-11 09:10:22.894569 1e6757ba-6982-42bb-a1b9-f2a996355dd3 {"md5": "a4b67f6f1efac3780374bc5e5fbc882c", "pid": "962075272", "note": [{"label": ["Früher Familie schwerer, hochbeiniger Hühnervögel, heute als Unterfamilie Meleagridinae der Fasanenvögel geführt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fasanenartige"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4644834-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)962075272", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4644834-2", "source": "GND"}], "variant_access_point": ["Meleagrididae"], "authorized_access_point": "Truthühner"} 1 +2024-09-11 09:10:23.837722 2024-09-11 09:10:23.837726 5cd38f38-584d-4deb-b9ce-b71b34805615 {"md5": "ead7f6bb6d3d6d13ab682f2381c3d7f1", "pid": "959148485", "note": [{"label": ["Verbreitung: Celebes, Distrikte Bungku u. Labota; Kabaena Is."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4592665-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959148485", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4592665-7", "source": "GND"}], "authorized_access_point": "Bungku"} 1 +2024-09-11 09:10:22.9521 2024-09-11 09:10:22.952103 29ca9881-20bd-4ecb-96dc-d89321818067 {"md5": "0366ba8ff8ddcb01032be065df35719e", "pid": "962073881", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Prüfungsausschuss"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134561563", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85009476", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85009476"}], "authorized_access_point": "Audit committees"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134561563", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11939756", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119397566"}], "authorized_access_point": "Vérification comptable"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254407812", "source": "GND"}, {"type": "bf:Nbn", "value": "XX558471", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX558471"}], "authorized_access_point": "Comités de auditoría"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4644800-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)962073881", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4644800-7", "source": "GND"}], "variant_access_point": ["Corporate Audit Committee", "Bilanzprüfungsausschuss"], "authorized_access_point": "Audit Committee"} 1 +2024-09-11 09:10:23.011126 2024-09-11 09:10:23.01113 02a6818e-1d5f-443f-a79d-2a79cae8ef06 {"md5": "0733fb6d1dd8af8814ec45b5b52d4279", "pid": "961897546", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ausstellung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4641693-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)961897546", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4641693-6", "source": "GND"}], "variant_access_point": ["Ethnologische Ausstellung"], "authorized_access_point": "Völkerkundliche Ausstellung"} 1 +2024-09-11 09:10:23.067339 2024-09-11 09:10:23.067342 3d505dcc-cba9-46ef-b97e-1907cc5b31f7 {"md5": "5d17566f4afda35385ea47205bd500be", "pid": "961236752", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Düne"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4631459-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)961236752", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4631459-3", "source": "GND"}], "authorized_access_point": "Altdüne"} 1 +2024-09-11 09:10:23.126669 2024-09-11 09:10:23.126674 87f95e35-2880-4a39-9937-600069ce0e68 {"md5": "4252966f1ebfb9d451b1fe19c8765842", "pid": "961192356", "note": [{"label": ["Benutzt, soweit im Ausland lebend"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ausländischer Student"}, {"authorized_access_point": "Araber"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134821301", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85006344", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85006344"}], "authorized_access_point": "Arab students"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134821301", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16961808", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb169618080"}], "authorized_access_point": "Étudiants arabes"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4630739-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)961192356", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4630739-4", "source": "GND"}], "authorized_access_point": "Arabischer Student"} 1 +2024-09-11 09:10:23.175921 2024-09-11 09:10:23.175926 85b9c01f-c9ed-462c-bdb8-2ef853f33190 {"md5": "2ce4bf87fff5ea9dc780224c8b6fba30", "pid": "961049510", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sonde"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4628589-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)961049510", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4628589-1", "source": "GND"}], "authorized_access_point": "Abwurfsonde"} 1 +2024-09-11 09:10:23.226602 2024-09-11 09:10:23.226605 b7fd7e87-a13d-42d6-adfb-ef4687063590 {"md5": "47df213a237c7fed54564dd789056d0d", "pid": "960895175", "note": [{"label": ["Markenname", "Verknüpfe mit einer Produktgruppe, z.B. Motorrad"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4624787-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)960895175", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4624787-7", "source": "GND"}], "authorized_access_point": "Aprilia (Marke)"} 1 +2024-09-11 09:10:23.278765 2024-09-11 09:10:23.278769 f9f39462-6afb-436f-b7a8-afe3bad03266 {"md5": "0479ac0fdf783e265526476fc04719ec", "pid": "96037650X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134200579", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85040270", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85040270"}], "authorized_access_point": "Dayak language"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134200579", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12179945", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12179945p"}], "authorized_access_point": "Langues dayak"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254418776", "source": "GND"}, {"type": "bf:Nbn", "value": "XX543421", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX543421"}], "authorized_access_point": "Lengua dayak"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4617354-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)96037650X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4617354-7", "source": "GND"}], "variant_access_point": ["Dayakisch", "Dajak-Sprache"], "authorized_access_point": "Dajakisch"} 1 +2024-09-11 09:10:24.35165 2024-09-11 09:10:24.351654 10de8356-709c-422a-a0c6-e6d5d10a24e2 {"md5": "c05379e4f8c77b9e8e3059efc2b25194", "pid": "957331673", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gießerei"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4558147-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)957331673", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4558147-2", "source": "GND"}], "variant_access_point": ["Geschütz"], "authorized_access_point": "Geschützgießerei"} 1 +2024-09-11 09:10:23.330944 2024-09-11 09:10:23.330948 33a879d7-96ed-4f0c-ba27-c3e03e2f6f37 {"md5": "dbcd7302498c3eeaaef749b153b70cb6", "pid": "960375988", "note": [{"label": ["Schriftsprache der Batak-Gruppe"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134835191", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85012311", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85012311"}], "authorized_access_point": "Batak language"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4617338-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)960375988", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4617338-9", "source": "GND"}], "authorized_access_point": "Batak-Sprache"} 1 +2024-09-11 09:10:23.423902 2024-09-11 09:10:23.423906 937ac8e0-3088-4f17-b029-7faec01a9aad {"md5": "c067c7e1e2447b2a2e75447db5575b4a", "pid": "960175105", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Dokumentenverwaltungssystem"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4613370-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)960175105", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4613370-7", "source": "GND"}], "variant_access_point": ["Dokumenten Retrieval- und Informations-System"], "authorized_access_point": "DORIS (Programm)"} 1 +2024-09-11 09:10:23.48602 2024-09-11 09:10:23.486022 e082a4a4-559e-4b54-be96-b7c60338ee95 {"md5": "36e47827e5d282e16e0adf40a6529ee9", "pid": "959959750", "note": [{"label": ["Ökologisches Computerprogramm"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Ökologie"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4609145-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959959750", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4609145-2", "source": "GND"}], "authorized_access_point": "EcoBeaker 2.0"} 1 +2024-09-11 09:10:23.535592 2024-09-11 09:10:23.535595 994893c4-1727-4843-bf00-f78455f83a29 {"md5": "ba056c49921b869baa95f68fabec809e", "pid": "959794972", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134818971", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85079988", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85079988"}], "authorized_access_point": "Makasar language"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134818971", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13529312", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13529312v"}], "authorized_access_point": "Makasar (langue)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4605661-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959794972", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4605661-0", "source": "GND"}], "variant_access_point": ["Macassarese", "Makasarese", "Tawna", "Makassar (Sprache)"], "authorized_access_point": "Makassarisch"} 1 +2024-09-11 09:10:23.587056 2024-09-11 09:10:23.587061 4f97a0af-e00e-4c7b-a5ee-e4213f6cce23 {"md5": "bdfb8349ca8b4f3becd920b6045cda91", "pid": "959794921", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4605659-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959794921", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4605659-2", "source": "GND"}], "variant_access_point": ["Küsten-Dajak-Sprache", "See-Dajak-Sprache"], "authorized_access_point": "Iban-Sprache"} 1 +2024-09-11 09:10:23.642121 2024-09-11 09:10:23.642125 209edc51-f578-4b53-a138-e9ff8385300d {"md5": "e6ec1ec6bff6e7269d4f2a4a94b959e1", "pid": "959794859", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}, {"authorized_access_point": "Gayo"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134818963", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85053584", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85053584"}], "authorized_access_point": "Gayo language"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134818963", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16172335", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb16172335k"}], "authorized_access_point": "Gayo (langue)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254315152", "source": "GND"}, {"type": "bf:Nbn", "value": "64", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/64"}], "authorized_access_point": "Lingua gayo"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4605656-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959794859", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4605656-7", "source": "GND"}], "variant_access_point": ["Gajo-Sprache"], "authorized_access_point": "Gayo-Sprache"} 1 +2024-09-11 09:10:23.690398 2024-09-11 09:10:23.690401 4a7bfe50-773a-4c24-98a7-c7b878435ac1 {"md5": "e3c5c6676a809bac4f957d7027f41741", "pid": "959740864", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4604725-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959740864", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4604725-6", "source": "GND"}], "authorized_access_point": "Meteorologisches Feld"} 1 +2024-09-11 09:10:23.739529 2024-09-11 09:10:23.739533 6ba1e7df-4594-464b-b25d-37cda1f431f7 {"md5": "e506693fe8e6fe65fe7d3ce5dc1471b8", "pid": "959716688", "note": [{"label": ["Ostindonesische Sprachgruppe, vor allem in Westtimor gesprochen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Ostindonesische Sprachen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4603925-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959716688", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4603925-9", "source": "GND"}], "variant_access_point": ["Atoni", "Orang Gunung", "Orang Timor", "Timol", "Timor", "Timoresisch", "Uab Atoni Pah Meto", "Uab Pah Meto"], "authorized_access_point": "Uab Meto"} 1 +2024-09-11 09:10:23.888277 2024-09-11 09:10:23.888282 80651b4f-f8d2-498b-aa39-0c89e87edbed {"md5": "cc3ec095f427f275038a5e354d9c7eda", "pid": "959148477", "note": [{"label": ["Verbreitung: Südcelebes"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4592664-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959148477", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4592664-5", "source": "GND"}], "variant_access_point": ["Tolaki"], "authorized_access_point": "Kendari"} 1 +2024-09-11 09:10:23.939816 2024-09-11 09:10:23.939819 d0e2b305-20fb-4064-ac1b-93e6430ae6b5 {"md5": "e3f0ab22090baa35cd7cf2c592a0c7ac", "pid": "958503001", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sperrschichtgleichrichter"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4581262-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)958503001", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4581262-7", "source": "GND"}], "authorized_access_point": "Selengleichrichter"} 1 +2024-09-11 09:10:23.989102 2024-09-11 09:10:23.989106 b4e671a1-754b-427f-b67a-c928583f7082 {"md5": "246aae2ce3ba7fc48f728175fa02e051", "pid": "958467102", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4580391-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)958467102", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4580391-2", "source": "GND"}], "variant_access_point": ["Kanay", "Kenja", "Kenjah", "Kehja", "Kinyah"], "authorized_access_point": "Kenyah"} 1 +2024-09-11 09:10:24.041061 2024-09-11 09:10:24.041065 8cbcb050-4f1a-41a3-bcd7-477843ca5a22 {"md5": "0f921ac2e4ee1e725accece72d0d45e1", "pid": "958224625", "note": [{"label": ["1995 ersch."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Wirtschaftssprache"}, {"authorized_access_point": "Sprachkurs"}, {"authorized_access_point": "Englisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4576050-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)958224625", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4576050-0", "source": "GND"}], "variant_access_point": ["MS-DOS"], "authorized_access_point": "COACH 5.0"} 1 +2024-09-11 09:10:24.089639 2024-09-11 09:10:24.089642 d655fb17-ec41-4ee3-9568-b64ba5603f69 {"md5": "1d97f9fdc28652b5e4b34620ff2fc994", "pid": "958195889", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Veredelung (Pflanzenbau)"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256242187", "source": "GND"}, {"type": "bf:Nbn", "value": "1132", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_1132"}], "authorized_access_point": "budding (grafting)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4575226-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)958195889", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4575226-6", "source": "GND"}], "variant_access_point": ["Augenveredelung"], "authorized_access_point": "Okulation"} 1 +2024-09-11 09:10:24.144643 2024-09-11 09:10:24.144648 8d3cd5c4-393e-4d5f-bebb-0c923432e7a5 {"md5": "ebcef59693eb4beac309175f24509938", "pid": "958190453", "note": [{"label": ["Erzstufen, die eine Handfläche ausfüllen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4574751-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)958190453", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4574751-9", "source": "GND"}], "variant_access_point": ["Handstück"], "authorized_access_point": "Handstein"} 1 +2024-09-11 09:10:24.20285 2024-09-11 09:10:24.202853 12f9cd19-588c-416e-a8f7-50b731ce4a1e {"md5": "eea475445fb98f3acb2731e951777fa4", "pid": "957705611", "note": [{"label": ["1998 ersch."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Auftragsabwicklung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4565110-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)957705611", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4565110-3", "source": "GND"}], "variant_access_point": ["Fakt-Star-Extra", "MS-DOS 5.0", "Windows 3.1"], "authorized_access_point": "Fakt-Star extra"} 1 +2024-09-11 09:10:24.253972 2024-09-11 09:10:24.253977 a98e4562-9460-4827-a417-b5def82a0a22 {"md5": "be2f2d43f9321ba261a7898f6ecdd113", "pid": "95765894X", "note": [{"label": ["benutzt, soweit im Ausland lebend"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ausländischer Student"}, {"authorized_access_point": "Inder"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134821379", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85040564", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85040564"}], "authorized_access_point": "East Indian students"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134821379", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF18034849", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb18034849d"}], "authorized_access_point": "Étudiants indiens (de l'Inde)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4563960-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)95765894X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4563960-7", "source": "GND"}], "authorized_access_point": "Indischer Student"} 1 +2024-09-11 09:10:24.304387 2024-09-11 09:10:24.30439 d68e919a-3838-48a4-8576-e8b363e6e628 {"md5": "c8d356f61742eb8b282f9149303feb9c", "pid": "957331940", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tanz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4558162-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)957331940", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4558162-9", "source": "GND"}], "authorized_access_point": "Säbeltanz"} 1 +2024-09-11 09:10:24.406638 2024-09-11 09:10:24.406642 8494fa25-b9de-40c8-80d2-3fd9e9aa1376 {"md5": "a8a709f18f06c62db164065fa1cb00da", "pid": "957192517", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Antiarrhythmikum"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)124159175X", "source": "GND"}, {"type": "bf:Nbn", "value": "D001073", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D001073"}], "authorized_access_point": "Aprindine"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4555512-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)957192517", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4555512-6", "source": "GND"}], "variant_access_point": ["Aprindina", "Aprindine", "Aprindinum", "CAS 37640-71-4"], "authorized_access_point": "Aprindin"} 1 +2024-09-11 09:10:24.464794 2024-09-11 09:10:24.464797 066fdb51-e436-438b-8eb0-661bb14aa205 {"md5": "5ca95bccebd3591c7de128cd3d610843", "pid": "956838049", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programmierumgebung"}], "related": [{"authorized_access_point": "SAP R/3"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4550881-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)956838049", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4550881-1", "source": "GND"}], "authorized_access_point": "Borland Delphi/Connect für SAP"} 1 +2024-09-11 09:10:24.51689 2024-09-11 09:10:24.516895 754ea8f8-8561-49d5-a8a0-582be4c3135a {"md5": "1eb1e9c371f8c4bfb0c237758dfae378", "pid": "956643221", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4548250-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)956643221", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4548250-0", "source": "GND"}], "authorized_access_point": "Tukangbesi"} 1 +2024-09-11 09:10:24.572764 2024-09-11 09:10:24.572766 fe3234c4-b6d5-4141-b8c1-637efaeab2e6 {"md5": "70da54b422ad151ea90c39bccc2c6e93", "pid": "956635709", "note": [{"label": ["C5H6-SO2-NH2"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Weichmacher"}, {"authorized_access_point": "Benzolderivate"}, {"authorized_access_point": "Sulfonamide"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4548010-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)956635709", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4548010-2", "source": "GND"}], "variant_access_point": ["Benzolsulfamid", "CAS 98-10-2"], "authorized_access_point": "Benzolsulfonamid"} 1 +2024-09-11 09:10:24.6211 2024-09-11 09:10:24.621104 4bb51654-2db3-44ac-902f-6c9b31fde690 {"md5": "6e28cf698f67abd6ae37957e232467c9", "pid": "956220495", "note": [{"label": ["Benutzt, soweit im Ausland lebend"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ausländischer Student"}, {"authorized_access_point": "Rumänen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134821441", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2008001682", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2008001682"}], "authorized_access_point": "Romanian students"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134821441", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17141239", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17141239z"}], "authorized_access_point": "Étudiants roumains"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4539828-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)956220495", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4539828-8", "source": "GND"}], "authorized_access_point": "Rumänischer Student"} 1 +2024-09-11 09:10:24.674153 2024-09-11 09:10:24.674157 27a53313-49bd-4461-b5b8-d14c616bfbeb {"md5": "e508071fb7961645f4a1929f5b20d7ac", "pid": "955244641", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Informierte_Einwilligung&oldid=242937451"], "noteType": "dataSource"}, {"label": ["Einwilligung zur Teilnahme an einem Versuch, Behandlung oder Forschung nach vorheriger eingehender Aufklärung", "Nicht im Zusammenhang mit sexuellen Praktiken zu verwenden, verwende hier das SW \\"Einwilligung\\""], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Einwilligung"}], "related": [{"authorized_access_point": "Ärztliche Aufklärungspflicht"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113413603X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85066306", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85066306"}], "authorized_access_point": "Informed consent (Medical law)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113413603X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12048898", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12048898z"}], "authorized_access_point": "Consentement éclairé (droit médical)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)129990534X", "source": "GND"}, {"type": "bf:Nbn", "value": "XX542468", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX542468"}], "authorized_access_point": "Consentimiento informado (Derecho médico)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4524137-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955244641", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4524137-5", "source": "GND"}], "variant_access_point": ["Informed consent", "Einwilligung nach erfolgter Aufklärung", "Informiertes Einverständnis", "Informierte Zustimmung", "Patient"], "authorized_access_point": "Informierte Einwilligung"} 1 +2024-09-11 09:10:24.724512 2024-09-11 09:10:24.724516 e137ca4e-6281-4e80-ade1-67eca0276ca4 {"md5": "33b04556c150137fe7f88882a348ae29", "pid": "95489748X", "note": [{"label": ["Programm zur Simulierung von Zielvorstellungen für Umweltveränderung und nachhaltige Entwicklung, erarbeitet vom Rijksinstituut voor Volksgezondheit en Milieu (Bilthoven, NL)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Umweltveränderung"}, {"authorized_access_point": "Nachhaltigkeit"}, {"authorized_access_point": "Zielvorstellung"}, {"authorized_access_point": "Modell"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4519867-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)95489748X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4519867-6", "source": "GND"}], "variant_access_point": ["Tool to Assess Regional and Global Environmental and Health Targets for Sustainability"], "authorized_access_point": "TARGETS (Programm)"} 1 +2024-09-11 09:10:25.29805 2024-09-11 09:10:25.298053 e9b2fca0-f81a-441e-a441-6d690bcbc226 {"md5": "9057dd40f1ddd2b5a07218cf27f10618", "pid": "952896605", "note": [{"label": ["Den Entwicklungsprozess vorantreibender Akteur in der Organisationsentwicklung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Organisationsentwicklung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4487767-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)952896605", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4487767-5", "source": "GND"}], "authorized_access_point": "Change Agent"} 1 +2024-09-11 09:10:24.775068 2024-09-11 09:10:24.775072 e052fef8-b5a9-4e74-acb1-901fe810bc03 {"md5": "b55b3ecc76e45f9fb59a74ecd6f209de", "pid": "954782232", "note": [{"label": ["Bezeichnet die überlieferten Kenntnisse, Fähigkeiten und Weltbilder, die in einer bestimmten natürlichen Umwelt und einem bestimmten kulturellen Rahmen entstanden sind."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Alltagswissen"}], "related": [{"authorized_access_point": "Implizites Wissen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4518241-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)954782232", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4518241-3", "source": "GND"}], "variant_access_point": ["Indigenes Wissen", "Traditionelles Wissen", "Indigenous knowledge"], "authorized_access_point": "Lokales Wissen"} 1 +2024-09-11 09:10:24.827249 2024-09-11 09:10:24.827253 f4bf4b0a-3aca-4f17-8269-fd609f195e61 {"md5": "3a6fadcd5e1f6599cb9bc46810b1d862", "pid": "95462839X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Klein- und Mittelbetrieb"}, {"authorized_access_point": "Anlagegut"}, {"authorized_access_point": "Absetzung für Abnutzung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4515541-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)95462839X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4515541-0", "source": "GND"}], "variant_access_point": ["Windows 3.1", "Windows 95"], "authorized_access_point": "PRESTO AfA"} 1 +2024-09-11 09:10:24.877121 2024-09-11 09:10:24.877125 04a1582e-6253-42cc-be6b-09704a946522 {"md5": "f6b300f57ee72106c75f24f89e77e772", "pid": "954211774", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Chipkarte"}, {"authorized_access_point": "Funktelefon"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4509985-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)954211774", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4509985-6", "source": "GND"}], "authorized_access_point": "Chipy (Programm)"} 1 +2024-09-11 09:10:24.931232 2024-09-11 09:10:24.931236 44d9a14b-5053-430f-8366-1cad47cac6b7 {"md5": "91f48e9784a0968b5df8b1e32b4fa173", "pid": "954206738", "note": [{"label": ["Wert der Verminderung zukünftiger Risiken hinsichtlich irreversibler zukünftiger Nutzungen von Umweltgütern durch präventive Umweltschutzinvestitionen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4509905-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)954206738", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4509905-4", "source": "GND"}], "variant_access_point": ["Umweltökonomie (Umweltökonomie)"], "authorized_access_point": "Optionswert (Umweltökonomie)"} 1 +2024-09-11 09:10:24.982051 2024-09-11 09:10:24.982054 2e4d5601-da48-4e1f-babc-6c1a5627f051 {"md5": "3f0b1f5a80c7dccc4b686eb2fa2bb46c", "pid": "954203232", "note": [{"label": ["Bantusprache in Tansania"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Bantusprachen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113442034X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85009040", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85009040"}], "authorized_access_point": "Asu language"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113442034X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF14470028", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb144700287"}], "authorized_access_point": "Asu (langue)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4509866-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)954203232", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4509866-9", "source": "GND"}], "variant_access_point": ["Asu-Sprache", "Chasu-Sprache"], "authorized_access_point": "Pare-Sprache"} 1 +2024-09-11 09:10:25.036646 2024-09-11 09:10:25.036651 96be0d1e-3190-4c2b-9311-7c0dd5264574 {"md5": "85318d0cf73f2497e05acb08678962ee", "pid": "953679802", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zelle"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336596554", "source": "GND"}, {"type": "bf:Nbn", "value": "D000078422", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000078422"}], "authorized_access_point": "Allogeneic Cells"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4502212-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)953679802", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4502212-4", "source": "GND"}], "authorized_access_point": "Allogene Zelle"} 1 +2024-09-11 09:10:25.098709 2024-09-11 09:10:25.098713 e7de0e92-4b78-43f7-ab0f-70fe871a8c31 {"md5": "469d55329ca84ef843e794d312992f08", "pid": "953550346", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4500908-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)953550346", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4500908-9", "source": "GND"}], "variant_access_point": ["Indexzahl", "Statistische Indexreihe", "Dynamische Indexreihe"], "authorized_access_point": "Indexreihe"} 1 +2024-09-11 09:10:25.149081 2024-09-11 09:10:25.149084 13d45da4-c2ef-4514-a308-6fae875010e2 {"md5": "ce0281273ed27ecea3fa39dd2a2a6129", "pid": "953444201", "note": [{"label": ["Auf Sumatra gesprochen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4498755-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)953444201", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4498755-9", "source": "GND"}], "variant_access_point": ["Karo (Sprache)", "Karo-Batak (Sprache)"], "authorized_access_point": "Karo-Batak-Sprache"} 1 +2024-09-11 09:10:25.199871 2024-09-11 09:10:25.199873 20aba97c-140f-4461-9b07-97ce3c5ca24a {"md5": "d05607e13d5a193b85097eb119f7705f", "pid": "953056082", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hebräische Schrift (Druckschrift)"}, {"authorized_access_point": "Druckschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4491111-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)953056082", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4491111-7", "source": "GND"}], "authorized_access_point": "Frank-Rühl-Hebräisch"} 1 +2024-09-11 09:10:25.349799 2024-09-11 09:10:25.349803 1f3e8bda-3142-476f-a9a5-c7a15bb91b9b {"md5": "1178d4e659811f0ecd0d6a88f2addf68", "pid": "952702053", "note": [{"label": ["Verknüpfe mit Sprachbezeichnung und hier nicht permutierender Wortart, z.B. SWW Latein ; Substantiv ; humanitas"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4484471-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)952702053", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4484471-2", "source": "GND"}], "authorized_access_point": "humanitas"} 1 +2024-09-11 09:10:25.404782 2024-09-11 09:10:25.404784 b3fd3fad-252d-48be-b706-e365b7af6625 {"md5": "1a84bf1ba68151e0afa00a2e85fce93d", "pid": "952619636", "note": [{"label": ["In weiter Bedeutung verwendet: Forschung in allen geisteswiss., sozialwiss. und historischen Disziplinen über Geschlechterfragen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Forschung"}], "related": [{"authorized_access_point": "Geschlechterverhältnis"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966762037", "source": "GND"}, {"type": "bf:Nbn", "value": "19757-4", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/19757-4"}], "authorized_access_point": "Geschlechterforschung"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970553757", "source": "GND"}, {"type": "bf:Nbn", "value": "10044108", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10044108"}], "authorized_access_point": "Geschlechterforschung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4482930-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)952619636", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4482930-9", "source": "GND"}], "variant_access_point": ["Gender Studies", "Gender-Forschung", "Geschlechterfrage", "Geschlechtertheorie", "Gender-Theorie", "Gendertheorie", "Genderstudie"], "authorized_access_point": "Geschlechterforschung"} 1 +2024-09-11 09:10:25.461265 2024-09-11 09:10:25.461269 ecafc8b7-24a8-4c85-8afe-1b56b50218b4 {"md5": "4c232ded6a4895d7b706c92738c5ec6f", "pid": "952440431", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Einwanderer"}, {"authorized_access_point": "Amerikaner"}], "related": [{"authorized_access_point": "Amerikanische Einwanderin"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4481511-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)952440431", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4481511-6", "source": "GND"}], "variant_access_point": ["US-Amerikanischer Einwanderer"], "authorized_access_point": "Amerikanischer Einwanderer"} 1 +2024-09-11 09:10:25.522959 2024-09-11 09:10:25.522962 ecc44047-f331-4e9a-aa5b-4eb1f9ee0178 {"md5": "c9d0793be2462c7ab4c0353c0e768e27", "pid": "952431602", "note": [{"label": ["Preis d. Informedia-Stiftung für Gesellschaftswissenschaften u. Publizistik für d. Erklärung d. Sozialen Marktwirtschaft e. breiten Öffentlichkeit"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Preis (Auszeichnung)"}], "related": [{"authorized_access_point": "Journalismus"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4481376-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)952431602", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4481376-4", "source": "GND"}], "variant_access_point": ["Preis der Informedia-Stiftung für Gesellschaftswissenschaften und Publizistik"], "authorized_access_point": "Informedia-Preis für Wirtschafts-Journalismus"} 1 +2024-09-11 09:10:25.581949 2024-09-11 09:10:25.581951 110b9408-2ad8-4db4-ad79-d8072c565b61 {"md5": "7c78db4e9ec162105a95f1035f6d7400", "pid": "951810189", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Grubenottern"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1323097007", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17058267", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17058267x"}], "authorized_access_point": "Jararaca"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336110708", "source": "GND"}, {"type": "bf:Nbn", "value": "D000097145", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000097145"}], "authorized_access_point": "Bothrops jararaca"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4474362-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)951810189", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4474362-2", "source": "GND"}], "variant_access_point": ["Bothrops jararaca"], "authorized_access_point": "Jararaca"} 1 +2024-09-11 09:10:25.637291 2024-09-11 09:10:25.637294 1dc1dfaa-7ac6-48e0-9789-a1de9b5a9d6e {"md5": "be51bd8e40d9c8b96b99f58958ffeef2", "pid": "951618563", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Reise"}, {"authorized_access_point": "Aufbruch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4472809-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)951618563", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4472809-8", "source": "GND"}], "authorized_access_point": "Abreise"} 1 +2024-09-11 09:10:25.688357 2024-09-11 09:10:25.68836 6908ac70-4813-4d9b-a919-95d6117099bf {"md5": "5cc37f10d02888a48475a438e9f5a6b6", "pid": "951607804", "note": [{"label": ["benutzt für den Stoff (Ödipusthematik)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Legende"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4472697-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)951607804", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4472697-1", "source": "GND"}], "authorized_access_point": "Albanuslegende"} 1 +2024-09-11 09:10:26.656832 2024-09-11 09:10:26.656836 eb4cd868-de16-4878-97af-63b18229a9c7 {"md5": "f9d941db0e0869a302bccb66c4c420ac", "pid": "948520116", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bar"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334889856", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2009010761", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2009010761"}], "authorized_access_point": "Happy hours"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4423019-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948520116", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4423019-9", "source": "GND"}], "authorized_access_point": "Happy-hour"} 1 +2024-09-11 09:10:25.746686 2024-09-11 09:10:25.746691 b30e43aa-d1f5-4b5e-9a64-44c365e7fd13 {"md5": "d3809f154637026405c2b0df7d6226a5", "pid": "95159981X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Carrier-Proteine"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134394896", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2004000512", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2004000512"}], "authorized_access_point": "ATP-binding cassette transporters"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134394896", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13743526", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13743526d"}], "authorized_access_point": "Transporteurs ABC"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336028378", "source": "GND"}, {"type": "bf:Nbn", "value": "D018528", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D018528"}], "authorized_access_point": "ATP-Binding Cassette Transporters"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4472594-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)95159981X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4472594-2", "source": "GND"}], "variant_access_point": ["ATP-Binding Cassette Transporter"], "authorized_access_point": "ABC-Transporter"} 1 +2024-09-11 09:10:25.806667 2024-09-11 09:10:25.806672 0fee17ab-6f2e-43e4-a5c2-2b7994cdfee5 {"md5": "f0a1719f9e7d9e434ee0f95bd9d5d271", "pid": "951549650", "note": [{"label": ["Als Triage bezeichnet man ein Verfahren, in dem über die Zuteilung knapper überlebenswichtiger Behandlungsressourcen entschieden wird.", "Auch benutzt für psychosoziale Entscheidungshilfen für die Handlungsorientierung in Notlagen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Priorisierung"}, {"authorized_access_point": "Katastrophenmedizin"}, {"authorized_access_point": "Notfallpsychologie"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1282202472", "source": "GND"}, {"type": "bf:Nbn", "value": "D014218", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D014218"}], "authorized_access_point": "Triage"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4471021-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)951549650", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4471021-5", "source": "GND"}], "variant_access_point": ["Triage-Index"], "authorized_access_point": "Triage"} 1 +2024-09-11 09:10:25.881815 2024-09-11 09:10:25.881818 2069c7f2-0d20-400f-984d-1ab6679d9adc {"md5": "387b2be322ee7efdbb90a11cb399d8fd", "pid": "95153047X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4470686-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)95153047X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4470686-8", "source": "GND"}], "variant_access_point": ["Sakai (Sprache)", "Sakei"], "authorized_access_point": "Sakai-Sprache"} 1 +2024-09-11 09:10:25.931856 2024-09-11 09:10:25.931859 2ec67127-ccbc-4eb4-ae4c-3706e5a9e8a4 {"md5": "e9e7c77b06dc7995190ac16e4e347cbc", "pid": "95152092X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4470454-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)95152092X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4470454-9", "source": "GND"}], "authorized_access_point": "Bakumpai-Sprache"} 1 +2024-09-11 09:10:25.986123 2024-09-11 09:10:25.986127 6ddb707a-da00-47c2-bb96-67c6bc609fda {"md5": "8c4d4cda0a32de4c41b8a0e73a487118", "pid": "950857157", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=246525497"], "noteType": "dataSource"}, {"label": ["Bestehend aus einem Turmpaar, dem G(efechts)-Turm u. dem L(eit)-Turm", "Nicht zu verwenden für Bunker, die mit Flugabwehrgeschütz versehen waren (z.B. Bunker auf dem Heiliggeistfeld in Hamburg); hierfür verknüpfe geograph. Schlagwort mit SW Bunker u. SW Flugabwehrgeschütz"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Turm"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4461928-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950857157", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4461928-5", "source": "GND"}], "authorized_access_point": "Flakturm"} 1 +2024-09-11 09:10:26.039637 2024-09-11 09:10:26.039639 a03ae589-4eb7-4296-acfd-3076ea0ff1d4 {"md5": "b1472ba6b4c2c9e277ed7bac0fa5b8a5", "pid": "950693413", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4459021-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950693413", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4459021-0", "source": "GND"}], "variant_access_point": ["Minahasa-Sprachen"], "authorized_access_point": "Minahassa-Sprachen"} 1 +2024-09-11 09:10:26.089351 2024-09-11 09:10:26.089354 9565a251-df0b-447e-b9c3-ebf8b150dffc {"md5": "8ad1b076fc5d326d0a350cb20d1fd58a", "pid": "950693375", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4459018-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950693375", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4459018-0", "source": "GND"}], "variant_access_point": ["Tondano-Sprache", "Tolou-Sprache", "Tolour-Sprache", "Tondano (Sprache)", "Tolou (Sprache)", "Tolour (Sprache)"], "authorized_access_point": "Tondanesisch"} 1 +2024-09-11 09:10:26.704292 2024-09-11 09:10:26.704295 1a619029-5f78-4326-a007-857e6749c2b4 {"md5": "147201c636e4676d5e472770cc0f8492", "pid": "948474688", "note": [{"label": ["Populärer französischer Tanzstil zu Akkordeonmusik"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tanz"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134457324", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF14618415", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb146184151"}], "authorized_access_point": "Bals musettes"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4422248-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948474688", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4422248-8", "source": "GND"}], "variant_access_point": ["Danse Musette", "Bal Musette", "Musette-Walzer", "Valse à la musette"], "authorized_access_point": "Musette (Tanz)"} 1 +2024-09-11 09:10:26.147765 2024-09-11 09:10:26.147769 2ae60d3a-83c1-48ee-b44f-dcae8e922a49 {"md5": "582fbc7ed816a945cac694db22cfafbb", "pid": "950692433", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134836120", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85139514", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85139514"}], "authorized_access_point": "Uma language"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134836120", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15777212", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15777212r"}], "authorized_access_point": "Uma (langue)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4458960-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950692433", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4458960-8", "source": "GND"}], "variant_access_point": ["Uma-Aria-Sprache", "Oema-Sprache", "Pipikoro (Sprache)", "Uma Aria (Sprache)", "Oema (Sprache)"], "authorized_access_point": "Pipikoro-Sprache"} 1 +2024-09-11 09:10:26.205349 2024-09-11 09:10:26.205355 09fc8184-387a-4be2-ac9c-fbf6777d1347 {"md5": "e95254460da6761265f2c8b9cdfc3932", "pid": "950632481", "note": [{"label": ["PPS-Modularprogramm"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "PPS"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4457570-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950632481", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4457570-1", "source": "GND"}], "authorized_access_point": "COPICS"} 1 +2024-09-11 09:10:26.264038 2024-09-11 09:10:26.264044 27d1468e-733c-427d-a476-9fbe2157f16c {"md5": "a878c5a509ce8bf982159c60353f6be6", "pid": "950276014", "note": [{"label": ["Pflanzenparasit, zu der Gattung der Kleeseide gehörend"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4451407-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950276014", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4451407-4", "source": "GND"}], "authorized_access_point": "Cuscuta odorata"} 1 +2024-09-11 09:10:26.325724 2024-09-11 09:10:26.325729 ed0bd715-fae3-452d-8829-d54fb505f160 {"md5": "fb5c0e7f8267d162a2a251e64ca04819", "pid": "949894028", "note": [{"label": ["Jährl. Preis zur Förd. d. württemberg. Handwerks"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Förderungspreis"}, {"authorized_access_point": "Preis (Auszeichnung)"}], "related": [{"authorized_access_point": "Handwerk"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4444587-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949894028", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4444587-8", "source": "GND"}], "authorized_access_point": "Förderpreis Junges Handwerk"} 1 +2024-09-11 09:10:26.3949 2024-09-11 09:10:26.394904 f490d8e9-4b59-45bb-8c36-a4e3e8f7abbc {"md5": "906988a7dfd46c5ffffb7988251978dd", "pid": "949435015", "note": [{"label": ["Bezeichnung für die Diktaturen in Portugal (1933-1974) und Brasilien (1934/1937-1945)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4436273-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949435015", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4436273-0", "source": "GND"}], "authorized_access_point": "Estado Novo"} 1 +2024-09-11 09:10:26.454395 2024-09-11 09:10:26.4544 9a15afc9-fdc8-4b99-8153-bcc176429b4a {"md5": "09d0b8beeae53fe3b07371d9ef1762d5", "pid": "948897244", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1027688217", "source": "GND"}, {"type": "bf:Nbn", "value": "10077203", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10077203"}], "authorized_access_point": "soziale Kohäsion"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970555849", "source": "GND"}, {"type": "bf:Nbn", "value": "10046095", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10046095"}], "authorized_access_point": "Gruppenkohäsion"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4427991-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948897244", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4427991-7", "source": "GND"}], "variant_access_point": ["Gruppenzusammenhalt", "Kohäsion (Sozialpsychologie)", "Zusammenhalt"], "authorized_access_point": "Gruppenkohäsion"} 1 +2024-09-11 09:10:26.512165 2024-09-11 09:10:26.51217 28536612-2d76-480e-bd89-1d133264a523 {"md5": "e2e59c82001d78eeed43e47393391e75", "pid": "948567341", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4423655-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948567341", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4423655-4", "source": "GND"}], "variant_access_point": ["Andian", "Mandar (Sprache)"], "authorized_access_point": "Mandaresisch"} 1 +2024-09-11 09:10:26.561995 2024-09-11 09:10:26.561999 3d103dba-b4a1-4e99-b5f4-4f8a67fece11 {"md5": "126bcb3390ff291a9c66d71210a60f7c", "pid": "948567317", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4423654-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948567317", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4423654-2", "source": "GND"}], "variant_access_point": ["Mentawei", "Mentawi"], "authorized_access_point": "Mentawai"} 1 +2024-09-11 09:10:26.608288 2024-09-11 09:10:26.608292 c009977a-1373-41db-858d-70792e99078e {"md5": "dcdb97d1a5728068661b16ea39407d62", "pid": "948565977", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Architektur (Informatik)"}], "related": [{"authorized_access_point": "CIM"}, {"authorized_access_point": "Offenes System"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4423632-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948565977", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4423632-3", "source": "GND"}], "variant_access_point": ["CIM-OSA-Modell", "CIM-Open-Systems-Architecture-Modell", "ESPRIT (Forschungsprogramm)"], "authorized_access_point": "CIM-OSA"} 1 +2024-09-11 09:10:26.758984 2024-09-11 09:10:26.758989 7d36dfc8-90a2-4010-b62a-f8cf70116518 {"md5": "e0550680416160c4abb4f0899b866727", "pid": "947762868", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Angle-Klassifizierung"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241591032", "source": "GND"}, {"type": "bf:Nbn", "value": "D008312", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D008312"}], "authorized_access_point": "Malocclusion, Angle Class II"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4412407-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947762868", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4412407-7", "source": "GND"}], "authorized_access_point": "Angle-Klasse II"} 1 +2024-09-11 09:10:26.816568 2024-09-11 09:10:26.816572 2dec603d-12a2-4ac8-a4a1-e9f8fb04cef5 {"md5": "b57cda29d2b6481cb36dfb5dbd7fde79", "pid": "947572090", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Finanzmathematik"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4410220-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947572090", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4410220-3", "source": "GND"}], "authorized_access_point": "FinWin"} 1 +2024-09-11 09:10:26.869677 2024-09-11 09:10:26.869682 eaa5fb6f-1d76-49e7-9498-2b1ef578487a {"md5": "3f067a69d65368e920684f603dbc3e36", "pid": "947210601", "note": [{"label": ["Programm für Bilanzanalyse"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Bilanzanalyse"}, {"authorized_access_point": "Betriebsanalyse"}, {"authorized_access_point": "Kennzahlensystem"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4406289-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947210601", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4406289-8", "source": "GND"}], "variant_access_point": ["Systematische Bilanzanalyse mit dem PC (Programm)", "SYBILA plus"], "authorized_access_point": "SYBILA-PLUS"} 1 +2024-09-11 09:10:26.924274 2024-09-11 09:10:26.924279 43d8919a-2f1b-4233-9747-a695f5746594 {"md5": "f76743b8c9ef6decb811a7f5c1a26ff3", "pid": "947024387", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Installateurhandwerk"}], "related": [{"authorized_access_point": "Klimatechnische Wirtschaft"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4403725-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947024387", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4403725-9", "source": "GND"}], "variant_access_point": ["Klimatechnik", "Klimatechnik", "Klimatechnik"], "authorized_access_point": "Klimatechnisches Handwerk"} 1 +2024-09-11 09:10:26.977105 2024-09-11 09:10:26.977109 57a7d975-84ac-47dc-a69b-9c65bbaacfe7 {"md5": "2c396aba8eaecc06386e067d0da2ce1f", "pid": "946840318", "note": [{"label": ["Vereinfachte isostatische Anomalie der Ausgleichstiefe im Bereich des Meeresniveaus"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schwereanomalie"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4401794-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)946840318", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4401794-7", "source": "GND"}], "variant_access_point": ["Fayesche Anomalie"], "authorized_access_point": "Freiluftanomalie"} 1 +2024-09-11 09:10:27.034859 2024-09-11 09:10:27.034862 414f7429-886a-4592-97fe-ca6f2424b12f {"md5": "bba39b2d4a7e7e11b8703d33000b05e4", "pid": "94683203X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Algebraischer Funktionenkörper"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4401685-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)94683203X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4401685-2", "source": "GND"}], "authorized_access_point": "Arithmetischer Funktionenkörper"} 1 +2024-09-11 09:10:27.088149 2024-09-11 09:10:27.088152 38ada44f-646f-485f-9194-a518cefb7a3c {"md5": "e00abbea28cc9640c7ed6d20673c53c2", "pid": "946538506", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tiere (Motiv)"}, {"authorized_access_point": "Tierdarstellung"}, {"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4398263-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)946538506", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4398263-3", "source": "GND"}], "authorized_access_point": "Flöhe (Motiv)"} 1 +2024-09-11 09:10:27.139045 2024-09-11 09:10:27.139048 3843d10e-e0b5-46cb-b1be-c06233c6ecf1 {"md5": "4b4927368c62b1302c43ed4cba4296d4", "pid": "946529981", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Fakturierung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4398195-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)946529981", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4398195-1", "source": "GND"}], "authorized_access_point": "Faku"} 1 +2024-09-11 09:10:27.191496 2024-09-11 09:10:27.1915 099dda5e-cbc1-4ff7-a972-134517a0bb86 {"md5": "5146c62cd8ff8d219b76ffac8ad32d78", "pid": "946267340", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Grenzsoldat&oldid=193965284"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Soldat"}], "related": [{"authorized_access_point": "Grenzsoldatin"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4394827-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)946267340", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4394827-3", "source": "GND"}], "authorized_access_point": "Grenzsoldat"} 1 +2024-09-11 09:10:27.241844 2024-09-11 09:10:27.241848 5edb5b9b-2b20-437e-b318-1e933ad88b77 {"md5": "86dcfa3ca7089ae4f0980a84905eb299", "pid": "945831749", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zelle"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4389509-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)945831749", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4389509-8", "source": "GND"}], "authorized_access_point": "Basalzelle"} 1 +2024-09-11 09:10:27.290554 2024-09-11 09:10:27.290558 157f61b7-d972-4517-b4ec-b3ed42525521 {"md5": "22e614bc928102ec8c0f9b4dcdf26e8e", "pid": "94574577X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Qualitätsregelkarte"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113476099X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85109440", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85109440"}], "authorized_access_point": "Quality control"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113476099X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11932687", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11932687h"}], "authorized_access_point": "Qualité - Contrôle"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4388728-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)94574577X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4388728-4", "source": "GND"}], "variant_access_point": ["EWMA-Kontrollkarte", "EWMA-Karte", "Exponentially-weighted-moving-average-Regelkarte"], "authorized_access_point": "EWMA-Regelkarte"} 1 +2024-09-11 09:10:27.348672 2024-09-11 09:10:27.348676 9bcc950c-e5e7-4e09-83cc-97a6520dc8bb {"md5": "80f80a2b700f4539c894bfccde000eda", "pid": "945675267", "note": [{"label": ["Angloamerikanischer Tanz und entspr. Musik"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gesellschaftstanz"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134342098", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85139049", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85139049"}], "authorized_access_point": "Twist (Dance)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1332661807", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2005006466", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2005006466"}], "authorized_access_point": "Twist (Music)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134342098", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12484982", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12484982d"}], "authorized_access_point": "Twist (danse)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4388032-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)945675267", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4388032-0", "source": "GND"}], "authorized_access_point": "Twist"} 1 +2024-09-11 09:10:27.398136 2024-09-11 09:10:27.39814 995dc8cd-b854-4576-b84f-1400aab589ad {"md5": "ae13aa69f4063787780545fb2737b63b", "pid": "945372604", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mitose"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336587016", "source": "GND"}, {"type": "bf:Nbn", "value": "D011418", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D011418"}], "authorized_access_point": "Prophase"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4384678-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)945372604", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4384678-6", "source": "GND"}], "authorized_access_point": "Prophase"} 1 +2024-09-11 09:10:27.449581 2024-09-11 09:10:27.449584 656b8e9e-e11d-4bc1-bf75-e0112acd9048 {"md5": "a887d64dcace9c687d3d7844fe2447c6", "pid": "945325150", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Völkerrechtlicher Vertrag"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4384293-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)945325150", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4384293-8", "source": "GND"}], "variant_access_point": ["Zollvertrag"], "authorized_access_point": "Zollabkommen"} 1 +2024-09-11 09:10:27.509165 2024-09-11 09:10:27.50917 02e1a7b5-a683-4ae3-b52d-e25f8fdfe400 {"md5": "f9f47d7ea315ea58ff1accd9ef3dc972", "pid": "944352820", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hindernis"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134390033", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13179032", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb131790320"}], "authorized_access_point": "Barricades"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4375362-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)944352820", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4375362-0", "source": "GND"}], "authorized_access_point": "Barrikade"} 1 +2024-09-11 09:10:27.562267 2024-09-11 09:10:27.562271 e74d0b8d-d608-41ac-862c-25d0b6006800 {"md5": "1a50ce3c879c3297408b6a76e83b1082", "pid": "94392961X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4370880-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)94392961X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4370880-8", "source": "GND"}], "variant_access_point": ["Bolaan-Mongondou", "Mongondow"], "authorized_access_point": "Mongondou"} 1 +2024-09-11 09:10:27.610081 2024-09-11 09:10:27.610085 b671f26c-6c6b-48b0-a2af-59372b77d118 {"md5": "bcaa5b6105327668f770e7953ae8e8c2", "pid": "94392684X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133725848", "source": "GND"}, {"type": "bf:Nbn", "value": "sh90002897", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh90002897"}], "authorized_access_point": "Sangir language (Indonesia and Philippines)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133725848", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12134169", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12134169f"}], "authorized_access_point": "Sangir (langue)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4370851-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)94392684X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4370851-1", "source": "GND"}], "variant_access_point": ["Sanggil", "Sanggir", "Sangihe (Sprache)", "Sangil (Sprache)", "Sangir (Sprache)"], "authorized_access_point": "Sangiresisch"} 1 +2024-09-11 09:10:27.661603 2024-09-11 09:10:27.661606 a0df5048-e7a4-47a8-8126-5f907aa435d2 {"md5": "a0fa6429bbb3b1a22c234907c1b86798", "pid": "943618118", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sängerin"}], "related": [{"authorized_access_point": "Sopran"}, {"authorized_access_point": "Sopranist"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133730353", "source": "GND"}, {"type": "bf:Nbn", "value": "sh89005961", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh89005961"}], "authorized_access_point": "Sopranos (Singers)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133730353", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12166784", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb121667843"}], "authorized_access_point": "Sopranos"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254394877", "source": "GND"}, {"type": "bf:Nbn", "value": "66221", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/66221"}], "authorized_access_point": "Soprani"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4367362-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)943618118", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4367362-4", "source": "GND"}], "variant_access_point": ["Sopran (Sängerin)"], "authorized_access_point": "Sopranistin"} 1 +2024-09-11 09:10:27.715537 2024-09-11 09:10:27.715542 08a19b5c-29fa-4078-9ea0-44e1391a0450 {"md5": "c70288a3952bc109a9c8f7b4a5f3d412", "pid": "943592267", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Nachtw%C3%A4chter&oldid=206468413"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wächter"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4366957-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)943592267", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4366957-8", "source": "GND"}], "authorized_access_point": "Nachtwächter"} 1 +2024-09-11 09:10:27.766128 2024-09-11 09:10:27.766133 8adce908-e674-4190-b1f9-3ccfd26d1f76 {"md5": "7c137a0a634fe1eab0d6cb8dc7709669", "pid": "943496799", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gesellschaftstanz"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133773540", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85116847", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85116847"}], "authorized_access_point": "Salsa (Music)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134552629", "source": "GND"}, {"type": "bf:Nbn", "value": "sh99014258", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99014258"}], "authorized_access_point": "Salsa (Dance)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133773540", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12331117", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12331117t"}], "authorized_access_point": "Salsas"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134552629", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13542512", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb135425124"}], "authorized_access_point": "Salsa (danse)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254379495", "source": "GND"}, {"type": "bf:Nbn", "value": "46674", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/46674"}], "authorized_access_point": "Salsa"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254481648", "source": "GND"}, {"type": "bf:Nbn", "value": "XX527887", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX527887"}], "authorized_access_point": "Salsa (Música)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4365525-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)943496799", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4365525-7", "source": "GND"}], "authorized_access_point": "Salsa (Tanz)"} 1 +2024-09-11 09:10:27.826109 2024-09-11 09:10:27.826114 adae77f3-9387-46f9-a7c4-d13ff235eca0 {"md5": "d70f3ecdde4e5ba403aaca9ff828104c", "pid": "943138604", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zellaufschluss"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4360354-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)943138604", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4360354-3", "source": "GND"}], "authorized_access_point": "Lysat"} 1 +2024-09-11 09:10:27.881768 2024-09-11 09:10:27.881772 63e65420-068c-4a94-80ab-802c9d47c7cf {"md5": "02d23d984175a3f776fbfa858425be4e", "pid": "942370295", "note": [{"label": ["Tafelgeschirr mit einheitlichem Dekor"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Essgeschirr"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134514441", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15505355", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb155053551"}], "authorized_access_point": "Services de table"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4352883-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)942370295", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4352883-1", "source": "GND"}], "variant_access_point": ["Tafelservice"], "authorized_access_point": "Service (Hausrat)"} 1 +2024-09-11 09:10:27.947161 2024-09-11 09:10:27.947165 f843df32-3650-4f96-b173-bed6629d0ac5 {"md5": "7dbb7e968a5526050a85080d2e577faf", "pid": "942203283", "note": [{"label": ["Nach dem Zusammenschluss von Novell und WordPerfect wurde Office 4.0 umbenannt in GroupWise 4.1"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Office 4.0"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4351435-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)942203283", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4351435-2", "source": "GND"}], "variant_access_point": ["Novell GroupWise 4.1"], "authorized_access_point": "GroupWise 4.1"} 1 +2024-09-11 09:10:27.9982 2024-09-11 09:10:27.998204 7fdb0b18-0edf-4c7c-8bfd-ab0fdbb82e8b {"md5": "dfc9134150a73066ba607cc47584a413", "pid": "94206285X", "note": [{"label": ["Makroökonomisches Modell der OECD; dynamisches, allgemeines Multiländer-, Multisektoren-Gleichgewichtsmodell, das der Kostenermittlung für Maßnahmen der Kohlendioxidemissionssenkung dient"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Makroökonomisches Modell"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4349431-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)94206285X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4349431-6", "source": "GND"}], "variant_access_point": ["GEEM"], "authorized_access_point": "General Equilibrium Environmental Model"} 1 +2024-09-11 09:10:28.054432 2024-09-11 09:10:28.054435 089220ea-3050-4d36-ab4a-0e7ccd877476 {"md5": "9d6ad81bf4c4058b38c0135e55d4e443", "pid": "941781437", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4346819-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)941781437", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4346819-6", "source": "GND"}], "authorized_access_point": "Kalkutta (Motiv)"} 1 +2024-09-11 09:10:28.104272 2024-09-11 09:10:28.104276 b43ff27e-a7a3-4c80-9c43-c4b9bb7d8999 {"md5": "22f19712fdc00adb627b9160d0648a57", "pid": "940910004", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134673965", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85035778", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85035778"}], "authorized_access_point": "Daphnia pulex"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4337469-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)940910004", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4337469-4", "source": "GND"}], "variant_access_point": ["Daphnia pulex", "Gemeiner Wasserfloh"], "authorized_access_point": "Wasserfloh"} 1 +2024-09-11 09:10:28.160175 2024-09-11 09:10:28.160179 88c7e6a2-4739-41e1-b8d0-b18afaeef66f {"md5": "5c1fcae3966d82e4ecc13cf61b3d8228", "pid": "940842440", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336027118", "source": "GND"}, {"type": "bf:Nbn", "value": "D000095322", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000095322"}], "authorized_access_point": "Anthrones"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4336558-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)940842440", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4336558-9", "source": "GND"}], "authorized_access_point": "Anthronderivate"} 1 +2024-09-11 09:10:28.213783 2024-09-11 09:10:28.213787 ba4cd9ea-ae31-4a78-8a64-6477f13028c9 {"md5": "6503b7e5b6fcf527b6844731442df677", "pid": "94063855X", "note": [{"label": ["Verknüpfe mit Hörfunk bzw. Fernsehen oder engerem Schlagwort (z.B. Lokaler Hörfunk), Verknüpfung mit Rundfunk gilt als pleonastisch."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Rundfunksendung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134144377", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2001000815", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2001000815"}], "authorized_access_point": "Educational television programs"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134212968", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2007025636", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2007025636"}], "authorized_access_point": "Educational radio programs"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134212968", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12214963", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12214963b"}], "authorized_access_point": "Radio - Émissions culturelles"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4333982-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)94063855X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4333982-7", "source": "GND"}], "variant_access_point": ["Bildungsprogramm", "Bildungssendung", "Bildungsfunk"], "authorized_access_point": "Bildungssendung"} 1 +2024-09-11 09:10:28.26423 2024-09-11 09:10:28.264234 8dd8c7eb-18d3-45ad-8e23-bdb98ec57dc2 {"md5": "539e2498d3b8dbb5e19167a05479360f", "pid": "940594919", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4333440-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)940594919", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4333440-4", "source": "GND"}], "variant_access_point": ["Leinen"], "authorized_access_point": "Leinenproduktion"} 1 +2024-09-11 09:10:28.312583 2024-09-11 09:10:28.312586 41c460fc-2871-4353-ac75-c34325224907 {"md5": "d06fd164ad3c361e125a7db9d930fd8b", "pid": "199289190", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7794288-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199289190", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7794288-7", "source": "GND"}], "authorized_access_point": "Wunderheilung (Motiv)"} 1 +2024-09-11 09:10:28.365789 2024-09-11 09:10:28.365792 285a6474-2d17-42c0-ab8d-7a607d13af24 {"md5": "91336f81c96e538e754ed47e7836163b", "pid": "199281823", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7793453-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199281823", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7793453-2", "source": "GND"}], "authorized_access_point": "Rosenkranzgebet (Motiv)"} 1 +2024-09-11 09:10:28.415467 2024-09-11 09:10:28.41547 3849684b-36f3-435a-9017-cb4244fa2958 {"md5": "6389992bf281519385a9fceec9497aa8", "pid": "199193835", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Aak&oldid=186723436#Flussfrachtschiffe_im_Gebiet_des_Niederrheins", "Dorsten Lexikon - http://www.dorsten-lexikon.de/dorstener-aak/"], "noteType": "dataSource"}, {"label": ["In Dorsten gebauter, flacher Flussfrachtschiffstyp; wurde vorwiegend auf Lippe, Ruhr und Niederrhein sowie auf den seeländischen Wasserstraßen (wie Maas, Schelde und Waal) eingesetzt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Aak"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7783302-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199193835", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7783302-8", "source": "GND"}], "variant_access_point": ["Dorsten'sche Aak"], "authorized_access_point": "Dorstener Aak"} 1 +2024-09-11 09:10:28.463753 2024-09-11 09:10:28.463756 5811574c-e1f0-45bf-9a47-92251d03b13d {"md5": "7e0b01a5ac1414f8446822680db89084", "pid": "19917606X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Handel"}, {"authorized_access_point": "Seilerware"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7781349-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)19917606X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7781349-2", "source": "GND"}], "variant_access_point": ["Seilerware", "Seilhandel", "Seil"], "authorized_access_point": "Seilerwarenhandel"} 1 +2024-09-11 09:10:28.512169 2024-09-11 09:10:28.512173 9dd96151-fa53-4820-b4b9-1e316ab6067d {"md5": "b3f258847dc3f7b2d6951080959dbd3b", "pid": "199170711", "note": [{"label": ["Bundesverband der Deutschen Spirituosen-Industrie - https://www.spirituosen-verband.de/genuss/geschichte/", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Brennen_(Spirituosen)&oldid=198247823"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Getränkeherstellung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7780760-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199170711", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7780760-1", "source": "GND"}], "variant_access_point": ["Spirituosenproduktion", "Brennen (Spirituosen)", "Spirituosen"], "authorized_access_point": "Spirituosenherstellung"} 1 +2024-09-11 09:10:28.571472 2024-09-11 09:10:28.571477 a1693a2d-8cc2-4720-9b54-4e43796f43cf {"md5": "7ee514828f0d8f00cbcc884f75843aff", "pid": "19915046X", "note": [{"label": ["Internet - http://www.miz.org/themenportale/musikfoerderung"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kulturförderung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7778528-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)19915046X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7778528-9", "source": "GND"}], "authorized_access_point": "Musikförderung"} 1 +2024-09-11 09:10:28.636372 2024-09-11 09:10:28.636374 a097454c-8d1a-4281-b1e9-fe720d6e3ce5 {"md5": "85bcb92c9b03e4d1c5ad5c60ce781e4e", "pid": "199129215", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Versicherungsteuer"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7776182-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199129215", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7776182-0", "source": "GND"}], "authorized_access_point": "Feuerschutzsteuer"} 1 +2024-09-11 09:10:28.699978 2024-09-11 09:10:28.699983 2e402a0a-7712-46d6-a4f3-99ffea4c061f {"md5": "96810d2cf447e7c57dee58abfda60efa", "pid": "130791008", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7512682-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)130791008", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7512682-5", "source": "GND"}], "authorized_access_point": "Auslandseinsatz (Militär)"} 1 +2024-09-11 09:10:28.750659 2024-09-11 09:10:28.750663 04505918-d727-44d8-822b-91d61fd56559 {"md5": "6eba53f7cd3f508d121abfc824c0ef22", "pid": "130750085", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7508194-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)130750085", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7508194-5", "source": "GND"}], "variant_access_point": ["Homophilie", "Schwule Liebe", "Schwule Orientierung"], "authorized_access_point": "Männliche Homosexualität"} 1 +2024-09-11 09:10:28.799532 2024-09-11 09:10:28.799535 b137a834-eed4-4e89-8e49-ffdd6d9b3dfa {"md5": "4b0771d61a1c8e8a6e72c1343f1f4c6d", "pid": "130741094", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7507209-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)130741094", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7507209-9", "source": "GND"}], "authorized_access_point": "Gedichtinterpretation"} 1 +2024-09-11 09:10:28.848729 2024-09-11 09:10:28.848732 bf749b60-6f7c-4c6f-8897-0c6de0b5135c {"md5": "c305b906a56b4da917104f4178ed3f95", "pid": "130724572", "note": [{"label": ["Für rein motivische Behandlung der Antike in den Künsten verwende SW Antike "], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7505393-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)130724572", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7505393-7", "source": "GND"}], "variant_access_point": ["Antikenstudium", "Antikenkopie", "Antikerezeption"], "authorized_access_point": "Antikenrezeption"} 1 +2024-09-11 09:10:28.898244 2024-09-11 09:10:28.898246 873cef36-3ce7-42c1-91d3-6e7b3062d31f {"md5": "4dcb52e815f679bd3a37d643a41fbe07", "pid": "130715387", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7504382-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)130715387", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7504382-8", "source": "GND"}], "authorized_access_point": "Evidenztheorie (Recht)"} 1 +2024-09-11 09:10:28.948491 2024-09-11 09:10:28.948494 78bdf5d0-7608-47b9-b189-c717c3d437ab {"md5": "ea0eabbea598f6bdaccfe952e0afabb1", "pid": "130714941", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7504334-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)130714941", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7504334-8", "source": "GND"}], "variant_access_point": ["Betrieb", "Betriebsorganisation", "Unternehmensstruktur (Organisation)", "Unternehmen"], "authorized_access_point": "Unternehmensorganisation"} 1 +2024-09-11 09:10:28.993863 2024-09-11 09:10:28.993867 febcd60d-f32f-4163-94c9-03c8a90eafca {"md5": "29dd89a1c7aa523a712fd7da5503d308", "pid": "130708291", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7503603-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)130708291", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7503603-4", "source": "GND"}], "variant_access_point": ["Ehe", "Eherecht der katholischen Kirche"], "authorized_access_point": "Kanonisches Eherecht"} 1 +2024-09-11 09:10:29.03969 2024-09-11 09:10:29.039693 051cdee9-b33a-478f-a968-1d56d135c25e {"md5": "6e240123670a13dd25f8338cf08da060", "pid": "130703907", "note": [{"label": ["Verwendet für das Recht der Datenverarbeitung", "Aktualisierung des Hinweissatzes nach Mx-Entscheidung; bis Juli/2024 wurden die Schlagwörter \\"Datenverarbeitung\\" und \\"Recht\\" für den Nicht-Deskriptor verwendet."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7503120-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)130703907", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7503120-6", "source": "GND"}], "variant_access_point": ["Datenverarbeitungsrecht", "Datenverarbeitung", "Computer"], "authorized_access_point": "Computerrecht"} 1 +2024-09-11 09:10:29.094088 2024-09-11 09:10:29.094091 57a74f04-b9c2-4123-abf1-7f58154e399b {"md5": "bae724b4faa4f672ba77df8561d9afa9", "pid": "130702722", "note": [{"label": ["Nur benutzt für die Autorität des Erziehenden"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7502991-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)130702722", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7502991-1", "source": "GND"}], "variant_access_point": ["Erzieherische Autorität"], "authorized_access_point": "Pädagogische Autorität"} 1 +2024-09-11 09:10:29.148144 2024-09-11 09:10:29.148147 a68e41a4-0b67-465e-a094-2ae0f9e05549 {"md5": "1e73dbe92f42d6a36376e32668583655", "pid": "13069374X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7502002-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)13069374X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7502002-6", "source": "GND"}], "variant_access_point": ["Verfassungsmäßiges Gesetz", "Verfassungswidrigkeit von Gesetzen", "Verfassungswidriges Gesetz", "Nichtiges Gesetz", "Gesetz", "Gesetz"], "authorized_access_point": "Verfassungsmäßigkeit von Gesetzen"} 1 +2024-09-11 09:10:29.199245 2024-09-11 09:10:29.199248 834e72c0-771a-4c13-93e3-f8c22a8bcdee {"md5": "53ecda7bec11befda9da31c92cd85423", "pid": "130692476", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7501863-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)130692476", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7501863-9", "source": "GND"}], "variant_access_point": ["Literarische Interpretation"], "authorized_access_point": "Literaturinterpretation"} 1 +2024-09-11 09:10:29.249232 2024-09-11 09:10:29.249236 e5a78ba5-ca87-40da-b7ba-7b3dcada06f7 {"md5": "957b391b2654d390d76eb7ef1618f416", "pid": "04328762X", "note": [{"label": ["Lehrprogrammsystem für Finanzbuchhaltung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Finanzbuchhaltung"}, {"authorized_access_point": "Einführung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4328762-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04328762X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4328762-1", "source": "GND"}], "variant_access_point": ["Computerorientierte Buchführung für kaufmännische Schulen (Programm)"], "authorized_access_point": "COBUKAS"} 1 +2024-09-11 09:10:29.296063 2024-09-11 09:10:29.296067 3c51ab83-f000-483f-bd33-7dd779f0fad1 {"md5": "79924e3235f8597b528f59d466ecb1f4", "pid": "043282695", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Haar"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334795894", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85058320", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85058320"}], "authorized_access_point": "Hair follicles"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334795894", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15062168", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15062168g"}], "authorized_access_point": "Follicule du poil"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125439432X", "source": "GND"}, {"type": "bf:Nbn", "value": "65584", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/65584"}], "authorized_access_point": "Follicoli piliferi"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1282203460", "source": "GND"}, {"type": "bf:Nbn", "value": "D018859", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D018859"}], "authorized_access_point": "Hair Follicle"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4328269-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043282695", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4328269-6", "source": "GND"}], "variant_access_point": ["Haartasche", "Haarbalg", "Folliculus pili"], "authorized_access_point": "Haarfollikel"} 1 +2024-09-11 09:10:29.35081 2024-09-11 09:10:29.350813 0c293602-00f6-41a7-a77a-78da9318ebde {"md5": "ee1232f0882b78cf70cb65c5386cd087", "pid": "04328213X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Geschwindigkeit"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4328213-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04328213X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4328213-1", "source": "GND"}], "variant_access_point": ["Deposition (Meteorologie)"], "authorized_access_point": "Ablagerungsgeschwindigkeit"} 1 +2024-09-11 09:10:29.415145 2024-09-11 09:10:29.415148 88ce1b1e-3922-4837-a7e3-99bacc2fc01d {"md5": "311136f6ec65bd6d93b6efb8a216d1ce", "pid": "043274994", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bewegliche Sache"}], "related": [{"authorized_access_point": "Wiederherbeigeschaffte Sache"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4327499-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043274994", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4327499-7", "source": "GND"}], "variant_access_point": ["Bewegliche Sache"], "authorized_access_point": "Abhanden gekommene Sache"} 1 +2024-09-11 09:10:29.556709 2024-09-11 09:10:29.556714 51143c5e-8ed6-4434-83b8-17cdb37fe1d7 {"md5": "384efa7d5e584be8d477df407d826160", "pid": "043203469", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hanfwirtschaft"}, {"authorized_access_point": "Pflanzenbau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4320346-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043203469", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4320346-2", "source": "GND"}], "variant_access_point": ["Hanf", "Cannabisanbau", "Cannabis-Anbau"], "authorized_access_point": "Hanfanbau"} 1 +2024-09-11 09:10:32.681703 2024-09-11 09:10:32.681709 d63e11a9-4b4e-4712-a636-d6a6d4b530c6 {"md5": "ef86ffc3a667e4ba30912f1cf08ef983", "pid": "042425875", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Trainingsplanung"}], "related": [{"authorized_access_point": "Jahrestrainingsplan"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4242587-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042425875", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4242587-6", "source": "GND"}], "variant_access_point": ["Periodisierung (Training)"], "authorized_access_point": "Trainingsperiodisierung"} 1 +2024-09-11 09:10:29.476453 2024-09-11 09:10:29.476457 6008e0eb-f9ee-4024-9bb9-996d327a5e5d {"md5": "9b1650f1e5cbeec3f714dd8b4fdea47d", "pid": "043252044", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Russischer_B%C3%BCrgerkrieg&oldid=214352964#Intervention_der_Entente-Mächte"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Intervention (Völkerrecht)"}], "related": [{"authorized_access_point": "Russischer Bürgerkrieg"}, {"authorized_access_point": "Entente"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1231385979", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85125813", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85125813"}], "authorized_access_point": "Soviet Union - History - Allied intervention, 1918-1920"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1231385979", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11980886", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119808868"}], "authorized_access_point": "URSS - 1918-1920 (Intervention alliée)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4325204-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043252044", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4325204-7", "source": "GND"}], "variant_access_point": ["Alliierte Intervention in der Sowjetunion (1918-1920)", "Militärische Intervention in der Sowjetunion (1918-1920)"], "authorized_access_point": "Intervention der Entente-Mächte in der Sowjetunion (1918-1920)"} 1 +2024-09-11 09:10:29.626093 2024-09-11 09:10:29.626103 36cf065a-f3c9-4cca-928d-372615600b32 {"md5": "be2635b7fcd20431033867ec65cf15b9", "pid": "043197574", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Lewis-Addukt"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134402171", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF14407869", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb144078698"}], "authorized_access_point": "Lewis, Bases de"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336148071", "source": "GND"}, {"type": "bf:Nbn", "value": "D058115", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D058115"}], "authorized_access_point": "Lewis Bases"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4319757-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043197574", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4319757-7", "source": "GND"}], "variant_access_point": ["Lewis-Basen"], "authorized_access_point": "Lewis-Base"} 1 +2024-09-11 09:10:29.689454 2024-09-11 09:10:29.689458 33276edf-3dfc-4622-ac2b-447d3b9970db {"md5": "3a8dc78ea8049ad5390250e3490342f2", "pid": "043195733", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kernteilung"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336587482", "source": "GND"}, {"type": "bf:Nbn", "value": "D020090", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D020090"}], "authorized_access_point": "Chromosome Segregation"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4319573-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043195733", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4319573-8", "source": "GND"}], "variant_access_point": ["Chromosom", "Chromosomensegregation"], "authorized_access_point": "Segregation (Genetik)"} 1 +2024-09-11 09:10:29.736607 2024-09-11 09:10:29.73661 aef507e7-61f5-4910-a34a-93a4348bfc5a {"md5": "2360b79cdbd7e625ef89f414ad16b4b0", "pid": "04313291X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Proteinogene Aminosäuren"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134402074", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85003136", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85003136"}], "authorized_access_point": "Alanine"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134402074", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF14407404", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb14407404k"}], "authorized_access_point": "Alanine"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256189383", "source": "GND"}, {"type": "bf:Nbn", "value": "239", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_239"}], "authorized_access_point": "alanine"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133614730X", "source": "GND"}, {"type": "bf:Nbn", "value": "D000409", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000409"}], "authorized_access_point": "Alanine"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4313291-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04313291X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4313291-1", "source": "GND"}], "variant_access_point": ["Aminopropionsäure", "Aminopropansäure", "Alanin (alpha-)", "CAS 338-69-2", "CAS 56-41-7", "CAS 302-72-7", "Alanin (beta-)", "CAS 107-95-9"], "authorized_access_point": "Alanin"} 1 +2024-09-11 09:10:29.820651 2024-09-11 09:10:29.82066 2a1995ff-124b-4c97-ac31-0fb5e4a2abe3 {"md5": "c7140384b07fc4d50a41d6739751f5ce", "pid": "043128629", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Anlagenbuchhaltung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4312862-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043128629", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4312862-2", "source": "GND"}], "authorized_access_point": "JOKO-AVW"} 1 +2024-09-11 09:10:29.892271 2024-09-11 09:10:29.892275 b0295e41-dc31-46cf-8977-edf8b84aa8e1 {"md5": "5971239cdcf82827dedbea3d8bf55857", "pid": "043062008", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4306200-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043062008", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4306200-3", "source": "GND"}], "authorized_access_point": "Mundart Xin Xiangyu (Changsha)"} 1 +2024-09-11 09:10:29.956865 2024-09-11 09:10:29.956869 d7ad7ce4-c2cf-489b-ba04-46eab924eb82 {"md5": "3566f96cd3193abcec6c8af5da9f663a", "pid": "04304929X", "note": [{"label": ["Süd-Sulawesi"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4304929-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04304929X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4304929-1", "source": "GND"}], "variant_access_point": ["Luwu-Sprache"], "authorized_access_point": "Toala-Sprache"} 1 +2024-09-11 09:10:33.082517 2024-09-11 09:10:33.08252 3990094d-228b-4e33-b62c-84ae8c9b736c {"md5": "1e98a8f50e3c47dd7c09bab2c72277b9", "pid": "042277558", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4227755-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042277558", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4227755-3", "source": "GND"}], "variant_access_point": ["Badjau-Sprache", "Sama-Sprache (Austronesische Sprache)"], "authorized_access_point": "Badjaw-Sprache"} 1 +2024-09-11 09:10:30.025234 2024-09-11 09:10:30.025238 64b0db62-0032-4473-a82e-b8d81e182985 {"md5": "c5cb7055495e04268de30731ff249968", "pid": "043035167", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133809227", "source": "GND"}, {"type": "bf:Nbn", "value": "sh86005267", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh86005267"}], "authorized_access_point": "Rejang language (Sumatra, Indonesia)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133809227", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13516519", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13516519w"}], "authorized_access_point": "Rejang (langue)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4303516-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043035167", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4303516-4", "source": "GND"}], "variant_access_point": ["Rejang-Sprache"], "authorized_access_point": "Redjang-Sprache"} 1 +2024-09-11 09:10:30.088707 2024-09-11 09:10:30.088711 f5957ccb-93ce-4081-8ce5-ca3828152eba {"md5": "fb614b1fb433ff7805b4646207efe1dd", "pid": "043022790", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4302279-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043022790", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4302279-0", "source": "GND"}], "variant_access_point": ["Pitu Uluna Binanga"], "authorized_access_point": "Pitu-ulunna-salu"} 1 +2024-09-11 09:10:30.161296 2024-09-11 09:10:30.161305 9bf57f42-367d-485d-adb9-995cbe8419ee {"md5": "bfa801ee897f69af8e66171670f87f99", "pid": "043004164", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Äolisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4300416-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043004164", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4300416-7", "source": "GND"}], "variant_access_point": ["Boiotisch"], "authorized_access_point": "Böotisch"} 1 +2024-09-11 09:10:30.222327 2024-09-11 09:10:30.222333 cf91e5f1-d36f-45cd-95fe-f63faf6251b5 {"md5": "8696ec194b0add4cae35c1363219062d", "pid": "043003583", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Lewis-S%C3%A4ure-Base-Konzept"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Säure"}, {"authorized_access_point": "Lewis-Addukt"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113425038X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh89004433", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh89004433"}], "authorized_access_point": "Lewis acids"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113425038X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12269978", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12269978m"}], "authorized_access_point": "Lewis, Acides de"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336148020", "source": "GND"}, {"type": "bf:Nbn", "value": "D058116", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D058116"}], "authorized_access_point": "Lewis Acids"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4300358-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043003583", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4300358-8", "source": "GND"}], "variant_access_point": ["Lewis-Säuren"], "authorized_access_point": "Lewis-Säure"} 1 +2024-09-11 09:10:30.305377 2024-09-11 09:10:30.305382 080f0287-7dc8-4f4e-bb7e-4242b13c7749 {"md5": "a6c64a6043a0388b382ee7121dad1402", "pid": "043001173", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4300117-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043001173", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4300117-8", "source": "GND"}], "variant_access_point": ["Feuchtigkeitstransport", "Feuchtetransport"], "authorized_access_point": "Feuchteleitung"} 1 +2024-09-11 09:10:30.372746 2024-09-11 09:10:30.37275 249d640a-0f2c-49b8-9098-78017e291319 {"md5": "9521a8fe5f7fbc2cb5971931206671d8", "pid": "04300024X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Tischdecken"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133998410", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85131801", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85131801"}], "authorized_access_point": "Table setting and decoration"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133998410", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11960524", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11960524g"}], "authorized_access_point": "Arts de la table"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254495401", "source": "GND"}, {"type": "bf:Nbn", "value": "XX538094", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX538094"}], "authorized_access_point": "Arte de servir la mesa"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4300024-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04300024X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4300024-1", "source": "GND"}], "variant_access_point": ["Tischschmuck"], "authorized_access_point": "Tischdekoration"} 1 +2024-09-11 09:10:30.443537 2024-09-11 09:10:30.443542 6249ac61-6501-4dd6-bfc1-b4c4f612a2d7 {"md5": "ad048db24f89116d40b9017361c41aec", "pid": "043000150", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Fakturierung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4300015-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043000150", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4300015-0", "source": "GND"}], "authorized_access_point": "TOP-FAKTURA"} 1 +2024-09-11 09:10:30.50407 2024-09-11 09:10:30.504075 beb6aaf6-331a-48d6-82d7-a55ce4aed367 {"md5": "45df9ac2832bc902769db91e725f3456", "pid": "042982553", "note": [{"label": ["Lehre von den Erkrankungen der weiblichen Brust"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Brustkrankheit"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133629563", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85016683", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85016683"}], "authorized_access_point": "Breast - Diseases"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133629563", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11938410", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11938410t"}], "authorized_access_point": "Sein - Maladies"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254356177", "source": "GND"}, {"type": "bf:Nbn", "value": "25596", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/25596"}], "authorized_access_point": "Mastopatie"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254486186", "source": "GND"}, {"type": "bf:Nbn", "value": "XX564846", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX564846"}], "authorized_access_point": "Mamas - Enfermedades"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4298255-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042982553", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4298255-8", "source": "GND"}], "authorized_access_point": "Senologie"} 1 +2024-09-11 09:10:30.563833 2024-09-11 09:10:30.563837 e6ae96dc-33c6-4df3-aa22-52aa845b355c {"md5": "40c951f42772168a048868e857572b9a", "pid": "042981794", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bromverbindungen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134593279", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85017042", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85017042"}], "authorized_access_point": "Bromate"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336226919", "source": "GND"}, {"type": "bf:Nbn", "value": "D001959", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D001959"}], "authorized_access_point": "Bromates"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4298179-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042981794", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4298179-7", "source": "GND"}], "authorized_access_point": "Bromate"} 1 +2024-09-11 09:10:30.623819 2024-09-11 09:10:30.623822 b6963bd1-b39d-4f59-a2db-9c268c64e622 {"md5": "5eb29639f179fd34fd73fd34f79df96c", "pid": "042940664", "note": [{"label": ["Benutzt, soweit im Ausland lebend"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ausländischer Student"}, {"authorized_access_point": "Griechen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134821360", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85057194", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85057194"}], "authorized_access_point": "Greek students"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134821360", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16605366", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb166053660"}], "authorized_access_point": "Étudiants grecs"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4294066-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042940664", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4294066-7", "source": "GND"}], "authorized_access_point": "Griechischer Student"} 1 +2024-09-11 09:10:30.690468 2024-09-11 09:10:30.690472 a787ba7a-12f1-4d1a-b818-be08033af5a9 {"md5": "cc0386294d58384990d6f03888e5bee5", "pid": "042914582", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Produktivität"}], "related": [{"authorized_access_point": "Grenzertrag"}, {"authorized_access_point": "Grenzproduktivitätstheorie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113450361X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85081054", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85081054"}], "authorized_access_point": "Marginal productivity"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113450361X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16600937v", "source": "BNF"}, {"type": "uri", "value": "https://catalogue.bnf.fr/ark:/12148/cb16600937v"}], "authorized_access_point": "Productivité marginale"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254365591", "source": "GND"}, {"type": "bf:Nbn", "value": "33441", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/33441"}], "authorized_access_point": "Produttività marginale"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966850807", "source": "GND"}, {"type": "bf:Nbn", "value": "29921-4", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/29921-4"}], "authorized_access_point": "Grenzproduktivität"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970555407", "source": "GND"}, {"type": "bf:Nbn", "value": "10045917", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10045917"}], "authorized_access_point": "Grenzproduktivität"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4291458-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042914582", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4291458-9", "source": "GND"}], "authorized_access_point": "Grenzproduktivität"} 1 +2024-09-11 09:10:30.743874 2024-09-11 09:10:30.743878 88a77be1-90b5-400f-bb8b-40ed447f1d07 {"md5": "4fce8fff35f2fe7b977b76134ee617dd", "pid": "042913748", "note": [{"label": ["Multifunktionaler Naturkorridor, der Fuss-, Fahrrad-, Reitwege und/oder Wasserläufe umschliesst u. bestehende Freiflächen (z.B. Parks) beinhaltet; meist an naturräuml. Strukturen orientiert"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Grüngürtel"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4291374-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042913748", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4291374-3", "source": "GND"}], "variant_access_point": ["Greenway"], "authorized_access_point": "Grünzug"} 1 +2024-09-11 09:10:30.805195 2024-09-11 09:10:30.805199 7037c1db-20a4-4b43-9152-0f23867c6151 {"md5": "7aaae42025f831372c2c3b5fc160e38b", "pid": "04291096X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zelltod"}], "related": [{"authorized_access_point": "Regeneration"}, {"authorized_access_point": "Tumorlysesyndrom"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133803601", "source": "GND"}, {"type": "bf:Nbn", "value": "sh91000743", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh91000743"}], "authorized_access_point": "Apoptosis"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133803601", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12463578", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12463578d"}], "authorized_access_point": "Apoptose"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254319298", "source": "GND"}, {"type": "bf:Nbn", "value": "1245", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/1245"}], "authorized_access_point": "Apoptosi"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254405623", "source": "GND"}, {"type": "bf:Nbn", "value": "XX547652", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX547652"}], "authorized_access_point": "Apoptosis"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241591687", "source": "GND"}, {"type": "bf:Nbn", "value": "D017209", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D017209"}], "authorized_access_point": "Apoptosis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4291096-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04291096X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4291096-1", "source": "GND"}], "variant_access_point": ["Apoptose", "Programmierter Zelltod"], "authorized_access_point": "Apoptosis"} 1 +2024-09-11 09:10:30.885806 2024-09-11 09:10:30.885813 fc611394-dcf8-4c5f-a8a2-0d41bb81ef8e {"md5": "3773dfa6dee78740bcd7a4f12d59421d", "pid": "042910870", "note": [{"label": ["INN"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Cephalosporine"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134245483", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12266464", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12266464t"}], "authorized_access_point": "Cefpirome"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336145846", "source": "GND"}, {"type": "bf:Nbn", "value": "D000097572", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000097572"}], "authorized_access_point": "Cefpirome"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4291087-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042910870", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4291087-0", "source": "GND"}], "variant_access_point": ["CAS 84957-29-9", "CAS 98753-19-6"], "authorized_access_point": "Cefpirom"} 1 +2024-09-11 09:10:30.970989 2024-09-11 09:10:30.970992 ba36bf17-563e-4bdc-847b-48327069b0db {"md5": "f059d72d85a145bd2e2f665f821085ce", "pid": "042892562", "note": [{"label": ["Ökonometrisches Modell für die niederländ. Finanzwirtschaft"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Makroökonomisches Modell"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4289256-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042892562", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4289256-9", "source": "GND"}], "variant_access_point": ["Dutch Financial System"], "authorized_access_point": "DUFIS"} 1 +2024-09-11 09:10:31.036101 2024-09-11 09:10:31.036104 1b562fe6-3cbb-43ea-ad4d-6418bef6af9e {"md5": "2256ce966746e9bd3c177273d724058a", "pid": "042870526", "note": [{"label": ["Nicht auf Zoologische Gärten beschränkt, auch in Museen, Schulen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Pädagogik"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4287052-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042870526", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4287052-5", "source": "GND"}], "authorized_access_point": "Zoopädagogik"} 1 +2024-09-11 09:10:31.095838 2024-09-11 09:10:31.095846 c9c93439-8661-4e01-a660-081e081281dd {"md5": "e898511faf6289d6616643534e2fb404", "pid": "042863627", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Schulübergang"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4286362-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042863627", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4286362-4", "source": "GND"}], "authorized_access_point": "Durchlässigkeit (Schule)"} 1 +2024-09-11 09:10:31.159222 2024-09-11 09:10:31.159226 f0821351-ff03-4635-8594-d77f63d91791 {"md5": "9353d7967667584cc748f9ff4f6c3319", "pid": "042848792", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Finanzmathematik"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4284879-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042848792", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4284879-9", "source": "GND"}], "authorized_access_point": "FIMA"} 1 +2024-09-11 09:10:31.218004 2024-09-11 09:10:31.218008 122e80fd-b425-487d-ae20-51e1425d9a75 {"md5": "909e6920a12600413bc2aa68a966a558", "pid": "042841259", "note": [{"label": ["Wikipedia - https://nl.wikipedia.org/w/index.php?title=Stellingwerfs&oldid=67416841"], "noteType": "dataSource"}, {"label": ["Nichtfriesische Mundart eines kleinen Gebietes im niederländischen Friesland"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mundart"}], "related": [{"authorized_access_point": "Niederländisch"}, {"authorized_access_point": "Niedersächsisch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4284125-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042841259", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4284125-2", "source": "GND"}], "variant_access_point": ["Stellingwerfs", "Stellingwarfs"], "authorized_access_point": "Mundart Niedersächsisch (Stellingwerven)"} 1 +2024-09-11 09:10:31.282336 2024-09-11 09:10:31.28234 96a09468-900f-4bb2-b831-39e8476178ac {"md5": "c429609695c7f7c48a23c462b06961cd", "pid": "042819458", "note": [{"label": ["INN"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Cephalosporine"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134245491", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12266467", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12266467v"}], "authorized_access_point": "Céfpodoxime"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336146117", "source": "GND"}, {"type": "bf:Nbn", "value": "D000097623", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000097623"}], "authorized_access_point": "Cefpodoxime"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4281945-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042819458", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4281945-3", "source": "GND"}], "variant_access_point": ["Orelox", "CAS 80210-62-4", "CAS 87239-81-4"], "authorized_access_point": "Cefpodoxim"} 1 +2024-09-11 09:10:31.933588 2024-09-11 09:10:31.933597 ec07de1c-a339-4510-80f5-d74631d352b2 {"md5": "6f59b6d6cbf9135b62861551319bbb41", "pid": "042645212", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134760205", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85134851", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85134851"}], "authorized_access_point": "Thickness measurement"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134760205", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12493536", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb124935363"}], "authorized_access_point": "Épaisseur - Mesure"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4264521-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042645212", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4264521-9", "source": "GND"}], "variant_access_point": ["Filmdicke"], "authorized_access_point": "Schichtdicke"} 1 +2024-09-11 09:10:31.374808 2024-09-11 09:10:31.374817 819c129c-40c7-485a-ba03-f12ed9ffe18c {"md5": "033cfd6760fc526d26fbabf568ce8cbb", "pid": "042815479", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134130015", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85085475", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85085475"}], "authorized_access_point": "Minangkabau language"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134130015", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12045391", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12045391f"}], "authorized_access_point": "Minangkabau (langue)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4281547-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042815479", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4281547-2", "source": "GND"}], "variant_access_point": ["Menangkabau-Sprache"], "authorized_access_point": "Minangkabau-Sprache"} 1 +2024-09-11 09:10:31.447812 2024-09-11 09:10:31.447816 d0f8b73b-7171-4100-9aa8-789158e60d7d {"md5": "8b988065a4d8f8e971754176655d10d9", "pid": "042777089", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Araliengewächse"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134235577", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85000324", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85000324"}], "authorized_access_point": "Acanthopanax senticosus"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134235577", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12258006", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12258006t"}], "authorized_access_point": "Eleutherococcus senticosus"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4277708-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042777089", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4277708-2", "source": "GND"}], "variant_access_point": ["Eleutherococcus senticosus", "Acanthopanax senticosus", "Eleukokk", "Taigawurzel", "Teufelsbusch", "Sibirischer Ginseng"], "authorized_access_point": "Stachelpanax"} 1 +2024-09-11 09:10:31.516372 2024-09-11 09:10:31.516376 46c66036-ad56-423f-a18e-0f2d7a9442e6 {"md5": "4ed9f107f4a19baabe96da0b7163c6b4", "pid": "042765315", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fertigung"}], "related": [{"authorized_access_point": "Fertigbauteil"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4276531-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042765315", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4276531-6", "source": "GND"}], "variant_access_point": ["Vorfabrikation"], "authorized_access_point": "Vorfertigung"} 1 +2024-09-11 09:10:31.591315 2024-09-11 09:10:31.59132 2b042479-5907-4a91-a7c5-4b73e12d3e93 {"md5": "cdabbdedd419820f50f6052c72049d13", "pid": "042731887", "note": [{"label": ["Benutzt, soweit im Ausland lebend"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ausländischer Student"}, {"authorized_access_point": "Lateinamerikaner"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134492170", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85074931", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85074931"}], "authorized_access_point": "Latin American students"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134492170", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17148865", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17148865v"}], "authorized_access_point": "Étudiants latino-américains"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4273188-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042731887", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4273188-4", "source": "GND"}], "authorized_access_point": "Lateinamerikanischer Student"} 1 +2024-09-11 09:10:31.663933 2024-09-11 09:10:31.663937 14bf1503-22ff-47c8-bf51-b4239d9b1cd9 {"md5": "174d9b0d7ee26c6aa5ac27f1169b2d97", "pid": "042731437", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schaltverhalten"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4273143-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042731437", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4273143-4", "source": "GND"}], "authorized_access_point": "Einschaltverhalten"} 1 +2024-09-11 09:10:31.718226 2024-09-11 09:10:31.718229 9b2fa172-d4e6-4eb0-a235-4310ba983157 {"md5": "65e55981eed4b97165303334675220e8", "pid": "042720133", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4272013-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042720133", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4272013-8", "source": "GND"}], "authorized_access_point": "Zellaufschluss"} 1 +2024-09-11 09:10:31.783906 2024-09-11 09:10:31.78391 e911b3e3-417c-4014-b81b-956b06dc9d61 {"md5": "a7a3e3f0541025413980fc4efa01c036", "pid": "04266702X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Übergangsmetallkomplexe"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4266702-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04266702X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4266702-1", "source": "GND"}], "authorized_access_point": "Rutheniumkomplexe"} 1 +2024-09-11 09:10:31.854147 2024-09-11 09:10:31.85415 2450ef5f-4f68-47c4-ae0f-062a0c7d27cb {"md5": "ad4ecfa39f8acd3ef3e679540ff077d4", "pid": "042653304", "note": [{"label": ["Anlageform am Geldmarkt ohne Wertpapiercharakter"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4265330-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042653304", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4265330-7", "source": "GND"}], "authorized_access_point": "Geldmarktbuchforderung"} 1 +2024-09-11 09:10:32.008838 2024-09-11 09:10:32.008842 4d6f9ce7-5caf-45f1-837b-44a6653cda40 {"md5": "f2bc2b65f987c1e597f919f94a3ca9a8", "pid": "042627222", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134188870", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85043175", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85043175"}], "authorized_access_point": "Enggano language"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134188870", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12146429", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12146429q"}], "authorized_access_point": "Enggano (langue)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4262722-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042627222", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4262722-9", "source": "GND"}], "variant_access_point": ["Enggano-Sprache", "Enggano (Sprache)"], "authorized_access_point": "Engganesisch"} 1 +2024-09-11 09:10:32.069918 2024-09-11 09:10:32.069922 4d07b7f7-6f1d-426c-8d3a-b7d8de4bb053 {"md5": "73bb656890257ba636eb3ade024c89c0", "pid": "042586208", "note": [{"label": ["Westmalaiopolynes. Sprache auf (Zentral-)Sulawesi, Kaili-Pomona"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4258620-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042586208", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4258620-3", "source": "GND"}], "variant_access_point": ["Kaili", "Palu"], "authorized_access_point": "Ledo"} 1 +2024-09-11 09:10:32.136074 2024-09-11 09:10:32.136081 a3a4a4f9-b6bd-49f3-90d9-f60a99d7e7c8 {"md5": "5834389a2e4da9ca0e8fee638f58d95f", "pid": "042578205", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Widerstand"}, {"authorized_access_point": "Widerstandskämpferin"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134491964", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13537085", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13537085z"}], "authorized_access_point": "Résistants"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4257820-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042578205", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4257820-6", "source": "GND"}], "authorized_access_point": "Widerstandskämpfer"} 1 +2024-09-11 09:10:32.236248 2024-09-11 09:10:32.236255 5d4862f2-faf6-4246-9681-065f1a40408e {"md5": "7a7d19d4c923875971652a45a794d606", "pid": "042573254", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4257325-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042573254", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4257325-7", "source": "GND"}], "variant_access_point": ["Teilchen"], "authorized_access_point": "Beweglichkeit (Physik)"} 1 +2024-09-11 09:10:32.315325 2024-09-11 09:10:32.315329 2d49bc95-6389-4589-853a-431bc095f0e7 {"md5": "581e323287e4a1a253e7c5d6c7cd12b1", "pid": "042536367", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Naturheilverfahren"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4253636-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042536367", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4253636-4", "source": "GND"}], "variant_access_point": ["Autoregulative Therapie"], "authorized_access_point": "Regulationstherapie"} 1 +2024-09-11 09:10:32.386269 2024-09-11 09:10:32.386273 1183fdac-036d-42df-94ee-1d21c53d7b8e {"md5": "bae08ff6e1b7a85dafbff6a09c786c0a", "pid": "042496675", "note": [{"label": ["Benutzt für finanzwirtschaftl. Statistik, nicht für Geld u. Kredit"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wirtschaftsstatistik"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966744160", "source": "GND"}, {"type": "bf:Nbn", "value": "11534-1", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/11534-1"}], "authorized_access_point": "Finanzstatistik"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4249667-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042496675", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4249667-6", "source": "GND"}], "authorized_access_point": "Finanzstatistik"} 1 +2024-09-11 09:10:32.455929 2024-09-11 09:10:32.455933 a8f5235c-5062-41aa-82df-5cdc77d03c2a {"md5": "e76b68efb59f5999074bafa39eb640a6", "pid": "042486386", "note": [{"label": ["Computergestütztes Modellsystem zur Berechnung von Agrarfaktor- und -produktpreisen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Preisinformationssystem"}], "related": [{"authorized_access_point": "Agrarpreis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4248638-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042486386", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4248638-5", "source": "GND"}], "authorized_access_point": "PRESET"} 1 +2024-09-11 09:10:32.538093 2024-09-11 09:10:32.538102 73e43a88-1ff3-4da9-9737-063488367e78 {"md5": "ad30b0b0c86c934e93e5d24f77b7be33", "pid": "042447690", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4244769-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042447690", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4244769-0", "source": "GND"}], "variant_access_point": ["Orak Lawoiʾ-Sprache"], "authorized_access_point": "Urak Lawoiʾ-Sprache"} 1 +2024-09-11 09:10:32.610026 2024-09-11 09:10:32.610029 34983064-8a9c-41d1-8b0f-2448bfa2dbbe {"md5": "0a1a673b3f6eed9da665ea00ed836f71", "pid": "042438799", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)971407800", "source": "GND"}, {"type": "bf:Nbn", "value": "10036866", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10036866"}], "authorized_access_point": "Notunterkunft"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4243879-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042438799", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4243879-2", "source": "GND"}], "authorized_access_point": "Lager (Unterkunft)"} 1 +2024-09-11 09:10:32.740661 2024-09-11 09:10:32.740666 1cb4a13a-ddc4-4253-a109-be5e660ba47e {"md5": "e8b545f7c5c4e1f3ca7b6dba5580035d", "pid": "042422825", "note": [{"label": ["Benutzt sowohl im engeren Sinne (Materialbestandsplanung) als auch im weiteren Sinne"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334875782", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85067678", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85067678"}], "authorized_access_point": "Inventory control"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334875782", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11933321", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119333210"}], "authorized_access_point": "Gestion des stocks"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4242282-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042422825", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4242282-6", "source": "GND"}], "variant_access_point": ["Materialbestand", "Materialbestandsplanung"], "authorized_access_point": "Bestandsplanung"} 1 +2024-09-11 09:10:32.805271 2024-09-11 09:10:32.805274 d24bbffa-5705-444d-a0f5-b037249bb464 {"md5": "0df1a3e08c4a69b73ec3dd45fa795afa", "pid": "042380480", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4238048-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042380480", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4238048-0", "source": "GND"}], "variant_access_point": ["Mina-Sprache (Westindonesisch)", "Muna (Sprache)", "Mina (Sprache, Westindonesisch)"], "authorized_access_point": "Muna-Sprache"} 1 +2024-09-11 09:10:32.863598 2024-09-11 09:10:32.863602 74222ff9-2fa4-40ab-910e-3da12e43a9ef {"md5": "bd286ebba414d20bf8e652e087a269e6", "pid": "042374480", "note": [{"label": ["Krankheitssymptom ohne organisches Korrelat"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Funktionsstörung"}], "related": [{"authorized_access_point": "Organische Störung"}, {"authorized_access_point": "Psychosomatische Störung"}, {"authorized_access_point": "Neurasthenie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133690696", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11980105", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11980105h"}], "authorized_access_point": "Troubles fonctionnels (médecine)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4237448-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042374480", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4237448-0", "source": "GND"}], "variant_access_point": ["Somatisierungsstörung", "Somatoforme Störung", "Somatoforme autonome Funktionsstörung", "Parafunktion", "Psychogene Dysfunktion"], "authorized_access_point": "Funktionelle Störung"} 1 +2024-09-11 09:10:32.923841 2024-09-11 09:10:32.923844 ee9d40e2-21a7-42b8-9303-b61d2ffad305 {"md5": "794b3edf37176ed79da4c4bd610913ab", "pid": "042325900", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Epithelzelle"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4232590-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042325900", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4232590-0", "source": "GND"}], "variant_access_point": ["Beta-Zelle (Hypophysenvorderlappen)", "Adenohypophyse"], "authorized_access_point": "Basophile Zelle"} 1 +2024-09-11 09:10:32.975687 2024-09-11 09:10:32.975691 2ddf70c3-e64f-4083-83ea-331eaa2d828d {"md5": "4d77d9f233c0f2729072ea5d471b749f", "pid": "042325897", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Granulozyt"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133811159", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85012133", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85012133"}], "authorized_access_point": "Basophils"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133811159", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12486075", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb124860754"}], "authorized_access_point": "Basophiles"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336596848", "source": "GND"}, {"type": "bf:Nbn", "value": "D001491", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D001491"}], "authorized_access_point": "Basophils"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4232589-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042325897", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4232589-4", "source": "GND"}], "variant_access_point": ["Basophiler", "Granulocytus basophilicus"], "authorized_access_point": "Basophiler Granulozyt"} 1 +2024-09-11 09:10:33.02975 2024-09-11 09:10:33.029755 632b67e3-1bc7-4b73-967f-3ba2ab000b9e {"md5": "20b8a33bbc560f38324bebd75ecdf22b", "pid": "042313414", "note": [{"label": ["Führung durch Museen, zur Besichtigung von Sehenswürdigkeiten und sonstigen Einrichtungen aller Art"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Fremdenführer"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134267916", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85122383", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85122383"}], "authorized_access_point": "Sightseeing business"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134267916", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12308374", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb123083748"}], "authorized_access_point": "Visites touristiques"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254411127", "source": "GND"}, {"type": "bf:Nbn", "value": "XX534646", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX534646"}], "authorized_access_point": "Empresas turísticas"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4231341-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042313414", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4231341-7", "source": "GND"}], "variant_access_point": ["Gästeführung", "Besucher", "Führung (Besucher)", "Fremdenführung", "Museumsführung"], "authorized_access_point": "Besucherführung"} 1 +2024-09-11 09:10:33.134336 2024-09-11 09:10:33.13434 a362eab4-5598-4dde-8881-bbd139d3ec14 {"md5": "eda7342dab0b3242f2b7e7c339b30595", "pid": "042266289", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Cytometrie"}, {"authorized_access_point": "Durchflussmessung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134175647", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85049287", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85049287"}], "authorized_access_point": "Flow cytometry"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134175647", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12121528", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb121215281"}], "authorized_access_point": "Cytométrie de flux"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254321098", "source": "GND"}, {"type": "bf:Nbn", "value": "1795", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/1795"}], "authorized_access_point": "Citometria a flusso"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254421912", "source": "GND"}, {"type": "bf:Nbn", "value": "XX547339", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX547339"}], "authorized_access_point": "Citometría de flujo"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241598517", "source": "GND"}, {"type": "bf:Nbn", "value": "D005434", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D005434"}], "authorized_access_point": "Flow Cytometry"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4226628-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042266289", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4226628-2", "source": "GND"}], "variant_access_point": ["Flow cytometry", "Durchflusszytometrie", "Flowzytometrie"], "authorized_access_point": "Durchflusscytometrie"} 1 +2024-09-11 09:10:33.191961 2024-09-11 09:10:33.191965 772b2c57-36c2-409b-85a1-da8268ed90bd {"md5": "b9f08eb9680cf208e36eb795d0c2d054", "pid": "042241839", "note": [{"label": ["Der deutsche Wortschatz - https://www.dwds.de/wb/Linguist"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Philologe"}], "related": [{"authorized_access_point": "Linguistin"}, {"authorized_access_point": "Linguistik"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133932878", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85077231", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85077231"}], "authorized_access_point": "Linguists"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133932878", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11933934", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119339340"}], "authorized_access_point": "Linguistes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254371966", "source": "GND"}, {"type": "bf:Nbn", "value": "38524", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/38524"}], "authorized_access_point": "Linguisti"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254456627", "source": "GND"}, {"type": "bf:Nbn", "value": "XX527503", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX527503"}], "authorized_access_point": "Lingüistas"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4224183-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042241839", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4224183-2", "source": "GND"}], "variant_access_point": ["Sprachwissenschaftler", "Sprachforscher"], "authorized_access_point": "Linguist"} 1 +2024-09-11 09:10:33.250464 2024-09-11 09:10:33.250469 ac482b65-5a19-4c99-97ba-94d210e601ba {"md5": "6ce947184d15a82c223f221a177b24ea", "pid": "042230284", "note": [{"label": ["Nicht-indoarisches Volk in Südindien"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134208367", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85039403", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85039403"}], "authorized_access_point": "Dravidians"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134208367", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12201689", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb122016898"}], "authorized_access_point": "Dravidiens"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4223028-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042230284", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4223028-7", "source": "GND"}], "variant_access_point": ["Dravida", "Drawiden"], "authorized_access_point": "Drawida"} 1 +2024-09-11 09:10:33.312306 2024-09-11 09:10:33.312312 46c9163d-8cea-4155-a1f9-ebd96fc27014 {"md5": "81703fe60ff33d33d0a55bdd03311703", "pid": "042213010", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Relief (Geografie)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4221301-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042213010", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4221301-0", "source": "GND"}], "variant_access_point": ["Erosionsform"], "authorized_access_point": "Abtragungsform"} 1 +2024-09-11 09:10:33.375685 2024-09-11 09:10:33.375691 8f83c75f-00b8-486a-90a5-bd10646bc5d8 {"md5": "2376e203642b73bf1fc2009170fb052d", "pid": "042183154", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Handwerk"}], "related": [{"authorized_access_point": "Klempnerhandwerk"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134558260", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85103551", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85103551"}], "authorized_access_point": "Plumbing"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134558260", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11933155", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11933155r"}], "authorized_access_point": "Plomberie"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966697308", "source": "GND"}, {"type": "bf:Nbn", "value": "13181-5", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/13181-5"}], "authorized_access_point": "Bauinstallation"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4218315-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042183154", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4218315-7", "source": "GND"}], "variant_access_point": ["Installationshandwerk", "SHK-Handwerk", "Sanitär-, Heizungs-, Klimatechnikhandwerk", "Sanitärhandwerk"], "authorized_access_point": "Installateurhandwerk"} 1 +2024-09-11 09:10:33.44773 2024-09-11 09:10:33.447735 a626d4ec-e75b-421d-978c-9791f317825e {"md5": "696e060199b306932b6189bf71438c6c", "pid": "04216818X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Völkerkundliche Ausstellung"}], "related": [{"authorized_access_point": "Kolonialausstellung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134559305", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2006001275", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2006001275"}], "authorized_access_point": "Human zoos"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134559305", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF14406121", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb144061213"}], "authorized_access_point": "Exhibitions ethnographiques"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4216818-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04216818X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4216818-1", "source": "GND"}], "variant_access_point": ["Völkerschau"], "authorized_access_point": "Völkerkundliche Schaustellung"} 1 +2024-09-11 09:10:33.50879 2024-09-11 09:10:33.508795 ed98a86c-3c69-4b57-9ccc-0f527125ad73 {"md5": "5bd2687b5e9d0bbc7385943bcbfd3257", "pid": "042161258", "note": [{"label": ["Internet - http://www.juedische-allgemeine.de/article/view/id/14708", "Wikipedia - https://de.wikipedia.org/wiki/Haftara"], "noteType": "dataSource"}, {"label": ["Im jüdischen Ritus der Synagoge der an Sabbaten, Feier- und Fasttagen an die Vorlesung aus dem Pentateuch sich anschließende Abschnitt aus den Propheten"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Judentum"}], "related": [{"authorized_access_point": "Liturgie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134589379", "source": "GND"}, {"type": "bf:Nbn", "value": "n81026486", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/names/n81026486"}], "authorized_access_point": "Haftarot"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134589379", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13537030", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13537030p"}], "authorized_access_point": "Hapṭarah"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4216125-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042161258", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4216125-3", "source": "GND"}], "variant_access_point": ["Haftarah", "Hafṭarah", "Haphtara", "Haftara banawi", "Hafṭarah ba-navi", "Hafṭarot"], "authorized_access_point": "Haftara"} 1 +2024-09-11 09:10:33.565975 2024-09-11 09:10:33.565979 a3915395-5e17-4442-a8ce-b2d88e474649 {"md5": "63313ec47049e6b4c015f105c12277b6", "pid": "042147670", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programmiersystem"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4214767-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042147670", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4214767-0", "source": "GND"}], "authorized_access_point": "BEPSYS"} 1 +2024-09-11 09:10:33.618993 2024-09-11 09:10:33.618997 bec67576-16b6-467e-8f54-08d0123ca91a {"md5": "54adf26e95d1a513cf1da65633a7ab6e", "pid": "042142237", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kartenauswertung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4214223-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042142237", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4214223-4", "source": "GND"}], "variant_access_point": ["Kartenmessung"], "authorized_access_point": "Kartometrie"} 1 +2024-09-11 09:10:33.669837 2024-09-11 09:10:33.66984 55398f59-9797-406c-b094-ede6be3df286 {"md5": "41eb72552fcece6e14436e19d3c2c941", "pid": "042137519", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Insolationsverwitterung"}], "related": [{"authorized_access_point": "Grus"}, {"authorized_access_point": "Vergrusung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4213751-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042137519", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4213751-2", "source": "GND"}], "authorized_access_point": "Abgrusung"} 1 +2024-09-11 09:10:33.720497 2024-09-11 09:10:33.7205 25f0b082-fe3f-4f7c-992a-88f0a8e3df9a {"md5": "3585db47d0e4832351128a604f81f226", "pid": "042124093", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4212409-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042124093", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4212409-8", "source": "GND"}], "variant_access_point": ["Kadazan (Sprache)"], "authorized_access_point": "Kadajan"} 1 +2024-09-11 09:10:33.771302 2024-09-11 09:10:33.771305 c16a0ced-4cf0-4e74-aa67-35df262479c3 {"md5": "b70a826e34bd4f5dec18146e51ced993", "pid": "042123909", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kennlinie"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4212390-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042123909", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4212390-2", "source": "GND"}], "variant_access_point": ["Isentrope"], "authorized_access_point": "Adiabate"} 1 +2024-09-11 09:10:33.819471 2024-09-11 09:10:33.819474 f0a6e492-44c1-4ccc-bb5f-38490501ff29 {"md5": "fb1aac0f10f987a853f5ba36c4cd9de9", "pid": "04211277X", "note": [{"label": ["Sprache in Indonesien"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133936830", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85017675", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85017675"}], "authorized_access_point": "Bugis language"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133936830", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11935314", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119353146"}], "authorized_access_point": "Bugis (langue)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4211277-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04211277X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4211277-1", "source": "GND"}], "variant_access_point": ["Buginesisch"], "authorized_access_point": "Bugi-Sprache"} 1 +2024-09-11 09:10:33.873287 2024-09-11 09:10:33.873289 92f083dc-34c2-499a-903e-02ee436d884b {"md5": "7105ee2e50e6ac810fbef1ecc7587b3e", "pid": "042104378", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Fertigungskontrolle"}, {"authorized_access_point": "Simulation"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4210437-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042104378", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4210437-3", "source": "GND"}], "authorized_access_point": "FERSIM"} 1 +2024-09-11 09:10:41.381592 2024-09-11 09:10:41.381598 e7fc52d5-40a6-48e2-8a31-c593cd8712f1 {"md5": "2241cbead61ef02660603d73dd3c7b23", "pid": "04142574X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Plagioklas"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4142574-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04142574X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4142574-1", "source": "GND"}], "variant_access_point": ["Kalkfeldspat", "Barsowit", "Beffanit", "Biotin (Anorthit)", "Calciklas", "Cyclopit", "Lindsayit", "Linseit", "Sundvikit", "Thjorsauit"], "authorized_access_point": "Anorthit"} 1 +2024-09-11 09:10:33.93501 2024-09-11 09:10:33.935014 b5bca15f-9d33-4fe1-87ab-2e8a60e6df9d {"md5": "5ac35003859de5e233c10070df27f536", "pid": "042100917", "note": [{"label": ["Programm zur Analyse des Jahresabschlusses einer Kapitalgesellschaft"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Bilanzanalyse"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4210091-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042100917", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4210091-4", "source": "GND"}], "variant_access_point": ["Jahresabschlussanalyse als Planungs- und Entscheidungsrechnung (Programm)", "JASPER, Vollversion 2.12"], "authorized_access_point": "JASPER (Programm)"} 1 +2024-09-11 09:10:33.985542 2024-09-11 09:10:33.985546 889b1126-4984-4a75-a9ab-3004c7eed9f9 {"md5": "8944fd27d379f25cd1b2e5b679785cca", "pid": "042100445", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Mastopathie&oldid=243852289"], "noteType": "dataSource"}, {"label": ["Benutze Kombination \\"Mamma AND Krankheit\\" für weitere Treffer"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Brustkrankheit"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1335338195", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85016686", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85016686"}], "authorized_access_point": "Breast - Fibrocystic disease"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)124161198X", "source": "GND"}, {"type": "bf:Nbn", "value": "D005348", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D005348"}], "authorized_access_point": "Fibrocystic Breast Disease"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4210044-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042100445", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4210044-6", "source": "GND"}], "variant_access_point": ["Cystische Mastopathie", "Fibrocystische Mastopathie", "Fibrös-zystische Mastopathie", "Fibrozystische Brusterkrankung", "Fibrozystische Mastopathie", "Mammadysplasie", "Mastopathia chronica cystica", "Mastopathia fibrosa cystica", "Zystenmamma", "Zystische Brusterkrankung"], "authorized_access_point": "Mastopathie"} 1 +2024-09-11 09:10:34.039073 2024-09-11 09:10:34.039076 c3f9e2ba-f445-4dc4-8420-717fc2960c46 {"md5": "dc5997cd43ec545e9608fb6a81ec6231", "pid": "042081033", "note": [{"label": ["Seit dem Beweis durch Louis de Branges de Bourcia 1985 ist die Bieberbach-Vermutung auch als Satz von de Branges bekannt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4208103-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042081033", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4208103-8", "source": "GND"}], "variant_access_point": ["Bieberbachsche Vermutung", "Satz von de Branges"], "authorized_access_point": "Bieberbach-Vermutung"} 1 +2024-09-11 09:10:34.093703 2024-09-11 09:10:34.093707 a8e5ac59-af49-4980-97ea-b20104d94caf {"md5": "85136fce5acf273b2f0f5ce3b8ec3907", "pid": "042074150", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133693458", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85021644", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85021644"}], "authorized_access_point": "Cell death"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133693458", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11981727", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11981727q"}], "authorized_access_point": "Mort cellulaire"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254319336", "source": "GND"}, {"type": "bf:Nbn", "value": "1251", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/1251"}], "authorized_access_point": "Morte cellulare"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254505474", "source": "GND"}, {"type": "bf:Nbn", "value": "XX550134", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX550134"}], "authorized_access_point": "Muerte celular"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336587970", "source": "GND"}, {"type": "bf:Nbn", "value": "D016923", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D016923"}], "authorized_access_point": "Cell Death"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4207415-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042074150", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4207415-0", "source": "GND"}], "authorized_access_point": "Zelltod"} 1 +2024-09-11 09:10:34.147812 2024-09-11 09:10:34.147817 e9c06406-d062-42a1-9413-cb9643ba7707 {"md5": "4b5b818638dd320188d4ae1ab775e0b4", "pid": "042044529", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Stadt"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4204452-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042044529", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4204452-2", "source": "GND"}], "authorized_access_point": "Ackerbürgerstadt"} 1 +2024-09-11 09:10:34.205964 2024-09-11 09:10:34.205968 e04aeb35-e459-4b14-a1c4-48a38d4c6fc3 {"md5": "8b2c18d19417077f8222032e92be43cc", "pid": "042033276", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Kapitalanlage"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4203327-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042033276", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4203327-5", "source": "GND"}], "authorized_access_point": "INVESTOR (Programm)"} 1 +2024-09-11 09:10:34.268768 2024-09-11 09:10:34.268772 e391a5ac-02c6-41b5-9990-3159c3eee391 {"md5": "e9895eebb505fef5c5ba8eaed4ae3db9", "pid": "042022622", "note": [{"label": ["Literarische Gattung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Literatur"}], "related": [{"authorized_access_point": "Utopie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134096054", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85040350", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85040350"}], "authorized_access_point": "Dystopias"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134096054", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17718158", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb177181582"}], "authorized_access_point": "Dystopies"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254348263", "source": "GND"}, {"type": "bf:Nbn", "value": "20474", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/20474"}], "authorized_access_point": "Distopia"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254405437", "source": "GND"}, {"type": "bf:Nbn", "value": "XX527178", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX527178"}], "authorized_access_point": "Utopías"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4202262-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042022622", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4202262-9", "source": "GND"}], "variant_access_point": ["Negative Utopie", "Dystopie (Literatur)"], "authorized_access_point": "Anti-Utopie"} 1 +2024-09-11 09:10:34.325689 2024-09-11 09:10:34.325693 6ffefb20-ec06-4e27-9a0a-9a5b003f9c28 {"md5": "2d980cf14f52a80a2ddd2d10b7788183", "pid": "042020646", "note": [{"label": ["Modell zur Erfassung der strategischen Grössen einer Strategie und Bewertung der finanziellen Auswirkungen"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4202064-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042020646", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4202064-5", "source": "GND"}], "variant_access_point": ["Strategische Kosten- und Ergebnisplanung"], "authorized_access_point": "SKEP"} 1 +2024-09-11 09:10:34.383075 2024-09-11 09:10:34.383079 668cbcd5-0595-46ef-861b-315c2380388f {"md5": "6588f4d5d1e831c727e12fdacea52f36", "pid": "041969596", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ökonomische Theorie der Politik"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)967055202", "source": "GND"}, {"type": "bf:Nbn", "value": "11167-2", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/11167-2"}], "authorized_access_point": "Ökonomische Theorie der Demokratie"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4196959-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041969596", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4196959-5", "source": "GND"}], "authorized_access_point": "Ökonomische Theorie der Demokratie"} 1 +2024-09-11 09:10:34.443076 2024-09-11 09:10:34.44308 0c7548a3-a187-493a-8888-04827bcb19ed {"md5": "1427eb0232e72d0ef86348075c5e0594", "pid": "041966716", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134075464", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85119931", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85119931"}], "authorized_access_point": "Seminarians"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134075464", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11982450", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11982450n"}], "authorized_access_point": "Séminaristes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)129991084X", "source": "GND"}, {"type": "bf:Nbn", "value": "XX532029", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX532029"}], "authorized_access_point": "Seminaristas"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4196671-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041966716", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4196671-5", "source": "GND"}], "variant_access_point": ["Alumnus (Theologie)", "Seminarist", "Priesterseminarist", "Priesteramtskandidat"], "authorized_access_point": "Alumne"} 1 +2024-09-11 09:10:34.511524 2024-09-11 09:10:34.511528 4e8c61f2-0658-4346-a4c7-4213ee0237a0 {"md5": "8f7c41a028af2d13b4787f34f4aa5280", "pid": "041962923", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tanz"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133867901", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85003648", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85003648"}], "authorized_access_point": "Allemandes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134387296", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85003647", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85003647"}], "authorized_access_point": "Allemande"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133867901", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13557889", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13557889z"}], "authorized_access_point": "Allemandes (musique)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134387296", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13169979", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13169979x"}], "authorized_access_point": "Allemande (danse)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254394192", "source": "GND"}, {"type": "bf:Nbn", "value": "65506", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/65506"}], "authorized_access_point": "Allemanda"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4196292-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041962923", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4196292-8", "source": "GND"}], "variant_access_point": ["Allemanda"], "authorized_access_point": "Allemande"} 1 +2024-09-11 09:10:34.566252 2024-09-11 09:10:34.566254 0a65465d-e9bc-4d77-ad95-e74f73e0cbaa {"md5": "41695d9958eec5289213c1cb289423fb", "pid": "041961080", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4196108-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041961080", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4196108-0", "source": "GND"}], "variant_access_point": ["Philosophiegeschichtsschreibung"], "authorized_access_point": "Philosophiegeschichte (Fach)"} 1 +2024-09-11 09:10:34.6158 2024-09-11 09:10:34.615806 e3778b98-ab97-4567-b6ab-7a84ffede056 {"md5": "2d6e46bdbbd3ea9c3bb6d79890d5a72a", "pid": "041944240", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Konferenz"}, {"authorized_access_point": "Internationale Veranstaltung"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966784510", "source": "GND"}, {"type": "bf:Nbn", "value": "19711-0", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/19711-0"}], "authorized_access_point": "Internationale Konferenz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4194424-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041944240", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4194424-0", "source": "GND"}], "authorized_access_point": "Internationale Konferenz"} 1 +2024-09-11 09:10:34.666729 2024-09-11 09:10:34.666733 3e7e01ef-f22b-4ffe-9418-788243f8f80f {"md5": "41c91c08a5f0ded9dff7d8e75e86ebd0", "pid": "041935659", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Corporate Design"}, {"authorized_access_point": "Unternehmenskultur"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134080468", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85032900", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85032900"}], "authorized_access_point": "Corporate image"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134080468", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11983326", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11983326r"}], "authorized_access_point": "Entreprises - Image"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970542151", "source": "GND"}, {"type": "bf:Nbn", "value": "10060812", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10060812"}], "authorized_access_point": "Corporate Identity"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4193565-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041935659", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4193565-2", "source": "GND"}], "variant_access_point": ["Unternehmensidentität", "CI", "Firmenimage (Corporate Identity)", "Unternehmenspersönlichkeit"], "authorized_access_point": "Corporate Identity"} 1 +2024-09-11 09:10:35.056371 2024-09-11 09:10:35.056374 bfc79b34-755c-403a-afd4-6f794382e7ca {"md5": "445140c110b13eb022239a59690556a3", "pid": "041906683", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133655165", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85021646", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85021646"}], "authorized_access_point": "Cell division"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133655165", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11958046", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119580464"}], "authorized_access_point": "Cellules - Division"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133883516", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13622694", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13622694b"}], "authorized_access_point": "Cellules végétales - Division"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1299906753", "source": "GND"}, {"type": "bf:Nbn", "value": "XX550146", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX550146"}], "authorized_access_point": "División celular"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256273333", "source": "GND"}, {"type": "bf:Nbn", "value": "1413", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_1413"}], "authorized_access_point": "cell division"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336586273", "source": "GND"}, {"type": "bf:Nbn", "value": "D002455", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D002455"}], "authorized_access_point": "Cell Division"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4190668-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041906683", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4190668-8", "source": "GND"}], "variant_access_point": ["Zytokinese", "Cytokinese"], "authorized_access_point": "Zellteilung"} 1 +2024-09-11 09:10:34.716188 2024-09-11 09:10:34.716192 45972629-65cb-4db1-92a8-407308ea40fd {"md5": "a58eb0db69773f9a6ec4efc3fdb8ec7e", "pid": "04193458X", "note": [{"label": ["Neben der Bedeutung \\"Distanzfunktion\\"/\\"Abstandsfunktion\\" wird auch der metrische Tensor aus der Differentialgeometrie als Metrik bezeichnet."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Linienelement"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134610475", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85084442", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85084442"}], "authorized_access_point": "Metric system"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134610475", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11941225", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11941225t"}], "authorized_access_point": "Système métrique"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4193458-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04193458X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4193458-1", "source": "GND"}], "variant_access_point": ["Distanzfunktion", "Abstandsfunktion"], "authorized_access_point": "Metrik (Mathematik)"} 1 +2024-09-11 09:10:34.765366 2024-09-11 09:10:34.76537 71967e19-6fc9-44ef-9eff-e971c593d2ec {"md5": "521d2a0f6e98e3e23b5ec02fb5345561", "pid": "041920287", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Niveaufläche"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4192028-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041920287", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4192028-4", "source": "GND"}], "authorized_access_point": "Achthundertfünfzig-Millibar-Fläche"} 1 +2024-09-11 09:10:34.814854 2024-09-11 09:10:34.814859 650ee23c-ab87-43b7-8e3c-9eb57cdf561b {"md5": "326dec08b80472ef36e5d1dac7861705", "pid": "041920279", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Niveaufläche"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4192027-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041920279", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4192027-2", "source": "GND"}], "authorized_access_point": "Fünfhundert-Millibar-Fläche"} 1 +2024-09-11 09:10:34.861017 2024-09-11 09:10:34.86102 ac4e7d39-6b8d-49ee-87d4-f0aca43e5446 {"md5": "be080d8eb4d8066ec90f8e4d3c357a34", "pid": "041917413", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Fachzeitschrift"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4191741-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041917413", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4191741-8", "source": "GND"}], "variant_access_point": ["Ethnologische Zeitschrift"], "authorized_access_point": "Völkerkundliche Zeitschrift"} 1 +2024-09-11 09:10:34.906278 2024-09-11 09:10:34.906282 1c4b2644-5420-4eb3-ae81-c46167e4b80e {"md5": "d4c65df471a034d6927c5eef5911273f", "pid": "041913574", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Volksglaube"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4191357-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041913574", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4191357-7", "source": "GND"}], "variant_access_point": ["Rauhnacht", "Rauchnächte", "Raunacht", "Raunächte", "Unternächte", "Zwölfnächte", "Zwölf heilige Nächte", "Zwölften"], "authorized_access_point": "Rauhnächte"} 1 +2024-09-11 09:10:34.959521 2024-09-11 09:10:34.959527 311a7861-ac19-473c-879d-bd5794b7af52 {"md5": "b379be6393f8b4a8b2186641775d6770", "pid": "041912888", "note": [{"label": ["Benutzt für überwiegend eigengenutzte Wohnungen; gemietete Wohnungen s. unter Ferienwohnung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Freizeitwohnen"}], "related": [{"authorized_access_point": "Ferienwohnung"}, {"authorized_access_point": "Wochenendhaus"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133479376X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85119417", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85119417"}], "authorized_access_point": "Second homes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133479376X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11938910", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119389106"}], "authorized_access_point": "Résidences secondaires"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970607334", "source": "GND"}, {"type": "bf:Nbn", "value": "10062702", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10062702"}], "authorized_access_point": "Zweitwohnung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4191288-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041912888", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4191288-3", "source": "GND"}], "variant_access_point": ["Freizeitwohnung", "Zweitwohnsitz"], "authorized_access_point": "Zweitwohnung"} 1 +2024-09-11 09:10:35.009151 2024-09-11 09:10:35.009155 ee0fcc73-f228-44fc-9c59-33770861e377 {"md5": "693f05d94148c1635debdfd62516ab31", "pid": "041909836", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256273848", "source": "GND"}, {"type": "bf:Nbn", "value": "14813", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_14813"}], "authorized_access_point": "teats"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4190983-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041909836", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4190983-5", "source": "GND"}], "variant_access_point": ["Mamille", "Papilla mammae", "Milchdrüsenpapille"], "authorized_access_point": "Zitze"} 1 +2024-09-11 09:10:36.960115 2024-09-11 09:10:36.960119 401788d1-f65d-4287-8289-5351f9d48f45 {"md5": "54d839843783d00f2cbb40ebb67bc103", "pid": "041699122", "note": [{"label": ["In der Tiermedizin verwende Gesäugekrankheit bzw.Euterkrankheit"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Brustkrankheit"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4169912-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041699122", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4169912-9", "source": "GND"}], "variant_access_point": ["Brustdrüsenerkrankung"], "authorized_access_point": "Milchdrüsenkrankheit"} 1 +2024-09-11 09:10:35.104849 2024-09-11 09:10:35.104854 40f155b8-49c6-4454-a508-612227e615c7 {"md5": "d9ba87f2343f588bfa21fd46fe9a1ac7", "pid": "041901398", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Landhaus"}], "related": [{"authorized_access_point": "Zweitwohnung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133946550", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85119417", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85119417"}], "authorized_access_point": "Second homes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133946550", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11938910", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119389106"}], "authorized_access_point": "Résidences secondaires"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334794960", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16764757", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb167647579"}], "authorized_access_point": "Datchas"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4190139-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041901398", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4190139-3", "source": "GND"}], "variant_access_point": ["Datscha (Wochenendhaus)", "Datsche (Wochenendhaus)"], "authorized_access_point": "Wochenendhaus"} 1 +2024-09-11 09:10:35.152352 2024-09-11 09:10:35.152355 23bc6129-bd73-456b-bd5c-df3f0501ed9f {"md5": "5c12ea1a8e5f902bcbc1faed5504fc71", "pid": "041890353", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schrämlader"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4189035-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041890353", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4189035-8", "source": "GND"}], "authorized_access_point": "Walzenschrämlader"} 1 +2024-09-11 09:10:35.200743 2024-09-11 09:10:35.200745 3d4c3a02-bdd1-45b4-8771-e402f946db73 {"md5": "e8a3b1ae9f6e1e1939d279fd2dff69cc", "pid": "04188566X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wirtschaftswissenschaftler"}], "related": [{"authorized_access_point": "Volkswirtin"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4188566-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04188566X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4188566-1", "source": "GND"}], "variant_access_point": ["Diplomvolkswirt", "Nationalökonom", "Volkswirtschafter", "Volkswirtschaftler"], "authorized_access_point": "Volkswirt"} 1 +2024-09-11 09:10:35.284801 2024-09-11 09:10:35.284803 a1a04cf2-5bc3-453f-85f9-af339c8ec172 {"md5": "34ca7e27ecffba1168a63e94d0006aef", "pid": "041856333", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4185633-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041856333", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4185633-8", "source": "GND"}], "variant_access_point": ["Toluol"], "authorized_access_point": "Toluolderivate"} 1 +2024-09-11 09:10:35.351007 2024-09-11 09:10:35.351011 6f3a0fa1-e76b-40d8-90be-8599eefccec6 {"md5": "801ca160a72277611c12fd55e420fd23", "pid": "041856325", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Benzolderivate"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134295766", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85135907", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85135907"}], "authorized_access_point": "Toluene"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134295766", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12365423", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb123654235"}], "authorized_access_point": "Toluène"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254354751", "source": "GND"}, {"type": "bf:Nbn", "value": "24400", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/24400"}], "authorized_access_point": "Toluene"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254495630", "source": "GND"}, {"type": "bf:Nbn", "value": "XX545422", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX545422"}], "authorized_access_point": "Tolueno"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256264377", "source": "GND"}, {"type": "bf:Nbn", "value": "7803", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_7803"}], "authorized_access_point": "toluene"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4185632-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041856325", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4185632-6", "source": "GND"}], "variant_access_point": ["Methylbenzol", "Toluen"], "authorized_access_point": "Toluol"} 1 +2024-09-11 09:10:35.42593 2024-09-11 09:10:35.425935 2f37b304-87a7-4a8d-b1c3-352c7a852a56 {"md5": "6f446adf69854d27affc2e7e184d8093", "pid": "041848020", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Staat"}], "related": [{"authorized_access_point": "Landeshoheit"}, {"authorized_access_point": "Territorium"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4184802-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041848020", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4184802-0", "source": "GND"}], "variant_access_point": ["Landesstaat", "Territorialisierung"], "authorized_access_point": "Territorialstaat"} 1 +2024-09-11 09:10:35.496833 2024-09-11 09:10:35.496836 77294596-b5ef-49e1-800c-6ae16ed62d76 {"md5": "7a9757ccbbc3a38aa97d3c14e0bfd6bb", "pid": "041844793", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134441231", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85010984", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85010984"}], "authorized_access_point": "Bags"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134441231", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF14550405", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb14550405f"}], "authorized_access_point": "Sacs"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4184479-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041844793", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4184479-8", "source": "GND"}], "variant_access_point": ["Taschen"], "authorized_access_point": "Tasche"} 1 +2024-09-11 09:10:35.56421 2024-09-11 09:10:35.564215 d1562c3c-75e8-4f0e-b769-579c03f348a9 {"md5": "b8ca826690129d85d5fe6d3be0c1c57d", "pid": "041844513", "note": [{"label": ["Sammelbezeichnung für eine Gegenbewegung zum klassischen Ballett, die seit Mitte der 1970er-Jahre zunehmend an Bedeutung gewonnen hat", "Einzelne Tanztheater-Produktionen werden als anonyme Werktitel angesetzt, Verweisungen vom Choreographen und ggf. weiteren wichtigen Beteiligten werden gemacht; auch als Oberbegriff für Tanztheaterkompanien zu verwenden"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tanz"}], "related": [{"authorized_access_point": "Ballett"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4184451-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041844513", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4184451-8", "source": "GND"}], "variant_access_point": ["Tanzdrama", "Tanzstück", "Tanztheaterstück"], "authorized_access_point": "Tanztheater"} 1 +2024-09-11 09:10:35.614161 2024-09-11 09:10:35.614165 542e9e34-4f36-4a42-89c0-02fff32958a8 {"md5": "15475091c2a39f8c63ac5fae1d90e808", "pid": "041840658", "note": [{"label": ["EC 2.8.2"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Transferasen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133824757", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2004014824", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2004014824"}], "authorized_access_point": "Sulfotransferases"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133824757", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12535709", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb125357095"}], "authorized_access_point": "Sulfotransférases"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336133015", "source": "GND"}, {"type": "bf:Nbn", "value": "D015238", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D015238"}], "authorized_access_point": "Sulfotransferases"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4184065-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041840658", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4184065-3", "source": "GND"}], "variant_access_point": ["SULTs"], "authorized_access_point": "Sulfotransferasen"} 1 +2024-09-11 09:10:35.691583 2024-09-11 09:10:35.691587 80676ecf-d181-4ea2-a844-cc4e8707bd00 {"md5": "e8ea5aada4bd65664e8cbefc77f3e540", "pid": "041830180", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bauweise"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133989896", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85017717", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85017717"}], "authorized_access_point": "Building, Stone"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336575867", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85128340", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85128340"}], "authorized_access_point": "Stonemasonry"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133989896", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11957075", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11957075g"}], "authorized_access_point": "Construction en pierre"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4183018-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041830180", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4183018-0", "source": "GND"}], "authorized_access_point": "Steinbau"} 1 +2024-09-11 09:10:35.752721 2024-09-11 09:10:35.752724 5a5f2747-e218-43fb-b541-43f046bf3ba2 {"md5": "0a9d71deff43b2e0967ff58be68ac095", "pid": "041822218", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Kugel"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134621248", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85126590", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85126590"}], "authorized_access_point": "Sphere"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134621248", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11981287", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119812876"}], "authorized_access_point": "Sphère"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1299911781", "source": "GND"}, {"type": "bf:Nbn", "value": "XX543469", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX543469"}], "authorized_access_point": "Esfera"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4182221-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041822218", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4182221-3", "source": "GND"}], "variant_access_point": ["Hypersphäre"], "authorized_access_point": "Sphäre"} 1 +2024-09-11 09:10:35.807336 2024-09-11 09:10:35.807339 33d513a7-b43c-4a73-bdeb-aa0637bd1905 {"md5": "8cc0f1e1288846a699ce14e6e19df885", "pid": "041815173", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4181517-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041815173", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4181517-8", "source": "GND"}], "authorized_access_point": "Singuläre Gleichung"} 1 +2024-09-11 09:10:35.859648 2024-09-11 09:10:35.859652 89dfa616-bf1f-43a2-bf26-631626471ab0 {"md5": "1b50506be9309071d8e2dfc0878173ea", "pid": "041810252", "note": [{"label": ["Aufeinanderfolge verschiedener gleichartiger Biomoleküle", "Für Sequenz im Allgemeinen verwende Reihenfolge, gnd/4507704-6", "Für Sequenz (Film) verwende Sequenz (Film), gnd/132554891X", "Für Sequenz (Musik) verwende Sequenz (Musik), gnd/7591624-1", "Für Sequenz (Informatik) verwende Sequenzieller Algorithmus, gnd/4719581-2", "Für Sequenz (Mathematik) verwende Zeichenkette, gnd/4067448-4"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4181025-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041810252", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4181025-9", "source": "GND"}], "authorized_access_point": "Sequenz (Biochemie)"} 1 +2024-09-11 09:10:36.593556 2024-09-11 09:10:36.59356 5ec360fa-2129-455e-a451-0183adb3c3d7 {"md5": "7fc27f637ae16049adc4f77739ec81cd", "pid": "041730380", "note": [{"label": ["Für bodennahes Ozon verknüpfe: Ozon / Bodennahe Luftschicht."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sauerstoff"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133692281", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85096391", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85096391"}], "authorized_access_point": "Ozone"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133692281", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11981162", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11981162k"}], "authorized_access_point": "Ozone"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254328858", "source": "GND"}, {"type": "bf:Nbn", "value": "5327", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/5327"}], "authorized_access_point": "Ozono"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254470212", "source": "GND"}, {"type": "bf:Nbn", "value": "XX543193", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX543193"}], "authorized_access_point": "Ozono"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256242993", "source": "GND"}, {"type": "bf:Nbn", "value": "5485", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_5485"}], "authorized_access_point": "ozone"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334635641", "source": "GND"}, {"type": "bf:Nbn", "value": "D010126", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D010126"}], "authorized_access_point": "Ozone"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4173038-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041730380", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4173038-0", "source": "GND"}], "authorized_access_point": "Ozon"} 1 +2024-09-11 09:10:35.916878 2024-09-11 09:10:35.916882 26b431c4-77c7-4e46-84d0-af84b4c4e4d1 {"md5": "eaa3adbe22ef531a713c98191f5b1e9f", "pid": "041806417", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Elektrisches Kabel"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134064403", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85018581", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85018581"}], "authorized_access_point": "Cables, Submarine"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134064403", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11980419", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119804191"}], "authorized_access_point": "Câbles sous-marins"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254485392", "source": "GND"}, {"type": "bf:Nbn", "value": "XX525880", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX525880"}], "authorized_access_point": "Cables submarinos"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4180641-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041806417", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4180641-4", "source": "GND"}], "variant_access_point": ["Unterwasserkabel", "Tiefseekabel", "Unterseeische Kabel"], "authorized_access_point": "Seekabel"} 1 +2024-09-11 09:10:35.966885 2024-09-11 09:10:35.96689 6ac88bab-53c4-4abc-b46e-6d78c6cf8452 {"md5": "fc8e87575378ea1adcb874bf67f6d8d9", "pid": "041796462", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Luftschlacht_um_England&oldid=211129893"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Luftkrieg"}], "related": [{"authorized_access_point": "Unternehmen Seelöwe"}, {"authorized_access_point": "Zweiter Weltkrieg"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133985025", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85016958", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85016958"}], "authorized_access_point": "Britain, Battle of, Great Britain, 1940"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133985025", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11954542", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119545425"}], "authorized_access_point": "Bataille d'Angleterre (1940)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254378812", "source": "GND"}, {"type": "bf:Nbn", "value": "45870", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/45870"}], "authorized_access_point": "Battaglia d'Inghilterra <1940>"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254457631", "source": "GND"}, {"type": "bf:Nbn", "value": "XX533012", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX533012"}], "authorized_access_point": "Inglaterra, Batalla de, 1940"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4179646-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041796462", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4179646-9", "source": "GND"}], "variant_access_point": ["Schlacht um England", "Battle of Britain"], "authorized_access_point": "Luftschlacht um England"} 1 +2024-09-11 09:10:36.018286 2024-09-11 09:10:36.01829 dfc355cf-5b16-4c8c-ad3a-0da1a5a952a1 {"md5": "d0a6e0f8b6611e4140c02695458b10a8", "pid": "041794923", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Unterwelt"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4179492-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041794923", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4179492-8", "source": "GND"}], "authorized_access_point": "Scheol"} 1 +2024-09-11 09:10:36.071874 2024-09-11 09:10:36.071877 119fadd2-bc7d-46ba-bc4d-5a487a53390d {"md5": "64cc261e118016ce21a964c12db4d6fb", "pid": "041789989", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Steuer"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134083637", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85116855", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85116855"}], "authorized_access_point": "Salt - Taxation"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134083637", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11986454", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119864540"}], "authorized_access_point": "Sel - Impôts"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4178998-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041789989", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4178998-2", "source": "GND"}], "authorized_access_point": "Salzsteuer"} 1 +2024-09-11 09:10:36.120519 2024-09-11 09:10:36.120522 bb0e60a0-4c69-4278-b735-8eb44b77ece3 {"md5": "1a4bbf0e5b93903a56ed9b3ed6fd8b28", "pid": "041787250", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schleifen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134709471", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85057370", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85057370"}], "authorized_access_point": "Grinding and polishing"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134709471", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11980486", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119804865"}], "authorized_access_point": "Meulage"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4178725-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041787250", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4178725-0", "source": "GND"}], "authorized_access_point": "Rundschleifen"} 1 +2024-09-11 09:10:36.173909 2024-09-11 09:10:36.173914 34c012d5-e2a8-429d-8fe6-018b245a6be7 {"md5": "dcb834265088647daf01c2b84421f29a", "pid": "041785134", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133825397", "source": "GND"}, {"type": "bf:Nbn", "value": "sh96010897", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh96010897"}], "authorized_access_point": "Rotaxanes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133825397", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12538357", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12538357n"}], "authorized_access_point": "Rotaxanes"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133614811X", "source": "GND"}, {"type": "bf:Nbn", "value": "D043862", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D043862"}], "authorized_access_point": "Rotaxanes"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4178513-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041785134", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4178513-7", "source": "GND"}], "authorized_access_point": "Rotaxane"} 1 +2024-09-11 09:10:36.235485 2024-09-11 09:10:36.235489 1a922757-33c8-445a-919a-ce5ea97dd402 {"md5": "8a6f6cb25d094c8b818e05897c3bc93c", "pid": "041782445", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Orden"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133631452", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85095375", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85095375"}], "authorized_access_point": "Orders of knighthood and chivalry"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133631452", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13318528", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb133185280"}], "authorized_access_point": "Ordres de chevalerie"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134505213", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13318794", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13318794b"}], "authorized_access_point": "Ordres militaires (religion)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254480234", "source": "GND"}, {"type": "bf:Nbn", "value": "XX530947", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX530947"}], "authorized_access_point": "Órdenes de caballería"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4178244-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041782445", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4178244-6", "source": "GND"}], "authorized_access_point": "Ritterorden"} 1 +2024-09-11 09:10:36.288782 2024-09-11 09:10:36.288785 fc6a691e-9d66-466e-8654-1f0f493fba20 {"md5": "c5a388e1b6e5adbc32061ff4b00791f8", "pid": "041766040", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bildanalyse"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4176604-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041766040", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4176604-0", "source": "GND"}], "variant_access_point": ["Bildanalyse"], "authorized_access_point": "Quantitative Bildanalyse"} 1 +2024-09-11 09:10:36.350573 2024-09-11 09:10:36.350578 6fd0194a-db0c-46f0-8312-f83bfa3b2904 {"md5": "27f721f41afb2b316b37bb91f959023b", "pid": "041762223", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Student"}], "related": [{"authorized_access_point": "Psychologiestudentin"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334681244", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2009008206", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2009008206"}], "authorized_access_point": "Psychology students"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334681244", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15094972", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb150949721"}], "authorized_access_point": "Étudiants en psychologie"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4176222-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041762223", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4176222-8", "source": "GND"}], "variant_access_point": ["Psychologiestudium"], "authorized_access_point": "Psychologiestudent"} 1 +2024-09-11 09:10:36.4199 2024-09-11 09:10:36.419904 deb83731-54aa-47aa-bc81-397a5df1c841 {"md5": "4ae1627dd999077e632dd16d2d0bbae5", "pid": "041753615", "note": [{"label": ["Kulturgüter, Erzeugnisse oder künstlerische Ausdrucksformen, die von einem großen Teil der Gesellschaft konsumiert und als relevant oder beliebt angesehen werden; wird als Gegensatz zur Hochkultur verstanden und als Ausdruck des Zeitgeistes betrachtet"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Massenkultur"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1291583955", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85104904", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85104904"}], "authorized_access_point": "Popular culture"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1291583955", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13318541", "source": "BNF"}, {"type": "uri", "value": "https://ark.bnf.fr/ark:/12148/cb133185416"}], "authorized_access_point": "Culture populaire"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)106889248X", "source": "GND"}, {"type": "bf:Nbn", "value": "30024-3", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/30024-3"}], "authorized_access_point": "Popkultur"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)983461848", "source": "GND"}, {"type": "bf:Nbn", "value": "10048286", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10048286"}], "authorized_access_point": "Popkultur"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4175361-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041753615", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4175361-6", "source": "GND"}], "variant_access_point": ["Pop-Kultur", "Populärkultur", "Populäre Kultur"], "authorized_access_point": "Popkultur"} 1 +2024-09-11 09:10:36.482687 2024-09-11 09:10:36.482691 cfe62522-7748-4010-b6ca-0b21044a1bc3 {"md5": "7f61137425bc8bc99b4e2536cb68348a", "pid": "041748379", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Plasmaphysik"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4174837-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041748379", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4174837-2", "source": "GND"}], "variant_access_point": ["Plasma"], "authorized_access_point": "Plasmatheorie"} 1 +2024-09-11 09:10:36.538222 2024-09-11 09:10:36.538225 3e9cfae0-b24d-42d6-9862-eafd38b9d70f {"md5": "6a8f5c68db5df7bd5b0e611f34424b3c", "pid": "041734467", "note": [{"label": ["Benutzt für den Kampf der Partisanen und deren Bekämpfung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Krieg"}], "related": [{"authorized_access_point": "Guerilla"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134567057", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85057695", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85057695"}], "authorized_access_point": "Guerrilla warfare"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134567057", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13516336", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13516336x"}], "authorized_access_point": "Guérilla"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4173446-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041734467", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4173446-4", "source": "GND"}], "authorized_access_point": "Partisanenkrieg"} 1 +2024-09-11 09:10:39.484531 2024-09-11 09:10:39.484534 348fba90-5a46-4bee-8151-60bc3429dee5 {"md5": "94573f9b8a768114bbd91e8899534282", "pid": "04151923X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kontaktloser Schalter"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4151923-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04151923X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4151923-1", "source": "GND"}], "authorized_access_point": "Elektronischer Schalter"} 1 +2024-09-11 09:10:36.641521 2024-09-11 09:10:36.641525 74e2cc88-63ff-4e61-8a95-6d293477fdd1 {"md5": "518897d13ae81b5a8a08a46ba7f831ae", "pid": "041718380", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Adel"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134023499", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85053953", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85053953"}], "authorized_access_point": "Gentry"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134023499", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11970875", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11970875d"}], "authorized_access_point": "Petite noblesse"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4171838-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041718380", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4171838-0", "source": "GND"}], "variant_access_point": ["Niederer Adel", "Kleinadel"], "authorized_access_point": "Niederadel"} 1 +2024-09-11 09:10:36.691466 2024-09-11 09:10:36.69147 ec1eed7a-bdbf-4f36-b32b-3cc28c764693 {"md5": "f1613cadcac2c597b3ee9f7e0b972c67", "pid": "041717007", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113436394X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85091709", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85091709"}], "authorized_access_point": "Nias language"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113436394X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12545964", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb125459642"}], "authorized_access_point": "Nias (langue)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4171700-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041717007", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4171700-4", "source": "GND"}], "variant_access_point": ["Niassisch", "Nias (Sprache)"], "authorized_access_point": "Nias-Sprache"} 1 +2024-09-11 09:10:36.74661 2024-09-11 09:10:36.746614 71447fa1-1225-4741-9a67-8226e25586c8 {"md5": "431ae66289d53adcfd36683c08235077", "pid": "041712900", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Killerzelle"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134259670", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85072328", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85072328"}], "authorized_access_point": "Killer cells"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134259670", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12290850", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12290850d"}], "authorized_access_point": "Cellules NK"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336594470", "source": "GND"}, {"type": "bf:Nbn", "value": "D007694", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D007694"}], "authorized_access_point": "Killer Cells, Natural"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4171290-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041712900", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4171290-0", "source": "GND"}], "variant_access_point": ["NK-Zelle"], "authorized_access_point": "Natürliche Killerzelle"} 1 +2024-09-11 09:10:36.80587 2024-09-11 09:10:36.805873 a6732bfa-a030-49d9-a8e4-cc979445fee9 {"md5": "32b359d7276ea84d971811e79bd11441", "pid": "041707222", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kranker"}], "related": [{"authorized_access_point": "Multiple Sklerose"}, {"authorized_access_point": "Weibliche Multiple-Sklerose-Kranke"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134505272", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12447406", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12447406t"}], "authorized_access_point": "Encéphalomyélite aiguë disseminée"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4170722-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041707222", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4170722-9", "source": "GND"}], "authorized_access_point": "Multiple-Sklerose-Kranker"} 1 +2024-09-11 09:10:36.860993 2024-09-11 09:10:36.860997 823dc5dd-1f72-4196-8de2-19b2a76494fe {"md5": "106431918b21530d1f84452b909165fc", "pid": "04170553X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Moriskentanz"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tanz"}], "related": [{"authorized_access_point": "Morisken"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134139004", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85087339", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85087339"}], "authorized_access_point": "Moros y Cristianos (Dance)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134139004", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12050074", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb120500741"}], "authorized_access_point": "Moresca (danse)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254394389", "source": "GND"}, {"type": "bf:Nbn", "value": "65611", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/65611"}], "authorized_access_point": "Moresca"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133811833", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85087356", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85087356"}], "authorized_access_point": "Morris dance"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133811833", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12489728", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb124897288"}], "authorized_access_point": "Morris dance"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4170553-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04170553X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4170553-1", "source": "GND"}], "variant_access_point": ["Morisca", "Moreskentanz", "Moriskentanz", "Moriska", "Mourisca", "Morris dance", "Morrisdance"], "authorized_access_point": "Moresca"} 1 +2024-09-11 09:10:36.912015 2024-09-11 09:10:36.912018 0574046a-15ea-492d-b7ff-14ff1b9222b5 {"md5": "24936afafc08d21db1145858afcf047f", "pid": "041701852", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kernteilung"}], "related": [{"authorized_access_point": "Amitose"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133728553", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85086289", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85086289"}], "authorized_access_point": "Mitosis"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133728553", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12151573", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12151573g"}], "authorized_access_point": "Mitose"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254366571", "source": "GND"}, {"type": "bf:Nbn", "value": "34116", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/34116"}], "authorized_access_point": "Mitosi"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125446302X", "source": "GND"}, {"type": "bf:Nbn", "value": "XX550158", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX550158"}], "authorized_access_point": "Mitosis"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256238120", "source": "GND"}, {"type": "bf:Nbn", "value": "4870", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_4870"}], "authorized_access_point": "mitosis"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336586613", "source": "GND"}, {"type": "bf:Nbn", "value": "D008938", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D008938"}], "authorized_access_point": "Mitosis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4170185-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041701852", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4170185-9", "source": "GND"}], "variant_access_point": ["Mitotische Teilung", "Indirekte Kernteilung", "Indirekte Zellteilung", "M-Phase"], "authorized_access_point": "Mitose"} 1 +2024-09-11 09:10:37.007122 2024-09-11 09:10:37.007128 03b9f5ca-0a5f-4e22-9478-243b1b5a2727 {"md5": "04caba5849a44ece07b45132b8158e2c", "pid": "041699114", "note": [{"label": ["Für Tiere benutze Euter bzw. Gesäuge"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Exokrine Drüse"}], "related": [{"authorized_access_point": "Mamma"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133751105", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85080275", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85080275"}], "authorized_access_point": "Mammary glands"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133751105", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12285824", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12285824v"}], "authorized_access_point": "Glande mammaire"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256237515", "source": "GND"}, {"type": "bf:Nbn", "value": "4562", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_4562"}], "authorized_access_point": "mammary glands"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4169911-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041699114", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4169911-7", "source": "GND"}], "variant_access_point": ["Brustdrüse", "Glandula mammaria", "Mammadrüse"], "authorized_access_point": "Milchdrüse"} 1 +2024-09-11 09:10:37.061946 2024-09-11 09:10:37.061951 6b591113-6ca0-48b4-ac7d-f4d8a07a17fb {"md5": "450d4cac7068a8c4da6d20f9c7582ffc", "pid": "041696492", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zellteilung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133884040", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13737516", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13737516v"}], "authorized_access_point": "Métaphase"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336586443", "source": "GND"}, {"type": "bf:Nbn", "value": "D008677", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D008677"}], "authorized_access_point": "Metaphase"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4169649-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041696492", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4169649-9", "source": "GND"}], "authorized_access_point": "Metaphase"} 1 +2024-09-11 09:10:37.115832 2024-09-11 09:10:37.115835 d37f3060-a150-4139-aedf-c175324fe73b {"md5": "126e8c89510e0ecd6b1f0216b89a8165", "pid": "041693477", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133740073", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85083346", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85083346"}], "authorized_access_point": "Meiosis"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133740073", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12253594", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb122535943"}], "authorized_access_point": "Méiose"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254363955", "source": "GND"}, {"type": "bf:Nbn", "value": "32284", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/32284"}], "authorized_access_point": "Meiosi"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254460950", "source": "GND"}, {"type": "bf:Nbn", "value": "XX533954", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX533954"}], "authorized_access_point": "Meiosis"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256236209", "source": "GND"}, {"type": "bf:Nbn", "value": "4706", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_4706"}], "authorized_access_point": "meiosis"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133658677X", "source": "GND"}, {"type": "bf:Nbn", "value": "D008540", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D008540"}], "authorized_access_point": "Meiosis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4169347-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041693477", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4169347-4", "source": "GND"}], "variant_access_point": ["Reifeteilung", "Reduktionsteilung", "Meiosis"], "authorized_access_point": "Meiose"} 1 +2024-09-11 09:10:37.182839 2024-09-11 09:10:37.182844 10c62af2-fc0b-4e78-9007-fe07fd7030d3 {"md5": "947bf1e0e4a55f1bbf6ccfbbf93fa5f5", "pid": "041692705", "note": [{"label": ["Mit der Integraltransformation nahe verwandte Konzepte sind der Mehler-Kern und die Mehler-Formel mit Anwendung in der Quantenmechanik."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Integraltransformation"}], "related": [{"authorized_access_point": "Harmonischer Oszillator"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4169270-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041692705", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4169270-6", "source": "GND"}], "variant_access_point": ["Mehler-Fock-Transformation"], "authorized_access_point": "Mehler-Fok-Transformation"} 1 +2024-09-11 09:10:37.245909 2024-09-11 09:10:37.245912 c3121fa2-ab35-470f-b0d2-90cc5f764446 {"md5": "e1e4b4be7a336a1d5754a71618fb7beb", "pid": "041689763", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Funktionale Musik"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133737870", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85080979", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85080979"}], "authorized_access_point": "Marches"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133737870", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12238072", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb122380726"}], "authorized_access_point": "Marches (musique)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254397973", "source": "GND"}, {"type": "bf:Nbn", "value": "69890", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/69890"}], "authorized_access_point": "Marce "}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254459553", "source": "GND"}, {"type": "bf:Nbn", "value": "XX537163", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX537163"}], "authorized_access_point": "Marchas militares"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4168976-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041689763", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4168976-8", "source": "GND"}], "variant_access_point": ["Marschmusik"], "authorized_access_point": "Marsch (Musik)"} 1 +2024-09-11 09:10:37.302082 2024-09-11 09:10:37.302084 7875e5e7-8c29-4e33-b2a6-0646969e7728 {"md5": "e9186b82b4f4499a2c294e4ac71990bf", "pid": "041687167", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Mande-Sprachen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4168716-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041687167", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4168716-4", "source": "GND"}], "variant_access_point": ["Manding-Sprache", "Mandinka-Sprache", "Mandinkakan-Sprache", "Maninka-Sprache", "Mandekan", "Maninlakan"], "authorized_access_point": "Malinke-Sprache"} 1 +2024-09-11 09:10:37.361307 2024-09-11 09:10:37.361309 57a5c96e-2199-4991-afe0-7e2a8a523663 {"md5": "588a953fdd76c0c92fbb58384e37ba07", "pid": "041667689", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Grubenottern"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134429665", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85016019", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85016019"}], "authorized_access_point": "Bothrops"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134429665", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF14508508", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb14508508n"}], "authorized_access_point": "Bothrops"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336105909", "source": "GND"}, {"type": "bf:Nbn", "value": "D017837", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D017837"}], "authorized_access_point": "Bothrops"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4166768-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041667689", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4166768-2", "source": "GND"}], "variant_access_point": ["Lanzenotter (Gattung)"], "authorized_access_point": "Bothrops"} 1 +2024-09-11 09:10:37.423476 2024-09-11 09:10:37.423478 ab7b4250-cab3-4a13-b03b-58a079c43ec2 {"md5": "bc02c16febf003006d4af4881e289b3e", "pid": "041667670", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Grubenottern"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1323096663", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2008007750", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2008007750"}], "authorized_access_point": "Fer-de-lance"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1323096663", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17058270", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb17058270t"}], "authorized_access_point": "Bothrops atrox"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336108002", "source": "GND"}, {"type": "bf:Nbn", "value": "D000097142", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000097142"}], "authorized_access_point": "Bothrops atrox"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4166767-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041667670", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4166767-0", "source": "GND"}], "variant_access_point": ["Bothrops atrox", "Gewöhnliche Lanzenotter"], "authorized_access_point": "Lanzenotter"} 1 +2024-09-11 09:10:37.489727 2024-09-11 09:10:37.489732 c1918b26-da75-49b8-8926-189e01fac8b1 {"md5": "665bd02e366f365e76eea34029f529e6", "pid": "041663659", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Antibiotikum"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134245041", "source": "GND"}, {"type": "bf:Nbn", "value": "sh86002798", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh86002798"}], "authorized_access_point": "Beta lactam antibiotics"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134245041", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12266277", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12266277m"}], "authorized_access_point": "Bêta-lactamines"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254394842", "source": "GND"}, {"type": "bf:Nbn", "value": "66202", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/66202"}], "authorized_access_point": "Beta-lattamici"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254454187", "source": "GND"}, {"type": "bf:Nbn", "value": "XX549031", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX549031"}], "authorized_access_point": "Antibióticos betalactámicos"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336118954", "source": "GND"}, {"type": "bf:Nbn", "value": "D000097902", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000097902"}], "authorized_access_point": "beta Lactam Antibiotics"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4166365-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041663659", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4166365-2", "source": "GND"}], "variant_access_point": ["Betalactamantibiotikum", "Beta-Lactam-Antibiotikum", "Cepheme", "Betalaktam-Antibiotika"], "authorized_access_point": "Lactamantibiotikum (beta-)"} 1 +2024-09-11 09:10:37.55464 2024-09-11 09:10:37.554645 579c871d-8c7e-4938-a33c-f4f9d1beaf59 {"md5": "e44b0e224d4b4a28e9e407552d859c92", "pid": "04165725X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Kriminalfall&oldid=201807873"], "noteType": "dataSource"}, {"label": ["für populärwiss., quasiliterarische Darstellungen von Kriminalfällen, ansonsten wird Straftat benutzt; nicht zusätzlich f Fallsammlung. Bei belletrist. Darstellungen nicht-permutierendes USW nach Geographikum"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4165725-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04165725X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4165725-1", "source": "GND"}], "authorized_access_point": "Kriminalfall"} 1 +2024-09-11 09:10:37.618368 2024-09-11 09:10:37.618373 6faa1e60-402b-40d0-ba44-90258239aa18 {"md5": "7ef52627bffdb26377e9aeaae2147950", "pid": "041656032", "note": [{"label": ["Benutzt für das deutsche und internationale Recht, für das österreichische Recht benutze Stadt mit eigenem Statut"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Stadt"}], "related": [{"authorized_access_point": "Große Kreisstadt"}, {"authorized_access_point": "Stadt mit eigenem Statut"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4165603-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041656032", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4165603-9", "source": "GND"}], "variant_access_point": ["Stadtkreis (Kreisfreie Stadt)"], "authorized_access_point": "Kreisfreie Stadt"} 1 +2024-09-11 09:10:37.679403 2024-09-11 09:10:37.679407 4d4d2374-509d-4c11-996b-527a7baf878c {"md5": "085dfcdfd4046c23dd55b4a504f4c4ba", "pid": "041655974", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kompass"}], "related": [{"authorized_access_point": "Kreiselgerät"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4165597-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041655974", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4165597-7", "source": "GND"}], "authorized_access_point": "Kreiselkompass"} 1 +2024-09-11 09:10:40.157106 2024-09-11 09:10:40.157111 5ad7e452-e25a-4576-b1f3-d29c1a1bbc4b {"md5": "efc2ae64d45074fbe6fe91b22e389f61", "pid": "041487109", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134759355", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2011005416", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2011005416"}], "authorized_access_point": "Cytometry"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4148710-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041487109", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4148710-2", "source": "GND"}], "variant_access_point": ["Zytometrie"], "authorized_access_point": "Cytometrie"} 1 +2024-09-11 09:10:37.730214 2024-09-11 09:10:37.730217 5fe950b1-efa6-4fe5-8421-ce2c0b8433d3 {"md5": "372e985d566e6278c6073463df67c7c7", "pid": "041655168", "note": [{"label": ["Ab dem 1.1.2004 neue offizielle Berufsbezeichnung in Dtld: \\"Gesundheits- und Krankenpfleger\\". Vorher ausgebildete Pflegekräfte können wahlweise die alte oder die neue Berufsbezeichnung führen.", "Als Homonymenzusatz bei Personenschlagwörtern zugelassen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Pflegepersonal"}], "related": [{"authorized_access_point": "Krankenschwester"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134065833", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85083530", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85083530"}], "authorized_access_point": "Male nurses"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134065833", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11980730", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11980730c"}], "authorized_access_point": "Infirmiers"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1333273207", "source": "GND"}, {"type": "bf:Nbn", "value": "D009727", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D009727"}], "authorized_access_point": "Nurses, Male"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970566271", "source": "GND"}, {"type": "bf:Nbn", "value": "10045517", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10045517"}], "authorized_access_point": "Krankenpfleger"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4165516-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041655168", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4165516-3", "source": "GND"}], "variant_access_point": ["Gesundheits- und Krankenpfleger", "Pflegefachmann"], "authorized_access_point": "Krankenpfleger"} 1 +2024-09-11 09:10:37.778773 2024-09-11 09:10:37.778778 3e568220-db61-47a2-87be-6e4ac6e1d97f {"md5": "0881ae8fe51a45a2ea47c783a73f8478", "pid": "041654013", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4165401-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041654013", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4165401-8", "source": "GND"}], "authorized_access_point": "Kovariante Darstellung"} 1 +2024-09-11 09:10:37.823877 2024-09-11 09:10:37.82388 4b95a9fe-6482-4aa5-a74f-fc965270571f {"md5": "e1675a836cc68a15da7ea449265b8066", "pid": "041653386", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Linguistik"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134838050", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2006006393", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2006006393"}], "authorized_access_point": "Corpora (Linguistics)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134838050", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15997252", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15997252r"}], "authorized_access_point": "Corpus linguistique"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254451552", "source": "GND"}, {"type": "bf:Nbn", "value": "XX4874758", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX4874758"}], "authorized_access_point": "Corpora (Lingüística)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4165338-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041653386", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4165338-5", "source": "GND"}], "variant_access_point": ["Korpus (Sprachwissenschaft)", "Corpus (Linguistik)", "Korpuslinguistik", "Textkorpus"], "authorized_access_point": "Korpus (Linguistik)"} 1 +2024-09-11 09:10:37.869659 2024-09-11 09:10:37.869661 53c19592-8cf6-4c4e-b972-07a0f596c27c {"md5": "de7751a2bb51c2e8c67e53b75b9b22b2", "pid": "041647459", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Partisan"}, {"authorized_access_point": "Widerstand"}, {"authorized_access_point": "Nichtkombattant"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134295294", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85028799", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85028799"}], "authorized_access_point": "Combatants and noncombatants (International law)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134295294", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12364444", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12364444w"}], "authorized_access_point": "Combattants et non-combattants (droit international)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4164745-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041647459", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4164745-2", "source": "GND"}], "variant_access_point": ["Kriegsteilnehmer (Kombattant)"], "authorized_access_point": "Kombattant"} 1 +2024-09-11 09:10:37.918877 2024-09-11 09:10:37.918882 0260f795-87e7-4263-9e54-af88a4de8f15 {"md5": "97f067070ecbb8c562632cc4571711aa", "pid": "041637763", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zelle"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134130406", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85072328", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85072328"}], "authorized_access_point": "Killer cells"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134130406", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12046164", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb120461647"}], "authorized_access_point": "Cellules K (lymphocytes)"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336594861", "source": "GND"}, {"type": "bf:Nbn", "value": "D013602", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D013602"}], "authorized_access_point": "T-Lymphocytes, Cytotoxic"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4163776-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041637763", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4163776-8", "source": "GND"}], "variant_access_point": ["K-Zelle", "Cytotoxische Zelle", "Zytotoxische Zelle", "Zytotoxischer T-Lymphozyt", "Cytotoxischer T-Lymphozyt"], "authorized_access_point": "Killerzelle"} 1 +2024-09-11 09:10:37.967879 2024-09-11 09:10:37.967882 3483de19-c697-454b-88da-b702e7406040 {"md5": "1c8911a52d29869dba022c7ff790ed2a", "pid": "041636422", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336587253", "source": "GND"}, {"type": "bf:Nbn", "value": "D048750", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D048750"}], "authorized_access_point": "Cell Nucleus Division"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4163642-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041636422", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4163642-9", "source": "GND"}], "authorized_access_point": "Kernteilung"} 1 +2024-09-11 09:10:38.017042 2024-09-11 09:10:38.017046 3542edd9-302c-4cfd-acf8-312c31084fcf {"md5": "989750ca88ffcb4b3c7db5135aac2d51", "pid": "041633237", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Toxizität"}], "related": [{"authorized_access_point": "Herzgift"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)124163503X", "source": "GND"}, {"type": "bf:Nbn", "value": "D066126", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D066126"}], "authorized_access_point": "Cardiotoxicity"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4163323-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041633237", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4163323-4", "source": "GND"}], "variant_access_point": ["Cardiotoxizität"], "authorized_access_point": "Kardiotoxizität"} 1 +2024-09-11 09:10:38.078618 2024-09-11 09:10:38.078623 5f84671d-2205-48fe-a16d-ce97344f2776 {"md5": "797760432b52492785c2d3ee29aae2bb", "pid": "041616715", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134028997", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85066293", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85066293"}], "authorized_access_point": "Information theory in economics"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134028997", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11972022", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119720223"}], "authorized_access_point": "Information, Théorie de l' en économie politique"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966782380", "source": "GND"}, {"type": "bf:Nbn", "value": "10141-4", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/10141-4"}], "authorized_access_point": "Informationsökonomik"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4161671-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041616715", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4161671-6", "source": "GND"}], "variant_access_point": ["Informationsökonomik"], "authorized_access_point": "Informationsökonomie"} 1 +2024-09-11 09:10:38.139149 2024-09-11 09:10:38.139152 62c72595-109d-40e0-9887-d631580297d8 {"md5": "051fc6629a67a3a6d48f1baffbbc90a3", "pid": "041614909", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134150776", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85064859", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85064859"}], "authorized_access_point": "Index numbers (Economics)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134150776", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12076887", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12076887f"}], "authorized_access_point": "Indices (économie politique)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254442901", "source": "GND"}, {"type": "bf:Nbn", "value": "XX533854", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX533854"}], "authorized_access_point": "Números índices (Economía)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4161490-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041614909", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4161490-2", "source": "GND"}], "variant_access_point": ["Indexziffer", "Statistische Kennziffer", "Aggregatindex", "Generalindex", "Zusammengesetzte Indexzahl"], "authorized_access_point": "Indexzahl"} 1 +2024-09-11 09:10:38.20466 2024-09-11 09:10:38.204664 c4bcbbba-7944-4201-b7f9-466ce5a07772 {"md5": "c2e8974a95e5f66a76791fe3715aacff", "pid": "041614836", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Index&oldid=232182921"], "noteType": "dataSource"}, {"label": ["Nicht im Sinne von Register zu verwenden! Als Formschlagwort verwende f Bibliographie, f Konkordanz oder f Verzeichnis."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966779029", "source": "GND"}, {"type": "bf:Nbn", "value": "15082-4", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/15082-4"}], "authorized_access_point": "Index"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4161483-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041614836", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4161483-5", "source": "GND"}], "authorized_access_point": "Index"} 1 +2024-09-11 09:10:38.268882 2024-09-11 09:10:38.268885 69c95f24-b01b-4f60-8137-1430739a83d5 {"md5": "10a74f82e8fccafaa24cb229f59775ba", "pid": "041613872", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zelle"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133713416", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85064551", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85064551"}], "authorized_access_point": "Immunocompetent cells"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133713416", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12049642", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb120496421"}], "authorized_access_point": "Cellules immunocompétentes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125439608X", "source": "GND"}, {"type": "bf:Nbn", "value": "67680", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/67680"}], "authorized_access_point": "Cellule immunocompetenti"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4161387-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041613872", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4161387-9", "source": "GND"}], "variant_access_point": ["Immunzelle", "Immunkompetente Zelle", "Immunocyt", "Abwehrzelle"], "authorized_access_point": "Immunozyt"} 1 +2024-09-11 09:10:41.956656 2024-09-11 09:10:41.956666 7aebfe20-3007-4e66-a8c4-c26e467cfe91 {"md5": "b64b36bb4fbeb292c083c5662e94b640", "pid": "041392450", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Vertrag"}, {"authorized_access_point": "Arztrecht"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4139245-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041392450", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4139245-0", "source": "GND"}], "variant_access_point": ["Arzt", "Behandlungsvertrag"], "authorized_access_point": "Arztvertrag"} 1 +2024-09-11 09:10:38.325054 2024-09-11 09:10:38.325058 396b11bb-c958-4026-8890-0e0e2b94bdd1 {"md5": "913be6808b7aec10773b306ac3c0e6ac", "pid": "041613597", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zelle"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134245610", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85064524", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85064524"}], "authorized_access_point": "Immobilized cells"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134245610", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12266500", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12266500v"}], "authorized_access_point": "Cellules immobilisées"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336593954", "source": "GND"}, {"type": "bf:Nbn", "value": "D018914", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D018914"}], "authorized_access_point": "Cells, Immobilized"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4161359-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041613597", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4161359-4", "source": "GND"}], "authorized_access_point": "Immobilisierte Zelle"} 1 +2024-09-11 09:10:38.376579 2024-09-11 09:10:38.376584 5172f7b5-d4af-4a37-b2bb-467f7fac2a62 {"md5": "b2280e406e961a7e799c398b8d548f6b", "pid": "041606760", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Haut"}], "related": [{"authorized_access_point": "Horn"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334796270", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF16736881", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb167368819"}], "authorized_access_point": "Stratum cornéum"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4160676-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041606760", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4160676-0", "source": "GND"}], "variant_access_point": ["Hornhaut (Epidermis)", "Stratum corneum"], "authorized_access_point": "Hornschicht"} 1 +2024-09-11 09:10:38.434528 2024-09-11 09:10:38.434531 edc64cb8-537d-46c3-86b3-e5c9a9ddb552 {"md5": "97552f01381dd80804b9249e714cc890", "pid": "041599470", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gehirn"}, {"authorized_access_point": "Zelle"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4159947-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041599470", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4159947-0", "source": "GND"}], "variant_access_point": ["ZNS-Gewebe"], "authorized_access_point": "Hirnzelle"} 1 +2024-09-11 09:10:38.491312 2024-09-11 09:10:38.491316 f0dc69b2-2a76-44b2-9ec1-9976439026b1 {"md5": "835644ad85f873257f2c76a1af26f09d", "pid": "041597508", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134667248", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85060545", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85060545"}], "authorized_access_point": "Heteroscedasticity"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966774140", "source": "GND"}, {"type": "bf:Nbn", "value": "15362-5", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/15362-5"}], "authorized_access_point": "Heteroskedastizität"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4159750-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041597508", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4159750-3", "source": "GND"}], "variant_access_point": ["Heterogenität der Varianzen", "Heteroskedastie", "Heteroskedasticity"], "authorized_access_point": "Heteroskedastizität"} 1 +2024-09-11 09:10:38.550947 2024-09-11 09:10:38.550952 ed6ecd86-2780-47fd-9b46-b4ae73bbf766 {"md5": "8a66ca641e8156dbdb0dc642070fb244", "pid": "041594800", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Installateurhandwerk"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113460808X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11979039", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11979039h"}], "authorized_access_point": "Chauffagistes"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4159480-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041594800", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4159480-0", "source": "GND"}], "variant_access_point": ["Heizungsinstallateurhandwerk", "Heizungsinstallation", "Heizungsinstallation"], "authorized_access_point": "Heizungshandwerk"} 1 +2024-09-11 09:10:38.60594 2024-09-11 09:10:38.605943 7dbb0863-26d2-4626-9ce5-962290ed9e03 {"md5": "60edc23c17a198a4b45d521d16af83ac", "pid": "041591267", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4159126-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041591267", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4159126-4", "source": "GND"}], "variant_access_point": ["Fourier-Synthese"], "authorized_access_point": "Harmonische Synthese"} 1 +2024-09-11 09:10:38.654664 2024-09-11 09:10:38.654667 d7197f70-5ba6-496c-afd2-a399f2d0f790 {"md5": "d9b56152a074ae01035ad8bf99146c8f", "pid": "041585623", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Streichinstrument"}], "related": [{"authorized_access_point": "Guslar"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134816634", "source": "GND"}, {"type": "bf:Nbn", "value": "sh92005165", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh92005165"}], "authorized_access_point": "Gusle"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4158562-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041585623", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4158562-8", "source": "GND"}], "variant_access_point": ["Gusla", "Lahuta"], "authorized_access_point": "Gusle"} 1 +2024-09-11 09:10:38.703811 2024-09-11 09:10:38.703813 04620611-38b2-404f-9531-90afdc459ce7 {"md5": "688447ad1c16483c440895be37588165", "pid": "041584929", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4158492-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041584929", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4158492-2", "source": "GND"}], "variant_access_point": ["Guanidin"], "authorized_access_point": "Guanidinderivate"} 1 +2024-09-11 09:10:38.75271 2024-09-11 09:10:38.752713 a6a4959b-808f-4db0-9dc4-838bcc548c8b {"md5": "e16327956c450417c85831fc7f9d22c6", "pid": "041582667", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schöllkraut"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134488254", "source": "GND"}, {"type": "bf:Nbn", "value": "sh96009459", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh96009459"}], "authorized_access_point": "Greater celandine"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134488254", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15018776", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb150187765"}], "authorized_access_point": "Chelidonium majus"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336585765", "source": "GND"}, {"type": "bf:Nbn", "value": "D000097563", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000097563"}], "authorized_access_point": "Chelidonium majus"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4158266-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041582667", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4158266-4", "source": "GND"}], "variant_access_point": ["Chelidonium majus"], "authorized_access_point": "Großes Schöllkraut"} 1 +2024-09-11 09:10:38.802312 2024-09-11 09:10:38.802314 f503bc22-910d-41d7-99de-a6febb98481f {"md5": "e6ea1d2af781347887666ec9be2d996a", "pid": "041570170", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zelle"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134267150", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85052973", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85052973"}], "authorized_access_point": "Gametes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134267150", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12307257", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb123072575"}], "authorized_access_point": "Gamètes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254362177", "source": "GND"}, {"type": "bf:Nbn", "value": "30877", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/30877"}], "authorized_access_point": "Gameti"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125621535X", "source": "GND"}, {"type": "bf:Nbn", "value": "3185", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_3185"}], "authorized_access_point": "gametes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133659358X", "source": "GND"}, {"type": "bf:Nbn", "value": "D005854", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D005854"}], "authorized_access_point": "Germ Cells"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4157017-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041570170", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4157017-0", "source": "GND"}], "variant_access_point": ["Fortpflanzungszelle", "Geschlechtszelle", "Keimzelle", "Germ cell"], "authorized_access_point": "Gamet"} 1 +2024-09-11 09:10:38.850685 2024-09-11 09:10:38.850688 35948b41-fbad-432b-a719-7fe7cd455e22 {"md5": "ddf7232d0725ba99937c307444971c76", "pid": "041570103", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Stereotyp"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4157010-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041570103", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4157010-8", "source": "GND"}], "variant_access_point": ["Geschlechtsstereotyp", "Geschlechterrolle", "Geschlechterklischee"], "authorized_access_point": "Geschlechterstereotyp"} 1 +2024-09-11 09:10:38.898577 2024-09-11 09:10:38.89858 60abfa22-4c21-4f56-98a2-ec405dfec189 {"md5": "bd56660775d27b20580d5489e4b0969f", "pid": "041565568", "note": [{"label": ["Zusammengehörigkeitsgefühl einer Gruppe (Familie, Gemeinde, Staat), das sich als Handlungsbereitschaft zugunsten des Gemeinwohls äußert", "Für Gemeinsinn im Sinne des gesunden Menschenverstands verwende Commonsense"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Common Sense"}, {"authorized_access_point": "Gemeinwohl"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134032072", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85026301", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85026301"}], "authorized_access_point": "Civics"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134032072", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11973413", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11973413g"}], "authorized_access_point": "Civisme"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254341242", "source": "GND"}, {"type": "bf:Nbn", "value": "15328", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/15328"}], "authorized_access_point": "Educazione civica"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254433783", "source": "GND"}, {"type": "bf:Nbn", "value": "XX532612", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX532612"}], "authorized_access_point": "Civismo"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)983460760", "source": "GND"}, {"type": "bf:Nbn", "value": "10044951", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10044951"}], "authorized_access_point": "Gemeinsinn"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4156556-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041565568", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4156556-3", "source": "GND"}], "authorized_access_point": "Gemeinsinn"} 1 +2024-09-11 09:10:38.94936 2024-09-11 09:10:38.949363 37939108-a122-4c54-9aca-a5c4a46f9649 {"md5": "78cd14b2778063b973c7b3fd6e8ac911", "pid": "041563247", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Psychische Folter"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133910483", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85016371", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85016371"}], "authorized_access_point": "Brainwashing"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133910483", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11932235", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119322355"}], "authorized_access_point": "Lavage de cerveau"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254386882", "source": "GND"}, {"type": "bf:Nbn", "value": "54518", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/54518"}], "authorized_access_point": "Lavaggio del cervello"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254433295", "source": "GND"}, {"type": "bf:Nbn", "value": "XX535656", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX535656"}], "authorized_access_point": "Lavado de cerebro"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336052236", "source": "GND"}, {"type": "bf:Nbn", "value": "D000096965", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000096965"}], "authorized_access_point": "Brainwashing"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4156324-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041563247", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4156324-4", "source": "GND"}], "variant_access_point": ["Brainwashing", "Mentizid"], "authorized_access_point": "Gehirnwäsche"} 1 +2024-09-11 09:10:39.002468 2024-09-11 09:10:39.002471 5e4af7a1-ad17-4479-a728-c91e80842bc6 {"md5": "59500827ddd8f1210d7f50ac4d7c5c81", "pid": "041553128", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Freihandel"}], "related": [{"authorized_access_point": "Zollunion"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966749707", "source": "GND"}, {"type": "bf:Nbn", "value": "10612-5", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/10612-5"}], "authorized_access_point": "Freihandelsabkommen"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970551126", "source": "GND"}, {"type": "bf:Nbn", "value": "10041435", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10041435"}], "authorized_access_point": "Freihandelszone"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4155312-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041553128", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4155312-3", "source": "GND"}], "variant_access_point": ["Freihandelsgebiet"], "authorized_access_point": "Freihandelszone"} 1 +2024-09-11 09:10:39.055853 2024-09-11 09:10:39.055856 44a4a2f4-6ff1-4048-af33-202a65c41239 {"md5": "a3aebff71c6ebb938f0c80f3e2c9d516", "pid": "041544323", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Handwerk"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4154432-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041544323", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4154432-8", "source": "GND"}], "variant_access_point": ["Fingerhut", "Fingerhutherstellung"], "authorized_access_point": "Fingerhuthandwerk"} 1 +2024-09-11 09:10:39.103163 2024-09-11 09:10:39.103166 909d049a-10d4-4aa4-b65e-ead00c93587a {"md5": "f038ce30f415c408468b67e1069a9f79", "pid": "041542436", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zelle"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133663443", "source": "GND"}, {"type": "bf:Nbn", "value": "sh86006585", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh86006585"}], "authorized_access_point": "Fat cells"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133663443", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11964829", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119648290"}], "authorized_access_point": "Adipocytes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254378154", "source": "GND"}, {"type": "bf:Nbn", "value": "45155", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/45155"}], "authorized_access_point": "Cellule adipose"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336593458", "source": "GND"}, {"type": "bf:Nbn", "value": "D017667", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D017667"}], "authorized_access_point": "Adipocytes"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4154243-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041542436", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4154243-5", "source": "GND"}], "variant_access_point": ["Adipozyt", "Adipocyt"], "authorized_access_point": "Fettzelle"} 1 +2024-09-11 09:10:39.151394 2024-09-11 09:10:39.151397 346982a0-2d34-42e8-99eb-e1a0783d88f3 {"md5": "641e9903de4914107bffd910f36635d0", "pid": "041534646", "note": [{"label": ["Ausbildungsberuf DDR"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Transport- und Logistikberuf"}], "related": [{"authorized_access_point": "Fachkraft für Brief- und Frachtverkehr"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4153464-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041534646", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4153464-5", "source": "GND"}], "authorized_access_point": "Facharbeiter für Betrieb und Verkehr des Post- und Zeitungswesens"} 1 +2024-09-11 09:10:39.209313 2024-09-11 09:10:39.209318 f777bc13-69cf-4ef2-a589-3cd28f5a80c2 {"md5": "f9423ae3da5d6df2e161765b73eed7d6", "pid": "041531426", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zelle"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133723098", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85045546", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85045546"}], "authorized_access_point": "Eukaryotic cells"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133723098", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12120745", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12120745x"}], "authorized_access_point": "Cellules eucaryotes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254365168", "source": "GND"}, {"type": "bf:Nbn", "value": "33108", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/33108"}], "authorized_access_point": "Cellule eucariotiche"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254426426", "source": "GND"}, {"type": "bf:Nbn", "value": "XX4865884", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX4865884"}], "authorized_access_point": "Células eucariotas"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336593288", "source": "GND"}, {"type": "bf:Nbn", "value": "D005057", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D005057"}], "authorized_access_point": "Eukaryotic Cells"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4153142-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041531426", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4153142-5", "source": "GND"}], "variant_access_point": ["Eukaryotische Zelle"], "authorized_access_point": "Eukaryontische Zelle"} 1 +2024-09-11 09:10:39.284894 2024-09-11 09:10:39.284898 d759fcad-196c-4d1e-9547-d7201638eabf {"md5": "db7536993b44f52aa435e20be558c865", "pid": "04152697X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Raffinerie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133976077", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85100456", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85100456"}], "authorized_access_point": "Petroleum refineries"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133976077", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11951091", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119510918"}], "authorized_access_point": "Pétrole - Raffineries"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254425543", "source": "GND"}, {"type": "bf:Nbn", "value": "XX526288", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX526288"}], "authorized_access_point": "Refinerías de petróleo"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966734238", "source": "GND"}, {"type": "bf:Nbn", "value": "19427-4", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/19427-4"}], "authorized_access_point": "Erdölraffinerie"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4152697-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04152697X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4152697-1", "source": "GND"}], "variant_access_point": ["Ölraffinerie"], "authorized_access_point": "Erdölraffinerie"} 1 +2024-09-11 09:10:39.359321 2024-09-11 09:10:39.359329 8196e110-a84c-4b08-9e62-b989acea325b {"md5": "79b1f109e301f9035b3421035a02ecf9", "pid": "041523393", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zelle"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133659313X", "source": "GND"}, {"type": "bf:Nbn", "value": "D004759", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D004759"}], "authorized_access_point": "Enterochromaffin Cells"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4152339-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041523393", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4152339-8", "source": "GND"}], "variant_access_point": ["Ciaccio-Zelle", "Kultschitsky-Zelle", "Schmidt-Zelle"], "authorized_access_point": "Enterochromaffine Zelle"} 1 +2024-09-11 09:10:39.429949 2024-09-11 09:10:39.429957 03bb2b98-a8a0-449a-a53f-d4ebf5cd7d18 {"md5": "a5aa1879cbb83035e8a163ff31a6f8b9", "pid": "041523318", "note": [{"label": ["Gegner der Mittelmächte im 1.Weltkrieg"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Erster Weltkrieg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4152331-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041523318", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4152331-3", "source": "GND"}], "authorized_access_point": "Entente"} 1 +2024-09-11 09:10:39.536348 2024-09-11 09:10:39.536353 507d5523-4c9a-45ec-9b48-1cde52e4e5d2 {"md5": "a8de6cd42799d8bbe49f5b5ebcea024d", "pid": "041518160", "note": [{"label": ["Ausbildungsberuf. Beruf im Elektrohandwerk bis zum 1. August 2004 .Die Berufsbezeichnung wurde durch Elektroniker - Fachrichtung Energie- und Gebäudetechnik ersetzt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Handwerklicher Elektroberuf"}], "related": [{"authorized_access_point": "Elektriker"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113452689X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85042064", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85042064"}], "authorized_access_point": "Electricians"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113452689X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11954085", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119540852"}], "authorized_access_point": "Électriciens"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4151816-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041518160", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4151816-0", "source": "GND"}], "variant_access_point": ["Elektromonteur"], "authorized_access_point": "Elektroinstallateur"} 1 +2024-09-11 09:10:39.60156 2024-09-11 09:10:39.601566 55b806ef-e37a-4926-9d6a-132cc59e6c49 {"md5": "a3c6e24c4705ef9596f0b84d9d824b9e", "pid": "041516613", "note": [{"label": ["Für die Personifikation der Kirche und begriffsgeschichtliche Untersuchungen", "Ansonsten benutze SW Kirche, für die Kunst SW s Ekklesia und Synagoge (daneben p Synagoge !), für die altgriech. Ekklesia in Athen SW Athen / Volksversammlung", "Ohne HZ Motiv"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}, {"authorized_access_point": "Fiktive Gestalt"}], "related": [{"authorized_access_point": "Kirche"}, {"authorized_access_point": "Ekklesia und Synagoge"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4151661-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041516613", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4151661-8", "source": "GND"}], "variant_access_point": ["Ecclesia (Personifikation)", "Ekklesia (Personifikation)"], "authorized_access_point": "Ekklesia"} 1 +2024-09-11 09:10:39.691551 2024-09-11 09:10:39.691555 fe030418-c6e9-45b2-bfc2-d10a1eddb6b9 {"md5": "e4506c1b5765cbb28303f7ffd3be2164", "pid": "041515420", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Hüttenwerk"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133705723", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85068240", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85068240"}], "authorized_access_point": "Iron-works"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133705723", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12010434", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb120104342"}], "authorized_access_point": "Usines sidérurgiques"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4151542-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041515420", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4151542-0", "source": "GND"}], "variant_access_point": ["Eisenhütte"], "authorized_access_point": "Eisenhüttenwerk"} 1 +2024-09-11 09:10:39.770234 2024-09-11 09:10:39.770238 e1bbcc15-0d5c-406f-b13c-49c1907e157e {"md5": "0ec20764eee05410d65ab1b5988a8502", "pid": "041512820", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Umsatzsteuer"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4151282-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041512820", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4151282-0", "source": "GND"}], "authorized_access_point": "Einfuhrumsatzsteuer"} 1 +2024-09-11 09:10:39.839518 2024-09-11 09:10:39.839526 54f8e17d-6e3b-4058-a055-b05c285ff9b0 {"md5": "7354ab30ddb7339afd83db94d29a65dd", "pid": "041509412", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gebissanomalie"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4150941-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041509412", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4150941-9", "source": "GND"}], "variant_access_point": ["Fehlbiss", "Kieferfehlstellung", "Zahnfehlstellung"], "authorized_access_point": "Dysgnathie"} 1 +2024-09-11 09:10:39.910391 2024-09-11 09:10:39.9104 5c1a1329-20b4-45ba-a0c7-8a75548024eb {"md5": "81d8cb7637e709932031200e852f72c1", "pid": "041505336", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4150533-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041505336", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4150533-5", "source": "GND"}], "authorized_access_point": "Drahtweberei"} 1 +2024-09-11 09:10:39.980531 2024-09-11 09:10:39.98054 59f9491e-abe8-47f8-bc8b-04dda3e087f1 {"md5": "fc8c497994c2e83176c530df7451180d", "pid": "041505077", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Dozentin"}, {"authorized_access_point": "Lehrer"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4150507-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041505077", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4150507-4", "source": "GND"}], "authorized_access_point": "Dozent"} 1 +2024-09-11 09:10:40.046416 2024-09-11 09:10:40.04642 a5e981fd-1691-4a2c-8323-e6838253c57f {"md5": "9aa8c9e4a677991de9febce3aec82345", "pid": "04150335X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4150335-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04150335X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4150335-1", "source": "GND"}], "authorized_access_point": "DMS 77"} 1 +2024-09-11 09:10:40.095616 2024-09-11 09:10:40.095619 b0ab1e60-5b81-40d4-bbb3-0e50654bd02e {"md5": "03f143bf68cd8c52f238718dd0772578", "pid": "041502264", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gebissanomalie"}, {"authorized_access_point": "Okklusionsstörung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4150226-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041502264", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4150226-7", "source": "GND"}], "variant_access_point": ["Distalbisslage", "Rückbiss"], "authorized_access_point": "Distalbiss"} 1 +2024-09-11 09:10:40.216793 2024-09-11 09:10:40.216796 9942a7b2-4349-449c-89b5-dbe4917aba3b {"md5": "2d4b5c3a2d1e8c7cac24c1ec7a601a6c", "pid": "041477936", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133691196", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85024536", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85024536"}], "authorized_access_point": "Chlorides"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133691196", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11980514", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11980514k"}], "authorized_access_point": "Chlorures"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125436451X", "source": "GND"}, {"type": "bf:Nbn", "value": "32686", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/32686"}], "authorized_access_point": "Cloruri"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254416927", "source": "GND"}, {"type": "bf:Nbn", "value": "XX4724682", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX4724682"}], "authorized_access_point": "Cloruros"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336148934", "source": "GND"}, {"type": "bf:Nbn", "value": "D002712", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D002712"}], "authorized_access_point": "Chlorides"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4147793-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041477936", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4147793-5", "source": "GND"}], "authorized_access_point": "Chloride"} 1 +2024-09-11 09:10:40.271029 2024-09-11 09:10:40.271033 2d8d9a7f-3f58-4fae-b8dc-56508f9c7f56 {"md5": "12c4b8cc06a7dc33c16b512c21607fe0", "pid": "041470966", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zelle"}, {"authorized_access_point": "Langerhans-Inseln"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134611005", "source": "GND"}, {"type": "bf:Nbn", "value": "sh89006279", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh89006279"}], "authorized_access_point": "Pancreatic beta cells"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134611005", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15054295", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15054295x"}], "authorized_access_point": "Cellules bêta"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336592893", "source": "GND"}, {"type": "bf:Nbn", "value": "D050417", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D050417"}], "authorized_access_point": "Insulin-Secreting Cells"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4147096-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041470966", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4147096-5", "source": "GND"}], "variant_access_point": ["Beta-Zelle (Bauchspeicheldrüse)"], "authorized_access_point": "B-Zelle"} 1 +2024-09-11 09:10:40.333914 2024-09-11 09:10:40.333919 4c691f0e-0e05-4222-bd97-fef470613a64 {"md5": "f001c6e8d2693eddbbf1768616e152f4", "pid": "041470044", "note": [{"label": ["Sofern unterirdische Anlage verknüpfe ggf. mit Unterirdisches Bauwerk"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Schutzbau"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134839286", "source": "GND"}, {"type": "bf:Nbn", "value": "sh97000842", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh97000842"}], "authorized_access_point": "Bunkers (Fortification)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134839286", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF15517575", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb15517575w"}], "authorized_access_point": "Casemates"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125620028X", "source": "GND"}, {"type": "bf:Nbn", "value": "907", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_907"}], "authorized_access_point": "bins"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4147004-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041470044", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4147004-7", "source": "GND"}], "variant_access_point": ["Schutzbunker", "Luftschutzbunker"], "authorized_access_point": "Bunker"} 1 +2024-09-11 09:10:40.400401 2024-09-11 09:10:40.400404 b2fc71c2-6f06-4f2c-acea-bfd9ad4e3ce1 {"md5": "6d244747af97edfcb613907d8310d618", "pid": "04146768X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Mamma"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4146768-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04146768X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4146768-1", "source": "GND"}], "variant_access_point": ["Papilla mammae", "Mamillae"], "authorized_access_point": "Brustwarze"} 1 +2024-09-11 09:10:40.468994 2024-09-11 09:10:40.468998 888300b6-36bd-4313-8443-2cc93a78bb84 {"md5": "1e6c180443a55fd945e39cce1d1b0d80", "pid": "041467612", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Milchdrüsenkrankheit"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133820808", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12521464", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb125214649"}], "authorized_access_point": "Mammite"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241594635", "source": "GND"}, {"type": "bf:Nbn", "value": "D008413", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D008413"}], "authorized_access_point": "Mastitis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4146761-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041467612", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4146761-9", "source": "GND"}], "variant_access_point": ["Mastitis"], "authorized_access_point": "Brustdrüsenentzündung"} 1 +2024-09-11 09:10:40.860374 2024-09-11 09:10:40.860378 6721cbc0-1630-4e92-a0b7-6823f4290761 {"md5": "f859d952dac6801f097e70f35a070fe0", "pid": "041446186", "note": [{"label": ["Bereitschaftsdienst liegt vor, wenn sich der Arbeitnehmer, ohne dass von ihm wache Aufmerksamkeit gefordert wird, für Zwecke des Betriebs an einer vom Arbeitgeber bestimmten Stelle innerhalb oder außerhalb des Betriebs aufzuhalten hat, damit er erforderlichenfalls seine volle Arbeitstätigkeit unverzüglich aufnehmen kann.", "Verknüpfe mit jeweiliger Berufsgruppe bzw. Institution"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4144618-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041446186", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4144618-5", "source": "GND"}], "variant_access_point": ["Dienstbereitschaft"], "authorized_access_point": "Bereitschaftsdienst"} 1 +2024-09-11 09:10:40.529917 2024-09-11 09:10:40.52992 6c65372f-4198-405f-a6b8-e2b478bb699c {"md5": "30743f6a86b7d0767b73d4c0e28265ba", "pid": "041466578", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134237138", "source": "GND"}, {"type": "bf:Nbn", "value": "sh90006056", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh90006056"}], "authorized_access_point": "Bromine compounds"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134237138", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12258979", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12258979h"}], "authorized_access_point": "Brome - Composés"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254414592", "source": "GND"}, {"type": "bf:Nbn", "value": "XX4577821", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX4577821"}], "authorized_access_point": "Bromo - Compuestos"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336148985", "source": "GND"}, {"type": "bf:Nbn", "value": "D017605", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D017605"}], "authorized_access_point": "Bromine Compounds"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4146657-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041466578", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4146657-3", "source": "GND"}], "authorized_access_point": "Bromverbindungen"} 1 +2024-09-11 09:10:40.57799 2024-09-11 09:10:40.577993 68f5392d-387b-4721-adb6-6e549cdfe935 {"md5": "4223734c1bb37fd630d54df46aabaad3", "pid": "041466365", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bromverbindungen"}, {"authorized_access_point": "Chloride"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4146636-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041466365", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4146636-6", "source": "GND"}], "authorized_access_point": "Bromchlorid"} 1 +2024-09-11 09:10:40.64966 2024-09-11 09:10:40.649665 3c75a14c-b42f-4962-9bb1-bcb2702ee970 {"md5": "1c5216afb44143ea3c1145f0043522d1", "pid": "041463692", "note": [{"label": ["B(OH)3"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Borverbindungen"}, {"authorized_access_point": "Säure"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133850944", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85015848", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85015848"}], "authorized_access_point": "Boric acid"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133850944", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13332324", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb133323241"}], "authorized_access_point": "Acide borique"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254349669", "source": "GND"}, {"type": "bf:Nbn", "value": "21199", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/21199"}], "authorized_access_point": "Acido borico"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336148675", "source": "GND"}, {"type": "bf:Nbn", "value": "D001888", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D001888"}], "authorized_access_point": "Boric Acids"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4146369-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041463692", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4146369-9", "source": "GND"}], "authorized_access_point": "Borsäure"} 1 +2024-09-11 09:10:40.718729 2024-09-11 09:10:40.718734 51b43367-2e89-4636-818b-df4a7fe0dea3 {"md5": "0b59368107626373db7c8472ab43dc7a", "pid": "041450809", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Betroffenheit&oldid=218691521"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)97053891X", "source": "GND"}, {"type": "bf:Nbn", "value": "10039038", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10039038"}], "authorized_access_point": "Betroffenheit"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4145080-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041450809", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4145080-2", "source": "GND"}], "authorized_access_point": "Betroffenheit"} 1 +2024-09-11 09:10:40.795985 2024-09-11 09:10:40.795988 a8576dc7-d207-453b-b3a8-cf9ffbf6d835 {"md5": "c19799e7d1475739bdcc37bdbce5aaa3", "pid": "041450469", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Unternehmensgröße"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334901856", "source": "GND"}, {"type": "bf:Nbn", "value": "sh99006010", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh99006010"}], "authorized_access_point": "Business enterprises--Size"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334901856", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF119783916", "source": "BNF"}, {"type": "uri", "value": "https://catalogue.bnf.fr/ark:/12148/cb119783916"}], "authorized_access_point": "Entreprises -- Dimension"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966703731", "source": "GND"}, {"type": "bf:Nbn", "value": "12038-1", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/12038-1"}], "authorized_access_point": "Betriebsgröße"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970538650", "source": "GND"}, {"type": "bf:Nbn", "value": "10038936", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10038936"}], "authorized_access_point": "Betriebsgröße"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4145046-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041450469", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4145046-2", "source": "GND"}], "variant_access_point": ["Betrieb"], "authorized_access_point": "Betriebsgröße"} 1 +2024-09-11 09:10:40.929756 2024-09-11 09:10:40.92976 b73a89e0-62f8-4bcf-8af6-80335997a144 {"md5": "8d96baa97f2428701b1c7009bb79fbed", "pid": "041444280", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zelle"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336590092", "source": "GND"}, {"type": "bf:Nbn", "value": "D010295", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D010295"}], "authorized_access_point": "Parietal Cells, Gastric"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4144428-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041444280", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4144428-0", "source": "GND"}], "variant_access_point": ["Parietalzelle"], "authorized_access_point": "Belegzelle"} 1 +2024-09-11 09:10:40.993638 2024-09-11 09:10:40.993643 e3f0f453-3e48-4ada-9659-4bc4cbd41e62 {"md5": "57e665f44d3254ab1c914aaeb8800a3e", "pid": "041439902", "note": [{"label": ["Traditionelles Handwerk, bei dem aus Weidengehölz Reifen für die Ummantelung von Holzfässern hergestellt wurden."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4143990-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041439902", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4143990-9", "source": "GND"}], "authorized_access_point": "Bandreißer"} 1 +2024-09-11 09:10:41.065985 2024-09-11 09:10:41.065989 2d80dac0-c763-4bb1-a2b1-cd7fda89c0a6 {"md5": "8b7411548ff0f61b0c30d67016d2b969", "pid": "04143823X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134277539", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85010652", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85010652"}], "authorized_access_point": "Azo compounds"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134277539", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12327858", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12327858k"}], "authorized_access_point": "Composés azoïques"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125436367X", "source": "GND"}, {"type": "bf:Nbn", "value": "31880", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/31880"}], "authorized_access_point": "Azocomposti"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336148179", "source": "GND"}, {"type": "bf:Nbn", "value": "D001391", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D001391"}], "authorized_access_point": "Azo Compounds"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4143823-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04143823X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4143823-1", "source": "GND"}], "variant_access_point": ["Diazene"], "authorized_access_point": "Azoverbindungen"} 1 +2024-09-11 09:10:41.134242 2024-09-11 09:10:41.134247 b648090d-cf3f-4f38-a232-8854ce365dea {"md5": "829b6cc1c0ab5c8489b02bcc99c980e7", "pid": "041437896", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134250118", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85010647", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85010647"}], "authorized_access_point": "Azides"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134250118", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12269660", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12269660q"}], "authorized_access_point": "Azides"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254363505", "source": "GND"}, {"type": "bf:Nbn", "value": "31774", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/31774"}], "authorized_access_point": "Azidi"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336148233", "source": "GND"}, {"type": "bf:Nbn", "value": "D001386", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D001386"}], "authorized_access_point": "Azides"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4143789-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041437896", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4143789-5", "source": "GND"}], "authorized_access_point": "Azide"} 1 +2024-09-11 09:10:41.199329 2024-09-11 09:10:41.199332 c4e4f53a-71fb-4f80-9ad7-a14b550da2f0 {"md5": "fa534435bcd6a0f8c85b51a8282f949c", "pid": "041431049", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133733697", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85007453", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85007453"}], "authorized_access_point": "Arsenic compounds"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133733697", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12204254", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb122042547"}], "authorized_access_point": "Arsenic - Composés"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254406646", "source": "GND"}, {"type": "bf:Nbn", "value": "XX4578267", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX4578267"}], "authorized_access_point": "Arsénico - Compuestos"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4143104-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041431049", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4143104-2", "source": "GND"}], "authorized_access_point": "Arsenverbindungen"} 1 +2024-09-11 09:10:41.256441 2024-09-11 09:10:41.256444 aa741e34-cd45-4fd8-9dd4-3064ab459cbd {"md5": "957451aa1e49384d0dd8be0bd5ca012d", "pid": "04143028X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tanz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4143028-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04143028X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4143028-1", "source": "GND"}], "authorized_access_point": "Française"} 1 +2024-09-11 09:10:42.038023 2024-09-11 09:10:42.038028 89968ccf-0f8b-427a-b04a-c02a950661a3 {"md5": "e29257f99731ea3cd9d5898e120fa96c", "pid": "041388984", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4138898-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041388984", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4138898-7", "source": "GND"}], "variant_access_point": ["Ersatzsicherheit"], "authorized_access_point": "Ersatzdeckung"} 1 +2024-09-11 09:10:41.441847 2024-09-11 09:10:41.441851 988ec0f8-a478-4e63-9d68-00cd9ca212c4 {"md5": "4b066d09be11ccd41e42cae5704bcbae", "pid": "041424573", "note": [{"label": ["In Frankreich nach 1700 aus der Écossaise hervorgegangener höf. Tanz im schnellen 3/4-Takt"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Contredanse"}, {"authorized_access_point": "Française"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134818203", "source": "GND"}, {"type": "bf:Nbn", "value": "sh95008970", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh95008970"}], "authorized_access_point": "Anglaise (Dance)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4142457-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041424573", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4142457-8", "source": "GND"}], "variant_access_point": ["Inglesa"], "authorized_access_point": "Anglaise"} 1 +2024-09-11 09:10:41.506701 2024-09-11 09:10:41.506709 480bad24-46d4-4ac1-b19b-8d40c1b3890a {"md5": "7dee49491a9e8d28ab830d597ce0da56", "pid": "041424492", "note": [{"label": ["Gefässentwicklung im adulten Organismus"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Antiangiogenese"}, {"authorized_access_point": "Vaskularisation"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133719600", "source": "GND"}, {"type": "bf:Nbn", "value": "sh87002299", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh87002299"}], "authorized_access_point": "Neovascularization"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133719600", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12098723", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12098723t"}], "authorized_access_point": "Néovascularisation"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254390871", "source": "GND"}, {"type": "bf:Nbn", "value": "60283", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/60283"}], "authorized_access_point": "Angiogenesi"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254404511", "source": "GND"}, {"type": "bf:Nbn", "value": "XX554911", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX554911"}], "authorized_access_point": "Neovascularización"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336025522", "source": "GND"}, {"type": "bf:Nbn", "value": "D000096482", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000096482"}], "authorized_access_point": "Angiogenesis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4142449-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041424492", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4142449-9", "source": "GND"}], "variant_access_point": ["Gefäßentwicklung"], "authorized_access_point": "Angiogenese"} 1 +2024-09-11 09:10:41.56227 2024-09-11 09:10:41.562273 04020e90-3da7-462c-99af-52112b235a4b {"md5": "1f7bdcad04ced6d31e08a21257baefda", "pid": "041422260", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133649602", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85004547", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85004547"}], "authorized_access_point": "Ammonium compounds"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133789382", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85004546", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85004546"}], "authorized_access_point": "Ammonium"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133789382", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12406920", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12406920p"}], "authorized_access_point": "Ammonium"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133649602", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11952913", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119529136"}], "authorized_access_point": "Ammonium - Composés"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254362606", "source": "GND"}, {"type": "bf:Nbn", "value": "31172", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/31172"}], "authorized_access_point": "Ammonio"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254403965", "source": "GND"}, {"type": "bf:Nbn", "value": "XX532312", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX532312"}], "authorized_access_point": "Amonio"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336148284", "source": "GND"}, {"type": "bf:Nbn", "value": "D064751", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D064751"}], "authorized_access_point": "Ammonium Compounds"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4142226-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041422260", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4142226-0", "source": "GND"}], "variant_access_point": ["Ammoniumsalze", "Ammoniumion", "Ammonium"], "authorized_access_point": "Ammoniumverbindungen"} 1 +2024-09-11 09:10:41.617222 2024-09-11 09:10:41.617227 769cd197-2f3e-49d4-a814-0271a51b1a55 {"md5": "0546782f0101dcf34e2a0b782231e149", "pid": "041422058", "note": [{"label": ["Benutzt sowohl für die natürlich vorkommenden α-Aminosäuren als auch als OB für alle Aminosäuren, da man i.d.R. die α-Aminosäuren meint, wenn man von Aminosäuren spricht."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113395720X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85004486", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85004486"}], "authorized_access_point": "Amino acids"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113395720X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11944322", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11944322s"}], "authorized_access_point": "Acides aminés"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125431508X", "source": "GND"}, {"type": "bf:Nbn", "value": "49", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/49"}], "authorized_access_point": "Aminoacidi"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254403892", "source": "GND"}, {"type": "bf:Nbn", "value": "XX525009", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX525009"}], "authorized_access_point": "Aminoácidos"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336147237", "source": "GND"}, {"type": "bf:Nbn", "value": "D000596", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000596"}], "authorized_access_point": "Amino Acids"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4142205-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041422058", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4142205-3", "source": "GND"}], "variant_access_point": ["Aminosäuren (alpha-)", "Aminocarbonsäuren", "Aminosäure", "Aminosäuren (L-)", "Aminosäuren (D-)"], "authorized_access_point": "Aminosäuren"} 1 +2024-09-11 09:10:41.681648 2024-09-11 09:10:41.681652 d4e2c301-3872-4cde-a9f8-cc37acb5da0f {"md5": "d60064c65fe08b9b651fc9648d0f8a65", "pid": "041419677", "note": [{"label": ["Eine Allgemeinverfügung ist ein Verwaltungsakt, der sich an einen nach allgemeinen Merkmalen bestimmten oder bestimmbaren Personenkreis richtet oder die öffentlich-rechtliche Eigenschaft einer Sache oder ihre Benutzung durch die Allgemeinheit betrifft."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Verwaltungsakt"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4141967-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041419677", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4141967-4", "source": "GND"}], "authorized_access_point": "Allgemeinverfügung"} 1 +2024-09-11 09:10:41.746924 2024-09-11 09:10:41.746929 dc3e2c91-8ed7-4e7e-9583-c2cce2d5c03d {"md5": "df8c0a6b54f068ff890d362b5db5eee1", "pid": "041411137", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Feuchtigkeit"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4141113-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041411137", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4141113-4", "source": "GND"}], "authorized_access_point": "Absolute Feuchtigkeit"} 1 +2024-09-11 09:10:41.824043 2024-09-11 09:10:41.824046 f7bd06b4-73fb-4cfb-b0da-f5284e516317 {"md5": "9d000102b9cd0048a9217583b720918d", "pid": "041409965", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4140996-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041409965", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4140996-6", "source": "GND"}], "variant_access_point": ["Abelsche Erweiterung von Körpern", "Kommutativer Körper"], "authorized_access_point": "Abelscher Körper"} 1 +2024-09-11 09:10:41.886949 2024-09-11 09:10:41.886952 5a20b6a5-bfb8-455d-8f55-54e2dce329d5 {"md5": "a0c36f6a8cd099f964221a953e7aa5b8", "pid": "041409760", "note": [{"label": ["Bildqualitätsmerkmal, mit der die Übereinstimmung zwischen Bild- und Objektgeometrie bewertet wird."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4140976-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041409760", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4140976-0", "source": "GND"}], "authorized_access_point": "Abbildungstreue"} 1 +2024-09-11 09:10:42.216582 2024-09-11 09:10:42.216585 b7168fc9-cfe8-4608-a473-6ddf7ec21532 {"md5": "a7af7468f0c8bef119784686c8fb6522", "pid": "041369785", "note": [{"label": ["Benutzt im Sinne von Bekleidung für eine Rolle (z.B. Filmausstattung); ggf. wird ein engeres Schlagwort verwendet, z.B. Theaterkostüm; nicht benutzt im Sinne der Kostümkunde, verwende hierfür Kleidung oder Tracht bzw. ein engeres Schlagwort wie z.B. Hofkleidung, Standestracht usw."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Verkleidung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4136978-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041369785", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4136978-6", "source": "GND"}], "authorized_access_point": "Kostüm"} 1 +2024-09-11 09:10:42.263234 2024-09-11 09:10:42.263236 7425f262-c2d4-4f60-a235-f8c010555e3f {"md5": "5c4e9721e008b9954df2411c1cf7711a", "pid": "041368517", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Frühwarnsystem"}, {"authorized_access_point": "Unternehmen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4136851-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041368517", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4136851-4", "source": "GND"}], "authorized_access_point": "FES (Programm)"} 1 +2024-09-11 09:10:42.325929 2024-09-11 09:10:42.325935 57c93715-441f-449a-a5ac-2ec2124e395b {"md5": "c64acf095edc59fc90485a5284cc8dfb", "pid": "041366352", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256213128", "source": "GND"}, {"type": "bf:Nbn", "value": "4679", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_4679"}], "authorized_access_point": "meat production"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4136635-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041366352", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4136635-9", "source": "GND"}], "variant_access_point": ["Fleischerzeugung", "Fleisch"], "authorized_access_point": "Fleischproduktion"} 1 +2024-09-11 09:10:42.383696 2024-09-11 09:10:42.3837 f44ceb66-7507-4002-a525-3766cecf7e10 {"md5": "f8b8091cfa2d097ce9eb25cd6d77ea33", "pid": "041365844", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Gesundheitsfürsorge"}, {"authorized_access_point": "Präventivmedizin"}, {"authorized_access_point": "Prävention"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134497970", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85083162", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85083162"}], "authorized_access_point": "Medicine, Preventive"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134497970", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11932340", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119323401"}], "authorized_access_point": "Médecine préventive"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966764102", "source": "GND"}, {"type": "bf:Nbn", "value": "18892-3", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/18892-3"}], "authorized_access_point": "Gesundheitsvorsorge"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970554370", "source": "GND"}, {"type": "bf:Nbn", "value": "10045507", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10045507"}], "authorized_access_point": "Gesundheitsvorsorge"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4136584-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041365844", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4136584-7", "source": "GND"}], "variant_access_point": ["Gesundheitsprävention"], "authorized_access_point": "Gesundheitsvorsorge"} 1 +2024-09-11 09:10:42.43593 2024-09-11 09:10:42.435933 51037f93-a46f-44f2-9cd2-d5cc36204e0f {"md5": "181e764ab59af72e2cf9b4062e5622d8", "pid": "041354710", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Handlung"}], "related": [{"authorized_access_point": "Affekt"}, {"authorized_access_point": "Affekttat"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4135471-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041354710", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4135471-0", "source": "GND"}], "authorized_access_point": "Affekthandlung"} 1 +2024-09-11 09:10:42.490219 2024-09-11 09:10:42.490223 dac3ccd5-b91d-4ed0-a4c5-0348b0558fc5 {"md5": "63334d969db525e01f9bc3a7f3d0ddc3", "pid": "041345835", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ladungssicherung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4134583-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041345835", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4134583-6", "source": "GND"}], "variant_access_point": ["Niederzurren", "Festzurren"], "authorized_access_point": "Zurren"} 1 +2024-09-11 09:10:42.54618 2024-09-11 09:10:42.546184 af6f36eb-3367-439b-ac04-e8ac9143a632 {"md5": "8b86e6d7730b32e3572f6a969cc1930f", "pid": "04134166X", "note": [{"label": ["Internet Stand: 17.02.2020 - http://www.wirtschaftslexikon24.com/e/sanierungspr%C3%BCfung/sanierungspr%C3%BCfung.htm"], "noteType": "dataSource"}, {"label": ["Sanierungsbedürftigkeitsprüfung, Sanierungsfähigkeitsprüfung, Sanierungswürdigkeitsprüfung"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4134166-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04134166X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4134166-1", "source": "GND"}], "authorized_access_point": "Sanierungsprüfung"} 1 +2024-09-11 09:10:42.602849 2024-09-11 09:10:42.602856 697b618f-7dcb-49b2-8d99-5b6ec9d9278b {"md5": "bbac97812ab15f707e32546c04e79a2b", "pid": "041340892", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Statistik"}], "related": [{"authorized_access_point": "Arbeitsmarkt"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4134089-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041340892", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4134089-9", "source": "GND"}], "authorized_access_point": "Arbeitslosenstatistik"} 1 +2024-09-11 09:10:42.66846 2024-09-11 09:10:42.668464 93cb6b6d-134b-4195-9521-d898a2364f74 {"md5": "b07ac797b63117cfb3d1ac616e92aa21", "pid": "041333004", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Alemannisch"}, {"authorized_access_point": "Schweizerdeutsch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4133300-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041333004", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4133300-7", "source": "GND"}], "authorized_access_point": "Höchstalemannisch"} 1 +2024-09-11 09:10:42.726529 2024-09-11 09:10:42.726532 064b702d-8d9b-4a6f-86bd-01512779b312 {"md5": "abc73512dee4671826f04b7f275d7993", "pid": "041332997", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Alemannisch"}, {"authorized_access_point": "Schweizerdeutsch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4133299-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041332997", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4133299-4", "source": "GND"}], "authorized_access_point": "Hochalemannisch"} 1 +2024-09-11 09:10:42.790243 2024-09-11 09:10:42.790246 ea52e007-8cfd-41a9-879d-61939f87160f {"md5": "c6750e5fdd88e5d5935ca511cffb0321", "pid": "041332237", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Installateurhandwerk"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133619509", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85103551", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85103551"}], "authorized_access_point": "Plumbing"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133619509", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11933155", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11933155r"}], "authorized_access_point": "Plomberie"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966801873", "source": "GND"}, {"type": "bf:Nbn", "value": "13185-4", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/13185-4"}], "authorized_access_point": "Klempnerhandwerk"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4133223-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041332237", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4133223-4", "source": "GND"}], "authorized_access_point": "Klempnerhandwerk"} 1 +2024-09-11 09:10:42.852001 2024-09-11 09:10:42.852009 ca92802b-564e-4e27-b73d-8f6f9dbd1ad2 {"md5": "1fdf6c24a5ff4e1a0480f00db44e54d4", "pid": "041326202", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Niveaufläche"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4132620-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041326202", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4132620-9", "source": "GND"}], "authorized_access_point": "Dreißig-Millibar-Fläche"} 1 +2024-09-11 09:10:42.923177 2024-09-11 09:10:42.923181 90a450c9-4951-4e9d-9765-44dad6d71566 {"md5": "989e47b1970eea7977622d474e27e319", "pid": "041325710", "note": [{"label": ["Offizieller Besuch des Trägers der kirchlichen Jurisdiktion in seinem Jurisdiktionsbezirk zum Zwecke der kirchlichen Aufsicht \\"vor Ort\\""], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kirchenrecht"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4132571-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041325710", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4132571-0", "source": "GND"}], "variant_access_point": ["Kanonische Visitation", "Kirchenvisitation"], "authorized_access_point": "Visitation"} 1 +2024-09-11 09:10:42.993187 2024-09-11 09:10:42.993192 b8e07b58-3cc6-4ec1-9fed-b43bf01ee11f {"md5": "4bc778c9b61daf625742494af9057832", "pid": "04132305X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Geografie"}, {"authorized_access_point": "Historische Geologie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133960545", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85097061", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85097061"}], "authorized_access_point": "Paleogeography"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133960545", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11945801", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11945801f"}], "authorized_access_point": "Paléogéographie"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254370803", "source": "GND"}, {"type": "bf:Nbn", "value": "37702", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/37702"}], "authorized_access_point": "Paleogeografia"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254470395", "source": "GND"}, {"type": "bf:Nbn", "value": "XX531420", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX531420"}], "authorized_access_point": "Paleogeografía"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4132305-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04132305X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4132305-1", "source": "GND"}], "variant_access_point": ["Paläogeographie"], "authorized_access_point": "Paläogeografie"} 1 +2024-09-11 09:10:43.0613 2024-09-11 09:10:43.061303 9ab30dae-d496-4586-b2bd-c5ee9fcea036 {"md5": "399dbdf450c60d9ff14b8bca1b865da4", "pid": "041322886", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Epischer Kyklos"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134548559", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2001000063", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2001000063"}], "authorized_access_point": "Troy (Extinct city) - Legends"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254496750", "source": "GND"}, {"type": "bf:Nbn", "value": "XX5219319", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX5219319"}], "authorized_access_point": "Troya (Ciudad desaparecida) - Leyendas"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4132288-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041322886", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4132288-5", "source": "GND"}], "variant_access_point": ["Troischer Sagenkreis", "Trojasage"], "authorized_access_point": "Trojanischer Sagenkreis"} 1 +2024-09-11 09:10:43.113525 2024-09-11 09:10:43.113529 bf17f80c-f894-4375-b0ec-681c8265ce1d {"md5": "1103a2308ed14155012a7469f657d909", "pid": "041319125", "note": [{"label": ["Vielfalt der Arten in einem Biom"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Biodiversität"}], "related": [{"authorized_access_point": "Artensterben"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133775853", "source": "GND"}, {"type": "bf:Nbn", "value": "sh87005571", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh87005571"}], "authorized_access_point": "Species diversity"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133775853", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12336704", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12336704b"}], "authorized_access_point": "Diversité des espèces"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4131912-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041319125", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4131912-6", "source": "GND"}], "variant_access_point": ["Artenvielfalt", "Artenmannigfaltigkeit"], "authorized_access_point": "Artenreichtum"} 1 +2024-09-11 09:10:43.185805 2024-09-11 09:10:43.185809 93375f37-3ca8-479a-afee-0d7c6373f9aa {"md5": "06349153d7344d3dd5695b4e7f93ef15", "pid": "041317718", "note": [{"label": ["Gemalte Strukturierung eines Objekts in Marmorart (beispielsweise zur Verzierung von Papier, Buchschnitt oder Leder mit typischen Mustern)"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Malerei"}, {"authorized_access_point": "Muster (Dekor)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134528264", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85080958", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85080958"}], "authorized_access_point": "Marbling"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113454264X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85080959", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85080959"}], "authorized_access_point": "Marbling (Bookbinding)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113454264X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13319182", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13319182x"}], "authorized_access_point": "Marbrure (reliure)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254509968", "source": "GND"}, {"type": "bf:Nbn", "value": "XX5221003", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX5221003"}], "authorized_access_point": "Marmoleado"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4131771-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041317718", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4131771-3", "source": "GND"}], "variant_access_point": ["Marmormalerei"], "authorized_access_point": "Marmorierung"} 1 +2024-09-11 09:10:43.244844 2024-09-11 09:10:43.244847 e592fe7b-bfbd-46fd-bdb0-21c3b6d59885 {"md5": "edc059a66c715807cda14ef5139d2710", "pid": "041312368", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Mörtel"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134748019", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85057520", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85057520"}], "authorized_access_point": "Grout (Mortar)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134748019", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12337766", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb123377664"}], "authorized_access_point": "Mortier liquide"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4131236-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041312368", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4131236-3", "source": "GND"}], "authorized_access_point": "Zementmörtel"} 1 +2024-09-11 09:10:43.324042 2024-09-11 09:10:43.324047 489a13d7-753d-453d-9838-c5fd599891c8 {"md5": "20f92e09723a4130f61ac1d35c4b331b", "pid": "041308166", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Beratender Ingenieur"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134046170", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85043219", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85043219"}], "authorized_access_point": "Engineering firms"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134046170", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11977242", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11977242g"}], "authorized_access_point": "Sociétés d'ingénieurs-conseils"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966782615", "source": "GND"}, {"type": "bf:Nbn", "value": "13381-4", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/13381-4"}], "authorized_access_point": "Ingenieurbüro"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4130816-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041308166", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4130816-5", "source": "GND"}], "authorized_access_point": "Ingenieurbüro"} 1 +2024-09-11 09:10:43.393482 2024-09-11 09:10:43.39349 982db275-262c-4edd-bc82-70460e51507b {"md5": "46c1a89d16adf76b7deecb6711b050b6", "pid": "041308107", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Verfassungsmäßige Ordnung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4130810-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041308107", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4130810-4", "source": "GND"}], "variant_access_point": ["Staat", "Staatszielbestimmung", "Staatsziele"], "authorized_access_point": "Staatsziel"} 1 +2024-09-11 09:10:43.464215 2024-09-11 09:10:43.464223 77bebc5a-d87e-47d9-9174-bcd51d9d66f0 {"md5": "5360f8e4198808d6699abab1c3f4046a", "pid": "041303768", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Geldmenge"}, {"authorized_access_point": "Kreditschöpfung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334883556", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF17740301b", "source": "BNF"}, {"type": "uri", "value": "https://catalogue.bnf.fr/ark:/12148/cb17740301b"}], "authorized_access_point": "Création de monnaie"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966755669", "source": "GND"}, {"type": "bf:Nbn", "value": "11424-1", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/11424-1"}], "authorized_access_point": "Geldschöpfung"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970552912", "source": "GND"}, {"type": "bf:Nbn", "value": "10044841", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10044841"}], "authorized_access_point": "Geldschöpfung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4130376-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041303768", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4130376-3", "source": "GND"}], "variant_access_point": ["Geldschaffung"], "authorized_access_point": "Geldschöpfung"} 1 +2024-09-11 09:10:43.530935 2024-09-11 09:10:43.530939 257deb7b-0c55-43ec-b56b-535ae2156db4 {"md5": "2c19c88cc8bbc78d492d3bd7eb759315", "pid": "041299604", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zellwachstum"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133729088", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85021643", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85021643"}], "authorized_access_point": "Cell cycle"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113379047X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85102706", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85102706"}], "authorized_access_point": "Plant cell cycle"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113379047X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12412715", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12412715s"}], "authorized_access_point": "Cycle cellulaire végétal"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133729088", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12153911", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12153911h"}], "authorized_access_point": "Cycle cellulaire"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125627335X", "source": "GND"}, {"type": "bf:Nbn", "value": "37218", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_37218"}], "authorized_access_point": "cell cycle"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336586133", "source": "GND"}, {"type": "bf:Nbn", "value": "D002453", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D002453"}], "authorized_access_point": "Cell Cycle"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4129960-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041299604", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4129960-7", "source": "GND"}], "variant_access_point": ["Mitosezyklus", "Zellcyclus"], "authorized_access_point": "Zellzyklus"} 1 +2024-09-11 09:10:43.583559 2024-09-11 09:10:43.583562 74c24685-9377-4a02-8c2a-51c67e9fcd50 {"md5": "e5d07e181f4287c60093d9ff970a5e92", "pid": "041287045", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zelle"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133992099", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85019549", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85019549"}], "authorized_access_point": "Cancer cells"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133992099", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11958048", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11958048t"}], "authorized_access_point": "Cellules cancéreuses"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254382798", "source": "GND"}, {"type": "bf:Nbn", "value": "50347", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/50347"}], "authorized_access_point": "Cellule neoplastiche"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254452249", "source": "GND"}, {"type": "bf:Nbn", "value": "XX533645", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX533645"}], "authorized_access_point": "Células cancerosas"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4128704-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041287045", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4128704-6", "source": "GND"}], "variant_access_point": ["Krebs (Medizin)"], "authorized_access_point": "Krebszelle"} 1 +2024-09-11 09:10:43.656856 2024-09-11 09:10:43.65686 5db99e32-6963-4e6b-931e-88e246425c1f {"md5": "445d0df391db108ef7e62ed1941e4eaa", "pid": "04128237X", "note": [{"label": ["Zusammenfassender Begriff für alle Flexibilisierungsstrategien im Bereich d. Arbeit"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134493010", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11933626", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11933626j"}], "authorized_access_point": "Marché du travail"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4128237-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04128237X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4128237-1", "source": "GND"}], "variant_access_point": ["Flexibilisierung", "Arbeitsflexibilität"], "authorized_access_point": "Arbeitsflexibilisierung"} 1 +2024-09-11 09:10:43.722567 2024-09-11 09:10:43.72257 96f828fb-2afe-4137-8638-df418991beec {"md5": "c9a2ef91cf1f27b3fcdfee9e39213b70", "pid": "041281632", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Prognose"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4128163-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041281632", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4128163-9", "source": "GND"}], "variant_access_point": ["Kriminalitätsprognose", "Legalprognose"], "authorized_access_point": "Kriminalprognose"} 1 +2024-09-11 09:10:43.792039 2024-09-11 09:10:43.792045 6af05e21-6957-475e-a211-bcc11722f5af {"md5": "f5a380dd3c9ff2bd459432c239cafbaa", "pid": "041273230", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zelle"}, {"authorized_access_point": "Muskelfaser"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134519516", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85088676", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85088676"}], "authorized_access_point": "Muscle cells"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134519516", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11937793", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11937793x"}], "authorized_access_point": "Myocytes"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336589426", "source": "GND"}, {"type": "bf:Nbn", "value": "D032342", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D032342"}], "authorized_access_point": "Muscle Cells"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4127323-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041273230", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4127323-0", "source": "GND"}], "authorized_access_point": "Muskelzelle"} 1 +2024-09-11 09:10:43.86931 2024-09-11 09:10:43.869318 7ba48b2d-8818-4b36-b22d-f1251b3db190 {"md5": "119025a0fb0ceed7fc15946ed453acbf", "pid": "041269950", "note": [{"label": ["Avantgardistischer japan. Tanz"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tanz"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133786634", "source": "GND"}, {"type": "bf:Nbn", "value": "sh90000099", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh90000099"}], "authorized_access_point": "Butō"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133786634", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12389686", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb123896860"}], "authorized_access_point": "Butō"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4126995-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041269950", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4126995-0", "source": "GND"}], "variant_access_point": ["Butoh", "Butô (Tanz)"], "authorized_access_point": "Butô-Tanz"} 1 +2024-09-11 09:10:44.612084 2024-09-11 09:10:44.612093 94878360-e083-430d-9d76-3f7c8daad8df {"md5": "4297b2ccba36f523fd15d1b0628d54d0", "pid": "041220609", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Industrieausstellung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133695337", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11982542", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119825429"}], "authorized_access_point": "Expositions automobiles"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4122060-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041220609", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4122060-2", "source": "GND"}], "authorized_access_point": "Automobilausstellung"} 1 +2024-09-11 09:10:43.934925 2024-09-11 09:10:43.934929 53db4170-f348-4bc6-99c0-21024332ed08 {"md5": "0099ee4849c434ecbc99cfb6ccf479c3", "pid": "041258584", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Kultur"}], "related": [{"authorized_access_point": "Alltagskultur"}, {"authorized_access_point": "Arbeiterkultur"}, {"authorized_access_point": "Industriekultur"}, {"authorized_access_point": "Volkskultur"}, {"authorized_access_point": "Popkultur"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134492146", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13318336", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb133183362"}], "authorized_access_point": "Culture de masse"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970571321", "source": "GND"}, {"type": "bf:Nbn", "value": "10050181", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10050181"}], "authorized_access_point": "Massenkultur"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4125858-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041258584", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4125858-7", "source": "GND"}], "authorized_access_point": "Massenkultur"} 1 +2024-09-11 09:10:44.012913 2024-09-11 09:10:44.012917 a6cb33f9-b03c-4dd7-80c8-cfcf65896d07 {"md5": "4fbebfff1da9511bd56a2334e76838a1", "pid": "041255887", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133639275", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85091047", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85091047"}], "authorized_access_point": "Netsukes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133639275", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11945149", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11945149h"}], "authorized_access_point": "Netsuke"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254326421", "source": "GND"}, {"type": "bf:Nbn", "value": "3974", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/3974"}], "authorized_access_point": "Netsuke"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254466614", "source": "GND"}, {"type": "bf:Nbn", "value": "XX558922", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX558922"}], "authorized_access_point": "Netsuke"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4125588-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041255887", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4125588-4", "source": "GND"}], "authorized_access_point": "Netsuke"} 1 +2024-09-11 09:10:44.069825 2024-09-11 09:10:44.069828 be1e2bef-6861-4f54-8d22-e57ab860bc12 {"md5": "18bfb474fc05c5f67dcf8e08faff5d62", "pid": "041252896", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Feuerwehr"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133615511", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85048486", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85048486"}], "authorized_access_point": "Fire extinction"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133615511", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11932069", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11932069x"}], "authorized_access_point": "Incendies - Extinction"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254384669", "source": "GND"}, {"type": "bf:Nbn", "value": "52317", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/52317"}], "authorized_access_point": "Spegnimento"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125441410X", "source": "GND"}, {"type": "bf:Nbn", "value": "XX559831", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX559831"}], "authorized_access_point": "Incendios - Extinción"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4125289-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041252896", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4125289-5", "source": "GND"}], "variant_access_point": ["Feuerbekämpfung", "Feuerlöschen", "Feuer", "Abwehrender Brandschutz"], "authorized_access_point": "Brandbekämpfung"} 1 +2024-09-11 09:10:44.11603 2024-09-11 09:10:44.116033 78dea98d-5117-4b50-bd69-ef9633a708f3 {"md5": "a63e44d7e01a22f53b704d98a8525e63", "pid": "041245296", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4124529-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041245296", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4124529-5", "source": "GND"}], "variant_access_point": ["Betriebsmittel"], "authorized_access_point": "Aggregat"} 1 +2024-09-11 09:10:44.179268 2024-09-11 09:10:44.179279 fdf8cd63-ea15-4956-8e72-47f399c3bb53 {"md5": "f41db8a13d2b225d7630d962396f1619", "pid": "041240510", "note": [{"label": ["Marketingmassnahme zur Verlängerung des Produktlebenszyklus"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Produktlebenszyklus"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4124051-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041240510", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4124051-0", "source": "GND"}], "variant_access_point": ["Relaunching"], "authorized_access_point": "Relaunch"} 1 +2024-09-11 09:10:44.69105 2024-09-11 09:10:44.691055 1573be24-6de2-42ba-9109-a159b270a995 {"md5": "a19476fcd24a7ae4649ce7636a89f4c1", "pid": "04121952X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Verpackungspfand"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4121952-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04121952X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4121952-1", "source": "GND"}], "authorized_access_point": "Zwangsverpackungspfand"} 1 +2024-09-11 09:10:44.247656 2024-09-11 09:10:44.247662 de0460b9-1c2c-41cc-902b-c4e374a20888 {"md5": "597832018a786ba5ca8e1492ef1679c8", "pid": "041239288", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Daten"}], "related": [{"authorized_access_point": "Personenbezogene Daten"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113445919X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh00009296", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh00009296"}], "authorized_access_point": "Electronic monitoring in the workplace"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113445919X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF14621537", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb146215374"}], "authorized_access_point": "Surveillance électronique en milieu de travail"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970578652", "source": "GND"}, {"type": "bf:Nbn", "value": "10040511", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10040511"}], "authorized_access_point": "Personaldaten"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4123928-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041239288", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4123928-3", "source": "GND"}], "variant_access_point": ["Beschäftigtendaten", "Mitarbeiterdaten", "Arbeitnehmer"], "authorized_access_point": "Personaldaten"} 1 +2024-09-11 09:10:44.32945 2024-09-11 09:10:44.32946 04f4162d-48c1-47bb-9c1c-2ab4f10cc3da {"md5": "3195176767afd8ff50ee056060e3ec93", "pid": "041238826", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133672825", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85080183", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85080183"}], "authorized_access_point": "Malocclusion"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133672825", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11970770", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11970770d"}], "authorized_access_point": "Malocclusion dentaire"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254468838", "source": "GND"}, {"type": "bf:Nbn", "value": "XX546636", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX546636"}], "authorized_access_point": "Maloclusión"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241615926", "source": "GND"}, {"type": "bf:Nbn", "value": "D008310", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D008310"}], "authorized_access_point": "Malocclusion"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4123882-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041238826", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4123882-5", "source": "GND"}], "variant_access_point": ["Malokklusion", "Okklusionsanomalie", "Okklusionsabweichung"], "authorized_access_point": "Okklusionsstörung"} 1 +2024-09-11 09:10:44.401134 2024-09-11 09:10:44.401138 118436bb-b51a-49ed-8dac-63f9525ce762 {"md5": "7f8af601a82d1565383d06452899eee8", "pid": "041236599", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Liquiditätsplanung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4123659-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041236599", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4123659-2", "source": "GND"}], "authorized_access_point": "LIPLAN"} 1 +2024-09-11 09:10:44.475596 2024-09-11 09:10:44.475601 d716c8e9-b93f-4606-9d30-fcf906dc10c5 {"md5": "7278f9c7f1067e70c75a03a92af42247", "pid": "041235347", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zelle"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133886736", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85081545", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85081545"}], "authorized_access_point": "Bone marrow cells"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133886736", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13743509", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13743509t"}], "authorized_access_point": "Cellules de la moelle osseuse"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133658923X", "source": "GND"}, {"type": "bf:Nbn", "value": "D001854", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D001854"}], "authorized_access_point": "Bone Marrow Cells"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4123534-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041235347", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4123534-4", "source": "GND"}], "variant_access_point": ["Knochenmarkzellen", "Knochenmarkszelle"], "authorized_access_point": "Knochenmarkzelle"} 1 +2024-09-11 09:10:44.548927 2024-09-11 09:10:44.548932 c50d84cc-21f0-47e0-8433-96815d88354e {"md5": "03e80aaca77d10ed56fcfbdac955f969", "pid": "041227980", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Xenismus"}, {"authorized_access_point": "Entlehnung"}], "related": [{"authorized_access_point": "Amerikanismus"}, {"authorized_access_point": "Englisch"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134149212", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12073697", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12073697g"}], "authorized_access_point": "Emprunts anglais"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4122798-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041227980", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4122798-0", "source": "GND"}], "authorized_access_point": "Anglizismus"} 1 +2024-09-11 09:10:45.133135 2024-09-11 09:10:45.133138 2f8bb889-00ba-4e85-a88d-fdbca91be979 {"md5": "85f52224c4d8f74ac33a81e734c056ef", "pid": "041184432", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Westindonesische Sprachen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4118443-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041184432", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4118443-9", "source": "GND"}], "variant_access_point": ["Sassak"], "authorized_access_point": "Sasak"} 1 +2024-09-11 09:10:44.74167 2024-09-11 09:10:44.741674 5dc12280-4a77-4a71-aa1e-644630cdeea8 {"md5": "fa3c8d8afe89111232361864a4d80265", "pid": "041218108", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133612857", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85044206", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85044206"}], "authorized_access_point": "Environmental protection - Research"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133612857", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12647462", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12647462n"}], "authorized_access_point": "Environnement - Recherche"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970598866", "source": "GND"}, {"type": "bf:Nbn", "value": "10060580", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10060580"}], "authorized_access_point": "Umweltforschung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4121810-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041218108", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4121810-3", "source": "GND"}], "variant_access_point": ["Umweltschutzforschung"], "authorized_access_point": "Umweltforschung"} 1 +2024-09-11 09:10:44.810867 2024-09-11 09:10:44.810871 ce61faeb-641a-482a-a049-d9f2e12729d9 {"md5": "9aa847acdbda739433f5c61341299cba", "pid": "041217616", "note": [{"label": ["Erwerbstätigkeit an einem externen Arbeitsplatz, der mit informationstechn. Endgeräten ausgestattet, dezentral eingerichtet und mit dem Auftraggeber/Arbeitgeber durch elektron. Kommunikationsnetze verbunden ist"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Heimarbeit"}, {"authorized_access_point": "Arbeit"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134185731", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85133307", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85133307"}], "authorized_access_point": "Telecommuting"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134185731", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12140176", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12140176z"}], "authorized_access_point": "Télétravail"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125432593X", "source": "GND"}, {"type": "bf:Nbn", "value": "3744", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/3744"}], "authorized_access_point": "Telelavoro"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254493808", "source": "GND"}, {"type": "bf:Nbn", "value": "XX538553", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX538553"}], "authorized_access_point": "Teletrabajo"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966996208", "source": "GND"}, {"type": "bf:Nbn", "value": "18112-6", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/18112-6"}], "authorized_access_point": "Telearbeit"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970597282", "source": "GND"}, {"type": "bf:Nbn", "value": "10035916", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10035916"}], "authorized_access_point": "Telearbeit"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4121761-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041217616", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4121761-5", "source": "GND"}], "variant_access_point": ["Tele-Heimarbeit", "Home Office", "Homeoffice", "Fernarbeit", "Computerheimarbeit", "Tele-Working", "Telecommuting", "Tele-Arbeit", "Telekommunikation", "Mobiles Arbeiten"], "authorized_access_point": "Telearbeit"} 1 +2024-09-11 09:10:44.883344 2024-09-11 09:10:44.883349 cc63aa70-aadc-4ef5-b491-451be386e481 {"md5": "149ea5e3a3fc75ee98b34672a977e720", "pid": "041212304", "note": [{"label": ["Programm für Externe Bilanzanalyse"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Programm"}], "related": [{"authorized_access_point": "Bilanzanalyse"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4121230-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041212304", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4121230-7", "source": "GND"}], "authorized_access_point": "EXBILA"} 1 +2024-09-11 09:10:44.956442 2024-09-11 09:10:44.956447 25dfd694-7846-48a9-9f57-95020aa66710 {"md5": "26b9c33aead686cdff46e8f8b025ff77", "pid": "041207017", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Gleichgewicht"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334903719", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85044538", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85044538"}], "authorized_access_point": "Equilibrium (Economics)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1334903719", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11931264", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11931264h"}], "authorized_access_point": "Équilibre (économie politique)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4120701-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041207017", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4120701-4", "source": "GND"}], "variant_access_point": ["Markt", "Konkurrenzgleichgewicht"], "authorized_access_point": "Marktgleichgewicht"} 1 +2024-09-11 09:10:45.025852 2024-09-11 09:10:45.025858 b20ce91c-5bc2-44af-8a1a-13b551fe6704 {"md5": "0baa8c333dd12a8972174ecd3b9efea5", "pid": "041206592", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zelle"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134131135", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85077772", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85077772"}], "authorized_access_point": "Liver cells"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134131135", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12047088", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb120470886"}], "authorized_access_point": "Cellules hépatiques"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254378499", "source": "GND"}, {"type": "bf:Nbn", "value": "45407", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/45407"}], "authorized_access_point": "Cellule epatiche"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254455493", "source": "GND"}, {"type": "bf:Nbn", "value": "XX559281", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX559281"}], "authorized_access_point": "Células hepáticas"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336589078", "source": "GND"}, {"type": "bf:Nbn", "value": "D022781", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D022781"}], "authorized_access_point": "Hepatocytes"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4120659-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041206592", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4120659-9", "source": "GND"}], "variant_access_point": ["Hepatozyt", "Leberzelle", "Leberparenchymzelle", "Hepatocyt"], "authorized_access_point": "Leberepithelzelle"} 1 +2024-09-11 09:10:45.076075 2024-09-11 09:10:45.076079 efabafad-b763-4dea-9f27-f71f432132c3 {"md5": "abc83ac9793584326f7d987a9214b7cb", "pid": "041201116", "note": [{"label": ["möglicherweise nur Sprachbund"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Uralaltaische Sprachen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133699049", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85003868", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85003868"}], "authorized_access_point": "Altaic languages"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133699049", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11991545", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119915459"}], "authorized_access_point": "Langues altaïques"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254315659", "source": "GND"}, {"type": "bf:Nbn", "value": "181", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/181"}], "authorized_access_point": "Lingue altaiche"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254403205", "source": "GND"}, {"type": "bf:Nbn", "value": "XX546093", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX546093"}], "authorized_access_point": "Lenguas altaicas"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4120111-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041201116", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4120111-5", "source": "GND"}], "variant_access_point": ["Altaisch (Sprachfamilie)"], "authorized_access_point": "Altaische Sprachen"} 1 +2024-09-11 09:10:45.191969 2024-09-11 09:10:45.191974 935a73de-d1af-489d-b004-857e752302bd {"md5": "c180aa6e9b3b827482932907a01067d8", "pid": "041176065", "note": [{"label": ["Als identifizierender Zusatz und als instantieller Oberbegriff bei weiblichen heiligen Personen obligatorisch gem. EH-P-10 zur GND nach RDA"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Frau"}], "related": [{"authorized_access_point": "Heiliger"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133986994", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85025188", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85025188"}], "authorized_access_point": "Christian women saints"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134610386", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85116638", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85116638"}], "authorized_access_point": "Women saints"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133986994", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11955309", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119553091"}], "authorized_access_point": "Saintes chrétiennes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254361065", "source": "GND"}, {"type": "bf:Nbn", "value": "29798", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/29798"}], "authorized_access_point": "Sante"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254439110", "source": "GND"}, {"type": "bf:Nbn", "value": "XX537664", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX537664"}], "authorized_access_point": "Santas cristianas"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4117606-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041176065", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4117606-6", "source": "GND"}], "variant_access_point": ["Weibliche Heilige", "Heilige Frau", "Heiliggesprochene Frau", "Heilig gesprochene Frau"], "authorized_access_point": "Heilige"} 1 +2024-09-11 09:10:45.252846 2024-09-11 09:10:45.25285 0acc2626-847d-4570-8714-a2af7737894f {"md5": "7cbafeb4ced4689afb3495a725651f1d", "pid": "041155513", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zelle"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113364211X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85102712", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85102712"}], "authorized_access_point": "Plant cells and tissues"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113364211X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11946982", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11946982s"}], "authorized_access_point": "Cellules végétales"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1299903770", "source": "GND"}, {"type": "bf:Nbn", "value": "XX533812", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX533812"}], "authorized_access_point": "Células vegetales"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336588802", "source": "GND"}, {"type": "bf:Nbn", "value": "D059828", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D059828"}], "authorized_access_point": "Plant Cells"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4115551-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041155513", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4115551-8", "source": "GND"}], "variant_access_point": ["Pflanzen"], "authorized_access_point": "Pflanzenzelle"} 1 +2024-09-11 09:10:45.322904 2024-09-11 09:10:45.322909 38b0d755-2c34-44ca-ac74-3b6b44b6e0ed {"md5": "e424ecb18af764e1e8784acc1c1811a7", "pid": "041154630", "note": [{"label": ["Organisation als kulturelles Sinnsystem"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134603371", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85032896", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85032896"}], "authorized_access_point": "Corporate culture"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134603371", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12004221", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12004221x"}], "authorized_access_point": "Culture d'entreprise"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)967011043", "source": "GND"}, {"type": "bf:Nbn", "value": "12108-6", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/12108-6"}], "authorized_access_point": "Unternehmenskultur"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970577311", "source": "GND"}, {"type": "bf:Nbn", "value": "10060811", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10060811"}], "authorized_access_point": "Organisationskultur"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4115463-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041154630", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4115463-0", "source": "GND"}], "authorized_access_point": "Organisationskultur"} 1 +2024-09-11 09:10:45.404206 2024-09-11 09:10:45.40421 d88dfb78-b0a8-4518-a2cc-419bf46487d2 {"md5": "71f626be586118114ba34bc84531e6c8", "pid": "04114516X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Controlling"}], "related": [{"authorized_access_point": "Marketing"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4114516-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04114516X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4114516-1", "source": "GND"}], "authorized_access_point": "Marketingaudit"} 1 +2024-09-11 09:10:45.46359 2024-09-11 09:10:45.463593 ffa9eadb-547f-4108-9111-1244cb63dd45 {"md5": "81e78b37c01a20ad4563eee529779096", "pid": "041091507", "note": [{"label": ["Auch benutzt für Angehörige des Staates Iran soweit ausserhalb des Staates lebend, hierfür benutze LC XB-IR"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Iranierin"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134077866", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85067929", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85067929"}], "authorized_access_point": "Iranians"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134077866", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11982855", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11982855g"}], "authorized_access_point": "Iraniens"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254444726", "source": "GND"}, {"type": "bf:Nbn", "value": "XX555380", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX555380"}], "authorized_access_point": "Iraníes"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1008594873", "source": "GND"}, {"type": "bf:Nbn", "value": "26312-2", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/26312-2"}], "authorized_access_point": "Iraner"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970561199", "source": "GND"}, {"type": "bf:Nbn", "value": "10066094", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10066094"}], "authorized_access_point": "Iraner"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4109150-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041091507", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4109150-4", "source": "GND"}], "variant_access_point": ["Iraner"], "authorized_access_point": "Iranier"} 1 +2024-09-11 09:10:47.503925 2024-09-11 09:10:47.503929 968974cc-2ed3-4c97-aa6e-26082c410b7f {"md5": "547677721cacb60dcaacaa515e9975ac", "pid": "040130193", "note": [{"label": ["Ohne HZ Motiv", "Neben dem Recht auch als Allgemeinbegriff benutzt."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motiv"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4013019-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040130193", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4013019-8", "source": "GND"}], "variant_access_point": ["Drittperson", "Der Dritte", "Drittbeteiligter"], "authorized_access_point": "Dritter"} 1 +2024-09-11 09:10:45.526513 2024-09-11 09:10:45.526518 5ecea1ca-fe16-499a-8c48-e934f29321e8 {"md5": "63dbfda3c32786bae5f7035e417330d9", "pid": "041076842", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Indianer"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133987729", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85003081", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85003081"}], "authorized_access_point": "Xavante Indians"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133987729", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11955654", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11955654p"}], "authorized_access_point": "Chavante (Indiens)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254486607", "source": "GND"}, {"type": "bf:Nbn", "value": "XX549246", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX549246"}], "authorized_access_point": "Xavantes (Indios)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4107684-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041076842", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4107684-9", "source": "GND"}], "variant_access_point": ["Xavante", "Chavante"], "authorized_access_point": "Shavante"} 1 +2024-09-11 09:10:45.577708 2024-09-11 09:10:45.577711 587c9af0-14f3-4064-b7f0-34979f8351fa {"md5": "48c1ed1933099e3ff9cd43bd6b3e78a4", "pid": "041018699", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113394602X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85093489", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85093489"}], "authorized_access_point": "Nyamwezi (African people)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113394602X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11938722", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11938722n"}], "authorized_access_point": "Nyamwezi (peuple d'Afrique)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254468374", "source": "GND"}, {"type": "bf:Nbn", "value": "XX4760724", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX4760724"}], "authorized_access_point": "Nyamwezis (Pueblo africano)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4101869-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041018699", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4101869-2", "source": "GND"}], "variant_access_point": ["Nyamwesi", "Njamwesi", "Wanjamwesi", "Wanyamwesi"], "authorized_access_point": "Nyamwezi"} 1 +2024-09-11 09:10:45.633594 2024-09-11 09:10:45.633599 64f90a77-9a3e-46b1-b43e-b9cf45f6a89a {"md5": "151096832413ed4d17322387e2ca3f46", "pid": "040775593", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Sozialarbeit"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)96696277X", "source": "GND"}, {"type": "bf:Nbn", "value": "16543-3", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/16543-3"}], "authorized_access_point": "Sozialer Dienst"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970590555", "source": "GND"}, {"type": "bf:Nbn", "value": "10035231", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10035231"}], "authorized_access_point": "soziale Dienste"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4077559-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040775593", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4077559-8", "source": "GND"}], "variant_access_point": ["Soziale Dienste", "Sozialer Dienst"], "authorized_access_point": "Sozialdienst"} 1 +2024-09-11 09:10:45.701057 2024-09-11 09:10:45.701062 01e2349e-96fc-4443-89a1-1fad794b53b8 {"md5": "5fc1152e05e5f84d1aa811882e0eeb42", "pid": "040763889", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Genprodukt"}, {"authorized_access_point": "Biopolymere"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133625789", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85107666", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85107666"}], "authorized_access_point": "Proteins"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133625789", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11936447", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11936447p"}], "authorized_access_point": "Protéines"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254315101", "source": "GND"}, {"type": "bf:Nbn", "value": "51", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/51"}], "authorized_access_point": "Proteine"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254475982", "source": "GND"}, {"type": "bf:Nbn", "value": "XX526597", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX526597"}], "authorized_access_point": "Proteínas"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256248541", "source": "GND"}, {"type": "bf:Nbn", "value": "6259", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_6259"}], "authorized_access_point": "proteins"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336147075", "source": "GND"}, {"type": "bf:Nbn", "value": "D011506", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D011506"}], "authorized_access_point": "Proteins"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4076388-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040763889", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4076388-2", "source": "GND"}], "variant_access_point": ["Eiweiss", "Protein"], "authorized_access_point": "Proteine"} 1 +2024-09-11 09:10:45.752586 2024-09-11 09:10:45.752588 d2f1702a-a514-44b6-b5af-3abc97ffbb1b {"md5": "e835e45fc082f9afd1aa54833805ad2d", "pid": "040730913", "note": [{"label": ["Verwendet nur für Vernichtungslager und für den Vorgang als solchen, nicht in Verbindung mit einzelnen Orten in Deutschland, dann Judenverfolgung. Tötungsaktionen an einzelnen Orten im Osten werden nicht als historisches Einzelereignis behandelt, sondern mit dem Geographikum verknüpft."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Judenverfolgung"}, {"authorized_access_point": "Nationalsozialistisches Verbrechen"}], "related": [{"authorized_access_point": "Vernichtungslager"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113360563X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85061515", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85061515"}], "authorized_access_point": "Holocaust, Jewish (1939-1945)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113360563X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11941579", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11941579k"}], "authorized_access_point": "Shoah"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254445757", "source": "GND"}, {"type": "bf:Nbn", "value": "XX4663627", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX4663627"}], "authorized_access_point": "Holocausto judío (1939-1945)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4073091-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040730913", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4073091-8", "source": "GND"}], "variant_access_point": ["Endlösung", "Holocaust", "Holokaust", "Judenfrage", "Schoah", "Shoah", "Shoʾah", "Shoa", "Drittes Reich", "Šô'ā", "Juden"], "authorized_access_point": "Judenvernichtung"} 1 +2024-09-11 09:10:45.825545 2024-09-11 09:10:45.82555 b9c91077-6b66-438a-92cb-8a913fb1fdb4 {"md5": "635cdf6e0459daa42e19f017ba7959fe", "pid": "04071781X", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Dimorphismus"}], "related": [{"authorized_access_point": "Geschlechtsmerkmal"}, {"authorized_access_point": "Geschlechterrolle"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133881475", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85120727", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85120727"}], "authorized_access_point": "Sexual dimorphism (Plants)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134040792", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85120580", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85120580"}], "authorized_access_point": "Sex differences"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133881475", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13617433", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13617433k"}], "authorized_access_point": "Dimorphisme sexuel chez les plantes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134040792", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11976298", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11976298v"}], "authorized_access_point": "Différences entre sexes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254434844", "source": "GND"}, {"type": "bf:Nbn", "value": "XX539058", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX539058"}], "authorized_access_point": "Diferencias entre los sexos"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1067694579", "source": "GND"}, {"type": "bf:Nbn", "value": "30048-3", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/30048-3"}], "authorized_access_point": "Geschlechterunterschiede"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970553803", "source": "GND"}, {"type": "bf:Nbn", "value": "10045237", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10045237"}], "authorized_access_point": "geschlechtsspezifische Faktoren"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4071781-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04071781X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4071781-1", "source": "GND"}], "variant_access_point": ["Geschlechterdifferenz", "Geschlechtsdimorphismus", "Geschlechtsspezifisch ...", "Geschlechtsspezifische Differenz", "Sexualdimorphismus", "Geschlechterunterschied", "Geschlecht", "Geschlechtsunterschiede", "Gender Diversity", "Geschlechtsspezifische Diversität"], "authorized_access_point": "Geschlechtsunterschied"} 1 +2024-09-11 09:10:45.892069 2024-09-11 09:10:45.892073 2af685d8-d2ac-4cc2-9bad-742c27dcd23d {"md5": "9a0986fd79655dcdb9212e8ecc3b62c2", "pid": "04067777X", "note": [{"label": ["Ethnie ohne Territorium. Außer d. weibl. Form werden keine weiteren Komposita gebildet, sondern mit dem entsprechenden Sach-SW verknüpft, z.B. Zigeuner ; Kind; engere Bezeichnungen wie \\"Roma \\", \\"Sinti\\" o.a. sollten immer vorrangig verwendet werden, teilweise aber auch als Selbstbezeichnung gewünscht."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Zigeunerin"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134501595", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85058109", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85058109"}], "authorized_access_point": "Romanies"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134501595", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11933633", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11933633t"}], "authorized_access_point": "Tsiganes"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970606753", "source": "GND"}, {"type": "bf:Nbn", "value": "10062954", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10062954"}], "authorized_access_point": "Sinti und Roma"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4067777-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04067777X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4067777-1", "source": "GND"}], "authorized_access_point": "Zigeuner"} 1 +2024-09-11 09:10:45.957888 2024-09-11 09:10:45.957893 d980face-4bc7-43f7-8231-617386ee1cc8 {"md5": "9437e203dcd08b4c77e4f0e8ecabd840", "pid": "04066533X", "note": [{"label": ["Als Homonymenzusatz bei Personenschlagwörtern zugelassen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Wissenschaftler"}], "related": [{"authorized_access_point": "Wirtschaftswissenschaftlerin"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133925197", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85040878", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85040878"}], "authorized_access_point": "Economists"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133925197", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11931937", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11931937j"}], "authorized_access_point": "Économistes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254503978", "source": "GND"}, {"type": "bf:Nbn", "value": "XX527085", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX527085"}], "authorized_access_point": "Economistas"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)967043212", "source": "GND"}, {"type": "bf:Nbn", "value": "14017-6", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/14017-6"}], "authorized_access_point": "Ökonomen"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970605226", "source": "GND"}, {"type": "bf:Nbn", "value": "10053624", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10053624"}], "authorized_access_point": "Wirtschaftswissenschaftler"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4066533-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04066533X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4066533-1", "source": "GND"}], "variant_access_point": ["Ökonom (Wirtschaft)"], "authorized_access_point": "Wirtschaftswissenschaftler"} 1 +2024-09-11 09:10:46.018247 2024-09-11 09:10:46.018249 5e911f31-71d3-4a61-bd77-8cd9881b5837 {"md5": "9f4e465409a28517ec5de4a7564d29fc", "pid": "040645312", "note": [{"label": ["Benutzt für sehr weite Sachverhalte, umfasst z.B. auch Schaustellergewerbe etc."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4064531-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040645312", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4064531-9", "source": "GND"}], "variant_access_point": ["Ambulantes Gewerbe", "Wanderhandel (Reisegewerbe)", "Wandergewerbe", "Ambulanter Gewerbebetrieb"], "authorized_access_point": "Reisegewerbe"} 1 +2024-09-11 09:10:46.068194 2024-09-11 09:10:46.068198 b6918415-551e-46d1-97d4-236075ea8f75 {"md5": "7305c62eacaaacb7d99ab8b953ef2844", "pid": "040633217", "note": [{"label": ["Ein Verwaltungsakt ist jede Verfügung, Entscheidung oder andere hoheitliche Maßnahme, die eine Behörde zur Regelung eines Einzelfalls auf dem Gebiet des öffentlichen Rechts trifft und die auf unmittelbare Rechtswirkung nach außen gerichtet ist."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133645879", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85000900", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85000900"}], "authorized_access_point": "Administrative acts"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133645879", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12649789", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb126497890"}], "authorized_access_point": "Actes administratifs"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254330216", "source": "GND"}, {"type": "bf:Nbn", "value": "6046", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/6046"}], "authorized_access_point": "Atti amministrativi"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4063321-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040633217", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4063321-4", "source": "GND"}], "authorized_access_point": "Verwaltungsakt"} 1 +2024-09-11 09:10:46.116027 2024-09-11 09:10:46.11603 508f0ed0-2ff4-4c25-a33d-b96598c5f2d2 {"md5": "44a545f8605af913621c692d5ab7fd8d", "pid": "040583317", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Low-Input Landwirtschaft"}, {"authorized_access_point": "Extraktivismus"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134074778", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85129537", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85129537"}], "authorized_access_point": "Subsistence economy"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134074778", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11982331", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119823313"}], "authorized_access_point": "Économie de subsistance"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256261602", "source": "GND"}, {"type": "bf:Nbn", "value": "7485", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_7485"}], "authorized_access_point": "subsistence farming"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966989805", "source": "GND"}, {"type": "bf:Nbn", "value": "10511-4", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/10511-4"}], "authorized_access_point": "Subsistenzwirtschaft"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970595840", "source": "GND"}, {"type": "bf:Nbn", "value": "10059703", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10059703"}], "authorized_access_point": "Subsistenzwirtschaft"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4058331-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040583317", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4058331-4", "source": "GND"}], "variant_access_point": ["Selbstversorgerwirtschaft"], "authorized_access_point": "Subsistenzwirtschaft"} 1 +2024-09-11 09:10:46.169359 2024-09-11 09:10:46.169362 872605b9-9a99-4255-b220-6f266419fe36 {"md5": "c92d43167aa0e6193a351bf4b3d7e1bb", "pid": "040544567", "note": [{"label": ["Benutzt für männliche selige Personen und die Personengruppe im Plural; als instantieller Oberbegriff bei seligen Personen obligatorisch; nicht zugelassen als identifizierender Zusatz bei Personen gem. EH-P-10 zur GND nach RDA"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Selige"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134228295", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85014845", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85014845"}], "authorized_access_point": "Blessed"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134228295", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12243954", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12243954r"}], "authorized_access_point": "Bienheureux"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254345876", "source": "GND"}, {"type": "bf:Nbn", "value": "18676", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/18676"}], "authorized_access_point": "Beati"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254485996", "source": "GND"}, {"type": "bf:Nbn", "value": "XX4596790", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX4596790"}], "authorized_access_point": "Beatos"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4054456-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040544567", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4054456-4", "source": "GND"}], "authorized_access_point": "Seliger"} 1 +2024-09-11 09:10:46.271885 2024-09-11 09:10:46.27189 e0673f02-ec21-4aa2-8da3-d925320eae3f {"md5": "8cd7a80b0960fbf819029264fe6f6715", "pid": "040519384", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133956351", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85123237", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85123237"}], "authorized_access_point": "Skull"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133956351", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11944099", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11944099j"}], "authorized_access_point": "Crâne"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254328386", "source": "GND"}, {"type": "bf:Nbn", "value": "5120", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/5120"}], "authorized_access_point": "Cranio"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1282201786", "source": "GND"}, {"type": "bf:Nbn", "value": "D012886", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D012886"}], "authorized_access_point": "Skull"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4051938-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040519384", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4051938-7", "source": "GND"}], "variant_access_point": ["Cranium", "Kranium", "Schädelskelett"], "authorized_access_point": "Schädel"} 1 +2024-09-11 09:10:46.342885 2024-09-11 09:10:46.34289 0d93c3d6-01a1-4648-b6f5-59671302f4b1 {"md5": "9997dde9c023220f45bb448acdd5d8e4", "pid": "040514927", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Bewertung"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)96695016X", "source": "GND"}, {"type": "bf:Nbn", "value": "19091-4", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/19091-4"}], "authorized_access_point": "Lagerbuchführung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4051492-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040514927", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4051492-4", "source": "GND"}], "variant_access_point": ["Pauschalbewertung", "Gesamtbewertung", "Durchschnittsbewertung"], "authorized_access_point": "Sammelbewertung"} 1 +2024-09-11 09:10:46.414733 2024-09-11 09:10:46.414738 7daea1a2-2cbe-4eaf-a268-fc97427229ea {"md5": "caa2426e20ea04c5f182d87b672143ab", "pid": "040512665", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Lewis-Säure"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113369540X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85000532", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85000532"}], "authorized_access_point": "Acids"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)113369540X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11982607", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119826072"}], "authorized_access_point": "Acides"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254362630", "source": "GND"}, {"type": "bf:Nbn", "value": "31196", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/31196"}], "authorized_access_point": "Acidi"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254482210", "source": "GND"}, {"type": "bf:Nbn", "value": "XX534321", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX534321"}], "authorized_access_point": "Ácidos"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336148500", "source": "GND"}, {"type": "bf:Nbn", "value": "D000143", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D000143"}], "authorized_access_point": "Acids"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4051266-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040512665", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4051266-6", "source": "GND"}], "variant_access_point": ["Säuren"], "authorized_access_point": "Säure"} 1 +2024-09-11 09:10:46.487662 2024-09-11 09:10:46.487671 e5f88acf-2abd-40aa-8f83-d93e2abd913f {"md5": "db4ce210649df8d78688b8df9a43d140", "pid": "04051238X", "note": [{"label": ["Verwendet im geistesgeschichtl. Sinn", "Für die Aufhebung geistlichen Besitzes verwende SW Säkularisation."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Säkularismus"}, {"authorized_access_point": "Säkularisation"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133648002", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85119462", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85119462"}], "authorized_access_point": "Secularization (Theology)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133648002", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11951712", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119517122"}], "authorized_access_point": "Sécularisation (théologie)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133980104", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11952495", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119524950"}], "authorized_access_point": "Déchristianisation"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254481508", "source": "GND"}, {"type": "bf:Nbn", "value": "XX4576594", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX4576594"}], "authorized_access_point": "Secularización (Teología)"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970596367", "source": "GND"}, {"type": "bf:Nbn", "value": "10057048", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10057048"}], "authorized_access_point": "Säkularisierung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4051238-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04051238X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4051238-1", "source": "GND"}], "variant_access_point": ["Entchristlichung", "Entkirchlichung", "Verweltlichung"], "authorized_access_point": "Säkularisierung"} 1 +2024-09-11 09:10:46.557033 2024-09-11 09:10:46.557036 694fb71f-641e-47b6-a7de-b7b30ffa6fbd {"md5": "0e997780907b19bb68cfd9de225afd24", "pid": "040490297", "note": [{"label": ["Als Homonymenzusatz nach Geographika zugelassen; das Blattgebiet eines Kartenwerks wird durch ein Geographikum mit dem Zusatz wiedergegeben; für die Verwaltungseinheit (Verwaltungsregion), soweit kein spezieller Homonymenzusatz möglich; zu im Sinne von Umgebung vgl. § 204a. Für das Gebiet um eine Insel verknüpfe diese mit einem geeigneten Sach-SW wie SW Küstenmeer bzw. SW Küstengebiet (bei Meeresinseln), SW Litoral o. ä"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Umland"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966940318", "source": "GND"}, {"type": "bf:Nbn", "value": "11857-5", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/11857-5"}], "authorized_access_point": "Region"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970585063", "source": "GND"}, {"type": "bf:Nbn", "value": "10044625", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10044625"}], "authorized_access_point": "Region"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4049029-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040490297", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4049029-4", "source": "GND"}], "authorized_access_point": "Region"} 1 +2024-09-11 09:10:46.6142 2024-09-11 09:10:46.614207 68cf9d3a-a7df-4ddb-92fd-5c854747adc1 {"md5": "51c82eeabd454f60852bf808dd20f224", "pid": "040459608", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Physikalische Medizin"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133995462", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85101568", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85101568"}], "authorized_access_point": "Physical therapy"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133995462", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11959340", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119593404"}], "authorized_access_point": "Physiothérapie"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254318658", "source": "GND"}, {"type": "bf:Nbn", "value": "1055", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/1055"}], "authorized_access_point": "Fisioterapia"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254473203", "source": "GND"}, {"type": "bf:Nbn", "value": "XX526722", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX526722"}], "authorized_access_point": "Fisioterapia"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4045960-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040459608", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4045960-3", "source": "GND"}], "variant_access_point": ["Physiotherapie"], "authorized_access_point": "Physikalische Therapie"} 1 +2024-09-11 09:10:46.672212 2024-09-11 09:10:46.672215 c56ada78-8940-4f92-8395-2535ac67e51e {"md5": "a2b0a881f6d51ef14632ed8d1f2cf851", "pid": "040451259", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133631479", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85099692", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85099692"}], "authorized_access_point": "Peptides"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133631479", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11940224", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119402247"}], "authorized_access_point": "Peptides"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254323341", "source": "GND"}, {"type": "bf:Nbn", "value": "2724", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/2724"}], "authorized_access_point": "Peptidi"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254471782", "source": "GND"}, {"type": "bf:Nbn", "value": "XX533740", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX533740"}], "authorized_access_point": "Péptidos"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336147156", "source": "GND"}, {"type": "bf:Nbn", "value": "D010455", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D010455"}], "authorized_access_point": "Peptides"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4045125-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040451259", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4045125-2", "source": "GND"}], "authorized_access_point": "Peptide"} 1 +2024-09-11 09:10:46.722781 2024-09-11 09:10:46.722783 62ae3352-e44c-4db6-9d5d-ebaeb8424163 {"md5": "19bb4bd577ab800fd7380eb5a2aa7fc5", "pid": "040438163", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Chemische Verbindungen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133638392", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85095499", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85095499"}], "authorized_access_point": "Organic compounds"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133638392", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11944403", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11944403s"}], "authorized_access_point": "Composés organiques"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)125431511X", "source": "GND"}, {"type": "bf:Nbn", "value": "53", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/53"}], "authorized_access_point": "Composti organici"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254469605", "source": "GND"}, {"type": "bf:Nbn", "value": "XX532834", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX532834"}], "authorized_access_point": "Compuestos orgánicos"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336147903", "source": "GND"}, {"type": "bf:Nbn", "value": "D009930", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D009930"}], "authorized_access_point": "Organic Chemicals"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4043816-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040438163", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4043816-8", "source": "GND"}], "variant_access_point": ["Organische Verbindung"], "authorized_access_point": "Organische Verbindungen"} 1 +2024-09-11 09:10:46.770177 2024-09-11 09:10:46.77018 a997aeed-1625-48b5-8fa0-feee736acf57 {"md5": "6a74e9b53cf6ba2f6ae6fc072443508c", "pid": "040432149", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Politische Ökonomie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133662560", "source": "GND"}, {"type": "bf:Nbn", "value": "sh2010107054", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh2010107054"}], "authorized_access_point": "Political science - Economic aspects"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133662560", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11963634", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11963634s"}], "authorized_access_point": "Économie politique et politique"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966926625", "source": "GND"}, {"type": "bf:Nbn", "value": "10975-4", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/10975-4"}], "authorized_access_point": "Neue politische Ökonomie"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4043214-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040432149", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4043214-2", "source": "GND"}], "variant_access_point": ["Neue Politische Ökonomie", "Politik"], "authorized_access_point": "Ökonomische Theorie der Politik"} 1 +2024-09-11 09:10:46.817528 2024-09-11 09:10:46.817531 2750c027-7575-477a-8339-6b3c17d79c51 {"md5": "4d0a239ad009706000fcbb366382bd0b", "pid": "040416496", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Zelle"}], "related": [{"authorized_access_point": "Paraneuron"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133631606", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85091153", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85091153"}], "authorized_access_point": "Neurons"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133631606", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11940272", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119402723"}], "authorized_access_point": "Neurones"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254326529", "source": "GND"}, {"type": "bf:Nbn", "value": "4023", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/4023"}], "authorized_access_point": "Neuroni"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254466584", "source": "GND"}, {"type": "bf:Nbn", "value": "XX531517", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX531517"}], "authorized_access_point": "Neuronas"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336588594", "source": "GND"}, {"type": "bf:Nbn", "value": "D009474", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D009474"}], "authorized_access_point": "Neurons"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4041649-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040416496", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4041649-5", "source": "GND"}], "variant_access_point": ["Ganglienzelle", "Neurozyt", "Neuron"], "authorized_access_point": "Nervenzelle"} 1 +2024-09-11 09:10:46.869011 2024-09-11 09:10:46.869016 27591d05-4f63-48f1-a51a-f317fe8c7813 {"md5": "004ed7911e764b5e09dc2b038e5177eb", "pid": "040406938", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Encephalomyelitis"}, {"authorized_access_point": "Entmarkungskrankheit"}], "related": [{"authorized_access_point": "Multiple-Sklerose-Kranker"}, {"authorized_access_point": "Weibliche Multiple-Sklerose-Kranke"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133629555", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85088374", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85088374"}], "authorized_access_point": "Multiple sclerosis"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133629555", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11938408", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119384088"}], "authorized_access_point": "Sclérose en plaques"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133799876", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12447406", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12447406t"}], "authorized_access_point": "Encéphalomyélite aiguë disseminée"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254355677", "source": "GND"}, {"type": "bf:Nbn", "value": "25174", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/25174"}], "authorized_access_point": "Sclerosi multipla"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254464468", "source": "GND"}, {"type": "bf:Nbn", "value": "XX528904", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX528904"}], "authorized_access_point": "Esclerosis múltiple"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1241613591", "source": "GND"}, {"type": "bf:Nbn", "value": "D009103", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D009103"}], "authorized_access_point": "Multiple Sclerosis"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)97057424X", "source": "GND"}, {"type": "bf:Nbn", "value": "10049932", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10049932"}], "authorized_access_point": "Multiple Sklerose"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4040693-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040406938", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4040693-3", "source": "GND"}], "variant_access_point": ["Encephalomyelitis disseminata"], "authorized_access_point": "Multiple Sklerose"} 1 +2024-09-11 09:10:46.926547 2024-09-11 09:10:46.92655 13c6512f-7f8a-47ab-80b1-144beee61744 {"md5": "a3d5f899639aac45dabf86acb450bae8", "pid": "040403688", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Motorradsport"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134008813", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85087573", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85087573"}], "authorized_access_point": "Motocross"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134008813", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11965366", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119653662"}], "authorized_access_point": "Motocross"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254464212", "source": "GND"}, {"type": "bf:Nbn", "value": "XX527735", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX527735"}], "authorized_access_point": "Motocross"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4040368-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040403688", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4040368-3", "source": "GND"}], "authorized_access_point": "Moto-Cross"} 1 +2024-09-11 09:10:46.972272 2024-09-11 09:10:46.972275 dbec74bb-6e80-4d0e-89ad-4c671d7c1dca {"md5": "944bd42e917db661a551ec055b2b8522", "pid": "040389065", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Chemische Verbindungen"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133724973", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85095561", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85095561"}], "authorized_access_point": "Organometallic compounds"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133724973", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12128919", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12128919v"}], "authorized_access_point": "Composés organométalliques"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1299901581", "source": "GND"}, {"type": "bf:Nbn", "value": "XX528416", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX528416"}], "authorized_access_point": "Compuestos organometálicos"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336147954", "source": "GND"}, {"type": "bf:Nbn", "value": "D009942", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D009942"}], "authorized_access_point": "Organometallic Compounds"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4038906-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040389065", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4038906-6", "source": "GND"}], "variant_access_point": ["Metallorganyle", "Organische Metallverbindungen", "Organometallverbindungen", "Metallierte Verbindungen"], "authorized_access_point": "Metallorganische Verbindungen"} 1 +2024-09-11 09:10:47.025178 2024-09-11 09:10:47.025184 065df520-bb54-4fc5-bbdc-d00b9d5361f5 {"md5": "c9cc25243ac8f9be161b80f2448c7ae5", "pid": "040335682", "note": [{"label": ["Benutzt für Auseinandersetzungen zwischen Kirche u. Staat im weiteren Sinne, u. zwar in Deutschland - auch nach Bismarck - sowie in anderen Ländern; verknüpfe mit Ort u. Zeit; für den nationalsozialistischen Kirchenkampf benutze SW Kirchenkampf <1933-1945>"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133964583", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85073404", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85073404"}], "authorized_access_point": "Kulturkampf"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133964583", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11947326", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11947326w"}], "authorized_access_point": "Kulturkampf"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254453180", "source": "GND"}, {"type": "bf:Nbn", "value": "XX5526666", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX5526666"}], "authorized_access_point": "Kulturkampf"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970567138", "source": "GND"}, {"type": "bf:Nbn", "value": "10050254", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10050254"}], "authorized_access_point": "Kulturkampf"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4033568-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040335682", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4033568-9", "source": "GND"}], "variant_access_point": ["Kirchenkampf (Kulturkampf)"], "authorized_access_point": "Kulturkampf"} 1 +2024-09-11 09:10:47.079274 2024-09-11 09:10:47.079277 da1da815-7668-4bf2-bc6b-f2c5b22d05bc {"md5": "44cc37ab34d08f99e001ef0161e143bd", "pid": "040328260", "note": [{"label": ["Ab dem 1.1.2004 neue offizielle Berufsbezeichnung in Dtld: \\"Gesundheits- und Krankenpflegerin\\". Vorher ausgebildete Pflegekräfte können wahlweise die alte oder die neue Berufsbezeichnung führen.", "Als Homonymenzusatz bei Personenschlagwörtern zugelassen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Pflegepersonal"}], "related": [{"authorized_access_point": "Krankenpfleger"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133947042", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85093349", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85093349"}], "authorized_access_point": "Nurses"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133947042", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11939194", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119391943"}], "authorized_access_point": "Infirmières"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133465350X", "source": "GND"}, {"type": "bf:Nbn", "value": "D009726", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D009726"}], "authorized_access_point": "Nurses"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)97056628X", "source": "GND"}, {"type": "bf:Nbn", "value": "10045518", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10045518"}], "authorized_access_point": "Krankenschwester"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4032826-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040328260", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4032826-0", "source": "GND"}], "variant_access_point": ["Gesundheits- und Krankenpflegerin", "Krankenpflegerin", "Pflegefachfrau", "Nurse"], "authorized_access_point": "Krankenschwester"} 1 +2024-09-11 09:10:47.128177 2024-09-11 09:10:47.128182 4d6e3800-3de3-429a-91af-4ddfde027732 {"md5": "1a3bb16fcb1a987f4004bdd37c18308d", "pid": "04032009X", "note": [{"label": ["Mit einzelnen Richtungen u. Gattungen werden keine Komposita gebildet. Als Homonymenzusatz bei Personenschlagwörtern zugelassen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Musiker"}], "related": [{"authorized_access_point": "Komponistin"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133614000", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85029386", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85029386"}], "authorized_access_point": "Composers"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133614000", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11931721", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11931721m"}], "authorized_access_point": "Compositeurs"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254315225", "source": "GND"}, {"type": "bf:Nbn", "value": "72", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/72"}], "authorized_access_point": "Compositori"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970564929", "source": "GND"}, {"type": "bf:Nbn", "value": "10049435", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10049435"}], "authorized_access_point": "Komponist"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4032009-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04032009X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4032009-1", "source": "GND"}], "authorized_access_point": "Komponist"} 1 +2024-09-11 09:10:47.178154 2024-09-11 09:10:47.178158 568c1d1a-96e8-40ef-8ffa-efacc0a8dee1 {"md5": "d1ca36de8bd4383fa0d759e732464438", "pid": "040252434", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=243780470"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Hochschullehrerin"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)129155713X", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85028378", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85028378"}], "authorized_access_point": "College teachers"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)129155713X", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11947431", "source": "BNF"}, {"type": "uri", "value": "https://ark.bnf.fr/ark:/12148/cb11947431r"}], "authorized_access_point": "Professeurs (enseignement supérieur)"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966775546", "source": "GND"}, {"type": "bf:Nbn", "value": "11372-1", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/11372-1"}], "authorized_access_point": "Hochschullehrer"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970557574", "source": "GND"}, {"type": "bf:Nbn", "value": "10041291", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10041291"}], "authorized_access_point": "Hochschullehrer"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4025243-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040252434", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4025243-7", "source": "GND"}], "variant_access_point": ["Professor (Hochschule)", "Lehrkörper", "Lehrpersonal", "Universitätsprofessor", "Hochschulprofessor"], "authorized_access_point": "Hochschullehrer"} 1 +2024-09-11 09:10:47.2433 2024-09-11 09:10:47.243304 505b5eb0-fa30-4192-8294-af15f7dbe4d2 {"md5": "d6a385a337f1642de85cc82261940fb0", "pid": "040247996", "note": [{"label": ["Als Berufsbezeichnung in Personendatensätzen zugelassen; als Berufsbezeichnung in Personendatensätzen nur für Personen zu verwenden, die sich als praktizierende Hexen verstehen und diesen Begriff als Selbstbezeichnung verwenden; für die Opfer von Hexenprozessen verwende SW Weibliche Angeklagte in Kombination mit SW Hexenprozess, beide jeweils mit dem Code rela"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Hexerei"}, {"authorized_access_point": "Magier"}, {"authorized_access_point": "Hexenglaube"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134220030", "source": "GND"}, {"type": "bf:Nbn", "value": "sh92005718", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh92005718"}], "authorized_access_point": "Witches"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134220030", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12226069", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb12226069m"}], "authorized_access_point": "Sorcières"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254439862", "source": "GND"}, {"type": "bf:Nbn", "value": "XX528134", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX528134"}], "authorized_access_point": "Brujas"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)97055723X", "source": "GND"}, {"type": "bf:Nbn", "value": "10046607", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10046607"}], "authorized_access_point": "Hexe"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4024799-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040247996", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4024799-5", "source": "GND"}], "variant_access_point": ["Hexenwesen", "Hexen"], "authorized_access_point": "Hexe"} 1 +2024-09-11 09:10:47.29579 2024-09-11 09:10:47.295793 f76a6095-b2d6-4bcc-9f2a-7215bb17d08e {"md5": "4f2fa8fecca06a134a903aa44701e11a", "pid": "04024055X", "note": [{"label": ["Benutzt für männliche heilige Personen und die Personengruppe im Plural; als identifizierender Zusatz und als instantieller Oberbegriff bei männlichen heiligen Personen obligatorisch gem. EH-P-10 zur GND nach RDA"], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Namenspatron"}, {"authorized_access_point": "Heilige"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134039107", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85116629", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85116629"}], "authorized_access_point": "Saints"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134039107", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11975976", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb119759767"}], "authorized_access_point": "Saints"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254325468", "source": "GND"}, {"type": "bf:Nbn", "value": "3549", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/3549"}], "authorized_access_point": "Santi"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254439153", "source": "GND"}, {"type": "bf:Nbn", "value": "XX526019", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX526019"}], "authorized_access_point": "Santos cristianos"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4024055-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04024055X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4024055-1", "source": "GND"}], "variant_access_point": ["Nothelfer"], "authorized_access_point": "Heiliger"} 1 +2024-09-11 09:10:47.349461 2024-09-11 09:10:47.349464 81caa79c-34a2-4c6e-8de3-48937fb2f70b {"md5": "19b58b780269fab78b0a5042f272494c", "pid": "040205487", "note": [{"label": ["Wikipedia unter Gender Studies - https://de.wikipedia.org/w/index.php?oldid=244279195"], "noteType": "dataSource"}, {"label": ["Allg. Bezeichnung für die strukturell verankerten Beziehungen zwischen den Geschlechtern (im Hinblick auf Zuständigkeiten, Rechte und Pflichten, Rollenbesetzungen und Geschlechtsidentitäten usw.)", "Kombiniere z.B. mit Region, Untersuchungsaspekt und/oder Personengruppen. Für Geschlechterverhältnis im Sinne des rein zahlenmäßigen Verhältnisses innerhalb einer Population (Geschlechterverteilung) nutze SW \\"Geschlechterverhältnis \\""], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Heteronormativität"}, {"authorized_access_point": "Gender"}, {"authorized_access_point": "Geschlechterverhältnis (Demographie)"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133940080", "source": "GND"}, {"type": "bf:Nbn", "value": "sh92001504", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh92001504"}], "authorized_access_point": "Man-woman relationships"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133940080", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11936576", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11936576j"}], "authorized_access_point": "Relations hommes-femmes"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254434763", "source": "GND"}, {"type": "bf:Nbn", "value": "XX541405", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX541405"}], "authorized_access_point": "Relaciones de pareja"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970553765", "source": "GND"}, {"type": "bf:Nbn", "value": "10064589", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10064589"}], "authorized_access_point": "Geschlechterverhältnis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4020548-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040205487", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4020548-4", "source": "GND"}], "variant_access_point": ["Geschlechterbeziehung", "Geschlechterverhältnisse", "Geschlechterbeziehungen", "Gender relationship"], "authorized_access_point": "Geschlechterverhältnis"} 1 +2024-09-11 09:10:47.434468 2024-09-11 09:10:47.434477 d8c94388-595a-4a0f-95ff-98e43968c3af {"md5": "e5c3f6c59462ae08b492f314d8d3efc2", "pid": "040189074", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Elektromagnetische_St%C3%B6rung&oldid=191732329"], "noteType": "dataSource"}, {"label": ["Elektromagnetische Störung (auch Funkstörung) ist die Auswirkung einer durch Aussendung, Ausstrahlung oder Induktion (oder durch die Kombination von Aussendungen, Ausstrahlungen oder Induktionen) entstehende unerwünschte Energie auf den Empfang in einem Funksystem; diese Auswirkung macht sich durch Verschlechterung der Übertragungsgüte, durch Entstellung oder Verlust von Nachrichteninhalten bemerkbar, welche bei Fehlen dieser unerwünschten Energie verfügbar wäre."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Störstrahlung"}, {"authorized_access_point": "Elektromagnetische Verträglichkeit"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4018907-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040189074", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4018907-7", "source": "GND"}], "variant_access_point": ["Elektromagnetische Störung", "electromagnetic interference"], "authorized_access_point": "Funkstörung"} 1 +2024-09-11 09:10:47.565409 2024-09-11 09:10:47.565413 01bee050-3dc7-4764-91ae-b5b272d30225 {"md5": "65569ab96449f6e76c5cae58fac79a7c", "pid": "04009006X", "note": [{"label": ["Als Sachbegriff nur benutzt für Zentralstaat und die Bundesebene im Bundesstaat. Für die Gliedstaaten benutze als Sachbegriff die jeweils übliche Bezeichnung, z.B. SW Bundesstaaten für USA, Bundesland für Österreich, Länder für Deutschland, Provinz für Kanada, Kanton für die Schweiz usw. und Staat im Allgemeinen. Als instanzieller Oberbegriff bei der Erfassung von Bundesstaat als Gliedstaat soll Staat (gnd/4056618-3) verwendet werden."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Staatenverbindung"}], "related": [{"authorized_access_point": "Föderalismus"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134498322", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85047611", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85047611"}], "authorized_access_point": "Federal government"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134498322", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13318437", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13318437p"}], "authorized_access_point": "Gouvernement fédéral"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254368582", "source": "GND"}, {"type": "bf:Nbn", "value": "35834", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/35834"}], "authorized_access_point": "Governo federale"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970540604", "source": "GND"}, {"type": "bf:Nbn", "value": "10039967", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10039967"}], "authorized_access_point": "Bund"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970541031", "source": "GND"}, {"type": "bf:Nbn", "value": "10040040", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10040040"}], "authorized_access_point": "Bundesstaat"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4009006-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04009006X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4009006-1", "source": "GND"}], "variant_access_point": ["Zentralstaat", "Bund (Bundesstaat)", "Bund"], "authorized_access_point": "Bundesstaat"} 1 +2024-09-11 09:10:47.635855 2024-09-11 09:10:47.635859 8e7743bb-d794-4096-82b9-3f65ecbf7038 {"md5": "89bf69ebf5aac2259a9fb541cbe248e6", "pid": "040085287", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Krebs (Medizin)"}, {"authorized_access_point": "Brustkrankheit"}], "related": [{"authorized_access_point": "Gen BRCA 2"}, {"authorized_access_point": "Gen BRCA 1"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133619894", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85016679", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85016679"}], "authorized_access_point": "Breast - Cancer"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133619894", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11933256", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11933256c"}], "authorized_access_point": "Sein - Cancer"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254414827", "source": "GND"}, {"type": "bf:Nbn", "value": "XX575163", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX575163"}], "authorized_access_point": "Mamas - Cáncer"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)124159466X", "source": "GND"}, {"type": "bf:Nbn", "value": "D001943", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D001943"}], "authorized_access_point": "Breast Neoplasms"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4008528-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040085287", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4008528-4", "source": "GND"}], "variant_access_point": ["Brustdrüsenkrebs", "Carcinoma mammae", "Mammacarcinom", "Mammakarzinom"], "authorized_access_point": "Brustkrebs"} 1 +2024-09-11 09:10:47.70676 2024-09-11 09:10:47.706764 ff42094f-b111-4959-814b-b9471e30b31d {"md5": "3d5056a7ca092928d58cc76d166764e7", "pid": "040085244", "note": [{"label": ["Benutzt für physiolog. u. anatomische Sachverhalte, für kulturgeschichtliche sowie erotische u. sonstige Symbolik verwende das SW Busen."], "noteType": "general"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134518315", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85016677", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85016677"}], "authorized_access_point": "Breast"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134518315", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11938328", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11938328m"}], "authorized_access_point": "Sein"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254337466", "source": "GND"}, {"type": "bf:Nbn", "value": "12086", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/12086"}], "authorized_access_point": "Mammelle"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4008524-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040085244", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4008524-7", "source": "GND"}], "variant_access_point": ["Brust", "Busen (Anatomie)", "Weibliche Brust"], "authorized_access_point": "Mamma"} 1 +2024-09-11 09:10:47.774163 2024-09-11 09:10:47.774167 33768d56-acab-42f7-aa31-f64c92c79cbb {"md5": "6959757742e53c4e9452b6315d1b4689", "pid": "040078124", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134253192", "source": "GND"}, {"type": "bf:Nbn", "value": "sh89002772", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh89002772"}], "authorized_access_point": "Boron compounds"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134253192", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12274183", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb122741830"}], "authorized_access_point": "Bore - Composés"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)133614856X", "source": "GND"}, {"type": "bf:Nbn", "value": "D001896", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D001896"}], "authorized_access_point": "Boron Compounds"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4007812-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040078124", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4007812-7", "source": "GND"}], "authorized_access_point": "Borverbindungen"} 1 +2024-09-11 09:10:47.842591 2024-09-11 09:10:47.842596 16af477e-73d0-477c-8297-bc9116e8c83b {"md5": "6e5cf1062da15f816ca03652255055bb", "pid": "040068560", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Biologische Landwirtschaft"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134597304", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85095504", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85095504"}], "authorized_access_point": "Organic farming"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134597304", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11930852", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11930852x"}], "authorized_access_point": "Agriculture biologique"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256197114", "source": "GND"}, {"type": "bf:Nbn", "value": "15912", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_15912"}], "authorized_access_point": "biodynamic agriculture"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4006856-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040068560", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4006856-0", "source": "GND"}], "variant_access_point": ["Biologisch-dynamischer Landbau", "Biologisch-dynamische Landwirtschaft", "Biodynamische Landwirtschaft", "Biodynamie", "Biodynamischer Anbau", "Dynamisch-biologische Landwirtschaft", "Landwirtschaft"], "authorized_access_point": "Biologisch-dynamische Wirtschaftsweise"} 1 +2024-09-11 09:10:47.903276 2024-09-11 09:10:47.90328 fd0cfb40-70b3-4686-9446-c0f39a59f9cd {"md5": "ab974dd2da95b46eeb76552be1da1486", "pid": "040062120", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Stilllegung"}], "related": [{"authorized_access_point": "Betriebsaufgabe"}, {"authorized_access_point": "Betriebsschließung"}, {"authorized_access_point": "Betriebsunterbrechung"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1335075461", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85102810f", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85102810"}], "authorized_access_point": "Plant shutdowns"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1335075461", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF12069852", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb120698529"}], "authorized_access_point": "Entreprises - Disparition"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970538766", "source": "GND"}, {"type": "bf:Nbn", "value": "10038913", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10038913"}], "authorized_access_point": "Betriebsstillegung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4006212-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040062120", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4006212-0", "source": "GND"}], "variant_access_point": ["Betrieb", "Betriebsstillegung"], "authorized_access_point": "Betriebsstilllegung"} 1 +2024-09-11 09:10:47.981479 2024-09-11 09:10:47.981484 9ff2a677-39a4-4257-b3ad-0d3b024c08f4 {"md5": "a33d77f907bd71b0e8dc92cb955072d1", "pid": "040036774", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "related": [{"authorized_access_point": "Extraktivismus"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133864414", "source": "GND"}, {"type": "bf:Nbn", "value": "sh96000331", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh96000331"}], "authorized_access_point": "Exploitation"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133864414", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF13536692", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb13536692n"}], "authorized_access_point": "Exploitation de l'homme par l'homme"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970535007", "source": "GND"}, {"type": "bf:Nbn", "value": "10037031", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10037031"}], "authorized_access_point": "Ausbeutung"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)966854969", "source": "GND"}, {"type": "bf:Nbn", "value": "30410-5", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/30410-5"}], "authorized_access_point": "Ausbeutung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4003677-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040036774", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4003677-7", "source": "GND"}], "authorized_access_point": "Ausbeutung"} 1 +2024-09-11 09:10:48.048889 2024-09-11 09:10:48.048893 31a8de0a-fdb3-4145-b928-9d2237a4ecfb {"md5": "d48ff120a152fb5e27acb6c8f2c886d8", "pid": "040030415", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Stickstoffgruppe"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134516541", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85007449", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85007449"}], "authorized_access_point": "Arsenic"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134516541", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11971740", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11971740q"}], "authorized_access_point": "Arsenic"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254356185", "source": "GND"}, {"type": "bf:Nbn", "value": "25597", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/25597"}], "authorized_access_point": "Arsenico"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254406638", "source": "GND"}, {"type": "bf:Nbn", "value": "XX535902", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX535902"}], "authorized_access_point": "Arsénico"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256192597", "source": "GND"}, {"type": "bf:Nbn", "value": "629", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_629"}], "authorized_access_point": "arsenic"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4003041-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040030415", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4003041-6", "source": "GND"}], "authorized_access_point": "Arsen"} 1 +2024-09-11 09:10:48.10299 2024-09-11 09:10:48.102994 202151bf-0eee-473f-a370-8a39307296a4 {"md5": "bce302e17b5666c08872764dd430c275", "pid": "040021475", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Chemische Verbindungen"}, {"authorized_access_point": "Anorganischer Stoff"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134045263", "source": "GND"}, {"type": "bf:Nbn", "value": "sh86005967", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh86005967"}], "authorized_access_point": "Inorganic compounds"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1134045263", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11977078", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11977078x"}], "authorized_access_point": "Composés inorganiques"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254317880", "source": "GND"}, {"type": "bf:Nbn", "value": "789", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/789"}], "authorized_access_point": "Composti inorganici"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254404813", "source": "GND"}, {"type": "bf:Nbn", "value": "XX533227", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX533227"}], "authorized_access_point": "Compuestos inorgánicos"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1336148381", "source": "GND"}, {"type": "bf:Nbn", "value": "D007287", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D007287"}], "authorized_access_point": "Inorganic Chemicals"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4002147-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040021475", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4002147-6", "source": "GND"}], "variant_access_point": ["Anorganische Verbindung"], "authorized_access_point": "Anorganische Verbindungen"} 1 +2024-09-11 09:10:48.179244 2024-09-11 09:10:48.179249 1f495183-9b70-412a-8cdd-69045731c147 {"md5": "7ff23ac20da6465952f2ed950404fa4c", "pid": "040021459", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Chemie"}], "closeMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133687520", "source": "GND"}, {"type": "bf:Nbn", "value": "sh85023017", "source": "DLC"}, {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85023017"}], "authorized_access_point": "Chemistry, Inorganic"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1133687520", "source": "GND"}, {"type": "bf:Nbn", "value": "FRBNF11978675", "source": "BNF"}, {"type": "uri", "value": "https://data.bnf.fr/ark:/12148/cb11978675s"}], "authorized_access_point": "Chimie inorganique"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254352333", "source": "GND"}, {"type": "bf:Nbn", "value": "22797", "source": "IT"}, {"type": "uri", "value": "http://purl.org/bncf/tid/22797"}], "authorized_access_point": "Chimica inorganica"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1254404805", "source": "GND"}, {"type": "bf:Nbn", "value": "XX525776", "source": "SPMABN"}, {"type": "uri", "value": "https://datos.bne.es/resource/XX525776"}], "authorized_access_point": "Química inorgánica"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1328566218", "source": "GND"}, {"type": "bf:Nbn", "value": "D015392", "source": "DNLM"}, {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D015392"}], "authorized_access_point": "Chemistry, Inorganic"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4002145-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040021459", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4002145-2", "source": "GND"}], "authorized_access_point": "Anorganische Chemie"} 1 diff --git a/data/cognd_pidstore.csv b/data/cognd_pidstore.csv new file mode 100644 index 00000000..0c24dc07 --- /dev/null +++ b/data/cognd_pidstore.csv @@ -0,0 +1,2124 @@ +2024-09-11 09:08:43.909268 2024-09-11 09:08:43.909301 cognd 1334542139 R rec 38719915-d3ce-47fb-be1a-890442e882b9 +2024-09-11 09:08:44.004419 2024-09-11 09:08:44.004425 cognd 1334538549 R rec bdbf3909-1094-4feb-981f-d0a9d153a3d5 +2024-09-11 09:08:44.058074 2024-09-11 09:08:44.058079 cognd 1334484775 R rec c269dfed-5f4b-41c8-8a98-6dc6758c2dfb +2024-09-11 09:08:44.117213 2024-09-11 09:08:44.117219 cognd 1334336342 R rec 901be49d-44f4-4566-9f67-ba73963597d0 +2024-09-11 09:08:44.172185 2024-09-11 09:08:44.17219 cognd 1334320462 R rec bbc3132b-6aa4-45e0-8d39-3b263e048cf3 +2024-09-11 09:08:44.228617 2024-09-11 09:08:44.228623 cognd 1334314950 R rec cc0ac9a2-d026-449b-9d9d-38243e3967bd +2024-09-11 09:08:44.284266 2024-09-11 09:08:44.284272 cognd 1334231826 R rec 1a892206-6e14-4b8f-a99d-7f97676edcd8 +2024-09-11 09:08:44.334982 2024-09-11 09:08:44.334988 cognd 1334230463 R rec 9e6c3310-3d59-4420-8abd-ea07b833de9a +2024-09-11 09:08:44.386586 2024-09-11 09:08:44.386591 cognd 1334227209 R rec 0a17e4f2-704f-4bfe-bc3e-e741778cdcd1 +2024-09-11 09:08:44.439071 2024-09-11 09:08:44.439076 cognd 1334225907 R rec 9a1f7670-4148-454a-9eb1-32e432454920 +2024-09-11 09:08:44.491135 2024-09-11 09:08:44.491141 cognd 1334131074 R rec d51d7c38-2cf9-4b0b-a0e1-fea64d375097 +2024-09-11 09:08:44.543011 2024-09-11 09:08:44.543016 cognd 1334127158 R rec ddc336d7-d34c-400d-916b-f343cc21d765 +2024-09-11 09:08:44.594164 2024-09-11 09:08:44.594169 cognd 1334091412 R rec c75ded5a-a045-4387-a26c-1458d3c4bbb7 +2024-09-11 09:08:44.651327 2024-09-11 09:08:44.651332 cognd 1334089663 R rec 8a3699f2-3f92-45a7-a341-5d5d24c03349 +2024-09-11 09:08:44.704506 2024-09-11 09:08:44.704511 cognd 1334088837 R rec 0eec8860-9b63-40f4-a900-c24c14d90b27 +2024-09-11 09:08:44.770591 2024-09-11 09:08:44.770597 cognd 1334088217 R rec 11cafe82-1337-4038-937c-6038bd10c82a +2024-09-11 09:08:44.820326 2024-09-11 09:08:44.820332 cognd 1334087156 R rec 07c24a80-f8ce-47ac-857d-fff875cfb78e +2024-09-11 09:08:44.870559 2024-09-11 09:08:44.870565 cognd 133400076X R rec 2c987098-7f5f-4e01-8318-8a5c4d5559f3 +2024-09-11 09:08:44.952319 2024-09-11 09:08:44.952324 cognd 1333993331 R rec 99a3421b-f374-40f0-b2ee-962c405429a0 +2024-09-11 09:08:45.004658 2024-09-11 09:08:45.004663 cognd 1333992548 R rec 5347eeca-a08e-4b2d-aded-bdae3b1780e9 +2024-09-11 09:08:45.058748 2024-09-11 09:08:45.058754 cognd 1333987366 R rec f0b6343b-14c0-4f2c-b92d-b6f28b726fc5 +2024-09-11 09:08:45.109185 2024-09-11 09:08:45.10919 cognd 133396420X R rec fa4eb04f-083b-4279-83b7-17b931883b0d +2024-09-11 09:08:45.161952 2024-09-11 09:08:45.161957 cognd 1333876874 R rec 1fd27323-9d23-49f9-b3a8-1134d95621e2 +2024-09-11 09:08:45.213355 2024-09-11 09:08:45.21336 cognd 1333855907 R rec 5d8135f0-5843-4129-8350-ff050a3b7c44 +2024-09-11 09:08:45.263973 2024-09-11 09:08:45.263979 cognd 133385501X R rec 03a8fb00-f900-4408-b599-49992fde9be0 +2024-09-11 09:08:45.315904 2024-09-11 09:08:45.315909 cognd 1333853084 R rec 7463eb59-0f7e-4829-b5cb-7aff4258a47d +2024-09-11 09:08:45.370061 2024-09-11 09:08:45.370068 cognd 1333852673 R rec 2e4a46a6-419b-4ad1-804f-8454541482d6 +2024-09-11 09:08:45.467574 2024-09-11 09:08:45.467579 cognd 1333849788 R rec abd65a7d-39c2-44ec-81ef-fd7dc0d92a6b +2024-09-11 09:08:45.520524 2024-09-11 09:08:45.520529 cognd 1333849435 R rec 336755cb-dac0-4fa7-9096-8453370d997a +2024-09-11 09:08:45.573548 2024-09-11 09:08:45.573553 cognd 1333729863 R rec bbd1e737-f12b-468f-89d4-8945641c7aab +2024-09-11 09:08:45.625211 2024-09-11 09:08:45.625217 cognd 1333716354 R rec 2c95f97e-321f-4a95-bced-7d09cf268363 +2024-09-11 09:08:45.678262 2024-09-11 09:08:45.678267 cognd 1333566352 R rec c0421bba-31a4-48c8-8599-43853e6e5037 +2024-09-11 09:08:45.729262 2024-09-11 09:08:45.729266 cognd 1333421427 R rec 031f6c3c-f152-4b5f-9420-bb14ce83809c +2024-09-11 09:08:45.78122 2024-09-11 09:08:45.781226 cognd 1333376049 R rec 8749e28a-abe4-4ac5-9cf6-d6e76e720291 +2024-09-11 09:08:45.834022 2024-09-11 09:08:45.834026 cognd 133335245X R rec 1f6c7ecc-08ef-4307-8c80-107f9952674d +2024-09-11 09:08:45.883807 2024-09-11 09:08:45.883812 cognd 1333352085 R rec 1e43b977-334e-420c-abfc-f60ac8dd657a +2024-09-11 09:08:45.934444 2024-09-11 09:08:45.934449 cognd 1333331002 R rec 99bc749f-8593-4b1d-b482-c470f3577d23 +2024-09-11 09:08:45.984926 2024-09-11 09:08:45.984932 cognd 1333323778 R rec 57dd8ee6-14b8-4d50-87c8-7214b268ac75 +2024-09-11 09:08:46.042044 2024-09-11 09:08:46.04205 cognd 1333312415 R rec b5a4ad55-c024-4174-a342-21fc88e8e215 +2024-09-11 09:08:46.104942 2024-09-11 09:08:46.104947 cognd 1333312326 R rec 8807197e-23b6-475b-86ae-a623bcb69487 +2024-09-11 09:08:46.165173 2024-09-11 09:08:46.165177 cognd 1333270267 R rec 4a9a4b90-7c38-4216-89ee-32714fa8d50c +2024-09-11 09:08:46.244416 2024-09-11 09:08:46.244421 cognd 133326514X R rec 95bdb931-b1ad-409c-b6c1-9d15afb99ce7 +2024-09-11 09:08:46.299125 2024-09-11 09:08:46.299131 cognd 1333260830 R rec 927479fa-0d50-475c-b588-9a0735f5a03d +2024-09-11 09:08:46.348736 2024-09-11 09:08:46.348742 cognd 1333256302 R rec 67b8c93c-506f-4cb1-bd1d-edea176fc6f9 +2024-09-11 09:08:46.396476 2024-09-11 09:08:46.396482 cognd 133325590X R rec 482a3415-6a4a-4bad-9f7a-6684266bf90c +2024-09-11 09:08:46.446901 2024-09-11 09:08:46.446907 cognd 1333255616 R rec 06118035-3ac5-4183-8f27-7997b81c0dc2 +2024-09-11 09:08:46.4944 2024-09-11 09:08:46.494405 cognd 1333210043 R rec bc209657-04bc-4248-bb86-5b9f8bb80aeb +2024-09-11 09:08:46.543457 2024-09-11 09:08:46.543464 cognd 1333209908 R rec 9ef68ea8-465c-46a1-91b0-7dbaf947aab8 +2024-09-11 09:08:46.596856 2024-09-11 09:08:46.59686 cognd 1333208901 R rec 22bbf1d8-04cb-4fec-b4c5-92c9c208cee8 +2024-09-11 09:08:46.648724 2024-09-11 09:08:46.648729 cognd 1333141017 R rec 10258aff-bf68-46c6-a44d-e5312b208054 +2024-09-11 09:08:46.700633 2024-09-11 09:08:46.700638 cognd 1333125127 R rec 4dd19e0d-cc17-4ef5-8a2b-f5daddf12c43 +2024-09-11 09:08:46.751983 2024-09-11 09:08:46.751989 cognd 1333119267 R rec 21933dc1-163c-48bf-a6d9-f52fce3f34a9 +2024-09-11 09:08:46.80912 2024-09-11 09:08:46.809125 cognd 1333118023 R rec eb2ba512-0349-4f34-8fba-104162916fd9 +2024-09-11 09:08:46.859995 2024-09-11 09:08:46.860001 cognd 1333117329 R rec ecf3de89-b6a1-4ece-97b2-2a313c2e2c50 +2024-09-11 09:08:46.915901 2024-09-11 09:08:46.915907 cognd 1333115881 R rec 69429341-caf1-49f0-a5ba-fee9a8782c9b +2024-09-11 09:08:46.973819 2024-09-11 09:08:46.973824 cognd 1333113749 R rec 18682fb1-cdd0-450e-9865-c07f3d183414 +2024-09-11 09:08:47.025096 2024-09-11 09:08:47.0251 cognd 1333065841 R rec 37ba6054-be97-4e11-9336-1179a49fa1cd +2024-09-11 09:08:47.077911 2024-09-11 09:08:47.077916 cognd 1333064136 R rec 3648b21f-b324-4e0a-bd50-a5f8a62e84cb +2024-09-11 09:08:47.130312 2024-09-11 09:08:47.130318 cognd 1333063970 R rec 1a3080c3-9c7e-43aa-bba2-a596ef2f3ec6 +2024-09-11 09:08:47.188456 2024-09-11 09:08:47.188461 cognd 1333063717 R rec f77422da-c93c-4ba4-84e6-db9011bb0be9 +2024-09-11 09:08:47.240785 2024-09-11 09:08:47.24079 cognd 133306179X R rec 35b76d2b-13d4-4925-a36f-6da9894dcebb +2024-09-11 09:08:47.291903 2024-09-11 09:08:47.291909 cognd 1333037414 R rec dd5f0514-54b5-4aa1-b6e0-275070b62789 +2024-09-11 09:08:47.349426 2024-09-11 09:08:47.349431 cognd 1333027249 R rec 846b96f3-da60-4e55-b1d6-a561d8f8f8da +2024-09-11 09:08:47.407544 2024-09-11 09:08:47.40755 cognd 1332990258 R rec 96e18e79-0456-4d1c-8eb9-efb43ab6deed +2024-09-11 09:08:47.470634 2024-09-11 09:08:47.470639 cognd 1332899730 R rec 3a095bfa-bae9-4c28-b59a-cbd843f06116 +2024-09-11 09:08:47.521956 2024-09-11 09:08:47.521961 cognd 1332895018 R rec 8b8655b7-1779-4c5f-b078-c77868226205 +2024-09-11 09:08:47.571631 2024-09-11 09:08:47.571637 cognd 1332889549 R rec bd56d123-e875-4f44-85ef-b2ac854c8d83 +2024-09-11 09:08:47.630149 2024-09-11 09:08:47.630154 cognd 1332775381 R rec 7a258936-e277-4e4f-8d47-caf3ca62f8ab +2024-09-11 09:08:47.681107 2024-09-11 09:08:47.681112 cognd 1332774113 R rec 951b5b8c-2780-4233-b029-b9a32bee557e +2024-09-11 09:08:47.73406 2024-09-11 09:08:47.734066 cognd 133276648X R rec cf3d28de-2d1e-4d35-b8f9-aea245724269 +2024-09-11 09:08:47.785117 2024-09-11 09:08:47.785122 cognd 1332759254 R rec 9b24879b-2c18-4aea-a4f0-32cc33afac93 +2024-09-11 09:08:47.838776 2024-09-11 09:08:47.838782 cognd 1332688047 R rec 01d36a58-124f-4a04-adc3-28720ac27b47 +2024-09-11 09:08:47.893197 2024-09-11 09:08:47.893203 cognd 1332661297 R rec d141dad9-7bf4-4b25-b686-24d916fa996a +2024-09-11 09:08:47.940283 2024-09-11 09:08:47.940288 cognd 1332657273 R rec 9a48e9f3-6568-4a38-9593-7688cc3b5203 +2024-09-11 09:08:47.990448 2024-09-11 09:08:47.990454 cognd 1332649688 R rec f07cef41-61e2-4852-97e1-7e649deed060 +2024-09-11 09:08:48.046091 2024-09-11 09:08:48.046097 cognd 1332459587 R rec 85f19506-0827-4027-9270-74176f5c5f48 +2024-09-11 09:08:48.097954 2024-09-11 09:08:48.09796 cognd 1332430376 R rec 01c2ada4-860c-4fe8-ac43-fac2bae57602 +2024-09-11 09:08:48.153065 2024-09-11 09:08:48.15307 cognd 1332426751 R rec 9d43a78d-b2ac-44dc-aef8-24ac55127135 +2024-09-11 09:08:48.207044 2024-09-11 09:08:48.207049 cognd 1332365841 R rec 7e0b4986-214f-4307-a57f-74d18194167a +2024-09-11 09:08:48.26022 2024-09-11 09:08:48.260225 cognd 1332318142 R rec 37c50e9d-16bf-4155-9f81-55b9a35da79f +2024-09-11 09:08:48.312196 2024-09-11 09:08:48.312201 cognd 1332111971 R rec c8afeb25-8ba1-4880-b007-fcba87d58910 +2024-09-11 09:08:48.364618 2024-09-11 09:08:48.364623 cognd 1332095119 R rec 4351fb22-aa84-4cd7-974c-a0a42753ca59 +2024-09-11 09:08:48.41938 2024-09-11 09:08:48.419385 cognd 133197612X R rec 9dd27903-3e7b-46c5-b805-e9d7e55b4277 +2024-09-11 09:08:48.472235 2024-09-11 09:08:48.472241 cognd 133197593X R rec cc8d86f4-7f7a-42a5-8e64-06c6280ec719 +2024-09-11 09:08:48.525237 2024-09-11 09:08:48.525243 cognd 1331975794 R rec 3e302e03-948d-45ff-9b23-66c8368f5956 +2024-09-11 09:08:48.578106 2024-09-11 09:08:48.578112 cognd 1331886929 R rec fe2f880b-8160-409a-84e1-ddaa6849033e +2024-09-11 09:08:48.630757 2024-09-11 09:08:48.630762 cognd 1331876540 R rec 4d11b0c2-e6d9-4d14-9f95-160ff4b1327c +2024-09-11 09:08:48.69028 2024-09-11 09:08:48.690286 cognd 1331840627 R rec 74a5a862-e66c-4df6-bbd0-d095df1d0aa9 +2024-09-11 09:08:48.759211 2024-09-11 09:08:48.759217 cognd 1331747716 R rec 357c8a4b-b752-43af-ac2a-f343a793b9d2 +2024-09-11 09:08:48.816258 2024-09-11 09:08:48.816265 cognd 1331734126 R rec 1b08a79a-2f6f-4d80-8dc1-b47558c2dc8a +2024-09-11 09:08:48.872163 2024-09-11 09:08:48.872168 cognd 1331734045 R rec 2a87d663-6ed6-4688-884b-ff48c6897e83 +2024-09-11 09:08:48.926821 2024-09-11 09:08:48.926828 cognd 1331733316 R rec beea54e3-7788-4a63-a190-5efd81096623 +2024-09-11 09:08:48.977547 2024-09-11 09:08:48.977573 cognd 1331723361 R rec 5b3d9dae-ff98-474b-b270-7c83cf9de1fb +2024-09-11 09:08:49.029516 2024-09-11 09:08:49.029521 cognd 1331719054 R rec 28516aca-5c88-443d-8137-48cb5613b6d3 +2024-09-11 09:08:49.083214 2024-09-11 09:08:49.08322 cognd 1331717353 R rec 74ec0117-6a78-4984-9445-f3d7f25d368f +2024-09-11 09:08:49.135894 2024-09-11 09:08:49.135901 cognd 1331710464 R rec 63cb8ab9-51da-4ebe-b921-e4b223b2289d +2024-09-11 09:08:49.196713 2024-09-11 09:08:49.196719 cognd 1331704014 R rec 1f3c5f57-8385-4323-887b-bc0396d41dbd +2024-09-11 09:08:49.255216 2024-09-11 09:08:49.255221 cognd 1331614392 R rec b27afe3f-09ca-4073-9e34-f82e1b5eb0cf +2024-09-11 09:08:49.314294 2024-09-11 09:08:49.314299 cognd 1331613426 R rec 11bb4a3f-7911-443e-9c17-5b3dcdc50cff +2024-09-11 09:08:49.367086 2024-09-11 09:08:49.367091 cognd 1331605164 R rec dd4e9f3b-5378-4d93-bdde-7c56e6891709 +2024-09-11 09:08:49.422301 2024-09-11 09:08:49.422307 cognd 1331605091 R rec 91275857-f6a9-4134-973e-5948c780f02a +2024-09-11 09:08:49.479292 2024-09-11 09:08:49.479297 cognd 1331604893 R rec ad655013-3cdd-4522-a7d2-0051f6e0897e +2024-09-11 09:08:49.531272 2024-09-11 09:08:49.531277 cognd 1331603897 R rec 8c5ac03e-2267-4de5-bfdc-e531b28f499b +2024-09-11 09:08:49.589134 2024-09-11 09:08:49.589139 cognd 1331594014 R rec 6a744db2-f442-4d3c-a117-3203c65bddc8 +2024-09-11 09:08:49.647636 2024-09-11 09:08:49.647642 cognd 1331592208 R rec 0da9c955-d5cd-43d0-933d-efb8da61ef74 +2024-09-11 09:08:49.701509 2024-09-11 09:08:49.701519 cognd 1331584167 R rec 22471d2a-fbdf-4f08-989d-e93f7122f5d8 +2024-09-11 09:08:49.756327 2024-09-11 09:08:49.756333 cognd 1331530806 R rec 065e0a09-a802-4700-bac3-04a64afa97a1 +2024-09-11 09:08:49.818501 2024-09-11 09:08:49.818506 cognd 1331496918 R rec 209a47fa-d48d-4f96-ad07-c80894c98dcf +2024-09-11 09:08:49.883832 2024-09-11 09:08:49.883837 cognd 1331482941 R rec 952d7fac-7c0e-4988-8f30-c2e517bca4a1 +2024-09-11 09:08:49.935594 2024-09-11 09:08:49.935599 cognd 1331380073 R rec 9c961e04-529c-4f10-9c00-59224e1f9c49 +2024-09-11 09:08:49.992454 2024-09-11 09:08:49.992459 cognd 1331102170 R rec 8e26fae9-fe30-4b58-ac75-3119aa8ff2fa +2024-09-11 09:08:50.055075 2024-09-11 09:08:50.05508 cognd 1330854640 R rec 073ead4d-be82-4c4f-8c32-999a531c0133 +2024-09-11 09:08:50.109309 2024-09-11 09:08:50.109315 cognd 1330843584 R rec 76be9a35-5d6b-4629-8496-f37b8d192b44 +2024-09-11 09:08:50.158155 2024-09-11 09:08:50.158161 cognd 1330586557 R rec 157c5955-5b2d-4dec-bb4b-5d04c9372534 +2024-09-11 09:08:50.216098 2024-09-11 09:08:50.216103 cognd 1330586271 R rec 3c52c80e-4485-4c0f-9cf0-8dd578660073 +2024-09-11 09:08:50.276026 2024-09-11 09:08:50.276031 cognd 1330585992 R rec c7c66774-671b-47e5-ba03-9d9ac875f784 +2024-09-11 09:08:50.333835 2024-09-11 09:08:50.333841 cognd 1330585747 R rec b5ad4f9b-982e-4d79-89e1-4e32ebd65ee8 +2024-09-11 09:08:50.389665 2024-09-11 09:08:50.389671 cognd 1330447611 R rec 22d4e9a4-3bf6-4ea4-8471-16b5a6d753ad +2024-09-11 09:08:50.442023 2024-09-11 09:08:50.442028 cognd 1330433858 R rec 657a8eb4-c42f-471b-b94b-c734cce56ea3 +2024-09-11 09:08:50.499649 2024-09-11 09:08:50.499654 cognd 1330430964 R rec aeaaf794-ab8f-4319-8aed-dca69dd704be +2024-09-11 09:08:50.552751 2024-09-11 09:08:50.552756 cognd 1330343085 R rec a0dedeb4-1516-438f-9a2f-0d816302622f +2024-09-11 09:08:50.607192 2024-09-11 09:08:50.607198 cognd 1330186664 R rec bfd05f66-c87f-453a-84fe-cb61f9b3c783 +2024-09-11 09:08:50.663997 2024-09-11 09:08:50.664002 cognd 1329650123 R rec 837c7dd7-377c-4f31-9ece-a7885f2a4b6a +2024-09-11 09:08:50.715566 2024-09-11 09:08:50.715572 cognd 1329573331 R rec 9b952305-21fb-4441-84a3-153a5e0725d2 +2024-09-11 09:08:50.770736 2024-09-11 09:08:50.770741 cognd 1329325958 R rec d7d3063c-74da-46f0-b781-5441d89bba74 +2024-09-11 09:08:50.823208 2024-09-11 09:08:50.823213 cognd 1328905152 R rec deb7c106-ee93-4e46-8d21-07e7d6a5c839 +2024-09-11 09:08:50.875096 2024-09-11 09:08:50.875102 cognd 1328159116 R rec 92599db7-30d4-4497-b3a9-abba27b6a15f +2024-09-11 09:08:50.930272 2024-09-11 09:08:50.930278 cognd 1328114813 R rec a3606793-44e1-48e6-8cad-08f934851e23 +2024-09-11 09:08:50.989881 2024-09-11 09:08:50.989887 cognd 1326598325 R rec 26dc4433-97fb-462f-8714-9865512966e9 +2024-09-11 09:08:51.047834 2024-09-11 09:08:51.04784 cognd 1325970743 R rec 05e6a531-f669-4b88-9251-5cee3d616547 +2024-09-11 09:08:51.104822 2024-09-11 09:08:51.104827 cognd 1325836214 R rec 110e916c-1e18-4626-bc7c-35bb489ef91e +2024-09-11 09:08:51.162017 2024-09-11 09:08:51.162022 cognd 1325526541 R rec 14b20fb1-c08b-4a50-86f4-99fd7467d602 +2024-09-11 09:08:51.225758 2024-09-11 09:08:51.225764 cognd 1324473703 R rec 3ac676e5-b1a7-4c2b-8b4f-201b21bbc555 +2024-09-11 09:08:51.282792 2024-09-11 09:08:51.282798 cognd 1324101571 R rec 553c5da0-1ed4-4302-a787-38ca91ce8aee +2024-09-11 09:08:51.33303 2024-09-11 09:08:51.333035 cognd 1322498083 R rec b838450c-2e29-4ba9-b4fa-95f2987310f9 +2024-09-11 09:08:51.383915 2024-09-11 09:08:51.383921 cognd 1321930690 R rec 7ac506ec-9bcc-4c01-b508-b2133f7c0006 +2024-09-11 09:08:51.442237 2024-09-11 09:08:51.442243 cognd 1321369956 R rec 91e69fab-8925-45ff-a3b3-4acb14a83b47 +2024-09-11 09:08:51.493029 2024-09-11 09:08:51.493034 cognd 1321325754 R rec e4ea5f35-c724-4fb7-bd3b-ea344041c930 +2024-09-11 09:08:51.545725 2024-09-11 09:08:51.545732 cognd 132121202X R rec 76757f83-17d1-42a9-8f76-74bd53677628 +2024-09-11 09:08:51.603038 2024-09-11 09:08:51.603042 cognd 1319608302 R rec 64509204-c67f-4c1c-96a0-7366da1012d2 +2024-09-11 09:08:51.653383 2024-09-11 09:08:51.653389 cognd 1319352146 R rec c627324e-a8c4-442a-add1-fd78b138aefa +2024-09-11 09:08:51.706328 2024-09-11 09:08:51.706333 cognd 1318875676 R rec e21d93e2-79aa-4358-8c9d-92c839e1a4d1 +2024-09-11 09:08:51.767038 2024-09-11 09:08:51.767043 cognd 1318600871 R rec 1cd4dd04-05aa-4810-a078-da2f25c37d80 +2024-09-11 09:08:51.825916 2024-09-11 09:08:51.825922 cognd 1318529573 R rec 664e207a-1bef-42b3-b5c4-ec09d3f38896 +2024-09-11 09:08:51.878334 2024-09-11 09:08:51.87834 cognd 1315438240 R rec 16afcf29-9307-4585-96ca-074456be7741 +2024-09-11 09:08:51.93151 2024-09-11 09:08:51.931515 cognd 1315344238 R rec 57950e37-bb18-4d1b-8c4b-dd95dabffec3 +2024-09-11 09:08:51.989091 2024-09-11 09:08:51.989096 cognd 1315166526 R rec 825147c1-828b-41c4-96be-9e784690931f +2024-09-11 09:08:52.047755 2024-09-11 09:08:52.04776 cognd 1314207296 R rec 886b11f9-4b0e-4f86-afb2-d65758c4602a +2024-09-11 09:08:52.103723 2024-09-11 09:08:52.103728 cognd 1314016547 R rec f4fe3847-e97f-4a94-bd98-b93ee941a003 +2024-09-11 09:08:52.156782 2024-09-11 09:08:52.156787 cognd 1314016032 R rec f7f38797-da9a-4798-8b8a-b1e849da2e10 +2024-09-11 09:08:52.208869 2024-09-11 09:08:52.208874 cognd 1311509100 R rec afacf178-b065-427f-bc8b-07f5195c21fe +2024-09-11 09:08:52.263829 2024-09-11 09:08:52.263834 cognd 131143609X R rec 9571a899-d6a5-47bf-b924-919eb0b82ea5 +2024-09-11 09:08:52.318541 2024-09-11 09:08:52.318547 cognd 1311352430 R rec c0a00087-440d-4884-b44b-07f91557defe +2024-09-11 09:08:52.373428 2024-09-11 09:08:52.373433 cognd 1310159343 R rec a26acaef-bd0b-4af6-9993-cb25ea5e11a1 +2024-09-11 09:08:52.432197 2024-09-11 09:08:52.432202 cognd 130899687X R rec 62eeaa85-a369-42ca-a420-25f68b6efb9d +2024-09-11 09:08:52.497215 2024-09-11 09:08:52.49722 cognd 1308455038 R rec 3f4706c2-64c8-406f-a0ee-cd2b3fe1b276 +2024-09-11 09:08:52.554252 2024-09-11 09:08:52.554257 cognd 1305992857 R rec 41194b6f-2686-44ce-89b6-889c8d9ea1c9 +2024-09-11 09:08:52.608581 2024-09-11 09:08:52.608587 cognd 1302496050 R rec 24fcfdc0-5e62-4888-819b-a94343d2e4b6 +2024-09-11 09:08:52.671319 2024-09-11 09:08:52.671329 cognd 129922539X R rec d1cab7cb-355b-43fd-9a80-a9a3a2446ce6 +2024-09-11 09:08:52.737863 2024-09-11 09:08:52.737868 cognd 1298858054 R rec efa3a3f6-3c36-4a24-bef6-7566d8e310ae +2024-09-11 09:08:52.791813 2024-09-11 09:08:52.791818 cognd 1298312817 R rec 230171e1-b74a-4cca-b808-1f47ab4d6ed9 +2024-09-11 09:08:52.84294 2024-09-11 09:08:52.842945 cognd 1297822668 R rec ddeff11b-4da0-4bdc-81e9-097c70f47f62 +2024-09-11 09:08:52.894994 2024-09-11 09:08:52.895 cognd 1295539519 R rec 1a129cb2-5bb3-49ea-b299-41c17656e38f +2024-09-11 09:08:52.952836 2024-09-11 09:08:52.952841 cognd 1293306673 R rec 99d18655-e5a5-4f8a-ac8c-38af6a288c5c +2024-09-11 09:08:53.007816 2024-09-11 09:08:53.007822 cognd 1283002477 R rec 781d3164-685c-4916-a826-fc9ecbed9579 +2024-09-11 09:08:53.063293 2024-09-11 09:08:53.063298 cognd 127857025X R rec 531452a0-8929-4e1d-a9c0-3cbf95a2ab78 +2024-09-11 09:08:53.11854 2024-09-11 09:08:53.118546 cognd 1278063730 R rec c131d1d3-e7c2-4ecc-8a2f-57309faa39f8 +2024-09-11 09:08:53.174834 2024-09-11 09:08:53.174839 cognd 1277678871 R rec 85b1b524-b6b3-4797-92fc-9cb5d602a5b0 +2024-09-11 09:08:53.228235 2024-09-11 09:08:53.22824 cognd 1277560676 R rec 713b71d4-59f9-4314-ae0e-cad93c8262fa +2024-09-11 09:08:53.282608 2024-09-11 09:08:53.282614 cognd 1276707304 R rec de3b4aa3-4763-4dd7-a10b-c87f4cf085f6 +2024-09-11 09:08:53.336544 2024-09-11 09:08:53.336549 cognd 1276176597 R rec 683ecca5-43c8-4782-957b-fecf17b4e070 +2024-09-11 09:08:53.390689 2024-09-11 09:08:53.390695 cognd 1275619533 R rec 12094f75-3f68-434b-af3e-4649bdccb66f +2024-09-11 09:08:53.44556 2024-09-11 09:08:53.445566 cognd 1275172962 R rec f4be044b-565d-4dc1-a387-6a96793f38cc +2024-09-11 09:08:53.503317 2024-09-11 09:08:53.503323 cognd 1274948169 R rec 673c4ffc-9051-4814-8877-f6ec277b9b35 +2024-09-11 09:08:53.563261 2024-09-11 09:08:53.563267 cognd 1274269121 R rec 735e7601-88fe-4f96-bffe-ec09e1543f80 +2024-09-11 09:08:53.628133 2024-09-11 09:08:53.628139 cognd 1273395077 R rec e8e19595-cb70-4443-b81e-def74906b2aa +2024-09-11 09:08:53.683927 2024-09-11 09:08:53.683933 cognd 1273298268 R rec 793c028d-2b25-4ae1-8214-86d2998f7212 +2024-09-11 09:08:53.738196 2024-09-11 09:08:53.738201 cognd 1273295374 R rec 6a26cef3-eaeb-4542-882b-096340cc4688 +2024-09-11 09:08:53.792466 2024-09-11 09:08:53.792472 cognd 1270459880 R rec 21125496-88ba-40ad-a8ec-7cc5d6de3c9b +2024-09-11 09:08:53.845552 2024-09-11 09:08:53.845557 cognd 1268867829 R rec ba8a881c-0e48-4493-a040-cad0aed0cceb +2024-09-11 09:08:53.900105 2024-09-11 09:08:53.90011 cognd 1267608781 R rec c0347fbb-a1a5-45cd-a7b9-1ac983fc2dc2 +2024-09-11 09:08:53.954922 2024-09-11 09:08:53.954927 cognd 1267608366 R rec 48daf426-32bf-435c-8684-9fe5aed18870 +2024-09-11 09:08:54.013199 2024-09-11 09:08:54.013205 cognd 1267358122 R rec 5ed1f0d2-fb7c-4548-95dd-44585f36bb27 +2024-09-11 09:08:54.07231 2024-09-11 09:08:54.072315 cognd 1266800611 R rec 73666fe1-074b-459f-a2eb-e2b6bd4187cf +2024-09-11 09:08:54.129897 2024-09-11 09:08:54.129902 cognd 1266799931 R rec ded9f874-a28a-4bd0-8ba7-1d0dc1edd7ba +2024-09-11 09:08:54.189311 2024-09-11 09:08:54.189316 cognd 1264956134 R rec 109f0022-f1dd-4cc6-a909-256a6a17c7bb +2024-09-11 09:08:54.24862 2024-09-11 09:08:54.248626 cognd 1262928265 R rec bbd85b20-cbab-42e8-9291-f6297f0ebe4e +2024-09-11 09:08:54.310523 2024-09-11 09:08:54.310529 cognd 1261933737 R rec f7684b70-c1b9-45cf-bd53-6c0900c358f9 +2024-09-11 09:08:54.370972 2024-09-11 09:08:54.370977 cognd 1259460460 R rec 5d160734-2d18-482c-b9d4-46099971242f +2024-09-11 09:08:54.434224 2024-09-11 09:08:54.434234 cognd 1258881675 R rec 72e7a89f-2d13-4628-9f8a-94fed1ec634a +2024-09-11 09:08:54.48733 2024-09-11 09:08:54.487335 cognd 125746423X R rec 0f23aee4-b797-4590-92ae-d142c66a1b18 +2024-09-11 09:08:54.54273 2024-09-11 09:08:54.542734 cognd 1257346415 R rec 434e62f8-b9b5-4d90-a86a-62e6aae63ce5 +2024-09-11 09:08:54.598483 2024-09-11 09:08:54.598488 cognd 1257092804 R rec 12df433e-d652-44e0-a7d7-8de4e9662cdc +2024-09-11 09:08:54.661587 2024-09-11 09:08:54.661593 cognd 1254569642 R rec f7d40c12-10e9-45c1-8e7d-6479367261a3 +2024-09-11 09:08:54.729875 2024-09-11 09:08:54.729881 cognd 1254535594 R rec 34e413cb-497d-4883-9790-fe29bc5738eb +2024-09-11 09:08:54.79259 2024-09-11 09:08:54.792596 cognd 1253837457 R rec d31fc293-6663-46ca-b5b5-214b2149831a +2024-09-11 09:08:54.845429 2024-09-11 09:08:54.845434 cognd 1252827512 R rec 7f2b6c6a-4439-4641-a3f5-56c3543cc9bc +2024-09-11 09:08:54.900817 2024-09-11 09:08:54.900823 cognd 1252257295 R rec 55e64f7c-f358-453b-ac4f-caecf92dfa56 +2024-09-11 09:08:54.955676 2024-09-11 09:08:54.955681 cognd 1251536492 R rec 188d2408-0731-417a-a21c-d136b9e3760f +2024-09-11 09:08:55.011443 2024-09-11 09:08:55.011448 cognd 1250258731 R rec 10250033-b54f-4f29-93d1-77b18b905f8c +2024-09-11 09:08:55.071128 2024-09-11 09:08:55.071133 cognd 124994516X R rec 2022c97a-db9d-405e-9d66-8005612966b9 +2024-09-11 09:08:55.124708 2024-09-11 09:08:55.124713 cognd 1249112877 R rec 73651508-b9d1-4a08-b2a1-126af09fc222 +2024-09-11 09:08:55.184221 2024-09-11 09:08:55.184227 cognd 1248945506 R rec 727542c8-1b14-402a-b4c2-37684e661a39 +2024-09-11 09:08:55.252803 2024-09-11 09:08:55.252809 cognd 1247639401 R rec 24bb3859-eea3-48ba-908e-ea59f552b6b6 +2024-09-11 09:08:55.321963 2024-09-11 09:08:55.321968 cognd 1246126877 R rec 7b28ad5b-320f-4827-859e-dfa51bc2dd9f +2024-09-11 09:08:55.373609 2024-09-11 09:08:55.373614 cognd 124608841X R rec 412ca9fb-03a8-4e7e-a979-a5bff39b2863 +2024-09-11 09:08:55.426877 2024-09-11 09:08:55.426882 cognd 1241975299 R rec afc897d2-6ac5-4fc9-acef-41f2c96e9af4 +2024-09-11 09:08:55.483159 2024-09-11 09:08:55.483165 cognd 1234514702 R rec 77f1a25d-630a-43b5-8831-c633142f7583 +2024-09-11 09:08:55.547495 2024-09-11 09:08:55.5475 cognd 1232346071 R rec 1e0cefcd-d4fc-45cf-a456-f978f6fb3f05 +2024-09-11 09:08:55.644334 2024-09-11 09:08:55.644339 cognd 1228154325 R rec 590a31b0-4a62-419e-afc3-8392819c875b +2024-09-11 09:08:55.697842 2024-09-11 09:08:55.697847 cognd 1225893461 R rec 3d030d7b-48fc-4834-b911-c8f873975216 +2024-09-11 09:08:55.757063 2024-09-11 09:08:55.757067 cognd 1219598135 R rec ae99061a-2df5-45c8-aece-82338916c313 +2024-09-11 09:08:55.818689 2024-09-11 09:08:55.818713 cognd 1210456753 R rec e8f4e725-3bb2-42bd-a503-e874ad0cb598 +2024-09-11 09:08:55.881615 2024-09-11 09:08:55.881621 cognd 1202575048 R rec d68f9e53-0ecd-44ea-8f67-300b7e8ab4b0 +2024-09-11 09:08:55.936101 2024-09-11 09:08:55.936108 cognd 1201330661 R rec 03231bf6-31f1-436e-986e-de3079045749 +2024-09-11 09:08:55.995196 2024-09-11 09:08:55.995201 cognd 1199404365 R rec 102cacb7-be9b-4dde-a48a-a38607932dff +2024-09-11 09:08:56.055417 2024-09-11 09:08:56.055423 cognd 1198723262 R rec 77c90f1d-6fe2-41f4-94a7-7f6c4a92ff75 +2024-09-11 09:08:56.109574 2024-09-11 09:08:56.109579 cognd 1191508781 R rec 40b11670-2e83-4424-921e-5c7c2adbc1ec +2024-09-11 09:08:56.165878 2024-09-11 09:08:56.165883 cognd 1188589024 R rec 2d154ec8-4760-49eb-a83b-3ee5cdd4e146 +2024-09-11 09:08:56.219731 2024-09-11 09:08:56.219736 cognd 1183863349 R rec cfc5253b-130d-445b-993c-e95b58db5c2d +2024-09-11 09:08:56.278267 2024-09-11 09:08:56.278273 cognd 1181268311 R rec dd0313b1-9df7-4598-a7d0-e189a0a9a304 +2024-09-11 09:08:56.331861 2024-09-11 09:08:56.331867 cognd 1181007100 R rec 50dedbfb-a6c2-4cd8-b89b-396a11fc308f +2024-09-11 09:08:56.389471 2024-09-11 09:08:56.389476 cognd 1173842845 R rec d55259c8-8b90-4d71-bfe1-8a8e8a4269c3 +2024-09-11 09:08:56.448977 2024-09-11 09:08:56.448983 cognd 1173062238 R rec 8db658bb-de96-453e-b62b-569560587b99 +2024-09-11 09:08:56.508846 2024-09-11 09:08:56.508851 cognd 1172567794 R rec 6d33e37b-daeb-4f4e-bbd0-dcf0cb12f2c5 +2024-09-11 09:08:56.566388 2024-09-11 09:08:56.566393 cognd 1166161722 R rec dff64d8b-ad30-4c8f-ac9d-e98eb2ffb18a +2024-09-11 09:08:56.621658 2024-09-11 09:08:56.621663 cognd 1165352362 R rec 4a8b6670-effc-4586-abf7-305b6a84d1dc +2024-09-11 09:08:56.684669 2024-09-11 09:08:56.684675 cognd 1165347768 R rec bb240ca0-6532-471f-973d-0b7e41670010 +2024-09-11 09:08:56.738026 2024-09-11 09:08:56.738031 cognd 1162072040 R rec aa3fdea8-bb24-4406-8419-c7746395814e +2024-09-11 09:08:56.792635 2024-09-11 09:08:56.79264 cognd 1161142878 R rec 5bcc36aa-444b-4545-a29a-2eecda753445 +2024-09-11 09:08:56.849261 2024-09-11 09:08:56.849267 cognd 1155851412 R rec 2d5c43d8-1bce-4037-aafa-33bdfad64ecc +2024-09-11 09:08:56.904924 2024-09-11 09:08:56.90493 cognd 1155424573 R rec 7d317f60-cd6b-4821-81eb-b030ac7d36b7 +2024-09-11 09:08:56.964439 2024-09-11 09:08:56.964444 cognd 1153834367 R rec e3ee11f3-416f-48c1-8d82-3c42abe3a7c9 +2024-09-11 09:08:57.022195 2024-09-11 09:08:57.0222 cognd 1150861010 R rec a09e5208-1040-4dd9-84da-adaf05e00ca5 +2024-09-11 09:08:57.084297 2024-09-11 09:08:57.084303 cognd 1145186815 R rec 8d768453-5927-42a3-981e-ead8235c1039 +2024-09-11 09:08:57.144678 2024-09-11 09:08:57.144684 cognd 1144301971 R rec 9d5f25f9-c7af-4467-8488-fa30d31f39a8 +2024-09-11 09:08:57.198783 2024-09-11 09:08:57.198789 cognd 114005791X R rec 095e0202-150d-4a0c-aa28-51159c5215fd +2024-09-11 09:08:57.255861 2024-09-11 09:08:57.255866 cognd 1139178725 R rec 9c865140-bda0-4aed-8122-d2236fb6f36d +2024-09-11 09:08:57.310817 2024-09-11 09:08:57.310822 cognd 1135938261 R rec a448ad26-f84f-4280-881c-295e3255848f +2024-09-11 09:08:57.374592 2024-09-11 09:08:57.374598 cognd 1122355092 R rec f8059d26-7aa2-40d2-a856-70952b44a1ec +2024-09-11 09:08:57.433375 2024-09-11 09:08:57.43338 cognd 1121689914 R rec dbe1ebd4-9298-4728-bc7f-326a69e26880 +2024-09-11 09:08:57.490797 2024-09-11 09:08:57.490802 cognd 1118514823 R rec 174639b8-037a-44ca-aae4-f2c66f5102f6 +2024-09-11 09:08:57.547791 2024-09-11 09:08:57.547797 cognd 1117164012 R rec 9aac1c00-8a74-46e5-8fff-2dfb59fb7075 +2024-09-11 09:08:57.611277 2024-09-11 09:08:57.611283 cognd 1116981521 R rec 0a570056-35c7-4315-8dc6-daa7b6bb34e9 +2024-09-11 09:08:57.669596 2024-09-11 09:08:57.669602 cognd 1115371371 R rec 513d51de-2e51-4195-a2fe-23cfec79eac7 +2024-09-11 09:08:57.728689 2024-09-11 09:08:57.728695 cognd 1099123399 R rec 47e51f40-4117-44ab-8dea-5679d8a916a7 +2024-09-11 09:08:57.779219 2024-09-11 09:08:57.779225 cognd 1081489480 R rec fccfe1b6-dccc-4fdb-9d1c-1a69eb57165b +2024-09-11 09:08:57.831933 2024-09-11 09:08:57.831938 cognd 1078298378 R rec 6e10886a-62d8-4f1c-8fac-dd3f86c7ed42 +2024-09-11 09:08:57.889318 2024-09-11 09:08:57.889323 cognd 107366371X R rec 433a46dc-7b5b-48e4-ba1a-0d05560845dd +2024-09-11 09:08:57.940165 2024-09-11 09:08:57.94017 cognd 1073212491 R rec 062f420e-d191-4be7-86e6-10a958d3937e +2024-09-11 09:08:57.995506 2024-09-11 09:08:57.995512 cognd 1072727021 R rec 52da2302-4942-402b-b137-c83c5cd903ff +2024-09-11 09:08:58.054202 2024-09-11 09:08:58.054208 cognd 1072723875 R rec 1d002243-985a-47ba-9e80-2c9096c4a83b +2024-09-11 09:08:58.121235 2024-09-11 09:08:58.12124 cognd 107257439X R rec 599e331f-5845-4455-9199-1ec65588dbf7 +2024-09-11 09:08:58.175806 2024-09-11 09:08:58.175811 cognd 1070750409 R rec 5179d6f8-432d-4d2c-83d5-1f7f9e5c1e15 +2024-09-11 09:08:58.231916 2024-09-11 09:08:58.231921 cognd 1069698822 R rec 19a07a58-b6bd-44e9-be1f-4dd542d2f932 +2024-09-11 09:08:58.286401 2024-09-11 09:08:58.286406 cognd 1069336971 R rec 1a5d3d16-da68-4af6-b878-c1c5c81ea642 +2024-09-11 09:08:58.345072 2024-09-11 09:08:58.345078 cognd 1068604875 R rec 11999e12-0e8f-46c0-890d-3adc872d252e +2024-09-11 09:08:58.408838 2024-09-11 09:08:58.408843 cognd 1066801789 R rec 0eeefae1-0fda-4091-bda9-c91e09bf310c +2024-09-11 09:08:58.470236 2024-09-11 09:08:58.470243 cognd 1064698727 R rec e935e36e-1592-4b40-8db5-b8bc2e918341 +2024-09-11 09:08:58.527143 2024-09-11 09:08:58.527149 cognd 1064281230 R rec f28fe396-13fb-4b47-b374-b0418e9325e2 +2024-09-11 09:08:58.580532 2024-09-11 09:08:58.580537 cognd 1064280692 R rec 40ed030d-913e-4a90-86c7-e5e580c5f920 +2024-09-11 09:08:58.639355 2024-09-11 09:08:58.639361 cognd 106427546X R rec 2082dbb8-960a-475b-a466-5b327c0b5fb7 +2024-09-11 09:08:58.693549 2024-09-11 09:08:58.693554 cognd 1064098363 R rec dbfb71fe-961c-4a4d-88a2-40c96bc86ffa +2024-09-11 09:08:58.7458 2024-09-11 09:08:58.745806 cognd 1063927137 R rec 7270bccb-5e12-4479-a937-f525e47cfc72 +2024-09-11 09:08:58.802971 2024-09-11 09:08:58.802979 cognd 1063927110 R rec 0aa8bd57-e242-4b23-b801-46e445539bdc +2024-09-11 09:08:58.857019 2024-09-11 09:08:58.857024 cognd 1063925908 R rec cb27762f-7c5e-450a-a122-d3c7cec9008b +2024-09-11 09:08:58.913834 2024-09-11 09:08:58.91384 cognd 1063349230 R rec a8c1a039-648f-4ad5-9f69-d9768414eb37 +2024-09-11 09:08:58.968845 2024-09-11 09:08:58.968851 cognd 1062937325 R rec 2854ad5a-9202-4931-aa41-d002320fba76 +2024-09-11 09:08:59.029181 2024-09-11 09:08:59.029187 cognd 1060931796 R rec 1819c16c-76df-4920-b01e-e510834e5186 +2024-09-11 09:08:59.084479 2024-09-11 09:08:59.084484 cognd 1060912503 R rec 84be58cd-0eb6-4c15-a453-b26a058185c6 +2024-09-11 09:08:59.144562 2024-09-11 09:08:59.144568 cognd 1060909251 R rec 82e2c3d4-dead-488f-9f63-75c309285769 +2024-09-11 09:08:59.20514 2024-09-11 09:08:59.205146 cognd 1060907534 R rec 953a696d-c9a2-43ca-b164-1848ed31dac6 +2024-09-11 09:08:59.275019 2024-09-11 09:08:59.275025 cognd 1060882345 R rec 5bbfc7df-c24c-4398-abcd-3e94bd5cab6b +2024-09-11 09:08:59.330839 2024-09-11 09:08:59.330844 cognd 1060882191 R rec 5ca29b59-3a78-4d1e-b9b9-ef191f9a3aa3 +2024-09-11 09:08:59.383804 2024-09-11 09:08:59.38381 cognd 1060881373 R rec 6d28a168-14f9-40c9-8476-00dfb840abff +2024-09-11 09:08:59.435649 2024-09-11 09:08:59.435655 cognd 1060881039 R rec bb86f1c4-c78d-4bb2-8704-824a4c60c967 +2024-09-11 09:08:59.487659 2024-09-11 09:08:59.487664 cognd 1060858703 R rec e128d96b-3fa5-4fa4-8167-664fefb46d83 +2024-09-11 09:08:59.543334 2024-09-11 09:08:59.54334 cognd 1060811529 R rec d2ba9afb-bf27-4d3a-8be7-577289e2a777 +2024-09-11 09:08:59.604744 2024-09-11 09:08:59.60475 cognd 1060804263 R rec 54a45773-f9d4-4c04-ac0c-38e509ef6eb4 +2024-09-11 09:08:59.659103 2024-09-11 09:08:59.65911 cognd 1060778947 R rec 7674aad0-7049-471d-9d45-98f8b9414976 +2024-09-11 09:08:59.714358 2024-09-11 09:08:59.714364 cognd 1060674483 R rec 9af7d325-be7b-4898-80c3-945fc0bf649a +2024-09-11 09:08:59.771377 2024-09-11 09:08:59.771382 cognd 1060581957 R rec 791a4b30-bc25-4866-ad4e-a7994d6fdd46 +2024-09-11 09:08:59.825217 2024-09-11 09:08:59.825222 cognd 1060577895 R rec 6b01307d-67ee-41a0-b2a0-06adb1be13b5 +2024-09-11 09:08:59.886201 2024-09-11 09:08:59.886206 cognd 106057683X R rec eaf4c6cd-e48d-4bda-a168-a34d9836ac02 +2024-09-11 09:08:59.938166 2024-09-11 09:08:59.938171 cognd 1060521229 R rec f4d863f0-7e5a-48d1-a30b-059a2bf6632e +2024-09-11 09:08:59.992731 2024-09-11 09:08:59.992737 cognd 1060471329 R rec 2d8ecaae-57f9-4fd0-8811-581dde311dfd +2024-09-11 09:09:00.04805 2024-09-11 09:09:00.048056 cognd 1060399172 R rec e88909c5-b1d6-4243-8bad-e54316ec8358 +2024-09-11 09:09:00.099957 2024-09-11 09:09:00.099962 cognd 1060358328 R rec ef11b4a6-d626-4544-a7fd-eedf8554d129 +2024-09-11 09:09:00.157708 2024-09-11 09:09:00.157713 cognd 106013411X R rec 99c84c71-c628-46b8-b70c-ed7c1de09725 +2024-09-11 09:09:00.21758 2024-09-11 09:09:00.217586 cognd 1060114909 R rec 0d252a41-8ae2-45b5-b74b-2facf3799cbc +2024-09-11 09:09:00.27195 2024-09-11 09:09:00.271956 cognd 1060090236 R rec 60c81d1d-ae84-45d3-ab1f-077c41928789 +2024-09-11 09:09:00.323897 2024-09-11 09:09:00.323902 cognd 1060077914 R rec 20254ba7-4fd8-4c64-8dff-858f81b4f3ae +2024-09-11 09:09:00.380188 2024-09-11 09:09:00.380193 cognd 1060077817 R rec 71b8da1e-5589-4650-95e3-3fe22aeb8eb1 +2024-09-11 09:09:00.435865 2024-09-11 09:09:00.435871 cognd 1059889455 R rec 7b539cc7-1021-4ead-85f0-5bdcaf33d7dd +2024-09-11 09:09:00.490751 2024-09-11 09:09:00.490757 cognd 1059823527 R rec e90e49a2-5c9a-4090-85a7-cd3474cd1ddf +2024-09-11 09:09:00.545736 2024-09-11 09:09:00.545742 cognd 1059732483 R rec 7870e91b-0b2f-44d2-9abc-3079d1cc25f8 +2024-09-11 09:09:00.601943 2024-09-11 09:09:00.601954 cognd 105962091X R rec 530dcdd0-d6d6-4db8-9013-b0f431ff9e07 +2024-09-11 09:09:00.676588 2024-09-11 09:09:00.676594 cognd 105960552X R rec e1d2d40f-ce38-48c2-a2b0-985169facca0 +2024-09-11 09:09:00.749201 2024-09-11 09:09:00.749206 cognd 1059558653 R rec d6452fbd-d83b-4d86-9721-1307df848433 +2024-09-11 09:09:00.81572 2024-09-11 09:09:00.815726 cognd 1059464667 R rec 20c6b856-3e76-4e06-a1ac-61a2e0225f13 +2024-09-11 09:09:00.887276 2024-09-11 09:09:00.887282 cognd 1059463385 R rec cbf4a92e-cbb9-410e-8861-2d47f8295be0 +2024-09-11 09:09:00.953875 2024-09-11 09:09:00.953881 cognd 1059408058 R rec 78a71bc2-522b-435c-a1cd-1da4d162e860 +2024-09-11 09:09:01.021497 2024-09-11 09:09:01.021503 cognd 1059388502 R rec 1883b8b9-2fff-4aff-8a04-449ec39b66a3 +2024-09-11 09:09:01.094941 2024-09-11 09:09:01.094946 cognd 1059388499 R rec 68f77424-bb3f-474f-92ae-1c2e15781f1f +2024-09-11 09:09:01.159631 2024-09-11 09:09:01.159636 cognd 1059388464 R rec c8fc25f0-bc57-4def-b6d2-eddfa1465b59 +2024-09-11 09:09:01.22429 2024-09-11 09:09:01.224296 cognd 1059384434 R rec 032338fa-2bc8-488d-ba5b-68cf9901481b +2024-09-11 09:09:01.285812 2024-09-11 09:09:01.285819 cognd 1059383780 R rec 5e8e9121-9e0d-410f-99de-bcebe7c777d2 +2024-09-11 09:09:01.355092 2024-09-11 09:09:01.355096 cognd 1059323001 R rec 612714cb-cac1-4edb-b7b6-be1d575ddf75 +2024-09-11 09:09:01.409181 2024-09-11 09:09:01.409187 cognd 1059271745 R rec 3650b77c-1061-4bf4-ba1b-854997b8c2e9 +2024-09-11 09:09:01.468079 2024-09-11 09:09:01.468086 cognd 1059254697 R rec 02d9c99b-b82d-4eda-8d52-b43b2a2f280b +2024-09-11 09:09:01.529391 2024-09-11 09:09:01.529397 cognd 1059254646 R rec e16a5154-4575-4413-bd48-27796c5a6c8e +2024-09-11 09:09:01.588769 2024-09-11 09:09:01.588774 cognd 1059226529 R rec c09d15ad-d833-4358-8eaf-1eab800a1ce2 +2024-09-11 09:09:01.646494 2024-09-11 09:09:01.646499 cognd 1059152312 R rec 86603140-d531-482e-8370-aca4de884103 +2024-09-11 09:09:01.703463 2024-09-11 09:09:01.703468 cognd 1059103257 R rec e17aa80c-1ed2-4b73-af3f-28800e0fb1b5 +2024-09-11 09:09:01.758436 2024-09-11 09:09:01.758441 cognd 1059090767 R rec 55c33211-4b35-4da0-8dce-35f9193e6a5f +2024-09-11 09:09:01.815231 2024-09-11 09:09:01.815236 cognd 1059087871 R rec 146033db-7f32-4d42-8a10-2d045d77a175 +2024-09-11 09:09:01.87167 2024-09-11 09:09:01.871675 cognd 1058986295 R rec 84d0f6da-614a-44f4-afcb-4bdef25c23f6 +2024-09-11 09:09:01.926016 2024-09-11 09:09:01.926021 cognd 105896920X R rec 1f027a04-cddd-4dcf-9dba-59c0d82ad700 +2024-09-11 09:09:01.980267 2024-09-11 09:09:01.980272 cognd 1058846361 R rec 9f50422f-1b93-40a9-ab1e-6615db37024b +2024-09-11 09:09:02.042305 2024-09-11 09:09:02.042311 cognd 1058723790 R rec b16bcca0-9864-43cd-a869-f10d2bb7fba6 +2024-09-11 09:09:02.104934 2024-09-11 09:09:02.10494 cognd 1058674900 R rec 4a216fc2-e683-4f0f-a6b3-aeea7c0e4b11 +2024-09-11 09:09:02.162478 2024-09-11 09:09:02.162483 cognd 1058669559 R rec 871bd9c4-96e1-4242-aab2-9cfb30ced46b +2024-09-11 09:09:02.22285 2024-09-11 09:09:02.222855 cognd 105862394X R rec 8bff7de8-bc83-4153-85e8-5e9d81a9a214 +2024-09-11 09:09:02.277609 2024-09-11 09:09:02.277615 cognd 1058513710 R rec fcf2311c-3653-46be-8513-e6d014bc5758 +2024-09-11 09:09:02.332453 2024-09-11 09:09:02.332458 cognd 1058507044 R rec 59180b54-6da2-43c2-90a1-79a5a2fb3909 +2024-09-11 09:09:02.390864 2024-09-11 09:09:02.39087 cognd 1058389041 R rec a1d21c15-1723-4db4-9157-fb5423c4426a +2024-09-11 09:09:02.447551 2024-09-11 09:09:02.447556 cognd 1058382799 R rec 415ea904-e53f-48a0-b111-0a900d595d28 +2024-09-11 09:09:02.499495 2024-09-11 09:09:02.499501 cognd 1058371266 R rec 1227bb0a-d0c7-4a33-93ea-cbd03330197d +2024-09-11 09:09:02.559198 2024-09-11 09:09:02.559203 cognd 1058370677 R rec 9257ccb9-e22b-4f35-abcc-a484f1faa391 +2024-09-11 09:09:02.612486 2024-09-11 09:09:02.612491 cognd 1058284371 R rec 5153fba1-6250-466a-bdad-950312cc572f +2024-09-11 09:09:02.666329 2024-09-11 09:09:02.666335 cognd 1058284304 R rec f9430512-db9a-4807-8008-e59b0dc07f56 +2024-09-11 09:09:02.722226 2024-09-11 09:09:02.72223 cognd 1058284096 R rec 99952616-0bf9-4b58-9688-5e41284d65db +2024-09-11 09:09:02.777797 2024-09-11 09:09:02.777802 cognd 1058280910 R rec 18a70d87-d947-4281-87f1-24b712b3a7d6 +2024-09-11 09:09:02.833384 2024-09-11 09:09:02.83339 cognd 1058249436 R rec ec3d768e-ec64-42fa-b176-6f563ad86655 +2024-09-11 09:09:02.886692 2024-09-11 09:09:02.886698 cognd 1058206753 R rec 7bfafca1-cff7-4e0a-8372-cf77359919d0 +2024-09-11 09:09:02.941111 2024-09-11 09:09:02.941117 cognd 1058118161 R rec cea5a4ad-c66e-4e88-bfcb-de8735020dab +2024-09-11 09:09:02.9962 2024-09-11 09:09:02.996206 cognd 1055857745 R rec d74ebe90-3ac9-4cbc-8ace-426f1b07aa6a +2024-09-11 09:09:03.053924 2024-09-11 09:09:03.053932 cognd 1054037531 R rec b8a697af-d802-4bac-8efb-50f7915b4379 +2024-09-11 09:09:03.111985 2024-09-11 09:09:03.11199 cognd 1052970427 R rec 19213dfc-e3a5-439b-b750-ac1060ec3399 +2024-09-11 09:09:03.162805 2024-09-11 09:09:03.16281 cognd 1051355478 R rec f5ffd250-44a2-45a0-aa8d-4eedccc80074 +2024-09-11 09:09:03.225003 2024-09-11 09:09:03.225009 cognd 1050801644 R rec 43ffa64d-1cc0-47ad-9ea2-eda71941e284 +2024-09-11 09:09:03.291489 2024-09-11 09:09:03.291494 cognd 1050440188 R rec f737688f-ccd1-40a9-b70b-0cdb5e22f6ed +2024-09-11 09:09:03.351807 2024-09-11 09:09:03.351812 cognd 1049971213 R rec c17a3492-930b-491b-ac22-6a64956375a2 +2024-09-11 09:09:03.408584 2024-09-11 09:09:03.408589 cognd 1049453719 R rec 542611f6-35e1-4521-b3cd-0ca39a2f6f1d +2024-09-11 09:09:03.469267 2024-09-11 09:09:03.469273 cognd 104797553X R rec 0402462a-7e48-466f-8ac2-df25d31ff031 +2024-09-11 09:09:03.533296 2024-09-11 09:09:03.533301 cognd 1047231085 R rec 68fac5af-1d3c-46a4-be9f-40f2234868a6 +2024-09-11 09:09:03.589344 2024-09-11 09:09:03.589349 cognd 1041610890 R rec 3b47fc06-cd9e-40bc-b2ce-abb9ce676d12 +2024-09-11 09:09:03.65299 2024-09-11 09:09:03.652996 cognd 1037919874 R rec 4e058cfc-325c-4fd7-bb84-4b7c8447102e +2024-09-11 09:09:03.709804 2024-09-11 09:09:03.709809 cognd 1034281828 R rec c3bf023b-5ca4-4a24-879b-241308b0e24d +2024-09-11 09:09:03.766233 2024-09-11 09:09:03.766239 cognd 1033705691 R rec af26dcd6-f727-427c-b06a-2d702a4a59dd +2024-09-11 09:09:03.823288 2024-09-11 09:09:03.823294 cognd 1030464197 R rec 35e3535d-139b-4b8c-bb33-95e6308985f1 +2024-09-11 09:09:03.880571 2024-09-11 09:09:03.880576 cognd 1028524978 R rec e007e76b-10ab-44c2-8d02-db6fc67b845e +2024-09-11 09:09:03.940445 2024-09-11 09:09:03.94045 cognd 1027073808 R rec 433810e4-198c-443c-af29-f850b068d2cc +2024-09-11 09:09:03.996811 2024-09-11 09:09:03.996816 cognd 1027071171 R rec b14cc7c3-75c6-4541-9f81-81e1ccd81b5b +2024-09-11 09:09:04.057922 2024-09-11 09:09:04.057927 cognd 1026470986 R rec 0b66e51c-c2a0-4aeb-93d7-9c0b54b17ddd +2024-09-11 09:09:04.116028 2024-09-11 09:09:04.116033 cognd 1026351537 R rec dd898e24-83d5-48a8-84ca-df8f59bd1286 +2024-09-11 09:09:04.171119 2024-09-11 09:09:04.171124 cognd 1025228928 R rec 1cd9cd9b-54bd-43f7-8477-df65bdef6c3e +2024-09-11 09:09:04.236158 2024-09-11 09:09:04.236164 cognd 1023745712 R rec 988d1041-9b65-475f-9b25-5017ffb37353 +2024-09-11 09:09:04.294113 2024-09-11 09:09:04.294119 cognd 1023362872 R rec 53434a88-0512-4255-a6d9-5ad97bc96f84 +2024-09-11 09:09:04.348428 2024-09-11 09:09:04.348433 cognd 1022832425 R rec ff40fa06-33db-4051-9742-8283d896ccdb +2024-09-11 09:09:04.405918 2024-09-11 09:09:04.405923 cognd 1021256064 R rec 07013f9c-46bb-4f81-8328-d150a1993244 +2024-09-11 09:09:04.462548 2024-09-11 09:09:04.462554 cognd 1018220429 R rec 260b3c0a-ea45-410e-8c7c-bc66f3a0d55c +2024-09-11 09:09:04.520891 2024-09-11 09:09:04.520896 cognd 1017491062 R rec c13193d8-a6aa-4aae-8754-0e0e7ae53124 +2024-09-11 09:09:04.574645 2024-09-11 09:09:04.574651 cognd 1017490090 R rec a310101f-64d0-4711-895d-ac1dd6fa2804 +2024-09-11 09:09:04.627394 2024-09-11 09:09:04.627399 cognd 1017217165 R rec 0f3cec07-d31f-428e-a59d-f7ed652f4d5c +2024-09-11 09:09:04.681211 2024-09-11 09:09:04.681216 cognd 1017177503 R rec 3373b8ff-1133-4cdd-8edd-68a176780dd8 +2024-09-11 09:09:04.733752 2024-09-11 09:09:04.733758 cognd 1017027366 R rec 4e314cd8-7f53-4e02-8371-9bdf253fc9b9 +2024-09-11 09:09:04.786701 2024-09-11 09:09:04.786706 cognd 1016810989 R rec 057338b4-d041-4d27-8e61-75e4100e1da9 +2024-09-11 09:09:04.851032 2024-09-11 09:09:04.851041 cognd 1016599463 R rec 14b520ec-9f3b-4d62-8e37-894d19924816 +2024-09-11 09:09:04.973007 2024-09-11 09:09:04.973013 cognd 1016326106 R rec 6574953b-21ef-4dfb-b43e-c1c69701e79c +2024-09-11 09:09:05.033548 2024-09-11 09:09:05.033554 cognd 1015079253 R rec a66518b6-20fd-4ea4-97a0-f33c3c22dfae +2024-09-11 09:09:05.095082 2024-09-11 09:09:05.095088 cognd 1013014065 R rec 3d883fef-af3a-453b-b130-794a2643300f +2024-09-11 09:09:05.148489 2024-09-11 09:09:05.148494 cognd 1011954141 R rec 3ee48cd4-a98b-43ae-ac91-15fb9bb32158 +2024-09-11 09:09:05.2029 2024-09-11 09:09:05.202905 cognd 1011935201 R rec 5e539127-f7db-4e83-bf3c-941386874c85 +2024-09-11 09:09:05.259365 2024-09-11 09:09:05.25937 cognd 1011536455 R rec 42cfe286-6333-426d-aad4-2be060c9b250 +2024-09-11 09:09:05.317015 2024-09-11 09:09:05.31702 cognd 1011385856 R rec e9095d4f-2078-41b4-9b91-3ca851ac34e5 +2024-09-11 09:09:05.372353 2024-09-11 09:09:05.372358 cognd 1011285738 R rec 06a454df-7a8f-4a92-974d-cb701acc1871 +2024-09-11 09:09:05.426055 2024-09-11 09:09:05.42606 cognd 1011285436 R rec b06505f9-4425-4450-aae2-a213f2c32b60 +2024-09-11 09:09:05.490138 2024-09-11 09:09:05.490143 cognd 1011282518 R rec 046f65aa-b1e5-4af1-9d5e-4d3883b0bd39 +2024-09-11 09:09:05.561609 2024-09-11 09:09:05.561614 cognd 1011281368 R rec 7b112198-9ea6-4461-8eb2-bc940b458277 +2024-09-11 09:09:05.619577 2024-09-11 09:09:05.619585 cognd 1011278723 R rec 7261b21f-6f64-43e1-8876-ec9e2709d792 +2024-09-11 09:09:05.675691 2024-09-11 09:09:05.675696 cognd 1011253313 R rec 21b1769a-a6e8-4b0f-a5d0-a0c9afdeada3 +2024-09-11 09:09:05.731563 2024-09-11 09:09:05.731569 cognd 1011212722 R rec eecdbabd-3f1f-46b7-a9cb-39fe32aecbe5 +2024-09-11 09:09:05.789827 2024-09-11 09:09:05.789833 cognd 1011172399 R rec 7a3d92af-13ae-4976-abbd-cca3e92585ed +2024-09-11 09:09:05.848996 2024-09-11 09:09:05.849002 cognd 1011095351 R rec 4ac8420c-7be6-4880-960a-08553d45f5a1 +2024-09-11 09:09:05.907992 2024-09-11 09:09:05.907999 cognd 1010824597 R rec 385b33ec-afd0-43f8-a11f-04a18077cb59 +2024-09-11 09:09:05.971514 2024-09-11 09:09:05.97152 cognd 1010820389 R rec 6c24dd9d-68e7-4ce6-a1a9-3d05d03d3869 +2024-09-11 09:09:06.037314 2024-09-11 09:09:06.03732 cognd 101081933X R rec eb2ea921-8ab6-41ad-82d8-91d5308ba150 +2024-09-11 09:09:06.09584 2024-09-11 09:09:06.095846 cognd 100974786X R rec 87613bc3-8023-47fd-92ed-ac9740eb3a7c +2024-09-11 09:09:06.169405 2024-09-11 09:09:06.169411 cognd 1009172255 R rec 80bb2128-fd69-4f86-8035-4cede09d0b22 +2024-09-11 09:09:06.230573 2024-09-11 09:09:06.230579 cognd 100914135X R rec 4251af3b-6045-424b-811c-8ed0c15e0c7b +2024-09-11 09:09:06.283362 2024-09-11 09:09:06.283367 cognd 1008599360 R rec d35c0636-0981-4086-a5d3-60fcf5df4712 +2024-09-11 09:09:06.34794 2024-09-11 09:09:06.347945 cognd 1007558903 R rec 7f5efe23-1b10-47dc-9f56-ef3718d3b12e +2024-09-11 09:09:06.403865 2024-09-11 09:09:06.403871 cognd 1007553405 R rec 4f736da0-6887-482c-9c7f-85cf98903ab5 +2024-09-11 09:09:06.462413 2024-09-11 09:09:06.462418 cognd 1007096462 R rec ea7565d4-031f-467a-84ac-e50b2b7adb1d +2024-09-11 09:09:06.520772 2024-09-11 09:09:06.520777 cognd 1006156577 R rec 38151e5a-235f-4fec-964f-859dc5a8c592 +2024-09-11 09:09:06.580011 2024-09-11 09:09:06.580016 cognd 1005952930 R rec 592ca50e-0a52-4e53-9512-edafb2a38ba7 +2024-09-11 09:09:06.63725 2024-09-11 09:09:06.637255 cognd 1005638322 R rec 3cfa9e50-f0dd-44fd-83a9-69c5da34d275 +2024-09-11 09:09:06.694602 2024-09-11 09:09:06.694608 cognd 1005003262 R rec f660c573-1475-4701-a369-9facd4c18a50 +2024-09-11 09:09:06.747934 2024-09-11 09:09:06.747938 cognd 1003591590 R rec 84f97ffb-125a-4fc1-aaad-085655f43c3f +2024-09-11 09:09:06.811004 2024-09-11 09:09:06.81101 cognd 1001213157 R rec 6febe9bd-0010-46d0-b581-6cd3591cc1fc +2024-09-11 09:09:06.880001 2024-09-11 09:09:06.880007 cognd 1000465403 R rec ff6cc948-b49c-495c-8359-e90d2545fff9 +2024-09-11 09:09:06.946249 2024-09-11 09:09:06.946255 cognd 999617249 R rec e45f77bd-12b1-4bb6-8ff3-d90e7fa294dd +2024-09-11 09:09:07.005952 2024-09-11 09:09:07.005958 cognd 999602810 R rec 49ee1a95-65b0-4fb6-aa91-d1dde15e2948 +2024-09-11 09:09:07.071027 2024-09-11 09:09:07.071032 cognd 999129317 R rec cf4bdfa3-0e4b-4322-a64e-34449aac81a2 +2024-09-11 09:09:07.126687 2024-09-11 09:09:07.126692 cognd 999038095 R rec e7231afe-d369-4c5a-acf3-12ae7556e34a +2024-09-11 09:09:07.183225 2024-09-11 09:09:07.18323 cognd 998759074 R rec 13aec1c2-0113-47cf-be72-be6ec48b6998 +2024-09-11 09:09:07.243247 2024-09-11 09:09:07.243252 cognd 997781491 R rec 2e4d6489-68dd-4335-9ff2-15ab702c862c +2024-09-11 09:09:07.296098 2024-09-11 09:09:07.296104 cognd 994660987 R rec 4d6c352e-cc20-4845-bd8f-b929c6c4e6cc +2024-09-11 09:09:07.348681 2024-09-11 09:09:07.348687 cognd 994508417 R rec 94e824c0-6388-4d82-921d-8278ac0dbd85 +2024-09-11 09:09:07.407139 2024-09-11 09:09:07.407144 cognd 994042582 R rec 916e67d0-8f02-4cf4-a72a-a6a71af43722 +2024-09-11 09:09:07.466215 2024-09-11 09:09:07.466221 cognd 993971806 R rec 25063fbb-49f5-433c-8960-f840685a3d2c +2024-09-11 09:09:07.531272 2024-09-11 09:09:07.531278 cognd 992779871 R rec e75748e2-acc5-4608-ad0f-b46d4c8ae6b7 +2024-09-11 09:09:07.593929 2024-09-11 09:09:07.593934 cognd 992757681 R rec da0d20ae-74b8-4012-add5-f4059904977b +2024-09-11 09:09:07.651395 2024-09-11 09:09:07.651401 cognd 992754151 R rec a5235a6c-b006-4011-8f33-fc37d89c0acb +2024-09-11 09:09:07.701891 2024-09-11 09:09:07.701896 cognd 992753589 R rec d1788d05-09c5-4523-89a6-509a1b2a62fa +2024-09-11 09:09:07.754211 2024-09-11 09:09:07.754216 cognd 992747260 R rec 200f3e07-c7b6-4763-87f1-72553339d00b +2024-09-11 09:09:07.806949 2024-09-11 09:09:07.806954 cognd 992745489 R rec a65cd3db-09d4-49ab-bfe0-8e5e39d3415c +2024-09-11 09:09:07.864583 2024-09-11 09:09:07.86459 cognd 992744431 R rec 36f27135-dd8d-4a5f-8cfd-e385d8b69107 +2024-09-11 09:09:07.927786 2024-09-11 09:09:07.927791 cognd 992744040 R rec 5e442c1d-1d6e-4b7f-a4ed-e1f076f89265 +2024-09-11 09:09:07.997323 2024-09-11 09:09:07.99733 cognd 992742145 R rec 5f1634f5-6164-486a-ab80-37dd8e93ea00 +2024-09-11 09:09:08.063475 2024-09-11 09:09:08.06348 cognd 992740622 R rec bb343185-f7aa-4532-9bd3-d5ca25caa680 +2024-09-11 09:09:08.11508 2024-09-11 09:09:08.115086 cognd 992740002 R rec ce106827-d0f7-461b-957b-42edde7a1e96 +2024-09-11 09:09:08.171715 2024-09-11 09:09:08.171723 cognd 992739888 R rec 77d0103d-8f64-4ff6-9be3-1b1dd502b144 +2024-09-11 09:09:08.232744 2024-09-11 09:09:08.23275 cognd 992734894 R rec 1497d596-4513-496d-b700-c67f98feb774 +2024-09-11 09:09:08.28586 2024-09-11 09:09:08.285866 cognd 992733510 R rec 53c32e68-f87b-4fa8-a7fb-bc6bb0bd236e +2024-09-11 09:09:08.338137 2024-09-11 09:09:08.338143 cognd 992258820 R rec 44c51f35-24ba-4221-984c-c9088c6456c1 +2024-09-11 09:09:08.395066 2024-09-11 09:09:08.395073 cognd 991512669 R rec 6479aa54-791f-48a7-bdf2-8c35a9ecfc32 +2024-09-11 09:09:08.456181 2024-09-11 09:09:08.456186 cognd 99110546X R rec 269ba91d-63a7-4fa2-aba7-84720268bd65 +2024-09-11 09:09:08.511227 2024-09-11 09:09:08.511233 cognd 990635139 R rec 967ec8ab-5b8c-4423-abcd-117b2c8b5ef2 +2024-09-11 09:09:08.564266 2024-09-11 09:09:08.564272 cognd 989819264 R rec 11f60da0-d584-47d3-ac78-443c14d135fa +2024-09-11 09:09:08.616717 2024-09-11 09:09:08.616723 cognd 987246100 R rec 4634c3f0-08b6-4d1e-a317-f7e53c2735af +2024-09-11 09:09:08.669956 2024-09-11 09:09:08.669961 cognd 986124265 R rec 9f7f80b8-80d8-464c-bbf2-dc32fbcda68e +2024-09-11 09:09:08.726363 2024-09-11 09:09:08.726368 cognd 985953780 R rec 08962905-8699-4e0c-954a-34d0cf7abc58 +2024-09-11 09:09:08.781326 2024-09-11 09:09:08.781331 cognd 985948116 R rec 5ca3d31d-f48b-4284-91ae-8990ba760b89 +2024-09-11 09:09:08.837091 2024-09-11 09:09:08.837096 cognd 985147172 R rec 37ac57f3-0f57-4b7c-9b3c-97df0a5cf312 +2024-09-11 09:09:08.891031 2024-09-11 09:09:08.891036 cognd 985075619 R rec b5c0f59f-cbda-4696-a5c6-8accffb518e5 +2024-09-11 09:09:08.943254 2024-09-11 09:09:08.94326 cognd 984505180 R rec e8573d61-552a-4b93-847d-773cb4ca7692 +2024-09-11 09:09:09.005285 2024-09-11 09:09:09.005291 cognd 983782784 R rec 597aa010-01e5-4a8f-98a9-e5ca7b4cb7b9 +2024-09-11 09:09:09.085437 2024-09-11 09:09:09.085442 cognd 983616299 R rec b8131e35-a9d5-46f3-8096-3cf50be4c0af +2024-09-11 09:09:09.147112 2024-09-11 09:09:09.147117 cognd 98350816X R rec a09e3c86-6ce4-423f-b6c7-48aeb2843768 +2024-09-11 09:09:09.20442 2024-09-11 09:09:09.204426 cognd 983481644 R rec 7946f766-e98f-422a-a636-f9ee4bfe13d3 +2024-09-11 09:09:09.257808 2024-09-11 09:09:09.257814 cognd 983481628 R rec 675e2345-e3f4-420f-b1d0-3831a6fe04a0 +2024-09-11 09:09:09.315004 2024-09-11 09:09:09.315009 cognd 982938322 R rec 8eec5703-6a51-45e4-ba23-66d2be02b3e0 +2024-09-11 09:09:09.376787 2024-09-11 09:09:09.376792 cognd 982377649 R rec 08d3b8de-db24-4fef-a811-ea1ff85049f7 +2024-09-11 09:09:09.435007 2024-09-11 09:09:09.435012 cognd 982125461 R rec 9d4824b4-68d4-4674-a542-d0e33080e26e +2024-09-11 09:09:09.487911 2024-09-11 09:09:09.487917 cognd 981073328 R rec 0936cb18-5d0d-46c4-9c7a-f7f3d4093231 +2024-09-11 09:09:09.544414 2024-09-11 09:09:09.54442 cognd 98106521X R rec 31b161e1-54b4-4d87-ad9e-ef570e94d06f +2024-09-11 09:09:09.603638 2024-09-11 09:09:09.603644 cognd 980868459 R rec ea411185-18a6-4697-9e56-4ca5f425d0d1 +2024-09-11 09:09:09.659024 2024-09-11 09:09:09.659029 cognd 980347890 R rec f5e60f1f-a286-4fe3-888e-7271a0ab95ac +2024-09-11 09:09:09.718284 2024-09-11 09:09:09.718289 cognd 979633079 R rec 6febbc98-72c8-4bbf-a5ae-20839086501c +2024-09-11 09:09:09.769982 2024-09-11 09:09:09.769987 cognd 979217253 R rec e804fb94-743b-4c0b-973f-8983cf555869 +2024-09-11 09:09:09.825808 2024-09-11 09:09:09.825813 cognd 979214998 R rec f4f4a159-00bc-4a15-9ae4-a9c8060c63bc +2024-09-11 09:09:09.885378 2024-09-11 09:09:09.885384 cognd 977813762 R rec 0cb0e05e-aa6c-4ac1-997e-09c8ef299474 +2024-09-11 09:09:09.938084 2024-09-11 09:09:09.93809 cognd 977682633 R rec b2bebf4b-5124-425d-a028-66211bccfdf9 +2024-09-11 09:09:09.989982 2024-09-11 09:09:09.989988 cognd 977294390 R rec eacc3484-32d5-420f-b444-5f046640b408 +2024-09-11 09:09:10.044826 2024-09-11 09:09:10.044831 cognd 976865351 R rec 7e8cacaf-545a-4045-8eb5-1f14555e3581 +2024-09-11 09:09:10.108062 2024-09-11 09:09:10.108069 cognd 976859416 R rec feee8011-f67e-42a4-ae32-f139483a9951 +2024-09-11 09:09:10.177579 2024-09-11 09:09:10.177584 cognd 976009048 R rec 63d0d948-a2b2-4249-818a-4136deae3114 +2024-09-11 09:09:10.23822 2024-09-11 09:09:10.238225 cognd 975670824 R rec fe3d4d6b-3c64-46d7-99d3-ec960deb9f4d +2024-09-11 09:09:10.296472 2024-09-11 09:09:10.296477 cognd 975199056 R rec 5947c7a3-6362-4799-8c78-5d6e983a551f +2024-09-11 09:09:10.352928 2024-09-11 09:09:10.352934 cognd 97466068X R rec 49b9d983-77b1-4f25-9394-6d91e2b1d745 +2024-09-11 09:09:10.406672 2024-09-11 09:09:10.406677 cognd 974476560 R rec bb41fea4-67a4-45e6-bec4-3314534827b3 +2024-09-11 09:09:10.465918 2024-09-11 09:09:10.465924 cognd 974160032 R rec bb1c9f56-ba3a-450d-857c-e3d11a4141ed +2024-09-11 09:09:10.524236 2024-09-11 09:09:10.524243 cognd 97397687X R rec 28199adc-a8d3-4c1a-8591-3137bf2010de +2024-09-11 09:09:10.585078 2024-09-11 09:09:10.585084 cognd 972616705 R rec 03fc7459-704a-4e2f-a774-3ad771178e6d +2024-09-11 09:09:10.648999 2024-09-11 09:09:10.649005 cognd 972391010 R rec b89e8c74-b696-46a9-9277-9663fc2059a4 +2024-09-11 09:09:10.70523 2024-09-11 09:09:10.705235 cognd 971044899 R rec 433ec3c7-917f-4b55-8987-78fa2af5db65 +2024-09-11 09:09:10.760114 2024-09-11 09:09:10.760119 cognd 970758065 R rec db8d677a-c32c-402c-9ed4-1a2a1bf09cd8 +2024-09-11 09:09:10.819063 2024-09-11 09:09:10.819068 cognd 970679645 R rec 91acdc15-453a-406b-943c-aab0397f90d8 +2024-09-11 09:09:10.875114 2024-09-11 09:09:10.87512 cognd 970190417 R rec 7a537c77-652d-494d-a8a6-050aebe77d12 +2024-09-11 09:09:10.934738 2024-09-11 09:09:10.934744 cognd 969678363 R rec 746084cb-5ad8-4ed6-a25f-097eccdcf475 +2024-09-11 09:09:10.988827 2024-09-11 09:09:10.988832 cognd 969131240 R rec c9f63ad7-0568-47eb-ac99-8b5636c16436 +2024-09-11 09:09:11.048266 2024-09-11 09:09:11.048271 cognd 968663664 R rec c3ddd3be-616d-4d89-b45e-d53093b9960f +2024-09-11 09:09:11.12868 2024-09-11 09:09:11.128686 cognd 968634737 R rec cbbac589-92a9-4e7e-8c36-c5fcc2a7ed90 +2024-09-11 09:09:11.182981 2024-09-11 09:09:11.182987 cognd 968438121 R rec 958680b6-70e6-45f4-be5b-e2b3dbd8109d +2024-09-11 09:09:11.242807 2024-09-11 09:09:11.242812 cognd 968387705 R rec 371eea2a-f474-40cb-9fa8-9260bbd6391d +2024-09-11 09:09:11.295297 2024-09-11 09:09:11.295302 cognd 968377955 R rec 35c0b581-09ab-4059-a3f4-be72cf38bfed +2024-09-11 09:09:11.353772 2024-09-11 09:09:11.353777 cognd 968360009 R rec f47e3fbe-439d-4d90-9dce-bc8c9b591433 +2024-09-11 09:09:11.405858 2024-09-11 09:09:11.405863 cognd 96832780X R rec baf4259d-bd88-4c2d-bd4b-5926d4208a65 +2024-09-11 09:09:11.464702 2024-09-11 09:09:11.464707 cognd 967876710 R rec d8a4e0b9-c565-4d45-aba2-3a5d036651a4 +2024-09-11 09:09:11.521809 2024-09-11 09:09:11.521814 cognd 967734657 R rec 5a0158b5-a3b8-47b0-ad49-2973636ec45a +2024-09-11 09:09:11.573143 2024-09-11 09:09:11.573148 cognd 967659523 R rec 986f7d4b-a41d-4bc7-ae7e-50ab4b5a2a96 +2024-09-11 09:09:11.6337 2024-09-11 09:09:11.633706 cognd 967617987 R rec 7227f684-02b1-4c79-aa65-abc55e7b89ce +2024-09-11 09:09:11.688391 2024-09-11 09:09:11.688397 cognd 967326133 R rec 051afb06-4e05-4917-a194-1dfa1b8093c1 +2024-09-11 09:09:11.746589 2024-09-11 09:09:11.746594 cognd 96717757X R rec bf1312e2-9689-4bdb-b878-8d9e8ff9105c +2024-09-11 09:09:11.800029 2024-09-11 09:09:11.800035 cognd 967169399 R rec bb35a9c8-5119-49ea-af88-4d064f082a1e +2024-09-11 09:09:11.858854 2024-09-11 09:09:11.858859 cognd 967155223 R rec 7f918fb3-b818-45fa-961f-5fd73575cd7f +2024-09-11 09:09:11.92089 2024-09-11 09:09:11.920895 cognd 966649052 R rec 9398f642-a846-4f5f-833e-977def2821db +2024-09-11 09:09:11.983025 2024-09-11 09:09:11.983031 cognd 966536304 R rec 34430dec-bf88-494f-8a63-d48988f4acda +2024-09-11 09:09:12.042684 2024-09-11 09:09:12.04269 cognd 965652785 R rec 2cee0790-2876-4b20-b44f-0335fd4d6100 +2024-09-11 09:09:12.097225 2024-09-11 09:09:12.09723 cognd 965576825 R rec af769912-80c1-441c-9b34-1c4ea01e20ae +2024-09-11 09:09:12.152855 2024-09-11 09:09:12.152861 cognd 965369846 R rec 27d4ca38-9dc6-4226-a9bb-6c8b31b487a5 +2024-09-11 09:09:12.206959 2024-09-11 09:09:12.206965 cognd 965367924 R rec f8dc241c-5664-4868-8afb-684584914c4d +2024-09-11 09:09:12.261569 2024-09-11 09:09:12.261574 cognd 965252973 R rec 4c2b8abe-0cd9-4c38-be81-7833900897d9 +2024-09-11 09:09:12.318946 2024-09-11 09:09:12.318952 cognd 964979683 R rec 01aaf7eb-65c1-4cb6-9293-75c3945d7cef +2024-09-11 09:09:12.388567 2024-09-11 09:09:12.388572 cognd 964866862 R rec 367751bd-d7e0-40cc-8fb4-a610814375e1 +2024-09-11 09:09:12.458288 2024-09-11 09:09:12.458294 cognd 964848651 R rec f792a5ed-8008-4fdc-a5cc-ab897fd00e23 +2024-09-11 09:09:12.523676 2024-09-11 09:09:12.523681 cognd 96473222X R rec 2f2d4177-c176-480d-b021-b98e51aad3d8 +2024-09-11 09:09:12.597644 2024-09-11 09:09:12.597649 cognd 964720272 R rec c05b551e-8ea1-415e-ac30-43473b4a8848 +2024-09-11 09:09:12.682223 2024-09-11 09:09:12.68223 cognd 964519194 R rec f443e8f1-8564-4c8a-b3d6-5774dd2575fa +2024-09-11 09:09:12.741589 2024-09-11 09:09:12.741594 cognd 964421062 R rec 654b467d-e892-4247-8dcb-5aae0a7dc0ac +2024-09-11 09:09:12.804849 2024-09-11 09:09:12.804854 cognd 964339676 R rec fada3ef4-d14c-4d88-ac4b-2e1f0ab1d079 +2024-09-11 09:09:12.875786 2024-09-11 09:09:12.875793 cognd 964334666 R rec 5750685c-b91e-4e3b-b478-a9c409a66552 +2024-09-11 09:09:12.948632 2024-09-11 09:09:12.948638 cognd 964248026 R rec 3f8eaf3e-d33b-476e-adf0-c932be0b643d +2024-09-11 09:09:13.01562 2024-09-11 09:09:13.015626 cognd 964078880 R rec 67909ea5-de63-4c77-805a-4d7c90e495bb +2024-09-11 09:09:13.08967 2024-09-11 09:09:13.089675 cognd 963708708 R rec cd91d663-3a42-4eb4-a56c-236c562fce02 +2024-09-11 09:09:13.166564 2024-09-11 09:09:13.16657 cognd 963707906 R rec 6c7d4672-14a7-4e5b-9328-96849bb39434 +2024-09-11 09:09:13.220525 2024-09-11 09:09:13.22053 cognd 963707884 R rec 6050107e-b5c8-4b11-a6b6-246ae3ac1dc8 +2024-09-11 09:09:13.276604 2024-09-11 09:09:13.27661 cognd 963495046 R rec 58a58ff8-97c3-4349-aeec-8f101f49ebfa +2024-09-11 09:09:13.3308 2024-09-11 09:09:13.330805 cognd 963483927 R rec 50ee92c5-1421-4a7f-bf36-58664213c7cb +2024-09-11 09:09:13.402601 2024-09-11 09:09:13.402607 cognd 96317066X R rec 5c738cc0-3ecb-42ca-8e6b-fd81a5d2b465 +2024-09-11 09:09:13.455136 2024-09-11 09:09:13.455141 cognd 963127608 R rec b34a6bd9-538f-4d77-b058-bd9d47c81834 +2024-09-11 09:09:13.511625 2024-09-11 09:09:13.511631 cognd 963125125 R rec f60abf5f-9fb5-45a3-80e9-536e898fe8ee +2024-09-11 09:09:13.568358 2024-09-11 09:09:13.568364 cognd 963005553 R rec ab08ed04-4be4-4432-93f6-62dff7a6ff9e +2024-09-11 09:09:13.625807 2024-09-11 09:09:13.625813 cognd 962883026 R rec db929409-6c59-459e-a1fc-3c585a4392cd +2024-09-11 09:09:13.686644 2024-09-11 09:09:13.68665 cognd 962846104 R rec 9aa9499b-958a-4f6a-b685-c467c5054609 +2024-09-11 09:09:13.745028 2024-09-11 09:09:13.745033 cognd 962794015 R rec 47d1d916-4883-4848-a899-5f94606f02bd +2024-09-11 09:09:13.803981 2024-09-11 09:09:13.803986 cognd 962681539 R rec 5883c8e8-879e-4f29-b08a-14b7442c0971 +2024-09-11 09:09:13.861343 2024-09-11 09:09:13.86135 cognd 962256978 R rec feed7895-e06c-47db-af5a-4ed96ccc5b67 +2024-09-11 09:09:13.926122 2024-09-11 09:09:13.926127 cognd 962005959 R rec e4809bb3-91b2-4e62-b3ee-6257e837f9bf +2024-09-11 09:09:13.990437 2024-09-11 09:09:13.990443 cognd 961909021 R rec f93229b7-25b4-45ac-ab88-7d0292f80777 +2024-09-11 09:09:14.055543 2024-09-11 09:09:14.055548 cognd 961468319 R rec 6c67b017-3b6d-4562-a470-50e37637768e +2024-09-11 09:09:14.109911 2024-09-11 09:09:14.109916 cognd 960936785 R rec a4702fee-74ab-4340-a857-dcf93123924f +2024-09-11 09:09:14.170154 2024-09-11 09:09:14.17016 cognd 960733108 R rec 39081977-9428-4929-9106-263c3431e14d +2024-09-11 09:09:14.233803 2024-09-11 09:09:14.233809 cognd 960658491 R rec eb073463-70d0-4418-ad04-84987cf0549a +2024-09-11 09:09:14.299646 2024-09-11 09:09:14.299652 cognd 960161872 R rec f3cc93de-4827-4768-bcbf-d21ae26181fe +2024-09-11 09:09:14.35481 2024-09-11 09:09:14.354815 cognd 959965831 R rec 9168c79f-f9e3-4289-958a-40e1fcf308cb +2024-09-11 09:09:14.410351 2024-09-11 09:09:14.410356 cognd 959960775 R rec 63bdf274-f066-4e3d-88c2-ca8d667e362c +2024-09-11 09:09:14.463743 2024-09-11 09:09:14.463748 cognd 959893202 R rec 716bf812-a148-4f85-93ac-2d6ae707ce97 +2024-09-11 09:09:14.52011 2024-09-11 09:09:14.520115 cognd 959807241 R rec 3ea5b44e-9214-47d9-8310-7caba33361a5 +2024-09-11 09:09:14.577722 2024-09-11 09:09:14.577728 cognd 959710248 R rec 94099ed2-f702-4210-a513-45d89e4bbbd5 +2024-09-11 09:09:14.633771 2024-09-11 09:09:14.633776 cognd 959143459 R rec e0d41bf4-dff5-46ea-a5c6-064aadc40222 +2024-09-11 09:09:14.686776 2024-09-11 09:09:14.686783 cognd 958745404 R rec e7f87d05-dd9c-4b69-8b45-17b8ce929c83 +2024-09-11 09:09:14.744466 2024-09-11 09:09:14.744472 cognd 958745374 R rec 7868bcd0-1919-43d1-ac3d-a53cd5521647 +2024-09-11 09:09:14.79988 2024-09-11 09:09:14.799886 cognd 958745307 R rec 98c2ed8d-e08f-4723-a815-e906588d297f +2024-09-11 09:09:14.857191 2024-09-11 09:09:14.857196 cognd 958577447 R rec e0cfc09a-398d-475a-b149-219b55ea8cb9 +2024-09-11 09:09:14.913781 2024-09-11 09:09:14.913787 cognd 958508402 R rec 1d9886fd-3239-4477-8c38-23d0c1e13283 +2024-09-11 09:09:14.972648 2024-09-11 09:09:14.972653 cognd 958195455 R rec 753dcfe7-1c6f-4e30-ae39-947f2c3349d1 +2024-09-11 09:09:15.028318 2024-09-11 09:09:15.028323 cognd 958121966 R rec dd7d6b15-dfc6-4986-bb22-b0e2b628400f +2024-09-11 09:09:15.08147 2024-09-11 09:09:15.081475 cognd 957564554 R rec 34b15015-59d1-4135-8aeb-24b66d263e0a +2024-09-11 09:09:15.137111 2024-09-11 09:09:15.137116 cognd 957193599 R rec a2e93674-2023-4bf0-9552-a3d926faf371 +2024-09-11 09:09:15.191723 2024-09-11 09:09:15.191729 cognd 957133235 R rec b335cf25-97d0-4ece-b2e6-86c97fcc31e2 +2024-09-11 09:09:15.243283 2024-09-11 09:09:15.243289 cognd 956836976 R rec ed5116a8-ca85-4d86-994e-6b3ecba9a2df +2024-09-11 09:09:15.299537 2024-09-11 09:09:15.299542 cognd 956033679 R rec 66640990-4491-47f2-a107-4a02ed91fb50 +2024-09-11 09:09:15.357047 2024-09-11 09:09:15.357052 cognd 955952638 R rec cab8fb44-8772-428c-88ee-7281928ceeec +2024-09-11 09:09:15.411093 2024-09-11 09:09:15.411098 cognd 955845483 R rec 22a9ca93-367a-417d-b988-6544063fcf3a +2024-09-11 09:09:15.468551 2024-09-11 09:09:15.468557 cognd 955777844 R rec 92b03770-c1ba-4148-82c5-b14ac803c0ec +2024-09-11 09:09:15.538473 2024-09-11 09:09:15.538478 cognd 955671906 R rec 8e1bc50d-ac8d-4300-8357-8babf2144ea6 +2024-09-11 09:09:15.602204 2024-09-11 09:09:15.60221 cognd 955633087 R rec 0a67eaa6-5442-47ea-a63c-3e083757a1e4 +2024-09-11 09:09:15.654872 2024-09-11 09:09:15.654877 cognd 955631963 R rec cdfb2bfc-b111-4a73-847a-0c7538f53309 +2024-09-11 09:09:15.711481 2024-09-11 09:09:15.711486 cognd 955522552 R rec 901a6d5e-631a-42a4-87d9-baec3cdc2b4e +2024-09-11 09:09:15.765043 2024-09-11 09:09:15.76505 cognd 955510392 R rec a3858948-d7e7-457f-8521-96c3c2b13444 +2024-09-11 09:09:15.823524 2024-09-11 09:09:15.823529 cognd 955497205 R rec b5b45861-585b-48a2-92b4-62af16f0d5a6 +2024-09-11 09:09:15.87695 2024-09-11 09:09:15.876956 cognd 955324300 R rec c1f6bcce-419c-4097-9f12-83547dfc104a +2024-09-11 09:09:15.932991 2024-09-11 09:09:15.932997 cognd 955297966 R rec a904c06a-e42b-488c-bc93-9d7c085560a5 +2024-09-11 09:09:15.987407 2024-09-11 09:09:15.987413 cognd 955286999 R rec c644682f-c026-458c-9c83-4b37418c4c3d +2024-09-11 09:09:16.04585 2024-09-11 09:09:16.045856 cognd 955249929 R rec 1d4301d4-4f28-4b51-8006-cb49273f6762 +2024-09-11 09:09:16.111408 2024-09-11 09:09:16.111413 cognd 955181178 R rec a49689bb-513b-4a24-bcb5-3154ec7533a1 +2024-09-11 09:09:16.165198 2024-09-11 09:09:16.165203 cognd 955150507 R rec aeed5afe-c215-446c-bc42-63781f0ca201 +2024-09-11 09:09:16.241419 2024-09-11 09:09:16.241425 cognd 954752554 R rec aeeb748b-fdbd-48eb-91f2-41e4b93d5ea5 +2024-09-11 09:09:16.295566 2024-09-11 09:09:16.295571 cognd 95471752X R rec 4e6f5583-feec-455f-8624-bdba25f4755b +2024-09-11 09:09:16.35374 2024-09-11 09:09:16.353745 cognd 95469483X R rec e56b2708-5211-44f8-8b8d-e2c348a4455b +2024-09-11 09:09:16.409369 2024-09-11 09:09:16.409375 cognd 954658248 R rec 177c1787-effb-4aed-ab1c-67c828263bc3 +2024-09-11 09:09:16.475017 2024-09-11 09:09:16.475022 cognd 95439836X R rec a0cb396a-155a-492a-92ef-476fd203afc2 +2024-09-11 09:09:16.536792 2024-09-11 09:09:16.536798 cognd 954299973 R rec 04c149b3-36a2-4f47-a75f-a4e6b5215c22 +2024-09-11 09:09:16.592597 2024-09-11 09:09:16.592602 cognd 954068572 R rec 3a2b8d8d-dede-40e8-85df-22d44d96bc07 +2024-09-11 09:09:16.666645 2024-09-11 09:09:16.666651 cognd 95406853X R rec dbd6fd88-f9c0-4815-adee-e050e632f2c4 +2024-09-11 09:09:16.732929 2024-09-11 09:09:16.732935 cognd 954021185 R rec 4681f60a-250a-4a70-9668-ddb6a34b10f5 +2024-09-11 09:09:16.791365 2024-09-11 09:09:16.791371 cognd 953936503 R rec efc14438-b6a6-4197-8c8a-46af2b365c71 +2024-09-11 09:09:16.855552 2024-09-11 09:09:16.855558 cognd 953467732 R rec 92cc2f9f-940a-4555-a6a5-1450344aa5c0 +2024-09-11 09:09:16.907998 2024-09-11 09:09:16.908004 cognd 953463176 R rec e25f7d40-80bb-4010-83b9-6170409b59e5 +2024-09-11 09:09:16.962368 2024-09-11 09:09:16.962375 cognd 953354431 R rec 5fe0d7a6-ada2-4d9c-98d0-92655a9cda25 +2024-09-11 09:09:17.026103 2024-09-11 09:09:17.026108 cognd 95324590X R rec 5d3432fa-834d-4015-965d-c47b5f5fd77c +2024-09-11 09:09:17.087634 2024-09-11 09:09:17.08764 cognd 953019209 R rec 449fc6c0-822c-414e-9248-0cf424edc602 +2024-09-11 09:09:17.147727 2024-09-11 09:09:17.147732 cognd 953011992 R rec cecfd63f-466a-44a3-99c0-70085a27dfe2 +2024-09-11 09:09:17.209036 2024-09-11 09:09:17.209042 cognd 952966336 R rec 6795062b-ec45-4d23-8ecb-5594552969e6 +2024-09-11 09:09:17.27128 2024-09-11 09:09:17.271285 cognd 952945991 R rec ef1987e2-e3d8-458d-8d9e-669f4c08c499 +2024-09-11 09:09:17.331764 2024-09-11 09:09:17.33177 cognd 952945819 R rec d308d744-a1ee-4cb7-a530-4b2fcdd73c74 +2024-09-11 09:09:17.38811 2024-09-11 09:09:17.388115 cognd 952794357 R rec fbf63f5b-ecda-444c-a14b-34f1af7c863b +2024-09-11 09:09:17.441892 2024-09-11 09:09:17.441897 cognd 952319888 R rec 08340086-afb3-4574-a8cc-221d3e852f8a +2024-09-11 09:09:17.497158 2024-09-11 09:09:17.497163 cognd 952090163 R rec 528fcdc5-0475-4d02-b3ff-eebf38851a24 +2024-09-11 09:09:17.570702 2024-09-11 09:09:17.570708 cognd 952082098 R rec 1a05c625-c479-495a-a0e3-eaac0898f535 +2024-09-11 09:09:17.627231 2024-09-11 09:09:17.627236 cognd 951939440 R rec 5907e25e-630e-40b2-b83a-0d4485a727c0 +2024-09-11 09:09:17.683353 2024-09-11 09:09:17.683359 cognd 95171337X R rec ae14d98f-1524-4012-b3c2-0ec8cb9bc468 +2024-09-11 09:09:17.735819 2024-09-11 09:09:17.735825 cognd 951567241 R rec db0eedfe-11ed-4b5b-a06f-efb9722ea0c1 +2024-09-11 09:09:17.78774 2024-09-11 09:09:17.787745 cognd 951452940 R rec f662f92a-b866-4d09-af22-ae9cebcbf529 +2024-09-11 09:09:17.84348 2024-09-11 09:09:17.843486 cognd 95136653X R rec 2ac7df46-f38f-4607-ac89-8dbec3aa5643 +2024-09-11 09:09:17.898756 2024-09-11 09:09:17.898763 cognd 951151541 R rec 949691ae-f248-4748-a566-d23c59cfdb49 +2024-09-11 09:09:17.955754 2024-09-11 09:09:17.955759 cognd 951040960 R rec 59f808f9-2b2f-479d-a5ef-e169dbf8c85a +2024-09-11 09:09:18.018053 2024-09-11 09:09:18.018058 cognd 950872555 R rec 5e39a027-f620-426b-b41f-59df7d320c61 +2024-09-11 09:09:18.077161 2024-09-11 09:09:18.077165 cognd 95058410X R rec 78c20900-345d-40fc-b9fa-07d649d1e5ae +2024-09-11 09:09:18.129724 2024-09-11 09:09:18.12973 cognd 950461083 R rec 9fb8078f-b6a5-49cf-b0fb-d5799d1052d7 +2024-09-11 09:09:18.197285 2024-09-11 09:09:18.197291 cognd 950453544 R rec d06d168e-f24a-46e4-8fc2-ca7d92cd7a3b +2024-09-11 09:09:18.254275 2024-09-11 09:09:18.254281 cognd 950378682 R rec b0a72954-7be4-4a4e-8da3-26ad4ac8ca21 +2024-09-11 09:09:18.319959 2024-09-11 09:09:18.31997 cognd 950378658 R rec 0c65f44e-3fe0-41dc-aa30-6fd45fae1726 +2024-09-11 09:09:18.373951 2024-09-11 09:09:18.373956 cognd 950280984 R rec b88e60b4-156e-44b7-965d-5e6243d89bae +2024-09-11 09:09:18.430507 2024-09-11 09:09:18.430512 cognd 950268593 R rec 73331841-5d55-4496-973e-89444f6ce554 +2024-09-11 09:09:18.482667 2024-09-11 09:09:18.482673 cognd 94996591X R rec 2de03c32-8190-4c86-8986-707d8815911e +2024-09-11 09:09:18.538016 2024-09-11 09:09:18.538021 cognd 949736864 R rec 52bdc91e-84df-416c-8035-8f8605714f3c +2024-09-11 09:09:18.593548 2024-09-11 09:09:18.593553 cognd 949582964 R rec 279b35d5-7623-4472-99c2-8b6459137322 +2024-09-11 09:09:18.647679 2024-09-11 09:09:18.647684 cognd 94925584X R rec 4a518457-9651-41a9-9920-09a4b8dae7f4 +2024-09-11 09:09:18.711585 2024-09-11 09:09:18.71159 cognd 949178594 R rec 513c1028-6e04-47eb-89a2-c3977ce6d2b6 +2024-09-11 09:09:18.775943 2024-09-11 09:09:18.775949 cognd 948985429 R rec a4c959e9-5849-407a-9ce6-0913dc2bea0a +2024-09-11 09:09:18.837802 2024-09-11 09:09:18.837806 cognd 948861975 R rec 945f4b99-b4ec-48e4-9820-1cac9efb5404 +2024-09-11 09:09:18.891083 2024-09-11 09:09:18.891088 cognd 948734418 R rec dd5bfcd8-badb-4040-9896-cc345d236892 +2024-09-11 09:09:18.953657 2024-09-11 09:09:18.953663 cognd 948616792 R rec 86307bb8-e2b9-4e06-8533-af9214fd18b1 +2024-09-11 09:09:19.006496 2024-09-11 09:09:19.006502 cognd 948581387 R rec f0b35a14-e614-4730-84f1-b35ccee80547 +2024-09-11 09:09:19.063191 2024-09-11 09:09:19.063197 cognd 948367032 R rec 3b34f7b4-60a6-4e3b-8cc4-7aa6348fcac3 +2024-09-11 09:09:19.120649 2024-09-11 09:09:19.120655 cognd 948358742 R rec 8c4b822e-3e78-4eea-aa40-c8cb829d9b3b +2024-09-11 09:09:19.173124 2024-09-11 09:09:19.173129 cognd 94818387X R rec 4a8537a8-080a-4853-a932-99c6b8371b66 +2024-09-11 09:09:19.232727 2024-09-11 09:09:19.232733 cognd 948059028 R rec 5a0edf54-5ead-40dc-a71b-7a497a66e2c0 +2024-09-11 09:09:19.288682 2024-09-11 09:09:19.288687 cognd 948023465 R rec 24186cb1-9c0f-477e-9b4d-e28434d7c719 +2024-09-11 09:09:19.351676 2024-09-11 09:09:19.351686 cognd 947999043 R rec e0d58dce-7503-4ea4-b421-60121952d78f +2024-09-11 09:09:19.412235 2024-09-11 09:09:19.41224 cognd 947807691 R rec 5351745d-e86a-4ae6-a6f2-200b7b0e96e1 +2024-09-11 09:09:19.4667 2024-09-11 09:09:19.466705 cognd 947667040 R rec 2e01617b-4ff1-460d-a07a-dd2252ed2c00 +2024-09-11 09:09:19.523438 2024-09-11 09:09:19.523443 cognd 947636676 R rec 54cddda2-625e-42fc-948d-094bbe78f5ad +2024-09-11 09:09:19.577554 2024-09-11 09:09:19.577559 cognd 947568441 R rec b094c77b-1466-4f10-bdec-8561b2c68064 +2024-09-11 09:09:19.634409 2024-09-11 09:09:19.634414 cognd 947543112 R rec 2e29e20a-6f21-417b-83da-6834effa14f4 +2024-09-11 09:09:19.689952 2024-09-11 09:09:19.689958 cognd 947466223 R rec 8ddc1933-a05f-4ec8-94a0-4a4b8f5de51d +2024-09-11 09:09:19.740448 2024-09-11 09:09:19.740454 cognd 947465928 R rec 36ab804a-6703-4200-8f57-22779e71ed23 +2024-09-11 09:09:19.79462 2024-09-11 09:09:19.794625 cognd 947415874 R rec 8478a45e-3acd-448e-b02c-ed1f83b50bc6 +2024-09-11 09:09:19.849121 2024-09-11 09:09:19.849126 cognd 947397213 R rec 512defdf-bc78-45ae-b347-8f60f0821b56 +2024-09-11 09:09:19.912299 2024-09-11 09:09:19.912304 cognd 947389229 R rec a4bbd63f-9d6a-4a6b-abc4-d447191038b4 +2024-09-11 09:09:19.974557 2024-09-11 09:09:19.974563 cognd 94736093X R rec 96a29393-71fc-4979-be95-fe95b7bdba19 +2024-09-11 09:09:20.031842 2024-09-11 09:09:20.031848 cognd 947337555 R rec c7e0907e-5433-4324-8636-61c44dc33826 +2024-09-11 09:09:20.086495 2024-09-11 09:09:20.086503 cognd 947167293 R rec 64f00069-5be7-4b4b-b8dd-8ce9184629e9 +2024-09-11 09:09:20.147458 2024-09-11 09:09:20.147463 cognd 947085017 R rec 2e0b9f15-aacc-464a-9d24-1e4822142018 +2024-09-11 09:09:20.208366 2024-09-11 09:09:20.208371 cognd 947015388 R rec de3f9ae2-9c82-4fc6-a6d1-44ed3fc50a18 +2024-09-11 09:09:20.263137 2024-09-11 09:09:20.263142 cognd 946998051 R rec 6915f9b1-a25c-4d9d-8e41-2637342565fc +2024-09-11 09:09:20.319446 2024-09-11 09:09:20.319451 cognd 946944210 R rec 548b5828-a764-454f-b602-d52e3b4babb8 +2024-09-11 09:09:20.377159 2024-09-11 09:09:20.377165 cognd 946868093 R rec f5eb947c-5898-4cc8-91e5-071fef261eeb +2024-09-11 09:09:20.448116 2024-09-11 09:09:20.448121 cognd 946792631 R rec f83be1f2-f764-48a1-85cc-72461c174bd3 +2024-09-11 09:09:20.506017 2024-09-11 09:09:20.506023 cognd 946776164 R rec f918b3fb-e641-4eb6-be5f-46a486391181 +2024-09-11 09:09:20.569622 2024-09-11 09:09:20.569627 cognd 946530629 R rec b4b54b6f-e20c-4b80-b5b4-7ab38267b3d0 +2024-09-11 09:09:20.627108 2024-09-11 09:09:20.627113 cognd 94646085X R rec 606e2f92-a8ca-4e01-a7ff-fc60aae3ddf6 +2024-09-11 09:09:20.6882 2024-09-11 09:09:20.688205 cognd 946062706 R rec 356c5dca-2d78-4ae8-b534-dece6de9729f +2024-09-11 09:09:20.757645 2024-09-11 09:09:20.75765 cognd 946022895 R rec fdc82701-9a4e-4668-ad95-c566765cf49c +2024-09-11 09:09:20.815059 2024-09-11 09:09:20.815064 cognd 94601888X R rec f6dfd3b0-d9a2-4334-9171-9c4dffeca571 +2024-09-11 09:09:20.870336 2024-09-11 09:09:20.870342 cognd 945863837 R rec 35e52a6c-77ae-4db2-8f8c-89350db3de86 +2024-09-11 09:09:20.938198 2024-09-11 09:09:20.938203 cognd 944522297 R rec 0014f040-ca0b-48fd-9281-a3c7098eec55 +2024-09-11 09:09:20.997235 2024-09-11 09:09:20.997241 cognd 944502172 R rec 4d972378-3166-4b3c-b14d-c12f621fa33c +2024-09-11 09:09:21.055074 2024-09-11 09:09:21.055078 cognd 944484611 R rec af7a7bf0-ff28-4c6a-80c3-2945995d0ef1 +2024-09-11 09:09:21.108729 2024-09-11 09:09:21.108734 cognd 94430396X R rec 3dd177b5-98aa-45ff-8da2-b3e137b06a8d +2024-09-11 09:09:21.167011 2024-09-11 09:09:21.167017 cognd 943889170 R rec 5cb9ed71-4f19-4efa-bd06-69ea6227ebfa +2024-09-11 09:09:21.224424 2024-09-11 09:09:21.224429 cognd 943836476 R rec 22e83d75-115e-4205-8fcc-aa23fc6b1eec +2024-09-11 09:09:21.278855 2024-09-11 09:09:21.27886 cognd 943625394 R rec 58c32621-8b9e-40ee-9804-c5192f7e1191 +2024-09-11 09:09:21.338608 2024-09-11 09:09:21.338613 cognd 943440017 R rec 1aac3a47-57b5-488b-8ec7-33e4dfd44cd4 +2024-09-11 09:09:21.410396 2024-09-11 09:09:21.410402 cognd 94337426X R rec ce347cb9-364e-477a-a3f9-0ff73f6bfda0 +2024-09-11 09:09:21.463549 2024-09-11 09:09:21.463554 cognd 943258170 R rec 9de5f220-6875-42c2-a8e7-aec9112193d0 +2024-09-11 09:09:21.524932 2024-09-11 09:09:21.524939 cognd 943209374 R rec 0bbbffb6-14de-4c2b-b3a5-6a950036160e +2024-09-11 09:09:21.5828 2024-09-11 09:09:21.582805 cognd 942627644 R rec a64adf39-30f1-4042-b840-177ca7119e6f +2024-09-11 09:09:21.638218 2024-09-11 09:09:21.638223 cognd 942531639 R rec e9ebd0eb-9018-408a-9009-935ada246862 +2024-09-11 09:09:21.695172 2024-09-11 09:09:21.695177 cognd 942348036 R rec f33e089d-a903-4490-9fc8-c67646f80f0f +2024-09-11 09:09:21.7512 2024-09-11 09:09:21.751205 cognd 942346300 R rec f1e21fa1-87b4-4d26-8663-ce8c4a408084 +2024-09-11 09:09:21.806984 2024-09-11 09:09:21.806989 cognd 942142845 R rec 8656925f-f16a-4114-add0-ac82826b6ddb +2024-09-11 09:09:21.863337 2024-09-11 09:09:21.863341 cognd 94203712X R rec 907b113f-b576-415c-9431-c2b2b8c7e214 +2024-09-11 09:09:21.919818 2024-09-11 09:09:21.919823 cognd 941869121 R rec 8ec07d4f-e186-4eae-a369-320191aaf43a +2024-09-11 09:09:21.979609 2024-09-11 09:09:21.979614 cognd 941589021 R rec a88357b2-269f-4924-8c39-0339290065c5 +2024-09-11 09:09:22.044827 2024-09-11 09:09:22.044831 cognd 941532704 R rec 512ae0e2-67be-4d65-aa3b-f4a3cd40cbd3 +2024-09-11 09:09:22.094153 2024-09-11 09:09:22.094157 cognd 941495256 R rec 6d5657a4-d686-4c64-a12e-651ea4400031 +2024-09-11 09:09:22.143281 2024-09-11 09:09:22.143287 cognd 941482774 R rec 98470b72-b389-4563-8a80-f432b6e4ec5a +2024-09-11 09:09:22.201613 2024-09-11 09:09:22.201618 cognd 941366138 R rec fef9b7c7-63b7-4059-97a8-8c052b6b096e +2024-09-11 09:09:22.256176 2024-09-11 09:09:22.256181 cognd 941365050 R rec a059aa43-cf5b-4be7-8ba1-ed6d5ed0d247 +2024-09-11 09:09:22.313892 2024-09-11 09:09:22.313897 cognd 941158748 R rec f4bae4f7-d146-4ce2-8ce2-09fc3ca5fc65 +2024-09-11 09:09:22.363356 2024-09-11 09:09:22.363361 cognd 941131572 R rec ff59d947-024e-4156-962b-0688a0e2395f +2024-09-11 09:09:22.411737 2024-09-11 09:09:22.411741 cognd 940921588 R rec 9ecd35f2-2660-4b81-b606-22ee64129c18 +2024-09-11 09:09:22.46445 2024-09-11 09:09:22.464456 cognd 940807904 R rec a3231745-7f5c-4349-a722-e9fd21ad665a +2024-09-11 09:09:22.521408 2024-09-11 09:09:22.521413 cognd 940788187 R rec 95f1d17a-bc08-4eb6-b6ab-49e2e63bf5b4 +2024-09-11 09:09:22.574019 2024-09-11 09:09:22.574025 cognd 940762048 R rec 765e9c6d-5e24-417e-9bfe-648f29c63166 +2024-09-11 09:09:22.631974 2024-09-11 09:09:22.63198 cognd 940758776 R rec 1657627d-c917-42e7-ab8f-a153d5ba2693 +2024-09-11 09:09:22.688776 2024-09-11 09:09:22.688781 cognd 940755459 R rec faa663cf-3761-4594-bf09-45507f2f7943 +2024-09-11 09:09:22.745403 2024-09-11 09:09:22.745408 cognd 94074449X R rec 92ec63d1-23c0-4436-88d1-be971c5283c3 +2024-09-11 09:09:22.810032 2024-09-11 09:09:22.810038 cognd 940604833 R rec eca0e0b7-99a6-470b-a6a5-c84bd0cefae4 +2024-09-11 09:09:22.867026 2024-09-11 09:09:22.867032 cognd 940540959 R rec eac7a1f5-5433-4be2-a320-054ee88d8308 +2024-09-11 09:09:22.92154 2024-09-11 09:09:22.921545 cognd 940535912 R rec 6a6507f2-d7b3-4431-88cf-9c51273d6d2f +2024-09-11 09:09:22.981051 2024-09-11 09:09:22.981056 cognd 94052113X R rec 57825dc8-4270-4408-9ec4-b8ff352805ff +2024-09-11 09:09:23.03688 2024-09-11 09:09:23.036885 cognd 940125897 R rec 3dad84a9-b39a-415d-839d-42798bc9b5cb +2024-09-11 09:09:23.103708 2024-09-11 09:09:23.103714 cognd 940111187 R rec 2b804788-712c-4efe-8364-4fa5fe0bca2c +2024-09-11 09:09:23.163085 2024-09-11 09:09:23.163092 cognd 940085798 R rec 9da9e02f-18e3-49e9-9d39-5da41d8d863c +2024-09-11 09:09:23.234749 2024-09-11 09:09:23.234756 cognd 940049570 R rec abb44c60-27ab-444f-a8af-c114c9fe4013 +2024-09-11 09:09:23.287793 2024-09-11 09:09:23.287798 cognd 940035731 R rec de4a0af9-cec0-4d04-a1d1-3ffc82cbe00f +2024-09-11 09:09:23.340412 2024-09-11 09:09:23.340417 cognd 199279101 R rec 5fa4106a-e8ca-435c-9499-aee3a52d78a7 +2024-09-11 09:09:23.3961 2024-09-11 09:09:23.396105 cognd 199254435 R rec 4c7433cb-811e-4eb2-91d8-30caec1c0275 +2024-09-11 09:09:23.455962 2024-09-11 09:09:23.455968 cognd 199249903 R rec 14804fe2-d234-4871-b629-9f357777bbed +2024-09-11 09:09:23.512531 2024-09-11 09:09:23.512537 cognd 199099952 R rec 5a254eb3-e350-4485-a468-c99c1e42a927 +2024-09-11 09:09:23.568896 2024-09-11 09:09:23.568901 cognd 130755087 R rec a4dc5c6a-cfe3-4fed-96ef-6164b7531da6 +2024-09-11 09:09:23.62141 2024-09-11 09:09:23.621416 cognd 130749478 R rec d12e39bf-dbc3-49d8-8496-50fcc7685985 +2024-09-11 09:09:23.67916 2024-09-11 09:09:23.679165 cognd 130741531 R rec f8055627-8b54-40af-b90c-94bc03daa9a0 +2024-09-11 09:09:23.733709 2024-09-11 09:09:23.733715 cognd 130722529 R rec 39f24cb7-4de4-4c70-8b56-df4e5416af43 +2024-09-11 09:09:23.793761 2024-09-11 09:09:23.793766 cognd 130715107 R rec 3184ec0b-fa29-4bee-b41b-ea209662a515 +2024-09-11 09:09:23.85403 2024-09-11 09:09:23.854036 cognd 130712930 R rec e0113b65-43a5-4117-8cc9-07655118c559 +2024-09-11 09:09:23.906538 2024-09-11 09:09:23.906543 cognd 13071206X R rec 056ae349-a52c-46e6-a30d-682865c1cdaa +2024-09-11 09:09:23.962761 2024-09-11 09:09:23.962767 cognd 130700525 R rec d7fb287d-9fff-416c-9486-243aedbf4a39 +2024-09-11 09:09:24.028041 2024-09-11 09:09:24.028047 cognd 130699152 R rec c28c295e-c6ed-4560-a82d-180f906bfbae +2024-09-11 09:09:24.100862 2024-09-11 09:09:24.100868 cognd 130699101 R rec 78d52cd8-70aa-43a8-ba33-f07f7ea417cd +2024-09-11 09:09:24.151644 2024-09-11 09:09:24.15165 cognd 130698644 R rec bc5e7fc5-1314-406c-9774-e1e71578b09f +2024-09-11 09:09:24.205793 2024-09-11 09:09:24.205798 cognd 043280072 R rec f7dda039-9125-418d-b8ac-077ab92f9b38 +2024-09-11 09:09:24.260439 2024-09-11 09:09:24.260444 cognd 043270972 R rec 9c5e3c86-8d3c-4ca4-b292-db57ce36d6c8 +2024-09-11 09:09:24.320694 2024-09-11 09:09:24.3207 cognd 043270328 R rec b5314878-3d75-4e91-8114-590eadff24fe +2024-09-11 09:09:24.372654 2024-09-11 09:09:24.372659 cognd 043269605 R rec 61600dda-d2e8-4cbe-bdf1-b293f3bff97a +2024-09-11 09:09:24.423968 2024-09-11 09:09:24.423973 cognd 043265006 R rec 43725d80-99a9-4cf8-821c-e0a2e83c3def +2024-09-11 09:09:24.479432 2024-09-11 09:09:24.479437 cognd 043229395 R rec 88b261f8-7179-4870-b3b2-d07502032a41 +2024-09-11 09:09:24.536301 2024-09-11 09:09:24.536306 cognd 043225276 R rec 8aec748a-b3cf-41ba-802c-83791eae8417 +2024-09-11 09:09:24.599954 2024-09-11 09:09:24.599959 cognd 043220797 R rec f66846dc-6363-4a0f-9d94-c4dfcadbc0a4 +2024-09-11 09:09:24.656242 2024-09-11 09:09:24.656247 cognd 043196063 R rec fa13473f-66da-431f-86f9-e69702dfad50 +2024-09-11 09:09:24.712622 2024-09-11 09:09:24.712627 cognd 043172415 R rec 92f4939d-3d55-4910-abca-c814e3b7b4dd +2024-09-11 09:09:24.763813 2024-09-11 09:09:24.763818 cognd 043170854 R rec 4bea93c2-43cc-4435-a843-4ad66a573bdc +2024-09-11 09:09:24.823037 2024-09-11 09:09:24.823042 cognd 043166644 R rec 6a3bf5fc-ef99-40e7-811f-cdda2d385bda +2024-09-11 09:09:24.886966 2024-09-11 09:09:24.886971 cognd 043166202 R rec 9926b21c-5c53-4228-8240-d61b5e21f78d +2024-09-11 09:09:24.938626 2024-09-11 09:09:24.938632 cognd 04316532X R rec 4de42fb8-6cdd-4942-a6de-2d28027f0686 +2024-09-11 09:09:25.000088 2024-09-11 09:09:25.000094 cognd 043153607 R rec 7ba8468d-56b0-4156-9357-9b0d7c4f92ac +2024-09-11 09:09:25.052389 2024-09-11 09:09:25.052395 cognd 043134475 R rec e6547d94-5923-47e2-8199-f03b714101dc +2024-09-11 09:09:25.117901 2024-09-11 09:09:25.117907 cognd 043134106 R rec 857522d5-f014-4286-a59a-93f1fa1cf69f +2024-09-11 09:09:25.173218 2024-09-11 09:09:25.173222 cognd 043133908 R rec 8eb126ed-5aaf-4718-9db4-96bd72df0201 +2024-09-11 09:09:25.226221 2024-09-11 09:09:25.226227 cognd 043133789 R rec 7544f445-c7d5-4ff7-a1b1-8b447a0d4338 +2024-09-11 09:09:25.288655 2024-09-11 09:09:25.28866 cognd 043126944 R rec f8d0b37c-ba3f-4b85-ae1e-2381e26022d1 +2024-09-11 09:09:25.342457 2024-09-11 09:09:25.342462 cognd 043122507 R rec 7edbb75e-d5ff-4495-8790-0ebe0ffa41cc +2024-09-11 09:09:25.396582 2024-09-11 09:09:25.396589 cognd 043119816 R rec 7ff8541c-afb6-4371-8be2-824a04ac606f +2024-09-11 09:09:25.451197 2024-09-11 09:09:25.451203 cognd 04311704X R rec d1618f5d-6376-4217-b802-94a1bbfaed3c +2024-09-11 09:09:25.505584 2024-09-11 09:09:25.50559 cognd 043110290 R rec a385dab1-3b19-455c-ab00-76824b66d127 +2024-09-11 09:09:25.565771 2024-09-11 09:09:25.565776 cognd 043104754 R rec 1661c71d-da4b-454b-9689-dfbe715c02f8 +2024-09-11 09:09:25.618628 2024-09-11 09:09:25.618634 cognd 043092756 R rec 2d1f45f4-d39f-4634-b7c9-60091fc80d91 +2024-09-11 09:09:25.674189 2024-09-11 09:09:25.674195 cognd 043087787 R rec 6e94578b-1b66-44fa-ba3d-14c0403b9e18 +2024-09-11 09:09:25.730702 2024-09-11 09:09:25.730707 cognd 043079458 R rec ac677c89-f020-48f4-87b4-9f46216c20b4 +2024-09-11 09:09:25.792042 2024-09-11 09:09:25.792048 cognd 043078664 R rec c85a87e8-906f-420d-a56a-342e6bf67df5 +2024-09-11 09:09:25.847703 2024-09-11 09:09:25.847708 cognd 043062024 R rec 50383936-64ec-4ad5-9281-0a067013cdee +2024-09-11 09:09:25.903558 2024-09-11 09:09:25.903564 cognd 04304980X R rec cb79b92f-c90e-4615-8c09-60a450154200 +2024-09-11 09:09:25.957529 2024-09-11 09:09:25.957534 cognd 043049354 R rec a034321c-34f0-4477-bef7-c7eda95280cd +2024-09-11 09:09:26.009722 2024-09-11 09:09:26.009728 cognd 043047815 R rec 68e1efa2-045f-4ed6-9a06-c9f5873c152b +2024-09-11 09:09:26.068357 2024-09-11 09:09:26.068362 cognd 043045820 R rec bdec99b1-97d0-4cb6-ad60-3c2615bc3355 +2024-09-11 09:09:26.124112 2024-09-11 09:09:26.124118 cognd 043023932 R rec 905d85ff-896a-4577-b91b-e7e2010c27ff +2024-09-11 09:09:26.188234 2024-09-11 09:09:26.188238 cognd 043007708 R rec a6b56fef-4044-4388-ba0f-891d31267259 +2024-09-11 09:09:26.244176 2024-09-11 09:09:26.244181 cognd 043006248 R rec 90730c54-15bb-4cf8-a2d9-9e2eed938e3a +2024-09-11 09:09:26.296973 2024-09-11 09:09:26.296978 cognd 042975174 R rec bbadfd58-2f4a-4ba8-b801-bef067407d9d +2024-09-11 09:09:26.371285 2024-09-11 09:09:26.371289 cognd 04296962X R rec cece2edb-623d-4e68-908a-7d2489130891 +2024-09-11 09:09:26.430453 2024-09-11 09:09:26.430459 cognd 042936586 R rec 61944d28-5fa3-4a13-a78b-2ed3b2e3619d +2024-09-11 09:09:26.492103 2024-09-11 09:09:26.492109 cognd 042933854 R rec abb85803-8ec5-4526-88c0-3e5c5cdbf17b +2024-09-11 09:09:26.548921 2024-09-11 09:09:26.548926 cognd 042932297 R rec 6da29c05-32dc-459b-af64-04d6263f9b9c +2024-09-11 09:09:26.606028 2024-09-11 09:09:26.606033 cognd 042928664 R rec f5326870-1331-4f5b-b92e-72d16db9e726 +2024-09-11 09:09:26.660352 2024-09-11 09:09:26.660357 cognd 04291373X R rec b556c40f-6511-4538-bd65-c6d7bd51ff42 +2024-09-11 09:09:26.721133 2024-09-11 09:09:26.721139 cognd 042912709 R rec 24e204a3-2df4-4f2b-a9ff-fa69cfd279f1 +2024-09-11 09:09:26.777528 2024-09-11 09:09:26.777534 cognd 042911915 R rec 2c28e72a-522c-49f6-b987-7898b8ac5838 +2024-09-11 09:09:26.837631 2024-09-11 09:09:26.837637 cognd 042909163 R rec a196a891-0538-4fc3-a4ee-fce8a7db250c +2024-09-11 09:09:26.90097 2024-09-11 09:09:26.900976 cognd 042898250 R rec 49ecfc5e-08d0-424d-b07f-01ab2efef5ca +2024-09-11 09:09:26.959437 2024-09-11 09:09:26.959442 cognd 042871255 R rec 05562d2b-4371-46f8-b748-b6951290c3c3 +2024-09-11 09:09:27.023656 2024-09-11 09:09:27.023662 cognd 042871093 R rec 42fd0b59-2f99-44ec-b398-a6b2168374d3 +2024-09-11 09:09:27.078097 2024-09-11 09:09:27.078103 cognd 042868696 R rec 4c9f2dc7-f265-4ace-9b6b-7d5166626835 +2024-09-11 09:09:27.144065 2024-09-11 09:09:27.14407 cognd 042855098 R rec f914920c-d2b8-4941-bc72-228483658af4 +2024-09-11 09:09:27.205058 2024-09-11 09:09:27.205062 cognd 042854083 R rec 8bd415b5-742a-4b7e-94ef-a7ff7a0f2819 +2024-09-11 09:09:27.281644 2024-09-11 09:09:27.28165 cognd 042829763 R rec f897458b-5953-49c4-a8bb-59c1264b0b63 +2024-09-11 09:09:27.377417 2024-09-11 09:09:27.377422 cognd 042829194 R rec a024e9a7-f269-42cf-be8d-3171c0d89a02 +2024-09-11 09:09:27.432541 2024-09-11 09:09:27.432547 cognd 042828465 R rec bf8fdb8b-c4c2-4b8e-89a5-7ab1e2d55176 +2024-09-11 09:09:27.495699 2024-09-11 09:09:27.495704 cognd 042825210 R rec 8bbd0b68-853e-46ea-856e-1d0d27c9dd5e +2024-09-11 09:09:27.548728 2024-09-11 09:09:27.548733 cognd 042819415 R rec 05785c90-fa63-4f8b-bcc5-21807f1d3327 +2024-09-11 09:09:27.601363 2024-09-11 09:09:27.601368 cognd 042817293 R rec f8b40ef6-939f-44a6-a865-0b4cc2b4b9be +2024-09-11 09:09:27.654058 2024-09-11 09:09:27.654063 cognd 042813905 R rec 404c416c-532c-487c-978e-30e104e368dc +2024-09-11 09:09:27.715691 2024-09-11 09:09:27.715697 cognd 042803098 R rec 45c4a1ea-a720-4e54-bef6-4a358aaab361 +2024-09-11 09:09:27.770117 2024-09-11 09:09:27.770123 cognd 042798779 R rec 6b0083b3-b053-44dd-9e9b-3875c3e695eb +2024-09-11 09:09:27.829649 2024-09-11 09:09:27.829655 cognd 042798760 R rec da1a603c-5341-4a6a-83b9-8c7130d0ce2a +2024-09-11 09:09:27.88565 2024-09-11 09:09:27.885656 cognd 042798477 R rec a6272fef-bb86-4fd3-8d5d-cd2a24fc0b62 +2024-09-11 09:09:27.940762 2024-09-11 09:09:27.940767 cognd 042773539 R rec e0394299-d3ca-4242-a265-10a60f8243a8 +2024-09-11 09:09:27.994615 2024-09-11 09:09:27.99462 cognd 042763568 R rec 5b6c70a7-c93b-4aa3-ad3d-ce7bada3d99a +2024-09-11 09:09:28.04774 2024-09-11 09:09:28.047745 cognd 04276243X R rec 00dff2f4-7686-4f79-ad93-1313a37b649b +2024-09-11 09:09:28.104076 2024-09-11 09:09:28.104081 cognd 042755255 R rec 4a1e899b-a2c8-4454-806c-2d70fc2d9f3f +2024-09-11 09:09:28.160805 2024-09-11 09:09:28.16081 cognd 04275206X R rec ac51318c-ac0d-4891-8933-acf1443fb4a1 +2024-09-11 09:09:28.21626 2024-09-11 09:09:28.216265 cognd 042749298 R rec 8196d877-d853-41b0-bc37-bef9ab170946 +2024-09-11 09:09:28.271298 2024-09-11 09:09:28.271303 cognd 042740983 R rec d100df90-41a3-45a4-bf8c-426ef43a9ba8 +2024-09-11 09:09:28.324321 2024-09-11 09:09:28.324326 cognd 042728622 R rec fbf1b34a-fd13-4ad0-accd-fde922980835 +2024-09-11 09:09:28.38318 2024-09-11 09:09:28.383186 cognd 042725739 R rec b8c78775-2ff6-4b57-b287-d733ac039518 +2024-09-11 09:09:28.448556 2024-09-11 09:09:28.448561 cognd 042707870 R rec 11d70eaa-fd31-40a0-8a93-024d9b3044b0 +2024-09-11 09:09:28.511307 2024-09-11 09:09:28.511312 cognd 042667208 R rec 719b3e6c-6482-4558-9536-b815e1acd006 +2024-09-11 09:09:28.569675 2024-09-11 09:09:28.569681 cognd 04264044X R rec 02085880-df75-4f28-acaa-7423e6959334 +2024-09-11 09:09:28.623056 2024-09-11 09:09:28.623062 cognd 042625025 R rec efff1564-ac80-48b0-bb15-d4e1f3878616 +2024-09-11 09:09:28.678037 2024-09-11 09:09:28.678043 cognd 042616727 R rec e1cd8797-0b67-4e3b-8828-91db22774551 +2024-09-11 09:09:28.735914 2024-09-11 09:09:28.73592 cognd 042612292 R rec 326c7e84-97b6-4b58-97b5-11067f07721d +2024-09-11 09:09:28.790518 2024-09-11 09:09:28.790525 cognd 042556740 R rec c2f64ec8-86f9-4ef4-81e3-68ac4a898a5b +2024-09-11 09:09:28.846151 2024-09-11 09:09:28.846156 cognd 042552192 R rec 0d60b623-2689-4209-bfb7-557b9c41838d +2024-09-11 09:09:28.901523 2024-09-11 09:09:28.901529 cognd 04252184X R rec 46058ba3-2bf3-4c6f-ba67-7d4a19d4969c +2024-09-11 09:09:28.9627 2024-09-11 09:09:28.962706 cognd 04251729X R rec c2ed7ff6-ab46-41d2-a1c8-b167c10e21b4 +2024-09-11 09:09:29.025259 2024-09-11 09:09:29.025265 cognd 042496918 R rec 67691bad-80c7-4d63-b57b-bcd08ad69e36 +2024-09-11 09:09:29.080308 2024-09-11 09:09:29.080313 cognd 042496896 R rec ab52a422-53c4-4b35-990e-7cec2023b122 +2024-09-11 09:09:29.138438 2024-09-11 09:09:29.138443 cognd 042491010 R rec 22b1dd65-eab6-4fc4-ace3-ad2ae55a1b24 +2024-09-11 09:09:29.187851 2024-09-11 09:09:29.187857 cognd 042479770 R rec e424c3c5-b629-4771-9db6-adcdd15e32df +2024-09-11 09:09:29.245651 2024-09-11 09:09:29.245657 cognd 042466199 R rec 7db65d6d-7fef-4c3c-be67-76ebd5661edd +2024-09-11 09:09:29.300851 2024-09-11 09:09:29.300857 cognd 04245395X R rec b6d9ac0c-b873-4efe-91d4-46b4e29ce2de +2024-09-11 09:09:29.3592 2024-09-11 09:09:29.359205 cognd 042439086 R rec 49679f6d-2341-4b57-96a9-3320143565e2 +2024-09-11 09:09:29.409748 2024-09-11 09:09:29.409754 cognd 042433517 R rec bf8da753-fe9d-473a-ba18-3f81907d06b3 +2024-09-11 09:09:29.457664 2024-09-11 09:09:29.457669 cognd 042427045 R rec 4073b4ed-97ea-465c-96ae-6daa7eda8c52 +2024-09-11 09:09:29.524736 2024-09-11 09:09:29.524742 cognd 042416795 R rec d7bc317b-2037-4924-a83e-d8f245e2487e +2024-09-11 09:09:29.587694 2024-09-11 09:09:29.587699 cognd 042402883 R rec 49faae35-ed5b-4d3b-9db5-fa8b68483b75 +2024-09-11 09:09:29.644722 2024-09-11 09:09:29.644727 cognd 042402239 R rec deaa4e6b-03c5-4d58-b0e2-45fb2939c99a +2024-09-11 09:09:29.704975 2024-09-11 09:09:29.704979 cognd 042363527 R rec 3cf41755-4ca8-48ad-bda5-458223b7bdc0 +2024-09-11 09:09:29.75955 2024-09-11 09:09:29.759555 cognd 042362466 R rec cefd2606-6a37-44f6-b013-f4110cd7253c +2024-09-11 09:09:29.8135 2024-09-11 09:09:29.813505 cognd 042349885 R rec bbf79d25-a081-4f9c-bd6f-34918cc1c414 +2024-09-11 09:09:29.868893 2024-09-11 09:09:29.868899 cognd 042349877 R rec 57590e42-1c5e-469f-a06e-4c55408e4cd9 +2024-09-11 09:09:29.92771 2024-09-11 09:09:29.927715 cognd 042319986 R rec 63dc5457-fd6c-4d12-9e82-d9739e1c8b0b +2024-09-11 09:09:29.987945 2024-09-11 09:09:29.987951 cognd 04231416X R rec 60a53ac8-6b3c-48aa-8e81-767c3f466502 +2024-09-11 09:09:30.048617 2024-09-11 09:09:30.048622 cognd 042294118 R rec 36b72ff2-a2d0-45e0-b5a2-c4766b3ec116 +2024-09-11 09:09:30.104213 2024-09-11 09:09:30.104219 cognd 042259177 R rec 0ce0e243-c839-4549-8f2d-493b91762c3e +2024-09-11 09:09:30.165999 2024-09-11 09:09:30.166004 cognd 042250234 R rec 6daf4b2a-8f66-4e3a-887b-03b36c0d10f8 +2024-09-11 09:09:30.221601 2024-09-11 09:09:30.221609 cognd 042237688 R rec e0cdc9f4-24dc-4378-bc23-4860aa3351e5 +2024-09-11 09:09:30.281903 2024-09-11 09:09:30.281908 cognd 042221234 R rec a0029651-818e-49f8-9248-0b2ea2dfb470 +2024-09-11 09:09:30.336285 2024-09-11 09:09:30.33629 cognd 042208408 R rec 14f1c4f2-6798-4191-9b4e-4da70904a0a0 +2024-09-11 09:09:30.388394 2024-09-11 09:09:30.388399 cognd 042203856 R rec 50a0f35f-2ee1-4843-8043-214f1200d19d +2024-09-11 09:09:30.44544 2024-09-11 09:09:30.445445 cognd 042203023 R rec 76419700-d122-4b3e-8fdc-986f779abbca +2024-09-11 09:09:30.516007 2024-09-11 09:09:30.516013 cognd 042195810 R rec c184f824-7309-4c2d-bdfd-bc06977a1939 +2024-09-11 09:09:30.580558 2024-09-11 09:09:30.580563 cognd 042193958 R rec d3847a88-3606-43a7-89e0-e2fc295e24c0 +2024-09-11 09:09:30.639248 2024-09-11 09:09:30.639253 cognd 04219007X R rec 54c76eef-a066-4077-80e2-57065902c439 +2024-09-11 09:09:30.693855 2024-09-11 09:09:30.69386 cognd 042189748 R rec e3f5e358-74d6-4e57-959e-d472d660c2c1 +2024-09-11 09:09:30.7512 2024-09-11 09:09:30.751205 cognd 042187494 R rec 8a0e9b34-e19a-4462-aec0-07df56573651 +2024-09-11 09:09:30.805211 2024-09-11 09:09:30.805216 cognd 042180805 R rec 8a9d4853-b282-4341-95c3-3b166eda5e46 +2024-09-11 09:09:30.859426 2024-09-11 09:09:30.859431 cognd 042159458 R rec d4658854-4817-4410-9eb6-b3d6655ff38a +2024-09-11 09:09:30.912826 2024-09-11 09:09:30.912831 cognd 042154316 R rec b6e46656-bd1a-4273-92b0-589fc63e0916 +2024-09-11 09:09:30.973364 2024-09-11 09:09:30.973369 cognd 042152089 R rec 2a4332cd-8f23-4496-9c59-4a509b163fd7 +2024-09-11 09:09:31.031432 2024-09-11 09:09:31.031438 cognd 042150876 R rec 92c57788-fcef-4329-b238-83aecf5038b8 +2024-09-11 09:09:31.08682 2024-09-11 09:09:31.086825 cognd 042140048 R rec 74d966fe-a28c-45e2-95d3-8593ae830bcc +2024-09-11 09:09:31.144996 2024-09-11 09:09:31.145001 cognd 042137268 R rec 7d3a4df7-aba6-41e3-8ede-693b8e2bf531 +2024-09-11 09:09:31.197463 2024-09-11 09:09:31.197469 cognd 042108160 R rec 1cd3bc04-968e-4165-ad28-bf6e09999039 +2024-09-11 09:09:31.253367 2024-09-11 09:09:31.253372 cognd 042108152 R rec 78b1967e-0aec-460a-adfa-4e82dfebdca0 +2024-09-11 09:09:31.311361 2024-09-11 09:09:31.311366 cognd 042104068 R rec dcb2cd82-b22b-4b18-a174-650ddf0029ae +2024-09-11 09:09:31.367681 2024-09-11 09:09:31.367687 cognd 042098386 R rec cc0190d0-2626-4070-bd89-73c80608101a +2024-09-11 09:09:31.421489 2024-09-11 09:09:31.421496 cognd 042092175 R rec 12d8f9af-0ca5-483f-8e5c-2df9762eae2f +2024-09-11 09:09:31.477097 2024-09-11 09:09:31.477103 cognd 042086280 R rec ba812dc8-9b46-4a0d-af30-b0a087cf8986 +2024-09-11 09:09:31.538088 2024-09-11 09:09:31.538094 cognd 04208394X R rec 6f8b72ce-a461-436e-98b5-5984e47bd044 +2024-09-11 09:09:31.622991 2024-09-11 09:09:31.622997 cognd 042066107 R rec b83a0a07-eeab-429c-8cb1-bf005abe0266 +2024-09-11 09:09:31.707523 2024-09-11 09:09:31.707528 cognd 042056349 R rec a00b1e82-b07c-4cbc-8030-0d297ea81111 +2024-09-11 09:09:31.768798 2024-09-11 09:09:31.768804 cognd 042017793 R rec 71319113-4c64-4e23-b767-06e6352a51ef +2024-09-11 09:09:31.821742 2024-09-11 09:09:31.821748 cognd 042017246 R rec 3692f759-9abb-4fb1-8981-36fcc3963a49 +2024-09-11 09:09:31.878171 2024-09-11 09:09:31.878177 cognd 042003458 R rec 19587508-9d8c-4dcf-9d1a-feecf6f347ee +2024-09-11 09:09:31.935874 2024-09-11 09:09:31.93588 cognd 041995724 R rec fe7b5465-fe0f-4dea-b6e9-168e1eb63359 +2024-09-11 09:09:31.989534 2024-09-11 09:09:31.98954 cognd 041992555 R rec 1691545b-3d8a-4177-9e31-6ae433b77608 +2024-09-11 09:09:32.049321 2024-09-11 09:09:32.049325 cognd 041987489 R rec 3b0cd2fe-a525-4678-b8e9-b1f6322a5adb +2024-09-11 09:09:32.102055 2024-09-11 09:09:32.102061 cognd 041981804 R rec 6041e6a5-3a0c-4114-bd5e-a13db1164df9 +2024-09-11 09:09:32.159284 2024-09-11 09:09:32.159291 cognd 041977009 R rec 8a683b7e-586b-41aa-a94e-4b985edf6782 +2024-09-11 09:09:32.223714 2024-09-11 09:09:32.22372 cognd 041975278 R rec c92ad5c9-f8a7-445b-ac44-d5f54121759a +2024-09-11 09:09:32.290016 2024-09-11 09:09:32.290022 cognd 041954378 R rec 33bfb109-a127-463c-91bd-d369be347f96 +2024-09-11 09:09:32.357148 2024-09-11 09:09:32.357154 cognd 041954327 R rec 47d108d8-c70d-4dfb-9252-7b40bd2eb9ac +2024-09-11 09:09:32.417542 2024-09-11 09:09:32.417547 cognd 041943236 R rec 2e741b5a-9acb-4f5b-8e5d-bfd7280eb2be +2024-09-11 09:09:32.46825 2024-09-11 09:09:32.468255 cognd 041928547 R rec 7450ff5e-2139-4393-8acd-79326a3f7240 +2024-09-11 09:09:32.52545 2024-09-11 09:09:32.525454 cognd 041928326 R rec c664b54f-a2b8-4548-9e59-7899d2d82016 +2024-09-11 09:09:32.59074 2024-09-11 09:09:32.590745 cognd 041924878 R rec a8c41e6a-a873-4865-9910-b47629f9eef3 +2024-09-11 09:09:32.654942 2024-09-11 09:09:32.654947 cognd 041918754 R rec bc988581-013b-4eba-bbd3-2dc008c7feff +2024-09-11 09:09:32.711309 2024-09-11 09:09:32.711315 cognd 041913272 R rec 2b180ff2-97c2-435a-8238-ba1f1d78f078 +2024-09-11 09:09:32.766988 2024-09-11 09:09:32.766994 cognd 041911849 R rec 2aa69925-5946-4bf0-b486-6685e957c9d3 +2024-09-11 09:09:32.822083 2024-09-11 09:09:32.822089 cognd 041911598 R rec 151e08b2-1055-43b9-9380-2e9e97391fd1 +2024-09-11 09:09:32.879913 2024-09-11 09:09:32.879918 cognd 041911199 R rec d2136bfb-a287-4222-900a-e4c0d75e519c +2024-09-11 09:09:32.938463 2024-09-11 09:09:32.938468 cognd 041910842 R rec 454420f9-4c20-49b0-9833-e57f2da3ccb3 +2024-09-11 09:09:32.998929 2024-09-11 09:09:32.998935 cognd 041907078 R rec 57dd2d58-838f-4e6a-9aac-b77865e52587 +2024-09-11 09:09:33.058312 2024-09-11 09:09:33.058317 cognd 041902955 R rec 6c0c76f7-401c-48fa-91e0-b7f4c36a0e97 +2024-09-11 09:09:33.111665 2024-09-11 09:09:33.11167 cognd 04190186X R rec 214b6a13-0e36-4757-8fd7-e46feb5e6b19 +2024-09-11 09:09:33.168604 2024-09-11 09:09:33.168608 cognd 041900804 R rec 207e3cb9-0a9a-4997-8124-9b942ef4cf23 +2024-09-11 09:09:33.220738 2024-09-11 09:09:33.220743 cognd 041899849 R rec 4f06e977-0806-4350-9d3a-13a8a4cd56af +2024-09-11 09:09:33.276495 2024-09-11 09:09:33.276501 cognd 041898273 R rec 24bd4c7a-fa5f-4421-888f-379f41c3bff9 +2024-09-11 09:09:33.337213 2024-09-11 09:09:33.337218 cognd 041896807 R rec a251cc86-b507-48a5-81d8-edff99a15595 +2024-09-11 09:09:33.387706 2024-09-11 09:09:33.38771 cognd 041891775 R rec 83185fea-2bf1-4fc9-9a19-4270ce41150d +2024-09-11 09:09:33.443545 2024-09-11 09:09:33.443551 cognd 041890787 R rec 9952cd9a-cd40-46a7-88b0-9b795c6a494e +2024-09-11 09:09:33.497621 2024-09-11 09:09:33.497626 cognd 041889959 R rec 44764e04-2a3d-4d11-9cda-f6209217004d +2024-09-11 09:09:33.557526 2024-09-11 09:09:33.557532 cognd 041887913 R rec 4f33fe29-4e9b-4520-9a42-67599eff554e +2024-09-11 09:09:33.61639 2024-09-11 09:09:33.616394 cognd 041887786 R rec 93845cb3-35f4-4301-ba04-4c771a9fbb90 +2024-09-11 09:09:33.674494 2024-09-11 09:09:33.674499 cognd 041884612 R rec 2bdc937b-f1b1-4940-9b4d-a7fee82292f4 +2024-09-11 09:09:33.74061 2024-09-11 09:09:33.740616 cognd 041882229 R rec c73c37ec-08dd-45f3-80e4-072eac87511d +2024-09-11 09:09:33.802362 2024-09-11 09:09:33.802368 cognd 041881745 R rec 3c9abd6d-99c9-4c90-8c14-9936560a9650 +2024-09-11 09:09:33.855809 2024-09-11 09:09:33.855814 cognd 041878515 R rec d973ee05-2b81-4fab-94af-dea0858aec05 +2024-09-11 09:09:33.926191 2024-09-11 09:09:33.926197 cognd 041876938 R rec 11e9c2c5-10a9-49d2-8a9a-8d855a262af4 +2024-09-11 09:09:33.979752 2024-09-11 09:09:33.979757 cognd 041874919 R rec fa1c225e-0eb9-44bb-9524-0c64319e8051 +2024-09-11 09:09:34.036346 2024-09-11 09:09:34.036352 cognd 041873270 R rec 834da4d6-c9ad-408f-a778-abc7cd144356 +2024-09-11 09:09:34.09473 2024-09-11 09:09:34.094735 cognd 041871286 R rec e8a4f1a8-594a-4fa6-809d-a2fcdd2f58ce +2024-09-11 09:09:34.148834 2024-09-11 09:09:34.148839 cognd 041871189 R rec 4750f8eb-ee42-406b-8f1c-0e9b3787f399 +2024-09-11 09:09:34.212797 2024-09-11 09:09:34.212802 cognd 041867785 R rec eda24e90-d77c-4cfa-a7ed-63271dc1f708 +2024-09-11 09:09:34.267126 2024-09-11 09:09:34.267132 cognd 041863488 R rec edadfeaa-b674-457a-b63b-d5537d0322df +2024-09-11 09:09:34.323264 2024-09-11 09:09:34.32327 cognd 04186347X R rec 5c9d6688-bc5a-4f52-a662-5883fff93721 +2024-09-11 09:09:34.382716 2024-09-11 09:09:34.382721 cognd 041862473 R rec 0394562e-e983-4c47-b9cf-b882dd891b78 +2024-09-11 09:09:34.440813 2024-09-11 09:09:34.440819 cognd 041862465 R rec 9651b1a9-2d22-4d54-8dc3-7a12dd13a0f8 +2024-09-11 09:09:34.500837 2024-09-11 09:09:34.500843 cognd 041841387 R rec 275c8507-c9e3-4a8c-9d59-98ba72e3bfbe +2024-09-11 09:09:34.558313 2024-09-11 09:09:34.558318 cognd 041835662 R rec 2a3a0754-e0a5-4346-84b2-2d40db352863 +2024-09-11 09:09:34.618858 2024-09-11 09:09:34.618864 cognd 041833333 R rec a95eb3d1-9a6f-447b-a5d1-167bc2059c70 +2024-09-11 09:09:34.695144 2024-09-11 09:09:34.69515 cognd 041830989 R rec bc958794-b22d-457e-934f-39984347ac39 +2024-09-11 09:09:34.753949 2024-09-11 09:09:34.753954 cognd 041823788 R rec 19384e32-7514-48bf-abe3-4370f1f6d6c7 +2024-09-11 09:09:34.811451 2024-09-11 09:09:34.811457 cognd 04182265X R rec 0808cb4c-4233-4034-8a26-d1bfdd3559f4 +2024-09-11 09:09:34.873428 2024-09-11 09:09:34.873437 cognd 041809858 R rec b0218733-eafc-451a-bcf3-66024cd88957 +2024-09-11 09:09:34.925025 2024-09-11 09:09:34.925031 cognd 041809165 R rec dddd929f-2c76-410e-853c-2ab6b310adfa +2024-09-11 09:09:34.981197 2024-09-11 09:09:34.981203 cognd 041808525 R rec c05a2e6b-4abf-4969-b84d-48f2888d9919 +2024-09-11 09:09:35.065279 2024-09-11 09:09:35.065284 cognd 041807677 R rec edcb8556-3e18-404d-a4f6-e7c9244ae9ad +2024-09-11 09:09:35.132964 2024-09-11 09:09:35.13297 cognd 041805348 R rec 70070cf9-d6ad-42cc-98bc-5d55e38466f5 +2024-09-11 09:09:35.187297 2024-09-11 09:09:35.187302 cognd 04180466X R rec 2cc6075d-6913-443d-bfa1-2d3e8dbd216e +2024-09-11 09:09:35.248453 2024-09-11 09:09:35.248459 cognd 041802659 R rec 5d70fa26-d4e3-477a-ba6a-eed3a9688326 +2024-09-11 09:09:35.303681 2024-09-11 09:09:35.303686 cognd 041798813 R rec db742b09-f9fe-402e-b4a9-b401a86e0a81 +2024-09-11 09:09:35.364454 2024-09-11 09:09:35.364459 cognd 041794524 R rec 9ff7efad-b8fb-46fa-9bb7-85928624f38d +2024-09-11 09:09:35.420171 2024-09-11 09:09:35.42018 cognd 041792432 R rec 3cf4288e-18c4-4256-b457-f1ebaa9777b3 +2024-09-11 09:09:35.480579 2024-09-11 09:09:35.480584 cognd 041785215 R rec 35fb08b7-6247-45fc-b14c-531e2efd09bc +2024-09-11 09:09:35.53717 2024-09-11 09:09:35.537175 cognd 041784839 R rec 27faa1a5-72a6-45ac-b454-695dce9c5f92 +2024-09-11 09:09:35.595177 2024-09-11 09:09:35.595183 cognd 041781635 R rec 32adfdc3-5e10-4ccb-8b37-36090600b726 +2024-09-11 09:09:35.655193 2024-09-11 09:09:35.655198 cognd 041779452 R rec a8b9743e-a66d-4320-9ebb-6a0eaf112a0d +2024-09-11 09:09:35.718776 2024-09-11 09:09:35.718781 cognd 041774434 R rec 3f098271-16ce-4cd2-bb0b-02731943af8c +2024-09-11 09:09:35.783775 2024-09-11 09:09:35.78378 cognd 041772822 R rec 18526907-d313-4597-9e6b-d47ede80624e +2024-09-11 09:09:35.848312 2024-09-11 09:09:35.848317 cognd 041772768 R rec bde35115-fa60-4c01-914f-fa6cbedd05f9 +2024-09-11 09:09:35.902204 2024-09-11 09:09:35.902209 cognd 041767934 R rec 5b10aabd-0987-480c-a4e3-f8eef97d66f7 +2024-09-11 09:09:35.956095 2024-09-11 09:09:35.956099 cognd 041766717 R rec 675af584-6007-4c2b-9f2a-14178985f10c +2024-09-11 09:09:36.013452 2024-09-11 09:09:36.013457 cognd 04176420X R rec e12d525f-00a8-48af-a5b0-a0588845bcbb +2024-09-11 09:09:36.070437 2024-09-11 09:09:36.070442 cognd 041763165 R rec 42f6f0ed-ab22-42f6-8a15-a3b514d48667 +2024-09-11 09:09:36.125458 2024-09-11 09:09:36.125463 cognd 041759834 R rec dbae0436-4a49-4d52-90fb-3768913054d8 +2024-09-11 09:09:36.180774 2024-09-11 09:09:36.180779 cognd 041755014 R rec f1ff1303-9859-4f2b-8c63-2ebb2d993b75 +2024-09-11 09:09:36.234213 2024-09-11 09:09:36.234217 cognd 041754557 R rec a86a0a1c-8b0c-47fe-ab2c-1099903c0e0e +2024-09-11 09:09:36.292711 2024-09-11 09:09:36.292717 cognd 04175431X R rec 604e22f3-7d5f-497d-9250-36f57d63b7f6 +2024-09-11 09:09:36.351756 2024-09-11 09:09:36.351762 cognd 04174926X R rec 4de934ed-9897-4a3a-a87d-edd3fcb6893a +2024-09-11 09:09:36.414143 2024-09-11 09:09:36.414149 cognd 041748964 R rec e9b568c0-c3ea-4122-b233-05c701feb87c +2024-09-11 09:09:36.467497 2024-09-11 09:09:36.467502 cognd 04174604X R rec c0059f90-17ac-4c4d-b15a-d7ff8328b7ea +2024-09-11 09:09:36.523786 2024-09-11 09:09:36.523791 cognd 041742648 R rec 8265b756-1325-4a7e-9705-7544e07ebb77 +2024-09-11 09:09:36.589388 2024-09-11 09:09:36.589393 cognd 04174084X R rec 4dc56804-63cc-49de-a502-2c2a9107ba70 +2024-09-11 09:09:36.647227 2024-09-11 09:09:36.647232 cognd 041738063 R rec a9ba18bf-6675-4ff5-817d-9fb3139db365 +2024-09-11 09:09:36.704926 2024-09-11 09:09:36.704932 cognd 041737539 R rec 0dd58270-1cf1-43ec-bea1-86add70d7487 +2024-09-11 09:09:36.76801 2024-09-11 09:09:36.768016 cognd 041736346 R rec e92c98da-3839-47e3-a76f-5a9f3ba02bbc +2024-09-11 09:09:36.833892 2024-09-11 09:09:36.833897 cognd 041735390 R rec 9b908e60-8fe5-4bf7-94e5-ce4b5e90cda3 +2024-09-11 09:09:36.899353 2024-09-11 09:09:36.899359 cognd 041734688 R rec 990963f5-10b5-4f3e-9c73-1db61a4effa0 +2024-09-11 09:09:36.956135 2024-09-11 09:09:36.95614 cognd 041733819 R rec de103f8d-fbfd-4b03-ba96-3f31f1b69821 +2024-09-11 09:09:37.006344 2024-09-11 09:09:37.006349 cognd 041725522 R rec 90b93cb0-924f-4c1c-a45b-7680ea152d6b +2024-09-11 09:09:37.063152 2024-09-11 09:09:37.063158 cognd 041722027 R rec 9846d7bc-e976-485b-84ac-57147ba2f749 +2024-09-11 09:09:37.124028 2024-09-11 09:09:37.124034 cognd 041720040 R rec 7f6449af-35e3-4b51-9003-3418954e1fc8 +2024-09-11 09:09:37.180981 2024-09-11 09:09:37.180986 cognd 041718429 R rec 403a0119-43f2-4edf-ab5b-11e265e81491 +2024-09-11 09:09:37.244388 2024-09-11 09:09:37.244393 cognd 041716159 R rec 946c85dc-7eb0-4f56-a218-8b5624c7ec09 +2024-09-11 09:09:37.298702 2024-09-11 09:09:37.298708 cognd 041714059 R rec d6aeaddb-2314-42ec-8c93-4240f14e73c0 +2024-09-11 09:09:37.361115 2024-09-11 09:09:37.36112 cognd 041712188 R rec a88f0164-1321-4ef0-9b38-8d76bc01f79e +2024-09-11 09:09:37.42183 2024-09-11 09:09:37.421836 cognd 04171069X R rec 940fac53-bcdf-4a11-9ce6-0b4c7bddc0c2 +2024-09-11 09:09:37.477637 2024-09-11 09:09:37.477642 cognd 04171007X R rec 9dd89a1c-e67a-4f32-8870-a7b8a6c11139 +2024-09-11 09:09:37.544684 2024-09-11 09:09:37.544689 cognd 041707109 R rec 56ea52c6-72ac-4cfd-a3e1-cc7947b8c282 +2024-09-11 09:09:37.605155 2024-09-11 09:09:37.60516 cognd 04170441X R rec 3a21e3d5-fe15-4b20-8976-ede6d0ea283d +2024-09-11 09:09:37.668096 2024-09-11 09:09:37.668101 cognd 041700465 R rec 5a2f063f-e0f2-4469-a5a7-80c6531a3357 +2024-09-11 09:09:37.72509 2024-09-11 09:09:37.725096 cognd 041693442 R rec 627d394d-06da-46fa-82b1-3b38531dcb1d +2024-09-11 09:09:37.783174 2024-09-11 09:09:37.783181 cognd 041692403 R rec d5506729-b7a0-45dc-af05-71c38bd0b1c6 +2024-09-11 09:09:37.857825 2024-09-11 09:09:37.857832 cognd 041691989 R rec aa1e272b-5539-4427-9115-1bab6fbdb85e +2024-09-11 09:09:37.918044 2024-09-11 09:09:37.918054 cognd 041691504 R rec 40645a27-42b5-424a-8d15-7c774372c826 +2024-09-11 09:09:37.976237 2024-09-11 09:09:37.976242 cognd 041689976 R rec 481dba8d-6ff1-4325-a1be-acc7789a24c7 +2024-09-11 09:09:38.030613 2024-09-11 09:09:38.030618 cognd 041688473 R rec 680ce689-a4e8-4809-a4e8-49c6765fc00b +2024-09-11 09:09:38.088381 2024-09-11 09:09:38.088386 cognd 041682106 R rec c2a01a58-bcfd-4618-8910-0cb8f662321c +2024-09-11 09:09:38.144051 2024-09-11 09:09:38.144057 cognd 041679792 R rec b6f317ea-6515-4298-baaf-ea1bfadbabf9 +2024-09-11 09:09:38.197258 2024-09-11 09:09:38.197263 cognd 041678532 R rec 9ebca7f6-7128-4196-b859-bb73369f5fd6 +2024-09-11 09:09:38.253048 2024-09-11 09:09:38.253053 cognd 041667093 R rec cec19104-4df4-44ab-9f1f-21d38500f54f +2024-09-11 09:09:38.307486 2024-09-11 09:09:38.307492 cognd 041664795 R rec 6db79fb6-c5b8-4be2-ae93-e3a172870679 +2024-09-11 09:09:38.374024 2024-09-11 09:09:38.37403 cognd 041653025 R rec a98ee64d-9fb0-4fd5-8233-6c92731e5dc3 +2024-09-11 09:09:38.42818 2024-09-11 09:09:38.428185 cognd 041650018 R rec 7941b1bb-90ea-4f94-a7af-46c8c609eab3 +2024-09-11 09:09:38.483199 2024-09-11 09:09:38.483205 cognd 041640047 R rec ddbf61ee-4afc-4da5-a559-f459e28cbf53 +2024-09-11 09:09:38.537996 2024-09-11 09:09:38.538002 cognd 041639383 R rec 2e2c1757-2821-43d8-b8c7-35921a104781 +2024-09-11 09:09:38.596235 2024-09-11 09:09:38.59624 cognd 041634179 R rec dc7437da-9d0d-438e-871c-25f7a4503fe0 +2024-09-11 09:09:38.654924 2024-09-11 09:09:38.654929 cognd 041631692 R rec 9277357b-4918-4dbb-808a-8e94a1206bfb +2024-09-11 09:09:38.711138 2024-09-11 09:09:38.711144 cognd 041631676 R rec 3189bf0a-84e6-478c-a4d4-4651d430b245 +2024-09-11 09:09:38.765528 2024-09-11 09:09:38.765535 cognd 04163120X R rec cfb9dcdc-0ffd-4bd7-86b2-e7374fb673e5 +2024-09-11 09:09:38.819143 2024-09-11 09:09:38.819148 cognd 041627458 R rec 2351e9cc-5322-454b-8010-a3ec12b0e98f +2024-09-11 09:09:38.872837 2024-09-11 09:09:38.872842 cognd 041623010 R rec e63ce854-ce8f-41fa-9216-9445405926c9 +2024-09-11 09:09:38.930038 2024-09-11 09:09:38.930043 cognd 041621662 R rec 5d1d1037-a9c5-4814-86db-a9b0c05959a4 +2024-09-11 09:09:38.992009 2024-09-11 09:09:38.992039 cognd 041619633 R rec 18577551-6e52-4690-b00e-ec6b21aa8a8c +2024-09-11 09:09:39.063788 2024-09-11 09:09:39.063794 cognd 041619366 R rec 41af4203-c449-4239-8c92-447507bf9459 +2024-09-11 09:09:39.117854 2024-09-11 09:09:39.117859 cognd 041617266 R rec 89dca221-2d59-45d1-85fa-4f5ec84f32c8 +2024-09-11 09:09:39.17292 2024-09-11 09:09:39.172926 cognd 041616375 R rec 96fe9374-e81d-4385-a1f7-c4006d65c2a2 +2024-09-11 09:09:39.227136 2024-09-11 09:09:39.227142 cognd 041612469 R rec dcf297d1-ea95-481a-92ef-0b67d8419ba7 +2024-09-11 09:09:39.282232 2024-09-11 09:09:39.282237 cognd 041607988 R rec 5119677e-d32c-409c-860e-a5644e91085d +2024-09-11 09:09:39.336122 2024-09-11 09:09:39.336127 cognd 041605799 R rec 6ae2d20d-2ef1-4198-add1-e293293ac228 +2024-09-11 09:09:39.397524 2024-09-11 09:09:39.397529 cognd 041603176 R rec 976bf541-2283-4465-9074-ae663587d907 +2024-09-11 09:09:39.450294 2024-09-11 09:09:39.4503 cognd 041601475 R rec 64b6928c-27ef-493e-b51b-d4a9862782f2 +2024-09-11 09:09:39.501951 2024-09-11 09:09:39.501956 cognd 041600622 R rec 8386a720-dada-4081-abfe-4d95ed61223a +2024-09-11 09:09:39.552956 2024-09-11 09:09:39.552961 cognd 041600010 R rec 804dc48a-e62c-4a28-8858-680f3037aadd +2024-09-11 09:09:39.611203 2024-09-11 09:09:39.611208 cognd 041596277 R rec 2ee69fd3-970e-44ee-b448-db8accb7c570 +2024-09-11 09:09:39.667032 2024-09-11 09:09:39.667038 cognd 041595505 R rec 40ca1de4-66e4-4174-8b3e-9fdf99966bb1 +2024-09-11 09:09:39.727411 2024-09-11 09:09:39.727417 cognd 041582969 R rec 47f9e58b-c825-486e-a8f6-d64f2a2314a2 +2024-09-11 09:09:39.788997 2024-09-11 09:09:39.789002 cognd 041582675 R rec 9e92c72d-9065-4247-b14f-23ae044c1dd5 +2024-09-11 09:09:39.848529 2024-09-11 09:09:39.848534 cognd 041582500 R rec 408ee1a4-1a02-4c0f-9077-106ef0783945 +2024-09-11 09:09:39.907271 2024-09-11 09:09:39.907276 cognd 041580176 R rec ef0f248d-465c-46f4-8d3a-7d2042701874 +2024-09-11 09:09:39.960718 2024-09-11 09:09:39.960724 cognd 041579550 R rec 85ca01d0-1463-49c1-b399-1b290c453904 +2024-09-11 09:09:40.022364 2024-09-11 09:09:40.02237 cognd 041577760 R rec 44ccc143-69cc-4fb0-b905-36c77b4e17ba +2024-09-11 09:09:40.088322 2024-09-11 09:09:40.088327 cognd 041573579 R rec 031add7b-e6fb-497c-9cfe-13f2b9e0d65a +2024-09-11 09:09:40.150203 2024-09-11 09:09:40.150208 cognd 041570316 R rec 34ca4a44-7c17-4704-89fd-046f047de20b +2024-09-11 09:09:40.206408 2024-09-11 09:09:40.206414 cognd 041570154 R rec c2d03907-cc40-431f-8b17-19baaae20c48 +2024-09-11 09:09:40.262893 2024-09-11 09:09:40.262899 cognd 041565762 R rec 687f5ca2-7a75-4c2e-9b23-f5dc50a56613 +2024-09-11 09:09:40.333767 2024-09-11 09:09:40.333773 cognd 041563409 R rec ef83c797-5cbf-4137-acca-7041ca5fe4ec +2024-09-11 09:09:40.391166 2024-09-11 09:09:40.391172 cognd 04155812X R rec dcd8fa80-abe0-4cb2-8f6e-e5117dfb7f9d +2024-09-11 09:09:40.445703 2024-09-11 09:09:40.445708 cognd 041558103 R rec 86625c3c-a503-404f-86f2-24f83f375722 +2024-09-11 09:09:40.499125 2024-09-11 09:09:40.49913 cognd 041556984 R rec d1ecb9fd-0efd-474e-a413-0dce8a94f43b +2024-09-11 09:09:40.558712 2024-09-11 09:09:40.558718 cognd 041555252 R rec fa0d2904-94a2-46b7-923c-a26fbb73b4a7 +2024-09-11 09:09:40.625424 2024-09-11 09:09:40.625429 cognd 041552725 R rec 93bd6e3a-f1a0-4486-8671-9a22c1e6fba9 +2024-09-11 09:09:40.683219 2024-09-11 09:09:40.683224 cognd 041552334 R rec ca6646e8-36e1-47f4-9733-c82b37b3baa1 +2024-09-11 09:09:40.737579 2024-09-11 09:09:40.737585 cognd 041549457 R rec ca882dac-b874-4156-861f-18c63aef103b +2024-09-11 09:09:40.791767 2024-09-11 09:09:40.791773 cognd 041543688 R rec 0e8c3067-6ba4-4b93-8450-fa0dea5d2f2d +2024-09-11 09:09:40.846126 2024-09-11 09:09:40.846131 cognd 041540654 R rec a02cb485-692a-4517-8c71-4484ba2fbbb8 +2024-09-11 09:09:40.903424 2024-09-11 09:09:40.90343 cognd 041540387 R rec 3497d019-663a-4525-9aea-51d7fcd6c5da +2024-09-11 09:09:40.956771 2024-09-11 09:09:40.956776 cognd 041539346 R rec 1a020b94-fecf-4bf8-b67f-8e74f67c3cf2 +2024-09-11 09:09:41.012481 2024-09-11 09:09:41.012487 cognd 041537882 R rec 68bad41a-ab36-4110-8fa3-a21de43940de +2024-09-11 09:09:41.073519 2024-09-11 09:09:41.073524 cognd 04152862X R rec 79aadd3e-41ec-46b2-989a-69b9a86324f3 +2024-09-11 09:09:41.135715 2024-09-11 09:09:41.135721 cognd 041528565 R rec b44fb0e7-b216-4168-b8f7-d24c504d6891 +2024-09-11 09:09:41.205002 2024-09-11 09:09:41.205007 cognd 041527186 R rec 0712b51c-734c-4fae-a39e-b5a7959e25d5 +2024-09-11 09:09:41.263259 2024-09-11 09:09:41.263265 cognd 041527062 R rec d33c01ad-7ed9-46c2-b2e0-143b6f6761c9 +2024-09-11 09:09:41.323145 2024-09-11 09:09:41.323149 cognd 041521927 R rec 79c40b2f-da0a-498b-9350-7895d976a8af +2024-09-11 09:09:41.380981 2024-09-11 09:09:41.380986 cognd 041511794 R rec 5c37d098-3917-4de7-84c8-b33b7d0db5f8 +2024-09-11 09:09:41.436318 2024-09-11 09:09:41.436324 cognd 041511360 R rec ac6b6faa-bfa0-4cb9-b513-223c724cd490 +2024-09-11 09:09:41.492014 2024-09-11 09:09:41.492019 cognd 041507983 R rec f0b1e702-ff43-4140-bfe4-3d747a2ba530 +2024-09-11 09:09:41.545694 2024-09-11 09:09:41.545699 cognd 041506588 R rec de45de19-1bfb-496c-a8ed-80985444161d +2024-09-11 09:09:41.602998 2024-09-11 09:09:41.603003 cognd 041505190 R rec 452c2e7f-1a7b-4001-a6e2-dc3772235406 +2024-09-11 09:09:41.658979 2024-09-11 09:09:41.658985 cognd 041504925 R rec fad3f9c8-1faf-46fc-8d0d-0710bb6123ef +2024-09-11 09:09:41.723725 2024-09-11 09:09:41.72373 cognd 041501950 R rec c15dbbb3-7419-4531-85bd-e618d40337c8 +2024-09-11 09:09:41.790235 2024-09-11 09:09:41.79024 cognd 041501608 R rec fe39025b-f84e-45b8-8f1d-898ee4957ed7 +2024-09-11 09:09:41.842744 2024-09-11 09:09:41.84275 cognd 041497848 R rec 6d3e4ac2-91e4-434d-a9c8-22e04e3f96ec +2024-09-11 09:09:41.898985 2024-09-11 09:09:41.898991 cognd 041497112 R rec fde675a2-e94f-4c8d-af1b-ed5ac22f42c6 +2024-09-11 09:09:41.96013 2024-09-11 09:09:41.960135 cognd 041490673 R rec 8b157198-42c7-4e9b-bf03-6d4b648f6560 +2024-09-11 09:09:42.019566 2024-09-11 09:09:42.019572 cognd 041489837 R rec b1929d6b-522d-4285-864c-8772634b624c +2024-09-11 09:09:42.078721 2024-09-11 09:09:42.078727 cognd 041483626 R rec cfdfcd64-2c55-4285-a416-bd60ec0929b8 +2024-09-11 09:09:42.140909 2024-09-11 09:09:42.140916 cognd 041479017 R rec 6f627db8-66ea-4603-9c42-090209227447 +2024-09-11 09:09:42.20989 2024-09-11 09:09:42.209896 cognd 041467760 R rec f11e7e66-137f-4ac3-bf40-c784d59ab0d7 +2024-09-11 09:09:42.268098 2024-09-11 09:09:42.268104 cognd 04146351X R rec bd08905b-c34f-43d2-b8f8-cd1fda5b56ed +2024-09-11 09:09:42.326381 2024-09-11 09:09:42.326386 cognd 041463250 R rec 1c6050a8-b0af-4533-8e73-e1b22c532ea5 +2024-09-11 09:09:42.378517 2024-09-11 09:09:42.378523 cognd 041462467 R rec ca4178f7-d19e-4a87-8833-10fce0f73568 +2024-09-11 09:09:42.4352 2024-09-11 09:09:42.435205 cognd 041456629 R rec 76318d8b-6b77-4f5d-aa53-3f8ff46a64c1 +2024-09-11 09:09:42.491238 2024-09-11 09:09:42.491242 cognd 041455908 R rec b592739d-e6f7-42a1-ba7a-9c43526c4a27 +2024-09-11 09:09:42.549738 2024-09-11 09:09:42.549743 cognd 04145412X R rec bb34fa13-d83a-42d1-9c41-67b93bd30000 +2024-09-11 09:09:42.60802 2024-09-11 09:09:42.608025 cognd 041451732 R rec 13613cfc-bfd9-4550-a3de-57a6e5a95e6e +2024-09-11 09:09:42.660016 2024-09-11 09:09:42.660022 cognd 041449347 R rec 25efad65-4f7e-4c16-b9c1-42769bfedcef +2024-09-11 09:09:42.725247 2024-09-11 09:09:42.725253 cognd 041448723 R rec b87601a5-79ef-404c-9f33-78428cd5972e +2024-09-11 09:09:42.783445 2024-09-11 09:09:42.783452 cognd 041445120 R rec 195ba7cb-3cd9-4496-b6c8-46c05cf1c0a9 +2024-09-11 09:09:42.84814 2024-09-11 09:09:42.848145 cognd 041445082 R rec a82f65d0-7b61-4513-947e-f7ba3a5fe4c7 +2024-09-11 09:09:42.906903 2024-09-11 09:09:42.906909 cognd 041444817 R rec 6e0176a2-200f-414a-b2a7-2fc84f2a4a9f +2024-09-11 09:09:42.970264 2024-09-11 09:09:42.97027 cognd 041444809 R rec 9efa114b-d2e0-42f0-b2c3-b754fcaa57dd +2024-09-11 09:09:43.025659 2024-09-11 09:09:43.025665 cognd 041444108 R rec 62693f2f-b4f7-4421-8d31-8a5fcd88e30f +2024-09-11 09:09:43.083879 2024-09-11 09:09:43.083885 cognd 04144115X R rec 9256b09d-2a65-4010-9158-d10a1772df54 +2024-09-11 09:09:43.155583 2024-09-11 09:09:43.155588 cognd 041440706 R rec d4723562-9e26-4478-9d21-7ec24216c0c0 +2024-09-11 09:09:43.22128 2024-09-11 09:09:43.221285 cognd 041439686 R rec e3c6afc7-4dc1-4792-b440-b55c80b4553e +2024-09-11 09:09:43.274263 2024-09-11 09:09:43.274268 cognd 041436512 R rec 787d3748-8cfb-4846-9634-85810d2d1dd8 +2024-09-11 09:09:43.333555 2024-09-11 09:09:43.333561 cognd 041434722 R rec 6dc0ca85-2925-4247-a3ae-4da6433b601f +2024-09-11 09:09:43.386773 2024-09-11 09:09:43.38678 cognd 041427548 R rec 69bbc9e4-184f-400d-970c-37423b116a9e +2024-09-11 09:09:43.441927 2024-09-11 09:09:43.441932 cognd 041424654 R rec 9eb02764-fb34-459c-b0f3-66be44625889 +2024-09-11 09:09:43.497026 2024-09-11 09:09:43.497031 cognd 041419464 R rec d7b76d7b-2d7e-4121-9983-a8c6bf13ce3c +2024-09-11 09:09:43.548527 2024-09-11 09:09:43.548532 cognd 041413334 R rec 528c0783-5ae6-42d4-be1a-64270e48fdbf +2024-09-11 09:09:43.604709 2024-09-11 09:09:43.604715 cognd 041413083 R rec 1e6882a9-967b-4f34-9699-410f34a679b4 +2024-09-11 09:09:43.653033 2024-09-11 09:09:43.653039 cognd 041410513 R rec e2a117f7-2b40-4704-b427-4496b31d16d3 +2024-09-11 09:09:43.706349 2024-09-11 09:09:43.706354 cognd 041406605 R rec c3f83c99-3851-444d-ae31-9ccfb1c84eb7 +2024-09-11 09:09:43.75893 2024-09-11 09:09:43.758935 cognd 041403886 R rec fe3d0534-0bb1-4c6c-a3af-320b7ca3eea2 +2024-09-11 09:09:43.814072 2024-09-11 09:09:43.814077 cognd 041403657 R rec 63f08dce-fbad-4f4f-8f72-baf10ef6e344 +2024-09-11 09:09:43.87445 2024-09-11 09:09:43.874456 cognd 041401522 R rec a2ac68cd-89b1-40cd-902d-286afdc1be32 +2024-09-11 09:09:43.931096 2024-09-11 09:09:43.931102 cognd 041400909 R rec b7aa25a8-9f38-4515-8020-f6482dc77096 +2024-09-11 09:09:43.991605 2024-09-11 09:09:43.991611 cognd 041398424 R rec 5be8a571-8b24-4b81-8e6a-6185d672f88d +2024-09-11 09:09:44.048192 2024-09-11 09:09:44.048197 cognd 041397932 R rec d99659d2-f4f7-49b9-9e57-e56e07913b07 +2024-09-11 09:09:44.105485 2024-09-11 09:09:44.10549 cognd 041397150 R rec b5b06142-7e36-4e23-b241-b3339b4ebc78 +2024-09-11 09:09:44.157273 2024-09-11 09:09:44.157279 cognd 04139674X R rec 918c6a89-3ce3-487e-a578-498b15039e00 +2024-09-11 09:09:44.227435 2024-09-11 09:09:44.227441 cognd 041395786 R rec f7057e44-9cb5-4fb8-8299-e538b8ab134c +2024-09-11 09:09:44.284023 2024-09-11 09:09:44.284029 cognd 04139531X R rec 403fcfbb-5c03-4e18-a212-8b25e269ae78 +2024-09-11 09:09:44.340452 2024-09-11 09:09:44.340457 cognd 041393848 R rec 39842684-f5a4-4416-a7e2-c07cdc3800b8 +2024-09-11 09:09:44.396811 2024-09-11 09:09:44.396817 cognd 041392736 R rec 12a4c1af-6b7a-4d5f-9513-fa389bf25614 +2024-09-11 09:09:44.453966 2024-09-11 09:09:44.453972 cognd 041385896 R rec 075a4100-a713-4614-b690-5cba6e99ec2d +2024-09-11 09:09:44.51168 2024-09-11 09:09:44.511685 cognd 041385659 R rec e990e2a0-6c12-404e-839d-ed6e5baab7cf +2024-09-11 09:09:44.57149 2024-09-11 09:09:44.571495 cognd 041382994 R rec 5d8dcc8f-8cb5-487e-94c2-b97dcaf8f1e2 +2024-09-11 09:09:44.634946 2024-09-11 09:09:44.634951 cognd 041380827 R rec 691a67a7-ae21-46d0-b6f1-c6c84242359d +2024-09-11 09:09:44.689655 2024-09-11 09:09:44.689659 cognd 041378970 R rec ee006388-5e54-47d6-993a-2813ad6f9922 +2024-09-11 09:09:44.744003 2024-09-11 09:09:44.744008 cognd 041378296 R rec c9d414dd-cf52-460b-ad3f-47b717d4e74b +2024-09-11 09:09:44.796576 2024-09-11 09:09:44.796581 cognd 04137651X R rec 1347e4af-c126-464e-989a-3cd956aa8363 +2024-09-11 09:09:44.857441 2024-09-11 09:09:44.857446 cognd 041375785 R rec f14a92c9-93a4-4db5-b5c4-11ba4b3c529c +2024-09-11 09:09:44.913873 2024-09-11 09:09:44.913879 cognd 041375157 R rec e1730d09-48db-4d50-a3a6-03723cc1d03a +2024-09-11 09:09:44.979753 2024-09-11 09:09:44.979758 cognd 041373146 R rec 6b7946e6-966c-4258-8d32-359e40dca0fe +2024-09-11 09:09:45.048622 2024-09-11 09:09:45.048626 cognd 041372867 R rec d4e7bfdc-0aa7-48e4-9c05-7f8306d222d4 +2024-09-11 09:09:45.105649 2024-09-11 09:09:45.105654 cognd 041369424 R rec 395043dd-8aca-40f2-970e-42a7bb548b33 +2024-09-11 09:09:45.160343 2024-09-11 09:09:45.160348 cognd 041368118 R rec 21b3f9d4-f06a-49e3-9e0d-72cf799e0402 +2024-09-11 09:09:45.219117 2024-09-11 09:09:45.219122 cognd 041367782 R rec b9151d42-6222-41b1-bb91-bc0ab35635b2 +2024-09-11 09:09:45.275511 2024-09-11 09:09:45.275516 cognd 041358902 R rec 4bbaa92b-cf96-4ee4-94b2-24a75332a8e8 +2024-09-11 09:09:45.346016 2024-09-11 09:09:45.346022 cognd 041358678 R rec 125d4acf-2846-4ece-9f63-ab18f9f409a9 +2024-09-11 09:09:45.409117 2024-09-11 09:09:45.409123 cognd 041357515 R rec b4ee0884-657c-4449-80ce-bc8708368087 +2024-09-11 09:09:45.468003 2024-09-11 09:09:45.468008 cognd 041351169 R rec d001933e-70f8-41c9-9325-5461177baa78 +2024-09-11 09:09:45.528455 2024-09-11 09:09:45.528461 cognd 041344677 R rec 70f990c1-922a-416a-9667-95d70f1a980b +2024-09-11 09:09:45.593984 2024-09-11 09:09:45.593989 cognd 041336844 R rec 48daed62-3d0f-47e3-857e-44083caa424a +2024-09-11 09:09:45.660423 2024-09-11 09:09:45.660429 cognd 041336720 R rec 763d65ba-dedd-4ba7-a003-04373c23a5db +2024-09-11 09:09:45.728347 2024-09-11 09:09:45.728353 cognd 041332156 R rec c7eb3bba-32b4-47f5-a8e8-7ce49373a01b +2024-09-11 09:09:45.784167 2024-09-11 09:09:45.784172 cognd 041330048 R rec 39f7602e-d1bc-488f-b015-1220a536016a +2024-09-11 09:09:45.843036 2024-09-11 09:09:45.843042 cognd 041328523 R rec b9c14308-ec9e-4d2f-8c88-67430a99b9c2 +2024-09-11 09:09:45.901931 2024-09-11 09:09:45.901937 cognd 041327896 R rec 4631406a-4ff9-418c-9b0b-94e554b1651d +2024-09-11 09:09:45.963044 2024-09-11 09:09:45.96305 cognd 041326393 R rec f636ab69-e88e-48f7-921a-96f5ba9cccf1 +2024-09-11 09:09:46.018796 2024-09-11 09:09:46.018802 cognd 041325109 R rec e163b5fd-4f2d-48bd-9061-504fe1dbc452 +2024-09-11 09:09:46.077079 2024-09-11 09:09:46.077085 cognd 04132501X R rec e3e0aff2-27a8-4ddc-af34-b2a8a569b8c3 +2024-09-11 09:09:46.135895 2024-09-11 09:09:46.135901 cognd 041321782 R rec a064db7f-7c38-476a-a40c-8477c8a8c596 +2024-09-11 09:09:46.200981 2024-09-11 09:09:46.200987 cognd 041318153 R rec e81103af-8148-4751-a587-6f62a93b415d +2024-09-11 09:09:46.29048 2024-09-11 09:09:46.290485 cognd 041312406 R rec 6c8c2e99-efc4-4431-99a2-740e939ceb0f +2024-09-11 09:09:46.345408 2024-09-11 09:09:46.345415 cognd 041311248 R rec 1798cec3-fe91-4a18-a5b1-35317ed53198 +2024-09-11 09:09:46.400104 2024-09-11 09:09:46.40011 cognd 041308263 R rec 5fac9f93-c907-487c-a172-dec448369c94 +2024-09-11 09:09:46.451408 2024-09-11 09:09:46.451414 cognd 041306570 R rec 787e5cd4-fb53-48e7-9925-b89b172c31ef +2024-09-11 09:09:46.510463 2024-09-11 09:09:46.510468 cognd 041306473 R rec 8850231c-e9f1-4aa7-b96d-a243ad6b44df +2024-09-11 09:09:46.568205 2024-09-11 09:09:46.56821 cognd 041305450 R rec 4a16adbd-df10-4504-bbd5-51f8459e571e +2024-09-11 09:09:46.624055 2024-09-11 09:09:46.62406 cognd 041301005 R rec 44d19629-4e34-4cf4-b1b2-8ede8cd353bf +2024-09-11 09:09:46.677533 2024-09-11 09:09:46.677537 cognd 041296540 R rec 1cda0b62-2284-4e49-88c8-adaa7a4e39e8 +2024-09-11 09:09:46.730356 2024-09-11 09:09:46.730362 cognd 041291107 R rec 910db17f-f05c-452e-8d5d-69ab8a3d946b +2024-09-11 09:09:46.786093 2024-09-11 09:09:46.786099 cognd 041289870 R rec a02977b0-2f69-4b13-92e9-856b1203f4f2 +2024-09-11 09:09:46.845875 2024-09-11 09:09:46.845879 cognd 041288769 R rec 9d38a184-8e8f-4547-a663-5ddfed33bd09 +2024-09-11 09:09:46.90789 2024-09-11 09:09:46.907896 cognd 04128805X R rec e059cfd9-c581-4351-ab52-1cf3d9fbc9e1 +2024-09-11 09:09:46.974363 2024-09-11 09:09:46.974369 cognd 041287886 R rec 1c63452f-7ec3-4f44-88f4-d288a4498c9f +2024-09-11 09:09:47.036756 2024-09-11 09:09:47.036761 cognd 041285913 R rec 185c835e-446a-4aa9-9069-29bf41298bae +2024-09-11 09:09:47.091244 2024-09-11 09:09:47.09125 cognd 041284100 R rec bd410844-3744-497e-9a26-4eaf1d0c4a85 +2024-09-11 09:09:47.146733 2024-09-11 09:09:47.146738 cognd 041282787 R rec 37427aad-79eb-41ca-ad08-27830e71632c +2024-09-11 09:09:47.203313 2024-09-11 09:09:47.203318 cognd 041280628 R rec 865527c4-7b94-460d-8ffc-c20bb8bb5224 +2024-09-11 09:09:47.264089 2024-09-11 09:09:47.264095 cognd 041277848 R rec b94c04ff-cb32-406e-a1e7-80a9601715b3 +2024-09-11 09:09:47.334822 2024-09-11 09:09:47.334827 cognd 041277090 R rec c6e8bed8-107d-46e7-bd8b-8a8181fef3b2 +2024-09-11 09:09:47.392441 2024-09-11 09:09:47.392447 cognd 041275829 R rec 7396fbf5-57da-458e-b244-f67d9d9f3f93 +2024-09-11 09:09:47.451573 2024-09-11 09:09:47.451578 cognd 041274059 R rec 8106770e-ce10-4037-9487-5f7b15122cd9 +2024-09-11 09:09:47.50643 2024-09-11 09:09:47.506436 cognd 041270290 R rec 4ceaa047-03f6-4c9b-a9f6-5633ef7b1a7c +2024-09-11 09:09:47.564845 2024-09-11 09:09:47.56485 cognd 041264487 R rec 6a9c00b1-467d-4c59-98dc-a5c44c0f867d +2024-09-11 09:09:47.62238 2024-09-11 09:09:47.622385 cognd 04126133X R rec d2493d21-3b4f-4933-9f8e-6b5f907c5529 +2024-09-11 09:09:47.679417 2024-09-11 09:09:47.679423 cognd 041258819 R rec 3c2fc4ef-eb33-4894-a79c-00eb947369c1 +2024-09-11 09:09:47.744956 2024-09-11 09:09:47.744962 cognd 041258762 R rec 22a5df9c-c1fc-4cfe-9426-7f45583006ec +2024-09-11 09:09:47.803431 2024-09-11 09:09:47.803437 cognd 041255364 R rec 49fce4e0-f100-424a-86cb-84df2157b0a2 +2024-09-11 09:09:47.859593 2024-09-11 09:09:47.859598 cognd 041254759 R rec 6c46315f-e232-4c89-95b2-93b8e806cacb +2024-09-11 09:09:47.919646 2024-09-11 09:09:47.919651 cognd 041254538 R rec 95e53e10-667d-49bd-bd57-2d9da932420f +2024-09-11 09:09:47.977239 2024-09-11 09:09:47.977245 cognd 041251733 R rec 496b438b-2e33-44bc-aa9c-f371603b2aa2 +2024-09-11 09:09:48.033693 2024-09-11 09:09:48.033698 cognd 041250117 R rec 0841d278-2d7d-45ce-8b3f-7c899ec3277f +2024-09-11 09:09:48.094215 2024-09-11 09:09:48.09422 cognd 041244362 R rec 021cef7b-eb8d-4929-83de-fe5ed1a82452 +2024-09-11 09:09:48.154572 2024-09-11 09:09:48.154577 cognd 04124317X R rec 59a2d0a5-9126-45e3-ab33-7e398598f392 +2024-09-11 09:09:48.211834 2024-09-11 09:09:48.211839 cognd 041240839 R rec ab59acc0-f7d8-444c-8afe-6ca9d976624f +2024-09-11 09:09:48.281266 2024-09-11 09:09:48.281272 cognd 041237226 R rec acecfb39-3699-44a6-9f9a-346df9f0c4c9 +2024-09-11 09:09:48.340393 2024-09-11 09:09:48.340398 cognd 041231899 R rec 44ebe4e6-8c1c-42a5-92ad-c99757459cf5 +2024-09-11 09:09:48.39505 2024-09-11 09:09:48.395055 cognd 041220803 R rec 13e5b8c6-9019-4a56-b79a-1b0fd6440c82 +2024-09-11 09:09:48.448643 2024-09-11 09:09:48.448649 cognd 041218760 R rec bb638b81-7392-4577-a1cb-82d5eedf8ec2 +2024-09-11 09:09:48.504785 2024-09-11 09:09:48.50479 cognd 041217896 R rec 490348b8-19d9-4035-af54-a35bbea14555 +2024-09-11 09:09:48.558361 2024-09-11 09:09:48.558366 cognd 041217225 R rec 193201f9-1b34-423a-849c-174eb45bdfc5 +2024-09-11 09:09:48.61798 2024-09-11 09:09:48.617987 cognd 041217020 R rec 49824ee5-08a1-4346-8fba-721dbaab3024 +2024-09-11 09:09:48.673183 2024-09-11 09:09:48.673204 cognd 04121630X R rec 512378d5-4403-4e4a-ba06-24fa9b001829 +2024-09-11 09:09:48.728532 2024-09-11 09:09:48.728538 cognd 041214870 R rec de17b6d3-03d2-4d13-8c4c-3bd88b3b2bf8 +2024-09-11 09:09:48.787276 2024-09-11 09:09:48.787281 cognd 041212339 R rec 1f6c4e90-93f9-4595-b3ac-2cbc7ff448f4 +2024-09-11 09:09:48.843788 2024-09-11 09:09:48.843793 cognd 041211383 R rec 0c56f98d-256a-4896-92f2-c65157567a6a +2024-09-11 09:09:48.898156 2024-09-11 09:09:48.898162 cognd 041211154 R rec b7e4ecde-bbe7-4311-9709-a3b20ba9ed29 +2024-09-11 09:09:48.960108 2024-09-11 09:09:48.960113 cognd 041208862 R rec 5c646444-72fb-4efa-bcff-e78f8e582271 +2024-09-11 09:09:49.018414 2024-09-11 09:09:49.01842 cognd 041204409 R rec 6f41d4e3-4909-40ea-ab00-0a32ec38cdac +2024-09-11 09:09:49.073862 2024-09-11 09:09:49.073867 cognd 041176626 R rec dc66c128-3286-4cc2-b4ee-00df7c156e15 +2024-09-11 09:09:49.136198 2024-09-11 09:09:49.136204 cognd 041175808 R rec fa3022ae-02cb-4d6d-b46c-124f2b5759e9 +2024-09-11 09:09:49.190691 2024-09-11 09:09:49.190697 cognd 041173899 R rec 48f23b14-7365-4542-b44d-24a6364e0297 +2024-09-11 09:09:49.254013 2024-09-11 09:09:49.254019 cognd 041172922 R rec d0f69add-fd98-4a51-9981-d20ea6501c5a +2024-09-11 09:09:49.320831 2024-09-11 09:09:49.320836 cognd 041172299 R rec 58581559-dc63-4f68-b509-f2bf356101e9 +2024-09-11 09:09:49.37511 2024-09-11 09:09:49.375115 cognd 041164334 R rec 0ae36323-d941-4160-8ba5-2c001db0d077 +2024-09-11 09:09:49.433787 2024-09-11 09:09:49.433792 cognd 04115746X R rec faf11413-de69-48ce-9a37-e2f86f240abc +2024-09-11 09:09:49.489725 2024-09-11 09:09:49.489731 cognd 041144910 R rec e1219cff-e943-45f8-83bf-26578b33eec1 +2024-09-11 09:09:49.550351 2024-09-11 09:09:49.550356 cognd 041142993 R rec 52a85a18-7a7c-4de4-bf44-6d8b2ce3708a +2024-09-11 09:09:49.606199 2024-09-11 09:09:49.606204 cognd 041142403 R rec bf06bd51-ae54-466a-9c44-6fdefef51ba3 +2024-09-11 09:09:49.664767 2024-09-11 09:09:49.664773 cognd 041134346 R rec e0bf7efd-4bb3-4ad8-93be-61c9f298c637 +2024-09-11 09:09:49.723391 2024-09-11 09:09:49.723396 cognd 041133889 R rec 110b8632-a38b-4be1-ab20-7c9da641ba12 +2024-09-11 09:09:49.776382 2024-09-11 09:09:49.776389 cognd 041125002 R rec 39f7b125-6038-45a9-806f-6c702cf7f988 +2024-09-11 09:09:49.831991 2024-09-11 09:09:49.831997 cognd 041067940 R rec 1018ea14-11d2-4036-902f-7d902bd02234 +2024-09-11 09:09:49.883695 2024-09-11 09:09:49.883699 cognd 040785947 R rec ed37d9e2-b08f-4075-b6b8-d240e1461f70 +2024-09-11 09:09:49.944078 2024-09-11 09:09:49.944084 cognd 04077984X R rec 7e18c647-7064-45ee-bec0-70030e5f65b5 +2024-09-11 09:09:50.000514 2024-09-11 09:09:50.000519 cognd 040777820 R rec 0eed4e66-08df-4732-bd27-d8ae91193fb7 +2024-09-11 09:09:50.05635 2024-09-11 09:09:50.056356 cognd 040776832 R rec b776c89b-8a33-493f-8afd-19bbf864d308 +2024-09-11 09:09:50.115206 2024-09-11 09:09:50.115211 cognd 040760669 R rec 623f57fe-f624-4410-9431-00bd550240e2 +2024-09-11 09:09:50.171763 2024-09-11 09:09:50.171769 cognd 04075121X R rec 955c2aaf-1a99-4db0-8776-9e5a6314efe3 +2024-09-11 09:09:50.232523 2024-09-11 09:09:50.232529 cognd 040741117 R rec 9a4920d0-8648-49da-b950-b6ee6fba8c7b +2024-09-11 09:09:50.30402 2024-09-11 09:09:50.304026 cognd 040737888 R rec f1980ce1-39ba-4e0a-aabc-65af53ae2376 +2024-09-11 09:09:50.370328 2024-09-11 09:09:50.370333 cognd 040737810 R rec 9acd98e7-0086-460f-bd64-2441fdc3f807 +2024-09-11 09:09:50.431552 2024-09-11 09:09:50.431558 cognd 040737063 R rec 0e9f01bb-c7a6-49c6-9b3c-e3bbe9ff2bbf +2024-09-11 09:09:50.489401 2024-09-11 09:09:50.489406 cognd 040717763 R rec f5bd6052-1ef8-48ab-b056-cfdbf9391115 +2024-09-11 09:09:50.544022 2024-09-11 09:09:50.544027 cognd 040717119 R rec e617069a-1cd7-4c74-95fd-cebd4a3ea2a1 +2024-09-11 09:09:50.601931 2024-09-11 09:09:50.601937 cognd 040715213 R rec 281724c2-189b-473f-b8f6-ad7e7d2c483e +2024-09-11 09:09:50.650674 2024-09-11 09:09:50.650679 cognd 040712168 R rec b0982876-bf52-4700-a8d9-c5ed1cb17183 +2024-09-11 09:09:50.709303 2024-09-11 09:09:50.70931 cognd 040709248 R rec 43f154db-d873-4677-a7cc-3631e9ed6e69 +2024-09-11 09:09:50.765264 2024-09-11 09:09:50.76527 cognd 040707385 R rec 9c6eda1f-e5ee-4481-9593-0e674322a0ff +2024-09-11 09:09:50.820087 2024-09-11 09:09:50.820092 cognd 040706079 R rec cd421a45-210b-4f67-934f-95415477070d +2024-09-11 09:09:50.877573 2024-09-11 09:09:50.877578 cognd 040705846 R rec 5c1559ba-41c1-4e3c-9e0f-7cc99e6b7a3d +2024-09-11 09:09:50.939752 2024-09-11 09:09:50.939756 cognd 040693759 R rec c99bd93b-ffc6-46a6-9a32-e83987aae79d +2024-09-11 09:09:50.997722 2024-09-11 09:09:50.997727 cognd 040693538 R rec 9aaeaac2-ff4c-40aa-abbf-104bb85f6413 +2024-09-11 09:09:51.054985 2024-09-11 09:09:51.05499 cognd 040687333 R rec aa96cfd7-44b5-489e-8d72-d4e688d21927 +2024-09-11 09:09:51.120404 2024-09-11 09:09:51.120409 cognd 040685969 R rec 1746a47c-3799-40b6-a9fe-3aaffdb16ac2 +2024-09-11 09:09:51.208504 2024-09-11 09:09:51.208511 cognd 040677036 R rec 675a2f70-208c-409a-abde-b5499bcdefe7 +2024-09-11 09:09:51.273868 2024-09-11 09:09:51.273874 cognd 04067701X R rec 60642b94-e758-47b6-9e93-a5061dffa1c8 +2024-09-11 09:09:51.335612 2024-09-11 09:09:51.335617 cognd 040664643 R rec 056dd7d5-c4e2-4c9e-9bf4-e45cb87802cc +2024-09-11 09:09:51.391323 2024-09-11 09:09:51.391329 cognd 040664244 R rec 99ea1b51-903a-47b2-a977-19e093c5c68e +2024-09-11 09:09:51.444296 2024-09-11 09:09:51.444301 cognd 040664104 R rec 9986c069-4d56-4bde-90a7-5706bd88f850 +2024-09-11 09:09:51.505837 2024-09-11 09:09:51.505843 cognd 040658864 R rec 6692125e-c46f-42ff-ae13-8f63b429fd13 +2024-09-11 09:09:51.560529 2024-09-11 09:09:51.560534 cognd 040654648 R rec 28b43bce-0258-40d6-a45b-6ec4cd3f4978 +2024-09-11 09:09:51.616311 2024-09-11 09:09:51.616316 cognd 040641805 R rec 05da178d-cc68-4a78-b6e6-a9db1bde3e3d +2024-09-11 09:09:51.673044 2024-09-11 09:09:51.67305 cognd 040633306 R rec 738f5dd0-4049-4208-ae3b-f9a206f7c75d +2024-09-11 09:09:51.73079 2024-09-11 09:09:51.730796 cognd 040628604 R rec 21660110-1e75-43f4-9176-31b4a0fef479 +2024-09-11 09:09:51.790451 2024-09-11 09:09:51.790455 cognd 040628094 R rec dcb15a8b-481c-43ca-ba7d-9a5766d4e42f +2024-09-11 09:09:51.850102 2024-09-11 09:09:51.850107 cognd 040621278 R rec 52182b3b-9b28-4b81-bc2b-6f44d32ae8b9 +2024-09-11 09:09:51.908705 2024-09-11 09:09:51.90871 cognd 040617203 R rec b3f0c4d8-78cd-4291-a96d-849062c2d07c +2024-09-11 09:09:51.965984 2024-09-11 09:09:51.965989 cognd 040598160 R rec 6e9eb4af-698b-4d00-a9c3-340dcebd39b8 +2024-09-11 09:09:52.021146 2024-09-11 09:09:52.021151 cognd 040596648 R rec 474f0aa1-198e-4a01-8a61-72003a35493b +2024-09-11 09:09:52.073642 2024-09-11 09:09:52.073647 cognd 04059596X R rec 6e9a53af-b5ad-469b-a03a-8eaa86d086b9 +2024-09-11 09:09:52.13664 2024-09-11 09:09:52.136646 cognd 040581780 R rec 9d4fcaf3-7e00-44c6-aee8-4dcd9a31f3e4 +2024-09-11 09:09:52.207358 2024-09-11 09:09:52.207363 cognd 040579123 R rec a3e4ce36-05d7-4c53-b375-b2ce169b30c5 +2024-09-11 09:09:52.265385 2024-09-11 09:09:52.265391 cognd 040576337 R rec f038d4ef-c84f-4fc1-98bc-f045c8b47f3b +2024-09-11 09:09:52.325705 2024-09-11 09:09:52.325711 cognd 040575136 R rec 4b9c0d9e-a0b2-441f-8f50-ddf566e8a8f2 +2024-09-11 09:09:52.381849 2024-09-11 09:09:52.381854 cognd 040570215 R rec b2601987-bd6b-4ac3-a686-38bcfcb82123 +2024-09-11 09:09:52.43546 2024-09-11 09:09:52.435466 cognd 040562182 R rec 38059078-09ec-43a1-9e19-478e02a0f5b5 +2024-09-11 09:09:52.494202 2024-09-11 09:09:52.494208 cognd 040539644 R rec fa3fb0c9-41a3-426d-b82d-b9ec85728b10 +2024-09-11 09:09:52.551497 2024-09-11 09:09:52.551503 cognd 04053376X R rec f78c196d-5c3f-4890-a218-8b6403a1ce59 +2024-09-11 09:09:52.60966 2024-09-11 09:09:52.609665 cognd 040515842 R rec e44ad03c-e158-4844-8763-c78092a37cbb +2024-09-11 09:09:52.669223 2024-09-11 09:09:52.669229 cognd 040490122 R rec 70fff1da-bbba-4146-b7d1-668f27466fc7 +2024-09-11 09:09:52.724553 2024-09-11 09:09:52.724558 cognd 040475972 R rec fd80a978-f907-4eaf-8908-b3167453df78 +2024-09-11 09:09:52.778919 2024-09-11 09:09:52.778925 cognd 040475778 R rec 501033f6-66cd-4ff8-aff6-97f476377684 +2024-09-11 09:09:52.834413 2024-09-11 09:09:52.834419 cognd 040471713 R rec a878fe06-0092-4b60-a7fd-a639e97ce89d +2024-09-11 09:09:52.890326 2024-09-11 09:09:52.890331 cognd 040471233 R rec 61db01cf-5fba-4487-9e2d-2922495103aa +2024-09-11 09:09:52.946931 2024-09-11 09:09:52.946936 cognd 040468003 R rec becb5dfb-e6c1-488a-abd7-374fb9ed97df +2024-09-11 09:09:53.00138 2024-09-11 09:09:53.001385 cognd 040461912 R rec 6ac37693-e759-4e55-a403-48c2bb5a32a9 +2024-09-11 09:09:53.065542 2024-09-11 09:09:53.065548 cognd 040460495 R rec 925a8e45-9d3b-47c4-a1cc-09e2041a9d16 +2024-09-11 09:09:53.138728 2024-09-11 09:09:53.138734 cognd 040459195 R rec 386fa94a-ba73-485e-984c-a56e45364fc4 +2024-09-11 09:09:53.195586 2024-09-11 09:09:53.195591 cognd 040448932 R rec dd2d0c44-d107-4d95-9f2b-0d0763bca68e +2024-09-11 09:09:53.248928 2024-09-11 09:09:53.248933 cognd 040448924 R rec 2bca53f8-5dad-4762-b034-90bea9a770a6 +2024-09-11 09:09:53.30259 2024-09-11 09:09:53.302596 cognd 040414124 R rec b5cfc7f7-33cf-41e0-a32d-f38ab4f82d7d +2024-09-11 09:09:53.360041 2024-09-11 09:09:53.360046 cognd 04041177X R rec 0aeff81a-b63e-4193-ab1a-4d0a5bb93427 +2024-09-11 09:09:53.425683 2024-09-11 09:09:53.425688 cognd 040411583 R rec d67b4db8-02c0-479f-be6b-d57cbda72bd4 +2024-09-11 09:09:53.487936 2024-09-11 09:09:53.487942 cognd 040372170 R rec d099abda-9fc1-4f56-aa2c-239d18ca7294 +2024-09-11 09:09:53.561013 2024-09-11 09:09:53.561018 cognd 040366898 R rec 2549bac0-2226-43cb-98a4-d7aa3006fec1 +2024-09-11 09:09:53.612919 2024-09-11 09:09:53.612924 cognd 040357228 R rec 26792b78-673b-4cd6-88ef-514d0ebc443b +2024-09-11 09:09:53.664657 2024-09-11 09:09:53.664662 cognd 040354415 R rec a9a8bb4b-a466-4a72-b796-ce9afce93bb2 +2024-09-11 09:09:53.721133 2024-09-11 09:09:53.72114 cognd 040351130 R rec 8d26a948-7b8c-44e2-9d28-24b0bf00149c +2024-09-11 09:09:53.779271 2024-09-11 09:09:53.779276 cognd 04034889X R rec 4074ad6f-8990-4a5a-8ff1-0b2cfd85b3e0 +2024-09-11 09:09:53.83495 2024-09-11 09:09:53.834956 cognd 040344029 R rec 4c238a7f-2e0b-4380-b192-213617aa28a0 +2024-09-11 09:09:53.908323 2024-09-11 09:09:53.908328 cognd 040302482 R rec 7e74dce9-2575-4b73-96f0-075c8e04f738 +2024-09-11 09:09:53.973799 2024-09-11 09:09:53.973804 cognd 040299848 R rec 4db35855-df42-43d5-ab5e-8a33e3647819 +2024-09-11 09:09:54.024322 2024-09-11 09:09:54.024328 cognd 040297519 R rec bdebffc1-90ae-46f6-841a-1fc911e54885 +2024-09-11 09:09:54.073566 2024-09-11 09:09:54.073572 cognd 040296709 R rec 667d7970-f167-4fed-bbed-6c3263200248 +2024-09-11 09:09:54.131985 2024-09-11 09:09:54.131991 cognd 040270076 R rec da6d40f1-20c0-4a8c-a3d9-d93e71660278 +2024-09-11 09:09:54.184857 2024-09-11 09:09:54.184861 cognd 040267210 R rec bda11640-888c-470b-8705-0e3998dcb4eb +2024-09-11 09:09:54.240253 2024-09-11 09:09:54.240258 cognd 040257029 R rec 4b7b9f96-e0d4-4507-b8b3-f8828912bd83 +2024-09-11 09:09:54.296107 2024-09-11 09:09:54.296112 cognd 040246655 R rec 44ba732e-df81-423a-b44f-70cec263fc91 +2024-09-11 09:09:54.349767 2024-09-11 09:09:54.349771 cognd 040218066 R rec 7ad075b8-7656-46e1-b024-f51fba3f69b8 +2024-09-11 09:09:54.409196 2024-09-11 09:09:54.409201 cognd 04021334X R rec e573fc77-924d-4834-b490-d3b083287683 +2024-09-11 09:09:54.466753 2024-09-11 09:09:54.46676 cognd 040200728 R rec 06430827-f193-495d-be54-97968af8a8bb +2024-09-11 09:09:54.532283 2024-09-11 09:09:54.532288 cognd 040200159 R rec 915c6a51-72db-4628-8bca-8380097a1951 +2024-09-11 09:09:54.590806 2024-09-11 09:09:54.59081 cognd 040195589 R rec 2229ef4c-b2a1-4333-9e1f-414c1a5197ef +2024-09-11 09:09:54.645405 2024-09-11 09:09:54.64541 cognd 040172503 R rec fdc8f561-08a8-485d-bf05-609b72c015ad +2024-09-11 09:09:54.696044 2024-09-11 09:09:54.69605 cognd 040171078 R rec 829a19bb-08a3-4f5d-b802-821f785ae894 +2024-09-11 09:09:54.745944 2024-09-11 09:09:54.74595 cognd 040163172 R rec 9c5f3ce8-f7e0-43b6-8d51-93182fd1af4e +2024-09-11 09:09:54.805218 2024-09-11 09:09:54.805223 cognd 04015985X R rec faff72e5-e25c-47d4-99cc-aabb2c4cf659 +2024-09-11 09:09:54.861951 2024-09-11 09:09:54.861957 cognd 040158292 R rec b4fb2a00-b977-4404-b166-e9fcaf73d83a +2024-09-11 09:09:54.924362 2024-09-11 09:09:54.924368 cognd 040143503 R rec 708a61b7-2b6a-43b9-a50e-260d5ebf601b +2024-09-11 09:09:54.995192 2024-09-11 09:09:54.995197 cognd 040143376 R rec a0305253-a4e3-4ae1-9c2f-614d0626fed8 +2024-09-11 09:09:55.056625 2024-09-11 09:09:55.05663 cognd 040137465 R rec 7e7af758-efd4-4f83-b926-e462e4cdb97f +2024-09-11 09:09:55.114583 2024-09-11 09:09:55.114588 cognd 040136302 R rec 49d97edb-adc9-4369-bd91-462bdb4dbc7a +2024-09-11 09:09:55.167932 2024-09-11 09:09:55.167938 cognd 040132153 R rec 0944c6cb-59a0-4bc9-a94e-3344c059403a +2024-09-11 09:09:55.225587 2024-09-11 09:09:55.225592 cognd 040110680 R rec e8baa67b-c20d-47ec-8ccb-0284ba34ec4d +2024-09-11 09:09:55.278814 2024-09-11 09:09:55.27882 cognd 040105423 R rec 4a8462bd-4c30-4f81-981e-d57f36e1ee2b +2024-09-11 09:09:55.338749 2024-09-11 09:09:55.338756 cognd 040098923 R rec 3238d542-8c78-4969-b486-8493f1671c77 +2024-09-11 09:09:55.398014 2024-09-11 09:09:55.39802 cognd 040092755 R rec ff860d9c-ade2-47e6-8ae6-ae5aa486285d +2024-09-11 09:09:55.457366 2024-09-11 09:09:55.457371 cognd 04009104X R rec ace565af-e2bb-4b71-95b8-f193b34b4c43 +2024-09-11 09:09:55.515428 2024-09-11 09:09:55.515433 cognd 040090809 R rec 42150206-b93e-4fa1-a12d-b877c24ff745 +2024-09-11 09:09:55.578523 2024-09-11 09:09:55.578529 cognd 040072118 R rec 173ae906-dd40-41d7-8fa0-55f53e68c5cc +2024-09-11 09:09:55.63393 2024-09-11 09:09:55.633936 cognd 040070328 R rec 4b5463d0-e9c4-4d7b-83f0-3f65287cea0d +2024-09-11 09:09:55.687756 2024-09-11 09:09:55.687761 cognd 040060055 R rec d497c7d1-fdbf-48d1-9f73-f42d68588468 +2024-09-11 09:09:55.743768 2024-09-11 09:09:55.743774 cognd 040054020 R rec 4d55a37c-e9d8-4ba7-b17e-d67b9d875fc2 +2024-09-11 09:09:55.791315 2024-09-11 09:09:55.791321 cognd 040048543 R rec 192f6c86-12a8-4a45-8c86-90f6b71c4bc0 +2024-09-11 09:09:55.860598 2024-09-11 09:09:55.860603 cognd 040035506 R rec 21bfea06-1e4f-44e0-9d05-a4a3331a1aec +2024-09-11 09:09:55.922299 2024-09-11 09:09:55.922304 cognd 04003500X R rec c7e2ad0b-9595-4d4a-9899-e070f0d02fa7 +2024-09-11 09:09:55.981814 2024-09-11 09:09:55.981819 cognd 040030962 R rec 13217642-442b-4f5b-8d7d-4fe39df2ea72 +2024-09-11 09:09:56.04031 2024-09-11 09:09:56.040315 cognd 040018040 R rec fcb3a05a-d506-4cb9-8b9f-bb30f390b4b8 +2024-09-11 09:09:56.093827 2024-09-11 09:09:56.093832 cognd 040009866 R rec 17196880-2d51-4358-9623-707479a05b7c +2024-09-11 09:09:56.151874 2024-09-11 09:09:56.151881 cognd 040009327 R rec f25e164c-c1d5-4889-8922-643c1229cf39 +2024-09-11 09:09:56.204993 2024-09-11 09:09:56.204998 cognd 040004570 R rec d9825d07-5d20-47f7-a8bb-a93980b844a0 +2024-09-11 09:09:56.25974 2024-09-11 09:09:56.259746 cognd 04000158X R rec 26fd52d3-d29f-43de-96e4-34f529beab8c +2024-09-11 09:09:56.319143 2024-09-11 09:09:56.319148 cognd 1336884932 R rec 9cf08c30-44ef-422b-8094-83da8416d000 +2024-09-11 09:09:56.380656 2024-09-11 09:09:56.380661 cognd 1336884762 R rec e7f442fb-4b08-45c9-95fd-f26b350228b2 +2024-09-11 09:09:56.435297 2024-09-11 09:09:56.435303 cognd 1336876913 R rec 8596dc7c-4fe4-4350-9f1a-5aa30f3f7a7e +2024-09-11 09:09:56.489001 2024-09-11 09:09:56.489007 cognd 1336874678 R rec c812b6fd-87cd-4a71-900e-6d6cbd692461 +2024-09-11 09:09:56.547298 2024-09-11 09:09:56.547303 cognd 1336874414 R rec 84071372-decc-4af3-bda1-82d0ab18fa05 +2024-09-11 09:09:56.603361 2024-09-11 09:09:56.603366 cognd 133686463X R rec f351720f-4ba4-4d0f-80df-9214d6497d1d +2024-09-11 09:09:56.661585 2024-09-11 09:09:56.66159 cognd 1336835052 R rec e24c34d8-da6e-413d-852a-51b13ca28232 +2024-09-11 09:09:56.715524 2024-09-11 09:09:56.715528 cognd 1336765410 R rec 6fe0518e-a269-45aa-a46d-4285a401318e +2024-09-11 09:09:56.776984 2024-09-11 09:09:56.77699 cognd 1336763213 R rec 3a1eb90c-7e26-4d0e-b734-87ad5188ad05 +2024-09-11 09:09:56.841891 2024-09-11 09:09:56.841896 cognd 1336761083 R rec c19f1169-9d8c-4922-b836-e08fb2929e46 +2024-09-11 09:09:56.890874 2024-09-11 09:09:56.890879 cognd 1336749369 R rec 14f6271b-f4a7-4ca4-b6c1-57c7d99ae701 +2024-09-11 09:09:56.959014 2024-09-11 09:09:56.95902 cognd 1336591390 R rec 1c15236f-9a70-4a0b-8e42-a07ddbd69858 +2024-09-11 09:09:57.016548 2024-09-11 09:09:57.016553 cognd 1336589876 R rec d639a1d7-2a5d-4cbc-85c1-7cdffeca117a +2024-09-11 09:09:57.07815 2024-09-11 09:09:57.078155 cognd 133658873X R rec 7216664c-0e19-47ee-9294-afa04dbe091a +2024-09-11 09:09:57.140673 2024-09-11 09:09:57.140678 cognd 1336532009 R rec fc157949-3695-409f-92e4-553e97727842 +2024-09-11 09:09:57.196362 2024-09-11 09:09:57.196368 cognd 133646609X R rec 81d118e9-9089-4f65-a002-d0fcde0c3726 +2024-09-11 09:09:57.254736 2024-09-11 09:09:57.254742 cognd 1336401087 R rec 1d0986bd-5ace-419e-9454-16a1f33f85a6 +2024-09-11 09:09:57.311134 2024-09-11 09:09:57.31114 cognd 1336381698 R rec 38bd6b6d-e453-4cd2-a2fe-a98022873a61 +2024-09-11 09:09:57.362516 2024-09-11 09:09:57.362522 cognd 1336261625 R rec 3ba16987-a9a5-470d-98b1-e153d13683d5 +2024-09-11 09:09:57.412229 2024-09-11 09:09:57.412233 cognd 1336259086 R rec 9d639458-997d-4d14-aa91-827684e531d6 +2024-09-11 09:09:57.472426 2024-09-11 09:09:57.472431 cognd 1336255897 R rec 72510e08-e839-4a0d-b5aa-64426fd74565 +2024-09-11 09:09:57.53605 2024-09-11 09:09:57.536056 cognd 1336255692 R rec 1d1c7e85-eab7-436e-84e6-c0f73a6a1588 +2024-09-11 09:09:57.595073 2024-09-11 09:09:57.595078 cognd 1336255609 R rec 07642aaf-39df-40d6-bf04-54ad76fd1f11 +2024-09-11 09:09:57.645274 2024-09-11 09:09:57.64528 cognd 1336248335 R rec def3adb5-410d-491c-b31f-a3b9a16bef91 +2024-09-11 09:09:57.702045 2024-09-11 09:09:57.702049 cognd 1336235047 R rec a28680a4-2277-4cb3-bf9d-cea66471b6d3 +2024-09-11 09:09:57.756947 2024-09-11 09:09:57.756951 cognd 1336230754 R rec be4ef23f-897e-4979-aba4-e495fa4f6b5b +2024-09-11 09:09:57.811718 2024-09-11 09:09:57.811723 cognd 1336223200 R rec 06464f8e-46ee-4110-adef-f1b991415e2b +2024-09-11 09:09:57.870735 2024-09-11 09:09:57.870741 cognd 1336168528 R rec 37e143e6-bdfd-420f-80e7-5ca2ab39de42 +2024-09-11 09:09:57.928854 2024-09-11 09:09:57.928859 cognd 1336166509 R rec f64cdf9a-238c-4679-9a86-8007fca3cdcd +2024-09-11 09:09:57.983013 2024-09-11 09:09:57.983021 cognd 1336144033 R rec 9a60febf-b2d3-4cea-956b-0c536605e8fb +2024-09-11 09:09:58.052147 2024-09-11 09:09:58.052152 cognd 1336140607 R rec df8bda32-73c6-4408-8c61-69c6da5778f9 +2024-09-11 09:09:58.119766 2024-09-11 09:09:58.119773 cognd 1336136634 R rec db3f1a74-5293-47c0-856b-6632266206a0 +2024-09-11 09:09:58.176471 2024-09-11 09:09:58.176478 cognd 1336125306 R rec 42d35f01-42c3-466f-b673-2261c61457ac +2024-09-11 09:09:58.234416 2024-09-11 09:09:58.234421 cognd 1336043652 R rec 36549683-b4ce-4f34-a950-fb8fa8f09206 +2024-09-11 09:09:58.293479 2024-09-11 09:09:58.293485 cognd 133603906X R rec b0b3e7ee-3762-47f8-9e62-1c2a708bd8c1 +2024-09-11 09:09:58.346314 2024-09-11 09:09:58.34632 cognd 1336037571 R rec 637b5637-536e-4e4f-b69e-8b871a3d9276 +2024-09-11 09:09:58.40223 2024-09-11 09:09:58.402236 cognd 1336035544 R rec 185adb5f-f19b-4040-80c9-3748c31a5fd0 +2024-09-11 09:09:58.454812 2024-09-11 09:09:58.454817 cognd 1336026758 R rec 6e77dc1c-753f-4d21-9b09-c948e2c1f384 +2024-09-11 09:09:58.505794 2024-09-11 09:09:58.505798 cognd 1336019883 R rec 768970cc-920a-4769-ab95-033bcf279f49 +2024-09-11 09:09:58.566099 2024-09-11 09:09:58.566105 cognd 1336015497 R rec 55b363e1-526a-4921-a574-5c0cb31bc127 +2024-09-11 09:09:58.61988 2024-09-11 09:09:58.619888 cognd 1335982361 R rec 2d75f982-3905-4ebc-b9ea-19b117de6b46 +2024-09-11 09:09:58.684095 2024-09-11 09:09:58.684101 cognd 133595368X R rec b552ef6b-8f23-4b90-af39-857f82363303 +2024-09-11 09:09:58.740886 2024-09-11 09:09:58.740891 cognd 1335904158 R rec 49852986-a3fc-4b5d-898f-786f86d12e2a +2024-09-11 09:09:58.79405 2024-09-11 09:09:58.794055 cognd 1335903623 R rec 5a832742-62c7-4730-9479-9e6ba3e6b5fc +2024-09-11 09:09:58.84835 2024-09-11 09:09:58.848355 cognd 1335900330 R rec 99e3988c-c889-4947-a302-762c77ebdc8b +2024-09-11 09:09:58.901739 2024-09-11 09:09:58.901745 cognd 1335882758 R rec 3a155dbd-44e2-4470-9e7a-b57389ba1495 +2024-09-11 09:09:58.95664 2024-09-11 09:09:58.956645 cognd 1335881247 R rec f0c4039c-f19d-46ca-b702-b03213465842 +2024-09-11 09:09:59.012654 2024-09-11 09:09:59.012661 cognd 133582569X R rec 7357f1b1-c6fd-4449-a71b-500f66cb547e +2024-09-11 09:09:59.076834 2024-09-11 09:09:59.07684 cognd 1335777539 R rec 7b36d6d8-1391-4820-ba40-fb42e39e2cfa +2024-09-11 09:09:59.204834 2024-09-11 09:09:59.204839 cognd 1335762779 R rec f3d5c12b-1d51-4c84-b979-bb800358bfda +2024-09-11 09:09:59.255623 2024-09-11 09:09:59.255628 cognd 1335752897 R rec 09d180b7-b4e7-44d5-9308-d5a4ea40de30 +2024-09-11 09:09:59.312256 2024-09-11 09:09:59.312261 cognd 133575086X R rec 439586a2-9d09-403a-8372-ad4e1f04e976 +2024-09-11 09:09:59.370299 2024-09-11 09:09:59.370305 cognd 1335736832 R rec 1caf608c-091a-494a-8000-b68f2c536b5a +2024-09-11 09:09:59.423142 2024-09-11 09:09:59.423146 cognd 1335733086 R rec 4959e5f7-6d15-436d-94df-6bfd6028f746 +2024-09-11 09:09:59.477158 2024-09-11 09:09:59.477163 cognd 1335729577 R rec ef5f2e74-bacc-4d53-88bc-0e97b4b804b9 +2024-09-11 09:09:59.53286 2024-09-11 09:09:59.532867 cognd 1335727701 R rec b76052f9-d875-47b7-89f5-2930bf119087 +2024-09-11 09:09:59.592356 2024-09-11 09:09:59.592362 cognd 1335528539 R rec ee26d43e-5990-4770-b038-deabfc53f0f1 +2024-09-11 09:09:59.645188 2024-09-11 09:09:59.645193 cognd 1335514767 R rec f2d62061-b837-477d-bba2-d3603c7c046f +2024-09-11 09:09:59.704266 2024-09-11 09:09:59.704272 cognd 1335503307 R rec 7b1ed412-5802-4d06-bc38-542d47d3c14a +2024-09-11 09:09:59.762835 2024-09-11 09:09:59.762842 cognd 1335484930 R rec 72df83aa-d751-473f-8013-927b2425a592 +2024-09-11 09:09:59.817225 2024-09-11 09:09:59.817231 cognd 1335484639 R rec 21d11137-fce6-4d74-bb4a-0a29cf6ce52e +2024-09-11 09:09:59.873466 2024-09-11 09:09:59.873471 cognd 1335475753 R rec dca40820-45d1-45e0-ac50-bb2fc4e0ef09 +2024-09-11 09:09:59.928939 2024-09-11 09:09:59.928947 cognd 1335475575 R rec 6c49ee16-e241-45f3-8cda-5d59a5a261d3 +2024-09-11 09:09:59.983529 2024-09-11 09:09:59.983533 cognd 1335348379 R rec 25554c79-25e4-458a-baf6-2b39abb14d40 +2024-09-11 09:10:00.040391 2024-09-11 09:10:00.040396 cognd 1335334955 R rec 6bd8b470-a4b8-462d-b548-b66f24e84a9b +2024-09-11 09:10:00.095211 2024-09-11 09:10:00.095217 cognd 1335332510 R rec d40d8a72-7c57-4515-b766-e6ff8d916ad0 +2024-09-11 09:10:00.156469 2024-09-11 09:10:00.156475 cognd 1335327541 R rec 17c0cc23-5fa5-490a-a67c-566cf045b06f +2024-09-11 09:10:00.234468 2024-09-11 09:10:00.234474 cognd 1335263977 R rec a264f5aa-780b-4788-9714-c3015c2b5d64 +2024-09-11 09:10:00.291403 2024-09-11 09:10:00.291409 cognd 1335255869 R rec 18ed7d26-3490-4173-9feb-5fcf460de811 +2024-09-11 09:10:00.349771 2024-09-11 09:10:00.349776 cognd 1335237232 R rec b902431a-0f7f-4ff1-853d-b80533be667e +2024-09-11 09:10:00.405152 2024-09-11 09:10:00.405158 cognd 1335237046 R rec 481aabaa-bb1a-4e7e-835a-0463811b9be7 +2024-09-11 09:10:00.461765 2024-09-11 09:10:00.461771 cognd 133523490X R rec f1d269fa-a57c-47af-9011-68b8409680d9 +2024-09-11 09:10:00.517434 2024-09-11 09:10:00.517439 cognd 1335228187 R rec cbbafa66-e4e6-43a7-b67f-aad37d82bd4d +2024-09-11 09:10:00.572805 2024-09-11 09:10:00.572811 cognd 1335212299 R rec a0350211-dec8-455d-9f71-27c11cdf274c +2024-09-11 09:10:00.629227 2024-09-11 09:10:00.629232 cognd 133521075X R rec 82afba21-00f9-40f0-aa2c-852a1aaf250a +2024-09-11 09:10:00.688334 2024-09-11 09:10:00.688339 cognd 1335201068 R rec 63fa340e-e7a3-47fd-955e-ef61c0361c5f +2024-09-11 09:10:00.745179 2024-09-11 09:10:00.745184 cognd 1335134549 R rec 242161f9-a554-4f49-8338-0710f92f33eb +2024-09-11 09:10:00.800565 2024-09-11 09:10:00.800572 cognd 1335054405 R rec 33c3bf5b-4972-4962-b11d-46ba52516a78 +2024-09-11 09:10:00.855196 2024-09-11 09:10:00.855202 cognd 1334935475 R rec aaf59dcd-db6f-4bb2-aa3c-c5481fec8ec6 +2024-09-11 09:10:00.91162 2024-09-11 09:10:00.911626 cognd 1334906815 R rec 63f04988-7fa4-4d54-bb15-58edf34467dc +2024-09-11 09:10:00.967743 2024-09-11 09:10:00.967749 cognd 1334879079 R rec 4d7c7ce3-b8a6-4870-b625-071e475b764c +2024-09-11 09:10:01.023717 2024-09-11 09:10:01.023723 cognd 1334810524 R rec e544823d-42fd-4c6d-ba2c-2f7d8238a671 +2024-09-11 09:10:01.077587 2024-09-11 09:10:01.077592 cognd 1334804893 R rec 9f8f096f-0439-4eb7-a8a0-cf9ade02e4eb +2024-09-11 09:10:01.132817 2024-09-11 09:10:01.132823 cognd 1334804699 R rec 123d17f9-5f88-4904-a45b-003aca41784e +2024-09-11 09:10:01.190727 2024-09-11 09:10:01.190732 cognd 1334804281 R rec 5eb3bcf9-88da-4b2c-9b54-ec5f4bc62598 +2024-09-11 09:10:01.245858 2024-09-11 09:10:01.245864 cognd 1334795533 R rec f3532009-c9a7-4662-b136-4464e99c2036 +2024-09-11 09:10:01.317927 2024-09-11 09:10:01.317933 cognd 1334784639 R rec 5f0279ab-8473-452b-9d78-dc6417d6773d +2024-09-11 09:10:01.389461 2024-09-11 09:10:01.389466 cognd 1334676844 R rec 14a52d9c-f827-4c4c-ab56-361f6ea5a7a1 +2024-09-11 09:10:01.44567 2024-09-11 09:10:01.445675 cognd 1334652074 R rec c168f1ce-0fb4-44ba-abac-63ddbf7947fb +2024-09-11 09:10:01.500632 2024-09-11 09:10:01.500637 cognd 1334205639 R rec 96318630-e9a5-4d86-81d6-6dbdc09ba425 +2024-09-11 09:10:01.558093 2024-09-11 09:10:01.558097 cognd 1333849850 R rec a270ccdc-943b-41ac-b2d5-7d8def47e7fe +2024-09-11 09:10:01.622126 2024-09-11 09:10:01.622131 cognd 1333570651 R rec 46ae1de2-3b0f-410a-9678-a6d8705f16fa +2024-09-11 09:10:01.678893 2024-09-11 09:10:01.6789 cognd 1333353421 R rec ca16b732-bcba-46b4-8ef0-b0c529f13973 +2024-09-11 09:10:01.738648 2024-09-11 09:10:01.738653 cognd 1333321201 R rec 5fa12d1b-1022-4e51-a655-a04775b9563d +2024-09-11 09:10:01.794522 2024-09-11 09:10:01.794527 cognd 1333260148 R rec e1486436-36de-4021-8f89-cb2de45797ce +2024-09-11 09:10:01.855461 2024-09-11 09:10:01.855466 cognd 1333126433 R rec 3ae28f8b-79cb-4ff5-bef1-a82cb3929677 +2024-09-11 09:10:01.909373 2024-09-11 09:10:01.909379 cognd 1333115482 R rec b2707a24-5882-4621-a7a4-a9a6eb8ae5a5 +2024-09-11 09:10:01.963965 2024-09-11 09:10:01.96397 cognd 1332860451 R rec c9fce23d-b257-4089-95dd-d28e96594f80 +2024-09-11 09:10:02.019537 2024-09-11 09:10:02.019547 cognd 1332767702 R rec 418b29c8-b7ed-4511-98a5-56b3c4b3434d +2024-09-11 09:10:02.074892 2024-09-11 09:10:02.074898 cognd 1332765785 R rec cb343bec-bd03-4ecb-aa20-84a5c49ba0ff +2024-09-11 09:10:02.129531 2024-09-11 09:10:02.129536 cognd 1332734316 R rec ba3ffaa1-3dff-4526-bac8-bf13700896b1 +2024-09-11 09:10:02.184526 2024-09-11 09:10:02.184532 cognd 1332672701 R rec a932f3cd-876b-40f8-b210-6b8cf7f16901 +2024-09-11 09:10:02.243114 2024-09-11 09:10:02.24312 cognd 1332661327 R rec 1aa27db2-cb7b-43c4-85b7-023edb8209ef +2024-09-11 09:10:02.2973 2024-09-11 09:10:02.297305 cognd 1332426336 R rec 0550d609-586f-41da-b7be-77d4ef8522b2 +2024-09-11 09:10:02.352037 2024-09-11 09:10:02.352044 cognd 1332101607 R rec fa7d27b7-a6b1-4f3c-add3-5de10cb47a38 +2024-09-11 09:10:02.406224 2024-09-11 09:10:02.406228 cognd 1331864321 R rec e1d99d40-879c-4b34-a471-a85c6250ccf4 +2024-09-11 09:10:02.461533 2024-09-11 09:10:02.461538 cognd 1331496861 R rec eed56d4e-c9a2-4264-830c-3a469edbfe6f +2024-09-11 09:10:02.533443 2024-09-11 09:10:02.533449 cognd 1331098114 R rec 70a1a71e-c83e-4b6c-9d93-5331f7d935d2 +2024-09-11 09:10:02.585481 2024-09-11 09:10:02.585487 cognd 133099051X R rec 785cdaed-4dff-4388-968d-32c521a6f2fa +2024-09-11 09:10:02.642488 2024-09-11 09:10:02.642494 cognd 1330990056 R rec a4e683a3-ae6b-48c0-a6d7-59fb000dc66b +2024-09-11 09:10:02.700096 2024-09-11 09:10:02.700102 cognd 1330988728 R rec 191aa2b8-5f14-44d6-9dd1-444d564073a3 +2024-09-11 09:10:02.758081 2024-09-11 09:10:02.758087 cognd 1330985524 R rec 6e413b14-ca64-4032-a6cc-276226a23d6a +2024-09-11 09:10:02.814875 2024-09-11 09:10:02.81488 cognd 1330588517 R rec 72a42020-358e-4c39-9ffb-f6bb41c9efbe +2024-09-11 09:10:02.86982 2024-09-11 09:10:02.869825 cognd 1330408837 R rec 96d39f62-c226-4084-b691-88c480060578 +2024-09-11 09:10:02.927323 2024-09-11 09:10:02.927329 cognd 1330360036 R rec 044eea47-0f61-41df-ad67-6878b22c7ad8 +2024-09-11 09:10:02.989899 2024-09-11 09:10:02.989905 cognd 1330201647 R rec 3bc0cc2b-4016-401c-acb6-b61df027fabb +2024-09-11 09:10:03.051004 2024-09-11 09:10:03.05101 cognd 1330126599 R rec 49a119c7-3c88-4642-9f01-157dcef472fb +2024-09-11 09:10:03.111494 2024-09-11 09:10:03.111499 cognd 132940422X R rec c3404715-4067-4214-becc-91e14403cd4b +2024-09-11 09:10:03.173999 2024-09-11 09:10:03.174004 cognd 1329376129 R rec a035d590-0493-4c7f-9cd4-ed7e0274e44b +2024-09-11 09:10:03.230175 2024-09-11 09:10:03.230181 cognd 132935639X R rec 61b96039-d42b-4968-9e16-094d1226dc09 +2024-09-11 09:10:03.285683 2024-09-11 09:10:03.285689 cognd 1329174003 R rec dfa1e5c9-37d3-48b3-bc63-750938b45916 +2024-09-11 09:10:03.348336 2024-09-11 09:10:03.34834 cognd 1329171675 R rec 167aa819-1f8d-4598-8a91-e257468b3c06 +2024-09-11 09:10:03.413763 2024-09-11 09:10:03.413768 cognd 1328712400 R rec 022192d2-8399-4d68-b955-60a93b80a6e1 +2024-09-11 09:10:03.471027 2024-09-11 09:10:03.471032 cognd 1327991349 R rec c81e892e-b40b-4ba4-bb15-4bc79521ed75 +2024-09-11 09:10:03.524568 2024-09-11 09:10:03.524574 cognd 1327910268 R rec f7ddf285-c10d-4790-a7e5-20d884a14de7 +2024-09-11 09:10:03.581565 2024-09-11 09:10:03.58157 cognd 1327458667 R rec 0a10bb85-7365-4c17-bebc-a2195e60b36c +2024-09-11 09:10:03.640166 2024-09-11 09:10:03.640171 cognd 1326349392 R rec 0e7527c7-079e-4797-9681-8c26763a51f9 +2024-09-11 09:10:03.693895 2024-09-11 09:10:03.693901 cognd 132585283X R rec f130988c-eda6-41b1-9391-8e8ae750b9ec +2024-09-11 09:10:03.748144 2024-09-11 09:10:03.748149 cognd 1325643645 R rec b3a2e988-f40c-4f29-b597-61d383250a92 +2024-09-11 09:10:03.802387 2024-09-11 09:10:03.802392 cognd 1325061557 R rec 02eef002-2f33-4fff-8a6f-07e2c9cbc3ab +2024-09-11 09:10:03.865851 2024-09-11 09:10:03.865858 cognd 1324688629 R rec b6852adf-d4b2-4c6e-8b7d-3901f18196d6 +2024-09-11 09:10:03.922163 2024-09-11 09:10:03.922168 cognd 1324590173 R rec d0f50e23-b2b3-4d8d-b723-5eaa8b18f0c1 +2024-09-11 09:10:03.986173 2024-09-11 09:10:03.986179 cognd 1324101318 R rec 6ed0ceaf-df34-4232-ac16-564b5e21c6a4 +2024-09-11 09:10:04.052844 2024-09-11 09:10:04.052848 cognd 1324092424 R rec 062bcb83-11ef-4efc-b519-04d6754ea36b +2024-09-11 09:10:04.113263 2024-09-11 09:10:04.113269 cognd 1323913084 R rec 5f9916e9-00b6-4d13-80b9-168f2d4dbe10 +2024-09-11 09:10:04.171791 2024-09-11 09:10:04.171796 cognd 1323835148 R rec b33716fc-4916-4662-b67a-e3312f81271f +2024-09-11 09:10:04.224195 2024-09-11 09:10:04.224201 cognd 1323832262 R rec 8acc155c-0361-461c-a46e-437f9ee25f32 +2024-09-11 09:10:04.281833 2024-09-11 09:10:04.281838 cognd 1323804129 R rec a6bbffe5-00ae-4341-a45c-9cdaed7e144b +2024-09-11 09:10:04.334367 2024-09-11 09:10:04.334372 cognd 1323769536 R rec b11696e6-11a3-41a3-9801-5b8f51153137 +2024-09-11 09:10:04.387312 2024-09-11 09:10:04.387317 cognd 1323705910 R rec 10d7bb09-9a9c-4e33-acfd-78dc04e14822 +2024-09-11 09:10:04.442401 2024-09-11 09:10:04.442407 cognd 1323590102 R rec 202b31e1-cb27-4525-90c7-ffdc6e941491 +2024-09-11 09:10:04.512054 2024-09-11 09:10:04.51206 cognd 1323303669 R rec 55290cc8-10dd-4361-af60-6663c53ab7a3 +2024-09-11 09:10:04.566941 2024-09-11 09:10:04.566947 cognd 1323303103 R rec f4089413-4783-422c-9b04-75f97fdce573 +2024-09-11 09:10:04.621616 2024-09-11 09:10:04.621621 cognd 1323069380 R rec ef3a5f65-0fa2-4bac-942d-4ee56e8ef499 +2024-09-11 09:10:04.678578 2024-09-11 09:10:04.678583 cognd 1322662401 R rec 6158201c-836c-4711-938b-277479a6c1bf +2024-09-11 09:10:04.73599 2024-09-11 09:10:04.735996 cognd 1322661030 R rec cb981650-3af7-4a71-bdcd-7b8b05b192e7 +2024-09-11 09:10:04.791474 2024-09-11 09:10:04.79148 cognd 1322508801 R rec 47a38df7-865e-4e92-936a-ac024ec03593 +2024-09-11 09:10:04.84584 2024-09-11 09:10:04.845845 cognd 1322264716 R rec 78572590-72c1-4e80-b851-1b5355b68d36 +2024-09-11 09:10:04.900248 2024-09-11 09:10:04.900254 cognd 1321257988 R rec 95c5cb25-c35a-4c00-8e06-964848adbeac +2024-09-11 09:10:04.954414 2024-09-11 09:10:04.954419 cognd 1321125623 R rec 54e36f6c-5c95-4329-8a4d-d9fb5f8aacaa +2024-09-11 09:10:05.008389 2024-09-11 09:10:05.008395 cognd 1321125577 R rec 8ff9addc-4c60-4414-a748-90bf0543208b +2024-09-11 09:10:05.069631 2024-09-11 09:10:05.069637 cognd 1319483321 R rec ae13450c-57aa-463c-8471-fa549bef9507 +2024-09-11 09:10:05.161314 2024-09-11 09:10:05.161319 cognd 1319390072 R rec c4542680-2909-4baa-b63a-c24d67f07c67 +2024-09-11 09:10:05.217012 2024-09-11 09:10:05.217017 cognd 1318715598 R rec 6cb0a182-8aa0-46af-b677-b7d4a4e44627 +2024-09-11 09:10:05.272203 2024-09-11 09:10:05.27223 cognd 1318430968 R rec cb61a407-1f40-4980-85e9-b3fcf1a20a58 +2024-09-11 09:10:05.332095 2024-09-11 09:10:05.3321 cognd 131634410X R rec 2d80578b-daa6-4374-8483-62a75bd35c1b +2024-09-11 09:10:05.387339 2024-09-11 09:10:05.387345 cognd 1315679264 R rec b6cc822b-3376-4bdf-aeea-f596a9ed22fd +2024-09-11 09:10:05.444715 2024-09-11 09:10:05.44472 cognd 1315456125 R rec ad56fcff-8d10-487d-b5a0-d681ce637e7a +2024-09-11 09:10:05.501605 2024-09-11 09:10:05.501609 cognd 1315226715 R rec c7f7715e-1cbb-4c1c-a066-995d0ad2d64d +2024-09-11 09:10:05.56661 2024-09-11 09:10:05.566617 cognd 1315045133 R rec fdedeeb7-bf1b-4818-bc2d-e663a9798061 +2024-09-11 09:10:05.633624 2024-09-11 09:10:05.633631 cognd 131453260X R rec 327af292-4d41-42e6-94a4-dd5e7a21cb4a +2024-09-11 09:10:05.705699 2024-09-11 09:10:05.705704 cognd 1314347403 R rec aac6bf41-31f3-4958-aa6b-7ddcd20a0ba8 +2024-09-11 09:10:05.77404 2024-09-11 09:10:05.774046 cognd 1314019333 R rec 086134cf-e953-4fa5-81de-0caa53187bab +2024-09-11 09:10:05.837385 2024-09-11 09:10:05.837391 cognd 1312507497 R rec abc96d82-61a9-42e8-a4f4-6fa4c38c57e1 +2024-09-11 09:10:05.892492 2024-09-11 09:10:05.892498 cognd 1312506059 R rec a4aa8005-6625-4cb4-92e3-ee0a625a9326 +2024-09-11 09:10:05.94825 2024-09-11 09:10:05.948255 cognd 1311262989 R rec dd7eaa08-b516-4dd6-9a24-e77700586149 +2024-09-11 09:10:06.008308 2024-09-11 09:10:06.008314 cognd 1311025847 R rec 11a9ea3e-fbaf-4c78-aa08-cd2a2dfb5f99 +2024-09-11 09:10:06.066658 2024-09-11 09:10:06.066664 cognd 1310673683 R rec ff999835-1d76-45aa-ab4f-74c3bc05706f +2024-09-11 09:10:06.123804 2024-09-11 09:10:06.12381 cognd 1309822123 R rec a7827285-8e1d-4c5d-aa6f-9c6c99f6953f +2024-09-11 09:10:06.184906 2024-09-11 09:10:06.184912 cognd 1308550189 R rec 741a2e99-9346-4235-a10e-e8418d722c06 +2024-09-11 09:10:06.245198 2024-09-11 09:10:06.245205 cognd 1305189876 R rec df8e5c2c-30f0-4e49-95e4-90a26811d451 +2024-09-11 09:10:06.306167 2024-09-11 09:10:06.306173 cognd 1304711749 R rec 34de84c8-d5e2-46d3-ac75-c04cfa7cce9a +2024-09-11 09:10:06.368089 2024-09-11 09:10:06.368094 cognd 1304458741 R rec 328ab20d-fb3b-4f61-b20a-eb171f962ecb +2024-09-11 09:10:06.433826 2024-09-11 09:10:06.433832 cognd 1303066408 R rec 1478786e-2192-4e5f-8ae4-acb34e235bf5 +2024-09-11 09:10:06.490778 2024-09-11 09:10:06.490785 cognd 1302981390 R rec 64607f08-c89d-4a96-9a60-ddbf0b0d709a +2024-09-11 09:10:06.553902 2024-09-11 09:10:06.553909 cognd 1302782517 R rec 1a9cf11e-bcb8-4324-8839-dadd23a7b310 +2024-09-11 09:10:06.613134 2024-09-11 09:10:06.613139 cognd 1302782274 R rec a9f80b90-5ab2-40ef-9eae-62b084b80137 +2024-09-11 09:10:06.673417 2024-09-11 09:10:06.673422 cognd 1302781162 R rec 25b5cfbc-8c9c-49ac-adaf-6e798c70bb42 +2024-09-11 09:10:06.732853 2024-09-11 09:10:06.73286 cognd 1302592122 R rec 48cbc13a-2c57-4e31-aa25-d3ba11ef9b65 +2024-09-11 09:10:06.802117 2024-09-11 09:10:06.802123 cognd 1298190746 R rec a6cb4914-bf9e-4312-adbd-9b9c1ed4afc7 +2024-09-11 09:10:06.855521 2024-09-11 09:10:06.855527 cognd 1296860906 R rec 51eeaa3d-459b-4ab8-a0d0-c63e356f9eaf +2024-09-11 09:10:06.910717 2024-09-11 09:10:06.910723 cognd 1296369811 R rec a99778e5-6a42-44a3-98f1-1a319d047905 +2024-09-11 09:10:06.972084 2024-09-11 09:10:06.972089 cognd 1295208512 R rec 6a97fb5f-2c29-49f8-8894-ad053f76f6e2 +2024-09-11 09:10:07.031174 2024-09-11 09:10:07.03118 cognd 1294996460 R rec 3f9ec143-4400-45ee-a4df-06bb0f64fa99 +2024-09-11 09:10:07.089991 2024-09-11 09:10:07.089996 cognd 1294772627 R rec 24535f4d-d0a6-4795-80d3-6077ead9e2bf +2024-09-11 09:10:07.151002 2024-09-11 09:10:07.151011 cognd 129400283X R rec 5e4d43d7-58f9-4c59-96f8-70f17ec30fcf +2024-09-11 09:10:07.216206 2024-09-11 09:10:07.216211 cognd 1292845384 R rec 67dace66-e84a-4fc8-82c5-c3929668696b +2024-09-11 09:10:07.276985 2024-09-11 09:10:07.276991 cognd 1286766397 R rec f1bf39a2-3edb-47a7-b008-072159ec81f0 +2024-09-11 09:10:07.337326 2024-09-11 09:10:07.337332 cognd 1286227941 R rec 7ee61979-6af3-4a27-bac7-eee1d997fb33 +2024-09-11 09:10:07.398752 2024-09-11 09:10:07.398758 cognd 1286106745 R rec 27abd0a3-4047-4b5e-abd7-6ba4eea6ad74 +2024-09-11 09:10:07.453469 2024-09-11 09:10:07.453474 cognd 1285304527 R rec 452b5178-6958-40ff-9c68-0ca982ea4aed +2024-09-11 09:10:07.50832 2024-09-11 09:10:07.508325 cognd 1284854744 R rec 7427c94e-f0fd-4ba8-8ff0-e7f28a85fa9d +2024-09-11 09:10:07.565725 2024-09-11 09:10:07.565731 cognd 1284760456 R rec 9864f695-513f-4098-b4a3-3f024593547a +2024-09-11 09:10:07.626877 2024-09-11 09:10:07.626883 cognd 127990271X R rec 00d0b864-147b-4598-a05b-e2f92835b6be +2024-09-11 09:10:07.684005 2024-09-11 09:10:07.684012 cognd 1279534311 R rec ae9456ba-2351-4b05-a41a-1f0d79ea108e +2024-09-11 09:10:07.739975 2024-09-11 09:10:07.739981 cognd 1278300821 R rec 228c90f3-b011-4a42-82d1-33e8c0ee00f4 +2024-09-11 09:10:07.792101 2024-09-11 09:10:07.792106 cognd 1275762158 R rec 2b24b10c-6a2e-411b-9eb2-baa6415824d9 +2024-09-11 09:10:07.844407 2024-09-11 09:10:07.844411 cognd 1275016057 R rec d35ccf33-ad2e-4d0f-9f2d-d6ad8d773a38 +2024-09-11 09:10:07.905146 2024-09-11 09:10:07.905152 cognd 1274846765 R rec 1275294e-fb3d-4ce9-bb5b-4b7329b18f86 +2024-09-11 09:10:07.966224 2024-09-11 09:10:07.966255 cognd 1272439836 R rec 59d18090-432a-45fe-8a96-077ce7e48c75 +2024-09-11 09:10:08.02205 2024-09-11 09:10:08.022055 cognd 1272436322 R rec ebef07be-5e2e-42e5-aa8e-a6d118f4ebc4 +2024-09-11 09:10:08.073992 2024-09-11 09:10:08.073998 cognd 127243124X R rec 68378045-428a-4d87-9545-85edfa262cc4 +2024-09-11 09:10:08.128053 2024-09-11 09:10:08.128058 cognd 1272429997 R rec fd65bac2-d704-44ba-8d74-127746d23c60 +2024-09-11 09:10:08.182666 2024-09-11 09:10:08.18267 cognd 1272339785 R rec abf085b7-183e-4f46-85de-966f2a5555c6 +2024-09-11 09:10:08.237824 2024-09-11 09:10:08.237828 cognd 1272271439 R rec 9eb9909b-7764-4501-b543-9a07a26e7bc5 +2024-09-11 09:10:08.292633 2024-09-11 09:10:08.292638 cognd 1272267792 R rec 6f05f00c-b021-4b78-b707-63399650d9fa +2024-09-11 09:10:08.344701 2024-09-11 09:10:08.344706 cognd 1272258963 R rec ebf91008-5f9c-4d51-a12b-c2467192ea0c +2024-09-11 09:10:08.401522 2024-09-11 09:10:08.401528 cognd 1271905698 R rec 3c2417bf-acd0-4327-9b38-d3d24ccb508c +2024-09-11 09:10:08.45672 2024-09-11 09:10:08.456726 cognd 1271895765 R rec a1cc33b1-635a-416e-ab8f-0a131a7efd76 +2024-09-11 09:10:08.514025 2024-09-11 09:10:08.514031 cognd 127188898X R rec 7105252d-67ee-406b-80f5-4aa97b33165e +2024-09-11 09:10:08.582851 2024-09-11 09:10:08.582856 cognd 1271822776 R rec d10e321a-66da-4da8-970d-5351a4e13df6 +2024-09-11 09:10:08.641817 2024-09-11 09:10:08.641823 cognd 1271808897 R rec 3b067392-6e8f-49e0-b62e-d3002ffa456a +2024-09-11 09:10:08.698349 2024-09-11 09:10:08.698356 cognd 1271790165 R rec b633478f-c487-4cf3-b250-959d55b0deb5 +2024-09-11 09:10:08.753554 2024-09-11 09:10:08.75356 cognd 1271715899 R rec c9416631-ddbf-449d-a54e-8fcd54fcea7f +2024-09-11 09:10:08.816708 2024-09-11 09:10:08.816712 cognd 1271381702 R rec e4e78b49-6382-4f14-b107-e70f4b5daeed +2024-09-11 09:10:08.870216 2024-09-11 09:10:08.870222 cognd 1270556959 R rec e2c823f4-b6ad-4d23-96cd-bef4b6235447 +2024-09-11 09:10:08.929421 2024-09-11 09:10:08.929426 cognd 1268246964 R rec e3a174fa-6278-4314-9cc3-80d0fbe9539e +2024-09-11 09:10:08.991397 2024-09-11 09:10:08.991403 cognd 126750370X R rec b5c3901f-49c1-40ae-b975-4c91f1d44e98 +2024-09-11 09:10:09.047627 2024-09-11 09:10:09.047632 cognd 1267495847 R rec ad093365-38bc-475a-9a0d-32488e0240f3 +2024-09-11 09:10:09.130606 2024-09-11 09:10:09.130612 cognd 1267493216 R rec e256b06c-9456-4efe-b7fc-3d17176c085e +2024-09-11 09:10:09.187449 2024-09-11 09:10:09.187455 cognd 1266330917 R rec 976c0336-83d4-4590-b300-06844c431d30 +2024-09-11 09:10:09.249436 2024-09-11 09:10:09.249441 cognd 1265612927 R rec 1b53b949-e4b0-4d48-ab40-8758e2975f5b +2024-09-11 09:10:09.308109 2024-09-11 09:10:09.308114 cognd 1265218374 R rec 089c924d-e9a1-4e8b-ae24-e035cc32eb74 +2024-09-11 09:10:09.360352 2024-09-11 09:10:09.360357 cognd 1261254937 R rec 2dd86396-c544-4066-a326-54a282c1b93d +2024-09-11 09:10:09.411502 2024-09-11 09:10:09.411507 cognd 1259273660 R rec 0709ea5b-aa34-4616-9148-c189826fa747 +2024-09-11 09:10:09.462797 2024-09-11 09:10:09.462802 cognd 1257092030 R rec 62aa9497-7b95-487d-a4f7-717370a2d96d +2024-09-11 09:10:09.517905 2024-09-11 09:10:09.517911 cognd 1256073210 R rec 13ab6cd6-2453-4957-8d84-057918ee8008 +2024-09-11 09:10:09.575764 2024-09-11 09:10:09.57577 cognd 1256072893 R rec d001d1fe-3c7b-4877-8ee4-9e0722072c31 +2024-09-11 09:10:09.63252 2024-09-11 09:10:09.632525 cognd 1254291482 R rec c12e43d5-615f-43bd-8267-8aaac5ea8a03 +2024-09-11 09:10:09.689521 2024-09-11 09:10:09.689526 cognd 1251426239 R rec 04df69cb-f5a2-4539-819a-88daeaaaaaf6 +2024-09-11 09:10:09.751496 2024-09-11 09:10:09.751502 cognd 1248276604 R rec a2606792-794a-4d80-a548-dcb3284e4d48 +2024-09-11 09:10:09.805934 2024-09-11 09:10:09.80594 cognd 1245158511 R rec b0d67d92-4c99-4a71-8f9e-3574a939539e +2024-09-11 09:10:09.86019 2024-09-11 09:10:09.860195 cognd 1242560637 R rec 3df54b17-d9b9-4b4d-9447-cc872108336f +2024-09-11 09:10:09.92328 2024-09-11 09:10:09.923287 cognd 124129562X R rec 4fbc0d1c-f0d3-4524-ab3d-9c760ea608b0 +2024-09-11 09:10:09.983544 2024-09-11 09:10:09.983551 cognd 1239152302 R rec 97e3b96d-a9e3-48ba-9041-c65428e949d5 +2024-09-11 09:10:10.042379 2024-09-11 09:10:10.042386 cognd 1237145422 R rec d67d077b-508f-4f28-9ed4-b22c866b65ba +2024-09-11 09:10:10.101512 2024-09-11 09:10:10.101517 cognd 1232354244 R rec ebc8e630-bad0-4442-b4f0-ec731dc54bbe +2024-09-11 09:10:10.1659 2024-09-11 09:10:10.165907 cognd 1229013695 R rec df60f137-6da7-48d8-b75a-69cd0f821722 +2024-09-11 09:10:10.229621 2024-09-11 09:10:10.229626 cognd 1225001064 R rec 2ab54fda-9599-47c7-b89d-603f98892f6b +2024-09-11 09:10:10.285612 2024-09-11 09:10:10.285639 cognd 1217543678 R rec 9f1cdbec-c312-49ff-ad46-20297d90f430 +2024-09-11 09:10:10.34019 2024-09-11 09:10:10.340196 cognd 1213474337 R rec 5e9b97e8-b875-44e3-acb2-9563b1315c3b +2024-09-11 09:10:10.394144 2024-09-11 09:10:10.39415 cognd 1213276500 R rec 8b36da65-15af-42ff-9eac-c9c21ecaac76 +2024-09-11 09:10:10.452328 2024-09-11 09:10:10.452339 cognd 1211610659 R rec 8aa2b4a1-c14e-4d7b-98a3-cb04a1be6b43 +2024-09-11 09:10:10.505797 2024-09-11 09:10:10.505802 cognd 1206111984 R rec 262007ef-13f4-4b06-a6ba-2e77fddf324b +2024-09-11 09:10:10.561166 2024-09-11 09:10:10.561171 cognd 1205504184 R rec d967895c-af93-45a8-a691-5d495577508d +2024-09-11 09:10:10.613714 2024-09-11 09:10:10.613719 cognd 1204138915 R rec c0d0b07c-6671-4e4d-8096-3f483d0d714e +2024-09-11 09:10:10.672095 2024-09-11 09:10:10.6721 cognd 120246193X R rec 55e10bc4-ee37-4965-a03a-1f95638a2c68 +2024-09-11 09:10:10.734215 2024-09-11 09:10:10.73422 cognd 1201306663 R rec cadc95f9-9ca7-4875-84b9-75dd9e978d61 +2024-09-11 09:10:10.792939 2024-09-11 09:10:10.792945 cognd 1197813853 R rec 716da34d-8243-4d32-a002-7f4ee19641ab +2024-09-11 09:10:10.85063 2024-09-11 09:10:10.850637 cognd 1197084231 R rec c594d972-7e59-4000-81b0-e50101344dbc +2024-09-11 09:10:10.913686 2024-09-11 09:10:10.913692 cognd 1196153183 R rec 2edbde91-00b3-46ab-a243-be8f5371b0b9 +2024-09-11 09:10:10.975132 2024-09-11 09:10:10.975138 cognd 1195721455 R rec b72a2357-0874-4f34-85ce-a2449fcc9f87 +2024-09-11 09:10:11.031759 2024-09-11 09:10:11.031765 cognd 1195720424 R rec ba60a288-2a6c-476e-90a9-aabf90609b89 +2024-09-11 09:10:11.08861 2024-09-11 09:10:11.088622 cognd 1192998324 R rec 0a27769b-f213-4c1c-bab2-4e104d5e032b +2024-09-11 09:10:11.142306 2024-09-11 09:10:11.142312 cognd 119298918X R rec 595fee1f-2d08-4ba8-b0e9-fdcff8aa48bd +2024-09-11 09:10:11.205164 2024-09-11 09:10:11.205169 cognd 1191213307 R rec 4ed7d7fd-27e1-4855-8e45-165a4a71842b +2024-09-11 09:10:11.271455 2024-09-11 09:10:11.271461 cognd 1190744996 R rec 2b9816d6-1480-44be-a4c2-ed794af18811 +2024-09-11 09:10:11.328556 2024-09-11 09:10:11.328562 cognd 1189251949 R rec 30c1ef8e-4211-4895-983a-760d95a975c8 +2024-09-11 09:10:11.384431 2024-09-11 09:10:11.384439 cognd 1181270391 R rec 59925ceb-c121-4813-b6c9-9238f53cf54f +2024-09-11 09:10:11.440226 2024-09-11 09:10:11.440231 cognd 1177428253 R rec 5ad68220-0d5f-4d30-ad0f-0cba21d1f7c2 +2024-09-11 09:10:11.495583 2024-09-11 09:10:11.495589 cognd 1172931720 R rec a7dee2b5-6c4d-4154-a3ef-0f0d2b96f1b9 +2024-09-11 09:10:11.551205 2024-09-11 09:10:11.551212 cognd 1164102931 R rec 138c808f-3fe1-4a9f-8c01-b617c158a62c +2024-09-11 09:10:11.606296 2024-09-11 09:10:11.606301 cognd 1162074078 R rec 443a3d01-5e86-40c9-911f-762ee72bc01a +2024-09-11 09:10:11.663521 2024-09-11 09:10:11.663528 cognd 1162070234 R rec d7788567-1b92-4032-b3a7-ccfe3e35b4fd +2024-09-11 09:10:11.72945 2024-09-11 09:10:11.729456 cognd 1162069848 R rec 3931254a-ad74-421b-afdf-fd1923529093 +2024-09-11 09:10:11.7847 2024-09-11 09:10:11.784705 cognd 1162069279 R rec 46c216d4-5114-4d3b-81c0-c6db6667d844 +2024-09-11 09:10:11.841131 2024-09-11 09:10:11.841137 cognd 1161370048 R rec 84ef4ea4-1f4a-4609-a897-64324f9698de +2024-09-11 09:10:11.898853 2024-09-11 09:10:11.898859 cognd 1160916276 R rec abb5d62e-318e-4045-bc1b-813d30a6afb7 +2024-09-11 09:10:11.959137 2024-09-11 09:10:11.959142 cognd 1160040834 R rec 90fe9a2e-6131-4407-9979-95cd4e3273fa +2024-09-11 09:10:12.017461 2024-09-11 09:10:12.017466 cognd 1159933278 R rec 0eddc454-4a7b-4f7a-8ffe-c9906bdbc7da +2024-09-11 09:10:12.072345 2024-09-11 09:10:12.07235 cognd 1159933006 R rec 910502b5-fa61-4e1d-937f-b61a9645dfb0 +2024-09-11 09:10:12.126853 2024-09-11 09:10:12.126859 cognd 115992869X R rec ea9c8d41-769a-47f4-8714-ed4b1a4a5872 +2024-09-11 09:10:12.185434 2024-09-11 09:10:12.185439 cognd 1159920850 R rec bbb62549-6e0c-4c83-875f-38e5b3dae2ab +2024-09-11 09:10:12.235986 2024-09-11 09:10:12.235991 cognd 115992063X R rec 5bf8b049-984e-4498-9ac6-e56be690e7da +2024-09-11 09:10:12.291058 2024-09-11 09:10:12.291064 cognd 1159919828 R rec c0f27507-cc42-4218-890d-528151ea5207 +2024-09-11 09:10:12.345415 2024-09-11 09:10:12.34542 cognd 1159716978 R rec b2e005df-9cae-4eea-8d51-d74726731bab +2024-09-11 09:10:12.417367 2024-09-11 09:10:12.417372 cognd 1159673381 R rec 54843f71-a4cd-492e-a6ca-16560e7a07b8 +2024-09-11 09:10:12.475299 2024-09-11 09:10:12.475305 cognd 1159652686 R rec 23f662e8-77ae-483e-9167-ec45fc673e98 +2024-09-11 09:10:12.534509 2024-09-11 09:10:12.534514 cognd 1158529643 R rec 04aaf422-c539-403d-9dbb-6b79e6a0bf57 +2024-09-11 09:10:12.589423 2024-09-11 09:10:12.589428 cognd 1156463467 R rec 7b367ba2-fe3e-4893-93be-be46cc6306a6 +2024-09-11 09:10:12.643513 2024-09-11 09:10:12.643518 cognd 1153904039 R rec aefb74c7-cc47-4f4f-919a-ccc3294c2550 +2024-09-11 09:10:12.698627 2024-09-11 09:10:12.698632 cognd 1153848325 R rec c874010d-9fb0-482c-a3d4-410ae30c9abd +2024-09-11 09:10:12.751347 2024-09-11 09:10:12.751353 cognd 1153645505 R rec 6383aa11-8adc-4395-95cd-e7d1976701af +2024-09-11 09:10:12.808548 2024-09-11 09:10:12.808554 cognd 1148983325 R rec 35607629-1ef8-4235-a099-5d6d28fd08a5 +2024-09-11 09:10:12.864987 2024-09-11 09:10:12.864992 cognd 1148983317 R rec 0f9bb5d0-1ac0-4acd-a922-3112880a0bd4 +2024-09-11 09:10:12.922949 2024-09-11 09:10:12.922954 cognd 1148982329 R rec 8604d189-ddcc-45dc-858d-b8e2e191a6cd +2024-09-11 09:10:12.983072 2024-09-11 09:10:12.983077 cognd 1145164617 R rec 11d0b2b9-e07b-4f0d-b1a0-a653f1cb6374 +2024-09-11 09:10:13.047992 2024-09-11 09:10:13.047998 cognd 113724061X R rec 53f16920-45b5-418d-ad93-07c462fbf5da +2024-09-11 09:10:13.104745 2024-09-11 09:10:13.10475 cognd 1136198113 R rec 8981cb35-e086-4fea-88ba-26a2e53501d8 +2024-09-11 09:10:13.16075 2024-09-11 09:10:13.160755 cognd 1136044426 R rec c928b895-ece8-4a10-b9ae-ba2ba6b15293 +2024-09-11 09:10:13.218708 2024-09-11 09:10:13.218713 cognd 1133521657 R rec cadfa88f-6031-4679-aa10-c4c5a8456a7e +2024-09-11 09:10:13.276304 2024-09-11 09:10:13.27631 cognd 1132275067 R rec 06f8abcb-4330-49a9-993f-b4dcc0f583a7 +2024-09-11 09:10:13.330751 2024-09-11 09:10:13.330757 cognd 1132231477 R rec 1b81b81d-4361-45e6-9afd-827003105e46 +2024-09-11 09:10:13.394021 2024-09-11 09:10:13.394028 cognd 1131360478 R rec 2888de09-6d48-4971-8faf-794f047270c1 +2024-09-11 09:10:13.464425 2024-09-11 09:10:13.464431 cognd 1127087932 R rec 400a87f4-e77e-461e-b3b8-17686f61f238 +2024-09-11 09:10:13.520546 2024-09-11 09:10:13.520553 cognd 1126284823 R rec 8c8a8d87-e212-4340-917b-97e25964c9db +2024-09-11 09:10:13.578409 2024-09-11 09:10:13.578414 cognd 1124811885 R rec ab6b68d8-6a81-4a9a-85ad-e9c079f35fb2 +2024-09-11 09:10:13.636451 2024-09-11 09:10:13.636457 cognd 1124612114 R rec cc1540b3-353c-47d3-8ba0-b4604e817c5a +2024-09-11 09:10:13.688221 2024-09-11 09:10:13.688227 cognd 1120527775 R rec 84d5402c-fc49-4d36-92f8-3c762defa0db +2024-09-11 09:10:13.743347 2024-09-11 09:10:13.743353 cognd 1120526310 R rec b23cc6f7-6425-439e-b076-ddaf47613d6a +2024-09-11 09:10:13.798604 2024-09-11 09:10:13.798609 cognd 1119923417 R rec fe1046ac-982b-4f75-aa38-c710d961dd79 +2024-09-11 09:10:13.852477 2024-09-11 09:10:13.852484 cognd 1117228215 R rec 7615a3c6-cce4-4638-ad28-1910cb30ec35 +2024-09-11 09:10:13.910704 2024-09-11 09:10:13.910709 cognd 1114188395 R rec 5721b141-06d7-4342-9b48-017510580113 +2024-09-11 09:10:13.965541 2024-09-11 09:10:13.965547 cognd 1113031921 R rec 6c0ae0bf-ddde-4c10-ae05-a4c1f13d9a80 +2024-09-11 09:10:14.026434 2024-09-11 09:10:14.026439 cognd 1111593051 R rec 56af7d22-aaf7-4d82-b963-d1a8f047c60d +2024-09-11 09:10:14.080853 2024-09-11 09:10:14.080858 cognd 110642154X R rec 6dda7c26-7425-4407-aa76-0a29071186a4 +2024-09-11 09:10:14.133245 2024-09-11 09:10:14.133251 cognd 1104861453 R rec 1924173a-94c9-4689-a40c-edaf03da6aba +2024-09-11 09:10:14.186456 2024-09-11 09:10:14.186462 cognd 1103248596 R rec 3ca20c29-0675-460e-a17f-28dca3fc4d05 +2024-09-11 09:10:14.239406 2024-09-11 09:10:14.239411 cognd 1103240579 R rec b8afa936-0669-4b23-8a4c-a25e7608e012 +2024-09-11 09:10:14.301359 2024-09-11 09:10:14.301365 cognd 1101498900 R rec 4b7d1f59-df7f-4d81-ad9b-94a6dae8c23b +2024-09-11 09:10:14.362405 2024-09-11 09:10:14.36241 cognd 1085190633 R rec 96f0a4cc-7265-4e70-9f69-3f9da12da0d5 +2024-09-11 09:10:14.419799 2024-09-11 09:10:14.419805 cognd 108229814X R rec 970efb7a-ecdb-4f32-9fa1-f43a1624d5df +2024-09-11 09:10:14.475243 2024-09-11 09:10:14.475249 cognd 1077459335 R rec e2601afb-603d-40ac-852a-135cdc563a30 +2024-09-11 09:10:14.53881 2024-09-11 09:10:14.538816 cognd 1077386478 R rec 8ba3885e-50ba-45de-a3bb-2a752ee5b0cc +2024-09-11 09:10:14.597926 2024-09-11 09:10:14.597953 cognd 1077065876 R rec 8220c368-e6ad-4fa6-9009-26029baf9f90 +2024-09-11 09:10:14.662788 2024-09-11 09:10:14.662794 cognd 1069876534 R rec 06548d00-7ace-4dd1-b71e-a64c83c06dc4 +2024-09-11 09:10:14.721321 2024-09-11 09:10:14.721326 cognd 1069526703 R rec 689722f3-cd0d-47e6-93c9-96699d47c880 +2024-09-11 09:10:14.771226 2024-09-11 09:10:14.771231 cognd 1069453420 R rec d05154c0-3a3e-49d0-abed-83f20c605455 +2024-09-11 09:10:14.822703 2024-09-11 09:10:14.822709 cognd 1068825820 R rec 35563d2a-ac50-478e-8a55-d535926eac4d +2024-09-11 09:10:14.879998 2024-09-11 09:10:14.880003 cognd 1068606975 R rec 8dc11ab1-03db-4a31-ac1b-03c06b187b83 +2024-09-11 09:10:14.930992 2024-09-11 09:10:14.930997 cognd 1068048328 R rec 852d2a2c-ef27-4bc2-8c55-9179deea4c3b +2024-09-11 09:10:14.985745 2024-09-11 09:10:14.985752 cognd 1067974490 R rec 3db6a9a7-1352-4334-8b61-a94e0ec7288f +2024-09-11 09:10:15.046602 2024-09-11 09:10:15.046608 cognd 1066896534 R rec 508fda80-d7a9-469f-ab54-5778216ee6a4 +2024-09-11 09:10:15.10775 2024-09-11 09:10:15.107755 cognd 1065486421 R rec 637192f7-e50c-4400-b3eb-87590389794c +2024-09-11 09:10:15.162126 2024-09-11 09:10:15.162131 cognd 106307147X R rec ca491ab2-b1bc-45cf-91aa-840d35964452 +2024-09-11 09:10:15.22459 2024-09-11 09:10:15.224596 cognd 105858488X R rec b9a57c88-358e-448e-88a4-03691eace12e +2024-09-11 09:10:15.281997 2024-09-11 09:10:15.282002 cognd 1055013458 R rec 77cb34fb-0af1-4ad2-8568-b98c2afd5a58 +2024-09-11 09:10:15.335743 2024-09-11 09:10:15.335748 cognd 1054183104 R rec 66fda987-37d4-4570-87ed-2b58b80e0a9a +2024-09-11 09:10:15.389806 2024-09-11 09:10:15.38981 cognd 1054182779 R rec c87e302b-698e-4059-b57d-fe44a8f3de92 +2024-09-11 09:10:15.442582 2024-09-11 09:10:15.442587 cognd 1054182620 R rec 79acca89-53b2-47d9-abf9-e24b1e9cd034 +2024-09-11 09:10:15.497669 2024-09-11 09:10:15.497674 cognd 1051146089 R rec 0a5de1a1-50fe-4faf-8b50-beacc9e0c3be +2024-09-11 09:10:15.553831 2024-09-11 09:10:15.553836 cognd 1049270851 R rec 95e22fed-89e6-4038-a459-5f225218211e +2024-09-11 09:10:15.61996 2024-09-11 09:10:15.619966 cognd 1044279206 R rec 978f6317-a44c-4d26-8b41-f7c52b7a3c5f +2024-09-11 09:10:15.671706 2024-09-11 09:10:15.671711 cognd 1041611064 R rec d9d9c848-d109-46f1-b1d4-2062d496db2c +2024-09-11 09:10:15.75646 2024-09-11 09:10:15.756465 cognd 1036907430 R rec 9b6dc9a9-911c-4caa-a189-a6233a462266 +2024-09-11 09:10:15.824873 2024-09-11 09:10:15.824878 cognd 1036857263 R rec f2af46ca-a180-4457-b838-c2ee87fc3092 +2024-09-11 09:10:15.890388 2024-09-11 09:10:15.890394 cognd 1029263361 R rec 336664f2-b513-4a00-bb26-2951c36c6d7f +2024-09-11 09:10:15.942542 2024-09-11 09:10:15.942549 cognd 1019980389 R rec 46b202d4-bba3-4382-a5c4-67d4317074fb +2024-09-11 09:10:16.000725 2024-09-11 09:10:16.00073 cognd 1015187382 R rec 0da5521c-0835-480a-a878-90417298e2d0 +2024-09-11 09:10:16.059261 2024-09-11 09:10:16.059266 cognd 1014400783 R rec 6c660a44-6e65-472b-9a88-04c056444e0d +2024-09-11 09:10:16.119575 2024-09-11 09:10:16.119582 cognd 1013709640 R rec e5aaeb4b-47e5-42d9-977e-ccbdbe310c1a +2024-09-11 09:10:16.188123 2024-09-11 09:10:16.188128 cognd 1010242008 R rec c25ea7a4-014e-46b4-8d69-eea31afe7f8d +2024-09-11 09:10:16.279486 2024-09-11 09:10:16.279492 cognd 1009887017 R rec ee444251-9fdb-4638-ad45-9cc5f4710911 +2024-09-11 09:10:16.336809 2024-09-11 09:10:16.336814 cognd 1008996270 R rec c846c35b-58f8-462f-848b-713fea2580c8 +2024-09-11 09:10:16.38979 2024-09-11 09:10:16.389796 cognd 1008049115 R rec efc639cc-c537-44ba-9c10-ffe2a4a6e0d3 +2024-09-11 09:10:16.445737 2024-09-11 09:10:16.445742 cognd 100735531X R rec 9011b187-0ecd-44f0-8e32-dda26c5cd373 +2024-09-11 09:10:16.50095 2024-09-11 09:10:16.500956 cognd 1006894675 R rec ee7c3b35-bce3-4846-a321-4c6997fb663c +2024-09-11 09:10:16.553551 2024-09-11 09:10:16.553558 cognd 1002238951 R rec d2648d0e-431d-4010-8739-5f5a34aadf35 +2024-09-11 09:10:16.61068 2024-09-11 09:10:16.610686 cognd 1000642119 R rec 32485fb5-1948-419e-8a36-db5e441e6e82 +2024-09-11 09:10:16.671854 2024-09-11 09:10:16.671859 cognd 1000168972 R rec 7bf65dda-db32-44e4-a8d1-6e808b3ae422 +2024-09-11 09:10:16.731812 2024-09-11 09:10:16.731818 cognd 998776785 R rec 918d945a-58f3-472f-aaf3-3e6b98ebbaa5 +2024-09-11 09:10:16.78519 2024-09-11 09:10:16.785195 cognd 995780951 R rec 29026b17-159d-43bb-b89a-351c73044394 +2024-09-11 09:10:16.834076 2024-09-11 09:10:16.834081 cognd 994659857 R rec f434a713-456a-4e7a-8986-642e6eebdc42 +2024-09-11 09:10:16.884229 2024-09-11 09:10:16.884235 cognd 99405212X R rec 41b7acc8-0e87-42f2-ad1e-69b0392401d1 +2024-09-11 09:10:16.935906 2024-09-11 09:10:16.935911 cognd 99283600X R rec 98dc7e90-fc7a-4ec7-bdc3-92d221707321 +2024-09-11 09:10:16.988106 2024-09-11 09:10:16.988112 cognd 992757126 R rec 4128cbc9-d65c-4317-bb22-b445653a9b31 +2024-09-11 09:10:17.045772 2024-09-11 09:10:17.045777 cognd 992754909 R rec a31df0eb-b514-4a5f-a1b4-4e2027f8e137 +2024-09-11 09:10:17.10149 2024-09-11 09:10:17.101496 cognd 992754550 R rec 8a4f70ef-8fff-44c7-ba5b-71991f20fc5d +2024-09-11 09:10:17.153372 2024-09-11 09:10:17.153378 cognd 992754534 R rec 15ad6949-e3eb-430b-9272-c46d7fbb335f +2024-09-11 09:10:17.21611 2024-09-11 09:10:17.216116 cognd 992754305 R rec 4d7db909-2f69-437a-a22b-0eb8cddb58ce +2024-09-11 09:10:17.277178 2024-09-11 09:10:17.277183 cognd 992753694 R rec 3b55bf1d-a1b0-4238-a203-45a90b6c674a +2024-09-11 09:10:17.334649 2024-09-11 09:10:17.334654 cognd 99275366X R rec 1c43f803-2018-4e2d-96fa-068aad619ed3 +2024-09-11 09:10:17.389324 2024-09-11 09:10:17.38933 cognd 992752973 R rec 8721570f-78ac-4d4b-8187-a4f9814f9a46 +2024-09-11 09:10:17.444749 2024-09-11 09:10:17.444754 cognd 992751020 R rec aa0c82a0-1077-4a9e-a71a-afcceb5fda71 +2024-09-11 09:10:17.500358 2024-09-11 09:10:17.500364 cognd 99274881X R rec 11e5c023-db5b-4a08-8a27-906e5c801c24 +2024-09-11 09:10:17.555805 2024-09-11 09:10:17.55581 cognd 992747031 R rec 9820b77b-d7c2-4da7-b24b-1c5c51b03eb5 +2024-09-11 09:10:17.605585 2024-09-11 09:10:17.60559 cognd 992746779 R rec f8d29572-85ad-4748-a322-6b6387d62d01 +2024-09-11 09:10:17.663908 2024-09-11 09:10:17.663914 cognd 992746248 R rec 1bf91140-e11c-4907-bd5a-d51610266fb9 +2024-09-11 09:10:17.734705 2024-09-11 09:10:17.734711 cognd 992745969 R rec 1cb874d6-2934-4be6-a5f5-a1f0fae02b52 +2024-09-11 09:10:17.805599 2024-09-11 09:10:17.805604 cognd 992745292 R rec 23580e81-64fb-4592-9f86-19708c92dc2b +2024-09-11 09:10:17.862479 2024-09-11 09:10:17.862486 cognd 992745187 R rec 40704be9-9213-4a75-bce7-be91a799e030 +2024-09-11 09:10:17.92363 2024-09-11 09:10:17.923636 cognd 99274508X R rec cb3ae43a-2657-42eb-bf21-d51652d4cd15 +2024-09-11 09:10:17.984743 2024-09-11 09:10:17.98475 cognd 992744792 R rec b9be06de-7c15-4789-86e2-55ec52f1dec6 +2024-09-11 09:10:18.04513 2024-09-11 09:10:18.045136 cognd 992744091 R rec efab8712-1a91-49cc-be85-ae148619fe03 +2024-09-11 09:10:18.108418 2024-09-11 09:10:18.108424 cognd 992743605 R rec 98639542-b439-42a7-b5b9-b55d50c741ba +2024-09-11 09:10:18.170102 2024-09-11 09:10:18.170108 cognd 992743273 R rec 3746ba42-9154-440c-acd7-d8e7fcc9bd74 +2024-09-11 09:10:18.230321 2024-09-11 09:10:18.230325 cognd 992742889 R rec 7a7a79d0-a24b-4dee-adad-a4594d4a94ec +2024-09-11 09:10:18.291413 2024-09-11 09:10:18.291418 cognd 992742854 R rec d84d1b95-bb1b-4faf-a567-e27e7d886782 +2024-09-11 09:10:18.352987 2024-09-11 09:10:18.352991 cognd 992742722 R rec 222af061-5d64-4c0a-b683-bf5cf411984f +2024-09-11 09:10:18.409183 2024-09-11 09:10:18.409189 cognd 992742498 R rec 3123da4d-7b3f-4b27-86f5-42dca0efc1fa +2024-09-11 09:10:18.469891 2024-09-11 09:10:18.469896 cognd 992741696 R rec 1e6b5b79-10ba-418f-8916-39bd9c709a62 +2024-09-11 09:10:18.5271 2024-09-11 09:10:18.527105 cognd 992741491 R rec d4cab683-b2a4-40a9-8e3f-8e65ede21adc +2024-09-11 09:10:18.584974 2024-09-11 09:10:18.58498 cognd 992739659 R rec abbc0351-a879-4af3-99eb-f08384f73015 +2024-09-11 09:10:18.644439 2024-09-11 09:10:18.644445 cognd 992738601 R rec 50c5712a-2185-42b8-b702-411d4cd5b20d +2024-09-11 09:10:18.702728 2024-09-11 09:10:18.702734 cognd 992738172 R rec c0b47c1f-34a0-4940-bf4e-b1656cd75f5f +2024-09-11 09:10:18.76062 2024-09-11 09:10:18.760626 cognd 992738083 R rec 3c2dfc7b-0f21-41b0-8402-95971943862f +2024-09-11 09:10:18.814264 2024-09-11 09:10:18.814269 cognd 992738075 R rec facdc174-f947-4406-962a-fc7f7c747ca9 +2024-09-11 09:10:18.868573 2024-09-11 09:10:18.868579 cognd 992737834 R rec aa032971-2ef8-4b95-a0f1-467b9624c470 +2024-09-11 09:10:18.925797 2024-09-11 09:10:18.925803 cognd 992737826 R rec 32c4743e-f199-4808-a0d0-66c0013586fe +2024-09-11 09:10:19.004478 2024-09-11 09:10:19.004484 cognd 992737788 R rec 9b968849-e260-4fed-8e89-8a038067d3e9 +2024-09-11 09:10:19.069356 2024-09-11 09:10:19.069361 cognd 992737532 R rec 77e488ad-e752-4eaf-8018-4cbb43f118bf +2024-09-11 09:10:19.127745 2024-09-11 09:10:19.127751 cognd 992736269 R rec 2a58a734-f0e7-4853-8b2e-10b8721212ef +2024-09-11 09:10:19.193573 2024-09-11 09:10:19.193578 cognd 992736099 R rec b9a06d75-2e81-447f-9b65-32d3476fe371 +2024-09-11 09:10:19.250854 2024-09-11 09:10:19.250859 cognd 992735858 R rec 4b2f230e-7952-4834-89e7-85357fbd078b +2024-09-11 09:10:19.310007 2024-09-11 09:10:19.310013 cognd 99273584X R rec b77c972a-e1be-4af3-8457-bb505e1d7356 +2024-09-11 09:10:19.367515 2024-09-11 09:10:19.367521 cognd 992735823 R rec 3f78ebb6-9c3d-4f4e-8d3c-6cb92293b5ff +2024-09-11 09:10:19.425332 2024-09-11 09:10:19.425337 cognd 992735270 R rec 587ce8a5-62e7-42ee-a5f4-a730d8ff7982 +2024-09-11 09:10:19.481087 2024-09-11 09:10:19.481096 cognd 992735122 R rec 3a25b339-b324-4866-be97-b07c729c57fd +2024-09-11 09:10:19.544744 2024-09-11 09:10:19.544748 cognd 992733634 R rec 268c2f78-7768-47d0-bb3c-7bd69458638c +2024-09-11 09:10:19.617338 2024-09-11 09:10:19.617344 cognd 99273312X R rec dfab1726-b729-4c90-846b-c92731712105 +2024-09-11 09:10:19.676272 2024-09-11 09:10:19.676278 cognd 992732468 R rec 0582dc59-957c-49d6-8824-d109aa2ff04d +2024-09-11 09:10:19.738961 2024-09-11 09:10:19.738967 cognd 992731496 R rec 7a9d22c4-9d55-4b5e-a0c5-61111f38ff57 +2024-09-11 09:10:19.805711 2024-09-11 09:10:19.805718 cognd 99273147X R rec c0fde69e-873f-4df1-a8b0-4efd2079e9a0 +2024-09-11 09:10:19.865742 2024-09-11 09:10:19.865748 cognd 992731348 R rec a3875b05-21d3-45ac-b853-fdaa5f58dc14 +2024-09-11 09:10:19.922383 2024-09-11 09:10:19.922388 cognd 992730937 R rec bb43c78a-7722-4d1f-84ab-263d9ca07e6c +2024-09-11 09:10:19.979538 2024-09-11 09:10:19.979543 cognd 99273052X R rec c666e7c3-2b55-4b43-889b-531deb889599 +2024-09-11 09:10:20.039632 2024-09-11 09:10:20.039638 cognd 992096200 R rec 369fd1f1-58e0-4a62-afad-9e7ac26c97b4 +2024-09-11 09:10:20.096667 2024-09-11 09:10:20.096674 cognd 99018207X R rec d3585f51-62d2-4766-a48b-79eb66d39866 +2024-09-11 09:10:20.157373 2024-09-11 09:10:20.157379 cognd 987870920 R rec ad2ad7ad-e99e-4e57-b6c3-941bbcdbebb7 +2024-09-11 09:10:20.220103 2024-09-11 09:10:20.220109 cognd 987031708 R rec 14b5dd80-da36-4423-80bf-a60d648cd996 +2024-09-11 09:10:20.306145 2024-09-11 09:10:20.306151 cognd 985142758 R rec a288dab8-e9cb-4d9a-8f1a-8fe722316d29 +2024-09-11 09:10:20.372228 2024-09-11 09:10:20.372233 cognd 984855246 R rec fadf47bc-4259-48ec-9226-8f9fe8102238 +2024-09-11 09:10:20.434194 2024-09-11 09:10:20.434199 cognd 984430695 R rec 90769861-a862-4dc8-85d3-4aeb5a24a746 +2024-09-11 09:10:20.497658 2024-09-11 09:10:20.497664 cognd 981355196 R rec 4c70e4c6-01bf-4ba8-819f-899a9d432993 +2024-09-11 09:10:20.552456 2024-09-11 09:10:20.552462 cognd 981078206 R rec 9d1761a2-93b3-471a-b05b-cffff443b436 +2024-09-11 09:10:20.61351 2024-09-11 09:10:20.613516 cognd 980596920 R rec 5a038902-148f-461b-a41f-3f71974e1103 +2024-09-11 09:10:20.680404 2024-09-11 09:10:20.680431 cognd 980485371 R rec 2192351f-5199-4534-8593-57f79552d07d +2024-09-11 09:10:20.741434 2024-09-11 09:10:20.741441 cognd 979728509 R rec a10ef1b3-ef1d-4e75-9843-a87829479aa3 +2024-09-11 09:10:20.798006 2024-09-11 09:10:20.798011 cognd 979385261 R rec cd6cc6c6-188c-46f0-895d-ae0a7a8af65d +2024-09-11 09:10:20.85475 2024-09-11 09:10:20.854755 cognd 979340586 R rec bb1cc41e-ef81-47ad-9c57-e9e56c64e38f +2024-09-11 09:10:20.917861 2024-09-11 09:10:20.917869 cognd 978483669 R rec 6f2de8f3-dbc5-4db9-b0fa-111a09ce9284 +2024-09-11 09:10:20.974568 2024-09-11 09:10:20.974573 cognd 97549175X R rec ee856f9f-c0a6-43f1-adf9-ed062342cdbb +2024-09-11 09:10:21.037774 2024-09-11 09:10:21.03778 cognd 974924423 R rec 2a6719e5-a4ff-41c9-adbf-17a16194cb7b +2024-09-11 09:10:21.09378 2024-09-11 09:10:21.093784 cognd 974131733 R rec 9068d0c4-6fe3-4d3e-85b1-9463ed22f13a +2024-09-11 09:10:21.149894 2024-09-11 09:10:21.149899 cognd 973073764 R rec 4fcfe544-e248-425e-9f30-bb33ec8834b0 +2024-09-11 09:10:21.209212 2024-09-11 09:10:21.209218 cognd 973067144 R rec 3ab175a7-d176-435e-9be3-d6b311e5cfa6 +2024-09-11 09:10:21.278126 2024-09-11 09:10:21.278132 cognd 971890188 R rec 5e5e307a-723f-4d6b-abf7-d3cc6262d279 +2024-09-11 09:10:21.331761 2024-09-11 09:10:21.331767 cognd 971874549 R rec a4d57915-7180-4fdb-adec-caf6d336d653 +2024-09-11 09:10:21.386647 2024-09-11 09:10:21.386663 cognd 971750289 R rec 10f58bb7-5d87-4f1f-8eb7-351df2df63b4 +2024-09-11 09:10:21.439577 2024-09-11 09:10:21.439582 cognd 971566429 R rec 372e9059-c08a-413a-ad98-fa2945823366 +2024-09-11 09:10:21.496885 2024-09-11 09:10:21.496891 cognd 970782195 R rec f1e304bf-2750-4000-8bea-e89dd7548c67 +2024-09-11 09:10:21.555317 2024-09-11 09:10:21.555322 cognd 970665806 R rec c3f8e97b-a168-4500-a7ef-cf80917c4489 +2024-09-11 09:10:21.607974 2024-09-11 09:10:21.607979 cognd 970188919 R rec 3ab914bd-3a8c-4df3-adba-b4efff6ffdb3 +2024-09-11 09:10:21.664998 2024-09-11 09:10:21.665002 cognd 970142838 R rec 75fed8b2-d6e8-41aa-a3b9-05a7982b0c4a +2024-09-11 09:10:21.722992 2024-09-11 09:10:21.722997 cognd 969789726 R rec e665d33c-1072-4f13-9a9b-c0aa43330473 +2024-09-11 09:10:21.783254 2024-09-11 09:10:21.78326 cognd 968800459 R rec 93c961be-835f-4484-aa7d-9c01f458bdad +2024-09-11 09:10:21.838721 2024-09-11 09:10:21.838727 cognd 967930308 R rec 9be02e54-0990-4cd9-a02c-9127b9ae2223 +2024-09-11 09:10:21.896319 2024-09-11 09:10:21.896324 cognd 967681758 R rec 5e2b7e41-744c-4d35-a1f5-b91954fe787e +2024-09-11 09:10:21.955009 2024-09-11 09:10:21.955014 cognd 967612896 R rec 4005584b-1cd7-4800-91d4-3265a735ef37 +2024-09-11 09:10:22.012767 2024-09-11 09:10:22.012772 cognd 967286034 R rec abf6dc97-cdf1-4e6c-b4bc-2ffa5e2fe67d +2024-09-11 09:10:22.067084 2024-09-11 09:10:22.067089 cognd 966464141 R rec 9f4b4471-ce39-4c88-85b9-9226124c1c17 +2024-09-11 09:10:22.120406 2024-09-11 09:10:22.120412 cognd 966016297 R rec 4d0fd9ac-12d9-4b6f-a640-d025bca4fb3a +2024-09-11 09:10:22.208623 2024-09-11 09:10:22.208628 cognd 965886654 R rec d2e722e3-0af7-4712-94e2-455a66fbd531 +2024-09-11 09:10:22.335791 2024-09-11 09:10:22.335797 cognd 965195686 R rec 864cda2c-d94e-4558-90f6-5f0e544a8a62 +2024-09-11 09:10:22.39184 2024-09-11 09:10:22.391845 cognd 96441631X R rec 9935da42-5876-4843-907a-b822bfb6a6f3 +2024-09-11 09:10:22.443393 2024-09-11 09:10:22.4434 cognd 964240300 R rec 34668862-537a-469b-9f6d-333fe2b520b9 +2024-09-11 09:10:22.493185 2024-09-11 09:10:22.49319 cognd 964240254 R rec 06276431-8e5c-47d1-a5ec-fe31941d49f8 +2024-09-11 09:10:22.545832 2024-09-11 09:10:22.545837 cognd 964115166 R rec 61ecb64e-0636-460b-9cb7-74f376e5c2dc +2024-09-11 09:10:22.598736 2024-09-11 09:10:22.598741 cognd 963711636 R rec 0e55a1da-eea2-483f-95e1-eb4f63e80efa +2024-09-11 09:10:22.651329 2024-09-11 09:10:22.651333 cognd 963708872 R rec 58d32caf-68d0-432f-9e5a-1c8344bbcece +2024-09-11 09:10:22.704276 2024-09-11 09:10:22.704281 cognd 963708856 R rec a923b2d5-04ad-419a-a551-04aadb0a4d99 +2024-09-11 09:10:22.768721 2024-09-11 09:10:22.768727 cognd 963658166 R rec b4ee42f9-c7a6-4923-827b-3c0f500ea1ce +2024-09-11 09:10:22.831503 2024-09-11 09:10:22.831509 cognd 963553984 R rec 3fc5b694-0736-4efa-9a58-23f9144eaf08 +2024-09-11 09:10:22.89203 2024-09-11 09:10:22.892036 cognd 962075272 R rec 1e6757ba-6982-42bb-a1b9-f2a996355dd3 +2024-09-11 09:10:22.949585 2024-09-11 09:10:22.94959 cognd 962073881 R rec 29ca9881-20bd-4ecb-96dc-d89321818067 +2024-09-11 09:10:23.008532 2024-09-11 09:10:23.008537 cognd 961897546 R rec 02a6818e-1d5f-443f-a79d-2a79cae8ef06 +2024-09-11 09:10:23.065031 2024-09-11 09:10:23.065036 cognd 961236752 R rec 3d505dcc-cba9-46ef-b97e-1907cc5b31f7 +2024-09-11 09:10:23.123969 2024-09-11 09:10:23.123974 cognd 961192356 R rec 87f95e35-2880-4a39-9937-600069ce0e68 +2024-09-11 09:10:23.173547 2024-09-11 09:10:23.173553 cognd 961049510 R rec 85b9c01f-c9ed-462c-bdb8-2ef853f33190 +2024-09-11 09:10:23.224305 2024-09-11 09:10:23.224311 cognd 960895175 R rec b7fd7e87-a13d-42d6-adfb-ef4687063590 +2024-09-11 09:10:23.275931 2024-09-11 09:10:23.275936 cognd 96037650X R rec f9f39462-6afb-436f-b7a8-afe3bad03266 +2024-09-11 09:10:23.328576 2024-09-11 09:10:23.328582 cognd 960375988 R rec 33a879d7-96ed-4f0c-ba27-c3e03e2f6f37 +2024-09-11 09:10:23.421449 2024-09-11 09:10:23.421454 cognd 960175105 R rec 937ac8e0-3088-4f17-b029-7faec01a9aad +2024-09-11 09:10:23.48395 2024-09-11 09:10:23.483955 cognd 959959750 R rec e082a4a4-559e-4b54-be96-b7c60338ee95 +2024-09-11 09:10:23.53311 2024-09-11 09:10:23.533115 cognd 959794972 R rec 994893c4-1727-4843-bf00-f78455f83a29 +2024-09-11 09:10:23.584285 2024-09-11 09:10:23.584291 cognd 959794921 R rec 4f97a0af-e00e-4c7b-a5ee-e4213f6cce23 +2024-09-11 09:10:23.639497 2024-09-11 09:10:23.639503 cognd 959794859 R rec 209edc51-f578-4b53-a138-e9ff8385300d +2024-09-11 09:10:23.688242 2024-09-11 09:10:23.688247 cognd 959740864 R rec 4a7bfe50-773a-4c24-98a7-c7b878435ac1 +2024-09-11 09:10:23.737319 2024-09-11 09:10:23.737323 cognd 959716688 R rec 6ba1e7df-4594-464b-b25d-37cda1f431f7 +2024-09-11 09:10:23.787089 2024-09-11 09:10:23.787094 cognd 959148523 R rec ea3d6960-7776-4721-a620-7dd4fcad8e90 +2024-09-11 09:10:23.835536 2024-09-11 09:10:23.835541 cognd 959148485 R rec 5cd38f38-584d-4deb-b9ce-b71b34805615 +2024-09-11 09:10:23.88611 2024-09-11 09:10:23.886113 cognd 959148477 R rec 80651b4f-f8d2-498b-aa39-0c89e87edbed +2024-09-11 09:10:23.937646 2024-09-11 09:10:23.937651 cognd 958503001 R rec d0e2b305-20fb-4064-ac1b-93e6430ae6b5 +2024-09-11 09:10:23.9867 2024-09-11 09:10:23.986705 cognd 958467102 R rec b4e671a1-754b-427f-b67a-c928583f7082 +2024-09-11 09:10:24.038703 2024-09-11 09:10:24.038708 cognd 958224625 R rec 8cbcb050-4f1a-41a3-bcd7-477843ca5a22 +2024-09-11 09:10:24.087372 2024-09-11 09:10:24.087376 cognd 958195889 R rec d655fb17-ec41-4ee3-9568-b64ba5603f69 +2024-09-11 09:10:24.14199 2024-09-11 09:10:24.141995 cognd 958190453 R rec 8d3cd5c4-393e-4d5f-bebb-0c923432e7a5 +2024-09-11 09:10:24.200508 2024-09-11 09:10:24.200512 cognd 957705611 R rec 12f9cd19-588c-416e-a8f7-50b731ce4a1e +2024-09-11 09:10:24.251143 2024-09-11 09:10:24.251148 cognd 95765894X R rec a98e4562-9460-4827-a417-b5def82a0a22 +2024-09-11 09:10:24.302342 2024-09-11 09:10:24.302347 cognd 957331940 R rec d68e919a-3838-48a4-8576-e8b363e6e628 +2024-09-11 09:10:24.34948 2024-09-11 09:10:24.349486 cognd 957331673 R rec 10de8356-709c-422a-a0c6-e6d5d10a24e2 +2024-09-11 09:10:24.404338 2024-09-11 09:10:24.404343 cognd 957192517 R rec 8494fa25-b9de-40c8-80d2-3fd9e9aa1376 +2024-09-11 09:10:24.462434 2024-09-11 09:10:24.462439 cognd 956838049 R rec 066fdb51-e436-438b-8eb0-661bb14aa205 +2024-09-11 09:10:24.514094 2024-09-11 09:10:24.5141 cognd 956643221 R rec 754ea8f8-8561-49d5-a8a0-582be4c3135a +2024-09-11 09:10:24.570682 2024-09-11 09:10:24.570687 cognd 956635709 R rec fe3234c4-b6d5-4141-b8c1-637efaeab2e6 +2024-09-11 09:10:24.618823 2024-09-11 09:10:24.618828 cognd 956220495 R rec 4bb51654-2db3-44ac-902f-6c9b31fde690 +2024-09-11 09:10:24.671532 2024-09-11 09:10:24.671537 cognd 955244641 R rec 27a53313-49bd-4461-b5b8-d14c616bfbeb +2024-09-11 09:10:24.722261 2024-09-11 09:10:24.722266 cognd 95489748X R rec e137ca4e-6281-4e80-ade1-67eca0276ca4 +2024-09-11 09:10:24.772542 2024-09-11 09:10:24.772547 cognd 954782232 R rec e052fef8-b5a9-4e74-acb1-901fe810bc03 +2024-09-11 09:10:24.824838 2024-09-11 09:10:24.824843 cognd 95462839X R rec f4bf4b0a-3aca-4f17-8269-fd609f195e61 +2024-09-11 09:10:24.874865 2024-09-11 09:10:24.87487 cognd 954211774 R rec 04a1582e-6253-42cc-be6b-09704a946522 +2024-09-11 09:10:24.928585 2024-09-11 09:10:24.92859 cognd 954206738 R rec 44d9a14b-5053-430f-8366-1cad47cac6b7 +2024-09-11 09:10:24.979717 2024-09-11 09:10:24.979722 cognd 954203232 R rec 2e4d5601-da48-4e1f-babc-6c1a5627f051 +2024-09-11 09:10:25.033784 2024-09-11 09:10:25.033791 cognd 953679802 R rec 96be0d1e-3190-4c2b-9311-7c0dd5264574 +2024-09-11 09:10:25.096233 2024-09-11 09:10:25.096238 cognd 953550346 R rec e7de0e92-4b78-43f7-ab0f-70fe871a8c31 +2024-09-11 09:10:25.146844 2024-09-11 09:10:25.146849 cognd 953444201 R rec 13d45da4-c2ef-4514-a308-6fae875010e2 +2024-09-11 09:10:25.197844 2024-09-11 09:10:25.197849 cognd 953056082 R rec 20aba97c-140f-4461-9b07-97ce3c5ca24a +2024-09-11 09:10:25.295831 2024-09-11 09:10:25.295837 cognd 952896605 R rec e9b2fca0-f81a-441e-a441-6d690bcbc226 +2024-09-11 09:10:25.347726 2024-09-11 09:10:25.347731 cognd 952702053 R rec 1f3e8bda-3142-476f-a9a5-c7a15bb91b9b +2024-09-11 09:10:25.402417 2024-09-11 09:10:25.402422 cognd 952619636 R rec b3fd3fad-252d-48be-b706-e365b7af6625 +2024-09-11 09:10:25.4588 2024-09-11 09:10:25.458806 cognd 952440431 R rec ecafc8b7-24a8-4c85-8afe-1b56b50218b4 +2024-09-11 09:10:25.520686 2024-09-11 09:10:25.520691 cognd 952431602 R rec ecc44047-f331-4e9a-aa5b-4eb1f9ee0178 +2024-09-11 09:10:25.579634 2024-09-11 09:10:25.579639 cognd 951810189 R rec 110b9408-2ad8-4db4-ad79-d8072c565b61 +2024-09-11 09:10:25.6353 2024-09-11 09:10:25.635305 cognd 951618563 R rec 1dc1dfaa-7ac6-48e0-9789-a1de9b5a9d6e +2024-09-11 09:10:25.685942 2024-09-11 09:10:25.685947 cognd 951607804 R rec 6908ac70-4813-4d9b-a919-95d6117099bf +2024-09-11 09:10:25.74393 2024-09-11 09:10:25.743936 cognd 95159981X R rec b30e43aa-d1f5-4b5e-9a64-44c365e7fd13 +2024-09-11 09:10:25.803337 2024-09-11 09:10:25.803342 cognd 951549650 R rec 0fee17ab-6f2e-43e4-a5c2-2b7994cdfee5 +2024-09-11 09:10:25.879686 2024-09-11 09:10:25.879692 cognd 95153047X R rec 2069c7f2-0d20-400f-984d-1ab6679d9adc +2024-09-11 09:10:25.929448 2024-09-11 09:10:25.929454 cognd 95152092X R rec 2ec67127-ccbc-4eb4-ae4c-3706e5a9e8a4 +2024-09-11 09:10:25.983521 2024-09-11 09:10:25.983527 cognd 950857157 R rec 6ddb707a-da00-47c2-bb96-67c6bc609fda +2024-09-11 09:10:26.037576 2024-09-11 09:10:26.037581 cognd 950693413 R rec a03ae589-4eb7-4296-acfd-3076ea0ff1d4 +2024-09-11 09:10:26.08693 2024-09-11 09:10:26.086936 cognd 950693375 R rec 9565a251-df0b-447e-b9c3-ebf8b150dffc +2024-09-11 09:10:26.144926 2024-09-11 09:10:26.144932 cognd 950692433 R rec 2ae60d3a-83c1-48ee-b44f-dcae8e922a49 +2024-09-11 09:10:26.202168 2024-09-11 09:10:26.202177 cognd 950632481 R rec 09fc8184-387a-4be2-ac9c-fbf6777d1347 +2024-09-11 09:10:26.261367 2024-09-11 09:10:26.261372 cognd 950276014 R rec 27d1468e-733c-427d-a476-9fbe2157f16c +2024-09-11 09:10:26.32253 2024-09-11 09:10:26.322536 cognd 949894028 R rec ed0bd715-fae3-452d-8829-d54fb505f160 +2024-09-11 09:10:26.392494 2024-09-11 09:10:26.3925 cognd 949435015 R rec f490d8e9-4b59-45bb-8c36-a4e3e8f7abbc +2024-09-11 09:10:26.451374 2024-09-11 09:10:26.451381 cognd 948897244 R rec 9a15afc9-fdc8-4b99-8153-bcc176429b4a +2024-09-11 09:10:26.509769 2024-09-11 09:10:26.509775 cognd 948567341 R rec 28536612-2d76-480e-bd89-1d133264a523 +2024-09-11 09:10:26.55988 2024-09-11 09:10:26.559885 cognd 948567317 R rec 3d103dba-b4a1-4e99-b5f4-4f8a67fece11 +2024-09-11 09:10:26.605656 2024-09-11 09:10:26.605661 cognd 948565977 R rec c009977a-1373-41db-858d-70792e99078e +2024-09-11 09:10:26.654644 2024-09-11 09:10:26.654649 cognd 948520116 R rec eb4cd868-de16-4878-97af-63b18229a9c7 +2024-09-11 09:10:26.702047 2024-09-11 09:10:26.702051 cognd 948474688 R rec 1a619029-5f78-4326-a007-857e6749c2b4 +2024-09-11 09:10:26.756281 2024-09-11 09:10:26.756286 cognd 947762868 R rec 7d36dfc8-90a2-4010-b62a-f8cf70116518 +2024-09-11 09:10:26.814163 2024-09-11 09:10:26.81417 cognd 947572090 R rec 2dec603d-12a2-4ac8-a4a1-e9f8fb04cef5 +2024-09-11 09:10:26.865755 2024-09-11 09:10:26.865761 cognd 947210601 R rec eaa5fb6f-1d76-49e7-9498-2b1ef578487a +2024-09-11 09:10:26.921936 2024-09-11 09:10:26.921941 cognd 947024387 R rec 43d8919a-2f1b-4233-9747-a695f5746594 +2024-09-11 09:10:26.97471 2024-09-11 09:10:26.974715 cognd 946840318 R rec 57a7d975-84ac-47dc-a69b-9c65bbaacfe7 +2024-09-11 09:10:27.031976 2024-09-11 09:10:27.031981 cognd 94683203X R rec 414f7429-886a-4592-97fe-ca6f2424b12f +2024-09-11 09:10:27.086106 2024-09-11 09:10:27.086111 cognd 946538506 R rec 38ada44f-646f-485f-9194-a518cefb7a3c +2024-09-11 09:10:27.136688 2024-09-11 09:10:27.136694 cognd 946529981 R rec 3843d10e-e0b5-46cb-b1be-c06233c6ecf1 +2024-09-11 09:10:27.189212 2024-09-11 09:10:27.189218 cognd 946267340 R rec 099dda5e-cbc1-4ff7-a972-134517a0bb86 +2024-09-11 09:10:27.239438 2024-09-11 09:10:27.239443 cognd 945831749 R rec 5edb5b9b-2b20-437e-b318-1e933ad88b77 +2024-09-11 09:10:27.287996 2024-09-11 09:10:27.288001 cognd 94574577X R rec 157f61b7-d972-4517-b4ec-b3ed42525521 +2024-09-11 09:10:27.345979 2024-09-11 09:10:27.345984 cognd 945675267 R rec 9bcc950c-e5e7-4e09-83cc-97a6520dc8bb +2024-09-11 09:10:27.396038 2024-09-11 09:10:27.396043 cognd 945372604 R rec 995dc8cd-b854-4576-b84f-1400aab589ad +2024-09-11 09:10:27.447333 2024-09-11 09:10:27.44734 cognd 945325150 R rec 656b8e9e-e11d-4bc1-bf75-e0112acd9048 +2024-09-11 09:10:27.506476 2024-09-11 09:10:27.506481 cognd 944352820 R rec 02e1a7b5-a683-4ae3-b52d-e25f8fdfe400 +2024-09-11 09:10:27.559602 2024-09-11 09:10:27.559608 cognd 94392961X R rec e74d0b8d-d608-41ac-862c-25d0b6006800 +2024-09-11 09:10:27.607536 2024-09-11 09:10:27.607541 cognd 94392684X R rec b671f26c-6c6b-48b0-a2af-59372b77d118 +2024-09-11 09:10:27.658956 2024-09-11 09:10:27.658962 cognd 943618118 R rec a0df5048-e7a4-47a8-8126-5f907aa435d2 +2024-09-11 09:10:27.713108 2024-09-11 09:10:27.713114 cognd 943592267 R rec 08a19b5c-29fa-4078-9ea0-44e1391a0450 +2024-09-11 09:10:27.763184 2024-09-11 09:10:27.76319 cognd 943496799 R rec 8adce908-e674-4190-b1f9-3ccfd26d1f76 +2024-09-11 09:10:27.823003 2024-09-11 09:10:27.823009 cognd 943138604 R rec adae77f3-9387-46f9-a7c4-d13ff235eca0 +2024-09-11 09:10:27.878923 2024-09-11 09:10:27.878928 cognd 942370295 R rec 63e65420-068c-4a94-80ab-802c9d47c7cf +2024-09-11 09:10:27.944787 2024-09-11 09:10:27.944792 cognd 942203283 R rec f843df32-3650-4f96-b173-bed6629d0ac5 +2024-09-11 09:10:27.996114 2024-09-11 09:10:27.996119 cognd 94206285X R rec 7fdb0b18-0edf-4c7c-8bfd-ab0fdbb82e8b +2024-09-11 09:10:28.052454 2024-09-11 09:10:28.052459 cognd 941781437 R rec 089220ea-3050-4d36-ab4a-0e7ccd877476 +2024-09-11 09:10:28.102113 2024-09-11 09:10:28.102117 cognd 940910004 R rec b43ff27e-a7a3-4c80-9c43-c4b9bb7d8999 +2024-09-11 09:10:28.15763 2024-09-11 09:10:28.157635 cognd 940842440 R rec 88c7e6a2-4739-41e1-b8d0-b18afaeef66f +2024-09-11 09:10:28.211046 2024-09-11 09:10:28.211051 cognd 94063855X R rec ba4cd9ea-ae31-4a78-8a64-6477f13028c9 +2024-09-11 09:10:28.261983 2024-09-11 09:10:28.261988 cognd 940594919 R rec 8dd8c7eb-18d3-45ad-8e23-bdb98ec57dc2 +2024-09-11 09:10:28.310148 2024-09-11 09:10:28.310154 cognd 199289190 R rec 41c460fc-2871-4353-ac75-c34325224907 +2024-09-11 09:10:28.363574 2024-09-11 09:10:28.363579 cognd 199281823 R rec 285a6474-2d17-42c0-ab8d-7a607d13af24 +2024-09-11 09:10:28.41273 2024-09-11 09:10:28.412735 cognd 199193835 R rec 3849684b-36f3-435a-9017-cb4244fa2958 +2024-09-11 09:10:28.461503 2024-09-11 09:10:28.461508 cognd 19917606X R rec 5811574c-e1f0-45bf-9a47-92251d03b13d +2024-09-11 09:10:28.509526 2024-09-11 09:10:28.509531 cognd 199170711 R rec 9dd96151-fa53-4820-b4b9-1e316ab6067d +2024-09-11 09:10:28.568772 2024-09-11 09:10:28.568776 cognd 19915046X R rec a1693a2d-8cc2-4720-9b54-4e43796f43cf +2024-09-11 09:10:28.634168 2024-09-11 09:10:28.634173 cognd 199129215 R rec a097454c-8d1a-4281-b1e9-fe720d6e3ce5 +2024-09-11 09:10:28.697741 2024-09-11 09:10:28.697746 cognd 130791008 R rec 2e402a0a-7712-46d6-a4f3-99ffea4c061f +2024-09-11 09:10:28.748482 2024-09-11 09:10:28.748487 cognd 130750085 R rec 04505918-d727-44d8-822b-91d61fd56559 +2024-09-11 09:10:28.797461 2024-09-11 09:10:28.797466 cognd 130741094 R rec b137a834-eed4-4e89-8e49-ffdd6d9b3dfa +2024-09-11 09:10:28.845874 2024-09-11 09:10:28.845879 cognd 130724572 R rec bf749b60-6f7c-4c6f-8897-0c6de0b5135c +2024-09-11 09:10:28.896271 2024-09-11 09:10:28.896276 cognd 130715387 R rec 873cef36-3ce7-42c1-91d3-6e7b3062d31f +2024-09-11 09:10:28.946125 2024-09-11 09:10:28.946131 cognd 130714941 R rec 78bdf5d0-7608-47b9-b189-c717c3d437ab +2024-09-11 09:10:28.991691 2024-09-11 09:10:28.991697 cognd 130708291 R rec febcd60d-f32f-4163-94c9-03c8a90eafca +2024-09-11 09:10:29.037528 2024-09-11 09:10:29.037533 cognd 130703907 R rec 051cdee9-b33a-478f-a968-1d56d135c25e +2024-09-11 09:10:29.091429 2024-09-11 09:10:29.091434 cognd 130702722 R rec 57a74f04-b9c2-4123-abf1-7f58154e399b +2024-09-11 09:10:29.145908 2024-09-11 09:10:29.145913 cognd 13069374X R rec a68e41a4-0b67-465e-a094-2ae0f9e05549 +2024-09-11 09:10:29.197358 2024-09-11 09:10:29.197363 cognd 130692476 R rec 834e72c0-771a-4c13-93e3-f8c22a8bcdee +2024-09-11 09:10:29.24699 2024-09-11 09:10:29.246996 cognd 04328762X R rec e5a78ba5-ca87-40da-b7ba-7b3dcada06f7 +2024-09-11 09:10:29.293463 2024-09-11 09:10:29.293468 cognd 043282695 R rec 3c51ab83-f000-483f-bd33-7dd779f0fad1 +2024-09-11 09:10:29.34872 2024-09-11 09:10:29.348726 cognd 04328213X R rec 0c293602-00f6-41a7-a77a-78da9318ebde +2024-09-11 09:10:29.412992 2024-09-11 09:10:29.412997 cognd 043274994 R rec 88ce1b1e-3922-4837-a7e3-99bacc2fc01d +2024-09-11 09:10:29.472086 2024-09-11 09:10:29.472096 cognd 043252044 R rec 6008e0eb-f9ee-4024-9bb9-996d327a5e5d +2024-09-11 09:10:29.55126 2024-09-11 09:10:29.55127 cognd 043203469 R rec 51143c5e-8ed6-4434-83b8-17cdb37fe1d7 +2024-09-11 09:10:29.619376 2024-09-11 09:10:29.619386 cognd 043197574 R rec 36cf065a-f3c9-4cca-928d-372615600b32 +2024-09-11 09:10:29.687307 2024-09-11 09:10:29.687312 cognd 043195733 R rec 33276edf-3dfc-4622-ac2b-447d3b9970db +2024-09-11 09:10:29.734231 2024-09-11 09:10:29.734237 cognd 04313291X R rec aef507e7-61f5-4910-a34a-93a4348bfc5a +2024-09-11 09:10:29.814651 2024-09-11 09:10:29.814668 cognd 043128629 R rec 2a1995ff-124b-4c97-ac31-0fb5e4a2abe3 +2024-09-11 09:10:29.889847 2024-09-11 09:10:29.889854 cognd 043062008 R rec b0295e41-dc31-46cf-8977-edf8b84aa8e1 +2024-09-11 09:10:29.954499 2024-09-11 09:10:29.954511 cognd 04304929X R rec d7ad7ce4-c2cf-489b-ba04-46eab924eb82 +2024-09-11 09:10:30.020604 2024-09-11 09:10:30.020619 cognd 043035167 R rec 64b0db62-0032-4473-a82e-b8d81e182985 +2024-09-11 09:10:30.084104 2024-09-11 09:10:30.084114 cognd 043022790 R rec f5957ccb-93ce-4081-8ce5-ca3828152eba +2024-09-11 09:10:30.155139 2024-09-11 09:10:30.15515 cognd 043004164 R rec 9bf57f42-367d-485d-adb9-995cbe8419ee +2024-09-11 09:10:30.217341 2024-09-11 09:10:30.217352 cognd 043003583 R rec cf91e5f1-d36f-45cd-95fe-f63faf6251b5 +2024-09-11 09:10:30.291645 2024-09-11 09:10:30.291656 cognd 043001173 R rec 080f0287-7dc8-4f4e-bb7e-4242b13c7749 +2024-09-11 09:10:30.36778 2024-09-11 09:10:30.36779 cognd 04300024X R rec 249d640a-0f2c-49b8-9098-78017e291319 +2024-09-11 09:10:30.439509 2024-09-11 09:10:30.439519 cognd 043000150 R rec 6249ac61-6501-4dd6-bfc1-b4c4f612a2d7 +2024-09-11 09:10:30.50133 2024-09-11 09:10:30.501342 cognd 042982553 R rec beb6aaf6-331a-48d6-82d7-a55ce4aed367 +2024-09-11 09:10:30.55927 2024-09-11 09:10:30.55928 cognd 042981794 R rec e6ae96dc-33c6-4df3-aa22-52aa845b355c +2024-09-11 09:10:30.62134 2024-09-11 09:10:30.621345 cognd 042940664 R rec b6963bd1-b39d-4f59-a2db-9c268c64e622 +2024-09-11 09:10:30.687686 2024-09-11 09:10:30.687691 cognd 042914582 R rec a787ba7a-12f1-4d1a-b818-be08033af5a9 +2024-09-11 09:10:30.739962 2024-09-11 09:10:30.739973 cognd 042913748 R rec 88a77be1-90b5-400f-bb8b-40ed447f1d07 +2024-09-11 09:10:30.802553 2024-09-11 09:10:30.802558 cognd 04291096X R rec 7037c1db-20a4-4b43-9152-0f23867c6151 +2024-09-11 09:10:30.880576 2024-09-11 09:10:30.880587 cognd 042910870 R rec fc611394-dcf8-4c5f-a8a2-0d41bb81ef8e +2024-09-11 09:10:30.968954 2024-09-11 09:10:30.968959 cognd 042892562 R rec ba36bf17-563e-4bdc-847b-48327069b0db +2024-09-11 09:10:31.034132 2024-09-11 09:10:31.034137 cognd 042870526 R rec 1b562fe6-3cbb-43ea-ad4d-6418bef6af9e +2024-09-11 09:10:31.091316 2024-09-11 09:10:31.091327 cognd 042863627 R rec c9c93439-8661-4e01-a660-081e081281dd +2024-09-11 09:10:31.155594 2024-09-11 09:10:31.155604 cognd 042848792 R rec f0821351-ff03-4635-8594-d77f63d91791 +2024-09-11 09:10:31.213866 2024-09-11 09:10:31.213875 cognd 042841259 R rec 122e80fd-b425-487d-ae20-51e1425d9a75 +2024-09-11 09:10:31.274995 2024-09-11 09:10:31.275012 cognd 042819458 R rec 96a09468-900f-4bb2-b831-39e8476178ac +2024-09-11 09:10:31.3715 2024-09-11 09:10:31.371506 cognd 042815479 R rec 819c129c-40c7-485a-ba03-f12ed9ffe18c +2024-09-11 09:10:31.44364 2024-09-11 09:10:31.443651 cognd 042777089 R rec d0f8b73b-7171-4100-9aa8-789158e60d7d +2024-09-11 09:10:31.511911 2024-09-11 09:10:31.511922 cognd 042765315 R rec 46c66036-ad56-423f-a18e-0f2d7a9442e6 +2024-09-11 09:10:31.587104 2024-09-11 09:10:31.587114 cognd 042731887 R rec 2b042479-5907-4a91-a7c5-4b73e12d3e93 +2024-09-11 09:10:31.659674 2024-09-11 09:10:31.659686 cognd 042731437 R rec 14bf1503-22ff-47c8-bf51-b4239d9b1cd9 +2024-09-11 09:10:31.716277 2024-09-11 09:10:31.716282 cognd 042720133 R rec 9b2fa172-d4e6-4eb0-a235-4310ba983157 +2024-09-11 09:10:31.780039 2024-09-11 09:10:31.780099 cognd 04266702X R rec e911b3e3-417c-4014-b81b-956b06dc9d61 +2024-09-11 09:10:31.85198 2024-09-11 09:10:31.851985 cognd 042653304 R rec 2450ef5f-4f68-47c4-ae0f-062a0c7d27cb +2024-09-11 09:10:31.927171 2024-09-11 09:10:31.927181 cognd 042645212 R rec ec07de1c-a339-4510-80f5-d74631d352b2 +2024-09-11 09:10:32.006212 2024-09-11 09:10:32.006217 cognd 042627222 R rec 4d6f9ce7-5caf-45f1-837b-44a6653cda40 +2024-09-11 09:10:32.065304 2024-09-11 09:10:32.065316 cognd 042586208 R rec 4d07b7f7-6f1d-426c-8d3a-b7d8de4bb053 +2024-09-11 09:10:32.129122 2024-09-11 09:10:32.129138 cognd 042578205 R rec a3a4a4f9-b6bd-49f3-90d9-f60a99d7e7c8 +2024-09-11 09:10:32.230873 2024-09-11 09:10:32.230889 cognd 042573254 R rec 5d4862f2-faf6-4246-9681-065f1a40408e +2024-09-11 09:10:32.312398 2024-09-11 09:10:32.31241 cognd 042536367 R rec 2d49bc95-6389-4589-853a-431bc095f0e7 +2024-09-11 09:10:32.381087 2024-09-11 09:10:32.381097 cognd 042496675 R rec 1183fdac-036d-42df-94ee-1d21c53d7b8e +2024-09-11 09:10:32.453641 2024-09-11 09:10:32.453652 cognd 042486386 R rec a8f5235c-5062-41aa-82df-5cdc77d03c2a +2024-09-11 09:10:32.53118 2024-09-11 09:10:32.531196 cognd 042447690 R rec 73e43a88-1ff3-4da9-9737-063488367e78 +2024-09-11 09:10:32.607613 2024-09-11 09:10:32.607619 cognd 042438799 R rec 34983064-8a9c-41d1-8b0f-2448bfa2dbbe +2024-09-11 09:10:32.679048 2024-09-11 09:10:32.679053 cognd 042425875 R rec d63e11a9-4b4e-4712-a636-d6a6d4b530c6 +2024-09-11 09:10:32.737926 2024-09-11 09:10:32.73793 cognd 042422825 R rec 1cb4a13a-ddc4-4253-a109-be5e660ba47e +2024-09-11 09:10:32.802654 2024-09-11 09:10:32.80266 cognd 042380480 R rec d24bbffa-5705-444d-a0f5-b037249bb464 +2024-09-11 09:10:32.861062 2024-09-11 09:10:32.861068 cognd 042374480 R rec 74222ff9-2fa4-40ab-910e-3da12e43a9ef +2024-09-11 09:10:32.921445 2024-09-11 09:10:32.92145 cognd 042325900 R rec ee9d40e2-21a7-42b8-9303-b61d2ffad305 +2024-09-11 09:10:32.972835 2024-09-11 09:10:32.97284 cognd 042325897 R rec 2ddf70c3-e64f-4083-83ea-331eaa2d828d +2024-09-11 09:10:33.026902 2024-09-11 09:10:33.026908 cognd 042313414 R rec 632b67e3-1bc7-4b73-967f-3ba2ab000b9e +2024-09-11 09:10:33.080262 2024-09-11 09:10:33.080268 cognd 042277558 R rec 3990094d-228b-4e33-b62c-84ae8c9b736c +2024-09-11 09:10:33.131574 2024-09-11 09:10:33.131578 cognd 042266289 R rec a362eab4-5598-4dde-8881-bbd139d3ec14 +2024-09-11 09:10:33.189209 2024-09-11 09:10:33.189214 cognd 042241839 R rec 772b2c57-36c2-409b-85a1-da8268ed90bd +2024-09-11 09:10:33.247716 2024-09-11 09:10:33.247722 cognd 042230284 R rec ac482b65-5a19-4c99-97ba-94d210e601ba +2024-09-11 09:10:33.309428 2024-09-11 09:10:33.309434 cognd 042213010 R rec 46c9163d-8cea-4155-a1f9-ebd96fc27014 +2024-09-11 09:10:33.372622 2024-09-11 09:10:33.372626 cognd 042183154 R rec 8f83c75f-00b8-486a-90a5-bd10646bc5d8 +2024-09-11 09:10:33.444749 2024-09-11 09:10:33.444754 cognd 04216818X R rec a626d4ec-e75b-421d-978c-9791f317825e +2024-09-11 09:10:33.505661 2024-09-11 09:10:33.505666 cognd 042161258 R rec ed98a86c-3c69-4b57-9ccc-0f527125ad73 +2024-09-11 09:10:33.563512 2024-09-11 09:10:33.563517 cognd 042147670 R rec a3915395-5e17-4442-a8ce-b2d88e474649 +2024-09-11 09:10:33.616725 2024-09-11 09:10:33.61673 cognd 042142237 R rec bec67576-16b6-467e-8f54-08d0123ca91a +2024-09-11 09:10:33.667625 2024-09-11 09:10:33.66763 cognd 042137519 R rec 55398f59-9797-406c-b094-ede6be3df286 +2024-09-11 09:10:33.7185 2024-09-11 09:10:33.718505 cognd 042124093 R rec 25f0b082-fe3f-4f7c-992a-88f0a8e3df9a +2024-09-11 09:10:33.769201 2024-09-11 09:10:33.769207 cognd 042123909 R rec c16a0ced-4cf0-4e74-aa67-35df262479c3 +2024-09-11 09:10:33.817097 2024-09-11 09:10:33.817102 cognd 04211277X R rec f0a6e492-44c1-4ccc-bb5f-38490501ff29 +2024-09-11 09:10:33.870766 2024-09-11 09:10:33.870772 cognd 042104378 R rec 92f083dc-34c2-499a-903e-02ee436d884b +2024-09-11 09:10:33.932774 2024-09-11 09:10:33.932779 cognd 042100917 R rec b5bca15f-9d33-4fe1-87ab-2e8a60e6df9d +2024-09-11 09:10:33.983086 2024-09-11 09:10:33.983091 cognd 042100445 R rec 889b1126-4984-4a75-a9ab-3004c7eed9f9 +2024-09-11 09:10:34.036557 2024-09-11 09:10:34.036562 cognd 042081033 R rec c3f9e2ba-f445-4dc4-8420-717fc2960c46 +2024-09-11 09:10:34.090859 2024-09-11 09:10:34.090865 cognd 042074150 R rec a8e5ac59-af49-4980-97ea-b20104d94caf +2024-09-11 09:10:34.144568 2024-09-11 09:10:34.144574 cognd 042044529 R rec e9c06406-d062-42a1-9413-cb9643ba7707 +2024-09-11 09:10:34.203325 2024-09-11 09:10:34.203331 cognd 042033276 R rec e04aeb35-e459-4b14-a1c4-48a38d4c6fc3 +2024-09-11 09:10:34.26609 2024-09-11 09:10:34.266096 cognd 042022622 R rec e391a5ac-02c6-41b5-9990-3159c3eee391 +2024-09-11 09:10:34.323275 2024-09-11 09:10:34.32328 cognd 042020646 R rec 6ffefb20-ec06-4e27-9a0a-9a5b003f9c28 +2024-09-11 09:10:34.380329 2024-09-11 09:10:34.380335 cognd 041969596 R rec 668cbcd5-0595-46ef-861b-315c2380388f +2024-09-11 09:10:34.440201 2024-09-11 09:10:34.440207 cognd 041966716 R rec 0c7548a3-a187-493a-8888-04827bcb19ed +2024-09-11 09:10:34.508759 2024-09-11 09:10:34.508765 cognd 041962923 R rec 4e8c61f2-0658-4346-a4c7-4213ee0237a0 +2024-09-11 09:10:34.564336 2024-09-11 09:10:34.564341 cognd 041961080 R rec 0a65465d-e9bc-4d77-ad95-e74f73e0cbaa +2024-09-11 09:10:34.612885 2024-09-11 09:10:34.612893 cognd 041944240 R rec e3778b98-ab97-4567-b6ab-7a84ffede056 +2024-09-11 09:10:34.664422 2024-09-11 09:10:34.664427 cognd 041935659 R rec 3e7e01ef-f22b-4ffe-9418-788243f8f80f +2024-09-11 09:10:34.713724 2024-09-11 09:10:34.713729 cognd 04193458X R rec 45972629-65cb-4db1-92a8-407308ea40fd +2024-09-11 09:10:34.762937 2024-09-11 09:10:34.762941 cognd 041920287 R rec 71967e19-6fc9-44ef-9eff-e971c593d2ec +2024-09-11 09:10:34.812395 2024-09-11 09:10:34.8124 cognd 041920279 R rec 650ee23c-ab87-43b7-8e3c-9eb57cdf561b +2024-09-11 09:10:34.858879 2024-09-11 09:10:34.858885 cognd 041917413 R rec ac4e7d39-6b8d-49ee-87d4-f0aca43e5446 +2024-09-11 09:10:34.904087 2024-09-11 09:10:34.904092 cognd 041913574 R rec 1c4b2644-5420-4eb3-ae81-c46167e4b80e +2024-09-11 09:10:34.956742 2024-09-11 09:10:34.956748 cognd 041912888 R rec 311a7861-ac19-473c-879d-bd5794b7af52 +2024-09-11 09:10:35.006707 2024-09-11 09:10:35.006712 cognd 041909836 R rec ee0fcc73-f228-44fc-9c59-33770861e377 +2024-09-11 09:10:35.053733 2024-09-11 09:10:35.053737 cognd 041906683 R rec bfc79b34-755c-403a-afd4-6f794382e7ca +2024-09-11 09:10:35.102354 2024-09-11 09:10:35.102358 cognd 041901398 R rec 40f155b8-49c6-4454-a508-612227e615c7 +2024-09-11 09:10:35.150275 2024-09-11 09:10:35.150281 cognd 041890353 R rec 23bc6129-bd73-456b-bd5c-df3f0501ed9f +2024-09-11 09:10:35.198874 2024-09-11 09:10:35.198879 cognd 04188566X R rec 3d4c3a02-bdd1-45b4-8771-e402f946db73 +2024-09-11 09:10:35.282712 2024-09-11 09:10:35.282717 cognd 041856333 R rec a1a04cf2-5bc3-453f-85f9-af339c8ec172 +2024-09-11 09:10:35.347689 2024-09-11 09:10:35.3477 cognd 041856325 R rec 6f3a0fa1-e76b-40d8-90be-8599eefccec6 +2024-09-11 09:10:35.423084 2024-09-11 09:10:35.42309 cognd 041848020 R rec 2f37b304-87a7-4a8d-b1c3-352c7a852a56 +2024-09-11 09:10:35.494399 2024-09-11 09:10:35.494405 cognd 041844793 R rec 77294596-b5ef-49e1-800c-6ae16ed62d76 +2024-09-11 09:10:35.558005 2024-09-11 09:10:35.558016 cognd 041844513 R rec d1562c3c-75e8-4f0e-b769-579c03f348a9 +2024-09-11 09:10:35.611692 2024-09-11 09:10:35.611698 cognd 041840658 R rec 542e9e34-4f36-4a42-89c0-02fff32958a8 +2024-09-11 09:10:35.6886 2024-09-11 09:10:35.688611 cognd 041830180 R rec 80676ecf-d181-4ea2-a844-cc4e8707bd00 +2024-09-11 09:10:35.74996 2024-09-11 09:10:35.749966 cognd 041822218 R rec 5a5f2747-e218-43fb-b541-43f046bf3ba2 +2024-09-11 09:10:35.805186 2024-09-11 09:10:35.805191 cognd 041815173 R rec 33d513a7-b43c-4a73-bdeb-aa0637bd1905 +2024-09-11 09:10:35.857015 2024-09-11 09:10:35.857021 cognd 041810252 R rec 89dfa616-bf1f-43a2-bf26-631626471ab0 +2024-09-11 09:10:35.914414 2024-09-11 09:10:35.914419 cognd 041806417 R rec 26b431c4-77c7-4e46-84d0-af84b4c4e4d1 +2024-09-11 09:10:35.964184 2024-09-11 09:10:35.964189 cognd 041796462 R rec 6ac88bab-53c4-4abc-b46e-6d78c6cf8452 +2024-09-11 09:10:36.015936 2024-09-11 09:10:36.015941 cognd 041794923 R rec dfc355cf-5b16-4c8c-ad3a-0da1a5a952a1 +2024-09-11 09:10:36.069668 2024-09-11 09:10:36.069673 cognd 041789989 R rec 119fadd2-bc7d-46ba-bc4d-5a487a53390d +2024-09-11 09:10:36.116883 2024-09-11 09:10:36.116888 cognd 041787250 R rec bb0e60a0-4c69-4278-b735-8eb44b77ece3 +2024-09-11 09:10:36.168587 2024-09-11 09:10:36.168597 cognd 041785134 R rec 34c012d5-e2a8-429d-8fe6-018b245a6be7 +2024-09-11 09:10:36.231063 2024-09-11 09:10:36.231074 cognd 041782445 R rec 1a922757-33c8-445a-919a-ce5ea97dd402 +2024-09-11 09:10:36.286748 2024-09-11 09:10:36.286754 cognd 041766040 R rec fc6a691e-9d66-466e-8654-1f0f493fba20 +2024-09-11 09:10:36.348089 2024-09-11 09:10:36.3481 cognd 041762223 R rec 6fd0194a-db0c-46f0-8312-f83bfa3b2904 +2024-09-11 09:10:36.412765 2024-09-11 09:10:36.412777 cognd 041753615 R rec deb83731-54aa-47aa-bc81-397a5df1c841 +2024-09-11 09:10:36.480098 2024-09-11 09:10:36.480103 cognd 041748379 R rec cfe62522-7748-4010-b6ca-0b21044a1bc3 +2024-09-11 09:10:36.535257 2024-09-11 09:10:36.535263 cognd 041734467 R rec 3e9cfae0-b24d-42d6-9862-eafd38b9d70f +2024-09-11 09:10:36.590737 2024-09-11 09:10:36.590743 cognd 041730380 R rec 5ec360fa-2129-455e-a451-0183adb3c3d7 +2024-09-11 09:10:36.639059 2024-09-11 09:10:36.639063 cognd 041718380 R rec 74e2cc88-63ff-4e61-8a95-6d293477fdd1 +2024-09-11 09:10:36.688933 2024-09-11 09:10:36.688936 cognd 041717007 R rec ec1eed7a-bdbf-4f36-b32b-3cc28c764693 +2024-09-11 09:10:36.743724 2024-09-11 09:10:36.743729 cognd 041712900 R rec 71447fa1-1225-4741-9a67-8226e25586c8 +2024-09-11 09:10:36.803394 2024-09-11 09:10:36.8034 cognd 041707222 R rec a6732bfa-a030-49d9-a8e4-cc979445fee9 +2024-09-11 09:10:36.858031 2024-09-11 09:10:36.858036 cognd 04170553X R rec 823dc5dd-1f72-4196-8de2-19b2a76494fe +2024-09-11 09:10:36.909414 2024-09-11 09:10:36.909419 cognd 041701852 R rec 0574046a-15ea-492d-b7ff-14ff1b9222b5 +2024-09-11 09:10:36.957716 2024-09-11 09:10:36.95772 cognd 041699122 R rec 401788d1-f65d-4287-8289-5351f9d48f45 +2024-09-11 09:10:37.003998 2024-09-11 09:10:37.004003 cognd 041699114 R rec 03b9f5ca-0a5f-4e22-9478-243b1b5a2727 +2024-09-11 09:10:37.059304 2024-09-11 09:10:37.05931 cognd 041696492 R rec 6b591113-6ca0-48b4-ac7d-f4d8a07a17fb +2024-09-11 09:10:37.113059 2024-09-11 09:10:37.113065 cognd 041693477 R rec d37f3060-a150-4139-aedf-c175324fe73b +2024-09-11 09:10:37.180217 2024-09-11 09:10:37.180223 cognd 041692705 R rec 10c62af2-fc0b-4e78-9007-fe07fd7030d3 +2024-09-11 09:10:37.243357 2024-09-11 09:10:37.243362 cognd 041689763 R rec c3121fa2-ab35-470f-b0d2-90cc5f764446 +2024-09-11 09:10:37.299413 2024-09-11 09:10:37.299418 cognd 041687167 R rec 7875e5e7-8c29-4e33-b2a6-0646969e7728 +2024-09-11 09:10:37.358658 2024-09-11 09:10:37.358664 cognd 041667689 R rec 57a5c96e-2199-4991-afe0-7e2a8a523663 +2024-09-11 09:10:37.420388 2024-09-11 09:10:37.420394 cognd 041667670 R rec ab7b4250-cab3-4a13-b03b-58a079c43ec2 +2024-09-11 09:10:37.486431 2024-09-11 09:10:37.486437 cognd 041663659 R rec c1918b26-da75-49b8-8926-189e01fac8b1 +2024-09-11 09:10:37.552139 2024-09-11 09:10:37.552144 cognd 04165725X R rec 579c871d-8c7e-4938-a33c-f4f9d1beaf59 +2024-09-11 09:10:37.615662 2024-09-11 09:10:37.615668 cognd 041656032 R rec 6faa1e60-402b-40d0-ba44-90258239aa18 +2024-09-11 09:10:37.676796 2024-09-11 09:10:37.676802 cognd 041655974 R rec 4d4d2374-509d-4c11-996b-527a7baf878c +2024-09-11 09:10:37.727675 2024-09-11 09:10:37.72768 cognd 041655168 R rec 5fe950b1-efa6-4fe5-8421-ce2c0b8433d3 +2024-09-11 09:10:37.776543 2024-09-11 09:10:37.776546 cognd 041654013 R rec 3e568220-db61-47a2-87be-6e4ac6e1d97f +2024-09-11 09:10:37.821554 2024-09-11 09:10:37.821558 cognd 041653386 R rec 4b95a9fe-6482-4aa5-a74f-fc965270571f +2024-09-11 09:10:37.867543 2024-09-11 09:10:37.867548 cognd 041647459 R rec 53c19592-8cf6-4c4e-b972-07a0f596c27c +2024-09-11 09:10:37.91583 2024-09-11 09:10:37.915836 cognd 041637763 R rec 0260f795-87e7-4263-9e54-af88a4de8f15 +2024-09-11 09:10:37.965675 2024-09-11 09:10:37.965679 cognd 041636422 R rec 3483de19-c697-454b-88da-b702e7406040 +2024-09-11 09:10:38.014585 2024-09-11 09:10:38.014591 cognd 041633237 R rec 3542edd9-302c-4cfd-acf8-312c31084fcf +2024-09-11 09:10:38.075267 2024-09-11 09:10:38.075272 cognd 041616715 R rec 5f84671d-2205-48fe-a16d-ce97344f2776 +2024-09-11 09:10:38.136748 2024-09-11 09:10:38.136752 cognd 041614909 R rec 62c72595-109d-40e0-9887-d631580297d8 +2024-09-11 09:10:38.201796 2024-09-11 09:10:38.201802 cognd 041614836 R rec c4bcbbba-7944-4201-b7f9-466ce5a07772 +2024-09-11 09:10:38.266577 2024-09-11 09:10:38.266582 cognd 041613872 R rec 69c95f24-b01b-4f60-8137-1430739a83d5 +2024-09-11 09:10:38.322386 2024-09-11 09:10:38.322391 cognd 041613597 R rec 396b11bb-c958-4026-8890-0e0e2b94bdd1 +2024-09-11 09:10:38.373562 2024-09-11 09:10:38.373567 cognd 041606760 R rec 5172f7b5-d4af-4a37-b2bb-467f7fac2a62 +2024-09-11 09:10:38.432471 2024-09-11 09:10:38.432477 cognd 041599470 R rec edc64cb8-537d-46c3-86b3-e5c9a9ddb552 +2024-09-11 09:10:38.488545 2024-09-11 09:10:38.488551 cognd 041597508 R rec f0dc69b2-2a76-44b2-9ec1-9976439026b1 +2024-09-11 09:10:38.548279 2024-09-11 09:10:38.548284 cognd 041594800 R rec ed6ecd86-2780-47fd-9b46-b4ae73bbf766 +2024-09-11 09:10:38.603635 2024-09-11 09:10:38.60364 cognd 041591267 R rec 7dbb0863-26d2-4626-9ce5-962290ed9e03 +2024-09-11 09:10:38.652105 2024-09-11 09:10:38.65211 cognd 041585623 R rec d7197f70-5ba6-496c-afd2-a399f2d0f790 +2024-09-11 09:10:38.701661 2024-09-11 09:10:38.701666 cognd 041584929 R rec 04620611-38b2-404f-9531-90afdc459ce7 +2024-09-11 09:10:38.750312 2024-09-11 09:10:38.750318 cognd 041582667 R rec a6a4959b-808f-4db0-9dc4-838bcc548c8b +2024-09-11 09:10:38.799901 2024-09-11 09:10:38.799906 cognd 041570170 R rec f503bc22-910d-41d7-99de-a6febb98481f +2024-09-11 09:10:38.848603 2024-09-11 09:10:38.848608 cognd 041570103 R rec 35948b41-fbad-432b-a719-7fe7cd455e22 +2024-09-11 09:10:38.895967 2024-09-11 09:10:38.895972 cognd 041565568 R rec 60abfa22-4c21-4f56-98a2-ec405dfec189 +2024-09-11 09:10:38.946796 2024-09-11 09:10:38.946802 cognd 041563247 R rec 37939108-a122-4c54-9aca-a5c4a46f9649 +2024-09-11 09:10:39.000271 2024-09-11 09:10:39.000275 cognd 041553128 R rec 5e4af7a1-ad17-4479-a728-c91e80842bc6 +2024-09-11 09:10:39.053683 2024-09-11 09:10:39.053688 cognd 041544323 R rec 44a4a2f4-6ff1-4048-af33-202a65c41239 +2024-09-11 09:10:39.100841 2024-09-11 09:10:39.100846 cognd 041542436 R rec 909d049a-10d4-4aa4-b65e-ead00c93587a +2024-09-11 09:10:39.149384 2024-09-11 09:10:39.149389 cognd 041534646 R rec 346982a0-2d34-42e8-99eb-e1a0783d88f3 +2024-09-11 09:10:39.205289 2024-09-11 09:10:39.205361 cognd 041531426 R rec f777bc13-69cf-4ef2-a589-3cd28f5a80c2 +2024-09-11 09:10:39.278486 2024-09-11 09:10:39.278498 cognd 04152697X R rec d759fcad-196c-4d1e-9547-d7201638eabf +2024-09-11 09:10:39.353861 2024-09-11 09:10:39.353874 cognd 041523393 R rec 8196e110-a84c-4b08-9e62-b989acea325b +2024-09-11 09:10:39.424668 2024-09-11 09:10:39.424681 cognd 041523318 R rec 03bb2b98-a8a0-449a-a53f-d4ebf5cd7d18 +2024-09-11 09:10:39.482508 2024-09-11 09:10:39.482513 cognd 04151923X R rec 348fba90-5a46-4bee-8151-60bc3429dee5 +2024-09-11 09:10:39.53391 2024-09-11 09:10:39.533914 cognd 041518160 R rec 507d5523-4c9a-45ec-9b48-1cde52e4e5d2 +2024-09-11 09:10:39.597446 2024-09-11 09:10:39.597457 cognd 041516613 R rec 55b806ef-e37a-4926-9d6a-132cc59e6c49 +2024-09-11 09:10:39.687666 2024-09-11 09:10:39.687677 cognd 041515420 R rec fe030418-c6e9-45b2-bfc2-d10a1eddb6b9 +2024-09-11 09:10:39.767795 2024-09-11 09:10:39.767801 cognd 041512820 R rec e1bbcc15-0d5c-406f-b13c-49c1907e157e +2024-09-11 09:10:39.833018 2024-09-11 09:10:39.833029 cognd 041509412 R rec 54f8e17d-6e3b-4058-a055-b05c285ff9b0 +2024-09-11 09:10:39.905268 2024-09-11 09:10:39.905278 cognd 041505336 R rec 5c1a1329-20b4-45ba-a0c7-8a75548024eb +2024-09-11 09:10:39.97596 2024-09-11 09:10:39.975971 cognd 041505077 R rec 59f9491e-abe8-47f8-bc8b-04dda3e087f1 +2024-09-11 09:10:40.043939 2024-09-11 09:10:40.043945 cognd 04150335X R rec a5e981fd-1691-4a2c-8323-e6838253c57f +2024-09-11 09:10:40.093401 2024-09-11 09:10:40.093407 cognd 041502264 R rec b0ab1e60-5b81-40d4-bbb3-0e50654bd02e +2024-09-11 09:10:40.152695 2024-09-11 09:10:40.152705 cognd 041487109 R rec 5ad7e452-e25a-4576-b1f3-d29c1a1bbc4b +2024-09-11 09:10:40.214017 2024-09-11 09:10:40.214022 cognd 041477936 R rec 9942a7b2-4349-449c-89b5-dbe4917aba3b +2024-09-11 09:10:40.266639 2024-09-11 09:10:40.266648 cognd 041470966 R rec 2d8d9a7f-3f58-4fae-b8dc-56508f9c7f56 +2024-09-11 09:10:40.327956 2024-09-11 09:10:40.327967 cognd 041470044 R rec 4c691f0e-0e05-4222-bd97-fef470613a64 +2024-09-11 09:10:40.39838 2024-09-11 09:10:40.398385 cognd 04146768X R rec b2fc71c2-6f06-4f2c-acea-bfd9ad4e3ce1 +2024-09-11 09:10:40.463957 2024-09-11 09:10:40.463968 cognd 041467612 R rec 888300b6-36bd-4313-8443-2cc93a78bb84 +2024-09-11 09:10:40.527538 2024-09-11 09:10:40.527543 cognd 041466578 R rec 6c65372f-4198-405f-a6b8-e2b478bb699c +2024-09-11 09:10:40.575749 2024-09-11 09:10:40.575754 cognd 041466365 R rec 68f5392d-387b-4721-adb6-6e549cdfe935 +2024-09-11 09:10:40.644054 2024-09-11 09:10:40.644065 cognd 041463692 R rec 3c75a14c-b42f-4962-9bb1-bcb2702ee970 +2024-09-11 09:10:40.714284 2024-09-11 09:10:40.714296 cognd 041450809 R rec 51b43367-2e89-4636-818b-df4a7fe0dea3 +2024-09-11 09:10:40.793536 2024-09-11 09:10:40.793542 cognd 041450469 R rec a8576dc7-d207-453b-b3a8-cf9ffbf6d835 +2024-09-11 09:10:40.857702 2024-09-11 09:10:40.857708 cognd 041446186 R rec 6721cbc0-1630-4e92-a0b7-6823f4290761 +2024-09-11 09:10:40.92742 2024-09-11 09:10:40.927426 cognd 041444280 R rec b73a89e0-62f8-4bcf-8af6-80335997a144 +2024-09-11 09:10:40.987563 2024-09-11 09:10:40.987575 cognd 041439902 R rec e3f0f453-3e48-4ada-9659-4bc4cbd41e62 +2024-09-11 09:10:41.061567 2024-09-11 09:10:41.061577 cognd 04143823X R rec 2d80dac0-c763-4bb1-a2b1-cd7fda89c0a6 +2024-09-11 09:10:41.129351 2024-09-11 09:10:41.129361 cognd 041437896 R rec b648090d-cf3f-4f38-a232-8854ce365dea +2024-09-11 09:10:41.197051 2024-09-11 09:10:41.197055 cognd 041431049 R rec c4e4f53a-71fb-4f80-9ad7-a14b550da2f0 +2024-09-11 09:10:41.252596 2024-09-11 09:10:41.252607 cognd 04143028X R rec aa741e34-cd45-4fd8-9dd4-3064ab459cbd +2024-09-11 09:10:41.312246 2024-09-11 09:10:41.312257 cognd 04142641X R rec 3f70d8a4-92b5-4da5-b777-3665f2edeaae +2024-09-11 09:10:41.376301 2024-09-11 09:10:41.376311 cognd 04142574X R rec e7fc52d5-40a6-48e2-8a31-c593cd8712f1 +2024-09-11 09:10:41.439289 2024-09-11 09:10:41.439294 cognd 041424573 R rec 988ec0f8-a478-4e63-9d68-00cd9ca212c4 +2024-09-11 09:10:41.501945 2024-09-11 09:10:41.501956 cognd 041424492 R rec 480bad24-46d4-4ac1-b19b-8d40c1b3890a +2024-09-11 09:10:41.559631 2024-09-11 09:10:41.559636 cognd 041422260 R rec 04020e90-3da7-462c-99af-52112b235a4b +2024-09-11 09:10:41.612685 2024-09-11 09:10:41.612696 cognd 041422058 R rec 769cd197-2f3e-49d4-a814-0271a51b1a55 +2024-09-11 09:10:41.676563 2024-09-11 09:10:41.676573 cognd 041419677 R rec d4e2c301-3872-4cde-a9f8-cc37acb5da0f +2024-09-11 09:10:41.744177 2024-09-11 09:10:41.744187 cognd 041411137 R rec dc3e2c91-8ed7-4e7e-9583-c2cce2d5c03d +2024-09-11 09:10:41.82163 2024-09-11 09:10:41.821635 cognd 041409965 R rec f7bd06b4-73fb-4cfb-b0da-f5284e516317 +2024-09-11 09:10:41.88487 2024-09-11 09:10:41.884874 cognd 041409760 R rec 5a20b6a5-bfb8-455d-8f55-54e2dce329d5 +2024-09-11 09:10:41.951606 2024-09-11 09:10:41.951617 cognd 041392450 R rec 7aebfe20-3007-4e66-a8c4-c26e467cfe91 +2024-09-11 09:10:42.035462 2024-09-11 09:10:42.035473 cognd 041388984 R rec 89968ccf-0f8b-427a-b04a-c02a950661a3 +2024-09-11 09:10:42.087715 2024-09-11 09:10:42.087725 cognd 041378407 R rec e5a1178a-6216-401b-b9bd-f831ee4acf1f +2024-09-11 09:10:42.154213 2024-09-11 09:10:42.154223 cognd 041374444 R rec d88601eb-faff-45fb-836b-6be5ef792b64 +2024-09-11 09:10:42.214199 2024-09-11 09:10:42.214205 cognd 041369785 R rec b7168fc9-cfe8-4608-a473-6ddf7ec21532 +2024-09-11 09:10:42.261292 2024-09-11 09:10:42.261297 cognd 041368517 R rec 7425f262-c2d4-4f60-a235-f8c010555e3f +2024-09-11 09:10:42.321399 2024-09-11 09:10:42.321409 cognd 041366352 R rec 57c93715-441f-449a-a5ac-2ec2124e395b +2024-09-11 09:10:42.381032 2024-09-11 09:10:42.381036 cognd 041365844 R rec f44ceb66-7507-4002-a525-3766cecf7e10 +2024-09-11 09:10:42.433916 2024-09-11 09:10:42.433921 cognd 041354710 R rec 51037f93-a46f-44f2-9cd2-d5cc36204e0f +2024-09-11 09:10:42.48804 2024-09-11 09:10:42.488044 cognd 041345835 R rec dac3ccd5-b91d-4ed0-a4c5-0348b0558fc5 +2024-09-11 09:10:42.543782 2024-09-11 09:10:42.543788 cognd 04134166X R rec af6f36eb-3367-439b-ac04-e8ac9143a632 +2024-09-11 09:10:42.598036 2024-09-11 09:10:42.598046 cognd 041340892 R rec 697b618f-7dcb-49b2-8d99-5b6ec9d9278b +2024-09-11 09:10:42.664566 2024-09-11 09:10:42.664576 cognd 041333004 R rec 93cb6b6d-134b-4195-9521-d898a2364f74 +2024-09-11 09:10:42.724241 2024-09-11 09:10:42.724246 cognd 041332997 R rec 064b702d-8d9b-4a6f-86bd-01512779b312 +2024-09-11 09:10:42.787857 2024-09-11 09:10:42.787862 cognd 041332237 R rec ea52e007-8cfd-41a9-879d-61939f87160f +2024-09-11 09:10:42.847547 2024-09-11 09:10:42.847557 cognd 041326202 R rec ca92802b-564e-4e27-b73d-8f6f9dbd1ad2 +2024-09-11 09:10:42.918245 2024-09-11 09:10:42.918256 cognd 041325710 R rec 90a450c9-4951-4e9d-9765-44dad6d71566 +2024-09-11 09:10:42.987727 2024-09-11 09:10:42.987736 cognd 04132305X R rec b8e07b58-3cc6-4ec1-9fed-b43bf01ee11f +2024-09-11 09:10:43.058795 2024-09-11 09:10:43.058801 cognd 041322886 R rec 9ab30dae-d496-4586-b2bd-c5ee9fcea036 +2024-09-11 09:10:43.109179 2024-09-11 09:10:43.109189 cognd 041319125 R rec bf17f80c-f894-4375-b0ec-681c8265ce1d +2024-09-11 09:10:43.180086 2024-09-11 09:10:43.180097 cognd 041317718 R rec 93375f37-3ca8-479a-afee-0d7c6373f9aa +2024-09-11 09:10:43.242574 2024-09-11 09:10:43.24258 cognd 041312368 R rec e592fe7b-bfbd-46fd-bdb0-21c3b6d59885 +2024-09-11 09:10:43.3193 2024-09-11 09:10:43.31931 cognd 041308166 R rec 489a13d7-753d-453d-9838-c5fd599891c8 +2024-09-11 09:10:43.388858 2024-09-11 09:10:43.389007 cognd 041308107 R rec 982db275-262c-4edd-bc82-70460e51507b +2024-09-11 09:10:43.458492 2024-09-11 09:10:43.458503 cognd 041303768 R rec 77bebc5a-d87e-47d9-9174-bcd51d9d66f0 +2024-09-11 09:10:43.527427 2024-09-11 09:10:43.527459 cognd 041299604 R rec 257deb7b-0c55-43ec-b56b-535ae2156db4 +2024-09-11 09:10:43.581205 2024-09-11 09:10:43.581209 cognd 041287045 R rec 74c24685-9377-4a02-8c2a-51c67e9fcd50 +2024-09-11 09:10:43.651688 2024-09-11 09:10:43.651699 cognd 04128237X R rec 5db99e32-6963-4e6b-931e-88e246425c1f +2024-09-11 09:10:43.720542 2024-09-11 09:10:43.720546 cognd 041281632 R rec 96f828fb-2afe-4137-8638-df418991beec +2024-09-11 09:10:43.787423 2024-09-11 09:10:43.787435 cognd 041273230 R rec 6af05e21-6957-475e-a211-bcc11722f5af +2024-09-11 09:10:43.863947 2024-09-11 09:10:43.863957 cognd 041269950 R rec 7ba48b2d-8818-4b36-b22d-f1251b3db190 +2024-09-11 09:10:43.929348 2024-09-11 09:10:43.929357 cognd 041258584 R rec 53db4170-f348-4bc6-99c0-21024332ed08 +2024-09-11 09:10:44.010273 2024-09-11 09:10:44.010278 cognd 041255887 R rec a6cb33f9-b03c-4dd7-80c8-cfcf65896d07 +2024-09-11 09:10:44.067484 2024-09-11 09:10:44.067489 cognd 041252896 R rec be1e2bef-6861-4f54-8d22-e57ab860bc12 +2024-09-11 09:10:44.113994 2024-09-11 09:10:44.113999 cognd 041245296 R rec 78dea98d-5117-4b50-bd69-ef9633a708f3 +2024-09-11 09:10:44.174362 2024-09-11 09:10:44.174373 cognd 041240510 R rec fdf8cd63-ea15-4956-8e72-47f399c3bb53 +2024-09-11 09:10:44.241964 2024-09-11 09:10:44.241973 cognd 041239288 R rec de0460b9-1c2c-41cc-902b-c4e374a20888 +2024-09-11 09:10:44.322922 2024-09-11 09:10:44.322933 cognd 041238826 R rec 04f4162d-48c1-47bb-9c1c-2ab4f10cc3da +2024-09-11 09:10:44.396759 2024-09-11 09:10:44.396769 cognd 041236599 R rec 118436bb-b51a-49ed-8dac-63f9525ce762 +2024-09-11 09:10:44.469576 2024-09-11 09:10:44.469587 cognd 041235347 R rec d716c8e9-b93f-4606-9d30-fcf906dc10c5 +2024-09-11 09:10:44.546306 2024-09-11 09:10:44.546308 cognd 041227980 R rec c50d84cc-21f0-47e0-8433-96815d88354e +2024-09-11 09:10:44.607019 2024-09-11 09:10:44.607029 cognd 041220609 R rec 94878360-e083-430d-9d76-3f7c8daad8df +2024-09-11 09:10:44.685999 2024-09-11 09:10:44.686009 cognd 04121952X R rec 1573be24-6de2-42ba-9109-a159b270a995 +2024-09-11 09:10:44.739251 2024-09-11 09:10:44.739256 cognd 041218108 R rec 5dc12280-4a77-4a71-aa1e-644630cdeea8 +2024-09-11 09:10:44.805055 2024-09-11 09:10:44.805064 cognd 041217616 R rec ce61faeb-641a-482a-a049-d9f2e12729d9 +2024-09-11 09:10:44.878325 2024-09-11 09:10:44.878336 cognd 041212304 R rec cc63aa70-aadc-4ef5-b491-451be386e481 +2024-09-11 09:10:44.950728 2024-09-11 09:10:44.950739 cognd 041207017 R rec 25dfd694-7846-48a9-9f57-95020aa66710 +2024-09-11 09:10:45.018913 2024-09-11 09:10:45.018923 cognd 041206592 R rec b20ce91c-5bc2-44af-8a1a-13b551fe6704 +2024-09-11 09:10:45.073482 2024-09-11 09:10:45.073487 cognd 041201116 R rec efabafad-b763-4dea-9f27-f71f432132c3 +2024-09-11 09:10:45.131089 2024-09-11 09:10:45.131094 cognd 041184432 R rec 2f8bb889-00ba-4e85-a88d-fdbca91be979 +2024-09-11 09:10:45.188039 2024-09-11 09:10:45.188049 cognd 041176065 R rec 935a73de-d1af-489d-b004-857e752302bd +2024-09-11 09:10:45.24677 2024-09-11 09:10:45.246781 cognd 041155513 R rec 0acc2626-847d-4570-8714-a2af7737894f +2024-09-11 09:10:45.319739 2024-09-11 09:10:45.319746 cognd 041154630 R rec 38b0d755-2c34-44ca-ac74-3b6b44b6e0ed +2024-09-11 09:10:45.399465 2024-09-11 09:10:45.399475 cognd 04114516X R rec d88dfb78-b0a8-4518-a2cc-419bf46487d2 +2024-09-11 09:10:45.461007 2024-09-11 09:10:45.461012 cognd 041091507 R rec ffa9eadb-547f-4108-9111-1244cb63dd45 +2024-09-11 09:10:45.521776 2024-09-11 09:10:45.521786 cognd 041076842 R rec 5ecea1ca-fe16-499a-8c48-e934f29321e8 +2024-09-11 09:10:45.575281 2024-09-11 09:10:45.575286 cognd 041018699 R rec 587c9af0-14f3-4064-b7f0-34979f8351fa +2024-09-11 09:10:45.628083 2024-09-11 09:10:45.628094 cognd 040775593 R rec 64f90a77-9a3e-46b1-b43e-b9cf45f6a89a +2024-09-11 09:10:45.696502 2024-09-11 09:10:45.696512 cognd 040763889 R rec 01e2349e-96fc-4443-89a1-1fad794b53b8 +2024-09-11 09:10:45.750213 2024-09-11 09:10:45.750218 cognd 040730913 R rec d2f1702a-a514-44b6-b5af-3abc97ffbb1b +2024-09-11 09:10:45.820596 2024-09-11 09:10:45.820606 cognd 04071781X R rec b9c91077-6b66-438a-92cb-8a913fb1fdb4 +2024-09-11 09:10:45.889532 2024-09-11 09:10:45.889538 cognd 04067777X R rec 2af685d8-d2ac-4cc2-9bad-742c27dcd23d +2024-09-11 09:10:45.953235 2024-09-11 09:10:45.953245 cognd 04066533X R rec d980face-4bc7-43f7-8231-617386ee1cc8 +2024-09-11 09:10:46.016084 2024-09-11 09:10:46.016089 cognd 040645312 R rec 5e911f31-71d3-4a61-bd77-8cd9881b5837 +2024-09-11 09:10:46.064728 2024-09-11 09:10:46.064733 cognd 040633217 R rec b6918415-551e-46d1-97d4-236075ea8f75 +2024-09-11 09:10:46.113388 2024-09-11 09:10:46.113393 cognd 040583317 R rec 508f0ed0-2ff4-4c25-a33d-b96598c5f2d2 +2024-09-11 09:10:46.166554 2024-09-11 09:10:46.166559 cognd 040544567 R rec 872605b9-9a99-4255-b220-6f266419fe36 +2024-09-11 09:10:46.266135 2024-09-11 09:10:46.266145 cognd 040519384 R rec e0673f02-ec21-4aa2-8da3-d925320eae3f +2024-09-11 09:10:46.337677 2024-09-11 09:10:46.337687 cognd 040514927 R rec 0d93c3d6-01a1-4648-b6f5-59671302f4b1 +2024-09-11 09:10:46.409492 2024-09-11 09:10:46.409501 cognd 040512665 R rec 7daea1a2-2cbe-4eaf-a268-fc97427229ea +2024-09-11 09:10:46.481242 2024-09-11 09:10:46.481252 cognd 04051238X R rec e5f88acf-2abd-40aa-8f83-d93e2abd913f +2024-09-11 09:10:46.554725 2024-09-11 09:10:46.554729 cognd 040490297 R rec 694fb71f-641e-47b6-a7de-b7b30ffa6fbd +2024-09-11 09:10:46.610972 2024-09-11 09:10:46.610977 cognd 040459608 R rec 68cf9d3a-a7df-4ddb-92fd-5c854747adc1 +2024-09-11 09:10:46.669609 2024-09-11 09:10:46.669615 cognd 040451259 R rec c56ada78-8940-4f92-8395-2535ac67e51e +2024-09-11 09:10:46.720261 2024-09-11 09:10:46.720265 cognd 040438163 R rec 62ae3352-e44c-4db6-9d5d-ebaeb8424163 +2024-09-11 09:10:46.768006 2024-09-11 09:10:46.768011 cognd 040432149 R rec a997aeed-1625-48b5-8fa0-feee736acf57 +2024-09-11 09:10:46.815156 2024-09-11 09:10:46.815161 cognd 040416496 R rec 2750c027-7575-477a-8339-6b3c17d79c51 +2024-09-11 09:10:46.865992 2024-09-11 09:10:46.865998 cognd 040406938 R rec 27591d05-4f63-48f1-a51a-f317fe8c7813 +2024-09-11 09:10:46.92405 2024-09-11 09:10:46.924055 cognd 040403688 R rec 13c6512f-7f8a-47ab-80b1-144beee61744 +2024-09-11 09:10:46.970017 2024-09-11 09:10:46.970022 cognd 040389065 R rec dbec74bb-6e80-4d0e-89ad-4c671d7c1dca +2024-09-11 09:10:47.021197 2024-09-11 09:10:47.021202 cognd 040335682 R rec 065df520-bb54-4fc5-bbdc-d00b9d5361f5 +2024-09-11 09:10:47.076653 2024-09-11 09:10:47.076657 cognd 040328260 R rec da1da815-7668-4bf2-bc6b-f2c5b22d05bc +2024-09-11 09:10:47.125525 2024-09-11 09:10:47.12553 cognd 04032009X R rec 4d6e3800-3de3-429a-91af-4ddfde027732 +2024-09-11 09:10:47.175483 2024-09-11 09:10:47.175488 cognd 040252434 R rec 568c1d1a-96e8-40ef-8ffa-efacc0a8dee1 +2024-09-11 09:10:47.239238 2024-09-11 09:10:47.239248 cognd 040247996 R rec 505b5eb0-fa30-4192-8294-af15f7dbe4d2 +2024-09-11 09:10:47.293392 2024-09-11 09:10:47.293398 cognd 04024055X R rec f76a6095-b2d6-4bcc-9f2a-7215bb17d08e +2024-09-11 09:10:47.346802 2024-09-11 09:10:47.346807 cognd 040205487 R rec 81caa79c-34a2-4c6e-8de3-48937fb2f70b +2024-09-11 09:10:47.429544 2024-09-11 09:10:47.429555 cognd 040189074 R rec d8c94388-595a-4a0f-95ff-98e43968c3af +2024-09-11 09:10:47.500251 2024-09-11 09:10:47.500261 cognd 040130193 R rec 968974cc-2ed3-4c97-aa6e-26082c410b7f +2024-09-11 09:10:47.562847 2024-09-11 09:10:47.562852 cognd 04009006X R rec 01bee050-3dc7-4764-91ae-b5b272d30225 +2024-09-11 09:10:47.631236 2024-09-11 09:10:47.631246 cognd 040085287 R rec 8e7743bb-d794-4096-82b9-3f65ecbf7038 +2024-09-11 09:10:47.701997 2024-09-11 09:10:47.702007 cognd 040085244 R rec ff42094f-b111-4959-814b-b9471e30b31d +2024-09-11 09:10:47.769249 2024-09-11 09:10:47.769259 cognd 040078124 R rec 33768d56-acab-42f7-aa31-f64c92c79cbb +2024-09-11 09:10:47.838021 2024-09-11 09:10:47.838031 cognd 040068560 R rec 16af477e-73d0-477c-8297-bc9116e8c83b +2024-09-11 09:10:47.898963 2024-09-11 09:10:47.898973 cognd 040062120 R rec fd0cfb40-70b3-4686-9446-c0f39a59f9cd +2024-09-11 09:10:47.975714 2024-09-11 09:10:47.975725 cognd 040036774 R rec 9ff2a677-39a4-4257-b3ad-0d3b024c08f4 +2024-09-11 09:10:48.045844 2024-09-11 09:10:48.04585 cognd 040030415 R rec 31a8de0a-fdb3-4145-b928-9d2237a4ecfb +2024-09-11 09:10:48.10039 2024-09-11 09:10:48.100396 cognd 040021475 R rec 202151bf-0eee-473f-a370-8a39307296a4 +2024-09-11 09:10:48.174798 2024-09-11 09:10:48.174809 cognd 040021459 R rec 1f495183-9b70-412a-8cdd-69045731c147 diff --git a/data/comef.json b/data/comef.json index 53d1cc68..6e92063d 100644 --- a/data/comef.json +++ b/data/comef.json @@ -1,2070 +1,18863 @@ [ { - "pid": "7523", - "rero": { - "$ref": "https://mef.rero.ch/api/concepts/rero/A009955971" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041912888" }, + "pid": "10000", "type": "bf:Topic" }, { - "pid": "7524", - "rero": { - "$ref": "https://mef.rero.ch/api/concepts/rero/A010077990" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041909836" }, + "pid": "10001", "type": "bf:Topic" }, { - "pid": "7525", - "rero": { - "$ref": "https://mef.rero.ch/api/concepts/rero/A021001001" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041906683" }, + "pid": "10002", "type": "bf:Topic" }, { - "pid": "7526", - "rero": { - "$ref": "https://mef.rero.ch/api/concepts/rero/A021001003" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041901398" }, + "pid": "10003", "type": "bf:Topic" }, { - "pid": "7527", - "rero": { - "$ref": "https://mef.rero.ch/api/concepts/rero/A021001004" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041890353" }, + "pid": "10004", "type": "bf:Topic" }, { - "pid": "7528", - "rero": { - "$ref": "https://mef.rero.ch/api/concepts/rero/A021001005" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04188566X" }, + "pid": "10005", "type": "bf:Topic" }, { - "pid": "7529", - "rero": { - "$ref": "https://mef.rero.ch/api/concepts/rero/A021001006" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041856333" }, + "pid": "10006", "type": "bf:Topic" }, { - "pid": "7530", - "rero": { - "$ref": "https://mef.rero.ch/api/concepts/rero/A021001007" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041856325" }, + "pid": "10007", "type": "bf:Topic" }, { - "pid": "7531", - "rero": { - "$ref": "https://mef.rero.ch/api/concepts/rero/A021001008" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041848020" }, + "pid": "10008", "type": "bf:Topic" }, { - "pid": "7532", - "rero": { - "$ref": "https://mef.rero.ch/api/concepts/rero/A021001009" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041844793" }, + "pid": "10009", "type": "bf:Topic" }, { - "pid": "7533", - "rero": { - "$ref": "https://mef.rero.ch/api/concepts/rero/A021001012" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041844513" }, + "pid": "10010", "type": "bf:Topic" }, { - "pid": "7534", - "rero": { - "$ref": "https://mef.rero.ch/api/concepts/rero/A021001013" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041840658" }, + "pid": "10011", "type": "bf:Topic" }, { - "pid": "7535", - "rero": { - "$ref": "https://mef.rero.ch/api/concepts/rero/A021001014" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041830180" }, + "pid": "10012", "type": "bf:Topic" }, { - "pid": "7536", - "rero": { - "$ref": "https://mef.rero.ch/api/concepts/rero/A021001016" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041822218" }, + "pid": "10013", "type": "bf:Topic" }, { - "pid": "7537", - "rero": { - "$ref": "https://mef.rero.ch/api/concepts/rero/A021001017" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041815173" }, + "pid": "10014", "type": "bf:Topic" }, { - "pid": "7538", - "rero": { - "$ref": "https://mef.rero.ch/api/concepts/rero/A021001018" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041810252" }, + "pid": "10015", "type": "bf:Topic" }, { - "pid": "7539", - "rero": { - "$ref": "https://mef.rero.ch/api/concepts/rero/A021001021" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041806417" }, + "pid": "10016", "type": "bf:Topic" }, { - "pid": "7540", - "rero": { - "$ref": "https://mef.rero.ch/api/concepts/rero/A021001023" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041796462" }, + "pid": "10017", "type": "bf:Topic" }, { - "pid": "7541", - "rero": { - "$ref": "https://mef.rero.ch/api/concepts/rero/A021001024" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041794923" }, + "pid": "10018", "type": "bf:Topic" }, { - "pid": "7542", - "rero": { - "$ref": "https://mef.rero.ch/api/concepts/rero/A021001025" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041789989" }, + "pid": "10019", "type": "bf:Topic" }, { - "pid": "7543", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027224430" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041787250" + }, + "pid": "10020", + "type": "bf:Topic" }, { - "pid": "7544", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027227219" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041785134" + }, + "pid": "10021", + "type": "bf:Topic" }, { - "pid": "7545", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027235548" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041782445" + }, + "pid": "10022", + "type": "bf:Topic" }, { - "pid": "7546", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027236226" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041766040" + }, + "pid": "10023", + "type": "bf:Topic" }, { - "pid": "7547", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027243087" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041762223" + }, + "pid": "10024", + "type": "bf:Topic" }, { - "pid": "7548", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027246655" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041753615" + }, + "pid": "10025", + "type": "bf:Topic" }, { - "pid": "7549", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027256251" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041748379" + }, + "pid": "10026", + "type": "bf:Topic" }, { - "pid": "7550", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027287289" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041734467" + }, + "pid": "10027", + "type": "bf:Topic" }, { - "pid": "7551", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027294358" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041730380" + }, + "pid": "10028", + "type": "bf:Topic" }, { - "pid": "7552", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/02730440X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041718380" + }, + "pid": "10029", + "type": "bf:Topic" }, { - "pid": "7553", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027328295" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041717007" + }, + "pid": "10030", + "type": "bf:Topic" }, { - "pid": "7554", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027354431" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041712900" + }, + "pid": "10031", + "type": "bf:Topic" }, { - "pid": "7555", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027366669" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041707222" + }, + "pid": "10032", + "type": "bf:Topic" }, { - "pid": "7556", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027389782" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04170553X" + }, + "pid": "10033", + "type": "bf:Topic" }, { - "pid": "7557", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027430162" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041701852" + }, + "pid": "10034", + "type": "bf:Topic" }, { - "pid": "7558", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027488462" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041699122" + }, + "pid": "10035", + "type": "bf:Topic" }, { - "pid": "7559", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/02750610X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041699114" + }, + "pid": "10036", + "type": "bf:Topic" }, { - "pid": "7560", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027510387" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041696492" + }, + "pid": "10037", + "type": "bf:Topic" }, { - "pid": "7561", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027599701" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041693477" + }, + "pid": "10038", + "type": "bf:Topic" }, { - "pid": "7562", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027652254" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041692705" + }, + "pid": "10039", + "type": "bf:Topic" }, { - "pid": "7563", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027661504" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041689763" + }, + "pid": "10040", + "type": "bf:Topic" }, { - "pid": "7564", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027675823" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041687167" + }, + "pid": "10041", + "type": "bf:Topic" }, { - "pid": "7565", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027688739" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041667689" + }, + "pid": "10042", + "type": "bf:Topic" }, { - "pid": "7566", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027699870" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041667670" + }, + "pid": "10043", + "type": "bf:Topic" }, { - "pid": "7567", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/02770940X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041663659" + }, + "pid": "10044", + "type": "bf:Topic" }, { - "pid": "7568", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027741060" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04165725X" + }, + "pid": "10045", + "type": "bf:Topic" }, { - "pid": "7569", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027741125" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041656032" + }, + "pid": "10046", + "type": "bf:Topic" }, { - "pid": "7570", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027765369" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041655974" + }, + "pid": "10047", + "type": "bf:Topic" }, { - "pid": "7571", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027785084" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041655168" + }, + "pid": "10048", + "type": "bf:Topic" }, { - "pid": "7572", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027805220" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041654013" + }, + "pid": "10049", + "type": "bf:Topic" }, { - "pid": "7573", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027809781" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041653386" + }, + "pid": "10050", + "type": "bf:Topic" }, { - "pid": "7574", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027811611" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041647459" + }, + "pid": "10051", + "type": "bf:Topic" }, { - "pid": "7575", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027825280" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041637763" + }, + "pid": "10052", + "type": "bf:Topic" }, { - "pid": "7576", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027832953" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041636422" + }, + "pid": "10053", + "type": "bf:Topic" }, { - "pid": "7577", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027838919" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041633237" + }, + "pid": "10054", + "type": "bf:Topic" }, { - "pid": "7578", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/02784532X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041616715" + }, + "pid": "10055", + "type": "bf:Topic" }, { - "pid": "7579", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027852547" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041614909" + }, + "pid": "10056", + "type": "bf:Topic" }, { - "pid": "7580", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/028004698" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041614836" + }, + "pid": "10057", + "type": "bf:Topic" }, { - "pid": "7581", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/028244494" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041613872" + }, + "pid": "10058", + "type": "bf:Topic" }, { - "pid": "7582", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/028283678" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041613597" + }, + "pid": "10059", + "type": "bf:Topic" }, { - "pid": "7583", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/028354559" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041606760" + }, + "pid": "10060", + "type": "bf:Topic" }, { - "pid": "7584", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/028359070" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041599470" + }, + "pid": "10061", + "type": "bf:Topic" }, { - "pid": "7585", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/028701755" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041597508" + }, + "pid": "10062", + "type": "bf:Topic" }, { - "pid": "7586", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/028910044" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041594800" + }, + "pid": "10063", + "type": "bf:Topic" }, { - "pid": "7587", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/028962389" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041591267" + }, + "pid": "10064", + "type": "bf:Topic" }, { - "pid": "7588", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/02897297X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041585623" + }, + "pid": "10065", + "type": "bf:Topic" }, { - "pid": "7589", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/029241693" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041584929" + }, + "pid": "10066", + "type": "bf:Topic" }, { - "pid": "7590", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/029260892" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041582667" }, - "deleted": "2022-08-25T10:47:31.610056+00:00" + "pid": "10067", + "type": "bf:Topic" }, { - "pid": "7591", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/029560020" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041570170" + }, + "pid": "10068", + "type": "bf:Topic" }, { - "pid": "7592", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/029563321" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041570103" + }, + "pid": "10069", + "type": "bf:Topic" }, { - "pid": "7593", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/029910609" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041565568" + }, + "pid": "10070", + "type": "bf:Topic" }, { - "pid": "7594", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/030714451" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041563247" + }, + "pid": "10071", + "type": "bf:Topic" }, { - "pid": "7595", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/030763762" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041553128" + }, + "pid": "10072", + "type": "bf:Topic" }, { - "pid": "7596", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/030767806" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041544323" + }, + "pid": "10073", + "type": "bf:Topic" }, { - "pid": "7597", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/03116207X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041542436" + }, + "pid": "10074", + "type": "bf:Topic" }, { - "pid": "7598", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/031474284" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041534646" + }, + "pid": "10075", + "type": "bf:Topic" }, { - "pid": "7599", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/031911056" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041531426" + }, + "pid": "10076", + "type": "bf:Topic" }, { - "pid": "7600", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/031992234" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04152697X" + }, + "pid": "10077", + "type": "bf:Topic" }, { - "pid": "7601", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/03212743X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041523393" + }, + "pid": "10078", + "type": "bf:Topic" }, { - "pid": "7602", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/032187130" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041523318" + }, + "pid": "10079", + "type": "bf:Topic" }, { - "pid": "7603", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/032563507" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04151923X" + }, + "pid": "10080", + "type": "bf:Topic" }, { - "pid": "7604", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/032972938" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041518160" + }, + "pid": "10081", + "type": "bf:Topic" }, { - "pid": "7605", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/03388157X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041516613" + }, + "pid": "10082", + "type": "bf:Topic" }, { - "pid": "7606", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/034160523" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041515420" + }, + "pid": "10083", + "type": "bf:Topic" }, { - "pid": "7607", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/034490906" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041512820" + }, + "pid": "10084", + "type": "bf:Topic" }, { - "pid": "7608", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/034680365" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041509412" + }, + "pid": "10085", + "type": "bf:Topic" }, { - "pid": "7609", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/035801123" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041505336" + }, + "pid": "10086", + "type": "bf:Topic" }, { - "pid": "7610", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/050203177" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041505077" + }, + "pid": "10087", + "type": "bf:Topic" }, { - "pid": "7611", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/050513478" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04150335X" + }, + "pid": "10088", + "type": "bf:Topic" }, { - "pid": "7612", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/077061284" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041502264" + }, + "pid": "10089", + "type": "bf:Topic" }, { - "pid": "7613", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/080206913" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041487109" + }, + "pid": "10090", + "type": "bf:Topic" }, { - "pid": "7614", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/083620338" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041477936" + }, + "pid": "10091", + "type": "bf:Topic" }, { - "pid": "7615", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/083622519" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041470966" }, - "deleted": "2022-08-25T10:47:31.616254+00:00" + "pid": "10092", + "type": "bf:Topic" }, { - "pid": "7616", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/092468675" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041470044" + }, + "pid": "10093", + "type": "bf:Topic" }, { - "pid": "7617", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/113531923" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04146768X" + }, + "pid": "10094", + "type": "bf:Topic" }, { - "pid": "7618", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/119256347" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041467612" + }, + "pid": "10095", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041466578" + }, + "pid": "10096", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041466365" + }, + "pid": "10097", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041463692" + }, + "pid": "10098", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041450809" + }, + "pid": "10099", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041450469" + }, + "pid": "10100", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041446186" + }, + "pid": "10101", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041444280" + }, + "pid": "10102", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041439902" + }, + "pid": "10103", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04143823X" + }, + "pid": "10104", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041437896" + }, + "pid": "10105", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041431049" + }, + "pid": "10106", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04143028X" + }, + "pid": "10107", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04142641X" + }, + "pid": "10108", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04142574X" + }, + "pid": "10109", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041424573" + }, + "pid": "10110", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041424492" + }, + "pid": "10111", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041422260" + }, + "pid": "10112", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041422058" + }, + "pid": "10113", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041419677" + }, + "pid": "10114", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041411137" + }, + "pid": "10115", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041409965" + }, + "pid": "10116", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041409760" + }, + "pid": "10117", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041392450" + }, + "pid": "10118", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041388984" + }, + "pid": "10119", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041378407" + }, + "pid": "10120", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041374444" + }, + "pid": "10121", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041369785" + }, + "pid": "10122", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041368517" + }, + "pid": "10123", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041366352" + }, + "pid": "10124", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041365844" + }, + "pid": "10125", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041354710" + }, + "pid": "10126", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041345835" + }, + "pid": "10127", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04134166X" + }, + "pid": "10128", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041340892" + }, + "pid": "10129", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041333004" + }, + "pid": "10130", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041332997" + }, + "pid": "10131", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041332237" + }, + "pid": "10132", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041326202" + }, + "pid": "10133", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041325710" + }, + "pid": "10134", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04132305X" + }, + "pid": "10135", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041322886" + }, + "pid": "10136", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041319125" + }, + "pid": "10137", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041317718" + }, + "pid": "10138", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041312368" + }, + "pid": "10139", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041308166" + }, + "pid": "10140", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041308107" + }, + "pid": "10141", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041303768" + }, + "pid": "10142", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041299604" + }, + "pid": "10143", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041287045" + }, + "pid": "10144", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04128237X" + }, + "pid": "10145", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041281632" + }, + "pid": "10146", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041273230" + }, + "pid": "10147", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041269950" + }, + "pid": "10148", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041258584" + }, + "pid": "10149", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041255887" + }, + "pid": "10150", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041252896" + }, + "pid": "10151", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041245296" + }, + "pid": "10152", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041240510" + }, + "pid": "10153", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041239288" + }, + "pid": "10154", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041238826" + }, + "pid": "10155", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041236599" + }, + "pid": "10156", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041235347" + }, + "pid": "10157", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041227980" + }, + "pid": "10158", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041220609" + }, + "pid": "10159", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04121952X" + }, + "pid": "10160", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041218108" + }, + "pid": "10161", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041217616" + }, + "pid": "10162", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041212304" + }, + "pid": "10163", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041207017" + }, + "pid": "10164", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041206592" + }, + "pid": "10165", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041201116" + }, + "pid": "10166", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041184432" + }, + "pid": "10167", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041176065" + }, + "pid": "10168", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041155513" + }, + "pid": "10169", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041154630" + }, + "pid": "10170", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04114516X" + }, + "pid": "10171", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041091507" + }, + "pid": "10172", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041076842" + }, + "pid": "10173", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041018699" + }, + "pid": "10174", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040775593" + }, + "pid": "10175", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040763889" + }, + "pid": "10176", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040730913" + }, + "pid": "10177", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04071781X" + }, + "pid": "10178", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04067777X" + }, + "pid": "10179", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04066533X" + }, + "pid": "10180", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040645312" + }, + "pid": "10181", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040633217" + }, + "pid": "10182", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040583317" + }, + "pid": "10183", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040544567" + }, + "pid": "10184", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040519384" + }, + "pid": "10185", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040514927" + }, + "pid": "10186", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040512665" + }, + "pid": "10187", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04051238X" + }, + "pid": "10188", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040490297" + }, + "pid": "10189", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040459608" + }, + "pid": "10190", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040451259" + }, + "pid": "10191", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040438163" + }, + "pid": "10192", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040432149" + }, + "pid": "10193", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040416496" + }, + "pid": "10194", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040406938" + }, + "pid": "10195", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040403688" + }, + "pid": "10196", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040389065" + }, + "pid": "10197", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040335682" + }, + "pid": "10198", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040328260" + }, + "pid": "10199", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04032009X" + }, + "pid": "10200", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040252434" + }, + "pid": "10201", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040247996" + }, + "pid": "10202", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04024055X" + }, + "pid": "10203", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040205487" + }, + "pid": "10204", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040189074" + }, + "pid": "10205", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040130193" + }, + "pid": "10206", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04009006X" + }, + "pid": "10207", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040085287" + }, + "pid": "10208", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040085244" + }, + "pid": "10209", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040078124" + }, + "pid": "10210", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040068560" + }, + "pid": "10211", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040062120" + }, + "pid": "10212", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040036774" + }, + "pid": "10213", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040030415" + }, + "pid": "10214", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040021475" + }, + "pid": "10215", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040021459" + }, + "pid": "10216", + "type": "bf:Topic" + }, + { + "pid": "7523", + "rero": { + "$ref": "https://mef.rero.ch/api/concepts/rero/A009955971" + }, + "type": "bf:Topic" + }, + { + "pid": "7524", + "rero": { + "$ref": "https://mef.rero.ch/api/concepts/rero/A010077990" + }, + "type": "bf:Topic" + }, + { + "pid": "7525", + "rero": { + "$ref": "https://mef.rero.ch/api/concepts/rero/A021001001" + }, + "type": "bf:Topic" + }, + { + "pid": "7526", + "rero": { + "$ref": "https://mef.rero.ch/api/concepts/rero/A021001003" + }, + "type": "bf:Topic" + }, + { + "pid": "7527", + "rero": { + "$ref": "https://mef.rero.ch/api/concepts/rero/A021001004" + }, + "type": "bf:Topic" + }, + { + "pid": "7528", + "rero": { + "$ref": "https://mef.rero.ch/api/concepts/rero/A021001005" + }, + "type": "bf:Topic" + }, + { + "pid": "7529", + "rero": { + "$ref": "https://mef.rero.ch/api/concepts/rero/A021001006" + }, + "type": "bf:Topic" + }, + { + "pid": "7530", + "rero": { + "$ref": "https://mef.rero.ch/api/concepts/rero/A021001007" + }, + "type": "bf:Topic" + }, + { + "pid": "7531", + "rero": { + "$ref": "https://mef.rero.ch/api/concepts/rero/A021001008" + }, + "type": "bf:Topic" + }, + { + "pid": "7532", + "rero": { + "$ref": "https://mef.rero.ch/api/concepts/rero/A021001009" + }, + "type": "bf:Topic" + }, + { + "pid": "7533", + "rero": { + "$ref": "https://mef.rero.ch/api/concepts/rero/A021001012" + }, + "type": "bf:Topic" + }, + { + "pid": "7534", + "rero": { + "$ref": "https://mef.rero.ch/api/concepts/rero/A021001013" + }, + "type": "bf:Topic" + }, + { + "pid": "7535", + "rero": { + "$ref": "https://mef.rero.ch/api/concepts/rero/A021001014" + }, + "type": "bf:Topic" + }, + { + "pid": "7536", + "rero": { + "$ref": "https://mef.rero.ch/api/concepts/rero/A021001016" + }, + "type": "bf:Topic" + }, + { + "pid": "7537", + "rero": { + "$ref": "https://mef.rero.ch/api/concepts/rero/A021001017" + }, + "type": "bf:Topic" + }, + { + "pid": "7538", + "rero": { + "$ref": "https://mef.rero.ch/api/concepts/rero/A021001018" + }, + "type": "bf:Topic" + }, + { + "pid": "7539", + "rero": { + "$ref": "https://mef.rero.ch/api/concepts/rero/A021001021" + }, + "type": "bf:Topic" + }, + { + "pid": "7540", + "rero": { + "$ref": "https://mef.rero.ch/api/concepts/rero/A021001023" + }, + "type": "bf:Topic" + }, + { + "pid": "7541", + "rero": { + "$ref": "https://mef.rero.ch/api/concepts/rero/A021001024" + }, + "type": "bf:Topic" + }, + { + "pid": "7542", + "rero": { + "$ref": "https://mef.rero.ch/api/concepts/rero/A021001025" + }, + "type": "bf:Topic" + }, + { + "pid": "7543", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027225798" + } + }, + { + "pid": "7544", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027242250" + } + }, + { + "pid": "7545", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027246159" + } + }, + { + "pid": "7546", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027248062" + } + }, + { + "pid": "7547", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027255468" + } + }, + { + "pid": "7548", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027256138" + } + }, + { + "pid": "7549", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027257045" + } + }, + { + "pid": "7550", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027268284" + } + }, + { + "pid": "7551", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027274144" + } + }, + { + "pid": "7552", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/02727991X" + } + }, + { + "pid": "7553", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/02728607X" + } + }, + { + "pid": "7554", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027292916" + } + }, + { + "pid": "7555", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027302148" + } + }, + { + "pid": "7556", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027308359" + } + }, + { + "pid": "7557", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027317145" + } + }, + { + "pid": "7558", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027323552" + } + }, + { + "pid": "7559", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027328589" + } + }, + { + "pid": "7560", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027330176" + } + }, + { + "pid": "7561", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027333930" + } + }, + { + "pid": "7562", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027336913" + } + }, + { + "pid": "7563", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027345203" + } + }, + { + "pid": "7564", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027355152" + } + }, + { + "pid": "7565", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027355578" + } + }, + { + "pid": "7566", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027355985" + } + }, + { + "pid": "7567", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027356493" + } + }, + { + "pid": "7568", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027365697" + } + }, + { + "pid": "7569", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027368661" + } + }, + { + "pid": "7570", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027374351" + } + }, + { + "pid": "7571", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027376982" + } + }, + { + "pid": "7572", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027391396" + } + }, + { + "pid": "7573", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027396924" + } + }, + { + "pid": "7574", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/02739770X" + } + }, + { + "pid": "7575", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027415252" + } + }, + { + "pid": "7576", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/02743141X" + } + }, + { + "pid": "7577", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027431444" + } + }, + { + "pid": "7578", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027436683" + } + }, + { + "pid": "7579", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027455092" + } + }, + { + "pid": "7580", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027461599" + } + }, + { + "pid": "7581", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027478033" + } + }, + { + "pid": "7582", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027481352" + } + }, + { + "pid": "7583", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027486753" + } + }, + { + "pid": "7584", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027493032" + } + }, + { + "pid": "7585", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027495213" + } + }, + { + "pid": "7586", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027495922" + } + }, + { + "pid": "7587", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/02750333X" + } + }, + { + "pid": "7588", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027506762" + } + }, + { + "pid": "7589", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027516652" + } + }, + { + "pid": "7590", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027519546" + } + }, + { + "pid": "7591", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027519686" + } + }, + { + "pid": "7592", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027528820" + } + }, + { + "pid": "7593", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027532488" + } + }, + { + "pid": "7594", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027545822" + } + }, + { + "pid": "7595", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027564878" + } + }, + { + "pid": "7596", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027578747" + } + }, + { + "pid": "7597", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/02758254X" + } + }, + { + "pid": "7598", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027613275" + } + }, + { + "pid": "7599", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027616908" + } + }, + { + "pid": "7600", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027636461" + } + }, + { + "pid": "7601", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027674118" + } + }, + { + "pid": "7602", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027674150" + } + }, + { + "pid": "7603", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027682226" + } + }, + { + "pid": "7604", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027688836" + } + }, + { + "pid": "7605", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027694852" + } + }, + { + "pid": "7606", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027710025" + } + }, + { + "pid": "7607", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027727327" + } + }, + { + "pid": "7608", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027727521" + } + }, + { + "pid": "7609", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027729044" + } + }, + { + "pid": "7610", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027735893" + } + }, + { + "pid": "7611", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027756580" + } + }, + { + "pid": "7612", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027756653" + } + }, + { + "pid": "7613", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027759547" + } + }, + { + "pid": "7614", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027789551" + } + }, + { + "pid": "7615", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027793575" + } + }, + { + "pid": "7616", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027808394" + } + }, + { + "pid": "7617", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027808629" + } + }, + { + "pid": "7618", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027826171" + } }, { "pid": "7619", "type": "bf:Topic", "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/130730173" + "$ref": "https://mef.rero.ch/api/concepts/idref/027845214" + } + }, + { + "pid": "7620", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/02785082X" + } + }, + { + "pid": "7621", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027856097" + } + }, + { + "pid": "7622", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/02785714X" + } + }, + { + "pid": "7623", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027867277" + } + }, + { + "pid": "7624", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/02786765X" + } + }, + { + "pid": "7625", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027868338" + } + }, + { + "pid": "7626", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027870510" + } + }, + { + "pid": "7627", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027873196" + } + }, + { + "pid": "7628", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/02787608X" + } + }, + { + "pid": "7629", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027883094" + } + }, + { + "pid": "7630", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/02788547X" + } + }, + { + "pid": "7631", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027885496" + } + }, + { + "pid": "7632", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027887960" + } + }, + { + "pid": "7633", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027908380" + } + }, + { + "pid": "7634", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027910210" + } + }, + { + "pid": "7635", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027915115" + } + }, + { + "pid": "7636", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027920216" + } + }, + { + "pid": "7637", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027940373" + } + }, + { + "pid": "7638", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027944492" + } + }, + { + "pid": "7639", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027950808" + } + }, + { + "pid": "7640", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027963675" + } + }, + { + "pid": "7641", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028060563" + } + }, + { + "pid": "7642", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028071867" + } + }, + { + "pid": "7643", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028071964" + } + }, + { + "pid": "7644", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/02807842X" + } + }, + { + "pid": "7645", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/02810160X" + } + }, + { + "pid": "7646", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028140362" + } + }, + { + "pid": "7647", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028148800" + } + }, + { + "pid": "7648", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028211162" + } + }, + { + "pid": "7649", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028225090" + } + }, + { + "pid": "7650", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028225767" + } + }, + { + "pid": "7651", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028233506" + } + }, + { + "pid": "7652", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028262220" + } + }, + { + "pid": "7653", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028287169" + } + }, + { + "pid": "7654", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028359380" + } + }, + { + "pid": "7655", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028431855" + } + }, + { + "pid": "7656", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028433890" + } + }, + { + "pid": "7657", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028497244" + } + }, + { + "pid": "7658", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028517180" + } + }, + { + "pid": "7659", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/02852019X" + } + }, + { + "pid": "7660", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028549082" + } + }, + { + "pid": "7661", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028631609" + } + }, + { + "pid": "7662", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028637720" + } + }, + { + "pid": "7663", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028675274" + } + }, + { + "pid": "7664", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028676661" + } + }, + { + "pid": "7665", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/02868589X" + } + }, + { + "pid": "7666", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028698703" + } + }, + { + "pid": "7667", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028700139" + } + }, + { + "pid": "7668", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028700171" + } + }, + { + "pid": "7669", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028725387" + } + }, + { + "pid": "7670", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028898338" + } + }, + { + "pid": "7671", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028909917" + } + }, + { + "pid": "7672", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028910737" + } + }, + { + "pid": "7673", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028912098" + } + }, + { + "pid": "7674", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028929098" + } + }, + { + "pid": "7675", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028973631" + } + }, + { + "pid": "7676", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/02900294X" + } + }, + { + "pid": "7677", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/02904197X" + } + }, + { + "pid": "7678", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/029042046" + } + }, + { + "pid": "7679", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/029042186" + } + }, + { + "pid": "7680", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/02905026X" + } + }, + { + "pid": "7681", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/029182387" + } + }, + { + "pid": "7682", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/029205794" + } + }, + { + "pid": "7683", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/029342147" + } + }, + { + "pid": "7684", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/029344212" + } + }, + { + "pid": "7685", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/029347254" + } + }, + { + "pid": "7686", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/029349230" + } + }, + { + "pid": "7687", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/029404614" + } + }, + { + "pid": "7688", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/029410312" + } + }, + { + "pid": "7689", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/029575168" + } + }, + { + "pid": "7690", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/029652308" + } + }, + { + "pid": "7691", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/029726190" + } + }, + { + "pid": "7692", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/029753090" + } + }, + { + "pid": "7693", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/029755999" + } + }, + { + "pid": "7694", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/029795826" + } + }, + { + "pid": "7695", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/029888026" + } + }, + { + "pid": "7696", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/029918006" + } + }, + { + "pid": "7697", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/029933730" + } + }, + { + "pid": "7698", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/029958857" + } + }, + { + "pid": "7699", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/03001235X" + } + }, + { + "pid": "7700", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/030017653" + } + }, + { + "pid": "7701", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/030055849" + } + }, + { + "pid": "7702", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/030086469" + } + }, + { + "pid": "7703", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/030128145" + } + }, + { + "pid": "7704", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/03018729X" + } + }, + { + "pid": "7705", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/030219884" + } + }, + { + "pid": "7706", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/030336880" + } + }, + { + "pid": "7707", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/030423724" + } + }, + { + "pid": "7708", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/030435056" + } + }, + { + "pid": "7709", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/030642841" + } + }, + { + "pid": "7710", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/030768381" + } + }, + { + "pid": "7711", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/03082401X" + } + }, + { + "pid": "7712", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/030904218" + } + }, + { + "pid": "7713", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/030909120" + } + }, + { + "pid": "7714", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/030924987" + } + }, + { + "pid": "7715", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/030975689" + } + }, + { + "pid": "7716", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/031018866" + } + }, + { + "pid": "7717", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/031067956" + } + }, + { + "pid": "7718", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/031208495" + } + }, + { + "pid": "7719", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/031380107" + } + }, + { + "pid": "7720", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/031531121" + } + }, + { + "pid": "7721", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/03166010X" + } + }, + { + "pid": "7722", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/031819877" + } + }, + { + "pid": "7723", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/032027524" + } + }, + { + "pid": "7724", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/032184034" + } + }, + { + "pid": "7725", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/032317468" + } + }, + { + "pid": "7726", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/032324650" + } + }, + { + "pid": "7727", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/032324804" + } + }, + { + "pid": "7728", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/032370474" + } + }, + { + "pid": "7729", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/03243782X" + } + }, + { + "pid": "7730", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/032493940" + } + }, + { + "pid": "7731", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/032506929" + } + }, + { + "pid": "7732", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/03256953X" + } + }, + { + "pid": "7733", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/032675011" + } + }, + { + "pid": "7734", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/032709501" + } + }, + { + "pid": "7735", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/032916078" + } + }, + { + "pid": "7736", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/032978294" + } + }, + { + "pid": "7737", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/033125341" + } + }, + { + "pid": "7738", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/033136831" + } + }, + { + "pid": "7739", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/033422605" + } + }, + { + "pid": "7740", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/033433763" + } + }, + { + "pid": "7741", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/033642036" + } + }, + { + "pid": "7742", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/033738653" + } + }, + { + "pid": "7743", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/03374033X" + } + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041878515" + }, + "pid": "7744", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/033869235" + } + }, + { + "pid": "7745", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/033895732" + } + }, + { + "pid": "7746", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/034054693" + } + }, + { + "pid": "7747", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/03405491X" + } + }, + { + "pid": "7748", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/034133704" + } + }, + { + "pid": "7749", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/034195688" + } + }, + { + "pid": "7750", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/034254145" + } + }, + { + "pid": "7751", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/034259910" + } + }, + { + "pid": "7752", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/034308695" + } + }, + { + "pid": "7753", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/034342230" + } + }, + { + "pid": "7754", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/034566228" + } + }, + { + "pid": "7755", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/034591966" + } + }, + { + "pid": "7756", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/034623574" + } + }, + { + "pid": "7757", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/034679391" + } + }, + { + "pid": "7758", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/034705384" + } + }, + { + "pid": "7759", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/03472690X" + } + }, + { + "pid": "7760", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/034766995" + } + }, + { + "pid": "7761", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/034781897" + } + }, + { + "pid": "7762", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/034857923" + } + }, + { + "pid": "7763", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/034885420" + } + }, + { + "pid": "7764", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/034892710" + } + }, + { + "pid": "7765", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/034960848" + } + }, + { + "pid": "7766", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/035061308" + } + }, + { + "pid": "7767", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/035095679" + } + }, + { + "pid": "7768", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/035167734" + } + }, + { + "pid": "7769", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/035198222" + } + }, + { + "pid": "7770", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/035260521" + } + }, + { + "pid": "7771", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/035461152" + } + }, + { + "pid": "7772", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/035486686" + } + }, + { + "pid": "7773", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/035527250" + } + }, + { + "pid": "7774", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/035621664" + } + }, + { + "pid": "7775", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/035634847" + } + }, + { + "pid": "7776", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/035650532" + } + }, + { + "pid": "7777", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/035658622" + } + }, + { + "pid": "7778", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/035724099" + } + }, + { + "pid": "7779", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/050124315" + } + }, + { + "pid": "7780", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/050186647" + } + }, + { + "pid": "7781", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/050220284" + } + }, + { + "pid": "7782", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/050366157" + } + }, + { + "pid": "7783", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/05041870X" + } + }, + { + "pid": "7784", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/050516760" + } + }, + { + "pid": "7785", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/050518526" + } + }, + { + "pid": "7786", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/050534882" + } + }, + { + "pid": "7787", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/05056479X" + } + }, + { + "pid": "7788", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/050582453" + } + }, + { + "pid": "7789", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/050602195" + } + }, + { + "pid": "7790", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/050627953" + } + }, + { + "pid": "7791", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/050702858" + } + }, + { + "pid": "7792", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/050764861" + } + }, + { + "pid": "7793", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/050773313" + } + }, + { + "pid": "7794", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/050784005" + } + }, + { + "pid": "7795", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/050808583" + } + }, + { + "pid": "7796", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/050827405" + } + }, + { + "pid": "7797", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/052587207" + } + }, + { + "pid": "7798", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/052634833" + } + }, + { + "pid": "7799", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/053469844" + } + }, + { + "pid": "7800", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/055308600" + } + }, + { + "pid": "7801", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/059302208" + } + }, + { + "pid": "7802", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/05930278X" + } + }, + { + "pid": "7803", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/059307374" + } + }, + { + "pid": "7804", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/06082929X" + } + }, + { + "pid": "7805", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/06160738X" + } + }, + { + "pid": "7806", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/075000504" + } + }, + { + "pid": "7807", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/077057589" + } + }, + { + "pid": "7808", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/077060377" + } + }, + { + "pid": "7809", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/077062809" + } + }, + { + "pid": "7810", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/077075757" + } + }, + { + "pid": "7811", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/077088883" + } + }, + { + "pid": "7812", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/077091035" + } + }, + { + "pid": "7813", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/077397827" + } + }, + { + "pid": "7814", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/077937007" + } + }, + { + "pid": "7815", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/078974089" + } + }, + { + "pid": "7816", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/079180043" + } + }, + { + "pid": "7817", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/081665660" + } + }, + { + "pid": "7818", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/083421467" + } + }, + { + "pid": "7819", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/083972684" + } + }, + { + "pid": "7820", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/08523611X" + } + }, + { + "pid": "7821", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/087834979" + } + }, + { + "pid": "7822", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/087960621" + } + }, + { + "pid": "7823", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/092468594" + } + }, + { + "pid": "7824", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/092468950" + } + }, + { + "pid": "7825", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/101481071" + } + }, + { + "pid": "7826", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/110905687" + } + }, + { + "pid": "7827", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/111597153" + } + }, + { + "pid": "7828", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/112539750" + } + }, + { + "pid": "7829", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/115898840" + } + }, + { + "pid": "7830", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/118419722" + } + }, + { + "pid": "7831", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/118420763" + } + }, + { + "pid": "7832", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/11948949X" + } + }, + { + "pid": "7833", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/120299658" + } + }, + { + "pid": "7834", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/12059353X" + } + }, + { + "pid": "7835", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/122348486" + } + }, + { + "pid": "7836", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/122348877" + } + }, + { + "pid": "7837", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/122957032" + } + }, + { + "pid": "7838", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/123472466" + } + }, + { + "pid": "7839", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/124452248" + } + }, + { + "pid": "7840", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/129822051" + } + }, + { + "pid": "7841", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/130683035" + } + }, + { + "pid": "7842", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/13073019X" + } + }, + { + "pid": "7843", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/131981226" + } + }, + { + "pid": "7844", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/132211378" + } + }, + { + "pid": "7845", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/133566129" + } + }, + { + "pid": "7846", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/135615003" + } + }, + { + "pid": "7847", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/136707165" + } + }, + { + "pid": "7848", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/13776541X" + } + }, + { + "pid": "7849", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/137978685" + } + }, + { + "pid": "7850", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/139100857" + } + }, + { + "pid": "7851", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/142761583" + } + }, + { + "pid": "7852", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/144664194" + } + }, + { + "pid": "7853", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/145035468" + } + }, + { + "pid": "7854", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/145909093" + } + }, + { + "pid": "7855", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/146923081" + } + }, + { + "pid": "7856", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/147286433" + } + }, + { + "pid": "7857", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/148541372" + } + }, + { + "pid": "7858", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/148542182" + } + }, + { + "pid": "7859", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/151385432" + } + }, + { + "pid": "7860", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/15212201X" + } + }, + { + "pid": "7861", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/15909545X" + } + }, + { + "pid": "7862", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/167934813" + } + }, + { + "pid": "7863", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/168476010" + } + }, + { + "pid": "7864", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/169910733" + } + }, + { + "pid": "7865", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/17129226X" + } + }, + { + "pid": "7866", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/17523308X" + } + }, + { + "pid": "7867", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/17939360X" + } + }, + { + "pid": "7868", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/180214845" + } + }, + { + "pid": "7869", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/180214926" + } + }, + { + "pid": "7870", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/18028505X" + } + }, + { + "pid": "7871", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/181882604" + } + }, + { + "pid": "7872", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/182446174" + } + }, + { + "pid": "7873", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/183790936" + } + }, + { + "pid": "7874", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/183791428" + } + }, + { + "pid": "7875", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/184625807" + } + }, + { + "pid": "7876", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/185018440" + } + }, + { + "pid": "7877", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/187082324" + } + }, + { + "pid": "7878", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/190795786" + } + }, + { + "pid": "7879", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/190994320" + } + }, + { + "pid": "7880", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/193304104" + } + }, + { + "pid": "7881", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/193617668" + } + }, + { + "pid": "7882", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/196951763" + } + }, + { + "pid": "7883", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/197956653" + } + }, + { + "pid": "7884", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/197957358" + } + }, + { + "pid": "7885", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/199344019" + } + }, + { + "pid": "7886", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/199344248" + } + }, + { + "pid": "7887", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/200582038" + } + }, + { + "pid": "7888", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/200884530" + } + }, + { + "pid": "7889", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/204008557" + } + }, + { + "pid": "7890", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/219951152" + } + }, + { + "pid": "7891", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/219966540" + } + }, + { + "pid": "7892", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/223495913" + } + }, + { + "pid": "7893", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/223831840" + } + }, + { + "pid": "7894", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/225382520" + } + }, + { + "pid": "7895", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/227367677" + } + }, + { + "pid": "7896", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/227858689" + } + }, + { + "pid": "7897", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/228803608" + } + }, + { + "pid": "7898", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/232818665" + } + }, + { + "pid": "7899", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/234183721" + } + }, + { + "pid": "7900", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/236280147" + } + }, + { + "pid": "7901", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/26110683X" + } + }, + { + "pid": "7902", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/261107119" + } + }, + { + "pid": "7903", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/261901915" + } + }, + { + "pid": "7904", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/263499758" + } + }, + { + "pid": "7905", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/264222423" + } + }, + { + "pid": "7906", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/264325974" + } + }, + { + "pid": "7907", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/264387414" + } + }, + { + "pid": "7908", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/264387538" + } + }, + { + "pid": "7909", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/26438833X" + } + }, + { + "pid": "7910", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/271981423" + } + }, + { + "pid": "7911", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/27874690X" + } + }, + { + "pid": "7912", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278746969" + } + }, + { + "pid": "7913", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278746985" + } + }, + { + "pid": "7914", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278746993" + } + }, + { + "pid": "7915", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747000" + } + }, + { + "pid": "7916", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747019" + } + }, + { + "pid": "7917", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747043" + } + }, + { + "pid": "7918", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747167" + } + }, + { + "pid": "7919", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747175" + } + }, + { + "pid": "7920", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747183" + } + }, + { + "pid": "7921", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747191" + } + }, + { + "pid": "7922", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/27874723X" + } + }, + { + "pid": "7923", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747280" + } + }, + { + "pid": "7924", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747329" + } + }, + { + "pid": "7925", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279034725" + } + }, + { + "pid": "7926", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279034733" + } + }, + { + "pid": "7927", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279034741" + } + }, + { + "pid": "7928", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/27903475X" + } + }, + { + "pid": "7929", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279034806" + } + }, + { + "pid": "7930", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279034814" + } + }, + { + "pid": "7931", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279034822" + } + }, + { + "pid": "7932", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279034849" + } + }, + { + "pid": "7933", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279034881" + } + }, + { + "pid": "7934", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/27903492X" + } + }, + { + "pid": "7935", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279034946" + } + }, + { + "pid": "7936", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279034962" + } + }, + { + "pid": "7937", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279034970" + } + }, + { + "pid": "7938", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279034997" + } + }, + { + "pid": "7939", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279035020" + } + }, + { + "pid": "7940", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279035063" + } + }, + { + "pid": "7941", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279035071" + } + }, + { + "pid": "7942", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/27903508X" + } + }, + { + "pid": "7943", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279035098" + } + }, + { + "pid": "7944", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279035101" + } + }, + { + "pid": "7945", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279035144" + } + }, + { + "pid": "7946", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279035241" + } + }, + { + "pid": "7947", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027233960" + } + }, + { + "pid": "7948", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027238431" + } + }, + { + "pid": "7949", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027248720" + } + }, + { + "pid": "7950", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027255522" + } + }, + { + "pid": "7951", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027258556" + } + }, + { + "pid": "7952", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027266273" + } + }, + { + "pid": "7953", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027314073" + } + }, + { + "pid": "7954", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027361705" + } + }, + { + "pid": "7955", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027390349" + } + }, + { + "pid": "7956", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/02741664X" + } + }, + { + "pid": "7957", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027802973" + } + }, + { + "pid": "7958", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027824586" + } + }, + { + "pid": "7959", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027855929" + } + }, + { + "pid": "7960", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028205847" + } + }, + { + "pid": "7961", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028221044" + } + }, + { + "pid": "7962", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028889347" + } + }, + { + "pid": "7963", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028938615" + } + }, + { + "pid": "7964", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/031082599" + } + }, + { + "pid": "7965", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/031955274" + } + }, + { + "pid": "7966", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/03465500X" + } + }, + { + "pid": "7967", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/035141913" + } + }, + { + "pid": "7968", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/05058748X" + } + }, + { + "pid": "7969", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/061612820" + } + }, + { + "pid": "7970", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/127977996" + } + }, + { + "pid": "7971", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/131462415" + } + }, + { + "pid": "7972", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/144331373" + } + }, + { + "pid": "7973", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/180213911" + } + }, + { + "pid": "7974", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/181492628" + } + }, + { + "pid": "7975", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/273372734" + } + }, + { + "pid": "7976", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/273372742" + } + }, + { + "pid": "7977", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/273372750" + } + }, + { + "pid": "7978", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/273372777" + } + }, + { + "pid": "7979", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/273372785" + } + }, + { + "pid": "7980", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/277418216" + } + }, + { + "pid": "7981", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279035152" + } + }, + { + "pid": "7982", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279035160" + } + }, + { + "pid": "7983", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279035179" + } + }, + { + "pid": "7984", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279035187" + } + }, + { + "pid": "7985", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307322" + } + }, + { + "pid": "7986", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307330" + } + }, + { + "pid": "7987", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307349" + } + }, + { + "pid": "7988", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307357" + } + }, + { + "pid": "7989", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307365" + } + }, + { + "pid": "7990", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307373" + } + }, + { + "pid": "7991", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307462" + } + }, + { + "pid": "7992", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307470" + } + }, + { + "pid": "7993", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307519" + } + }, + { + "pid": "7994", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307535" + } + }, + { + "pid": "7995", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/27930756X" + } + }, + { + "pid": "7996", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307578" + } + }, + { + "pid": "7997", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307586" + } + }, + { + "pid": "7998", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307594" + } + }, + { + "pid": "7999", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307632" + } + }, + { + "pid": "8000", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307713" + } + }, + { + "pid": "8001", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/27930773X" + } + }, + { + "pid": "8002", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307748" + } + }, + { + "pid": "8003", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307780" + } + }, + { + "pid": "8004", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307799" + } + }, + { + "pid": "8005", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307810" + } + }, + { + "pid": "8006", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307837" + } + }, + { + "pid": "8007", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307853" + } + }, + { + "pid": "8008", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027222144" + } + }, + { + "pid": "8009", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027236897" + } + }, + { + "pid": "8010", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027276457" + } + }, + { + "pid": "8011", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027307565" + } + }, + { + "pid": "8012", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/02767391X" + } + }, + { + "pid": "8013", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027800512" + } + }, + { + "pid": "8014", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/02781971X" + } + }, + { + "pid": "8015", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/02787642X" + } + }, + { + "pid": "8016", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028374878" + } + }, + { + "pid": "8017", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/028932358" + } + }, + { + "pid": "8018", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/030120640" + } + }, + { + "pid": "8019", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/03136795X" + } + }, + { + "pid": "8020", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/033293074" + } + }, + { + "pid": "8021", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/050174495" + } + }, + { + "pid": "8022", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/06008989X" + } + }, + { + "pid": "8023", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/061604496" + } + }, + { + "pid": "8024", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/178480231" + } + }, + { + "pid": "8025", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/238529495" + } + }, + { + "pid": "8026", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/263906442" + } + }, + { + "pid": "8027", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/264225260" + } + }, + { + "pid": "8028", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/276037685" + } + }, + { + "pid": "8029", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278746896" + } + }, + { + "pid": "8030", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278746918" + } + }, + { + "pid": "8031", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278746926" + } + }, + { + "pid": "8032", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278746934" + } + }, + { + "pid": "8033", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278746942" + } + }, + { + "pid": "8034", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278746950" + } + }, + { + "pid": "8035", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278746977" + } + }, + { + "pid": "8036", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747027" + } + }, + { + "pid": "8037", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747035" + } + }, + { + "pid": "8038", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747051" + } + }, + { + "pid": "8039", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/27874706X" + } + }, + { + "pid": "8040", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747086" + } + }, + { + "pid": "8041", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747094" + } + }, + { + "pid": "8042", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747108" + } + }, + { + "pid": "8043", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747116" + } + }, + { + "pid": "8044", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747124" + } + }, + { + "pid": "8045", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747132" + } + }, + { + "pid": "8046", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747140" + } + }, + { + "pid": "8047", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747159" + } + }, + { + "pid": "8048", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747213" + } + }, + { + "pid": "8049", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747221" + } + }, + { + "pid": "8050", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747248" + } + }, + { + "pid": "8051", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747256" + } + }, + { + "pid": "8052", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747264" + } + }, + { + "pid": "8053", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747272" + } + }, + { + "pid": "8054", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747299" + } + }, + { + "pid": "8055", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747302" + } + }, + { + "pid": "8056", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279034768" + } + }, + { + "pid": "8057", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279034776" + } + }, + { + "pid": "8058", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279034784" + } + }, + { + "pid": "8059", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279034792" + } + }, + { + "pid": "8060", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279034865" + } + }, + { + "pid": "8061", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279034873" + } + }, + { + "pid": "8062", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/27903489X" + } + }, + { + "pid": "8063", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279034903" + } + }, + { + "pid": "8064", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279035039" + } + }, + { + "pid": "8065", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027275639" + } + }, + { + "pid": "8066", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027362434" + } + }, + { + "pid": "8067", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/027612163" + } + }, + { + "pid": "8068", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/029385571" + } + }, + { + "pid": "8069", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/029877555" + } + }, + { + "pid": "8070", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/033689725" + } + }, + { + "pid": "8071", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/035381795" + } + }, + { + "pid": "8072", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/174718276" + } + }, + { + "pid": "8073", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/278747078" + } + }, + { + "pid": "8074", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279034954" + } + }, + { + "pid": "8075", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307381" + } + }, + { + "pid": "8076", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/27930739X" + } + }, + { + "pid": "8077", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307403" + } + }, + { + "pid": "8078", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307411" + } + }, + { + "pid": "8079", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/27930742X" + } + }, + { + "pid": "8080", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307438" + } + }, + { + "pid": "8081", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307446" + } + }, + { + "pid": "8082", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307454" + } + }, + { + "pid": "8083", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307543" + } + }, + { + "pid": "8084", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307608" + } + }, + { + "pid": "8085", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307616" + } + }, + { + "pid": "8086", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307640" + } + }, + { + "pid": "8087", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307659" + } + }, + { + "pid": "8088", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307667" + } + }, + { + "pid": "8089", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307675" + } + }, + { + "pid": "8090", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307683" + } + }, + { + "pid": "8091", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307705" + } + }, + { + "pid": "8092", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307721" + } + }, + { + "pid": "8093", + "type": "bf:Topic", + "idref": { + "$ref": "https://mef.rero.ch/api/concepts/idref/279307756" } }, { - "pid": "7620", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/132184214" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334542139" + }, + "pid": "8094", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334538549" + }, + "pid": "8095", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334484775" + }, + "pid": "8096", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334336342" + }, + "pid": "8097", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334320462" + }, + "pid": "8098", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334314950" + }, + "pid": "8099", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334231826" + }, + "pid": "8100", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334230463" + }, + "pid": "8101", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334227209" + }, + "pid": "8102", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334225907" + }, + "pid": "8103", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334131074" + }, + "pid": "8104", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334127158" + }, + "pid": "8105", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334091412" + }, + "pid": "8106", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334089663" + }, + "pid": "8107", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334088837" + }, + "pid": "8108", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334088217" + }, + "pid": "8109", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334087156" + }, + "pid": "8110", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/133400076X" + }, + "pid": "8111", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333993331" + }, + "pid": "8112", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333992548" + }, + "pid": "8113", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333987366" + }, + "pid": "8114", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/133396420X" + }, + "pid": "8115", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333876874" + }, + "pid": "8116", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333855907" + }, + "pid": "8117", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/133385501X" + }, + "pid": "8118", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333853084" + }, + "pid": "8119", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333852673" + }, + "pid": "8120", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333849788" + }, + "pid": "8121", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333849435" + }, + "pid": "8122", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333729863" + }, + "pid": "8123", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333716354" + }, + "pid": "8124", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333566352" + }, + "pid": "8125", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333421427" + }, + "pid": "8126", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333376049" + }, + "pid": "8127", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/133335245X" + }, + "pid": "8128", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333352085" + }, + "pid": "8129", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333331002" + }, + "pid": "8130", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333323778" + }, + "pid": "8131", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333312415" + }, + "pid": "8132", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333312326" + }, + "pid": "8133", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333270267" + }, + "pid": "8134", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/133326514X" + }, + "pid": "8135", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333260830" + }, + "pid": "8136", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333256302" + }, + "pid": "8137", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/133325590X" + }, + "pid": "8138", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333255616" + }, + "pid": "8139", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333210043" + }, + "pid": "8140", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333209908" + }, + "pid": "8141", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333208901" + }, + "pid": "8142", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333141017" + }, + "pid": "8143", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333125127" + }, + "pid": "8144", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333119267" + }, + "pid": "8145", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333118023" + }, + "pid": "8146", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333117329" + }, + "pid": "8147", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333115881" + }, + "pid": "8148", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333113749" + }, + "pid": "8149", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333065841" + }, + "pid": "8150", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333064136" + }, + "pid": "8151", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333063970" + }, + "pid": "8152", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333063717" + }, + "pid": "8153", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/133306179X" + }, + "pid": "8154", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333037414" + }, + "pid": "8155", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333027249" + }, + "pid": "8156", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332990258" + }, + "pid": "8157", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332899730" + }, + "pid": "8158", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332895018" + }, + "pid": "8159", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332889549" + }, + "pid": "8160", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332775381" + }, + "pid": "8161", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332774113" + }, + "pid": "8162", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/133276648X" + }, + "pid": "8163", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332759254" + }, + "pid": "8164", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332688047" + }, + "pid": "8165", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332661297" + }, + "pid": "8166", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332657273" + }, + "pid": "8167", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332649688" + }, + "pid": "8168", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332459587" + }, + "pid": "8169", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332430376" + }, + "pid": "8170", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332426751" + }, + "pid": "8171", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332365841" + }, + "pid": "8172", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332318142" + }, + "pid": "8173", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332111971" + }, + "pid": "8174", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332095119" + }, + "pid": "8175", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/133197612X" + }, + "pid": "8176", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/133197593X" + }, + "pid": "8177", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331975794" + }, + "pid": "8178", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331886929" + }, + "pid": "8179", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331876540" + }, + "pid": "8180", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331840627" + }, + "pid": "8181", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331747716" + }, + "pid": "8182", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331734126" + }, + "pid": "8183", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331734045" + }, + "pid": "8184", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331733316" + }, + "pid": "8185", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331723361" + }, + "pid": "8186", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331719054" + }, + "pid": "8187", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331717353" + }, + "pid": "8188", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331710464" + }, + "pid": "8189", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331704014" + }, + "pid": "8190", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331614392" + }, + "pid": "8191", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331613426" + }, + "pid": "8192", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331605164" + }, + "pid": "8193", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331605091" + }, + "pid": "8194", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331604893" + }, + "pid": "8195", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331603897" + }, + "pid": "8196", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331594014" + }, + "pid": "8197", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331592208" + }, + "pid": "8198", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331584167" + }, + "pid": "8199", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331530806" + }, + "pid": "8200", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331496918" + }, + "pid": "8201", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331482941" + }, + "pid": "8202", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331380073" + }, + "pid": "8203", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331102170" + }, + "pid": "8204", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1330854640" + }, + "pid": "8205", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1330843584" + }, + "pid": "8206", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1330586557" + }, + "pid": "8207", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1330586271" + }, + "pid": "8208", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1330585992" + }, + "pid": "8209", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1330585747" + }, + "pid": "8210", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1330447611" + }, + "pid": "8211", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1330433858" + }, + "pid": "8212", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1330430964" + }, + "pid": "8213", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1330343085" + }, + "pid": "8214", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1330186664" + }, + "pid": "8215", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1329650123" + }, + "pid": "8216", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1329573331" + }, + "pid": "8217", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1329325958" + }, + "pid": "8218", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1328905152" + }, + "pid": "8219", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1328159116" + }, + "pid": "8220", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1328114813" + }, + "pid": "8221", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1326598325" + }, + "pid": "8222", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1325970743" + }, + "pid": "8223", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1325836214" + }, + "pid": "8224", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1325526541" + }, + "pid": "8225", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1324473703" + }, + "pid": "8226", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1324101571" + }, + "pid": "8227", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1322498083" + }, + "pid": "8228", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1321930690" + }, + "pid": "8229", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1321369956" + }, + "pid": "8230", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1321325754" + }, + "pid": "8231", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/132121202X" + }, + "pid": "8232", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1319608302" + }, + "pid": "8233", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1319352146" + }, + "pid": "8234", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1318875676" + }, + "pid": "8235", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1318600871" + }, + "pid": "8236", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1318529573" + }, + "pid": "8237", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1315438240" + }, + "pid": "8238", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1315344238" + }, + "pid": "8239", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1315166526" + }, + "pid": "8240", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1314207296" + }, + "pid": "8241", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1314016547" + }, + "pid": "8242", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1314016032" + }, + "pid": "8243", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1311509100" + }, + "pid": "8244", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/131143609X" + }, + "pid": "8245", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1311352430" + }, + "pid": "8246", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1310159343" + }, + "pid": "8247", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/130899687X" + }, + "pid": "8248", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1308455038" + }, + "pid": "8249", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1305992857" + }, + "pid": "8250", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1302496050" + }, + "pid": "8251", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/129922539X" + }, + "pid": "8252", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1298858054" + }, + "pid": "8253", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1298312817" + }, + "pid": "8254", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1297822668" + }, + "pid": "8255", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1295539519" + }, + "pid": "8256", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1293306673" + }, + "pid": "8257", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1283002477" + }, + "pid": "8258", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/127857025X" + }, + "pid": "8259", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1278063730" + }, + "pid": "8260", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1277678871" + }, + "pid": "8261", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1277560676" + }, + "pid": "8262", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1276707304" + }, + "pid": "8263", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1276176597" + }, + "pid": "8264", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1275619533" + }, + "pid": "8265", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1275172962" + }, + "pid": "8266", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1274948169" + }, + "pid": "8267", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1274269121" + }, + "pid": "8268", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1273395077" + }, + "pid": "8269", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1273298268" + }, + "pid": "8270", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1273295374" + }, + "pid": "8271", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1270459880" + }, + "pid": "8272", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1268867829" + }, + "pid": "8273", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1267608781" + }, + "pid": "8274", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1267608366" + }, + "pid": "8275", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1267358122" + }, + "pid": "8276", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1266800611" + }, + "pid": "8277", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1266799931" + }, + "pid": "8278", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1264956134" + }, + "pid": "8279", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1262928265" + }, + "pid": "8280", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1261933737" + }, + "pid": "8281", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1259460460" + }, + "pid": "8282", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1258881675" + }, + "pid": "8283", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/125746423X" + }, + "pid": "8284", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1257346415" + }, + "pid": "8285", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1257092804" + }, + "pid": "8286", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1254569642" + }, + "pid": "8287", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1254535594" + }, + "pid": "8288", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1253837457" + }, + "pid": "8289", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1252827512" + }, + "pid": "8290", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1252257295" + }, + "pid": "8291", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1251536492" + }, + "pid": "8292", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1250258731" + }, + "pid": "8293", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/124994516X" + }, + "pid": "8294", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1249112877" + }, + "pid": "8295", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1248945506" + }, + "pid": "8296", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1247639401" + }, + "pid": "8297", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1246126877" + }, + "pid": "8298", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/124608841X" + }, + "pid": "8299", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1241975299" + }, + "pid": "8300", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1234514702" + }, + "pid": "8301", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1232346071" + }, + "pid": "8302", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1228154325" + }, + "pid": "8303", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1225893461" + }, + "pid": "8304", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1219598135" + }, + "pid": "8305", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1210456753" + }, + "pid": "8306", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1202575048" + }, + "pid": "8307", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1201330661" + }, + "pid": "8308", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1199404365" + }, + "pid": "8309", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1198723262" + }, + "pid": "8310", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1191508781" + }, + "pid": "8311", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1188589024" + }, + "pid": "8312", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1183863349" + }, + "pid": "8313", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1181268311" + }, + "pid": "8314", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1181007100" + }, + "pid": "8315", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1173842845" + }, + "pid": "8316", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1173062238" + }, + "pid": "8317", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1172567794" + }, + "pid": "8318", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1166161722" + }, + "pid": "8319", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1165352362" + }, + "pid": "8320", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1165347768" + }, + "pid": "8321", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1162072040" + }, + "pid": "8322", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1161142878" + }, + "pid": "8323", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1155851412" + }, + "pid": "8324", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1155424573" + }, + "pid": "8325", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1153834367" + }, + "pid": "8326", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1150861010" + }, + "pid": "8327", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1145186815" + }, + "pid": "8328", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1144301971" + }, + "pid": "8329", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/114005791X" + }, + "pid": "8330", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1139178725" + }, + "pid": "8331", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1135938261" + }, + "pid": "8332", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1122355092" + }, + "pid": "8333", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1121689914" + }, + "pid": "8334", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1118514823" + }, + "pid": "8335", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1117164012" + }, + "pid": "8336", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1116981521" + }, + "pid": "8337", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1115371371" + }, + "pid": "8338", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1099123399" + }, + "pid": "8339", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1081489480" + }, + "pid": "8340", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1078298378" + }, + "pid": "8341", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/107366371X" + }, + "pid": "8342", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1073212491" + }, + "pid": "8343", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1072727021" + }, + "pid": "8344", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1072723875" + }, + "pid": "8345", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/107257439X" + }, + "pid": "8346", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1070750409" + }, + "pid": "8347", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1069698822" + }, + "pid": "8348", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1069336971" + }, + "pid": "8349", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1068604875" + }, + "pid": "8350", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1066801789" + }, + "pid": "8351", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1064698727" + }, + "pid": "8352", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1064281230" + }, + "pid": "8353", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1064280692" + }, + "pid": "8354", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/106427546X" + }, + "pid": "8355", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1064098363" + }, + "pid": "8356", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1063927137" + }, + "pid": "8357", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1063927110" + }, + "pid": "8358", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1063925908" + }, + "pid": "8359", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1063349230" + }, + "pid": "8360", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1062937325" + }, + "pid": "8361", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060931796" + }, + "pid": "8362", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060912503" + }, + "pid": "8363", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060909251" + }, + "pid": "8364", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060907534" + }, + "pid": "8365", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060882345" + }, + "pid": "8366", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060882191" + }, + "pid": "8367", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060881373" + }, + "pid": "8368", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060881039" + }, + "pid": "8369", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060858703" + }, + "pid": "8370", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060811529" + }, + "pid": "8371", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060804263" + }, + "pid": "8372", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060778947" + }, + "pid": "8373", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060674483" + }, + "pid": "8374", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060581957" + }, + "pid": "8375", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060577895" + }, + "pid": "8376", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/106057683X" + }, + "pid": "8377", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060521229" + }, + "pid": "8378", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060471329" + }, + "pid": "8379", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060399172" + }, + "pid": "8380", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060358328" + }, + "pid": "8381", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/106013411X" + }, + "pid": "8382", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060114909" + }, + "pid": "8383", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060090236" + }, + "pid": "8384", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060077914" + }, + "pid": "8385", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1060077817" + }, + "pid": "8386", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1059889455" + }, + "pid": "8387", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1059823527" + }, + "pid": "8388", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1059732483" + }, + "pid": "8389", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/105962091X" + }, + "pid": "8390", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/105960552X" + }, + "pid": "8391", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1059558653" + }, + "pid": "8392", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1059464667" + }, + "pid": "8393", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1059463385" + }, + "pid": "8394", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1059408058" + }, + "pid": "8395", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1059388502" + }, + "pid": "8396", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1059388499" + }, + "pid": "8397", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1059388464" + }, + "pid": "8398", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1059384434" + }, + "pid": "8399", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1059383780" + }, + "pid": "8400", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1059323001" + }, + "pid": "8401", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1059271745" + }, + "pid": "8402", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1059254697" + }, + "pid": "8403", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1059254646" + }, + "pid": "8404", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1059226529" + }, + "pid": "8405", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1059152312" + }, + "pid": "8406", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1059103257" + }, + "pid": "8407", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1059090767" + }, + "pid": "8408", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1059087871" + }, + "pid": "8409", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1058986295" + }, + "pid": "8410", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/105896920X" + }, + "pid": "8411", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1058846361" + }, + "pid": "8412", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1058723790" + }, + "pid": "8413", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1058674900" + }, + "pid": "8414", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1058669559" + }, + "pid": "8415", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/105862394X" + }, + "pid": "8416", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1058513710" + }, + "pid": "8417", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1058507044" + }, + "pid": "8418", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1058389041" + }, + "pid": "8419", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1058382799" + }, + "pid": "8420", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1058371266" + }, + "pid": "8421", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1058370677" + }, + "pid": "8422", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1058284371" + }, + "pid": "8423", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1058284304" + }, + "pid": "8424", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1058284096" + }, + "pid": "8425", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1058280910" + }, + "pid": "8426", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1058249436" + }, + "pid": "8427", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1058206753" + }, + "pid": "8428", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1058118161" + }, + "pid": "8429", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1055857745" + }, + "pid": "8430", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1054037531" + }, + "pid": "8431", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1052970427" + }, + "pid": "8432", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1051355478" + }, + "pid": "8433", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1050801644" + }, + "pid": "8434", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1050440188" + }, + "pid": "8435", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1049971213" + }, + "pid": "8436", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1049453719" + }, + "pid": "8437", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/104797553X" + }, + "pid": "8438", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1047231085" + }, + "pid": "8439", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1041610890" + }, + "pid": "8440", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1037919874" + }, + "pid": "8441", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1034281828" + }, + "pid": "8442", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1033705691" + }, + "pid": "8443", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1030464197" + }, + "pid": "8444", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1028524978" + }, + "pid": "8445", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1027073808" + }, + "pid": "8446", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1027071171" + }, + "pid": "8447", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1026470986" + }, + "pid": "8448", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1026351537" + }, + "pid": "8449", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1025228928" + }, + "pid": "8450", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1023745712" + }, + "pid": "8451", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1023362872" + }, + "pid": "8452", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1022832425" + }, + "pid": "8453", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1021256064" + }, + "pid": "8454", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1018220429" + }, + "pid": "8455", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1017491062" + }, + "pid": "8456", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1017490090" + }, + "pid": "8457", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1017217165" + }, + "pid": "8458", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1017177503" + }, + "pid": "8459", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1017027366" + }, + "pid": "8460", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1016810989" + }, + "pid": "8461", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1016599463" + }, + "pid": "8462", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1016326106" + }, + "pid": "8463", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1015079253" + }, + "pid": "8464", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1013014065" + }, + "pid": "8465", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1011954141" + }, + "pid": "8466", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1011935201" + }, + "pid": "8467", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1011536455" + }, + "pid": "8468", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1011385856" + }, + "pid": "8469", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1011285738" + }, + "pid": "8470", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1011285436" + }, + "pid": "8471", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1011282518" + }, + "pid": "8472", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1011281368" + }, + "pid": "8473", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1011278723" + }, + "pid": "8474", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1011253313" + }, + "pid": "8475", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1011212722" + }, + "pid": "8476", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1011172399" + }, + "pid": "8477", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1011095351" + }, + "pid": "8478", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1010824597" + }, + "pid": "8479", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1010820389" + }, + "pid": "8480", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/101081933X" + }, + "pid": "8481", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/100974786X" + }, + "pid": "8482", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1009172255" + }, + "pid": "8483", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/100914135X" + }, + "pid": "8484", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1008599360" + }, + "pid": "8485", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1007558903" + }, + "pid": "8486", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1007553405" + }, + "pid": "8487", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1007096462" + }, + "pid": "8488", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1006156577" + }, + "pid": "8489", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1005952930" + }, + "pid": "8490", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1005638322" + }, + "pid": "8491", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1005003262" + }, + "pid": "8492", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1003591590" + }, + "pid": "8493", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1001213157" + }, + "pid": "8494", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1000465403" + }, + "pid": "8495", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/999617249" + }, + "pid": "8496", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/999602810" + }, + "pid": "8497", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/999129317" + }, + "pid": "8498", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/999038095" + }, + "pid": "8499", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/998759074" + }, + "pid": "8500", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/997781491" + }, + "pid": "8501", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/994660987" + }, + "pid": "8502", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/994508417" + }, + "pid": "8503", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/994042582" + }, + "pid": "8504", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/993971806" + }, + "pid": "8505", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992779871" + }, + "pid": "8506", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992757681" + }, + "pid": "8507", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992754151" + }, + "pid": "8508", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992753589" + }, + "pid": "8509", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992747260" + }, + "pid": "8510", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992745489" + }, + "pid": "8511", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992744431" + }, + "pid": "8512", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992744040" + }, + "pid": "8513", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992742145" + }, + "pid": "8514", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992740622" + }, + "pid": "8515", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992740002" + }, + "pid": "8516", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992739888" + }, + "pid": "8517", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992734894" + }, + "pid": "8518", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992733510" + }, + "pid": "8519", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992258820" + }, + "pid": "8520", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/991512669" + }, + "pid": "8521", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/99110546X" + }, + "pid": "8522", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/990635139" + }, + "pid": "8523", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/989819264" + }, + "pid": "8524", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/987246100" + }, + "pid": "8525", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/986124265" + }, + "pid": "8526", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/985953780" + }, + "pid": "8527", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/985948116" + }, + "pid": "8528", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/985147172" + }, + "pid": "8529", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/985075619" + }, + "pid": "8530", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/984505180" + }, + "pid": "8531", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/983782784" + }, + "pid": "8532", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/983616299" + }, + "pid": "8533", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/98350816X" + }, + "pid": "8534", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/983481644" + }, + "pid": "8535", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/983481628" + }, + "pid": "8536", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/982938322" + }, + "pid": "8537", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/982377649" + }, + "pid": "8538", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/982125461" + }, + "pid": "8539", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/981073328" + }, + "pid": "8540", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/98106521X" + }, + "pid": "8541", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/980868459" + }, + "pid": "8542", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/980347890" + }, + "pid": "8543", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/979633079" + }, + "pid": "8544", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/979217253" + }, + "pid": "8545", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/979214998" + }, + "pid": "8546", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/977813762" + }, + "pid": "8547", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/977682633" + }, + "pid": "8548", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/977294390" + }, + "pid": "8549", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/976865351" + }, + "pid": "8550", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/976859416" + }, + "pid": "8551", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/976009048" + }, + "pid": "8552", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/975670824" + }, + "pid": "8553", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/975199056" + }, + "pid": "8554", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/97466068X" + }, + "pid": "8555", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/974476560" + }, + "pid": "8556", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/974160032" + }, + "pid": "8557", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/97397687X" + }, + "pid": "8558", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/972616705" + }, + "pid": "8559", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/972391010" + }, + "pid": "8560", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/971044899" + }, + "pid": "8561", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/970758065" + }, + "pid": "8562", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/970679645" + }, + "pid": "8563", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/970190417" + }, + "pid": "8564", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/969678363" + }, + "pid": "8565", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/969131240" + }, + "pid": "8566", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/968663664" + }, + "pid": "8567", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/968634737" + }, + "pid": "8568", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/968438121" + }, + "pid": "8569", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/968387705" + }, + "pid": "8570", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/968377955" + }, + "pid": "8571", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/968360009" + }, + "pid": "8572", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/96832780X" + }, + "pid": "8573", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/967876710" + }, + "pid": "8574", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/967734657" + }, + "pid": "8575", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/967659523" + }, + "pid": "8576", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/967617987" + }, + "pid": "8577", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/967326133" + }, + "pid": "8578", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/96717757X" + }, + "pid": "8579", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/967169399" + }, + "pid": "8580", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/967155223" + }, + "pid": "8581", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/966649052" + }, + "pid": "8582", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/966536304" + }, + "pid": "8583", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/965652785" + }, + "pid": "8584", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/965576825" + }, + "pid": "8585", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/965369846" + }, + "pid": "8586", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/965367924" + }, + "pid": "8587", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/965252973" + }, + "pid": "8588", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/964979683" + }, + "pid": "8589", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/964866862" + }, + "pid": "8590", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/964848651" + }, + "pid": "8591", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/96473222X" + }, + "pid": "8592", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/964720272" + }, + "pid": "8593", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/964519194" + }, + "pid": "8594", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/964421062" + }, + "pid": "8595", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/964339676" + }, + "pid": "8596", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/964334666" + }, + "pid": "8597", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/964248026" + }, + "pid": "8598", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/964078880" + }, + "pid": "8599", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/963708708" + }, + "pid": "8600", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/963707906" + }, + "pid": "8601", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/963707884" + }, + "pid": "8602", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/963495046" + }, + "pid": "8603", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/963483927" + }, + "pid": "8604", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/96317066X" + }, + "pid": "8605", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/963127608" + }, + "pid": "8606", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/963125125" + }, + "pid": "8607", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/963005553" + }, + "pid": "8608", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/962883026" + }, + "pid": "8609", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/962846104" + }, + "pid": "8610", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/962794015" + }, + "pid": "8611", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/962681539" + }, + "pid": "8612", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/962256978" + }, + "pid": "8613", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/962005959" + }, + "pid": "8614", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/961909021" + }, + "pid": "8615", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/961468319" + }, + "pid": "8616", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/960936785" + }, + "pid": "8617", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/960733108" + }, + "pid": "8618", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/960658491" + }, + "pid": "8619", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/960161872" + }, + "pid": "8620", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/959965831" + }, + "pid": "8621", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/959960775" + }, + "pid": "8622", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/959893202" + }, + "pid": "8623", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/959807241" + }, + "pid": "8624", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/959710248" + }, + "pid": "8625", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/959143459" + }, + "pid": "8626", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/958745404" + }, + "pid": "8627", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/958745374" + }, + "pid": "8628", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/958745307" + }, + "pid": "8629", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/958577447" + }, + "pid": "8630", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/958508402" + }, + "pid": "8631", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/958195455" + }, + "pid": "8632", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/958121966" + }, + "pid": "8633", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/957564554" + }, + "pid": "8634", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/957193599" + }, + "pid": "8635", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/957133235" + }, + "pid": "8636", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/956836976" + }, + "pid": "8637", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/956033679" + }, + "pid": "8638", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/955952638" + }, + "pid": "8639", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/955845483" + }, + "pid": "8640", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/955777844" + }, + "pid": "8641", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/955671906" + }, + "pid": "8642", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/955633087" + }, + "pid": "8643", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/955631963" + }, + "pid": "8644", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/955522552" + }, + "pid": "8645", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/955510392" + }, + "pid": "8646", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/955497205" + }, + "pid": "8647", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/955324300" + }, + "pid": "8648", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/955297966" + }, + "pid": "8649", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/955286999" + }, + "pid": "8650", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/955249929" + }, + "pid": "8651", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/955181178" + }, + "pid": "8652", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/955150507" + }, + "pid": "8653", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/954752554" + }, + "pid": "8654", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/95471752X" + }, + "pid": "8655", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/95469483X" + }, + "pid": "8656", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/954658248" + }, + "pid": "8657", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/95439836X" + }, + "pid": "8658", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/954299973" + }, + "pid": "8659", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/954068572" + }, + "pid": "8660", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/95406853X" + }, + "pid": "8661", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/954021185" + }, + "pid": "8662", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/953936503" + }, + "pid": "8663", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/953467732" + }, + "pid": "8664", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/953463176" + }, + "pid": "8665", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/953354431" + }, + "pid": "8666", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/95324590X" + }, + "pid": "8667", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/953019209" + }, + "pid": "8668", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/953011992" + }, + "pid": "8669", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/952966336" + }, + "pid": "8670", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/952945991" + }, + "pid": "8671", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/952945819" + }, + "pid": "8672", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/952794357" + }, + "pid": "8673", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/952319888" + }, + "pid": "8674", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/952090163" + }, + "pid": "8675", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/952082098" + }, + "pid": "8676", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/951939440" + }, + "pid": "8677", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/95171337X" + }, + "pid": "8678", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/951567241" + }, + "pid": "8679", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/951452940" + }, + "pid": "8680", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/95136653X" + }, + "pid": "8681", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/951151541" + }, + "pid": "8682", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/951040960" + }, + "pid": "8683", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/950872555" + }, + "pid": "8684", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/95058410X" + }, + "pid": "8685", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/950461083" + }, + "pid": "8686", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/950453544" + }, + "pid": "8687", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/950378682" + }, + "pid": "8688", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/950378658" + }, + "pid": "8689", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/950280984" + }, + "pid": "8690", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/950268593" + }, + "pid": "8691", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/94996591X" + }, + "pid": "8692", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/949736864" + }, + "pid": "8693", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/949582964" + }, + "pid": "8694", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/94925584X" + }, + "pid": "8695", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/949178594" + }, + "pid": "8696", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/948985429" + }, + "pid": "8697", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/948861975" + }, + "pid": "8698", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/948734418" + }, + "pid": "8699", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/948616792" + }, + "pid": "8700", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/948581387" + }, + "pid": "8701", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/948367032" + }, + "pid": "8702", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/948358742" + }, + "pid": "8703", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/94818387X" + }, + "pid": "8704", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/948059028" + }, + "pid": "8705", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/948023465" + }, + "pid": "8706", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/947999043" + }, + "pid": "8707", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/947807691" + }, + "pid": "8708", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/947667040" + }, + "pid": "8709", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/947636676" + }, + "pid": "8710", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/947568441" + }, + "pid": "8711", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/947543112" + }, + "pid": "8712", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/947466223" + }, + "pid": "8713", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/947465928" + }, + "pid": "8714", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/947415874" + }, + "pid": "8715", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/947397213" + }, + "pid": "8716", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/947389229" + }, + "pid": "8717", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/94736093X" + }, + "pid": "8718", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/947337555" + }, + "pid": "8719", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/947167293" + }, + "pid": "8720", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/947085017" + }, + "pid": "8721", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/947015388" + }, + "pid": "8722", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/946998051" + }, + "pid": "8723", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/946944210" + }, + "pid": "8724", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/946868093" + }, + "pid": "8725", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/946792631" + }, + "pid": "8726", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/946776164" + }, + "pid": "8727", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/946530629" + }, + "pid": "8728", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/94646085X" + }, + "pid": "8729", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/946062706" + }, + "pid": "8730", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/946022895" + }, + "pid": "8731", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/94601888X" + }, + "pid": "8732", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/945863837" + }, + "pid": "8733", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/944522297" + }, + "pid": "8734", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/944502172" + }, + "pid": "8735", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/944484611" + }, + "pid": "8736", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/94430396X" + }, + "pid": "8737", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/943889170" + }, + "pid": "8738", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/943836476" + }, + "pid": "8739", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/943625394" + }, + "pid": "8740", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/943440017" + }, + "pid": "8741", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/94337426X" + }, + "pid": "8742", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/943258170" + }, + "pid": "8743", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/943209374" + }, + "pid": "8744", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/942627644" + }, + "pid": "8745", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/942531639" + }, + "pid": "8746", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/942348036" + }, + "pid": "8747", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/942346300" + }, + "pid": "8748", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/942142845" + }, + "pid": "8749", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/94203712X" + }, + "pid": "8750", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/941869121" + }, + "pid": "8751", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/941589021" + }, + "pid": "8752", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/941532704" + }, + "pid": "8753", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/941495256" + }, + "pid": "8754", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/941482774" + }, + "pid": "8755", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/941366138" + }, + "pid": "8756", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/941365050" + }, + "pid": "8757", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/941158748" + }, + "pid": "8758", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/941131572" + }, + "pid": "8759", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/940921588" + }, + "pid": "8760", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/940807904" + }, + "pid": "8761", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/940788187" + }, + "pid": "8762", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/940762048" + }, + "pid": "8763", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/940758776" + }, + "pid": "8764", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/940755459" + }, + "pid": "8765", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/94074449X" + }, + "pid": "8766", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/940604833" + }, + "pid": "8767", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/940540959" + }, + "pid": "8768", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/940535912" + }, + "pid": "8769", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/94052113X" + }, + "pid": "8770", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/940125897" + }, + "pid": "8771", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/940111187" + }, + "pid": "8772", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/940085798" + }, + "pid": "8773", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/940049570" + }, + "pid": "8774", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/940035731" + }, + "pid": "8775", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/199279101" + }, + "pid": "8776", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/199254435" + }, + "pid": "8777", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/199249903" + }, + "pid": "8778", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/199099952" + }, + "pid": "8779", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/130755087" + }, + "pid": "8780", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/130749478" + }, + "pid": "8781", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/130741531" + }, + "pid": "8782", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/130722529" + }, + "pid": "8783", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/130715107" + }, + "pid": "8784", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/130712930" + }, + "pid": "8785", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/13071206X" + }, + "pid": "8786", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/130700525" + }, + "pid": "8787", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/130699152" + }, + "pid": "8788", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/130699101" + }, + "pid": "8789", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/130698644" + }, + "pid": "8790", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043280072" + }, + "pid": "8791", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043270972" + }, + "pid": "8792", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043270328" + }, + "pid": "8793", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043269605" + }, + "pid": "8794", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043265006" + }, + "pid": "8795", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043229395" + }, + "pid": "8796", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043225276" + }, + "pid": "8797", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043220797" + }, + "pid": "8798", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043196063" + }, + "pid": "8799", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043172415" + }, + "pid": "8800", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043170854" + }, + "pid": "8801", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043166644" + }, + "pid": "8802", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043166202" + }, + "pid": "8803", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04316532X" + }, + "pid": "8804", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043153607" + }, + "pid": "8805", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043134475" + }, + "pid": "8806", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043134106" + }, + "pid": "8807", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043133908" + }, + "pid": "8808", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043133789" + }, + "pid": "8809", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043126944" + }, + "pid": "8810", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043122507" + }, + "pid": "8811", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043119816" + }, + "pid": "8812", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04311704X" + }, + "pid": "8813", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043110290" + }, + "pid": "8814", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043104754" + }, + "pid": "8815", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043092756" + }, + "pid": "8816", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043087787" + }, + "pid": "8817", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043079458" + }, + "pid": "8818", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043078664" + }, + "pid": "8819", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043062024" + }, + "pid": "8820", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04304980X" + }, + "pid": "8821", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043049354" + }, + "pid": "8822", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043047815" + }, + "pid": "8823", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043045820" + }, + "pid": "8824", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043023932" + }, + "pid": "8825", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043007708" + }, + "pid": "8826", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043006248" + }, + "pid": "8827", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042975174" + }, + "pid": "8828", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04296962X" + }, + "pid": "8829", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042936586" + }, + "pid": "8830", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042933854" + }, + "pid": "8831", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042932297" + }, + "pid": "8832", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042928664" + }, + "pid": "8833", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04291373X" + }, + "pid": "8834", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042912709" + }, + "pid": "8835", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042911915" + }, + "pid": "8836", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042909163" + }, + "pid": "8837", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042898250" + }, + "pid": "8838", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042871255" + }, + "pid": "8839", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042871093" + }, + "pid": "8840", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042868696" + }, + "pid": "8841", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042855098" + }, + "pid": "8842", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042854083" + }, + "pid": "8843", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042829763" + }, + "pid": "8844", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042829194" + }, + "pid": "8845", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042828465" + }, + "pid": "8846", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042825210" + }, + "pid": "8847", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042819415" + }, + "pid": "8848", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042817293" + }, + "pid": "8849", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042813905" + }, + "pid": "8850", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042803098" + }, + "pid": "8851", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042798779" + }, + "pid": "8852", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042798760" + }, + "pid": "8853", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042798477" + }, + "pid": "8854", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042773539" + }, + "pid": "8855", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042763568" + }, + "pid": "8856", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04276243X" + }, + "pid": "8857", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042755255" + }, + "pid": "8858", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04275206X" + }, + "pid": "8859", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042749298" + }, + "pid": "8860", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042740983" + }, + "pid": "8861", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042728622" + }, + "pid": "8862", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042725739" + }, + "pid": "8863", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042707870" + }, + "pid": "8864", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042667208" + }, + "pid": "8865", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04264044X" + }, + "pid": "8866", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042625025" + }, + "pid": "8867", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042616727" + }, + "pid": "8868", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042612292" + }, + "pid": "8869", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042556740" + }, + "pid": "8870", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042552192" + }, + "pid": "8871", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04252184X" + }, + "pid": "8872", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04251729X" + }, + "pid": "8873", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042496918" + }, + "pid": "8874", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042496896" + }, + "pid": "8875", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042491010" + }, + "pid": "8876", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042479770" + }, + "pid": "8877", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042466199" + }, + "pid": "8878", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04245395X" + }, + "pid": "8879", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042439086" + }, + "pid": "8880", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042433517" + }, + "pid": "8881", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042427045" + }, + "pid": "8882", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042416795" + }, + "pid": "8883", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042402883" + }, + "pid": "8884", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042402239" + }, + "pid": "8885", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042363527" + }, + "pid": "8886", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042362466" + }, + "pid": "8887", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042349885" + }, + "pid": "8888", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042349877" + }, + "pid": "8889", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042319986" + }, + "pid": "8890", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04231416X" + }, + "pid": "8891", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042294118" + }, + "pid": "8892", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042259177" + }, + "pid": "8893", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042250234" + }, + "pid": "8894", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042237688" + }, + "pid": "8895", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042221234" + }, + "pid": "8896", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042208408" + }, + "pid": "8897", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042203856" + }, + "pid": "8898", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042203023" + }, + "pid": "8899", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042195810" + }, + "pid": "8900", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042193958" + }, + "pid": "8901", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04219007X" + }, + "pid": "8902", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042189748" + }, + "pid": "8903", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042187494" + }, + "pid": "8904", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042180805" + }, + "pid": "8905", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042159458" + }, + "pid": "8906", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042154316" + }, + "pid": "8907", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042152089" + }, + "pid": "8908", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042150876" + }, + "pid": "8909", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042140048" + }, + "pid": "8910", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042137268" + }, + "pid": "8911", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042108160" + }, + "pid": "8912", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042108152" + }, + "pid": "8913", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042104068" + }, + "pid": "8914", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042098386" + }, + "pid": "8915", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042092175" + }, + "pid": "8916", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042086280" + }, + "pid": "8917", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04208394X" + }, + "pid": "8918", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042066107" + }, + "pid": "8919", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042056349" + }, + "pid": "8920", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042017793" + }, + "pid": "8921", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042017246" + }, + "pid": "8922", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042003458" + }, + "pid": "8923", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041995724" + }, + "pid": "8924", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041992555" + }, + "pid": "8925", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041987489" + }, + "pid": "8926", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041981804" + }, + "pid": "8927", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041977009" + }, + "pid": "8928", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041975278" + }, + "pid": "8929", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041954378" + }, + "pid": "8930", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041954327" + }, + "pid": "8931", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041943236" + }, + "pid": "8932", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041928547" + }, + "pid": "8933", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041928326" + }, + "pid": "8934", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041924878" + }, + "pid": "8935", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041918754" + }, + "pid": "8936", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041913272" + }, + "pid": "8937", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041911849" + }, + "pid": "8938", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041911598" + }, + "pid": "8939", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041911199" + }, + "pid": "8940", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041910842" + }, + "pid": "8941", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041907078" + }, + "pid": "8942", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041902955" + }, + "pid": "8943", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04190186X" + }, + "pid": "8944", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041900804" + }, + "pid": "8945", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041899849" + }, + "pid": "8946", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041898273" + }, + "pid": "8947", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041896807" + }, + "pid": "8948", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041891775" + }, + "pid": "8949", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041890787" + }, + "pid": "8950", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041889959" + }, + "pid": "8951", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041887913" + }, + "pid": "8952", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041887786" + }, + "pid": "8953", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041884612" + }, + "pid": "8954", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041882229" + }, + "pid": "8955", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041881745" + }, + "pid": "8956", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041876938" + }, + "pid": "8957", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041874919" + }, + "pid": "8958", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041873270" + }, + "pid": "8959", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041871286" + }, + "pid": "8960", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041871189" + }, + "pid": "8961", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041867785" + }, + "pid": "8962", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041863488" + }, + "pid": "8963", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04186347X" + }, + "pid": "8964", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041862473" + }, + "pid": "8965", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041862465" + }, + "pid": "8966", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041841387" + }, + "pid": "8967", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041835662" + }, + "pid": "8968", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041833333" + }, + "pid": "8969", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041830989" + }, + "pid": "8970", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041823788" + }, + "pid": "8971", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04182265X" + }, + "pid": "8972", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041809858" + }, + "pid": "8973", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041809165" + }, + "pid": "8974", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041808525" + }, + "pid": "8975", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041807677" + }, + "pid": "8976", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041805348" + }, + "pid": "8977", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04180466X" + }, + "pid": "8978", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041802659" + }, + "pid": "8979", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041798813" + }, + "pid": "8980", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041794524" + }, + "pid": "8981", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041792432" + }, + "pid": "8982", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041785215" + }, + "pid": "8983", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041784839" + }, + "pid": "8984", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041781635" + }, + "pid": "8985", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041779452" + }, + "pid": "8986", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041774434" + }, + "pid": "8987", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041772822" + }, + "pid": "8988", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041772768" + }, + "pid": "8989", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041767934" + }, + "pid": "8990", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041766717" + }, + "pid": "8991", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04176420X" + }, + "pid": "8992", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041763165" + }, + "pid": "8993", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041759834" + }, + "pid": "8994", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041755014" + }, + "pid": "8995", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041754557" + }, + "pid": "8996", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04175431X" + }, + "pid": "8997", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04174926X" + }, + "pid": "8998", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041748964" + }, + "pid": "8999", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04174604X" + }, + "pid": "9000", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041742648" + }, + "pid": "9001", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04174084X" + }, + "pid": "9002", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041738063" + }, + "pid": "9003", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041737539" + }, + "pid": "9004", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041736346" + }, + "pid": "9005", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041735390" + }, + "pid": "9006", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041734688" + }, + "pid": "9007", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041733819" + }, + "pid": "9008", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041725522" + }, + "pid": "9009", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041722027" + }, + "pid": "9010", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041720040" + }, + "pid": "9011", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041718429" + }, + "pid": "9012", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041716159" + }, + "pid": "9013", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041714059" + }, + "pid": "9014", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041712188" + }, + "pid": "9015", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04171069X" + }, + "pid": "9016", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04171007X" + }, + "pid": "9017", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041707109" + }, + "pid": "9018", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04170441X" + }, + "pid": "9019", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041700465" + }, + "pid": "9020", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041693442" + }, + "pid": "9021", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041692403" + }, + "pid": "9022", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041691989" + }, + "pid": "9023", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041691504" + }, + "pid": "9024", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041689976" + }, + "pid": "9025", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041688473" + }, + "pid": "9026", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041682106" + }, + "pid": "9027", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041679792" + }, + "pid": "9028", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041678532" + }, + "pid": "9029", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041667093" + }, + "pid": "9030", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041664795" + }, + "pid": "9031", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041653025" + }, + "pid": "9032", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041650018" + }, + "pid": "9033", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041640047" + }, + "pid": "9034", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041639383" + }, + "pid": "9035", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041634179" + }, + "pid": "9036", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041631692" + }, + "pid": "9037", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041631676" + }, + "pid": "9038", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04163120X" + }, + "pid": "9039", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041627458" + }, + "pid": "9040", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041623010" + }, + "pid": "9041", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041621662" + }, + "pid": "9042", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041619633" + }, + "pid": "9043", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041619366" + }, + "pid": "9044", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041617266" + }, + "pid": "9045", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041616375" + }, + "pid": "9046", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041612469" + }, + "pid": "9047", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041607988" + }, + "pid": "9048", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041605799" + }, + "pid": "9049", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041603176" + }, + "pid": "9050", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041601475" + }, + "pid": "9051", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041600622" + }, + "pid": "9052", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041600010" + }, + "pid": "9053", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041596277" + }, + "pid": "9054", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041595505" + }, + "pid": "9055", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041582969" + }, + "pid": "9056", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041582675" + }, + "pid": "9057", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041582500" + }, + "pid": "9058", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041580176" + }, + "pid": "9059", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041579550" + }, + "pid": "9060", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041577760" + }, + "pid": "9061", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041573579" + }, + "pid": "9062", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041570316" + }, + "pid": "9063", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041570154" + }, + "pid": "9064", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041565762" + }, + "pid": "9065", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041563409" + }, + "pid": "9066", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04155812X" + }, + "pid": "9067", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041558103" + }, + "pid": "9068", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041556984" + }, + "pid": "9069", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041555252" + }, + "pid": "9070", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041552725" + }, + "pid": "9071", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041552334" + }, + "pid": "9072", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041549457" + }, + "pid": "9073", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041543688" + }, + "pid": "9074", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041540654" + }, + "pid": "9075", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041540387" + }, + "pid": "9076", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041539346" + }, + "pid": "9077", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041537882" + }, + "pid": "9078", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04152862X" + }, + "pid": "9079", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041528565" + }, + "pid": "9080", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041527186" + }, + "pid": "9081", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041527062" + }, + "pid": "9082", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041521927" + }, + "pid": "9083", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041511794" + }, + "pid": "9084", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041511360" + }, + "pid": "9085", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041507983" + }, + "pid": "9086", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041506588" + }, + "pid": "9087", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041505190" + }, + "pid": "9088", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041504925" + }, + "pid": "9089", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041501950" + }, + "pid": "9090", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041501608" + }, + "pid": "9091", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041497848" + }, + "pid": "9092", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041497112" + }, + "pid": "9093", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041490673" + }, + "pid": "9094", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041489837" + }, + "pid": "9095", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041483626" + }, + "pid": "9096", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041479017" + }, + "pid": "9097", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041467760" + }, + "pid": "9098", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04146351X" + }, + "pid": "9099", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041463250" + }, + "pid": "9100", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041462467" + }, + "pid": "9101", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041456629" + }, + "pid": "9102", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041455908" + }, + "pid": "9103", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04145412X" + }, + "pid": "9104", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041451732" + }, + "pid": "9105", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041449347" + }, + "pid": "9106", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041448723" + }, + "pid": "9107", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041445120" + }, + "pid": "9108", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041445082" + }, + "pid": "9109", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041444817" + }, + "pid": "9110", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041444809" + }, + "pid": "9111", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041444108" + }, + "pid": "9112", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04144115X" + }, + "pid": "9113", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041440706" + }, + "pid": "9114", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041439686" + }, + "pid": "9115", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041436512" + }, + "pid": "9116", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041434722" + }, + "pid": "9117", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041427548" + }, + "pid": "9118", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041424654" + }, + "pid": "9119", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041419464" + }, + "pid": "9120", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041413334" + }, + "pid": "9121", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041413083" + }, + "pid": "9122", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041410513" + }, + "pid": "9123", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041406605" + }, + "pid": "9124", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041403886" + }, + "pid": "9125", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041403657" + }, + "pid": "9126", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041401522" + }, + "pid": "9127", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041400909" + }, + "pid": "9128", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041398424" + }, + "pid": "9129", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041397932" + }, + "pid": "9130", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041397150" + }, + "pid": "9131", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04139674X" + }, + "pid": "9132", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041395786" + }, + "pid": "9133", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04139531X" + }, + "pid": "9134", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041393848" + }, + "pid": "9135", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041392736" + }, + "pid": "9136", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041385896" + }, + "pid": "9137", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041385659" + }, + "pid": "9138", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041382994" + }, + "pid": "9139", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041380827" + }, + "pid": "9140", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041378970" + }, + "pid": "9141", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041378296" + }, + "pid": "9142", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04137651X" + }, + "pid": "9143", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041375785" + }, + "pid": "9144", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041375157" + }, + "pid": "9145", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041373146" + }, + "pid": "9146", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041372867" + }, + "pid": "9147", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041369424" + }, + "pid": "9148", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041368118" + }, + "pid": "9149", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041367782" + }, + "pid": "9150", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041358902" + }, + "pid": "9151", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041358678" + }, + "pid": "9152", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041357515" + }, + "pid": "9153", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041351169" + }, + "pid": "9154", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041344677" + }, + "pid": "9155", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041336844" + }, + "pid": "9156", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041336720" + }, + "pid": "9157", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041332156" + }, + "pid": "9158", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041330048" + }, + "pid": "9159", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041328523" + }, + "pid": "9160", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041327896" + }, + "pid": "9161", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041326393" + }, + "pid": "9162", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041325109" + }, + "pid": "9163", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04132501X" + }, + "pid": "9164", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041321782" + }, + "pid": "9165", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041318153" + }, + "pid": "9166", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041312406" + }, + "pid": "9167", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041311248" + }, + "pid": "9168", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041308263" + }, + "pid": "9169", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041306570" + }, + "pid": "9170", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041306473" + }, + "pid": "9171", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041305450" + }, + "pid": "9172", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041301005" + }, + "pid": "9173", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041296540" + }, + "pid": "9174", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041291107" + }, + "pid": "9175", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041289870" + }, + "pid": "9176", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041288769" + }, + "pid": "9177", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04128805X" + }, + "pid": "9178", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041287886" + }, + "pid": "9179", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041285913" + }, + "pid": "9180", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041284100" + }, + "pid": "9181", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041282787" + }, + "pid": "9182", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041280628" + }, + "pid": "9183", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041277848" + }, + "pid": "9184", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041277090" + }, + "pid": "9185", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041275829" + }, + "pid": "9186", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041274059" + }, + "pid": "9187", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041270290" + }, + "pid": "9188", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041264487" + }, + "pid": "9189", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04126133X" + }, + "pid": "9190", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041258819" + }, + "pid": "9191", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041258762" + }, + "pid": "9192", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041255364" + }, + "pid": "9193", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041254759" + }, + "pid": "9194", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041254538" + }, + "pid": "9195", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041251733" + }, + "pid": "9196", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041250117" + }, + "pid": "9197", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041244362" + }, + "pid": "9198", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04124317X" + }, + "pid": "9199", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041240839" + }, + "pid": "9200", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041237226" + }, + "pid": "9201", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041231899" + }, + "pid": "9202", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041220803" + }, + "pid": "9203", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041218760" + }, + "pid": "9204", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041217896" + }, + "pid": "9205", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041217225" + }, + "pid": "9206", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041217020" + }, + "pid": "9207", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04121630X" + }, + "pid": "9208", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041214870" + }, + "pid": "9209", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041212339" + }, + "pid": "9210", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041211383" + }, + "pid": "9211", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041211154" + }, + "pid": "9212", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041208862" + }, + "pid": "9213", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041204409" + }, + "pid": "9214", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041176626" + }, + "pid": "9215", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041175808" + }, + "pid": "9216", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041173899" + }, + "pid": "9217", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041172922" + }, + "pid": "9218", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041172299" + }, + "pid": "9219", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041164334" + }, + "pid": "9220", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04115746X" + }, + "pid": "9221", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041144910" + }, + "pid": "9222", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041142993" + }, + "pid": "9223", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041142403" + }, + "pid": "9224", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041134346" + }, + "pid": "9225", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041133889" + }, + "pid": "9226", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041125002" + }, + "pid": "9227", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041067940" + }, + "pid": "9228", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040785947" + }, + "pid": "9229", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04077984X" + }, + "pid": "9230", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040777820" + }, + "pid": "9231", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040776832" + }, + "pid": "9232", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040760669" + }, + "pid": "9233", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04075121X" + }, + "pid": "9234", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040741117" + }, + "pid": "9235", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040737888" + }, + "pid": "9236", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040737810" + }, + "pid": "9237", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040737063" + }, + "pid": "9238", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040717763" + }, + "pid": "9239", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040717119" + }, + "pid": "9240", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040715213" + }, + "pid": "9241", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040712168" + }, + "pid": "9242", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040709248" + }, + "pid": "9243", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040707385" + }, + "pid": "9244", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040706079" + }, + "pid": "9245", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040705846" + }, + "pid": "9246", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040693759" + }, + "pid": "9247", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040693538" + }, + "pid": "9248", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040687333" + }, + "pid": "9249", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040685969" + }, + "pid": "9250", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040677036" + }, + "pid": "9251", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04067701X" + }, + "pid": "9252", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040664643" + }, + "pid": "9253", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040664244" + }, + "pid": "9254", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040664104" + }, + "pid": "9255", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040658864" + }, + "pid": "9256", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040654648" + }, + "pid": "9257", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040641805" + }, + "pid": "9258", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040633306" + }, + "pid": "9259", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040628604" + }, + "pid": "9260", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040628094" + }, + "pid": "9261", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040621278" + }, + "pid": "9262", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040617203" + }, + "pid": "9263", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040598160" + }, + "pid": "9264", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040596648" + }, + "pid": "9265", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04059596X" + }, + "pid": "9266", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040581780" + }, + "pid": "9267", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040579123" + }, + "pid": "9268", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040576337" + }, + "pid": "9269", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040575136" + }, + "pid": "9270", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040570215" + }, + "pid": "9271", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040562182" + }, + "pid": "9272", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040539644" + }, + "pid": "9273", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04053376X" + }, + "pid": "9274", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040515842" + }, + "pid": "9275", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040490122" + }, + "pid": "9276", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040475972" + }, + "pid": "9277", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040475778" + }, + "pid": "9278", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040471713" + }, + "pid": "9279", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040471233" + }, + "pid": "9280", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040468003" + }, + "pid": "9281", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040461912" + }, + "pid": "9282", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040460495" + }, + "pid": "9283", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040459195" + }, + "pid": "9284", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040448932" + }, + "pid": "9285", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040448924" + }, + "pid": "9286", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040414124" + }, + "pid": "9287", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04041177X" + }, + "pid": "9288", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040411583" + }, + "pid": "9289", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040372170" + }, + "pid": "9290", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040366898" + }, + "pid": "9291", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040357228" + }, + "pid": "9292", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040354415" + }, + "pid": "9293", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040351130" + }, + "pid": "9294", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04034889X" + }, + "pid": "9295", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040344029" + }, + "pid": "9296", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040302482" + }, + "pid": "9297", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040299848" + }, + "pid": "9298", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040297519" + }, + "pid": "9299", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040296709" + }, + "pid": "9300", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040270076" + }, + "pid": "9301", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040267210" + }, + "pid": "9302", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040257029" + }, + "pid": "9303", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040246655" + }, + "pid": "9304", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040218066" + }, + "pid": "9305", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04021334X" + }, + "pid": "9306", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040200728" + }, + "pid": "9307", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040200159" + }, + "pid": "9308", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040195589" + }, + "pid": "9309", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040172503" + }, + "pid": "9310", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040171078" + }, + "pid": "9311", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040163172" + }, + "pid": "9312", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04015985X" + }, + "pid": "9313", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040158292" + }, + "pid": "9314", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040143503" + }, + "pid": "9315", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040143376" + }, + "pid": "9316", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040137465" + }, + "pid": "9317", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040136302" + }, + "pid": "9318", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040132153" + }, + "pid": "9319", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040110680" + }, + "pid": "9320", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040105423" + }, + "pid": "9321", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040098923" + }, + "pid": "9322", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040092755" + }, + "pid": "9323", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04009104X" + }, + "pid": "9324", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040090809" + }, + "pid": "9325", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040072118" + }, + "pid": "9326", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040070328" + }, + "pid": "9327", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040060055" + }, + "pid": "9328", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040054020" + }, + "pid": "9329", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040048543" + }, + "pid": "9330", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040035506" + }, + "pid": "9331", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04003500X" + }, + "pid": "9332", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040030962" + }, + "pid": "9333", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040018040" + }, + "pid": "9334", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040009866" + }, + "pid": "9335", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040009327" + }, + "pid": "9336", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/040004570" + }, + "pid": "9337", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04000158X" + }, + "pid": "9338", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336884932" + }, + "pid": "9339", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336884762" + }, + "pid": "9340", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336876913" + }, + "pid": "9341", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336874678" + }, + "pid": "9342", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336874414" + }, + "pid": "9343", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/133686463X" + }, + "pid": "9344", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336835052" + }, + "pid": "9345", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336765410" + }, + "pid": "9346", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336763213" + }, + "pid": "9347", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336761083" + }, + "pid": "9348", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336749369" + }, + "pid": "9349", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336591390" + }, + "pid": "9350", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336589876" + }, + "pid": "9351", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/133658873X" + }, + "pid": "9352", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336532009" + }, + "pid": "9353", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/133646609X" + }, + "pid": "9354", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336401087" + }, + "pid": "9355", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336381698" + }, + "pid": "9356", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336261625" + }, + "pid": "9357", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336259086" + }, + "pid": "9358", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336255897" + }, + "pid": "9359", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336255692" + }, + "pid": "9360", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336255609" + }, + "pid": "9361", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336248335" + }, + "pid": "9362", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336235047" + }, + "pid": "9363", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336230754" + }, + "pid": "9364", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336223200" + }, + "pid": "9365", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336168528" + }, + "pid": "9366", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336166509" + }, + "pid": "9367", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336144033" + }, + "pid": "9368", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336140607" + }, + "pid": "9369", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336136634" + }, + "pid": "9370", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336125306" + }, + "pid": "9371", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336043652" + }, + "pid": "9372", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/133603906X" + }, + "pid": "9373", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336037571" + }, + "pid": "9374", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336035544" + }, + "pid": "9375", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336026758" + }, + "pid": "9376", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336019883" + }, + "pid": "9377", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1336015497" + }, + "pid": "9378", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335982361" + }, + "pid": "9379", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/133595368X" + }, + "pid": "9380", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335904158" + }, + "pid": "9381", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335903623" + }, + "pid": "9382", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335900330" + }, + "pid": "9383", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335882758" + }, + "pid": "9384", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335881247" + }, + "pid": "9385", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/133582569X" + }, + "pid": "9386", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335777539" + }, + "pid": "9387", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335762779" + }, + "pid": "9388", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335752897" + }, + "pid": "9389", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/133575086X" + }, + "pid": "9390", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335736832" + }, + "pid": "9391", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335733086" + }, + "pid": "9392", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335729577" + }, + "pid": "9393", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335727701" + }, + "pid": "9394", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335528539" + }, + "pid": "9395", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335514767" + }, + "pid": "9396", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335503307" + }, + "pid": "9397", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335484930" + }, + "pid": "9398", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335484639" + }, + "pid": "9399", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335475753" + }, + "pid": "9400", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335475575" + }, + "pid": "9401", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335348379" + }, + "pid": "9402", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335334955" + }, + "pid": "9403", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335332510" + }, + "pid": "9404", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335327541" + }, + "pid": "9405", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335263977" + }, + "pid": "9406", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335255869" + }, + "pid": "9407", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335237232" + }, + "pid": "9408", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335237046" + }, + "pid": "9409", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/133523490X" + }, + "pid": "9410", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335228187" + }, + "pid": "9411", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335212299" + }, + "pid": "9412", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/133521075X" + }, + "pid": "9413", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335201068" + }, + "pid": "9414", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335134549" + }, + "pid": "9415", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1335054405" + }, + "pid": "9416", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334935475" + }, + "pid": "9417", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334906815" + }, + "pid": "9418", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334879079" + }, + "pid": "9419", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334810524" + }, + "pid": "9420", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334804893" + }, + "pid": "9421", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334804699" + }, + "pid": "9422", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334804281" + }, + "pid": "9423", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334795533" + }, + "pid": "9424", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334784639" + }, + "pid": "9425", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334676844" + }, + "pid": "9426", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334652074" + }, + "pid": "9427", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1334205639" + }, + "pid": "9428", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333849850" + }, + "pid": "9429", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333570651" + }, + "pid": "9430", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333353421" + }, + "pid": "9431", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333321201" + }, + "pid": "9432", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333260148" + }, + "pid": "9433", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333126433" + }, + "pid": "9434", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1333115482" + }, + "pid": "9435", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332860451" + }, + "pid": "9436", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332767702" + }, + "pid": "9437", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332765785" + }, + "pid": "9438", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332734316" + }, + "pid": "9439", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332672701" + }, + "pid": "9440", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332661327" + }, + "pid": "9441", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332426336" + }, + "pid": "9442", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1332101607" + }, + "pid": "9443", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331864321" + }, + "pid": "9444", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331496861" + }, + "pid": "9445", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1331098114" + }, + "pid": "9446", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/133099051X" + }, + "pid": "9447", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1330990056" + }, + "pid": "9448", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1330988728" + }, + "pid": "9449", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1330985524" + }, + "pid": "9450", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1330588517" + }, + "pid": "9451", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1330408837" + }, + "pid": "9452", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1330360036" + }, + "pid": "9453", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1330201647" + }, + "pid": "9454", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1330126599" + }, + "pid": "9455", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/132940422X" + }, + "pid": "9456", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1329376129" + }, + "pid": "9457", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/132935639X" + }, + "pid": "9458", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1329174003" + }, + "pid": "9459", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1329171675" + }, + "pid": "9460", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1328712400" + }, + "pid": "9461", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1327991349" + }, + "pid": "9462", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1327910268" + }, + "pid": "9463", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1327458667" + }, + "pid": "9464", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1326349392" + }, + "pid": "9465", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/132585283X" + }, + "pid": "9466", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1325643645" + }, + "pid": "9467", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1325061557" + }, + "pid": "9468", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1324688629" + }, + "pid": "9469", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1324590173" + }, + "pid": "9470", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1324101318" + }, + "pid": "9471", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1324092424" + }, + "pid": "9472", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1323913084" + }, + "pid": "9473", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1323835148" + }, + "pid": "9474", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1323832262" + }, + "pid": "9475", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1323804129" + }, + "pid": "9476", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1323769536" + }, + "pid": "9477", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1323705910" + }, + "pid": "9478", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1323590102" + }, + "pid": "9479", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1323303669" + }, + "pid": "9480", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1323303103" + }, + "pid": "9481", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1323069380" + }, + "pid": "9482", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1322662401" + }, + "pid": "9483", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1322661030" + }, + "pid": "9484", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1322508801" + }, + "pid": "9485", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1322264716" + }, + "pid": "9486", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1321257988" + }, + "pid": "9487", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1321125623" + }, + "pid": "9488", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1321125577" + }, + "pid": "9489", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1319483321" + }, + "pid": "9490", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1319390072" + }, + "pid": "9491", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1318715598" + }, + "pid": "9492", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1318430968" + }, + "pid": "9493", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/131634410X" + }, + "pid": "9494", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1315679264" + }, + "pid": "9495", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1315456125" + }, + "pid": "9496", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1315226715" + }, + "pid": "9497", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1315045133" + }, + "pid": "9498", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/131453260X" + }, + "pid": "9499", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1314347403" + }, + "pid": "9500", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1314019333" + }, + "pid": "9501", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1312507497" + }, + "pid": "9502", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1312506059" + }, + "pid": "9503", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1311262989" + }, + "pid": "9504", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1311025847" + }, + "pid": "9505", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1310673683" + }, + "pid": "9506", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1309822123" + }, + "pid": "9507", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1308550189" + }, + "pid": "9508", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1305189876" + }, + "pid": "9509", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1304711749" + }, + "pid": "9510", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1304458741" + }, + "pid": "9511", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1303066408" + }, + "pid": "9512", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1302981390" + }, + "pid": "9513", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1302782517" + }, + "pid": "9514", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1302782274" + }, + "pid": "9515", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1302781162" + }, + "pid": "9516", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1302592122" + }, + "pid": "9517", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1298190746" + }, + "pid": "9518", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1296860906" + }, + "pid": "9519", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1296369811" + }, + "pid": "9520", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1295208512" + }, + "pid": "9521", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1294996460" + }, + "pid": "9522", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1294772627" + }, + "pid": "9523", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/129400283X" + }, + "pid": "9524", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1292845384" + }, + "pid": "9525", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1286766397" + }, + "pid": "9526", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1286227941" + }, + "pid": "9527", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1286106745" + }, + "pid": "9528", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1285304527" + }, + "pid": "9529", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1284854744" + }, + "pid": "9530", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1284760456" + }, + "pid": "9531", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/127990271X" + }, + "pid": "9532", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1279534311" + }, + "pid": "9533", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1278300821" + }, + "pid": "9534", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1275762158" + }, + "pid": "9535", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1275016057" + }, + "pid": "9536", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1274846765" + }, + "pid": "9537", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1272439836" + }, + "pid": "9538", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1272436322" + }, + "pid": "9539", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/127243124X" + }, + "pid": "9540", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1272429997" + }, + "pid": "9541", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1272339785" + }, + "pid": "9542", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1272271439" + }, + "pid": "9543", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1272267792" + }, + "pid": "9544", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1272258963" + }, + "pid": "9545", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1271905698" + }, + "pid": "9546", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1271895765" + }, + "pid": "9547", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/127188898X" + }, + "pid": "9548", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1271822776" + }, + "pid": "9549", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1271808897" + }, + "pid": "9550", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1271790165" + }, + "pid": "9551", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1271715899" + }, + "pid": "9552", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1271381702" + }, + "pid": "9553", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1270556959" + }, + "pid": "9554", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1268246964" + }, + "pid": "9555", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/126750370X" + }, + "pid": "9556", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1267495847" + }, + "pid": "9557", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1267493216" + }, + "pid": "9558", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1266330917" + }, + "pid": "9559", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1265612927" + }, + "pid": "9560", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1265218374" + }, + "pid": "9561", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1261254937" + }, + "pid": "9562", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1259273660" + }, + "pid": "9563", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1257092030" + }, + "pid": "9564", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1256073210" + }, + "pid": "9565", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1256072893" + }, + "pid": "9566", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1254291482" + }, + "pid": "9567", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1251426239" + }, + "pid": "9568", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1248276604" + }, + "pid": "9569", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1245158511" + }, + "pid": "9570", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1242560637" + }, + "pid": "9571", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/124129562X" + }, + "pid": "9572", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1239152302" + }, + "pid": "9573", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1237145422" + }, + "pid": "9574", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1232354244" + }, + "pid": "9575", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1229013695" + }, + "pid": "9576", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1225001064" + }, + "pid": "9577", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1217543678" + }, + "pid": "9578", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1213474337" + }, + "pid": "9579", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1213276500" + }, + "pid": "9580", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1211610659" + }, + "pid": "9581", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1206111984" + }, + "pid": "9582", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1205504184" + }, + "pid": "9583", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1204138915" + }, + "pid": "9584", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/120246193X" + }, + "pid": "9585", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1201306663" + }, + "pid": "9586", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1197813853" + }, + "pid": "9587", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1197084231" + }, + "pid": "9588", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1196153183" + }, + "pid": "9589", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1195721455" + }, + "pid": "9590", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1195720424" + }, + "pid": "9591", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1192998324" + }, + "pid": "9592", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/119298918X" + }, + "pid": "9593", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1191213307" + }, + "pid": "9594", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1190744996" + }, + "pid": "9595", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1189251949" + }, + "pid": "9596", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1181270391" + }, + "pid": "9597", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1177428253" + }, + "pid": "9598", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1172931720" + }, + "pid": "9599", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1164102931" + }, + "pid": "9600", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1162074078" + }, + "pid": "9601", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1162070234" + }, + "pid": "9602", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1162069848" + }, + "pid": "9603", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1162069279" + }, + "pid": "9604", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1161370048" + }, + "pid": "9605", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1160916276" + }, + "pid": "9606", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1160040834" + }, + "pid": "9607", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1159933278" + }, + "pid": "9608", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1159933006" + }, + "pid": "9609", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/115992869X" + }, + "pid": "9610", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1159920850" + }, + "pid": "9611", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/115992063X" + }, + "pid": "9612", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1159919828" + }, + "pid": "9613", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1159716978" + }, + "pid": "9614", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1159673381" + }, + "pid": "9615", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1159652686" + }, + "pid": "9616", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1158529643" + }, + "pid": "9617", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1156463467" + }, + "pid": "9618", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1153904039" + }, + "pid": "9619", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1153848325" + }, + "pid": "9620", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1153645505" + }, + "pid": "9621", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1148983325" + }, + "pid": "9622", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1148983317" + }, + "pid": "9623", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1148982329" + }, + "pid": "9624", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1145164617" + }, + "pid": "9625", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/113724061X" + }, + "pid": "9626", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1136198113" + }, + "pid": "9627", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1136044426" + }, + "pid": "9628", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1133521657" + }, + "pid": "9629", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1132275067" + }, + "pid": "9630", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1132231477" + }, + "pid": "9631", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1131360478" + }, + "pid": "9632", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1127087932" + }, + "pid": "9633", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1126284823" + }, + "pid": "9634", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1124811885" + }, + "pid": "9635", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1124612114" + }, + "pid": "9636", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1120527775" + }, + "pid": "9637", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1120526310" + }, + "pid": "9638", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1119923417" + }, + "pid": "9639", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1117228215" + }, + "pid": "9640", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1114188395" + }, + "pid": "9641", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1113031921" + }, + "pid": "9642", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1111593051" + }, + "pid": "9643", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/110642154X" + }, + "pid": "9644", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1104861453" + }, + "pid": "9645", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1103248596" + }, + "pid": "9646", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1103240579" + }, + "pid": "9647", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1101498900" + }, + "pid": "9648", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1085190633" + }, + "pid": "9649", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/108229814X" + }, + "pid": "9650", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1077459335" + }, + "pid": "9651", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1077386478" + }, + "pid": "9652", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1077065876" + }, + "pid": "9653", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1069876534" + }, + "pid": "9654", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1069526703" + }, + "pid": "9655", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1069453420" + }, + "pid": "9656", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1068825820" + }, + "pid": "9657", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1068606975" + }, + "pid": "9658", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1068048328" + }, + "pid": "9659", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1067974490" + }, + "pid": "9660", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1066896534" + }, + "pid": "9661", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1065486421" + }, + "pid": "9662", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/106307147X" + }, + "pid": "9663", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/105858488X" + }, + "pid": "9664", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1055013458" + }, + "pid": "9665", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1054183104" + }, + "pid": "9666", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1054182779" + }, + "pid": "9667", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1054182620" + }, + "pid": "9668", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1051146089" + }, + "pid": "9669", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1049270851" + }, + "pid": "9670", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1044279206" + }, + "pid": "9671", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1041611064" + }, + "pid": "9672", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1036907430" + }, + "pid": "9673", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1036857263" + }, + "pid": "9674", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1029263361" + }, + "pid": "9675", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1019980389" + }, + "pid": "9676", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1015187382" + }, + "pid": "9677", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1014400783" + }, + "pid": "9678", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1013709640" + }, + "pid": "9679", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1010242008" + }, + "pid": "9680", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1009887017" + }, + "pid": "9681", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1008996270" + }, + "pid": "9682", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1008049115" + }, + "pid": "9683", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/100735531X" + }, + "pid": "9684", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1006894675" + }, + "pid": "9685", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1002238951" + }, + "pid": "9686", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1000642119" + }, + "pid": "9687", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/1000168972" + }, + "pid": "9688", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/998776785" + }, + "pid": "9689", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/995780951" + }, + "pid": "9690", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/994659857" + }, + "pid": "9691", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/99405212X" + }, + "pid": "9692", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/99283600X" + }, + "pid": "9693", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992757126" + }, + "pid": "9694", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992754909" + }, + "pid": "9695", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992754550" + }, + "pid": "9696", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992754534" + }, + "pid": "9697", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992754305" + }, + "pid": "9698", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992753694" + }, + "pid": "9699", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/99275366X" + }, + "pid": "9700", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992752973" + }, + "pid": "9701", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992751020" + }, + "pid": "9702", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/99274881X" + }, + "pid": "9703", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992747031" + }, + "pid": "9704", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992746779" + }, + "pid": "9705", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992746248" + }, + "pid": "9706", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992745969" + }, + "pid": "9707", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992745292" + }, + "pid": "9708", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992745187" + }, + "pid": "9709", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/99274508X" + }, + "pid": "9710", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992744792" + }, + "pid": "9711", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992744091" + }, + "pid": "9712", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992743605" + }, + "pid": "9713", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992743273" + }, + "pid": "9714", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992742889" + }, + "pid": "9715", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992742854" + }, + "pid": "9716", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992742722" + }, + "pid": "9717", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992742498" + }, + "pid": "9718", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992741696" + }, + "pid": "9719", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992741491" + }, + "pid": "9720", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992739659" + }, + "pid": "9721", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992738601" + }, + "pid": "9722", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992738172" + }, + "pid": "9723", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992738083" + }, + "pid": "9724", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992738075" + }, + "pid": "9725", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992737834" + }, + "pid": "9726", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992737826" + }, + "pid": "9727", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992737788" + }, + "pid": "9728", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992737532" + }, + "pid": "9729", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992736269" + }, + "pid": "9730", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992736099" + }, + "pid": "9731", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992735858" + }, + "pid": "9732", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/99273584X" + }, + "pid": "9733", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992735823" + }, + "pid": "9734", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992735270" + }, + "pid": "9735", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992735122" + }, + "pid": "9736", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992733634" + }, + "pid": "9737", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/99273312X" + }, + "pid": "9738", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992732468" + }, + "pid": "9739", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992731496" + }, + "pid": "9740", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/99273147X" + }, + "pid": "9741", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992731348" + }, + "pid": "9742", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992730937" + }, + "pid": "9743", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/99273052X" + }, + "pid": "9744", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/992096200" + }, + "pid": "9745", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/99018207X" + }, + "pid": "9746", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/987870920" + }, + "pid": "9747", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/987031708" + }, + "pid": "9748", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/985142758" + }, + "pid": "9749", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/984855246" + }, + "pid": "9750", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/984430695" + }, + "pid": "9751", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/981355196" + }, + "pid": "9752", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/981078206" + }, + "pid": "9753", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/980596920" + }, + "pid": "9754", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/980485371" + }, + "pid": "9755", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/979728509" + }, + "pid": "9756", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/979385261" + }, + "pid": "9757", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/979340586" + }, + "pid": "9758", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/978483669" + }, + "pid": "9759", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/97549175X" + }, + "pid": "9760", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/974924423" + }, + "pid": "9761", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/974131733" + }, + "pid": "9762", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/973073764" + }, + "pid": "9763", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/973067144" + }, + "pid": "9764", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/971890188" + }, + "pid": "9765", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/971874549" + }, + "pid": "9766", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/971750289" + }, + "pid": "9767", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/971566429" + }, + "pid": "9768", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/970782195" + }, + "pid": "9769", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/970665806" + }, + "pid": "9770", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/970188919" + }, + "pid": "9771", + "type": "bf:Topic" }, { - "pid": "7621", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/146321944" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/970142838" + }, + "pid": "9772", + "type": "bf:Topic" }, { - "pid": "7622", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/146774094" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/969789726" + }, + "pid": "9773", + "type": "bf:Topic" }, { - "pid": "7623", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/16573762X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/968800459" + }, + "pid": "9774", + "type": "bf:Topic" }, { - "pid": "7624", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/16719416X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/967930308" + }, + "pid": "9775", + "type": "bf:Topic" }, { - "pid": "7625", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/172690250" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/967681758" + }, + "pid": "9776", + "type": "bf:Topic" }, { - "pid": "7626", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/174131887" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/967612896" + }, + "pid": "9777", + "type": "bf:Topic" }, { - "pid": "7627", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/18456381X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/967286034" + }, + "pid": "9778", + "type": "bf:Topic" }, { - "pid": "7628", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/245367888" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/966464141" + }, + "pid": "9779", + "type": "bf:Topic" }, { - "pid": "7629", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/252252063" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/966016297" + }, + "pid": "9780", + "type": "bf:Topic" }, { - "pid": "7630", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/25410875X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/965886654" + }, + "pid": "9781", + "type": "bf:Topic" }, { - "pid": "7631", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/255690444" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/965195686" + }, + "pid": "9782", + "type": "bf:Topic" }, { - "pid": "7632", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/256524203" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/96441631X" + }, + "pid": "9783", + "type": "bf:Topic" }, { - "pid": "7633", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/258617527" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/964240300" + }, + "pid": "9784", + "type": "bf:Topic" }, { - "pid": "7634", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/25906288X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/964240254" + }, + "pid": "9785", + "type": "bf:Topic" }, { - "pid": "7635", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/259596337" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/964115166" + }, + "pid": "9786", + "type": "bf:Topic" }, { - "pid": "7636", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/259599174" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/963711636" + }, + "pid": "9787", + "type": "bf:Topic" }, { - "pid": "7637", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/259943401" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/963708872" + }, + "pid": "9788", + "type": "bf:Topic" }, { - "pid": "7638", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/259951293" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/963708856" + }, + "pid": "9789", + "type": "bf:Topic" }, { - "pid": "7639", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/259974811" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/963658166" + }, + "pid": "9790", + "type": "bf:Topic" }, { - "pid": "7640", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/259995118" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/963553984" + }, + "pid": "9791", + "type": "bf:Topic" }, { - "pid": "7641", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/261107909" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/962075272" + }, + "pid": "9792", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/962073881" + }, + "pid": "9793", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/961897546" + }, + "pid": "9794", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/961236752" + }, + "pid": "9795", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/961192356" + }, + "pid": "9796", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/961049510" + }, + "pid": "9797", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/960895175" + }, + "pid": "9798", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/96037650X" + }, + "pid": "9799", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/960375988" + }, + "pid": "9800", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/960175105" + }, + "pid": "9801", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/959959750" + }, + "pid": "9802", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/959794972" + }, + "pid": "9803", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/959794921" + }, + "pid": "9804", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/959794859" + }, + "pid": "9805", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/959740864" + }, + "pid": "9806", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/959716688" + }, + "pid": "9807", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/959148523" + }, + "pid": "9808", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/959148485" + }, + "pid": "9809", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/959148477" + }, + "pid": "9810", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/958503001" + }, + "pid": "9811", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/958467102" + }, + "pid": "9812", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/958224625" + }, + "pid": "9813", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/958195889" + }, + "pid": "9814", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/958190453" + }, + "pid": "9815", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/957705611" + }, + "pid": "9816", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/95765894X" + }, + "pid": "9817", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/957331940" + }, + "pid": "9818", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/957331673" + }, + "pid": "9819", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/957192517" + }, + "pid": "9820", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/956838049" + }, + "pid": "9821", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/956643221" + }, + "pid": "9822", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/956635709" + }, + "pid": "9823", + "type": "bf:Topic" }, { - "pid": "7642", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/261196715" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/956220495" + }, + "pid": "9824", + "type": "bf:Topic" }, { - "pid": "7643", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/261901532" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/955244641" + }, + "pid": "9825", + "type": "bf:Topic" }, { - "pid": "7644", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/262111012" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/95489748X" + }, + "pid": "9826", + "type": "bf:Topic" }, { - "pid": "7645", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/262111020" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/954782232" + }, + "pid": "9827", + "type": "bf:Topic" }, { - "pid": "7646", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/262111039" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/95462839X" + }, + "pid": "9828", + "type": "bf:Topic" }, { - "pid": "7647", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/262111071" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/954211774" + }, + "pid": "9829", + "type": "bf:Topic" }, { - "pid": "7648", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/26211108X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/954206738" + }, + "pid": "9830", + "type": "bf:Topic" }, { - "pid": "7649", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/262111098" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/954203232" + }, + "pid": "9831", + "type": "bf:Topic" }, { - "pid": "7650", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/262125927" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/953679802" + }, + "pid": "9832", + "type": "bf:Topic" }, { - "pid": "7651", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/262413817" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/953550346" + }, + "pid": "9833", + "type": "bf:Topic" }, { - "pid": "7652", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/262414023" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/953444201" + }, + "pid": "9834", + "type": "bf:Topic" }, { - "pid": "7653", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/262414082" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/953056082" + }, + "pid": "9835", + "type": "bf:Topic" }, { - "pid": "7654", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/262414112" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/952896605" + }, + "pid": "9836", + "type": "bf:Topic" }, { - "pid": "7655", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/262668858" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/952702053" + }, + "pid": "9837", + "type": "bf:Topic" }, { - "pid": "7656", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/262669161" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/952619636" + }, + "pid": "9838", + "type": "bf:Topic" }, { - "pid": "7657", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/262669188" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/952440431" + }, + "pid": "9839", + "type": "bf:Topic" }, { - "pid": "7658", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/26266920X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/952431602" + }, + "pid": "9840", + "type": "bf:Topic" }, { - "pid": "7659", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/262669234" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/951810189" + }, + "pid": "9841", + "type": "bf:Topic" }, { - "pid": "7660", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/262669242" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/951618563" + }, + "pid": "9842", + "type": "bf:Topic" }, { - "pid": "7661", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/262669250" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/951607804" + }, + "pid": "9843", + "type": "bf:Topic" }, { - "pid": "7662", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/262805111" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/95159981X" + }, + "pid": "9844", + "type": "bf:Topic" }, { - "pid": "7663", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/262915219" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/951549650" + }, + "pid": "9845", + "type": "bf:Topic" }, { - "pid": "7664", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/262928264" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/95153047X" + }, + "pid": "9846", + "type": "bf:Topic" }, { - "pid": "7665", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/26292837X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/95152092X" + }, + "pid": "9847", + "type": "bf:Topic" }, { - "pid": "7666", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/262928507" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/950857157" + }, + "pid": "9848", + "type": "bf:Topic" }, { - "pid": "7667", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/262928701" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/950693413" + }, + "pid": "9849", + "type": "bf:Topic" }, { - "pid": "7668", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/26307837X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/950693375" + }, + "pid": "9850", + "type": "bf:Topic" }, { - "pid": "7669", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263492680" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/950692433" + }, + "pid": "9851", + "type": "bf:Topic" }, { - "pid": "7670", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263499944" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/950632481" + }, + "pid": "9852", + "type": "bf:Topic" }, { - "pid": "7671", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263499979" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/950276014" + }, + "pid": "9853", + "type": "bf:Topic" }, { - "pid": "7672", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263500047" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/949894028" + }, + "pid": "9854", + "type": "bf:Topic" }, { - "pid": "7673", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263500071" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/949435015" + }, + "pid": "9855", + "type": "bf:Topic" }, { - "pid": "7674", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263500187" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/948897244" + }, + "pid": "9856", + "type": "bf:Topic" }, { - "pid": "7675", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263610918" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/948567341" + }, + "pid": "9857", + "type": "bf:Topic" }, { - "pid": "7676", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714233" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/948567317" + }, + "pid": "9858", + "type": "bf:Topic" }, { - "pid": "7677", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714241" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/948565977" + }, + "pid": "9859", + "type": "bf:Topic" }, { - "pid": "7678", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/26371425X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/948520116" + }, + "pid": "9860", + "type": "bf:Topic" }, { - "pid": "7679", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714268" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/948474688" + }, + "pid": "9861", + "type": "bf:Topic" }, { - "pid": "7680", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714276" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/947762868" + }, + "pid": "9862", + "type": "bf:Topic" }, { - "pid": "7681", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714284" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/947572090" + }, + "pid": "9863", + "type": "bf:Topic" }, { - "pid": "7682", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714292" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/947210601" + }, + "pid": "9864", + "type": "bf:Topic" }, { - "pid": "7683", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714306" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/947024387" + }, + "pid": "9865", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/946840318" + }, + "pid": "9866", + "type": "bf:Topic" }, { - "pid": "7684", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714314" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/94683203X" + }, + "pid": "9867", + "type": "bf:Topic" }, { - "pid": "7685", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714322" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/946538506" + }, + "pid": "9868", + "type": "bf:Topic" }, { - "pid": "7686", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714330" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/946529981" + }, + "pid": "9869", + "type": "bf:Topic" }, { - "pid": "7687", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714349" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/946267340" + }, + "pid": "9870", + "type": "bf:Topic" }, { - "pid": "7688", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714357" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/945831749" + }, + "pid": "9871", + "type": "bf:Topic" }, { - "pid": "7689", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714365" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/94574577X" + }, + "pid": "9872", + "type": "bf:Topic" }, { - "pid": "7690", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714373" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/945675267" + }, + "pid": "9873", + "type": "bf:Topic" }, { - "pid": "7691", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/26371439X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/945372604" + }, + "pid": "9874", + "type": "bf:Topic" }, { - "pid": "7692", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714403" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/945325150" + }, + "pid": "9875", + "type": "bf:Topic" }, { - "pid": "7693", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714411" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/944352820" + }, + "pid": "9876", + "type": "bf:Topic" }, { - "pid": "7694", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/26371442X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/94392961X" + }, + "pid": "9877", + "type": "bf:Topic" }, { - "pid": "7695", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714438" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/94392684X" + }, + "pid": "9878", + "type": "bf:Topic" }, { - "pid": "7696", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714446" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/943618118" + }, + "pid": "9879", + "type": "bf:Topic" }, { - "pid": "7697", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714454" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/943592267" + }, + "pid": "9880", + "type": "bf:Topic" }, { - "pid": "7698", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714462" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/943496799" + }, + "pid": "9881", + "type": "bf:Topic" }, { - "pid": "7699", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714470" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/943138604" + }, + "pid": "9882", + "type": "bf:Topic" }, { - "pid": "7700", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714489" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/942370295" + }, + "pid": "9883", + "type": "bf:Topic" }, { - "pid": "7701", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714500" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/942203283" + }, + "pid": "9884", + "type": "bf:Topic" }, { - "pid": "7702", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714519" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/94206285X" + }, + "pid": "9885", + "type": "bf:Topic" }, { - "pid": "7703", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714527" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/941781437" + }, + "pid": "9886", + "type": "bf:Topic" }, { - "pid": "7704", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714535" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/940910004" + }, + "pid": "9887", + "type": "bf:Topic" }, { - "pid": "7705", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714543" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/940842440" + }, + "pid": "9888", + "type": "bf:Topic" }, { - "pid": "7706", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714551" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/94063855X" + }, + "pid": "9889", + "type": "bf:Topic" }, { - "pid": "7707", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/26371456X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/940594919" + }, + "pid": "9890", + "type": "bf:Topic" }, { - "pid": "7708", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714578" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/199289190" + }, + "pid": "9891", + "type": "bf:Topic" }, { - "pid": "7709", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714594" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/199281823" + }, + "pid": "9892", + "type": "bf:Topic" }, { - "pid": "7710", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714608" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/199193835" + }, + "pid": "9893", + "type": "bf:Topic" }, { - "pid": "7711", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714616" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/19917606X" + }, + "pid": "9894", + "type": "bf:Topic" }, { - "pid": "7712", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714624" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/199170711" + }, + "pid": "9895", + "type": "bf:Topic" }, { - "pid": "7713", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714632" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/19915046X" + }, + "pid": "9896", + "type": "bf:Topic" }, { - "pid": "7714", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714640" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/199129215" + }, + "pid": "9897", + "type": "bf:Topic" }, { - "pid": "7715", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714659" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/130791008" + }, + "pid": "9898", + "type": "bf:Topic" }, { - "pid": "7716", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714667" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/130750085" + }, + "pid": "9899", + "type": "bf:Topic" }, { - "pid": "7717", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714691" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/130741094" + }, + "pid": "9900", + "type": "bf:Topic" }, { - "pid": "7718", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714705" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/130724572" + }, + "pid": "9901", + "type": "bf:Topic" }, { - "pid": "7719", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/263714713" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/130715387" + }, + "pid": "9902", + "type": "bf:Topic" }, { - "pid": "7720", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027794687" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/130714941" + }, + "pid": "9903", + "type": "bf:Topic" }, { - "pid": "7721", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/029531411" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/130708291" + }, + "pid": "9904", + "type": "bf:Topic" }, { - "pid": "7722", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/033466300" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/130703907" + }, + "pid": "9905", + "type": "bf:Topic" }, { - "pid": "7723", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/050665391" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/130702722" + }, + "pid": "9906", + "type": "bf:Topic" }, { - "pid": "7724", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027796930" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/13069374X" }, - "deleted": "2023-08-08T14:28:41.182452+00:00" + "pid": "9907", + "type": "bf:Topic" }, { - "pid": "7725", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027797619" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/130692476" }, - "deleted": "2023-08-08T14:28:41.276336+00:00" + "pid": "9908", + "type": "bf:Topic" }, { - "pid": "7726", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027798461" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04328762X" }, - "deleted": "2023-08-08T14:28:41.375163+00:00" + "pid": "9909", + "type": "bf:Topic" }, - { - "pid": "7727", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027798682" + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043282695" }, - "deleted": "2023-08-08T14:28:41.485675+00:00" + "pid": "9910", + "type": "bf:Topic" }, { - "pid": "7728", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027799395" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04328213X" }, - "deleted": "2023-08-08T14:28:41.593466+00:00" + "pid": "9911", + "type": "bf:Topic" }, { - "pid": "7729", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027799409" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043274994" }, - "deleted": "2023-08-08T14:28:41.670485+00:00" + "pid": "9912", + "type": "bf:Topic" }, { - "pid": "7730", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027799425" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043252044" }, - "deleted": "2023-08-08T14:28:41.752508+00:00" + "pid": "9913", + "type": "bf:Topic" }, { - "pid": "7731", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027804380" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043203469" }, - "deleted": "2023-08-08T14:28:41.850206+00:00" + "pid": "9914", + "type": "bf:Topic" }, { - "pid": "7732", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027805158" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043197574" }, - "deleted": "2023-08-08T14:28:41.984200+00:00" + "pid": "9915", + "type": "bf:Topic" }, { - "pid": "7733", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027805301" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043195733" }, - "deleted": "2023-08-08T14:28:42.125605+00:00" + "pid": "9916", + "type": "bf:Topic" }, { - "pid": "7734", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027805824" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04313291X" }, - "deleted": "2023-08-08T14:28:42.243305+00:00" + "pid": "9917", + "type": "bf:Topic" }, { - "pid": "7735", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027812596" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043128629" }, - "deleted": "2023-08-08T14:28:43.978364+00:00" + "pid": "9918", + "type": "bf:Topic" }, { - "pid": "7736", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/02781341X" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043062008" }, - "deleted": "2023-08-08T14:28:44.061768+00:00" + "pid": "9919", + "type": "bf:Topic" }, { - "pid": "7737", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027813533" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04304929X" }, - "deleted": "2023-08-08T14:28:44.848459+00:00" + "pid": "9920", + "type": "bf:Topic" }, { - "pid": "7738", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027804232" + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043035167" }, - "deleted": "2023-08-08T14:28:46.891848+00:00" + "pid": "9921", + "type": "bf:Topic" }, { - "pid": "7739", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/033297746" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043022790" + }, + "pid": "9922", + "type": "bf:Topic" }, { - "pid": "7740", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/050170406" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043004164" + }, + "pid": "9923", + "type": "bf:Topic" }, { - "pid": "7741", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/098272225" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043003583" + }, + "pid": "9924", + "type": "bf:Topic" }, { - "pid": "7742", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/241963974" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043001173" + }, + "pid": "9925", + "type": "bf:Topic" }, { - "pid": "7743", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027793974" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04300024X" + }, + "pid": "9926", + "type": "bf:Topic" }, { - "pid": "7744", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027794016" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/043000150" + }, + "pid": "9927", + "type": "bf:Topic" }, { - "pid": "7745", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027794903" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042982553" + }, + "pid": "9928", + "type": "bf:Topic" }, { - "pid": "7746", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027794954" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042981794" + }, + "pid": "9929", + "type": "bf:Topic" }, { - "pid": "7747", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027794962" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042940664" + }, + "pid": "9930", + "type": "bf:Topic" }, { - "pid": "7748", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027794970" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042914582" + }, + "pid": "9931", + "type": "bf:Topic" }, { - "pid": "7749", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027795926" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042913748" + }, + "pid": "9932", + "type": "bf:Topic" }, { - "pid": "7750", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027796817" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04291096X" + }, + "pid": "9933", + "type": "bf:Topic" }, { - "pid": "7751", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027799433" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042910870" + }, + "pid": "9934", + "type": "bf:Topic" }, { - "pid": "7752", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027804038" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042892562" + }, + "pid": "9935", + "type": "bf:Topic" }, { - "pid": "7753", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027804186" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042870526" + }, + "pid": "9936", + "type": "bf:Topic" }, { - "pid": "7754", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/030860466" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042863627" + }, + "pid": "9937", + "type": "bf:Topic" }, { - "pid": "7755", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/031022219" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042848792" + }, + "pid": "9938", + "type": "bf:Topic" }, { - "pid": "7756", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/031937667" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042841259" + }, + "pid": "9939", + "type": "bf:Topic" }, { - "pid": "7757", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/033070202" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042819458" + }, + "pid": "9940", + "type": "bf:Topic" }, { - "pid": "7758", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/034577769" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042815479" + }, + "pid": "9941", + "type": "bf:Topic" }, { - "pid": "7759", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/03483446X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042777089" + }, + "pid": "9942", + "type": "bf:Topic" }, { - "pid": "7760", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/034853537" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042765315" + }, + "pid": "9943", + "type": "bf:Topic" }, { - "pid": "7761", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/03487156X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042731887" + }, + "pid": "9944", + "type": "bf:Topic" }, { - "pid": "7762", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/034933697" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042731437" + }, + "pid": "9945", + "type": "bf:Topic" }, { - "pid": "7763", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/034934774" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042720133" + }, + "pid": "9946", + "type": "bf:Topic" }, { - "pid": "7764", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/034934936" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04266702X" + }, + "pid": "9947", + "type": "bf:Topic" }, { - "pid": "7765", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/034935061" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042653304" + }, + "pid": "9948", + "type": "bf:Topic" }, { - "pid": "7766", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/034935134" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042645212" + }, + "pid": "9949", + "type": "bf:Topic" }, { - "pid": "7767", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/034935177" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042627222" + }, + "pid": "9950", + "type": "bf:Topic" }, { - "pid": "7768", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/034935207" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042586208" + }, + "pid": "9951", + "type": "bf:Topic" }, { - "pid": "7769", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/034935274" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042578205" + }, + "pid": "9952", + "type": "bf:Topic" }, { - "pid": "7770", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/034935290" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042573254" + }, + "pid": "9953", + "type": "bf:Topic" }, { - "pid": "7771", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/034935304" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042536367" + }, + "pid": "9954", + "type": "bf:Topic" }, { - "pid": "7772", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/034935827" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042496675" + }, + "pid": "9955", + "type": "bf:Topic" }, { - "pid": "7773", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/034935835" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042486386" + }, + "pid": "9956", + "type": "bf:Topic" }, { - "pid": "7774", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/034935908" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042447690" + }, + "pid": "9957", + "type": "bf:Topic" }, { - "pid": "7775", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/034936890" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042438799" + }, + "pid": "9958", + "type": "bf:Topic" }, { - "pid": "7776", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/034937072" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042425875" + }, + "pid": "9959", + "type": "bf:Topic" }, { - "pid": "7777", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/034937099" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042422825" + }, + "pid": "9960", + "type": "bf:Topic" }, { - "pid": "7778", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/034937129" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042380480" + }, + "pid": "9961", + "type": "bf:Topic" }, { - "pid": "7779", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/035021128" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042374480" + }, + "pid": "9962", + "type": "bf:Topic" }, { - "pid": "7780", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/035021179" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042325900" + }, + "pid": "9963", + "type": "bf:Topic" }, { - "pid": "7781", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/035077948" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042325897" + }, + "pid": "9964", + "type": "bf:Topic" }, { - "pid": "7782", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/035077964" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042313414" + }, + "pid": "9965", + "type": "bf:Topic" }, { - "pid": "7783", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/035078316" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042277558" + }, + "pid": "9966", + "type": "bf:Topic" }, { - "pid": "7784", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/035087625" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042266289" + }, + "pid": "9967", + "type": "bf:Topic" }, { - "pid": "7785", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/03509446X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042241839" + }, + "pid": "9968", + "type": "bf:Topic" }, { - "pid": "7786", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/035207191" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042230284" + }, + "pid": "9969", + "type": "bf:Topic" }, { - "pid": "7787", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/03528076X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042213010" + }, + "pid": "9970", + "type": "bf:Topic" }, { - "pid": "7788", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/035383925" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042183154" + }, + "pid": "9971", + "type": "bf:Topic" }, { - "pid": "7789", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/035623683" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04216818X" + }, + "pid": "9972", + "type": "bf:Topic" }, { - "pid": "7790", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/035623691" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042161258" + }, + "pid": "9973", + "type": "bf:Topic" }, { - "pid": "7791", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/050323148" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042147670" + }, + "pid": "9974", + "type": "bf:Topic" }, { - "pid": "7792", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/050323172" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042142237" + }, + "pid": "9975", + "type": "bf:Topic" }, { - "pid": "7793", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/061617296" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042137519" + }, + "pid": "9976", + "type": "bf:Topic" }, { - "pid": "7794", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/077057384" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042124093" + }, + "pid": "9977", + "type": "bf:Topic" }, { - "pid": "7795", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/101481241" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042123909" + }, + "pid": "9978", + "type": "bf:Topic" }, { - "pid": "7796", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/101481330" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04211277X" + }, + "pid": "9979", + "type": "bf:Topic" }, { - "pid": "7797", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/101481349" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042104378" + }, + "pid": "9980", + "type": "bf:Topic" }, { - "pid": "7798", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/101481438" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042100917" + }, + "pid": "9981", + "type": "bf:Topic" }, { - "pid": "7799", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/107841363" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042100445" + }, + "pid": "9982", + "type": "bf:Topic" }, { - "pid": "7800", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/108812987" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042081033" + }, + "pid": "9983", + "type": "bf:Topic" }, { - "pid": "7801", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/109094883" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042074150" + }, + "pid": "9984", + "type": "bf:Topic" }, { - "pid": "7802", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/11353213X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042044529" + }, + "pid": "9985", + "type": "bf:Topic" }, { - "pid": "7803", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/11393260X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042033276" + }, + "pid": "9986", + "type": "bf:Topic" }, { - "pid": "7804", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/12007432X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042022622" + }, + "pid": "9987", + "type": "bf:Topic" }, { - "pid": "7805", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/120593904" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/042020646" + }, + "pid": "9988", + "type": "bf:Topic" }, { - "pid": "7806", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/144664119" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041969596" + }, + "pid": "9989", + "type": "bf:Topic" }, { - "pid": "7807", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/146322134" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041966716" + }, + "pid": "9990", + "type": "bf:Topic" }, { - "pid": "7808", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/148171095" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041962923" + }, + "pid": "9991", + "type": "bf:Topic" }, { - "pid": "7809", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/169177742" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041961080" + }, + "pid": "9992", + "type": "bf:Topic" }, { - "pid": "7810", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/169177750" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041944240" + }, + "pid": "9993", + "type": "bf:Topic" }, { - "pid": "7811", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/17089018X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041935659" + }, + "pid": "9994", + "type": "bf:Topic" }, { - "pid": "7812", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/180122312" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/04193458X" + }, + "pid": "9995", + "type": "bf:Topic" }, { - "pid": "7813", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/185676146" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041920287" + }, + "pid": "9996", + "type": "bf:Topic" }, { - "pid": "7814", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/196345359" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041920279" + }, + "pid": "9997", + "type": "bf:Topic" }, { - "pid": "7815", - "type": "bf:Topic", - "idref": { - "$ref": "https://mef.rero.ch/api/concepts/idref/027809773" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041917413" + }, + "pid": "9998", + "type": "bf:Topic" + }, + { + "gnd": { + "$ref": "https://mef.rero.ch/api/concepts/gnd/041913574" + }, + "pid": "9999", + "type": "bf:Topic" } ] \ No newline at end of file diff --git a/data/comef_metadata.csv b/data/comef_metadata.csv index 9721728b..d372f325 100644 --- a/data/comef_metadata.csv +++ b/data/comef_metadata.csv @@ -1,293 +1,2694 @@ -2023-08-08 13:37:34.570468 2023-08-08 13:37:34.570472 dac46dce-f6ed-467e-bf45-b7b8cd223f18 {"pid": "7523", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A009955971"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:34.641909 2023-08-08 13:37:34.641913 145433f7-2c2d-4da0-a5e9-1f0ede5f4e5b {"pid": "7524", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A010077990"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:34.689298 2023-08-08 13:37:34.689302 41156192-2519-4487-b59d-122fd1ae9413 {"pid": "7525", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001001"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:34.737453 2023-08-08 13:37:34.737456 04f7c0b9-95c7-41a2-843e-1b138eee3f94 {"pid": "7526", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001003"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:34.783853 2023-08-08 13:37:34.783856 33d69848-7a15-4f22-a84b-35eb42319b2a {"pid": "7527", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001004"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:34.83615 2023-08-08 13:37:34.836152 fe4fd4cb-7503-4fac-b0f2-ce07ff26766b {"pid": "7528", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001005"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:34.894562 2023-08-08 13:37:34.89457 164d426e-f0c7-45df-9dcd-2d3873dde307 {"pid": "7529", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001006"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:34.972661 2023-08-08 13:37:34.972665 a0f52ae3-acd7-443d-acab-6a21fbc26666 {"pid": "7530", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001007"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:35.039536 2023-08-08 13:37:35.039539 49dad886-d4e0-4102-9a57-009308939484 {"pid": "7531", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001008"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:35.121705 2023-08-08 13:37:35.121715 e0631867-3940-4e67-a10c-10ca724557bc {"pid": "7532", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001009"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:35.210691 2023-08-08 13:37:35.210696 76505cec-e298-454e-8bcc-67e5ac5893fd {"pid": "7533", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001012"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:35.279426 2023-08-08 13:37:35.279434 9c331bda-472a-4c59-8964-f78697b389a3 {"pid": "7534", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001013"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:35.348182 2023-08-08 13:37:35.348186 3f0ca320-84a0-49c8-aaf5-2aced99f2523 {"pid": "7535", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001014"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:35.414103 2023-08-08 13:37:35.414105 9615e44b-8cee-48d7-83e2-5618d3abf222 {"pid": "7536", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001016"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:35.491621 2023-08-08 13:37:35.491625 768255ea-a4ad-4619-9dd9-f0c31fe43171 {"pid": "7537", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001017"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:35.548338 2023-08-08 13:37:35.548341 b2ce96a6-62cd-47ef-989c-cdf951619a68 {"pid": "7538", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001018"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:35.599191 2023-08-08 13:37:35.599195 f2412722-83f8-4b27-aba2-595e635fa76c {"pid": "7539", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001021"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:35.647675 2023-08-08 13:37:35.647679 735d6d96-a1bf-4e40-a415-373017cd27fd {"pid": "7540", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001023"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:35.692528 2023-08-08 13:37:35.692531 5e494833-a62b-4a04-92f9-192ef71ab77f {"pid": "7541", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001024"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:35.745055 2023-08-08 13:37:35.745057 5215edf8-debf-497c-be84-56680c97c7b8 {"pid": "7542", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001025"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:37.321796 2023-08-08 13:37:37.321799 672d2c3f-e581-456c-9743-76d6454f5996 {"pid": "7543", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027224430"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:37.397172 2023-08-08 13:37:37.397174 8209ea39-87c8-4c5c-aa72-0d0fe3f5740b {"pid": "7544", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027227219"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:37.447981 2023-08-08 13:37:37.447984 9db59da0-cfaa-4be3-9aad-c7ae55b19380 {"pid": "7545", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027235548"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:37.496458 2023-08-08 13:37:37.496461 8538fe03-0b51-4d54-8d30-f06c84d2683f {"pid": "7546", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027236226"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:37.550231 2023-08-08 13:37:37.550233 400b79a9-0aa8-42df-82b4-e6df7ec325ce {"pid": "7547", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027243087"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:37.605624 2023-08-08 13:37:37.605628 0de0792d-8a7f-421e-9976-ddb6b792b2e1 {"pid": "7548", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027246655"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:37.665503 2023-08-08 13:37:37.665506 e5cf5c69-5732-48c4-bcc3-3bd53c2b6c2b {"pid": "7549", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027256251"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:37.715039 2023-08-08 13:37:37.715042 314b3a71-0716-45c0-98ec-63d826cbd4c2 {"pid": "7550", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027287289"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:37.76283 2023-08-08 13:37:37.762833 da4db154-9f0e-4df8-9e5a-3728e96d1bd2 {"pid": "7551", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027294358"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:37.808928 2023-08-08 13:37:37.808931 5450b281-9bba-4ac1-881d-658a405b5fe3 {"pid": "7552", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02730440X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:37.854971 2023-08-08 13:37:37.854974 80d57165-9bce-4c24-b78c-5363cda1345a {"pid": "7553", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027328295"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:37.929821 2023-08-08 13:37:37.929825 985081dd-c99d-460f-b772-149625f7aeb9 {"pid": "7554", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027354431"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:38.014354 2023-08-08 13:37:38.014359 49ec3254-16a9-4b79-ac73-52d135b7ffa6 {"pid": "7555", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027366669"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:38.095554 2023-08-08 13:37:38.095565 9e1e09da-607c-4afe-8c0a-bb048ba5c77e {"pid": "7556", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027389782"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:38.194196 2023-08-08 13:37:38.194203 6a3fce1f-e9f5-4cb0-a6f6-c9a0f005aaee {"pid": "7557", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027430162"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:38.279211 2023-08-08 13:37:38.279219 f1e27378-e29f-413d-bc19-b0cbf91789fb {"pid": "7558", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027488462"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:38.378135 2023-08-08 13:37:38.378143 0cefbf2f-ec9f-4ae3-b300-a5cdd798be1c {"pid": "7559", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02750610X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:38.441653 2023-08-08 13:37:38.441656 fd836156-c7a2-4c8a-94c2-a5e6b9ede2d2 {"pid": "7560", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027510387"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:38.529536 2023-08-08 13:37:38.529541 ba59c574-3369-4eb3-b739-726ce9be7337 {"pid": "7561", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027599701"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:38.595114 2023-08-08 13:37:38.595119 76ba8f40-ad15-4afa-8aab-b3cba741962d {"pid": "7562", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027652254"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:38.647193 2023-08-08 13:37:38.647196 979baaba-e1f6-47c7-9c11-5d0cc88bbb24 {"pid": "7563", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027661504"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:38.69269 2023-08-08 13:37:38.692693 879f97bd-1a78-4c1d-b283-920d68c494ab {"pid": "7564", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027675823"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:38.744914 2023-08-08 13:37:38.744917 e2aaf252-a10a-4cde-bc73-3c2123a06328 {"pid": "7565", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027688739"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:38.792151 2023-08-08 13:37:38.792154 ff7cdaab-cafe-44f2-b82a-cfc793c44269 {"pid": "7566", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027699870"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:38.838864 2023-08-08 13:37:38.838868 891f6917-b7ac-43be-b128-a725aa6643c1 {"pid": "7567", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02770940X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:38.91243 2023-08-08 13:37:38.912432 5c520cfd-bc6a-4756-bdff-50cdb387cdd7 {"pid": "7568", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027741060"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:38.983162 2023-08-08 13:37:38.983171 e8d35e34-5757-4fb3-b0dd-801b96c6147b {"pid": "7569", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027741125"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:39.053507 2023-08-08 13:37:39.053509 8b496f92-8a4d-40f6-a1aa-3498b99a821f {"pid": "7570", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027765369"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:39.118433 2023-08-08 13:37:39.118435 3b7d2fb6-a531-4027-8a50-046e32baa30b {"pid": "7571", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027785084"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:39.19575 2023-08-08 13:37:39.195753 df0c1508-b627-41ca-b3a9-5609b90ac373 {"pid": "7572", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027805220"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:39.276421 2023-08-08 13:37:39.27643 d2d47ac4-6e0d-49be-9f7c-b13ed82b5ef4 {"pid": "7573", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027809781"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:39.366697 2023-08-08 13:37:39.366709 6951537a-dc93-48b8-80a8-91f1be875c75 {"pid": "7574", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027811611"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:39.434794 2023-08-08 13:37:39.434796 5eba0d5f-5c7c-47a6-be9b-3411f9603ed5 {"pid": "7575", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027825280"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:39.506032 2023-08-08 13:37:39.506043 dbb7afff-52da-42ce-b2e2-cb6cf4224f94 {"pid": "7576", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027832953"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:39.559072 2023-08-08 13:37:39.559074 8fe839de-3e73-4d1a-805c-e4d9ce9e56ef {"pid": "7577", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027838919"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:39.625884 2023-08-08 13:37:39.625894 8f2ef111-96ca-4e23-a6c1-5c9ee810846f {"pid": "7578", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02784532X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:39.68197 2023-08-08 13:37:39.681974 8e71de06-364c-4b1a-bf83-a0d1c6b11341 {"pid": "7579", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027852547"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:39.729373 2023-08-08 13:37:39.729376 53789323-57d7-4b60-9cdd-d5493697836b {"pid": "7580", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028004698"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:39.777817 2023-08-08 13:37:39.77782 a0082d77-481a-4a65-ae00-dda496b2aae9 {"pid": "7581", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028244494"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:39.829728 2023-08-08 13:37:39.829731 dc454d11-fa70-4406-8f5d-5a438d1605c6 {"pid": "7582", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028283678"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:39.875643 2023-08-08 13:37:39.875645 3e27a960-f870-4886-a788-57426aab0e81 {"pid": "7583", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028354559"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:39.945359 2023-08-08 13:37:39.945368 e83f418d-a2dd-45dd-b914-a9503e0db42b {"pid": "7584", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028359070"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:40.030173 2023-08-08 13:37:40.030178 dd69540b-f270-4179-b606-0b0c375ea63c {"pid": "7585", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028701755"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:40.086695 2023-08-08 13:37:40.086703 e4e46c08-1fb1-4298-87c4-61cc62c0567f {"pid": "7586", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028910044"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:40.170527 2023-08-08 13:37:40.170535 81f71d3f-b5a3-4d88-bed3-6e5c87b8eee9 {"pid": "7587", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028962389"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:40.234053 2023-08-08 13:37:40.234057 3e2c8926-b993-4645-b4cb-bdc81844baf8 {"pid": "7588", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02897297X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:40.316883 2023-08-08 13:37:40.31689 a9081a25-2057-4708-a646-beaaa96c21de {"pid": "7589", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029241693"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:40.408728 2023-08-08 13:37:40.408733 69a83937-6d1b-4f5b-bf96-8410adbf9f0d {"pid": "7590", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029260892"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json", "deleted": "2022-08-25T10:47:31.610056+00:00"} 1 -2023-08-08 13:37:40.496115 2023-08-08 13:37:40.496124 ada862f3-59a5-428d-a8ef-7cf47a8e86e1 {"pid": "7591", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029560020"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:40.562533 2023-08-08 13:37:40.562536 18eadecc-e55f-40f6-a105-75d592386931 {"pid": "7592", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029563321"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:40.634976 2023-08-08 13:37:40.634978 0c356944-809a-4311-a022-49bc2c806951 {"pid": "7593", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029910609"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:40.707634 2023-08-08 13:37:40.70764 85503263-9362-4a40-a778-6503b93b37d1 {"pid": "7594", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030714451"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:40.77724 2023-08-08 13:37:40.777244 21983b6b-b5a0-4a9a-b95e-4207d45cf46c {"pid": "7595", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030763762"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:40.835475 2023-08-08 13:37:40.835479 b6677f66-e9d4-4550-a167-b2b2c5f74bd3 {"pid": "7596", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030767806"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:40.885874 2023-08-08 13:37:40.885877 b37b70af-c688-4a00-af9a-d800c3853479 {"pid": "7597", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03116207X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:40.976445 2023-08-08 13:37:40.976455 5434e655-aaac-4f9a-b6c7-549d19682070 {"pid": "7598", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/031474284"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:41.048881 2023-08-08 13:37:41.048884 42e7ce67-8fd0-45e0-a485-596533ec3b75 {"pid": "7599", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/031911056"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:41.12454 2023-08-08 13:37:41.12455 37bff509-de81-49ae-af92-adb3259f0572 {"pid": "7600", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/031992234"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:41.198981 2023-08-08 13:37:41.198988 09ae2a98-7728-40a9-a96c-d74b3f5464b2 {"pid": "7601", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03212743X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:41.280798 2023-08-08 13:37:41.280805 fb974f50-be51-4147-8b71-0bd83ef7af89 {"pid": "7602", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/032187130"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:41.381704 2023-08-08 13:37:41.381712 645b993d-b3e4-4ffd-93c0-1c773d46ea88 {"pid": "7603", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/032563507"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:41.46704 2023-08-08 13:37:41.467048 8341e7a5-fe40-4a33-8302-05cd47a733d8 {"pid": "7604", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/032972938"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:41.543896 2023-08-08 13:37:41.543899 5b3abd85-5923-40ce-b262-95793471e7e3 {"pid": "7605", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03388157X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:41.61416 2023-08-08 13:37:41.614163 009228a8-3014-42b1-84ed-de3a72a47939 {"pid": "7606", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034160523"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:41.700361 2023-08-08 13:37:41.700369 62871867-7f81-4b0a-899d-a9730d473dfe {"pid": "7607", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034490906"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:41.772326 2023-08-08 13:37:41.772329 7064aa1e-b931-4284-9410-fe13c8aed530 {"pid": "7608", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034680365"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:41.822601 2023-08-08 13:37:41.822604 975a297c-d44e-43a0-be23-50416a982322 {"pid": "7609", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035801123"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:41.88216 2023-08-08 13:37:41.882162 71f8606e-f10b-49f0-bcdb-5c39ebe24080 {"pid": "7610", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050203177"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:41.941462 2023-08-08 13:37:41.941465 babda14f-20f8-4593-b5e1-116b77fd753d {"pid": "7611", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050513478"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:42.030539 2023-08-08 13:37:42.030544 8684b379-b84e-49c2-8120-959446d2bf0d {"pid": "7612", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/077061284"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:42.098993 2023-08-08 13:37:42.098998 46543dca-5fa8-4076-b1b6-0cd9376a6d99 {"pid": "7613", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/080206913"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:42.179036 2023-08-08 13:37:42.179039 d922c892-0f2a-4932-8da8-fc7863281b1a {"pid": "7614", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/083620338"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:42.253651 2023-08-08 13:37:42.253653 25d27153-0a43-4d5a-a9c7-98e98697fef0 {"pid": "7615", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/083622519"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json", "deleted": "2022-08-25T10:47:31.616254+00:00"} 1 -2023-08-08 13:37:42.34567 2023-08-08 13:37:42.345675 fd8b99ad-2410-4b7b-b8df-761ea2f55314 {"pid": "7616", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/092468675"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:42.430895 2023-08-08 13:37:42.430904 dc1d419f-23ad-4a97-8c6c-a588efec071e {"pid": "7617", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/113531923"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:42.516961 2023-08-08 13:37:42.51697 b2e19a1b-8957-4e03-9bc6-4685aea0f121 {"pid": "7618", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/119256347"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:42.591106 2023-08-08 13:37:42.591116 d71d61e5-426c-470a-86e9-1f52dc1a1b5a {"pid": "7619", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/130730173"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:42.679734 2023-08-08 13:37:42.679743 0521fc43-dd56-41d9-9019-0fc507696600 {"pid": "7620", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/132184214"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:42.776706 2023-08-08 13:37:42.776711 84cd3fbf-274f-4f2d-ac1d-ac7cefc1480d {"pid": "7621", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/146321944"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:42.827699 2023-08-08 13:37:42.827703 ca09bbf7-d883-4c17-b68d-468aef444076 {"pid": "7622", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/146774094"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:42.876931 2023-08-08 13:37:42.876934 2cecf4dc-74f8-4229-8dfc-c7a387153c3b {"pid": "7623", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/16573762X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:42.926601 2023-08-08 13:37:42.926604 f8d78f9b-d5c1-4ec3-846e-45d5f96afd7b {"pid": "7624", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/16719416X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:42.979616 2023-08-08 13:37:42.979619 8acda6d8-94c6-40ea-82e6-0639af921cb8 {"pid": "7625", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/172690250"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:43.035879 2023-08-08 13:37:43.035883 41c96dcb-c9dc-4673-8baa-1663639d22b9 {"pid": "7626", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/174131887"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:43.115453 2023-08-08 13:37:43.115459 9c8040e3-e214-45f0-b099-5bbeea1cb89b {"pid": "7627", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/18456381X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:43.182623 2023-08-08 13:37:43.18263 8f236f8e-26d4-44fa-89e8-3ce58c3fdeee {"pid": "7628", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/245367888"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:43.27528 2023-08-08 13:37:43.27529 c2b14c18-df4b-4849-a87e-9ce78878434f {"pid": "7629", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/252252063"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:43.366141 2023-08-08 13:37:43.366149 895cabdc-9cf7-4dad-8af0-4f536e322728 {"pid": "7630", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/25410875X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:43.44231 2023-08-08 13:37:43.442314 72f201e3-865d-4867-9ae9-6f377264ce97 {"pid": "7631", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/255690444"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:43.531867 2023-08-08 13:37:43.531872 9c59ed71-1817-4079-a5bb-152de90e27bf {"pid": "7632", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/256524203"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:43.61447 2023-08-08 13:37:43.614474 fae2477e-1dbc-47fa-ac8e-c7a3fb290ce8 {"pid": "7633", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/258617527"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:43.712463 2023-08-08 13:37:43.71247 b30347ae-8c76-4b94-9eeb-a8a5d9fafbe3 {"pid": "7634", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/25906288X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:43.792999 2023-08-08 13:37:43.793008 d1866148-015b-4575-8bf1-327997caa4f7 {"pid": "7635", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/259596337"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:43.852977 2023-08-08 13:37:43.85298 6d37f397-2c09-437a-aca8-ca7ed6d99c36 {"pid": "7636", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/259599174"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:43.903472 2023-08-08 13:37:43.903476 ac4deab1-4d2c-4ab1-97cf-92abfc7bc1d4 {"pid": "7637", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/259943401"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:43.957281 2023-08-08 13:37:43.957284 4c1e92a2-ea24-4108-971d-926156ce0404 {"pid": "7638", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/259951293"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:44.006697 2023-08-08 13:37:44.006701 4f5da7b6-29e6-4122-a658-e759b1159f9c {"pid": "7639", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/259974811"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:44.056037 2023-08-08 13:37:44.05604 6dd1c277-569a-4c7a-9f14-33acd19f2b44 {"pid": "7640", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/259995118"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:44.113438 2023-08-08 13:37:44.113442 755eebcb-13f4-4479-91ec-b0395543b012 {"pid": "7641", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/261107909"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:44.209213 2023-08-08 13:37:44.209223 ca35f295-1829-46fa-9880-e028d4c61222 {"pid": "7642", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/261196715"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:44.268673 2023-08-08 13:37:44.268676 b3a49bd1-d401-450b-94e1-63ab21c581de {"pid": "7643", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/261901532"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:44.344662 2023-08-08 13:37:44.34467 4549e154-3034-421a-9aed-6ed29a0c07c3 {"pid": "7644", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/262111012"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:44.43284 2023-08-08 13:37:44.432848 b7ab1b6b-92e4-4405-8e10-7c4c57b0cd08 {"pid": "7645", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/262111020"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:44.514622 2023-08-08 13:37:44.514625 39135e2c-47bb-4c92-acbd-76b4b6138767 {"pid": "7646", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/262111039"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:44.571899 2023-08-08 13:37:44.571902 851963c3-1071-4504-9da8-c4dfa7c15d6b {"pid": "7647", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/262111071"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:44.658978 2023-08-08 13:37:44.658988 059d275a-e46b-48f2-891e-269299df5c91 {"pid": "7648", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/26211108X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:44.742581 2023-08-08 13:37:44.742584 48ff51f2-ef34-42c7-a91d-007dc2b4f457 {"pid": "7649", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/262111098"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:44.830308 2023-08-08 13:37:44.830317 f54c096a-d7b7-4c7b-966d-160df478cb57 {"pid": "7650", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/262125927"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:44.905779 2023-08-08 13:37:44.905782 22bac894-4c43-47ed-8475-894413361eb7 {"pid": "7651", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/262413817"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:44.95434 2023-08-08 13:37:44.954343 2b3b6878-5cdd-4b8e-a5a2-fe0b25c84f9a {"pid": "7652", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/262414023"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:45.002473 2023-08-08 13:37:45.002475 e863b70b-712e-4abf-91e0-b95ee33701a6 {"pid": "7653", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/262414082"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:45.051903 2023-08-08 13:37:45.051907 17dcc87d-1971-4a04-9c1d-7b3fe5cb84fe {"pid": "7654", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/262414112"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:45.101498 2023-08-08 13:37:45.101501 104b08ff-9911-4369-9620-5819355ef3c0 {"pid": "7655", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/262668858"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:45.180062 2023-08-08 13:37:45.180068 4dcc1695-5711-405a-8207-ca60a97f92c7 {"pid": "7656", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/262669161"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:45.261694 2023-08-08 13:37:45.261705 67ccc89c-6997-4467-8647-824ca3322f45 {"pid": "7657", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/262669188"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:45.336829 2023-08-08 13:37:45.336831 e345602c-cc2d-4856-8aa1-e921fe826cda {"pid": "7658", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/26266920X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:45.413401 2023-08-08 13:37:45.413409 a293661b-ec3f-40a1-8c2e-3ad4835f98e8 {"pid": "7659", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/262669234"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:45.512993 2023-08-08 13:37:45.513003 43f5a1dc-1e9d-465b-887c-02d054f34d3e {"pid": "7660", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/262669242"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:45.574552 2023-08-08 13:37:45.574557 cf803ed6-f82c-443f-b4fb-9f660c516c3f {"pid": "7661", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/262669250"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:45.645465 2023-08-08 13:37:45.645468 e1cbc25a-a3e9-44ef-bcb9-e6da1292fffd {"pid": "7662", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/262805111"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:45.725693 2023-08-08 13:37:45.725698 b9572912-7147-4a40-9b84-f024ad69cc86 {"pid": "7663", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/262915219"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:45.792485 2023-08-08 13:37:45.792495 cb42f09b-af79-43a3-bf10-c1cfb0db8ea0 {"pid": "7664", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/262928264"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:45.881852 2023-08-08 13:37:45.881861 233b4c4d-9d19-4a49-a5b2-cf9d4046902b {"pid": "7665", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/26292837X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:45.944371 2023-08-08 13:37:45.944373 1121b49e-e03c-4575-b6de-05191dc413f3 {"pid": "7666", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/262928507"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:46.000795 2023-08-08 13:37:46.000799 5fcf2cb8-d623-441b-af8e-e4ee229b0f7a {"pid": "7667", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/262928701"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:46.073138 2023-08-08 13:37:46.073141 f48d693e-74bd-4a88-8ea2-6d2b5a50cbbc {"pid": "7668", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/26307837X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:46.136246 2023-08-08 13:37:46.136251 3d09a94f-36c0-4627-af2a-d8a68a74b39c {"pid": "7669", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263492680"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:46.216766 2023-08-08 13:37:46.216776 6ec0da4a-6f4d-4d17-8f6f-1139eceeb622 {"pid": "7670", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263499944"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:46.289899 2023-08-08 13:37:46.289907 2a946ae6-1233-4707-a81a-4b8aba9835f6 {"pid": "7671", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263499979"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:46.38191 2023-08-08 13:37:46.381917 66620b9b-cc51-4a12-83e9-97d9d4079e37 {"pid": "7672", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263500047"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:46.481179 2023-08-08 13:37:46.481183 9df43341-cbcb-43d3-bd1a-3fe8810be304 {"pid": "7673", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263500071"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:46.604059 2023-08-08 13:37:46.604063 3c541718-d121-472b-90bf-f299cda14cd4 {"pid": "7674", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263500187"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:46.65738 2023-08-08 13:37:46.657383 731eaf1a-bd59-4d1e-ad9d-353cb8b8503a {"pid": "7675", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263610918"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:46.707409 2023-08-08 13:37:46.707411 b10f8e16-de18-4db4-a112-96a3b1fc4da6 {"pid": "7676", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714233"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:46.760743 2023-08-08 13:37:46.760746 e123ee67-cf0f-4ef1-92db-ddb2b8a8d397 {"pid": "7677", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714241"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:46.810382 2023-08-08 13:37:46.810385 21b56b3b-7eac-4c57-b484-3cbabf894885 {"pid": "7678", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/26371425X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:46.880719 2023-08-08 13:37:46.880727 ecd657a6-0ea1-4236-a251-5fa37c771c18 {"pid": "7679", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714268"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:46.951971 2023-08-08 13:37:46.951974 80ecbe01-8a06-4153-b551-635f2709e5d2 {"pid": "7680", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714276"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:47.001917 2023-08-08 13:37:47.00192 f8cecbca-4916-466f-9fea-503350d53a94 {"pid": "7681", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714284"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:47.051558 2023-08-08 13:37:47.051561 bac34b31-078e-4d3c-9c12-bbf23c181aa7 {"pid": "7682", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714292"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:47.103705 2023-08-08 13:37:47.103708 5bf206ea-0165-4c14-b9b1-a25dcff96f1e {"pid": "7683", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714306"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:47.163854 2023-08-08 13:37:47.163858 216e2e0c-550e-4b3d-8c03-b7f0e114191a {"pid": "7684", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714314"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:47.228255 2023-08-08 13:37:47.228263 9ee598f4-1aae-4869-b4d0-38933dab1699 {"pid": "7685", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714322"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:47.321554 2023-08-08 13:37:47.321559 22989a74-d1a3-46b0-9d9e-b625f5be790a {"pid": "7686", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714330"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:47.414876 2023-08-08 13:37:47.41488 19cc18dc-3724-4051-b098-6fd9b597fdb5 {"pid": "7687", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714349"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:47.512046 2023-08-08 13:37:47.512056 1902c6a4-2b53-4771-bcea-5d832dd96c6c {"pid": "7688", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714357"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:47.574141 2023-08-08 13:37:47.574146 df5793a7-e4bb-42c8-b795-a4f8db244f80 {"pid": "7689", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714365"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:47.645877 2023-08-08 13:37:47.645881 58031939-8da6-4655-b34c-20fcdddb6655 {"pid": "7690", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714373"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:47.735766 2023-08-08 13:37:47.735771 cdb25056-a2dc-4ca7-a7eb-20a02bb98a3b {"pid": "7691", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/26371439X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:47.821326 2023-08-08 13:37:47.821329 3f594464-40a2-4080-94db-4ca026b06a87 {"pid": "7692", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714403"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:47.909352 2023-08-08 13:37:47.909362 a92b492b-f821-4664-85b3-e6217b8c1430 {"pid": "7693", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714411"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:47.994876 2023-08-08 13:37:47.99488 fbb9e8a7-929b-44d9-8a15-b940fef271cf {"pid": "7694", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/26371442X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:48.050258 2023-08-08 13:37:48.050261 ad950c43-b50c-4670-80c1-d9ee15b1e4a9 {"pid": "7695", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714438"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:48.099926 2023-08-08 13:37:48.099929 14d5939d-df82-4739-b16f-a709c1d161b4 {"pid": "7696", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714446"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:48.150012 2023-08-08 13:37:48.150015 0e1453e1-ba61-4837-8f80-2e1dfb153137 {"pid": "7697", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714454"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:48.199152 2023-08-08 13:37:48.199155 764bc049-ccb9-404e-bf3f-6f86e4a40288 {"pid": "7698", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714462"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:48.266284 2023-08-08 13:37:48.266291 e0aca4e3-c0f7-486b-9141-3b0823b304bd {"pid": "7699", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714470"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:48.348006 2023-08-08 13:37:48.348015 03477155-75c1-4c5e-9f17-b1a10780489b {"pid": "7700", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714489"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:48.445254 2023-08-08 13:37:48.445263 a21f9b55-3ee5-4c26-988d-033cbf34422c {"pid": "7701", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714500"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:48.53678 2023-08-08 13:37:48.536783 91660634-6651-4cc7-97b0-eb39fa6e3ee9 {"pid": "7702", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714519"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:48.59085 2023-08-08 13:37:48.590852 b2fa2e60-0e8d-4930-98b7-cfb96fbc9559 {"pid": "7703", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714527"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:48.665705 2023-08-08 13:37:48.665708 7308a3cf-78d2-4a11-9dac-ca211c2e397c {"pid": "7704", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714535"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:48.7324 2023-08-08 13:37:48.732408 353c9a96-48d0-44a1-9e22-ede7327ab0a5 {"pid": "7705", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714543"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:48.79847 2023-08-08 13:37:48.798479 16e523a9-9e19-4607-9405-8e20fb403f96 {"pid": "7706", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714551"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:48.880056 2023-08-08 13:37:48.88006 f2cee243-53d1-4bc3-9f47-a7699b1554aa {"pid": "7707", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/26371456X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:48.964603 2023-08-08 13:37:48.964607 cb10ddc8-a479-4a9a-8182-8c151e326480 {"pid": "7708", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714578"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:49.036551 2023-08-08 13:37:49.036555 acf96121-3580-4e30-8970-d947e7dc940a {"pid": "7709", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714594"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:49.087328 2023-08-08 13:37:49.08733 d5edbfda-ffe7-4ccb-8ad7-73ea711398d5 {"pid": "7710", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714608"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:49.142316 2023-08-08 13:37:49.142319 19a71ea0-734f-48a1-b4ca-a6452fd6082e {"pid": "7711", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714616"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:49.192426 2023-08-08 13:37:49.192429 5bdd9117-818a-4af4-9a5c-447e30197f4e {"pid": "7712", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714624"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:49.241319 2023-08-08 13:37:49.241321 e8ac26df-301a-4b41-8d4c-98b8c55b79fd {"pid": "7713", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714632"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:49.311796 2023-08-08 13:37:49.311805 d6809a2c-da1f-4c86-8f6f-ef5450d3714f {"pid": "7714", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714640"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:49.392798 2023-08-08 13:37:49.392807 ae7a8ede-87e9-4169-bafb-a3c14bff5c85 {"pid": "7715", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714659"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:49.477594 2023-08-08 13:37:49.477602 838e2256-a0a0-4ba6-aff7-3b75c5f29e28 {"pid": "7716", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714667"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:49.551511 2023-08-08 13:37:49.551514 387cec39-4b37-4203-8f88-7b6d8670d23c {"pid": "7717", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714691"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:49.613341 2023-08-08 13:37:49.613346 855c9e44-cda5-4acd-bc59-d87a037c349d {"pid": "7718", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714705"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 13:37:49.691903 2023-08-08 13:37:49.691915 8151e4f7-887a-40f7-947f-c40f44d2ce16 {"pid": "7719", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263714713"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:28:41.3374 2023-08-08 14:28:41.337408 2e8b0c96-beec-43c1-8b98-b7f3baac4af0 {"pid": "7725", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027797619"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:41.276336+00:00"} 1 -2023-08-08 14:28:41.452805 2023-08-08 14:28:41.452813 d36eeeff-88fd-488c-b7bf-280681988ffb {"pid": "7726", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027798461"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:41.375163+00:00"} 1 -2023-08-08 14:28:41.558929 2023-08-08 14:28:41.558939 696ee35a-b84e-4475-ac7c-2a7418c689ff {"pid": "7727", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027798682"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:41.485675+00:00"} 1 -2023-08-08 14:28:41.646184 2023-08-08 14:28:41.64619 ad5a0f1b-4daf-4a71-ba28-1944f187f8a4 {"pid": "7728", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027799395"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:41.593466+00:00"} 1 -2023-08-08 14:28:41.718275 2023-08-08 14:28:41.718279 c9b23c02-5928-41c4-9900-87481ee4e979 {"pid": "7729", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027799409"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:41.670485+00:00"} 1 -2023-08-08 14:25:03.929335 2023-08-08 14:35:53.773481 a80c2da0-17c0-4fbd-9d3f-51282925c992 {"pid": "7722", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/033466300"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 3 -2023-08-08 14:28:41.242851 2023-08-08 14:28:41.242856 2d4709b8-ad81-4362-903b-32399f268796 {"pid": "7724", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027796930"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:41.182452+00:00"} 1 -2023-08-08 14:28:41.816907 2023-08-08 14:28:41.816917 36b7ddb8-1360-4298-ac11-fceea2de1211 {"pid": "7730", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027799425"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:41.752508+00:00"} 1 -2023-08-08 14:28:41.928485 2023-08-08 14:28:41.928509 a70543e2-4d56-4f75-8237-f23a52f18323 {"pid": "7731", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027804380"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:41.850206+00:00"} 1 -2023-08-08 14:25:04.643365 2023-08-08 14:35:54.456502 892fb8f9-9a56-4b5e-b3af-db4fbb1f82e6 {"pid": "7723", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050665391"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 3 -2023-08-08 14:28:42.073456 2023-08-08 14:28:42.073465 14c73725-2e49-44f9-b6df-acba7c16f36a {"pid": "7732", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027805158"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:41.984200+00:00"} 1 -2023-08-08 14:28:42.207486 2023-08-08 14:28:42.207546 0238264a-f796-485c-9011-df17ab4da39a {"pid": "7733", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027805301"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:42.125605+00:00"} 1 -2023-08-08 14:28:42.310907 2023-08-08 14:28:42.310916 479c9c0e-7451-46c4-8cf2-99b85fe160cd {"pid": "7734", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027805824"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:42.243305+00:00"} 1 -2023-08-08 14:28:44.037534 2023-08-08 14:28:44.037537 bafdc96a-513e-4f42-9527-fc1e7b22f742 {"pid": "7735", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027812596"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:43.978364+00:00"} 1 -2023-08-08 14:28:44.098457 2023-08-08 14:28:44.098462 82ed0355-eb9c-4a56-82d7-e08dee0f0d79 {"pid": "7736", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02781341X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:44.061768+00:00"} 1 -2023-08-08 14:28:44.908763 2023-08-08 14:28:44.908767 f97a0146-10fe-4f71-b2b1-f17528df368b {"pid": "7737", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027813533"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:44.848459+00:00"} 1 -2023-08-08 14:28:46.950884 2023-08-08 14:28:46.950886 376ad966-bd76-4630-89d3-a7d546cc9907 {"pid": "7738", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027804232"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json", "deleted": "2023-08-08T14:28:46.891848+00:00"} 1 -2023-08-08 13:58:50.961511 2023-08-08 14:31:44.874861 8bff9b3b-2c5a-4804-ba5a-38ce0adf7fc2 {"pid": "7720", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027794687"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 8 -2023-08-08 14:34:56.710646 2023-08-08 14:35:50.113377 dcb128a3-6cdb-4c5e-8559-5c7b553225d3 {"pid": "7739", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/033297746"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 2 -2023-08-08 14:34:56.772315 2023-08-08 14:35:50.189519 e40d9c38-9beb-470f-97cc-03021e6a3b22 {"pid": "7740", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050170406"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 2 -2023-08-08 14:34:56.852649 2023-08-08 14:35:50.254301 9e94b9ae-91a9-44a9-a965-01162b96c0ae {"pid": "7741", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/098272225"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 2 -2023-08-08 14:34:56.936841 2023-08-08 14:35:50.33681 ee314be9-fca0-4178-bcf5-3d717870a07b {"pid": "7742", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/241963974"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 2 -2023-08-08 14:25:02.869344 2023-08-08 14:35:53.256156 e295686d-6066-4d99-8484-d21d23b83aa9 {"pid": "7721", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029531411"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 3 -2023-08-08 14:36:35.740475 2023-08-08 14:36:35.740483 b78ec242-ad8b-401d-9a57-91e0aadf923f {"pid": "7743", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027793974"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:35.860404 2023-08-08 14:36:35.860414 bc8be94c-afef-480e-ba9f-f2d5fa63edf7 {"pid": "7744", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027794016"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:35.970489 2023-08-08 14:36:35.970499 a3682979-0d5e-4f11-acbb-7871afec1556 {"pid": "7745", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027794903"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:36.077198 2023-08-08 14:36:36.077205 394db9a3-95e7-41ee-8cfc-a8dadb5f83aa {"pid": "7746", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027794954"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:36.207178 2023-08-08 14:36:36.207182 d5d67c0f-776e-43ff-84fc-a64aeaf51799 {"pid": "7747", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027794962"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:36.287753 2023-08-08 14:36:36.287758 306b9c23-37e6-4849-804a-9f2e87704569 {"pid": "7748", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027794970"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:36.373826 2023-08-08 14:36:36.373837 f4c85e77-147e-4c59-8999-6415246ae352 {"pid": "7749", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027795926"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:36.481855 2023-08-08 14:36:36.481865 43802f0e-f47d-4fe9-83c9-4d6b0fb58063 {"pid": "7750", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027796817"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:36.576108 2023-08-08 14:36:36.576113 89c8937b-c705-454c-89d7-5fe938a7527f {"pid": "7751", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027799433"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:36.687423 2023-08-08 14:36:36.687431 9272701a-5ee8-4663-b6b1-cb93ed4c0722 {"pid": "7752", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027804038"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:36.791347 2023-08-08 14:36:36.791355 3f459919-76c6-43c3-9652-7a273abc376f {"pid": "7753", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027804186"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:36.905964 2023-08-08 14:36:36.905975 1abdcaca-15d8-40a0-a6d5-dc1a2fd51e5c {"pid": "7754", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030860466"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:36.992343 2023-08-08 14:36:36.99235 97b2d58a-5b93-4c4f-8263-9631647dc47f {"pid": "7755", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/031022219"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:37.113504 2023-08-08 14:36:37.113507 13e9a046-350c-4b68-a8fe-f7914dee6999 {"pid": "7756", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/031937667"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:37.222244 2023-08-08 14:36:37.222248 b0813bc1-52c9-489b-93c7-3d8ddc11a052 {"pid": "7757", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/033070202"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:37.287986 2023-08-08 14:36:37.28799 8c354710-957d-4aee-a5d5-d542ddf781bd {"pid": "7758", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034577769"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:37.342732 2023-08-08 14:36:37.342735 2270ca85-22aa-48da-906c-e39036f98914 {"pid": "7759", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03483446X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:37.439242 2023-08-08 14:36:37.439246 9310c32d-b705-4e32-ab59-20fa0fcd2629 {"pid": "7760", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034853537"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:37.536714 2023-08-08 14:36:37.536722 85430101-9910-4f18-bbbe-a1ee2ee7bfc7 {"pid": "7761", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03487156X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:37.638247 2023-08-08 14:36:37.638503 bd27440b-3f01-4863-9e47-c5f53386c627 {"pid": "7762", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034933697"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:37.77195 2023-08-08 14:36:37.771956 8ab079ef-cc26-4d10-b6f7-41780d1f560e {"pid": "7763", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034934774"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:37.884989 2023-08-08 14:36:37.884999 167a1116-7ade-475a-b316-ed8d69df3ebd {"pid": "7764", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034934936"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:37.989454 2023-08-08 14:36:37.989466 818e8317-16bb-472d-8282-65883653864f {"pid": "7765", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034935061"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:38.093555 2023-08-08 14:36:38.093565 73c8e684-ba34-4d74-8b91-caf70095e300 {"pid": "7766", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034935134"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:38.221479 2023-08-08 14:36:38.221489 5447671e-7916-42ac-81dd-04d330b761ac {"pid": "7767", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034935177"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:38.305475 2023-08-08 14:36:38.305479 09d3f034-cd60-455c-b62e-746496d10044 {"pid": "7768", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034935207"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:38.358329 2023-08-08 14:36:38.358333 36eabe3e-46e9-47b1-92e8-4f32496971fb {"pid": "7769", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034935274"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:38.432056 2023-08-08 14:36:38.432067 8b73fdc1-d344-40e2-ae45-1470083d8d96 {"pid": "7770", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034935290"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:38.562352 2023-08-08 14:36:38.562364 b1dd8c85-01da-43d7-84ca-231ca8345bc7 {"pid": "7771", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034935304"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:38.673181 2023-08-08 14:36:38.673189 239ffbc4-cfb2-48bb-933b-66c2264b784b {"pid": "7772", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034935827"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:38.757665 2023-08-08 14:36:38.757674 5f6647e3-d960-4548-a625-09e4d51bf593 {"pid": "7773", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034935835"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:38.857905 2023-08-08 14:36:38.857913 8902a539-e780-4524-87ed-511f50e6907d {"pid": "7774", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034935908"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:38.977236 2023-08-08 14:36:38.977244 d684b0ef-15c1-4a3f-b042-c0c1d18b4cd8 {"pid": "7775", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034936890"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:39.068325 2023-08-08 14:36:39.068329 2fef4594-ce29-424a-a22e-5b4aac2bbac7 {"pid": "7776", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034937072"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:39.167822 2023-08-08 14:36:39.167832 3a18a460-bbe9-4b1d-8c41-63ee3d5c4126 {"pid": "7777", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034937099"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:39.270993 2023-08-08 14:36:39.271002 16f5c0ea-15ee-4284-a11d-abdb9af053f2 {"pid": "7778", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034937129"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:39.358718 2023-08-08 14:36:39.358722 6d14c140-d584-4e55-b254-ffc39373fdb6 {"pid": "7779", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035021128"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:39.417421 2023-08-08 14:36:39.417424 2046f95d-300e-4af2-a793-9c7f15e8fd64 {"pid": "7780", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035021179"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:39.474608 2023-08-08 14:36:39.47461 47c53fd6-544a-47e0-8e0b-f8c838b0d0e9 {"pid": "7781", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035077948"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:39.566039 2023-08-08 14:36:39.566049 69847111-2fe1-44b3-9abd-7061a5536944 {"pid": "7782", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035077964"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:39.673296 2023-08-08 14:36:39.673304 b25b5547-24fc-4271-8c79-bbc0dec5c75c {"pid": "7783", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035078316"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:39.791887 2023-08-08 14:36:39.791894 702cf5d0-fe7a-4112-ab4b-0afe113b998f {"pid": "7784", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035087625"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:39.890864 2023-08-08 14:36:39.89087 35a9743c-47cb-417b-9e39-2c45372d48a7 {"pid": "7785", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03509446X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:40.00627 2023-08-08 14:36:40.006277 e59bb711-dceb-47bd-ba15-c5e2458f33eb {"pid": "7786", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035207191"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:40.092312 2023-08-08 14:36:40.092316 f4f6e438-7e6a-438c-b193-d1ecfe91b072 {"pid": "7787", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03528076X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:40.211399 2023-08-08 14:36:40.211412 b706a1aa-6d73-4f71-a8aa-a9ff92cf1d6e {"pid": "7788", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035383925"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:40.322551 2023-08-08 14:36:40.32256 cf3717b6-14b5-4180-a344-bec25a36f9b5 {"pid": "7789", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035623683"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:40.408586 2023-08-08 14:36:40.408591 0ad21465-2fc5-48d8-80a1-f8dd5e043526 {"pid": "7790", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035623691"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:40.468677 2023-08-08 14:36:40.468681 919c237f-91cd-4bbf-afe3-76e4c84d0fbf {"pid": "7791", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050323148"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:40.57973 2023-08-08 14:36:40.579735 e84589ef-7dc1-422e-b877-b56f40d65f14 {"pid": "7792", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050323172"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:40.675698 2023-08-08 14:36:40.675707 7eac9c26-e599-4702-af5d-6087547d5883 {"pid": "7793", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/061617296"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:40.788225 2023-08-08 14:36:40.788233 1b8adf9f-d49a-478c-9284-cc35a2fa7cf3 {"pid": "7794", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/077057384"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:40.887092 2023-08-08 14:36:40.8871 5e21ea2e-94b4-4c12-90fe-070119e9931c {"pid": "7795", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/101481241"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:41.011125 2023-08-08 14:36:41.011133 dfadb56d-388f-4cc3-84c7-90dc09e1801f {"pid": "7796", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/101481330"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:41.12338 2023-08-08 14:36:41.123384 238f312c-ddaf-41a8-a388-de711964f81a {"pid": "7797", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/101481349"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:41.240393 2023-08-08 14:36:41.2404 60fb4eb1-3db2-4a2a-846f-1a4890eb1d05 {"pid": "7798", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/101481438"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:41.343628 2023-08-08 14:36:41.343636 436e4ae2-638a-4187-b04a-887161e7c2a8 {"pid": "7799", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/107841363"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:41.446295 2023-08-08 14:36:41.446298 3b24277c-7103-4694-93b5-65da2e4082e9 {"pid": "7800", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/108812987"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:41.498741 2023-08-08 14:36:41.498744 b8a8c575-beb2-4bb3-806f-90e3d0082f80 {"pid": "7801", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/109094883"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:41.55181 2023-08-08 14:36:41.551812 c0dbc979-5108-452b-bb4b-d93d5c4c8e36 {"pid": "7802", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/11353213X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:41.670961 2023-08-08 14:36:41.671022 74f8379f-33a8-47ac-9e8b-7f1d57d5a203 {"pid": "7803", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/11393260X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:42.110794 2023-08-08 14:36:42.110803 28efaa8a-eb2b-49eb-b127-1fad37e16f30 {"pid": "7804", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/12007432X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:42.232408 2023-08-08 14:36:42.232419 c40e01ae-d512-4e13-b269-50fb8eff170c {"pid": "7805", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/120593904"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:42.336043 2023-08-08 14:36:42.336053 b4a42e5c-b1d0-4421-a182-0d3acd574591 {"pid": "7806", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/144664119"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:42.447331 2023-08-08 14:36:42.44734 bac82173-a335-4592-9bcd-697a07bef24a {"pid": "7807", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/146322134"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:42.504094 2023-08-08 14:36:42.504098 8daa95ea-373a-405e-9e96-0e054447e1ba {"pid": "7808", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/148171095"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:42.555742 2023-08-08 14:36:42.555745 d0f49800-b2af-4a42-9ae6-6543e6e63c49 {"pid": "7809", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/169177742"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:42.610047 2023-08-08 14:36:42.61005 f0d5ac4a-f16e-43e6-a31c-bee489b94bcc {"pid": "7810", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/169177750"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:42.705379 2023-08-08 14:36:42.70539 ec3b8470-ed6f-440b-9189-5270a23ff82c {"pid": "7811", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/17089018X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:42.80608 2023-08-08 14:36:42.806088 ba5613ec-8340-4524-a7cf-26c0dc56b317 {"pid": "7812", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/180122312"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:42.926323 2023-08-08 14:36:42.926334 209aeebc-6cd3-43c1-b0c9-f7e235041d38 {"pid": "7813", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/185676146"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:43.019702 2023-08-08 14:36:43.019713 82178c90-c7c3-4064-937b-c14673fd70e9 {"pid": "7814", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/196345359"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 -2023-08-08 14:36:44.013708 2023-08-08 14:36:44.013711 e9b2c4a2-2d24-47a8-bc4f-dab9da77c087 {"pid": "7815", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027809773"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:05.6886 2024-09-11 09:08:05.688603 60c90fa0-ca00-4129-997a-8f80285a6a41 {"pid": "7523", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A009955971"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:05.758671 2024-09-11 09:08:05.758677 68fb8bb7-cd92-47fc-b468-a1aa511b72ec {"pid": "7524", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A010077990"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:05.811984 2024-09-11 09:08:05.811989 2bb8934f-4f04-48fa-9c55-12e3ee9a2ba2 {"pid": "7525", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001001"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:05.866449 2024-09-11 09:08:05.866459 c5a8076f-ab0a-4886-b6c5-26987ddf5847 {"pid": "7526", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001003"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:05.920124 2024-09-11 09:08:05.920129 1a1c7389-7604-49c1-9632-f54f8b37d975 {"pid": "7527", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001004"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:05.971165 2024-09-11 09:08:05.971169 9d35fa7d-9043-4498-817c-a8715ff2b510 {"pid": "7528", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001005"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:06.025563 2024-09-11 09:08:06.025568 262d8153-6369-44b6-838e-f211feb40858 {"pid": "7529", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001006"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:06.082007 2024-09-11 09:08:06.082012 54f4e316-5154-475a-a162-b5233b40fcd3 {"pid": "7530", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001007"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:06.133513 2024-09-11 09:08:06.133518 55044a1d-4d80-43b3-8e53-a85177f88b10 {"pid": "7531", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001008"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:06.182995 2024-09-11 09:08:06.183 a40f3726-ce43-4f09-b219-8883e03fdb4d {"pid": "7532", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001009"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:06.228355 2024-09-11 09:08:06.22836 e07423fa-381a-47d5-ab1c-8767a416305e {"pid": "7533", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001012"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:06.277485 2024-09-11 09:08:06.27749 662f134b-8680-4463-8775-7b8bfa3804b2 {"pid": "7534", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001013"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:06.325732 2024-09-11 09:08:06.325736 efe35257-bdb6-4fb2-91dd-0853e70addd5 {"pid": "7535", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001014"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:06.372956 2024-09-11 09:08:06.37296 aeaaebe0-d823-495e-aefd-a5c56c960c5b {"pid": "7536", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001016"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:06.423623 2024-09-11 09:08:06.423627 1da1d468-42eb-4808-8404-d473fd89b285 {"pid": "7537", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001017"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:06.472548 2024-09-11 09:08:06.472552 5ede6751-8cf7-489d-beac-91c5bd69f64a {"pid": "7538", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001018"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:06.526236 2024-09-11 09:08:06.526241 15019c5f-cbe4-44c3-bdc9-f68c658a9dd6 {"pid": "7539", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001021"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:06.576783 2024-09-11 09:08:06.576788 767ac92b-9678-4510-a74b-1f56ce5e53e7 {"pid": "7540", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001023"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:06.638755 2024-09-11 09:08:06.63876 390e8b08-138e-4109-b8a4-e321de6de7a7 {"pid": "7541", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001024"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:06.689332 2024-09-11 09:08:06.689336 f0582a61-9b41-4282-8507-be1434980f0c {"pid": "7542", "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001025"}, "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:08.583273 2024-09-11 09:08:08.583278 e7bf15e8-3711-4e71-a37b-c08c9f70837c {"pid": "7543", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027225798"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:08.657488 2024-09-11 09:08:08.657492 58ed918e-ffab-4769-8e7e-066778bc47db {"pid": "7544", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027242250"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:08.729029 2024-09-11 09:08:08.729034 a6f27df7-0d4b-48c8-8dec-56ed6d708192 {"pid": "7545", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027246159"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:08.800393 2024-09-11 09:08:08.800397 eb02a2cc-5505-4965-b01d-259d1638ad5e {"pid": "7546", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027248062"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:08.85489 2024-09-11 09:08:08.854894 597bcb16-4945-417a-9d22-6b48bf7dc7e3 {"pid": "7547", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027255468"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:08.910346 2024-09-11 09:08:08.910348 8057f0af-3949-4a84-b6c1-87ec889ef846 {"pid": "7548", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027256138"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:08.968783 2024-09-11 09:08:08.968786 258999cb-9084-407d-98d9-582adc655b1c {"pid": "7549", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027257045"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:09.024799 2024-09-11 09:08:09.024804 8126f6ed-ea25-4de6-b7ae-542eb1c262d5 {"pid": "7550", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027268284"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:09.078129 2024-09-11 09:08:09.078133 bde06283-3b75-4fbd-a159-7a9c1136fadb {"pid": "7551", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027274144"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:09.132206 2024-09-11 09:08:09.13221 c0994b6f-f11e-4fd7-9e22-061a9af2249b {"pid": "7552", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02727991X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:09.188759 2024-09-11 09:08:09.188763 fa8df2d5-b120-49da-91ec-71871a12aa3b {"pid": "7553", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02728607X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:09.242075 2024-09-11 09:08:09.242079 8d8aa11e-2388-49a5-a121-276c4f3cd52e {"pid": "7554", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027292916"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:09.298508 2024-09-11 09:08:09.298512 240a40a5-e589-4505-be9c-ec89cf5224d5 {"pid": "7555", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027302148"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:09.348792 2024-09-11 09:08:09.348796 15c2fac6-82e3-411f-9aa1-481b1ece8d88 {"pid": "7556", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027308359"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:09.405675 2024-09-11 09:08:09.40568 e01ad29a-9181-4189-b7e4-9f04478c08cc {"pid": "7557", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027317145"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:09.459786 2024-09-11 09:08:09.45979 99c6ab62-477f-4f65-8154-b928d7b1b774 {"pid": "7558", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027323552"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:09.554862 2024-09-11 09:08:09.554865 c890f4a5-7a0a-423d-8b75-3c78f7a0f07f {"pid": "7559", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027328589"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:09.60963 2024-09-11 09:08:09.609634 47fb59bb-000e-46ff-b42e-4c2dd15a5ed9 {"pid": "7560", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027330176"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:09.661486 2024-09-11 09:08:09.66149 8e32a2cd-7bb1-461a-9300-0fb5195fbbe6 {"pid": "7561", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027333930"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:09.718257 2024-09-11 09:08:09.718261 64e5dba3-ca7a-43d8-b1d9-ca0236941f16 {"pid": "7562", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027336913"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:09.770774 2024-09-11 09:08:09.770778 ebfbcf18-bbe8-424c-b8c4-eaf8f23fee2d {"pid": "7563", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027345203"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:09.830409 2024-09-11 09:08:09.830414 eac29314-94e5-4a28-8a52-f3aeb71a1eee {"pid": "7564", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027355152"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:09.884463 2024-09-11 09:08:09.884468 4d9c1208-fa20-4aeb-946d-61a2be017eab {"pid": "7565", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027355578"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:09.940446 2024-09-11 09:08:09.940449 84aebe81-0b3c-45d1-a551-afb987e9ae20 {"pid": "7566", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027355985"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:09.998038 2024-09-11 09:08:09.998043 83e5481b-9156-4534-aa1b-3a906620ccc3 {"pid": "7567", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027356493"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:10.055296 2024-09-11 09:08:10.0553 9a8767a0-acf1-46c0-9824-511b64c63264 {"pid": "7568", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027365697"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:10.116188 2024-09-11 09:08:10.116191 8c6f4f60-d25a-4832-87bf-56913bef6bb6 {"pid": "7569", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027368661"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:10.167858 2024-09-11 09:08:10.167861 d1d86296-a758-4d97-b5dc-205b7761e2fd {"pid": "7570", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027374351"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:10.22583 2024-09-11 09:08:10.225834 fc8bd79a-586d-435b-9443-b3ac47408b98 {"pid": "7571", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027376982"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:10.279572 2024-09-11 09:08:10.279576 93b1ac02-afab-46d3-b4f1-0473046afaa8 {"pid": "7572", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027391396"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:10.334561 2024-09-11 09:08:10.334565 075e3eee-bcdc-46e1-b711-de63677bd701 {"pid": "7573", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027396924"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:10.393356 2024-09-11 09:08:10.393359 d940e038-b680-455d-9960-1d8e58c3711e {"pid": "7574", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02739770X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:10.450692 2024-09-11 09:08:10.450696 130a9b46-95a7-4636-af48-dbd6e8a5b826 {"pid": "7575", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027415252"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:10.507413 2024-09-11 09:08:10.507416 3cb85bf3-d73e-47c4-9649-6a10d335b7ce {"pid": "7576", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02743141X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:10.564254 2024-09-11 09:08:10.56426 9776e847-a72e-44db-a9fb-96ca51ef8ba0 {"pid": "7577", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027431444"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:10.633239 2024-09-11 09:08:10.633243 23f82ba9-d93f-4e4e-8ea8-87aba09f4ad2 {"pid": "7578", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027436683"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:10.687139 2024-09-11 09:08:10.687143 55549e85-551d-4657-b329-325da201e516 {"pid": "7579", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027455092"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:10.740421 2024-09-11 09:08:10.740425 01900a18-84cd-4cef-99a2-a422d4f46a04 {"pid": "7580", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027461599"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:10.800543 2024-09-11 09:08:10.800547 04d366f9-da10-43d5-b984-45f643320547 {"pid": "7581", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027478033"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:10.855285 2024-09-11 09:08:10.85529 a0c79fe0-af04-44f6-8502-fa1ccbfb3c16 {"pid": "7582", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027481352"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:10.910565 2024-09-11 09:08:10.910568 c10e390b-1cf3-4eb3-b8b7-122acf619aae {"pid": "7583", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027486753"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:10.964498 2024-09-11 09:08:10.964503 03e1002f-a359-444a-8bf2-018847c8bd34 {"pid": "7584", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027493032"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:11.017242 2024-09-11 09:08:11.017247 9cede3f8-31af-48df-9d18-1a08178c054b {"pid": "7585", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027495213"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:11.072571 2024-09-11 09:08:11.072574 f77a92ca-1332-49a7-8d10-ca98ea017690 {"pid": "7586", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027495922"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:11.133267 2024-09-11 09:08:11.133272 9eeb170a-6cec-4fe5-bed7-8251e5dd28a7 {"pid": "7587", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02750333X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:11.189971 2024-09-11 09:08:11.189973 41820b0b-4e34-4be6-9840-47d8d360b8a9 {"pid": "7588", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027506762"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:11.242657 2024-09-11 09:08:11.242661 ae89feb1-bf69-40b3-9246-49399fe2a6bd {"pid": "7589", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027516652"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:11.300396 2024-09-11 09:08:11.300399 e272de1e-337a-4b7e-b163-3ad5be70640b {"pid": "7590", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027519546"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:11.357599 2024-09-11 09:08:11.357603 d035732b-ead7-4449-9a5b-dfd3ab0df4bf {"pid": "7591", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027519686"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:11.418539 2024-09-11 09:08:11.418543 e9eb0805-0b1b-443e-b8e2-f8ee9145d72f {"pid": "7592", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027528820"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:11.474527 2024-09-11 09:08:11.47453 0ee85ce4-d33b-4d64-a692-9035545d1895 {"pid": "7593", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027532488"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:11.53355 2024-09-11 09:08:11.533554 822f421b-2b42-4315-b416-5433a729692a {"pid": "7594", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027545822"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:11.592288 2024-09-11 09:08:11.592291 a159e475-45a5-4658-8fd9-89ee51d62055 {"pid": "7595", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027564878"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:11.662675 2024-09-11 09:08:11.66268 8ebf73f3-479f-4484-bddc-7de61ea0e26a {"pid": "7596", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027578747"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:11.719745 2024-09-11 09:08:11.719751 7952685c-ebc1-47e2-b96d-d7d43b8dea73 {"pid": "7597", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02758254X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:11.777481 2024-09-11 09:08:11.777486 d003c195-0055-4d43-acbb-9af5c1ef6e2b {"pid": "7598", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027613275"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:11.838877 2024-09-11 09:08:11.838881 0bee8006-4de5-4601-871c-2fc0cf5d0a7a {"pid": "7599", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027616908"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:11.893881 2024-09-11 09:08:11.893885 cb424196-2003-465d-b711-ea44a741adc2 {"pid": "7600", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027636461"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:11.944489 2024-09-11 09:08:11.944492 d697e602-97bd-48c3-9f8e-ca9b14e663b4 {"pid": "7601", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027674118"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:12.002672 2024-09-11 09:08:12.002674 0b869c3c-3217-41bc-84a8-010f951fa489 {"pid": "7602", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027674150"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:12.065694 2024-09-11 09:08:12.065698 0ce374e5-a058-48c9-8355-3d647321b918 {"pid": "7603", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027682226"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:12.121557 2024-09-11 09:08:12.121561 5d2263ee-063b-445b-92f7-8498b5088bea {"pid": "7604", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027688836"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:12.174999 2024-09-11 09:08:12.175003 697c5072-deb2-4e56-a410-7203f64f3403 {"pid": "7605", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027694852"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:12.233645 2024-09-11 09:08:12.233649 bb36c15c-69c6-4eac-bbf2-334337bc8f0b {"pid": "7606", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027710025"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:12.297214 2024-09-11 09:08:12.297219 aefd2e24-bab0-4f96-9cb4-73b9e0908c25 {"pid": "7607", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027727327"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:12.353957 2024-09-11 09:08:12.353961 8ee936b4-4833-43fc-8efa-c52dd1b3e56a {"pid": "7608", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027727521"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:12.422352 2024-09-11 09:08:12.422355 9930cba9-a72f-440b-8652-113fe083bf0a {"pid": "7609", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027729044"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:12.506206 2024-09-11 09:08:12.506211 15c6a287-cee8-48d3-8f40-cbc144db557d {"pid": "7610", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027735893"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:12.566656 2024-09-11 09:08:12.566662 3561cbc0-affb-4f73-b17d-632ff771b2d2 {"pid": "7611", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027756580"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:12.625711 2024-09-11 09:08:12.625716 97879e2d-3348-4f78-a0a6-81593bb83feb {"pid": "7612", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027756653"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:12.68179 2024-09-11 09:08:12.681793 38e54d2b-24b4-42f8-8f55-30d08dee2d99 {"pid": "7613", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027759547"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:12.735281 2024-09-11 09:08:12.735285 ffb0d518-8384-40df-a926-30b06c54e4a3 {"pid": "7614", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027789551"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:12.790809 2024-09-11 09:08:12.790815 72b7f346-9383-4f19-80dc-48a72ab038a5 {"pid": "7615", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027793575"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:12.845032 2024-09-11 09:08:12.845035 eb03e5d4-2ca0-4e7c-a3a4-06baca5f406b {"pid": "7616", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027808394"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:12.900884 2024-09-11 09:08:12.900886 324a302e-8261-43a1-995d-972cc3de6bf7 {"pid": "7617", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027808629"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:12.951768 2024-09-11 09:08:12.951771 bd62bfb4-dfa9-44f6-988c-e6bf301a57f6 {"pid": "7618", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027826171"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:13.015859 2024-09-11 09:08:13.015864 dd58c0b2-ab14-409f-a688-c8fa4e37975a {"pid": "7619", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027845214"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:13.075228 2024-09-11 09:08:13.07523 e8887791-0c61-4f6e-bf2b-037f9f905f11 {"pid": "7620", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02785082X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:13.13334 2024-09-11 09:08:13.133345 88fa9cf1-507d-4b67-8f7a-ddcd6bf7c5dc {"pid": "7621", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027856097"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:13.192132 2024-09-11 09:08:13.192136 af8f26f9-ff11-4614-b366-ce84e7670335 {"pid": "7622", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02785714X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:13.254936 2024-09-11 09:08:13.254939 2897e530-09b3-417b-b33a-e091bf32f058 {"pid": "7623", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027867277"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:13.309631 2024-09-11 09:08:13.309635 544b37ad-8908-43ad-a542-b6b707b9261f {"pid": "7624", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02786765X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:13.35962 2024-09-11 09:08:13.359623 e242373d-b9ff-4bdd-9f6b-fbb49927c441 {"pid": "7625", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027868338"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:13.424443 2024-09-11 09:08:13.424447 3fa66f91-427e-49d2-811e-efdb57c8fe84 {"pid": "7626", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027870510"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:13.489445 2024-09-11 09:08:13.48945 8c5554d9-3afe-4aaa-b4db-1b0d6f2f05e5 {"pid": "7627", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027873196"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:13.544261 2024-09-11 09:08:13.544264 0a20f7ae-f1c6-41ce-b264-27df8379b081 {"pid": "7628", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02787608X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:13.600148 2024-09-11 09:08:13.600153 46f6c733-e5af-4533-adda-3d34006136a7 {"pid": "7629", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027883094"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:13.658793 2024-09-11 09:08:13.658797 d60f395e-0b32-4e02-bb56-c38f5527fc59 {"pid": "7630", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02788547X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:13.721626 2024-09-11 09:08:13.721631 30752f86-9a3e-42ae-867b-fde87efaedc0 {"pid": "7631", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027885496"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:13.781614 2024-09-11 09:08:13.781617 e189639a-cf24-4a36-88d7-7a3246bc12bf {"pid": "7632", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027887960"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:13.836205 2024-09-11 09:08:13.836209 0e131dff-8981-4a4c-bb11-d2aa4e41fa8c {"pid": "7633", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027908380"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:13.899395 2024-09-11 09:08:13.899399 239f9920-6533-462e-a8e7-873dffc9579a {"pid": "7634", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027910210"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:13.95915 2024-09-11 09:08:13.959154 be159dd6-d42e-42ad-90ae-991180dc8c25 {"pid": "7635", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027915115"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:14.011554 2024-09-11 09:08:14.011557 313aabb6-d1b3-46db-ae46-17d421d118f0 {"pid": "7636", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027920216"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:14.068879 2024-09-11 09:08:14.068882 22a6cd1e-33fa-469e-80c1-8ebbf2147009 {"pid": "7637", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027940373"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:14.123928 2024-09-11 09:08:14.123932 6413247f-274f-4846-b6c2-0e4018715229 {"pid": "7638", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027944492"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:14.184165 2024-09-11 09:08:14.184168 3e6faa32-b9a0-477c-a0e5-93acfd9fa5b5 {"pid": "7639", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027950808"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:14.239431 2024-09-11 09:08:14.239435 bb471ea0-d660-4661-9c01-03ea49982735 {"pid": "7640", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027963675"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:14.309832 2024-09-11 09:08:14.309835 ad258b45-e832-45f5-9ff9-30b4d375b10e {"pid": "7641", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028060563"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:14.373445 2024-09-11 09:08:14.373448 49742550-7d07-41ef-a2fe-9b4469c58d59 {"pid": "7642", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028071867"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:14.431078 2024-09-11 09:08:14.431083 be0a839f-46a6-47bd-9e53-ded4c7bb9ffd {"pid": "7643", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028071964"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:14.486695 2024-09-11 09:08:14.4867 4586e733-9506-45d2-b283-4d3a87d8886c {"pid": "7644", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02807842X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:14.540085 2024-09-11 09:08:14.540089 35288f86-bd34-45ed-81e6-595e05986dce {"pid": "7645", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02810160X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:14.604161 2024-09-11 09:08:14.604166 397e69c9-7ad9-4e0b-aaf1-a66392bc91a5 {"pid": "7646", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028140362"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:14.669206 2024-09-11 09:08:14.66921 1e3b0848-77c9-4cd0-96b2-6b78983b498b {"pid": "7647", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028148800"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:14.732894 2024-09-11 09:08:14.732896 96aadc67-d725-4c29-bfad-5af96fb2a0df {"pid": "7648", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028211162"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:14.793316 2024-09-11 09:08:14.79332 aeaba265-1bcb-42d8-ac51-3edb22c6b949 {"pid": "7649", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028225090"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:14.848977 2024-09-11 09:08:14.848982 cd120802-be83-45f6-b030-8e1aa2113d2d {"pid": "7650", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028225767"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:14.902857 2024-09-11 09:08:14.902861 cd24de49-cb6e-4c08-9cfd-9e6129740272 {"pid": "7651", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028233506"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:14.957859 2024-09-11 09:08:14.957863 0ffd6d84-f92e-48d7-b8ed-b8a1725d3f33 {"pid": "7652", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028262220"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:15.015626 2024-09-11 09:08:15.015629 ed5a02d2-1cd2-49f4-9f89-3bccf88014cf {"pid": "7653", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028287169"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:15.071837 2024-09-11 09:08:15.07184 9dc5182d-ef94-47cf-a4e8-3b38b7516822 {"pid": "7654", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028359380"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:15.131346 2024-09-11 09:08:15.131351 b32a24d0-eb2a-47f5-8904-feefeffa2cb4 {"pid": "7655", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028431855"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:15.192583 2024-09-11 09:08:15.192585 4974cc23-f10b-481f-b7f4-ae9a4cb61371 {"pid": "7656", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028433890"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:15.261152 2024-09-11 09:08:15.261157 c944de77-f3e6-47f1-a553-51dbb182b725 {"pid": "7657", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028497244"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:15.320822 2024-09-11 09:08:15.320826 fc44a013-6171-4758-8896-051508274fb2 {"pid": "7658", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028517180"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:15.375829 2024-09-11 09:08:15.375833 75372b95-0069-4e04-9517-c326a7990a26 {"pid": "7659", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02852019X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:15.433616 2024-09-11 09:08:15.433619 493eba84-4a83-437d-a379-d95ffdc434c0 {"pid": "7660", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028549082"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:15.490079 2024-09-11 09:08:15.490084 7b998a78-52c0-4dc4-a75f-bf5246843a6f {"pid": "7661", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028631609"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:15.550461 2024-09-11 09:08:15.550466 01f56ea0-5cbc-40f8-abe6-0b57d4ee4c82 {"pid": "7662", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028637720"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:15.613199 2024-09-11 09:08:15.613203 e08e6252-98bc-4b33-99dc-899dbd1bf766 {"pid": "7663", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028675274"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:15.672405 2024-09-11 09:08:15.672409 b7c8d154-9a28-42a4-ac09-e00f558cd151 {"pid": "7664", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028676661"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:15.724176 2024-09-11 09:08:15.724178 f99e07e4-602b-48a0-b123-141b34c89342 {"pid": "7665", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02868589X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:15.782858 2024-09-11 09:08:15.782865 01d81717-b7fc-4e3b-974c-0713b79337bc {"pid": "7666", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028698703"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:15.842893 2024-09-11 09:08:15.842897 aedd1d7b-54f5-4248-9f69-ef590d76c207 {"pid": "7667", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028700139"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:15.899307 2024-09-11 09:08:15.899312 051c1942-2628-4984-94c5-440d70865921 {"pid": "7668", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028700171"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:15.957481 2024-09-11 09:08:15.957486 c155c592-9ee0-471e-b18f-69811f81e25b {"pid": "7669", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028725387"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:16.011102 2024-09-11 09:08:16.011107 eec43f90-1e5f-4814-b69d-15357458f20f {"pid": "7670", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028898338"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:16.078679 2024-09-11 09:08:16.078683 d842b170-e4b9-4a1b-b199-d9d598bc4951 {"pid": "7671", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028909917"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:16.146541 2024-09-11 09:08:16.146546 6f33ebf2-9940-49e2-b89d-66d4a6ac1a1e {"pid": "7672", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028910737"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:16.212583 2024-09-11 09:08:16.212587 2c3116d1-b5a7-471a-bb49-56f81b638e69 {"pid": "7673", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028912098"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:16.274798 2024-09-11 09:08:16.274801 1048773c-3c69-4dd2-8306-5c26d2b6a4b6 {"pid": "7674", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028929098"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:16.33182 2024-09-11 09:08:16.331825 cd017d50-e577-4aeb-81da-1064b92fa0e5 {"pid": "7675", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028973631"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:16.38632 2024-09-11 09:08:16.386322 e95b10ec-6b84-490a-88e3-2c34c98101fa {"pid": "7676", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02900294X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:16.450224 2024-09-11 09:08:16.450229 4ca36ea5-8050-4fc5-b602-e1fcb8f747da {"pid": "7677", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02904197X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:16.513947 2024-09-11 09:08:16.51395 468a65cd-43f9-4eeb-8460-9ea16fb1087f {"pid": "7678", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029042046"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:16.569556 2024-09-11 09:08:16.56956 a691fd40-8fa2-4e17-a19f-6d894695bef3 {"pid": "7679", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029042186"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:16.632682 2024-09-11 09:08:16.632687 a4c5987c-e249-421e-aef6-f051cb57d7a5 {"pid": "7680", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02905026X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:16.686462 2024-09-11 09:08:16.686466 f4ee349f-70da-489b-8af9-7cdb10d01097 {"pid": "7681", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029182387"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:16.74543 2024-09-11 09:08:16.745435 74adbcf9-94db-450b-8a2e-446b897d4dc5 {"pid": "7682", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029205794"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:16.80629 2024-09-11 09:08:16.806292 886e6836-3699-4061-b863-77c908c06e9a {"pid": "7683", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029342147"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:16.865108 2024-09-11 09:08:16.865113 879e1a8b-be35-43d8-b5c6-a6e6f7d58886 {"pid": "7684", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029344212"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:16.921023 2024-09-11 09:08:16.921028 a6e42643-53e7-433f-9e22-9b0cc072d5fe {"pid": "7685", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029347254"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:16.975202 2024-09-11 09:08:16.975207 20e68db4-ab1e-48db-8cd9-5448462584e5 {"pid": "7686", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029349230"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:17.03774 2024-09-11 09:08:17.037743 d16e8f66-4685-48cb-81f4-1c39454f3dde {"pid": "7687", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029404614"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:17.095377 2024-09-11 09:08:17.09538 483aaf74-38a9-4b55-a188-0eb38c16be35 {"pid": "7688", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029410312"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:17.156063 2024-09-11 09:08:17.156068 9dc33eeb-b3c1-46c7-a863-516d1a4b64ef {"pid": "7689", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029575168"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:17.213605 2024-09-11 09:08:17.213608 38203505-2fec-407b-a5cc-9d6b042d203f {"pid": "7690", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029652308"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:17.268518 2024-09-11 09:08:17.268523 382b38d8-7313-4044-be3d-175e6b2effc6 {"pid": "7691", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029726190"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:17.326426 2024-09-11 09:08:17.32643 67854d94-4071-4731-bb21-d4a064556aaf {"pid": "7692", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029753090"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:17.386776 2024-09-11 09:08:17.38678 f7bec825-d51b-41f3-9a72-6ce076046e21 {"pid": "7693", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029755999"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:17.44237 2024-09-11 09:08:17.442374 3c8eeb51-d4ec-4926-9d90-9b441ea3ac48 {"pid": "7694", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029795826"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:17.49934 2024-09-11 09:08:17.499344 541f89b4-f178-4eac-b1a0-f6caf306bb16 {"pid": "7695", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029888026"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:17.566704 2024-09-11 09:08:17.566709 6543185e-37bf-4d4d-874f-6e374f06ac46 {"pid": "7696", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029918006"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:17.622175 2024-09-11 09:08:17.622181 d5989516-8133-4cdd-b741-99dcfbe0c65e {"pid": "7697", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029933730"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:17.678797 2024-09-11 09:08:17.678801 8a5d3924-bda2-4036-a651-54216f9d667c {"pid": "7698", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029958857"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:17.734873 2024-09-11 09:08:17.734875 6b20c1d8-b06c-4dce-8c4d-cdf90737c3e5 {"pid": "7699", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03001235X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:17.793109 2024-09-11 09:08:17.793113 20c15b8c-e2ff-47af-ace3-521f4e531a48 {"pid": "7700", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030017653"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:17.857719 2024-09-11 09:08:17.857724 953499f6-41b7-40e1-9f07-156f239a0930 {"pid": "7701", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030055849"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:17.920178 2024-09-11 09:08:17.920182 441773f0-5df3-4576-b124-842bdc6c67c3 {"pid": "7702", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030086469"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:17.976693 2024-09-11 09:08:17.976697 852cd0d9-8507-43f6-8a72-074921b6ae9e {"pid": "7703", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030128145"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:18.039681 2024-09-11 09:08:18.039685 d4422d84-e0b5-447e-9332-2924efff6b2b {"pid": "7704", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03018729X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:18.098292 2024-09-11 09:08:18.098297 d860000d-8d75-4863-90ce-5ccbd37a39b3 {"pid": "7705", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030219884"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:18.159681 2024-09-11 09:08:18.159686 ecd6f523-4df5-4854-876e-4c519b81daf9 {"pid": "7706", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030336880"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:18.22436 2024-09-11 09:08:18.224365 629381fa-c543-477e-b146-d0269ccadbd5 {"pid": "7707", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030423724"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:18.286715 2024-09-11 09:08:18.286721 74fea9b4-a9f7-4bdb-ab34-a97997793c2f {"pid": "7708", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030435056"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:18.353522 2024-09-11 09:08:18.353526 bea3a6b5-6bdd-4935-a395-b68c6176d32a {"pid": "7709", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030642841"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:18.423569 2024-09-11 09:08:18.423573 7024bb61-a121-422e-bbae-45a83f7d0ac8 {"pid": "7710", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030768381"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:18.485975 2024-09-11 09:08:18.485981 2cc33c96-f9bd-4e64-b2f9-3f11190439c0 {"pid": "7711", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03082401X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:18.545289 2024-09-11 09:08:18.545293 c0b2aedd-cb04-4e76-97ee-6a9cdf8f668e {"pid": "7712", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030904218"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:18.604163 2024-09-11 09:08:18.604166 2a9285d5-4f2f-41e0-85e2-3a21eab0e045 {"pid": "7713", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030909120"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:18.68403 2024-09-11 09:08:18.684037 fad4f17e-8d54-41b7-80fe-ac840f8f7fed {"pid": "7714", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030924987"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:18.748902 2024-09-11 09:08:18.748905 95903e07-068f-437f-83be-b45b0f14ccc7 {"pid": "7715", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030975689"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:18.813132 2024-09-11 09:08:18.813136 c16cdc30-da49-4b73-9ea3-4c73cccd88b3 {"pid": "7716", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/031018866"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:18.880306 2024-09-11 09:08:18.880311 9175f01c-8bec-405f-bc85-d2c856d09322 {"pid": "7717", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/031067956"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:18.951265 2024-09-11 09:08:18.951271 2040cd76-0c74-45d2-aff5-56ba4212e8f4 {"pid": "7718", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/031208495"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:19.015116 2024-09-11 09:08:19.015121 6e2b236f-3b10-4853-9928-b2d2021c8abd {"pid": "7719", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/031380107"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:19.076587 2024-09-11 09:08:19.076591 812f68f9-5028-4973-8857-3a8c6c5e3401 {"pid": "7720", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/031531121"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:19.141711 2024-09-11 09:08:19.141714 0bf8c061-0f87-487c-adad-79285fe27f8d {"pid": "7721", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03166010X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:19.211916 2024-09-11 09:08:19.21192 598401aa-e637-41fc-b173-550b9b97b512 {"pid": "7722", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/031819877"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:19.273518 2024-09-11 09:08:19.273522 1295baaa-1728-4545-9ca6-d585383af9f3 {"pid": "7723", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/032027524"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:19.331486 2024-09-11 09:08:19.33149 e87aad76-6299-4643-a205-413c32fe51aa {"pid": "7724", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/032184034"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:19.389288 2024-09-11 09:08:19.389291 fb835cdb-1bc6-4599-9679-4c9f9fabfeb8 {"pid": "7725", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/032317468"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:19.445809 2024-09-11 09:08:19.445812 bc813c6a-7f57-4840-b1a8-f6769f2fca1f {"pid": "7726", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/032324650"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:19.50489 2024-09-11 09:08:19.504895 b37432eb-2808-48c8-8b14-a363dccd6781 {"pid": "7727", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/032324804"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:19.566767 2024-09-11 09:08:19.56677 aab9b7cf-9504-4fdd-9ea6-0fef80667eb4 {"pid": "7728", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/032370474"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:19.631699 2024-09-11 09:08:19.631702 a454acd5-2cf6-464e-9945-7f9bb1795f32 {"pid": "7729", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03243782X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:19.702263 2024-09-11 09:08:19.702268 c60cad63-067b-4301-813b-100f4ff8cd33 {"pid": "7730", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/032493940"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:19.768065 2024-09-11 09:08:19.768072 5d26df17-8a98-40df-9094-d623d2c17176 {"pid": "7731", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/032506929"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:19.829861 2024-09-11 09:08:19.829866 84d3efc0-ef21-443d-8717-70f9739f0781 {"pid": "7732", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03256953X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:19.889898 2024-09-11 09:08:19.8899 4f708c9a-66ef-4290-8465-82d5f9626f31 {"pid": "7733", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/032675011"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:19.950498 2024-09-11 09:08:19.950503 a9c5673c-faac-4712-a84d-353e0f3d327a {"pid": "7734", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/032709501"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:20.01039 2024-09-11 09:08:20.010393 5add4eab-8bd2-4929-8fd4-424ab7fe1b5e {"pid": "7735", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/032916078"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:20.072791 2024-09-11 09:08:20.072795 3426e50b-5fed-463b-8895-4d713142d75c {"pid": "7736", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/032978294"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:20.130042 2024-09-11 09:08:20.130045 99ef88a2-fde3-46cf-a94d-4efffe661c1c {"pid": "7737", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/033125341"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:20.19597 2024-09-11 09:08:20.195975 a7bfd65d-eead-4418-a186-ed04f8f1945d {"pid": "7738", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/033136831"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:20.25391 2024-09-11 09:08:20.253912 388ad2d0-1cc1-46d7-ab6c-ec6b70d13e69 {"pid": "7739", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/033422605"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:20.314493 2024-09-11 09:08:20.314497 4e91a50b-43ab-4391-852a-5455feabf8a3 {"pid": "7740", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/033433763"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:20.38277 2024-09-11 09:08:20.382775 aa03c677-5bb1-4cce-a566-6126de38eb7c {"pid": "7741", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/033642036"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:20.444664 2024-09-11 09:08:20.444666 39b4bb8e-d705-4bd9-8fbe-e2ece2fe4bba {"pid": "7742", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/033738653"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:20.507713 2024-09-11 09:08:20.507717 29472fdc-ad10-44bd-af5c-5760d62b60fc {"pid": "7743", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03374033X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:20.640766 2024-09-11 09:08:20.640771 40d59f97-d8f2-491b-a101-c9377dde8e8b {"pid": "7745", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/033895732"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:20.707816 2024-09-11 09:08:20.70782 0852ab0a-e7e4-4871-8726-53bd09262728 {"pid": "7746", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034054693"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:20.761241 2024-09-11 09:08:20.761245 5274068f-3473-458c-828f-d2f141a077b5 {"pid": "7747", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03405491X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:20.818196 2024-09-11 09:08:20.818199 a29be910-4013-496b-b0e5-80103eff7ea5 {"pid": "7748", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034133704"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:20.879731 2024-09-11 09:08:20.879735 8d976fa5-8b2e-4ece-82dd-d892dd74bbb9 {"pid": "7749", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034195688"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:20.935602 2024-09-11 09:08:20.935606 4a4a1275-b69f-444c-8bc8-34c8c3db4c73 {"pid": "7750", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034254145"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:20.995069 2024-09-11 09:08:20.995074 c4090b37-f3f9-4966-8773-bb607ac32f61 {"pid": "7751", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034259910"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:21.061917 2024-09-11 09:08:21.061922 7c50bb91-1fa6-4da5-a6d6-4dc31c085197 {"pid": "7752", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034308695"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:21.120969 2024-09-11 09:08:21.120972 1f875285-1e63-4593-8d5b-130d4a0da500 {"pid": "7753", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034342230"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:21.176066 2024-09-11 09:08:21.17607 3161f2b5-843e-4834-b2cb-c983a4fcd7f3 {"pid": "7754", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034566228"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:21.234105 2024-09-11 09:08:21.234108 d4287ba9-bc07-4246-98dd-670bed66b3b0 {"pid": "7755", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034591966"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:21.291023 2024-09-11 09:08:21.291028 d765eeca-7867-49de-9762-082c485163cc {"pid": "7756", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034623574"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:21.350749 2024-09-11 09:08:21.350752 2eee7895-8161-4174-b9b2-ec0fbc55dd70 {"pid": "7757", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034679391"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:21.408348 2024-09-11 09:08:21.408353 9006b27b-60d6-459c-95c2-b0795fb9e70c {"pid": "7758", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034705384"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:21.470596 2024-09-11 09:08:21.470601 41a84157-0f48-4ce7-9bec-036758c7d517 {"pid": "7759", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03472690X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:21.52915 2024-09-11 09:08:21.529154 a86ecdf9-07c2-4d21-99b9-e08acd2c8301 {"pid": "7760", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034766995"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:21.587392 2024-09-11 09:08:21.587395 e88903d1-17f8-4a68-86a2-10ca821087f8 {"pid": "7761", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034781897"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:21.661623 2024-09-11 09:08:21.661626 62302b1f-e58e-4cd0-aae2-438d31d393ef {"pid": "7762", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034857923"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:21.720535 2024-09-11 09:08:21.720539 d41040ba-3ee9-4226-9d8e-60f49e37a95a {"pid": "7763", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034885420"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:21.78041 2024-09-11 09:08:21.780424 968447bf-2fa1-4400-863c-369eec040d20 {"pid": "7764", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034892710"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:21.840475 2024-09-11 09:08:21.840479 35768127-a0a7-4fe8-9747-526fe073b0b1 {"pid": "7765", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/034960848"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:21.899717 2024-09-11 09:08:21.89972 71c7d16f-31ff-45b1-b183-3c74a8876a3c {"pid": "7766", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035061308"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:21.962701 2024-09-11 09:08:21.962704 787e014f-6739-45bf-bdeb-daffce524f1c {"pid": "7767", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035095679"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:22.027161 2024-09-11 09:08:22.027164 64cdd54e-d613-4ff8-ba72-129bdd9084c5 {"pid": "7768", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035167734"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:22.091716 2024-09-11 09:08:22.091721 0daacef5-f333-493e-97c6-c293fef43280 {"pid": "7769", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035198222"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:22.153587 2024-09-11 09:08:22.153591 4913f69a-6375-4e06-9b78-ca3204c233fd {"pid": "7770", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035260521"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:22.214107 2024-09-11 09:08:22.214112 3b377da8-d2bf-4d97-9459-49c13b993cf8 {"pid": "7771", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035461152"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:22.27337 2024-09-11 09:08:22.273373 6ab753a1-9048-499a-9f05-e5e5d277eac4 {"pid": "7772", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035486686"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:22.331525 2024-09-11 09:08:22.331527 6f49698e-b04c-4274-8072-701123bdcfeb {"pid": "7773", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035527250"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:22.392119 2024-09-11 09:08:22.392123 206f0d94-abbb-4c9a-bc3d-f5ff6ee0a84d {"pid": "7774", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035621664"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:22.456178 2024-09-11 09:08:22.456181 4e1d659d-3019-46ec-816a-9331a648b2d5 {"pid": "7775", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035634847"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:22.515278 2024-09-11 09:08:22.515282 e8e99cb5-38a8-422b-b0be-076902f061c0 {"pid": "7776", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035650532"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:22.577148 2024-09-11 09:08:22.57715 dd9d8ddc-c689-41cd-981b-437b5b2f2d9e {"pid": "7777", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035658622"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:22.633399 2024-09-11 09:08:22.633401 9f35da52-9604-4efe-a62b-c6d22b784e3a {"pid": "7778", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035724099"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:22.709519 2024-09-11 09:08:22.709524 a5d48aa2-588c-4ae9-b42a-c7d6f88641e3 {"pid": "7779", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050124315"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:22.769437 2024-09-11 09:08:22.769441 c4f80b52-10d1-4ceb-94a6-d8332a101868 {"pid": "7780", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050186647"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:22.826608 2024-09-11 09:08:22.826612 8f1422ee-5b87-48a8-afff-aa248f271699 {"pid": "7781", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050220284"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:22.891925 2024-09-11 09:08:22.891928 08ed1f7c-531b-4e7a-9230-5a6cd0b2e5a3 {"pid": "7782", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050366157"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:22.952685 2024-09-11 09:08:22.952691 d2f00b98-2da0-4209-9fad-3ff694a09910 {"pid": "7783", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/05041870X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:23.012763 2024-09-11 09:08:23.012768 85ff64f2-1b33-407e-88c6-76612237ea8a {"pid": "7784", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050516760"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:23.078168 2024-09-11 09:08:23.078171 2c062981-a0f0-49e1-8669-9acb550a37bc {"pid": "7785", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050518526"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:23.140546 2024-09-11 09:08:23.140551 7e68e06e-93f9-4a76-b4b9-a21a720e8fdb {"pid": "7786", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050534882"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:23.193659 2024-09-11 09:08:23.193663 88cfd49a-56b2-401c-b752-236da74cee9f {"pid": "7787", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/05056479X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:23.256008 2024-09-11 09:08:23.256011 fc45e51f-6b3e-470a-8f3d-6debb7783aa1 {"pid": "7788", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050582453"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:23.311498 2024-09-11 09:08:23.311501 d2445b25-b39e-4828-a7e5-461d7f7d7f8c {"pid": "7789", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050602195"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:23.373144 2024-09-11 09:08:23.373148 1733b78c-06d4-4465-92fd-ae1c2890a548 {"pid": "7790", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050627953"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:23.432492 2024-09-11 09:08:23.432494 bf005b44-ef9b-4730-8f33-87da5e13c593 {"pid": "7791", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050702858"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:23.489584 2024-09-11 09:08:23.489588 2cf00afd-dd46-4bf1-9948-3db3cc280ea4 {"pid": "7792", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050764861"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:23.548871 2024-09-11 09:08:23.548874 215652de-9b0a-4f0c-96d0-825da8ea1a28 {"pid": "7793", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050773313"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:23.626343 2024-09-11 09:08:23.626348 829ec786-3317-4c86-8633-e40b2ccc3c54 {"pid": "7794", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050784005"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:23.683873 2024-09-11 09:08:23.683877 2eab52ec-c76a-4380-aeb8-93d33f8b99ea {"pid": "7795", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050808583"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:23.736969 2024-09-11 09:08:23.736972 33725dea-ab9f-4493-8dd3-f2e8333883b5 {"pid": "7796", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050827405"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:23.794038 2024-09-11 09:08:23.794042 74433b0d-d7e7-447c-ac67-7a7ceee33c05 {"pid": "7797", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/052587207"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:23.852714 2024-09-11 09:08:23.852718 ade075fd-7e6d-4ab1-a34b-be0636cd1cdd {"pid": "7798", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/052634833"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:23.911401 2024-09-11 09:08:23.911405 f8d0e58f-1f61-4088-97af-785fdd1150be {"pid": "7799", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/053469844"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:23.969031 2024-09-11 09:08:23.969036 1db06404-8bba-42df-a351-ef1cbfc023b3 {"pid": "7800", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/055308600"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:24.036737 2024-09-11 09:08:24.03674 7d1daf3d-df1b-4ba5-a626-43b46b4a3327 {"pid": "7801", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/059302208"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:24.091636 2024-09-11 09:08:24.09164 196890e1-a3e5-466a-b3af-1996beb7b5dd {"pid": "7802", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/05930278X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:24.154421 2024-09-11 09:08:24.154425 6528e820-228c-482c-9d80-adcd96f1d8d2 {"pid": "7803", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/059307374"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:24.215237 2024-09-11 09:08:24.215241 4769f095-73f1-4048-a17f-25789784bc79 {"pid": "7804", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/06082929X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:24.276147 2024-09-11 09:08:24.276151 6f57375e-3025-461a-bb2f-2d9a67809513 {"pid": "7805", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/06160738X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:24.341265 2024-09-11 09:08:24.341269 4b13c696-2076-4175-b53d-cfa08ce2b11c {"pid": "7806", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/075000504"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:24.397559 2024-09-11 09:08:24.397562 9aacccfc-8972-464b-be6f-51d1b367597e {"pid": "7807", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/077057589"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:24.457196 2024-09-11 09:08:24.4572 c9f9855e-a684-4df3-a528-02725896f893 {"pid": "7808", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/077060377"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:24.514966 2024-09-11 09:08:24.51497 b0a660e9-2572-49cf-90c6-b6720b30a864 {"pid": "7809", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/077062809"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:24.573081 2024-09-11 09:08:24.573085 13fc2ebf-98eb-416f-849c-649c6da2687c {"pid": "7810", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/077075757"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:24.660494 2024-09-11 09:08:24.660498 e7bc534b-7a07-4179-b2cc-7a1ceff1fbf4 {"pid": "7811", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/077088883"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:24.728789 2024-09-11 09:08:24.728794 36bf6d0f-983a-4fe3-81c0-cc6e50866a4a {"pid": "7812", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/077091035"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:24.787026 2024-09-11 09:08:24.78703 ebed4c7d-794a-4430-ac8b-f67c8609662d {"pid": "7813", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/077397827"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:24.851911 2024-09-11 09:08:24.851915 0c228fec-3078-484b-8860-8a2db101423e {"pid": "7814", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/077937007"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:24.911134 2024-09-11 09:08:24.911137 85a35c45-4662-43a5-89f4-8fec3f0c7aa6 {"pid": "7815", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/078974089"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:24.977363 2024-09-11 09:08:24.977366 2635a4d9-4ac6-4714-bf66-efc4595fc819 {"pid": "7816", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/079180043"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:25.037559 2024-09-11 09:08:25.037563 1ab35dea-a21e-4167-8281-62c5f157c90b {"pid": "7817", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/081665660"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:25.094969 2024-09-11 09:08:25.094973 d8f6aa0b-9f01-411d-84ca-9f8662349bce {"pid": "7818", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/083421467"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:25.156128 2024-09-11 09:08:25.156131 2274bc36-9485-4429-9c23-1884928243aa {"pid": "7819", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/083972684"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:25.21809 2024-09-11 09:08:25.218095 9c8ad8c8-86b6-4d07-b14d-1e46a0916ffe {"pid": "7820", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/08523611X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:25.28459 2024-09-11 09:08:25.284595 65a382d9-9865-4ae9-9574-0c915aa2dd8d {"pid": "7821", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/087834979"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:25.369119 2024-09-11 09:08:25.369123 ca8ed834-5784-4725-b9c3-063fe66cd42a {"pid": "7822", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/087960621"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:25.42658 2024-09-11 09:08:25.426583 1e7ee1dd-2e2c-4c1b-a226-0b3666417369 {"pid": "7823", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/092468594"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:25.483744 2024-09-11 09:08:25.483749 96c5025a-00e9-48ad-9ac8-55f8d0c30d83 {"pid": "7824", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/092468950"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:25.542788 2024-09-11 09:08:25.542792 473c550b-621a-448d-afec-f985d5434436 {"pid": "7825", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/101481071"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:25.601003 2024-09-11 09:08:25.601005 fdfb2655-1ff5-4fdf-8d13-4ed1f914cd09 {"pid": "7826", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/110905687"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:25.670306 2024-09-11 09:08:25.670311 9e557238-a68a-42ab-996f-0f2b5df4839d {"pid": "7827", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/111597153"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:25.737605 2024-09-11 09:08:25.737611 dbfa805c-9dba-4a56-86dc-9801c63e57b9 {"pid": "7828", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/112539750"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:25.794945 2024-09-11 09:08:25.794947 e4615c6f-9724-4c3f-89f1-c2649c8d2f0b {"pid": "7829", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/115898840"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:25.856116 2024-09-11 09:08:25.85612 a7e882f4-c399-408d-91d4-a28ab1af9a20 {"pid": "7830", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/118419722"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:25.922759 2024-09-11 09:08:25.922761 ccf1db81-9f8b-482e-bc32-538fa5edc276 {"pid": "7831", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/118420763"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:25.9805 2024-09-11 09:08:25.980505 f940a302-8734-4856-b5a1-693036b1c22b {"pid": "7832", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/11948949X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:26.042371 2024-09-11 09:08:26.042376 1f2ad8b3-8b7a-4446-8114-341431b4fb66 {"pid": "7833", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/120299658"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:26.099637 2024-09-11 09:08:26.09964 2892b30e-663f-4179-a042-f701ec425c59 {"pid": "7834", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/12059353X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:26.163357 2024-09-11 09:08:26.163361 7712e753-9ace-447f-a222-73e49237c2f8 {"pid": "7835", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/122348486"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:26.220634 2024-09-11 09:08:26.220638 2be4e4cd-e909-4cf4-900a-fa976fefd9a8 {"pid": "7836", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/122348877"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:26.274534 2024-09-11 09:08:26.274538 9862e579-be57-4fa3-ae3a-0c14578eb248 {"pid": "7837", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/122957032"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:26.334776 2024-09-11 09:08:26.334778 e9aa91b0-d300-42c7-89dc-c3388858d481 {"pid": "7838", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/123472466"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:26.388756 2024-09-11 09:08:26.388758 4fd1999b-d82c-4e85-9013-0e04ea4546b9 {"pid": "7839", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/124452248"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:26.448849 2024-09-11 09:08:26.448853 9ef28656-1076-4308-9874-03d261a2e938 {"pid": "7840", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/129822051"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:26.509748 2024-09-11 09:08:26.509752 bcaf964b-351a-4349-96fa-2e7790f94361 {"pid": "7841", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/130683035"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:26.57602 2024-09-11 09:08:26.576024 a8ecf56f-214f-4678-ad47-5321b2b27c5b {"pid": "7842", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/13073019X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:26.642307 2024-09-11 09:08:26.642312 9ddd46e3-15a6-4777-b79e-2a846b0c7ad7 {"pid": "7843", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/131981226"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:26.715029 2024-09-11 09:08:26.715034 3325c2dc-7c7c-4c1b-9f6a-ea192c62ac61 {"pid": "7844", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/132211378"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:26.772942 2024-09-11 09:08:26.772945 67815eca-66af-4434-80e8-4a3134c9b746 {"pid": "7845", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/133566129"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:26.836641 2024-09-11 09:08:26.836649 8f785980-f4c1-4b43-9848-04bbcf1f6755 {"pid": "7846", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/135615003"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:26.893436 2024-09-11 09:08:26.893439 8168f82b-6f7d-48ee-bc35-f2e2a416bb29 {"pid": "7847", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/136707165"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:26.95177 2024-09-11 09:08:26.951775 e1d3c542-7762-4a78-ae9e-c9192639ca0d {"pid": "7848", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/13776541X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:27.015517 2024-09-11 09:08:27.015522 10168191-fe0b-43d5-b27b-59dacb10fb21 {"pid": "7849", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/137978685"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:27.074186 2024-09-11 09:08:27.07419 8f4b15e3-e0a5-4517-8819-b4be8d3d5d59 {"pid": "7850", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/139100857"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:27.131345 2024-09-11 09:08:27.131349 61b04520-8834-4ade-a817-aa8294820d5e {"pid": "7851", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/142761583"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:27.189984 2024-09-11 09:08:27.189988 e3d369ed-3d93-4152-83f3-e1db7843774a {"pid": "7852", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/144664194"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:27.255059 2024-09-11 09:08:27.255062 f4ced338-ddac-4a8b-b2f8-81da2128e5c4 {"pid": "7853", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/145035468"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:27.309905 2024-09-11 09:08:27.309909 e1eda898-6304-4bc0-a92f-c28a83c41d99 {"pid": "7854", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/145909093"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:27.368483 2024-09-11 09:08:27.368486 3a2d29ff-dce9-4ee7-9554-5537ef1c23fb {"pid": "7855", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/146923081"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:27.427302 2024-09-11 09:08:27.427306 5cf1eba9-6a73-4274-b228-0881e5cae866 {"pid": "7856", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/147286433"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:27.487851 2024-09-11 09:08:27.487855 9a9d456d-a0e4-4304-9a9c-4f072fabf50c {"pid": "7857", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/148541372"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:27.565767 2024-09-11 09:08:27.565771 86616797-4c2a-44aa-85e4-89ad02fdf921 {"pid": "7858", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/148542182"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:27.627 2024-09-11 09:08:27.627004 471402dd-72d0-47d5-b4c9-016aacc5fdeb {"pid": "7859", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/151385432"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:27.684057 2024-09-11 09:08:27.684061 e288f299-871e-4002-93b4-db5bbd50c745 {"pid": "7860", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/15212201X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:27.740666 2024-09-11 09:08:27.740668 da0273f7-d3db-4955-9121-60061cc166bf {"pid": "7861", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/15909545X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:27.799669 2024-09-11 09:08:27.799672 bc39d15c-4e1b-4047-98a0-acc41e747eb6 {"pid": "7862", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/167934813"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:27.863873 2024-09-11 09:08:27.863876 3787001f-6464-43dc-99a6-4921499e1697 {"pid": "7863", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/168476010"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:27.930647 2024-09-11 09:08:27.930651 b2a35244-f49b-4b53-87df-b4ff26d39d03 {"pid": "7864", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/169910733"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:27.99328 2024-09-11 09:08:27.993283 b6cadb43-98a1-45d7-bb32-235fd6e6b4b5 {"pid": "7865", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/17129226X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:28.061313 2024-09-11 09:08:28.061317 d36548f3-feb7-4dcd-82de-2cb0f3d0f7df {"pid": "7866", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/17523308X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:28.120883 2024-09-11 09:08:28.120886 518bea16-d9ca-4860-8ce0-00f5fcf3a547 {"pid": "7867", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/17939360X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:28.179631 2024-09-11 09:08:28.179636 ec2be3c0-4451-4f19-9346-196b7a0c318c {"pid": "7868", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/180214845"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:28.238095 2024-09-11 09:08:28.238098 a200e3e5-5ce1-4c17-9c83-42c42c3cd7a9 {"pid": "7869", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/180214926"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:28.29764 2024-09-11 09:08:28.297644 d8706a1a-c1cb-4b54-a94a-ae5e216f7c78 {"pid": "7870", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/18028505X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:28.357771 2024-09-11 09:08:28.357775 a3cff396-3f80-4a80-95b8-c60832b3df78 {"pid": "7871", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/181882604"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:28.41494 2024-09-11 09:08:28.414945 5eae82a2-eee9-4050-805f-625ffd445a89 {"pid": "7872", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/182446174"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:28.478288 2024-09-11 09:08:28.478293 25bf17b5-65f1-496e-9ae0-c6baa1b94466 {"pid": "7873", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/183790936"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:28.550315 2024-09-11 09:08:28.55032 f664ccfd-1d54-4e09-a148-74c7d5cba25c {"pid": "7874", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/183791428"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:28.610718 2024-09-11 09:08:28.610721 29ec0015-ff58-41f2-8df7-d830c101085f {"pid": "7875", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/184625807"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:28.671507 2024-09-11 09:08:28.67151 b511963d-fcd6-4abb-9bb0-99e8f36ecf51 {"pid": "7876", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/185018440"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:28.735777 2024-09-11 09:08:28.735779 64b58f65-4047-4d90-a512-2c010b159c27 {"pid": "7877", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/187082324"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:28.794695 2024-09-11 09:08:28.794699 17c55edd-0cec-4e2a-a3af-f52df5dee8da {"pid": "7878", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/190795786"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:28.853918 2024-09-11 09:08:28.853937 088a2178-0f51-452f-9fd1-8890ca5093af {"pid": "7879", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/190994320"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:28.914359 2024-09-11 09:08:28.914362 7be90e7e-7eac-4c6c-8290-d68b5abe1b26 {"pid": "7880", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/193304104"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:28.970342 2024-09-11 09:08:28.970347 1229b1ce-6959-4c20-ac65-aac420054b73 {"pid": "7881", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/193617668"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:29.030141 2024-09-11 09:08:29.030145 29910fb5-36a6-4dc6-b415-4648a8ebef5a {"pid": "7882", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/196951763"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:29.094679 2024-09-11 09:08:29.094685 2a3fd35f-4731-4777-ae6c-f95970ea8241 {"pid": "7883", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/197956653"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:29.152947 2024-09-11 09:08:29.15295 25ece9d8-01a3-4b96-b899-cba59dc150c2 {"pid": "7884", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/197957358"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:29.210389 2024-09-11 09:08:29.210394 5788a1b1-c7c7-43ab-8ccf-9e8b53451f48 {"pid": "7885", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/199344019"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:29.273241 2024-09-11 09:08:29.273247 d8ba2d37-08b3-4446-9e91-6b65447d349d {"pid": "7886", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/199344248"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:29.334886 2024-09-11 09:08:29.334889 1d7e35e3-d6be-43d1-9f20-b974c3ccdb45 {"pid": "7887", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/200582038"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:29.394332 2024-09-11 09:08:29.394335 b0db3cd8-0827-41d3-856b-71acc1308662 {"pid": "7888", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/200884530"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:29.45227 2024-09-11 09:08:29.452273 dae3f365-e772-457a-be6e-9b49bf128478 {"pid": "7889", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/204008557"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:29.516752 2024-09-11 09:08:29.516757 24aa6915-5a71-415e-bac8-9a648cf2d9c2 {"pid": "7890", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/219951152"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:29.581681 2024-09-11 09:08:29.581698 dfb64b13-7170-4689-8fd7-00281c709ef9 {"pid": "7891", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/219966540"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:29.647214 2024-09-11 09:08:29.647218 1bca1458-07bd-4d2d-aa64-142a0a808d44 {"pid": "7892", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/223495913"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:29.704297 2024-09-11 09:08:29.704301 9c27d4f2-e645-468a-846e-18973815e7bf {"pid": "7893", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/223831840"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:29.764237 2024-09-11 09:08:29.764241 b2cd5a51-e91d-44ee-8232-5a1e352eaa67 {"pid": "7894", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/225382520"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:29.832054 2024-09-11 09:08:29.832057 146b5406-2df7-4990-afa8-0f642854c32e {"pid": "7895", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/227367677"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:29.891838 2024-09-11 09:08:29.891842 9cdd416c-6fd1-4bb9-a4d2-54bfe0ba08d2 {"pid": "7896", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/227858689"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:29.951902 2024-09-11 09:08:29.951906 f4eaf2f2-ac30-4130-a1a5-6c8dcef3ba8b {"pid": "7897", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/228803608"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:30.009707 2024-09-11 09:08:30.009711 4e10996b-795e-44eb-b8da-c0fa0d5e0321 {"pid": "7898", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/232818665"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:30.07782 2024-09-11 09:08:30.077822 a97d9396-3c48-4a25-b73f-8e3d7223208f {"pid": "7899", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/234183721"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:30.135768 2024-09-11 09:08:30.135771 1867b0b1-1977-4822-8486-3c1505364897 {"pid": "7900", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/236280147"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:30.194942 2024-09-11 09:08:30.194946 4f449dc1-595f-499d-9c29-6dbde526f6a7 {"pid": "7901", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/26110683X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:30.253574 2024-09-11 09:08:30.253577 8bdea4c1-a994-4ff7-9d92-6fd7f3cf169a {"pid": "7902", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/261107119"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:30.315621 2024-09-11 09:08:30.315626 9905fbb5-fa52-4890-a287-a97bc259f914 {"pid": "7903", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/261901915"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:30.379235 2024-09-11 09:08:30.379239 9e10bd9c-af9d-483d-a4dc-532abc76c196 {"pid": "7904", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263499758"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:30.438329 2024-09-11 09:08:30.438334 dbf65995-c6b2-419a-9384-46542617c844 {"pid": "7905", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/264222423"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:30.497006 2024-09-11 09:08:30.497009 6d196dcd-3be3-4b6a-af31-835f126f2047 {"pid": "7906", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/264325974"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:30.572473 2024-09-11 09:08:30.572477 300cf4b7-a78b-4684-9a57-bc1fde9e9274 {"pid": "7907", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/264387414"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:30.638555 2024-09-11 09:08:30.638559 9a80f8a1-99d4-4780-bfb8-f1b92ccf8049 {"pid": "7908", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/264387538"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:30.698821 2024-09-11 09:08:30.698825 1e77f5f8-d3f6-4c3f-8f0a-ab4829966e6f {"pid": "7909", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/26438833X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:30.762228 2024-09-11 09:08:30.762231 4a0998e9-14b9-4745-a722-1e5b5bf0d88e {"pid": "7910", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/271981423"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:30.819024 2024-09-11 09:08:30.819029 9204a626-bad6-49d6-8911-9fddf5b48e66 {"pid": "7911", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/27874690X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:30.879159 2024-09-11 09:08:30.879163 ee789fcc-1907-4fce-8fa7-5e26543860ca {"pid": "7912", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278746969"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:30.936838 2024-09-11 09:08:30.936842 e7d84323-c21b-4b90-a7d6-3cfe9c9266dd {"pid": "7913", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278746985"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:31.000446 2024-09-11 09:08:31.000454 ab186327-78ca-4677-a194-d5f8deb9ecf8 {"pid": "7914", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278746993"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:31.065271 2024-09-11 09:08:31.065273 8058e5f5-7982-4310-a4c2-7c39fd26581a {"pid": "7915", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747000"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:31.125471 2024-09-11 09:08:31.125476 9eafa2e6-4691-4c70-b660-907fd60ff8b4 {"pid": "7916", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747019"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:31.179606 2024-09-11 09:08:31.179611 6cd35b84-5af8-4ccb-a6a3-b6a98fd03c3e {"pid": "7917", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747043"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:31.237632 2024-09-11 09:08:31.237638 f856fe45-4ae3-4f6b-a8f5-ca420aa759ba {"pid": "7918", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747167"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:31.301363 2024-09-11 09:08:31.301366 20c16a27-3c6d-4351-b0e9-1a87769d7e61 {"pid": "7919", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747175"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:31.361716 2024-09-11 09:08:31.361722 d00285ac-564c-4165-9f8b-495fd432e695 {"pid": "7920", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747183"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:31.437762 2024-09-11 09:08:31.437768 a3456686-206c-4852-aaa9-d30d00f53434 {"pid": "7921", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747191"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:31.50604 2024-09-11 09:08:31.506043 ed9caf0e-bce3-4335-b35f-2aeec9a15dce {"pid": "7922", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/27874723X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:31.561875 2024-09-11 09:08:31.561879 820ea248-ff28-43f6-b032-c78d0cf6f6cf {"pid": "7923", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747280"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:31.619837 2024-09-11 09:08:31.619841 e3f09caf-0739-481f-bb59-c657acf4b76a {"pid": "7924", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747329"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:31.681355 2024-09-11 09:08:31.681359 8e9341ff-902e-4243-9783-65fb9e390534 {"pid": "7925", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034725"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:31.746014 2024-09-11 09:08:31.746018 ff287530-4253-4b42-862b-a45a6c87487f {"pid": "7926", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034733"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:31.803368 2024-09-11 09:08:31.803373 d9d91156-46e1-4d6e-9846-dde66d4b2b4e {"pid": "7927", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034741"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:31.872073 2024-09-11 09:08:31.872076 dad6ee31-1f6c-408a-b84d-d7359592f99e {"pid": "7928", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/27903475X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:31.929797 2024-09-11 09:08:31.929801 7d968f29-6187-4d1e-95f7-54f7b01450ca {"pid": "7929", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034806"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:31.9881 2024-09-11 09:08:31.988104 32abe329-de98-451f-a556-6abb2366dcfd {"pid": "7930", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034814"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:32.053263 2024-09-11 09:08:32.053268 caacae0f-4a9e-4e05-9bcd-d409d7d0a25c {"pid": "7931", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034822"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:32.112684 2024-09-11 09:08:32.112687 05121198-2933-46b0-9f9f-896966abf811 {"pid": "7932", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034849"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:32.172034 2024-09-11 09:08:32.172038 fb4c7773-3a00-4431-8139-8840b1eca46a {"pid": "7933", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034881"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:32.22979 2024-09-11 09:08:32.229793 c544e395-5d8e-491a-a438-7a15a57467e5 {"pid": "7934", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/27903492X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:32.284694 2024-09-11 09:08:32.284697 2063c4fa-d344-4632-a433-0d0c5e0fc0a5 {"pid": "7935", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034946"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:32.338486 2024-09-11 09:08:32.33849 85d33c6d-8647-457c-867e-7e8fa01a95a8 {"pid": "7936", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034962"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:32.408435 2024-09-11 09:08:32.408439 52802833-aa22-41cb-9ab4-2baddd5af280 {"pid": "7937", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034970"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:32.468114 2024-09-11 09:08:32.468118 c69b37ef-0b45-4fb2-ad40-49e63b5a36c4 {"pid": "7938", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034997"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:32.526712 2024-09-11 09:08:32.526715 7aaf6d78-e3e9-4990-925d-888eb484ba61 {"pid": "7939", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279035020"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:32.586567 2024-09-11 09:08:32.586571 e9f8eb60-26e0-4520-b8c4-31294594bf72 {"pid": "7940", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279035063"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:32.645038 2024-09-11 09:08:32.645043 85165943-f364-4bfa-92e4-a6e5b083dec0 {"pid": "7941", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279035071"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:32.703323 2024-09-11 09:08:32.703328 370fa86a-1089-4aef-9022-d9167d57ceaa {"pid": "7942", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/27903508X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:32.765429 2024-09-11 09:08:32.76543 b0cfa4db-57d1-4f93-b27b-c180b0c704eb {"pid": "7943", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279035098"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:32.824959 2024-09-11 09:08:32.824963 db558182-c37c-4afa-ab07-ae9d223d09f3 {"pid": "7944", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279035101"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:32.891115 2024-09-11 09:08:32.891118 95582d00-8bd8-400c-b750-1a3310c14915 {"pid": "7945", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279035144"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:32.954994 2024-09-11 09:08:32.954998 57464e78-5adc-4b3f-8309-78289d292fd2 {"pid": "7946", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279035241"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:33.014132 2024-09-11 09:08:33.014135 22c2882e-4ad1-4540-9ec7-8c3126b6d737 {"pid": "7947", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027233960"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:33.075971 2024-09-11 09:08:33.075974 1da71ad2-46e3-49af-a3e4-5e23dafb57be {"pid": "7948", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027238431"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:33.140877 2024-09-11 09:08:33.140882 2962705d-76db-4fc3-8a07-c1c2a0717ed2 {"pid": "7949", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027248720"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:33.207343 2024-09-11 09:08:33.207347 51171c0a-6d2b-4ebb-84ea-fe8c1bdd4e54 {"pid": "7950", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027255522"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:33.262793 2024-09-11 09:08:33.262795 53599f97-7d71-4a7f-9849-147925b8f557 {"pid": "7951", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027258556"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:33.322205 2024-09-11 09:08:33.322208 94cc8453-f75a-4d90-9aed-2ad48d2b3955 {"pid": "7952", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027266273"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:33.398289 2024-09-11 09:08:33.398293 a9526292-0aab-4a8c-8487-3de8d4a31e5d {"pid": "7953", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027314073"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:33.460197 2024-09-11 09:08:33.460201 c284cf75-a471-4802-ad5e-13f7167030bc {"pid": "7954", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027361705"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:33.520004 2024-09-11 09:08:33.520009 c04d88e4-2c02-4afa-97eb-1b0382a52feb {"pid": "7955", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027390349"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:33.575874 2024-09-11 09:08:33.575878 00c31455-a5e5-44cc-abc3-fab7f53cf865 {"pid": "7956", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02741664X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:33.636451 2024-09-11 09:08:33.636453 8fe8ac5c-a311-434c-ae96-d8864fd01ea9 {"pid": "7957", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027802973"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:33.694416 2024-09-11 09:08:33.694421 4ce171a0-f7fc-4ba7-9b39-7608a8678bc6 {"pid": "7958", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027824586"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:33.757552 2024-09-11 09:08:33.757555 01bf6ba1-9164-44e1-a375-1048d391d2a6 {"pid": "7959", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027855929"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:33.814562 2024-09-11 09:08:33.814566 e9c0ff3a-b902-470e-8ed3-ef00173ea8a1 {"pid": "7960", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028205847"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:33.872228 2024-09-11 09:08:33.872233 1176d762-698d-4499-b67b-e052eb8ceebe {"pid": "7961", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028221044"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:33.928256 2024-09-11 09:08:33.92826 9d9b57df-71e7-4471-9316-c5a7a15ed12b {"pid": "7962", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028889347"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:33.988307 2024-09-11 09:08:33.98831 92e3bc7d-d33b-493c-aadf-28d2812c3991 {"pid": "7963", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028938615"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:34.050169 2024-09-11 09:08:34.050173 6cd5adfe-3c8a-4d69-a4be-1059372bdbd7 {"pid": "7964", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/031082599"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:34.112344 2024-09-11 09:08:34.112348 40c1f558-60ea-45a5-ab5e-4f486f805daf {"pid": "7965", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/031955274"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:34.188718 2024-09-11 09:08:34.188723 4e36e3a9-7cfd-4aba-b429-25b4c16f3b62 {"pid": "7966", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03465500X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:34.268481 2024-09-11 09:08:34.268487 6f9e0f2a-b105-4179-8947-c8e080f3e310 {"pid": "7967", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035141913"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:34.324844 2024-09-11 09:08:34.324847 b4f173c1-3fdd-4e5f-8fbe-9c0fe32b5e05 {"pid": "7968", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/05058748X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:34.383602 2024-09-11 09:08:34.383607 4d0375ac-9e86-4160-9c08-cfe988b16d43 {"pid": "7969", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/061612820"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:34.439462 2024-09-11 09:08:34.439466 23c62cdb-a1ad-4ef7-a774-1acebc0edcd7 {"pid": "7970", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/127977996"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:34.501781 2024-09-11 09:08:34.501789 5f305ab2-aff7-4ae5-80aa-20a3cd83e60f {"pid": "7971", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/131462415"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:34.555137 2024-09-11 09:08:34.55514 ef6b19e3-561a-48a3-826f-5dec94db434c {"pid": "7972", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/144331373"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:34.609656 2024-09-11 09:08:34.609658 dd5292f6-a495-4a1a-a5c9-06ec81874045 {"pid": "7973", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/180213911"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:34.668028 2024-09-11 09:08:34.66803 bc39080e-ce66-4f2c-ad3f-854e3f425cbd {"pid": "7974", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/181492628"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:34.731464 2024-09-11 09:08:34.731467 d0a9a89d-959f-4b78-aafd-bac4bcd4dcff {"pid": "7975", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/273372734"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:34.796669 2024-09-11 09:08:34.796672 9d84f2f4-9d87-4d4f-9cb3-50aaf9dab5c6 {"pid": "7976", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/273372742"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:34.858666 2024-09-11 09:08:34.858668 770129cd-1416-4157-a790-4751b8612771 {"pid": "7977", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/273372750"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:34.939174 2024-09-11 09:08:34.939177 37f49886-df39-4c68-b156-315878061f61 {"pid": "7978", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/273372777"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:34.997526 2024-09-11 09:08:34.997529 7685db14-267c-41fe-94ad-d7ad1a9eae13 {"pid": "7979", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/273372785"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:35.058699 2024-09-11 09:08:35.058703 a61351e6-3af6-4a8a-a0c9-4bdf6ec3d0ce {"pid": "7980", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/277418216"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:35.120451 2024-09-11 09:08:35.120455 b8163c87-f605-4e9b-ac05-c51815bc2f2c {"pid": "7981", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279035152"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:35.190376 2024-09-11 09:08:35.190379 44dad344-f72e-4620-9530-f7e3009902bc {"pid": "7982", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279035160"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:35.250322 2024-09-11 09:08:35.250327 721f334a-e46d-4563-9c94-eb9a5062d50e {"pid": "7983", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279035179"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:35.31048 2024-09-11 09:08:35.310484 156490a6-b0b4-4fc4-bcc8-47cb4a59c263 {"pid": "7984", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279035187"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:35.3785 2024-09-11 09:08:35.378506 a4feea09-b634-408f-9721-16d80b891a07 {"pid": "7985", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307322"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:35.439352 2024-09-11 09:08:35.439355 751636f1-fae4-4007-99c7-1e6ad85492ba {"pid": "7986", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307330"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:35.49946 2024-09-11 09:08:35.499463 fe7dcd0d-731b-4b1a-abe9-ff021a985d36 {"pid": "7987", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307349"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:35.561239 2024-09-11 09:08:35.561244 3eddda6e-a623-48e5-969c-ad42e082544b {"pid": "7988", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307357"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:35.625076 2024-09-11 09:08:35.62508 f6e9f6a9-75d0-43f9-a50d-03eb4b2c6f48 {"pid": "7989", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307365"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:35.689798 2024-09-11 09:08:35.689802 e8641381-d7f8-435e-bb3d-1ce7f88f5684 {"pid": "7990", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307373"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:35.749042 2024-09-11 09:08:35.749047 c93688fa-8fbf-452e-9488-301a4384fbe7 {"pid": "7991", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307462"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:35.810357 2024-09-11 09:08:35.81036 19437f13-5f56-487b-a486-41593f898755 {"pid": "7992", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307470"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:35.870889 2024-09-11 09:08:35.870894 9e94dd72-46e5-46eb-8d66-7d7d81300c4c {"pid": "7993", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307519"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:35.93516 2024-09-11 09:08:35.935164 939aa95c-508b-471d-8a50-c826b1e3e6f9 {"pid": "7994", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307535"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:35.988052 2024-09-11 09:08:35.988056 0734bc58-641f-43a0-808a-9a0e8df952ec {"pid": "7995", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/27930756X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:36.051689 2024-09-11 09:08:36.051695 dd6dc992-21b2-4cfb-8246-3741e97999d1 {"pid": "7996", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307578"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:36.12021 2024-09-11 09:08:36.120214 2b030111-d8b0-4618-a466-6b52939270d9 {"pid": "7997", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307586"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:36.184057 2024-09-11 09:08:36.184062 29cac78f-01c3-4a54-836f-6887fceda5e8 {"pid": "7998", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307594"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:36.24614 2024-09-11 09:08:36.246145 acead1f7-02ad-46b5-9b93-37c4b5f9e788 {"pid": "7999", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307632"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:36.309107 2024-09-11 09:08:36.309111 4791b986-5e2a-4db3-9bc5-b544b9d5e278 {"pid": "8000", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307713"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:36.371338 2024-09-11 09:08:36.371344 a85e12dd-916d-48bf-afec-28881f390bba {"pid": "8001", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/27930773X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:36.435618 2024-09-11 09:08:36.435624 fa3d41d2-2cbf-4410-821f-fa1780941baf {"pid": "8002", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307748"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:36.491572 2024-09-11 09:08:36.491577 45d37919-535b-465b-8418-ed1566ebca91 {"pid": "8003", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307780"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:36.553814 2024-09-11 09:08:36.553816 f8a8a7ef-1ab5-4771-92d0-b317ab8425e3 {"pid": "8004", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307799"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:36.610072 2024-09-11 09:08:36.610076 b826eb4e-bef4-471b-beaa-ae4a33c951c9 {"pid": "8005", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307810"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:36.669086 2024-09-11 09:08:36.669093 7dd45acb-2c04-40bb-91fc-572baf273d05 {"pid": "8006", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307837"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:36.726956 2024-09-11 09:08:36.72696 9690dedc-dfd0-47ad-aa3b-1fdbb3299c01 {"pid": "8007", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307853"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:36.787131 2024-09-11 09:08:36.787136 f84fe3ed-c8b3-4aa0-b7d7-d792307c2a35 {"pid": "8008", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027222144"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:36.849831 2024-09-11 09:08:36.849835 a417ac6b-83f8-4058-8167-bf2e6e685acb {"pid": "8009", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027236897"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:36.919299 2024-09-11 09:08:36.919303 b747c812-ac62-4dff-ab54-74fffeec3bce {"pid": "8010", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027276457"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:36.979025 2024-09-11 09:08:36.979029 7b9759f2-9393-48c5-a0af-a16fea624a4f {"pid": "8011", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027307565"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:37.037747 2024-09-11 09:08:37.037749 302877af-f71a-401a-850d-9706e8295648 {"pid": "8012", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02767391X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:37.097063 2024-09-11 09:08:37.097066 75b6371e-39b1-4ef5-afe9-8af2b3fa96c4 {"pid": "8013", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027800512"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:37.163001 2024-09-11 09:08:37.163004 a4ac6933-1b47-40c2-9a86-515b8ab4bc2b {"pid": "8014", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02781971X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:37.23009 2024-09-11 09:08:37.230093 cb4ef189-16a1-449d-8258-b0b98be7909f {"pid": "8015", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/02787642X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:37.294024 2024-09-11 09:08:37.294028 c744bbf1-072a-4d30-a374-9ed98d6568d6 {"pid": "8016", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028374878"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:37.358472 2024-09-11 09:08:37.358477 542db0d6-d909-47c6-9d02-2e5ba7fb3133 {"pid": "8017", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/028932358"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:37.421259 2024-09-11 09:08:37.421262 a99b3123-1168-4867-a891-e8c9d8a52e81 {"pid": "8018", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/030120640"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:37.478081 2024-09-11 09:08:37.478083 2faf5a0b-c48a-49d3-9b1a-5fee119a8047 {"pid": "8019", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/03136795X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:37.541582 2024-09-11 09:08:37.541586 f179ad9f-cf9f-4109-aae8-c6f16d44e692 {"pid": "8020", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/033293074"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:37.601211 2024-09-11 09:08:37.601215 f1d12b9d-e4bf-4f09-a60e-4040dcaaab09 {"pid": "8021", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050174495"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:37.657966 2024-09-11 09:08:37.657971 78ee5278-9ba8-42a9-aee4-59e1613bb41e {"pid": "8022", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/06008989X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:37.71934 2024-09-11 09:08:37.719345 4d147631-a753-4b85-875c-b610290dd502 {"pid": "8023", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/061604496"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:37.784725 2024-09-11 09:08:37.784728 e0f62a32-a1cf-4e3e-b83c-84a892311e1d {"pid": "8024", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/178480231"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:37.841853 2024-09-11 09:08:37.841857 38b543a9-8663-410e-966c-ddd1fbc3ddd6 {"pid": "8025", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/238529495"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:37.900122 2024-09-11 09:08:37.900125 b3b53ef1-59d0-4e17-a326-0a4e60286cfb {"pid": "8026", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/263906442"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:37.957299 2024-09-11 09:08:37.957303 6ca89511-31d0-40ed-ba35-0c3110ddb6b9 {"pid": "8027", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/264225260"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:38.017092 2024-09-11 09:08:38.017094 4a3a3580-bdb1-46f1-af10-b0d4d9da5f8c {"pid": "8028", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/276037685"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:38.0738 2024-09-11 09:08:38.073805 91c55f12-44e0-41a3-9b9a-688a6fd3cbee {"pid": "8029", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278746896"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:38.131814 2024-09-11 09:08:38.131817 6103372a-fb10-489b-8ad5-f2a1746911ab {"pid": "8030", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278746918"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:38.195552 2024-09-11 09:08:38.195556 b1ab1c4d-9913-494b-be95-7603870811d5 {"pid": "8031", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278746926"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:38.256791 2024-09-11 09:08:38.256794 f04f5589-ae2b-4c78-bfba-7155d01d3a5c {"pid": "8032", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278746934"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:38.316781 2024-09-11 09:08:38.316786 e0222e6d-ffe2-4bb2-8c92-9ef9581f5572 {"pid": "8033", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278746942"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:38.368569 2024-09-11 09:08:38.368572 3bf02a1e-936c-4bff-b8b3-4f05b4649926 {"pid": "8034", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278746950"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:38.42547 2024-09-11 09:08:38.425474 1cd730ca-3c22-4c31-ae8f-9a84be95f9fc {"pid": "8035", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278746977"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:38.477414 2024-09-11 09:08:38.477419 1118e91d-07b0-4874-a95b-9a5482b05055 {"pid": "8036", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747027"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:38.532707 2024-09-11 09:08:38.53271 537f8b52-8884-4600-95d3-e307856433a5 {"pid": "8037", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747035"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:38.59199 2024-09-11 09:08:38.591995 162cfc01-26fc-4a56-b214-264fb4f8f69b {"pid": "8038", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747051"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:38.657544 2024-09-11 09:08:38.657547 eb842338-a60f-460d-8f30-9574d52a8370 {"pid": "8039", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/27874706X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:38.725049 2024-09-11 09:08:38.725053 65e6db2e-c92d-4c50-860f-cdca328ce195 {"pid": "8040", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747086"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:38.781846 2024-09-11 09:08:38.78185 512266e7-2a2e-483c-9b81-9dd9e7606da7 {"pid": "8041", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747094"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:38.843709 2024-09-11 09:08:38.843714 a5b28ae3-393d-4315-8828-f0da45628f59 {"pid": "8042", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747108"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:38.90062 2024-09-11 09:08:38.900627 bd3963ea-506d-4c1e-a9fc-86089ecb7972 {"pid": "8043", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747116"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:38.962088 2024-09-11 09:08:38.962093 1d965063-44d4-4706-a882-4f58871b12c8 {"pid": "8044", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747124"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:39.025256 2024-09-11 09:08:39.02526 76924892-17dc-42c5-a10a-c02f493e7c36 {"pid": "8045", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747132"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:39.084182 2024-09-11 09:08:39.084185 42d620d1-e6b2-4a31-a04d-b1152cecc703 {"pid": "8046", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747140"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:39.142682 2024-09-11 09:08:39.142686 469d375f-ed16-4822-878f-66e351a72616 {"pid": "8047", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747159"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:39.200108 2024-09-11 09:08:39.200111 35174538-9c05-47a1-b105-79b40cb48b03 {"pid": "8048", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747213"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:39.262507 2024-09-11 09:08:39.26251 f6e249fa-8da6-4f24-a847-4cec3e6500fc {"pid": "8049", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747221"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:39.318328 2024-09-11 09:08:39.318331 7dbde98d-92c3-4f47-b21e-12d85e0a70e7 {"pid": "8050", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747248"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:39.376547 2024-09-11 09:08:39.376552 c32e5812-a7f2-495f-a2db-2484b0111268 {"pid": "8051", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747256"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:39.438757 2024-09-11 09:08:39.438761 9a55d833-a9da-476f-a0fa-ccaafc796c95 {"pid": "8052", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747264"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:39.504614 2024-09-11 09:08:39.504619 19baa9ad-d6cb-467e-87b1-aaa524fc076e {"pid": "8053", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747272"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:39.561897 2024-09-11 09:08:39.561901 1f8cb497-61a9-4963-9eae-4c71d4dc50e4 {"pid": "8054", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747299"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:39.620892 2024-09-11 09:08:39.620895 4610c930-620c-4cb8-89cb-48d8ff6d3dd7 {"pid": "8055", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747302"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:39.678182 2024-09-11 09:08:39.678187 dbd68415-ae75-4cd4-b0dd-7d7c49a0363e {"pid": "8056", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034768"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:39.743868 2024-09-11 09:08:39.743872 dce3638e-b07f-4499-8a47-011b0aed0703 {"pid": "8057", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034776"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:39.816462 2024-09-11 09:08:39.816467 f5517235-13bf-4a2a-a706-634e2bf11908 {"pid": "8058", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034784"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:39.879295 2024-09-11 09:08:39.879299 c197e8db-e956-4dcd-81e5-784b5c5379b2 {"pid": "8059", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034792"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:39.935881 2024-09-11 09:08:39.935885 061a7431-e0cf-4a1e-a386-81651ab82d96 {"pid": "8060", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034865"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:40.049829 2024-09-11 09:08:40.049834 de89461f-0bed-4f82-96a1-06bf07793ec3 {"pid": "8061", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034873"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:40.109163 2024-09-11 09:08:40.109168 32e7ad3f-1672-4224-8a9a-0e48aa19dba5 {"pid": "8062", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/27903489X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:40.164699 2024-09-11 09:08:40.164703 bee38286-dee4-48fe-9135-e7ed3c42b28e {"pid": "8063", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034903"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:40.224122 2024-09-11 09:08:40.224126 ca7696e2-ab86-4844-833c-cfa734c13d7c {"pid": "8064", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279035039"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:40.283605 2024-09-11 09:08:40.283611 2e9d005f-1694-4d67-829e-8a5d7111882f {"pid": "8065", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027275639"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:40.346607 2024-09-11 09:08:40.346612 3938f1e5-4e38-40e1-9409-645b36963d45 {"pid": "8066", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027362434"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:40.406338 2024-09-11 09:08:40.406341 69fd6e9c-6b00-4fed-bb65-5cc1cd0ff7b5 {"pid": "8067", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027612163"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:40.463779 2024-09-11 09:08:40.463783 b73ef90f-da53-43f2-a3b1-2a5ce247f07c {"pid": "8068", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029385571"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:40.523947 2024-09-11 09:08:40.523951 a581230d-55bc-4073-9783-b50ad5b29c7a {"pid": "8069", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/029877555"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:40.582467 2024-09-11 09:08:40.582472 6e33e550-1d9d-43ab-8082-881ca02ff79d {"pid": "8070", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/033689725"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:40.646984 2024-09-11 09:08:40.646988 405beb1a-cb67-4f1a-99c3-ea83b6383222 {"pid": "8071", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/035381795"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:40.709727 2024-09-11 09:08:40.709731 07da1e59-64e9-4eaa-9bb7-f1ce2d5837f1 {"pid": "8072", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/174718276"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:40.779552 2024-09-11 09:08:40.779557 0e887b1d-47cf-4858-aedf-45aa0c71e252 {"pid": "8073", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/278747078"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:40.85106 2024-09-11 09:08:40.851063 650f558c-3ed5-489d-98c3-cc067991af79 {"pid": "8074", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279034954"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:40.91175 2024-09-11 09:08:40.911752 306b2639-00d2-4fdc-bb3a-e5f2c7fdd8ae {"pid": "8075", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307381"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:40.97131 2024-09-11 09:08:40.971313 d6bac467-88f0-46b0-943c-9af2c79381a0 {"pid": "8076", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/27930739X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:41.041752 2024-09-11 09:08:41.041756 505f3be3-4840-4849-bfd8-fd5f3e5a7c4e {"pid": "8077", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307403"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:41.097489 2024-09-11 09:08:41.097492 fd03a327-ddce-4c23-996e-e2e0bb553c03 {"pid": "8078", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307411"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:41.157149 2024-09-11 09:08:41.157151 b0d8ae1b-6e3f-42f0-beb8-67c3360db4ea {"pid": "8079", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/27930742X"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:41.221417 2024-09-11 09:08:41.221421 1ce22dd9-d2d1-439f-98b9-0a2a064e2699 {"pid": "8080", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307438"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:41.283813 2024-09-11 09:08:41.283818 59311b40-e6ad-4daf-812a-2629765e5169 {"pid": "8081", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307446"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:41.339991 2024-09-11 09:08:41.339995 2b88fcd1-089f-471e-8b63-65bb39879095 {"pid": "8082", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307454"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:41.395796 2024-09-11 09:08:41.3958 0eeb1924-c139-4b3e-9696-8ca0c3779876 {"pid": "8083", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307543"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:41.456903 2024-09-11 09:08:41.456908 3aa910fb-d004-4ee9-a227-be77ead5ab20 {"pid": "8084", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307608"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:41.551171 2024-09-11 09:08:41.551177 72f3f2da-2801-4dd5-a96e-a1983281b26a {"pid": "8085", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307616"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:41.612911 2024-09-11 09:08:41.612915 0137ccbc-3e3e-4daa-8bc1-242cba16c71f {"pid": "8086", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307640"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:41.675459 2024-09-11 09:08:41.675463 41eb3fac-793c-4302-bfac-abb8268549ec {"pid": "8087", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307659"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:41.745677 2024-09-11 09:08:41.745682 e90a2d28-8e75-4344-9822-58aa9a7e1b96 {"pid": "8088", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307667"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:41.812675 2024-09-11 09:08:41.812679 e8e07261-6a35-4a40-b449-91f448387398 {"pid": "8089", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307675"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:41.876327 2024-09-11 09:08:41.87633 33b99077-a3d6-4654-b506-e93c1b2e162c {"pid": "8090", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307683"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:41.935464 2024-09-11 09:08:41.935469 24636522-4bd6-46e7-9ef8-fdd92c03bbf2 {"pid": "8091", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307705"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:41.999794 2024-09-11 09:08:41.999799 a4f131c8-f68f-4983-ba46-3976bc70bb70 {"pid": "8092", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307721"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:42.057138 2024-09-11 09:08:42.057142 e146a576-c555-4c41-9d49-ebcdff8978e6 {"pid": "8093", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/279307756"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:43.963585 2024-09-11 09:08:43.963589 d10425ac-7454-4c6c-907f-19baf4f83379 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334542139"}, "pid": "8094", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:44.037022 2024-09-11 09:08:44.037026 4faa2e68-6fa9-41d6-8efe-dde292a07d16 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334538549"}, "pid": "8095", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:44.090275 2024-09-11 09:08:44.090278 446571b8-1c5a-4da2-b007-56ff86b8ab91 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334484775"}, "pid": "8096", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:44.147305 2024-09-11 09:08:44.147309 da8ee197-df49-4d7b-b78f-09aa14534122 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334336342"}, "pid": "8097", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:44.201596 2024-09-11 09:08:44.201601 dfff5b98-35fb-4c57-9a82-1355d8f1a807 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334320462"}, "pid": "8098", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:44.261108 2024-09-11 09:08:44.261111 60a760f6-7ca5-4c9a-b219-0e573aae4fe8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334314950"}, "pid": "8099", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:44.313236 2024-09-11 09:08:44.31324 aaf01e37-d975-483d-8483-246c4cb62a47 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334231826"}, "pid": "8100", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:44.364677 2024-09-11 09:08:44.36468 d4332a38-90af-4aea-babb-ac4c85f82f08 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334230463"}, "pid": "8101", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:44.417878 2024-09-11 09:08:44.417882 af7a5b54-9455-4bc2-8581-31c6c6ef4e38 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334227209"}, "pid": "8102", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:44.469011 2024-09-11 09:08:44.469014 57e918e5-2b5c-455b-b511-7ec0c69eb99c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334225907"}, "pid": "8103", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:44.522303 2024-09-11 09:08:44.522308 c6502658-c395-46d3-9dbc-2d9833ce09c6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334131074"}, "pid": "8104", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:44.572725 2024-09-11 09:08:44.572729 2d1d0489-153d-41f1-b2a0-9771bd2061f4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334127158"}, "pid": "8105", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:44.626772 2024-09-11 09:08:44.626776 7096b333-eba2-4a84-a239-5da4b87dd4cd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334091412"}, "pid": "8106", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:44.682464 2024-09-11 09:08:44.682469 106fbaa2-95b5-4715-9452-8d4d0e5a2279 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334089663"}, "pid": "8107", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:44.740262 2024-09-11 09:08:44.740266 bcc13b8d-cde6-44ed-babf-357ab69ce56d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334088837"}, "pid": "8108", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:44.799925 2024-09-11 09:08:44.79993 6c4a1846-9aa1-49c8-b87c-9dfbec61caef {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334088217"}, "pid": "8109", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:44.849932 2024-09-11 09:08:44.849937 be56b150-3641-4243-84d0-184bc7b4ee96 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334087156"}, "pid": "8110", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:44.903412 2024-09-11 09:08:44.903417 af40cc61-0f40-43c1-987b-ff6389c4d462 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133400076X"}, "pid": "8111", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:44.982704 2024-09-11 09:08:44.982709 671d985a-4f83-4bc8-93bd-c35db9b9350e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333993331"}, "pid": "8112", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:45.036755 2024-09-11 09:08:45.036759 40358686-21c0-4928-a292-39dc29d109a5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333992548"}, "pid": "8113", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:45.087589 2024-09-11 09:08:45.087593 d8732b02-2086-450b-8885-c23e5047d799 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333987366"}, "pid": "8114", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:45.139221 2024-09-11 09:08:45.139224 82b0764e-767a-4a1a-871e-5e0b0430b6e1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133396420X"}, "pid": "8115", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:45.191608 2024-09-11 09:08:45.191613 6afe42e2-6e62-4c33-a9d1-b8cd3650b838 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333876874"}, "pid": "8116", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:45.24253 2024-09-11 09:08:45.242533 877de846-29e4-409e-8d8c-63b1947ab940 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333855907"}, "pid": "8117", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:45.294649 2024-09-11 09:08:45.294652 d36ef08f-e340-49c5-b133-e56b7e0507f2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133385501X"}, "pid": "8118", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:45.345284 2024-09-11 09:08:45.345288 619a6a29-1295-47c5-9df7-c24ceba3aab4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333853084"}, "pid": "8119", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:45.443352 2024-09-11 09:08:45.443356 e364e1b8-b7f0-4a8e-81da-c1816758eceb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333852673"}, "pid": "8120", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:45.498046 2024-09-11 09:08:45.49805 83c812da-0ea6-4e85-be45-5bee1169b241 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333849788"}, "pid": "8121", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:45.552359 2024-09-11 09:08:45.552363 48bce065-3d03-40ea-9705-df22f1e7bdd1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333849435"}, "pid": "8122", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:45.602997 2024-09-11 09:08:45.603002 50758d2d-d208-4fad-9798-1d39c4e24504 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333729863"}, "pid": "8123", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:45.656392 2024-09-11 09:08:45.656396 4825f50b-8a24-4716-b812-a70e737a4d1f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333716354"}, "pid": "8124", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:45.707315 2024-09-11 09:08:45.70732 c07cf68d-09ec-4382-a7e9-9732989839d6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333566352"}, "pid": "8125", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:45.759403 2024-09-11 09:08:45.759408 2b32c6b0-e50b-4c6c-b43f-8a6e14ca9e19 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333421427"}, "pid": "8126", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:45.813498 2024-09-11 09:08:45.813502 b8e916f2-904c-4936-afc0-dfe8104e5749 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333376049"}, "pid": "8127", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:45.862665 2024-09-11 09:08:45.862668 67f55fc2-bd47-476d-af2e-f87502b7ac5a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133335245X"}, "pid": "8128", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:45.913922 2024-09-11 09:08:45.913927 4ed6df4c-1cbc-4fca-91dd-f4f1efe2af9b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333352085"}, "pid": "8129", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:45.963273 2024-09-11 09:08:45.963277 fc96b1d0-d347-4432-b487-4c87c523391f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333331002"}, "pid": "8130", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:46.016979 2024-09-11 09:08:46.016984 f0ed98e3-042e-49dd-9ad8-fd9ecca04fde {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333323778"}, "pid": "8131", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:46.076794 2024-09-11 09:08:46.076798 041d6505-e990-4f5b-97c4-733bba03531c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333312415"}, "pid": "8132", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:46.138406 2024-09-11 09:08:46.13841 bacecb28-ad9b-4c88-b487-0c3215ccaffd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333312326"}, "pid": "8133", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:46.203928 2024-09-11 09:08:46.203933 65dbdc7e-628e-4eff-bb25-e2dca1bc5654 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333270267"}, "pid": "8134", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:46.272999 2024-09-11 09:08:46.273002 56167e5f-d456-4a91-b3a2-160bc4ad90e2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133326514X"}, "pid": "8135", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:46.328679 2024-09-11 09:08:46.328681 64aef07b-97da-45da-af0c-0be8274b2b25 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333260830"}, "pid": "8136", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:46.377264 2024-09-11 09:08:46.377268 bc9af770-4dde-460d-beff-2fd8f44628fe {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333256302"}, "pid": "8137", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:46.425243 2024-09-11 09:08:46.425247 cc952789-f2f1-4af9-83a3-d77f33d9d117 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133325590X"}, "pid": "8138", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:46.474967 2024-09-11 09:08:46.474971 3c932e6f-b26c-4a0c-b3ee-9ec9d6280baf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333255616"}, "pid": "8139", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:46.522757 2024-09-11 09:08:46.52276 a37fa583-58b3-473e-afa8-2f4a04f1baf2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333210043"}, "pid": "8140", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:46.573458 2024-09-11 09:08:46.573461 bc960a1f-10f5-4d1e-a1e6-2ba5d2db2c4c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333209908"}, "pid": "8141", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:46.626718 2024-09-11 09:08:46.626723 99167645-ba8b-47ee-8170-7bc9f3375ad1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333208901"}, "pid": "8142", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:46.6794 2024-09-11 09:08:46.679404 76d4a336-66d7-413c-866f-dddefb392c5a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333141017"}, "pid": "8143", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:46.730043 2024-09-11 09:08:46.730047 4ff53093-14be-47ae-bb0a-7fa92302af08 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333125127"}, "pid": "8144", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:46.782699 2024-09-11 09:08:46.782702 a789eaf6-cb22-4ade-bbe4-8c43c9952ffa {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333119267"}, "pid": "8145", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:46.839643 2024-09-11 09:08:46.839647 35fa0fae-f07e-4a37-9ab8-438d3e83600a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333118023"}, "pid": "8146", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:46.891811 2024-09-11 09:08:46.891816 9e32991b-1d20-4516-b55a-2cb26118cbf1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333117329"}, "pid": "8147", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:46.951346 2024-09-11 09:08:46.951349 6b4f1151-06d1-4212-9131-b2674bb5c0a7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333115881"}, "pid": "8148", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:47.003282 2024-09-11 09:08:47.003286 6b035e31-d405-47a9-b7eb-39967243473c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333113749"}, "pid": "8149", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:47.055664 2024-09-11 09:08:47.055667 64bcd8fb-06ab-4645-b2b2-a0a87c2ffc0c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333065841"}, "pid": "8150", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:47.107854 2024-09-11 09:08:47.107857 9d20c3d2-33c0-4207-8336-dc3f3a0f883e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333064136"}, "pid": "8151", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:47.161468 2024-09-11 09:08:47.161472 a3db7a1a-2bb4-4df1-b373-70753718d035 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333063970"}, "pid": "8152", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:47.220392 2024-09-11 09:08:47.220395 509e98c5-32f6-4162-b345-1d0ba0c3340d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333063717"}, "pid": "8153", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:47.270985 2024-09-11 09:08:47.270989 22db0990-a20b-47df-bb82-1ad5e5ae7f00 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133306179X"}, "pid": "8154", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:47.326279 2024-09-11 09:08:47.326284 548499ae-f8cc-4b1c-b2fd-00973c3a45fc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333037414"}, "pid": "8155", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:47.382882 2024-09-11 09:08:47.382886 3f7bb910-c41f-4e7b-8f95-548e26c7c5ac {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333027249"}, "pid": "8156", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:47.444447 2024-09-11 09:08:47.444452 4bfa4792-180c-4a6f-ae44-731767d7475d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332990258"}, "pid": "8157", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:47.501641 2024-09-11 09:08:47.501646 cb25e36f-cbe7-4357-a20a-a8998330b444 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332899730"}, "pid": "8158", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:47.549949 2024-09-11 09:08:47.549954 d6a9bca8-fcf1-4853-8e71-e3e0755b878c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332895018"}, "pid": "8159", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:47.604889 2024-09-11 09:08:47.604892 759c0155-d6e1-4fb0-b13b-af73cfabf364 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332889549"}, "pid": "8160", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:47.65997 2024-09-11 09:08:47.659974 93f162ea-861a-46df-81cc-efaec7b16aec {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332775381"}, "pid": "8161", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:47.710372 2024-09-11 09:08:47.710376 78a042db-b459-4285-aefa-d1b3d2bc8a75 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332774113"}, "pid": "8162", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:47.763818 2024-09-11 09:08:47.763821 c4108445-4957-49b8-aee1-1c5f7666f1a3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133276648X"}, "pid": "8163", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:47.816579 2024-09-11 09:08:47.816584 d2afbe69-6d1c-4cc2-8628-08a57b4036dc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332759254"}, "pid": "8164", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:47.872458 2024-09-11 09:08:47.872461 7b1982ac-be69-406d-b2b6-d79f1311af81 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332688047"}, "pid": "8165", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:47.921325 2024-09-11 09:08:47.921328 40492d38-419e-4dff-b79f-639868f755f7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332661297"}, "pid": "8166", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:47.968437 2024-09-11 09:08:47.968442 558508cc-31ef-4eac-b555-396ebf372cce {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332657273"}, "pid": "8167", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:48.021699 2024-09-11 09:08:48.021702 81611f07-42ec-4081-99e4-bf12ae789eec {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332649688"}, "pid": "8168", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:48.076426 2024-09-11 09:08:48.076431 33d13c39-b126-474a-a97f-58d15407cd88 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332459587"}, "pid": "8169", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:48.131186 2024-09-11 09:08:48.13119 564fee23-c438-47f7-a719-f91825171668 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332430376"}, "pid": "8170", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:48.183318 2024-09-11 09:08:48.183325 67790500-b791-47e3-a19d-0e5c64abb754 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332426751"}, "pid": "8171", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:48.236681 2024-09-11 09:08:48.236687 9b3bf4d6-b14d-4e20-8802-24ae3d50ea2c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332365841"}, "pid": "8172", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:48.29184 2024-09-11 09:08:48.291844 24c4b680-7e4d-462d-88a2-495820d5825f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332318142"}, "pid": "8173", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:48.343196 2024-09-11 09:08:48.3432 04b5063a-64b0-4085-a3d2-ed5e8c8c5da9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332111971"}, "pid": "8174", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:48.397727 2024-09-11 09:08:48.397731 5d69aa2a-f617-4ed5-a0d5-5d09a5cdc50e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332095119"}, "pid": "8175", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:48.447077 2024-09-11 09:08:48.447081 b9c9bb74-039b-4dce-b58d-09fca9daccae {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133197612X"}, "pid": "8176", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:48.502714 2024-09-11 09:08:48.502717 03c30212-8bd9-43df-bae1-625f73d97cb2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133197593X"}, "pid": "8177", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:48.556193 2024-09-11 09:08:48.556196 9df4c7bb-458f-447b-82bf-91dbe7ce2952 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331975794"}, "pid": "8178", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:48.609761 2024-09-11 09:08:48.609765 b054e210-a693-438e-ba39-779a4745c500 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331886929"}, "pid": "8179", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:48.661985 2024-09-11 09:08:48.661989 a2362f09-4704-4128-b999-36fb675de766 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331876540"}, "pid": "8180", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:48.728908 2024-09-11 09:08:48.728913 bfa351e7-78e2-497d-8569-d179517ba65f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331840627"}, "pid": "8181", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:48.792341 2024-09-11 09:08:48.792346 3d805579-2afc-415d-a640-7dc16a5e864e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331747716"}, "pid": "8182", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:48.84654 2024-09-11 09:08:48.846544 46abfcc5-8cee-46a6-ab8b-f9acdea882de {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331734126"}, "pid": "8183", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:48.902848 2024-09-11 09:08:48.902855 05ca5d4e-b067-45bb-b2ca-cf7e91f485bb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331734045"}, "pid": "8184", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:48.956752 2024-09-11 09:08:48.956755 35c70fde-afdf-41cc-9304-b50cd677d957 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331733316"}, "pid": "8185", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:49.008956 2024-09-11 09:08:49.008961 c6463c3d-a1fb-4116-a5eb-49966157eac5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331723361"}, "pid": "8186", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:49.061381 2024-09-11 09:08:49.061386 74af14e8-e01a-4a07-b878-6f50222acb83 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331719054"}, "pid": "8187", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:49.114016 2024-09-11 09:08:49.11402 8dc68807-a138-4906-8df4-fa6569e1acfb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331717353"}, "pid": "8188", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:49.168408 2024-09-11 09:08:49.168413 9f50a182-4fdf-49be-9117-22368d41d705 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331710464"}, "pid": "8189", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:49.232073 2024-09-11 09:08:49.232077 83c6990a-bffe-40e9-ab5a-795b5534a033 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331704014"}, "pid": "8190", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:49.292365 2024-09-11 09:08:49.292369 0fe455be-f7c0-4b60-ba56-e4ae71122f70 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331614392"}, "pid": "8191", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:49.346758 2024-09-11 09:08:49.346762 c0d791de-3a20-4320-a20c-b4e50fdba657 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331613426"}, "pid": "8192", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:49.399916 2024-09-11 09:08:49.39992 167b087f-8ce2-440a-9566-cb041bce0238 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331605164"}, "pid": "8193", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:49.458156 2024-09-11 09:08:49.45816 80c96ea2-5bc4-4993-980b-e5688b6c8ee3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331605091"}, "pid": "8194", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:49.511136 2024-09-11 09:08:49.511139 7b076c24-23fd-4a6f-85ab-0434445c2d13 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331604893"}, "pid": "8195", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:49.565795 2024-09-11 09:08:49.565799 3ba6f3bc-cc84-4d3a-8a84-d343bd2888a5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331603897"}, "pid": "8196", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:49.625433 2024-09-11 09:08:49.625437 a0bdf3d1-75ec-4594-9f91-29110484dd54 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331594014"}, "pid": "8197", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:49.678997 2024-09-11 09:08:49.679 2c379b53-5c3e-4475-a374-4b6e170861f4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331592208"}, "pid": "8198", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:49.732618 2024-09-11 09:08:49.732622 8492095b-e29b-450b-ba55-adcd47a4a0b6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331584167"}, "pid": "8199", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:49.788702 2024-09-11 09:08:49.788705 71bc665d-af59-4528-bd28-6791da28272b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331530806"}, "pid": "8200", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:49.860085 2024-09-11 09:08:49.860089 b35f659f-94d4-4511-a8c6-df2e0480961e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331496918"}, "pid": "8201", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:49.91509 2024-09-11 09:08:49.915094 727510f8-3734-4dc7-93c9-3d875c9968d6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331482941"}, "pid": "8202", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:49.970128 2024-09-11 09:08:49.970133 4472049b-f503-443b-ba25-698aefe645e9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331380073"}, "pid": "8203", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:50.031189 2024-09-11 09:08:50.031193 d670d9cc-01da-4fcd-a51e-2b803bd5263a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331102170"}, "pid": "8204", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:50.087522 2024-09-11 09:08:50.087526 83f0c461-42ad-4484-9e28-2f3512e33ee7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330854640"}, "pid": "8205", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:50.138486 2024-09-11 09:08:50.138489 369dfa01-ed3c-4209-86cb-8f2e441d8045 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330843584"}, "pid": "8206", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:50.191414 2024-09-11 09:08:50.191419 23db87a9-0981-4fd0-8aa8-4b7f66ec841b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330586557"}, "pid": "8207", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:50.25097 2024-09-11 09:08:50.250974 f1fc0b07-3ce0-4194-9a6b-9b580e2c1dd1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330586271"}, "pid": "8208", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:50.311248 2024-09-11 09:08:50.311251 15c71fdb-1ad5-41f9-af69-0281ed673952 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330585992"}, "pid": "8209", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:50.367271 2024-09-11 09:08:50.367276 195df9a6-1de8-40f5-be60-a85ad052d70e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330585747"}, "pid": "8210", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:50.421444 2024-09-11 09:08:50.421447 680ca2d1-1ca3-41aa-b431-4f245c346975 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330447611"}, "pid": "8211", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:50.472929 2024-09-11 09:08:50.472933 75d7fbb9-7e31-4b50-8166-7a8f1f420c65 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330433858"}, "pid": "8212", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:50.530617 2024-09-11 09:08:50.530621 b1688a2d-767e-470d-9ff3-3135ef9e63bf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330430964"}, "pid": "8213", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:50.58465 2024-09-11 09:08:50.584654 0ebc0b68-bcd8-4d1c-9058-d00690189318 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330343085"}, "pid": "8214", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:50.64212 2024-09-11 09:08:50.642124 5536f4f6-c200-4a82-bad8-93b8524bf868 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330186664"}, "pid": "8215", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:50.694308 2024-09-11 09:08:50.694313 bb46cbe2-71a6-4387-a3d5-93b341d58ab2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1329650123"}, "pid": "8216", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:50.746696 2024-09-11 09:08:50.746702 e0344993-2cbd-45fa-bb44-e066c8e5f31e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1329573331"}, "pid": "8217", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:50.801562 2024-09-11 09:08:50.801568 b9427ce9-9943-4d6a-85fd-f2ea99d31097 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1329325958"}, "pid": "8218", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:50.852063 2024-09-11 09:08:50.852066 873d03c4-e2d6-4d1e-a405-ee8e38d697bd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1328905152"}, "pid": "8219", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:50.907791 2024-09-11 09:08:50.907796 78dbc407-c3ec-48f6-9184-2be413041c10 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1328159116"}, "pid": "8220", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:50.964142 2024-09-11 09:08:50.964148 70973f6a-839b-446b-89b4-cd5375715a1f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1328114813"}, "pid": "8221", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:51.024745 2024-09-11 09:08:51.024749 9514b0ae-7dd1-40bf-bfac-e458d9961c04 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1326598325"}, "pid": "8222", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:51.083152 2024-09-11 09:08:51.083158 d71070f4-73f9-426d-ae57-b375a25b7fdb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1325970743"}, "pid": "8223", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:51.136157 2024-09-11 09:08:51.136161 efeff1de-4c10-4136-beac-12428fd67e11 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1325836214"}, "pid": "8224", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:51.203157 2024-09-11 09:08:51.203162 5f2b4b48-aa4f-4878-b995-af968311c33b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1325526541"}, "pid": "8225", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:51.261954 2024-09-11 09:08:51.261957 7cb2509c-156a-412a-bde7-7fac738e68b2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1324473703"}, "pid": "8226", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:51.313753 2024-09-11 09:08:51.313757 e9bb1017-1a02-4876-a8a3-9b117a0ef7de {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1324101571"}, "pid": "8227", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:51.363002 2024-09-11 09:08:51.363006 9c9b6349-410a-43bb-93df-2d2d68e01f34 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1322498083"}, "pid": "8228", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:51.419518 2024-09-11 09:08:51.419522 33af17ab-9af4-4a72-82c2-7256b3984d27 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1321930690"}, "pid": "8229", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:51.471364 2024-09-11 09:08:51.47137 69805ccf-c64e-4531-9fc4-7bdfdc91c5da {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1321369956"}, "pid": "8230", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:51.523722 2024-09-11 09:08:51.523726 7577143d-cc9a-4c8f-a904-b43cd9c821fb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1321325754"}, "pid": "8231", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:51.57712 2024-09-11 09:08:51.577124 5f6e1f35-73de-439d-addb-efb1d40d66d9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/132121202X"}, "pid": "8232", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:51.632107 2024-09-11 09:08:51.63211 17dffd88-3e6f-4f83-918e-41deb7624ba7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1319608302"}, "pid": "8233", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:51.683354 2024-09-11 09:08:51.68336 f4850d94-83c6-456b-8c57-6b4e26184e2d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1319352146"}, "pid": "8234", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:51.739443 2024-09-11 09:08:51.739447 c2a79950-84fa-420b-906e-262eff10a1b2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1318875676"}, "pid": "8235", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:51.798853 2024-09-11 09:08:51.798856 d72578be-cc59-458b-919f-9b73b010b83f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1318600871"}, "pid": "8236", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:51.857527 2024-09-11 09:08:51.857531 31bbc7e5-1a54-482f-b703-a23322973c23 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1318529573"}, "pid": "8237", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:51.910496 2024-09-11 09:08:51.910499 72730daa-ba69-4a9b-b90c-3d61533d177d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1315438240"}, "pid": "8238", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:51.966004 2024-09-11 09:08:51.966009 4cfb075e-ea1a-46e0-8121-a70bf4e3ef00 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1315344238"}, "pid": "8239", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:52.024177 2024-09-11 09:08:52.024181 94287ebe-fe43-42bf-9d62-70baf8203a3a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1315166526"}, "pid": "8240", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:52.079396 2024-09-11 09:08:52.0794 3bb259c3-b447-4572-b905-7184b78cfa62 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1314207296"}, "pid": "8241", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:52.134577 2024-09-11 09:08:52.134582 a3a3ec56-a851-4405-8f30-20b910a73f37 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1314016547"}, "pid": "8242", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:52.188826 2024-09-11 09:08:52.188829 df6ef305-0622-42a6-85f0-661c2c08ce3c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1314016032"}, "pid": "8243", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:52.242807 2024-09-11 09:08:52.242812 964e13ca-27b7-4ab4-a2f7-c5dabd90299c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1311509100"}, "pid": "8244", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:52.297552 2024-09-11 09:08:52.297556 d33d62c3-cce9-4ecf-8976-d675ae9ef551 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/131143609X"}, "pid": "8245", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:52.350922 2024-09-11 09:08:52.350927 dd80b8b9-a795-4e47-83a5-63d6686076bf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1311352430"}, "pid": "8246", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:52.406556 2024-09-11 09:08:52.406561 81fb0382-3a1a-4ec9-9ffb-b6acd3bcd836 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1310159343"}, "pid": "8247", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:52.471876 2024-09-11 09:08:52.471883 75b89fc5-879a-4f28-841c-466109c00ee8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/130899687X"}, "pid": "8248", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:52.531951 2024-09-11 09:08:52.531955 abbc3251-dae5-4f3e-87d3-09f081fb2f93 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1308455038"}, "pid": "8249", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:52.585942 2024-09-11 09:08:52.585945 e7089972-1d18-4b24-b47a-e685fe71365c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1305992857"}, "pid": "8250", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:52.643318 2024-09-11 09:08:52.643321 2c5421f8-f963-4f67-80c4-eba9b233e042 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1302496050"}, "pid": "8251", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:52.711734 2024-09-11 09:08:52.711738 d560d133-db85-40c5-b726-2262498de7b0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/129922539X"}, "pid": "8252", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:52.770794 2024-09-11 09:08:52.770799 f4422a86-95b2-4dff-923b-3711e0e80065 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1298858054"}, "pid": "8253", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:52.823209 2024-09-11 09:08:52.823212 bbb039f4-48ed-466b-9140-274c1a040738 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1298312817"}, "pid": "8254", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:52.873991 2024-09-11 09:08:52.873995 edd7bbc9-febf-46e3-8026-92c59cdb0eab {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1297822668"}, "pid": "8255", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:52.927768 2024-09-11 09:08:52.927772 58b0b476-4ab2-4705-8c21-42964112ae23 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1295539519"}, "pid": "8256", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:52.986525 2024-09-11 09:08:52.986528 f88e54bf-be6b-42c2-a245-e289a2b521db {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1293306673"}, "pid": "8257", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:53.04189 2024-09-11 09:08:53.041895 87e3eb5b-1999-40ee-bb61-9626ecff24fe {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1283002477"}, "pid": "8258", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:53.097394 2024-09-11 09:08:53.097399 5edecaa6-4168-4b00-be22-a6afe03a2d8d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/127857025X"}, "pid": "8259", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:53.151714 2024-09-11 09:08:53.151718 e23fcfd9-d0b2-4332-99af-b16a5dee3061 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1278063730"}, "pid": "8260", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:53.207067 2024-09-11 09:08:53.20707 643ce590-bf15-4925-a089-4fe74ae90591 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1277678871"}, "pid": "8261", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:53.259075 2024-09-11 09:08:53.25908 86f2306b-8dec-4b28-8534-df3b3ad908c4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1277560676"}, "pid": "8262", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:53.313284 2024-09-11 09:08:53.313288 065c8ecc-5e01-4dbf-b8d9-675cbf83bcd8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1276707304"}, "pid": "8263", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:53.366129 2024-09-11 09:08:53.366132 53a744a5-685f-4010-a991-7ea92c458028 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1276176597"}, "pid": "8264", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:53.424889 2024-09-11 09:08:53.424893 d3fc2b06-5f4c-46fd-aba6-40c2fef5cd66 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1275619533"}, "pid": "8265", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:53.480663 2024-09-11 09:08:53.480666 913cb3ad-a470-4739-8d22-867d7e21be69 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1275172962"}, "pid": "8266", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:53.536143 2024-09-11 09:08:53.536146 8442003d-68b4-4b9e-b39f-23df79c931e4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1274948169"}, "pid": "8267", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:53.603222 2024-09-11 09:08:53.603227 6356d037-5599-43d9-b06e-0076b4033e0f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1274269121"}, "pid": "8268", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:53.661085 2024-09-11 09:08:53.661091 da118a1e-c2fc-40cd-86ec-b16f83c307f4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1273395077"}, "pid": "8269", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:53.716168 2024-09-11 09:08:53.716173 204f1db4-ff14-4f1d-8f76-c29e31e52b9d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1273298268"}, "pid": "8270", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:53.770844 2024-09-11 09:08:53.770849 b871c8f9-cb10-41f4-8089-820dc7d74adc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1273295374"}, "pid": "8271", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:53.825364 2024-09-11 09:08:53.825368 a5d7500a-53d5-4f03-b7eb-413d00c6b23f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1270459880"}, "pid": "8272", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:53.87736 2024-09-11 09:08:53.877363 e31e1489-d150-4406-aa13-97d7507c55f5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1268867829"}, "pid": "8273", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:53.932349 2024-09-11 09:08:53.932352 8738a5b4-567c-47a8-9000-002696283c06 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1267608781"}, "pid": "8274", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:53.991383 2024-09-11 09:08:53.991387 5952f024-36b4-4c36-b0b1-bff2c47f69f2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1267608366"}, "pid": "8275", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:54.050334 2024-09-11 09:08:54.05034 e755f942-2d87-4a7f-b730-ce5ea7ac82e8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1267358122"}, "pid": "8276", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:54.108245 2024-09-11 09:08:54.108249 100b8347-6f7e-4d33-aee8-5c760a289b16 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1266800611"}, "pid": "8277", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:54.162947 2024-09-11 09:08:54.162952 b582ae7e-f3ac-42f5-b4ae-d2675bb853a4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1266799931"}, "pid": "8278", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:54.226091 2024-09-11 09:08:54.226094 be79a697-8c92-4f1e-8d8d-fef580dab7bb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1264956134"}, "pid": "8279", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:54.286766 2024-09-11 09:08:54.28677 91195108-b898-47f7-84bd-a2694d4b4bbf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1262928265"}, "pid": "8280", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:54.342774 2024-09-11 09:08:54.342777 d3ef7a77-16b8-40a7-a457-119b7582adfe {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1261933737"}, "pid": "8281", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:54.405061 2024-09-11 09:08:54.405065 0b655a57-e7ad-4320-ad57-dbd7363136e8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1259460460"}, "pid": "8282", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:54.4652 2024-09-11 09:08:54.465203 6f3154c5-37ac-495c-bc47-67b1a66a2283 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1258881675"}, "pid": "8283", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:54.520231 2024-09-11 09:08:54.520235 e23d5ca6-80f7-43f2-a5c8-61bd9d0e81a4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/125746423X"}, "pid": "8284", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:54.575855 2024-09-11 09:08:54.575859 cf9faa5a-ab18-4fcf-b46d-19326191cdd0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1257346415"}, "pid": "8285", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:54.63472 2024-09-11 09:08:54.634724 84b0369c-e0d6-4a1c-87b0-ff56e085cea5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1257092804"}, "pid": "8286", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:54.700887 2024-09-11 09:08:54.700893 01d023ec-958d-429f-abe9-a357758788b8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1254569642"}, "pid": "8287", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:54.767684 2024-09-11 09:08:54.767688 8e62c4cf-58e6-4555-9506-8a5c060c6de6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1254535594"}, "pid": "8288", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:54.825286 2024-09-11 09:08:54.82529 4b56cbb2-acc2-490d-a34b-54800ac5ce89 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1253837457"}, "pid": "8289", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:54.879879 2024-09-11 09:08:54.879883 b9dd1749-8a29-4b79-bdb4-b0ecc5fcfa25 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1252827512"}, "pid": "8290", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:54.934866 2024-09-11 09:08:54.934869 cc9e6072-f0cd-4eab-bafe-fead4875cbe8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1252257295"}, "pid": "8291", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:54.989667 2024-09-11 09:08:54.98967 808db494-8535-450e-ba5b-52a360e5ba4b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1251536492"}, "pid": "8292", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:55.048318 2024-09-11 09:08:55.048322 b628f1f6-90f0-4770-81b2-3f0761764987 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1250258731"}, "pid": "8293", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:55.102739 2024-09-11 09:08:55.102744 eb692926-439a-4b36-bddb-f252968c1ccb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/124994516X"}, "pid": "8294", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:55.16125 2024-09-11 09:08:55.161254 2c1dbccd-dfa5-4603-9125-2e3a652ec825 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1249112877"}, "pid": "8295", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:55.222437 2024-09-11 09:08:55.222441 53203182-9086-4fe8-881d-d94b0eb1f72f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1248945506"}, "pid": "8296", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:55.298034 2024-09-11 09:08:55.298038 338cfc4a-b19f-4347-b29a-26c78f76029a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1247639401"}, "pid": "8297", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:55.353279 2024-09-11 09:08:55.353282 5a4a8ea5-4c3a-4770-b279-3f795156617a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1246126877"}, "pid": "8298", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:55.405511 2024-09-11 09:08:55.405514 154b6657-d41b-4548-8cee-da66fc8332be {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/124608841X"}, "pid": "8299", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:55.459567 2024-09-11 09:08:55.459571 cf5788ef-9855-41ae-8a80-3dbf076739f7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1241975299"}, "pid": "8300", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:55.522035 2024-09-11 09:08:55.522038 9d0441da-7dfb-4ca9-993b-d6a260538c68 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1234514702"}, "pid": "8301", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:55.622561 2024-09-11 09:08:55.622565 441f4ae6-3501-46c2-8946-cb5d7407cc45 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1232346071"}, "pid": "8302", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:55.676755 2024-09-11 09:08:55.676759 ab37b96b-1734-4409-bfc4-81546a7e00fb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1228154325"}, "pid": "8303", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:55.733917 2024-09-11 09:08:55.733921 927be1a2-8f51-4dd2-ab2b-2bfcee53616f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1225893461"}, "pid": "8304", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:55.792767 2024-09-11 09:08:55.792771 c1e07b51-dd75-4807-9470-2b8e812a3474 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1219598135"}, "pid": "8305", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:55.85773 2024-09-11 09:08:55.857735 870f7fa7-ed8d-4bc5-be99-8f6eb5def22f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1210456753"}, "pid": "8306", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:55.915351 2024-09-11 09:08:55.915355 9e70a815-31f4-48b5-bc80-cb564441cd4a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1202575048"}, "pid": "8307", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:55.971353 2024-09-11 09:08:55.971359 15d197ef-3564-408c-8650-7f94138fb9f7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1201330661"}, "pid": "8308", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:56.03406 2024-09-11 09:08:56.034065 e3ed219c-024f-48f9-9f08-9ab78ab5ca6f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1199404365"}, "pid": "8309", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:56.086371 2024-09-11 09:08:56.086377 effe939a-207c-4509-8eaa-93a7bef685ba {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1198723262"}, "pid": "8310", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:56.142403 2024-09-11 09:08:56.142407 024f3cf9-22cb-4b19-a335-9d9ca332388d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1191508781"}, "pid": "8311", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:56.197875 2024-09-11 09:08:56.19788 5d9d1f13-7cd1-458f-b86d-b14fa86fff1e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1188589024"}, "pid": "8312", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:56.255139 2024-09-11 09:08:56.255141 5cc8cb73-5b32-4470-9520-b749fd26bf9d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1183863349"}, "pid": "8313", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:56.310952 2024-09-11 09:08:56.310955 37d58990-26fa-4bb3-880e-09716bfaa1da {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1181268311"}, "pid": "8314", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:56.367131 2024-09-11 09:08:56.367134 145f3e67-400c-4a80-a418-e1c671e73142 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1181007100"}, "pid": "8315", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:56.427358 2024-09-11 09:08:56.427361 fb8ac5c8-904a-437e-9bd9-063b2b921ee9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1173842845"}, "pid": "8316", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:56.485402 2024-09-11 09:08:56.485407 10fc4ffc-44b6-44a6-ba08-4bbd4b481923 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1173062238"}, "pid": "8317", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:56.54426 2024-09-11 09:08:56.544264 197dd5a1-6062-4814-bfd6-a2477b6d50ff {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1172567794"}, "pid": "8318", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:56.601096 2024-09-11 09:08:56.601101 7939cdfd-5cb9-4251-b6cc-70c7f1c46edc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1166161722"}, "pid": "8319", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:56.656431 2024-09-11 09:08:56.656435 03ad4262-0797-4625-96b9-265da4aa66e1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1165352362"}, "pid": "8320", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:56.716908 2024-09-11 09:08:56.716913 be0ebe57-8e2f-4dd9-afc5-15c0ac03b3e7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1165347768"}, "pid": "8321", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:56.770055 2024-09-11 09:08:56.77006 4d467020-8c7c-4ad1-b858-61100e7fd28d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1162072040"}, "pid": "8322", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:56.826619 2024-09-11 09:08:56.826623 14576877-17f9-4b1d-9a70-9ffc3cbcac70 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1161142878"}, "pid": "8323", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:56.882221 2024-09-11 09:08:56.882226 71e2f3b2-a8db-4ff8-9011-7b20e6fe09ed {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1155851412"}, "pid": "8324", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:56.937953 2024-09-11 09:08:56.937958 b79fd861-f5c6-47ce-a8ea-90b62acbc84c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1155424573"}, "pid": "8325", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:57.000343 2024-09-11 09:08:57.000346 470f2f2f-273a-47ef-b4a6-ca243578712a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1153834367"}, "pid": "8326", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:57.055079 2024-09-11 09:08:57.055083 73b0b581-982c-48d9-a4e8-ec00284c7272 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1150861010"}, "pid": "8327", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:57.122768 2024-09-11 09:08:57.122771 3d1bbaae-dea9-4d34-910b-ba02441d7d51 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1145186815"}, "pid": "8328", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:57.17679 2024-09-11 09:08:57.176793 fc916a8c-058a-48e4-ac95-ea7784457648 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1144301971"}, "pid": "8329", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:57.233851 2024-09-11 09:08:57.233857 94575f28-caff-41f9-940b-8258528cd99d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/114005791X"}, "pid": "8330", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:57.28816 2024-09-11 09:08:57.288163 0acbc63c-da96-467a-8e6c-14b28f409d26 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1139178725"}, "pid": "8331", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:57.350621 2024-09-11 09:08:57.350626 8d2eefb9-2f00-4845-8b3b-535335803d65 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1135938261"}, "pid": "8332", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:57.407765 2024-09-11 09:08:57.407769 7a1be4a8-98ba-4896-b84b-64b9b44e0c34 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1122355092"}, "pid": "8333", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:57.468857 2024-09-11 09:08:57.468862 664f3855-202c-477b-bb00-73569640926c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1121689914"}, "pid": "8334", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:57.524649 2024-09-11 09:08:57.524653 ba73b06a-eeb2-4349-9ab6-826214b53f9c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1118514823"}, "pid": "8335", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:57.580441 2024-09-11 09:08:57.580446 6888edcc-d98c-4daa-908a-859b1caedfa7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1117164012"}, "pid": "8336", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:57.648503 2024-09-11 09:08:57.648508 0a329aff-d606-43b5-bff0-cea8fd395ca9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1116981521"}, "pid": "8337", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:57.705318 2024-09-11 09:08:57.705322 a97cd512-0a5f-4655-bb06-a52b6b19f8af {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1115371371"}, "pid": "8338", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:57.759045 2024-09-11 09:08:57.759049 8daaa28a-7371-4cfe-be7e-ba43a5484fc3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1099123399"}, "pid": "8339", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:57.810345 2024-09-11 09:08:57.810349 e11c59a3-5e16-49da-8ee7-a1f72b1429e9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1081489480"}, "pid": "8340", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:57.8649 2024-09-11 09:08:57.864903 d6c5a240-2d4e-409b-adb7-ef9542b6e6b4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1078298378"}, "pid": "8341", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:57.919973 2024-09-11 09:08:57.919976 e0078423-81a4-46a9-9b07-7174f5f03fb1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/107366371X"}, "pid": "8342", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:57.970928 2024-09-11 09:08:57.970933 6afa5e0f-b640-43e2-8fe8-751252f8cf9c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1073212491"}, "pid": "8343", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:58.02811 2024-09-11 09:08:58.028114 2f450073-7d4c-4d16-87bb-517d3ca97c4c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1072727021"}, "pid": "8344", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:58.09269 2024-09-11 09:08:58.092695 1435150c-8189-4480-b205-b15bf346c468 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1072723875"}, "pid": "8345", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:58.15526 2024-09-11 09:08:58.155263 1dfae54d-1311-4afe-ab76-aa685784829b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/107257439X"}, "pid": "8346", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:58.20964 2024-09-11 09:08:58.209644 3db6b1e2-06c1-4f03-b7d8-ceeeb004f5fd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1070750409"}, "pid": "8347", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:58.264769 2024-09-11 09:08:58.264773 0ed6e07a-1e84-4533-90d0-891d8a2cb8b5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1069698822"}, "pid": "8348", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:58.32229 2024-09-11 09:08:58.322294 7621d8cf-b51a-4b9d-926d-0003ed55d775 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1069336971"}, "pid": "8349", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:58.381974 2024-09-11 09:08:58.381979 29125a67-219c-46ac-8fe5-adad9df22006 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1068604875"}, "pid": "8350", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:58.448782 2024-09-11 09:08:58.448786 e2a717ee-1faa-4611-a746-a8f8f385167d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1066801789"}, "pid": "8351", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:58.504731 2024-09-11 09:08:58.504737 a9ed1d0b-71ac-48ee-acb6-73df2301805c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1064698727"}, "pid": "8352", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:58.558335 2024-09-11 09:08:58.558337 3b214fac-6487-4ba9-86db-97a22ebb032d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1064281230"}, "pid": "8353", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:58.617253 2024-09-11 09:08:58.617257 d4146124-d3f1-4b84-963c-0b9d20fe5d9c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1064280692"}, "pid": "8354", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:58.670316 2024-09-11 09:08:58.670321 5acad3b3-cb72-43ad-a880-eed9e6f18a5e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/106427546X"}, "pid": "8355", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:58.724085 2024-09-11 09:08:58.724089 69816e9c-6aa2-42fa-8c1b-d113c5b3711d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1064098363"}, "pid": "8356", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:58.780529 2024-09-11 09:08:58.780534 81e39a44-c3ad-458c-8b00-ebe2c73fa49d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1063927137"}, "pid": "8357", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:58.835045 2024-09-11 09:08:58.835048 6303d849-9357-4e67-90cf-7923386da3a1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1063927110"}, "pid": "8358", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:58.891405 2024-09-11 09:08:58.891408 ebd75482-8cd7-4559-99ba-2c4aa49f1653 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1063925908"}, "pid": "8359", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:58.945504 2024-09-11 09:08:58.945508 39f03613-afdd-4d41-b21b-84f9e8009d4d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1063349230"}, "pid": "8360", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:59.001118 2024-09-11 09:08:59.001122 a9cf522a-e6d1-4db5-95fa-9215e882f892 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1062937325"}, "pid": "8361", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:59.062429 2024-09-11 09:08:59.062433 8ee8698e-87c7-4042-9ccc-516cfbda428b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060931796"}, "pid": "8362", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:59.12057 2024-09-11 09:08:59.120574 a0fb5d9d-3cb9-4740-ad8e-cd312c4bbd32 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060912503"}, "pid": "8363", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:59.179131 2024-09-11 09:08:59.179134 02560090-4cd5-40c8-b37b-950f4bd87698 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060909251"}, "pid": "8364", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:59.245283 2024-09-11 09:08:59.245289 9ac53631-bf02-44a3-a88f-b9bac7ab01d0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060907534"}, "pid": "8365", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:59.310361 2024-09-11 09:08:59.310365 3b253550-f2f8-4648-99f5-1acfa7cc98fb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060882345"}, "pid": "8366", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:59.362428 2024-09-11 09:08:59.362431 aaa0825c-68c7-4410-966c-79edcc09b22d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060882191"}, "pid": "8367", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:59.413641 2024-09-11 09:08:59.413645 167a7a6f-bfe9-4221-8810-6226d9f2ed18 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060881373"}, "pid": "8368", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:59.466388 2024-09-11 09:08:59.466391 a88d4447-a7b8-430b-a588-94ffce75a751 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060881039"}, "pid": "8369", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:59.521867 2024-09-11 09:08:59.52187 84b151e7-5a74-442f-96f0-8924471ee55c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060858703"}, "pid": "8370", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:59.582815 2024-09-11 09:08:59.58282 62901358-afa7-4963-aa58-d7c881924429 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060811529"}, "pid": "8371", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:59.636924 2024-09-11 09:08:59.636929 0da16089-7dee-4526-9bdc-06b5089633ef {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060804263"}, "pid": "8372", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:59.690012 2024-09-11 09:08:59.690016 cfc07ffb-d48a-4435-b77c-203af4fa7e99 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060778947"}, "pid": "8373", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:59.745763 2024-09-11 09:08:59.745767 4a8e1474-af91-41ce-85c2-b7841a9919f0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060674483"}, "pid": "8374", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:59.803976 2024-09-11 09:08:59.80398 2e70a099-d75c-4f43-a4bb-1733bc1ef11e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060581957"}, "pid": "8375", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:59.860794 2024-09-11 09:08:59.860797 ad19a04e-a884-4626-b582-b2e3c75a35cd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060577895"}, "pid": "8376", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:59.91712 2024-09-11 09:08:59.917125 dabff3e0-6610-44f5-8700-143935f7396e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/106057683X"}, "pid": "8377", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:59.971209 2024-09-11 09:08:59.971212 3a6f21b3-582a-4b6c-84dd-1aadf9ca6139 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060521229"}, "pid": "8378", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:00.026225 2024-09-11 09:09:00.026229 fd46865f-0400-44b3-89ce-783b2eb07e6d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060471329"}, "pid": "8379", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:00.077959 2024-09-11 09:09:00.077963 62de2013-a5e5-442f-9bc7-ff6ef0d67af2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060399172"}, "pid": "8380", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:00.135018 2024-09-11 09:09:00.135025 6010f2d5-b780-490a-9aec-bc58d1e63d5c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060358328"}, "pid": "8381", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:00.195314 2024-09-11 09:09:00.195318 8a716385-6bb1-4e4a-8920-45a8fa52ce48 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/106013411X"}, "pid": "8382", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:00.251231 2024-09-11 09:09:00.251235 298837a0-2527-4f8a-99ea-b851e5da18fa {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060114909"}, "pid": "8383", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:00.303889 2024-09-11 09:09:00.303893 d662c3e3-dda9-40a1-970e-4b20eca5707c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060090236"}, "pid": "8384", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:00.356887 2024-09-11 09:09:00.356892 f8e6f6d3-2835-4018-9226-542a16449ad5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060077914"}, "pid": "8385", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:00.412728 2024-09-11 09:09:00.412733 303dbb40-67f2-4eb5-b64b-261fa5c5b2d0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1060077817"}, "pid": "8386", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:00.469864 2024-09-11 09:09:00.469868 aa94f405-f632-4687-a61f-4ce59ce69b23 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059889455"}, "pid": "8387", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:00.524838 2024-09-11 09:09:00.524843 92ec02f5-01fd-4629-876a-0cf3094f5aed {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059823527"}, "pid": "8388", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:00.578215 2024-09-11 09:09:00.578219 69ec5411-93a9-4323-abba-4c7dc4783b3a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059732483"}, "pid": "8389", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:00.641837 2024-09-11 09:09:00.641842 fa931fc8-cabd-441d-8b64-f9c61fd81727 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/105962091X"}, "pid": "8390", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:00.722654 2024-09-11 09:09:00.72266 a7f6a9f5-2697-4527-84ff-27612452f784 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/105960552X"}, "pid": "8391", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:00.787115 2024-09-11 09:09:00.787119 7d4e352a-e58e-4cb8-977b-44698d12a543 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059558653"}, "pid": "8392", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:00.859223 2024-09-11 09:09:00.859232 e34faee4-9837-4c70-b8ca-b4644871abdb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059464667"}, "pid": "8393", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:00.928934 2024-09-11 09:09:00.928939 fd95751e-cb0e-41f0-837d-8f3f69a35891 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059463385"}, "pid": "8394", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:00.99184 2024-09-11 09:09:00.991844 bf5f92e5-8d25-438c-82f2-79faef684c3d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059408058"}, "pid": "8395", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:01.070653 2024-09-11 09:09:01.070661 32c552fa-b866-41d7-9f30-bb24b5634986 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059388502"}, "pid": "8396", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:01.137352 2024-09-11 09:09:01.137355 d5368694-62fa-4d02-86d8-eb416b18e397 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059388499"}, "pid": "8397", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:01.200965 2024-09-11 09:09:01.20097 8ac19977-ca8e-4106-bb7d-ca3efd5feab8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059388464"}, "pid": "8398", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:01.260978 2024-09-11 09:09:01.260982 52adbe10-3fe0-4efe-bdf0-6598cec403f6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059384434"}, "pid": "8399", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:01.330776 2024-09-11 09:09:01.33078 fcb96ec4-b2e3-4390-b463-5a3827e6bbbb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059383780"}, "pid": "8400", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:01.38762 2024-09-11 09:09:01.387623 c6e63295-794e-49b7-b21d-e3b9132d53d6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059323001"}, "pid": "8401", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:01.444078 2024-09-11 09:09:01.444084 7c91cf6a-f9bd-421d-a45d-767d280c8087 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059271745"}, "pid": "8402", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:01.506108 2024-09-11 09:09:01.506112 c3b9d78f-850b-4908-bb05-11ab893d4ec4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059254697"}, "pid": "8403", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:01.564281 2024-09-11 09:09:01.564285 4fecf265-9048-4d79-811f-36aaccd833f5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059254646"}, "pid": "8404", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:01.623846 2024-09-11 09:09:01.62385 2f34c97c-36f3-4c01-a8ea-73abd70d6ea9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059226529"}, "pid": "8405", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:01.680674 2024-09-11 09:09:01.680678 e0057648-c72a-405a-a27a-602295dfc29b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059152312"}, "pid": "8406", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:01.736287 2024-09-11 09:09:01.736292 1fd76a80-df1b-4e62-9150-13d57f5cf7d2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059103257"}, "pid": "8407", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:01.79287 2024-09-11 09:09:01.792874 2d6190b1-98d8-4806-8327-2da3d54cbd3c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059090767"}, "pid": "8408", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:01.848341 2024-09-11 09:09:01.848345 04e09a71-9b16-4af6-a67a-e2109cafb3d4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1059087871"}, "pid": "8409", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:01.904254 2024-09-11 09:09:01.904258 7ec88d9c-3921-468b-a69d-7d18f49a16d2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058986295"}, "pid": "8410", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:01.959771 2024-09-11 09:09:01.959776 83c316d1-c121-4ae4-88a4-874ebb0a1c53 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/105896920X"}, "pid": "8411", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:02.017107 2024-09-11 09:09:02.017113 7ce461f0-87bd-4130-a397-26d82d126d94 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058846361"}, "pid": "8412", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:02.075411 2024-09-11 09:09:02.075416 22271c7f-713a-4673-adee-0e8a3d454f45 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058723790"}, "pid": "8413", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:02.13949 2024-09-11 09:09:02.139494 f3d03d45-6ab9-4f8f-887c-f5b6b5a5f43d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058674900"}, "pid": "8414", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:02.201495 2024-09-11 09:09:02.2015 a6cced13-1655-4da7-a51f-c202fcdc8e28 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058669559"}, "pid": "8415", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:02.254706 2024-09-11 09:09:02.25471 375d1dca-44f6-4782-ad37-855c45f63513 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/105862394X"}, "pid": "8416", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:02.310398 2024-09-11 09:09:02.310402 b29458b6-30fc-4be3-8f29-0666266bd82f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058513710"}, "pid": "8417", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:02.366434 2024-09-11 09:09:02.366441 2d3cacd1-82cc-4a4b-81f8-06ea3493299e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058507044"}, "pid": "8418", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:02.423185 2024-09-11 09:09:02.423188 74a5da78-6b35-44b0-a541-c9e265fdd5c1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058389041"}, "pid": "8419", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:02.478048 2024-09-11 09:09:02.478051 ae1bcf8f-cf4c-4357-b704-b4d72dca31c6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058382799"}, "pid": "8420", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:02.531201 2024-09-11 09:09:02.531206 187c7d9f-6309-4f22-92ca-16a441242427 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058371266"}, "pid": "8421", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:02.591213 2024-09-11 09:09:02.591216 cde46517-4e1a-4a41-bb6c-cad9b032f04a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058370677"}, "pid": "8422", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:02.64386 2024-09-11 09:09:02.643864 53c9180b-af25-48e3-a3a8-65e724d2d658 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058284371"}, "pid": "8423", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:02.699829 2024-09-11 09:09:02.699831 69fcfdb1-0d6d-4a38-a781-255d285015fe {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058284304"}, "pid": "8424", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:02.755777 2024-09-11 09:09:02.75578 44be44ed-484b-4e19-8b20-e7bf956deb8d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058284096"}, "pid": "8425", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:02.81118 2024-09-11 09:09:02.811184 2eff6f12-b6de-46a7-a419-f3efda29847b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058280910"}, "pid": "8426", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:02.865765 2024-09-11 09:09:02.86577 d13b267f-88b0-4591-9a86-0c11d66fc774 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058249436"}, "pid": "8427", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:02.91762 2024-09-11 09:09:02.917625 c20e237f-1286-4c9b-b832-8a2382017d78 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058206753"}, "pid": "8428", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:02.974001 2024-09-11 09:09:02.974006 cf87a1c6-a168-4675-9b67-bfe5f7669dbe {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1058118161"}, "pid": "8429", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:03.030798 2024-09-11 09:09:03.030803 71a4e03b-c350-4fd2-9ab3-5abffb7ade7f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1055857745"}, "pid": "8430", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:03.090213 2024-09-11 09:09:03.090217 62a06362-28aa-410a-a9b1-d15b721da024 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1054037531"}, "pid": "8431", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:03.142633 2024-09-11 09:09:03.142637 c242b11b-35f8-479b-b894-c7dc5e93947e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1052970427"}, "pid": "8432", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:03.196179 2024-09-11 09:09:03.196181 4453565f-a40a-417e-bef5-9c2434eaa545 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1051355478"}, "pid": "8433", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:03.264695 2024-09-11 09:09:03.2647 ac60ed9c-de59-417f-9a5a-5129288e1c55 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1050801644"}, "pid": "8434", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:03.328333 2024-09-11 09:09:03.328338 ce950700-ed6a-46b3-bae7-0eefe19008b2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1050440188"}, "pid": "8435", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:03.385386 2024-09-11 09:09:03.38539 02c38177-ea13-485c-836f-e1813286e4fe {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1049971213"}, "pid": "8436", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:03.444909 2024-09-11 09:09:03.444913 f05206a6-2463-42f6-8950-1a1c95386ecc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1049453719"}, "pid": "8437", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:03.508 2024-09-11 09:09:03.508003 1a733363-7c28-45f4-ae5c-c5ff9c397f28 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/104797553X"}, "pid": "8438", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:03.564944 2024-09-11 09:09:03.564946 4d4ba2ab-8fad-4e7d-b330-5c8de460d978 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1047231085"}, "pid": "8439", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:03.626135 2024-09-11 09:09:03.62614 7101c6bd-9e84-4f36-bb68-dc2dac29c6d1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1041610890"}, "pid": "8440", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:03.683673 2024-09-11 09:09:03.683676 b1a47461-d857-43ed-9fff-bcea8e917001 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1037919874"}, "pid": "8441", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:03.743478 2024-09-11 09:09:03.74348 a215e39f-106c-4f8a-8de7-a61a072e0623 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1034281828"}, "pid": "8442", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:03.801694 2024-09-11 09:09:03.801698 72ad4836-9e60-44b2-88c5-ebef8d0e2325 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1033705691"}, "pid": "8443", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:03.857034 2024-09-11 09:09:03.857039 369bb12d-3a08-4176-b59e-d7e43a2af5b2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1030464197"}, "pid": "8444", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:03.913984 2024-09-11 09:09:03.913987 1aa2367d-a2b6-4697-bccf-ce5b19291cd1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1028524978"}, "pid": "8445", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:03.974899 2024-09-11 09:09:03.974903 538d62e5-b870-40df-8ec9-c4e686380b8f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1027073808"}, "pid": "8446", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:04.036461 2024-09-11 09:09:04.036463 85475fe7-9164-4774-92b5-da114d156303 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1027071171"}, "pid": "8447", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:04.096674 2024-09-11 09:09:04.096679 1f87f354-c337-4af2-843b-c1944bbbf1ce {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1026470986"}, "pid": "8448", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:04.151086 2024-09-11 09:09:04.151094 bbd1a37e-70b9-48bc-9973-671840abeb1d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1026351537"}, "pid": "8449", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:04.207435 2024-09-11 09:09:04.207439 b5b076c9-388e-41be-b4fe-749d95097486 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1025228928"}, "pid": "8450", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:04.272477 2024-09-11 09:09:04.27248 ef981523-3945-43a6-bbd2-b45f4cd4b9a1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1023745712"}, "pid": "8451", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:04.326474 2024-09-11 09:09:04.326477 bece6af0-72b8-4376-b7dd-5eba88553b44 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1023362872"}, "pid": "8452", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:04.381606 2024-09-11 09:09:04.381611 2005c0d0-cc16-46f7-8886-d89286e5f2f0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1022832425"}, "pid": "8453", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:04.442068 2024-09-11 09:09:04.442072 cdeba99c-6e96-423f-8003-cd2054d6059b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1021256064"}, "pid": "8454", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:04.498857 2024-09-11 09:09:04.498862 f0bba441-076b-4071-b432-7435aed59afd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1018220429"}, "pid": "8455", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:04.553906 2024-09-11 09:09:04.553911 b7e2cb4e-8c74-4d3f-873d-c5a7f19f8139 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1017491062"}, "pid": "8456", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:04.606413 2024-09-11 09:09:04.606416 809965da-7efa-444f-b164-0d0d2ccb67cc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1017490090"}, "pid": "8457", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:04.658409 2024-09-11 09:09:04.658414 96dd772a-0a06-43d1-92c6-d0d4ed45aad7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1017217165"}, "pid": "8458", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:04.712471 2024-09-11 09:09:04.712474 db9e5a9a-5e5c-4af1-81ab-f6b977294bc4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1017177503"}, "pid": "8459", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:04.765078 2024-09-11 09:09:04.765081 635c9893-2440-4ed8-87a4-b1f99cada4f3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1017027366"}, "pid": "8460", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:04.828051 2024-09-11 09:09:04.828053 458c13dd-fbc0-4b9b-846f-32f7a0bfb2f8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1016810989"}, "pid": "8461", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:04.887127 2024-09-11 09:09:04.887131 bbdc289e-38a2-4785-8331-60f442d0a453 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1016599463"}, "pid": "8462", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:05.008682 2024-09-11 09:09:05.008686 225654c9-01c6-4d1e-a12c-9c8a35343ad8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1016326106"}, "pid": "8463", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:05.066617 2024-09-11 09:09:05.066622 351731ea-b9d0-4665-a8ed-e807dcea6f3f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1015079253"}, "pid": "8464", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:05.127422 2024-09-11 09:09:05.127426 f36d43fd-000a-4a41-9566-b60d6428d716 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1013014065"}, "pid": "8465", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:05.180726 2024-09-11 09:09:05.18073 d50455b1-0f7d-41c3-9f22-4f8ebd6e5e5f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1011954141"}, "pid": "8466", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:05.237361 2024-09-11 09:09:05.237366 7296ba49-7b3b-41c2-a6f4-af85b539e657 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1011935201"}, "pid": "8467", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:05.292762 2024-09-11 09:09:05.292766 da1b18a6-5807-4bbf-a382-695fc192e22f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1011536455"}, "pid": "8468", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:05.350896 2024-09-11 09:09:05.350902 c931d5cd-cb82-402b-830e-ab27de8ec730 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1011385856"}, "pid": "8469", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:05.403689 2024-09-11 09:09:05.403693 95b6ea0a-7324-49cb-a508-e1964c3c7031 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1011285738"}, "pid": "8470", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:05.46049 2024-09-11 09:09:05.460494 330dff3e-a6c4-4953-b7cd-e59f51216300 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1011285436"}, "pid": "8471", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:05.531641 2024-09-11 09:09:05.531646 d2e726f9-aabe-4e25-9aab-3ab9d4ca042e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1011282518"}, "pid": "8472", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:05.596246 2024-09-11 09:09:05.59625 08497322-c32d-4799-92b5-da8d690eb474 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1011281368"}, "pid": "8473", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:05.653749 2024-09-11 09:09:05.653752 0b44f340-f67b-4359-93da-96811235d4fb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1011278723"}, "pid": "8474", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:05.709087 2024-09-11 09:09:05.709092 afad0eff-eaf1-4f4c-aaad-ab6870c90286 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1011253313"}, "pid": "8475", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:05.767828 2024-09-11 09:09:05.767833 8a855338-5426-48a8-a42c-f38e678ee50a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1011212722"}, "pid": "8476", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:05.826915 2024-09-11 09:09:05.82692 cd865085-c4f3-4568-98ed-716da33fed0e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1011172399"}, "pid": "8477", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:05.883013 2024-09-11 09:09:05.883017 bc7f5b73-850c-4734-bae9-2d296763aa30 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1011095351"}, "pid": "8478", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:05.946333 2024-09-11 09:09:05.946339 287ad6a9-a294-4180-95f0-6a68efa547e6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1010824597"}, "pid": "8479", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:06.011148 2024-09-11 09:09:06.011154 51a024e6-6903-475e-b63d-4b2d8a0a05f3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1010820389"}, "pid": "8480", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:06.073518 2024-09-11 09:09:06.073523 1ce30042-c510-49d7-bfd8-b29926e9d5de {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/101081933X"}, "pid": "8481", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:06.139559 2024-09-11 09:09:06.139564 c9a65ee5-f7e3-4efa-82bf-2acdac70f70c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/100974786X"}, "pid": "8482", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:06.205642 2024-09-11 09:09:06.205646 8903d2a4-bdcd-40ef-b9fa-7dc998dfc662 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1009172255"}, "pid": "8483", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:06.262561 2024-09-11 09:09:06.262566 455256e6-aa7f-4b11-8ebc-bacaba4df3ac {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/100914135X"}, "pid": "8484", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:06.324389 2024-09-11 09:09:06.324393 2f43903d-a8cc-4b0e-95e7-459360d4571e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1008599360"}, "pid": "8485", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:06.381543 2024-09-11 09:09:06.381547 74f2284f-e2d4-422d-a80f-8f7dcb6933cb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1007558903"}, "pid": "8486", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:06.440629 2024-09-11 09:09:06.440634 cbc81aa8-61b3-4bef-a876-b34fdd38194c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1007553405"}, "pid": "8487", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:06.499464 2024-09-11 09:09:06.49947 9672a0ef-03bc-4211-a181-760b8bc0c202 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1007096462"}, "pid": "8488", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:06.555517 2024-09-11 09:09:06.555521 f88b5937-f15c-41d4-bf32-eec6bd4ddfee {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1006156577"}, "pid": "8489", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:06.613935 2024-09-11 09:09:06.613939 f0cb5df0-b0af-4504-8110-e74ceefc87f9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1005952930"}, "pid": "8490", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:06.671193 2024-09-11 09:09:06.671197 17ad52a3-c41b-457e-9cc8-badb4ffe493f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1005638322"}, "pid": "8491", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:06.726066 2024-09-11 09:09:06.72607 1f6a84a5-fc12-44d7-ab96-48dc422ba5fe {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1005003262"}, "pid": "8492", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:06.784289 2024-09-11 09:09:06.784294 906f0bfb-b528-4625-bc36-3ac02c4548c6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1003591590"}, "pid": "8493", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:06.849108 2024-09-11 09:09:06.849111 a6e696a7-111d-43f3-a067-784c70cfa6b8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1001213157"}, "pid": "8494", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:06.916755 2024-09-11 09:09:06.916759 8b386e66-f6e8-4449-ad81-d0425554509a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1000465403"}, "pid": "8495", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:06.981955 2024-09-11 09:09:06.981958 18a6689e-5212-4c06-8dac-9d88214a7e56 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/999617249"}, "pid": "8496", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:07.044129 2024-09-11 09:09:07.044134 d868962d-a758-426c-97cb-8444201c10c0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/999602810"}, "pid": "8497", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:07.105848 2024-09-11 09:09:07.105852 63a613ee-c70a-4259-ba58-c4fccc74de77 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/999129317"}, "pid": "8498", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:07.16241 2024-09-11 09:09:07.162413 275e5f36-f311-4e8d-9ae0-76075a4254a2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/999038095"}, "pid": "8499", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:07.219024 2024-09-11 09:09:07.219028 b83c708d-ced7-449d-8c74-083b5b4a77a2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/998759074"}, "pid": "8500", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:07.274575 2024-09-11 09:09:07.27458 10d8d084-9062-4b2c-80f2-ee79cf5887ed {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/997781491"}, "pid": "8501", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:07.326694 2024-09-11 09:09:07.326698 bfc52e2f-1562-4daa-a621-6726d209fae1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/994660987"}, "pid": "8502", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:07.384509 2024-09-11 09:09:07.384512 a8ac3256-d26d-489b-ae74-9ee6ed1832c3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/994508417"}, "pid": "8503", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:07.442158 2024-09-11 09:09:07.442161 095292f3-dca5-4bb4-930d-a41e27d39c41 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/994042582"}, "pid": "8504", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:07.505818 2024-09-11 09:09:07.505821 a6c2f356-e5fa-4a79-bc72-cdd0c6c9c085 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/993971806"}, "pid": "8505", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:07.570043 2024-09-11 09:09:07.570046 45aee367-687d-4849-b32e-5b7a62aa6916 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992779871"}, "pid": "8506", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:07.628172 2024-09-11 09:09:07.628176 14141ad0-9492-4f14-9587-b077c759d4e6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992757681"}, "pid": "8507", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:07.681326 2024-09-11 09:09:07.681329 0fb50ef8-8a99-4566-8ff0-80739e971fd3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992754151"}, "pid": "8508", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:07.731914 2024-09-11 09:09:07.731919 610cb18f-e6bd-43f9-b186-046c4c866308 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992753589"}, "pid": "8509", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:07.786107 2024-09-11 09:09:07.786112 ef9b7578-58b1-42e7-94fc-4bf75d5229a5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992747260"}, "pid": "8510", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:07.84181 2024-09-11 09:09:07.841814 6e1dc348-8a7c-4154-b8e1-ed6c4bfcc875 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992745489"}, "pid": "8511", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:07.904276 2024-09-11 09:09:07.904281 b6287f80-89e1-4521-b029-6c5f4f32f194 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992744431"}, "pid": "8512", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:07.973722 2024-09-11 09:09:07.973726 7bc4a5db-26bd-4d06-a486-6a2ffaf3a590 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992744040"}, "pid": "8513", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:08.035251 2024-09-11 09:09:08.035256 b4667688-e60c-441d-8384-b71185882c50 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992742145"}, "pid": "8514", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:08.094791 2024-09-11 09:09:08.094794 d1b0fa66-bd28-4413-8103-037d9c7412f1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992740622"}, "pid": "8515", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:08.147547 2024-09-11 09:09:08.147551 f1a686d7-398a-420c-90de-ee685654a4a0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992740002"}, "pid": "8516", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:08.204307 2024-09-11 09:09:08.20431 b475b242-e694-4086-b5b5-33fcf531efcf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992739888"}, "pid": "8517", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:08.263707 2024-09-11 09:09:08.263713 645492f4-f958-48b8-8db4-7d80586b010e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992734894"}, "pid": "8518", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:08.317116 2024-09-11 09:09:08.317122 d744ca03-0a23-4524-acb0-71f36b663899 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992733510"}, "pid": "8519", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:08.369973 2024-09-11 09:09:08.369977 13c3b525-e7e6-4ef1-a784-ec6e26583683 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992258820"}, "pid": "8520", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:08.431469 2024-09-11 09:09:08.431472 a0e2c6fc-ea5f-42ef-b622-590c6dc9535c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/991512669"}, "pid": "8521", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:08.490579 2024-09-11 09:09:08.490583 17465708-2b0e-407a-b6cc-8b42174c0caf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/99110546X"}, "pid": "8522", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:08.542171 2024-09-11 09:09:08.542176 38c15871-eb7e-4d29-8e0a-e6f417d03f5e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/990635139"}, "pid": "8523", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:08.595877 2024-09-11 09:09:08.59588 9c41d9e9-45bd-482a-ba19-6ade69945070 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/989819264"}, "pid": "8524", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:08.64796 2024-09-11 09:09:08.647963 3c884f3e-39e4-4b46-a015-cbcd337b0519 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/987246100"}, "pid": "8525", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:08.704906 2024-09-11 09:09:08.704911 cfd883e4-8ab5-4531-be22-f80fb2e60da4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/986124265"}, "pid": "8526", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:08.758883 2024-09-11 09:09:08.758887 a60c1f6b-8bfe-43eb-b4cc-7355871876d6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/985953780"}, "pid": "8527", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:08.813977 2024-09-11 09:09:08.813981 d617d5e6-bded-435c-9c17-0c640d4f67d2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/985948116"}, "pid": "8528", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:08.868923 2024-09-11 09:09:08.868927 7c22cbc0-4647-406f-9426-1bdf68111342 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/985147172"}, "pid": "8529", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:08.922036 2024-09-11 09:09:08.922038 1e4f4c43-bbcb-46d0-a8dd-708b20eeaa2b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/985075619"}, "pid": "8530", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:08.979665 2024-09-11 09:09:08.979669 f14c2505-f91b-49ac-a8b9-2e0dca60bec5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/984505180"}, "pid": "8531", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:09.056886 2024-09-11 09:09:09.056891 230617b8-57a4-4f39-b165-5e3b1d85dfb8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/983782784"}, "pid": "8532", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:09.125496 2024-09-11 09:09:09.125501 4bcb2607-9d43-4d38-8933-1963450f7147 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/983616299"}, "pid": "8533", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:09.181724 2024-09-11 09:09:09.181728 44367a92-26c1-4694-a798-758872f7e43e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/98350816X"}, "pid": "8534", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:09.237491 2024-09-11 09:09:09.237496 e896a20a-c752-4fef-9a40-8890698863a4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/983481644"}, "pid": "8535", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:09.29274 2024-09-11 09:09:09.292744 536a3552-dd89-42af-88e1-8aaf94f0f0ec {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/983481628"}, "pid": "8536", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:09.354555 2024-09-11 09:09:09.354559 fce0ae8f-0f65-4b19-8ed9-92b42527573c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/982938322"}, "pid": "8537", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:09.41027 2024-09-11 09:09:09.410273 185dc1d4-284a-47e1-9d87-0095eafd36fc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/982377649"}, "pid": "8538", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:09.466114 2024-09-11 09:09:09.466118 17e8763c-434b-42b7-a89d-3cf5b27cf192 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/982125461"}, "pid": "8539", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:09.518529 2024-09-11 09:09:09.518538 8cc1ac69-6a17-49b0-b9a7-a34a62764062 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/981073328"}, "pid": "8540", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:09.580576 2024-09-11 09:09:09.580581 22753b73-c3f6-488f-8ac5-ebadbd6dcd95 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/98106521X"}, "pid": "8541", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:09.636595 2024-09-11 09:09:09.636598 04118938-0d37-44a5-8d2d-b841377ab7a9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/980868459"}, "pid": "8542", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:09.69569 2024-09-11 09:09:09.695694 cf5c02bc-0296-44f5-9285-b5ec48d9c816 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/980347890"}, "pid": "8543", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:09.748542 2024-09-11 09:09:09.748545 d7ab7b09-9151-46bf-b57e-8ff00aad4e48 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/979633079"}, "pid": "8544", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:09.802266 2024-09-11 09:09:09.80227 6d189b70-5f76-4e01-a7fa-18bb69e151b0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/979217253"}, "pid": "8545", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:09.860663 2024-09-11 09:09:09.860667 7e270139-9bc8-4fba-8e84-07da18df8f14 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/979214998"}, "pid": "8546", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:09.916176 2024-09-11 09:09:09.916179 b40b4d00-0187-45e0-8362-68452fcaf5e6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/977813762"}, "pid": "8547", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:09.969183 2024-09-11 09:09:09.969187 2bf90ad6-4faa-4c7f-a676-d06fd2598e6d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/977682633"}, "pid": "8548", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:10.023269 2024-09-11 09:09:10.023272 58e06762-e02b-4fdf-988b-d8d778cc3365 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/977294390"}, "pid": "8549", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:10.08177 2024-09-11 09:09:10.081773 8d544460-0e14-4868-96f1-4d7f3844a407 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/976865351"}, "pid": "8550", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:10.153542 2024-09-11 09:09:10.153547 72972377-c1d9-469a-bc48-924a8de99a0f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/976859416"}, "pid": "8551", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:10.215099 2024-09-11 09:09:10.215103 39db219e-de7b-4ff6-b236-75b6ba50d6e3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/976009048"}, "pid": "8552", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:10.272943 2024-09-11 09:09:10.272946 f977526f-d36d-473b-871e-5e2332932b50 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/975670824"}, "pid": "8553", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:10.330636 2024-09-11 09:09:10.33064 ef38b692-9817-4aaa-9ac5-019acde18e3a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/975199056"}, "pid": "8554", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:10.384358 2024-09-11 09:09:10.384361 7b7c79a2-631a-4647-a11a-bd9966000b7b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/97466068X"}, "pid": "8555", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:10.442452 2024-09-11 09:09:10.442455 754c201b-00b9-4584-8c2d-938455956c3f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/974476560"}, "pid": "8556", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:10.50247 2024-09-11 09:09:10.502473 2eab82ca-8384-4329-bd26-d9a10b30a5e8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/974160032"}, "pid": "8557", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:10.562407 2024-09-11 09:09:10.562409 7a4e19e1-9a6d-4552-b9db-e59f6d7a02d9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/97397687X"}, "pid": "8558", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:10.620436 2024-09-11 09:09:10.620444 910773ba-aa92-4383-88e8-d6e205b755a0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/972616705"}, "pid": "8559", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:10.683453 2024-09-11 09:09:10.683459 0d427339-05e8-4ed9-98aa-9fdf9b8b5412 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/972391010"}, "pid": "8560", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:10.738334 2024-09-11 09:09:10.738338 ffb47921-b2d5-4a0a-8291-b48724cc4ac1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/971044899"}, "pid": "8561", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:10.797642 2024-09-11 09:09:10.797646 1077622d-8cc3-4aa3-8f8d-79e03171655a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/970758065"}, "pid": "8562", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:10.852516 2024-09-11 09:09:10.852521 a65aacf5-0888-4a22-967b-fa73912e8a85 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/970679645"}, "pid": "8563", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:10.913005 2024-09-11 09:09:10.913008 7a9f7f03-72a8-4f43-bf63-bc94857e9774 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/970190417"}, "pid": "8564", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:10.967964 2024-09-11 09:09:10.967969 5cfca7f4-de6e-40ce-8f64-4d090a82f953 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/969678363"}, "pid": "8565", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:11.024859 2024-09-11 09:09:11.024862 dd1286b7-ac0c-48dd-a177-27fa502dffdd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/969131240"}, "pid": "8566", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:11.095901 2024-09-11 09:09:11.095906 2352f523-2365-4cf5-8475-daac59ddf985 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/968663664"}, "pid": "8567", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:11.160996 2024-09-11 09:09:11.160999 beb1ed4b-c27c-4281-921b-e699b804a540 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/968634737"}, "pid": "8568", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:11.220828 2024-09-11 09:09:11.220832 ff7d7a0c-99f7-4eff-9100-eca9cdd762fe {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/968438121"}, "pid": "8569", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:11.274659 2024-09-11 09:09:11.274662 00b06b9e-133c-443a-b6c5-a14bc20aa1d7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/968387705"}, "pid": "8570", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:11.332391 2024-09-11 09:09:11.332397 0fb74bd0-c0fc-4bdb-8969-9e4316339643 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/968377955"}, "pid": "8571", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:11.384322 2024-09-11 09:09:11.384327 8cf92490-70b9-41d3-9201-fee43f519a45 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/968360009"}, "pid": "8572", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:11.44266 2024-09-11 09:09:11.442664 9273ddfc-f3d1-48b6-a73c-f3f6abf50144 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/96832780X"}, "pid": "8573", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:11.499503 2024-09-11 09:09:11.499508 7b6d5994-855a-4646-96a8-d5414ca47a74 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/967876710"}, "pid": "8574", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:11.552008 2024-09-11 09:09:11.552011 b1d2bedf-a2e4-4288-a7fc-4c1bdc4b5474 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/967734657"}, "pid": "8575", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:11.612112 2024-09-11 09:09:11.612117 7a2d19e3-0a8d-4b40-a24a-a080f72034a4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/967659523"}, "pid": "8576", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:11.665581 2024-09-11 09:09:11.665585 5c165569-3533-41de-8618-4f14375b9213 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/967617987"}, "pid": "8577", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:11.720041 2024-09-11 09:09:11.720045 427dfedf-de5e-435e-a046-7ac3ffc45cc4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/967326133"}, "pid": "8578", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:11.778873 2024-09-11 09:09:11.778876 e7237910-0225-46e4-9fd4-f15c998a42b4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/96717757X"}, "pid": "8579", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:11.836373 2024-09-11 09:09:11.836376 e517d99c-0b6b-458a-a995-8a721d1c700e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/967169399"}, "pid": "8580", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:11.898121 2024-09-11 09:09:11.898123 97275777-54a3-4359-923b-816cc12f83dc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/967155223"}, "pid": "8581", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:11.959328 2024-09-11 09:09:11.959332 1bdcd7a8-646b-4061-ad64-3562537f4230 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/966649052"}, "pid": "8582", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:12.020619 2024-09-11 09:09:12.020623 60666425-326c-4c4b-bd26-7ada8cebb204 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/966536304"}, "pid": "8583", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:12.075651 2024-09-11 09:09:12.075656 affbf64a-0c7d-48cd-836a-04abe125ac1b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/965652785"}, "pid": "8584", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:12.127748 2024-09-11 09:09:12.127753 47d5f110-0921-4708-99f0-e92ee70014a4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/965576825"}, "pid": "8585", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:12.184209 2024-09-11 09:09:12.184216 cec466bc-e5c7-40bc-b378-5ebf0c761482 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/965369846"}, "pid": "8586", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:12.238964 2024-09-11 09:09:12.238967 57033dee-6ba5-4ef7-b4e6-f04d28bfa845 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/965367924"}, "pid": "8587", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:12.296967 2024-09-11 09:09:12.296971 ebb6585b-c044-4184-ad2b-dc38bec8d60b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/965252973"}, "pid": "8588", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:12.358772 2024-09-11 09:09:12.358776 ff756764-32b5-4b45-b3d2-3de76323f6b9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/964979683"}, "pid": "8589", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:12.431244 2024-09-11 09:09:12.431248 b02f8ef0-e1c3-4159-9a9f-429c9e132403 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/964866862"}, "pid": "8590", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:12.497337 2024-09-11 09:09:12.497341 1a999462-3e87-40a1-8391-bf73c02e9458 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/964848651"}, "pid": "8591", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:12.566875 2024-09-11 09:09:12.566881 6ed2297c-c86e-4659-8b8b-a29a0cf29de3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/96473222X"}, "pid": "8592", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:12.642338 2024-09-11 09:09:12.642342 fc6654e2-1e69-4017-98d2-887a7c56a50e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/964720272"}, "pid": "8593", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:12.717955 2024-09-11 09:09:12.71796 b2aa9d8d-fc10-4e0a-bdae-b79699bffc76 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/964519194"}, "pid": "8594", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:12.77743 2024-09-11 09:09:12.777435 ef40fea6-0a0e-4c5e-808b-fa9e8006c8ac {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/964421062"}, "pid": "8595", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:12.845397 2024-09-11 09:09:12.845401 1731d766-dfe7-4bd9-9144-a76c3ad70780 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/964339676"}, "pid": "8596", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:12.917267 2024-09-11 09:09:12.91727 0df5ead9-9c6e-44ab-95aa-943e93425060 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/964334666"}, "pid": "8597", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:12.988862 2024-09-11 09:09:12.988866 934866d6-14e6-414d-93c3-4d165c9e272d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/964248026"}, "pid": "8598", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:13.062096 2024-09-11 09:09:13.062102 32a72f43-fb99-4beb-a5de-855c26021ff2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/964078880"}, "pid": "8599", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:13.145701 2024-09-11 09:09:13.145704 ddd96a65-afab-495e-ba2b-8ea31ce11630 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/963708708"}, "pid": "8600", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:13.19829 2024-09-11 09:09:13.198295 13d64763-632d-4d9f-89cc-002020b53b9f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/963707906"}, "pid": "8601", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:13.253578 2024-09-11 09:09:13.253584 24df3653-5e23-499e-be21-981f6a1f8383 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/963707884"}, "pid": "8602", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:13.308937 2024-09-11 09:09:13.308942 1e0be0c2-4109-482b-9277-018fa855a9fd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/963495046"}, "pid": "8603", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:13.369978 2024-09-11 09:09:13.369983 8dec8e0c-296b-4e19-b1f9-3d0490f6f627 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/963483927"}, "pid": "8604", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:13.435551 2024-09-11 09:09:13.435555 fc456dd0-bf90-4354-bf8d-b054aa3bf176 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/96317066X"}, "pid": "8605", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:13.488079 2024-09-11 09:09:13.488084 b267896b-4382-4f04-8341-b12c3fc05bbd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/963127608"}, "pid": "8606", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:13.542371 2024-09-11 09:09:13.542373 fefc536e-b970-4e1a-b238-fae8fc75ca87 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/963125125"}, "pid": "8607", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:13.602708 2024-09-11 09:09:13.602713 e197dd70-8e43-4001-a7e4-d078f4ea5a2e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/963005553"}, "pid": "8608", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:13.664813 2024-09-11 09:09:13.664816 3106ca9e-8b9d-4528-811d-d0b6806d023c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/962883026"}, "pid": "8609", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:13.721495 2024-09-11 09:09:13.721498 27e92aea-93f7-41d1-a841-8a2dbae8c404 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/962846104"}, "pid": "8610", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:13.782087 2024-09-11 09:09:13.78209 fe001d7d-e712-4d05-8038-5e78ce6dd0b1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/962794015"}, "pid": "8611", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:13.835681 2024-09-11 09:09:13.835685 4bef1d29-0dab-4881-8f9c-422eb20131a1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/962681539"}, "pid": "8612", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:13.897336 2024-09-11 09:09:13.89734 27bec4eb-f75f-46ba-b393-8ed355dd105d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/962256978"}, "pid": "8613", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:13.962339 2024-09-11 09:09:13.962341 3221dffe-014c-4b07-9830-91caa7b95ba1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/962005959"}, "pid": "8614", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:14.028738 2024-09-11 09:09:14.028743 c8c6a730-b360-41ca-a6ea-c83c326818e0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/961909021"}, "pid": "8615", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:14.086944 2024-09-11 09:09:14.086948 f6b8cac4-f5d1-4e58-88a9-fdbe2c5b0058 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/961468319"}, "pid": "8616", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:14.147059 2024-09-11 09:09:14.147062 49dd1b3a-7524-44e0-94bd-2bb9c2e2dba9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/960936785"}, "pid": "8617", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:14.209766 2024-09-11 09:09:14.209771 ab745cf0-a86a-41c3-881d-1dc3f98caea3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/960733108"}, "pid": "8618", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:14.276229 2024-09-11 09:09:14.276231 a0de4048-5217-48c5-a303-12f8ed08264f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/960658491"}, "pid": "8619", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:14.333403 2024-09-11 09:09:14.333408 4d2c4ded-3a3c-41f8-9684-46c44cec35b3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/960161872"}, "pid": "8620", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:14.388198 2024-09-11 09:09:14.388203 d54aed10-d772-4425-8127-d49fd21d2dba {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/959965831"}, "pid": "8621", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:14.443009 2024-09-11 09:09:14.443013 d302e8cf-57e6-4b01-a786-12a59053b7b4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/959960775"}, "pid": "8622", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:14.495137 2024-09-11 09:09:14.495141 cc547ff2-15d7-4245-aee3-01b06978b5ec {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/959893202"}, "pid": "8623", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:14.555303 2024-09-11 09:09:14.555307 e3e8413f-2149-46b6-b95c-94747c020a46 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/959807241"}, "pid": "8624", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:14.612075 2024-09-11 09:09:14.61208 d512687a-cdec-4a95-b579-61791a7c508d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/959710248"}, "pid": "8625", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:14.664962 2024-09-11 09:09:14.664967 b9b0f951-6120-4c51-81c6-eeb752c76e30 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/959143459"}, "pid": "8626", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:14.722729 2024-09-11 09:09:14.722732 8a3ffc4e-5fd8-42fe-8616-de702eb8d10a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/958745404"}, "pid": "8627", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:14.777619 2024-09-11 09:09:14.777622 97ba3d6a-052c-477a-93e1-2c14ddb8fb47 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/958745374"}, "pid": "8628", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:14.833531 2024-09-11 09:09:14.833533 28634618-de87-448d-96d0-09fd9c40a2f1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/958745307"}, "pid": "8629", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:14.889198 2024-09-11 09:09:14.889201 1df73f33-2abd-4d63-a1d6-2243a9b6fe24 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/958577447"}, "pid": "8630", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:14.94966 2024-09-11 09:09:14.949665 b9f1bc0f-762a-4f75-91ac-bcd25b093b93 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/958508402"}, "pid": "8631", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:15.005061 2024-09-11 09:09:15.005065 c67410e7-feb7-49bb-b2df-a9f38dd218cc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/958195455"}, "pid": "8632", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:15.059714 2024-09-11 09:09:15.059717 dd6fcb5d-d2e7-424a-8a29-f9b025775612 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/958121966"}, "pid": "8633", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:15.114913 2024-09-11 09:09:15.114918 da6f8214-5a66-4946-ad64-671b9eb77415 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/957564554"}, "pid": "8634", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:15.170155 2024-09-11 09:09:15.170159 ebff5086-2de2-43c0-9b80-791533e05a27 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/957193599"}, "pid": "8635", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:15.222174 2024-09-11 09:09:15.222178 05a89d1c-63d7-4061-a3dc-998f4d6d6524 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/957133235"}, "pid": "8636", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:15.276174 2024-09-11 09:09:15.276179 e92cd48d-0004-41a3-9825-8275ccc6d20d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/956836976"}, "pid": "8637", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:15.331379 2024-09-11 09:09:15.331384 0086334b-7ec5-4c14-b502-f7ed3e8274bb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/956033679"}, "pid": "8638", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:15.389712 2024-09-11 09:09:15.389715 c0a6bce1-a470-4e12-8d6c-4efc9bf20563 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/955952638"}, "pid": "8639", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:15.447109 2024-09-11 09:09:15.447112 5f97804b-5117-453a-9f27-94b4d09a4fd4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/955845483"}, "pid": "8640", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:15.510854 2024-09-11 09:09:15.510858 b1893b47-5943-46aa-b40d-b3638be0bfb2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/955777844"}, "pid": "8641", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:15.579629 2024-09-11 09:09:15.579632 cb17caf9-af77-46fd-930b-2c22c3747bff {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/955671906"}, "pid": "8642", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:15.632983 2024-09-11 09:09:15.632987 764097b2-067d-4597-8fd5-b52bd847a226 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/955633087"}, "pid": "8643", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:15.689449 2024-09-11 09:09:15.689452 74c8d018-7e4e-4e94-84bf-1531f7816115 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/955631963"}, "pid": "8644", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:15.743452 2024-09-11 09:09:15.743455 0d938f66-02ea-41b7-ac0d-7a720c432939 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/955522552"}, "pid": "8645", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:15.802349 2024-09-11 09:09:15.802353 f3e523fb-30be-4793-8360-6b9596a450ea {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/955510392"}, "pid": "8646", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:15.855428 2024-09-11 09:09:15.855431 79a9563e-87da-4fb4-9959-8df284d0b9cf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/955497205"}, "pid": "8647", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:15.909942 2024-09-11 09:09:15.909947 6a443efb-d916-4465-ac5c-b8829a7b4ac5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/955324300"}, "pid": "8648", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:15.966653 2024-09-11 09:09:15.966659 25dcd9db-3b72-4977-a37c-074afe85fb1d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/955297966"}, "pid": "8649", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:16.021211 2024-09-11 09:09:16.021217 6fee3dbf-3a9d-46f3-ae67-ca56f26ebf77 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/955286999"}, "pid": "8650", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:16.083304 2024-09-11 09:09:16.083313 2a688e98-a2b7-4592-93b3-35e7657b4aff {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/955249929"}, "pid": "8651", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:16.143973 2024-09-11 09:09:16.143976 8aa439b2-bb01-4988-9f31-c59f10c5c4c2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/955181178"}, "pid": "8652", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:16.219349 2024-09-11 09:09:16.219354 5d31f7a2-e955-402a-b448-35a75c78ec22 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/955150507"}, "pid": "8653", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:16.273016 2024-09-11 09:09:16.27302 1989f09e-e501-4fdd-9130-c671cf0a19b0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/954752554"}, "pid": "8654", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:16.333576 2024-09-11 09:09:16.333581 ecda58e4-67cb-4bbb-8c50-6ef61634d140 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/95471752X"}, "pid": "8655", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:16.388005 2024-09-11 09:09:16.388007 624733b0-725d-456b-b30f-f87759650ae8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/95469483X"}, "pid": "8656", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:16.451267 2024-09-11 09:09:16.451277 d582ba04-7796-4fe3-b62f-f9541137817b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/954658248"}, "pid": "8657", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:16.514638 2024-09-11 09:09:16.514641 bd7db5fb-f6b4-4e16-8ea1-3b5b8111b47d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/95439836X"}, "pid": "8658", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:16.568979 2024-09-11 09:09:16.56902 abc6e472-08fd-4a4c-9551-68a058aaf5a9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/954299973"}, "pid": "8659", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:16.636192 2024-09-11 09:09:16.636197 a6cbc4c8-0b93-4956-b900-ac3e5122a3c4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/954068572"}, "pid": "8660", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:16.705627 2024-09-11 09:09:16.705631 275b9ba9-b8ce-422d-836b-4cc40db5d17b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/95406853X"}, "pid": "8661", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:16.769173 2024-09-11 09:09:16.769176 536e803c-bc6b-443c-87a1-61270a8cf578 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/954021185"}, "pid": "8662", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:16.832879 2024-09-11 09:09:16.832884 14ddc452-0148-4e45-b5d3-b8835e870527 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/953936503"}, "pid": "8663", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:16.885776 2024-09-11 09:09:16.88578 067205f2-3a78-4200-b513-c5fc26c6af7d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/953467732"}, "pid": "8664", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:16.939695 2024-09-11 09:09:16.9397 a8c0de87-3372-464b-b934-38b0bd8a85b6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/953463176"}, "pid": "8665", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:16.998636 2024-09-11 09:09:16.99864 8dac129e-62d1-4115-a66e-64e406098675 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/953354431"}, "pid": "8666", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:17.062574 2024-09-11 09:09:17.062578 32477a91-89a2-4af8-a084-badecac384c9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/95324590X"}, "pid": "8667", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:17.124957 2024-09-11 09:09:17.124961 6775f7d4-9d32-4e64-9a8c-2346402c20be {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/953019209"}, "pid": "8668", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:17.184582 2024-09-11 09:09:17.184585 9c3b414f-ae8b-45b6-bd7a-94b6f216aff2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/953011992"}, "pid": "8669", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:17.242109 2024-09-11 09:09:17.242114 56478dc5-bb39-4070-8833-f71ece2dd741 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/952966336"}, "pid": "8670", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:17.303206 2024-09-11 09:09:17.303209 7089156e-0b64-4e3a-b02c-6fc8fbac4da8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/952945991"}, "pid": "8671", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:17.365686 2024-09-11 09:09:17.365689 54c0f1af-83b3-48be-9ea7-4f109ad4dad9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/952945819"}, "pid": "8672", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:17.420922 2024-09-11 09:09:17.420926 284de485-960d-46f5-be3b-89f0cef416a0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/952794357"}, "pid": "8673", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:17.474256 2024-09-11 09:09:17.474261 86c75e15-627c-4c79-978c-6fe96ab765d2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/952319888"}, "pid": "8674", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:17.540264 2024-09-11 09:09:17.540268 014b416e-e4fe-4255-8a38-f2c2241fe68f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/952090163"}, "pid": "8675", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:17.605265 2024-09-11 09:09:17.605266 bd753ea3-a233-4bec-a90f-5bf43a65c889 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/952082098"}, "pid": "8676", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:17.661912 2024-09-11 09:09:17.661916 766c11dd-bcd7-4ef3-93a1-4fd13b3aabd3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/951939440"}, "pid": "8677", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:17.715211 2024-09-11 09:09:17.715214 fa7762ab-c821-47fe-9e45-ffab05c7e8ac {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/95171337X"}, "pid": "8678", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:17.766258 2024-09-11 09:09:17.766263 341b9211-145d-41e2-9f3e-759ded5c3210 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/951567241"}, "pid": "8679", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:17.821193 2024-09-11 09:09:17.821197 c4082676-b57c-4007-8d74-5f4c4169487a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/951452940"}, "pid": "8680", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:17.875985 2024-09-11 09:09:17.87599 b0d4a917-5184-4724-9f0a-98648987acdc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/95136653X"}, "pid": "8681", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:17.933016 2024-09-11 09:09:17.933019 db2d1159-bd39-49a4-ae2b-76e12486751c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/951151541"}, "pid": "8682", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:17.993862 2024-09-11 09:09:17.993866 dae56b62-ce71-4bb1-81c3-084b09bc612e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/951040960"}, "pid": "8683", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:18.054602 2024-09-11 09:09:18.054606 cd3bdea4-cda6-43e6-9cc5-72d836fc5572 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/950872555"}, "pid": "8684", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:18.107822 2024-09-11 09:09:18.107826 9ace0a25-d9c7-4068-839d-47980402ddf2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/95058410X"}, "pid": "8685", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:18.169344 2024-09-11 09:09:18.169347 311838b3-e78e-48e8-8789-487cdcb17317 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/950461083"}, "pid": "8686", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:18.23275 2024-09-11 09:09:18.232754 1bd38c8f-84b0-416e-8ebb-521016738288 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/950453544"}, "pid": "8687", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:18.296329 2024-09-11 09:09:18.296333 103cb7d6-5501-4c93-afa8-c70170a5da7d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/950378682"}, "pid": "8688", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:18.3524 2024-09-11 09:09:18.352405 a9735441-dc84-448a-949c-40e6b47c2b24 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/950378658"}, "pid": "8689", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:18.407988 2024-09-11 09:09:18.407992 af0638d3-f1d2-4b47-b5d3-7f821b7c38f2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/950280984"}, "pid": "8690", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:18.462294 2024-09-11 09:09:18.462297 938ff8f9-face-4192-b2c6-48060338fa77 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/950268593"}, "pid": "8691", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:18.516144 2024-09-11 09:09:18.516148 c99d5140-69e0-4c7f-8748-816c46d2597b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/94996591X"}, "pid": "8692", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:18.572133 2024-09-11 09:09:18.572136 92c0dfc1-986c-4535-ac76-383682121e00 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/949736864"}, "pid": "8693", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:18.628108 2024-09-11 09:09:18.628112 bdb251cd-756e-4179-9bff-5d994b163a31 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/949582964"}, "pid": "8694", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:18.684937 2024-09-11 09:09:18.684942 1687c709-ed9e-4b84-9e83-ae3b9496da64 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/94925584X"}, "pid": "8695", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:18.751704 2024-09-11 09:09:18.75171 9fc903b2-72cf-4e46-8599-a7e5490d90a3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/949178594"}, "pid": "8696", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:18.81577 2024-09-11 09:09:18.815774 72e652ed-9d98-482f-996b-498c880aab79 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/948985429"}, "pid": "8697", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:18.870105 2024-09-11 09:09:18.870108 771fee85-a4f9-483e-bd49-5cbf550274e9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/948861975"}, "pid": "8698", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:18.931511 2024-09-11 09:09:18.931516 af5dd1a1-9d29-4086-a0b7-fb51e03a6307 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/948734418"}, "pid": "8699", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:18.984905 2024-09-11 09:09:18.984908 4e94a5f0-54af-4c24-917d-feb69cb991c1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/948616792"}, "pid": "8700", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:19.041219 2024-09-11 09:09:19.041224 8ec84829-4524-45e7-8f2d-d547fd2c6caa {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/948581387"}, "pid": "8701", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:19.098782 2024-09-11 09:09:19.098787 fe9d7fd6-02be-4d40-955a-bf5760350434 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/948367032"}, "pid": "8702", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:19.151379 2024-09-11 09:09:19.151382 2baccbe5-429a-469e-999f-451e3703fb2c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/948358742"}, "pid": "8703", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:19.209522 2024-09-11 09:09:19.209524 0f40f27f-a131-4850-9f5e-42a65415be1c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/94818387X"}, "pid": "8704", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:19.264934 2024-09-11 09:09:19.264938 b791c3bb-ee01-4d1f-b868-bb03aa590288 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/948059028"}, "pid": "8705", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:19.325327 2024-09-11 09:09:19.325332 211fbd74-27de-46f2-9ab0-b6cb459de0f1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/948023465"}, "pid": "8706", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:19.38894 2024-09-11 09:09:19.388944 9659beac-49fe-453e-8e6a-7d3dfdaf14ab {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/947999043"}, "pid": "8707", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:19.445045 2024-09-11 09:09:19.44505 56ee2de6-0ef4-4bd8-9a3a-a0f09359019b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/947807691"}, "pid": "8708", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:19.502376 2024-09-11 09:09:19.502379 6e55e462-a4e6-4119-92c6-d04861edd8b5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/947667040"}, "pid": "8709", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:19.555562 2024-09-11 09:09:19.555566 fb21a86f-f59e-4978-93d2-484077be4813 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/947636676"}, "pid": "8710", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:19.611241 2024-09-11 09:09:19.611246 4166d5bf-3a39-4081-8378-36a86335fefb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/947568441"}, "pid": "8711", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:19.668748 2024-09-11 09:09:19.668753 dedc15de-066b-405e-9d32-065ee40d9c4a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/947543112"}, "pid": "8712", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:19.719138 2024-09-11 09:09:19.719141 6b2e7b6a-752a-4404-8712-7598d7d094c5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/947466223"}, "pid": "8713", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:19.772339 2024-09-11 09:09:19.772344 46e00a47-7d66-4a8b-9491-76097c6922a5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/947465928"}, "pid": "8714", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:19.828333 2024-09-11 09:09:19.828337 fd9ab2cf-d71a-4a38-abcc-1a7c05db1c1a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/947415874"}, "pid": "8715", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:19.884627 2024-09-11 09:09:19.884632 ed2b7774-ac2b-4114-9397-72efa34a7da8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/947397213"}, "pid": "8716", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:19.950568 2024-09-11 09:09:19.950572 cd29d0e3-2e43-4169-9ea4-bd29cbb5de0a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/947389229"}, "pid": "8717", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:20.008551 2024-09-11 09:09:20.008554 5c909e9b-847c-49c8-8d98-ddbca9bd4fac {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/94736093X"}, "pid": "8718", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:20.063608 2024-09-11 09:09:20.063612 27ee7a73-03fd-4345-a00d-9daed2985d30 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/947337555"}, "pid": "8719", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:20.120175 2024-09-11 09:09:20.12018 64393269-dce2-417a-8952-c564b1999d68 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/947167293"}, "pid": "8720", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:20.184323 2024-09-11 09:09:20.184326 6e4a47b2-d873-425d-b175-ae247b4d629d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/947085017"}, "pid": "8721", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:20.2419 2024-09-11 09:09:20.241904 edc8e959-d9cf-4e0f-9695-7eccf9b9c813 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/947015388"}, "pid": "8722", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:20.298439 2024-09-11 09:09:20.298442 032cc9ca-5379-4406-8353-0eb654fb9a96 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/946998051"}, "pid": "8723", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:20.353983 2024-09-11 09:09:20.353986 56a4b120-0377-4d5c-b7a6-725bfb8b325f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/946944210"}, "pid": "8724", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:20.419108 2024-09-11 09:09:20.419113 d01a049f-e3b6-4c7c-aba2-3252e7ee9152 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/946868093"}, "pid": "8725", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:20.485645 2024-09-11 09:09:20.485649 7f022b23-c2d4-4302-9d8f-7ceb41ff8fa3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/946792631"}, "pid": "8726", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:20.547181 2024-09-11 09:09:20.547185 2074f944-83dc-4755-9a43-3dae1b6e716f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/946776164"}, "pid": "8727", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:20.603839 2024-09-11 09:09:20.603844 7ce5765c-3595-4e0c-887e-916d62e427f8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/946530629"}, "pid": "8728", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:20.663669 2024-09-11 09:09:20.663673 31822132-ba7c-40c8-b515-8623c274c908 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/94646085X"}, "pid": "8729", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:20.731123 2024-09-11 09:09:20.731128 ef33a851-ae3f-43d6-91fb-f5e19c08d5de {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/946062706"}, "pid": "8730", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:20.793364 2024-09-11 09:09:20.793367 fa18e3e8-1abb-4971-a4e9-ec474e3cde60 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/946022895"}, "pid": "8731", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:20.848663 2024-09-11 09:09:20.848666 1ead4bda-ee66-441f-8ce7-f7e5bd640ee4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/94601888X"}, "pid": "8732", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:20.90962 2024-09-11 09:09:20.909625 4e5c3d90-b3b7-4fb0-bf9e-b773e0fb86b8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/945863837"}, "pid": "8733", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:20.97352 2024-09-11 09:09:20.973524 a8c305d6-b1b8-48f8-be32-a62f615ae852 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/944522297"}, "pid": "8734", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:21.032454 2024-09-11 09:09:21.032458 763a32d9-8cc8-487f-9bd4-0c026e6dd56a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/944502172"}, "pid": "8735", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:21.088134 2024-09-11 09:09:21.088137 527035ea-03d4-4e87-ae75-bc45bcfcf906 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/944484611"}, "pid": "8736", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:21.145363 2024-09-11 09:09:21.145367 88fb33dc-4bf4-4f22-9276-e86428cc57cc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/94430396X"}, "pid": "8737", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:21.199439 2024-09-11 09:09:21.199445 086dc2ae-8ca9-438c-86e3-5b79e7ccfb32 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/943889170"}, "pid": "8738", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:21.256041 2024-09-11 09:09:21.256045 0e3c8d2c-58a3-43fe-b486-123d83770c07 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/943836476"}, "pid": "8739", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:21.314266 2024-09-11 09:09:21.31427 b690784f-9587-4c0a-be54-59a6921f0ed4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/943625394"}, "pid": "8740", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:21.377208 2024-09-11 09:09:21.377213 40a639bb-99fd-4d5b-95de-22f7eb6c4101 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/943440017"}, "pid": "8741", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:21.442905 2024-09-11 09:09:21.44291 1be881f3-7565-41f3-8c25-d44af88b81a4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/94337426X"}, "pid": "8742", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:21.50013 2024-09-11 09:09:21.500135 00e0a8bd-f181-4fbd-a877-12046f4b535a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/943258170"}, "pid": "8743", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:21.559124 2024-09-11 09:09:21.559127 737a9126-6454-4144-9497-6f6922216ce6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/943209374"}, "pid": "8744", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:21.617752 2024-09-11 09:09:21.617757 97de2911-5d9b-4213-aece-b75729bb4731 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/942627644"}, "pid": "8745", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:21.671721 2024-09-11 09:09:21.671724 4133c525-1335-491b-abfd-77a1e418236b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/942531639"}, "pid": "8746", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:21.729017 2024-09-11 09:09:21.72902 8d6e50d2-ca06-4991-aa1b-5108c7c2232b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/942348036"}, "pid": "8747", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:21.785668 2024-09-11 09:09:21.785674 26f56b59-f3c3-4349-9445-75cc480f09da {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/942346300"}, "pid": "8748", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:21.840883 2024-09-11 09:09:21.840888 31c18016-867f-4adc-9d86-f2834138a8d5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/942142845"}, "pid": "8749", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:21.895347 2024-09-11 09:09:21.895349 4ad7c2f6-d8b4-4046-8abf-e30c28cfce90 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/94203712X"}, "pid": "8750", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:21.951989 2024-09-11 09:09:21.951995 1606e775-5903-4aaf-8a14-3896819b488e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/941869121"}, "pid": "8751", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:22.021542 2024-09-11 09:09:22.021547 fae167b5-abc0-4b34-ac67-d460e9405a0e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/941589021"}, "pid": "8752", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:22.075063 2024-09-11 09:09:22.075068 1e224950-ebc5-4bfa-bccd-d25a14cc4312 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/941532704"}, "pid": "8753", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:22.123621 2024-09-11 09:09:22.123624 5fd39ead-35f1-44e1-8de2-cb0cdbf69536 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/941495256"}, "pid": "8754", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:22.178948 2024-09-11 09:09:22.178951 abacde40-b862-48f9-93a6-56171cc5e88e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/941482774"}, "pid": "8755", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:22.235357 2024-09-11 09:09:22.23536 e8a4b1d0-89c8-4779-b595-5a43dec48484 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/941366138"}, "pid": "8756", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:22.290657 2024-09-11 09:09:22.290661 760d4ada-1aa9-4e78-8f72-edabfbff2621 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/941365050"}, "pid": "8757", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:22.344853 2024-09-11 09:09:22.344858 087b15ee-69be-41d9-b90c-0bea65fd369b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/941158748"}, "pid": "8758", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:22.393382 2024-09-11 09:09:22.393387 0f976004-dbfc-4508-8cdf-8687741b75b5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/941131572"}, "pid": "8759", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:22.442558 2024-09-11 09:09:22.442563 0bf5f566-bfc4-4e4f-8e8c-27ecee0927a7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/940921588"}, "pid": "8760", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:22.498354 2024-09-11 09:09:22.498358 494937c7-0a58-4be4-a478-125a029b1776 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/940807904"}, "pid": "8761", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:22.551705 2024-09-11 09:09:22.551709 13dcf171-5939-4fdf-a5e2-e8626dcfe387 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/940788187"}, "pid": "8762", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:22.606085 2024-09-11 09:09:22.606089 53faa60c-3e31-4d55-b9c1-e26bd5ea2394 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/940762048"}, "pid": "8763", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:22.666968 2024-09-11 09:09:22.666989 1f01a7e2-360c-4b00-b092-fef8eaec52ee {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/940758776"}, "pid": "8764", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:22.72312 2024-09-11 09:09:22.723124 ed94166c-a8b4-46fb-a3bb-ad8a790554e7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/940755459"}, "pid": "8765", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:22.780572 2024-09-11 09:09:22.780575 1c458168-2f46-45bb-9af5-6ae8ebae3174 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/94074449X"}, "pid": "8766", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:22.846954 2024-09-11 09:09:22.846958 f985fd63-b4c8-44df-b25a-50bd41b0b972 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/940604833"}, "pid": "8767", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:22.902084 2024-09-11 09:09:22.902088 a538a1d5-89e3-4631-8f0a-296d140bfce3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/940540959"}, "pid": "8768", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:22.958478 2024-09-11 09:09:22.958482 d92b8ac5-0d16-4501-af8f-c1c4df3b88ef {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/940535912"}, "pid": "8769", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:23.014281 2024-09-11 09:09:23.014285 fe43effa-cb87-47a4-9e3d-4854478ac950 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/94052113X"}, "pid": "8770", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:23.073845 2024-09-11 09:09:23.073849 460bf2ba-f682-4136-8f35-585cd5a95dbc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/940125897"}, "pid": "8771", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:23.140494 2024-09-11 09:09:23.140497 493e0c39-c46b-480f-a658-089f03ab0720 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/940111187"}, "pid": "8772", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:23.203287 2024-09-11 09:09:23.203291 fb5adc73-f33e-409c-b334-349e6957d3a5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/940085798"}, "pid": "8773", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:23.2673 2024-09-11 09:09:23.267305 c34e49b5-274c-4b58-bac3-71ce5ef11551 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/940049570"}, "pid": "8774", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:23.318919 2024-09-11 09:09:23.318925 fe9cf596-a07e-4e8f-83ce-d03d3b2add6d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/940035731"}, "pid": "8775", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:23.373111 2024-09-11 09:09:23.373115 558c7fc6-9768-47bb-a850-c172b510747f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/199279101"}, "pid": "8776", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:23.428579 2024-09-11 09:09:23.428584 217a4270-329f-498c-8edd-d2bb6a815494 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/199254435"}, "pid": "8777", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:23.488349 2024-09-11 09:09:23.488362 6d891fc7-be93-437d-b44d-f503e9e017cc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/199249903"}, "pid": "8778", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:23.547274 2024-09-11 09:09:23.547277 dd8ded26-c224-4333-8cf2-12ef12f7ae29 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/199099952"}, "pid": "8779", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:23.601898 2024-09-11 09:09:23.601902 b31a136a-9cd2-4510-87a4-527ac0405a1d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/130755087"}, "pid": "8780", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:23.657808 2024-09-11 09:09:23.657812 12a59baf-8771-44ec-9562-44faad163d17 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/130749478"}, "pid": "8781", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:23.712099 2024-09-11 09:09:23.712102 ed5fa1ee-b2d0-4279-b9f6-236ffb6ccc4b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/130741531"}, "pid": "8782", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:23.771102 2024-09-11 09:09:23.771105 63f018af-6a56-4a57-9e64-e29a4a50a626 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/130722529"}, "pid": "8783", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:23.832175 2024-09-11 09:09:23.832179 a8548bc1-c32a-4da8-83f4-2de55c7cccc7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/130715107"}, "pid": "8784", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:23.884615 2024-09-11 09:09:23.88462 c8797e72-e2d1-4687-9b46-6f1c66493a34 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/130712930"}, "pid": "8785", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:23.940152 2024-09-11 09:09:23.940156 aa95e859-c41b-4dfa-9eee-8857a428691a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/13071206X"}, "pid": "8786", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:23.993561 2024-09-11 09:09:23.993565 5f7ccdb0-d26d-491d-9345-997bb466ada6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/130700525"}, "pid": "8787", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:24.069967 2024-09-11 09:09:24.06997 9184511a-b81a-4b1d-b2e0-0050e563dc98 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/130699152"}, "pid": "8788", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:24.131208 2024-09-11 09:09:24.131211 220c270f-c7b4-46bd-b3d1-aa7e1fb1df6f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/130699101"}, "pid": "8789", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:24.184945 2024-09-11 09:09:24.184951 55032080-a247-4d66-b50c-46b6751ae983 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/130698644"}, "pid": "8790", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:24.239859 2024-09-11 09:09:24.239863 f018bf72-3fae-440b-8303-2f13a555ddf4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043280072"}, "pid": "8791", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:24.296988 2024-09-11 09:09:24.296994 f53293b0-de0d-42b5-a0af-61cda0c52146 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043270972"}, "pid": "8792", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:24.350853 2024-09-11 09:09:24.350857 9282ba8c-1822-4936-9416-030d8da7e1a3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043270328"}, "pid": "8793", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:24.403559 2024-09-11 09:09:24.403562 29b6f055-14e8-41fc-a28b-f110ba3adf8c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043269605"}, "pid": "8794", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:24.458145 2024-09-11 09:09:24.458147 aff59424-f6a9-4228-9a10-f505c66601ba {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043265006"}, "pid": "8795", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:24.512699 2024-09-11 09:09:24.512703 2701d234-4d74-415a-a4fa-03bcce138250 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043229395"}, "pid": "8796", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:24.572498 2024-09-11 09:09:24.572501 635293c9-ae4c-499c-bdc4-43d91858124b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043225276"}, "pid": "8797", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:24.634382 2024-09-11 09:09:24.634387 665c95f5-fd42-432b-93df-ec76849750c0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043220797"}, "pid": "8798", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:24.690533 2024-09-11 09:09:24.690537 f9dff874-08cc-4816-a11f-a850bcc5c308 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043196063"}, "pid": "8799", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:24.743191 2024-09-11 09:09:24.743196 3829e202-7156-40ca-ae68-b010d53272e6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043172415"}, "pid": "8800", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:24.801886 2024-09-11 09:09:24.801889 6279c620-306b-493c-b059-d669196bd75f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043170854"}, "pid": "8801", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:24.863471 2024-09-11 09:09:24.863476 7cec07dd-1e4f-4a0f-a50b-23cedc6c0af8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043166644"}, "pid": "8802", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:24.916852 2024-09-11 09:09:24.916857 93c35aaa-0086-409d-8323-60af85fe49ba {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043166202"}, "pid": "8803", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:24.971232 2024-09-11 09:09:24.971236 9f91cabc-bcce-4d73-8bb4-9e1c10973a93 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04316532X"}, "pid": "8804", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:25.03153 2024-09-11 09:09:25.031534 e41bd5b9-6132-4731-bb39-d30261a611da {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043153607"}, "pid": "8805", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:25.090275 2024-09-11 09:09:25.090279 7935e65d-c836-4f89-b02b-602efc7af2c3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043134475"}, "pid": "8806", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:25.152209 2024-09-11 09:09:25.152214 eca5e918-907c-4650-992f-f55353e5f28a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043134106"}, "pid": "8807", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:25.205688 2024-09-11 09:09:25.205691 3cb3bd2f-5120-4eb7-9246-9f8ff7f13dd5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043133908"}, "pid": "8808", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:25.267422 2024-09-11 09:09:25.267425 b802f99d-2f20-4e04-96e1-31db440a9396 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043133789"}, "pid": "8809", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:25.321437 2024-09-11 09:09:25.321442 7e348c11-3b19-413a-8dff-57fa48693e06 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043126944"}, "pid": "8810", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:25.37432 2024-09-11 09:09:25.374324 5b9e7609-6acb-497b-9c4f-baee3f993c1f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043122507"}, "pid": "8811", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:25.428691 2024-09-11 09:09:25.428695 f166acbf-60d4-4c26-94b4-9d47e2ae0f6f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043119816"}, "pid": "8812", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:25.482249 2024-09-11 09:09:25.482254 60385593-032d-4af4-998f-9002e0c7eeea {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04311704X"}, "pid": "8813", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:25.542936 2024-09-11 09:09:25.54294 6542a206-a60e-447a-8bea-cbbf4eb67049 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043110290"}, "pid": "8814", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:25.59821 2024-09-11 09:09:25.598212 13f6c180-0e82-4fa0-9091-22581dc88ce3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043104754"}, "pid": "8815", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:25.651485 2024-09-11 09:09:25.65149 f1375ebc-2a5e-4a39-8b7d-7959df3c8294 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043092756"}, "pid": "8816", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:25.707053 2024-09-11 09:09:25.707057 3000788d-e74c-410c-b6f8-9360ee66b947 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043087787"}, "pid": "8817", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:25.76975 2024-09-11 09:09:25.769754 893c1b64-eaef-4003-a147-bea5b9aba328 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043079458"}, "pid": "8818", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:25.825865 2024-09-11 09:09:25.825868 4428efbd-d65e-4566-9017-0afa6c150299 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043078664"}, "pid": "8819", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:25.879967 2024-09-11 09:09:25.87997 140cb72b-525a-45ed-8413-f323a75f8dca {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043062024"}, "pid": "8820", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:25.937628 2024-09-11 09:09:25.937633 05681d85-075d-4448-94e7-374606018d30 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04304980X"}, "pid": "8821", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:25.987849 2024-09-11 09:09:25.987853 d6e2166f-fa6c-4e83-aa1e-eabdfdbe65d5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043049354"}, "pid": "8822", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:26.040938 2024-09-11 09:09:26.040943 eef03fbd-4dd9-4e70-8746-bcab688a182c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043047815"}, "pid": "8823", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:26.102117 2024-09-11 09:09:26.102121 40547b9f-d260-4cad-ab29-ed40a7d552ea {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043045820"}, "pid": "8824", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:26.164709 2024-09-11 09:09:26.164716 285032b4-bed7-49cd-9ff7-9ce8471b4bbc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043023932"}, "pid": "8825", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:26.221991 2024-09-11 09:09:26.221995 5ccbc1cc-917d-4437-92b2-0bf7b9280edc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043007708"}, "pid": "8826", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:26.275756 2024-09-11 09:09:26.275761 7d686f2d-ee0b-4fa4-866c-352c40e0aa07 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043006248"}, "pid": "8827", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:26.342968 2024-09-11 09:09:26.342973 4b5694c9-ee3f-4ce6-8bd5-51dc626ffa81 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042975174"}, "pid": "8828", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:26.408597 2024-09-11 09:09:26.408601 ef1d7d84-1ecf-468e-a0ab-f872cdbad903 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04296962X"}, "pid": "8829", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:26.469662 2024-09-11 09:09:26.469666 5c9b4b7d-81c0-4c60-9269-86a56582bd03 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042936586"}, "pid": "8830", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:26.527588 2024-09-11 09:09:26.527593 de3d66c0-42e4-4feb-acac-aa4e466c1e06 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042933854"}, "pid": "8831", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:26.583178 2024-09-11 09:09:26.583182 4c5ce0ae-923e-439a-987a-7e3ba7aec77c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042932297"}, "pid": "8832", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:26.638552 2024-09-11 09:09:26.638554 60b979b5-7e08-41e9-9857-a7a02b0100a5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042928664"}, "pid": "8833", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:26.696851 2024-09-11 09:09:26.696856 89894064-b4e0-449d-9943-33f0f4fd9344 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04291373X"}, "pid": "8834", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:26.754343 2024-09-11 09:09:26.754348 ed9463b3-9b31-440b-8282-03229a155944 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042912709"}, "pid": "8835", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:26.808828 2024-09-11 09:09:26.808832 17113d81-9992-4297-a52a-7aea0499eda9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042911915"}, "pid": "8836", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:26.876321 2024-09-11 09:09:26.876325 cf550a00-e338-4cb0-957b-9d157abb971c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042909163"}, "pid": "8837", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:26.93315 2024-09-11 09:09:26.933154 5f991e38-e776-499b-ab82-bd60272531eb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042898250"}, "pid": "8838", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:26.998343 2024-09-11 09:09:26.998346 5083ec92-9644-4cbf-a3cd-657971fdbbeb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042871255"}, "pid": "8839", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:27.055429 2024-09-11 09:09:27.055432 e1ecf1b2-a033-4324-b780-5817fa377cf3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042871093"}, "pid": "8840", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:27.113453 2024-09-11 09:09:27.113456 7a985f13-ef75-4d0d-8dfe-8d6553e86824 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042868696"}, "pid": "8841", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:27.183531 2024-09-11 09:09:27.183534 bac92ec1-7b3f-4dd8-a582-b9ed850f627c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042855098"}, "pid": "8842", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:27.24885 2024-09-11 09:09:27.248855 63650190-0fa7-448a-b8c6-d6d221f39c01 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042854083"}, "pid": "8843", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:27.329615 2024-09-11 09:09:27.329619 a743774c-c944-44e3-a225-4a1b67071a08 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042829763"}, "pid": "8844", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:27.409221 2024-09-11 09:09:27.409226 c9388fdb-1042-4f6d-bce2-1ec2e77a25c4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042829194"}, "pid": "8845", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:27.469666 2024-09-11 09:09:27.469669 767bec3f-2634-49e2-a175-9cbf836b3771 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042828465"}, "pid": "8846", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:27.527664 2024-09-11 09:09:27.527668 8edd1096-cc64-442b-b76b-a97293d9aedf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042825210"}, "pid": "8847", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:27.581275 2024-09-11 09:09:27.581279 33be358d-bea3-4f9f-af73-2c663078c4f3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042819415"}, "pid": "8848", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:27.633542 2024-09-11 09:09:27.633547 c109626c-b627-477d-bd88-d6407d6fdc87 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042817293"}, "pid": "8849", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:27.693059 2024-09-11 09:09:27.693065 2e5cc511-ed4a-42d2-9018-c9eb8cb8f874 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042813905"}, "pid": "8850", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:27.748387 2024-09-11 09:09:27.748391 7f16bba3-a50a-421b-8e4f-04a79a7aba17 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042803098"}, "pid": "8851", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:27.808382 2024-09-11 09:09:27.808387 12e35a66-d6ee-4ad8-adb7-afe878d50743 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042798779"}, "pid": "8852", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:27.862548 2024-09-11 09:09:27.862553 9fb04513-596d-429f-b08f-fda32e7c7cd4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042798760"}, "pid": "8853", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:27.919601 2024-09-11 09:09:27.919604 6a1d3934-da78-40cc-ba23-a4f487444805 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042798477"}, "pid": "8854", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:27.972781 2024-09-11 09:09:27.972785 a9ac04f2-b5cf-4501-a9f3-a95debf93b5c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042773539"}, "pid": "8855", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:28.027015 2024-09-11 09:09:28.027019 f73c8de8-0ec7-4857-b755-4c1bfd697e8e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042763568"}, "pid": "8856", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:28.079639 2024-09-11 09:09:28.079642 9f7e1c9d-39d8-4328-9cb3-daf3e3ea6382 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04276243X"}, "pid": "8857", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:28.138782 2024-09-11 09:09:28.138785 4aceabb2-56e2-4dee-bc7b-256e363c3b01 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042755255"}, "pid": "8858", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:28.194672 2024-09-11 09:09:28.194677 5a274cdd-cee4-41c0-a7cd-18e044d32509 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04275206X"}, "pid": "8859", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:28.249443 2024-09-11 09:09:28.249447 153ab9ec-2bd2-4a4d-9e0b-b78bc2835c90 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042749298"}, "pid": "8860", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:28.303785 2024-09-11 09:09:28.303788 800a9a5a-f5bd-4edd-b69f-d55f3e835d92 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042740983"}, "pid": "8861", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:28.359961 2024-09-11 09:09:28.359965 071ef287-9577-4d48-bade-d622f0efeebf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042728622"}, "pid": "8862", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:28.421416 2024-09-11 09:09:28.421419 8885017f-3a80-49dd-89bc-4fdccfa3ca46 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042725739"}, "pid": "8863", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:28.489656 2024-09-11 09:09:28.48966 237ea976-0cb7-4a79-96e3-3b45b5991b68 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042707870"}, "pid": "8864", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:28.547632 2024-09-11 09:09:28.547636 d48fe458-84e8-470c-bfdc-02ab7ce3a284 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042667208"}, "pid": "8865", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:28.601371 2024-09-11 09:09:28.601375 bc51c02e-75c9-4409-8828-eba7a1d3ca90 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04264044X"}, "pid": "8866", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:28.65617 2024-09-11 09:09:28.656172 b96591b5-34f1-4652-8bc5-b1e79d1387f3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042625025"}, "pid": "8867", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:28.713482 2024-09-11 09:09:28.713485 cc3335f2-c856-4cab-9b78-23f11a9540f7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042616727"}, "pid": "8868", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:28.769315 2024-09-11 09:09:28.769319 f40e534c-2eed-4049-9418-3be70098bff8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042612292"}, "pid": "8869", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:28.824937 2024-09-11 09:09:28.824941 80d4ba5d-cdad-4e0b-8fcc-fb25d7d261cb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042556740"}, "pid": "8870", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:28.878618 2024-09-11 09:09:28.878623 aa5f9248-5fe4-4c32-857b-fd9df1cb3770 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042552192"}, "pid": "8871", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:28.937923 2024-09-11 09:09:28.937927 87002448-bab2-4cd3-89d2-7771bdd5ae47 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04252184X"}, "pid": "8872", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:28.999063 2024-09-11 09:09:28.999068 54b4c163-1b2e-4806-8492-efa272e7da83 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04251729X"}, "pid": "8873", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:29.058851 2024-09-11 09:09:29.058855 bade3402-5d7d-4f40-a3eb-bdcc4af61551 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042496918"}, "pid": "8874", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:29.116591 2024-09-11 09:09:29.116595 e768d529-95d4-4272-b9ee-cc32748f738b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042496896"}, "pid": "8875", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:29.167321 2024-09-11 09:09:29.167324 89e6a391-c4b3-44cd-b10b-5200572485eb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042491010"}, "pid": "8876", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:29.220419 2024-09-11 09:09:29.220424 7d6873a4-f8b4-4f35-a7ca-4c754eb4994e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042479770"}, "pid": "8877", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:29.278678 2024-09-11 09:09:29.278682 057cb19e-368f-45d7-99ff-27db454e07b7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042466199"}, "pid": "8878", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:29.3359 2024-09-11 09:09:29.335905 9c71fc40-2161-4e41-967b-8436da3caa7b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04245395X"}, "pid": "8879", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:29.389714 2024-09-11 09:09:29.389717 a8d53949-43a3-498f-9736-74a612abd585 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042439086"}, "pid": "8880", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:29.438941 2024-09-11 09:09:29.438944 e0d639b3-3e74-495a-875c-2bf687b8cea0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042433517"}, "pid": "8881", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:29.501084 2024-09-11 09:09:29.501089 46e5656d-d774-4677-9d87-8f09c752ed14 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042427045"}, "pid": "8882", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:29.564855 2024-09-11 09:09:29.56486 10ca0f9b-3706-45d1-b5f9-b813aee391bb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042416795"}, "pid": "8883", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:29.621928 2024-09-11 09:09:29.621933 425182ad-6422-4ab5-923c-4b304171bb0e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042402883"}, "pid": "8884", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:29.679617 2024-09-11 09:09:29.679621 c517472d-45f2-415c-acc5-61caaf7b3c36 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042402239"}, "pid": "8885", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:29.736325 2024-09-11 09:09:29.73633 c974559d-3faa-4f66-b3e4-7427e239f245 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042363527"}, "pid": "8886", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:29.791801 2024-09-11 09:09:29.791805 528b3980-5861-462b-a1e3-f94f67d3d380 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042362466"}, "pid": "8887", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:29.846738 2024-09-11 09:09:29.846742 fd65a7a8-3d09-4951-bf35-188ef6ce3778 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042349885"}, "pid": "8888", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:29.905621 2024-09-11 09:09:29.905624 6ac85efd-41ae-45fc-b1a1-fde099f15620 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042349877"}, "pid": "8889", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:29.967418 2024-09-11 09:09:29.967423 15d945fc-e5bf-4051-a200-e73f180efa9f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042319986"}, "pid": "8890", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:30.021745 2024-09-11 09:09:30.02175 650d4ff8-d8ac-4f7b-a540-71500be00a02 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04231416X"}, "pid": "8891", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:30.081168 2024-09-11 09:09:30.081171 3c74df22-a8d2-4051-9707-5536e810c13f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042294118"}, "pid": "8892", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:30.137776 2024-09-11 09:09:30.137781 3fb25019-d2b2-426b-acf3-52df5e9af7d1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042259177"}, "pid": "8893", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:30.200224 2024-09-11 09:09:30.200229 83b0a142-a075-4373-a0c1-6bbc9bafba4d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042250234"}, "pid": "8894", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:30.25907 2024-09-11 09:09:30.259075 3832be39-be10-47ed-a447-a648064a5225 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042237688"}, "pid": "8895", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:30.314467 2024-09-11 09:09:30.31447 12845563-9a9b-44cc-a559-290cac07d990 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042221234"}, "pid": "8896", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:30.368533 2024-09-11 09:09:30.368538 ac27e23a-f638-49fd-8f27-c772d556cdaf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042208408"}, "pid": "8897", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:30.42203 2024-09-11 09:09:30.422035 32a1b5e2-ed4f-45d0-8257-b11178fcb73b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042203856"}, "pid": "8898", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:30.484441 2024-09-11 09:09:30.484445 410e328d-13e2-4c11-a696-e2f0125443ad {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042203023"}, "pid": "8899", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:30.555931 2024-09-11 09:09:30.555936 c150cb3b-79a1-4f36-a2e1-67fb326faedf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042195810"}, "pid": "8900", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:30.613169 2024-09-11 09:09:30.613172 4c1e5918-e739-478d-b6b8-a95459ea02d0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042193958"}, "pid": "8901", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:30.672452 2024-09-11 09:09:30.672455 ca298c84-c32b-4554-b4d3-e0c066d7a35a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04219007X"}, "pid": "8902", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:30.729865 2024-09-11 09:09:30.729868 ae163912-c16c-4a69-9539-0937a8d84f11 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042189748"}, "pid": "8903", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:30.78342 2024-09-11 09:09:30.783423 940508c9-4f91-4fa9-82e5-60865f322242 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042187494"}, "pid": "8904", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:30.837412 2024-09-11 09:09:30.837416 7ef9e0fb-63a4-4ab2-9759-a6c906f50370 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042180805"}, "pid": "8905", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:30.891597 2024-09-11 09:09:30.891601 fafbd5fa-0a19-4e03-ab54-18553376381c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042159458"}, "pid": "8906", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:30.947668 2024-09-11 09:09:30.947671 03176d2b-eeec-4a09-ae88-700fc5aa961e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042154316"}, "pid": "8907", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:31.009862 2024-09-11 09:09:31.009866 0171d794-28f9-4bba-b37f-ef8edf8b9c1c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042152089"}, "pid": "8908", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:31.066022 2024-09-11 09:09:31.066027 5bf1dd58-5bb4-4a1f-b981-5aa83e8f5e75 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042150876"}, "pid": "8909", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:31.12288 2024-09-11 09:09:31.122883 af42de70-c45f-49ed-ae9c-eeb54cb694ec {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042140048"}, "pid": "8910", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:31.175804 2024-09-11 09:09:31.175808 ed97886a-cab4-47fd-864a-b9538bbadbf6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042137268"}, "pid": "8911", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:31.232322 2024-09-11 09:09:31.232328 b405d6c7-28aa-46f3-9d15-74cab1248b6b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042108160"}, "pid": "8912", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:31.290112 2024-09-11 09:09:31.290115 fa17dda9-c5bc-4fb7-a8f2-ede79ca6f043 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042108152"}, "pid": "8913", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:31.344444 2024-09-11 09:09:31.344447 abebf9ba-a220-4254-b948-442a07586227 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042104068"}, "pid": "8914", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:31.399642 2024-09-11 09:09:31.399648 71fc388e-e342-4ca1-8423-d465c0445e6d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042098386"}, "pid": "8915", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:31.454744 2024-09-11 09:09:31.454748 de050b27-e4c4-47b4-a1e7-df50be54aa29 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042092175"}, "pid": "8916", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:31.511123 2024-09-11 09:09:31.511128 071ab5fb-af20-45a9-a43e-a0b114703d87 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042086280"}, "pid": "8917", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:31.60007 2024-09-11 09:09:31.600077 9328e545-f168-4946-9b76-02852b9d1b19 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04208394X"}, "pid": "8918", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:31.687754 2024-09-11 09:09:31.687757 ff0685a6-87c2-4bfd-912c-0e6f17bea7bf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042066107"}, "pid": "8919", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:31.745585 2024-09-11 09:09:31.745588 2c8c437a-5aac-433f-967b-d933d131c356 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042056349"}, "pid": "8920", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:31.799401 2024-09-11 09:09:31.799407 a89fb2a0-9db6-47f0-9ce1-f99d05833124 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042017793"}, "pid": "8921", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:31.855546 2024-09-11 09:09:31.855551 99d184ce-df6b-4330-a7b3-52fe0729707e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042017246"}, "pid": "8922", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:31.913681 2024-09-11 09:09:31.913685 528a23e2-4115-4756-9638-09dc101a5a7e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042003458"}, "pid": "8923", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:31.967216 2024-09-11 09:09:31.967221 1733828a-0de0-4e2c-a346-3ee1204a70db {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041995724"}, "pid": "8924", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:32.027085 2024-09-11 09:09:32.027088 9fe7153b-cd49-42af-8553-f6d4707a04eb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041992555"}, "pid": "8925", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:32.080324 2024-09-11 09:09:32.080327 2dc240b8-67ba-4e72-8f9a-c8a98137cb1a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041987489"}, "pid": "8926", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:32.137232 2024-09-11 09:09:32.137236 c7f5080c-7772-422f-94ab-34983a293301 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041981804"}, "pid": "8927", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:32.196765 2024-09-11 09:09:32.19677 a0a0e5f8-1ee3-45e7-8867-bbc814ead04c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041977009"}, "pid": "8928", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:32.262633 2024-09-11 09:09:32.262635 3bd95775-fe2e-420c-8f57-86069a6e4590 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041975278"}, "pid": "8929", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:32.328717 2024-09-11 09:09:32.32872 50d298e0-9adf-4a6f-af65-42fd7195905d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041954378"}, "pid": "8930", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:32.396218 2024-09-11 09:09:32.396222 28c7c98d-5a85-49c7-946a-59ce75ee504b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041954327"}, "pid": "8931", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:32.44789 2024-09-11 09:09:32.447893 20f63597-4969-4abe-b424-31a7f4f09059 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041943236"}, "pid": "8932", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:32.501016 2024-09-11 09:09:32.501022 2c233ab7-2ba5-42ac-ae72-4e4673118b16 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041928547"}, "pid": "8933", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:32.559754 2024-09-11 09:09:32.559758 f22f37a1-8e6e-4148-ae77-9886e158040b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041928326"}, "pid": "8934", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:32.63197 2024-09-11 09:09:32.631974 8d0de924-c667-422c-b6f0-ad12f92eb322 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041924878"}, "pid": "8935", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:32.688698 2024-09-11 09:09:32.688703 fcf4c705-37ce-405e-843e-3de8ecd657a3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041918754"}, "pid": "8936", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:32.744378 2024-09-11 09:09:32.744383 7e9d1a41-be1e-415f-bc1d-60f1ebab88e4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041913272"}, "pid": "8937", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:32.799573 2024-09-11 09:09:32.799578 10a35084-8f35-4a46-86cd-0cf4fbc11d94 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041911849"}, "pid": "8938", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:32.854583 2024-09-11 09:09:32.854586 21545558-da92-48b8-bede-e06fff4b5eee {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041911598"}, "pid": "8939", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:32.915949 2024-09-11 09:09:32.915959 bbda010b-3bef-49d1-a730-ac790cf11726 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041911199"}, "pid": "8940", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:32.977413 2024-09-11 09:09:32.977418 4cb15f8b-9d0c-458e-9155-1379ad557407 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041910842"}, "pid": "8941", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:33.036031 2024-09-11 09:09:33.036038 547b1b07-f02e-47d5-ac85-53bb3055cc57 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041907078"}, "pid": "8942", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:33.090895 2024-09-11 09:09:33.090899 c0e1954f-1dc1-45c0-a421-929a673b7d6a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041902955"}, "pid": "8943", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:33.146271 2024-09-11 09:09:33.146274 8ed83af3-3f98-4e9e-84a0-6b605098856d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04190186X"}, "pid": "8944", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:33.20004 2024-09-11 09:09:33.200045 4c0b7330-7939-4b5b-b12a-f8d6877e3fee {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041900804"}, "pid": "8945", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:33.255066 2024-09-11 09:09:33.25507 07ce3b94-26f0-437f-a24a-20e89f515538 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041899849"}, "pid": "8946", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:33.31373 2024-09-11 09:09:33.313734 c4d0c42d-b02c-47ee-9860-cf14640816fc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041898273"}, "pid": "8947", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:33.368388 2024-09-11 09:09:33.368392 498979c3-2956-41b4-b325-302d15569b90 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041896807"}, "pid": "8948", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:33.422197 2024-09-11 09:09:33.422201 f39b999e-b2ab-4319-add8-6318a677bfc7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041891775"}, "pid": "8949", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:33.474762 2024-09-11 09:09:33.474766 48f52a36-ab8e-4492-b6e0-7f5948833921 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041890787"}, "pid": "8950", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:33.532298 2024-09-11 09:09:33.532302 9e7f85f8-dcce-43af-b252-22fdc60a8ada {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041889959"}, "pid": "8951", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:33.590758 2024-09-11 09:09:33.590761 3d8b9594-bd2d-4955-836a-826f54426994 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041887913"}, "pid": "8952", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:33.650205 2024-09-11 09:09:33.650208 7415ffce-acc8-491c-9b72-d9e62f02b2e2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041887786"}, "pid": "8953", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:33.711775 2024-09-11 09:09:33.711779 d55871a7-2746-4551-ae71-b0d1e62481af {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041884612"}, "pid": "8954", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:33.777989 2024-09-11 09:09:33.777993 2dd6e7af-d9d8-4335-be45-330a2100ce36 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041882229"}, "pid": "8955", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:33.83382 2024-09-11 09:09:33.833822 eb91822c-4952-4c91-98e8-13f1be40cde7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041881745"}, "pid": "8956", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:08:20.571215 2024-09-11 09:09:33.898765 229f8a0c-a191-43e5-9579-9f6cf65bdf43 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041878515"}, "pid": "7744", "type": "bf:Topic", "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/033869235"}, "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 2 +2024-09-11 09:09:33.95916 2024-09-11 09:09:33.959163 187abeaf-7d64-44f5-aec6-aa52afb001ec {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041876938"}, "pid": "8957", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:34.013212 2024-09-11 09:09:34.013216 6256a94a-d0e0-4e5f-99d9-046927548e4e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041874919"}, "pid": "8958", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:34.073226 2024-09-11 09:09:34.073229 58c37b21-c93b-4f4c-b430-37e2d198a044 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041873270"}, "pid": "8959", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:34.125733 2024-09-11 09:09:34.125738 8a78fb80-04c1-4d08-969b-214128e20306 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041871286"}, "pid": "8960", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:34.182293 2024-09-11 09:09:34.182295 8637fcd7-207f-4d5b-9cff-780fe9a9ed3c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041871189"}, "pid": "8961", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:34.245117 2024-09-11 09:09:34.24512 456cbb99-cc2d-43ad-9847-882813153408 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041867785"}, "pid": "8962", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:34.299358 2024-09-11 09:09:34.299363 f7e6dc4e-5222-420a-93ee-89f885b484ed {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041863488"}, "pid": "8963", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:34.360333 2024-09-11 09:09:34.360337 d80521d6-4b8d-4b0f-ac16-4596df6621ca {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04186347X"}, "pid": "8964", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:34.419209 2024-09-11 09:09:34.419217 f5fbdb70-b1ea-43de-9ca3-2bb4af37ca6e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041862473"}, "pid": "8965", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:34.477482 2024-09-11 09:09:34.477486 0c156ce0-65d1-4946-8063-7e7e4addcd61 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041862465"}, "pid": "8966", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:34.535997 2024-09-11 09:09:34.536002 03bb7838-f866-40d1-b769-c2741e9da6d6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041841387"}, "pid": "8967", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:34.595204 2024-09-11 09:09:34.595208 2b8c2468-a71b-44a1-b72d-74a8c99eda1e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041835662"}, "pid": "8968", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:34.662439 2024-09-11 09:09:34.662443 d2fcecb5-4a13-43cc-b5ee-bde5d1917aa6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041833333"}, "pid": "8969", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:34.732399 2024-09-11 09:09:34.732404 bec2ef2f-f3d2-4bdc-b863-a8935f19c3d0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041830989"}, "pid": "8970", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:34.78819 2024-09-11 09:09:34.788194 083b17b8-8a29-4bd3-a0fc-87447198c6b0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041823788"}, "pid": "8971", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:34.847466 2024-09-11 09:09:34.84747 ee010d41-e9c5-4cb6-872a-b4d8014dcbeb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04182265X"}, "pid": "8972", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:34.904885 2024-09-11 09:09:34.904887 ff0cd0a1-9e43-4c1e-8f64-dc1d38758b4d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041809858"}, "pid": "8973", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:34.957863 2024-09-11 09:09:34.957867 c3cd4cc2-fe1b-4594-a472-70c27c513ce9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041809165"}, "pid": "8974", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:35.03677 2024-09-11 09:09:35.036774 1e88884b-4732-4e0d-be3a-f73db01e4677 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041808525"}, "pid": "8975", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:35.103442 2024-09-11 09:09:35.103446 f3e334c6-7129-410c-aba6-59e668683732 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041807677"}, "pid": "8976", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:35.165223 2024-09-11 09:09:35.165227 c9d6e170-99c8-4b14-a45b-4468647bebff {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041805348"}, "pid": "8977", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:35.226551 2024-09-11 09:09:35.226555 4e77110f-260e-47cc-b2e6-c658e402b52c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04180466X"}, "pid": "8978", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:35.280538 2024-09-11 09:09:35.28054 a8051675-55d7-4e08-90d0-f198c3b641eb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041802659"}, "pid": "8979", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:35.342886 2024-09-11 09:09:35.342891 be5a6b1f-0d28-4033-93eb-80a205de8da0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041798813"}, "pid": "8980", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:35.396996 2024-09-11 09:09:35.397 657e96bd-9874-42a6-8696-8671a0016798 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041794524"}, "pid": "8981", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:35.454797 2024-09-11 09:09:35.454802 8f807ca3-b260-4add-981c-ae748038a7cd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041792432"}, "pid": "8982", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:35.5155 2024-09-11 09:09:35.515504 e318e57a-5ce4-4391-919d-13ec68742b2e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041785215"}, "pid": "8983", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:35.573239 2024-09-11 09:09:35.573243 63962a42-17f5-4467-8b0d-e1827436be51 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041784839"}, "pid": "8984", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:35.633268 2024-09-11 09:09:35.633274 e13e87fb-2dea-4ab3-a68e-1c9a877f15d2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041781635"}, "pid": "8985", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:35.694978 2024-09-11 09:09:35.69498 afdc9a1b-8fd3-4045-85b6-00615527b6c0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041779452"}, "pid": "8986", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:35.756929 2024-09-11 09:09:35.756932 78d15de0-81d5-4967-a377-2413cf6992bf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041774434"}, "pid": "8987", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:35.824078 2024-09-11 09:09:35.824082 a6559cf3-47a4-4e38-bbdf-d4dee8998ea8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041772822"}, "pid": "8988", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:35.881213 2024-09-11 09:09:35.881217 b159a58b-f918-400e-9788-9fbfd98f5d00 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041772768"}, "pid": "8989", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:35.933886 2024-09-11 09:09:35.933891 7049d4d4-46da-4975-b4ed-10e09b825b74 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041767934"}, "pid": "8990", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:35.990922 2024-09-11 09:09:35.990926 b7819c38-3c23-4459-819c-a3db3fb6c858 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041766717"}, "pid": "8991", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:36.048075 2024-09-11 09:09:36.048078 2cd70f25-4b8c-4cd2-95c3-362b9fafbbcc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04176420X"}, "pid": "8992", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:36.103435 2024-09-11 09:09:36.103439 52503f14-790a-4fdd-9ce1-9690923f4300 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041763165"}, "pid": "8993", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:36.159677 2024-09-11 09:09:36.159681 42c5c115-b14e-425f-b2f2-95f6d8469fc8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041759834"}, "pid": "8994", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:36.212849 2024-09-11 09:09:36.212852 e36b3278-58d7-40ad-b548-800afb10641e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041755014"}, "pid": "8995", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:36.269711 2024-09-11 09:09:36.269715 794e76bd-dab9-4a56-a9a7-bc49cbc65932 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041754557"}, "pid": "8996", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:36.324305 2024-09-11 09:09:36.324309 024ddd8b-429b-4243-afc2-a208fdda5e0d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04175431X"}, "pid": "8997", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:36.391168 2024-09-11 09:09:36.391172 fa788657-b9cb-4551-8751-5656aa2b7fc3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04174926X"}, "pid": "8998", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:36.446328 2024-09-11 09:09:36.446331 ca81b9f4-cd87-49a6-a597-738d80f90923 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041748964"}, "pid": "8999", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:36.501652 2024-09-11 09:09:36.501657 d2b6202c-7212-48dc-8dc8-3384f9649338 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04174604X"}, "pid": "9000", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:36.567538 2024-09-11 09:09:36.567542 8a4c6d94-b5f8-4647-b0b1-7149225ea3d7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041742648"}, "pid": "9001", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:36.622356 2024-09-11 09:09:36.622359 32d42b7e-6455-49f4-ac74-cc5a145434c6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04174084X"}, "pid": "9002", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:36.681571 2024-09-11 09:09:36.681574 53271314-f8e6-4b30-88b2-763111d82ba4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041738063"}, "pid": "9003", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:36.73873 2024-09-11 09:09:36.738732 f1df23d6-bcf6-4f7d-80a8-814091766d9c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041737539"}, "pid": "9004", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:36.805771 2024-09-11 09:09:36.805785 6e80e932-da93-46b8-94f8-eb9949f36f73 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041736346"}, "pid": "9005", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:36.875648 2024-09-11 09:09:36.875652 3b728d02-f5f6-4073-bfbf-3bebdaa9cf1b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041735390"}, "pid": "9006", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:36.933587 2024-09-11 09:09:36.933592 f224042f-e88b-42d2-92c4-36cf529c7316 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041734688"}, "pid": "9007", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:36.985327 2024-09-11 09:09:36.98533 779368b2-33cc-48ab-92e5-0d4876b64ee0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041733819"}, "pid": "9008", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:37.038671 2024-09-11 09:09:37.038674 9590983d-d3e1-44a2-92d9-0e7fc263dbfc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041725522"}, "pid": "9009", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:37.096916 2024-09-11 09:09:37.096921 2a73b8e2-c790-4cfa-a9c1-bd1f35b77738 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041722027"}, "pid": "9010", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:37.158385 2024-09-11 09:09:37.15839 c48a3b66-6e53-48e1-8fc3-beeef4073f00 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041720040"}, "pid": "9011", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:37.215493 2024-09-11 09:09:37.215497 2996fdef-f911-43cf-b7c9-e50ef97709e5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041718429"}, "pid": "9012", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:37.27744 2024-09-11 09:09:37.277445 ba24181c-f3fa-41ac-96e2-b482e01967ee {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041716159"}, "pid": "9013", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:37.338415 2024-09-11 09:09:37.33842 dd215fa7-318a-4fda-9060-7d1435049a1a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041714059"}, "pid": "9014", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:37.3989 2024-09-11 09:09:37.398905 8ed50b3b-b48f-4f63-809b-a7b616c29675 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041712188"}, "pid": "9015", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:37.456402 2024-09-11 09:09:37.456407 b456c21f-0fb0-4449-9d8b-4e406acf2750 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04171069X"}, "pid": "9016", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:37.519044 2024-09-11 09:09:37.519048 47251998-cb63-4e1a-bf54-61eebdc492c8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04171007X"}, "pid": "9017", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:37.581812 2024-09-11 09:09:37.581814 9b43df2e-bf04-475f-9b18-80e7c13bf8f4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041707109"}, "pid": "9018", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:37.645514 2024-09-11 09:09:37.645518 e9d6b91e-d170-4011-8759-12d73f045e80 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04170441X"}, "pid": "9019", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:37.702126 2024-09-11 09:09:37.702132 1e9ba4cc-4114-48ec-8feb-4c89e0f63e22 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041700465"}, "pid": "9020", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:37.757917 2024-09-11 09:09:37.757921 bf68b172-25df-4f5f-984c-1129cce938d4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041693442"}, "pid": "9021", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:37.822172 2024-09-11 09:09:37.822177 d63fb60b-fb6e-4141-8456-8f5f0c5fe626 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041692403"}, "pid": "9022", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:37.89572 2024-09-11 09:09:37.895723 39f3b8f6-6b65-45d2-89f9-336c1a3db485 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041691989"}, "pid": "9023", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:37.953973 2024-09-11 09:09:37.953976 e72082bc-66a0-4c57-956f-c450fd4910cd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041691504"}, "pid": "9024", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:38.007447 2024-09-11 09:09:38.007451 7d924b03-95a6-4e89-ac3a-f4700c8305ac {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041689976"}, "pid": "9025", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:38.066046 2024-09-11 09:09:38.06605 8282ffe8-710a-4ad0-9564-8de357b39f10 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041688473"}, "pid": "9026", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:38.122393 2024-09-11 09:09:38.122397 24a23997-7dab-4788-ab6f-b2860b04e48a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041682106"}, "pid": "9027", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:38.175598 2024-09-11 09:09:38.175602 5dfebefa-68ec-49e3-a75a-1d8e0c9254a9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041679792"}, "pid": "9028", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:38.230103 2024-09-11 09:09:38.230106 f650eaa3-d174-4954-a43f-5f9e1657f983 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041678532"}, "pid": "9029", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:38.286101 2024-09-11 09:09:38.286105 46f80736-00a2-40a4-bd51-6f30648d7252 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041667093"}, "pid": "9030", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:38.343996 2024-09-11 09:09:38.344 f796cedd-819c-410e-8e41-fad82ecee5c1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041664795"}, "pid": "9031", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:38.406671 2024-09-11 09:09:38.406676 79c41503-f29a-42aa-84b2-b3a0277f2a43 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041653025"}, "pid": "9032", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:38.460945 2024-09-11 09:09:38.460949 cdc4fe93-516d-41ff-93b5-a5c1cc39b9cb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041650018"}, "pid": "9033", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:38.517371 2024-09-11 09:09:38.517374 fb008cd0-d6bd-42c4-b4d0-9a2a3d135230 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041640047"}, "pid": "9034", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:38.572598 2024-09-11 09:09:38.572602 bbd0c7c3-d00c-4556-b272-bf391eaaa898 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041639383"}, "pid": "9035", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:38.63158 2024-09-11 09:09:38.631582 51cbeb2c-957e-443c-8630-c4cb7a17cc21 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041634179"}, "pid": "9036", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:38.689951 2024-09-11 09:09:38.689955 73a61487-2f9e-42b1-8699-e5d883dbb995 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041631692"}, "pid": "9037", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:38.742887 2024-09-11 09:09:38.742893 50d6bc46-f887-4232-b5a0-61eb456c6e92 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041631676"}, "pid": "9038", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:38.796622 2024-09-11 09:09:38.796627 87b3cecd-930e-4a08-828a-906d260c40c8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04163120X"}, "pid": "9039", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:38.851259 2024-09-11 09:09:38.851262 de19d87f-0a55-4dc5-a799-e3548c379075 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041627458"}, "pid": "9040", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:38.907922 2024-09-11 09:09:38.907925 759c877e-d48c-4ddc-86de-d2b778568167 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041623010"}, "pid": "9041", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:38.962218 2024-09-11 09:09:38.962222 922fe68c-3cbb-44c4-9161-9d53f6f26367 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041621662"}, "pid": "9042", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:39.037854 2024-09-11 09:09:39.037858 b6c3ce77-73a1-49c0-a0dd-e4b8f3adcf5f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041619633"}, "pid": "9043", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:39.097331 2024-09-11 09:09:39.097334 521d9aa8-2f63-4c7d-acb0-dc3afe818534 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041619366"}, "pid": "9044", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:39.150249 2024-09-11 09:09:39.150253 8297a0db-55eb-4f73-9bea-908ae7bd6f51 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041617266"}, "pid": "9045", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:39.205355 2024-09-11 09:09:39.205358 179b921b-06a0-4913-aa1b-a3b422a37a27 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041616375"}, "pid": "9046", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:39.260348 2024-09-11 09:09:39.260352 03847d12-0f40-4b63-9724-111965f35cd3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041612469"}, "pid": "9047", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:39.313836 2024-09-11 09:09:39.313839 5b319fbc-3636-4368-8657-8627f7980df4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041607988"}, "pid": "9048", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:39.372359 2024-09-11 09:09:39.372364 a903ab20-c6fd-4984-b9d8-a8adca354659 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041605799"}, "pid": "9049", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:39.429891 2024-09-11 09:09:39.429896 ad9df3c2-367d-4a7e-9632-73302352dd7b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041603176"}, "pid": "9050", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:39.481011 2024-09-11 09:09:39.481014 740beac4-87b8-45ed-a2b7-a9378a779e83 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041601475"}, "pid": "9051", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:39.532811 2024-09-11 09:09:39.532816 d19b41fb-fbc1-4238-901a-e62c0fa92140 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041600622"}, "pid": "9052", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:39.59097 2024-09-11 09:09:39.590974 ace2ab2b-d43f-48b7-ba6a-265432696dac {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041600010"}, "pid": "9053", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:39.643895 2024-09-11 09:09:39.643899 d49ab404-d769-4f38-852b-6ffe66983ff6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041596277"}, "pid": "9054", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:39.701833 2024-09-11 09:09:39.701837 68802bad-f975-460d-86b3-0a97f199b062 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041595505"}, "pid": "9055", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:39.765775 2024-09-11 09:09:39.76578 9507ea9b-5adc-479f-a32c-a491b6ab3568 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041582969"}, "pid": "9056", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:39.822723 2024-09-11 09:09:39.822727 87eadb51-a0db-4f61-8726-b1b4de329120 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041582675"}, "pid": "9057", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:39.885109 2024-09-11 09:09:39.885114 46be9f3d-1e57-49f5-a66c-1f80baaa5ac3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041582500"}, "pid": "9058", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:39.939678 2024-09-11 09:09:39.939681 ab82c552-4750-409a-a740-58afa30a4de4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041580176"}, "pid": "9059", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:39.994172 2024-09-11 09:09:39.994176 b11474a6-441e-4bd4-a741-77531ae9a02c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041579550"}, "pid": "9060", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:40.065348 2024-09-11 09:09:40.06536 76a74de7-7b00-4b36-8a55-53f8b55948bc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041577760"}, "pid": "9061", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:40.126545 2024-09-11 09:09:40.12656 6fec1b55-fad3-442e-b8d8-dc5c1c7426c5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041573579"}, "pid": "9062", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:40.183856 2024-09-11 09:09:40.18386 448e0257-b58f-4a47-8f1b-2f005efdf977 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041570316"}, "pid": "9063", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:40.239012 2024-09-11 09:09:40.239016 714039a2-c782-4ab2-a545-befc9a842047 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041570154"}, "pid": "9064", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:40.311361 2024-09-11 09:09:40.311366 1c9f46c5-5e6b-4f63-8a13-52e2054abf33 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041565762"}, "pid": "9065", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:40.367503 2024-09-11 09:09:40.367509 36c20f53-f0f6-4522-b4ff-654d6bad81d4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041563409"}, "pid": "9066", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:40.424218 2024-09-11 09:09:40.424224 6c8a8791-2503-4b05-aefa-27685ef3467b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04155812X"}, "pid": "9067", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:40.477738 2024-09-11 09:09:40.477742 d6c9aa0a-b588-46f0-94a6-d3c668855a8e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041558103"}, "pid": "9068", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:40.535244 2024-09-11 09:09:40.535248 1d2bf822-eece-4cd4-81ff-4074389ef356 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041556984"}, "pid": "9069", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:40.599539 2024-09-11 09:09:40.599544 529ccdc1-30d3-4e9d-b4cc-087fb9adbf43 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041555252"}, "pid": "9070", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:40.661148 2024-09-11 09:09:40.661153 48781dc9-4a4b-4180-87f2-8016717dfef5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041552725"}, "pid": "9071", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:40.715656 2024-09-11 09:09:40.715659 2010b526-b46a-4395-b853-20aedaea9e35 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041552334"}, "pid": "9072", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:40.77044 2024-09-11 09:09:40.770444 ec89fd1a-9502-49cb-9563-e0d88ec4db99 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041549457"}, "pid": "9073", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:40.823775 2024-09-11 09:09:40.823778 a3f849bf-6db9-4d71-b960-228396c58cd3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041543688"}, "pid": "9074", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:40.880613 2024-09-11 09:09:40.880616 a83726ac-61d6-4373-82f3-fea9999f15c5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041540654"}, "pid": "9075", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:40.936212 2024-09-11 09:09:40.936215 03068c5e-6bb7-4a2d-aef6-9c08e44ccd24 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041540387"}, "pid": "9076", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:40.989014 2024-09-11 09:09:40.989018 f3b6d43d-5593-4671-9aa4-4d731694e0fe {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041539346"}, "pid": "9077", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:41.047372 2024-09-11 09:09:41.047377 d1788957-b44f-4926-a155-e278ac5ece8c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041537882"}, "pid": "9078", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:41.112202 2024-09-11 09:09:41.112207 bf8c42fa-4982-453f-979f-7ac7113798b8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04152862X"}, "pid": "9079", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:41.180409 2024-09-11 09:09:41.180413 4ed078fe-dfaf-49b3-bd53-aa4e05da6a03 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041528565"}, "pid": "9080", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:41.241334 2024-09-11 09:09:41.241338 a0780d48-8091-45bd-9ea1-ddbb017b0aba {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041527186"}, "pid": "9081", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:41.299401 2024-09-11 09:09:41.299407 74faa1e6-51a8-4c25-83b6-05c9c835728d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041527062"}, "pid": "9082", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:41.360158 2024-09-11 09:09:41.360161 d4c871f7-ecd9-4bf7-9504-0d93df6546b6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041521927"}, "pid": "9083", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:41.414963 2024-09-11 09:09:41.414967 f47dc02b-6a5e-45be-9bc0-f1c7b3cf3f77 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041511794"}, "pid": "9084", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:41.470767 2024-09-11 09:09:41.470772 3c2895ac-d93c-42a7-935f-b8e08584b51d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041511360"}, "pid": "9085", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:41.524267 2024-09-11 09:09:41.524271 d3e7b875-d15f-487c-b2a0-d751eac24a8d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041507983"}, "pid": "9086", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:41.580579 2024-09-11 09:09:41.580583 e07eae20-d043-4577-9809-e77dfe3e8ad9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041506588"}, "pid": "9087", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:41.636103 2024-09-11 09:09:41.636106 6431e7a6-f6d5-4a0d-a0be-6fe5139d7a11 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041505190"}, "pid": "9088", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:41.699389 2024-09-11 09:09:41.699395 b5f9330e-85a9-4ee3-8d13-dbd12a49414f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041504925"}, "pid": "9089", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:41.766009 2024-09-11 09:09:41.766015 6d230fd8-b250-485f-aee4-df645cec14aa {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041501950"}, "pid": "9090", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:41.82199 2024-09-11 09:09:41.821993 c3a2f28e-543b-4433-aa66-5cbd0214cbe8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041501608"}, "pid": "9091", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:41.878166 2024-09-11 09:09:41.878171 a46b98bd-b3e1-4f78-974b-05ceb40f972a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041497848"}, "pid": "9092", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:41.936463 2024-09-11 09:09:41.936467 98e76d7c-9518-4923-90f6-4f2b13697494 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041497112"}, "pid": "9093", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:41.995124 2024-09-11 09:09:41.995127 b4c99fdc-f2b7-40ff-8fd8-56a0b53113d3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041490673"}, "pid": "9094", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:42.050918 2024-09-11 09:09:42.050925 6fa3e00d-4916-4df1-9c8b-ab973d2bfa9f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041489837"}, "pid": "9095", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:42.115901 2024-09-11 09:09:42.115905 df6a19ef-00d3-4ce4-b297-0ec7c1bd1bcc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041483626"}, "pid": "9096", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:42.178534 2024-09-11 09:09:42.178539 09165e39-a222-4456-ab86-154201855c9e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041479017"}, "pid": "9097", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:42.244997 2024-09-11 09:09:42.245002 3b6427d1-bc2b-47d1-8692-7f29302edd18 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041467760"}, "pid": "9098", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:42.304474 2024-09-11 09:09:42.304479 5b3a2af1-e4ec-4dbd-8502-90e8f14f6fd2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04146351X"}, "pid": "9099", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:42.35791 2024-09-11 09:09:42.357914 9cff1ab9-ffbe-4f1d-90dc-08d7b0f4c15c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041463250"}, "pid": "9100", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:42.413409 2024-09-11 09:09:42.413412 8a7a0aa6-506b-40e2-a79e-67afb361209b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041462467"}, "pid": "9101", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:42.468759 2024-09-11 09:09:42.468764 bfd4fc0f-d7c9-4779-b4d2-874df1acacaf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041456629"}, "pid": "9102", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:42.526765 2024-09-11 09:09:42.526767 106a632b-e19f-4a17-b253-f2e2dc77128d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041455908"}, "pid": "9103", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:42.585695 2024-09-11 09:09:42.5857 255de9d2-9f33-4a9f-81e9-b8c2b8e84669 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04145412X"}, "pid": "9104", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:42.63903 2024-09-11 09:09:42.639033 5bde9697-2260-486c-accd-94ec43c9d1f0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041451732"}, "pid": "9105", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:42.703708 2024-09-11 09:09:42.703713 7fb02eb8-76c9-4b2c-8fd0-74f622c3bf82 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041449347"}, "pid": "9106", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:42.758579 2024-09-11 09:09:42.758583 0c3a7d7b-71dd-4326-bee4-551c6f1fd3c5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041448723"}, "pid": "9107", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:42.82074 2024-09-11 09:09:42.820745 ee677878-55e2-4873-95e2-74c9d3eab21a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041445120"}, "pid": "9108", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:42.884133 2024-09-11 09:09:42.884138 ed871209-2707-4f8e-98a0-7801fe94953b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041445082"}, "pid": "9109", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:42.947208 2024-09-11 09:09:42.947212 5a1cc9c8-fb49-49b8-bb67-3c7abf9108a5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041444817"}, "pid": "9110", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:43.002164 2024-09-11 09:09:43.002169 a8425855-3aad-485e-b23a-67b92224a59e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041444809"}, "pid": "9111", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:43.060206 2024-09-11 09:09:43.060209 ebb58f8b-bcd8-4ba3-b8fb-27d547ca6e60 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041444108"}, "pid": "9112", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:43.121819 2024-09-11 09:09:43.121824 a509dd24-e978-4105-a3b2-b99122a76245 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04144115X"}, "pid": "9113", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:43.19331 2024-09-11 09:09:43.193312 3a52c3c8-69ab-4f55-919d-c36d0b1c2af7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041440706"}, "pid": "9114", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:43.252022 2024-09-11 09:09:43.252026 bb65ebb1-bec9-4a4d-9f49-e4aebb5dbc30 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041439686"}, "pid": "9115", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:43.310652 2024-09-11 09:09:43.310656 734c9073-6b39-41be-899f-0f8faaedfc25 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041436512"}, "pid": "9116", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:43.366461 2024-09-11 09:09:43.366466 f721fe8c-e0cb-4d09-bcac-c6c25c65ec3c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041434722"}, "pid": "9117", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:43.421619 2024-09-11 09:09:43.421625 261fe550-a6ba-42c7-a26d-2f68071d79c2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041427548"}, "pid": "9118", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:43.474493 2024-09-11 09:09:43.474498 7127aa25-e46e-47b2-b278-868cbb1c26cd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041424654"}, "pid": "9119", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:43.528867 2024-09-11 09:09:43.528872 d75bab55-b697-4e51-b440-db9b6eb0076f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041419464"}, "pid": "9120", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:43.581679 2024-09-11 09:09:43.581682 52cd63e7-e21c-45bd-89f9-258b0d55d69e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041413334"}, "pid": "9121", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:43.633688 2024-09-11 09:09:43.633693 3cd255c6-f714-4c19-ab05-c7957f7bea59 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041413083"}, "pid": "9122", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:43.685652 2024-09-11 09:09:43.685655 b5d01a22-8835-4014-aa69-162588d94684 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041410513"}, "pid": "9123", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:43.737798 2024-09-11 09:09:43.7378 c1e03ef3-2b5a-4b55-b5bd-ccd3d78c6e66 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041406605"}, "pid": "9124", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:43.79166 2024-09-11 09:09:43.791662 57a7d75d-b224-489c-8bfb-13e8c225b81b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041403886"}, "pid": "9125", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:43.852015 2024-09-11 09:09:43.852019 cf13878c-3fa0-4f96-ae1e-4c4066cdf81f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041403657"}, "pid": "9126", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:43.907705 2024-09-11 09:09:43.907708 bade6f52-3d4a-45a3-a1ef-6d920c0174c6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041401522"}, "pid": "9127", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:43.964159 2024-09-11 09:09:43.964163 bac34917-20c8-41d8-a456-91134d662abf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041400909"}, "pid": "9128", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:44.026368 2024-09-11 09:09:44.026373 1e436006-23b2-488e-a53a-7312a68978a3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041398424"}, "pid": "9129", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:44.083559 2024-09-11 09:09:44.083564 26a54880-fc07-4e55-974f-804e342f4815 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041397932"}, "pid": "9130", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:44.135824 2024-09-11 09:09:44.135828 9f22bdb1-fa89-4cb7-836d-5a1c0946a3bd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041397150"}, "pid": "9131", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:44.196473 2024-09-11 09:09:44.196476 9d33962d-c7ea-4dc6-9017-e8035766001a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04139674X"}, "pid": "9132", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:44.262272 2024-09-11 09:09:44.262276 1d20e400-60f5-4923-b48c-3c9a1f79994b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041395786"}, "pid": "9133", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:44.317546 2024-09-11 09:09:44.317555 43e3f0bf-2e3f-48a2-bfc0-6f2ae92417ba {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04139531X"}, "pid": "9134", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:44.375137 2024-09-11 09:09:44.375141 ad1c8f61-69d2-4038-853a-843b24c6828d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041393848"}, "pid": "9135", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:44.43075 2024-09-11 09:09:44.430755 c94fd32d-592c-4a6d-b3bb-e931c83fc312 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041392736"}, "pid": "9136", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:44.488837 2024-09-11 09:09:44.488841 29f78e01-e0d7-4810-866a-bce0042726bb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041385896"}, "pid": "9137", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:44.548675 2024-09-11 09:09:44.548678 3dd76003-a41d-4fa1-a6c9-65349aade34a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041385659"}, "pid": "9138", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:44.611573 2024-09-11 09:09:44.611578 3723af50-f685-489c-ae2a-d28e856b3c12 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041382994"}, "pid": "9139", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:44.667566 2024-09-11 09:09:44.667571 9ef158d7-cff2-4ca4-a176-56a67966c5a6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041380827"}, "pid": "9140", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:44.722006 2024-09-11 09:09:44.722009 15bda328-3dbe-4365-a7c8-9621b09e685f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041378970"}, "pid": "9141", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:44.775385 2024-09-11 09:09:44.775388 a2158ce7-1b94-4dda-9502-ac748ae2bf64 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041378296"}, "pid": "9142", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:44.834463 2024-09-11 09:09:44.834467 0d4fd253-40d0-4e1c-ad34-470450939962 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04137651X"}, "pid": "9143", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:44.890452 2024-09-11 09:09:44.890457 3d5251b1-5f21-4431-8109-398a18ab845c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041375785"}, "pid": "9144", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:44.95623 2024-09-11 09:09:44.956233 16cd3245-a80d-4c53-ab43-218538a79688 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041375157"}, "pid": "9145", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:45.022379 2024-09-11 09:09:45.022383 73ea60ef-87fe-4939-b2bf-92ca8eb99def {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041373146"}, "pid": "9146", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:45.082099 2024-09-11 09:09:45.082101 4d3a856a-38ea-439b-bef7-42f45e6b732a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041372867"}, "pid": "9147", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:45.138936 2024-09-11 09:09:45.138941 5277db82-e82e-4fca-8923-49bf65446fa1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041369424"}, "pid": "9148", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:45.196179 2024-09-11 09:09:45.196183 6f4c6832-4633-4307-95ad-9aea2180228b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041368118"}, "pid": "9149", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:45.251572 2024-09-11 09:09:45.251582 e72fc32b-a665-4538-8fdd-bd24cc4a8c93 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041367782"}, "pid": "9150", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:45.319852 2024-09-11 09:09:45.319857 7aadee06-444f-4c09-8da8-1fd94581d7f5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041358902"}, "pid": "9151", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:45.385066 2024-09-11 09:09:45.38507 d1d4eb7b-191b-4696-952f-74eb85639e47 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041358678"}, "pid": "9152", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:45.445414 2024-09-11 09:09:45.445417 7e46f87f-56d0-402f-b435-93ee77e5bae3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041357515"}, "pid": "9153", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:45.504401 2024-09-11 09:09:45.504405 3d2afe47-53c8-425f-a804-8280b20b7e75 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041351169"}, "pid": "9154", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:45.567779 2024-09-11 09:09:45.567783 f3fc1111-f52f-4c3c-a2ff-2368a90877f2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041344677"}, "pid": "9155", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:45.637295 2024-09-11 09:09:45.637298 1028b10d-d28e-47ec-9afd-c9a74589af4a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041336844"}, "pid": "9156", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:45.697607 2024-09-11 09:09:45.697612 9a257009-ecac-4582-a710-8a5041899e66 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041336720"}, "pid": "9157", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:45.762382 2024-09-11 09:09:45.762386 9fa6559f-939a-48c7-8a03-bc84e96f241f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041332156"}, "pid": "9158", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:45.819446 2024-09-11 09:09:45.819452 2e80ab86-bf8f-47b5-a2ac-bb50b404fa4f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041330048"}, "pid": "9159", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:45.879125 2024-09-11 09:09:45.87913 fcbbe956-0237-439b-87e6-c716c45fa728 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041328523"}, "pid": "9160", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:45.939334 2024-09-11 09:09:45.939338 e965da74-cf4d-4e99-afeb-aa639cdac1b8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041327896"}, "pid": "9161", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:45.994655 2024-09-11 09:09:45.994659 80c0f8b0-178b-4a32-b99e-f22a009e8433 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041326393"}, "pid": "9162", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:46.052912 2024-09-11 09:09:46.052915 573dfc00-73a1-4c81-99a3-8dd4eca64291 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041325109"}, "pid": "9163", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:46.112943 2024-09-11 09:09:46.112947 63927245-9117-4738-86a2-d18df0e47e41 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04132501X"}, "pid": "9164", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:46.173567 2024-09-11 09:09:46.173571 1937d2ee-623d-4381-86f5-cb28bd604910 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041321782"}, "pid": "9165", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:46.269345 2024-09-11 09:09:46.269349 e7ac3719-ac68-4743-a9ac-107e450bd89d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041318153"}, "pid": "9166", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:46.324215 2024-09-11 09:09:46.324218 191e9b55-1561-447d-9297-2f290afa8cc1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041312406"}, "pid": "9167", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:46.378482 2024-09-11 09:09:46.378485 f2ce9d7a-0dd4-460d-a360-15f60ee669f6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041311248"}, "pid": "9168", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:46.430855 2024-09-11 09:09:46.430857 4348dadb-f041-4f97-ab14-e395876d2b02 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041308263"}, "pid": "9169", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:46.486099 2024-09-11 09:09:46.486104 2b860485-5c41-46af-8f64-2e37c6c7ce6f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041306570"}, "pid": "9170", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:46.546072 2024-09-11 09:09:46.546075 4fa137f5-d173-49af-bbb2-a556deae0c24 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041306473"}, "pid": "9171", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:46.600774 2024-09-11 09:09:46.60078 6c47dc9a-26d1-40e4-a023-5f76f1325341 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041305450"}, "pid": "9172", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:46.657255 2024-09-11 09:09:46.65726 d623315e-3817-4480-920c-fbb081e755af {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041301005"}, "pid": "9173", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:46.709628 2024-09-11 09:09:46.709632 06038dee-9904-423b-8377-a50645d0b0eb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041296540"}, "pid": "9174", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:46.7632 2024-09-11 09:09:46.763204 015b01a3-3f4b-4466-815c-e523aacc385c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041291107"}, "pid": "9175", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:46.824038 2024-09-11 09:09:46.824043 d8feca77-5d98-4287-a57b-cf32a0a15b5b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041289870"}, "pid": "9176", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:46.883425 2024-09-11 09:09:46.883427 491e0183-c690-47ca-903c-746667d76f63 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041288769"}, "pid": "9177", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:46.950003 2024-09-11 09:09:46.950009 ff3920a1-23c5-4719-9ba0-29454b13b27f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04128805X"}, "pid": "9178", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:47.006186 2024-09-11 09:09:47.006191 18a9e770-b606-46a8-8d11-555f64c254f3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041287886"}, "pid": "9179", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:47.069055 2024-09-11 09:09:47.069059 e1dbbf4b-e210-4580-8b1d-6c7158b8e5e2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041285913"}, "pid": "9180", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:47.124839 2024-09-11 09:09:47.124845 d6fd321f-923a-4861-a874-901be300d1c2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041284100"}, "pid": "9181", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:47.180099 2024-09-11 09:09:47.180103 b2d3613e-1521-4bf8-b879-1c79254c84ae {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041282787"}, "pid": "9182", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:47.236359 2024-09-11 09:09:47.236363 084eccf4-6fb9-443e-b204-ad19129321a3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041280628"}, "pid": "9183", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:47.309652 2024-09-11 09:09:47.309657 dc738cc1-c0c6-4326-a69e-e27b040dd33a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041277848"}, "pid": "9184", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:47.36909 2024-09-11 09:09:47.369094 3bed5ff9-4f36-42ea-a61c-7f625d624dec {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041277090"}, "pid": "9185", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:47.427137 2024-09-11 09:09:47.42714 146e7d60-b04c-4d7d-a3da-fd04a4786573 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041275829"}, "pid": "9186", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:47.482913 2024-09-11 09:09:47.482917 ed55d1af-773d-4b1f-93ea-86588a63f7f9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041274059"}, "pid": "9187", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:47.543148 2024-09-11 09:09:47.543152 d68d9961-e66c-4883-8ea4-0e296cd7353d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041270290"}, "pid": "9188", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:47.600473 2024-09-11 09:09:47.600479 5fc4377c-f1b1-4daa-a49d-47e89bc03368 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041264487"}, "pid": "9189", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:47.657403 2024-09-11 09:09:47.657407 0dbc289d-2c63-4ab3-b15d-96bdf710795a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04126133X"}, "pid": "9190", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:47.713439 2024-09-11 09:09:47.713443 79760c08-41ba-453d-a7e9-de51f324d0a9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041258819"}, "pid": "9191", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:47.777422 2024-09-11 09:09:47.777428 2e846238-cccc-4b40-b8e9-450d6b4e1ac6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041258762"}, "pid": "9192", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:47.83749 2024-09-11 09:09:47.837493 baa9cb15-90a6-4b0f-98f4-8d963137b73b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041255364"}, "pid": "9193", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:47.895967 2024-09-11 09:09:47.895971 8dbbd42b-8cb8-4d6d-9650-d541d61d4b6a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041254759"}, "pid": "9194", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:47.955917 2024-09-11 09:09:47.95592 37664d47-36ec-421c-8120-46a29db30562 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041254538"}, "pid": "9195", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:48.010165 2024-09-11 09:09:48.010169 ef1f4365-3a6a-4c55-bdba-809189dec9ae {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041251733"}, "pid": "9196", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:48.069128 2024-09-11 09:09:48.069133 5961137e-092d-47a1-9383-6803f9d034d4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041250117"}, "pid": "9197", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:48.13066 2024-09-11 09:09:48.130664 3bf9634e-6bfa-4fd4-a16e-f51b77126bc2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041244362"}, "pid": "9198", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:48.190575 2024-09-11 09:09:48.190579 c8e9eb98-562e-4035-a932-8234d89f3c8b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04124317X"}, "pid": "9199", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:48.253298 2024-09-11 09:09:48.253302 03cf57fb-7075-4452-a46e-25116c78422d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041240839"}, "pid": "9200", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:48.318325 2024-09-11 09:09:48.318329 2bf9e549-59fe-41f9-a971-9e2af588458c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041237226"}, "pid": "9201", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:48.373608 2024-09-11 09:09:48.373612 80920801-f041-4fc0-afca-814d4d61fa5c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041231899"}, "pid": "9202", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:48.4269 2024-09-11 09:09:48.426905 ea59a122-7d95-4760-a2dd-da5b2e721e53 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041220803"}, "pid": "9203", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:48.481456 2024-09-11 09:09:48.48146 ad3858de-5ecf-4866-bec6-1460f7eb571e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041218760"}, "pid": "9204", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:48.537636 2024-09-11 09:09:48.537639 bed230e3-38f3-4c31-8e90-8a7310d4573c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041217896"}, "pid": "9205", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:48.594099 2024-09-11 09:09:48.594104 c019cca5-5067-4f97-be38-536a03e3e887 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041217225"}, "pid": "9206", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:48.647825 2024-09-11 09:09:48.647829 d3fe4031-1972-4ea7-ad9d-aaa39132123b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041217020"}, "pid": "9207", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:48.706257 2024-09-11 09:09:48.70626 264eb538-62c0-40cc-8d9e-c759bb36cb36 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04121630X"}, "pid": "9208", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:48.761259 2024-09-11 09:09:48.761262 339f85a9-9de9-4876-9d4d-fc7cfbf9f141 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041214870"}, "pid": "9209", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:48.822464 2024-09-11 09:09:48.822467 bf6aae2c-6e60-4330-a14f-671aad1af150 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041212339"}, "pid": "9210", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:48.875746 2024-09-11 09:09:48.87575 9825e623-39cc-4972-8840-fe5be7d2a681 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041211383"}, "pid": "9211", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:48.932782 2024-09-11 09:09:48.932788 9a8d8c70-e0a0-454d-a79f-6000adaf0d8f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041211154"}, "pid": "9212", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:48.996175 2024-09-11 09:09:48.996178 6d0d227f-e39d-47c3-b028-594848482bde {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041208862"}, "pid": "9213", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:49.051318 2024-09-11 09:09:49.051325 b8ec5c10-182c-4c1e-b1ff-ee7c2bac3167 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041204409"}, "pid": "9214", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:49.111865 2024-09-11 09:09:49.11187 613400df-070f-47e6-87f6-5639eceb35d2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041176626"}, "pid": "9215", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:49.169183 2024-09-11 09:09:49.169187 c51773f1-72a8-4c0c-8256-487c83f691fd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041175808"}, "pid": "9216", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:49.229488 2024-09-11 09:09:49.229493 980523c8-1b2b-489a-b53e-9b7d3b457a88 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041173899"}, "pid": "9217", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:49.297431 2024-09-11 09:09:49.297435 45de8edb-6ae2-41dc-b8c3-92d65582f48b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041172922"}, "pid": "9218", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:49.350291 2024-09-11 09:09:49.350294 c9482b00-fd69-40df-88c7-bf51ea590277 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041172299"}, "pid": "9219", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:49.411727 2024-09-11 09:09:49.41173 664c2567-9676-4379-8dab-4d4d6f926bac {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041164334"}, "pid": "9220", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:49.468191 2024-09-11 09:09:49.468197 7a2e2221-c2e6-4ba9-a374-77d826da177b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04115746X"}, "pid": "9221", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:49.528529 2024-09-11 09:09:49.528533 b3e70c69-a4c8-4827-b671-10d03b6603e9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041144910"}, "pid": "9222", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:49.583578 2024-09-11 09:09:49.583581 047d931a-47c8-4042-9de1-d95273a711c4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041142993"}, "pid": "9223", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:49.641438 2024-09-11 09:09:49.641443 29357b27-a18c-4a7c-afa3-9fed79f072e9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041142403"}, "pid": "9224", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:49.702183 2024-09-11 09:09:49.702188 c2678d3a-428d-49d3-b0e5-e0842d6eddfa {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041134346"}, "pid": "9225", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:49.755553 2024-09-11 09:09:49.755556 761a9314-e5e5-49ac-b5af-630577c509bf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041133889"}, "pid": "9226", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:49.80983 2024-09-11 09:09:49.809834 adfc08a1-ec29-4222-a255-dd593d060073 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041125002"}, "pid": "9227", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:49.863021 2024-09-11 09:09:49.863025 11ad5603-90b9-4124-ab67-6aec36b6b561 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041067940"}, "pid": "9228", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:49.921426 2024-09-11 09:09:49.92143 19b7c12e-a194-4861-a928-af6c003613b7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040785947"}, "pid": "9229", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:49.977136 2024-09-11 09:09:49.977141 bbdc4a23-b54e-4b58-a7fa-81501189a0e9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04077984X"}, "pid": "9230", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:50.03308 2024-09-11 09:09:50.033085 e0393e9b-e841-4bfa-8890-f7d87e1d7377 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040777820"}, "pid": "9231", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:50.092265 2024-09-11 09:09:50.092271 a8de90fa-0c4f-4264-bfdf-366037f4aaff {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040776832"}, "pid": "9232", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:50.149059 2024-09-11 09:09:50.149062 0faa3650-94a0-4789-85e0-ea426254f27a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040760669"}, "pid": "9233", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:50.209159 2024-09-11 09:09:50.209163 e85161af-1f04-4c89-aff6-1ece675d5dd0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04075121X"}, "pid": "9234", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:50.273542 2024-09-11 09:09:50.273546 3caa1b72-4782-47ac-a3fa-44cab793d815 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040741117"}, "pid": "9235", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:50.346065 2024-09-11 09:09:50.346068 3cd69eaa-8ec5-4537-ac34-35308fcdb0c3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040737888"}, "pid": "9236", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:50.403939 2024-09-11 09:09:50.403942 2110adce-ab64-4a50-82f1-a33676052ce2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040737810"}, "pid": "9237", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:50.467754 2024-09-11 09:09:50.467758 777a8485-0ecc-41e2-96fe-8321c0c2cc49 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040737063"}, "pid": "9238", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:50.521359 2024-09-11 09:09:50.521366 3c34f63e-d16e-4536-b32c-5b67641819da {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040717763"}, "pid": "9239", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:50.579815 2024-09-11 09:09:50.579818 3a570469-c109-480e-b8e3-33651521fd21 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040717119"}, "pid": "9240", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:50.631502 2024-09-11 09:09:50.631506 98b3ef91-9153-4bf0-8443-54ea6c2d3941 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040715213"}, "pid": "9241", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:50.682917 2024-09-11 09:09:50.682919 1fd05e8e-2c8a-4baf-81c8-eb78388455fb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040712168"}, "pid": "9242", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:50.743339 2024-09-11 09:09:50.743343 27e0c6dd-140a-48d1-ad35-948cba7571bf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040709248"}, "pid": "9243", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:50.797598 2024-09-11 09:09:50.797604 1916aec4-c4d4-4707-ba1f-784844270d19 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040707385"}, "pid": "9244", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:50.853938 2024-09-11 09:09:50.853942 b6171fce-cfbf-441e-afed-5ee62b58df1c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040706079"}, "pid": "9245", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:50.913315 2024-09-11 09:09:50.913318 2412c3bc-cd6d-4c13-a645-49e123ec366f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040705846"}, "pid": "9246", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:50.973512 2024-09-11 09:09:50.973517 00decd3c-efdc-42bc-b604-0286fa9d0a91 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040693759"}, "pid": "9247", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:51.032259 2024-09-11 09:09:51.032262 a2c7d790-a517-4ef9-b849-a0c931ef8fd7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040693538"}, "pid": "9248", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:51.092446 2024-09-11 09:09:51.09245 62d9b17a-c91c-408d-8629-7de1392d5c25 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040687333"}, "pid": "9249", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:51.171226 2024-09-11 09:09:51.171228 70c45960-0ab3-48f8-9f65-492655a96df0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040685969"}, "pid": "9250", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:51.245747 2024-09-11 09:09:51.24575 c770450d-f625-484f-b1aa-9285f9f59867 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040677036"}, "pid": "9251", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:51.312597 2024-09-11 09:09:51.312601 357f26b9-7100-4427-bb70-d77763a08d64 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04067701X"}, "pid": "9252", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:51.370505 2024-09-11 09:09:51.370508 abf46b69-01c9-4a56-b48e-bc1dae5e8c3b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040664643"}, "pid": "9253", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:51.423212 2024-09-11 09:09:51.423215 853bb5ec-5ff3-4646-8898-5c65b4e74221 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040664244"}, "pid": "9254", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:51.479395 2024-09-11 09:09:51.479401 41a7e1af-6fca-4dba-82e2-0a3c63ecc9a7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040664104"}, "pid": "9255", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:51.538838 2024-09-11 09:09:51.538841 0ac1a415-2be7-4368-83f7-1576681bdda9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040658864"}, "pid": "9256", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:51.593291 2024-09-11 09:09:51.593295 5c54e675-ac74-4048-b5e9-de43c93516e8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040654648"}, "pid": "9257", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:51.652346 2024-09-11 09:09:51.652352 04fb4dae-2d1c-437a-940a-8fd762e18c6a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040641805"}, "pid": "9258", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:51.709662 2024-09-11 09:09:51.709665 96d97daf-afda-4974-9f88-4ef4d4ba1bb4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040633306"}, "pid": "9259", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:51.767907 2024-09-11 09:09:51.767913 d5c62608-6932-4d18-a407-8d036ccc8e9a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040628604"}, "pid": "9260", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:51.827875 2024-09-11 09:09:51.827879 54530c8a-d2f5-4ce8-bc55-e164bd653b8a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040628094"}, "pid": "9261", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:51.886547 2024-09-11 09:09:51.886552 c7c7bcfa-114d-4157-8f0e-4f069254d0c5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040621278"}, "pid": "9262", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:51.943768 2024-09-11 09:09:51.943773 a4996dc4-3adb-4e59-8415-355b62f9922f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040617203"}, "pid": "9263", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:51.997436 2024-09-11 09:09:51.997441 de75e7a6-6ee6-4bc4-af1b-7e9b61799c33 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040598160"}, "pid": "9264", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:52.052129 2024-09-11 09:09:52.052133 0f0a80d8-91f7-4f07-b8f9-5089146ab2a8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040596648"}, "pid": "9265", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:52.111317 2024-09-11 09:09:52.111323 4fbd822a-c8b2-4a48-bb8d-d162a911be62 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04059596X"}, "pid": "9266", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:52.178506 2024-09-11 09:09:52.17851 60304184-7a19-48d7-968e-da4024782047 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040581780"}, "pid": "9267", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:52.241854 2024-09-11 09:09:52.241859 fc842cbb-7b37-446c-8be3-a3ee14c41fb6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040579123"}, "pid": "9268", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:52.298792 2024-09-11 09:09:52.298796 fb1eb544-bf90-4b7b-bb78-60d55f60aac4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040576337"}, "pid": "9269", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:52.359776 2024-09-11 09:09:52.359781 15d720b4-a3c2-4b9d-a3f9-dcf64bd438a5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040575136"}, "pid": "9270", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:52.413078 2024-09-11 09:09:52.413081 adf162ad-d966-47e1-82f9-384270263b29 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040570215"}, "pid": "9271", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:52.466431 2024-09-11 09:09:52.466435 b330fb06-3d03-4158-9637-adc5e30aa885 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040562182"}, "pid": "9272", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:52.529495 2024-09-11 09:09:52.529499 86c5b2f0-d884-45f4-b2d4-3ad2798dadac {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040539644"}, "pid": "9273", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:52.588024 2024-09-11 09:09:52.588027 b60872d8-53a4-4dfa-a6dc-c094c42f1afa {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04053376X"}, "pid": "9274", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:52.645785 2024-09-11 09:09:52.645787 f8ac8c71-3cc9-4e66-b18d-d65bf47b2e75 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040515842"}, "pid": "9275", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:52.702692 2024-09-11 09:09:52.702696 58e5cfa8-a8f8-4230-b2fd-202a2f19b20c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040490122"}, "pid": "9276", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:52.756834 2024-09-11 09:09:52.756838 a9d9bdfd-e4c4-4891-b6de-8dd2f5cc8531 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040475972"}, "pid": "9277", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:52.812109 2024-09-11 09:09:52.812112 641dd338-e193-4f05-9e09-46a4dad723f7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040475778"}, "pid": "9278", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:52.867425 2024-09-11 09:09:52.86743 1e863518-374f-436b-a447-0c0590b193b4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040471713"}, "pid": "9279", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:52.927393 2024-09-11 09:09:52.927397 943de9c0-f4b6-4c75-84a6-0def2dba3396 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040471233"}, "pid": "9280", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:52.979359 2024-09-11 09:09:52.979361 7fa6d022-0d97-4dd5-ab20-455bc1835814 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040468003"}, "pid": "9281", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:53.044339 2024-09-11 09:09:53.044343 c37c7989-9416-48b7-9ee1-902c1cc88cbb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040461912"}, "pid": "9282", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:53.111014 2024-09-11 09:09:53.111018 81ab0a1d-9d33-4346-99c2-edfee77b8973 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040460495"}, "pid": "9283", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:53.17521 2024-09-11 09:09:53.175214 b3848310-2303-46bb-9225-31f2ff4a9adb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040459195"}, "pid": "9284", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:53.228536 2024-09-11 09:09:53.22854 084a37e1-dcf3-4696-a8b3-ca5c36ea8361 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040448932"}, "pid": "9285", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:53.27831 2024-09-11 09:09:53.278314 376a7d1b-917a-47aa-b499-5534d9165db6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040448924"}, "pid": "9286", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:53.336264 2024-09-11 09:09:53.336268 ca963278-012a-4f04-9b07-a75e7402352c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040414124"}, "pid": "9287", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:53.40063 2024-09-11 09:09:53.400634 0af4c45c-2a42-41ae-a418-847167ff23ca {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04041177X"}, "pid": "9288", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:53.462661 2024-09-11 09:09:53.462666 bb92d80d-d3b0-419c-96fe-bc6944b9d3d8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040411583"}, "pid": "9289", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:53.529705 2024-09-11 09:09:53.529709 75d1408a-dd10-4f6b-b06f-d0f872ada00c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040372170"}, "pid": "9290", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:53.593414 2024-09-11 09:09:53.593417 bf10cdd3-910b-4ce5-9898-41dfec7352f8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040366898"}, "pid": "9291", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:53.643968 2024-09-11 09:09:53.643971 98c61205-88fe-4f66-b63a-431e8a67dd86 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040357228"}, "pid": "9292", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:53.699916 2024-09-11 09:09:53.699921 5eb367eb-cd2f-41b9-acac-afb913fea36a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040354415"}, "pid": "9293", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:53.754311 2024-09-11 09:09:53.754316 735fc588-a168-48dd-960b-a06f92c552aa {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040351130"}, "pid": "9294", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:53.809962 2024-09-11 09:09:53.809967 7abda38a-35c2-4c0e-ae34-7c082f45c912 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04034889X"}, "pid": "9295", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:53.874394 2024-09-11 09:09:53.874398 a57014da-36c1-46bc-b2b5-57907630de4a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040344029"}, "pid": "9296", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:53.952286 2024-09-11 09:09:53.952292 e96a5b3f-7d65-497d-ac47-8841bf00aae2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040302482"}, "pid": "9297", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:54.004259 2024-09-11 09:09:54.004262 f4181a11-a1fb-4df7-9c4c-a5c3a96e2a3f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040299848"}, "pid": "9298", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:54.053431 2024-09-11 09:09:54.053439 f83d1728-f7da-4731-8e6d-5f55b5391d59 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040297519"}, "pid": "9299", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:54.110386 2024-09-11 09:09:54.110391 2c500d41-437c-4c73-8665-293de2d4186e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040296709"}, "pid": "9300", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:54.163619 2024-09-11 09:09:54.163623 be11ab9b-2c0f-4d22-b6f3-2347caf9f1f2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040270076"}, "pid": "9301", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:54.21864 2024-09-11 09:09:54.218645 a1a585e4-b21a-4084-b2b3-c3e79c05e6c0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040267210"}, "pid": "9302", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:54.27457 2024-09-11 09:09:54.274574 f08ffbaf-5c25-48d4-861c-82b7c1afca88 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040257029"}, "pid": "9303", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:54.328915 2024-09-11 09:09:54.328919 a0b81a6d-ed37-4524-b556-0f6a5cd8b991 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040246655"}, "pid": "9304", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:54.387957 2024-09-11 09:09:54.38796 1c2f0fe0-ee57-44ae-a50e-4ee8dbc5d0f0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040218066"}, "pid": "9305", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:54.445062 2024-09-11 09:09:54.445066 ea30953a-8550-4398-b179-937998fa5a7d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04021334X"}, "pid": "9306", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:54.509375 2024-09-11 09:09:54.50938 75fd5963-6882-497e-bc64-ee8032da50fd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040200728"}, "pid": "9307", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:54.568242 2024-09-11 09:09:54.568247 fe88f7c3-7275-4137-9619-350d94ccb64f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040200159"}, "pid": "9308", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:54.623256 2024-09-11 09:09:54.62326 e00f2380-7d0a-4a22-ad1c-9bc2b11bf68e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040195589"}, "pid": "9309", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:54.675243 2024-09-11 09:09:54.675247 44282db5-1a4e-42e9-9623-8d464266b91a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040172503"}, "pid": "9310", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:54.726268 2024-09-11 09:09:54.726272 1ba78181-c9bc-4d26-9c63-64e441d51a0f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040171078"}, "pid": "9311", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:54.782735 2024-09-11 09:09:54.782739 4b2f6e58-f3b6-4a30-b9f7-2eda4f7cca6d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040163172"}, "pid": "9312", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:54.839813 2024-09-11 09:09:54.839817 4b9b04ad-1cda-471a-bf8a-89f27243a221 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04015985X"}, "pid": "9313", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:54.895701 2024-09-11 09:09:54.895705 204bfa21-e1ed-43af-83b4-af92f8b6ddd6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040158292"}, "pid": "9314", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:54.965981 2024-09-11 09:09:54.965986 83b738a5-0bb8-4116-8f3a-c9c9ed1fb5bc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040143503"}, "pid": "9315", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:55.032094 2024-09-11 09:09:55.032098 18d85141-87f0-47a3-98c6-0337ca95e9d3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040143376"}, "pid": "9316", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:55.090286 2024-09-11 09:09:55.090289 bea94dcb-bd36-4a18-8f01-5ea959c22d3f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040137465"}, "pid": "9317", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:55.145435 2024-09-11 09:09:55.145439 68c176ea-4445-4ef4-8619-4c72dee25a22 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040136302"}, "pid": "9318", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:55.203571 2024-09-11 09:09:55.203576 591fd7eb-a947-4333-abea-83bf9f603378 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040132153"}, "pid": "9319", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:55.257384 2024-09-11 09:09:55.257387 11b90f2a-2e7b-4e02-97fa-875161932e7b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040110680"}, "pid": "9320", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:55.312923 2024-09-11 09:09:55.312927 6e5f6573-2ba7-4ddc-86b6-6ad3ebf6909b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040105423"}, "pid": "9321", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:55.371988 2024-09-11 09:09:55.371993 285dd78d-8ef8-4f58-88c3-412229479133 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040098923"}, "pid": "9322", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:55.434808 2024-09-11 09:09:55.434813 b5d77dbe-476f-48f6-811f-a0a47d8d4198 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040092755"}, "pid": "9323", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:55.492814 2024-09-11 09:09:55.492818 cb10264a-4efd-4fe2-9764-a5f62cbf468f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04009104X"}, "pid": "9324", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:55.555152 2024-09-11 09:09:55.555155 576f962d-190a-4a00-ad88-c86617b08f99 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040090809"}, "pid": "9325", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:55.612446 2024-09-11 09:09:55.61245 2d5570c2-911e-4e86-936f-bdb19282cf73 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040072118"}, "pid": "9326", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:55.665402 2024-09-11 09:09:55.665407 780b750d-1e8b-4f6c-9738-49fd8664d6c6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040070328"}, "pid": "9327", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:55.721601 2024-09-11 09:09:55.721604 5bd57b5f-7385-41d3-beb1-fd3b2b88e5de {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040060055"}, "pid": "9328", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:55.773263 2024-09-11 09:09:55.773265 5b72703d-f788-4a57-93cd-f8c8a03a4445 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040054020"}, "pid": "9329", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:55.831937 2024-09-11 09:09:55.831942 26246da0-6f38-4546-8a7f-4de22926fd28 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040048543"}, "pid": "9330", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:55.900052 2024-09-11 09:09:55.900057 eb0de264-ce14-4ccf-a0c3-9833c3e4eb34 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040035506"}, "pid": "9331", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:55.958938 2024-09-11 09:09:55.958943 b9cf9265-fbe0-4a3b-a177-74bd1e5916a9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04003500X"}, "pid": "9332", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:56.016228 2024-09-11 09:09:56.016232 b43f0a40-7bcd-4bf9-afbe-9da09ac06686 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040030962"}, "pid": "9333", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:56.071907 2024-09-11 09:09:56.071912 8732a9c5-4a2d-41da-8045-c043b331411b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040018040"}, "pid": "9334", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:56.130038 2024-09-11 09:09:56.130044 53050f1b-17c6-4944-9137-09d025a0be91 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040009866"}, "pid": "9335", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:56.182937 2024-09-11 09:09:56.18294 3ef95c1d-bbd3-4e5e-951d-346e024cde1f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040009327"}, "pid": "9336", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:56.23829 2024-09-11 09:09:56.238293 fa78d306-2eaf-4647-a7f1-2d894bd0c2d9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040004570"}, "pid": "9337", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:56.298048 2024-09-11 09:09:56.298051 4153ab61-7ea9-4b0e-9614-f7497dd732d0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04000158X"}, "pid": "9338", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:56.353424 2024-09-11 09:09:56.353428 b0598e6a-ec95-4cf9-a7d4-5415ca7896bd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336884932"}, "pid": "9339", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:56.412839 2024-09-11 09:09:56.412842 2d1af7f7-442a-48e4-ae60-c0456934b38d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336884762"}, "pid": "9340", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:56.467159 2024-09-11 09:09:56.467163 c07d61a4-5523-4626-a1ac-16f1cd3ac753 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336876913"}, "pid": "9341", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:56.52467 2024-09-11 09:09:56.524675 0ad37a72-0f17-4f8d-b27a-0a5bbff3d19d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336874678"}, "pid": "9342", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:56.579587 2024-09-11 09:09:56.579591 ffb5de24-97be-45eb-a3f4-d3c6cc7f0115 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336874414"}, "pid": "9343", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:56.638768 2024-09-11 09:09:56.638773 b1711f0f-046d-4944-a82a-f5c8bedd515d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133686463X"}, "pid": "9344", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:56.694522 2024-09-11 09:09:56.694526 7949c76a-1bdc-435f-9ab7-b5a6827109d2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336835052"}, "pid": "9345", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:56.750588 2024-09-11 09:09:56.750592 c1be121f-d48f-4074-8401-d13b6f1d1dcf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336765410"}, "pid": "9346", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:56.815659 2024-09-11 09:09:56.815663 5841ee0e-48df-440b-ae61-4dae3f9434a0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336763213"}, "pid": "9347", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:56.872065 2024-09-11 09:09:56.872067 910a8c60-33c8-4141-850d-72e44f76b6bf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336761083"}, "pid": "9348", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:56.930953 2024-09-11 09:09:56.930959 b8948fe5-7ce7-4015-89b2-11d83c880786 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336749369"}, "pid": "9349", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:56.994835 2024-09-11 09:09:56.994839 fec63e19-f5d2-4a1c-9c2f-919abefd8f8d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336591390"}, "pid": "9350", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:57.053778 2024-09-11 09:09:57.053782 73e526f3-e515-4add-ae31-1820e2852d1f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336589876"}, "pid": "9351", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:57.112001 2024-09-11 09:09:57.112004 13248dd4-b7ac-4dd2-89a3-bebaae22b62c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133658873X"}, "pid": "9352", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:57.172972 2024-09-11 09:09:57.172977 b30d4f7f-6d99-4cc2-b78f-1bbb41ac6153 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336532009"}, "pid": "9353", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:57.231546 2024-09-11 09:09:57.23155 cc360bc9-065f-47e6-abb0-ce215f17f24f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133646609X"}, "pid": "9354", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:57.288516 2024-09-11 09:09:57.28852 f876fb41-8aa6-43a9-a659-b6035d80ed10 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336401087"}, "pid": "9355", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:57.342486 2024-09-11 09:09:57.34249 de79e57f-142f-45f8-bec4-5bc5639d20e3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336381698"}, "pid": "9356", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:57.392732 2024-09-11 09:09:57.392736 8b36268e-e1ba-4ac3-9e57-7082d102d938 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336261625"}, "pid": "9357", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:57.44591 2024-09-11 09:09:57.445914 26c4d80d-7ccf-4148-a27f-b6a9a40d042a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336259086"}, "pid": "9358", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:57.510467 2024-09-11 09:09:57.510473 d320cb9f-29b3-48a8-aa37-ce6278fd195b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336255897"}, "pid": "9359", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:57.571812 2024-09-11 09:09:57.571814 18c10658-cb49-4af3-93b9-dcd3eace11a7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336255692"}, "pid": "9360", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:57.625818 2024-09-11 09:09:57.625821 b1dc6169-d57a-4f66-8f1c-eb08a70cf6ef {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336255609"}, "pid": "9361", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:57.678371 2024-09-11 09:09:57.678374 0fcf5516-3368-4b3e-a240-745f3f2ac04e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336248335"}, "pid": "9362", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:57.73489 2024-09-11 09:09:57.734894 6893f129-dad6-46e9-9c87-93651d65d761 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336235047"}, "pid": "9363", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:57.789819 2024-09-11 09:09:57.789823 21f7626b-9452-4001-a294-b6a8804cfb99 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336230754"}, "pid": "9364", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:57.84773 2024-09-11 09:09:57.847734 b02c1105-8b3b-4549-8421-edaead98df0e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336223200"}, "pid": "9365", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:57.907108 2024-09-11 09:09:57.907111 97232201-be23-4959-9a5e-3eff14d1b510 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336168528"}, "pid": "9366", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:57.961503 2024-09-11 09:09:57.961507 7a3802e9-f9d6-4bec-bf29-6168bc554dad {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336166509"}, "pid": "9367", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:58.023508 2024-09-11 09:09:58.023512 e0c21140-12b1-42da-94e0-a34e144273df {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336144033"}, "pid": "9368", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:58.093859 2024-09-11 09:09:58.093863 a2c6eb04-e719-4e68-b5dd-413ad1dbb620 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336140607"}, "pid": "9369", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:58.151376 2024-09-11 09:09:58.151383 0f35cf56-e252-46ea-a080-ec09f7523992 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336136634"}, "pid": "9370", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:58.211118 2024-09-11 09:09:58.211123 1b324914-a8fa-4fa9-bbf4-b82c7ffe29e2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336125306"}, "pid": "9371", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:58.271634 2024-09-11 09:09:58.271638 318c38fe-de27-436c-8178-6e3272e5f815 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336043652"}, "pid": "9372", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:58.325239 2024-09-11 09:09:58.325243 044084be-8b44-41d9-b627-723d954d1ec8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133603906X"}, "pid": "9373", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:58.380415 2024-09-11 09:09:58.380419 0ce8367e-bdb6-4d57-b5b2-a0146ad7254f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336037571"}, "pid": "9374", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:58.434393 2024-09-11 09:09:58.4344 7b202af1-bf75-4163-b3ca-11eb971ccea5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336035544"}, "pid": "9375", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:58.483545 2024-09-11 09:09:58.483548 c207922a-9bd4-47d0-88c2-84cc0471eaa7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336026758"}, "pid": "9376", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:58.538392 2024-09-11 09:09:58.538395 0c98675e-f6c5-438d-987a-db7946889b38 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336019883"}, "pid": "9377", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:58.59879 2024-09-11 09:09:58.598793 7316604c-fdcf-45fb-b231-38146a5983a3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1336015497"}, "pid": "9378", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:58.65878 2024-09-11 09:09:58.658785 d0e128d9-28d7-4250-9c4c-1a2bcc0cab31 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335982361"}, "pid": "9379", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:58.717674 2024-09-11 09:09:58.717679 7cfd4ce8-5d4f-4f4b-b484-e8b717603a21 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133595368X"}, "pid": "9380", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:58.771349 2024-09-11 09:09:58.771354 053233bc-96b3-4aab-83dd-2982fbc95870 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335904158"}, "pid": "9381", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:58.825792 2024-09-11 09:09:58.825796 35d12937-ccb8-4076-8d44-b708dec2ffe0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335903623"}, "pid": "9382", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:58.879452 2024-09-11 09:09:58.879455 3a2da583-e193-4582-8665-1424cb5db53a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335900330"}, "pid": "9383", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:58.935097 2024-09-11 09:09:58.935103 ba67565d-e1ad-4278-b4d7-bc8e5a865cba {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335882758"}, "pid": "9384", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:58.989241 2024-09-11 09:09:58.989246 b8fd97e0-13fc-4631-8e16-5e67239e86aa {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335881247"}, "pid": "9385", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:59.046071 2024-09-11 09:09:59.046077 b2dc7e2a-a5e5-4cb3-8b61-cd2d4afdfb1d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133582569X"}, "pid": "9386", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:59.181494 2024-09-11 09:09:59.181498 3bcca28a-385a-4ca0-b2ba-7152c232e47a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335777539"}, "pid": "9387", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:59.235891 2024-09-11 09:09:59.235894 ed89277f-464c-4c2c-b9f1-084b3f8e202c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335762779"}, "pid": "9388", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:59.289917 2024-09-11 09:09:59.28992 9d07311a-310e-4b9d-987d-bc261e17a7c8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335752897"}, "pid": "9389", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:59.348466 2024-09-11 09:09:59.348469 c5ca3e24-7a8a-40a0-a7e6-dd8036d7d9db {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133575086X"}, "pid": "9390", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:59.400322 2024-09-11 09:09:59.400327 7f754975-6d9c-4f62-ad6e-cd58e28204d6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335736832"}, "pid": "9391", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:59.455139 2024-09-11 09:09:59.455142 41cfd718-212b-46ed-bd51-3226614182f8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335733086"}, "pid": "9392", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:59.510526 2024-09-11 09:09:59.51053 c738303e-71a7-4106-978b-d65ec3fbad96 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335729577"}, "pid": "9393", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:59.568407 2024-09-11 09:09:59.568412 85f6ec92-7292-4bc8-a837-78277dc9ffff {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335727701"}, "pid": "9394", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:59.624593 2024-09-11 09:09:59.624597 c27135a5-2c9c-4be2-a4ad-709f00264f33 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335528539"}, "pid": "9395", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:59.680705 2024-09-11 09:09:59.680709 ab3dfe3c-8d61-48fa-8c2e-45321d9003b3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335514767"}, "pid": "9396", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:59.738493 2024-09-11 09:09:59.738496 200ab0c8-2487-45c8-982b-f91064ab501c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335503307"}, "pid": "9397", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:59.795601 2024-09-11 09:09:59.795605 a7a3c61e-b385-4e6b-a9ee-fd7b98622db7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335484930"}, "pid": "9398", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:59.850232 2024-09-11 09:09:59.850235 234406ea-5457-43a7-bcc3-f39cb4087df7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335484639"}, "pid": "9399", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:59.907956 2024-09-11 09:09:59.907959 c053c2f2-8c90-4761-81c3-294e55a51210 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335475753"}, "pid": "9400", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:09:59.96178 2024-09-11 09:09:59.961784 7e6f5787-3016-449d-b12f-4fbec0e30001 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335475575"}, "pid": "9401", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:00.017207 2024-09-11 09:10:00.01721 2e3e4ea6-4416-4f31-8a50-1dfafafee87a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335348379"}, "pid": "9402", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:00.073098 2024-09-11 09:10:00.0731 8721d986-dd72-454e-b61d-aedfdcec7b4f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335334955"}, "pid": "9403", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:00.130131 2024-09-11 09:10:00.130135 c9475bfd-3a42-46db-a753-dd05e76b6822 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335332510"}, "pid": "9404", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:00.20636 2024-09-11 09:10:00.206363 6c5135a0-198c-4f85-9c2a-381932116b41 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335327541"}, "pid": "9405", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:00.270828 2024-09-11 09:10:00.270833 f9c80528-7775-4111-b6c5-49f4db319f06 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335263977"}, "pid": "9406", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:00.32896 2024-09-11 09:10:00.328965 a49c8803-6a0b-40ba-a7de-52097975c977 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335255869"}, "pid": "9407", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:00.382668 2024-09-11 09:10:00.382671 7b2e4371-bcc4-481e-94ed-13a49f110daa {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335237232"}, "pid": "9408", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:00.4371 2024-09-11 09:10:00.437104 0270ee22-0041-4d09-9970-253e1592423a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335237046"}, "pid": "9409", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:00.495443 2024-09-11 09:10:00.495447 90b077cb-9b06-418f-87b4-8dad24dfddac {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133523490X"}, "pid": "9410", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:00.551326 2024-09-11 09:10:00.551336 562ed388-467b-46f4-9cb0-21e1ae74319c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335228187"}, "pid": "9411", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:00.607116 2024-09-11 09:10:00.607121 99377734-605f-49bd-87e0-34578593b6a7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335212299"}, "pid": "9412", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:00.66522 2024-09-11 09:10:00.665226 afecdfab-dda1-4e19-832c-edb4921c23b1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133521075X"}, "pid": "9413", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:00.722509 2024-09-11 09:10:00.722513 089702ee-9f45-4e26-928c-c8ba2b53cf57 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335201068"}, "pid": "9414", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:00.779226 2024-09-11 09:10:00.779229 4069dfd2-f4da-47ed-9475-c22044e8bd44 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335134549"}, "pid": "9415", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:00.833829 2024-09-11 09:10:00.833834 b758e854-0120-4599-9d98-66e3561dbdc0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1335054405"}, "pid": "9416", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:00.888918 2024-09-11 09:10:00.888922 a95fcb93-051f-407c-a0b1-59c3397661e7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334935475"}, "pid": "9417", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:00.943988 2024-09-11 09:10:00.943992 77d8d22e-8361-4fdc-ac82-794fb108a4e4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334906815"}, "pid": "9418", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:01.001759 2024-09-11 09:10:01.001765 98adf2ec-6f3d-4e4f-b485-e095adbc8dce {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334879079"}, "pid": "9419", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:01.055615 2024-09-11 09:10:01.055619 98456316-36af-4719-8ad2-cf77c3e8439f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334810524"}, "pid": "9420", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:01.110427 2024-09-11 09:10:01.110431 8af0ded9-9b91-4f3b-b10f-cec02d3aab83 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334804893"}, "pid": "9421", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:01.168977 2024-09-11 09:10:01.168982 41bf3e16-7a0c-4f82-a159-fc194534b7d1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334804699"}, "pid": "9422", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:01.224447 2024-09-11 09:10:01.224451 ad4ffc9c-11ea-438f-bd46-636c087ff8cd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334804281"}, "pid": "9423", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:01.289597 2024-09-11 09:10:01.289602 aec4f9b3-e60c-47d0-b3c5-289aee7b7c8a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334795533"}, "pid": "9424", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:01.367199 2024-09-11 09:10:01.367205 4b038ed2-8c11-4c72-b1b6-dd3830fdbf2f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334784639"}, "pid": "9425", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:01.423675 2024-09-11 09:10:01.423678 a1c1f065-0e76-4f1a-b550-bbeb0a775279 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334676844"}, "pid": "9426", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:01.478706 2024-09-11 09:10:01.478709 3dcf943f-2018-4d2e-b3d3-38392dc26bf8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334652074"}, "pid": "9427", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:01.534697 2024-09-11 09:10:01.534701 d0ec0cf0-65c6-43e0-82f9-27bf66e35fc3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1334205639"}, "pid": "9428", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:01.599926 2024-09-11 09:10:01.599932 fee6e346-33ef-4ff3-b036-91cb9033fbe2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333849850"}, "pid": "9429", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:01.655022 2024-09-11 09:10:01.655025 6ee51b1d-a7ec-4db5-9531-be61db3d57bb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333570651"}, "pid": "9430", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:01.713427 2024-09-11 09:10:01.71343 38990035-53ed-4c7b-84a7-4e6c3a24d38c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333353421"}, "pid": "9431", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:01.771355 2024-09-11 09:10:01.771359 4677a43a-a032-4213-8a54-6a6b919a345c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333321201"}, "pid": "9432", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:01.833519 2024-09-11 09:10:01.833521 9aa3b659-eba6-4e79-92e3-0414eeaa2cd8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333260148"}, "pid": "9433", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:01.887488 2024-09-11 09:10:01.887493 bbdb1a23-d7ad-4fdf-99ca-dcd4fe6967be {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333126433"}, "pid": "9434", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:01.942901 2024-09-11 09:10:01.942903 f53fb3c8-5bb4-466a-8fc0-5f925c4ba86b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1333115482"}, "pid": "9435", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:01.996551 2024-09-11 09:10:01.996555 56c6c545-fd34-4226-bb8a-0cce783b1610 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332860451"}, "pid": "9436", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:02.051762 2024-09-11 09:10:02.051767 70b3ffcb-2d29-40a2-9ff0-6743c0cb4b8d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332767702"}, "pid": "9437", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:02.108647 2024-09-11 09:10:02.108651 cde276bd-6599-4125-98cd-e6365acee456 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332765785"}, "pid": "9438", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:02.162882 2024-09-11 09:10:02.162887 bdfbd550-1ad5-45bf-809e-dff8bb1d381b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332734316"}, "pid": "9439", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:02.221279 2024-09-11 09:10:02.221284 e04b9193-ae83-4431-b541-fc4bfa0aed36 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332672701"}, "pid": "9440", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:02.275682 2024-09-11 09:10:02.275686 deededc6-bdd8-47e2-97e4-66f139275450 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332661327"}, "pid": "9441", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:02.328574 2024-09-11 09:10:02.328577 2b0f2423-a592-4b4a-8100-eee64e6ad7e5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332426336"}, "pid": "9442", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:02.383505 2024-09-11 09:10:02.38351 94d11409-7a33-4939-9f1d-c360e6bda574 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1332101607"}, "pid": "9443", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:02.439693 2024-09-11 09:10:02.439696 eb9ab460-beb0-4427-bc24-5c847479172e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331864321"}, "pid": "9444", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:02.503947 2024-09-11 09:10:02.503952 fd20319b-5778-45c0-b033-76d6df357dd3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331496861"}, "pid": "9445", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:02.567024 2024-09-11 09:10:02.567028 94c0360c-cbfe-4d21-8d2f-91cd31c0af83 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1331098114"}, "pid": "9446", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:02.6188 2024-09-11 09:10:02.618807 fb29c6f8-59d9-4977-afe2-70a0cd679fdb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/133099051X"}, "pid": "9447", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:02.674347 2024-09-11 09:10:02.674351 1d240152-d145-442f-a74c-63eeecaf09ed {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330990056"}, "pid": "9448", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:02.733454 2024-09-11 09:10:02.733459 e46e97c9-b2df-4176-96d6-7474f12aa51c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330988728"}, "pid": "9449", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:02.791836 2024-09-11 09:10:02.79184 ec1fb7af-dde1-4739-8597-34302680083a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330985524"}, "pid": "9450", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:02.847856 2024-09-11 09:10:02.847859 03df0de2-4570-4359-a82b-82aaab17977e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330588517"}, "pid": "9451", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:02.903928 2024-09-11 09:10:02.903932 cf138b71-b3f4-4c56-a4d5-e6f39dd49e41 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330408837"}, "pid": "9452", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:02.964186 2024-09-11 09:10:02.964191 753ccae1-9855-4206-a7a2-d901aa390019 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330360036"}, "pid": "9453", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:03.027537 2024-09-11 09:10:03.02754 419715f7-f4b1-4721-b78e-a0529eee8b13 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330201647"}, "pid": "9454", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:03.084494 2024-09-11 09:10:03.084498 cb9ea76f-5251-404b-84f6-8b4e4ab66a7b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1330126599"}, "pid": "9455", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:03.149327 2024-09-11 09:10:03.149331 8e7e31cb-64bc-409c-b3a5-295406c59ffb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/132940422X"}, "pid": "9456", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:03.207491 2024-09-11 09:10:03.207494 cbfbded7-2dde-491c-bf1c-7d324b61f599 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1329376129"}, "pid": "9457", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:03.261678 2024-09-11 09:10:03.261682 58462c85-9300-4817-820c-2f146942242c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/132935639X"}, "pid": "9458", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:03.323657 2024-09-11 09:10:03.323662 cbefa0fa-7226-4fb3-a79d-3230d650547b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1329174003"}, "pid": "9459", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:03.385884 2024-09-11 09:10:03.385889 34ab6b4f-cc9c-442b-9375-74a3c15ad253 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1329171675"}, "pid": "9460", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:03.450543 2024-09-11 09:10:03.450545 4955b6a4-5f33-4039-9c16-b3bba84b658f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1328712400"}, "pid": "9461", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:03.502193 2024-09-11 09:10:03.502197 8bdc6336-8692-4dc7-b1d8-70854de8b6e3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1327991349"}, "pid": "9462", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:03.55899 2024-09-11 09:10:03.558995 287dd19f-ae7d-4b81-b27d-078faccd30bd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1327910268"}, "pid": "9463", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:03.618019 2024-09-11 09:10:03.618023 aa8f58b1-3387-40cd-8f99-03b9ea7477d5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1327458667"}, "pid": "9464", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:03.673007 2024-09-11 09:10:03.67301 5fd96ab9-528c-459f-a204-3222dd028464 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1326349392"}, "pid": "9465", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:03.726991 2024-09-11 09:10:03.726993 96a5a562-4bc5-49b5-a502-33c581064712 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/132585283X"}, "pid": "9466", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:03.781215 2024-09-11 09:10:03.781218 88770a51-289c-47ac-9f25-66e0cb9230b5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1325643645"}, "pid": "9467", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:03.843619 2024-09-11 09:10:03.843623 ffcd3521-b1a3-4de7-86e8-a94253789657 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1325061557"}, "pid": "9468", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:03.899552 2024-09-11 09:10:03.899557 26736117-42d6-4037-afa3-5f6f74db98ff {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1324688629"}, "pid": "9469", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:03.958495 2024-09-11 09:10:03.958499 d710aa1a-f547-4163-82af-daa24b605882 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1324590173"}, "pid": "9470", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:04.022934 2024-09-11 09:10:04.022939 63454c3d-a810-4f49-9848-7009d9bddfe4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1324101318"}, "pid": "9471", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:04.087299 2024-09-11 09:10:04.087303 a9673264-9af3-4633-a872-b76d17a27514 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1324092424"}, "pid": "9472", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:04.150891 2024-09-11 09:10:04.150899 53d82f0a-64da-49ee-be66-e27d6306aded {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1323913084"}, "pid": "9473", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:04.199667 2024-09-11 09:10:04.19967 7d83c167-fbca-427d-a22c-aa6b95d8dd9a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1323835148"}, "pid": "9474", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:04.256953 2024-09-11 09:10:04.256956 a1c151bb-7711-4a8e-a65d-96e3daa23a62 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1323832262"}, "pid": "9475", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:04.312466 2024-09-11 09:10:04.31247 5e1552d3-55ca-434b-ab4c-dc15e2cdd34c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1323804129"}, "pid": "9476", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:04.365924 2024-09-11 09:10:04.365927 2cfd07e9-f1f8-4e30-baec-86a5b8abf141 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1323769536"}, "pid": "9477", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:04.421083 2024-09-11 09:10:04.421087 224f502c-88d3-42ad-b8b3-e802f2d73a48 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1323705910"}, "pid": "9478", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:04.481739 2024-09-11 09:10:04.481743 9d302d2d-63b6-4b51-b103-36e3d856b78f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1323590102"}, "pid": "9479", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:04.54563 2024-09-11 09:10:04.545633 bbafb5eb-e18a-447a-b545-b0156c16a081 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1323303669"}, "pid": "9480", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:04.598317 2024-09-11 09:10:04.598321 039de00e-f042-4c31-a5b5-c0fbace681c1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1323303103"}, "pid": "9481", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:04.657194 2024-09-11 09:10:04.657197 1f5b6681-68fc-4d8d-b302-77b45a73ce62 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1323069380"}, "pid": "9482", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:04.714157 2024-09-11 09:10:04.714161 8a1a4989-69fb-48f7-9b37-e4a63a4cfb7d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1322662401"}, "pid": "9483", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:04.768957 2024-09-11 09:10:04.768961 632aadb4-16e3-4691-991e-4ec59e77ce8f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1322661030"}, "pid": "9484", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:04.823388 2024-09-11 09:10:04.823391 a546d3bc-a53d-4619-be7b-7813a5fd52a6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1322508801"}, "pid": "9485", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:04.878069 2024-09-11 09:10:04.878073 c4c3cec8-1c48-475d-9119-8f52943954ef {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1322264716"}, "pid": "9486", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:04.934215 2024-09-11 09:10:04.93422 418c1569-bc41-43b3-95be-efb85d606b82 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1321257988"}, "pid": "9487", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:04.986759 2024-09-11 09:10:04.986763 e6060ecb-dafc-4360-bc78-03469ad54523 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1321125623"}, "pid": "9488", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:05.042988 2024-09-11 09:10:05.042992 573fe3cf-bc7f-4d8d-997d-397b31846773 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1321125577"}, "pid": "9489", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:05.112896 2024-09-11 09:10:05.112899 66ec4f82-7a13-4aa5-b504-de96dfc9f54e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1319483321"}, "pid": "9490", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:05.195206 2024-09-11 09:10:05.195209 6ff6fe3d-08e4-4b4b-b637-2f77ce5cfcb1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1319390072"}, "pid": "9491", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:05.251039 2024-09-11 09:10:05.251048 56bfe7b7-6e8a-4515-a504-3072f1beb059 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1318715598"}, "pid": "9492", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:05.310205 2024-09-11 09:10:05.310208 df79d783-7e3a-47ad-b341-4e1318aac7b6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1318430968"}, "pid": "9493", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:05.365829 2024-09-11 09:10:05.365835 479a101a-a595-4b94-a313-1e5de44af7f7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/131634410X"}, "pid": "9494", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:05.422112 2024-09-11 09:10:05.422116 0e432f38-62c8-42ee-9640-3f9f961ca32f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1315679264"}, "pid": "9495", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:05.478955 2024-09-11 09:10:05.478958 29e77aa8-aa3a-4b42-a600-8d57197367e9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1315456125"}, "pid": "9496", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:05.538497 2024-09-11 09:10:05.538501 88dfebac-5fcc-4616-85f7-f2f8344da4ae {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1315226715"}, "pid": "9497", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:05.607947 2024-09-11 09:10:05.607951 b88f6880-eafc-4635-a404-f8da1d8257f8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1315045133"}, "pid": "9498", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:05.676395 2024-09-11 09:10:05.676401 398754f4-546f-4b8e-9007-ee5a051b0349 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/131453260X"}, "pid": "9499", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:05.74734 2024-09-11 09:10:05.747346 2476e9de-888d-4129-9f4f-3b463f7c62dc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1314347403"}, "pid": "9500", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:05.813532 2024-09-11 09:10:05.813536 04ba4d05-8241-442c-a296-820ca1ba98a8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1314019333"}, "pid": "9501", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:05.871861 2024-09-11 09:10:05.871864 8ebbe15c-7316-415e-a09e-8237be09a001 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1312507497"}, "pid": "9502", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:05.925419 2024-09-11 09:10:05.925423 5d288e7d-6797-41e3-aabb-a77b68317d3d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1312506059"}, "pid": "9503", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:05.983289 2024-09-11 09:10:05.983294 66847bd0-3602-4fdb-99a4-2719f79bfdb5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1311262989"}, "pid": "9504", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:06.043466 2024-09-11 09:10:06.043471 d8ce4eb6-8b9b-40ba-b3bc-8ce4afbef0dd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1311025847"}, "pid": "9505", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:06.101049 2024-09-11 09:10:06.101055 d1de9e8d-855d-4310-bc6f-5e78fac38e8d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1310673683"}, "pid": "9506", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:06.162187 2024-09-11 09:10:06.162191 a369c4a1-b590-4edc-8423-a1a09176b91a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1309822123"}, "pid": "9507", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:06.218891 2024-09-11 09:10:06.218896 70113bd8-57f3-44ab-9b9f-1598267d4b3d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1308550189"}, "pid": "9508", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:06.278927 2024-09-11 09:10:06.27893 386e4a09-2ff7-4330-be12-954253928d63 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1305189876"}, "pid": "9509", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:06.341881 2024-09-11 09:10:06.341885 743d91ec-ff2f-4deb-a3b0-1a9f13dc4722 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1304711749"}, "pid": "9510", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:06.40419 2024-09-11 09:10:06.404194 6f7f3ca9-91dd-4a17-b088-f7d947a6a01e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1304458741"}, "pid": "9511", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:06.46778 2024-09-11 09:10:06.467785 618ea1c5-0c1d-4260-8f71-3ef571fbe63f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1303066408"}, "pid": "9512", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:06.527711 2024-09-11 09:10:06.527716 8745db41-aae7-464f-b37d-32a80a6d13b2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1302981390"}, "pid": "9513", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:06.589044 2024-09-11 09:10:06.589048 ed895179-04cf-421d-af29-4c367fb094f0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1302782517"}, "pid": "9514", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:06.64833 2024-09-11 09:10:06.648334 aed1e1d4-e11f-435e-a6aa-ca0d3a83802b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1302782274"}, "pid": "9515", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:06.705221 2024-09-11 09:10:06.705224 cb21d3e7-fd57-4f42-beb4-c49a8edc6508 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1302781162"}, "pid": "9516", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:06.774946 2024-09-11 09:10:06.774951 4d7413b9-6e8e-4b19-8574-354c3254e43e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1302592122"}, "pid": "9517", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:06.834139 2024-09-11 09:10:06.834145 a1fef7dd-3396-48e4-a5c2-235fede1863d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1298190746"}, "pid": "9518", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:06.88688 2024-09-11 09:10:06.886887 4c81e709-b94d-4fc2-b977-e2a2e0f92ed5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1296860906"}, "pid": "9519", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:06.950876 2024-09-11 09:10:06.950885 45c9a5ff-224d-4999-82a7-5ad2ecee9870 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1296369811"}, "pid": "9520", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:07.007594 2024-09-11 09:10:07.007599 bfd864d1-c4f4-493d-9bb1-32f019d5b2af {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1295208512"}, "pid": "9521", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:07.065545 2024-09-11 09:10:07.06555 e297c053-5d02-4ff5-baa4-9bde10fbbf21 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1294996460"}, "pid": "9522", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:07.125644 2024-09-11 09:10:07.125647 2d9df96d-5266-4ba2-a586-defe222da74a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1294772627"}, "pid": "9523", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:07.188283 2024-09-11 09:10:07.188287 3e2b0aa0-cf9b-4a45-9b9c-210e2fffe875 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/129400283X"}, "pid": "9524", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:07.252078 2024-09-11 09:10:07.252082 75200210-3a21-43d5-89ca-dfcfa5a66b1b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1292845384"}, "pid": "9525", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:07.309046 2024-09-11 09:10:07.309052 2aa3b34a-b77c-4560-a57a-f6836c147cba {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1286766397"}, "pid": "9526", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:07.372217 2024-09-11 09:10:07.37222 e49c44cf-85aa-42cf-b57c-f5773b147fde {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1286227941"}, "pid": "9527", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:07.431482 2024-09-11 09:10:07.431486 4daf9123-8fe0-409c-93f8-224e2ff4b270 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1286106745"}, "pid": "9528", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:07.486981 2024-09-11 09:10:07.486984 9092ffe7-78c4-435e-bf83-d16c1801f586 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1285304527"}, "pid": "9529", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:07.544012 2024-09-11 09:10:07.544017 a0276b3c-f4f8-446a-abed-dd708176a094 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1284854744"}, "pid": "9530", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:07.604306 2024-09-11 09:10:07.604311 192bc497-50a8-4f60-a862-1648f2604cd4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1284760456"}, "pid": "9531", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:07.662666 2024-09-11 09:10:07.66267 e6e6ea35-27e9-45a5-89ae-8524db99eef3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/127990271X"}, "pid": "9532", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:07.718471 2024-09-11 09:10:07.718478 94acfb0f-0361-408c-845d-65578b674b49 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1279534311"}, "pid": "9533", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:07.770383 2024-09-11 09:10:07.770386 2858dbac-81a8-49c8-8689-2eb7e618456e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1278300821"}, "pid": "9534", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:07.823424 2024-09-11 09:10:07.823428 20c312f7-1fa2-49ca-92f5-656d95feaffa {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1275762158"}, "pid": "9535", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:07.881615 2024-09-11 09:10:07.881619 5fe17a1a-2dc0-4120-9e46-015ecdb5013f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1275016057"}, "pid": "9536", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:07.943337 2024-09-11 09:10:07.943342 daa1976d-4028-4970-8d68-b4c0b9fef131 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1274846765"}, "pid": "9537", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:08.000266 2024-09-11 09:10:08.00027 461b9f36-b8a8-453a-96c7-f9fdcf61411b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1272439836"}, "pid": "9538", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:08.052447 2024-09-11 09:10:08.052452 68bf6ae8-7d98-4338-9194-2dd5631fef23 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1272436322"}, "pid": "9539", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:08.105577 2024-09-11 09:10:08.105581 a28ec2a2-12d2-4c62-a82b-ef31ebc5ae58 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/127243124X"}, "pid": "9540", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:08.160398 2024-09-11 09:10:08.160403 9725040e-d5b1-4436-a739-5072d770b40d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1272429997"}, "pid": "9541", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:08.215428 2024-09-11 09:10:08.215432 201f605e-2207-4584-9fc4-76afa6441832 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1272339785"}, "pid": "9542", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:08.27159 2024-09-11 09:10:08.271594 60d3be79-4542-4425-ac28-d44e558fe12a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1272271439"}, "pid": "9543", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:08.324669 2024-09-11 09:10:08.324673 501fc728-2d1f-4f5a-8b7b-abfdb6809e1b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1272267792"}, "pid": "9544", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:08.378069 2024-09-11 09:10:08.378073 c9f5a771-82c4-4700-93e2-11f737f3501e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1272258963"}, "pid": "9545", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:08.43512 2024-09-11 09:10:08.435124 1027ae62-9c2b-4fd9-b1c3-e2ec67006e77 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1271905698"}, "pid": "9546", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:08.489149 2024-09-11 09:10:08.489154 588cca93-96e1-4721-9925-c0617d99ae6b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1271895765"}, "pid": "9547", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:08.55366 2024-09-11 09:10:08.553665 ff85965a-b16a-4714-b413-2b22e6e469a2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/127188898X"}, "pid": "9548", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:08.619883 2024-09-11 09:10:08.619887 8f0f83da-06b9-4763-9153-617641e86e1e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1271822776"}, "pid": "9549", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:08.676179 2024-09-11 09:10:08.676184 fe099bf6-3ebe-4dec-a4e0-45fb6472581d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1271808897"}, "pid": "9550", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:08.732672 2024-09-11 09:10:08.732677 5653679c-4d7d-4063-91ab-0f47d2d79292 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1271790165"}, "pid": "9551", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:08.792838 2024-09-11 09:10:08.792842 99205f1b-e611-40f3-9f4c-ef5287837d9f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1271715899"}, "pid": "9552", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:08.848586 2024-09-11 09:10:08.84859 a18f7088-b06f-4ecd-8b0f-f63621676b60 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1271381702"}, "pid": "9553", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:08.903899 2024-09-11 09:10:08.903903 2507ccf5-0de6-4bd7-a36b-742d2aedb7c0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1270556959"}, "pid": "9554", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:08.966292 2024-09-11 09:10:08.966297 0e465e15-0d00-43a3-8364-079a4068586f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1268246964"}, "pid": "9555", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:09.024654 2024-09-11 09:10:09.024658 6fea667b-fcd2-47ec-bd41-9caca8371976 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/126750370X"}, "pid": "9556", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:09.101822 2024-09-11 09:10:09.101828 ed42a263-a3b8-496e-9e01-bf7d1adc1ae4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1267495847"}, "pid": "9557", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:09.165436 2024-09-11 09:10:09.165441 7d6f10f3-0e85-41ef-869a-d4c94a8b8b5d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1267493216"}, "pid": "9558", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:09.225675 2024-09-11 09:10:09.225677 4cb92234-63eb-4ed5-aa4a-b710eb73b2d9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1266330917"}, "pid": "9559", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:09.287072 2024-09-11 09:10:09.287075 cd8191ad-cbc5-4a47-8fa0-e2a6f94a8313 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1265612927"}, "pid": "9560", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:09.340878 2024-09-11 09:10:09.340882 1ca19807-75ec-47ee-89be-0b880ea013e2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1265218374"}, "pid": "9561", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:09.390041 2024-09-11 09:10:09.390044 da07f0fa-f09f-4a01-b7dd-b7ed3bb30baf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1261254937"}, "pid": "9562", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:09.441013 2024-09-11 09:10:09.441017 4d4a1134-c5d1-44c5-a106-443579f5aebf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1259273660"}, "pid": "9563", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:09.496541 2024-09-11 09:10:09.496544 eb8df7e7-2601-4b1e-9069-fd47f09b9ca0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1257092030"}, "pid": "9564", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:09.552961 2024-09-11 09:10:09.552965 e77b63a2-f3bb-410d-8466-08bff61c9e59 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1256073210"}, "pid": "9565", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:09.610597 2024-09-11 09:10:09.610601 ee0cb196-759a-49c5-adcc-45782d7685ec {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1256072893"}, "pid": "9566", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:09.668433 2024-09-11 09:10:09.668438 518b8570-e2c5-4fd2-87e3-2de19fad9538 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1254291482"}, "pid": "9567", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:09.725879 2024-09-11 09:10:09.725883 6819522a-eaf9-49d0-8815-0f1a39a16100 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1251426239"}, "pid": "9568", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:09.783374 2024-09-11 09:10:09.783377 5dd7ce0e-9404-412b-9ded-36e1491c96cf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1248276604"}, "pid": "9569", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:09.838786 2024-09-11 09:10:09.838788 b0b5186c-89d4-43c4-b2ad-42f26721c562 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1245158511"}, "pid": "9570", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:09.899955 2024-09-11 09:10:09.899961 22dfefae-8433-43d5-924a-bb017b64cffb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1242560637"}, "pid": "9571", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:09.956236 2024-09-11 09:10:09.956238 435b0c7a-b7b3-48aa-a81d-528b2def5e85 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/124129562X"}, "pid": "9572", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:10.018609 2024-09-11 09:10:10.018613 ae5435a0-f563-4000-a2b2-b943210963b8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1239152302"}, "pid": "9573", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:10.075412 2024-09-11 09:10:10.075416 9aae67b9-2f60-46fb-90da-856ea58f31a1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1237145422"}, "pid": "9574", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:10.136422 2024-09-11 09:10:10.136427 e1a31000-bb1e-46e3-a024-6e055be5cb06 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1232354244"}, "pid": "9575", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:10.204201 2024-09-11 09:10:10.204205 fb7ec539-51e3-445c-b03e-698f6a935c98 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1229013695"}, "pid": "9576", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:10.262491 2024-09-11 09:10:10.262496 282078e6-743b-4173-8952-11016565b0c8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1225001064"}, "pid": "9577", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:10.318 2024-09-11 09:10:10.318002 05f5026c-d4e8-46ee-871e-9bd6dbaeb977 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1217543678"}, "pid": "9578", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:10.371994 2024-09-11 09:10:10.371997 2e213629-af66-40d7-bc9d-b81724230986 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1213474337"}, "pid": "9579", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:10.429502 2024-09-11 09:10:10.429507 815d2a76-2586-4662-9961-9722d68b4aa1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1213276500"}, "pid": "9580", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:10.483078 2024-09-11 09:10:10.483082 e8d68e42-ea62-4951-91d1-f7427236a90e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1211610659"}, "pid": "9581", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:10.538781 2024-09-11 09:10:10.538786 7a961a3d-de05-4c04-992d-1f93ea6fb3ad {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1206111984"}, "pid": "9582", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:10.592875 2024-09-11 09:10:10.592879 1bf3bd13-1041-4176-bfef-7fbf8ec31d30 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1205504184"}, "pid": "9583", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:10.648906 2024-09-11 09:10:10.64891 f1d5f136-d366-41d5-9acb-0cf1514aafb8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1204138915"}, "pid": "9584", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:10.71089 2024-09-11 09:10:10.710894 cef556c4-3a92-46d3-8c57-8973147a4c85 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/120246193X"}, "pid": "9585", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:10.766524 2024-09-11 09:10:10.766529 7679dc74-8a2f-4220-bfeb-bb2b132310ee {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1201306663"}, "pid": "9586", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:10.827655 2024-09-11 09:10:10.827659 805931f8-06d7-4b78-b3d5-cd0ba2904f6c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1197813853"}, "pid": "9587", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:10.885223 2024-09-11 09:10:10.88523 acb5fefd-4179-4086-8a9a-4f38ab732287 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1197084231"}, "pid": "9588", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:10.952818 2024-09-11 09:10:10.952823 24eebe7d-e88f-44d3-8b26-86a0be1c13cb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1196153183"}, "pid": "9589", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:11.008437 2024-09-11 09:10:11.008441 f5ffc95f-0422-47f8-899f-245fcc2296ca {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1195721455"}, "pid": "9590", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:11.065194 2024-09-11 09:10:11.065199 e7427fc5-b90c-4c1e-8558-857488c45ee0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1195720424"}, "pid": "9591", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:11.120145 2024-09-11 09:10:11.120148 00a22ee7-e7de-4667-a6f5-10a0af3d13bb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1192998324"}, "pid": "9592", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:11.177068 2024-09-11 09:10:11.177072 bd4bcc57-361f-4f27-a5f7-cfd12d731a30 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/119298918X"}, "pid": "9593", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:11.244365 2024-09-11 09:10:11.24437 e4b4a76f-7b1d-40fe-9702-30f9fe4fa018 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1191213307"}, "pid": "9594", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:11.305534 2024-09-11 09:10:11.305537 1282bb7e-c19b-4c1a-90c1-165a7e8634e7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1190744996"}, "pid": "9595", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:11.362557 2024-09-11 09:10:11.362559 6a1e1f47-80f2-4b99-9f08-f80edb1df986 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1189251949"}, "pid": "9596", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:11.417988 2024-09-11 09:10:11.417993 6d944d73-c510-450c-ae06-60a6913bbda5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1181270391"}, "pid": "9597", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:11.473269 2024-09-11 09:10:11.473273 bf09083b-95cb-4d4a-a720-46c0477fcec2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1177428253"}, "pid": "9598", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:11.528169 2024-09-11 09:10:11.528172 46da9e1d-5b21-475f-a52f-6a3bad50c220 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1172931720"}, "pid": "9599", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:11.583518 2024-09-11 09:10:11.583523 623fd2f7-0aa3-4017-8972-69d588954f16 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1164102931"}, "pid": "9600", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:11.641429 2024-09-11 09:10:11.641433 7f2de4f2-2f45-4987-ae51-a630870c73dd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1162074078"}, "pid": "9601", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:11.704408 2024-09-11 09:10:11.704411 6eece37f-acce-4d18-a1db-60c4ea46e238 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1162070234"}, "pid": "9602", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:11.763984 2024-09-11 09:10:11.763988 5ad1ba80-786e-4000-af70-bdd1b41f1af6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1162069848"}, "pid": "9603", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:11.82096 2024-09-11 09:10:11.820964 79f0d102-572c-43e2-b6d2-0dec880759de {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1162069279"}, "pid": "9604", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:11.877875 2024-09-11 09:10:11.877881 e224011e-8d7c-4f81-ab1d-3774031450d4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1161370048"}, "pid": "9605", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:11.938399 2024-09-11 09:10:11.938402 9f98758d-ec61-44ea-8d92-254dd104be00 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1160916276"}, "pid": "9606", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:11.993703 2024-09-11 09:10:11.993707 9d614139-8ed4-406c-8c67-34691ecfa4f1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1160040834"}, "pid": "9607", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:12.050721 2024-09-11 09:10:12.050725 1f5ea515-046b-41a9-a2e3-17b376268858 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1159933278"}, "pid": "9608", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:12.105492 2024-09-11 09:10:12.105496 ba44db09-8f0c-4d76-96de-b0b2220172d8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1159933006"}, "pid": "9609", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:12.164084 2024-09-11 09:10:12.164088 15b2e739-4fa7-4418-8896-9d3b83f3f180 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/115992869X"}, "pid": "9610", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:12.214071 2024-09-11 09:10:12.214075 1b7e6e56-a908-467a-8631-1955601a6936 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1159920850"}, "pid": "9611", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:12.269036 2024-09-11 09:10:12.269041 2bb5d781-0f14-4e9c-bca0-d6d6ab56dddf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/115992063X"}, "pid": "9612", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:12.322621 2024-09-11 09:10:12.322625 038a8106-cdc6-4ad7-bdca-5583752f9c82 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1159919828"}, "pid": "9613", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:12.383404 2024-09-11 09:10:12.383408 449bb539-5354-43f4-afda-5fce02060949 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1159716978"}, "pid": "9614", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:12.45122 2024-09-11 09:10:12.451228 1de81edc-2fc4-415e-9543-3c131f7f859c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1159673381"}, "pid": "9615", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:12.508315 2024-09-11 09:10:12.508318 630c3238-e58c-44e5-b88b-b617e0f3675f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1159652686"}, "pid": "9616", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:12.568133 2024-09-11 09:10:12.568137 762b4100-1ef1-4405-b405-f3f6e0f31ca1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1158529643"}, "pid": "9617", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:12.621129 2024-09-11 09:10:12.621133 c2923855-49e4-40a8-90a1-8568a77c5837 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1156463467"}, "pid": "9618", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:12.677238 2024-09-11 09:10:12.677242 83e8e7fd-bf1d-40bf-b557-5c71b5dd1183 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1153904039"}, "pid": "9619", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:12.730481 2024-09-11 09:10:12.730486 248ec03b-f09e-4a30-ba98-4b396c5670d2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1153848325"}, "pid": "9620", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:12.783184 2024-09-11 09:10:12.783187 e5e7d334-4557-4fd4-90de-836a1a4ee879 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1153645505"}, "pid": "9621", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:12.842738 2024-09-11 09:10:12.842743 964a71cd-2110-4c25-b4d8-b1d978e5576d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1148983325"}, "pid": "9622", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:12.901559 2024-09-11 09:10:12.901563 8c2a1767-82d7-4f72-8d85-2c92803c15f9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1148983317"}, "pid": "9623", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:12.961597 2024-09-11 09:10:12.961601 9319341e-1d49-425e-b51e-64724641d6f1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1148982329"}, "pid": "9624", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:13.025023 2024-09-11 09:10:13.025026 6dfafd41-5005-49f1-a610-c83726deebd9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1145164617"}, "pid": "9625", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:13.081526 2024-09-11 09:10:13.08153 02543956-b9da-41dd-85a0-4e6ff311bba9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/113724061X"}, "pid": "9626", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:13.137602 2024-09-11 09:10:13.137607 6e4a9468-c68c-46a2-aff6-d7b0fd201f64 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1136198113"}, "pid": "9627", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:13.194263 2024-09-11 09:10:13.194267 b6b895dd-b7ac-4711-b24f-995fc42347f2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1136044426"}, "pid": "9628", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:13.254472 2024-09-11 09:10:13.254476 6046b193-37af-4fec-9458-38c7af95380f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1133521657"}, "pid": "9629", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:13.307666 2024-09-11 09:10:13.30767 0c7990fa-4eb5-4a87-8332-f2775b43ff30 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1132275067"}, "pid": "9630", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:13.370495 2024-09-11 09:10:13.370499 2eddc415-63b1-42d4-b694-c3e616ba1e35 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1132231477"}, "pid": "9631", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:13.433501 2024-09-11 09:10:13.433507 b75ddffd-ac48-493b-8ff6-517a2f6d5ba4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1131360478"}, "pid": "9632", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:13.498611 2024-09-11 09:10:13.498616 329e0b59-eb73-416e-8325-cd4563b02502 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1127087932"}, "pid": "9633", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:13.553133 2024-09-11 09:10:13.553138 728a86c1-5e32-46a6-b497-539ff3c85ee9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1126284823"}, "pid": "9634", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:13.611983 2024-09-11 09:10:13.611987 f551d7fd-d6fb-4456-ba82-2c3f5df06d62 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1124811885"}, "pid": "9635", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:13.668117 2024-09-11 09:10:13.66812 71871823-92bd-482d-adb9-ab158daaaa05 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1124612114"}, "pid": "9636", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:13.721534 2024-09-11 09:10:13.721539 bf6ee8b7-0582-4bd0-92fe-7bc58d4efd56 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1120527775"}, "pid": "9637", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:13.777615 2024-09-11 09:10:13.777617 d4748a9d-211c-409a-a2e9-f91897eefb98 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1120526310"}, "pid": "9638", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:13.83034 2024-09-11 09:10:13.830344 c0e2d2e8-dc67-4a1a-a79b-5b8d2bb7d271 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1119923417"}, "pid": "9639", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:13.887787 2024-09-11 09:10:13.887792 fa841f3e-0694-48f8-a355-f5d94d8cfadb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1117228215"}, "pid": "9640", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:13.944147 2024-09-11 09:10:13.944151 cf7cbde6-c2c6-439f-9309-b7f55df2f2f2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1114188395"}, "pid": "9641", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:13.998865 2024-09-11 09:10:13.99887 beb8714e-484e-4975-8f18-64daf3139c71 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1113031921"}, "pid": "9642", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:14.059562 2024-09-11 09:10:14.059566 87385cf8-c940-4930-a923-2595669ce5d3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1111593051"}, "pid": "9643", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:14.111894 2024-09-11 09:10:14.111897 f64082bf-5e8b-4244-bdb5-9c8f0a1c6e5d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/110642154X"}, "pid": "9644", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:14.165607 2024-09-11 09:10:14.165612 8b9a1685-a33b-4aae-ae04-3bf5e9314132 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1104861453"}, "pid": "9645", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:14.219014 2024-09-11 09:10:14.219019 5a7e283e-2c92-4115-a99e-1684ef37cf5b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1103248596"}, "pid": "9646", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:14.277623 2024-09-11 09:10:14.277626 4b2bcae9-54ff-4efc-a176-9c58351e4f9c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1103240579"}, "pid": "9647", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:14.339493 2024-09-11 09:10:14.339496 d34f6dd9-ed0b-43f3-86bf-ed847f398af8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1101498900"}, "pid": "9648", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:14.396187 2024-09-11 09:10:14.396191 d8c311b3-4166-4bb9-b20d-92cfb204a08c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1085190633"}, "pid": "9649", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:14.453918 2024-09-11 09:10:14.453922 6c37f267-72a2-4eaf-b6f2-089b8c16bcf2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/108229814X"}, "pid": "9650", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:14.515257 2024-09-11 09:10:14.51526 da208fee-3815-4674-b51f-966bec7150e6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1077459335"}, "pid": "9651", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:14.575978 2024-09-11 09:10:14.575982 1e470e1f-ecb0-42b7-ada9-375fa8aaafc7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1077386478"}, "pid": "9652", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:14.634325 2024-09-11 09:10:14.63433 64d7e45d-bfd9-4a22-a32b-959ab728f7d1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1077065876"}, "pid": "9653", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:14.699045 2024-09-11 09:10:14.699051 543471a5-4689-44c8-80b7-1f01cb1038f2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1069876534"}, "pid": "9654", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:14.751786 2024-09-11 09:10:14.751789 56d9b791-72c7-40c6-a85f-eebf8b359444 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1069526703"}, "pid": "9655", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:14.799963 2024-09-11 09:10:14.799968 742afc16-60c4-4dd2-b03c-2cc443473f68 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1069453420"}, "pid": "9656", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:14.856255 2024-09-11 09:10:14.85626 763556f9-fe95-4039-b4a8-fa7b558445fe {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1068825820"}, "pid": "9657", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:14.911052 2024-09-11 09:10:14.911055 98993945-4432-4c0c-b33e-5a2fba1d8b04 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1068606975"}, "pid": "9658", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:14.961637 2024-09-11 09:10:14.96164 73dd6be9-8cf9-4275-962e-19adfc553ff7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1068048328"}, "pid": "9659", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:15.018108 2024-09-11 09:10:15.018113 88eaff2d-5754-420e-8f8f-68c765eef547 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1067974490"}, "pid": "9660", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:15.081113 2024-09-11 09:10:15.081117 88751ffe-359b-480c-b80c-8eab3822ab9e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1066896534"}, "pid": "9661", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:15.139523 2024-09-11 09:10:15.139527 8c370508-69f8-4d3f-9796-09db6bbba22c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1065486421"}, "pid": "9662", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:15.19479 2024-09-11 09:10:15.194795 58c4acd9-804b-472e-b123-faabdbc6d1ef {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/106307147X"}, "pid": "9663", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:15.258863 2024-09-11 09:10:15.258868 9b2b02ba-16be-40f5-9358-867d7524d1b5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/105858488X"}, "pid": "9664", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:15.313975 2024-09-11 09:10:15.313979 feb68e7a-baf2-4cd5-abdc-3304a43a978a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1055013458"}, "pid": "9665", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:15.369072 2024-09-11 09:10:15.369077 c9ba7172-1b81-4a05-99c1-54ab333ea787 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1054183104"}, "pid": "9666", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:15.420174 2024-09-11 09:10:15.420178 77076650-b65e-4fd5-ac64-4b79be0c7e70 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1054182779"}, "pid": "9667", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:15.475495 2024-09-11 09:10:15.475498 57d41147-2883-44b3-91ea-1c7409c5359f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1054182620"}, "pid": "9668", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:15.532118 2024-09-11 09:10:15.532122 31586c73-69df-4ff7-bcfa-329a281a95d3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1051146089"}, "pid": "9669", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:15.597735 2024-09-11 09:10:15.597739 58a178d8-366a-4194-87dd-58ce20f1e6df {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1049270851"}, "pid": "9670", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:15.651218 2024-09-11 09:10:15.651222 d8fc9f24-4f82-4fd2-9109-2219f96f9fe9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1044279206"}, "pid": "9671", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:15.712676 2024-09-11 09:10:15.712684 a12100a9-0dfa-4e71-9bc3-f0cf32b68240 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1041611064"}, "pid": "9672", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:15.797425 2024-09-11 09:10:15.79743 ab5cff5b-838b-4614-9f2b-93d1978e6039 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1036907430"}, "pid": "9673", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:15.868417 2024-09-11 09:10:15.868423 55aaf2c9-6d1a-4cca-bcdc-cc6da1310083 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1036857263"}, "pid": "9674", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:15.920715 2024-09-11 09:10:15.92072 136cb7db-d322-473c-8478-edf2e60adebe {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1029263361"}, "pid": "9675", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:15.974794 2024-09-11 09:10:15.974798 f6f1d17e-ba97-4090-b75b-437e77fbdedb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1019980389"}, "pid": "9676", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:16.035667 2024-09-11 09:10:16.035671 eff42ec9-3bdd-43aa-9d83-001dd07bf15c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1015187382"}, "pid": "9677", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:16.096113 2024-09-11 09:10:16.096117 cd53fba1-1477-4cbd-abfe-4296955ae2a2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1014400783"}, "pid": "9678", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:16.159805 2024-09-11 09:10:16.15981 c0576be8-0239-474c-9124-e2c5c5d53937 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1013709640"}, "pid": "9679", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:16.255118 2024-09-11 09:10:16.255122 23c0cf3c-eedf-4bb6-8789-a9c45cc692ee {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1010242008"}, "pid": "9680", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:16.313275 2024-09-11 09:10:16.313278 e9175d13-5fd2-4faf-a4a6-f9e1402fa9e7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1009887017"}, "pid": "9681", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:16.366932 2024-09-11 09:10:16.366937 ac0ee77d-173d-4ce3-a742-43e6e97b54bb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1008996270"}, "pid": "9682", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:16.424887 2024-09-11 09:10:16.424892 46e8eea9-fce2-44cd-8211-40f483b0a4e5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1008049115"}, "pid": "9683", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:16.478295 2024-09-11 09:10:16.4783 55ef02ca-16b4-419a-a6d7-c0a016e74696 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/100735531X"}, "pid": "9684", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:16.534237 2024-09-11 09:10:16.534242 da4a32e4-f16d-4551-982b-82fce102a6c0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1006894675"}, "pid": "9685", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:16.588112 2024-09-11 09:10:16.588116 87681ec6-8ce3-449d-a097-41250f3246c3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1002238951"}, "pid": "9686", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:16.643566 2024-09-11 09:10:16.64357 c389c3a2-bb3a-4fbc-a063-202a012e4058 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1000642119"}, "pid": "9687", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:16.709656 2024-09-11 09:10:16.709661 d074a10b-1c23-4eb7-9c3e-657bfdfc259d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/1000168972"}, "pid": "9688", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:16.761224 2024-09-11 09:10:16.761229 74c35649-d958-4ea4-a1af-141cb6bffb54 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/998776785"}, "pid": "9689", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:16.8136 2024-09-11 09:10:16.813603 11a1c8d8-6d64-4781-ad56-080e9f8cc356 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/995780951"}, "pid": "9690", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:16.864744 2024-09-11 09:10:16.864748 882f6182-9fae-4205-b892-91f001ae8ae7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/994659857"}, "pid": "9691", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:16.915993 2024-09-11 09:10:16.915996 1e25581d-d78d-4831-8863-f4af8961e344 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/99405212X"}, "pid": "9692", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:16.966572 2024-09-11 09:10:16.966577 51314fe5-d383-40f9-8538-ddb2324a44be {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/99283600X"}, "pid": "9693", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:17.020272 2024-09-11 09:10:17.020278 e4d04900-9c9f-4895-9086-59c047ee7acc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992757126"}, "pid": "9694", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:17.078772 2024-09-11 09:10:17.078776 f94b03cb-9ff8-497f-a369-3dfe872a5c27 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992754909"}, "pid": "9695", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:17.132091 2024-09-11 09:10:17.132095 fc16076a-c4e9-45f9-b5d2-070d3f4981bc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992754550"}, "pid": "9696", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:17.185286 2024-09-11 09:10:17.185295 8f195c28-3bad-4ca8-a7d1-a467594090d4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992754534"}, "pid": "9697", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:17.249384 2024-09-11 09:10:17.249388 e254a69d-0c27-4dcd-a46c-84c4449d69a0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992754305"}, "pid": "9698", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:17.312166 2024-09-11 09:10:17.312171 76d88d4b-4f80-4139-aeea-8dfb0fdbaa8e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992753694"}, "pid": "9699", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:17.368798 2024-09-11 09:10:17.368802 9dfcea42-de62-44fc-9a3a-50bbcd9dd35f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/99275366X"}, "pid": "9700", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:17.424057 2024-09-11 09:10:17.42406 e232e11a-28cd-4882-9295-ff9813526dbd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992752973"}, "pid": "9701", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:17.477187 2024-09-11 09:10:17.477191 4882f453-fb0e-4dfd-8be2-25f0a7775349 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992751020"}, "pid": "9702", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:17.533294 2024-09-11 09:10:17.533299 2cf2573d-1034-40b6-87a7-e437c48bbe86 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/99274881X"}, "pid": "9703", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:17.587224 2024-09-11 09:10:17.587227 156e0bb1-294e-4433-a133-63e945ede950 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992747031"}, "pid": "9704", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:17.638007 2024-09-11 09:10:17.638011 c9c5d3a5-c186-4356-ba8f-af7d526e4b24 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992746779"}, "pid": "9705", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:17.702539 2024-09-11 09:10:17.702545 faea1d60-d7dc-45ec-8ffc-94f7fbf97962 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992746248"}, "pid": "9706", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:17.77873 2024-09-11 09:10:17.778735 77c463dd-b421-4428-a295-674edfb6355b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992745969"}, "pid": "9707", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:17.840286 2024-09-11 09:10:17.840289 3ac5bfd9-7308-47e9-b0fc-32b1629f4dfd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992745292"}, "pid": "9708", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:17.900012 2024-09-11 09:10:17.900018 1f989142-b548-45ba-92e6-1ed59b8aae22 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992745187"}, "pid": "9709", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:17.960888 2024-09-11 09:10:17.960892 defc2d06-3b4e-4495-8637-b26049ce5553 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/99274508X"}, "pid": "9710", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:18.020621 2024-09-11 09:10:18.020626 b1fb5863-62c2-40be-9419-5c6dfae6516f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992744792"}, "pid": "9711", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:18.085083 2024-09-11 09:10:18.085088 5e821231-cd9a-4302-abc1-548ac97fb4be {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992744091"}, "pid": "9712", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:18.145123 2024-09-11 09:10:18.145125 0cd343c5-c824-4083-80f3-4f9ee31bd1b6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992743605"}, "pid": "9713", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:18.206071 2024-09-11 09:10:18.206075 b0a3f781-3f96-4cf5-b2da-d6d0cec0d12b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992743273"}, "pid": "9714", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:18.267492 2024-09-11 09:10:18.267495 efec49b6-9c39-406a-91c9-6b80b6d55f46 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992742889"}, "pid": "9715", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:18.327839 2024-09-11 09:10:18.327844 c235e038-e06e-407d-81de-11985d40d4e9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992742854"}, "pid": "9716", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:18.386016 2024-09-11 09:10:18.386019 7485dd54-15c2-4830-a297-038f559329fa {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992742722"}, "pid": "9717", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:18.442585 2024-09-11 09:10:18.442589 53b61c0b-63b2-4f06-8b7c-9929f410f9ae {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992742498"}, "pid": "9718", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:18.504142 2024-09-11 09:10:18.504146 057661cb-70a5-418d-a963-060a46483deb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992741696"}, "pid": "9719", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:18.561908 2024-09-11 09:10:18.561911 1c484484-92fa-48dd-b789-caaa5d6448d3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992741491"}, "pid": "9720", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:18.620909 2024-09-11 09:10:18.620913 e956d5bd-dbee-4011-b8de-8deb2a529bfe {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992739659"}, "pid": "9721", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:18.676238 2024-09-11 09:10:18.676242 01ccc8b2-67df-4cb7-9b35-f36fcccb3d06 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992738601"}, "pid": "9722", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:18.737846 2024-09-11 09:10:18.737851 679a328b-5bf8-411a-9666-ae60ead671ea {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992738172"}, "pid": "9723", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:18.792614 2024-09-11 09:10:18.792617 4467303f-13e0-412e-81aa-4ed16dea3de3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992738083"}, "pid": "9724", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:18.84704 2024-09-11 09:10:18.847044 660c8a4e-b717-4c7d-8c17-d7d3bbba85ca {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992738075"}, "pid": "9725", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:18.902564 2024-09-11 09:10:18.902569 521425a8-c2ee-40fd-bc4e-9395b22d8ab2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992737834"}, "pid": "9726", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:18.967345 2024-09-11 09:10:18.967351 c49a7a85-337f-4094-8581-3149e7e96690 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992737826"}, "pid": "9727", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:19.042364 2024-09-11 09:10:19.042368 9b4a3204-0362-45df-bc70-95365e1307ec {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992737788"}, "pid": "9728", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:19.105952 2024-09-11 09:10:19.105956 443c130c-f5c9-4afe-b662-66a9dce98e34 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992737532"}, "pid": "9729", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:19.171324 2024-09-11 09:10:19.171327 9ec0cf11-e605-4653-8bed-4f3d6e42b090 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992736269"}, "pid": "9730", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:19.227578 2024-09-11 09:10:19.227581 0b9742ba-5a9d-48f7-873b-eabcd09bbfef {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992736099"}, "pid": "9731", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:19.285543 2024-09-11 09:10:19.285549 93e1c350-5a4a-404b-b514-1c9be02b0da1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992735858"}, "pid": "9732", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:19.344302 2024-09-11 09:10:19.344306 621b6818-d466-45c4-ac9e-a3e1c918706e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/99273584X"}, "pid": "9733", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:19.401173 2024-09-11 09:10:19.401178 39458480-cc56-4ba7-a5dc-4ad462ff29d8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992735823"}, "pid": "9734", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:19.456657 2024-09-11 09:10:19.456662 bfbac2a3-d707-47c0-91ab-42a8d069f24e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992735270"}, "pid": "9735", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:19.519335 2024-09-11 09:10:19.519339 c7da8f8b-0ab6-4f17-b759-867ca029deb5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992735122"}, "pid": "9736", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:19.591142 2024-09-11 09:10:19.591146 157d2f8d-ddd7-490d-8e78-cc9c14305015 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992733634"}, "pid": "9737", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:19.654582 2024-09-11 09:10:19.654586 cb01e32d-a644-401d-ab4b-962e7c23c4bb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/99273312X"}, "pid": "9738", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:19.713106 2024-09-11 09:10:19.71311 b3268fd2-db55-47fb-b9f7-1d88cccee955 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992732468"}, "pid": "9739", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:19.779912 2024-09-11 09:10:19.779915 8cb0df3b-ab37-48eb-a627-c12eca5761fe {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992731496"}, "pid": "9740", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:19.843228 2024-09-11 09:10:19.843232 d1405700-6744-419c-af70-f48e79787550 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/99273147X"}, "pid": "9741", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:19.899394 2024-09-11 09:10:19.899399 69afc101-8474-49ef-b61c-49326e5a243c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992731348"}, "pid": "9742", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:19.957588 2024-09-11 09:10:19.957592 75d83936-1ce9-49a4-a982-f3d0275ab38a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992730937"}, "pid": "9743", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:20.015341 2024-09-11 09:10:20.015346 b183477f-6e3e-4661-8e20-f66f041a5221 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/99273052X"}, "pid": "9744", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:20.073927 2024-09-11 09:10:20.073931 330b6a4b-4609-4164-b4fa-4a5cfba8a018 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/992096200"}, "pid": "9745", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:20.134857 2024-09-11 09:10:20.134861 f72b9c31-5f82-4b28-b637-c5e1b0853231 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/99018207X"}, "pid": "9746", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:20.196986 2024-09-11 09:10:20.196992 d29f7f7d-6932-48d1-a39a-8c65a8586232 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/987870920"}, "pid": "9747", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:20.259647 2024-09-11 09:10:20.25965 7f846fe5-f401-4c6a-b1ee-efb81523c45e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/987031708"}, "pid": "9748", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:20.35125 2024-09-11 09:10:20.351255 5e4481a6-4dde-4bb5-9700-318b781fa90b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/985142758"}, "pid": "9749", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:20.410787 2024-09-11 09:10:20.410791 34300352-921d-4db4-97e2-1251c38795bc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/984855246"}, "pid": "9750", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:20.473095 2024-09-11 09:10:20.473099 8d1f7ece-9a18-4b65-ac31-7fbcecc207e3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/984430695"}, "pid": "9751", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:20.530743 2024-09-11 09:10:20.530748 0c50a2bd-8f4e-4b75-b62e-517c99656c82 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/981355196"}, "pid": "9752", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:20.589467 2024-09-11 09:10:20.589472 b37876ee-864e-4148-9d48-91833c226ab2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/981078206"}, "pid": "9753", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:20.650685 2024-09-11 09:10:20.650688 550923ba-b043-4c91-bd6b-4bdbd0100d07 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/980596920"}, "pid": "9754", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:20.717284 2024-09-11 09:10:20.717289 2446b67b-d7b3-4263-8470-61bc93bcbf52 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/980485371"}, "pid": "9755", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:20.777128 2024-09-11 09:10:20.77715 7651e564-d0b4-4b82-88d6-ad6e5cf86d9e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/979728509"}, "pid": "9756", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:20.830366 2024-09-11 09:10:20.830372 9f493a00-b0d4-4a32-b1df-458ca74c39ac {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/979385261"}, "pid": "9757", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:20.894949 2024-09-11 09:10:20.894952 cc56ce80-222b-49be-afed-74daf233a2a5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/979340586"}, "pid": "9758", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:20.95389 2024-09-11 09:10:20.953894 e34f4a7d-75d5-4287-a1ba-da2d70278f1a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/978483669"}, "pid": "9759", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:21.012857 2024-09-11 09:10:21.012862 9afae2c3-a715-49ff-8b8b-e8580c415ed9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/97549175X"}, "pid": "9760", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:21.069065 2024-09-11 09:10:21.069068 2739116d-c832-4db5-a6c2-53de022a9959 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/974924423"}, "pid": "9761", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:21.126736 2024-09-11 09:10:21.126741 f292697c-2ba3-4989-864a-22d3f74940e9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/974131733"}, "pid": "9762", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:21.181092 2024-09-11 09:10:21.181097 d8837169-12c5-4027-9330-ecb0f490bca5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/973073764"}, "pid": "9763", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:21.248389 2024-09-11 09:10:21.248393 691704b5-7dd9-4fe1-9de2-8a39936793bd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/973067144"}, "pid": "9764", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:21.309573 2024-09-11 09:10:21.309577 eb429d02-5717-4111-a825-d08cc21323f3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/971890188"}, "pid": "9765", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:21.365036 2024-09-11 09:10:21.36504 f4a54884-f2e4-48f8-aa81-03ddc73408e5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/971874549"}, "pid": "9766", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:21.419309 2024-09-11 09:10:21.419314 36d61a4e-7204-4c59-9f3e-9814d2eef6ba {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/971750289"}, "pid": "9767", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:21.474082 2024-09-11 09:10:21.474086 c07a2812-46f4-4f30-90e2-13bcd58053af {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/971566429"}, "pid": "9768", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:21.531198 2024-09-11 09:10:21.531203 dd823a39-4064-45e5-8cd8-3ae8da867fea {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/970782195"}, "pid": "9769", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:21.587161 2024-09-11 09:10:21.587165 12eed074-a47b-477a-b02f-489b3cf88419 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/970665806"}, "pid": "9770", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:21.639877 2024-09-11 09:10:21.639881 fa27b5ce-a1a1-454d-a980-4b6d4da8aac0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/970188919"}, "pid": "9771", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:21.701049 2024-09-11 09:10:21.701052 30310bd3-f052-4d9b-97d5-e1071f5c4ef0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/970142838"}, "pid": "9772", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:21.760368 2024-09-11 09:10:21.76037 251ab67c-f8b5-4cdb-bd1e-826b2bce5afc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/969789726"}, "pid": "9773", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:21.816272 2024-09-11 09:10:21.816277 267c65ab-275d-49d8-8474-0b22aa480e70 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/968800459"}, "pid": "9774", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:21.870486 2024-09-11 09:10:21.87049 ccead147-3ada-41cc-94bb-446575db6c61 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/967930308"}, "pid": "9775", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:21.930472 2024-09-11 09:10:21.930477 2ea8391c-4a4c-4d67-9b27-38e5e78545f3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/967681758"}, "pid": "9776", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:21.987049 2024-09-11 09:10:21.987056 2937942c-40d5-4e9a-ab61-bf70965a9d40 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/967612896"}, "pid": "9777", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:22.045189 2024-09-11 09:10:22.045192 44e42efa-3180-4127-a1fd-f76dd041e81a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/967286034"}, "pid": "9778", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:22.099063 2024-09-11 09:10:22.099067 fa0fc13a-0b3e-47d0-9010-9910d288fc47 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/966464141"}, "pid": "9779", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:22.155112 2024-09-11 09:10:22.155117 fea619f5-71c7-4bbd-bf97-895ada22c2b1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/966016297"}, "pid": "9780", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:22.305909 2024-09-11 09:10:22.305912 261cdff5-c648-4eee-a19c-481ecb0bb903 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/965886654"}, "pid": "9781", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:22.371978 2024-09-11 09:10:22.371982 e6eda2dd-39d2-4636-a104-1f651fc31ee5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/965195686"}, "pid": "9782", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:22.422274 2024-09-11 09:10:22.422278 b1093456-627f-4aeb-ae91-c4721e6519df {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/96441631X"}, "pid": "9783", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:22.472551 2024-09-11 09:10:22.472554 68328a02-8bee-4857-8119-4c1d4f8ce771 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/964240300"}, "pid": "9784", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:22.524084 2024-09-11 09:10:22.524086 a50766fe-c4bc-4d08-9122-59639c4e1a65 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/964240254"}, "pid": "9785", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:22.577725 2024-09-11 09:10:22.577729 ac309787-5451-4622-a6ab-1a2bd2acb2c8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/964115166"}, "pid": "9786", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:22.62989 2024-09-11 09:10:22.629894 9be3921a-5528-4028-bf29-319563e557ef {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/963711636"}, "pid": "9787", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:22.681687 2024-09-11 09:10:22.68169 5a7fdaa2-dada-4c39-bb87-40dc23126860 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/963708872"}, "pid": "9788", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:22.739335 2024-09-11 09:10:22.739339 a3e92a51-0b1c-4e9b-b046-baf478525a39 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/963708856"}, "pid": "9789", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:22.80962 2024-09-11 09:10:22.809624 fdcfa83f-c386-4fbf-8c4b-8145837d5db2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/963658166"}, "pid": "9790", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:22.870026 2024-09-11 09:10:22.87003 f4eb8035-91e1-44a8-aa4a-840db4d76ef5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/963553984"}, "pid": "9791", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:22.926424 2024-09-11 09:10:22.926427 3cb6e150-08c6-45c8-9c7d-c65d8444d9bd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/962075272"}, "pid": "9792", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:22.986086 2024-09-11 09:10:22.98609 eebc5a91-f8c5-4f5c-88cf-88f9135ad826 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/962073881"}, "pid": "9793", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:23.043581 2024-09-11 09:10:23.043585 01c38f28-2ac4-481b-9634-76953bfadc45 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/961897546"}, "pid": "9794", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:23.102297 2024-09-11 09:10:23.102301 e88f184d-e9f9-4487-b74f-92ed9fa3672d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/961236752"}, "pid": "9795", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:23.154109 2024-09-11 09:10:23.154112 d7816e66-3153-43e6-aee4-678c21f04d79 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/961192356"}, "pid": "9796", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:23.203587 2024-09-11 09:10:23.20359 9282df5b-894b-4f1a-af90-790162d0fcbb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/961049510"}, "pid": "9797", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:23.253565 2024-09-11 09:10:23.253569 c43236c3-7050-430c-b9d4-8a68d6364199 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/960895175"}, "pid": "9798", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:23.309606 2024-09-11 09:10:23.30961 229823c5-d90a-4017-8d4b-0080a7bd2342 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/96037650X"}, "pid": "9799", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:23.366838 2024-09-11 09:10:23.366843 ec319ffd-d39f-4dc4-8f2b-b1091cb1ba33 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/960375988"}, "pid": "9800", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:23.462218 2024-09-11 09:10:23.462222 c9400588-9b11-4d09-9aa7-53160915e38a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/960175105"}, "pid": "9801", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:23.513369 2024-09-11 09:10:23.513372 7b02fefe-17aa-4608-b046-78e9b04b12dd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/959959750"}, "pid": "9802", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:23.562539 2024-09-11 09:10:23.562543 419f035d-80d8-431a-a0ed-640b1e61672d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/959794972"}, "pid": "9803", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:23.616688 2024-09-11 09:10:23.616691 d409c19a-7881-499b-9047-fb91c56aa297 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/959794921"}, "pid": "9804", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:23.669486 2024-09-11 09:10:23.669489 9868c109-c837-4bbc-8871-13caea414108 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/959794859"}, "pid": "9805", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:23.717477 2024-09-11 09:10:23.71748 80dffcb0-45e9-41c4-9072-44ae4c3f5b2a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/959740864"}, "pid": "9806", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:23.766845 2024-09-11 09:10:23.766849 8150d121-cfdc-4e0f-a174-67ad38e2ff5a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/959716688"}, "pid": "9807", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:23.816132 2024-09-11 09:10:23.816135 1ee3d5b9-191a-42cf-a78f-5c481487f61d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/959148523"}, "pid": "9808", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:23.86731 2024-09-11 09:10:23.867314 3a24d473-a47d-4d1e-87b0-f9fe7178f94a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/959148485"}, "pid": "9809", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:23.91834 2024-09-11 09:10:23.918343 4b7ddd04-2618-48c2-92d7-d82b43959974 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/959148477"}, "pid": "9810", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:23.966966 2024-09-11 09:10:23.966969 7e3bf9ed-32a6-4341-8463-2472b8264931 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/958503001"}, "pid": "9811", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:24.018093 2024-09-11 09:10:24.018096 f04d6ca7-af24-42ce-b182-b90c851b201e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/958467102"}, "pid": "9812", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:24.068013 2024-09-11 09:10:24.068015 a7519624-9986-4107-b906-29bc339be464 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/958224625"}, "pid": "9813", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:24.119685 2024-09-11 09:10:24.11969 a0ae0668-8efa-487f-b651-fbdd8a99f381 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/958195889"}, "pid": "9814", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:24.176312 2024-09-11 09:10:24.176315 58d867b3-15c6-4f80-a055-27c7410d290a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/958190453"}, "pid": "9815", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:24.229878 2024-09-11 09:10:24.229881 3a7bc0e6-ea43-45bf-8476-afa17fd1774d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/957705611"}, "pid": "9816", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:24.282229 2024-09-11 09:10:24.282234 95d3a5ed-9c55-4e13-9ea4-a1975d762fc8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/95765894X"}, "pid": "9817", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:24.331254 2024-09-11 09:10:24.331258 a5946731-2e86-4ec5-999f-ff374abd0219 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/957331940"}, "pid": "9818", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:24.378794 2024-09-11 09:10:24.378798 c0559303-b6f6-4660-acf0-11d9a134e3a1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/957331673"}, "pid": "9819", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:24.440621 2024-09-11 09:10:24.440625 59c41165-8c77-4dcc-b786-5f51fc1f8c56 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/957192517"}, "pid": "9820", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:24.492147 2024-09-11 09:10:24.492152 421938f3-192c-4d12-ba8b-1f862194d698 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/956838049"}, "pid": "9821", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:24.545537 2024-09-11 09:10:24.545539 0a6a4415-7359-46eb-93cd-bf5bb3d07999 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/956643221"}, "pid": "9822", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:24.600701 2024-09-11 09:10:24.600704 7acd09f5-355c-485f-bc4e-5d67a0aa213e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/956635709"}, "pid": "9823", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:24.650584 2024-09-11 09:10:24.650588 b0363666-2df9-4254-ba3f-cd014f07b528 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/956220495"}, "pid": "9824", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:24.702016 2024-09-11 09:10:24.70202 ca7103cf-59b2-4f19-b175-d0e50507a262 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/955244641"}, "pid": "9825", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:24.7519 2024-09-11 09:10:24.751904 c5540f63-ebf4-4a56-8153-ecd718fdc7a6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/95489748X"}, "pid": "9826", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:24.805018 2024-09-11 09:10:24.805023 27567fdf-b87b-49a5-b53a-5d05312477e6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/954782232"}, "pid": "9827", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:24.854647 2024-09-11 09:10:24.854651 4b5a2de8-1bff-4f17-a390-4f8b81c2b07c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/95462839X"}, "pid": "9828", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:24.906719 2024-09-11 09:10:24.906723 87fa25ff-4879-40c9-8718-da151dde6865 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/954211774"}, "pid": "9829", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:24.958895 2024-09-11 09:10:24.958899 98d7c601-a806-43d5-af07-896b5feecfbb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/954206738"}, "pid": "9830", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:25.009652 2024-09-11 09:10:25.009656 eba25d65-c404-4cf0-a85e-4ac8f703e94e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/954203232"}, "pid": "9831", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:25.070229 2024-09-11 09:10:25.070233 82da71bb-b70a-44eb-9b63-ed138244ce5c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/953679802"}, "pid": "9832", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:25.126708 2024-09-11 09:10:25.126712 58e77d35-7660-4922-ac95-52f90b49ad54 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/953550346"}, "pid": "9833", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:25.177377 2024-09-11 09:10:25.177382 28c9add1-f6ae-456c-9887-2be6ea685f35 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/953444201"}, "pid": "9834", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:25.226481 2024-09-11 09:10:25.226486 8c514fe8-2af2-4b50-bd0b-996dd11d4833 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/953056082"}, "pid": "9835", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:25.328659 2024-09-11 09:10:25.328663 ea9a6eb5-eea3-46c5-864f-092df8dad540 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/952896605"}, "pid": "9836", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:25.382114 2024-09-11 09:10:25.382117 0ee7b325-3b6d-4ae3-b5a5-125c59ffe2a5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/952702053"}, "pid": "9837", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:25.433148 2024-09-11 09:10:25.433151 b9f0dd6a-8aef-4a4f-a1ea-58bc1001d0d0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/952619636"}, "pid": "9838", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:25.49897 2024-09-11 09:10:25.498973 034a2766-ece0-4d49-ac08-3db09814156c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/952440431"}, "pid": "9839", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:25.557065 2024-09-11 09:10:25.557069 efed102f-8c68-4fa1-8d11-ff2301c3bd93 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/952431602"}, "pid": "9840", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:25.615181 2024-09-11 09:10:25.615184 8b6018bd-25dd-4b02-b3f2-094880625f9a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/951810189"}, "pid": "9841", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:25.663692 2024-09-11 09:10:25.663696 7630d4f7-397c-48eb-b8e3-07825de929fc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/951618563"}, "pid": "9842", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:25.718192 2024-09-11 09:10:25.718196 d53e0d64-be73-4157-ad71-1c94e84ce180 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/951607804"}, "pid": "9843", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:25.773919 2024-09-11 09:10:25.773923 71b4d943-e4e6-4f73-9c5f-65d034121300 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/95159981X"}, "pid": "9844", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:25.860113 2024-09-11 09:10:25.860117 2e716984-067d-4877-910f-69a714bded55 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/951549650"}, "pid": "9845", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:25.908956 2024-09-11 09:10:25.90896 d97de8d2-8dce-4aee-92f3-e389d9c6cdba {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/95153047X"}, "pid": "9846", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:25.962542 2024-09-11 09:10:25.962547 bf5dceb8-b6d9-402e-8cd0-a44640c5bb7e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/95152092X"}, "pid": "9847", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:26.015801 2024-09-11 09:10:26.015803 5d324b4f-09d7-42a1-93b0-2d9a0505a25b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/950857157"}, "pid": "9848", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:26.066077 2024-09-11 09:10:26.066082 051544ff-0ff4-4f3a-ab3d-df257da67be1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/950693413"}, "pid": "9849", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:26.119879 2024-09-11 09:10:26.119883 89016dd6-6751-46f4-8164-94d45001a600 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/950693375"}, "pid": "9850", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:26.177547 2024-09-11 09:10:26.177551 39e23b70-8e99-45cb-baf9-aec0ce4c5ea4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/950692433"}, "pid": "9851", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:26.238142 2024-09-11 09:10:26.238148 40a8437c-bc49-450e-8b54-a15e8a7c9991 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/950632481"}, "pid": "9852", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:26.295809 2024-09-11 09:10:26.295814 1de9fff2-7ad2-40fe-b605-9c7507772ab4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/950276014"}, "pid": "9853", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:26.365207 2024-09-11 09:10:26.365211 97fda130-242a-4f27-9cce-f1f7c45d6b1c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/949894028"}, "pid": "9854", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:26.428099 2024-09-11 09:10:26.428102 5d450dac-1e14-46a3-9639-16cbfbe6a278 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/949435015"}, "pid": "9855", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:26.483634 2024-09-11 09:10:26.483637 45f8fdc8-5eaf-450b-ba4d-8685d74a51f0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/948897244"}, "pid": "9856", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:26.540852 2024-09-11 09:10:26.540856 4b1e315f-ba56-4020-bf6c-5335a904a34b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/948567341"}, "pid": "9857", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:26.587622 2024-09-11 09:10:26.587625 e4703f54-ddc1-4241-bbb4-469696fccd23 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/948567317"}, "pid": "9858", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:26.636176 2024-09-11 09:10:26.636181 5a9f8cb1-0984-474e-8343-7670eb26ec3a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/948565977"}, "pid": "9859", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:26.683723 2024-09-11 09:10:26.683727 564e19b3-b1c2-428c-8990-9e399cd6e2b7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/948520116"}, "pid": "9860", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:26.733485 2024-09-11 09:10:26.733489 43b5bbda-f8a9-4fe8-b8e7-5dd68c5cb770 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/948474688"}, "pid": "9861", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:26.791351 2024-09-11 09:10:26.791355 4de5d7ad-2807-4a38-8178-4ce4224e01f9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/947762868"}, "pid": "9862", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:26.843874 2024-09-11 09:10:26.843877 f9f6e0fe-7bdd-4260-a67c-8cfed2404245 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/947572090"}, "pid": "9863", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:26.897583 2024-09-11 09:10:26.897586 0e159190-f605-4b9b-8d93-791417fac113 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/947210601"}, "pid": "9864", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:26.954274 2024-09-11 09:10:26.954277 89718388-703f-481a-9fdf-f7c91ba111b1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/947024387"}, "pid": "9865", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:27.009238 2024-09-11 09:10:27.009242 c39ba7d0-2385-4146-b0e3-b9d4f51aed5d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/946840318"}, "pid": "9866", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:27.065579 2024-09-11 09:10:27.065583 e07c6a3b-0d1c-4ed0-bd88-df177b111d21 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/94683203X"}, "pid": "9867", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:27.117116 2024-09-11 09:10:27.11712 f3030591-e5f1-43e1-ac29-85242f323fe6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/946538506"}, "pid": "9868", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:27.167955 2024-09-11 09:10:27.167959 f765cfd7-b6a1-4fb0-879d-1a2ddf392ab8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/946529981"}, "pid": "9869", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:27.219779 2024-09-11 09:10:27.219782 df7f937e-ccdb-4cbd-8987-38433b1a067d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/946267340"}, "pid": "9870", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:27.268318 2024-09-11 09:10:27.268321 763cbbe8-8d89-4f55-b6b8-e673fa54cf93 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/945831749"}, "pid": "9871", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:27.323692 2024-09-11 09:10:27.323697 e3cb12c1-b0fa-4a65-ba30-5ce145bf89c9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/94574577X"}, "pid": "9872", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:27.375529 2024-09-11 09:10:27.375533 471e4483-8c1a-4ae8-90fd-1ceb585bde30 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/945675267"}, "pid": "9873", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:27.426322 2024-09-11 09:10:27.426327 7b2cecae-50eb-4ea6-a8a6-6e037866351c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/945372604"}, "pid": "9874", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:27.481161 2024-09-11 09:10:27.481165 c1ca1ca6-6dd7-4db9-bb74-06d286bea3d0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/945325150"}, "pid": "9875", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:27.539764 2024-09-11 09:10:27.539768 6a518da0-0ab9-456e-a916-f1f341c692a7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/944352820"}, "pid": "9876", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:27.58908 2024-09-11 09:10:27.589083 edb96850-0b99-4bc6-a241-eb22f814a182 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/94392961X"}, "pid": "9877", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:27.638026 2024-09-11 09:10:27.638029 1ebfc55b-abf6-42c2-8b45-314174e553bb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/94392684X"}, "pid": "9878", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:27.691901 2024-09-11 09:10:27.691904 fabfceca-d6e1-482d-93b9-4082a768fe8f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/943618118"}, "pid": "9879", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:27.741986 2024-09-11 09:10:27.74199 9297e599-c84b-486b-94a3-70579ed0fa37 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/943592267"}, "pid": "9880", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:27.795836 2024-09-11 09:10:27.795841 c3444e39-6074-45e8-b43f-179a8b890f13 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/943496799"}, "pid": "9881", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:27.857933 2024-09-11 09:10:27.857937 6817e08a-9c89-4199-963e-a93a31716c3a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/943138604"}, "pid": "9882", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:27.92032 2024-09-11 09:10:27.920324 baf59def-3c1e-45fb-ac07-2fcf60a66d39 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/942370295"}, "pid": "9883", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:27.976869 2024-09-11 09:10:27.97688 5bc20755-c25b-4bbb-9569-a8bb45001e1a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/942203283"}, "pid": "9884", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:28.028571 2024-09-11 09:10:28.028576 80317cce-1324-49f4-9e1e-304ecc28d141 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/94206285X"}, "pid": "9885", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:28.083243 2024-09-11 09:10:28.083247 1e75a068-8782-43e9-a0d6-45702947b29b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/941781437"}, "pid": "9886", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:28.138198 2024-09-11 09:10:28.138201 fa690ab4-9891-47f6-b0d4-2a6deb1ac009 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/940910004"}, "pid": "9887", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:28.189929 2024-09-11 09:10:28.189932 02ca368d-9dc2-4e11-a268-a9ff20315bcb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/940842440"}, "pid": "9888", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:28.241272 2024-09-11 09:10:28.241276 c3afb78e-2128-4d63-af4d-e7ca5b7b4fec {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/94063855X"}, "pid": "9889", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:28.290314 2024-09-11 09:10:28.290317 78853374-872f-447b-a1f4-5afd3ed664d5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/940594919"}, "pid": "9890", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:28.342448 2024-09-11 09:10:28.342452 385f120b-5652-4c0f-a234-18ed5ec77093 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/199289190"}, "pid": "9891", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:28.393413 2024-09-11 09:10:28.393417 7b093247-deb6-4a80-9616-10bfd607be10 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/199281823"}, "pid": "9892", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:28.442355 2024-09-11 09:10:28.442358 2d2b0c7c-0257-4b09-872f-9f6696a4d87e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/199193835"}, "pid": "9893", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:28.490585 2024-09-11 09:10:28.490588 74b2dde8-2555-408d-9909-4d04aeb53b33 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/19917606X"}, "pid": "9894", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:28.547082 2024-09-11 09:10:28.547087 9c327098-6289-4726-823b-5d3db9ea4073 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/199170711"}, "pid": "9895", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:28.604589 2024-09-11 09:10:28.604593 918a0912-fcf7-4fa7-a34a-1389b424c031 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/19915046X"}, "pid": "9896", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:28.669234 2024-09-11 09:10:28.669237 74945778-a3a0-4f21-9b12-a0defbde2296 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/199129215"}, "pid": "9897", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:28.728613 2024-09-11 09:10:28.728617 92212517-ea9d-4cc6-a2c0-f3a7f72484cc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/130791008"}, "pid": "9898", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:28.777925 2024-09-11 09:10:28.77793 287bbf36-f1bb-4ef7-8e0f-ffd5ea95554e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/130750085"}, "pid": "9899", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:28.82704 2024-09-11 09:10:28.827044 c70abf3a-69b9-49dd-be8d-343b84580497 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/130741094"}, "pid": "9900", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:28.877264 2024-09-11 09:10:28.877267 b0f7efe3-aa4d-44cf-bf6c-6cc5aff99371 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/130724572"}, "pid": "9901", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:28.926877 2024-09-11 09:10:28.926881 b2f13b3d-85ba-4b60-aced-0a057f533ba1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/130715387"}, "pid": "9902", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:28.972817 2024-09-11 09:10:28.972819 2d16a376-707d-43b0-b035-06d7de183468 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/130714941"}, "pid": "9903", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:29.019623 2024-09-11 09:10:29.019626 441d2766-50b6-4940-a34a-b228c686e3cf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/130708291"}, "pid": "9904", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:29.068722 2024-09-11 09:10:29.068725 1c9d1f7c-8a09-462d-b715-aae6321e42df {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/130703907"}, "pid": "9905", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:29.127097 2024-09-11 09:10:29.127101 4362d93e-25a0-496f-b832-170895c25872 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/130702722"}, "pid": "9906", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:29.177817 2024-09-11 09:10:29.17782 1f04e390-9658-4f4f-b575-69df41e12619 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/13069374X"}, "pid": "9907", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:29.228881 2024-09-11 09:10:29.228884 2d5abe61-bddd-46c6-abd5-178e35d268d8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/130692476"}, "pid": "9908", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:29.274477 2024-09-11 09:10:29.27448 f2d24009-5397-4223-89ac-d07b262a2da8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04328762X"}, "pid": "9909", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:29.321554 2024-09-11 09:10:29.321556 557dc823-cfd9-4c4e-ab35-eae861925cf6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043282695"}, "pid": "9910", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:29.389944 2024-09-11 09:10:29.389948 33c08e7b-fca4-44e3-b3a0-6942d552aff6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04328213X"}, "pid": "9911", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:29.449524 2024-09-11 09:10:29.449528 6fa4c88f-013c-45d7-ad60-a7cb50d4d26f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043274994"}, "pid": "9912", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:29.523344 2024-09-11 09:10:29.523348 10995d2d-ce85-4891-8f2e-f043c52fa819 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043252044"}, "pid": "9913", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:29.593594 2024-09-11 09:10:29.593599 d99076da-442a-4f10-94e9-f456d45ad91d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043203469"}, "pid": "9914", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:29.668231 2024-09-11 09:10:29.668236 c5ec0378-55fc-47be-a556-ca91d98c0e76 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043197574"}, "pid": "9915", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:29.715205 2024-09-11 09:10:29.715208 3820fd41-c3f3-41b9-abaa-321e50a04969 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043195733"}, "pid": "9916", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:29.778998 2024-09-11 09:10:29.779005 7870ee30-d6a5-4945-887d-adcf8c8c5e15 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04313291X"}, "pid": "9917", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:29.859349 2024-09-11 09:10:29.859356 c79cea1e-37a5-43c7-874f-2a9a533dd1b0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043128629"}, "pid": "9918", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:29.930022 2024-09-11 09:10:29.930026 78f8bbf1-b108-462f-a5cc-1ccd47ef958f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043062008"}, "pid": "9919", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:29.991089 2024-09-11 09:10:29.991093 41dc70ef-2d32-4f0e-a147-e35b180f1f1d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04304929X"}, "pid": "9920", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:30.058583 2024-09-11 09:10:30.058587 b3f5a0f3-fc94-4de1-aad5-f1341e121bdc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043035167"}, "pid": "9921", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:30.130295 2024-09-11 09:10:30.130299 c08ce93a-9445-404e-8f13-8c02dc4533de {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043022790"}, "pid": "9922", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:30.194478 2024-09-11 09:10:30.194482 4f3badd7-7e98-49f1-a931-522b68986aae {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043004164"}, "pid": "9923", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:30.262605 2024-09-11 09:10:30.262609 7fc1eecc-b973-4f1f-b557-1b23d7df3ab8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043003583"}, "pid": "9924", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:30.3426 2024-09-11 09:10:30.342604 ef32c9b3-3482-4734-83b6-7acd5599f12a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043001173"}, "pid": "9925", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:30.41213 2024-09-11 09:10:30.412137 4ea5178e-3f13-4383-a68c-9c894ae66a71 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04300024X"}, "pid": "9926", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:30.479245 2024-09-11 09:10:30.479248 b1a723b7-967e-41ad-abc2-b6cd158fdd18 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/043000150"}, "pid": "9927", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:30.536289 2024-09-11 09:10:30.536291 e69000b9-0685-4c44-8fbf-32dac900dfb3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042982553"}, "pid": "9928", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:30.595417 2024-09-11 09:10:30.595419 e625567b-6093-4248-9601-cbbc4fa47044 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042981794"}, "pid": "9929", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:30.663515 2024-09-11 09:10:30.663522 ab9d41aa-8209-4f73-8926-f5e52360578f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042940664"}, "pid": "9930", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:30.717668 2024-09-11 09:10:30.71767 f446369a-3fcb-4e51-ab34-f463c13b5630 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042914582"}, "pid": "9931", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:30.774481 2024-09-11 09:10:30.774485 249f3fb9-a1e1-43c2-8fe0-c1c04f803551 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042913748"}, "pid": "9932", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:30.851268 2024-09-11 09:10:30.851277 a3af3d2e-9545-4389-b797-f7f64961484f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04291096X"}, "pid": "9933", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:30.937259 2024-09-11 09:10:30.937267 f5675a84-e5ce-4a22-b692-f680934af295 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042910870"}, "pid": "9934", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:31.014454 2024-09-11 09:10:31.014458 51fcb4bc-d471-45ab-8674-2048c40b622a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042892562"}, "pid": "9935", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:31.069673 2024-09-11 09:10:31.069676 66d71226-500b-4435-9d99-4048b9a97fb8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042870526"}, "pid": "9936", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:31.133914 2024-09-11 09:10:31.133917 a7a54c3f-fb65-40b1-873c-eba293fdcf3c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042863627"}, "pid": "9937", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:31.192489 2024-09-11 09:10:31.192492 77449f4f-0bc5-45a0-8cb1-699eb56db5d1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042848792"}, "pid": "9938", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:31.25073 2024-09-11 09:10:31.250733 9beb8dc4-48a3-47b0-b4d2-38e38905dc4c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042841259"}, "pid": "9939", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:31.327955 2024-09-11 09:10:31.327965 3d7b61b6-781a-468d-82fa-5bc3c86799ce {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042819458"}, "pid": "9940", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:31.415343 2024-09-11 09:10:31.415353 742cdd07-eed6-4bfa-8cc3-188fdb40b92d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042815479"}, "pid": "9941", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:31.487571 2024-09-11 09:10:31.487574 b56716e7-5e37-4fbd-94c4-153f7085f8ba {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042777089"}, "pid": "9942", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:31.561022 2024-09-11 09:10:31.561026 70e84e5f-5ec6-4c9b-bb62-e74e90a5324a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042765315"}, "pid": "9943", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:31.632342 2024-09-11 09:10:31.632346 7053e34d-27e4-41e0-b59d-0991f13ba051 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042731887"}, "pid": "9944", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:31.697915 2024-09-11 09:10:31.697918 0264692b-e3f9-4bee-b74e-6faf13fe54f6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042731437"}, "pid": "9945", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:31.757878 2024-09-11 09:10:31.757882 95bb88ae-4236-418e-90fa-2a998381bda4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042720133"}, "pid": "9946", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:31.819659 2024-09-11 09:10:31.819667 0e32a747-83d7-4513-8234-81e918cf7c8c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04266702X"}, "pid": "9947", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:31.900396 2024-09-11 09:10:31.900404 60a2753f-2a87-4148-9a25-c8a57df183c6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042653304"}, "pid": "9948", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:31.977329 2024-09-11 09:10:31.977337 0229616d-00de-4ebb-b6c5-7758843571a6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042645212"}, "pid": "9949", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:32.038662 2024-09-11 09:10:32.038665 12e8c085-f14d-49ed-8646-9c5358b2384d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042627222"}, "pid": "9950", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:32.102685 2024-09-11 09:10:32.10269 1ec03d02-c3ea-4808-b564-b0223c2796fe {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042586208"}, "pid": "9951", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:32.197329 2024-09-11 09:10:32.197332 3aa6bc7e-60dc-4a25-9c0b-a36fdf7c9440 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042578205"}, "pid": "9952", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:32.282658 2024-09-11 09:10:32.282673 f3ea1e94-5a37-497e-a54a-8d7bb9b159d8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042573254"}, "pid": "9953", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:32.353567 2024-09-11 09:10:32.35357 e04f6434-c469-4584-a8f7-a704c03dc56e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042536367"}, "pid": "9954", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:32.428785 2024-09-11 09:10:32.428788 d9a062b2-6bc9-405a-8d2f-f949cb2415c2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042496675"}, "pid": "9955", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:32.500356 2024-09-11 09:10:32.500365 e2508d40-f8ad-4c9d-958b-5e5b17936669 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042486386"}, "pid": "9956", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:32.581497 2024-09-11 09:10:32.5815 4041407f-16c0-46b9-8c41-e850212ec975 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042447690"}, "pid": "9957", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:32.655363 2024-09-11 09:10:32.655367 11247733-d2a6-49ae-a76f-98bf542faaa5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042438799"}, "pid": "9958", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:32.712932 2024-09-11 09:10:32.712936 a25f9a40-8bc9-45ac-a979-9cc6654d7d1b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042425875"}, "pid": "9959", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:32.777438 2024-09-11 09:10:32.777442 511bd004-80c9-4425-ac41-6ffc1b2169c7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042422825"}, "pid": "9960", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:32.839837 2024-09-11 09:10:32.83984 4e353c77-9b42-48be-9aed-1b81ec9b0e2e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042380480"}, "pid": "9961", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:32.899927 2024-09-11 09:10:32.899931 0b4b9dc1-71bf-4537-8d4d-320644278235 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042374480"}, "pid": "9962", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:32.95298 2024-09-11 09:10:32.952984 8715583f-3b8f-4fbc-b8b4-f4633d97c790 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042325900"}, "pid": "9963", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:33.005892 2024-09-11 09:10:33.005896 5b93968a-edf7-4825-bdbf-06fca05a989a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042325897"}, "pid": "9964", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:33.059805 2024-09-11 09:10:33.05981 947e58b8-109c-451b-b8d0-cca9bc823546 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042313414"}, "pid": "9965", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:33.111066 2024-09-11 09:10:33.111069 b5eeb0fb-ed23-4b77-a2a1-8030fd1904d4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042277558"}, "pid": "9966", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:33.168413 2024-09-11 09:10:33.168417 4ec5b35a-dc83-4e31-8840-2028de1dcbe6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042266289"}, "pid": "9967", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:33.223582 2024-09-11 09:10:33.223587 6bda811b-ffe5-466b-9436-aba424e26633 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042241839"}, "pid": "9968", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:33.286024 2024-09-11 09:10:33.286028 5acd425f-759a-4602-b8d3-cf5ef956eaf6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042230284"}, "pid": "9969", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:33.348833 2024-09-11 09:10:33.348837 7abf2534-27df-4609-ae64-c6bc121a502c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042213010"}, "pid": "9970", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:33.415405 2024-09-11 09:10:33.41541 b321cdc9-b70c-4b4e-be93-de6ae0a99181 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042183154"}, "pid": "9971", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:33.482398 2024-09-11 09:10:33.482403 ad8895c7-9cc5-4828-8676-6b2409a07645 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04216818X"}, "pid": "9972", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:33.54061 2024-09-11 09:10:33.540613 fb038d8d-0286-44ea-822f-e620a8c69559 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042161258"}, "pid": "9973", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:33.595931 2024-09-11 09:10:33.595934 820fd281-c7d3-41b5-92f3-e2763477ee82 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042147670"}, "pid": "9974", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:33.647166 2024-09-11 09:10:33.64717 139caf44-becd-43af-ba1a-0b22e7a577a8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042142237"}, "pid": "9975", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:33.69872 2024-09-11 09:10:33.698723 0ffa3cf1-427e-4dc8-b6e9-3ed3c90667bf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042137519"}, "pid": "9976", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:33.749757 2024-09-11 09:10:33.749763 e119ae40-cd86-4ac6-99ad-ee99ffb6961b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042124093"}, "pid": "9977", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:33.798271 2024-09-11 09:10:33.798274 d9380f75-1b98-4a0c-be6f-fb198d0e7209 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042123909"}, "pid": "9978", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:33.848818 2024-09-11 09:10:33.848823 143152c9-fb16-4cbe-8009-2d1600216397 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04211277X"}, "pid": "9979", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:33.911517 2024-09-11 09:10:33.911521 015c7ec9-9a7f-4920-b790-8b495517a477 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042104378"}, "pid": "9980", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:33.962545 2024-09-11 09:10:33.962549 5d523fd4-ea70-449f-aaf1-ee1df3be1070 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042100917"}, "pid": "9981", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:34.015448 2024-09-11 09:10:34.015453 c9cbe12a-b2ce-4080-a386-cc0148e95b92 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042100445"}, "pid": "9982", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:34.070186 2024-09-11 09:10:34.07019 480ffd8d-0f04-4f26-ad0e-019c87946104 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042081033"}, "pid": "9983", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:34.122593 2024-09-11 09:10:34.122597 43220e88-7ad1-45f7-9799-08bf167d18af {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042074150"}, "pid": "9984", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:34.175831 2024-09-11 09:10:34.175835 5a03e07a-db03-4fc9-8069-236ef2f38513 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042044529"}, "pid": "9985", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:34.238255 2024-09-11 09:10:34.238259 177469a6-59c6-40c4-8bb1-6daf0a96474b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042033276"}, "pid": "9986", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:34.3009 2024-09-11 09:10:34.300905 d0702c05-4c22-4a79-8a95-c03c3d5ee9ce {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042022622"}, "pid": "9987", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:34.35919 2024-09-11 09:10:34.359195 43d969f1-f2c2-4364-afe1-66facf7bcd99 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/042020646"}, "pid": "9988", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:34.419657 2024-09-11 09:10:34.419661 cfeb743a-c354-4583-b21d-50a866334e11 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041969596"}, "pid": "9989", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:34.482017 2024-09-11 09:10:34.482022 89973ed9-5c43-43b8-bbc5-0dd6297586db {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041966716"}, "pid": "9990", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:34.539814 2024-09-11 09:10:34.53982 0442d5c2-282d-4be0-ab3f-ab6215d1912e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041962923"}, "pid": "9991", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:34.592827 2024-09-11 09:10:34.592831 cfdc1ac4-1510-4eb6-9ec1-13fce36739ef {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041961080"}, "pid": "9992", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:34.641927 2024-09-11 09:10:34.641931 2f542a7d-f4a1-4b5f-8747-34db96c515bc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041944240"}, "pid": "9993", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:34.69496 2024-09-11 09:10:34.694963 3b5c3f0b-7680-4432-9223-8d8dbc6776b9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041935659"}, "pid": "9994", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:34.742627 2024-09-11 09:10:34.742631 c83d0917-b087-4a34-9240-ffb3c267e7d9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04193458X"}, "pid": "9995", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:34.794273 2024-09-11 09:10:34.794277 c7e3de40-acf7-4a48-8f82-7d3d308f385d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041920287"}, "pid": "9996", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:34.839984 2024-09-11 09:10:34.839987 903a6ba3-bdb6-42e3-87a4-dd349d8734dc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041920279"}, "pid": "9997", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:34.886653 2024-09-11 09:10:34.886656 f07001e4-d8a2-446c-9368-f3dcc604982d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041917413"}, "pid": "9998", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:34.937125 2024-09-11 09:10:34.937128 de089443-9dc9-4609-8e79-16df167bb4c6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041913574"}, "pid": "9999", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:34.985668 2024-09-11 09:10:34.98567 e81a1cd1-63d7-4564-8c22-3c841cc914ef {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041912888"}, "pid": "10000", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:35.035967 2024-09-11 09:10:35.03597 3343d94e-6bcf-4a10-8b2f-a36f41704a4f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041909836"}, "pid": "10001", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:35.08246 2024-09-11 09:10:35.082463 0879d076-590c-493a-aaab-94f72de16ed0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041906683"}, "pid": "10002", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:35.131246 2024-09-11 09:10:35.131249 76b88948-37e1-4372-a198-48ab84aa4e30 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041901398"}, "pid": "10003", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:35.177793 2024-09-11 09:10:35.177798 29178016-a984-43f6-b4cf-c1a271b066ec {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041890353"}, "pid": "10004", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:35.264608 2024-09-11 09:10:35.264612 97330800-834c-4be9-89e9-a41fbb803711 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04188566X"}, "pid": "10005", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:35.322343 2024-09-11 09:10:35.322351 6e4a9df7-2222-4368-936d-ca580070def8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041856333"}, "pid": "10006", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:35.38893 2024-09-11 09:10:35.388933 26035a48-8e8f-4f52-9aeb-53ed00fead1f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041856325"}, "pid": "10007", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:35.471356 2024-09-11 09:10:35.47136 89fbc37f-695c-4e2b-8aea-c3a1c5dbe025 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041848020"}, "pid": "10008", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:35.535732 2024-09-11 09:10:35.535736 20107ddd-16bf-4e63-bdc1-602841fef534 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041844793"}, "pid": "10009", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:35.591563 2024-09-11 09:10:35.591567 f4a13c09-1980-4db4-8e51-5e78893190cd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041844513"}, "pid": "10010", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:35.655751 2024-09-11 09:10:35.655753 40d808e9-e055-49c2-adf9-eadc96a2ff49 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041840658"}, "pid": "10011", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:35.724802 2024-09-11 09:10:35.724827 0dcef3d6-7424-4105-99af-7f883a33d3f4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041830180"}, "pid": "10012", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:35.780609 2024-09-11 09:10:35.780612 1611fefe-4743-42e7-91fe-3c9b6e6c59db {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041822218"}, "pid": "10013", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:35.837887 2024-09-11 09:10:35.83789 ffd2f5af-f115-46d3-952c-51a55e7c51d5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041815173"}, "pid": "10014", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:35.890726 2024-09-11 09:10:35.89073 a035e265-0244-4e2e-ba7c-b26cccf033a9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041810252"}, "pid": "10015", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:35.944364 2024-09-11 09:10:35.944367 a73bd768-a3a7-4c99-9e65-4aeaeae382f7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041806417"}, "pid": "10016", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:35.995043 2024-09-11 09:10:35.995047 8d472c29-f19c-41de-a581-7dcd9417acab {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041796462"}, "pid": "10017", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:36.046154 2024-09-11 09:10:36.046158 f2db5e22-9a2f-4d8f-8ee3-543cc4e7ae22 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041794923"}, "pid": "10018", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:36.097885 2024-09-11 09:10:36.097888 41f2b702-ee9f-48a8-be4a-c163cdeca462 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041789989"}, "pid": "10019", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:36.145681 2024-09-11 09:10:36.145685 18ee8c77-45ec-415b-9297-029d983edf85 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041787250"}, "pid": "10020", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:36.20887 2024-09-11 09:10:36.208874 eee59d46-83c1-441b-98da-18969ab47fd1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041785134"}, "pid": "10021", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:36.266917 2024-09-11 09:10:36.266922 2f25fa69-4f84-4529-a776-000088a681ef {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041782445"}, "pid": "10022", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:36.325702 2024-09-11 09:10:36.325707 22ba72a8-1816-4cbc-a331-2250ac491352 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041766040"}, "pid": "10023", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:36.388376 2024-09-11 09:10:36.38838 3e5084c3-cf8a-4b23-a34b-b58d996ad31e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041762223"}, "pid": "10024", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:36.454748 2024-09-11 09:10:36.454751 c82d00ec-bf6c-46b3-9007-cee3e6e61088 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041753615"}, "pid": "10025", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:36.513006 2024-09-11 09:10:36.513009 f9b96712-c495-46c0-9436-8b61f80176cd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041748379"}, "pid": "10026", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:36.570159 2024-09-11 09:10:36.570162 c12dfd7e-17f0-4473-bc14-a0508d233f34 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041734467"}, "pid": "10027", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:36.622128 2024-09-11 09:10:36.622133 296af9c8-a247-47c5-8b8c-5fb707c0c88a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041730380"}, "pid": "10028", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:36.668957 2024-09-11 09:10:36.668959 cd151433-2739-45dd-b794-d711d5cbc79f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041718380"}, "pid": "10029", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:36.71972 2024-09-11 09:10:36.719724 475e5467-b712-41bc-834e-63a5cd65ffa9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041717007"}, "pid": "10030", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:36.781375 2024-09-11 09:10:36.781379 d8bb26db-e67a-48b3-b9e8-99dba49557a0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041712900"}, "pid": "10031", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:36.837648 2024-09-11 09:10:36.837652 5df23681-76b0-4f11-8fdb-7b7d77ab5369 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041707222"}, "pid": "10032", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:36.889194 2024-09-11 09:10:36.889197 2da17a68-8a95-44cd-814e-e7175489a701 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04170553X"}, "pid": "10033", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:36.938794 2024-09-11 09:10:36.938797 748eb7a7-8032-4a3a-85c2-ef527a80a3da {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041701852"}, "pid": "10034", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:36.984922 2024-09-11 09:10:36.984925 659927b6-2524-45e5-9e79-d05bab0a6cdb {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041699122"}, "pid": "10035", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:37.035069 2024-09-11 09:10:37.035072 1d34638c-71b8-480b-a9b4-3a320d99f48a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041699114"}, "pid": "10036", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:37.091124 2024-09-11 09:10:37.091128 f993b263-bcbf-4d22-bd18-0db32ff9c0f9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041696492"}, "pid": "10037", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:37.155424 2024-09-11 09:10:37.155429 e14e4101-79b1-447c-888e-85b1d4df4243 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041693477"}, "pid": "10038", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:37.219152 2024-09-11 09:10:37.219155 e99f52e0-f033-406d-b566-8e3ab7f455d7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041692705"}, "pid": "10039", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:37.276207 2024-09-11 09:10:37.276212 6914d264-8cae-4d98-8d59-b64731d6fdc5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041689763"}, "pid": "10040", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:37.3377 2024-09-11 09:10:37.337703 4dba88a3-6da1-45e6-9324-3b33d81a695e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041687167"}, "pid": "10041", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:37.397092 2024-09-11 09:10:37.397096 7f2d0a22-e0ed-420f-a300-cbfb698664e9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041667689"}, "pid": "10042", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:37.46032 2024-09-11 09:10:37.460324 76b7813d-d652-41a9-af1e-3e1d65d01f93 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041667670"}, "pid": "10043", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:37.525853 2024-09-11 09:10:37.525856 a39183d4-7c98-4802-974e-1b4c703446c0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041663659"}, "pid": "10044", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:37.585362 2024-09-11 09:10:37.585368 f4df255c-206d-4b96-ad6c-37408a425f0a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04165725X"}, "pid": "10045", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:37.654499 2024-09-11 09:10:37.654504 330a6548-8282-4031-8dec-ee78a8c3de2c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041656032"}, "pid": "10046", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:37.709092 2024-09-11 09:10:37.709095 9205167d-9da6-4b1e-b7da-981bf1a49c55 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041655974"}, "pid": "10047", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:37.757456 2024-09-11 09:10:37.75746 daf08cee-42dc-47c4-a203-bf7a5ca5c12f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041655168"}, "pid": "10048", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:37.804168 2024-09-11 09:10:37.804171 ad4af4d7-cf04-4be7-9403-da9154559679 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041654013"}, "pid": "10049", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:37.849916 2024-09-11 09:10:37.84992 72da9b13-4694-4f49-83d0-36be3316fc9c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041653386"}, "pid": "10050", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:37.895797 2024-09-11 09:10:37.895799 991e939f-0086-48b4-b2d0-ba32c055254a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041647459"}, "pid": "10051", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:37.94596 2024-09-11 09:10:37.945963 a8f4094c-7289-45c2-993c-49d503a248db {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041637763"}, "pid": "10052", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:37.994305 2024-09-11 09:10:37.994309 677a8b45-7ec4-4dbb-a004-a099bcea9e36 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041636422"}, "pid": "10053", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:38.047316 2024-09-11 09:10:38.04732 c6220ed0-4a75-4bb8-adf2-59517a2f9a06 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041633237"}, "pid": "10054", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:38.111853 2024-09-11 09:10:38.111857 1d04b006-f005-4646-95dc-2dcbf339dbe4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041616715"}, "pid": "10055", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:38.172394 2024-09-11 09:10:38.172399 c46df014-9b98-4a90-8521-4113d608d1f9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041614909"}, "pid": "10056", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:38.245334 2024-09-11 09:10:38.245339 0802188a-405b-4bf8-98a8-aa113d816cea {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041614836"}, "pid": "10057", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:38.301182 2024-09-11 09:10:38.301186 154e675d-5779-42c6-b6ac-4faeda984d3f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041613872"}, "pid": "10058", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:38.352182 2024-09-11 09:10:38.352185 b8f6911d-d50d-4e2f-a1cd-5173a1df5330 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041613597"}, "pid": "10059", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:38.405413 2024-09-11 09:10:38.405416 03a0aa93-57ed-4682-aaa9-de3c7c098d12 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041606760"}, "pid": "10060", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:38.467851 2024-09-11 09:10:38.467854 39f685f4-2244-4156-baf3-a4e43d403388 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041599470"}, "pid": "10061", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:38.523838 2024-09-11 09:10:38.523843 92943da8-f62c-4c98-b01d-436d6a3ea7b8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041597508"}, "pid": "10062", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:38.583814 2024-09-11 09:10:38.583817 12558b3b-6e87-4697-bd1a-34dbe257af4d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041594800"}, "pid": "10063", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:38.632792 2024-09-11 09:10:38.632796 882ed891-6410-4788-a40a-eb025d9aba99 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041591267"}, "pid": "10064", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:38.683153 2024-09-11 09:10:38.683156 7c08faaf-e915-495b-ac3a-34f56a6c533a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041585623"}, "pid": "10065", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:38.731267 2024-09-11 09:10:38.73127 80098a91-7226-416f-b6a8-e3e6f2049924 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041584929"}, "pid": "10066", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:38.779918 2024-09-11 09:10:38.779922 8d637499-6760-4914-baec-92ccb2e21989 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041582667"}, "pid": "10067", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:38.829525 2024-09-11 09:10:38.829527 4a89a760-58c4-4617-abdd-39044edfb596 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041570170"}, "pid": "10068", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:38.876096 2024-09-11 09:10:38.876099 85d82fad-4bae-4372-b0ef-3417e749701d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041570103"}, "pid": "10069", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:38.926306 2024-09-11 09:10:38.926309 7a5078e6-ed29-4f9c-8623-40c5b136f643 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041565568"}, "pid": "10070", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:38.98047 2024-09-11 09:10:38.980474 8102a4e0-fada-49f9-bff0-201f89fe1a04 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041563247"}, "pid": "10071", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:39.034659 2024-09-11 09:10:39.034662 737f8a53-5a41-4b84-bbc6-5f27147e04b0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041553128"}, "pid": "10072", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:39.082316 2024-09-11 09:10:39.082319 da8ac4b7-0e90-44ed-8d86-0112f6dbf767 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041544323"}, "pid": "10073", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:39.130128 2024-09-11 09:10:39.130131 7a9f69ed-d1c2-407b-810e-0ffbcf8065fa {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041542436"}, "pid": "10074", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:39.179696 2024-09-11 09:10:39.1797 035dc6ca-adf4-47ea-8fb1-33fab8b7001e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041534646"}, "pid": "10075", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:39.24977 2024-09-11 09:10:39.249869 847ece18-2ad5-4c0a-af7e-8f3cb73c8682 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041531426"}, "pid": "10076", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:39.325134 2024-09-11 09:10:39.325139 ea2bddb8-6567-4d30-a5d8-4fc94122f535 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04152697X"}, "pid": "10077", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:39.398971 2024-09-11 09:10:39.39898 a5d33a0a-8af9-4345-909e-5c3ae6fefda6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041523393"}, "pid": "10078", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:39.462447 2024-09-11 09:10:39.462452 cead7570-ccdb-42fb-9c5a-30ff4765e1d7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041523318"}, "pid": "10079", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:39.510777 2024-09-11 09:10:39.51078 21169a87-f32a-4e23-9f64-f9a116989323 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04151923X"}, "pid": "10080", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:39.57005 2024-09-11 09:10:39.570054 6b1872db-407f-4d94-bcd8-09f63c2aca8e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041518160"}, "pid": "10081", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:39.651213 2024-09-11 09:10:39.651217 439e6753-7d22-4860-9f23-bb6d8d183608 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041516613"}, "pid": "10082", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:39.730069 2024-09-11 09:10:39.730074 a065d4de-2a89-4e21-98f4-d2f01cfe4c19 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041515420"}, "pid": "10083", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:39.803472 2024-09-11 09:10:39.80348 72a06e1a-cf21-4830-8a58-04c61fff66c1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041512820"}, "pid": "10084", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:39.883253 2024-09-11 09:10:39.883256 168cdd07-9cea-4f55-b0be-307f13caa29d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041509412"}, "pid": "10085", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:39.954246 2024-09-11 09:10:39.954254 0b27d077-3b05-4785-a2b7-832374212687 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041505336"}, "pid": "10086", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:40.023964 2024-09-11 09:10:40.023968 d7bc4780-44bb-437f-8063-247d647ce01c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041505077"}, "pid": "10087", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:40.07109 2024-09-11 09:10:40.071093 3214af39-9677-4b36-b61c-844f4db71cd2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04150335X"}, "pid": "10088", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:40.130565 2024-09-11 09:10:40.130569 71072e23-0b71-49c6-9a03-af4340cc9b75 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041502264"}, "pid": "10089", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:40.190644 2024-09-11 09:10:40.190647 320b1c65-41e9-4fd6-b1e2-f6b1f06022e5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041487109"}, "pid": "10090", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:40.243076 2024-09-11 09:10:40.243079 cc1ebdbb-adb4-4725-b575-e30e7baec479 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041477936"}, "pid": "10091", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:40.302997 2024-09-11 09:10:40.303 3c4a8ebb-1ef3-4e58-93c0-e0e45505229f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041470966"}, "pid": "10092", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:40.369671 2024-09-11 09:10:40.369675 4c4e3465-e3fb-4905-abf2-8a8da739c410 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041470044"}, "pid": "10093", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:40.439308 2024-09-11 09:10:40.439313 e37316b1-2a83-4d6d-9811-09c9204c6f62 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04146768X"}, "pid": "10094", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:40.504184 2024-09-11 09:10:40.504187 162fd4d1-1431-4e5d-b6af-021098d3a213 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041467612"}, "pid": "10095", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:40.556594 2024-09-11 09:10:40.556599 e61bb0ee-f437-401b-ae94-bd5d1655abc1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041466578"}, "pid": "10096", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:40.617075 2024-09-11 09:10:40.617082 69c5781d-32db-4a6d-bd7c-9ad5513598a8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041466365"}, "pid": "10097", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:40.687573 2024-09-11 09:10:40.687578 697e7a34-89d7-4690-a9a3-e9deff0eb6e6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041463692"}, "pid": "10098", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:40.760881 2024-09-11 09:10:40.76089 15376f91-9284-4af9-a1b6-d3cc56e9041b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041450809"}, "pid": "10099", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:40.831033 2024-09-11 09:10:40.831038 351ae02d-1819-4dc5-b492-dfab6aae5caf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041450469"}, "pid": "10100", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:40.901603 2024-09-11 09:10:40.901608 31895d7a-8910-450d-90fa-32cad2e6d4a7 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041446186"}, "pid": "10101", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:40.962209 2024-09-11 09:10:40.962212 9e274dc1-4d63-4e81-bb2b-b7d8297d0b3b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041444280"}, "pid": "10102", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:41.032174 2024-09-11 09:10:41.032178 d7c9c272-0489-436c-b1e2-81cfb5cf3320 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041439902"}, "pid": "10103", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:41.103806 2024-09-11 09:10:41.103809 4cf1833b-342c-4501-b28a-f965cbcfb913 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04143823X"}, "pid": "10104", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:41.172069 2024-09-11 09:10:41.172078 b813f01e-f64f-4ecf-a1d4-1bda619c71b4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041437896"}, "pid": "10105", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:41.230481 2024-09-11 09:10:41.230484 0104f826-cc37-4d67-8939-0a7b55b21c69 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041431049"}, "pid": "10106", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:41.290266 2024-09-11 09:10:41.290271 576f2c05-0d14-4df0-b209-01fb668b8e4c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04143028X"}, "pid": "10107", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:41.353712 2024-09-11 09:10:41.35372 c814df1f-5548-47e9-a317-3a61e46974bd {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04142641X"}, "pid": "10108", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:41.415758 2024-09-11 09:10:41.415762 3197d739-f1fa-483b-9da8-4c0a9ea22f79 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04142574X"}, "pid": "10109", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:41.47618 2024-09-11 09:10:41.476184 ff64c934-3aa4-446a-87d1-5e119519a938 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041424573"}, "pid": "10110", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:41.539912 2024-09-11 09:10:41.539917 d68514a9-d35f-4f2b-b5da-3d184672b1d6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041424492"}, "pid": "10111", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:41.590436 2024-09-11 09:10:41.59044 edae39a7-c5c1-449d-93e6-82faf263db12 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041422260"}, "pid": "10112", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:41.651503 2024-09-11 09:10:41.651506 c5d4ece6-3eab-4617-b98d-27c52311b68f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041422058"}, "pid": "10113", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:41.720457 2024-09-11 09:10:41.720465 1af49447-6cc5-4e47-8e91-4741c3805f7e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041419677"}, "pid": "10114", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:41.786614 2024-09-11 09:10:41.786619 91591d49-98ea-42df-8c73-351c9cff46f0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041411137"}, "pid": "10115", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:41.860211 2024-09-11 09:10:41.86022 ae3f97e0-647d-4f57-8c87-d5bf11aa70fa {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041409965"}, "pid": "10116", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:41.919368 2024-09-11 09:10:41.919371 47bd6d49-55ae-441a-8721-c909488acb97 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041409760"}, "pid": "10117", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:42.001259 2024-09-11 09:10:42.001268 960a6334-bfa5-415a-8e23-00288a2f1442 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041392450"}, "pid": "10118", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:42.065371 2024-09-11 09:10:42.065374 13bbb600-9fa3-45c7-bcb7-37d86793e8ba {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041388984"}, "pid": "10119", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:42.132115 2024-09-11 09:10:42.132119 15eb480a-726b-4c6f-b09b-c94947417251 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041378407"}, "pid": "10120", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:42.194688 2024-09-11 09:10:42.194691 dc3f81e4-dead-45cf-8921-59637b35e46f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041374444"}, "pid": "10121", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:42.241618 2024-09-11 09:10:42.241622 363cb2d4-d617-4142-b474-90fe5badb71f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041369785"}, "pid": "10122", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:42.300069 2024-09-11 09:10:42.300073 29b32588-f340-40af-bb57-c8647bc9ae74 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041368517"}, "pid": "10123", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:42.362898 2024-09-11 09:10:42.362901 64d23206-4981-485c-8857-02daf181f0c0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041366352"}, "pid": "10124", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:42.41207 2024-09-11 09:10:42.412074 88723f0b-67f0-4aac-a2f2-7afb5ed4c926 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041365844"}, "pid": "10125", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:42.46755 2024-09-11 09:10:42.467552 2cf93bda-b2f3-4ef5-a70a-061d8d27808c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041354710"}, "pid": "10126", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:42.520564 2024-09-11 09:10:42.520566 b393a2e1-8660-427c-84fe-136dc5adceb2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041345835"}, "pid": "10127", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:42.572621 2024-09-11 09:10:42.572624 44e07104-1f11-4c77-aebc-c10251ab1398 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04134166X"}, "pid": "10128", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:42.639454 2024-09-11 09:10:42.639462 098e16bb-27d1-43da-9052-65b8d08bfd5b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041340892"}, "pid": "10129", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:42.705253 2024-09-11 09:10:42.705256 2dbb9d19-5421-4375-a559-6a0a348835a3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041333004"}, "pid": "10130", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:42.764746 2024-09-11 09:10:42.76475 beaede31-6530-43df-99a5-cf7cb59a1064 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041332997"}, "pid": "10131", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:42.824619 2024-09-11 09:10:42.824623 3db613e9-899d-4c81-a7ac-a8fe79279dd8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041332237"}, "pid": "10132", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:42.891484 2024-09-11 09:10:42.891493 ee2b6de8-db91-4a38-b93e-8d786beb55be {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041326202"}, "pid": "10133", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:42.960307 2024-09-11 09:10:42.960316 78d22531-4a1a-4970-84f1-d2535c5e21b5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041325710"}, "pid": "10134", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:43.038104 2024-09-11 09:10:43.038109 fbca593a-0e68-4b1b-b098-7e46bfcd1d7f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04132305X"}, "pid": "10135", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:43.086181 2024-09-11 09:10:43.086184 3f7853fb-a8c5-4b9c-83fc-cd72f4c04281 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041322886"}, "pid": "10136", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:43.150003 2024-09-11 09:10:43.150011 dcea1dd4-ddc9-4786-b2f0-244e0e8a8529 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041319125"}, "pid": "10137", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:43.219627 2024-09-11 09:10:43.21963 d40bf4b7-8859-4501-85ed-7733446db67b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041317718"}, "pid": "10138", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:43.286608 2024-09-11 09:10:43.286617 7c3716cd-338d-4c81-b87e-f6bcba940e4a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041312368"}, "pid": "10139", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:43.366118 2024-09-11 09:10:43.366126 72f382a0-a2be-4db4-958e-3084aaa1a1d6 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041308166"}, "pid": "10140", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:43.434699 2024-09-11 09:10:43.434702 7b2f04cd-f683-4a04-a58b-d2b87f4dc925 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041308107"}, "pid": "10141", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:43.502793 2024-09-11 09:10:43.502796 bcd23461-5ba6-4e8a-968b-9a07732dbbc4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041303768"}, "pid": "10142", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:43.561306 2024-09-11 09:10:43.561309 79957613-2412-41cc-9e07-16daf507d653 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041299604"}, "pid": "10143", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:43.624133 2024-09-11 09:10:43.624139 09cafa15-ac34-44b9-a3a0-48172759e345 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041287045"}, "pid": "10144", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:43.696744 2024-09-11 09:10:43.696748 b56d9ac3-f3ae-4a57-b990-c6ccf3855c78 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04128237X"}, "pid": "10145", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:43.762198 2024-09-11 09:10:43.762207 d2eeaf44-e579-4645-adb7-ac012b0c97ca {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041281632"}, "pid": "10146", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:43.832237 2024-09-11 09:10:43.832247 3d717162-ce57-4085-977c-5b98d93fa9d3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041273230"}, "pid": "10147", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:43.905257 2024-09-11 09:10:43.905259 7e4bc9fe-8378-461a-834b-2db3f93b03d1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041269950"}, "pid": "10148", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:43.980073 2024-09-11 09:10:43.980078 40af0a54-39d4-4291-b4fb-0bc656d457c1 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041258584"}, "pid": "10149", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:44.048293 2024-09-11 09:10:44.048296 0749e277-b885-495d-b77e-cd287b1dc65c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041255887"}, "pid": "10150", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:44.09572 2024-09-11 09:10:44.095723 d9196bbc-8228-4e53-8500-f7fbde5f82d3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041252896"}, "pid": "10151", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:44.152318 2024-09-11 09:10:44.152322 4341425e-4d48-479a-b695-04d0b7a0f6b3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041245296"}, "pid": "10152", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:44.218722 2024-09-11 09:10:44.218726 9109b67b-1e2c-4436-9309-87b3c13384e3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041240510"}, "pid": "10153", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:44.291493 2024-09-11 09:10:44.291504 e218a465-cbc1-4ef4-9678-46bb3f0d64c4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041239288"}, "pid": "10154", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:44.372229 2024-09-11 09:10:44.372238 14e34c2d-4bc2-41f5-829f-27846b424c7b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041238826"}, "pid": "10155", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:44.440794 2024-09-11 09:10:44.440803 160c9c56-35e0-4178-a27a-d3385ccbba80 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041236599"}, "pid": "10156", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:44.5187 2024-09-11 09:10:44.518704 db12ea61-9e7e-4c4d-978f-a61605ed696b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041235347"}, "pid": "10157", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:44.580527 2024-09-11 09:10:44.580531 7800aa6a-aca6-4fc4-a33d-40fc0c542101 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041227980"}, "pid": "10158", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:44.658816 2024-09-11 09:10:44.658826 ce917f66-2962-4ac6-bbe1-0bf7c9d03d7d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041220609"}, "pid": "10159", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:44.721099 2024-09-11 09:10:44.721102 1cf97328-a975-4a9b-af70-f3ed055c3086 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04121952X"}, "pid": "10160", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:44.781725 2024-09-11 09:10:44.781735 00bc063e-b5b1-4977-a502-43d1b311a4ae {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041218108"}, "pid": "10161", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:44.854024 2024-09-11 09:10:44.854028 b69bfdac-5873-4c8b-951b-ac5b87dab3de {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041217616"}, "pid": "10162", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:44.924532 2024-09-11 09:10:44.924537 541a4d68-7a02-4ec4-bdb8-64094385dcd2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041212304"}, "pid": "10163", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:44.991315 2024-09-11 09:10:44.991319 80828b2a-ba7c-4197-91c7-d1631f53ee7a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041207017"}, "pid": "10164", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:45.054692 2024-09-11 09:10:45.054695 e8710945-3a4b-42ed-9b53-8ee76ac6844e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041206592"}, "pid": "10165", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:45.110744 2024-09-11 09:10:45.110748 3d803da3-ecc3-40a1-b62e-f5f113fe99f4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041201116"}, "pid": "10166", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:45.164886 2024-09-11 09:10:45.164889 d81e175c-b32c-4097-8028-3aa6171866c4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041184432"}, "pid": "10167", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:45.222919 2024-09-11 09:10:45.222922 b7f02078-bcc9-4e49-a5db-af6647ac454e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041176065"}, "pid": "10168", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:45.291689 2024-09-11 09:10:45.291692 823387a9-5697-4ed7-8571-85dcf244d0d0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041155513"}, "pid": "10169", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:45.368763 2024-09-11 09:10:45.368767 7aafa5af-2759-46fd-9830-5cb8627337e9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041154630"}, "pid": "10170", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:45.438564 2024-09-11 09:10:45.438567 d1d03aeb-90bf-4d53-aa3b-931e431e80b9 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04114516X"}, "pid": "10171", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:45.497444 2024-09-11 09:10:45.497447 89e71d8e-03d3-4dcd-a663-0dbe3c12b546 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041091507"}, "pid": "10172", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:45.556902 2024-09-11 09:10:45.556909 0588c83e-45c3-4e1f-841f-583a675a91c2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041076842"}, "pid": "10173", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:45.604993 2024-09-11 09:10:45.604995 189d3bde-623b-4f70-8827-d63b26779256 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/041018699"}, "pid": "10174", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:45.672951 2024-09-11 09:10:45.672956 d7768d17-e986-4884-8391-b74ba1665c12 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040775593"}, "pid": "10175", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:45.729614 2024-09-11 09:10:45.729617 7972a0db-597e-4e2d-8fa8-13ba1bac5bf2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040763889"}, "pid": "10176", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:45.791772 2024-09-11 09:10:45.791782 7b4c0833-6be7-4f92-b922-e035c37baa0a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040730913"}, "pid": "10177", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:45.865673 2024-09-11 09:10:45.865677 b75d7210-c99c-4208-b4ac-9de67770e8b5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04071781X"}, "pid": "10178", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:45.926902 2024-09-11 09:10:45.926906 e56acbf1-b755-4360-b8c1-af5658366e44 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04067777X"}, "pid": "10179", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:45.995087 2024-09-11 09:10:45.99509 c376960f-d30d-4c89-bd4a-10e360924d9f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04066533X"}, "pid": "10180", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:46.04534 2024-09-11 09:10:46.045345 382dae94-39fc-4e53-a3e1-eff90153cb86 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040645312"}, "pid": "10181", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:46.094105 2024-09-11 09:10:46.094108 bb7a7680-b6be-4060-9f26-420d0855a9ed {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040633217"}, "pid": "10182", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:46.144955 2024-09-11 09:10:46.144957 dd7da58b-a28a-4f99-a058-415e8269a52c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040583317"}, "pid": "10183", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:46.242451 2024-09-11 09:10:46.242456 4b78b4e7-64bf-47b6-8db6-eff0ea739ba2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040544567"}, "pid": "10184", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:46.314073 2024-09-11 09:10:46.314077 f97edccb-668a-49f5-b21d-45dd65149eb0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040519384"}, "pid": "10185", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:46.38265 2024-09-11 09:10:46.382658 94811b97-ed79-4092-a81e-06971a4c5fb5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040514927"}, "pid": "10186", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:46.454389 2024-09-11 09:10:46.454398 bbfe669f-2100-46fa-8e5b-376fd1f68f6b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040512665"}, "pid": "10187", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:46.530721 2024-09-11 09:10:46.53073 5f1664de-6923-46f6-b1d4-d5728a38e591 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04051238X"}, "pid": "10188", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:46.585644 2024-09-11 09:10:46.585648 6cf211d8-ddf8-4824-aa39-7ed91520e878 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040490297"}, "pid": "10189", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:46.648425 2024-09-11 09:10:46.648429 d9699754-6402-4663-8a8b-66ff3d29d3c3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040459608"}, "pid": "10190", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:46.700122 2024-09-11 09:10:46.700124 c6d601ba-1117-4c85-8fc4-40d483c50000 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040451259"}, "pid": "10191", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:46.748948 2024-09-11 09:10:46.74895 08cbef68-88e0-4366-8262-cc3f1f64d4b0 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040438163"}, "pid": "10192", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:46.796585 2024-09-11 09:10:46.796588 e6c53969-d344-454e-bec1-60339d71406c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040432149"}, "pid": "10193", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:46.84591 2024-09-11 09:10:46.845914 9cba4243-18fc-4e8e-ba02-d17b6295894f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040416496"}, "pid": "10194", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:46.901216 2024-09-11 09:10:46.901219 03847d43-a171-4b81-a2e2-40c89d0e4987 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040406938"}, "pid": "10195", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:46.951983 2024-09-11 09:10:46.951986 31b6deb2-dac5-4ecb-9a07-64a274334bb4 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040403688"}, "pid": "10196", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:47.000766 2024-09-11 09:10:47.000769 b4e1450f-6923-4c1b-8071-a66026a530f8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040389065"}, "pid": "10197", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:47.054229 2024-09-11 09:10:47.054232 efa9ab24-98bd-457f-9035-ec335291c9b2 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040335682"}, "pid": "10198", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:47.105813 2024-09-11 09:10:47.105815 31a03ce4-db72-432e-9e76-0e5d73b1d3f8 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040328260"}, "pid": "10199", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:47.15679 2024-09-11 09:10:47.156793 82b20169-8d89-4700-93d1-2e10805320f3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04032009X"}, "pid": "10200", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:47.216261 2024-09-11 09:10:47.216264 d5058f45-b1d7-474b-bf98-09018ff2622b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040252434"}, "pid": "10201", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:47.271088 2024-09-11 09:10:47.27109 1176c806-35f6-4cb5-a21b-4c0ef0978edc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040247996"}, "pid": "10202", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:47.325736 2024-09-11 09:10:47.32574 a418e3ec-6623-42e8-b35e-279ea7ae58b5 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04024055X"}, "pid": "10203", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:47.394238 2024-09-11 09:10:47.394247 e2958162-6a85-4880-adfa-8a0b8178985f {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040205487"}, "pid": "10204", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:47.476245 2024-09-11 09:10:47.476249 abe6620a-7bee-4284-9da4-7c4e5daf987c {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040189074"}, "pid": "10205", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:47.540542 2024-09-11 09:10:47.540549 27d61335-9b03-4561-823c-0dac8e0d09fc {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040130193"}, "pid": "10206", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:47.603898 2024-09-11 09:10:47.603903 48659afa-d79c-4054-8a06-808f64e7ed04 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/04009006X"}, "pid": "10207", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:47.67609 2024-09-11 09:10:47.676099 8d9d4463-c36a-4697-8e20-f14452aa9faf {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040085287"}, "pid": "10208", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:47.745614 2024-09-11 09:10:47.745619 1d9f905d-de38-4a5f-8c91-a7ebcca0e91a {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040085244"}, "pid": "10209", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:47.814647 2024-09-11 09:10:47.814651 1645f5eb-5b2c-4322-af32-20722a4a2e1d {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040078124"}, "pid": "10210", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:47.876604 2024-09-11 09:10:47.876606 b8c0ad1c-560d-4bbb-a7f4-e93912f509ff {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040068560"}, "pid": "10211", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:47.948469 2024-09-11 09:10:47.948479 37a16c04-cfc3-4b70-8611-fa0ee5c69a61 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040062120"}, "pid": "10212", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:48.022251 2024-09-11 09:10:48.022254 0f7d3bfb-c226-414e-91ba-982277437c0e {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040036774"}, "pid": "10213", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:48.077474 2024-09-11 09:10:48.077477 ab3992c1-0d27-408d-a6c3-bcdbe02cbd9b {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040030415"}, "pid": "10214", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:48.14416 2024-09-11 09:10:48.144169 18ededfa-b1c2-4f17-af4d-37acce3acd38 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040021475"}, "pid": "10215", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 +2024-09-11 09:10:48.216789 2024-09-11 09:10:48.216792 4d9acf18-8bdc-4163-ad60-0d1eea2841a3 {"gnd": {"$ref": "https://mef.rero.ch/api/concepts/gnd/040021459"}, "pid": "10216", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_mef/mef-concept-v0.0.1.json"} 1 diff --git a/data/comef_pidstore.csv b/data/comef_pidstore.csv index 3d39c67f..3834b8db 100644 --- a/data/comef_pidstore.csv +++ b/data/comef_pidstore.csv @@ -1,293 +1,2694 @@ -2023-08-08 13:37:34.566634 2023-08-08 13:37:34.56664 comef 7523 R rec dac46dce-f6ed-467e-bf45-b7b8cd223f18 -2023-08-08 13:37:34.639149 2023-08-08 13:37:34.639155 comef 7524 R rec 145433f7-2c2d-4da0-a5e9-1f0ede5f4e5b -2023-08-08 13:37:34.686728 2023-08-08 13:37:34.686733 comef 7525 R rec 41156192-2519-4487-b59d-122fd1ae9413 -2023-08-08 13:37:34.735266 2023-08-08 13:37:34.735271 comef 7526 R rec 04f7c0b9-95c7-41a2-843e-1b138eee3f94 -2023-08-08 13:37:34.781672 2023-08-08 13:37:34.781677 comef 7527 R rec 33d69848-7a15-4f22-a84b-35eb42319b2a -2023-08-08 13:37:34.833959 2023-08-08 13:37:34.833964 comef 7528 R rec fe4fd4cb-7503-4fac-b0f2-ce07ff26766b -2023-08-08 13:37:34.890253 2023-08-08 13:37:34.890265 comef 7529 R rec 164d426e-f0c7-45df-9dcd-2d3873dde307 -2023-08-08 13:37:34.969915 2023-08-08 13:37:34.969929 comef 7530 R rec a0f52ae3-acd7-443d-acab-6a21fbc26666 -2023-08-08 13:37:35.0366 2023-08-08 13:37:35.036605 comef 7531 R rec 49dad886-d4e0-4102-9a57-009308939484 -2023-08-08 13:37:35.116182 2023-08-08 13:37:35.116186 comef 7532 R rec e0631867-3940-4e67-a10c-10ca724557bc -2023-08-08 13:37:35.200544 2023-08-08 13:37:35.200555 comef 7533 R rec 76505cec-e298-454e-8bcc-67e5ac5893fd -2023-08-08 13:37:35.274723 2023-08-08 13:37:35.274733 comef 7534 R rec 9c331bda-472a-4c59-8964-f78697b389a3 -2023-08-08 13:37:35.344008 2023-08-08 13:37:35.344019 comef 7535 R rec 3f0ca320-84a0-49c8-aaf5-2aced99f2523 -2023-08-08 13:37:35.41159 2023-08-08 13:37:35.411595 comef 7536 R rec 9615e44b-8cee-48d7-83e2-5618d3abf222 -2023-08-08 13:37:35.483537 2023-08-08 13:37:35.483548 comef 7537 R rec 768255ea-a4ad-4619-9dd9-f0c31fe43171 -2023-08-08 13:37:35.545891 2023-08-08 13:37:35.545897 comef 7538 R rec b2ce96a6-62cd-47ef-989c-cdf951619a68 -2023-08-08 13:37:35.596633 2023-08-08 13:37:35.596638 comef 7539 R rec f2412722-83f8-4b27-aba2-595e635fa76c -2023-08-08 13:37:35.645308 2023-08-08 13:37:35.645313 comef 7540 R rec 735d6d96-a1bf-4e40-a415-373017cd27fd -2023-08-08 13:37:35.690395 2023-08-08 13:37:35.690401 comef 7541 R rec 5e494833-a62b-4a04-92f9-192ef71ab77f -2023-08-08 13:37:35.742892 2023-08-08 13:37:35.742897 comef 7542 R rec 5215edf8-debf-497c-be84-56680c97c7b8 -2023-08-08 13:37:37.318822 2023-08-08 13:37:37.318828 comef 7543 R rec 672d2c3f-e581-456c-9743-76d6454f5996 -2023-08-08 13:37:37.394378 2023-08-08 13:37:37.394384 comef 7544 R rec 8209ea39-87c8-4c5c-aa72-0d0fe3f5740b -2023-08-08 13:37:37.445806 2023-08-08 13:37:37.445812 comef 7545 R rec 9db59da0-cfaa-4be3-9aad-c7ae55b19380 -2023-08-08 13:37:37.494381 2023-08-08 13:37:37.494386 comef 7546 R rec 8538fe03-0b51-4d54-8d30-f06c84d2683f -2023-08-08 13:37:37.54804 2023-08-08 13:37:37.548046 comef 7547 R rec 400b79a9-0aa8-42df-82b4-e6df7ec325ce -2023-08-08 13:37:37.603265 2023-08-08 13:37:37.60327 comef 7548 R rec 0de0792d-8a7f-421e-9976-ddb6b792b2e1 -2023-08-08 13:37:37.663412 2023-08-08 13:37:37.663417 comef 7549 R rec e5cf5c69-5732-48c4-bcc3-3bd53c2b6c2b -2023-08-08 13:37:37.712887 2023-08-08 13:37:37.712893 comef 7550 R rec 314b3a71-0716-45c0-98ec-63d826cbd4c2 -2023-08-08 13:37:37.76064 2023-08-08 13:37:37.760645 comef 7551 R rec da4db154-9f0e-4df8-9e5a-3728e96d1bd2 -2023-08-08 13:37:37.806377 2023-08-08 13:37:37.806383 comef 7552 R rec 5450b281-9bba-4ac1-881d-658a405b5fe3 -2023-08-08 13:37:37.852819 2023-08-08 13:37:37.852825 comef 7553 R rec 80d57165-9bce-4c24-b78c-5363cda1345a -2023-08-08 13:37:37.92569 2023-08-08 13:37:37.9257 comef 7554 R rec 985081dd-c99d-460f-b772-149625f7aeb9 -2023-08-08 13:37:37.999677 2023-08-08 13:37:37.999688 comef 7555 R rec 49ec3254-16a9-4b79-ac73-52d135b7ffa6 -2023-08-08 13:37:38.089806 2023-08-08 13:37:38.089817 comef 7556 R rec 9e1e09da-607c-4afe-8c0a-bb048ba5c77e -2023-08-08 13:37:38.189603 2023-08-08 13:37:38.189614 comef 7557 R rec 6a3fce1f-e9f5-4cb0-a6f6-c9a0f005aaee -2023-08-08 13:37:38.274798 2023-08-08 13:37:38.274808 comef 7558 R rec f1e27378-e29f-413d-bc19-b0cbf91789fb -2023-08-08 13:37:38.366236 2023-08-08 13:37:38.366241 comef 7559 R rec 0cefbf2f-ec9f-4ae3-b300-a5cdd798be1c -2023-08-08 13:37:38.439395 2023-08-08 13:37:38.439401 comef 7560 R rec fd836156-c7a2-4c8a-94c2-a5e6b9ede2d2 -2023-08-08 13:37:38.526441 2023-08-08 13:37:38.526446 comef 7561 R rec ba59c574-3369-4eb3-b739-726ce9be7337 -2023-08-08 13:37:38.590876 2023-08-08 13:37:38.590886 comef 7562 R rec 76ba8f40-ad15-4afa-8aab-b3cba741962d -2023-08-08 13:37:38.645046 2023-08-08 13:37:38.645051 comef 7563 R rec 979baaba-e1f6-47c7-9c11-5d0cc88bbb24 -2023-08-08 13:37:38.690521 2023-08-08 13:37:38.690526 comef 7564 R rec 879f97bd-1a78-4c1d-b283-920d68c494ab -2023-08-08 13:37:38.742656 2023-08-08 13:37:38.742661 comef 7565 R rec e2aaf252-a10a-4cde-bc73-3c2123a06328 -2023-08-08 13:37:38.790004 2023-08-08 13:37:38.790009 comef 7566 R rec ff7cdaab-cafe-44f2-b82a-cfc793c44269 -2023-08-08 13:37:38.836614 2023-08-08 13:37:38.83662 comef 7567 R rec 891f6917-b7ac-43be-b128-a725aa6643c1 -2023-08-08 13:37:38.909975 2023-08-08 13:37:38.90998 comef 7568 R rec 5c520cfd-bc6a-4756-bdff-50cdb387cdd7 -2023-08-08 13:37:38.980569 2023-08-08 13:37:38.980573 comef 7569 R rec e8d35e34-5757-4fb3-b0dd-801b96c6147b -2023-08-08 13:37:39.05134 2023-08-08 13:37:39.051346 comef 7570 R rec 8b496f92-8a4d-40f6-a1aa-3498b99a821f -2023-08-08 13:37:39.115988 2023-08-08 13:37:39.115994 comef 7571 R rec 3b7d2fb6-a531-4027-8a50-046e32baa30b -2023-08-08 13:37:39.19306 2023-08-08 13:37:39.193065 comef 7572 R rec df0c1508-b627-41ca-b3a9-5609b90ac373 -2023-08-08 13:37:39.266639 2023-08-08 13:37:39.266649 comef 7573 R rec d2d47ac4-6e0d-49be-9f7c-b13ed82b5ef4 -2023-08-08 13:37:39.362368 2023-08-08 13:37:39.362378 comef 7574 R rec 6951537a-dc93-48b8-80a8-91f1be875c75 -2023-08-08 13:37:39.431246 2023-08-08 13:37:39.431251 comef 7575 R rec 5eba0d5f-5c7c-47a6-be9b-3411f9603ed5 -2023-08-08 13:37:39.497052 2023-08-08 13:37:39.497058 comef 7576 R rec dbb7afff-52da-42ce-b2e2-cb6cf4224f94 -2023-08-08 13:37:39.556892 2023-08-08 13:37:39.556898 comef 7577 R rec 8fe839de-3e73-4d1a-805c-e4d9ce9e56ef -2023-08-08 13:37:39.619186 2023-08-08 13:37:39.619196 comef 7578 R rec 8f2ef111-96ca-4e23-a6c1-5c9ee810846f -2023-08-08 13:37:39.679728 2023-08-08 13:37:39.679733 comef 7579 R rec 8e71de06-364c-4b1a-bf83-a0d1c6b11341 -2023-08-08 13:37:39.72725 2023-08-08 13:37:39.727255 comef 7580 R rec 53789323-57d7-4b60-9cdd-d5493697836b -2023-08-08 13:37:39.775719 2023-08-08 13:37:39.775724 comef 7581 R rec a0082d77-481a-4a65-ae00-dda496b2aae9 -2023-08-08 13:37:39.827553 2023-08-08 13:37:39.827558 comef 7582 R rec dc454d11-fa70-4406-8f5d-5a438d1605c6 -2023-08-08 13:37:39.873433 2023-08-08 13:37:39.873439 comef 7583 R rec 3e27a960-f870-4886-a788-57426aab0e81 -2023-08-08 13:37:39.940769 2023-08-08 13:37:39.94078 comef 7584 R rec e83f418d-a2dd-45dd-b914-a9503e0db42b -2023-08-08 13:37:40.027246 2023-08-08 13:37:40.027252 comef 7585 R rec dd69540b-f270-4179-b606-0b0c375ea63c -2023-08-08 13:37:40.081011 2023-08-08 13:37:40.081022 comef 7586 R rec e4e46c08-1fb1-4298-87c4-61cc62c0567f -2023-08-08 13:37:40.164202 2023-08-08 13:37:40.164212 comef 7587 R rec 81f71d3f-b5a3-4d88-bed3-6e5c87b8eee9 -2023-08-08 13:37:40.231791 2023-08-08 13:37:40.231796 comef 7588 R rec 3e2c8926-b993-4645-b4cb-bdc81844baf8 -2023-08-08 13:37:40.31244 2023-08-08 13:37:40.31245 comef 7589 R rec a9081a25-2057-4708-a646-beaaa96c21de -2023-08-08 13:37:40.4005 2023-08-08 13:37:40.400509 comef 7590 R rec 69a83937-6d1b-4f5b-bf96-8410adbf9f0d -2023-08-08 13:37:40.49154 2023-08-08 13:37:40.491551 comef 7591 R rec ada862f3-59a5-428d-a8ef-7cf47a8e86e1 -2023-08-08 13:37:40.560452 2023-08-08 13:37:40.560457 comef 7592 R rec 18eadecc-e55f-40f6-a105-75d592386931 -2023-08-08 13:37:40.632651 2023-08-08 13:37:40.632656 comef 7593 R rec 0c356944-809a-4311-a022-49bc2c806951 -2023-08-08 13:37:40.704392 2023-08-08 13:37:40.704397 comef 7594 R rec 85503263-9362-4a40-a778-6503b93b37d1 -2023-08-08 13:37:40.774714 2023-08-08 13:37:40.77472 comef 7595 R rec 21983b6b-b5a0-4a9a-b95e-4207d45cf46c -2023-08-08 13:37:40.832991 2023-08-08 13:37:40.832997 comef 7596 R rec b6677f66-e9d4-4550-a167-b2b2c5f74bd3 -2023-08-08 13:37:40.883501 2023-08-08 13:37:40.883507 comef 7597 R rec b37b70af-c688-4a00-af9a-d800c3853479 -2023-08-08 13:37:40.96358 2023-08-08 13:37:40.96359 comef 7598 R rec 5434e655-aaac-4f9a-b6c7-549d19682070 -2023-08-08 13:37:41.046763 2023-08-08 13:37:41.046769 comef 7599 R rec 42e7ce67-8fd0-45e0-a485-596533ec3b75 -2023-08-08 13:37:41.11394 2023-08-08 13:37:41.11395 comef 7600 R rec 37bff509-de81-49ae-af92-adb3259f0572 -2023-08-08 13:37:41.194862 2023-08-08 13:37:41.194872 comef 7601 R rec 09ae2a98-7728-40a9-a96c-d74b3f5464b2 -2023-08-08 13:37:41.276731 2023-08-08 13:37:41.276741 comef 7602 R rec fb974f50-be51-4147-8b71-0bd83ef7af89 -2023-08-08 13:37:41.37747 2023-08-08 13:37:41.377476 comef 7603 R rec 645b993d-b3e4-4ffd-93c0-1c773d46ea88 -2023-08-08 13:37:41.463224 2023-08-08 13:37:41.463233 comef 7604 R rec 8341e7a5-fe40-4a33-8302-05cd47a733d8 -2023-08-08 13:37:41.541761 2023-08-08 13:37:41.541766 comef 7605 R rec 5b3abd85-5923-40ce-b262-95793471e7e3 -2023-08-08 13:37:41.611749 2023-08-08 13:37:41.611755 comef 7606 R rec 009228a8-3014-42b1-84ed-de3a72a47939 -2023-08-08 13:37:41.694862 2023-08-08 13:37:41.694868 comef 7607 R rec 62871867-7f81-4b0a-899d-a9730d473dfe -2023-08-08 13:37:41.769972 2023-08-08 13:37:41.769977 comef 7608 R rec 7064aa1e-b931-4284-9410-fe13c8aed530 -2023-08-08 13:37:41.820361 2023-08-08 13:37:41.820366 comef 7609 R rec 975a297c-d44e-43a0-be23-50416a982322 -2023-08-08 13:37:41.880054 2023-08-08 13:37:41.880059 comef 7610 R rec 71f8606e-f10b-49f0-bcdb-5c39ebe24080 -2023-08-08 13:37:41.939339 2023-08-08 13:37:41.939344 comef 7611 R rec babda14f-20f8-4593-b5e1-116b77fd753d -2023-08-08 13:37:42.027852 2023-08-08 13:37:42.027862 comef 7612 R rec 8684b379-b84e-49c2-8120-959446d2bf0d -2023-08-08 13:37:42.094139 2023-08-08 13:37:42.094149 comef 7613 R rec 46543dca-5fa8-4076-b1b6-0cd9376a6d99 -2023-08-08 13:37:42.176926 2023-08-08 13:37:42.176931 comef 7614 R rec d922c892-0f2a-4932-8da8-fc7863281b1a -2023-08-08 13:37:42.251521 2023-08-08 13:37:42.251526 comef 7615 R rec 25d27153-0a43-4d5a-a9c7-98e98697fef0 -2023-08-08 13:37:42.332176 2023-08-08 13:37:42.332186 comef 7616 R rec fd8b99ad-2410-4b7b-b8df-761ea2f55314 -2023-08-08 13:37:42.426363 2023-08-08 13:37:42.426374 comef 7617 R rec dc1d419f-23ad-4a97-8c6c-a588efec071e -2023-08-08 13:37:42.51254 2023-08-08 13:37:42.512545 comef 7618 R rec b2e19a1b-8957-4e03-9bc6-4685aea0f121 -2023-08-08 13:37:42.581685 2023-08-08 13:37:42.581694 comef 7619 R rec d71d61e5-426c-470a-86e9-1f52dc1a1b5a -2023-08-08 13:37:42.674159 2023-08-08 13:37:42.674165 comef 7620 R rec 0521fc43-dd56-41d9-9019-0fc507696600 -2023-08-08 13:37:42.770569 2023-08-08 13:37:42.770579 comef 7621 R rec 84cd3fbf-274f-4f2d-ac1d-ac7cefc1480d -2023-08-08 13:37:42.825367 2023-08-08 13:37:42.825372 comef 7622 R rec ca09bbf7-d883-4c17-b68d-468aef444076 -2023-08-08 13:37:42.874605 2023-08-08 13:37:42.874611 comef 7623 R rec 2cecf4dc-74f8-4229-8dfc-c7a387153c3b -2023-08-08 13:37:42.92447 2023-08-08 13:37:42.924475 comef 7624 R rec f8d78f9b-d5c1-4ec3-846e-45d5f96afd7b -2023-08-08 13:37:42.977476 2023-08-08 13:37:42.977482 comef 7625 R rec 8acda6d8-94c6-40ea-82e6-0639af921cb8 -2023-08-08 13:37:43.033242 2023-08-08 13:37:43.033248 comef 7626 R rec 41c96dcb-c9dc-4673-8baa-1663639d22b9 -2023-08-08 13:37:43.098885 2023-08-08 13:37:43.098896 comef 7627 R rec 9c8040e3-e214-45f0-b099-5bbeea1cb89b -2023-08-08 13:37:43.17842 2023-08-08 13:37:43.17843 comef 7628 R rec 8f236f8e-26d4-44fa-89e8-3ce58c3fdeee -2023-08-08 13:37:43.267103 2023-08-08 13:37:43.267108 comef 7629 R rec c2b14c18-df4b-4849-a87e-9ce78878434f -2023-08-08 13:37:43.361348 2023-08-08 13:37:43.361358 comef 7630 R rec 895cabdc-9cf7-4dad-8af0-4f536e322728 -2023-08-08 13:37:43.439949 2023-08-08 13:37:43.439954 comef 7631 R rec 72f201e3-865d-4867-9ae9-6f377264ce97 -2023-08-08 13:37:43.528849 2023-08-08 13:37:43.528859 comef 7632 R rec 9c59ed71-1817-4079-a5bb-152de90e27bf -2023-08-08 13:37:43.611569 2023-08-08 13:37:43.611575 comef 7633 R rec fae2477e-1dbc-47fa-ac8e-c7a3fb290ce8 -2023-08-08 13:37:43.698726 2023-08-08 13:37:43.698736 comef 7634 R rec b30347ae-8c76-4b94-9eeb-a8a5d9fafbe3 -2023-08-08 13:37:43.786365 2023-08-08 13:37:43.786376 comef 7635 R rec d1866148-015b-4575-8bf1-327997caa4f7 -2023-08-08 13:37:43.850647 2023-08-08 13:37:43.850653 comef 7636 R rec 6d37f397-2c09-437a-aca8-ca7ed6d99c36 -2023-08-08 13:37:43.90102 2023-08-08 13:37:43.901025 comef 7637 R rec ac4deab1-4d2c-4ab1-97cf-92abfc7bc1d4 -2023-08-08 13:37:43.955012 2023-08-08 13:37:43.955018 comef 7638 R rec 4c1e92a2-ea24-4108-971d-926156ce0404 -2023-08-08 13:37:44.004364 2023-08-08 13:37:44.004369 comef 7639 R rec 4f5da7b6-29e6-4122-a658-e759b1159f9c -2023-08-08 13:37:44.053904 2023-08-08 13:37:44.05391 comef 7640 R rec 6dd1c277-569a-4c7a-9f14-33acd19f2b44 -2023-08-08 13:37:44.101281 2023-08-08 13:37:44.101286 comef 7641 R rec 755eebcb-13f4-4479-91ec-b0395543b012 -2023-08-08 13:37:44.196578 2023-08-08 13:37:44.196583 comef 7642 R rec ca35f295-1829-46fa-9880-e028d4c61222 -2023-08-08 13:37:44.26658 2023-08-08 13:37:44.266585 comef 7643 R rec b3a49bd1-d401-450b-94e1-63ab21c581de -2023-08-08 13:37:44.336164 2023-08-08 13:37:44.336169 comef 7644 R rec 4549e154-3034-421a-9aed-6ed29a0c07c3 -2023-08-08 13:37:44.428598 2023-08-08 13:37:44.428608 comef 7645 R rec b7ab1b6b-92e4-4405-8e10-7c4c57b0cd08 -2023-08-08 13:37:44.512301 2023-08-08 13:37:44.512306 comef 7646 R rec 39135e2c-47bb-4c92-acbd-76b4b6138767 -2023-08-08 13:37:44.569712 2023-08-08 13:37:44.569717 comef 7647 R rec 851963c3-1071-4504-9da8-c4dfa7c15d6b -2023-08-08 13:37:44.64803 2023-08-08 13:37:44.64804 comef 7648 R rec 059d275a-e46b-48f2-891e-269299df5c91 -2023-08-08 13:37:44.740255 2023-08-08 13:37:44.740261 comef 7649 R rec 48ff51f2-ef34-42c7-a91d-007dc2b4f457 -2023-08-08 13:37:44.826178 2023-08-08 13:37:44.826188 comef 7650 R rec f54c096a-d7b7-4c7b-966d-160df478cb57 -2023-08-08 13:37:44.903526 2023-08-08 13:37:44.903532 comef 7651 R rec 22bac894-4c43-47ed-8475-894413361eb7 -2023-08-08 13:37:44.952125 2023-08-08 13:37:44.95213 comef 7652 R rec 2b3b6878-5cdd-4b8e-a5a2-fe0b25c84f9a -2023-08-08 13:37:45.00034 2023-08-08 13:37:45.000345 comef 7653 R rec e863b70b-712e-4abf-91e0-b95ee33701a6 -2023-08-08 13:37:45.049646 2023-08-08 13:37:45.04965 comef 7654 R rec 17dcc87d-1971-4a04-9c1d-7b3fe5cb84fe -2023-08-08 13:37:45.099361 2023-08-08 13:37:45.099366 comef 7655 R rec 104b08ff-9911-4369-9620-5819355ef3c0 -2023-08-08 13:37:45.176221 2023-08-08 13:37:45.176258 comef 7656 R rec 4dcc1695-5711-405a-8207-ca60a97f92c7 -2023-08-08 13:37:45.251166 2023-08-08 13:37:45.251175 comef 7657 R rec 67ccc89c-6997-4467-8647-824ca3322f45 -2023-08-08 13:37:45.33466 2023-08-08 13:37:45.334665 comef 7658 R rec e345602c-cc2d-4856-8aa1-e921fe826cda -2023-08-08 13:37:45.4079 2023-08-08 13:37:45.40791 comef 7659 R rec a293661b-ec3f-40a1-8c2e-3ad4835f98e8 -2023-08-08 13:37:45.498807 2023-08-08 13:37:45.498818 comef 7660 R rec 43f5a1dc-1e9d-465b-887c-02d054f34d3e -2023-08-08 13:37:45.567593 2023-08-08 13:37:45.567604 comef 7661 R rec cf803ed6-f82c-443f-b4fb-9f660c516c3f -2023-08-08 13:37:45.643202 2023-08-08 13:37:45.643207 comef 7662 R rec e1cbc25a-a3e9-44ef-bcb9-e6da1292fffd -2023-08-08 13:37:45.719708 2023-08-08 13:37:45.719719 comef 7663 R rec b9572912-7147-4a40-9b84-f024ad69cc86 -2023-08-08 13:37:45.786584 2023-08-08 13:37:45.786594 comef 7664 R rec cb42f09b-af79-43a3-bf10-c1cfb0db8ea0 -2023-08-08 13:37:45.877055 2023-08-08 13:37:45.877065 comef 7665 R rec 233b4c4d-9d19-4a49-a5b2-cf9d4046902b -2023-08-08 13:37:45.942227 2023-08-08 13:37:45.942231 comef 7666 R rec 1121b49e-e03c-4575-b6de-05191dc413f3 -2023-08-08 13:37:45.997861 2023-08-08 13:37:45.997866 comef 7667 R rec 5fcf2cb8-d623-441b-af8e-e4ee229b0f7a -2023-08-08 13:37:46.070719 2023-08-08 13:37:46.070724 comef 7668 R rec f48d693e-74bd-4a88-8ea2-6d2b5a50cbbc -2023-08-08 13:37:46.133061 2023-08-08 13:37:46.133066 comef 7669 R rec 3d09a94f-36c0-4627-af2a-d8a68a74b39c -2023-08-08 13:37:46.212606 2023-08-08 13:37:46.212615 comef 7670 R rec 6ec0da4a-6f4d-4d17-8f6f-1139eceeb622 -2023-08-08 13:37:46.284462 2023-08-08 13:37:46.284472 comef 7671 R rec 2a946ae6-1233-4707-a81a-4b8aba9835f6 -2023-08-08 13:37:46.377729 2023-08-08 13:37:46.377738 comef 7672 R rec 66620b9b-cc51-4a12-83e9-97d9d4079e37 -2023-08-08 13:37:46.478597 2023-08-08 13:37:46.478601 comef 7673 R rec 9df43341-cbcb-43d3-bd1a-3fe8810be304 -2023-08-08 13:37:46.60151 2023-08-08 13:37:46.601515 comef 7674 R rec 3c541718-d121-472b-90bf-f299cda14cd4 -2023-08-08 13:37:46.655237 2023-08-08 13:37:46.655243 comef 7675 R rec 731eaf1a-bd59-4d1e-ad9d-353cb8b8503a -2023-08-08 13:37:46.70527 2023-08-08 13:37:46.705275 comef 7676 R rec b10f8e16-de18-4db4-a112-96a3b1fc4da6 -2023-08-08 13:37:46.758536 2023-08-08 13:37:46.758541 comef 7677 R rec e123ee67-cf0f-4ef1-92db-ddb2b8a8d397 -2023-08-08 13:37:46.807967 2023-08-08 13:37:46.807973 comef 7678 R rec 21b56b3b-7eac-4c57-b484-3cbabf894885 -2023-08-08 13:37:46.876343 2023-08-08 13:37:46.876354 comef 7679 R rec ecd657a6-0ea1-4236-a251-5fa37c771c18 -2023-08-08 13:37:46.949674 2023-08-08 13:37:46.94968 comef 7680 R rec 80ecbe01-8a06-4153-b551-635f2709e5d2 -2023-08-08 13:37:46.999744 2023-08-08 13:37:46.999749 comef 7681 R rec f8cecbca-4916-466f-9fea-503350d53a94 -2023-08-08 13:37:47.049429 2023-08-08 13:37:47.049435 comef 7682 R rec bac34b31-078e-4d3c-9c12-bbf23c181aa7 -2023-08-08 13:37:47.101284 2023-08-08 13:37:47.101289 comef 7683 R rec 5bf206ea-0165-4c14-b9b1-a25dcff96f1e -2023-08-08 13:37:47.161072 2023-08-08 13:37:47.161078 comef 7684 R rec 216e2e0c-550e-4b3d-8c03-b7f0e114191a -2023-08-08 13:37:47.224091 2023-08-08 13:37:47.224101 comef 7685 R rec 9ee598f4-1aae-4869-b4d0-38933dab1699 -2023-08-08 13:37:47.315669 2023-08-08 13:37:47.315678 comef 7686 R rec 22989a74-d1a3-46b0-9d9e-b625f5be790a -2023-08-08 13:37:47.412085 2023-08-08 13:37:47.412091 comef 7687 R rec 19cc18dc-3724-4051-b098-6fd9b597fdb5 -2023-08-08 13:37:47.497632 2023-08-08 13:37:47.497641 comef 7688 R rec 1902c6a4-2b53-4771-bcea-5d832dd96c6c -2023-08-08 13:37:47.566219 2023-08-08 13:37:47.56623 comef 7689 R rec df5793a7-e4bb-42c8-b795-a4f8db244f80 -2023-08-08 13:37:47.643521 2023-08-08 13:37:47.643526 comef 7690 R rec 58031939-8da6-4655-b34c-20fcdddb6655 -2023-08-08 13:37:47.728826 2023-08-08 13:37:47.728836 comef 7691 R rec cdb25056-a2dc-4ca7-a7eb-20a02bb98a3b -2023-08-08 13:37:47.818751 2023-08-08 13:37:47.818756 comef 7692 R rec 3f594464-40a2-4080-94db-4ca026b06a87 -2023-08-08 13:37:47.898225 2023-08-08 13:37:47.898236 comef 7693 R rec a92b492b-f821-4664-85b3-e6217b8c1430 -2023-08-08 13:37:47.992677 2023-08-08 13:37:47.992683 comef 7694 R rec fbb9e8a7-929b-44d9-8a15-b940fef271cf -2023-08-08 13:37:48.04812 2023-08-08 13:37:48.048126 comef 7695 R rec ad950c43-b50c-4670-80c1-d9ee15b1e4a9 -2023-08-08 13:37:48.09773 2023-08-08 13:37:48.097735 comef 7696 R rec 14d5939d-df82-4739-b16f-a709c1d161b4 -2023-08-08 13:37:48.147804 2023-08-08 13:37:48.147809 comef 7697 R rec 0e1453e1-ba61-4837-8f80-2e1dfb153137 -2023-08-08 13:37:48.197077 2023-08-08 13:37:48.197082 comef 7698 R rec 764bc049-ccb9-404e-bf3f-6f86e4a40288 -2023-08-08 13:37:48.262013 2023-08-08 13:37:48.262023 comef 7699 R rec e0aca4e3-c0f7-486b-9141-3b0823b304bd -2023-08-08 13:37:48.344183 2023-08-08 13:37:48.344188 comef 7700 R rec 03477155-75c1-4c5e-9f17-b1a10780489b -2023-08-08 13:37:48.439868 2023-08-08 13:37:48.439879 comef 7701 R rec a21f9b55-3ee5-4c26-988d-033cbf34422c -2023-08-08 13:37:48.534318 2023-08-08 13:37:48.534324 comef 7702 R rec 91660634-6651-4cc7-97b0-eb39fa6e3ee9 -2023-08-08 13:37:48.588659 2023-08-08 13:37:48.588666 comef 7703 R rec b2fa2e60-0e8d-4930-98b7-cfb96fbc9559 -2023-08-08 13:37:48.663348 2023-08-08 13:37:48.663353 comef 7704 R rec 7308a3cf-78d2-4a11-9dac-ca211c2e397c -2023-08-08 13:37:48.727902 2023-08-08 13:37:48.727913 comef 7705 R rec 353c9a96-48d0-44a1-9e22-ede7327ab0a5 -2023-08-08 13:37:48.79574 2023-08-08 13:37:48.795745 comef 7706 R rec 16e523a9-9e19-4607-9405-8e20fb403f96 -2023-08-08 13:37:48.875379 2023-08-08 13:37:48.87539 comef 7707 R rec f2cee243-53d1-4bc3-9f47-a7699b1554aa -2023-08-08 13:37:48.959859 2023-08-08 13:37:48.959871 comef 7708 R rec cb10ddc8-a479-4a9a-8182-8c151e326480 -2023-08-08 13:37:49.033822 2023-08-08 13:37:49.033828 comef 7709 R rec acf96121-3580-4e30-8970-d947e7dc940a -2023-08-08 13:37:49.08522 2023-08-08 13:37:49.085224 comef 7710 R rec d5edbfda-ffe7-4ccb-8ad7-73ea711398d5 -2023-08-08 13:37:49.140097 2023-08-08 13:37:49.140102 comef 7711 R rec 19a71ea0-734f-48a1-b4ca-a6452fd6082e -2023-08-08 13:37:49.190277 2023-08-08 13:37:49.190282 comef 7712 R rec 5bdd9117-818a-4af4-9a5c-447e30197f4e -2023-08-08 13:37:49.239146 2023-08-08 13:37:49.239151 comef 7713 R rec e8ac26df-301a-4b41-8d4c-98b8c55b79fd -2023-08-08 13:37:49.307036 2023-08-08 13:37:49.307041 comef 7714 R rec d6809a2c-da1f-4c86-8f6f-ef5450d3714f -2023-08-08 13:37:49.387565 2023-08-08 13:37:49.387576 comef 7715 R rec ae7a8ede-87e9-4169-bafb-a3c14bff5c85 -2023-08-08 13:37:49.471226 2023-08-08 13:37:49.471237 comef 7716 R rec 838e2256-a0a0-4ba6-aff7-3b75c5f29e28 -2023-08-08 13:37:49.549412 2023-08-08 13:37:49.549417 comef 7717 R rec 387cec39-4b37-4203-8f88-7b6d8670d23c -2023-08-08 13:37:49.610558 2023-08-08 13:37:49.610567 comef 7718 R rec 855c9e44-cda5-4acd-bc59-d87a037c349d -2023-08-08 13:37:49.686044 2023-08-08 13:37:49.686054 comef 7719 R rec 8151e4f7-887a-40f7-947f-c40f44d2ce16 -2023-08-08 13:58:50.958475 2023-08-08 13:58:50.958481 comef 7720 R rec 8bff9b3b-2c5a-4804-ba5a-38ce0adf7fc2 -2023-08-08 14:25:02.86535 2023-08-08 14:25:02.865356 comef 7721 R rec e295686d-6066-4d99-8484-d21d23b83aa9 -2023-08-08 14:25:03.926601 2023-08-08 14:25:03.926606 comef 7722 R rec a80c2da0-17c0-4fbd-9d3f-51282925c992 -2023-08-08 14:25:04.640065 2023-08-08 14:25:04.640071 comef 7723 R rec 892fb8f9-9a56-4b5e-b3af-db4fbb1f82e6 -2023-08-08 14:28:41.239838 2023-08-08 14:28:41.239843 comef 7724 R rec 2d4709b8-ad81-4362-903b-32399f268796 -2023-08-08 14:28:41.331306 2023-08-08 14:28:41.331316 comef 7725 R rec 2e8b0c96-beec-43c1-8b98-b7f3baac4af0 -2023-08-08 14:28:41.446514 2023-08-08 14:28:41.446523 comef 7726 R rec d36eeeff-88fd-488c-b7bf-280681988ffb -2023-08-08 14:28:41.553347 2023-08-08 14:28:41.553356 comef 7727 R rec 696ee35a-b84e-4475-ac7c-2a7418c689ff -2023-08-08 14:28:41.642632 2023-08-08 14:28:41.642638 comef 7728 R rec ad5a0f1b-4daf-4a71-ba28-1944f187f8a4 -2023-08-08 14:28:41.715463 2023-08-08 14:28:41.715468 comef 7729 R rec c9b23c02-5928-41c4-9900-87481ee4e979 -2023-08-08 14:28:41.810295 2023-08-08 14:28:41.810304 comef 7730 R rec 36b7ddb8-1360-4298-ac11-fceea2de1211 -2023-08-08 14:28:41.922236 2023-08-08 14:28:41.922245 comef 7731 R rec a70543e2-4d56-4f75-8237-f23a52f18323 -2023-08-08 14:28:42.063806 2023-08-08 14:28:42.063815 comef 7732 R rec 14c73725-2e49-44f9-b6df-acba7c16f36a -2023-08-08 14:28:42.201709 2023-08-08 14:28:42.201719 comef 7733 R rec 0238264a-f796-485c-9011-df17ab4da39a -2023-08-08 14:28:42.305227 2023-08-08 14:28:42.305238 comef 7734 R rec 479c9c0e-7451-46c4-8cf2-99b85fe160cd -2023-08-08 14:28:44.034842 2023-08-08 14:28:44.034847 comef 7735 R rec bafdc96a-513e-4f42-9527-fc1e7b22f742 -2023-08-08 14:28:44.095483 2023-08-08 14:28:44.095489 comef 7736 R rec 82ed0355-eb9c-4a56-82d7-e08dee0f0d79 -2023-08-08 14:28:44.905897 2023-08-08 14:28:44.905903 comef 7737 R rec f97a0146-10fe-4f71-b2b1-f17528df368b -2023-08-08 14:28:46.94848 2023-08-08 14:28:46.948486 comef 7738 R rec 376ad966-bd76-4630-89d3-a7d546cc9907 -2023-08-08 14:34:56.707342 2023-08-08 14:34:56.707347 comef 7739 R rec dcb128a3-6cdb-4c5e-8559-5c7b553225d3 -2023-08-08 14:34:56.76983 2023-08-08 14:34:56.769835 comef 7740 R rec e40d9c38-9beb-470f-97cc-03021e6a3b22 -2023-08-08 14:34:56.842848 2023-08-08 14:34:56.84286 comef 7741 R rec 9e94b9ae-91a9-44a9-a965-01162b96c0ae -2023-08-08 14:34:56.934392 2023-08-08 14:34:56.934398 comef 7742 R rec ee314be9-fca0-4178-bcf5-3d717870a07b -2023-08-08 14:36:35.733396 2023-08-08 14:36:35.733407 comef 7743 R rec b78ec242-ad8b-401d-9a57-91e0aadf923f -2023-08-08 14:36:35.854413 2023-08-08 14:36:35.854425 comef 7744 R rec bc8be94c-afef-480e-ba9f-f2d5fa63edf7 -2023-08-08 14:36:35.96095 2023-08-08 14:36:35.960963 comef 7745 R rec a3682979-0d5e-4f11-acbb-7871afec1556 -2023-08-08 14:36:36.073027 2023-08-08 14:36:36.073038 comef 7746 R rec 394db9a3-95e7-41ee-8cfc-a8dadb5f83aa -2023-08-08 14:36:36.203807 2023-08-08 14:36:36.203813 comef 7747 R rec d5d67c0f-776e-43ff-84fc-a64aeaf51799 -2023-08-08 14:36:36.284804 2023-08-08 14:36:36.28481 comef 7748 R rec 306b9c23-37e6-4849-804a-9f2e87704569 -2023-08-08 14:36:36.363197 2023-08-08 14:36:36.363208 comef 7749 R rec f4c85e77-147e-4c59-8999-6415246ae352 -2023-08-08 14:36:36.476072 2023-08-08 14:36:36.476083 comef 7750 R rec 43802f0e-f47d-4fe9-83c9-4d6b0fb58063 -2023-08-08 14:36:36.572015 2023-08-08 14:36:36.572025 comef 7751 R rec 89c8937b-c705-454c-89d7-5fe938a7527f -2023-08-08 14:36:36.682646 2023-08-08 14:36:36.682659 comef 7752 R rec 9272701a-5ee8-4663-b6b1-cb93ed4c0722 -2023-08-08 14:36:36.786868 2023-08-08 14:36:36.786878 comef 7753 R rec 3f459919-76c6-43c3-9652-7a273abc376f -2023-08-08 14:36:36.89413 2023-08-08 14:36:36.894141 comef 7754 R rec 1abdcaca-15d8-40a0-a6d5-dc1a2fd51e5c -2023-08-08 14:36:36.988201 2023-08-08 14:36:36.988212 comef 7755 R rec 97b2d58a-5b93-4c4f-8263-9631647dc47f -2023-08-08 14:36:37.110764 2023-08-08 14:36:37.110769 comef 7756 R rec 13e9a046-350c-4b68-a8fe-f7914dee6999 -2023-08-08 14:36:37.219051 2023-08-08 14:36:37.219061 comef 7757 R rec b0813bc1-52c9-489b-93c7-3d8ddc11a052 -2023-08-08 14:36:37.285607 2023-08-08 14:36:37.285613 comef 7758 R rec 8c354710-957d-4aee-a5d5-d542ddf781bd -2023-08-08 14:36:37.340514 2023-08-08 14:36:37.340519 comef 7759 R rec 2270ca85-22aa-48da-906c-e39036f98914 -2023-08-08 14:36:37.436449 2023-08-08 14:36:37.436454 comef 7760 R rec 9310c32d-b705-4e32-ab59-20fa0fcd2629 -2023-08-08 14:36:37.531032 2023-08-08 14:36:37.531043 comef 7761 R rec 85430101-9910-4f18-bbbe-a1ee2ee7bfc7 -2023-08-08 14:36:37.623532 2023-08-08 14:36:37.623545 comef 7762 R rec bd27440b-3f01-4863-9e47-c5f53386c627 -2023-08-08 14:36:37.767497 2023-08-08 14:36:37.767508 comef 7763 R rec 8ab079ef-cc26-4d10-b6f7-41780d1f560e -2023-08-08 14:36:37.879376 2023-08-08 14:36:37.87939 comef 7764 R rec 167a1116-7ade-475a-b316-ed8d69df3ebd -2023-08-08 14:36:37.983478 2023-08-08 14:36:37.983489 comef 7765 R rec 818e8317-16bb-472d-8282-65883653864f -2023-08-08 14:36:38.088662 2023-08-08 14:36:38.088673 comef 7766 R rec 73c8e684-ba34-4d74-8b91-caf70095e300 -2023-08-08 14:36:38.210347 2023-08-08 14:36:38.210358 comef 7767 R rec 5447671e-7916-42ac-81dd-04d330b761ac -2023-08-08 14:36:38.303053 2023-08-08 14:36:38.30306 comef 7768 R rec 09d3f034-cd60-455c-b62e-746496d10044 -2023-08-08 14:36:38.355756 2023-08-08 14:36:38.355762 comef 7769 R rec 36eabe3e-46e9-47b1-92e8-4f32496971fb -2023-08-08 14:36:38.42636 2023-08-08 14:36:38.426371 comef 7770 R rec 8b73fdc1-d344-40e2-ae45-1470083d8d96 -2023-08-08 14:36:38.555968 2023-08-08 14:36:38.555978 comef 7771 R rec b1dd8c85-01da-43d7-84ca-231ca8345bc7 -2023-08-08 14:36:38.66858 2023-08-08 14:36:38.66859 comef 7772 R rec 239ffbc4-cfb2-48bb-933b-66c2264b784b -2023-08-08 14:36:38.752005 2023-08-08 14:36:38.752038 comef 7773 R rec 5f6647e3-d960-4548-a625-09e4d51bf593 -2023-08-08 14:36:38.85327 2023-08-08 14:36:38.853281 comef 7774 R rec 8902a539-e780-4524-87ed-511f50e6907d -2023-08-08 14:36:38.972938 2023-08-08 14:36:38.972949 comef 7775 R rec d684b0ef-15c1-4a3f-b042-c0c1d18b4cd8 -2023-08-08 14:36:39.065699 2023-08-08 14:36:39.065704 comef 7776 R rec 2fef4594-ce29-424a-a22e-5b4aac2bbac7 -2023-08-08 14:36:39.158091 2023-08-08 14:36:39.158103 comef 7777 R rec 3a18a460-bbe9-4b1d-8c41-63ee3d5c4126 -2023-08-08 14:36:39.265805 2023-08-08 14:36:39.265816 comef 7778 R rec 16f5c0ea-15ee-4284-a11d-abdb9af053f2 -2023-08-08 14:36:39.356405 2023-08-08 14:36:39.35641 comef 7779 R rec 6d14c140-d584-4e55-b254-ffc39373fdb6 -2023-08-08 14:36:39.415002 2023-08-08 14:36:39.415008 comef 7780 R rec 2046f95d-300e-4af2-a793-9c7f15e8fd64 -2023-08-08 14:36:39.472498 2023-08-08 14:36:39.472503 comef 7781 R rec 47c53fd6-544a-47e0-8e0b-f8c838b0d0e9 -2023-08-08 14:36:39.559516 2023-08-08 14:36:39.559525 comef 7782 R rec 69847111-2fe1-44b3-9abd-7061a5536944 -2023-08-08 14:36:39.668238 2023-08-08 14:36:39.668248 comef 7783 R rec b25b5547-24fc-4271-8c79-bbc0dec5c75c -2023-08-08 14:36:39.787683 2023-08-08 14:36:39.787694 comef 7784 R rec 702cf5d0-fe7a-4112-ab4b-0afe113b998f -2023-08-08 14:36:39.886744 2023-08-08 14:36:39.886755 comef 7785 R rec 35a9743c-47cb-417b-9e39-2c45372d48a7 -2023-08-08 14:36:40.001952 2023-08-08 14:36:40.001962 comef 7786 R rec e59bb711-dceb-47bd-ba15-c5e2458f33eb -2023-08-08 14:36:40.089726 2023-08-08 14:36:40.089732 comef 7787 R rec f4f6e438-7e6a-438c-b193-d1ecfe91b072 -2023-08-08 14:36:40.205383 2023-08-08 14:36:40.205394 comef 7788 R rec b706a1aa-6d73-4f71-a8aa-a9ff92cf1d6e -2023-08-08 14:36:40.316571 2023-08-08 14:36:40.316582 comef 7789 R rec cf3717b6-14b5-4180-a344-bec25a36f9b5 -2023-08-08 14:36:40.405596 2023-08-08 14:36:40.405602 comef 7790 R rec 0ad21465-2fc5-48d8-80a1-f8dd5e043526 -2023-08-08 14:36:40.466216 2023-08-08 14:36:40.466222 comef 7791 R rec 919c237f-91cd-4bbf-afe3-76e4c84d0fbf -2023-08-08 14:36:40.573584 2023-08-08 14:36:40.573598 comef 7792 R rec e84589ef-7dc1-422e-b877-b56f40d65f14 -2023-08-08 14:36:40.670728 2023-08-08 14:36:40.670739 comef 7793 R rec 7eac9c26-e599-4702-af5d-6087547d5883 -2023-08-08 14:36:40.783566 2023-08-08 14:36:40.783576 comef 7794 R rec 1b8adf9f-d49a-478c-9284-cc35a2fa7cf3 -2023-08-08 14:36:40.881976 2023-08-08 14:36:40.881989 comef 7795 R rec 5e21ea2e-94b4-4c12-90fe-070119e9931c -2023-08-08 14:36:41.006087 2023-08-08 14:36:41.006098 comef 7796 R rec dfadb56d-388f-4cc3-84c7-90dc09e1801f -2023-08-08 14:36:41.119613 2023-08-08 14:36:41.119626 comef 7797 R rec 238f312c-ddaf-41a8-a388-de711964f81a -2023-08-08 14:36:41.236074 2023-08-08 14:36:41.236086 comef 7798 R rec 60fb4eb1-3db2-4a2a-846f-1a4890eb1d05 -2023-08-08 14:36:41.339056 2023-08-08 14:36:41.339067 comef 7799 R rec 436e4ae2-638a-4187-b04a-887161e7c2a8 -2023-08-08 14:36:41.443884 2023-08-08 14:36:41.44389 comef 7800 R rec 3b24277c-7103-4694-93b5-65da2e4082e9 -2023-08-08 14:36:41.496622 2023-08-08 14:36:41.496627 comef 7801 R rec b8a8c575-beb2-4bb3-806f-90e3d0082f80 -2023-08-08 14:36:41.549619 2023-08-08 14:36:41.549624 comef 7802 R rec c0dbc979-5108-452b-bb4b-d93d5c4c8e36 -2023-08-08 14:36:41.659703 2023-08-08 14:36:41.659714 comef 7803 R rec 74f8379f-33a8-47ac-9e8b-7f1d57d5a203 -2023-08-08 14:36:42.105514 2023-08-08 14:36:42.105525 comef 7804 R rec 28efaa8a-eb2b-49eb-b127-1fad37e16f30 -2023-08-08 14:36:42.227393 2023-08-08 14:36:42.227403 comef 7805 R rec c40e01ae-d512-4e13-b269-50fb8eff170c -2023-08-08 14:36:42.331129 2023-08-08 14:36:42.33114 comef 7806 R rec b4a42e5c-b1d0-4421-a182-0d3acd574591 -2023-08-08 14:36:42.441829 2023-08-08 14:36:42.44184 comef 7807 R rec bac82173-a335-4592-9bcd-697a07bef24a -2023-08-08 14:36:42.501698 2023-08-08 14:36:42.501704 comef 7808 R rec 8daa95ea-373a-405e-9e96-0e054447e1ba -2023-08-08 14:36:42.553433 2023-08-08 14:36:42.553438 comef 7809 R rec d0f49800-b2af-4a42-9ae6-6543e6e63c49 -2023-08-08 14:36:42.607906 2023-08-08 14:36:42.607911 comef 7810 R rec f0d5ac4a-f16e-43e6-a31c-bee489b94bcc -2023-08-08 14:36:42.697574 2023-08-08 14:36:42.697586 comef 7811 R rec ec3b8470-ed6f-440b-9189-5270a23ff82c -2023-08-08 14:36:42.801602 2023-08-08 14:36:42.801613 comef 7812 R rec ba5613ec-8340-4524-a7cf-26c0dc56b317 -2023-08-08 14:36:42.921049 2023-08-08 14:36:42.921062 comef 7813 R rec 209aeebc-6cd3-43c1-b0c9-f7e235041d38 -2023-08-08 14:36:43.010377 2023-08-08 14:36:43.010387 comef 7814 R rec 82178c90-c7c3-4064-937b-c14673fd70e9 -2023-08-08 14:36:44.010568 2023-08-08 14:36:44.010573 comef 7815 R rec e9b2c4a2-2d24-47a8-bc4f-dab9da77c087 +2024-09-11 09:08:05.685458 2024-09-11 09:08:05.685464 comef 7523 R rec 60c90fa0-ca00-4129-997a-8f80285a6a41 +2024-09-11 09:08:05.75557 2024-09-11 09:08:05.755575 comef 7524 R rec 68fb8bb7-cd92-47fc-b468-a1aa511b72ec +2024-09-11 09:08:05.80942 2024-09-11 09:08:05.809426 comef 7525 R rec 2bb8934f-4f04-48fa-9c55-12e3ee9a2ba2 +2024-09-11 09:08:05.864032 2024-09-11 09:08:05.864039 comef 7526 R rec c5a8076f-ab0a-4886-b6c5-26987ddf5847 +2024-09-11 09:08:05.917281 2024-09-11 09:08:05.917288 comef 7527 R rec 1a1c7389-7604-49c1-9632-f54f8b37d975 +2024-09-11 09:08:05.969197 2024-09-11 09:08:05.969202 comef 7528 R rec 9d35fa7d-9043-4498-817c-a8715ff2b510 +2024-09-11 09:08:06.023183 2024-09-11 09:08:06.023189 comef 7529 R rec 262d8153-6369-44b6-838e-f211feb40858 +2024-09-11 09:08:06.079449 2024-09-11 09:08:06.079455 comef 7530 R rec 54f4e316-5154-475a-a162-b5233b40fcd3 +2024-09-11 09:08:06.131353 2024-09-11 09:08:06.131359 comef 7531 R rec 55044a1d-4d80-43b3-8e53-a85177f88b10 +2024-09-11 09:08:06.181047 2024-09-11 09:08:06.181052 comef 7532 R rec a40f3726-ce43-4f09-b219-8883e03fdb4d +2024-09-11 09:08:06.226482 2024-09-11 09:08:06.226487 comef 7533 R rec e07423fa-381a-47d5-ab1c-8767a416305e +2024-09-11 09:08:06.275217 2024-09-11 09:08:06.275223 comef 7534 R rec 662f134b-8680-4463-8775-7b8bfa3804b2 +2024-09-11 09:08:06.323594 2024-09-11 09:08:06.323599 comef 7535 R rec efe35257-bdb6-4fb2-91dd-0853e70addd5 +2024-09-11 09:08:06.37075 2024-09-11 09:08:06.370756 comef 7536 R rec aeaaebe0-d823-495e-aefd-a5c56c960c5b +2024-09-11 09:08:06.4217 2024-09-11 09:08:06.421705 comef 7537 R rec 1da1d468-42eb-4808-8404-d473fd89b285 +2024-09-11 09:08:06.470726 2024-09-11 09:08:06.470732 comef 7538 R rec 5ede6751-8cf7-489d-beac-91c5bd69f64a +2024-09-11 09:08:06.523847 2024-09-11 09:08:06.523853 comef 7539 R rec 15019c5f-cbe4-44c3-bdc9-f68c658a9dd6 +2024-09-11 09:08:06.574209 2024-09-11 09:08:06.574215 comef 7540 R rec 767ac92b-9678-4510-a74b-1f56ce5e53e7 +2024-09-11 09:08:06.635465 2024-09-11 09:08:06.635471 comef 7541 R rec 390e8b08-138e-4109-b8a4-e321de6de7a7 +2024-09-11 09:08:06.687248 2024-09-11 09:08:06.687255 comef 7542 R rec f0582a61-9b41-4282-8507-be1434980f0c +2024-09-11 09:08:08.580881 2024-09-11 09:08:08.580886 comef 7543 R rec e7bf15e8-3711-4e71-a37b-c08c9f70837c +2024-09-11 09:08:08.65503 2024-09-11 09:08:08.655035 comef 7544 R rec 58ed918e-ffab-4769-8e7e-066778bc47db +2024-09-11 09:08:08.726544 2024-09-11 09:08:08.72655 comef 7545 R rec a6f27df7-0d4b-48c8-8dec-56ed6d708192 +2024-09-11 09:08:08.797878 2024-09-11 09:08:08.797884 comef 7546 R rec eb02a2cc-5505-4965-b01d-259d1638ad5e +2024-09-11 09:08:08.852432 2024-09-11 09:08:08.852439 comef 7547 R rec 597bcb16-4945-417a-9d22-6b48bf7dc7e3 +2024-09-11 09:08:08.907298 2024-09-11 09:08:08.907303 comef 7548 R rec 8057f0af-3949-4a84-b6c1-87ec889ef846 +2024-09-11 09:08:08.966783 2024-09-11 09:08:08.966788 comef 7549 R rec 258999cb-9084-407d-98d9-582adc655b1c +2024-09-11 09:08:09.022443 2024-09-11 09:08:09.022448 comef 7550 R rec 8126f6ed-ea25-4de6-b7ae-542eb1c262d5 +2024-09-11 09:08:09.075759 2024-09-11 09:08:09.075764 comef 7551 R rec bde06283-3b75-4fbd-a159-7a9c1136fadb +2024-09-11 09:08:09.129994 2024-09-11 09:08:09.129999 comef 7552 R rec c0994b6f-f11e-4fd7-9e22-061a9af2249b +2024-09-11 09:08:09.186523 2024-09-11 09:08:09.186528 comef 7553 R rec fa8df2d5-b120-49da-91ec-71871a12aa3b +2024-09-11 09:08:09.239793 2024-09-11 09:08:09.239797 comef 7554 R rec 8d8aa11e-2388-49a5-a121-276c4f3cd52e +2024-09-11 09:08:09.296286 2024-09-11 09:08:09.296291 comef 7555 R rec 240a40a5-e589-4505-be9c-ec89cf5224d5 +2024-09-11 09:08:09.346904 2024-09-11 09:08:09.346909 comef 7556 R rec 15c2fac6-82e3-411f-9aa1-481b1ece8d88 +2024-09-11 09:08:09.40353 2024-09-11 09:08:09.403534 comef 7557 R rec e01ad29a-9181-4189-b7e4-9f04478c08cc +2024-09-11 09:08:09.457662 2024-09-11 09:08:09.457668 comef 7558 R rec 99c6ab62-477f-4f65-8154-b928d7b1b774 +2024-09-11 09:08:09.552772 2024-09-11 09:08:09.552778 comef 7559 R rec c890f4a5-7a0a-423d-8b75-3c78f7a0f07f +2024-09-11 09:08:09.607261 2024-09-11 09:08:09.607266 comef 7560 R rec 47fb59bb-000e-46ff-b42e-4c2dd15a5ed9 +2024-09-11 09:08:09.659392 2024-09-11 09:08:09.659398 comef 7561 R rec 8e32a2cd-7bb1-461a-9300-0fb5195fbbe6 +2024-09-11 09:08:09.715808 2024-09-11 09:08:09.715812 comef 7562 R rec 64e5dba3-ca7a-43d8-b1d9-ca0236941f16 +2024-09-11 09:08:09.768551 2024-09-11 09:08:09.768556 comef 7563 R rec ebfbcf18-bbe8-424c-b8c4-eaf8f23fee2d +2024-09-11 09:08:09.827653 2024-09-11 09:08:09.827658 comef 7564 R rec eac29314-94e5-4a28-8a52-f3aeb71a1eee +2024-09-11 09:08:09.882356 2024-09-11 09:08:09.882361 comef 7565 R rec 4d9c1208-fa20-4aeb-946d-61a2be017eab +2024-09-11 09:08:09.938242 2024-09-11 09:08:09.938247 comef 7566 R rec 84aebe81-0b3c-45d1-a551-afb987e9ae20 +2024-09-11 09:08:09.995204 2024-09-11 09:08:09.995209 comef 7567 R rec 83e5481b-9156-4534-aa1b-3a906620ccc3 +2024-09-11 09:08:10.052687 2024-09-11 09:08:10.052698 comef 7568 R rec 9a8767a0-acf1-46c0-9824-511b64c63264 +2024-09-11 09:08:10.114158 2024-09-11 09:08:10.114164 comef 7569 R rec 8c6f4f60-d25a-4832-87bf-56913bef6bb6 +2024-09-11 09:08:10.165911 2024-09-11 09:08:10.165916 comef 7570 R rec d1d86296-a758-4d97-b5dc-205b7761e2fd +2024-09-11 09:08:10.223189 2024-09-11 09:08:10.223193 comef 7571 R rec fc8bd79a-586d-435b-9443-b3ac47408b98 +2024-09-11 09:08:10.276966 2024-09-11 09:08:10.276971 comef 7572 R rec 93b1ac02-afab-46d3-b4f1-0473046afaa8 +2024-09-11 09:08:10.332107 2024-09-11 09:08:10.332111 comef 7573 R rec 075e3eee-bcdc-46e1-b711-de63677bd701 +2024-09-11 09:08:10.391086 2024-09-11 09:08:10.391092 comef 7574 R rec d940e038-b680-455d-9960-1d8e58c3711e +2024-09-11 09:08:10.448455 2024-09-11 09:08:10.44846 comef 7575 R rec 130a9b46-95a7-4636-af48-dbd6e8a5b826 +2024-09-11 09:08:10.505368 2024-09-11 09:08:10.505373 comef 7576 R rec 3cb85bf3-d73e-47c4-9649-6a10d335b7ce +2024-09-11 09:08:10.561421 2024-09-11 09:08:10.561426 comef 7577 R rec 9776e847-a72e-44db-a9fb-96ca51ef8ba0 +2024-09-11 09:08:10.631082 2024-09-11 09:08:10.631087 comef 7578 R rec 23f82ba9-d93f-4e4e-8ea8-87aba09f4ad2 +2024-09-11 09:08:10.684793 2024-09-11 09:08:10.684799 comef 7579 R rec 55549e85-551d-4657-b329-325da201e516 +2024-09-11 09:08:10.738419 2024-09-11 09:08:10.738424 comef 7580 R rec 01900a18-84cd-4cef-99a2-a422d4f46a04 +2024-09-11 09:08:10.798168 2024-09-11 09:08:10.798173 comef 7581 R rec 04d366f9-da10-43d5-b984-45f643320547 +2024-09-11 09:08:10.852433 2024-09-11 09:08:10.852437 comef 7582 R rec a0c79fe0-af04-44f6-8502-fa1ccbfb3c16 +2024-09-11 09:08:10.908426 2024-09-11 09:08:10.908431 comef 7583 R rec c10e390b-1cf3-4eb3-b8b7-122acf619aae +2024-09-11 09:08:10.961976 2024-09-11 09:08:10.961982 comef 7584 R rec 03e1002f-a359-444a-8bf2-018847c8bd34 +2024-09-11 09:08:11.014227 2024-09-11 09:08:11.014233 comef 7585 R rec 9cede3f8-31af-48df-9d18-1a08178c054b +2024-09-11 09:08:11.070589 2024-09-11 09:08:11.070594 comef 7586 R rec f77a92ca-1332-49a7-8d10-ca98ea017690 +2024-09-11 09:08:11.130773 2024-09-11 09:08:11.130779 comef 7587 R rec 9eeb170a-6cec-4fe5-bed7-8251e5dd28a7 +2024-09-11 09:08:11.187832 2024-09-11 09:08:11.187837 comef 7588 R rec 41820b0b-4e34-4be6-9840-47d8d360b8a9 +2024-09-11 09:08:11.240299 2024-09-11 09:08:11.240303 comef 7589 R rec ae89feb1-bf69-40b3-9246-49399fe2a6bd +2024-09-11 09:08:11.298179 2024-09-11 09:08:11.298184 comef 7590 R rec e272de1e-337a-4b7e-b163-3ad5be70640b +2024-09-11 09:08:11.355251 2024-09-11 09:08:11.355256 comef 7591 R rec d035732b-ead7-4449-9a5b-dfd3ab0df4bf +2024-09-11 09:08:11.415876 2024-09-11 09:08:11.415881 comef 7592 R rec e9eb0805-0b1b-443e-b8e2-f8ee9145d72f +2024-09-11 09:08:11.472566 2024-09-11 09:08:11.472571 comef 7593 R rec 0ee85ce4-d33b-4d64-a692-9035545d1895 +2024-09-11 09:08:11.531215 2024-09-11 09:08:11.53122 comef 7594 R rec 822f421b-2b42-4315-b416-5433a729692a +2024-09-11 09:08:11.589804 2024-09-11 09:08:11.589808 comef 7595 R rec a159e475-45a5-4658-8fd9-89ee51d62055 +2024-09-11 09:08:11.660089 2024-09-11 09:08:11.660094 comef 7596 R rec 8ebf73f3-479f-4484-bddc-7de61ea0e26a +2024-09-11 09:08:11.717148 2024-09-11 09:08:11.717154 comef 7597 R rec 7952685c-ebc1-47e2-b96d-d7d43b8dea73 +2024-09-11 09:08:11.774687 2024-09-11 09:08:11.774693 comef 7598 R rec d003c195-0055-4d43-acbb-9af5c1ef6e2b +2024-09-11 09:08:11.836924 2024-09-11 09:08:11.836929 comef 7599 R rec 0bee8006-4de5-4601-871c-2fc0cf5d0a7a +2024-09-11 09:08:11.89149 2024-09-11 09:08:11.891495 comef 7600 R rec cb424196-2003-465d-b711-ea44a741adc2 +2024-09-11 09:08:11.942354 2024-09-11 09:08:11.942384 comef 7601 R rec d697e602-97bd-48c3-9f8e-ca9b14e663b4 +2024-09-11 09:08:12.000593 2024-09-11 09:08:12.000599 comef 7602 R rec 0b869c3c-3217-41bc-84a8-010f951fa489 +2024-09-11 09:08:12.063659 2024-09-11 09:08:12.063664 comef 7603 R rec 0ce374e5-a058-48c9-8355-3d647321b918 +2024-09-11 09:08:12.119486 2024-09-11 09:08:12.119491 comef 7604 R rec 5d2263ee-063b-445b-92f7-8498b5088bea +2024-09-11 09:08:12.17254 2024-09-11 09:08:12.172544 comef 7605 R rec 697c5072-deb2-4e56-a410-7203f64f3403 +2024-09-11 09:08:12.231619 2024-09-11 09:08:12.231625 comef 7606 R rec bb36c15c-69c6-4eac-bbf2-334337bc8f0b +2024-09-11 09:08:12.294716 2024-09-11 09:08:12.294721 comef 7607 R rec aefd2e24-bab0-4f96-9cb4-73b9e0908c25 +2024-09-11 09:08:12.351401 2024-09-11 09:08:12.351407 comef 7608 R rec 8ee936b4-4833-43fc-8efa-c52dd1b3e56a +2024-09-11 09:08:12.420217 2024-09-11 09:08:12.420223 comef 7609 R rec 9930cba9-a72f-440b-8652-113fe083bf0a +2024-09-11 09:08:12.503796 2024-09-11 09:08:12.5038 comef 7610 R rec 15c6a287-cee8-48d3-8f40-cbc144db557d +2024-09-11 09:08:12.563235 2024-09-11 09:08:12.563241 comef 7611 R rec 3561cbc0-affb-4f73-b17d-632ff771b2d2 +2024-09-11 09:08:12.623386 2024-09-11 09:08:12.623391 comef 7612 R rec 97879e2d-3348-4f78-a0a6-81593bb83feb +2024-09-11 09:08:12.679566 2024-09-11 09:08:12.679572 comef 7613 R rec 38e54d2b-24b4-42f8-8f55-30d08dee2d99 +2024-09-11 09:08:12.73339 2024-09-11 09:08:12.733395 comef 7614 R rec ffb0d518-8384-40df-a926-30b06c54e4a3 +2024-09-11 09:08:12.788533 2024-09-11 09:08:12.788538 comef 7615 R rec 72b7f346-9383-4f19-80dc-48a72ab038a5 +2024-09-11 09:08:12.842851 2024-09-11 09:08:12.842856 comef 7616 R rec eb03e5d4-2ca0-4e7c-a3a4-06baca5f406b +2024-09-11 09:08:12.899099 2024-09-11 09:08:12.899104 comef 7617 R rec 324a302e-8261-43a1-995d-972cc3de6bf7 +2024-09-11 09:08:12.949784 2024-09-11 09:08:12.949788 comef 7618 R rec bd62bfb4-dfa9-44f6-988c-e6bf301a57f6 +2024-09-11 09:08:13.013171 2024-09-11 09:08:13.013176 comef 7619 R rec dd58c0b2-ab14-409f-a688-c8fa4e37975a +2024-09-11 09:08:13.072902 2024-09-11 09:08:13.072907 comef 7620 R rec e8887791-0c61-4f6e-bf2b-037f9f905f11 +2024-09-11 09:08:13.130926 2024-09-11 09:08:13.130932 comef 7621 R rec 88fa9cf1-507d-4b67-8f7a-ddcd6bf7c5dc +2024-09-11 09:08:13.18985 2024-09-11 09:08:13.189855 comef 7622 R rec af8f26f9-ff11-4614-b366-ce84e7670335 +2024-09-11 09:08:13.253077 2024-09-11 09:08:13.253083 comef 7623 R rec 2897e530-09b3-417b-b33a-e091bf32f058 +2024-09-11 09:08:13.307384 2024-09-11 09:08:13.30739 comef 7624 R rec 544b37ad-8908-43ad-a542-b6b707b9261f +2024-09-11 09:08:13.357513 2024-09-11 09:08:13.357518 comef 7625 R rec e242373d-b9ff-4bdd-9f6b-fbb49927c441 +2024-09-11 09:08:13.422222 2024-09-11 09:08:13.422228 comef 7626 R rec 3fa66f91-427e-49d2-811e-efdb57c8fe84 +2024-09-11 09:08:13.486717 2024-09-11 09:08:13.486725 comef 7627 R rec 8c5554d9-3afe-4aaa-b4db-1b0d6f2f05e5 +2024-09-11 09:08:13.542287 2024-09-11 09:08:13.542292 comef 7628 R rec 0a20f7ae-f1c6-41ce-b264-27df8379b081 +2024-09-11 09:08:13.598028 2024-09-11 09:08:13.598034 comef 7629 R rec 46f6c733-e5af-4533-adda-3d34006136a7 +2024-09-11 09:08:13.655857 2024-09-11 09:08:13.655862 comef 7630 R rec d60f395e-0b32-4e02-bb56-c38f5527fc59 +2024-09-11 09:08:13.719111 2024-09-11 09:08:13.719117 comef 7631 R rec 30752f86-9a3e-42ae-867b-fde87efaedc0 +2024-09-11 09:08:13.779172 2024-09-11 09:08:13.779177 comef 7632 R rec e189639a-cf24-4a36-88d7-7a3246bc12bf +2024-09-11 09:08:13.834058 2024-09-11 09:08:13.834063 comef 7633 R rec 0e131dff-8981-4a4c-bb11-d2aa4e41fa8c +2024-09-11 09:08:13.897226 2024-09-11 09:08:13.897232 comef 7634 R rec 239f9920-6533-462e-a8e7-873dffc9579a +2024-09-11 09:08:13.956823 2024-09-11 09:08:13.956828 comef 7635 R rec be159dd6-d42e-42ad-90ae-991180dc8c25 +2024-09-11 09:08:14.009606 2024-09-11 09:08:14.009612 comef 7636 R rec 313aabb6-d1b3-46db-ae46-17d421d118f0 +2024-09-11 09:08:14.06675 2024-09-11 09:08:14.066754 comef 7637 R rec 22a6cd1e-33fa-469e-80c1-8ebbf2147009 +2024-09-11 09:08:14.121138 2024-09-11 09:08:14.121145 comef 7638 R rec 6413247f-274f-4846-b6c2-0e4018715229 +2024-09-11 09:08:14.182158 2024-09-11 09:08:14.182163 comef 7639 R rec 3e6faa32-b9a0-477c-a0e5-93acfd9fa5b5 +2024-09-11 09:08:14.237334 2024-09-11 09:08:14.237339 comef 7640 R rec bb471ea0-d660-4661-9c01-03ea49982735 +2024-09-11 09:08:14.307228 2024-09-11 09:08:14.307233 comef 7641 R rec ad258b45-e832-45f5-9ff9-30b4d375b10e +2024-09-11 09:08:14.371424 2024-09-11 09:08:14.371429 comef 7642 R rec 49742550-7d07-41ef-a2fe-9b4469c58d59 +2024-09-11 09:08:14.428706 2024-09-11 09:08:14.428711 comef 7643 R rec be0a839f-46a6-47bd-9e53-ded4c7bb9ffd +2024-09-11 09:08:14.483837 2024-09-11 09:08:14.483844 comef 7644 R rec 4586e733-9506-45d2-b283-4d3a87d8886c +2024-09-11 09:08:14.537646 2024-09-11 09:08:14.537651 comef 7645 R rec 35288f86-bd34-45ed-81e6-595e05986dce +2024-09-11 09:08:14.602094 2024-09-11 09:08:14.602099 comef 7646 R rec 397e69c9-7ad9-4e0b-aaf1-a66392bc91a5 +2024-09-11 09:08:14.667171 2024-09-11 09:08:14.667176 comef 7647 R rec 1e3b0848-77c9-4cd0-96b2-6b78983b498b +2024-09-11 09:08:14.730814 2024-09-11 09:08:14.73082 comef 7648 R rec 96aadc67-d725-4c29-bfad-5af96fb2a0df +2024-09-11 09:08:14.791046 2024-09-11 09:08:14.791051 comef 7649 R rec aeaba265-1bcb-42d8-ac51-3edb22c6b949 +2024-09-11 09:08:14.846533 2024-09-11 09:08:14.846539 comef 7650 R rec cd120802-be83-45f6-b030-8e1aa2113d2d +2024-09-11 09:08:14.900744 2024-09-11 09:08:14.900749 comef 7651 R rec cd24de49-cb6e-4c08-9cfd-9e6129740272 +2024-09-11 09:08:14.955819 2024-09-11 09:08:14.955824 comef 7652 R rec 0ffd6d84-f92e-48d7-b8ed-b8a1725d3f33 +2024-09-11 09:08:15.012727 2024-09-11 09:08:15.012732 comef 7653 R rec ed5a02d2-1cd2-49f4-9f89-3bccf88014cf +2024-09-11 09:08:15.070072 2024-09-11 09:08:15.070078 comef 7654 R rec 9dc5182d-ef94-47cf-a4e8-3b38b7516822 +2024-09-11 09:08:15.129043 2024-09-11 09:08:15.129049 comef 7655 R rec b32a24d0-eb2a-47f5-8904-feefeffa2cb4 +2024-09-11 09:08:15.190107 2024-09-11 09:08:15.190111 comef 7656 R rec 4974cc23-f10b-481f-b7f4-ae9a4cb61371 +2024-09-11 09:08:15.258584 2024-09-11 09:08:15.258591 comef 7657 R rec c944de77-f3e6-47f1-a553-51dbb182b725 +2024-09-11 09:08:15.318878 2024-09-11 09:08:15.318883 comef 7658 R rec fc44a013-6171-4758-8896-051508274fb2 +2024-09-11 09:08:15.373543 2024-09-11 09:08:15.373548 comef 7659 R rec 75372b95-0069-4e04-9517-c326a7990a26 +2024-09-11 09:08:15.431487 2024-09-11 09:08:15.431493 comef 7660 R rec 493eba84-4a83-437d-a379-d95ffdc434c0 +2024-09-11 09:08:15.487975 2024-09-11 09:08:15.48798 comef 7661 R rec 7b998a78-52c0-4dc4-a75f-bf5246843a6f +2024-09-11 09:08:15.548134 2024-09-11 09:08:15.548139 comef 7662 R rec 01f56ea0-5cbc-40f8-abe6-0b57d4ee4c82 +2024-09-11 09:08:15.611104 2024-09-11 09:08:15.611109 comef 7663 R rec e08e6252-98bc-4b33-99dc-899dbd1bf766 +2024-09-11 09:08:15.670323 2024-09-11 09:08:15.670328 comef 7664 R rec b7c8d154-9a28-42a4-ac09-e00f558cd151 +2024-09-11 09:08:15.722299 2024-09-11 09:08:15.722304 comef 7665 R rec f99e07e4-602b-48a0-b123-141b34c89342 +2024-09-11 09:08:15.780133 2024-09-11 09:08:15.780138 comef 7666 R rec 01d81717-b7fc-4e3b-974c-0713b79337bc +2024-09-11 09:08:15.840699 2024-09-11 09:08:15.840704 comef 7667 R rec aedd1d7b-54f5-4248-9f69-ef590d76c207 +2024-09-11 09:08:15.896803 2024-09-11 09:08:15.896808 comef 7668 R rec 051c1942-2628-4984-94c5-440d70865921 +2024-09-11 09:08:15.955274 2024-09-11 09:08:15.955279 comef 7669 R rec c155c592-9ee0-471e-b18f-69811f81e25b +2024-09-11 09:08:16.008897 2024-09-11 09:08:16.008902 comef 7670 R rec eec43f90-1e5f-4814-b69d-15357458f20f +2024-09-11 09:08:16.076418 2024-09-11 09:08:16.076423 comef 7671 R rec d842b170-e4b9-4a1b-b199-d9d598bc4951 +2024-09-11 09:08:16.144362 2024-09-11 09:08:16.144366 comef 7672 R rec 6f33ebf2-9940-49e2-b89d-66d4a6ac1a1e +2024-09-11 09:08:16.210662 2024-09-11 09:08:16.210667 comef 7673 R rec 2c3116d1-b5a7-471a-bb49-56f81b638e69 +2024-09-11 09:08:16.27279 2024-09-11 09:08:16.272794 comef 7674 R rec 1048773c-3c69-4dd2-8306-5c26d2b6a4b6 +2024-09-11 09:08:16.329425 2024-09-11 09:08:16.32943 comef 7675 R rec cd017d50-e577-4aeb-81da-1064b92fa0e5 +2024-09-11 09:08:16.383798 2024-09-11 09:08:16.383802 comef 7676 R rec e95b10ec-6b84-490a-88e3-2c34c98101fa +2024-09-11 09:08:16.447508 2024-09-11 09:08:16.447514 comef 7677 R rec 4ca36ea5-8050-4fc5-b602-e1fcb8f747da +2024-09-11 09:08:16.511759 2024-09-11 09:08:16.511764 comef 7678 R rec 468a65cd-43f9-4eeb-8460-9ea16fb1087f +2024-09-11 09:08:16.567339 2024-09-11 09:08:16.567344 comef 7679 R rec a691fd40-8fa2-4e17-a19f-6d894695bef3 +2024-09-11 09:08:16.629495 2024-09-11 09:08:16.629501 comef 7680 R rec a4c5987c-e249-421e-aef6-f051cb57d7a5 +2024-09-11 09:08:16.684066 2024-09-11 09:08:16.684071 comef 7681 R rec f4ee349f-70da-489b-8af9-7cdb10d01097 +2024-09-11 09:08:16.743331 2024-09-11 09:08:16.743336 comef 7682 R rec 74adbcf9-94db-450b-8a2e-446b897d4dc5 +2024-09-11 09:08:16.804045 2024-09-11 09:08:16.804049 comef 7683 R rec 886e6836-3699-4061-b863-77c908c06e9a +2024-09-11 09:08:16.862561 2024-09-11 09:08:16.862566 comef 7684 R rec 879e1a8b-be35-43d8-b5c6-a6e6f7d58886 +2024-09-11 09:08:16.918634 2024-09-11 09:08:16.918639 comef 7685 R rec a6e42643-53e7-433f-9e22-9b0cc072d5fe +2024-09-11 09:08:16.973151 2024-09-11 09:08:16.973157 comef 7686 R rec 20e68db4-ab1e-48db-8cd9-5448462584e5 +2024-09-11 09:08:17.035662 2024-09-11 09:08:17.035668 comef 7687 R rec d16e8f66-4685-48cb-81f4-1c39454f3dde +2024-09-11 09:08:17.092908 2024-09-11 09:08:17.092913 comef 7688 R rec 483aaf74-38a9-4b55-a188-0eb38c16be35 +2024-09-11 09:08:17.152784 2024-09-11 09:08:17.152794 comef 7689 R rec 9dc33eeb-b3c1-46c7-a863-516d1a4b64ef +2024-09-11 09:08:17.211637 2024-09-11 09:08:17.211643 comef 7690 R rec 38203505-2fec-407b-a5cc-9d6b042d203f +2024-09-11 09:08:17.266098 2024-09-11 09:08:17.266103 comef 7691 R rec 382b38d8-7313-4044-be3d-175e6b2effc6 +2024-09-11 09:08:17.32428 2024-09-11 09:08:17.324286 comef 7692 R rec 67854d94-4071-4731-bb21-d4a064556aaf +2024-09-11 09:08:17.384385 2024-09-11 09:08:17.38439 comef 7693 R rec f7bec825-d51b-41f3-9a72-6ce076046e21 +2024-09-11 09:08:17.440391 2024-09-11 09:08:17.440396 comef 7694 R rec 3c8eeb51-d4ec-4926-9d90-9b441ea3ac48 +2024-09-11 09:08:17.49698 2024-09-11 09:08:17.496986 comef 7695 R rec 541f89b4-f178-4eac-b1a0-f6caf306bb16 +2024-09-11 09:08:17.564411 2024-09-11 09:08:17.564418 comef 7696 R rec 6543185e-37bf-4d4d-874f-6e374f06ac46 +2024-09-11 09:08:17.61964 2024-09-11 09:08:17.619644 comef 7697 R rec d5989516-8133-4cdd-b741-99dcfbe0c65e +2024-09-11 09:08:17.67661 2024-09-11 09:08:17.676615 comef 7698 R rec 8a5d3924-bda2-4036-a651-54216f9d667c +2024-09-11 09:08:17.733003 2024-09-11 09:08:17.733007 comef 7699 R rec 6b20c1d8-b06c-4dce-8c4d-cdf90737c3e5 +2024-09-11 09:08:17.790647 2024-09-11 09:08:17.790651 comef 7700 R rec 20c15b8c-e2ff-47af-ace3-521f4e531a48 +2024-09-11 09:08:17.855543 2024-09-11 09:08:17.855548 comef 7701 R rec 953499f6-41b7-40e1-9f07-156f239a0930 +2024-09-11 09:08:17.917725 2024-09-11 09:08:17.917731 comef 7702 R rec 441773f0-5df3-4576-b124-842bdc6c67c3 +2024-09-11 09:08:17.974137 2024-09-11 09:08:17.974142 comef 7703 R rec 852cd0d9-8507-43f6-8a72-074921b6ae9e +2024-09-11 09:08:18.036822 2024-09-11 09:08:18.036826 comef 7704 R rec d4422d84-e0b5-447e-9332-2924efff6b2b +2024-09-11 09:08:18.095888 2024-09-11 09:08:18.095892 comef 7705 R rec d860000d-8d75-4863-90ce-5ccbd37a39b3 +2024-09-11 09:08:18.157161 2024-09-11 09:08:18.157167 comef 7706 R rec ecd6f523-4df5-4854-876e-4c519b81daf9 +2024-09-11 09:08:18.22192 2024-09-11 09:08:18.221927 comef 7707 R rec 629381fa-c543-477e-b146-d0269ccadbd5 +2024-09-11 09:08:18.282874 2024-09-11 09:08:18.28288 comef 7708 R rec 74fea9b4-a9f7-4bdb-ab34-a97997793c2f +2024-09-11 09:08:18.35071 2024-09-11 09:08:18.350716 comef 7709 R rec bea3a6b5-6bdd-4935-a395-b68c6176d32a +2024-09-11 09:08:18.421064 2024-09-11 09:08:18.421069 comef 7710 R rec 7024bb61-a121-422e-bbae-45a83f7d0ac8 +2024-09-11 09:08:18.483002 2024-09-11 09:08:18.483009 comef 7711 R rec 2cc33c96-f9bd-4e64-b2f9-3f11190439c0 +2024-09-11 09:08:18.542898 2024-09-11 09:08:18.542903 comef 7712 R rec c0b2aedd-cb04-4e76-97ee-6a9cdf8f668e +2024-09-11 09:08:18.601955 2024-09-11 09:08:18.601961 comef 7713 R rec 2a9285d5-4f2f-41e0-85e2-3a21eab0e045 +2024-09-11 09:08:18.681405 2024-09-11 09:08:18.681411 comef 7714 R rec fad4f17e-8d54-41b7-80fe-ac840f8f7fed +2024-09-11 09:08:18.746579 2024-09-11 09:08:18.746584 comef 7715 R rec 95903e07-068f-437f-83be-b45b0f14ccc7 +2024-09-11 09:08:18.810396 2024-09-11 09:08:18.810401 comef 7716 R rec c16cdc30-da49-4b73-9ea3-4c73cccd88b3 +2024-09-11 09:08:18.877729 2024-09-11 09:08:18.877734 comef 7717 R rec 9175f01c-8bec-405f-bc85-d2c856d09322 +2024-09-11 09:08:18.948227 2024-09-11 09:08:18.948232 comef 7718 R rec 2040cd76-0c74-45d2-aff5-56ba4212e8f4 +2024-09-11 09:08:19.012317 2024-09-11 09:08:19.012324 comef 7719 R rec 6e2b236f-3b10-4853-9928-b2d2021c8abd +2024-09-11 09:08:19.074232 2024-09-11 09:08:19.074237 comef 7720 R rec 812f68f9-5028-4973-8857-3a8c6c5e3401 +2024-09-11 09:08:19.139309 2024-09-11 09:08:19.139314 comef 7721 R rec 0bf8c061-0f87-487c-adad-79285fe27f8d +2024-09-11 09:08:19.209514 2024-09-11 09:08:19.20952 comef 7722 R rec 598401aa-e637-41fc-b173-550b9b97b512 +2024-09-11 09:08:19.271264 2024-09-11 09:08:19.27127 comef 7723 R rec 1295baaa-1728-4545-9ca6-d585383af9f3 +2024-09-11 09:08:19.329464 2024-09-11 09:08:19.32947 comef 7724 R rec e87aad76-6299-4643-a205-413c32fe51aa +2024-09-11 09:08:19.386954 2024-09-11 09:08:19.38696 comef 7725 R rec fb835cdb-1bc6-4599-9679-4c9f9fabfeb8 +2024-09-11 09:08:19.443605 2024-09-11 09:08:19.443609 comef 7726 R rec bc813c6a-7f57-4840-b1a8-f6769f2fca1f +2024-09-11 09:08:19.502434 2024-09-11 09:08:19.502441 comef 7727 R rec b37432eb-2808-48c8-8b14-a363dccd6781 +2024-09-11 09:08:19.564549 2024-09-11 09:08:19.564553 comef 7728 R rec aab9b7cf-9504-4fdd-9ea6-0fef80667eb4 +2024-09-11 09:08:19.629584 2024-09-11 09:08:19.629589 comef 7729 R rec a454acd5-2cf6-464e-9945-7f9bb1795f32 +2024-09-11 09:08:19.699068 2024-09-11 09:08:19.699074 comef 7730 R rec c60cad63-067b-4301-813b-100f4ff8cd33 +2024-09-11 09:08:19.765358 2024-09-11 09:08:19.765363 comef 7731 R rec 5d26df17-8a98-40df-9094-d623d2c17176 +2024-09-11 09:08:19.827551 2024-09-11 09:08:19.827556 comef 7732 R rec 84d3efc0-ef21-443d-8717-70f9739f0781 +2024-09-11 09:08:19.88791 2024-09-11 09:08:19.887937 comef 7733 R rec 4f708c9a-66ef-4290-8465-82d5f9626f31 +2024-09-11 09:08:19.948085 2024-09-11 09:08:19.948091 comef 7734 R rec a9c5673c-faac-4712-a84d-353e0f3d327a +2024-09-11 09:08:20.00799 2024-09-11 09:08:20.007995 comef 7735 R rec 5add4eab-8bd2-4929-8fd4-424ab7fe1b5e +2024-09-11 09:08:20.070717 2024-09-11 09:08:20.070722 comef 7736 R rec 3426e50b-5fed-463b-8895-4d713142d75c +2024-09-11 09:08:20.127917 2024-09-11 09:08:20.127922 comef 7737 R rec 99ef88a2-fde3-46cf-a94d-4efffe661c1c +2024-09-11 09:08:20.193356 2024-09-11 09:08:20.193361 comef 7738 R rec a7bfd65d-eead-4418-a186-ed04f8f1945d +2024-09-11 09:08:20.251731 2024-09-11 09:08:20.251736 comef 7739 R rec 388ad2d0-1cc1-46d7-ab6c-ec6b70d13e69 +2024-09-11 09:08:20.31204 2024-09-11 09:08:20.312046 comef 7740 R rec 4e91a50b-43ab-4391-852a-5455feabf8a3 +2024-09-11 09:08:20.380353 2024-09-11 09:08:20.380359 comef 7741 R rec aa03c677-5bb1-4cce-a566-6126de38eb7c +2024-09-11 09:08:20.442476 2024-09-11 09:08:20.442481 comef 7742 R rec 39b4bb8e-d705-4bd9-8fbe-e2ece2fe4bba +2024-09-11 09:08:20.505469 2024-09-11 09:08:20.505474 comef 7743 R rec 29472fdc-ad10-44bd-af5c-5760d62b60fc +2024-09-11 09:08:20.56872 2024-09-11 09:08:20.568731 comef 7744 R rec 229f8a0c-a191-43e5-9579-9f6cf65bdf43 +2024-09-11 09:08:20.638151 2024-09-11 09:08:20.63816 comef 7745 R rec 40d59f97-d8f2-491b-a101-c9377dde8e8b +2024-09-11 09:08:20.705859 2024-09-11 09:08:20.705863 comef 7746 R rec 0852ab0a-e7e4-4871-8726-53bd09262728 +2024-09-11 09:08:20.759395 2024-09-11 09:08:20.7594 comef 7747 R rec 5274068f-3473-458c-828f-d2f141a077b5 +2024-09-11 09:08:20.816007 2024-09-11 09:08:20.816014 comef 7748 R rec a29be910-4013-496b-b0e5-80103eff7ea5 +2024-09-11 09:08:20.877191 2024-09-11 09:08:20.877197 comef 7749 R rec 8d976fa5-8b2e-4ece-82dd-d892dd74bbb9 +2024-09-11 09:08:20.933547 2024-09-11 09:08:20.933552 comef 7750 R rec 4a4a1275-b69f-444c-8bc8-34c8c3db4c73 +2024-09-11 09:08:20.992088 2024-09-11 09:08:20.992094 comef 7751 R rec c4090b37-f3f9-4966-8773-bb607ac32f61 +2024-09-11 09:08:21.059811 2024-09-11 09:08:21.059816 comef 7752 R rec 7c50bb91-1fa6-4da5-a6d6-4dc31c085197 +2024-09-11 09:08:21.118946 2024-09-11 09:08:21.118951 comef 7753 R rec 1f875285-1e63-4593-8d5b-130d4a0da500 +2024-09-11 09:08:21.174015 2024-09-11 09:08:21.174021 comef 7754 R rec 3161f2b5-843e-4834-b2cb-c983a4fcd7f3 +2024-09-11 09:08:21.23212 2024-09-11 09:08:21.232125 comef 7755 R rec d4287ba9-bc07-4246-98dd-670bed66b3b0 +2024-09-11 09:08:21.288674 2024-09-11 09:08:21.288678 comef 7756 R rec d765eeca-7867-49de-9762-082c485163cc +2024-09-11 09:08:21.347922 2024-09-11 09:08:21.347926 comef 7757 R rec 2eee7895-8161-4174-b9b2-ec0fbc55dd70 +2024-09-11 09:08:21.40596 2024-09-11 09:08:21.405965 comef 7758 R rec 9006b27b-60d6-459c-95c2-b0795fb9e70c +2024-09-11 09:08:21.468076 2024-09-11 09:08:21.468082 comef 7759 R rec 41a84157-0f48-4ce7-9bec-036758c7d517 +2024-09-11 09:08:21.526852 2024-09-11 09:08:21.526857 comef 7760 R rec a86ecdf9-07c2-4d21-99b9-e08acd2c8301 +2024-09-11 09:08:21.584921 2024-09-11 09:08:21.584927 comef 7761 R rec e88903d1-17f8-4a68-86a2-10ca821087f8 +2024-09-11 09:08:21.659455 2024-09-11 09:08:21.659461 comef 7762 R rec 62302b1f-e58e-4cd0-aae2-438d31d393ef +2024-09-11 09:08:21.718329 2024-09-11 09:08:21.718333 comef 7763 R rec d41040ba-3ee9-4226-9d8e-60f49e37a95a +2024-09-11 09:08:21.777604 2024-09-11 09:08:21.77761 comef 7764 R rec 968447bf-2fa1-4400-863c-369eec040d20 +2024-09-11 09:08:21.83834 2024-09-11 09:08:21.838345 comef 7765 R rec 35768127-a0a7-4fe8-9747-526fe073b0b1 +2024-09-11 09:08:21.897565 2024-09-11 09:08:21.89757 comef 7766 R rec 71c7d16f-31ff-45b1-b183-3c74a8876a3c +2024-09-11 09:08:21.960509 2024-09-11 09:08:21.960515 comef 7767 R rec 787e014f-6739-45bf-bdeb-daffce524f1c +2024-09-11 09:08:22.024452 2024-09-11 09:08:22.024457 comef 7768 R rec 64cdd54e-d613-4ff8-ba72-129bdd9084c5 +2024-09-11 09:08:22.089281 2024-09-11 09:08:22.089286 comef 7769 R rec 0daacef5-f333-493e-97c6-c293fef43280 +2024-09-11 09:08:22.151296 2024-09-11 09:08:22.151302 comef 7770 R rec 4913f69a-6375-4e06-9b78-ca3204c233fd +2024-09-11 09:08:22.211355 2024-09-11 09:08:22.211361 comef 7771 R rec 3b377da8-d2bf-4d97-9459-49c13b993cf8 +2024-09-11 09:08:22.27119 2024-09-11 09:08:22.271195 comef 7772 R rec 6ab753a1-9048-499a-9f05-e5e5d277eac4 +2024-09-11 09:08:22.329456 2024-09-11 09:08:22.329462 comef 7773 R rec 6f49698e-b04c-4274-8072-701123bdcfeb +2024-09-11 09:08:22.389899 2024-09-11 09:08:22.389904 comef 7774 R rec 206f0d94-abbb-4c9a-bc3d-f5ff6ee0a84d +2024-09-11 09:08:22.454184 2024-09-11 09:08:22.454189 comef 7775 R rec 4e1d659d-3019-46ec-816a-9331a648b2d5 +2024-09-11 09:08:22.512907 2024-09-11 09:08:22.512912 comef 7776 R rec e8e99cb5-38a8-422b-b0be-076902f061c0 +2024-09-11 09:08:22.574876 2024-09-11 09:08:22.574881 comef 7777 R rec dd9d8ddc-c689-41cd-981b-437b5b2f2d9e +2024-09-11 09:08:22.631492 2024-09-11 09:08:22.631496 comef 7778 R rec 9f35da52-9604-4efe-a62b-c6d22b784e3a +2024-09-11 09:08:22.706451 2024-09-11 09:08:22.706456 comef 7779 R rec a5d48aa2-588c-4ae9-b42a-c7d6f88641e3 +2024-09-11 09:08:22.76686 2024-09-11 09:08:22.766865 comef 7780 R rec c4f80b52-10d1-4ceb-94a6-d8332a101868 +2024-09-11 09:08:22.823977 2024-09-11 09:08:22.823982 comef 7781 R rec 8f1422ee-5b87-48a8-afff-aa248f271699 +2024-09-11 09:08:22.889588 2024-09-11 09:08:22.889592 comef 7782 R rec 08ed1f7c-531b-4e7a-9230-5a6cd0b2e5a3 +2024-09-11 09:08:22.950367 2024-09-11 09:08:22.950372 comef 7783 R rec d2f00b98-2da0-4209-9fad-3ff694a09910 +2024-09-11 09:08:23.010359 2024-09-11 09:08:23.010364 comef 7784 R rec 85ff64f2-1b33-407e-88c6-76612237ea8a +2024-09-11 09:08:23.07605 2024-09-11 09:08:23.076055 comef 7785 R rec 2c062981-a0f0-49e1-8669-9acb550a37bc +2024-09-11 09:08:23.13854 2024-09-11 09:08:23.138545 comef 7786 R rec 7e68e06e-93f9-4a76-b4b9-a21a720e8fdb +2024-09-11 09:08:23.191425 2024-09-11 09:08:23.191431 comef 7787 R rec 88cfd49a-56b2-401c-b752-236da74cee9f +2024-09-11 09:08:23.254036 2024-09-11 09:08:23.254041 comef 7788 R rec fc45e51f-6b3e-470a-8f3d-6debb7783aa1 +2024-09-11 09:08:23.309377 2024-09-11 09:08:23.309382 comef 7789 R rec d2445b25-b39e-4828-a7e5-461d7f7d7f8c +2024-09-11 09:08:23.370872 2024-09-11 09:08:23.370879 comef 7790 R rec 1733b78c-06d4-4465-92fd-ae1c2890a548 +2024-09-11 09:08:23.430032 2024-09-11 09:08:23.430036 comef 7791 R rec bf005b44-ef9b-4730-8f33-87da5e13c593 +2024-09-11 09:08:23.486946 2024-09-11 09:08:23.486949 comef 7792 R rec 2cf00afd-dd46-4bf1-9948-3db3cc280ea4 +2024-09-11 09:08:23.546386 2024-09-11 09:08:23.54639 comef 7793 R rec 215652de-9b0a-4f0c-96d0-825da8ea1a28 +2024-09-11 09:08:23.622823 2024-09-11 09:08:23.622829 comef 7794 R rec 829ec786-3317-4c86-8633-e40b2ccc3c54 +2024-09-11 09:08:23.681763 2024-09-11 09:08:23.681768 comef 7795 R rec 2eab52ec-c76a-4380-aeb8-93d33f8b99ea +2024-09-11 09:08:23.734728 2024-09-11 09:08:23.734734 comef 7796 R rec 33725dea-ab9f-4493-8dd3-f2e8333883b5 +2024-09-11 09:08:23.791648 2024-09-11 09:08:23.791653 comef 7797 R rec 74433b0d-d7e7-447c-ac67-7a7ceee33c05 +2024-09-11 09:08:23.850688 2024-09-11 09:08:23.850692 comef 7798 R rec ade075fd-7e6d-4ab1-a34b-be0636cd1cdd +2024-09-11 09:08:23.909285 2024-09-11 09:08:23.909291 comef 7799 R rec f8d0e58f-1f61-4088-97af-785fdd1150be +2024-09-11 09:08:23.966292 2024-09-11 09:08:23.966297 comef 7800 R rec 1db06404-8bba-42df-a351-ef1cbfc023b3 +2024-09-11 09:08:24.034324 2024-09-11 09:08:24.034331 comef 7801 R rec 7d1daf3d-df1b-4ba5-a626-43b46b4a3327 +2024-09-11 09:08:24.089599 2024-09-11 09:08:24.089604 comef 7802 R rec 196890e1-a3e5-466a-b3af-1996beb7b5dd +2024-09-11 09:08:24.152012 2024-09-11 09:08:24.152017 comef 7803 R rec 6528e820-228c-482c-9d80-adcd96f1d8d2 +2024-09-11 09:08:24.212792 2024-09-11 09:08:24.212797 comef 7804 R rec 4769f095-73f1-4048-a17f-25789784bc79 +2024-09-11 09:08:24.273741 2024-09-11 09:08:24.273746 comef 7805 R rec 6f57375e-3025-461a-bb2f-2d9a67809513 +2024-09-11 09:08:24.339073 2024-09-11 09:08:24.339078 comef 7806 R rec 4b13c696-2076-4175-b53d-cfa08ce2b11c +2024-09-11 09:08:24.395751 2024-09-11 09:08:24.395756 comef 7807 R rec 9aacccfc-8972-464b-be6f-51d1b367597e +2024-09-11 09:08:24.454986 2024-09-11 09:08:24.454991 comef 7808 R rec c9f9855e-a684-4df3-a528-02725896f893 +2024-09-11 09:08:24.512508 2024-09-11 09:08:24.512513 comef 7809 R rec b0a660e9-2572-49cf-90c6-b6720b30a864 +2024-09-11 09:08:24.570985 2024-09-11 09:08:24.57099 comef 7810 R rec 13fc2ebf-98eb-416f-849c-649c6da2687c +2024-09-11 09:08:24.658119 2024-09-11 09:08:24.658124 comef 7811 R rec e7bc534b-7a07-4179-b2cc-7a1ceff1fbf4 +2024-09-11 09:08:24.726524 2024-09-11 09:08:24.726529 comef 7812 R rec 36bf6d0f-983a-4fe3-81c0-cc6e50866a4a +2024-09-11 09:08:24.784747 2024-09-11 09:08:24.784752 comef 7813 R rec ebed4c7d-794a-4430-ac8b-f67c8609662d +2024-09-11 09:08:24.849673 2024-09-11 09:08:24.84968 comef 7814 R rec 0c228fec-3078-484b-8860-8a2db101423e +2024-09-11 09:08:24.908611 2024-09-11 09:08:24.908616 comef 7815 R rec 85a35c45-4662-43a5-89f4-8fec3f0c7aa6 +2024-09-11 09:08:24.974722 2024-09-11 09:08:24.974727 comef 7816 R rec 2635a4d9-4ac6-4714-bf66-efc4595fc819 +2024-09-11 09:08:25.035228 2024-09-11 09:08:25.035234 comef 7817 R rec 1ab35dea-a21e-4167-8281-62c5f157c90b +2024-09-11 09:08:25.092279 2024-09-11 09:08:25.092284 comef 7818 R rec d8f6aa0b-9f01-411d-84ca-9f8662349bce +2024-09-11 09:08:25.15408 2024-09-11 09:08:25.154084 comef 7819 R rec 2274bc36-9485-4429-9c23-1884928243aa +2024-09-11 09:08:25.215524 2024-09-11 09:08:25.215529 comef 7820 R rec 9c8ad8c8-86b6-4d07-b14d-1e46a0916ffe +2024-09-11 09:08:25.282305 2024-09-11 09:08:25.28231 comef 7821 R rec 65a382d9-9865-4ae9-9574-0c915aa2dd8d +2024-09-11 09:08:25.366708 2024-09-11 09:08:25.366712 comef 7822 R rec ca8ed834-5784-4725-b9c3-063fe66cd42a +2024-09-11 09:08:25.424367 2024-09-11 09:08:25.424372 comef 7823 R rec 1e7ee1dd-2e2c-4c1b-a226-0b3666417369 +2024-09-11 09:08:25.48129 2024-09-11 09:08:25.481295 comef 7824 R rec 96c5025a-00e9-48ad-9ac8-55f8d0c30d83 +2024-09-11 09:08:25.54072 2024-09-11 09:08:25.540725 comef 7825 R rec 473c550b-621a-448d-afec-f985d5434436 +2024-09-11 09:08:25.599041 2024-09-11 09:08:25.599046 comef 7826 R rec fdfb2655-1ff5-4fdf-8d13-4ed1f914cd09 +2024-09-11 09:08:25.667093 2024-09-11 09:08:25.667099 comef 7827 R rec 9e557238-a68a-42ab-996f-0f2b5df4839d +2024-09-11 09:08:25.734999 2024-09-11 09:08:25.735003 comef 7828 R rec dbfa805c-9dba-4a56-86dc-9801c63e57b9 +2024-09-11 09:08:25.792892 2024-09-11 09:08:25.792896 comef 7829 R rec e4615c6f-9724-4c3f-89f1-c2649c8d2f0b +2024-09-11 09:08:25.854002 2024-09-11 09:08:25.854007 comef 7830 R rec a7e882f4-c399-408d-91d4-a28ab1af9a20 +2024-09-11 09:08:25.920759 2024-09-11 09:08:25.920764 comef 7831 R rec ccf1db81-9f8b-482e-bc32-538fa5edc276 +2024-09-11 09:08:25.978168 2024-09-11 09:08:25.978173 comef 7832 R rec f940a302-8734-4856-b5a1-693036b1c22b +2024-09-11 09:08:26.040007 2024-09-11 09:08:26.040012 comef 7833 R rec 1f2ad8b3-8b7a-4446-8114-341431b4fb66 +2024-09-11 09:08:26.097354 2024-09-11 09:08:26.097359 comef 7834 R rec 2892b30e-663f-4179-a042-f701ec425c59 +2024-09-11 09:08:26.160681 2024-09-11 09:08:26.160687 comef 7835 R rec 7712e753-9ace-447f-a222-73e49237c2f8 +2024-09-11 09:08:26.218625 2024-09-11 09:08:26.218631 comef 7836 R rec 2be4e4cd-e909-4cf4-900a-fa976fefd9a8 +2024-09-11 09:08:26.272142 2024-09-11 09:08:26.272148 comef 7837 R rec 9862e579-be57-4fa3-ae3a-0c14578eb248 +2024-09-11 09:08:26.332411 2024-09-11 09:08:26.332416 comef 7838 R rec e9aa91b0-d300-42c7-89dc-c3388858d481 +2024-09-11 09:08:26.38706 2024-09-11 09:08:26.387065 comef 7839 R rec 4fd1999b-d82c-4e85-9013-0e04ea4546b9 +2024-09-11 09:08:26.44665 2024-09-11 09:08:26.446655 comef 7840 R rec 9ef28656-1076-4308-9874-03d261a2e938 +2024-09-11 09:08:26.50727 2024-09-11 09:08:26.507276 comef 7841 R rec bcaf964b-351a-4349-96fa-2e7790f94361 +2024-09-11 09:08:26.573657 2024-09-11 09:08:26.573662 comef 7842 R rec a8ecf56f-214f-4678-ad47-5321b2b27c5b +2024-09-11 09:08:26.639826 2024-09-11 09:08:26.639833 comef 7843 R rec 9ddd46e3-15a6-4777-b79e-2a846b0c7ad7 +2024-09-11 09:08:26.712581 2024-09-11 09:08:26.712585 comef 7844 R rec 3325c2dc-7c7c-4c1b-9f6a-ea192c62ac61 +2024-09-11 09:08:26.771131 2024-09-11 09:08:26.771136 comef 7845 R rec 67815eca-66af-4434-80e8-4a3134c9b746 +2024-09-11 09:08:26.833697 2024-09-11 09:08:26.833702 comef 7846 R rec 8f785980-f4c1-4b43-9848-04bbcf1f6755 +2024-09-11 09:08:26.891688 2024-09-11 09:08:26.891692 comef 7847 R rec 8168f82b-6f7d-48ee-bc35-f2e2a416bb29 +2024-09-11 09:08:26.949594 2024-09-11 09:08:26.949598 comef 7848 R rec e1d3c542-7762-4a78-ae9e-c9192639ca0d +2024-09-11 09:08:27.013318 2024-09-11 09:08:27.013322 comef 7849 R rec 10168191-fe0b-43d5-b27b-59dacb10fb21 +2024-09-11 09:08:27.072351 2024-09-11 09:08:27.072355 comef 7850 R rec 8f4b15e3-e0a5-4517-8819-b4be8d3d5d59 +2024-09-11 09:08:27.129458 2024-09-11 09:08:27.129463 comef 7851 R rec 61b04520-8834-4ade-a817-aa8294820d5e +2024-09-11 09:08:27.187965 2024-09-11 09:08:27.187969 comef 7852 R rec e3d369ed-3d93-4152-83f3-e1db7843774a +2024-09-11 09:08:27.253035 2024-09-11 09:08:27.25304 comef 7853 R rec f4ced338-ddac-4a8b-b2f8-81da2128e5c4 +2024-09-11 09:08:27.307792 2024-09-11 09:08:27.307798 comef 7854 R rec e1eda898-6304-4bc0-a92f-c28a83c41d99 +2024-09-11 09:08:27.366094 2024-09-11 09:08:27.366099 comef 7855 R rec 3a2d29ff-dce9-4ee7-9554-5537ef1c23fb +2024-09-11 09:08:27.424846 2024-09-11 09:08:27.42485 comef 7856 R rec 5cf1eba9-6a73-4274-b228-0881e5cae866 +2024-09-11 09:08:27.485509 2024-09-11 09:08:27.485514 comef 7857 R rec 9a9d456d-a0e4-4304-9a9c-4f072fabf50c +2024-09-11 09:08:27.563591 2024-09-11 09:08:27.563596 comef 7858 R rec 86616797-4c2a-44aa-85e4-89ad02fdf921 +2024-09-11 09:08:27.624628 2024-09-11 09:08:27.624633 comef 7859 R rec 471402dd-72d0-47d5-b4c9-016aacc5fdeb +2024-09-11 09:08:27.681756 2024-09-11 09:08:27.681761 comef 7860 R rec e288f299-871e-4002-93b4-db5bbd50c745 +2024-09-11 09:08:27.738657 2024-09-11 09:08:27.738662 comef 7861 R rec da0273f7-d3db-4955-9121-60061cc166bf +2024-09-11 09:08:27.797673 2024-09-11 09:08:27.797678 comef 7862 R rec bc39d15c-4e1b-4047-98a0-acc41e747eb6 +2024-09-11 09:08:27.861876 2024-09-11 09:08:27.86188 comef 7863 R rec 3787001f-6464-43dc-99a6-4921499e1697 +2024-09-11 09:08:27.928565 2024-09-11 09:08:27.928571 comef 7864 R rec b2a35244-f49b-4b53-87df-b4ff26d39d03 +2024-09-11 09:08:27.991077 2024-09-11 09:08:27.991082 comef 7865 R rec b6cadb43-98a1-45d7-bb32-235fd6e6b4b5 +2024-09-11 09:08:28.058763 2024-09-11 09:08:28.058768 comef 7866 R rec d36548f3-feb7-4dcd-82de-2cb0f3d0f7df +2024-09-11 09:08:28.118867 2024-09-11 09:08:28.118872 comef 7867 R rec 518bea16-d9ca-4860-8ce0-00f5fcf3a547 +2024-09-11 09:08:28.177113 2024-09-11 09:08:28.177119 comef 7868 R rec ec2be3c0-4451-4f19-9346-196b7a0c318c +2024-09-11 09:08:28.235819 2024-09-11 09:08:28.235824 comef 7869 R rec a200e3e5-5ce1-4c17-9c83-42c42c3cd7a9 +2024-09-11 09:08:28.295474 2024-09-11 09:08:28.295501 comef 7870 R rec d8706a1a-c1cb-4b54-a94a-ae5e216f7c78 +2024-09-11 09:08:28.355617 2024-09-11 09:08:28.355622 comef 7871 R rec a3cff396-3f80-4a80-95b8-c60832b3df78 +2024-09-11 09:08:28.412002 2024-09-11 09:08:28.412007 comef 7872 R rec 5eae82a2-eee9-4050-805f-625ffd445a89 +2024-09-11 09:08:28.475771 2024-09-11 09:08:28.475776 comef 7873 R rec 25bf17b5-65f1-496e-9ae0-c6baa1b94466 +2024-09-11 09:08:28.547323 2024-09-11 09:08:28.547328 comef 7874 R rec f664ccfd-1d54-4e09-a148-74c7d5cba25c +2024-09-11 09:08:28.608443 2024-09-11 09:08:28.608449 comef 7875 R rec 29ec0015-ff58-41f2-8df7-d830c101085f +2024-09-11 09:08:28.669274 2024-09-11 09:08:28.66928 comef 7876 R rec b511963d-fcd6-4abb-9bb0-99e8f36ecf51 +2024-09-11 09:08:28.733561 2024-09-11 09:08:28.733565 comef 7877 R rec 64b58f65-4047-4d90-a512-2c010b159c27 +2024-09-11 09:08:28.792343 2024-09-11 09:08:28.792348 comef 7878 R rec 17c55edd-0cec-4e2a-a3af-f52df5dee8da +2024-09-11 09:08:28.852132 2024-09-11 09:08:28.852138 comef 7879 R rec 088a2178-0f51-452f-9fd1-8890ca5093af +2024-09-11 09:08:28.912089 2024-09-11 09:08:28.912094 comef 7880 R rec 7be90e7e-7eac-4c6c-8290-d68b5abe1b26 +2024-09-11 09:08:28.967535 2024-09-11 09:08:28.96754 comef 7881 R rec 1229b1ce-6959-4c20-ac65-aac420054b73 +2024-09-11 09:08:29.027706 2024-09-11 09:08:29.027711 comef 7882 R rec 29910fb5-36a6-4dc6-b415-4648a8ebef5a +2024-09-11 09:08:29.092096 2024-09-11 09:08:29.092101 comef 7883 R rec 2a3fd35f-4731-4777-ae6c-f95970ea8241 +2024-09-11 09:08:29.150758 2024-09-11 09:08:29.150764 comef 7884 R rec 25ece9d8-01a3-4b96-b899-cba59dc150c2 +2024-09-11 09:08:29.207273 2024-09-11 09:08:29.207278 comef 7885 R rec 5788a1b1-c7c7-43ab-8ccf-9e8b53451f48 +2024-09-11 09:08:29.2708 2024-09-11 09:08:29.270805 comef 7886 R rec d8ba2d37-08b3-4446-9e91-6b65447d349d +2024-09-11 09:08:29.332906 2024-09-11 09:08:29.332911 comef 7887 R rec 1d7e35e3-d6be-43d1-9f20-b974c3ccdb45 +2024-09-11 09:08:29.392065 2024-09-11 09:08:29.39207 comef 7888 R rec b0db3cd8-0827-41d3-856b-71acc1308662 +2024-09-11 09:08:29.450107 2024-09-11 09:08:29.450112 comef 7889 R rec dae3f365-e772-457a-be6e-9b49bf128478 +2024-09-11 09:08:29.513866 2024-09-11 09:08:29.513872 comef 7890 R rec 24aa6915-5a71-415e-bac8-9a648cf2d9c2 +2024-09-11 09:08:29.579277 2024-09-11 09:08:29.579283 comef 7891 R rec dfb64b13-7170-4689-8fd7-00281c709ef9 +2024-09-11 09:08:29.64479 2024-09-11 09:08:29.644795 comef 7892 R rec 1bca1458-07bd-4d2d-aa64-142a0a808d44 +2024-09-11 09:08:29.701731 2024-09-11 09:08:29.701736 comef 7893 R rec 9c27d4f2-e645-468a-846e-18973815e7bf +2024-09-11 09:08:29.762016 2024-09-11 09:08:29.76202 comef 7894 R rec b2cd5a51-e91d-44ee-8232-5a1e352eaa67 +2024-09-11 09:08:29.829943 2024-09-11 09:08:29.829948 comef 7895 R rec 146b5406-2df7-4990-afa8-0f642854c32e +2024-09-11 09:08:29.889652 2024-09-11 09:08:29.889658 comef 7896 R rec 9cdd416c-6fd1-4bb9-a4d2-54bfe0ba08d2 +2024-09-11 09:08:29.949936 2024-09-11 09:08:29.949941 comef 7897 R rec f4eaf2f2-ac30-4130-a1a5-6c8dcef3ba8b +2024-09-11 09:08:30.007447 2024-09-11 09:08:30.007453 comef 7898 R rec 4e10996b-795e-44eb-b8da-c0fa0d5e0321 +2024-09-11 09:08:30.075632 2024-09-11 09:08:30.075636 comef 7899 R rec a97d9396-3c48-4a25-b73f-8e3d7223208f +2024-09-11 09:08:30.13352 2024-09-11 09:08:30.133526 comef 7900 R rec 1867b0b1-1977-4822-8486-3c1505364897 +2024-09-11 09:08:30.192394 2024-09-11 09:08:30.192399 comef 7901 R rec 4f449dc1-595f-499d-9c29-6dbde526f6a7 +2024-09-11 09:08:30.251791 2024-09-11 09:08:30.251796 comef 7902 R rec 8bdea4c1-a994-4ff7-9d92-6fd7f3cf169a +2024-09-11 09:08:30.313086 2024-09-11 09:08:30.313091 comef 7903 R rec 9905fbb5-fa52-4890-a287-a97bc259f914 +2024-09-11 09:08:30.377059 2024-09-11 09:08:30.377065 comef 7904 R rec 9e10bd9c-af9d-483d-a4dc-532abc76c196 +2024-09-11 09:08:30.435965 2024-09-11 09:08:30.435974 comef 7905 R rec dbf65995-c6b2-419a-9384-46542617c844 +2024-09-11 09:08:30.494954 2024-09-11 09:08:30.494959 comef 7906 R rec 6d196dcd-3be3-4b6a-af31-835f126f2047 +2024-09-11 09:08:30.57014 2024-09-11 09:08:30.570146 comef 7907 R rec 300cf4b7-a78b-4684-9a57-bc1fde9e9274 +2024-09-11 09:08:30.636714 2024-09-11 09:08:30.636719 comef 7908 R rec 9a80f8a1-99d4-4780-bfb8-f1b92ccf8049 +2024-09-11 09:08:30.69642 2024-09-11 09:08:30.696424 comef 7909 R rec 1e77f5f8-d3f6-4c3f-8f0a-ab4829966e6f +2024-09-11 09:08:30.760326 2024-09-11 09:08:30.760332 comef 7910 R rec 4a0998e9-14b9-4745-a722-1e5b5bf0d88e +2024-09-11 09:08:30.815954 2024-09-11 09:08:30.815961 comef 7911 R rec 9204a626-bad6-49d6-8911-9fddf5b48e66 +2024-09-11 09:08:30.87703 2024-09-11 09:08:30.877035 comef 7912 R rec ee789fcc-1907-4fce-8fa7-5e26543860ca +2024-09-11 09:08:30.934725 2024-09-11 09:08:30.934731 comef 7913 R rec e7d84323-c21b-4b90-a7d6-3cfe9c9266dd +2024-09-11 09:08:30.998193 2024-09-11 09:08:30.998198 comef 7914 R rec ab186327-78ca-4677-a194-d5f8deb9ecf8 +2024-09-11 09:08:31.062775 2024-09-11 09:08:31.062782 comef 7915 R rec 8058e5f5-7982-4310-a4c2-7c39fd26581a +2024-09-11 09:08:31.123222 2024-09-11 09:08:31.123227 comef 7916 R rec 9eafa2e6-4691-4c70-b660-907fd60ff8b4 +2024-09-11 09:08:31.177428 2024-09-11 09:08:31.177434 comef 7917 R rec 6cd35b84-5af8-4ccb-a6a3-b6a98fd03c3e +2024-09-11 09:08:31.235096 2024-09-11 09:08:31.235101 comef 7918 R rec f856fe45-4ae3-4f6b-a8f5-ca420aa759ba +2024-09-11 09:08:31.299079 2024-09-11 09:08:31.299083 comef 7919 R rec 20c16a27-3c6d-4351-b0e9-1a87769d7e61 +2024-09-11 09:08:31.359091 2024-09-11 09:08:31.359096 comef 7920 R rec d00285ac-564c-4165-9f8b-495fd432e695 +2024-09-11 09:08:31.435094 2024-09-11 09:08:31.4351 comef 7921 R rec a3456686-206c-4852-aaa9-d30d00f53434 +2024-09-11 09:08:31.504036 2024-09-11 09:08:31.504041 comef 7922 R rec ed9caf0e-bce3-4335-b35f-2aeec9a15dce +2024-09-11 09:08:31.559865 2024-09-11 09:08:31.559871 comef 7923 R rec 820ea248-ff28-43f6-b032-c78d0cf6f6cf +2024-09-11 09:08:31.617741 2024-09-11 09:08:31.617747 comef 7924 R rec e3f09caf-0739-481f-bb59-c657acf4b76a +2024-09-11 09:08:31.678526 2024-09-11 09:08:31.678531 comef 7925 R rec 8e9341ff-902e-4243-9783-65fb9e390534 +2024-09-11 09:08:31.743871 2024-09-11 09:08:31.743877 comef 7926 R rec ff287530-4253-4b42-862b-a45a6c87487f +2024-09-11 09:08:31.801007 2024-09-11 09:08:31.801012 comef 7927 R rec d9d91156-46e1-4d6e-9846-dde66d4b2b4e +2024-09-11 09:08:31.869656 2024-09-11 09:08:31.869663 comef 7928 R rec dad6ee31-1f6c-408a-b84d-d7359592f99e +2024-09-11 09:08:31.92777 2024-09-11 09:08:31.927775 comef 7929 R rec 7d968f29-6187-4d1e-95f7-54f7b01450ca +2024-09-11 09:08:31.985794 2024-09-11 09:08:31.985799 comef 7930 R rec 32abe329-de98-451f-a556-6abb2366dcfd +2024-09-11 09:08:32.050637 2024-09-11 09:08:32.050643 comef 7931 R rec caacae0f-4a9e-4e05-9bcd-d409d7d0a25c +2024-09-11 09:08:32.110201 2024-09-11 09:08:32.110206 comef 7932 R rec 05121198-2933-46b0-9f9f-896966abf811 +2024-09-11 09:08:32.170075 2024-09-11 09:08:32.17008 comef 7933 R rec fb4c7773-3a00-4431-8139-8840b1eca46a +2024-09-11 09:08:32.227347 2024-09-11 09:08:32.227352 comef 7934 R rec c544e395-5d8e-491a-a438-7a15a57467e5 +2024-09-11 09:08:32.282647 2024-09-11 09:08:32.282654 comef 7935 R rec 2063c4fa-d344-4632-a433-0d0c5e0fc0a5 +2024-09-11 09:08:32.335525 2024-09-11 09:08:32.335529 comef 7936 R rec 85d33c6d-8647-457c-867e-7e8fa01a95a8 +2024-09-11 09:08:32.406046 2024-09-11 09:08:32.406051 comef 7937 R rec 52802833-aa22-41cb-9ab4-2baddd5af280 +2024-09-11 09:08:32.46547 2024-09-11 09:08:32.465474 comef 7938 R rec c69b37ef-0b45-4fb2-ad40-49e63b5a36c4 +2024-09-11 09:08:32.524553 2024-09-11 09:08:32.524558 comef 7939 R rec 7aaf6d78-e3e9-4990-925d-888eb484ba61 +2024-09-11 09:08:32.584285 2024-09-11 09:08:32.584291 comef 7940 R rec e9f8eb60-26e0-4520-b8c4-31294594bf72 +2024-09-11 09:08:32.642793 2024-09-11 09:08:32.642799 comef 7941 R rec 85165943-f364-4bfa-92e4-a6e5b083dec0 +2024-09-11 09:08:32.701294 2024-09-11 09:08:32.701298 comef 7942 R rec 370fa86a-1089-4aef-9022-d9167d57ceaa +2024-09-11 09:08:32.763104 2024-09-11 09:08:32.763109 comef 7943 R rec b0cfa4db-57d1-4f93-b27b-c180b0c704eb +2024-09-11 09:08:32.822646 2024-09-11 09:08:32.822651 comef 7944 R rec db558182-c37c-4afa-ab07-ae9d223d09f3 +2024-09-11 09:08:32.888811 2024-09-11 09:08:32.888816 comef 7945 R rec 95582d00-8bd8-400c-b750-1a3310c14915 +2024-09-11 09:08:32.952848 2024-09-11 09:08:32.952853 comef 7946 R rec 57464e78-5adc-4b3f-8309-78289d292fd2 +2024-09-11 09:08:33.012052 2024-09-11 09:08:33.012057 comef 7947 R rec 22c2882e-4ad1-4540-9ec7-8c3126b6d737 +2024-09-11 09:08:33.073416 2024-09-11 09:08:33.073421 comef 7948 R rec 1da71ad2-46e3-49af-a3e4-5e23dafb57be +2024-09-11 09:08:33.138604 2024-09-11 09:08:33.138609 comef 7949 R rec 2962705d-76db-4fc3-8a07-c1c2a0717ed2 +2024-09-11 09:08:33.204995 2024-09-11 09:08:33.205 comef 7950 R rec 51171c0a-6d2b-4ebb-84ea-fe8c1bdd4e54 +2024-09-11 09:08:33.260941 2024-09-11 09:08:33.260946 comef 7951 R rec 53599f97-7d71-4a7f-9849-147925b8f557 +2024-09-11 09:08:33.32032 2024-09-11 09:08:33.320324 comef 7952 R rec 94cc8453-f75a-4d90-9aed-2ad48d2b3955 +2024-09-11 09:08:33.396331 2024-09-11 09:08:33.396336 comef 7953 R rec a9526292-0aab-4a8c-8487-3de8d4a31e5d +2024-09-11 09:08:33.45814 2024-09-11 09:08:33.458145 comef 7954 R rec c284cf75-a471-4802-ad5e-13f7167030bc +2024-09-11 09:08:33.517926 2024-09-11 09:08:33.517932 comef 7955 R rec c04d88e4-2c02-4afa-97eb-1b0382a52feb +2024-09-11 09:08:33.573825 2024-09-11 09:08:33.57383 comef 7956 R rec 00c31455-a5e5-44cc-abc3-fab7f53cf865 +2024-09-11 09:08:33.633812 2024-09-11 09:08:33.63382 comef 7957 R rec 8fe8ac5c-a311-434c-ae96-d8864fd01ea9 +2024-09-11 09:08:33.691967 2024-09-11 09:08:33.691973 comef 7958 R rec 4ce171a0-f7fc-4ba7-9b39-7608a8678bc6 +2024-09-11 09:08:33.755278 2024-09-11 09:08:33.755283 comef 7959 R rec 01bf6ba1-9164-44e1-a375-1048d391d2a6 +2024-09-11 09:08:33.812313 2024-09-11 09:08:33.812319 comef 7960 R rec e9c0ff3a-b902-470e-8ed3-ef00173ea8a1 +2024-09-11 09:08:33.869478 2024-09-11 09:08:33.869483 comef 7961 R rec 1176d762-698d-4499-b67b-e052eb8ceebe +2024-09-11 09:08:33.92602 2024-09-11 09:08:33.926025 comef 7962 R rec 9d9b57df-71e7-4471-9316-c5a7a15ed12b +2024-09-11 09:08:33.985879 2024-09-11 09:08:33.985884 comef 7963 R rec 92e3bc7d-d33b-493c-aadf-28d2812c3991 +2024-09-11 09:08:34.047894 2024-09-11 09:08:34.0479 comef 7964 R rec 6cd5adfe-3c8a-4d69-a4be-1059372bdbd7 +2024-09-11 09:08:34.110116 2024-09-11 09:08:34.110122 comef 7965 R rec 40c1f558-60ea-45a5-ab5e-4f486f805daf +2024-09-11 09:08:34.185916 2024-09-11 09:08:34.185922 comef 7966 R rec 4e36e3a9-7cfd-4aba-b429-25b4c16f3b62 +2024-09-11 09:08:34.265663 2024-09-11 09:08:34.265668 comef 7967 R rec 6f9e0f2a-b105-4179-8947-c8e080f3e310 +2024-09-11 09:08:34.322628 2024-09-11 09:08:34.322632 comef 7968 R rec b4f173c1-3fdd-4e5f-8fbe-9c0fe32b5e05 +2024-09-11 09:08:34.381319 2024-09-11 09:08:34.381324 comef 7969 R rec 4d0375ac-9e86-4160-9c08-cfe988b16d43 +2024-09-11 09:08:34.437275 2024-09-11 09:08:34.437281 comef 7970 R rec 23c62cdb-a1ad-4ef7-a774-1acebc0edcd7 +2024-09-11 09:08:34.499083 2024-09-11 09:08:34.499087 comef 7971 R rec 5f305ab2-aff7-4ae5-80aa-20a3cd83e60f +2024-09-11 09:08:34.553305 2024-09-11 09:08:34.55331 comef 7972 R rec ef6b19e3-561a-48a3-826f-5dec94db434c +2024-09-11 09:08:34.607427 2024-09-11 09:08:34.607432 comef 7973 R rec dd5292f6-a495-4a1a-a5c9-06ec81874045 +2024-09-11 09:08:34.665843 2024-09-11 09:08:34.665848 comef 7974 R rec bc39080e-ce66-4f2c-ad3f-854e3f425cbd +2024-09-11 09:08:34.729467 2024-09-11 09:08:34.729472 comef 7975 R rec d0a9a89d-959f-4b78-aafd-bac4bcd4dcff +2024-09-11 09:08:34.794117 2024-09-11 09:08:34.794122 comef 7976 R rec 9d84f2f4-9d87-4d4f-9cb3-50aaf9dab5c6 +2024-09-11 09:08:34.856119 2024-09-11 09:08:34.856124 comef 7977 R rec 770129cd-1416-4157-a790-4751b8612771 +2024-09-11 09:08:34.936871 2024-09-11 09:08:34.936876 comef 7978 R rec 37f49886-df39-4c68-b156-315878061f61 +2024-09-11 09:08:34.995436 2024-09-11 09:08:34.995442 comef 7979 R rec 7685db14-267c-41fe-94ad-d7ad1a9eae13 +2024-09-11 09:08:35.05659 2024-09-11 09:08:35.056595 comef 7980 R rec a61351e6-3af6-4a8a-a0c9-4bdf6ec3d0ce +2024-09-11 09:08:35.118365 2024-09-11 09:08:35.118371 comef 7981 R rec b8163c87-f605-4e9b-ac05-c51815bc2f2c +2024-09-11 09:08:35.18812 2024-09-11 09:08:35.188125 comef 7982 R rec 44dad344-f72e-4620-9530-f7e3009902bc +2024-09-11 09:08:35.247903 2024-09-11 09:08:35.247911 comef 7983 R rec 721f334a-e46d-4563-9c94-eb9a5062d50e +2024-09-11 09:08:35.308137 2024-09-11 09:08:35.308143 comef 7984 R rec 156490a6-b0b4-4fc4-bcc8-47cb4a59c263 +2024-09-11 09:08:35.375879 2024-09-11 09:08:35.375884 comef 7985 R rec a4feea09-b634-408f-9721-16d80b891a07 +2024-09-11 09:08:35.437305 2024-09-11 09:08:35.43731 comef 7986 R rec 751636f1-fae4-4007-99c7-1e6ad85492ba +2024-09-11 09:08:35.497064 2024-09-11 09:08:35.497069 comef 7987 R rec fe7dcd0d-731b-4b1a-abe9-ff021a985d36 +2024-09-11 09:08:35.55897 2024-09-11 09:08:35.558975 comef 7988 R rec 3eddda6e-a623-48e5-969c-ad42e082544b +2024-09-11 09:08:35.622683 2024-09-11 09:08:35.622688 comef 7989 R rec f6e9f6a9-75d0-43f9-a50d-03eb4b2c6f48 +2024-09-11 09:08:35.687757 2024-09-11 09:08:35.687762 comef 7990 R rec e8641381-d7f8-435e-bb3d-1ce7f88f5684 +2024-09-11 09:08:35.746842 2024-09-11 09:08:35.746847 comef 7991 R rec c93688fa-8fbf-452e-9488-301a4384fbe7 +2024-09-11 09:08:35.807923 2024-09-11 09:08:35.807929 comef 7992 R rec 19437f13-5f56-487b-a486-41593f898755 +2024-09-11 09:08:35.868541 2024-09-11 09:08:35.868547 comef 7993 R rec 9e94dd72-46e5-46eb-8d66-7d7d81300c4c +2024-09-11 09:08:35.932813 2024-09-11 09:08:35.932819 comef 7994 R rec 939aa95c-508b-471d-8a50-c826b1e3e6f9 +2024-09-11 09:08:35.986208 2024-09-11 09:08:35.986215 comef 7995 R rec 0734bc58-641f-43a0-808a-9a0e8df952ec +2024-09-11 09:08:36.04925 2024-09-11 09:08:36.049256 comef 7996 R rec dd6dc992-21b2-4cfb-8246-3741e97999d1 +2024-09-11 09:08:36.118096 2024-09-11 09:08:36.118102 comef 7997 R rec 2b030111-d8b0-4618-a466-6b52939270d9 +2024-09-11 09:08:36.18178 2024-09-11 09:08:36.181785 comef 7998 R rec 29cac78f-01c3-4a54-836f-6887fceda5e8 +2024-09-11 09:08:36.243535 2024-09-11 09:08:36.24354 comef 7999 R rec acead1f7-02ad-46b5-9b93-37c4b5f9e788 +2024-09-11 09:08:36.306809 2024-09-11 09:08:36.306813 comef 8000 R rec 4791b986-5e2a-4db3-9bc5-b544b9d5e278 +2024-09-11 09:08:36.368295 2024-09-11 09:08:36.3683 comef 8001 R rec a85e12dd-916d-48bf-afec-28881f390bba +2024-09-11 09:08:36.432741 2024-09-11 09:08:36.432746 comef 8002 R rec fa3d41d2-2cbf-4410-821f-fa1780941baf +2024-09-11 09:08:36.489009 2024-09-11 09:08:36.489014 comef 8003 R rec 45d37919-535b-465b-8418-ed1566ebca91 +2024-09-11 09:08:36.551709 2024-09-11 09:08:36.551714 comef 8004 R rec f8a8a7ef-1ab5-4771-92d0-b317ab8425e3 +2024-09-11 09:08:36.607722 2024-09-11 09:08:36.607727 comef 8005 R rec b826eb4e-bef4-471b-beaa-ae4a33c951c9 +2024-09-11 09:08:36.666187 2024-09-11 09:08:36.666192 comef 8006 R rec 7dd45acb-2c04-40bb-91fc-572baf273d05 +2024-09-11 09:08:36.724691 2024-09-11 09:08:36.724696 comef 8007 R rec 9690dedc-dfd0-47ad-aa3b-1fdbb3299c01 +2024-09-11 09:08:36.784608 2024-09-11 09:08:36.784612 comef 8008 R rec f84fe3ed-c8b3-4aa0-b7d7-d792307c2a35 +2024-09-11 09:08:36.847733 2024-09-11 09:08:36.847738 comef 8009 R rec a417ac6b-83f8-4058-8167-bf2e6e685acb +2024-09-11 09:08:36.916974 2024-09-11 09:08:36.91698 comef 8010 R rec b747c812-ac62-4dff-ab54-74fffeec3bce +2024-09-11 09:08:36.976791 2024-09-11 09:08:36.976796 comef 8011 R rec 7b9759f2-9393-48c5-a0af-a16fea624a4f +2024-09-11 09:08:37.035596 2024-09-11 09:08:37.035601 comef 8012 R rec 302877af-f71a-401a-850d-9706e8295648 +2024-09-11 09:08:37.094891 2024-09-11 09:08:37.094896 comef 8013 R rec 75b6371e-39b1-4ef5-afe9-8af2b3fa96c4 +2024-09-11 09:08:37.160619 2024-09-11 09:08:37.160623 comef 8014 R rec a4ac6933-1b47-40c2-9a86-515b8ab4bc2b +2024-09-11 09:08:37.227833 2024-09-11 09:08:37.227839 comef 8015 R rec cb4ef189-16a1-449d-8258-b0b98be7909f +2024-09-11 09:08:37.29156 2024-09-11 09:08:37.291565 comef 8016 R rec c744bbf1-072a-4d30-a374-9ed98d6568d6 +2024-09-11 09:08:37.355536 2024-09-11 09:08:37.355541 comef 8017 R rec 542db0d6-d909-47c6-9d02-2e5ba7fb3133 +2024-09-11 09:08:37.419327 2024-09-11 09:08:37.419332 comef 8018 R rec a99b3123-1168-4867-a891-e8c9d8a52e81 +2024-09-11 09:08:37.475765 2024-09-11 09:08:37.475769 comef 8019 R rec 2faf5a0b-c48a-49d3-9b1a-5fee119a8047 +2024-09-11 09:08:37.539576 2024-09-11 09:08:37.539581 comef 8020 R rec f179ad9f-cf9f-4109-aae8-c6f16d44e692 +2024-09-11 09:08:37.599023 2024-09-11 09:08:37.599028 comef 8021 R rec f1d12b9d-e4bf-4f09-a60e-4040dcaaab09 +2024-09-11 09:08:37.655569 2024-09-11 09:08:37.655574 comef 8022 R rec 78ee5278-9ba8-42a9-aee4-59e1613bb41e +2024-09-11 09:08:37.717015 2024-09-11 09:08:37.717021 comef 8023 R rec 4d147631-a753-4b85-875c-b610290dd502 +2024-09-11 09:08:37.782408 2024-09-11 09:08:37.782414 comef 8024 R rec e0f62a32-a1cf-4e3e-b83c-84a892311e1d +2024-09-11 09:08:37.839808 2024-09-11 09:08:37.839813 comef 8025 R rec 38b543a9-8663-410e-966c-ddd1fbc3ddd6 +2024-09-11 09:08:37.898026 2024-09-11 09:08:37.898031 comef 8026 R rec b3b53ef1-59d0-4e17-a326-0a4e60286cfb +2024-09-11 09:08:37.954979 2024-09-11 09:08:37.954983 comef 8027 R rec 6ca89511-31d0-40ed-ba35-0c3110ddb6b9 +2024-09-11 09:08:38.014042 2024-09-11 09:08:38.014046 comef 8028 R rec 4a3a3580-bdb1-46f1-af10-b0d4d9da5f8c +2024-09-11 09:08:38.071898 2024-09-11 09:08:38.071903 comef 8029 R rec 91c55f12-44e0-41a3-9b9a-688a6fd3cbee +2024-09-11 09:08:38.130062 2024-09-11 09:08:38.130066 comef 8030 R rec 6103372a-fb10-489b-8ad5-f2a1746911ab +2024-09-11 09:08:38.193362 2024-09-11 09:08:38.193367 comef 8031 R rec b1ab1c4d-9913-494b-be95-7603870811d5 +2024-09-11 09:08:38.254747 2024-09-11 09:08:38.254751 comef 8032 R rec f04f5589-ae2b-4c78-bfba-7155d01d3a5c +2024-09-11 09:08:38.314293 2024-09-11 09:08:38.314298 comef 8033 R rec e0222e6d-ffe2-4bb2-8c92-9ef9581f5572 +2024-09-11 09:08:38.36682 2024-09-11 09:08:38.366825 comef 8034 R rec 3bf02a1e-936c-4bff-b8b3-4f05b4649926 +2024-09-11 09:08:38.423116 2024-09-11 09:08:38.423121 comef 8035 R rec 1cd730ca-3c22-4c31-ae8f-9a84be95f9fc +2024-09-11 09:08:38.475267 2024-09-11 09:08:38.475272 comef 8036 R rec 1118e91d-07b0-4874-a95b-9a5482b05055 +2024-09-11 09:08:38.530769 2024-09-11 09:08:38.530773 comef 8037 R rec 537f8b52-8884-4600-95d3-e307856433a5 +2024-09-11 09:08:38.589702 2024-09-11 09:08:38.589707 comef 8038 R rec 162cfc01-26fc-4a56-b214-264fb4f8f69b +2024-09-11 09:08:38.65521 2024-09-11 09:08:38.655214 comef 8039 R rec eb842338-a60f-460d-8f30-9574d52a8370 +2024-09-11 09:08:38.722779 2024-09-11 09:08:38.722783 comef 8040 R rec 65e6db2e-c92d-4c50-860f-cdca328ce195 +2024-09-11 09:08:38.779623 2024-09-11 09:08:38.779629 comef 8041 R rec 512266e7-2a2e-483c-9b81-9dd9e7606da7 +2024-09-11 09:08:38.841325 2024-09-11 09:08:38.841331 comef 8042 R rec a5b28ae3-393d-4315-8828-f0da45628f59 +2024-09-11 09:08:38.898289 2024-09-11 09:08:38.898294 comef 8043 R rec bd3963ea-506d-4c1e-a9fc-86089ecb7972 +2024-09-11 09:08:38.959525 2024-09-11 09:08:38.959531 comef 8044 R rec 1d965063-44d4-4706-a882-4f58871b12c8 +2024-09-11 09:08:39.022958 2024-09-11 09:08:39.022962 comef 8045 R rec 76924892-17dc-42c5-a10a-c02f493e7c36 +2024-09-11 09:08:39.081839 2024-09-11 09:08:39.081843 comef 8046 R rec 42d620d1-e6b2-4a31-a04d-b1152cecc703 +2024-09-11 09:08:39.140469 2024-09-11 09:08:39.140474 comef 8047 R rec 469d375f-ed16-4822-878f-66e351a72616 +2024-09-11 09:08:39.198078 2024-09-11 09:08:39.198083 comef 8048 R rec 35174538-9c05-47a1-b105-79b40cb48b03 +2024-09-11 09:08:39.260482 2024-09-11 09:08:39.260487 comef 8049 R rec f6e249fa-8da6-4f24-a847-4cec3e6500fc +2024-09-11 09:08:39.316017 2024-09-11 09:08:39.316022 comef 8050 R rec 7dbde98d-92c3-4f47-b21e-12d85e0a70e7 +2024-09-11 09:08:39.374013 2024-09-11 09:08:39.374018 comef 8051 R rec c32e5812-a7f2-495f-a2db-2484b0111268 +2024-09-11 09:08:39.435933 2024-09-11 09:08:39.435964 comef 8052 R rec 9a55d833-a9da-476f-a0fa-ccaafc796c95 +2024-09-11 09:08:39.501981 2024-09-11 09:08:39.501987 comef 8053 R rec 19baa9ad-d6cb-467e-87b1-aaa524fc076e +2024-09-11 09:08:39.559818 2024-09-11 09:08:39.559824 comef 8054 R rec 1f8cb497-61a9-4963-9eae-4c71d4dc50e4 +2024-09-11 09:08:39.61886 2024-09-11 09:08:39.618865 comef 8055 R rec 4610c930-620c-4cb8-89cb-48d8ff6d3dd7 +2024-09-11 09:08:39.675869 2024-09-11 09:08:39.675875 comef 8056 R rec dbd68415-ae75-4cd4-b0dd-7d7c49a0363e +2024-09-11 09:08:39.741408 2024-09-11 09:08:39.741414 comef 8057 R rec dce3638e-b07f-4499-8a47-011b0aed0703 +2024-09-11 09:08:39.814166 2024-09-11 09:08:39.814171 comef 8058 R rec f5517235-13bf-4a2a-a706-634e2bf11908 +2024-09-11 09:08:39.876976 2024-09-11 09:08:39.876982 comef 8059 R rec c197e8db-e956-4dcd-81e5-784b5c5379b2 +2024-09-11 09:08:39.933258 2024-09-11 09:08:39.933263 comef 8060 R rec 061a7431-e0cf-4a1e-a386-81651ab82d96 +2024-09-11 09:08:40.047179 2024-09-11 09:08:40.047182 comef 8061 R rec de89461f-0bed-4f82-96a1-06bf07793ec3 +2024-09-11 09:08:40.106622 2024-09-11 09:08:40.106627 comef 8062 R rec 32e7ad3f-1672-4224-8a9a-0e48aa19dba5 +2024-09-11 09:08:40.162671 2024-09-11 09:08:40.162676 comef 8063 R rec bee38286-dee4-48fe-9135-e7ed3c42b28e +2024-09-11 09:08:40.221796 2024-09-11 09:08:40.2218 comef 8064 R rec ca7696e2-ab86-4844-833c-cfa734c13d7c +2024-09-11 09:08:40.280972 2024-09-11 09:08:40.280977 comef 8065 R rec 2e9d005f-1694-4d67-829e-8a5d7111882f +2024-09-11 09:08:40.344179 2024-09-11 09:08:40.344184 comef 8066 R rec 3938f1e5-4e38-40e1-9409-645b36963d45 +2024-09-11 09:08:40.404306 2024-09-11 09:08:40.404311 comef 8067 R rec 69fd6e9c-6b00-4fed-bb65-5cc1cd0ff7b5 +2024-09-11 09:08:40.461428 2024-09-11 09:08:40.461434 comef 8068 R rec b73ef90f-da53-43f2-a3b1-2a5ce247f07c +2024-09-11 09:08:40.52195 2024-09-11 09:08:40.521955 comef 8069 R rec a581230d-55bc-4073-9783-b50ad5b29c7a +2024-09-11 09:08:40.579977 2024-09-11 09:08:40.579981 comef 8070 R rec 6e33e550-1d9d-43ab-8082-881ca02ff79d +2024-09-11 09:08:40.64492 2024-09-11 09:08:40.644925 comef 8071 R rec 405beb1a-cb67-4f1a-99c3-ea83b6383222 +2024-09-11 09:08:40.70727 2024-09-11 09:08:40.707275 comef 8072 R rec 07da1e59-64e9-4eaa-9bb7-f1ce2d5837f1 +2024-09-11 09:08:40.777117 2024-09-11 09:08:40.777123 comef 8073 R rec 0e887b1d-47cf-4858-aedf-45aa0c71e252 +2024-09-11 09:08:40.848768 2024-09-11 09:08:40.848775 comef 8074 R rec 650f558c-3ed5-489d-98c3-cc067991af79 +2024-09-11 09:08:40.909651 2024-09-11 09:08:40.909656 comef 8075 R rec 306b2639-00d2-4fdc-bb3a-e5f2c7fdd8ae +2024-09-11 09:08:40.969155 2024-09-11 09:08:40.969163 comef 8076 R rec d6bac467-88f0-46b0-943c-9af2c79381a0 +2024-09-11 09:08:41.039425 2024-09-11 09:08:41.03943 comef 8077 R rec 505f3be3-4840-4849-bfd8-fd5f3e5a7c4e +2024-09-11 09:08:41.095469 2024-09-11 09:08:41.095474 comef 8078 R rec fd03a327-ddce-4c23-996e-e2e0bb553c03 +2024-09-11 09:08:41.154511 2024-09-11 09:08:41.154516 comef 8079 R rec b0d8ae1b-6e3f-42f0-beb8-67c3360db4ea +2024-09-11 09:08:41.219254 2024-09-11 09:08:41.219259 comef 8080 R rec 1ce22dd9-d2d1-439f-98b9-0a2a064e2699 +2024-09-11 09:08:41.281055 2024-09-11 09:08:41.28106 comef 8081 R rec 59311b40-e6ad-4daf-812a-2629765e5169 +2024-09-11 09:08:41.338046 2024-09-11 09:08:41.338051 comef 8082 R rec 2b88fcd1-089f-471e-8b63-65bb39879095 +2024-09-11 09:08:41.393479 2024-09-11 09:08:41.393484 comef 8083 R rec 0eeb1924-c139-4b3e-9696-8ca0c3779876 +2024-09-11 09:08:41.454584 2024-09-11 09:08:41.454589 comef 8084 R rec 3aa910fb-d004-4ee9-a227-be77ead5ab20 +2024-09-11 09:08:41.548199 2024-09-11 09:08:41.548204 comef 8085 R rec 72f3f2da-2801-4dd5-a96e-a1983281b26a +2024-09-11 09:08:41.610525 2024-09-11 09:08:41.610529 comef 8086 R rec 0137ccbc-3e3e-4daa-8bc1-242cba16c71f +2024-09-11 09:08:41.673469 2024-09-11 09:08:41.673473 comef 8087 R rec 41eb3fac-793c-4302-bfac-abb8268549ec +2024-09-11 09:08:41.742592 2024-09-11 09:08:41.742597 comef 8088 R rec e90a2d28-8e75-4344-9822-58aa9a7e1b96 +2024-09-11 09:08:41.810132 2024-09-11 09:08:41.810137 comef 8089 R rec e8e07261-6a35-4a40-b449-91f448387398 +2024-09-11 09:08:41.873798 2024-09-11 09:08:41.873803 comef 8090 R rec 33b99077-a3d6-4654-b506-e93c1b2e162c +2024-09-11 09:08:41.932909 2024-09-11 09:08:41.932914 comef 8091 R rec 24636522-4bd6-46e7-9ef8-fdd92c03bbf2 +2024-09-11 09:08:41.997467 2024-09-11 09:08:41.997471 comef 8092 R rec a4f131c8-f68f-4983-ba46-3976bc70bb70 +2024-09-11 09:08:42.054848 2024-09-11 09:08:42.054854 comef 8093 R rec e146a576-c555-4c41-9d49-ebcdff8978e6 +2024-09-11 09:08:43.960097 2024-09-11 09:08:43.960102 comef 8094 R rec d10425ac-7454-4c6c-907f-19baf4f83379 +2024-09-11 09:08:44.034634 2024-09-11 09:08:44.034642 comef 8095 R rec 4faa2e68-6fa9-41d6-8efe-dde292a07d16 +2024-09-11 09:08:44.087761 2024-09-11 09:08:44.087766 comef 8096 R rec 446571b8-1c5a-4da2-b007-56ff86b8ab91 +2024-09-11 09:08:44.144919 2024-09-11 09:08:44.144924 comef 8097 R rec da8ee197-df49-4d7b-b78f-09aa14534122 +2024-09-11 09:08:44.199424 2024-09-11 09:08:44.199429 comef 8098 R rec dfff5b98-35fb-4c57-9a82-1355d8f1a807 +2024-09-11 09:08:44.258592 2024-09-11 09:08:44.258597 comef 8099 R rec 60a760f6-7ca5-4c9a-b219-0e573aae4fe8 +2024-09-11 09:08:44.310939 2024-09-11 09:08:44.310944 comef 8100 R rec aaf01e37-d975-483d-8483-246c4cb62a47 +2024-09-11 09:08:44.362705 2024-09-11 09:08:44.362709 comef 8101 R rec d4332a38-90af-4aea-babb-ac4c85f82f08 +2024-09-11 09:08:44.41554 2024-09-11 09:08:44.415546 comef 8102 R rec af7a5b54-9455-4bc2-8581-31c6c6ef4e38 +2024-09-11 09:08:44.467251 2024-09-11 09:08:44.467255 comef 8103 R rec 57e918e5-2b5c-455b-b511-7ec0c69eb99c +2024-09-11 09:08:44.520201 2024-09-11 09:08:44.520206 comef 8104 R rec c6502658-c395-46d3-9dbc-2d9833ce09c6 +2024-09-11 09:08:44.570637 2024-09-11 09:08:44.570643 comef 8105 R rec 2d1d0489-153d-41f1-b2a0-9771bd2061f4 +2024-09-11 09:08:44.624206 2024-09-11 09:08:44.62421 comef 8106 R rec 7096b333-eba2-4a84-a239-5da4b87dd4cd +2024-09-11 09:08:44.679963 2024-09-11 09:08:44.679968 comef 8107 R rec 106fbaa2-95b5-4715-9452-8d4d0e5a2279 +2024-09-11 09:08:44.738013 2024-09-11 09:08:44.738018 comef 8108 R rec bcc13b8d-cde6-44ed-babf-357ab69ce56d +2024-09-11 09:08:44.79794 2024-09-11 09:08:44.797945 comef 8109 R rec 6c4a1846-9aa1-49c8-b87c-9dfbec61caef +2024-09-11 09:08:44.847359 2024-09-11 09:08:44.847365 comef 8110 R rec be56b150-3641-4243-84d0-184bc7b4ee96 +2024-09-11 09:08:44.901209 2024-09-11 09:08:44.901213 comef 8111 R rec af40cc61-0f40-43c1-987b-ff6389c4d462 +2024-09-11 09:08:44.980467 2024-09-11 09:08:44.980472 comef 8112 R rec 671d985a-4f83-4bc8-93bd-c35db9b9350e +2024-09-11 09:08:45.034567 2024-09-11 09:08:45.034572 comef 8113 R rec 40358686-21c0-4928-a292-39dc29d109a5 +2024-09-11 09:08:45.085624 2024-09-11 09:08:45.085629 comef 8114 R rec d8732b02-2086-450b-8885-c23e5047d799 +2024-09-11 09:08:45.137091 2024-09-11 09:08:45.137098 comef 8115 R rec 82b0764e-767a-4a1a-871e-5e0b0430b6e1 +2024-09-11 09:08:45.18917 2024-09-11 09:08:45.189175 comef 8116 R rec 6afe42e2-6e62-4c33-a9d1-b8cd3650b838 +2024-09-11 09:08:45.240421 2024-09-11 09:08:45.240426 comef 8117 R rec 877de846-29e4-409e-8d8c-63b1947ab940 +2024-09-11 09:08:45.292763 2024-09-11 09:08:45.292768 comef 8118 R rec d36ef08f-e340-49c5-b133-e56b7e0507f2 +2024-09-11 09:08:45.343171 2024-09-11 09:08:45.343176 comef 8119 R rec 619a6a29-1295-47c5-9df7-c24ceba3aab4 +2024-09-11 09:08:45.441205 2024-09-11 09:08:45.44121 comef 8120 R rec e364e1b8-b7f0-4a8e-81da-c1816758eceb +2024-09-11 09:08:45.496156 2024-09-11 09:08:45.496161 comef 8121 R rec 83c812da-0ea6-4e85-be45-5bee1169b241 +2024-09-11 09:08:45.550208 2024-09-11 09:08:45.550214 comef 8122 R rec 48bce065-3d03-40ea-9705-df22f1e7bdd1 +2024-09-11 09:08:45.600901 2024-09-11 09:08:45.600905 comef 8123 R rec 50758d2d-d208-4fad-9798-1d39c4e24504 +2024-09-11 09:08:45.654024 2024-09-11 09:08:45.654028 comef 8124 R rec 4825f50b-8a24-4716-b812-a70e737a4d1f +2024-09-11 09:08:45.70481 2024-09-11 09:08:45.704815 comef 8125 R rec c07cf68d-09ec-4382-a7e9-9732989839d6 +2024-09-11 09:08:45.75716 2024-09-11 09:08:45.757164 comef 8126 R rec 2b32c6b0-e50b-4c6c-b43f-8a6e14ca9e19 +2024-09-11 09:08:45.811142 2024-09-11 09:08:45.811146 comef 8127 R rec b8e916f2-904c-4936-afc0-dfe8104e5749 +2024-09-11 09:08:45.860898 2024-09-11 09:08:45.860903 comef 8128 R rec 67f55fc2-bd47-476d-af2e-f87502b7ac5a +2024-09-11 09:08:45.911678 2024-09-11 09:08:45.911683 comef 8129 R rec 4ed6df4c-1cbc-4fca-91dd-f4f1efe2af9b +2024-09-11 09:08:45.961363 2024-09-11 09:08:45.961368 comef 8130 R rec fc96b1d0-d347-4432-b487-4c87c523391f +2024-09-11 09:08:46.014459 2024-09-11 09:08:46.014464 comef 8131 R rec f0ed98e3-042e-49dd-9ad8-fd9ecca04fde +2024-09-11 09:08:46.074551 2024-09-11 09:08:46.074557 comef 8132 R rec 041d6505-e990-4f5b-97c4-733bba03531c +2024-09-11 09:08:46.1357 2024-09-11 09:08:46.135705 comef 8133 R rec bacecb28-ad9b-4c88-b487-0c3215ccaffd +2024-09-11 09:08:46.200127 2024-09-11 09:08:46.200132 comef 8134 R rec 65dbdc7e-628e-4eff-bb25-e2dca1bc5654 +2024-09-11 09:08:46.271245 2024-09-11 09:08:46.271251 comef 8135 R rec 56167e5f-d456-4a91-b3a2-160bc4ad90e2 +2024-09-11 09:08:46.326938 2024-09-11 09:08:46.326943 comef 8136 R rec 64aef07b-97da-45da-af0c-0be8274b2b25 +2024-09-11 09:08:46.375122 2024-09-11 09:08:46.375128 comef 8137 R rec bc9af770-4dde-460d-beff-2fd8f44628fe +2024-09-11 09:08:46.423255 2024-09-11 09:08:46.423259 comef 8138 R rec cc952789-f2f1-4af9-83a3-d77f33d9d117 +2024-09-11 09:08:46.472926 2024-09-11 09:08:46.472931 comef 8139 R rec 3c932e6f-b26c-4a0c-b3ee-9ec9d6280baf +2024-09-11 09:08:46.521033 2024-09-11 09:08:46.521038 comef 8140 R rec a37fa583-58b3-473e-afa8-2f4a04f1baf2 +2024-09-11 09:08:46.571441 2024-09-11 09:08:46.571446 comef 8141 R rec bc960a1f-10f5-4d1e-a1e6-2ba5d2db2c4c +2024-09-11 09:08:46.624388 2024-09-11 09:08:46.624392 comef 8142 R rec 99167645-ba8b-47ee-8170-7bc9f3375ad1 +2024-09-11 09:08:46.676807 2024-09-11 09:08:46.676811 comef 8143 R rec 76d4a336-66d7-413c-866f-dddefb392c5a +2024-09-11 09:08:46.72813 2024-09-11 09:08:46.728135 comef 8144 R rec 4ff53093-14be-47ae-bb0a-7fa92302af08 +2024-09-11 09:08:46.780434 2024-09-11 09:08:46.78044 comef 8145 R rec a789eaf6-cb22-4ade-bbe4-8c43c9952ffa +2024-09-11 09:08:46.837855 2024-09-11 09:08:46.83786 comef 8146 R rec 35fa0fae-f07e-4a37-9ab8-438d3e83600a +2024-09-11 09:08:46.889663 2024-09-11 09:08:46.889668 comef 8147 R rec 9e32991b-1d20-4516-b55a-2cb26118cbf1 +2024-09-11 09:08:46.949057 2024-09-11 09:08:46.949064 comef 8148 R rec 6b4f1151-06d1-4212-9131-b2674bb5c0a7 +2024-09-11 09:08:47.001379 2024-09-11 09:08:47.001384 comef 8149 R rec 6b035e31-d405-47a9-b7eb-39967243473c +2024-09-11 09:08:47.053676 2024-09-11 09:08:47.053682 comef 8150 R rec 64bcd8fb-06ab-4645-b2b2-a0a87c2ffc0c +2024-09-11 09:08:47.106057 2024-09-11 09:08:47.106062 comef 8151 R rec 9d20c3d2-33c0-4207-8336-dc3f3a0f883e +2024-09-11 09:08:47.15906 2024-09-11 09:08:47.159065 comef 8152 R rec a3db7a1a-2bb4-4df1-b373-70753718d035 +2024-09-11 09:08:47.218531 2024-09-11 09:08:47.218537 comef 8153 R rec 509e98c5-32f6-4162-b345-1d0ba0c3340d +2024-09-11 09:08:47.268557 2024-09-11 09:08:47.268564 comef 8154 R rec 22db0990-a20b-47df-bb82-1ad5e5ae7f00 +2024-09-11 09:08:47.323928 2024-09-11 09:08:47.323933 comef 8155 R rec 548499ae-f8cc-4b1c-b2fd-00973c3a45fc +2024-09-11 09:08:47.380378 2024-09-11 09:08:47.380384 comef 8156 R rec 3f7bb910-c41f-4e7b-8f95-548e26c7c5ac +2024-09-11 09:08:47.43847 2024-09-11 09:08:47.438476 comef 8157 R rec 4bfa4792-180c-4a6f-ae44-731767d7475d +2024-09-11 09:08:47.499121 2024-09-11 09:08:47.499126 comef 8158 R rec cb25e36f-cbe7-4357-a20a-a8998330b444 +2024-09-11 09:08:47.547423 2024-09-11 09:08:47.547428 comef 8159 R rec d6a9bca8-fcf1-4853-8e71-e3e0755b878c +2024-09-11 09:08:47.602954 2024-09-11 09:08:47.60296 comef 8160 R rec 759c0155-d6e1-4fb0-b13b-af73cfabf364 +2024-09-11 09:08:47.657848 2024-09-11 09:08:47.657853 comef 8161 R rec 93f162ea-861a-46df-81cc-efaec7b16aec +2024-09-11 09:08:47.708349 2024-09-11 09:08:47.708354 comef 8162 R rec 78a042db-b459-4285-aefa-d1b3d2bc8a75 +2024-09-11 09:08:47.762016 2024-09-11 09:08:47.762021 comef 8163 R rec c4108445-4957-49b8-aee1-1c5f7666f1a3 +2024-09-11 09:08:47.814222 2024-09-11 09:08:47.814227 comef 8164 R rec d2afbe69-6d1c-4cc2-8628-08a57b4036dc +2024-09-11 09:08:47.870502 2024-09-11 09:08:47.870507 comef 8165 R rec 7b1982ac-be69-406d-b2b6-d79f1311af81 +2024-09-11 09:08:47.919531 2024-09-11 09:08:47.919536 comef 8166 R rec 40492d38-419e-4dff-b79f-639868f755f7 +2024-09-11 09:08:47.96652 2024-09-11 09:08:47.966525 comef 8167 R rec 558508cc-31ef-4eac-b555-396ebf372cce +2024-09-11 09:08:48.01957 2024-09-11 09:08:48.019576 comef 8168 R rec 81611f07-42ec-4081-99e4-bf12ae789eec +2024-09-11 09:08:48.073587 2024-09-11 09:08:48.073593 comef 8169 R rec 33d13c39-b126-474a-a97f-58d15407cd88 +2024-09-11 09:08:48.12924 2024-09-11 09:08:48.129246 comef 8170 R rec 564fee23-c438-47f7-a719-f91825171668 +2024-09-11 09:08:48.180964 2024-09-11 09:08:48.180969 comef 8171 R rec 67790500-b791-47e3-a19d-0e5c64abb754 +2024-09-11 09:08:48.234438 2024-09-11 09:08:48.234442 comef 8172 R rec 9b3bf4d6-b14d-4e20-8802-24ae3d50ea2c +2024-09-11 09:08:48.289503 2024-09-11 09:08:48.289509 comef 8173 R rec 24c4b680-7e4d-462d-88a2-495820d5825f +2024-09-11 09:08:48.341014 2024-09-11 09:08:48.341019 comef 8174 R rec 04b5063a-64b0-4085-a3d2-ed5e8c8c5da9 +2024-09-11 09:08:48.395837 2024-09-11 09:08:48.395842 comef 8175 R rec 5d69aa2a-f617-4ed5-a0d5-5d09a5cdc50e +2024-09-11 09:08:48.444571 2024-09-11 09:08:48.444576 comef 8176 R rec b9c9bb74-039b-4dce-b58d-09fca9daccae +2024-09-11 09:08:48.500819 2024-09-11 09:08:48.500823 comef 8177 R rec 03c30212-8bd9-43df-bae1-625f73d97cb2 +2024-09-11 09:08:48.554142 2024-09-11 09:08:48.554147 comef 8178 R rec 9df4c7bb-458f-447b-82bf-91dbe7ce2952 +2024-09-11 09:08:48.607561 2024-09-11 09:08:48.607566 comef 8179 R rec b054e210-a693-438e-ba39-779a4745c500 +2024-09-11 09:08:48.659616 2024-09-11 09:08:48.65962 comef 8180 R rec a2362f09-4704-4128-b999-36fb675de766 +2024-09-11 09:08:48.722713 2024-09-11 09:08:48.722718 comef 8181 R rec bfa351e7-78e2-497d-8569-d179517ba65f +2024-09-11 09:08:48.790146 2024-09-11 09:08:48.790151 comef 8182 R rec 3d805579-2afc-415d-a640-7dc16a5e864e +2024-09-11 09:08:48.844381 2024-09-11 09:08:48.844386 comef 8183 R rec 46abfcc5-8cee-46a6-ab8b-f9acdea882de +2024-09-11 09:08:48.9005 2024-09-11 09:08:48.900505 comef 8184 R rec 05ca5d4e-b067-45bb-b2ca-cf7e91f485bb +2024-09-11 09:08:48.954925 2024-09-11 09:08:48.954929 comef 8185 R rec 35c70fde-afdf-41cc-9304-b50cd677d957 +2024-09-11 09:08:49.00658 2024-09-11 09:08:49.006585 comef 8186 R rec c6463c3d-a1fb-4116-a5eb-49966157eac5 +2024-09-11 09:08:49.05833 2024-09-11 09:08:49.058335 comef 8187 R rec 74af14e8-e01a-4a07-b878-6f50222acb83 +2024-09-11 09:08:49.111736 2024-09-11 09:08:49.111741 comef 8188 R rec 8dc68807-a138-4906-8df4-fa6569e1acfb +2024-09-11 09:08:49.165797 2024-09-11 09:08:49.165801 comef 8189 R rec 9f50a182-4fdf-49be-9117-22368d41d705 +2024-09-11 09:08:49.23004 2024-09-11 09:08:49.230044 comef 8190 R rec 83c6990a-bffe-40e9-ab5a-795b5534a033 +2024-09-11 09:08:49.289997 2024-09-11 09:08:49.290002 comef 8191 R rec 0fe455be-f7c0-4b60-ba56-e4ae71122f70 +2024-09-11 09:08:49.344597 2024-09-11 09:08:49.344602 comef 8192 R rec c0d791de-3a20-4320-a20c-b4e50fdba657 +2024-09-11 09:08:49.398106 2024-09-11 09:08:49.398111 comef 8193 R rec 167b087f-8ce2-440a-9566-cb041bce0238 +2024-09-11 09:08:49.455664 2024-09-11 09:08:49.455669 comef 8194 R rec 80c96ea2-5bc4-4993-980b-e5688b6c8ee3 +2024-09-11 09:08:49.508979 2024-09-11 09:08:49.508984 comef 8195 R rec 7b076c24-23fd-4a6f-85ab-0434445c2d13 +2024-09-11 09:08:49.563501 2024-09-11 09:08:49.563506 comef 8196 R rec 3ba6f3bc-cc84-4d3a-8a84-d343bd2888a5 +2024-09-11 09:08:49.623197 2024-09-11 09:08:49.623202 comef 8197 R rec a0bdf3d1-75ec-4594-9f91-29110484dd54 +2024-09-11 09:08:49.676849 2024-09-11 09:08:49.676853 comef 8198 R rec 2c379b53-5c3e-4475-a374-4b6e170861f4 +2024-09-11 09:08:49.730565 2024-09-11 09:08:49.73057 comef 8199 R rec 8492095b-e29b-450b-ba55-adcd47a4a0b6 +2024-09-11 09:08:49.786716 2024-09-11 09:08:49.786721 comef 8200 R rec 71bc665d-af59-4528-bd28-6791da28272b +2024-09-11 09:08:49.857557 2024-09-11 09:08:49.857562 comef 8201 R rec b35f659f-94d4-4511-a8c6-df2e0480961e +2024-09-11 09:08:49.91298 2024-09-11 09:08:49.912985 comef 8202 R rec 727510f8-3734-4dc7-93c9-3d875c9968d6 +2024-09-11 09:08:49.9671 2024-09-11 09:08:49.967106 comef 8203 R rec 4472049b-f503-443b-ba25-698aefe645e9 +2024-09-11 09:08:50.028653 2024-09-11 09:08:50.028658 comef 8204 R rec d670d9cc-01da-4fcd-a51e-2b803bd5263a +2024-09-11 09:08:50.085282 2024-09-11 09:08:50.085288 comef 8205 R rec 83f0c461-42ad-4484-9e28-2f3512e33ee7 +2024-09-11 09:08:50.136695 2024-09-11 09:08:50.1367 comef 8206 R rec 369dfa01-ed3c-4209-86cb-8f2e441d8045 +2024-09-11 09:08:50.189065 2024-09-11 09:08:50.189069 comef 8207 R rec 23db87a9-0981-4fd0-8aa8-4b7f66ec841b +2024-09-11 09:08:50.249047 2024-09-11 09:08:50.249052 comef 8208 R rec f1fc0b07-3ce0-4194-9a6b-9b580e2c1dd1 +2024-09-11 09:08:50.309244 2024-09-11 09:08:50.309249 comef 8209 R rec 15c71fdb-1ad5-41f9-af69-0281ed673952 +2024-09-11 09:08:50.36474 2024-09-11 09:08:50.364746 comef 8210 R rec 195df9a6-1de8-40f5-be60-a85ad052d70e +2024-09-11 09:08:50.419384 2024-09-11 09:08:50.419389 comef 8211 R rec 680ca2d1-1ca3-41aa-b431-4f245c346975 +2024-09-11 09:08:50.470938 2024-09-11 09:08:50.470943 comef 8212 R rec 75d7fbb9-7e31-4b50-8166-7a8f1f420c65 +2024-09-11 09:08:50.528683 2024-09-11 09:08:50.528687 comef 8213 R rec b1688a2d-767e-470d-9ff3-3135ef9e63bf +2024-09-11 09:08:50.582319 2024-09-11 09:08:50.582324 comef 8214 R rec 0ebc0b68-bcd8-4d1c-9058-d00690189318 +2024-09-11 09:08:50.639684 2024-09-11 09:08:50.639689 comef 8215 R rec 5536f4f6-c200-4a82-bad8-93b8524bf868 +2024-09-11 09:08:50.691556 2024-09-11 09:08:50.691561 comef 8216 R rec bb46cbe2-71a6-4387-a3d5-93b341d58ab2 +2024-09-11 09:08:50.744252 2024-09-11 09:08:50.744258 comef 8217 R rec e0344993-2cbd-45fa-bb44-e066c8e5f31e +2024-09-11 09:08:50.799107 2024-09-11 09:08:50.799111 comef 8218 R rec b9427ce9-9943-4d6a-85fd-f2ea99d31097 +2024-09-11 09:08:50.850291 2024-09-11 09:08:50.850295 comef 8219 R rec 873d03c4-e2d6-4d1e-a405-ee8e38d697bd +2024-09-11 09:08:50.905811 2024-09-11 09:08:50.905815 comef 8220 R rec 78dbc407-c3ec-48f6-9184-2be413041c10 +2024-09-11 09:08:50.962104 2024-09-11 09:08:50.962109 comef 8221 R rec 70973f6a-839b-446b-89b4-cd5375715a1f +2024-09-11 09:08:51.022393 2024-09-11 09:08:51.022398 comef 8222 R rec 9514b0ae-7dd1-40bf-bfac-e458d9961c04 +2024-09-11 09:08:51.080753 2024-09-11 09:08:51.080758 comef 8223 R rec d71070f4-73f9-426d-ae57-b375a25b7fdb +2024-09-11 09:08:51.133529 2024-09-11 09:08:51.133534 comef 8224 R rec efeff1de-4c10-4136-beac-12428fd67e11 +2024-09-11 09:08:51.200762 2024-09-11 09:08:51.200767 comef 8225 R rec 5f2b4b48-aa4f-4878-b995-af968311c33b +2024-09-11 09:08:51.259976 2024-09-11 09:08:51.259981 comef 8226 R rec 7cb2509c-156a-412a-bde7-7fac738e68b2 +2024-09-11 09:08:51.31157 2024-09-11 09:08:51.311575 comef 8227 R rec e9bb1017-1a02-4876-a8a3-9b117a0ef7de +2024-09-11 09:08:51.361253 2024-09-11 09:08:51.361258 comef 8228 R rec 9c9b6349-410a-43bb-93df-2d2d68e01f34 +2024-09-11 09:08:51.417311 2024-09-11 09:08:51.417316 comef 8229 R rec 33af17ab-9af4-4a72-82c2-7256b3984d27 +2024-09-11 09:08:51.469451 2024-09-11 09:08:51.469456 comef 8230 R rec 69805ccf-c64e-4531-9fc4-7bdfdc91c5da +2024-09-11 09:08:51.521822 2024-09-11 09:08:51.521826 comef 8231 R rec 7577143d-cc9a-4c8f-a904-b43cd9c821fb +2024-09-11 09:08:51.57519 2024-09-11 09:08:51.575195 comef 8232 R rec 5f6e1f35-73de-439d-addb-efb1d40d66d9 +2024-09-11 09:08:51.630144 2024-09-11 09:08:51.630148 comef 8233 R rec 17dffd88-3e6f-4f83-918e-41deb7624ba7 +2024-09-11 09:08:51.681162 2024-09-11 09:08:51.681167 comef 8234 R rec f4850d94-83c6-456b-8c57-6b4e26184e2d +2024-09-11 09:08:51.737355 2024-09-11 09:08:51.737361 comef 8235 R rec c2a79950-84fa-420b-906e-262eff10a1b2 +2024-09-11 09:08:51.796961 2024-09-11 09:08:51.796966 comef 8236 R rec d72578be-cc59-458b-919f-9b73b010b83f +2024-09-11 09:08:51.855218 2024-09-11 09:08:51.855223 comef 8237 R rec 31bbc7e5-1a54-482f-b703-a23322973c23 +2024-09-11 09:08:51.908254 2024-09-11 09:08:51.90826 comef 8238 R rec 72730daa-ba69-4a9b-b90c-3d61533d177d +2024-09-11 09:08:51.963753 2024-09-11 09:08:51.963758 comef 8239 R rec 4cfb075e-ea1a-46e0-8121-a70bf4e3ef00 +2024-09-11 09:08:52.021914 2024-09-11 09:08:52.021919 comef 8240 R rec 94287ebe-fe43-42bf-9d62-70baf8203a3a +2024-09-11 09:08:52.076988 2024-09-11 09:08:52.076994 comef 8241 R rec 3bb259c3-b447-4572-b905-7184b78cfa62 +2024-09-11 09:08:52.132402 2024-09-11 09:08:52.132406 comef 8242 R rec a3a3ec56-a851-4405-8f30-20b910a73f37 +2024-09-11 09:08:52.186759 2024-09-11 09:08:52.186764 comef 8243 R rec df6ef305-0622-42a6-85f0-661c2c08ce3c +2024-09-11 09:08:52.24042 2024-09-11 09:08:52.240425 comef 8244 R rec 964e13ca-27b7-4ab4-a2f7-c5dabd90299c +2024-09-11 09:08:52.295611 2024-09-11 09:08:52.295616 comef 8245 R rec d33d62c3-cce9-4ecf-8976-d675ae9ef551 +2024-09-11 09:08:52.348553 2024-09-11 09:08:52.348557 comef 8246 R rec dd80b8b9-a795-4e47-83a5-63d6686076bf +2024-09-11 09:08:52.404452 2024-09-11 09:08:52.404457 comef 8247 R rec 81fb0382-3a1a-4ec9-9ffb-b6acd3bcd836 +2024-09-11 09:08:52.469055 2024-09-11 09:08:52.46906 comef 8248 R rec 75b89fc5-879a-4f28-841c-466109c00ee8 +2024-09-11 09:08:52.529749 2024-09-11 09:08:52.529754 comef 8249 R rec abbc3251-dae5-4f3e-87d3-09f081fb2f93 +2024-09-11 09:08:52.58395 2024-09-11 09:08:52.583956 comef 8250 R rec e7089972-1d18-4b24-b47a-e685fe71365c +2024-09-11 09:08:52.64118 2024-09-11 09:08:52.641185 comef 8251 R rec 2c5421f8-f963-4f67-80c4-eba9b233e042 +2024-09-11 09:08:52.709547 2024-09-11 09:08:52.709553 comef 8252 R rec d560d133-db85-40c5-b726-2262498de7b0 +2024-09-11 09:08:52.768303 2024-09-11 09:08:52.76831 comef 8253 R rec f4422a86-95b2-4dff-923b-3711e0e80065 +2024-09-11 09:08:52.821459 2024-09-11 09:08:52.821464 comef 8254 R rec bbb039f4-48ed-466b-9140-274c1a040738 +2024-09-11 09:08:52.872089 2024-09-11 09:08:52.872094 comef 8255 R rec edd7bbc9-febf-46e3-8026-92c59cdb0eab +2024-09-11 09:08:52.925752 2024-09-11 09:08:52.925756 comef 8256 R rec 58b0b476-4ab2-4705-8c21-42964112ae23 +2024-09-11 09:08:52.984699 2024-09-11 09:08:52.984703 comef 8257 R rec f88e54bf-be6b-42c2-a245-e289a2b521db +2024-09-11 09:08:53.039596 2024-09-11 09:08:53.039601 comef 8258 R rec 87e3eb5b-1999-40ee-bb61-9626ecff24fe +2024-09-11 09:08:53.095126 2024-09-11 09:08:53.095131 comef 8259 R rec 5edecaa6-4168-4b00-be22-a6afe03a2d8d +2024-09-11 09:08:53.149591 2024-09-11 09:08:53.149596 comef 8260 R rec e23fcfd9-d0b2-4332-99af-b16a5dee3061 +2024-09-11 09:08:53.205058 2024-09-11 09:08:53.205062 comef 8261 R rec 643ce590-bf15-4925-a089-4fe74ae90591 +2024-09-11 09:08:53.256865 2024-09-11 09:08:53.25687 comef 8262 R rec 86f2306b-8dec-4b28-8534-df3b3ad908c4 +2024-09-11 09:08:53.311308 2024-09-11 09:08:53.311313 comef 8263 R rec 065c8ecc-5e01-4dbf-b8d9-675cbf83bcd8 +2024-09-11 09:08:53.36391 2024-09-11 09:08:53.363915 comef 8264 R rec 53a744a5-685f-4010-a991-7ea92c458028 +2024-09-11 09:08:53.422765 2024-09-11 09:08:53.42277 comef 8265 R rec d3fc2b06-5f4c-46fd-aba6-40c2fef5cd66 +2024-09-11 09:08:53.478456 2024-09-11 09:08:53.478461 comef 8266 R rec 913cb3ad-a470-4739-8d22-867d7e21be69 +2024-09-11 09:08:53.533409 2024-09-11 09:08:53.533414 comef 8267 R rec 8442003d-68b4-4b9e-b39f-23df79c931e4 +2024-09-11 09:08:53.600762 2024-09-11 09:08:53.600768 comef 8268 R rec 6356d037-5599-43d9-b06e-0076b4033e0f +2024-09-11 09:08:53.658591 2024-09-11 09:08:53.658596 comef 8269 R rec da118a1e-c2fc-40cd-86ec-b16f83c307f4 +2024-09-11 09:08:53.714031 2024-09-11 09:08:53.714035 comef 8270 R rec 204f1db4-ff14-4f1d-8f76-c29e31e52b9d +2024-09-11 09:08:53.768403 2024-09-11 09:08:53.768412 comef 8271 R rec b871c8f9-cb10-41f4-8089-820dc7d74adc +2024-09-11 09:08:53.823284 2024-09-11 09:08:53.823289 comef 8272 R rec a5d7500a-53d5-4f03-b7eb-413d00c6b23f +2024-09-11 09:08:53.875435 2024-09-11 09:08:53.87544 comef 8273 R rec e31e1489-d150-4406-aa13-97d7507c55f5 +2024-09-11 09:08:53.930472 2024-09-11 09:08:53.930478 comef 8274 R rec 8738a5b4-567c-47a8-9000-002696283c06 +2024-09-11 09:08:53.989065 2024-09-11 09:08:53.989069 comef 8275 R rec 5952f024-36b4-4c36-b0b1-bff2c47f69f2 +2024-09-11 09:08:54.047933 2024-09-11 09:08:54.047939 comef 8276 R rec e755f942-2d87-4a7f-b730-ce5ea7ac82e8 +2024-09-11 09:08:54.105818 2024-09-11 09:08:54.105823 comef 8277 R rec 100b8347-6f7e-4d33-aee8-5c760a289b16 +2024-09-11 09:08:54.160626 2024-09-11 09:08:54.16063 comef 8278 R rec b582ae7e-f3ac-42f5-b4ae-d2675bb853a4 +2024-09-11 09:08:54.223822 2024-09-11 09:08:54.223828 comef 8279 R rec be79a697-8c92-4f1e-8d8d-fef580dab7bb +2024-09-11 09:08:54.284476 2024-09-11 09:08:54.284482 comef 8280 R rec 91195108-b898-47f7-84bd-a2694d4b4bbf +2024-09-11 09:08:54.340781 2024-09-11 09:08:54.340786 comef 8281 R rec d3ef7a77-16b8-40a7-a457-119b7582adfe +2024-09-11 09:08:54.402916 2024-09-11 09:08:54.402921 comef 8282 R rec 0b655a57-e7ad-4320-ad57-dbd7363136e8 +2024-09-11 09:08:54.463422 2024-09-11 09:08:54.463427 comef 8283 R rec 6f3154c5-37ac-495c-bc47-67b1a66a2283 +2024-09-11 09:08:54.51808 2024-09-11 09:08:54.518085 comef 8284 R rec e23d5ca6-80f7-43f2-a5c8-61bd9d0e81a4 +2024-09-11 09:08:54.573875 2024-09-11 09:08:54.573879 comef 8285 R rec cf9faa5a-ab18-4fcf-b46d-19326191cdd0 +2024-09-11 09:08:54.632953 2024-09-11 09:08:54.632957 comef 8286 R rec 84b0369c-e0d6-4a1c-87b0-ff56e085cea5 +2024-09-11 09:08:54.695266 2024-09-11 09:08:54.695271 comef 8287 R rec 01d023ec-958d-429f-abe9-a357758788b8 +2024-09-11 09:08:54.765558 2024-09-11 09:08:54.765562 comef 8288 R rec 8e62c4cf-58e6-4555-9506-8a5c060c6de6 +2024-09-11 09:08:54.8232 2024-09-11 09:08:54.823205 comef 8289 R rec 4b56cbb2-acc2-490d-a34b-54800ac5ce89 +2024-09-11 09:08:54.877761 2024-09-11 09:08:54.877766 comef 8290 R rec b9dd1749-8a29-4b79-bdb4-b0ecc5fcfa25 +2024-09-11 09:08:54.932692 2024-09-11 09:08:54.932697 comef 8291 R rec cc9e6072-f0cd-4eab-bafe-fead4875cbe8 +2024-09-11 09:08:54.987436 2024-09-11 09:08:54.987441 comef 8292 R rec 808db494-8535-450e-ba5b-52a360e5ba4b +2024-09-11 09:08:55.045716 2024-09-11 09:08:55.045721 comef 8293 R rec b628f1f6-90f0-4770-81b2-3f0761764987 +2024-09-11 09:08:55.100582 2024-09-11 09:08:55.100586 comef 8294 R rec eb692926-439a-4b36-bddb-f252968c1ccb +2024-09-11 09:08:55.159024 2024-09-11 09:08:55.15903 comef 8295 R rec 2c1dbccd-dfa5-4603-9125-2e3a652ec825 +2024-09-11 09:08:55.220618 2024-09-11 09:08:55.220623 comef 8296 R rec 53203182-9086-4fe8-881d-d94b0eb1f72f +2024-09-11 09:08:55.295429 2024-09-11 09:08:55.295435 comef 8297 R rec 338cfc4a-b19f-4347-b29a-26c78f76029a +2024-09-11 09:08:55.351492 2024-09-11 09:08:55.351498 comef 8298 R rec 5a4a8ea5-4c3a-4770-b279-3f795156617a +2024-09-11 09:08:55.403666 2024-09-11 09:08:55.40367 comef 8299 R rec 154b6657-d41b-4548-8cee-da66fc8332be +2024-09-11 09:08:55.457532 2024-09-11 09:08:55.457537 comef 8300 R rec cf5788ef-9855-41ae-8a80-3dbf076739f7 +2024-09-11 09:08:55.519887 2024-09-11 09:08:55.519891 comef 8301 R rec 9d0441da-7dfb-4ca9-993b-d6a260538c68 +2024-09-11 09:08:55.620532 2024-09-11 09:08:55.620536 comef 8302 R rec 441f4ae6-3501-46c2-8946-cb5d7407cc45 +2024-09-11 09:08:55.674493 2024-09-11 09:08:55.674498 comef 8303 R rec ab37b96b-1734-4409-bfc4-81546a7e00fb +2024-09-11 09:08:55.732089 2024-09-11 09:08:55.732093 comef 8304 R rec 927be1a2-8f51-4dd2-ab2b-2bfcee53616f +2024-09-11 09:08:55.790502 2024-09-11 09:08:55.790507 comef 8305 R rec c1e07b51-dd75-4807-9470-2b8e812a3474 +2024-09-11 09:08:55.854704 2024-09-11 09:08:55.854708 comef 8306 R rec 870f7fa7-ed8d-4bc5-be99-8f6eb5def22f +2024-09-11 09:08:55.913237 2024-09-11 09:08:55.913242 comef 8307 R rec 9e70a815-31f4-48b5-bc80-cb564441cd4a +2024-09-11 09:08:55.96897 2024-09-11 09:08:55.968975 comef 8308 R rec 15d197ef-3564-408c-8650-7f94138fb9f7 +2024-09-11 09:08:56.031214 2024-09-11 09:08:56.031219 comef 8309 R rec e3ed219c-024f-48f9-9f08-9ab78ab5ca6f +2024-09-11 09:08:56.084127 2024-09-11 09:08:56.084133 comef 8310 R rec effe939a-207c-4509-8eaa-93a7bef685ba +2024-09-11 09:08:56.140279 2024-09-11 09:08:56.140284 comef 8311 R rec 024f3cf9-22cb-4b19-a335-9d9ca332388d +2024-09-11 09:08:56.195832 2024-09-11 09:08:56.195837 comef 8312 R rec 5d9d1f13-7cd1-458f-b86d-b14fa86fff1e +2024-09-11 09:08:56.25269 2024-09-11 09:08:56.252694 comef 8313 R rec 5cc8cb73-5b32-4470-9520-b749fd26bf9d +2024-09-11 09:08:56.308746 2024-09-11 09:08:56.308751 comef 8314 R rec 37d58990-26fa-4bb3-880e-09716bfaa1da +2024-09-11 09:08:56.365246 2024-09-11 09:08:56.36525 comef 8315 R rec 145f3e67-400c-4a80-a418-e1c671e73142 +2024-09-11 09:08:56.425058 2024-09-11 09:08:56.425064 comef 8316 R rec fb8ac5c8-904a-437e-9bd9-063b2b921ee9 +2024-09-11 09:08:56.483415 2024-09-11 09:08:56.483421 comef 8317 R rec 10fc4ffc-44b6-44a6-ba08-4bbd4b481923 +2024-09-11 09:08:56.541898 2024-09-11 09:08:56.541902 comef 8318 R rec 197dd5a1-6062-4814-bfd6-a2477b6d50ff +2024-09-11 09:08:56.598831 2024-09-11 09:08:56.598836 comef 8319 R rec 7939cdfd-5cb9-4251-b6cc-70c7f1c46edc +2024-09-11 09:08:56.653685 2024-09-11 09:08:56.65369 comef 8320 R rec 03ad4262-0797-4625-96b9-265da4aa66e1 +2024-09-11 09:08:56.714601 2024-09-11 09:08:56.714606 comef 8321 R rec be0ebe57-8e2f-4dd9-afc5-15c0ac03b3e7 +2024-09-11 09:08:56.767676 2024-09-11 09:08:56.767681 comef 8322 R rec 4d467020-8c7c-4ad1-b858-61100e7fd28d +2024-09-11 09:08:56.824495 2024-09-11 09:08:56.8245 comef 8323 R rec 14576877-17f9-4b1d-9a70-9ffc3cbcac70 +2024-09-11 09:08:56.87999 2024-09-11 09:08:56.879994 comef 8324 R rec 71e2f3b2-a8db-4ff8-9011-7b20e6fe09ed +2024-09-11 09:08:56.935634 2024-09-11 09:08:56.935638 comef 8325 R rec b79fd861-f5c6-47ce-a8ea-90b62acbc84c +2024-09-11 09:08:56.998297 2024-09-11 09:08:56.998301 comef 8326 R rec 470f2f2f-273a-47ef-b4a6-ca243578712a +2024-09-11 09:08:57.053165 2024-09-11 09:08:57.053169 comef 8327 R rec 73b0b581-982c-48d9-a4e8-ec00284c7272 +2024-09-11 09:08:57.120147 2024-09-11 09:08:57.120158 comef 8328 R rec 3d1bbaae-dea9-4d34-910b-ba02441d7d51 +2024-09-11 09:08:57.174837 2024-09-11 09:08:57.174842 comef 8329 R rec fc916a8c-058a-48e4-ac95-ea7784457648 +2024-09-11 09:08:57.231333 2024-09-11 09:08:57.231338 comef 8330 R rec 94575f28-caff-41f9-940b-8258528cd99d +2024-09-11 09:08:57.286169 2024-09-11 09:08:57.286174 comef 8331 R rec 0acbc63c-da96-467a-8e6c-14b28f409d26 +2024-09-11 09:08:57.347775 2024-09-11 09:08:57.34778 comef 8332 R rec 8d2eefb9-2f00-4845-8b3b-535335803d65 +2024-09-11 09:08:57.405774 2024-09-11 09:08:57.405779 comef 8333 R rec 7a1be4a8-98ba-4896-b84b-64b9b44e0c34 +2024-09-11 09:08:57.466261 2024-09-11 09:08:57.466265 comef 8334 R rec 664f3855-202c-477b-bb00-73569640926c +2024-09-11 09:08:57.52233 2024-09-11 09:08:57.522336 comef 8335 R rec ba73b06a-eeb2-4349-9ab6-826214b53f9c +2024-09-11 09:08:57.57784 2024-09-11 09:08:57.577845 comef 8336 R rec 6888edcc-d98c-4daa-908a-859b1caedfa7 +2024-09-11 09:08:57.645624 2024-09-11 09:08:57.64563 comef 8337 R rec 0a329aff-d606-43b5-bff0-cea8fd395ca9 +2024-09-11 09:08:57.702854 2024-09-11 09:08:57.702864 comef 8338 R rec a97cd512-0a5f-4655-bb06-a52b6b19f8af +2024-09-11 09:08:57.75667 2024-09-11 09:08:57.756676 comef 8339 R rec 8daaa28a-7371-4cfe-be7e-ba43a5484fc3 +2024-09-11 09:08:57.808241 2024-09-11 09:08:57.808245 comef 8340 R rec e11c59a3-5e16-49da-8ee7-a1f72b1429e9 +2024-09-11 09:08:57.863096 2024-09-11 09:08:57.863101 comef 8341 R rec d6c5a240-2d4e-409b-adb7-ef9542b6e6b4 +2024-09-11 09:08:57.918146 2024-09-11 09:08:57.918151 comef 8342 R rec e0078423-81a4-46a9-9b07-7174f5f03fb1 +2024-09-11 09:08:57.968872 2024-09-11 09:08:57.968879 comef 8343 R rec 6afa5e0f-b640-43e2-8fe8-751252f8cf9c +2024-09-11 09:08:58.02585 2024-09-11 09:08:58.025856 comef 8344 R rec 2f450073-7d4c-4d16-87bb-517d3ca97c4c +2024-09-11 09:08:58.090351 2024-09-11 09:08:58.090357 comef 8345 R rec 1435150c-8189-4480-b205-b15bf346c468 +2024-09-11 09:08:58.153225 2024-09-11 09:08:58.15323 comef 8346 R rec 1dfae54d-1311-4afe-ab76-aa685784829b +2024-09-11 09:08:58.20733 2024-09-11 09:08:58.207336 comef 8347 R rec 3db6b1e2-06c1-4f03-b7d8-ceeeb004f5fd +2024-09-11 09:08:58.262974 2024-09-11 09:08:58.262978 comef 8348 R rec 0ed6e07a-1e84-4533-90d0-891d8a2cb8b5 +2024-09-11 09:08:58.320262 2024-09-11 09:08:58.320266 comef 8349 R rec 7621d8cf-b51a-4b9d-926d-0003ed55d775 +2024-09-11 09:08:58.379052 2024-09-11 09:08:58.379057 comef 8350 R rec 29125a67-219c-46ac-8fe5-adad9df22006 +2024-09-11 09:08:58.446156 2024-09-11 09:08:58.446161 comef 8351 R rec e2a717ee-1faa-4611-a746-a8f8f385167d +2024-09-11 09:08:58.502058 2024-09-11 09:08:58.502062 comef 8352 R rec a9ed1d0b-71ac-48ee-acb6-73df2301805c +2024-09-11 09:08:58.5561 2024-09-11 09:08:58.556104 comef 8353 R rec 3b214fac-6487-4ba9-86db-97a22ebb032d +2024-09-11 09:08:58.614548 2024-09-11 09:08:58.614553 comef 8354 R rec d4146124-d3f1-4b84-963c-0b9d20fe5d9c +2024-09-11 09:08:58.668113 2024-09-11 09:08:58.668119 comef 8355 R rec 5acad3b3-cb72-43ad-a880-eed9e6f18a5e +2024-09-11 09:08:58.722065 2024-09-11 09:08:58.722069 comef 8356 R rec 69816e9c-6aa2-42fa-8c1b-d113c5b3711d +2024-09-11 09:08:58.778258 2024-09-11 09:08:58.778264 comef 8357 R rec 81e39a44-c3ad-458c-8b00-ebe2c73fa49d +2024-09-11 09:08:58.833142 2024-09-11 09:08:58.833147 comef 8358 R rec 6303d849-9357-4e67-90cf-7923386da3a1 +2024-09-11 09:08:58.889309 2024-09-11 09:08:58.889314 comef 8359 R rec ebd75482-8cd7-4559-99ba-2c4aa49f1653 +2024-09-11 09:08:58.943528 2024-09-11 09:08:58.943533 comef 8360 R rec 39f03613-afdd-4d41-b21b-84f9e8009d4d +2024-09-11 09:08:58.999141 2024-09-11 09:08:58.999146 comef 8361 R rec a9cf522a-e6d1-4db5-95fa-9215e882f892 +2024-09-11 09:08:59.060506 2024-09-11 09:08:59.060511 comef 8362 R rec 8ee8698e-87c7-4042-9ccc-516cfbda428b +2024-09-11 09:08:59.118439 2024-09-11 09:08:59.118445 comef 8363 R rec a0fb5d9d-3cb9-4740-ad8e-cd312c4bbd32 +2024-09-11 09:08:59.176886 2024-09-11 09:08:59.176891 comef 8364 R rec 02560090-4cd5-40c8-b37b-950f4bd87698 +2024-09-11 09:08:59.239439 2024-09-11 09:08:59.239444 comef 8365 R rec 9ac53631-bf02-44a3-a88f-b9bac7ab01d0 +2024-09-11 09:08:59.308017 2024-09-11 09:08:59.308023 comef 8366 R rec 3b253550-f2f8-4648-99f5-1acfa7cc98fb +2024-09-11 09:08:59.36042 2024-09-11 09:08:59.360425 comef 8367 R rec aaa0825c-68c7-4410-966c-79edcc09b22d +2024-09-11 09:08:59.411651 2024-09-11 09:08:59.411656 comef 8368 R rec 167a7a6f-bfe9-4221-8810-6226d9f2ed18 +2024-09-11 09:08:59.464589 2024-09-11 09:08:59.464594 comef 8369 R rec a88d4447-a7b8-430b-a588-94ffce75a751 +2024-09-11 09:08:59.519818 2024-09-11 09:08:59.519823 comef 8370 R rec 84b151e7-5a74-442f-96f0-8924471ee55c +2024-09-11 09:08:59.580515 2024-09-11 09:08:59.58052 comef 8371 R rec 62901358-afa7-4963-aa58-d7c881924429 +2024-09-11 09:08:59.63459 2024-09-11 09:08:59.634598 comef 8372 R rec 0da16089-7dee-4526-9bdc-06b5089633ef +2024-09-11 09:08:59.688009 2024-09-11 09:08:59.688014 comef 8373 R rec cfc07ffb-d48a-4435-b77c-203af4fa7e99 +2024-09-11 09:08:59.743692 2024-09-11 09:08:59.743697 comef 8374 R rec 4a8e1474-af91-41ce-85c2-b7841a9919f0 +2024-09-11 09:08:59.801468 2024-09-11 09:08:59.801475 comef 8375 R rec 2e70a099-d75c-4f43-a4bb-1733bc1ef11e +2024-09-11 09:08:59.858486 2024-09-11 09:08:59.858491 comef 8376 R rec ad19a04e-a884-4626-b582-b2e3c75a35cd +2024-09-11 09:08:59.914929 2024-09-11 09:08:59.914934 comef 8377 R rec dabff3e0-6610-44f5-8700-143935f7396e +2024-09-11 09:08:59.969052 2024-09-11 09:08:59.969057 comef 8378 R rec 3a6f21b3-582a-4b6c-84dd-1aadf9ca6139 +2024-09-11 09:09:00.02398 2024-09-11 09:09:00.023985 comef 8379 R rec fd46865f-0400-44b3-89ce-783b2eb07e6d +2024-09-11 09:09:00.075751 2024-09-11 09:09:00.075755 comef 8380 R rec 62de2013-a5e5-442f-9bc7-ff6ef0d67af2 +2024-09-11 09:09:00.132438 2024-09-11 09:09:00.132443 comef 8381 R rec 6010f2d5-b780-490a-9aec-bc58d1e63d5c +2024-09-11 09:09:00.193155 2024-09-11 09:09:00.193161 comef 8382 R rec 8a716385-6bb1-4e4a-8920-45a8fa52ce48 +2024-09-11 09:09:00.248614 2024-09-11 09:09:00.248618 comef 8383 R rec 298837a0-2527-4f8a-99ea-b851e5da18fa +2024-09-11 09:09:00.301926 2024-09-11 09:09:00.301933 comef 8384 R rec d662c3e3-dda9-40a1-970e-4b20eca5707c +2024-09-11 09:09:00.354562 2024-09-11 09:09:00.354567 comef 8385 R rec f8e6f6d3-2835-4018-9226-542a16449ad5 +2024-09-11 09:09:00.410635 2024-09-11 09:09:00.410639 comef 8386 R rec 303dbb40-67f2-4eb5-b64b-261fa5c5b2d0 +2024-09-11 09:09:00.467287 2024-09-11 09:09:00.467292 comef 8387 R rec aa94f405-f632-4687-a61f-4ce59ce69b23 +2024-09-11 09:09:00.522024 2024-09-11 09:09:00.522031 comef 8388 R rec 92ec02f5-01fd-4629-876a-0cf3094f5aed +2024-09-11 09:09:00.575981 2024-09-11 09:09:00.575986 comef 8389 R rec 69ec5411-93a9-4323-abba-4c7dc4783b3a +2024-09-11 09:09:00.63877 2024-09-11 09:09:00.638775 comef 8390 R rec fa931fc8-cabd-441d-8b64-f9c61fd81727 +2024-09-11 09:09:00.719608 2024-09-11 09:09:00.719613 comef 8391 R rec a7f6a9f5-2697-4527-84ff-27612452f784 +2024-09-11 09:09:00.784256 2024-09-11 09:09:00.784262 comef 8392 R rec 7d4e352a-e58e-4cb8-977b-44698d12a543 +2024-09-11 09:09:00.855826 2024-09-11 09:09:00.855832 comef 8393 R rec e34faee4-9837-4c70-b8ca-b4644871abdb +2024-09-11 09:09:00.926214 2024-09-11 09:09:00.92622 comef 8394 R rec fd95751e-cb0e-41f0-837d-8f3f69a35891 +2024-09-11 09:09:00.989383 2024-09-11 09:09:00.989388 comef 8395 R rec bf5f92e5-8d25-438c-82f2-79faef684c3d +2024-09-11 09:09:01.066826 2024-09-11 09:09:01.066833 comef 8396 R rec 32c552fa-b866-41d7-9f30-bb24b5634986 +2024-09-11 09:09:01.134719 2024-09-11 09:09:01.134728 comef 8397 R rec d5368694-62fa-4d02-86d8-eb416b18e397 +2024-09-11 09:09:01.198156 2024-09-11 09:09:01.198162 comef 8398 R rec 8ac19977-ca8e-4106-bb7d-ca3efd5feab8 +2024-09-11 09:09:01.258655 2024-09-11 09:09:01.25866 comef 8399 R rec 52adbe10-3fe0-4efe-bdf0-6598cec403f6 +2024-09-11 09:09:01.328443 2024-09-11 09:09:01.328448 comef 8400 R rec fcb96ec4-b2e3-4390-b463-5a3827e6bbbb +2024-09-11 09:09:01.385483 2024-09-11 09:09:01.38549 comef 8401 R rec c6e63295-794e-49b7-b21d-e3b9132d53d6 +2024-09-11 09:09:01.44162 2024-09-11 09:09:01.441624 comef 8402 R rec 7c91cf6a-f9bd-421d-a45d-767d280c8087 +2024-09-11 09:09:01.503791 2024-09-11 09:09:01.503796 comef 8403 R rec c3b9d78f-850b-4908-bb05-11ab893d4ec4 +2024-09-11 09:09:01.562126 2024-09-11 09:09:01.56213 comef 8404 R rec 4fecf265-9048-4d79-811f-36aaccd833f5 +2024-09-11 09:09:01.621878 2024-09-11 09:09:01.621883 comef 8405 R rec 2f34c97c-36f3-4c01-a8ea-73abd70d6ea9 +2024-09-11 09:09:01.678421 2024-09-11 09:09:01.678426 comef 8406 R rec e0057648-c72a-405a-a27a-602295dfc29b +2024-09-11 09:09:01.734077 2024-09-11 09:09:01.734083 comef 8407 R rec 1fd76a80-df1b-4e62-9150-13d57f5cf7d2 +2024-09-11 09:09:01.790735 2024-09-11 09:09:01.790739 comef 8408 R rec 2d6190b1-98d8-4806-8327-2da3d54cbd3c +2024-09-11 09:09:01.846114 2024-09-11 09:09:01.846119 comef 8409 R rec 04e09a71-9b16-4af6-a67a-e2109cafb3d4 +2024-09-11 09:09:01.902112 2024-09-11 09:09:01.902117 comef 8410 R rec 7ec88d9c-3921-468b-a69d-7d18f49a16d2 +2024-09-11 09:09:01.957614 2024-09-11 09:09:01.957618 comef 8411 R rec 83c316d1-c121-4ae4-88a4-874ebb0a1c53 +2024-09-11 09:09:02.014867 2024-09-11 09:09:02.014872 comef 8412 R rec 7ce461f0-87bd-4130-a397-26d82d126d94 +2024-09-11 09:09:02.073181 2024-09-11 09:09:02.073186 comef 8413 R rec 22271c7f-713a-4673-adee-0e8a3d454f45 +2024-09-11 09:09:02.137498 2024-09-11 09:09:02.137504 comef 8414 R rec f3d03d45-6ab9-4f8f-887c-f5b6b5a5f43d +2024-09-11 09:09:02.199059 2024-09-11 09:09:02.199065 comef 8415 R rec a6cced13-1655-4da7-a51f-c202fcdc8e28 +2024-09-11 09:09:02.252434 2024-09-11 09:09:02.25244 comef 8416 R rec 375d1dca-44f6-4782-ad37-855c45f63513 +2024-09-11 09:09:02.307926 2024-09-11 09:09:02.307932 comef 8417 R rec b29458b6-30fc-4be3-8f29-0666266bd82f +2024-09-11 09:09:02.363756 2024-09-11 09:09:02.363762 comef 8418 R rec 2d3cacd1-82cc-4a4b-81f8-06ea3493299e +2024-09-11 09:09:02.421399 2024-09-11 09:09:02.421403 comef 8419 R rec 74a5da78-6b35-44b0-a541-c9e265fdd5c1 +2024-09-11 09:09:02.476027 2024-09-11 09:09:02.476032 comef 8420 R rec ae1bcf8f-cf4c-4357-b704-b4d72dca31c6 +2024-09-11 09:09:02.528848 2024-09-11 09:09:02.528853 comef 8421 R rec 187c7d9f-6309-4f22-92ca-16a441242427 +2024-09-11 09:09:02.589279 2024-09-11 09:09:02.589284 comef 8422 R rec cde46517-4e1a-4a41-bb6c-cad9b032f04a +2024-09-11 09:09:02.641735 2024-09-11 09:09:02.641739 comef 8423 R rec 53c9180b-af25-48e3-a3a8-65e724d2d658 +2024-09-11 09:09:02.697607 2024-09-11 09:09:02.697613 comef 8424 R rec 69fcfdb1-0d6d-4a38-a781-255d285015fe +2024-09-11 09:09:02.753713 2024-09-11 09:09:02.753718 comef 8425 R rec 44be44ed-484b-4e19-8b20-e7bf956deb8d +2024-09-11 09:09:02.808727 2024-09-11 09:09:02.808732 comef 8426 R rec 2eff6f12-b6de-46a7-a419-f3efda29847b +2024-09-11 09:09:02.863453 2024-09-11 09:09:02.863457 comef 8427 R rec d13b267f-88b0-4591-9a86-0c11d66fc774 +2024-09-11 09:09:02.915322 2024-09-11 09:09:02.915326 comef 8428 R rec c20e237f-1286-4c9b-b832-8a2382017d78 +2024-09-11 09:09:02.971669 2024-09-11 09:09:02.971673 comef 8429 R rec cf87a1c6-a168-4675-9b67-bfe5f7669dbe +2024-09-11 09:09:03.028485 2024-09-11 09:09:03.02849 comef 8430 R rec 71a4e03b-c350-4fd2-9ab3-5abffb7ade7f +2024-09-11 09:09:03.088132 2024-09-11 09:09:03.08814 comef 8431 R rec 62a06362-28aa-410a-a9b1-d15b721da024 +2024-09-11 09:09:03.14053 2024-09-11 09:09:03.140535 comef 8432 R rec c242b11b-35f8-479b-b894-c7dc5e93947e +2024-09-11 09:09:03.19375 2024-09-11 09:09:03.193755 comef 8433 R rec 4453565f-a40a-417e-bef5-9c2434eaa545 +2024-09-11 09:09:03.261924 2024-09-11 09:09:03.26193 comef 8434 R rec ac60ed9c-de59-417f-9a5a-5129288e1c55 +2024-09-11 09:09:03.325381 2024-09-11 09:09:03.325388 comef 8435 R rec ce950700-ed6a-46b3-bae7-0eefe19008b2 +2024-09-11 09:09:03.383264 2024-09-11 09:09:03.383269 comef 8436 R rec 02c38177-ea13-485c-836f-e1813286e4fe +2024-09-11 09:09:03.44298 2024-09-11 09:09:03.442985 comef 8437 R rec f05206a6-2463-42f6-8950-1a1c95386ecc +2024-09-11 09:09:03.505794 2024-09-11 09:09:03.505799 comef 8438 R rec 1a733363-7c28-45f4-ae5c-c5ff9c397f28 +2024-09-11 09:09:03.562786 2024-09-11 09:09:03.562792 comef 8439 R rec 4d4ba2ab-8fad-4e7d-b330-5c8de460d978 +2024-09-11 09:09:03.623159 2024-09-11 09:09:03.623164 comef 8440 R rec 7101c6bd-9e84-4f36-bb68-dc2dac29c6d1 +2024-09-11 09:09:03.68197 2024-09-11 09:09:03.681975 comef 8441 R rec b1a47461-d857-43ed-9fff-bcea8e917001 +2024-09-11 09:09:03.740875 2024-09-11 09:09:03.74088 comef 8442 R rec a215e39f-106c-4f8a-8de7-a61a072e0623 +2024-09-11 09:09:03.799401 2024-09-11 09:09:03.799405 comef 8443 R rec 72ad4836-9e60-44b2-88c5-ebef8d0e2325 +2024-09-11 09:09:03.854532 2024-09-11 09:09:03.854537 comef 8444 R rec 369bb12d-3a08-4176-b59e-d7e43a2af5b2 +2024-09-11 09:09:03.912076 2024-09-11 09:09:03.912081 comef 8445 R rec 1aa2367d-a2b6-4697-bccf-ce5b19291cd1 +2024-09-11 09:09:03.972625 2024-09-11 09:09:03.97263 comef 8446 R rec 538d62e5-b870-40df-8ec9-c4e686380b8f +2024-09-11 09:09:04.034513 2024-09-11 09:09:04.034517 comef 8447 R rec 85475fe7-9164-4774-92b5-da114d156303 +2024-09-11 09:09:04.094349 2024-09-11 09:09:04.094354 comef 8448 R rec 1f87f354-c337-4af2-843b-c1944bbbf1ce +2024-09-11 09:09:04.14836 2024-09-11 09:09:04.148365 comef 8449 R rec bbd1a37e-70b9-48bc-9973-671840abeb1d +2024-09-11 09:09:04.205271 2024-09-11 09:09:04.205276 comef 8450 R rec b5b076c9-388e-41be-b4fe-749d95097486 +2024-09-11 09:09:04.269998 2024-09-11 09:09:04.270002 comef 8451 R rec ef981523-3945-43a6-bbd2-b45f4cd4b9a1 +2024-09-11 09:09:04.324439 2024-09-11 09:09:04.324445 comef 8452 R rec bece6af0-72b8-4376-b7dd-5eba88553b44 +2024-09-11 09:09:04.379079 2024-09-11 09:09:04.379084 comef 8453 R rec 2005c0d0-cc16-46f7-8886-d89286e5f2f0 +2024-09-11 09:09:04.439898 2024-09-11 09:09:04.439902 comef 8454 R rec cdeba99c-6e96-423f-8003-cd2054d6059b +2024-09-11 09:09:04.496455 2024-09-11 09:09:04.49646 comef 8455 R rec f0bba441-076b-4071-b432-7435aed59afd +2024-09-11 09:09:04.551314 2024-09-11 09:09:04.55132 comef 8456 R rec b7e2cb4e-8c74-4d3f-873d-c5a7f19f8139 +2024-09-11 09:09:04.60459 2024-09-11 09:09:04.604595 comef 8457 R rec 809965da-7efa-444f-b164-0d0d2ccb67cc +2024-09-11 09:09:04.656107 2024-09-11 09:09:04.656111 comef 8458 R rec 96dd772a-0a06-43d1-92c6-d0d4ed45aad7 +2024-09-11 09:09:04.710663 2024-09-11 09:09:04.710669 comef 8459 R rec db9e5a9a-5e5c-4af1-81ab-f6b977294bc4 +2024-09-11 09:09:04.76301 2024-09-11 09:09:04.763015 comef 8460 R rec 635c9893-2440-4ed8-87a4-b1f99cada4f3 +2024-09-11 09:09:04.825728 2024-09-11 09:09:04.825732 comef 8461 R rec 458c13dd-fbc0-4b9b-846f-32f7a0bfb2f8 +2024-09-11 09:09:04.88513 2024-09-11 09:09:04.885134 comef 8462 R rec bbdc289e-38a2-4785-8331-60f442d0a453 +2024-09-11 09:09:05.006189 2024-09-11 09:09:05.006194 comef 8463 R rec 225654c9-01c6-4d1e-a12c-9c8a35343ad8 +2024-09-11 09:09:05.064027 2024-09-11 09:09:05.064031 comef 8464 R rec 351731ea-b9d0-4665-a8ed-e807dcea6f3f +2024-09-11 09:09:05.124936 2024-09-11 09:09:05.12494 comef 8465 R rec f36d43fd-000a-4a41-9566-b60d6428d716 +2024-09-11 09:09:05.178342 2024-09-11 09:09:05.178347 comef 8466 R rec d50455b1-0f7d-41c3-9f22-4f8ebd6e5e5f +2024-09-11 09:09:05.235011 2024-09-11 09:09:05.235016 comef 8467 R rec 7296ba49-7b3b-41c2-a6f4-af85b539e657 +2024-09-11 09:09:05.290569 2024-09-11 09:09:05.290574 comef 8468 R rec da1b18a6-5807-4bbf-a382-695fc192e22f +2024-09-11 09:09:05.348494 2024-09-11 09:09:05.348499 comef 8469 R rec c931d5cd-cb82-402b-830e-ab27de8ec730 +2024-09-11 09:09:05.401947 2024-09-11 09:09:05.401952 comef 8470 R rec 95b6ea0a-7324-49cb-a508-e1964c3c7031 +2024-09-11 09:09:05.458312 2024-09-11 09:09:05.458317 comef 8471 R rec 330dff3e-a6c4-4953-b7cd-e59f51216300 +2024-09-11 09:09:05.529231 2024-09-11 09:09:05.529236 comef 8472 R rec d2e726f9-aabe-4e25-9aab-3ab9d4ca042e +2024-09-11 09:09:05.594059 2024-09-11 09:09:05.594064 comef 8473 R rec 08497322-c32d-4799-92b5-da8d690eb474 +2024-09-11 09:09:05.651477 2024-09-11 09:09:05.651484 comef 8474 R rec 0b44f340-f67b-4359-93da-96811235d4fb +2024-09-11 09:09:05.706767 2024-09-11 09:09:05.706771 comef 8475 R rec afad0eff-eaf1-4f4c-aaad-ab6870c90286 +2024-09-11 09:09:05.765536 2024-09-11 09:09:05.765542 comef 8476 R rec 8a855338-5426-48a8-a42c-f38e678ee50a +2024-09-11 09:09:05.824573 2024-09-11 09:09:05.824578 comef 8477 R rec cd865085-c4f3-4568-98ed-716da33fed0e +2024-09-11 09:09:05.880995 2024-09-11 09:09:05.881 comef 8478 R rec bc7f5b73-850c-4734-bae9-2d296763aa30 +2024-09-11 09:09:05.943933 2024-09-11 09:09:05.943939 comef 8479 R rec 287ad6a9-a294-4180-95f0-6a68efa547e6 +2024-09-11 09:09:06.008065 2024-09-11 09:09:06.008071 comef 8480 R rec 51a024e6-6903-475e-b63d-4b2d8a0a05f3 +2024-09-11 09:09:06.071012 2024-09-11 09:09:06.071017 comef 8481 R rec 1ce30042-c510-49d7-bfd8-b29926e9d5de +2024-09-11 09:09:06.136984 2024-09-11 09:09:06.13699 comef 8482 R rec c9a65ee5-f7e3-4efa-82bf-2acdac70f70c +2024-09-11 09:09:06.203262 2024-09-11 09:09:06.203268 comef 8483 R rec 8903d2a4-bdcd-40ef-b9fa-7dc998dfc662 +2024-09-11 09:09:06.260618 2024-09-11 09:09:06.260623 comef 8484 R rec 455256e6-aa7f-4b11-8ebc-bacaba4df3ac +2024-09-11 09:09:06.322229 2024-09-11 09:09:06.322235 comef 8485 R rec 2f43903d-a8cc-4b0e-95e7-459360d4571e +2024-09-11 09:09:06.379785 2024-09-11 09:09:06.37979 comef 8486 R rec 74f2284f-e2d4-422d-a80f-8f7dcb6933cb +2024-09-11 09:09:06.438311 2024-09-11 09:09:06.438315 comef 8487 R rec cbc81aa8-61b3-4bef-a876-b34fdd38194c +2024-09-11 09:09:06.496218 2024-09-11 09:09:06.496224 comef 8488 R rec 9672a0ef-03bc-4211-a181-760b8bc0c202 +2024-09-11 09:09:06.553182 2024-09-11 09:09:06.553188 comef 8489 R rec f88b5937-f15c-41d4-bf32-eec6bd4ddfee +2024-09-11 09:09:06.611968 2024-09-11 09:09:06.611974 comef 8490 R rec f0cb5df0-b0af-4504-8110-e74ceefc87f9 +2024-09-11 09:09:06.669039 2024-09-11 09:09:06.669044 comef 8491 R rec 17ad52a3-c41b-457e-9cc8-badb4ffe493f +2024-09-11 09:09:06.723803 2024-09-11 09:09:06.723808 comef 8492 R rec 1f6a84a5-fc12-44d7-ab96-48dc422ba5fe +2024-09-11 09:09:06.782074 2024-09-11 09:09:06.782079 comef 8493 R rec 906f0bfb-b528-4625-bc36-3ac02c4548c6 +2024-09-11 09:09:06.84727 2024-09-11 09:09:06.847274 comef 8494 R rec a6e696a7-111d-43f3-a067-784c70cfa6b8 +2024-09-11 09:09:06.914779 2024-09-11 09:09:06.914784 comef 8495 R rec 8b386e66-f6e8-4449-ad81-d0425554509a +2024-09-11 09:09:06.979648 2024-09-11 09:09:06.979652 comef 8496 R rec 18a6689e-5212-4c06-8dac-9d88214a7e56 +2024-09-11 09:09:07.041777 2024-09-11 09:09:07.04178 comef 8497 R rec d868962d-a758-426c-97cb-8444201c10c0 +2024-09-11 09:09:07.103982 2024-09-11 09:09:07.103986 comef 8498 R rec 63a613ee-c70a-4259-ba58-c4fccc74de77 +2024-09-11 09:09:07.160029 2024-09-11 09:09:07.160034 comef 8499 R rec 275e5f36-f311-4e8d-9ae0-76075a4254a2 +2024-09-11 09:09:07.216452 2024-09-11 09:09:07.216457 comef 8500 R rec b83c708d-ced7-449d-8c74-083b5b4a77a2 +2024-09-11 09:09:07.272527 2024-09-11 09:09:07.272532 comef 8501 R rec 10d8d084-9062-4b2c-80f2-ee79cf5887ed +2024-09-11 09:09:07.324526 2024-09-11 09:09:07.324531 comef 8502 R rec bfc52e2f-1562-4daa-a621-6726d209fae1 +2024-09-11 09:09:07.382633 2024-09-11 09:09:07.382637 comef 8503 R rec a8ac3256-d26d-489b-ae74-9ee6ed1832c3 +2024-09-11 09:09:07.440058 2024-09-11 09:09:07.440063 comef 8504 R rec 095292f3-dca5-4bb4-930d-a41e27d39c41 +2024-09-11 09:09:07.503948 2024-09-11 09:09:07.503953 comef 8505 R rec a6c2f356-e5fa-4a79-bc72-cdd0c6c9c085 +2024-09-11 09:09:07.567883 2024-09-11 09:09:07.567888 comef 8506 R rec 45aee367-687d-4849-b32e-5b7a62aa6916 +2024-09-11 09:09:07.625843 2024-09-11 09:09:07.625849 comef 8507 R rec 14141ad0-9492-4f14-9587-b077c759d4e6 +2024-09-11 09:09:07.679466 2024-09-11 09:09:07.67947 comef 8508 R rec 0fb50ef8-8a99-4566-8ff0-80739e971fd3 +2024-09-11 09:09:07.729568 2024-09-11 09:09:07.729574 comef 8509 R rec 610cb18f-e6bd-43f9-b186-046c4c866308 +2024-09-11 09:09:07.784016 2024-09-11 09:09:07.784021 comef 8510 R rec ef9b7578-58b1-42e7-94fc-4bf75d5229a5 +2024-09-11 09:09:07.839506 2024-09-11 09:09:07.839511 comef 8511 R rec 6e1dc348-8a7c-4154-b8e1-ed6c4bfcc875 +2024-09-11 09:09:07.901892 2024-09-11 09:09:07.901898 comef 8512 R rec b6287f80-89e1-4521-b029-6c5f4f32f194 +2024-09-11 09:09:07.971559 2024-09-11 09:09:07.971563 comef 8513 R rec 7bc4a5db-26bd-4d06-a486-6a2ffaf3a590 +2024-09-11 09:09:08.032806 2024-09-11 09:09:08.032811 comef 8514 R rec b4667688-e60c-441d-8384-b71185882c50 +2024-09-11 09:09:08.092827 2024-09-11 09:09:08.092832 comef 8515 R rec d1b0fa66-bd28-4413-8103-037d9c7412f1 +2024-09-11 09:09:08.145023 2024-09-11 09:09:08.145027 comef 8516 R rec f1a686d7-398a-420c-90de-ee685654a4a0 +2024-09-11 09:09:08.202234 2024-09-11 09:09:08.202239 comef 8517 R rec b475b242-e694-4086-b5b5-33fcf531efcf +2024-09-11 09:09:08.261398 2024-09-11 09:09:08.261402 comef 8518 R rec 645492f4-f958-48b8-8db4-7d80586b010e +2024-09-11 09:09:08.314906 2024-09-11 09:09:08.314911 comef 8519 R rec d744ca03-0a23-4524-acb0-71f36b663899 +2024-09-11 09:09:08.368037 2024-09-11 09:09:08.368042 comef 8520 R rec 13c3b525-e7e6-4ef1-a784-ec6e26583683 +2024-09-11 09:09:08.428786 2024-09-11 09:09:08.428791 comef 8521 R rec a0e2c6fc-ea5f-42ef-b622-590c6dc9535c +2024-09-11 09:09:08.488499 2024-09-11 09:09:08.488505 comef 8522 R rec 17465708-2b0e-407a-b6cc-8b42174c0caf +2024-09-11 09:09:08.539994 2024-09-11 09:09:08.539999 comef 8523 R rec 38c15871-eb7e-4d29-8e0a-e6f417d03f5e +2024-09-11 09:09:08.593826 2024-09-11 09:09:08.59383 comef 8524 R rec 9c41d9e9-45bd-482a-ba19-6ade69945070 +2024-09-11 09:09:08.646125 2024-09-11 09:09:08.646129 comef 8525 R rec 3c884f3e-39e4-4b46-a015-cbcd337b0519 +2024-09-11 09:09:08.702858 2024-09-11 09:09:08.702864 comef 8526 R rec cfd883e4-8ab5-4531-be22-f80fb2e60da4 +2024-09-11 09:09:08.756796 2024-09-11 09:09:08.756801 comef 8527 R rec a60c1f6b-8bfe-43eb-b4cc-7355871876d6 +2024-09-11 09:09:08.811967 2024-09-11 09:09:08.811972 comef 8528 R rec d617d5e6-bded-435c-9c17-0c640d4f67d2 +2024-09-11 09:09:08.867065 2024-09-11 09:09:08.867071 comef 8529 R rec 7c22cbc0-4647-406f-9426-1bdf68111342 +2024-09-11 09:09:08.920183 2024-09-11 09:09:08.920188 comef 8530 R rec 1e4f4c43-bbcb-46d0-a8dd-708b20eeaa2b +2024-09-11 09:09:08.977631 2024-09-11 09:09:08.977636 comef 8531 R rec f14c2505-f91b-49ac-a8b9-2e0dca60bec5 +2024-09-11 09:09:09.054378 2024-09-11 09:09:09.054383 comef 8532 R rec 230617b8-57a4-4f39-b165-5e3b1d85dfb8 +2024-09-11 09:09:09.123419 2024-09-11 09:09:09.123424 comef 8533 R rec 4bcb2607-9d43-4d38-8933-1963450f7147 +2024-09-11 09:09:09.17965 2024-09-11 09:09:09.179655 comef 8534 R rec 44367a92-26c1-4694-a798-758872f7e43e +2024-09-11 09:09:09.235274 2024-09-11 09:09:09.235279 comef 8535 R rec e896a20a-c752-4fef-9a40-8890698863a4 +2024-09-11 09:09:09.29074 2024-09-11 09:09:09.290745 comef 8536 R rec 536a3552-dd89-42af-88e1-8aaf94f0f0ec +2024-09-11 09:09:09.352255 2024-09-11 09:09:09.35226 comef 8537 R rec fce0ae8f-0f65-4b19-8ed9-92b42527573c +2024-09-11 09:09:09.408067 2024-09-11 09:09:09.408074 comef 8538 R rec 185dc1d4-284a-47e1-9d87-0095eafd36fc +2024-09-11 09:09:09.464001 2024-09-11 09:09:09.464007 comef 8539 R rec 17e8763c-434b-42b7-a89d-3cf5b27cf192 +2024-09-11 09:09:09.516334 2024-09-11 09:09:09.516339 comef 8540 R rec 8cc1ac69-6a17-49b0-b9a7-a34a62764062 +2024-09-11 09:09:09.578315 2024-09-11 09:09:09.578322 comef 8541 R rec 22753b73-c3f6-488f-8ac5-ebadbd6dcd95 +2024-09-11 09:09:09.634681 2024-09-11 09:09:09.634686 comef 8542 R rec 04118938-0d37-44a5-8d2d-b841377ab7a9 +2024-09-11 09:09:09.69305 2024-09-11 09:09:09.693055 comef 8543 R rec cf5c02bc-0296-44f5-9285-b5ec48d9c816 +2024-09-11 09:09:09.746674 2024-09-11 09:09:09.746679 comef 8544 R rec d7ab7b09-9151-46bf-b57e-8ff00aad4e48 +2024-09-11 09:09:09.800314 2024-09-11 09:09:09.80032 comef 8545 R rec 6d189b70-5f76-4e01-a7fa-18bb69e151b0 +2024-09-11 09:09:09.858508 2024-09-11 09:09:09.858513 comef 8546 R rec 7e270139-9bc8-4fba-8e84-07da18df8f14 +2024-09-11 09:09:09.914471 2024-09-11 09:09:09.914475 comef 8547 R rec b40b4d00-0187-45e0-8362-68452fcaf5e6 +2024-09-11 09:09:09.967163 2024-09-11 09:09:09.967168 comef 8548 R rec 2bf90ad6-4faa-4c7f-a676-d06fd2598e6d +2024-09-11 09:09:10.020884 2024-09-11 09:09:10.020892 comef 8549 R rec 58e06762-e02b-4fdf-988b-d8d778cc3365 +2024-09-11 09:09:10.079693 2024-09-11 09:09:10.079697 comef 8550 R rec 8d544460-0e14-4868-96f1-4d7f3844a407 +2024-09-11 09:09:10.150925 2024-09-11 09:09:10.150931 comef 8551 R rec 72972377-c1d9-469a-bc48-924a8de99a0f +2024-09-11 09:09:10.213182 2024-09-11 09:09:10.213186 comef 8552 R rec 39db219e-de7b-4ff6-b236-75b6ba50d6e3 +2024-09-11 09:09:10.270692 2024-09-11 09:09:10.270697 comef 8553 R rec f977526f-d36d-473b-871e-5e2332932b50 +2024-09-11 09:09:10.32853 2024-09-11 09:09:10.328535 comef 8554 R rec ef38b692-9817-4aaa-9ac5-019acde18e3a +2024-09-11 09:09:10.382559 2024-09-11 09:09:10.382564 comef 8555 R rec 7b7c79a2-631a-4647-a11a-bd9966000b7b +2024-09-11 09:09:10.440013 2024-09-11 09:09:10.440017 comef 8556 R rec 754c201b-00b9-4584-8c2d-938455956c3f +2024-09-11 09:09:10.500508 2024-09-11 09:09:10.500514 comef 8557 R rec 2eab82ca-8384-4329-bd26-d9a10b30a5e8 +2024-09-11 09:09:10.560291 2024-09-11 09:09:10.560297 comef 8558 R rec 7a4e19e1-9a6d-4552-b9db-e59f6d7a02d9 +2024-09-11 09:09:10.61805 2024-09-11 09:09:10.618054 comef 8559 R rec 910773ba-aa92-4383-88e8-d6e205b755a0 +2024-09-11 09:09:10.680011 2024-09-11 09:09:10.680015 comef 8560 R rec 0d427339-05e8-4ed9-98aa-9fdf9b8b5412 +2024-09-11 09:09:10.73615 2024-09-11 09:09:10.736156 comef 8561 R rec ffb47921-b2d5-4a0a-8291-b48724cc4ac1 +2024-09-11 09:09:10.795322 2024-09-11 09:09:10.795327 comef 8562 R rec 1077622d-8cc3-4aa3-8f8d-79e03171655a +2024-09-11 09:09:10.850499 2024-09-11 09:09:10.850504 comef 8563 R rec a65aacf5-0888-4a22-967b-fa73912e8a85 +2024-09-11 09:09:10.910473 2024-09-11 09:09:10.910477 comef 8564 R rec 7a9f7f03-72a8-4f43-bf63-bc94857e9774 +2024-09-11 09:09:10.965929 2024-09-11 09:09:10.965934 comef 8565 R rec 5cfca7f4-de6e-40ce-8f64-4d090a82f953 +2024-09-11 09:09:11.022468 2024-09-11 09:09:11.022473 comef 8566 R rec dd1286b7-ac0c-48dd-a177-27fa502dffdd +2024-09-11 09:09:11.089721 2024-09-11 09:09:11.089726 comef 8567 R rec 2352f523-2365-4cf5-8475-daac59ddf985 +2024-09-11 09:09:11.158979 2024-09-11 09:09:11.158985 comef 8568 R rec beb1ed4b-c27c-4281-921b-e699b804a540 +2024-09-11 09:09:11.218245 2024-09-11 09:09:11.21825 comef 8569 R rec ff7d7a0c-99f7-4eff-9100-eca9cdd762fe +2024-09-11 09:09:11.27239 2024-09-11 09:09:11.272395 comef 8570 R rec 00b06b9e-133c-443a-b6c5-a14bc20aa1d7 +2024-09-11 09:09:11.330043 2024-09-11 09:09:11.330049 comef 8571 R rec 0fb74bd0-c0fc-4bdb-8969-9e4316339643 +2024-09-11 09:09:11.381592 2024-09-11 09:09:11.381597 comef 8572 R rec 8cf92490-70b9-41d3-9201-fee43f519a45 +2024-09-11 09:09:11.440199 2024-09-11 09:09:11.440204 comef 8573 R rec 9273ddfc-f3d1-48b6-a73c-f3f6abf50144 +2024-09-11 09:09:11.497231 2024-09-11 09:09:11.497236 comef 8574 R rec 7b6d5994-855a-4646-96a8-d5414ca47a74 +2024-09-11 09:09:11.550132 2024-09-11 09:09:11.550137 comef 8575 R rec b1d2bedf-a2e4-4288-a7fc-4c1bdc4b5474 +2024-09-11 09:09:11.609579 2024-09-11 09:09:11.609585 comef 8576 R rec 7a2d19e3-0a8d-4b40-a24a-a080f72034a4 +2024-09-11 09:09:11.663451 2024-09-11 09:09:11.663456 comef 8577 R rec 5c165569-3533-41de-8618-4f14375b9213 +2024-09-11 09:09:11.717952 2024-09-11 09:09:11.717958 comef 8578 R rec 427dfedf-de5e-435e-a046-7ac3ffc45cc4 +2024-09-11 09:09:11.77693 2024-09-11 09:09:11.776935 comef 8579 R rec e7237910-0225-46e4-9fd4-f15c998a42b4 +2024-09-11 09:09:11.834076 2024-09-11 09:09:11.834082 comef 8580 R rec e517d99c-0b6b-458a-a995-8a721d1c700e +2024-09-11 09:09:11.895784 2024-09-11 09:09:11.895789 comef 8581 R rec 97275777-54a3-4359-923b-816cc12f83dc +2024-09-11 09:09:11.956955 2024-09-11 09:09:11.95696 comef 8582 R rec 1bdcd7a8-646b-4061-ad64-3562537f4230 +2024-09-11 09:09:12.018207 2024-09-11 09:09:12.018213 comef 8583 R rec 60666425-326c-4c4b-bd26-7ada8cebb204 +2024-09-11 09:09:12.073351 2024-09-11 09:09:12.073356 comef 8584 R rec affbf64a-0c7d-48cd-836a-04abe125ac1b +2024-09-11 09:09:12.125556 2024-09-11 09:09:12.12556 comef 8585 R rec 47d5f110-0921-4708-99f0-e92ee70014a4 +2024-09-11 09:09:12.18189 2024-09-11 09:09:12.181895 comef 8586 R rec cec466bc-e5c7-40bc-b378-5ebf0c761482 +2024-09-11 09:09:12.237215 2024-09-11 09:09:12.237219 comef 8587 R rec 57033dee-6ba5-4ef7-b4e6-f04d28bfa845 +2024-09-11 09:09:12.294769 2024-09-11 09:09:12.294774 comef 8588 R rec ebb6585b-c044-4184-ad2b-dc38bec8d60b +2024-09-11 09:09:12.356359 2024-09-11 09:09:12.356364 comef 8589 R rec ff756764-32b5-4b45-b3d2-3de76323f6b9 +2024-09-11 09:09:12.428747 2024-09-11 09:09:12.428753 comef 8590 R rec b02f8ef0-e1c3-4159-9a9f-429c9e132403 +2024-09-11 09:09:12.494702 2024-09-11 09:09:12.494707 comef 8591 R rec 1a999462-3e87-40a1-8391-bf73c02e9458 +2024-09-11 09:09:12.563996 2024-09-11 09:09:12.564001 comef 8592 R rec 6ed2297c-c86e-4659-8b8b-a29a0cf29de3 +2024-09-11 09:09:12.639813 2024-09-11 09:09:12.639819 comef 8593 R rec fc6654e2-1e69-4017-98d2-887a7c56a50e +2024-09-11 09:09:12.715656 2024-09-11 09:09:12.71566 comef 8594 R rec b2aa9d8d-fc10-4e0a-bdae-b79699bffc76 +2024-09-11 09:09:12.775282 2024-09-11 09:09:12.775287 comef 8595 R rec ef40fea6-0a0e-4c5e-808b-fa9e8006c8ac +2024-09-11 09:09:12.843169 2024-09-11 09:09:12.843174 comef 8596 R rec 1731d766-dfe7-4bd9-9144-a76c3ad70780 +2024-09-11 09:09:12.915496 2024-09-11 09:09:12.915501 comef 8597 R rec 0df5ead9-9c6e-44ab-95aa-943e93425060 +2024-09-11 09:09:12.986853 2024-09-11 09:09:12.986867 comef 8598 R rec 934866d6-14e6-414d-93c3-4d165c9e272d +2024-09-11 09:09:13.058853 2024-09-11 09:09:13.058865 comef 8599 R rec 32a72f43-fb99-4beb-a5de-855c26021ff2 +2024-09-11 09:09:13.143896 2024-09-11 09:09:13.143901 comef 8600 R rec ddd96a65-afab-495e-ba2b-8ea31ce11630 +2024-09-11 09:09:13.195933 2024-09-11 09:09:13.195939 comef 8601 R rec 13d64763-632d-4d9f-89cc-002020b53b9f +2024-09-11 09:09:13.251358 2024-09-11 09:09:13.251363 comef 8602 R rec 24df3653-5e23-499e-be21-981f6a1f8383 +2024-09-11 09:09:13.306926 2024-09-11 09:09:13.306931 comef 8603 R rec 1e0be0c2-4109-482b-9277-018fa855a9fd +2024-09-11 09:09:13.36774 2024-09-11 09:09:13.367745 comef 8604 R rec 8dec8e0c-296b-4e19-b1f9-3d0490f6f627 +2024-09-11 09:09:13.43369 2024-09-11 09:09:13.433695 comef 8605 R rec fc456dd0-bf90-4354-bf8d-b054aa3bf176 +2024-09-11 09:09:13.485391 2024-09-11 09:09:13.485398 comef 8606 R rec b267896b-4382-4f04-8341-b12c3fc05bbd +2024-09-11 09:09:13.540459 2024-09-11 09:09:13.540464 comef 8607 R rec fefc536e-b970-4e1a-b238-fae8fc75ca87 +2024-09-11 09:09:13.600572 2024-09-11 09:09:13.600578 comef 8608 R rec e197dd70-8e43-4001-a7e4-d078f4ea5a2e +2024-09-11 09:09:13.66269 2024-09-11 09:09:13.662695 comef 8609 R rec 3106ca9e-8b9d-4528-811d-d0b6806d023c +2024-09-11 09:09:13.719494 2024-09-11 09:09:13.719499 comef 8610 R rec 27e92aea-93f7-41d1-a841-8a2dbae8c404 +2024-09-11 09:09:13.780173 2024-09-11 09:09:13.780178 comef 8611 R rec fe001d7d-e712-4d05-8038-5e78ce6dd0b1 +2024-09-11 09:09:13.833555 2024-09-11 09:09:13.83356 comef 8612 R rec 4bef1d29-0dab-4881-8f9c-422eb20131a1 +2024-09-11 09:09:13.894905 2024-09-11 09:09:13.89491 comef 8613 R rec 27bec4eb-f75f-46ba-b393-8ed355dd105d +2024-09-11 09:09:13.960073 2024-09-11 09:09:13.960078 comef 8614 R rec 3221dffe-014c-4b07-9830-91caa7b95ba1 +2024-09-11 09:09:14.026088 2024-09-11 09:09:14.026092 comef 8615 R rec c8c6a730-b360-41ca-a6ea-c83c326818e0 +2024-09-11 09:09:14.084801 2024-09-11 09:09:14.084806 comef 8616 R rec f6b8cac4-f5d1-4e58-88a9-fdbe2c5b0058 +2024-09-11 09:09:14.144558 2024-09-11 09:09:14.144563 comef 8617 R rec 49dd1b3a-7524-44e0-94bd-2bb9c2e2dba9 +2024-09-11 09:09:14.207251 2024-09-11 09:09:14.207256 comef 8618 R rec ab745cf0-a86a-41c3-881d-1dc3f98caea3 +2024-09-11 09:09:14.273873 2024-09-11 09:09:14.273879 comef 8619 R rec a0de4048-5217-48c5-a303-12f8ed08264f +2024-09-11 09:09:14.331046 2024-09-11 09:09:14.331051 comef 8620 R rec 4d2c4ded-3a3c-41f8-9684-46c44cec35b3 +2024-09-11 09:09:14.385738 2024-09-11 09:09:14.385744 comef 8621 R rec d54aed10-d772-4425-8127-d49fd21d2dba +2024-09-11 09:09:14.44057 2024-09-11 09:09:14.440575 comef 8622 R rec d302e8cf-57e6-4b01-a786-12a59053b7b4 +2024-09-11 09:09:14.493007 2024-09-11 09:09:14.493013 comef 8623 R rec cc547ff2-15d7-4245-aee3-01b06978b5ec +2024-09-11 09:09:14.552858 2024-09-11 09:09:14.552866 comef 8624 R rec e3e8413f-2149-46b6-b95c-94747c020a46 +2024-09-11 09:09:14.609835 2024-09-11 09:09:14.609839 comef 8625 R rec d512687a-cdec-4a95-b579-61791a7c508d +2024-09-11 09:09:14.662934 2024-09-11 09:09:14.662939 comef 8626 R rec b9b0f951-6120-4c51-81c6-eeb752c76e30 +2024-09-11 09:09:14.720867 2024-09-11 09:09:14.720871 comef 8627 R rec 8a3ffc4e-5fd8-42fe-8616-de702eb8d10a +2024-09-11 09:09:14.77562 2024-09-11 09:09:14.775625 comef 8628 R rec 97ba3d6a-052c-477a-93e1-2c14ddb8fb47 +2024-09-11 09:09:14.830829 2024-09-11 09:09:14.830832 comef 8629 R rec 28634618-de87-448d-96d0-09fd9c40a2f1 +2024-09-11 09:09:14.887357 2024-09-11 09:09:14.887362 comef 8630 R rec 1df73f33-2abd-4d63-a1d6-2243a9b6fe24 +2024-09-11 09:09:14.94745 2024-09-11 09:09:14.947455 comef 8631 R rec b9f1bc0f-762a-4f75-91ac-bcd25b093b93 +2024-09-11 09:09:15.003139 2024-09-11 09:09:15.003145 comef 8632 R rec c67410e7-feb7-49bb-b2df-a9f38dd218cc +2024-09-11 09:09:15.057661 2024-09-11 09:09:15.057665 comef 8633 R rec dd6fcb5d-d2e7-424a-8a29-f9b025775612 +2024-09-11 09:09:15.112745 2024-09-11 09:09:15.11275 comef 8634 R rec da6f8214-5a66-4946-ad64-671b9eb77415 +2024-09-11 09:09:15.168022 2024-09-11 09:09:15.168027 comef 8635 R rec ebff5086-2de2-43c0-9b80-791533e05a27 +2024-09-11 09:09:15.220348 2024-09-11 09:09:15.220354 comef 8636 R rec 05a89d1c-63d7-4061-a3dc-998f4d6d6524 +2024-09-11 09:09:15.274105 2024-09-11 09:09:15.27411 comef 8637 R rec e92cd48d-0004-41a3-9825-8275ccc6d20d +2024-09-11 09:09:15.329329 2024-09-11 09:09:15.329335 comef 8638 R rec 0086334b-7ec5-4c14-b502-f7ed3e8274bb +2024-09-11 09:09:15.387891 2024-09-11 09:09:15.387896 comef 8639 R rec c0a6bce1-a470-4e12-8d6c-4efc9bf20563 +2024-09-11 09:09:15.444773 2024-09-11 09:09:15.444778 comef 8640 R rec 5f97804b-5117-453a-9f27-94b4d09a4fd4 +2024-09-11 09:09:15.508283 2024-09-11 09:09:15.508289 comef 8641 R rec b1893b47-5943-46aa-b40d-b3638be0bfb2 +2024-09-11 09:09:15.57744 2024-09-11 09:09:15.577445 comef 8642 R rec cb17caf9-af77-46fd-930b-2c22c3747bff +2024-09-11 09:09:15.630703 2024-09-11 09:09:15.630709 comef 8643 R rec 764097b2-067d-4597-8fd5-b52bd847a226 +2024-09-11 09:09:15.687516 2024-09-11 09:09:15.68752 comef 8644 R rec 74c8d018-7e4e-4e94-84bf-1531f7816115 +2024-09-11 09:09:15.741182 2024-09-11 09:09:15.741188 comef 8645 R rec 0d938f66-02ea-41b7-ac0d-7a720c432939 +2024-09-11 09:09:15.800363 2024-09-11 09:09:15.800368 comef 8646 R rec f3e523fb-30be-4793-8360-6b9596a450ea +2024-09-11 09:09:15.853382 2024-09-11 09:09:15.853388 comef 8647 R rec 79a9563e-87da-4fb4-9959-8df284d0b9cf +2024-09-11 09:09:15.907597 2024-09-11 09:09:15.907602 comef 8648 R rec 6a443efb-d916-4465-ac5c-b8829a7b4ac5 +2024-09-11 09:09:15.964131 2024-09-11 09:09:15.964136 comef 8649 R rec 25dcd9db-3b72-4977-a37c-074afe85fb1d +2024-09-11 09:09:16.018499 2024-09-11 09:09:16.018505 comef 8650 R rec 6fee3dbf-3a9d-46f3-ae67-ca56f26ebf77 +2024-09-11 09:09:16.081079 2024-09-11 09:09:16.081084 comef 8651 R rec 2a688e98-a2b7-4592-93b3-35e7657b4aff +2024-09-11 09:09:16.142072 2024-09-11 09:09:16.142077 comef 8652 R rec 8aa439b2-bb01-4988-9f31-c59f10c5c4c2 +2024-09-11 09:09:16.21689 2024-09-11 09:09:16.216894 comef 8653 R rec 5d31f7a2-e955-402a-b448-35a75c78ec22 +2024-09-11 09:09:16.271231 2024-09-11 09:09:16.271235 comef 8654 R rec 1989f09e-e501-4fdd-9130-c671cf0a19b0 +2024-09-11 09:09:16.331066 2024-09-11 09:09:16.331072 comef 8655 R rec ecda58e4-67cb-4bbb-8c50-6ef61634d140 +2024-09-11 09:09:16.386243 2024-09-11 09:09:16.386249 comef 8656 R rec 624733b0-725d-456b-b30f-f87759650ae8 +2024-09-11 09:09:16.447587 2024-09-11 09:09:16.447593 comef 8657 R rec d582ba04-7796-4fe3-b62f-f9541137817b +2024-09-11 09:09:16.512725 2024-09-11 09:09:16.512729 comef 8658 R rec bd7db5fb-f6b4-4e16-8ea1-3b5b8111b47d +2024-09-11 09:09:16.5662 2024-09-11 09:09:16.566204 comef 8659 R rec abc6e472-08fd-4a4c-9551-68a058aaf5a9 +2024-09-11 09:09:16.633878 2024-09-11 09:09:16.633883 comef 8660 R rec a6cbc4c8-0b93-4956-b900-ac3e5122a3c4 +2024-09-11 09:09:16.703124 2024-09-11 09:09:16.703128 comef 8661 R rec 275b9ba9-b8ce-422d-836b-4cc40db5d17b +2024-09-11 09:09:16.767144 2024-09-11 09:09:16.76715 comef 8662 R rec 536e803c-bc6b-443c-87a1-61270a8cf578 +2024-09-11 09:09:16.830376 2024-09-11 09:09:16.830381 comef 8663 R rec 14ddc452-0148-4e45-b5d3-b8835e870527 +2024-09-11 09:09:16.883995 2024-09-11 09:09:16.884 comef 8664 R rec 067205f2-3a78-4200-b513-c5fc26c6af7d +2024-09-11 09:09:16.937724 2024-09-11 09:09:16.937728 comef 8665 R rec a8c0de87-3372-464b-b934-38b0bd8a85b6 +2024-09-11 09:09:16.996405 2024-09-11 09:09:16.99641 comef 8666 R rec 8dac129e-62d1-4115-a66e-64e406098675 +2024-09-11 09:09:17.060364 2024-09-11 09:09:17.060369 comef 8667 R rec 32477a91-89a2-4af8-a084-badecac384c9 +2024-09-11 09:09:17.122345 2024-09-11 09:09:17.122351 comef 8668 R rec 6775f7d4-9d32-4e64-9a8c-2346402c20be +2024-09-11 09:09:17.182781 2024-09-11 09:09:17.182786 comef 8669 R rec 9c3b414f-ae8b-45b6-bd7a-94b6f216aff2 +2024-09-11 09:09:17.239691 2024-09-11 09:09:17.239697 comef 8670 R rec 56478dc5-bb39-4070-8833-f71ece2dd741 +2024-09-11 09:09:17.301308 2024-09-11 09:09:17.301313 comef 8671 R rec 7089156e-0b64-4e3a-b02c-6fc8fbac4da8 +2024-09-11 09:09:17.363257 2024-09-11 09:09:17.363261 comef 8672 R rec 54c0f1af-83b3-48be-9ea7-4f109ad4dad9 +2024-09-11 09:09:17.418721 2024-09-11 09:09:17.418726 comef 8673 R rec 284de485-960d-46f5-be3b-89f0cef416a0 +2024-09-11 09:09:17.472235 2024-09-11 09:09:17.47224 comef 8674 R rec 86c75e15-627c-4c79-978c-6fe96ab765d2 +2024-09-11 09:09:17.537992 2024-09-11 09:09:17.537997 comef 8675 R rec 014b416e-e4fe-4255-8a38-f2c2241fe68f +2024-09-11 09:09:17.603063 2024-09-11 09:09:17.603067 comef 8676 R rec bd753ea3-a233-4bec-a90f-5bf43a65c889 +2024-09-11 09:09:17.65949 2024-09-11 09:09:17.659496 comef 8677 R rec 766c11dd-bcd7-4ef3-93a1-4fd13b3aabd3 +2024-09-11 09:09:17.713388 2024-09-11 09:09:17.713393 comef 8678 R rec fa7762ab-c821-47fe-9e45-ffab05c7e8ac +2024-09-11 09:09:17.764052 2024-09-11 09:09:17.764058 comef 8679 R rec 341b9211-145d-41e2-9f3e-759ded5c3210 +2024-09-11 09:09:17.819041 2024-09-11 09:09:17.819054 comef 8680 R rec c4082676-b57c-4007-8d74-5f4c4169487a +2024-09-11 09:09:17.873416 2024-09-11 09:09:17.873421 comef 8681 R rec b0d4a917-5184-4724-9f0a-98648987acdc +2024-09-11 09:09:17.930795 2024-09-11 09:09:17.9308 comef 8682 R rec db2d1159-bd39-49a4-ae2b-76e12486751c +2024-09-11 09:09:17.991512 2024-09-11 09:09:17.991516 comef 8683 R rec dae56b62-ce71-4bb1-81c3-084b09bc612e +2024-09-11 09:09:18.052525 2024-09-11 09:09:18.052531 comef 8684 R rec cd3bdea4-cda6-43e6-9cc5-72d836fc5572 +2024-09-11 09:09:18.105428 2024-09-11 09:09:18.105431 comef 8685 R rec 9ace0a25-d9c7-4068-839d-47980402ddf2 +2024-09-11 09:09:18.166542 2024-09-11 09:09:18.166548 comef 8686 R rec 311838b3-e78e-48e8-8789-487cdcb17317 +2024-09-11 09:09:18.230408 2024-09-11 09:09:18.230414 comef 8687 R rec 1bd38c8f-84b0-416e-8ebb-521016738288 +2024-09-11 09:09:18.294068 2024-09-11 09:09:18.294073 comef 8688 R rec 103cb7d6-5501-4c93-afa8-c70170a5da7d +2024-09-11 09:09:18.349819 2024-09-11 09:09:18.349824 comef 8689 R rec a9735441-dc84-448a-949c-40e6b47c2b24 +2024-09-11 09:09:18.405763 2024-09-11 09:09:18.405769 comef 8690 R rec af0638d3-f1d2-4b47-b5d3-7f821b7c38f2 +2024-09-11 09:09:18.460203 2024-09-11 09:09:18.460208 comef 8691 R rec 938ff8f9-face-4192-b2c6-48060338fa77 +2024-09-11 09:09:18.514112 2024-09-11 09:09:18.514116 comef 8692 R rec c99d5140-69e0-4c7f-8748-816c46d2597b +2024-09-11 09:09:18.570331 2024-09-11 09:09:18.570336 comef 8693 R rec 92c0dfc1-986c-4535-ac76-383682121e00 +2024-09-11 09:09:18.625964 2024-09-11 09:09:18.625969 comef 8694 R rec bdb251cd-756e-4179-9bff-5d994b163a31 +2024-09-11 09:09:18.682409 2024-09-11 09:09:18.682415 comef 8695 R rec 1687c709-ed9e-4b84-9e83-ae3b9496da64 +2024-09-11 09:09:18.749275 2024-09-11 09:09:18.74928 comef 8696 R rec 9fc903b2-72cf-4e46-8599-a7e5490d90a3 +2024-09-11 09:09:18.813656 2024-09-11 09:09:18.813661 comef 8697 R rec 72e652ed-9d98-482f-996b-498c880aab79 +2024-09-11 09:09:18.868265 2024-09-11 09:09:18.86827 comef 8698 R rec 771fee85-a4f9-483e-bd49-5cbf550274e9 +2024-09-11 09:09:18.928889 2024-09-11 09:09:18.928893 comef 8699 R rec af5dd1a1-9d29-4086-a0b7-fb51e03a6307 +2024-09-11 09:09:18.982754 2024-09-11 09:09:18.982759 comef 8700 R rec 4e94a5f0-54af-4c24-917d-feb69cb991c1 +2024-09-11 09:09:19.038899 2024-09-11 09:09:19.038904 comef 8701 R rec 8ec84829-4524-45e7-8f2d-d547fd2c6caa +2024-09-11 09:09:19.096353 2024-09-11 09:09:19.096358 comef 8702 R rec fe9d7fd6-02be-4d40-955a-bf5760350434 +2024-09-11 09:09:19.149486 2024-09-11 09:09:19.14949 comef 8703 R rec 2baccbe5-429a-469e-999f-451e3703fb2c +2024-09-11 09:09:19.207065 2024-09-11 09:09:19.20707 comef 8704 R rec 0f40f27f-a131-4850-9f5e-42a65415be1c +2024-09-11 09:09:19.262676 2024-09-11 09:09:19.26268 comef 8705 R rec b791c3bb-ee01-4d1f-b868-bb03aa590288 +2024-09-11 09:09:19.322876 2024-09-11 09:09:19.322881 comef 8706 R rec 211fbd74-27de-46f2-9ab0-b6cb459de0f1 +2024-09-11 09:09:19.386402 2024-09-11 09:09:19.386407 comef 8707 R rec 9659beac-49fe-453e-8e6a-7d3dfdaf14ab +2024-09-11 09:09:19.443062 2024-09-11 09:09:19.443067 comef 8708 R rec 56ee2de6-0ef4-4bd8-9a3a-a0f09359019b +2024-09-11 09:09:19.500327 2024-09-11 09:09:19.500333 comef 8709 R rec 6e55e462-a4e6-4119-92c6-d04861edd8b5 +2024-09-11 09:09:19.553286 2024-09-11 09:09:19.553291 comef 8710 R rec fb21a86f-f59e-4978-93d2-484077be4813 +2024-09-11 09:09:19.608789 2024-09-11 09:09:19.608794 comef 8711 R rec 4166d5bf-3a39-4081-8378-36a86335fefb +2024-09-11 09:09:19.666561 2024-09-11 09:09:19.666566 comef 8712 R rec dedc15de-066b-405e-9d32-065ee40d9c4a +2024-09-11 09:09:19.717391 2024-09-11 09:09:19.717395 comef 8713 R rec 6b2e7b6a-752a-4404-8712-7598d7d094c5 +2024-09-11 09:09:19.770343 2024-09-11 09:09:19.770348 comef 8714 R rec 46e00a47-7d66-4a8b-9491-76097c6922a5 +2024-09-11 09:09:19.826347 2024-09-11 09:09:19.826353 comef 8715 R rec fd9ab2cf-d71a-4a38-abcc-1a7c05db1c1a +2024-09-11 09:09:19.882689 2024-09-11 09:09:19.882694 comef 8716 R rec ed2b7774-ac2b-4114-9397-72efa34a7da8 +2024-09-11 09:09:19.9484 2024-09-11 09:09:19.948405 comef 8717 R rec cd29d0e3-2e43-4169-9ea4-bd29cbb5de0a +2024-09-11 09:09:20.005758 2024-09-11 09:09:20.005762 comef 8718 R rec 5c909e9b-847c-49c8-8d98-ddbca9bd4fac +2024-09-11 09:09:20.061448 2024-09-11 09:09:20.061453 comef 8719 R rec 27ee7a73-03fd-4345-a00d-9daed2985d30 +2024-09-11 09:09:20.11825 2024-09-11 09:09:20.118254 comef 8720 R rec 64393269-dce2-417a-8952-c564b1999d68 +2024-09-11 09:09:20.182512 2024-09-11 09:09:20.182516 comef 8721 R rec 6e4a47b2-d873-425d-b175-ae247b4d629d +2024-09-11 09:09:20.239597 2024-09-11 09:09:20.239602 comef 8722 R rec edc8e959-d9cf-4e0f-9695-7eccf9b9c813 +2024-09-11 09:09:20.295962 2024-09-11 09:09:20.295966 comef 8723 R rec 032cc9ca-5379-4406-8353-0eb654fb9a96 +2024-09-11 09:09:20.35191 2024-09-11 09:09:20.351915 comef 8724 R rec 56a4b120-0377-4d5c-b7a6-725bfb8b325f +2024-09-11 09:09:20.417012 2024-09-11 09:09:20.417017 comef 8725 R rec d01a049f-e3b6-4c7c-aba2-3252e7ee9152 +2024-09-11 09:09:20.48372 2024-09-11 09:09:20.483724 comef 8726 R rec 7f022b23-c2d4-4302-9d8f-7ceb41ff8fa3 +2024-09-11 09:09:20.54532 2024-09-11 09:09:20.545325 comef 8727 R rec 2074f944-83dc-4755-9a43-3dae1b6e716f +2024-09-11 09:09:20.601341 2024-09-11 09:09:20.601347 comef 8728 R rec 7ce5765c-3595-4e0c-887e-916d62e427f8 +2024-09-11 09:09:20.661427 2024-09-11 09:09:20.661432 comef 8729 R rec 31822132-ba7c-40c8-b515-8623c274c908 +2024-09-11 09:09:20.728828 2024-09-11 09:09:20.728834 comef 8730 R rec ef33a851-ae3f-43d6-91fb-f5e19c08d5de +2024-09-11 09:09:20.790888 2024-09-11 09:09:20.790893 comef 8731 R rec fa18e3e8-1abb-4971-a4e9-ec474e3cde60 +2024-09-11 09:09:20.846894 2024-09-11 09:09:20.846899 comef 8732 R rec 1ead4bda-ee66-441f-8ce7-f7e5bd640ee4 +2024-09-11 09:09:20.907119 2024-09-11 09:09:20.907125 comef 8733 R rec 4e5c3d90-b3b7-4fb0-bf9e-b773e0fb86b8 +2024-09-11 09:09:20.971564 2024-09-11 09:09:20.971569 comef 8734 R rec a8c305d6-b1b8-48f8-be32-a62f615ae852 +2024-09-11 09:09:21.030276 2024-09-11 09:09:21.030282 comef 8735 R rec 763a32d9-8cc8-487f-9bd4-0c026e6dd56a +2024-09-11 09:09:21.086347 2024-09-11 09:09:21.086352 comef 8736 R rec 527035ea-03d4-4e87-ae75-bc45bcfcf906 +2024-09-11 09:09:21.142964 2024-09-11 09:09:21.142969 comef 8737 R rec 88fb33dc-4bf4-4f22-9276-e86428cc57cc +2024-09-11 09:09:21.197043 2024-09-11 09:09:21.197049 comef 8738 R rec 086dc2ae-8ca9-438c-86e3-5b79e7ccfb32 +2024-09-11 09:09:21.254021 2024-09-11 09:09:21.254026 comef 8739 R rec 0e3c8d2c-58a3-43fe-b486-123d83770c07 +2024-09-11 09:09:21.312267 2024-09-11 09:09:21.312271 comef 8740 R rec b690784f-9587-4c0a-be54-59a6921f0ed4 +2024-09-11 09:09:21.374512 2024-09-11 09:09:21.374517 comef 8741 R rec 40a639bb-99fd-4d5b-95de-22f7eb6c4101 +2024-09-11 09:09:21.440532 2024-09-11 09:09:21.440537 comef 8742 R rec 1be881f3-7565-41f3-8c25-d44af88b81a4 +2024-09-11 09:09:21.497611 2024-09-11 09:09:21.497617 comef 8743 R rec 00e0a8bd-f181-4fbd-a877-12046f4b535a +2024-09-11 09:09:21.557073 2024-09-11 09:09:21.557078 comef 8744 R rec 737a9126-6454-4144-9497-6f6922216ce6 +2024-09-11 09:09:21.6155 2024-09-11 09:09:21.615506 comef 8745 R rec 97de2911-5d9b-4213-aece-b75729bb4731 +2024-09-11 09:09:21.669652 2024-09-11 09:09:21.669657 comef 8746 R rec 4133c525-1335-491b-abfd-77a1e418236b +2024-09-11 09:09:21.727107 2024-09-11 09:09:21.727112 comef 8747 R rec 8d6e50d2-ca06-4991-aa1b-5108c7c2232b +2024-09-11 09:09:21.783173 2024-09-11 09:09:21.783179 comef 8748 R rec 26f56b59-f3c3-4349-9445-75cc480f09da +2024-09-11 09:09:21.838666 2024-09-11 09:09:21.838672 comef 8749 R rec 31c18016-867f-4adc-9d86-f2834138a8d5 +2024-09-11 09:09:21.893251 2024-09-11 09:09:21.893256 comef 8750 R rec 4ad7c2f6-d8b4-4046-8abf-e30c28cfce90 +2024-09-11 09:09:21.949819 2024-09-11 09:09:21.949824 comef 8751 R rec 1606e775-5903-4aaf-8a14-3896819b488e +2024-09-11 09:09:22.019231 2024-09-11 09:09:22.019237 comef 8752 R rec fae167b5-abc0-4b34-ac67-d460e9405a0e +2024-09-11 09:09:22.072835 2024-09-11 09:09:22.07284 comef 8753 R rec 1e224950-ebc5-4bfa-bccd-d25a14cc4312 +2024-09-11 09:09:22.121612 2024-09-11 09:09:22.121618 comef 8754 R rec 5fd39ead-35f1-44e1-8de2-cb0cdbf69536 +2024-09-11 09:09:22.176971 2024-09-11 09:09:22.176976 comef 8755 R rec abacde40-b862-48f9-93a6-56171cc5e88e +2024-09-11 09:09:22.233435 2024-09-11 09:09:22.233441 comef 8756 R rec e8a4b1d0-89c8-4779-b595-5a43dec48484 +2024-09-11 09:09:22.288618 2024-09-11 09:09:22.288623 comef 8757 R rec 760d4ada-1aa9-4e78-8f72-edabfbff2621 +2024-09-11 09:09:22.342948 2024-09-11 09:09:22.342952 comef 8758 R rec 087b15ee-69be-41d9-b90c-0bea65fd369b +2024-09-11 09:09:22.391454 2024-09-11 09:09:22.391459 comef 8759 R rec 0f976004-dbfc-4508-8cdf-8687741b75b5 +2024-09-11 09:09:22.440126 2024-09-11 09:09:22.440131 comef 8760 R rec 0bf5f566-bfc4-4e4f-8e8c-27ecee0927a7 +2024-09-11 09:09:22.495802 2024-09-11 09:09:22.495807 comef 8761 R rec 494937c7-0a58-4be4-a478-125a029b1776 +2024-09-11 09:09:22.549827 2024-09-11 09:09:22.549832 comef 8762 R rec 13dcf171-5939-4fdf-a5e2-e8626dcfe387 +2024-09-11 09:09:22.604049 2024-09-11 09:09:22.604054 comef 8763 R rec 53faa60c-3e31-4d55-b9c1-e26bd5ea2394 +2024-09-11 09:09:22.664536 2024-09-11 09:09:22.664541 comef 8764 R rec 1f01a7e2-360c-4b00-b092-fef8eaec52ee +2024-09-11 09:09:22.721043 2024-09-11 09:09:22.721049 comef 8765 R rec ed94166c-a8b4-46fb-a3bb-ad8a790554e7 +2024-09-11 09:09:22.778518 2024-09-11 09:09:22.778522 comef 8766 R rec 1c458168-2f46-45bb-9af5-6ae8ebae3174 +2024-09-11 09:09:22.845119 2024-09-11 09:09:22.845124 comef 8767 R rec f985fd63-b4c8-44df-b25a-50bd41b0b972 +2024-09-11 09:09:22.900015 2024-09-11 09:09:22.900021 comef 8768 R rec a538a1d5-89e3-4631-8f0a-296d140bfce3 +2024-09-11 09:09:22.955738 2024-09-11 09:09:22.955743 comef 8769 R rec d92b8ac5-0d16-4501-af8f-c1c4df3b88ef +2024-09-11 09:09:23.012263 2024-09-11 09:09:23.012268 comef 8770 R rec fe43effa-cb87-47a4-9e3d-4854478ac950 +2024-09-11 09:09:23.071995 2024-09-11 09:09:23.072 comef 8771 R rec 460bf2ba-f682-4136-8f35-585cd5a95dbc +2024-09-11 09:09:23.138524 2024-09-11 09:09:23.138529 comef 8772 R rec 493e0c39-c46b-480f-a658-089f03ab0720 +2024-09-11 09:09:23.201103 2024-09-11 09:09:23.201108 comef 8773 R rec fb5adc73-f33e-409c-b334-349e6957d3a5 +2024-09-11 09:09:23.265126 2024-09-11 09:09:23.265131 comef 8774 R rec c34e49b5-274c-4b58-bac3-71ce5ef11551 +2024-09-11 09:09:23.316771 2024-09-11 09:09:23.316776 comef 8775 R rec fe9cf596-a07e-4e8f-83ce-d03d3b2add6d +2024-09-11 09:09:23.370864 2024-09-11 09:09:23.370869 comef 8776 R rec 558c7fc6-9768-47bb-a850-c172b510747f +2024-09-11 09:09:23.425855 2024-09-11 09:09:23.425861 comef 8777 R rec 217a4270-329f-498c-8edd-d2bb6a815494 +2024-09-11 09:09:23.486015 2024-09-11 09:09:23.486021 comef 8778 R rec 6d891fc7-be93-437d-b44d-f503e9e017cc +2024-09-11 09:09:23.545263 2024-09-11 09:09:23.545268 comef 8779 R rec dd8ded26-c224-4333-8cf2-12ef12f7ae29 +2024-09-11 09:09:23.599835 2024-09-11 09:09:23.599841 comef 8780 R rec b31a136a-9cd2-4510-87a4-527ac0405a1d +2024-09-11 09:09:23.655476 2024-09-11 09:09:23.655481 comef 8781 R rec 12a59baf-8771-44ec-9562-44faad163d17 +2024-09-11 09:09:23.710214 2024-09-11 09:09:23.710219 comef 8782 R rec ed5fa1ee-b2d0-4279-b9f6-236ffb6ccc4b +2024-09-11 09:09:23.76891 2024-09-11 09:09:23.768915 comef 8783 R rec 63f018af-6a56-4a57-9e64-e29a4a50a626 +2024-09-11 09:09:23.829797 2024-09-11 09:09:23.829802 comef 8784 R rec a8548bc1-c32a-4da8-83f4-2de55c7cccc7 +2024-09-11 09:09:23.882603 2024-09-11 09:09:23.882607 comef 8785 R rec c8797e72-e2d1-4687-9b46-6f1c66493a34 +2024-09-11 09:09:23.93826 2024-09-11 09:09:23.938265 comef 8786 R rec aa95e859-c41b-4dfa-9eee-8857a428691a +2024-09-11 09:09:23.991361 2024-09-11 09:09:23.991366 comef 8787 R rec 5f7ccdb0-d26d-491d-9345-997bb466ada6 +2024-09-11 09:09:24.067971 2024-09-11 09:09:24.067977 comef 8788 R rec 9184511a-b81a-4b1d-b2e0-0050e563dc98 +2024-09-11 09:09:24.129269 2024-09-11 09:09:24.129275 comef 8789 R rec 220c270f-c7b4-46bd-b3d1-aa7e1fb1df6f +2024-09-11 09:09:24.182314 2024-09-11 09:09:24.182319 comef 8790 R rec 55032080-a247-4d66-b50c-46b6751ae983 +2024-09-11 09:09:24.237928 2024-09-11 09:09:24.237934 comef 8791 R rec f018bf72-3fae-440b-8303-2f13a555ddf4 +2024-09-11 09:09:24.29484 2024-09-11 09:09:24.294845 comef 8792 R rec f53293b0-de0d-42b5-a0af-61cda0c52146 +2024-09-11 09:09:24.349119 2024-09-11 09:09:24.349124 comef 8793 R rec 9282ba8c-1822-4936-9416-030d8da7e1a3 +2024-09-11 09:09:24.401838 2024-09-11 09:09:24.401843 comef 8794 R rec 29b6f055-14e8-41fc-a28b-f110ba3adf8c +2024-09-11 09:09:24.456032 2024-09-11 09:09:24.456037 comef 8795 R rec aff59424-f6a9-4228-9a10-f505c66601ba +2024-09-11 09:09:24.510519 2024-09-11 09:09:24.510524 comef 8796 R rec 2701d234-4d74-415a-a4fa-03bcce138250 +2024-09-11 09:09:24.570672 2024-09-11 09:09:24.570676 comef 8797 R rec 635293c9-ae4c-499c-bdc4-43d91858124b +2024-09-11 09:09:24.631742 2024-09-11 09:09:24.631748 comef 8798 R rec 665c95f5-fd42-432b-93df-ec76849750c0 +2024-09-11 09:09:24.688641 2024-09-11 09:09:24.688646 comef 8799 R rec f9dff874-08cc-4816-a11f-a850bcc5c308 +2024-09-11 09:09:24.740896 2024-09-11 09:09:24.7409 comef 8800 R rec 3829e202-7156-40ca-ae68-b010d53272e6 +2024-09-11 09:09:24.799874 2024-09-11 09:09:24.79988 comef 8801 R rec 6279c620-306b-493c-b059-d669196bd75f +2024-09-11 09:09:24.860645 2024-09-11 09:09:24.86065 comef 8802 R rec 7cec07dd-1e4f-4a0f-a50b-23cedc6c0af8 +2024-09-11 09:09:24.914556 2024-09-11 09:09:24.914561 comef 8803 R rec 93c35aaa-0086-409d-8323-60af85fe49ba +2024-09-11 09:09:24.969262 2024-09-11 09:09:24.969268 comef 8804 R rec 9f91cabc-bcce-4d73-8bb4-9e1c10973a93 +2024-09-11 09:09:25.029423 2024-09-11 09:09:25.029428 comef 8805 R rec e41bd5b9-6132-4731-bb39-d30261a611da +2024-09-11 09:09:25.088221 2024-09-11 09:09:25.088227 comef 8806 R rec 7935e65d-c836-4f89-b02b-602efc7af2c3 +2024-09-11 09:09:25.14985 2024-09-11 09:09:25.149855 comef 8807 R rec eca5e918-907c-4650-992f-f55353e5f28a +2024-09-11 09:09:25.203693 2024-09-11 09:09:25.203698 comef 8808 R rec 3cb3bd2f-5120-4eb7-9246-9f8ff7f13dd5 +2024-09-11 09:09:25.264944 2024-09-11 09:09:25.264948 comef 8809 R rec b802f99d-2f20-4e04-96e1-31db440a9396 +2024-09-11 09:09:25.319416 2024-09-11 09:09:25.319421 comef 8810 R rec 7e348c11-3b19-413a-8dff-57fa48693e06 +2024-09-11 09:09:25.372264 2024-09-11 09:09:25.37227 comef 8811 R rec 5b9e7609-6acb-497b-9c4f-baee3f993c1f +2024-09-11 09:09:25.426624 2024-09-11 09:09:25.426628 comef 8812 R rec f166acbf-60d4-4c26-94b4-9d47e2ae0f6f +2024-09-11 09:09:25.480218 2024-09-11 09:09:25.480223 comef 8813 R rec 60385593-032d-4af4-998f-9002e0c7eeea +2024-09-11 09:09:25.540725 2024-09-11 09:09:25.54073 comef 8814 R rec 6542a206-a60e-447a-8bea-cbbf4eb67049 +2024-09-11 09:09:25.595743 2024-09-11 09:09:25.595748 comef 8815 R rec 13f6c180-0e82-4fa0-9091-22581dc88ce3 +2024-09-11 09:09:25.648849 2024-09-11 09:09:25.648854 comef 8816 R rec f1375ebc-2a5e-4a39-8b7d-7959df3c8294 +2024-09-11 09:09:25.704692 2024-09-11 09:09:25.704697 comef 8817 R rec 3000788d-e74c-410c-b6f8-9360ee66b947 +2024-09-11 09:09:25.767638 2024-09-11 09:09:25.767645 comef 8818 R rec 893c1b64-eaef-4003-a147-bea5b9aba328 +2024-09-11 09:09:25.823809 2024-09-11 09:09:25.823814 comef 8819 R rec 4428efbd-d65e-4566-9017-0afa6c150299 +2024-09-11 09:09:25.878172 2024-09-11 09:09:25.878176 comef 8820 R rec 140cb72b-525a-45ed-8413-f323a75f8dca +2024-09-11 09:09:25.935708 2024-09-11 09:09:25.935714 comef 8821 R rec 05681d85-075d-4448-94e7-374606018d30 +2024-09-11 09:09:25.985821 2024-09-11 09:09:25.985827 comef 8822 R rec d6e2166f-fa6c-4e83-aa1e-eabdfdbe65d5 +2024-09-11 09:09:26.038756 2024-09-11 09:09:26.038761 comef 8823 R rec eef03fbd-4dd9-4e70-8746-bcab688a182c +2024-09-11 09:09:26.099805 2024-09-11 09:09:26.09981 comef 8824 R rec 40547b9f-d260-4cad-ab29-ed40a7d552ea +2024-09-11 09:09:26.162264 2024-09-11 09:09:26.162269 comef 8825 R rec 285032b4-bed7-49cd-9ff7-9ce8471b4bbc +2024-09-11 09:09:26.220092 2024-09-11 09:09:26.220097 comef 8826 R rec 5ccbc1cc-917d-4437-92b2-0bf7b9280edc +2024-09-11 09:09:26.273644 2024-09-11 09:09:26.273649 comef 8827 R rec 7d686f2d-ee0b-4fa4-866c-352c40e0aa07 +2024-09-11 09:09:26.340258 2024-09-11 09:09:26.340263 comef 8828 R rec 4b5694c9-ee3f-4ce6-8bd5-51dc626ffa81 +2024-09-11 09:09:26.40632 2024-09-11 09:09:26.406324 comef 8829 R rec ef1d7d84-1ecf-468e-a0ab-f872cdbad903 +2024-09-11 09:09:26.467652 2024-09-11 09:09:26.467658 comef 8830 R rec 5c9b4b7d-81c0-4c60-9269-86a56582bd03 +2024-09-11 09:09:26.52507 2024-09-11 09:09:26.525076 comef 8831 R rec de3d66c0-42e4-4feb-acac-aa4e466c1e06 +2024-09-11 09:09:26.581 2024-09-11 09:09:26.581005 comef 8832 R rec 4c5ce0ae-923e-439a-987a-7e3ba7aec77c +2024-09-11 09:09:26.636821 2024-09-11 09:09:26.636826 comef 8833 R rec 60b979b5-7e08-41e9-9857-a7a02b0100a5 +2024-09-11 09:09:26.694289 2024-09-11 09:09:26.694293 comef 8834 R rec 89894064-b4e0-449d-9943-33f0f4fd9344 +2024-09-11 09:09:26.752063 2024-09-11 09:09:26.752068 comef 8835 R rec ed9463b3-9b31-440b-8282-03229a155944 +2024-09-11 09:09:26.806801 2024-09-11 09:09:26.806806 comef 8836 R rec 17113d81-9992-4297-a52a-7aea0499eda9 +2024-09-11 09:09:26.874257 2024-09-11 09:09:26.874262 comef 8837 R rec cf550a00-e338-4cb0-957b-9d157abb971c +2024-09-11 09:09:26.93091 2024-09-11 09:09:26.930914 comef 8838 R rec 5f991e38-e776-499b-ab82-bd60272531eb +2024-09-11 09:09:26.996022 2024-09-11 09:09:26.996027 comef 8839 R rec 5083ec92-9644-4cbf-a3cd-657971fdbbeb +2024-09-11 09:09:27.053688 2024-09-11 09:09:27.053693 comef 8840 R rec e1ecf1b2-a033-4324-b780-5817fa377cf3 +2024-09-11 09:09:27.111642 2024-09-11 09:09:27.111646 comef 8841 R rec 7a985f13-ef75-4d0d-8dfe-8d6553e86824 +2024-09-11 09:09:27.181473 2024-09-11 09:09:27.181478 comef 8842 R rec bac92ec1-7b3f-4dd8-a582-b9ed850f627c +2024-09-11 09:09:27.24608 2024-09-11 09:09:27.246084 comef 8843 R rec 63650190-0fa7-448a-b8c6-d6d221f39c01 +2024-09-11 09:09:27.327417 2024-09-11 09:09:27.327422 comef 8844 R rec a743774c-c944-44e3-a225-4a1b67071a08 +2024-09-11 09:09:27.407161 2024-09-11 09:09:27.407166 comef 8845 R rec c9388fdb-1042-4f6d-bce2-1ec2e77a25c4 +2024-09-11 09:09:27.467661 2024-09-11 09:09:27.467666 comef 8846 R rec 767bec3f-2634-49e2-a175-9cbf836b3771 +2024-09-11 09:09:27.525458 2024-09-11 09:09:27.525463 comef 8847 R rec 8edd1096-cc64-442b-b76b-a97293d9aedf +2024-09-11 09:09:27.578349 2024-09-11 09:09:27.578353 comef 8848 R rec 33be358d-bea3-4f9f-af73-2c663078c4f3 +2024-09-11 09:09:27.631338 2024-09-11 09:09:27.631343 comef 8849 R rec c109626c-b627-477d-bd88-d6407d6fdc87 +2024-09-11 09:09:27.69002 2024-09-11 09:09:27.690026 comef 8850 R rec 2e5cc511-ed4a-42d2-9018-c9eb8cb8f874 +2024-09-11 09:09:27.746061 2024-09-11 09:09:27.746065 comef 8851 R rec 7f16bba3-a50a-421b-8e4f-04a79a7aba17 +2024-09-11 09:09:27.806045 2024-09-11 09:09:27.806049 comef 8852 R rec 12e35a66-d6ee-4ad8-adb7-afe878d50743 +2024-09-11 09:09:27.860331 2024-09-11 09:09:27.860335 comef 8853 R rec 9fb04513-596d-429f-b08f-fda32e7c7cd4 +2024-09-11 09:09:27.917492 2024-09-11 09:09:27.917497 comef 8854 R rec 6a1d3934-da78-40cc-ba23-a4f487444805 +2024-09-11 09:09:27.970654 2024-09-11 09:09:27.970659 comef 8855 R rec a9ac04f2-b5cf-4501-a9f3-a95debf93b5c +2024-09-11 09:09:28.024878 2024-09-11 09:09:28.024883 comef 8856 R rec f73c8de8-0ec7-4857-b755-4c1bfd697e8e +2024-09-11 09:09:28.077829 2024-09-11 09:09:28.077834 comef 8857 R rec 9f7e1c9d-39d8-4328-9cb3-daf3e3ea6382 +2024-09-11 09:09:28.136841 2024-09-11 09:09:28.136845 comef 8858 R rec 4aceabb2-56e2-4dee-bc7b-256e363c3b01 +2024-09-11 09:09:28.192504 2024-09-11 09:09:28.192509 comef 8859 R rec 5a274cdd-cee4-41c0-a7cd-18e044d32509 +2024-09-11 09:09:28.24718 2024-09-11 09:09:28.247186 comef 8860 R rec 153ab9ec-2bd2-4a4d-9e0b-b78bc2835c90 +2024-09-11 09:09:28.30183 2024-09-11 09:09:28.301835 comef 8861 R rec 800a9a5a-f5bd-4edd-b69f-d55f3e835d92 +2024-09-11 09:09:28.357592 2024-09-11 09:09:28.357598 comef 8862 R rec 071ef287-9577-4d48-bade-d622f0efeebf +2024-09-11 09:09:28.419414 2024-09-11 09:09:28.41942 comef 8863 R rec 8885017f-3a80-49dd-89bc-4fdccfa3ca46 +2024-09-11 09:09:28.487003 2024-09-11 09:09:28.487008 comef 8864 R rec 237ea976-0cb7-4a79-96e3-3b45b5991b68 +2024-09-11 09:09:28.5456 2024-09-11 09:09:28.545604 comef 8865 R rec d48fe458-84e8-470c-bfdc-02ab7ce3a284 +2024-09-11 09:09:28.599312 2024-09-11 09:09:28.599317 comef 8866 R rec bc51c02e-75c9-4409-8828-eba7a1d3ca90 +2024-09-11 09:09:28.65424 2024-09-11 09:09:28.654245 comef 8867 R rec b96591b5-34f1-4652-8bc5-b1e79d1387f3 +2024-09-11 09:09:28.711688 2024-09-11 09:09:28.711693 comef 8868 R rec cc3335f2-c856-4cab-9b78-23f11a9540f7 +2024-09-11 09:09:28.767301 2024-09-11 09:09:28.767306 comef 8869 R rec f40e534c-2eed-4049-9418-3be70098bff8 +2024-09-11 09:09:28.822885 2024-09-11 09:09:28.82289 comef 8870 R rec 80d4ba5d-cdad-4e0b-8fcc-fb25d7d261cb +2024-09-11 09:09:28.876429 2024-09-11 09:09:28.876436 comef 8871 R rec aa5f9248-5fe4-4c32-857b-fd9df1cb3770 +2024-09-11 09:09:28.93567 2024-09-11 09:09:28.935675 comef 8872 R rec 87002448-bab2-4cd3-89d2-7771bdd5ae47 +2024-09-11 09:09:28.996093 2024-09-11 09:09:28.996098 comef 8873 R rec 54b4c163-1b2e-4806-8492-efa272e7da83 +2024-09-11 09:09:29.056394 2024-09-11 09:09:29.056399 comef 8874 R rec bade3402-5d7d-4f40-a3eb-bdcc4af61551 +2024-09-11 09:09:29.114127 2024-09-11 09:09:29.114132 comef 8875 R rec e768d529-95d4-4272-b9ee-cc32748f738b +2024-09-11 09:09:29.165359 2024-09-11 09:09:29.165366 comef 8876 R rec 89e6a391-c4b3-44cd-b10b-5200572485eb +2024-09-11 09:09:29.218522 2024-09-11 09:09:29.218526 comef 8877 R rec 7d6873a4-f8b4-4f35-a7ca-4c754eb4994e +2024-09-11 09:09:29.276225 2024-09-11 09:09:29.276231 comef 8878 R rec 057cb19e-368f-45d7-99ff-27db454e07b7 +2024-09-11 09:09:29.333876 2024-09-11 09:09:29.333881 comef 8879 R rec 9c71fc40-2161-4e41-967b-8436da3caa7b +2024-09-11 09:09:29.387909 2024-09-11 09:09:29.387913 comef 8880 R rec a8d53949-43a3-498f-9736-74a612abd585 +2024-09-11 09:09:29.437245 2024-09-11 09:09:29.43725 comef 8881 R rec e0d639b3-3e74-495a-875c-2bf687b8cea0 +2024-09-11 09:09:29.498053 2024-09-11 09:09:29.498058 comef 8882 R rec 46e5656d-d774-4677-9d87-8f09c752ed14 +2024-09-11 09:09:29.562371 2024-09-11 09:09:29.562377 comef 8883 R rec 10ca0f9b-3706-45d1-b5f9-b813aee391bb +2024-09-11 09:09:29.619345 2024-09-11 09:09:29.619352 comef 8884 R rec 425182ad-6422-4ab5-923c-4b304171bb0e +2024-09-11 09:09:29.677654 2024-09-11 09:09:29.677659 comef 8885 R rec c517472d-45f2-415c-acc5-61caaf7b3c36 +2024-09-11 09:09:29.734218 2024-09-11 09:09:29.734224 comef 8886 R rec c974559d-3faa-4f66-b3e4-7427e239f245 +2024-09-11 09:09:29.789748 2024-09-11 09:09:29.789752 comef 8887 R rec 528b3980-5861-462b-a1e3-f94f67d3d380 +2024-09-11 09:09:29.844744 2024-09-11 09:09:29.844749 comef 8888 R rec fd65a7a8-3d09-4951-bf35-188ef6ce3778 +2024-09-11 09:09:29.903312 2024-09-11 09:09:29.903317 comef 8889 R rec 6ac85efd-41ae-45fc-b1a1-fde099f15620 +2024-09-11 09:09:29.964956 2024-09-11 09:09:29.96496 comef 8890 R rec 15d945fc-e5bf-4051-a200-e73f180efa9f +2024-09-11 09:09:30.01963 2024-09-11 09:09:30.019635 comef 8891 R rec 650d4ff8-d8ac-4f7b-a540-71500be00a02 +2024-09-11 09:09:30.079324 2024-09-11 09:09:30.079329 comef 8892 R rec 3c74df22-a8d2-4051-9707-5536e810c13f +2024-09-11 09:09:30.135402 2024-09-11 09:09:30.135408 comef 8893 R rec 3fb25019-d2b2-426b-acf3-52df5e9af7d1 +2024-09-11 09:09:30.198122 2024-09-11 09:09:30.198127 comef 8894 R rec 83b0a142-a075-4373-a0c1-6bbc9bafba4d +2024-09-11 09:09:30.256911 2024-09-11 09:09:30.256916 comef 8895 R rec 3832be39-be10-47ed-a447-a648064a5225 +2024-09-11 09:09:30.312746 2024-09-11 09:09:30.31275 comef 8896 R rec 12845563-9a9b-44cc-a559-290cac07d990 +2024-09-11 09:09:30.366013 2024-09-11 09:09:30.366018 comef 8897 R rec ac27e23a-f638-49fd-8f27-c772d556cdaf +2024-09-11 09:09:30.419037 2024-09-11 09:09:30.419042 comef 8898 R rec 32a1b5e2-ed4f-45d0-8257-b11178fcb73b +2024-09-11 09:09:30.482323 2024-09-11 09:09:30.482328 comef 8899 R rec 410e328d-13e2-4c11-a696-e2f0125443ad +2024-09-11 09:09:30.553048 2024-09-11 09:09:30.553054 comef 8900 R rec c150cb3b-79a1-4f36-a2e1-67fb326faedf +2024-09-11 09:09:30.610953 2024-09-11 09:09:30.610958 comef 8901 R rec 4c1e5918-e739-478d-b6b8-a95459ea02d0 +2024-09-11 09:09:30.670364 2024-09-11 09:09:30.670368 comef 8902 R rec ca298c84-c32b-4554-b4d3-e0c066d7a35a +2024-09-11 09:09:30.727638 2024-09-11 09:09:30.727643 comef 8903 R rec ae163912-c16c-4a69-9539-0937a8d84f11 +2024-09-11 09:09:30.781675 2024-09-11 09:09:30.781679 comef 8904 R rec 940508c9-4f91-4fa9-82e5-60865f322242 +2024-09-11 09:09:30.835318 2024-09-11 09:09:30.835323 comef 8905 R rec 7ef9e0fb-63a4-4ab2-9759-a6c906f50370 +2024-09-11 09:09:30.889399 2024-09-11 09:09:30.889404 comef 8906 R rec fafbd5fa-0a19-4e03-ab54-18553376381c +2024-09-11 09:09:30.945741 2024-09-11 09:09:30.945746 comef 8907 R rec 03176d2b-eeec-4a09-ae88-700fc5aa961e +2024-09-11 09:09:31.007473 2024-09-11 09:09:31.007478 comef 8908 R rec 0171d794-28f9-4bba-b37f-ef8edf8b9c1c +2024-09-11 09:09:31.064007 2024-09-11 09:09:31.064012 comef 8909 R rec 5bf1dd58-5bb4-4a1f-b981-5aa83e8f5e75 +2024-09-11 09:09:31.120869 2024-09-11 09:09:31.120875 comef 8910 R rec af42de70-c45f-49ed-ae9c-eeb54cb694ec +2024-09-11 09:09:31.173424 2024-09-11 09:09:31.173429 comef 8911 R rec ed97886a-cab4-47fd-864a-b9538bbadbf6 +2024-09-11 09:09:31.230015 2024-09-11 09:09:31.23002 comef 8912 R rec b405d6c7-28aa-46f3-9d15-74cab1248b6b +2024-09-11 09:09:31.287938 2024-09-11 09:09:31.287943 comef 8913 R rec fa17dda9-c5bc-4fb7-a8f2-ede79ca6f043 +2024-09-11 09:09:31.342167 2024-09-11 09:09:31.342171 comef 8914 R rec abebf9ba-a220-4254-b948-442a07586227 +2024-09-11 09:09:31.397305 2024-09-11 09:09:31.39731 comef 8915 R rec 71fc388e-e342-4ca1-8423-d465c0445e6d +2024-09-11 09:09:31.452551 2024-09-11 09:09:31.452557 comef 8916 R rec de050b27-e4c4-47b4-a1e7-df50be54aa29 +2024-09-11 09:09:31.509013 2024-09-11 09:09:31.509019 comef 8917 R rec 071ab5fb-af20-45a9-a43e-a0b114703d87 +2024-09-11 09:09:31.594489 2024-09-11 09:09:31.594494 comef 8918 R rec 9328e545-f168-4946-9b76-02852b9d1b19 +2024-09-11 09:09:31.685508 2024-09-11 09:09:31.685513 comef 8919 R rec ff0685a6-87c2-4bfd-912c-0e6f17bea7bf +2024-09-11 09:09:31.743418 2024-09-11 09:09:31.743423 comef 8920 R rec 2c8c437a-5aac-433f-967b-d933d131c356 +2024-09-11 09:09:31.797201 2024-09-11 09:09:31.797206 comef 8921 R rec a89fb2a0-9db6-47f0-9ce1-f99d05833124 +2024-09-11 09:09:31.853442 2024-09-11 09:09:31.853447 comef 8922 R rec 99d184ce-df6b-4330-a7b3-52fe0729707e +2024-09-11 09:09:31.911398 2024-09-11 09:09:31.911403 comef 8923 R rec 528a23e2-4115-4756-9638-09dc101a5a7e +2024-09-11 09:09:31.964973 2024-09-11 09:09:31.964979 comef 8924 R rec 1733828a-0de0-4e2c-a346-3ee1204a70db +2024-09-11 09:09:32.024555 2024-09-11 09:09:32.024561 comef 8925 R rec 9fe7153b-cd49-42af-8553-f6d4707a04eb +2024-09-11 09:09:32.078284 2024-09-11 09:09:32.078289 comef 8926 R rec 2dc240b8-67ba-4e72-8f9a-c8a98137cb1a +2024-09-11 09:09:32.13505 2024-09-11 09:09:32.135055 comef 8927 R rec c7f5080c-7772-422f-94ab-34983a293301 +2024-09-11 09:09:32.194552 2024-09-11 09:09:32.194557 comef 8928 R rec a0a0e5f8-1ee3-45e7-8867-bbc814ead04c +2024-09-11 09:09:32.26033 2024-09-11 09:09:32.260336 comef 8929 R rec 3bd95775-fe2e-420c-8f57-86069a6e4590 +2024-09-11 09:09:32.326159 2024-09-11 09:09:32.326163 comef 8930 R rec 50d298e0-9adf-4a6f-af65-42fd7195905d +2024-09-11 09:09:32.393775 2024-09-11 09:09:32.39378 comef 8931 R rec 28c7c98d-5a85-49c7-946a-59ce75ee504b +2024-09-11 09:09:32.446152 2024-09-11 09:09:32.446157 comef 8932 R rec 20f63597-4969-4abe-b424-31a7f4f09059 +2024-09-11 09:09:32.498571 2024-09-11 09:09:32.498575 comef 8933 R rec 2c233ab7-2ba5-42ac-ae72-4e4673118b16 +2024-09-11 09:09:32.557574 2024-09-11 09:09:32.557579 comef 8934 R rec f22f37a1-8e6e-4148-ae77-9886e158040b +2024-09-11 09:09:32.629517 2024-09-11 09:09:32.629523 comef 8935 R rec 8d0de924-c667-422c-b6f0-ad12f92eb322 +2024-09-11 09:09:32.686647 2024-09-11 09:09:32.686653 comef 8936 R rec fcf4c705-37ce-405e-843e-3de8ecd657a3 +2024-09-11 09:09:32.741766 2024-09-11 09:09:32.741771 comef 8937 R rec 7e9d1a41-be1e-415f-bc1d-60f1ebab88e4 +2024-09-11 09:09:32.797225 2024-09-11 09:09:32.79723 comef 8938 R rec 10a35084-8f35-4a46-86cd-0cf4fbc11d94 +2024-09-11 09:09:32.852573 2024-09-11 09:09:32.852582 comef 8939 R rec 21545558-da92-48b8-bede-e06fff4b5eee +2024-09-11 09:09:32.91362 2024-09-11 09:09:32.913624 comef 8940 R rec bbda010b-3bef-49d1-a730-ac790cf11726 +2024-09-11 09:09:32.975171 2024-09-11 09:09:32.975175 comef 8941 R rec 4cb15f8b-9d0c-458e-9155-1379ad557407 +2024-09-11 09:09:33.033214 2024-09-11 09:09:33.03322 comef 8942 R rec 547b1b07-f02e-47d5-ac85-53bb3055cc57 +2024-09-11 09:09:33.089093 2024-09-11 09:09:33.089097 comef 8943 R rec c0e1954f-1dc1-45c0-a421-929a673b7d6a +2024-09-11 09:09:33.144397 2024-09-11 09:09:33.144401 comef 8944 R rec 8ed83af3-3f98-4e9e-84a0-6b605098856d +2024-09-11 09:09:33.19769 2024-09-11 09:09:33.197695 comef 8945 R rec 4c0b7330-7939-4b5b-b12a-f8d6877e3fee +2024-09-11 09:09:33.252903 2024-09-11 09:09:33.252908 comef 8946 R rec 07ce3b94-26f0-437f-a24a-20e89f515538 +2024-09-11 09:09:33.311496 2024-09-11 09:09:33.311501 comef 8947 R rec c4d0c42d-b02c-47ee-9860-cf14640816fc +2024-09-11 09:09:33.366448 2024-09-11 09:09:33.366453 comef 8948 R rec 498979c3-2956-41b4-b325-302d15569b90 +2024-09-11 09:09:33.419778 2024-09-11 09:09:33.419784 comef 8949 R rec f39b999e-b2ab-4319-add8-6318a677bfc7 +2024-09-11 09:09:33.472854 2024-09-11 09:09:33.472858 comef 8950 R rec 48f52a36-ab8e-4492-b6e0-7f5948833921 +2024-09-11 09:09:33.529548 2024-09-11 09:09:33.529553 comef 8951 R rec 9e7f85f8-dcce-43af-b252-22fdc60a8ada +2024-09-11 09:09:33.588508 2024-09-11 09:09:33.588513 comef 8952 R rec 3d8b9594-bd2d-4955-836a-826f54426994 +2024-09-11 09:09:33.648288 2024-09-11 09:09:33.648292 comef 8953 R rec 7415ffce-acc8-491c-9b72-d9e62f02b2e2 +2024-09-11 09:09:33.709618 2024-09-11 09:09:33.709623 comef 8954 R rec d55871a7-2746-4551-ae71-b0d1e62481af +2024-09-11 09:09:33.775756 2024-09-11 09:09:33.775762 comef 8955 R rec 2dd6e7af-d9d8-4335-be45-330a2100ce36 +2024-09-11 09:09:33.831468 2024-09-11 09:09:33.831472 comef 8956 R rec eb91822c-4952-4c91-98e8-13f1be40cde7 +2024-09-11 09:09:33.957077 2024-09-11 09:09:33.957082 comef 8957 R rec 187abeaf-7d64-44f5-aec6-aa52afb001ec +2024-09-11 09:09:34.011028 2024-09-11 09:09:34.011033 comef 8958 R rec 6256a94a-d0e0-4e5f-99d9-046927548e4e +2024-09-11 09:09:34.071527 2024-09-11 09:09:34.071532 comef 8959 R rec 58c37b21-c93b-4f4c-b430-37e2d198a044 +2024-09-11 09:09:34.123387 2024-09-11 09:09:34.123392 comef 8960 R rec 8a78fb80-04c1-4d08-969b-214128e20306 +2024-09-11 09:09:34.180126 2024-09-11 09:09:34.180131 comef 8961 R rec 8637fcd7-207f-4d5b-9cff-780fe9a9ed3c +2024-09-11 09:09:34.243064 2024-09-11 09:09:34.24307 comef 8962 R rec 456cbb99-cc2d-43ad-9847-882813153408 +2024-09-11 09:09:34.29691 2024-09-11 09:09:34.296916 comef 8963 R rec f7e6dc4e-5222-420a-93ee-89f885b484ed +2024-09-11 09:09:34.358225 2024-09-11 09:09:34.358231 comef 8964 R rec d80521d6-4b8d-4b0f-ac16-4596df6621ca +2024-09-11 09:09:34.416493 2024-09-11 09:09:34.416497 comef 8965 R rec f5fbdb70-b1ea-43de-9ca3-2bb4af37ca6e +2024-09-11 09:09:34.47493 2024-09-11 09:09:34.474936 comef 8966 R rec 0c156ce0-65d1-4946-8063-7e7e4addcd61 +2024-09-11 09:09:34.533693 2024-09-11 09:09:34.533698 comef 8967 R rec 03bb7838-f866-40d1-b769-c2741e9da6d6 +2024-09-11 09:09:34.592848 2024-09-11 09:09:34.592853 comef 8968 R rec 2b8c2468-a71b-44a1-b72d-74a8c99eda1e +2024-09-11 09:09:34.660068 2024-09-11 09:09:34.660073 comef 8969 R rec d2fcecb5-4a13-43cc-b5ee-bde5d1917aa6 +2024-09-11 09:09:34.73002 2024-09-11 09:09:34.730024 comef 8970 R rec bec2ef2f-f3d2-4bdc-b863-a8935f19c3d0 +2024-09-11 09:09:34.785994 2024-09-11 09:09:34.785999 comef 8971 R rec 083b17b8-8a29-4bd3-a0fc-87447198c6b0 +2024-09-11 09:09:34.845415 2024-09-11 09:09:34.84542 comef 8972 R rec ee010d41-e9c5-4cb6-872a-b4d8014dcbeb +2024-09-11 09:09:34.902937 2024-09-11 09:09:34.902941 comef 8973 R rec ff0cd0a1-9e43-4c1e-8f64-dc1d38758b4d +2024-09-11 09:09:34.955685 2024-09-11 09:09:34.95569 comef 8974 R rec c3cd4cc2-fe1b-4594-a472-70c27c513ce9 +2024-09-11 09:09:35.03369 2024-09-11 09:09:35.033696 comef 8975 R rec 1e88884b-4732-4e0d-be3a-f73db01e4677 +2024-09-11 09:09:35.101244 2024-09-11 09:09:35.10125 comef 8976 R rec f3e334c6-7129-410c-aba6-59e668683732 +2024-09-11 09:09:35.162747 2024-09-11 09:09:35.162752 comef 8977 R rec c9d6e170-99c8-4b14-a45b-4468647bebff +2024-09-11 09:09:35.224119 2024-09-11 09:09:35.224124 comef 8978 R rec 4e77110f-260e-47cc-b2e6-c658e402b52c +2024-09-11 09:09:35.278295 2024-09-11 09:09:35.278299 comef 8979 R rec a8051675-55d7-4e08-90d0-f198c3b641eb +2024-09-11 09:09:35.340468 2024-09-11 09:09:35.340473 comef 8980 R rec be5a6b1f-0d28-4033-93eb-80a205de8da0 +2024-09-11 09:09:35.39489 2024-09-11 09:09:35.394895 comef 8981 R rec 657e96bd-9874-42a6-8696-8671a0016798 +2024-09-11 09:09:35.452196 2024-09-11 09:09:35.452201 comef 8982 R rec 8f807ca3-b260-4add-981c-ae748038a7cd +2024-09-11 09:09:35.513762 2024-09-11 09:09:35.513767 comef 8983 R rec e318e57a-5ce4-4391-919d-13ec68742b2e +2024-09-11 09:09:35.570839 2024-09-11 09:09:35.570844 comef 8984 R rec 63962a42-17f5-4467-8b0d-e1827436be51 +2024-09-11 09:09:35.630784 2024-09-11 09:09:35.630789 comef 8985 R rec e13e87fb-2dea-4ab3-a68e-1c9a877f15d2 +2024-09-11 09:09:35.692812 2024-09-11 09:09:35.692817 comef 8986 R rec afdc9a1b-8fd3-4045-85b6-00615527b6c0 +2024-09-11 09:09:35.754745 2024-09-11 09:09:35.754749 comef 8987 R rec 78d15de0-81d5-4967-a377-2413cf6992bf +2024-09-11 09:09:35.821914 2024-09-11 09:09:35.82192 comef 8988 R rec a6559cf3-47a4-4e38-bbdf-d4dee8998ea8 +2024-09-11 09:09:35.879614 2024-09-11 09:09:35.879619 comef 8989 R rec b159a58b-f918-400e-9788-9fbfd98f5d00 +2024-09-11 09:09:35.931443 2024-09-11 09:09:35.931449 comef 8990 R rec 7049d4d4-46da-4975-b4ed-10e09b825b74 +2024-09-11 09:09:35.98865 2024-09-11 09:09:35.988655 comef 8991 R rec b7819c38-3c23-4459-819c-a3db3fb6c858 +2024-09-11 09:09:36.045895 2024-09-11 09:09:36.045899 comef 8992 R rec 2cd70f25-4b8c-4cd2-95c3-362b9fafbbcc +2024-09-11 09:09:36.100921 2024-09-11 09:09:36.100926 comef 8993 R rec 52503f14-790a-4fdd-9ce1-9690923f4300 +2024-09-11 09:09:36.157409 2024-09-11 09:09:36.157414 comef 8994 R rec 42c5c115-b14e-425f-b2f2-95f6d8469fc8 +2024-09-11 09:09:36.211141 2024-09-11 09:09:36.211146 comef 8995 R rec e36b3278-58d7-40ad-b548-800afb10641e +2024-09-11 09:09:36.267457 2024-09-11 09:09:36.267463 comef 8996 R rec 794e76bd-dab9-4a56-a9a7-bc49cbc65932 +2024-09-11 09:09:36.322318 2024-09-11 09:09:36.322323 comef 8997 R rec 024ddd8b-429b-4243-afc2-a208fdda5e0d +2024-09-11 09:09:36.388853 2024-09-11 09:09:36.388858 comef 8998 R rec fa788657-b9cb-4551-8751-5656aa2b7fc3 +2024-09-11 09:09:36.444412 2024-09-11 09:09:36.444417 comef 8999 R rec ca81b9f4-cd87-49a6-a597-738d80f90923 +2024-09-11 09:09:36.499414 2024-09-11 09:09:36.49942 comef 9000 R rec d2b6202c-7212-48dc-8dc8-3384f9649338 +2024-09-11 09:09:36.565299 2024-09-11 09:09:36.565305 comef 9001 R rec 8a4c6d94-b5f8-4647-b0b1-7149225ea3d7 +2024-09-11 09:09:36.620096 2024-09-11 09:09:36.620103 comef 9002 R rec 32d42b7e-6455-49f4-ac74-cc5a145434c6 +2024-09-11 09:09:36.679854 2024-09-11 09:09:36.679859 comef 9003 R rec 53271314-f8e6-4b30-88b2-763111d82ba4 +2024-09-11 09:09:36.736575 2024-09-11 09:09:36.73658 comef 9004 R rec f1df23d6-bcf6-4f7d-80a8-814091766d9c +2024-09-11 09:09:36.803609 2024-09-11 09:09:36.803613 comef 9005 R rec 6e80e932-da93-46b8-94f8-eb9949f36f73 +2024-09-11 09:09:36.873393 2024-09-11 09:09:36.873398 comef 9006 R rec 3b728d02-f5f6-4073-bfbf-3bebdaa9cf1b +2024-09-11 09:09:36.931109 2024-09-11 09:09:36.931115 comef 9007 R rec f224042f-e88b-42d2-92c4-36cf529c7316 +2024-09-11 09:09:36.983743 2024-09-11 09:09:36.983747 comef 9008 R rec 779368b2-33cc-48ab-92e5-0d4876b64ee0 +2024-09-11 09:09:37.03692 2024-09-11 09:09:37.036924 comef 9009 R rec 9590983d-d3e1-44a2-92d9-0e7fc263dbfc +2024-09-11 09:09:37.094646 2024-09-11 09:09:37.094651 comef 9010 R rec 2a73b8e2-c790-4cfa-a9c1-bd1f35b77738 +2024-09-11 09:09:37.156346 2024-09-11 09:09:37.156351 comef 9011 R rec c48a3b66-6e53-48e1-8fc3-beeef4073f00 +2024-09-11 09:09:37.212821 2024-09-11 09:09:37.212826 comef 9012 R rec 2996fdef-f911-43cf-b7c9-e50ef97709e5 +2024-09-11 09:09:37.275313 2024-09-11 09:09:37.275318 comef 9013 R rec ba24181c-f3fa-41ac-96e2-b482e01967ee +2024-09-11 09:09:37.336022 2024-09-11 09:09:37.336028 comef 9014 R rec dd215fa7-318a-4fda-9060-7d1435049a1a +2024-09-11 09:09:37.396272 2024-09-11 09:09:37.396277 comef 9015 R rec 8ed50b3b-b48f-4f63-809b-a7b616c29675 +2024-09-11 09:09:37.4544 2024-09-11 09:09:37.454404 comef 9016 R rec b456c21f-0fb0-4449-9d8b-4e406acf2750 +2024-09-11 09:09:37.515078 2024-09-11 09:09:37.515084 comef 9017 R rec 47251998-cb63-4e1a-bf54-61eebdc492c8 +2024-09-11 09:09:37.57996 2024-09-11 09:09:37.579965 comef 9018 R rec 9b43df2e-bf04-475f-9b18-80e7c13bf8f4 +2024-09-11 09:09:37.643137 2024-09-11 09:09:37.643143 comef 9019 R rec e9d6b91e-d170-4011-8759-12d73f045e80 +2024-09-11 09:09:37.699806 2024-09-11 09:09:37.699812 comef 9020 R rec 1e9ba4cc-4114-48ec-8feb-4c89e0f63e22 +2024-09-11 09:09:37.755955 2024-09-11 09:09:37.75596 comef 9021 R rec bf68b172-25df-4f5f-984c-1129cce938d4 +2024-09-11 09:09:37.819739 2024-09-11 09:09:37.819745 comef 9022 R rec d63fb60b-fb6e-4141-8456-8f5f0c5fe626 +2024-09-11 09:09:37.893412 2024-09-11 09:09:37.893417 comef 9023 R rec 39f3b8f6-6b65-45d2-89f9-336c1a3db485 +2024-09-11 09:09:37.951769 2024-09-11 09:09:37.951775 comef 9024 R rec e72082bc-66a0-4c57-956f-c450fd4910cd +2024-09-11 09:09:38.005051 2024-09-11 09:09:38.005055 comef 9025 R rec 7d924b03-95a6-4e89-ac3a-f4700c8305ac +2024-09-11 09:09:38.06382 2024-09-11 09:09:38.063825 comef 9026 R rec 8282ffe8-710a-4ad0-9564-8de357b39f10 +2024-09-11 09:09:38.120371 2024-09-11 09:09:38.120396 comef 9027 R rec 24a23997-7dab-4788-ab6f-b2860b04e48a +2024-09-11 09:09:38.173492 2024-09-11 09:09:38.173497 comef 9028 R rec 5dfebefa-68ec-49e3-a75a-1d8e0c9254a9 +2024-09-11 09:09:38.227468 2024-09-11 09:09:38.227472 comef 9029 R rec f650eaa3-d174-4954-a43f-5f9e1657f983 +2024-09-11 09:09:38.283853 2024-09-11 09:09:38.283859 comef 9030 R rec 46f80736-00a2-40a4-bd51-6f30648d7252 +2024-09-11 09:09:38.341141 2024-09-11 09:09:38.341179 comef 9031 R rec f796cedd-819c-410e-8e41-fad82ecee5c1 +2024-09-11 09:09:38.404638 2024-09-11 09:09:38.404643 comef 9032 R rec 79c41503-f29a-42aa-84b2-b3a0277f2a43 +2024-09-11 09:09:38.458774 2024-09-11 09:09:38.458779 comef 9033 R rec cdc4fe93-516d-41ff-93b5-a5c1cc39b9cb +2024-09-11 09:09:38.515576 2024-09-11 09:09:38.515581 comef 9034 R rec fb008cd0-d6bd-42c4-b4d0-9a2a3d135230 +2024-09-11 09:09:38.570456 2024-09-11 09:09:38.57046 comef 9035 R rec bbd0c7c3-d00c-4556-b272-bf391eaaa898 +2024-09-11 09:09:38.629194 2024-09-11 09:09:38.629198 comef 9036 R rec 51cbeb2c-957e-443c-8630-c4cb7a17cc21 +2024-09-11 09:09:38.687995 2024-09-11 09:09:38.688002 comef 9037 R rec 73a61487-2f9e-42b1-8699-e5d883dbb995 +2024-09-11 09:09:38.740621 2024-09-11 09:09:38.740626 comef 9038 R rec 50d6bc46-f887-4232-b5a0-61eb456c6e92 +2024-09-11 09:09:38.794183 2024-09-11 09:09:38.794188 comef 9039 R rec 87b3cecd-930e-4a08-828a-906d260c40c8 +2024-09-11 09:09:38.849048 2024-09-11 09:09:38.849053 comef 9040 R rec de19d87f-0a55-4dc5-a799-e3548c379075 +2024-09-11 09:09:38.90581 2024-09-11 09:09:38.905815 comef 9041 R rec 759c877e-d48c-4ddc-86de-d2b778568167 +2024-09-11 09:09:38.960021 2024-09-11 09:09:38.960026 comef 9042 R rec 922fe68c-3cbb-44c4-9161-9d53f6f26367 +2024-09-11 09:09:39.035714 2024-09-11 09:09:39.035719 comef 9043 R rec b6c3ce77-73a1-49c0-a0dd-e4b8f3adcf5f +2024-09-11 09:09:39.094862 2024-09-11 09:09:39.094867 comef 9044 R rec 521d9aa8-2f63-4c7d-acb0-dc3afe818534 +2024-09-11 09:09:39.148479 2024-09-11 09:09:39.148484 comef 9045 R rec 8297a0db-55eb-4f73-9bea-908ae7bd6f51 +2024-09-11 09:09:39.203538 2024-09-11 09:09:39.203542 comef 9046 R rec 179b921b-06a0-4913-aa1b-a3b422a37a27 +2024-09-11 09:09:39.257651 2024-09-11 09:09:39.257655 comef 9047 R rec 03847d12-0f40-4b63-9724-111965f35cd3 +2024-09-11 09:09:39.311921 2024-09-11 09:09:39.311925 comef 9048 R rec 5b319fbc-3636-4368-8657-8627f7980df4 +2024-09-11 09:09:39.369971 2024-09-11 09:09:39.369976 comef 9049 R rec a903ab20-c6fd-4984-b9d8-a8adca354659 +2024-09-11 09:09:39.427634 2024-09-11 09:09:39.427639 comef 9050 R rec ad9df3c2-367d-4a7e-9632-73302352dd7b +2024-09-11 09:09:39.479314 2024-09-11 09:09:39.479319 comef 9051 R rec 740beac4-87b8-45ed-a2b7-a9378a779e83 +2024-09-11 09:09:39.530404 2024-09-11 09:09:39.53041 comef 9052 R rec d19b41fb-fbc1-4238-901a-e62c0fa92140 +2024-09-11 09:09:39.589128 2024-09-11 09:09:39.589133 comef 9053 R rec ace2ab2b-d43f-48b7-ba6a-265432696dac +2024-09-11 09:09:39.641566 2024-09-11 09:09:39.641571 comef 9054 R rec d49ab404-d769-4f38-852b-6ffe66983ff6 +2024-09-11 09:09:39.699565 2024-09-11 09:09:39.699571 comef 9055 R rec 68802bad-f975-460d-86b3-0a97f199b062 +2024-09-11 09:09:39.763384 2024-09-11 09:09:39.76339 comef 9056 R rec 9507ea9b-5adc-479f-a32c-a491b6ab3568 +2024-09-11 09:09:39.820548 2024-09-11 09:09:39.820561 comef 9057 R rec 87eadb51-a0db-4f61-8726-b1b4de329120 +2024-09-11 09:09:39.883033 2024-09-11 09:09:39.883039 comef 9058 R rec 46be9f3d-1e57-49f5-a66c-1f80baaa5ac3 +2024-09-11 09:09:39.937843 2024-09-11 09:09:39.937847 comef 9059 R rec ab82c552-4750-409a-a740-58afa30a4de4 +2024-09-11 09:09:39.992009 2024-09-11 09:09:39.992014 comef 9060 R rec b11474a6-441e-4bd4-a741-77531ae9a02c +2024-09-11 09:09:40.06308 2024-09-11 09:09:40.063085 comef 9061 R rec 76a74de7-7b00-4b36-8a55-53f8b55948bc +2024-09-11 09:09:40.123882 2024-09-11 09:09:40.123887 comef 9062 R rec 6fec1b55-fad3-442e-b8d8-dc5c1c7426c5 +2024-09-11 09:09:40.18176 2024-09-11 09:09:40.181764 comef 9063 R rec 448e0257-b58f-4a47-8f1b-2f005efdf977 +2024-09-11 09:09:40.237099 2024-09-11 09:09:40.237104 comef 9064 R rec 714039a2-c782-4ab2-a545-befc9a842047 +2024-09-11 09:09:40.309329 2024-09-11 09:09:40.309334 comef 9065 R rec 1c9f46c5-5e6b-4f63-8a13-52e2054abf33 +2024-09-11 09:09:40.364973 2024-09-11 09:09:40.364978 comef 9066 R rec 36c20f53-f0f6-4522-b4ff-654d6bad81d4 +2024-09-11 09:09:40.42209 2024-09-11 09:09:40.422095 comef 9067 R rec 6c8a8791-2503-4b05-aefa-27685ef3467b +2024-09-11 09:09:40.475757 2024-09-11 09:09:40.475762 comef 9068 R rec d6c9aa0a-b588-46f0-94a6-d3c668855a8e +2024-09-11 09:09:40.533054 2024-09-11 09:09:40.53306 comef 9069 R rec 1d2bf822-eece-4cd4-81ff-4074389ef356 +2024-09-11 09:09:40.597163 2024-09-11 09:09:40.597168 comef 9070 R rec 529ccdc1-30d3-4e9d-b4cc-087fb9adbf43 +2024-09-11 09:09:40.659016 2024-09-11 09:09:40.659021 comef 9071 R rec 48781dc9-4a4b-4180-87f2-8016717dfef5 +2024-09-11 09:09:40.713589 2024-09-11 09:09:40.713593 comef 9072 R rec 2010b526-b46a-4395-b853-20aedaea9e35 +2024-09-11 09:09:40.768206 2024-09-11 09:09:40.768212 comef 9073 R rec ec89fd1a-9502-49cb-9563-e0d88ec4db99 +2024-09-11 09:09:40.821861 2024-09-11 09:09:40.821866 comef 9074 R rec a3f849bf-6db9-4d71-b960-228396c58cd3 +2024-09-11 09:09:40.878833 2024-09-11 09:09:40.878838 comef 9075 R rec a83726ac-61d6-4373-82f3-fea9999f15c5 +2024-09-11 09:09:40.934256 2024-09-11 09:09:40.934262 comef 9076 R rec 03068c5e-6bb7-4a2d-aef6-9c08e44ccd24 +2024-09-11 09:09:40.986978 2024-09-11 09:09:40.986984 comef 9077 R rec f3b6d43d-5593-4671-9aa4-4d731694e0fe +2024-09-11 09:09:41.044739 2024-09-11 09:09:41.044743 comef 9078 R rec d1788957-b44f-4926-a155-e278ac5ece8c +2024-09-11 09:09:41.110036 2024-09-11 09:09:41.110041 comef 9079 R rec bf8c42fa-4982-453f-979f-7ac7113798b8 +2024-09-11 09:09:41.178231 2024-09-11 09:09:41.178236 comef 9080 R rec 4ed078fe-dfaf-49b3-bd53-aa4e05da6a03 +2024-09-11 09:09:41.239135 2024-09-11 09:09:41.239139 comef 9081 R rec a0780d48-8091-45bd-9ea1-ddbb017b0aba +2024-09-11 09:09:41.29699 2024-09-11 09:09:41.296995 comef 9082 R rec 74faa1e6-51a8-4c25-83b6-05c9c835728d +2024-09-11 09:09:41.357883 2024-09-11 09:09:41.357888 comef 9083 R rec d4c871f7-ecd9-4bf7-9504-0d93df6546b6 +2024-09-11 09:09:41.413037 2024-09-11 09:09:41.413042 comef 9084 R rec f47dc02b-6a5e-45be-9bc0-f1c7b3cf3f77 +2024-09-11 09:09:41.468727 2024-09-11 09:09:41.468732 comef 9085 R rec 3c2895ac-d93c-42a7-935f-b8e08584b51d +2024-09-11 09:09:41.522172 2024-09-11 09:09:41.522177 comef 9086 R rec d3e7b875-d15f-487c-b2a0-d751eac24a8d +2024-09-11 09:09:41.578632 2024-09-11 09:09:41.578637 comef 9087 R rec e07eae20-d043-4577-9809-e77dfe3e8ad9 +2024-09-11 09:09:41.634123 2024-09-11 09:09:41.634128 comef 9088 R rec 6431e7a6-f6d5-4a0d-a0be-6fe5139d7a11 +2024-09-11 09:09:41.696998 2024-09-11 09:09:41.697003 comef 9089 R rec b5f9330e-85a9-4ee3-8d13-dbd12a49414f +2024-09-11 09:09:41.764007 2024-09-11 09:09:41.764012 comef 9090 R rec 6d230fd8-b250-485f-aee4-df645cec14aa +2024-09-11 09:09:41.820213 2024-09-11 09:09:41.820218 comef 9091 R rec c3a2f28e-543b-4433-aa66-5cbd0214cbe8 +2024-09-11 09:09:41.875746 2024-09-11 09:09:41.875751 comef 9092 R rec a46b98bd-b3e1-4f78-974b-05ceb40f972a +2024-09-11 09:09:41.93419 2024-09-11 09:09:41.934195 comef 9093 R rec 98e76d7c-9518-4923-90f6-4f2b13697494 +2024-09-11 09:09:41.992885 2024-09-11 09:09:41.99289 comef 9094 R rec b4c99fdc-f2b7-40ff-8fd8-56a0b53113d3 +2024-09-11 09:09:42.048723 2024-09-11 09:09:42.048728 comef 9095 R rec 6fa3e00d-4916-4df1-9c8b-ab973d2bfa9f +2024-09-11 09:09:42.113591 2024-09-11 09:09:42.113596 comef 9096 R rec df6a19ef-00d3-4ce4-b297-0ec7c1bd1bcc +2024-09-11 09:09:42.176279 2024-09-11 09:09:42.176285 comef 9097 R rec 09165e39-a222-4456-ab86-154201855c9e +2024-09-11 09:09:42.242902 2024-09-11 09:09:42.242907 comef 9098 R rec 3b6427d1-bc2b-47d1-8692-7f29302edd18 +2024-09-11 09:09:42.30215 2024-09-11 09:09:42.302156 comef 9099 R rec 5b3a2af1-e4ec-4dbd-8502-90e8f14f6fd2 +2024-09-11 09:09:42.356001 2024-09-11 09:09:42.356006 comef 9100 R rec 9cff1ab9-ffbe-4f1d-90dc-08d7b0f4c15c +2024-09-11 09:09:42.411506 2024-09-11 09:09:42.411511 comef 9101 R rec 8a7a0aa6-506b-40e2-a79e-67afb361209b +2024-09-11 09:09:42.466347 2024-09-11 09:09:42.466353 comef 9102 R rec bfd4fc0f-d7c9-4779-b4d2-874df1acacaf +2024-09-11 09:09:42.523528 2024-09-11 09:09:42.523533 comef 9103 R rec 106a632b-e19f-4a17-b253-f2e2dc77128d +2024-09-11 09:09:42.583072 2024-09-11 09:09:42.583077 comef 9104 R rec 255de9d2-9f33-4a9f-81e9-b8c2b8e84669 +2024-09-11 09:09:42.636989 2024-09-11 09:09:42.636994 comef 9105 R rec 5bde9697-2260-486c-accd-94ec43c9d1f0 +2024-09-11 09:09:42.701415 2024-09-11 09:09:42.70142 comef 9106 R rec 7fb02eb8-76c9-4b2c-8fd0-74f622c3bf82 +2024-09-11 09:09:42.756403 2024-09-11 09:09:42.756409 comef 9107 R rec 0c3a7d7b-71dd-4326-bee4-551c6f1fd3c5 +2024-09-11 09:09:42.818042 2024-09-11 09:09:42.818048 comef 9108 R rec ee677878-55e2-4873-95e2-74c9d3eab21a +2024-09-11 09:09:42.881867 2024-09-11 09:09:42.881872 comef 9109 R rec ed871209-2707-4f8e-98a0-7801fe94953b +2024-09-11 09:09:42.945111 2024-09-11 09:09:42.945115 comef 9110 R rec 5a1cc9c8-fb49-49b8-bb67-3c7abf9108a5 +2024-09-11 09:09:43.000028 2024-09-11 09:09:43.000034 comef 9111 R rec a8425855-3aad-485e-b23a-67b92224a59e +2024-09-11 09:09:43.05795 2024-09-11 09:09:43.057955 comef 9112 R rec ebb58f8b-bcd8-4ba3-b8fb-27d547ca6e60 +2024-09-11 09:09:43.119114 2024-09-11 09:09:43.11912 comef 9113 R rec a509dd24-e978-4105-a3b2-b99122a76245 +2024-09-11 09:09:43.190937 2024-09-11 09:09:43.190942 comef 9114 R rec 3a52c3c8-69ab-4f55-919d-c36d0b1c2af7 +2024-09-11 09:09:43.250112 2024-09-11 09:09:43.250116 comef 9115 R rec bb65ebb1-bec9-4a4d-9f49-e4aebb5dbc30 +2024-09-11 09:09:43.308449 2024-09-11 09:09:43.308455 comef 9116 R rec 734c9073-6b39-41be-899f-0f8faaedfc25 +2024-09-11 09:09:43.363945 2024-09-11 09:09:43.363951 comef 9117 R rec f721fe8c-e0cb-4d09-bcac-c6c25c65ec3c +2024-09-11 09:09:43.419449 2024-09-11 09:09:43.419455 comef 9118 R rec 261fe550-a6ba-42c7-a26d-2f68071d79c2 +2024-09-11 09:09:43.47243 2024-09-11 09:09:43.472434 comef 9119 R rec 7127aa25-e46e-47b2-b278-868cbb1c26cd +2024-09-11 09:09:43.526685 2024-09-11 09:09:43.52669 comef 9120 R rec d75bab55-b697-4e51-b440-db9b6eb0076f +2024-09-11 09:09:43.579873 2024-09-11 09:09:43.579877 comef 9121 R rec 52cd63e7-e21c-45bd-89f9-258b0d55d69e +2024-09-11 09:09:43.631519 2024-09-11 09:09:43.631523 comef 9122 R rec 3cd255c6-f714-4c19-ab05-c7957f7bea59 +2024-09-11 09:09:43.683805 2024-09-11 09:09:43.683809 comef 9123 R rec b5d01a22-8835-4014-aa69-162588d94684 +2024-09-11 09:09:43.735936 2024-09-11 09:09:43.735942 comef 9124 R rec c1e03ef3-2b5a-4b55-b5bd-ccd3d78c6e66 +2024-09-11 09:09:43.789137 2024-09-11 09:09:43.789143 comef 9125 R rec 57a7d75d-b224-489c-8bfb-13e8c225b81b +2024-09-11 09:09:43.849896 2024-09-11 09:09:43.849901 comef 9126 R rec cf13878c-3fa0-4f96-ae1e-4c4066cdf81f +2024-09-11 09:09:43.905753 2024-09-11 09:09:43.905757 comef 9127 R rec bade6f52-3d4a-45a3-a1ef-6d920c0174c6 +2024-09-11 09:09:43.961826 2024-09-11 09:09:43.961832 comef 9128 R rec bac34917-20c8-41d8-a456-91134d662abf +2024-09-11 09:09:44.024252 2024-09-11 09:09:44.024257 comef 9129 R rec 1e436006-23b2-488e-a53a-7312a68978a3 +2024-09-11 09:09:44.081089 2024-09-11 09:09:44.081094 comef 9130 R rec 26a54880-fc07-4e55-974f-804e342f4815 +2024-09-11 09:09:44.133791 2024-09-11 09:09:44.133796 comef 9131 R rec 9f22bdb1-fa89-4cb7-836d-5a1c0946a3bd +2024-09-11 09:09:44.194149 2024-09-11 09:09:44.194154 comef 9132 R rec 9d33962d-c7ea-4dc6-9017-e8035766001a +2024-09-11 09:09:44.26032 2024-09-11 09:09:44.260325 comef 9133 R rec 1d20e400-60f5-4923-b48c-3c9a1f79994b +2024-09-11 09:09:44.315181 2024-09-11 09:09:44.315186 comef 9134 R rec 43e3f0bf-2e3f-48a2-bfc0-6f2ae92417ba +2024-09-11 09:09:44.372937 2024-09-11 09:09:44.372942 comef 9135 R rec ad1c8f61-69d2-4038-853a-843b24c6828d +2024-09-11 09:09:44.428309 2024-09-11 09:09:44.428314 comef 9136 R rec c94fd32d-592c-4a6d-b3bb-e931c83fc312 +2024-09-11 09:09:44.486662 2024-09-11 09:09:44.486667 comef 9137 R rec 29f78e01-e0d7-4810-866a-bce0042726bb +2024-09-11 09:09:44.546249 2024-09-11 09:09:44.546253 comef 9138 R rec 3dd76003-a41d-4fa1-a6c9-65349aade34a +2024-09-11 09:09:44.609231 2024-09-11 09:09:44.609236 comef 9139 R rec 3723af50-f685-489c-ae2a-d28e856b3c12 +2024-09-11 09:09:44.664974 2024-09-11 09:09:44.664979 comef 9140 R rec 9ef158d7-cff2-4ca4-a176-56a67966c5a6 +2024-09-11 09:09:44.720029 2024-09-11 09:09:44.720034 comef 9141 R rec 15bda328-3dbe-4365-a7c8-9621b09e685f +2024-09-11 09:09:44.773234 2024-09-11 09:09:44.77324 comef 9142 R rec a2158ce7-1b94-4dda-9502-ac748ae2bf64 +2024-09-11 09:09:44.831939 2024-09-11 09:09:44.831943 comef 9143 R rec 0d4fd253-40d0-4e1c-ad34-470450939962 +2024-09-11 09:09:44.888308 2024-09-11 09:09:44.888313 comef 9144 R rec 3d5251b1-5f21-4431-8109-398a18ab845c +2024-09-11 09:09:44.953971 2024-09-11 09:09:44.953976 comef 9145 R rec 16cd3245-a80d-4c53-ab43-218538a79688 +2024-09-11 09:09:45.019941 2024-09-11 09:09:45.019946 comef 9146 R rec 73ea60ef-87fe-4939-b2bf-92ca8eb99def +2024-09-11 09:09:45.080175 2024-09-11 09:09:45.080179 comef 9147 R rec 4d3a856a-38ea-439b-bef7-42f45e6b732a +2024-09-11 09:09:45.136396 2024-09-11 09:09:45.136403 comef 9148 R rec 5277db82-e82e-4fca-8923-49bf65446fa1 +2024-09-11 09:09:45.193995 2024-09-11 09:09:45.193999 comef 9149 R rec 6f4c6832-4633-4307-95ad-9aea2180228b +2024-09-11 09:09:45.249019 2024-09-11 09:09:45.249023 comef 9150 R rec e72fc32b-a665-4538-8fdd-bd24cc4a8c93 +2024-09-11 09:09:45.316835 2024-09-11 09:09:45.31684 comef 9151 R rec 7aadee06-444f-4c09-8da8-1fd94581d7f5 +2024-09-11 09:09:45.382857 2024-09-11 09:09:45.382863 comef 9152 R rec d1d4eb7b-191b-4696-952f-74eb85639e47 +2024-09-11 09:09:45.443471 2024-09-11 09:09:45.443476 comef 9153 R rec 7e46f87f-56d0-402f-b435-93ee77e5bae3 +2024-09-11 09:09:45.501951 2024-09-11 09:09:45.501956 comef 9154 R rec 3d2afe47-53c8-425f-a804-8280b20b7e75 +2024-09-11 09:09:45.565539 2024-09-11 09:09:45.565545 comef 9155 R rec f3fc1111-f52f-4c3c-a2ff-2368a90877f2 +2024-09-11 09:09:45.634946 2024-09-11 09:09:45.63496 comef 9156 R rec 1028b10d-d28e-47ec-9afd-c9a74589af4a +2024-09-11 09:09:45.695178 2024-09-11 09:09:45.695183 comef 9157 R rec 9a257009-ecac-4582-a710-8a5041899e66 +2024-09-11 09:09:45.759839 2024-09-11 09:09:45.759844 comef 9158 R rec 9fa6559f-939a-48c7-8a03-bc84e96f241f +2024-09-11 09:09:45.817041 2024-09-11 09:09:45.817047 comef 9159 R rec 2e80ab86-bf8f-47b5-a2ac-bb50b404fa4f +2024-09-11 09:09:45.876674 2024-09-11 09:09:45.876679 comef 9160 R rec fcbbe956-0237-439b-87e6-c716c45fa728 +2024-09-11 09:09:45.937406 2024-09-11 09:09:45.93741 comef 9161 R rec e965da74-cf4d-4e99-afeb-aa639cdac1b8 +2024-09-11 09:09:45.992525 2024-09-11 09:09:45.99253 comef 9162 R rec 80c0f8b0-178b-4a32-b99e-f22a009e8433 +2024-09-11 09:09:46.050602 2024-09-11 09:09:46.050608 comef 9163 R rec 573dfc00-73a1-4c81-99a3-8dd4eca64291 +2024-09-11 09:09:46.110654 2024-09-11 09:09:46.11066 comef 9164 R rec 63927245-9117-4738-86a2-d18df0e47e41 +2024-09-11 09:09:46.17147 2024-09-11 09:09:46.171475 comef 9165 R rec 1937d2ee-623d-4381-86f5-cb28bd604910 +2024-09-11 09:09:46.267189 2024-09-11 09:09:46.267195 comef 9166 R rec e7ac3719-ac68-4743-a9ac-107e450bd89d +2024-09-11 09:09:46.322199 2024-09-11 09:09:46.322204 comef 9167 R rec 191e9b55-1561-447d-9297-2f290afa8cc1 +2024-09-11 09:09:46.376408 2024-09-11 09:09:46.376413 comef 9168 R rec f2ce9d7a-0dd4-460d-a360-15f60ee669f6 +2024-09-11 09:09:46.428475 2024-09-11 09:09:46.42848 comef 9169 R rec 4348dadb-f041-4f97-ab14-e395876d2b02 +2024-09-11 09:09:46.483698 2024-09-11 09:09:46.483704 comef 9170 R rec 2b860485-5c41-46af-8f64-2e37c6c7ce6f +2024-09-11 09:09:46.54394 2024-09-11 09:09:46.543945 comef 9171 R rec 4fa137f5-d173-49af-bbb2-a556deae0c24 +2024-09-11 09:09:46.598426 2024-09-11 09:09:46.59843 comef 9172 R rec 6c47dc9a-26d1-40e4-a023-5f76f1325341 +2024-09-11 09:09:46.654915 2024-09-11 09:09:46.654922 comef 9173 R rec d623315e-3817-4480-920c-fbb081e755af +2024-09-11 09:09:46.707644 2024-09-11 09:09:46.707649 comef 9174 R rec 06038dee-9904-423b-8377-a50645d0b0eb +2024-09-11 09:09:46.761048 2024-09-11 09:09:46.761053 comef 9175 R rec 015b01a3-3f4b-4466-815c-e523aacc385c +2024-09-11 09:09:46.821328 2024-09-11 09:09:46.821334 comef 9176 R rec d8feca77-5d98-4287-a57b-cf32a0a15b5b +2024-09-11 09:09:46.881286 2024-09-11 09:09:46.88129 comef 9177 R rec 491e0183-c690-47ca-903c-746667d76f63 +2024-09-11 09:09:46.947686 2024-09-11 09:09:46.947691 comef 9178 R rec ff3920a1-23c5-4719-9ba0-29454b13b27f +2024-09-11 09:09:47.004043 2024-09-11 09:09:47.004048 comef 9179 R rec 18a9e770-b606-46a8-8d11-555f64c254f3 +2024-09-11 09:09:47.066976 2024-09-11 09:09:47.066981 comef 9180 R rec e1dbbf4b-e210-4580-8b1d-6c7158b8e5e2 +2024-09-11 09:09:47.122599 2024-09-11 09:09:47.122605 comef 9181 R rec d6fd321f-923a-4861-a874-901be300d1c2 +2024-09-11 09:09:47.177955 2024-09-11 09:09:47.177959 comef 9182 R rec b2d3613e-1521-4bf8-b879-1c79254c84ae +2024-09-11 09:09:47.234472 2024-09-11 09:09:47.234478 comef 9183 R rec 084eccf4-6fb9-443e-b204-ad19129321a3 +2024-09-11 09:09:47.307131 2024-09-11 09:09:47.307137 comef 9184 R rec dc738cc1-c0c6-4326-a69e-e27b040dd33a +2024-09-11 09:09:47.366879 2024-09-11 09:09:47.366885 comef 9185 R rec 3bed5ff9-4f36-42ea-a61c-7f625d624dec +2024-09-11 09:09:47.424888 2024-09-11 09:09:47.424893 comef 9186 R rec 146e7d60-b04c-4d7d-a3da-fd04a4786573 +2024-09-11 09:09:47.48081 2024-09-11 09:09:47.480814 comef 9187 R rec ed55d1af-773d-4b1f-93ea-86588a63f7f9 +2024-09-11 09:09:47.540707 2024-09-11 09:09:47.540713 comef 9188 R rec d68d9961-e66c-4883-8ea4-0e296cd7353d +2024-09-11 09:09:47.597979 2024-09-11 09:09:47.597983 comef 9189 R rec 5fc4377c-f1b1-4daa-a49d-47e89bc03368 +2024-09-11 09:09:47.655333 2024-09-11 09:09:47.655338 comef 9190 R rec 0dbc289d-2c63-4ab3-b15d-96bdf710795a +2024-09-11 09:09:47.711521 2024-09-11 09:09:47.711526 comef 9191 R rec 79760c08-41ba-453d-a7e9-de51f324d0a9 +2024-09-11 09:09:47.774584 2024-09-11 09:09:47.774588 comef 9192 R rec 2e846238-cccc-4b40-b8e9-450d6b4e1ac6 +2024-09-11 09:09:47.83542 2024-09-11 09:09:47.835425 comef 9193 R rec baa9cb15-90a6-4b0f-98f4-8d963137b73b +2024-09-11 09:09:47.893584 2024-09-11 09:09:47.893589 comef 9194 R rec 8dbbd42b-8cb8-4d6d-9650-d541d61d4b6a +2024-09-11 09:09:47.953871 2024-09-11 09:09:47.953876 comef 9195 R rec 37664d47-36ec-421c-8120-46a29db30562 +2024-09-11 09:09:48.008052 2024-09-11 09:09:48.008058 comef 9196 R rec ef1f4365-3a6a-4c55-bdba-809189dec9ae +2024-09-11 09:09:48.066837 2024-09-11 09:09:48.066843 comef 9197 R rec 5961137e-092d-47a1-9383-6803f9d034d4 +2024-09-11 09:09:48.128169 2024-09-11 09:09:48.128174 comef 9198 R rec 3bf9634e-6bfa-4fd4-a16e-f51b77126bc2 +2024-09-11 09:09:48.18847 2024-09-11 09:09:48.188474 comef 9199 R rec c8e9eb98-562e-4035-a932-8234d89f3c8b +2024-09-11 09:09:48.250582 2024-09-11 09:09:48.250589 comef 9200 R rec 03cf57fb-7075-4452-a46e-25116c78422d +2024-09-11 09:09:48.315636 2024-09-11 09:09:48.315641 comef 9201 R rec 2bf9e549-59fe-41f9-a971-9e2af588458c +2024-09-11 09:09:48.371348 2024-09-11 09:09:48.371353 comef 9202 R rec 80920801-f041-4fc0-afca-814d4d61fa5c +2024-09-11 09:09:48.424707 2024-09-11 09:09:48.424712 comef 9203 R rec ea59a122-7d95-4760-a2dd-da5b2e721e53 +2024-09-11 09:09:48.479516 2024-09-11 09:09:48.479521 comef 9204 R rec ad3858de-5ecf-4866-bec6-1460f7eb571e +2024-09-11 09:09:48.535468 2024-09-11 09:09:48.535473 comef 9205 R rec bed230e3-38f3-4c31-8e90-8a7310d4573c +2024-09-11 09:09:48.592097 2024-09-11 09:09:48.592102 comef 9206 R rec c019cca5-5067-4f97-be38-536a03e3e887 +2024-09-11 09:09:48.646048 2024-09-11 09:09:48.646053 comef 9207 R rec d3fe4031-1972-4ea7-ad9d-aaa39132123b +2024-09-11 09:09:48.703989 2024-09-11 09:09:48.703994 comef 9208 R rec 264eb538-62c0-40cc-8d9e-c759bb36cb36 +2024-09-11 09:09:48.759443 2024-09-11 09:09:48.759448 comef 9209 R rec 339f85a9-9de9-4876-9d4d-fc7cfbf9f141 +2024-09-11 09:09:48.820587 2024-09-11 09:09:48.820595 comef 9210 R rec bf6aae2c-6e60-4330-a14f-671aad1af150 +2024-09-11 09:09:48.873667 2024-09-11 09:09:48.873672 comef 9211 R rec 9825e623-39cc-4972-8840-fe5be7d2a681 +2024-09-11 09:09:48.930359 2024-09-11 09:09:48.930364 comef 9212 R rec 9a8d8c70-e0a0-454d-a79f-6000adaf0d8f +2024-09-11 09:09:48.993948 2024-09-11 09:09:48.993952 comef 9213 R rec 6d0d227f-e39d-47c3-b028-594848482bde +2024-09-11 09:09:49.048882 2024-09-11 09:09:49.048887 comef 9214 R rec b8ec5c10-182c-4c1e-b1ff-ee7c2bac3167 +2024-09-11 09:09:49.108988 2024-09-11 09:09:49.108993 comef 9215 R rec 613400df-070f-47e6-87f6-5639eceb35d2 +2024-09-11 09:09:49.167001 2024-09-11 09:09:49.167007 comef 9216 R rec c51773f1-72a8-4c0c-8256-487c83f691fd +2024-09-11 09:09:49.227105 2024-09-11 09:09:49.227112 comef 9217 R rec 980523c8-1b2b-489a-b53e-9b7d3b457a88 +2024-09-11 09:09:49.294741 2024-09-11 09:09:49.294747 comef 9218 R rec 45de8edb-6ae2-41dc-b8c3-92d65582f48b +2024-09-11 09:09:49.348496 2024-09-11 09:09:49.348501 comef 9219 R rec c9482b00-fd69-40df-88c7-bf51ea590277 +2024-09-11 09:09:49.409805 2024-09-11 09:09:49.40981 comef 9220 R rec 664c2567-9676-4379-8dab-4d4d6f926bac +2024-09-11 09:09:49.465699 2024-09-11 09:09:49.465705 comef 9221 R rec 7a2e2221-c2e6-4ba9-a374-77d826da177b +2024-09-11 09:09:49.526172 2024-09-11 09:09:49.526177 comef 9222 R rec b3e70c69-a4c8-4827-b671-10d03b6603e9 +2024-09-11 09:09:49.58183 2024-09-11 09:09:49.581835 comef 9223 R rec 047d931a-47c8-4042-9de1-d95273a711c4 +2024-09-11 09:09:49.63929 2024-09-11 09:09:49.639295 comef 9224 R rec 29357b27-a18c-4a7c-afa3-9fed79f072e9 +2024-09-11 09:09:49.69975 2024-09-11 09:09:49.699755 comef 9225 R rec c2678d3a-428d-49d3-b0e5-e0842d6eddfa +2024-09-11 09:09:49.753635 2024-09-11 09:09:49.753645 comef 9226 R rec 761a9314-e5e5-49ac-b5af-630577c509bf +2024-09-11 09:09:49.807638 2024-09-11 09:09:49.807643 comef 9227 R rec adfc08a1-ec29-4222-a255-dd593d060073 +2024-09-11 09:09:49.860925 2024-09-11 09:09:49.860929 comef 9228 R rec 11ad5603-90b9-4124-ab67-6aec36b6b561 +2024-09-11 09:09:49.918825 2024-09-11 09:09:49.918832 comef 9229 R rec 19b7c12e-a194-4861-a928-af6c003613b7 +2024-09-11 09:09:49.974743 2024-09-11 09:09:49.974748 comef 9230 R rec bbdc4a23-b54e-4b58-a7fa-81501189a0e9 +2024-09-11 09:09:50.030985 2024-09-11 09:09:50.03099 comef 9231 R rec e0393e9b-e841-4bfa-8890-f7d87e1d7377 +2024-09-11 09:09:50.089766 2024-09-11 09:09:50.089772 comef 9232 R rec a8de90fa-0c4f-4264-bfdf-366037f4aaff +2024-09-11 09:09:50.14732 2024-09-11 09:09:50.147325 comef 9233 R rec 0faa3650-94a0-4789-85e0-ea426254f27a +2024-09-11 09:09:50.206998 2024-09-11 09:09:50.207002 comef 9234 R rec e85161af-1f04-4c89-aff6-1ece675d5dd0 +2024-09-11 09:09:50.271364 2024-09-11 09:09:50.271369 comef 9235 R rec 3caa1b72-4782-47ac-a3fa-44cab793d815 +2024-09-11 09:09:50.344213 2024-09-11 09:09:50.344218 comef 9236 R rec 3cd69eaa-8ec5-4537-ac34-35308fcdb0c3 +2024-09-11 09:09:50.401677 2024-09-11 09:09:50.401682 comef 9237 R rec 2110adce-ab64-4a50-82f1-a33676052ce2 +2024-09-11 09:09:50.46559 2024-09-11 09:09:50.465596 comef 9238 R rec 777a8485-0ecc-41e2-96fe-8321c0c2cc49 +2024-09-11 09:09:50.518599 2024-09-11 09:09:50.518604 comef 9239 R rec 3c34f63e-d16e-4536-b32c-5b67641819da +2024-09-11 09:09:50.577826 2024-09-11 09:09:50.577831 comef 9240 R rec 3a570469-c109-480e-b8e3-33651521fd21 +2024-09-11 09:09:50.629311 2024-09-11 09:09:50.629318 comef 9241 R rec 98b3ef91-9153-4bf0-8443-54ea6c2d3941 +2024-09-11 09:09:50.681218 2024-09-11 09:09:50.681222 comef 9242 R rec 1fd05e8e-2c8a-4baf-81c8-eb78388455fb +2024-09-11 09:09:50.74122 2024-09-11 09:09:50.741225 comef 9243 R rec 27e0c6dd-140a-48d1-ad35-948cba7571bf +2024-09-11 09:09:50.795219 2024-09-11 09:09:50.795224 comef 9244 R rec 1916aec4-c4d4-4707-ba1f-784844270d19 +2024-09-11 09:09:50.851939 2024-09-11 09:09:50.851944 comef 9245 R rec b6171fce-cfbf-441e-afed-5ee62b58df1c +2024-09-11 09:09:50.911439 2024-09-11 09:09:50.911444 comef 9246 R rec 2412c3bc-cd6d-4c13-a645-49e123ec366f +2024-09-11 09:09:50.970767 2024-09-11 09:09:50.970771 comef 9247 R rec 00decd3c-efdc-42bc-b604-0286fa9d0a91 +2024-09-11 09:09:51.030093 2024-09-11 09:09:51.030098 comef 9248 R rec a2c7d790-a517-4ef9-b849-a0c931ef8fd7 +2024-09-11 09:09:51.08991 2024-09-11 09:09:51.089915 comef 9249 R rec 62d9b17a-c91c-408d-8629-7de1392d5c25 +2024-09-11 09:09:51.169383 2024-09-11 09:09:51.169388 comef 9250 R rec 70c45960-0ab3-48f8-9f65-492655a96df0 +2024-09-11 09:09:51.243682 2024-09-11 09:09:51.243687 comef 9251 R rec c770450d-f625-484f-b1aa-9285f9f59867 +2024-09-11 09:09:51.310586 2024-09-11 09:09:51.310591 comef 9252 R rec 357f26b9-7100-4427-bb70-d77763a08d64 +2024-09-11 09:09:51.368678 2024-09-11 09:09:51.368684 comef 9253 R rec abf46b69-01c9-4a56-b48e-bc1dae5e8c3b +2024-09-11 09:09:51.421308 2024-09-11 09:09:51.421312 comef 9254 R rec 853bb5ec-5ff3-4646-8898-5c65b4e74221 +2024-09-11 09:09:51.475681 2024-09-11 09:09:51.475687 comef 9255 R rec 41a7e1af-6fca-4dba-82e2-0a3c63ecc9a7 +2024-09-11 09:09:51.536491 2024-09-11 09:09:51.536496 comef 9256 R rec 0ac1a415-2be7-4368-83f7-1576681bdda9 +2024-09-11 09:09:51.59108 2024-09-11 09:09:51.591084 comef 9257 R rec 5c54e675-ac74-4048-b5e9-de43c93516e8 +2024-09-11 09:09:51.649626 2024-09-11 09:09:51.64963 comef 9258 R rec 04fb4dae-2d1c-437a-940a-8fd762e18c6a +2024-09-11 09:09:51.707251 2024-09-11 09:09:51.707257 comef 9259 R rec 96d97daf-afda-4974-9f88-4ef4d4ba1bb4 +2024-09-11 09:09:51.765275 2024-09-11 09:09:51.765281 comef 9260 R rec d5c62608-6932-4d18-a407-8d036ccc8e9a +2024-09-11 09:09:51.825728 2024-09-11 09:09:51.825733 comef 9261 R rec 54530c8a-d2f5-4ce8-bc55-e164bd653b8a +2024-09-11 09:09:51.883667 2024-09-11 09:09:51.883673 comef 9262 R rec c7c7bcfa-114d-4157-8f0e-4f069254d0c5 +2024-09-11 09:09:51.941691 2024-09-11 09:09:51.941697 comef 9263 R rec a4996dc4-3adb-4e59-8415-355b62f9922f +2024-09-11 09:09:51.9952 2024-09-11 09:09:51.995204 comef 9264 R rec de75e7a6-6ee6-4bc4-af1b-7e9b61799c33 +2024-09-11 09:09:52.050204 2024-09-11 09:09:52.050209 comef 9265 R rec 0f0a80d8-91f7-4f07-b8f9-5089146ab2a8 +2024-09-11 09:09:52.108796 2024-09-11 09:09:52.108802 comef 9266 R rec 4fbd822a-c8b2-4a48-bb8d-d162a911be62 +2024-09-11 09:09:52.176103 2024-09-11 09:09:52.176108 comef 9267 R rec 60304184-7a19-48d7-968e-da4024782047 +2024-09-11 09:09:52.239716 2024-09-11 09:09:52.239721 comef 9268 R rec fc842cbb-7b37-446c-8be3-a3ee14c41fb6 +2024-09-11 09:09:52.296467 2024-09-11 09:09:52.296473 comef 9269 R rec fb1eb544-bf90-4b7b-bb78-60d55f60aac4 +2024-09-11 09:09:52.357287 2024-09-11 09:09:52.357292 comef 9270 R rec 15d720b4-a3c2-4b9d-a3f9-dcf64bd438a5 +2024-09-11 09:09:52.411365 2024-09-11 09:09:52.411369 comef 9271 R rec adf162ad-d966-47e1-82f9-384270263b29 +2024-09-11 09:09:52.464218 2024-09-11 09:09:52.464224 comef 9272 R rec b330fb06-3d03-4158-9637-adc5e30aa885 +2024-09-11 09:09:52.527162 2024-09-11 09:09:52.527167 comef 9273 R rec 86c5b2f0-d884-45f4-b2d4-3ad2798dadac +2024-09-11 09:09:52.5855 2024-09-11 09:09:52.585506 comef 9274 R rec b60872d8-53a4-4dfa-a6dc-c094c42f1afa +2024-09-11 09:09:52.643874 2024-09-11 09:09:52.643878 comef 9275 R rec f8ac8c71-3cc9-4e66-b18d-d65bf47b2e75 +2024-09-11 09:09:52.700377 2024-09-11 09:09:52.700383 comef 9276 R rec 58e5cfa8-a8f8-4230-b2fd-202a2f19b20c +2024-09-11 09:09:52.754885 2024-09-11 09:09:52.75489 comef 9277 R rec a9d9bdfd-e4c4-4891-b6de-8dd2f5cc8531 +2024-09-11 09:09:52.810203 2024-09-11 09:09:52.810208 comef 9278 R rec 641dd338-e193-4f05-9e09-46a4dad723f7 +2024-09-11 09:09:52.865092 2024-09-11 09:09:52.865096 comef 9279 R rec 1e863518-374f-436b-a447-0c0590b193b4 +2024-09-11 09:09:52.924886 2024-09-11 09:09:52.924891 comef 9280 R rec 943de9c0-f4b6-4c75-84a6-0def2dba3396 +2024-09-11 09:09:52.977585 2024-09-11 09:09:52.97759 comef 9281 R rec 7fa6d022-0d97-4dd5-ab20-455bc1835814 +2024-09-11 09:09:53.042065 2024-09-11 09:09:53.04207 comef 9282 R rec c37c7989-9416-48b7-9ee1-902c1cc88cbb +2024-09-11 09:09:53.108404 2024-09-11 09:09:53.10841 comef 9283 R rec 81ab0a1d-9d33-4346-99c2-edfee77b8973 +2024-09-11 09:09:53.173084 2024-09-11 09:09:53.173089 comef 9284 R rec b3848310-2303-46bb-9225-31f2ff4a9adb +2024-09-11 09:09:53.226298 2024-09-11 09:09:53.226303 comef 9285 R rec 084a37e1-dcf3-4696-a8b3-ca5c36ea8361 +2024-09-11 09:09:53.276337 2024-09-11 09:09:53.276343 comef 9286 R rec 376a7d1b-917a-47aa-b499-5534d9165db6 +2024-09-11 09:09:53.334087 2024-09-11 09:09:53.334092 comef 9287 R rec ca963278-012a-4f04-9b07-a75e7402352c +2024-09-11 09:09:53.397843 2024-09-11 09:09:53.397847 comef 9288 R rec 0af4c45c-2a42-41ae-a418-847167ff23ca +2024-09-11 09:09:53.460378 2024-09-11 09:09:53.460382 comef 9289 R rec bb92d80d-d3b0-419c-96fe-bc6944b9d3d8 +2024-09-11 09:09:53.527627 2024-09-11 09:09:53.527632 comef 9290 R rec 75d1408a-dd10-4f6b-b06f-d0f872ada00c +2024-09-11 09:09:53.59162 2024-09-11 09:09:53.591625 comef 9291 R rec bf10cdd3-910b-4ce5-9898-41dfec7352f8 +2024-09-11 09:09:53.642034 2024-09-11 09:09:53.642039 comef 9292 R rec 98c61205-88fe-4f66-b63a-431e8a67dd86 +2024-09-11 09:09:53.697739 2024-09-11 09:09:53.697745 comef 9293 R rec 5eb367eb-cd2f-41b9-acac-afb913fea36a +2024-09-11 09:09:53.751888 2024-09-11 09:09:53.751893 comef 9294 R rec 735fc588-a168-48dd-960b-a06f92c552aa +2024-09-11 09:09:53.807863 2024-09-11 09:09:53.807869 comef 9295 R rec 7abda38a-35c2-4c0e-ae34-7c082f45c912 +2024-09-11 09:09:53.872403 2024-09-11 09:09:53.872407 comef 9296 R rec a57014da-36c1-46bc-b2b5-57907630de4a +2024-09-11 09:09:53.949791 2024-09-11 09:09:53.949796 comef 9297 R rec e96a5b3f-7d65-497d-ac47-8841bf00aae2 +2024-09-11 09:09:54.002497 2024-09-11 09:09:54.002503 comef 9298 R rec f4181a11-a1fb-4df7-9c4c-a5c3a96e2a3f +2024-09-11 09:09:54.051454 2024-09-11 09:09:54.051459 comef 9299 R rec f83d1728-f7da-4731-8e6d-5f55b5391d59 +2024-09-11 09:09:54.108185 2024-09-11 09:09:54.10819 comef 9300 R rec 2c500d41-437c-4c73-8665-293de2d4186e +2024-09-11 09:09:54.161322 2024-09-11 09:09:54.161327 comef 9301 R rec be11ab9b-2c0f-4d22-b6f3-2347caf9f1f2 +2024-09-11 09:09:54.215559 2024-09-11 09:09:54.215563 comef 9302 R rec a1a585e4-b21a-4084-b2b3-c3e79c05e6c0 +2024-09-11 09:09:54.272525 2024-09-11 09:09:54.27253 comef 9303 R rec f08ffbaf-5c25-48d4-861c-82b7c1afca88 +2024-09-11 09:09:54.327027 2024-09-11 09:09:54.327032 comef 9304 R rec a0b81a6d-ed37-4524-b556-0f6a5cd8b991 +2024-09-11 09:09:54.385934 2024-09-11 09:09:54.385939 comef 9305 R rec 1c2f0fe0-ee57-44ae-a50e-4ee8dbc5d0f0 +2024-09-11 09:09:54.442831 2024-09-11 09:09:54.442836 comef 9306 R rec ea30953a-8550-4398-b179-937998fa5a7d +2024-09-11 09:09:54.507055 2024-09-11 09:09:54.507061 comef 9307 R rec 75fd5963-6882-497e-bc64-ee8032da50fd +2024-09-11 09:09:54.566036 2024-09-11 09:09:54.566042 comef 9308 R rec fe88f7c3-7275-4137-9619-350d94ccb64f +2024-09-11 09:09:54.620675 2024-09-11 09:09:54.620682 comef 9309 R rec e00f2380-7d0a-4a22-ad1c-9bc2b11bf68e +2024-09-11 09:09:54.673345 2024-09-11 09:09:54.673349 comef 9310 R rec 44282db5-1a4e-42e9-9623-8d464266b91a +2024-09-11 09:09:54.724242 2024-09-11 09:09:54.724247 comef 9311 R rec 1ba78181-c9bc-4d26-9c63-64e441d51a0f +2024-09-11 09:09:54.780675 2024-09-11 09:09:54.78068 comef 9312 R rec 4b2f6e58-f3b6-4a30-b9f7-2eda4f7cca6d +2024-09-11 09:09:54.83783 2024-09-11 09:09:54.837835 comef 9313 R rec 4b9b04ad-1cda-471a-bf8a-89f27243a221 +2024-09-11 09:09:54.893498 2024-09-11 09:09:54.893502 comef 9314 R rec 204bfa21-e1ed-43af-83b4-af92f8b6ddd6 +2024-09-11 09:09:54.963447 2024-09-11 09:09:54.963453 comef 9315 R rec 83b738a5-0bb8-4116-8f3a-c9c9ed1fb5bc +2024-09-11 09:09:55.029682 2024-09-11 09:09:55.029687 comef 9316 R rec 18d85141-87f0-47a3-98c6-0337ca95e9d3 +2024-09-11 09:09:55.088552 2024-09-11 09:09:55.088557 comef 9317 R rec bea94dcb-bd36-4a18-8f01-5ea959c22d3f +2024-09-11 09:09:55.14366 2024-09-11 09:09:55.143665 comef 9318 R rec 68c176ea-4445-4ef4-8619-4c72dee25a22 +2024-09-11 09:09:55.201398 2024-09-11 09:09:55.201403 comef 9319 R rec 591fd7eb-a947-4333-abea-83bf9f603378 +2024-09-11 09:09:55.25548 2024-09-11 09:09:55.255484 comef 9320 R rec 11b90f2a-2e7b-4e02-97fa-875161932e7b +2024-09-11 09:09:55.310943 2024-09-11 09:09:55.310949 comef 9321 R rec 6e5f6573-2ba7-4ddc-86b6-6ad3ebf6909b +2024-09-11 09:09:55.369651 2024-09-11 09:09:55.369655 comef 9322 R rec 285dd78d-8ef8-4f58-88c3-412229479133 +2024-09-11 09:09:55.432406 2024-09-11 09:09:55.432412 comef 9323 R rec b5d77dbe-476f-48f6-811f-a0a47d8d4198 +2024-09-11 09:09:55.490593 2024-09-11 09:09:55.490598 comef 9324 R rec cb10264a-4efd-4fe2-9764-a5f62cbf468f +2024-09-11 09:09:55.552713 2024-09-11 09:09:55.552719 comef 9325 R rec 576f962d-190a-4a00-ad88-c86617b08f99 +2024-09-11 09:09:55.609515 2024-09-11 09:09:55.609521 comef 9326 R rec 2d5570c2-911e-4e86-936f-bdb19282cf73 +2024-09-11 09:09:55.663192 2024-09-11 09:09:55.663197 comef 9327 R rec 780b750d-1e8b-4f6c-9738-49fd8664d6c6 +2024-09-11 09:09:55.719547 2024-09-11 09:09:55.719553 comef 9328 R rec 5bd57b5f-7385-41d3-beb1-fd3b2b88e5de +2024-09-11 09:09:55.771474 2024-09-11 09:09:55.771479 comef 9329 R rec 5b72703d-f788-4a57-93cd-f8c8a03a4445 +2024-09-11 09:09:55.829099 2024-09-11 09:09:55.829105 comef 9330 R rec 26246da0-6f38-4546-8a7f-4de22926fd28 +2024-09-11 09:09:55.897433 2024-09-11 09:09:55.897438 comef 9331 R rec eb0de264-ce14-4ccf-a0c3-9833c3e4eb34 +2024-09-11 09:09:55.956323 2024-09-11 09:09:55.956327 comef 9332 R rec b9cf9265-fbe0-4a3b-a177-74bd1e5916a9 +2024-09-11 09:09:56.014178 2024-09-11 09:09:56.014183 comef 9333 R rec b43f0a40-7bcd-4bf9-afbe-9da09ac06686 +2024-09-11 09:09:56.069984 2024-09-11 09:09:56.069989 comef 9334 R rec 8732a9c5-4a2d-41da-8045-c043b331411b +2024-09-11 09:09:56.127609 2024-09-11 09:09:56.127614 comef 9335 R rec 53050f1b-17c6-4944-9137-09d025a0be91 +2024-09-11 09:09:56.181112 2024-09-11 09:09:56.181117 comef 9336 R rec 3ef95c1d-bbd3-4e5e-951d-346e024cde1f +2024-09-11 09:09:56.236277 2024-09-11 09:09:56.236282 comef 9337 R rec fa78d306-2eaf-4647-a7f1-2d894bd0c2d9 +2024-09-11 09:09:56.295434 2024-09-11 09:09:56.295441 comef 9338 R rec 4153ab61-7ea9-4b0e-9614-f7497dd732d0 +2024-09-11 09:09:56.351437 2024-09-11 09:09:56.351442 comef 9339 R rec b0598e6a-ec95-4cf9-a7d4-5415ca7896bd +2024-09-11 09:09:56.410966 2024-09-11 09:09:56.410971 comef 9340 R rec 2d1af7f7-442a-48e4-ae60-c0456934b38d +2024-09-11 09:09:56.465168 2024-09-11 09:09:56.465173 comef 9341 R rec c07d61a4-5523-4626-a1ac-16f1cd3ac753 +2024-09-11 09:09:56.522166 2024-09-11 09:09:56.522172 comef 9342 R rec 0ad37a72-0f17-4f8d-b27a-0a5bbff3d19d +2024-09-11 09:09:56.577573 2024-09-11 09:09:56.577579 comef 9343 R rec ffb5de24-97be-45eb-a3f4-d3c6cc7f0115 +2024-09-11 09:09:56.635409 2024-09-11 09:09:56.635414 comef 9344 R rec b1711f0f-046d-4944-a82a-f5c8bedd515d +2024-09-11 09:09:56.692445 2024-09-11 09:09:56.69245 comef 9345 R rec 7949c76a-1bdc-435f-9ab7-b5a6827109d2 +2024-09-11 09:09:56.7486 2024-09-11 09:09:56.748605 comef 9346 R rec c1be121f-d48f-4074-8401-d13b6f1d1dcf +2024-09-11 09:09:56.813648 2024-09-11 09:09:56.813653 comef 9347 R rec 5841ee0e-48df-440b-ae61-4dae3f9434a0 +2024-09-11 09:09:56.870315 2024-09-11 09:09:56.870319 comef 9348 R rec 910a8c60-33c8-4141-850d-72e44f76b6bf +2024-09-11 09:09:56.928148 2024-09-11 09:09:56.928154 comef 9349 R rec b8948fe5-7ce7-4015-89b2-11d83c880786 +2024-09-11 09:09:56.992867 2024-09-11 09:09:56.992872 comef 9350 R rec fec63e19-f5d2-4a1c-9c2f-919abefd8f8d +2024-09-11 09:09:57.051563 2024-09-11 09:09:57.051568 comef 9351 R rec 73e526f3-e515-4add-ae31-1820e2852d1f +2024-09-11 09:09:57.109944 2024-09-11 09:09:57.109948 comef 9352 R rec 13248dd4-b7ac-4dd2-89a3-bebaae22b62c +2024-09-11 09:09:57.170837 2024-09-11 09:09:57.170841 comef 9353 R rec b30d4f7f-6d99-4cc2-b78f-1bbb41ac6153 +2024-09-11 09:09:57.22928 2024-09-11 09:09:57.229285 comef 9354 R rec cc360bc9-065f-47e6-abb0-ce215f17f24f +2024-09-11 09:09:57.286185 2024-09-11 09:09:57.286189 comef 9355 R rec f876fb41-8aa6-43a9-a659-b6035d80ed10 +2024-09-11 09:09:57.340561 2024-09-11 09:09:57.340565 comef 9356 R rec de79e57f-142f-45f8-bec4-5bc5639d20e3 +2024-09-11 09:09:57.390744 2024-09-11 09:09:57.390749 comef 9357 R rec 8b36268e-e1ba-4ac3-9e57-7082d102d938 +2024-09-11 09:09:57.443778 2024-09-11 09:09:57.443785 comef 9358 R rec 26c4d80d-7ccf-4148-a27f-b6a9a40d042a +2024-09-11 09:09:57.507681 2024-09-11 09:09:57.507686 comef 9359 R rec d320cb9f-29b3-48a8-aa37-ce6278fd195b +2024-09-11 09:09:57.570072 2024-09-11 09:09:57.570077 comef 9360 R rec 18c10658-cb49-4af3-93b9-dcd3eace11a7 +2024-09-11 09:09:57.623947 2024-09-11 09:09:57.623952 comef 9361 R rec b1dc6169-d57a-4f66-8f1c-eb08a70cf6ef +2024-09-11 09:09:57.676314 2024-09-11 09:09:57.676319 comef 9362 R rec 0fcf5516-3368-4b3e-a240-745f3f2ac04e +2024-09-11 09:09:57.732709 2024-09-11 09:09:57.732715 comef 9363 R rec 6893f129-dad6-46e9-9c87-93651d65d761 +2024-09-11 09:09:57.787694 2024-09-11 09:09:57.787699 comef 9364 R rec 21f7626b-9452-4001-a294-b6a8804cfb99 +2024-09-11 09:09:57.845409 2024-09-11 09:09:57.845414 comef 9365 R rec b02c1105-8b3b-4549-8421-edaead98df0e +2024-09-11 09:09:57.904745 2024-09-11 09:09:57.904749 comef 9366 R rec 97232201-be23-4959-9a5e-3eff14d1b510 +2024-09-11 09:09:57.959426 2024-09-11 09:09:57.959432 comef 9367 R rec 7a3802e9-f9d6-4bec-bf29-6168bc554dad +2024-09-11 09:09:58.021229 2024-09-11 09:09:58.021234 comef 9368 R rec e0c21140-12b1-42da-94e0-a34e144273df +2024-09-11 09:09:58.091649 2024-09-11 09:09:58.091654 comef 9369 R rec a2c6eb04-e719-4e68-b5dd-413ad1dbb620 +2024-09-11 09:09:58.149036 2024-09-11 09:09:58.14904 comef 9370 R rec 0f35cf56-e252-46ea-a080-ec09f7523992 +2024-09-11 09:09:58.208936 2024-09-11 09:09:58.208941 comef 9371 R rec 1b324914-a8fa-4fa9-bbf4-b82c7ffe29e2 +2024-09-11 09:09:58.269568 2024-09-11 09:09:58.269573 comef 9372 R rec 318c38fe-de27-436c-8178-6e3272e5f815 +2024-09-11 09:09:58.323275 2024-09-11 09:09:58.32328 comef 9373 R rec 044084be-8b44-41d9-b627-723d954d1ec8 +2024-09-11 09:09:58.378387 2024-09-11 09:09:58.378392 comef 9374 R rec 0ce8367e-bdb6-4d57-b5b2-a0146ad7254f +2024-09-11 09:09:58.4315 2024-09-11 09:09:58.431505 comef 9375 R rec 7b202af1-bf75-4163-b3ca-11eb971ccea5 +2024-09-11 09:09:58.48165 2024-09-11 09:09:58.481654 comef 9376 R rec c207922a-9bd4-47d0-88c2-84cc0471eaa7 +2024-09-11 09:09:58.536496 2024-09-11 09:09:58.5365 comef 9377 R rec 0c98675e-f6c5-438d-987a-db7946889b38 +2024-09-11 09:09:58.596196 2024-09-11 09:09:58.596201 comef 9378 R rec 7316604c-fdcf-45fb-b231-38146a5983a3 +2024-09-11 09:09:58.656357 2024-09-11 09:09:58.656362 comef 9379 R rec d0e128d9-28d7-4250-9c4c-1a2bcc0cab31 +2024-09-11 09:09:58.715797 2024-09-11 09:09:58.715801 comef 9380 R rec 7cfd4ce8-5d4f-4f4b-b484-e8b717603a21 +2024-09-11 09:09:58.769251 2024-09-11 09:09:58.769256 comef 9381 R rec 053233bc-96b3-4aab-83dd-2982fbc95870 +2024-09-11 09:09:58.823551 2024-09-11 09:09:58.823556 comef 9382 R rec 35d12937-ccb8-4076-8d44-b708dec2ffe0 +2024-09-11 09:09:58.877602 2024-09-11 09:09:58.877606 comef 9383 R rec 3a2da583-e193-4582-8665-1424cb5db53a +2024-09-11 09:09:58.932872 2024-09-11 09:09:58.932877 comef 9384 R rec ba67565d-e1ad-4278-b4d7-bc8e5a865cba +2024-09-11 09:09:58.987043 2024-09-11 09:09:58.987048 comef 9385 R rec b8fd97e0-13fc-4631-8e16-5e67239e86aa +2024-09-11 09:09:59.043823 2024-09-11 09:09:59.043828 comef 9386 R rec b2dc7e2a-a5e5-4cb3-8b61-cd2d4afdfb1d +2024-09-11 09:09:59.179249 2024-09-11 09:09:59.179254 comef 9387 R rec 3bcca28a-385a-4ca0-b2ba-7152c232e47a +2024-09-11 09:09:59.234014 2024-09-11 09:09:59.23402 comef 9388 R rec ed89277f-464c-4c2c-b9f1-084b3f8e202c +2024-09-11 09:09:59.287745 2024-09-11 09:09:59.287752 comef 9389 R rec 9d07311a-310e-4b9d-987d-bc261e17a7c8 +2024-09-11 09:09:59.346579 2024-09-11 09:09:59.346583 comef 9390 R rec c5ca3e24-7a8a-40a0-a7e6-dd8036d7d9db +2024-09-11 09:09:59.398349 2024-09-11 09:09:59.398353 comef 9391 R rec 7f754975-6d9c-4f62-ad6e-cd58e28204d6 +2024-09-11 09:09:59.453119 2024-09-11 09:09:59.453127 comef 9392 R rec 41cfd718-212b-46ed-bd51-3226614182f8 +2024-09-11 09:09:59.508139 2024-09-11 09:09:59.508144 comef 9393 R rec c738303e-71a7-4106-978b-d65ec3fbad96 +2024-09-11 09:09:59.565755 2024-09-11 09:09:59.565761 comef 9394 R rec 85f6ec92-7292-4bc8-a837-78277dc9ffff +2024-09-11 09:09:59.622629 2024-09-11 09:09:59.622634 comef 9395 R rec c27135a5-2c9c-4be2-a4ad-709f00264f33 +2024-09-11 09:09:59.678628 2024-09-11 09:09:59.678633 comef 9396 R rec ab3dfe3c-8d61-48fa-8c2e-45321d9003b3 +2024-09-11 09:09:59.736715 2024-09-11 09:09:59.736719 comef 9397 R rec 200ab0c8-2487-45c8-982b-f91064ab501c +2024-09-11 09:09:59.79353 2024-09-11 09:09:59.793535 comef 9398 R rec a7a3c61e-b385-4e6b-a9ee-fd7b98622db7 +2024-09-11 09:09:59.848431 2024-09-11 09:09:59.848435 comef 9399 R rec 234406ea-5457-43a7-bcc3-f39cb4087df7 +2024-09-11 09:09:59.90579 2024-09-11 09:09:59.905795 comef 9400 R rec c053c2f2-8c90-4761-81c3-294e55a51210 +2024-09-11 09:09:59.959465 2024-09-11 09:09:59.95947 comef 9401 R rec 7e6f5787-3016-449d-b12f-4fbec0e30001 +2024-09-11 09:10:00.01516 2024-09-11 09:10:00.015165 comef 9402 R rec 2e3e4ea6-4416-4f31-8a50-1dfafafee87a +2024-09-11 09:10:00.071293 2024-09-11 09:10:00.071298 comef 9403 R rec 8721d986-dd72-454e-b61d-aedfdcec7b4f +2024-09-11 09:10:00.127904 2024-09-11 09:10:00.127909 comef 9404 R rec c9475bfd-3a42-46db-a753-dd05e76b6822 +2024-09-11 09:10:00.20423 2024-09-11 09:10:00.204235 comef 9405 R rec 6c5135a0-198c-4f85-9c2a-381932116b41 +2024-09-11 09:10:00.268592 2024-09-11 09:10:00.268597 comef 9406 R rec f9c80528-7775-4111-b6c5-49f4db319f06 +2024-09-11 09:10:00.326176 2024-09-11 09:10:00.326181 comef 9407 R rec a49c8803-6a0b-40ba-a7de-52097975c977 +2024-09-11 09:10:00.380836 2024-09-11 09:10:00.380841 comef 9408 R rec 7b2e4371-bcc4-481e-94ed-13a49f110daa +2024-09-11 09:10:00.435112 2024-09-11 09:10:00.435118 comef 9409 R rec 0270ee22-0041-4d09-9970-253e1592423a +2024-09-11 09:10:00.493271 2024-09-11 09:10:00.493276 comef 9410 R rec 90b077cb-9b06-418f-87b4-8dad24dfddac +2024-09-11 09:10:00.548792 2024-09-11 09:10:00.548796 comef 9411 R rec 562ed388-467b-46f4-9cb0-21e1ae74319c +2024-09-11 09:10:00.605213 2024-09-11 09:10:00.605218 comef 9412 R rec 99377734-605f-49bd-87e0-34578593b6a7 +2024-09-11 09:10:00.662792 2024-09-11 09:10:00.662797 comef 9413 R rec afecdfab-dda1-4e19-832c-edb4921c23b1 +2024-09-11 09:10:00.720667 2024-09-11 09:10:00.720673 comef 9414 R rec 089702ee-9f45-4e26-928c-c8ba2b53cf57 +2024-09-11 09:10:00.776759 2024-09-11 09:10:00.776764 comef 9415 R rec 4069dfd2-f4da-47ed-9475-c22044e8bd44 +2024-09-11 09:10:00.831443 2024-09-11 09:10:00.831449 comef 9416 R rec b758e854-0120-4599-9d98-66e3561dbdc0 +2024-09-11 09:10:00.886948 2024-09-11 09:10:00.886954 comef 9417 R rec a95fcb93-051f-407c-a0b1-59c3397661e7 +2024-09-11 09:10:00.941846 2024-09-11 09:10:00.941851 comef 9418 R rec 77d8d22e-8361-4fdc-ac82-794fb108a4e4 +2024-09-11 09:10:00.999307 2024-09-11 09:10:00.999312 comef 9419 R rec 98adf2ec-6f3d-4e4f-b485-e095adbc8dce +2024-09-11 09:10:01.053697 2024-09-11 09:10:01.053702 comef 9420 R rec 98456316-36af-4719-8ad2-cf77c3e8439f +2024-09-11 09:10:01.108147 2024-09-11 09:10:01.108153 comef 9421 R rec 8af0ded9-9b91-4f3b-b10f-cec02d3aab83 +2024-09-11 09:10:01.166507 2024-09-11 09:10:01.166513 comef 9422 R rec 41bf3e16-7a0c-4f82-a159-fc194534b7d1 +2024-09-11 09:10:01.222449 2024-09-11 09:10:01.222454 comef 9423 R rec ad4ffc9c-11ea-438f-bd46-636c087ff8cd +2024-09-11 09:10:01.287046 2024-09-11 09:10:01.287051 comef 9424 R rec aec4f9b3-e60c-47d0-b3c5-289aee7b7c8a +2024-09-11 09:10:01.364661 2024-09-11 09:10:01.364665 comef 9425 R rec 4b038ed2-8c11-4c72-b1b6-dd3830fdbf2f +2024-09-11 09:10:01.421603 2024-09-11 09:10:01.421608 comef 9426 R rec a1c1f065-0e76-4f1a-b550-bbeb0a775279 +2024-09-11 09:10:01.476539 2024-09-11 09:10:01.476544 comef 9427 R rec 3dcf943f-2018-4d2e-b3d3-38392dc26bf8 +2024-09-11 09:10:01.532442 2024-09-11 09:10:01.532447 comef 9428 R rec d0ec0cf0-65c6-43e0-82f9-27bf66e35fc3 +2024-09-11 09:10:01.597532 2024-09-11 09:10:01.597536 comef 9429 R rec fee6e346-33ef-4ff3-b036-91cb9033fbe2 +2024-09-11 09:10:01.652939 2024-09-11 09:10:01.652945 comef 9430 R rec 6ee51b1d-a7ec-4db5-9531-be61db3d57bb +2024-09-11 09:10:01.71151 2024-09-11 09:10:01.711515 comef 9431 R rec 38990035-53ed-4c7b-84a7-4e6c3a24d38c +2024-09-11 09:10:01.769517 2024-09-11 09:10:01.769522 comef 9432 R rec 4677a43a-a032-4213-8a54-6a6b919a345c +2024-09-11 09:10:01.831057 2024-09-11 09:10:01.831061 comef 9433 R rec 9aa3b659-eba6-4e79-92e3-0414eeaa2cd8 +2024-09-11 09:10:01.885403 2024-09-11 09:10:01.885408 comef 9434 R rec bbdb1a23-d7ad-4fdf-99ca-dcd4fe6967be +2024-09-11 09:10:01.940736 2024-09-11 09:10:01.94074 comef 9435 R rec f53fb3c8-5bb4-466a-8fc0-5f925c4ba86b +2024-09-11 09:10:01.99437 2024-09-11 09:10:01.994375 comef 9436 R rec 56c6c545-fd34-4226-bb8a-0cce783b1610 +2024-09-11 09:10:02.049495 2024-09-11 09:10:02.0495 comef 9437 R rec 70b3ffcb-2d29-40a2-9ff0-6743c0cb4b8d +2024-09-11 09:10:02.106466 2024-09-11 09:10:02.10647 comef 9438 R rec cde276bd-6599-4125-98cd-e6365acee456 +2024-09-11 09:10:02.160372 2024-09-11 09:10:02.160377 comef 9439 R rec bdfbd550-1ad5-45bf-809e-dff8bb1d381b +2024-09-11 09:10:02.218678 2024-09-11 09:10:02.218683 comef 9440 R rec e04b9193-ae83-4431-b541-fc4bfa0aed36 +2024-09-11 09:10:02.273176 2024-09-11 09:10:02.27318 comef 9441 R rec deededc6-bdd8-47e2-97e4-66f139275450 +2024-09-11 09:10:02.326667 2024-09-11 09:10:02.326672 comef 9442 R rec 2b0f2423-a592-4b4a-8100-eee64e6ad7e5 +2024-09-11 09:10:02.381638 2024-09-11 09:10:02.381643 comef 9443 R rec 94d11409-7a33-4939-9f1d-c360e6bda574 +2024-09-11 09:10:02.437884 2024-09-11 09:10:02.43789 comef 9444 R rec eb9ab460-beb0-4427-bc24-5c847479172e +2024-09-11 09:10:02.501521 2024-09-11 09:10:02.501526 comef 9445 R rec fd20319b-5778-45c0-b033-76d6df357dd3 +2024-09-11 09:10:02.564455 2024-09-11 09:10:02.564461 comef 9446 R rec 94c0360c-cbfe-4d21-8d2f-91cd31c0af83 +2024-09-11 09:10:02.616672 2024-09-11 09:10:02.616676 comef 9447 R rec fb29c6f8-59d9-4977-afe2-70a0cd679fdb +2024-09-11 09:10:02.672298 2024-09-11 09:10:02.672303 comef 9448 R rec 1d240152-d145-442f-a74c-63eeecaf09ed +2024-09-11 09:10:02.73064 2024-09-11 09:10:02.730645 comef 9449 R rec e46e97c9-b2df-4176-96d6-7474f12aa51c +2024-09-11 09:10:02.789323 2024-09-11 09:10:02.789328 comef 9450 R rec ec1fb7af-dde1-4739-8597-34302680083a +2024-09-11 09:10:02.845884 2024-09-11 09:10:02.845889 comef 9451 R rec 03df0de2-4570-4359-a82b-82aaab17977e +2024-09-11 09:10:02.901498 2024-09-11 09:10:02.901504 comef 9452 R rec cf138b71-b3f4-4c56-a4d5-e6f39dd49e41 +2024-09-11 09:10:02.96212 2024-09-11 09:10:02.962124 comef 9453 R rec 753ccae1-9855-4206-a7a2-d901aa390019 +2024-09-11 09:10:03.024861 2024-09-11 09:10:03.024867 comef 9454 R rec 419715f7-f4b1-4721-b78e-a0529eee8b13 +2024-09-11 09:10:03.082194 2024-09-11 09:10:03.082199 comef 9455 R rec cb9ea76f-5251-404b-84f6-8b4e4ab66a7b +2024-09-11 09:10:03.146751 2024-09-11 09:10:03.146756 comef 9456 R rec 8e7e31cb-64bc-409c-b3a5-295406c59ffb +2024-09-11 09:10:03.205426 2024-09-11 09:10:03.205432 comef 9457 R rec cbfbded7-2dde-491c-bf1c-7d324b61f599 +2024-09-11 09:10:03.259675 2024-09-11 09:10:03.25968 comef 9458 R rec 58462c85-9300-4817-820c-2f146942242c +2024-09-11 09:10:03.32165 2024-09-11 09:10:03.321654 comef 9459 R rec cbefa0fa-7226-4fb3-a79d-3230d650547b +2024-09-11 09:10:03.383633 2024-09-11 09:10:03.383639 comef 9460 R rec 34ab6b4f-cc9c-442b-9375-74a3c15ad253 +2024-09-11 09:10:03.448781 2024-09-11 09:10:03.448786 comef 9461 R rec 4955b6a4-5f33-4039-9c16-b3bba84b658f +2024-09-11 09:10:03.50006 2024-09-11 09:10:03.500066 comef 9462 R rec 8bdc6336-8692-4dc7-b1d8-70854de8b6e3 +2024-09-11 09:10:03.556308 2024-09-11 09:10:03.556313 comef 9463 R rec 287dd19f-ae7d-4b81-b27d-078faccd30bd +2024-09-11 09:10:03.615545 2024-09-11 09:10:03.61555 comef 9464 R rec aa8f58b1-3387-40cd-8f99-03b9ea7477d5 +2024-09-11 09:10:03.671211 2024-09-11 09:10:03.671216 comef 9465 R rec 5fd96ab9-528c-459f-a204-3222dd028464 +2024-09-11 09:10:03.724902 2024-09-11 09:10:03.724907 comef 9466 R rec 96a5a562-4bc5-49b5-a502-33c581064712 +2024-09-11 09:10:03.779384 2024-09-11 09:10:03.779389 comef 9467 R rec 88770a51-289c-47ac-9f25-66e0cb9230b5 +2024-09-11 09:10:03.841665 2024-09-11 09:10:03.841671 comef 9468 R rec ffcd3521-b1a3-4de7-86e8-a94253789657 +2024-09-11 09:10:03.897004 2024-09-11 09:10:03.89701 comef 9469 R rec 26736117-42d6-4037-afa3-5f6f74db98ff +2024-09-11 09:10:03.955759 2024-09-11 09:10:03.955763 comef 9470 R rec d710aa1a-f547-4163-82af-daa24b605882 +2024-09-11 09:10:04.020612 2024-09-11 09:10:04.020618 comef 9471 R rec 63454c3d-a810-4f49-9848-7009d9bddfe4 +2024-09-11 09:10:04.084933 2024-09-11 09:10:04.084939 comef 9472 R rec a9673264-9af3-4633-a872-b76d17a27514 +2024-09-11 09:10:04.148251 2024-09-11 09:10:04.148256 comef 9473 R rec 53d82f0a-64da-49ee-be66-e27d6306aded +2024-09-11 09:10:04.197427 2024-09-11 09:10:04.197432 comef 9474 R rec 7d83c167-fbca-427d-a22c-aa6b95d8dd9a +2024-09-11 09:10:04.255117 2024-09-11 09:10:04.255122 comef 9475 R rec a1c151bb-7711-4a8e-a65d-96e3daa23a62 +2024-09-11 09:10:04.310714 2024-09-11 09:10:04.310719 comef 9476 R rec 5e1552d3-55ca-434b-ab4c-dc15e2cdd34c +2024-09-11 09:10:04.363671 2024-09-11 09:10:04.363676 comef 9477 R rec 2cfd07e9-f1f8-4e30-baec-86a5b8abf141 +2024-09-11 09:10:04.41924 2024-09-11 09:10:04.419246 comef 9478 R rec 224f502c-88d3-42ad-b8b3-e802f2d73a48 +2024-09-11 09:10:04.479419 2024-09-11 09:10:04.479424 comef 9479 R rec 9d302d2d-63b6-4b51-b103-36e3d856b78f +2024-09-11 09:10:04.543463 2024-09-11 09:10:04.543469 comef 9480 R rec bbafb5eb-e18a-447a-b545-b0156c16a081 +2024-09-11 09:10:04.596024 2024-09-11 09:10:04.596029 comef 9481 R rec 039de00e-f042-4c31-a5b5-c0fbace681c1 +2024-09-11 09:10:04.65529 2024-09-11 09:10:04.655294 comef 9482 R rec 1f5b6681-68fc-4d8d-b302-77b45a73ce62 +2024-09-11 09:10:04.712308 2024-09-11 09:10:04.712313 comef 9483 R rec 8a1a4989-69fb-48f7-9b37-e4a63a4cfb7d +2024-09-11 09:10:04.765983 2024-09-11 09:10:04.765988 comef 9484 R rec 632aadb4-16e3-4691-991e-4ec59e77ce8f +2024-09-11 09:10:04.821606 2024-09-11 09:10:04.821611 comef 9485 R rec a546d3bc-a53d-4619-be7b-7813a5fd52a6 +2024-09-11 09:10:04.875594 2024-09-11 09:10:04.875599 comef 9486 R rec c4c3cec8-1c48-475d-9119-8f52943954ef +2024-09-11 09:10:04.931857 2024-09-11 09:10:04.931861 comef 9487 R rec 418c1569-bc41-43b3-95be-efb85d606b82 +2024-09-11 09:10:04.984525 2024-09-11 09:10:04.984532 comef 9488 R rec e6060ecb-dafc-4360-bc78-03469ad54523 +2024-09-11 09:10:05.04071 2024-09-11 09:10:05.040716 comef 9489 R rec 573fe3cf-bc7f-4d8d-997d-397b31846773 +2024-09-11 09:10:05.111011 2024-09-11 09:10:05.111016 comef 9490 R rec 66ec4f82-7a13-4aa5-b504-de96dfc9f54e +2024-09-11 09:10:05.193508 2024-09-11 09:10:05.193512 comef 9491 R rec 6ff6fe3d-08e4-4b4b-b637-2f77ce5cfcb1 +2024-09-11 09:10:05.248463 2024-09-11 09:10:05.248467 comef 9492 R rec 56bfe7b7-6e8a-4515-a504-3072f1beb059 +2024-09-11 09:10:05.307857 2024-09-11 09:10:05.307862 comef 9493 R rec df79d783-7e3a-47ad-b341-4e1318aac7b6 +2024-09-11 09:10:05.363132 2024-09-11 09:10:05.363138 comef 9494 R rec 479a101a-a595-4b94-a313-1e5de44af7f7 +2024-09-11 09:10:05.419632 2024-09-11 09:10:05.41964 comef 9495 R rec 0e432f38-62c8-42ee-9640-3f9f961ca32f +2024-09-11 09:10:05.476991 2024-09-11 09:10:05.476996 comef 9496 R rec 29e77aa8-aa3a-4b42-a600-8d57197367e9 +2024-09-11 09:10:05.536096 2024-09-11 09:10:05.536101 comef 9497 R rec 88dfebac-5fcc-4616-85f7-f2f8344da4ae +2024-09-11 09:10:05.60528 2024-09-11 09:10:05.605293 comef 9498 R rec b88f6880-eafc-4635-a404-f8da1d8257f8 +2024-09-11 09:10:05.673678 2024-09-11 09:10:05.673683 comef 9499 R rec 398754f4-546f-4b8e-9007-ee5a051b0349 +2024-09-11 09:10:05.744495 2024-09-11 09:10:05.7445 comef 9500 R rec 2476e9de-888d-4129-9f4f-3b463f7c62dc +2024-09-11 09:10:05.811676 2024-09-11 09:10:05.811681 comef 9501 R rec 04ba4d05-8241-442c-a296-820ca1ba98a8 +2024-09-11 09:10:05.869675 2024-09-11 09:10:05.86968 comef 9502 R rec 8ebbe15c-7316-415e-a09e-8237be09a001 +2024-09-11 09:10:05.923022 2024-09-11 09:10:05.923027 comef 9503 R rec 5d288e7d-6797-41e3-aabb-a77b68317d3d +2024-09-11 09:10:05.980735 2024-09-11 09:10:05.98074 comef 9504 R rec 66847bd0-3602-4fdb-99a4-2719f79bfdb5 +2024-09-11 09:10:06.041098 2024-09-11 09:10:06.041104 comef 9505 R rec d8ce4eb6-8b9b-40ba-b3bc-8ce4afbef0dd +2024-09-11 09:10:06.098463 2024-09-11 09:10:06.098468 comef 9506 R rec d1de9e8d-855d-4310-bc6f-5e78fac38e8d +2024-09-11 09:10:06.159496 2024-09-11 09:10:06.159501 comef 9507 R rec a369c4a1-b590-4edc-8423-a1a09176b91a +2024-09-11 09:10:06.216916 2024-09-11 09:10:06.21692 comef 9508 R rec 70113bd8-57f3-44ab-9b9f-1598267d4b3d +2024-09-11 09:10:06.277088 2024-09-11 09:10:06.277093 comef 9509 R rec 386e4a09-2ff7-4330-be12-954253928d63 +2024-09-11 09:10:06.339357 2024-09-11 09:10:06.339362 comef 9510 R rec 743d91ec-ff2f-4deb-a3b0-1a9f13dc4722 +2024-09-11 09:10:06.401973 2024-09-11 09:10:06.401979 comef 9511 R rec 6f7f3ca9-91dd-4a17-b088-f7d947a6a01e +2024-09-11 09:10:06.465286 2024-09-11 09:10:06.465293 comef 9512 R rec 618ea1c5-0c1d-4260-8f71-3ef571fbe63f +2024-09-11 09:10:06.524975 2024-09-11 09:10:06.52498 comef 9513 R rec 8745db41-aae7-464f-b37d-32a80a6d13b2 +2024-09-11 09:10:06.586748 2024-09-11 09:10:06.586753 comef 9514 R rec ed895179-04cf-421d-af29-4c367fb094f0 +2024-09-11 09:10:06.645971 2024-09-11 09:10:06.645977 comef 9515 R rec aed1e1d4-e11f-435e-a6aa-ca0d3a83802b +2024-09-11 09:10:06.703364 2024-09-11 09:10:06.703369 comef 9516 R rec cb21d3e7-fd57-4f42-beb4-c49a8edc6508 +2024-09-11 09:10:06.772008 2024-09-11 09:10:06.772013 comef 9517 R rec 4d7413b9-6e8e-4b19-8574-354c3254e43e +2024-09-11 09:10:06.831954 2024-09-11 09:10:06.83196 comef 9518 R rec a1fef7dd-3396-48e4-a5c2-235fede1863d +2024-09-11 09:10:06.884139 2024-09-11 09:10:06.884144 comef 9519 R rec 4c81e709-b94d-4fc2-b977-e2a2e0f92ed5 +2024-09-11 09:10:06.946477 2024-09-11 09:10:06.946482 comef 9520 R rec 45c9a5ff-224d-4999-82a7-5ad2ecee9870 +2024-09-11 09:10:07.005547 2024-09-11 09:10:07.005552 comef 9521 R rec bfd864d1-c4f4-493d-9bb1-32f019d5b2af +2024-09-11 09:10:07.062945 2024-09-11 09:10:07.062951 comef 9522 R rec e297c053-5d02-4ff5-baa4-9bde10fbbf21 +2024-09-11 09:10:07.123339 2024-09-11 09:10:07.123344 comef 9523 R rec 2d9df96d-5266-4ba2-a586-defe222da74a +2024-09-11 09:10:07.186011 2024-09-11 09:10:07.186017 comef 9524 R rec 3e2b0aa0-cf9b-4a45-9b9c-210e2fffe875 +2024-09-11 09:10:07.249882 2024-09-11 09:10:07.249887 comef 9525 R rec 75200210-3a21-43d5-89ca-dfcfa5a66b1b +2024-09-11 09:10:07.306449 2024-09-11 09:10:07.306454 comef 9526 R rec 2aa3b34a-b77c-4560-a57a-f6836c147cba +2024-09-11 09:10:07.370319 2024-09-11 09:10:07.370324 comef 9527 R rec e49c44cf-85aa-42cf-b57c-f5773b147fde +2024-09-11 09:10:07.428946 2024-09-11 09:10:07.428951 comef 9528 R rec 4daf9123-8fe0-409c-93f8-224e2ff4b270 +2024-09-11 09:10:07.484403 2024-09-11 09:10:07.484409 comef 9529 R rec 9092ffe7-78c4-435e-bf83-d16c1801f586 +2024-09-11 09:10:07.541627 2024-09-11 09:10:07.541632 comef 9530 R rec a0276b3c-f4f8-446a-abed-dd708176a094 +2024-09-11 09:10:07.602289 2024-09-11 09:10:07.602294 comef 9531 R rec 192bc497-50a8-4f60-a862-1648f2604cd4 +2024-09-11 09:10:07.660749 2024-09-11 09:10:07.660754 comef 9532 R rec e6e6ea35-27e9-45a5-89ae-8524db99eef3 +2024-09-11 09:10:07.715243 2024-09-11 09:10:07.715248 comef 9533 R rec 94acfb0f-0361-408c-845d-65578b674b49 +2024-09-11 09:10:07.768527 2024-09-11 09:10:07.768532 comef 9534 R rec 2858dbac-81a8-49c8-8689-2eb7e618456e +2024-09-11 09:10:07.821401 2024-09-11 09:10:07.821407 comef 9535 R rec 20c312f7-1fa2-49ca-92f5-656d95feaffa +2024-09-11 09:10:07.879344 2024-09-11 09:10:07.87935 comef 9536 R rec 5fe17a1a-2dc0-4120-9e46-015ecdb5013f +2024-09-11 09:10:07.941162 2024-09-11 09:10:07.941168 comef 9537 R rec daa1976d-4028-4970-8d68-b4c0b9fef131 +2024-09-11 09:10:07.998117 2024-09-11 09:10:07.998122 comef 9538 R rec 461b9f36-b8a8-453a-96c7-f9fdcf61411b +2024-09-11 09:10:08.049859 2024-09-11 09:10:08.049864 comef 9539 R rec 68bf6ae8-7d98-4338-9194-2dd5631fef23 +2024-09-11 09:10:08.103562 2024-09-11 09:10:08.103567 comef 9540 R rec a28ec2a2-12d2-4c62-a82b-ef31ebc5ae58 +2024-09-11 09:10:08.158272 2024-09-11 09:10:08.158276 comef 9541 R rec 9725040e-d5b1-4436-a739-5072d770b40d +2024-09-11 09:10:08.213396 2024-09-11 09:10:08.213401 comef 9542 R rec 201f605e-2207-4584-9fc4-76afa6441832 +2024-09-11 09:10:08.269515 2024-09-11 09:10:08.26952 comef 9543 R rec 60d3be79-4542-4425-ac28-d44e558fe12a +2024-09-11 09:10:08.322781 2024-09-11 09:10:08.322786 comef 9544 R rec 501fc728-2d1f-4f5a-8b7b-abfdb6809e1b +2024-09-11 09:10:08.375883 2024-09-11 09:10:08.375889 comef 9545 R rec c9f5a771-82c4-4700-93e2-11f737f3501e +2024-09-11 09:10:08.43314 2024-09-11 09:10:08.433145 comef 9546 R rec 1027ae62-9c2b-4fd9-b1c3-e2ec67006e77 +2024-09-11 09:10:08.486799 2024-09-11 09:10:08.486806 comef 9547 R rec 588cca93-96e1-4721-9925-c0617d99ae6b +2024-09-11 09:10:08.551134 2024-09-11 09:10:08.551139 comef 9548 R rec ff85965a-b16a-4714-b413-2b22e6e469a2 +2024-09-11 09:10:08.61748 2024-09-11 09:10:08.617485 comef 9549 R rec 8f0f83da-06b9-4763-9153-617641e86e1e +2024-09-11 09:10:08.673901 2024-09-11 09:10:08.673906 comef 9550 R rec fe099bf6-3ebe-4dec-a4e0-45fb6472581d +2024-09-11 09:10:08.730047 2024-09-11 09:10:08.730053 comef 9551 R rec 5653679c-4d7d-4063-91ab-0f47d2d79292 +2024-09-11 09:10:08.790353 2024-09-11 09:10:08.790357 comef 9552 R rec 99205f1b-e611-40f3-9f4c-ef5287837d9f +2024-09-11 09:10:08.846793 2024-09-11 09:10:08.846797 comef 9553 R rec a18f7088-b06f-4ecd-8b0f-f63621676b60 +2024-09-11 09:10:08.901754 2024-09-11 09:10:08.90176 comef 9554 R rec 2507ccf5-0de6-4bd7-a36b-742d2aedb7c0 +2024-09-11 09:10:08.963955 2024-09-11 09:10:08.96396 comef 9555 R rec 0e465e15-0d00-43a3-8364-079a4068586f +2024-09-11 09:10:09.022707 2024-09-11 09:10:09.022711 comef 9556 R rec 6fea667b-fcd2-47ec-bd41-9caca8371976 +2024-09-11 09:10:09.099309 2024-09-11 09:10:09.099316 comef 9557 R rec ed42a263-a3b8-496e-9e01-bf7d1adc1ae4 +2024-09-11 09:10:09.163131 2024-09-11 09:10:09.163136 comef 9558 R rec 7d6f10f3-0e85-41ef-869a-d4c94a8b8b5d +2024-09-11 09:10:09.223241 2024-09-11 09:10:09.223246 comef 9559 R rec 4cb92234-63eb-4ed5-aa4a-b710eb73b2d9 +2024-09-11 09:10:09.284929 2024-09-11 09:10:09.284934 comef 9560 R rec cd8191ad-cbc5-4a47-8fa0-e2a6f94a8313 +2024-09-11 09:10:09.338909 2024-09-11 09:10:09.338914 comef 9561 R rec 1ca19807-75ec-47ee-89be-0b880ea013e2 +2024-09-11 09:10:09.388133 2024-09-11 09:10:09.388138 comef 9562 R rec da07f0fa-f09f-4a01-b7dd-b7ed3bb30baf +2024-09-11 09:10:09.439033 2024-09-11 09:10:09.439038 comef 9563 R rec 4d4a1134-c5d1-44c5-a106-443579f5aebf +2024-09-11 09:10:09.494282 2024-09-11 09:10:09.494287 comef 9564 R rec eb8df7e7-2601-4b1e-9069-fd47f09b9ca0 +2024-09-11 09:10:09.550655 2024-09-11 09:10:09.55066 comef 9565 R rec e77b63a2-f3bb-410d-8466-08bff61c9e59 +2024-09-11 09:10:09.608362 2024-09-11 09:10:09.608366 comef 9566 R rec ee0cb196-759a-49c5-adcc-45782d7685ec +2024-09-11 09:10:09.665137 2024-09-11 09:10:09.665142 comef 9567 R rec 518b8570-e2c5-4fd2-87e3-2de19fad9538 +2024-09-11 09:10:09.72345 2024-09-11 09:10:09.723455 comef 9568 R rec 6819522a-eaf9-49d0-8815-0f1a39a16100 +2024-09-11 09:10:09.781338 2024-09-11 09:10:09.781343 comef 9569 R rec 5dd7ce0e-9404-412b-9ded-36e1491c96cf +2024-09-11 09:10:09.836766 2024-09-11 09:10:09.836771 comef 9570 R rec b0b5186c-89d4-43c4-b2ad-42f26721c562 +2024-09-11 09:10:09.897261 2024-09-11 09:10:09.897266 comef 9571 R rec 22dfefae-8433-43d5-924a-bb017b64cffb +2024-09-11 09:10:09.953753 2024-09-11 09:10:09.953758 comef 9572 R rec 435b0c7a-b7b3-48aa-a81d-528b2def5e85 +2024-09-11 09:10:10.016026 2024-09-11 09:10:10.01603 comef 9573 R rec ae5435a0-f563-4000-a2b2-b943210963b8 +2024-09-11 09:10:10.073417 2024-09-11 09:10:10.073422 comef 9574 R rec 9aae67b9-2f60-46fb-90da-856ea58f31a1 +2024-09-11 09:10:10.134079 2024-09-11 09:10:10.134084 comef 9575 R rec e1a31000-bb1e-46e3-a024-6e055be5cb06 +2024-09-11 09:10:10.201797 2024-09-11 09:10:10.201802 comef 9576 R rec fb7ec539-51e3-445c-b03e-698f6a935c98 +2024-09-11 09:10:10.260172 2024-09-11 09:10:10.260178 comef 9577 R rec 282078e6-743b-4173-8952-11016565b0c8 +2024-09-11 09:10:10.31624 2024-09-11 09:10:10.316244 comef 9578 R rec 05f5026c-d4e8-46ee-871e-9bd6dbaeb977 +2024-09-11 09:10:10.370067 2024-09-11 09:10:10.370072 comef 9579 R rec 2e213629-af66-40d7-bc9d-b81724230986 +2024-09-11 09:10:10.426817 2024-09-11 09:10:10.426822 comef 9580 R rec 815d2a76-2586-4662-9961-9722d68b4aa1 +2024-09-11 09:10:10.481271 2024-09-11 09:10:10.481276 comef 9581 R rec e8d68e42-ea62-4951-91d1-f7427236a90e +2024-09-11 09:10:10.53669 2024-09-11 09:10:10.536695 comef 9582 R rec 7a961a3d-de05-4c04-992d-1f93ea6fb3ad +2024-09-11 09:10:10.590706 2024-09-11 09:10:10.590711 comef 9583 R rec 1bf3bd13-1041-4176-bfef-7fbf8ec31d30 +2024-09-11 09:10:10.646663 2024-09-11 09:10:10.646668 comef 9584 R rec f1d5f136-d366-41d5-9acb-0cf1514aafb8 +2024-09-11 09:10:10.708062 2024-09-11 09:10:10.708068 comef 9585 R rec cef556c4-3a92-46d3-8c57-8973147a4c85 +2024-09-11 09:10:10.764363 2024-09-11 09:10:10.764369 comef 9586 R rec 7679dc74-8a2f-4220-bfeb-bb2b132310ee +2024-09-11 09:10:10.825665 2024-09-11 09:10:10.825671 comef 9587 R rec 805931f8-06d7-4b78-b3d5-cd0ba2904f6c +2024-09-11 09:10:10.882895 2024-09-11 09:10:10.8829 comef 9588 R rec acb5fefd-4179-4086-8a9a-4f38ab732287 +2024-09-11 09:10:10.950156 2024-09-11 09:10:10.950162 comef 9589 R rec 24eebe7d-e88f-44d3-8b26-86a0be1c13cb +2024-09-11 09:10:11.006046 2024-09-11 09:10:11.006051 comef 9590 R rec f5ffc95f-0422-47f8-899f-245fcc2296ca +2024-09-11 09:10:11.062852 2024-09-11 09:10:11.062864 comef 9591 R rec e7427fc5-b90c-4c1e-8558-857488c45ee0 +2024-09-11 09:10:11.117801 2024-09-11 09:10:11.117808 comef 9592 R rec 00a22ee7-e7de-4667-a6f5-10a0af3d13bb +2024-09-11 09:10:11.174755 2024-09-11 09:10:11.17476 comef 9593 R rec bd4bcc57-361f-4f27-a5f7-cfd12d731a30 +2024-09-11 09:10:11.241881 2024-09-11 09:10:11.241886 comef 9594 R rec e4b4a76f-7b1d-40fe-9702-30f9fe4fa018 +2024-09-11 09:10:11.303504 2024-09-11 09:10:11.303508 comef 9595 R rec 1282bb7e-c19b-4c1a-90c1-165a7e8634e7 +2024-09-11 09:10:11.360336 2024-09-11 09:10:11.360341 comef 9596 R rec 6a1e1f47-80f2-4b99-9f08-f80edb1df986 +2024-09-11 09:10:11.415171 2024-09-11 09:10:11.415176 comef 9597 R rec 6d944d73-c510-450c-ae06-60a6913bbda5 +2024-09-11 09:10:11.471081 2024-09-11 09:10:11.471085 comef 9598 R rec bf09083b-95cb-4d4a-a720-46c0477fcec2 +2024-09-11 09:10:11.526061 2024-09-11 09:10:11.526067 comef 9599 R rec 46da9e1d-5b21-475f-a52f-6a3bad50c220 +2024-09-11 09:10:11.581456 2024-09-11 09:10:11.581461 comef 9600 R rec 623fd2f7-0aa3-4017-8972-69d588954f16 +2024-09-11 09:10:11.639102 2024-09-11 09:10:11.639107 comef 9601 R rec 7f2de4f2-2f45-4987-ae51-a630870c73dd +2024-09-11 09:10:11.702299 2024-09-11 09:10:11.702305 comef 9602 R rec 6eece37f-acce-4d18-a1db-60c4ea46e238 +2024-09-11 09:10:11.76151 2024-09-11 09:10:11.761515 comef 9603 R rec 5ad1ba80-786e-4000-af70-bdd1b41f1af6 +2024-09-11 09:10:11.818737 2024-09-11 09:10:11.818744 comef 9604 R rec 79f0d102-572c-43e2-b6d2-0dec880759de +2024-09-11 09:10:11.875261 2024-09-11 09:10:11.875267 comef 9605 R rec e224011e-8d7c-4f81-ab1d-3774031450d4 +2024-09-11 09:10:11.935568 2024-09-11 09:10:11.935573 comef 9606 R rec 9f98758d-ec61-44ea-8d92-254dd104be00 +2024-09-11 09:10:11.991464 2024-09-11 09:10:11.991469 comef 9607 R rec 9d614139-8ed4-406c-8c67-34691ecfa4f1 +2024-09-11 09:10:12.048515 2024-09-11 09:10:12.04852 comef 9608 R rec 1f5ea515-046b-41a9-a2e3-17b376268858 +2024-09-11 09:10:12.103353 2024-09-11 09:10:12.103358 comef 9609 R rec ba44db09-8f0c-4d76-96de-b0b2220172d8 +2024-09-11 09:10:12.161831 2024-09-11 09:10:12.161836 comef 9610 R rec 15b2e739-4fa7-4418-8896-9d3b83f3f180 +2024-09-11 09:10:12.212261 2024-09-11 09:10:12.212265 comef 9611 R rec 1b7e6e56-a908-467a-8631-1955601a6936 +2024-09-11 09:10:12.266163 2024-09-11 09:10:12.26617 comef 9612 R rec 2bb5d781-0f14-4e9c-bca0-d6d6ab56dddf +2024-09-11 09:10:12.320451 2024-09-11 09:10:12.320457 comef 9613 R rec 038a8106-cdc6-4ad7-bdca-5583752f9c82 +2024-09-11 09:10:12.381071 2024-09-11 09:10:12.381076 comef 9614 R rec 449bb539-5354-43f4-afda-5fce02060949 +2024-09-11 09:10:12.448745 2024-09-11 09:10:12.448749 comef 9615 R rec 1de81edc-2fc4-415e-9543-3c131f7f859c +2024-09-11 09:10:12.506005 2024-09-11 09:10:12.50601 comef 9616 R rec 630c3238-e58c-44e5-b88b-b617e0f3675f +2024-09-11 09:10:12.565793 2024-09-11 09:10:12.565799 comef 9617 R rec 762b4100-1ef1-4405-b405-f3f6e0f31ca1 +2024-09-11 09:10:12.618722 2024-09-11 09:10:12.618727 comef 9618 R rec c2923855-49e4-40a8-90a1-8568a77c5837 +2024-09-11 09:10:12.674759 2024-09-11 09:10:12.674764 comef 9619 R rec 83e8e7fd-bf1d-40bf-b557-5c71b5dd1183 +2024-09-11 09:10:12.728256 2024-09-11 09:10:12.728261 comef 9620 R rec 248ec03b-f09e-4a30-ba98-4b396c5670d2 +2024-09-11 09:10:12.781267 2024-09-11 09:10:12.781271 comef 9621 R rec e5e7d334-4557-4fd4-90de-836a1a4ee879 +2024-09-11 09:10:12.840162 2024-09-11 09:10:12.840166 comef 9622 R rec 964a71cd-2110-4c25-b4d8-b1d978e5576d +2024-09-11 09:10:12.899589 2024-09-11 09:10:12.899595 comef 9623 R rec 8c2a1767-82d7-4f72-8d85-2c92803c15f9 +2024-09-11 09:10:12.959354 2024-09-11 09:10:12.95936 comef 9624 R rec 9319341e-1d49-425e-b51e-64724641d6f1 +2024-09-11 09:10:13.022464 2024-09-11 09:10:13.02247 comef 9625 R rec 6dfafd41-5005-49f1-a610-c83726deebd9 +2024-09-11 09:10:13.079665 2024-09-11 09:10:13.07967 comef 9626 R rec 02543956-b9da-41dd-85a0-4e6ff311bba9 +2024-09-11 09:10:13.135516 2024-09-11 09:10:13.13552 comef 9627 R rec 6e4a9468-c68c-46a2-aff6-d7b0fd201f64 +2024-09-11 09:10:13.191886 2024-09-11 09:10:13.191891 comef 9628 R rec b6b895dd-b7ac-4711-b24f-995fc42347f2 +2024-09-11 09:10:13.252174 2024-09-11 09:10:13.252179 comef 9629 R rec 6046b193-37af-4fec-9458-38c7af95380f +2024-09-11 09:10:13.30568 2024-09-11 09:10:13.305685 comef 9630 R rec 0c7990fa-4eb5-4a87-8332-f2775b43ff30 +2024-09-11 09:10:13.368265 2024-09-11 09:10:13.368271 comef 9631 R rec 2eddc415-63b1-42d4-b694-c3e616ba1e35 +2024-09-11 09:10:13.430824 2024-09-11 09:10:13.430829 comef 9632 R rec b75ddffd-ac48-493b-8ff6-517a2f6d5ba4 +2024-09-11 09:10:13.496344 2024-09-11 09:10:13.496349 comef 9633 R rec 329e0b59-eb73-416e-8325-cd4563b02502 +2024-09-11 09:10:13.550239 2024-09-11 09:10:13.550244 comef 9634 R rec 728a86c1-5e32-46a6-b497-539ff3c85ee9 +2024-09-11 09:10:13.608972 2024-09-11 09:10:13.608978 comef 9635 R rec f551d7fd-d6fb-4456-ba82-2c3f5df06d62 +2024-09-11 09:10:13.666148 2024-09-11 09:10:13.666154 comef 9636 R rec 71871823-92bd-482d-adb9-ab158daaaa05 +2024-09-11 09:10:13.719214 2024-09-11 09:10:13.71922 comef 9637 R rec bf6ee8b7-0582-4bd0-92fe-7bc58d4efd56 +2024-09-11 09:10:13.774883 2024-09-11 09:10:13.774888 comef 9638 R rec d4748a9d-211c-409a-a2e9-f91897eefb98 +2024-09-11 09:10:13.828213 2024-09-11 09:10:13.828218 comef 9639 R rec c0e2d2e8-dc67-4a1a-a79b-5b8d2bb7d271 +2024-09-11 09:10:13.885336 2024-09-11 09:10:13.885345 comef 9640 R rec fa841f3e-0694-48f8-a355-f5d94d8cfadb +2024-09-11 09:10:13.941921 2024-09-11 09:10:13.941926 comef 9641 R rec cf7cbde6-c2c6-439f-9309-b7f55df2f2f2 +2024-09-11 09:10:13.996214 2024-09-11 09:10:13.996219 comef 9642 R rec beb8714e-484e-4975-8f18-64daf3139c71 +2024-09-11 09:10:14.057148 2024-09-11 09:10:14.057154 comef 9643 R rec 87385cf8-c940-4930-a923-2595669ce5d3 +2024-09-11 09:10:14.109987 2024-09-11 09:10:14.109992 comef 9644 R rec f64082bf-5e8b-4244-bdb5-9c8f0a1c6e5d +2024-09-11 09:10:14.16346 2024-09-11 09:10:14.163465 comef 9645 R rec 8b9a1685-a33b-4aae-ae04-3bf5e9314132 +2024-09-11 09:10:14.21672 2024-09-11 09:10:14.216726 comef 9646 R rec 5a7e283e-2c92-4115-a99e-1684ef37cf5b +2024-09-11 09:10:14.275158 2024-09-11 09:10:14.275164 comef 9647 R rec 4b2bcae9-54ff-4efc-a176-9c58351e4f9c +2024-09-11 09:10:14.336607 2024-09-11 09:10:14.336611 comef 9648 R rec d34f6dd9-ed0b-43f3-86bf-ed847f398af8 +2024-09-11 09:10:14.393976 2024-09-11 09:10:14.39398 comef 9649 R rec d8c311b3-4166-4bb9-b20d-92cfb204a08c +2024-09-11 09:10:14.451601 2024-09-11 09:10:14.451609 comef 9650 R rec 6c37f267-72a2-4eaf-b6f2-089b8c16bcf2 +2024-09-11 09:10:14.512457 2024-09-11 09:10:14.512462 comef 9651 R rec da208fee-3815-4674-b51f-966bec7150e6 +2024-09-11 09:10:14.573743 2024-09-11 09:10:14.573748 comef 9652 R rec 1e470e1f-ecb0-42b7-ada9-375fa8aaafc7 +2024-09-11 09:10:14.631783 2024-09-11 09:10:14.631789 comef 9653 R rec 64d7e45d-bfd9-4a22-a32b-959ab728f7d1 +2024-09-11 09:10:14.696697 2024-09-11 09:10:14.696703 comef 9654 R rec 543471a5-4689-44c8-80b7-1f01cb1038f2 +2024-09-11 09:10:14.749543 2024-09-11 09:10:14.749548 comef 9655 R rec 56d9b791-72c7-40c6-a85f-eebf8b359444 +2024-09-11 09:10:14.797971 2024-09-11 09:10:14.797976 comef 9656 R rec 742afc16-60c4-4dd2-b03c-2cc443473f68 +2024-09-11 09:10:14.853946 2024-09-11 09:10:14.85395 comef 9657 R rec 763556f9-fe95-4039-b4a8-fa7b558445fe +2024-09-11 09:10:14.909101 2024-09-11 09:10:14.909107 comef 9658 R rec 98993945-4432-4c0c-b33e-5a2fba1d8b04 +2024-09-11 09:10:14.959369 2024-09-11 09:10:14.959374 comef 9659 R rec 73dd6be9-8cf9-4275-962e-19adfc553ff7 +2024-09-11 09:10:15.015539 2024-09-11 09:10:15.015544 comef 9660 R rec 88eaff2d-5754-420e-8f8f-68c765eef547 +2024-09-11 09:10:15.079203 2024-09-11 09:10:15.079208 comef 9661 R rec 88751ffe-359b-480c-b80c-8eab3822ab9e +2024-09-11 09:10:15.137468 2024-09-11 09:10:15.137473 comef 9662 R rec 8c370508-69f8-4d3f-9796-09db6bbba22c +2024-09-11 09:10:15.19218 2024-09-11 09:10:15.192185 comef 9663 R rec 58c4acd9-804b-472e-b123-faabdbc6d1ef +2024-09-11 09:10:15.256645 2024-09-11 09:10:15.25665 comef 9664 R rec 9b2b02ba-16be-40f5-9358-867d7524d1b5 +2024-09-11 09:10:15.312074 2024-09-11 09:10:15.31208 comef 9665 R rec feb68e7a-baf2-4cd5-abdc-3304a43a978a +2024-09-11 09:10:15.36689 2024-09-11 09:10:15.366895 comef 9666 R rec c9ba7172-1b81-4a05-99c1-54ab333ea787 +2024-09-11 09:10:15.418073 2024-09-11 09:10:15.418077 comef 9667 R rec 77076650-b65e-4fd5-ac64-4b79be0c7e70 +2024-09-11 09:10:15.473222 2024-09-11 09:10:15.473226 comef 9668 R rec 57d41147-2883-44b3-91ea-1c7409c5359f +2024-09-11 09:10:15.529302 2024-09-11 09:10:15.529307 comef 9669 R rec 31586c73-69df-4ff7-bcfa-329a281a95d3 +2024-09-11 09:10:15.59539 2024-09-11 09:10:15.595396 comef 9670 R rec 58a178d8-366a-4194-87dd-58ce20f1e6df +2024-09-11 09:10:15.649394 2024-09-11 09:10:15.649399 comef 9671 R rec d8fc9f24-4f82-4fd2-9109-2219f96f9fe9 +2024-09-11 09:10:15.708252 2024-09-11 09:10:15.708258 comef 9672 R rec a12100a9-0dfa-4e71-9bc3-f0cf32b68240 +2024-09-11 09:10:15.794871 2024-09-11 09:10:15.794877 comef 9673 R rec ab5cff5b-838b-4614-9f2b-93d1978e6039 +2024-09-11 09:10:15.865511 2024-09-11 09:10:15.865517 comef 9674 R rec 55aaf2c9-6d1a-4cca-bcdc-cc6da1310083 +2024-09-11 09:10:15.918553 2024-09-11 09:10:15.918558 comef 9675 R rec 136cb7db-d322-473c-8478-edf2e60adebe +2024-09-11 09:10:15.972769 2024-09-11 09:10:15.972773 comef 9676 R rec f6f1d17e-ba97-4090-b75b-437e77fbdedb +2024-09-11 09:10:16.033447 2024-09-11 09:10:16.033453 comef 9677 R rec eff42ec9-3bdd-43aa-9d83-001dd07bf15c +2024-09-11 09:10:16.093705 2024-09-11 09:10:16.09371 comef 9678 R rec cd53fba1-1477-4cbd-abfe-4296955ae2a2 +2024-09-11 09:10:16.156199 2024-09-11 09:10:16.156205 comef 9679 R rec c0576be8-0239-474c-9124-e2c5c5d53937 +2024-09-11 09:10:16.252882 2024-09-11 09:10:16.252887 comef 9680 R rec 23c0cf3c-eedf-4bb6-8789-a9c45cc692ee +2024-09-11 09:10:16.311563 2024-09-11 09:10:16.311567 comef 9681 R rec e9175d13-5fd2-4faf-a4a6-f9e1402fa9e7 +2024-09-11 09:10:16.364823 2024-09-11 09:10:16.364827 comef 9682 R rec ac0ee77d-173d-4ce3-a742-43e6e97b54bb +2024-09-11 09:10:16.422558 2024-09-11 09:10:16.422563 comef 9683 R rec 46e8eea9-fce2-44cd-8211-40f483b0a4e5 +2024-09-11 09:10:16.476154 2024-09-11 09:10:16.476159 comef 9684 R rec 55ef02ca-16b4-419a-a6d7-c0a016e74696 +2024-09-11 09:10:16.532058 2024-09-11 09:10:16.532064 comef 9685 R rec da4a32e4-f16d-4551-982b-82fce102a6c0 +2024-09-11 09:10:16.585488 2024-09-11 09:10:16.585495 comef 9686 R rec 87681ec6-8ce3-449d-a097-41250f3246c3 +2024-09-11 09:10:16.641326 2024-09-11 09:10:16.641332 comef 9687 R rec c389c3a2-bb3a-4fbc-a063-202a012e4058 +2024-09-11 09:10:16.707271 2024-09-11 09:10:16.707275 comef 9688 R rec d074a10b-1c23-4eb7-9c3e-657bfdfc259d +2024-09-11 09:10:16.759181 2024-09-11 09:10:16.759187 comef 9689 R rec 74c35649-d958-4ea4-a1af-141cb6bffb54 +2024-09-11 09:10:16.812006 2024-09-11 09:10:16.81201 comef 9690 R rec 11a1c8d8-6d64-4781-ad56-080e9f8cc356 +2024-09-11 09:10:16.862464 2024-09-11 09:10:16.862469 comef 9691 R rec 882f6182-9fae-4205-b892-91f001ae8ae7 +2024-09-11 09:10:16.914256 2024-09-11 09:10:16.91426 comef 9692 R rec 1e25581d-d78d-4831-8863-f4af8961e344 +2024-09-11 09:10:16.964532 2024-09-11 09:10:16.964538 comef 9693 R rec 51314fe5-d383-40f9-8538-ddb2324a44be +2024-09-11 09:10:17.017991 2024-09-11 09:10:17.017995 comef 9694 R rec e4d04900-9c9f-4895-9086-59c047ee7acc +2024-09-11 09:10:17.076229 2024-09-11 09:10:17.076234 comef 9695 R rec f94b03cb-9ff8-497f-a369-3dfe872a5c27 +2024-09-11 09:10:17.129926 2024-09-11 09:10:17.129931 comef 9696 R rec fc16076a-c4e9-45f9-b5d2-070d3f4981bc +2024-09-11 09:10:17.182955 2024-09-11 09:10:17.18296 comef 9697 R rec 8f195c28-3bad-4ca8-a7d1-a467594090d4 +2024-09-11 09:10:17.247107 2024-09-11 09:10:17.247112 comef 9698 R rec e254a69d-0c27-4dcd-a46c-84c4449d69a0 +2024-09-11 09:10:17.309446 2024-09-11 09:10:17.309452 comef 9699 R rec 76d88d4b-4f80-4139-aeea-8dfb0fdbaa8e +2024-09-11 09:10:17.366587 2024-09-11 09:10:17.366593 comef 9700 R rec 9dfcea42-de62-44fc-9a3a-50bbcd9dd35f +2024-09-11 09:10:17.421962 2024-09-11 09:10:17.421967 comef 9701 R rec e232e11a-28cd-4882-9295-ff9813526dbd +2024-09-11 09:10:17.474911 2024-09-11 09:10:17.474916 comef 9702 R rec 4882f453-fb0e-4dfd-8be2-25f0a7775349 +2024-09-11 09:10:17.530913 2024-09-11 09:10:17.530918 comef 9703 R rec 2cf2573d-1034-40b6-87a7-e437c48bbe86 +2024-09-11 09:10:17.58533 2024-09-11 09:10:17.585336 comef 9704 R rec 156e0bb1-294e-4433-a133-63e945ede950 +2024-09-11 09:10:17.63578 2024-09-11 09:10:17.635785 comef 9705 R rec c9c5d3a5-c186-4356-ba8f-af7d526e4b24 +2024-09-11 09:10:17.699354 2024-09-11 09:10:17.69936 comef 9706 R rec faea1d60-d7dc-45ec-8ffc-94f7fbf97962 +2024-09-11 09:10:17.775997 2024-09-11 09:10:17.776003 comef 9707 R rec 77c463dd-b421-4428-a295-674edfb6355b +2024-09-11 09:10:17.838119 2024-09-11 09:10:17.838128 comef 9708 R rec 3ac5bfd9-7308-47e9-b0fc-32b1629f4dfd +2024-09-11 09:10:17.897265 2024-09-11 09:10:17.89727 comef 9709 R rec 1f989142-b548-45ba-92e6-1ed59b8aae22 +2024-09-11 09:10:17.958842 2024-09-11 09:10:17.958847 comef 9710 R rec defc2d06-3b4e-4495-8637-b26049ce5553 +2024-09-11 09:10:18.017986 2024-09-11 09:10:18.017992 comef 9711 R rec b1fb5863-62c2-40be-9419-5c6dfae6516f +2024-09-11 09:10:18.082033 2024-09-11 09:10:18.082039 comef 9712 R rec 5e821231-cd9a-4302-abc1-548ac97fb4be +2024-09-11 09:10:18.142831 2024-09-11 09:10:18.142836 comef 9713 R rec 0cd343c5-c824-4083-80f3-4f9ee31bd1b6 +2024-09-11 09:10:18.203462 2024-09-11 09:10:18.203466 comef 9714 R rec b0a3f781-3f96-4cf5-b2da-d6d0cec0d12b +2024-09-11 09:10:18.265189 2024-09-11 09:10:18.265194 comef 9715 R rec efec49b6-9c39-406a-91c9-6b80b6d55f46 +2024-09-11 09:10:18.325409 2024-09-11 09:10:18.325413 comef 9716 R rec c235e038-e06e-407d-81de-11985d40d4e9 +2024-09-11 09:10:18.383877 2024-09-11 09:10:18.383882 comef 9717 R rec 7485dd54-15c2-4830-a297-038f559329fa +2024-09-11 09:10:18.440439 2024-09-11 09:10:18.440444 comef 9718 R rec 53b61c0b-63b2-4f06-8b7c-9929f410f9ae +2024-09-11 09:10:18.502048 2024-09-11 09:10:18.502054 comef 9719 R rec 057661cb-70a5-418d-a963-060a46483deb +2024-09-11 09:10:18.559546 2024-09-11 09:10:18.559552 comef 9720 R rec 1c484484-92fa-48dd-b789-caaa5d6448d3 +2024-09-11 09:10:18.618414 2024-09-11 09:10:18.61842 comef 9721 R rec e956d5bd-dbee-4011-b8de-8deb2a529bfe +2024-09-11 09:10:18.674054 2024-09-11 09:10:18.674059 comef 9722 R rec 01ccc8b2-67df-4cb7-9b35-f36fcccb3d06 +2024-09-11 09:10:18.735242 2024-09-11 09:10:18.735249 comef 9723 R rec 679a328b-5bf8-411a-9666-ae60ead671ea +2024-09-11 09:10:18.790582 2024-09-11 09:10:18.790587 comef 9724 R rec 4467303f-13e0-412e-81aa-4ed16dea3de3 +2024-09-11 09:10:18.845093 2024-09-11 09:10:18.845098 comef 9725 R rec 660c8a4e-b717-4c7d-8c17-d7d3bbba85ca +2024-09-11 09:10:18.900081 2024-09-11 09:10:18.900086 comef 9726 R rec 521425a8-c2ee-40fd-bc4e-9395b22d8ab2 +2024-09-11 09:10:18.964459 2024-09-11 09:10:18.964465 comef 9727 R rec c49a7a85-337f-4094-8581-3149e7e96690 +2024-09-11 09:10:19.040324 2024-09-11 09:10:19.040329 comef 9728 R rec 9b4a3204-0362-45df-bc70-95365e1307ec +2024-09-11 09:10:19.103885 2024-09-11 09:10:19.103889 comef 9729 R rec 443c130c-f5c9-4afe-b662-66a9dce98e34 +2024-09-11 09:10:19.168894 2024-09-11 09:10:19.1689 comef 9730 R rec 9ec0cf11-e605-4653-8bed-4f3d6e42b090 +2024-09-11 09:10:19.225223 2024-09-11 09:10:19.225227 comef 9731 R rec 0b9742ba-5a9d-48f7-873b-eabcd09bbfef +2024-09-11 09:10:19.283075 2024-09-11 09:10:19.283081 comef 9732 R rec 93e1c350-5a4a-404b-b514-1c9be02b0da1 +2024-09-11 09:10:19.34214 2024-09-11 09:10:19.342145 comef 9733 R rec 621b6818-d466-45c4-ac9e-a3e1c918706e +2024-09-11 09:10:19.398792 2024-09-11 09:10:19.398799 comef 9734 R rec 39458480-cc56-4ba7-a5dc-4ad462ff29d8 +2024-09-11 09:10:19.454713 2024-09-11 09:10:19.454718 comef 9735 R rec bfbac2a3-d707-47c0-91ab-42a8d069f24e +2024-09-11 09:10:19.517162 2024-09-11 09:10:19.517168 comef 9736 R rec c7da8f8b-0ab6-4f17-b759-867ca029deb5 +2024-09-11 09:10:19.588491 2024-09-11 09:10:19.588497 comef 9737 R rec 157d2f8d-ddd7-490d-8e78-cc9c14305015 +2024-09-11 09:10:19.652127 2024-09-11 09:10:19.652133 comef 9738 R rec cb01e32d-a644-401d-ab4b-962e7c23c4bb +2024-09-11 09:10:19.71099 2024-09-11 09:10:19.710996 comef 9739 R rec b3268fd2-db55-47fb-b9f7-1d88cccee955 +2024-09-11 09:10:19.777566 2024-09-11 09:10:19.777571 comef 9740 R rec 8cb0df3b-ab37-48eb-a627-c12eca5761fe +2024-09-11 09:10:19.841122 2024-09-11 09:10:19.841126 comef 9741 R rec d1405700-6744-419c-af70-f48e79787550 +2024-09-11 09:10:19.89738 2024-09-11 09:10:19.897385 comef 9742 R rec 69afc101-8474-49ef-b61c-49326e5a243c +2024-09-11 09:10:19.954844 2024-09-11 09:10:19.954849 comef 9743 R rec 75d83936-1ce9-49a4-a982-f3d0275ab38a +2024-09-11 09:10:20.012863 2024-09-11 09:10:20.012868 comef 9744 R rec b183477f-6e3e-4661-8e20-f66f041a5221 +2024-09-11 09:10:20.071484 2024-09-11 09:10:20.071488 comef 9745 R rec 330b6a4b-4609-4164-b4fa-4a5cfba8a018 +2024-09-11 09:10:20.132631 2024-09-11 09:10:20.132636 comef 9746 R rec f72b9c31-5f82-4b28-b637-c5e1b0853231 +2024-09-11 09:10:20.19413 2024-09-11 09:10:20.194135 comef 9747 R rec d29f7f7d-6932-48d1-a39a-8c65a8586232 +2024-09-11 09:10:20.257395 2024-09-11 09:10:20.2574 comef 9748 R rec 7f846fe5-f401-4c6a-b1ee-efb81523c45e +2024-09-11 09:10:20.348636 2024-09-11 09:10:20.348641 comef 9749 R rec 5e4481a6-4dde-4bb5-9700-318b781fa90b +2024-09-11 09:10:20.408372 2024-09-11 09:10:20.408378 comef 9750 R rec 34300352-921d-4db4-97e2-1251c38795bc +2024-09-11 09:10:20.470984 2024-09-11 09:10:20.470989 comef 9751 R rec 8d1f7ece-9a18-4b65-ac31-7fbcecc207e3 +2024-09-11 09:10:20.528564 2024-09-11 09:10:20.528569 comef 9752 R rec 0c50a2bd-8f4e-4b75-b62e-517c99656c82 +2024-09-11 09:10:20.587058 2024-09-11 09:10:20.587063 comef 9753 R rec b37876ee-864e-4148-9d48-91833c226ab2 +2024-09-11 09:10:20.647918 2024-09-11 09:10:20.647923 comef 9754 R rec 550923ba-b043-4c91-bd6b-4bdbd0100d07 +2024-09-11 09:10:20.715007 2024-09-11 09:10:20.715012 comef 9755 R rec 2446b67b-d7b3-4263-8470-61bc93bcbf52 +2024-09-11 09:10:20.774727 2024-09-11 09:10:20.774732 comef 9756 R rec 7651e564-d0b4-4b82-88d6-ad6e5cf86d9e +2024-09-11 09:10:20.828125 2024-09-11 09:10:20.828131 comef 9757 R rec 9f493a00-b0d4-4a32-b1df-458ca74c39ac +2024-09-11 09:10:20.893012 2024-09-11 09:10:20.893016 comef 9758 R rec cc56ce80-222b-49be-afed-74daf233a2a5 +2024-09-11 09:10:20.951788 2024-09-11 09:10:20.951796 comef 9759 R rec e34f4a7d-75d5-4287-a1ba-da2d70278f1a +2024-09-11 09:10:21.010487 2024-09-11 09:10:21.010492 comef 9760 R rec 9afae2c3-a715-49ff-8b8b-e8580c415ed9 +2024-09-11 09:10:21.067121 2024-09-11 09:10:21.067125 comef 9761 R rec 2739116d-c832-4db5-a6c2-53de022a9959 +2024-09-11 09:10:21.124459 2024-09-11 09:10:21.124464 comef 9762 R rec f292697c-2ba3-4989-864a-22d3f74940e9 +2024-09-11 09:10:21.178888 2024-09-11 09:10:21.178892 comef 9763 R rec d8837169-12c5-4027-9330-ecb0f490bca5 +2024-09-11 09:10:21.245894 2024-09-11 09:10:21.245899 comef 9764 R rec 691704b5-7dd9-4fe1-9de2-8a39936793bd +2024-09-11 09:10:21.307396 2024-09-11 09:10:21.307401 comef 9765 R rec eb429d02-5717-4111-a825-d08cc21323f3 +2024-09-11 09:10:21.362964 2024-09-11 09:10:21.36297 comef 9766 R rec f4a54884-f2e4-48f8-aa81-03ddc73408e5 +2024-09-11 09:10:21.417092 2024-09-11 09:10:21.417096 comef 9767 R rec 36d61a4e-7204-4c59-9f3e-9814d2eef6ba +2024-09-11 09:10:21.471756 2024-09-11 09:10:21.471761 comef 9768 R rec c07a2812-46f4-4f30-90e2-13bcd58053af +2024-09-11 09:10:21.528676 2024-09-11 09:10:21.528681 comef 9769 R rec dd823a39-4064-45e5-8cd8-3ae8da867fea +2024-09-11 09:10:21.584798 2024-09-11 09:10:21.584804 comef 9770 R rec 12eed074-a47b-477a-b02f-489b3cf88419 +2024-09-11 09:10:21.638036 2024-09-11 09:10:21.638042 comef 9771 R rec fa27b5ce-a1a1-454d-a980-4b6d4da8aac0 +2024-09-11 09:10:21.699152 2024-09-11 09:10:21.699158 comef 9772 R rec 30310bd3-f052-4d9b-97d5-e1071f5c4ef0 +2024-09-11 09:10:21.758083 2024-09-11 09:10:21.758088 comef 9773 R rec 251ab67c-f8b5-4cdb-bd1e-826b2bce5afc +2024-09-11 09:10:21.814067 2024-09-11 09:10:21.814074 comef 9774 R rec 267c65ab-275d-49d8-8474-0b22aa480e70 +2024-09-11 09:10:21.868401 2024-09-11 09:10:21.868406 comef 9775 R rec ccead147-3ada-41cc-94bb-446575db6c61 +2024-09-11 09:10:21.927835 2024-09-11 09:10:21.927839 comef 9776 R rec 2ea8391c-4a4c-4d67-9b27-38e5e78545f3 +2024-09-11 09:10:21.984742 2024-09-11 09:10:21.984749 comef 9777 R rec 2937942c-40d5-4e9a-ab61-bf70965a9d40 +2024-09-11 09:10:22.043064 2024-09-11 09:10:22.043069 comef 9778 R rec 44e42efa-3180-4127-a1fd-f76dd041e81a +2024-09-11 09:10:22.096792 2024-09-11 09:10:22.096797 comef 9779 R rec fa0fc13a-0b3e-47d0-9010-9910d288fc47 +2024-09-11 09:10:22.152862 2024-09-11 09:10:22.152867 comef 9780 R rec fea619f5-71c7-4bbd-bf97-895ada22c2b1 +2024-09-11 09:10:22.303613 2024-09-11 09:10:22.303618 comef 9781 R rec 261cdff5-c648-4eee-a19c-481ecb0bb903 +2024-09-11 09:10:22.370228 2024-09-11 09:10:22.370233 comef 9782 R rec e6eda2dd-39d2-4636-a104-1f651fc31ee5 +2024-09-11 09:10:22.42038 2024-09-11 09:10:22.420384 comef 9783 R rec b1093456-627f-4aeb-ae91-c4721e6519df +2024-09-11 09:10:22.470803 2024-09-11 09:10:22.470808 comef 9784 R rec 68328a02-8bee-4857-8119-4c1d4f8ce771 +2024-09-11 09:10:22.522064 2024-09-11 09:10:22.522068 comef 9785 R rec a50766fe-c4bc-4d08-9122-59639c4e1a65 +2024-09-11 09:10:22.575521 2024-09-11 09:10:22.575526 comef 9786 R rec ac309787-5451-4622-a6ab-1a2bd2acb2c8 +2024-09-11 09:10:22.627866 2024-09-11 09:10:22.627871 comef 9787 R rec 9be3921a-5528-4028-bf29-319563e557ef +2024-09-11 09:10:22.679824 2024-09-11 09:10:22.679829 comef 9788 R rec 5a7fdaa2-dada-4c39-bb87-40dc23126860 +2024-09-11 09:10:22.737043 2024-09-11 09:10:22.737047 comef 9789 R rec a3e92a51-0b1c-4e9b-b046-baf478525a39 +2024-09-11 09:10:22.80737 2024-09-11 09:10:22.807376 comef 9790 R rec fdcfa83f-c386-4fbf-8c4b-8145837d5db2 +2024-09-11 09:10:22.86774 2024-09-11 09:10:22.867745 comef 9791 R rec f4eb8035-91e1-44a8-aa4a-840db4d76ef5 +2024-09-11 09:10:22.924261 2024-09-11 09:10:22.924266 comef 9792 R rec 3cb6e150-08c6-45c8-9c7d-c65d8444d9bd +2024-09-11 09:10:22.983983 2024-09-11 09:10:22.983987 comef 9793 R rec eebc5a91-f8c5-4f5c-88cf-88f9135ad826 +2024-09-11 09:10:23.041229 2024-09-11 09:10:23.041234 comef 9794 R rec 01c38f28-2ac4-481b-9634-76953bfadc45 +2024-09-11 09:10:23.100222 2024-09-11 09:10:23.100226 comef 9795 R rec e88f184d-e9f9-4487-b74f-92ed9fa3672d +2024-09-11 09:10:23.152189 2024-09-11 09:10:23.152194 comef 9796 R rec d7816e66-3153-43e6-aee4-678c21f04d79 +2024-09-11 09:10:23.20166 2024-09-11 09:10:23.201665 comef 9797 R rec 9282df5b-894b-4f1a-af90-790162d0fcbb +2024-09-11 09:10:23.251744 2024-09-11 09:10:23.251748 comef 9798 R rec c43236c3-7050-430c-b9d4-8a68d6364199 +2024-09-11 09:10:23.307685 2024-09-11 09:10:23.30769 comef 9799 R rec 229823c5-d90a-4017-8d4b-0080a7bd2342 +2024-09-11 09:10:23.36323 2024-09-11 09:10:23.363235 comef 9800 R rec ec319ffd-d39f-4dc4-8f2b-b1091cb1ba33 +2024-09-11 09:10:23.459744 2024-09-11 09:10:23.459749 comef 9801 R rec c9400588-9b11-4d09-9aa7-53160915e38a +2024-09-11 09:10:23.511562 2024-09-11 09:10:23.511566 comef 9802 R rec 7b02fefe-17aa-4608-b046-78e9b04b12dd +2024-09-11 09:10:23.560392 2024-09-11 09:10:23.560396 comef 9803 R rec 419f035d-80d8-431a-a0ed-640b1e61672d +2024-09-11 09:10:23.6148 2024-09-11 09:10:23.614804 comef 9804 R rec d409c19a-7881-499b-9047-fb91c56aa297 +2024-09-11 09:10:23.667748 2024-09-11 09:10:23.667752 comef 9805 R rec 9868c109-c837-4bbc-8871-13caea414108 +2024-09-11 09:10:23.715704 2024-09-11 09:10:23.715709 comef 9806 R rec 80dffcb0-45e9-41c4-9072-44ae4c3f5b2a +2024-09-11 09:10:23.764994 2024-09-11 09:10:23.764999 comef 9807 R rec 8150d121-cfdc-4e0f-a174-67ad38e2ff5a +2024-09-11 09:10:23.814406 2024-09-11 09:10:23.814412 comef 9808 R rec 1ee3d5b9-191a-42cf-a78f-5c481487f61d +2024-09-11 09:10:23.865395 2024-09-11 09:10:23.8654 comef 9809 R rec 3a24d473-a47d-4d1e-87b0-f9fe7178f94a +2024-09-11 09:10:23.916631 2024-09-11 09:10:23.916636 comef 9810 R rec 4b7ddd04-2618-48c2-92d7-d82b43959974 +2024-09-11 09:10:23.96498 2024-09-11 09:10:23.964986 comef 9811 R rec 7e3bf9ed-32a6-4341-8463-2472b8264931 +2024-09-11 09:10:24.016373 2024-09-11 09:10:24.016378 comef 9812 R rec f04d6ca7-af24-42ce-b182-b90c851b201e +2024-09-11 09:10:24.066218 2024-09-11 09:10:24.066223 comef 9813 R rec a7519624-9986-4107-b906-29bc339be464 +2024-09-11 09:10:24.117039 2024-09-11 09:10:24.117043 comef 9814 R rec a0ae0668-8efa-487f-b651-fbdd8a99f381 +2024-09-11 09:10:24.174284 2024-09-11 09:10:24.174289 comef 9815 R rec 58d867b3-15c6-4f80-a055-27c7410d290a +2024-09-11 09:10:24.227812 2024-09-11 09:10:24.227816 comef 9816 R rec 3a7bc0e6-ea43-45bf-8476-afa17fd1774d +2024-09-11 09:10:24.280241 2024-09-11 09:10:24.280245 comef 9817 R rec 95d3a5ed-9c55-4e13-9ea4-a1975d762fc8 +2024-09-11 09:10:24.32923 2024-09-11 09:10:24.329234 comef 9818 R rec a5946731-2e86-4ec5-999f-ff374abd0219 +2024-09-11 09:10:24.37663 2024-09-11 09:10:24.376636 comef 9819 R rec c0559303-b6f6-4660-acf0-11d9a134e3a1 +2024-09-11 09:10:24.43849 2024-09-11 09:10:24.438495 comef 9820 R rec 59c41165-8c77-4dcc-b786-5f51fc1f8c56 +2024-09-11 09:10:24.490046 2024-09-11 09:10:24.49005 comef 9821 R rec 421938f3-192c-4d12-ba8b-1f862194d698 +2024-09-11 09:10:24.543647 2024-09-11 09:10:24.543652 comef 9822 R rec 0a6a4415-7359-46eb-93cd-bf5bb3d07999 +2024-09-11 09:10:24.598947 2024-09-11 09:10:24.598952 comef 9823 R rec 7acd09f5-355c-485f-bc4e-5d67a0aa213e +2024-09-11 09:10:24.648413 2024-09-11 09:10:24.648417 comef 9824 R rec b0363666-2df9-4254-ba3f-cd014f07b528 +2024-09-11 09:10:24.700332 2024-09-11 09:10:24.700337 comef 9825 R rec ca7103cf-59b2-4f19-b175-d0e50507a262 +2024-09-11 09:10:24.749997 2024-09-11 09:10:24.750001 comef 9826 R rec c5540f63-ebf4-4a56-8153-ecd718fdc7a6 +2024-09-11 09:10:24.803109 2024-09-11 09:10:24.803114 comef 9827 R rec 27567fdf-b87b-49a5-b53a-5d05312477e6 +2024-09-11 09:10:24.852564 2024-09-11 09:10:24.852569 comef 9828 R rec 4b5a2de8-1bff-4f17-a390-4f8b81c2b07c +2024-09-11 09:10:24.904914 2024-09-11 09:10:24.904918 comef 9829 R rec 87fa25ff-4879-40c9-8718-da151dde6865 +2024-09-11 09:10:24.956629 2024-09-11 09:10:24.956634 comef 9830 R rec 98d7c601-a806-43d5-af07-896b5feecfbb +2024-09-11 09:10:25.007326 2024-09-11 09:10:25.007331 comef 9831 R rec eba25d65-c404-4cf0-a85e-4ac8f703e94e +2024-09-11 09:10:25.068072 2024-09-11 09:10:25.068077 comef 9832 R rec 82da71bb-b70a-44eb-9b63-ed138244ce5c +2024-09-11 09:10:25.124688 2024-09-11 09:10:25.124693 comef 9833 R rec 58e77d35-7660-4922-ac95-52f90b49ad54 +2024-09-11 09:10:25.174579 2024-09-11 09:10:25.174584 comef 9834 R rec 28c9add1-f6ae-456c-9887-2be6ea685f35 +2024-09-11 09:10:25.22437 2024-09-11 09:10:25.224375 comef 9835 R rec 8c514fe8-2af2-4b50-bd0b-996dd11d4833 +2024-09-11 09:10:25.326636 2024-09-11 09:10:25.326641 comef 9836 R rec ea9a6eb5-eea3-46c5-864f-092df8dad540 +2024-09-11 09:10:25.380307 2024-09-11 09:10:25.380312 comef 9837 R rec 0ee7b325-3b6d-4ae3-b5a5-125c59ffe2a5 +2024-09-11 09:10:25.431228 2024-09-11 09:10:25.431232 comef 9838 R rec b9f0dd6a-8aef-4a4f-a1ea-58bc1001d0d0 +2024-09-11 09:10:25.496964 2024-09-11 09:10:25.49697 comef 9839 R rec 034a2766-ece0-4d49-ac08-3db09814156c +2024-09-11 09:10:25.554992 2024-09-11 09:10:25.554998 comef 9840 R rec efed102f-8c68-4fa1-8d11-ff2301c3bd93 +2024-09-11 09:10:25.613418 2024-09-11 09:10:25.613423 comef 9841 R rec 8b6018bd-25dd-4b02-b3f2-094880625f9a +2024-09-11 09:10:25.661566 2024-09-11 09:10:25.661571 comef 9842 R rec 7630d4f7-397c-48eb-b8e3-07825de929fc +2024-09-11 09:10:25.716249 2024-09-11 09:10:25.716254 comef 9843 R rec d53e0d64-be73-4157-ad71-1c94e84ce180 +2024-09-11 09:10:25.77206 2024-09-11 09:10:25.772065 comef 9844 R rec 71b4d943-e4e6-4f73-9c5f-65d034121300 +2024-09-11 09:10:25.857942 2024-09-11 09:10:25.857947 comef 9845 R rec 2e716984-067d-4877-910f-69a714bded55 +2024-09-11 09:10:25.90694 2024-09-11 09:10:25.906945 comef 9846 R rec d97de8d2-8dce-4aee-92f3-e389d9c6cdba +2024-09-11 09:10:25.960385 2024-09-11 09:10:25.960389 comef 9847 R rec bf5dceb8-b6d9-402e-8cd0-a44640c5bb7e +2024-09-11 09:10:26.014014 2024-09-11 09:10:26.014019 comef 9848 R rec 5d324b4f-09d7-42a1-93b0-2d9a0505a25b +2024-09-11 09:10:26.064117 2024-09-11 09:10:26.064122 comef 9849 R rec 051544ff-0ff4-4f3a-ab3d-df257da67be1 +2024-09-11 09:10:26.117935 2024-09-11 09:10:26.117941 comef 9850 R rec 89016dd6-6751-46f4-8164-94d45001a600 +2024-09-11 09:10:26.175493 2024-09-11 09:10:26.175499 comef 9851 R rec 39e23b70-8e99-45cb-baf9-aec0ce4c5ea4 +2024-09-11 09:10:26.235969 2024-09-11 09:10:26.235974 comef 9852 R rec 40a8437c-bc49-450e-8b54-a15e8a7c9991 +2024-09-11 09:10:26.293248 2024-09-11 09:10:26.293255 comef 9853 R rec 1de9fff2-7ad2-40fe-b605-9c7507772ab4 +2024-09-11 09:10:26.362903 2024-09-11 09:10:26.362908 comef 9854 R rec 97fda130-242a-4f27-9cce-f1f7c45d6b1c +2024-09-11 09:10:26.426084 2024-09-11 09:10:26.426088 comef 9855 R rec 5d450dac-1e14-46a3-9639-16cbfbe6a278 +2024-09-11 09:10:26.481474 2024-09-11 09:10:26.481479 comef 9856 R rec 45f8fdc8-5eaf-450b-ba4d-8685d74a51f0 +2024-09-11 09:10:26.538843 2024-09-11 09:10:26.538847 comef 9857 R rec 4b1e315f-ba56-4020-bf6c-5335a904a34b +2024-09-11 09:10:26.585945 2024-09-11 09:10:26.585949 comef 9858 R rec e4703f54-ddc1-4241-bbb4-469696fccd23 +2024-09-11 09:10:26.63444 2024-09-11 09:10:26.634445 comef 9859 R rec 5a9f8cb1-0984-474e-8343-7670eb26ec3a +2024-09-11 09:10:26.681917 2024-09-11 09:10:26.681921 comef 9860 R rec 564e19b3-b1c2-428c-8990-9e399cd6e2b7 +2024-09-11 09:10:26.731668 2024-09-11 09:10:26.731673 comef 9861 R rec 43b5bbda-f8a9-4fe8-b8e7-5dd68c5cb770 +2024-09-11 09:10:26.789178 2024-09-11 09:10:26.789183 comef 9862 R rec 4de5d7ad-2807-4a38-8178-4ce4224e01f9 +2024-09-11 09:10:26.841883 2024-09-11 09:10:26.841895 comef 9863 R rec f9f6e0fe-7bdd-4260-a67c-8cfed2404245 +2024-09-11 09:10:26.89583 2024-09-11 09:10:26.895835 comef 9864 R rec 0e159190-f605-4b9b-8d93-791417fac113 +2024-09-11 09:10:26.952435 2024-09-11 09:10:26.95244 comef 9865 R rec 89718388-703f-481a-9fdf-f7c91ba111b1 +2024-09-11 09:10:27.006996 2024-09-11 09:10:27.007001 comef 9866 R rec c39ba7d0-2385-4146-b0e3-b9d4f51aed5d +2024-09-11 09:10:27.063437 2024-09-11 09:10:27.063442 comef 9867 R rec e07c6a3b-0d1c-4ed0-bd88-df177b111d21 +2024-09-11 09:10:27.115224 2024-09-11 09:10:27.115229 comef 9868 R rec f3030591-e5f1-43e1-ac29-85242f323fe6 +2024-09-11 09:10:27.165592 2024-09-11 09:10:27.165597 comef 9869 R rec f765cfd7-b6a1-4fb0-879d-1a2ddf392ab8 +2024-09-11 09:10:27.218061 2024-09-11 09:10:27.218066 comef 9870 R rec df7f937e-ccdb-4cbd-8987-38433b1a067d +2024-09-11 09:10:27.266658 2024-09-11 09:10:27.266662 comef 9871 R rec 763cbbe8-8d89-4f55-b6b8-e673fa54cf93 +2024-09-11 09:10:27.321576 2024-09-11 09:10:27.321581 comef 9872 R rec e3cb12c1-b0fa-4a65-ba30-5ce145bf89c9 +2024-09-11 09:10:27.373371 2024-09-11 09:10:27.373376 comef 9873 R rec 471e4483-8c1a-4ae8-90fd-1ceb585bde30 +2024-09-11 09:10:27.424309 2024-09-11 09:10:27.424314 comef 9874 R rec 7b2cecae-50eb-4ea6-a8a6-6e037866351c +2024-09-11 09:10:27.478902 2024-09-11 09:10:27.478907 comef 9875 R rec c1ca1ca6-6dd7-4db9-bb74-06d286bea3d0 +2024-09-11 09:10:27.537399 2024-09-11 09:10:27.537404 comef 9876 R rec 6a518da0-0ab9-456e-a916-f1f341c692a7 +2024-09-11 09:10:27.587377 2024-09-11 09:10:27.587381 comef 9877 R rec edb96850-0b99-4bc6-a241-eb22f814a182 +2024-09-11 09:10:27.636355 2024-09-11 09:10:27.63636 comef 9878 R rec 1ebfc55b-abf6-42c2-8b45-314174e553bb +2024-09-11 09:10:27.689818 2024-09-11 09:10:27.689823 comef 9879 R rec fabfceca-d6e1-482d-93b9-4082a768fe8f +2024-09-11 09:10:27.739867 2024-09-11 09:10:27.739871 comef 9880 R rec 9297e599-c84b-486b-94a3-70579ed0fa37 +2024-09-11 09:10:27.793722 2024-09-11 09:10:27.793729 comef 9881 R rec c3444e39-6074-45e8-b43f-179a8b890f13 +2024-09-11 09:10:27.855841 2024-09-11 09:10:27.855847 comef 9882 R rec 6817e08a-9c89-4199-963e-a93a31716c3a +2024-09-11 09:10:27.918078 2024-09-11 09:10:27.918083 comef 9883 R rec baf59def-3c1e-45fb-ac07-2fcf60a66d39 +2024-09-11 09:10:27.974851 2024-09-11 09:10:27.974855 comef 9884 R rec 5bc20755-c25b-4bbb-9569-a8bb45001e1a +2024-09-11 09:10:28.026719 2024-09-11 09:10:28.026725 comef 9885 R rec 80317cce-1324-49f4-9e1e-304ecc28d141 +2024-09-11 09:10:28.08134 2024-09-11 09:10:28.081345 comef 9886 R rec 1e75a068-8782-43e9-a0d6-45702947b29b +2024-09-11 09:10:28.135996 2024-09-11 09:10:28.136 comef 9887 R rec fa690ab4-9891-47f6-b0d4-2a6deb1ac009 +2024-09-11 09:10:28.187849 2024-09-11 09:10:28.187852 comef 9888 R rec 02ca368d-9dc2-4e11-a268-a9ff20315bcb +2024-09-11 09:10:28.239342 2024-09-11 09:10:28.239347 comef 9889 R rec c3afb78e-2128-4d63-af4d-e7ca5b7b4fec +2024-09-11 09:10:28.288405 2024-09-11 09:10:28.28841 comef 9890 R rec 78853374-872f-447b-a1f4-5afd3ed664d5 +2024-09-11 09:10:28.34045 2024-09-11 09:10:28.340455 comef 9891 R rec 385f120b-5652-4c0f-a234-18ed5ec77093 +2024-09-11 09:10:28.39142 2024-09-11 09:10:28.391425 comef 9892 R rec 7b093247-deb6-4a80-9616-10bfd607be10 +2024-09-11 09:10:28.440448 2024-09-11 09:10:28.440453 comef 9893 R rec 2d2b0c7c-0257-4b09-872f-9f6696a4d87e +2024-09-11 09:10:28.488814 2024-09-11 09:10:28.488818 comef 9894 R rec 74b2dde8-2555-408d-9909-4d04aeb53b33 +2024-09-11 09:10:28.544619 2024-09-11 09:10:28.544623 comef 9895 R rec 9c327098-6289-4726-823b-5d3db9ea4073 +2024-09-11 09:10:28.602099 2024-09-11 09:10:28.602104 comef 9896 R rec 918a0912-fcf7-4fa7-a34a-1389b424c031 +2024-09-11 09:10:28.666996 2024-09-11 09:10:28.667001 comef 9897 R rec 74945778-a3a0-4f21-9b12-a0defbde2296 +2024-09-11 09:10:28.726524 2024-09-11 09:10:28.726529 comef 9898 R rec 92212517-ea9d-4cc6-a2c0-f3a7f72484cc +2024-09-11 09:10:28.775837 2024-09-11 09:10:28.775841 comef 9899 R rec 287bbf36-f1bb-4ef7-8e0f-ffd5ea95554e +2024-09-11 09:10:28.825127 2024-09-11 09:10:28.825132 comef 9900 R rec c70abf3a-69b9-49dd-be8d-343b84580497 +2024-09-11 09:10:28.875427 2024-09-11 09:10:28.875432 comef 9901 R rec b0f7efe3-aa4d-44cf-bf6c-6cc5aff99371 +2024-09-11 09:10:28.925017 2024-09-11 09:10:28.925021 comef 9902 R rec b2f13b3d-85ba-4b60-aced-0a057f533ba1 +2024-09-11 09:10:28.971136 2024-09-11 09:10:28.97114 comef 9903 R rec 2d16a376-707d-43b0-b035-06d7de183468 +2024-09-11 09:10:29.018043 2024-09-11 09:10:29.018047 comef 9904 R rec 441d2766-50b6-4940-a34a-b228c686e3cf +2024-09-11 09:10:29.066688 2024-09-11 09:10:29.066694 comef 9905 R rec 1c9d1f7c-8a09-462d-b715-aae6321e42df +2024-09-11 09:10:29.12524 2024-09-11 09:10:29.125245 comef 9906 R rec 4362d93e-25a0-496f-b832-170895c25872 +2024-09-11 09:10:29.175877 2024-09-11 09:10:29.175882 comef 9907 R rec 1f04e390-9658-4f4f-b575-69df41e12619 +2024-09-11 09:10:29.22716 2024-09-11 09:10:29.227164 comef 9908 R rec 2d5abe61-bddd-46c6-abd5-178e35d268d8 +2024-09-11 09:10:29.272589 2024-09-11 09:10:29.272594 comef 9909 R rec f2d24009-5397-4223-89ac-d07b262a2da8 +2024-09-11 09:10:29.319813 2024-09-11 09:10:29.319817 comef 9910 R rec 557dc823-cfd9-4c4e-ab35-eae861925cf6 +2024-09-11 09:10:29.384267 2024-09-11 09:10:29.384277 comef 9911 R rec 33c08e7b-fca4-44e3-b3a0-6942d552aff6 +2024-09-11 09:10:29.447469 2024-09-11 09:10:29.447479 comef 9912 R rec 6fa4c88f-013c-45d7-ad60-a7cb50d4d26f +2024-09-11 09:10:29.521353 2024-09-11 09:10:29.521358 comef 9913 R rec 10995d2d-ce85-4891-8f2e-f043c52fa819 +2024-09-11 09:10:29.58987 2024-09-11 09:10:29.589879 comef 9914 R rec d99076da-442a-4f10-94e9-f456d45ad91d +2024-09-11 09:10:29.664995 2024-09-11 09:10:29.665006 comef 9915 R rec c5ec0378-55fc-47be-a556-ca91d98c0e76 +2024-09-11 09:10:29.713397 2024-09-11 09:10:29.713402 comef 9916 R rec 3820fd41-c3f3-41b9-abaa-321e50a04969 +2024-09-11 09:10:29.775067 2024-09-11 09:10:29.775078 comef 9917 R rec 7870ee30-d6a5-4945-887d-adcf8c8c5e15 +2024-09-11 09:10:29.855906 2024-09-11 09:10:29.855916 comef 9918 R rec c79cea1e-37a5-43c7-874f-2a9a533dd1b0 +2024-09-11 09:10:29.926028 2024-09-11 09:10:29.926038 comef 9919 R rec 78f8bbf1-b108-462f-a5cc-1ccd47ef958f +2024-09-11 09:10:29.988946 2024-09-11 09:10:29.988951 comef 9920 R rec 41dc70ef-2d32-4f0e-a147-e35b180f1f1d +2024-09-11 09:10:30.056594 2024-09-11 09:10:30.056598 comef 9921 R rec b3f5a0f3-fc94-4de1-aad5-f1341e121bdc +2024-09-11 09:10:30.12613 2024-09-11 09:10:30.12614 comef 9922 R rec c08ce93a-9445-404e-8f13-8c02dc4533de +2024-09-11 09:10:30.192663 2024-09-11 09:10:30.192668 comef 9923 R rec 4f3badd7-7e98-49f1-a931-522b68986aae +2024-09-11 09:10:30.257094 2024-09-11 09:10:30.257104 comef 9924 R rec 7fc1eecc-b973-4f1f-b557-1b23d7df3ab8 +2024-09-11 09:10:30.340458 2024-09-11 09:10:30.340463 comef 9925 R rec ef32c9b3-3482-4734-83b6-7acd5599f12a +2024-09-11 09:10:30.408609 2024-09-11 09:10:30.408619 comef 9926 R rec 4ea5178e-3f13-4383-a68c-9c894ae66a71 +2024-09-11 09:10:30.477335 2024-09-11 09:10:30.477339 comef 9927 R rec b1a723b7-967e-41ad-abc2-b6cd158fdd18 +2024-09-11 09:10:30.534456 2024-09-11 09:10:30.534461 comef 9928 R rec e69000b9-0685-4c44-8fbf-32dac900dfb3 +2024-09-11 09:10:30.593523 2024-09-11 09:10:30.593527 comef 9929 R rec e625567b-6093-4248-9601-cbbc4fa47044 +2024-09-11 09:10:30.659723 2024-09-11 09:10:30.659734 comef 9930 R rec ab9d41aa-8209-4f73-8926-f5e52360578f +2024-09-11 09:10:30.715861 2024-09-11 09:10:30.715865 comef 9931 R rec f446369a-3fcb-4e51-ab34-f463c13b5630 +2024-09-11 09:10:30.772476 2024-09-11 09:10:30.772481 comef 9932 R rec 249f3fb9-a1e1-43c2-8fe0-c1c04f803551 +2024-09-11 09:10:30.84483 2024-09-11 09:10:30.844841 comef 9933 R rec a3af3d2e-9545-4389-b797-f7f64961484f +2024-09-11 09:10:30.933064 2024-09-11 09:10:30.933075 comef 9934 R rec f5675a84-e5ce-4a22-b692-f680934af295 +2024-09-11 09:10:31.012128 2024-09-11 09:10:31.012133 comef 9935 R rec 51fcb4bc-d471-45ab-8674-2048c40b622a +2024-09-11 09:10:31.065628 2024-09-11 09:10:31.065638 comef 9936 R rec 66d71226-500b-4435-9d99-4048b9a97fb8 +2024-09-11 09:10:31.132173 2024-09-11 09:10:31.132177 comef 9937 R rec a7a54c3f-fb65-40b1-873c-eba293fdcf3c +2024-09-11 09:10:31.19032 2024-09-11 09:10:31.190325 comef 9938 R rec 77449f4f-0bc5-45a0-8cb1-699eb56db5d1 +2024-09-11 09:10:31.248863 2024-09-11 09:10:31.248868 comef 9939 R rec 9beb8dc4-48a3-47b0-b4d2-38e38905dc4c +2024-09-11 09:10:31.321681 2024-09-11 09:10:31.321696 comef 9940 R rec 3d7b61b6-781a-468d-82fa-5bc3c86799ce +2024-09-11 09:10:31.410581 2024-09-11 09:10:31.410591 comef 9941 R rec 742cdd07-eed6-4bfa-8cc3-188fdb40b92d +2024-09-11 09:10:31.485816 2024-09-11 09:10:31.485821 comef 9942 R rec b56716e7-5e37-4fbd-94c4-153f7085f8ba +2024-09-11 09:10:31.557435 2024-09-11 09:10:31.557445 comef 9943 R rec 70e84e5f-5ec6-4c9b-bb62-e74e90a5324a +2024-09-11 09:10:31.630044 2024-09-11 09:10:31.630049 comef 9944 R rec 7053e34d-27e4-41e0-b59d-0991f13ba051 +2024-09-11 09:10:31.6961 2024-09-11 09:10:31.696104 comef 9945 R rec 0264692b-e3f9-4bee-b74e-6faf13fe54f6 +2024-09-11 09:10:31.751169 2024-09-11 09:10:31.751178 comef 9946 R rec 95bb88ae-4236-418e-90fa-2a998381bda4 +2024-09-11 09:10:31.816143 2024-09-11 09:10:31.816153 comef 9947 R rec 0e32a747-83d7-4513-8234-81e918cf7c8c +2024-09-11 09:10:31.896364 2024-09-11 09:10:31.896374 comef 9948 R rec 60a2753f-2a87-4148-9a25-c8a57df183c6 +2024-09-11 09:10:31.973103 2024-09-11 09:10:31.973112 comef 9949 R rec 0229616d-00de-4ebb-b6c5-7758843571a6 +2024-09-11 09:10:32.036876 2024-09-11 09:10:32.03688 comef 9950 R rec 12e8c085-f14d-49ed-8646-9c5358b2384d +2024-09-11 09:10:32.100774 2024-09-11 09:10:32.1008 comef 9951 R rec 1ec03d02-c3ea-4808-b564-b0223c2796fe +2024-09-11 09:10:32.195307 2024-09-11 09:10:32.195312 comef 9952 R rec 3aa6bc7e-60dc-4a25-9c0b-a36fdf7c9440 +2024-09-11 09:10:32.278481 2024-09-11 09:10:32.278492 comef 9953 R rec f3ea1e94-5a37-497e-a54a-8d7bb9b159d8 +2024-09-11 09:10:32.351806 2024-09-11 09:10:32.351811 comef 9954 R rec e04f6434-c469-4584-a8f7-a704c03dc56e +2024-09-11 09:10:32.426832 2024-09-11 09:10:32.426837 comef 9955 R rec d9a062b2-6bc9-405a-8d2f-f949cb2415c2 +2024-09-11 09:10:32.494368 2024-09-11 09:10:32.494384 comef 9956 R rec e2508d40-f8ad-4c9d-958b-5e5b17936669 +2024-09-11 09:10:32.579138 2024-09-11 09:10:32.579144 comef 9957 R rec 4041407f-16c0-46b9-8c41-e850212ec975 +2024-09-11 09:10:32.652205 2024-09-11 09:10:32.652215 comef 9958 R rec 11247733-d2a6-49ae-a76f-98bf542faaa5 +2024-09-11 09:10:32.710977 2024-09-11 09:10:32.710982 comef 9959 R rec a25f9a40-8bc9-45ac-a979-9cc6654d7d1b +2024-09-11 09:10:32.775077 2024-09-11 09:10:32.775082 comef 9960 R rec 511bd004-80c9-4425-ac41-6ffc1b2169c7 +2024-09-11 09:10:32.837731 2024-09-11 09:10:32.837735 comef 9961 R rec 4e353c77-9b42-48be-9aed-1b81ec9b0e2e +2024-09-11 09:10:32.897809 2024-09-11 09:10:32.897813 comef 9962 R rec 0b4b9dc1-71bf-4537-8d4d-320644278235 +2024-09-11 09:10:32.951133 2024-09-11 09:10:32.951138 comef 9963 R rec 8715583f-3b8f-4fbc-b8b4-f4633d97c790 +2024-09-11 09:10:33.003973 2024-09-11 09:10:33.003977 comef 9964 R rec 5b93968a-edf7-4825-bdbf-06fca05a989a +2024-09-11 09:10:33.057494 2024-09-11 09:10:33.057499 comef 9965 R rec 947e58b8-109c-451b-b8d0-cca9bc823546 +2024-09-11 09:10:33.109027 2024-09-11 09:10:33.109031 comef 9966 R rec b5eeb0fb-ed23-4b77-a2a1-8030fd1904d4 +2024-09-11 09:10:33.166311 2024-09-11 09:10:33.166316 comef 9967 R rec 4ec5b35a-dc83-4e31-8840-2028de1dcbe6 +2024-09-11 09:10:33.221402 2024-09-11 09:10:33.221407 comef 9968 R rec 6bda811b-ffe5-466b-9436-aba424e26633 +2024-09-11 09:10:33.283613 2024-09-11 09:10:33.283618 comef 9969 R rec 5acd425f-759a-4602-b8d3-cf5ef956eaf6 +2024-09-11 09:10:33.34631 2024-09-11 09:10:33.346315 comef 9970 R rec 7abf2534-27df-4609-ae64-c6bc121a502c +2024-09-11 09:10:33.412454 2024-09-11 09:10:33.41246 comef 9971 R rec b321cdc9-b70c-4b4e-be93-de6ae0a99181 +2024-09-11 09:10:33.480196 2024-09-11 09:10:33.480202 comef 9972 R rec ad8895c7-9cc5-4828-8676-6b2409a07645 +2024-09-11 09:10:33.538053 2024-09-11 09:10:33.538057 comef 9973 R rec fb038d8d-0286-44ea-822f-e620a8c69559 +2024-09-11 09:10:33.593733 2024-09-11 09:10:33.593738 comef 9974 R rec 820fd281-c7d3-41b5-92f3-e2763477ee82 +2024-09-11 09:10:33.64431 2024-09-11 09:10:33.644314 comef 9975 R rec 139caf44-becd-43af-ba1a-0b22e7a577a8 +2024-09-11 09:10:33.696713 2024-09-11 09:10:33.696718 comef 9976 R rec 0ffa3cf1-427e-4dc8-b6e9-3ed3c90667bf +2024-09-11 09:10:33.747751 2024-09-11 09:10:33.747756 comef 9977 R rec e119ae40-cd86-4ac6-99ad-ee99ffb6961b +2024-09-11 09:10:33.79637 2024-09-11 09:10:33.796374 comef 9978 R rec d9380f75-1b98-4a0c-be6f-fb198d0e7209 +2024-09-11 09:10:33.846653 2024-09-11 09:10:33.846658 comef 9979 R rec 143152c9-fb16-4cbe-8009-2d1600216397 +2024-09-11 09:10:33.909485 2024-09-11 09:10:33.90949 comef 9980 R rec 015c7ec9-9a7f-4920-b790-8b495517a477 +2024-09-11 09:10:33.960498 2024-09-11 09:10:33.960503 comef 9981 R rec 5d523fd4-ea70-449f-aaf1-ee1df3be1070 +2024-09-11 09:10:34.013 2024-09-11 09:10:34.013006 comef 9982 R rec c9cbe12a-b2ce-4080-a386-cc0148e95b92 +2024-09-11 09:10:34.068118 2024-09-11 09:10:34.068123 comef 9983 R rec 480ffd8d-0f04-4f26-ad0e-019c87946104 +2024-09-11 09:10:34.120766 2024-09-11 09:10:34.12077 comef 9984 R rec 43220e88-7ad1-45f7-9799-08bf167d18af +2024-09-11 09:10:34.173687 2024-09-11 09:10:34.173692 comef 9985 R rec 5a03e07a-db03-4fc9-8069-236ef2f38513 +2024-09-11 09:10:34.236463 2024-09-11 09:10:34.236467 comef 9986 R rec 177469a6-59c6-40c4-8bb1-6daf0a96474b +2024-09-11 09:10:34.298874 2024-09-11 09:10:34.298879 comef 9987 R rec d0702c05-4c22-4a79-8a95-c03c3d5ee9ce +2024-09-11 09:10:34.356588 2024-09-11 09:10:34.356592 comef 9988 R rec 43d969f1-f2c2-4364-afe1-66facf7bcd99 +2024-09-11 09:10:34.417695 2024-09-11 09:10:34.417699 comef 9989 R rec cfeb743a-c354-4583-b21d-50a866334e11 +2024-09-11 09:10:34.479446 2024-09-11 09:10:34.479453 comef 9990 R rec 89973ed9-5c43-43b8-bbc5-0dd6297586db +2024-09-11 09:10:34.537917 2024-09-11 09:10:34.537921 comef 9991 R rec 0442d5c2-282d-4be0-ab3f-ab6215d1912e +2024-09-11 09:10:34.590772 2024-09-11 09:10:34.590777 comef 9992 R rec cfdc1ac4-1510-4eb6-9ec1-13fce36739ef +2024-09-11 09:10:34.639861 2024-09-11 09:10:34.639865 comef 9993 R rec 2f542a7d-f4a1-4b5f-8747-34db96c515bc +2024-09-11 09:10:34.693145 2024-09-11 09:10:34.693149 comef 9994 R rec 3b5c3f0b-7680-4432-9223-8d8dbc6776b9 +2024-09-11 09:10:34.740571 2024-09-11 09:10:34.740576 comef 9995 R rec c83d0917-b087-4a34-9240-ffb3c267e7d9 +2024-09-11 09:10:34.7923 2024-09-11 09:10:34.792305 comef 9996 R rec c7e3de40-acf7-4a48-8f82-7d3d308f385d +2024-09-11 09:10:34.838318 2024-09-11 09:10:34.838322 comef 9997 R rec 903a6ba3-bdb6-42e3-87a4-dd349d8734dc +2024-09-11 09:10:34.884926 2024-09-11 09:10:34.884931 comef 9998 R rec f07001e4-d8a2-446c-9368-f3dcc604982d +2024-09-11 09:10:34.935395 2024-09-11 09:10:34.935399 comef 9999 R rec de089443-9dc9-4609-8e79-16df167bb4c6 +2024-09-11 09:10:34.983994 2024-09-11 09:10:34.983999 comef 10000 R rec e81a1cd1-63d7-4564-8c22-3c841cc914ef +2024-09-11 09:10:35.034151 2024-09-11 09:10:35.034155 comef 10001 R rec 3343d94e-6bcf-4a10-8b2f-a36f41704a4f +2024-09-11 09:10:35.080718 2024-09-11 09:10:35.080723 comef 10002 R rec 0879d076-590c-493a-aaab-94f72de16ed0 +2024-09-11 09:10:35.129556 2024-09-11 09:10:35.12956 comef 10003 R rec 76b88948-37e1-4372-a198-48ab84aa4e30 +2024-09-11 09:10:35.175924 2024-09-11 09:10:35.175928 comef 10004 R rec 29178016-a984-43f6-b4cf-c1a271b066ec +2024-09-11 09:10:35.262298 2024-09-11 09:10:35.262306 comef 10005 R rec 97330800-834c-4be9-89e9-a41fbb803711 +2024-09-11 09:10:35.318643 2024-09-11 09:10:35.318653 comef 10006 R rec 6e4a9df7-2222-4368-936d-ca580070def8 +2024-09-11 09:10:35.387251 2024-09-11 09:10:35.387255 comef 10007 R rec 26035a48-8e8f-4f52-9aeb-53ed00fead1f +2024-09-11 09:10:35.469186 2024-09-11 09:10:35.469191 comef 10008 R rec 89fbc37f-695c-4e2b-8aea-c3a1c5dbe025 +2024-09-11 09:10:35.533599 2024-09-11 09:10:35.533608 comef 10009 R rec 20107ddd-16bf-4e63-bdc1-602841fef534 +2024-09-11 09:10:35.589691 2024-09-11 09:10:35.589696 comef 10010 R rec f4a13c09-1980-4db4-8e51-5e78893190cd +2024-09-11 09:10:35.653569 2024-09-11 09:10:35.653573 comef 10011 R rec 40d808e9-e055-49c2-adf9-eadc96a2ff49 +2024-09-11 09:10:35.722779 2024-09-11 09:10:35.722785 comef 10012 R rec 0dcef3d6-7424-4105-99af-7f883a33d3f4 +2024-09-11 09:10:35.778467 2024-09-11 09:10:35.778472 comef 10013 R rec 1611fefe-4743-42e7-91fe-3c9b6e6c59db +2024-09-11 09:10:35.836118 2024-09-11 09:10:35.836123 comef 10014 R rec ffd2f5af-f115-46d3-952c-51a55e7c51d5 +2024-09-11 09:10:35.888859 2024-09-11 09:10:35.888863 comef 10015 R rec a035e265-0244-4e2e-ba7c-b26cccf033a9 +2024-09-11 09:10:35.942315 2024-09-11 09:10:35.94232 comef 10016 R rec a73bd768-a3a7-4c99-9e65-4aeaeae382f7 +2024-09-11 09:10:35.992185 2024-09-11 09:10:35.99219 comef 10017 R rec 8d472c29-f19c-41de-a581-7dcd9417acab +2024-09-11 09:10:36.04405 2024-09-11 09:10:36.044055 comef 10018 R rec f2db5e22-9a2f-4d8f-8ee3-543cc4e7ae22 +2024-09-11 09:10:36.096089 2024-09-11 09:10:36.096094 comef 10019 R rec 41f2b702-ee9f-48a8-be4a-c163cdeca462 +2024-09-11 09:10:36.143845 2024-09-11 09:10:36.143849 comef 10020 R rec 18ee8c77-45ec-415b-9297-029d983edf85 +2024-09-11 09:10:36.206592 2024-09-11 09:10:36.206603 comef 10021 R rec eee59d46-83c1-441b-98da-18969ab47fd1 +2024-09-11 09:10:36.264704 2024-09-11 09:10:36.264709 comef 10022 R rec 2f25fa69-4f84-4529-a776-000088a681ef +2024-09-11 09:10:36.321993 2024-09-11 09:10:36.322003 comef 10023 R rec 22ba72a8-1816-4cbc-a331-2250ac491352 +2024-09-11 09:10:36.385002 2024-09-11 09:10:36.385012 comef 10024 R rec 3e5084c3-cf8a-4b23-a34b-b58d996ad31e +2024-09-11 09:10:36.45263 2024-09-11 09:10:36.452635 comef 10025 R rec c82d00ec-bf6c-46b3-9007-cee3e6e61088 +2024-09-11 09:10:36.511107 2024-09-11 09:10:36.511112 comef 10026 R rec f9b96712-c495-46c0-9436-8b61f80176cd +2024-09-11 09:10:36.568401 2024-09-11 09:10:36.568405 comef 10027 R rec c12dfd7e-17f0-4473-bc14-a0508d233f34 +2024-09-11 09:10:36.620308 2024-09-11 09:10:36.620313 comef 10028 R rec 296af9c8-a247-47c5-8b8c-5fb707c0c88a +2024-09-11 09:10:36.667277 2024-09-11 09:10:36.667282 comef 10029 R rec cd151433-2739-45dd-b794-d711d5cbc79f +2024-09-11 09:10:36.717916 2024-09-11 09:10:36.71792 comef 10030 R rec 475e5467-b712-41bc-834e-63a5cd65ffa9 +2024-09-11 09:10:36.779206 2024-09-11 09:10:36.779212 comef 10031 R rec d8bb26db-e67a-48b3-b9e8-99dba49557a0 +2024-09-11 09:10:36.835645 2024-09-11 09:10:36.83565 comef 10032 R rec 5df23681-76b0-4f11-8fdb-7b7d77ab5369 +2024-09-11 09:10:36.88706 2024-09-11 09:10:36.887064 comef 10033 R rec 2da17a68-8a95-44cd-814e-e7175489a701 +2024-09-11 09:10:36.937131 2024-09-11 09:10:36.937135 comef 10034 R rec 748eb7a7-8032-4a3a-85c2-ef527a80a3da +2024-09-11 09:10:36.983229 2024-09-11 09:10:36.983233 comef 10035 R rec 659927b6-2524-45e5-9e79-d05bab0a6cdb +2024-09-11 09:10:37.033189 2024-09-11 09:10:37.033194 comef 10036 R rec 1d34638c-71b8-480b-a9b4-3a320d99f48a +2024-09-11 09:10:37.089237 2024-09-11 09:10:37.089241 comef 10037 R rec f993b263-bcbf-4d22-bd18-0db32ff9c0f9 +2024-09-11 09:10:37.152921 2024-09-11 09:10:37.152925 comef 10038 R rec e14e4101-79b1-447c-888e-85b1d4df4243 +2024-09-11 09:10:37.217327 2024-09-11 09:10:37.217332 comef 10039 R rec e99f52e0-f033-406d-b566-8e3ab7f455d7 +2024-09-11 09:10:37.273871 2024-09-11 09:10:37.273877 comef 10040 R rec 6914d264-8cae-4d98-8d59-b64731d6fdc5 +2024-09-11 09:10:37.335355 2024-09-11 09:10:37.335361 comef 10041 R rec 4dba88a3-6da1-45e6-9324-3b33d81a695e +2024-09-11 09:10:37.39495 2024-09-11 09:10:37.394954 comef 10042 R rec 7f2d0a22-e0ed-420f-a300-cbfb698664e9 +2024-09-11 09:10:37.4583 2024-09-11 09:10:37.458306 comef 10043 R rec 76b7813d-d652-41a9-af1e-3e1d65d01f93 +2024-09-11 09:10:37.523538 2024-09-11 09:10:37.523544 comef 10044 R rec a39183d4-7c98-4802-974e-1b4c703446c0 +2024-09-11 09:10:37.582638 2024-09-11 09:10:37.582645 comef 10045 R rec f4df255c-206d-4b96-ad6c-37408a425f0a +2024-09-11 09:10:37.65204 2024-09-11 09:10:37.652044 comef 10046 R rec 330a6548-8282-4031-8dec-ee78a8c3de2c +2024-09-11 09:10:37.706991 2024-09-11 09:10:37.706995 comef 10047 R rec 9205167d-9da6-4b1e-b7da-981bf1a49c55 +2024-09-11 09:10:37.755518 2024-09-11 09:10:37.755522 comef 10048 R rec daf08cee-42dc-47c4-a203-bf7a5ca5c12f +2024-09-11 09:10:37.802385 2024-09-11 09:10:37.80239 comef 10049 R rec ad4af4d7-cf04-4be7-9403-da9154559679 +2024-09-11 09:10:37.848197 2024-09-11 09:10:37.848202 comef 10050 R rec 72da9b13-4694-4f49-83d0-36be3316fc9c +2024-09-11 09:10:37.894129 2024-09-11 09:10:37.894134 comef 10051 R rec 991e939f-0086-48b4-b2d0-ba32c055254a +2024-09-11 09:10:37.944025 2024-09-11 09:10:37.94403 comef 10052 R rec a8f4094c-7289-45c2-993c-49d503a248db +2024-09-11 09:10:37.992335 2024-09-11 09:10:37.99234 comef 10053 R rec 677a8b45-7ec4-4dbb-a004-a099bcea9e36 +2024-09-11 09:10:38.045058 2024-09-11 09:10:38.045063 comef 10054 R rec c6220ed0-4a75-4bb8-adf2-59517a2f9a06 +2024-09-11 09:10:38.109989 2024-09-11 09:10:38.109994 comef 10055 R rec 1d04b006-f005-4646-95dc-2dcbf339dbe4 +2024-09-11 09:10:38.167725 2024-09-11 09:10:38.16773 comef 10056 R rec c46df014-9b98-4a90-8521-4113d608d1f9 +2024-09-11 09:10:38.243123 2024-09-11 09:10:38.24313 comef 10057 R rec 0802188a-405b-4bf8-98a8-aa113d816cea +2024-09-11 09:10:38.299462 2024-09-11 09:10:38.299467 comef 10058 R rec 154e675d-5779-42c6-b6ac-4faeda984d3f +2024-09-11 09:10:38.350284 2024-09-11 09:10:38.350289 comef 10059 R rec b8f6911d-d50d-4e2f-a1cd-5173a1df5330 +2024-09-11 09:10:38.40348 2024-09-11 09:10:38.403485 comef 10060 R rec 03a0aa93-57ed-4682-aaa9-de3c7c098d12 +2024-09-11 09:10:38.465956 2024-09-11 09:10:38.465961 comef 10061 R rec 39f685f4-2244-4156-baf3-a4e43d403388 +2024-09-11 09:10:38.520872 2024-09-11 09:10:38.520877 comef 10062 R rec 92943da8-f62c-4c98-b01d-436d6a3ea7b8 +2024-09-11 09:10:38.582002 2024-09-11 09:10:38.582008 comef 10063 R rec 12558b3b-6e87-4697-bd1a-34dbe257af4d +2024-09-11 09:10:38.630896 2024-09-11 09:10:38.630901 comef 10064 R rec 882ed891-6410-4788-a40a-eb025d9aba99 +2024-09-11 09:10:38.681308 2024-09-11 09:10:38.681313 comef 10065 R rec 7c08faaf-e915-495b-ac3a-34f56a6c533a +2024-09-11 09:10:38.729366 2024-09-11 09:10:38.729371 comef 10066 R rec 80098a91-7226-416f-b6a8-e3e6f2049924 +2024-09-11 09:10:38.777945 2024-09-11 09:10:38.777949 comef 10067 R rec 8d637499-6760-4914-baec-92ccb2e21989 +2024-09-11 09:10:38.827648 2024-09-11 09:10:38.827653 comef 10068 R rec 4a89a760-58c4-4617-abdd-39044edfb596 +2024-09-11 09:10:38.874156 2024-09-11 09:10:38.874161 comef 10069 R rec 85d82fad-4bae-4372-b0ef-3417e749701d +2024-09-11 09:10:38.924078 2024-09-11 09:10:38.924083 comef 10070 R rec 7a5078e6-ed29-4f9c-8623-40c5b136f643 +2024-09-11 09:10:38.978237 2024-09-11 09:10:38.978242 comef 10071 R rec 8102a4e0-fada-49f9-bff0-201f89fe1a04 +2024-09-11 09:10:39.032551 2024-09-11 09:10:39.032556 comef 10072 R rec 737f8a53-5a41-4b84-bbc6-5f27147e04b0 +2024-09-11 09:10:39.080234 2024-09-11 09:10:39.080239 comef 10073 R rec da8ac4b7-0e90-44ed-8d86-0112f6dbf767 +2024-09-11 09:10:39.128373 2024-09-11 09:10:39.128377 comef 10074 R rec 7a9f69ed-d1c2-407b-810e-0ffbcf8065fa +2024-09-11 09:10:39.177869 2024-09-11 09:10:39.177874 comef 10075 R rec 035dc6ca-adf4-47ea-8fb1-33fab8b7001e +2024-09-11 09:10:39.24572 2024-09-11 09:10:39.24573 comef 10076 R rec 847ece18-2ad5-4c0a-af7e-8f3cb73c8682 +2024-09-11 09:10:39.322187 2024-09-11 09:10:39.322197 comef 10077 R rec ea2bddb8-6567-4d30-a5d8-4fc94122f535 +2024-09-11 09:10:39.39449 2024-09-11 09:10:39.394503 comef 10078 R rec a5d33a0a-8af9-4345-909e-5c3ae6fefda6 +2024-09-11 09:10:39.46015 2024-09-11 09:10:39.460155 comef 10079 R rec cead7570-ccdb-42fb-9c5a-30ff4765e1d7 +2024-09-11 09:10:39.508842 2024-09-11 09:10:39.508847 comef 10080 R rec 21169a87-f32a-4e23-9f64-f9a116989323 +2024-09-11 09:10:39.567844 2024-09-11 09:10:39.567849 comef 10081 R rec 6b1872db-407f-4d94-bcd8-09f63c2aca8e +2024-09-11 09:10:39.647288 2024-09-11 09:10:39.647299 comef 10082 R rec 439e6753-7d22-4860-9f23-bb6d8d183608 +2024-09-11 09:10:39.724311 2024-09-11 09:10:39.724315 comef 10083 R rec a065d4de-2a89-4e21-98f4-d2f01cfe4c19 +2024-09-11 09:10:39.799031 2024-09-11 09:10:39.799041 comef 10084 R rec 72a06e1a-cf21-4830-8a58-04c61fff66c1 +2024-09-11 09:10:39.880882 2024-09-11 09:10:39.880892 comef 10085 R rec 168cdd07-9cea-4f55-b0be-307f13caa29d +2024-09-11 09:10:39.949756 2024-09-11 09:10:39.949766 comef 10086 R rec 0b27d077-3b05-4785-a2b7-832374212687 +2024-09-11 09:10:40.021987 2024-09-11 09:10:40.021991 comef 10087 R rec d7bc4780-44bb-437f-8063-247d647ce01c +2024-09-11 09:10:40.069426 2024-09-11 09:10:40.06943 comef 10088 R rec 3214af39-9677-4b36-b61c-844f4db71cd2 +2024-09-11 09:10:40.126341 2024-09-11 09:10:40.126351 comef 10089 R rec 71072e23-0b71-49c6-9a03-af4340cc9b75 +2024-09-11 09:10:40.18867 2024-09-11 09:10:40.188675 comef 10090 R rec 320b1c65-41e9-4fd6-b1e2-f6b1f06022e5 +2024-09-11 09:10:40.241136 2024-09-11 09:10:40.241141 comef 10091 R rec cc1ebdbb-adb4-4725-b575-e30e7baec479 +2024-09-11 09:10:40.301221 2024-09-11 09:10:40.301225 comef 10092 R rec 3c4a8ebb-1ef3-4e58-93c0-e0e45505229f +2024-09-11 09:10:40.366938 2024-09-11 09:10:40.366948 comef 10093 R rec 4c4e3465-e3fb-4905-abf2-8a8da739c410 +2024-09-11 09:10:40.435218 2024-09-11 09:10:40.435228 comef 10094 R rec e37316b1-2a83-4d6d-9811-09c9204c6f62 +2024-09-11 09:10:40.502345 2024-09-11 09:10:40.502349 comef 10095 R rec 162fd4d1-1431-4e5d-b6af-021098d3a213 +2024-09-11 09:10:40.554736 2024-09-11 09:10:40.55474 comef 10096 R rec e61bb0ee-f437-401b-ae94-bd5d1655abc1 +2024-09-11 09:10:40.612715 2024-09-11 09:10:40.612726 comef 10097 R rec 69c5781d-32db-4a6d-bd7c-9ad5513598a8 +2024-09-11 09:10:40.685065 2024-09-11 09:10:40.685074 comef 10098 R rec 697e7a34-89d7-4690-a9a3-e9deff0eb6e6 +2024-09-11 09:10:40.756928 2024-09-11 09:10:40.756938 comef 10099 R rec 15376f91-9284-4af9-a1b6-d3cc56e9041b +2024-09-11 09:10:40.828616 2024-09-11 09:10:40.828626 comef 10100 R rec 351ae02d-1819-4dc5-b492-dfab6aae5caf +2024-09-11 09:10:40.899032 2024-09-11 09:10:40.899037 comef 10101 R rec 31895d7a-8910-450d-90fa-32cad2e6d4a7 +2024-09-11 09:10:40.960326 2024-09-11 09:10:40.96033 comef 10102 R rec 9e274dc1-4d63-4e81-bb2b-b7d8297d0b3b +2024-09-11 09:10:41.030277 2024-09-11 09:10:41.030282 comef 10103 R rec d7c9c272-0489-436c-b1e2-81cfb5cf3320 +2024-09-11 09:10:41.101991 2024-09-11 09:10:41.101995 comef 10104 R rec 4cf1833b-342c-4501-b28a-f965cbcfb913 +2024-09-11 09:10:41.167967 2024-09-11 09:10:41.167976 comef 10105 R rec b813f01e-f64f-4ecf-a1d4-1bda619c71b4 +2024-09-11 09:10:41.228681 2024-09-11 09:10:41.228686 comef 10106 R rec 0104f826-cc37-4d67-8939-0a7b55b21c69 +2024-09-11 09:10:41.286982 2024-09-11 09:10:41.286994 comef 10107 R rec 576f2c05-0d14-4df0-b209-01fb668b8e4c +2024-09-11 09:10:41.349329 2024-09-11 09:10:41.349339 comef 10108 R rec c814df1f-5548-47e9-a317-3a61e46974bd +2024-09-11 09:10:41.412447 2024-09-11 09:10:41.412458 comef 10109 R rec 3197d739-f1fa-483b-9da8-4c0a9ea22f79 +2024-09-11 09:10:41.473336 2024-09-11 09:10:41.473342 comef 10110 R rec ff64c934-3aa4-446a-87d1-5e119519a938 +2024-09-11 09:10:41.537911 2024-09-11 09:10:41.537914 comef 10111 R rec d68514a9-d35f-4f2b-b5da-3d184672b1d6 +2024-09-11 09:10:41.588742 2024-09-11 09:10:41.588746 comef 10112 R rec edae39a7-c5c1-449d-93e6-82faf263db12 +2024-09-11 09:10:41.649595 2024-09-11 09:10:41.649599 comef 10113 R rec c5d4ece6-3eab-4617-b98d-27c52311b68f +2024-09-11 09:10:41.716546 2024-09-11 09:10:41.716556 comef 10114 R rec 1af49447-6cc5-4e47-8e91-4741c3805f7e +2024-09-11 09:10:41.782028 2024-09-11 09:10:41.782039 comef 10115 R rec 91591d49-98ea-42df-8c73-351c9cff46f0 +2024-09-11 09:10:41.856235 2024-09-11 09:10:41.856245 comef 10116 R rec ae3f97e0-647d-4f57-8c87-d5bf11aa70fa +2024-09-11 09:10:41.91763 2024-09-11 09:10:41.917634 comef 10117 R rec 47bd6d49-55ae-441a-8721-c909488acb97 +2024-09-11 09:10:41.996818 2024-09-11 09:10:41.996829 comef 10118 R rec 960a6334-bfa5-415a-8e23-00288a2f1442 +2024-09-11 09:10:42.063666 2024-09-11 09:10:42.06367 comef 10119 R rec 13bbb600-9fa3-45c7-bcb7-37d86793e8ba +2024-09-11 09:10:42.129985 2024-09-11 09:10:42.129994 comef 10120 R rec 15eb480a-726b-4c6f-b09b-c94947417251 +2024-09-11 09:10:42.192628 2024-09-11 09:10:42.192632 comef 10121 R rec dc3f81e4-dead-45cf-8921-59637b35e46f +2024-09-11 09:10:42.239718 2024-09-11 09:10:42.239722 comef 10122 R rec 363cb2d4-d617-4142-b474-90fe5badb71f +2024-09-11 09:10:42.296053 2024-09-11 09:10:42.296063 comef 10123 R rec 29b32588-f340-40af-bb57-c8647bc9ae74 +2024-09-11 09:10:42.360877 2024-09-11 09:10:42.360883 comef 10124 R rec 64d23206-4981-485c-8857-02daf181f0c0 +2024-09-11 09:10:42.41026 2024-09-11 09:10:42.410265 comef 10125 R rec 88723f0b-67f0-4aac-a2f2-7afb5ed4c926 +2024-09-11 09:10:42.465596 2024-09-11 09:10:42.4656 comef 10126 R rec 2cf93bda-b2f3-4ef5-a70a-061d8d27808c +2024-09-11 09:10:42.518806 2024-09-11 09:10:42.51881 comef 10127 R rec b393a2e1-8660-427c-84fe-136dc5adceb2 +2024-09-11 09:10:42.570932 2024-09-11 09:10:42.570937 comef 10128 R rec 44e07104-1f11-4c77-aebc-c10251ab1398 +2024-09-11 09:10:42.635677 2024-09-11 09:10:42.635687 comef 10129 R rec 098e16bb-27d1-43da-9052-65b8d08bfd5b +2024-09-11 09:10:42.703346 2024-09-11 09:10:42.703351 comef 10130 R rec 2dbb9d19-5421-4375-a559-6a0a348835a3 +2024-09-11 09:10:42.761202 2024-09-11 09:10:42.761212 comef 10131 R rec beaede31-6530-43df-99a5-cf7cb59a1064 +2024-09-11 09:10:42.822411 2024-09-11 09:10:42.822416 comef 10132 R rec 3db613e9-899d-4c81-a7ac-a8fe79279dd8 +2024-09-11 09:10:42.887289 2024-09-11 09:10:42.887298 comef 10133 R rec ee2b6de8-db91-4a38-b93e-8d786beb55be +2024-09-11 09:10:42.955963 2024-09-11 09:10:42.955973 comef 10134 R rec 78d22531-4a1a-4970-84f1-d2535c5e21b5 +2024-09-11 09:10:43.034981 2024-09-11 09:10:43.034991 comef 10135 R rec fbca593a-0e68-4b1b-b098-7e46bfcd1d7f +2024-09-11 09:10:43.084551 2024-09-11 09:10:43.084556 comef 10136 R rec 3f7853fb-a8c5-4b9c-83fc-cd72f4c04281 +2024-09-11 09:10:43.144807 2024-09-11 09:10:43.144817 comef 10137 R rec dcea1dd4-ddc9-4786-b2f0-244e0e8a8529 +2024-09-11 09:10:43.217557 2024-09-11 09:10:43.217561 comef 10138 R rec d40bf4b7-8859-4501-85ed-7733446db67b +2024-09-11 09:10:43.28264 2024-09-11 09:10:43.282652 comef 10139 R rec 7c3716cd-338d-4c81-b87e-f6bcba940e4a +2024-09-11 09:10:43.362445 2024-09-11 09:10:43.362456 comef 10140 R rec 72f382a0-a2be-4db4-958e-3084aaa1a1d6 +2024-09-11 09:10:43.432732 2024-09-11 09:10:43.432737 comef 10141 R rec 7b2f04cd-f683-4a04-a58b-d2b87f4dc925 +2024-09-11 09:10:43.500738 2024-09-11 09:10:43.500743 comef 10142 R rec bcd23461-5ba6-4e8a-968b-9a07732dbbc4 +2024-09-11 09:10:43.559426 2024-09-11 09:10:43.559431 comef 10143 R rec 79957613-2412-41cc-9e07-16daf507d653 +2024-09-11 09:10:43.620417 2024-09-11 09:10:43.620427 comef 10144 R rec 09cafa15-ac34-44b9-a3a0-48172759e345 +2024-09-11 09:10:43.69339 2024-09-11 09:10:43.693401 comef 10145 R rec b56d9ac3-f3ae-4a57-b990-c6ccf3855c78 +2024-09-11 09:10:43.758041 2024-09-11 09:10:43.758051 comef 10146 R rec d2eeaf44-e579-4645-adb7-ac012b0c97ca +2024-09-11 09:10:43.828384 2024-09-11 09:10:43.828394 comef 10147 R rec 3d717162-ce57-4085-977c-5b98d93fa9d3 +2024-09-11 09:10:43.903353 2024-09-11 09:10:43.903358 comef 10148 R rec 7e4bc9fe-8378-461a-834b-2db3f93b03d1 +2024-09-11 09:10:43.976628 2024-09-11 09:10:43.976639 comef 10149 R rec 40af0a54-39d4-4291-b4fb-0bc656d457c1 +2024-09-11 09:10:44.045927 2024-09-11 09:10:44.045933 comef 10150 R rec 0749e277-b885-495d-b77e-cd287b1dc65c +2024-09-11 09:10:44.094037 2024-09-11 09:10:44.094041 comef 10151 R rec d9196bbc-8228-4e53-8500-f7fbde5f82d3 +2024-09-11 09:10:44.148505 2024-09-11 09:10:44.148516 comef 10152 R rec 4341425e-4d48-479a-b695-04d0b7a0f6b3 +2024-09-11 09:10:44.216544 2024-09-11 09:10:44.216548 comef 10153 R rec 9109b67b-1e2c-4436-9309-87b3c13384e3 +2024-09-11 09:10:44.286593 2024-09-11 09:10:44.286603 comef 10154 R rec e218a465-cbc1-4ef4-9678-46bb3f0d64c4 +2024-09-11 09:10:44.368018 2024-09-11 09:10:44.368028 comef 10155 R rec 14e34c2d-4bc2-41f5-829f-27846b424c7b +2024-09-11 09:10:44.436312 2024-09-11 09:10:44.436321 comef 10156 R rec 160c9c56-35e0-4178-a27a-d3385ccbba80 +2024-09-11 09:10:44.516616 2024-09-11 09:10:44.516621 comef 10157 R rec db12ea61-9e7e-4c4d-978f-a61605ed696b +2024-09-11 09:10:44.57812 2024-09-11 09:10:44.578124 comef 10158 R rec 7800aa6a-aca6-4fc4-a33d-40fc0c542101 +2024-09-11 09:10:44.654557 2024-09-11 09:10:44.654567 comef 10159 R rec ce917f66-2962-4ac6-bbe1-0bf7c9d03d7d +2024-09-11 09:10:44.719402 2024-09-11 09:10:44.719406 comef 10160 R rec 1cf97328-a975-4a9b-af70-f3ed055c3086 +2024-09-11 09:10:44.777404 2024-09-11 09:10:44.777414 comef 10161 R rec 00bc063e-b5b1-4977-a502-43d1b311a4ae +2024-09-11 09:10:44.850621 2024-09-11 09:10:44.850631 comef 10162 R rec b69bfdac-5873-4c8b-951b-ac5b87dab3de +2024-09-11 09:10:44.920253 2024-09-11 09:10:44.920263 comef 10163 R rec 541a4d68-7a02-4ec4-bdb8-64094385dcd2 +2024-09-11 09:10:44.989172 2024-09-11 09:10:44.989176 comef 10164 R rec 80828b2a-ba7c-4197-91c7-d1631f53ee7a +2024-09-11 09:10:45.053034 2024-09-11 09:10:45.053038 comef 10165 R rec e8710945-3a4b-42ed-9b53-8ee76ac6844e +2024-09-11 09:10:45.108479 2024-09-11 09:10:45.108484 comef 10166 R rec 3d803da3-ecc3-40a1-b62e-f5f113fe99f4 +2024-09-11 09:10:45.163094 2024-09-11 09:10:45.163098 comef 10167 R rec d81e175c-b32c-4097-8028-3aa6171866c4 +2024-09-11 09:10:45.221091 2024-09-11 09:10:45.221095 comef 10168 R rec b7f02078-bcc9-4e49-a5db-af6647ac454e +2024-09-11 09:10:45.289612 2024-09-11 09:10:45.289617 comef 10169 R rec 823387a9-5697-4ed7-8571-85dcf244d0d0 +2024-09-11 09:10:45.366685 2024-09-11 09:10:45.36669 comef 10170 R rec 7aafa5af-2759-46fd-9830-5cb8627337e9 +2024-09-11 09:10:45.436767 2024-09-11 09:10:45.436772 comef 10171 R rec d1d03aeb-90bf-4d53-aa3b-931e431e80b9 +2024-09-11 09:10:45.495626 2024-09-11 09:10:45.49563 comef 10172 R rec 89e71d8e-03d3-4dcd-a663-0dbe3c12b546 +2024-09-11 09:10:45.554973 2024-09-11 09:10:45.554977 comef 10173 R rec 0588c83e-45c3-4e1f-841f-583a675a91c2 +2024-09-11 09:10:45.603202 2024-09-11 09:10:45.603206 comef 10174 R rec 189d3bde-623b-4f70-8827-d63b26779256 +2024-09-11 09:10:45.669012 2024-09-11 09:10:45.669023 comef 10175 R rec d7768d17-e986-4884-8391-b74ba1665c12 +2024-09-11 09:10:45.727804 2024-09-11 09:10:45.727809 comef 10176 R rec 7972a0db-597e-4e2d-8fa8-13ba1bac5bf2 +2024-09-11 09:10:45.787491 2024-09-11 09:10:45.7875 comef 10177 R rec 7b4c0833-6be7-4f92-b922-e035c37baa0a +2024-09-11 09:10:45.863369 2024-09-11 09:10:45.863373 comef 10178 R rec b75d7210-c99c-4208-b4ac-9de67770e8b5 +2024-09-11 09:10:45.924627 2024-09-11 09:10:45.924632 comef 10179 R rec e56acbf1-b755-4360-b8c1-af5658366e44 +2024-09-11 09:10:45.993032 2024-09-11 09:10:45.993037 comef 10180 R rec c376960f-d30d-4c89-bd4a-10e360924d9f +2024-09-11 09:10:46.042552 2024-09-11 09:10:46.042558 comef 10181 R rec 382dae94-39fc-4e53-a3e1-eff90153cb86 +2024-09-11 09:10:46.092182 2024-09-11 09:10:46.092187 comef 10182 R rec bb7a7680-b6be-4060-9f26-420d0855a9ed +2024-09-11 09:10:46.142733 2024-09-11 09:10:46.142737 comef 10183 R rec dd7da58b-a28a-4f99-a058-415e8269a52c +2024-09-11 09:10:46.238633 2024-09-11 09:10:46.238643 comef 10184 R rec 4b78b4e7-64bf-47b6-8db6-eff0ea739ba2 +2024-09-11 09:10:46.311683 2024-09-11 09:10:46.311689 comef 10185 R rec f97edccb-668a-49f5-b21d-45dd65149eb0 +2024-09-11 09:10:46.378118 2024-09-11 09:10:46.378129 comef 10186 R rec 94811b97-ed79-4092-a81e-06971a4c5fb5 +2024-09-11 09:10:46.450249 2024-09-11 09:10:46.450259 comef 10187 R rec bbfe669f-2100-46fa-8e5b-376fd1f68f6b +2024-09-11 09:10:46.526296 2024-09-11 09:10:46.526308 comef 10188 R rec 5f1664de-6923-46f6-b1d4-d5728a38e591 +2024-09-11 09:10:46.583166 2024-09-11 09:10:46.58317 comef 10189 R rec 6cf211d8-ddf8-4824-aa39-7ed91520e878 +2024-09-11 09:10:46.646114 2024-09-11 09:10:46.646121 comef 10190 R rec d9699754-6402-4663-8a8b-66ff3d29d3c3 +2024-09-11 09:10:46.698465 2024-09-11 09:10:46.698469 comef 10191 R rec c6d601ba-1117-4c85-8fc4-40d483c50000 +2024-09-11 09:10:46.74724 2024-09-11 09:10:46.747245 comef 10192 R rec 08cbef68-88e0-4366-8262-cc3f1f64d4b0 +2024-09-11 09:10:46.794902 2024-09-11 09:10:46.794907 comef 10193 R rec e6c53969-d344-454e-bec1-60339d71406c +2024-09-11 09:10:46.844083 2024-09-11 09:10:46.844087 comef 10194 R rec 9cba4243-18fc-4e8e-ba02-d17b6295894f +2024-09-11 09:10:46.899635 2024-09-11 09:10:46.89964 comef 10195 R rec 03847d43-a171-4b81-a2e2-40c89d0e4987 +2024-09-11 09:10:46.950371 2024-09-11 09:10:46.950375 comef 10196 R rec 31b6deb2-dac5-4ecb-9a07-64a274334bb4 +2024-09-11 09:10:46.999136 2024-09-11 09:10:46.999141 comef 10197 R rec b4e1450f-6923-4c1b-8071-a66026a530f8 +2024-09-11 09:10:47.052128 2024-09-11 09:10:47.052132 comef 10198 R rec efa9ab24-98bd-457f-9035-ec335291c9b2 +2024-09-11 09:10:47.104041 2024-09-11 09:10:47.104045 comef 10199 R rec 31a03ce4-db72-432e-9e76-0e5d73b1d3f8 +2024-09-11 09:10:47.154996 2024-09-11 09:10:47.155 comef 10200 R rec 82b20169-8d89-4700-93d1-2e10805320f3 +2024-09-11 09:10:47.214195 2024-09-11 09:10:47.214201 comef 10201 R rec d5058f45-b1d7-474b-bf98-09018ff2622b +2024-09-11 09:10:47.2694 2024-09-11 09:10:47.269404 comef 10202 R rec 1176c806-35f6-4cb5-a21b-4c0ef0978edc +2024-09-11 09:10:47.32386 2024-09-11 09:10:47.323864 comef 10203 R rec a418e3ec-6623-42e8-b35e-279ea7ae58b5 +2024-09-11 09:10:47.389778 2024-09-11 09:10:47.38979 comef 10204 R rec e2958162-6a85-4880-adfa-8a0b8178985f +2024-09-11 09:10:47.472197 2024-09-11 09:10:47.472207 comef 10205 R rec abe6620a-7bee-4284-9da4-7c4e5daf987c +2024-09-11 09:10:47.538494 2024-09-11 09:10:47.5385 comef 10206 R rec 27d61335-9b03-4561-823c-0dac8e0d09fc +2024-09-11 09:10:47.600132 2024-09-11 09:10:47.600142 comef 10207 R rec 48659afa-d79c-4054-8a06-808f64e7ed04 +2024-09-11 09:10:47.671934 2024-09-11 09:10:47.671945 comef 10208 R rec 8d9d4463-c36a-4697-8e20-f14452aa9faf +2024-09-11 09:10:47.741068 2024-09-11 09:10:47.741073 comef 10209 R rec 1d9f905d-de38-4a5f-8c91-a7ebcca0e91a +2024-09-11 09:10:47.809598 2024-09-11 09:10:47.809609 comef 10210 R rec 1645f5eb-5b2c-4322-af32-20722a4a2e1d +2024-09-11 09:10:47.874448 2024-09-11 09:10:47.874453 comef 10211 R rec b8c0ad1c-560d-4bbb-a7f4-e93912f509ff +2024-09-11 09:10:47.943925 2024-09-11 09:10:47.943935 comef 10212 R rec 37a16c04-cfc3-4b70-8611-fa0ee5c69a61 +2024-09-11 09:10:48.020159 2024-09-11 09:10:48.020165 comef 10213 R rec 0f7d3bfb-c226-414e-91ba-982277437c0e +2024-09-11 09:10:48.075399 2024-09-11 09:10:48.075405 comef 10214 R rec ab3992c1-0d27-408d-a6c3-bcdbe02cbd9b +2024-09-11 09:10:48.139827 2024-09-11 09:10:48.139836 comef 10215 R rec 18ededfa-b1c2-4f17-af4d-37acce3acd38 +2024-09-11 09:10:48.214751 2024-09-11 09:10:48.214758 comef 10216 R rec 4d9acf18-8bdc-4163-ad60-0d1eea2841a3 diff --git a/data/corero.json b/data/corero.json index 0a495cf8..171a6623 100644 --- a/data/corero.json +++ b/data/corero.json @@ -1,6 +1,6 @@ [ { - "md5": "72ce1a8a1ea44371188238b98ac50700", + "md5": "7499cecff87a94dfffd2ab9613a5376c", "pid": "A009955971", "note": [ { @@ -43,7 +43,7 @@ "authorized_access_point": "R\u00e9unification allemande (Allemagne ; 1989-1990)" }, { - "md5": "58a81d3790eb6b7bb4928230e560c424", + "md5": "8154031ebc90f010de327cd277b1efa2", "pid": "A010077990", "note": [ { @@ -83,7 +83,7 @@ "authorized_access_point": "Sultanat mamelouk (\u00c9gypte ; 1250-1517)" }, { - "md5": "3e84ad8534e6d1ac0fd811299c6c1d20", + "md5": "dc8a187aad354dd8e1cc87d26ece9c48", "pid": "A021001001", "note": [ { @@ -182,7 +182,7 @@ "authorized_access_point": "Abdomen" }, { - "md5": "103800af34daf3f8e03ad070ab49c74d", + "md5": "bc01c4b30f8938f9001da324dc6c40b9", "pid": "A021001003", "note": [ { @@ -267,7 +267,7 @@ "authorized_access_point": "Accumulateurs" }, { - "md5": "83a8357c60e15698add14d61a2d58214", + "md5": "b75e4f9374f8aafc9be2546ed001c5c3", "pid": "A021001004", "note": [ { @@ -343,7 +343,7 @@ "authorized_access_point": "Actes de langage" }, { - "md5": "906eda45c98ace478dbb675cc428f3cb", + "md5": "7042fe2f587bd4d1d8ce42e6b788c307", "pid": "A021001005", "note": [ { @@ -403,7 +403,7 @@ "authorized_access_point": "Acteurs de cin\u00e9ma" }, { - "md5": "eb4a5629cc6d7ef8ab51f72038c3afc7", + "md5": "98a3a52f7c01056f26a69e32c5ce1c21", "pid": "A021001006", "note": [ { @@ -454,7 +454,7 @@ "authorized_access_point": "Activit\u00e9s d'\u00e9veil" }, { - "md5": "b74bb3a8e34c0dedabf1589d8882b0a7", + "md5": "a9fffa78ca6d434618c49df7775bffdb", "pid": "A021001007", "note": [ { @@ -538,7 +538,7 @@ "authorized_access_point": "Actrices" }, { - "md5": "85eae4e1d5f9d3bf7e301ec8ca193a9f", + "md5": "1603cc1b5fd6dac637d5de4051371dbc", "pid": "A021001008", "note": [ { @@ -631,7 +631,7 @@ "authorized_access_point": "Adh\u00e9sifs" }, { - "md5": "d39adaaf562315d7963dc40862f23f52", + "md5": "b6ad2168e9dc96c85a90cc9d251468e1", "pid": "A021001009", "note": [ { @@ -710,7 +710,7 @@ "authorized_access_point": "Administration publique" }, { - "md5": "d630b5d0010b6ab7ff306b998e0d6ef2", + "md5": "e60b8d98f2d58c6e178521fe6a3728ba", "pid": "A021001012", "note": [ { @@ -840,7 +840,7 @@ "authorized_access_point": "A\u00e9rodynamique" }, { - "md5": "3758dfe5fae5d0c040079837bcb7bc58", + "md5": "d4469af8a3dcf0d7a7309a35a29b3030", "pid": "A021001013", "type": "bf:Topic", "broader": [ @@ -913,7 +913,7 @@ "authorized_access_point": "A\u00e9rodynamique supersonique" }, { - "md5": "236c3365b024f8d3a214c9382aa3f320", + "md5": "dc73dc25e84bb521a6ec045ee6f47f27", "pid": "A021001014", "type": "bf:Topic", "related": [ @@ -967,7 +967,7 @@ "authorized_access_point": "A\u00e9rodynamique transsonique" }, { - "md5": "a2b3df5e864ad0b81a8b10234f977640", + "md5": "077b66f5e8adafb72e75a2e0d27275e6", "pid": "A021001016", "note": [ { @@ -1033,7 +1033,7 @@ "authorized_access_point": "A\u00e9roglisseurs" }, { - "md5": "7742d9856bb43c6bee42731f758c7392", + "md5": "01b12355ab28abd70f56a7597cd10862", "pid": "A021001017", "note": [ { @@ -1104,7 +1104,7 @@ "authorized_access_point": "Agneau (viande)" }, { - "md5": "d210dd7a3e9e25b79779919f1f4c6a6d", + "md5": "fbf522a6df136927c84919041234d292", "pid": "A021001018", "note": [ { @@ -1187,7 +1187,7 @@ "authorized_access_point": "Agressivit\u00e9" }, { - "md5": "1a3b76cc8e4497b7cefed3a30f602062", + "md5": "b09a60157226bac0551cd493eba55aee", "pid": "A021001021", "note": [ { @@ -1272,7 +1272,7 @@ "authorized_access_point": "Agriculture biologique" }, { - "md5": "17656ac2344a2f08e9ed42b8da4d8539", + "md5": "f231f944e9bb4f2d335bc28c791688c3", "pid": "A021001023", "note": [ { @@ -1351,7 +1351,7 @@ "authorized_access_point": "Airbus (avions)" }, { - "md5": "ca479ea416e3e0b025f68551b06fb42c", + "md5": "351c2ec1a21efd8ec4a442cfa258e91c", "pid": "A021001024", "note": [ { @@ -1425,7 +1425,7 @@ "authorized_access_point": "Alchimie" }, { - "md5": "916430e62e5148a505b33fd7a519aa38", + "md5": "008723e60d178f5b87cc36cdff4b626f", "pid": "A021001025", "note": [ { diff --git a/data/corero_metadata.csv b/data/corero_metadata.csv index 283419f4..6e0edcea 100644 --- a/data/corero_metadata.csv +++ b/data/corero_metadata.csv @@ -1,20 +1,20 @@ -2023-07-08 08:26:29.391148 2023-07-08 08:26:29.391159 87a1eee0-67a9-4833-b927-3ecbd55e1761 {"md5": "72ce1a8a1ea44371188238b98ac50700", "pid": "A009955971", "note": [{"label": ["Notice RERO transformée en notice RAMEAU"], "noteType": "nonPublic"}, {"label": ["AR"], "noteType": "REROtreatment"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_rero/rero-concept-v0.0.1.json", "identifiedBy": [{"type": "bf:Local", "value": "A009955971", "source": "RERO"}, {"type": "bf:Local", "value": "FRBNF122237960", "source": "BNF"}], "classification": [{"name": "rero", "type": "bf:ClassificationDdc", "classificationPortion": "999"}], "variant_access_point": ["Question allemande", "Unification allemande (Allemagne ; 1989-1990)"], "authorized_access_point": "Réunification allemande (Allemagne ; 1989-1990)"} 1 -2023-07-08 08:26:29.497125 2023-07-08 08:26:29.497129 086eb5b6-6235-41ff-8250-036d782f97b2 {"md5": "58a81d3790eb6b7bb4928230e560c424", "pid": "A010077990", "note": [{"label": ["Nom commun RERO", "Inversion d'une notice de nom géographique"], "noteType": "nonPublic"}, {"label": ["AR"], "noteType": "REROtreatment"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_rero/rero-concept-v0.0.1.json", "identifiedBy": [{"type": "bf:Local", "value": "A010077990", "source": "RERO"}, {"type": "bf:Local", "value": "FRBNF119366571", "source": "BNF"}], "classification": [{"name": "rero", "type": "bf:ClassificationDdc", "classificationPortion": "999"}], "authorized_access_point": "Sultanat mamelouk (Égypte ; 1250-1517)"} 1 -2023-07-08 08:26:29.557 2023-07-08 08:26:29.557003 e1f88cda-7900-486e-a54d-8b9e18a181aa {"md5": "3e84ad8534e6d1ac0fd811299c6c1d20", "pid": "A021001001", "note": [{"label": ["Grand dict. encyclopédique Larousse (art. : Abdomen ; Ventre)", "Petit dict. d'anatomie, d'embryologie et d'histologie / P. Kamina, 1990 (art. : Abdomen ; Cavité abdominale)"], "noteType": "dataSource"}, {"label": ["NC32d, NC30"], "noteType": "REROtreatment"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_rero/rero-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tronc (anatomie)"}], "related": [{"authorized_access_point": "Aine"}], "narrower": [{"authorized_access_point": "Espace rétropéritonéal"}, {"authorized_access_point": "Fascia transversalis"}, {"authorized_access_point": "Ligament ombilical médian"}, {"authorized_access_point": "Mamelle"}, {"authorized_access_point": "Muscles de l'abdomen"}, {"authorized_access_point": "Paroi abdominale"}, {"authorized_access_point": "Péritoine"}, {"authorized_access_point": "Région épigastrique"}], "closeMatch": [{"source": "MeSH", "authorized_access_point": "Abdomen"}], "identifiedBy": [{"type": "bf:Local", "value": "A021001001", "source": "RERO"}, {"type": "bf:Local", "value": "FRBNF119308148", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11930814c"}], "classification": [{"name": "Biologie", "type": "bf:ClassificationDdc", "classificationPortion": "570"}, {"name": "Médecine", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Radiographie abdominale -> Utiliser une combinaison de descripteurs", "Échographie abdominale -> Utiliser une combinaison de descripteurs", "Chirurgie abdominale -> Utiliser une combinaison de descripteurs", "Laparotomie -> Utiliser une combinaison de descripteurs", "Cavité abdominale", "Ventre"], "authorized_access_point": "Abdomen"} 1 -2023-07-08 08:26:29.615468 2023-07-08 08:26:29.615474 4aeb897c-9946-4b41-b729-7cebceaebe1f {"md5": "103800af34daf3f8e03ad070ab49c74d", "pid": "A021001003", "note": [{"label": ["NC32c, NC32d, NC30"], "noteType": "REROtreatment"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_rero/rero-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Alimentations (électricité)"}], "related": [{"authorized_access_point": "Chargeurs de batteries"}, {"authorized_access_point": "Piles électriques"}], "narrower": [{"authorized_access_point": "Accumulateurs au lithium"}, {"authorized_access_point": "Accumulateurs au nickel-cadmium"}, {"authorized_access_point": "Accumulateurs au nickel-hydrogène"}, {"authorized_access_point": "Accumulateurs au nickel-hydrure métallique"}, {"authorized_access_point": "Accumulateurs au plomb"}], "closeMatch": [{"source": "LCSH", "authorized_access_point": "Storage batteries"}], "identifiedBy": [{"type": "bf:Local", "value": "A021001003", "source": "RERO"}, {"type": "bf:Local", "value": "FRBNF119308187", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11930818r"}], "classification": [{"name": "Physique", "type": "bf:ClassificationDdc", "classificationPortion": "530"}, {"name": "Technique", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["Recyclage des accumulateurs -> Utiliser une combinaison de descripteurs", "Accumulateurs électriques", "Accumulateurs électrochimiques", "Batteries d'accumulateurs", "Générateurs secondaires (électricité)"], "authorized_access_point": "Accumulateurs"} 1 -2023-07-08 08:26:29.689166 2023-07-08 08:26:29.68917 65e27cfb-1747-414b-a580-85965c1eb4a8 {"md5": "83a8357c60e15698add14d61a2d58214", "pid": "A021001004", "note": [{"label": ["Sens et expression : études de théorie des actes de langage / J. R. Searle, 1989"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_rero/rero-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Philosophie du langage"}, {"authorized_access_point": "Pragmatique"}], "related": [{"authorized_access_point": "Discours (linguistique)"}, {"authorized_access_point": "Énonciation (linguistique)"}, {"authorized_access_point": "Performatif"}], "closeMatch": [{"source": "LCSH", "authorized_access_point": "Speech acts (Linguistics)"}], "identifiedBy": [{"type": "bf:Local", "value": "A021001004", "source": "RERO"}, {"type": "bf:Local", "value": "FRBNF119308205", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119308209"}], "classification": [{"name": "Philosophie", "type": "bf:ClassificationDdc", "classificationPortion": "100"}, {"name": "Linguistique générale", "type": "bf:ClassificationDdc", "classificationPortion": "401"}], "variant_access_point": ["Acte (linguistique)", "Actes (linguistique)", "Actes de discours", "Actes de parole", "Discours, Actes de", "Langage, Actes de", "Parole, Actes de"], "authorized_access_point": "Actes de langage"} 1 -2023-07-08 08:26:29.763827 2023-07-08 08:26:29.763841 4ed63f0a-7894-489f-a6d5-ef24917aefdf {"md5": "906eda45c98ace478dbb675cc428f3cb", "pid": "A021001005", "note": [{"label": ["Dict. des acteurs de cinéma / C. Dureau, 2006"], "noteType": "dataSource"}, {"label": ["NC32e, NC32d"], "noteType": "REROtreatment"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_rero/rero-concept-v0.0.1.json", "closeMatch": [{"source": "LCSH", "authorized_access_point": "Motion picture actors and actresses"}], "identifiedBy": [{"type": "bf:Local", "value": "A021001005", "source": "RERO"}, {"type": "bf:Local", "value": "FRBNF119308212", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11930821n"}], "classification": [{"name": "Groupes sociaux", "type": "bf:ClassificationDdc", "classificationPortion": "305"}, {"name": "Audiovisuel", "type": "bf:ClassificationDdc", "classificationPortion": "791"}], "variant_access_point": ["Cinéma - Acteurs", "Étoiles de cinéma", "Stars", "Vedettes de cinéma"], "authorized_access_point": "Acteurs de cinéma"} 1 -2023-07-08 08:26:29.83961 2023-07-08 08:26:29.83962 187426c1-6927-489f-8c2a-ecbbd5befb26 {"md5": "eb4a5629cc6d7ef8ab51f72038c3afc7", "pid": "A021001006", "note": [{"label": ["Vocabulaire de l'éducation / G. Mialaret, 1979"], "noteType": "dataSource"}, {"label": ["LCSH, 1995-03"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_rero/rero-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Enseignement primaire"}], "related": [{"authorized_access_point": "Leçons de choses"}], "identifiedBy": [{"type": "bf:Local", "value": "A021001006", "source": "RERO"}, {"type": "bf:Local", "value": "FRBNF11930822X", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119308220"}], "variant_access_point": ["Activités d'éveil (enseignement primaire)", "Disciplines d'éveil", "Éveil, Activités d'"], "authorized_access_point": "Activités d'éveil"} 1 -2023-07-08 08:26:29.921557 2023-07-08 08:26:29.921568 9442c5fe-0bb5-43f2-ae31-b306f5cc6fac {"md5": "b74bb3a8e34c0dedabf1589d8882b0a7", "pid": "A021001007", "note": [{"label": ["Nouveau petit Robert 1993 (art. : Acteur)", "Femmes dramaturges et actrices en Angleterre : 1660-1706 / M. Adam, 1993"], "noteType": "dataSource"}, {"label": ["Voir aussi les vedettes du type Actrices [adjectif de nationalité ou géographique]"], "noteType": "seeAlsoReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_rero/rero-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Acteurs"}, {"authorized_access_point": "Femmes artistes interprètes"}], "narrower": [{"authorized_access_point": "Actrices de cinéma"}, {"authorized_access_point": "Actrices de télévision"}, {"authorized_access_point": "Actrices travesties"}], "closeMatch": [{"source": "LCSH", "authorized_access_point": "Actresses"}], "identifiedBy": [{"type": "bf:Local", "value": "A021001007", "source": "RERO"}, {"type": "bf:Local", "value": "FRBNF119308237", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11930823b"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Groupes sociaux", "type": "bf:ClassificationDdc", "classificationPortion": "305"}, {"name": "Arts du spectacle", "type": "bf:ClassificationDdc", "classificationPortion": "790"}], "variant_access_point": ["Actrices de théâtre", "Artistes dramatiques", "Comédiennes"], "authorized_access_point": "Actrices"} 1 -2023-07-08 08:26:30.005174 2023-07-08 08:26:30.005187 d15b76d5-9af2-406b-b075-aebddc91f177 {"md5": "85eae4e1d5f9d3bf7e301ec8ca193a9f", "pid": "A021001008", "note": [{"label": ["NC32e, NC32f, NC32d"], "noteType": "REROtreatment"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_rero/rero-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Liants"}], "related": [{"authorized_access_point": "Assemblages collés"}, {"authorized_access_point": "Colles"}, {"authorized_access_point": "Époxydes"}, {"authorized_access_point": "Mucilages"}, {"authorized_access_point": "Produits d'étanchéité"}], "narrower": [{"authorized_access_point": "Adhésifs sensibles à la pression"}, {"authorized_access_point": "Autocollants"}, {"authorized_access_point": "Cyanoacrylates"}, {"authorized_access_point": "Gomme arabique"}, {"authorized_access_point": "Mortier"}, {"authorized_access_point": "Ruban adhésif"}], "closeMatch": [{"source": "LCSH", "authorized_access_point": "Adhesives"}], "identifiedBy": [{"type": "bf:Local", "value": "A021001008", "source": "RERO"}, {"type": "bf:Local", "value": "FRBNF119308269", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11930826c"}], "classification": [{"name": "Chimie", "type": "bf:ClassificationDdc", "classificationPortion": "540"}, {"name": "Technique", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["Agglutinants"], "authorized_access_point": "Adhésifs"} 1 -2023-07-08 08:26:30.098026 2023-07-08 08:26:30.098042 d4932827-8719-4096-a39d-48ac4c4454b5 {"md5": "d39adaaf562315d7963dc40862f23f52", "pid": "A021001009", "note": [{"label": ["NC32c, NC32a, NC32e, NC32d"], "noteType": "REROtreatment"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_rero/rero-concept-v0.0.1.json", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Administration publique"}], "identifiedBy": [{"type": "bf:Local", "value": "A021001009", "source": "RERO"}, {"type": "bf:Local", "value": "FRBNF119308276", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11930827q"}], "classification": [{"name": "Administration publique", "type": "bf:ClassificationDdc", "classificationPortion": "350"}], "variant_access_point": ["Management public -> Utiliser une combinaison de descripteurs", "New public management -> Utiliser une combinaison de descripteurs", "NMP -> Utiliser une combinaison de descripteurs", "Nouveau management public -> Utiliser une combinaison de descripteurs", "NPM -> Utiliser une combinaison de descripteurs", "Modernisation de l'administration -> Utiliser une combinaison de descripteurs", "Réforme administrative -> Utiliser une combinaison de descripteurs", "Réforme de l'administration -> Utiliser une combinaison de descripteurs", "Réforme de l'État -> Utiliser une combinaison de descripteurs", "Réorganisation administrative -> Utiliser une combinaison de descripteurs", "Restructuration administrative -> Utiliser une combinaison de descripteurs", "Révision générale des politiques publiques -> Utiliser une combinaison de descripteurs", "RGPP -> Utiliser une combinaison de descripteurs", "Décision administrative -> Utiliser une combinaison de descripteurs", "Décision gouvernementale -> Utiliser une combinaison de descripteurs", "Décision publique -> Utiliser une combinaison de descripteurs", "Décisions publiques -> Utiliser une combinaison de descripteurs", "Inspection administrative -> Utiliser une combinaison de descripteurs", "Inspection générale des services administratifs -> Utiliser une combinaison de descripteurs", "Inspections générales de l'administration -> Utiliser une combinaison de descripteurs", "Histoire administrative -> Utiliser une combinaison de descripteurs", "Action administrative", "Administration de l'État", "Administration publique (science)", "Agences administratives", "Gestion publique", "Institutions administratives", "Organisation administrative", "Organismes administratifs", "Régime administratif", "Science administrative", "Service public", "Services administratifs", "Structures administratives"], "authorized_access_point": "Administration publique"} 1 -2023-07-08 08:26:30.184175 2023-07-08 08:26:30.184188 f91cf8d5-b31a-4d0b-9e26-be121e36df8b {"md5": "d630b5d0010b6ab7ff306b998e0d6ef2", "pid": "A021001012", "note": [{"label": ["NC32a, NC32e, NC32d"], "noteType": "REROtreatment"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_rero/rero-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Dynamique"}, {"authorized_access_point": "Fluides, Dynamique des"}, {"authorized_access_point": "Gaz, Dynamique des"}], "related": [{"authorized_access_point": "Gaz -Écoulement"}, {"authorized_access_point": "Mach, Nombre de"}, {"authorized_access_point": "Pneumatique"}, {"authorized_access_point": "Profils aérodynamiques"}, {"authorized_access_point": "Reynolds, Nombre de"}, {"authorized_access_point": "Souffleries aérodynamiques"}, {"authorized_access_point": "Tourbillons (mécanique des fluides)"}], "narrower": [{"authorized_access_point": "Aéroacoustique"}, {"authorized_access_point": "Aéroélasticité"}, {"authorized_access_point": "Bruit aérodynamique"}, {"authorized_access_point": "Cascades (dynamique des fluides)"}, {"authorized_access_point": "Charge aérodynamique"}, {"authorized_access_point": "Couche limite"}, {"authorized_access_point": "Décollement des écoulements"}, {"authorized_access_point": "Essais en soufflerie aérodynamique"}, {"authorized_access_point": "Flottement (aérodynamique)"}, {"authorized_access_point": "Portance"}, {"authorized_access_point": "Sillage (aérodynamique)"}, {"authorized_access_point": "Traînée (aérodynamique)"}, {"authorized_access_point": "Tremblement (aérodynamique)"}], "closeMatch": [{"source": "LCSH", "authorized_access_point": "Aerodynamics"}], "identifiedBy": [{"type": "bf:Local", "value": "A021001012", "source": "RERO"}, {"type": "bf:Local", "value": "FRBNF119308301", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11930830m"}], "classification": [{"name": "Physique", "type": "bf:ClassificationDdc", "classificationPortion": "530"}, {"name": "Technique", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["Aérodynamique subsonique", "Avions - Aérodynamique", "Carénage", "Mécanique du vol", "Profilage - Aérodynamique"], "authorized_access_point": "Aérodynamique"} 1 -2023-07-08 08:26:30.263777 2023-07-08 08:26:30.26379 0b9a20a0-47b1-4862-af0a-2f44e363e79d {"md5": "3758dfe5fae5d0c040079837bcb7bc58", "pid": "A021001013", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_rero/rero-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Pression acoustique"}, {"authorized_access_point": "Vol à grande vitesse"}], "related": [{"authorized_access_point": "Avions supersoniques"}, {"authorized_access_point": "Compresseurs supersoniques"}, {"authorized_access_point": "Souffleries supersoniques"}, {"authorized_access_point": "Tuyères supersoniques"}], "narrower": [{"authorized_access_point": "Aérodynamique hypersonique"}, {"authorized_access_point": "Aérothermodynamique"}, {"authorized_access_point": "Bang sonique"}], "closeMatch": [{"source": "LCSH", "authorized_access_point": "Aerodynamics, Supersonic"}], "identifiedBy": [{"type": "bf:Local", "value": "A021001013", "source": "RERO"}, {"type": "bf:Local", "value": "FRBNF119308319", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11930831z"}], "classification": [{"name": "Physique", "type": "bf:ClassificationDdc", "classificationPortion": "530"}], "variant_access_point": ["Écoulement supersonique", "Vitesse supersonique", "Vols supersoniques, Aérodynamique des"], "authorized_access_point": "Aérodynamique supersonique"} 1 -2023-07-08 08:26:30.34757 2023-07-08 08:26:30.347582 26c0674b-0967-4264-94f9-63d9eac45c34 {"md5": "236c3365b024f8d3a214c9382aa3f320", "pid": "A021001014", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_rero/rero-concept-v0.0.1.json", "related": [{"authorized_access_point": "Aérothermodynamique"}, {"authorized_access_point": "Pression acoustique"}, {"authorized_access_point": "Souffleries transsoniques"}, {"authorized_access_point": "Vol à grande vitesse"}], "closeMatch": [{"source": "LCSH", "authorized_access_point": "Aerodynamics, Transonic"}], "identifiedBy": [{"type": "bf:Local", "value": "A021001014", "source": "RERO"}, {"type": "bf:Local", "value": "FRBNF119308326", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119308329"}], "classification": [{"name": "Physique", "type": "bf:ClassificationDdc", "classificationPortion": "530"}], "variant_access_point": ["Écoulement transsonique", "Vitesses transsoniques", "Vols transsoniques, Aérodynamique des"], "authorized_access_point": "Aérodynamique transsonique"} 1 -2023-07-08 08:26:30.430811 2023-07-08 08:26:30.43082 968c5b94-e732-404b-ad4b-a7af9ad94722 {"md5": "a2b3df5e864ad0b81a8b10234f977640", "pid": "A021001016", "note": [{"label": ["NC32e"], "noteType": "REROtreatment"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_rero/rero-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Véhicules automobiles"}], "related": [{"authorized_access_point": "Chemins de fer"}], "closeMatch": [{"source": "LCSH", "authorized_access_point": "Ground-effect machines"}], "identifiedBy": [{"type": "bf:Local", "value": "A021001016", "source": "RERO"}, {"type": "bf:Local", "value": "FRBNF119308365", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11930836p"}], "classification": [{"name": "Économie politique", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Technique", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["Aérotrains", "Hovercrafts", "Naviplanes", "Véhicules à coussin d'air", "Véhicules à effet de sol", "Véhicules sur coussin d'air"], "authorized_access_point": "Aéroglisseurs"} 1 -2023-07-08 08:26:30.523867 2023-07-08 08:26:30.523873 d6301b56-b83a-4273-ac09-d206755bb035 {"md5": "7742d9856bb43c6bee42731f758c7392", "pid": "A021001017", "note": [{"label": ["Grand Robert de la langue française, 2001 (art. : Viande)", "Larousse agricole / M. Mazoyer, 2002"], "noteType": "dataSource"}, {"label": ["NC32e"], "noteType": "REROtreatment"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_rero/rero-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Viande"}], "related": [{"authorized_access_point": "Agneaux"}], "closeMatch": [{"source": "LCSH", "authorized_access_point": "Lamb (Meat)"}], "identifiedBy": [{"type": "bf:Local", "value": "A021001017", "source": "RERO"}, {"type": "bf:Local", "value": "FRBNF119308486", "source": "BNF"}], "classification": [{"name": "Zoologie", "type": "bf:ClassificationDdc", "classificationPortion": "590"}, {"name": "Agriculture", "type": "bf:ClassificationDdc", "classificationPortion": "630"}, {"name": "Économie domestique", "type": "bf:ClassificationDdc", "classificationPortion": "640"}], "variant_access_point": ["Agneaux (viande)", "Viande d'agneau", "Viande ovine"], "authorized_access_point": "Agneau (viande)"} 1 -2023-07-08 08:26:30.610849 2023-07-08 08:26:30.61086 c107fed7-d8d4-4b0a-b934-e2b7df918f2d {"md5": "d210dd7a3e9e25b79779919f1f4c6a6d", "pid": "A021001018", "note": [{"label": ["NC32e, NC32f"], "noteType": "REROtreatment"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_rero/rero-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Caractère"}, {"authorized_access_point": "Personnalité"}], "related": [{"authorized_access_point": "Colère"}, {"authorized_access_point": "Défense (psychologie)"}, {"authorized_access_point": "Hostilité (psychologie)"}, {"authorized_access_point": "Personnalité passive-agressive"}, {"authorized_access_point": "Violence"}], "narrower": [{"authorized_access_point": "Destructivité"}, {"authorized_access_point": "Incivilités"}], "closeMatch": [{"source": "LCSH", "authorized_access_point": "Aggressiveness"}], "identifiedBy": [{"type": "bf:Local", "value": "A021001018", "source": "RERO"}, {"type": "bf:Local", "value": "FRBNF119308493", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119308491"}], "classification": [{"name": "Psychologie", "type": "bf:ClassificationDdc", "classificationPortion": "150"}], "variant_access_point": ["Agression (psychologie)", "Agressivité (psychologie)", "Caractère agressif", "Comportement agressif", "Tempérament agressif"], "authorized_access_point": "Agressivité"} 1 -2023-07-08 08:26:30.711044 2023-07-08 08:26:30.71105 d1a0dcf7-cf3f-45cc-9bda-135d50c1767b {"md5": "1a3b76cc8e4497b7cefed3a30f602062", "pid": "A021001021", "note": [{"label": ["Larousse agricole, 1981"], "noteType": "dataSource"}, {"label": ["NC32d"], "noteType": "REROtreatment"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_rero/rero-concept-v0.0.1.json", "related": [{"authorized_access_point": "Agriculture durable"}, {"authorized_access_point": "Aliments biologiques"}, {"authorized_access_point": "Biopesticides"}, {"authorized_access_point": "Élevage biologique"}], "narrower": [{"authorized_access_point": "Jardinage biologique"}, {"authorized_access_point": "Permaculture"}, {"authorized_access_point": "Viticulture biologique"}], "closeMatch": [{"source": "LCSH", "authorized_access_point": "Organic farming"}], "identifiedBy": [{"type": "bf:Local", "value": "A021001021", "source": "RERO"}, {"type": "bf:Local", "value": "FRBNF119308529", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11930852x"}], "classification": [{"name": "Agriculture", "type": "bf:ClassificationDdc", "classificationPortion": "630"}], "variant_access_point": ["Agriculture biodynamique", "Agriculture écologique", "Agriculture organique", "Agrobiologie", "Biodynamie", "Cultures biodynamiques", "Cultures biologiques", "Cultures écologiques", "Cultures organiques"], "authorized_access_point": "Agriculture biologique"} 1 -2023-07-08 08:26:30.803779 2023-07-08 08:26:30.80382 fb018f78-81dd-40db-9ae1-8a508792528a {"md5": "17656ac2344a2f08e9ed42b8da4d8539", "pid": "A021001023", "note": [{"label": ["EADS - http://www.eads.com (2005-09-09)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_rero/rero-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Avions de transport à réaction"}], "narrower": [{"authorized_access_point": "Airbus A300 (avion de transport à réaction)"}, {"authorized_access_point": "Airbus A310 (avion de transport à réaction)"}, {"authorized_access_point": "Airbus A320 (avion de transport à réaction)"}, {"authorized_access_point": "Airbus A340 (avion de transport à réaction)"}, {"authorized_access_point": "Airbus A350 (avion de transport à réaction)"}, {"authorized_access_point": "Airbus A380 (avion de transport à réaction)"}, {"authorized_access_point": "Airbus A400M Atlas (avion de transport à réaction)"}], "closeMatch": [{"source": "LCSH", "authorized_access_point": "Airbus aircraft"}], "identifiedBy": [{"type": "bf:Local", "value": "A021001023", "source": "RERO"}, {"type": "bf:Local", "value": "FRBNF119308543", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11930854m"}], "classification": [{"name": "Économie politique", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Technique", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["Airbus (avions de transport à réaction)"], "authorized_access_point": "Airbus (avions)"} 1 -2023-07-08 08:26:30.903168 2023-07-08 08:26:30.903182 0958b679-2b38-4410-a94e-b5a7916929dc {"md5": "ca479ea416e3e0b025f68551b06fb42c", "pid": "A021001024", "note": [{"label": ["Grand Larousse universel", "Dict. de l'ésotérisme / P. Riffard, 1993"], "noteType": "dataSource"}, {"label": ["NC32d"], "noteType": "REROtreatment"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_rero/rero-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ésotérisme"}], "related": [{"authorized_access_point": "Alchimistes"}], "narrower": [{"authorized_access_point": "Élixir de longue vie"}], "closeMatch": [{"source": "LCSH", "authorized_access_point": "Alchemy"}], "identifiedBy": [{"type": "bf:Local", "value": "A021001024", "source": "RERO"}, {"type": "bf:Local", "value": "FRBNF119308568", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119308569"}], "classification": [{"name": "Parapsychologie, occultisme et ésotérisme", "type": "bf:ClassificationDdc", "classificationPortion": "130"}], "variant_access_point": ["Art royal", "Chimie hermétique", "Chymie", "Métaux, Transmutation des", "Oeuf des sages", "Pierre philosophale", "Transmutation des métaux"], "authorized_access_point": "Alchimie"} 1 -2023-07-08 08:26:31.003699 2023-07-08 08:26:31.003714 c5bd42a4-3ee0-4213-8fb6-a2a2ca039dc0 {"md5": "916430e62e5148a505b33fd7a519aa38", "pid": "A021001025", "note": [{"label": ["Grand Larousse universel : alémanique, groupe de dialectes du haut-allemand", "L'aménagement linguistique dans le monde - http://www.tlfq.ulaval.ca (2009-01-05)"], "noteType": "dataSource"}, {"label": ["NC32d"], "noteType": "REROtreatment"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_rero/rero-concept-v0.0.1.json", "related": [{"authorized_access_point": "Noms géographiques alémaniques"}], "narrower": [{"authorized_access_point": "Alsacien (dialecte)"}, {"authorized_access_point": "Souabe (dialecte)"}, {"authorized_access_point": "Suisse alémanique (dialecte)"}, {"authorized_access_point": "Walser (dialecte)"}], "closeMatch": [{"source": "LCSH", "authorized_access_point": "Alemannic dialects"}], "identifiedBy": [{"type": "bf:Local", "value": "A021001025", "source": "RERO"}, {"type": "bf:Local", "value": "FRBNF119308575", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11930857n"}], "classification": [{"name": "Langues", "type": "bf:ClassificationDdc", "classificationPortion": "400"}], "variant_access_point": ["Alaman (dialecte)", "Alémanique (dialecte)", "Allémanique (dialecte)", "Bas alémanique (dialecte)", "Bas-allémanique (dialecte)", "Haut alémanique (dialecte)", "Haut-allémanique (dialecte)", "Langues alémaniques"], "authorized_access_point": "Dialectes alémaniques"} 1 +2024-09-11 09:08:05.647074 2024-09-11 09:08:05.64708 074bbb42-4541-4061-9b94-4c00883be4be {"md5": "7499cecff87a94dfffd2ab9613a5376c", "pid": "A009955971", "note": [{"label": ["Notice RERO transformée en notice RAMEAU"], "noteType": "nonPublic"}, {"label": ["AR"], "noteType": "REROtreatment"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_rero/rero-concept-v0.0.1.json", "identifiedBy": [{"type": "bf:Local", "value": "A009955971", "source": "RERO"}, {"type": "bf:Local", "value": "FRBNF122237960", "source": "BNF"}], "classification": [{"name": "rero", "type": "bf:ClassificationDdc", "classificationPortion": "999"}], "variant_access_point": ["Question allemande", "Unification allemande (Allemagne ; 1989-1990)"], "authorized_access_point": "Réunification allemande (Allemagne ; 1989-1990)"} 1 +2024-09-11 09:08:05.728893 2024-09-11 09:08:05.728898 41d24958-d34d-42ed-b671-766ae5a6e96b {"md5": "8154031ebc90f010de327cd277b1efa2", "pid": "A010077990", "note": [{"label": ["Nom commun RERO", "Inversion d'une notice de nom géographique"], "noteType": "nonPublic"}, {"label": ["AR"], "noteType": "REROtreatment"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_rero/rero-concept-v0.0.1.json", "identifiedBy": [{"type": "bf:Local", "value": "A010077990", "source": "RERO"}, {"type": "bf:Local", "value": "FRBNF119366571", "source": "BNF"}], "classification": [{"name": "rero", "type": "bf:ClassificationDdc", "classificationPortion": "999"}], "authorized_access_point": "Sultanat mamelouk (Égypte ; 1250-1517)"} 1 +2024-09-11 09:08:05.783674 2024-09-11 09:08:05.78368 ef44e72f-6b3a-450f-af23-663b97cfd812 {"md5": "dc8a187aad354dd8e1cc87d26ece9c48", "pid": "A021001001", "note": [{"label": ["Grand dict. encyclopédique Larousse (art. : Abdomen ; Ventre)", "Petit dict. d'anatomie, d'embryologie et d'histologie / P. Kamina, 1990 (art. : Abdomen ; Cavité abdominale)"], "noteType": "dataSource"}, {"label": ["NC32d, NC30"], "noteType": "REROtreatment"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_rero/rero-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Tronc (anatomie)"}], "related": [{"authorized_access_point": "Aine"}], "narrower": [{"authorized_access_point": "Espace rétropéritonéal"}, {"authorized_access_point": "Fascia transversalis"}, {"authorized_access_point": "Ligament ombilical médian"}, {"authorized_access_point": "Mamelle"}, {"authorized_access_point": "Muscles de l'abdomen"}, {"authorized_access_point": "Paroi abdominale"}, {"authorized_access_point": "Péritoine"}, {"authorized_access_point": "Région épigastrique"}], "closeMatch": [{"source": "MeSH", "authorized_access_point": "Abdomen"}], "identifiedBy": [{"type": "bf:Local", "value": "A021001001", "source": "RERO"}, {"type": "bf:Local", "value": "FRBNF119308148", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11930814c"}], "classification": [{"name": "Biologie", "type": "bf:ClassificationDdc", "classificationPortion": "570"}, {"name": "Médecine", "type": "bf:ClassificationDdc", "classificationPortion": "610"}], "variant_access_point": ["Radiographie abdominale -> Utiliser une combinaison de descripteurs", "Échographie abdominale -> Utiliser une combinaison de descripteurs", "Chirurgie abdominale -> Utiliser une combinaison de descripteurs", "Laparotomie -> Utiliser une combinaison de descripteurs", "Cavité abdominale", "Ventre"], "authorized_access_point": "Abdomen"} 1 +2024-09-11 09:08:05.837087 2024-09-11 09:08:05.837092 c9079e9f-88b3-4f85-b249-c69ac8dd9960 {"md5": "bc01c4b30f8938f9001da324dc6c40b9", "pid": "A021001003", "note": [{"label": ["NC32c, NC32d, NC30"], "noteType": "REROtreatment"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_rero/rero-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Alimentations (électricité)"}], "related": [{"authorized_access_point": "Chargeurs de batteries"}, {"authorized_access_point": "Piles électriques"}], "narrower": [{"authorized_access_point": "Accumulateurs au lithium"}, {"authorized_access_point": "Accumulateurs au nickel-cadmium"}, {"authorized_access_point": "Accumulateurs au nickel-hydrogène"}, {"authorized_access_point": "Accumulateurs au nickel-hydrure métallique"}, {"authorized_access_point": "Accumulateurs au plomb"}], "closeMatch": [{"source": "LCSH", "authorized_access_point": "Storage batteries"}], "identifiedBy": [{"type": "bf:Local", "value": "A021001003", "source": "RERO"}, {"type": "bf:Local", "value": "FRBNF119308187", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11930818r"}], "classification": [{"name": "Physique", "type": "bf:ClassificationDdc", "classificationPortion": "530"}, {"name": "Technique", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["Recyclage des accumulateurs -> Utiliser une combinaison de descripteurs", "Accumulateurs électriques", "Accumulateurs électrochimiques", "Batteries d'accumulateurs", "Générateurs secondaires (électricité)"], "authorized_access_point": "Accumulateurs"} 1 +2024-09-11 09:08:05.891018 2024-09-11 09:08:05.891023 d16777f9-2e5a-4877-bafb-738ced38ff4f {"md5": "b75e4f9374f8aafc9be2546ed001c5c3", "pid": "A021001004", "note": [{"label": ["Sens et expression : études de théorie des actes de langage / J. R. Searle, 1989"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_rero/rero-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Philosophie du langage"}, {"authorized_access_point": "Pragmatique"}], "related": [{"authorized_access_point": "Discours (linguistique)"}, {"authorized_access_point": "Énonciation (linguistique)"}, {"authorized_access_point": "Performatif"}], "closeMatch": [{"source": "LCSH", "authorized_access_point": "Speech acts (Linguistics)"}], "identifiedBy": [{"type": "bf:Local", "value": "A021001004", "source": "RERO"}, {"type": "bf:Local", "value": "FRBNF119308205", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119308209"}], "classification": [{"name": "Philosophie", "type": "bf:ClassificationDdc", "classificationPortion": "100"}, {"name": "Linguistique générale", "type": "bf:ClassificationDdc", "classificationPortion": "401"}], "variant_access_point": ["Acte (linguistique)", "Actes (linguistique)", "Actes de discours", "Actes de parole", "Discours, Actes de", "Langage, Actes de", "Parole, Actes de"], "authorized_access_point": "Actes de langage"} 1 +2024-09-11 09:08:05.943165 2024-09-11 09:08:05.943171 cbc099d5-d532-4413-8346-7780bc2234f4 {"md5": "7042fe2f587bd4d1d8ce42e6b788c307", "pid": "A021001005", "note": [{"label": ["Dict. des acteurs de cinéma / C. Dureau, 2006"], "noteType": "dataSource"}, {"label": ["NC32e, NC32d"], "noteType": "REROtreatment"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_rero/rero-concept-v0.0.1.json", "closeMatch": [{"source": "LCSH", "authorized_access_point": "Motion picture actors and actresses"}], "identifiedBy": [{"type": "bf:Local", "value": "A021001005", "source": "RERO"}, {"type": "bf:Local", "value": "FRBNF119308212", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11930821n"}], "classification": [{"name": "Groupes sociaux", "type": "bf:ClassificationDdc", "classificationPortion": "305"}, {"name": "Audiovisuel", "type": "bf:ClassificationDdc", "classificationPortion": "791"}], "variant_access_point": ["Cinéma - Acteurs", "Étoiles de cinéma", "Stars", "Vedettes de cinéma"], "authorized_access_point": "Acteurs de cinéma"} 1 +2024-09-11 09:08:05.996504 2024-09-11 09:08:05.99651 51b1ab77-90d4-472c-a6d6-e391f25a4514 {"md5": "98a3a52f7c01056f26a69e32c5ce1c21", "pid": "A021001006", "note": [{"label": ["Vocabulaire de l'éducation / G. Mialaret, 1979"], "noteType": "dataSource"}, {"label": ["LCSH, 1995-03"], "noteType": "dataNotFound"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_rero/rero-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Enseignement primaire"}], "related": [{"authorized_access_point": "Leçons de choses"}], "identifiedBy": [{"type": "bf:Local", "value": "A021001006", "source": "RERO"}, {"type": "bf:Local", "value": "FRBNF11930822X", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119308220"}], "variant_access_point": ["Activités d'éveil (enseignement primaire)", "Disciplines d'éveil", "Éveil, Activités d'"], "authorized_access_point": "Activités d'éveil"} 1 +2024-09-11 09:08:06.053979 2024-09-11 09:08:06.053984 f54ff6d8-791c-40af-8a0b-b26faa567277 {"md5": "a9fffa78ca6d434618c49df7775bffdb", "pid": "A021001007", "note": [{"label": ["Nouveau petit Robert 1993 (art. : Acteur)", "Femmes dramaturges et actrices en Angleterre : 1660-1706 / M. Adam, 1993"], "noteType": "dataSource"}, {"label": ["Voir aussi les vedettes du type Actrices [adjectif de nationalité ou géographique]"], "noteType": "seeAlsoReference"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_rero/rero-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Acteurs"}, {"authorized_access_point": "Femmes artistes interprètes"}], "narrower": [{"authorized_access_point": "Actrices de cinéma"}, {"authorized_access_point": "Actrices de télévision"}, {"authorized_access_point": "Actrices travesties"}], "closeMatch": [{"source": "LCSH", "authorized_access_point": "Actresses"}], "identifiedBy": [{"type": "bf:Local", "value": "A021001007", "source": "RERO"}, {"type": "bf:Local", "value": "FRBNF119308237", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11930823b"}], "classification": [{"name": "Sciences sociales", "type": "bf:ClassificationDdc", "classificationPortion": "300"}, {"name": "Groupes sociaux", "type": "bf:ClassificationDdc", "classificationPortion": "305"}, {"name": "Arts du spectacle", "type": "bf:ClassificationDdc", "classificationPortion": "790"}], "variant_access_point": ["Actrices de théâtre", "Artistes dramatiques", "Comédiennes"], "authorized_access_point": "Actrices"} 1 +2024-09-11 09:08:06.105573 2024-09-11 09:08:06.105577 759fac70-f53c-4ed4-aa3f-9a997346aeb9 {"md5": "1603cc1b5fd6dac637d5de4051371dbc", "pid": "A021001008", "note": [{"label": ["NC32e, NC32f, NC32d"], "noteType": "REROtreatment"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_rero/rero-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Liants"}], "related": [{"authorized_access_point": "Assemblages collés"}, {"authorized_access_point": "Colles"}, {"authorized_access_point": "Époxydes"}, {"authorized_access_point": "Mucilages"}, {"authorized_access_point": "Produits d'étanchéité"}], "narrower": [{"authorized_access_point": "Adhésifs sensibles à la pression"}, {"authorized_access_point": "Autocollants"}, {"authorized_access_point": "Cyanoacrylates"}, {"authorized_access_point": "Gomme arabique"}, {"authorized_access_point": "Mortier"}, {"authorized_access_point": "Ruban adhésif"}], "closeMatch": [{"source": "LCSH", "authorized_access_point": "Adhesives"}], "identifiedBy": [{"type": "bf:Local", "value": "A021001008", "source": "RERO"}, {"type": "bf:Local", "value": "FRBNF119308269", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11930826c"}], "classification": [{"name": "Chimie", "type": "bf:ClassificationDdc", "classificationPortion": "540"}, {"name": "Technique", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["Agglutinants"], "authorized_access_point": "Adhésifs"} 1 +2024-09-11 09:08:06.157588 2024-09-11 09:08:06.157594 cb334fda-436e-46f4-8fa4-e1e24aa28936 {"md5": "b6ad2168e9dc96c85a90cc9d251468e1", "pid": "A021001009", "note": [{"label": ["NC32c, NC32a, NC32e, NC32d"], "noteType": "REROtreatment"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_rero/rero-concept-v0.0.1.json", "closeMatch": [{"source": "RVMLaval", "authorized_access_point": "Administration publique"}], "identifiedBy": [{"type": "bf:Local", "value": "A021001009", "source": "RERO"}, {"type": "bf:Local", "value": "FRBNF119308276", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11930827q"}], "classification": [{"name": "Administration publique", "type": "bf:ClassificationDdc", "classificationPortion": "350"}], "variant_access_point": ["Management public -> Utiliser une combinaison de descripteurs", "New public management -> Utiliser une combinaison de descripteurs", "NMP -> Utiliser une combinaison de descripteurs", "Nouveau management public -> Utiliser une combinaison de descripteurs", "NPM -> Utiliser une combinaison de descripteurs", "Modernisation de l'administration -> Utiliser une combinaison de descripteurs", "Réforme administrative -> Utiliser une combinaison de descripteurs", "Réforme de l'administration -> Utiliser une combinaison de descripteurs", "Réforme de l'État -> Utiliser une combinaison de descripteurs", "Réorganisation administrative -> Utiliser une combinaison de descripteurs", "Restructuration administrative -> Utiliser une combinaison de descripteurs", "Révision générale des politiques publiques -> Utiliser une combinaison de descripteurs", "RGPP -> Utiliser une combinaison de descripteurs", "Décision administrative -> Utiliser une combinaison de descripteurs", "Décision gouvernementale -> Utiliser une combinaison de descripteurs", "Décision publique -> Utiliser une combinaison de descripteurs", "Décisions publiques -> Utiliser une combinaison de descripteurs", "Inspection administrative -> Utiliser une combinaison de descripteurs", "Inspection générale des services administratifs -> Utiliser une combinaison de descripteurs", "Inspections générales de l'administration -> Utiliser une combinaison de descripteurs", "Histoire administrative -> Utiliser une combinaison de descripteurs", "Action administrative", "Administration de l'État", "Administration publique (science)", "Agences administratives", "Gestion publique", "Institutions administratives", "Organisation administrative", "Organismes administratifs", "Régime administratif", "Science administrative", "Service public", "Services administratifs", "Structures administratives"], "authorized_access_point": "Administration publique"} 1 +2024-09-11 09:08:06.204089 2024-09-11 09:08:06.204093 5388662c-140a-40a3-900b-6e9d0eff3aba {"md5": "e60b8d98f2d58c6e178521fe6a3728ba", "pid": "A021001012", "note": [{"label": ["NC32a, NC32e, NC32d"], "noteType": "REROtreatment"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_rero/rero-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Dynamique"}, {"authorized_access_point": "Fluides, Dynamique des"}, {"authorized_access_point": "Gaz, Dynamique des"}], "related": [{"authorized_access_point": "Gaz -Écoulement"}, {"authorized_access_point": "Mach, Nombre de"}, {"authorized_access_point": "Pneumatique"}, {"authorized_access_point": "Profils aérodynamiques"}, {"authorized_access_point": "Reynolds, Nombre de"}, {"authorized_access_point": "Souffleries aérodynamiques"}, {"authorized_access_point": "Tourbillons (mécanique des fluides)"}], "narrower": [{"authorized_access_point": "Aéroacoustique"}, {"authorized_access_point": "Aéroélasticité"}, {"authorized_access_point": "Bruit aérodynamique"}, {"authorized_access_point": "Cascades (dynamique des fluides)"}, {"authorized_access_point": "Charge aérodynamique"}, {"authorized_access_point": "Couche limite"}, {"authorized_access_point": "Décollement des écoulements"}, {"authorized_access_point": "Essais en soufflerie aérodynamique"}, {"authorized_access_point": "Flottement (aérodynamique)"}, {"authorized_access_point": "Portance"}, {"authorized_access_point": "Sillage (aérodynamique)"}, {"authorized_access_point": "Traînée (aérodynamique)"}, {"authorized_access_point": "Tremblement (aérodynamique)"}], "closeMatch": [{"source": "LCSH", "authorized_access_point": "Aerodynamics"}], "identifiedBy": [{"type": "bf:Local", "value": "A021001012", "source": "RERO"}, {"type": "bf:Local", "value": "FRBNF119308301", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11930830m"}], "classification": [{"name": "Physique", "type": "bf:ClassificationDdc", "classificationPortion": "530"}, {"name": "Technique", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["Aérodynamique subsonique", "Avions - Aérodynamique", "Carénage", "Mécanique du vol", "Profilage - Aérodynamique"], "authorized_access_point": "Aérodynamique"} 1 +2024-09-11 09:08:06.250462 2024-09-11 09:08:06.250467 cfd2ff9b-5ea1-4330-a293-a6595037adc0 {"md5": "d4469af8a3dcf0d7a7309a35a29b3030", "pid": "A021001013", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_rero/rero-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Pression acoustique"}, {"authorized_access_point": "Vol à grande vitesse"}], "related": [{"authorized_access_point": "Avions supersoniques"}, {"authorized_access_point": "Compresseurs supersoniques"}, {"authorized_access_point": "Souffleries supersoniques"}, {"authorized_access_point": "Tuyères supersoniques"}], "narrower": [{"authorized_access_point": "Aérodynamique hypersonique"}, {"authorized_access_point": "Aérothermodynamique"}, {"authorized_access_point": "Bang sonique"}], "closeMatch": [{"source": "LCSH", "authorized_access_point": "Aerodynamics, Supersonic"}], "identifiedBy": [{"type": "bf:Local", "value": "A021001013", "source": "RERO"}, {"type": "bf:Local", "value": "FRBNF119308319", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11930831z"}], "classification": [{"name": "Physique", "type": "bf:ClassificationDdc", "classificationPortion": "530"}], "variant_access_point": ["Écoulement supersonique", "Vitesse supersonique", "Vols supersoniques, Aérodynamique des"], "authorized_access_point": "Aérodynamique supersonique"} 1 +2024-09-11 09:08:06.300474 2024-09-11 09:08:06.300478 762f2785-72d6-4949-a3b6-2c9262c5d604 {"md5": "dc73dc25e84bb521a6ec045ee6f47f27", "pid": "A021001014", "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_rero/rero-concept-v0.0.1.json", "related": [{"authorized_access_point": "Aérothermodynamique"}, {"authorized_access_point": "Pression acoustique"}, {"authorized_access_point": "Souffleries transsoniques"}, {"authorized_access_point": "Vol à grande vitesse"}], "closeMatch": [{"source": "LCSH", "authorized_access_point": "Aerodynamics, Transonic"}], "identifiedBy": [{"type": "bf:Local", "value": "A021001014", "source": "RERO"}, {"type": "bf:Local", "value": "FRBNF119308326", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119308329"}], "classification": [{"name": "Physique", "type": "bf:ClassificationDdc", "classificationPortion": "530"}], "variant_access_point": ["Écoulement transsonique", "Vitesses transsoniques", "Vols transsoniques, Aérodynamique des"], "authorized_access_point": "Aérodynamique transsonique"} 1 +2024-09-11 09:08:06.348169 2024-09-11 09:08:06.348173 76bbe552-1001-429f-b9ce-f9847b2f3c89 {"md5": "077b66f5e8adafb72e75a2e0d27275e6", "pid": "A021001016", "note": [{"label": ["NC32e"], "noteType": "REROtreatment"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_rero/rero-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Véhicules automobiles"}], "related": [{"authorized_access_point": "Chemins de fer"}], "closeMatch": [{"source": "LCSH", "authorized_access_point": "Ground-effect machines"}], "identifiedBy": [{"type": "bf:Local", "value": "A021001016", "source": "RERO"}, {"type": "bf:Local", "value": "FRBNF119308365", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11930836p"}], "classification": [{"name": "Économie politique", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Technique", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["Aérotrains", "Hovercrafts", "Naviplanes", "Véhicules à coussin d'air", "Véhicules à effet de sol", "Véhicules sur coussin d'air"], "authorized_access_point": "Aéroglisseurs"} 1 +2024-09-11 09:08:06.398632 2024-09-11 09:08:06.398637 92cdb1f8-b720-4a61-af6e-f3ee45ab4efb {"md5": "01b12355ab28abd70f56a7597cd10862", "pid": "A021001017", "note": [{"label": ["Grand Robert de la langue française, 2001 (art. : Viande)", "Larousse agricole / M. Mazoyer, 2002"], "noteType": "dataSource"}, {"label": ["NC32e"], "noteType": "REROtreatment"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_rero/rero-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Viande"}], "related": [{"authorized_access_point": "Agneaux"}], "closeMatch": [{"source": "LCSH", "authorized_access_point": "Lamb (Meat)"}], "identifiedBy": [{"type": "bf:Local", "value": "A021001017", "source": "RERO"}, {"type": "bf:Local", "value": "FRBNF119308486", "source": "BNF"}], "classification": [{"name": "Zoologie", "type": "bf:ClassificationDdc", "classificationPortion": "590"}, {"name": "Agriculture", "type": "bf:ClassificationDdc", "classificationPortion": "630"}, {"name": "Économie domestique", "type": "bf:ClassificationDdc", "classificationPortion": "640"}], "variant_access_point": ["Agneaux (viande)", "Viande d'agneau", "Viande ovine"], "authorized_access_point": "Agneau (viande)"} 1 +2024-09-11 09:08:06.44652 2024-09-11 09:08:06.446526 13cebbff-07c0-44e2-bbeb-fad28ebda11e {"md5": "fbf522a6df136927c84919041234d292", "pid": "A021001018", "note": [{"label": ["NC32e, NC32f"], "noteType": "REROtreatment"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_rero/rero-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Caractère"}, {"authorized_access_point": "Personnalité"}], "related": [{"authorized_access_point": "Colère"}, {"authorized_access_point": "Défense (psychologie)"}, {"authorized_access_point": "Hostilité (psychologie)"}, {"authorized_access_point": "Personnalité passive-agressive"}, {"authorized_access_point": "Violence"}], "narrower": [{"authorized_access_point": "Destructivité"}, {"authorized_access_point": "Incivilités"}], "closeMatch": [{"source": "LCSH", "authorized_access_point": "Aggressiveness"}], "identifiedBy": [{"type": "bf:Local", "value": "A021001018", "source": "RERO"}, {"type": "bf:Local", "value": "FRBNF119308493", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119308491"}], "classification": [{"name": "Psychologie", "type": "bf:ClassificationDdc", "classificationPortion": "150"}], "variant_access_point": ["Agression (psychologie)", "Agressivité (psychologie)", "Caractère agressif", "Comportement agressif", "Tempérament agressif"], "authorized_access_point": "Agressivité"} 1 +2024-09-11 09:08:06.495101 2024-09-11 09:08:06.495107 f66719c7-629a-4bb7-a1dc-9166406adb3e {"md5": "b09a60157226bac0551cd493eba55aee", "pid": "A021001021", "note": [{"label": ["Larousse agricole, 1981"], "noteType": "dataSource"}, {"label": ["NC32d"], "noteType": "REROtreatment"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_rero/rero-concept-v0.0.1.json", "related": [{"authorized_access_point": "Agriculture durable"}, {"authorized_access_point": "Aliments biologiques"}, {"authorized_access_point": "Biopesticides"}, {"authorized_access_point": "Élevage biologique"}], "narrower": [{"authorized_access_point": "Jardinage biologique"}, {"authorized_access_point": "Permaculture"}, {"authorized_access_point": "Viticulture biologique"}], "closeMatch": [{"source": "LCSH", "authorized_access_point": "Organic farming"}], "identifiedBy": [{"type": "bf:Local", "value": "A021001021", "source": "RERO"}, {"type": "bf:Local", "value": "FRBNF119308529", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11930852x"}], "classification": [{"name": "Agriculture", "type": "bf:ClassificationDdc", "classificationPortion": "630"}], "variant_access_point": ["Agriculture biodynamique", "Agriculture écologique", "Agriculture organique", "Agrobiologie", "Biodynamie", "Cultures biodynamiques", "Cultures biologiques", "Cultures écologiques", "Cultures organiques"], "authorized_access_point": "Agriculture biologique"} 1 +2024-09-11 09:08:06.548757 2024-09-11 09:08:06.54876 d021e80c-cb6f-4993-a9d5-4130e79d16dc {"md5": "f231f944e9bb4f2d335bc28c791688c3", "pid": "A021001023", "note": [{"label": ["EADS - http://www.eads.com (2005-09-09)"], "noteType": "dataSource"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_rero/rero-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Avions de transport à réaction"}], "narrower": [{"authorized_access_point": "Airbus A300 (avion de transport à réaction)"}, {"authorized_access_point": "Airbus A310 (avion de transport à réaction)"}, {"authorized_access_point": "Airbus A320 (avion de transport à réaction)"}, {"authorized_access_point": "Airbus A340 (avion de transport à réaction)"}, {"authorized_access_point": "Airbus A350 (avion de transport à réaction)"}, {"authorized_access_point": "Airbus A380 (avion de transport à réaction)"}, {"authorized_access_point": "Airbus A400M Atlas (avion de transport à réaction)"}], "closeMatch": [{"source": "LCSH", "authorized_access_point": "Airbus aircraft"}], "identifiedBy": [{"type": "bf:Local", "value": "A021001023", "source": "RERO"}, {"type": "bf:Local", "value": "FRBNF119308543", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11930854m"}], "classification": [{"name": "Économie politique", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Technique", "type": "bf:ClassificationDdc", "classificationPortion": "600"}], "variant_access_point": ["Airbus (avions de transport à réaction)"], "authorized_access_point": "Airbus (avions)"} 1 +2024-09-11 09:08:06.605818 2024-09-11 09:08:06.605824 b37a05c4-67ef-4fbe-b283-e92654ee330b {"md5": "351c2ec1a21efd8ec4a442cfa258e91c", "pid": "A021001024", "note": [{"label": ["Grand Larousse universel", "Dict. de l'ésotérisme / P. Riffard, 1993"], "noteType": "dataSource"}, {"label": ["NC32d"], "noteType": "REROtreatment"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_rero/rero-concept-v0.0.1.json", "broader": [{"authorized_access_point": "Ésotérisme"}], "related": [{"authorized_access_point": "Alchimistes"}], "narrower": [{"authorized_access_point": "Élixir de longue vie"}], "closeMatch": [{"source": "LCSH", "authorized_access_point": "Alchemy"}], "identifiedBy": [{"type": "bf:Local", "value": "A021001024", "source": "RERO"}, {"type": "bf:Local", "value": "FRBNF119308568", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119308569"}], "classification": [{"name": "Parapsychologie, occultisme et ésotérisme", "type": "bf:ClassificationDdc", "classificationPortion": "130"}], "variant_access_point": ["Art royal", "Chimie hermétique", "Chymie", "Métaux, Transmutation des", "Oeuf des sages", "Pierre philosophale", "Transmutation des métaux"], "authorized_access_point": "Alchimie"} 1 +2024-09-11 09:08:06.663705 2024-09-11 09:08:06.663711 6bef773f-41d8-4b6d-9c6f-2b88650a3f27 {"md5": "008723e60d178f5b87cc36cdff4b626f", "pid": "A021001025", "note": [{"label": ["Grand Larousse universel : alémanique, groupe de dialectes du haut-allemand", "L'aménagement linguistique dans le monde - http://www.tlfq.ulaval.ca (2009-01-05)"], "noteType": "dataSource"}, {"label": ["NC32d"], "noteType": "REROtreatment"}], "type": "bf:Topic", "$schema": "https://mef.rero.ch/schemas/concepts_rero/rero-concept-v0.0.1.json", "related": [{"authorized_access_point": "Noms géographiques alémaniques"}], "narrower": [{"authorized_access_point": "Alsacien (dialecte)"}, {"authorized_access_point": "Souabe (dialecte)"}, {"authorized_access_point": "Suisse alémanique (dialecte)"}, {"authorized_access_point": "Walser (dialecte)"}], "closeMatch": [{"source": "LCSH", "authorized_access_point": "Alemannic dialects"}], "identifiedBy": [{"type": "bf:Local", "value": "A021001025", "source": "RERO"}, {"type": "bf:Local", "value": "FRBNF119308575", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11930857n"}], "classification": [{"name": "Langues", "type": "bf:ClassificationDdc", "classificationPortion": "400"}], "variant_access_point": ["Alaman (dialecte)", "Alémanique (dialecte)", "Allémanique (dialecte)", "Bas alémanique (dialecte)", "Bas-allémanique (dialecte)", "Haut alémanique (dialecte)", "Haut-allémanique (dialecte)", "Langues alémaniques"], "authorized_access_point": "Dialectes alémaniques"} 1 diff --git a/data/corero_pidstore.csv b/data/corero_pidstore.csv index 155762b5..05e8f0b5 100644 --- a/data/corero_pidstore.csv +++ b/data/corero_pidstore.csv @@ -1,20 +1,20 @@ -2023-07-08 08:26:29.367801 2023-07-08 08:26:29.367807 corero A009955971 R rec 87a1eee0-67a9-4833-b927-3ecbd55e1761 -2023-07-08 08:26:29.493321 2023-07-08 08:26:29.493329 corero A010077990 R rec 086eb5b6-6235-41ff-8250-036d782f97b2 -2023-07-08 08:26:29.553925 2023-07-08 08:26:29.553931 corero A021001001 R rec e1f88cda-7900-486e-a54d-8b9e18a181aa -2023-07-08 08:26:29.610503 2023-07-08 08:26:29.610515 corero A021001003 R rec 4aeb897c-9946-4b41-b729-7cebceaebe1f -2023-07-08 08:26:29.685411 2023-07-08 08:26:29.685424 corero A021001004 R rec 65e27cfb-1747-414b-a580-85965c1eb4a8 -2023-07-08 08:26:29.75422 2023-07-08 08:26:29.754233 corero A021001005 R rec 4ed63f0a-7894-489f-a6d5-ef24917aefdf -2023-07-08 08:26:29.833156 2023-07-08 08:26:29.833171 corero A021001006 R rec 187426c1-6927-489f-8c2a-ecbbd5befb26 -2023-07-08 08:26:29.911365 2023-07-08 08:26:29.911378 corero A021001007 R rec 9442c5fe-0bb5-43f2-ae31-b306f5cc6fac -2023-07-08 08:26:29.992587 2023-07-08 08:26:29.992597 corero A021001008 R rec d15b76d5-9af2-406b-b075-aebddc91f177 -2023-07-08 08:26:30.086058 2023-07-08 08:26:30.086073 corero A021001009 R rec d4932827-8719-4096-a39d-48ac4c4454b5 -2023-07-08 08:26:30.171011 2023-07-08 08:26:30.17103 corero A021001012 R rec f91cf8d5-b31a-4d0b-9e26-be121e36df8b -2023-07-08 08:26:30.255522 2023-07-08 08:26:30.255535 corero A021001013 R rec 0b9a20a0-47b1-4862-af0a-2f44e363e79d -2023-07-08 08:26:30.33755 2023-07-08 08:26:30.337568 corero A021001014 R rec 26c0674b-0967-4264-94f9-63d9eac45c34 -2023-07-08 08:26:30.419201 2023-07-08 08:26:30.419213 corero A021001016 R rec 968c5b94-e732-404b-ad4b-a7af9ad94722 -2023-07-08 08:26:30.508125 2023-07-08 08:26:30.508145 corero A021001017 R rec d6301b56-b83a-4273-ac09-d206755bb035 -2023-07-08 08:26:30.599555 2023-07-08 08:26:30.59957 corero A021001018 R rec c107fed7-d8d4-4b0a-b934-e2b7df918f2d -2023-07-08 08:26:30.695683 2023-07-08 08:26:30.6957 corero A021001021 R rec d1a0dcf7-cf3f-45cc-9bda-135d50c1767b -2023-07-08 08:26:30.785781 2023-07-08 08:26:30.785791 corero A021001023 R rec fb018f78-81dd-40db-9ae1-8a508792528a -2023-07-08 08:26:30.892472 2023-07-08 08:26:30.892482 corero A021001024 R rec 0958b679-2b38-4410-a94e-b5a7916929dc -2023-07-08 08:26:30.991262 2023-07-08 08:26:30.991278 corero A021001025 R rec c5bd42a4-3ee0-4213-8fb6-a2a2ca039dc0 +2024-09-11 09:08:05.637582 2024-09-11 09:08:05.637587 corero A009955971 R rec 074bbb42-4541-4061-9b94-4c00883be4be +2024-09-11 09:08:05.726191 2024-09-11 09:08:05.726198 corero A010077990 R rec 41d24958-d34d-42ed-b671-766ae5a6e96b +2024-09-11 09:08:05.780302 2024-09-11 09:08:05.780308 corero A021001001 R rec ef44e72f-6b3a-450f-af23-663b97cfd812 +2024-09-11 09:08:05.834158 2024-09-11 09:08:05.834164 corero A021001003 R rec c9079e9f-88b3-4f85-b249-c69ac8dd9960 +2024-09-11 09:08:05.888492 2024-09-11 09:08:05.888498 corero A021001004 R rec d16777f9-2e5a-4877-bafb-738ced38ff4f +2024-09-11 09:08:05.940399 2024-09-11 09:08:05.940406 corero A021001005 R rec cbc099d5-d532-4413-8346-7780bc2234f4 +2024-09-11 09:08:05.993323 2024-09-11 09:08:05.993329 corero A021001006 R rec 51b1ab77-90d4-472c-a6d6-e391f25a4514 +2024-09-11 09:08:06.050675 2024-09-11 09:08:06.050681 corero A021001007 R rec f54ff6d8-791c-40af-8a0b-b26faa567277 +2024-09-11 09:08:06.103027 2024-09-11 09:08:06.103034 corero A021001008 R rec 759fac70-f53c-4ed4-aa3f-9a997346aeb9 +2024-09-11 09:08:06.154794 2024-09-11 09:08:06.1548 corero A021001009 R rec cb334fda-436e-46f4-8fa4-e1e24aa28936 +2024-09-11 09:08:06.201836 2024-09-11 09:08:06.201841 corero A021001012 R rec 5388662c-140a-40a3-900b-6e9d0eff3aba +2024-09-11 09:08:06.247913 2024-09-11 09:08:06.247919 corero A021001013 R rec cfd2ff9b-5ea1-4330-a293-a6595037adc0 +2024-09-11 09:08:06.298039 2024-09-11 09:08:06.298046 corero A021001014 R rec 762f2785-72d6-4949-a3b6-2c9262c5d604 +2024-09-11 09:08:06.345534 2024-09-11 09:08:06.34554 corero A021001016 R rec 76bbe552-1001-429f-b9ce-f9847b2f3c89 +2024-09-11 09:08:06.39571 2024-09-11 09:08:06.395715 corero A021001017 R rec 92cdb1f8-b720-4a61-af6e-f3ee45ab4efb +2024-09-11 09:08:06.44352 2024-09-11 09:08:06.443526 corero A021001018 R rec 13cebbff-07c0-44e2-bbeb-fad28ebda11e +2024-09-11 09:08:06.492328 2024-09-11 09:08:06.492334 corero A021001021 R rec f66719c7-629a-4bb7-a1dc-9166406adb3e +2024-09-11 09:08:06.546296 2024-09-11 09:08:06.546302 corero A021001023 R rec d021e80c-cb6f-4993-a9d5-4130e79d16dc +2024-09-11 09:08:06.602516 2024-09-11 09:08:06.602522 corero A021001024 R rec b37a05c4-67ef-4fbe-b283-e92654ee330b +2024-09-11 09:08:06.660934 2024-09-11 09:08:06.66094 corero A021001025 R rec 6bef773f-41d8-4b6d-9c6f-2b88650a3f27 diff --git a/data/mef_id.csv b/data/mef_id.csv index e4a5e296..bbc09907 100644 --- a/data/mef_id.csv +++ b/data/mef_id.csv @@ -8798,3 +8798,2998 @@ 8798 8799 8800 +8801 +8802 +8803 +8804 +8805 +8806 +8807 +8808 +8809 +8810 +8811 +8812 +8813 +8814 +8815 +8816 +8817 +8818 +8819 +8820 +8821 +8822 +8823 +8824 +8825 +8826 +8827 +8828 +8829 +8830 +8831 +8832 +8833 +8834 +8835 +8836 +8837 +8838 +8839 +8840 +8841 +8842 +8843 +8844 +8845 +8846 +8847 +8848 +8849 +8850 +8851 +8852 +8853 +8854 +8855 +8856 +8857 +8858 +8859 +8860 +8861 +8862 +8863 +8864 +8865 +8866 +8867 +8868 +8869 +8870 +8871 +8872 +8873 +8874 +8875 +8876 +8877 +8878 +8879 +8880 +8881 +8882 +8883 +8884 +8885 +8886 +8887 +8888 +8889 +8890 +8891 +8892 +8893 +8894 +8895 +8896 +8897 +8898 +8899 +8900 +8901 +8902 +8903 +8904 +8905 +8906 +8907 +8908 +8909 +8910 +8911 +8912 +8913 +8914 +8915 +8916 +8917 +8918 +8919 +8920 +8921 +8922 +8923 +8924 +8925 +8926 +8927 +8928 +8929 +8930 +8931 +8932 +8933 +8934 +8935 +8936 +8937 +8938 +8939 +8940 +8941 +8942 +8943 +8944 +8945 +8946 +8947 +8948 +8949 +8950 +8951 +8952 +8953 +8954 +8955 +8956 +8957 +8958 +8959 +8960 +8961 +8962 +8963 +8964 +8965 +8966 +8967 +8968 +8969 +8970 +8971 +8972 +8973 +8974 +8975 +8976 +8977 +8978 +8979 +8980 +8981 +8982 +8983 +8984 +8985 +8986 +8987 +8988 +8989 +8990 +8991 +8992 +8993 +8994 +8995 +8996 +8997 +8998 +8999 +9000 +9001 +9002 +9003 +9004 +9005 +9006 +9007 +9008 +9009 +9010 +9011 +9012 +9013 +9014 +9015 +9016 +9017 +9018 +9019 +9020 +9021 +9022 +9023 +9024 +9025 +9026 +9027 +9028 +9029 +9030 +9031 +9032 +9033 +9034 +9035 +9036 +9037 +9038 +9039 +9040 +9041 +9042 +9043 +9044 +9045 +9046 +9047 +9048 +9049 +9050 +9051 +9052 +9053 +9054 +9055 +9056 +9057 +9058 +9059 +9060 +9061 +9062 +9063 +9064 +9065 +9066 +9067 +9068 +9069 +9070 +9071 +9072 +9073 +9074 +9075 +9076 +9077 +9078 +9079 +9080 +9081 +9082 +9083 +9084 +9085 +9086 +9087 +9088 +9089 +9090 +9091 +9092 +9093 +9094 +9095 +9096 +9097 +9098 +9099 +9100 +9101 +9102 +9103 +9104 +9105 +9106 +9107 +9108 +9109 +9110 +9111 +9112 +9113 +9114 +9115 +9116 +9117 +9118 +9119 +9120 +9121 +9122 +9123 +9124 +9125 +9126 +9127 +9128 +9129 +9130 +9131 +9132 +9133 +9134 +9135 +9136 +9137 +9138 +9139 +9140 +9141 +9142 +9143 +9144 +9145 +9146 +9147 +9148 +9149 +9150 +9151 +9152 +9153 +9154 +9155 +9156 +9157 +9158 +9159 +9160 +9161 +9162 +9163 +9164 +9165 +9166 +9167 +9168 +9169 +9170 +9171 +9172 +9173 +9174 +9175 +9176 +9177 +9178 +9179 +9180 +9181 +9182 +9183 +9184 +9185 +9186 +9187 +9188 +9189 +9190 +9191 +9192 +9193 +9194 +9195 +9196 +9197 +9198 +9199 +9200 +9201 +9202 +9203 +9204 +9205 +9206 +9207 +9208 +9209 +9210 +9211 +9212 +9213 +9214 +9215 +9216 +9217 +9218 +9219 +9220 +9221 +9222 +9223 +9224 +9225 +9226 +9227 +9228 +9229 +9230 +9231 +9232 +9233 +9234 +9235 +9236 +9237 +9238 +9239 +9240 +9241 +9242 +9243 +9244 +9245 +9246 +9247 +9248 +9249 +9250 +9251 +9252 +9253 +9254 +9255 +9256 +9257 +9258 +9259 +9260 +9261 +9262 +9263 +9264 +9265 +9266 +9267 +9268 +9269 +9270 +9271 +9272 +9273 +9274 +9275 +9276 +9277 +9278 +9279 +9280 +9281 +9282 +9283 +9284 +9285 +9286 +9287 +9288 +9289 +9290 +9291 +9292 +9293 +9294 +9295 +9296 +9297 +9298 +9299 +9300 +9301 +9302 +9303 +9304 +9305 +9306 +9307 +9308 +9309 +9310 +9311 +9312 +9313 +9314 +9315 +9316 +9317 +9318 +9319 +9320 +9321 +9322 +9323 +9324 +9325 +9326 +9327 +9328 +9329 +9330 +9331 +9332 +9333 +9334 +9335 +9336 +9337 +9338 +9339 +9340 +9341 +9342 +9343 +9344 +9345 +9346 +9347 +9348 +9349 +9350 +9351 +9352 +9353 +9354 +9355 +9356 +9357 +9358 +9359 +9360 +9361 +9362 +9363 +9364 +9365 +9366 +9367 +9368 +9369 +9370 +9371 +9372 +9373 +9374 +9375 +9376 +9377 +9378 +9379 +9380 +9381 +9382 +9383 +9384 +9385 +9386 +9387 +9388 +9389 +9390 +9391 +9392 +9393 +9394 +9395 +9396 +9397 +9398 +9399 +9400 +9401 +9402 +9403 +9404 +9405 +9406 +9407 +9408 +9409 +9410 +9411 +9412 +9413 +9414 +9415 +9416 +9417 +9418 +9419 +9420 +9421 +9422 +9423 +9424 +9425 +9426 +9427 +9428 +9429 +9430 +9431 +9432 +9433 +9434 +9435 +9436 +9437 +9438 +9439 +9440 +9441 +9442 +9443 +9444 +9445 +9446 +9447 +9448 +9449 +9450 +9451 +9452 +9453 +9454 +9455 +9456 +9457 +9458 +9459 +9460 +9461 +9462 +9463 +9464 +9465 +9466 +9467 +9468 +9469 +9470 +9471 +9472 +9473 +9474 +9475 +9476 +9477 +9478 +9479 +9480 +9481 +9482 +9483 +9484 +9485 +9486 +9487 +9488 +9489 +9490 +9491 +9492 +9493 +9494 +9495 +9496 +9497 +9498 +9499 +9500 +9501 +9502 +9503 +9504 +9505 +9506 +9507 +9508 +9509 +9510 +9511 +9512 +9513 +9514 +9515 +9516 +9517 +9518 +9519 +9520 +9521 +9522 +9523 +9524 +9525 +9526 +9527 +9528 +9529 +9530 +9531 +9532 +9533 +9534 +9535 +9536 +9537 +9538 +9539 +9540 +9541 +9542 +9543 +9544 +9545 +9546 +9547 +9548 +9549 +9550 +9551 +9552 +9553 +9554 +9555 +9556 +9557 +9558 +9559 +9560 +9561 +9562 +9563 +9564 +9565 +9566 +9567 +9568 +9569 +9570 +9571 +9572 +9573 +9574 +9575 +9576 +9577 +9578 +9579 +9580 +9581 +9582 +9583 +9584 +9585 +9586 +9587 +9588 +9589 +9590 +9591 +9592 +9593 +9594 +9595 +9596 +9597 +9598 +9599 +9600 +9601 +9602 +9603 +9604 +9605 +9606 +9607 +9608 +9609 +9610 +9611 +9612 +9613 +9614 +9615 +9616 +9617 +9618 +9619 +9620 +9621 +9622 +9623 +9624 +9625 +9626 +9627 +9628 +9629 +9630 +9631 +9632 +9633 +9634 +9635 +9636 +9637 +9638 +9639 +9640 +9641 +9642 +9643 +9644 +9645 +9646 +9647 +9648 +9649 +9650 +9651 +9652 +9653 +9654 +9655 +9656 +9657 +9658 +9659 +9660 +9661 +9662 +9663 +9664 +9665 +9666 +9667 +9668 +9669 +9670 +9671 +9672 +9673 +9674 +9675 +9676 +9677 +9678 +9679 +9680 +9681 +9682 +9683 +9684 +9685 +9686 +9687 +9688 +9689 +9690 +9691 +9692 +9693 +9694 +9695 +9696 +9697 +9698 +9699 +9700 +9701 +9702 +9703 +9704 +9705 +9706 +9707 +9708 +9709 +9710 +9711 +9712 +9713 +9714 +9715 +9716 +9717 +9718 +9719 +9720 +9721 +9722 +9723 +9724 +9725 +9726 +9727 +9728 +9729 +9730 +9731 +9732 +9733 +9734 +9735 +9736 +9737 +9738 +9739 +9740 +9741 +9742 +9743 +9744 +9745 +9746 +9747 +9748 +9749 +9750 +9751 +9752 +9753 +9754 +9755 +9756 +9757 +9758 +9759 +9760 +9761 +9762 +9763 +9764 +9765 +9766 +9767 +9768 +9769 +9770 +9771 +9772 +9773 +9774 +9775 +9776 +9777 +9778 +9779 +9780 +9781 +9782 +9783 +9784 +9785 +9786 +9787 +9788 +9789 +9790 +9791 +9792 +9793 +9794 +9795 +9796 +9797 +9798 +9799 +9800 +9801 +9802 +9803 +9804 +9805 +9806 +9807 +9808 +9809 +9810 +9811 +9812 +9813 +9814 +9815 +9816 +9817 +9818 +9819 +9820 +9821 +9822 +9823 +9824 +9825 +9826 +9827 +9828 +9829 +9830 +9831 +9832 +9833 +9834 +9835 +9836 +9837 +9838 +9839 +9840 +9841 +9842 +9843 +9844 +9845 +9846 +9847 +9848 +9849 +9850 +9851 +9852 +9853 +9854 +9855 +9856 +9857 +9858 +9859 +9860 +9861 +9862 +9863 +9864 +9865 +9866 +9867 +9868 +9869 +9870 +9871 +9872 +9873 +9874 +9875 +9876 +9877 +9878 +9879 +9880 +9881 +9882 +9883 +9884 +9885 +9886 +9887 +9888 +9889 +9890 +9891 +9892 +9893 +9894 +9895 +9896 +9897 +9898 +9899 +9900 +9901 +9902 +9903 +9904 +9905 +9906 +9907 +9908 +9909 +9910 +9911 +9912 +9913 +9914 +9915 +9916 +9917 +9918 +9919 +9920 +9921 +9922 +9923 +9924 +9925 +9926 +9927 +9928 +9929 +9930 +9931 +9932 +9933 +9934 +9935 +9936 +9937 +9938 +9939 +9940 +9941 +9942 +9943 +9944 +9945 +9946 +9947 +9948 +9949 +9950 +9951 +9952 +9953 +9954 +9955 +9956 +9957 +9958 +9959 +9960 +9961 +9962 +9963 +9964 +9965 +9966 +9967 +9968 +9969 +9970 +9971 +9972 +9973 +9974 +9975 +9976 +9977 +9978 +9979 +9980 +9981 +9982 +9983 +9984 +9985 +9986 +9987 +9988 +9989 +9990 +9991 +9992 +9993 +9994 +9995 +9996 +9997 +9998 +9999 +10000 +10001 +10002 +10003 +10004 +10005 +10006 +10007 +10008 +10009 +10010 +10011 +10012 +10013 +10014 +10015 +10016 +10017 +10018 +10019 +10020 +10021 +10022 +10023 +10024 +10025 +10026 +10027 +10028 +10029 +10030 +10031 +10032 +10033 +10034 +10035 +10036 +10037 +10038 +10039 +10040 +10041 +10042 +10043 +10044 +10045 +10046 +10047 +10048 +10049 +10050 +10051 +10052 +10053 +10054 +10055 +10056 +10057 +10058 +10059 +10060 +10061 +10062 +10063 +10064 +10065 +10066 +10067 +10068 +10069 +10070 +10071 +10072 +10073 +10074 +10075 +10076 +10077 +10078 +10079 +10080 +10081 +10082 +10083 +10084 +10085 +10086 +10087 +10088 +10089 +10090 +10091 +10092 +10093 +10094 +10095 +10096 +10097 +10098 +10099 +10100 +10101 +10102 +10103 +10104 +10105 +10106 +10107 +10108 +10109 +10110 +10111 +10112 +10113 +10114 +10115 +10116 +10117 +10118 +10119 +10120 +10121 +10122 +10123 +10124 +10125 +10126 +10127 +10128 +10129 +10130 +10131 +10132 +10133 +10134 +10135 +10136 +10137 +10138 +10139 +10140 +10141 +10142 +10143 +10144 +10145 +10146 +10147 +10148 +10149 +10150 +10151 +10152 +10153 +10154 +10155 +10156 +10157 +10158 +10159 +10160 +10161 +10162 +10163 +10164 +10165 +10166 +10167 +10168 +10169 +10170 +10171 +10172 +10173 +10174 +10175 +10176 +10177 +10178 +10179 +10180 +10181 +10182 +10183 +10184 +10185 +10186 +10187 +10188 +10189 +10190 +10191 +10192 +10193 +10194 +10195 +10196 +10197 +10198 +10199 +10200 +10201 +10202 +10203 +10204 +10205 +10206 +10207 +10208 +10209 +10210 +10211 +10212 +10213 +10214 +10215 +10216 +10217 +10218 +10219 +10220 +10221 +10222 +10223 +10224 +10225 +10226 +10227 +10228 +10229 +10230 +10231 +10232 +10233 +10234 +10235 +10236 +10237 +10238 +10239 +10240 +10241 +10242 +10243 +10244 +10245 +10246 +10247 +10248 +10249 +10250 +10251 +10252 +10253 +10254 +10255 +10256 +10257 +10258 +10259 +10260 +10261 +10262 +10263 +10264 +10265 +10266 +10267 +10268 +10269 +10270 +10271 +10272 +10273 +10274 +10275 +10276 +10277 +10278 +10279 +10280 +10281 +10282 +10283 +10284 +10285 +10286 +10287 +10288 +10289 +10290 +10291 +10292 +10293 +10294 +10295 +10296 +10297 +10298 +10299 +10300 +10301 +10302 +10303 +10304 +10305 +10306 +10307 +10308 +10309 +10310 +10311 +10312 +10313 +10314 +10315 +10316 +10317 +10318 +10319 +10320 +10321 +10322 +10323 +10324 +10325 +10326 +10327 +10328 +10329 +10330 +10331 +10332 +10333 +10334 +10335 +10336 +10337 +10338 +10339 +10340 +10341 +10342 +10343 +10344 +10345 +10346 +10347 +10348 +10349 +10350 +10351 +10352 +10353 +10354 +10355 +10356 +10357 +10358 +10359 +10360 +10361 +10362 +10363 +10364 +10365 +10366 +10367 +10368 +10369 +10370 +10371 +10372 +10373 +10374 +10375 +10376 +10377 +10378 +10379 +10380 +10381 +10382 +10383 +10384 +10385 +10386 +10387 +10388 +10389 +10390 +10391 +10392 +10393 +10394 +10395 +10396 +10397 +10398 +10399 +10400 +10401 +10402 +10403 +10404 +10405 +10406 +10407 +10408 +10409 +10410 +10411 +10412 +10413 +10414 +10415 +10416 +10417 +10418 +10419 +10420 +10421 +10422 +10423 +10424 +10425 +10426 +10427 +10428 +10429 +10430 +10431 +10432 +10433 +10434 +10435 +10436 +10437 +10438 +10439 +10440 +10441 +10442 +10443 +10444 +10445 +10446 +10447 +10448 +10449 +10450 +10451 +10452 +10453 +10454 +10455 +10456 +10457 +10458 +10459 +10460 +10461 +10462 +10463 +10464 +10465 +10466 +10467 +10468 +10469 +10470 +10471 +10472 +10473 +10474 +10475 +10476 +10477 +10478 +10479 +10480 +10481 +10482 +10483 +10484 +10485 +10486 +10487 +10488 +10489 +10490 +10491 +10492 +10493 +10494 +10495 +10496 +10497 +10498 +10499 +10500 +10501 +10502 +10503 +10504 +10505 +10506 +10507 +10508 +10509 +10510 +10511 +10512 +10513 +10514 +10515 +10516 +10517 +10518 +10519 +10520 +10521 +10522 +10523 +10524 +10525 +10526 +10527 +10528 +10529 +10530 +10531 +10532 +10533 +10534 +10535 +10536 +10537 +10538 +10539 +10540 +10541 +10542 +10543 +10544 +10545 +10546 +10547 +10548 +10549 +10550 +10551 +10552 +10553 +10554 +10555 +10556 +10557 +10558 +10559 +10560 +10561 +10562 +10563 +10564 +10565 +10566 +10567 +10568 +10569 +10570 +10571 +10572 +10573 +10574 +10575 +10576 +10577 +10578 +10579 +10580 +10581 +10582 +10583 +10584 +10585 +10586 +10587 +10588 +10589 +10590 +10591 +10592 +10593 +10594 +10595 +10596 +10597 +10598 +10599 +10600 +10601 +10602 +10603 +10604 +10605 +10606 +10607 +10608 +10609 +10610 +10611 +10612 +10613 +10614 +10615 +10616 +10617 +10618 +10619 +10620 +10621 +10622 +10623 +10624 +10625 +10626 +10627 +10628 +10629 +10630 +10631 +10632 +10633 +10634 +10635 +10636 +10637 +10638 +10639 +10640 +10641 +10642 +10643 +10644 +10645 +10646 +10647 +10648 +10649 +10650 +10651 +10652 +10653 +10654 +10655 +10656 +10657 +10658 +10659 +10660 +10661 +10662 +10663 +10664 +10665 +10666 +10667 +10668 +10669 +10670 +10671 +10672 +10673 +10674 +10675 +10676 +10677 +10678 +10679 +10680 +10681 +10682 +10683 +10684 +10685 +10686 +10687 +10688 +10689 +10690 +10691 +10692 +10693 +10694 +10695 +10696 +10697 +10698 +10699 +10700 +10701 +10702 +10703 +10704 +10705 +10706 +10707 +10708 +10709 +10710 +10711 +10712 +10713 +10714 +10715 +10716 +10717 +10718 +10719 +10720 +10721 +10722 +10723 +10724 +10725 +10726 +10727 +10728 +10729 +10730 +10731 +10732 +10733 +10734 +10735 +10736 +10737 +10738 +10739 +10740 +10741 +10742 +10743 +10744 +10745 +10746 +10747 +10748 +10749 +10750 +10751 +10752 +10753 +10754 +10755 +10756 +10757 +10758 +10759 +10760 +10761 +10762 +10763 +10764 +10765 +10766 +10767 +10768 +10769 +10770 +10771 +10772 +10773 +10774 +10775 +10776 +10777 +10778 +10779 +10780 +10781 +10782 +10783 +10784 +10785 +10786 +10787 +10788 +10789 +10790 +10791 +10792 +10793 +10794 +10795 +10796 +10797 +10798 +10799 +10800 +10801 +10802 +10803 +10804 +10805 +10806 +10807 +10808 +10809 +10810 +10811 +10812 +10813 +10814 +10815 +10816 +10817 +10818 +10819 +10820 +10821 +10822 +10823 +10824 +10825 +10826 +10827 +10828 +10829 +10830 +10831 +10832 +10833 +10834 +10835 +10836 +10837 +10838 +10839 +10840 +10841 +10842 +10843 +10844 +10845 +10846 +10847 +10848 +10849 +10850 +10851 +10852 +10853 +10854 +10855 +10856 +10857 +10858 +10859 +10860 +10861 +10862 +10863 +10864 +10865 +10866 +10867 +10868 +10869 +10870 +10871 +10872 +10873 +10874 +10875 +10876 +10877 +10878 +10879 +10880 +10881 +10882 +10883 +10884 +10885 +10886 +10887 +10888 +10889 +10890 +10891 +10892 +10893 +10894 +10895 +10896 +10897 +10898 +10899 +10900 +10901 +10902 +10903 +10904 +10905 +10906 +10907 +10908 +10909 +10910 +10911 +10912 +10913 +10914 +10915 +10916 +10917 +10918 +10919 +10920 +10921 +10922 +10923 +10924 +10925 +10926 +10927 +10928 +10929 +10930 +10931 +10932 +10933 +10934 +10935 +10936 +10937 +10938 +10939 +10940 +10941 +10942 +10943 +10944 +10945 +10946 +10947 +10948 +10949 +10950 +10951 +10952 +10953 +10954 +10955 +10956 +10957 +10958 +10959 +10960 +10961 +10962 +10963 +10964 +10965 +10966 +10967 +10968 +10969 +10970 +10971 +10972 +10973 +10974 +10975 +10976 +10977 +10978 +10979 +10980 +10981 +10982 +10983 +10984 +10985 +10986 +10987 +10988 +10989 +10990 +10991 +10992 +10993 +10994 +10995 +10996 +10997 +10998 +10999 +11000 +11001 +11002 +11003 +11004 +11005 +11006 +11007 +11008 +11009 +11010 +11011 +11012 +11013 +11014 +11015 +11016 +11017 +11018 +11019 +11020 +11021 +11022 +11023 +11024 +11025 +11026 +11027 +11028 +11029 +11030 +11031 +11032 +11033 +11034 +11035 +11036 +11037 +11038 +11039 +11040 +11041 +11042 +11043 +11044 +11045 +11046 +11047 +11048 +11049 +11050 +11051 +11052 +11053 +11054 +11055 +11056 +11057 +11058 +11059 +11060 +11061 +11062 +11063 +11064 +11065 +11066 +11067 +11068 +11069 +11070 +11071 +11072 +11073 +11074 +11075 +11076 +11077 +11078 +11079 +11080 +11081 +11082 +11083 +11084 +11085 +11086 +11087 +11088 +11089 +11090 +11091 +11092 +11093 +11094 +11095 +11096 +11097 +11098 +11099 +11100 +11101 +11102 +11103 +11104 +11105 +11106 +11107 +11108 +11109 +11110 +11111 +11112 +11113 +11114 +11115 +11116 +11117 +11118 +11119 +11120 +11121 +11122 +11123 +11124 +11125 +11126 +11127 +11128 +11129 +11130 +11131 +11132 +11133 +11134 +11135 +11136 +11137 +11138 +11139 +11140 +11141 +11142 +11143 +11144 +11145 +11146 +11147 +11148 +11149 +11150 +11151 +11152 +11153 +11154 +11155 +11156 +11157 +11158 +11159 +11160 +11161 +11162 +11163 +11164 +11165 +11166 +11167 +11168 +11169 +11170 +11171 +11172 +11173 +11174 +11175 +11176 +11177 +11178 +11179 +11180 +11181 +11182 +11183 +11184 +11185 +11186 +11187 +11188 +11189 +11190 +11191 +11192 +11193 +11194 +11195 +11196 +11197 +11198 +11199 +11200 +11201 +11202 +11203 +11204 +11205 +11206 +11207 +11208 +11209 +11210 +11211 +11212 +11213 +11214 +11215 +11216 +11217 +11218 +11219 +11220 +11221 +11222 +11223 +11224 +11225 +11226 +11227 +11228 +11229 +11230 +11231 +11232 +11233 +11234 +11235 +11236 +11237 +11238 +11239 +11240 +11241 +11242 +11243 +11244 +11245 +11246 +11247 +11248 +11249 +11250 +11251 +11252 +11253 +11254 +11255 +11256 +11257 +11258 +11259 +11260 +11261 +11262 +11263 +11264 +11265 +11266 +11267 +11268 +11269 +11270 +11271 +11272 +11273 +11274 +11275 +11276 +11277 +11278 +11279 +11280 +11281 +11282 +11283 +11284 +11285 +11286 +11287 +11288 +11289 +11290 +11291 +11292 +11293 +11294 +11295 +11296 +11297 +11298 +11299 +11300 +11301 +11302 +11303 +11304 +11305 +11306 +11307 +11308 +11309 +11310 +11311 +11312 +11313 +11314 +11315 +11316 +11317 +11318 +11319 +11320 +11321 +11322 +11323 +11324 +11325 +11326 +11327 +11328 +11329 +11330 +11331 +11332 +11333 +11334 +11335 +11336 +11337 +11338 +11339 +11340 +11341 +11342 +11343 +11344 +11345 +11346 +11347 +11348 +11349 +11350 +11351 +11352 +11353 +11354 +11355 +11356 +11357 +11358 +11359 +11360 +11361 +11362 +11363 +11364 +11365 +11366 +11367 +11368 +11369 +11370 +11371 +11372 +11373 +11374 +11375 +11376 +11377 +11378 +11379 +11380 +11381 +11382 +11383 +11384 +11385 +11386 +11387 +11388 +11389 +11390 +11391 +11392 +11393 +11394 +11395 +11396 +11397 +11398 +11399 +11400 +11401 +11402 +11403 +11404 +11405 +11406 +11407 +11408 +11409 +11410 +11411 +11412 +11413 +11414 +11415 +11416 +11417 +11418 +11419 +11420 +11421 +11422 +11423 +11424 +11425 +11426 +11427 +11428 +11429 +11430 +11431 +11432 +11433 +11434 +11435 +11436 +11437 +11438 +11439 +11440 +11441 +11442 +11443 +11444 +11445 +11446 +11447 +11448 +11449 +11450 +11451 +11452 +11453 +11454 +11455 +11456 +11457 +11458 +11459 +11460 +11461 +11462 +11463 +11464 +11465 +11466 +11467 +11468 +11469 +11470 +11471 +11472 +11473 +11474 +11475 +11476 +11477 +11478 +11479 +11480 +11481 +11482 +11483 +11484 +11485 +11486 +11487 +11488 +11489 +11490 +11491 +11492 +11493 +11494 +11495 +11496 +11497 +11498 +11499 +11500 +11501 +11502 +11503 +11504 +11505 +11506 +11507 +11508 +11509 +11510 +11511 +11512 +11513 +11514 +11515 +11516 +11517 +11518 +11519 +11520 +11521 +11522 +11523 +11524 +11525 +11526 +11527 +11528 +11529 +11530 +11531 +11532 +11533 +11534 +11535 +11536 +11537 +11538 +11539 +11540 +11541 +11542 +11543 +11544 +11545 +11546 +11547 +11548 +11549 +11550 +11551 +11552 +11553 +11554 +11555 +11556 +11557 +11558 +11559 +11560 +11561 +11562 +11563 +11564 +11565 +11566 +11567 +11568 +11569 +11570 +11571 +11572 +11573 +11574 +11575 +11576 +11577 +11578 +11579 +11580 +11581 +11582 +11583 +11584 +11585 +11586 +11587 +11588 +11589 +11590 +11591 +11592 +11593 +11594 +11595 +11596 +11597 +11598 +11599 +11600 +11601 +11602 +11603 +11604 +11605 +11606 +11607 +11608 +11609 +11610 +11611 +11612 +11613 +11614 +11615 +11616 +11617 +11618 +11619 +11620 +11621 +11622 +11623 +11624 +11625 +11626 +11627 +11628 +11629 +11630 +11631 +11632 +11633 +11634 +11635 +11636 +11637 +11638 +11639 +11640 +11641 +11642 +11643 +11644 +11645 +11646 +11647 +11648 +11649 +11650 +11651 +11652 +11653 +11654 +11655 +11656 +11657 +11658 +11659 +11660 +11661 +11662 +11663 +11664 +11665 +11666 +11667 +11668 +11669 +11670 +11671 +11672 +11673 +11674 +11675 +11676 +11677 +11678 +11679 +11680 +11681 +11682 +11683 +11684 +11685 +11686 +11687 +11688 +11689 +11690 +11691 +11692 +11693 +11694 +11695 +11696 +11697 +11698 +11699 +11700 +11701 +11702 +11703 +11704 +11705 +11706 +11707 +11708 +11709 +11710 +11711 +11712 +11713 +11714 +11715 +11716 +11717 +11718 +11719 +11720 +11721 +11722 +11723 +11724 +11725 +11726 +11727 +11728 +11729 +11730 +11731 +11732 +11733 +11734 +11735 +11736 +11737 +11738 +11739 +11740 +11741 +11742 +11743 +11744 +11745 +11746 +11747 +11748 +11749 +11750 +11751 +11752 +11753 +11754 +11755 +11756 +11757 +11758 +11759 +11760 +11761 +11762 +11763 +11764 +11765 +11766 +11767 +11768 +11769 +11770 +11771 +11772 +11773 +11774 +11775 +11776 +11777 +11778 +11779 +11780 +11781 +11782 +11783 +11784 +11785 +11786 +11787 +11788 +11789 +11790 +11791 +11792 +11793 +11794 +11795 diff --git a/data/mef_metadata.csv b/data/mef_metadata.csv index 2daa3e7a..496fc496 100644 --- a/data/mef_metadata.csv +++ b/data/mef_metadata.csv @@ -1,7522 +1,7522 @@ -2023-07-08 08:13:33.122854 2023-07-08 08:13:33.122859 d6f96d30-585a-4544-83ed-a7e91f468bda {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000018953"}, "pid": "1", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:33.211946 2023-07-08 08:13:33.211951 7ba78757-f2b0-47c6-aec9-5ed44c46a537 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00002676X"}, "pid": "2", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:33.273578 2023-07-08 08:13:33.273582 9e850636-3079-4a12-a5e5-d65fead16803 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000089540"}, "pid": "3", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:33.354194 2023-07-08 08:13:33.354203 019039c5-b410-4c7a-821c-a1c1cbff628b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000115460"}, "pid": "4", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:33.447455 2023-07-08 08:13:33.447463 6a4cafc8-8b08-424a-93c1-fff8754f5471 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000125121"}, "pid": "5", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:33.545608 2023-07-08 08:13:33.545616 3bdf9251-691c-4bb2-8866-4238e348c41e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000132764"}, "pid": "6", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:33.648814 2023-07-08 08:13:33.648823 1a487cf2-ad3c-43e9-ae1b-c289c42d7ac0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000139076"}, "pid": "7", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:33.743707 2023-07-08 08:13:33.743715 f32e5413-e724-4165-972d-32a15024d7f6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000140899"}, "pid": "8", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:33.847586 2023-07-08 08:13:33.847597 1c806a27-f213-4ae6-bc76-64e226abcb6d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00014388X"}, "pid": "9", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:33.940906 2023-07-08 08:13:33.940914 a1fb9ccd-e3df-4b76-b0b0-2cd960055280 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000151408"}, "pid": "10", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:34.029141 2023-07-08 08:13:34.029149 6fc6a60d-f425-471a-a8bc-4f49ccc40d5d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000161632"}, "pid": "11", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:34.126248 2023-07-08 08:13:34.126256 74e9418d-5de5-443e-a923-0dd3b19c4389 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000163791"}, "pid": "12", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:34.23504 2023-07-08 08:13:34.235048 9d5c668c-893a-471c-aa19-33137c95a0d6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000167088"}, "pid": "13", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:34.385897 2023-07-08 08:13:34.385903 282d0af0-3f72-43cb-96ce-9dc9743b3e56 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000175978"}, "pid": "14", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:34.449634 2023-07-08 08:13:34.449637 c43b9ddc-7c01-485f-8479-c375e8543271 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000178020"}, "pid": "15", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:34.51116 2023-07-08 08:13:34.511163 12e7313f-58fa-42b1-b529-fde26ca10599 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000193364"}, "pid": "16", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:34.586572 2023-07-08 08:13:34.58658 59bccd7b-2b9d-4211-b8dd-18dbd92d56fe {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000250422"}, "pid": "17", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:34.679763 2023-07-08 08:13:34.679772 0807a0c7-9aa2-4336-bfc6-6e49de3c2806 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000269905"}, "pid": "18", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:34.76415 2023-07-08 08:13:34.764158 3c1a2722-6719-4a51-b98d-2673f3af2811 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00037959X"}, "pid": "19", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:34.86116 2023-07-08 08:13:34.861167 23f7c95a-affe-40c2-aa17-c7bfe27e218e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000390003"}, "pid": "20", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:34.948011 2023-07-08 08:13:34.948019 f1240785-771c-46d4-828a-584a984839b5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000409928"}, "pid": "21", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:35.042925 2023-07-08 08:13:35.042934 9e1f5d84-f543-417c-8abf-ff2e7add1cb4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000425729"}, "pid": "22", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:35.13747 2023-07-08 08:13:35.137477 d805d370-ec15-4cb0-bb2e-121774e8b240 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000438049"}, "pid": "23", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:35.240503 2023-07-08 08:13:35.240515 29498321-159e-4881-91e1-bf027f8d5023 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000441678"}, "pid": "24", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:35.336919 2023-07-08 08:13:35.336929 b0bd9e1b-92a1-4a04-ab9c-687166b48971 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00045561X"}, "pid": "25", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:35.434638 2023-07-08 08:13:35.434647 40ee3783-165b-4d60-a5e4-a32d83aa3de6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000549568"}, "pid": "26", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:35.52783 2023-07-08 08:13:35.527838 251e0171-9f19-485c-b3bb-5b75084ecaba {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000555851"}, "pid": "27", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:35.625874 2023-07-08 08:13:35.625884 278b93f1-a363-4519-bf1c-c4bf31a97020 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000602140"}, "pid": "28", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:35.728182 2023-07-08 08:13:35.728191 61617904-ee71-43ef-9613-6855e93a1040 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000613258"}, "pid": "29", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:35.820515 2023-07-08 08:13:35.820524 57ef34d3-e7ce-41bb-ab77-c034e4e111d5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000613665"}, "pid": "30", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:35.926811 2023-07-08 08:13:35.926826 31fc7ebf-7c00-407c-a040-ff855d532fac {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000662348"}, "pid": "31", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:36.058791 2023-07-08 08:13:36.058806 0c4a11eb-44cf-4da4-b963-5e02c4b9faf6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000666394"}, "pid": "32", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:36.168479 2023-07-08 08:13:36.168491 df8c0ecd-80e1-4f0e-af00-c47c8cdb7f5d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000746568"}, "pid": "33", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:36.284995 2023-07-08 08:13:36.285004 1330c7d1-59b8-4bc8-9d78-cb92596440a4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00074669X"}, "pid": "34", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:36.394975 2023-07-08 08:13:36.394988 a2831b37-ecf5-4d70-9970-cd06b5510b52 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000749915"}, "pid": "35", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:36.523534 2023-07-08 08:13:36.52355 fc3baa26-431e-4f0c-8d6f-e7417b8ca74d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000821829"}, "pid": "36", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:36.64117 2023-07-08 08:13:36.641183 dea0d906-9843-499c-be86-63f0a68d0d3f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000827673"}, "pid": "37", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:36.762433 2023-07-08 08:13:36.762444 696becc7-bf20-415a-a9f8-30bd054efaf5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000837318"}, "pid": "38", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:36.879061 2023-07-08 08:13:36.87907 78507037-93e9-4298-b7d9-0110224bc889 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000842362"}, "pid": "39", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:36.980162 2023-07-08 08:13:36.980169 dddd1a40-c6ef-4626-9915-319cf890e24a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000844470"}, "pid": "40", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:37.094276 2023-07-08 08:13:37.094286 fc5708eb-ee0d-4cdc-a74c-aea0bc3817ba {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000903515"}, "pid": "41", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:37.215526 2023-07-08 08:13:37.215534 e0260df3-c2d9-4849-ba7a-7dbd5a5071ee {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000907820"}, "pid": "42", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:37.329919 2023-07-08 08:13:37.329927 1724ab6b-d8f8-472f-a671-ca243c8803f2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001106767"}, "pid": "43", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:37.431976 2023-07-08 08:13:37.431984 ff743bc1-a34e-43f6-84ab-1b427efffe47 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001116371"}, "pid": "44", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:37.550014 2023-07-08 08:13:37.550028 226cd7a4-f8e3-4227-9b72-01effe255fe7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00112207X"}, "pid": "45", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:37.659854 2023-07-08 08:13:37.65986 b77be20d-e9eb-4d8a-aa94-2b33a058694c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001148028"}, "pid": "46", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:37.748397 2023-07-08 08:13:37.748408 42b7714d-1cbe-4044-8f5d-d9b6c3b616b9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001156373"}, "pid": "47", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:37.841534 2023-07-08 08:13:37.841545 a42838f1-e729-4d2a-b542-4f68b13581cf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001170325"}, "pid": "48", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:37.932784 2023-07-08 08:13:37.932792 72d717e0-e5c4-4f5e-a688-5c20cbeb237d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001183834"}, "pid": "49", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:38.036741 2023-07-08 08:13:38.036748 b2ed46de-56f1-40df-9a04-bfb6a40727fa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001187813"}, "pid": "50", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:38.141407 2023-07-08 08:13:38.141419 0f453aca-4eae-4a8b-9184-8ae4247075d3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001192396"}, "pid": "51", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:38.249141 2023-07-08 08:13:38.249151 7fe04ce3-57e5-4f43-a8d8-962c6aec6586 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001226355"}, "pid": "52", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:38.358445 2023-07-08 08:13:38.358456 faaa1353-54d3-495e-9127-dbb5b207fe95 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00122722X"}, "pid": "53", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:38.470303 2023-07-08 08:13:38.470311 2835adb7-8341-4e25-9d2f-d1b76d9a5c8b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001247697"}, "pid": "54", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:38.577087 2023-07-08 08:13:38.577098 bc9c3c33-c991-4f1a-8b68-17c15b054a6d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001277936"}, "pid": "55", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:38.684101 2023-07-08 08:13:38.684109 0cbaba9a-41f0-40b8-a93b-ae03c73434b6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001279858"}, "pid": "56", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:38.791687 2023-07-08 08:13:38.791697 5319c3d0-874a-4f9f-a88c-5a28d89fbff6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001282891"}, "pid": "57", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:38.89017 2023-07-08 08:13:38.890179 38289e71-0176-4f04-ba62-fa92d02da11b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001284150"}, "pid": "58", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:39.000988 2023-07-08 08:13:39.000997 6648b0fe-fe23-459c-8a8a-f2b9d616a0e9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001299662"}, "pid": "59", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:39.100825 2023-07-08 08:13:39.100834 a6410b6e-d5a2-413a-839c-b65c499a0f47 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001303317"}, "pid": "60", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:39.200467 2023-07-08 08:13:39.200478 e1b9fa0f-bc2f-4bb8-8917-2f8e6b537605 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001306634"}, "pid": "61", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:39.320186 2023-07-08 08:13:39.320198 08bacce1-5775-4984-b1ca-b85d0ddb43bb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001330578"}, "pid": "62", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:39.431117 2023-07-08 08:13:39.431125 940c4144-1cff-4d01-9ca7-216129799590 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001371924"}, "pid": "63", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:39.528011 2023-07-08 08:13:39.528019 1ceb5c7e-7876-400c-a69f-ce21ea6e6d2f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001376136"}, "pid": "64", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:39.62949 2023-07-08 08:13:39.629501 7b41a68b-6bb9-42c3-af67-baaa8c7dd046 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001378600"}, "pid": "65", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:39.727808 2023-07-08 08:13:39.727817 ba294fe8-1457-48b2-87b8-eca1cc35f0b9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001381504"}, "pid": "66", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:39.836428 2023-07-08 08:13:39.836437 3cf9ffd0-ab02-485e-82e7-80a2484016fb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001434756"}, "pid": "67", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:39.947323 2023-07-08 08:13:39.947331 a4711d58-2c79-4a7a-9470-f6164fc6479e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001436872"}, "pid": "68", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:40.042528 2023-07-08 08:13:40.042536 1e95d6f5-3da9-4988-8a4f-f7b7a69c0fa2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001453459"}, "pid": "69", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:40.147212 2023-07-08 08:13:40.147225 3ed78099-7290-4807-8f6d-6e151eb3ca0b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001457101"}, "pid": "70", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:40.258121 2023-07-08 08:13:40.258129 4e155426-e0b2-4c00-85d9-22d08eefc001 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002004526"}, "pid": "71", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:40.356949 2023-07-08 08:13:40.356959 0d491318-9742-4362-8dca-2af7fa43e57b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002102536"}, "pid": "72", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:40.459073 2023-07-08 08:13:40.459083 5fc8b4d8-2709-4ab4-b219-bc1a874f0231 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00210637X"}, "pid": "73", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:40.564843 2023-07-08 08:13:40.564854 9cfd1913-6b69-4dbc-b359-895f8018e79e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002111748"}, "pid": "74", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:40.670053 2023-07-08 08:13:40.670063 dea48f20-7072-49b2-8964-70a8388fdddb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002128683"}, "pid": "75", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:40.768919 2023-07-08 08:13:40.768928 785850a1-70fc-46d6-9074-2f9e36c99ed5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002148323"}, "pid": "76", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:40.876523 2023-07-08 08:13:40.876528 eb7a1eec-4661-4891-a04f-a225a1bda940 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002149176"}, "pid": "77", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:40.978375 2023-07-08 08:13:40.97838 73053dd5-1b1f-45db-bc3b-d36b2e319e8e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002150492"}, "pid": "78", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:41.089466 2023-07-08 08:13:41.089477 55fc33ea-a7aa-43f8-a2e7-383e4b106815 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002153912"}, "pid": "79", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:41.213283 2023-07-08 08:13:41.213293 99fa836b-7a8a-49ba-9e51-0480fcd04bfb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002156954"}, "pid": "80", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:41.312579 2023-07-08 08:13:41.312589 60a84f45-a1e2-498a-bcf2-6c088932aaf6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002171260"}, "pid": "81", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:41.396114 2023-07-08 08:13:41.396122 35c8afb5-7125-412d-bcee-81838ff23f76 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002210819"}, "pid": "82", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:41.500535 2023-07-08 08:13:41.500545 2e130b9d-7d3d-4e2d-b5d5-cdf34b46e252 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00221153X"}, "pid": "83", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:41.610219 2023-07-08 08:13:41.610233 765a695a-f657-47dd-abdd-d760b528ef1d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00221167X"}, "pid": "84", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:41.725387 2023-07-08 08:13:41.725396 e922fe25-cd72-4aaf-9e7e-6b072abb6919 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002215942"}, "pid": "85", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:41.82807 2023-07-08 08:13:41.828079 d9df9cb4-b5ef-4e19-9e88-04536acd0615 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002356368"}, "pid": "86", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:41.927485 2023-07-08 08:13:41.927494 b7fbf50c-0de5-4b26-bd13-4127abdb9057 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00236266X"}, "pid": "87", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:42.024591 2023-07-08 08:13:42.024601 17a3036c-b895-4c3a-adbb-1e3b9d182da4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002362880"}, "pid": "88", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:42.123034 2023-07-08 08:13:42.123043 f3d019ce-728a-489b-8897-28ee658b072c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002407612"}, "pid": "89", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:42.242476 2023-07-08 08:13:42.242487 26ae3c1f-3e6d-4024-907c-eced2d963e10 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002411083"}, "pid": "90", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:42.362812 2023-07-08 08:13:42.362821 12b9ddfd-9af4-428f-bcc6-b5952b8f62b6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002413957"}, "pid": "91", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:42.466304 2023-07-08 08:13:42.466312 7c8f86f5-e802-4639-a3b2-9c2f6c6134e1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002447797"}, "pid": "92", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:42.563864 2023-07-08 08:13:42.563874 911684d5-d8a6-4b01-9933-d71cf52c182f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002461102"}, "pid": "93", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:42.660851 2023-07-08 08:13:42.660854 5358754e-0c7d-4951-b31c-ca60b1b8b760 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002476738"}, "pid": "94", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:42.747485 2023-07-08 08:13:42.747493 4fd81120-99a9-4d1c-acb4-0a4c6b647179 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002529041"}, "pid": "95", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:42.855879 2023-07-08 08:13:42.85589 958857b3-adbc-4801-ab05-524ceab1f102 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002530937"}, "pid": "96", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:42.973224 2023-07-08 08:13:42.973235 49525b5a-81b1-4ae7-a892-9d39f2a6127a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002531844"}, "pid": "97", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:43.083175 2023-07-08 08:13:43.083185 92a722a7-433c-40aa-80b5-9c55bfa3f42c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002537966"}, "pid": "98", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:43.208294 2023-07-08 08:13:43.208305 a58423de-d10f-439c-9411-61ec0e82d45f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002546329"}, "pid": "99", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:43.318712 2023-07-08 08:13:43.318721 05e5bca4-cf94-4195-b87b-bf1956614f07 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002602555"}, "pid": "100", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:43.430795 2023-07-08 08:13:43.430804 e9546b6f-27d5-4d28-a927-ce9cd2c338b0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002606232"}, "pid": "101", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:43.54775 2023-07-08 08:13:43.547764 6a829438-392d-4d77-91e1-cd08ab87a973 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00260955X"}, "pid": "102", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:43.673674 2023-07-08 08:13:43.673688 f49493d4-bad0-46a0-abd8-796dee767ea9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002610922"}, "pid": "103", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:43.797939 2023-07-08 08:13:43.797951 639a5736-10f4-4018-8ffe-b30c710d2f62 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002624508"}, "pid": "104", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:43.908949 2023-07-08 08:13:43.908961 8fd62775-a6a7-4404-9bf1-ddaf19e93615 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002627019"}, "pid": "105", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:44.016971 2023-07-08 08:13:44.016979 becd4539-d1cf-4d56-a861-ac5db37c0897 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002740990"}, "pid": "106", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:44.133192 2023-07-08 08:13:44.133201 f645221e-376b-4f52-9900-232d0b8f48fb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002744759"}, "pid": "107", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:44.246065 2023-07-08 08:13:44.246076 faebaee2-5c72-421e-8801-eb3593269f72 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002746387"}, "pid": "108", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:44.364254 2023-07-08 08:13:44.364263 b5a68786-e6b8-4d75-b813-6b126378916a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00274659X"}, "pid": "109", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:44.515763 2023-07-08 08:13:44.515773 ee2d900d-df90-4bc1-a166-582c11cd914c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00275486X"}, "pid": "110", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:44.63166 2023-07-08 08:13:44.631669 dbbdfb00-0e5d-44fd-841f-ba1656a721de {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002765187"}, "pid": "111", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:44.734132 2023-07-08 08:13:44.734139 053c0c2c-d72f-4506-aec8-26e37fba6429 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00278064X"}, "pid": "112", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:44.851086 2023-07-08 08:13:44.851095 bcd8e5aa-d744-476e-ad97-c96c08b5cad0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002785684"}, "pid": "113", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:44.96042 2023-07-08 08:13:44.96043 87b1c9a2-1d97-4f2f-a9d3-e2f964644c02 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002804077"}, "pid": "114", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:45.07476 2023-07-08 08:13:45.074765 e8da6b84-9bbb-418f-a1c3-64d7d733e12a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002903296"}, "pid": "115", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:45.185822 2023-07-08 08:13:45.185833 1adda358-a631-4e86-8bcd-33bdfae4b589 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002910934"}, "pid": "116", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:45.289828 2023-07-08 08:13:45.289837 12027608-0fe8-443d-99c5-8782c087b429 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/003006816"}, "pid": "117", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:45.397742 2023-07-08 08:13:45.397752 1e5413de-b9af-4012-b5f6-1b9686f1914b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/003016617"}, "pid": "118", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:45.503966 2023-07-08 08:13:45.503975 2bdc1282-ce5b-4b34-865f-7b0afd3b1e81 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/003051986"}, "pid": "119", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:45.635586 2023-07-08 08:13:45.635595 4690189b-6aa2-4626-bc2f-f1dd787ffd47 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/003063976"}, "pid": "120", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:45.772575 2023-07-08 08:13:45.772584 e9610d50-b0b6-43f4-b5f1-ac0d9686cd58 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/003071316"}, "pid": "121", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:45.878804 2023-07-08 08:13:45.878812 63a163c5-a8b6-4869-9761-c1ccbcaf45d3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/003078434"}, "pid": "122", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:45.987615 2023-07-08 08:13:45.987624 d42e9513-953b-4f2a-b548-434d065989cd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/003082725"}, "pid": "123", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:46.109217 2023-07-08 08:13:46.109233 ec087803-5122-4317-ba18-974c48b39e55 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/003202720"}, "pid": "124", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:46.226348 2023-07-08 08:13:46.226358 c95deb69-d9e8-49ed-9942-a5519851539a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/003500950"}, "pid": "125", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:46.345753 2023-07-08 08:13:46.345761 166f8f18-c305-4919-919a-a887c99d0108 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/003700526"}, "pid": "126", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:46.451596 2023-07-08 08:13:46.451604 2f0466ad-4a9f-4177-9eb8-3ff25185345d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00370064X"}, "pid": "127", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:46.553865 2023-07-08 08:13:46.553874 cf8e88c6-ffd1-4ebd-a832-bf740b00e8ef {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/003806596"}, "pid": "128", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:46.682557 2023-07-08 08:13:46.68257 54d987a1-e266-481f-8633-7ba6a4fdf2cd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/003811840"}, "pid": "129", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:46.803271 2023-07-08 08:13:46.803281 59b54431-db37-49f7-a195-31a02fdb49b0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00381307X"}, "pid": "130", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:46.967056 2023-07-08 08:13:46.967062 7ff0a84c-27cc-4bd9-8ac1-71cad7a1d599 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004008294"}, "pid": "131", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:47.11426 2023-07-08 08:13:47.11427 ce9d4038-abe3-4581-b68b-f13e13bdec61 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004029763"}, "pid": "132", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:47.227945 2023-07-08 08:13:47.227956 ec1062f4-4620-4eaf-b66b-31ed0b116ead {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004036239"}, "pid": "133", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:47.350064 2023-07-08 08:13:47.350075 fade6896-dad2-4c9a-a5ee-279bf49d73ca {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004037073"}, "pid": "134", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:47.459755 2023-07-08 08:13:47.459763 4d5203f5-d8d8-4db3-b2d4-6651e8c12699 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004056264"}, "pid": "135", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:47.556755 2023-07-08 08:13:47.556768 b0e054fb-bb84-4a9a-ab7a-4e7ae55820ea {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00406397X"}, "pid": "136", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:47.684017 2023-07-08 08:13:47.684025 459b3738-4284-41e6-b536-2fe01b9f730f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004083687"}, "pid": "137", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:47.791417 2023-07-08 08:13:47.791428 b9be5953-a363-472f-b4ff-d3fcac271f9b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004084233"}, "pid": "138", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:47.893476 2023-07-08 08:13:47.893485 a2ffb9a5-6ce7-4bd8-8a11-a0963b4982fc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00408487X"}, "pid": "139", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:48.001906 2023-07-08 08:13:48.001917 18c1ffb3-8cc6-4152-b555-7bf623e6db63 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004088212"}, "pid": "140", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:48.099735 2023-07-08 08:13:48.099743 085fca95-d300-45c2-8a7b-21b894c0bf07 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004089049"}, "pid": "141", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:48.185553 2023-07-08 08:13:48.185563 13415cf1-7791-4a62-b796-5e61aaf4922f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00409753X"}, "pid": "142", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:48.292134 2023-07-08 08:13:48.292143 ad6c1141-b471-48e0-96a7-471029e9ca46 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004106059"}, "pid": "143", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:48.399412 2023-07-08 08:13:48.39942 445c350f-45ee-4b68-a79b-e95a4015710b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004110404"}, "pid": "144", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:48.48798 2023-07-08 08:13:48.487989 5382a959-1ec2-4754-ad38-4cd63e36b90b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004112148"}, "pid": "145", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:48.585466 2023-07-08 08:13:48.585475 86d177e4-b9c5-4032-bd58-4def99de3efb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004115996"}, "pid": "146", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:48.688976 2023-07-08 08:13:48.688999 64f9c0e1-011a-43c9-af2c-37bb14155458 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004119983"}, "pid": "147", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:48.799065 2023-07-08 08:13:48.799073 fa7adeff-99ab-4ca2-9522-d217a64820e4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004123158"}, "pid": "148", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:48.887167 2023-07-08 08:13:48.887174 9036d10d-0c51-4e31-b32f-b22574a27100 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004127900"}, "pid": "149", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:48.992295 2023-07-08 08:13:48.992305 9ba4a541-7749-4c8b-a247-c8802f067f05 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00414631X"}, "pid": "150", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:49.091191 2023-07-08 08:13:49.091205 a6ec5992-086c-43fb-8f5e-85eed23837f9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004149289"}, "pid": "151", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:49.210435 2023-07-08 08:13:49.210445 310383b9-2ea4-42b0-99f0-fe9a481dcad4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004150988"}, "pid": "152", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:49.310747 2023-07-08 08:13:49.310755 d7cdeef2-b05a-4912-8212-5e323998b2f1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004151917"}, "pid": "153", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:49.420755 2023-07-08 08:13:49.420765 0cd77d1a-af56-4c00-9f73-098efdd0151c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004159837"}, "pid": "154", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:49.52915 2023-07-08 08:13:49.52916 796083ba-f00a-4fa4-ac1f-459008c550a9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004171004"}, "pid": "155", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:49.650359 2023-07-08 08:13:49.650366 9480d8c8-995a-4860-bb7f-dc76d37a2723 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00418484X"}, "pid": "156", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:49.756642 2023-07-08 08:13:49.75665 6b9d8a07-45e6-485f-b937-f8f360b37830 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004191811"}, "pid": "157", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:49.868786 2023-07-08 08:13:49.868795 5b9373b5-4f39-4438-a7d7-f52fd55d8b31 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004196287"}, "pid": "158", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:49.981325 2023-07-08 08:13:49.981336 d2de4603-d901-45c3-beb1-d6e68341d033 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004220765"}, "pid": "159", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:50.117184 2023-07-08 08:13:50.117197 175dd82f-118a-46f5-9963-3903a1d125ab {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004232933"}, "pid": "160", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:50.226261 2023-07-08 08:13:50.22627 f0c75360-faa7-489e-9426-73c479232e62 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004247280"}, "pid": "161", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:50.335133 2023-07-08 08:13:50.335144 f2843349-c8de-40c2-898a-0ad0d6467bac {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004263707"}, "pid": "162", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:50.449149 2023-07-08 08:13:50.44916 ffae396a-17c7-42e1-a3c2-ba3a002ddb31 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004265718"}, "pid": "163", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:50.567433 2023-07-08 08:13:50.567446 3f40cd4c-8b9c-4c68-a3e0-3c6f7019fa67 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004270525"}, "pid": "164", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:50.680031 2023-07-08 08:13:50.680039 edf77e61-2576-43b2-86d9-6f6fbe055fe1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004285565"}, "pid": "165", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:50.793357 2023-07-08 08:13:50.793367 5cb43804-06bf-4103-832e-c068409976e3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004288637"}, "pid": "166", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:50.915324 2023-07-08 08:13:50.915332 26b46ffa-a0c5-4dac-b6ec-a61fff6d5c3d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004290674"}, "pid": "167", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:51.037229 2023-07-08 08:13:51.037238 39aa93d4-03e3-4b65-bd7d-8a7f11b79b0e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004315669"}, "pid": "168", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:51.154831 2023-07-08 08:13:51.15484 aca89b09-e464-48c4-8692-b7fde1280e25 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004340183"}, "pid": "169", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:51.297364 2023-07-08 08:13:51.297372 c8759e57-a2a3-4371-90e8-ef25946555f5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004358554"}, "pid": "170", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:51.432249 2023-07-08 08:13:51.43226 b82ae969-ee35-4fab-9434-87eafe6a87bd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004361342"}, "pid": "171", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:51.545704 2023-07-08 08:13:51.545717 9bf0a270-c9f9-4963-a10a-a2e75bab58c2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004363779"}, "pid": "172", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:51.652295 2023-07-08 08:13:51.652304 96173dec-09d7-4aa7-810c-71e9602b2bd1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004379802"}, "pid": "173", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:51.776581 2023-07-08 08:13:51.776591 eb96e54f-3692-4eb8-904c-28e620c434ad {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004384865"}, "pid": "174", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:51.891978 2023-07-08 08:13:51.891987 5317b86d-7331-4c80-90fd-fa790c066a6f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004394828"}, "pid": "175", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:51.99897 2023-07-08 08:13:51.998977 0b6cc3ee-f8b9-4017-b3df-4d5fbd6ba543 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004401875"}, "pid": "176", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:52.096922 2023-07-08 08:13:52.096932 bd53ed39-cf75-4462-a2ff-ed4ca675418e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004406583"}, "pid": "177", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:52.207921 2023-07-08 08:13:52.207937 d9f93adf-8bb7-4c50-ab15-c773f6d853b0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004407156"}, "pid": "178", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:52.313569 2023-07-08 08:13:52.313578 07b7f9b3-79d2-4cd9-80da-207d9b02daba {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00442204X"}, "pid": "179", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:52.43019 2023-07-08 08:13:52.4302 c96c8e6c-8aab-4b36-a7ba-527ee1146223 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004427734"}, "pid": "180", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:52.558078 2023-07-08 08:13:52.558092 79c01c93-3910-4120-925e-dfe7e1b0dec1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004444507"}, "pid": "181", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:52.675688 2023-07-08 08:13:52.6757 88fe8fe9-d739-468f-aa03-0dc47c92ce40 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004453379"}, "pid": "182", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:52.773092 2023-07-08 08:13:52.773104 86321556-0db8-4b35-bc34-8c1227ffb264 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004462572"}, "pid": "183", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:52.863315 2023-07-08 08:13:52.863322 cf634aeb-3c28-41c0-a5e8-fe8133daedec {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004475771"}, "pid": "184", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:52.978809 2023-07-08 08:13:52.978821 b5db8ecc-cf23-49ea-9cd4-e8998a9d10a6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004479319"}, "pid": "185", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:53.109428 2023-07-08 08:13:53.10944 eee81c28-209c-41f1-9a52-40cd78b5a7f2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004507673"}, "pid": "186", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:53.227206 2023-07-08 08:13:53.227213 1f87769f-bf0f-4a7a-8029-502868997ea0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004522176"}, "pid": "187", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:53.325408 2023-07-08 08:13:53.325419 7c376127-38fc-4072-bc29-b08730d4fcfe {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004534972"}, "pid": "188", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:53.426264 2023-07-08 08:13:53.426273 d83664b0-7d60-402c-8ccb-09c740cc60e0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004535642"}, "pid": "189", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:53.523896 2023-07-08 08:13:53.523905 b704aa35-0575-44d3-bf16-cade52f33725 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004544617"}, "pid": "190", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:53.629301 2023-07-08 08:13:53.629315 fd1098e6-4445-4715-82e4-bd4427369542 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004554159"}, "pid": "191", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:53.736882 2023-07-08 08:13:53.736891 dff17241-8e9b-4a84-ba6e-6813e16197b5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004556208"}, "pid": "192", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:53.863635 2023-07-08 08:13:53.863651 3420fa62-9587-45d5-93a7-f5d759d8adef {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004559444"}, "pid": "193", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:53.989453 2023-07-08 08:13:53.989464 c6309652-d1fc-4b49-942f-70af57d0bb12 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004570359"}, "pid": "194", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:54.114582 2023-07-08 08:13:54.114594 b86323dd-92db-4b27-9869-2ffa13d0dcf5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004612876"}, "pid": "195", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:54.230516 2023-07-08 08:13:54.230524 cbb02d43-7280-45a3-8cf1-b59a9b731023 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004652851"}, "pid": "196", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:54.333968 2023-07-08 08:13:54.333979 0b26cc6f-992e-4436-8e85-4bbd8b2acf9e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004656253"}, "pid": "197", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:54.443939 2023-07-08 08:13:54.44395 5c2d0d15-2fd3-4716-90e0-bd42fb3c11f4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004674316"}, "pid": "198", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:54.551757 2023-07-08 08:13:54.551765 0d4dc3c5-f602-4bb5-be4e-f3cf35334032 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004680596"}, "pid": "199", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:54.668518 2023-07-08 08:13:54.668526 c20ca726-ecf4-4e89-97e4-2367a7c78637 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004685873"}, "pid": "200", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:54.78465 2023-07-08 08:13:54.78466 80984acd-4692-4c74-abef-4763f8bf7aac {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004687280"}, "pid": "201", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:54.91843 2023-07-08 08:13:54.918442 c6d4f140-8268-45d9-9d7a-704952f1f7e4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004708083"}, "pid": "202", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:55.026421 2023-07-08 08:13:55.026427 59b067de-f37e-4edb-bd54-491f0fb96cbb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004726642"}, "pid": "203", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:55.141587 2023-07-08 08:13:55.141595 10217ef9-6caf-4ef3-ab86-81431e2d502a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00473985X"}, "pid": "204", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:55.247188 2023-07-08 08:13:55.247194 6f0ab4d1-6d7e-4efe-87a2-3fb8c96f40ad {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004746333"}, "pid": "205", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:55.343915 2023-07-08 08:13:55.343928 e02a51fb-2b69-427f-9782-c6baf14ba6a6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004753194"}, "pid": "206", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:55.450167 2023-07-08 08:13:55.450177 ff2889ec-4e36-4e26-9574-515d1aa91618 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004772350"}, "pid": "207", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:55.563651 2023-07-08 08:13:55.563659 fc71c2bc-9b4c-4d1a-a317-5078dd3e8904 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00480435X"}, "pid": "208", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:55.692522 2023-07-08 08:13:55.692535 9e72afc5-7c99-4098-b694-05c95742fd21 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004812476"}, "pid": "209", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:55.814207 2023-07-08 08:13:55.814215 da40cfa6-5e80-4022-9190-560c377ca86b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004815483"}, "pid": "210", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:55.931514 2023-07-08 08:13:55.931523 1cf06dca-61a9-465a-9ef0-54b110f6058e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004837541"}, "pid": "211", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:56.044638 2023-07-08 08:13:56.044645 60577607-6191-4dba-a616-31e4e1a90d70 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004867645"}, "pid": "212", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:56.15491 2023-07-08 08:13:56.154919 d257f4fe-7877-4c49-92cd-53a72176d943 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004868250"}, "pid": "213", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:56.280043 2023-07-08 08:13:56.280056 21a26b1a-10f0-4f08-af35-40c3c23ff101 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004888324"}, "pid": "214", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:56.382248 2023-07-08 08:13:56.382255 59fed84c-ba99-47fd-946e-667a9e4950db {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004890868"}, "pid": "215", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:56.525606 2023-07-08 08:13:56.525612 552c0ca2-8f0f-4c6e-90b9-97f712361629 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004895002"}, "pid": "216", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:56.63604 2023-07-08 08:13:56.636053 e3854a17-0fab-4385-be76-2456a9c4a8fa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00490110X"}, "pid": "217", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:56.752233 2023-07-08 08:13:56.752242 9401475d-788c-4c01-8f3a-5b0929ac3aca {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004904508"}, "pid": "218", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:56.857521 2023-07-08 08:13:56.857534 706d79bc-1208-4209-8d69-6c5db6e123d7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004921445"}, "pid": "219", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:56.964001 2023-07-08 08:13:56.96401 255f1e31-fc6a-425b-b37c-0b60dcf41874 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004930118"}, "pid": "220", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:57.087279 2023-07-08 08:13:57.087285 b809d6ed-cc44-4175-bd87-c99f50869f61 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00495081X"}, "pid": "221", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:57.204326 2023-07-08 08:13:57.20434 bffab0d0-39ae-4329-a2d5-54839f227698 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004954599"}, "pid": "222", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:57.329887 2023-07-08 08:13:57.329893 bdd8488f-d646-423d-b03a-6eb56d4c19f2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004984242"}, "pid": "223", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:57.461504 2023-07-08 08:13:57.461515 d98c6415-5c12-4cb1-8725-af4b93cf7353 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004995732"}, "pid": "224", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:57.593211 2023-07-08 08:13:57.593223 f7306011-8187-433d-ba82-21fd523c5132 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/005029902"}, "pid": "225", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:57.73485 2023-07-08 08:13:57.734862 1a1e1e5f-bea2-4754-abff-00701dbdfd98 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/005034523"}, "pid": "226", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:57.847319 2023-07-08 08:13:57.847327 6f6ad63b-26c1-4e77-8b85-9638b0ab6ca2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/005053625"}, "pid": "227", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:57.977149 2023-07-08 08:13:57.977165 65a275b3-1cad-48ea-9603-46c553032c5a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00505656X"}, "pid": "228", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:58.09291 2023-07-08 08:13:58.092922 d9d26abe-f795-4afc-83ba-ba63ddcdae1f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/005059054"}, "pid": "229", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:58.222407 2023-07-08 08:13:58.222419 ecf8d6b2-778f-4d5f-be86-cc23b36c92aa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/005073189"}, "pid": "230", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:58.352513 2023-07-08 08:13:58.352527 b74b87eb-3f12-4d5a-bd48-4132fb74bdf6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/005095344"}, "pid": "231", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:58.482612 2023-07-08 08:13:58.482627 88fbb0f4-680c-4b90-98fe-cdd43c43d106 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00509657X"}, "pid": "232", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:58.599112 2023-07-08 08:13:58.599122 b5e24e81-a4de-4d21-8fb1-158c3c949d0e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/005124972"}, "pid": "233", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:58.740685 2023-07-08 08:13:58.740697 14c8f507-fe03-44b7-956a-187e0bc31c35 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/006002579"}, "pid": "234", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:58.857518 2023-07-08 08:13:58.857527 60e524b3-2d24-4cd2-a6bd-25c2116d9d19 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/006007295"}, "pid": "235", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:58.984241 2023-07-08 08:13:58.984254 6648f204-b06e-4dcf-9d9f-313f564275a7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/006010008"}, "pid": "236", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:59.089431 2023-07-08 08:13:59.089444 76728abf-022c-444e-961a-6583659cd793 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/006058825"}, "pid": "237", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:59.217524 2023-07-08 08:13:59.217533 8c8caedc-4942-4651-8172-b42c1e69dac0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/006216722"}, "pid": "238", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:59.334187 2023-07-08 08:13:59.334194 64b78751-6926-4480-96aa-e8a2b957834d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/006226663"}, "pid": "239", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:59.463763 2023-07-08 08:13:59.463767 2afa5c73-3801-452d-8d7e-6603c38ea8fe {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/006234224"}, "pid": "240", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:59.559023 2023-07-08 08:13:59.559039 fa87ea08-2faa-4003-b8dd-272ce12a36b9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/006237754"}, "pid": "241", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:59.667669 2023-07-08 08:13:59.667677 91ffe2e7-50ee-4806-a144-163cb7bb75bf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/006243282"}, "pid": "242", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:59.786162 2023-07-08 08:13:59.786167 9c7a994c-d36a-414d-9b76-4c4b5623217f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/006674410"}, "pid": "243", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:13:59.891419 2023-07-08 08:13:59.891431 d3dbc7e5-859d-4940-a336-2ae17348a084 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/006684378"}, "pid": "244", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:00.019478 2023-07-08 08:14:00.019481 642d9ead-9273-4cd8-917d-715d9492d01c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/006688977"}, "pid": "245", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:00.132584 2023-07-08 08:14:00.132593 ea1c4216-e2df-471d-b9c2-ff25e61cdc3f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/006693911"}, "pid": "246", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:00.251589 2023-07-08 08:14:00.251597 a502cab7-7f7e-4bb6-b639-9432e6357f12 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/006699618"}, "pid": "247", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:00.365358 2023-07-08 08:14:00.365367 faa1a6f3-d71c-42e0-b4e8-e1ebabe5b097 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/006705847"}, "pid": "248", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:00.493196 2023-07-08 08:14:00.493206 95ad2fcf-4e65-4a5c-8c96-624034b5210e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007015089"}, "pid": "249", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:00.610784 2023-07-08 08:14:00.610793 cb52e5c2-bfe0-47bc-b485-39753906a4e0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007030150"}, "pid": "250", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:00.785691 2023-07-08 08:14:00.785703 e22a558e-f88c-464d-9e70-0c82807a7a04 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007031394"}, "pid": "251", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:00.97271 2023-07-08 08:14:00.972721 4290c3d5-d972-43c6-b7c1-a4b80c5d30e6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007032641"}, "pid": "252", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:01.102106 2023-07-08 08:14:01.102145 af43acb2-d62a-4fc8-9c7b-b67413e59037 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007059981"}, "pid": "253", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:01.220044 2023-07-08 08:14:01.220053 4100afe8-9c41-4dfc-b8e1-ef8a4024164f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007060637"}, "pid": "254", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:01.350483 2023-07-08 08:14:01.350492 3024ea8b-d6a8-4aa1-bfcf-5def8f1d8a7c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007061757"}, "pid": "255", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:01.464192 2023-07-08 08:14:01.4642 7a35a6e5-cdb1-4225-a847-e1bef60a016b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007097123"}, "pid": "256", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:01.569236 2023-07-08 08:14:01.569247 c4d566f5-70cf-4ced-8de4-097f09bb0b6b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007100434"}, "pid": "257", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:01.68776 2023-07-08 08:14:01.687767 92dd8399-e612-4779-accd-b13f62433a43 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007104456"}, "pid": "258", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:01.801347 2023-07-08 08:14:01.801357 73bd8d47-3f3b-41b5-865a-8aefb579246f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007104804"}, "pid": "259", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:01.912402 2023-07-08 08:14:01.912411 a27a4da6-a6c8-4cf9-8d45-01e8dd9aa824 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007119666"}, "pid": "260", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:02.017763 2023-07-08 08:14:02.017774 4abc8a90-44b4-4413-aac1-f4bb778fce77 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007172125"}, "pid": "261", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:02.149608 2023-07-08 08:14:02.149616 9586953e-83f3-47f8-b0ae-2d8c875d24a5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007207409"}, "pid": "262", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:02.269383 2023-07-08 08:14:02.269393 edef4651-f18b-409f-882a-b2b4f40f4c5a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007209320"}, "pid": "263", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:02.387709 2023-07-08 08:14:02.38772 995c774d-8dd4-4bd4-b5e3-34ea70e8df8f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007210019"}, "pid": "264", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:02.493738 2023-07-08 08:14:02.493748 db1a03ed-494b-44fa-b15d-ea2f34f61b02 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007221010"}, "pid": "265", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:02.61153 2023-07-08 08:14:02.611541 ac7fb335-4980-491c-8a10-432675888315 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007229003"}, "pid": "266", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:02.739441 2023-07-08 08:14:02.739452 ae7478cc-c11a-4e38-9365-aef6dc4168e5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007233000"}, "pid": "267", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:02.856872 2023-07-08 08:14:02.856884 10a72f05-3a3e-40bc-a3c4-6bc72466d9c0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007251920"}, "pid": "268", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:02.973284 2023-07-08 08:14:02.973294 1e210ffd-3d30-4226-beec-cb0c4f1e2f53 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007262329"}, "pid": "269", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:03.118791 2023-07-08 08:14:03.1188 6c7a4acb-cd57-4fe3-b9c1-3db31e4ea475 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007269358"}, "pid": "270", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:03.227034 2023-07-08 08:14:03.227045 dd6b809d-66ef-41d9-9d00-0580e3f01d59 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007284659"}, "pid": "271", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:03.343552 2023-07-08 08:14:03.343568 0c589c4f-1740-4cf9-b791-5707a27e1f27 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007305117"}, "pid": "272", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:03.456762 2023-07-08 08:14:03.456769 9732792d-9f11-4226-a85e-37f8fa426985 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007309600"}, "pid": "273", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:03.577102 2023-07-08 08:14:03.577113 84518b07-c1d7-4431-a0fd-5eee5b65a21b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007310005"}, "pid": "274", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:03.688648 2023-07-08 08:14:03.688658 ff75aa06-37e5-442a-a2eb-346157d4a29a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00731566X"}, "pid": "275", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:03.814284 2023-07-08 08:14:03.814291 dacd1016-aeb0-4a32-892f-732a97f66a5d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007318413"}, "pid": "276", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:03.940156 2023-07-08 08:14:03.940172 f580a799-5fb0-4565-846d-da3076969894 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007319126"}, "pid": "277", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:04.06111 2023-07-08 08:14:04.061119 140ce002-0c82-44e8-b35d-9d94813bb0da {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007322062"}, "pid": "278", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:04.194561 2023-07-08 08:14:04.194571 6b099ab4-4c86-4adb-b2e6-1e1f425dc43b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007353189"}, "pid": "279", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:04.301466 2023-07-08 08:14:04.301475 a96b0544-03a7-426b-90ad-bbf9ec32158a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007365950"}, "pid": "280", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:04.419625 2023-07-08 08:14:04.419634 d17d3345-cbf4-422b-9e4f-3691f8fc81d6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007366701"}, "pid": "281", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:04.535501 2023-07-08 08:14:04.535582 220671e6-0a47-4599-bd3b-fa20c5c70fcd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007378238"}, "pid": "282", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:04.663071 2023-07-08 08:14:04.663082 7141c14d-2883-4d23-a4ee-9c56149432d8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007386133"}, "pid": "283", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:04.782601 2023-07-08 08:14:04.782613 0176cabe-b1df-451a-82e9-d35cf6c69a5c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007391765"}, "pid": "284", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:04.892901 2023-07-08 08:14:04.892914 ac92c54d-3381-4db8-a848-220bd7cb6f7e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007396848"}, "pid": "285", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:05.007993 2023-07-08 08:14:05.008006 4f4be203-9a4d-49ce-ae0e-302a43e50607 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007405995"}, "pid": "286", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:05.112765 2023-07-08 08:14:05.112774 99897bec-a598-472d-8d2e-95bd4ea4ab67 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007412193"}, "pid": "287", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:05.230344 2023-07-08 08:14:05.230356 56eeec72-ab12-4a07-be51-5c6b4758e10d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007420501"}, "pid": "288", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:05.337869 2023-07-08 08:14:05.337876 eebd1942-8b7d-4b94-ae8a-5bf9ebf7a393 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007426321"}, "pid": "289", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:05.446766 2023-07-08 08:14:05.446774 e3e0c4a6-230a-48f8-8c95-1922b5327915 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007439210"}, "pid": "290", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:05.541841 2023-07-08 08:14:05.54185 c355b0ae-3237-44f8-bac2-ff55fcb73eac {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007444788"}, "pid": "291", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:05.638808 2023-07-08 08:14:05.638817 f2fc578f-c490-4cb2-9f03-5b3b87ba1dad {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007453523"}, "pid": "292", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:05.754358 2023-07-08 08:14:05.754367 9c1e45f7-0ff5-409e-8a6b-94e70bf6fb3f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007473338"}, "pid": "293", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:05.885742 2023-07-08 08:14:05.885751 c3fda5c5-d819-4bee-82d4-2c1379df0720 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007495684"}, "pid": "294", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:06.013617 2023-07-08 08:14:06.013627 8cd1a2e4-5657-4e6b-9a98-72dc7ddaf2b7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007543204"}, "pid": "295", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:06.151065 2023-07-08 08:14:06.1511 8fa82a9c-a4b2-4b8d-9baf-cbca5938e6d3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007547692"}, "pid": "296", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:06.27606 2023-07-08 08:14:06.276071 386025e8-2013-4a20-af96-abaef00b8fa3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007550278"}, "pid": "297", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:06.402586 2023-07-08 08:14:06.402594 5c408188-f6dd-4d7d-86d3-592a9b6cf87d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007553684"}, "pid": "298", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:06.52686 2023-07-08 08:14:06.526871 b8cdafc2-097c-4553-b69b-50718f42c8ed {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007555245"}, "pid": "299", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:06.6486 2023-07-08 08:14:06.648611 c0df09cd-a799-4b03-984b-903247c41ef2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007571054"}, "pid": "300", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:06.77829 2023-07-08 08:14:06.778293 584e205b-1580-4af9-8d22-638cd41cc9d2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007575882"}, "pid": "301", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:06.880042 2023-07-08 08:14:06.880052 8606ae73-b236-46ed-8418-c4eb32db68b7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007590172"}, "pid": "302", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:07.02232 2023-07-08 08:14:07.022326 fc7a2ab5-3b76-42c4-959a-3903136270b2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00760453X"}, "pid": "303", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:07.099743 2023-07-08 08:14:07.099747 ef5c0aca-421e-44fd-a4ad-20127b04e38f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007605285"}, "pid": "304", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:07.180704 2023-07-08 08:14:07.18071 51661baa-e9a3-472b-b9f3-9f3a5aef2d98 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007620756"}, "pid": "305", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:07.260761 2023-07-08 08:14:07.260765 ec9bbfda-6503-4d8b-a0ae-9bafe8d75976 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007631731"}, "pid": "306", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:07.36254 2023-07-08 08:14:07.362549 916ed5ee-f2b6-4e65-81f6-56a078f6a5cf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007642423"}, "pid": "307", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:07.472373 2023-07-08 08:14:07.472379 4a4c59b5-f688-47bc-8964-2cc474e3dfa0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007646895"}, "pid": "308", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:07.563271 2023-07-08 08:14:07.563275 d6eb61b7-78c9-407e-a584-4f6b0d2a7c91 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007675844"}, "pid": "309", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:07.647512 2023-07-08 08:14:07.647516 794e67a2-8cbf-440b-840d-ea96b4c8cc40 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007676174"}, "pid": "310", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:07.732659 2023-07-08 08:14:07.732662 81b13d5e-161d-4d37-8b11-2b1789532380 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007690495"}, "pid": "311", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:07.814481 2023-07-08 08:14:07.814484 7844aa8d-12b8-4e55-8e52-17c772c7c164 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007736851"}, "pid": "312", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:07.907929 2023-07-08 08:14:07.907933 b611f97f-a95c-4697-95dc-0a5f37d57716 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007744862"}, "pid": "313", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:07.985859 2023-07-08 08:14:07.985862 a26fb32c-3b27-4f06-ab85-fbcc536bfba6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007762321"}, "pid": "314", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:08.063233 2023-07-08 08:14:08.063241 d5ec26df-dd7c-4500-bfe5-67527162834b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007765908"}, "pid": "315", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:08.144783 2023-07-08 08:14:08.14479 5800e3bc-31f5-4fba-9619-46384a157b87 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007776500"}, "pid": "316", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:08.236191 2023-07-08 08:14:08.236202 074388c2-814e-4872-b9f2-685a2523adad {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007777639"}, "pid": "317", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:08.351044 2023-07-08 08:14:08.351051 0d279828-a784-4a53-a8e9-a5d8844b8c37 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007781113"}, "pid": "318", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:08.446982 2023-07-08 08:14:08.44699 c4f865ee-7dda-48ad-b1d3-2b4173f0f357 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007783574"}, "pid": "319", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:08.527396 2023-07-08 08:14:08.527405 fb2bcc05-fa29-47f6-beed-2dba67104bb1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007792948"}, "pid": "320", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:08.611183 2023-07-08 08:14:08.611192 cf2719b8-f2c2-4b0c-a32d-33cc874c6083 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007793731"}, "pid": "321", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:08.709762 2023-07-08 08:14:08.70977 62bce4c6-3657-4ee4-9bd6-d68f0412e38d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007796811"}, "pid": "322", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:08.798756 2023-07-08 08:14:08.798766 4ce422ce-a2d6-48e3-a9a2-c08c5d6c68fb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00779827X"}, "pid": "323", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:08.897155 2023-07-08 08:14:08.897164 08251295-efaa-4abd-91eb-ddac8dd93b1b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/008030286"}, "pid": "324", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:08.983668 2023-07-08 08:14:08.983671 230a1800-31e8-4211-8e41-d05a007e2f00 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/008036985"}, "pid": "325", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:09.08877 2023-07-08 08:14:09.088774 3b40b051-fae1-47ce-b7e8-3a5028d789c5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/008055262"}, "pid": "326", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:09.181269 2023-07-08 08:14:09.181272 b4b26c1f-a7e9-4cf3-91b7-4fd6dcf87961 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/008059365"}, "pid": "327", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:09.278871 2023-07-08 08:14:09.278881 00aa5841-a826-476f-b6dd-00dd0e51365c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/008094217"}, "pid": "328", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:09.36568 2023-07-08 08:14:09.365682 0eef5d6b-ddf1-4199-8d7d-4af0e205057b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/008095086"}, "pid": "329", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:09.443169 2023-07-08 08:14:09.443172 d391a210-bae0-468f-a5a8-b55a2b97350d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/008112282"}, "pid": "330", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:09.535203 2023-07-08 08:14:09.535212 40a3d72a-366d-472d-a24a-2978b5b26797 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/008119198"}, "pid": "331", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:09.626013 2023-07-08 08:14:09.626021 3380783a-b5ee-4d4e-b3af-0f70bc0de578 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/008122830"}, "pid": "332", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:09.728881 2023-07-08 08:14:09.72889 93688b2a-b912-456b-93b5-347a90881731 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/008140111"}, "pid": "333", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:09.810273 2023-07-08 08:14:09.810281 af8dc936-dae3-47a5-ac7b-779038ac8936 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/008147841"}, "pid": "334", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:09.903142 2023-07-08 08:14:09.903149 87698ba1-9f0b-49cb-a5a6-af37d38f5cec {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/008151733"}, "pid": "335", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:10.008325 2023-07-08 08:14:10.008331 768431c5-6caf-4506-8900-e12315984a41 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/008157103"}, "pid": "336", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:10.080552 2023-07-08 08:14:10.080556 72cfeb40-e6da-40dc-8fed-d7aca177b885 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/008165068"}, "pid": "337", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:10.148454 2023-07-08 08:14:10.148457 5cb84b59-3c29-4ea9-9974-5e7eaef12aa1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/008169446"}, "pid": "338", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:10.225505 2023-07-08 08:14:10.225513 66c7a7f0-6a20-44cf-9332-80c1bab6eeee {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/008169691"}, "pid": "339", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:10.318051 2023-07-08 08:14:10.31806 919444ee-3d4d-4140-aee7-ddfb4dcad94d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/008183147"}, "pid": "340", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:10.398221 2023-07-08 08:14:10.398224 e46e0dce-e5d0-4d13-9065-a1a67c4f3d6e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/008183171"}, "pid": "341", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:10.477532 2023-07-08 08:14:10.477536 5762192a-6a73-4fb3-b16c-f8781d539e16 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/008186596"}, "pid": "342", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:10.546914 2023-07-08 08:14:10.546917 ba4d1812-8bd9-455f-82e0-53fef3f34f18 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/030010462"}, "pid": "343", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:10.627398 2023-07-08 08:14:10.627407 e6d197bd-0b72-45bb-8c69-d79e228cead6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/030011213"}, "pid": "344", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:10.70122 2023-07-08 08:14:10.701223 2f858267-a45b-499b-ba4d-d186213bf1c6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/030028841"}, "pid": "345", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:10.768594 2023-07-08 08:14:10.768597 de906a4f-5620-49dd-8d64-9b50c24c89d0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/03003891X"}, "pid": "346", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:10.840506 2023-07-08 08:14:10.84051 1eccdbc6-78ff-4628-bf15-63509858cfea {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/03005205X"}, "pid": "347", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:10.932649 2023-07-08 08:14:10.932653 6380c1c1-d80c-49fb-83b2-3bac6fcc4321 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/030052912"}, "pid": "348", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:11.004569 2023-07-08 08:14:11.004572 0f233883-b53c-41f1-8f74-0567c5ea332b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/030072409"}, "pid": "349", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:11.085734 2023-07-08 08:14:11.085746 1b111309-c5ba-4354-a26c-e9dbfdf14198 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/030078768"}, "pid": "350", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:11.153651 2023-07-08 08:14:11.153654 bf2df8cc-5fed-4ace-a6e5-a1e9906ad801 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/030081297"}, "pid": "351", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:11.224076 2023-07-08 08:14:11.224079 918f7111-d34d-4b66-9531-755f984883ce {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/030120926"}, "pid": "352", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:11.290204 2023-07-08 08:14:11.290209 1c6783d5-3b47-488d-a4d1-57fe2b323b2f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/03012199X"}, "pid": "353", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:11.375944 2023-07-08 08:14:11.375952 4b84facb-b1ad-40dc-9c0d-f92c3d40de49 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/03012929X"}, "pid": "354", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:11.46811 2023-07-08 08:14:11.468113 f5143a78-6fd4-445c-b438-246504738618 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/030132053"}, "pid": "355", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:11.556445 2023-07-08 08:14:11.556454 19fb919e-ce25-4117-ba9e-ac5fad05c686 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/030135567"}, "pid": "356", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:11.64491 2023-07-08 08:14:11.644917 604c6824-a722-4ef9-a100-54bf1ee8c5c0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/030146690"}, "pid": "357", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:11.73678 2023-07-08 08:14:11.736783 6c43f792-453e-476b-bcd4-0d7d6a6a9bd5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/030152089"}, "pid": "358", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:11.827492 2023-07-08 08:14:11.827501 35a40695-3cf1-4b3a-b185-423d5527abb6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/030153727"}, "pid": "359", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:11.910904 2023-07-08 08:14:11.910907 af580262-f53e-4782-b839-cea7b574ffbe {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/030168910"}, "pid": "360", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:11.988329 2023-07-08 08:14:11.988333 764cb023-547f-4f5b-8392-fe19972b44e5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/030183251"}, "pid": "361", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:12.066738 2023-07-08 08:14:12.066743 27c88477-1abf-4ddf-864a-a366475cdc96 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/041027752"}, "pid": "362", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:12.152467 2023-07-08 08:14:12.152475 2f439005-a6d5-4650-b768-6120bd1b6cf7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/041297423"}, "pid": "363", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:12.248873 2023-07-08 08:14:12.248876 07d3241a-dc5e-4215-acb5-0c87dec016ef {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/042249627"}, "pid": "364", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:12.33603 2023-07-08 08:14:12.336033 a9c24939-5415-473d-94b4-2c312497a54d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/042260264"}, "pid": "365", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:12.433128 2023-07-08 08:14:12.433138 0a4d368e-f667-4f6a-866e-0359bbd56192 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/042968097"}, "pid": "366", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:12.518487 2023-07-08 08:14:12.518495 0194f2ef-1405-4361-bfcb-207568e31bfb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050000462"}, "pid": "367", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:12.627922 2023-07-08 08:14:12.627927 286acc3e-ca00-45ef-9db3-b1c2ed25f293 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/05000736X"}, "pid": "368", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:12.719984 2023-07-08 08:14:12.719994 d5e13829-e5b5-4d75-a83a-724d19521f98 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/05001692X"}, "pid": "369", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:12.829496 2023-07-08 08:14:12.829509 f28344d4-2f6c-4dff-b7ad-8dacd906515c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050031937"}, "pid": "370", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:12.921633 2023-07-08 08:14:12.921642 1c863968-6984-497d-8de5-a97377981e3d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050047043"}, "pid": "371", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:13.045561 2023-07-08 08:14:13.045572 44805778-2aa0-4673-a99e-1269f6364d53 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050053396"}, "pid": "372", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:13.127892 2023-07-08 08:14:13.127895 a75ef72c-287b-4631-8a3c-6eac6d88a7d6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/05005967X"}, "pid": "373", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:13.214753 2023-07-08 08:14:13.214761 77538b10-665d-4ec3-ae5c-de558e4a859c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050070606"}, "pid": "374", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:13.330842 2023-07-08 08:14:13.330851 ba627577-d93f-4dfd-a7b2-dc56db6c2542 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050096672"}, "pid": "375", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:13.426222 2023-07-08 08:14:13.426228 387a6c42-e238-48a2-890e-f9bfd8a5aa12 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/05009808X"}, "pid": "376", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:13.508049 2023-07-08 08:14:13.508051 bf38d001-4832-4748-ab6e-cc41f8a9cd71 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050105884"}, "pid": "377", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:13.575876 2023-07-08 08:14:13.575879 3f49cc32-0086-4730-82d0-a6b5d322bce2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050122916"}, "pid": "378", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:13.670599 2023-07-08 08:14:13.670608 b482ffc3-c3ed-4cb8-b8ba-560c51276083 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050132229"}, "pid": "379", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:13.779369 2023-07-08 08:14:13.779378 5bd9c1b5-e11d-4fb1-a18b-dc6a2de9d152 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050145363"}, "pid": "380", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:13.894116 2023-07-08 08:14:13.894127 be7e80a3-18e1-42cd-8e83-179c8b0edb7c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050155032"}, "pid": "381", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:14.01847 2023-07-08 08:14:14.01848 e5abb7f7-ebb4-40d7-9eda-d1e553f0972c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050161261"}, "pid": "382", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:14.125962 2023-07-08 08:14:14.125971 438386f0-9429-48c9-bb13-65ebacc9de76 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050168436"}, "pid": "383", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:14.247712 2023-07-08 08:14:14.247719 ff7fa513-8298-4e5a-8428-4484715ee99d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050171607"}, "pid": "384", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:14.360358 2023-07-08 08:14:14.360371 db612cac-3a21-4881-b84b-39c2a6582396 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050184318"}, "pid": "385", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:14.484357 2023-07-08 08:14:14.484366 ab91aeda-61be-4096-88fd-52992bd37674 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050186736"}, "pid": "386", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:14.60268 2023-07-08 08:14:14.602687 39816b22-62fb-4143-ba4d-71cf2964f7a4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/05018685X"}, "pid": "387", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:14.732175 2023-07-08 08:14:14.732183 29a0bed0-f7ab-40cf-bad6-3d1a334ed930 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050187023"}, "pid": "388", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:14.841924 2023-07-08 08:14:14.841933 2ed85c4e-7da7-4fa0-9174-821d5bea6918 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050230611"}, "pid": "389", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:14.956228 2023-07-08 08:14:14.956238 3d806635-caa7-4e91-a4e9-883d02f9a238 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050247840"}, "pid": "390", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:15.074685 2023-07-08 08:14:15.074697 a96c0477-9be8-43c8-8de1-9b0e74dca171 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050257722"}, "pid": "391", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:15.18451 2023-07-08 08:14:15.184522 c9f1c39e-8616-4495-b574-a11d106def0e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050269704"}, "pid": "392", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:15.305334 2023-07-08 08:14:15.305348 b8aa481e-30e0-41d9-8a08-f81aa338a425 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050270850"}, "pid": "393", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:15.438555 2023-07-08 08:14:15.438563 d78026c7-8034-4041-8954-d40d8074fbf4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050279831"}, "pid": "394", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:15.561603 2023-07-08 08:14:15.561618 d59867b8-8672-4414-a32c-718c259796a7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050284185"}, "pid": "395", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:15.689254 2023-07-08 08:14:15.689267 16f3dfea-918a-4090-87a1-5c63fde38e0f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050284673"}, "pid": "396", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:15.816005 2023-07-08 08:14:15.816015 bbd1ffbc-1724-47b2-a4cd-a3b3d62ee5b6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050329820"}, "pid": "397", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:15.928165 2023-07-08 08:14:15.928173 23bfb22e-27cb-485c-a62a-177ca2533381 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050353233"}, "pid": "398", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:16.047292 2023-07-08 08:14:16.047305 afcc375a-8267-4837-95c0-670e29bf0f54 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050361031"}, "pid": "399", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:16.184083 2023-07-08 08:14:16.184096 03111ca7-05c1-4dbb-b387-3804dcf2858e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/05037107X"}, "pid": "400", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:16.294506 2023-07-08 08:14:16.294522 f53f3f16-7e78-4829-8ba8-83863ad0f956 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050376756"}, "pid": "401", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:16.401391 2023-07-08 08:14:16.401404 1bf53929-8aee-42a2-8bd1-2f19aa756107 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050379712"}, "pid": "402", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:16.503831 2023-07-08 08:14:16.503839 b482fca1-52ad-4918-98b3-9eddcf86e3ce {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050410814"}, "pid": "403", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:16.604166 2023-07-08 08:14:16.604175 3599209f-454e-4c80-8db6-660a012bb0e7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050411071"}, "pid": "404", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:16.729781 2023-07-08 08:14:16.729794 9934afb6-4fe7-46a7-823f-81fb126e08b7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050417444"}, "pid": "405", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:16.837864 2023-07-08 08:14:16.837873 0a6fc744-a378-455b-9810-8f67117253b7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050425773"}, "pid": "406", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:16.935418 2023-07-08 08:14:16.935425 a056708f-15f0-45c0-99c3-011bcf047933 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050430726"}, "pid": "407", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:17.054136 2023-07-08 08:14:17.054147 2a004c0d-ec96-4d66-a9d1-b28107a833b4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050433504"}, "pid": "408", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:17.196147 2023-07-08 08:14:17.196162 23ea822b-1f9e-465d-b013-349a18ad4f65 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050436708"}, "pid": "409", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:17.31701 2023-07-08 08:14:17.317022 6508ef3e-5565-489c-b8c9-65faaf35132d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/05043795X"}, "pid": "410", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:17.430344 2023-07-08 08:14:17.430354 1a2a62da-6d71-4a47-97e0-16a4affe6045 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050439464"}, "pid": "411", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:17.545495 2023-07-08 08:14:17.545503 c789a6ca-88f1-4226-aa97-46e2aa231b01 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050445197"}, "pid": "412", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:17.665819 2023-07-08 08:14:17.665831 b6c404cd-fb42-46c9-8549-865b70a561ee {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050447904"}, "pid": "413", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:17.776811 2023-07-08 08:14:17.776819 7fc962d5-3f2f-4fdc-8f0f-897023d1183e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050458140"}, "pid": "414", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:17.889963 2023-07-08 08:14:17.889976 41eeddec-d69c-4ae1-8d4f-6ad9311e437c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050465546"}, "pid": "415", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:18.004684 2023-07-08 08:14:18.004695 d837f147-a163-412e-80b0-ba406e02ece2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/05048589X"}, "pid": "416", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:18.122939 2023-07-08 08:14:18.122948 15bec44d-a710-4e70-a8f1-4513e7632a26 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050494570"}, "pid": "417", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:18.245114 2023-07-08 08:14:18.245122 913315a5-1e0a-4f49-b35a-df1624374b5d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050495747"}, "pid": "418", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:18.377417 2023-07-08 08:14:18.377431 d1c80027-476a-451c-aa31-f844f47afc85 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050502298"}, "pid": "419", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:18.491022 2023-07-08 08:14:18.491035 41a9a28a-4179-4e03-9a28-33cc09ab8293 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050504274"}, "pid": "420", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:18.601369 2023-07-08 08:14:18.60138 674d2c84-a0d6-4327-ae5e-1289a1ac64a6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050516736"}, "pid": "421", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:18.765548 2023-07-08 08:14:18.765559 d040404a-fbfa-4490-b499-e927844886fa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050519514"}, "pid": "422", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:18.869615 2023-07-08 08:14:18.869627 3eb9dde4-a165-42fb-b644-5a093290d445 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/05052920X"}, "pid": "423", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:18.979872 2023-07-08 08:14:18.97988 21c7a618-0ae7-4c6b-9580-ee7928012196 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050539876"}, "pid": "424", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:19.092565 2023-07-08 08:14:19.092575 a96bd7dc-cf5a-42b5-bc76-a4fbf5946e72 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050544942"}, "pid": "425", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:19.208046 2023-07-08 08:14:19.208057 982425c4-a208-49d0-a39f-1c8b78c88eb6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050545183"}, "pid": "426", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:19.316648 2023-07-08 08:14:19.31666 55eef693-d5ab-4e07-9d8d-66d383000697 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050551205"}, "pid": "427", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:19.442944 2023-07-08 08:14:19.442958 8a3ddb15-acb8-40b8-9ea0-c22a85783f4c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050577395"}, "pid": "428", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:19.567473 2023-07-08 08:14:19.567481 2f78ee99-c269-46f5-ab0c-082098d95738 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050588907"}, "pid": "429", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:19.700866 2023-07-08 08:14:19.700877 6f1feced-8708-41d9-8bd7-15a5502c3a3b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050620746"}, "pid": "430", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:19.811079 2023-07-08 08:14:19.811088 d012bfaf-8e9a-4b95-ac31-26136bed5fac {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050629069"}, "pid": "431", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:19.933103 2023-07-08 08:14:19.933113 ec04651f-2227-4bd3-beae-5b065437ab0e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/05063223X"}, "pid": "432", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:20.039673 2023-07-08 08:14:20.039683 2252ab8a-4935-494f-9c13-18fc8a0dcca9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050639412"}, "pid": "433", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:20.145568 2023-07-08 08:14:20.145579 b8c8e58b-b2ae-40e2-b2bb-1945e5650ab7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050710885"}, "pid": "434", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:20.256937 2023-07-08 08:14:20.256947 b1bdd542-6c00-45ae-923a-575b4cb8104d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050717510"}, "pid": "435", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:20.381779 2023-07-08 08:14:20.381789 e43b376d-6174-47ea-bae4-a0321c36d115 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050721607"}, "pid": "436", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:20.481792 2023-07-08 08:14:20.481803 f203a9e5-1012-4848-a408-44e424548042 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050726064"}, "pid": "437", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:20.615223 2023-07-08 08:14:20.615234 f8f19209-5a1e-40be-8608-5029eff3301f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050738151"}, "pid": "438", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:20.744172 2023-07-08 08:14:20.744183 0fff08eb-e354-46f1-8d2b-550a9a9dccaf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050739875"}, "pid": "439", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:20.87587 2023-07-08 08:14:20.875879 538a49fd-d30f-43b3-8f2d-be24a616b682 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050753762"}, "pid": "440", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:20.984149 2023-07-08 08:14:20.984158 74771508-0e47-441f-a790-6a8df12c71a3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050778250"}, "pid": "441", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:21.095685 2023-07-08 08:14:21.095696 510f090b-4ce6-4a34-88ec-2481fe2caa13 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050780328"}, "pid": "442", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:21.210892 2023-07-08 08:14:21.210902 3efb5efd-f6dc-4a77-a3c0-c9b415ff4088 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050784005"}, "pid": "443", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:21.320891 2023-07-08 08:14:21.320901 681d9ee1-a0fa-43b0-b10c-e8a85a05e737 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050786954"}, "pid": "444", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:21.442618 2023-07-08 08:14:21.442628 2dc518c0-c359-4bc9-8f32-8b2a074aed98 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050788434"}, "pid": "445", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:21.556628 2023-07-08 08:14:21.556643 8c0000b3-5c10-4500-bb78-7e002ce6a3c1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050805800"}, "pid": "446", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:21.659285 2023-07-08 08:14:21.659289 457a6e23-5f3f-4e58-b155-bc642218d831 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050846043"}, "pid": "447", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:21.7308 2023-07-08 08:14:21.730804 0aecb34d-cd3a-45bd-84c9-3d5fa43b674c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050876902"}, "pid": "448", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:21.804781 2023-07-08 08:14:21.804788 01262c0a-3a49-4108-b8f8-3890ef78ba23 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050880667"}, "pid": "449", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:21.879133 2023-07-08 08:14:21.879136 c241cb8f-ffe5-49c3-8a36-b95af272d453 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050881922"}, "pid": "450", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:21.950188 2023-07-08 08:14:21.950191 931cdcf9-46a9-4d8b-a8b1-73ec5a09c2d3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050895877"}, "pid": "451", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:22.018154 2023-07-08 08:14:22.018156 4edce007-3a0e-49f3-8c8a-84b6be46786c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050917633"}, "pid": "452", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:22.086888 2023-07-08 08:14:22.086891 ba12f283-27ff-42f3-bf83-c89aa73541a6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050917889"}, "pid": "453", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:22.15637 2023-07-08 08:14:22.156372 6878eb10-cd8a-4a2c-a4e5-041ccddc7ce9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050925520"}, "pid": "454", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:22.226495 2023-07-08 08:14:22.2265 fd9ffbc1-1e7f-412c-8769-4c636590531b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050927078"}, "pid": "455", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:22.298464 2023-07-08 08:14:22.298467 fd85764c-23cb-4e28-b10a-057dd001a19d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050943618"}, "pid": "456", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:22.36891 2023-07-08 08:14:22.368913 f3c1e85b-e2e9-4ad4-b18a-fe7997b9f23b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/051115913"}, "pid": "457", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:22.464047 2023-07-08 08:14:22.464054 50d97540-650e-4343-8ecf-62aa6ea80ea4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/051171538"}, "pid": "458", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:22.542984 2023-07-08 08:14:22.542992 cd41186b-df8b-4bf3-8f74-cd9eacd715ff {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/051251930"}, "pid": "459", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:22.618207 2023-07-08 08:14:22.618209 20c9c933-f42d-4375-b748-afc6f716942c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/051253801"}, "pid": "460", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:22.704433 2023-07-08 08:14:22.704445 f1d629c4-db89-486b-9f20-70da3b93d936 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/051264129"}, "pid": "461", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:22.793273 2023-07-08 08:14:22.793277 d4692819-46e9-475b-9ba4-f39dea998605 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/051266717"}, "pid": "462", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:22.861519 2023-07-08 08:14:22.861522 48c6373e-7973-45d9-9cb7-db082dfa7484 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/051367386"}, "pid": "463", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:22.947488 2023-07-08 08:14:22.947498 7f168576-17fa-4026-b3c1-dc361928e072 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/051381079"}, "pid": "464", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:23.042132 2023-07-08 08:14:23.042142 1008c6aa-5b3d-4f50-aca4-64a794584268 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/051518449"}, "pid": "465", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:23.120278 2023-07-08 08:14:23.120281 32435089-815f-48d2-99c4-94359cb353da {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055005284"}, "pid": "466", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:23.21111 2023-07-08 08:14:23.211118 c19520b6-b12a-4d7c-b4b5-d90a0c961621 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055085849"}, "pid": "467", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:23.300887 2023-07-08 08:14:23.30089 865561f7-8485-4b64-b3c2-83f11062d1c2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055114938"}, "pid": "468", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:23.375892 2023-07-08 08:14:23.375895 7a259c1d-c499-46ad-9809-6611d9edf1bd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055142524"}, "pid": "469", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:23.451286 2023-07-08 08:14:23.451289 05b838af-b942-490d-8d0c-36bb86b33576 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055146201"}, "pid": "470", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:23.53329 2023-07-08 08:14:23.533293 09c2af7e-a08a-43e6-b782-c63d827c633a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055154050"}, "pid": "471", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:23.619227 2023-07-08 08:14:23.619232 e2458bf3-d326-4dad-b128-46a031c522a2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055201873"}, "pid": "472", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:23.694319 2023-07-08 08:14:23.694326 6f82be5f-8205-48e9-8162-22082418fd83 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055244025"}, "pid": "473", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:23.7638 2023-07-08 08:14:23.763803 aff5ab78-30a1-4af2-ab35-d2d588fdecbe {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/05533556X"}, "pid": "474", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:23.843162 2023-07-08 08:14:23.843165 6cd0c452-616a-4f88-88d2-bd21f9743448 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055380700"}, "pid": "475", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:23.924709 2023-07-08 08:14:23.924712 a0b5a4c4-865a-4081-be69-5e9d99521911 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055449271"}, "pid": "476", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:23.98912 2023-07-08 08:14:23.989123 744dd62a-6ebc-4e81-9b90-71afdbf34061 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055518788"}, "pid": "477", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:24.059704 2023-07-08 08:14:24.059707 cb3d411a-941d-4292-b137-8f9cd471ed4c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055521460"}, "pid": "478", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:24.127896 2023-07-08 08:14:24.1279 ce170c67-cffe-4163-90b9-c08e3c1dc739 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055526195"}, "pid": "479", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:24.202287 2023-07-08 08:14:24.20229 a1d05666-80f1-44c5-9c6a-9bb7315cc8a0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055529771"}, "pid": "480", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:24.296263 2023-07-08 08:14:24.296272 d27a1762-8ebc-4307-8aa1-f7783cbc077c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055578861"}, "pid": "481", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:24.397509 2023-07-08 08:14:24.397516 e1d083c9-6ae0-43c8-82d6-2fa7652ee460 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055593917"}, "pid": "482", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:24.482491 2023-07-08 08:14:24.4825 5c953443-eb5c-4d95-ae10-f96c06871d0e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055597793"}, "pid": "483", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:24.585043 2023-07-08 08:14:24.585051 3332d83a-90cc-4df0-9219-e94775dc963c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055608205"}, "pid": "484", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:24.659846 2023-07-08 08:14:24.659849 27a2b24d-00c0-415b-8f40-bbe1ad3dfd88 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055656595"}, "pid": "485", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:24.738463 2023-07-08 08:14:24.738472 72a6900b-8ae4-4906-9d9e-99de0720dcc3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055663354"}, "pid": "486", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:24.816051 2023-07-08 08:14:24.816053 96d368d9-9a30-42dc-9f3b-fc64929dc9c1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055689159"}, "pid": "487", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:24.895799 2023-07-08 08:14:24.895802 82aba57d-22e1-4e8f-af19-fbd3899ce524 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055718086"}, "pid": "488", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:24.99561 2023-07-08 08:14:24.995621 a8a9cf7c-ed39-481c-abff-9dadc79a0440 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/05573782X"}, "pid": "489", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:25.106345 2023-07-08 08:14:25.106354 15d6f2ed-7329-4c6d-880f-8545ba486c68 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055774520"}, "pid": "490", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:25.196495 2023-07-08 08:14:25.196497 95e564cb-8550-478a-8071-6412cfbedca9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055798837"}, "pid": "491", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:25.293509 2023-07-08 08:14:25.293514 58ded463-1d2f-4c45-82ba-136ea97bb7ac {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055823866"}, "pid": "492", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:25.370511 2023-07-08 08:14:25.370516 8222a619-d197-4353-b2ad-b0d8b632b82f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055837417"}, "pid": "493", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:25.467058 2023-07-08 08:14:25.467065 320f04d7-05e9-4c0b-8c02-99d86b35911f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055842941"}, "pid": "494", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:25.556059 2023-07-08 08:14:25.556068 2182971a-9f79-4aa3-96b3-4de5c9258bc7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055872891"}, "pid": "495", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:25.63675 2023-07-08 08:14:25.636754 a704bab7-4fee-42f9-87ed-fc64121c5ac5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055899781"}, "pid": "496", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:25.718855 2023-07-08 08:14:25.718858 1afb299f-bd6f-4a8c-ba1c-454a857dac87 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055949002"}, "pid": "497", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:25.812568 2023-07-08 08:14:25.812576 3deb1ab2-58c1-4d12-b6c9-38d97739477e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055952283"}, "pid": "498", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:25.901182 2023-07-08 08:14:25.90119 da75fa63-c313-413a-864c-90e52f4a8928 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/056024045"}, "pid": "499", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:25.996328 2023-07-08 08:14:25.996333 7599c108-a0eb-4a73-84ea-e14cdb5221ed {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/056088612"}, "pid": "500", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:26.096093 2023-07-08 08:14:26.096104 0d9838ad-9ec0-4e83-ac7a-5738a6ddd5ef {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/056119054"}, "pid": "501", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:26.1765 2023-07-08 08:14:26.176503 17d2e642-4904-4e03-9770-68b864de657e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/056140010"}, "pid": "502", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:26.259538 2023-07-08 08:14:26.259543 1359a043-c502-4e72-82d8-9450a64f41f4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/056141645"}, "pid": "503", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:26.355513 2023-07-08 08:14:26.355522 99a921ab-9e34-402c-9fd1-35480fc87a05 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/056169302"}, "pid": "504", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:26.447957 2023-07-08 08:14:26.447968 bb9a4718-11af-4923-aabb-5ba489addc59 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/056281544"}, "pid": "505", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:26.528312 2023-07-08 08:14:26.528321 13d26359-83da-458c-8f6a-605489c8b74b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/056310099"}, "pid": "506", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:26.617456 2023-07-08 08:14:26.617461 eba0c092-9ab5-42b0-a451-280b9b6a6b92 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/05634371X"}, "pid": "507", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:26.716182 2023-07-08 08:14:26.71619 8fb0d34a-7347-449f-b123-84110d17cb8f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1000024091"}, "pid": "508", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:26.824888 2023-07-08 08:14:26.824896 1f0b7d66-c8bf-4c7f-921d-1deda364d54b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1000226778"}, "pid": "509", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:26.920562 2023-07-08 08:14:26.92057 1b82e8be-052c-426f-9c74-70c1f8424f83 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1000228320"}, "pid": "510", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:27.014339 2023-07-08 08:14:27.014346 4a2e0b9d-c688-4176-9321-7aed903fcacc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1000295257"}, "pid": "511", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:27.099139 2023-07-08 08:14:27.099149 48e13cb0-f544-4905-8acb-c2e8ffb36f49 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1000465780"}, "pid": "512", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:27.190656 2023-07-08 08:14:27.190668 4ed7b04f-77b7-4368-89fc-270408d8acc1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1000582329"}, "pid": "513", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:27.286287 2023-07-08 08:14:27.286295 3fc2c4e4-89f8-49fa-80a5-f2811de7779b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1000592979"}, "pid": "514", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:27.379076 2023-07-08 08:14:27.379086 ed3dad65-f963-464c-bdff-4cd9450ab9fb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1000594521"}, "pid": "515", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:27.458109 2023-07-08 08:14:27.458125 656aa786-763f-4ea6-8d70-1f5340fda921 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1000601153"}, "pid": "516", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:27.54203 2023-07-08 08:14:27.542035 60b1ca18-c144-4a16-a24d-daa9559f39c6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1000610896"}, "pid": "517", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:27.629805 2023-07-08 08:14:27.629809 60276868-2a6e-4e6a-b380-7c0c152bdb79 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1000681815"}, "pid": "518", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:38.303338 2023-07-08 08:22:38.303348 cc8f5651-c6b4-463d-bb68-f6918ed0b442 {"pid": "5350", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/242433995"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:27.798686 2023-07-08 08:14:27.798692 218403a8-2aac-44d7-ab54-0d7e3c106720 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1000698777"}, "pid": "520", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:27.902207 2023-07-08 08:14:27.902211 9ba8ec08-8540-4b6c-a8e7-3a735feba6a1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1000836290"}, "pid": "521", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:27.988118 2023-07-08 08:14:27.988126 39342e9e-d714-48b0-8904-ac46f5c23d11 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1000990958"}, "pid": "522", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:28.077043 2023-07-08 08:14:28.077048 a50f229e-f411-4a86-a978-f3f28abe28e6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1001088646"}, "pid": "523", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:28.172129 2023-07-08 08:14:28.172132 f0467001-d163-4ae3-80a7-912ad5891f6e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1001206770"}, "pid": "524", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:28.283977 2023-07-08 08:14:28.283986 5eef9667-ff86-46f1-940c-d399561d1bf5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1001284402"}, "pid": "525", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:28.381355 2023-07-08 08:14:28.381359 f8ca8713-558f-45c5-bf73-e3348a2dbf0e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1001334272"}, "pid": "526", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:28.45573 2023-07-08 08:14:28.455736 37e1fe40-51ed-4f7a-9559-88e5359d5ce7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1001567501"}, "pid": "527", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:28.547704 2023-07-08 08:14:28.547712 38541f43-b10a-47d2-a759-f20bf8e32546 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/100167328X"}, "pid": "528", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:28.635507 2023-07-08 08:14:28.635511 1abdc398-61a7-4295-bb55-8d479719f92a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1001827562"}, "pid": "529", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:28.736685 2023-07-08 08:14:28.73669 e721d6d0-5553-406a-b432-5ca62eeced28 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1001848063"}, "pid": "530", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:28.812172 2023-07-08 08:14:28.812175 1e290b38-7bda-4d7d-b225-1d66a2846442 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1001985265"}, "pid": "531", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:28.883424 2023-07-08 08:14:28.883426 16d5528e-bfba-4bae-a8dc-6ae8e2610d36 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1002133998"}, "pid": "532", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:28.976882 2023-07-08 08:14:28.976896 38065a86-a282-455f-836c-f856e777d9e8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1002374588"}, "pid": "533", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:29.109404 2023-07-08 08:14:29.109415 75d51227-1aaa-49ee-9ec7-1593da3ed174 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1002731305"}, "pid": "534", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:29.219765 2023-07-08 08:14:29.219774 314d8dd5-3dd6-4f60-ab26-7e04ba0df0b3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1003000274"}, "pid": "535", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:29.34041 2023-07-08 08:14:29.340422 8bbea393-04ba-461b-8058-b911829d7f7d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1003122329"}, "pid": "536", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:29.446772 2023-07-08 08:14:29.44678 2ea0be09-330b-4553-bbc0-e071ebf47c55 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1003145523"}, "pid": "537", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:29.550151 2023-07-08 08:14:29.550158 73524818-8b13-4715-bf9a-687e121be7f9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/100316042"}, "pid": "538", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:29.657822 2023-07-08 08:14:29.65783 032756d2-5dd1-433b-8dce-beca0bbc7cd0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1003218784"}, "pid": "539", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:29.788091 2023-07-08 08:14:29.788099 b57193c1-5dd2-451e-9a85-511ad209149a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1003329063"}, "pid": "540", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:29.897139 2023-07-08 08:14:29.897152 b888f899-6a2c-48aa-9bb8-ea0288ec42fb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/100349471"}, "pid": "541", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:30.025051 2023-07-08 08:14:30.025063 cdb31f60-1910-4ff3-92ac-ca2ded30faa5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1003824153"}, "pid": "542", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:30.147302 2023-07-08 08:14:30.147312 74842f14-ce2f-4396-aa68-8c2c802b701d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1003837840"}, "pid": "543", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:30.257519 2023-07-08 08:14:30.257529 34f8963f-7034-4c88-959e-15bd2cb47a97 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004014589"}, "pid": "544", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:30.379437 2023-07-08 08:14:30.379447 2b80a26a-275e-4469-805a-8483fb7f01fc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004316267"}, "pid": "545", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:30.493364 2023-07-08 08:14:30.493373 bbe4529a-01a0-4eca-a2bf-8a42988db4aa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004386486"}, "pid": "546", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:30.62291 2023-07-08 08:14:30.622923 008e0d7b-3b50-4a62-a9dc-a4a077b7b56e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/100438713X"}, "pid": "547", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:30.765495 2023-07-08 08:14:30.765508 58e54d47-7608-4683-8f08-7ffd505a6422 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004477503"}, "pid": "548", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:30.896931 2023-07-08 08:14:30.896941 b6f198e3-4c6b-483b-9f43-15e45c373d17 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004482531"}, "pid": "549", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:31.015378 2023-07-08 08:14:31.015392 32ce0b51-a9b1-4703-bfaa-8b07c9f437d3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004487096"}, "pid": "550", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:31.140167 2023-07-08 08:14:31.140178 b3f3ef80-ada9-42d3-8c28-d0c23d32a839 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004490674"}, "pid": "551", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:31.260745 2023-07-08 08:14:31.260757 e53d4a44-72ff-43ce-887e-817dffe6a509 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004494807"}, "pid": "552", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:31.385117 2023-07-08 08:14:31.385125 75b8a03e-7ac2-4408-8bce-278d9ee2afc4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004497415"}, "pid": "553", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:31.528976 2023-07-08 08:14:31.528986 2f060fda-cd78-419e-aed4-b90a4537d7a5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004503423"}, "pid": "554", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:31.646258 2023-07-08 08:14:31.646268 a7c5855d-d43f-41b6-9618-eeb06b6a9535 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004520778"}, "pid": "555", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:31.783318 2023-07-08 08:14:31.783333 98c61f71-8282-4688-931d-53a641d4d1e9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004537549"}, "pid": "556", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:31.895203 2023-07-08 08:14:31.895213 1ca599e5-df1d-4611-9aa4-57bf5d21aa8e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004552424"}, "pid": "557", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:32.012717 2023-07-08 08:14:32.012727 ab2269fc-7d5e-4e08-9091-b014eb0dd623 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/100455706X"}, "pid": "558", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:32.160854 2023-07-08 08:14:32.160868 cbe63a99-4627-42e1-a65a-769a7684963f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004578172"}, "pid": "559", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:32.267704 2023-07-08 08:14:32.267711 8cfb6f05-7c17-4c75-a554-0c5755bcd380 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004580428"}, "pid": "560", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:32.370484 2023-07-08 08:14:32.370491 78402993-2893-426c-b1ba-a4743fb02b74 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004597800"}, "pid": "561", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:32.480106 2023-07-08 08:14:32.480115 2016209c-5801-4008-89f9-628dd8e5eb97 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004602456"}, "pid": "562", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:32.58497 2023-07-08 08:14:32.584977 27db2c91-803c-487f-83cc-93cb1ee4db93 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004610041"}, "pid": "563", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:32.690722 2023-07-08 08:14:32.690733 f7ddfac8-741e-4918-a29e-9b533d7b4259 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004623488"}, "pid": "564", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:32.817538 2023-07-08 08:14:32.817546 98dd0eb2-578a-4983-a48f-a60a33aca43e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004659237"}, "pid": "565", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:32.926943 2023-07-08 08:14:32.926954 fd149b5b-26cb-4467-8b94-7a978a00c3d8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004691408"}, "pid": "566", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:33.037791 2023-07-08 08:14:33.037802 d4ba9fad-72a5-48f6-aaf9-821fdd341be3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004696000"}, "pid": "567", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:33.162551 2023-07-08 08:14:33.162561 c74d1c58-c45f-44bc-8ced-cf3d9569b9ad {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004996152"}, "pid": "568", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:33.252663 2023-07-08 08:14:33.252672 75d2a726-dc0b-4ea7-b643-3e37f54dbd7c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1005138168"}, "pid": "569", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:33.353643 2023-07-08 08:14:33.353651 6498f1d4-9613-46f7-ac8a-4998a9c8fb15 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1005381364"}, "pid": "570", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:33.470529 2023-07-08 08:14:33.470541 dab13a85-5224-4dde-b3b4-2a4164ee97cc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1005446873"}, "pid": "571", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:33.597728 2023-07-08 08:14:33.597741 61474436-aaac-4a8f-86ea-0f234a9ace0c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1006191062"}, "pid": "572", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:33.705686 2023-07-08 08:14:33.705696 79d3ed55-8102-42cb-a1f1-72159e430689 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1006414401"}, "pid": "573", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:33.833095 2023-07-08 08:14:33.833108 89724568-bcd5-40d0-bf60-db9abac0462e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1006687815"}, "pid": "574", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:33.962908 2023-07-08 08:14:33.962919 4359cd54-01b3-4586-a0db-5e7315a1aaec {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1006928111"}, "pid": "575", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:34.096624 2023-07-08 08:14:34.096635 ee4ece66-df6f-42c6-88a3-c39e67d18d32 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1007180692"}, "pid": "576", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:34.216844 2023-07-08 08:14:34.216853 27531454-a7e6-4b5d-923b-e8a3a3e199dc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1007242396"}, "pid": "577", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:34.336827 2023-07-08 08:14:34.336836 c3a65706-9bb2-4122-b8d0-d4e20e64fcf0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1007432802"}, "pid": "578", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:34.448451 2023-07-08 08:14:34.448455 bef29a08-ba91-4439-ad00-1038f824055a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1007693789"}, "pid": "579", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:34.568834 2023-07-08 08:14:34.568843 f6bb5425-1b10-41b9-ad8a-908c9cf9a66c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1007769319"}, "pid": "580", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:34.69677 2023-07-08 08:14:34.696781 186a89b6-5917-4a49-9330-3cb7aaeeb9a0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1007863307"}, "pid": "581", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:34.820984 2023-07-08 08:14:34.820993 08eb8cd8-2c9c-43f6-85d0-a82050dddc48 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1008172537"}, "pid": "582", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:34.947311 2023-07-08 08:14:34.947321 26a23aac-5d7f-445b-a157-626518815d15 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1008311308"}, "pid": "583", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:35.06399 2023-07-08 08:14:35.063999 f00c8de4-ba33-4a99-bb98-62f37506e444 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1008358118"}, "pid": "584", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:35.172079 2023-07-08 08:14:35.172085 2fd35a84-9b9c-4f10-8a71-036576ea491b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1008359025"}, "pid": "585", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:35.244366 2023-07-08 08:14:35.24437 b07a10c5-2328-49ca-b0dd-a1d52d890d30 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1008374040"}, "pid": "586", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:35.31496 2023-07-08 08:14:35.314963 4629d340-cb5b-48e4-baae-697aeaeaea53 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1008509957"}, "pid": "587", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:35.387688 2023-07-08 08:14:35.387691 069aed6d-9cfa-437b-89df-d80d6e916553 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1008705683"}, "pid": "588", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:35.464013 2023-07-08 08:14:35.464016 7cf1a38d-8900-4968-84d1-a6c356b4cd5d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1008850411"}, "pid": "589", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:35.532562 2023-07-08 08:14:35.532568 304f472f-0da3-4426-869c-0bfb4aab06e3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1008982075"}, "pid": "590", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:35.610847 2023-07-08 08:14:35.610852 62e29450-99d8-44a9-9d16-b936c47c9470 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1009099981"}, "pid": "591", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:35.707971 2023-07-08 08:14:35.707974 af7f95e6-b4ed-4403-baec-f8cc667a3210 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1009237543"}, "pid": "592", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:35.784705 2023-07-08 08:14:35.784707 b1a66e66-1f30-4c90-b5f1-080606777f31 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1009363581"}, "pid": "593", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:35.886238 2023-07-08 08:14:35.886242 c85fc4f1-a918-49fe-8132-98819d1a7802 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1009625977"}, "pid": "594", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:35.984024 2023-07-08 08:14:35.984027 6d986a86-c632-497f-8e9a-5669a0c29835 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/100963315"}, "pid": "595", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:36.079484 2023-07-08 08:14:36.079492 10d0f6e9-e042-4abf-827d-d5409866ed29 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1009786741"}, "pid": "596", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:36.166647 2023-07-08 08:14:36.166649 ec119713-de1d-4943-ae4e-f0d9b209aeaf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1010306146"}, "pid": "597", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:36.261168 2023-07-08 08:14:36.261174 af585491-349e-4b1c-8bbf-57e353797138 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1010326945"}, "pid": "598", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:36.375262 2023-07-08 08:14:36.375275 cd18d63d-3921-4552-963e-07c824254388 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/101054389X"}, "pid": "599", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:36.465748 2023-07-08 08:14:36.465756 fdcb58b3-024c-43bb-a99e-5f94ee079d2c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1010664034"}, "pid": "600", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:36.556654 2023-07-08 08:14:36.556663 14b51bfa-a5b4-44f1-b660-b58218d1caaf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1010670174"}, "pid": "601", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:36.636866 2023-07-08 08:14:36.636868 6da074c2-6d9a-4fad-9d42-6043e16f766c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1010696092"}, "pid": "602", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:36.709743 2023-07-08 08:14:36.709747 0bb3fccf-6726-4ae5-90f5-915cc4d6926b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1010769979"}, "pid": "603", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:36.781904 2023-07-08 08:14:36.781907 7c923509-cef6-486d-a465-56c99310d106 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1010987895"}, "pid": "604", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:36.887871 2023-07-08 08:14:36.887882 03bc6c32-b1e9-4a18-bad0-2a79093c36bd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011029162"}, "pid": "605", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:36.986164 2023-07-08 08:14:36.986174 81a7e6c7-b079-4a2e-9c3b-7147e6e609b1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011038692"}, "pid": "606", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:37.069086 2023-07-08 08:14:37.069089 ce810c08-9a28-45a5-9e56-ad84e460dcfc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011064766"}, "pid": "607", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:37.147491 2023-07-08 08:14:37.147495 8af40731-ca87-4911-a373-d81c7a678bc5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011072602"}, "pid": "608", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:37.22339 2023-07-08 08:14:37.223402 82668869-d69f-4a1d-a366-04fa9a28b90b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011184176"}, "pid": "609", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:37.302329 2023-07-08 08:14:37.302338 37f7f383-217f-4c6e-8c97-1e869d1c18ef {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011184672"}, "pid": "610", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:37.380733 2023-07-08 08:14:37.380736 d3bd8d0e-e90b-43c1-86d0-eb810697cf02 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011196735"}, "pid": "611", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:37.447693 2023-07-08 08:14:37.447696 aaa19059-2624-49e6-a7b3-ead6d35ae403 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011276259"}, "pid": "612", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:37.512385 2023-07-08 08:14:37.512389 661a1df3-1870-4e81-bc94-c9184711bec3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011311550"}, "pid": "613", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:37.577158 2023-07-08 08:14:37.577161 92acb059-f217-470c-9c1a-cdbd161951e2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011400707"}, "pid": "614", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:38.41635 2023-07-08 08:22:38.416359 9d1d1a55-d997-4007-a630-9b1adb02e0a7 {"pid": "5351", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/242448771"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:37.719065 2023-07-08 08:14:37.719068 b0fbaa52-dbe2-4bd1-a5ec-67be3b6640a1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011453215"}, "pid": "616", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:37.795022 2023-07-08 08:14:37.795025 74567620-a200-4941-9799-72aea037bcba {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011475596"}, "pid": "617", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:37.871953 2023-07-08 08:14:37.871956 0826440c-0e26-415c-bd5d-d9338d57f8a0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011506084"}, "pid": "618", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:37.965247 2023-07-08 08:14:37.965257 866905ec-a11b-43f5-9bdf-46dfb1dab95e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011618362"}, "pid": "619", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:38.050844 2023-07-08 08:14:38.050848 35d66990-937c-4f3c-aac4-d71f69f7da1c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011673835"}, "pid": "620", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:38.130907 2023-07-08 08:14:38.13091 4eb447e2-5b46-44a8-9d00-bad0bcbc5bb6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011705486"}, "pid": "621", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:38.216957 2023-07-08 08:14:38.216965 346216e0-5a97-4816-b427-a0b7e02afae0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011744619"}, "pid": "622", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:38.314715 2023-07-08 08:14:38.314723 0bd07b87-fe40-4bd9-8dc0-43b39d61832e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011762676"}, "pid": "623", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:38.400326 2023-07-08 08:14:38.40033 5b6e0a05-121c-4858-bd85-ff4d2e21b330 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011811669"}, "pid": "624", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:38.482304 2023-07-08 08:14:38.482306 9c2b2797-3817-4146-8027-2aef1f61d2f7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011875829"}, "pid": "625", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:38.569563 2023-07-08 08:14:38.56957 35f95a5a-6194-4d39-897a-7edba5565982 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011887444"}, "pid": "626", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:38.658207 2023-07-08 08:14:38.658212 e0db89b3-91cf-4ddc-93b1-33742e7f960d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011898012"}, "pid": "627", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:38.747113 2023-07-08 08:14:38.74712 13766fc1-fc29-4d43-a7b3-692844df6dcc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011967472"}, "pid": "628", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:38.833048 2023-07-08 08:14:38.833051 44a2472b-8438-418b-a059-0488067fffbc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012126404"}, "pid": "629", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:38.911395 2023-07-08 08:14:38.911398 55194d31-f14a-46cc-b5d4-0ac74145601b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012244741"}, "pid": "630", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:39.001408 2023-07-08 08:14:39.001416 69e6c730-f2c4-49a0-8108-e2f36d668cf4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012247554"}, "pid": "631", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:39.094791 2023-07-08 08:14:39.094796 9f2215da-84b1-4905-82e0-f225bb20ec79 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012247589"}, "pid": "632", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:39.19877 2023-07-08 08:14:39.198778 a28e1725-24be-4f52-b86d-dd422b102e49 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012247627"}, "pid": "633", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:39.341965 2023-07-08 08:14:39.341975 fb2057f9-d47f-44cc-ae90-9539b5d3531b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012262367"}, "pid": "634", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:39.46657 2023-07-08 08:14:39.466576 97c9a549-ba71-4b3d-ae52-9550396a0553 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012277151"}, "pid": "635", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:39.57037 2023-07-08 08:14:39.57038 543a0549-e5ae-4362-bad4-5a145ce1304c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012289915"}, "pid": "636", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:39.693153 2023-07-08 08:14:39.693164 b9f01608-07c1-4758-b87c-29a4eed053ad {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012299805"}, "pid": "637", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:39.79336 2023-07-08 08:14:39.793369 b9222c96-1a00-48e7-97aa-19844bb9d623 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012301389"}, "pid": "638", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:39.89057 2023-07-08 08:14:39.890579 643ccdc9-ead2-4324-b5f1-3df6b3782425 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012304973"}, "pid": "639", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:40.015932 2023-07-08 08:14:40.015945 5e6aee42-11b9-4c4f-95db-c46ed4bd2d46 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012336026"}, "pid": "640", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:40.107077 2023-07-08 08:14:40.107083 42b58725-faeb-44b0-8a28-b60a69f9d066 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/101234472X"}, "pid": "641", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:40.199157 2023-07-08 08:14:40.199165 f69fc990-df52-4940-a308-b43a2ef27e22 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012370755"}, "pid": "642", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:40.295225 2023-07-08 08:14:40.295236 99b82615-4110-4b73-9cc1-894f3c41385a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012371964"}, "pid": "643", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:40.387755 2023-07-08 08:14:40.387762 1a0f7723-dc20-459e-b625-aad1eb5c14bf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012374548"}, "pid": "644", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:40.478752 2023-07-08 08:14:40.478762 674098f5-d20c-4da1-a57b-e4d6005c5f99 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012379574"}, "pid": "645", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:40.567503 2023-07-08 08:14:40.567507 a106df4d-9932-4b46-ba32-e9307097f6ba {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012394212"}, "pid": "646", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:40.656466 2023-07-08 08:14:40.656469 2cfeb42b-3d84-4cb3-bfe3-c6ad6cfd2823 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/101239705X"}, "pid": "647", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:40.736473 2023-07-08 08:14:40.736481 5faab1d5-d9a5-4788-8540-3d7e3202468a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012398897"}, "pid": "648", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:40.827442 2023-07-08 08:14:40.827451 66e89a6b-5e82-4ecd-bbdd-23dc545a172b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012399737"}, "pid": "649", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:40.920417 2023-07-08 08:14:40.920425 4606c82a-789b-4c7d-8691-1e670e794ff5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012410234"}, "pid": "650", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:41.012367 2023-07-08 08:14:41.012375 9ef707c8-e0e4-4317-a170-75804a51bbd3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012413934"}, "pid": "651", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:41.115605 2023-07-08 08:14:41.115614 bbf37cea-a4f8-40b1-9c00-afcf5b37d5cd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012484076"}, "pid": "652", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:41.194547 2023-07-08 08:14:41.194553 7d05ca78-c0e8-4170-a739-f2e0e06c341a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012546772"}, "pid": "653", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:41.278087 2023-07-08 08:14:41.278095 ea7472af-2d54-441f-ba17-21337576750f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012559114"}, "pid": "654", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:41.366007 2023-07-08 08:14:41.366017 f93440d8-7289-4f3b-8151-b831b9f2941c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012580350"}, "pid": "655", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:41.449041 2023-07-08 08:14:41.449051 16bd1c13-8fb1-4dc9-aacf-f894a467f5f4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012659720"}, "pid": "656", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:41.555822 2023-07-08 08:14:41.555832 597bea69-ca24-4452-a902-3ff8e1ebde84 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012670813"}, "pid": "657", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:41.648218 2023-07-08 08:14:41.648221 30a146d3-8e64-4e20-acc9-f21b2192e325 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012703487"}, "pid": "658", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:41.721604 2023-07-08 08:14:41.721612 ccc90cc3-0c29-4282-8119-f20ce51b4660 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012706826"}, "pid": "659", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:41.833336 2023-07-08 08:14:41.833347 57485fc7-a9ff-4d7c-8eaf-dd80c19c382a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012770982"}, "pid": "660", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:41.937698 2023-07-08 08:14:41.937708 ca4c0bf7-9ebe-4b88-9514-adc67deeaa18 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012781593"}, "pid": "661", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:42.032071 2023-07-08 08:14:42.032079 f092542b-f84b-4658-9f89-a42202b9aa2e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012785815"}, "pid": "662", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:42.116745 2023-07-08 08:14:42.116748 db35992e-167a-4ac2-8981-221ea5674fba {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012795519"}, "pid": "663", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:42.196147 2023-07-08 08:14:42.19615 391286f3-617d-45b3-be13-8ebdbb467754 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012797198"}, "pid": "664", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:42.273573 2023-07-08 08:14:42.273576 56260737-dcfc-43fc-94a5-a51a44a71264 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012805433"}, "pid": "665", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:42.372181 2023-07-08 08:14:42.372186 daf851bb-6174-43a6-a96f-017e713bb904 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012879887"}, "pid": "666", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:42.479899 2023-07-08 08:14:42.479907 2feeb89d-b010-426d-b46d-2a9dfd836fea {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012883744"}, "pid": "667", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:42.579797 2023-07-08 08:14:42.579803 ddcb86d7-b2b8-42c8-8945-c34ee08d6f99 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012992349"}, "pid": "668", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:42.656986 2023-07-08 08:14:42.656989 316aefa8-66f5-4fc8-8eba-8f2b02e0e027 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1013119495"}, "pid": "669", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:42.746978 2023-07-08 08:14:42.746987 3744ebc0-819b-4c80-be3f-a449aa4c1c7e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1013122089"}, "pid": "670", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:42.830455 2023-07-08 08:14:42.830457 581bffe4-e271-4624-b8a8-9f79bab1b4a5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/101314953X"}, "pid": "671", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:42.916896 2023-07-08 08:14:42.916908 fa8a6762-84a6-4f91-a2f9-4545d71dceda {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1013171349"}, "pid": "672", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:43.008936 2023-07-08 08:14:43.008948 4e25b64d-6898-41a6-b612-ef27c624f715 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1013251334"}, "pid": "673", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:43.102962 2023-07-08 08:14:43.10297 e3097ed0-dff4-490a-b867-971b9ac129d3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1013340728"}, "pid": "674", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:43.185745 2023-07-08 08:14:43.185747 1dd06d93-9dd6-4282-9c88-80e478a422b0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1013349806"}, "pid": "675", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:43.265304 2023-07-08 08:14:43.265313 2e357620-ec33-4902-b555-818a0978e4fa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1013363299"}, "pid": "676", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:43.34617 2023-07-08 08:14:43.346173 9f8c6c87-f3a7-4b8a-b97d-63d2db2325db {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1013479785"}, "pid": "677", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:43.421181 2023-07-08 08:14:43.421196 a40288e8-0a9e-43c0-8f09-a55a1e621e59 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1013536878"}, "pid": "678", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:43.501291 2023-07-08 08:14:43.501294 38714ce6-686e-4c1a-b716-b9d2c013cb34 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1013590554"}, "pid": "679", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:43.58063 2023-07-08 08:14:43.580632 d9b3c740-7b70-4216-ad29-98bc9b81599f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1013628063"}, "pid": "680", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:43.65714 2023-07-08 08:14:43.657143 035a3fef-c9f0-4a61-93cc-6f5d62833085 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1013814339"}, "pid": "681", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:43.740497 2023-07-08 08:14:43.740501 f3035ec9-7257-4591-8300-c7560b6f6e80 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1013871383"}, "pid": "682", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:43.814536 2023-07-08 08:14:43.814539 e8a54e19-019a-4235-9179-caf5a3e400d7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1013878353"}, "pid": "683", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:43.89405 2023-07-08 08:14:43.894054 179a4fe0-010d-437c-b044-4d1deb93a212 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1013882156"}, "pid": "684", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:43.976159 2023-07-08 08:14:43.976162 8705a5a5-40e8-4351-8933-52962111b8bb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014065240"}, "pid": "685", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:44.063523 2023-07-08 08:14:44.063532 9a95fdab-15b6-46ab-b344-e98854859001 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014089158"}, "pid": "686", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:44.147052 2023-07-08 08:14:44.147055 850357fa-f689-4752-873e-7d6b840689f4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014092191"}, "pid": "687", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:44.242293 2023-07-08 08:14:44.242298 2e80882a-f781-4b7d-b1f5-45715f441ff3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014136539"}, "pid": "688", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:44.329782 2023-07-08 08:14:44.329792 d4466cc3-0c43-4375-9388-257f802ba022 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014143454"}, "pid": "689", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:44.416061 2023-07-08 08:14:44.416069 a7b8d9ba-2e6c-4603-849e-2f37342762b9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014223768"}, "pid": "690", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:44.513824 2023-07-08 08:14:44.513832 88528352-0d15-40cd-88d5-4a02d3da0b7c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/101425762X"}, "pid": "691", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:44.600615 2023-07-08 08:14:44.600625 3b8e1ef2-5539-47ab-812b-f078849541cf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014290287"}, "pid": "692", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:44.680782 2023-07-08 08:14:44.680788 bc9bd500-eda4-4cdd-ac3b-3003ec7d3a38 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014396158"}, "pid": "693", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:44.780144 2023-07-08 08:14:44.780152 3059a6bb-6542-414d-bd84-e3373868ec1f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014396824"}, "pid": "694", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:44.866138 2023-07-08 08:14:44.866149 5e5b20a0-8938-4f18-a5b1-22f5b3f845c3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/101440391X"}, "pid": "695", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:44.944879 2023-07-08 08:14:44.944883 bbddb37a-5419-4804-aa0a-779381e3faf7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014449278"}, "pid": "696", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:45.030881 2023-07-08 08:14:45.03089 d5d8762e-fdc2-4961-9fa0-58070e78b756 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014449677"}, "pid": "697", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:45.106428 2023-07-08 08:14:45.106433 78702151-4a97-4c8a-92ac-a16e992539ca {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014548012"}, "pid": "698", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:45.17944 2023-07-08 08:14:45.179443 a87becc0-acef-4b79-9c0c-2d1eb1c9845d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014626358"}, "pid": "699", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:45.270034 2023-07-08 08:14:45.270042 07ce05db-0e63-41da-a44d-54a8d4cb22c7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014638895"}, "pid": "700", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:45.350808 2023-07-08 08:14:45.350811 05edee6d-3bde-43ad-8a67-80e55216805b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014661951"}, "pid": "701", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:45.436481 2023-07-08 08:14:45.436485 04b175d1-7bb1-4673-a652-f5e8a678caa3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014671604"}, "pid": "702", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:45.523052 2023-07-08 08:14:45.523061 b1006484-c40e-4cb7-ba27-8664e609552a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014677610"}, "pid": "703", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:45.61407 2023-07-08 08:14:45.614079 0c9bce24-63a4-4c61-ac92-db5aebd245b4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014681685"}, "pid": "704", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:45.714525 2023-07-08 08:14:45.714533 e9212810-7a0b-49f5-8ae0-d5afe7287e13 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014683998"}, "pid": "705", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:45.801629 2023-07-08 08:14:45.801637 a0511a2e-eb51-4d45-8d17-e78763930759 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014696348"}, "pid": "706", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:45.881743 2023-07-08 08:14:45.881745 424e5160-1daa-4d1e-8ab4-4348b762c1e0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014702739"}, "pid": "707", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:45.977149 2023-07-08 08:14:45.977154 d701f27b-d603-4dd4-9480-543d5af64a9c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014714222"}, "pid": "708", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:46.078984 2023-07-08 08:14:46.078992 120e5273-44a7-4295-b17d-a6a037d20d70 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014733642"}, "pid": "709", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:46.157834 2023-07-08 08:14:46.157839 3c7bb2b0-f321-4ebc-8eb2-9fa0dc90cea2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014745357"}, "pid": "710", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:46.231702 2023-07-08 08:14:46.231705 8ed1eae5-d8b3-4feb-a98f-2ecd3373c775 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/101476677X"}, "pid": "711", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:46.333867 2023-07-08 08:14:46.333874 00786721-190e-4a63-9bbc-e9c65a2d5ac6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/101477635X"}, "pid": "712", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:46.42661 2023-07-08 08:14:46.426619 6c03867a-c27a-424d-9a8e-8467bea7e46c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014803217"}, "pid": "713", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:46.508336 2023-07-08 08:14:46.508345 69a9c6dd-1113-4cc5-aef6-02fcb6c2ca8b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014837839"}, "pid": "714", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:46.59317 2023-07-08 08:14:46.593179 5f3e5e10-281f-41dc-b560-7498a7f6e3a7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014954320"}, "pid": "715", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:46.673854 2023-07-08 08:14:46.673858 22776e1c-0690-4367-967c-388362e06dcd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1015098495"}, "pid": "716", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:46.784574 2023-07-08 08:14:46.784581 adda26b0-cf60-42f9-8bc5-b5025ff2c40f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1015101003"}, "pid": "717", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:46.866783 2023-07-08 08:14:46.866786 d2beb0c1-ce51-4a38-8f55-f1cccf98c688 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/101514859X"}, "pid": "718", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:46.949848 2023-07-08 08:14:46.949852 e933dd7e-42fc-45af-8ef0-2f1e69fae735 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1015165990"}, "pid": "719", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:47.03884 2023-07-08 08:14:47.038848 b7c0c4e2-899c-4c9c-9861-787ceaa30d75 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1015193862"}, "pid": "720", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:47.142745 2023-07-08 08:14:47.142751 af698476-fe49-41d1-961d-4c99bc408337 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1015243762"}, "pid": "721", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:47.217996 2023-07-08 08:14:47.217999 b3687726-14d1-4ac1-a45f-000184edd230 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1015331386"}, "pid": "722", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:47.286141 2023-07-08 08:14:47.286144 361c8c19-96cc-44d2-8ce7-1f069c970a60 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1015348394"}, "pid": "723", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:47.366009 2023-07-08 08:14:47.366013 0ab3f9a9-38be-4248-b739-0da730386583 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1015354157"}, "pid": "724", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:47.444867 2023-07-08 08:14:47.444871 38b18309-e298-49c9-ba43-2477b7ba9c1c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1015371035"}, "pid": "725", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:47.537012 2023-07-08 08:14:47.537021 5691ed98-e3b7-4075-bfc4-9a2aa77baeac {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1015412998"}, "pid": "726", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:47.628298 2023-07-08 08:14:47.628307 d471de68-485d-4256-995f-ec4568ccc83d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1015428967"}, "pid": "727", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:47.712838 2023-07-08 08:14:47.712846 e18d81ac-22de-4e7d-9f33-938e1b1ff383 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1015448186"}, "pid": "728", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:47.796137 2023-07-08 08:14:47.796146 8be2734a-f00f-4370-8576-ec5e74dc47b2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1015448305"}, "pid": "729", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:47.886096 2023-07-08 08:14:47.886109 8faf4be3-afa0-4c70-bf5d-d6ca4fe17efb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1015457789"}, "pid": "730", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:47.979428 2023-07-08 08:14:47.979431 0c3e4d53-b026-4c7c-b898-b9debd386653 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1015645631"}, "pid": "731", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:48.066151 2023-07-08 08:14:48.066154 34499cf4-35a9-4625-be61-be0f8e7364e2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1015750427"}, "pid": "732", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:48.147373 2023-07-08 08:14:48.147376 5f324c16-96a4-41e8-958d-659b9f6bfd5a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1015752756"}, "pid": "733", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:48.223568 2023-07-08 08:14:48.223573 1af36bcd-87e8-4ded-a8a1-b17b1693f924 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1015778275"}, "pid": "734", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:48.333001 2023-07-08 08:14:48.333004 6f641c1b-3387-440e-b979-1314b194ebe6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1015799485"}, "pid": "735", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:48.437324 2023-07-08 08:14:48.437327 5c16028d-8009-4d8f-ac44-34615653fb00 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1016006969"}, "pid": "736", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:48.517179 2023-07-08 08:14:48.517182 ec5cc81a-0c16-46f9-989e-7aebd6cff225 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1016159560"}, "pid": "737", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:48.611299 2023-07-08 08:14:48.611307 838f4cb1-a6de-4780-9309-982202acfda8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1016626150"}, "pid": "738", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:48.783666 2023-07-08 08:14:48.78367 d7b7220b-e554-4db8-b510-86d09cc6e582 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1016951426"}, "pid": "740", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:48.890218 2023-07-08 08:14:48.890232 e9e17f54-6c6e-4890-b994-196ba23c0b78 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1016975198"}, "pid": "741", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:49.001393 2023-07-08 08:14:49.001402 35e395b4-062a-48ba-b4c2-8d4a974da12a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1017107246"}, "pid": "742", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:49.098523 2023-07-08 08:14:49.098532 782f2df2-9677-4505-98c1-4cd83491dac5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1017352712"}, "pid": "743", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:49.181327 2023-07-08 08:14:49.181331 a04f2c59-1d44-4785-9deb-da78315ddade {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1017628769"}, "pid": "744", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:49.275896 2023-07-08 08:14:49.2759 29207403-9abe-45ac-b1a2-57b46ab30391 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1017668051"}, "pid": "745", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:49.359663 2023-07-08 08:14:49.359667 e20cec49-0ac1-4037-8c79-2b2ac9b50ad6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1017696241"}, "pid": "746", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:49.442353 2023-07-08 08:14:49.442362 fc7d35aa-ba4f-4f0d-920f-24cbe2b03871 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1018180087"}, "pid": "747", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:49.522457 2023-07-08 08:14:49.522461 4541eb13-8b3a-485f-aa96-644b7da3ec25 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1018299807"}, "pid": "748", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:49.610687 2023-07-08 08:14:49.61069 16c7f5f2-9737-49ca-b526-543c9d364306 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1018900772"}, "pid": "749", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:49.80776 2023-07-08 08:14:49.807772 e33b59b3-cc95-46db-977d-b709256560bd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1020150378"}, "pid": "751", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:49.900309 2023-07-08 08:14:49.900312 2b1881e8-dbdc-4d99-98d1-f9c5968c6a62 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/102047033X"}, "pid": "752", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:49.999828 2023-07-08 08:14:49.999837 6aa8f672-3990-45e1-9d25-745696dfe8cc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1020473932"}, "pid": "753", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:50.174012 2023-07-08 08:14:50.174015 85562fd6-dc2f-4495-a0f4-504ad754310e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1020751282"}, "pid": "755", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:50.280076 2023-07-08 08:14:50.280085 306f9c8d-d76c-4d58-aafa-c2bfc1427675 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/102248435"}, "pid": "756", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:50.371846 2023-07-08 08:14:50.371856 cfaed5f9-8fa4-4f71-ad62-d4d3d4e47914 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1023582090"}, "pid": "757", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:50.475806 2023-07-08 08:14:50.475811 9f81c369-ec74-4020-8f38-45297a199ad6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1023649187"}, "pid": "758", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:50.561064 2023-07-08 08:14:50.561074 38156b4f-71a2-45af-be18-8f22341bdabb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/102402868"}, "pid": "759", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:50.656117 2023-07-08 08:14:50.65612 93d2fe17-3b0e-44ad-84c4-e2ff78a3a6f2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/102503214"}, "pid": "760", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:50.756942 2023-07-08 08:14:50.756946 05f8cf35-9e55-4552-bbcc-7560a6f6998e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1025074823"}, "pid": "761", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:50.845704 2023-07-08 08:14:50.845712 e6d25ef2-69df-43f4-8a20-03cf1d36d51e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1025297636"}, "pid": "762", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:38.529266 2023-07-08 08:22:38.529273 f62de8f0-9e8a-4f14-9034-2138d85a83d0 {"pid": "5352", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/242451098"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:51.03221 2023-07-08 08:14:51.032214 574a8d71-23ae-41a2-a8e6-80570aa08240 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1026316790"}, "pid": "764", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:51.131582 2023-07-08 08:14:51.13159 3a064a48-4f04-49eb-af20-5fb9dda95a94 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1026448301"}, "pid": "765", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:51.207841 2023-07-08 08:14:51.207849 4076aeb5-4950-47e2-bac6-adaf492b4e45 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1027019080"}, "pid": "766", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:51.315753 2023-07-08 08:14:51.315758 5d0f1572-8c83-4c61-ad48-bfda202b99e8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1027170250"}, "pid": "767", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:51.400895 2023-07-08 08:14:51.400898 ba0e6988-3b4e-4e33-8d6b-cbdd3e0d6354 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1027359981"}, "pid": "768", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:51.48342 2023-07-08 08:14:51.483427 8b60fbbb-c76b-4195-b55b-a6bb1f8de724 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1027463770"}, "pid": "769", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:51.58761 2023-07-08 08:14:51.587617 0082accb-4d0e-4a47-a8a4-e9abd7852d7a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1027567835"}, "pid": "770", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:51.673893 2023-07-08 08:14:51.673898 881120bc-847a-4618-a7b0-083d292472b4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1028398166"}, "pid": "771", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:49.708599 2023-07-08 10:26:01.91444 8e70ccae-a96b-4874-925e-472e5400d107 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1019086750"}, "pid": "750", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/128657642"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103681673"} 4 -2023-07-08 08:14:50.088201 2023-07-08 10:24:38.352571 ec74e26d-47ee-402a-bc49-6a0e1615d6d1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1020513020"}, "pid": "754", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101445813"} 2 -2023-07-08 08:14:51.876787 2023-07-08 08:14:51.876796 2375605d-2799-410b-ad00-62240fed09e8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/102892113"}, "pid": "773", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:51.966335 2023-07-08 08:14:51.966343 552f9a79-b286-4929-a281-2190d38f92d0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1030495416"}, "pid": "774", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:52.057118 2023-07-08 08:14:52.057128 b7216dd4-d314-472e-ab4c-91c0112facaa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1031215441"}, "pid": "775", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:52.133469 2023-07-08 08:14:52.133472 0c5b1469-439c-49cb-b10d-39888829dba2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/103129928"}, "pid": "776", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:52.203582 2023-07-08 08:14:52.203585 9a773c89-5175-444b-ba6e-acced3b835e5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/103163357X"}, "pid": "777", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:52.401189 2023-07-08 08:14:52.401197 9ae2af37-bc08-4515-b9f0-acc70f5a23d7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1032456213"}, "pid": "779", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:52.487452 2023-07-08 08:14:52.487459 09239b4b-ff89-492e-8e8b-25e3393f88aa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1032675357"}, "pid": "780", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:52.580415 2023-07-08 08:14:52.580426 0c188aa1-6a13-4583-9ae4-83fe470a26c0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1033120790"}, "pid": "781", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:52.66375 2023-07-08 08:14:52.663753 17653a7f-4267-4314-8fac-158bce1d1f3c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1033471542"}, "pid": "782", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:52.753804 2023-07-08 08:14:52.753816 fce5953c-bbc6-478d-a74e-15377e12f40b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1033570451"}, "pid": "783", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:52.846917 2023-07-08 08:14:52.846929 eb0a8e94-67bd-4c9b-bdd5-403cd74f21fe {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1034236164"}, "pid": "784", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:52.936763 2023-07-08 08:14:52.936769 d19ed348-2300-4b4b-a769-3927f252d5e8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1034635476"}, "pid": "785", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:53.019168 2023-07-08 08:14:53.019173 8d309e9b-044f-4f28-9b0f-a0e2b6de5e04 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/103473262"}, "pid": "786", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:53.114181 2023-07-08 08:14:53.114189 65bf49ac-0b31-4129-865c-137f8f31ebce {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1035444666"}, "pid": "787", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:53.217899 2023-07-08 08:14:53.21791 343e8b17-67c6-4255-abbf-e6c5842b90a7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1035621460"}, "pid": "788", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:53.334822 2023-07-08 08:14:53.334833 eeb41c1a-84ea-4ef0-b0c6-7e50a3be1cda {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1035656221"}, "pid": "789", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:53.4481 2023-07-08 08:14:53.448113 475f6003-4cbd-40ff-b9a9-552508670cca {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1035688298"}, "pid": "790", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:53.570572 2023-07-08 08:14:53.57058 38a0a7c1-a875-4994-8bb6-9ec2ae28d200 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1036111024"}, "pid": "791", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:53.681038 2023-07-08 08:14:53.681046 407380ac-034d-412c-ab16-b8774586d850 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1036550141"}, "pid": "792", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:53.794933 2023-07-08 08:14:53.794945 b4bad931-6c3a-472f-9d77-3d61b5ee91a5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1037547543"}, "pid": "793", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:53.8966 2023-07-08 08:14:53.896611 6b3cbbdd-d1a8-4b39-88f6-ed05e4448b93 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1037748980"}, "pid": "794", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:54.018376 2023-07-08 08:14:54.018388 33f84e27-a8d8-4046-840e-9ba7898f278b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1037788141"}, "pid": "795", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:54.126249 2023-07-08 08:14:54.126259 0ba97964-59a5-494e-bad6-b23543f68845 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/103807349"}, "pid": "796", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:54.342637 2023-07-08 08:14:54.342646 98fbb6a7-f7bf-4d1f-88ec-da8dc2071aff {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/103899138"}, "pid": "798", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:54.44611 2023-07-08 08:14:54.446118 17ccf019-8fc0-4089-8a98-6d358746efd3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/104057386"}, "pid": "799", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:54.556273 2023-07-08 08:14:54.556282 a82af9d4-64ef-4472-885d-ac83c1167565 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1041364962"}, "pid": "800", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:54.682859 2023-07-08 08:14:54.682871 ebf50dbf-ed76-4477-aa39-7772a1b0dcac {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1041494114"}, "pid": "801", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:54.828854 2023-07-08 08:14:54.82886 d1345e55-9a68-4c7e-977b-6383907756dd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1041505701"}, "pid": "802", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:54.895959 2023-07-08 08:14:54.895964 ad2cafd6-427b-4d1d-aec4-91d3e8755faa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1042050643"}, "pid": "803", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:54.967971 2023-07-08 08:14:54.967974 658424bd-b124-4c80-8c9d-8cc500e84af2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/104240636"}, "pid": "804", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:55.047384 2023-07-08 08:14:55.047392 0a10e334-dc5a-4ede-be3f-e6246b2ecc45 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1043162917"}, "pid": "805", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:38.646351 2023-07-08 10:25:44.01388 5bbc59f7-20e7-43b0-8079-cb98cc25bf47 {"pid": "5353", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/24245383X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103158367618801280320"} 2 -2023-07-08 08:14:55.168638 2023-07-08 08:14:55.168646 db7a20cf-9025-470f-9a9b-3a54706b7475 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1043761047"}, "pid": "806", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:55.278571 2023-07-08 08:14:55.278579 49c7584b-0d10-482d-9bb8-d34b38998290 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1043881336"}, "pid": "807", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:55.386026 2023-07-08 08:14:55.386036 bb9c85b0-32a8-44c7-962e-60c15c1ed212 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1044246936"}, "pid": "808", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:55.496726 2023-07-08 08:14:55.496736 45f7a382-b4b7-4ee2-8399-a3e659b2a428 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1044369329"}, "pid": "809", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:55.608488 2023-07-08 08:14:55.608496 3725ab11-cacb-4650-971e-b83461134bd3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1046664522"}, "pid": "810", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:55.844735 2023-07-08 08:14:55.844745 477fc103-7d5c-46d9-be39-782f4b034735 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1047811014"}, "pid": "812", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:56.102208 2023-07-08 08:14:56.102217 cf28a1d8-2163-407d-80e4-4cd85bf7396d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1048657442"}, "pid": "814", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:56.250219 2023-07-08 08:14:56.250229 ea173058-2ec0-4209-9874-f2c485695417 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1050328639"}, "pid": "815", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:56.367147 2023-07-08 08:14:56.367156 67d6b367-a1ec-441f-bebf-ec61424a4489 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1050869354"}, "pid": "816", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:56.491817 2023-07-08 08:14:56.491827 9714f8e6-d551-41d4-bbf0-13a6c61f1378 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1051111412"}, "pid": "817", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:38.746971 2023-07-08 08:22:38.746979 2c4412c1-5b1d-42f2-8c0d-aaab74ddd2ba {"pid": "5354", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/242518664"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:56.873419 2023-07-08 08:14:56.873428 4f2ae601-0b96-48de-8f37-86e18385d2ff {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1051657490"}, "pid": "820", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:56.991137 2023-07-08 08:14:56.991152 171c4f80-05a1-4974-a269-65439d14fd45 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1051682878"}, "pid": "821", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:57.109017 2023-07-08 08:14:57.109028 6f8ed89a-4e3e-44b7-a542-4e10197d04ab {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1051697891"}, "pid": "822", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:57.234697 2023-07-08 08:14:57.234705 a0a319c3-be89-48b2-b91f-8ab40cb651d5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1051918510"}, "pid": "823", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:57.329478 2023-07-08 08:14:57.329485 0cfab5a0-d24c-469d-b774-ba285ac02f93 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1052619274"}, "pid": "824", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:57.443355 2023-07-08 08:14:57.443363 26caedd2-b99e-413c-a419-c742cc25e15f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1053241011"}, "pid": "825", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:57.697192 2023-07-08 08:14:57.697201 44c38267-8147-47c0-a114-074edfa10e55 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1055067094"}, "pid": "827", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:57.814688 2023-07-08 08:14:57.814696 84d5e64d-31b9-4b0d-abfe-d715e5253a6c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1055101608"}, "pid": "828", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:58.04906 2023-07-08 08:14:58.04907 fe6a0af0-2aa0-483c-a1f2-7a4b88aa54da {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1055211292"}, "pid": "830", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:56.612114 2023-07-08 10:28:28.208422 a3e64cc8-ad46-416f-8a38-fa2dceaed706 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1051286786"}, "pid": "818", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003645251"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/082091943"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108341185"} 6 -2023-07-08 08:14:58.300644 2023-07-08 08:14:58.300657 bd6c4ea2-19a6-4cb8-bdb2-df57d25848fb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1055490760"}, "pid": "832", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:58.424856 2023-07-08 08:14:58.424865 f824d742-19b8-4d1c-8962-184aeb506c8f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/105550835X"}, "pid": "833", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:58.538409 2023-07-08 08:14:58.538417 b2f1405c-6557-4c85-8b2a-a8eddfa187b9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1055540210"}, "pid": "834", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:57.937481 2023-07-08 10:25:00.274286 285fbf07-9ec9-4693-9258-66beaa0a51cd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1055200525"}, "pid": "829", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10187835"} 2 -2023-07-08 08:14:55.968688 2023-07-08 10:26:46.473475 07e6e841-a393-48c4-ac41-82ff2e23e2fc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1048228142"}, "pid": "813", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105898877"} 2 -2023-07-08 08:14:55.73198 2023-07-08 10:25:35.795615 423921aa-8df9-4399-b09c-d6004cf1a889 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1047508257"}, "pid": "811", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/16737740X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102960359"} 4 -2023-07-08 08:14:58.655655 2023-07-08 10:31:14.93623 cfec5c97-d568-4663-afb1-65dd52af985d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1055644334"}, "pid": "835", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/087470659"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112035090"} 4 -2023-07-08 08:14:57.573923 2023-07-08 10:27:21.02605 71722ee9-e731-43d4-850a-04902911e19b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1054143951"}, "pid": "826", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003491484"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/071535616"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106878977"} 6 -2023-07-08 08:14:59.149057 2023-07-08 08:14:59.149068 c4cad243-2b22-496d-85e0-6df064e40248 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1056074779"}, "pid": "839", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:59.253941 2023-07-08 08:14:59.25395 7faccfaf-e269-4e15-beaf-09473d159795 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1056091770"}, "pid": "840", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:59.360008 2023-07-08 08:14:59.360017 da8d6193-f7cc-428e-8225-c2998edeb0ca {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1056123087"}, "pid": "841", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:59.473068 2023-07-08 08:14:59.473081 a25de663-f73e-44c1-81a1-6f49c55b5662 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1056148799"}, "pid": "842", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:59.579626 2023-07-08 08:14:59.579635 7589ecfb-24f0-40d2-817e-23f07c8fde8b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1056220570"}, "pid": "843", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:59.693568 2023-07-08 08:14:59.69358 9ccfeea5-f49c-472d-9d4a-be867ebe9c69 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1056241462"}, "pid": "844", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:59.803888 2023-07-08 08:14:59.803895 331e64bc-327e-4351-91f2-a91088eefbb6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1056400331"}, "pid": "845", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:59.919359 2023-07-08 08:14:59.919371 e100ddab-7349-4121-8e19-f34097334286 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1056497572"}, "pid": "846", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:38.847925 2023-07-08 08:22:38.847933 b452db1b-28f2-4eb4-8959-327bde5c6474 {"pid": "5355", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/242542948"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:38.976887 2023-07-08 08:22:38.976899 330ba020-c0d9-42a1-a70d-3ee8254f8e41 {"pid": "5356", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/242557139"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:00.307459 2023-07-08 08:15:00.307468 043088f7-bfef-4f48-89fb-8166552924e3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1056646438"}, "pid": "849", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:00.428292 2023-07-08 08:15:00.428302 1765b3b7-7e7d-4168-9ec9-aff6ef60c916 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1056682051"}, "pid": "850", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:00.651367 2023-07-08 08:15:00.651379 f6c95360-0718-42de-8976-882e597e0e5f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1057605336"}, "pid": "852", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:00.796576 2023-07-08 08:15:00.796584 322feea3-dcb2-4816-a927-81712a71c4db {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1057630616"}, "pid": "853", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:00.942077 2023-07-08 08:15:00.942083 7d620a78-26a4-40e0-b278-11cd99004221 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1058848518"}, "pid": "854", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:01.02238 2023-07-08 08:15:01.022384 9482e6cd-2b07-4f8d-9e8d-b19aa19d148b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1059467119"}, "pid": "855", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:01.095798 2023-07-08 08:15:01.095802 2fbc5de4-2dfe-4787-8cca-432ec853e479 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1060675595"}, "pid": "856", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:01.247806 2023-07-08 08:15:01.24781 2d2a0efe-b2b7-4043-8cc6-d382fae29114 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1060757729"}, "pid": "858", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:01.322154 2023-07-08 08:15:01.322159 63e9c06d-aa00-49bb-8e2f-a69edd18ea87 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1061330117"}, "pid": "859", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:01.489798 2023-07-08 08:15:01.489802 accda6c4-f82a-4957-bc3a-dbb041f9387d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1061395804"}, "pid": "861", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:01.561056 2023-07-08 08:15:01.561059 9cd03668-f45e-4d1a-8dd1-025f7b6c556a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1061433706"}, "pid": "862", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:01.63562 2023-07-08 08:15:01.635624 c96c6cd8-2dec-4761-aa9f-db169336402d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1061583368"}, "pid": "863", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:01.713283 2023-07-08 08:15:01.713287 1d4be12d-0d2a-4d96-9e5d-3681e9f2b4ee {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1061592588"}, "pid": "864", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:01.815091 2023-07-08 08:15:01.815099 ef41d0e1-00f9-4841-a157-1e454a28e26e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1061744094"}, "pid": "865", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:01.893623 2023-07-08 08:15:01.893627 40deab85-bba7-484b-b6a2-75f2e9109bc5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1061835065"}, "pid": "866", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:01.967966 2023-07-08 08:15:01.967971 6f28d387-e216-4f86-b348-54e5f6688980 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1061837513"}, "pid": "867", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:02.052196 2023-07-08 08:15:02.052205 94737486-6659-4882-8e66-2fc7c0ee1bb0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1061999920"}, "pid": "868", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:02.142385 2023-07-08 08:15:02.142389 98f0a512-fd77-4cff-83ea-1047a71b51db {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1062371135"}, "pid": "869", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:59.046428 2023-07-08 10:23:39.122961 51fc9fc5-8b48-4ac1-ac3d-15be548fa34b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1055795316"}, "pid": "838", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100182771"} 2 -2023-07-08 08:15:01.422313 2023-07-08 10:26:50.283465 ee2fd8e9-95e4-43e0-b3db-7d108e87d9d2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/106136769X"}, "pid": "860", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106010384"} 2 -2023-07-08 08:15:00.545066 2023-07-08 10:28:36.186945 46a1e855-7861-4194-bf1a-5127752bb20d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1057324841"}, "pid": "851", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1085159477658927990009"} 2 -2023-07-08 08:15:02.225575 2023-07-08 08:15:02.225579 167e8151-e109-46c1-aa73-a9946bc9ba6e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/106243756X"}, "pid": "870", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:02.293773 2023-07-08 08:15:02.293777 84fd1fb6-fcd6-4d8a-97a8-92f8046b9373 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1062692519"}, "pid": "871", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:02.363476 2023-07-08 08:15:02.363482 041cd360-3b19-4608-9c3c-6f969d135917 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1063310490"}, "pid": "872", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:02.434293 2023-07-08 08:15:02.434296 0209f735-fb67-49cd-ac3c-a532651cdc7e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1063319633"}, "pid": "873", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:02.579801 2023-07-08 08:15:02.579804 4df3aa1e-e4cd-4c4c-8ec9-8900324fcd5c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1064701922"}, "pid": "875", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:02.647885 2023-07-08 08:15:02.647888 ac8a7761-aed4-45be-a418-08d6c3168f9b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1064912958"}, "pid": "876", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:02.718909 2023-07-08 08:15:02.718915 a4bd0e2e-d240-4942-93ca-a57f72ca021b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1065743769"}, "pid": "877", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:02.787479 2023-07-08 08:15:02.787482 a36a2766-da32-4c70-a805-77c6b7003b17 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1065866356"}, "pid": "878", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:02.857876 2023-07-08 08:15:02.857879 7512a0b2-705c-40f0-a55e-d2d228b5db98 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1067106146"}, "pid": "879", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:02.927302 2023-07-08 08:15:02.927305 1f5b01d6-718c-4918-b853-2ef0fbff7352 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1067168370"}, "pid": "880", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:02.996702 2023-07-08 08:15:02.996705 3c3d47ab-f3c2-46e0-8d03-3182613e814a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1067217495"}, "pid": "881", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:03.067371 2023-07-08 08:15:03.067374 34482040-2585-46dc-96cf-4e56af4bd7f6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1067908366"}, "pid": "882", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:39.076573 2023-07-08 08:22:39.076581 cbbbacf5-8269-4f81-89c3-e13ca69e3ea8 {"pid": "5357", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/242723470"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:03.262691 2023-07-08 08:15:03.262699 70395d24-2e04-4443-9d88-909ad168042c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1068089962"}, "pid": "884", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:03.36468 2023-07-08 08:15:03.364687 2b3c4b43-d9aa-4ec6-aeae-c6fd95d86ce9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1071439871"}, "pid": "885", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:03.443049 2023-07-08 08:15:03.443053 6a9e0234-0654-41b1-9f0b-14b50c2e8449 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/107289806"}, "pid": "886", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:03.513144 2023-07-08 08:15:03.513147 1178c638-a45e-4e70-8a1b-5eb1594b3c53 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1072904977"}, "pid": "887", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:03.579734 2023-07-08 08:15:03.579736 5006222f-3808-4912-a6e5-e8a6bb558091 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1072916436"}, "pid": "888", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:03.654399 2023-07-08 08:15:03.654402 5cbe727d-0a14-47b7-aa7c-e06090b57506 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1072932296"}, "pid": "889", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:03.731797 2023-07-08 08:15:03.7318 bb95c158-5e01-4f18-99d8-e8f0024eac81 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1072961296"}, "pid": "890", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:03.807652 2023-07-08 08:15:03.807656 3f36a368-9c47-4c69-9109-cc7ee5955a66 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1073022544"}, "pid": "891", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:03.895444 2023-07-08 08:15:03.895447 f99de3a8-c45f-41b8-953e-1951736e7810 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1073026825"}, "pid": "892", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:03.996339 2023-07-08 08:15:03.996342 44f217db-ff4d-496e-8d71-dbbc71453574 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1073045927"}, "pid": "893", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:04.091747 2023-07-08 08:15:04.091758 55135294-c0d8-42c9-9a9e-9e9750dc920b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1073087123"}, "pid": "894", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:04.173692 2023-07-08 08:15:04.173695 84f3ebd7-53e2-409a-b785-ea1155c6941b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/107371876X"}, "pid": "895", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:04.24332 2023-07-08 08:15:04.243323 04775aba-0380-45c2-b1c5-d67306663a5c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/107495839X"}, "pid": "896", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:04.321008 2023-07-08 08:15:04.321012 5a4c1d27-1715-4e46-9569-0d8d6ad7d129 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1076838170"}, "pid": "897", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:04.403823 2023-07-08 08:15:04.403825 76254a1e-50b9-494f-8271-e94436244959 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1076933726"}, "pid": "898", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:04.47358 2023-07-08 08:15:04.473583 0d6df9e7-4b17-410c-86ec-d4dc3454edcd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1077345259"}, "pid": "899", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:04.657653 2023-07-08 08:15:04.657655 326f216e-42ac-416c-8ebd-7f5714e109eb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1077612869"}, "pid": "901", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:04.562757 2023-07-08 10:27:16.742262 4d70b99a-a057-4073-909d-ec0406705d76 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1077501706"}, "pid": "900", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106773784"} 2 -2023-07-08 08:15:04.749131 2023-07-08 08:15:04.749142 10b2bf3c-86c7-4e6a-b2ae-808d5a07b4b7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1077631081"}, "pid": "902", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:04.824782 2023-07-08 08:15:04.824785 413d1c29-8952-4d57-a317-2abdf23502e2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1077666799"}, "pid": "903", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:04.912485 2023-07-08 08:15:04.912492 3c3087f9-de99-43a8-9ce0-322395f1e395 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1077833237"}, "pid": "904", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:05.1121 2023-07-08 08:15:05.112111 cd86856e-b05e-454b-80eb-abbe83a02b5e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1077979355"}, "pid": "906", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:05.210207 2023-07-08 08:15:05.210216 b9eaebfb-1eb6-423b-974f-b3f7233fd30a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1078040133"}, "pid": "907", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:05.309083 2023-07-08 08:15:05.309092 9046a333-a559-4448-9981-dce5f47f3b77 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/107808355X"}, "pid": "908", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:05.393258 2023-07-08 08:15:05.39326 d35ca0cb-807c-4f2c-945c-63becd753f3e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/107817864X"}, "pid": "909", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:05.467125 2023-07-08 08:15:05.467128 0fdf02d1-7bfc-4a39-9ee7-82b3f90ff30e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1078249024"}, "pid": "910", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:05.553854 2023-07-08 08:15:05.553861 247048b1-4c14-4111-b6a0-f3f60def58ca {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1078758360"}, "pid": "911", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:05.636805 2023-07-08 08:15:05.636809 ba8a73f3-0395-491b-af2a-6f157e6454d7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/107916894"}, "pid": "912", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:05.741469 2023-07-08 08:15:05.741479 5465dd2e-0df8-4597-8201-b8c7f1fb23a9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1079291768"}, "pid": "913", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:05.83477 2023-07-08 08:15:05.834778 83541c23-8995-40e5-8df1-c8c722e84c0b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1079304231"}, "pid": "914", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:05.910721 2023-07-08 08:15:05.910725 68b0662b-bdde-4c9a-9e74-e594832e593f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1079330844"}, "pid": "915", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:05.980099 2023-07-08 08:15:05.980101 b388fa6b-6cb4-4933-863d-6ccfaa1656ac {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1079390413"}, "pid": "916", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:06.097765 2023-07-08 08:15:06.097777 eb62a90c-7125-48ea-a365-e26a8209737e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1079392009"}, "pid": "917", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:06.188152 2023-07-08 08:15:06.188159 fff69fac-0b78-4ebd-8479-4948e589ffc4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1079423273"}, "pid": "918", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:06.267509 2023-07-08 08:15:06.267512 769e997b-3336-451c-980b-7424a227d7fc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1079507582"}, "pid": "919", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:06.357889 2023-07-08 08:15:06.357901 4defdc72-714e-4927-a74d-ebb4e5be1665 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/107956215X"}, "pid": "920", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:06.458446 2023-07-08 08:15:06.458455 d244d292-92c6-438c-bf0f-d450c094ea52 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1079687157"}, "pid": "921", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:06.542796 2023-07-08 08:15:06.542808 0b0f6029-cf7f-4b0f-8d60-5dfc11cd501c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1079982175"}, "pid": "922", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:06.72834 2023-07-08 08:15:06.728352 c8a99da7-673d-4f76-9397-3f9ccb1cf2aa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1080488448"}, "pid": "924", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:06.818278 2023-07-08 08:15:06.818281 f240c14f-701a-4655-95df-556f5592eaa5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1080490868"}, "pid": "925", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:06.895129 2023-07-08 08:15:06.895137 fc061ae9-bda6-465b-b4c4-53ef924023ac {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/108049450"}, "pid": "926", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:06.969944 2023-07-08 08:15:06.969949 2154ad28-19ee-468f-af9e-5d45ab042341 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1080869417"}, "pid": "927", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:07.068074 2023-07-08 08:15:07.068079 953d71ed-f2ad-4ea4-b1cd-932cb2e718df {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1081028270"}, "pid": "928", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:07.378131 2023-07-08 08:15:07.378134 a087c2ac-4951-46a4-98f7-f641b40e3362 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1081450452"}, "pid": "931", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:07.462931 2023-07-08 08:15:07.462934 4f51eba9-7c24-4d93-9d3b-39f2df8c4d17 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1081489529"}, "pid": "932", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:07.551164 2023-07-08 08:15:07.551173 5141df3f-1c2a-46e0-820d-e5f2cee87ed9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1081556625"}, "pid": "933", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:06.643172 2023-07-08 10:29:35.17232 d6e4829e-e4be-49dd-bb4c-e29b3f42aa8e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1080093648"}, "pid": "923", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110145003277461300194"} 2 -2023-07-08 08:15:05.019453 2023-07-08 10:30:36.369679 5095a077-0e6f-4f78-a019-75b3b65aef4a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1077873468"}, "pid": "905", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11144782931879677381"} 2 -2023-07-08 08:15:07.181211 2023-07-08 10:30:37.416156 3b31bbd3-9b59-40fa-8e05-07f36dedfafd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1081399880"}, "pid": "929", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11145376243683720817"} 2 -2023-07-08 08:15:07.648059 2023-07-08 08:15:07.648064 cf2a269c-568c-4da7-8416-71cd6cd5423e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1081654597"}, "pid": "934", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:07.720867 2023-07-08 08:15:07.720874 58e3ec2f-f10b-4731-81ca-cca95648eeba {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1081687118"}, "pid": "935", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:07.809557 2023-07-08 08:15:07.809565 d47ed4b1-98cf-4745-a28c-2793777032e1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1081988355"}, "pid": "936", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:07.888429 2023-07-08 08:15:07.888432 8490ca7f-cc28-473d-9ab7-6e7e85442b9a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1082002127"}, "pid": "937", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:07.961976 2023-07-08 08:15:07.961979 db413378-3c6b-4577-87c4-3a1ff7a09b36 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1082006580"}, "pid": "938", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:08.042977 2023-07-08 08:15:08.042986 8e002ec7-ca44-4ab7-bccd-fa50bc51115c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1082007447"}, "pid": "939", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:08.129249 2023-07-08 08:15:08.12926 7ff16183-498f-4086-aa4f-87b6c39b421d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/108231563X"}, "pid": "940", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:08.234296 2023-07-08 08:15:08.234302 3f445b16-add7-4f5f-8a27-ff4bd79a3042 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1082319058"}, "pid": "941", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:08.320516 2023-07-08 08:15:08.32052 27a248c5-34bb-48a5-8a74-80cbe03623de {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1082383880"}, "pid": "942", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:08.404457 2023-07-08 08:15:08.404461 edadc516-9f26-42f5-9d95-c8850bad1120 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1082387401"}, "pid": "943", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:08.48072 2023-07-08 08:15:08.480723 334051ea-7862-4763-926d-c840554b8477 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1084363704"}, "pid": "944", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:39.178833 2023-07-08 08:22:39.178843 6b50021a-b3ed-40a2-800e-0fc7e95b5c1e {"pid": "5358", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/242740065"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:08.661468 2023-07-08 08:15:08.661477 cb63b023-7b42-49b7-b6b1-4225635b4997 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1085208036"}, "pid": "946", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:08.755489 2023-07-08 08:15:08.755497 e3cd93a9-e609-4562-ba46-826d70e5bec1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1085704564"}, "pid": "947", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:08.838294 2023-07-08 08:15:08.838297 53a239d7-858b-4731-8be2-61319447e7ae {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1085733416"}, "pid": "948", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:08.928002 2023-07-08 08:15:08.928012 25e05b3a-4b34-4ee3-8781-6e46e3d667dd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1085772225"}, "pid": "949", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:09.02001 2023-07-08 08:15:09.020017 be848cad-637f-430d-809c-c92384262c4a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1085773566"}, "pid": "950", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:09.134644 2023-07-08 08:15:09.134652 a0a3ba56-b4fe-4d99-9ceb-a8211846cef7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1085805433"}, "pid": "951", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:09.228116 2023-07-08 08:15:09.228121 02508f9f-86f7-4098-81ea-a9d373aac5c5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1085808254"}, "pid": "952", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:09.327146 2023-07-08 08:15:09.327151 0fdebca7-3a6f-4efd-88cd-ba7ee35c2bf7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1085822613"}, "pid": "953", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:09.425662 2023-07-08 08:15:09.425671 e4def727-68c2-4bef-9384-eafbc1ba6094 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1085825302"}, "pid": "954", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:09.620094 2023-07-08 08:15:09.620098 4472f062-1099-4e47-bbfc-02844cf40230 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/108585440X"}, "pid": "956", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:09.709986 2023-07-08 08:15:09.709988 462bb20d-ecf1-48ff-b81e-0e5185b38afd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1085905519"}, "pid": "957", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:09.786559 2023-07-08 08:15:09.786562 f44c4875-c3da-4f9e-9f46-184f1ada0fc9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1085909603"}, "pid": "958", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:09.879668 2023-07-08 08:15:09.879678 7be3a12e-d281-4e58-8b33-641e542f7e15 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1085909808"}, "pid": "959", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:09.963023 2023-07-08 08:15:09.963026 7fac505f-d476-4145-8109-b23005d08f46 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1085934519"}, "pid": "960", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:10.054951 2023-07-08 08:15:10.054959 4b152b9f-59a7-4bcf-b0e3-c2a5477b7940 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1085989879"}, "pid": "961", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:10.159039 2023-07-08 08:15:10.159051 9b0b2f02-8dae-4d54-84e5-d4b03696af01 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086006615"}, "pid": "962", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:10.236903 2023-07-08 08:15:10.236905 9947f8ea-35a5-44cb-a229-204bd2e42d08 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086024044"}, "pid": "963", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:10.322053 2023-07-08 08:15:10.322064 6fba0b6d-f174-43d7-bab8-6f713bf6aad7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086025474"}, "pid": "964", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:10.443049 2023-07-08 08:15:10.443053 f8022fe1-4cce-4933-9516-10092b24203d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086047532"}, "pid": "965", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:10.531109 2023-07-08 08:15:10.53112 f08fc679-cc49-4ad0-88a5-e7bc3ed81ac4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086062159"}, "pid": "966", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:10.626846 2023-07-08 08:15:10.626854 674de731-73ac-49e0-be00-def26b68f4b1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086067371"}, "pid": "967", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:10.709332 2023-07-08 08:15:10.709335 3e1095af-7a36-4a32-974d-e0890e593a7a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086070178"}, "pid": "968", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:10.794337 2023-07-08 08:15:10.794346 b2481509-f5be-43fe-bd8d-c78f00718662 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086074602"}, "pid": "969", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:10.885558 2023-07-08 08:15:10.885567 e3bf40b4-c78f-4159-ab77-c3720433e15b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086075218"}, "pid": "970", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:10.973322 2023-07-08 08:15:10.973333 eee3e746-edad-4404-b705-17f8c877d300 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086080513"}, "pid": "971", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:11.069597 2023-07-08 08:15:11.069605 0d2164b3-6e9f-4665-962f-1e44226fc045 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086080750"}, "pid": "972", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:11.158397 2023-07-08 08:15:11.158413 56595ec3-08ee-4688-909b-c31f3a8498c4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086082427"}, "pid": "973", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:11.247394 2023-07-08 08:15:11.247397 96b57804-c365-433e-81fc-ce2ba27f2d65 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086092775"}, "pid": "974", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:11.322932 2023-07-08 08:15:11.322936 477fb574-6332-42a3-8a70-e3106e60792e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086143264"}, "pid": "975", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:11.513325 2023-07-08 08:15:11.513335 e4d65a62-5d6d-449a-97c8-1045daafaeb4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086144902"}, "pid": "977", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:11.609968 2023-07-08 08:15:11.609976 511c1fcb-c5f5-4202-ba76-76125e1be753 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086182871"}, "pid": "978", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:11.703949 2023-07-08 08:15:11.703957 b1237f99-c45e-47e4-a45f-df471e853dea {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086186427"}, "pid": "979", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:11.794862 2023-07-08 08:15:11.794871 9d554d50-cdb3-454f-ba68-5635a135f5e9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086202244"}, "pid": "980", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:11.880173 2023-07-08 08:15:11.880177 72dcb7d7-26fc-4e23-bd4a-1e3731c7db1d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086206991"}, "pid": "981", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:11.961601 2023-07-08 08:15:11.961604 a9d58032-efef-4e0b-b6d4-25d445696fc0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086215982"}, "pid": "982", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:12.032321 2023-07-08 08:15:12.032324 4a64b7de-a369-4b1b-b904-6b0233cef992 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086230493"}, "pid": "983", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:12.129569 2023-07-08 08:15:12.129574 d9d4bc7d-97df-4313-b2f4-a23984e54efc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086235894"}, "pid": "984", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:12.242045 2023-07-08 08:15:12.24205 c734745a-6147-4fd3-b6cf-37c0201bde73 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086271440"}, "pid": "985", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:12.352061 2023-07-08 08:15:12.352065 43ea85e3-2073-4e46-92df-0b77a76ffcbe {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086272587"}, "pid": "986", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:12.497276 2023-07-08 08:15:12.49728 e08f8de7-c452-4abc-aae5-83da98f8d9d4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086274636"}, "pid": "987", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:12.595421 2023-07-08 08:15:12.59543 4d851993-3343-4e69-9ed2-aab658a2bb3c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086292391"}, "pid": "988", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:12.692189 2023-07-08 08:15:12.692199 fa13d479-9b8a-4d16-ba4a-5a3760645831 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086300475"}, "pid": "989", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:12.767837 2023-07-08 08:15:12.76784 52cc9c5f-76e2-4742-a45c-fc983d9d5317 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086314646"}, "pid": "990", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:12.853321 2023-07-08 08:15:12.853328 137e4580-2338-4397-b0bb-c4528ed861f5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086340043"}, "pid": "991", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:12.938619 2023-07-08 08:15:12.938625 bf48089d-4f44-40c7-b50c-ce78bbbd61dc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086373170"}, "pid": "992", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:13.016623 2023-07-08 08:15:13.016631 0338ad25-65ce-4c55-a7b9-9e57a01c0bf2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086413520"}, "pid": "993", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:13.100757 2023-07-08 08:15:13.10076 4fcf543a-c0a4-4da5-8417-3940388ad41c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086431685"}, "pid": "994", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:13.186367 2023-07-08 08:15:13.186375 6f61106b-a7c9-4c27-9ea9-167feacb40e2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086431855"}, "pid": "995", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:13.270633 2023-07-08 08:15:13.270641 39e13320-7f72-4029-aac9-0f8a3ec2d071 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086433114"}, "pid": "996", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:13.366302 2023-07-08 08:15:13.36631 781e1afc-5198-4f8c-8279-d9abcf009287 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086434900"}, "pid": "997", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:13.447985 2023-07-08 08:15:13.447988 faa23a20-3e7f-4b2f-9848-652bfcd937c1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086437500"}, "pid": "998", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:13.553535 2023-07-08 08:15:13.553543 7a35ee0a-9bd4-424b-a083-95f80a2001d2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086443640"}, "pid": "999", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:13.630167 2023-07-08 08:15:13.63017 c66caa41-f59b-4252-88c9-9a6c148e85b6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086444361"}, "pid": "1000", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:13.721364 2023-07-08 08:15:13.721373 bb6cc653-7f77-4ebf-82a9-620e6ff3fb1f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086469747"}, "pid": "1001", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:13.807643 2023-07-08 08:15:13.807646 96a33f34-1747-493e-baf9-6efa989bd703 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086480686"}, "pid": "1002", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:13.89422 2023-07-08 08:15:13.894224 34a6c40d-bfcd-40b9-9140-1b0d06086d51 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/108649282X"}, "pid": "1003", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:13.985552 2023-07-08 08:15:13.98556 70a2090b-1de0-491c-b3e3-8b2039db1862 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086503910"}, "pid": "1004", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:14.098057 2023-07-08 08:15:14.098061 db5990a8-a33d-4939-8033-507daf18f66b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086511239"}, "pid": "1005", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:14.182514 2023-07-08 08:15:14.182522 25b2c133-693d-4c2b-9555-a51681d6b408 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086545605"}, "pid": "1006", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:14.26974 2023-07-08 08:15:14.269748 334b3c0e-2ed0-4134-bb2a-31555ef54251 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086572882"}, "pid": "1007", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:14.352483 2023-07-08 08:15:14.352495 df572c1f-dbce-4a65-8b13-dc594de5fe82 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086591453"}, "pid": "1008", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:14.432209 2023-07-08 08:15:14.432218 ad99c9e3-f491-4778-bb21-0c1d4190f7ea {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086599594"}, "pid": "1009", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:14.522278 2023-07-08 08:15:14.522287 cf8e5e59-3b95-4a4e-96e1-8f2813575744 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086646843"}, "pid": "1010", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:14.626285 2023-07-08 08:15:14.626289 9bac40b6-dac6-4d4d-86bf-a66d18177d5e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086671775"}, "pid": "1011", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:14.727539 2023-07-08 08:15:14.727549 52f36043-71c9-4ddb-8ea3-1b285660a78e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086700902"}, "pid": "1012", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:14.811756 2023-07-08 08:15:14.811765 178bccae-4bba-41ef-a696-27c35c19c61e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086728939"}, "pid": "1013", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:14.897475 2023-07-08 08:15:14.897477 6800329b-10eb-4093-a263-b1599bee7564 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086730003"}, "pid": "1014", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:14.974191 2023-07-08 08:15:14.974193 24c8be4b-1aa7-4d81-8419-d0011dc20de7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086746554"}, "pid": "1015", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:15.052189 2023-07-08 08:15:15.052203 859b0a87-755f-44aa-ba8a-7aee2e747281 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086766326"}, "pid": "1016", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:15.137495 2023-07-08 08:15:15.137504 13620d9a-d93a-4e97-9e1b-307caa7f90a2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086780884"}, "pid": "1017", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:15.223144 2023-07-08 08:15:15.223148 7ba1f447-59f4-4ba0-82f3-6abec48871ac {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086783476"}, "pid": "1018", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:15.436343 2023-07-08 08:15:15.436354 798dca0a-defd-415d-9b16-0c787cf9bb77 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086814347"}, "pid": "1020", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:15.51904 2023-07-08 08:15:15.519048 2f99910e-44ac-467c-8190-7b67955837e3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086828542"}, "pid": "1021", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:15.6129 2023-07-08 08:15:15.612907 3755fdc3-c74f-494f-8a84-9c80032b5efc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086839668"}, "pid": "1022", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:15.713319 2023-07-08 08:15:15.713329 3d1774d7-434e-4e1d-8603-69dec06c6cdb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086844092"}, "pid": "1023", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:15.809481 2023-07-08 08:15:15.809491 56530fec-c0ae-4ec7-a93d-f426f94cfcf1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/108685604X"}, "pid": "1024", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:15.896672 2023-07-08 08:15:15.89668 7815ccc9-1301-477e-9930-7168f1b1c12d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086971531"}, "pid": "1025", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:16.075474 2023-07-08 08:15:16.075478 26541ca1-74cc-4447-8f02-67fb7820c4e8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087202949"}, "pid": "1027", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:16.174477 2023-07-08 08:15:16.174486 ff3cc7f9-d355-4909-923e-5137258f6ea9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087258685"}, "pid": "1028", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:16.286979 2023-07-08 08:15:16.286987 b2b0a4d7-021f-498a-85ae-c0ff4721a025 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087265827"}, "pid": "1029", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:15.327614 2023-07-08 10:26:50.731909 dab0fe10-fc7b-4389-b8d3-f7c01d69625a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086783492"}, "pid": "1019", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1060145857100122922210"} 2 -2023-07-08 08:15:16.372781 2023-07-08 08:15:16.37279 9306cb65-ec4b-4226-85d3-d63aaf0941f5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087266157"}, "pid": "1030", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:16.462753 2023-07-08 08:15:16.462756 b2a2597b-c785-40bd-8254-2bfef18a5767 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087273897"}, "pid": "1031", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:16.569737 2023-07-08 08:15:16.569746 32449c70-d4db-4efa-b65b-74311ddf52db {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087296900"}, "pid": "1032", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:16.682876 2023-07-08 08:15:16.682884 e9e562ba-2602-4b9d-b91d-af79d9467dee {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087307619"}, "pid": "1033", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:16.786534 2023-07-08 08:15:16.786546 e20c1363-c464-4cc0-a132-b31d6078bb7a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087324378"}, "pid": "1034", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:16.876598 2023-07-08 08:15:16.876602 ba609bfd-ced8-461c-9b11-d70077314042 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087335108"}, "pid": "1035", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:16.957722 2023-07-08 08:15:16.957725 18fef640-3fba-4752-a229-9cd11ebf6c4f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087354226"}, "pid": "1036", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:17.037889 2023-07-08 08:15:17.037892 8b0806ac-59f9-4c2e-b186-53e209a59514 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087364086"}, "pid": "1037", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:17.119628 2023-07-08 08:15:17.119632 d9251911-7414-454f-845a-f448190e41ac {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087368367"}, "pid": "1038", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:17.285925 2023-07-08 08:15:17.28593 dbdd1b99-885c-458c-a5a3-4d9aa1291fbd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087450594"}, "pid": "1040", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:17.377128 2023-07-08 08:15:17.377137 01f42a0f-7833-43cb-ac79-3b90bc2bd6b5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087461731"}, "pid": "1041", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:17.474006 2023-07-08 08:15:17.474009 ace3540d-c1f4-404e-9d3e-b36fb2c1c0d3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087515092"}, "pid": "1042", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:17.568833 2023-07-08 08:15:17.568841 4e6cc4e7-7a6c-4343-b766-ac43a66369e7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087538092"}, "pid": "1043", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:17.652276 2023-07-08 08:15:17.652283 ab28cd80-8ca9-48c5-936a-886c2a13b170 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087545471"}, "pid": "1044", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:17.768361 2023-07-08 08:15:17.768369 e09f9a96-9baa-4aa2-af04-f7a415f207d2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/108756171X"}, "pid": "1045", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:17.862954 2023-07-08 08:15:17.862965 b239d959-6eae-429e-a669-7dd6781a5803 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087563429"}, "pid": "1046", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:17.948313 2023-07-08 08:15:17.948319 660b1fef-dd35-4157-b4d8-1c5edd0e949b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087600936"}, "pid": "1047", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:18.042033 2023-07-08 08:15:18.042036 cbc9d663-f852-49f3-9456-f0105f03c44f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087603781"}, "pid": "1048", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:18.118662 2023-07-08 08:15:18.118666 1196f774-4efb-4c64-84b0-ec89f6048900 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1088444008"}, "pid": "1049", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:18.195058 2023-07-08 08:15:18.195068 3a6c75a5-1158-4e5b-9150-0904732d7abe {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1088579485"}, "pid": "1050", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:18.500424 2023-07-08 08:15:18.500432 b09a39ce-9094-4f3a-94d5-74db4945ab43 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089282826"}, "pid": "1053", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:18.588699 2023-07-08 08:15:18.588703 f5003865-c5fd-4433-8148-574e9ccf8017 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089334826"}, "pid": "1054", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:18.777107 2023-07-08 08:15:18.777116 4dfd30a5-ec4f-4f42-8592-9a2ac36b2772 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089387830"}, "pid": "1056", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:18.865218 2023-07-08 08:15:18.865226 68389f8b-eaf2-42ba-af85-c0ce38e80773 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089390971"}, "pid": "1057", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:19.076499 2023-07-08 08:15:19.076509 ce5c2b48-2029-46f4-9ee3-5d4a54d21f34 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089443617"}, "pid": "1059", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:19.167882 2023-07-08 08:15:19.167894 953ce727-47e4-41c9-9aa6-caaeec4a7990 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089455437"}, "pid": "1060", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:18.413414 2023-07-08 10:25:19.563153 0d92f7a8-9ec9-48b7-8c28-abc1bfa63509 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089267177"}, "pid": "1052", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1025145857140122922950"} 2 -2023-07-08 08:15:18.304027 2023-07-08 10:26:04.198581 aa8a2eee-1b27-4b9d-bf8b-479d38e646e5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089227736"}, "pid": "1051", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1038145856947622920528"} 2 -2023-07-08 08:15:17.201819 2023-07-08 10:31:09.627874 ff52469d-9f73-4125-8987-e46f044fae99 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087381363"}, "pid": "1039", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1119145857028722921154"} 2 -2023-07-08 08:15:18.974019 2023-07-08 10:31:26.910169 3af35ad7-d1ff-42b4-b460-bbc074df93b8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089392907"}, "pid": "1058", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1124145856882922920253"} 2 -2023-07-08 08:22:39.28892 2023-07-08 08:22:39.288933 94ffd849-3278-455f-8162-e39889477deb {"pid": "5359", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/242756220"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:19.390736 2023-07-08 08:15:19.390747 06f2c1e9-119e-4265-9f83-14f5abb4af87 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/108951431X"}, "pid": "1062", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:19.482399 2023-07-08 08:15:19.482402 8a06a905-bcda-4de5-9e52-df336f45f86a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089572670"}, "pid": "1063", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:19.575213 2023-07-08 08:15:19.575222 8c7b2e90-7dc5-4ad3-8375-6c4cf8bc4bdf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089574282"}, "pid": "1064", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:19.654381 2023-07-08 08:15:19.654383 3d2b5c16-523a-49b2-9887-d840efd1e8f9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089580274"}, "pid": "1065", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:19.731375 2023-07-08 08:15:19.731383 dd83de14-46c2-43e0-9cac-030627a7a219 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089589018"}, "pid": "1066", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:19.820278 2023-07-08 08:15:19.820286 068af5cb-4e9c-4405-9688-dd875a27ff13 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089604890"}, "pid": "1067", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:19.906723 2023-07-08 08:15:19.906731 ac1376c8-a4bc-4579-8d4c-a515de815e3c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089638353"}, "pid": "1068", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:19.98633 2023-07-08 08:15:19.986333 33171471-49f2-40f5-8e0f-0bf2bb5f0934 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089642393"}, "pid": "1069", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:20.160213 2023-07-08 08:15:20.160216 698697ef-a27b-4c49-bc98-6aeef512301c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089664389"}, "pid": "1071", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:20.234306 2023-07-08 08:15:20.234309 48bc9971-9d17-4088-8cd7-661917578436 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089666802"}, "pid": "1072", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:20.320335 2023-07-08 08:15:20.320345 d4159797-19bf-4471-988d-26ae83513fc6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089669003"}, "pid": "1073", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:20.419251 2023-07-08 08:15:20.419261 cac74e24-a6e5-4d8b-a52b-1622bb4dc20e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089693907"}, "pid": "1074", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:20.494191 2023-07-08 08:15:20.494194 fa3568f0-3e38-48aa-bf51-147e377a1d08 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089702655"}, "pid": "1075", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:20.578665 2023-07-08 08:15:20.578672 14db02de-c374-4ba0-b06f-6fbbff758ac0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089766106"}, "pid": "1076", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:20.661774 2023-07-08 08:15:20.661782 63821ca2-c164-4868-80e7-8acbd0097dae {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089790732"}, "pid": "1077", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:20.856217 2023-07-08 08:15:20.856221 1d2cd064-4397-4815-8668-8da7d7dd70ea {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089904703"}, "pid": "1079", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:20.942497 2023-07-08 08:15:20.942509 647dc538-3431-42ea-be6d-dd3fbd346cab {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1090478615"}, "pid": "1080", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:21.026359 2023-07-08 08:15:21.026362 ca527497-525d-47b7-b775-e913c7e7c783 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1090479816"}, "pid": "1081", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:21.118698 2023-07-08 08:15:21.118706 f50f524c-3e30-4b20-b79f-01b637f94105 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1090697538"}, "pid": "1082", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:21.204338 2023-07-08 08:15:21.204347 d8d7d97c-a27b-4f92-8112-59b6eb0f8faf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1090699522"}, "pid": "1083", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:21.294177 2023-07-08 08:15:21.294189 02a06471-a31e-42c1-b74a-b6c3c4df971e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1090752598"}, "pid": "1084", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:21.382227 2023-07-08 08:15:21.382236 e199d7ff-c757-48df-82cb-fd8580dcc3ad {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1090809786"}, "pid": "1085", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:21.554156 2023-07-08 08:15:21.554164 00dce61f-c738-4f5d-9f67-b38ef89e0b93 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1091235007"}, "pid": "1087", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:21.643162 2023-07-08 08:15:21.643166 c84d3922-6d44-4547-aaaf-88eff3cef88f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1091451982"}, "pid": "1088", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:21.740977 2023-07-08 08:15:21.740986 613175b2-4dc6-4a42-b587-f3ba209f2021 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1091613443"}, "pid": "1089", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:21.840976 2023-07-08 08:15:21.840987 8caf4d8a-09bf-40a6-9c0a-b5dcc270ad05 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1091651787"}, "pid": "1090", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:21.920799 2023-07-08 08:15:21.920803 f7207964-d4b4-4a3e-801f-df879f8f6fd5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1091678340"}, "pid": "1091", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:39.405231 2023-07-08 08:22:39.405243 d84529e9-a64e-43c8-b278-8b96843d52ff {"pid": "5360", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/242866441"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:20.761791 2023-07-08 10:30:54.471495 b4309574-8b6e-455e-a6ea-d97ebe3811e9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089841035"}, "pid": "1078", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1116145857103822922265"} 2 -2023-07-08 08:15:20.082146 2023-07-08 10:31:11.078194 9cccbe58-5cc1-41d1-add5-66deda0870dd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089664281"}, "pid": "1070", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11192223"} 2 -2023-07-08 08:15:21.99753 2023-07-08 08:15:21.997532 1fa63451-eec4-4c7e-8c08-ee613f92f59a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1091697396"}, "pid": "1092", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:22.157759 2023-07-08 08:15:22.157762 5e5fb655-fe28-4ead-b1f0-ab6781c94e87 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1091698856"}, "pid": "1094", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:22.246578 2023-07-08 08:15:22.246583 b6009bcd-b5bf-4e44-afc9-405b804f12d8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1091702292"}, "pid": "1095", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:22.338477 2023-07-08 08:15:22.338482 ef1351eb-851c-4502-87cc-d96a541d12b0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/109172251X"}, "pid": "1096", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:22.434943 2023-07-08 08:15:22.434951 1c55430a-cd3f-42b0-aec3-5838de15644c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/109177918X"}, "pid": "1097", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:22.508418 2023-07-08 08:15:22.508421 f58c00c6-004b-459d-a5c8-c8f8516e151e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1091785813"}, "pid": "1098", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:22.604222 2023-07-08 08:15:22.604231 f91ac986-ea1b-404c-abfe-c68c08c76789 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1091792305"}, "pid": "1099", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:22.692654 2023-07-08 08:15:22.692663 acfa409a-62dc-4691-a2e0-8fcd3ad563e7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/109179331X"}, "pid": "1100", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:22.787271 2023-07-08 08:15:22.787278 cd857729-3310-47fe-b3e1-9648b94fff3e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1091822417"}, "pid": "1101", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:22.875697 2023-07-08 08:15:22.875705 b68fd4f2-ee98-45b5-b2fd-0c9fb0a7eba3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1091849781"}, "pid": "1102", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:22.961144 2023-07-08 08:15:22.961147 e7cb0836-94a9-4218-bf0d-4c66567a0458 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1091883599"}, "pid": "1103", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:23.061115 2023-07-08 08:15:23.061124 a78086b2-d709-4258-bdda-a04ccfc3767a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1091897085"}, "pid": "1104", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:23.16423 2023-07-08 08:15:23.164241 3e200b24-9f49-49dc-8117-d74dcf8314bd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1091907730"}, "pid": "1105", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:23.258966 2023-07-08 08:15:23.258978 2579ca0a-7c5f-4a60-9baa-8dc92db131bf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1091936803"}, "pid": "1106", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:23.351073 2023-07-08 08:15:23.351081 9c92211d-ac7e-4585-9841-6dc16431e745 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1091959382"}, "pid": "1107", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:23.44618 2023-07-08 08:15:23.446189 f2368deb-a01d-4fa8-a15d-69a5b0b97fbb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1092040889"}, "pid": "1108", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:23.515722 2023-07-08 08:15:23.515725 ad92aa3e-4dac-442b-bbd4-b1c2c05aadf8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/109206639X"}, "pid": "1109", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:23.613522 2023-07-08 08:15:23.613534 fb6e8c37-d9e2-4524-8ee3-70b25b828f71 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1092274499"}, "pid": "1110", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:23.725953 2023-07-08 08:15:23.725966 a28f5c42-de89-4351-8acc-b63fefe0e5b6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/109229578X"}, "pid": "1111", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:23.823882 2023-07-08 08:15:23.82389 53838eb9-b1db-49cd-9bfb-0e369f4ceaa7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1092297278"}, "pid": "1112", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:23.930884 2023-07-08 08:15:23.930893 d2dd5866-7da5-4ffc-976f-9e8c610321f6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1092349839"}, "pid": "1113", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:24.005965 2023-07-08 08:15:24.005968 b06dcc3f-6eb1-462e-82ef-c84d5b7a41d8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1092417966"}, "pid": "1114", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:24.100532 2023-07-08 08:15:24.10054 d0b845be-dcd3-41bd-bc49-d184bfb82c7b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1092493239"}, "pid": "1115", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:24.207626 2023-07-08 08:15:24.207633 1338f5a5-b015-44d5-8394-3327f9d18426 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1092495266"}, "pid": "1116", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:24.297133 2023-07-08 08:15:24.29714 1381fa92-b174-49dd-aef4-73371b798564 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1092508333"}, "pid": "1117", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:24.395459 2023-07-08 08:15:24.395466 a1f217a0-f9e0-4f31-90ca-eb501e78b526 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1092524398"}, "pid": "1118", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:24.475672 2023-07-08 08:15:24.475676 331ca51e-6f33-42c4-a8cb-ecd4e3f6e87f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1092551271"}, "pid": "1119", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:24.552196 2023-07-08 08:15:24.552205 83059b73-4d1b-47da-9692-90880445ee56 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1093232943"}, "pid": "1120", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:24.724927 2023-07-08 08:15:24.724931 6499bed3-ff61-4ab3-a216-19ecbbaa1b37 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1095673300"}, "pid": "1122", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:24.819613 2023-07-08 08:15:24.819616 5cedf20d-cf63-43d0-8dbc-c758cffceb7a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1095685007"}, "pid": "1123", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:24.649465 2023-07-08 10:31:42.787312 05845ed5-ef5f-4bbc-95c5-5a60ba513430 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1095512498"}, "pid": "1121", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "113146029614235822937"} 2 -2023-07-08 08:15:24.907588 2023-07-08 08:15:24.907596 2ae6921c-936b-47d4-99aa-dfc27bc9bf31 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1095792091"}, "pid": "1124", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:25.00247 2023-07-08 08:15:25.002473 a508b48c-c60c-4581-923d-355452ec45f8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/109579762X"}, "pid": "1125", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:25.093742 2023-07-08 08:15:25.093754 a1937689-f155-4353-9a38-9662b7c4550d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1096247151"}, "pid": "1126", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:25.191393 2023-07-08 08:15:25.191407 cae786cf-a966-46a8-9723-29367a963fb2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1096338572"}, "pid": "1127", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:25.276502 2023-07-08 08:15:25.276518 5670c938-a2e1-4d5a-b533-30ee71f20748 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1096509253"}, "pid": "1128", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:25.364923 2023-07-08 08:15:25.364931 8537e132-39db-4d6b-8789-ae90f95a148e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1097290735"}, "pid": "1129", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:25.456427 2023-07-08 08:15:25.456436 a7fafae5-cc67-485c-87f3-5ac17cc663fc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1097642550"}, "pid": "1130", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:25.537962 2023-07-08 08:15:25.537966 ecd6192a-6532-46a2-881c-0b9698bbbd1d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1097758591"}, "pid": "1131", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:25.728312 2023-07-08 08:15:25.72832 ce6c824d-bec7-49fb-9faa-9063e86b98a3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1098212460"}, "pid": "1133", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:25.831854 2023-07-08 08:15:25.831864 1a75709f-133c-45d1-b9bb-fa9063d4e4e2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/109946577X"}, "pid": "1134", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:25.940752 2023-07-08 08:15:25.940764 09ec839c-3ab9-4d05-8bc1-f43175b7dbbe {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1099467756"}, "pid": "1135", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:26.013312 2023-07-08 08:15:26.013315 e98f2411-2cb3-4616-b2b4-d91dd0bf8271 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1099730872"}, "pid": "1136", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:26.110329 2023-07-08 08:15:26.110334 54d09b30-4fff-41ff-933c-fe5799f263fa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1099924197"}, "pid": "1137", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:26.188907 2023-07-08 08:15:26.188916 278cf21a-ddc0-404b-9d6c-8c804b20540d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1100173900"}, "pid": "1138", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:26.273427 2023-07-08 08:15:26.273437 bf5af02d-d87e-4809-85ea-d811aacaab1e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1100326294"}, "pid": "1139", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:26.367127 2023-07-08 08:15:26.367137 3335408b-fde1-4105-9d94-8ced1b1733aa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1100545808"}, "pid": "1140", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:26.476061 2023-07-08 08:15:26.476065 b03f7929-12d3-4887-9319-67f0d911b621 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1100546359"}, "pid": "1141", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:26.554176 2023-07-08 08:15:26.55418 bcfff467-3142-4971-8944-8785a6fb14c3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1100694404"}, "pid": "1142", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:26.622024 2023-07-08 08:15:26.622027 20171cd7-067c-4f1a-adbf-02ab014cce8b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1101362081"}, "pid": "1143", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:26.771066 2023-07-08 08:15:26.77107 22d83500-cf22-4d02-ae38-bc5b5c7fa870 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1101375183"}, "pid": "1145", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:26.841851 2023-07-08 08:15:26.841856 8a2dcedc-1745-4f74-869b-92d776bade8a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1101470003"}, "pid": "1146", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:26.922881 2023-07-08 08:15:26.922885 1ecb67af-808e-4d5e-aef5-1f884d5a013f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1102164240"}, "pid": "1147", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:27.007429 2023-07-08 08:15:27.007437 22700463-6caf-4440-b4fe-8071f0b984dc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1102224820"}, "pid": "1148", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:27.091629 2023-07-08 08:15:27.091633 be7e5917-e506-475c-b3ab-66ce1ddc2a2f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/110234979"}, "pid": "1149", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:27.192201 2023-07-08 08:15:27.192206 20ab02be-2d30-40a9-9d25-b8690d9043fb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1102950661"}, "pid": "1150", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:27.269965 2023-07-08 08:15:27.269968 00b2c6e2-4b26-42b3-af97-6f84e632cbc0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1103145347"}, "pid": "1151", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:27.462837 2023-07-08 08:15:27.462843 750468c1-db59-41bb-9a70-6eefc6297e1d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1103491768"}, "pid": "1153", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:27.565437 2023-07-08 08:15:27.565442 3ef8b0de-606e-44c7-954f-5a543005fc90 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1103855794"}, "pid": "1154", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:27.656317 2023-07-08 08:15:27.65632 279f98ab-629b-4a94-b440-6961d88b1200 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1104130424"}, "pid": "1155", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:27.371026 2023-07-08 10:25:06.125345 49408674-8f4a-4449-94d9-91bbe5a9c7a1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1103471996"}, "pid": "1152", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102146634401541931725"} 2 -2023-07-08 08:15:27.743834 2023-07-08 08:15:27.743839 5a75495a-4960-46d2-a4c8-bd082513af7d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1104394499"}, "pid": "1156", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:27.853449 2023-07-08 08:15:27.853459 03b19e39-0ba4-4570-ab4a-9541f5286b18 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1104971259"}, "pid": "1157", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:27.961686 2023-07-08 08:15:27.961697 0e1c11d6-d830-4a70-9f8c-fe4749583615 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1105435075"}, "pid": "1158", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:28.063473 2023-07-08 08:15:28.063481 517a0072-3034-4b6f-98ed-eac578593cd9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1106144244"}, "pid": "1159", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:28.17577 2023-07-08 08:15:28.175778 0033a74e-5752-404b-8e5a-dbe571728804 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1106568257"}, "pid": "1160", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:28.299516 2023-07-08 08:15:28.299524 af74d229-4541-49ca-8f7e-213ae55cecb6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/110674057"}, "pid": "1161", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:28.534036 2023-07-08 08:15:28.534045 d417217c-7aa2-418e-9963-164acdb7129b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1108588271"}, "pid": "1163", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:28.643747 2023-07-08 08:15:28.643762 ffd4ec7d-f012-478e-8d5f-894bc4508fee {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1109102283"}, "pid": "1164", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:28.76377 2023-07-08 08:15:28.763785 572a62e3-0003-4325-9b37-1a2697aaef0c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1109796900"}, "pid": "1165", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:29.127647 2023-07-08 08:15:29.127658 3cc1c255-43f5-4e68-9b82-4b814748a92f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1111133735"}, "pid": "1168", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:29.227969 2023-07-08 08:15:29.227979 8403d435-32f4-451d-a5c3-0b046e787e42 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1111902321"}, "pid": "1169", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:29.34016 2023-07-08 08:15:29.340171 d5255340-10de-4b49-9818-82629699c681 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1112571647"}, "pid": "1170", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:29.559814 2023-07-08 08:15:29.559823 c8483b6a-92e8-42a4-a57a-ce83d08268b2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1112747885"}, "pid": "1172", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:29.680114 2023-07-08 08:15:29.680123 96215491-0303-40b6-995a-4aa09010ee0c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/111303002X"}, "pid": "1173", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:29.796644 2023-07-08 08:15:29.796653 ac86a489-07fc-4356-931f-fa2af0cd3e6f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1113214309"}, "pid": "1174", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:29.904907 2023-07-08 08:15:29.904917 94fb65f2-7923-4e34-b0d0-43da6dbf256a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1114419125"}, "pid": "1175", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:30.024669 2023-07-08 08:15:30.024678 31e60890-b2c1-4ea2-bdae-25a464c19123 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1114601357"}, "pid": "1176", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:30.142871 2023-07-08 08:15:30.142881 b2e3ce4d-ad8c-4d0b-b750-edc06affb497 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1114680176"}, "pid": "1177", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:30.284983 2023-07-08 08:15:30.284993 3d219b14-f7d5-4866-ab77-e6f7b5b031cd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1114895288"}, "pid": "1178", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:30.505511 2023-07-08 08:15:30.505519 82f3a133-05c7-4624-8ab5-706380a1a129 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1115670395"}, "pid": "1180", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:30.614204 2023-07-08 08:15:30.614213 2af810e4-f061-4e3d-92ca-508046330e1f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1116350033"}, "pid": "1181", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:30.799288 2023-07-08 08:15:30.799299 6fa24992-56bf-4401-8836-d8a7e9765c52 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1116493586"}, "pid": "1182", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:30.935722 2023-07-08 08:15:30.93573 66373932-a70a-446d-aeac-fd7b475fe4af {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1116967383"}, "pid": "1183", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:31.067724 2023-07-08 08:15:31.067732 d08052c0-b603-4e97-ab57-ced59e5ed29f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1116977273"}, "pid": "1184", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:31.182682 2023-07-08 08:15:31.182692 19567280-c194-417c-a764-4b7069618810 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1116983575"}, "pid": "1185", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:31.297823 2023-07-08 08:15:31.297834 d5f27273-05ed-4b14-982e-5384e7211ede {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/111715677X"}, "pid": "1186", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:29.460143 2023-07-08 10:26:28.876309 7540fe87-ef62-46bb-8197-c3312b202e9d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/111263638"}, "pid": "1171", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10466509"} 2 -2023-07-08 08:15:30.404478 2023-07-08 10:26:51.136472 bab02192-4de2-42c4-91d7-30fae0b258a2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1114895318"}, "pid": "1179", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1060147553253253800009"} 2 -2023-07-08 08:15:29.024762 2023-07-08 10:29:40.751223 cce1180b-3450-4d10-b09c-84425cf37cb7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1110040970"}, "pid": "1167", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110147094994025081219"} 2 -2023-07-08 08:15:28.431131 2023-07-08 10:30:22.924406 e71ede7b-5b5b-49d4-8a95-a0480af534cf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1107220025"}, "pid": "1162", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111146937735413830378"} 2 -2023-07-08 08:15:31.429657 2023-07-08 08:15:31.429665 da40348a-4cf0-43a1-83d3-e0d996daef38 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/111716151X"}, "pid": "1187", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:31.547978 2023-07-08 08:15:31.547988 49411bb2-b8e7-4bbe-a0b9-1573fd8cfa64 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/111783946X"}, "pid": "1188", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:31.797249 2023-07-08 08:15:31.797418 b9d3b893-f682-4142-8c8a-e1d3956fd21e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1119264243"}, "pid": "1190", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:31.903127 2023-07-08 08:15:31.903137 352bb98b-7c32-4435-9715-30f25e9563a3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1120447089"}, "pid": "1191", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:32.145197 2023-07-08 08:15:32.145206 eb2bb7f5-bfb6-4c2c-aa29-b1eb3e00abd6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1120533929"}, "pid": "1193", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:32.529014 2023-07-08 08:15:32.529021 34e152db-fc97-4431-aaa8-acb8397122cf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1121320910"}, "pid": "1196", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:32.624037 2023-07-08 08:15:32.624047 cb71ebc8-79da-4d0a-84fe-e8fb610a60d9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1121540562"}, "pid": "1197", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:32.900767 2023-07-08 08:15:32.900778 50e98716-e26e-4201-b629-2a829b5b296e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1122056257"}, "pid": "1199", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:33.036882 2023-07-08 08:15:33.036891 e417088c-13d9-4b6b-9405-bb6119e32f67 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1122060041"}, "pid": "1200", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:33.152129 2023-07-08 08:15:33.152137 bc7a1c83-52e9-4308-8f78-899c096cd298 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1122486812"}, "pid": "1201", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:33.27667 2023-07-08 08:15:33.276681 eaa55506-ba59-4fd4-823f-00c6c3ee1c4e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1122489684"}, "pid": "1202", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:33.38986 2023-07-08 08:15:33.389869 cfb64691-66ac-4d49-a98c-0d731e5be02f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1122490267"}, "pid": "1203", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:33.52612 2023-07-08 08:15:33.52613 fdca7b9c-4766-4a40-82c4-a88403bd2279 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1123156344"}, "pid": "1204", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:33.659848 2023-07-08 08:15:33.65986 996f713d-af5f-416a-a131-bfe944295194 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1123162263"}, "pid": "1205", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:33.775145 2023-07-08 08:15:33.775155 8f2c59c5-c40c-4563-a92a-116334ca9934 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1123172706"}, "pid": "1206", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:33.903926 2023-07-08 08:15:33.903934 a38a027a-bcce-465f-8418-80a5ded182ae {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1123512752"}, "pid": "1207", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:34.026059 2023-07-08 08:15:34.026069 3bd73572-918c-4965-b844-bf3cea7053c6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1123752990"}, "pid": "1208", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:34.142743 2023-07-08 08:15:34.142752 2a91b12d-1e84-4d74-b8c9-f3ba1dae529b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/112427748X"}, "pid": "1209", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:34.257667 2023-07-08 08:15:34.257678 c458b020-5e2b-4987-b31c-7f2309a11784 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1125914920"}, "pid": "1210", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:34.363163 2023-07-08 08:15:34.36317 a759a7f7-47ff-42d1-b142-8dea3e7a1366 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1126056839"}, "pid": "1211", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:34.468356 2023-07-08 08:15:34.468366 a731cfb4-792a-46eb-a7d4-a6dc6b23b999 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1126065013"}, "pid": "1212", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:34.559208 2023-07-08 08:15:34.559213 ba36a1a6-fada-4a3f-8553-e2db16bc06be {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1127773151"}, "pid": "1213", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:34.628243 2023-07-08 08:15:34.628246 231e5e34-67cc-497c-b824-2d633bc15b11 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1130192466"}, "pid": "1214", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:34.703536 2023-07-08 08:15:34.703539 fe6626e8-8ee5-46c1-93a5-eccd3748b460 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1130814122"}, "pid": "1215", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:34.78539 2023-07-08 08:15:34.785393 22393d8d-2336-4b11-b1e0-d80b5a1a34b6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1130817318"}, "pid": "1216", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:34.853236 2023-07-08 08:15:34.853238 77c0c658-971f-4585-a703-ea760a11ad58 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1131199715"}, "pid": "1217", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:32.419806 2023-07-08 10:25:40.621796 b505ff64-dfcd-406c-b40d-ea9693e7f670 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1120815401"}, "pid": "1195", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103148120450694790522"} 2 -2023-07-08 08:22:39.51989 2023-07-08 10:24:54.811819 21dda769-ada0-479a-9d57-733d098176f5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/117948682X"}, "pid": "5361", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/242927351"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101668618"} 3 -2023-07-08 08:15:32.289434 2023-07-08 10:26:26.992258 52d01fa0-721d-4dfd-8dd3-39365929384f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1120736277"}, "pid": "1194", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1046148122888895200002"} 2 -2023-07-08 08:15:34.92111 2023-07-08 08:15:34.921113 85ccf831-9a12-46aa-8d0d-c85614386789 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/113126262X"}, "pid": "1218", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:34.994741 2023-07-08 08:15:34.994743 c0eabd6a-d0eb-4717-8715-690cdacd0f92 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1131276868"}, "pid": "1219", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:35.073026 2023-07-08 08:15:35.073029 08a5bf3d-1d38-49d9-bbb1-6f1390d52861 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1131574338"}, "pid": "1220", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:35.143194 2023-07-08 08:15:35.143197 ed02fabf-0c40-4f60-8ca9-66fa597200a2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1131715187"}, "pid": "1221", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:35.212035 2023-07-08 08:15:35.212037 f4c0e338-5619-49f7-9005-79f27eaa4128 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1132157781"}, "pid": "1222", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:35.282699 2023-07-08 08:15:35.282702 fef4ca2b-b5a2-4846-9009-a3d0e535e797 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1132540623"}, "pid": "1223", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:35.377008 2023-07-08 08:15:35.377017 9b166907-edaa-4820-9058-e8251083b8cb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/113454228"}, "pid": "1224", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:35.484295 2023-07-08 08:15:35.484303 5e717999-03c1-445c-a7fe-45176b8b900e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1135284865"}, "pid": "1225", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:35.598247 2023-07-08 08:15:35.598255 7fae470b-2e6b-40f8-a8db-6fc3c9a1a156 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1135632049"}, "pid": "1226", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:35.814856 2023-07-08 08:15:35.814864 44f92afc-9a90-46f1-812d-18be599157d0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1136441034"}, "pid": "1228", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:35.911137 2023-07-08 08:15:35.911146 5979ddc8-ca8e-4345-a901-ca2a28a86262 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/113660216X"}, "pid": "1229", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:36.001982 2023-07-08 08:15:36.001985 49e01477-21ad-4882-a113-497b56d20ef6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1137394390"}, "pid": "1230", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:36.076683 2023-07-08 08:15:36.076686 5c2d3b49-9b45-4879-9d84-a45969b803e3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1137496746"}, "pid": "1231", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:36.160026 2023-07-08 08:15:36.16003 10482a49-31fb-4abe-94d0-a965c423f0b6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1137635371"}, "pid": "1232", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:36.260421 2023-07-08 08:15:36.260757 b7690829-77a8-44b1-8bfa-ebec9bcffd05 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1137723467"}, "pid": "1233", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:36.3526 2023-07-08 08:15:36.352602 d005927c-b834-45ab-a585-cac82f03a0e0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1137735988"}, "pid": "1234", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:36.435272 2023-07-08 08:15:36.43528 a872deb4-25c0-460c-b11d-bd090f16cb05 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1137839392"}, "pid": "1235", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:36.517153 2023-07-08 08:15:36.517157 a4bf2ea0-8b77-4bc4-af84-499c00d403bc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1137872462"}, "pid": "1236", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:36.586118 2023-07-08 08:15:36.58612 886843d1-10e3-4d71-a064-5f4849373213 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1137888660"}, "pid": "1237", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:36.653648 2023-07-08 08:15:36.653652 c9d6f1f0-bcb8-4f9c-97a4-38abec3155e5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1138213659"}, "pid": "1238", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:36.72251 2023-07-08 08:15:36.722514 d482182e-f2f0-4eba-95c0-e988a0b680c6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/113918055X"}, "pid": "1239", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:36.793183 2023-07-08 08:15:36.793186 70c4168c-d95a-4476-8ea1-bb8ed972565b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1139311719"}, "pid": "1240", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:39.640746 2023-07-08 08:22:39.64075 a1ae7a5a-1040-46be-a133-5e3d5e724a89 {"pid": "5362", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243004028"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:36.972781 2023-07-08 08:15:36.972785 4d900433-ae01-49f0-b30a-fc69559b5953 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1139404660"}, "pid": "1242", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:37.040789 2023-07-08 08:15:37.040791 fcd392e3-3975-4de5-a985-df210a5376ce {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1139496387"}, "pid": "1243", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:37.134121 2023-07-08 08:15:37.13413 d00343b2-e34e-4ef2-a229-75a8bd71bd03 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1139509292"}, "pid": "1244", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:37.236205 2023-07-08 08:15:37.236209 dce29ace-90cc-4109-9cad-533770237b4f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1139789902"}, "pid": "1245", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:37.329736 2023-07-08 08:15:37.329741 3d57a1ee-6135-41ab-b989-abceac4abd99 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/113997981"}, "pid": "1246", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:37.415864 2023-07-08 08:15:37.415873 6fb1fd12-ca99-4b8d-a97e-87a1657b633f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1140050974"}, "pid": "1247", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:37.500449 2023-07-08 08:15:37.500452 c8f30871-9c5b-409d-af97-1e7422532fcf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1140159526"}, "pid": "1248", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:37.575904 2023-07-08 08:15:37.575907 1954922f-2416-4f54-b9c6-06772d7d045c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/114054635X"}, "pid": "1249", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:37.661939 2023-07-08 08:15:37.661947 004b5eed-d4fa-4386-8562-536756246ded {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1140620959"}, "pid": "1250", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:37.750991 2023-07-08 08:15:37.750999 cc01b5ac-274d-4ab6-b954-11e7befdf41f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1141185997"}, "pid": "1251", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:37.842864 2023-07-08 08:15:37.842871 429e7402-6782-4cf0-98f2-586eac55144c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1141203960"}, "pid": "1252", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:37.946452 2023-07-08 08:15:37.946461 60c479da-6cdf-46fc-b3ea-f3259d1b64f0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1141331683"}, "pid": "1253", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:38.032601 2023-07-08 08:15:38.032604 d52848dc-9352-414a-96b0-c750dc9d71fe {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1141410621"}, "pid": "1254", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:38.100853 2023-07-08 08:15:38.100856 1c95e9c4-dbe2-4a24-8af1-98705086c9a5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1141815214"}, "pid": "1255", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:38.188711 2023-07-08 08:15:38.18872 a1696990-7025-4bea-aa7f-3175b92c2426 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1142191087"}, "pid": "1256", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:38.391931 2023-07-08 08:15:38.391941 3423c6d2-9b32-4c77-b2b1-db41364b39ea {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1142566420"}, "pid": "1258", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:38.473144 2023-07-08 08:15:38.473146 4ed72b77-518a-4739-b3b5-86fb80ab66e8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1143061578"}, "pid": "1259", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:38.546169 2023-07-08 08:15:38.546171 2d7b57d0-11cb-4f8a-be46-bb6c47c632a8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1143241045"}, "pid": "1260", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:38.626301 2023-07-08 08:15:38.626307 105cc372-0b02-496e-8980-1eae17cb19a8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1143266722"}, "pid": "1261", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:38.708851 2023-07-08 08:15:38.70886 8e88a83b-4695-46c3-95e9-d9e60a50c8ef {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1143567234"}, "pid": "1262", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:38.798898 2023-07-08 08:15:38.798906 358a9043-8437-4c43-afba-d2add3db3dec {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1144273307"}, "pid": "1263", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:38.895457 2023-07-08 08:15:38.895466 bdb50386-4e19-4fe4-b627-18716bfd917d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1144301130"}, "pid": "1264", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:38.989549 2023-07-08 08:15:38.989557 4dbb5c55-073e-4aa4-a1d5-a9f5d3ee30ff {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1144669049"}, "pid": "1265", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:39.080223 2023-07-08 08:15:39.080232 682070c9-06aa-4438-af2b-fc14ebd8b034 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1145344372"}, "pid": "1266", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:39.187561 2023-07-08 08:15:39.187576 f6016c48-de4d-406d-914f-a0661edadcc7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1145352111"}, "pid": "1267", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:39.748777 2023-07-08 08:22:39.748786 8f4389db-1112-43ef-a776-45df158534bf {"pid": "5363", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243016271"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:39.507667 2023-07-08 08:15:39.507672 b9565c8b-b874-4342-acb1-cb91aefbc06c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1145390439"}, "pid": "1270", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:39.693896 2023-07-08 08:15:39.693907 88ffa51d-56aa-43db-9c02-e469b7d604dc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1145435904"}, "pid": "1272", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:39.777185 2023-07-08 08:15:39.777188 83ff45b2-8bcf-4284-bba9-88afd8357ed9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/114546193X"}, "pid": "1273", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:39.861518 2023-07-08 08:15:39.861527 47aa5a85-30ce-4a71-8c85-3f3f4914476f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1145486533"}, "pid": "1274", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:40.042891 2023-07-08 08:15:40.042894 0c63e622-f4ec-4d0f-b6fd-21fafec1218d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1145537650"}, "pid": "1276", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:40.123827 2023-07-08 08:15:40.123836 5d1980c6-9745-44db-adea-9aaf0596ae4a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1145563104"}, "pid": "1277", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:40.210581 2023-07-08 08:15:40.210589 8525aad7-a000-433a-a38d-3b2e67368fa3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1145741851"}, "pid": "1278", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:40.301087 2023-07-08 08:15:40.301094 b88b85c2-f636-4195-8d6f-86fda290f373 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1145791662"}, "pid": "1279", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:40.400912 2023-07-08 08:15:40.400919 df8eb013-c19e-4e9e-aca7-0e16f36d4f62 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1145807690"}, "pid": "1280", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:39.603691 2023-07-08 10:30:41.31025 e5ddd9ec-acfc-4a45-b578-f0e035aebf50 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1145399924"}, "pid": "1271", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003312980"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11151170896939091824"} 4 -2023-07-08 08:15:39.284465 2023-07-08 10:28:49.917618 deab9e33-8174-40a1-a7dc-59b46917f62d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/114535601X"}, "pid": "1268", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011983307"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/204167000"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108896036"} 6 -2023-07-08 08:15:40.490394 2023-07-08 08:15:40.490402 0c878e2c-9d7c-4dd5-8e65-69f52ae280ac {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1145825796"}, "pid": "1281", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:40.685564 2023-07-08 08:15:40.685571 fbf09b44-8142-4088-8d39-dfe6bd46bfe9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1145891209"}, "pid": "1283", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:40.889014 2023-07-08 08:15:40.889023 be4f303b-b37c-4854-be23-58b541f64d0d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1145959857"}, "pid": "1285", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:39.847396 2023-07-08 08:22:39.847404 80fbb4c2-22eb-4def-a423-a33ca07e7592 {"pid": "5364", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243031599"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:41.098474 2023-07-08 08:15:41.098483 00b72124-91dc-4cd8-8eb0-c66027b2d07c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/114606151X"}, "pid": "1287", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:41.18556 2023-07-08 08:15:41.185569 0672a042-25d7-47de-abb5-ee63e819334c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146063067"}, "pid": "1288", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:41.276186 2023-07-08 08:15:41.276195 6e875b17-64bb-49b1-b276-d5733fc6e4ff {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146079567"}, "pid": "1289", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:41.365009 2023-07-08 08:15:41.365019 a4a201da-f84f-4d29-9d44-9d20fb3f3a97 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146080271"}, "pid": "1290", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:41.456606 2023-07-08 08:15:41.456615 b2c9e59d-178e-4490-a8fd-aebbdd9fa4b3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146220359"}, "pid": "1291", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:41.733221 2023-07-08 08:15:41.733224 6475b3ef-0c24-4f51-95db-87b6285f0a80 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146397208"}, "pid": "1294", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:41.833694 2023-07-08 08:15:41.833702 bfaf4026-3e69-4160-a974-81b6738ad4a2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146403054"}, "pid": "1295", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:41.91179 2023-07-08 08:15:41.911793 301adf2e-3a75-48b2-aabf-65f49f073612 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146418345"}, "pid": "1296", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:42.001079 2023-07-08 08:15:42.001087 4dda42d6-30bb-401e-ae8b-a04fdbe92b7c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146538235"}, "pid": "1297", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:42.111181 2023-07-08 08:15:42.111189 574c3d5f-548c-4f75-a873-aedec9589385 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146539045"}, "pid": "1298", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:42.294704 2023-07-08 08:15:42.294708 6af8a0fb-ea21-41d9-bb08-b14231e24562 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146540825"}, "pid": "1300", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:42.647077 2023-07-08 08:15:42.647079 7b61ec42-b8a3-4494-bed4-7b7be7be6da3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146715056"}, "pid": "1304", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:42.722917 2023-07-08 08:15:42.72292 b0b96165-e028-4cec-b499-e9308d3cf5d1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146716346"}, "pid": "1305", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:42.807006 2023-07-08 08:15:42.80701 5ebfeb5a-2c0a-439a-a5c1-12cf0e5256d9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146716648"}, "pid": "1306", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:42.889229 2023-07-08 08:15:42.889233 ea2935ec-33a2-4505-8f4b-cacbc4fc8523 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146776039"}, "pid": "1307", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:42.966178 2023-07-08 08:15:42.966181 6c0c8cd0-5229-4c97-a01f-aac3d2ef2437 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146781075"}, "pid": "1308", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:43.177163 2023-07-08 08:15:43.177172 a0d70855-069c-4ad6-a319-965796de6870 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146797974"}, "pid": "1310", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:43.283934 2023-07-08 08:15:43.283943 0248e5ad-bb8c-4f8d-8002-fdbc6bc694d7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146820763"}, "pid": "1311", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:42.564991 2023-07-08 10:24:11.453451 9e1408e8-c0ac-40de-8913-b2079e2a6eed {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146703015"}, "pid": "1303", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101021048"} 2 -2023-07-08 08:15:42.385369 2023-07-08 10:25:32.798937 81332152-0d14-404f-b3fe-652133ef2760 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146583117"}, "pid": "1301", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1028151246518844130829"} 2 -2023-07-08 08:15:43.065212 2023-07-08 10:26:15.563394 249d6179-5bd5-40f8-b238-027e2324b6ae {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146794703"}, "pid": "1309", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104066981"} 2 -2023-07-08 08:15:40.800489 2023-07-08 10:26:30.768145 dde84b59-87c1-4dcd-aaa2-da94fd92b5ff {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1145931103"}, "pid": "1284", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10487173"} 2 -2023-07-08 08:15:42.213916 2023-07-08 10:26:53.46826 28b61021-4108-4dcb-b97c-3c68c58a2814 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146539355"}, "pid": "1299", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1061151246607144132675"} 2 -2023-07-08 08:15:40.594943 2023-07-08 10:26:56.407777 a3359d88-b29d-483e-9cd9-e17cd332efab {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1145880231"}, "pid": "1282", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106151246547944131986"} 2 -2023-07-08 08:15:41.650003 2023-07-08 10:28:43.373295 feeeab7c-c841-4df1-8c0a-f6f9a4328233 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146355181"}, "pid": "1293", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108766797"} 2 -2023-07-08 08:15:42.486412 2023-07-08 10:29:10.308168 de343aea-ed0c-4e44-ad3e-c403abc684d3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146702809"}, "pid": "1302", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1093151246514944130237"} 2 -2023-07-08 08:15:43.367824 2023-07-08 08:15:43.367828 f92c3dca-d7a9-46ad-9ade-13370b19883b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146911882"}, "pid": "1312", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:43.548886 2023-07-08 08:15:43.548888 882dbf5c-4194-43f3-b207-5f975a83af2b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1147003505"}, "pid": "1314", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:43.620194 2023-07-08 08:15:43.620197 a4c8f525-d0e4-4e1a-bde9-3da65359bc56 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1147011087"}, "pid": "1315", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:43.712762 2023-07-08 08:15:43.712767 fcd5e1ec-fd84-4965-bcab-92f858fda98e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1147058938"}, "pid": "1316", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:43.813054 2023-07-08 08:15:43.81306 66d9daed-9437-4bb5-98b6-af9ac9d67845 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1147073120"}, "pid": "1317", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:43.911027 2023-07-08 08:15:43.911038 d6796452-a0f6-4bbf-8929-7146d111636e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1147082367"}, "pid": "1318", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:44.00634 2023-07-08 08:15:44.006344 4eb53af3-eb23-4fa1-9cc5-a37fe4b0868d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1147083045"}, "pid": "1319", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:44.177102 2023-07-08 08:15:44.17711 1c716f74-1145-4364-846d-37be00b4024d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1147132976"}, "pid": "1321", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:39.948789 2023-07-08 08:22:39.948797 c1d93c26-f01c-4057-bb82-2841466cda65 {"pid": "5365", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243035411"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:44.357036 2023-07-08 08:15:44.357039 c9d3a4d3-0c33-4711-91ba-191d9c0079f6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1147150567"}, "pid": "1323", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:44.437277 2023-07-08 08:15:44.437286 b16057bd-8cf4-4531-8060-cfec19885b17 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1147173680"}, "pid": "1324", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:44.527355 2023-07-08 08:15:44.527358 05275852-6276-4623-9983-e424f8c49de8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/114720117X"}, "pid": "1325", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:44.623021 2023-07-08 08:15:44.62303 3c8cb8c9-9aa5-44c6-8a97-397b68155055 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1147319049"}, "pid": "1326", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:44.697288 2023-07-08 08:15:44.697291 b697153f-c27c-4ccd-b19c-a98fc1c9d3eb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1147429472"}, "pid": "1327", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:44.786423 2023-07-08 08:15:44.786434 c03c6a4a-ba05-4b4e-9a41-91f904626e57 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1147614709"}, "pid": "1328", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:44.878289 2023-07-08 08:15:44.878292 18829cca-543d-415a-a5f6-908ff5a8b2ee {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1147649642"}, "pid": "1329", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:44.967234 2023-07-08 08:15:44.967242 68302a6a-2c5d-438b-8c09-406fc3361689 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1147777713"}, "pid": "1330", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:45.228334 2023-07-08 08:15:45.228337 5d945967-032e-4ab1-9a57-fd77ba584027 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1148992316"}, "pid": "1333", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:45.328222 2023-07-08 08:15:45.32823 51001c8e-738e-449f-b4b7-d6b97dda90af {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1149000910"}, "pid": "1334", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:45.42136 2023-07-08 08:15:45.421368 60a04ae9-cca2-46cd-b649-fd1c39d9eb66 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1149077050"}, "pid": "1335", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:45.512831 2023-07-08 08:15:45.512834 075c4b2a-c6b0-4b08-a7ba-2f721fd328f0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1149382090"}, "pid": "1336", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:45.590069 2023-07-08 08:15:45.590073 47fedcce-4223-4748-aca1-704031320a86 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/115024397X"}, "pid": "1337", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:45.684726 2023-07-08 08:15:45.684731 c8952f59-d7c3-4215-b185-cf6b49dadc2c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1150721626"}, "pid": "1338", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:45.761549 2023-07-08 08:15:45.761552 2175d950-0c27-4b39-b08f-47566cb8d351 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1150789433"}, "pid": "1339", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:45.839055 2023-07-08 08:15:45.839059 02b48a11-b5cc-4c74-b2f3-71e3a25b1e62 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1150803541"}, "pid": "1340", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:45.91523 2023-07-08 08:15:45.915239 1b4536fe-2aca-40e3-b9b0-54ada60a9d61 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1151079529"}, "pid": "1341", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:46.013086 2023-07-08 08:15:46.013096 3f0b34de-b297-4f37-97e5-eeff7e210b01 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1151380040"}, "pid": "1342", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:44.093242 2023-07-08 10:27:32.891104 3aa39583-bcf1-45c1-9701-40c449019dae {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1147127794"}, "pid": "1320", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107151246601144132608"} 2 -2023-07-08 08:15:45.150717 2023-07-08 10:31:27.424048 5a984e5b-703f-4ce9-9496-88366c9af415 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1148473181"}, "pid": "1332", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1124151353514352720000"} 2 -2023-07-08 08:15:43.463961 2023-07-08 10:31:43.687664 d0d0cabe-fca8-47d4-99ca-53482d51101c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146987935"}, "pid": "1313", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "113151246509144130987"} 2 -2023-07-08 08:15:46.120524 2023-07-08 08:15:46.120531 0fa273dd-3b14-4069-818a-cfcb0808c9d2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/115168127X"}, "pid": "1343", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:46.206076 2023-07-08 08:15:46.206082 8756d194-1585-4fd4-8fe2-21617cd10202 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1151834149"}, "pid": "1344", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:46.284557 2023-07-08 08:15:46.28456 07c1ab2e-9ba8-4e2a-84ad-384fc4bbbd53 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/115189203"}, "pid": "1345", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:46.36747 2023-07-08 08:15:46.367478 62376dec-921a-411a-a99e-aaabee65386e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/115228987X"}, "pid": "1346", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:46.44969 2023-07-08 08:15:46.449693 da111560-f0db-4abb-b293-3499013ecb20 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1153014750"}, "pid": "1347", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:46.531841 2023-07-08 08:15:46.531847 88b236fc-9d88-495b-b736-a08a0d9c3a71 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1153069881"}, "pid": "1348", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:46.600912 2023-07-08 08:15:46.600915 2a11dbac-e7db-4d85-8b8f-bad8451a9b8f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1153169363"}, "pid": "1349", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:46.694551 2023-07-08 08:15:46.69456 587ed4cd-9bc4-4d75-b206-bd1c61b012ab {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1153565455"}, "pid": "1350", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:46.78222 2023-07-08 08:15:46.782226 eac94b2a-5e34-4b9d-b9ea-561455f4b1f5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1153781506"}, "pid": "1351", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:46.863227 2023-07-08 08:15:46.863231 ef398468-e540-41a7-a343-f52b78334a8a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/115378197"}, "pid": "1352", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:46.96653 2023-07-08 08:15:46.96654 c2b5577c-cd3e-4057-ada4-27b09c7f8004 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1154802817"}, "pid": "1353", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:47.048849 2023-07-08 08:15:47.048853 ba5099e0-32e4-4cb9-a8a2-0b6fa8a6928d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/115493069"}, "pid": "1354", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:47.123379 2023-07-08 08:15:47.123388 2c1392f9-f12c-40fd-b299-1e87bd54bf35 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/115497328X"}, "pid": "1355", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:47.19291 2023-07-08 08:15:47.192913 29af4fa6-15a1-4ffb-b4ed-0f9e0ab3ef89 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/115503256X"}, "pid": "1356", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:47.258452 2023-07-08 08:15:47.258455 0f10193a-16fb-44aa-b85d-bee25788aac5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1155263766"}, "pid": "1357", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:47.328934 2023-07-08 08:15:47.328937 560ed47b-ece7-4d77-9eb6-ed8722ff7ec0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1155422481"}, "pid": "1358", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:47.436268 2023-07-08 08:15:47.436273 67632a6f-1b1b-4d63-91c8-43c78df671b2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1155539176"}, "pid": "1359", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:47.512535 2023-07-08 08:15:47.512538 2432627b-b02c-494d-8425-965c64c30d99 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1155539249"}, "pid": "1360", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:47.59187 2023-07-08 08:15:47.591872 fa8ef1aa-b96b-4376-8dfc-6257bf7770be {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/115620451"}, "pid": "1361", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:47.655782 2023-07-08 08:15:47.655785 c51a437f-e279-4cf9-8e79-a274dc4c99f7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1156292166"}, "pid": "1362", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:47.726204 2023-07-08 08:15:47.726207 e9fb3b80-0f7b-4fce-bdd4-6ba436d3c8cc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1156433290"}, "pid": "1363", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:47.796864 2023-07-08 08:15:47.796867 81db08e1-461e-41ec-b72a-a2ce1f36dadc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1156493242"}, "pid": "1364", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:47.868307 2023-07-08 08:15:47.86831 98f6f945-2c78-41ab-a029-e3a6c86e133c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1156540917"}, "pid": "1365", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:47.936193 2023-07-08 08:15:47.936195 166f3349-3885-4c72-8a06-c819d153eccc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157052185"}, "pid": "1366", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:48.029035 2023-07-08 08:15:48.029038 31d58e79-6c66-4da3-9d26-01a48b3c5254 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157216900"}, "pid": "1367", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:48.10256 2023-07-08 08:15:48.102563 4f29fe0b-daf7-40f6-a298-2f92b2d0b79a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157217559"}, "pid": "1368", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:40.036725 2023-07-08 08:22:40.036733 c4f30de2-31f1-4355-8a41-270f1464efb5 {"pid": "5366", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243035632"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:48.280384 2023-07-08 08:15:48.280392 de75c7d6-adf0-4fd8-95ee-2e22f9a53fb3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157269680"}, "pid": "1370", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:48.370724 2023-07-08 08:15:48.370731 a77298bc-90fa-4c9a-9920-71c5638341f8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157288723"}, "pid": "1371", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:48.523011 2023-07-08 08:15:48.523015 baf2cb7b-7a4e-4c43-aa14-070079a35ebc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157335101"}, "pid": "1373", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:48.595693 2023-07-08 08:15:48.595697 f6449727-634a-40f7-bdc5-d5770ab529f8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157423981"}, "pid": "1374", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:48.666236 2023-07-08 08:15:48.666239 92f90411-f48c-458a-8f37-8d4210437fa6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157447694"}, "pid": "1375", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:48.735787 2023-07-08 08:15:48.73579 38727237-98a7-4d3d-86ad-d9c903b774b6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157452159"}, "pid": "1376", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:48.808074 2023-07-08 08:15:48.808077 c4d24573-2c09-4efa-95f2-22c1026d61d1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157594042"}, "pid": "1377", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:48.875851 2023-07-08 08:15:48.875855 72e1bd3f-4d43-4c33-b01b-55ade5e060bd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157599087"}, "pid": "1378", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:49.026802 2023-07-08 08:15:49.026805 481f10d3-ec36-41c8-a330-ae4875f5cb48 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157697208"}, "pid": "1380", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:49.100038 2023-07-08 08:15:49.100042 aec10c48-99b4-456d-b64f-b5dc9a5fe168 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157709702"}, "pid": "1381", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:49.180473 2023-07-08 08:15:49.180476 5e66ac20-d8d6-47ae-bef7-944c0ccdf398 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157711162"}, "pid": "1382", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:49.271486 2023-07-08 08:15:49.271494 8a1806c4-878e-4d22-8167-913f19bd0235 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/115775633"}, "pid": "1383", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:49.358157 2023-07-08 08:15:49.358161 95a8ee05-ab99-4f3a-82dc-fb8e39108b7c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157756964"}, "pid": "1384", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:49.443549 2023-07-08 08:15:49.443557 348af59f-a6ad-4697-bae5-3e3b339c6fb4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157761518"}, "pid": "1385", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:49.535379 2023-07-08 08:15:49.535387 302006a6-6edf-4e00-a814-88e9390f5124 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157778321"}, "pid": "1386", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:49.736305 2023-07-08 08:15:49.736308 33f1c7b1-79fe-4189-bc9b-a6bc83a1587c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157879837"}, "pid": "1388", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:49.822611 2023-07-08 08:15:49.822614 a6acc572-6368-4562-a915-c8a85058c79a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157907849"}, "pid": "1389", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:49.906683 2023-07-08 08:15:49.906692 eca6c955-a3bb-4299-be26-e1d4ae51eb0b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157912311"}, "pid": "1390", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:49.987914 2023-07-08 08:15:49.987918 df435afc-b38f-4175-b27e-917921c931af {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158006497"}, "pid": "1391", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:50.100821 2023-07-08 08:15:50.100832 9cfce63a-2839-405f-932d-c5c5ddcb176c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158027060"}, "pid": "1392", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:50.214363 2023-07-08 08:15:50.214372 df4625f4-aa10-41bb-99b0-d31aac970cda {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158052057"}, "pid": "1393", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:50.305276 2023-07-08 08:15:50.305285 58ba7cd4-2cd4-4ad8-9096-00c9d8d11d26 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158100892"}, "pid": "1394", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:50.397334 2023-07-08 08:15:50.397338 c7edd976-dab1-4f22-878f-777daf25ce19 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158101988"}, "pid": "1395", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:50.469215 2023-07-08 08:15:50.469218 dfc767d7-578b-407c-8f66-ef5bc8a19842 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158158408"}, "pid": "1396", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:50.537871 2023-07-08 08:15:50.537876 53d508ca-d315-496d-9933-0a584bc9f900 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158200374"}, "pid": "1397", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:50.604302 2023-07-08 08:15:50.604305 d12ca5aa-eb4d-4be9-b6a0-817270dc7895 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/115829106X"}, "pid": "1398", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:50.695833 2023-07-08 08:15:50.695843 a46f6d53-8bf1-492b-827f-0ad75abdf5bd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/115832599"}, "pid": "1399", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:50.894417 2023-07-08 08:15:50.894427 ca3772cd-fffb-458e-b253-1584774be61e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158367546"}, "pid": "1401", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:50.989837 2023-07-08 08:15:50.989845 20e3e179-e3f5-49f6-8683-7747244fbc50 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158381719"}, "pid": "1402", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:51.180104 2023-07-08 08:15:51.180149 d7278fe7-be29-4031-a3dc-dc068f9f732b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158419481"}, "pid": "1404", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:51.084161 2023-07-08 10:25:16.802819 ec09133d-2464-4b71-98b0-dca9cb60edc7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158387253"}, "pid": "1403", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1024152636064720051266"} 2 -2023-07-08 08:15:51.283444 2023-07-08 10:29:11.136394 21d7c5a3-2a88-4467-945a-43921141a647 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158422814"}, "pid": "1405", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1094152636168820052394"} 2 -2023-07-08 08:15:48.949361 2023-07-08 10:30:43.465983 8600e70c-2367-4833-bcfc-389196ccf175 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157628680"}, "pid": "1379", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11152636052620050970"} 2 -2023-07-08 08:15:49.642384 2023-07-08 10:31:21.355925 d2368342-004a-4d28-95a4-2752f1f70f6a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157861202"}, "pid": "1387", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112152636063520050560"} 2 -2023-07-08 08:15:51.385045 2023-07-08 08:15:51.385052 182dbded-4f7b-478e-98f3-7d59b1502345 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158446462"}, "pid": "1406", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:51.489316 2023-07-08 08:15:51.489319 8f68bba1-d6a4-46e1-8b28-d18bde451d89 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158464681"}, "pid": "1407", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:51.577214 2023-07-08 08:15:51.577219 59245a46-510d-4227-915d-53a05f4b2e05 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158546564"}, "pid": "1408", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:51.672473 2023-07-08 08:15:51.67248 5ca63e1f-e617-4fef-8831-b30d6d117d60 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158555156"}, "pid": "1409", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:51.774969 2023-07-08 08:15:51.774978 31b8b956-7d8a-416d-91de-c7194a4d6a32 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/115855882"}, "pid": "1410", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:51.970056 2023-07-08 08:15:51.970062 6d08292a-dcee-40b3-89f4-d40259bfc92c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158570945"}, "pid": "1412", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:52.059181 2023-07-08 08:15:52.059194 f7faa253-5b0a-465e-bbec-1d74edebf799 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158574614"}, "pid": "1413", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:52.159737 2023-07-08 08:15:52.159746 06097f6e-9ef7-4b8c-90ec-e60fee05fafb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158624107"}, "pid": "1414", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:52.248768 2023-07-08 08:15:52.248779 c1470f46-18c4-4d34-b28d-3c0a10c71b0b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158716125"}, "pid": "1415", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:52.35155 2023-07-08 08:15:52.351558 f3221c6c-c0f1-4af0-a435-dc9d45b6f260 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158723458"}, "pid": "1416", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:52.436165 2023-07-08 08:15:52.436168 b7563575-0a48-4707-a976-b01d040866ac {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158741308"}, "pid": "1417", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:52.522641 2023-07-08 08:15:52.522649 9e08c89a-0d2a-4dd5-8411-2cbf386802ed {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158818726"}, "pid": "1418", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:52.62811 2023-07-08 08:15:52.628118 5c91ec8b-1b46-47f4-837b-51fbd26af8fc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158866127"}, "pid": "1419", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:52.708958 2023-07-08 08:15:52.708963 929ecc5a-d38d-43e4-baae-7b6eeb24abb2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158920237"}, "pid": "1420", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:52.784363 2023-07-08 08:15:52.78437 dc463b6a-a184-4f54-8884-b1ba3c429476 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158922892"}, "pid": "1421", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:52.860918 2023-07-08 08:15:52.860926 65e4c8ca-82fa-4eca-a250-799e6249ce75 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158941145"}, "pid": "1422", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:52.94436 2023-07-08 08:15:52.944363 b96e2aa8-32ad-4156-8430-201dd5aab357 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158944675"}, "pid": "1423", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:53.027108 2023-07-08 08:15:53.027113 60bc32e2-62db-47d0-b0df-be95f802d361 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158971117"}, "pid": "1424", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:53.115806 2023-07-08 08:15:53.11581 f8aa43fb-bf15-4fde-b9f1-7620990bfd5a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1159026750"}, "pid": "1425", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:53.220085 2023-07-08 08:15:53.220092 4807dac2-b990-4dfc-b619-afe182b8b48a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1159034591"}, "pid": "1426", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:53.423959 2023-07-08 08:15:53.423964 a39774e8-d747-4769-a27d-7398ff2cb7be {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1159064911"}, "pid": "1428", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:53.517261 2023-07-08 08:15:53.517265 8ef3a965-aff2-46c0-954a-d0a6b46de94e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1159071373"}, "pid": "1429", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:53.617885 2023-07-08 08:15:53.617893 59dc2e9f-d65a-410f-95a9-cc1b980e5db3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1159073880"}, "pid": "1430", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:53.707427 2023-07-08 08:15:53.70743 f9f666a6-6550-4f09-a732-d73cc1873d2d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1159080593"}, "pid": "1431", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:53.79933 2023-07-08 08:15:53.799339 0eeeafa9-54bb-490c-bdd5-f6f7257f1921 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1159104611"}, "pid": "1432", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:53.901041 2023-07-08 08:15:53.90105 d5b9eeb3-fcec-4b72-a055-4f928ca6412e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1159119422"}, "pid": "1433", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:53.980041 2023-07-08 08:15:53.980049 0504f470-7113-4158-9e92-9b367140f38e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1159135630"}, "pid": "1434", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:54.073928 2023-07-08 08:15:54.073931 406f2832-9694-4a6d-bd6c-ed57d63c03fa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1159138117"}, "pid": "1435", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:54.163095 2023-07-08 08:15:54.163104 a18770fd-5246-4eaf-b59f-fe0a15ef12d9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1159153183"}, "pid": "1436", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:54.255587 2023-07-08 08:15:54.255592 d8b8927a-5ff2-4443-8ca3-8e0b52c17922 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1159167451"}, "pid": "1437", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:51.88493 2023-07-08 10:28:40.448665 ec7aa857-c1df-4d7b-9d98-635753192ce3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158559259"}, "pid": "1411", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1087152637848520220008"} 2 -2023-07-08 08:15:54.33673 2023-07-08 08:15:54.336733 150d33c9-0eb9-4c95-a340-23f646715598 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1159213550"}, "pid": "1438", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:54.418788 2023-07-08 08:15:54.418795 2ac16943-2928-4f4c-9bc4-98b2f48f941d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/115921719X"}, "pid": "1439", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:54.522174 2023-07-08 08:15:54.522185 f3dafe0c-2d0a-4587-8b35-0404882d2d47 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1159260079"}, "pid": "1440", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:54.630316 2023-07-08 08:15:54.630328 d88c0c6d-3fd4-48c4-bcd9-b260332844a2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1159260931"}, "pid": "1441", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:54.746587 2023-07-08 08:15:54.746597 b07b83e7-55b8-4c50-8e34-767a1edbb7dc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1159261407"}, "pid": "1442", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:40.137232 2023-07-08 08:22:40.137239 9c3b6a54-b7c9-47e4-95a8-7bdde6baaf49 {"pid": "5367", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243036620"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:55.016498 2023-07-08 08:15:55.01651 80302f3a-3c0c-4b76-aa2e-f8d6b29454ef {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1159288259"}, "pid": "1444", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:55.121549 2023-07-08 08:15:55.121564 9c28eaf7-1bfe-40a5-b4c2-06ad6f9e7274 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1159531471"}, "pid": "1445", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:55.229866 2023-07-08 08:15:55.229875 8790736d-4eb6-428b-832d-f8644183992c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1159712689"}, "pid": "1446", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:55.354429 2023-07-08 08:15:55.35444 1683e336-8bc4-4707-8d1d-b08ebaf47038 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1160106576"}, "pid": "1447", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:55.481156 2023-07-08 08:15:55.481165 2078a5c2-eb4b-42b3-970b-7b707089ba29 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1160217254"}, "pid": "1448", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:55.621478 2023-07-08 08:15:55.621488 f87ef2bd-78f0-4e95-b58c-2a65841a1942 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1160325189"}, "pid": "1449", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:55.737951 2023-07-08 08:15:55.737964 e909034d-f67b-4084-b590-a92bde61bf49 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116037202"}, "pid": "1450", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:55.843007 2023-07-08 08:15:55.843018 2f5486f6-9f79-4cae-9aff-b7d252c11802 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116075899"}, "pid": "1451", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:55.948259 2023-07-08 08:15:55.948272 623375a3-b32a-43d1-aaab-601fc5635121 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1160946140"}, "pid": "1452", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:56.051172 2023-07-08 08:15:56.051182 d582c57e-a9cc-46ec-9365-3b876497bbc7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116102932X"}, "pid": "1453", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:56.155951 2023-07-08 08:15:56.155961 755b7665-71a4-4573-b20e-563ab0f81279 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116120444"}, "pid": "1454", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:56.381749 2023-07-08 08:15:56.381761 b6d3538a-998d-4052-8882-e16fcb8aa230 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116189673"}, "pid": "1456", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:56.483786 2023-07-08 08:15:56.483796 cbc181e1-be23-4c2e-b64f-93cb7322f2a6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1162968664"}, "pid": "1457", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:56.59941 2023-07-08 08:15:56.599418 5ef9be18-419e-48cb-aa6d-6a0b5de753d8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1163054186"}, "pid": "1458", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:56.702518 2023-07-08 08:15:56.702526 ebed2c37-bc4a-40d3-8996-467be68f6001 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1163061921"}, "pid": "1459", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:56.808444 2023-07-08 08:15:56.808453 fb871815-17e7-4722-a3b9-3e17ee53e9f5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116311054X"}, "pid": "1460", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:56.928246 2023-07-08 08:15:56.928255 aef649bb-0fee-46d6-a2fd-3582c3fc56d7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1163622265"}, "pid": "1461", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:57.047326 2023-07-08 08:15:57.047339 d78282fb-7baf-401c-be76-7ff8ae98b6d9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1163767662"}, "pid": "1462", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:57.153065 2023-07-08 08:15:57.153075 8269ed5a-a0a7-455c-892b-c886c167ffdf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116385103"}, "pid": "1463", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:57.253583 2023-07-08 08:15:57.253593 db19fd6f-72d7-448b-b477-5ac8e63506fd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1164191497"}, "pid": "1464", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:57.373235 2023-07-08 08:15:57.373242 aec1b945-ab6d-4ae9-afa8-96beed06440d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1164263269"}, "pid": "1465", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:57.47627 2023-07-08 08:15:57.476281 aa6eb0ce-5539-4f2e-b3d2-8071888f6adf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116439394"}, "pid": "1466", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:57.581481 2023-07-08 08:15:57.581488 0d412972-0dec-4457-8e3c-3f9f2f08e7bb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116442743"}, "pid": "1467", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:57.711657 2023-07-08 08:15:57.711667 615672c1-dffb-42dc-96d1-8d9bb91139c7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1164502875"}, "pid": "1468", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:56.269064 2023-07-08 10:27:47.022712 1033e781-d696-435a-a70f-eb2c38f29a6c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116144131X"}, "pid": "1455", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107416327"} 2 -2023-07-08 08:15:57.949125 2023-07-08 08:15:57.949137 128c4071-389e-4107-809a-8dc81d423075 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/11647839X"}, "pid": "1470", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:58.054369 2023-07-08 08:15:58.054379 f2ad6893-a2aa-4ddd-b986-9eba19c6f2bd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116481536"}, "pid": "1471", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:58.166485 2023-07-08 08:15:58.166495 0dd58243-ddad-4abb-81ae-949331653bdf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116493011"}, "pid": "1472", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:58.27226 2023-07-08 08:15:58.272269 99e3975a-3a97-481a-859f-99197415d414 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1165187388"}, "pid": "1473", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:58.383994 2023-07-08 08:15:58.384007 c1b8d66d-7eb6-4402-a5ea-11938fb5ea3a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1165269503"}, "pid": "1474", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:58.486138 2023-07-08 08:15:58.486145 dec88716-4c05-4a34-9387-22d10556e57c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1165531615"}, "pid": "1475", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:58.83226 2023-07-08 08:15:58.83227 b8cb67e5-b9de-4bc4-922f-5fbee68a9325 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1165585391"}, "pid": "1478", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:58.933943 2023-07-08 08:15:58.933951 400a41eb-1f85-424a-91d7-3c7fd46be4b4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116582782"}, "pid": "1479", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:59.03161 2023-07-08 08:15:59.031623 41b710a1-c964-4755-a7b6-4ff3e10906b1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116600233"}, "pid": "1480", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:59.136753 2023-07-08 08:15:59.136762 b5c6f328-06a9-453d-87e1-8ffc72f1e5ed {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116601795"}, "pid": "1481", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:59.243274 2023-07-08 08:15:59.243283 b9b95ea7-fc5f-46ae-a8ba-3f93ad2b8839 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1166105709"}, "pid": "1482", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:59.342343 2023-07-08 08:15:59.342357 a5a74f51-4a91-444c-8b76-f4640923e47e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1166156494"}, "pid": "1483", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:59.446187 2023-07-08 08:15:59.446198 cc22290f-0085-405b-9e18-796a36034aee {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116629673"}, "pid": "1484", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:59.551716 2023-07-08 08:15:59.551724 e452fd93-b938-4af7-9fa2-d3cf9074b930 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116679875"}, "pid": "1485", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:59.653846 2023-07-08 08:15:59.653855 420f01bb-4e78-40fe-8fa1-a1e699eb30ea {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1166857204"}, "pid": "1486", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:59.758199 2023-07-08 08:15:59.758207 6afd53b3-ab53-4bba-9940-b3afe754b85b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1166992330"}, "pid": "1487", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:59.865028 2023-07-08 08:15:59.865045 59b1fc8a-86d1-4c67-872a-367153be1863 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/11671848X"}, "pid": "1488", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:59.98457 2023-07-08 08:15:59.984583 11817c2c-0249-4eae-b489-a5a31906da52 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116736410"}, "pid": "1489", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:00.09328 2023-07-08 08:16:00.093296 e89b3562-10f6-498b-ac7b-f60b0a7b3040 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116755776"}, "pid": "1490", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:00.197668 2023-07-08 08:16:00.197678 0f90f713-b41a-40cb-83a0-b1b921797c9d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1168165466"}, "pid": "1491", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:00.302833 2023-07-08 08:16:00.302842 32d1d3d4-4524-4617-a65a-b6e0e04df04c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1168177111"}, "pid": "1492", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:00.526769 2023-07-08 08:16:00.526779 f341c470-4fbd-408d-99ca-5e3f256aef8d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/11683188X"}, "pid": "1494", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:00.644896 2023-07-08 08:16:00.64491 50887815-8243-4700-9b50-13b83cb7fb84 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116864366X"}, "pid": "1495", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:00.782977 2023-07-08 08:16:00.782989 eb96ea80-57f9-4a1a-b8dc-88fbe27e54c3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1168683211"}, "pid": "1496", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:00.946622 2023-07-08 08:16:00.946635 b6f0a9cb-0899-4f9f-b61b-9fdc0bec7927 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116903953"}, "pid": "1497", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:01.080987 2023-07-08 08:16:01.081 07548ec4-f485-442b-8b44-e64848fa9592 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1169048099"}, "pid": "1498", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:01.207524 2023-07-08 08:16:01.207538 5d6839d9-2b68-4a75-9962-cf754c54073b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1169139434"}, "pid": "1499", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:01.338345 2023-07-08 08:16:01.338354 c0f0f4c2-2b42-4df6-b9a5-305089c07cc5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1169226531"}, "pid": "1500", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:01.489564 2023-07-08 08:16:01.489573 7eb5c0c1-0e69-4a53-9d58-3329cbb8b280 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116934565"}, "pid": "1501", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:00.419356 2023-07-08 10:26:52.537355 a5df8064-78a4-49d1-a9a0-02158ca5b060 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116830565"}, "pid": "1493", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10607359"} 2 -2023-07-08 08:15:58.722883 2023-07-08 10:30:43.908284 f415506b-fd3d-41f3-8c44-5b9487204fd2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1165583534"}, "pid": "1477", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11153593734351671266"} 2 -2023-07-08 08:16:01.58898 2023-07-08 08:16:01.588989 694f78df-1c92-4060-82df-5f1778f35b9c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116986700"}, "pid": "1502", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:01.696963 2023-07-08 08:16:01.696971 ae447896-dcc7-4046-a46e-f9b2feb2db48 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1169969305"}, "pid": "1503", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:01.805205 2023-07-08 08:16:01.805214 2946843e-67e7-41b4-81bd-da017d3439c8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1170278353"}, "pid": "1504", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:01.920741 2023-07-08 08:16:01.92075 27dbd4c5-1e4e-45cd-ab8c-3dfbfeecf296 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1170426131"}, "pid": "1505", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:02.033749 2023-07-08 08:16:02.033781 b7d6036e-7e9b-410b-9c8b-3605399f1465 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1170451594"}, "pid": "1506", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:02.158615 2023-07-08 08:16:02.158623 76dd3968-80c1-4121-abc4-21edfd7cde1d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/117054437"}, "pid": "1507", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:02.275693 2023-07-08 08:16:02.275705 db15a5fc-2b06-4a30-8544-b7a66c5f9898 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1170618367"}, "pid": "1508", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:02.382405 2023-07-08 08:16:02.382415 cb9f682d-8263-4670-bad6-ff4ff7fc8fad {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1170837611"}, "pid": "1509", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:02.492987 2023-07-08 08:16:02.492998 dd092901-dc43-4e94-b8a8-3059c9c8335e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1171152183"}, "pid": "1510", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:40.24538 2023-07-08 08:22:40.245391 167df801-5645-45e0-af6f-e232ee2abcb2 {"pid": "5368", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243043619"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:02.737332 2023-07-08 08:16:02.737344 b343077c-6994-41d7-9f1d-bf13bfcdda0e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1171765010"}, "pid": "1512", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:02.853691 2023-07-08 08:16:02.853703 af033941-ab55-49ae-9ec0-b7d976291dd2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1172001731"}, "pid": "1513", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:02.984127 2023-07-08 08:16:02.98414 5563ab38-efdb-4ac3-8362-77b355dcfede {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1172048657"}, "pid": "1514", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:03.100735 2023-07-08 08:16:03.100742 3a6ebc1f-520a-4cdc-8b6e-5233fd4294d9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1172083541"}, "pid": "1515", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:03.208886 2023-07-08 08:16:03.208897 a8ceb949-f9f7-442f-b133-d54577f8459b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1172106339"}, "pid": "1516", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:03.326432 2023-07-08 08:16:03.326445 7a73499b-4355-496f-b98c-4c96a9927300 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/117233218"}, "pid": "1517", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:03.430513 2023-07-08 08:16:03.430521 0b57ce96-bdd5-43fd-91dc-1f8b6f926692 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1173330542"}, "pid": "1518", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:03.548358 2023-07-08 08:16:03.548369 8ad30e92-9ef8-457e-97eb-009db3720695 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/117352896"}, "pid": "1519", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:03.767094 2023-07-08 08:16:03.767104 c3a92a6f-8d41-499e-958b-bba1ce60149c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/117480797"}, "pid": "1521", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:03.890338 2023-07-08 08:16:03.890349 9bf09c79-1335-4b3c-911c-de255b1e35c3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1175119865"}, "pid": "1522", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:04.004905 2023-07-08 08:16:04.004914 70dd2f43-108f-4862-aeed-f3597c0f9f1f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/117520705"}, "pid": "1523", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:04.138436 2023-07-08 08:16:04.138446 da5a0352-e8c4-4100-a793-3dfaf5c9e394 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1175431435"}, "pid": "1524", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:04.277056 2023-07-08 08:16:04.277068 a8dc43bf-a216-407a-ae33-d41bbe206dac {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/117546720"}, "pid": "1525", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:04.391368 2023-07-08 08:16:04.391378 7cb85f09-6221-46c3-aa03-57b13e0ce1c1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1175643521"}, "pid": "1526", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:04.497237 2023-07-08 08:16:04.497249 11cc2d24-66e5-4b33-9a10-95d00bb0fad2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1175653861"}, "pid": "1527", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:04.622731 2023-07-08 08:16:04.622742 1ac1c881-1421-4a6e-bc81-7b7d75d906a8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1176124900"}, "pid": "1528", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:04.716632 2023-07-08 08:16:04.716644 01be3bc0-5e06-45c5-bfb8-fe958abcc855 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1176442988"}, "pid": "1529", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:04.832497 2023-07-08 08:16:04.83251 d3fb01df-0160-4436-832a-5b881736f119 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/117655570"}, "pid": "1530", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:05.083645 2023-07-08 08:16:05.083653 d0ac3c72-f29b-4922-b303-7ab5e2121258 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/117701408"}, "pid": "1532", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:05.20438 2023-07-08 08:16:05.204388 366e1e63-2743-4d1f-95ea-704fa1ec477e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1177093979"}, "pid": "1533", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:03.657443 2023-07-08 10:27:06.147811 b02a6fb8-52ae-43a0-ad5c-dd21b8b2980b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/117471178"}, "pid": "1520", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10624332"} 2 -2023-07-08 08:16:05.466005 2023-07-08 08:16:05.466016 50d8bf25-f123-4273-9d98-9945ac6e365a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1177904713"}, "pid": "1535", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:05.597883 2023-07-08 08:16:05.597896 687d58e7-5fee-4dc9-a266-6b9db06d513a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1178023370"}, "pid": "1536", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:05.713215 2023-07-08 08:16:05.713219 fd7d09a5-899a-41eb-9e92-8b6235ebea4e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1178350002"}, "pid": "1537", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:05.820545 2023-07-08 08:16:05.820554 f1373b50-491c-4279-bc7c-4c8ff8920463 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1178484009"}, "pid": "1538", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:05.965454 2023-07-08 08:16:05.965465 80cc5029-a5ad-4868-b5d7-93b85f56756f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1178833925"}, "pid": "1539", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:06.090234 2023-07-08 08:16:06.090245 dfa062f3-1094-4565-b975-5e18f39de27c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1179197992"}, "pid": "1540", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:06.200302 2023-07-08 08:16:06.200312 457d5d6a-c00d-4518-b6ec-cb334879d314 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1179207440"}, "pid": "1541", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:06.322963 2023-07-08 08:16:06.32297 2e592444-0c37-45d5-ba1b-9ca1429943de {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/117971041X"}, "pid": "1542", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:06.438037 2023-07-08 08:16:06.438044 a9af15a6-832f-4881-b5f7-7055bd154d66 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1179785266"}, "pid": "1543", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:06.540039 2023-07-08 08:16:06.540047 079892fe-9f1a-40c1-bb43-7840e2f346e1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1180539567"}, "pid": "1544", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:06.638447 2023-07-08 08:16:06.638454 30dffa7d-7a65-44ee-94d4-191c9aa5849f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/118068544X"}, "pid": "1545", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:06.743895 2023-07-08 08:16:06.743903 e9f9cef5-f1fa-4ab5-8599-6491021a3635 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/118108093"}, "pid": "1546", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:06.850814 2023-07-08 08:16:06.850824 e188cdbe-192c-45dc-81a1-462ed94499ab {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1181153034"}, "pid": "1547", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:06.958649 2023-07-08 08:16:06.95866 19070a4c-141d-49cf-bec1-3aa456a4bb41 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1182338917"}, "pid": "1548", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:07.078136 2023-07-08 08:16:07.078146 569d2508-29db-4345-b2a9-8206ae21f8c3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/118247957X"}, "pid": "1549", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:07.34833 2023-07-08 08:16:07.348342 89dac8be-5f4f-4a7d-af01-8f6f0108d139 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1183836740"}, "pid": "1551", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:07.450383 2023-07-08 08:16:07.450392 ab89c37a-f378-4cc0-9c0e-5878a89af34d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1184599297"}, "pid": "1552", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:07.560287 2023-07-08 08:16:07.560296 1110f451-dc27-4f8d-8671-9699a0ab1945 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1185183302"}, "pid": "1553", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:07.679237 2023-07-08 08:16:07.679246 66aa665d-825f-4b60-a528-4141f67e8a3b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1185191275"}, "pid": "1554", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:07.788439 2023-07-08 08:16:07.788449 b1258c9d-a2e4-4c56-8362-faf74b51a18a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/118531867"}, "pid": "1555", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:07.897659 2023-07-08 08:16:07.89767 ee352b2c-245b-45e8-b752-54a0b684ed53 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/118544291X"}, "pid": "1556", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:08.013936 2023-07-08 08:16:08.01395 848f80df-71b4-4e36-8e6e-2fbde327cd3b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1185450025"}, "pid": "1557", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:08.135008 2023-07-08 08:16:08.135018 d2f38007-3403-433a-b06e-4f9524560803 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/118553615"}, "pid": "1558", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:08.267876 2023-07-08 08:16:08.267886 a3fcb26d-98e3-4855-9e52-de63f8eb7a82 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/118561693"}, "pid": "1559", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:08.389821 2023-07-08 08:16:08.389829 9994cbe4-044b-4367-b746-9e61a36feac7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1186072571"}, "pid": "1560", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:08.49799 2023-07-08 08:16:08.498 85433fba-ec1d-4f25-b7d2-f2e924c90a6c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/118684264"}, "pid": "1561", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:08.609097 2023-07-08 08:16:08.609105 3b0dc0b9-f28a-4461-b96f-27d0fac7ca5f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1187151726"}, "pid": "1562", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:08.730471 2023-07-08 08:16:08.730481 b0691ebe-e583-4b95-a231-5bccdd8b20d8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/118716328"}, "pid": "1563", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:08.997586 2023-07-08 08:16:08.997596 ad2a051c-74c0-477e-a9cf-2d232ba6dd2d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1187537691"}, "pid": "1565", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:08.889364 2023-07-08 10:24:26.962876 5e35b2b7-691f-4871-bbb1-924fbf593f82 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1187368121"}, "pid": "1564", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1012150323740809970720"} 2 -2023-07-08 08:16:09.094987 2023-07-08 08:16:09.095 23a16d5c-278e-4c15-a9c5-5d1a66ca00e3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1187670472"}, "pid": "1566", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:09.194586 2023-07-08 08:16:09.194596 1f420f52-6002-43dd-a57a-eeb8604e57e6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1187679194"}, "pid": "1567", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:09.296674 2023-07-08 08:16:09.296686 2c2e62de-7218-4ff3-87c6-82a1eed626e9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1187985945"}, "pid": "1568", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:40.468411 2023-07-08 08:22:40.468421 e481431b-a75d-45dc-a65c-63bec06ba553 {"pid": "5370", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243138016"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:09.501024 2023-07-08 08:16:09.501033 b5f81931-b4dc-4190-8999-e2eb7bbb73a0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/118842218"}, "pid": "1570", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:09.618142 2023-07-08 08:16:09.618154 c269bb7d-9d76-477d-bf47-7dec8ee5dcd7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1188483552"}, "pid": "1571", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:09.732733 2023-07-08 08:16:09.73274 4fd41dfe-caf2-4756-81f4-f875fe660403 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1188583360"}, "pid": "1572", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:10.004643 2023-07-08 08:16:10.004652 dc925863-bf47-423a-b3e6-dd7596af0260 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/118873768"}, "pid": "1574", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:10.118947 2023-07-08 08:16:10.118955 b17660bb-1b00-4394-bb12-96025b88b95b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1188747894"}, "pid": "1575", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:10.235569 2023-07-08 08:16:10.23558 c4b5fd4c-a653-426f-8d9a-8ed2267d4cdc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/118908642"}, "pid": "1576", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:10.385422 2023-07-08 08:16:10.385432 ce6e8458-0bba-47ed-a7fe-0412f9ac79ac {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1189098970"}, "pid": "1577", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:10.502735 2023-07-08 08:16:10.50275 c01555a9-f93d-43ba-aade-4617f38a50b0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/118914634"}, "pid": "1578", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:10.619901 2023-07-08 08:16:10.619908 8730da4a-cbfa-42c6-9f42-5f86d099b06e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1189274361"}, "pid": "1579", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:10.723078 2023-07-08 08:16:10.723085 ce8a2fa8-2a27-4226-b804-520051a1b367 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/118960032"}, "pid": "1580", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:10.831309 2023-07-08 08:16:10.831321 b754ad82-41c7-4ec7-9f53-9b02a4f642e6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/118960308X"}, "pid": "1581", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:11.322881 2023-07-08 08:16:11.32289 b3b0a6ea-063d-47a2-82fc-21de1a1a896d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/119009307"}, "pid": "1585", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:11.437209 2023-07-08 08:16:11.437218 b266e29c-058d-46f0-9342-cd3ee28a800e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1190205149"}, "pid": "1586", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:11.569549 2023-07-08 08:16:11.569557 7f5c378a-e634-4bc5-99e8-1d8d75d3c15d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/119022826"}, "pid": "1587", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:11.81739 2023-07-08 08:16:11.8174 92c2deba-e95d-48b2-ab2f-f3c90a9879e5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1190392402"}, "pid": "1589", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:10.954671 2023-07-08 10:27:11.418968 42ffd5e4-a1f8-4281-9829-b924fc867f2f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/118995316"}, "pid": "1582", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10646167"} 2 -2023-07-08 08:16:12.05474 2023-07-08 08:16:12.054749 3f6e0469-8b79-4049-aeb4-d9372c4a7c51 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1190664518"}, "pid": "1591", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:12.161679 2023-07-08 08:16:12.161689 23a3c3b5-858d-41cd-86b3-9dd4eee340f3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1190675692"}, "pid": "1592", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:12.293612 2023-07-08 08:16:12.293625 ae299209-e848-4fc1-bec5-1198e9f1c634 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/119077671"}, "pid": "1593", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:12.415865 2023-07-08 08:16:12.415876 7bbd923b-6ba5-4c3c-a698-bf97a5f0207a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1190845555"}, "pid": "1594", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:12.518558 2023-07-08 08:16:12.518569 c5d3c7a7-c21a-426f-8d92-945adb29f13d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1190905671"}, "pid": "1595", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:12.651281 2023-07-08 08:16:12.651292 76f3d351-9db1-408f-8beb-1e4c09a90c76 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/119090943X"}, "pid": "1596", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:12.766232 2023-07-08 08:16:12.766239 c72bdcdd-33a0-4ac3-91ba-2aa274405bce {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/119136228"}, "pid": "1597", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:11.697378 2023-07-08 10:30:50.42277 14788ab5-cd34-4969-be68-b4f28818c369 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1190386577"}, "pid": "1588", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11156312285502080766"} 2 -2023-07-08 08:16:11.070063 2023-07-08 10:28:20.396284 2e48a1fd-82c2-4915-bcdc-fb1463280b64 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1190043440"}, "pid": "1583", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240816773"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108146573961738102281"} 4 -2023-07-08 08:16:12.870841 2023-07-08 08:16:12.870848 750496ec-291c-4031-8bf8-fa8b34de4e77 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/119161796"}, "pid": "1598", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:12.98796 2023-07-08 08:16:12.987969 88bc8afe-e19a-4ea6-bf31-c90844827251 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1191853187"}, "pid": "1599", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:40.585355 2023-07-08 08:22:40.58536 4a7dd706-e6aa-40d6-aed3-b93030e6bb9f {"pid": "5371", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243154666"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:13.347368 2023-07-08 08:16:13.347376 e1333638-d78e-411a-8055-d1911fe72b04 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1192518470"}, "pid": "1602", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:13.468862 2023-07-08 08:16:13.468877 b5bd303d-3a59-4f11-a47d-e7795fb885a7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1192950399"}, "pid": "1603", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:13.59142 2023-07-08 08:16:13.591436 6f38dbc7-e24d-44d1-85cb-17870c29c297 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1193659566"}, "pid": "1604", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:13.711599 2023-07-08 08:16:13.711615 38572a98-3792-46dc-8773-4f4e5bf50884 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1193660688"}, "pid": "1605", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:13.841998 2023-07-08 08:16:13.84201 bb897f4d-c15d-4a94-9761-59b87f6c9661 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1193684374"}, "pid": "1606", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:13.96022 2023-07-08 08:16:13.960228 0a50abfc-f2fb-443f-ab0a-38012e1ed590 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1193701163"}, "pid": "1607", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:14.071471 2023-07-08 08:16:14.071481 dddca33e-ac24-47bd-84d5-42074c0ed83c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/119380439"}, "pid": "1608", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:14.183169 2023-07-08 08:16:14.183177 4f6bea7a-f33b-4453-849f-2685a59da413 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/119411679"}, "pid": "1609", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:14.2978 2023-07-08 08:16:14.297813 052d03fa-31df-44e6-b5a0-b958c65747f0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1194409997"}, "pid": "1610", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:14.408852 2023-07-08 08:16:14.40886 bd61bdd6-0de6-4883-a0bb-f6c3d001dfba {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1194663192"}, "pid": "1611", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:16.316506 2023-07-08 10:28:33.639675 7e7afc0b-e870-4364-b8e8-38f1512e7462 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1199967009"}, "pid": "1628", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1084157470192922640007"} 2 -2023-07-08 08:16:14.622261 2023-07-08 08:16:14.622274 9953539b-457f-408c-a6e2-33883d70c6d5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/119508516"}, "pid": "1613", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:14.727922 2023-07-08 08:16:14.727931 975637f1-03e3-4186-82fb-b0d3af10ad62 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/119537087"}, "pid": "1614", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:14.834194 2023-07-08 08:16:14.834201 785ffde8-c869-484c-b105-991766d3b5cb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/119559382"}, "pid": "1615", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:14.938323 2023-07-08 08:16:14.93833 2c4f1777-4bf8-403b-bedd-464112d42dc8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1195806868"}, "pid": "1616", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:15.050474 2023-07-08 08:16:15.050482 b5634ae6-15a6-4af6-99df-6179f6e0ab87 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1196648964"}, "pid": "1617", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:15.167778 2023-07-08 08:16:15.167791 98cf5442-72a2-4296-9131-d57c5c3c2520 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/119724952"}, "pid": "1618", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:15.283209 2023-07-08 08:16:15.283217 c2fd6bab-2048-4dbe-afeb-847538de6097 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1197312137"}, "pid": "1619", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:15.394371 2023-07-08 08:16:15.394384 fe81930f-23bd-48aa-bf4b-4cc066c09bed {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1197337660"}, "pid": "1620", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:15.501829 2023-07-08 08:16:15.501836 fe0cdc5c-b9e6-4179-b740-e21f82fe1904 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1197621814"}, "pid": "1621", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:15.612171 2023-07-08 08:16:15.612178 cfd2852f-a3b6-41d9-8531-f2870972152a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1197715096"}, "pid": "1622", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:15.977115 2023-07-08 08:16:15.977124 d6d1ddc4-3ee3-4f9c-b179-7b412172bf16 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/11987251X"}, "pid": "1625", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:16.103156 2023-07-08 08:16:16.103165 a9516647-805d-4b8a-be69-ba186b041922 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1199119393"}, "pid": "1626", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:16.211733 2023-07-08 08:16:16.211744 ed0c11db-2c34-405e-9992-86e2e4442c24 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1199276545"}, "pid": "1627", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:16.435114 2023-07-08 08:16:16.435123 dabf4fe9-d031-4bdf-9b4b-e646645f9efe {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1200376331"}, "pid": "1629", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:15.861167 2023-07-08 10:31:40.908889 696cfde4-fe68-47b9-b9fc-2f8b2a5be5b0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1198439084"}, "pid": "1624", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/183544129"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "113132477"} 4 -2023-07-08 08:16:13.108331 2023-07-08 10:30:10.392034 3d61ea4a-7bca-42a1-bcc8-499f3ca32e88 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/119219816"}, "pid": "1600", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232895651"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110724484"} 4 -2023-07-08 08:16:16.549936 2023-07-08 08:16:16.549944 5e6763ae-cc95-4b2f-a4f7-1524819956a6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1200558375"}, "pid": "1630", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:16.66177 2023-07-08 08:16:16.661778 0c13952d-7c47-4fb3-ae08-ccab6b8690f9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/120095785"}, "pid": "1631", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:16.76257 2023-07-08 08:16:16.762578 afbc3a4c-2b6d-4c04-b274-d0489193b52e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1201178835"}, "pid": "1632", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:16.916856 2023-07-08 08:16:16.91686 2c63456b-7771-41ec-987b-831b2e0d97f7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/120175118"}, "pid": "1633", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:16.981457 2023-07-08 08:16:16.98146 def1e5a3-5851-423b-9845-3fee5ee8f339 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/120175533"}, "pid": "1634", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:17.045608 2023-07-08 08:16:17.045614 ce8a791c-e440-4029-a3e8-7e17a99ea9e8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1201779243"}, "pid": "1635", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:17.133446 2023-07-08 08:16:17.133449 4fd19df5-0522-40d6-b3c0-b9ef208a5867 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1201917980"}, "pid": "1636", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:17.234014 2023-07-08 08:16:17.234023 43497a2a-562b-4cef-ac50-8fa92d133cfe {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/120249561"}, "pid": "1637", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:17.464566 2023-07-08 08:16:17.464574 845e559d-97b2-4011-ae94-7f4ef57a2671 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/120284952"}, "pid": "1639", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:17.560834 2023-07-08 08:16:17.560845 654f681a-ed52-4fc7-8304-ead0d6b110f2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1202884679"}, "pid": "1640", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:17.670672 2023-07-08 08:16:17.670682 a18b42c4-4506-4717-b5d9-f6f88e1b33bd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/120343525"}, "pid": "1641", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:17.770886 2023-07-08 08:16:17.770893 1ce6ed9a-c415-44c9-9b08-978ca8f2574e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/120355973"}, "pid": "1642", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:17.868922 2023-07-08 08:16:17.86893 f2e4d733-73b5-4873-8106-e2d789df8b6e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1203576099"}, "pid": "1643", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:18.086187 2023-07-08 08:16:18.0862 6b4dcc6f-58c3-4504-beaa-b58c89e3d6c0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1204063087"}, "pid": "1645", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:18.205966 2023-07-08 08:16:18.205974 fbc5d23e-5b4e-45e5-b68e-f28e148b1a84 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1204462666"}, "pid": "1646", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:18.319672 2023-07-08 08:16:18.319679 c248afd6-facf-4e0e-9872-8e1b45fbfc61 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/120473801"}, "pid": "1647", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:18.416144 2023-07-08 08:16:18.416152 58cf573a-1875-4884-b70d-07fd10eee8fd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1204866740"}, "pid": "1648", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:18.513773 2023-07-08 08:16:18.51378 82e1280f-0aec-4c80-869a-195119c0fe37 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1204875901"}, "pid": "1649", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:18.620401 2023-07-08 08:16:18.62041 76c4b781-28ce-4dc3-a73e-4941308f19c7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/120543125"}, "pid": "1650", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:40.676578 2023-07-08 08:22:40.676589 b2d32e35-bc1f-4e05-9bf2-59aef75c4a44 {"pid": "5372", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243208294"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:18.856761 2023-07-08 08:16:18.85677 6e1ba65b-7aa6-494a-a34c-e60f61061364 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1205764232"}, "pid": "1652", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:18.967895 2023-07-08 08:16:18.967906 05258a09-92f8-45b8-81be-4f084c6eeb34 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1205836233"}, "pid": "1653", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:19.069277 2023-07-08 08:16:19.069286 8353624c-e687-4601-b354-ad12e9e81464 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/120596067"}, "pid": "1654", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:19.176046 2023-07-08 08:16:19.176054 04f5ed6c-80a5-4cf3-83c5-d32551b962ac {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1206199024"}, "pid": "1655", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:19.278135 2023-07-08 08:16:19.278144 a8e51b4b-7e5a-4f30-991d-4d4a2cd4ce62 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1206214643"}, "pid": "1656", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:19.399795 2023-07-08 08:16:19.399802 67c8295e-abb1-44ea-9207-1dab7142082e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1206297964"}, "pid": "1657", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:19.501459 2023-07-08 08:16:19.501467 32ff7ada-4cfa-46ed-ad1f-3f84b6519e56 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1206889632"}, "pid": "1658", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:19.610376 2023-07-08 08:16:19.61039 d550f4fb-5122-4873-97fe-31247c2e5e8e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1206932619"}, "pid": "1659", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:19.731023 2023-07-08 08:16:19.731033 0f1a7ebd-ea9e-4d15-aec3-d8b4c50c44c7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/120704463"}, "pid": "1660", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:19.836338 2023-07-08 08:16:19.836347 ab206e0c-13a0-4d56-bb49-ca9386301821 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1207293849"}, "pid": "1661", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:17.366761 2023-07-08 10:30:51.416498 23c7da01-5e37-47fe-a483-8e4b48fdaab4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/120268081X"}, "pid": "1638", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11157949339865092339"} 2 -2023-07-08 08:16:19.959424 2023-07-08 08:16:19.959438 14d55bd2-4296-49b9-9074-507c96de9a4c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1207338478"}, "pid": "1662", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:20.067937 2023-07-08 08:16:20.067945 96065461-f96c-4d47-bf0f-6f5ec35f8b56 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1207445045"}, "pid": "1663", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:20.174657 2023-07-08 08:16:20.174666 a1e3e97d-31d6-4d67-904c-2ea10b353cf2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/120824261X"}, "pid": "1664", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:20.276969 2023-07-08 08:16:20.276981 19edba3f-4887-44ab-98bc-32131586235f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1208406337"}, "pid": "1665", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:20.373694 2023-07-08 08:16:20.373702 df5aa0ac-51e8-4007-9cff-7a27862f9efd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1208648632"}, "pid": "1666", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:20.470621 2023-07-08 08:16:20.470628 d89b09ab-be40-4baf-ba36-3051a8f86a13 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1208728474"}, "pid": "1667", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:20.574951 2023-07-08 08:16:20.57496 7dc5242a-601f-4a66-b5ef-e2056935f8c5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1208923765"}, "pid": "1668", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:20.68549 2023-07-08 08:16:20.685503 3e086b54-06d5-4739-9929-05c82ccfd881 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1209087162"}, "pid": "1669", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:20.9183 2023-07-08 08:16:20.918307 ac469ecd-f0f0-4b72-a23f-8792fb0332ee {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1209584417"}, "pid": "1671", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:21.024679 2023-07-08 08:16:21.024691 d0a8f01c-80a7-4511-b7e2-13403e4fb4ad {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1209711753"}, "pid": "1672", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:21.13473 2023-07-08 08:16:21.134738 c28cb522-9569-4c99-b404-5c9b1b980976 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1209907445"}, "pid": "1673", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:21.244674 2023-07-08 08:16:21.244684 83736718-e799-40d6-90e5-46d5652b35d5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1209954184"}, "pid": "1674", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:21.361438 2023-07-08 08:16:21.361447 40a16783-f5a4-4e40-b57c-c114c4d91ad2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1209976218"}, "pid": "1675", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:21.456943 2023-07-08 08:16:21.456951 2a89f9e8-5b38-4c95-8d58-7d24255003ed {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/121017206"}, "pid": "1676", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:21.559319 2023-07-08 08:16:21.559331 1d9225e8-7801-4845-9c2a-a017650857c1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/121042413"}, "pid": "1677", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:21.66473 2023-07-08 08:16:21.664738 e91de31e-265d-4321-9511-b77be261162c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/121068439"}, "pid": "1678", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:21.771987 2023-07-08 08:16:21.772002 431d39c1-2ec8-444d-a872-a22566d4cd15 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1210872188"}, "pid": "1679", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:21.905067 2023-07-08 08:16:21.905078 5cddaf79-f684-484e-a87d-6a388566f44a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1210955601"}, "pid": "1680", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:22.035848 2023-07-08 08:16:22.03586 1d3bbea9-f400-4f3c-8c31-3bc8773e820e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1210962721"}, "pid": "1681", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:22.148917 2023-07-08 08:16:22.148924 51a9d568-76db-4ea3-a228-b26e018ba214 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1211035360"}, "pid": "1682", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:22.402699 2023-07-08 08:16:22.402707 bea5dc23-36f2-4b91-8302-a3f2370b95ee {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/121163393"}, "pid": "1684", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:22.535141 2023-07-08 08:16:22.535152 b69042a7-ac6d-415c-ae34-737b00bfb63a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1211685918"}, "pid": "1685", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:22.664097 2023-07-08 08:16:22.664108 7012aa78-ed4a-4d04-b8d1-1f60975d9092 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1211707628"}, "pid": "1686", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:22.787247 2023-07-08 08:16:22.787255 a09d4514-82a6-45c5-8a3f-3b7a4eb70141 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1211767892"}, "pid": "1687", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:23.112471 2023-07-08 08:16:23.112486 6a2827c0-a061-441e-9bc9-68bbc22cc433 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1212074939"}, "pid": "1689", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:23.230748 2023-07-08 08:16:23.230756 bc9a9f3f-e8b4-42f8-85c1-a19847191658 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1212533003"}, "pid": "1690", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:23.330969 2023-07-08 08:16:23.330974 5a729213-4ee2-4e69-ac0f-53445c434cce {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1212537750"}, "pid": "1691", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:23.400693 2023-07-08 08:16:23.400696 62e02815-e607-4f7a-bda1-f1570ded7910 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/121259927"}, "pid": "1692", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:20.819397 2023-07-08 10:27:21.461146 e18eddf4-870a-4ac9-bfed-84453507537c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/120917661"}, "pid": "1670", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10689034"} 2 -2023-07-08 08:16:23.475576 2023-07-08 10:29:57.955834 d14f6679-8624-4cdf-ae4b-94f1c592ffef {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1212602552"}, "pid": "1693", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1104159337529413150005"} 2 -2023-07-08 08:16:22.277336 2023-07-08 10:31:27.890033 7c99a756-91f6-4fa1-9a24-467febc16582 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1211576035"}, "pid": "1683", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1124159156314812180000"} 2 -2023-07-08 08:16:23.544136 2023-07-08 08:16:23.544139 cdfe30d6-c0ca-47a6-8290-a2905705e4c5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1213248760"}, "pid": "1694", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:23.614402 2023-07-08 08:16:23.614405 b30db8ed-39f3-4fef-ad44-42524af967f4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1213263360"}, "pid": "1695", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:23.709157 2023-07-08 08:16:23.709166 f1d385b3-6076-462b-af96-3e0feab5e84f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1213396700"}, "pid": "1696", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:23.797609 2023-07-08 08:16:23.797618 156adc4a-f1e3-4805-bba6-27ab9c1c3b3c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1213491738"}, "pid": "1697", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:23.894227 2023-07-08 08:16:23.894239 254e0337-8db3-4e80-b8e9-331acd16846a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/121376621"}, "pid": "1698", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:23.998574 2023-07-08 08:16:23.998585 0a641239-c260-47e0-8653-3fe1080e9fa7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/121432467"}, "pid": "1699", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:24.101422 2023-07-08 08:16:24.10143 41ac45ca-76bd-45a8-a09d-1c3249c17f32 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/121455637"}, "pid": "1700", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:24.200205 2023-07-08 08:16:24.200212 f68b9f85-9f3d-4362-a0c0-976ffbe14689 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1215224869"}, "pid": "1701", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:24.280648 2023-07-08 08:16:24.280651 85956728-53be-42bf-b21a-f2004e3247da {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1215239556"}, "pid": "1702", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:24.394807 2023-07-08 08:16:24.394812 fa2604a0-4936-49b0-ba91-b1ae55c2ebdb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/121552756"}, "pid": "1703", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:24.479029 2023-07-08 08:16:24.479033 6e248d2d-70ef-4977-bd05-45c95622fb94 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1215719418"}, "pid": "1704", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:24.573082 2023-07-08 08:16:24.573091 f093041f-9cd2-4d41-89d5-090c1548ff1c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1216057184"}, "pid": "1705", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:40.782797 2023-07-08 08:22:40.782807 108be8be-3e59-4529-9b3f-a8ce7f9f8097 {"pid": "5373", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243209983"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:24.764589 2023-07-08 08:16:24.764594 6d98f82c-a4be-43d5-9442-0ef012cc9228 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/12167410X"}, "pid": "1707", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:24.870945 2023-07-08 08:16:24.870953 7ee66c32-4e33-4ee8-a087-be28aba8b4ad {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1217064974"}, "pid": "1708", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:40.880832 2023-07-08 08:22:40.880845 0f3f4fa9-08dd-482e-95d9-c188cc07c191 {"pid": "5374", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243266413"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:25.084267 2023-07-08 08:16:25.084275 2272388b-9c89-4287-813f-e5396d4a8e93 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/12172249X"}, "pid": "1710", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:25.174869 2023-07-08 08:16:25.174879 b2c2c718-37c7-4769-ba9b-f85b7629416f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/12173692X"}, "pid": "1711", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:25.265972 2023-07-08 08:16:25.265976 78153f9f-9953-451a-b979-4995b24e1da9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1218087730"}, "pid": "1712", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:25.371452 2023-07-08 08:16:25.371461 e8e252a4-bc09-4657-8019-cb91c88116e8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1218379219"}, "pid": "1713", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:25.46041 2023-07-08 08:16:25.460421 347cf8c4-b55e-475d-8632-775e6606e975 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1218472189"}, "pid": "1714", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:25.554554 2023-07-08 08:16:25.554563 98a4f625-cf53-481e-a8a0-b57546df23ca {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/121855775"}, "pid": "1715", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:25.76112 2023-07-08 08:16:25.761128 9ea1d93a-8e25-478e-8188-37a5c0ec1f48 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1218605995"}, "pid": "1717", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:25.868305 2023-07-08 08:16:25.868312 fc7c4e04-ebde-4d4b-8d0d-a431eeded3f1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1218696680"}, "pid": "1718", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:25.97053 2023-07-08 08:16:25.970538 a9e6cd2f-bec8-4816-b917-eed44584f554 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1219001767"}, "pid": "1719", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:26.063323 2023-07-08 08:16:26.06333 a83a8d1a-e28d-4737-9d73-d5308b917000 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1219020982"}, "pid": "1720", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:26.164041 2023-07-08 08:16:26.164052 176d572e-9b40-4a1b-87a1-a14544fdfae9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/121953823X"}, "pid": "1721", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:26.260287 2023-07-08 08:16:26.260295 f6c63122-57e6-4611-9c62-9f3d7ff22803 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1219543527"}, "pid": "1722", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:26.356937 2023-07-08 08:16:26.356945 99d933d2-a704-4073-8384-47189fdb8bbc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/121978338"}, "pid": "1723", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:26.446452 2023-07-08 08:16:26.44646 e26c2d2e-f410-4c2d-8470-abac02fc5e04 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1219884790"}, "pid": "1724", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:26.533681 2023-07-08 08:16:26.53369 8df4a935-f855-46d2-85e1-7184a7aebc0d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1219946478"}, "pid": "1725", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:26.628494 2023-07-08 08:16:26.628499 34c57c7f-1196-4701-9be5-208893dd2989 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1220523410"}, "pid": "1726", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:26.729719 2023-07-08 08:16:26.729726 49c44205-bfd8-411e-a2aa-225107cc770a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1220778273"}, "pid": "1727", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:26.809584 2023-07-08 08:16:26.809587 0280c704-fc15-42a2-99a5-2a66061cb411 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1221205536"}, "pid": "1728", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:26.912409 2023-07-08 08:16:26.912416 74477787-c28d-4250-ac5d-fa47eb45384c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1221416952"}, "pid": "1729", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:26.998112 2023-07-08 08:16:26.998122 0e3fe92f-c8dd-4aaf-8b48-d068e4ebfcbc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1221561332"}, "pid": "1730", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:27.097999 2023-07-08 08:16:27.098003 83eb2539-1bba-46cd-ad88-f8f746235959 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1221637401"}, "pid": "1731", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:27.195753 2023-07-08 08:16:27.195762 3655fec2-0eed-4c79-8f09-607930132212 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1221643304"}, "pid": "1732", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:27.27559 2023-07-08 08:16:27.275594 c5a4b19b-4c48-4241-8ef6-b265184145ba {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1221680293"}, "pid": "1733", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:27.373029 2023-07-08 08:16:27.373036 dc466eab-2850-4f58-a6b9-2e182297a5e2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1221818635"}, "pid": "1734", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:27.678371 2023-07-08 08:16:27.678379 331a5a20-cec3-454f-a43d-ea4916dd6f53 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1222466716"}, "pid": "1737", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:27.861676 2023-07-08 08:16:27.861683 03661017-85f2-4200-8544-e96f09b7c2a7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/122307364"}, "pid": "1739", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:27.95617 2023-07-08 08:16:27.956179 07018812-32f7-427d-94f3-e9c744dbc127 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1223515273"}, "pid": "1740", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:28.044195 2023-07-08 08:16:28.044203 8ff23f0c-3861-4f0e-be36-1e178354607b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1223549372"}, "pid": "1741", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:28.132964 2023-07-08 08:16:28.132966 bc146f5c-6230-434e-97fd-c30ced2e264c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/122397274"}, "pid": "1742", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:28.223811 2023-07-08 08:16:28.22382 c7547693-2ae9-4dfa-ad43-2275f61ee28e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/122416600"}, "pid": "1743", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:28.310836 2023-07-08 08:16:28.310839 8ecff682-a3ae-462f-9d32-a50f388470a6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1224690672"}, "pid": "1744", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:28.400703 2023-07-08 08:16:28.400712 40c576df-289f-4651-a6b5-8776fe3f8a4c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1225165792"}, "pid": "1745", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:28.488544 2023-07-08 08:16:28.488553 db03a662-c9b7-42ce-accf-254d808f15d6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1225314704"}, "pid": "1746", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:28.584936 2023-07-08 08:16:28.584944 1f3097b3-24ba-475e-81d5-ac3747a6c4b7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1225318955"}, "pid": "1747", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:28.677744 2023-07-08 08:16:28.677748 65ed9d7b-6894-45f9-bd07-ad057195969f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1225369967"}, "pid": "1748", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:28.771498 2023-07-08 08:16:28.771501 70e04151-e13e-4f10-9c89-1cf0bbf5f018 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1225371562"}, "pid": "1749", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:28.862291 2023-07-08 08:16:28.862299 60e388cd-4a7d-4e6c-b96f-d2f489046a90 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/122546016"}, "pid": "1750", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:28.963413 2023-07-08 08:16:28.963418 edaa0a21-52a0-45b7-81cf-1088cd4c88c8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1225499038"}, "pid": "1751", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:29.197736 2023-07-08 08:16:29.197739 cdbd221f-22a1-498e-9587-60cdb81b0c27 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1225880351"}, "pid": "1753", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:29.280545 2023-07-08 08:16:29.280548 d9e51a7f-4d50-43c8-a859-1aac559899c1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1226168973"}, "pid": "1754", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:29.385092 2023-07-08 08:16:29.3851 4a88bc84-bac0-4d07-96c5-e1ac39a5a01d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1226343031"}, "pid": "1755", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:29.480908 2023-07-08 08:16:29.480916 399de98f-28d2-4672-a53b-601da9a5bc7d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/122765052"}, "pid": "1756", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:29.579844 2023-07-08 08:16:29.579852 eae48232-1658-4ca5-889f-33a92ec7bd81 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/122787900"}, "pid": "1757", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:27.582976 2023-07-08 10:27:40.350534 1fa8f7fb-7cef-4d85-9b56-287edae73af3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/122244958"}, "pid": "1736", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10723189"} 2 -2023-07-08 08:16:27.774102 2023-07-08 10:28:56.952597 e8617977-f31b-4f44-a875-242f84b1659a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1222736330"}, "pid": "1738", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1090160728549710380000"} 2 -2023-07-08 08:16:27.477153 2023-07-08 10:30:54.074266 626050e5-94e1-4f15-af2f-13edbf97e637 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/122214459X"}, "pid": "1735", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11160665137003362451"} 2 -2023-07-08 08:16:29.67353 2023-07-08 08:16:29.673541 a4664523-5fa8-43a6-aee8-3ca1ff6c7dcf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1228480222"}, "pid": "1758", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:40.988786 2023-07-08 08:22:40.988793 ffa5d224-3b44-475b-9190-4291152d6b2c {"pid": "5375", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243279795"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:29.879628 2023-07-08 08:16:29.879637 c57aebcf-840e-4dd0-84f0-3bf7d0b7af70 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1228854041"}, "pid": "1760", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:29.980652 2023-07-08 08:16:29.98066 4c713ade-591a-4b83-b538-0cc498f208da {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1228866244"}, "pid": "1761", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:30.083222 2023-07-08 08:16:30.083229 3d5cd4c9-ff63-4a5e-9b25-a0ebdc2eb9a0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/122919455X"}, "pid": "1762", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:30.198265 2023-07-08 08:16:30.198274 5e0d2a4f-fbf9-4589-ad53-050ac6fd2b14 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/122987870X"}, "pid": "1763", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:30.283059 2023-07-08 08:16:30.283068 50d9e1c3-f199-443e-baf0-025d9f2d5f31 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1230449663"}, "pid": "1764", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:30.382168 2023-07-08 08:16:30.382178 91b3ad90-0695-4e7b-9f79-67cbc84ffbb7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1230581847"}, "pid": "1765", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:30.480708 2023-07-08 08:16:30.480719 3cce9828-2ed1-4551-b859-74ecd35f3bdd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1230588736"}, "pid": "1766", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:30.583526 2023-07-08 08:16:30.583536 89b23f9c-50d3-41c6-9c8a-e987648ec616 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1230589619"}, "pid": "1767", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:41.101946 2023-07-08 08:22:41.101955 a2197628-989c-4ec4-8d4a-c76690c0850e {"pid": "5376", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243300131"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:30.804189 2023-07-08 08:16:30.804197 855154c4-0a92-4c64-90f2-599a380fc9be {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1231012749"}, "pid": "1769", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:30.919056 2023-07-08 08:16:30.919063 5263b88e-ad6d-4968-a894-378f2f6526b2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1231084758"}, "pid": "1770", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:31.009838 2023-07-08 08:16:31.00985 66bcc3fa-0598-415d-9cb0-62848cdbed34 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/123171770X"}, "pid": "1771", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:31.109017 2023-07-08 08:16:31.109026 e2e6600f-7746-40bc-a4d8-c1eed5ffb1bb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1232328308"}, "pid": "1772", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:31.210042 2023-07-08 08:16:31.210049 78dfe562-8a9c-4b62-a524-6991a4f1cbf2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1232437530"}, "pid": "1773", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:31.283437 2023-07-08 08:16:31.28344 9d016c78-cced-49dc-9558-2450edb3dcb8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1232542377"}, "pid": "1774", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:31.3744 2023-07-08 08:16:31.374409 d3a868f3-3050-4393-8de6-82b1811f13b0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/123269021X"}, "pid": "1775", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:31.473127 2023-07-08 08:16:31.473138 23d3cd38-b76b-4f51-b3ec-32cb98375529 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/123314348"}, "pid": "1776", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:31.562611 2023-07-08 08:16:31.562621 4b5c0f2c-f598-47d3-a36b-ebcccb0d1c28 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1233766767"}, "pid": "1777", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:31.657776 2023-07-08 08:16:31.657804 c9fbf929-55dd-40e5-84d1-7657e475065f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1233797700"}, "pid": "1778", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:31.748602 2023-07-08 08:16:31.748614 4650423d-6ac2-47bd-a8d2-0dc9b744082f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1234157845"}, "pid": "1779", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:31.827385 2023-07-08 08:16:31.827389 8ea34146-a262-4b88-9e12-da01c67a135a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1234276402"}, "pid": "1780", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:31.912764 2023-07-08 08:16:31.912772 4560f3b3-8d40-4126-bfb0-ffa63d039ec9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1234416433"}, "pid": "1781", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:32.010526 2023-07-08 08:16:32.010541 0e8a23cc-037e-408e-af72-00860865a113 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/123444578"}, "pid": "1782", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:32.213707 2023-07-08 08:16:32.213715 1f5816e1-00c2-42a7-beca-3e3436232bda {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1235035301"}, "pid": "1784", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:32.32464 2023-07-08 08:16:32.324648 e32ac356-ff77-4b6b-bce9-befdefacb332 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/123508193"}, "pid": "1785", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:32.423969 2023-07-08 08:16:32.423978 391f4a6b-8382-4bb0-90f6-3f5b40c57ca5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/123522315"}, "pid": "1786", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:32.518664 2023-07-08 08:16:32.518671 7563f7f4-bae3-4bfb-9fb1-683950590b88 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1235577384"}, "pid": "1787", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:32.608097 2023-07-08 08:16:32.608105 4685bfa4-4309-4f4c-826b-9b08386d0184 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/123572817X"}, "pid": "1788", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:32.699824 2023-07-08 08:16:32.699833 679fd129-f79e-42d3-aaa0-fc4bf140c694 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1235805395"}, "pid": "1789", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:32.783425 2023-07-08 08:16:32.783428 c215a416-8c70-4639-9f45-e86b0da13c83 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1235864014"}, "pid": "1790", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:32.864007 2023-07-08 08:16:32.864016 24a4eca2-d353-481e-aa92-0a6f16b70004 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1236151380"}, "pid": "1791", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:32.960895 2023-07-08 08:16:32.960901 d971fa83-0f0d-4595-88bb-caeb7fadb119 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/123617286"}, "pid": "1792", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:33.065703 2023-07-08 08:16:33.06571 f48c2d8d-500c-498d-b2a0-05a3f37a16ab {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/123644372"}, "pid": "1793", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:33.157997 2023-07-08 08:16:33.158005 09c5eeb5-c73f-4681-94d1-0a38c24c9959 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1236649613"}, "pid": "1794", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:33.248919 2023-07-08 08:16:33.248928 f961448d-6437-4638-b668-86649a370181 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/123686719X"}, "pid": "1795", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:33.323365 2023-07-08 08:16:33.323374 6a2d6aff-7b13-4307-a337-647d4655c1b5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1236915291"}, "pid": "1796", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:33.409115 2023-07-08 08:16:33.409118 89a12576-2cdb-4416-8f9c-4322c33e303d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1237119766"}, "pid": "1797", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:33.479868 2023-07-08 08:16:33.479871 d9b11981-393d-41dc-b21f-ca7a14218921 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/123718376"}, "pid": "1798", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:33.58282 2023-07-08 08:16:33.582829 b8998fdd-ee47-4d17-bc4c-c58eb46e788b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1237506611"}, "pid": "1799", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:33.677346 2023-07-08 08:16:33.677355 4daecff0-3e7e-422e-b6e8-b207dfe9ce95 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/123768624"}, "pid": "1800", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:33.778579 2023-07-08 08:16:33.778582 460fddc6-8c8d-4019-b2b7-fbd585943b02 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1238037844"}, "pid": "1801", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:33.905219 2023-07-08 08:16:33.905226 e903c3c1-9f2e-4d82-a0b7-e4d38c34fc96 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1238039944"}, "pid": "1802", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:34.00904 2023-07-08 08:16:34.009049 195daca3-0a96-40f9-94f6-9b99cd044900 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/123806305"}, "pid": "1803", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:34.10315 2023-07-08 08:16:34.103159 b5e4f672-1ae3-4943-8d93-2a7918c3af53 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1238167659"}, "pid": "1804", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:34.200237 2023-07-08 08:16:34.200247 74779d24-46fd-4eec-87be-34a932d4158a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1239691408"}, "pid": "1805", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:34.283089 2023-07-08 08:16:34.283091 464c7f15-5972-4b14-a5cd-5fd85a15e21c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1240158319"}, "pid": "1806", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:34.368781 2023-07-08 08:16:34.368788 5777b7e1-5819-4059-bc71-370c183c4847 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124025064"}, "pid": "1807", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:41.195747 2023-07-08 08:22:41.195756 315700c7-a935-4e4a-b1b0-e854da09c0a8 {"pid": "5377", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243306032"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:34.571467 2023-07-08 08:16:34.571476 ffc2ed7b-aea7-4e6d-9387-6ae8a7ef9648 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1240323492"}, "pid": "1809", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:34.672178 2023-07-08 08:16:34.672186 65d4e186-b90c-4c5f-a14f-b0ae46549483 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1240334206"}, "pid": "1810", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:34.763627 2023-07-08 08:16:34.763635 055b9507-cc31-4e56-8db2-ca285ca5562f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124045790"}, "pid": "1811", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:34.854104 2023-07-08 08:16:34.854111 7945994f-b15f-4295-94c8-b260af99fd7d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1240634323"}, "pid": "1812", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:34.945234 2023-07-08 08:16:34.945243 fbccbba8-29fe-4218-86f4-900605082d3e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1240922175"}, "pid": "1813", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:35.034777 2023-07-08 08:16:35.034787 c5b73955-d828-4315-ace4-6dbbdab928ce {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1241124949"}, "pid": "1814", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:35.228865 2023-07-08 08:16:35.228873 d4847787-61fa-406e-969e-61bcde02046c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1241191921"}, "pid": "1816", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:35.328068 2023-07-08 08:16:35.328077 9a0966d6-e58c-4e58-99de-a1e9c074b19d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1241199418"}, "pid": "1817", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:35.509888 2023-07-08 08:16:35.509892 f671f52b-881a-4a69-9540-0e183bea7291 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124250076"}, "pid": "1819", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:35.599659 2023-07-08 08:16:35.599668 5e22bc4a-c600-4f09-b16e-fa5d93101aa1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124257070"}, "pid": "1820", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:35.702244 2023-07-08 08:16:35.702252 b5b873b1-50cc-4412-bde1-581ea3cd2687 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124257151"}, "pid": "1821", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:35.138841 2023-07-08 10:31:01.104832 63af02ff-7d44-4d04-9b51-ab666e5b1301 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1241190755"}, "pid": "1815", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11163208292107231907"} 2 -2023-07-08 08:16:35.793557 2023-07-08 08:16:35.793561 53b975c3-c33d-4857-8c46-11d6e9b4bff3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124268512X"}, "pid": "1822", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:41.317581 2023-07-08 08:22:41.317593 da0512af-0b9e-4cc3-96f4-4b85ea8b9e41 {"pid": "5378", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243308442"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:35.984751 2023-07-08 08:16:35.98476 ab9b3a3c-56a3-45a2-8f2d-e102dafe505a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124284299"}, "pid": "1824", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:36.088815 2023-07-08 08:16:36.088824 d94d2db5-d71f-44ea-b851-d5409a4434de {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1243013648"}, "pid": "1825", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:36.202777 2023-07-08 08:16:36.202785 5bebde7d-69ce-4687-8d7b-48d4a6971046 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124311861X"}, "pid": "1826", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:36.283519 2023-07-08 08:16:36.283522 764566a9-7b24-4c4c-9626-dd51160ea0e9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124326764X"}, "pid": "1827", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:36.476733 2023-07-08 08:16:36.476742 8c5dc341-9332-42da-9e26-995842d0a779 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1243856505"}, "pid": "1829", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:36.56519 2023-07-08 08:16:36.565194 1f4d2d24-3a91-4696-a60b-cc5eda0d5f86 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/12438644X"}, "pid": "1830", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:36.660664 2023-07-08 08:16:36.660671 b9e829e7-d408-413b-9dd8-29ff86a30299 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1243882166"}, "pid": "1831", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:36.756314 2023-07-08 08:16:36.756322 6a03445e-0872-4b66-8293-31ffa33728ee {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1243929332"}, "pid": "1832", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:36.845015 2023-07-08 08:16:36.845024 fe8e47ab-2460-4b99-adfb-91e0f945aa2e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1243929464"}, "pid": "1833", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:36.949607 2023-07-08 08:16:36.949615 0ad3e5fb-34bb-4e79-b296-1c9a45fba22b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1243973145"}, "pid": "1834", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:37.040789 2023-07-08 08:16:37.040797 57ec4008-f314-4d3e-ace8-2366e8dfaa53 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1244179469"}, "pid": "1835", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:37.130199 2023-07-08 08:16:37.130201 dadf03f3-671c-4c99-9869-de7aacda8ec6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124423256"}, "pid": "1836", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:37.229055 2023-07-08 08:16:37.229063 ebb2784a-22cb-432b-8ac8-3d9a2a6d805a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124457711"}, "pid": "1837", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:37.431875 2023-07-08 08:16:37.431884 2859a91e-9e2f-46b4-a884-adef7c6212fa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1245339214"}, "pid": "1839", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:37.532322 2023-07-08 08:16:37.532331 9604a7a7-d115-4e93-931b-16bb39247764 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1245458760"}, "pid": "1840", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:37.734041 2023-07-08 08:16:37.734052 5f3856e2-62d4-49f0-b25c-43606a15ce53 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124603106"}, "pid": "1842", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:37.816902 2023-07-08 08:16:37.816906 87411f80-fd9d-42db-91ac-70afd25ae122 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1246058642"}, "pid": "1843", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:37.901192 2023-07-08 08:16:37.901202 5dafd597-56aa-4b7c-8cfe-ceaed6e2fa97 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124686583"}, "pid": "1844", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:38.000503 2023-07-08 08:16:38.000511 65ffc658-2bdb-44a8-88c9-6a6bc66d747a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124691560X"}, "pid": "1845", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:41.419 2023-07-08 08:22:41.419009 f9b98424-0257-4a12-87a5-b5f9791b72ea {"pid": "5379", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243327463"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:38.212741 2023-07-08 08:16:38.212748 35f37e38-22f4-4cc5-a8d4-afb302a95d00 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124717764"}, "pid": "1847", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:38.299467 2023-07-08 08:16:38.299469 0cbaf168-7739-4619-938f-50432c2bf1d0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1247579077"}, "pid": "1848", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:38.394443 2023-07-08 08:16:38.394452 f43ebd75-dbc5-4216-ac78-f6307b0560d3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1248663217"}, "pid": "1849", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:38.480523 2023-07-08 08:16:38.480532 c1177f9d-857f-4235-920e-e74040b7be4e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1248783271"}, "pid": "1850", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:38.572628 2023-07-08 08:16:38.572636 f2bd4c32-fbb0-43e1-ab51-096c182e88c6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124922511"}, "pid": "1851", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:38.660341 2023-07-08 08:16:38.660346 746b3c61-eeaa-4c70-89ca-481f10950523 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1249513502"}, "pid": "1852", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:38.732572 2023-07-08 08:16:38.732575 461f0c96-0089-4f01-bee3-e57292c8d122 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124962793"}, "pid": "1853", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:36.384052 2023-07-08 10:28:00.101694 48fb92a6-6d56-45a2-8b02-06f527170a44 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124384196"}, "pid": "1828", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10778134"} 2 -2023-07-08 08:16:38.808338 2023-07-08 08:16:38.808341 dc3f6f81-c307-42ae-80af-7591df5313fd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124969178"}, "pid": "1854", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:38.909111 2023-07-08 08:16:38.909121 f7424824-096c-4d46-9fd8-ea13e6e2941d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1249776090"}, "pid": "1855", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:39.006243 2023-07-08 08:16:39.006252 2531268c-b983-4958-a5e8-740d119defe3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1249789494"}, "pid": "1856", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:39.095425 2023-07-08 08:16:39.095436 576cbf78-0852-4570-b2f9-9407470f83df {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1249795362"}, "pid": "1857", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:39.189319 2023-07-08 08:16:39.189329 321392e7-54b8-4114-8a33-f53dd657af16 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124995136"}, "pid": "1858", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:39.276128 2023-07-08 08:16:39.276139 540a0acb-fde8-4eb6-84b7-e5f9be98b9a6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/125013981"}, "pid": "1859", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:39.369967 2023-07-08 08:16:39.369992 23ab9883-ecca-453f-a831-6b8fd3d6c2d4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1250280184"}, "pid": "1860", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:39.572702 2023-07-08 08:16:39.572711 24dc7b64-5c3d-44b0-9d84-3c9694501d14 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/125077683X"}, "pid": "1862", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:39.660854 2023-07-08 08:16:39.660861 4588ad75-8bf3-4c85-b6e1-3cebd0eee80d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/125085685X"}, "pid": "1863", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:41.523002 2023-07-08 08:22:41.523015 804759f9-1972-4fa3-a011-474a31de1cb9 {"pid": "5380", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243330715"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:39.846206 2023-07-08 08:16:39.846217 61e2bc87-5b69-490f-b6fa-5b40f6a3721c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/125158103X"}, "pid": "1865", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:39.929599 2023-07-08 08:16:39.929609 f6994ece-40ea-4f8e-a0ca-a45497ba8803 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/125190419X"}, "pid": "1866", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:40.026443 2023-07-08 08:16:40.026451 c5fc6972-698b-49d7-8f4f-abb567ca9e9b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/125224524"}, "pid": "1867", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:40.224158 2023-07-08 08:16:40.224168 b71b6f28-03e1-4297-85e2-f3052abb5fb7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1253016488"}, "pid": "1869", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:40.307834 2023-07-08 08:16:40.307837 bc7077cf-cbde-4ffd-925a-09461d801abb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1253049424"}, "pid": "1870", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:40.403016 2023-07-08 08:16:40.403025 ff2e634f-4313-407a-ad33-78f4a37e3be6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1253317887"}, "pid": "1871", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:40.49933 2023-07-08 08:16:40.499342 f0096a9e-44e8-451a-88c3-d94c0c364915 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/12533396X"}, "pid": "1872", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:40.596886 2023-07-08 08:16:40.596895 73b37c4a-a6a1-4b45-9389-5ba6ccb9dd6a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1253803536"}, "pid": "1873", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:40.701758 2023-07-08 08:16:40.701766 ffba8aba-df94-4cd8-bd27-1b13297d3dd2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1253954518"}, "pid": "1874", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:40.786821 2023-07-08 08:16:40.786831 022e1cfa-7023-4bde-af9b-7c6e0a9c1bf7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/125407466X"}, "pid": "1875", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:40.879586 2023-07-08 08:16:40.879598 505ab3b2-cd6a-45bb-9d42-e302f3e1578a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/125448554"}, "pid": "1876", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:40.982738 2023-07-08 08:16:40.982747 1b13a7f7-be26-48f5-8a4d-91e69842609d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1254513582"}, "pid": "1877", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:41.084789 2023-07-08 08:16:41.084797 626b79fc-9d4a-4e42-b8cd-3fb3e210bd21 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1254551980"}, "pid": "1878", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:41.172125 2023-07-08 08:16:41.172132 e62ac63d-64b0-4de7-b92d-3a09a5f9241e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1254730559"}, "pid": "1879", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:41.250887 2023-07-08 08:16:41.25089 512e06d4-76c6-4561-a784-60691b082b0d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/125522732X"}, "pid": "1880", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:41.343452 2023-07-08 08:16:41.343462 167acdd2-e74b-4193-b7e4-ae34f170cfe0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1255253967"}, "pid": "1881", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:41.442032 2023-07-08 08:16:41.442037 5722456f-3e6c-483e-8759-7aa39c8211d1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/125525869"}, "pid": "1882", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:41.52273 2023-07-08 08:16:41.522738 6c7be9c5-5168-4f4f-bd5e-930697e1b1c9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/125527683"}, "pid": "1883", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:41.611271 2023-07-08 08:16:41.611279 b28abbd7-217c-480f-8289-b24359bd78fe {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1256298980"}, "pid": "1884", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:41.715254 2023-07-08 08:16:41.715263 d6312a79-c52b-4bd0-94a8-50ba9753db3a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1256639974"}, "pid": "1885", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:40.134146 2023-07-08 10:27:01.723636 a3032522-f88a-4142-b1e6-cdd2355aaa54 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1252339607"}, "pid": "1868", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106164604131737910001"} 2 -2023-07-08 08:16:41.798903 2023-07-08 08:16:41.798906 7ae1fcd7-c827-4c91-be30-0b6700d86c0f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/125675658X"}, "pid": "1886", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:41.884606 2023-07-08 08:16:41.884614 29009290-6a98-4540-a8ab-efbfc91aa79d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1257269704"}, "pid": "1887", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:41.978962 2023-07-08 08:16:41.978971 07a93e10-840f-4134-a7d1-9161eccbb494 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1257796259"}, "pid": "1888", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:42.07166 2023-07-08 08:16:42.071668 798dc587-b6d0-446e-9818-722c5d299a63 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1257837826"}, "pid": "1889", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:42.17307 2023-07-08 08:16:42.173074 be619353-893d-4c56-b77b-5aea2a2bb2d8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1257931253"}, "pid": "1890", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:42.258065 2023-07-08 08:16:42.258068 77b15fb7-e22c-428a-b385-1719a703bf32 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1258741997"}, "pid": "1891", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:42.460717 2023-07-08 08:16:42.460728 a01be55d-e37f-468c-ae84-d78e226b54b5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1258808196"}, "pid": "1893", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:42.541739 2023-07-08 08:16:42.541748 dabc0df6-0daf-4c48-bd47-2431de1d33b7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/125881336X"}, "pid": "1894", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:42.636587 2023-07-08 08:16:42.636595 31044aab-836d-4c79-a38b-7c5103c0188b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/125904568"}, "pid": "1895", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:42.725475 2023-07-08 08:16:42.725486 a1f0274e-3a19-49cf-b2a1-fb2b7c2ea98e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1259359026"}, "pid": "1896", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:42.805352 2023-07-08 08:16:42.805356 dbc77cea-5550-4ab1-b165-c445f3d89023 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1259480860"}, "pid": "1897", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:42.897046 2023-07-08 08:16:42.897055 0b89fc75-d254-410f-9801-72b76ce1de8c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1259906620"}, "pid": "1898", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:42.994287 2023-07-08 08:16:42.994296 ca776c30-a98e-45cf-b81a-849bab89a0c9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1260402541"}, "pid": "1899", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:43.089676 2023-07-08 08:16:43.089685 9550d162-314c-4801-a4e7-f474626e9656 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/126093148"}, "pid": "1900", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:43.190406 2023-07-08 08:16:43.190414 afc21599-6186-4890-b68b-b7520132caf9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/126098190"}, "pid": "1901", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:43.280015 2023-07-08 08:16:43.280019 a02f5d17-237c-463a-b0ab-529be9fb2135 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1260994147"}, "pid": "1902", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:43.479361 2023-07-08 08:16:43.479369 f4905dba-660a-4d1b-953f-d99f045f7fcf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1261260147"}, "pid": "1904", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:43.577689 2023-07-08 08:16:43.577702 a7d06a75-aac8-459c-81c5-e6dd2e4eea94 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1261307364"}, "pid": "1905", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:43.670771 2023-07-08 08:16:43.670779 ca8a300f-1d57-434d-80c0-ec869d99ab7f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/126144060"}, "pid": "1906", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:43.968559 2023-07-08 08:16:43.968568 2f34c084-a16d-473e-ae06-4363abfc1f68 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1262106486"}, "pid": "1909", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:44.062811 2023-07-08 08:16:44.062824 a0933eb3-d871-4de9-a44d-8a14ab53fb83 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/126221804"}, "pid": "1910", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:44.156178 2023-07-08 08:16:44.156186 425d2aad-a91d-4dd4-bbc0-2f03c668e2e8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1262395305"}, "pid": "1911", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:44.243643 2023-07-08 08:16:44.243647 44ebce7e-6ab4-4bdd-a4b5-805b16b8be2e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1262411238"}, "pid": "1912", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:44.317858 2023-07-08 08:16:44.31786 b9358459-2b44-41a9-9969-d8002db79f73 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1262517281"}, "pid": "1913", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:44.405996 2023-07-08 08:16:44.406005 6f3d86ca-e8eb-478e-b512-90f2c8c9c677 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/12625639X"}, "pid": "1914", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:43.870381 2023-07-08 10:24:46.090735 19d2ea44-a972-4590-99ad-1e332bb509af {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1261941136"}, "pid": "1908", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101542437"} 2 -2023-07-08 08:16:43.383418 2023-07-08 10:24:52.943632 4da39d12-17a4-4022-9086-071ceeabb357 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1261058550"}, "pid": "1903", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10165705874348931300"} 2 -2023-07-08 08:16:44.500717 2023-07-08 10:24:53.381127 b4061ddc-921d-44e2-b25e-cef44e132579 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1262993016"}, "pid": "1915", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10165866673564000760"} 2 -2023-07-08 08:16:43.777433 2023-07-08 10:31:03.920383 06f1bb81-ebc5-498e-b832-9f8acea05837 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1261766156"}, "pid": "1907", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11165747247653932888"} 2 -2023-07-08 08:16:44.606464 2023-07-08 10:31:04.443645 93cc40fd-9d67-428c-9a9f-c066ab98dc3e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1263532683"}, "pid": "1916", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11166001530675020687"} 2 -2023-07-08 08:16:44.693931 2023-07-08 08:16:44.693941 689c84a0-07c9-4411-9b44-5bdceaf9e541 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1264061994"}, "pid": "1917", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:44.888206 2023-07-08 08:16:44.888214 ff2681a7-c3e0-4b66-ae38-6c30adf87022 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/126431582"}, "pid": "1919", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:44.975051 2023-07-08 08:16:44.97506 04b24585-eedb-40c2-80c3-4eb412681e59 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1265029369"}, "pid": "1920", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:45.0781 2023-07-08 08:16:45.078109 3570493c-12d9-4bfb-a1cb-727af8fbe780 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/126590249"}, "pid": "1921", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:45.181376 2023-07-08 08:16:45.181389 e70e7b6b-8822-4b2d-8ba5-cd064896aec6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/126645590"}, "pid": "1922", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:45.273338 2023-07-08 08:16:45.273347 868a0906-f9a8-4080-90a9-2758526cef4d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/126652902"}, "pid": "1923", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:45.356989 2023-07-08 08:16:45.356997 77022bb7-aa35-4095-b5f9-2a6d536f9dee {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/127018360"}, "pid": "1924", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:45.447057 2023-07-08 08:16:45.447065 2be4290d-8afd-4c59-a79d-23a01ce80ef4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/127202048"}, "pid": "1925", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:41.616715 2023-07-08 08:22:41.616724 109c2294-eb40-4567-b421-fd7d22a3eca9 {"pid": "5381", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243363796"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:41.711184 2023-07-08 08:22:41.711191 71f7aff7-7eb9-488f-901c-e1b15b71d58c {"pid": "5382", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243370261"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:45.834541 2023-07-08 08:16:45.834544 9748785a-176c-4143-b2d6-2d326ec18f99 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/127398538"}, "pid": "1929", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:46.019318 2023-07-08 08:16:46.019323 46764580-3907-4475-95d6-de2875ccd27c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/127496491"}, "pid": "1931", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:46.110593 2023-07-08 08:16:46.110602 8de4366c-0542-446f-8cef-e12dc8ef744e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/127707255"}, "pid": "1932", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:46.207229 2023-07-08 08:16:46.207238 b7dcbcab-c329-4254-b02a-1f8418861eb0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/12771961X"}, "pid": "1933", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:46.294723 2023-07-08 08:16:46.294727 548afab9-90b8-408b-a664-0c8fb696d7a0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/127772553"}, "pid": "1934", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:46.37361 2023-07-08 08:16:46.373619 22cf495b-f8b1-4d1a-986e-8cc522f871a8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/127836160"}, "pid": "1935", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:46.468095 2023-07-08 08:16:46.468104 92b78ff7-378a-4d34-aabd-1e357da8dbf4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/127845925"}, "pid": "1936", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:46.576779 2023-07-08 08:16:46.576787 0282f418-24db-47b1-b376-394cc6bbc490 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/12786959X"}, "pid": "1937", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:46.681503 2023-07-08 08:16:46.681512 4cd63f0c-8e7e-4de3-b098-f94007685150 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/128016736"}, "pid": "1938", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:46.775291 2023-07-08 08:16:46.775301 217bda29-3121-494e-9384-1f5d3d427b65 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/128190094"}, "pid": "1939", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:46.871238 2023-07-08 08:16:46.871248 6624bf52-b963-446a-b9b5-b57eea34d49a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/128202432"}, "pid": "1940", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:47.161353 2023-07-08 08:16:47.161364 d29e3515-d16a-41a2-a5a0-586c47e4da92 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/128320419"}, "pid": "1943", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:47.332748 2023-07-08 08:16:47.332751 ac404134-5160-407b-91b6-20a8e8067af4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/128346280"}, "pid": "1945", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:47.428609 2023-07-08 08:16:47.428617 44333551-94c7-45ff-9ca3-b0a89026bd1c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/128387602"}, "pid": "1946", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:47.518759 2023-07-08 08:16:47.518766 e7965110-b427-418b-882b-de1c84b0bd59 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/128430613"}, "pid": "1947", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:47.6085 2023-07-08 08:16:47.608503 92e719a1-e05f-4ce8-a392-58fe3da1b6e2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/128437979"}, "pid": "1948", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:44.794156 2023-07-08 10:27:51.193236 0d4d7005-69aa-4e2a-aed0-b8646e974807 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1264067003"}, "pid": "1918", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107550472"} 2 -2023-07-08 08:16:46.968922 2023-07-08 10:26:45.812678 3ed2d1b8-d40c-4e78-bcfa-48be56680394 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/128244224"}, "pid": "1941", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1058867"} 2 -2023-07-08 08:16:47.067009 2023-07-08 10:26:48.31732 1228fb67-71b1-483e-9f8f-e4ee76287299 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/128275022"}, "pid": "1942", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1059758"} 2 -2023-07-08 08:16:45.931462 2023-07-08 10:28:38.53462 30ebdf96-31dd-4943-8304-1cb78295e632 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/12742508X"}, "pid": "1930", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10868125"} 2 -2023-07-08 08:16:47.704179 2023-07-08 08:16:47.704188 c38ebf4e-5e9a-474a-8c2a-61020fec1b35 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/12849915X"}, "pid": "1949", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:47.895742 2023-07-08 08:16:47.895751 477f17d0-f8e5-412e-8041-29afada8110a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/128568763"}, "pid": "1951", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:48.103669 2023-07-08 08:16:48.103674 88ed2d9b-4828-4a39-b23f-bef6d24316ec {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/128669993"}, "pid": "1953", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:48.196248 2023-07-08 08:16:48.196255 b950efbb-de01-445a-867e-cc6cad5fe467 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/128807954"}, "pid": "1954", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:48.404902 2023-07-08 08:16:48.40491 1d886fcf-f59d-4e8d-92a3-b58cc00a2bff {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/128887249"}, "pid": "1956", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:48.494431 2023-07-08 08:16:48.494444 7d12930f-42bf-4ed2-88ce-80c701f3976c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/128948426"}, "pid": "1957", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:48.585162 2023-07-08 08:16:48.585171 78a47902-f25c-4503-956e-41d8ee08c4bd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/128970790"}, "pid": "1958", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:48.772406 2023-07-08 08:16:48.77241 854d0abb-653a-4c21-8fb0-f20e3959747e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/129020893"}, "pid": "1960", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:48.9401 2023-07-08 08:16:48.940108 ff1e7a72-2732-4d48-aae5-560fc347ec17 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/129097632"}, "pid": "1962", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:49.024406 2023-07-08 08:16:49.024416 4e428b1e-a289-4584-b0ed-45abc1ec0a81 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/129154105"}, "pid": "1963", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:49.11024 2023-07-08 08:16:49.110243 97f261ab-f176-4e4a-a529-8d63f88a3664 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/129227838"}, "pid": "1964", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:49.202348 2023-07-08 08:16:49.202356 567dc81d-70b5-4cd2-850c-dee57ed98a6f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/129446904"}, "pid": "1965", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:49.287598 2023-07-08 08:16:49.287608 6dcb12f1-b803-4e47-bab2-6dc98d7a9763 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/129475351"}, "pid": "1966", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:49.369059 2023-07-08 08:16:49.369067 66d6b0cb-092d-4b94-9274-b5bf7e6f8f63 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/129504971"}, "pid": "1967", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:41.810926 2023-07-08 08:22:41.810934 ff185eb4-6bfe-4cf1-a902-f1445795f518 {"pid": "5383", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243382731"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:49.694013 2023-07-08 08:16:49.694023 ee64517f-322d-4d0d-b2ac-3fa96f28f11d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/129639109"}, "pid": "1970", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:49.794048 2023-07-08 08:16:49.794057 db16ec52-639b-4e89-b045-0dce83edd496 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/129685828"}, "pid": "1971", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:49.893658 2023-07-08 08:16:49.893667 b6302957-a325-4f6a-8841-d5470337d8d4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/129727482"}, "pid": "1972", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:49.986082 2023-07-08 08:16:49.986085 be46d437-a202-4630-9082-6dc7057881f2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/129803332"}, "pid": "1973", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:41.915811 2023-07-08 08:22:41.915815 679a7e3d-5692-4d7e-8dae-09206a90f7c9 {"pid": "5384", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243407998"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:50.285639 2023-07-08 08:16:50.28565 59a2a34f-ad7d-43e9-84b6-59cd0702e6c0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/129855863"}, "pid": "1976", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:50.371878 2023-07-08 08:16:50.371887 6df26589-c0a2-48ca-b978-f093a445148a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/12988782X"}, "pid": "1977", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:50.470521 2023-07-08 08:16:50.470528 5a97e92c-53e7-4ed7-a7a8-db5b947171bf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/129888796"}, "pid": "1978", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:50.560377 2023-07-08 08:16:50.560386 5f15b43b-ebd8-411b-b3fe-00b625db2792 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/130000388"}, "pid": "1979", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:50.654152 2023-07-08 08:16:50.654159 e905a86b-6aee-48c6-9c0e-03a6007b9860 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/130016985"}, "pid": "1980", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:47.810726 2023-07-08 10:28:56.040472 e5ce8583-11a5-45bf-97c9-ffdee6adecfc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/128564520"}, "pid": "1950", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10901433"} 2 -2023-07-08 08:16:48.002069 2023-07-08 10:28:57.400241 6986ac90-1673-4e97-ac3b-1b580ad93122 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/128630450"}, "pid": "1952", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10903215"} 2 -2023-07-08 08:16:48.302728 2023-07-08 10:28:58.240061 a9d8fe07-925c-4aef-b99b-bef42ef04468 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/128852690"}, "pid": "1955", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10909183"} 2 -2023-07-08 08:16:48.686021 2023-07-08 10:29:00.11633 1ca38bde-e582-4fc1-8c22-bda39b559378 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/128979852"}, "pid": "1959", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10912576"} 2 -2023-07-08 08:16:48.854427 2023-07-08 10:29:00.578532 4c1f81b7-a4b9-4c67-a708-32e5d44e26a5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/129048267"}, "pid": "1961", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10914358"} 2 -2023-07-08 08:16:50.74273 2023-07-08 08:16:50.742741 8765c8db-18c1-41e4-9d91-dac1d34fc223 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/130020001"}, "pid": "1981", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:50.893396 2023-07-08 08:16:50.8934 073c166a-3cc9-48d8-a2ab-23e9fa5b3345 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/130141623"}, "pid": "1983", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:50.986781 2023-07-08 08:16:50.986793 4b8598f0-eea6-4bf5-adc8-cd15fe350a2a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/13022622X"}, "pid": "1984", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:51.074692 2023-07-08 08:16:51.0747 24522127-fb8b-4378-853d-4740047443b5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/130250473"}, "pid": "1985", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:51.175394 2023-07-08 08:16:51.175398 730ccfb8-14a0-4fc3-94ff-9a348e494b95 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/130374520"}, "pid": "1986", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:51.252051 2023-07-08 08:16:51.252054 7c6e2bb5-e032-4168-8dac-d4f2e6141c69 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/130502642"}, "pid": "1987", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:51.363521 2023-07-08 08:16:51.363532 ffbfd0bc-de58-44f6-9200-3d976ac89e70 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/130582883"}, "pid": "1988", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:42.00432 2023-07-08 08:22:42.004327 36caf194-91a3-460b-8289-27ec92753ced {"pid": "5385", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243428421"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:51.663569 2023-07-08 08:16:51.66358 5e4429a9-0c6e-45cd-ba4e-35949f120b18 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/130860557"}, "pid": "1991", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:51.764719 2023-07-08 08:16:51.764736 fb7d2486-549a-400c-b25c-a03bb4584fce {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/131284703"}, "pid": "1992", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:51.847343 2023-07-08 08:16:51.847347 c95f7aa6-2f2b-4df7-b498-b965e683cf19 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/131443704"}, "pid": "1993", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:51.921952 2023-07-08 08:16:51.921955 1087a9a1-6d7b-4657-87e9-6fd47bd0739d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/131564692"}, "pid": "1994", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:52.006642 2023-07-08 08:16:52.006653 9b10d680-feff-4ad8-94f1-6109d1575d38 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/131638653"}, "pid": "1995", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:52.126631 2023-07-08 08:16:52.126641 b2d98b43-8626-473b-b8bf-31f8f0c8ea14 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/131675907"}, "pid": "1996", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:52.313426 2023-07-08 08:16:52.31343 0bd64078-fe16-4105-b091-7df8f303f446 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/13178918X"}, "pid": "1998", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:52.40074 2023-07-08 08:16:52.400744 af857fdc-80aa-4d66-9571-2ff845e80ea0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/131792350"}, "pid": "1999", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:52.493387 2023-07-08 08:16:52.493392 491111ed-6072-4569-88d5-46e270a04544 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/13184248X"}, "pid": "2000", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:52.578303 2023-07-08 08:16:52.578308 0609a594-6372-4a1f-807d-13cb690b63ad {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/131856839"}, "pid": "2001", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:52.660385 2023-07-08 08:16:52.660393 ca55eed2-68c1-45d8-a033-c399283a26aa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/131896873"}, "pid": "2002", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:42.102343 2023-07-08 08:22:42.102352 d611d579-7d22-4c98-8def-e18371ac670d {"pid": "5386", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243433913"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:52.857083 2023-07-08 08:16:52.857087 bf762e62-dd6e-4875-85e9-4ce8ce1e7f54 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/131930915"}, "pid": "2004", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:52.945592 2023-07-08 08:16:52.9456 d120b7dd-27cd-4593-b07c-762ee1f9b1a6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/132104784"}, "pid": "2005", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:53.056237 2023-07-08 08:16:53.056241 bf94c298-575d-4fc2-a1c1-f271f7a42a72 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/132266741"}, "pid": "2006", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:53.328316 2023-07-08 08:16:53.328319 53306c82-9b54-4733-a069-9452e0e15143 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/13246781X"}, "pid": "2009", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:53.416284 2023-07-08 08:16:53.416295 cfc4085d-6766-45c8-9a19-42b928ab588b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/132490846"}, "pid": "2010", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:53.543368 2023-07-08 08:16:53.543378 d775cbfe-c493-4de1-b8e4-0b4ee1bf142d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/132526808"}, "pid": "2011", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:53.659593 2023-07-08 08:16:53.659602 fa57659c-6304-4e13-8b69-53a593a79dd5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/132658941"}, "pid": "2012", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:53.156721 2023-07-08 10:24:01.918118 38620024-8e60-40ae-8f7d-c1430ec5e8f6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/132327147"}, "pid": "2007", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100680895"} 2 -2023-07-08 08:16:52.231539 2023-07-08 10:29:26.972104 fae03d06-761c-49b6-9b27-ef115246b65a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/131709550"}, "pid": "1997", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10986188"} 2 -2023-07-08 08:16:53.248594 2023-07-08 10:29:31.941965 170f5ea2-191d-460f-9b92-1a768ae0fd5a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/132373963"}, "pid": "2008", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11005130"} 2 -2023-07-08 08:16:53.779391 2023-07-08 08:16:53.779401 e2888279-812a-4a67-891e-19e440a5a2a4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/132695405"}, "pid": "2013", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:53.895973 2023-07-08 08:16:53.895983 3d51edf8-bd59-4394-ac4c-3060928a32cd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/132790912"}, "pid": "2014", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:54.119945 2023-07-08 08:16:54.119952 c46f8c8d-a69a-4e3f-b867-626d9dd02ce6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/132828944"}, "pid": "2016", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:54.218463 2023-07-08 08:16:54.218473 58ab770a-0939-48dd-a0ee-d4950a5e8be1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/132832860"}, "pid": "2017", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:54.330722 2023-07-08 08:16:54.330734 8e2aaad8-da84-44a7-b141-d43e5f96a400 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/132857022"}, "pid": "2018", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:54.44258 2023-07-08 08:16:54.442593 5249ab09-519e-4768-9982-68533a88a015 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/132989719"}, "pid": "2019", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:54.564348 2023-07-08 08:16:54.564363 60f7ec8e-4eff-4f54-8c4b-0f0ea133218b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/13299495X"}, "pid": "2020", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:54.692447 2023-07-08 08:16:54.692456 ae0b95a0-e473-49d6-a09a-c87cdf23b2fb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/132999102"}, "pid": "2021", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:54.924294 2023-07-08 08:16:54.924305 e727d692-35c5-4845-b491-15aab4650d6e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/133056996"}, "pid": "2023", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:55.046347 2023-07-08 08:16:55.04636 86d50978-bea6-46e2-89fe-5c211cfb65ce {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/13308325X"}, "pid": "2024", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:55.182339 2023-07-08 08:16:55.182361 fb1f18d7-a328-48b7-b9f0-f8bf3230e3c0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/133092852"}, "pid": "2025", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:55.298336 2023-07-08 08:16:55.298346 bcc1dc8d-ecae-4ea1-b1fa-6ad7144cdda3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/133104567"}, "pid": "2026", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:55.536048 2023-07-08 08:16:55.536056 c5030fff-9945-41cc-ba42-85e894c75680 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/133130886"}, "pid": "2028", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:55.649615 2023-07-08 08:16:55.649626 47245f07-b4ca-4b4d-82d4-2a083916ac4f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/133245187"}, "pid": "2029", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:55.753046 2023-07-08 08:16:55.753055 997ddeb2-95bf-416d-80fc-8e4859029ad2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/133255344"}, "pid": "2030", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:55.850491 2023-07-08 08:16:55.850501 988dbb0f-6d5a-4b3b-b6fb-4f8041429885 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/133273407"}, "pid": "2031", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:42.226689 2023-07-08 08:22:42.226699 160f7066-81ba-4577-bce7-f4509518c7db {"pid": "5387", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243488785"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:56.070816 2023-07-08 08:16:56.070824 5e790e72-af28-4c01-bde1-dafe96377f14 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/133396223"}, "pid": "2033", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:56.180696 2023-07-08 08:16:56.180705 85a996e8-00de-46e0-a984-920989ae1f84 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/133487342"}, "pid": "2034", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:56.290511 2023-07-08 08:16:56.290529 eaa7c733-8fe9-435e-8d77-df271f769226 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/13350171X"}, "pid": "2035", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:56.411185 2023-07-08 08:16:56.411192 053f88a2-b07a-4bb2-8f03-b4de2de31c35 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/133685624"}, "pid": "2036", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:56.518472 2023-07-08 08:16:56.51848 807143ba-ea41-46ab-98a4-407a02c04e39 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/133715671"}, "pid": "2037", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:56.622502 2023-07-08 08:16:56.622511 3779d995-67a1-4867-91ad-816a3454e80e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/133748294"}, "pid": "2038", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:56.757821 2023-07-08 08:16:56.757836 2aa8a96c-2745-4c14-84b0-477247e909d5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134089316"}, "pid": "2039", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:56.877756 2023-07-08 08:16:56.87777 9f22a74f-ac0b-4ebe-9bdb-f0a3e1ff0d03 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134092147"}, "pid": "2040", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:56.990735 2023-07-08 08:16:56.990742 569f90cf-7d30-4458-9d05-41c5294b4f0a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/13416492X"}, "pid": "2041", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:57.100633 2023-07-08 08:16:57.100644 8631231d-0591-448e-89a2-b43a0ece5fc5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134204603"}, "pid": "2042", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:57.213463 2023-07-08 08:16:57.213475 975608e7-50a2-43e9-aef2-5be14b6fcfdd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134311086"}, "pid": "2043", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:54.011838 2023-07-08 10:29:49.240081 68237895-7ec3-4013-8951-29ca60a5de67 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/132825198"}, "pid": "2015", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11017939"} 2 -2023-07-08 08:16:54.813204 2023-07-08 10:29:51.9641 d8f3cf5f-4934-45fd-ac3c-0c2c0cb7f891 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/133046567"}, "pid": "2022", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11024292"} 2 -2023-07-08 08:16:55.41444 2023-07-08 10:29:52.814237 a32d1c5c-fdc5-4ef1-b190-250eeea9c614 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/13311189X"}, "pid": "2027", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11025958"} 2 -2023-07-08 08:16:57.455448 2023-07-08 08:16:57.45546 bfabcbf7-5e8e-42fd-93b8-2edf83e6e6eb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134449002"}, "pid": "2045", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:57.580637 2023-07-08 08:16:57.580643 51c8d6a1-f52e-459d-a861-ddd67409b454 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134454901"}, "pid": "2046", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:57.698389 2023-07-08 08:16:57.698397 bf9d3e92-416b-4446-bddb-bcd57e416734 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134538099"}, "pid": "2047", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:57.81764 2023-07-08 08:16:57.817648 80930603-3773-4c7d-a598-e30191f810bf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134574079"}, "pid": "2048", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:57.925498 2023-07-08 08:16:57.925508 06ec9a5a-cf71-4113-aa6c-f74c94dc768d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134583337"}, "pid": "2049", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:58.029839 2023-07-08 08:16:58.029855 c2af2816-ead4-453b-9ab5-8732eff8316e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134588959"}, "pid": "2050", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:58.140478 2023-07-08 08:16:58.140491 bb6984ac-76d9-489c-9893-2505658e9767 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134590481"}, "pid": "2051", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:58.255682 2023-07-08 08:16:58.255691 bef4a14a-cdde-4abd-9ad1-2614947952c1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134591968"}, "pid": "2052", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:58.366502 2023-07-08 08:16:58.366512 89a10ce5-9eeb-464b-98b2-f24d0564a268 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134623487"}, "pid": "2053", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:58.47825 2023-07-08 08:16:58.478264 c489a25f-56ce-41db-9561-31fdb4bd7531 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134678478"}, "pid": "2054", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:58.621876 2023-07-08 08:16:58.621886 73552458-4cb1-4c4a-8193-8218e3363bfe {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/13468706X"}, "pid": "2055", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:58.747089 2023-07-08 08:16:58.747098 7733effe-8638-48df-8560-b0f78abe5b3f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134694031"}, "pid": "2056", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:58.863568 2023-07-08 08:16:58.86358 07dbe48d-120e-41ef-8ed1-cfc7c96128be {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134802993"}, "pid": "2057", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:58.983963 2023-07-08 08:16:58.983971 a57eb03f-9d02-4b48-bc93-d7f154527164 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134805313"}, "pid": "2058", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:59.095772 2023-07-08 08:16:59.095785 8eaceb54-17f2-453f-a830-198ff13ea093 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134872223"}, "pid": "2059", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:59.232821 2023-07-08 08:16:59.232833 60b925fb-a5b0-4195-8df9-6a0b2bdd3d30 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/135012864"}, "pid": "2060", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:59.355125 2023-07-08 08:16:59.355135 aa1be06b-14c9-4cb8-b530-6b84130b2fdf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/135074800"}, "pid": "2061", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:59.470407 2023-07-08 08:16:59.470419 b41c6199-fb17-4eb9-b511-a60d6c6552bc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/135203449"}, "pid": "2062", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:59.602 2023-07-08 08:16:59.602012 4a77f8b7-d367-4508-becf-0c3ff1382d6a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/135270103"}, "pid": "2063", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:59.718335 2023-07-08 08:16:59.718347 f268c9a4-98e2-4fef-bfa9-a1a76558f81e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/135270413"}, "pid": "2064", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:59.836645 2023-07-08 08:16:59.836658 ae845de0-a36f-43fd-96da-d9f147616ff3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/135374774"}, "pid": "2065", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:59.951597 2023-07-08 08:16:59.951607 de116639-cc77-4460-a176-df83a070400f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/135580986"}, "pid": "2066", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:00.064557 2023-07-08 08:17:00.06457 ca737680-b860-4490-b5f3-5ee69378a173 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/135626498"}, "pid": "2067", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:00.177867 2023-07-08 08:17:00.177875 c96551d3-6498-4c17-84d6-566633cefd14 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/135627095"}, "pid": "2068", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:00.299122 2023-07-08 08:17:00.299132 4a77ac1c-b473-4bbc-9f38-6fd37fc0ed12 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/135661234"}, "pid": "2069", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:00.530659 2023-07-08 08:17:00.530668 629117b4-99ad-4d51-b810-aa856240d5b3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/13579000X"}, "pid": "2071", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:00.644467 2023-07-08 08:17:00.644481 95195508-ad2c-47f1-95a7-64c24e9d55c3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/135835321"}, "pid": "2072", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:00.761279 2023-07-08 08:17:00.761287 507f1b41-be06-45f9-93a8-da3603647ebb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/135958245"}, "pid": "2073", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:42.351292 2023-07-08 08:22:42.3513 15189592-9380-45d8-aeef-60f6cefd2c00 {"pid": "5388", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/24348951X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:01.041799 2023-07-08 08:17:01.041815 45eba4a1-d80f-49bf-a606-364852909879 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/135973368"}, "pid": "2075", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:01.150774 2023-07-08 08:17:01.150784 ee8aebe9-446f-4dee-9df2-a0a8af90ede7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/136148808"}, "pid": "2076", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:01.275595 2023-07-08 08:17:01.275634 136b519c-6d3d-4646-a03b-45fd40e99985 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/136205275"}, "pid": "2077", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:42.449125 2023-07-08 08:22:42.449133 ac864b55-10e2-4e0f-96d9-01e682b7d466 {"pid": "5389", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243512155"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:01.659268 2023-07-08 08:17:01.659283 3c2f49f3-edbd-4c40-87fb-af94ac6ad98d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/136999271"}, "pid": "2080", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:01.783133 2023-07-08 08:17:01.783137 181d4499-2070-47fd-9487-b096c6a7f9c2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/137111223"}, "pid": "2081", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:01.888729 2023-07-08 08:17:01.888738 abcdc656-0778-49ab-a177-f686b50c7603 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/137241348"}, "pid": "2082", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:02.007987 2023-07-08 08:17:02.008022 4cf1f1b4-1746-4654-ab6f-01f46b4c9286 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/137500750"}, "pid": "2083", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:02.132731 2023-07-08 08:17:02.132744 63bc4cf0-d98a-4cb9-88d4-dde78d9879f3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/138374732"}, "pid": "2084", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:02.263113 2023-07-08 08:17:02.263122 0fa206db-8e1b-4f34-8477-36ddb50fc591 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/138598010"}, "pid": "2085", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:02.647062 2023-07-08 08:17:02.647067 c99a190c-d5d7-43c2-a51c-5ba0e8e80852 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139120629"}, "pid": "2088", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:02.80137 2023-07-08 08:17:02.801374 6014f6d3-34ea-4270-b60b-2aaa04644a49 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139134816"}, "pid": "2090", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:02.885181 2023-07-08 08:17:02.885184 264efb84-9c52-473d-a5e0-718b085bb951 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139180060"}, "pid": "2091", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:02.95018 2023-07-08 08:17:02.950183 5d673b97-ca44-4058-9a82-bb1422d36970 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139196269"}, "pid": "2092", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:03.090186 2023-07-08 08:17:03.090189 9e3cad65-cf38-420e-8bb7-975e8f56298a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139284575"}, "pid": "2094", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:03.154832 2023-07-08 08:17:03.154835 fa9f514e-48ea-47e7-ab33-323c40b354b2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139289690"}, "pid": "2095", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:03.229137 2023-07-08 08:17:03.229141 4a751381-d8ee-4fee-9de4-ae1655b04494 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139310991"}, "pid": "2096", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:03.5987 2023-07-08 08:17:03.598703 77145721-a568-40ed-a45f-95561998e7e6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139361405"}, "pid": "2100", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:03.872248 2023-07-08 08:17:03.872252 734b9bb7-bfc6-4bff-b6ef-11cf868a1eb3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139418598"}, "pid": "2103", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:04.170484 2023-07-08 08:17:04.170493 e7d7f20b-149c-4c86-94b9-81a412070222 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/13943237X"}, "pid": "2106", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:04.258194 2023-07-08 08:17:04.258205 f3227cf3-dc23-45dd-b9c4-2af4faa0e915 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139503072"}, "pid": "2107", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:04.359709 2023-07-08 08:17:04.359721 154a198f-444e-443b-bf1f-ed022cd7fe7e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139512950"}, "pid": "2108", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:02.55087 2023-07-08 10:23:50.995218 af6cf94f-585a-48fd-a07c-6026fd361546 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139117091"}, "pid": "2087", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100423737"} 2 -2023-07-08 08:17:03.024313 2023-07-08 10:23:54.697947 0f6bfa3e-b210-482c-8667-025672cb7666 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139268456"}, "pid": "2093", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100556271"} 2 -2023-07-08 08:17:03.328328 2023-07-08 10:23:56.436655 6f851c1c-3b7f-42d2-a37a-d8ef973f4b99 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139317783"}, "pid": "2097", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100599094"} 2 -2023-07-08 08:17:02.413126 2023-07-08 10:28:11.790391 481e4293-39cd-44b9-b620-f2143606bea7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/13902185X"}, "pid": "2086", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/14577838X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107974698"} 4 -2023-07-08 08:17:03.982491 2023-07-08 10:24:23.674508 2ab121e0-7b44-4e9d-8c97-87d157bfe258 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139422102"}, "pid": "2104", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/162460163"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101164158"} 4 -2023-07-08 08:17:03.436428 2023-07-08 10:23:56.980812 f4ce17aa-c6fa-4b8f-b743-d438730dd9a2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139334114"}, "pid": "2098", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100613196"} 2 -2023-07-08 08:17:03.52913 2023-07-08 10:24:18.549868 82c29429-cae0-4d98-91cf-27f6bdf0a009 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139350101"}, "pid": "2099", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101100842"} 2 -2023-07-08 08:17:03.780056 2023-07-08 10:24:19.865901 5fb9e6d9-31f6-4386-8c6a-8ab7ed992a05 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139383050"}, "pid": "2102", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101129580"} 2 -2023-07-08 08:17:04.089457 2023-07-08 10:31:35.390562 99ee9a56-0fcf-481f-a114-fdda4dd1f475 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139422161"}, "pid": "2105", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003618794"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/050348736"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112779075"} 6 -2023-07-08 08:22:42.566241 2023-07-08 08:22:42.566251 ad35f73b-2121-49f6-9702-1885e821ee32 {"pid": "5390", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243530080"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:05.390381 2023-07-08 08:17:05.39039 1d9defe4-11ca-4a63-83d1-4c8e9aa5fa92 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139659382"}, "pid": "2118", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:05.475824 2023-07-08 08:17:05.475835 cf02992f-e7ae-41f6-bf42-26d527832e68 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139695125"}, "pid": "2119", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:05.657785 2023-07-08 08:17:05.657789 564cf9a3-92ed-4556-8f15-6b7f71b3ff66 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139733256"}, "pid": "2121", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:05.859791 2023-07-08 08:17:05.859799 a72ce6ad-66ba-4bc9-8c28-3fc971673a3f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139774807"}, "pid": "2123", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:06.129487 2023-07-08 08:17:06.129496 d902f39c-0ccf-43a8-8e5c-ced7dfb2806b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139822542"}, "pid": "2126", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:06.433155 2023-07-08 08:17:06.433163 9962c1d0-4a9d-4f82-a38b-9a4546206d9d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139879994"}, "pid": "2129", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:06.619269 2023-07-08 08:17:06.619272 c0364149-af3a-415f-ae0f-ca6373c17a03 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139894977"}, "pid": "2131", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:06.705469 2023-07-08 08:17:06.705477 700bc770-5d21-4be8-975d-38b5e88017f8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139925988"}, "pid": "2132", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:06.796621 2023-07-08 08:17:06.796634 618ec2d3-1ec2-4460-90ef-42bc2ca07419 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139939415"}, "pid": "2133", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:42.683295 2023-07-08 08:22:42.683305 7325d7c4-ef9a-4133-97a2-7c7df9396972 {"pid": "5391", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243540434"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:07.266755 2023-07-08 08:17:07.266763 31956810-be71-4367-9209-571bd6ec0aaf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/14006253X"}, "pid": "2138", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:04.462338 2023-07-08 10:24:27.502915 02b163dd-f095-41c8-bf99-5c28c8098583 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139535489"}, "pid": "2109", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101264445"} 2 -2023-07-08 08:17:06.343549 2023-07-08 10:25:27.882572 efa250c9-a9b7-4f51-931c-a065b443b893 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139856072"}, "pid": "2128", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/162154224"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102694940"} 4 -2023-07-08 08:17:05.579098 2023-07-08 10:25:23.943406 1191481a-464a-4fc3-a3a1-f24aa95850f0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/13971166X"}, "pid": "2120", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/256910200"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102567428"} 4 -2023-07-08 08:17:05.0868 2023-07-08 10:25:19.129204 a0c54bc9-6216-4b8a-8b47-1ff9df528871 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139649263"}, "pid": "2115", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102512527"} 2 -2023-07-08 08:17:04.660139 2023-07-08 10:24:29.585545 d450552e-0f14-4e50-ad48-581472f8b7c1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139546979"}, "pid": "2111", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101274741"} 2 -2023-07-08 08:17:04.768492 2023-07-08 10:24:30.373305 9e4e21ea-dbb7-4238-b242-2eee162477ec {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139612483"}, "pid": "2112", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101333943"} 2 -2023-07-08 08:17:04.986636 2023-07-08 10:24:34.709332 3e9d04d9-c7a1-40c5-9b1c-b00e3da459f6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139630147"}, "pid": "2114", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021514179"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/156335336"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101349261"} 6 -2023-07-08 08:17:05.202467 2023-07-08 10:25:20.173319 98f37c16-24e5-4d3c-9364-baedcd595167 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139654526"}, "pid": "2116", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102517153"} 2 -2023-07-08 08:17:05.3069 2023-07-08 10:25:20.616306 25b2f4ff-dfa0-49b3-9d40-1bfc6b303821 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139655395"}, "pid": "2117", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102517928"} 2 -2023-07-08 08:17:05.956251 2023-07-08 10:25:26.0125 43e7ab71-774d-4141-bcc0-04b374a33612 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139794204"}, "pid": "2124", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102640435"} 2 -2023-07-08 08:17:06.044256 2023-07-08 10:25:26.505025 0d6d35c6-7544-4a4b-8e4d-3b4a55d605e0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139796282"}, "pid": "2125", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102642217"} 2 -2023-07-08 08:17:06.207979 2023-07-08 10:25:26.944861 b01de9a2-1f73-4e58-8fd3-f5ee21890288 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/13983043X"}, "pid": "2127", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102672115"} 2 -2023-07-08 08:17:06.533473 2023-07-08 10:25:31.062999 6333b596-75e6-4c68-840c-5cb2a56e0620 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139889345"}, "pid": "2130", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102724360"} 2 -2023-07-08 08:17:06.894233 2023-07-08 10:25:48.448761 51c72ab3-c4b6-4c7b-9020-0e72f464e146 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139942920"}, "pid": "2134", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103267303"} 2 -2023-07-08 08:17:06.989188 2023-07-08 10:25:49.375265 0ca81994-43d6-4e24-b4c3-ee69ef45f654 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139952179"}, "pid": "2135", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103275278"} 2 -2023-07-08 08:17:07.166943 2023-07-08 10:25:50.732454 c0a6ada5-d6b1-4cc1-baca-a451ff5128e0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139974199"}, "pid": "2137", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103294484"} 2 -2023-07-08 08:17:07.472051 2023-07-08 08:17:07.472064 548ef97a-e474-45e2-8a79-a9741ce4d4ef {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140093427"}, "pid": "2140", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:42.78104 2023-07-08 08:22:42.781047 d4c66aa2-f250-4910-a597-fac2ab390a50 {"pid": "5392", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243554001"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:07.654975 2023-07-08 08:17:07.654978 20b468c3-0070-401d-8e6d-cc8968007049 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140132872"}, "pid": "2142", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:07.740636 2023-07-08 08:17:07.740643 c9d9a8ae-f7e6-419f-85fb-7493c2b8cce7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140169016"}, "pid": "2143", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:07.814568 2023-07-08 08:17:07.814571 49950e8f-c3ae-422b-9c3d-ba87987af996 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140234381"}, "pid": "2144", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:08.006675 2023-07-08 08:17:08.006685 fe72f950-ef58-4088-aab3-400bb14fc171 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140322140"}, "pid": "2146", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:08.202271 2023-07-08 08:17:08.202277 1ab4ae6f-8041-40e1-b7ed-709c4d26ef38 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140327126"}, "pid": "2148", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:08.40017 2023-07-08 08:17:08.40018 3a6a7ec5-d811-483e-8396-fd9b77b29f47 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140345884"}, "pid": "2150", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:08.572714 2023-07-08 08:17:08.572719 b480c4ec-e62e-4cef-9ce9-0086f0313951 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140419799"}, "pid": "2152", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:08.657874 2023-07-08 08:17:08.657877 f0ca9c52-fadf-4408-b928-07eff15db84a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/14043917X"}, "pid": "2153", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:08.749691 2023-07-08 08:17:08.7497 d9d9e50d-df9d-4803-8d9d-cf34b6c15277 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140458123"}, "pid": "2154", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:08.935136 2023-07-08 08:17:08.935144 b946a764-96b1-4aee-bd94-d2fd5f3ca153 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140490841"}, "pid": "2156", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:09.113194 2023-07-08 08:17:09.113201 0ae091c3-5e72-4e39-af38-6ee660ea6477 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140540830"}, "pid": "2158", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:09.193853 2023-07-08 08:17:09.193856 3194ad2f-9011-4884-bddc-4dd1db3173d8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140595716"}, "pid": "2159", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:09.294791 2023-07-08 08:17:09.294806 99de9464-970a-430a-a252-eb29fffcafef {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140605304"}, "pid": "2160", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:09.371765 2023-07-08 08:17:09.371768 93270d55-daef-41f8-bea3-c49f58cda9d7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140655387"}, "pid": "2161", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:09.440605 2023-07-08 08:17:09.440608 e2216d3f-fbe6-4562-b507-b89ff867160c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140665927"}, "pid": "2162", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:09.580877 2023-07-08 08:17:09.58088 b6450683-45a4-4257-8f75-e9c2cdc74089 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140703063"}, "pid": "2164", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:09.647957 2023-07-08 08:17:09.64796 84e44d44-bbc3-46ec-8a43-3fc93a47dc09 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140707921"}, "pid": "2165", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:09.893215 2023-07-08 08:17:09.893223 594e024c-14df-4ec2-9e99-5ad0595a8650 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140781498"}, "pid": "2168", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:09.983453 2023-07-08 08:17:09.983462 ff8be52b-eeac-475a-b596-e841aab02084 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140791434"}, "pid": "2169", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:42.893578 2023-07-08 08:22:42.893589 f75bb3e7-c64c-46f6-8cbd-152263b339b2 {"pid": "5393", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/24355933X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:07.912028 2023-07-08 10:26:05.04342 6b799f45-3d5f-4eae-bb36-cdac4a49a1bd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140306412"}, "pid": "2145", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103836707"} 2 -2023-07-08 08:17:08.114072 2023-07-08 10:26:05.55444 36af49c1-9489-4c4c-b77e-928d6f422f74 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140322213"}, "pid": "2147", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103850512"} 2 -2023-07-08 08:17:08.302112 2023-07-08 10:26:07.682594 494d2ec3-0190-432c-a7af-5def5e45987c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140338683"}, "pid": "2149", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103865219"} 2 -2023-07-08 08:17:08.491778 2023-07-08 10:27:28.296109 3639b17b-014e-4575-ac39-79b4a6d938e0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140416919"}, "pid": "2151", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107118733"} 2 -2023-07-08 08:17:08.848744 2023-07-08 10:27:34.596649 d77c98cf-b430-4d48-98a1-c352a61be474 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/14046090X"}, "pid": "2155", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107157046"} 2 -2023-07-08 08:17:09.017376 2023-07-08 10:27:38.134227 ffa8036a-cfbf-4918-b5d6-72a3a5ad6a00 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140499024"}, "pid": "2157", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107190337"} 2 -2023-07-08 08:17:09.723651 2023-07-08 10:27:56.710365 7047b6e8-c085-4c61-bd8a-3110749dc455 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140723269"}, "pid": "2166", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107719042"} 2 -2023-07-08 08:17:09.816808 2023-07-08 10:27:57.176601 21b0dae9-707a-47ad-8a4a-22d2314e7338 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140724656"}, "pid": "2167", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107720202"} 2 -2023-07-08 08:17:10.192632 2023-07-08 08:17:10.192637 fa658905-483f-452a-a156-8e5e79d0a6c4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140818197"}, "pid": "2171", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:10.615172 2023-07-08 08:17:10.615177 1fd3d02d-c2fb-46ad-9209-19c8a65d3646 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140890335"}, "pid": "2175", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:10.928503 2023-07-08 08:17:10.928506 57afcdf1-5690-445c-8457-74254df3a4ae {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140948317"}, "pid": "2178", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:11.015513 2023-07-08 08:17:11.01552 82796e83-2b36-438b-bc66-ac44db03d5bb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140952012"}, "pid": "2179", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:11.106915 2023-07-08 08:17:11.106924 9e73c914-5235-44fb-8722-1e1381dc3f21 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140952985"}, "pid": "2180", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:11.194362 2023-07-08 08:17:11.194372 154ff009-516c-4920-96d6-9cc2e04eab41 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140960597"}, "pid": "2181", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:11.288816 2023-07-08 08:17:11.288826 e47e401e-074c-4972-96e0-859f508ce11d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140974571"}, "pid": "2182", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:11.377736 2023-07-08 08:17:11.377741 68fc5dd7-afe5-492e-8e3a-0967908bdf04 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/14098643X"}, "pid": "2183", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:11.462043 2023-07-08 08:17:11.462051 0764ddc6-b487-47c4-91b7-3c4b539d06a8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140996524"}, "pid": "2184", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:11.542148 2023-07-08 08:17:11.542153 b8c160f7-28c1-4185-9f64-07e9e26206a5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141011491"}, "pid": "2185", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:11.617449 2023-07-08 08:17:11.617454 86bae233-df48-4880-ae18-8d6a5b09502d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141030771"}, "pid": "2186", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:11.710593 2023-07-08 08:17:11.7106 1861a55e-b8c9-4471-933b-62b5c53dfff6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141129271"}, "pid": "2187", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:11.802073 2023-07-08 08:17:11.802082 b07e0bc1-08a6-4d4e-81e6-0afb5b862903 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141136618"}, "pid": "2188", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:11.890323 2023-07-08 08:17:11.890333 3cad9b8b-c9c1-4e2d-87e2-bb019ef92786 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141153067"}, "pid": "2189", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:11.976169 2023-07-08 08:17:11.976177 c733face-39e0-4990-bdd9-af137d91049d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141169818"}, "pid": "2190", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:12.066639 2023-07-08 08:17:12.066649 16d9f740-d045-42cb-b634-873a570e6c80 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141195428"}, "pid": "2191", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:12.165801 2023-07-08 08:17:12.16581 ae8dc7db-3bf4-4bc0-8e99-3ba61dde1516 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141222042"}, "pid": "2192", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:12.28031 2023-07-08 08:17:12.280321 281ded88-1b08-4775-a507-e4ee120fb4b5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141231742"}, "pid": "2193", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:12.387789 2023-07-08 08:17:12.387792 4ee35b77-3b35-48f3-ab40-653ec974dbfa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141248408"}, "pid": "2194", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:12.487363 2023-07-08 08:17:12.487373 27bec754-7539-4cdd-bb64-b0a8d64d1652 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141327588"}, "pid": "2195", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:12.577191 2023-07-08 08:17:12.577194 ce59ad7a-5044-464e-b496-653dabfccba4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141339942"}, "pid": "2196", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:12.651692 2023-07-08 08:17:12.651703 e9beae6d-c394-4673-be8c-9d2b6652ca94 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141354240"}, "pid": "2197", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:12.742193 2023-07-08 08:17:12.742203 26830be3-1c98-4b70-ac3a-61224f636639 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141363193"}, "pid": "2198", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:12.819173 2023-07-08 08:17:12.819176 c015b9a4-8c91-41db-8053-2874409281e3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141373741"}, "pid": "2199", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:12.895878 2023-07-08 08:17:12.895886 5caa5385-0fb5-46b3-8668-5baddccd1266 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141395362"}, "pid": "2200", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:12.973713 2023-07-08 08:17:12.973719 083d4295-103e-40be-ace8-37383b4ea439 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141454679"}, "pid": "2201", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:10.302651 2023-07-08 10:28:01.698263 7523fdae-034c-4521-a59b-7d90de69a1e0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140835822"}, "pid": "2172", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107816161"} 2 -2023-07-08 08:17:10.409757 2023-07-08 10:28:02.241494 c8defd8e-984b-4c77-8a41-c3622caffa28 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140848363"}, "pid": "2173", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107826737"} 2 -2023-07-08 08:17:10.522847 2023-07-08 10:28:02.704507 05a5fc3f-0ae7-4001-be16-3954c621ad15 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140849963"}, "pid": "2174", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107828195"} 2 -2023-07-08 08:17:10.721213 2023-07-08 10:28:05.40468 8da66392-1ad2-4926-9f68-a63b99dd015b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140891420"}, "pid": "2176", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107864203"} 2 -2023-07-08 08:17:10.851172 2023-07-08 10:28:05.910764 47a5c442-e0c6-4107-99fb-9e8a7b05900b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140897933"}, "pid": "2177", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107869604"} 2 -2023-07-08 08:17:13.059961 2023-07-08 08:17:13.059972 2c3e1463-bf49-4918-90b9-e3271b50a008 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141463740"}, "pid": "2202", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:13.154282 2023-07-08 08:17:13.154291 b69e5d55-aec3-4e1a-a733-eb06a2f85a47 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141475366"}, "pid": "2203", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:13.25842 2023-07-08 08:17:13.258428 2486922f-9983-45cb-92d8-5b76debfa96d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/14151289X"}, "pid": "2204", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:13.354664 2023-07-08 08:17:13.354674 72882234-fd7d-4f43-8689-fafbe7ed470a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141518707"}, "pid": "2205", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:13.434544 2023-07-08 08:17:13.434546 05f25a9f-9597-4637-be61-cff13128da99 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141531142"}, "pid": "2206", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:13.527601 2023-07-08 08:17:13.527605 97b7fb28-3244-4dc0-8470-cd1d71996ca5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141546891"}, "pid": "2207", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:13.611589 2023-07-08 08:17:13.611597 84597077-5421-496a-914f-4fda5e637275 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141569344"}, "pid": "2208", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:13.703185 2023-07-08 08:17:13.703193 27c276d4-895a-4ad8-a8d5-7e4e8fe99090 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141630531"}, "pid": "2209", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:13.795464 2023-07-08 08:17:13.795474 7ad5d0ba-8afa-4c9d-bc70-f0e32f6a1132 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141639490"}, "pid": "2210", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:13.907012 2023-07-08 08:17:13.907024 d5581218-9cf2-4bc6-8d26-a525aa50755f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141657278"}, "pid": "2211", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:14.001 2023-07-08 08:17:14.001009 3e975f9b-e1ae-401d-afd4-5c4be246a3fd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/14167220X"}, "pid": "2212", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:14.107469 2023-07-08 08:17:14.10748 1278c071-820c-43f7-b904-9e6aa6843bcb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141675330"}, "pid": "2213", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:14.191108 2023-07-08 08:17:14.191117 dc929f23-6ea8-40f7-af91-5e80b8ee7dbd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141707151"}, "pid": "2214", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:14.283602 2023-07-08 08:17:14.283611 2e18ca4e-871c-4b02-91a4-ce43576e1a36 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141709499"}, "pid": "2215", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:14.36995 2023-07-08 08:17:14.369953 65608ef0-a804-4f26-b87c-7820e3125f58 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141752025"}, "pid": "2216", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:14.461741 2023-07-08 08:17:14.461745 f0cd7ef0-1c21-4064-a068-26e3bc5c2ad9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141780940"}, "pid": "2217", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:14.563996 2023-07-08 08:17:14.564005 d365cd66-bfa4-41ea-99fa-90bcb38fa88d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141820209"}, "pid": "2218", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:14.645471 2023-07-08 08:17:14.645474 ac6f4540-82d4-4aa1-a345-bcdc8f836b59 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141833475"}, "pid": "2219", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:14.731138 2023-07-08 08:17:14.731146 dc021966-70e8-445a-83ac-b8a256429fc3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141839422"}, "pid": "2220", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:14.803836 2023-07-08 08:17:14.803839 5471469d-ba21-4e52-9ed4-bb61f84be309 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141851910"}, "pid": "2221", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:14.873363 2023-07-08 08:17:14.873365 04f8c04b-b7db-4a31-adbd-18871d253382 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141864893"}, "pid": "2222", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:14.953814 2023-07-08 08:17:14.953818 61f77250-fb1c-4ea2-a588-d5c65a61b6c3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141874325"}, "pid": "2223", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:15.039344 2023-07-08 08:17:15.039347 d2b12847-574c-49fb-8b7b-b015604f7e19 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141919558"}, "pid": "2224", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:15.125246 2023-07-08 08:17:15.125251 f747245b-5a1d-4998-91bf-733fad26f93a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141944447"}, "pid": "2225", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:15.198577 2023-07-08 08:17:15.19858 e49ac569-e8ea-4739-a851-3e79c5398e48 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/14194479X"}, "pid": "2226", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:15.275756 2023-07-08 08:17:15.275761 850f5854-162d-40f1-81f6-e0115f73b4cd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141961406"}, "pid": "2227", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:15.366729 2023-07-08 08:17:15.366737 d402efe5-8e7a-4728-8802-a2254f2ee88b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141969016"}, "pid": "2228", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:15.474033 2023-07-08 08:17:15.474043 bb1dc09c-36c3-435d-899f-abb752acc2c8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141980516"}, "pid": "2229", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:15.56149 2023-07-08 08:17:15.561501 bdb2e9c9-9c5e-4c73-bc73-9c2b1fbdc8a2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/14198970X"}, "pid": "2230", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:15.633626 2023-07-08 08:17:15.633629 6d450264-53b3-4be4-87be-1c50e8a0f974 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141990600"}, "pid": "2231", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:15.731968 2023-07-08 08:17:15.731977 b85bd6d0-5b76-4168-a9fb-a5f89ae0214d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142004634"}, "pid": "2232", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:15.825357 2023-07-08 08:17:15.825362 a75b4a30-af6c-4917-9cbc-c86514402187 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142042544"}, "pid": "2233", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:15.917684 2023-07-08 08:17:15.917692 1125e111-7bf9-4e86-9b40-4aa3d6127322 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142047465"}, "pid": "2234", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:16.011438 2023-07-08 08:17:16.011453 620944d6-eed7-41a3-90a5-483f0fdb7a72 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142047678"}, "pid": "2235", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:16.116609 2023-07-08 08:17:16.116618 991a0e63-e0af-411c-8e25-e628ce0ca3ca {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142098256"}, "pid": "2236", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:16.209047 2023-07-08 08:17:16.209055 e2bd6504-444d-457f-aa12-235d86152b2a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142138894"}, "pid": "2237", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:16.31706 2023-07-08 08:17:16.317064 56893997-7811-4047-bfa9-bd9f3ae2bd6d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142174610"}, "pid": "2238", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:16.408378 2023-07-08 08:17:16.408382 7c9bdbd5-a3ac-45ab-970e-812786be9757 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142191663"}, "pid": "2239", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:16.498335 2023-07-08 08:17:16.498344 ef4e1286-58b0-4917-9444-505cbc228ddc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142206725"}, "pid": "2240", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:16.627497 2023-07-08 08:17:16.627502 10d6fd3f-cba8-4d9f-891f-f40f0d957698 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142208035"}, "pid": "2241", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:16.727539 2023-07-08 08:17:16.727548 1775a4d5-fa1e-4d19-83c0-c6f85b6c5447 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142211117"}, "pid": "2242", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:16.821006 2023-07-08 08:17:16.821016 2d106ce3-8661-4438-ac77-848bdb885851 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142218685"}, "pid": "2243", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:16.93658 2023-07-08 08:17:16.936589 c3c97df9-bd30-48d2-8ab3-e361d36c6006 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142233307"}, "pid": "2244", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:17.030697 2023-07-08 08:17:17.030707 e65eef6e-4413-4515-8324-0682a7fff907 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142248010"}, "pid": "2245", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:17.128984 2023-07-08 08:17:17.128987 bdfc64f8-6eb6-49a2-b162-804d1c9b878b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142254193"}, "pid": "2246", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:17.23733 2023-07-08 08:17:17.237334 c79c2a07-14a3-46f2-bd37-ec69e77965c5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142291684"}, "pid": "2247", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:17.344141 2023-07-08 08:17:17.344153 d8ed7172-156e-4baf-9a7c-9b6245537cbd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142310778"}, "pid": "2248", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:17.453074 2023-07-08 08:17:17.453083 3c8810c8-7e50-4372-bd05-89203381b4eb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142328588"}, "pid": "2249", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:17.566489 2023-07-08 08:17:17.566497 95b1086d-68ac-4850-98be-f5f2f01b3182 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142468614"}, "pid": "2250", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:17.694878 2023-07-08 08:17:17.694887 cf98cbd5-959d-4697-9575-06d8b81bae9f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/14250923X"}, "pid": "2251", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:17.780206 2023-07-08 08:17:17.780213 8d895822-cada-4bc3-b116-3128bae7a3e7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142554197"}, "pid": "2252", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:17.87408 2023-07-08 08:17:17.874088 5cc1d698-c751-4076-a30c-d6c8946e8db9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142619930"}, "pid": "2253", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:17.966781 2023-07-08 08:17:17.966791 a552ac02-9aaa-42d3-9264-31530333bc42 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142643742"}, "pid": "2254", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:18.072061 2023-07-08 08:17:18.072068 f2d85bcd-0ed7-4c2d-8069-4859d2494dd6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142693634"}, "pid": "2255", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:18.160938 2023-07-08 08:17:18.160947 2287dda6-a1a5-4872-82db-c5966cdd8cc7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142697354"}, "pid": "2256", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:18.24682 2023-07-08 08:17:18.246828 aaf2d7a8-6b9f-480f-b41f-ce2c8836133a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142717126"}, "pid": "2257", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:18.347612 2023-07-08 08:17:18.34762 f0d04f68-deb3-4fdf-b95d-f86143689eaa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142751464"}, "pid": "2258", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:18.42584 2023-07-08 08:17:18.425843 ecfe081c-547a-4e7a-86db-2546e642c5d8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142757640"}, "pid": "2259", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:18.501957 2023-07-08 08:17:18.50196 8c5477cd-145d-4fbb-bc39-c11c6175b83b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142767549"}, "pid": "2260", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:18.607201 2023-07-08 08:17:18.607207 1c38911d-4502-49cb-883b-fde7be6c4f70 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142782629"}, "pid": "2261", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:18.697938 2023-07-08 08:17:18.697947 22dd5359-62d9-49de-92ac-cadda6aa3096 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142784338"}, "pid": "2262", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:18.787851 2023-07-08 08:17:18.787854 078daf88-d4ee-40a3-bdb0-3b2bc4037177 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142806943"}, "pid": "2263", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:18.874192 2023-07-08 08:17:18.874195 162fb2a9-a7b1-4e75-94b2-95477b2066a9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142837431"}, "pid": "2264", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:18.960858 2023-07-08 08:17:18.960868 30d8bbee-c0af-4fd9-a59d-6290635a613e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142874906"}, "pid": "2265", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:19.04823 2023-07-08 08:17:19.048234 28493ebc-8472-4d94-bb1b-2329558ae1e4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142877174"}, "pid": "2266", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:19.122158 2023-07-08 08:17:19.122162 2be8c5e6-1a8b-41b7-9a0e-d33c9cf85b34 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142881430"}, "pid": "2267", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:19.20756 2023-07-08 08:17:19.207563 dcf16f74-543f-45ac-b3c5-6dd32e81fbc1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142894745"}, "pid": "2268", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:19.301848 2023-07-08 08:17:19.301855 3dba44fd-9528-4992-a00f-17d485d5ece6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142899615"}, "pid": "2269", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:19.408115 2023-07-08 08:17:19.408124 e7cb6353-28bf-45f9-b797-7d79256d1f3b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142910406"}, "pid": "2270", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:19.512107 2023-07-08 08:17:19.512114 26038213-2d39-41b2-86df-147347168e34 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142915637"}, "pid": "2271", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:19.628946 2023-07-08 08:17:19.62895 e3476761-e1d8-43b1-80cc-f52517b349d6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142944548"}, "pid": "2272", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:19.723409 2023-07-08 08:17:19.723418 41f86b8d-4e7c-45c5-bf4d-8dbbe9d22a5b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142979597"}, "pid": "2273", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:19.818655 2023-07-08 08:17:19.818662 a300b70b-d175-4a45-927e-f4b20cfe445d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/14299670X"}, "pid": "2274", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:19.912794 2023-07-08 08:17:19.912805 a7d39cc8-11ca-4cb3-bdbb-f61a4f15c494 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143008900"}, "pid": "2275", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:20.001828 2023-07-08 08:17:20.001837 b5ecca90-2ec0-4f22-bd55-b07594f7f046 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143059424"}, "pid": "2276", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:20.096985 2023-07-08 08:17:20.096989 5468dd64-6cb9-4e63-9388-3531b18b672f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143063324"}, "pid": "2277", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:20.171145 2023-07-08 08:17:20.171149 f56d6e23-298e-4e8a-8e6b-df1167171351 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143068547"}, "pid": "2278", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:20.264667 2023-07-08 08:17:20.264675 3aa4ab5c-6432-40ce-bdc7-6cf25b0da001 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143107291"}, "pid": "2279", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:20.468585 2023-07-08 08:17:20.468593 1ddfa0c3-60b3-4f6d-9d58-948635ff4092 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143138901"}, "pid": "2281", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:20.545743 2023-07-08 08:17:20.545746 186abb96-589e-47dc-8f20-ac16beb064c3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143152807"}, "pid": "2282", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:20.616696 2023-07-08 08:17:20.616699 11c31ac9-7db6-4ccc-a102-4bf19dc20a57 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143164406"}, "pid": "2283", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:20.685556 2023-07-08 08:17:20.68556 b907a1a7-1a87-409f-9bbb-97328e8e9d28 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143170899"}, "pid": "2284", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:20.773879 2023-07-08 08:17:20.773889 536aac09-3435-4b75-a674-7f762f2d41bc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143182846"}, "pid": "2285", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:20.856936 2023-07-08 08:17:20.856939 67b808f7-0415-40f6-95ec-c492fa372c96 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143199897"}, "pid": "2286", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:20.925936 2023-07-08 08:17:20.925939 f5c8a3ce-3694-41e5-9a06-de27bb52cda3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/14320212X"}, "pid": "2287", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:21.013772 2023-07-08 08:17:21.01378 db780e31-ecb4-4dfc-80b7-16c5bf7d599a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143203576"}, "pid": "2288", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:21.108733 2023-07-08 08:17:21.108745 f7f7e05a-4506-4017-a88e-212b678e5a82 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143204718"}, "pid": "2289", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:21.187033 2023-07-08 08:17:21.187041 b8e1c883-8e2e-4dbe-849c-e603d827232f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143231499"}, "pid": "2290", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:21.28264 2023-07-08 08:17:21.282653 7e9c8098-adad-4333-8793-155736d569bf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/14326589X"}, "pid": "2291", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:21.385177 2023-07-08 08:17:21.38518 da3cc7d7-292e-4220-beec-368286ed01a2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/14327810X"}, "pid": "2292", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:21.479322 2023-07-08 08:17:21.479331 503d6198-ea5a-40a7-9237-ac9ce552a109 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143326694"}, "pid": "2293", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:21.576808 2023-07-08 08:17:21.576817 4970eb67-0f89-42b6-85de-3a966e83aea6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143341847"}, "pid": "2294", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:21.658117 2023-07-08 08:17:21.65812 f42b7a42-d305-41c7-a23b-5a3b4a284302 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/14334739X"}, "pid": "2295", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:21.747786 2023-07-08 08:17:21.747793 e4419e56-bcf4-4caa-9aff-7bc3dc9f0798 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143349791"}, "pid": "2296", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:21.854953 2023-07-08 08:17:21.854962 fd6f2e1a-b378-4c03-a34e-a8a495796f13 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143350285"}, "pid": "2297", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:21.946746 2023-07-08 08:17:21.946752 27b84180-3e3e-48c0-98a7-48dbf6bef7e0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143366254"}, "pid": "2298", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:43.013207 2023-07-08 08:22:43.013215 bfb73fd6-08e0-4a47-8294-a8ef19a4738f {"pid": "5394", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243567634"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:22.140342 2023-07-08 08:17:22.140346 d2a98884-1e41-4e95-b831-80ef4afe68a6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143380583"}, "pid": "2300", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:22.22749 2023-07-08 08:17:22.227498 7899a521-f2a5-4262-9564-29d5f6a437c4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143441450"}, "pid": "2301", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:22.306078 2023-07-08 08:17:22.306081 40cd3584-17a2-4292-8378-2e82c5391629 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143443011"}, "pid": "2302", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:22.478882 2023-07-08 08:17:22.47889 c21f17c3-2c48-42b7-bea0-08989bc88f07 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143465147"}, "pid": "2304", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:22.567462 2023-07-08 08:17:22.567467 09107187-cd7d-4f23-b62b-a40a343e6c45 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143505165"}, "pid": "2305", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:22.660515 2023-07-08 08:17:22.660522 f7f8552d-68d4-44ee-8dd5-12164d5a5027 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143511327"}, "pid": "2306", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:43.120613 2023-07-08 08:22:43.120622 3a7bcd34-b026-4e9c-9222-acf4bfb6f751 {"pid": "5395", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243577583"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:22.862613 2023-07-08 08:17:22.86262 d08630a0-156a-4b79-9774-dd63654d22dc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143530879"}, "pid": "2308", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:22.95324 2023-07-08 08:17:22.953244 7f779f10-1e93-4690-81b6-99f626d81ba8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143531468"}, "pid": "2309", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:23.044969 2023-07-08 08:17:23.044978 f732299b-94de-4c0f-9aac-b56e82241464 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143560794"}, "pid": "2310", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:23.137398 2023-07-08 08:17:23.137402 9e5de06d-e1d8-4cb6-80de-a78b5767588b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143583883"}, "pid": "2311", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:23.222222 2023-07-08 08:17:23.222231 80e7dfb5-52ee-42f6-ae7a-c6ca7d9a7d44 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143606336"}, "pid": "2312", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:23.302827 2023-07-08 08:17:23.30283 51d95ce2-82d3-433b-be84-2c8132da79aa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143612972"}, "pid": "2313", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:23.393889 2023-07-08 08:17:23.393901 3b218043-dbdc-4890-83c7-eef11921745d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143626655"}, "pid": "2314", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:23.480805 2023-07-08 08:17:23.480813 713640b9-c0a8-4f7e-bd89-3a4559c17e9e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143641174"}, "pid": "2315", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:23.580275 2023-07-08 08:17:23.580283 19f7a83d-67b8-4309-a059-72ccb427d659 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143661779"}, "pid": "2316", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:23.669431 2023-07-08 08:17:23.669433 63b1b825-398e-406f-88c2-ba9b0807405a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143679783"}, "pid": "2317", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:23.768164 2023-07-08 08:17:23.768173 bd782a7d-1ae8-46e3-8569-5def0bfacc09 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/14369877X"}, "pid": "2318", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:23.862518 2023-07-08 08:17:23.862532 35dc2314-20e4-4bca-b938-45fc257225a0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143700545"}, "pid": "2319", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:23.959978 2023-07-08 08:17:23.959987 bc59836b-ff8a-479b-8391-aeeee2248826 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143720244"}, "pid": "2320", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:24.061865 2023-07-08 08:17:24.061873 e3a6649f-3126-4e38-ad6c-42d911d609d5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143739050"}, "pid": "2321", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:24.14326 2023-07-08 08:17:24.143264 ce6fda7f-473c-4629-92ec-4d6b91977e87 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143747835"}, "pid": "2322", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:24.23054 2023-07-08 08:17:24.230549 87d6013c-2d15-4b38-b7dd-6b09955e0d3a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143755498"}, "pid": "2323", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:24.312055 2023-07-08 08:17:24.312064 c9e9a0d6-7ebc-407d-b591-514a966a50b2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/14382399X"}, "pid": "2324", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:24.404309 2023-07-08 08:17:24.404318 3e23bd13-3f37-41a1-b4cb-4fd9b7a745ce {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143849107"}, "pid": "2325", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:24.494643 2023-07-08 08:17:24.49465 74d59f81-c97e-41ee-a740-c3c09486dd91 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143873601"}, "pid": "2326", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:24.599139 2023-07-08 08:17:24.599149 a73e3ada-e8c7-4bec-bc75-a3880f0d5a78 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143905856"}, "pid": "2327", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:24.677708 2023-07-08 08:17:24.677711 545184f2-d3ac-41fe-8713-3dd3aa76ccbd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143916629"}, "pid": "2328", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:24.761561 2023-07-08 08:17:24.761573 a5611eaa-9107-45f0-8f01-c718c81cbafc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143917889"}, "pid": "2329", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:24.860332 2023-07-08 08:17:24.86034 c9474f33-f275-4714-9c01-680db2a105d8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143929496"}, "pid": "2330", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:24.942595 2023-07-08 08:17:24.942599 26a093e7-d681-45e8-9919-e08136536d84 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143934821"}, "pid": "2331", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:25.033204 2023-07-08 08:17:25.033213 2ade0da3-29b5-46f5-a46c-12811ee38c17 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143941844"}, "pid": "2332", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:25.136965 2023-07-08 08:17:25.136969 5bf51858-112a-448d-82e0-0d26c766af22 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143985418"}, "pid": "2333", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:25.221094 2023-07-08 08:17:25.221098 569863d1-00f3-45c5-91db-b937445ebbc2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/144017229"}, "pid": "2334", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:25.304898 2023-07-08 08:17:25.304907 9deb6c65-69df-4f63-844e-f5f46240b7b1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/144040182"}, "pid": "2335", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:25.443572 2023-07-08 08:17:25.443584 5d4304ca-cf23-47ff-9f66-22ac84bb7425 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/158403487"}, "pid": "2336", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:25.534145 2023-07-08 08:17:25.534155 96a7db08-9063-46b8-82fc-a4d3cbb7aac4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/170056937"}, "pid": "2337", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:25.742403 2023-07-08 08:17:25.742412 8788d922-36f6-414d-ac40-49d10d536732 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/17017252X"}, "pid": "2339", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:25.829397 2023-07-08 08:17:25.829406 0f9963bb-d9e2-4ba8-ac82-831c6ff57c2c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/170229955"}, "pid": "2340", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:25.921856 2023-07-08 08:17:25.921864 151e2357-48f2-4ece-998f-d1920f7550b6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/170238873"}, "pid": "2341", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:43.22923 2023-07-08 08:22:43.229242 f4cfaa4f-4ecd-494f-af24-61d41b5bb0ee {"pid": "5396", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243578482"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:26.12115 2023-07-08 08:17:26.121157 4c689330-5870-48c4-8101-6584caa22cb1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/170299597"}, "pid": "2343", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:26.205022 2023-07-08 08:17:26.205031 d969eefd-4158-4343-875f-76bb1ad37d7c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/170311295"}, "pid": "2344", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:26.305781 2023-07-08 08:17:26.30579 8417a119-45d6-4336-a68d-502b34b58986 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/170322122"}, "pid": "2345", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:26.398319 2023-07-08 08:17:26.398328 aca7532c-1c1b-4420-96e8-a25676294385 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/170395839"}, "pid": "2346", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:26.500188 2023-07-08 08:17:26.5002 5b7b4788-ac44-449a-ab90-e3ff9706c884 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/170402584"}, "pid": "2347", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:26.585458 2023-07-08 08:17:26.585464 7d6aeeb3-540c-4b77-a0eb-2ee1fdfa09ed {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/170410633"}, "pid": "2348", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:26.661291 2023-07-08 08:17:26.661294 83be7e90-0cf2-4277-a581-8d64dc67e697 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/170454428"}, "pid": "2349", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:26.742473 2023-07-08 08:17:26.742478 6e034715-61ba-48d2-9a85-395c082d8e2a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/170502708"}, "pid": "2350", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:26.81052 2023-07-08 08:17:26.810525 62304603-8447-4a08-9c20-422ca34c627f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/170678253"}, "pid": "2351", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:26.882231 2023-07-08 08:17:26.882235 829d5850-db2c-49aa-b5bb-78e5064d2785 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/170725383"}, "pid": "2352", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:26.952197 2023-07-08 08:17:26.9522 d8cc61bf-8dd2-44f8-853d-84701ffb1bbd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/170813010"}, "pid": "2353", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:27.021963 2023-07-08 08:17:27.021968 61c4e374-aebb-4441-aced-32b59ac68816 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/170877965"}, "pid": "2354", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:27.088214 2023-07-08 08:17:27.088216 0e963f37-e2b9-43e0-979b-ac9f9ac00273 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/170952320"}, "pid": "2355", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:27.314033 2023-07-08 08:17:27.314038 4bf43808-45be-4435-b053-562536e98a4d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/171082079"}, "pid": "2358", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:27.404473 2023-07-08 08:17:27.404484 9e84cc9e-695b-4569-8373-ee9b3f326f5d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/171217772"}, "pid": "2359", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:27.496192 2023-07-08 08:17:27.496203 9539adbe-f1a8-4744-b54a-3732bd5ff5ff {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/171283899"}, "pid": "2360", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:27.594484 2023-07-08 08:17:27.594493 1417adfa-33b1-4d0e-908c-386c6c8e8c8d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/171302605"}, "pid": "2361", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:27.678204 2023-07-08 08:17:27.678208 c2121d35-d882-408a-aded-6dbc2b1013eb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/171346424"}, "pid": "2362", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:27.764287 2023-07-08 08:17:27.764292 d73128df-2ce2-4d0e-9c24-ed439bbe0192 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/171367421"}, "pid": "2363", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:27.850923 2023-07-08 08:17:27.850931 66f91234-da9e-4d32-871a-469df0dc2f70 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/171541545"}, "pid": "2364", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:27.930977 2023-07-08 08:17:27.93098 d2414eaa-fc71-49b1-9085-a3305e838e13 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/171555430"}, "pid": "2365", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:27.231625 2023-07-08 10:31:39.495545 cb1cedc3-a2a4-4a90-b9e6-4562deb8ae96 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/171052412"}, "pid": "2357", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/128590874"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "113062088"} 4 -2023-07-08 08:17:27.160504 2023-07-08 10:31:11.603672 59a9dd03-b876-4d12-9d9e-e93979f01e4d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/170996085"}, "pid": "2356", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11195798"} 2 -2023-07-08 08:17:28.023023 2023-07-08 08:17:28.023027 4b253778-02f0-46bd-86f9-31ed23238646 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/171629353"}, "pid": "2366", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:28.11142 2023-07-08 08:17:28.111425 f36d20da-62a2-4b95-b1f6-c663b82e35be {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/171634667"}, "pid": "2367", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:28.214354 2023-07-08 08:17:28.214362 632472e6-6ee4-4fa4-8440-19a7bff2523c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/171707788"}, "pid": "2368", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:28.301147 2023-07-08 08:17:28.301151 9066851a-0686-4461-b74a-2383c1878afd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/171735099"}, "pid": "2369", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:28.416166 2023-07-08 08:17:28.416175 53568c48-7f8f-48a8-9167-617533515d59 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/171781082"}, "pid": "2370", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:28.50959 2023-07-08 08:17:28.509603 98396d73-26c0-4842-a5ad-a9740d10dfc5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/171827872"}, "pid": "2371", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:28.606613 2023-07-08 08:17:28.606622 025c2443-ad47-4892-aae2-db4bf910a942 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/17187935X"}, "pid": "2372", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:28.69507 2023-07-08 08:17:28.695078 96543156-8a2a-4488-8bd1-c2f59ac0a291 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/171899660"}, "pid": "2373", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:28.782021 2023-07-08 08:17:28.782029 6dd6eae6-2029-464e-99b9-e2ac29e7aa99 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/17205821X"}, "pid": "2374", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:43.353975 2023-07-08 08:22:43.353985 b986840f-bf5c-457b-80d8-8260d5c5589b {"pid": "5397", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243583133"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:29.108381 2023-07-08 08:17:29.10839 d847c389-899d-49fa-b49f-c519110f1994 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172206790"}, "pid": "2377", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:29.196034 2023-07-08 08:17:29.196043 0ed1ad78-25d5-4259-8b74-54f5e0d8c5f9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172224314"}, "pid": "2378", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:29.379059 2023-07-08 08:17:29.379062 a6be4562-7842-4549-b395-16b900fd722a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172263840"}, "pid": "2380", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:29.472222 2023-07-08 08:17:29.472231 835276fa-8c79-4e13-9124-0d4c50299814 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172325749"}, "pid": "2381", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:29.564416 2023-07-08 08:17:29.564428 3125752c-c540-4e94-b440-6d0b07d91bf1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172335450"}, "pid": "2382", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:43.462394 2023-07-08 08:22:43.462404 3ad30943-7a22-47ae-8d64-13ed81923ff2 {"pid": "5398", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243594895"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:29.829111 2023-07-08 08:17:29.829119 73c3e769-86f2-48ff-91a5-ffed50063093 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/17248491X"}, "pid": "2385", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:29.936839 2023-07-08 08:17:29.936848 a1eceda7-e514-4dd3-959b-dbc27f7bd301 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172560462"}, "pid": "2386", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:30.040833 2023-07-08 08:17:30.040841 f4d4344b-5f7a-4d7a-9ea6-34120cfe88c6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172650003"}, "pid": "2387", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:30.131378 2023-07-08 08:17:30.131383 7212927b-29e1-4714-9ab7-93355c62796d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172664128"}, "pid": "2388", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:30.219292 2023-07-08 08:17:30.219296 bb7bda90-d3f5-4f8a-a7d0-2abc4bde9707 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172677335"}, "pid": "2389", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:30.306925 2023-07-08 08:17:30.306928 33777702-b032-42a4-8b32-e52edada934b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172710073"}, "pid": "2390", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:30.388014 2023-07-08 08:17:30.388017 5b90f61f-1d11-4d8d-a1bb-e479a7260ee6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172712866"}, "pid": "2391", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:30.471832 2023-07-08 08:17:30.471835 813e02a9-0883-4a20-a244-b2dbea70035e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/17273889X"}, "pid": "2392", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:30.552659 2023-07-08 08:17:30.552664 c8e87e94-ee69-4f8e-8b05-e8a34fdb2d00 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172741912"}, "pid": "2393", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:30.627017 2023-07-08 08:17:30.627022 511a2209-de9e-4e0c-8520-60408c7df459 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172821657"}, "pid": "2394", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:30.771388 2023-07-08 08:17:30.771392 21842518-4d83-427e-afec-89b8536cac11 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172937051"}, "pid": "2395", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:30.848259 2023-07-08 08:17:30.848263 4d04c6f8-bc51-485b-8d57-3348d5078df5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172939755"}, "pid": "2396", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:30.936253 2023-07-08 08:17:30.936256 7f39cd97-4af8-48dd-8f2a-2dafe88b038b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172953804"}, "pid": "2397", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:29.293824 2023-07-08 10:29:18.764724 a5546f70-45aa-435d-b70c-46c80ab7233b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172252938"}, "pid": "2379", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003575662"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/033033269"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109537743"} 6 -2023-07-08 08:17:31.017382 2023-07-08 08:17:31.017388 e45bc86a-54a8-4fc3-a464-227f2807ea7e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173016383"}, "pid": "2398", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:31.101802 2023-07-08 08:17:31.101809 0350bc68-aa05-4f74-b5e0-077eda13032c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173079466"}, "pid": "2399", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:31.182092 2023-07-08 08:17:31.182096 264928ee-311c-4a38-bc72-1719fd87cb77 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173093086"}, "pid": "2400", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:31.256364 2023-07-08 08:17:31.256367 c70743f9-fed7-43b1-a15a-bcb1b844ba0b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173112110"}, "pid": "2401", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:31.40228 2023-07-08 08:17:31.402284 e7419068-fa68-471f-b289-2235c5262ad9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173162061"}, "pid": "2403", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:43.572832 2023-07-08 08:22:43.572844 1eee0def-fb55-4d0c-8c7a-566f6e5d231c {"pid": "5399", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243597827"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:31.56148 2023-07-08 08:17:31.561483 9a6e1753-a9c6-4eb2-b52f-8cba3333b31f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173287387"}, "pid": "2405", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:31.710864 2023-07-08 08:17:31.710868 8a1ec3cc-a9d7-4b49-be5e-1556cc0f1526 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173395627"}, "pid": "2407", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:31.782214 2023-07-08 08:17:31.782217 90393a88-45a5-4736-aa49-9208eaa90317 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/17344511X"}, "pid": "2408", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:31.850468 2023-07-08 08:17:31.850471 1b42885c-100c-429e-8023-4f05391b1006 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173606091"}, "pid": "2409", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:31.91944 2023-07-08 08:17:31.919443 169abbef-a5e9-4218-99bb-3d662705b7dc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/17361860X"}, "pid": "2410", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:31.991092 2023-07-08 08:17:31.991097 603c85d2-c60e-4310-81f7-e6059f05be17 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173628257"}, "pid": "2411", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:32.063496 2023-07-08 08:17:32.063499 2a405285-c617-4be5-ad0d-22fb0fe2cba9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173635385"}, "pid": "2412", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:32.13412 2023-07-08 08:17:32.134125 a79aee90-8ba1-4961-a52c-1178b4f7fa0e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173674534"}, "pid": "2413", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:32.200789 2023-07-08 08:17:32.200791 dabb3a98-dc5d-4361-9327-ace35159bf9e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173748856"}, "pid": "2414", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:32.267577 2023-07-08 08:17:32.267581 915c1199-fd64-4aa5-ac5a-be937f84dacb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173756638"}, "pid": "2415", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:32.339243 2023-07-08 08:17:32.339246 c8c9bc8d-8691-43d6-8bb6-3191c1b2aa3d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173770401"}, "pid": "2416", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:32.426338 2023-07-08 08:17:32.426348 da8640bc-7163-4367-8aff-caa5055f0e2d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173774148"}, "pid": "2417", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:32.507989 2023-07-08 08:17:32.507992 7000b5c9-5de5-48be-a48f-1dd43df2b1af {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173774776"}, "pid": "2418", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:32.582902 2023-07-08 08:17:32.582906 6175e6da-285c-4525-ba60-7342fca96194 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173808085"}, "pid": "2419", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:32.664265 2023-07-08 08:17:32.664268 03fb58c9-7ca5-4cc9-830d-89175bac30cc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173843034"}, "pid": "2420", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:32.761678 2023-07-08 08:17:32.761691 ee0fd35f-1593-4bcd-913e-588ab6179b41 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173888135"}, "pid": "2421", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:32.853639 2023-07-08 08:17:32.853645 97cc7539-c26e-47fc-b646-56456d927ed8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173977669"}, "pid": "2422", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:32.941794 2023-07-08 08:17:32.941802 50c9562c-3740-474e-953a-ef935c5dcb8a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/174095139"}, "pid": "2423", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:33.030323 2023-07-08 08:17:33.030334 778cd9c5-0fb7-4274-9c8f-9ebc9d47e717 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/174168616"}, "pid": "2424", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:33.127551 2023-07-08 08:17:33.127559 9004fa9f-da3c-430d-a829-462044899e68 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/17420275X"}, "pid": "2425", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:33.206948 2023-07-08 08:17:33.206957 992322bb-ac61-4467-ac45-1c198b5286d6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/17422138X"}, "pid": "2426", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:33.297519 2023-07-08 08:17:33.297529 0cd95431-c941-46d0-9a68-5a32d0594608 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/174376391"}, "pid": "2427", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:33.511809 2023-07-08 08:17:33.511818 cedf8a54-de99-4eb9-b7ee-e4f729484ac2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/189437065"}, "pid": "2429", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:33.41218 2023-07-08 10:28:37.071237 b64b7bcb-b96d-4294-b320-e5490e54083c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/178767875"}, "pid": "2428", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/139135723"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108566267"} 4 -2023-07-08 08:17:31.33136 2023-07-08 10:28:24.909888 97f19708-38ce-4a5e-ac09-9fe3ebb6a2d5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173120016"}, "pid": "2402", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234587989"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108229414"} 4 -2023-07-08 08:17:33.602136 2023-07-08 08:17:33.602145 a1ebe7dc-a4a2-4648-85b0-af57cb2e16dc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/199160554"}, "pid": "2430", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:33.694276 2023-07-08 08:17:33.694285 ba237c4f-c063-4196-8341-295cc0d83979 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320025594"}, "pid": "2431", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:33.793356 2023-07-08 08:17:33.793366 5c579702-f4bf-404b-b2ee-7171e0317689 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320038580"}, "pid": "2432", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:33.893437 2023-07-08 08:17:33.893446 83cdc175-4616-4d32-b9af-468da8f78b35 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320040992"}, "pid": "2433", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:33.997344 2023-07-08 08:17:33.997348 ccb86ba1-cf70-4039-926f-76bf03ed6303 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320067661"}, "pid": "2434", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:34.109594 2023-07-08 08:17:34.109608 67a5b9c1-5457-4f7e-94ae-2f318c1972e2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320070522"}, "pid": "2435", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:34.190956 2023-07-08 08:17:34.190959 c86b80f9-aca8-45f8-a8e6-14d576128227 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320074129"}, "pid": "2436", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:34.274007 2023-07-08 08:17:34.27401 98dcfbfe-edf3-4cec-8a01-97fb3df21d49 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320080242"}, "pid": "2437", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:34.362919 2023-07-08 08:17:34.362928 b08d30b6-bd6f-45a9-b718-61db63e0ad15 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320080366"}, "pid": "2438", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:34.436048 2023-07-08 08:17:34.436051 dbd279c9-b832-4515-a642-8c847e430248 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320093549"}, "pid": "2439", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:34.524034 2023-07-08 08:17:34.524043 1c1401d2-a93e-480b-9e22-c735f6ec5032 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320111881"}, "pid": "2440", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:34.630676 2023-07-08 08:17:34.630684 b06fac81-3f45-4e6d-965e-3086f31c9f18 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320153746"}, "pid": "2441", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:34.700388 2023-07-08 08:17:34.700391 b4aef8d8-7aff-4482-9382-ec6840f036b8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320168328"}, "pid": "2442", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:34.788113 2023-07-08 08:17:34.78812 b9a0148f-e541-453f-afc9-bca9a16def47 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320188760"}, "pid": "2443", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:34.885698 2023-07-08 08:17:34.885708 b735dd44-f1f6-4936-b472-b26a1616e3cb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320196321"}, "pid": "2444", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:34.96946 2023-07-08 08:17:34.969462 25eb7eb7-30e2-49c9-8929-846242559f22 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320202593"}, "pid": "2445", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:35.059161 2023-07-08 08:17:35.05917 112ecfdd-3abf-40f8-a702-18fdacfcff30 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320218694"}, "pid": "2446", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:35.142687 2023-07-08 08:17:35.142697 e62cbe89-b1ac-40e1-a32d-6051bb8e6ea1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320234975"}, "pid": "2447", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:35.213316 2023-07-08 08:17:35.213319 0d697292-bf6c-49f2-ab0b-a62aa404de18 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320236706"}, "pid": "2448", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:35.28156 2023-07-08 08:17:35.281564 808a7641-c68b-45a6-99a4-9bce9ed83315 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320290239"}, "pid": "2449", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:35.368991 2023-07-08 08:17:35.368999 d6adb0f6-6457-4234-96c3-ada6444bb44c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320292746"}, "pid": "2450", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:35.463158 2023-07-08 08:17:35.463165 b80717cf-ce36-4e9e-806d-ff9df3fc5ceb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320319008"}, "pid": "2451", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:35.546795 2023-07-08 08:17:35.546802 3bac4b2d-8880-48e5-adbe-9e0bec2e512d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320328074"}, "pid": "2452", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:35.683275 2023-07-08 08:17:35.683281 a8e151bc-7e7f-4046-97bd-3c0d34810060 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/32032964X"}, "pid": "2453", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:35.75779 2023-07-08 08:17:35.757794 28dcb344-fd30-46ad-9117-b509efe79e77 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320334988"}, "pid": "2454", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:35.827357 2023-07-08 08:17:35.82736 db50ec7c-9a62-489d-9ed3-b18c2fb76f3c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320354202"}, "pid": "2455", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:35.908447 2023-07-08 08:17:35.90845 394c42b1-659f-4c3e-8e8d-9c27e0b41982 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320364879"}, "pid": "2456", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:36.006067 2023-07-08 08:17:36.006074 b1c6a880-2000-40d8-9e74-fb518b1e58b8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320366510"}, "pid": "2457", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:36.093391 2023-07-08 08:17:36.093405 c7526b21-a0f4-43c9-b533-0cf09d9c9bea {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320368173"}, "pid": "2458", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:36.176856 2023-07-08 08:17:36.176858 3bf4250b-caf2-4c6a-a185-15a7af1501f2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320388387"}, "pid": "2459", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:36.259648 2023-07-08 08:17:36.259659 7aa67c7e-3744-4096-92f6-237f38478af5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320390268"}, "pid": "2460", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:36.350379 2023-07-08 08:17:36.350387 89484f4f-e41f-44f3-9e79-d0b25ece1234 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320393690"}, "pid": "2461", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:36.445341 2023-07-08 08:17:36.44535 e8f2c9a3-1bed-4569-983d-5eb49a6081a1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320406407"}, "pid": "2462", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:36.545168 2023-07-08 08:17:36.545177 257cb762-2c63-4a4e-9bf8-555a14c98303 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320412733"}, "pid": "2463", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:36.63783 2023-07-08 08:17:36.637839 7cc20004-855f-44ec-8314-a46aa726e25f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320418448"}, "pid": "2464", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:36.740064 2023-07-08 08:17:36.740072 3d9d0582-1ca8-45f5-aa06-1e25b21bb31a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320422739"}, "pid": "2465", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:36.840657 2023-07-08 08:17:36.840661 b3720d54-2784-432c-8afb-6cf2f9c49f10 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/32043706X"}, "pid": "2466", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:36.930627 2023-07-08 08:17:36.930634 9ba12e2f-8547-4f2e-9e91-404d65ce67d6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320461394"}, "pid": "2467", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:37.038727 2023-07-08 08:17:37.038736 f89b53c7-ca47-4882-a316-7387ac3e3930 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320475891"}, "pid": "2468", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:37.128604 2023-07-08 08:17:37.128609 33cd5007-b203-4b33-9bcd-5771b3c3317a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320488063"}, "pid": "2469", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:37.198715 2023-07-08 08:17:37.198718 75c73fd8-521a-42e3-83cf-a1bbfee60c49 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/32048906X"}, "pid": "2470", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:37.284441 2023-07-08 08:17:37.28445 c354cdac-ef78-41ea-b643-03472197b41b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320497070"}, "pid": "2471", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:37.380151 2023-07-08 08:17:37.380162 7b914c82-3c5d-490b-8517-e0b66ee5eb10 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320506037"}, "pid": "2472", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:37.485441 2023-07-08 08:17:37.485449 3d402862-31e5-403a-a2d9-156983dd3fd5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320515206"}, "pid": "2473", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:37.59011 2023-07-08 08:17:37.590119 11eb2a4c-a20c-431b-9b17-519c610886dc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320532836"}, "pid": "2474", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:37.666327 2023-07-08 08:17:37.666332 73fd12a2-6d9c-403d-b40b-98802dc3b940 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320542173"}, "pid": "2475", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:37.743776 2023-07-08 08:17:37.743786 fb2c0047-d918-4d63-b80f-46e816b14fc6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320562425"}, "pid": "2476", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:37.824474 2023-07-08 08:17:37.824478 1d94d9f5-d5e0-4c57-847b-6ff9e9ed0a4e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320577880"}, "pid": "2477", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:37.914227 2023-07-08 08:17:37.914238 4a925703-da72-484c-94fd-f52e70e0b03f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320577929"}, "pid": "2478", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:38.001934 2023-07-08 08:17:38.001944 bcad07e5-5212-4158-a23c-2346bc7fc5c7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320579751"}, "pid": "2479", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:38.088397 2023-07-08 08:17:38.088401 6020e045-c26e-4049-ba5a-2039019d1154 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320584739"}, "pid": "2480", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:38.16799 2023-07-08 08:17:38.167993 aa93013d-e284-4040-8023-19b6378a6d6c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320618439"}, "pid": "2481", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:38.243282 2023-07-08 08:17:38.243287 dbe45351-8a96-4d16-ba11-57bde1117e99 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320631176"}, "pid": "2482", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:38.334104 2023-07-08 08:17:38.334109 32f5c453-34db-4846-8da2-a77e99384133 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320642461"}, "pid": "2483", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:38.423404 2023-07-08 08:17:38.423408 1dbb960e-cc0f-495c-90cc-05769d99936a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/32064779X"}, "pid": "2484", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:38.510846 2023-07-08 08:17:38.510855 1f4fc295-01eb-41b7-b179-4cb7749dab07 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320648877"}, "pid": "2485", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:38.604231 2023-07-08 08:17:38.604237 d9c2e7e5-485e-4929-9d14-73d50a35d7da {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320655458"}, "pid": "2486", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:38.683412 2023-07-08 08:17:38.683415 21ce8dfa-e394-4409-939e-cb749469f66a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320663817"}, "pid": "2487", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:38.78884 2023-07-08 08:17:38.78885 e118e9ab-8eda-43db-b5a9-2495919c0789 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320680169"}, "pid": "2488", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:38.880934 2023-07-08 08:17:38.880943 7cbf1b97-dc6c-4dd3-9b34-c765288a466d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320694577"}, "pid": "2489", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:38.973593 2023-07-08 08:17:38.973602 86e876ee-8394-4e06-81d6-ad3cb172b331 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/940254522"}, "pid": "2490", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:39.064345 2023-07-08 08:17:39.06436 7dd9dff5-9456-4b6d-9f51-23aeb1d10d37 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/940263920"}, "pid": "2491", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:39.157417 2023-07-08 08:17:39.157425 5e6bc9b5-2314-4dff-b9f7-c9bfae8af7d6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/94027115X"}, "pid": "2492", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:39.251163 2023-07-08 08:17:39.251173 16477785-7c78-4eff-b7c4-afc37ffd8bfd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/94037238X"}, "pid": "2493", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:39.353293 2023-07-08 08:17:39.3533 225ae229-766f-4cd4-b226-7a3406edb6ba {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/940374412"}, "pid": "2494", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:39.443104 2023-07-08 08:17:39.443114 acd5f2b9-4db1-43e3-9f4d-e52aff2e284e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/940433729"}, "pid": "2495", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:39.532402 2023-07-08 08:17:39.532411 60f885ad-c953-455a-a712-7b3d37067f9e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/940439611"}, "pid": "2496", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:39.630564 2023-07-08 08:17:39.630571 8fa0fcc4-9e87-4920-8e85-0bb53ccb883a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/940547880"}, "pid": "2497", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:39.709825 2023-07-08 08:17:39.709834 901941e9-0cad-4222-8fc1-7c7c9a50f343 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/940552337"}, "pid": "2498", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:39.800115 2023-07-08 08:17:39.800123 96910d76-2086-40f3-9799-d4b54bb33248 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/940717395"}, "pid": "2499", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:39.895371 2023-07-08 08:17:39.895381 ed0563b9-c3fe-44a3-8695-a116850a0653 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/940975262"}, "pid": "2500", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:39.989202 2023-07-08 08:17:39.989209 17507d63-9ae3-48e5-a4c9-8235a1a3b042 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/940977877"}, "pid": "2501", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:40.080088 2023-07-08 08:17:40.080097 e3810074-4e37-427a-9262-8c4d68ec371a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/940981769"}, "pid": "2502", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:40.160232 2023-07-08 08:17:40.160237 94c47a62-7256-4229-996e-9db01bd3d038 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/940982315"}, "pid": "2503", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:40.259921 2023-07-08 08:17:40.259926 d1eba9a6-4213-4bd9-9d8b-ab6812776a79 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/941017893"}, "pid": "2504", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:40.344248 2023-07-08 08:17:40.344259 26610a4b-bc1a-4472-a2e5-08f581cfd47a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/941089150"}, "pid": "2505", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:40.442133 2023-07-08 08:17:40.442632 e87f0370-906d-4fe2-9aaf-21b3b82b90d1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/941275590"}, "pid": "2506", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:40.519255 2023-07-08 08:17:40.519259 61afaec4-8ad0-420b-9df6-9dab2364bebf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/941281973"}, "pid": "2507", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:40.60405 2023-07-08 08:17:40.604057 3f8b7dc7-bd8b-422e-8f50-a6707cd244ab {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/941346447"}, "pid": "2508", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:40.68993 2023-07-08 08:17:40.689938 cdffd0ff-28c0-437c-a928-445e0d01311f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/941637379"}, "pid": "2509", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:40.79482 2023-07-08 08:17:40.794828 fc5b02b4-028d-484f-8fa4-bb268e372ddb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/941671380"}, "pid": "2510", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:40.898003 2023-07-08 08:17:40.89801 b27a9ead-2368-4afe-895a-78c331d2025f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/94192582X"}, "pid": "2511", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:41.002019 2023-07-08 08:17:41.002027 f48da3c6-c203-4aec-99b2-aabbc81ce10f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/941943933"}, "pid": "2512", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:41.099951 2023-07-08 08:17:41.099954 e7fdc4e0-7d26-4f5a-b541-2e07260f17a5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/941953912"}, "pid": "2513", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:41.182682 2023-07-08 08:17:41.182685 3b94b6f4-4d5a-440b-be37-0c7e2578a557 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/942048636"}, "pid": "2514", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:41.252495 2023-07-08 08:17:41.252498 337b4c08-5a63-4ad2-b0b9-9d674fe6f4ad {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/94205086X"}, "pid": "2515", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:41.323915 2023-07-08 08:17:41.323919 168b5346-4b3d-497f-b8d7-422fc13822a6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/942050878"}, "pid": "2516", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:41.394035 2023-07-08 08:17:41.394042 10e9b4e4-09fc-4ee3-b043-da13858dc627 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/942070747"}, "pid": "2517", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:41.466263 2023-07-08 08:17:41.466266 299d981b-4a06-4b0e-8254-c5e232d4850b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/942199448"}, "pid": "2518", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:41.545107 2023-07-08 08:17:41.54511 d17de343-2d31-48f1-853c-41d411e9aa0a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/942320220"}, "pid": "2519", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:41.615842 2023-07-08 08:17:41.615846 c413c8d8-9008-4795-ae5c-a0c743d9d926 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/942384849"}, "pid": "2520", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:41.686189 2023-07-08 08:17:41.686192 8075414f-f5fb-460f-a454-3a7abbc2651d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/94242283X"}, "pid": "2521", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:41.75676 2023-07-08 08:17:41.756763 d7024eae-c09d-4d73-9ce2-5a1194b8e6a9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/942428595"}, "pid": "2522", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:41.829894 2023-07-08 08:17:41.829897 826e02b2-cfe3-4f7a-a237-930e35539265 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/942565762"}, "pid": "2523", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:41.900106 2023-07-08 08:17:41.900108 e775ebf0-2ff2-4ddf-9769-deefb6837659 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/942662024"}, "pid": "2524", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:41.96851 2023-07-08 08:17:41.968512 8776be32-45c8-4cf1-9c72-f199cf268048 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/942856015"}, "pid": "2525", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:42.040326 2023-07-08 08:17:42.04033 a13390b4-dbb5-41e0-a0e6-8d93377850e1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/942894871"}, "pid": "2526", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:42.124167 2023-07-08 08:17:42.124171 c2021471-1740-4543-97e6-05d1e041a44b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/942904168"}, "pid": "2527", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:42.195558 2023-07-08 08:17:42.195561 a7978d81-c7b9-4ba0-82e1-8bfe0b6eccea {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/942915232"}, "pid": "2528", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:42.265274 2023-07-08 08:17:42.265277 662db332-11c3-4079-a494-d672a199bd3a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/942918584"}, "pid": "2529", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:42.342001 2023-07-08 08:17:42.342006 6fb0cc30-d369-424f-bac8-db31ae2e5aaa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/942954297"}, "pid": "2530", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:42.439401 2023-07-08 08:17:42.439405 a199c505-4011-492f-a117-0b6f182f9da7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/942982096"}, "pid": "2531", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:42.50811 2023-07-08 08:17:42.508113 5aeaec3d-f312-4f52-913a-03c15515a238 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/943645956"}, "pid": "2532", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:42.582403 2023-07-08 08:17:42.582408 62ca8b83-b4c5-42a0-8e8b-4df4346158b9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/943646448"}, "pid": "2533", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:42.655943 2023-07-08 08:17:42.655949 ff8b4220-e759-45e2-a968-5e2beb544d83 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/943654904"}, "pid": "2534", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:42.742617 2023-07-08 08:17:42.742622 b2b62dea-2c06-4dbe-9343-97b1a3aa4b80 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/943708826"}, "pid": "2535", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:42.809101 2023-07-08 08:17:42.809104 351446da-9ced-41a7-9ca8-dd4659fe0b1f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/943780411"}, "pid": "2536", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:42.877523 2023-07-08 08:17:42.877526 e12d7c12-ee5a-4008-afba-51c3edca148c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/943780489"}, "pid": "2537", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:42.942542 2023-07-08 08:17:42.942547 3be40863-c29e-4adb-b70d-8a34611854f9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/943895758"}, "pid": "2538", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:43.011497 2023-07-08 08:17:43.0115 ad9e7761-1f87-434c-8a1c-efd036182434 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/943900069"}, "pid": "2539", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:43.099896 2023-07-08 08:17:43.099904 14862c81-3d29-404b-ba65-22c20e663a77 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/943913152"}, "pid": "2540", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:43.18269 2023-07-08 08:17:43.182693 8c5600a5-c58c-4464-b5f0-73a5a3c3be49 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/943915236"}, "pid": "2541", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:43.292843 2023-07-08 08:17:43.292853 d24ed922-e91a-4a4f-b5e1-557f879d3c02 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944068960"}, "pid": "2542", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:43.398573 2023-07-08 08:17:43.39859 fea77796-0704-4eeb-ba25-08caed03dcbe {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944075738"}, "pid": "2543", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:43.487961 2023-07-08 08:17:43.487969 7b085e9a-eeba-4f2e-8971-1e35b8760603 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944081274"}, "pid": "2544", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:43.578269 2023-07-08 08:17:43.578279 bb084d00-662e-48c3-bdd3-9df67ae9127c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944087809"}, "pid": "2545", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:43.665045 2023-07-08 08:17:43.665055 0bbb9e55-6613-4d78-b650-1280aa30a873 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944148816"}, "pid": "2546", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:43.753045 2023-07-08 08:17:43.753055 ccb7c189-30ae-40fe-8f0a-f19629f7c703 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944150284"}, "pid": "2547", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:43.854323 2023-07-08 08:17:43.854326 9ba55920-7a65-45b8-8a5a-bfcfe38a7fd9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944150381"}, "pid": "2548", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:43.944499 2023-07-08 08:17:43.944511 5ec70dd6-3d5b-414a-ba4d-be31926c7d47 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944150993"}, "pid": "2549", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:44.024439 2023-07-08 08:17:44.024442 f31a8a98-43d7-4060-8055-2fe7f51f8f4a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944155383"}, "pid": "2550", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:44.1203 2023-07-08 08:17:44.120308 24084801-f539-4026-b177-05e138b90b3e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944191908"}, "pid": "2551", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:44.199994 2023-07-08 08:17:44.199997 c588e21d-b699-46bd-b1b5-6d053c542f41 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/94419558X"}, "pid": "2552", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:44.282862 2023-07-08 08:17:44.282871 e7aa165b-1c8a-4db8-87dd-adcf6f35756c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944242898"}, "pid": "2553", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:44.362344 2023-07-08 08:17:44.362347 ca3e741b-2ab3-431b-8f93-7edbb5af5b85 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944290604"}, "pid": "2554", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:44.447046 2023-07-08 08:17:44.447057 6d365a76-ece0-4c13-8989-fd45dc3c63fa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944393020"}, "pid": "2555", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:44.527154 2023-07-08 08:17:44.527158 8f688b99-a504-4077-ab2f-eb9f6586a2da {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944405312"}, "pid": "2556", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:44.612762 2023-07-08 08:17:44.61277 f167fec7-024b-4c4d-8f7b-67754c4ba2ad {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944548059"}, "pid": "2557", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:44.689284 2023-07-08 08:17:44.689287 bc4d017c-7704-4a75-806c-0fec2d11dd69 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944640206"}, "pid": "2558", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:44.773438 2023-07-08 08:17:44.773441 945a9ccc-1260-4f33-8b05-afc0998aa46b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944694845"}, "pid": "2559", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:44.850517 2023-07-08 08:17:44.85052 bf258727-af6b-4e3d-8726-509ae7bb2f36 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944695167"}, "pid": "2560", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:44.930151 2023-07-08 08:17:44.930163 c9926f17-10ef-4bb6-8d7c-9ea3e46dd864 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944797199"}, "pid": "2561", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:45.019476 2023-07-08 08:17:45.019487 145d561d-37d1-48e3-bce9-834ba879db88 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944825028"}, "pid": "2562", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:45.11924 2023-07-08 08:17:45.119249 16658eeb-8d70-4cda-9e2b-6f41318f076c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944923313"}, "pid": "2563", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:45.203064 2023-07-08 08:17:45.203069 c4bc582c-50d3-48a8-bf07-41dbc034151c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944929052"}, "pid": "2564", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:45.287149 2023-07-08 08:17:45.287161 824a9fe2-742f-4e0b-93c2-67f3026680f4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944929710"}, "pid": "2565", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:45.37786 2023-07-08 08:17:45.377865 8c647df4-b088-46de-b563-464b61262b82 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944941710"}, "pid": "2566", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:45.479293 2023-07-08 08:17:45.479302 b75fd767-8a45-4932-91e1-8eed88935171 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/94495068X"}, "pid": "2567", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:45.576847 2023-07-08 08:17:45.57685 9794124a-4f57-47f2-828a-e1ba99e033ba {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944951910"}, "pid": "2568", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:45.703997 2023-07-08 08:17:45.704002 23a053bc-5f58-491e-9d19-d5da7ada63c1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944952976"}, "pid": "2569", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:45.818096 2023-07-08 08:17:45.818106 4fdc08ab-5d16-4d17-bce0-a2e6bea7dff3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944953395"}, "pid": "2570", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:45.916749 2023-07-08 08:17:45.91676 2b1eb6a6-b8cf-464c-ab8e-42679b8a11bc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944963749"}, "pid": "2571", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:46.021646 2023-07-08 08:17:46.02165 3d5fe808-12c6-4c86-89ee-e1b2b7df71c1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944971318"}, "pid": "2572", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:46.118905 2023-07-08 08:17:46.118909 02792eb4-2135-44ae-a48a-1abcc8938ca4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944978177"}, "pid": "2573", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:46.202972 2023-07-08 08:17:46.202976 e287bac1-e89a-4a15-b461-d572f26d0515 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/945028067"}, "pid": "2574", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:46.309288 2023-07-08 08:17:46.309296 079a7786-484c-4c9f-9a8f-ff36370872a2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/94504206X"}, "pid": "2575", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:46.413784 2023-07-08 08:17:46.413794 79b95683-449f-4eb5-a9f7-1af5aa6b3c09 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/945045972"}, "pid": "2576", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:46.497688 2023-07-08 08:17:46.497691 281ac698-5382-4a72-8594-025f270b58c8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/945048653"}, "pid": "2577", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:46.615369 2023-07-08 08:17:46.615376 95b33640-2558-462f-a6ee-d8cbc15080ff {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/945073232"}, "pid": "2578", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:46.74421 2023-07-08 08:17:46.744218 7cbe7b27-ed5b-410f-ac96-b784cf1b5aea {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/945074212"}, "pid": "2579", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:46.846772 2023-07-08 08:17:46.846783 8142c5be-85e8-428c-a26a-99deb390d959 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/945079893"}, "pid": "2580", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:46.942907 2023-07-08 08:17:46.942912 65c1d7af-0331-4563-bb04-8d69fcab5474 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/945102313"}, "pid": "2581", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:47.039373 2023-07-08 08:17:47.039381 393b8c11-42c3-4501-bb34-00f27ca36c0a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/945104138"}, "pid": "2582", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:47.112527 2023-07-08 08:17:47.112531 51f3f525-aca8-42af-b8f4-6829b8a3bf29 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/945107129"}, "pid": "2583", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:47.202013 2023-07-08 08:17:47.202024 4c2d94c4-6acc-498b-b3a8-e492f4b3fe4b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/94510877X"}, "pid": "2584", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:47.303731 2023-07-08 08:17:47.30374 e06042c4-793d-49c0-ae31-8ba0d943f71b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/945118805"}, "pid": "2585", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:47.411325 2023-07-08 08:17:47.411334 37a01ce0-4236-48c1-85c2-197fea254898 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/945462891"}, "pid": "2586", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:47.510832 2023-07-08 08:17:47.510841 bb5a3c1c-8a4e-46cc-8f28-767b05b5031c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/945492308"}, "pid": "2587", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:47.609258 2023-07-08 08:17:47.609271 e70b622e-60aa-467e-b721-151fd8104505 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/945504853"}, "pid": "2588", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:47.703393 2023-07-08 08:17:47.703396 c4e33190-b695-4c79-bebd-cb711614700a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/945555059"}, "pid": "2589", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:47.783305 2023-07-08 08:17:47.783307 5f207c6f-456a-4930-9f5b-b7cecd65e707 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/945628889"}, "pid": "2590", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:47.868196 2023-07-08 08:17:47.868205 bd134825-bdb5-4307-a6a2-65ccb9bdd7e9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/945633696"}, "pid": "2591", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:47.961865 2023-07-08 08:17:47.961869 40c5b7a4-4cc6-4a5b-8d1d-df93b299e5fe {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/945708300"}, "pid": "2592", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:48.034799 2023-07-08 08:17:48.034802 33d376b2-186d-4e32-97db-b12553fd86fe {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/945710097"}, "pid": "2593", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:48.122531 2023-07-08 08:17:48.122539 ecd2c4b4-bdde-4f18-9463-f79fb16f13d6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/945763395"}, "pid": "2594", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:48.213445 2023-07-08 08:17:48.213454 21fdd93a-3014-4276-80db-48c6df8c387b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/945817428"}, "pid": "2595", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:48.305926 2023-07-08 08:17:48.305933 b842337e-8cf4-4889-87bd-ff306b8f73eb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/945951590"}, "pid": "2596", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:48.401578 2023-07-08 08:17:48.401591 dc998724-3fb7-4223-99f6-12697366581e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/946180822"}, "pid": "2597", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:48.492572 2023-07-08 08:17:48.492583 3220ce04-b283-4108-a4c9-f8fdeab8ed0a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/946246734"}, "pid": "2598", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:48.584487 2023-07-08 08:17:48.5845 413fc462-5384-4611-b807-649fbd16a027 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/946481911"}, "pid": "2599", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:48.667912 2023-07-08 08:17:48.66792 d59e386f-f7d6-4fb5-af2b-cc4507b77465 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/946487537"}, "pid": "2600", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:48.754533 2023-07-08 08:17:48.754542 22dc7b84-6275-4e63-aeed-ed40d858e970 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/946515468"}, "pid": "2601", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:48.849538 2023-07-08 08:17:48.849546 cca5f410-5ac4-4f48-9667-757c78b2eb89 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/946592039"}, "pid": "2602", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:48.935551 2023-07-08 08:17:48.935559 2b52c8d1-5353-4390-a8bd-675c6df61190 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/946595259"}, "pid": "2603", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:49.04352 2023-07-08 08:17:49.043525 0412a4a2-23e9-4e16-b935-4ea2bf6927b1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/946597189"}, "pid": "2604", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:49.127866 2023-07-08 08:17:49.127875 ab4d2872-8839-42c5-96f2-a4a947adb7fb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/946686203"}, "pid": "2605", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:49.203026 2023-07-08 08:17:49.203029 a44d9d3d-512e-40cb-8732-e6b11a46d214 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/946688397"}, "pid": "2606", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:49.27317 2023-07-08 08:17:49.273173 6a6893aa-1d50-4356-85bc-daa82621627f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/946691215"}, "pid": "2607", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:49.344059 2023-07-08 08:17:49.344065 62d12f97-e19b-493f-b8f8-862bbee1dbd6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/94673271X"}, "pid": "2608", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:49.416361 2023-07-08 08:17:49.416363 042db311-dbf9-4b12-b6e2-c2dc0fda8734 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/946741077"}, "pid": "2609", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:49.488245 2023-07-08 08:17:49.48825 c2a4e185-b120-4515-9622-dc4c0b02e990 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/94687400X"}, "pid": "2610", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:49.562071 2023-07-08 08:17:49.562074 25fefc81-f52d-4f6e-ab3b-e78be8167619 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/946875715"}, "pid": "2611", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:49.644373 2023-07-08 08:17:49.644376 a007e113-2cca-48d1-aef1-12b4fe0487b0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/946923477"}, "pid": "2612", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:49.721715 2023-07-08 08:17:49.721718 5831f586-5c2c-44c7-b736-53cbab1b88e7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/947105735"}, "pid": "2613", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:49.793456 2023-07-08 08:17:49.79346 2541a5ee-3e41-4437-a662-9c54e56aaff8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/947202900"}, "pid": "2614", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:49.876012 2023-07-08 08:17:49.876021 0cdde238-54c3-48e6-aef4-bebafc4ac0ce {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/947434348"}, "pid": "2615", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:49.966557 2023-07-08 08:17:49.966567 93286fad-a0c9-470b-9c51-c72005956e8b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/947711708"}, "pid": "2616", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:50.049561 2023-07-08 08:17:50.049564 319b7d47-3c02-4eba-84b9-759d3b6f3b81 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/94772530X"}, "pid": "2617", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:50.144218 2023-07-08 08:17:50.144223 a1476016-3884-4bd2-888f-0c3271b23fa6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/947731687"}, "pid": "2618", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:50.221449 2023-07-08 08:17:50.221454 a3ba9669-3587-4291-b462-8d7d19509dbf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/947742956"}, "pid": "2619", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:50.319787 2023-07-08 08:17:50.319795 2da93219-277c-4ca8-a911-d11d78cbbd57 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/947854517"}, "pid": "2620", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:50.411852 2023-07-08 08:17:50.411864 20120a44-2301-42da-9652-f76c618fc178 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/947854789"}, "pid": "2621", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:50.501482 2023-07-08 08:17:50.501492 d5599133-9529-4784-8996-6f1d873780fc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/947862765"}, "pid": "2622", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:50.588812 2023-07-08 08:17:50.588815 1ffbd9bf-734d-43e9-bdd3-0b9ad9074d55 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/948041838"}, "pid": "2623", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:50.675946 2023-07-08 08:17:50.675951 5f78642d-ecf7-4ace-8e68-2a31f891c3f4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/94813142X"}, "pid": "2624", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:50.767791 2023-07-08 08:17:50.767801 788497c7-19be-4da3-9841-f5041c0c3970 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/94813514X"}, "pid": "2625", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:50.877385 2023-07-08 08:17:50.877394 3f40e00f-a971-415e-b83c-271158858c32 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/948139579"}, "pid": "2626", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:50.98074 2023-07-08 08:17:50.980749 a4f4e925-112e-41b5-81d0-f60bff6fa61d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/94814906X"}, "pid": "2627", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:51.055211 2023-07-08 08:17:51.055222 3df3b887-df78-4197-bdf6-5ddbeba0f935 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/948166894"}, "pid": "2628", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:51.149721 2023-07-08 08:17:51.149729 2889b217-1702-4c4e-9732-ca02349ae6d5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/948240598"}, "pid": "2629", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:51.246916 2023-07-08 08:17:51.246925 c102bb99-41d5-495e-9098-c0557b6cb955 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/948258594"}, "pid": "2630", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:51.334571 2023-07-08 08:17:51.334579 5b3274bd-6b7b-4245-96bc-aee0075f28d4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/948301236"}, "pid": "2631", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:51.429495 2023-07-08 08:17:51.429503 dae9557c-fa40-4118-8fd5-ef799e24458f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/948314931"}, "pid": "2632", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:51.534679 2023-07-08 08:17:51.534687 b60e3618-7d89-47e7-bf71-01fb59b11d57 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/948712244"}, "pid": "2633", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:51.633883 2023-07-08 08:17:51.633891 33430922-d335-4117-80a1-6756e848f6dd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/948719370"}, "pid": "2634", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:51.721775 2023-07-08 08:17:51.721781 f30e0284-cd27-44c8-baff-6cb7f8cd1af6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/94872367X"}, "pid": "2635", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:51.820287 2023-07-08 08:17:51.820298 d4b9e31b-e054-4ac0-8b56-6bab1c6604f8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/948936266"}, "pid": "2636", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:51.914339 2023-07-08 08:17:51.914343 b526a106-7ac3-4462-b929-9761a1183c23 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/94909613X"}, "pid": "2637", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:51.988278 2023-07-08 08:17:51.988281 5406026d-aa05-4ad9-b5ec-9273e9f16c6b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/949101338"}, "pid": "2638", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:52.072818 2023-07-08 08:17:52.072826 4b5618b7-25b2-48de-9cb0-f1b8780e2805 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/949309214"}, "pid": "2639", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:52.158753 2023-07-08 08:17:52.158757 644eea9b-5d43-43b8-ae2c-2fe2f756ae75 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/949313874"}, "pid": "2640", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:52.251568 2023-07-08 08:17:52.251579 37c38702-b15a-441f-87f4-f18e5990980f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/94933443X"}, "pid": "2641", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:52.33172 2023-07-08 08:17:52.331723 382d9e20-57d2-4b93-9a45-7469df689f96 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/949395161"}, "pid": "2642", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:52.411394 2023-07-08 08:17:52.411408 f75fd36a-2f46-421f-b671-380709d8ef51 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/949401560"}, "pid": "2643", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:52.505732 2023-07-08 08:17:52.505734 2f01c9ad-7a04-431a-a28d-7225ce6b991f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/949474851"}, "pid": "2644", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:52.589762 2023-07-08 08:17:52.589764 bf93f3ed-2c1c-446a-a29e-2a34869e8a3c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/949482110"}, "pid": "2645", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:52.671741 2023-07-08 08:17:52.671744 60d70ec2-1f0c-4868-b9a4-da94d471a814 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/949486779"}, "pid": "2646", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:52.738629 2023-07-08 08:17:52.738632 eae83fca-2d5f-4363-8509-9094fec588f1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/949496103"}, "pid": "2647", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:52.821059 2023-07-08 08:17:52.82107 62104671-08f6-4482-b3b0-620ae0550a22 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/949525197"}, "pid": "2648", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:52.913885 2023-07-08 08:17:52.913893 d263cc71-d390-4316-89ea-b8d3a0efc992 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/949560820"}, "pid": "2649", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:52.989595 2023-07-08 08:17:52.989598 aba6f933-7d24-4e3a-b998-fbfd48913047 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/949650978"}, "pid": "2650", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:53.075479 2023-07-08 08:17:53.075484 a044a46b-e7bd-4553-b072-e6a0d2b05bd0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/949739960"}, "pid": "2651", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:53.180922 2023-07-08 08:17:53.180928 8e909e96-531d-4f45-86b7-5da2bec743ff {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/949826758"}, "pid": "2652", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:53.267402 2023-07-08 08:17:53.267411 05657f8f-77e0-44fe-b28f-3a47b778b6ca {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/949828246"}, "pid": "2653", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:53.364847 2023-07-08 08:17:53.364856 f8ca0572-b398-4feb-a990-80d1537b65c5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/949857378"}, "pid": "2654", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:53.467091 2023-07-08 08:17:53.4671 3b8ee951-c01d-4ce9-a542-bc1818160f87 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/950041297"}, "pid": "2655", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:53.55013 2023-07-08 08:17:53.550132 80e707d2-01bc-4d06-9f23-75bdf4aae3e2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/950042544"}, "pid": "2656", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:53.631748 2023-07-08 08:17:53.631757 9d4fe1d4-a93f-4be3-b0e7-8096b928570f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/950148148"}, "pid": "2657", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:53.707092 2023-07-08 08:17:53.707095 d614f688-af15-448d-b898-4a0673301882 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/950207535"}, "pid": "2658", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:53.78949 2023-07-08 08:17:53.789496 2cbcd940-301e-42f3-9a73-bf56d0e97c67 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/950239623"}, "pid": "2659", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:53.885721 2023-07-08 08:17:53.885732 f9b1bf68-3a26-41eb-bf76-a4c67e80146f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/950309788"}, "pid": "2660", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:53.989177 2023-07-08 08:17:53.98918 3fcf3801-18bd-4a0c-b4ac-8740675e730b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/950323578"}, "pid": "2661", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:54.07352 2023-07-08 08:17:54.073522 c12e522a-b9ad-4681-b821-e7512dc14916 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/950389668"}, "pid": "2662", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:54.166694 2023-07-08 08:17:54.166703 d449c409-2cb6-4b36-9e00-03758017e19b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/950389781"}, "pid": "2663", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:54.249648 2023-07-08 08:17:54.249651 246024f2-c9fc-433e-95e6-5e40fdc7950c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/950614076"}, "pid": "2664", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:54.334158 2023-07-08 08:17:54.334169 4c5f0a88-53e0-4996-85c2-4775f0152f36 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/950710776"}, "pid": "2665", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:54.435339 2023-07-08 08:17:54.43535 6eacb468-f67d-45dc-832d-2ebbbebdb333 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/950729205"}, "pid": "2666", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:54.527635 2023-07-08 08:17:54.52764 375288f0-f70b-405d-a3b5-af7dda667792 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/950740136"}, "pid": "2667", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:54.614557 2023-07-08 08:17:54.614565 c2e9ba71-8d49-4228-a7e0-11be51ef97bb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/950740381"}, "pid": "2668", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:54.69682 2023-07-08 08:17:54.696823 e7749142-7055-45a5-aef1-f9c5cc0730c7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/950797855"}, "pid": "2669", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:54.783846 2023-07-08 08:17:54.783855 6d89725a-1b21-4997-b745-9c273189c0e1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95080617X"}, "pid": "2670", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:54.874196 2023-07-08 08:17:54.874207 252dd3ce-352a-4fe1-bdfe-07a48a8e609d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/950819603"}, "pid": "2671", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:54.965204 2023-07-08 08:17:54.965216 b98a7928-92ee-47df-b2fa-cfb518521cb1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/950857696"}, "pid": "2672", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:55.081062 2023-07-08 08:17:55.081072 d4630408-f0ee-4408-b4c8-b036b4b46f43 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951162322"}, "pid": "2673", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:55.185529 2023-07-08 08:17:55.185532 47e477b1-18b4-444b-9850-8adaae6cfef8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951185314"}, "pid": "2674", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:55.282415 2023-07-08 08:17:55.282422 7db59fa8-b244-4abe-aa6a-781762bebfd7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951226029"}, "pid": "2675", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:55.352627 2023-07-08 08:17:55.35263 b48571aa-50c3-4ac7-ad3a-fafbeff260df {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951229982"}, "pid": "2676", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:55.421139 2023-07-08 08:17:55.421142 0da8abe7-236e-44c6-991d-33cbaa165c1b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95123272X"}, "pid": "2677", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:55.501783 2023-07-08 08:17:55.501796 23b0564c-a1ae-43dd-b015-a08f9997bdb5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95125023X"}, "pid": "2678", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:55.592095 2023-07-08 08:17:55.592103 2fee1bca-92de-47e0-9ce5-ce9764e53aa6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951301330"}, "pid": "2679", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:55.702096 2023-07-08 08:17:55.702105 e7044673-45b1-47fb-aad6-cb423ef9cca0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951303139"}, "pid": "2680", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:55.798303 2023-07-08 08:17:55.798313 ddb8a48f-b25c-49ee-ac05-90f9e3a8a2d0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951745956"}, "pid": "2681", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:55.885197 2023-07-08 08:17:55.885206 079cd4c3-fe18-411c-bb93-0693a8ada84f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951762990"}, "pid": "2682", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:55.980955 2023-07-08 08:17:55.980964 7bee0b86-d1cd-46cf-a815-d5c3931243c3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951789252"}, "pid": "2683", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:56.067154 2023-07-08 08:17:56.067161 83771fe4-a4c0-4cb0-8a89-416cb18d6d90 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951803328"}, "pid": "2684", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:56.157383 2023-07-08 08:17:56.157386 2e57fd9a-9549-4b3a-906a-aa0e84ddcc13 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951803921"}, "pid": "2685", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:56.224307 2023-07-08 08:17:56.22431 d70c75cc-1938-433f-9c8c-22c5025940e6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951806084"}, "pid": "2686", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:56.313899 2023-07-08 08:17:56.313908 11e025b2-2bcb-4171-9b59-0e18c9505c53 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951828673"}, "pid": "2687", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:56.408328 2023-07-08 08:17:56.408336 561d2a85-d742-4297-b7c7-a9f595f6c05d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951838482"}, "pid": "2688", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:56.489486 2023-07-08 08:17:56.48949 0fa80653-47d0-49de-ac93-29f9a3882735 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951842676"}, "pid": "2689", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:56.58062 2023-07-08 08:17:56.580631 27a589a7-9233-4ff8-911e-718fed741e62 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951852043"}, "pid": "2690", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:56.656935 2023-07-08 08:17:56.656941 591aace0-a8ab-4c8f-9b7d-c4278328d078 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951854194"}, "pid": "2691", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:56.755914 2023-07-08 08:17:56.755922 0f672cb9-aa4a-4e0b-b2fb-e63b21c25b49 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951894048"}, "pid": "2692", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:56.864325 2023-07-08 08:17:56.864332 28f57880-f470-40a5-862d-cf1fee254417 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951894692"}, "pid": "2693", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:56.951092 2023-07-08 08:17:56.951095 e6e24f90-5ef4-4192-b932-cc2bf6dd5e32 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951913441"}, "pid": "2694", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:57.04019 2023-07-08 08:17:57.040197 bf0b5e7f-9ab5-40d2-a6a2-6b484417d126 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951920553"}, "pid": "2695", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:57.155224 2023-07-08 08:17:57.15523 3b3b05bf-c4b2-494a-bcbc-3923eb3ad871 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951921258"}, "pid": "2696", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:57.24088 2023-07-08 08:17:57.240889 f7291c06-7879-4ab2-8c71-9d91e606122a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951945491"}, "pid": "2697", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:57.334224 2023-07-08 08:17:57.334227 5a1dbbb7-07f7-42a8-90d7-989d77886da3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951947915"}, "pid": "2698", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:57.419189 2023-07-08 08:17:57.419199 c389f3e2-5625-4867-868c-5086c98cad86 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952056763"}, "pid": "2699", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:57.52307 2023-07-08 08:17:57.523079 4647188a-3f47-4a15-9579-d2a43e387eec {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952070308"}, "pid": "2700", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:57.61287 2023-07-08 08:17:57.612879 bc701df6-b4d8-46e7-a3b0-a2cddbed48c0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952091542"}, "pid": "2701", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:57.704416 2023-07-08 08:17:57.704419 8091fe22-38ed-4f43-9553-84ca5c974322 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952101173"}, "pid": "2702", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:57.802076 2023-07-08 08:17:57.802086 8f93ca89-aeb8-42b4-aef7-a5c40b856d8e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952199718"}, "pid": "2703", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:57.905602 2023-07-08 08:17:57.905609 9c68fa68-4c6f-4dc6-b741-b26bd66911bb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952207990"}, "pid": "2704", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:58.014168 2023-07-08 08:17:58.014177 f409ca22-7adb-4657-bd5c-487b26b32a8f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952241684"}, "pid": "2705", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:58.105971 2023-07-08 08:17:58.105984 69c4cbe5-5b52-432e-a797-48699775ff45 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952265168"}, "pid": "2706", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:58.203061 2023-07-08 08:17:58.20307 325085b7-ac75-40f6-8152-1360a423e989 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952327511"}, "pid": "2707", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:58.302342 2023-07-08 08:17:58.302355 7f07d2da-8323-43a2-87fe-49f5b164dffb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95232752X"}, "pid": "2708", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:58.38471 2023-07-08 08:17:58.384718 2c34d5d3-294d-4570-9da8-b1339821e05f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952354527"}, "pid": "2709", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:58.455933 2023-07-08 08:17:58.455935 1f25c9a5-b10b-4877-a3ec-dc2247c2544d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952354969"}, "pid": "2710", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:58.531208 2023-07-08 08:17:58.531212 31430106-18b8-42a9-83ab-aaa17e46c941 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952358492"}, "pid": "2711", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:58.606451 2023-07-08 08:17:58.606459 a8a4bec7-4aad-4091-a628-dff7ab47dca4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952379546"}, "pid": "2712", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:58.695976 2023-07-08 08:17:58.695979 ffedd3c7-6d5b-4655-a47a-2e375b38761b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952419351"}, "pid": "2713", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:58.783013 2023-07-08 08:17:58.783028 b19b07c0-61af-4ae7-a892-f5f93df033e1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952481464"}, "pid": "2714", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:58.881639 2023-07-08 08:17:58.881652 efc30ad0-d79d-4cf5-8145-8fba7c77e7b3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952489546"}, "pid": "2715", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:58.989245 2023-07-08 08:17:58.989254 3cbe1958-1070-448e-b666-38d86700f699 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952503980"}, "pid": "2716", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:59.075863 2023-07-08 08:17:59.075875 9eca5c56-5aef-459d-9649-4fe70b1434ce {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95250538X"}, "pid": "2717", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:59.166352 2023-07-08 08:17:59.166355 5ef798db-6bb0-42f1-b600-bb72ad6139f0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952510995"}, "pid": "2718", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:59.235662 2023-07-08 08:17:59.235665 8f8b4618-8052-45c7-802e-6e5422a6a4b9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95251592X"}, "pid": "2719", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:59.322083 2023-07-08 08:17:59.322091 38b1ee68-aac7-4db6-9052-39cb76a500e3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952534924"}, "pid": "2720", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:59.40903 2023-07-08 08:17:59.409039 5a672dfa-2b26-4b39-abe2-db509b944cd3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952540428"}, "pid": "2721", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:59.497626 2023-07-08 08:17:59.497638 7567b6b3-9f50-4b11-91ab-e49ce348b4e0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952541084"}, "pid": "2722", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:59.596532 2023-07-08 08:17:59.596541 f98b0125-6785-485c-b47c-e703faf0837e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952542811"}, "pid": "2723", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:59.696794 2023-07-08 08:17:59.696798 d49c3d0f-3549-479a-8298-bf6dd7ae27a2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952543141"}, "pid": "2724", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:59.788538 2023-07-08 08:17:59.788547 dce83626-5c71-48ec-ab2b-c1b4ae75e638 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952571315"}, "pid": "2725", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:59.878768 2023-07-08 08:17:59.878777 16432876-e716-4df1-9855-93c94d508d81 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952607549"}, "pid": "2726", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:59.979686 2023-07-08 08:17:59.979695 4a52c289-bf24-4d06-80de-bc6abd35de4b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952616270"}, "pid": "2727", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:00.06944 2023-07-08 08:18:00.069448 79979563-26a9-40c0-8733-af7eeb00c42b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952753294"}, "pid": "2728", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:00.166426 2023-07-08 08:18:00.166433 cb08c351-a68f-40ef-81ff-9250149db206 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952753537"}, "pid": "2729", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:00.236817 2023-07-08 08:18:00.23682 6836bc9a-57cd-4805-86c5-a81592091a75 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952754606"}, "pid": "2730", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:00.323319 2023-07-08 08:18:00.323328 f54a7ced-268d-4c56-bb23-94792db7125e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952918838"}, "pid": "2731", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:00.413662 2023-07-08 08:18:00.413669 100ff0e3-d465-467a-81f1-eeb5e2950726 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952923793"}, "pid": "2732", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:00.500992 2023-07-08 08:18:00.501004 2ce7ae3c-5c9e-471b-963f-01f513a18543 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/953095746"}, "pid": "2733", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:00.596894 2023-07-08 08:18:00.596909 12f726eb-3ba2-4df7-92ce-6b1462249286 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95311886X"}, "pid": "2734", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:00.689209 2023-07-08 08:18:00.689212 80b0fa96-4247-446e-bfd4-c4c2e07664d4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95315971X"}, "pid": "2735", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:00.77864 2023-07-08 08:18:00.778651 f8554de8-b9fc-46a4-9b0c-bb11d0e905c5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/953324559"}, "pid": "2736", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:00.953007 2023-07-08 08:18:00.95302 41939775-c898-4fd5-8357-b197879fdcee {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/953324974"}, "pid": "2737", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:01.051781 2023-07-08 08:18:01.051792 7e8539e7-e877-4394-8696-b76f85d7938b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/953476359"}, "pid": "2738", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:01.154526 2023-07-08 08:18:01.154533 43d233ae-ceb4-4c64-9cec-e65b088f0471 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/953477061"}, "pid": "2739", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:01.251229 2023-07-08 08:18:01.251243 d16fe75c-de4a-4401-91da-558913d198bf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/953483401"}, "pid": "2740", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:01.35822 2023-07-08 08:18:01.358228 4134eb3a-2f98-4ef1-8aea-89fccdba4f76 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/953537013"}, "pid": "2741", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:01.462723 2023-07-08 08:18:01.462734 7ab63a55-7b06-4e33-bb76-6669ff24db5d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95360795X"}, "pid": "2742", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:01.561266 2023-07-08 08:18:01.561271 6b4ab042-72ac-477e-b66d-ed2e84975532 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/953608573"}, "pid": "2743", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:01.651983 2023-07-08 08:18:01.651987 e0f62d94-d7d5-43c5-8c7c-22bbe8fcdcf5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95364474X"}, "pid": "2744", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:01.729494 2023-07-08 08:18:01.729498 b5077eca-ebee-4c71-b4f5-74f364283044 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/953644820"}, "pid": "2745", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:01.812939 2023-07-08 08:18:01.812949 437b0bfe-b1d8-4821-b293-d5f4d01937f0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/953669033"}, "pid": "2746", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:01.908739 2023-07-08 08:18:01.908748 5af7b1a4-ac83-48c3-a634-4f9a62e39690 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/953777839"}, "pid": "2747", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:01.99841 2023-07-08 08:18:01.998418 5c4f8324-2fc5-4a29-b4fa-22ee863bf5cf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/953979687"}, "pid": "2748", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:02.10028 2023-07-08 08:18:02.100288 ba4905ba-f4ac-42e1-a0de-dafa0bd8ea71 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/953980545"}, "pid": "2749", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:02.190911 2023-07-08 08:18:02.190917 b9476358-db95-4ea0-a157-1a2c17fc908c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954069773"}, "pid": "2750", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:02.280952 2023-07-08 08:18:02.280965 4291ebd5-d26b-4ab3-80d8-862bfcf7545d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954132491"}, "pid": "2751", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:02.367524 2023-07-08 08:18:02.367535 2e72b340-4161-4ccd-a21b-38a7426cb307 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954184165"}, "pid": "2752", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:02.462489 2023-07-08 08:18:02.462502 bda0940e-f903-44b5-93fc-da22621940f1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954255011"}, "pid": "2753", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:02.54666 2023-07-08 08:18:02.546667 c3f2b4a4-a1cf-4180-807e-438fc12ba84e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954328426"}, "pid": "2754", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:02.631979 2023-07-08 08:18:02.631987 40e34406-5a96-4ec2-b46c-904aec825154 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954330803"}, "pid": "2755", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:02.724866 2023-07-08 08:18:02.724872 40ad9cf9-c5f7-4af2-adea-5e8e2bf41fd8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954352610"}, "pid": "2756", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:02.81109 2023-07-08 08:18:02.811099 6cea7f63-f194-4114-aebe-b58958405c4b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954405250"}, "pid": "2757", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:02.917198 2023-07-08 08:18:02.917211 4bfe5c37-54ba-4ea5-820f-958796abafb6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954405986"}, "pid": "2758", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:03.005351 2023-07-08 08:18:03.005359 d4a82168-81b1-4c92-953a-03e87c7699de {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954495098"}, "pid": "2759", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:03.101633 2023-07-08 08:18:03.101643 b053e6d5-ba5c-4152-9496-77cf83d93ce7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954534530"}, "pid": "2760", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:03.196306 2023-07-08 08:18:03.19631 1edb53dc-076a-4f77-b1c7-b37d01c874f1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954535286"}, "pid": "2761", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:03.287075 2023-07-08 08:18:03.287082 9fde8537-5db0-4393-be3e-aea556e0ee5a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95454157X"}, "pid": "2762", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:03.387693 2023-07-08 08:18:03.387698 7e214a5d-5370-4371-a3c5-9a1da8d567e1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954552873"}, "pid": "2763", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:03.465709 2023-07-08 08:18:03.465712 9b3f4eb4-56c7-4c95-9b63-688fbfb7ac70 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954559592"}, "pid": "2764", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:03.554171 2023-07-08 08:18:03.55418 c09166cc-885e-42ee-95ca-09083c8a58f5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954569601"}, "pid": "2765", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:03.65229 2023-07-08 08:18:03.6523 039a71c5-30d0-4b20-befe-7366b24be749 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954571398"}, "pid": "2766", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:03.759235 2023-07-08 08:18:03.759244 aa4cc809-80ac-4a39-a68d-0d8297763eca {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954574354"}, "pid": "2767", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:03.858501 2023-07-08 08:18:03.858509 b383518a-4ae1-494a-aca3-0b5fb10f15ae {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954587693"}, "pid": "2768", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:03.948408 2023-07-08 08:18:03.948416 f0b2cd31-dff1-42b3-9ea0-79ec27fbfb53 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954589262"}, "pid": "2769", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:04.043964 2023-07-08 08:18:04.043977 d8efbb38-24f0-4bbd-af53-82adb4247b72 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954590848"}, "pid": "2770", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:04.146026 2023-07-08 08:18:04.146035 4716a690-694f-4487-869a-42718f921a7b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954619595"}, "pid": "2771", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:04.226469 2023-07-08 08:18:04.226472 e736a693-38fb-4ad6-8a85-bc96c17e20ae {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954621131"}, "pid": "2772", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:04.296998 2023-07-08 08:18:04.297007 ba17c0d2-efc5-4306-a01a-ae467a675a8e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954862805"}, "pid": "2773", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:04.393298 2023-07-08 08:18:04.393309 2c21d00b-7fef-41f0-89d4-cdba64765fe4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954863127"}, "pid": "2774", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:04.512792 2023-07-08 08:18:04.512803 054d14ec-79dd-4632-ae26-39bed782ac8f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954876539"}, "pid": "2775", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:04.614631 2023-07-08 08:18:04.614639 3a96e8c3-7918-423d-8300-6a5b3d2c98bd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954882571"}, "pid": "2776", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:04.70681 2023-07-08 08:18:04.706812 6ac65b63-5a39-4947-8e69-e32aea4adb74 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95500778X"}, "pid": "2777", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:04.794622 2023-07-08 08:18:04.794627 202dd749-926b-403a-9341-c0b84a256900 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/955030080"}, "pid": "2778", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:04.884031 2023-07-08 08:18:04.88405 8b2c3b95-cc45-4c89-9a6e-4ff845d19e41 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/955046475"}, "pid": "2779", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:04.98456 2023-07-08 08:18:04.984568 8e4dd831-d4d6-43a0-b434-ae4a3b1265c0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/955064813"}, "pid": "2780", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:05.085722 2023-07-08 08:18:05.085725 e3a18c0d-6115-44bf-aba4-4a42ba266d49 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/955092523"}, "pid": "2781", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:05.174604 2023-07-08 08:18:05.174615 1cfd2a28-ec3a-49c0-bdaa-31dcf7fe6879 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95511182X"}, "pid": "2782", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:05.267763 2023-07-08 08:18:05.267765 5eef5698-b0f8-4527-a635-1da921ef63a3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95511201X"}, "pid": "2783", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:05.359391 2023-07-08 08:18:05.359394 2130a881-e245-47ad-ae5a-6427b671e906 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/955116635"}, "pid": "2784", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:05.447079 2023-07-08 08:18:05.447082 0dd175c8-a020-4ca7-aadb-1c4ef2e614a8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/955119413"}, "pid": "2785", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:05.533163 2023-07-08 08:18:05.533171 5ba9da4e-5745-4b90-8e43-24fd5f3483be {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/955121647"}, "pid": "2786", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:05.607015 2023-07-08 08:18:05.607019 a713c00f-8590-4669-b53c-8f7ed7903fad {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/955190908"}, "pid": "2787", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:05.703369 2023-07-08 08:18:05.703373 ab15c6eb-1242-408b-be64-96861b965f77 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/955382378"}, "pid": "2788", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:05.806519 2023-07-08 08:18:05.80653 ab672991-92b4-471c-a7c1-064901242c72 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/955401976"}, "pid": "2789", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:05.899694 2023-07-08 08:18:05.899698 1f92d2dd-5a9f-4d95-b083-d913d49a18ca {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/955431425"}, "pid": "2790", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:05.996881 2023-07-08 08:18:05.99689 e334c40e-0253-4066-b0c5-d0a926c0839e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/955432774"}, "pid": "2791", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:06.086888 2023-07-08 08:18:06.0869 21b8e63f-c518-4099-8872-9f16db5e648c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/955611423"}, "pid": "2792", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:06.175606 2023-07-08 08:18:06.175615 a1384bdd-4d06-4a9e-8be3-1044f1c3ffd6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/955736374"}, "pid": "2793", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:06.24816 2023-07-08 08:18:06.248164 4eef885e-44eb-4acd-9a23-8fc27a0d9acf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/955740223"}, "pid": "2794", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:06.322493 2023-07-08 08:18:06.322501 453cc254-1f47-4054-858b-fde939a150d7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/955746256"}, "pid": "2795", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:06.41798 2023-07-08 08:18:06.41799 6d27369d-1ee1-47c5-8b6c-714400b5d80e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/955966566"}, "pid": "2796", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:06.523729 2023-07-08 08:18:06.523739 ff713889-96f1-4a9b-96ba-1624093afa86 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/956291279"}, "pid": "2797", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:06.616456 2023-07-08 08:18:06.616472 33c11369-509b-4aa9-8bf7-41e75265ff81 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/956483542"}, "pid": "2798", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:06.700775 2023-07-08 08:18:06.700778 aed5ae4f-85e3-4493-be53-c3ffdce5cd31 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/956528775"}, "pid": "2799", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:06.790505 2023-07-08 08:18:06.790507 5cc72a78-0de1-4479-b24b-81b6f60c5531 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/956529445"}, "pid": "2800", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:06.867108 2023-07-08 08:18:06.867112 6d523a69-57ac-4604-bbb7-b9a431f70f2f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/956539564"}, "pid": "2801", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:06.942053 2023-07-08 08:18:06.942057 9d0dfd0f-7e4b-45c8-a3b0-413dbbb7bfd5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/956546927"}, "pid": "2802", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:07.013656 2023-07-08 08:18:07.013659 9cc7b28a-da6c-4d0a-93b3-af9c8fbd5aa9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/956548660"}, "pid": "2803", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:07.082994 2023-07-08 08:18:07.082999 41b5761e-badf-4e99-91f7-b85b1112e938 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/956555225"}, "pid": "2804", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:07.15747 2023-07-08 08:18:07.157473 0ec3e926-95b8-4b74-9a1c-4eee2154feb2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/956579760"}, "pid": "2805", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:07.237523 2023-07-08 08:18:07.237526 5bb9b412-c1c1-4e7a-a3d9-b099b95812c3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/956627536"}, "pid": "2806", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:07.30564 2023-07-08 08:18:07.305643 5d9f251c-2ad0-41c2-9d33-198deb0354b4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/956749232"}, "pid": "2807", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:07.383257 2023-07-08 08:18:07.383268 603c4acf-13f7-490f-a1e4-e14f7aa75717 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95679615X"}, "pid": "2808", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:07.474166 2023-07-08 08:18:07.474175 59da7e9a-a079-4846-8111-4cd9449e9ef0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/956827195"}, "pid": "2809", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:07.569318 2023-07-08 08:18:07.569326 9fb9b86c-e7a3-4d12-8cd1-a4f6acde7554 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/956831044"}, "pid": "2810", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:07.656469 2023-07-08 08:18:07.656477 1340a2ff-31c1-49be-a1cd-3b55118ce0a9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/956917054"}, "pid": "2811", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:07.757417 2023-07-08 08:18:07.75743 bdd39c97-906e-4140-8b64-c98cb7e68733 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/956976999"}, "pid": "2812", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:07.854155 2023-07-08 08:18:07.854163 5202be30-112c-4e25-b6b9-6fd41e426a37 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/956990223"}, "pid": "2813", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:07.947158 2023-07-08 08:18:07.947163 7d07b712-d188-49f1-86fb-de2388217007 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/956994679"}, "pid": "2814", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:08.035616 2023-07-08 08:18:08.035623 ea0a1382-4d1e-401e-b5e8-5b88cb340eed {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957023235"}, "pid": "2815", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:08.136084 2023-07-08 08:18:08.136093 c1c1af2d-b760-4a94-add8-ab6fa6604d36 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957059590"}, "pid": "2816", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:08.212941 2023-07-08 08:18:08.212944 543e40db-d210-4ea9-af32-27bbdad87fc8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957060149"}, "pid": "2817", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:08.303787 2023-07-08 08:18:08.303796 dda19b49-1fe5-4bed-8255-4ee891f9dffe {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957075405"}, "pid": "2818", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:08.387406 2023-07-08 08:18:08.387409 b3732fc4-c5ae-49b0-b9c2-54d4a8193240 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957106408"}, "pid": "2819", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:08.487542 2023-07-08 08:18:08.48755 fbf9dc59-4730-4e11-af95-1f99487e30c2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957164599"}, "pid": "2820", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:08.580216 2023-07-08 08:18:08.580224 461fd14e-bef2-4b00-aece-8686ac6c5fd9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957177879"}, "pid": "2821", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:08.666446 2023-07-08 08:18:08.666455 edff8502-6f1a-4006-978e-dbe9cbe3d8a6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95717926X"}, "pid": "2822", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:08.769044 2023-07-08 08:18:08.769053 e26dd423-4ac4-4da9-bda2-48edcfcc5bf2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957186185"}, "pid": "2823", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:08.849104 2023-07-08 08:18:08.849107 dba4ab2b-0c35-4941-8ed7-9422926303cf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957223242"}, "pid": "2824", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:08.918567 2023-07-08 08:18:08.918571 df14a2e1-24d3-4ef1-bdeb-826cfb50f1c1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957263511"}, "pid": "2825", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:09.014311 2023-07-08 08:18:09.014319 c5b77c3b-23f0-4268-a85b-1fbaa069a79f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957268688"}, "pid": "2826", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:09.120272 2023-07-08 08:18:09.12028 63e9dfc1-5df3-4ba2-9141-d6a1c7fed89c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957348924"}, "pid": "2827", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:09.212105 2023-07-08 08:18:09.212108 fb68bd64-30b3-4c4c-b8a8-b947ca43a795 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957354096"}, "pid": "2828", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:09.298002 2023-07-08 08:18:09.29801 2fd198c8-0c42-45bc-a25e-e620ba2f667d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957365993"}, "pid": "2829", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:09.378562 2023-07-08 08:18:09.378566 87e135f6-e3d5-4e72-a0f9-e64fc867e239 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957382332"}, "pid": "2830", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:09.464073 2023-07-08 08:18:09.464077 172df8c3-fd3d-4841-9f78-996b3f4fbc02 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957433158"}, "pid": "2831", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:09.553009 2023-07-08 08:18:09.553017 408cfced-db72-4ad4-b9dc-d1172e396744 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95746214X"}, "pid": "2832", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:09.651981 2023-07-08 08:18:09.651991 7a6af26e-795f-4934-ab7a-70031b8b707f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957467303"}, "pid": "2833", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:09.746812 2023-07-08 08:18:09.746815 a0c436cc-9d0b-4747-8aed-aa85a9a349c5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957488548"}, "pid": "2834", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:09.833003 2023-07-08 08:18:09.833011 160baa95-9976-410e-afde-e595b32f5f42 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957490186"}, "pid": "2835", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:09.929805 2023-07-08 08:18:09.929815 1ed56795-e4ef-4999-b829-571a868765e0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957496729"}, "pid": "2836", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:10.021023 2023-07-08 08:18:10.02103 1800ce42-a56a-4cf8-b44e-a9c66976eb83 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957503083"}, "pid": "2837", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:10.118195 2023-07-08 08:18:10.118203 c0cf2179-c306-4ea4-b870-e04704f64689 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957506880"}, "pid": "2838", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:10.218146 2023-07-08 08:18:10.218149 f671e710-859d-41f3-b250-158f438cd303 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957853408"}, "pid": "2839", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:10.296084 2023-07-08 08:18:10.296088 8426e2c2-19ac-49d3-90d6-7a2ad8268808 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957923031"}, "pid": "2840", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:10.387426 2023-07-08 08:18:10.387436 3e19a9a0-ad57-412b-b83e-9c23c5ac04d4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95792755X"}, "pid": "2841", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:10.483454 2023-07-08 08:18:10.483469 4cce2ffc-2359-41d2-ad24-e2d416990e26 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957929331"}, "pid": "2842", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:10.564548 2023-07-08 08:18:10.564551 f26d8ac1-af65-464a-b4a8-913b15832270 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957935625"}, "pid": "2843", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:10.654547 2023-07-08 08:18:10.654554 9d8723e1-8089-40f5-9d60-73b5417cc3f3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957935900"}, "pid": "2844", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:10.739307 2023-07-08 08:18:10.73931 a057d5e7-c75d-4e63-8c12-864a6c9719df {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95794988X"}, "pid": "2845", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:10.828563 2023-07-08 08:18:10.828572 e5509177-769b-410d-9daf-91e1d428a43e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957954522"}, "pid": "2846", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:10.918416 2023-07-08 08:18:10.918418 96d6bc51-46de-45c8-b290-a180ea35d37a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95795624X"}, "pid": "2847", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:11.01728 2023-07-08 08:18:11.017288 54d1e7c2-1aa3-40ae-a045-f66d88dc59c4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957957114"}, "pid": "2848", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:11.117862 2023-07-08 08:18:11.117873 e0db7b40-2d1e-4404-b70d-bba67877ffe7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957962703"}, "pid": "2849", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:11.215403 2023-07-08 08:18:11.215405 ea9e71d7-43cf-4e45-98e3-44da724a3d66 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957973497"}, "pid": "2850", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:11.289317 2023-07-08 08:18:11.28932 a4f1122c-bf7e-4022-91d2-aab5ac564247 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95797728X"}, "pid": "2851", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:11.373687 2023-07-08 08:18:11.373694 98341341-366c-4c64-8607-d935c96ba8c4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/958006873"}, "pid": "2852", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:11.469262 2023-07-08 08:18:11.469271 6b7ebf1e-3ac6-4dc6-8419-db7a4a6813bf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/958094160"}, "pid": "2853", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:11.562914 2023-07-08 08:18:11.562921 9a50cf31-c396-407d-be4b-9208d769192e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/958490139"}, "pid": "2854", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:11.660266 2023-07-08 08:18:11.660276 3e2af490-4e82-4914-979f-5f17162cab66 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95858012X"}, "pid": "2855", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:11.737156 2023-07-08 08:18:11.737159 201f2849-1a99-4604-aabf-fd7a23822615 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/958686424"}, "pid": "2856", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:43.684211 2023-07-08 08:22:43.68422 952622a3-bf53-4c69-9b8c-0c22b91d2923 {"pid": "5400", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243602049"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:11.893488 2023-07-08 08:18:11.893492 66a73bcb-0073-428c-9408-8efd9838e11b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/958942900"}, "pid": "2858", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:11.975311 2023-07-08 08:18:11.975319 74b49ba2-f069-4745-8b76-ee1757ecfbdb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/958945861"}, "pid": "2859", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:12.064758 2023-07-08 08:18:12.064768 e888e31d-d9a3-43e3-9704-f27910ebdd59 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/959006028"}, "pid": "2860", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:12.175171 2023-07-08 08:18:12.175175 9d3a9d00-0c09-44cd-9b69-32925f281679 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/959176918"}, "pid": "2861", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:12.25403 2023-07-08 08:18:12.254039 483c0960-f11e-4778-b66c-982bef04ef8d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/959194975"}, "pid": "2862", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:12.337133 2023-07-08 08:18:12.337136 d9815a73-e83d-4217-9b8b-fc525ad703bd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/959280944"}, "pid": "2863", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:12.429825 2023-07-08 08:18:12.42983 df15e68d-c027-4547-94e9-c129c2734128 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/959307338"}, "pid": "2864", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:12.517475 2023-07-08 08:18:12.517487 404d573c-889c-41a2-883d-9b4638ab608c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95933727X"}, "pid": "2865", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:12.603673 2023-07-08 08:18:12.603681 e2d39823-8061-4f7c-af89-5b041464f1dc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/959433953"}, "pid": "2866", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:12.690608 2023-07-08 08:18:12.690615 8520d050-26e7-4e95-9563-cbfbeaf56cb5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/959524215"}, "pid": "2867", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:12.783751 2023-07-08 08:18:12.783756 c19ff711-49b2-4870-82cf-a328429a9d9e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/959547916"}, "pid": "2868", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:12.864058 2023-07-08 08:18:12.864067 fa378912-e32d-4470-8373-d3c11a590b9b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/959585605"}, "pid": "2869", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:12.963697 2023-07-08 08:18:12.963707 7fba014c-bec1-442b-a437-5b638278edc8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/959713697"}, "pid": "2870", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:13.063857 2023-07-08 08:18:13.063865 282bb8fc-052a-4f2a-8b8b-6de583e630f4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/959734708"}, "pid": "2871", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:13.148089 2023-07-08 08:18:13.148101 4671ef4d-b56a-4785-af14-64d78cf4ebd9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/959910808"}, "pid": "2872", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:13.230231 2023-07-08 08:18:13.230234 fb9d99d3-2859-4840-b9c6-8c69b8d95722 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/960094873"}, "pid": "2873", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:13.318071 2023-07-08 08:18:13.318083 41ccbc54-2ce3-431b-be61-91a075e61482 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/960193812"}, "pid": "2874", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:13.406097 2023-07-08 08:18:13.406103 08d36c06-b283-408f-98cf-804b96f2c08a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/960331077"}, "pid": "2875", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:13.516124 2023-07-08 08:18:13.516133 5a3ac2e1-ab97-49a8-b296-0ea902df7496 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/960331166"}, "pid": "2876", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:13.6127 2023-07-08 08:18:13.612708 5e329618-85ed-41b0-95fa-d1977a486ff7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/960373527"}, "pid": "2877", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:13.711298 2023-07-08 08:18:13.711304 ad92aaa4-a28d-4ce1-8c39-0fbb00ea1b6e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/960554440"}, "pid": "2878", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:13.814849 2023-07-08 08:18:13.814857 008130fe-a5ee-4692-aaf5-fe3bcb1344c8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/96055646X"}, "pid": "2879", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:13.905102 2023-07-08 08:18:13.905104 4c6a9087-0186-4973-8dcc-1ecc739f7c87 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/96056814X"}, "pid": "2880", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:13.999007 2023-07-08 08:18:13.99901 97707ea2-7a2c-49be-9d24-6b9c4f1090db {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/960574298"}, "pid": "2881", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:14.100915 2023-07-08 08:18:14.100918 0e7e0faf-5589-4500-9568-6543d8173cab {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/960693785"}, "pid": "2882", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:14.190455 2023-07-08 08:18:14.190459 46138372-254f-4aa1-8e10-823fa4f48940 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/960722157"}, "pid": "2883", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:14.261399 2023-07-08 08:18:14.261403 56bdff00-f967-45af-aea8-c122dad9f06b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/960794093"}, "pid": "2884", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:14.357631 2023-07-08 08:18:14.35764 8bf3dac1-dde6-4c07-924c-a3aa14d0932d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/960796878"}, "pid": "2885", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:14.440371 2023-07-08 08:18:14.440375 340728bd-d720-4e4e-9271-1331c9d93814 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/960807128"}, "pid": "2886", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:14.533446 2023-07-08 08:18:14.533458 17e77489-1818-4019-85fb-98348ef55806 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/960812989"}, "pid": "2887", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:14.615361 2023-07-08 08:18:14.615364 b51c8620-135e-48cc-ab86-f7587c5cdcf5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/960819177"}, "pid": "2888", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:14.70071 2023-07-08 08:18:14.700721 d0ebdb96-21fd-4a57-a667-76ca9d7ddc26 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/960819541"}, "pid": "2889", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:14.792788 2023-07-08 08:18:14.792797 3e3c9e4e-cbae-47ec-82b0-9b5f4641372a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/960823271"}, "pid": "2890", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:14.89714 2023-07-08 08:18:14.897152 1a5497fc-58bc-4d6d-af62-ef67fb233952 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/960928995"}, "pid": "2891", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:14.981944 2023-07-08 08:18:14.981955 7c45ea15-a892-40ea-aa27-9730e6a83738 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961071435"}, "pid": "2892", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:15.071475 2023-07-08 08:18:15.071483 8f1738e7-7e23-4639-9e4d-7f632b0ee7f0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/96107177X"}, "pid": "2893", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:15.169265 2023-07-08 08:18:15.169273 667da5ce-913e-4139-9241-66367d08d717 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961077816"}, "pid": "2894", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:15.255276 2023-07-08 08:18:15.255278 cc081c62-597f-4651-a810-a86cb14c02f1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961083387"}, "pid": "2895", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:15.345899 2023-07-08 08:18:15.345907 4bce365a-06cc-4b21-a9fa-62d977a502fb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961086882"}, "pid": "2896", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:15.446447 2023-07-08 08:18:15.446458 01485aa3-d8e9-4fc7-8772-ecdf2e671070 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961106565"}, "pid": "2897", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:15.524062 2023-07-08 08:18:15.524071 40567258-2903-4402-986b-d4273b625ccf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961106646"}, "pid": "2898", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:15.612724 2023-07-08 08:18:15.612736 af5ee09b-e26a-4cc2-a126-19a2e2d39fd2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961106840"}, "pid": "2899", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:15.706149 2023-07-08 08:18:15.70616 7a7cfae6-16a1-42c7-9bad-2cf3b1ed65b9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961293950"}, "pid": "2900", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:15.809231 2023-07-08 08:18:15.809241 f013397b-d88c-4983-9919-b661ef7b0c15 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961300515"}, "pid": "2901", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:15.897759 2023-07-08 08:18:15.897769 49d55153-7644-407a-a872-9836db7256d0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961328495"}, "pid": "2902", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:15.998091 2023-07-08 08:18:15.998099 06690774-2054-47b1-9500-f1ddfd95b830 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961329653"}, "pid": "2903", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:16.08687 2023-07-08 08:18:16.086879 8bb0e138-8498-4dd4-9701-fad0823c239e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961333065"}, "pid": "2904", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:16.175806 2023-07-08 08:18:16.175819 1cac8647-344c-439f-a7a0-03f13fa374f3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961337893"}, "pid": "2905", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:16.265995 2023-07-08 08:18:16.266006 98c09065-1d54-43b0-a123-aee4bb5d27ff {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961342153"}, "pid": "2906", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:16.357258 2023-07-08 08:18:16.357266 e21abf07-182f-462e-a715-6ad37904275f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961397047"}, "pid": "2907", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:16.44877 2023-07-08 08:18:16.448779 0f8b6fbc-ead2-434a-b0b3-26cde0f452de {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961400803"}, "pid": "2908", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:16.539031 2023-07-08 08:18:16.539045 99cb3370-1761-4cd7-8efa-abc765d6c5f7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961589809"}, "pid": "2909", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:16.633081 2023-07-08 08:18:16.633091 62651117-8fbd-4533-bfce-61a312381838 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961631171"}, "pid": "2910", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:16.710787 2023-07-08 08:18:16.71079 80475ad9-00eb-4981-997e-177bc878bbb2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961636270"}, "pid": "2911", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:16.792374 2023-07-08 08:18:16.792383 35f4f815-c04f-4e1e-8bd6-3244a047c4b3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961646969"}, "pid": "2912", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:16.883976 2023-07-08 08:18:16.883981 277fb3a9-859f-47c2-97ef-d3f173e0fa9d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961652276"}, "pid": "2913", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:16.969853 2023-07-08 08:18:16.969856 f48852eb-3c64-49aa-99b8-8a4bac31fa8a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961659645"}, "pid": "2914", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:17.04185 2023-07-08 08:18:17.041857 107fae20-4f18-41ef-9299-d2b2d95f1e1b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961729155"}, "pid": "2915", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:17.132751 2023-07-08 08:18:17.132754 149dbe49-dfe9-41c0-b281-e5064bd5c18e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961784334"}, "pid": "2916", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:17.222523 2023-07-08 08:18:17.222526 38c9c584-b113-4091-86ff-ebb1a5417077 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961792426"}, "pid": "2917", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:17.318051 2023-07-08 08:18:17.318059 12ecfa6e-46eb-4113-a9d8-ad8d014a61ef {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961797568"}, "pid": "2918", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:17.412255 2023-07-08 08:18:17.41226 aad94967-8d68-4ce0-a4a2-aeb06d51a864 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961798025"}, "pid": "2919", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:17.506024 2023-07-08 08:18:17.506033 8336c219-75a7-4212-93eb-700127dcf3ab {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962037141"}, "pid": "2920", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:17.613638 2023-07-08 08:18:17.613649 793ff995-ce2b-4a1d-8dd0-33227ecc1500 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962243477"}, "pid": "2921", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:17.706708 2023-07-08 08:18:17.706719 0ddc657f-9b0b-4dcd-bd94-c078252083cc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962251968"}, "pid": "2922", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:17.802811 2023-07-08 08:18:17.802819 a1654e8c-3886-4bc3-ad27-39c05f928bdc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/96233359X"}, "pid": "2923", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:17.899734 2023-07-08 08:18:17.899742 8f978990-7061-41f2-9ddd-8b6c360bd9d2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962390097"}, "pid": "2924", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:18.006006 2023-07-08 08:18:18.006013 4c7cd28f-c9a3-4948-9754-a1d87a7cb809 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962446440"}, "pid": "2925", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:18.099258 2023-07-08 08:18:18.099267 ee988c7c-a335-46f4-af7a-89c51fdd03f9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962450170"}, "pid": "2926", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:18.204047 2023-07-08 08:18:18.204054 1aa98863-6b63-4b3f-81f5-87a4e306d6a7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962470929"}, "pid": "2927", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:18.302133 2023-07-08 08:18:18.30214 603d37bd-5481-4870-8d08-6001e6ab3de3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/96247357X"}, "pid": "2928", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:18.38959 2023-07-08 08:18:18.389602 0fec210e-a659-4a51-a04f-8c0ddedeba4b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962498726"}, "pid": "2929", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:18.485105 2023-07-08 08:18:18.485108 9e2ecc43-139d-4505-a1c5-db75e874dd06 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962506168"}, "pid": "2930", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:18.577991 2023-07-08 08:18:18.578029 f0ee18f4-7a4c-4fa1-b2fa-b9f37f64b9bf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/96251716X"}, "pid": "2931", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:18.668428 2023-07-08 08:18:18.668436 a9ed59dd-067f-40d3-8ebf-e48ff2baf268 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/96252736X"}, "pid": "2932", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:18.75602 2023-07-08 08:18:18.756028 00e1f9ea-0544-44a7-8f8e-2f8f66120482 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962530328"}, "pid": "2933", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:18.836397 2023-07-08 08:18:18.8364 02e36d42-07aa-4ea0-8349-13ae64d235b1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962533300"}, "pid": "2934", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:18.918783 2023-07-08 08:18:18.918792 45e18d55-8cec-4017-9642-ce94ef254cec {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962540196"}, "pid": "2935", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:19.015686 2023-07-08 08:18:19.015696 c6944d91-3ffe-4fab-9c26-bbc5c2161c90 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962545295"}, "pid": "2936", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:19.10661 2023-07-08 08:18:19.106617 326cb412-0290-426b-b4e8-36e682a8fa22 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962552380"}, "pid": "2937", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:19.193169 2023-07-08 08:18:19.193181 1f8f2500-7f3b-497f-81a4-e3bded24d1b4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962552569"}, "pid": "2938", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:19.272006 2023-07-08 08:18:19.272014 04cf387f-1e03-4a90-90c4-00fcf5561387 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962557110"}, "pid": "2939", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:19.359724 2023-07-08 08:18:19.359732 4d01ee93-ef70-435e-88f2-8e00c10a16ee {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962558931"}, "pid": "2940", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:19.44761 2023-07-08 08:18:19.447623 a4ba99ae-f073-4a33-8aa1-3549cad8cc9e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962559512"}, "pid": "2941", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:19.536701 2023-07-08 08:18:19.536704 1eff6dd8-7d77-4aa6-be84-d66962204871 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962562688"}, "pid": "2942", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:19.624485 2023-07-08 08:18:19.624489 39f7e33b-7067-440d-82f8-e4457b6ea689 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962582697"}, "pid": "2943", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:19.712347 2023-07-08 08:18:19.712355 480f85aa-6358-49ef-9834-aa64ce2754e3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962587087"}, "pid": "2944", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:19.81273 2023-07-08 08:18:19.812734 5084ac6c-6bfc-4a08-9419-4e9ea4e9ae43 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962615838"}, "pid": "2945", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:19.886389 2023-07-08 08:18:19.886392 6ac74bb0-5aea-40fd-af07-2cbbee582a79 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962626554"}, "pid": "2946", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:19.96714 2023-07-08 08:18:19.967156 a0ea49c9-c89e-4f9b-899a-cf0f0ff13d7a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/96263025X"}, "pid": "2947", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:20.055172 2023-07-08 08:18:20.05518 fe009840-36eb-410b-ae13-bb54c68afc70 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962632058"}, "pid": "2948", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:20.14774 2023-07-08 08:18:20.147749 9f176f3f-e36d-4637-b0b6-7797ea9f607c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962637289"}, "pid": "2949", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:20.233355 2023-07-08 08:18:20.233358 7264e724-ba6e-45e3-81a2-256df9631861 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962660914"}, "pid": "2950", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:20.322958 2023-07-08 08:18:20.32297 3d09f326-e048-4524-a232-401b3e3e6c11 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/96266734X"}, "pid": "2951", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:20.420099 2023-07-08 08:18:20.420102 e95ca1c0-0358-45ac-bee6-0830574e96db {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962668389"}, "pid": "2952", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:20.521294 2023-07-08 08:18:20.521301 4d3cacbb-20de-405d-a1ca-c43ec1fd12d1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962669881"}, "pid": "2953", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:20.615672 2023-07-08 08:18:20.615685 93d0d4a7-4872-40ff-a5f8-a6cf8ca57f0a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962941042"}, "pid": "2954", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:20.706019 2023-07-08 08:18:20.706027 98e73f1e-a300-4f7c-a315-60ccd3d98043 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962948918"}, "pid": "2955", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:20.777718 2023-07-08 08:18:20.777721 ae0338d2-dbfc-4ad9-a586-ab30dff4cf45 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/96303409X"}, "pid": "2956", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:20.864546 2023-07-08 08:18:20.864554 9806a83d-1573-40ec-a4ad-6ddadcc8f1ef {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963066536"}, "pid": "2957", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:20.952947 2023-07-08 08:18:20.952955 15e69743-b44f-4455-90cb-cfd559eaf3b8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963134205"}, "pid": "2958", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:21.048444 2023-07-08 08:18:21.048452 fe5d1cda-5aff-4728-9a9b-724ed068f704 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963138812"}, "pid": "2959", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:21.140677 2023-07-08 08:18:21.140684 81bae117-b0bf-4ad4-a24f-55475f2a495c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963139460"}, "pid": "2960", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:21.229088 2023-07-08 08:18:21.229092 01b70fb3-46de-4331-8dd4-c4e97f10ecda {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963225332"}, "pid": "2961", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:21.334452 2023-07-08 08:18:21.33446 4c9025d9-29a8-406f-91d5-89b7e87ea219 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963233599"}, "pid": "2962", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:21.411398 2023-07-08 08:18:21.411413 595ce7bc-6f9c-4ff6-8a9b-8e3669a390d4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963261959"}, "pid": "2963", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:21.502884 2023-07-08 08:18:21.502895 e07d4eec-c084-4016-ab43-c9dbfeb0e42e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963262246"}, "pid": "2964", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:21.604991 2023-07-08 08:18:21.604998 7148f9db-0aeb-4c77-9776-1a6e32b03636 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963262513"}, "pid": "2965", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:21.689353 2023-07-08 08:18:21.689356 e438c7e2-d659-4c10-8485-3946e7f50258 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963299433"}, "pid": "2966", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:21.770501 2023-07-08 08:18:21.770505 f45bd4a9-986a-4397-af08-69e0471123bf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963317040"}, "pid": "2967", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:21.87221 2023-07-08 08:18:21.872217 d319b73a-fa73-489b-ab26-e077e15cc895 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963320343"}, "pid": "2968", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:21.966923 2023-07-08 08:18:21.966931 71872810-5514-4520-93e2-846a6a983e34 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963327666"}, "pid": "2969", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:22.068979 2023-07-08 08:18:22.068991 74fed2f9-d8b8-4dd8-9de2-a59030937580 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963329812"}, "pid": "2970", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:22.171476 2023-07-08 08:18:22.171488 21b5cd65-2231-4688-b0fa-632b91986a6b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963342177"}, "pid": "2971", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:22.257886 2023-07-08 08:18:22.257891 b2ae93b6-cb60-4bf2-9e71-8d4d61f03efb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963342231"}, "pid": "2972", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:22.358324 2023-07-08 08:18:22.358334 183108f3-499f-42a0-8de9-20aebab25cdb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963348442"}, "pid": "2973", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:22.449959 2023-07-08 08:18:22.449969 ced11fbc-3575-48ce-9c43-6ee30877f155 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963366785"}, "pid": "2974", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:22.539216 2023-07-08 08:18:22.539219 92f742b1-b662-401e-934c-4cd2d6b5a74c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963367781"}, "pid": "2975", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:22.63057 2023-07-08 08:18:22.630575 1a8ab94e-dd0a-498e-979c-57c7cbca9e52 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963388673"}, "pid": "2976", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:22.729675 2023-07-08 08:18:22.729679 afd516be-2b8c-4373-9ab5-ff5f8c7170d1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963410849"}, "pid": "2977", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:22.817336 2023-07-08 08:18:22.817351 9176bd58-6ca4-4366-ac9f-efabfa54edde {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963529137"}, "pid": "2978", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:22.916695 2023-07-08 08:18:22.916708 ed517a96-dc7a-4a57-9696-660e298e74ac {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963600346"}, "pid": "2979", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:23.017766 2023-07-08 08:18:23.017776 e9b454f4-68d6-415f-8302-4a7fd096ebb2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/96365778X"}, "pid": "2980", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:23.123518 2023-07-08 08:18:23.123526 5fe59028-9157-4f8f-8229-5612d3702df1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963822977"}, "pid": "2981", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:23.212451 2023-07-08 08:18:23.212462 00dc7705-6371-4718-bb7d-c5c69629e7c9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963823388"}, "pid": "2982", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:23.283445 2023-07-08 08:18:23.283448 d10f33ac-7ae3-452f-bcc9-37d9e945b7f2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963837532"}, "pid": "2983", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:23.366513 2023-07-08 08:18:23.36652 50be9687-1535-4f9b-a92f-208dc3027eec {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963859803"}, "pid": "2984", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:23.472422 2023-07-08 08:18:23.472431 1ca098e0-3037-47b4-979c-c9f3da7025a7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963859811"}, "pid": "2985", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:23.551187 2023-07-08 08:18:23.551189 ac14937e-64b9-41e9-9b6a-6ce506b96eac {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/964213427"}, "pid": "2986", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:23.636065 2023-07-08 08:18:23.636073 3cfe27da-6f67-460e-8d19-fa9457d2fe8e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/964214407"}, "pid": "2987", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:23.736397 2023-07-08 08:18:23.736403 164bf4ee-9772-40b0-a7e4-e4f5807c8480 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/964225581"}, "pid": "2988", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:23.819055 2023-07-08 08:18:23.819063 d055a042-de84-4c99-aced-605e0200b20e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/964319020"}, "pid": "2989", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:23.908666 2023-07-08 08:18:23.908675 0fcdd759-aa22-40ef-bdad-fb4fb266ed88 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/964322153"}, "pid": "2990", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:24.0035 2023-07-08 08:18:24.00351 1ee01f6a-be24-4d56-9b60-a198783ad540 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/964379473"}, "pid": "2991", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:24.088656 2023-07-08 08:18:24.088658 aa238dfa-2922-4338-940f-23327f4308ff {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/964421984"}, "pid": "2992", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:24.17117 2023-07-08 08:18:24.171178 923b5fad-27ea-4090-b82d-c53a3b3a6770 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/964495376"}, "pid": "2993", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:24.25263 2023-07-08 08:18:24.252633 6ebe4911-4cf0-4caf-bea0-b5aec4e6d095 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/964501090"}, "pid": "2994", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:24.339026 2023-07-08 08:18:24.339044 187283c7-9d8e-4247-a856-7ff76d04716b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/964564491"}, "pid": "2995", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:24.433282 2023-07-08 08:18:24.433291 ff6d7189-838c-459a-9dab-174001a5fa53 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/964647222"}, "pid": "2996", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:24.516014 2023-07-08 08:18:24.516023 bf74ac87-b1e5-4542-9369-b18f75a89ea6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/964653613"}, "pid": "2997", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:24.619434 2023-07-08 08:18:24.619443 d7f83323-1e02-419a-90c9-1e1122580512 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/964715619"}, "pid": "2998", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:24.710738 2023-07-08 08:18:24.710747 fef5678f-0a0d-4d55-99e4-ae9c2a20fc1e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/964855380"}, "pid": "2999", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:24.790682 2023-07-08 08:18:24.79069 fda0d463-8e61-4d64-87bb-65b240cf6377 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/964861135"}, "pid": "3000", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:24.910824 2023-07-08 08:18:24.910828 c5098176-52c6-4e14-8591-0abb7b7c7393 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/96503545X"}, "pid": "3001", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:24.994922 2023-07-08 08:18:24.994927 ebfe3caa-a576-4ec1-9d37-1191e425d3b8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/965091961"}, "pid": "3002", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:25.085186 2023-07-08 08:18:25.085197 13d9fe47-79cb-4558-a384-6e23768a6016 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/965120449"}, "pid": "3003", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:25.178979 2023-07-08 08:18:25.178988 e0a04dc3-3a97-4fee-af4e-09d0dc79e835 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/965135217"}, "pid": "3004", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:25.268434 2023-07-08 08:18:25.268443 de7d8ebe-61ff-4ca1-b833-7a9f4fe27f34 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/965175251"}, "pid": "3005", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:25.350654 2023-07-08 08:18:25.350657 33dda1e6-e580-44e8-b369-72af6e752ab9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/965321827"}, "pid": "3006", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:25.417031 2023-07-08 08:18:25.417034 c5f4faee-57e6-4f3b-a72c-282fe372d002 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/965330842"}, "pid": "3007", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:25.502051 2023-07-08 08:18:25.502064 26c53ce0-c3f1-47b3-b074-908cf17f1eb4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/965868915"}, "pid": "3008", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:25.593708 2023-07-08 08:18:25.593719 1d78e3d9-9cca-47fa-ac66-e56a1ae48a65 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/966048636"}, "pid": "3009", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:25.698299 2023-07-08 08:18:25.69831 ce9a3f6c-838c-4fcf-8d79-71851bc30dcb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/966525892"}, "pid": "3010", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:25.805902 2023-07-08 08:18:25.80591 c5e1b9fd-9078-4c7e-ac30-ca5396521dea {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/966552997"}, "pid": "3011", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:25.905235 2023-07-08 08:18:25.905242 d99abfc4-f476-48c9-9c15-9e89b96323ae {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/966574982"}, "pid": "3012", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:25.995546 2023-07-08 08:18:25.995549 8c29dcab-8b01-4dda-a1b1-1e9e9d14b253 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/967972817"}, "pid": "3013", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:26.083244 2023-07-08 08:18:26.083255 a0b056be-5970-408f-a9ac-fad7d73f527d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/968070191"}, "pid": "3014", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:26.190909 2023-07-08 08:18:26.190914 17e1f6cb-4f4b-47f4-a6a0-0eb9f5937a53 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/968095615"}, "pid": "3015", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:26.269629 2023-07-08 08:18:26.269631 6efdaccd-a388-47fd-b159-bea3939ec500 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/968111521"}, "pid": "3016", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:26.342783 2023-07-08 08:18:26.342789 c7272c15-311c-4a9a-85f2-104bd5bce6bc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/968131786"}, "pid": "3017", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:26.437272 2023-07-08 08:18:26.437281 b5fe5baf-7d5c-401d-a24c-dd90be175cc7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/968149766"}, "pid": "3018", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:26.522027 2023-07-08 08:18:26.522029 d39eb0bd-abd7-4840-ab24-0ca6d94faa08 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/96815252X"}, "pid": "3019", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:26.604718 2023-07-08 08:18:26.604721 8e3d3b9e-ee64-46dc-b85a-30482bc644a1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/968164811"}, "pid": "3020", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:26.706001 2023-07-08 08:18:26.706009 6921d575-88ea-41a0-96a8-85572536d050 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/968168221"}, "pid": "3021", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:26.788136 2023-07-08 08:18:26.788143 25b30dfa-ee64-4b42-b56f-cca52136b9a9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/968179002"}, "pid": "3022", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:26.885337 2023-07-08 08:18:26.88534 51581b86-cdae-4db1-9425-56b59d6722b0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/96818734X"}, "pid": "3023", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:26.991717 2023-07-08 08:18:26.991721 e802e4a4-31e3-48e7-a998-fd1b14bc2246 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/968195938"}, "pid": "3024", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:27.062948 2023-07-08 08:18:27.062952 d7a84425-00b6-45f8-93a8-3c10a378ea92 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/968196349"}, "pid": "3025", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:27.181355 2023-07-08 08:18:27.181363 9259b05b-75e9-46a8-9fe3-440828661c12 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/968265642"}, "pid": "3026", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:27.327051 2023-07-08 08:18:27.327062 e130ef5c-4037-4276-be66-3613afb16cea {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/968285988"}, "pid": "3027", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:27.442873 2023-07-08 08:18:27.442881 98cc91f1-b42f-4b79-9293-0cdb8e52a9ca {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/968290981"}, "pid": "3028", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:27.5641 2023-07-08 08:18:27.564111 a1f9d18b-cced-4bfe-89b2-7c094836280e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/968305768"}, "pid": "3029", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:27.686459 2023-07-08 08:18:27.686467 2f00f559-2231-4cff-ac1b-df4c47ef7d20 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/968777449"}, "pid": "3030", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:27.78921 2023-07-08 08:18:27.789218 bdb920ba-c3e5-4219-95c9-b27ef7b8fbb3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/968883982"}, "pid": "3031", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:27.893833 2023-07-08 08:18:27.89443 3e3dcca8-b8e7-45c5-9909-9f6d8d996e5d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/968989454"}, "pid": "3032", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:28.029239 2023-07-08 08:18:28.029249 e379b6ed-0d7e-4ab5-9182-4e67cc195ed1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/968989640"}, "pid": "3033", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:28.134325 2023-07-08 08:18:28.134332 22f7ee97-3f85-4201-8890-7d110447be90 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/969011911"}, "pid": "3034", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:28.235607 2023-07-08 08:18:28.235617 fc9d1145-c5a8-4888-b367-79f94d0be552 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/969012055"}, "pid": "3035", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:28.356952 2023-07-08 08:18:28.356963 e8583d46-2125-471f-a9da-a75dd6f5e310 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/969012462"}, "pid": "3036", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:28.460193 2023-07-08 08:18:28.460201 67c2f99d-0873-4a9a-9cde-6927d23b5c77 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/969026927"}, "pid": "3037", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:28.555286 2023-07-08 08:18:28.555293 e9466d2e-d7a6-4883-82ec-a7a7fc973c49 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/969033788"}, "pid": "3038", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:28.664395 2023-07-08 08:18:28.664404 be189137-acb7-40d1-a4c8-c54be7d0156d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/969045859"}, "pid": "3039", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:28.780671 2023-07-08 08:18:28.780683 248ad68e-d31f-4e27-8513-f5a696d83b1a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/969048009"}, "pid": "3040", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:28.900527 2023-07-08 08:18:28.900537 22f54d88-d19f-4b27-afed-1b5ba0f7272b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/969051492"}, "pid": "3041", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:29.014 2023-07-08 08:18:29.01401 759de499-aea7-40b6-9454-0d6179e988bc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/969056370"}, "pid": "3042", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:29.114356 2023-07-08 08:18:29.114365 8ea6f5f8-3534-47d8-a350-3267283499f1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/969521367"}, "pid": "3043", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:29.218213 2023-07-08 08:18:29.218222 0aea3da9-5570-4d02-8aa6-941c48515ab4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/969522304"}, "pid": "3044", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:29.328448 2023-07-08 08:18:29.32846 7fd6e448-6d32-4d58-82d7-fc2a285e7c33 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/96954135X"}, "pid": "3045", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:29.434999 2023-07-08 08:18:29.435009 98b41ce5-1053-4cb3-8bd4-16772ba4759b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/96954457X"}, "pid": "3046", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:29.540589 2023-07-08 08:18:29.540598 616ba511-ce1b-4766-a08a-3c6c3741a3f3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/969559933"}, "pid": "3047", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:29.662438 2023-07-08 08:18:29.66245 92bcad4e-120a-422d-ad6a-1e71b43d181a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/96999463X"}, "pid": "3048", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:29.76264 2023-07-08 08:18:29.762649 9f8bf181-c790-42ab-b6c6-6ff668f27b1f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/97001418X"}, "pid": "3049", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:29.888958 2023-07-08 08:18:29.88897 6dea4be5-784b-4754-815d-0fea70d48ce2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/970052987"}, "pid": "3050", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:30.014201 2023-07-08 08:18:30.01421 be23ec9b-f4fc-47c9-a638-56a54fb8fd9f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/970275323"}, "pid": "3051", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:30.133612 2023-07-08 08:18:30.133621 d5a8eb76-0be7-4371-8954-9c528c8c9d68 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/970287798"}, "pid": "3052", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:30.237609 2023-07-08 08:18:30.237619 a8027743-3304-4ca2-9015-2d55ff414bce {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/970302339"}, "pid": "3053", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:30.338306 2023-07-08 08:18:30.338318 ee44520e-5f2f-4f96-a758-238bb8202460 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/97030482X"}, "pid": "3054", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:30.444051 2023-07-08 08:18:30.444061 9959ad66-fe9d-47f4-a8d7-e96eb21599e9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/970399340"}, "pid": "3055", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:30.547603 2023-07-08 08:18:30.547606 42f228eb-43c5-4d16-8c78-5913183365e2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/970821794"}, "pid": "3056", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:30.640282 2023-07-08 08:18:30.640291 2e52bde3-5b22-48a1-90d1-3fd8d646f552 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/971124272"}, "pid": "3057", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:30.748927 2023-07-08 08:18:30.748938 153cf345-b5a8-4821-8a13-e8c01b3a0c00 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/971124728"}, "pid": "3058", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:30.86535 2023-07-08 08:18:30.865356 9233eb77-d5f0-4093-a1ca-657044e9d481 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/971140162"}, "pid": "3059", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:30.981043 2023-07-08 08:18:30.981053 660d64be-d01b-4bf6-bc7e-732cbe44f18e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/971140642"}, "pid": "3060", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:31.088474 2023-07-08 08:18:31.088483 7eaf971f-5467-4707-a8e0-78f58a1b7b60 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/971146853"}, "pid": "3061", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:31.191882 2023-07-08 08:18:31.191891 5a961192-bc39-427a-a199-3c06fa670c48 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/971628246"}, "pid": "3062", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:31.298498 2023-07-08 08:18:31.298509 52ec22c3-d2be-4002-8409-734d57b35fa6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/971687315"}, "pid": "3063", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:31.424358 2023-07-08 08:18:31.424363 fd96ae6d-58c6-4b2e-918c-2204c408e4bc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/971792496"}, "pid": "3064", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:31.521599 2023-07-08 08:18:31.521611 631cf3a8-771a-4465-9337-ceca0a9edc93 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/971798311"}, "pid": "3065", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:31.633946 2023-07-08 08:18:31.633955 0be8db43-d5ec-4ae5-bf53-937240ee6c2a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/97198364X"}, "pid": "3066", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:31.750799 2023-07-08 08:18:31.750809 45f9827c-4468-4b0b-8ba4-21bf03bad9d8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/972482830"}, "pid": "3067", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:31.840677 2023-07-08 08:18:31.840685 e67cae8d-5746-4dfb-bcbe-8171ad4112e9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/972926496"}, "pid": "3068", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:31.948449 2023-07-08 08:18:31.948465 602f0bb2-85c9-4fec-80ad-fb819ff9baea {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/972927743"}, "pid": "3069", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:32.063822 2023-07-08 08:18:32.063831 4c04c691-e9c6-4593-afd0-acf9e9ddc794 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/972947191"}, "pid": "3070", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:32.164454 2023-07-08 08:18:32.164469 5b867c41-71e9-4a4a-b28a-acd7c52d9fa6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/972955372"}, "pid": "3071", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:32.267161 2023-07-08 08:18:32.267168 23939690-9d14-46b7-a223-0180397cc7b3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/972969608"}, "pid": "3072", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:32.367242 2023-07-08 08:18:32.367253 a033c5df-0589-4cb2-a4ac-21064847f2bb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/972975128"}, "pid": "3073", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:32.477583 2023-07-08 08:18:32.477592 874c28b7-fef3-4095-a4eb-8be8e1739142 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/972990437"}, "pid": "3074", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:32.587828 2023-07-08 08:18:32.587839 521b8957-75d5-403b-adad-b9ce73fdca0c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/973004010"}, "pid": "3075", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:32.71345 2023-07-08 08:18:32.713462 f4a86baf-e165-4bf8-b3f9-ea8b0ed1e220 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/973016515"}, "pid": "3076", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:32.84493 2023-07-08 08:18:32.844942 018c4b98-9ed4-4e11-8164-a6b7e70344c7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/973017856"}, "pid": "3077", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:32.952106 2023-07-08 08:18:32.952109 807bca96-5eff-4d7d-b459-6e08a7cba28f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/973277645"}, "pid": "3078", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:33.057952 2023-07-08 08:18:33.05796 fe151072-df7a-43fe-a208-4309c000e8ad {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/97372076X"}, "pid": "3079", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:33.183435 2023-07-08 08:18:33.183443 24e2eb56-aef3-451c-9336-e8cf78e8b6af {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/973728558"}, "pid": "3080", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:33.289144 2023-07-08 08:18:33.289148 560d0c2d-8624-4066-b863-e49e989f024c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/973729619"}, "pid": "3081", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:33.390139 2023-07-08 08:18:33.390149 22c9c91c-a56d-44a8-a386-d2dc142e7964 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/973743220"}, "pid": "3082", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:33.508901 2023-07-08 08:18:33.508911 89446923-b14d-4729-a38d-3daa0bb2e1fe {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/973753544"}, "pid": "3083", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:33.638767 2023-07-08 08:18:33.63878 844188ef-724c-4f0a-8b21-279e3cbd62a4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/973763361"}, "pid": "3084", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:33.759207 2023-07-08 08:18:33.759218 f8851f0f-3836-4c9a-97f4-e6a483ee2278 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/973769998"}, "pid": "3085", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:33.859473 2023-07-08 08:18:33.859483 c860ac7b-ec13-4418-9c35-0da2e48b7833 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/973778318"}, "pid": "3086", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:33.967209 2023-07-08 08:18:33.967219 9e198243-f04f-43b8-b128-ee4b0bc61dc7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/97378637X"}, "pid": "3087", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:34.069351 2023-07-08 08:18:34.069354 0ea32df9-3fdb-4b85-960a-a4b0cd1b6099 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/973790636"}, "pid": "3088", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:34.180984 2023-07-08 08:18:34.180994 662e1d75-af78-4c76-8033-8d081db04f68 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/973818522"}, "pid": "3089", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:34.320508 2023-07-08 08:18:34.320518 8d5dbe5a-ebdf-4f92-bcc9-e34c920a4f6b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/973819987"}, "pid": "3090", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:34.429754 2023-07-08 08:18:34.429762 ff59dfd9-09ed-415e-b125-3cec87a28ae3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/973828269"}, "pid": "3091", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:34.529431 2023-07-08 08:18:34.52944 7a2c203b-bcf1-4f1d-80d1-851756c5cd48 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/973832231"}, "pid": "3092", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:34.648313 2023-07-08 08:18:34.648325 f7d89b1f-4eab-429e-9be2-207c6f24a73e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/973847476"}, "pid": "3093", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:34.751497 2023-07-08 08:18:34.751506 627a3ed3-4cf0-4156-906d-bf5a2f6c20c5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/973854790"}, "pid": "3094", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:34.861489 2023-07-08 08:18:34.861498 dd4d6774-2986-4276-94b8-4d28e6e96b87 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/973987278"}, "pid": "3095", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:34.970318 2023-07-08 08:18:34.970322 c0d9469e-b73d-4c0f-b41a-f0f95cf6e26e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/973999527"}, "pid": "3096", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:35.072406 2023-07-08 08:18:35.072415 4c35bb66-d7e6-4fde-9618-57490818f4fc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/974085812"}, "pid": "3097", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:35.1988 2023-07-08 08:18:35.198814 9f32fa55-2ec5-407d-8b57-8f697d28a04f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/974127469"}, "pid": "3098", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:35.312171 2023-07-08 08:18:35.31218 f51c0908-6eb8-428f-bd51-8f1326e7bb8c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/974169722"}, "pid": "3099", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:35.405407 2023-07-08 08:18:35.405415 2e4768f9-0e1a-4359-a141-6912aeeff811 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/974334650"}, "pid": "3100", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:35.505553 2023-07-08 08:18:35.505563 fe2a6bb4-c6a9-4e86-b887-accfd976a3e2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/974336076"}, "pid": "3101", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:35.6152 2023-07-08 08:18:35.615208 b6d213ff-1904-44b3-9841-6fa86209b31f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/974346063"}, "pid": "3102", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:35.728023 2023-07-08 08:18:35.728035 20e9abc6-c4cc-4ac2-b40f-51225d773727 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/974357685"}, "pid": "3103", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:35.841537 2023-07-08 08:18:35.841545 d758c927-bbb8-408a-a40b-1015b9770765 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/974385492"}, "pid": "3104", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:35.960601 2023-07-08 08:18:35.960612 374c78c3-54c5-496f-9289-d4f0e1b5fa90 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/974428345"}, "pid": "3105", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:36.079857 2023-07-08 08:18:36.079866 80403d29-4301-40bd-8832-8d52f1c69d4f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/974489530"}, "pid": "3106", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:36.184091 2023-07-08 08:18:36.1841 2c1fdf26-ccf3-4469-872b-abcc3986f4e4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/974648884"}, "pid": "3107", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:36.304018 2023-07-08 08:18:36.304027 e19b9dd1-240b-42ab-bdd0-89217f196c17 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/974981990"}, "pid": "3108", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:36.429226 2023-07-08 08:18:36.429236 7d928c22-f500-428c-bca9-330c9efbdd90 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/975310844"}, "pid": "3109", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:36.555029 2023-07-08 08:18:36.555037 017ec83e-d13e-4ac7-870c-748c442d8a72 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/975409239"}, "pid": "3110", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:36.672322 2023-07-08 08:18:36.672333 b33f3818-0b1d-4141-bce0-b91b0b7c9ee3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/975409255"}, "pid": "3111", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:36.794603 2023-07-08 08:18:36.794612 b9d57750-79f1-4b02-b120-95a846ef818a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/975411659"}, "pid": "3112", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:36.914235 2023-07-08 08:18:36.914244 bce60081-179a-41ae-8b98-c3d9f08b231b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/97542890X"}, "pid": "3113", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:37.058096 2023-07-08 08:18:37.058106 765c5454-c3d2-4f2f-90d7-6c05a622d242 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/975483935"}, "pid": "3114", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:37.162658 2023-07-08 08:18:37.162661 32fbdbda-7715-459d-8dcd-bed487349d22 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/975497278"}, "pid": "3115", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:37.261451 2023-07-08 08:18:37.261455 57121f93-2f45-406d-8c55-84cf58d6dd50 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/975537016"}, "pid": "3116", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:37.363998 2023-07-08 08:18:37.364002 6ddac1be-7008-447b-8457-761cb654745b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/975540289"}, "pid": "3117", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:37.47436 2023-07-08 08:18:37.474368 aa851b6d-a0ee-4df5-8f1d-070663e3533e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/97554134X"}, "pid": "3118", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:37.592187 2023-07-08 08:18:37.592195 4bab095c-d460-4f7a-830e-2552f25a557a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/975543644"}, "pid": "3119", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:37.70373 2023-07-08 08:18:37.703738 373c8146-845e-45ae-b86e-6e7fe2f952de {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/975561243"}, "pid": "3120", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:37.821287 2023-07-08 08:18:37.8213 bc4459a1-086b-4030-889a-26b31032678d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/975774719"}, "pid": "3121", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:37.933472 2023-07-08 08:18:37.933481 007bab3e-c077-45c5-9bb1-05351023ef81 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/975895346"}, "pid": "3122", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:38.032913 2023-07-08 08:18:38.032922 917446c5-8f97-4e23-ae61-6cc9db0be91e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/976006332"}, "pid": "3123", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:38.142478 2023-07-08 08:18:38.142489 e656132c-33d8-4509-9c60-9890c00f46cf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/976206323"}, "pid": "3124", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:38.255127 2023-07-08 08:18:38.25513 037d9417-9142-4644-a0e6-491cf1a4b615 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/976264293"}, "pid": "3125", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:38.356474 2023-07-08 08:18:38.356487 5bd32611-8bd0-4d09-9538-f331543d01f9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/976322293"}, "pid": "3126", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:38.470682 2023-07-08 08:18:38.470696 769a85d2-7773-4493-8b61-2a3bb110c1d2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/976362473"}, "pid": "3127", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:38.585627 2023-07-08 08:18:38.585635 3890188b-2bcb-4a98-b9ac-94d24c16ae9f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/97638230X"}, "pid": "3128", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:38.696563 2023-07-08 08:18:38.696574 96a5b8e6-1890-4bf1-a7ed-672b03c98f37 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/976430975"}, "pid": "3129", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:38.805068 2023-07-08 08:18:38.805079 b2bef62b-0857-49a2-bd1b-a5351538effa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/976606380"}, "pid": "3130", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:38.910392 2023-07-08 08:18:38.910402 c03a058d-429f-4f01-b6e9-d22ba2fedfb2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/976645815"}, "pid": "3131", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:39.035949 2023-07-08 08:18:39.03596 095e9462-4985-479a-a35c-a35a960b7958 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/97664830X"}, "pid": "3132", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:39.144421 2023-07-08 08:18:39.144435 2ba0a896-9aed-42d5-871e-e3a9e144becf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/976660970"}, "pid": "3133", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:39.24009 2023-07-08 08:18:39.240093 99ea34f9-6487-4dfc-bf61-ab6d9a031e1d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/976760681"}, "pid": "3134", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:39.334106 2023-07-08 08:18:39.334117 27cfaf7b-41a9-4244-b06a-f40a35ba757a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/976796694"}, "pid": "3135", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:39.43465 2023-07-08 08:18:39.43466 a1ca5c53-f04e-449c-8de8-a5538d9a19b8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/976913445"}, "pid": "3136", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:39.539726 2023-07-08 08:18:39.539729 b44e39de-fbc3-4757-ae33-553440b89ef1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/97693681X"}, "pid": "3137", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:39.638443 2023-07-08 08:18:39.638452 cfe9c2e9-17f3-48ac-ad90-859fcd9444d6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/97694247X"}, "pid": "3138", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:39.741748 2023-07-08 08:18:39.741756 1dcf63dd-a032-419a-b8d5-5d7c5867918e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/977057763"}, "pid": "3139", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:39.853312 2023-07-08 08:18:39.853324 ae04b788-0cec-4049-97c4-6998dbfa662c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/977094332"}, "pid": "3140", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:39.980561 2023-07-08 08:18:39.980573 365bf9e1-bc23-4c75-822b-fb511da2211b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/977270866"}, "pid": "3141", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:40.109426 2023-07-08 08:18:40.109431 bf089fd9-db22-4858-800b-699632dcc835 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/977320545"}, "pid": "3142", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:40.206174 2023-07-08 08:18:40.206182 f149875a-fdc5-4d20-bfd7-bb9deda37d52 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/977327523"}, "pid": "3143", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:40.323002 2023-07-08 08:18:40.32301 644b7928-6948-49fe-aa41-b168adc61c49 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/977330281"}, "pid": "3144", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:40.445096 2023-07-08 08:18:40.445108 1e3d4eb1-d45e-4d7b-bda4-54d6af456124 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/977508102"}, "pid": "3145", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:40.553572 2023-07-08 08:18:40.55358 6bc5c6db-5820-428e-8368-3fdd754d9cc4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/977725022"}, "pid": "3146", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:40.687864 2023-07-08 08:18:40.687872 668661a5-5adf-403f-83d9-bf107f08c01e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/977939359"}, "pid": "3147", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:40.798629 2023-07-08 08:18:40.798639 d6f702cc-b443-4b2d-bdeb-6cccb582e1bb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/977998827"}, "pid": "3148", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:40.909361 2023-07-08 08:18:40.909369 e9873de8-50d7-41a3-ab1e-f52e26712608 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/978057414"}, "pid": "3149", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:41.022976 2023-07-08 08:18:41.022987 1cb408e0-4144-41e4-8132-1ac1257168ff {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/978237064"}, "pid": "3150", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:41.127791 2023-07-08 08:18:41.127801 66d9c572-9832-47c5-b638-4703fc94c359 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/97824723X"}, "pid": "3151", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:41.23453 2023-07-08 08:18:41.234539 9d29e55d-2828-48c0-9d4b-1cb56ede7e5e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/978328582"}, "pid": "3152", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:41.347397 2023-07-08 08:18:41.347408 d14b3dcc-c8de-40c1-b2bc-441de4479ce4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/978329953"}, "pid": "3153", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:41.438526 2023-07-08 08:18:41.438533 500b5bcb-31b5-40e2-a8dc-347b281a7627 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/978348168"}, "pid": "3154", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:41.537802 2023-07-08 08:18:41.53781 d5d5b5fc-5342-4dd8-8f88-badb99df4fa9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/978367316"}, "pid": "3155", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:41.660236 2023-07-08 08:18:41.660246 9d700bca-4801-4421-b549-c22b42fd9abb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/97845992X"}, "pid": "3156", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:41.760699 2023-07-08 08:18:41.760709 0dc6575c-9b79-4a0f-882d-210154cf11fb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/978499298"}, "pid": "3157", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:41.880195 2023-07-08 08:18:41.880204 8719e09b-ec88-4611-af3e-5976da7e8d23 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/978581717"}, "pid": "3158", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:41.99378 2023-07-08 08:18:41.993792 c926c4e6-4957-4f69-8243-07921276920c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/978978862"}, "pid": "3159", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:42.090988 2023-07-08 08:18:42.090997 695c0294-0b4e-40fb-b9f1-d27e041535d2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/978983149"}, "pid": "3160", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:42.234302 2023-07-08 08:18:42.234312 0e5e2236-4dde-4069-af33-ad88dbe328d6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/979116791"}, "pid": "3161", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:42.351761 2023-07-08 08:18:42.351771 71cf5ffc-8d35-447a-9143-2590748b8a99 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/979117453"}, "pid": "3162", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:42.471055 2023-07-08 08:18:42.471062 f33ffd7d-99c9-4489-bcaf-dc773aaae012 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/979150949"}, "pid": "3163", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:42.587392 2023-07-08 08:18:42.587404 7d79ca93-dec6-4d4e-a7ad-22f857b6728a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/979243440"}, "pid": "3164", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:42.703684 2023-07-08 08:18:42.703697 6d084cb5-83a3-4193-9ddc-f3935e3d9792 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/979248566"}, "pid": "3165", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:42.823054 2023-07-08 08:18:42.823065 279f5554-9b21-471a-b7f6-6a0b523a9a0b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/979300649"}, "pid": "3166", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:42.932363 2023-07-08 08:18:42.932372 523bc74c-e9a0-44ae-9164-9921f6b4ded4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/97935272X"}, "pid": "3167", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:43.043507 2023-07-08 08:18:43.043515 a049e8fe-1234-41bf-a113-70a21089795d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/979530083"}, "pid": "3168", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:43.199361 2023-07-08 08:18:43.199368 3520a66a-0dc0-4c7a-8436-99c0f175f60e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/979571839"}, "pid": "3169", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:43.337472 2023-07-08 08:18:43.337483 1ee9a977-ca92-4bf6-95ec-6f6163b1978e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/979582407"}, "pid": "3170", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:43.453271 2023-07-08 08:18:43.45328 3e218e99-d7f0-4936-8fe8-273e0a969b7e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/979721474"}, "pid": "3171", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:43.568479 2023-07-08 08:18:43.568493 c1529bc9-ea33-46d7-a4cd-81e12112c346 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/979910978"}, "pid": "3172", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:43.701968 2023-07-08 08:18:43.70201 bb0bd35a-3f97-43c7-be15-5ffb7fbeb007 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/980047277"}, "pid": "3173", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:43.816038 2023-07-08 08:18:43.816048 afeec9ff-93c0-429e-b05e-758b005a830e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/980202078"}, "pid": "3174", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:43.931375 2023-07-08 08:18:43.931386 372f6805-b726-4e82-bc10-79b76bd3ff33 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/98022540X"}, "pid": "3175", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:44.049837 2023-07-08 08:18:44.049842 878917b4-7d89-4341-bb06-539b6388aba1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/980348749"}, "pid": "3176", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:44.15782 2023-07-08 08:18:44.157831 fd985ddb-ed6a-4d7c-ac8b-d0a785a5fe93 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/980351189"}, "pid": "3177", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:44.289658 2023-07-08 08:18:44.289667 65da1d6a-4a20-49e7-bf80-c2ba385217af {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/980351952"}, "pid": "3178", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:44.399902 2023-07-08 08:18:44.399914 5a97c56b-1bde-479e-8cf3-4f47c00c80d5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/980433401"}, "pid": "3179", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:44.528063 2023-07-08 08:18:44.528074 53177c03-6159-4fcb-89cc-9c48c968ad47 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/980446775"}, "pid": "3180", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:44.631541 2023-07-08 08:18:44.63155 8615e07d-a9d6-4cef-8fdc-849a92ee60c4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/980496705"}, "pid": "3181", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:44.750919 2023-07-08 08:18:44.75093 091819b8-d892-439a-b049-c2dcb2b1c092 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/980499607"}, "pid": "3182", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:44.860569 2023-07-08 08:18:44.860573 815ae8e2-9da4-42b9-8e25-3bceebfe9020 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/980601851"}, "pid": "3183", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:44.947172 2023-07-08 08:18:44.947186 f5345063-c43a-4ff9-bd6d-55b441ecbd6c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/980793017"}, "pid": "3184", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:45.058737 2023-07-08 08:18:45.058748 fdc6544a-bfdd-41cc-b296-464ff3d8f3d9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/981031390"}, "pid": "3185", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:45.181512 2023-07-08 08:18:45.181522 a4aeb4e0-b508-4467-b541-e603cd925946 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/981339794"}, "pid": "3186", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:45.290396 2023-07-08 08:18:45.290403 3edfa0de-915a-4078-b71f-9003a4ad1d4c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/981426387"}, "pid": "3187", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:45.401105 2023-07-08 08:18:45.401117 fbcc1efa-f1a1-4ca7-b3cf-b4d312adbafc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/981607705"}, "pid": "3188", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:45.519725 2023-07-08 08:18:45.519735 02468d4c-abf4-4da9-96cd-5a8c6f3dc8de {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/981642551"}, "pid": "3189", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:45.622664 2023-07-08 08:18:45.62267 f5e23178-1d5a-4327-85ad-52f9068310e0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/981663753"}, "pid": "3190", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:45.744844 2023-07-08 08:18:45.744853 8b18df94-f0f0-4e02-88e4-ba03135e1107 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/981823866"}, "pid": "3191", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:45.845909 2023-07-08 08:18:45.845918 e204e915-9727-4c83-8228-c9b723c6a804 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/981883427"}, "pid": "3192", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:45.946248 2023-07-08 08:18:45.946259 d7b442bc-d021-48e3-ba40-6e043264475e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/98195314X"}, "pid": "3193", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:46.108852 2023-07-08 08:18:46.10886 15d08966-de3d-4caf-8d0c-a41b1a8e9bf5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/981996833"}, "pid": "3194", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:46.210571 2023-07-08 08:18:46.210594 5c19b08b-22c2-4829-86e7-0db7f1efde0d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/98208823X"}, "pid": "3195", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:46.310669 2023-07-08 08:18:46.31068 79470368-81f9-4145-ba74-99ce284414bc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/982492855"}, "pid": "3196", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:46.415875 2023-07-08 08:18:46.415884 b4bc2613-1150-4b33-8f3b-a4bc364c4f4e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/982514050"}, "pid": "3197", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:46.515961 2023-07-08 08:18:46.515973 e67135be-3af1-4ad9-8c12-3cc02e21f057 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/982653166"}, "pid": "3198", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:46.617139 2023-07-08 08:18:46.617148 1577fe2a-6ac9-4178-989b-8e90bd5a5672 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/982910592"}, "pid": "3199", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:46.721504 2023-07-08 08:18:46.721506 25859f0c-d8c9-4a2c-a71d-ad93a1197f5b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/982913656"}, "pid": "3200", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:46.819114 2023-07-08 08:18:46.819125 f727f5f8-d3a0-4062-8f2c-029ed42269db {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/982939477"}, "pid": "3201", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:46.938306 2023-07-08 08:18:46.938319 21fabc44-33f4-4503-a1a8-94da2bb4a864 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/982961308"}, "pid": "3202", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:47.044489 2023-07-08 08:18:47.044498 c00fa447-fc98-4245-b9ed-fc9a29bc4ea2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/982994818"}, "pid": "3203", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:47.156912 2023-07-08 08:18:47.156921 25a6c23c-b402-4389-b868-97d8cbcfd3e9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/983050538"}, "pid": "3204", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:47.273419 2023-07-08 08:18:47.273427 5d7ebe67-dbf8-498a-9847-233ca84a27bc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/983491550"}, "pid": "3205", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:47.370097 2023-07-08 08:18:47.370105 41655b6c-3e2d-40f4-9207-219b07515171 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/983615543"}, "pid": "3206", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:47.482467 2023-07-08 08:18:47.482476 000da639-1785-4232-9753-6a76982b66d1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/983662215"}, "pid": "3207", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:47.608561 2023-07-08 08:18:47.608575 4db418d2-2697-4d46-b920-d5b9bbca4713 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/98379314X"}, "pid": "3208", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:47.721025 2023-07-08 08:18:47.721034 f4cd3884-d8f7-4775-8853-508a863aca90 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/983910138"}, "pid": "3209", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:47.829346 2023-07-08 08:18:47.829365 12e19e58-4f60-426c-b7c9-a52657158744 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/984022686"}, "pid": "3210", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:47.929805 2023-07-08 08:18:47.929814 0ce9c996-d662-4154-97c7-8d08dd966bdb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/984092862"}, "pid": "3211", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:48.033836 2023-07-08 08:18:48.033845 9581e5c0-4aee-4c74-b0c6-88acbb5239b0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/984302190"}, "pid": "3212", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:48.125031 2023-07-08 08:18:48.12504 1624e450-8daa-446e-9c0e-400ab0fd8616 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/984368728"}, "pid": "3213", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:48.22153 2023-07-08 08:18:48.22154 1137deda-eab8-42dc-85a0-3ed7bc6cccdc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/984403922"}, "pid": "3214", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:48.346839 2023-07-08 08:18:48.346852 cadb02da-6c08-45af-ac01-ec99c902875a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/984432779"}, "pid": "3215", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:48.452373 2023-07-08 08:18:48.452381 e33dd842-ee9c-4cc8-b50e-2205a951f7b9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/984443711"}, "pid": "3216", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:48.575421 2023-07-08 08:18:48.57543 79822eca-3d89-41b4-b475-e546eaedb592 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/984455655"}, "pid": "3217", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:48.68323 2023-07-08 08:18:48.683238 79dfbbf3-ca86-4bad-86c6-f213878f3462 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/984645454"}, "pid": "3218", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:48.774688 2023-07-08 08:18:48.774699 96904011-4277-4cf2-a563-80bb52f6dd57 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/984649220"}, "pid": "3219", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:48.879375 2023-07-08 08:18:48.879384 ac5a51d6-7000-4ce8-b2a0-5e0a8d774c6b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/984661956"}, "pid": "3220", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:48.961817 2023-07-08 08:18:48.961826 46109c51-c4f3-46d9-a687-f5ae96e175b4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/984695303"}, "pid": "3221", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:49.086731 2023-07-08 08:18:49.086738 08c3e764-5d18-41a9-ad0e-5983e481ce96 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/984725180"}, "pid": "3222", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:49.219407 2023-07-08 08:18:49.219415 1397a521-78c5-4b6f-bcd2-dbc8d25a3b0d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/98474309X"}, "pid": "3223", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:49.335804 2023-07-08 08:18:49.335812 7693a4a4-de96-4792-93c6-a125e85368bf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/984864059"}, "pid": "3224", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:49.449596 2023-07-08 08:18:49.449607 f81d011d-ae02-4304-b9df-b3d61fce7b49 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/984972498"}, "pid": "3225", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:49.570185 2023-07-08 08:18:49.570194 b645c84b-15ff-4e68-bede-29126ea61fff {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/98510421X"}, "pid": "3226", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:49.682562 2023-07-08 08:18:49.682571 a9f48d8e-5149-4999-b937-adea4c79b079 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/985110783"}, "pid": "3227", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:49.800458 2023-07-08 08:18:49.800468 491c99d5-dc1d-44c6-8f67-9605d5afa8a6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/985307358"}, "pid": "3228", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:49.925105 2023-07-08 08:18:49.925115 6ed4f744-a0a2-483b-a120-79b23323f05e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/985554134"}, "pid": "3229", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:50.058067 2023-07-08 08:18:50.058075 014dff6a-b40a-49e1-94d7-c2271d2e47a3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/985729414"}, "pid": "3230", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:50.17708 2023-07-08 08:18:50.177089 64e52392-63b2-4c8c-838b-32712f83b085 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/985808721"}, "pid": "3231", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:50.289723 2023-07-08 08:18:50.289733 9e4515b1-50d8-4cf3-8c22-ebd2ce94cab0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/985947179"}, "pid": "3232", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:50.427479 2023-07-08 08:18:50.427492 13348dcb-65ad-44d0-9b17-cb92d07fc537 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/986023647"}, "pid": "3233", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:50.544585 2023-07-08 08:18:50.544598 c2a20b6c-db49-441b-8cc0-ba9516084468 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/986065692"}, "pid": "3234", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:50.642806 2023-07-08 08:18:50.642814 2c6b8fff-6fbf-40e5-be9c-eaed6ebbefdf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/986091332"}, "pid": "3235", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:50.736498 2023-07-08 08:18:50.736507 3daf5e18-b30a-4ad0-bc80-df8416b4b375 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/986092274"}, "pid": "3236", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:50.850049 2023-07-08 08:18:50.850061 b2bdef2a-2031-423c-8990-82f5387094b2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/986429740"}, "pid": "3237", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:50.946031 2023-07-08 08:18:50.946039 75214408-065f-4a69-a8f6-306716f391ec {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/986445649"}, "pid": "3238", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:51.054503 2023-07-08 08:18:51.054513 c605f4f5-ac6a-4f47-ab16-e33b379e06fb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/986571148"}, "pid": "3239", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:51.17631 2023-07-08 08:18:51.176319 ad3a5bef-76f9-4c24-8333-5c80d5f7bdd3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/986759805"}, "pid": "3240", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:51.279046 2023-07-08 08:18:51.279057 66a2599c-b780-43f7-98f3-d6b42717d40c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/986792829"}, "pid": "3241", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:51.387731 2023-07-08 08:18:51.387738 29e87d6c-303b-4b9a-9205-89808caf4ae6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/986836400"}, "pid": "3242", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:51.498459 2023-07-08 08:18:51.498469 2a240141-3667-4f8d-b9d7-60b0acae1437 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/98702115X"}, "pid": "3243", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:51.603281 2023-07-08 08:18:51.603284 b0cfc12f-52cd-4ec2-801e-dd50474e0276 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/987073982"}, "pid": "3244", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:51.697543 2023-07-08 08:18:51.697551 b3f9d2bb-e67a-4494-b34b-04f7c583cae4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/987392964"}, "pid": "3245", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:51.799372 2023-07-08 08:18:51.79938 1c80769c-4a72-4b13-aac5-7354191c217f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/987450816"}, "pid": "3246", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:51.902236 2023-07-08 08:18:51.90224 ab76cb17-2d89-4c33-a030-479cc4f03568 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/987500465"}, "pid": "3247", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:52.00019 2023-07-08 08:18:52.000201 52f74e19-f62e-4626-8ef1-7f2e1510e1d6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/987545191"}, "pid": "3248", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:52.115396 2023-07-08 08:18:52.115405 8dca8d40-034e-421a-beae-f766205575fd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/987612816"}, "pid": "3249", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:52.220999 2023-07-08 08:18:52.22101 9acd3403-5a4b-4b63-8542-7f4d99ed5776 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/987631365"}, "pid": "3250", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:52.321674 2023-07-08 08:18:52.321682 b31ca5e1-1048-4280-a0ff-eaccf32319b3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/987875418"}, "pid": "3251", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:52.456391 2023-07-08 08:18:52.456407 7a036d34-3bb3-44ad-ac00-26c7eb3e791d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/987960148"}, "pid": "3252", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:52.584297 2023-07-08 08:18:52.584313 67660608-517a-4226-a27d-136e6ec296af {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/988152819"}, "pid": "3253", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:52.709037 2023-07-08 08:18:52.709046 32855e7c-f916-4265-8114-697b6a075198 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/988280450"}, "pid": "3254", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:52.807369 2023-07-08 08:18:52.807378 c1200fd7-928e-4cf4-8c20-7ad8a4f37170 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/988400162"}, "pid": "3255", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:52.91151 2023-07-08 08:18:52.91152 91238879-9c5a-43a1-b564-26506c1b47f2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/988430940"}, "pid": "3256", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:53.031777 2023-07-08 08:18:53.031786 e53c4fca-ebca-40e9-b5a6-0a7f84c11245 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/98843802X"}, "pid": "3257", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:53.140585 2023-07-08 08:18:53.140594 05d4b652-915c-4c83-afac-ddaaa12c265c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/988589125"}, "pid": "3258", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:53.262156 2023-07-08 08:18:53.26217 e9565460-4b11-4e90-a4d4-79961396d202 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/989064859"}, "pid": "3259", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:53.386397 2023-07-08 08:18:53.386408 3b899ccb-e940-4c6d-ac8c-fd634a90a294 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/989146731"}, "pid": "3260", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:53.509539 2023-07-08 08:18:53.50955 3cc29bfe-6591-46c9-98c3-60077b2eb5ab {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/989224333"}, "pid": "3261", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:53.621408 2023-07-08 08:18:53.621416 8e81c056-cf3d-47dc-98d0-994ad5876d8c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/98940434X"}, "pid": "3262", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:53.749154 2023-07-08 08:18:53.749163 7edc7348-288b-415e-82b7-001285267c19 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/989409015"}, "pid": "3263", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:53.863427 2023-07-08 08:18:53.863437 3dd2a8f9-6cfd-4342-84b6-596bd95a534f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/989440583"}, "pid": "3264", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:53.966077 2023-07-08 08:18:53.966093 3b3828d3-b5c2-48ae-a227-3b8c8de95813 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/989523926"}, "pid": "3265", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:54.065932 2023-07-08 08:18:54.06594 ef4d67a8-2530-40f6-a612-4d2defaa898d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/989560279"}, "pid": "3266", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:54.180726 2023-07-08 08:18:54.180738 944879c7-1cde-4c38-893d-170b8cbdcceb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/989655059"}, "pid": "3267", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:54.297073 2023-07-08 08:18:54.297086 fbec8758-dfd8-4f51-91e9-e75015cddff4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/989690350"}, "pid": "3268", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:54.404365 2023-07-08 08:18:54.404373 f02c7694-f642-4897-8504-84c9a919c654 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/989782115"}, "pid": "3269", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:54.518721 2023-07-08 08:18:54.51873 f6c42d0c-4f78-4747-9bac-ce0b84cb7399 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/989838420"}, "pid": "3270", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:54.631081 2023-07-08 08:18:54.631092 8aff400e-79fe-44e1-946b-4de9a4484697 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/989943828"}, "pid": "3271", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:54.752838 2023-07-08 08:18:54.752848 f4bcf37b-1fb3-4cc4-b23f-f5f181529515 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/990095320"}, "pid": "3272", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:54.872265 2023-07-08 08:18:54.872274 783ddd76-e1d0-4066-9eae-c1376b5cfa0b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/990184269"}, "pid": "3273", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:54.971975 2023-07-08 08:18:54.971984 40fa84a2-99f9-4b0a-9990-7999a6e11f8e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/990280616"}, "pid": "3274", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:55.108783 2023-07-08 08:18:55.108794 c2f0bbb0-96b6-4653-a6e3-3c1e01458341 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/990285375"}, "pid": "3275", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:55.22031 2023-07-08 08:18:55.22032 cf7d1a95-8a38-4554-9f79-cde1f2db2a08 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/990285650"}, "pid": "3276", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:55.366449 2023-07-08 08:18:55.366464 a0897689-e638-401a-9a62-dc66089d2137 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/990303160"}, "pid": "3277", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:55.486641 2023-07-08 08:18:55.486653 8ad8c236-4198-4483-8ee7-c86dfc521a73 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/990335763"}, "pid": "3278", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:55.610626 2023-07-08 08:18:55.610634 55a24a80-12bb-4793-b07c-63a45d78d72b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/990348059"}, "pid": "3279", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:55.732889 2023-07-08 08:18:55.732897 3850920f-586b-41b6-ac41-88ac08c32910 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/990387844"}, "pid": "3280", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:55.894995 2023-07-08 08:18:55.894999 eeeef156-a87d-44c2-8205-745f8b740b12 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/990398455"}, "pid": "3281", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:55.978453 2023-07-08 08:18:55.978457 ecc1d0e6-8f64-46e9-9d1a-2d9f16f744bd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/990407624"}, "pid": "3282", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:56.058076 2023-07-08 08:18:56.05808 87008a8e-84d0-4ba0-90e7-583f359cd817 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/990531325"}, "pid": "3283", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:56.146343 2023-07-08 08:18:56.146354 040336b1-cb06-47f6-b07c-ab095cab4120 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/990665801"}, "pid": "3284", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:56.253896 2023-07-08 08:18:56.253904 b55296e9-0f48-4d80-8ec2-8482118b0033 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/990683869"}, "pid": "3285", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:56.487651 2023-07-08 08:18:56.487659 d0d0b083-4afc-4286-a433-69ffd90d10ec {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/990827321"}, "pid": "3287", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:56.609907 2023-07-08 08:18:56.609919 ac7f5eeb-7645-468c-b599-90d0e01a46f7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/990889203"}, "pid": "3288", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:56.722069 2023-07-08 08:18:56.722077 f7e7b682-6f2c-44f4-ab40-7a96a186752d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/99109087X"}, "pid": "3289", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:56.833737 2023-07-08 08:18:56.833747 50cf6a49-5c2a-40bd-bac3-c551e50584f8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/991108337"}, "pid": "3290", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:56.940519 2023-07-08 08:18:56.940528 215ebbde-8089-42af-b848-2b9ce5047a4f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/991145429"}, "pid": "3291", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:57.046242 2023-07-08 08:18:57.046254 0cb1bae0-aba9-4506-8914-ee970f69294e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/991195000"}, "pid": "3292", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:57.164695 2023-07-08 08:18:57.164706 c442c1c9-8b15-45b9-88a7-cc5e026e8309 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/991211103"}, "pid": "3293", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:57.34126 2023-07-08 08:18:57.341269 30afd9ab-a905-4c19-91b9-0b0f5fe42b84 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/991510011"}, "pid": "3294", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:57.45488 2023-07-08 08:18:57.454888 744c6d31-2c17-4915-bccc-21b9f64cdf3d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/991533445"}, "pid": "3295", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:57.562652 2023-07-08 08:18:57.562661 f4864b47-6ec5-4775-9f6a-4f5e1b65fabf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/992031486"}, "pid": "3296", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:57.681817 2023-07-08 08:18:57.681826 f7221340-3e29-4dc3-9426-4fee71fb976d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/992385903"}, "pid": "3297", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:57.786884 2023-07-08 08:18:57.786895 b80f3db8-0201-4729-abcb-789d028c7f33 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/992448972"}, "pid": "3298", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:57.886194 2023-07-08 08:18:57.886197 b13847b8-e055-402b-bf64-5f51b74fc10c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/992654173"}, "pid": "3299", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:57.98064 2023-07-08 08:18:57.980651 d1046105-0702-4826-a344-b6495ae721eb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/992787858"}, "pid": "3300", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:58.0875 2023-07-08 08:18:58.087511 18b6687c-aeff-4b49-9773-4a5f328cfe3d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/992788137"}, "pid": "3301", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:58.211973 2023-07-08 08:18:58.211987 519ed987-27a4-4af3-9137-062e69a78548 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/992810159"}, "pid": "3302", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:58.335812 2023-07-08 08:18:58.335819 62278e04-c1b7-47ed-ae98-60950edebbd2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/992947588"}, "pid": "3303", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:58.466034 2023-07-08 08:18:58.466046 930c7786-9510-40fb-8211-8e28b21aa807 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/993072542"}, "pid": "3304", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:58.565178 2023-07-08 08:18:58.565191 3eadc8a5-a9b8-465a-b21a-9475963be87c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/993585043"}, "pid": "3305", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:58.680055 2023-07-08 08:18:58.680066 6a2a7901-5be3-4020-b93b-bc91b6a22618 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/994152868"}, "pid": "3306", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:58.78227 2023-07-08 08:18:58.782273 f11a3e07-5c9c-4665-bff2-67d6f73dec5a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/994333080"}, "pid": "3307", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:58.86858 2023-07-08 08:18:58.868588 cf05cd3e-c938-4886-9c91-44eb7157dba3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/994528647"}, "pid": "3308", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:58.967417 2023-07-08 08:18:58.967424 253b7701-6fcb-475a-bb31-6b6d7b2cebaa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/994603320"}, "pid": "3309", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:59.073823 2023-07-08 08:18:59.073834 285a32c6-2c3e-45eb-a289-91084ff8f743 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/994861915"}, "pid": "3310", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:59.186856 2023-07-08 08:18:59.186864 0a257d71-ad2f-4e96-88fa-10980bb3dbf6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/994895232"}, "pid": "3311", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:59.301185 2023-07-08 08:18:59.301195 3898a98b-133f-4d2e-8388-bf09f56f2b85 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/995009384"}, "pid": "3312", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:59.406126 2023-07-08 08:18:59.406135 5561784e-137b-4e26-901a-c4e020fad69e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/995549060"}, "pid": "3313", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:59.514208 2023-07-08 08:18:59.514219 4fe1fdb5-bf81-4f1d-ba56-3c95e822e43f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/995590958"}, "pid": "3314", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:59.64495 2023-07-08 08:18:59.644963 09557b8b-38ee-40d5-b863-395638abdf7a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/995597928"}, "pid": "3315", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:59.773046 2023-07-08 08:18:59.773059 173ed219-d12b-471f-9cf3-8c3739b90e98 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/995606250"}, "pid": "3316", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:18:59.889162 2023-07-08 08:18:59.889174 dd84f987-8716-4318-878c-93a9270c9bef {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/995661391"}, "pid": "3317", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:00.012193 2023-07-08 08:19:00.012199 74a57c4a-974a-4357-a3d0-9f022e281de1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996104801"}, "pid": "3318", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:00.134519 2023-07-08 08:19:00.13453 623583bc-1b87-49a0-bc75-e9aa2fed0865 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996109269"}, "pid": "3319", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:00.251194 2023-07-08 08:19:00.251205 42b7814e-c7c8-4df3-9207-7a1fbe78d099 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996113045"}, "pid": "3320", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:00.383377 2023-07-08 08:19:00.383389 38a8dce2-66f3-4acf-9bd1-b342d3434c0a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996118780"}, "pid": "3321", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:00.480548 2023-07-08 08:19:00.480558 c93b8f8f-92f2-416d-a5a4-e250ed85510f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996123768"}, "pid": "3322", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:00.58341 2023-07-08 08:19:00.583419 9996457a-cc69-4135-8254-0e5ed3e1b6b6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996129952"}, "pid": "3323", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:00.73315 2023-07-08 08:19:00.733158 387ce2fb-2537-4ce4-8470-56c6aef77a48 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996134492"}, "pid": "3324", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:00.892302 2023-07-08 08:19:00.892311 e3c08630-f2cb-48b8-9d51-0de127fe2fd1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996142762"}, "pid": "3325", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:01.028589 2023-07-08 08:19:01.028602 e80b562a-a96e-41c8-8901-50513bfcc094 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996150994"}, "pid": "3326", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:01.144073 2023-07-08 08:19:01.144085 529121f9-90a4-4685-bd15-2a6906b9dbbe {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996151265"}, "pid": "3327", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:01.251133 2023-07-08 08:19:01.251149 4156f8d4-1ece-483c-9463-5220f8d27aec {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996312811"}, "pid": "3328", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:01.349322 2023-07-08 08:19:01.34933 be890264-3403-490b-b4eb-d3d8911648ec {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996312919"}, "pid": "3329", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:01.454888 2023-07-08 08:19:01.454896 ea75e834-225f-41d5-9503-4a4a2cdf1c1d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996322809"}, "pid": "3330", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:01.572406 2023-07-08 08:19:01.572413 08cd9b47-9d38-458e-8d37-a33f6627db96 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996334920"}, "pid": "3331", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:01.672354 2023-07-08 08:19:01.672362 6e12ec8b-b14d-416c-ae32-5761177ba981 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996335323"}, "pid": "3332", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:01.780774 2023-07-08 08:19:01.780785 9eeffa3e-02b8-4796-8b7b-0aecb8dc2c55 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996335846"}, "pid": "3333", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:01.892017 2023-07-08 08:19:01.892025 dd2c059a-8aee-46e2-bb26-f36d8fa90542 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996336109"}, "pid": "3334", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:02.019951 2023-07-08 08:19:02.019961 85152e92-3574-4149-84e2-56c08776b4bf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996346562"}, "pid": "3335", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:02.128149 2023-07-08 08:19:02.128159 1719fc6b-af66-4b79-9ebf-191c008b19cf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996348980"}, "pid": "3336", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:02.238919 2023-07-08 08:19:02.238931 06724838-59e6-4de9-b442-f6a29da5c68f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996450793"}, "pid": "3337", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:02.341969 2023-07-08 08:19:02.341978 d1a57349-72a9-4549-a208-9daa6dbdf7f3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996450904"}, "pid": "3338", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:02.456567 2023-07-08 08:19:02.456576 58b9f882-0b6c-40ba-86a0-59471026e8d0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996455116"}, "pid": "3339", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:02.570771 2023-07-08 08:19:02.570783 2a4f5edf-0c42-49f0-91f7-d8807c46f11b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996459715"}, "pid": "3340", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:02.671807 2023-07-08 08:19:02.671816 eedbf7a7-6786-429d-a999-fd17a9e5d422 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996459855"}, "pid": "3341", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:02.771144 2023-07-08 08:19:02.771154 39eb1cf3-164f-449a-aeb5-bae86e31993a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996464190"}, "pid": "3342", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:02.890543 2023-07-08 08:19:02.890551 4a71973b-fa9a-4562-82a2-77f4f275cad1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996469915"}, "pid": "3343", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:03.010058 2023-07-08 08:19:03.010068 799af9e0-0e6f-4815-9b0f-9e7f92ceafd2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996474080"}, "pid": "3344", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:03.121295 2023-07-08 08:19:03.121304 be27f073-7658-4914-bab2-21d9d8e0091e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996484280"}, "pid": "3345", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:03.210857 2023-07-08 08:19:03.210868 038b324d-a5e1-4c2e-b1e8-c61667b244b8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996494138"}, "pid": "3346", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:03.326295 2023-07-08 08:19:03.326304 71189077-8aa7-45b7-b644-6e136b94c5de {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996595066"}, "pid": "3347", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:03.442879 2023-07-08 08:19:03.44289 254227dc-ff89-4f87-b7e0-324057a12e10 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996755519"}, "pid": "3348", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:03.547061 2023-07-08 08:19:03.547068 9cb8cb9a-174c-4a4f-8581-32ba92c867bd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996765980"}, "pid": "3349", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:03.665137 2023-07-08 08:19:03.665146 05bde9d4-3017-44e1-97c6-4e1ee19214d9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996797343"}, "pid": "3350", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:03.760892 2023-07-08 08:19:03.760899 1866f252-696a-4908-b983-3187bdbf8a27 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996885226"}, "pid": "3351", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:03.860229 2023-07-08 08:19:03.860237 a15a3a46-ab03-4e31-8910-2bf5c8322b72 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996895701"}, "pid": "3352", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:03.978663 2023-07-08 08:19:03.978676 9c0dce99-90fc-4a8f-9045-6f8291717fb7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996895876"}, "pid": "3353", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:04.092015 2023-07-08 08:19:04.092019 03e89db6-f95d-45c6-a049-fc8310dae1cb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996901248"}, "pid": "3354", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:04.191698 2023-07-08 08:19:04.191708 310525e2-7a95-4ea4-b46d-3728d8ceef47 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/997040386"}, "pid": "3355", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:04.298234 2023-07-08 08:19:04.298247 f358a14f-4c37-49ea-8e97-94cd721facd9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/997187581"}, "pid": "3356", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:04.404525 2023-07-08 08:19:04.404533 9f67bdee-713a-42e8-89fc-9c828d789f3c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/997192240"}, "pid": "3357", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:04.494273 2023-07-08 08:19:04.494285 3ca2ae22-a2d0-4569-acd5-f6c67e56681d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/997206845"}, "pid": "3358", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:04.599859 2023-07-08 08:19:04.599869 d92bc290-5473-47f3-bc71-04a86e617de8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/997478748"}, "pid": "3359", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:04.716365 2023-07-08 08:19:04.716373 8ad5a9fe-db1b-4fd4-903b-837efb0fc3c2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/99770392X"}, "pid": "3360", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:04.83112 2023-07-08 08:19:04.83113 d96eeabd-a886-4d30-a931-ea66147ed31a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/997809213"}, "pid": "3361", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:04.955662 2023-07-08 08:19:04.955675 8eec5257-b5a5-45ca-840b-4ec5b4f982bb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/99781926X"}, "pid": "3362", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:05.077698 2023-07-08 08:19:05.077712 2628d35e-4fed-4935-9c13-1e9a0ef30b69 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/997997117"}, "pid": "3363", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:05.203706 2023-07-08 08:19:05.203714 089abccf-0346-4649-b7ae-c2fe9a9aabb4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/997998881"}, "pid": "3364", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:05.319905 2023-07-08 08:19:05.319916 b1c37f11-cb50-424b-b475-4b713308cd17 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/998032514"}, "pid": "3365", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:05.422389 2023-07-08 08:19:05.422397 12b759a6-3da8-473b-b2da-1f2435ceb6ae {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/998115606"}, "pid": "3366", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:05.530311 2023-07-08 08:19:05.53032 69ad6d3f-5b3d-4fa7-bc9b-3d1802c15ca5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/998143278"}, "pid": "3367", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:05.659815 2023-07-08 08:19:05.659824 35844035-d3ea-494c-82a0-47d0d7195796 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/998153915"}, "pid": "3368", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:05.792765 2023-07-08 08:19:05.792771 68efcb37-67cd-4bde-a451-530311cd6013 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/998167037"}, "pid": "3369", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:05.897592 2023-07-08 08:19:05.897601 5b434444-1d35-4521-800d-80ef013a95d9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/998173983"}, "pid": "3370", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:06.015085 2023-07-08 08:19:06.015095 d6053e5e-8ee9-48d6-aa36-992fefeb5bfc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/998174807"}, "pid": "3371", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:06.171389 2023-07-08 08:19:06.171394 3adcb601-3859-4d40-b5fe-ba8971bc9c0a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/998198137"}, "pid": "3372", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:06.293567 2023-07-08 08:19:06.293572 37a214cb-0f57-4490-9e44-2c9bdc239c1d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/998198323"}, "pid": "3373", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:06.42389 2023-07-08 08:19:06.423898 ef6a6eb4-dd81-4bc0-b106-c51169086a16 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/998216801"}, "pid": "3374", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:06.551753 2023-07-08 08:19:06.551763 4451ee06-edb4-4120-9cc1-71053d19f6df {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/99821731X"}, "pid": "3375", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:06.65831 2023-07-08 08:19:06.65832 aae992c6-0da4-49a8-a069-6e60c19d8828 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/998245127"}, "pid": "3376", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:06.766637 2023-07-08 08:19:06.766646 c8f216c3-c9c0-41e2-ac03-6e1f2d26dac6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/998245518"}, "pid": "3377", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:06.881142 2023-07-08 08:19:06.88115 2e410832-d2f7-4c52-9c57-419471e399d3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/998251313"}, "pid": "3378", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:07.00111 2023-07-08 08:19:07.001121 25bdff5f-3776-44e1-86db-8499d6f623c2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/998278815"}, "pid": "3379", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:07.152498 2023-07-08 08:19:07.152508 b25c1332-f32f-45f1-9d71-79bee7aa98f1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/998292125"}, "pid": "3380", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:07.258751 2023-07-08 08:19:07.258758 bde9491a-299a-4165-afa8-0f21ebd5b880 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/998331163"}, "pid": "3381", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:07.384706 2023-07-08 08:19:07.384711 4f6105fa-2a8d-4423-877a-d18417b74bb5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/998858234"}, "pid": "3382", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:07.510582 2023-07-08 08:19:07.51059 22e85cf3-75a5-4ff1-8ad6-bdd242ff6710 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/998904635"}, "pid": "3383", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:07.621355 2023-07-08 08:19:07.621365 54d3b074-3324-4475-b29b-ca9e36b04b5d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/999064185"}, "pid": "3384", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:07.74597 2023-07-08 08:19:07.74598 ffc451a8-06dc-4130-b9aa-3afb05de6e10 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/999203592"}, "pid": "3385", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:07.88156 2023-07-08 08:19:07.881571 c59a189d-15d7-4279-8827-76ce223adc43 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/999527061"}, "pid": "3386", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:08.012316 2023-07-08 08:19:08.012325 0f5b0ab9-1d45-49b6-bf9a-a1eaee7b2721 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/999533908"}, "pid": "3387", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:08.126944 2023-07-08 08:19:08.126948 76dee2aa-388d-4665-a13f-8f59891a556e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/999541161"}, "pid": "3388", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:08.234454 2023-07-08 08:19:08.234462 4190bc4a-cded-457f-9067-16c96a1388a4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/999549847"}, "pid": "3389", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:08.388175 2023-07-08 08:19:08.388185 e6e39764-4c3b-4237-b5d8-de663d0fa4c7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/999646869"}, "pid": "3390", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:08.503929 2023-07-08 08:19:08.503938 13889dcd-2b18-4b92-912b-f56e3d9f4b8e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/999780859"}, "pid": "3391", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:08.663717 2023-07-08 08:19:08.663726 58447c75-0fb8-4b76-940a-2966821eaec9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/999853155"}, "pid": "3392", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:08.778983 2023-07-08 08:19:08.778994 901d543a-479d-4d10-a11c-aaab37907a5f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/999862243"}, "pid": "3393", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:08.888278 2023-07-08 08:19:08.888289 10e86648-d558-4c08-bf4d-bf68184a7df0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/999871633"}, "pid": "3394", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:09.009254 2023-07-08 08:19:09.009259 92742639-226c-4ba0-8ad6-cdaee2ea9b9e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/999921770"}, "pid": "3395", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:09.101025 2023-07-08 08:19:09.101033 73cae9c1-aff0-4bde-8ac4-268a7593f000 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/999991361"}, "pid": "3396", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:11.366647 2023-07-08 08:19:11.366651 5fb7f6ea-d709-46ff-bde3-5393e240aecd {"pid": "3397", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026361477"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:11.465814 2023-07-08 08:19:11.465817 61a3afb3-5d51-45af-b6fc-c69423d107fa {"pid": "3398", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026366231"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:11.538491 2023-07-08 08:19:11.5385 427d113d-29f3-46db-9457-6c4edcda4bf0 {"pid": "3399", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026393190"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:11.640302 2023-07-08 08:19:11.64031 f3f77269-4310-4378-9e86-e622edb674d0 {"pid": "3400", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026398257"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:11.741615 2023-07-08 08:19:11.741624 9f404ad6-7965-4ea2-acba-5d4607533fd6 {"pid": "3401", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026403161"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:11.845206 2023-07-08 08:19:11.845215 f08d87b7-58a8-4d3f-9d16-61d9ba33da12 {"pid": "3402", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026408805"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:11.946888 2023-07-08 08:19:11.946901 910ded78-810a-4e83-be5c-7efce538db7f {"pid": "3403", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026418460"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:12.054463 2023-07-08 08:19:12.054472 e353354c-9923-4eb5-b372-bcfc92c95800 {"pid": "3404", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026428636"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:12.150544 2023-07-08 08:19:12.150548 d8a97411-f838-4c3f-9584-0560d86c0b40 {"pid": "3405", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026430746"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:12.275264 2023-07-08 08:19:12.275272 62a8d382-37f8-41d1-afd7-d75ab65c09b5 {"pid": "3406", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026446278"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:12.404363 2023-07-08 08:19:12.404375 6872b07a-e351-4097-924f-0259c11a4304 {"pid": "3407", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026450038"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:12.509476 2023-07-08 08:19:12.509484 ae6c3c68-db75-4933-bc8b-1040af36330f {"pid": "3408", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026452057"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:12.60557 2023-07-08 08:19:12.605579 d301567d-8674-47d6-9b65-75cc9b6242d5 {"pid": "3409", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026471396"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:12.707692 2023-07-08 08:19:12.7077 8b74f54c-8043-414d-8fc2-08f918ca75f6 {"pid": "3410", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026483157"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:12.804994 2023-07-08 08:19:12.805004 05b2bee6-a557-4f61-ac37-587c69ba2c12 {"pid": "3411", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026488582"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:12.90557 2023-07-08 08:19:12.905578 3cf9503e-a225-4540-87fb-968881564e72 {"pid": "3412", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026501228"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:13.013249 2023-07-08 08:19:13.013255 7e9575df-6c79-4d26-ab49-a977b464e4a2 {"pid": "3413", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026524759"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:13.191061 2023-07-08 08:19:13.191067 46eb9f63-d0f3-46f3-acf4-005699aabac2 {"pid": "3414", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026526980"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:13.266898 2023-07-08 08:19:13.266902 7989c090-9c2b-449c-b7fc-7fcd2d08b82c {"pid": "3415", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026528290"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:13.33199 2023-07-08 08:19:13.331994 037e4b06-2474-45fa-8cbc-0572e8605185 {"pid": "3416", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026529890"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:13.435829 2023-07-08 08:19:13.435837 e6885334-ce7b-49c9-83bb-9b3ca7103a58 {"pid": "3417", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026530538"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:13.547864 2023-07-08 08:19:13.547873 2052d0a1-a7ef-4bf9-9ed8-77dc2be55666 {"pid": "3418", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026536625"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:13.663004 2023-07-08 08:19:13.663012 efa01149-4b19-4545-8bf1-2f048f7e0415 {"pid": "3419", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/02654606X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:13.765593 2023-07-08 08:19:13.765601 6ed76be9-6a68-4af5-a285-1ea5e3a3790a {"pid": "3420", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/02654637X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:13.875294 2023-07-08 08:19:13.875301 4a6e3af7-475d-4551-998a-5b6901c324f4 {"pid": "3421", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026561328"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:13.993091 2023-07-08 08:19:13.993099 333a1d0c-8682-4298-91b7-606123a4b2cb {"pid": "3422", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026562170"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:14.107882 2023-07-08 08:19:14.107889 3ad86343-85c5-48ef-9fdc-d5dfe4013de2 {"pid": "3423", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/02656453X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:14.211763 2023-07-08 08:19:14.211776 5247492f-c734-4bc4-a141-3b38874465b6 {"pid": "3424", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026567695"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:14.313238 2023-07-08 08:19:14.313248 33317bcf-1036-482d-bf8e-8fcef76e9378 {"pid": "3425", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026583135"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:14.413599 2023-07-08 08:19:14.413608 526279bc-71ff-4256-b88e-8a57e09dd3b4 {"pid": "3426", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/02658672X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:14.539395 2023-07-08 08:19:14.539403 da2d0aa9-8022-4114-986d-5f3f4f8e17c0 {"pid": "3427", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026614421"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:14.671684 2023-07-08 08:19:14.671694 3aeec2dc-1c57-44c7-bd1e-55b503386469 {"pid": "3428", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026626373"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:14.779318 2023-07-08 08:19:14.779328 4322772c-6e46-4eeb-b274-520be3649395 {"pid": "3429", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026631342"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:14.900756 2023-07-08 08:19:14.900766 19d39eb4-88ca-449c-a0fa-b5bdcfce6c1c {"pid": "3430", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026646862"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:15.007546 2023-07-08 08:19:15.007553 5be8ba6b-d23a-4089-90a9-06248079a7c2 {"pid": "3431", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/02672698X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:15.12519 2023-07-08 08:19:15.125201 4e1341d5-4dd6-403c-bfc2-ddd511d28742 {"pid": "3432", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/02675181X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:15.247463 2023-07-08 08:19:15.247472 ad21589c-413c-45de-b289-6771dd4c3a36 {"pid": "3433", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026847655"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:15.482275 2023-07-08 08:19:15.482278 51ea36e9-72d0-4c8c-95dc-12e271b75aa8 {"pid": "3435", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026895056"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:15.692363 2023-07-08 08:19:15.692373 5ed08f4e-86e0-4efc-8fad-853e4beccd0f {"pid": "3437", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026924498"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:16.240013 2023-07-08 08:19:16.240022 0649d640-5798-42e8-8ed0-685e0bae7c65 {"pid": "3441", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/02700273X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:16.349158 2023-07-08 08:19:16.349167 1af24759-1607-4bf4-ab30-5341b22ee7d7 {"pid": "3442", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/027006344"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:16.559757 2023-07-08 08:19:16.559767 b5ee5f9f-e4cd-46f8-9b9b-3f688fc19d89 {"pid": "3443", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/02703819X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:16.786316 2023-07-08 08:19:16.786327 e22771c4-0414-4ea7-9def-07bf2ef2c638 {"pid": "3445", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/027215008"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:16.909208 2023-07-08 08:19:16.909218 047fc9e5-44f0-4834-9dd5-8652c067a3ab {"pid": "3446", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/027486028"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:17.020313 2023-07-08 08:19:17.020321 964f53ba-d594-49b6-81d7-54cf6f09ee43 {"pid": "3447", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/027632288"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:17.12419 2023-07-08 08:19:17.124198 d06fe145-a108-4a85-83f8-24266a1deb10 {"pid": "3448", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/027767744"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:17.220708 2023-07-08 08:19:17.22072 b3070354-886d-440e-b739-0d15cad4a6a6 {"pid": "3449", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/027896781"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:15.824018 2023-07-08 10:30:34.815076 ae85da0d-1f35-47de-ae7e-5532c90b5301 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1060270773"}, "pid": "3438", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003488727"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026959852"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111270045"} 5 -2023-07-08 08:14:58.808994 2023-07-08 10:28:29.110249 21652ebb-d3a9-4bec-8e74-129192fa407f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1055753001"}, "pid": "836", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/027019837"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108342120"} 4 -2023-07-08 08:19:16.141981 2023-07-08 10:23:43.14965 502e7b10-a63c-4239-afb9-0d719ef2f455 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1159283095"}, "pid": "3440", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003531943"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026995050"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100268307"} 5 -2023-07-08 08:19:16.682362 2023-07-08 10:29:02.907326 6d0b0e23-a09e-4f4d-b0f9-d37b55aa48ab {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139708952"}, "pid": "3444", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/027135985"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109155729"} 3 -2023-07-08 08:19:17.314021 2023-07-08 08:19:17.314025 730ffaa5-76c3-4085-8ea0-5f9419e74d54 {"pid": "3450", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/027912760"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:17.408569 2023-07-08 08:19:17.408577 eeb6a563-30f6-4f14-abe4-b1eee9b023f0 {"pid": "3451", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/02796096X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:17.513876 2023-07-08 08:19:17.513882 69179f7f-8a65-4c11-b090-3610996fb2d4 {"pid": "3452", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/027969428"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:17.62724 2023-07-08 08:19:17.627254 e7750397-833a-4f5d-8e4b-fdb1015f2d4b {"pid": "3453", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028071670"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:17.745246 2023-07-08 08:19:17.745256 0af8d5d7-0e94-4fab-bbeb-b0e81104b095 {"pid": "3454", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028082788"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:17.872612 2023-07-08 08:19:17.872622 0f738411-0d0c-4ffe-9ba4-2926a29ca7c0 {"pid": "3455", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/02809364X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:17.989539 2023-07-08 08:19:17.989551 bc24586b-50b1-40af-a357-c3818409af9d {"pid": "3456", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028166027"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:18.207249 2023-07-08 08:19:18.207258 e6337b75-04c9-48df-b2fe-5dbade41ee04 {"pid": "3457", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028302435"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:18.371157 2023-07-08 08:19:18.371166 e888d84a-6bb3-496d-a99c-0d088f04f07c {"pid": "3458", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/02832787X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:18.59359 2023-07-08 08:19:18.593599 e1fd5695-15af-40d2-9c94-6652d563dd26 {"pid": "3460", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028354753"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:18.704487 2023-07-08 08:19:18.704495 8431e7a5-5343-44e8-8b24-d48443b4ab48 {"pid": "3461", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028357531"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:18.846684 2023-07-08 08:19:18.846693 199d83c6-c332-4bc8-b2f5-08dc556eb9de {"pid": "3462", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028416171"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:18.988931 2023-07-08 08:19:18.988937 3e1f57e0-263d-493a-b7b3-2f56809c19b2 {"pid": "3463", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028419790"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:19.2047 2023-07-08 08:19:19.204708 94a79484-3208-4777-9e87-fd2a01ce1e42 {"pid": "3464", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028470141"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:19.304095 2023-07-08 08:19:19.304103 ea8d133a-cc69-40fe-bff0-ae69bf21a61d {"pid": "3465", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028495764"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:19.530984 2023-07-08 08:19:19.530994 6a512dae-bc6d-4cf9-8888-88059ec6f1f9 {"pid": "3467", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028503112"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:19.657351 2023-07-08 08:19:19.657364 8cedf662-eca1-4a3e-894f-26f5aa6076bf {"pid": "3468", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028522206"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:19.910073 2023-07-08 08:19:19.910086 920f88da-5eee-47cd-ad2b-d6b05987f7b4 {"pid": "3469", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028529677"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:20.017436 2023-07-08 08:19:20.017444 3d708b9b-5fbf-4fc4-a764-d5b74a3f1f04 {"pid": "3470", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028541634"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:20.233321 2023-07-08 08:19:20.233329 e9aa692a-656a-4f60-819e-ae26e9026b95 {"pid": "3471", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028558200"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:20.327881 2023-07-08 08:19:20.32789 86c464d1-7b1c-47dc-a1ba-5f4029bfe522 {"pid": "3472", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028615719"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:20.426495 2023-07-08 08:19:20.426506 5a9c77b6-3a8e-49c3-853b-9e1de760619b {"pid": "3473", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028666925"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:20.655195 2023-07-08 08:19:20.655206 f5bbecc2-e3db-4d25-b0b2-3346b83bad4f {"pid": "3475", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028735498"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:01.406101 2023-07-08 10:28:42.424792 b7bad417-054c-491e-9964-2a1cad12fce2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/136417582"}, "pid": "2078", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025454683"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028259866"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108744962"} 6 -2023-07-08 08:19:20.536563 2023-07-08 10:29:10.679911 0be35eb9-5188-471e-9485-ea233a6cf596 {"pid": "3474", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028681673"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109323353"} 2 -2023-07-08 08:19:18.48483 2023-07-08 10:30:19.417617 e657ff0e-3e78-47bf-ada1-3c575b93f466 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/118857703"}, "pid": "3459", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003055423"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028330943"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110994935"} 5 -2023-07-08 08:17:26.017184 2023-07-08 10:26:32.547839 18eaeb37-9aee-426b-868a-c28eea29302d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/17027926X"}, "pid": "2342", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003370921"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028542770"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104963217"} 6 -2023-07-08 08:19:20.918579 2023-07-08 08:19:20.918587 e2b7668a-15fc-443c-a9b3-16a43f0d8ba2 {"pid": "3477", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028882199"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:21.185578 2023-07-08 08:19:21.185582 02b93938-79eb-4297-a66f-c5fcc6cec81e {"pid": "3479", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/02893010X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:21.263824 2023-07-08 08:19:21.26383 fb062bd8-16da-4833-ba66-fdc7c02aaf50 {"pid": "3480", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/02903096X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:21.367178 2023-07-08 08:19:21.367188 16bb6751-fb01-4bd4-8efa-bda8ddb8deeb {"pid": "3481", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/02907309X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:21.490972 2023-07-08 08:19:21.490988 8a370ba2-8fec-43f2-a4a3-47d94042a243 {"pid": "3482", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/029077087"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:21.598841 2023-07-08 08:19:21.598856 c3ac77ca-9caf-4bfa-88ac-c5888a71fac9 {"pid": "3483", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/029195640"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:21.721335 2023-07-08 08:19:21.721342 aef056b6-52e5-4594-8b49-b89881e22c7a {"pid": "3484", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/029214084"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:21.82902 2023-07-08 08:19:21.829023 8b7aca28-1c6d-4e8f-a061-f3c1ddb316a9 {"pid": "3485", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/029218977"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:21.928279 2023-07-08 08:19:21.928288 8388c648-4b6e-495b-a0f2-02d158de9e30 {"pid": "3486", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/029470293"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:22.042542 2023-07-08 08:19:22.042767 b6074a69-d9a9-4d36-9293-fa92743c9d5b {"pid": "3487", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/029580293"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:22.170623 2023-07-08 08:19:22.170636 f3f5a1f0-5487-471e-9281-3ae6b4cb2eaf {"pid": "3488", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/029589681"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:22.410181 2023-07-08 08:19:22.41019 73c6427c-1340-482c-8e94-f3b4e17122ef {"pid": "3490", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/029652138"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:22.537457 2023-07-08 08:19:22.537466 cac1d602-09e6-4eed-9d58-436649d8c2b2 {"pid": "3491", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/029688019"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:22.678049 2023-07-08 08:19:22.678061 6d5d770d-df3b-425e-8646-2367d6487a52 {"pid": "3492", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/029698510"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:22.873827 2023-07-08 08:19:22.873836 300a9724-a06a-4cdd-80f2-4443c552cdd4 {"pid": "3494", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/029761867"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:22.991006 2023-07-08 08:19:22.991018 4cd51567-8a50-4c7a-9037-2c4dd4fe66b7 {"pid": "3495", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/029767849"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:23.234872 2023-07-08 08:19:23.234881 e60aefc2-64a0-40de-adb0-67d812050a7f {"pid": "3497", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/029869587"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:23.349186 2023-07-08 08:19:23.349196 cacc9e69-f988-40aa-b9fc-d04e74825756 {"pid": "3498", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/029872235"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:23.556902 2023-07-08 08:19:23.556909 87276450-5474-4662-b961-dec447841dcd {"pid": "3499", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/029986761"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:23.681401 2023-07-08 08:19:23.681415 7086c794-50e8-4488-9878-2c9db4058cb2 {"pid": "3500", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/029994861"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:23.791794 2023-07-08 08:19:23.7918 69f749ff-ab44-434a-95a5-f8ca70abe730 {"pid": "3501", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030045614"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:23.894809 2023-07-08 08:19:23.894819 aa67ae22-f937-419f-bc30-edeaeca2403a {"pid": "3502", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030086329"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:23.995639 2023-07-08 08:19:23.995649 90407569-45ab-4916-b8cd-44a2a101b2c5 {"pid": "3503", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030097886"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "deleted": "2023-05-02T15:49:27.476865+00:00"} 1 -2023-07-08 08:19:24.107406 2023-07-08 08:19:24.107415 913b61f9-da68-4a90-af3c-bdace962af0b {"pid": "3504", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030132711"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:23.115218 2023-07-08 10:31:08.346564 ca5017d4-f815-425b-87c5-b7268bd38c41 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/133767183"}, "pid": "3496", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014091750"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/02982480X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111847199"} 5 -2023-07-08 08:19:21.056826 2023-07-08 10:30:49.404076 da10dc12-52df-49e5-9177-f3ed688a0ede {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/13355757X"}, "pid": "3478", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003111864"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028902661"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111556606"} 5 -2023-07-08 08:17:22.050201 2023-07-08 10:31:28.752601 3bf7f497-6f26-49b3-9c2d-e5a03320e569 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143371193"}, "pid": "2299", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003861370"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/029924480"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112422845"} 6 -2023-07-08 08:19:24.219443 2023-07-08 08:19:24.219452 5c035ca3-08bc-42b7-b6a0-f7948b54abb1 {"pid": "3505", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/03013739X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:24.332399 2023-07-08 08:19:24.332412 0a1e71e1-734c-48e6-8cec-410f0f1b7caf {"pid": "3506", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030187400"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:24.458518 2023-07-08 08:19:24.458532 8bd3de77-6586-4403-b67f-03a2a9f6a313 {"pid": "3507", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030198011"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:24.874656 2023-07-08 08:19:24.874666 61c5d80e-196a-4ce8-85ff-22b88945eee4 {"pid": "3509", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/03025843X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:24.979073 2023-07-08 08:19:24.979083 e4fbfc76-dd00-4b5c-89f0-d9e8ff88d485 {"pid": "3510", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030281342"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:25.192083 2023-07-08 08:19:25.192092 1a02d5c2-eef2-4231-83ad-3203aae7a7d8 {"pid": "3511", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030327687"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:25.331324 2023-07-08 08:19:25.331335 d8060238-51b1-4693-84b3-20b21a4d1b86 {"pid": "3512", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030343429"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:25.569192 2023-07-08 08:19:25.5692 a81738e1-4ced-46cd-8351-9307780b3beb {"pid": "3514", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030459249"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:25.675841 2023-07-08 08:19:25.675849 d51fe2d9-cf37-4792-9398-255d6a0d5343 {"pid": "3515", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030486882"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:25.819843 2023-07-08 08:19:25.819849 3d7e752f-3c7f-4567-ad20-27048bbea78d {"pid": "3516", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030490855"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:26.072118 2023-07-08 08:19:26.072125 bfd2b521-5045-47a8-9bc0-42b4307a689c {"pid": "3517", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030557585"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:26.21531 2023-07-08 08:19:26.215315 2313bf9c-1dc1-4e2d-b758-f437826c66f7 {"pid": "3518", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030575230"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:26.324689 2023-07-08 08:19:26.3247 c26b9202-1f9d-467a-a6b2-1b609c518c98 {"pid": "3519", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030633176"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:26.416942 2023-07-08 08:19:26.416951 9c47e582-69bc-4e57-a9b0-2f8cc823639b {"pid": "3520", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030713234"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:26.556814 2023-07-08 08:19:26.556823 82bdb5d6-38fa-45b9-b1f6-e54b41cc488c {"pid": "3521", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/03074198X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:26.675394 2023-07-08 08:19:26.675403 5a05abe0-3ed5-4ea3-bd72-787d566be727 {"pid": "3522", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030745551"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:26.79351 2023-07-08 08:19:26.793518 16fc0524-3e86-4fe1-8931-1e30ea8e10e5 {"pid": "3523", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030782465"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:26.914151 2023-07-08 08:19:26.914162 56bcc877-f1f4-4817-9a99-4d8403c9add8 {"pid": "3524", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030802997"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:27.020033 2023-07-08 08:19:27.02004 ae73309b-fb37-4a6f-bcce-cb9faa7fb24d {"pid": "3525", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030818095"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:27.137537 2023-07-08 08:19:27.137544 3df9a4b8-050e-4ae1-8573-4984b348e3f6 {"pid": "3526", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030835828"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:27.252272 2023-07-08 08:19:27.252282 543b44c1-a341-42d9-934d-9d81aa862f26 {"pid": "3527", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030851025"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:27.349365 2023-07-08 08:19:27.349373 148f8ca3-f973-4a81-a07d-5db537d2745b {"pid": "3528", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030875277"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:27.444621 2023-07-08 08:19:27.444633 daecc807-933c-4219-a4c0-5600b78f2687 {"pid": "3529", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/03089719X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:27.570337 2023-07-08 08:19:27.570348 38213e80-a3f2-45a0-9380-2815f1181919 {"pid": "3530", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030907667"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:27.694324 2023-07-08 08:19:27.694335 b44ba7a7-f24b-4eb4-8599-b838b38cca1a {"pid": "3531", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030913632"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:24.613443 2023-07-08 10:31:29.653283 fecf1776-1960-4d01-bf5f-0755f5592dca {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/119033437"}, "pid": "3508", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003508662"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030223415"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112488933"} 5 -2023-07-08 08:19:25.461651 2023-07-08 10:30:12.030597 0122add0-1262-4115-8c16-870a1130ded4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124206018"}, "pid": "3513", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003416346"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030415357"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110816301"} 5 -2023-07-08 08:14:27.719085 2023-07-08 10:23:38.004869 09485713-a247-4171-889d-bf0cc6170dd3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/100068944"}, "pid": "519", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A028868344"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030322995"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100177876"} 6 -2023-07-08 08:19:27.793067 2023-07-08 08:19:27.793074 62ff0815-64cd-40d1-aec2-66e184016d3b {"pid": "3532", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/031015808"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:27.905444 2023-07-08 08:19:27.905453 c6c31a45-8df8-4bb9-99cc-f837cb9063a3 {"pid": "3533", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/031060102"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:28.023747 2023-07-08 08:19:28.023756 5edb859c-5a8d-4422-a50f-51e772a57189 {"pid": "3534", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/031064442"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:28.137218 2023-07-08 08:19:28.137227 b732204f-fb6c-4849-a5ee-d91d95893030 {"pid": "3535", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/031133231"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:28.253523 2023-07-08 08:19:28.253568 97ad5ab0-1193-4122-962d-866dcb99aa1f {"pid": "3536", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/031162568"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:28.382992 2023-07-08 08:19:28.383001 73edf063-31f2-48e1-a8eb-6caa6babb3d6 {"pid": "3537", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/031226396"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:28.495491 2023-07-08 08:19:28.495499 d6fdaff4-7f78-4676-99a5-08ec63de2216 {"pid": "3538", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/031344712"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:28.595954 2023-07-08 08:19:28.595958 7b46a36a-05a6-4cf3-9bee-7cf3917d8e95 {"pid": "3539", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/031382584"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:28.695492 2023-07-08 08:19:28.695501 f55ab3da-f34a-4771-bad8-16f71bc3f56f {"pid": "3540", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/031416349"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:28.914469 2023-07-08 08:19:28.914477 7a5a74d6-37ed-4c8b-9a3c-13616a5c897a {"pid": "3542", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/031461034"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:29.030392 2023-07-08 08:19:29.030401 85d5e5d6-7f16-4fbb-b6a4-5fdfad2f801f {"pid": "3543", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/031598285"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:29.137828 2023-07-08 08:19:29.13784 e156fea4-3762-4691-9a91-2bbb2a905397 {"pid": "3544", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/031639704"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:29.241011 2023-07-08 08:19:29.241019 40153125-f27c-49d2-84f2-d7aae5658991 {"pid": "3545", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/03165746X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:29.34039 2023-07-08 08:19:29.340399 8fc166e6-2425-4495-9e7d-e3f55f4040cd {"pid": "3546", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/031718752"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:29.467113 2023-07-08 08:19:29.467127 c961beb5-7445-4e0e-aed0-9c23a0dc1cbf {"pid": "3547", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/03172406X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:29.583636 2023-07-08 08:19:29.583641 a57ee5fb-6e3a-4e5d-aae3-c206fdf3d0c4 {"pid": "3548", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/03175709X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:29.685129 2023-07-08 08:19:29.685138 9fa587b1-0408-491c-862a-02c020198665 {"pid": "3549", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/03180862X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:29.919006 2023-07-08 08:19:29.919017 7cedf842-2eed-41fc-966b-53a00737e0d2 {"pid": "3550", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/031859259"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:30.068423 2023-07-08 08:19:30.068431 66c27bde-4bfb-4927-9482-504cd42eea7c {"pid": "3551", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/031867359"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:30.184701 2023-07-08 08:19:30.184711 4c0e4021-9ef2-4887-9eb3-c7f11f61dbb4 {"pid": "3552", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/031876633"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:30.328077 2023-07-08 08:19:30.328087 8d56787d-9872-4391-9529-f24a84b50351 {"pid": "3553", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/031962963"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:30.467705 2023-07-08 08:19:30.467715 7c229ec2-6998-4651-8e5c-b6fc4e6b4f9c {"pid": "3554", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032004184"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:30.572749 2023-07-08 08:19:30.572758 1c71e50b-18f3-4663-bcc8-fff1e295bdb4 {"pid": "3555", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032063830"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:30.692841 2023-07-08 08:19:30.692853 9d8ffec9-ca43-4fc9-8d78-f47cf71bfe96 {"pid": "3556", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032075049"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:30.806686 2023-07-08 08:19:30.806696 bdaf39b4-904b-49e4-8ac3-61a9ac6577e3 {"pid": "3557", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032099886"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:31.180371 2023-07-08 08:19:31.180381 c0a22098-f172-44b0-a589-3190f576c2fd {"pid": "3559", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032316704"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:31.306018 2023-07-08 08:19:31.306027 53c75fc3-156c-4199-ad46-2a5c01b133b6 {"pid": "3560", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032353618"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:31.068642 2023-07-08 10:29:14.552953 4f7b2ff6-d25a-4f30-8712-9bad70e4a13d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1072585936"}, "pid": "3558", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002992084"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/03225413X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109443198"} 5 -2023-07-08 08:19:28.816606 2023-07-08 10:28:54.196405 e3d1f328-0cd7-4370-9a49-09a4fae1365d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/170154297"}, "pid": "3541", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/031419763"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108931621"} 3 -2023-07-08 08:19:31.440042 2023-07-08 08:19:31.440056 5432d902-d531-44b2-abc1-71817db16121 {"pid": "3561", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032395116"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:31.55448 2023-07-08 08:19:31.554487 eecd61e0-10cb-4a7f-b059-7c1842012f57 {"pid": "3562", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032397402"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:31.777935 2023-07-08 08:19:31.777943 a1a04e5e-bf8e-4b32-a6b9-7fa9878e9ba0 {"pid": "3563", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032477449"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:31.879422 2023-07-08 08:19:31.879433 b3fa1ade-1316-4155-bac0-a5c0a3bb55cb {"pid": "3564", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032498179"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:31.996415 2023-07-08 08:19:31.996424 00e0973e-3c55-4df7-a0c5-e0c875756348 {"pid": "3565", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/03259626X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:32.108962 2023-07-08 08:19:32.108967 41e830b8-baa6-464f-907b-1dc3b07223af {"pid": "3566", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032605641"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:32.57825 2023-07-08 08:19:32.578259 14f04849-3b93-4fb0-801e-56ee35054b1f {"pid": "3569", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032679629"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:32.6826 2023-07-08 08:19:32.682609 e6eb8714-8d94-4ed9-a7ff-72c705c2852f {"pid": "3570", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032706391"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:32.810676 2023-07-08 08:19:32.810687 b6196ee2-a196-43bb-b9b9-9f2fc7c88d62 {"pid": "3571", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032722567"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:33.098574 2023-07-08 08:19:33.098587 3915420a-48e7-4f63-86be-a94d6cf98790 {"pid": "3573", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032807589"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:33.223337 2023-07-08 08:19:33.223344 6227fc78-01ce-4996-8dae-23ffafcb6823 {"pid": "3574", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032842694"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:33.336161 2023-07-08 08:19:33.336172 53829013-d162-46de-8c05-f9ce7db80e0e {"pid": "3575", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032846908"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:33.547608 2023-07-08 08:19:33.547618 8a2641f3-a3d5-401c-88e3-24e6f8da2a5d {"pid": "3576", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/033004633"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:33.75794 2023-07-08 08:19:33.758269 6339f164-79bf-4e4b-aba9-d9090b54e435 {"pid": "3577", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/033070245"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:33.872932 2023-07-08 08:19:33.872942 a666a3b0-6a79-4c0d-a137-3a6a1d173939 {"pid": "3578", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/033079595"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:34.224329 2023-07-08 08:19:34.224336 6306dc8f-fb37-4bae-8e0c-18ef19254044 {"pid": "3580", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/033239568"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:34.334448 2023-07-08 08:19:34.334457 0708878a-6571-4922-89f2-7629d65fc0ea {"pid": "3581", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/033386242"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:34.441448 2023-07-08 08:19:34.441458 de41397c-9efd-4251-b83c-615d5c8e4773 {"pid": "3582", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/033392757"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:34.560846 2023-07-08 08:19:34.560855 98a70d67-7bc4-4c55-893a-21657ae908a0 {"pid": "3583", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/033454175"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:34.781722 2023-07-08 08:19:34.781736 fc6d3a28-8695-44ac-b5a8-7d0a2d35f476 {"pid": "3584", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/033596344"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:34.899551 2023-07-08 08:19:34.899562 68342cb9-c716-4758-9d73-86a41c4e389b {"pid": "3585", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/033614717"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:35.01428 2023-07-08 08:19:35.014289 51edf661-32c3-4b58-9bff-c2c5798c0160 {"pid": "3586", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/033846987"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:35.433064 2023-07-08 10:29:15.893682 ffdffa0c-f80d-4851-bb97-12dd022a59df {"pid": "3588", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/033883262"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109454"} 2 -2023-07-08 08:19:33.996946 2023-07-08 10:26:33.167054 0b0b86c5-41de-406e-ac85-d2a8cd5706f8 {"pid": "3579", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003454993"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/033151571"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105099045"} 4 -2023-07-08 08:19:35.154789 2023-07-08 10:27:26.118154 835fd924-fa8d-4981-9b20-abe00749b824 {"pid": "3587", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003883717"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/033864357"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107037201"} 4 -2023-07-08 08:19:32.333914 2023-07-08 10:24:09.398773 5272f4b7-294d-453d-ba60-39c31a58a02f {"pid": "3567", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032638116"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100970019"} 2 -2023-07-08 08:16:39.760915 2023-07-08 10:30:44.776741 9c9d1bdf-d9fe-4151-9d88-6ffff9343c39 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1251284507"}, "pid": "1864", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003389309"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/03386540X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111536680"} 6 -2023-07-08 08:19:35.552186 2023-07-08 08:19:35.552197 0b0a83f1-9725-48e5-8c5f-663df9839cf3 {"pid": "3589", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/033900795"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:35.694936 2023-07-08 08:19:35.694942 72d8dbf5-74c3-4fc2-9338-3efec2b87372 {"pid": "3590", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/03391737X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:35.977267 2023-07-08 08:19:35.977275 4934b72c-3ab9-4ff8-8a56-6d14470cac21 {"pid": "3592", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/033931941"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:36.09337 2023-07-08 08:19:36.09338 52822a36-c9cd-4a03-8ecd-4121a87ec9e3 {"pid": "3593", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/033938989"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:36.213642 2023-07-08 08:19:36.213656 6be8b71f-ab85-470f-a46b-ed731f846dca {"pid": "3594", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/033976171"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:36.369786 2023-07-08 08:19:36.36979 5c4ff384-53cb-41bc-8e62-989af79e5e66 {"pid": "3595", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034035370"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:36.512753 2023-07-08 08:19:36.512762 2de28e4e-7be4-4f76-aab2-0ac8f6fe559e {"pid": "3596", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034035818"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:36.637499 2023-07-08 08:19:36.63751 6366de9f-df5f-4608-b973-1571673fc76c {"pid": "3597", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034075763"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:36.767156 2023-07-08 08:19:36.767167 6cc18286-3a20-4e7f-8e39-06eaff305275 {"pid": "3598", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034085289"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:36.888034 2023-07-08 08:19:36.888042 57c58cb9-94d7-4f6a-ad96-e6e0c11a6d89 {"pid": "3599", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034112774"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:37.003353 2023-07-08 08:19:37.003365 2ca6fc76-4093-4a9d-9607-4b3fb7f488bf {"pid": "3600", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034263802"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:37.123523 2023-07-08 08:19:37.123534 d5c2f4e1-db6f-46b7-999f-93cb8fc30db4 {"pid": "3601", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034287728"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:37.236237 2023-07-08 08:19:37.236245 7773aef1-6df3-4314-a31d-9daa750cfd56 {"pid": "3602", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034310770"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:37.357698 2023-07-08 08:19:37.357707 5090a74c-1dc7-441f-98f6-37523dcaa54c {"pid": "3603", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034314873"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:37.471978 2023-07-08 08:19:37.471988 3938bf68-352b-40d1-8026-5f5634dd6aaa {"pid": "3604", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/03433999X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:37.570705 2023-07-08 08:19:37.570716 af102bed-53ec-425f-951e-537b2c49e747 {"pid": "3605", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034343237"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:37.673487 2023-07-08 08:19:37.673499 693dba69-8c54-4b79-a369-7f3411805a50 {"pid": "3606", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034358218"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:37.916684 2023-07-08 08:19:37.916692 2dc5f317-003a-4486-bf4c-05d63561223e {"pid": "3607", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034511474"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:38.023304 2023-07-08 08:19:38.023316 dcd59924-9680-49fb-b877-0781bde1797e {"pid": "3608", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034517928"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:38.137329 2023-07-08 08:19:38.137337 eb889027-40a8-4e26-b1aa-3dcedd099caf {"pid": "3609", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034537015"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:38.242727 2023-07-08 08:19:38.242738 36b4e4f4-42be-4457-b738-228146e03bcf {"pid": "3610", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034561528"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:38.361721 2023-07-08 08:19:38.36173 6ef2d2ed-d2b1-431c-809c-d2d6b5d3a234 {"pid": "3611", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034612998"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:38.475449 2023-07-08 08:19:38.475458 017a67b0-58e5-4d94-8776-2ad64a8ce961 {"pid": "3612", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034663525"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:38.602499 2023-07-08 08:19:38.602507 aeba7caf-d550-422a-8af8-793924e8d321 {"pid": "3613", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034692711"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:38.715747 2023-07-08 08:19:38.71576 9b794ed5-6dc0-4994-af7e-84fcf8814cdb {"pid": "3614", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034696601"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:38.943795 2023-07-08 08:19:38.944027 de4dc4ab-376e-4d6c-9aeb-b656f14d40d8 {"pid": "3616", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034710647"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:39.207889 2023-07-08 08:19:39.207901 5d5e083c-ec20-46f9-9d01-516cac09300b {"pid": "3618", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034830936"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:35.856143 2023-07-08 10:29:34.683894 84981b81-80c3-4816-a352-fe666641b558 {"pid": "3591", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003943767"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/033922055"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110119"} 4 -2023-07-08 08:19:38.835252 2023-07-08 10:29:21.294846 4f84209d-b536-45a4-95b1-06373f880c39 {"pid": "3615", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034702105"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109727977"} 2 -2023-07-08 08:19:39.314723 2023-07-08 08:19:39.314736 ebdf6053-5297-4d1e-8978-544cc1fdc7af {"pid": "3619", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034833064"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:39.421369 2023-07-08 08:19:39.421372 56b2a8b0-3593-4e80-b378-977b0d5ffecb {"pid": "3620", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034886060"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:39.512227 2023-07-08 08:19:39.512235 43abc37c-9edd-40dc-8761-b3c67cf03d1b {"pid": "3621", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034922903"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:39.749138 2023-07-08 08:19:39.749143 2f8b2f4c-86f9-477e-83c4-87bab2cf4c6f {"pid": "3623", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034938656"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:39.857016 2023-07-08 08:19:39.85703 b29a5088-6de4-4c5c-a012-6a80efd56f8b {"pid": "3624", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034953809"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:39.986957 2023-07-08 08:19:39.986969 93e5a5f6-ac64-40c2-85d9-3be8211378a2 {"pid": "3625", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/035009039"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:40.107825 2023-07-08 08:19:40.107834 d0e7635b-f9b0-490d-87c6-25bc456f6f6e {"pid": "3626", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/035068825"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:40.227298 2023-07-08 08:19:40.227306 fc717fff-6c25-439a-8280-ddd7baa398f8 {"pid": "3627", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/035124199"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:40.336474 2023-07-08 08:19:40.336484 bec4645d-6163-473f-9ae3-582851c9be26 {"pid": "3628", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/035137045"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:40.439594 2023-07-08 08:19:40.439603 1e0be4c1-77e6-4124-8dd6-5c1af589b6dd {"pid": "3629", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/035170867"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:40.563248 2023-07-08 08:19:40.563256 21c5f280-45e4-4d41-8831-6295c78c92c2 {"pid": "3630", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/035347988"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:40.67274 2023-07-08 08:19:40.672749 b94a740a-eff6-4fb0-909d-521a8306c76c {"pid": "3631", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/035348879"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:40.805982 2023-07-08 08:19:40.805992 e9ddec8a-ccd3-4c77-a8d7-c499660dbfd7 {"pid": "3632", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/035370572"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:40.945375 2023-07-08 08:19:40.945388 626a2df0-cd28-4e1c-85ea-c15ce68f2053 {"pid": "3633", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/035451793"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:41.069117 2023-07-08 08:19:41.069128 088fdf7f-2ad5-4ebe-b9b0-0510663cf3e0 {"pid": "3634", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/035466278"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:41.181463 2023-07-08 08:19:41.181471 f4a22588-3925-4c7e-bf0c-4905d62effe2 {"pid": "3635", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/035467207"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:41.298549 2023-07-08 08:19:41.298559 7c3641b9-348a-43ab-bce4-95033ad61299 {"pid": "3636", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/035550767"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:41.404141 2023-07-08 08:19:41.404152 d355d588-7386-4256-9174-93388f99cefd {"pid": "3637", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/035552913"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:41.509957 2023-07-08 08:19:41.509965 81bb4837-d6ff-42df-ba34-a1243f150fea {"pid": "3638", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/035560754"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:41.631081 2023-07-08 08:19:41.63109 60010535-cf3d-400e-8452-bfdebf89f669 {"pid": "3639", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/035599634"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:41.737688 2023-07-08 08:19:41.737699 f7077889-8f77-4cd6-b149-1ffa59a4d868 {"pid": "3640", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/035617179"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:41.851262 2023-07-08 08:19:41.851271 e3e144c5-4b57-4e8f-8c54-7e4cccace180 {"pid": "3641", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/035695161"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:41.983944 2023-07-08 08:19:41.983952 d62949a5-c257-4731-af03-5590bf4d0fd1 {"pid": "3642", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/050162373"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:42.114449 2023-07-08 08:19:42.114459 a1486d8a-18ea-4fd9-a04f-99ad5ff38914 {"pid": "3643", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/050191101"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:42.358398 2023-07-08 08:19:42.358405 5bbc1df9-770d-483a-9808-f10c373d2c09 {"pid": "3644", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/05021425X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:42.588329 2023-07-08 08:19:42.588338 bc2b68fe-abc8-4521-9ea9-ebe7554dfd07 {"pid": "3645", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/050262645"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:42.702266 2023-07-08 08:19:42.702276 43c80a4d-4b0c-46e9-bae7-8a6db6f056b4 {"pid": "3646", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/050270982"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:42.815448 2023-07-08 08:19:42.815457 d76adb90-67e3-4587-a779-548a4b15c06f {"pid": "3647", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/050313800"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:42.930111 2023-07-08 08:19:42.93012 ab2a4c2c-8431-4d95-be6f-8526994bfe63 {"pid": "3648", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/050321692"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:39.642937 2023-07-08 10:25:16.289254 ab7934e1-3b87-4b66-9fcc-78c050a58095 {"pid": "3622", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034931929"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102388337"} 2 -2023-07-08 08:19:43.04926 2023-07-08 08:19:43.049275 ab4d6465-c115-49e9-bc81-105a298817e3 {"pid": "3649", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/050323474"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:43.17479 2023-07-08 08:19:43.174801 269d9c43-0dcf-4a77-98d4-671607439264 {"pid": "3650", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/050329332"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:43.471615 2023-07-08 08:19:43.471628 53ee05de-7247-45ad-b71f-10af703e1665 {"pid": "3651", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/050593587"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:43.58482 2023-07-08 08:19:43.584827 63cb9951-0a1b-4dc5-bbd2-056cce7a77b5 {"pid": "3652", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/05066302X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:43.697631 2023-07-08 08:19:43.697641 93800a5d-3c63-4826-bf62-0a5266ba752c {"pid": "3653", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/050667947"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:43.944054 2023-07-08 08:19:43.944065 882bf0dc-5d3f-42fa-b683-0f8cbc901d53 {"pid": "3654", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/050723634"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:44.061216 2023-07-08 08:19:44.061227 0b33e1fa-ab00-4745-8d82-5ff6be9ab4d4 {"pid": "3655", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/050785745"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:44.177553 2023-07-08 08:19:44.177572 1b621a1d-bee3-4be9-b9fb-21e17b20383d {"pid": "3656", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/050798928"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:44.434363 2023-07-08 08:19:44.434369 97d5395a-080a-48ae-add9-0c257b4a2b69 {"pid": "3657", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/052206327"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:44.522588 2023-07-08 08:19:44.522597 8ee38cd5-1226-4c9e-9dae-6bd52a541ffd {"pid": "3658", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/052460819"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:44.640378 2023-07-08 08:19:44.640388 d434f89f-6e68-4fe6-8413-34b3cdbb9d78 {"pid": "3659", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/052470911"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:44.897061 2023-07-08 08:19:44.897076 b5e17273-8af0-432c-8e92-5d2c6ff233e3 {"pid": "3661", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/052556220"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:45.024645 2023-07-08 08:19:45.024657 3d7e0e03-9e0d-417a-8939-fe860fc16b55 {"pid": "3662", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/052737284"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:45.281464 2023-07-08 08:19:45.281471 934214e8-ad81-40a0-804a-58f10dca8c53 {"pid": "3664", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/053500679"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:45.667774 2023-07-08 08:19:45.667784 64ddf224-e88a-44ff-ab15-c6e906d28a7f {"pid": "3667", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/055386806"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:45.794835 2023-07-08 08:19:45.794849 95c0262d-a026-439b-b5f7-50922a3ea6c6 {"pid": "3668", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/056579780"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:45.907229 2023-07-08 08:19:45.90724 6f5f7713-7c4e-48ef-906e-d99f3da26d89 {"pid": "3669", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/056753950"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:46.010292 2023-07-08 08:19:46.010301 c53d8645-a278-4a0c-a4bf-523f8ca80c68 {"pid": "3670", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/056755759"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:46.122019 2023-07-08 08:19:46.122029 ec37cfe2-b279-4541-9d7f-075f714e74d1 {"pid": "3671", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/056764073"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:46.233101 2023-07-08 08:19:46.233109 46ac35e0-26d0-4791-9f6b-5eb08267eaf5 {"pid": "3672", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/056766378"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:46.481624 2023-07-08 08:19:46.481637 fbb17003-fb64-4efb-a7dc-9e956874b385 {"pid": "3673", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/056810881"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:46.862714 2023-07-08 08:19:46.862727 c8d513cd-5156-4795-ba2c-77377fde8dc7 {"pid": "3676", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/056844093"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:00.921804 2023-07-08 10:29:15.576492 2bb511cc-131c-44d1-bbf1-d221eb8821ac {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/135961602"}, "pid": "2074", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003913856"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/056810741"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109453818"} 6 -2023-07-08 08:19:44.77422 2023-07-08 10:31:37.206573 5bfcfb0f-4a77-41ae-83da-73207898818d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/12031603X"}, "pid": "3660", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006173574"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/052470989"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112941957"} 5 -2023-07-08 08:19:45.53886 2023-07-08 10:29:23.817855 51bfc734-8d3d-4bbc-8435-1c9587b171de {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141208740"}, "pid": "3666", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003919082"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/055333893"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109826878"} 5 -2023-07-08 08:15:00.186656 2023-07-08 10:30:35.884272 ae21d524-f189-4214-ba04-9c4cca2099af {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1056604328"}, "pid": "848", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003328096"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/050822551"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111417231"} 6 -2023-07-08 08:19:45.167627 2023-07-08 10:23:31.445432 a6f821ef-dd3c-4c88-a16b-42b71f242bf6 {"pid": "3663", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/053434080"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10014052"} 2 -2023-07-08 08:19:46.977975 2023-07-08 08:19:46.977986 6bec1a0d-1db7-44d9-bcbf-50f65681a8a0 {"pid": "3677", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/056857276"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:47.119851 2023-07-08 08:19:47.119859 b1e8e708-1ce4-4c22-836a-d5223ec09460 {"pid": "3678", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/056868324"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:47.373389 2023-07-08 08:19:47.373402 14380b9f-838e-429b-8544-c13deefd8a1b {"pid": "3680", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/056955669"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:47.507019 2023-07-08 08:19:47.507027 658b2b40-e1f2-48ce-9db2-a0d836c4e564 {"pid": "3681", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/057030448"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:47.621033 2023-07-08 08:19:47.621048 f476b89e-4c25-45d0-9776-8b797f67c090 {"pid": "3682", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/057097909"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:47.751719 2023-07-08 08:19:47.751727 027be098-460f-43d8-83c3-7e0edf965ff1 {"pid": "3683", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/057101795"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:47.876659 2023-07-08 08:19:47.876669 2bd2f7d2-0ad2-4419-9d7d-1a1948514a16 {"pid": "3684", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/057110662"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:48.024483 2023-07-08 08:19:48.0245 3464f45a-8e92-4475-925d-d5e356815fc7 {"pid": "3685", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/057199892"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:48.157424 2023-07-08 08:19:48.157436 e64cc44b-79f0-4597-9565-c018d3c531f2 {"pid": "3686", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/057249660"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:48.292295 2023-07-08 08:19:48.292306 71bfb95b-591c-43ce-afb3-18e3735a475f {"pid": "3687", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/057271372"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:48.44247 2023-07-08 08:19:48.442481 7ec81e02-7fbe-4d5e-9b93-a9266e1869b2 {"pid": "3688", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/057329850"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:48.586658 2023-07-08 08:19:48.586673 8d926325-b1e6-4524-9ef5-23fc62c56f91 {"pid": "3689", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/057345627"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:48.712423 2023-07-08 08:19:48.712433 db20fbb6-963e-4fda-8887-3fd754c13d69 {"pid": "3690", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/057376719"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:48.846555 2023-07-08 08:19:48.84657 cf45e660-a6b7-42d0-a47b-a549e0bb464d {"pid": "3691", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/057556474"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:48.962753 2023-07-08 08:19:48.962765 dfa0c5a9-7541-4df1-8a9e-90ee9256179b {"pid": "3692", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/057564647"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:49.075849 2023-07-08 08:19:49.075861 6b2abe04-82e5-4cc4-a6bb-240a2ef43a0a {"pid": "3693", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/057564876"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:49.195811 2023-07-08 08:19:49.195821 525deb29-bc26-425a-9f14-493055b7c009 {"pid": "3694", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/057687242"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:49.321001 2023-07-08 08:19:49.321012 db7d2274-fcc8-4c88-85e3-d38303c01149 {"pid": "3695", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/05769009X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:49.440793 2023-07-08 08:19:49.440802 70ec26de-98eb-435f-8c91-973394963cfe {"pid": "3696", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/05776171X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:49.565316 2023-07-08 08:19:49.565326 ebd78795-14fd-44d1-80e5-d4ebcebf3656 {"pid": "3697", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/057791511"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:49.68257 2023-07-08 08:19:49.682584 da5d6bf1-5789-44fe-be2b-ad6b29ea4fa7 {"pid": "3698", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/057941386"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:49.802677 2023-07-08 08:19:49.802691 f1de4a6e-ea0d-4248-941f-74957ae5bd43 {"pid": "3699", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/058054529"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:49.919811 2023-07-08 08:19:49.919824 37ecceeb-8093-4918-9375-2f611b93c0d4 {"pid": "3700", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/058114491"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:50.180345 2023-07-08 08:19:50.180359 18b780e0-f4b8-4944-bcde-f7ef164812a2 {"pid": "3702", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/058861998"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:50.311237 2023-07-08 08:19:50.31125 7f7418b1-3edc-4eea-8cd0-baf924e996bf {"pid": "3703", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/058993789"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:50.426609 2023-07-08 08:19:50.426622 ea132a03-a7ed-4174-87e3-49e051469f7e {"pid": "3704", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/059051051"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:50.551903 2023-07-08 08:19:50.551917 7715b9d6-6a99-4f54-b2d5-606798ec362b {"pid": "3705", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/059202491"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:50.045972 2023-07-08 10:24:10.665697 55f5d91a-4a7d-41ad-b8a1-d220a475a617 {"pid": "3701", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/058598928"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10100759"} 2 -2023-07-08 08:16:35.894971 2023-07-08 10:27:58.873869 b6cb9571-c289-4c2d-91d7-3878bbb4899e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124271057"}, "pid": "1823", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/059412720"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10775010"} 4 -2023-07-08 08:19:51.083312 2023-07-08 08:19:51.083322 cee6c426-ee02-4226-bafc-95e7f62c0fca {"pid": "3708", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/059742984"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:51.222596 2023-07-08 08:19:51.222609 98c4fb5b-45b3-487f-b0c3-aa1f93090c61 {"pid": "3709", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/059774177"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:51.351632 2023-07-08 08:19:51.351648 1b2516d6-2baa-4e47-b115-89c459913818 {"pid": "3710", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/059780843"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:51.472603 2023-07-08 08:19:51.47261 50519b54-c924-4937-a45a-e6b6590afc8d {"pid": "3711", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/059922184"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:51.591141 2023-07-08 08:19:51.59115 fab8bda0-7117-4625-ad10-aab2537f6f9a {"pid": "3712", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/059943696"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:51.717254 2023-07-08 08:19:51.71727 1da54f91-6182-4153-8fff-b37cad4a4e0d {"pid": "3713", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/060104406"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:51.977279 2023-07-08 08:19:51.977293 db297b03-81bc-48c0-a577-a8ff770c7e81 {"pid": "3715", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/060256982"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:52.1211 2023-07-08 08:19:52.121108 37dd5d0f-fd16-4ec7-988a-2a6f15854dd4 {"pid": "3716", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/060459743"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:52.366306 2023-07-08 08:19:52.366319 c1fb8f8a-f692-41ef-973b-6cd1d71dd342 {"pid": "3718", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/060722320"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:52.467729 2023-07-08 08:19:52.467738 369e7224-85be-4ff5-b187-f5e1e58e63cc {"pid": "3719", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/060754435"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:52.573142 2023-07-08 08:19:52.57315 316ebec1-f712-47b6-b4c9-580cf1a9c683 {"pid": "3720", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/060756985"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:52.701932 2023-07-08 08:19:52.701945 50d40837-50d1-420b-9dfb-ad6c9773c224 {"pid": "3721", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/060819529"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:52.814996 2023-07-08 08:19:52.815009 f5fe779e-eed6-4f2b-9622-ded1321fb0f2 {"pid": "3722", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/060890932"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:52.936432 2023-07-08 08:19:52.936447 6e39d6be-a761-4699-be56-feda00737e0d {"pid": "3723", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/061077690"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:53.059008 2023-07-08 08:19:53.059024 0a8bc36c-daac-4249-83ec-74aeb1854a35 {"pid": "3724", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/061113603"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:53.181081 2023-07-08 08:19:53.181088 8cfcc30f-7776-4fa7-a11d-5d717e6875b8 {"pid": "3725", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/061131547"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:53.307743 2023-07-08 08:19:53.307758 19ab7e35-c312-4d16-9898-773c692f685e {"pid": "3726", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/061135437"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:53.424691 2023-07-08 08:19:53.4247 10ca83f0-882e-4dfa-8b1c-ba4e009e2241 {"pid": "3727", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/061190586"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:53.550112 2023-07-08 08:19:53.550121 e89248f1-1721-4232-a01b-04afb625e66f {"pid": "3728", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/063876981"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:53.667512 2023-07-08 08:19:53.667524 58a594cd-74d4-4a60-94e9-d299d0bb2d34 {"pid": "3729", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/066759099"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:53.801092 2023-07-08 08:19:53.801102 d6e7b4c6-6b5b-437e-9766-3f13dddf77ca {"pid": "3730", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/066764602"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:53.930206 2023-07-08 08:19:53.930222 4e647d12-3506-4b68-9378-59b5a8f96210 {"pid": "3731", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/066772834"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:54.052298 2023-07-08 08:19:54.052308 94a4ff25-0843-4e88-95ea-37f234dd1187 {"pid": "3732", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/06685086X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:54.170638 2023-07-08 08:19:54.170651 d5a8aee5-2dbb-492e-b4a4-88bfea4ad820 {"pid": "3733", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/066879353"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:54.283626 2023-07-08 08:19:54.283639 5f8f92c3-d8a8-427a-aef7-97403a422047 {"pid": "3734", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/066897815"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:54.407281 2023-07-08 08:19:54.407301 2acc86f7-fd0c-4d84-a3fb-efb9daaacfc4 {"pid": "3735", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/066902096"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:54.51537 2023-07-08 08:19:54.515379 55d3cc00-16f5-4c16-b7a6-ac3d58a3be91 {"pid": "3736", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/066986540"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:54.637381 2023-07-08 08:19:54.637395 4b486815-196c-40e3-8423-9b45c0a6a721 {"pid": "3737", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/066993709"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:58.381425 2023-07-08 08:19:58.381434 100fa76f-2be3-4082-a314-5f7aa6aa515d {"pid": "3764", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/069843783"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:52.251185 2023-07-08 10:23:58.714431 bbb8c8af-2e24-4861-a79b-6650f2bb11db {"pid": "3717", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/060721995"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10061654"} 2 -2023-07-08 08:19:54.887614 2023-07-08 08:19:54.887623 fdec7b3f-ebbb-41dc-82a0-d67db974e884 {"pid": "3738", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/067042767"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:55.012262 2023-07-08 08:19:55.012272 d02980bc-76f7-4ce3-b733-f112b7fe98b0 {"pid": "3739", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/067071333"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:55.131575 2023-07-08 08:19:55.131586 8921c17d-242f-4c2d-844a-d561d9090c74 {"pid": "3740", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/067071740"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:55.238419 2023-07-08 08:19:55.238426 fd77396f-98f6-4cc6-bd21-2b243c94aa69 {"pid": "3741", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/067073204"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:55.356315 2023-07-08 08:19:55.356324 f5cd9efe-9799-43de-ad73-57caebcf2d93 {"pid": "3742", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/067086055"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:55.463175 2023-07-08 08:19:55.463183 39ebc6ec-e4c5-47b0-9359-ef543551c551 {"pid": "3743", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/067096441"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:55.591645 2023-07-08 08:19:55.591656 965a8f9f-9d9e-4935-abbb-228426557b32 {"pid": "3744", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/067096824"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:55.846623 2023-07-08 08:19:55.846634 35f423b0-53fa-42cd-96ad-02ae0c5a774e {"pid": "3745", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/067181562"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:55.958128 2023-07-08 08:19:55.958135 cc51b27a-3eb5-4479-b20b-e7fbeacf6fe3 {"pid": "3746", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/067223613"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:56.060864 2023-07-08 08:19:56.060875 68fc801b-24e2-492b-af63-fe9721e8e8d0 {"pid": "3747", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/067285716"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:56.181017 2023-07-08 08:19:56.181034 b716ef44-586d-49a3-878d-3f0b11fb2004 {"pid": "3748", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/067321666"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:56.330085 2023-07-08 08:19:56.330094 33b935cb-aba9-4475-9e62-de343190dde9 {"pid": "3749", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/067345395"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:56.444797 2023-07-08 08:19:56.444813 fc8f2c82-b6e5-450a-82d1-07ac5d9d3864 {"pid": "3750", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/067692753"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:56.707075 2023-07-08 08:19:56.707083 deac7eff-4541-4b28-918b-1592d764b731 {"pid": "3751", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/067732003"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:56.819341 2023-07-08 08:19:56.81935 6b7bca4f-54b0-4cf7-ad9b-779e68ed01d2 {"pid": "3752", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/068703597"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:57.043404 2023-07-08 08:19:57.043415 abd5aef6-2a4d-422f-be16-fdeaf8e091e6 {"pid": "3754", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/069116458"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:57.161181 2023-07-08 08:19:57.161196 2e5b0dab-5e2c-436d-944a-d63bebf2412b {"pid": "3755", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/069130817"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:57.371451 2023-07-08 08:19:57.371459 7ff61c06-8e92-4afe-ac5a-8bbe795c0827 {"pid": "3757", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/06915547X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:57.487193 2023-07-08 08:19:57.48724 ede608b8-3133-49d0-84a6-dc452876b3e4 {"pid": "3758", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/069156964"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:57.603603 2023-07-08 08:19:57.603613 b4750067-881f-470c-a6f1-27ea269df7e3 {"pid": "3759", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/069265860"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:57.717982 2023-07-08 08:19:57.71799 8a3378b8-47be-4478-8036-431d4341c8d3 {"pid": "3760", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/069379777"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:57.980345 2023-07-08 08:19:57.980357 72b87762-49e7-43d0-b33f-a6a6ecd71c60 {"pid": "3761", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/069679908"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:58.112462 2023-07-08 08:19:58.112476 9393d934-ca03-4915-907c-a9c13050eca9 {"pid": "3762", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/069781524"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:17:29.735121 2023-07-08 10:31:10.588344 ccb0e58e-9162-41f0-9c51-ac2a4d69b6ad {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172448611"}, "pid": "2384", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003969580"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/067174299"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111916246"} 6 -2023-07-08 08:19:57.275716 2023-07-08 10:29:52.436615 aac90c38-a97d-48aa-aa54-ba99b5b68d5a {"pid": "3756", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003870613"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/069148155"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110245846"} 4 -2023-07-08 08:19:56.935433 2023-07-08 10:24:26.03039 93e3cdb4-242a-4416-9fbd-122ed92dfd96 {"pid": "3753", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/069064830"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10120900"} 2 -2023-07-08 08:17:31.484148 2023-07-08 10:28:47.137862 f37e1aac-2184-4943-ac05-e46ece92c308 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/17326851X"}, "pid": "2404", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003827929"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/069487332"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108874652"} 6 -2023-07-08 08:19:58.244787 2023-07-08 10:27:00.698548 ab6538a1-9107-4f5b-8b43-fa3611b716ca {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/117155608"}, "pid": "3763", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/069782768"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10615873"} 3 -2023-07-08 08:19:58.517768 2023-07-08 08:19:58.517782 a98885e1-a757-4e71-a281-36421e3fce49 {"pid": "3765", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/069844119"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:58.6413 2023-07-08 08:19:58.64131 32698084-ad63-4651-8a18-5c2c6e8ebb3a {"pid": "3766", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/069886687"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:58.771413 2023-07-08 08:19:58.771429 639593d6-575a-4502-9b55-6361d8e86bf6 {"pid": "3767", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/070054878"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:58.936129 2023-07-08 08:19:58.936143 e09f4d7d-556d-430c-b364-a297cceb47c1 {"pid": "3768", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/070150737"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:59.059192 2023-07-08 08:19:59.059201 d0419613-d8fa-47e4-b0b7-e13df7f58344 {"pid": "3769", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/070160538"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:59.44069 2023-07-08 08:19:59.4407 30cb0259-0d05-482a-8908-239a67d8ccd4 {"pid": "3771", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/070377510"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:59.558467 2023-07-08 08:19:59.558477 8e2118ae-ceec-40a4-8c8a-e0ffa6792ffd {"pid": "3772", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/070400229"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:59.683294 2023-07-08 08:19:59.683305 40d44e29-cf6b-489c-b1e7-f135649ed513 {"pid": "3773", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/070478015"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:59.805669 2023-07-08 08:19:59.805682 f747c1f0-b309-42f3-aebd-1e01eb225ca1 {"pid": "3774", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/070664900"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:59.928075 2023-07-08 08:19:59.92809 88acfe80-916c-4493-b261-adcb414a30f3 {"pid": "3775", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/070977275"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:00.070404 2023-07-08 08:20:00.070417 4bdde04f-f0bf-4b56-b3cb-9b25a6bfee22 {"pid": "3776", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/071004092"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:00.331029 2023-07-08 08:20:00.331037 22e4f65b-305b-4fec-a246-38c486ba96e8 {"pid": "3777", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/071088679"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:00.453973 2023-07-08 08:20:00.453981 b8b113a0-f32c-44c6-9797-dd5482ff4fac {"pid": "3778", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/071120637"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:00.702153 2023-07-08 08:20:00.702169 aa60391f-5227-414d-82b7-abbccd76b8c7 {"pid": "3780", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/071324380"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:01.266842 2023-07-08 08:20:01.266854 549dc213-536c-4799-a806-85d36d717a03 {"pid": "3782", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/071555994"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:01.379328 2023-07-08 08:20:01.37934 532db950-f1d2-4feb-9086-21dc0d1340e3 {"pid": "3783", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/07162080X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:01.49531 2023-07-08 08:20:01.495322 2a66f140-f1cd-45aa-9ab1-2b0948e2f310 {"pid": "3784", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/071960651"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:01.613268 2023-07-08 08:20:01.613276 c89ba99d-8784-4250-9a7c-f681b6069881 {"pid": "3785", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/072291826"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:01.756454 2023-07-08 08:20:01.756461 7b210a86-985d-4a59-9a33-346aa3e9e430 {"pid": "3786", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/073256897"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:01.877248 2023-07-08 08:20:01.877262 e827727d-2b24-42c4-9a07-9017a8733290 {"pid": "3787", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/07327822X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:01.994972 2023-07-08 08:20:01.994981 05f9f811-de6d-4628-a8bd-51dd1618ada7 {"pid": "3788", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/073281794"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:02.110204 2023-07-08 08:20:02.110218 33e9a65a-629c-49d6-8c66-ca78fa24d6a7 {"pid": "3789", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/07330235X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:02.235752 2023-07-08 08:20:02.235765 cb13c526-80ba-4fcd-bc33-225e69d41635 {"pid": "3790", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/073312673"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:02.354089 2023-07-08 08:20:02.354097 f3f7a878-7f58-4407-9847-243e330afb2e {"pid": "3791", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/073329673"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:02.462866 2023-07-08 08:20:02.462877 b8ea1f63-3f7c-4e4a-b6ce-91cd4179d22e {"pid": "3792", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/073368989"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:02.580695 2023-07-08 08:20:02.580706 97c9c27b-2283-4e9b-a056-c95bb4b701a4 {"pid": "3793", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/07338206X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:02.69332 2023-07-08 08:20:02.693334 b9bf1a73-46eb-4383-a59c-8ead83eea317 {"pid": "3794", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/073432865"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:00.581248 2023-07-08 10:27:53.50349 e5193293-64ee-40ad-abf1-9e531991338a {"pid": "3779", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/071285571"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107615966"} 2 -2023-07-08 08:19:59.322963 2023-07-08 10:24:05.294065 2b7f8d18-043f-4521-aa4e-1be794118698 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/103624163"}, "pid": "3770", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018477130"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/070328005"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10084875"} 5 -2023-07-08 08:20:02.812596 2023-07-08 08:20:02.812606 cc2bf7dc-aa97-48f1-8e44-92d1f0a6f16d {"pid": "3795", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/073648027"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:03.045479 2023-07-08 08:20:03.045491 b25fd475-338c-4094-bb91-3cb25344ee44 {"pid": "3797", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/073704199"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:03.160461 2023-07-08 08:20:03.160475 25688cd4-6c19-49a1-b020-e600f2d44846 {"pid": "3798", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/073875724"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:03.26969 2023-07-08 08:20:03.269706 461656ce-670e-4b72-be95-d98c5416c1ba {"pid": "3799", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/073949183"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:03.377348 2023-07-08 08:20:03.377361 1bb70efe-2623-4314-8311-4004f828e418 {"pid": "3800", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/074008552"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:03.500584 2023-07-08 08:20:03.500597 1b875aea-bcad-4856-9957-f62eec670a31 {"pid": "3801", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/074011278"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:03.621801 2023-07-08 08:20:03.621813 a429903d-9add-4b67-9d39-f453fd860eb3 {"pid": "3802", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/074092855"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:03.738837 2023-07-08 08:20:03.738845 d30dd465-3473-4ac1-8934-b0ae6470bfad {"pid": "3803", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/074110217"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:03.842382 2023-07-08 08:20:03.842393 f7ad8e3b-7ea4-4e9d-a2b3-371b7c1141de {"pid": "3804", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/074287680"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:03.947259 2023-07-08 08:20:03.947267 9711bb23-9c19-41ee-8819-b5f525e020ff {"pid": "3805", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/07432389X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:04.051968 2023-07-08 08:20:04.051974 2f9490c9-2a25-4274-8b02-16071799d8bb {"pid": "3806", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/074552996"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:04.172568 2023-07-08 08:20:04.172577 eed07100-860b-43ce-8d61-c78543c722fb {"pid": "3807", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/074594788"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:04.317131 2023-07-08 08:20:04.317144 31a51003-1534-4e3d-9e3d-1eeea9d64cb6 {"pid": "3808", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/075029189"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:04.609558 2023-07-08 08:20:04.609567 92a328bf-062d-4395-b732-8d22481dac3d {"pid": "3810", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/075103672"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:04.728911 2023-07-08 08:20:04.72892 b5b87f41-3c4a-4976-8c9f-438a13be70e5 {"pid": "3811", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/075129094"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:04.85416 2023-07-08 08:20:04.854174 41ffd2f4-ccd8-45a4-bd49-340f6e9f959c {"pid": "3812", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/075134438"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:04.969288 2023-07-08 08:20:04.969301 7d86713d-d42d-4e4d-a40c-759dbd73d59a {"pid": "3813", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/075146975"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:05.102613 2023-07-08 08:20:05.102623 103bb07f-5333-41dc-b486-ca95bc4aabb6 {"pid": "3814", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/075434008"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:05.255879 2023-07-08 08:20:05.25589 826c8c79-d859-41eb-bf91-28abdb4b9f79 {"pid": "3815", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/075435179"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:05.384728 2023-07-08 08:20:05.38474 1e52e7c5-146e-4687-a24e-87473a9feab1 {"pid": "3816", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/075612178"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:05.503132 2023-07-08 08:20:05.503143 d00e3712-44ea-4543-bf48-b334ed12e1d1 {"pid": "3817", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/075690632"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:05.912059 2023-07-08 08:20:05.912063 63dcfc32-3f00-4e8e-bc24-c24b74d69097 {"pid": "3819", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/075912872"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:06.157738 2023-07-08 08:20:06.157742 c037ad1d-6ba0-45be-9ac5-559ae308ad84 {"pid": "3822", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/076054241"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:06.231088 2023-07-08 08:20:06.231092 d9c4280f-9313-4730-81b8-2f9bfa5b5f5f {"pid": "3823", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/076340384"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:06.321577 2023-07-08 08:20:06.321583 b7df766d-447f-4912-a869-e5175b343345 {"pid": "3824", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/076418731"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:05.780584 2023-07-08 10:24:39.633378 7842b20f-c6e4-4e0d-b012-060fd0001d7a {"pid": "3818", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009519020"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/075899655"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10145903"} 4 -2023-07-08 08:20:05.99589 2023-07-08 10:26:51.543337 b6abb51f-036c-4777-9dcc-da55d112ab04 {"pid": "3820", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/075964686"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106022462"} 2 -2023-07-08 08:20:04.475239 2023-07-08 10:24:33.658633 3064c837-f7d7-4df6-9eeb-930a10c1b99e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/13962693X"}, "pid": "3809", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/07505924X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101346417"} 3 -2023-07-08 08:20:06.085365 2023-07-08 10:31:31.981125 d1740a16-a8af-4692-b3fd-e2652cbaf8df {"pid": "3821", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/076007316"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112574090"} 2 -2023-07-08 08:20:06.419153 2023-07-08 08:20:06.419161 420b9ce1-437c-4e05-a281-ac4077ea3387 {"pid": "3825", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/076680819"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:06.518435 2023-07-08 08:20:06.518443 78b90968-836e-4921-bc90-4115cb9667f5 {"pid": "3826", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/076709116"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:06.599518 2023-07-08 08:20:06.599522 a610be88-8ee1-4721-876f-998fa2891178 {"pid": "3827", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/076721256"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:06.684354 2023-07-08 08:20:06.684359 2c1ce871-1395-4d1b-8bc1-bffa20ec60a0 {"pid": "3828", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/076752054"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:06.796945 2023-07-08 08:20:06.796951 7a7b5b32-df4b-43b9-ae3b-d7b9414613b4 {"pid": "3829", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/076905470"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:06.879255 2023-07-08 08:20:06.879261 1730351a-6bf7-40c9-9393-279ef2df9f2a {"pid": "3830", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/076968537"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:06.962979 2023-07-08 08:20:06.962984 9a417dcd-b188-4e71-acd7-508933173643 {"pid": "3831", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/077006453"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:07.152555 2023-07-08 08:20:07.152564 ee70f820-26d6-4fb7-9078-17856a752442 {"pid": "3832", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/077119428"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:07.247725 2023-07-08 08:20:07.247729 4637a4e6-35e2-4654-86b8-4d05a619046a {"pid": "3833", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/077143043"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:07.328783 2023-07-08 08:20:07.328786 3d0a2d36-3182-47ee-9312-8b5210c440f6 {"pid": "3834", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/077162617"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:07.398153 2023-07-08 08:20:07.398156 cd4d6c19-e2a2-4808-a12d-4622491eb7d9 {"pid": "3835", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/077335996"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:07.476549 2023-07-08 08:20:07.476558 4bae827e-4658-4326-9544-127f567a034e {"pid": "3836", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/07733826X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:07.551108 2023-07-08 08:20:07.551111 d94306fd-5b72-4c35-9b9d-92dbaec05be7 {"pid": "3837", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/077342097"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:07.631741 2023-07-08 08:20:07.63175 10a620ee-778b-4395-aaac-72df085e1096 {"pid": "3838", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/07741084X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:07.805113 2023-07-08 08:20:07.80512 6380e415-564a-44ae-98a0-93974380077e {"pid": "3840", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/077446534"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:07.90411 2023-07-08 08:20:07.904116 97cfa7ef-6c46-4914-9bd9-13448ce3a9ec {"pid": "3841", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/07750528X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:07.98697 2023-07-08 08:20:07.986977 2519aedf-52b6-46bd-aff9-d66ff33b5f68 {"pid": "3842", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/077763009"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:08.277893 2023-07-08 08:20:08.2779 7f5fa1dd-4c7c-4e63-b14e-45b9d88c08c7 {"pid": "3845", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/078038766"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:08.366849 2023-07-08 08:20:08.366852 b90dad11-d94a-4153-b2fa-cd750c9f6cda {"pid": "3846", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/078054982"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:08.46961 2023-07-08 08:20:08.469619 f54cb442-ae0b-4593-a631-1e7aca22912f {"pid": "3847", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/078075467"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:08.546453 2023-07-08 08:20:08.546457 2977cc49-49e5-4903-8561-bcc10d9e47cf {"pid": "3848", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/078076641"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:08.617177 2023-07-08 08:20:08.61718 d9c868ab-61fb-4b38-8445-de721d85fe6c {"pid": "3849", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/078079330"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:08.686018 2023-07-08 08:20:08.686022 4e04605f-bf22-47cf-afd3-4e76d91e2ac2 {"pid": "3850", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/078118948"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:08.760619 2023-07-08 08:20:08.760622 831b4bf2-fd23-461c-a000-310670c92d70 {"pid": "3851", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/078185556"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:08.834756 2023-07-08 08:20:08.834761 da57466e-4215-4880-b530-2415de90af9e {"pid": "3852", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/078607078"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:08.91507 2023-07-08 08:20:08.915073 8d2987f4-f145-43e8-ad6e-68f43e601f6f {"pid": "3853", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/078619505"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:08.993707 2023-07-08 08:20:08.99371 b2354b5f-7d32-458b-af09-a9e7358f3992 {"pid": "3854", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/078640997"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:08.195536 2023-07-08 10:24:35.961972 7d0ed555-65fb-4acb-97d1-9af75ea2d5b8 {"pid": "3844", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012591999"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/077813138"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10141349"} 4 -2023-07-08 08:20:07.71395 2023-07-08 10:23:42.234127 81407f56-c4db-4a49-8157-cc9c1277bb36 {"pid": "3839", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/077437209"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100232612"} 2 -2023-07-08 08:20:09.067223 2023-07-08 08:20:09.067226 6327f6f2-0330-49b2-95e4-b0dea255dd28 {"pid": "3855", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/078763487"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:09.135944 2023-07-08 08:20:09.135947 ddeab71f-32fd-409e-9672-103013f16ef8 {"pid": "3856", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/078835089"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:09.396142 2023-07-08 08:20:09.39615 a871f754-c070-4be5-bda4-285789d725a1 {"pid": "3859", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/07904011X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:09.587371 2023-07-08 08:20:09.587375 7155b42e-62d0-4f81-8a23-9b8ac82b8e46 {"pid": "3861", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/079151639"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:09.678993 2023-07-08 08:20:09.679001 0456516b-35f9-434a-84f5-11719e7328e1 {"pid": "3862", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/079157106"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:09.77807 2023-07-08 08:20:09.778078 8e59198d-df44-4cad-86c5-ff581fe7fcaa {"pid": "3863", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/07925814X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:09.971197 2023-07-08 08:20:09.971206 bfabd76b-af14-455c-8cf8-e5e29948d245 {"pid": "3865", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/079436870"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:10.063978 2023-07-08 08:20:10.063987 07b244db-0ef1-4b5c-afcf-3de54585cae3 {"pid": "3866", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/07948901X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:10.156554 2023-07-08 08:20:10.156561 3b7a2147-2002-4500-82b5-070ba3beed45 {"pid": "3867", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/079506151"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:10.237674 2023-07-08 08:20:10.237677 e4fb77db-bff9-4c7d-9b2c-947d0450aafd {"pid": "3868", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/079550746"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:10.401244 2023-07-08 08:20:10.401249 c8f240d4-f974-4aae-add2-bc0604df47ac {"pid": "3870", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/07992056X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:10.481626 2023-07-08 08:20:10.481629 e4795415-545b-4e5f-9f52-ac7f3daaf4f5 {"pid": "3871", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/080088325"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:10.560116 2023-07-08 08:20:10.56012 c04d2c4d-80dd-497e-b564-a0309c2fbd69 {"pid": "3872", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/080102859"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:10.642017 2023-07-08 08:20:10.642025 804a1a89-090a-4388-b84f-d1d0580b5169 {"pid": "3873", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/08013484X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:10.839091 2023-07-08 08:20:10.839096 cc53be5e-6d09-405e-b8e5-dd1c8a68509b {"pid": "3875", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/080164994"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:10.939821 2023-07-08 08:20:10.939828 48dcc967-2734-4d42-975c-012016dbdc60 {"pid": "3876", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/08018734X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:11.044935 2023-07-08 08:20:11.044946 3ca72764-9305-4797-8ead-d1dce48d6a96 {"pid": "3877", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/080307426"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:11.137559 2023-07-08 08:20:11.137568 37417d4b-173c-4ce1-acdc-1ae8db176fe9 {"pid": "3878", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/080487238"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:11.23859 2023-07-08 08:20:11.238599 499a8def-3579-45b1-8d54-758c621cfdbd {"pid": "3879", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/080529712"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:11.329956 2023-07-08 08:20:11.329959 1bc4fbed-d9d6-48b3-824a-ad89fe835233 {"pid": "3880", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/080557732"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:11.413483 2023-07-08 08:20:11.413493 f05977a6-5433-4533-ace0-6a4eb8e01fd6 {"pid": "3881", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/080577350"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:11.499939 2023-07-08 08:20:11.499943 8f86604f-ad3c-44b6-b3da-97feacfa89ec {"pid": "3882", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/080596649"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:11.803432 2023-07-08 08:20:11.803442 f5b1fda1-94aa-4bfd-b4a5-9fd660e23b37 {"pid": "3884", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/080641024"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:09.501643 2023-07-08 10:28:35.115457 505528c4-39d8-473e-88f9-0e7945ac3656 {"pid": "3860", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003491429"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/079112943"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108494915"} 4 -2023-07-08 08:20:09.869473 2023-07-08 10:25:14.604921 4b4abdc0-1b96-4e98-9384-2cb9fa8f12cc {"pid": "3864", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/079303315"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102360210"} 2 -2023-07-08 08:20:10.738532 2023-07-08 10:23:48.633236 c53920b1-5df1-40d4-bb76-f0aec6d94c5f {"pid": "3874", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/080152503"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100347282"} 2 -2023-07-08 08:20:09.314278 2023-07-08 10:30:16.265584 36aaa78b-80d4-45c6-b75c-82968f619151 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143454781"}, "pid": "3858", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003389620"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/079020933"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110951617"} 5 -2023-07-08 08:20:11.716056 2023-07-08 10:30:06.436246 84c7cb60-32be-40fc-a2ff-9586f820bf05 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140749861"}, "pid": "3883", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/080622151"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110549452"} 3 -2023-07-08 08:20:11.872623 2023-07-08 08:20:11.872626 151f5142-d982-4539-86fd-ca36032b6b75 {"pid": "3885", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/080647359"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:11.969802 2023-07-08 08:20:11.969813 880613d4-bb3f-48b5-8229-30624ba36936 {"pid": "3886", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/080678971"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:12.083499 2023-07-08 08:20:12.083509 29717c4b-5d7e-45ff-bc27-602a82295830 {"pid": "3887", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/080683851"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:12.189533 2023-07-08 08:20:12.189539 8d70f5d5-2f33-41a9-accf-05a4a012497c {"pid": "3888", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/080722555"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:12.284333 2023-07-08 08:20:12.284336 9c326eb5-c9d1-4b31-93ad-dd84e10b01ff {"pid": "3889", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/080824072"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:12.369026 2023-07-08 08:20:12.369029 7f79ab20-0b3e-420a-9af2-72cb4be1e539 {"pid": "3890", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/080923690"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:12.467699 2023-07-08 08:20:12.467709 69494a03-b68c-4f5f-8139-2e1ee18a7ab7 {"pid": "3891", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/081103131"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:12.564458 2023-07-08 08:20:12.564472 80e9667c-e637-4459-935f-d90be300b956 {"pid": "3892", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/081199392"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:12.75162 2023-07-08 08:20:12.751629 7146c7c8-fd16-460d-8086-87fa358e3fcd {"pid": "3894", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/081271395"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:12.933507 2023-07-08 08:20:12.933516 1473d853-9a9c-4841-8171-38005c7f5613 {"pid": "3896", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/081402880"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:13.020108 2023-07-08 08:20:13.020115 e0595334-212b-4e0c-8b89-37b1448628b4 {"pid": "3897", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/081435827"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:13.10811 2023-07-08 08:20:13.108114 525b3cbb-04a1-4296-b49a-4bea668f2526 {"pid": "3898", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/081436351"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:13.197234 2023-07-08 08:20:13.197242 c8ad2321-b48d-4493-99b7-4fa831de854b {"pid": "3899", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/08147475X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:13.27899 2023-07-08 08:20:13.278998 808a72c2-da4c-4f3e-bb97-0a907df6f97f {"pid": "3900", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/081544693"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:13.354277 2023-07-08 08:20:13.35428 92f56e8a-62ce-4d00-ba2d-81216cc98438 {"pid": "3901", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/081600356"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:13.446937 2023-07-08 08:20:13.446942 c388bcaa-66d0-4304-b5ab-f38431143b06 {"pid": "3902", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/081609558"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:13.531543 2023-07-08 08:20:13.531553 010a5be1-7383-49df-8ced-9cc6810d0105 {"pid": "3903", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/081719752"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:13.625384 2023-07-08 08:20:13.625395 8d115bc4-4f14-46f6-9b07-ab35f7ffc542 {"pid": "3904", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/081801793"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:13.732112 2023-07-08 08:20:13.73212 78b6ab1c-0c7a-443b-bf69-fc6948e568b2 {"pid": "3905", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/081895046"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:13.83386 2023-07-08 08:20:13.833864 bb645cfd-7f37-40e6-b6cb-95d3ae7f5e03 {"pid": "3906", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/082025398"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:13.917872 2023-07-08 08:20:13.917878 fc23fba0-e802-4d50-abf6-03d0419159f9 {"pid": "3907", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/082057826"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:14.011612 2023-07-08 08:20:14.011623 04c56c86-f345-433b-b7a4-949be2628c11 {"pid": "3908", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/082085072"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:14.197529 2023-07-08 08:20:14.197536 0b1405b2-1a50-4c55-8a7a-1d6e9b8acc5c {"pid": "3909", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/082116008"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:14.300803 2023-07-08 08:20:14.30081 c63e3bbb-bd28-45b7-8db3-0cc960634c93 {"pid": "3910", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/082333173"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:14.540775 2023-07-08 08:20:14.540787 9cd442ba-150d-433a-a7f5-cd51f1667662 {"pid": "3912", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/082609675"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:14.647358 2023-07-08 08:20:14.647368 7d0b3fe7-9099-4468-8266-f8440ed8cdf0 {"pid": "3913", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/082702446"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:14.745993 2023-07-08 08:20:14.746 e6358bcf-bece-41d6-8e8b-772913dcd19c {"pid": "3914", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083069119"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:14.842965 2023-07-08 08:20:14.842968 51f41a4c-bfae-4e75-94aa-19033736890f {"pid": "3915", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083194037"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:14.433486 2023-07-08 10:24:08.649326 bfd41e97-ac74-49ca-877e-710ef5a2a304 {"pid": "3911", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A010938873"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/082560757"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10095611"} 4 -2023-07-08 08:20:12.842948 2023-07-08 10:26:16.780348 8fd6e96d-f378-4afa-8191-c454e2ba35a0 {"pid": "3895", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/081311249"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104149106006668490615"} 2 -2023-07-08 08:20:14.943741 2023-07-08 08:20:14.943749 64d95c72-c7bf-474f-8d2d-ebdf717e5975 {"pid": "3916", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083221689"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:15.033916 2023-07-08 08:20:15.033925 1f6ef8ca-2665-47d3-bc77-c3bb1779482c {"pid": "3917", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083252819"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:15.128342 2023-07-08 08:20:15.128349 fdbf36f8-65eb-4d49-a9b5-02332714f494 {"pid": "3918", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083373365"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:15.21144 2023-07-08 08:20:15.211444 8293cd73-48a3-44a8-8881-563e56057b55 {"pid": "3919", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083467815"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:15.299432 2023-07-08 08:20:15.299444 5a13a356-da26-4ce5-8a21-95c141b656cf {"pid": "3920", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083488790"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:15.375108 2023-07-08 08:20:15.375112 ed71b26b-1299-4a25-a45d-060b37e5a022 {"pid": "3921", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083493778"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:15.459914 2023-07-08 08:20:15.459921 86fa8023-abdc-4a6e-9ce6-fce05d1f80b5 {"pid": "3922", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083553843"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:15.554009 2023-07-08 08:20:15.554019 0b87a440-436b-4507-9c51-716cbfecc00d {"pid": "3923", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083568077"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:15.642615 2023-07-08 08:20:15.642626 e695dcef-de29-48ce-a493-5f3640e52c3c {"pid": "3924", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083580522"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:15.747807 2023-07-08 08:20:15.747814 08d6fa89-112d-4b72-a354-54ff10a21b24 {"pid": "3925", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083680683"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:15.836662 2023-07-08 08:20:15.836666 b62123fc-b97a-49ed-8b3c-68cff05bc376 {"pid": "3926", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083712941"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:15.921644 2023-07-08 08:20:15.921655 19513c18-a4f5-4846-8ac1-90819c6e4c23 {"pid": "3927", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083715789"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:16.017064 2023-07-08 08:20:16.017072 e5da89ad-65d2-4ef0-922f-00b234278e29 {"pid": "3928", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083726861"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:16.113013 2023-07-08 08:20:16.113024 57c58d17-8cfe-417f-a868-0ad75c8c76e3 {"pid": "3929", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083737499"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:16.216834 2023-07-08 08:20:16.216841 50036195-c8c8-41c3-9913-a9d882685c96 {"pid": "3930", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083767827"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:16.335235 2023-07-08 08:20:16.335242 cdb7dc99-460f-4dab-99e9-a31f3d32de76 {"pid": "3931", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083843361"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:16.416807 2023-07-08 08:20:16.416812 569b92e2-3adc-4ae5-858d-97c30723de0d {"pid": "3932", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083843981"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:16.509787 2023-07-08 08:20:16.509797 180fa17d-b5b9-41bd-b426-e29959f03710 {"pid": "3933", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083885463"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:16.59643 2023-07-08 08:20:16.596439 f775dabe-86aa-4915-838d-517180a1b324 {"pid": "3934", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083928715"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:16.67753 2023-07-08 08:20:16.677534 e7280824-7c89-4ae3-aea4-be56e5308bd7 {"pid": "3935", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083961488"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:16.753368 2023-07-08 08:20:16.753372 f32e7393-421a-4c5d-9363-7938a09b218f {"pid": "3936", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083970592"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:16.911598 2023-07-08 08:20:16.911602 216681af-fe9f-4002-8539-9a4fc3056376 {"pid": "3938", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/084029463"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:16.988073 2023-07-08 08:20:16.988085 530cda2f-17ab-4666-9513-84c3d89f2241 {"pid": "3939", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/084037407"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:17.068975 2023-07-08 08:20:17.068983 34369b34-8454-4269-b4b6-b44df11b9683 {"pid": "3940", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/084062320"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:17.162197 2023-07-08 08:20:17.162205 2174b4ef-c3ad-41e9-ab09-f10901d803bb {"pid": "3941", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/084074752"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:17.343201 2023-07-08 08:20:17.343206 c93217e1-bfa2-401f-bdcb-7f1e863cd7c2 {"pid": "3942", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/084324856"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:17.432322 2023-07-08 08:20:17.432329 28b1bb92-27ee-4775-a8e0-17a2b0627f5a {"pid": "3943", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/08433293X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:17.534734 2023-07-08 08:20:17.534741 a1d4e916-3af7-4b72-89a4-aa09136cf9a1 {"pid": "3944", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/084346450"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:16.843843 2023-07-08 10:24:03.897568 eb04ca78-6833-46dd-ad5a-c38a15da6bdb {"pid": "3937", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/084028750"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100809810"} 2 -2023-07-08 08:15:19.287839 2023-07-08 10:31:38.562918 d556e7eb-b9cb-4fea-bbae-3500ae932fa4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089460732"}, "pid": "1061", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/084675810"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112986606"} 4 -2023-07-08 08:20:17.807168 2023-07-08 08:20:17.807179 c8033fb7-eb41-41c3-8783-e273159e4a0e {"pid": "3945", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/084728949"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:17.883384 2023-07-08 08:20:17.883397 e57ba861-57ff-4d1c-bb9b-3cf7cc5c765c {"pid": "3946", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/085001392"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:17.97834 2023-07-08 08:20:17.978351 0e2b4a0d-72d5-4649-9770-9e76ef0c4e17 {"pid": "3947", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/085232629"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:18.066884 2023-07-08 08:20:18.06689 11bf184c-b88a-4303-82a5-ff3172834444 {"pid": "3948", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/085232815"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:18.346 2023-07-08 08:20:18.346003 08177b12-2117-48a4-b255-df528b48ce1f {"pid": "3951", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/085617598"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:18.529117 2023-07-08 08:20:18.529124 1978ac82-9815-4327-b5b7-6a1ecdfff37f {"pid": "3952", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/085731390"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:18.62808 2023-07-08 08:20:18.628089 33a485bc-84c9-4cf3-80d6-4a7309da0530 {"pid": "3953", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/085825069"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:18.731412 2023-07-08 08:20:18.731421 1f4ba787-5f94-42b3-859a-ae369136f1ed {"pid": "3954", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/085826367"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:18.820255 2023-07-08 08:20:18.820261 27db0c85-0d51-43e4-8962-fe409640b2d2 {"pid": "3955", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/085835943"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:18.910951 2023-07-08 08:20:18.910958 46f97fb7-3f5b-4e2e-ad47-8afcdb18b206 {"pid": "3956", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/085856525"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:19.103249 2023-07-08 08:20:19.103259 8007d131-06d0-4596-b37f-6aadcec4dd3b {"pid": "3958", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/086019740"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:19.208671 2023-07-08 08:20:19.20868 7b8e0505-68f7-4903-84b8-13812f280c93 {"pid": "3959", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/086021311"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:19.314631 2023-07-08 08:20:19.31464 1d531b8b-a93a-48c3-891d-fe8c2be122b3 {"pid": "3960", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/08602308X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:19.404616 2023-07-08 08:20:19.40462 b3f4e07e-1e00-4624-8f9c-35b77288f464 {"pid": "3961", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/086069527"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:19.500821 2023-07-08 08:20:19.500827 353cfb97-d25c-4a5c-9f86-52d244fc21c7 {"pid": "3962", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/086069888"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:19.577366 2023-07-08 08:20:19.577374 0b8ce5b3-e8bc-433e-90d8-cc9a2570277f {"pid": "3963", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/08608416X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:19.652195 2023-07-08 08:20:19.6522 e14bb2e9-6eec-4c2e-8455-eb5c340064d6 {"pid": "3964", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/086094602"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:19.736302 2023-07-08 08:20:19.736308 09b22086-f167-4f8f-9a01-d504ece2bd7e {"pid": "3965", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/086124641"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:19.815659 2023-07-08 08:20:19.815669 0f5a1926-7858-4634-8397-a1f534723c6a {"pid": "3966", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/086139096"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:19.902874 2023-07-08 08:20:19.902879 04489ad8-5b80-4628-90ff-fbcd5b4d4568 {"pid": "3967", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/086168312"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:19.979564 2023-07-08 08:20:19.979568 77218179-a38b-49a2-a7c5-9a94d6410aa3 {"pid": "3968", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/086232827"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:20.047585 2023-07-08 08:20:20.047588 3f30976a-80af-409d-b8f6-6afe301075bd {"pid": "3969", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/086845659"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:20.114242 2023-07-08 08:20:20.114245 78459cd5-ff01-4689-b01a-bc126c6e63b9 {"pid": "3970", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/086849786"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:20.180887 2023-07-08 08:20:20.180891 cd3e6dc6-5a54-4708-9a89-b1368be26dae {"pid": "3971", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/087190087"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:20.331697 2023-07-08 08:20:20.3317 06c2b0dd-5b1e-4bcc-8629-1ea9a4bd3ce8 {"pid": "3973", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/087402467"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:20.515139 2023-07-08 08:20:20.515146 d0ee989e-1723-4cb4-a007-20334ce16776 {"pid": "3974", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/087504146"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:20.606484 2023-07-08 08:20:20.606494 f1163639-94f1-4c5d-a9d4-800c43d085ea {"pid": "3975", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/087535300"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:18.2591 2023-07-08 10:30:21.334144 3199a31f-71e5-44b5-95cc-8ab178d027b6 {"pid": "3950", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/085598143"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11107155"} 2 -2023-07-08 08:20:20.254625 2023-07-08 10:31:34.073192 50d5ca4b-35a4-463f-9af3-ccab474a1222 {"pid": "3972", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/087239981"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112741427"} 2 -2023-07-08 08:20:20.706877 2023-07-08 08:20:20.706883 d7abd04a-24c6-4cbf-bf5a-e82a943842e7 {"pid": "3976", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/087635585"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:20.792827 2023-07-08 08:20:20.792836 50e7ea11-c59a-488c-ac6a-3f905408087b {"pid": "3977", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/087649535"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:20.893541 2023-07-08 08:20:20.893549 89b560e9-1ece-4bdf-ab72-a4b80e5f98d1 {"pid": "3978", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/087823535"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:20.985717 2023-07-08 08:20:20.985725 6417c451-b48f-4052-9286-e3fe8416d7fb {"pid": "3979", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/087958686"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:21.084096 2023-07-08 08:20:21.084103 e223cba6-a544-4638-b66a-9d2243584e4f {"pid": "3980", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/088014029"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:21.19315 2023-07-08 08:20:21.193158 8858ab0b-39f4-457f-97e7-b11c0e5f1d07 {"pid": "3981", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/088042944"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:21.288039 2023-07-08 08:20:21.288047 226c80a9-61d7-47b2-8748-3af71b2535d7 {"pid": "3982", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/088082776"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:21.372181 2023-07-08 08:20:21.372184 fc71af8c-f671-4952-89f3-4d6277337395 {"pid": "3983", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/088088944"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:21.459264 2023-07-08 08:20:21.459274 0d1ebe6a-b82f-4060-a359-d0e7935abd72 {"pid": "3984", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/088106926"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:21.73724 2023-07-08 08:20:21.73725 322f351b-60ab-4932-986a-e00205c3b05b {"pid": "3986", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/088453022"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:21.833081 2023-07-08 08:20:21.833091 003d4b90-2f24-4d6a-8379-877af9760fcd {"pid": "3987", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/088540235"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:21.929655 2023-07-08 08:20:21.929666 07e8a40b-2ba9-4cd8-a40e-8a466e48e7ce {"pid": "3988", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/08870078X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:22.017546 2023-07-08 08:20:22.01755 c193ba29-82c4-4c4a-b9bd-b571014714e2 {"pid": "3989", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/08871246X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:22.090841 2023-07-08 08:20:22.090846 25aefb07-53df-448d-8c07-3309739b0975 {"pid": "3990", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/08875975X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:22.162867 2023-07-08 08:20:22.162871 48d05dc9-bc9e-4120-821a-7fc0e8054b8f {"pid": "3991", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/08880058X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:22.235953 2023-07-08 08:20:22.235957 d51bb813-67d5-4dcb-9a80-f5904fa3f895 {"pid": "3992", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/088888177"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:22.309005 2023-07-08 08:20:22.309011 f71c2ce8-a6a3-4cb8-bf88-2a54f706c3a3 {"pid": "3993", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/088920763"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:22.393904 2023-07-08 08:20:22.393907 d36aa3b1-7c92-4e4e-b112-436f8e316029 {"pid": "3994", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/088945332"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:22.477202 2023-07-08 08:20:22.477207 446963eb-8c81-43a0-8bf6-373de56627d8 {"pid": "3995", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/088984141"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:22.553295 2023-07-08 08:20:22.553301 b6710d61-3147-4b3c-b53f-659e299d076b {"pid": "3996", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/088997464"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:22.627874 2023-07-08 08:20:22.627877 699e8a1b-34e2-405c-bdde-bbf13158cd2d {"pid": "3997", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/089425596"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:22.769821 2023-07-08 08:20:22.769824 dc6a5af5-478d-48fa-975e-6b032e77e7b8 {"pid": "3999", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/090159225"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:22.838218 2023-07-08 08:20:22.838224 437fc6d8-0790-4dc4-ab54-fa6c24efc689 {"pid": "4000", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/09042333X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:22.906172 2023-07-08 08:20:22.906175 70df96f9-03ed-46e0-88a0-a0faf55dedb0 {"pid": "4001", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/091257174"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:22.978564 2023-07-08 08:20:22.978572 dfdb98d3-2b99-4f39-a905-5ae46254988c {"pid": "4002", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/091546230"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:23.049391 2023-07-08 08:20:23.049395 999005bf-c893-4a96-88ad-00da6c0103e2 {"pid": "4003", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/092002781"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:23.124725 2023-07-08 08:20:23.124729 3a9e7d04-8945-4ea2-806c-cc4bc848a526 {"pid": "4004", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/092098649"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:23.201358 2023-07-08 10:31:19.025951 cd6978e5-a5b0-47bb-a1b5-34eaaeb82fba {"pid": "4005", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014087607"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/092124356"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112148704326736932686"} 4 -2023-07-08 08:20:22.701086 2023-07-08 10:27:09.735969 15c67502-7262-4a0b-a853-fa4e8b2ab22f {"pid": "3998", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/089443675"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106409382"} 2 -2023-07-08 08:20:21.556871 2023-07-08 10:27:25.660913 99d91f72-6bb3-4e21-a0b4-122b4cc01344 {"pid": "3985", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/088397599"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106995742"} 2 -2023-07-08 08:20:23.269571 2023-07-08 08:20:23.269574 8c44a161-a0a3-4eda-af2d-a1ebe420b53a {"pid": "4006", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/092149561"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:23.338564 2023-07-08 08:20:23.338571 a79a1321-2c3e-4f7c-a716-7e55aa4a5382 {"pid": "4007", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/092241549"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:23.41453 2023-07-08 08:20:23.414533 b3438462-7438-4a96-a7f9-c791802529fc {"pid": "4008", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/092249760"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:23.638857 2023-07-08 08:20:23.638862 d7a29d5f-c8bd-4ddd-b36f-4f46455a5cad {"pid": "4010", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/092699987"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:23.711697 2023-07-08 08:20:23.711703 38c02fd3-8bdc-43dd-99ab-1fae5d817e3c {"pid": "4011", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/092726542"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:23.781303 2023-07-08 08:20:23.781307 9d23c4c9-49b5-4ff6-8e62-cb89603f546d {"pid": "4012", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/092792642"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:23.854165 2023-07-08 08:20:23.854169 372fc352-32a8-4685-9241-bbebccc20dd9 {"pid": "4013", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/092846653"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:23.922675 2023-07-08 08:20:23.922679 02427245-b182-4398-b79a-07a1b0957774 {"pid": "4014", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/093834470"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:23.989147 2023-07-08 08:20:23.989152 70a99658-42db-43a8-8421-9f83c9cb2afd {"pid": "4015", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/09396997X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:24.059207 2023-07-08 08:20:24.059211 4be5233c-f312-4192-8149-1c95fc3de611 {"pid": "4016", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/094133344"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:24.130484 2023-07-08 08:20:24.130488 fe207532-2289-4eed-bfca-64714d693f41 {"pid": "4017", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/094225230"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:24.201003 2023-07-08 08:20:24.201008 50604f4f-bd44-49f0-bc2f-564b8b27eb71 {"pid": "4018", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/09433434X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:24.272029 2023-07-08 08:20:24.272034 c11b3a8e-470d-41c2-bc03-08bb0afac534 {"pid": "4019", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/094460922"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:24.42102 2023-07-08 08:20:24.421023 40d2e882-9d93-4da4-979d-a02b9d012787 {"pid": "4020", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/094648980"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:24.497378 2023-07-08 08:20:24.497381 c5b62017-5a22-4cc2-8605-819bfaf4dfea {"pid": "4021", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/095038426"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:24.579344 2023-07-08 08:20:24.579347 0060254c-60a1-44f2-8b91-a8256ff9fdc8 {"pid": "4022", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/095087044"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:24.652863 2023-07-08 08:20:24.652866 19ec9599-8994-4020-868b-6a66434e411b {"pid": "4023", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/09512795X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:24.733747 2023-07-08 08:20:24.733752 472e6874-9073-4a1b-a920-80a94fa8b021 {"pid": "4024", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/095171738"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:24.805052 2023-07-08 08:20:24.805056 b4d00c69-e4f9-459a-be1d-35f89c62722e {"pid": "4025", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/095227415"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:24.880149 2023-07-08 08:20:24.880154 b747d405-3868-4f97-91ff-557b32c1bd8c {"pid": "4026", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/095344691"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:25.126228 2023-07-08 08:20:25.126231 35960874-233e-4778-a020-ff9831e76467 {"pid": "4029", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/095813225"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:25.19142 2023-07-08 08:20:25.191425 a17e69f5-86ae-4a60-971b-55407b1aea6a {"pid": "4030", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/095998160"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:25.256204 2023-07-08 08:20:25.256208 30754a69-cf43-4ec2-9de0-ff9426f6ac8e {"pid": "4031", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/096644389"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:25.320734 2023-07-08 08:20:25.320738 e690f67b-fe11-4d0c-ba08-c67778b65878 {"pid": "4032", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/09715010X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:25.388584 2023-07-08 08:20:25.388588 c18e77e8-9498-46ab-9a46-aecd0730d1ac {"pid": "4033", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/097502146"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:25.464262 2023-07-08 08:20:25.464265 ee53e8a1-af97-4fb0-a2c7-44cf05377b03 {"pid": "4034", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/097587222"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:24.956328 2023-07-08 10:31:32.445539 6366cb8c-1354-41a2-a944-2b6d1d43a207 {"pid": "4027", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/09564766X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112662623"} 2 -2023-07-08 08:20:23.567871 2023-07-08 10:31:31.607332 a91f86de-43d9-4cbd-aa43-6f83dd54a80f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/129388084"}, "pid": "4009", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012105454"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/092613314"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112525805"} 5 -2023-07-08 08:17:07.588457 2023-07-08 10:25:54.321082 0403a4dc-fdc2-4eb4-89a8-d40d704c94f5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140129510"}, "pid": "2141", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/092359116"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103430752"} 4 -2023-07-08 08:20:25.572842 2023-07-08 08:20:25.572852 a44d459c-99f4-433b-af0a-6a0bd314b0e6 {"pid": "4035", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/09794226X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:25.657922 2023-07-08 08:20:25.657926 ed980244-0b40-4dca-9dd8-e4b0b24e3634 {"pid": "4036", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/098214381"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:25.770186 2023-07-08 08:20:25.770195 9d1dc267-376e-4439-ba00-5045f6a023f0 {"pid": "4037", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/098413406"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:25.854574 2023-07-08 08:20:25.854578 052bdb2e-fc1e-4c27-b3bf-6d60823076dd {"pid": "4038", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/09883312X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:25.948589 2023-07-08 08:20:25.948597 3c6b06e8-1854-4cc3-a926-b589562bdd0c {"pid": "4039", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/100484522"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:26.038088 2023-07-08 08:20:26.038096 13a93454-3c86-4d6d-a2a8-6ce19801b8c6 {"pid": "4040", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/100570453"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:26.132323 2023-07-08 08:20:26.132331 562176ac-371b-445c-9d2f-aa7beffb366a {"pid": "4041", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/100930778"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:26.33196 2023-07-08 08:20:26.331968 0a2394e3-0060-4575-b16f-442bd97a7a5c {"pid": "4043", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/101283407"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:26.441713 2023-07-08 08:20:26.441725 a641a2c6-3acb-41bf-bba5-e09e231c65b1 {"pid": "4044", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/101346654"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:26.536727 2023-07-08 08:20:26.536735 b8f25280-1cc5-4043-8eb5-d0ba01f96255 {"pid": "4045", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/101397321"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:26.761541 2023-07-08 08:20:26.761549 40d1ba09-9f69-4343-a97b-d00b611ccd96 {"pid": "4047", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/102076855"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:26.851889 2023-07-08 08:20:26.851892 222e15e1-9b07-4ba8-9ad6-bfdb0e5b6d07 {"pid": "4048", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/102129150"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:26.933589 2023-07-08 08:20:26.933592 0f06d6ba-0417-4326-b16b-87536d020617 {"pid": "4049", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/102522170"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:27.113065 2023-07-08 08:20:27.113072 d3dd3208-220e-4491-9a56-92eacaab3528 {"pid": "4051", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/103208348"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:27.205137 2023-07-08 08:20:27.205146 084ead81-87c0-4e51-a31a-7820bf3f3bd9 {"pid": "4052", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/103396063"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:27.306867 2023-07-08 08:20:27.306876 1fed05d1-7cb8-46b7-a179-1eb509f3b8f0 {"pid": "4053", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/103540695"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:27.400062 2023-07-08 08:20:27.400072 2927fddc-01fb-4088-8f4c-5e616a6be9f5 {"pid": "4054", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/103578560"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:27.489349 2023-07-08 08:20:27.489357 7907cd83-4647-442a-9fa0-54b8ff5ab067 {"pid": "4055", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/10359342X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:27.57448 2023-07-08 08:20:27.574491 e493fb9a-b435-410d-ab42-3171bd4f6c9c {"pid": "4056", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/103613838"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:27.759536 2023-07-08 08:20:27.759545 7f5e5e17-5309-4008-9aa5-60716cd66004 {"pid": "4057", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/103835458"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:27.84213 2023-07-08 08:20:27.842139 d76b5146-f114-4454-86d0-ab8386c0c341 {"pid": "4058", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/103919511"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:27.912519 2023-07-08 08:20:27.912523 dba69725-2c2e-409d-8e2e-27140b3c1210 {"pid": "4059", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/104444126"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:28.000418 2023-07-08 08:20:28.000425 b167db6e-5ec1-49c5-94c3-33a2ebfc308a {"pid": "4060", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/104506830"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:28.094329 2023-07-08 08:20:28.09434 62270243-54c1-4a4f-8dfc-51876347b487 {"pid": "4061", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/105998168"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:28.18069 2023-07-08 08:20:28.1807 bb7585e3-5164-463c-bab9-591155e394c9 {"pid": "4062", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/106028723"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:28.265282 2023-07-08 08:20:28.265291 228f5f0a-e327-4688-bdc0-268393a8b64b {"pid": "4063", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/10694956X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:28.351214 2023-07-08 08:20:28.351218 686f7a32-4e96-4717-a871-f1fa27d5c41e {"pid": "4064", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/106952587"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:03.158793 2023-07-08 10:30:05.592795 958ba281-8256-45ba-a685-24d0427257b7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1067912916"}, "pid": "883", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/10368607X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110537374"} 4 -2023-07-08 08:20:26.236953 2023-07-08 10:30:58.766068 f5c173db-b4aa-4680-9ff1-8b0d5622f156 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/105597377X"}, "pid": "4042", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/101023235"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111620208"} 3 -2023-07-08 08:20:28.436151 2023-07-08 08:20:28.436157 e3365554-12bc-4f02-b109-0381ff4a03ad {"pid": "4065", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/106968696"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:28.630675 2023-07-08 08:20:28.630684 47714232-2a6c-4c8c-aa96-2fcda7e92aa4 {"pid": "4067", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/107702746"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:28.782572 2023-07-08 08:20:28.782574 aa982641-e375-4589-b585-0717caedc81d {"pid": "4068", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/108093875"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:28.860777 2023-07-08 08:20:28.860781 31bc6852-e8ed-498e-8628-7c8a77a5e8bf {"pid": "4069", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/108157873"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:28.942481 2023-07-08 08:20:28.942488 75d9a7d9-1b26-49b1-bc89-46ea0e355847 {"pid": "4070", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/108462897"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:29.119117 2023-07-08 08:20:29.11912 e9a37b16-8c73-4ad9-a2e7-6a37fae9ca6e {"pid": "4072", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/10853961X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:29.2112 2023-07-08 08:20:29.211207 28964873-130a-4923-b5ec-78a41adae330 {"pid": "4073", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/108882861"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:29.307966 2023-07-08 08:20:29.307979 e17b55da-e923-4db0-9b80-6fa4550edc9c {"pid": "4074", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/108960811"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:29.385229 2023-07-08 08:20:29.385232 6b9a7962-db7b-41dc-b14b-608f153c0ca6 {"pid": "4075", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/109075013"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:29.462535 2023-07-08 08:20:29.462543 17aee40c-6cef-4b49-8e9f-5b48c3dce961 {"pid": "4076", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/109149327"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:29.530696 2023-07-08 08:20:29.530701 31a5b0ea-a05f-4a32-bb41-20755c74e7de {"pid": "4077", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/109154746"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:29.614954 2023-07-08 08:20:29.614963 ebd26969-e78c-4edd-a204-723be0ebdb56 {"pid": "4078", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/10935026X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:29.699159 2023-07-08 08:20:29.699164 2aaa7d28-6eec-4fec-a807-43e0327cc47e {"pid": "4079", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/110078810"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:29.783642 2023-07-08 08:20:29.783649 d06377b3-ff1d-439a-97cc-a78cb4aed721 {"pid": "4080", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/110124596"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:29.964886 2023-07-08 08:20:29.964898 c790da08-be2d-4f46-b51f-b3d3680536a8 {"pid": "4082", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/11013253X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:30.047367 2023-07-08 08:20:30.04737 807aaea2-0a54-4f9e-b9e7-11378b201459 {"pid": "4083", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/11015469X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:30.219232 2023-07-08 08:20:30.219235 bc53ad26-b05f-4ff4-a8e3-5950bd85d10e {"pid": "4084", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/110195019"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:30.31105 2023-07-08 08:20:30.311058 8fade5fa-7a61-427b-8dc0-0d8c26670139 {"pid": "4085", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/11020414X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:30.394194 2023-07-08 08:20:30.394198 6d500abe-c69e-454a-b64b-561814e0f92b {"pid": "4086", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/110240723"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:30.478352 2023-07-08 08:20:30.478363 745edd43-8ba4-4e53-9cf2-1fb71e961055 {"pid": "4087", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/110458087"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:30.563728 2023-07-08 08:20:30.563732 b131e138-3bdf-46bb-9ec7-c49b00f86ee5 {"pid": "4088", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/110510631"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:30.646691 2023-07-08 08:20:30.646704 6e67c1e5-2116-4349-9a28-ef2bfd2f0f0e {"pid": "4089", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/110591119"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:30.78011 2023-07-08 08:20:30.78012 05ea092e-6db3-441b-9b2a-918a507727ae {"pid": "4090", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/110725476"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:30.874416 2023-07-08 08:20:30.87442 958da275-d9c4-44c3-ad41-5c8b05406c08 {"pid": "4091", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/110735714"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:30.963175 2023-07-08 08:20:30.963179 134296f1-fedf-4ce4-b9da-e0a1e4caaad1 {"pid": "4092", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/11114261X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:31.048993 2023-07-08 08:20:31.049017 a816ba80-d498-494e-ace0-7b72b3863146 {"pid": "4093", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/111315387"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:31.146459 2023-07-08 08:20:31.146464 08080091-9124-48a2-b55c-96b385140f54 {"pid": "4094", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/111318459"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:29.873885 2023-07-08 10:31:33.649574 db32846c-88a9-43b9-a121-c2cd16130b28 {"pid": "4081", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/110124863"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112735361"} 2 -2023-07-08 08:20:28.538089 2023-07-08 10:24:13.017806 76339a53-b4dc-4f8f-92e9-08b14638e319 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1035018888"}, "pid": "4066", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/107090538"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101040254"} 3 -2023-07-08 08:20:29.036358 2023-07-08 10:28:03.584951 afb89cfb-7de3-4a9c-a39f-c25a1b071cd8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/14085200X"}, "pid": "4071", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/108510638"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107829905"} 3 -2023-07-08 08:20:31.231553 2023-07-08 08:20:31.231561 d53daaf8-bbc9-49c9-9ce6-fb0f9b3748bf {"pid": "4095", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/111515890"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:31.324344 2023-07-08 08:20:31.324348 884209c3-efd6-4509-af5e-630edf53c356 {"pid": "4096", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/111524679"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:31.396471 2023-07-08 08:20:31.396474 cf993ec8-3c72-418e-beb4-ce97a8d20f3e {"pid": "4097", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/111755220"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:31.480129 2023-07-08 08:20:31.480133 8601a1a9-05ce-4a93-8e52-bae4fdd161f9 {"pid": "4098", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/112030777"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:31.567021 2023-07-08 08:20:31.567031 e60e8857-35ef-4325-b947-bc9d5cd5de2f {"pid": "4099", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/112074863"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:31.650449 2023-07-08 08:20:31.650458 75744dc0-3d33-4953-8fc6-d9c7c2e8196c {"pid": "4100", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/112113028"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:31.739518 2023-07-08 08:20:31.739526 d8933fb6-3f49-470e-a09c-50b2b3ff7956 {"pid": "4101", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/112169678"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:31.838829 2023-07-08 08:20:31.838838 97d9e6b5-9187-4973-9dba-f769b6879f57 {"pid": "4102", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/11219222X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:31.948377 2023-07-08 08:20:31.948385 fe31baaa-e85e-471b-ad49-dd6fb004248d {"pid": "4103", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/112238181"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:32.056344 2023-07-08 08:20:32.056353 dca3ac7e-8c4c-4e48-b003-cacde370a0bc {"pid": "4104", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/11246355X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:32.164156 2023-07-08 08:20:32.164164 718dc424-39a4-4a95-a9d5-42b5fc401082 {"pid": "4105", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/112722024"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:32.253042 2023-07-08 08:20:32.25305 a5d17fd4-f67e-456c-9825-f41ccc420213 {"pid": "4106", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/112795889"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:32.344422 2023-07-08 08:20:32.344431 7a0065c2-4d87-44eb-a44e-70d9a4c33fb4 {"pid": "4107", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/112913202"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:32.444448 2023-07-08 08:20:32.444455 80baffdc-26b9-404f-a406-76ba7c8cf50c {"pid": "4108", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/112961401"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:32.531334 2023-07-08 08:20:32.531342 bfa96d71-78a4-4b42-9da4-7128eeb68690 {"pid": "4109", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/113120362"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:32.732156 2023-07-08 08:20:32.73216 38221682-5dda-4a7e-815d-2f008be55c4a {"pid": "4111", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/113204442"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:32.819129 2023-07-08 08:20:32.819135 87610865-e086-483b-a29d-a1c67d483552 {"pid": "4112", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/113372213"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:32.886706 2023-07-08 08:20:32.886709 c7e0251c-e485-499a-95c3-71cd1c823853 {"pid": "4113", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/113737041"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:33.060525 2023-07-08 08:20:33.060528 3348ad11-08bd-4b56-8e65-930702952b94 {"pid": "4115", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/113753764"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:33.145343 2023-07-08 08:20:33.145348 615f421d-dd99-4a67-b242-ce33e2170d53 {"pid": "4116", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/113834535"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:33.220496 2023-07-08 08:20:33.220499 bbb4a2ff-3b98-4e1a-8156-62e1abd72801 {"pid": "4117", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/113915845"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:33.284244 2023-07-08 08:20:33.284247 41254a44-bdda-4735-a21e-7a08eaf77c83 {"pid": "4118", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/114044104"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:33.34947 2023-07-08 08:20:33.349474 36d350d7-0ee0-4bc7-a4a9-17fe3acfbdb7 {"pid": "4119", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/114141606"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:33.421567 2023-07-08 08:20:33.42157 36359672-1d66-495f-bd87-8fbaa52f6b27 {"pid": "4120", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/114173699"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:33.483435 2023-07-08 08:20:33.483437 045b7599-3061-4451-99b2-422bbfb20e03 {"pid": "4121", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/114244057"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:33.545975 2023-07-08 08:20:33.545978 a2b7a297-4e49-4381-8691-3a75133665e8 {"pid": "4122", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/114270813"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:33.610225 2023-07-08 08:20:33.610228 4125d1c4-32bc-4196-b217-106970247338 {"pid": "4123", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/11449973X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:33.682243 2023-07-08 08:20:33.68225 ef072036-88c4-4fd7-b425-d5e81891fa8c {"pid": "4124", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/114570337"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:32.629891 2023-07-08 10:26:21.492754 d24639c1-842c-42c8-849e-1b2d877861b8 {"pid": "4110", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/113195931"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104195609"} 2 -2023-07-08 08:20:33.781839 2023-07-08 10:30:42.196318 e3c3f575-2821-4d27-b9f9-bb77f74213fe {"pid": "4125", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/114673128"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11152029"} 2 -2023-07-08 08:20:33.952729 2023-07-08 08:20:33.952736 fa7387b0-a084-4045-b1af-28df4e288182 {"pid": "4127", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/115046917"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:34.149742 2023-07-08 08:20:34.149754 dcf8f4bc-a272-40fe-8c8f-be7fc3807017 {"pid": "4129", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/115277684"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:34.236374 2023-07-08 08:20:34.236381 0a1b68a0-320c-4eca-ba22-90191bdf7a3a {"pid": "4130", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/115564535"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:34.327437 2023-07-08 08:20:34.327443 a5696c3c-da96-4255-a920-f84d0ee528d7 {"pid": "4131", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/11570793X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:34.398997 2023-07-08 08:20:34.399 8f7590d3-65ed-4a76-920c-19c5ea554ece {"pid": "4132", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/115842993"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:34.584455 2023-07-08 08:20:34.584467 8ca4f725-1faf-4cd0-bbeb-8750e6a931c0 {"pid": "4134", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/116121556"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:34.66304 2023-07-08 08:20:34.663044 416ee8e7-87d8-41fe-a523-180369c63a79 {"pid": "4135", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/116142219"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:34.740736 2023-07-08 08:20:34.740746 b616bf20-4ca0-4b5f-ae3a-2e7ffcb03d57 {"pid": "4136", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/11627753X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:34.828449 2023-07-08 08:20:34.828458 faf42222-f029-4259-b3a2-1241248a2897 {"pid": "4137", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/116285125"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:34.903208 2023-07-08 08:20:34.903211 ea6ed518-dc78-4e71-a684-eaaa43195440 {"pid": "4138", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/116293020"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:34.972074 2023-07-08 08:20:34.972077 31af21fe-949f-40ca-b227-350220028fa4 {"pid": "4139", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/116436840"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:35.052254 2023-07-08 08:20:35.052263 73392496-3ad1-4075-9140-1fd53de93657 {"pid": "4140", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/11649736X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:35.249808 2023-07-08 08:20:35.249815 45f138f8-5c08-4105-8b98-e46c1e4c36eb {"pid": "4141", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/116542306"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:35.33171 2023-07-08 08:20:35.331715 3c2af067-26ef-433e-b3c8-7e8e3b935b40 {"pid": "4142", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/116771763"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:35.543981 2023-07-08 08:20:35.543985 1952acd2-a632-456e-8319-20bc0af4b906 {"pid": "4144", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/11749464X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:35.608007 2023-07-08 08:20:35.608013 e8f4802c-c0b8-47e9-8f97-c1372b30335d {"pid": "4145", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/117780081"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:35.668998 2023-07-08 08:20:35.669002 d6fc02fa-80f5-48bb-93b0-40b6373278cc {"pid": "4146", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/117829226"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:35.737938 2023-07-08 08:20:35.737943 536a11cd-6761-4b24-baf6-5b9edf84bc92 {"pid": "4147", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/117886920"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:35.808945 2023-07-08 08:20:35.808948 e34502f7-75bb-41d4-b788-d92b021a0474 {"pid": "4148", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/117982067"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:35.871572 2023-07-08 08:20:35.871576 3068ad00-dca8-4f20-abdb-ab9003420a75 {"pid": "4149", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/118249487"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:35.937045 2023-07-08 08:20:35.937048 36ca2c8c-9bc6-435c-9d73-abbf59fb473a {"pid": "4150", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/118275593"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:36.009916 2023-07-08 08:20:36.009928 c069b24d-7431-4995-bd4d-902c43aea3f0 {"pid": "4151", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/118630245"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:36.102915 2023-07-08 08:20:36.102922 47fac2a0-1d4f-432a-aeca-69d5739f7992 {"pid": "4152", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/118895729"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:36.192709 2023-07-08 08:20:36.19272 7d35cbe2-b56e-4a57-a9e8-067965a60f23 {"pid": "4153", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/118964534"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:36.266276 2023-07-08 08:20:36.266279 a3eb7085-aad7-45ed-8c96-a5297e67192d {"pid": "4154", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/119176114"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:34.50156 2023-07-08 10:30:52.654684 37287a3c-2d33-47f3-9eb7-4bf82ba0a901 {"pid": "4133", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/116055669"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111586504"} 2 -2023-07-08 08:20:34.060592 2023-07-08 10:23:41.898876 bf3d22a0-cb89-4e51-ad7c-db94ef0611fa {"pid": "4128", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003966124"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/115078630"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100232568"} 4 -2023-07-08 08:20:35.40689 2023-07-08 10:29:56.657188 e614d528-e2ce-410b-8dea-8819df235376 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/119255537"}, "pid": "4143", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003889324"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/117328383"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110391079"} 5 -2023-07-08 08:20:33.870472 2023-07-08 10:27:25.304352 849df3c9-8576-4665-b08c-0f9885b40114 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172316480"}, "pid": "4126", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/11499899X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106960894"} 3 -2023-07-08 08:20:36.438777 2023-07-08 08:20:36.438784 5a61897d-c295-4bbd-8009-d041c42b6487 {"pid": "4156", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/11954945X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:36.525838 2023-07-08 08:20:36.525848 0694ab5a-e467-48eb-a29e-655b6b96e909 {"pid": "4157", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/119926350"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:36.608439 2023-07-08 08:20:36.608448 ec109127-1f01-407a-aa1f-f73725fe8529 {"pid": "4158", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/119945290"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:36.694399 2023-07-08 08:20:36.694402 5bdf91dc-1568-4266-aa28-b48a21e0b5fb {"pid": "4159", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/119980924"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:36.790937 2023-07-08 08:20:36.790946 58c47a27-a974-44ca-a841-4af6a68fa195 {"pid": "4160", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/120051575"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:36.871109 2023-07-08 08:20:36.871112 31370d2c-c525-41f8-83f7-92137e0faae8 {"pid": "4161", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/120122545"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:36.952522 2023-07-08 08:20:36.952526 ae8b4bfe-de6a-4148-bb5d-f04e01a423ed {"pid": "4162", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/120196204"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:37.04485 2023-07-08 08:20:37.044857 4498d4ee-a947-45dc-96e6-cde77a805498 {"pid": "4163", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/120483076"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:37.12945 2023-07-08 08:20:37.129459 c140cb79-6fec-4696-ba88-7aff2336cf74 {"pid": "4164", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/120678918"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:37.219509 2023-07-08 08:20:37.219517 027d8285-4785-40e4-a862-d6e331b942d4 {"pid": "4165", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/120767848"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:37.313912 2023-07-08 08:20:37.31392 483a7ad7-ca4d-4a27-afac-0728b3d9069b {"pid": "4166", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/120895579"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:37.475673 2023-07-08 08:20:37.475677 e2dcf442-4728-4b25-8854-7084e9507bc4 {"pid": "4168", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/121151778"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:37.550283 2023-07-08 08:20:37.550288 a2e49f06-9835-4896-8622-f496862a147d {"pid": "4169", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/121294757"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:37.733957 2023-07-08 08:20:37.733964 9fbd6013-6d54-44a8-9ae4-a50ef8027e31 {"pid": "4170", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/121758419"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:37.820985 2023-07-08 08:20:37.820994 dbe632e2-5c52-47b6-9a35-651c637c2757 {"pid": "4171", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/121801713"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:37.913347 2023-07-08 08:20:37.913355 2e448e6a-20d5-4943-bd08-1326beb47e03 {"pid": "4172", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/121832260"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:37.992201 2023-07-08 08:20:37.99221 680c55e8-0372-44ca-b064-bfacd399e821 {"pid": "4173", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/122093186"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:38.083166 2023-07-08 08:20:38.083174 54e2ac49-f19a-4140-8f26-9dafb9b66821 {"pid": "4174", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/122301374"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:38.172595 2023-07-08 08:20:38.172603 f451d250-4c96-4592-b075-3c7f129c6513 {"pid": "4175", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/122411749"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:38.267808 2023-07-08 08:20:38.267822 27ee7d52-2104-4ece-937e-1448d6f40b8a {"pid": "4176", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/122514904"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:38.36624 2023-07-08 08:20:38.366247 4cf550b2-4f3d-4833-bdb0-12f2e855b525 {"pid": "4177", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/122677315"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:38.454588 2023-07-08 08:20:38.454596 098f0b11-de88-4c28-ae38-938bc4ec4de2 {"pid": "4178", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/122762142"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:38.529617 2023-07-08 08:20:38.529621 45edcb02-8da6-427c-a668-24c779df1861 {"pid": "4179", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/123006287"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:38.596927 2023-07-08 08:20:38.59693 747e7f6a-ef5f-4ca9-b4ce-f5355e46fa40 {"pid": "4180", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/123007089"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:38.756049 2023-07-08 08:20:38.756052 38f9aa42-c273-496a-b5b1-c4a017c4bb5e {"pid": "4182", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/123395321"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:38.919864 2023-07-08 08:20:38.919868 192b1b0b-247a-4fcd-b7e3-98f8b35e74b4 {"pid": "4184", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/123496225"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:38.994927 2023-07-08 08:20:38.99493 4b897427-2d87-4ab9-9320-89b1c2d012f5 {"pid": "4185", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/123609836"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:38.673854 2023-07-08 10:27:14.068438 3560889f-2b40-4065-b8bc-73161a98e3f4 {"pid": "4181", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/123240638"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106584892"} 2 -2023-07-08 08:20:38.854777 2023-07-08 10:26:08.570836 9601a063-53d6-43bb-b511-8480ca68498c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/131898922"}, "pid": "4183", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027191227"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/123474825"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103886702"} 5 -2023-07-08 08:20:39.0754 2023-07-08 08:20:39.07541 f4ba6fe5-cd41-445f-9595-718d83d4c74b {"pid": "4186", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/124179290"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:39.16546 2023-07-08 08:20:39.165468 e9029fa8-7795-43a7-9a28-84ab161785f2 {"pid": "4187", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/12420709X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:39.348351 2023-07-08 08:20:39.348361 25e3c86d-69d8-4c8b-a330-1271e1c95fc2 {"pid": "4189", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/12430284X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:39.432155 2023-07-08 08:20:39.432159 30d18be7-3460-479c-a450-30ed990f6307 {"pid": "4190", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/124342078"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:39.516736 2023-07-08 08:20:39.516744 d9f14994-f313-403f-aa1f-60a503957b49 {"pid": "4191", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/124497209"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:39.707637 2023-07-08 08:20:39.707641 daa9b14c-cf88-440b-83e8-5a8929f1ee13 {"pid": "4193", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/124670954"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:39.792854 2023-07-08 08:20:39.792862 aa574f50-d85e-42d5-8c70-acba3442785b {"pid": "4194", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/124764916"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:39.87509 2023-07-08 08:20:39.875096 01b3a2d1-51d9-4f74-bb89-c8ecfee6ca0e {"pid": "4195", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/124806376"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:39.96824 2023-07-08 08:20:39.968247 a3261415-9667-4f8d-bb70-39ce6ae4694f {"pid": "4196", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/125074506"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:40.05779 2023-07-08 08:20:40.0578 3320099b-4db4-4ac9-af8b-3d387dec32c6 {"pid": "4197", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/125871074"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:40.143426 2023-07-08 08:20:40.143429 d6242e6c-da07-4198-b7c0-62ae93837e83 {"pid": "4198", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/126029784"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:40.233194 2023-07-08 08:20:40.233202 91b6e60c-e821-40c9-afcd-149d1f9c55d3 {"pid": "4199", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/126078858"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:40.319958 2023-07-08 08:20:40.319966 8ade8dbb-a4b7-485b-a87f-edb8691a4856 {"pid": "4200", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/126483361"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:40.39653 2023-07-08 08:20:40.396533 1ad9de69-9218-4d07-b47f-cf3865045c3a {"pid": "4201", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/126596131"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:40.473905 2023-07-08 08:20:40.473912 2e75a315-68bc-42ba-8681-e65483790fe2 {"pid": "4202", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/126598371"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:40.655654 2023-07-08 08:20:40.655659 2ef5a13c-6bd6-4351-b110-4672686e333f {"pid": "4204", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/127065113"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:40.742692 2023-07-08 08:20:40.742701 44084a29-d554-465a-9f54-6099d8db7a23 {"pid": "4205", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/127163905"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:40.825615 2023-07-08 08:20:40.825628 af701e1e-9c45-403c-a9e4-e384ac03ee0b {"pid": "4206", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/127251502"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:40.900546 2023-07-08 08:20:40.900549 f92a6af7-8bbe-4a0d-89a2-1ce2e7d03d85 {"pid": "4207", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/127287159"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:41.081613 2023-07-08 08:20:41.081621 7c4f268d-20cb-41f9-aab7-381bf6e0d788 {"pid": "4209", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/127364013"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:41.184171 2023-07-08 08:20:41.184177 40e9bffc-cc69-4fc0-987c-fd1e422e7f52 {"pid": "4210", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/127488790"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:41.270546 2023-07-08 08:20:41.270555 c0df3a43-098b-4816-8262-8405eeeeeb0e {"pid": "4211", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/127521038"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:41.378628 2023-07-08 08:20:41.378639 be7f005b-7ecf-4565-84f9-d545711a2241 {"pid": "4212", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/127789111"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:41.511416 2023-07-08 08:20:41.511426 e94972e5-178c-48ca-ba1e-8ca8d68f234d {"pid": "4213", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/127838732"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:41.612118 2023-07-08 08:20:41.612131 fccd7c6b-7080-49ff-b3fa-8bbe09b69b39 {"pid": "4214", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/127859829"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:41.731293 2023-07-08 08:20:41.731304 50a948cb-c867-488b-adeb-21e7d4a16967 {"pid": "4215", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/128116951"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:41.864404 2023-07-08 08:20:41.864416 5b9f50bb-8fec-49ec-b4ac-1209c508f846 {"pid": "4216", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/128258365"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:39.254653 2023-07-08 10:27:56.147352 86136fa7-d12e-45ff-8433-d5c7c6a8c152 {"pid": "4188", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013993183"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/124217273"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1077127"} 4 -2023-07-08 08:20:40.571509 2023-07-08 10:24:46.910225 0ccca3e0-4f82-4f71-9a5b-3dee1478a177 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/132272105"}, "pid": "4203", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023114350"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/126698104"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10156271"} 5 -2023-07-08 08:20:41.973189 2023-07-08 08:20:41.9732 a25212ae-1cd6-43fb-a283-f598358b5980 {"pid": "4217", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/128283661"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:42.101135 2023-07-08 08:20:42.101143 6c58c072-0452-47d5-8cce-abfaa228dbac {"pid": "4218", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/128499877"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:42.27078 2023-07-08 08:20:42.270794 9b165f19-7ffe-418b-a46d-a276f8fa0e1f {"pid": "4219", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/128529202"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:42.419083 2023-07-08 08:20:42.419091 5e742ff6-7c61-4f36-b908-231a82d8cda5 {"pid": "4220", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/128537663"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:43.106866 2023-07-08 08:20:43.106876 d039cac8-995e-4966-a724-08ba3ceacd69 {"pid": "4222", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/129182176"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:43.231489 2023-07-08 08:20:43.231502 25249734-852d-42c7-949f-2fd71c69bfcd {"pid": "4223", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/129211273"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:43.489785 2023-07-08 08:20:43.489794 411bfdef-77a9-403a-b90e-4fee0672a9a1 {"pid": "4225", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/129558311"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:43.715739 2023-07-08 08:20:43.71575 8ba95b88-88ee-4cd7-9ffd-01059317e937 {"pid": "4227", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/129871303"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:43.840236 2023-07-08 08:20:43.840246 107238b7-cb9f-4ca6-adb6-c472dbd23ddc {"pid": "4228", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/129966053"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:43.942251 2023-07-08 08:20:43.942261 6fec8b56-cb5c-47ac-bad2-22af193a63d6 {"pid": "4229", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/129988758"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:44.053274 2023-07-08 08:20:44.053282 e90fd2e6-0f18-4a3a-a47f-0fef952c8d56 {"pid": "4230", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/130017256"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:44.169046 2023-07-08 08:20:44.169054 ee348973-5b9d-4ffa-89f9-253e403b7dae {"pid": "4231", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/13037962X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:44.288723 2023-07-08 08:20:44.288737 eaf4c621-65c2-4e99-96dd-884b57f26d72 {"pid": "4232", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/130434795"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:44.405941 2023-07-08 08:20:44.40595 d2bebd8c-9b35-440d-91e5-7d8cedaaa57a {"pid": "4233", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/130521973"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:44.518199 2023-07-08 08:20:44.518208 3a5707bc-4fd1-47d6-b8a0-e142bac9816b {"pid": "4234", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/130648396"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:44.658833 2023-07-08 08:20:44.658846 5caf4fdd-b5cb-4db7-9e51-1899bb7ea3c0 {"pid": "4235", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/130807508"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:44.786566 2023-07-08 08:20:44.786576 800c5c34-cf63-4f14-a86c-9f2bd4bffc2b {"pid": "4236", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/130809217"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:44.912323 2023-07-08 08:20:44.912334 a099767e-3316-496c-9411-d8ee2e3f78bf {"pid": "4237", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/131054937"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:45.035907 2023-07-08 08:20:45.035918 9029c75c-7dbf-4758-b821-ed718734ecae {"pid": "4238", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/131245759"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:45.158596 2023-07-08 08:20:45.158608 5e2db7f8-e5af-4041-88b5-559ad1822ab3 {"pid": "4239", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/13145269X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:45.281825 2023-07-08 08:20:45.281832 f52a53e9-8e03-4b58-8438-5452a5b9a15e {"pid": "4240", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/131529595"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:45.445214 2023-07-08 08:20:45.445224 1bc34107-f849-4e20-9ff8-ab9a11ae367f {"pid": "4241", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/131808206"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:45.553587 2023-07-08 08:20:45.553594 fc86e0f0-e44d-4851-be80-66b4b812e124 {"pid": "4242", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/13185254X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:45.846782 2023-07-08 08:20:45.846798 3ebdc4c6-8c98-4989-9005-dba2b42c13ed {"pid": "4243", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/132337282"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:46.143356 2023-07-08 08:20:46.143366 182c617e-66e3-4c07-850b-0b3ad7367c56 {"pid": "4245", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/132436620"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:46.258766 2023-07-08 08:20:46.258779 dc6dce48-21dc-4060-87bd-3a5d5da77430 {"pid": "4246", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/132521326"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:43.60851 2023-07-08 10:27:08.078046 7e0c8d0f-16e8-4e4e-b5e4-09bb37fd4b1a {"pid": "4226", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/129801577"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10635475"} 2 -2023-07-08 08:20:46.02039 2023-07-08 10:24:56.224386 42d603e8-a374-4f72-b913-8c6834591dd2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1247672352"}, "pid": "4244", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/132394065"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10170356"} 3 -2023-07-08 08:20:43.356105 2023-07-08 10:28:14.655658 7ae39055-adca-4b8c-bd89-1a4dee4e9882 {"pid": "4224", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/129419915"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108105466"} 2 -2023-07-08 08:20:46.512056 2023-07-08 08:20:46.512065 417f8893-1ad1-4288-9005-c61a537ed8fd {"pid": "4248", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/132750368"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:46.617941 2023-07-08 08:20:46.617951 640130fc-849f-4fb0-87e0-689b11969d57 {"pid": "4249", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/132844036"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:46.886422 2023-07-08 08:20:46.886432 2b841f23-daef-4964-acc1-916a57f19438 {"pid": "4251", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/13318479X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:46.992835 2023-07-08 08:20:46.992847 749f6a3c-febb-4a11-9414-d8b9fc0dfee5 {"pid": "4252", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/133250717"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:47.097523 2023-07-08 08:20:47.097531 9c631b61-67aa-42b9-8bea-3580c572a75f {"pid": "4253", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/133383369"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:47.215501 2023-07-08 08:20:47.215511 1133eaff-babb-4fd3-8de0-35146cd13050 {"pid": "4254", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/133418278"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:47.327373 2023-07-08 08:20:47.327381 6f218b5f-073d-4b98-adc3-1c7c73c1953e {"pid": "4255", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/133532542"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:47.441606 2023-07-08 08:20:47.441617 6520dc07-c098-404a-b004-c47911533274 {"pid": "4256", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/133564649"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:47.560709 2023-07-08 08:20:47.560721 8ed71312-f2f7-4b1e-9bd2-9708999f4734 {"pid": "4257", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/13375412X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:47.819636 2023-07-08 08:20:47.819646 77435215-1ed5-473d-b1b0-a40ce2c37350 {"pid": "4259", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/133823261"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:48.060029 2023-07-08 08:20:48.060041 13544984-be2a-468b-a7ee-1c1857b4f458 {"pid": "4261", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/134024672"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:48.177536 2023-07-08 08:20:48.177545 f33412ea-333e-492c-b266-b5bb88c12843 {"pid": "4262", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/134273850"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:48.294451 2023-07-08 08:20:48.294461 034cfa0c-a958-415e-ba4d-f844d1387e68 {"pid": "4263", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/134382005"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:48.41478 2023-07-08 08:20:48.414788 87f6d1be-d0f9-4b87-9a1a-c2e6c3eb9846 {"pid": "4264", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/134448251"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:48.527252 2023-07-08 08:20:48.527261 87226fe6-7ee8-4349-9ef1-81fbe2e07d2a {"pid": "4265", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/134449568"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:48.762722 2023-07-08 08:20:48.762734 8c8cdf43-f818-4853-93d1-bb7b8281c2c8 {"pid": "4267", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/135192013"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:48.876415 2023-07-08 08:20:48.876427 bd848ead-deba-4bd1-bf81-1ce069648a9e {"pid": "4268", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/135315042"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:49.010365 2023-07-08 08:20:49.010377 34e98691-75dd-45c5-b3a4-7df97ec79776 {"pid": "4269", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/135562120"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:49.123642 2023-07-08 08:20:49.123653 e0ad84dd-3fc6-4db8-a883-cdec50478d9f {"pid": "4270", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/135612934"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:49.515689 2023-07-08 08:20:49.515701 4376d3c3-bbcf-430e-9c4d-a05d7926f368 {"pid": "4273", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/135736234"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:49.630128 2023-07-08 08:20:49.630136 390da946-abf0-4c8f-9bd5-5e04be22daf8 {"pid": "4274", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/135975484"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:49.763765 2023-07-08 08:20:49.763774 7724e221-7136-4773-a78e-a9ebe2ccf875 {"pid": "4275", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/136123821"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:49.877027 2023-07-08 08:20:49.877036 7208c91a-556a-45e0-9567-11e988d600ac {"pid": "4276", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/136235212"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:49.988654 2023-07-08 08:20:49.988662 7ffc1aa8-dd89-4464-bfe0-640b1199a76a {"pid": "4277", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/13632536X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:47.702548 2023-07-08 10:26:43.171888 6dd9a0b3-8fef-41c6-8ed6-a53fb630d3b1 {"pid": "4258", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003514292"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/133765687"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10535188"} 4 -2023-07-08 08:20:47.95164 2023-07-08 10:26:09.362397 eaa56d9b-1d60-4bdf-aa18-3ce935cb2a8a {"pid": "4260", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003789261"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/133972887"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103906772"} 4 -2023-07-08 08:20:46.393061 2023-07-08 10:31:12.005942 ace82407-62a8-4ee8-a4b4-bcd88c7fa563 {"pid": "4247", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025244362"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/132740966"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112003734"} 4 -2023-07-08 08:20:49.386759 2023-07-08 10:25:59.646674 210aad68-4735-43ba-acc5-398aa802708b {"pid": "4272", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/135688590"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103607297"} 2 -2023-07-08 08:20:49.265159 2023-07-08 10:28:14.259542 6e5ea194-f1a9-4ab4-b386-b3fbde1305de {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1211358380"}, "pid": "4271", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/135683122"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107998854"} 3 -2023-07-08 08:20:50.23732 2023-07-08 08:20:50.237333 f3dd37e1-4ec0-4c32-a498-41c8a8e04617 {"pid": "4279", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/136556906"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:50.351669 2023-07-08 08:20:50.351677 37c058d0-9d3e-4630-93e6-369aca344284 {"pid": "4280", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/136738850"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:50.577451 2023-07-08 08:20:50.577462 8868f643-8d2e-496d-a05c-52a375b25922 {"pid": "4281", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/136864279"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:50.939019 2023-07-08 08:20:50.93903 4fff83bb-5689-4439-aa03-4cc21b3dc415 {"pid": "4284", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/136893163"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:51.049481 2023-07-08 08:20:51.049489 5adad0f6-a105-46d8-9cf4-8d9926df718a {"pid": "4285", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/137193548"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:51.169914 2023-07-08 08:20:51.169923 d75c1247-4bba-4335-962a-c82956840b38 {"pid": "4286", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/137341563"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:51.448506 2023-07-08 08:20:51.448517 4b869e48-3b93-4378-9de6-49f197e74c5e {"pid": "4288", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/137424795"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:51.57898 2023-07-08 08:20:51.57899 16b4ad7a-a967-4e63-aa1e-f161642f8bf2 {"pid": "4289", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/137586248"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:51.700539 2023-07-08 08:20:51.700546 e7c9fc73-f967-4750-b45f-0d16f8907866 {"pid": "4290", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/137635400"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:51.817643 2023-07-08 08:20:51.817652 fe5ca646-94cd-4357-a58e-8404a08e3de8 {"pid": "4291", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/137657412"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:51.943639 2023-07-08 08:20:51.943648 29b0bc09-821f-418c-9135-01913b70437c {"pid": "4292", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/137724780"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:52.356024 2023-07-08 08:20:52.356032 89d75665-c6e3-4cea-a312-ee8def4d10b3 {"pid": "4294", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/138022550"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:52.482404 2023-07-08 08:20:52.482412 89227f62-524d-42af-bdff-7a988c526b62 {"pid": "4295", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/138023468"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:52.724319 2023-07-08 08:20:52.724329 2b76d03f-3243-4d51-b767-747cca150b17 {"pid": "4297", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/138508518"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:52.834017 2023-07-08 08:20:52.834028 aa70d59b-4ce9-4bc2-b21e-b3a89372c0cd {"pid": "4298", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/138783578"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:52.945029 2023-07-08 08:20:52.945042 da39bb24-c2f5-4260-978c-1d7317b94ad1 {"pid": "4299", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/138905312"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:53.061351 2023-07-08 08:20:53.061361 3bdb0c57-1856-4562-9064-c8ac55db6905 {"pid": "4300", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/138933871"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:53.180338 2023-07-08 08:20:53.180348 bba702f3-a5a7-4aed-b456-d445ebf2fc61 {"pid": "4301", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/13905443X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:53.398823 2023-07-08 08:20:53.398838 b3608f1d-70ff-4f62-b53d-cd6f3e1af0a4 {"pid": "4302", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/139148256"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:53.535511 2023-07-08 08:20:53.535522 47fef475-d1ac-4c0f-b76b-1c43e1de0c3b {"pid": "4303", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/139175520"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:53.786543 2023-07-08 08:20:53.786551 be5e1961-72a2-40ed-9209-eb6ccc69f09c {"pid": "4305", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/139490752"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:53.892477 2023-07-08 08:20:53.89249 f155ff81-7707-468e-a283-69397da39b42 {"pid": "4306", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/13949992X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:54.010388 2023-07-08 08:20:54.010395 cd4c3047-8487-4731-8fb3-3f1dc2afdd3f {"pid": "4307", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/139513760"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:50.705538 2023-07-08 10:25:34.15675 5c2e727c-8a82-4927-861a-22fe489aeea3 {"pid": "4282", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018613224"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/136864473"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102860567"} 4 -2023-07-08 08:20:51.315482 2023-07-08 10:24:21.139657 e51ab5eb-727b-4886-9d7e-cd0dd3497597 {"pid": "4287", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/137405723"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101147266978835482588"} 2 -2023-07-08 08:20:53.67444 2023-07-08 10:25:28.835705 52954129-dd42-4844-8d6d-5aa5d392757f {"pid": "4304", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/139416846"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102699071"} 2 -2023-07-08 08:17:04.873463 2023-07-08 10:24:32.859162 ee9d57c0-c578-4a46-b86b-c93ca555b72d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139626417"}, "pid": "2113", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/137773927"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101345977"} 4 -2023-07-08 08:20:52.613215 2023-07-08 10:25:47.559039 22c0b780-ab0b-4ac8-9689-d75081f8febf {"pid": "4296", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/138484945"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103247206"} 2 -2023-07-08 08:20:50.824797 2023-07-08 10:27:04.893708 14ef7c60-268c-4a75-9629-19726543f708 {"pid": "4283", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/136864554"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106213631"} 2 -2023-07-08 08:20:54.146651 2023-07-08 08:20:54.146661 379b336d-d4b2-4497-b2a2-b80220ea2bc4 {"pid": "4308", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/139752528"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:54.420009 2023-07-08 08:20:54.420016 aee9a5fe-b8c9-4ac2-8e48-d62caf67ab96 {"pid": "4310", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/139815201"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:54.520068 2023-07-08 08:20:54.520072 3378571f-e2f4-4f7f-aaef-1cc35a0d4daa {"pid": "4311", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/139830383"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:54.60271 2023-07-08 08:20:54.602713 5298b003-f756-4466-82d6-bdc14fc951a0 {"pid": "4312", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/139890629"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:54.674692 2023-07-08 08:20:54.674696 38982248-8d1a-4d5e-a9df-4716f360ab74 {"pid": "4313", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/139975055"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:54.747593 2023-07-08 08:20:54.747596 645b0188-e0a5-4b18-8df9-c97fa074274d {"pid": "4314", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/140038493"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:54.822335 2023-07-08 08:20:54.822339 22fc718e-0ec0-4f94-bfa5-569657ea0615 {"pid": "4315", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/140057196"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:54.892977 2023-07-08 08:20:54.892981 482ccf3e-0f01-4e00-b995-d5129f9c231c {"pid": "4316", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/140162070"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:55.089313 2023-07-08 08:20:55.089322 ce70dd41-77fc-4a0b-95da-378be39f4ffb {"pid": "4317", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/140354336"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:55.182043 2023-07-08 08:20:55.182053 cc0335c6-73d2-49b1-8060-d87b8f746315 {"pid": "4318", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/140407235"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:55.377134 2023-07-08 08:20:55.377144 403c5d37-a09c-4861-8073-fff9bd789fc6 {"pid": "4320", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/140494383"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:55.479327 2023-07-08 08:20:55.479335 a4f4fc2a-4b4d-414b-9c26-e80cdc559339 {"pid": "4321", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/140558756"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:55.670418 2023-07-08 08:20:55.670427 73f65b37-8a6e-4077-8da9-76242ea38603 {"pid": "4323", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/140773118"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:55.769556 2023-07-08 08:20:55.769567 385f25f2-0230-4834-80c5-e8f021f8ce17 {"pid": "4324", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/140821325"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:55.868574 2023-07-08 08:20:55.868582 fde5aea7-a4af-495e-8806-d20e2685b2dd {"pid": "4325", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/142598542"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:55.970561 2023-07-08 08:20:55.970565 9a5878e4-0b79-48e3-bddf-faaf83178dae {"pid": "4326", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/142611379"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:56.126482 2023-07-08 08:20:56.126487 9123bac3-0664-4f0e-b8b1-9288a8caebd4 {"pid": "4328", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/142668745"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:56.204952 2023-07-08 08:20:56.204956 b1800ecf-4ac3-4fbe-b39f-125ed0ba5b49 {"pid": "4329", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/142741299"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:56.315221 2023-07-08 08:20:56.315234 5b0e2c90-5750-4253-a4e4-2b27bbd1ab88 {"pid": "4330", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/142838411"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:56.410684 2023-07-08 08:20:56.410694 9150d756-18d4-48e0-a1b0-128165b4ec1f {"pid": "4331", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/142843229"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:56.587135 2023-07-08 08:20:56.587139 d414aa80-37ac-40fd-987c-2edb3e9aab85 {"pid": "4333", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/142918342"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:56.660233 2023-07-08 08:20:56.660236 cd7b384b-b0d1-46e4-894c-93b5dda1e883 {"pid": "4334", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/14299443X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:56.796192 2023-07-08 08:20:56.796198 c08475e0-de80-4d6b-9c74-daaaededd9fe {"pid": "4336", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/143028537"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:56.8622 2023-07-08 08:20:56.862203 9e113d58-cc4b-43c8-9342-2df3fcab622c {"pid": "4337", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/143076310"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:55.581326 2023-07-08 10:24:59.822271 407178a4-dd29-489e-8f73-5fa45823dfd9 {"pid": "4322", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/140708987"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101827288"} 2 -2023-07-08 08:20:56.729678 2023-07-08 10:25:58.371074 7ece66ac-5f45-435a-83f6-8ef9adb34854 {"pid": "4335", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/142996734"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103514182"} 2 -2023-07-08 08:20:55.279189 2023-07-08 10:25:14.181413 622b1959-aacd-48fc-9f5e-8473a112e4c9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/132503980"}, "pid": "4319", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/140489436"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102340069"} 3 -2023-07-08 08:20:56.058053 2023-07-08 10:26:02.399175 19475745-18be-4e34-b8f8-8875ec3df5bb {"pid": "4327", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/142638145"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103683950"} 2 -2023-07-08 08:15:48.185449 2023-07-08 10:31:15.875127 e301b464-6e10-4f2f-865d-450a7907cc8c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157230466"}, "pid": "1369", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/140317414"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112075113"} 4 -2023-07-08 08:20:56.930018 2023-07-08 08:20:56.930022 ba702e3c-68bd-43f6-b8d6-63cc4e173c7b {"pid": "4338", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/143098713"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:57.075888 2023-07-08 08:20:57.075892 5d810452-0964-4c37-985c-f05f90a140f8 {"pid": "4340", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/143151851"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:57.279057 2023-07-08 08:20:57.279067 76bcecde-59f1-4325-9277-c07e2c7b7844 {"pid": "4342", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/143330772"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:57.35898 2023-07-08 08:20:57.358988 0c313249-43eb-471e-8b51-ac991ca359ca {"pid": "4343", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/143403826"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:57.535454 2023-07-08 08:20:57.535462 c8f4c940-1f39-4ebb-aab0-1bf468c5149d {"pid": "4345", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/143860747"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:57.614258 2023-07-08 08:20:57.614266 92e0d76d-1b0e-443e-87f7-01e80557a9a5 {"pid": "4346", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/144467909"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:57.703592 2023-07-08 08:20:57.7036 d138bd2b-d353-402a-97ec-0d74ebb8592c {"pid": "4347", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/144487179"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:57.790561 2023-07-08 08:20:57.79057 4e1f4205-7914-41f3-bd5a-b4b618e11378 {"pid": "4348", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/144499401"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:57.881818 2023-07-08 08:20:57.881825 63260e72-272e-439c-8c08-76e12ceef387 {"pid": "4349", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/144580403"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:57.969015 2023-07-08 08:20:57.969023 016ea304-2282-4f05-9bef-8281c205ae1d {"pid": "4350", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/144614421"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:58.055126 2023-07-08 08:20:58.055139 5ad0e64f-3746-4152-922d-ad368076fdee {"pid": "4351", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/144636077"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:58.136275 2023-07-08 08:20:58.136282 0ae0ce8f-166d-4b33-a308-2432f2cf6ff8 {"pid": "4352", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/145090515"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:58.418003 2023-07-08 08:20:58.41801 e551c373-4ae4-4bd7-8346-f404f71b32f3 {"pid": "4354", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/145296741"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:58.504313 2023-07-08 08:20:58.504316 719180b5-7fef-4140-bd98-d1264f1c05ed {"pid": "4355", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/145350177"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:58.592375 2023-07-08 08:20:58.592381 19d42a9a-92e6-4a8a-8942-dfabf7d68c72 {"pid": "4356", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/145351297"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:58.66952 2023-07-08 08:20:58.669527 04acea7a-d4d0-4e5d-a64d-a5fc5db69b85 {"pid": "4357", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/145373487"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:58.75584 2023-07-08 08:20:58.755848 b6066441-6cdf-4fa4-ae19-ad7c420710db {"pid": "4358", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/145630218"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:58.845932 2023-07-08 08:20:58.84594 445800de-6a4a-440f-83d2-35eee4677b90 {"pid": "4359", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/145636496"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:59.035308 2023-07-08 08:20:59.035315 a2cf5ccd-d477-4915-9cc4-40bad2e2262c {"pid": "4361", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/14566841X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:59.332842 2023-07-08 08:20:59.332847 116d9c9f-18ae-4f94-a977-b3a0b3ed520a {"pid": "4363", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/145888185"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:59.426597 2023-07-08 08:20:59.426606 3fddf53d-0605-42e7-bfe1-52892f538dbe {"pid": "4364", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/145959783"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:59.514198 2023-07-08 08:20:59.514202 d7dcbfd7-bf17-488b-99c3-c49bad1c105f {"pid": "4365", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/146054210"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:59.601719 2023-07-08 08:20:59.601726 8c9d70a3-70ee-4581-8375-83f3098e23e4 {"pid": "4366", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/146086457"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:59.710024 2023-07-08 08:20:59.710035 35241575-013c-4b76-a20e-dde728284cb2 {"pid": "4367", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/146148754"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:57.455465 2023-07-08 10:25:56.024455 9cf1cacf-b3ab-449f-8d94-5614418923f0 {"pid": "4344", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/143470280"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103475852"} 2 -2023-07-08 08:20:58.950573 2023-07-08 10:24:28.325607 e3c709ba-bcde-44d9-8ae2-59b2176272db {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139542043"}, "pid": "4360", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/145661806"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101270231"} 3 -2023-07-08 08:20:57.183957 2023-07-08 10:25:04.503749 9f3116a0-ae4f-4337-bbc1-8f08623d8b5b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1153744600"}, "pid": "4341", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/143329790"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102047876"} 3 -2023-07-08 08:20:59.133836 2023-07-08 10:28:04.885296 ec65c444-8d41-438f-a598-6551f9ba29c5 {"pid": "4362", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/145729613"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107836538"} 2 -2023-07-08 08:20:59.831249 2023-07-08 10:26:07.21403 6cd822ca-2b38-4cfd-9460-acd8c08c498f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140327606"}, "pid": "4368", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/146270401"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103855418"} 3 -2023-07-08 08:20:59.922317 2023-07-08 08:20:59.922327 157bd1ed-9229-45bd-9b62-053b4cda4728 {"pid": "4369", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/146872584"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:00.117074 2023-07-08 08:21:00.117081 9a200895-6529-4f28-abab-dd07f450b362 {"pid": "4370", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/146985109"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:00.201909 2023-07-08 08:21:00.201925 16ed0f0f-7997-4a6b-a89b-f14c7fd1a7ff {"pid": "4371", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/147004268"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:00.290571 2023-07-08 08:21:00.290579 434da9b8-9d93-49f2-9f2e-ba43a73ebe1a {"pid": "4372", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/147054672"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:00.373859 2023-07-08 08:21:00.373867 6026bf80-35be-4e6a-bfdc-d08640d1f2ce {"pid": "4373", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/147179955"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:00.565015 2023-07-08 08:21:00.565022 c642051d-5668-4126-9fdd-d33f648694e0 {"pid": "4375", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/147297192"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:00.654654 2023-07-08 08:21:00.654663 8a9a7e8f-ad86-4048-8e77-f47638024064 {"pid": "4376", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/147331781"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:00.752353 2023-07-08 08:21:00.75236 fa35fd14-5f0f-41c4-b413-9a44928c9723 {"pid": "4377", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/147383579"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:00.864512 2023-07-08 08:21:00.864523 bf395786-6fa0-4836-814f-fe10e2b4b1c6 {"pid": "4378", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/147406889"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:00.965367 2023-07-08 08:21:00.965375 a6aca7b7-477f-4a92-8766-3950618abf68 {"pid": "4379", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/147465885"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:01.066958 2023-07-08 08:21:01.066969 127572a3-55fb-47d8-8fa4-2bb181b29e28 {"pid": "4380", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/147528712"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:01.265566 2023-07-08 08:21:01.265577 88f04c3c-1d9c-41f6-a9ed-54a49da5c68d {"pid": "4382", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/147700094"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:01.566511 2023-07-08 08:21:01.566522 211276d4-2f7c-4927-98e6-d764cde88143 {"pid": "4385", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/147934540"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:01.654865 2023-07-08 08:21:01.654872 ce4a4a58-425f-4d67-81d1-4102a56776fd {"pid": "4386", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148064884"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:01.743364 2023-07-08 08:21:01.743373 f10fb988-ca4c-4b6e-a8ba-9844aa37cfbf {"pid": "4387", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148113761"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:01.819572 2023-07-08 08:21:01.819575 06d6a39a-e78d-4548-8b2b-963ccd5fda6e {"pid": "4388", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148169643"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:01.912685 2023-07-08 08:21:01.91269 d96cb8b3-bf03-4018-9573-696f8a649214 {"pid": "4389", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148202330"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:01.988792 2023-07-08 08:21:01.988796 1172098a-c877-4796-8f44-6f931a2e9fe3 {"pid": "4390", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148265286"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:02.06719 2023-07-08 08:21:02.067193 7dd309fc-e821-496d-88b1-4b41940c5e37 {"pid": "4391", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148350887"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:02.149473 2023-07-08 08:21:02.149483 9835636f-9619-4559-ab44-a3cd01481640 {"pid": "4392", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148352006"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:02.231781 2023-07-08 08:21:02.231784 30946869-edfa-47f0-978d-8ad306a7b31a {"pid": "4393", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148411754"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:02.296161 2023-07-08 08:21:02.296164 54772008-5cba-4431-8778-a3eab49e9d70 {"pid": "4394", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148443230"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:02.370434 2023-07-08 08:21:02.370437 bf694b7f-4d26-4149-994a-3e35c6869067 {"pid": "4395", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148457568"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:02.448668 2023-07-08 08:21:02.448672 d2d83c2f-ad50-4231-99fb-62f8d2ceb169 {"pid": "4396", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148462081"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:02.522322 2023-07-08 08:21:02.522325 c23a499a-0e9f-4bb6-b4f8-9fd79992f5c2 {"pid": "4397", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148468020"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:02.588511 2023-07-08 08:21:02.588515 f4ca5d40-73db-4631-8e35-1455d0489ca3 {"pid": "4398", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148481418"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:00.477932 2023-07-08 10:24:10.251661 f3339a4e-6b76-4d7a-a028-89cb0654851d {"pid": "4374", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016816789"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/147233429"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101006072"} 4 -2023-07-08 08:21:01.370793 2023-07-08 10:27:41.805911 9bf51372-63fd-4314-9562-afdabae382bc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140553533"}, "pid": "4383", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024083167"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/147759420"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107237687"} 5 -2023-07-08 08:21:01.472819 2023-07-08 10:28:04.442613 c62d4dc9-1bd3-4cf7-850e-0fb1a53169ef {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/14085603X"}, "pid": "4384", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/147906423"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107833414"} 3 -2023-07-08 08:21:02.659242 2023-07-08 08:21:02.659246 c7c726a0-7492-472b-a441-c76844b3a8a9 {"pid": "4399", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/14849952X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:02.729602 2023-07-08 08:21:02.729606 dfba5433-9688-4584-96e7-9b6ab76a262e {"pid": "4400", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148509088"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:02.885991 2023-07-08 08:21:02.885995 17676954-2890-45fc-8590-9d0b2eefd060 {"pid": "4402", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/14869506X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:02.958447 2023-07-08 08:21:02.958451 7da64a26-c96d-4a0e-8c8a-19d2a8941401 {"pid": "4403", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148702090"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:03.04185 2023-07-08 08:21:03.041855 6c6cc2df-711f-4582-8dc2-52475a049cc9 {"pid": "4404", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148746349"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:03.138628 2023-07-08 08:21:03.138637 cb4c61c6-c32b-4702-bf15-38d858227df3 {"pid": "4405", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148754899"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:03.223367 2023-07-08 08:21:03.223375 378f6c1d-929a-43eb-aa37-8be1e3a326f4 {"pid": "4406", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148755097"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:03.307348 2023-07-08 08:21:03.307354 b0e23d06-7e19-4ab0-a5ef-cacb13bfa076 {"pid": "4407", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148766587"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:03.533874 2023-07-08 08:21:03.533877 6b596eba-be21-4aba-95e8-6a87768c7ded {"pid": "4410", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148913679"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:03.704671 2023-07-08 08:21:03.70468 b2cdd9c4-62e4-43e8-a557-67d1bf03a6dd {"pid": "4412", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/14894227X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:03.774882 2023-07-08 08:21:03.774888 9cad56c3-eed3-4ccb-9764-aad07f08ab7a {"pid": "4413", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148944000"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:03.85255 2023-07-08 08:21:03.852554 a8aee487-f26d-48d5-91cb-50f4f2cb6aa7 {"pid": "4414", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/149110804"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:03.934904 2023-07-08 08:21:03.934912 71ecb32c-e9cb-4a8a-98cb-0f6ba2229467 {"pid": "4415", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/149112866"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:04.031145 2023-07-08 08:21:04.03115 4e381a4d-b55a-4bc8-829e-1c7f2211f909 {"pid": "4416", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/149224516"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:04.113262 2023-07-08 08:21:04.113275 3da0fb73-036d-4c66-9064-14ea0adfe851 {"pid": "4417", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/149233949"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:04.186479 2023-07-08 08:21:04.186483 a03fef67-5a06-4bbc-a8e4-8078f2e9263a {"pid": "4418", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/149252161"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:04.259867 2023-07-08 08:21:04.259874 0f426d0f-0e83-446d-ab44-998b3551219f {"pid": "4419", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/149264380"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:04.346589 2023-07-08 08:21:04.346597 f8316081-6fd6-40a4-85bf-b598cc69010b {"pid": "4420", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/14928053X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:04.431076 2023-07-08 08:21:04.431088 32dd8e20-a06d-4c4e-a806-e13a71c02643 {"pid": "4421", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/149301065"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:04.506256 2023-07-08 08:21:04.506259 008d4065-a4ff-4c15-bc71-d73ac44fbbcf {"pid": "4422", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/149357826"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:04.572638 2023-07-08 08:21:04.572641 62de80a9-8b8e-493d-b0ca-f4fca18714e4 {"pid": "4423", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/149375565"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:04.643368 2023-07-08 08:21:04.643376 a3313b07-a23b-4247-80cf-02d37702515c {"pid": "4424", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/149501706"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:04.737499 2023-07-08 08:21:04.737506 cfa12284-1426-4fee-8387-954987155591 {"pid": "4425", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/149728182"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:04.831745 2023-07-08 08:21:04.831754 982613d4-4be4-4d9d-8abd-6696e00b62be {"pid": "4426", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/149733100"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:04.992083 2023-07-08 08:21:04.992087 498419c0-e537-456a-a485-7d815a70298a {"pid": "4428", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/149877706"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:05.092719 2023-07-08 10:24:11.859081 b58b4448-053e-4183-a7a9-f2f8a8340781 {"pid": "4429", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/149944586"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101025558"} 2 -2023-07-08 08:21:03.631246 2023-07-08 10:25:59.237485 c01711b2-8afd-4f33-9827-c12d744b0f46 {"pid": "4411", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148935710"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103555547"} 2 -2023-07-08 08:21:04.91499 2023-07-08 10:27:26.885702 4b7f6f06-2432-4a2a-83dc-b5053333e53e {"pid": "4427", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/149834802"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107101254"} 2 -2023-07-08 08:21:03.393449 2023-07-08 10:27:06.954748 36113230-1399-4817-9a23-64c2b89bf608 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/170971325"}, "pid": "4408", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148833101"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106259622"} 3 -2023-07-08 08:21:02.810487 2023-07-08 10:27:45.459986 c0883aac-580f-42f6-934b-719dca5e4fac {"pid": "4401", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148637450"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107344651"} 2 -2023-07-08 08:21:05.282597 2023-07-08 08:21:05.2826 9205dcaa-033d-439c-9ea6-aa6a45253e2d {"pid": "4431", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/149968302"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:05.370523 2023-07-08 08:21:05.370532 2ee4767a-cd58-4b87-b8c3-8e4b1549c798 {"pid": "4432", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/149990871"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:05.463391 2023-07-08 08:21:05.463402 d558498f-7fac-41fb-aa6f-9e19fa378ef6 {"pid": "4433", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/149999399"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:05.552544 2023-07-08 08:21:05.552547 38c06528-e19b-4322-99dd-81b8cfdd5f9d {"pid": "4434", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/150102836"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:05.719332 2023-07-08 08:21:05.719339 b63a8661-34dd-4599-967c-a9b363ac442b {"pid": "4436", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/150296541"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:05.816256 2023-07-08 08:21:05.816263 1d126eea-2b7f-4d97-917e-88da45da5f44 {"pid": "4437", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/150503717"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:05.923114 2023-07-08 08:21:05.923119 08594a42-0416-4bd0-ada9-fb8666016402 {"pid": "4438", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/150552343"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:05.999451 2023-07-08 08:21:05.999453 8c374927-32f8-4e6e-b9ed-852d4a15717c {"pid": "4439", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/150572492"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:06.076927 2023-07-08 08:21:06.076931 0f29573e-9928-429d-aaf3-66ea65c2af77 {"pid": "4440", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/150592884"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:06.257078 2023-07-08 08:21:06.257089 0845772d-dab5-48e3-ad37-e6182d57ce77 {"pid": "4442", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/150610203"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:06.34835 2023-07-08 08:21:06.348357 38ea166d-dd20-4561-9c74-1c43c2a48426 {"pid": "4443", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/150630085"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:06.437971 2023-07-08 08:21:06.437979 d1a58563-da35-42d3-9413-fb653132584d {"pid": "4444", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/150685793"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:06.702631 2023-07-08 08:21:06.702642 f6019266-1d7d-48aa-91d3-fa0af95a7d98 {"pid": "4446", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/150813325"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:06.802169 2023-07-08 08:21:06.802177 62cb0011-3756-499e-92d5-c0750a86037e {"pid": "4447", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/150840691"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:06.898628 2023-07-08 08:21:06.898636 93fb9d27-80f7-4f31-b6d9-993cb699adf4 {"pid": "4448", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/151028702"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:07.078034 2023-07-08 08:21:07.07804 28abaae8-82c9-4395-bafd-dfc6e7094e2e {"pid": "4450", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/151217742"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:07.160291 2023-07-08 08:21:07.160294 97a6e358-cf04-4b43-a89d-67484c4c1284 {"pid": "4451", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/151341885"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:07.230451 2023-07-08 08:21:07.230459 db7fb54e-aa6d-4ea8-b696-d1024c34cb8c {"pid": "4452", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/151481733"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:07.319029 2023-07-08 08:21:07.319038 cfbe1b17-daed-43bd-aa6e-a117d86552c3 {"pid": "4453", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/151508712"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:07.405794 2023-07-08 08:21:07.405802 fea92103-43f3-4438-912b-c3772740214c {"pid": "4454", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/151580715"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:07.500203 2023-07-08 08:21:07.500206 2d57ee2e-9cf0-4598-8395-c1cf86747011 {"pid": "4455", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/151775192"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:07.5862 2023-07-08 08:21:07.586203 1d6b3799-804e-4310-aee2-2ed61cee75b8 {"pid": "4456", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/151813590"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:07.666762 2023-07-08 08:21:07.666765 a91adad8-1b17-4f8c-aaed-49e12edfdc94 {"pid": "4457", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/151884951"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:07.73023 2023-07-08 08:21:07.730233 3864443a-001f-4e8c-b42f-8f6acd8f3543 {"pid": "4458", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/151889511"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:07.806943 2023-07-08 10:24:37.873718 ab600319-a614-4cd5-9269-4d04b3ffe883 {"pid": "4459", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/152016872"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101420766"} 2 -2023-07-08 08:21:06.522491 2023-07-08 10:25:29.725698 c90fae99-1bb0-43d3-802c-5429eb606649 {"pid": "4445", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/150700768"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102711715"} 2 -2023-07-08 08:21:06.172344 2023-07-08 10:25:31.852117 3376a232-5284-48b8-85d9-8e5cbbbadcb3 {"pid": "4441", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/150599811"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102761710"} 2 -2023-07-08 08:21:05.199788 2023-07-08 10:25:45.302313 fda596fe-f273-43f6-96fb-e15796ef9011 {"pid": "4430", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/149955847"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103203448"} 2 -2023-07-08 08:21:06.997491 2023-07-08 10:27:08.853476 dafc98f6-cc7c-42e4-bf81-4a2b1c6642a8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/120539544X"}, "pid": "4449", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/15117430X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106386919"} 3 -2023-07-08 08:21:07.888005 2023-07-08 08:21:07.888012 7861a859-e1c1-4960-85c5-0881e5ea2540 {"pid": "4460", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/152049193"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:07.968095 2023-07-08 08:21:07.968098 566e35b8-5cda-403e-ac9f-85bb311b5f09 {"pid": "4461", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/152071210"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:08.130683 2023-07-08 08:21:08.130688 c51f6210-669b-4085-b76b-27583e5fc661 {"pid": "4462", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/152355731"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:08.216041 2023-07-08 08:21:08.216051 a75af8f1-d799-4d24-be1b-c0bf2f8dc8bc {"pid": "4463", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/152491589"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:08.300905 2023-07-08 08:21:08.300912 d6b7a6a3-e1a5-43a3-8af6-3a0edabe8f6e {"pid": "4464", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/152513655"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:08.392802 2023-07-08 08:21:08.392814 8e843a50-7024-4303-ad5a-059ad98161d1 {"pid": "4465", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/152519866"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:08.480385 2023-07-08 08:21:08.480397 29ee62e5-62d8-4045-a919-ee5305b66c3d {"pid": "4466", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/152563024"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:08.582121 2023-07-08 08:21:08.582124 46829d93-82fe-4eaf-a3fb-21c6cff7bfc9 {"pid": "4467", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/152706038"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:08.662093 2023-07-08 08:21:08.662101 0ad03844-6d85-41cd-9430-fa31e35dee95 {"pid": "4468", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/152722270"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:08.745168 2023-07-08 08:21:08.745172 09ebcee8-0805-45d4-aa50-e4f52a0f9939 {"pid": "4469", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/15282300X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:08.825624 2023-07-08 08:21:08.825631 70493bbb-8418-478d-9d80-a33cbc659d7b {"pid": "4470", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/152852093"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:08.907638 2023-07-08 08:21:08.907646 aa56853f-01df-4b68-9688-fc6c5ef337e8 {"pid": "4471", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/152901353"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:08.996464 2023-07-08 08:21:08.996471 28704ac3-a859-4cb5-bfd7-1808ccd45dee {"pid": "4472", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/152940898"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:09.072872 2023-07-08 08:21:09.072881 88ac175d-ee65-4806-a6e3-e38981b5e93f {"pid": "4473", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/15295208X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:09.143899 2023-07-08 08:21:09.143902 17e51516-1693-49b6-84a3-793d69301b6b {"pid": "4474", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/152972250"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:09.210997 2023-07-08 08:21:09.211005 1d0b8f00-b40a-4c1f-adf7-4e042fa6c80b {"pid": "4475", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/153081147"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:09.30269 2023-07-08 08:21:09.302698 0e0f0732-fb72-4c01-aebf-6afae68d8bc9 {"pid": "4476", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/153136480"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:09.400733 2023-07-08 08:21:09.40074 6314e8c4-e8ff-43e3-85b9-4712f1e681d0 {"pid": "4477", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/153410647"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:09.57612 2023-07-08 08:21:09.576135 20e023e5-e189-4e9e-b2de-de7c6b2a4c7a {"pid": "4479", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/153516631"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:09.661551 2023-07-08 08:21:09.661561 ccfd6550-3035-4cf9-a403-9038a1d9881f {"pid": "4480", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/153533056"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:09.758542 2023-07-08 08:21:09.75855 756035d4-ab32-41cd-b407-9daac43f8a26 {"pid": "4481", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/153541342"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:09.839463 2023-07-08 08:21:09.839469 6ede7305-c817-4c5f-9483-15bbbed13037 {"pid": "4482", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/153546247"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:09.939541 2023-07-08 08:21:09.939551 ec4536fb-3d24-4782-bff6-0f957a8086d0 {"pid": "4483", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/153613556"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:10.025213 2023-07-08 08:21:10.025216 0af4fa5c-1346-49d2-b4ae-56f39c12eff4 {"pid": "4484", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/153973145"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:10.194949 2023-07-08 08:21:10.195348 d03b1238-0c27-46ee-8fd2-8f9622c59beb {"pid": "4486", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/154190551"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:10.282538 2023-07-08 08:21:10.282548 5727febc-b1c4-412a-993b-c22d49101e91 {"pid": "4487", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/154659622"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:10.372338 2023-07-08 08:21:10.37235 73db8ea1-ac9f-447a-9008-c9b4a7d551b4 {"pid": "4488", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/154744395"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:10.458553 2023-07-08 08:21:10.458561 be69d732-9916-40e4-9d94-08c5910dc6a9 {"pid": "4489", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/154778532"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:09.491923 2023-07-08 10:27:12.461349 95b7a53a-4afa-4162-a48b-c4b879bdc24f {"pid": "4478", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018610634"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/153446544"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106496232"} 4 -2023-07-08 08:21:10.112364 2023-07-08 10:29:38.904495 b7ebd951-67c3-4ae4-84b8-84d9bf6fb869 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/137308914"}, "pid": "4485", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/15401916X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110147061"} 3 -2023-07-08 08:21:10.549053 2023-07-08 08:21:10.549064 320d35a8-77cc-4e8f-a4db-463b4d145906 {"pid": "4490", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/154820903"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:10.638763 2023-07-08 08:21:10.638775 2e22bde3-2f8e-4a5c-892c-a3d31d5e3179 {"pid": "4491", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/154833649"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:10.923186 2023-07-08 08:21:10.9232 5cedcd78-5e9a-4016-8cd4-ada81f3acd52 {"pid": "4492", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/155128965"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:11.008638 2023-07-08 08:21:11.008642 deadef0e-fe73-4174-bcc2-784336b4a8df {"pid": "4493", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/155289292"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:11.184431 2023-07-08 08:21:11.184439 7a86f675-b2ab-4800-87d2-8b840d79ff6c {"pid": "4495", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/155413163"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:11.291083 2023-07-08 08:21:11.291096 70cbb230-25ce-4d69-a6c4-30e5551e4870 {"pid": "4496", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/155413414"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:11.392755 2023-07-08 08:21:11.392766 03cc6de5-6cf5-40d5-95fe-bdf8c5cdeb59 {"pid": "4497", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/155519107"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:11.497867 2023-07-08 08:21:11.497877 161cd032-ae9b-4173-bdd2-f53c7d286c77 {"pid": "4498", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/155533797"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:11.587747 2023-07-08 08:21:11.587754 805d3048-0772-411f-a465-3b1123990c41 {"pid": "4499", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/155592122"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:11.678702 2023-07-08 08:21:11.678714 55200af7-0cd8-4a58-8bac-53bf12909598 {"pid": "4500", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/155733370"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:11.880978 2023-07-08 08:21:11.880986 2f3252b4-5df1-46a4-8ede-5e433bc8735e {"pid": "4502", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/155760947"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:12.073703 2023-07-08 08:21:12.073706 93b28448-c36d-4b53-a832-d76c98c803fc {"pid": "4504", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/15589899X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:12.17361 2023-07-08 08:21:12.173614 4893179a-4387-48df-b37d-7996ef5799ad {"pid": "4505", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/155925261"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:12.286718 2023-07-08 08:21:12.286723 08d6cc1b-6a16-444f-a031-531181d1a624 {"pid": "4506", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/155933604"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:12.380847 2023-07-08 08:21:12.380851 227e5ac4-e7f6-455c-81df-806790d4d650 {"pid": "4507", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/155942204"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:12.476314 2023-07-08 08:21:12.476322 f337ba9c-1d86-4b52-ac82-dee16b3e5ad6 {"pid": "4508", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/156048701"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:12.582509 2023-07-08 08:21:12.582514 8d8a4129-74df-4869-998d-5208bc77666d {"pid": "4509", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/156053241"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:12.670622 2023-07-08 08:21:12.670631 543e7cbd-2f64-4b97-a266-f00e29b37b5c {"pid": "4510", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/156252813"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:12.764105 2023-07-08 08:21:12.764112 f2bd9893-217f-4726-8889-5d2dfd20dfc6 {"pid": "4511", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/156288435"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:12.951875 2023-07-08 08:21:12.951884 ec402e73-ecfc-4b7b-88c1-dbaeded54587 {"pid": "4512", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/156363690"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:13.033414 2023-07-08 08:21:13.033416 f8c79ea5-9a55-4af5-a9da-d7069f3409d7 {"pid": "4513", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/156539063"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:13.109282 2023-07-08 08:21:13.109291 d44da96c-b4f9-4fab-aa98-a08c7c7ccfb9 {"pid": "4514", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/156563932"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:13.206341 2023-07-08 08:21:13.20635 5eb1d691-e454-4e45-9671-9b1f15ebbdb7 {"pid": "4515", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/156590948"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:13.295125 2023-07-08 08:21:13.295133 14583e22-432c-4221-9148-74e3eadaaece {"pid": "4516", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/156838524"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:13.385842 2023-07-08 08:21:13.385845 cfdc0c3b-6dd4-4a75-acf7-d536e812630f {"pid": "4517", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/156838613"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:13.485412 2023-07-08 08:21:13.485419 71b5be35-3c36-4829-914a-6071da51ae4e {"pid": "4518", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/156954761"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:11.782391 2023-07-08 10:23:47.752974 a058cb4a-3aaa-4fb4-9b0e-5bc00d6abd54 {"pid": "4501", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/155746936"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100331018"} 2 -2023-07-08 08:21:11.09029 2023-07-08 10:24:01.000464 b6197792-c0da-45c9-8b86-c0be8ca138a5 {"pid": "4494", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/155309668"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100656063"} 2 -2023-07-08 08:14:37.648768 2023-07-08 10:28:10.293733 095b8805-b7bc-4525-91c8-cc905ecaf689 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011449145"}, "pid": "615", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/154889415"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107950630"} 4 -2023-07-08 08:21:13.556794 2023-07-08 08:21:13.556797 979305e3-7513-41a5-b500-cf27161da3b9 {"pid": "4519", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/15704856X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:13.633204 2023-07-08 08:21:13.633207 164f2c7b-d754-4da1-afe7-2677b8cfce9b {"pid": "4520", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/157222330"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:13.734363 2023-07-08 08:21:13.734372 587fe13f-dece-4c1e-ac7e-4cfdbd1e56d9 {"pid": "4521", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/157227170"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:13.829107 2023-07-08 08:21:13.82911 5b4fcbc7-85e7-439a-ac76-4e554dbb0ae9 {"pid": "4522", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/157315088"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:13.926671 2023-07-08 08:21:13.926675 4687bcea-99d2-48a4-b449-5134cb2ac9d1 {"pid": "4523", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/157332047"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:14.009596 2023-07-08 08:21:14.009603 7665236e-876f-44ef-b244-18d915c62034 {"pid": "4524", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/157333507"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:14.104937 2023-07-08 08:21:14.104945 543daabb-5da4-4807-ad73-d749da4149a1 {"pid": "4525", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/157526860"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:14.187272 2023-07-08 08:21:14.18728 4864d9d7-1944-43db-86ed-1a83aab12e58 {"pid": "4526", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/157650154"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:14.377066 2023-07-08 08:21:14.377075 e729a68b-4dbc-402b-b5ce-059b9cfcb699 {"pid": "4528", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/157881997"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:14.469664 2023-07-08 08:21:14.469668 e5573ee0-3111-42f3-aac8-1291a5b0b013 {"pid": "4529", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/157995860"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:14.556116 2023-07-08 08:21:14.556119 2d5382f9-476f-49e9-b717-6be886b1df4b {"pid": "4530", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/158085647"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:14.651918 2023-07-08 08:21:14.651923 ba0d48ea-4bdf-408c-a830-a1df31078c97 {"pid": "4531", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/158118294"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:14.732583 2023-07-08 08:21:14.73259 1d55ebee-7b6d-4052-8223-9d7ef8feb3ef {"pid": "4532", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/158365186"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:14.921376 2023-07-08 08:21:14.921385 1d8053e0-90c4-4fdc-84a9-910448f0155c {"pid": "4534", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/158638247"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:15.015464 2023-07-08 08:21:15.015471 40c06438-b88b-4a86-8f6f-58a566d4e857 {"pid": "4535", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/158762274"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:15.102143 2023-07-08 08:21:15.102151 00ef3da0-c88e-4414-9b64-f88ef3464b35 {"pid": "4536", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/158778235"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:15.196922 2023-07-08 08:21:15.19693 4b6845af-3921-4e34-9ade-0b28991b8465 {"pid": "4537", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/158991583"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:15.282619 2023-07-08 08:21:15.282624 273a74e1-9fe2-4213-bd37-96db1f252c6c {"pid": "4538", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/158996577"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:15.367226 2023-07-08 08:21:15.367233 192b8bd7-f7a8-4375-ae1d-18790dc1ba30 {"pid": "4539", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/159184495"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:15.45564 2023-07-08 08:21:15.455651 d6148504-893a-4265-8429-3d3d71d0eccf {"pid": "4540", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/159278201"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:15.538243 2023-07-08 08:21:15.538246 6d372420-7742-4350-affa-6cae06a3db5c {"pid": "4541", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/159640989"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:15.617621 2023-07-08 08:21:15.617626 245897bd-6fce-4b94-a2dd-bed1d0364e0e {"pid": "4542", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/159658152"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:15.710843 2023-07-08 08:21:15.710848 a37dad6f-92c6-4cda-8bd0-82c96271bff6 {"pid": "4543", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/159687306"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:15.80583 2023-07-08 08:21:15.80584 d38fff3c-2372-41bc-a134-c4db417dccb5 {"pid": "4544", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/159765315"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:15.900858 2023-07-08 08:21:15.900867 6769efb6-3175-43cc-a789-7c468302a870 {"pid": "4545", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/159775744"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:15.998862 2023-07-08 08:21:15.998874 0f022468-e6c7-4cfb-9686-c2e3bfe83328 {"pid": "4546", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/159852684"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:16.087089 2023-07-08 08:21:16.087096 dafe7cfa-43d5-4bb6-b149-5139c7daad5d {"pid": "4547", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/160193974"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:16.180144 2023-07-08 08:21:16.180148 47d1abc1-04b7-4fe7-b1ec-a5b40ffe1d0d {"pid": "4548", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/160196620"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:16.268163 2023-07-08 08:21:16.268173 6d51484b-5f40-4a35-b7af-004c491c5ccc {"pid": "4549", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/160342465"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:14.2823 2023-07-08 10:27:05.704868 1c7a88a3-d41c-4cae-bd82-bca7ed801617 {"pid": "4527", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/157856283"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106237743"} 2 -2023-07-08 08:21:16.355942 2023-07-08 08:21:16.355946 06ea0157-c132-450a-a7d5-8b8b9072591a {"pid": "4550", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/160359619"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:16.445094 2023-07-08 08:21:16.445102 ca0ef47a-08fe-4333-af2e-b4a627b8ff53 {"pid": "4551", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/160424275"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:16.613902 2023-07-08 08:21:16.613917 0868c6a7-8dda-4742-8ecf-f3622c80edb5 {"pid": "4553", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/160635543"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:16.713191 2023-07-08 08:21:16.713202 d078ae87-dd2f-4667-8d7a-7f1d75cd2a02 {"pid": "4554", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/160773318"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:16.798672 2023-07-08 08:21:16.798675 3e7d2f5b-fe6d-4b4c-821a-cc8a8e9c6ba8 {"pid": "4555", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/160837065"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:16.912376 2023-07-08 08:21:16.912385 33fec79a-d888-4dff-a8f6-f79e7aeb6ad0 {"pid": "4556", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/16113307X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:17.00314 2023-07-08 08:21:17.003151 d7f15a77-b897-4520-a54f-f908ca2e6b8f {"pid": "4557", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/161148689"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:17.094946 2023-07-08 08:21:17.094949 0dfb932e-23b9-4c61-9bb7-857930d1a8c0 {"pid": "4558", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/161301142"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:17.287819 2023-07-08 08:21:17.287828 c5049fda-d73e-46b8-a0f1-5450d17453ea {"pid": "4560", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/16165407X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:17.392097 2023-07-08 08:21:17.392105 250b5890-1c81-450d-bbce-35d46ae8e5a5 {"pid": "4561", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/161696325"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:17.49068 2023-07-08 08:21:17.490691 e5e51ab1-d1f7-4f88-bbcb-d16238349720 {"pid": "4562", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/161996302"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:17.570336 2023-07-08 08:21:17.570344 e322daf4-4ec0-4552-b991-2674fa92fe95 {"pid": "4563", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/162046065"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:17.659007 2023-07-08 08:21:17.659015 64f10615-d1c2-4477-8913-050709da4e59 {"pid": "4564", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/162138997"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:17.949656 2023-07-08 08:21:17.949663 053c8275-0864-4f66-870c-1985d67f3e41 {"pid": "4566", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/162196407"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:18.026729 2023-07-08 08:21:18.026732 5b5f78d2-0cbe-4cea-8558-d108c2850cf8 {"pid": "4567", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/162320264"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:18.112698 2023-07-08 08:21:18.112706 b45ef210-3ae0-4788-b1af-88aac31f9f00 {"pid": "4568", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/162452659"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:18.303522 2023-07-08 08:21:18.303531 19b1c5a2-8a82-4444-9f3f-aee62fe07291 {"pid": "4569", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/163232857"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:18.403077 2023-07-08 08:21:18.403084 8fab3820-cd42-4c67-b987-717c3d450dd8 {"pid": "4570", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/163250030"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:18.503706 2023-07-08 08:21:18.503714 08bfe9d9-d45b-474e-bfae-9b9895c6c499 {"pid": "4571", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/163880433"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:18.593852 2023-07-08 08:21:18.593859 ae4adb33-a7ef-4345-be76-7a9db6ea2341 {"pid": "4572", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/164105301"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:18.785662 2023-07-08 08:21:18.78567 149f3ff0-17ff-44e3-ae8d-9afb24e075ee {"pid": "4574", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/164530363"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:18.879927 2023-07-08 08:21:18.879934 37c7f887-cf62-4c99-9c90-848ef5358177 {"pid": "4575", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/164539972"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:18.967017 2023-07-08 08:21:18.96702 96e62833-1861-4d4c-ab2c-41ba63250016 {"pid": "4576", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/164600620"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:19.062608 2023-07-08 08:21:19.062615 9411689a-3789-4657-9357-e29c822d2c3f {"pid": "4577", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/164604820"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:19.16939 2023-07-08 08:21:19.169397 95109d05-efa8-4dd0-ac77-41a9ca79b0ed {"pid": "4578", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/164708782"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:19.260472 2023-07-08 08:21:19.260481 dd533a6e-30dd-4931-a212-20082c0f08d0 {"pid": "4579", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/16480224X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:19.353454 2023-07-08 08:21:19.353466 b9d4aa9d-ee11-454a-99d4-0b8f7a6b58c5 {"pid": "4580", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/16481079X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:18.679534 2023-07-08 10:26:02.733428 70361d7e-0870-4345-b84d-b39102331121 {"pid": "4573", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/164529640"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103685237"} 2 -2023-07-08 08:21:16.528361 2023-07-08 10:26:03.089137 e8b67531-e789-48c2-95a0-8938d50b0cbd {"pid": "4552", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/160613701"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103688900"} 2 -2023-07-08 08:21:17.850133 2023-07-08 10:29:51.541594 5d83ae28-cf50-4b55-a98d-bc0c4fcb31d5 {"pid": "4565", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/16216193X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110239285"} 2 -2023-07-08 08:21:19.455765 2023-07-08 08:21:19.455773 4d39b066-9702-4abf-b23b-5593e68c1b53 {"pid": "4581", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/164855580"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:19.551557 2023-07-08 08:21:19.551562 f291bdd3-397d-487a-af9a-9f178ad2aed9 {"pid": "4582", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/164948368"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:19.633656 2023-07-08 08:21:19.633659 3765cd29-d152-4d8c-b760-ac58e08e45c6 {"pid": "4583", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/165030968"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:19.718907 2023-07-08 08:21:19.718915 bdd706a3-c2e2-442e-96ac-d73e3f7c2ad5 {"pid": "4584", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/165099054"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:19.813194 2023-07-08 08:21:19.813199 72284978-ebb2-4e39-9388-631a2204b7c3 {"pid": "4585", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/165139455"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:19.896075 2023-07-08 08:21:19.896084 07b8798c-2b36-4ac6-a42e-8923a7f3ec4d {"pid": "4586", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/165153687"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:19.998423 2023-07-08 08:21:19.998428 9974e0f5-c057-483c-bfb5-6151b288c9d5 {"pid": "4587", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/16530569X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:20.090354 2023-07-08 08:21:20.090367 bad273c3-f836-46a4-ba3e-0649c0959581 {"pid": "4588", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/165425229"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:20.183305 2023-07-08 08:21:20.183319 3ef897bb-41a9-4fc2-94f0-03e8129cd0d0 {"pid": "4589", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/165647876"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:20.270901 2023-07-08 08:21:20.270907 0348dfb0-ff8a-45fc-af1d-27c77d0ee8fe {"pid": "4590", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/165825324"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:20.365006 2023-07-08 08:21:20.365011 418a738c-87c6-4cd8-9d85-ff81b6756fb5 {"pid": "4591", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/165842822"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:20.451026 2023-07-08 08:21:20.451035 27f55cf7-3e14-4279-919a-58d04ea6edf8 {"pid": "4592", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/165846771"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:20.533477 2023-07-08 08:21:20.533483 750c46b1-c1cd-479d-8c07-c60225eafab8 {"pid": "4593", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/166452912"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:20.704785 2023-07-08 08:21:20.704788 37e0eb75-040e-4570-8d98-b633d39c4738 {"pid": "4594", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/16647729X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:20.795806 2023-07-08 08:21:20.795815 acdc4759-7baf-49fa-886d-729d1612978c {"pid": "4595", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/166533971"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:20.879552 2023-07-08 08:21:20.879562 a171b4a3-27de-4ff7-bad6-b7bf6f5ad6c7 {"pid": "4596", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/166601551"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:20.975448 2023-07-08 08:21:20.975458 5ce51b24-d540-4fe1-9baa-2bdbfd38f796 {"pid": "4597", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/166827886"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:21.170496 2023-07-08 08:21:21.170508 4ec2ebfc-c79c-43b4-9fcf-3c631f841b63 {"pid": "4599", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/167149369"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:21.385736 2023-07-08 08:21:21.385744 e32094af-97e3-4d58-b546-fc17ba4ecd46 {"pid": "4601", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/16734613X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:21.562443 2023-07-08 08:21:21.562446 32ae2e80-3f50-4625-81c3-8b6772f1b62e {"pid": "4602", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/16746499X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:21.737896 2023-07-08 08:21:21.737905 3e63db54-1f36-4d76-9e68-73316dc7eb39 {"pid": "4604", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/167597213"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:21.935409 2023-07-08 08:21:21.935416 6dd8e426-ba51-45bb-87d7-d50fc8df10ea {"pid": "4605", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/167900587"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:22.109816 2023-07-08 08:21:22.109825 f8608272-3dfc-4982-835d-b601a77f2680 {"pid": "4607", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/167994689"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:22.19165 2023-07-08 08:21:22.191655 f6a66ec8-c054-48d9-8917-722ecbef547d {"pid": "4608", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/168060973"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:22.025976 2023-07-08 10:27:15.220193 ffe779ac-87f6-46d1-bfa0-5cccd7def2fe {"pid": "4606", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/167901842"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106621764"} 2 -2023-07-08 08:21:21.282381 2023-07-08 10:23:44.488765 51e424de-d297-4ede-85fe-efb164cbb4c5 {"pid": "4600", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/167228862"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "deleted": "2023-07-08T10:23:44.366911+00:00", "viaf_pid": "10030090"} 2 -2023-07-08 08:21:21.642447 2023-07-08 10:26:44.057733 123b4974-bb36-4466-8333-661d85a0485b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/16110522X"}, "pid": "4603", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023166695"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/167467549"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105369513"} 5 -2023-07-08 08:16:24.969053 2023-07-08 10:29:29.470704 9822db4a-ab36-4918-8cf1-c0b8ce9c53cc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/121710696"}, "pid": "1709", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003981870"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/166452955"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109955226"} 6 -2023-07-08 08:21:22.27693 2023-07-08 08:21:22.276937 f75acb99-7477-4287-8f50-4c234357e6fb {"pid": "4609", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/168391996"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:22.361517 2023-07-08 08:21:22.361525 b9136f1a-9540-48af-8185-1238e9b741d0 {"pid": "4610", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/168510332"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:22.63297 2023-07-08 08:21:22.63298 a4e21876-66db-4fc4-923a-d837774cfe9c {"pid": "4613", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/168676761"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:22.716865 2023-07-08 08:21:22.716873 19c6f337-4733-4ad1-8018-29da7b6f8478 {"pid": "4614", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/168926962"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:22.919064 2023-07-08 08:21:22.919072 a0476d0c-15ad-4009-b387-c60ff80d7920 {"pid": "4616", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/169159914"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:23.00867 2023-07-08 08:21:23.008679 83189c9a-9278-4b30-bd6b-cd59539262a7 {"pid": "4617", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/169352501"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:23.086841 2023-07-08 08:21:23.086844 30a0352e-6999-4475-beb2-8c690b4511d5 {"pid": "4618", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/169383695"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:23.336953 2023-07-08 08:21:23.33696 61250dbb-e9e1-4d47-95d9-f675ca32ae38 {"pid": "4621", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/169852253"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:23.429564 2023-07-08 08:21:23.429572 a5d136d3-4957-475a-936c-dd0d989e922e {"pid": "4622", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/169905187"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:23.519018 2023-07-08 08:21:23.519026 855dba96-8204-43bf-bc56-48cef7881ab6 {"pid": "4623", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/17000404X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:23.61677 2023-07-08 08:21:23.616777 24908a28-41f1-4888-808e-2797e5c95813 {"pid": "4624", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/170042650"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:23.798946 2023-07-08 08:21:23.798955 028c38ad-dac3-440f-afe2-52cb0b2c481e {"pid": "4625", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/170276708"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:23.900859 2023-07-08 08:21:23.900867 770cd655-d027-41d7-806a-7e3a4a4db25a {"pid": "4626", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/170444368"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:24.068519 2023-07-08 08:21:24.068522 eab3e3c5-9632-4063-8d71-295bdab989cd {"pid": "4627", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/170479862"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:24.155434 2023-07-08 08:21:24.155447 6a4778d6-1387-40ce-8388-840389e63fae {"pid": "4628", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/170696413"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:24.237562 2023-07-08 08:21:24.23757 03b53b70-7827-4a3e-870a-b01d62c4ccfc {"pid": "4629", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/170792188"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:24.327367 2023-07-08 08:21:24.327375 f63b4cc1-6875-4645-ba4c-e16c61d1d3c7 {"pid": "4630", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/170798828"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:24.39629 2023-07-08 08:21:24.396294 97a8b349-02b1-4e11-a267-a8eab0baf849 {"pid": "4631", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/170804291"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:24.482637 2023-07-08 08:21:24.482641 ca71b03d-c38d-45ee-b74a-009ac06d117d {"pid": "4632", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/171073444"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:24.565117 2023-07-08 08:21:24.565128 d160c228-ef9d-4a70-bd03-bff5250d9f77 {"pid": "4633", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/171330943"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:24.660003 2023-07-08 08:21:24.660011 5c2b150f-3008-4d00-9fd6-9d97b505f7c5 {"pid": "4634", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/17141599X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:24.745097 2023-07-08 08:21:24.745106 ff3ad520-d05c-44f7-968f-871df81c71ee {"pid": "4635", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/171790944"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:24.835663 2023-07-08 08:21:24.835671 2c0c084c-e3a4-485f-8f5c-509a36ae1e6c {"pid": "4636", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/171811534"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:24.916444 2023-07-08 08:21:24.916451 6026645c-c355-45d2-abec-06607bb13ad9 {"pid": "4637", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/172309239"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:24.992193 2023-07-08 08:21:24.992198 e56edf1b-7c9b-4a9a-9be2-93b519fe39ec {"pid": "4638", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/172595347"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:23.156572 2023-07-08 10:23:31.079682 e8729751-1190-4da2-87a9-5b4243bf2bf8 {"pid": "4619", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/16961834X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100119582"} 2 -2023-07-08 08:21:22.464962 2023-07-08 10:24:04.38035 36c6f2f9-6662-4885-8385-73e1f1203e32 {"pid": "4611", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/168633248"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10083533"} 2 -2023-07-08 08:21:22.81588 2023-07-08 10:27:07.720174 8f65a9ba-3605-4f11-a7ee-571ff4b0e923 {"pid": "4615", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/168968614"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106338921"} 2 -2023-07-08 08:21:23.250685 2023-07-08 10:25:55.67096 c58ec8ce-41e9-472e-bd1f-ce156b8900a7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141184531"}, "pid": "4620", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/169818098"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103455755"} 3 -2023-07-08 08:21:25.067602 2023-07-08 08:21:25.067605 3d6eea2f-1217-4f9f-af2f-edbfbdd3af1a {"pid": "4639", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/172735319"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:25.155748 2023-07-08 08:21:25.15576 39b8b54f-11d3-43cc-92d0-21a21b1aeb64 {"pid": "4640", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/174120745"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:25.351434 2023-07-08 08:21:25.351437 0a16203f-903a-45ad-8c0f-b60baaccf6ec {"pid": "4642", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/174180039"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:25.736344 2023-07-08 08:21:25.736352 c0490d05-adb5-4024-8be8-14b9c7f58708 {"pid": "4646", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/174757131"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:25.831033 2023-07-08 08:21:25.831046 9a658549-6d94-4fad-9900-f8e86b97d852 {"pid": "4647", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/175070180"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:25.9056 2023-07-08 08:21:25.905605 41635330-0894-44c6-9668-494ecc47ce54 {"pid": "4648", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/175084661"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:25.985668 2023-07-08 08:21:25.985671 44eb1ea3-19ce-4f3b-a50a-9c463171bf89 {"pid": "4649", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/175177880"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:26.188007 2023-07-08 08:21:26.188018 6da9519a-7b84-462d-bf03-8274c761805e {"pid": "4651", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/175664528"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:26.272983 2023-07-08 08:21:26.272991 28e8e403-5344-4f00-bd0a-1be32755c96d {"pid": "4652", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/175917434"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:26.458049 2023-07-08 08:21:26.458056 d00314e1-5fa7-4048-b9d4-db458fd36d7f {"pid": "4654", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/176586350"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:26.539443 2023-07-08 08:21:26.539448 2017778e-d141-474d-aafd-299da84a94ac {"pid": "4655", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/176752781"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:26.773739 2023-07-08 08:21:26.773749 461677f1-d2c9-4a2f-ba8a-41d129ff1b19 {"pid": "4657", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/176834540"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:27.051754 2023-07-08 08:21:27.051757 e3dcdebf-d4ae-428d-ab2c-4808ce2be286 {"pid": "4660", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/17718101X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:27.127902 2023-07-08 08:21:27.127907 1cf1eda3-15e5-49fb-aea3-e6becc76b930 {"pid": "4661", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/177181516"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:27.203644 2023-07-08 08:21:27.203649 f72a7fbd-6bac-43cc-b534-78d08a1f495d {"pid": "4662", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/17719166X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:27.298428 2023-07-08 08:21:27.298436 1b5fa7c3-e859-4258-86d8-822784d82496 {"pid": "4663", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/177498056"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:27.384805 2023-07-08 08:21:27.384808 0b602e14-9bd2-4636-9564-a0dfe7185872 {"pid": "4664", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/177564229"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:27.459526 2023-07-08 08:21:27.459537 e6b1b6f8-cc67-45e3-ac48-f86fb57f5b9e {"pid": "4665", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/177597933"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:27.538723 2023-07-08 08:21:27.538726 214a25aa-00e4-4403-a672-3b455e7c9f65 {"pid": "4666", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/177966793"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:27.709653 2023-07-08 08:21:27.709661 2ad1eebc-3a57-4d29-95cb-f905c14969cf {"pid": "4668", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/178123889"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:27.81749 2023-07-08 08:21:27.817497 de203f21-809f-41cd-9e81-e414b5bd59ba {"pid": "4669", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/178129887"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:25.271832 2023-07-08 10:24:47.34729 32cebc5f-ffde-49b5-9f0f-23939d1b0f25 {"pid": "4641", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025983847"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/174162790"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101570102"} 4 -2023-07-08 08:21:27.626625 2023-07-08 10:24:45.009911 49a39f79-28d9-4ced-9caa-89c4e0a13670 {"pid": "4667", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/178055328"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101520602"} 2 -2023-07-08 08:21:26.081117 2023-07-08 10:26:08.90526 a923fcbe-6a14-4ecf-8740-51058291f1d4 {"pid": "4650", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/175622914"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103893786"} 2 -2023-07-08 08:21:26.684341 2023-07-08 10:26:10.356584 865f48e3-0752-47c8-8bee-105a576d9e76 {"pid": "4656", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/176776613"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103936670"} 2 -2023-07-08 08:21:25.4452 2023-07-08 10:26:14.199733 2c1e9fbf-75ce-49a7-ae5e-c5fbdc944f5d {"pid": "4643", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/174469470"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104037028"} 2 -2023-07-08 08:21:25.541218 2023-07-08 10:28:25.279853 6e8bbf42-5852-4e61-86d5-7e3126ea593e {"pid": "4644", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/174571623"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108244066"} 2 -2023-07-08 08:21:26.971107 2023-07-08 10:27:29.253246 707d51ee-92e5-4254-9be8-4754084a178b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140424873"}, "pid": "4659", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/177081724"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107125861"} 3 -2023-07-08 08:21:26.871601 2023-07-08 10:27:54.754682 3d185b3e-ee72-4487-8233-138dbc0df953 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/123954940"}, "pid": "4658", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/176929738"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10767442"} 3 -2023-07-08 08:21:28.021464 2023-07-08 08:21:28.021473 f9bfb41a-7c34-4c1e-9e53-5cb92731e05a {"pid": "4671", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/178302430"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:28.126984 2023-07-08 08:21:28.126994 d255bbd5-48f5-4817-8cce-f83aee202db3 {"pid": "4672", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/178403431"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:28.310333 2023-07-08 08:21:28.31034 d9551592-9aba-4c81-85d1-e1880c0bbe14 {"pid": "4674", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/178656275"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:28.506312 2023-07-08 08:21:28.50632 6b2b9d12-b5fc-401f-8d53-6a4cdcc2b49a {"pid": "4675", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/178887463"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:28.573854 2023-07-08 08:21:28.573858 2953dea3-b270-4a46-bd88-dd206dd19481 {"pid": "4676", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/178950823"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:28.73512 2023-07-08 08:21:28.735124 8043edd4-1644-47b9-8d56-c458a75d5db0 {"pid": "4678", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/179410059"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:28.819442 2023-07-08 08:21:28.81945 e1bc1bca-3bd6-4a98-9c6d-df0483b539f8 {"pid": "4679", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/179487183"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:28.911813 2023-07-08 08:21:28.911823 d5f24a3a-00a0-4d9c-a1a2-42843fcc14c6 {"pid": "4680", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/179957805"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:28.997879 2023-07-08 08:21:28.997888 4ae1cf96-74e5-4371-96e2-6b1c7eecf33f {"pid": "4681", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/180123580"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:29.07117 2023-07-08 08:21:29.071174 5a2c5113-f5f6-478e-92de-2308b04a2d1a {"pid": "4682", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/180177494"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:29.157791 2023-07-08 08:21:29.157811 4f7b8c65-ce5b-4b10-a50f-9f310e2ab0d2 {"pid": "4683", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/180568892"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:29.247913 2023-07-08 08:21:29.247921 f366df44-ff93-4238-8e67-096b954d664a {"pid": "4684", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/180999699"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:29.603287 2023-07-08 08:21:29.603294 319c75ee-d241-4fca-97aa-ebfb0a5d6cc2 {"pid": "4688", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/181254506"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:29.685311 2023-07-08 08:21:29.685315 c0b6ace8-cac9-4613-b399-7ce822ea8284 {"pid": "4689", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/181256037"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:29.753824 2023-07-08 08:21:29.753835 2d6654b0-c86c-49d6-a236-d64e779cd829 {"pid": "4690", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/181345404"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:30.032414 2023-07-08 08:21:30.032418 7ac9482d-909d-4cc2-8858-e5696e2b1e89 {"pid": "4692", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/181732149"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:30.109292 2023-07-08 08:21:30.109306 8523e592-35f3-4984-b3b1-30b82baa9046 {"pid": "4693", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/181863111"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:30.196566 2023-07-08 08:21:30.19657 0cce10ed-1c79-4b13-ba20-e02a4b366799 {"pid": "4694", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/182214184"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:30.27926 2023-07-08 08:21:30.279268 64c1f0eb-c831-4a9b-abdc-302fc20f42aa {"pid": "4695", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/182358534"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:30.357977 2023-07-08 08:21:30.35798 b02bba3f-9cab-4167-b6c7-afa78aa53d58 {"pid": "4696", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/182624250"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:30.441485 2023-07-08 08:21:30.441493 f407d7ec-5007-4366-854f-b38eaa19fe65 {"pid": "4697", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/182625575"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:30.531981 2023-07-08 08:21:30.531985 05324a62-2515-476e-a005-77c9d6ebc95f {"pid": "4698", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/182629589"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:30.613708 2023-07-08 08:21:30.613711 a2d557e8-0a29-4fae-9d65-c6af80fa594c {"pid": "4699", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/182693198"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:29.518051 2023-07-08 10:26:31.186499 ae9c48cd-eb14-4afc-8d8f-bdc1f53bfa69 {"pid": "4687", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/181132931"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104919234"} 2 -2023-07-08 08:21:29.339161 2023-07-08 10:25:11.453198 f46f3019-ca84-4701-8b18-d01e5d81bbaa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1031494286"}, "pid": "4685", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/18102540X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102293891"} 3 -2023-07-08 08:21:29.426733 2023-07-08 10:26:15.030455 b6877889-a480-490f-90e9-6379f722cbd6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089160305"}, "pid": "4686", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/181054825"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104042374"} 3 -2023-07-08 08:21:28.228408 2023-07-08 10:26:31.536887 120b3830-dfa5-4545-9195-82b45a2cc523 {"pid": "4673", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/178642932"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104933814"} 2 -2023-07-08 08:21:27.920277 2023-07-08 10:30:51.818809 a3005206-8158-4428-b593-a8ba760e57ab {"pid": "4670", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/178131059"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11158041"} 2 -2023-07-08 08:16:29.785896 2023-07-08 10:31:12.860601 317a0fc1-cb58-4615-8c5f-e18e58090cdc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1228546541"}, "pid": "1759", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/178750166"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112014426"} 4 -2023-07-08 08:21:30.820448 2023-07-08 08:21:30.820457 59f0475e-da7c-4dd6-a99b-576faddbe11d {"pid": "4701", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/183243641"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:30.924106 2023-07-08 08:21:30.924112 f267e10f-2cfc-4c9b-a49f-c90ec64ffa68 {"pid": "4702", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/183245504"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:31.022976 2023-07-08 08:21:31.022984 8891a529-6ae2-4815-89ba-ca46601e1424 {"pid": "4703", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/183295765"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:31.120636 2023-07-08 08:21:31.120644 4feb620c-6910-4303-9dd0-ebfcb63e3fa5 {"pid": "4704", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/183379861"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:31.222037 2023-07-08 08:21:31.222049 a9469061-fb1b-4e49-9ceb-2f1069922c62 {"pid": "4705", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/183426967"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:31.357314 2023-07-08 08:21:31.35732 9ac2421a-4881-49e4-9290-cb91f89f290d {"pid": "4706", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/183511956"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:31.603595 2023-07-08 08:21:31.603601 c4d64fe1-87c2-4127-8f14-c06865f07fbe {"pid": "4707", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/183723341"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:31.697518 2023-07-08 08:21:31.697525 2ee50e8e-1bc5-4e26-839b-1f119ff5baad {"pid": "4708", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/183871065"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:31.785466 2023-07-08 08:21:31.785471 22cc138f-ae7a-47a8-bf75-27b85dcde04c {"pid": "4709", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/18397574X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:31.86369 2023-07-08 08:21:31.863694 567b0b4a-896d-4fe1-83fd-bef9657a6e07 {"pid": "4710", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/184093546"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:31.953203 2023-07-08 08:21:31.953213 5c16e10a-e6c3-4ab3-81c7-56f824b39b94 {"pid": "4711", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/18439631X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:32.044689 2023-07-08 08:21:32.044693 75761961-4115-4deb-ace1-76aa3e383798 {"pid": "4712", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/184529891"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:32.113897 2023-07-08 08:21:32.113902 a09f54e0-4ffc-4613-a90c-1b19b43b4061 {"pid": "4713", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/184614686"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:32.200204 2023-07-08 08:21:32.200213 34032cc5-dab5-4e5c-a25c-51e38eb4954a {"pid": "4714", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/184909961"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:32.286542 2023-07-08 08:21:32.286551 919fd4e2-a1c3-45f1-988e-d382d501a710 {"pid": "4715", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/185067050"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:32.486199 2023-07-08 08:21:32.486207 4abbc941-3312-4c52-824f-56b93aa1ce6b {"pid": "4717", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/185152023"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:32.574442 2023-07-08 08:21:32.574445 14210ed3-d77b-4e7c-978b-98badd400292 {"pid": "4718", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/185165249"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:32.75118 2023-07-08 08:21:32.75119 cc7fb429-fd95-4f6d-8df5-d937827efa11 {"pid": "4720", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/18526557X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:32.942489 2023-07-08 08:21:32.942494 e1ce69ea-07d2-420f-bfe5-365f70308ac7 {"pid": "4722", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/185446167"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:33.022854 2023-07-08 08:21:33.022858 d365848b-caef-4794-b083-c65ad2a7bd7a {"pid": "4723", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/185446221"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:33.092835 2023-07-08 08:21:33.09284 793864c8-ef42-4e50-8126-e84effa309bb {"pid": "4724", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/185512461"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:33.191408 2023-07-08 08:21:33.191414 5513ba6f-3738-41ca-a388-f1833e3f387d {"pid": "4725", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/185627935"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:33.287889 2023-07-08 08:21:33.287899 f9f99757-6ee6-4db1-85a0-54a43f8768b9 {"pid": "4726", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/185740936"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:33.377279 2023-07-08 08:21:33.377288 5a5bdf48-7cc0-4b92-9fc2-35ef06e2adf2 {"pid": "4727", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/185904300"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:33.464135 2023-07-08 08:21:33.464145 99739eb7-fa2d-4b66-80ce-368c05fa65c1 {"pid": "4728", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/186075480"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:33.544969 2023-07-08 08:21:33.544974 d98634d9-1873-40cd-b9c1-0fa2a14c46eb {"pid": "4729", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/186152396"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:33.630025 2023-07-08 08:21:33.630036 f93512d5-0136-467d-83f4-d926b9302319 {"pid": "4730", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/186272758"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:32.662125 2023-07-08 10:24:25.55328 b5968061-c0c9-4476-913d-92d2743b940f {"pid": "4719", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/185264352"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101200139"} 2 -2023-07-08 08:21:30.699639 2023-07-08 10:26:44.458043 5f90d8e9-6ac5-4dc7-bcd9-71f20f90ebeb {"pid": "4700", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/182842819"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105411731"} 2 -2023-07-08 08:21:32.848963 2023-07-08 10:30:08.307632 716a2a1e-98b7-4af8-8fc2-4f426f7761d1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134274458"}, "pid": "4721", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/18530396X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11060751"} 3 -2023-07-08 08:21:33.714356 2023-07-08 08:21:33.714364 026b075f-8de5-405f-a185-db87cea5e742 {"pid": "4731", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/186354614"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:33.793679 2023-07-08 08:21:33.793682 f4ba8d32-aa10-4619-8360-1e229f6269b6 {"pid": "4732", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/18642597X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:33.881767 2023-07-08 08:21:33.881775 014342cd-a9ff-459d-b3b9-f1a2c6d1e28e {"pid": "4733", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/186429495"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:33.963782 2023-07-08 08:21:33.963792 84b181c0-1db7-42ff-9a24-48603e1afae4 {"pid": "4734", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/187118914"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:34.0489 2023-07-08 08:21:34.048904 4c9ba032-8c9c-4214-9ae3-d67ed9b43d57 {"pid": "4735", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/187432627"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:34.133313 2023-07-08 08:21:34.13332 f86c09c5-d1a3-4a78-8170-833e9b246b55 {"pid": "4736", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/187440085"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:34.326292 2023-07-08 08:21:34.326305 36e46438-9b43-464d-ac90-c05e8ec8fcf9 {"pid": "4738", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/187512272"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:34.406771 2023-07-08 08:21:34.406788 63c8d0b9-615d-4428-b4a5-b9bd7e5b7956 {"pid": "4739", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/187515441"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:34.499866 2023-07-08 08:21:34.499879 58fcad81-28eb-4e44-9d36-90abb052ff5b {"pid": "4740", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/187519374"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:34.652506 2023-07-08 08:21:34.652509 365835f0-4ae5-4ec2-befa-a337f75a5bbf {"pid": "4742", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/188048383"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:34.721467 2023-07-08 08:21:34.721472 2fe31dfc-4b6a-4471-aeb6-bf497dff82ab {"pid": "4743", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/188624295"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:34.904075 2023-07-08 08:21:34.904084 221b26d3-c673-4f7f-8f0f-7f5b13419a73 {"pid": "4745", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/188721665"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:35.001278 2023-07-08 08:21:35.001285 d1ce2742-0c87-4a8b-a8c4-554aceee8650 {"pid": "4746", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/188848614"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:35.165231 2023-07-08 08:21:35.165239 a2effee8-82f0-45c7-943e-0f9e5eae9a66 {"pid": "4747", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/189006161"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:35.251002 2023-07-08 08:21:35.251013 3fe9e045-26b6-4555-9d17-a55ec11f5ee3 {"pid": "4748", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/189240113"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:35.342249 2023-07-08 08:21:35.342258 85c61943-9422-413f-8aa4-435e423c1bf7 {"pid": "4749", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/189252138"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:35.429991 2023-07-08 08:21:35.430141 74e04da8-55a7-457c-9ebe-7a279ac09a25 {"pid": "4750", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/189322454"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:35.512381 2023-07-08 08:21:35.512388 195d804b-42dc-4c31-a168-251d75f8bc6a {"pid": "4751", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/189510145"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:35.703151 2023-07-08 08:21:35.703161 e8ea32b5-8ddd-4633-a690-a2701888cd0e {"pid": "4753", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/189897678"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:35.799763 2023-07-08 08:21:35.799768 be3933ab-db87-4f4c-9fe7-ba67262b5c16 {"pid": "4754", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/189921080"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:35.967088 2023-07-08 08:21:35.967095 8bdd8483-506f-4064-b52f-f80df7a316d0 {"pid": "4756", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/190056002"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:36.053441 2023-07-08 08:21:36.053444 70b40ed2-c928-446d-99fb-a93e04ea8d26 {"pid": "4757", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/190064323"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:36.247747 2023-07-08 08:21:36.24775 6fa760f5-a1f8-4d31-a679-9f7b6528a0f5 {"pid": "4759", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/190133139"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:36.349632 2023-07-08 08:21:36.34964 051cc832-40a1-4d79-9f8b-a00359f174d1 {"pid": "4760", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/190148667"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:35.880192 2023-07-08 10:30:36.864191 eff58860-2a9f-4967-bcef-671e398b2ef5 {"pid": "4755", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025926750"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/190050721"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11144928026454340638"} 4 -2023-07-08 08:21:34.817044 2023-07-08 10:23:30.019067 0a670583-5ac7-43e0-95c6-364a403150f7 {"pid": "4744", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/188652647"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10001407"} 2 -2023-07-08 08:21:34.231157 2023-07-08 10:29:43.862025 ceb92b70-4536-4881-9b85-41ea9a4237d0 {"pid": "4737", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/187474192"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110154739914152992060"} 2 -2023-07-08 08:15:44.275596 2023-07-08 10:25:58.024807 1f3b2386-86df-4b7b-941b-0812b659630d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1147141754"}, "pid": "1322", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/18897394X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103500646"} 4 -2023-07-08 08:21:35.601509 2023-07-08 10:29:58.838845 b88cd541-40f0-42cb-a20a-847a199be3e4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1164996517"}, "pid": "4752", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/189789581"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110493599"} 3 -2023-07-08 08:21:36.459152 2023-07-08 08:21:36.459161 a5da1d8d-c9e7-44ad-8a89-7eb24f983808 {"pid": "4761", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/19024951X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:36.550247 2023-07-08 08:21:36.550251 89ff1987-e003-47d8-8d8d-59e4e5539b0d {"pid": "4762", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/190365420"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:36.735032 2023-07-08 08:21:36.73504 da9827ae-360d-4c60-851e-3c653cff7147 {"pid": "4764", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/190408413"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:36.825077 2023-07-08 08:21:36.825086 956c724c-a0e6-471c-90a2-98d0d5b2000c {"pid": "4765", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/190629525"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:36.903005 2023-07-08 08:21:36.903017 7ae915d2-653d-4d1e-a13c-d86819349671 {"pid": "4766", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/190679204"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:36.99372 2023-07-08 08:21:36.993725 f611ab7a-51ba-478e-9d1a-cff335e11558 {"pid": "4767", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/190701285"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:37.067833 2023-07-08 08:21:37.067835 58f771fd-c2ec-4afb-be01-e3b9e63ea04d {"pid": "4768", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/190708085"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:37.135729 2023-07-08 08:21:37.135737 a87b7fc5-bda0-4d67-ad5a-8c3a8345d4fa {"pid": "4769", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/190712120"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:37.236871 2023-07-08 08:21:37.236878 22e59906-dbb4-4bde-b78c-034263c99519 {"pid": "4770", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/190913142"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:37.331838 2023-07-08 08:21:37.331845 f0e0bb69-1094-4ac1-9122-41de46735a1a {"pid": "4771", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/19105254X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:37.427474 2023-07-08 08:21:37.427483 a7434dc7-77b6-4a2f-b649-4795429f402c {"pid": "4772", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/191057142"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:37.627711 2023-07-08 08:21:37.627723 2a69a1f7-e539-4db9-9c0d-d1020c5d5d9c {"pid": "4774", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/191305928"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:37.71715 2023-07-08 08:21:37.717157 02d6fa8d-d764-48ed-b6c6-3e20320ad6c2 {"pid": "4775", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/191591335"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:37.822471 2023-07-08 08:21:37.822482 5d7032d1-4181-4cb8-b630-2267ab466029 {"pid": "4776", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/191603449"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:37.920242 2023-07-08 08:21:37.920254 c4a3f3ad-bc4d-4f1e-a6b4-befffba59e6b {"pid": "4777", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/191644315"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:38.010734 2023-07-08 08:21:38.010746 32f8f94f-5956-4c13-84fa-4451bcdbb1d9 {"pid": "4778", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/191710849"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:38.107741 2023-07-08 08:21:38.107746 fca6204e-2551-4e6a-aaa5-a7526c919a6a {"pid": "4779", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/191721166"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:38.409861 2023-07-08 08:21:38.409865 10ebabc9-9b87-4602-8fef-17289bb02030 {"pid": "4781", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/192166506"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:38.500968 2023-07-08 08:21:38.50098 d622741c-8d65-4c26-a4a9-bb49e2b2a867 {"pid": "4782", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/192198149"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:38.598537 2023-07-08 08:21:38.598546 c1053672-a964-4153-a465-0c138eb04b20 {"pid": "4783", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/192269097"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:38.68612 2023-07-08 08:21:38.686127 9ce4208d-b0f7-469d-a76d-b7ff960ede99 {"pid": "4784", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/192280953"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:38.898912 2023-07-08 08:21:38.898919 fe7a9a5c-0813-4e96-a750-9fd0998f6471 {"pid": "4786", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/192319116"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:38.986776 2023-07-08 08:21:38.986783 ef628234-c6c8-442d-bf4d-5d631a6d4058 {"pid": "4787", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/19239486X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:39.064106 2023-07-08 08:21:39.064112 60f85faa-50ae-4122-8616-3e1dc6c53718 {"pid": "4788", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/192408909"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:39.136341 2023-07-08 08:21:39.13635 317b657e-e5b3-4306-8aca-3f20d0b05af5 {"pid": "4789", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/192529641"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:39.227643 2023-07-08 08:21:39.227647 1fc0ce0e-813c-4ee9-bf22-ddf4b8d677e9 {"pid": "4790", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/192628496"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:38.796923 2023-07-08 10:24:40.038026 97548dcc-2810-4b3a-9d02-e85f823612a3 {"pid": "4785", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/192298348"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10146030647535862820"} 2 -2023-07-08 08:21:38.322622 2023-07-08 10:30:22.033424 82c45793-d966-456a-b3a4-caf6bfd4556a {"pid": "4780", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/192012401"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111146029642635822754"} 2 -2023-07-08 08:21:36.637741 2023-07-08 10:31:17.132184 2cedf628-c863-417a-b781-6392847b12b7 {"pid": "4763", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/190401370"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112145243839574441124"} 2 -2023-07-08 08:21:39.321646 2023-07-08 08:21:39.321658 7c90002a-0b43-4c38-9082-819a7b6eadbf {"pid": "4791", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/192640895"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:39.435517 2023-07-08 08:21:39.435527 73fbcd49-3682-4012-a3ba-355ac95f3482 {"pid": "4792", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/192658697"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:39.642397 2023-07-08 08:21:39.642406 0bc794ba-a6c1-4577-934e-41b065ade86a {"pid": "4794", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/192790099"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:39.830724 2023-07-08 08:21:39.830736 fb7993fe-a032-4a01-947e-d06d8300871f {"pid": "4796", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/192883313"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:39.916847 2023-07-08 08:21:39.916851 b04d5791-8e82-4b71-8019-f49d6b7e6757 {"pid": "4797", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/192969285"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:40.099417 2023-07-08 08:21:40.09942 c6cb84f1-9547-4499-b1c7-94623bd6724d {"pid": "4799", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/193173328"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:40.30897 2023-07-08 08:21:40.308978 7156e321-a261-43d4-886b-db74e30028c5 {"pid": "4800", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/193183226"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:40.398291 2023-07-08 08:21:40.398302 c050353f-3f6d-4664-bfbc-12ff8b7e1541 {"pid": "4801", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/193223287"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:40.600275 2023-07-08 08:21:40.600283 b71b8cee-59c3-481a-96c7-f706ad9b6786 {"pid": "4803", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/193284065"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:40.894434 2023-07-08 08:21:40.894441 55d850e9-e431-4b89-8c50-f4ed01e351cc {"pid": "4806", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/193585057"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:41.074741 2023-07-08 08:21:41.074745 f70464ac-53e4-459a-af0b-69389edb08cf {"pid": "4808", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/193736063"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:41.352967 2023-07-08 08:21:41.35297 3a6cd6aa-49ab-4ae4-b6aa-dbea01a6005a {"pid": "4811", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/193825813"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:41.437418 2023-07-08 08:21:41.437427 89eb856b-78b7-4186-81ed-0f0a941754b6 {"pid": "4812", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/193876191"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:41.62771 2023-07-08 08:21:41.627717 5ca683a7-e478-4085-a697-abe337acce08 {"pid": "4814", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/193982269"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:41.714218 2023-07-08 08:21:41.714226 930505ca-6b73-4b59-b343-05435080aee1 {"pid": "4815", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/194122603"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:41.801289 2023-07-08 08:21:41.801298 753a1903-68ef-495d-b771-72a309b67d2d {"pid": "4816", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/194162419"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:41.892415 2023-07-08 08:21:41.892419 f91e4a26-bd3a-4317-8cbb-19ad17c36cc8 {"pid": "4817", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/194167070"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:42.090781 2023-07-08 08:21:42.090785 526b35a6-dd51-4ee8-af43-8abbd41cd679 {"pid": "4819", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/194503941"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:42.195397 2023-07-08 08:21:42.195402 9af8ab9c-ef7e-4da0-ad28-b98598ffa6cd {"pid": "4820", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/194564932"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:42.001013 2023-07-08 10:26:16.461385 98461a96-e397-44f8-b0b7-e5f6ade81515 {"pid": "4818", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/194445089"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104147093713725001419"} 2 -2023-07-08 08:21:41.178343 2023-07-08 10:27:26.516697 cd1f1ffd-d689-4813-9459-f5847c3cdf88 {"pid": "4809", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/193779587"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107043718"} 2 -2023-07-08 08:21:40.701274 2023-07-08 10:27:30.389466 59e31678-6ac5-4a74-bfb2-00651cea4c81 {"pid": "4804", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/19329074X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107146573864638100904"} 2 -2023-07-08 08:21:41.546604 2023-07-08 10:27:30.7789 feb33beb-053a-4cf7-9251-0929be26ebba {"pid": "4813", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/193955482"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107146822214107381212"} 2 -2023-07-08 08:21:39.736913 2023-07-08 10:27:50.706558 6630ce77-18d2-4eda-b848-e28814d6af6a {"pid": "4795", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/192856200"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1075146284374415331082"} 2 -2023-07-08 08:21:40.498172 2023-07-08 10:30:22.409362 0b34fdf5-a3c1-41a7-bced-aa34900db7f1 {"pid": "4802", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/193276348"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111146573871738101187"} 2 -2023-07-08 08:21:41.27505 2023-07-08 10:30:32.823698 2bd905e8-e9ba-4d11-8881-71a74f1100b3 {"pid": "4810", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/193809699"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1112156858617449780001"} 2 -2023-07-08 08:21:40.025559 2023-07-08 10:31:17.490474 84a69b28-812e-43a4-b002-0450595b3fda {"pid": "4798", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/193161109"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112146573785438100465"} 2 -2023-07-08 08:21:40.993088 2023-07-08 10:31:17.863149 52c9fa60-f1b6-4eab-ac3f-34b90b0f23a6 {"pid": "4807", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/193705974"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112146822167807380905"} 2 -2023-07-08 08:21:40.791744 2023-07-08 10:31:18.225454 c0aaf242-aab1-4ae9-9801-7c9cc0b7a074 {"pid": "4805", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/193499975"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112146822307607381911"} 2 -2023-07-08 08:21:42.298198 2023-07-08 08:21:42.298201 d8fcbe9e-09a5-4d2b-9189-82617c995afa {"pid": "4821", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/194577058"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:42.428032 2023-07-08 08:21:42.42804 b15cf988-5493-44d6-b044-d52be9b0f2f3 {"pid": "4822", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/194588718"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:42.513179 2023-07-08 08:21:42.513188 980a05a0-0ced-4982-a202-09c0661139cf {"pid": "4823", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/194616320"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:42.590914 2023-07-08 08:21:42.59092 c405d0ef-1ac6-4265-9057-69c700034deb {"pid": "4824", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/194625036"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:42.670182 2023-07-08 08:21:42.670189 e62d3fe0-cb6e-416a-bfab-573cd62f69a5 {"pid": "4825", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/194925625"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:42.762813 2023-07-08 08:21:42.762817 b9b9e5ca-98b9-4af1-8997-6dddb58a756a {"pid": "4826", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/195021371"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:42.974654 2023-07-08 08:21:42.974664 b5f07ba2-a6be-41fe-aae1-7c21c2d373ea {"pid": "4828", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/195247922"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:43.062675 2023-07-08 08:21:43.062678 6ef5a2f1-dd76-4d4e-869a-fb3813d35c82 {"pid": "4829", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/195263472"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:43.155202 2023-07-08 08:21:43.15521 370f78a9-aabf-41f9-8e5e-412d980148f3 {"pid": "4830", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/195274059"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:43.23904 2023-07-08 08:21:43.239044 be851476-366a-4826-8ce0-9366a1f73d6c {"pid": "4831", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/195276205"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:43.327053 2023-07-08 08:21:43.327057 5cf5a765-a631-4a33-9b35-31af80a59eca {"pid": "4832", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/195286227"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:43.530356 2023-07-08 08:21:43.530364 4daad31a-4f68-4131-9b21-17e9c9a8f140 {"pid": "4834", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/195370317"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:43.615477 2023-07-08 08:21:43.615485 6c5d8747-c530-4b77-9161-88657f4013cf {"pid": "4835", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/195403460"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:43.696295 2023-07-08 08:21:43.696298 a086d971-fc67-40b8-bcd3-e655aa0f5a40 {"pid": "4836", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/195430662"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:43.771294 2023-07-08 08:21:43.771302 10bb1ba4-b58d-414e-b472-0ae6f33138f4 {"pid": "4837", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/19544504X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:43.86597 2023-07-08 08:21:43.865978 35ccb1ae-adf0-40a3-b89f-4a1a26f0e094 {"pid": "4838", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/195458575"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:44.068723 2023-07-08 08:21:44.068726 4e3f5ff3-5806-44d7-9997-64b8ee5b4dd8 {"pid": "4840", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/195544439"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:44.154544 2023-07-08 08:21:44.154553 d553889f-3e09-40ba-b385-58169a06233f {"pid": "4841", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/195555228"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:44.243751 2023-07-08 08:21:44.243759 51d12666-34b5-4c2d-852f-6b916ecf174b {"pid": "4842", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/195708814"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:44.333834 2023-07-08 08:21:44.333843 785acc71-d08a-4258-831f-4647300caa36 {"pid": "4843", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/195713133"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:44.419787 2023-07-08 08:21:44.419796 3eb5802f-7ca8-4f99-8699-1507fc915166 {"pid": "4844", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/195791258"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:44.507516 2023-07-08 08:21:44.507523 f657204c-3800-43df-a380-e3aef2d537fc {"pid": "4845", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/195824431"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:44.589028 2023-07-08 08:21:44.589032 9dd11482-b30f-4716-8203-dc125e94b4ca {"pid": "4846", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/195941942"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:44.657151 2023-07-08 08:21:44.657155 ac3642a8-787a-4cf1-af2d-44304149b254 {"pid": "4847", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196095700"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:44.72743 2023-07-08 08:21:44.727434 c49a18e5-e28e-4375-a39e-74d22368260e {"pid": "4848", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196155487"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:44.814702 2023-07-08 08:21:44.814712 d43dfe70-0cb1-423c-8a5f-744244d7f475 {"pid": "4849", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196254795"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:44.909478 2023-07-08 08:21:44.909482 5fe69987-b686-4c9c-8752-d3e5e004248b {"pid": "4850", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196282411"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:45.008137 2023-07-08 08:21:45.008146 f2d48c65-5f44-4a30-acc2-cae38751e6aa {"pid": "4851", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196313910"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:43.437567 2023-07-08 10:26:35.756103 13281496-72f4-4fee-9632-5865d4183fa1 {"pid": "4833", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/19529534X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105147602547657641154"} 2 -2023-07-08 08:21:42.868275 2023-07-08 10:31:18.578806 5eabf746-ee9a-4d01-b495-2159f3c9eb13 {"pid": "4827", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/195226267"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112147602664457642278"} 2 -2023-07-08 08:21:45.086211 2023-07-08 08:21:45.086213 40ea0696-c6a7-4c82-b11a-79ecf8ed13f4 {"pid": "4852", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196337208"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:45.171541 2023-07-08 08:21:45.171548 2211154d-834d-4e10-bc38-e35e4c78719a {"pid": "4853", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196341280"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:45.272159 2023-07-08 08:21:45.27217 7d3259f7-1d45-46c6-bdf2-c53954d8c34a {"pid": "4854", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196405750"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:45.362507 2023-07-08 08:21:45.362517 365c1049-f7f1-4b59-b1de-72d83934f125 {"pid": "4855", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196409500"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:45.576083 2023-07-08 08:21:45.57609 75b1e838-8d79-4967-957d-d9936b3e6be1 {"pid": "4857", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196435099"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:45.657808 2023-07-08 08:21:45.657811 a90718f1-46dd-4059-97b5-8b9137eef8c8 {"pid": "4858", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196452341"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:45.76355 2023-07-08 08:21:45.763562 c4649670-f2fb-4e57-9c3d-ed92087f7d36 {"pid": "4859", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196511275"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:45.856418 2023-07-08 08:21:45.856427 00d752a8-1241-4900-ade4-7feefd4ff8a0 {"pid": "4860", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196538637"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:45.950708 2023-07-08 08:21:45.950711 ffebabe6-5468-495a-ad88-d396ed87d3ed {"pid": "4861", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196539102"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:46.042281 2023-07-08 08:21:46.04229 ee1df41b-8aa6-467f-9c7a-1760591b366f {"pid": "4862", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196540429"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:46.137459 2023-07-08 08:21:46.137466 ccb7401d-8f6a-4ae0-b4b1-e46c4b637939 {"pid": "4863", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196575214"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:46.237741 2023-07-08 08:21:46.237744 d6347a9a-e42b-412f-8bcb-4f48a567c2c1 {"pid": "4864", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196694531"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:46.336227 2023-07-08 08:21:46.336236 cc21adea-1270-4806-82da-0de52ab023be {"pid": "4865", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196706831"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:46.441849 2023-07-08 08:21:46.441865 d4eb66df-4ad6-4f6a-b125-f023cab13d07 {"pid": "4866", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196728711"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:46.538127 2023-07-08 08:21:46.538139 64e5ac07-9668-4e49-8d1e-9e82079b47de {"pid": "4867", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196814944"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:46.615023 2023-07-08 08:21:46.615027 8c39e616-99b2-4a24-886c-f81d0c143213 {"pid": "4868", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196859883"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:46.694339 2023-07-08 08:21:46.694347 602ab61a-9ab5-4fcc-ac66-6ce741782068 {"pid": "4869", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196887429"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:46.790623 2023-07-08 08:21:46.790632 d0a29702-a40d-4081-912d-8ac27d68d3ae {"pid": "4870", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/197014984"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:46.885225 2023-07-08 08:21:46.885232 2f39e36f-d2a7-4b08-a793-580a3c4c3994 {"pid": "4871", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/197035167"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:46.965175 2023-07-08 08:21:46.965184 fb9b8a2c-6d76-40ac-b242-d4fc35739f9e {"pid": "4872", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/197073077"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:47.056053 2023-07-08 08:21:47.05606 8cd2a988-4939-418c-a05d-1b083a55f649 {"pid": "4873", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/197115047"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:47.14367 2023-07-08 08:21:47.143678 3c1912ea-6b45-4a76-b2ab-f5eab4f2178f {"pid": "4874", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/197132588"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:47.231382 2023-07-08 08:21:47.231392 098529b7-1ad7-43cb-b252-781df209aba4 {"pid": "4875", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/197226809"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:47.320225 2023-07-08 08:21:47.320237 482967f5-a39b-40c8-bae7-fc29646d8cb5 {"pid": "4876", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/197280544"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:47.417499 2023-07-08 08:21:47.417506 85cde1d8-9bc1-43c6-8dad-1a6e02d78660 {"pid": "4877", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/197391648"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:47.509309 2023-07-08 08:21:47.509323 4fe8c719-1f13-431b-aee8-441ab9bc2115 {"pid": "4878", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/197394795"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:47.602815 2023-07-08 08:21:47.602818 71d835d9-c130-4ce4-aad3-13215c84e68d {"pid": "4879", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/197444067"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:47.670899 2023-07-08 08:21:47.670902 933ac7ca-b1b2-45b0-8c0e-179dd1cd1f92 {"pid": "4880", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/197444881"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:47.757719 2023-07-08 08:21:47.757726 57d94e09-cabc-4a75-95b5-1da0ea8694b2 {"pid": "4881", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/197511392"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:47.848419 2023-07-08 08:21:47.848428 9cc2fc57-4742-47d9-903f-de2c6dfb3d28 {"pid": "4882", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/197533590"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:47.927708 2023-07-08 08:21:47.927715 95bb5d42-5457-46e7-8ee6-c2b5cdac3e54 {"pid": "4883", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/197593968"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:48.011711 2023-07-08 08:21:48.01172 ff78e773-0a57-472c-b780-c175f15ebaea {"pid": "4884", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/197623549"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:48.090314 2023-07-08 08:21:48.090319 89cb3381-460c-4d44-8752-75edb629d8a0 {"pid": "4885", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/197687717"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:48.179491 2023-07-08 08:21:48.179498 e1e72c59-8ed9-40f9-91ce-320834c8c0a4 {"pid": "4886", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/197696597"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:48.268425 2023-07-08 08:21:48.268433 f3bda74d-9d57-4d6d-ae3d-f6da68ea4982 {"pid": "4887", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/197997961"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:48.541963 2023-07-08 08:21:48.541968 b9e693fe-8edb-4e91-98b7-e8610bea02b0 {"pid": "4890", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/198395361"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:48.611874 2023-07-08 08:21:48.611876 18ff21d1-35ff-4563-a767-64229faa5a8c {"pid": "4891", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/198493231"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:48.684526 2023-07-08 08:21:48.68453 df428bf9-df1e-47d5-ba31-2b77a3ab49a9 {"pid": "4892", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/198494289"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:48.863359 2023-07-08 08:21:48.863363 734827bc-0285-4fad-9a5c-6d9870fb51b1 {"pid": "4894", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/19870125X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:49.121701 2023-07-08 08:21:49.121704 f2fa6edd-23f1-4aa1-8b91-1c6c3a0e3248 {"pid": "4897", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/19915631X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:49.212482 2023-07-08 08:21:49.212497 5e407dfb-25ee-4a26-9a13-4507091cbf25 {"pid": "4898", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/199168326"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:49.299554 2023-07-08 08:21:49.299564 81b1521f-f6c4-4492-a1d7-5cb27e617c49 {"pid": "4899", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/199187606"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:49.384406 2023-07-08 08:21:49.384409 2a0083ec-5599-4312-bb5e-7b13c75467ec {"pid": "4900", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/19921347X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:49.469243 2023-07-08 08:21:49.469252 f994509c-bdbe-4d54-9139-6a68bcecbf3d {"pid": "4901", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/199238324"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:49.547037 2023-07-08 08:21:49.547044 fedf0e49-8db6-4d2e-a1b9-2f431bc87c72 {"pid": "4902", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/199257213"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:49.703445 2023-07-08 08:21:49.703453 63e72dd2-53e7-4795-9808-637052f15ad7 {"pid": "4904", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/199336776"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:49.787887 2023-07-08 08:21:49.787891 894ad6e6-0da5-4f8d-b468-d1b88522f2af {"pid": "4905", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/199441863"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:49.86576 2023-07-08 08:21:49.865771 418b92b8-cee7-45a1-9d7c-65aa61635ec1 {"pid": "4906", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/199452857"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:49.950584 2023-07-08 08:21:49.950593 06d7d719-2979-4b3a-8e1e-a1135c670e1e {"pid": "4907", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/199464669"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:50.037666 2023-07-08 08:21:50.037675 ce66132a-5858-492b-9ef4-115f714bdb3e {"pid": "4908", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/19954770X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:50.119018 2023-07-08 08:21:50.119021 383c06d3-7592-4524-b038-79e3c1a85228 {"pid": "4909", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/199555907"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:50.202191 2023-07-08 08:21:50.202196 065e86b5-85a6-49e4-ba92-c82d335be3fb {"pid": "4910", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/19960097X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:50.36463 2023-07-08 08:21:50.364633 c6d557c4-71fb-40df-97ce-e001c7d9f9f3 {"pid": "4912", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/199716498"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:50.542818 2023-07-08 08:21:50.542829 9b1b30a6-7a3b-4e08-9718-d31678debc32 {"pid": "4914", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/199749736"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:49.048762 2023-07-08 10:23:44.083287 1d8c5b4c-8baa-494f-992f-f1c8d091ac20 {"pid": "4896", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012329066"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/199119961"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100272267"} 4 -2023-07-08 08:21:50.45543 2023-07-08 10:25:06.848334 4ec2531f-b588-47bd-bde5-1e087ef16c6a {"pid": "4913", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/199742022"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102149717632910952374"} 2 -2023-07-08 08:21:48.785355 2023-07-08 10:26:36.155768 608cf3ff-9d6c-4a73-85c6-e74ff999b38c {"pid": "4893", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/19859318X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105148933547054300834"} 2 -2023-07-08 08:21:49.618957 2023-07-08 10:26:36.55632 b155322e-200f-4222-9cf5-ad2ce99e586e {"pid": "4903", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/199258813"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105149717315710950076"} 2 -2023-07-08 08:21:48.954225 2023-07-08 10:26:36.92255 315f4e8e-66bf-46d0-83ae-f7c29e8c15cc {"pid": "4895", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/199108617"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105149717325010950335"} 2 -2023-07-08 08:21:50.293938 2023-07-08 10:27:31.491992 6efc3978-4121-4dad-bd11-3c6d5fb91876 {"pid": "4911", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/199679150"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107149717319710950386"} 2 -2023-07-08 08:21:50.624618 2023-07-08 08:21:50.624621 d684d102-196f-49c8-be51-82a3e3465420 {"pid": "4915", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/199777381"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:50.819104 2023-07-08 08:21:50.819112 59bb1474-0711-4999-98eb-25ebcaf3c9ea {"pid": "4917", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/200127748"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:50.909284 2023-07-08 08:21:50.909287 4dc22c94-219e-4fa7-93c1-dc5d26ac2702 {"pid": "4918", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/200138766"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:51.100856 2023-07-08 08:21:51.100859 40651c41-8ac5-4113-9a9d-4334625e2d94 {"pid": "4920", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/200238574"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:51.194683 2023-07-08 08:21:51.194691 aa670763-8e69-4e52-9d23-a6caca5b434a {"pid": "4921", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/200252933"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:51.298205 2023-07-08 08:21:51.298209 7ba3caf6-9028-4039-a3db-2be4981e5557 {"pid": "4922", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/200400525"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:51.505374 2023-07-08 08:21:51.505382 565c2c2c-31ee-4e01-976f-f242c03d0315 {"pid": "4924", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/200480111"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:51.65221 2023-07-08 08:21:51.652213 8cc07746-2676-4cb9-8a67-ff92c3b5429d {"pid": "4925", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/200480391"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:51.797977 2023-07-08 08:21:51.797979 9f32e17d-0aa5-4c16-a914-e598ea334f5b {"pid": "4927", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/200524925"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:51.877325 2023-07-08 08:21:51.877331 c6595dcb-5484-46cb-b1ea-d6d80fc719fe {"pid": "4928", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/200581627"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:51.956453 2023-07-08 08:21:51.956456 fb6b0dad-46b9-4800-ac8a-93212f9978d7 {"pid": "4929", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/200646788"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:52.131546 2023-07-08 08:21:52.13156 6c2a1461-7d0a-441c-b021-c2645b00ebe8 {"pid": "4931", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/20071659X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:52.23581 2023-07-08 08:21:52.235822 03e15e44-4242-4890-aa9c-f59196572441 {"pid": "4932", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/200723421"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:52.322565 2023-07-08 08:21:52.322574 65b5a57e-82cf-4dd0-a318-fb3956bf2080 {"pid": "4933", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/20082807X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:52.411275 2023-07-08 08:21:52.411282 99568444-4a2e-4ea5-9c34-978a34a637e9 {"pid": "4934", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/201287617"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:52.505441 2023-07-08 08:21:52.50545 20f7c3c1-e60c-44b1-bf3f-c9cf597f88c1 {"pid": "4935", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/201289377"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:52.587049 2023-07-08 08:21:52.587052 3dafc0d1-d074-4cae-a5f7-765dd6eb1d1f {"pid": "4936", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/201301040"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:52.666269 2023-07-08 08:21:52.666278 c882fc6c-1ff8-4b50-a0f1-659c9df1756c {"pid": "4937", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/201306824"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:52.765922 2023-07-08 08:21:52.765933 7faf0f22-b170-40e1-be77-7f4b028ce1b5 {"pid": "4938", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/201480034"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:52.940288 2023-07-08 08:21:52.940298 96c689f1-c415-46e6-b302-856268afd0a4 {"pid": "4940", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/201643936"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:53.03055 2023-07-08 08:21:53.030557 0b39a8e8-8de9-4f22-b377-8ec44b4d44ce {"pid": "4941", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/201672618"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:53.108015 2023-07-08 08:21:53.108024 eba59161-1f2d-4c0e-b0b3-2dcee178b648 {"pid": "4942", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/201683636"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:53.194494 2023-07-08 08:21:53.194512 e6dd8f85-534f-4a9d-bf61-2128d7794792 {"pid": "4943", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/20169106X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:53.275704 2023-07-08 08:21:53.275707 5949e53b-2fe5-40a3-9f24-a48e8679060b {"pid": "4944", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/201716461"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:53.360876 2023-07-08 08:21:53.360885 be1c8134-6f5c-419c-a15e-2c1aec4e1bee {"pid": "4945", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/201724588"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:50.713734 2023-07-08 10:25:06.452067 6ebfe147-3d99-4493-8c15-9d37eb976c22 {"pid": "4916", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/199828121"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102149717568510951522"} 2 -2023-07-08 08:21:52.038262 2023-07-08 10:27:31.92084 46fc7264-6424-4b5a-b6b1-32bafda43990 {"pid": "4930", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/200661531"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107149717334710950417"} 2 -2023-07-08 08:21:52.852099 2023-07-08 10:27:32.365705 f58a82a1-9e34-487a-bd1a-ae59abf0e61b {"pid": "4939", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/201609924"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107150565608906251400"} 2 -2023-07-08 08:21:51.728231 2023-07-08 10:29:01.408112 434ef0d4-fc4f-4912-a2fe-0f6eef5a66b8 {"pid": "4926", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/200497065"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109149717519010951405"} 2 -2023-07-08 08:21:51.402313 2023-07-08 10:31:43.23236 a49eeefe-c13c-42c9-af78-31572788a389 {"pid": "4923", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/200469169"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "113149717359910950242"} 2 -2023-07-08 08:21:53.444812 2023-07-08 08:21:53.444815 d2729a9c-3ca6-4a96-a907-e2ac36cdc225 {"pid": "4946", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/201753413"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:53.518671 2023-07-08 08:21:53.518674 ea85cf21-f63e-4486-85ad-e7a5aa1bae13 {"pid": "4947", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/201756463"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:53.677231 2023-07-08 08:21:53.677236 f3748584-0f2f-4d11-b472-394c1477bf35 {"pid": "4949", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/201790017"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:53.747834 2023-07-08 08:21:53.747837 85305f92-21d1-4f92-b3b0-787e1b08bcff {"pid": "4950", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/201827581"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:53.82983 2023-07-08 08:21:53.829835 5fe72432-a003-4c10-a1d4-5287d5377341 {"pid": "4951", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/201830507"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:53.913738 2023-07-08 08:21:53.913751 49af820a-0530-40ec-a8fc-0eb31415f22b {"pid": "4952", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/201849534"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:54.000822 2023-07-08 08:21:54.000831 95e2e5f0-85cd-4f11-bb75-34d1b9c8b90d {"pid": "4953", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/20185080X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:54.267511 2023-07-08 08:21:54.267514 301c0f21-4390-440d-8c5d-16657d319ca0 {"pid": "4956", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/202513645"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:54.333661 2023-07-08 08:21:54.333665 1b583cd0-2633-4524-bbae-30ac3d25aaa8 {"pid": "4957", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/202637417"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:54.662059 2023-07-08 08:21:54.662063 0713c512-9be4-4f4c-8560-6b4911ce9f42 {"pid": "4960", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/202745279"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:54.728135 2023-07-08 08:21:54.728139 3d9e436f-1463-464d-8fd3-5786bdcb38dd {"pid": "4961", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/202768740"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:54.882524 2023-07-08 08:21:54.882534 f8c4bcf9-6106-45a3-a644-ef128cf551a9 {"pid": "4963", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/202908097"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:55.083108 2023-07-08 08:21:55.083113 1150443f-b7cd-487a-9ee0-e1f88013405f {"pid": "4965", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/202987752"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:55.152943 2023-07-08 08:21:55.152947 bcddd3df-5433-405c-8357-6c7cd29ce433 {"pid": "4966", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/20307324X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:55.228767 2023-07-08 08:21:55.228771 ab6090df-c201-468b-a41f-ae583a887e72 {"pid": "4967", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/203079442"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:55.406244 2023-07-08 08:21:55.406247 d3b89d0e-819d-45d6-853c-bdcabb1207b9 {"pid": "4969", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/203121953"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:55.488311 2023-07-08 08:21:55.488322 68fc4866-0bf9-4849-a6db-ebcaae1390d9 {"pid": "4970", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/203168712"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:55.791087 2023-07-08 08:21:55.791092 098ab2b6-eced-40d8-ae0f-f34612193045 {"pid": "4973", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/203372514"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:55.862689 2023-07-08 08:21:55.862692 7354d616-6f65-4c85-8cd5-360a04723b69 {"pid": "4974", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/203387279"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:55.676491 2023-07-08 10:25:41.334495 e14d9a1c-6e97-4c69-aa6e-a3edaafc5145 {"pid": "4972", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/203359321"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103150565588906250372"} 2 -2023-07-08 08:21:54.427955 2023-07-08 10:25:41.698592 597b639b-9f76-4bf0-9464-9c72aaa48972 {"pid": "4958", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/202648087"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103150565728106251065"} 2 -2023-07-08 08:21:54.08787 2023-07-08 10:26:52.950059 9aae5875-801f-4521-9243-afc7fd43d65d {"pid": "4954", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/202400263"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1061150567601206370000"} 2 -2023-07-08 08:17:07.083436 2023-07-08 10:25:50.257735 37f13639-6a2a-4a1b-924e-38c3a2a87197 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139961968"}, "pid": "2136", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/202681793"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103283792"} 4 -2023-07-08 08:21:54.978455 2023-07-08 10:26:55.570942 359e3184-291e-41ad-bcf4-427da9ddf987 {"pid": "4964", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/202971511"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106150565600006250676"} 2 -2023-07-08 08:21:54.18176 2023-07-08 10:26:56.009153 df7a03d1-9598-4d86-ac8d-9cc786dece19 {"pid": "4955", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/202446573"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106150565731706251927"} 2 -2023-07-08 08:21:55.31718 2023-07-08 10:28:21.258334 bde7a37e-f841-42b0-8be4-e8c3513c5ebd {"pid": "4968", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/203120752"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108150565576206250917"} 2 -2023-07-08 08:21:55.586343 2023-07-08 10:29:01.713027 568b8953-f550-40b3-8136-d2adec0e5ccf {"pid": "4971", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/203351312"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109150565702706251791"} 2 -2023-07-08 08:21:54.595039 2023-07-08 10:29:19.516654 a39f1704-7000-4105-a378-6e9f64b8ffd6 {"pid": "4959", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/202685144"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109652682"} 2 -2023-07-08 08:21:54.795024 2023-07-08 10:30:23.294474 5af7f8c9-7ed8-4db6-9f10-ee5e730e6cfe {"pid": "4962", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/202773663"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111150565705006251651"} 2 -2023-07-08 08:21:55.937303 2023-07-08 08:21:55.937312 8aa1b4ce-45ff-45c8-b7ac-f32194ea0d86 {"pid": "4975", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/20354014X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:56.067552 2023-07-08 08:21:56.06756 b1037839-21e4-4909-816f-06d8ff522832 {"pid": "4976", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/203603141"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:56.187182 2023-07-08 08:21:56.187314 81394a2c-0a8d-4342-8993-14f27f79ad3d {"pid": "4977", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/203620941"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:56.315252 2023-07-08 08:21:56.315261 947e4e88-de52-4c4f-b07f-87c94ee19fda {"pid": "4978", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/203662997"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:56.395834 2023-07-08 08:21:56.395842 c082e7f0-510d-4d99-918c-a6c677d3fd1f {"pid": "4979", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/203861108"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:56.503832 2023-07-08 08:21:56.503841 520e3d51-c214-4dae-9b11-d2cd7a2e154e {"pid": "4980", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/203863232"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:56.628007 2023-07-08 08:21:56.628017 4caeb9ea-ea4c-422b-a091-5f285f2b189e {"pid": "4981", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/203926625"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:56.716362 2023-07-08 08:21:56.716373 6d5829c2-2422-46f3-9a0c-30871ec0159d {"pid": "4982", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/203929594"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:56.842729 2023-07-08 08:21:56.842739 98fa48b5-a2ec-4b5b-a370-ffe6a5d0f19c {"pid": "4983", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/203933036"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:56.957678 2023-07-08 08:21:56.957686 c4771049-1b87-41cf-a3b7-55a3c828cc71 {"pid": "4984", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/203935616"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:57.064598 2023-07-08 08:21:57.064607 936e578b-68ec-4db3-94b2-f8de611d6e0b {"pid": "4985", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/203937740"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:57.178025 2023-07-08 08:21:57.178035 6ad813fd-d103-4258-98ae-adef4bad97f6 {"pid": "4986", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/20394562X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:57.278503 2023-07-08 08:21:57.278511 1bcf5856-3291-499f-8bb5-09696ea414c5 {"pid": "4987", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/203971051"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:57.488353 2023-07-08 08:21:57.488364 d754973d-0192-4d8d-b251-9b05d4b26615 {"pid": "4989", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/204097428"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:57.702333 2023-07-08 08:21:57.702346 e456d5cf-b969-451d-9b11-3904a2e93589 {"pid": "4990", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/204208246"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:57.804261 2023-07-08 08:21:57.804272 818e5aaf-1b76-432c-a470-f44290fae134 {"pid": "4991", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/20422280X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:57.916839 2023-07-08 08:21:57.91685 0740a067-7b23-4ac4-83dd-eb87326a5534 {"pid": "4992", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/204242479"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:58.145146 2023-07-08 08:21:58.145157 f9380301-23f4-42fa-90bc-b2200ae8c155 {"pid": "4994", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/20436678X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:58.241525 2023-07-08 08:21:58.241535 8531eade-b9c4-4c10-a3dc-17bbe73300e5 {"pid": "4995", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/204436869"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:58.568507 2023-07-08 08:21:58.568515 4133dea7-ecc1-4525-9755-6de337faccab {"pid": "4998", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/204719593"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:58.680437 2023-07-08 08:21:58.680447 53825ac7-f888-48a5-b70d-6ef2a5ee6dba {"pid": "4999", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/204750032"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:58.79991 2023-07-08 08:21:58.799919 24a19da5-9dd0-41b7-9c65-aa46de147c9d {"pid": "5000", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/204755824"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:58.909679 2023-07-08 08:21:58.909693 e2ada002-0f34-4a16-8f1b-0e727570e2dd {"pid": "5001", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/20476209X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:59.02106 2023-07-08 08:21:59.021069 b9cab2bf-6122-431a-82f0-eabb862d66d1 {"pid": "5002", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/204801923"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:59.12234 2023-07-08 08:21:59.122348 873bb294-7b5d-4da4-ad03-ec0e1fb08234 {"pid": "5003", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/219558523"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:59.233184 2023-07-08 08:21:59.233192 81380751-d099-484c-b8f8-38dda525276e {"pid": "5004", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/219844496"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:59.325533 2023-07-08 08:21:59.325541 eedb448a-f845-4091-92a0-fa6008f3f62d {"pid": "5005", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/219895058"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:58.039864 2023-07-08 10:31:19.40968 072cd3fa-d3af-4fe3-9ab0-1d1d3c7e15da {"pid": "4993", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003688082"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/204251206"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112150747059116301735"} 4 -2023-07-08 08:21:57.387412 2023-07-08 10:29:42.200555 afb57eba-40bb-4eab-a86a-53a540f2bf84 {"pid": "4988", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/204040388"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110150747135116302704"} 2 -2023-07-08 08:21:58.350821 2023-07-08 10:29:42.626006 a293773f-e517-4832-b64c-e054cfeeb4ae {"pid": "4996", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/204581745"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110151050168333412174"} 2 -2023-07-08 08:21:59.437218 2023-07-08 08:21:59.437226 2fbc866b-ce0e-4702-90cf-51afb8ebc74c {"pid": "5006", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/219901015"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:59.533355 2023-07-08 08:21:59.533364 d0389806-b7d9-4f8d-a75e-4b679e88d34f {"pid": "5007", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/219918252"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:59.748546 2023-07-08 08:21:59.748555 7af4ef6e-f8a0-4607-8573-98b9ef029d7f {"pid": "5009", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/220045143"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:59.872332 2023-07-08 08:21:59.872344 f41ecb2b-f124-4b70-83d4-9409432c0d5f {"pid": "5010", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/220058784"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:21:59.975744 2023-07-08 08:21:59.975754 29cb016d-a258-4239-946d-7ce3e626860a {"pid": "5011", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/220068062"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:00.078269 2023-07-08 08:22:00.078272 59adb6ec-1839-40ab-8a1c-f1d674578c48 {"pid": "5012", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/220075247"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:00.164968 2023-07-08 08:22:00.164975 07856905-ab01-4d69-b036-54df71f9f993 {"pid": "5013", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/220078440"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:00.264872 2023-07-08 08:22:00.26488 da798424-0b92-4aba-8f42-3a054d2b13b9 {"pid": "5014", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/220159157"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:00.461759 2023-07-08 08:22:00.461768 1003bf70-e739-47ff-a92f-08660d69d2c4 {"pid": "5016", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/220196133"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:00.574266 2023-07-08 08:22:00.574275 9ead0bb7-5450-410d-ba61-172e1414063f {"pid": "5017", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/220218919"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:01.298439 2023-07-08 08:22:01.298451 d146bf71-12c8-43c1-82b2-573447e4d4d2 {"pid": "5022", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/22088787X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:01.529995 2023-07-08 08:22:01.530004 7d08c04e-f5f6-4a98-ace2-2af7ff56e1d8 {"pid": "5024", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/221211810"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:01.624506 2023-07-08 08:22:01.624519 6f0613c6-6709-4b96-ba12-098be8811e46 {"pid": "5025", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/221276904"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:01.736632 2023-07-08 08:22:01.736635 7d9c500f-1fef-481b-8073-a5a2743d1449 {"pid": "5026", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/221337571"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:01.821727 2023-07-08 08:22:01.821737 17f1475b-3ac2-415b-bf15-844ae480ee76 {"pid": "5027", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/221337806"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:01.927078 2023-07-08 08:22:01.927088 dcb97c50-6063-41b9-9b39-5553fe15987c {"pid": "5028", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/221343555"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:02.025908 2023-07-08 08:22:02.025917 647859b1-20bd-426a-a37e-7dbd2bc64fa2 {"pid": "5029", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/221345477"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:02.246354 2023-07-08 08:22:02.246363 43f99e31-49d0-4bdf-914d-50019a76c95d {"pid": "5031", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/221465480"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:02.35448 2023-07-08 08:22:02.35449 dd63819a-ccd4-4737-bf40-f79965973592 {"pid": "5032", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/221485554"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:02.468155 2023-07-08 08:22:02.468165 4d09eb29-200d-443c-a457-c7fdede1d179 {"pid": "5033", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/221493646"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:02.592664 2023-07-08 08:22:02.592673 3f17636f-8541-4b7c-ac55-262b528b1bef {"pid": "5034", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/221661425"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:02.698581 2023-07-08 08:22:02.698588 7f31f427-8977-44ab-93b2-7b6671b87ab2 {"pid": "5035", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/221728856"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:02.791771 2023-07-08 08:22:02.791779 507d298e-0bdb-4362-9471-206b99524b81 {"pid": "5036", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/22175167X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:01.171991 2023-07-08 10:23:34.174489 6c7e17dd-08ff-4bad-8e08-f64775b59352 {"pid": "5021", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/220828164"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100151302888048660222"} 2 -2023-07-08 08:21:59.637764 2023-07-08 10:25:42.169575 f3c9971a-eb97-47c1-b982-23f409347208 {"pid": "5008", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/219992657"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103151302966148662012"} 2 -2023-07-08 08:22:01.4271 2023-07-08 10:26:56.78836 89e6ce26-37cb-4ede-a50c-fb6faa2492ae {"pid": "5023", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/220890056"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106151302919848660519"} 2 -2023-07-08 08:22:02.140217 2023-07-08 10:28:21.741684 9b8d30dc-aaf4-4f0a-a9b6-11f58f91c471 {"pid": "5030", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/221427767"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108151594464705351770"} 2 -2023-07-08 08:22:01.034108 2023-07-08 10:30:23.717797 94b2fd8d-75d3-48f9-9605-b4066576c2e6 {"pid": "5020", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/220609829"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111151302950748661778"} 2 -2023-07-08 08:22:00.699717 2023-07-08 10:31:20.822855 fdb3fa3b-8e1e-4d96-9c4c-37b6fdc66c27 {"pid": "5018", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/220304114"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112151302886348660062"} 2 -2023-07-08 08:22:00.376031 2023-07-08 10:31:44.09772 2d2b8ef6-eac5-477d-a81d-7ed012ed6326 {"pid": "5015", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/220178003"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "113151302976248662220"} 2 -2023-07-08 08:22:03.120542 2023-07-08 08:22:03.120551 bf4267cb-8057-4a00-8951-b9a778002ff3 {"pid": "5039", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/223483516"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:03.378346 2023-07-08 08:22:03.378355 c58a6fb3-94e0-44f7-b2af-73eb87a11f37 {"pid": "5041", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/223505056"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:03.494968 2023-07-08 08:22:03.49498 0ffc4837-c65a-4d9f-99bc-a65b38fd8318 {"pid": "5042", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/223537616"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:03.625576 2023-07-08 08:22:03.625585 5fb4f52f-97bf-48a3-b8a2-da58b797425d {"pid": "5043", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/223609935"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:03.743347 2023-07-08 08:22:03.743355 b515cfab-e09f-47f5-b6e3-d59d77fcf54c {"pid": "5044", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/223614866"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:03.852381 2023-07-08 08:22:03.85239 b59d377f-6866-401d-8169-5eacaabf2113 {"pid": "5045", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/223652555"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:03.951747 2023-07-08 08:22:03.951755 cf48e506-786b-4d8f-a415-faf3338f3440 {"pid": "5046", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/223704288"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:04.07167 2023-07-08 08:22:04.071682 0d236fbc-c75a-4ee4-b37d-74c3902cd776 {"pid": "5047", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/22376423X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:04.320034 2023-07-08 08:22:04.320043 8fb3e7e1-51c4-4309-beaf-c1032e2d4544 {"pid": "5049", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/223852481"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:04.446943 2023-07-08 08:22:04.446953 cbeef1e0-cf77-482a-a6c2-fb2a7215a5f6 {"pid": "5050", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/223890472"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:04.561576 2023-07-08 08:22:04.561585 1d3fb490-cbfc-429a-94a6-cf9d9b936d9e {"pid": "5051", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/224016806"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:04.906678 2023-07-08 08:22:04.906688 624af701-fe53-41ee-9566-af38bb241d5f {"pid": "5054", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/224319418"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:05.035731 2023-07-08 08:22:05.035738 a993956a-9e2e-422f-b2f3-f9baf85c552f {"pid": "5055", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/224335081"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:05.146194 2023-07-08 08:22:05.146203 d2c79373-5701-4cb6-bf20-71b8e9865ac4 {"pid": "5056", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/22438306X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:05.261655 2023-07-08 08:22:05.261668 465f4907-f848-4f07-88b6-7524e94d078a {"pid": "5057", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/224404717"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:05.38228 2023-07-08 08:22:05.382292 729bbf76-fc71-43e9-ba74-f93d871898c4 {"pid": "5058", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/224452630"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:05.496439 2023-07-08 08:22:05.496449 1d8a7fec-5ed2-4e8c-bbd3-e04869b5ffbd {"pid": "5059", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/224502557"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:05.630057 2023-07-08 08:22:05.630067 c12df8c0-4dd5-4f7d-8aee-8e336b6d71b7 {"pid": "5060", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/224542249"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:05.733101 2023-07-08 08:22:05.73311 2993b774-09bb-4ba2-83a3-dc31b51bff4d {"pid": "5061", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/224544411"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "deleted": "2023-05-02T15:14:40.693107+00:00"} 1 -2023-07-08 08:22:05.859573 2023-07-08 08:22:05.859585 44c7766a-fa87-4b41-a7f1-ba18c30043d6 {"pid": "5062", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/224701592"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:05.967092 2023-07-08 08:22:05.967101 05ef84f9-20d4-407e-9e28-e34c2fe1098e {"pid": "5063", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/22472178X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:06.36135 2023-07-08 08:22:06.361357 9d218bf6-c51a-479f-a1e7-1dddb7d96178 {"pid": "5065", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/224842722"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:03.263109 2023-07-08 10:23:34.521624 3cf65a94-afe3-406d-bad8-21168619f018 {"pid": "5040", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/223491071"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100151836552720401901"} 2 -2023-07-08 08:22:03.01701 2023-07-08 10:26:18.307981 6236252c-5d33-4fe5-ab85-8cb9dd76c87d {"pid": "5038", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/22344250X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104151836548620401031"} 2 -2023-07-08 08:22:04.686733 2023-07-08 10:26:18.877331 175f78d8-452b-4f4b-843c-be19d23aee57 {"pid": "5052", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/224210963"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104152079169107111308"} 2 -2023-07-08 08:22:04.788833 2023-07-08 10:30:24.402521 97762e3b-0734-4ab8-806c-9431535a6b4a {"pid": "5053", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/224227815"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111152079173007110745"} 2 -2023-07-08 08:15:00.057102 2023-07-08 10:26:58.253777 f23b2c1b-d2f0-4856-a77a-4f6b06d8f45b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1056601809"}, "pid": "847", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/224789147"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106152380131001762059"} 4 -2023-07-08 08:22:06.233176 2023-07-08 10:27:33.717831 e03c37e9-5fe0-4747-a1b2-c6feee239f82 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1270306960"}, "pid": "5064", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/224794272"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107152380058201760201"} 3 -2023-07-08 08:22:02.904037 2023-07-08 10:27:48.39371 6deb36f6-ccab-416e-93ad-28554600b063 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1140439618"}, "pid": "5037", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/221761942"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107434147"} 3 -2023-07-08 08:22:06.467931 2023-07-08 08:22:06.467937 bfde024a-77d8-411d-ad41-9bdb045097fe {"pid": "5066", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/224847333"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:06.664967 2023-07-08 08:22:06.664979 835e5797-4b35-448c-8064-57ce1a4915ee {"pid": "5068", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/224900536"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:06.775978 2023-07-08 08:22:06.775991 39e0d626-f525-4169-a2fd-9820f26521ec {"pid": "5069", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/224972065"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:07.266292 2023-07-08 08:22:07.266299 abb8cdb2-8f67-4436-9cde-fb8da0d694b1 {"pid": "5073", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/225406292"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:07.378228 2023-07-08 08:22:07.378237 394875c0-49f5-4e92-9407-15feced79f4f {"pid": "5074", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/225412632"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:07.493313 2023-07-08 08:22:07.493325 1a829b2a-01d0-4148-8850-77d700113517 {"pid": "5075", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/225448475"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:07.589624 2023-07-08 08:22:07.589631 60a7c9d4-2341-43a2-a9cc-a13a323f51d0 {"pid": "5076", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/225463121"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:07.707945 2023-07-08 08:22:07.707954 489ba17e-7b00-4cd3-ba46-51c8be582c02 {"pid": "5077", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/225512521"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:07.815076 2023-07-08 08:22:07.815083 4a2f7cbc-2efe-4141-b234-ab6016e690b2 {"pid": "5078", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/225514451"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:07.905215 2023-07-08 08:22:07.905226 f9d22beb-94e1-4ff7-a65b-ef0fadc785fc {"pid": "5079", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/225603128"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:08.008456 2023-07-08 08:22:08.008468 ef72aa47-dcea-4167-950a-0a29952ee54f {"pid": "5080", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/225616459"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:08.116334 2023-07-08 08:22:08.116344 6acf1bd5-f313-433c-ba03-0426db74f3a4 {"pid": "5081", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/225732394"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:08.228264 2023-07-08 08:22:08.228276 8c0f3c83-6420-4cb1-b824-98a5d0f49243 {"pid": "5082", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/225791153"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:08.3354 2023-07-08 08:22:08.335411 a055b910-a035-407c-8408-775ad359cbbb {"pid": "5083", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/225800373"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:08.836876 2023-07-08 08:22:08.836888 26487bed-b432-46da-bdcd-773246c7fe0e {"pid": "5087", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/226272893"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:08.961441 2023-07-08 08:22:08.961451 26afc91c-e38d-4f8f-a005-9fc9d9096f58 {"pid": "5088", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/226304108"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:09.065364 2023-07-08 08:22:09.065371 050447eb-fb96-446f-90c4-51b817cb9b3d {"pid": "5089", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/226336328"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:09.174987 2023-07-08 08:22:09.174996 155c5316-a6ee-4951-af9a-88a7214521d8 {"pid": "5090", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/226372294"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:09.28453 2023-07-08 08:22:09.284544 d5e25e95-fb0c-4fbe-a7d1-e0b09eb89954 {"pid": "5091", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/226411354"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:09.389954 2023-07-08 08:22:09.389963 2b63cd4b-76af-4036-89ec-76034d49d985 {"pid": "5092", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/22676026X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:09.493719 2023-07-08 08:22:09.493729 a8975a3a-7762-4df8-b66e-72663e0a4e77 {"pid": "5093", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/226865037"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:09.618598 2023-07-08 08:22:09.618608 45a8c573-4ad0-47a6-baa1-af9f436adab7 {"pid": "5094", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/226921670"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:09.707224 2023-07-08 08:22:09.707233 92b657ee-93d6-4167-a540-0786da89c645 {"pid": "5095", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/226932141"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:06.899371 2023-07-08 10:23:34.920407 37c32eae-c40a-46d9-a96e-0aebf875568b {"pid": "5070", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/224991523"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100152380054401760785"} 2 -2023-07-08 08:22:06.580278 2023-07-08 10:25:42.568024 a13b8a5e-c595-4607-93df-a6f50829b4f1 {"pid": "5067", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/224875868"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103152380061501760617"} 2 -2023-07-08 08:22:08.577299 2023-07-08 10:25:46.17281 5d92d04b-ddae-48b6-b92e-c38ff18e3dab {"pid": "5085", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/226149390"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1032152636118020050995"} 2 -2023-07-08 08:22:09.832213 2023-07-08 10:26:38.561621 e2a4779f-e973-433f-a53c-2a3db8c4bec2 {"pid": "5096", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/226958728"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105152864169204821729"} 2 -2023-07-08 08:22:07.153599 2023-07-08 10:26:57.167578 c5ac5c53-e8c1-4e6b-b35b-6ca2ec8c6fa2 {"pid": "5072", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/225402475"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106152380106901761541"} 2 -2023-07-08 08:22:08.71042 2023-07-08 10:27:44.901943 a8fccf9f-ff59-4390-95e9-1287e374f299 {"pid": "5086", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/226257444"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1073152636118220050996"} 2 -2023-07-08 08:22:07.033248 2023-07-08 10:30:21.702898 65e2e07a-7b88-407c-96ea-cd890b8a0380 {"pid": "5071", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/225224054"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11113716"} 2 -2023-07-08 08:22:09.94952 2023-07-08 08:22:09.949532 b4c6799d-54c4-48dd-a5d9-e18052339514 {"pid": "5097", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/226964736"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:10.309925 2023-07-08 08:22:10.309933 1794e66e-bf8d-47a4-a22b-9a50c7d96911 {"pid": "5099", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/227236610"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:10.422324 2023-07-08 08:22:10.422337 6dd313c4-b2bf-45ab-ac9c-603be2da0ea1 {"pid": "5100", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/227237382"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:10.739778 2023-07-08 08:22:10.739785 25ebcd13-99d9-43fa-8a5f-4f192863d725 {"pid": "5103", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/227475453"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:10.983211 2023-07-08 08:22:10.983214 d0b1ddef-a63b-474c-a6eb-94ec5321b9c1 {"pid": "5105", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/227511980"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:11.187511 2023-07-08 08:22:11.187523 c1aa2c4c-2c87-4470-8127-5decc5c3beb9 {"pid": "5107", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/227594509"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:11.292619 2023-07-08 08:22:11.292628 528e0232-2273-4f73-b12c-390af571019a {"pid": "5108", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/227599055"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:11.405738 2023-07-08 08:22:11.405755 9321df4a-6b50-4f1d-951a-03d9d914e72a {"pid": "5109", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/227616839"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:11.509738 2023-07-08 08:22:11.509744 9b373568-9933-4d37-92e5-4ddff3920f8c {"pid": "5110", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/227645278"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:11.608608 2023-07-08 08:22:11.608618 30638c09-ecb3-48dd-9ec2-8f4a6da27914 {"pid": "5111", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/227762045"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:11.708371 2023-07-08 08:22:11.708379 208a6560-f7bc-4989-9fd0-b45d4991ebe0 {"pid": "5112", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/22779222X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:11.837852 2023-07-08 08:22:11.837861 0c8585c8-0dfc-4377-bec4-ac85c326e356 {"pid": "5113", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/227806646"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:11.925153 2023-07-08 08:22:11.925162 67c961ad-203e-4daa-b7b8-c89c1a8be210 {"pid": "5114", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/227845307"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:12.026696 2023-07-08 08:22:12.026706 b6bb9fe6-82a6-4326-a567-4c091eb87642 {"pid": "5115", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/227933923"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:12.135786 2023-07-08 08:22:12.135798 c6413ee6-ed27-443d-a5b6-8c0b80eacb6a {"pid": "5116", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/22793492X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:12.301494 2023-07-08 08:22:12.301503 14cb1eb2-414f-44d5-8c58-09d688530d7d {"pid": "5117", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/227979303"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:12.427952 2023-07-08 08:22:12.427966 2be7d1b0-48f1-425a-9f1b-41e62f022c37 {"pid": "5118", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/228238714"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:12.659428 2023-07-08 08:22:12.659441 3e4dd6e2-31df-4ba0-8e76-d541b580239b {"pid": "5120", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/228795990"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:12.889158 2023-07-08 08:22:12.889167 573c8d4d-0378-4035-a89b-400d60acabd6 {"pid": "5122", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/228947545"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:12.987093 2023-07-08 08:22:12.987103 f2feb494-c5de-472c-9a3d-7d1162ae038d {"pid": "5123", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/229034713"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:13.097127 2023-07-08 08:22:13.097141 fdaae538-6d97-4455-9206-f9c9d4b91b5a {"pid": "5124", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/229300324"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:13.227748 2023-07-08 08:22:13.227762 0cd2d86b-dc12-4ae4-9e37-a150fd0173fc {"pid": "5125", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/229580165"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:13.452139 2023-07-08 08:22:13.452153 e3a236f2-1a68-4d52-9c0f-42d0cda59ab0 {"pid": "5127", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/229650473"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:12.542665 2023-07-08 10:24:22.297242 3a356bf1-f939-4e55-a724-04dab4449b13 {"pid": "5119", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/228263050"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101153124270024490533"} 2 -2023-07-08 08:22:10.865592 2023-07-08 10:25:07.655402 27b44d1d-3ace-4e0b-af0a-c19112252a03 {"pid": "5104", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/22749900X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102153124263324490687"} 2 -2023-07-08 08:22:11.085848 2023-07-08 10:25:42.911423 631e9049-a26f-467c-9ca8-266d29ea853d {"pid": "5106", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/227583752"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103153124315724490965"} 2 -2023-07-08 08:22:10.633571 2023-07-08 10:25:43.249924 2aa036a7-1f3b-472a-bef0-c8b7de342aa0 {"pid": "5102", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/227327551"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103153124329024491575"} 2 -2023-07-08 08:22:13.352095 2023-07-08 10:27:34.108876 ee086832-362d-4e3b-9968-cbefb0961d3d {"pid": "5126", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/229619231"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107153651772455782407"} 2 -2023-07-08 08:22:10.069461 2023-07-08 10:31:21.655247 28766b58-d1bb-42fd-a1f2-c95de251cf1a {"pid": "5098", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/227130812"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112152864214604822990"} 2 -2023-07-08 08:22:13.559377 2023-07-08 08:22:13.55939 79c20be6-c1ff-4b04-8846-4b0ccc4274ea {"pid": "5128", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/229663362"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:13.672491 2023-07-08 08:22:13.672506 47678073-7bef-4ce5-9b25-1172f37afecb {"pid": "5129", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/229665470"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:13.785388 2023-07-08 08:22:13.785396 f2d4864d-ca07-4bf7-85cd-288530f36933 {"pid": "5130", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/229675018"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:13.884207 2023-07-08 08:22:13.884214 839a2364-11a8-4d5d-a534-e81d7a827d5b {"pid": "5131", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/229703747"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:14.002034 2023-07-08 08:22:14.002044 fbc78bc4-9619-498b-a8a3-851847bae9d7 {"pid": "5132", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/229818676"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:14.12051 2023-07-08 08:22:14.120523 8e5181b9-f416-48a7-b8f1-8144e6e2d1ec {"pid": "5133", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/229845606"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:14.246083 2023-07-08 08:22:14.246094 9461b2c7-f65a-478f-8e42-97a07ae823c6 {"pid": "5134", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/23008964X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:14.359113 2023-07-08 08:22:14.359125 04da3405-694b-4e7a-8a9a-9d065d98b624 {"pid": "5135", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/230158145"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:14.48066 2023-07-08 08:22:14.480671 b637d50b-0e27-4f79-987f-730f490f0a09 {"pid": "5136", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/230252427"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:14.596097 2023-07-08 08:22:14.596109 5bd35293-00f8-47fb-988d-c65e11860faf {"pid": "5137", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/230252575"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:14.701185 2023-07-08 08:22:14.701195 1ff14ccb-ef1a-43d1-aacd-76843d704bf4 {"pid": "5138", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/230306365"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:14.796025 2023-07-08 08:22:14.796032 aa6b6b23-e59e-476d-b588-d052d6be5cca {"pid": "5139", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/230333885"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:14.900954 2023-07-08 08:22:14.900964 223b6fee-bf17-49c8-bce6-c7b53cfc7033 {"pid": "5140", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/230389597"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:15.02792 2023-07-08 08:22:15.02793 b83cede0-6b00-4139-8a01-45d6c6daae4a {"pid": "5141", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/230392407"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:15.135136 2023-07-08 08:22:15.135144 ff7c1ec6-309b-4e14-90ae-6852401667fa {"pid": "5142", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/230394477"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:15.259369 2023-07-08 08:22:15.259381 71e1dcec-7ee3-4831-b5d7-14a245a5a946 {"pid": "5143", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/230409261"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:15.383399 2023-07-08 08:22:15.383407 7a2afcee-ec3f-43ef-a317-906d8d95e260 {"pid": "5144", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/230421075"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:15.50468 2023-07-08 08:22:15.504687 e4d9784e-78b4-491a-a581-63469e2a9099 {"pid": "5145", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/230487653"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:15.620008 2023-07-08 08:22:15.620014 3c0da058-cd41-4075-8a4b-b8a3bc72ff74 {"pid": "5146", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/230499805"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:15.736254 2023-07-08 08:22:15.736265 08ced905-3805-452e-8628-7f5d51981a87 {"pid": "5147", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/23054634X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:15.842418 2023-07-08 08:22:15.842424 53fe48e8-9ff6-45bd-b8aa-552e7d489662 {"pid": "5148", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/230568378"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:16.071106 2023-07-08 08:22:16.07112 ea159fd1-3981-40ce-ad70-db3a2a68526e {"pid": "5150", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/230746608"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:16.180316 2023-07-08 08:22:16.180323 76bb8ce4-49c9-4f91-ae77-d804bea2f2d8 {"pid": "5151", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/230769373"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:16.296981 2023-07-08 08:22:16.296988 8645ce2f-47bf-4776-b62c-9a095ea37b3d {"pid": "5152", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/230818846"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:16.412257 2023-07-08 08:22:16.41227 edf5d324-0dfe-4c09-ba65-d92409d59007 {"pid": "5153", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/230825478"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:16.514106 2023-07-08 08:22:16.514114 b5a08451-59cb-4c03-8c70-81c9405c1a56 {"pid": "5154", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/230880525"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:16.846841 2023-07-08 08:22:16.84685 05ac127e-cc6a-419b-a591-ec00b4ba3ff0 {"pid": "5157", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/230969267"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:16.956689 2023-07-08 08:22:16.956701 adf77409-9508-4298-9ce1-5bb022dc4a1b {"pid": "5158", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/231084056"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:16.739955 2023-07-08 10:26:19.239895 ae4560a1-8cee-4559-8a9b-79fea0b66d5c {"pid": "5156", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/230956866"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104154196737820111181"} 2 -2023-07-08 08:22:15.95164 2023-07-08 10:31:22.078252 c76796df-f526-4c2d-bfde-b0c81f245845 {"pid": "5149", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/230663338"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112154196754420110171"} 2 -2023-07-08 08:22:17.057279 2023-07-08 08:22:17.057289 4732401e-0a29-4755-95bb-af02a5c476e9 {"pid": "5159", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/231252188"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:17.178072 2023-07-08 08:22:17.178086 f53db080-68a4-439c-ad1f-a06a2ed7c031 {"pid": "5160", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/231276729"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:17.294122 2023-07-08 08:22:17.294132 6b6ce187-8eba-4e2e-80a5-bef09df376dd {"pid": "5161", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/231291779"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:17.392416 2023-07-08 08:22:17.392426 f8d26d2e-8c8c-4d04-bf2d-c9254523cdf9 {"pid": "5162", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/231292856"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:17.492789 2023-07-08 08:22:17.492798 fa6b1167-c920-4d34-b3b1-c2022c55c413 {"pid": "5163", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/231295405"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:17.592743 2023-07-08 08:22:17.592757 6cc7e19a-7f1a-40f4-aa1f-ad9a0a856caa {"pid": "5164", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/231314116"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:17.70201 2023-07-08 08:22:17.702018 5d8f9ff4-379d-48a4-81d2-9b1c23630229 {"pid": "5165", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/231372507"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:17.820875 2023-07-08 08:22:17.820884 26e79195-7083-4fdb-9c5d-93fecf0f7ad0 {"pid": "5166", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/231381476"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:17.900436 2023-07-08 08:22:17.900439 5c7da778-df29-4151-82d3-652152f0db61 {"pid": "5167", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/231381964"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:17.984716 2023-07-08 08:22:17.984727 1a547e30-6d23-4f22-b124-9cd34b7f7513 {"pid": "5168", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/231451555"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:18.086783 2023-07-08 08:22:18.086794 4a39002b-bbc1-4419-a920-12999c45fe25 {"pid": "5169", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/231480520"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:18.280884 2023-07-08 08:22:18.280893 ac7c5867-4324-4fba-9b0c-40d050be3478 {"pid": "5171", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/231540957"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:18.401078 2023-07-08 08:22:18.40109 97fc35cc-f9f1-4916-9895-cfa9cf907c7e {"pid": "5172", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/231623739"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:18.507301 2023-07-08 08:22:18.507311 1e14be38-0d66-45d7-a055-26d8ab92824c {"pid": "5173", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/231934203"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:18.601432 2023-07-08 08:22:18.601441 e67cb08a-6cc7-4ec1-937c-7e7a51e661a6 {"pid": "5174", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232202699"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:18.801523 2023-07-08 08:22:18.80153 a19a7f83-44db-41f5-b8ab-38827951facd {"pid": "5176", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232343446"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:18.890474 2023-07-08 08:22:18.890481 511fd64b-f30e-45c8-8c7c-e213d3b6a304 {"pid": "5177", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232523703"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:19.123629 2023-07-08 08:22:19.123638 ab8ab8fb-f88b-4a72-ad97-1193e08da4a4 {"pid": "5178", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232640858"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:19.452163 2023-07-08 08:22:19.452172 2c4847d7-e591-4289-b76c-a7faa68eb938 {"pid": "5181", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232696551"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:19.567735 2023-07-08 08:22:19.567742 8f24422f-99ff-465d-93c2-334184949c2d {"pid": "5182", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232702845"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:19.676274 2023-07-08 08:22:19.676283 cc2a0c70-ec4a-448c-a641-2f0af6c28200 {"pid": "5183", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/23272377X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:19.771111 2023-07-08 08:22:19.771118 35b4e6e7-74ad-4d61-a73e-2c110a0dfa26 {"pid": "5184", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/23272380X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:19.875632 2023-07-08 08:22:19.875641 3918e4bb-bbfe-475b-b997-c2948326bf5a {"pid": "5185", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232774072"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:19.978565 2023-07-08 08:22:19.978575 ecc52b95-5189-45f5-85d2-2939314e4b17 {"pid": "5186", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232796734"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:20.177462 2023-07-08 08:22:20.177473 1ebd3918-3326-4265-a75f-12840ce68f74 {"pid": "5188", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232805636"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:19.243369 2023-07-08 10:25:43.647605 9910f30e-64a1-40e5-b00f-abb59fc1bdbf {"pid": "5179", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232656770"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103154739822952990437"} 2 -2023-07-08 08:15:54.90487 2023-07-08 10:25:34.993032 369e0d8c-61ef-42b8-8058-e5a07de67b7f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1159284946"}, "pid": "1443", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232530343"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102935131"} 4 -2023-07-08 08:22:20.067396 2023-07-08 10:26:38.897738 2c333370-c371-457f-ae5d-e81e76a149e5 {"pid": "5187", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232804788"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105154739909452991974"} 2 -2023-07-08 08:22:19.351173 2023-07-08 10:29:43.416087 d8dc3419-cb1d-4009-a68b-0a48572fbfe8 {"pid": "5180", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232674450"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110154739844052991589"} 2 -2023-07-08 08:22:18.192816 2023-07-08 10:31:34.417835 3baeb209-4a20-4e6d-b986-65c62f123368 {"pid": "5170", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/231537743"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11277319"} 2 -2023-07-08 08:22:20.274264 2023-07-08 08:22:20.274273 a5372468-706f-4cb7-bc5b-d511a3310b68 {"pid": "5189", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232810265"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:20.378067 2023-07-08 08:22:20.378075 dc59c0c2-8c09-4b04-94e9-209fc5249b74 {"pid": "5190", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232813116"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:20.481544 2023-07-08 08:22:20.481554 b66acd30-4aec-4ac7-922b-a59352f5086d {"pid": "5191", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232862583"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:20.587239 2023-07-08 08:22:20.587242 139e7be9-b09d-4aa4-aff1-812edaff5fb7 {"pid": "5192", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232868468"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:20.672839 2023-07-08 08:22:20.672848 11ce908c-e528-4e10-8a71-8618be29e2fe {"pid": "5193", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232869278"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:20.884709 2023-07-08 08:22:20.884719 e4f097d6-9243-4975-8025-3de51dc10662 {"pid": "5194", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232897964"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:20.986855 2023-07-08 08:22:20.986865 a4553ced-331f-4ad6-abf4-27da902ebba0 {"pid": "5195", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232915741"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:21.092894 2023-07-08 08:22:21.092906 917e2bc5-03b1-42aa-90cc-c6334b7184c9 {"pid": "5196", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232934436"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:21.409952 2023-07-08 08:22:21.409965 91f4e94b-34cd-4070-87c4-3a3d0e6be0b5 {"pid": "5198", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/233251073"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:21.610589 2023-07-08 08:22:21.610597 c523f2ac-85e0-485f-8604-26e581948521 {"pid": "5200", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/233342575"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:21.710017 2023-07-08 08:22:21.710026 920323e5-2cd1-43b0-878a-7d88a5ef96b6 {"pid": "5201", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/233346562"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:21.829554 2023-07-08 08:22:21.829561 565639ce-c01a-49a7-85dd-a47fbebde177 {"pid": "5202", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/23352391X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:21.916512 2023-07-08 08:22:21.91652 5442e600-d999-4fbc-a780-9e341e09705c {"pid": "5203", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/233537155"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:22.037651 2023-07-08 08:22:22.037663 de583d30-bbfc-43eb-941d-86a0ed04ed26 {"pid": "5204", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/233564373"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:22.156772 2023-07-08 08:22:22.156785 558bbe04-a7b5-4146-9c48-ae46583db7c4 {"pid": "5205", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/233619771"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:22.26222 2023-07-08 08:22:22.26223 7f5663e3-cbb6-42e3-b205-e4324211166c {"pid": "5206", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/233969829"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:22.374198 2023-07-08 08:22:22.374208 08424abf-d8e6-40b3-9268-8fa82f56f8b6 {"pid": "5207", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234087080"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:22.617872 2023-07-08 08:22:22.617879 5eb42ab1-cff5-4552-bcc5-f0b357b69e13 {"pid": "5209", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234199180"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:23.029494 2023-07-08 08:22:23.029502 f4d1a77a-cf64-4596-bce7-ee85e8fc2a65 {"pid": "5213", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234252006"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:23.133643 2023-07-08 08:22:23.133651 3a010a67-7f63-4a2d-b3db-10ed02e0cf8b {"pid": "5214", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234273771"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:23.247392 2023-07-08 08:22:23.247399 3f4fb7b4-57f1-4476-97f5-3bbf826f456e {"pid": "5215", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234277602"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:23.359918 2023-07-08 08:22:23.359928 a3a053f9-cc78-49fd-bf5a-baab6877dbd3 {"pid": "5216", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234278390"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:23.468762 2023-07-08 08:22:23.468773 47723cab-ef87-4531-af43-77bff1ffce7f {"pid": "5217", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234317566"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:23.573862 2023-07-08 08:22:23.573873 3975c46a-8a2b-41b8-a12b-5d2a69390f45 {"pid": "5218", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234340487"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:23.670687 2023-07-08 08:22:23.670695 988276d7-1f7d-4533-827c-f2175c8c3758 {"pid": "5219", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234363053"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:21.200313 2023-07-08 10:26:39.215429 46abf4b5-502e-400e-bd13-9e1f79f21f66 {"pid": "5197", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/233220984"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105154981764267741203"} 2 -2023-07-08 08:22:22.813718 2023-07-08 10:26:59.015768 d44c359a-b2ee-454e-b1c5-fb6bc255c354 {"pid": "5211", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234251433"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106157098586572552944"} 2 -2023-07-08 08:22:22.501834 2023-07-08 10:27:34.985816 25b9fc2f-6b4a-4325-bb80-5ac099f2e022 {"pid": "5208", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234195576"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107157098572872552794"} 2 -2023-07-08 08:22:21.516312 2023-07-08 10:29:02.077183 d220633d-5345-4010-b2f7-02a855912376 {"pid": "5199", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/233326103"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109154981789567740808"} 2 -2023-07-08 08:22:22.931776 2023-07-08 10:29:03.743284 b1e30325-31d2-4613-9cf8-96ade4211cc2 {"pid": "5212", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234251867"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109157098333572550356"} 2 -2023-07-08 08:22:23.764557 2023-07-08 08:22:23.764567 a26e5f43-04ad-49ea-85d4-fc8125d0033d {"pid": "5220", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234417765"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:23.864689 2023-07-08 08:22:23.864697 c9f20583-fca3-4c1e-8656-2851a8a8c0c1 {"pid": "5221", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234443693"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:23.963418 2023-07-08 08:22:23.963425 59c4fb39-d535-453c-9887-9b7ed67123c0 {"pid": "5222", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234449381"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:24.06958 2023-07-08 08:22:24.069632 9d095dfa-f346-4fd6-bb62-b3009e78d2eb {"pid": "5223", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234468718"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:24.184655 2023-07-08 08:22:24.184664 335f3ec2-9b2d-49ee-9532-e30a34cc8f9e {"pid": "5224", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234477644"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:24.279568 2023-07-08 08:22:24.279577 ca8c4ab3-a25f-41e2-aac1-c3abcdcf7236 {"pid": "5225", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/23449140X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:24.380639 2023-07-08 08:22:24.380648 e1a3ac66-186f-4d4f-a1f4-9dbad47fe898 {"pid": "5226", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234536535"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:24.480544 2023-07-08 08:22:24.480554 57aac40a-c47d-47a5-a138-14dbd2af996e {"pid": "5227", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234569182"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:24.698413 2023-07-08 08:22:24.698443 786b3eba-f433-4f03-b692-5c4ee6d2c389 {"pid": "5228", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/23459313X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:24.78859 2023-07-08 08:22:24.788599 58f081ba-7ad5-418b-88ef-47d3e7ead3a6 {"pid": "5229", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234622512"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:24.888815 2023-07-08 08:22:24.888823 d48c3405-2cf6-4d8d-ae16-5ab57c1528ae {"pid": "5230", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234673672"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:25.079285 2023-07-08 08:22:25.079294 6ace4f70-f4bb-4e21-85fc-9771c03397dd {"pid": "5232", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234745479"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:25.170716 2023-07-08 08:22:25.170722 a9ee3460-f044-4b48-85a7-1522e72499d3 {"pid": "5233", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/23475382X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:25.265303 2023-07-08 08:22:25.265312 7c2b6b3b-b3ef-4870-830f-8ec1db2bbe70 {"pid": "5234", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234776439"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:25.353382 2023-07-08 08:22:25.35339 f522ee45-c76d-4b05-b539-68de260c7f0e {"pid": "5235", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234777079"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:25.443795 2023-07-08 08:22:25.443806 c25a097b-4c85-43d9-8a47-3a2248294582 {"pid": "5236", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234811080"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:25.546867 2023-07-08 08:22:25.546876 df4b6d3e-8f0a-4f79-911d-b85d4d71e8f9 {"pid": "5237", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234843160"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:25.647562 2023-07-08 08:22:25.647572 ad536479-d655-4cef-be98-ec3111ea82b9 {"pid": "5238", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234849223"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:25.88256 2023-07-08 08:22:25.882572 d9690855-23cc-439a-9cbf-5f35bf128fd8 {"pid": "5240", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/235031771"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:26.095304 2023-07-08 08:22:26.095316 1e1fb039-28a0-4e94-8c49-7e8c3144c073 {"pid": "5242", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/235095273"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:26.306901 2023-07-08 08:22:26.306908 0c8f80a2-2328-4371-a73b-f4828d7039e8 {"pid": "5244", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/23515606X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:26.412438 2023-07-08 08:22:26.412449 f7e3ee05-67dd-45e2-bb78-2d831fa0e3c8 {"pid": "5245", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/235183881"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:26.498626 2023-07-08 08:22:26.498635 9f12ccb2-20fd-4cfb-bd4d-076eacc8a845 {"pid": "5246", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/235239593"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:26.594481 2023-07-08 08:22:26.594491 9b0795eb-f537-498a-b5fe-69f0e91f6f5a {"pid": "5247", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/235262927"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:26.828276 2023-07-08 08:22:26.828287 b17059e4-8765-4648-8de5-260e110f6a95 {"pid": "5249", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/235301108"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:26.199767 2023-07-08 10:30:24.803856 3c9b91d7-792d-4636-ac8f-20ef25f88c37 {"pid": "5243", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/235097306"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111155767377327761529"} 2 -2023-07-08 08:22:25.767942 2023-07-08 10:23:35.321404 7db71e0e-0093-43cc-b352-0c5e36f070c1 {"pid": "5239", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/235030929"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100155767374427761206"} 2 -2023-07-08 08:22:25.993965 2023-07-08 10:28:22.097959 fd19108c-8e97-4d7c-89e1-b86f124f047f {"pid": "5241", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/235057657"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108155767374927760071"} 2 -2023-07-08 08:22:24.994336 2023-07-08 10:28:34.541134 7fa2afee-543f-45c1-934f-fbad1371d250 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142514926"}, "pid": "5231", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023425677"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234715723"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108454892"} 5 -2023-07-08 08:22:27.039876 2023-07-08 08:22:27.039884 a6f85ec3-0b8c-4584-afea-a52f51444501 {"pid": "5251", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/235328790"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:27.235029 2023-07-08 08:22:27.235039 9f06cf0c-8946-4313-9511-6dff75a6b736 {"pid": "5253", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/235598720"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:27.335197 2023-07-08 08:22:27.335207 b95a8eea-b4cc-41c9-b666-d3ff2bf78372 {"pid": "5254", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/235711667"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:27.422802 2023-07-08 08:22:27.42281 658a6109-5fbd-4c9f-b69d-1e1f159ee7a8 {"pid": "5255", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/235718211"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:27.516063 2023-07-08 08:22:27.516072 00627967-6bcc-4b33-8e33-3c327412cf4d {"pid": "5256", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/235835943"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:27.621934 2023-07-08 08:22:27.621942 12081adb-62d6-47cc-8efe-6e4ec6d4f950 {"pid": "5257", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/235860131"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:27.737429 2023-07-08 08:22:27.73744 f17795d8-d1b5-4617-b001-efe088fad625 {"pid": "5258", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/235909025"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:27.858037 2023-07-08 08:22:27.858047 8d4a82a2-a71d-4061-b9fa-4aa70cc1cb43 {"pid": "5259", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/236048198"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:27.958846 2023-07-08 08:22:27.958852 25f3b685-8319-478c-9f66-1880182e0e43 {"pid": "5260", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/236052616"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:28.044151 2023-07-08 08:22:28.044161 0b0db135-25a7-4b1c-a72e-95923b90b857 {"pid": "5261", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/236100599"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:28.148515 2023-07-08 08:22:28.148525 8f3f486e-5840-4d7d-8c50-532383629e94 {"pid": "5262", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/236101706"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:28.24931 2023-07-08 08:22:28.24932 4358ae6d-b809-4bc4-912f-4dc5d04a1957 {"pid": "5263", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/236118668"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:28.341533 2023-07-08 08:22:28.341543 27101500-29e1-492d-9122-60354eb111ec {"pid": "5264", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/236167510"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:28.433347 2023-07-08 08:22:28.433353 ba762d8c-95bd-48c7-b474-5ef660a9aa98 {"pid": "5265", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/236210424"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:28.534536 2023-07-08 08:22:28.534543 a0eaa097-e62f-407f-aef3-a5d621d4048d {"pid": "5266", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/236421603"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:28.772073 2023-07-08 08:22:28.772083 8cf84cdc-97be-42f6-a4f1-946c54c29e03 {"pid": "5268", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/236553917"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:28.871858 2023-07-08 08:22:28.871861 ccc218c2-4fd6-4e90-a050-50cde1498307 {"pid": "5269", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/236613529"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:29.044836 2023-07-08 08:22:29.044843 d21426a7-e15c-4718-aef5-bf9e2eabe15d {"pid": "5270", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/236615165"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:29.161935 2023-07-08 08:22:29.161946 7ba67120-b273-4ff5-a4da-0158cb92fa14 {"pid": "5271", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/236625284"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:29.272626 2023-07-08 08:22:29.272634 66f7da13-fd07-4b50-9c96-ceea93438b87 {"pid": "5272", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/236722344"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:29.387518 2023-07-08 08:22:29.387524 7711a37c-462d-4f11-91b3-c0fde7c693d8 {"pid": "5273", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/236724371"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:29.509756 2023-07-08 08:22:29.50977 5874996f-9ec9-432e-a0be-356b76f30d32 {"pid": "5274", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/236751964"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:29.623407 2023-07-08 08:22:29.623415 95fc30aa-5d55-4337-b9cc-2755057cf646 {"pid": "5275", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/236752677"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:29.733515 2023-07-08 08:22:29.733525 550bdccc-1996-4309-ad73-a2c3726bb122 {"pid": "5276", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/236755889"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:29.841581 2023-07-08 08:22:29.841592 88aeb2d9-e3f2-407e-8a4a-05a6c1f2eb91 {"pid": "5277", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/236758349"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:29.94427 2023-07-08 08:22:29.944281 674e9ced-cc07-48d6-8528-8cef893df321 {"pid": "5278", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/236760378"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:30.042122 2023-07-08 08:22:30.042134 c7d0dcee-8302-4cad-9d63-4e3afec5f5cd {"pid": "5279", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/236792539"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:30.140051 2023-07-08 08:22:30.140059 fd68f6b0-7ea0-4654-ab80-472cc691ec20 {"pid": "5280", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/237190109"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:27.137846 2023-07-08 10:30:42.603617 f95da5dd-4ec4-4e69-b7f2-af3229202d7d {"pid": "5252", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027745860"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/235561584"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11152329229202672289"} 4 -2023-07-08 08:22:28.668045 2023-07-08 10:29:03.336476 0a84e05e-d0fa-4cd0-84db-ac2e4c403433 {"pid": "5267", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/236517627"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109156251790007991180"} 2 -2023-07-08 08:22:30.32807 2023-07-08 08:22:30.328079 1c73eaf8-d523-41a0-9f21-8d8ce35caa53 {"pid": "5281", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/237613883"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:30.532519 2023-07-08 08:22:30.532529 768461cc-50c8-4bcc-bb85-bc0763cb3dd8 {"pid": "5283", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/237678373"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:30.635669 2023-07-08 08:22:30.635681 7d1288c2-a7d2-40a7-88dd-52f8438e0eb3 {"pid": "5284", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/23771745X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:30.792164 2023-07-08 08:22:30.792175 86885f78-4e88-4cf0-8d5e-929f689eb0dd {"pid": "5285", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/237781565"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:30.909266 2023-07-08 08:22:30.90928 30005710-ee82-4660-99c0-07fd5048cc30 {"pid": "5286", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/237801221"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:31.037809 2023-07-08 08:22:31.037819 6a468ce9-463c-4405-b598-f9658bcd2362 {"pid": "5287", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/237825457"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:31.221583 2023-07-08 08:22:31.221591 40cc0267-301c-42d3-8118-d918ef5e3483 {"pid": "5289", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/23789615X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:31.437742 2023-07-08 08:22:31.437754 b29549cb-4bd0-47ed-a851-2bc398810f2d {"pid": "5291", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/238303845"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:31.56346 2023-07-08 08:22:31.563476 d6547b27-6379-4f51-bd18-b0f78f70528e {"pid": "5292", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/23830566X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:31.672504 2023-07-08 08:22:31.672512 83b0578f-832e-407d-b392-4da36a794685 {"pid": "5293", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/238472345"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:31.756736 2023-07-08 08:22:31.756747 1e9986a3-aa60-4200-8dea-4b26561f6b20 {"pid": "5294", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/238526852"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:31.865622 2023-07-08 08:22:31.865629 9bb72e41-cac5-4507-81f3-c1ea31d44c3b {"pid": "5295", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/238572366"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:31.961449 2023-07-08 08:22:31.961458 ddc5c123-b996-41cb-ba11-a00d52de7eb5 {"pid": "5296", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/238704750"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:32.062789 2023-07-08 08:22:32.062799 517921a5-1588-4e77-962b-e1dc57dd9f44 {"pid": "5297", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/238709906"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:32.283609 2023-07-08 08:22:32.283618 a2c09f15-8851-42c6-966e-b72f1840594a {"pid": "5299", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/238721892"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:32.385054 2023-07-08 08:22:32.385069 67c5d252-e26a-4586-90ac-82a13626417c {"pid": "5300", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240085930"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:32.485041 2023-07-08 08:22:32.485053 c9525892-6f71-4208-8a2e-2bc5485fef2c {"pid": "5301", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240100786"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:32.584558 2023-07-08 08:22:32.584568 58d416f4-a1fd-4101-b911-25f4e348515e {"pid": "5302", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240195523"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:32.899431 2023-07-08 08:22:32.899441 a54d5d85-bd8f-4414-9b99-f433dfeac222 {"pid": "5304", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240280539"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:33.086633 2023-07-08 08:22:33.086705 5ee3b67b-37c8-4aee-ac6d-c821dfe07d92 {"pid": "5306", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240401891"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:33.183547 2023-07-08 08:22:33.183559 1800290d-69bd-4e0d-bed4-578777892f33 {"pid": "5307", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240413741"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:33.290689 2023-07-08 08:22:33.290698 5e462964-9fdb-4f98-93de-26dcc4ea958f {"pid": "5308", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240416082"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:33.389163 2023-07-08 08:22:33.389174 37c6d60d-5044-401b-9fee-5eb0c8bb1380 {"pid": "5309", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240441516"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:33.487387 2023-07-08 08:22:33.487396 b8f3e946-20eb-4087-8ef7-456c1bfb71a2 {"pid": "5310", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240465067"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:32.177422 2023-07-08 10:26:39.630347 ca1b5abe-2b03-43d8-b69e-e929cf9efc87 {"pid": "5298", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/238712435"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105157340820509922864"} 2 -2023-07-08 08:22:31.323723 2023-07-08 10:27:07.371365 8c8b0c27-763d-41b3-b46d-a0e91bbace63 {"pid": "5290", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/238282694"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1063157100614072740000"} 2 -2023-07-08 08:22:30.433813 2023-07-08 10:30:42.978825 24a0d039-4c06-4579-a300-77374ddc0f22 {"pid": "5282", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/237634260"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11152561494415440828"} 2 -2023-07-08 08:22:32.692065 2023-07-08 10:31:44.550212 14628d84-1ddb-4e56-920a-e6ced37c1440 {"pid": "5303", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240228448"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "113157340586609920630"} 2 -2023-07-08 08:16:24.67066 2023-07-08 10:31:22.986462 6bfa669a-fd1d-40cd-8a13-99440299fac8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1216511039"}, "pid": "1706", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240238117"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112157340716809922074"} 4 -2023-07-08 08:22:33.59278 2023-07-08 08:22:33.59279 decfd85c-de22-4b61-a95b-f36debd3e3e2 {"pid": "5311", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240522737"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:33.697888 2023-07-08 08:22:33.697899 d59f2435-cfba-4a47-a315-c737478c0044 {"pid": "5312", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240554868"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:33.782209 2023-07-08 08:22:33.782217 c002c075-14db-4b69-ab5f-4fe710131536 {"pid": "5313", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240646339"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:34.285442 2023-07-08 08:22:34.285456 2f22535e-d919-42a6-a25f-02e4e08be4c4 {"pid": "5316", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240863062"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:34.404035 2023-07-08 08:22:34.404045 aa3f4f43-4474-4b4e-8b7a-a8784327c291 {"pid": "5317", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240922344"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:34.520698 2023-07-08 08:22:34.520703 94a3bca5-c426-4b4a-9c63-b57508e63355 {"pid": "5318", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240936094"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:34.653933 2023-07-08 08:22:34.65394 6dd2140f-ceb0-4905-9d6d-e4d4b47573fc {"pid": "5319", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240965280"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:34.778076 2023-07-08 08:22:34.778092 2e2b414c-ec19-4cc7-980a-cff4b475e4c5 {"pid": "5320", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240984374"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:35.034668 2023-07-08 08:22:35.034676 4aa6fe1e-4295-402c-bd91-483c7fdbdfb2 {"pid": "5322", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/241130921"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:35.283377 2023-07-08 08:22:35.283385 7b612d32-da39-49a3-bee8-45a4dd3547e4 {"pid": "5324", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/241297230"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:35.521665 2023-07-08 08:22:35.521673 c7faad24-39f3-4b91-b807-7ad5595a240f {"pid": "5326", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/241428017"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:35.65266 2023-07-08 08:22:35.652785 f333a712-ec7e-4332-b7c0-ee0db1a3a532 {"pid": "5327", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/241442567"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:35.761861 2023-07-08 08:22:35.761871 ce9e5383-f51b-4db5-8dda-8f7d731e63f5 {"pid": "5328", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/241463548"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:35.885309 2023-07-08 08:22:35.885319 6cbf2ce8-6dd5-40fc-9c7a-b311b25a2565 {"pid": "5329", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/241506662"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:36.259547 2023-07-08 08:22:36.259559 7e8b1841-e87e-4a0b-9d75-8a950772c027 {"pid": "5332", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/241542162"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:36.487937 2023-07-08 08:22:36.487948 c9925f86-3064-4d1e-9393-58f872cca9fb {"pid": "5334", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/24157899X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:36.823765 2023-07-08 08:22:36.823776 059d63c3-9ccb-4585-98e2-d929971a44fc {"pid": "5337", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/241765528"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:36.94975 2023-07-08 08:22:36.949764 dd75cd03-5ff6-4a4c-b6f1-08a19bc596c0 {"pid": "5338", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/241771188"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:37.076239 2023-07-08 08:22:37.076252 fe9e0f40-584f-4356-9844-6e99645a539a {"pid": "5339", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/24185055X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:37.189104 2023-07-08 08:22:37.189114 2a85bc77-a7e2-4339-a498-8654e2a95cc3 {"pid": "5340", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/241923018"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:37.302907 2023-07-08 08:22:37.302922 693b6d19-80f6-4e9b-99ec-6927f7a9b053 {"pid": "5341", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/241957176"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:34.898865 2023-07-08 10:24:07.670627 4bc95f87-ff3d-4f1d-9691-8365a2c3ac41 {"pid": "5321", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240987195"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1009164479543226210009"} 2 -2023-07-08 08:22:36.71942 2023-07-08 10:26:19.666869 bfd8dd7d-290f-4ca6-9407-bf50dbe06512 {"pid": "5336", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/24172726X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104158124944614930328"} 2 -2023-07-08 08:22:35.176577 2023-07-08 10:26:59.478984 546c0f5c-a0e4-4e16-9f6a-b187638eb8a3 {"pid": "5323", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/241164168"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106157581693233781443"} 2 -2023-07-08 08:22:36.006306 2023-07-08 10:26:59.874776 076d36fe-4985-4ee2-949c-de92417f82c6 {"pid": "5330", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/241515033"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106157882778560440758"} 2 -2023-07-08 08:22:36.379192 2023-07-08 10:29:44.786057 939854bd-4858-4fbc-99df-c5562556df67 {"pid": "5333", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/241568137"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110157882894160441188"} 2 -2023-07-08 08:22:35.409502 2023-07-08 10:31:01.98222 ee7fadf0-cc15-4ed5-88dc-683284abfde0 {"pid": "5325", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/241375908"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11163567689616381416"} 2 -2023-07-08 08:22:36.134248 2023-07-08 10:31:23.403521 08a60c55-d589-410b-93a6-fb8d2e047259 {"pid": "5331", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/241527104"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112157882789360440474"} 2 -2023-07-08 08:22:34.169322 2023-07-08 10:31:44.964707 25c43005-8e67-4bf1-b360-ea066079ac19 {"pid": "5315", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240825187"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "113157581572633780365"} 2 -2023-07-08 08:22:37.878048 2023-07-08 08:22:37.878055 df740993-f1b2-428e-88d5-74372aebefc1 {"pid": "5346", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/242323375"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:37.98066 2023-07-08 08:22:37.980666 3f3aec57-1e8b-49c1-af45-1222397960ac {"pid": "5347", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/242335608"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:38.078287 2023-07-08 08:22:38.078298 25507c47-5054-4b77-9116-b074b9f5b23e {"pid": "5348", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/242414826"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:38.191602 2023-07-08 08:22:38.191618 ef27846e-e044-447a-a8df-a6e63a1cc394 {"pid": "5349", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/242426832"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:43.787651 2023-07-08 08:22:43.787659 4c26306a-540c-49b5-b21b-1b9af8c11b1a {"pid": "5401", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/24360405X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:43.887364 2023-07-08 08:22:43.887372 2cab5e50-1b51-4523-8c86-a6ab6ecc4839 {"pid": "5402", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243621418"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:43.977571 2023-07-08 08:22:43.97758 18392dcd-9da7-4796-9146-277e672a1348 {"pid": "5403", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243630832"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:44.093285 2023-07-08 08:22:44.093299 a278472d-0841-4e18-a425-df996c81aa83 {"pid": "5404", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243644124"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:44.209451 2023-07-08 08:22:44.209463 81fc12fe-ccee-4f05-8893-79f9a23cbb8e {"pid": "5405", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243654510"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:44.319715 2023-07-08 08:22:44.319727 db63735d-8fb2-43d2-bf54-b65fc1f013f5 {"pid": "5406", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243677596"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:44.433649 2023-07-08 08:22:44.433663 dd8c504f-b0df-4e27-bbbb-6a74511b2d2b {"pid": "5407", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243682603"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:44.544566 2023-07-08 08:22:44.544576 9112b144-3d2e-4010-85f2-eca135d4b4f8 {"pid": "5408", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243689616"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:44.65698 2023-07-08 08:22:44.656986 150e7a15-29aa-4986-b854-6fa665b840cf {"pid": "5409", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243691041"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:44.743438 2023-07-08 08:22:44.743449 78618cb9-4516-44d0-b08b-d24ca8d5bc89 {"pid": "5410", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243694911"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:44.84323 2023-07-08 08:22:44.84324 987c8ba6-74f4-4d2b-9c7e-b7034e1ca2ef {"pid": "5411", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243698267"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:44.951229 2023-07-08 08:22:44.951237 40659940-9164-46b9-9d2b-cdab6e4eedca {"pid": "5412", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/24370206X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:45.058665 2023-07-08 08:22:45.058677 938c31b2-79d6-46e4-89ba-eb398bedb8d4 {"pid": "5413", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243703597"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:45.170402 2023-07-08 08:22:45.170411 2b9a98d6-06a4-41b3-96d9-efdabb7df67c {"pid": "5414", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243712979"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:45.279633 2023-07-08 08:22:45.279644 185ceb2c-835b-47ee-870b-a39211e13795 {"pid": "5415", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243737823"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:45.39736 2023-07-08 08:22:45.397373 64bbee36-dba9-456d-86b5-bc62e073aeb5 {"pid": "5416", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243741138"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:45.636027 2023-07-08 08:22:45.636034 d4896b36-d06a-4f1e-8a27-9454342591e0 {"pid": "5418", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243803133"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:45.740112 2023-07-08 08:22:45.740121 1bd9e81b-98e7-4ef2-aaad-9a998f625d6e {"pid": "5419", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243814682"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:45.84479 2023-07-08 08:22:45.844802 7f837035-3794-4f79-80ba-1667c2e22cfd {"pid": "5420", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243820984"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:45.970958 2023-07-08 08:22:45.970966 85e08584-8c27-4277-8135-cdd01ab1e200 {"pid": "5421", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243828446"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:46.090176 2023-07-08 08:22:46.090184 b54e7bf6-f7dc-4d66-9818-e49a9ff3525c {"pid": "5422", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243832206"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:46.214334 2023-07-08 08:22:46.214342 72dd192b-137a-4fe8-8fa1-b08a8b858ad0 {"pid": "5423", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/24384025X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:37.652208 2023-07-08 10:25:44.405544 954a7a91-42f2-446d-b18c-3f2873e3825f {"pid": "5344", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/242274455"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103158367742101281463"} 2 -2023-07-08 08:22:45.529699 2023-07-08 10:26:27.567773 3478b1b0-f7e4-48b6-a30c-08b03f395eb9 {"pid": "5417", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243749120"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104620479"} 2 -2023-07-08 08:22:37.77298 2023-07-08 10:26:40.025518 76a0d54a-56d3-4742-9624-d51e776f918b {"pid": "5345", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/242293557"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105158367615801280606"} 2 -2023-07-08 08:22:37.535235 2023-07-08 10:28:22.606204 90db74cc-322d-48cd-bca9-f9fc6f8a27b7 {"pid": "5343", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/242143814"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108158125194914932600"} 2 -2023-07-08 08:22:46.336248 2023-07-08 08:22:46.336263 e77e0eaf-9804-4798-9508-a6b1b44b0327 {"pid": "5424", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243868065"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:46.457364 2023-07-08 08:22:46.457372 06596450-798e-4b5b-975b-1d59da385e40 {"pid": "5425", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/24388303X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:46.698579 2023-07-08 08:22:46.698589 93407fb7-9776-4a0c-9636-7c84d7ed5eae {"pid": "5427", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243894910"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:46.806769 2023-07-08 08:22:46.806782 f4adfad6-7dcc-4460-aa2d-2441d73a2ae1 {"pid": "5428", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243895046"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:46.945088 2023-07-08 08:22:46.945103 51b424e1-d3bd-4785-99bb-13115d642c5c {"pid": "5429", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243937075"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:47.057095 2023-07-08 08:22:47.057103 85b9c51a-548a-42c2-92e0-4c01a6a485bd {"pid": "5430", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244010218"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:47.34193 2023-07-08 08:22:47.341941 4500f094-5633-4486-b5db-435c7d69c966 {"pid": "5432", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244052468"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:47.482067 2023-07-08 08:22:47.482077 1821cabd-301e-4f00-91d5-c417ca9f0b17 {"pid": "5433", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/24406024X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:47.608887 2023-07-08 08:22:47.608894 ae91327b-b218-47f5-98c2-8ac14e3ccad5 {"pid": "5434", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244061092"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:47.703723 2023-07-08 08:22:47.703726 47f7415e-107e-422c-9315-cb6445494c64 {"pid": "5435", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244072922"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:47.786256 2023-07-08 08:22:47.78626 0fe146a3-74f6-48a0-bcdc-5102ff0667cb {"pid": "5436", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244077878"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:47.86248 2023-07-08 08:22:47.862482 9ae0d30d-325d-43ae-bd32-5a99819090e2 {"pid": "5437", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244092389"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:47.932273 2023-07-08 08:22:47.93228 b92c0f7f-eb94-4596-8601-bba180a006b5 {"pid": "5438", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244098972"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:48.025935 2023-07-08 08:22:48.026343 13c394f2-dfad-40fd-9e03-b7ea0154ca1c {"pid": "5439", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244117802"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:48.18613 2023-07-08 08:22:48.186134 e09e0123-7573-440f-9a1c-7c18b563a885 {"pid": "5441", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244126283"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:48.253901 2023-07-08 08:22:48.253904 f82e1e42-0c52-4db2-944b-1ec220f6591a {"pid": "5442", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244135282"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:48.349347 2023-07-08 08:22:48.349358 4e4c133d-6569-4f04-9975-cd1292a6dd30 {"pid": "5443", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244139563"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:48.443822 2023-07-08 08:22:48.443827 034691cf-d60d-4dea-b15e-94c49ffc221d {"pid": "5444", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244165610"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:48.523001 2023-07-08 08:22:48.523005 731a335d-4b8a-4766-b24b-62c33f832459 {"pid": "5445", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/24416603X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:48.696471 2023-07-08 08:22:48.696477 571d9c8a-a221-4a63-9e77-73736afbad7d {"pid": "5447", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244251568"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:48.765903 2023-07-08 08:22:48.765907 19633c81-f9ee-4a0c-996b-44cf9fa80526 {"pid": "5448", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244257469"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:48.848556 2023-07-08 08:22:48.848565 b0263d98-4119-4eb7-b79c-38139fc82247 {"pid": "5449", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244273111"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:48.946498 2023-07-08 08:22:48.946505 3fcc0305-59d3-453d-a5fe-8d5508c7e363 {"pid": "5450", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244318301"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:49.046869 2023-07-08 08:22:49.046872 5c7e1ce8-e96b-4daa-a7f7-b286da717f52 {"pid": "5451", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244324913"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:49.126751 2023-07-08 08:22:49.126754 4d1222f7-ced8-42a7-91b1-9e814a5d2a62 {"pid": "5452", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244341672"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:49.209284 2023-07-08 08:22:49.209291 5dfff31c-7f6d-4523-9e6a-63f61eba7c49 {"pid": "5453", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244341796"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:49.302211 2023-07-08 08:22:49.302215 5bff2145-118f-4559-9422-3a3034c95658 {"pid": "5454", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244350329"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:49.388613 2023-07-08 08:22:49.388625 b95e2e60-856d-44d4-a83b-af5483f90fcc {"pid": "5455", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244402515"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:46.588532 2023-07-08 10:25:21.549936 32a02c64-bca1-4aea-9d84-be9a60deb4b4 {"pid": "5426", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013505146"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243886179"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10253390"} 4 -2023-07-08 08:22:48.617706 2023-07-08 10:30:24.081803 6fcb5b5e-136e-4025-b235-6ac47eb6950e {"pid": "5446", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244233403"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11115174"} 2 -2023-07-08 08:22:49.474953 2023-07-08 08:22:49.474963 d40bf95f-9033-4fa7-a7b4-f5bb7ad85826 {"pid": "5456", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244420645"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:49.56514 2023-07-08 08:22:49.565147 49f59806-c20b-4739-9be5-c37a96cf9fb5 {"pid": "5457", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244433577"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:49.645637 2023-07-08 08:22:49.645641 b6c2be47-63ee-479b-8518-019c3433028f {"pid": "5458", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244450765"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:49.708609 2023-07-08 08:22:49.708612 a7632fb8-8f01-4c9d-ad51-71a19525a127 {"pid": "5459", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244788987"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:49.788971 2023-07-08 08:22:49.788974 e1243c1c-7bdf-42cf-a274-8a0383f8ace9 {"pid": "5460", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244799768"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:49.874854 2023-07-08 08:22:49.874862 0accd760-ecf1-47ac-aba9-9e6bb1d0149a {"pid": "5461", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244882908"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:49.966609 2023-07-08 08:22:49.966619 6cbc9eda-6379-4b99-9252-270ccab2621b {"pid": "5462", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/24488451X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:50.146813 2023-07-08 08:22:50.146816 91b77279-cfe6-4186-85fb-99c06883712f {"pid": "5464", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244922624"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:50.236656 2023-07-08 08:22:50.236661 fe67672f-e4c4-4921-be9e-afb58b6918b1 {"pid": "5465", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244934894"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:50.33513 2023-07-08 08:22:50.335138 63b50fe9-024b-4298-93db-eaf89aceda29 {"pid": "5466", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/245023542"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:50.81015 2023-07-08 08:22:50.810161 0e439e85-2539-42e1-b49f-4a836d41fabc {"pid": "5471", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/245235949"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:50.913722 2023-07-08 08:22:50.913735 9a072710-1493-4fd9-8841-54b6e7e1bd0d {"pid": "5472", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/245265805"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:50.999472 2023-07-08 08:22:50.99948 1234729f-407e-4dba-acbf-e0bf28a1317e {"pid": "5473", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/245313486"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:51.083686 2023-07-08 08:22:51.083693 02dbe4b6-7900-48ca-9fdb-b3bb9c95ae49 {"pid": "5474", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/248175920"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:51.256238 2023-07-08 08:22:51.256246 de7c2fc4-8a1f-4d0d-9a23-0a72f4b65ddb {"pid": "5476", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/248374249"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:51.445827 2023-07-08 08:22:51.445835 8cf58f54-52bd-4ef3-ae4b-881f07466cd2 {"pid": "5478", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/248436074"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:51.647006 2023-07-08 08:22:51.647009 b5e08472-31b0-46ec-9499-dbb3ead7895e {"pid": "5480", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/248982621"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:51.739002 2023-07-08 08:22:51.739013 da5805a2-a1e6-420e-9bbf-e02d995f0bbe {"pid": "5481", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/249008173"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:51.840548 2023-07-08 08:22:51.840553 d0a05f63-5874-450e-ae23-374932707a39 {"pid": "5482", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/249129019"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:51.944595 2023-07-08 08:22:51.944598 0d1f1c72-5305-4652-9dd6-a7bef5b46578 {"pid": "5483", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/24913344X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:52.128693 2023-07-08 08:22:52.1287 0cfb4a5b-9dc6-4487-997b-7e4d7da9f9ba {"pid": "5485", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/249311461"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:52.196139 2023-07-08 08:22:52.196142 6ab8f216-f61c-4e58-9328-0fa495d07847 {"pid": "5486", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/249406845"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:50.06917 2023-07-08 10:23:57.91847 5a6891c5-3915-4f36-a01d-1e7826f98e40 {"pid": "5463", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244888558"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1006149198207974940002"} 2 -2023-07-08 08:22:50.545134 2023-07-08 10:26:22.294778 65275c93-a3cf-4281-a531-c61613fca30b {"pid": "5468", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/24507869X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1042159474312827661844"} 2 -2023-07-08 08:22:50.633041 2023-07-08 10:26:35.319063 eefe6391-fd0d-4de9-929f-cee1d3f7f749 {"pid": "5469", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/24515969X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1051159474312827661846"} 2 -2023-07-08 08:22:50.730708 2023-07-08 10:26:44.971501 78b62688-6dfd-4870-af5f-9e3f92b52515 {"pid": "5470", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/245200142"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1054159474339527662132"} 2 -2023-07-08 08:22:50.450044 2023-07-08 10:26:54.009152 ea50d52f-0335-4272-8cbf-4a048a5745cb {"pid": "5467", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/245054200"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1061159474416927662154"} 2 -2023-07-08 08:22:51.561364 2023-07-08 10:27:24.485508 3f6cda2f-f2f0-4181-b94a-afa838ae5f5e {"pid": "5479", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/248958445"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106950642"} 2 -2023-07-08 08:22:52.043514 2023-07-08 10:29:04.202088 d857a8b7-afaf-4435-abb9-aa68c16e59a8 {"pid": "5484", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/249284472"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109160243001252432491"} 2 -2023-07-08 08:22:51.354017 2023-07-08 10:30:25.327737 d0d936c4-7d96-4e21-91f8-badd4b81eb7a {"pid": "5477", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/248391038"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111159697551503310057"} 2 -2023-07-08 08:22:52.283879 2023-07-08 08:22:52.283886 4ca753ed-ff7f-4d2f-8e57-826a443427fe {"pid": "5487", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/249486504"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:52.382397 2023-07-08 08:22:52.382406 fb94f2f3-628d-402c-913e-6ad5a599de3e {"pid": "5488", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/249730375"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:52.47349 2023-07-08 08:22:52.473498 48817927-42e0-424f-ba8a-6433d21a5600 {"pid": "5489", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/249743523"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:52.562122 2023-07-08 08:22:52.562129 44fef5e3-a06d-4a93-9150-ddf0fc9bac9c {"pid": "5490", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/249775441"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:52.657641 2023-07-08 08:22:52.657654 b06d1282-e053-4ffa-a31e-1cbf2a9d0347 {"pid": "5491", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/249825074"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:52.748286 2023-07-08 08:22:52.74829 f36a5081-99b0-4825-b370-976f5c14357a {"pid": "5492", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/249834472"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:52.828819 2023-07-08 08:22:52.828824 937240ce-c461-43dd-8406-542effd64abd {"pid": "5493", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/249952378"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:52.919578 2023-07-08 08:22:52.919588 e337704a-b221-4070-8449-590ca96e9cd8 {"pid": "5494", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/249981394"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:53.002819 2023-07-08 08:22:53.002825 777a2d11-443c-4b64-8349-b382d4f9451e {"pid": "5495", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/250341611"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:53.093939 2023-07-08 08:22:53.093949 af5bb319-354c-4850-a8c6-89d803c5d2a4 {"pid": "5496", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/250364913"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:53.197291 2023-07-08 08:22:53.1973 19c0a476-2f62-43a2-9d1e-5f7d14bf0c8e {"pid": "5497", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/250368196"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:53.290441 2023-07-08 08:22:53.290451 eb1a108c-991c-4fbc-9d5e-3ad706addffe {"pid": "5498", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/250382598"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:53.377681 2023-07-08 08:22:53.37769 a9fb2e58-b407-4b03-8550-6d100a723776 {"pid": "5499", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/250383926"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:53.456338 2023-07-08 08:22:53.456341 60ef0b4f-a904-44b5-88aa-55f46327d3e2 {"pid": "5500", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/250384183"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:53.545069 2023-07-08 08:22:53.545074 702daa58-bb98-40cd-b454-ab8892b7f8ab {"pid": "5501", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/250397072"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:53.69784 2023-07-08 08:22:53.697848 4a4ef858-f1e1-47e8-be5e-b08725a2cc18 {"pid": "5503", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/250416468"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:53.854675 2023-07-08 08:22:53.854678 ad66a4fb-3059-4356-b8de-cf649b57fd4d {"pid": "5505", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/250599325"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:53.940844 2023-07-08 08:22:53.940853 d3df44a7-ba57-46a8-a6ea-d7fb95115e06 {"pid": "5506", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/250603187"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:54.031558 2023-07-08 08:22:54.031565 70ec90c1-8792-43aa-867b-571b04755417 {"pid": "5507", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/250620499"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:54.327414 2023-07-08 08:22:54.327422 de0fb83e-8edc-49ba-aca3-7793a1c6f972 {"pid": "5510", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/250680505"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:54.41421 2023-07-08 08:22:54.414217 ffc30849-b7f9-4a1e-89e8-18a2e96b9cac {"pid": "5511", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/250907801"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:54.506396 2023-07-08 08:22:54.506406 4a15da31-2e42-4f52-8b65-b7c7b4cb680e {"pid": "5512", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/250949903"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:54.598555 2023-07-08 08:22:54.598562 e907cbb5-58e5-4eb0-a6aa-7cc998c66e64 {"pid": "5513", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251014878"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:54.840324 2023-07-08 08:22:54.840329 954e1764-060b-4201-97a4-8ee31b35fa93 {"pid": "5515", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251138607"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:54.129972 2023-07-08 10:26:40.520301 0bd6275f-96f8-440a-87be-342b6608d675 {"pid": "5508", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/250649691"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105160789614402680577"} 2 -2023-07-08 08:22:53.618552 2023-07-08 10:29:04.609618 4d8f6b37-fe6b-422e-87b2-ea0a7a31d7df {"pid": "5502", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/250402823"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109160789613902680418"} 2 -2023-07-08 08:22:54.762461 2023-07-08 10:28:44.218014 3d117133-39af-459b-9967-e4153830450b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/156719029"}, "pid": "5514", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251131807"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108801436"} 3 -2023-07-08 08:22:54.937796 2023-07-08 10:29:04.957888 d58f273a-55f1-47c9-b729-67b057639e76 {"pid": "5516", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251195627"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109161028919723741132"} 2 -2023-07-08 08:22:53.781854 2023-07-08 10:29:33.813661 c90cb177-3e2f-4b17-b8ca-42c6a7be0124 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1220644811"}, "pid": "5504", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/250507617"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1101160486104805180002"} 3 -2023-07-08 08:22:55.100706 2023-07-08 08:22:55.10071 9bb25c1f-0d5d-4e7f-92cb-0cc50303baf3 {"pid": "5517", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251278492"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:55.169114 2023-07-08 08:22:55.169117 3fbefc86-51dd-49e6-823a-a802a118aabf {"pid": "5518", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251314677"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:55.257892 2023-07-08 08:22:55.2579 15b5ff7d-f29c-4f04-a1f0-c144b8f7c79a {"pid": "5519", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251360164"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:55.340272 2023-07-08 08:22:55.340285 fee6f406-ebc9-43f4-a9e0-ea553905d4b5 {"pid": "5520", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251394581"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:55.415906 2023-07-08 08:22:55.415908 684c691a-9fe4-476d-ad4f-6fa931a462e7 {"pid": "5521", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251396312"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:55.493313 2023-07-08 08:22:55.493326 969415ec-3acb-43a7-995d-b574ae56d8a7 {"pid": "5522", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251411699"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:55.577257 2023-07-08 08:22:55.577264 6d46ab9a-68c8-4aa1-a789-6264817e9c4b {"pid": "5523", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251429180"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:55.645973 2023-07-08 08:22:55.645976 c48ba722-8555-4159-bdf1-44b931a1913c {"pid": "5524", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251432122"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:55.723539 2023-07-08 08:22:55.723548 4ba1b15b-d5c8-4bb1-b844-8d5be0669753 {"pid": "5525", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251443361"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:55.809742 2023-07-08 08:22:55.809746 4b3785b8-3a33-4d29-8c51-10ab6b0267d8 {"pid": "5526", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251455394"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:55.890737 2023-07-08 08:22:55.890749 6e4bc3e7-64c0-4005-8925-5dc75ceab80e {"pid": "5527", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251520528"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:55.979532 2023-07-08 08:22:55.979535 b46c9f77-69d0-4288-b6bf-6910d196256f {"pid": "5528", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25154091X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:56.073003 2023-07-08 08:22:56.073014 a480e2a2-c6a7-4d89-8ab8-a894c9a183fe {"pid": "5529", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25156584X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:56.152228 2023-07-08 08:22:56.152232 564533da-4e97-429e-ad57-fa4b56106ab2 {"pid": "5530", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25158917X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:56.218184 2023-07-08 08:22:56.218192 8f7cd063-0218-40e5-8dd7-d8fcb2b2cbab {"pid": "5531", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251615014"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:56.307243 2023-07-08 08:22:56.307251 63f99931-8861-4f37-a359-dca515de2a44 {"pid": "5532", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251625338"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:56.4883 2023-07-08 08:22:56.488311 b00f40b1-7b07-49ac-ac96-697f7b95b337 {"pid": "5533", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251650375"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:56.564496 2023-07-08 08:22:56.564499 007a67ca-a733-4e9e-83e6-aef1fa6ee1cb {"pid": "5534", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251660346"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:56.641866 2023-07-08 08:22:56.64187 86eade6e-9016-4427-985d-31e851ad60a7 {"pid": "5535", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251871533"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:56.731054 2023-07-08 08:22:56.731065 b5dbf058-2a28-4c0f-8b3d-fe998c64c4a3 {"pid": "5536", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/252252799"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:56.827199 2023-07-08 08:22:56.827203 16d3c023-c6ba-447d-bf93-d3e704dd3713 {"pid": "5537", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25234717X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:56.9216 2023-07-08 08:22:56.921611 e37507a6-02aa-4ad5-a930-d0db5a0c8028 {"pid": "5538", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/252382781"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:57.011443 2023-07-08 08:22:57.011452 c31259e6-f8e7-47f6-8586-8c25df1edbbf {"pid": "5539", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/252388208"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:57.116783 2023-07-08 08:22:57.116786 b30f74b7-ca84-43df-97bd-24dd5a4af53d {"pid": "5540", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/252426398"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:57.212681 2023-07-08 08:22:57.212692 bfb0c444-9d5a-4e2f-8996-ff0d7db00bbd {"pid": "5541", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/252437888"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:57.29637 2023-07-08 08:22:57.296375 2291851c-814e-4238-8331-049d8aa06410 {"pid": "5542", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/252443748"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:57.381601 2023-07-08 08:22:57.381609 9f50fc53-ac95-43b0-a596-8366c5edd5b1 {"pid": "5543", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/252462599"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:57.460259 2023-07-08 08:22:57.460263 460476cb-9119-4b41-aa03-966d223aace3 {"pid": "5544", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25256541X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:57.537548 2023-07-08 08:22:57.537556 ce6e6d80-d05e-45a6-b3f7-ed63a829dff3 {"pid": "5545", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25268088X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:57.620563 2023-07-08 08:22:57.620574 0804e194-e427-4979-96a5-c9eda0d3da16 {"pid": "5546", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/252755294"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:57.71777 2023-07-08 08:22:57.717778 57010bd2-bffd-42bc-bae2-30f2168bdbfb {"pid": "5547", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/252764277"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:57.79471 2023-07-08 08:22:57.794714 0dd71d0d-a954-4703-ac8b-e142d0de1886 {"pid": "5548", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/252855477"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:57.871685 2023-07-08 08:22:57.871697 dd53cf32-11dc-47c4-bb58-445a2cce1af7 {"pid": "5549", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/252916263"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:57.953114 2023-07-08 08:22:57.953126 e84f490a-076c-4e3e-a844-696cb08031b9 {"pid": "5550", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25295114X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:58.034356 2023-07-08 08:22:58.034365 26ff1dd4-ab57-40d5-9bb2-b77431e21862 {"pid": "5551", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25304653X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:58.218298 2023-07-08 08:22:58.218306 2c70c5bd-a374-439c-a093-2005da3e62ee {"pid": "5553", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/253180627"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:58.307685 2023-07-08 08:22:58.307694 6fe44660-7388-45d2-a503-50f0437502da {"pid": "5554", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/253203155"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:58.393428 2023-07-08 08:22:58.393432 c389d518-a211-4eb4-b433-eb0a72a070db {"pid": "5555", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25322859X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:58.477674 2023-07-08 08:22:58.477683 d95f59f8-d318-4bf9-83e2-7fa372b31ada {"pid": "5556", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25324403X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:58.571086 2023-07-08 08:22:58.571095 61444a54-277c-49dc-8cdf-93ce238c8d5c {"pid": "5557", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/253263298"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:58.733778 2023-07-08 08:22:58.733781 8f909baf-6d7d-4cf0-9fb2-2950906dadea {"pid": "5559", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/253610958"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:58.831091 2023-07-08 08:22:58.831101 65c45396-97a6-4a77-8fc7-f7ab8b834149 {"pid": "5560", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/253613957"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:58.917744 2023-07-08 08:22:58.917747 9c814cd3-46c7-45f9-b80b-60c4039148c9 {"pid": "5561", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/253654041"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:59.014101 2023-07-08 08:22:59.014109 6c2a95c3-08c3-4f7e-8b95-0e6245244e7e {"pid": "5562", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/253760844"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:59.192885 2023-07-08 08:22:59.192895 e8f09a48-3a53-469f-8597-92f6293aeec1 {"pid": "5564", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/253814103"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:59.269736 2023-07-08 08:22:59.26974 32273e36-80f3-4930-a4d4-1871af904dbc {"pid": "5565", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/253879965"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:59.630936 2023-07-08 08:22:59.630949 83dcd367-fd21-4e0f-adb4-f6b911f85f3e {"pid": "5568", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254110754"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:59.711503 2023-07-08 08:22:59.711512 afe8f9ba-5f18-418d-a239-58efae270833 {"pid": "5569", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254146279"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:59.796942 2023-07-08 08:22:59.796951 8df4dc7b-cbf5-459e-ab4f-272803ebc13c {"pid": "5570", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254215696"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:59.894798 2023-07-08 08:22:59.894805 dcc3333d-2769-4590-87ed-5ec1274c9b4a {"pid": "5571", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254232787"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:59.979547 2023-07-08 08:22:59.979556 86394fbe-6723-41a5-8599-5cd9497abec6 {"pid": "5572", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254344445"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:00.152392 2023-07-08 08:23:00.152396 d3a1751b-8863-4972-997e-07c8751fb68e {"pid": "5574", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254391508"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:22:59.449257 2023-07-08 10:24:37.001685 f8542c0a-11d2-4672-a5fd-90ce413b5fb8 {"pid": "5566", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/253973031"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1014162608710749820006"} 2 -2023-07-08 08:22:59.111364 2023-07-08 10:27:35.324695 c775989a-4521-4be2-93ca-3833048b6f70 {"pid": "5563", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/253765005"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107161511999170560400"} 2 -2023-07-08 08:22:58.651243 2023-07-08 10:27:35.674827 c292d7c4-14fa-4afc-b6c9-66704ad19b11 {"pid": "5558", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/253507790"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107161512132470561954"} 2 -2023-07-08 08:22:59.54217 2023-07-08 10:30:09.11888 d01870c2-add7-4eb1-bf1a-2416172837fd {"pid": "5567", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254069606"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110620957"} 2 -2023-07-08 08:22:58.139131 2023-07-08 10:30:25.764368 34ffc58b-538c-4e42-b377-833c36cb2158 {"pid": "5552", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/253143462"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111161511999970560377"} 2 -2023-07-08 08:23:00.227007 2023-07-08 10:30:26.166735 d0876d31-821e-4057-a517-7bac6cf02bff {"pid": "5575", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254418422"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111161816197527720917"} 2 -2023-07-08 08:23:00.077177 2023-07-08 10:30:26.546304 1c768147-e5cb-4b0d-b2f2-d920c6502cf3 {"pid": "5573", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254374557"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111161816312527721610"} 2 -2023-07-08 08:23:00.304146 2023-07-08 08:23:00.304154 e2174199-e7c9-4bcb-a05d-9ec2a934fe7b {"pid": "5576", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254429521"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:00.395529 2023-07-08 08:23:00.395533 5888eb2c-033b-4c08-a613-e6bba3d29e50 {"pid": "5577", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254455565"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:00.466463 2023-07-08 08:23:00.466471 8eb4bae3-84d3-426f-890f-71c7332e8a86 {"pid": "5578", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254491758"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:00.546133 2023-07-08 08:23:00.546136 076a7840-ef62-4fb6-afc0-58b4815589d2 {"pid": "5579", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254522564"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:00.638075 2023-07-08 08:23:00.638085 1e00cf9a-5113-47de-ab74-2928d94ffff6 {"pid": "5580", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254587763"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:00.732862 2023-07-08 08:23:00.73287 6db36733-134b-4f0e-8f60-bea7cdbf25c4 {"pid": "5581", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254630618"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:00.963677 2023-07-08 08:23:00.963684 a4959580-af1e-4f99-bcb0-6ef2e9539cde {"pid": "5583", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254738591"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:01.054898 2023-07-08 08:23:01.054912 01407ff0-bb3e-44ae-b25a-ea6ca5bd3d86 {"pid": "5584", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254743048"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:01.137157 2023-07-08 08:23:01.137162 39d057cc-7050-4056-90b4-36b213928213 {"pid": "5585", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254747086"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:01.200983 2023-07-08 08:23:01.200986 a46aec46-0e23-428b-aa63-46cee46ae51a {"pid": "5586", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254775578"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:01.290407 2023-07-08 08:23:01.290415 487c2a7c-2630-476b-a299-29104033c353 {"pid": "5587", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254778569"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:01.403701 2023-07-08 08:23:01.403704 17907373-fd3b-4a91-bb96-bf1176b813d8 {"pid": "5588", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254816568"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:01.492933 2023-07-08 08:23:01.492941 1b35826f-10a8-441a-ae88-e9122f9dbe88 {"pid": "5589", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25483180X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:01.574053 2023-07-08 08:23:01.574057 df88db41-e2f2-4da6-bf75-58d0f344d726 {"pid": "5590", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254929192"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:01.653226 2023-07-08 08:23:01.65323 07616ce6-6913-48da-a7b3-1a56fd85bdd2 {"pid": "5591", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254941540"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:01.942318 2023-07-08 08:23:01.942326 3e16907f-ce82-4a40-bc51-62f54265ec2d {"pid": "5594", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/255028679"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:02.017944 2023-07-08 08:23:02.017954 3e822420-8406-4ff5-921e-8718b6aba877 {"pid": "5595", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25508255X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:02.111006 2023-07-08 08:23:02.111009 f418c0e3-9d9a-45c9-b159-96b49c20e81d {"pid": "5596", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/255083556"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:02.195821 2023-07-08 08:23:02.195829 4eed65b5-0579-47ea-b38d-10af05b8a526 {"pid": "5597", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/255144490"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:02.382988 2023-07-08 08:23:02.382996 af9c6bd6-32dc-4d31-91ca-2c95bfb95b4d {"pid": "5599", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/255348517"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:02.474884 2023-07-08 08:23:02.474895 17f06580-7839-4b38-8f6f-ac545c0011ae {"pid": "5600", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/255361343"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:02.561449 2023-07-08 08:23:02.561457 86647e6d-7819-4fd1-8395-b89668cd320f {"pid": "5601", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/255386419"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:02.644384 2023-07-08 08:23:02.644388 67564977-caa3-4c15-9914-180f3394ea7d {"pid": "5602", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/255415184"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:02.724103 2023-07-08 08:23:02.724111 4063057a-1ec4-49f0-9857-0a104b7b89e7 {"pid": "5603", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/255430760"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:02.810086 2023-07-08 08:23:02.810094 acfa7bde-13f0-414d-be0c-0013cfedd780 {"pid": "5604", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/255435169"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:02.885058 2023-07-08 08:23:02.885061 ad996b56-e067-4340-aa4e-9edce517b0cb {"pid": "5605", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/255444478"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:02.96853 2023-07-08 08:23:02.968537 50a4469b-cf29-4c71-adfc-b1987c97d4dc {"pid": "5606", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/255445075"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:01.856481 2023-07-08 10:24:22.770054 e83c34d5-9cc6-469b-b8a1-605a25b686ff {"pid": "5593", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254994024"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101162060268351400089"} 2 -2023-07-08 08:23:01.760495 2023-07-08 10:29:45.305887 7d4d4517-9d0e-4ffb-b6ed-a411bd462654 {"pid": "5592", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254976719"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110162060266851400491"} 2 -2023-07-08 08:23:02.285605 2023-07-08 10:29:46.113421 4eab0f9e-95ee-4ae6-b639-eb6aeec87ab0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/171115058"}, "pid": "5598", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/255241518"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110162365729725460323"} 3 -2023-07-08 08:23:03.055296 2023-07-08 08:23:03.055304 67eb6f92-80df-4b08-a71f-ff665893287f {"pid": "5607", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/255453876"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:03.146406 2023-07-08 08:23:03.14641 116de26d-fce8-4151-b23b-47b4f3b19799 {"pid": "5608", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/255473532"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:03.245759 2023-07-08 08:23:03.245767 7cf0e51c-0cf5-4b82-989d-76833f535e26 {"pid": "5609", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/255495269"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:03.349027 2023-07-08 08:23:03.34903 1aac52ca-19ad-41ee-9732-a24658cb0180 {"pid": "5610", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/255554338"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:03.436115 2023-07-08 08:23:03.436123 3d969698-200f-405d-9bc7-9fdc610c2c9b {"pid": "5611", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/255666594"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:03.527224 2023-07-08 08:23:03.527232 58456d45-635d-4624-b4f3-8f3e5deac91a {"pid": "5612", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/255733151"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:03.74634 2023-07-08 08:23:03.746347 0f360eb7-fd5f-4e64-ba3f-f92688944e73 {"pid": "5614", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/255939248"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:03.816207 2023-07-08 08:23:03.816221 63cb923d-07d0-46bf-95f8-25fe11f11827 {"pid": "5615", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/255998880"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:03.907342 2023-07-08 08:23:03.907351 99cf7723-1530-4676-b7d4-08019a9cfa6e {"pid": "5616", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/256075980"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:03.990946 2023-07-08 08:23:03.990954 ed063723-09a8-4dc8-a35f-8e2f741f9a25 {"pid": "5617", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/256123829"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:04.080963 2023-07-08 08:23:04.080974 7ece07b2-98f4-4c33-9953-033777095ea1 {"pid": "5618", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25623650X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:04.258398 2023-07-08 08:23:04.258406 24db3c90-acb4-46ff-a9e8-8a5d904d4018 {"pid": "5619", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25640772X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:04.34649 2023-07-08 08:23:04.346499 c65c703c-5c70-47b4-91dc-a2ec0528ea1c {"pid": "5620", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/256435847"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:04.538285 2023-07-08 08:23:04.538293 0ab6b196-9529-4185-a578-5ba5c8e37404 {"pid": "5622", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25650945X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:04.631852 2023-07-08 08:23:04.631856 b92f76c2-b05b-4d0a-adb3-ba4ea26b5cd9 {"pid": "5623", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/256515417"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:04.706822 2023-07-08 08:23:04.706825 32d2e2f7-e223-40b1-b8f8-2fbf8c996252 {"pid": "5624", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/256606625"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:04.796393 2023-07-08 08:23:04.796399 4dc39aae-0749-48c7-b405-1fb0dea17f42 {"pid": "5625", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/256607982"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:04.866938 2023-07-08 08:23:04.866941 47ef4a9c-f2a2-458b-8abb-ff45603242e7 {"pid": "5626", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/256622302"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:04.969212 2023-07-08 08:23:04.96922 10bd7eae-e569-453b-be0e-b2c352f76499 {"pid": "5627", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/256653992"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:05.06083 2023-07-08 08:23:05.06084 baf4bfdc-ad16-475b-a58d-ebdd4db56d8d {"pid": "5628", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/256728682"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:05.146361 2023-07-08 08:23:05.146365 c7d4a1d6-98d6-4ce6-8f43-73b537093bdd {"pid": "5629", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/256767483"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:05.230895 2023-07-08 08:23:05.230901 602bbce8-3ca9-4e0f-a6a4-61bbbf005a10 {"pid": "5630", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/256769044"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:05.417281 2023-07-08 08:23:05.417284 9b022cab-64d5-43e0-b06f-1e0e3a905ec5 {"pid": "5631", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/256931038"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:05.485451 2023-07-08 08:23:05.485455 fad2cdae-3f14-4750-ac56-023ed7ae9a78 {"pid": "5632", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/256938660"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:05.707993 2023-07-08 08:23:05.707997 8fe18f74-1c27-445c-ac21-424df175cb99 {"pid": "5635", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/257161775"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:05.787645 2023-07-08 08:23:05.787649 51630339-7696-45ad-a7e0-81a8d873d269 {"pid": "5636", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/257283994"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:05.638855 2023-07-08 10:27:36.310649 53ac73bd-4624-4132-8da6-97c4abdc02f6 {"pid": "5634", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/256977178"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107163155777901310737"} 2 -2023-07-08 08:23:05.564061 2023-07-08 10:29:46.511077 4593c74a-ab6a-4b9f-9a80-66125ebf7162 {"pid": "5633", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/256975485"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110163155782701311022"} 2 -2023-07-08 08:23:03.642421 2023-07-08 10:30:26.995756 7986e9e5-6f2c-44a0-84d6-b16c4e2cc48a {"pid": "5613", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/255923058"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111162606661449532487"} 2 -2023-07-08 08:23:04.450535 2023-07-08 10:31:23.744075 87042b6d-0176-47c5-bac5-24ba0741c6bf {"pid": "5621", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/256458391"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112162842453073042440"} 2 -2023-07-08 08:23:05.868883 2023-07-08 08:23:05.868887 3a7028a4-9ed9-4ff3-a55d-d870af44b77a {"pid": "5637", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/257341730"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:06.021057 2023-07-08 08:23:06.021061 2cb2a340-5012-4d4d-b848-8cfc759cd69c {"pid": "5639", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/257348328"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:06.181986 2023-07-08 08:23:06.181989 963510e4-3c06-468c-b889-720038c7f383 {"pid": "5641", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/257433422"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:06.248833 2023-07-08 08:23:06.248836 fdbb33cc-a871-4242-b4f0-822230249390 {"pid": "5642", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/257473459"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:06.320975 2023-07-08 08:23:06.320978 d2b43002-a93e-40a8-adde-3965f7d7efe5 {"pid": "5643", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/257484167"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:06.403988 2023-07-08 08:23:06.403991 6f74f2d5-a36b-4d78-b8db-677120b284bf {"pid": "5644", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/257484434"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:06.481689 2023-07-08 08:23:06.4817 e0484649-87e1-4c2f-8ea0-cb2426250627 {"pid": "5645", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/257494138"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:06.573675 2023-07-08 08:23:06.573846 79662854-8e4b-4222-b8a5-5a2bf27b4deb {"pid": "5646", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25752214X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:06.660402 2023-07-08 08:23:06.660405 0067bbbb-4b05-4d8e-9044-62ae857765f2 {"pid": "5647", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/257572481"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:06.835093 2023-07-08 08:23:06.835131 6968d2a9-9c6b-4fbf-b44c-f8cfbcb7a235 {"pid": "5649", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/257647007"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:07.027169 2023-07-08 08:23:07.027177 af494b39-1db3-40c5-a7c7-89944eb1a1ba {"pid": "5651", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25773855X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:07.112048 2023-07-08 08:23:07.112052 2dfeb123-cd14-41b4-a91e-47566bd79099 {"pid": "5652", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/257862544"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:07.294401 2023-07-08 08:23:07.29441 77f4e5cc-e2f4-4c1c-9d61-461694266e32 {"pid": "5654", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/257908870"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:07.399598 2023-07-08 08:23:07.399604 2118c2ba-19bf-41f5-b059-0cd07f162cdf {"pid": "5655", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/257937730"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:07.49016 2023-07-08 08:23:07.490165 5a8efeae-75d1-4e66-be56-04d13a67a18d {"pid": "5656", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/257974350"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:07.589842 2023-07-08 08:23:07.58985 bc9247ad-cd5e-47f9-8555-f2a688616724 {"pid": "5657", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25808524X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:07.771022 2023-07-08 08:23:07.771031 6981555e-79f5-4f90-917e-dfabdfaf79ec {"pid": "5659", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/258183659"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:07.874116 2023-07-08 08:23:07.874118 884d2ef9-cd6f-4386-ae73-bc3ef27b1457 {"pid": "5660", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/258220724"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:08.18453 2023-07-08 08:23:08.184533 950f91e0-1b1f-4bdb-8066-a09bd96e9363 {"pid": "5663", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/258291524"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:08.546386 2023-07-08 08:23:08.546514 93e273fe-3d74-4121-b5a8-ec518a725151 {"pid": "5666", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/258363355"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:08.666152 2023-07-08 10:23:36.824612 c3ca14b6-9b44-4c08-bcb2-34182a90ddfe {"pid": "5667", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/258385138"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100163936570700832446"} 2 -2023-07-08 08:23:08.289798 2023-07-08 10:24:08.989769 0b513190-f984-4578-abe8-616330f69cf3 {"pid": "5664", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/258322020"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10096007"} 2 -2023-07-08 08:23:08.103488 2023-07-08 10:23:47.429674 21169fb6-3d2b-4f72-88ae-099d50c45dab {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/135226082"}, "pid": "5662", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/258266457"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100319661"} 3 -2023-07-08 08:23:08.431448 2023-07-08 10:24:09.794931 747aade2-7146-4bff-96f9-b9a1a777a1a2 {"pid": "5665", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/258325089"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10097349"} 2 -2023-07-08 08:23:06.747495 2023-07-08 10:26:40.912391 6e17cc5f-5c6b-495d-b1ee-f72f19ca66ed {"pid": "5648", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/257572732"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105163408655700090317"} 2 -2023-07-08 08:23:07.683148 2023-07-08 10:27:01.087347 393e9593-7788-4c5e-afc5-e1385337a741 {"pid": "5658", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/258134178"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106163629098823462700"} 2 -2023-07-08 08:23:06.106709 2023-07-08 10:28:22.944013 47365570-4b49-4b43-8e87-f893af0c71ec {"pid": "5640", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/257382968"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108163408673100090712"} 2 -2023-07-08 08:23:07.199908 2023-07-08 10:29:46.921973 b1a1c996-5eb7-486c-8344-f4cc85d5bdfc {"pid": "5653", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/257890505"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110163628562223460324"} 2 -2023-07-08 08:23:05.94898 2023-07-08 10:30:53.457639 84696766-87d0-4a57-9b8f-9346d89fad38 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1212115716"}, "pid": "5638", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/257342818"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11159276739807951264"} 3 -2023-07-08 08:23:08.7752 2023-07-08 08:23:08.775208 8a9ca200-7984-43f8-9ada-cbcf1bdead6f {"pid": "5668", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/258433914"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:09.003808 2023-07-08 08:23:09.003821 5f160114-c26d-4143-8058-a30601dd8d35 {"pid": "5670", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25844939X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:09.108463 2023-07-08 08:23:09.108474 023617d4-9b7d-4741-88eb-b0d124c20c26 {"pid": "5671", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/258454458"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:09.223589 2023-07-08 08:23:09.223599 a1892606-b747-4baa-b324-36d728aaaecf {"pid": "5672", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/258520191"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:09.336606 2023-07-08 08:23:09.336614 3917f825-7223-457d-b9ef-e8f797e82c0a {"pid": "5673", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/258528079"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:09.452563 2023-07-08 08:23:09.452574 643ae0e0-439e-4f41-9b08-a2c42b7b74c8 {"pid": "5674", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/258546417"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:09.564571 2023-07-08 08:23:09.564585 7b33a06d-8bfa-49dd-9784-7427e962a202 {"pid": "5675", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/258552778"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:09.678591 2023-07-08 08:23:09.6786 57b2b683-f8d9-4589-9410-1207594cfadf {"pid": "5676", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/258575719"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:09.786149 2023-07-08 08:23:09.786159 490ac6eb-d2d6-4e18-bdeb-70ae16e29ad7 {"pid": "5677", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/258640731"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:09.903715 2023-07-08 08:23:09.903724 f484d51d-96b2-46b4-b859-a28eb598a1c8 {"pid": "5678", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/258645172"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:10.149298 2023-07-08 08:23:10.149306 8f5d9f63-dc37-451a-ba6f-fcadb54ce13d {"pid": "5680", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/259100056"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:10.262201 2023-07-08 08:23:10.262213 2bfca16c-47b0-435e-b49d-34249152aea6 {"pid": "5681", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/259230197"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:10.389695 2023-07-08 08:23:10.389707 adcb994e-4444-4064-bb9c-e2479c0934df {"pid": "5682", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/259270482"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:10.485541 2023-07-08 08:23:10.485554 8c822d8d-4ecc-4b01-91c4-1e82e78ac08d {"pid": "5683", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25929070X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:11.018618 2023-07-08 08:23:11.018626 43743f4c-6591-45ad-9fc6-5f7782fc43bb {"pid": "5687", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25943812X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:11.147475 2023-07-08 08:23:11.14749 6098ea4b-8761-41b1-b13a-5478a0b020a7 {"pid": "5688", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/259789798"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:11.266502 2023-07-08 08:23:11.266511 69175f58-f30d-4e7f-8d75-4f544022fb49 {"pid": "5689", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25982142X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:11.384265 2023-07-08 08:23:11.384273 a0c1727a-5ca2-4da3-82b7-40b79417dcec {"pid": "5690", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/259847127"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:11.516275 2023-07-08 08:23:11.516283 e4a1f4dd-264a-4993-96d3-95afdefa386f {"pid": "5691", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/259860778"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:11.631066 2023-07-08 08:23:11.631073 afa879c5-3243-4671-8525-d3015242a6dc {"pid": "5692", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/259863424"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:11.782731 2023-07-08 08:23:11.782738 3fc1152a-96d4-4e31-84e6-c01a3c1b36a0 {"pid": "5693", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/259907448"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:11.913168 2023-07-08 08:23:11.913177 331ae5f0-ccbe-477f-82ba-7e427ca11364 {"pid": "5694", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/259908142"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:12.03489 2023-07-08 08:23:12.034901 02cbfcd7-f3e8-4af9-8990-565c2db3a371 {"pid": "5695", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/259925993"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:12.192884 2023-07-08 08:23:12.1929 824920e0-e10d-476e-bf22-ea4d3f1b71a2 {"pid": "5696", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/259928844"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:12.332842 2023-07-08 08:23:12.332854 99952981-14b2-4c03-a519-9997ac925bb0 {"pid": "5697", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/259991724"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:12.487018 2023-07-08 08:23:12.487025 dda93458-757a-4120-ba35-8b8ec8b1faa2 {"pid": "5698", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260074969"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:08.896581 2023-07-08 10:26:21.089372 93eee564-2c19-4a2c-b90e-c968273afba7 {"pid": "5669", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/258437855"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104163936290200831584"} 2 -2023-07-08 08:23:10.603884 2023-07-08 10:28:23.319565 167e85cc-f6aa-4494-a3d4-d7f328b7e8b3 {"pid": "5684", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/259327735"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108164476716225912968"} 2 -2023-07-08 08:23:10.040431 2023-07-08 10:27:39.389857 d4d38723-3b23-4fcb-8501-1551e871c70d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1226111009"}, "pid": "5679", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/258645563"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107207789"} 3 -2023-07-08 08:23:10.90139 2023-07-08 10:31:24.105407 ba61de09-2921-4cb3-9aaf-8a7f79865a79 {"pid": "5686", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/259367516"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112164476730525912975"} 2 -2023-07-08 08:23:12.595715 2023-07-08 08:23:12.595722 52417a87-2fee-4d4a-be05-1e5dc7daab48 {"pid": "5699", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/26009773X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:12.919313 2023-07-08 08:23:12.919321 b8b0b15e-fa6f-4214-ae71-6fc1531dd30c {"pid": "5702", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260322393"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:13.039297 2023-07-08 08:23:13.039308 ddde9015-0490-433a-9078-b13161cb9f50 {"pid": "5703", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/26040862X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:13.161434 2023-07-08 08:23:13.161442 e14615b6-99bd-4fae-b348-344d258f9321 {"pid": "5704", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260480584"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:13.261494 2023-07-08 08:23:13.261506 d8f978cd-79f6-4b26-b17c-aac3cdee2876 {"pid": "5705", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260499021"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:13.365094 2023-07-08 08:23:13.365103 916427a9-f7c1-451b-a02c-7f3dda6af812 {"pid": "5706", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260505269"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:13.486393 2023-07-08 08:23:13.486406 c1f92b36-1f09-405c-8c88-a266583ac7c5 {"pid": "5707", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260578045"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:13.587373 2023-07-08 08:23:13.587381 10d3c6e9-7fbb-482a-8a5a-026b719107f1 {"pid": "5708", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260582808"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:13.940255 2023-07-08 08:23:13.940265 9472cdbc-5996-4691-b69a-8ffe88a8a4c6 {"pid": "5711", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260775967"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:14.194616 2023-07-08 08:23:14.194627 35aaf1ba-06ca-43b9-8612-5567068f62ae {"pid": "5713", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260807710"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:14.310522 2023-07-08 08:23:14.310536 cf31f014-e345-4bf9-990e-114cdddd7467 {"pid": "5714", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260812374"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:14.741562 2023-07-08 08:23:14.741575 e14e92cf-6286-43d6-9253-415f5deeb1f4 {"pid": "5718", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/26091164X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:14.844193 2023-07-08 08:23:14.844202 d6da4599-9237-4b6c-8e93-12d0c8e3aacf {"pid": "5719", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260925810"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:14.957688 2023-07-08 08:23:14.957697 96e4a003-63bc-4054-a85b-73f9673d8876 {"pid": "5720", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260929905"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:15.06654 2023-07-08 08:23:15.066546 47afe77c-b9f5-4c83-8354-f3969e1c2e2e {"pid": "5721", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260939587"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:15.169082 2023-07-08 08:23:15.169091 1520b5f8-63e4-4c32-bdf3-ee5125afacd9 {"pid": "5722", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260943193"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:15.277759 2023-07-08 08:23:15.277768 b551d4e1-2243-4268-89a4-e0a8fef48d98 {"pid": "5723", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260977756"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:15.494338 2023-07-08 08:23:15.494348 78864d9d-5381-46ed-b24b-9dfe195ee30d {"pid": "5725", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260995223"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:15.600788 2023-07-08 08:23:15.6008 55b4eb74-d2fa-493e-b3ee-0c6f0e553915 {"pid": "5726", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/261067079"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:15.699313 2023-07-08 08:23:15.699321 9530e8ed-4dba-44c6-8e0f-e3e067829713 {"pid": "5727", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/261116274"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:15.801598 2023-07-08 08:23:15.801608 c88523a4-9dbe-4140-8e03-9669abfaa099 {"pid": "5728", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/261144588"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:14.652068 2023-07-08 10:23:37.172021 024c9a2c-ae03-4737-8bb7-eeba18ee250f {"pid": "5717", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260877484"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100164959500324020776"} 2 -2023-07-08 08:23:14.07519 2023-07-08 10:25:08.513851 0ce2bd35-7453-40e6-9c17-353514b6e284 {"pid": "5712", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260782955"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102164959504924021058"} 2 -2023-07-08 08:23:12.815228 2023-07-08 10:25:44.923432 5a85667c-67b8-4543-a1af-aeca7adcdaa2 {"pid": "5701", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260238570"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103165322631016020041"} 2 -2023-07-08 08:23:13.707873 2023-07-08 10:26:41.29245 6eedb75d-2772-4988-b6db-d7f9bdfd96c0 {"pid": "5709", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260592404"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105165322558816020634"} 2 -2023-07-08 08:23:14.481439 2023-07-08 10:27:36.688819 37850a67-4c9a-4e05-8d49-ca7e42bf9539 {"pid": "5715", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260844578"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107164959491724020750"} 2 -2023-07-08 08:23:15.393875 2023-07-08 10:29:47.677854 9b374dad-eef0-498f-a426-8208726ef0b7 {"pid": "5724", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260987204"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110164960181924022794"} 2 -2023-07-08 08:23:15.92026 2023-07-08 10:30:27.857788 f0da67a3-b1f0-430c-acbc-c60a98338865 {"pid": "5729", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/261155210"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111164960128624022342"} 2 -2023-07-08 08:23:13.828577 2023-07-08 10:31:24.511822 e8330100-19e8-4385-b905-49463c67c2e2 {"pid": "5710", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260735353"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112164959504824020059"} 2 -2023-07-08 08:23:16.03641 2023-07-08 08:23:16.036419 e1c3c5b1-f935-4c45-b4dc-40ceaa901452 {"pid": "5730", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/26124096X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:16.14013 2023-07-08 08:23:16.140137 57047616-e153-4d9e-9b8e-13fa21512f45 {"pid": "5731", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/261260987"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:16.246549 2023-07-08 08:23:16.246559 a43dd22b-ebb7-4124-8a7f-a73458500281 {"pid": "5732", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/261270206"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:16.353127 2023-07-08 08:23:16.353136 67ac0004-b424-4842-a8fc-8648b77e0a4f {"pid": "5733", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/261515632"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:16.459992 2023-07-08 08:23:16.460005 4209f33e-87f1-4f20-93bf-14c12f19dc4e {"pid": "5734", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/261606441"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:16.564606 2023-07-08 08:23:16.56462 c1a071b9-8dab-4094-ae31-81b912841509 {"pid": "5735", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/261732722"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:16.678626 2023-07-08 08:23:16.678634 94305075-169c-498b-a499-209fa48c5e99 {"pid": "5736", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/261805762"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:16.799174 2023-07-08 08:23:16.799185 2cac1c72-d6f9-458f-a394-ae50030041ac {"pid": "5737", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/261809911"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:17.042477 2023-07-08 08:23:17.042487 24d236a1-f7bb-411f-a1d3-e57dacb86d6f {"pid": "5739", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/261876007"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:17.150673 2023-07-08 08:23:17.150682 80a9f79e-7d51-404d-aa69-e7f0ad57d250 {"pid": "5740", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/261892169"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:17.252256 2023-07-08 08:23:17.252265 ba90107b-11c1-47da-a024-8689ea9b8fdb {"pid": "5741", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/261974580"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:17.354442 2023-07-08 08:23:17.354454 a0752678-5c11-4135-93c8-e3d194ff928b {"pid": "5742", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/26212369X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:17.46875 2023-07-08 08:23:17.468762 ea61db10-95c8-4ff9-b9e4-a8cb30c64ffa {"pid": "5743", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/26221007X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:17.568814 2023-07-08 08:23:17.568825 85a1cd93-a44f-442b-9177-1b0dd1591614 {"pid": "5744", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/262212129"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:17.67419 2023-07-08 08:23:17.674203 7b95b942-dca0-4bc3-9cff-84a4c048a207 {"pid": "5745", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/262213656"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:17.774304 2023-07-08 08:23:17.774316 2111bc14-4863-460c-81eb-296ebe454871 {"pid": "5746", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/262246619"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:17.984394 2023-07-08 08:23:17.984405 46517d68-50aa-4bca-806c-83db2419d668 {"pid": "5748", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/262286394"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:18.085316 2023-07-08 08:23:18.085324 4f42abd3-e1f9-4b0d-9fc1-536ebf68c59b {"pid": "5749", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/26232217X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:18.194248 2023-07-08 08:23:18.194259 8c171704-aaf0-401a-80e6-97998107bb7b {"pid": "5750", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/262328836"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:18.286477 2023-07-08 08:23:18.286486 e9c3166e-4672-4138-895b-c9e585659502 {"pid": "5751", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/262350459"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:18.392451 2023-07-08 08:23:18.392462 916dc16f-3cba-4d06-bcf3-ec67429f5a27 {"pid": "5752", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/262354659"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:18.7333 2023-07-08 08:23:18.733306 4a3f0ee4-e32c-48ae-a586-c1a64ee0b826 {"pid": "5755", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/262436574"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:18.858587 2023-07-08 08:23:18.858599 f062288d-a35c-40f6-abd4-fd9366cc58ad {"pid": "5756", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/262452979"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:18.966903 2023-07-08 08:23:18.966912 95220356-7730-45e9-8007-0966cc9f901b {"pid": "5757", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/262466724"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:19.200244 2023-07-08 08:23:19.200252 b36733e9-859b-4653-8d9c-99cf7ebdeafa {"pid": "5759", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/262471116"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:19.313134 2023-07-08 08:23:19.313149 ee90742b-9718-470b-8783-d8f0fc11e228 {"pid": "5760", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/262486636"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:16.922957 2023-07-08 10:25:05.166282 863d87f7-52f4-41d7-acba-6ca42441410a {"pid": "5738", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/261814176"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1021159474067827660894"} 2 -2023-07-08 08:23:19.090567 2023-07-08 10:25:08.842379 efcece15-6716-44eb-86a4-532951d51a1b {"pid": "5758", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/262469561"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102166002566775022443"} 2 -2023-07-08 08:23:18.516623 2023-07-08 10:26:41.63394 ba42d9ab-cba8-411b-8701-f26fafbce998 {"pid": "5753", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/262398516"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105166002494375022152"} 2 -2023-07-08 08:23:17.888188 2023-07-08 10:27:02.120919 2695e36f-76f0-4821-bda1-bbcc41c31db7 {"pid": "5747", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/262262940"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106166001783975020867"} 2 -2023-07-08 08:23:19.415681 2023-07-08 08:23:19.415692 081182c2-7374-4cce-b8b3-d693e162a472 {"pid": "5761", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/26249714X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:19.530524 2023-07-08 08:23:19.530533 ce4a8380-a998-456b-93f6-fd0b608a220e {"pid": "5762", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/262504391"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:19.635966 2023-07-08 08:23:19.635975 f85353bb-c6a4-4358-9f84-0793fe3661c5 {"pid": "5763", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/262615223"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:19.755459 2023-07-08 08:23:19.755465 bacc4d5b-9fc0-4a5c-a422-0d8e1e253725 {"pid": "5764", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/262645882"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:19.862894 2023-07-08 08:23:19.862906 0ef1b355-2681-4c39-b704-e05d76cd6100 {"pid": "5765", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/26282180X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:19.97353 2023-07-08 08:23:19.973543 a82e8d10-303d-4afa-bfda-bcc92f857de3 {"pid": "5766", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/26285242X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:20.080706 2023-07-08 08:23:20.080714 f198f030-57cf-4167-be7c-9afa63cd1320 {"pid": "5767", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/262888467"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:20.346951 2023-07-08 08:23:20.34696 003ce34a-9eeb-47e2-821c-9873c4122d05 {"pid": "5769", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/263195449"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:20.470286 2023-07-08 08:23:20.470296 a9bff400-7c4a-41d2-8337-8cd5fcf2d5a0 {"pid": "5770", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/263217442"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:20.587898 2023-07-08 08:23:20.587907 b31d2b59-6144-4adf-b628-b92457227a39 {"pid": "5771", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/263267466"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:20.690307 2023-07-08 08:23:20.690316 ab709cec-714f-47c1-8fd8-f12407fdebce {"pid": "5772", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/263445194"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:20.79836 2023-07-08 08:23:20.79837 f9e4d4df-41a5-4ff4-a23f-41fb2b258311 {"pid": "5773", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/26347318X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:20.920519 2023-07-08 08:23:20.920533 73d2d230-722c-47e8-99bd-d25325825fba {"pid": "5774", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/263491455"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:21.169968 2023-07-08 08:23:21.169976 90dfd6ae-9fcf-4bc7-a12e-f950bc455dc9 {"pid": "5776", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/263581780"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:21.277888 2023-07-08 08:23:21.277901 bf65e4e9-aa7d-41da-a720-4ff6be5f8dad {"pid": "5777", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/263587339"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:21.384044 2023-07-08 08:23:21.384055 6540f250-f506-4549-ae6c-8ae232139efd {"pid": "5778", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/263603652"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:21.485439 2023-07-08 08:23:21.485449 8679b694-67e0-4727-8cab-3f8aa0bcc38f {"pid": "5779", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/263626687"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:21.580008 2023-07-08 08:23:21.580015 05699cb0-62e7-4944-90ca-d21fe4735d0d {"pid": "5780", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/263671372"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:21.687491 2023-07-08 08:23:21.6875 83ed11e6-bf61-45ad-aecc-b51e0449b95d {"pid": "5781", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/263671887"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:21.80422 2023-07-08 08:23:21.804227 cfe5a864-baf7-41de-9014-ce9b1e4a3e73 {"pid": "5782", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/263682471"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:21.905005 2023-07-08 08:23:21.905016 db73abf4-0889-425c-9c7d-5cc0ab11e7e5 {"pid": "5783", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/263722198"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:24.009457 2023-07-08 08:23:24.00946 2531a940-008b-484b-9286-9c23e8afe222 {"pid": "5784", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000003203"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:24.101626 2023-07-08 08:23:24.101633 76505a3f-0f3f-47f1-b835-aaaf689e19f0 {"pid": "5785", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000010540"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:24.162587 2023-07-08 08:23:24.162591 4e3a4538-626a-408c-94af-15f344b5cc8e {"pid": "5786", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000011132"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:24.224078 2023-07-08 08:23:24.22408 b8708cbf-284f-464a-9ed0-69d49052593d {"pid": "5787", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000012165"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:24.310133 2023-07-08 08:23:24.310143 638e1c31-ffb6-427f-a4ad-543949c60711 {"pid": "5788", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000014216"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:24.413105 2023-07-08 08:23:24.413115 65549a1a-174d-4d19-be0d-783263168e29 {"pid": "5789", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000014650"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:24.635215 2023-07-08 08:23:24.635223 d8c40582-18d3-4fc0-b61b-b2a841fb64be {"pid": "5790", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000018483"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:21.055142 2023-07-08 10:28:23.713177 072f6036-eaa8-426c-9597-9e0978944180 {"pid": "5775", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/263502627"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108166060160180320569"} 2 -2023-07-08 08:23:24.733556 2023-07-08 08:23:24.733567 aa9481e0-89d8-4114-bf77-512620dc23da {"pid": "5791", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000018719"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:24.824304 2023-07-08 08:23:24.824313 e8a29237-00d7-4671-8f32-96520a692a7d {"pid": "5792", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000022042"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:24.916783 2023-07-08 08:23:24.916791 8625553e-33d3-4696-8664-d941327afc30 {"pid": "5793", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000023938"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:25.004011 2023-07-08 08:23:25.004019 3ea7c3c6-2836-4bc3-b962-c0c6500aaa18 {"pid": "5794", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000026444"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:25.100908 2023-07-08 08:23:25.100922 3db8b3be-d75a-414c-90a5-5ffc435edcf6 {"pid": "5795", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000031507"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:25.20864 2023-07-08 08:23:25.208651 58e7a41d-d951-4c4c-99e8-5e51e5788384 {"pid": "5796", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000032185"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:25.310477 2023-07-08 08:23:25.310491 034ea355-7732-4c17-9a8f-7bd40c1207ca {"pid": "5797", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000033498"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:25.41356 2023-07-08 08:23:25.41357 531cf267-e782-4bac-9845-e37646cd4fc1 {"pid": "5798", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000035884"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:25.514808 2023-07-08 08:23:25.514818 c1c46151-4ecc-4292-9d81-5f1009cbc8f8 {"pid": "5799", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000041054"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:25.613709 2023-07-08 08:23:25.613716 cea09775-b1a1-49d1-8b5c-8785cb200761 {"pid": "5800", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000042792"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:25.719793 2023-07-08 08:23:25.719801 a902120a-72c2-4e48-a6b7-ada10504443f {"pid": "5801", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000045285"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:25.929194 2023-07-08 08:23:25.929203 7e78c5d8-bb28-4df5-997f-d9cadc70b4d1 {"pid": "5802", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000047788"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:26.028507 2023-07-08 08:23:26.028517 be6ecdd3-bac2-4c81-88f3-ddee9434069c {"pid": "5803", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000062707"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:26.140327 2023-07-08 08:23:26.140337 6d9115c3-ea49-4ee5-be47-7e9b000d1335 {"pid": "5804", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000063670"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:26.239271 2023-07-08 08:23:26.23928 91f203f1-6ed0-4c0e-b7e5-c27928a25583 {"pid": "5805", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000068070"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:26.349777 2023-07-08 08:23:26.349788 2ba23250-3775-4f59-a198-debea61fedcc {"pid": "5806", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000069516"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:26.443541 2023-07-08 08:23:26.443553 7abd2af1-2422-48fd-ba6e-02272b2e8d1b {"pid": "5807", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000074210"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:26.549755 2023-07-08 08:23:26.549767 e17280c2-7e86-4b29-81c2-a148aab03c2f {"pid": "5808", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000075082"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:26.651924 2023-07-08 08:23:26.651936 0500af2b-f03a-40f9-81e7-2a3ad956deec {"pid": "5809", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000075825"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:26.752273 2023-07-08 08:23:26.752281 0442723e-8242-4154-ac0b-a35e1977618b {"pid": "5810", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000078192"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:26.849118 2023-07-08 08:23:26.849128 e66b1f38-67a9-431f-a822-ee4554006f2d {"pid": "5811", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000082809"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:26.947424 2023-07-08 08:23:26.947433 a7bf192d-2170-4b47-978a-9f106ae6c41e {"pid": "5812", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000085441"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:27.104562 2023-07-08 08:23:27.104565 4cef7de0-9ea6-4b17-8951-f41e88872d47 {"pid": "5813", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000085746"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:27.173438 2023-07-08 08:23:27.173442 6d76cc9e-ddc1-40e9-b277-08d9b5119494 {"pid": "5814", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000087771"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:27.253231 2023-07-08 08:23:27.253239 cc5f4ea3-7f37-43b0-8fc9-8043a0ce42c2 {"pid": "5815", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000091274"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:27.345292 2023-07-08 08:23:27.345303 0cdb6258-47ba-4e1e-b4a9-9f13c59ac91e {"pid": "5816", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000092501"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:27.458202 2023-07-08 08:23:27.458213 d49711f7-53bb-41db-a49c-32b56adcdf5a {"pid": "5817", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000099346"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:27.570003 2023-07-08 08:23:27.570013 2ae9f37b-c070-4d49-a41b-83d5c22bc87d {"pid": "5818", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000100584"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:27.672666 2023-07-08 08:23:27.672676 c9e1a732-c6eb-41ab-aa45-e7911c56a725 {"pid": "5819", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000102121"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:12.656629 2023-07-08 10:29:30.955812 a4524353-cb9e-408c-b86b-87e4e5417044 {"pid": "3893", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000047084"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/081232683"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109975323"} 4 -2023-07-08 08:23:27.905968 2023-07-08 08:23:27.905979 a24bfb98-ce4c-4ff8-983b-d7bc2c1c0d0a {"pid": "5820", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000104694"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:28.03227 2023-07-08 08:23:28.032279 365840af-c21b-4818-b698-623cdcd1e8cf {"pid": "5821", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000107290"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:28.129075 2023-07-08 08:23:28.129085 83164be9-088e-42c3-afcc-d037ca2b18cf {"pid": "5822", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000108532"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:28.331784 2023-07-08 08:23:28.331795 ae0c6eac-7fb6-4f30-b4af-9846528fb093 {"pid": "5823", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000110353"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:28.447457 2023-07-08 08:23:28.447468 da28e084-0f30-466a-b736-39f705990445 {"pid": "5824", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000119730"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:28.561789 2023-07-08 08:23:28.561801 bd5a040f-fe25-48c4-b63a-802cdd981e49 {"pid": "5825", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000120627"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:28.670957 2023-07-08 08:23:28.670966 bf827a20-0f99-4f48-9d49-76afe5d43c6c {"pid": "5826", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000124969"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:28.767551 2023-07-08 08:23:28.767562 72d7d1b6-b0d2-41a4-af3d-92fa54dc53b8 {"pid": "5827", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000132150"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:28.866867 2023-07-08 08:23:28.866876 7c8804bb-ff11-4fe5-a730-94bcca86a89f {"pid": "5828", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000135302"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:28.965569 2023-07-08 08:23:28.96558 b88cb4e9-5525-4f62-91ec-68f4ab99bcd3 {"pid": "5829", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000136441"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:29.080876 2023-07-08 08:23:29.080886 3ee883a5-09e2-4d55-bdab-b057073784f7 {"pid": "5830", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000142799"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:29.190243 2023-07-08 08:23:29.190257 20136ce1-064e-4a4f-966c-ea4553420adf {"pid": "5831", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000144337"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:29.320781 2023-07-08 08:23:29.320793 1742008f-8ff9-4fc1-8bdc-890da6a63cf6 {"pid": "5832", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000147059"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:29.420491 2023-07-08 08:23:29.420502 44794b7b-e2a9-430b-a89e-78a0f8c921f2 {"pid": "5833", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000152472"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:29.538206 2023-07-08 08:23:29.538214 c9637821-3c5f-4aa5-9e0a-64e9665abe7c {"pid": "5834", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000152802"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:29.669116 2023-07-08 08:23:29.669128 f722a46e-cc2e-40df-9f07-c1da8446d69b {"pid": "5835", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000156095"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:29.805972 2023-07-08 08:23:29.805981 8450a81a-e3ee-4fa0-841d-f6de0d5a9715 {"pid": "5836", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000157703"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:29.920595 2023-07-08 08:23:29.920603 35bf1b77-135c-4c5b-b1e4-df84d310cb5b {"pid": "5837", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000171374"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:30.034891 2023-07-08 08:23:30.034902 0940e540-023e-463a-8cf4-9e4beff66af4 {"pid": "5838", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000176762"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:30.145737 2023-07-08 08:23:30.145748 42d65675-1577-4616-8fd0-0dcf86a1c1cd {"pid": "5839", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000181158"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:30.267707 2023-07-08 08:23:30.267714 3616ea6e-fc65-4e19-a6a3-47d8e249723f {"pid": "5840", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000183008"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:30.37503 2023-07-08 08:23:30.375055 66b857b2-bb7b-413e-b5f9-1dab1840a668 {"pid": "5841", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000183027"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:30.483149 2023-07-08 08:23:30.483167 2323138a-d68e-4df2-8b20-a1f567de7382 {"pid": "5842", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000184256"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:30.596401 2023-07-08 08:23:30.59641 ead09dae-6e55-4fcd-8bc3-60407cdea41d {"pid": "5843", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000185690"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:30.716205 2023-07-08 08:23:30.716222 c41ec4ef-7702-43b6-adb8-585b9bf41f5d {"pid": "5844", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000187213"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:30.862493 2023-07-08 08:23:30.862505 d2bd4eed-899c-4d4a-95cf-b30ed36172b3 {"pid": "5845", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000187557"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:30.99805 2023-07-08 08:23:30.998058 b2c9a8c6-0a6e-4919-b1a5-b14fb04bbbee {"pid": "5846", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000189570"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:31.120868 2023-07-08 08:23:31.120876 ca561c43-c406-4dca-bde5-7dba52afcf56 {"pid": "5847", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000190495"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:31.246332 2023-07-08 08:23:31.246351 001d3511-1640-4ca1-86f1-aef08a7aa074 {"pid": "5848", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000193226"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:31.367057 2023-07-08 08:23:31.367069 1f273d65-e08f-498e-971c-1f7111825eea {"pid": "5849", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000193381"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:31.485605 2023-07-08 08:23:31.485619 7a6d7408-bc13-46f5-bb9b-1b4d72fdd830 {"pid": "5850", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000193605"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:31.595708 2023-07-08 08:23:31.595719 85d932e4-b8f9-4540-a060-ecd5816feaab {"pid": "5851", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000194499"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:31.704696 2023-07-08 08:23:31.704704 7e50d99a-2d08-41e0-868c-3f298c593a31 {"pid": "5852", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002910761"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:31.948803 2023-07-08 08:23:31.948811 538f9b86-669e-4451-98eb-e6224e2b90a2 {"pid": "5853", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002916477"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:32.075901 2023-07-08 08:23:32.075914 ca8f4a28-4808-4491-b247-61b4da30e8c5 {"pid": "5854", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002922214"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:32.315247 2023-07-08 08:23:32.315276 93a1e625-1709-4783-9795-107038ae3a74 {"pid": "5855", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002928445"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:32.539592 2023-07-08 08:23:32.539602 2a40d479-3dd6-4d9b-88cf-28c7959d8045 {"pid": "5857", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002931456"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:32.642692 2023-07-08 08:23:32.642707 1abecc7b-b3d2-43e6-b152-9371fbe6f9dd {"pid": "5858", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002933956"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:32.75524 2023-07-08 08:23:32.755249 ee4d303d-46fe-478b-8b8a-282d33e1b8c0 {"pid": "5859", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002939215"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:33.563412 2023-07-08 08:23:33.563419 1d2631ec-07f3-44f1-ba96-423f20940bd6 {"pid": "5862", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002944324"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:33.671341 2023-07-08 08:23:33.671351 03068cae-89a0-4c91-a78f-c14e7bf8da96 {"pid": "5863", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002947740"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:33.926348 2023-07-08 08:23:33.926364 fd5b6f90-a426-4479-8616-c2029f51df03 {"pid": "5865", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002955901"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:34.514713 2023-07-08 08:23:34.51473 b7e8f7ea-9423-40ed-a12a-6cb84058e19f {"pid": "5867", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002969933"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:38.536563 2023-07-08 08:23:38.536572 5be63f1e-1c19-40c6-b8f8-f06ba5274353 {"pid": "5896", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003065345"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:34.041417 2023-07-08 10:26:26.014953 bf375719-90db-40b0-97f4-c2d2a9675a86 {"pid": "5866", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002961093"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104578800"} 2 -2023-07-08 08:16:55.970316 2023-07-08 10:28:41.47333 8a6c0815-55d1-4354-85fe-02b49829ca75 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/133315681"}, "pid": "2032", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002940438"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028523555"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108720355"} 6 -2023-07-08 08:20:01.007375 2023-07-08 10:28:18.961371 b375ccef-85c3-4892-8af5-c8681e10a07e {"pid": "3781", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002939817"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/071531149"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108145660"} 4 -2023-07-08 08:15:38.305598 2023-07-08 10:28:46.268363 f1342a69-8259-4778-833b-d64b9fe99b58 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/11425172X"}, "pid": "1257", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002912942"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/03321994X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108848769"} 6 -2023-07-08 08:21:21.069125 2023-07-08 10:29:57.498653 2c0751f4-bb95-4db6-8370-86d650193495 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/133592316"}, "pid": "4598", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002966255"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/167143565"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11039818"} 5 -2023-07-08 08:20:02.935863 2023-07-08 10:28:48.634018 8bc5c48d-a954-4921-82a6-d4296d98684c {"pid": "3796", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002968314"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/073673986"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108888468"} 4 -2023-07-08 08:22:40.362651 2023-07-08 10:28:57.781337 0f18a802-5dec-4536-a868-43aa42f6908f {"pid": "5369", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002940495"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243137400"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109051878"} 4 -2023-07-08 08:19:22.773147 2023-07-08 10:30:12.953046 f8b11039-b80e-4882-930f-5b6a94d703ad {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/131812378"}, "pid": "3493", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002941414"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/029733944"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110844373"} 5 -2023-07-08 08:23:33.80512 2023-07-08 10:30:24.981342 10e659be-3110-4f1a-99a5-da0ec2aad928 {"pid": "5864", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002953651"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111159234410003371632"} 2 -2023-07-08 08:14:58.929656 2023-07-08 10:30:31.050334 132ea927-51cd-4c31-bf77-50152c566369 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1055794662"}, "pid": "837", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002963001"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/050709585"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111184069"} 6 -2023-07-08 08:23:32.431021 2023-07-08 10:31:36.200082 8a80209b-36c4-4cfc-91c7-8abd991ffe55 {"pid": "5856", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002929473"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112792764"} 2 -2023-07-08 08:16:11.949676 2023-07-08 10:31:41.796071 de7954a9-66d1-4052-8e63-841a09e34c6a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/11904241X"}, "pid": "1590", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002922621"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032975856"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "113141882"} 6 -2023-07-08 08:23:34.768795 2023-07-08 08:23:34.768808 e8253fdc-9525-47a8-81f7-b9c3481637eb {"pid": "5868", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002979038"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:34.901106 2023-07-08 08:23:34.901116 6cbaab69-d593-48a9-9709-efc855f8c423 {"pid": "5869", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002979177"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:35.034428 2023-07-08 08:23:35.034438 7961c592-fda6-4fa9-b042-384ba86b6e1b {"pid": "5870", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002981392"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:35.588014 2023-07-08 08:23:35.588028 01dfa08c-de19-4ee2-892b-6ce699a180e0 {"pid": "5873", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002993107"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:35.69497 2023-07-08 08:23:35.694981 4ceec9a0-6218-463d-8c75-4d6993de2d04 {"pid": "5874", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003003384"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:35.818823 2023-07-08 08:23:35.818945 9da243ab-b9a1-4d78-843c-d52aee8723c7 {"pid": "5875", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003005276"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:35.934175 2023-07-08 08:23:35.934183 593e1692-457e-434f-83da-80bd8a616131 {"pid": "5876", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003005486"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:36.042324 2023-07-08 08:23:36.042338 36bbae27-ca52-43f9-9d85-cfa7221b91e5 {"pid": "5877", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003010065"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:36.153748 2023-07-08 08:23:36.153761 18516fa4-d0ec-4332-a5a7-79d6e18d23d6 {"pid": "5878", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003013653"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:36.271255 2023-07-08 08:23:36.271266 4b4c60b4-e758-48f6-b911-bfa62e3f9a05 {"pid": "5879", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003017126"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:36.505248 2023-07-08 08:23:36.50526 b08713a3-49fa-48cb-8b94-db2b2e270005 {"pid": "5881", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003020410"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:36.620465 2023-07-08 08:23:36.620476 873224db-9171-48e5-9b86-796235ea8353 {"pid": "5882", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003021395"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:36.747024 2023-07-08 08:23:36.747038 80267ef9-506d-4357-8d83-9cd19116d759 {"pid": "5883", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003024732"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:36.858291 2023-07-08 08:23:36.8583 8778eba2-16a3-4424-b7a1-c45f4c88ae4b {"pid": "5884", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003028730"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:36.961905 2023-07-08 08:23:36.961913 c7b2d50f-5efd-4463-813f-c7dac475f048 {"pid": "5885", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003031223"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:37.085553 2023-07-08 08:23:37.085564 3d9928a2-edb9-44e1-83a7-1e7e9a6977f7 {"pid": "5886", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003037757"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:37.300871 2023-07-08 08:23:37.300881 9aeb1c15-5bcf-40d4-9746-c21fa0f74e8d {"pid": "5887", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003042099"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:37.420465 2023-07-08 08:23:37.420478 0f445be6-178a-4fed-b144-f95ed52948b7 {"pid": "5888", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003042520"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:37.697461 2023-07-08 08:23:37.697471 292c0982-4b93-41ad-8ab3-120d21346071 {"pid": "5890", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003050459"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:38.055572 2023-07-08 08:23:38.055581 7b7dd9e0-1dcf-4df5-a86c-a84f09112aa3 {"pid": "5892", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003061439"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:38.186718 2023-07-08 08:23:38.186727 e7a86bec-3e3d-4ac0-85f1-283e9b1cfa69 {"pid": "5893", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003061455"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:38.287214 2023-07-08 08:23:38.287223 5c990dfb-f2ad-4b91-9a5a-d7a21adc48dd {"pid": "5894", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003063890"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:38.405514 2023-07-08 08:23:38.405524 757362d0-0765-4ae4-862b-edd9ee9f8c42 {"pid": "5895", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003064605"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:57.327559 2023-07-08 10:23:49.597245 8b335b98-9bd6-4aac-8b8e-3a64d0bad774 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134321707"}, "pid": "2044", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002971659"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/07101120X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100392200"} 6 -2023-07-08 08:23:37.824794 2023-07-08 10:25:08.232804 dc9ac452-1b5b-4e24-bffc-b819cc592859 {"pid": "5891", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003055215"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102159234074403370558"} 2 -2023-07-08 08:23:35.176682 2023-07-08 10:25:44.499413 3e938299-3cd4-444f-95ed-57250a783995 {"pid": "5871", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002981924"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103159234267003371376"} 2 -2023-07-08 08:21:03.465289 2023-07-08 10:25:36.296291 899b835a-a604-4545-a923-b10f34ce01c7 {"pid": "4409", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003037886"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148842836"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103006988"} 4 -2023-07-08 08:23:36.393437 2023-07-08 10:26:40.109821 8827ae9b-de71-46d3-bc86-7dca1525930d {"pid": "5880", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003019667"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105159233927803370366"} 2 -2023-07-08 08:23:35.45616 2023-07-08 10:30:24.909119 401bece4-04f4-4cfe-9548-b7990c03287b {"pid": "5872", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002992522"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111159234237303371038"} 2 -2023-07-08 08:23:39.039736 2023-07-08 08:23:39.039744 94e7e93e-3f8c-4a28-9bbe-d4e395162791 {"pid": "5899", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003082787"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:39.409292 2023-07-08 08:23:39.409308 c815301b-1111-4cb8-b847-e42ecbc20e00 {"pid": "5901", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003086097"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:39.535645 2023-07-08 08:23:39.535653 18cc0e98-c2d5-4c17-89cc-99a2ece7e451 {"pid": "5902", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003086874"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:39.65648 2023-07-08 08:23:39.65649 c98b4394-fc40-40c3-8e66-188b6c912993 {"pid": "5903", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003089906"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:39.807936 2023-07-08 08:23:39.807946 b1ff4d41-036b-429c-942e-2591d6736691 {"pid": "5904", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003093098"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:40.068882 2023-07-08 08:23:40.06891 70d0f7f4-5a22-4f5e-b9e6-4b63d07d910c {"pid": "5906", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003094768"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:40.335202 2023-07-08 08:23:40.335212 a6b4c6ef-79dc-4bb3-b79c-c9db553a3f0f {"pid": "5908", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003096778"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:40.460577 2023-07-08 08:23:40.460591 3ffc4f24-df4c-4be4-9354-b8f9d212c077 {"pid": "5909", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003098919"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:40.579494 2023-07-08 08:23:40.579509 01b54f8d-b428-4f12-ba80-6ef8e4d0a21f {"pid": "5910", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003099881"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:40.696697 2023-07-08 08:23:40.69671 eeb68a3d-16c0-4596-91e0-aa04e80fe573 {"pid": "5911", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003100597"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:40.938818 2023-07-08 08:23:40.938825 94e775a3-2397-41bd-9d79-35a72b689167 {"pid": "5912", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003103435"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:41.19542 2023-07-08 08:23:41.195434 f5d26eef-9a8c-4b9c-84ea-efdf78da9b64 {"pid": "5914", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003104849"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:41.428933 2023-07-08 08:23:41.428943 3c1efa51-1ece-4bdc-ab6b-97bf75cac618 {"pid": "5915", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003112356"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:41.533844 2023-07-08 08:23:41.533855 0361a9a1-8bd7-4c8b-ab61-047cdb6e315c {"pid": "5916", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003113657"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:41.632821 2023-07-08 08:23:41.632835 8324ea76-d6c6-482a-b3c0-cf190e2d161e {"pid": "5917", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003114032"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:41.736246 2023-07-08 08:23:41.73626 b0f4c358-1b2a-49b5-b20f-63a8060f6a39 {"pid": "5918", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003114105"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:41.855135 2023-07-08 08:23:41.855151 5c9f6f51-1759-48ac-8d6e-e05ca7a5f1e3 {"pid": "5919", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003114110"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:41.992502 2023-07-08 08:23:41.992532 6840c943-d775-44d6-a6c1-5efe31619c8b {"pid": "5920", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003116989"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:42.10446 2023-07-08 08:23:42.104468 2e7efa37-9c4b-4ce1-b045-54aec982eb8a {"pid": "5921", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003121026"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:42.279584 2023-07-08 08:23:42.279598 b91c7a8d-070e-4342-b266-2b5d319a844c {"pid": "5922", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003121313"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:42.423371 2023-07-08 08:23:42.423382 72a7cebd-9f52-46de-93e3-7c5d57c7383e {"pid": "5923", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003122042"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:38.927211 2023-07-08 10:26:19.722145 fd6e0d35-2e53-4ab5-9d2a-8298ea7904e3 {"pid": "5898", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003080186"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104159234263803371203"} 2 -2023-07-08 08:23:39.942388 2023-07-08 10:27:00.752642 5a1e58ea-5a06-4b4c-8023-4d422a053add {"pid": "5905", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003093717"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106159234082303370640"} 2 -2023-07-08 08:23:39.165693 2023-07-08 10:27:34.168713 8cd3cd50-ce15-4b4b-b707-10307035c2de {"pid": "5900", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003084316"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107155042846272402753"} 2 -2023-07-08 08:23:40.21536 2023-07-08 10:29:03.826688 361845d5-da0f-495c-8dcc-60dcc385ac37 {"pid": "5907", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003094880"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109159234268103371260"} 2 -2023-07-08 08:23:41.076576 2023-07-08 10:29:44.861432 dd9302dd-5941-43c8-99c6-9823cdd6c41d {"pid": "5913", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003103659"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110159234142703370912"} 2 -2023-07-08 08:23:38.659856 2023-07-08 10:29:44.936573 40b22ce3-1d36-4980-98a2-becfbf3b4872 {"pid": "5897", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003066204"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110159234697103372359"} 2 -2023-07-08 08:19:46.739842 2023-07-08 10:30:20.938195 360be85d-e070-4469-aa32-70970057ea24 {"pid": "3675", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003077749"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/056821840"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111059329"} 4 -2023-07-08 08:20:10.318702 2023-07-08 10:31:02.937688 83b5c235-cadd-46f9-9f32-c801198a9a15 {"pid": "3869", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003085874"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/079890849"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111648055"} 4 -2023-07-08 08:23:42.544934 2023-07-08 08:23:42.544948 5a80e52b-0493-4946-bb5f-f0d93c712872 {"pid": "5924", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003122713"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:42.666357 2023-07-08 08:23:42.666365 e0617f95-4db5-4f3e-9a5b-34dca0fd6a13 {"pid": "5925", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003123930"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:42.779953 2023-07-08 08:23:42.779965 31ef0d8c-7d2e-44e8-a998-af87cca69a5e {"pid": "5926", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003131969"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:42.905872 2023-07-08 08:23:42.905882 7088f56b-8d35-4362-8a20-74d29abe72cd {"pid": "5927", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003132079"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:43.034879 2023-07-08 08:23:43.034885 bb90d19f-0f30-4df9-9d0f-a02a61e1bd5a {"pid": "5928", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003134703"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:43.155871 2023-07-08 08:23:43.155885 cafd6876-1512-4771-9785-dd3b92eaef4a {"pid": "5929", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003136891"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:43.28869 2023-07-08 08:23:43.288703 26fe9797-3005-47d7-853e-7ae58f596aa9 {"pid": "5930", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003141286"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:43.425218 2023-07-08 08:23:43.425229 83646897-1315-4225-bb72-5bf8844e8996 {"pid": "5931", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003141352"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:43.55408 2023-07-08 08:23:43.554089 d1af605a-327d-4bbb-933d-f19dc2964f99 {"pid": "5932", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003142207"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:43.678773 2023-07-08 08:23:43.678779 7d29e11f-95e3-4ca5-9515-36748358ca92 {"pid": "5933", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003145194"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:43.819553 2023-07-08 08:23:43.819559 46fdaa73-bf4e-4564-ad6d-bddcec4cb559 {"pid": "5934", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003145393"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:44.006021 2023-07-08 08:23:44.006026 f99d6903-82c9-4fac-b572-1defbd903d62 {"pid": "5935", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003149155"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:44.091929 2023-07-08 08:23:44.091936 1691a89b-0bf6-431d-9613-faa6f5458767 {"pid": "5936", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003149182"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:44.185781 2023-07-08 08:23:44.185786 180a1d7c-a9c2-4cee-ba9a-9f5af30c45f7 {"pid": "5937", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003149832"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:44.296632 2023-07-08 08:23:44.296644 8788b117-dacb-4107-8352-bbb620650594 {"pid": "5938", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003150269"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:44.43184 2023-07-08 08:23:44.43185 df4f5d4f-509d-4801-a011-169bd6fc2c66 {"pid": "5939", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003151816"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:44.535425 2023-07-08 08:23:44.53543 0f12a9c3-45a8-4074-b366-731fd94f6564 {"pid": "5940", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003154955"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:44.624904 2023-07-08 08:23:44.624909 57f31761-4776-4929-a6d8-8ace7a4024d6 {"pid": "5941", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003155460"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:44.716352 2023-07-08 08:23:44.716355 8ffaf417-2593-4afe-86d2-5b63ee433393 {"pid": "5942", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003155524"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:44.814899 2023-07-08 08:23:44.81491 1714ffae-a684-4ec0-a41f-bd4c8fc7e0b3 {"pid": "5943", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003159779"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:44.930637 2023-07-08 08:23:44.930645 a3d16779-07db-49c1-bc16-b2a023f58ed9 {"pid": "5944", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003162783"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:45.024291 2023-07-08 08:23:45.0243 1ae726c1-4a2c-4ad1-a8c9-043d5e725e54 {"pid": "5945", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003170262"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:45.219425 2023-07-08 08:23:45.219431 9a158a4d-8a86-4be4-a7b5-5ee411dfa70a {"pid": "5946", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003172151"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:45.307329 2023-07-08 08:23:45.307334 4f75e355-5ff3-4692-a8db-3dfa93c0a40c {"pid": "5947", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003172474"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:45.391638 2023-07-08 08:23:45.391643 8f67c739-a309-4649-804d-34e36c3da05f {"pid": "5948", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003173240"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:45.471345 2023-07-08 08:23:45.47135 a42c61bd-6648-4a12-b1bb-aff767762083 {"pid": "5949", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003177980"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:45.548397 2023-07-08 08:23:45.548401 2ef0db9f-11e9-4bea-8f3a-613bd184b884 {"pid": "5950", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003178146"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:45.633594 2023-07-08 08:23:45.633598 038bb780-5447-4ce5-a1b7-a751e2eeecf2 {"pid": "5951", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003179452"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:12.702811 2023-07-08 10:31:14.075825 41d4f7df-1193-4bc7-80bd-93806bd492b6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/170661393"}, "pid": "5700", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003171170"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260176893"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112022445"} 5 -2023-07-08 08:23:45.853605 2023-07-08 08:23:45.853897 5ab8f57b-cfaa-4eaa-bf5e-6938efb82f84 {"pid": "5953", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003184655"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:46.184081 2023-07-08 08:23:46.184084 2bcf6a35-6ea6-41c4-99ba-4060fcb33f80 {"pid": "5954", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003192212"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:46.293204 2023-07-08 08:23:46.293215 46a3e197-7db5-45d1-b997-03eda6b92c07 {"pid": "5955", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003194582"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:46.378449 2023-07-08 08:23:46.378452 133d6592-7072-44c2-b0b9-58a2a974b40d {"pid": "5956", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003196110"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:46.465716 2023-07-08 08:23:46.465725 4d8619d9-67a2-472b-89fe-e7a622030379 {"pid": "5957", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003197536"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:46.563586 2023-07-08 08:23:46.563593 dd0ca9ab-cfcf-4310-85a2-a83ec36b6ff0 {"pid": "5958", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003198713"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:46.660231 2023-07-08 08:23:46.66024 7cbbbb68-70e9-4d54-aa7c-bdd3778ac727 {"pid": "5959", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003199994"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:46.752441 2023-07-08 08:23:46.75245 344f503f-b2e1-4044-a125-197a821f2948 {"pid": "5960", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003201589"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:47.066875 2023-07-08 08:23:47.066883 cc914124-8293-42c4-9634-1efc4276f0cc {"pid": "5961", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003217486"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:47.167669 2023-07-08 08:23:47.167678 887f0d6b-f3ed-4c03-a4e9-cd1e3f4c58bd {"pid": "5962", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003218658"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:47.321915 2023-07-08 08:23:47.321923 1380d510-1184-4445-be45-7a16ed8006e4 {"pid": "5963", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003218686"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:47.515114 2023-07-08 08:23:47.515122 4192b1e2-803c-444c-af37-2df69267c6f1 {"pid": "5964", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003230887"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:47.611718 2023-07-08 08:23:47.611726 0fe839b4-18b0-4d11-956c-f8d5787ea1b1 {"pid": "5965", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003235750"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:47.698119 2023-07-08 08:23:47.698126 ad1fcc04-a09a-473a-976f-ce521816f7bd {"pid": "5966", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003235825"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:47.794749 2023-07-08 08:23:47.794993 c824972f-90cd-4712-a6b8-046886bc7647 {"pid": "5967", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003236665"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:47.895764 2023-07-08 08:23:47.895773 08ae1a9d-88d5-42ed-9130-9e4e29aa8699 {"pid": "5968", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003237696"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:47.990814 2023-07-08 08:23:47.990822 d3cb7462-51fc-4faa-9770-aa86cb527aa8 {"pid": "5969", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003240957"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:48.083617 2023-07-08 08:23:48.083623 e0d64933-b783-4afe-90fb-22c7591442b3 {"pid": "5970", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003242452"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:48.372132 2023-07-08 08:23:48.372143 72957317-6ce9-4f16-b511-5b9cccb7305e {"pid": "5971", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003246832"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:48.468801 2023-07-08 08:23:48.468809 148e2fb1-3133-41c5-8113-8d3e3ec71c0e {"pid": "5972", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003250020"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:48.559409 2023-07-08 08:23:48.559423 b2a43b1d-eeba-4552-906b-1e2c9e1bca9e {"pid": "5973", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003250278"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:48.676126 2023-07-08 08:23:48.676131 edba2ef9-f734-4733-af60-8c07893c9446 {"pid": "5974", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003250343"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:48.652958 2023-07-08 10:27:20.08925 c21bdb9e-02e7-4632-8437-c3c49ca4272f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/107441148X"}, "pid": "4266", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003203987"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/134489500"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106867339"} 5 -2023-07-08 08:22:18.705842 2023-07-08 10:27:22.331246 9a68311a-4bc2-4561-aa60-74abc3fd26c2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1249217156"}, "pid": "5175", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003188796"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232278431"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10691536"} 5 -2023-07-08 08:15:39.391026 2023-07-08 10:28:30.235705 465a8be9-4c27-41ac-86eb-2870040658ac {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1145375154"}, "pid": "1269", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003206780"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028442717"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108374251"} 6 -2023-07-08 08:20:09.212331 2023-07-08 10:31:07.473187 8088e26e-6687-4533-b45a-d297e8f3554c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/13707543X"}, "pid": "3857", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003223430"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/078835186"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111831150"} 5 -2023-07-08 08:19:39.077016 2023-07-08 10:28:53.348299 53e6796a-dabe-4d61-9014-7d9b257a3ad3 {"pid": "3617", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003243348"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034731695"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108927617"} 4 -2023-07-08 08:23:48.777096 2023-07-08 08:23:48.777107 825e90f0-6ac2-4d84-afb7-0cf58e8f771d {"pid": "5975", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003250353"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:48.871899 2023-07-08 08:23:48.871909 7dd89dfe-2dad-4087-a59e-a611f972263e {"pid": "5976", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003251379"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:49.072532 2023-07-08 08:23:49.072539 64f7bac5-f5ec-4f92-a1da-8bc1c816d26b {"pid": "5978", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003259324"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:49.173835 2023-07-08 08:23:49.173841 e7109e70-29b9-4112-9ef0-735c8b5def18 {"pid": "5979", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003259363"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:49.279187 2023-07-08 08:23:49.279196 20df0608-719b-4e02-8ef0-176f188bc249 {"pid": "5980", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003261984"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:49.379193 2023-07-08 08:23:49.379202 a25bd524-ac25-411f-90bc-1f09e12b0cd1 {"pid": "5981", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003262188"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:49.474168 2023-07-08 08:23:49.474176 1765e1c1-2a04-4a3d-ab89-471fc10a6533 {"pid": "5982", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003263551"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:49.764477 2023-07-08 08:23:49.764487 46dc6845-ba9f-40b8-838b-c57aad93666d {"pid": "5983", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003267103"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:49.866983 2023-07-08 08:23:49.866993 752c67c1-6c13-4c11-a040-7c4333175e87 {"pid": "5984", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003267500"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:49.959525 2023-07-08 08:23:49.959531 d58c1c63-862d-49a4-8162-a122b9e1a450 {"pid": "5985", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003268129"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:50.053079 2023-07-08 08:23:50.053087 e8fd882b-250e-44f0-bf7f-6cc929425bee {"pid": "5986", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003272218"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:50.14065 2023-07-08 08:23:50.140657 ec62d0d5-5297-43ec-86dd-95cf880096ad {"pid": "5987", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003272478"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:50.218682 2023-07-08 08:23:50.218693 8d200e35-61b2-47d9-8da8-c06c8c0cc42b {"pid": "5988", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003272492"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:50.306121 2023-07-08 08:23:50.306129 1133ce59-0220-4072-a3f1-e940b239f974 {"pid": "5989", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003274907"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:50.516744 2023-07-08 08:23:50.516756 a77838a5-635f-4de5-b758-9685d1df782b {"pid": "5990", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003276590"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:50.610943 2023-07-08 08:23:50.610954 bac10e99-1301-4fb6-9419-d4d68dabbfe6 {"pid": "5991", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003278829"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:50.690659 2023-07-08 08:23:50.690663 51dcd775-f150-4e11-a747-58c503e78545 {"pid": "5992", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003281452"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:50.771932 2023-07-08 08:23:50.771939 acac883e-40df-4c06-8e16-81ae7394fc1f {"pid": "5993", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003283186"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:50.860448 2023-07-08 08:23:50.860459 d5b515ea-1caa-40ab-b02a-5fca544b6572 {"pid": "5994", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003288318"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:50.956815 2023-07-08 08:23:50.956823 5229cff5-21ef-4c40-8805-8cbbce22bba7 {"pid": "5995", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003293538"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:51.055796 2023-07-08 08:23:51.055804 feccf8af-f06b-4ebc-afa3-e72b757b3fea {"pid": "5996", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003299867"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:51.452135 2023-07-08 08:23:51.452145 fa61c8eb-660f-4039-8bd7-3bd6d3f76b10 {"pid": "5998", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003303466"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:51.540953 2023-07-08 08:23:51.54096 19c7423e-af38-4dbc-a8b4-a74959da8336 {"pid": "5999", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003303830"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:51.629901 2023-07-08 08:23:51.62991 9d086dcf-027d-4557-9dbc-fa7ee08c7dfd {"pid": "6000", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003307504"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:48.974468 2023-07-08 10:28:59.702352 4e6f031d-8690-42de-baa2-e8e3371534da {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/12465164X"}, "pid": "5977", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003256978"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/265836905"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109122707"} 4 -2023-07-08 08:20:08.081206 2023-07-08 10:29:16.860873 ed02bb7a-4ae2-49e2-ab14-ac7437ea9286 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172099331"}, "pid": "3843", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003301693"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/077775430"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109481934"} 5 -2023-07-08 08:16:50.195416 2023-07-08 10:29:50.603372 61ae7b0f-9510-499a-afb5-3b7409663a19 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/129828866"}, "pid": "1975", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003264908"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/084531029"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1101976"} 6 -2023-07-08 08:23:51.364022 2023-07-08 10:31:28.838387 1f2308c3-1216-42db-9f8c-fc3afea3040f {"pid": "5997", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003302604"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112462544"} 2 -2023-07-08 08:23:51.705812 2023-07-08 08:23:51.705815 469f15f2-843d-4eeb-81cf-f64edb9b26f9 {"pid": "6001", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003308819"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:51.882535 2023-07-08 08:23:51.882547 a4a43b81-10ae-4e65-9004-6eb56d0c4b7f {"pid": "6002", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003314705"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:51.970769 2023-07-08 08:23:51.970777 0c40aec7-b255-43da-8c9c-de5e24af90a3 {"pid": "6003", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003316151"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:52.061875 2023-07-08 08:23:52.061885 b0c460a3-e3c3-4aa4-8485-db183050b7ed {"pid": "6004", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003319632"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:52.161617 2023-07-08 08:23:52.161626 5ca4e778-af5d-4e56-928b-2666ca85a36b {"pid": "6005", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003320872"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:52.239122 2023-07-08 08:23:52.239129 928eccfe-4e5f-4b4e-83da-d0e8a95cbd40 {"pid": "6006", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003324081"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:52.428374 2023-07-08 08:23:52.428383 395839cd-f8fb-45cb-a969-12635f465fda {"pid": "6007", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003331851"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:52.518154 2023-07-08 08:23:52.518162 0456d765-7164-4dee-acac-40b921a0a14a {"pid": "6008", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003334623"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:52.609314 2023-07-08 08:23:52.609324 75e633b1-ef7a-4754-835c-8edaddb1a2f9 {"pid": "6009", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003337947"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:52.700299 2023-07-08 08:23:52.700306 ebd14858-46be-489e-b275-01f1c4d4e80b {"pid": "6010", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003351113"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:52.933848 2023-07-08 08:23:52.933858 876cf00f-8bfa-4eb2-ac97-18df7e1d28c4 {"pid": "6011", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003357999"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:53.034362 2023-07-08 08:23:53.03437 ee011fe5-7739-413a-93b3-d7e01c4cc786 {"pid": "6012", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003359260"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:53.220134 2023-07-08 08:23:53.220139 aa7b206e-a7e1-4f2f-b86e-f3f6ec948956 {"pid": "6013", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003361845"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:53.316146 2023-07-08 08:23:53.316159 02c7bc2e-4b20-4bd1-ad89-0845c494d883 {"pid": "6014", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003362103"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:53.835298 2023-07-08 08:23:53.835309 c9a91001-bb79-401a-9627-22534ebf1ab3 {"pid": "6015", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003378379"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:54.255799 2023-07-08 08:23:54.255811 c2f2952c-a366-47f2-9ee0-d3afca9c87f4 {"pid": "6016", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003381861"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:54.361622 2023-07-08 08:23:54.361634 b693d871-fba5-44df-9ce9-51c5dc378001 {"pid": "6017", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003383105"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:54.460115 2023-07-08 08:23:54.460123 c926d223-1687-4ca6-bc21-decff933af78 {"pid": "6018", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003385342"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:54.558463 2023-07-08 08:23:54.558473 6dc4b131-0c77-468d-98d7-f9aa163b401d {"pid": "6019", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003386566"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:54.647789 2023-07-08 08:23:54.647796 e7b1dbd1-74ad-4d7d-9abb-90b12b142aac {"pid": "6020", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003388636"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:55.004426 2023-07-08 08:23:55.004436 11e2fed8-8673-43a7-b834-99c0ac0abc5a {"pid": "6021", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003395338"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:52.762571 2023-07-08 10:26:01.164578 3f9854a2-0afe-42a0-9d6c-36c3220e53e7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/131915401"}, "pid": "2003", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003389663"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/031854575"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103618808"} 6 -2023-07-08 08:17:29.003173 2023-07-08 10:29:13.124963 3dc510aa-543a-49e0-83ba-ef3b043f3080 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172141788"}, "pid": "2376", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003379503"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/033478686"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109426764"} 6 -2023-07-08 08:17:28.899945 2023-07-08 10:29:26.521797 46a289ca-7b05-4ef7-acbb-c170e7c4cf71 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172140013"}, "pid": "2375", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003375801"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030542650"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109861176"} 6 -2023-07-08 08:15:40.995829 2023-07-08 10:30:07.469255 8248f746-15e2-44c5-8647-42f1687252eb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146015976"}, "pid": "1286", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003378581"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/116539313"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110551008"} 6 -2023-07-08 08:19:15.582135 2023-07-08 10:30:15.31242 2e8a6538-580c-490f-a44e-5b94d17ca365 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1270526294"}, "pid": "3436", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003352968"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026916134"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110928127"} 5 -2023-07-08 08:23:55.188092 2023-07-08 08:23:55.188096 42fadb76-5f1b-4ab1-ab2d-2afd150943fa {"pid": "6022", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003399031"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:55.270089 2023-07-08 08:23:55.270098 cd965093-cafa-495d-a2e2-ca699cf512c2 {"pid": "6023", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003399240"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:55.361237 2023-07-08 08:23:55.361246 faf6c5e9-9548-4446-9fe8-d8ec66224826 {"pid": "6024", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003399386"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:55.554357 2023-07-08 08:23:55.554367 c6558e80-5517-41e3-8c3a-e9413fa559f4 {"pid": "6026", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003401536"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:55.64573 2023-07-08 08:23:55.645739 aab65d45-36c7-4dbc-89ad-05fc614fc51d {"pid": "6027", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003402056"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:55.719913 2023-07-08 08:23:55.719917 957496ec-0ab6-4a8f-939e-2d8b26e93c81 {"pid": "6028", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003403470"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:55.812347 2023-07-08 08:23:55.812361 f75ced71-39d0-4e1b-8872-2a775729b6d0 {"pid": "6029", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003404800"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:55.90409 2023-07-08 08:23:55.904101 bf6065d0-3d61-4551-b8f1-290cb9978f43 {"pid": "6030", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003406290"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:56.0107 2023-07-08 08:23:56.010709 d289951d-084e-4d38-905f-f8e6dd18358e {"pid": "6031", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003411195"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:56.090056 2023-07-08 08:23:56.09006 8ff6cb9c-c073-490e-95f5-742c7603d1a3 {"pid": "6032", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003413213"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:56.181569 2023-07-08 08:23:56.181578 e3280c0e-4feb-4aff-b5c1-707c6ebaa8a6 {"pid": "6033", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003413435"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:56.453238 2023-07-08 08:23:56.453242 5b4698ed-d011-41f8-8f5e-3f61c196d769 {"pid": "6034", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003418336"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:56.545655 2023-07-08 08:23:56.545665 10434f8a-7f2a-43a2-8c75-4c8f19429c4f {"pid": "6035", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003421420"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:56.722253 2023-07-08 08:23:56.722261 27b9053c-afeb-4fa7-b9f2-8c89454750f3 {"pid": "6037", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003422794"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:56.921618 2023-07-08 08:23:56.921631 77574f88-33e4-4bb7-b5a8-c46f30af8a3d {"pid": "6039", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003428330"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:57.002092 2023-07-08 08:23:57.002096 2fe73dd4-29d2-4605-a479-f4190928f964 {"pid": "6040", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003428443"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:57.085908 2023-07-08 08:23:57.085913 5612b419-454f-432a-a4b7-fa22f1731559 {"pid": "6041", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003435187"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:57.158606 2023-07-08 08:23:57.158611 7612247c-0893-4e34-9b73-03ed19818d30 {"pid": "6042", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003435467"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:57.396109 2023-07-08 08:23:57.396113 863f54a5-6795-4f01-a4b2-b8dfdc5e5f0c {"pid": "6043", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003449705"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:57.464115 2023-07-08 08:23:57.464118 1562e2cf-2028-4af8-853f-d052cf0ce6ab {"pid": "6044", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003449812"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:57.521603 2023-07-08 08:23:57.521606 52481c95-d724-462c-9e80-31c1825b9516 {"pid": "6045", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003450257"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:57.584601 2023-07-08 08:23:57.584604 bfa3b519-77a6-4c35-a0e3-9bee2b0fd2a7 {"pid": "6046", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003451220"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:57.655369 2023-07-08 08:23:57.655372 d82fed90-28e6-4f22-8dea-8b77ad3979d2 {"pid": "6047", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003453966"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:57.723477 2023-07-08 08:23:57.72348 3ba616a0-d5e8-48bb-9514-b00e8e1c40df {"pid": "6048", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003454418"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:56.643374 2023-07-08 10:25:04.616374 1ccae309-e69a-400b-8f66-d192541698c5 {"pid": "6036", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003421797"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102085298"} 2 -2023-07-08 08:16:50.825845 2023-07-08 10:28:32.337472 4398474a-0ebb-4057-b207-7f133c1fe29c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/130124648"}, "pid": "1982", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003398237"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/071344241"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108398363"} 6 -2023-07-08 08:23:55.461039 2023-07-08 10:28:34.632713 f9f37c21-55e8-45dd-806f-ab72c2f90bb0 {"pid": "6025", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003399601"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108467861"} 2 -2023-07-08 08:16:34.480881 2023-07-08 10:29:24.862142 2207c700-cabb-427f-90bb-310ddf2a0355 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/12402890X"}, "pid": "1808", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003418109"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/06771496X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109835337"} 6 -2023-07-08 08:23:57.870805 2023-07-08 08:23:57.870813 e97af5ad-61fe-4215-a327-23fccbfa477b {"pid": "6049", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003462661"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:57.965055 2023-07-08 08:23:57.965066 50731661-8e59-4ad4-b675-9acb6a70ae5d {"pid": "6050", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003469619"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:58.051315 2023-07-08 08:23:58.051328 7dab2101-a4dc-461c-86cd-dd55de77e84e {"pid": "6051", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003471135"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:58.224662 2023-07-08 08:23:58.224665 2cf2c785-d597-4aed-b53a-6b86158bdfda {"pid": "6052", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003477398"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:58.30603 2023-07-08 08:23:58.30604 3db2b268-e47c-4313-b49e-864a204c55c5 {"pid": "6053", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003483779"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:58.391257 2023-07-08 08:23:58.391262 b03dfb8c-65f2-4d11-9421-615b7249e3e0 {"pid": "6054", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003483806"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:58.46054 2023-07-08 08:23:58.460544 1acc9967-5792-46e9-83b3-9d913c638269 {"pid": "6055", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003484799"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:58.822133 2023-07-08 08:23:58.822145 7bfd691c-8b4b-44c7-843d-a1fa834c1c8f {"pid": "6057", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003490603"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:59.006376 2023-07-08 08:23:59.006385 078cf14b-2652-4d08-a3ea-e97a89bd7215 {"pid": "6058", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003491460"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:59.191148 2023-07-08 08:23:59.191152 756d85a0-e936-4956-b991-6f07c69e3a12 {"pid": "6059", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003492458"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:59.355571 2023-07-08 08:23:59.35558 7cb7a079-ffc3-453b-ab78-5bd0749103b9 {"pid": "6060", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003497728"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:59.434101 2023-07-08 08:23:59.434104 5e67c1e6-8007-414c-877b-221c2d246373 {"pid": "6061", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003501142"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:59.513137 2023-07-08 08:23:59.513147 54998d9f-c074-48cb-aa0a-014c9fc1754f {"pid": "6062", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003507812"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:59.689997 2023-07-08 08:23:59.690001 4216a25d-5cbb-4fca-9e60-faa87d1bda3f {"pid": "6063", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003510150"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:23:59.757868 2023-07-08 08:23:59.757872 f4ead743-74b3-436a-8d76-750c05aaa30a {"pid": "6064", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003511981"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:00.023686 2023-07-08 08:24:00.023689 33a20ff6-cdf3-4553-ae0c-10fd0b9fdbf7 {"pid": "6065", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003517040"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:00.118281 2023-07-08 08:24:00.118289 042e86c6-9217-4245-8980-c76685915c60 {"pid": "6066", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003517060"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:00.201575 2023-07-08 08:24:00.201578 801797c9-1635-4493-af3c-ddf7314c95ca {"pid": "6067", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003518724"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:00.62515 2023-07-08 08:24:00.625153 c8ff30b1-8ae2-423e-9a45-ec413223ae0e {"pid": "6069", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003538407"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:00.701661 2023-07-08 08:24:00.701667 f8ae59f2-f92d-4172-a3c8-bc64cb356cee {"pid": "6070", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003542278"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:00.789111 2023-07-08 08:24:00.789121 7f5e8475-6c19-4030-805a-13dfd41932d6 {"pid": "6071", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003543183"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:00.908686 2023-07-08 08:24:00.908695 6728eead-f161-483c-8b2a-f879435b86a4 {"pid": "6072", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003544201"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:18.732249 2023-07-08 10:27:24.181027 0f8840b4-fe7b-446c-8379-53ab87d40cf7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/120554682"}, "pid": "1651", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003494285"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/154972673"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106944900"} 6 -2023-07-08 08:17:01.528691 2023-07-08 10:30:32.023452 42d6d47a-9c42-489a-b848-6937d596a153 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/136444075"}, "pid": "2079", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003531526"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/070199736"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111213912"} 6 -2023-07-08 08:20:54.296212 2023-07-08 10:30:20.525079 a0c5df80-85b5-49ab-87e1-ca2cbd47b135 {"pid": "4309", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003489450"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/139755969"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111055765"} 4 -2023-07-08 08:24:00.280833 2023-07-08 10:31:04.981143 8f985e6d-1ab2-4734-b3dd-6f66a199962a {"pid": "6068", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003520958"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111712927"} 2 -2023-07-08 08:23:58.640369 2023-07-08 10:31:42.887488 712ecc08-f2e3-42a0-9689-24b52315437e {"pid": "6056", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003489212"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "113148995916359751295"} 2 -2023-07-08 08:21:05.632358 2023-07-08 10:31:26.444705 387c0160-1e57-4811-9670-b9a95588da78 {"pid": "4435", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003471767"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/150196261"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112412549"} 4 -2023-07-08 08:24:01.096356 2023-07-08 08:24:01.096361 d49b03c2-9459-4f04-9b81-560ca80b8d67 {"pid": "6073", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003550856"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:01.186726 2023-07-08 08:24:01.186731 d3829f4e-a0b3-45f6-af70-e376fa54835d {"pid": "6074", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003552034"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:01.361967 2023-07-08 08:24:01.361979 4d670496-2b0d-4f3b-82fb-4f3af12a5dc0 {"pid": "6075", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003556987"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:01.456036 2023-07-08 08:24:01.456046 7d8349be-b486-4801-b2e7-e9657c51e0fd {"pid": "6076", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003557648"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:01.524224 2023-07-08 08:24:01.524227 dcde0665-81ba-4fd1-97ca-9e222c23021f {"pid": "6077", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003557956"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:01.601601 2023-07-08 08:24:01.601608 50d61525-a937-4d7b-88b5-145ee54f5479 {"pid": "6078", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003561750"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:01.767402 2023-07-08 08:24:01.767414 5befb85f-51c0-4fe5-8762-813cb15caf50 {"pid": "6079", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003564111"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:01.853677 2023-07-08 08:24:01.853682 2575a069-001d-4672-95a2-4510d26e19a7 {"pid": "6080", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003566329"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:01.944988 2023-07-08 08:24:01.944998 1a20009c-34eb-4a7e-b1ef-3504b3c7dd98 {"pid": "6081", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003568779"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:02.034027 2023-07-08 08:24:02.034036 100ef15f-9328-46a3-a60f-b122e54f2d7c {"pid": "6082", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003569699"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:02.24032 2023-07-08 08:24:02.240323 935f402e-ed42-4241-822d-f0be4bee7444 {"pid": "6083", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003572877"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:02.40201 2023-07-08 08:24:02.402019 0b01d2ad-65d9-46f3-8e93-20ec0b3623c1 {"pid": "6084", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003578228"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:02.5004 2023-07-08 08:24:02.50041 11b45603-e89a-43fe-bc86-ba3507315cc9 {"pid": "6085", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003582881"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:02.578643 2023-07-08 08:24:02.578646 6c2e67c1-2253-406f-a0df-8b6fa10d5e85 {"pid": "6086", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003588222"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:02.84013 2023-07-08 08:24:02.840139 1cf4e68e-fa7b-4076-98df-6b209fe514a9 {"pid": "6089", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003596440"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:02.928898 2023-07-08 08:24:02.928905 61510549-e0a3-4044-9ea9-647008148ecb {"pid": "6090", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003597080"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:03.024549 2023-07-08 08:24:03.024556 628b3905-13b9-4d7b-a06f-2802dc8bc828 {"pid": "6091", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003600525"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:03.118051 2023-07-08 08:24:03.118064 a3d7bcf9-668d-453a-be20-d2e2f41ab9bf {"pid": "6092", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003600526"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:03.214452 2023-07-08 08:24:03.214455 2a4d24a9-9f60-4fb6-a283-2c3e1d335ffe {"pid": "6093", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003604534"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:03.281687 2023-07-08 08:24:03.281689 2687107e-2060-452d-812e-62e012e6b6c8 {"pid": "6094", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003610796"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:03.378434 2023-07-08 08:24:03.378444 0895f14e-6d71-4c25-a561-f578877b05f0 {"pid": "6095", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003611548"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:03.468573 2023-07-08 08:24:03.468577 89d7e40a-1b07-47d2-98d5-788d928dd8c4 {"pid": "6096", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003613760"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:03.578884 2023-07-08 08:24:03.578892 736955eb-7573-46b2-b146-812fcba98782 {"pid": "6097", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003618731"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:03.675898 2023-07-08 08:24:03.675906 a6cab25f-ad5a-4755-a0b7-79cc13a451b5 {"pid": "6098", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003618791"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:49.594599 2023-07-08 10:29:33.051158 fd480db7-89bf-4bd8-a0d5-7ba45debd5ac {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/129599646"}, "pid": "1969", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003546689"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/077053869"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110098886"} 6 -2023-07-08 08:20:39.624191 2023-07-08 10:28:49.053244 c8b33026-9857-49ec-97d8-daf239cfccd3 {"pid": "4192", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003572511"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/124508758"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108888963"} 4 -2023-07-08 08:21:28.648608 2023-07-08 10:31:06.44253 cdb456d3-ed30-451a-8df2-5e0d79730e08 {"pid": "4677", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003562973"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/179358103"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111828532"} 4 -2023-07-08 08:24:02.662636 2023-07-08 10:31:19.992768 313f0783-ff68-41ad-9baa-9235a4635b11 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1145475299"}, "pid": "6087", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003588933"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112151170871339091229"} 3 -2023-07-08 08:24:03.837947 2023-07-08 08:24:03.837955 eb6ca44f-7ff4-4a00-aac6-f1de611f9892 {"pid": "6099", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003619989"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:03.944927 2023-07-08 08:24:03.94494 078cdfb9-2653-4eca-8bf3-b09d874fe7d7 {"pid": "6100", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003620019"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:04.037092 2023-07-08 08:24:04.037101 687aa29b-1a4d-4593-b621-addade4d5185 {"pid": "6101", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003620351"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:04.127302 2023-07-08 08:24:04.127306 5a66aab4-3cd2-47ad-bbd0-13e513381651 {"pid": "6102", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003621449"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:04.315447 2023-07-08 08:24:04.315455 a9731121-14a4-43d5-a2cc-9dbbbf5ee122 {"pid": "6104", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003630712"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:04.486849 2023-07-08 08:24:04.486862 6a354629-db78-4452-bdca-b25dda544682 {"pid": "6105", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003637861"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:04.578835 2023-07-08 08:24:04.578845 e1b2a30c-18d1-4e65-815f-dcc7c0bd0bf0 {"pid": "6106", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003640740"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:04.842524 2023-07-08 08:24:04.842533 8a8ae469-ce83-4a83-87ec-b18b511fc731 {"pid": "6107", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003648696"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:04.931684 2023-07-08 08:24:04.931695 986e3943-0781-4e7b-a298-472474bfee43 {"pid": "6108", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003650297"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:05.022583 2023-07-08 08:24:05.02259 79cd2ef5-a8db-4cdd-a4f3-775704123c46 {"pid": "6109", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003650669"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:05.112784 2023-07-08 08:24:05.112787 090c3626-64c6-4394-bd4f-c70eba2c10d6 {"pid": "6110", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003653616"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:05.202237 2023-07-08 08:24:05.202241 f77dabc1-af2d-488f-bc86-a90636763075 {"pid": "6111", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003658765"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:05.275433 2023-07-08 08:24:05.275436 d238ec0c-7b78-4e80-a51c-3810180bf67b {"pid": "6112", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003660931"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:05.345995 2023-07-08 08:24:05.345998 2da31321-c228-4819-bcf8-b68d284d6b7c {"pid": "6113", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003662299"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:05.429705 2023-07-08 08:24:05.42972 0e7c380e-609c-4ab8-a455-00cdb27c5e33 {"pid": "6114", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003662624"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:05.517527 2023-07-08 08:24:05.517535 fdd3d62a-578e-4e81-bad1-aa53d91d22ee {"pid": "6115", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003671506"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:05.617946 2023-07-08 08:24:05.617957 40b93cd5-254a-44bf-b2f3-bb46bc92c86e {"pid": "6116", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003672170"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:05.709631 2023-07-08 08:24:05.709634 af4d167c-9388-433e-84bf-72e42c0189b8 {"pid": "6117", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003673634"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:05.817846 2023-07-08 08:24:05.817854 ed565e65-a00e-4eae-b3a8-845eed17635e {"pid": "6118", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003677375"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:05.908161 2023-07-08 08:24:05.908169 05bc3f01-a04b-486c-8104-bd36b47e8a18 {"pid": "6119", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003679975"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:05.998619 2023-07-08 08:24:05.998623 e8733b23-3fc0-4ea2-9271-b45d36769db1 {"pid": "6120", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003681000"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:06.172041 2023-07-08 08:24:06.172045 0fb124ff-3d1b-45a6-8959-fe4f07e8da63 {"pid": "6121", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003685465"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:06.327837 2023-07-08 08:24:06.327841 5d63613c-5c44-46f9-b5dd-e155de0be74d {"pid": "6122", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003688354"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:06.408095 2023-07-08 08:24:06.408099 05814fed-366b-497e-8ff1-25fa81bec829 {"pid": "6123", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003696554"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:06.473993 2023-07-08 08:24:06.473997 c51f3045-8dae-4826-b359-d482885477b3 {"pid": "6124", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003699041"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:06.544283 2023-07-08 08:24:06.544286 2ac516ec-c750-4439-b7be-32a94db4b4d5 {"pid": "6125", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003703519"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:16:30.682754 2023-07-08 10:27:50.371158 b8e90df5-db49-4263-ac7e-149e3a6c1b82 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/123090598"}, "pid": "1768", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003641265"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/094563152"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10744672"} 6 -2023-07-08 08:19:47.253788 2023-07-08 10:29:25.513598 b1f52415-2f4d-4907-b3fa-0695c6fe78a1 {"pid": "3679", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003632361"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/056926650"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109846524"} 4 -2023-07-08 08:24:06.613968 2023-07-08 08:24:06.613972 b6b89173-cd90-4789-ae24-0b352c23d168 {"pid": "6126", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003703655"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:06.757156 2023-07-08 08:24:06.757158 af62aa7e-ade5-4720-b281-631d69c83f37 {"pid": "6127", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003710512"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:06.841278 2023-07-08 08:24:06.841287 42d20469-5dc8-4048-b3d7-0247a0d91401 {"pid": "6128", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003713064"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:06.950908 2023-07-08 08:24:06.95092 fe82956a-4a8e-4d3c-9244-963a16fea067 {"pid": "6129", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003717532"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:07.137504 2023-07-08 08:24:07.137515 554f48df-d595-4961-a780-810d6544b07f {"pid": "6131", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003721710"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:07.223314 2023-07-08 08:24:07.223317 f847b7d7-cc2a-4121-9958-3862111d7c40 {"pid": "6132", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003728520"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:07.509661 2023-07-08 08:24:07.509674 6644b4e4-6688-4d36-a74e-7fbe0050e6fc {"pid": "6134", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003736990"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:07.608892 2023-07-08 08:24:07.6089 f8b9c95f-94a1-4222-8b9e-4871f4d52db2 {"pid": "6135", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003737238"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:07.700904 2023-07-08 08:24:07.70091 f55e7427-a886-4e42-8030-f9d935d5d38c {"pid": "6136", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003743096"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:07.885086 2023-07-08 08:24:07.885091 0f820191-bc7c-4471-b898-dde383425a8f {"pid": "6137", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003744787"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:07.975116 2023-07-08 08:24:07.975122 d0861895-b266-44f5-b2c0-7f4cc21b1a86 {"pid": "6138", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003747661"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:08.047324 2023-07-08 08:24:08.047327 19ab64ab-861d-4663-a95c-52de91cdb3ee {"pid": "6139", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003751647"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:08.191641 2023-07-08 08:24:08.191645 e2f4e3f1-07dd-4b60-8e22-549c8c243871 {"pid": "6140", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003755899"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:08.263938 2023-07-08 08:24:08.263944 794a1f18-d16b-479f-ba32-44b5d3b1aff0 {"pid": "6141", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003759742"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:08.339027 2023-07-08 08:24:08.339031 48fe57a8-7fc2-460c-8c95-8adec38eb453 {"pid": "6142", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003763487"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:08.420364 2023-07-08 08:24:08.420367 139b179e-013e-4446-80cb-359f55af3c57 {"pid": "6143", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003768835"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:08.594247 2023-07-08 08:24:08.594252 81c9f704-6356-4a50-af56-fc1bff8ebff0 {"pid": "6144", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003781775"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:08.743719 2023-07-08 08:24:08.743724 fbb1d89b-3180-429b-b4e2-da9708ff579a {"pid": "6146", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003783872"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:08.819595 2023-07-08 08:24:08.819599 8f064df4-6e6a-490e-b1c7-a270d21d2641 {"pid": "6147", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003788311"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:08.963088 2023-07-08 08:24:08.963092 2959bd84-8b2c-4f62-9734-f7f9819a9ebe {"pid": "6148", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003794166"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:09.031485 2023-07-08 08:24:09.031488 bb8dcbf0-102a-45ba-918b-50e1407511a5 {"pid": "6149", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003794394"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:08.670017 2023-07-08 10:23:40.578464 ad092a8b-12a6-4a4b-b00a-1561b5263cec {"pid": "6145", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003782234"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100211129"} 2 -2023-07-08 08:24:07.041129 2023-07-08 10:27:38.598664 8a875251-9048-460b-83cc-145bce421044 {"pid": "6130", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003719235"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107203774"} 2 -2023-07-08 08:19:32.958923 2023-07-08 10:28:26.129775 1d3433b9-6bca-4833-9733-a7c4efea4dd0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/119464942"}, "pid": "3572", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003780412"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032801009"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108259312"} 5 -2023-07-08 08:21:48.369962 2023-07-08 10:27:52.029056 0aa6d345-7555-4698-a1e6-3a8fa4fff033 {"pid": "4888", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003733566"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/198193327"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107588895"} 4 -2023-07-08 08:17:31.638787 2023-07-08 10:29:12.135083 abff7939-2108-4dac-9aa4-60234e536cd4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173311660"}, "pid": "2406", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003752143"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/227218493"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109420472"} 6 -2023-07-08 08:24:07.422142 2023-07-08 10:30:33.440157 f6d419e1-5593-4150-b84a-5f9111d9130a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014841011"}, "pid": "6133", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003734370"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111260244"} 3 -2023-07-08 08:20:46.750873 2023-07-08 10:31:25.309901 387119f3-c071-4a8f-a91f-51a3712cfc6c {"pid": "4250", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003706170"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/133004503"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112252873"} 4 -2023-07-08 08:24:09.302013 2023-07-08 08:24:09.302017 a771dc6c-2c58-4d70-86fc-e25d24aa7594 {"pid": "6151", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003795824"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:09.493967 2023-07-08 08:24:09.493975 903fb703-6fcd-4eda-b26e-287b4d5d2985 {"pid": "6152", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003808479"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:09.579953 2023-07-08 08:24:09.57996 dad7db2a-d0bc-41f9-b5c2-1160644155be {"pid": "6153", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003808958"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:09.674162 2023-07-08 08:24:09.67417 b85de34c-7526-49aa-aa7f-3b3d9dd2a57d {"pid": "6154", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003809251"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:09.751149 2023-07-08 08:24:09.751152 94ad35fc-98f9-45d5-b553-836724c90fb3 {"pid": "6155", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003811660"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:09.85184 2023-07-08 08:24:09.851847 305ff8d3-66d7-4a84-85c0-d141f308b252 {"pid": "6156", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003813334"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:10.052078 2023-07-08 08:24:10.052087 86e39af1-4ee9-433b-ac72-ddf60361b4b5 {"pid": "6157", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003819619"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:10.144481 2023-07-08 08:24:10.14449 0c8b9be7-3a9b-40df-b402-f51c9b599dcc {"pid": "6158", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003822497"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:10.369547 2023-07-08 08:24:10.369555 2e6f9c06-2eac-4133-8e0f-f95e3a4c3a03 {"pid": "6159", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003827438"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:10.576228 2023-07-08 08:24:10.576233 54fdfbb9-02cb-48a4-88e1-1b0446c740fc {"pid": "6160", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003829549"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:10.817751 2023-07-08 08:24:10.817754 fe636af2-0703-411a-919b-20fc12188724 {"pid": "6161", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003835588"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:10.988169 2023-07-08 08:24:10.988173 95f9098c-236a-4f87-a5ae-deb0d575a0fd {"pid": "6162", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003840255"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:11.066364 2023-07-08 08:24:11.06637 155eb862-3fad-4271-bc7d-56c07f062258 {"pid": "6163", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003840370"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:11.142766 2023-07-08 08:24:11.142769 081cf576-8212-4a6a-ad74-68fc7c453007 {"pid": "6164", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003840561"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:11.218137 2023-07-08 08:24:11.218141 ceca75ae-19a6-49f1-a906-6c3f17e3c0ae {"pid": "6165", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003842524"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:11.295936 2023-07-08 08:24:11.295966 1cdd9b2a-8848-4dc6-a3a0-83d317939a9d {"pid": "6166", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003845264"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:11.446362 2023-07-08 08:24:11.446366 76c00d69-eba5-457d-9acc-f083205f0648 {"pid": "6168", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003849995"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:11.533394 2023-07-08 08:24:11.533403 882c02a2-46c7-4983-bf4c-1df82f67e9d8 {"pid": "6169", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003852855"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:11.718316 2023-07-08 08:24:11.71832 ed25bd30-b82c-4f59-b908-2fae393e173d {"pid": "6170", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003854679"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:11.379703 2023-07-08 10:26:40.162307 890a13b7-8a72-413d-94c3-11b500f35cf4 {"pid": "6167", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003849275"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105159248448004870005"} 2 -2023-07-08 08:15:39.962044 2023-07-08 10:28:48.129201 0781affe-5d28-4ba6-b0e7-28167f53bdbf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1145519989"}, "pid": "1275", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003795823"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032401248"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108875994"} 6 -2023-07-08 08:16:05.345688 2023-07-08 10:28:50.89915 0ec392e5-d001-460d-9394-fb3609c1e786 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/117725293"}, "pid": "1534", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003825451"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/084147385"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108896487"} 6 -2023-07-08 08:15:31.68286 2023-07-08 10:29:05.935801 c903a99e-69de-49aa-840b-407d944e6a18 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/111787238"}, "pid": "1189", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003833071"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251202283"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109204355"} 6 -2023-07-08 08:24:09.108022 2023-07-08 10:29:22.889759 91bc2bc5-9c16-479c-ab87-4a563013be61 {"pid": "6150", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003794788"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109822368"} 2 -2023-07-08 08:15:32.770668 2023-07-08 10:29:53.75684 c9c1cd30-f984-4953-92b1-7ecfad403bf0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1122052537"}, "pid": "1198", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003839353"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/06703098X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110272620"} 6 -2023-07-08 08:17:25.636921 2023-07-08 10:31:36.13506 7a1953f8-5d33-4d43-ac1d-9658392448f1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/17014514X"}, "pid": "2338", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003797257"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112786527"} 4 -2023-07-08 08:24:12.054019 2023-07-08 08:24:12.054022 c80f554d-c829-42c8-bb47-7d80a6c837c4 {"pid": "6171", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003881754"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:12.141675 2023-07-08 08:24:12.14168 3748b71b-c6d4-490b-afff-1d79060a4288 {"pid": "6172", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003883009"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:12.228157 2023-07-08 08:24:12.228163 6b6276f7-77dd-45b5-ba4d-5e2dc0b2cc66 {"pid": "6173", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003883330"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:12.391425 2023-07-08 08:24:12.391429 0bdfefad-d502-43e4-a3f3-b665a0972d69 {"pid": "6174", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003883777"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:12.494133 2023-07-08 08:24:12.494138 73146347-aaee-4352-8bbc-a1471b19687f {"pid": "6175", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003886758"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:12.645306 2023-07-08 08:24:12.645311 a5d26357-cf8f-4e9a-99f6-3d70c11e6e4c {"pid": "6176", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003890737"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:12.721158 2023-07-08 08:24:12.721162 da7ab6f3-dcd2-4e44-b6f4-59bde2afc0a6 {"pid": "6177", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003895492"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:12.796665 2023-07-08 08:24:12.796671 bf84b414-8d28-415c-9495-90a41d8d88a8 {"pid": "6178", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003899816"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:12.881901 2023-07-08 08:24:12.881906 6c2ef41e-646d-4223-a7ae-62a4c958528b {"pid": "6179", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003902263"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:12.953513 2023-07-08 08:24:12.953517 c9a8e089-2cae-47cd-a0a6-6e01884592a5 {"pid": "6180", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003905474"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:13.175706 2023-07-08 08:24:13.175709 eb986781-b7d3-4289-af09-e6ef9038d4ff {"pid": "6181", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003936311"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:13.402044 2023-07-08 08:24:13.402048 bfc9fbee-f293-4d3d-a066-ab3d76d0b9c8 {"pid": "6182", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003948416"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:13.47885 2023-07-08 08:24:13.478855 d676ded4-1ccc-40d1-9591-d097497d9bab {"pid": "6183", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003958822"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:13.640292 2023-07-08 08:24:13.640295 f876728b-3d41-4659-b1b2-4950ced27539 {"pid": "6184", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003967245"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:13.788279 2023-07-08 08:24:13.788282 f98a0cd4-e773-44ae-a2c1-b3f0aa2a3a21 {"pid": "6185", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003969900"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:14.247503 2023-07-08 08:24:14.247509 96201bc2-6bfc-40aa-89eb-4467cc41967f {"pid": "6188", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003984942"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:14.393509 2023-07-08 08:24:14.393516 a0f09ae3-66ac-44cd-83a6-8554c8e7eb4c {"pid": "6189", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003988011"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:14.463826 2023-07-08 08:24:14.463829 7d19c86d-3081-458e-8cab-f07676fe0bd4 {"pid": "6190", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003988126"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:14.525471 2023-07-08 08:24:14.525474 5b0cafec-0335-4cc0-a01f-08d3d86162e2 {"pid": "6191", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003990251"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:14.597907 2023-07-08 08:24:14.597912 21339865-c467-420f-a588-b16343fe2f48 {"pid": "6192", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003991229"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:14.668635 2023-07-08 08:24:14.668639 31a068b7-8fad-443a-9b18-c2b8ea1c5336 {"pid": "6193", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003994705"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:14.824458 2023-07-08 08:24:14.824464 a04fe7cd-5409-46c9-a379-60f436e7d8aa {"pid": "6194", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003999648"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:14.8931 2023-07-08 08:24:14.893104 ca6bb23c-cc96-4d1d-ab65-52d3c4c4256d {"pid": "6195", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005312991"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:19:45.399015 2023-07-08 10:28:39.499805 1c634c51-2147-4fa5-b6ab-72ac988de17a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/115830324"}, "pid": "3665", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003863577"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/053516184"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108685760"} 5 -2023-07-08 08:24:13.931505 2023-07-08 10:29:41.342326 4a363cdb-75c4-44c0-9385-ebc031a254e1 {"pid": "6187", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003973251"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110149294102580520845"} 2 -2023-07-08 08:21:25.638217 2023-07-08 10:29:06.437818 fcc2106d-fb17-4394-bfbb-1e459c53f55a {"pid": "4645", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003985806"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/174595174"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109243938"} 4 -2023-07-08 08:22:10.538459 2023-07-08 10:29:13.591522 c7073a0e-fb39-4001-afd8-0057269fcffd {"pid": "5101", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003995908"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/227302370"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109437005"} 4 -2023-07-08 08:15:08.562709 2023-07-08 10:30:39.958087 0d982365-888a-42d1-9417-b03cca8c480f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/108451836"}, "pid": "945", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003981555"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/088404587"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11150698"} 6 -2023-07-08 08:24:14.955004 2023-07-08 08:24:14.955007 39367c9d-bf8d-4532-b194-df36dd36be22 {"pid": "6196", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005368039"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:15.018285 2023-07-08 08:24:15.018288 cadd9f30-a469-4686-be31-b3d721c4ea44 {"pid": "6197", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005460720"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:15.107643 2023-07-08 08:24:15.107652 c457bb2b-8d9d-4cb4-bb82-5dd8dc87e1c3 {"pid": "6198", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005463202"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:15.210867 2023-07-08 08:24:15.210875 31d4257d-a73c-423a-9dcc-b1be601a46cb {"pid": "6199", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005464802"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:15.303517 2023-07-08 08:24:15.303526 234ebd6c-3e09-47cb-875f-3008c7c05ce0 {"pid": "6200", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005466192"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:15.391318 2023-07-08 08:24:15.391323 82d2ad0e-59c6-4978-a63b-f28a7b02ce33 {"pid": "6201", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005469950"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:15.481712 2023-07-08 08:24:15.48172 56c910f8-3574-4b62-a0b9-6d447bdef6a1 {"pid": "6202", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005471055"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:15.567765 2023-07-08 08:24:15.567774 696751ce-f7f5-4bda-9559-786de5145c31 {"pid": "6203", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005475587"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:15.660591 2023-07-08 08:24:15.6606 0a5538da-4134-4435-8645-6910b830526d {"pid": "6204", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005480840"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:15.738639 2023-07-08 08:24:15.738643 86e93a6b-1c46-4471-8991-14036ba754c3 {"pid": "6205", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005495353"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:15.817389 2023-07-08 08:24:15.817397 a0397c46-60bb-4672-bb25-73a8a4a62190 {"pid": "6206", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005496746"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:15.908852 2023-07-08 08:24:15.908867 7ababb2f-a6a3-4d62-8be9-f114758ef504 {"pid": "6207", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005513603"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:15.991963 2023-07-08 08:24:15.991972 9e5d0209-9983-4ce6-b393-066697381ae8 {"pid": "6208", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005522657"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:16.070898 2023-07-08 08:24:16.070905 eaf2f09c-11cb-40ad-b1b1-942e1fea53af {"pid": "6209", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005533991"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:16.154957 2023-07-08 08:24:16.154966 41031159-4631-4a66-8537-85c96db7a9e7 {"pid": "6210", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005558255"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:16.233663 2023-07-08 08:24:16.233673 e1246bbe-33b6-4dca-96f9-c3ff47a737ac {"pid": "6211", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005570502"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:16.320929 2023-07-08 08:24:16.320937 a32da89d-adfc-4193-a837-35fef861b31b {"pid": "6212", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005573785"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:16.408912 2023-07-08 08:24:16.408923 16a99b09-ed1d-4092-ba4b-83e0f4c8f9b6 {"pid": "6213", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005595559"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:16.503862 2023-07-08 08:24:16.50387 200298b1-4b3b-4a5f-9b8e-2fa2660fdab5 {"pid": "6214", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005599445"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:16.588116 2023-07-08 08:24:16.588124 2a20deae-6a9a-4433-b7e6-1d49b1323dfc {"pid": "6215", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005605846"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:16.675013 2023-07-08 08:24:16.675018 c0802842-1a88-404a-abc6-6641255c7ac8 {"pid": "6216", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005621817"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:16.768734 2023-07-08 08:24:16.768743 83b92195-3c1e-4ec9-aabe-82720301293c {"pid": "6217", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005623637"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:16.85479 2023-07-08 08:24:16.854797 38441358-3789-47a4-a391-7a9bf19d02c8 {"pid": "6218", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005655274"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:16.942076 2023-07-08 08:24:16.942081 05705814-c8f7-4d01-96b5-7ee313178041 {"pid": "6219", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005663176"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:17.045016 2023-07-08 08:24:17.04502 68e5b939-6dc6-4e6f-ac86-de7d8937132e {"pid": "6220", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005673019"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:17.135931 2023-07-08 08:24:17.135944 25c418dc-821c-4e8c-82ed-bb8b4cf0a943 {"pid": "6221", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005680197"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:17.224562 2023-07-08 08:24:17.224565 cf53196e-eb27-4ece-9dbb-f2b783d01585 {"pid": "6222", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005718969"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:17.4649 2023-07-08 08:24:17.464909 c35ce76b-6e8b-45c1-aeb4-52f931a92aeb {"pid": "6224", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005753197"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:17.545885 2023-07-08 08:24:17.545896 ce75570e-6406-4c6b-8501-2a7a25eb5d7b {"pid": "6225", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005770175"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:17.630531 2023-07-08 08:24:17.630536 c1675c19-4a03-4132-a74a-1694558a0244 {"pid": "6226", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005787734"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:17.701195 2023-07-08 08:24:17.701198 8b675a5c-8c12-4ad1-92b0-64c279b7e8a5 {"pid": "6227", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005794650"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:17.77029 2023-07-08 08:24:17.770293 9a4447ea-bbb6-4120-a340-2957a2d1c02d {"pid": "6228", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005814757"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:17.91945 2023-07-08 08:24:17.919453 fe9848e0-6033-4e92-b196-8949c9bf1824 {"pid": "6230", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005915341"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:18.018735 2023-07-08 08:24:18.018748 c425573f-0702-4588-a81a-f4b4abfae960 {"pid": "6231", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005942520"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:18.106546 2023-07-08 08:24:18.106549 824e3196-a2f7-4389-ba1a-afc5d53ef211 {"pid": "6232", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005944951"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:18.190418 2023-07-08 08:24:18.190421 8df7f360-4496-433d-96e0-194e7b0dc919 {"pid": "6233", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005945920"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:18.26621 2023-07-08 08:24:18.266214 381634ab-53bb-44b8-aea3-25ed0bec0677 {"pid": "6234", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005984015"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:18.422144 2023-07-08 08:24:18.422147 d441b0b0-c8c1-4742-b181-20019637084c {"pid": "6236", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006018560"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:18.490264 2023-07-08 08:24:18.490268 56a6027a-0a33-49a2-bd8a-bf4f381805cb {"pid": "6237", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006023343"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:18.6847 2023-07-08 08:24:18.684708 cb8d2270-90f1-4510-9767-81f535741636 {"pid": "6239", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006048308"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:18.78407 2023-07-08 08:24:18.784078 4c088a91-9079-4608-bef6-6a51ab368f86 {"pid": "6240", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006055239"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:18.886062 2023-07-08 08:24:18.88607 82aa2636-6b77-4985-a827-2f869fed550d {"pid": "6241", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006055590"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:19.07962 2023-07-08 08:24:19.079628 9008a955-8dc1-461e-9fcd-ea7f6084c3d0 {"pid": "6243", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006071676"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:19.156636 2023-07-08 08:24:19.156646 30c9080e-7637-4cb9-921d-88a3d7d6cf2a {"pid": "6244", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006094802"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:19.231918 2023-07-08 08:24:19.231921 c106195b-63e3-4a30-9374-4a4f10f60da1 {"pid": "6245", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006099782"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:19.312877 2023-07-08 08:24:19.312885 3224baee-cd50-4f44-82d3-8888d342ff87 {"pid": "6246", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006102670"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:19.403359 2023-07-08 08:24:19.403367 fa6a419e-ead5-4d21-8725-9750818f0fc1 {"pid": "6247", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006154163"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:19.582729 2023-07-08 08:24:19.582737 a62fa138-2c98-4240-9e9e-dae134060794 {"pid": "6249", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006173450"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:19.748323 2023-07-08 08:24:19.748329 af6d3d03-6764-4c46-93b2-b9d358903e85 {"pid": "6250", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006204823"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:19.815982 2023-07-08 08:24:19.815988 cefe2de3-47d5-47f9-908b-e9279f2c3fa3 {"pid": "6251", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006210520"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:19.886304 2023-07-08 08:24:19.886307 e45e7b21-2848-4527-9972-f44afc8063f3 {"pid": "6252", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006220068"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:19.950061 2023-07-08 08:24:19.950064 5c7b06ea-888b-41ea-8ce1-727b10dc1d0a {"pid": "6253", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006225272"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:20.013435 2023-07-08 08:24:20.013438 1cde2c9c-9507-4f74-8d0b-992b11b0d4ac {"pid": "6254", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006241487"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:20.078207 2023-07-08 08:24:20.078211 992734b7-425e-4fd9-9a67-b8cff762dc02 {"pid": "6255", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006246319"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:20.145094 2023-07-08 08:24:20.145098 244f9b3b-dd2c-4cb6-9c6a-abd6c5f5ce93 {"pid": "6256", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006251854"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:20.214334 2023-07-08 08:24:20.214337 449ece6a-870b-481e-bcd1-76f420966d17 {"pid": "6257", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006282682"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:20.288403 2023-07-08 08:24:20.288406 283a70f7-1bc4-46bf-afc2-e527e15482ca {"pid": "6258", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006288245"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:18.34357 2023-07-08 10:26:32.621459 94659b32-4df3-47df-a54d-ca991be94039 {"pid": "6235", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005995031"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104973469"} 2 -2023-07-08 08:24:18.583815 2023-07-08 10:27:28.398098 8f1788cc-aae7-40f6-aefa-0df204476dd5 {"pid": "6238", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006035318"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10712541"} 2 -2023-07-08 08:24:18.981584 2023-07-08 10:31:09.208959 61ca75c0-059f-44bb-8179-1170c2642166 {"pid": "6242", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006065033"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111907831"} 2 -2023-07-08 08:24:19.494719 2023-07-08 10:29:41.82157 ebb7928b-ea4b-4943-95b4-5bf2b0c49feb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/120981238"}, "pid": "6248", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006159385"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110149296302380670007"} 3 -2023-07-08 08:24:20.364813 2023-07-08 08:24:20.364817 61a64f9d-1b83-445b-97c9-27d41d20b760 {"pid": "6259", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006304507"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:20.441616 2023-07-08 08:24:20.44162 4a6d86f2-3c27-4c1d-8d91-9f3a57346e8b {"pid": "6260", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006305372"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:20.51495 2023-07-08 08:24:20.514953 78f3e6ed-3013-47a9-bf68-e0bd17c4cc9b {"pid": "6261", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006319847"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:20.577944 2023-07-08 08:24:20.577951 8f6b4220-d9db-4ee9-b79e-44a668f08b6d {"pid": "6262", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006331016"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:20.648602 2023-07-08 08:24:20.64861 0a07185e-af13-4d57-9b21-f03f6448821d {"pid": "6263", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006378241"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:20.732553 2023-07-08 08:24:20.732557 a5e88f60-7b6c-4513-92f6-2bda71448845 {"pid": "6264", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006384206"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:20.913511 2023-07-08 08:24:20.913516 a990f2db-2853-46ec-b77c-260d07c7ff5e {"pid": "6266", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006407470"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:20.995237 2023-07-08 08:24:20.99524 a0061d61-1b0d-494c-86f0-2ff139e78fda {"pid": "6267", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006417880"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:21.067068 2023-07-08 08:24:21.067071 62850ac5-5990-4e30-a6e2-3ddeda9e6e52 {"pid": "6268", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006417971"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:21.138999 2023-07-08 08:24:21.139005 12bb9cef-4b7d-447e-b4e2-94f7aae06800 {"pid": "6269", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006451071"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:21.21475 2023-07-08 08:24:21.214759 5add4555-0d35-45a1-be17-63a6b391b47d {"pid": "6270", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006525884"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:21.280524 2023-07-08 08:24:21.280527 016f7cef-ddaf-4767-8f97-4690634ae3f6 {"pid": "6271", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006533818"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:21.345583 2023-07-08 08:24:21.345587 85ff265d-056e-40bc-bccb-400e0f371710 {"pid": "6272", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006534193"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:21.413514 2023-07-08 08:24:21.413519 9ac54dac-8fd7-4f76-8929-0705f9b18790 {"pid": "6273", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006581053"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:21.571187 2023-07-08 08:24:21.57119 c5ff2bde-89b1-4034-9a36-d8aa5e8eed37 {"pid": "6274", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A008591482"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:21.639255 2023-07-08 08:24:21.639258 bf5e175b-25e2-4d18-8919-a4d86a502911 {"pid": "6275", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A008595638"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:21.714323 2023-07-08 08:24:21.714326 cdb5ae72-aec5-4d63-86b9-b2706e4f8e60 {"pid": "6276", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A008660620"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:21.935293 2023-07-08 08:24:21.935296 975885df-ec2b-4fee-9aee-e06b64cc1207 {"pid": "6278", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A008794733"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:22.005919 2023-07-08 08:24:22.005923 463d242f-5403-4056-872e-0830b70c8460 {"pid": "6279", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A008799434"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:22.077283 2023-07-08 08:24:22.07729 8dbe0813-fb53-4b30-b64b-27185e0e0e60 {"pid": "6280", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A008811165"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:22.154308 2023-07-08 08:24:22.15431 ac125fad-53d2-443c-8952-b745105cf4a4 {"pid": "6281", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A008813776"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:22.221275 2023-07-08 08:24:22.221278 4c1f616e-202c-4001-b825-4dc46ca49fd9 {"pid": "6282", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A008846996"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:22.290082 2023-07-08 08:24:22.290085 20792271-b296-43d1-b76f-46cd89a7de19 {"pid": "6283", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A008873000"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:22.365688 2023-07-08 08:24:22.365691 ca361d5b-3d0a-4080-8dd8-afb676e4cf48 {"pid": "6284", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A008883799"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:22.430434 2023-07-08 08:24:22.430438 dfcdf5ea-c054-4476-8701-1e54a7830ff8 {"pid": "6285", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A008902038"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:22.505715 2023-07-08 08:24:22.505717 9b073bda-a2c8-4f52-8088-9d8079ea43b8 {"pid": "6286", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A008915559"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:22.568513 2023-07-08 08:24:22.568517 b91c1e7f-c070-43c6-8f33-29a5662695e6 {"pid": "6287", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A008943784"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:20.83022 2023-07-08 10:25:10.11581 f796c7e2-bb97-476e-959c-78bd2b4fe08c {"pid": "6265", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006389498"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102218173"} 2 -2023-07-08 08:24:21.869404 2023-07-08 10:27:07.041446 2f3cf805-5dc7-422b-bcbf-9348d72be31f {"pid": "6277", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A008730051"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106312488"} 2 -2023-07-08 08:23:00.867725 2023-07-08 10:25:15.07093 5579198b-d2c3-4543-a1e6-4eb5a871db3e {"pid": "5582", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A008729062"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254678475"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102373586"} 4 -2023-07-08 08:24:22.631827 2023-07-08 08:24:22.63183 148ad15e-7d02-4d4e-a6bc-b1a0509f32dc {"pid": "6288", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A008959724"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:22.694968 2023-07-08 08:24:22.694972 51a8ff07-c267-4b48-91df-1c8e7e20e8a8 {"pid": "6289", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A008978887"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:22.763255 2023-07-08 08:24:22.763258 3bb68b4f-b651-4022-8ff0-5be8a9f09dce {"pid": "6290", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009007993"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:22.839079 2023-07-08 08:24:22.839082 3139ce02-9f94-42b4-b224-f0cc2cb642ae {"pid": "6291", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009035130"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:22.909814 2023-07-08 08:24:22.90982 7e05b12d-1cd8-4b49-bd62-ea75fc9b5ddd {"pid": "6292", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009047642"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:22.985373 2023-07-08 08:24:22.985376 87c15bb7-9522-4e71-ae67-4a013ecb8bf2 {"pid": "6293", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009059078"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:23.052195 2023-07-08 08:24:23.052201 46e25165-0579-42ab-b798-65c443d5f095 {"pid": "6294", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009061697"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:23.12221 2023-07-08 08:24:23.122213 da6b9d4d-d0ae-4a9e-bdea-3c30cf1bc444 {"pid": "6295", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009062623"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:23.27804 2023-07-08 08:24:23.278049 ceb7a09f-01ae-4593-aaa5-7f12e3572eef {"pid": "6297", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009106239"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:23.359489 2023-07-08 08:24:23.359499 a6c7b9e9-a3b7-4587-a68f-cc80fa2cb82b {"pid": "6298", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009112861"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:23.439068 2023-07-08 08:24:23.439075 c55179f7-9068-404a-a9dc-f6a42dbdb1ef {"pid": "6299", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009177536"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:23.523967 2023-07-08 08:24:23.523977 5b1ccab0-4b32-48a4-968b-5c6e8396fa7f {"pid": "6300", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009187240"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:23.60957 2023-07-08 08:24:23.609577 1c2b0693-7b1e-44eb-8258-3530c9d6299a {"pid": "6301", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009191402"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:23.695872 2023-07-08 08:24:23.695881 f3276bec-93e5-4186-b6d0-cfb34c889a89 {"pid": "6302", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009191855"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:23.876579 2023-07-08 08:24:23.87659 2dfe9276-4779-4ad4-a942-aac59ad1cfc1 {"pid": "6304", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009281447"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:23.968298 2023-07-08 08:24:23.968306 dd8a934b-ae0f-4e96-bf94-7b5261e1ba2a {"pid": "6305", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009303631"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:24.163116 2023-07-08 08:24:24.163123 5df890b0-360f-4f83-969e-7cef6d315dde {"pid": "6307", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009309124"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:24.237238 2023-07-08 08:24:24.237241 ef67d8e0-3ad2-40d0-b5ce-4cc8c133d8d0 {"pid": "6308", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009315376"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:24.321694 2023-07-08 08:24:24.321703 6b3394b3-6a5c-4ddc-9e9a-cf1251c33569 {"pid": "6309", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009341300"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:24.40824 2023-07-08 08:24:24.408248 7f722b5e-d42f-474c-b441-5cd9633dc5f0 {"pid": "6310", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009366379"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:24.491295 2023-07-08 08:24:24.491305 1997dff7-1b15-42d3-bc16-b7270f5f7d73 {"pid": "6311", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009366743"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:24.577092 2023-07-08 08:24:24.577102 fbc639ef-2626-45a6-8848-aa5cbe543d84 {"pid": "6312", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009390744"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:24.665364 2023-07-08 08:24:24.665371 1bea6a08-abec-4ca3-a354-438a25d7e8db {"pid": "6313", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009403017"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:24.821378 2023-07-08 08:24:24.821386 b1923688-128a-48a8-ab44-df5c9a94be12 {"pid": "6314", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009431913"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:24.914025 2023-07-08 08:24:24.914031 217aa823-b410-4f48-a184-2ca069deda87 {"pid": "6315", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009476519"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:24.996325 2023-07-08 08:24:24.996334 ec77b885-564f-4e67-a818-e0dc8f61f58c {"pid": "6316", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009505580"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:25.163979 2023-07-08 08:24:25.163986 ca3a1da5-a3d0-4505-809f-880cc35d1857 {"pid": "6317", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009523157"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:24.068093 2023-07-08 10:25:10.18015 3c9f49fb-424c-424d-9aa9-1d017116b3fb {"pid": "6306", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009306109"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10222925"} 2 -2023-07-08 08:24:23.198929 2023-07-08 10:30:10.48654 d4dfc46e-1c83-4aea-a4a4-05908c9a56a5 {"pid": "6296", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009084334"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110752429"} 2 -2023-07-08 08:24:25.24445 2023-07-08 08:24:25.244459 03fcddd4-8cb4-47e5-961b-6b14e5bae177 {"pid": "6318", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009541958"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:25.332924 2023-07-08 08:24:25.332932 2cae2223-e9ed-4544-9e59-165f8507d52c {"pid": "6319", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009544653"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:25.421781 2023-07-08 08:24:25.42179 4021d2f2-1446-4105-958f-89552723f37c {"pid": "6320", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009546303"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:25.506478 2023-07-08 08:24:25.506481 2f1edf3f-188d-42f1-b1ab-71cdca2d8bed {"pid": "6321", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009587127"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:25.694952 2023-07-08 08:24:25.694965 898aadf5-8fb6-4223-bb5c-64836b435734 {"pid": "6322", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009621407"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:25.774667 2023-07-08 08:24:25.774671 4d23c8e2-e6d4-41fa-b338-8cc5f12f5596 {"pid": "6323", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009631364"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:25.859871 2023-07-08 08:24:25.859882 1a28b44f-6c45-49d4-9baf-4b255a9bb4c6 {"pid": "6324", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009639453"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:25.944063 2023-07-08 08:24:25.944072 778289e0-3f9a-47d6-b277-32528cfafeea {"pid": "6325", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009643309"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:26.02565 2023-07-08 08:24:26.026153 bbc26610-e6eb-4c1e-81f8-d89963f46299 {"pid": "6326", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009673075"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:26.209876 2023-07-08 08:24:26.209881 4498a615-b6e2-4927-8633-34e3298b7ddf {"pid": "6327", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009754386"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:26.279188 2023-07-08 08:24:26.279191 c77cf961-4e91-4da6-b5b6-e47aac7e484b {"pid": "6328", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009973428"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:26.36281 2023-07-08 08:24:26.362818 f301e184-1119-425a-ae1c-ff7bf458cadb {"pid": "6329", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009989567"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:26.453082 2023-07-08 08:24:26.45309 6caaf98e-e744-4184-bc1a-cdc6812f21f5 {"pid": "6330", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A010006868"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:26.542829 2023-07-08 08:24:26.54284 97ec2e03-4a09-4a64-86a1-d5138720d68b {"pid": "6331", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A010043080"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:26.643165 2023-07-08 08:24:26.643176 a5abd79e-015a-4ecc-ba6b-c939a998f5ae {"pid": "6332", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A010073993"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:26.730262 2023-07-08 08:24:26.730271 3f6ef9cf-d525-4bf1-989c-0bc655d15264 {"pid": "6333", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A010086586"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:26.819378 2023-07-08 08:24:26.819386 c6ad1300-6f5c-4dc6-991b-ef5f858775ca {"pid": "6334", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A010104035"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:26.905451 2023-07-08 08:24:26.905455 290e5e1f-c0c4-4c7f-aded-91b61b0a4110 {"pid": "6335", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A010152644"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:26.991178 2023-07-08 08:24:26.991187 136ac947-31af-4bd7-9c17-45d1ff8d9480 {"pid": "6336", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A010154587"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:27.182859 2023-07-08 08:24:27.182869 45e01795-aab2-4b45-b326-87f476cdcf8b {"pid": "6338", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A010219336"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:27.275184 2023-07-08 08:24:27.275187 f5ddd6ec-f1fc-4d24-b75b-8799da712532 {"pid": "6339", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A010244192"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:27.488821 2023-07-08 08:24:27.488833 3b02a916-0d3a-465e-bdb4-752c19010353 {"pid": "6340", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A010941010"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:27.583517 2023-07-08 08:24:27.583522 9ab83dcb-aaaa-467f-8f5e-960a7da2d44d {"pid": "6341", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A010941759"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:27.670884 2023-07-08 08:24:27.670893 d0d7b0fb-3eec-4f41-a018-8ffda5fb188a {"pid": "6342", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A010952913"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:27.754889 2023-07-08 08:24:27.754893 a3a224fa-34f7-4932-9563-b50edf35d75b {"pid": "6343", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A010959260"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:27.94741 2023-07-08 08:24:27.947421 4343ef1f-c228-40ab-ab24-1f6837ee1850 {"pid": "6345", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011038799"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:28.032953 2023-07-08 08:24:28.032961 2733a1ae-b1fd-4d72-b68a-74b8b9c31aca {"pid": "6346", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011078595"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:28.112421 2023-07-08 08:24:28.112433 747b7e15-2c03-4c64-b3dc-00462530d9e9 {"pid": "6347", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011089656"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:27.861638 2023-07-08 10:26:45.157479 b68ca271-f27b-402b-b05e-45d0b1ed5d66 {"pid": "6344", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011007424"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1056159248481204870000"} 2 -2023-07-08 08:24:27.08766 2023-07-08 10:27:14.693648 d653e9ef-9ce0-42aa-a725-6d40b21510c8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/119552914"}, "pid": "6337", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A010176792"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10658696"} 3 -2023-07-08 08:24:28.203808 2023-07-08 08:24:28.203817 f23b056f-3b44-46e0-86e7-25c5e6e7c3a0 {"pid": "6348", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011095417"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:28.29607 2023-07-08 08:24:28.29608 f2d02a9b-4118-4009-9340-b8882df05b10 {"pid": "6349", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011106617"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:28.487497 2023-07-08 08:24:28.487505 60306e95-c528-476a-82e3-471e1ded007d {"pid": "6351", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011132692"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:28.59113 2023-07-08 08:24:28.591137 d1b81868-c52e-48b6-a863-d5e200234905 {"pid": "6352", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011151957"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:28.694141 2023-07-08 08:24:28.694149 be0fe8fc-ea9d-47d1-be9e-9e2c5c99ef19 {"pid": "6353", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011157710"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:28.797806 2023-07-08 08:24:28.797817 3e4e2f46-ed00-48b5-932b-73d4895db14f {"pid": "6354", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011241983"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:28.890822 2023-07-08 08:24:28.890829 ee8dd164-21b4-4c82-a837-983d45582be5 {"pid": "6355", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011363373"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:28.973061 2023-07-08 08:24:28.97307 b3fcab69-a3c3-4337-ac76-caed1be03a39 {"pid": "6356", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011377115"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:29.066493 2023-07-08 08:24:29.066503 0cbf7eae-0573-4827-b061-5da4f6db3794 {"pid": "6357", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011383290"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:29.161102 2023-07-08 08:24:29.161113 4ed00d60-42fc-4228-8a69-98e320f9fb0a {"pid": "6358", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011384771"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:29.244497 2023-07-08 08:24:29.244501 b05e3991-95a7-4b9b-bfcb-42ceb10f0ac2 {"pid": "6359", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011412011"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:29.422664 2023-07-08 08:24:29.422673 a057083b-3d2b-4d5d-a6b1-b1541fa034f9 {"pid": "6361", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011417535"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:29.508101 2023-07-08 08:24:29.508104 ed1a6b44-94fd-43cd-8252-aaec85341e19 {"pid": "6362", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011464222"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:29.595987 2023-07-08 08:24:29.595997 dd85ce5e-e8fe-440d-8546-184fc73853b5 {"pid": "6363", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011466531"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:29.700476 2023-07-08 08:24:29.700484 05d01a4e-3673-4c14-9feb-389a1b603fcb {"pid": "6364", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011466589"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:29.877413 2023-07-08 08:24:29.877421 c943b2e4-19e4-4df3-a677-a34c3956226d {"pid": "6365", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011558774"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:29.962777 2023-07-08 08:24:29.962784 bbebbfb0-1b28-4d41-be0b-4af472486c86 {"pid": "6366", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011591041"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:30.046654 2023-07-08 08:24:30.046664 1b348371-faaf-4a62-86be-3086eb18d4b6 {"pid": "6367", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011627404"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:30.138639 2023-07-08 08:24:30.138646 0ec10d58-bf0f-4301-842a-79bbcf93354f {"pid": "6368", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011674667"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:30.332933 2023-07-08 08:24:30.33294 f3c70d6b-665b-4b64-b207-333f9ee49116 {"pid": "6369", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011733730"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:30.536803 2023-07-08 08:24:30.536811 99bede5c-a49a-4049-9f44-c3c26cc3d0d1 {"pid": "6370", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011743931"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:30.629272 2023-07-08 08:24:30.629283 092e8ca5-bc25-4a94-9a2b-6bc03bace06c {"pid": "6371", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011755738"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:30.918544 2023-07-08 08:24:30.918553 e5b22a05-436f-4963-975d-1c8320957a45 {"pid": "6373", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011818787"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:31.011028 2023-07-08 08:24:31.011036 bf5ccfed-4b1f-4707-96d9-482039c86328 {"pid": "6374", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011831186"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:31.096041 2023-07-08 08:24:31.09605 c2d9e16f-b9c8-4a4c-8966-e0e8a8d2cc30 {"pid": "6375", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011875062"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:31.194483 2023-07-08 08:24:31.194497 8b475485-2719-40e0-95a2-d63e490571d0 {"pid": "6376", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011896248"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:29.334442 2023-07-08 10:26:23.342814 b328aeeb-90b2-4082-8fb8-45bf128bdad6 {"pid": "6360", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011417162"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1043147907501079210004"} 2 -2023-07-08 08:24:30.804528 2023-07-08 10:25:22.651875 ed2d7a72-08b4-4e25-9c9a-6a956aed048c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139708162"}, "pid": "6372", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011817228"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102564304"} 3 -2023-07-08 08:24:28.399476 2023-07-08 10:31:16.748004 98268b1d-93cd-459b-8f78-b04987bae23c {"pid": "6350", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011113114"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1121159248246104870009"} 2 -2023-07-08 08:24:31.271844 2023-07-08 08:24:31.271847 b0160092-e4c2-4e00-a3cc-d3b98c5043cd {"pid": "6377", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011919031"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:31.352564 2023-07-08 08:24:31.352573 9887eb27-bc0b-4902-9ddd-59f2c0c26827 {"pid": "6378", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011935041"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:31.44929 2023-07-08 08:24:31.4493 c7546cb7-547f-48df-b990-b0221ade5786 {"pid": "6379", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011951291"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:31.541565 2023-07-08 08:24:31.541575 a1558b06-60c8-4346-9609-4b495150afb0 {"pid": "6380", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011958684"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:31.638456 2023-07-08 08:24:31.638499 c58fc468-0866-48c0-a09c-4e07a9ae4ead {"pid": "6381", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011959589"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:31.740388 2023-07-08 08:24:31.740392 1d42e54a-e157-4b67-b4de-1dd563141254 {"pid": "6382", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011961159"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:31.832214 2023-07-08 08:24:31.832227 f39d3f04-4d5a-419d-8806-11bb6e4c2160 {"pid": "6383", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011964957"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:31.950808 2023-07-08 08:24:31.950816 c45bed12-daf2-441b-ac66-d95b2fd57420 {"pid": "6384", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011971216"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:32.237642 2023-07-08 08:24:32.237648 18b7558f-cd7a-4c4b-8eab-7c39dbfed12a {"pid": "6385", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011992966"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:32.321628 2023-07-08 08:24:32.321635 be8e6543-ebe7-4c48-8efc-9b73f8dc1e5f {"pid": "6386", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012003599"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:32.409793 2023-07-08 08:24:32.409801 5fff8a74-0b75-491b-9664-efc338f2ae0f {"pid": "6387", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012045391"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:32.586799 2023-07-08 08:24:32.586807 71088c2a-3b03-482b-b052-743cde7c056b {"pid": "6388", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012053752"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:32.775457 2023-07-08 08:24:32.77547 1b928674-649e-4019-917d-84d68461d75d {"pid": "6390", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012098479"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:32.955008 2023-07-08 08:24:32.955016 947241db-2de4-4b91-b697-9c709e5756e3 {"pid": "6391", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012128366"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:33.044894 2023-07-08 08:24:33.044902 689a8ce6-4d64-4e29-8493-8fc03b395d42 {"pid": "6392", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012136328"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:33.14627 2023-07-08 08:24:33.146278 b5d3b789-71e1-4a84-82fb-3f940ddfa00a {"pid": "6393", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012311534"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:33.244714 2023-07-08 08:24:33.244718 770d00ae-3ab1-4278-a06e-849bd761ea97 {"pid": "6394", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012313581"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:33.442449 2023-07-08 08:24:33.442731 2208b312-df6b-4ac8-a250-a22eee18a04d {"pid": "6396", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012315468"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:33.543306 2023-07-08 08:24:33.543323 c4fe9574-c182-4f18-8e4b-d2605dbcd16d {"pid": "6397", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012322962"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:33.630945 2023-07-08 08:24:33.630956 e3c4bf45-f64f-46d5-8245-7cb47c069b9d {"pid": "6398", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012323710"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:33.733943 2023-07-08 08:24:33.733955 4ef02dca-7e7a-461d-9f7a-e04444eb32d1 {"pid": "6399", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012325371"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:33.915711 2023-07-08 08:24:33.915719 154d822a-d62f-4890-ba90-fd981c7d12f1 {"pid": "6400", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012332893"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:34.003322 2023-07-08 08:24:34.003325 ed3975f8-eaf0-40e8-ad02-c418c3cc50ab {"pid": "6401", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012335428"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:34.198703 2023-07-08 08:24:34.198711 86389d23-fd62-4d31-9f53-a1dd9e945837 {"pid": "6403", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012343378"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:34.280052 2023-07-08 10:25:03.536341 2de1ddd8-b7a3-4352-a4ae-3dfb3902d2d7 {"pid": "6404", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012346177"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1020159234092003370594"} 2 -2023-07-08 08:24:32.688775 2023-07-08 10:25:08.916872 8d7e557f-5ad5-4cb5-b336-807f4fc612d4 {"pid": "6389", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012086274"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102176224"} 2 -2023-07-08 08:24:34.110457 2023-07-08 10:26:32.666541 3311dbe7-f052-4f46-8685-73f1f899049c {"pid": "6402", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012338211"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105001321"} 2 -2023-07-08 08:22:00.896916 2023-07-08 10:29:19.126693 5307e28a-d7e7-4eb5-8d78-4614b59a39e3 {"pid": "5019", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011981174"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/220457220"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109617438"} 4 -2023-07-08 08:22:47.201765 2023-07-08 10:30:50.949563 2766da17-db3a-4a52-8e7a-2aa4f6ca2238 {"pid": "5431", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012045625"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244049882"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111570411"} 4 -2023-07-08 08:24:34.476336 2023-07-08 08:24:34.476349 8241c46d-fa77-412b-bd2c-1413da416370 {"pid": "6406", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012349826"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:34.562754 2023-07-08 08:24:34.562762 346ba3f2-1d6e-4555-be25-9d783278a1f6 {"pid": "6407", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012350932"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:34.658652 2023-07-08 08:24:34.658661 1ae39c59-71a1-4aa6-8718-7dc7332ab6aa {"pid": "6408", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012352585"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:34.849052 2023-07-08 08:24:34.849061 0337b3a6-a4f0-42bb-9360-efdd0911281c {"pid": "6410", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012366684"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:35.126089 2023-07-08 08:24:35.126097 666f3646-0298-4ad1-9755-1782f8b7af7f {"pid": "6413", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012371308"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:35.21505 2023-07-08 08:24:35.215058 aa24dbe7-f73e-4d2f-81e1-b62b0f5244bb {"pid": "6414", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012374691"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:35.296172 2023-07-08 08:24:35.296185 d53eb726-d101-4fba-b31a-b59c5246b080 {"pid": "6415", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012374741"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:35.385736 2023-07-08 08:24:35.385745 9e4e29a1-3fb7-44d1-81cb-59eb772cc169 {"pid": "6416", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012377358"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:35.4924 2023-07-08 08:24:35.492404 22117e2f-c986-44b0-a6f2-2ba07dc0c342 {"pid": "6417", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012377584"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:35.681238 2023-07-08 08:24:35.681246 e5c322fc-5294-43eb-8bea-b2a0e79e190f {"pid": "6419", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012385634"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:35.898951 2023-07-08 08:24:35.898956 8a608228-63aa-4cff-9e60-0b6c58c760d4 {"pid": "6421", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012387358"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:36.004569 2023-07-08 08:24:36.004581 101ba6f9-51f8-46d7-ad53-e3b17f2a1eb1 {"pid": "6422", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012387899"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:36.217318 2023-07-08 08:24:36.217326 ec80354d-b153-408b-82fd-613d34335ee8 {"pid": "6424", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012388884"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:36.294879 2023-07-08 08:24:36.294884 d643a81d-5ee0-4abc-a0e7-78cc32cc51f0 {"pid": "6425", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012390212"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:36.75765 2023-07-08 08:24:36.757653 5e33f72b-8b76-4b27-8750-521fe3549f6e {"pid": "6430", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012397510"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:36.845017 2023-07-08 08:24:36.845022 6a415215-40f1-46dd-9f91-e53c95f677a3 {"pid": "6431", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012402163"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:36.924926 2023-07-08 08:24:36.92493 1abb4fbd-49d3-4835-83e8-13c201e7eb69 {"pid": "6432", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012406670"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:37.239418 2023-07-08 08:24:37.239426 b56a243e-12cb-4dba-b36b-ca31256225f7 {"pid": "6435", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012409972"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:35.03936 2023-07-08 10:23:46.109076 a7968d58-2122-4416-914a-692c94b2d918 {"pid": "6412", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012368815"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1003159234265203371222"} 2 -2023-07-08 08:24:35.799763 2023-07-08 10:23:50.58145 99507085-e353-4531-8a5f-e2be69562711 {"pid": "6420", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012387266"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1004159234088503370639"} 2 -2023-07-08 08:24:37.14678 2023-07-08 10:24:03.983037 093d9335-ef30-42de-b18e-9f24790c480d {"pid": "6434", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012409616"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1008159234265103371174"} 2 -2023-07-08 08:24:35.588429 2023-07-08 10:24:07.290322 95dcd1a6-5a09-43fa-9617-bfadd8601830 {"pid": "6418", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012378544"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1009159234410703371526"} 2 -2023-07-08 08:24:34.748266 2023-07-08 10:24:44.612311 0b6d67a7-aeb1-40eb-814e-07547a5a44b5 {"pid": "6409", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012353728"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1015159234253603371194"} 2 -2023-07-08 08:24:36.673763 2023-07-08 10:25:36.421062 ab87e1d5-7f0b-4ccb-b11b-e4c48c2a3f10 {"pid": "6429", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012396940"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1030159234410803371521"} 2 -2023-07-08 08:24:37.038105 2023-07-08 10:26:32.710681 5b40f717-d6bf-4e84-9e09-eb7cfdd201db {"pid": "6433", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012408608"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1050159234870503372976"} 2 -2023-07-08 08:24:36.585533 2023-07-08 10:28:15.68807 54fcac45-a3c0-42fb-a2df-5721651b32ce {"pid": "6428", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012394672"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1081159234461303371823"} 2 -2023-07-08 08:24:36.388292 2023-07-08 10:29:22.796224 691625f2-33b0-461b-8443-068f3346540d {"pid": "6426", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012391465"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1098159234092303370590"} 2 -2023-07-08 08:24:36.491917 2023-07-08 10:29:58.921318 558a76c2-1365-4713-9e52-225f85241b43 {"pid": "6427", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012393385"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1105159234724703372421"} 2 -2023-07-08 08:24:36.114985 2023-07-08 10:31:25.945153 5f324bdd-297c-4a65-8540-f3a10dc355bf {"pid": "6423", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012388774"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112330830"} 2 -2023-07-08 08:24:37.330307 2023-07-08 08:24:37.330315 8e6c263c-d3d7-41d0-be91-27afdb937db3 {"pid": "6436", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012416360"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:37.516063 2023-07-08 08:24:37.516073 1bde5335-4682-4d82-9cc2-9f4c36025909 {"pid": "6438", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012416611"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:37.618107 2023-07-08 08:24:37.618122 fb1038a6-16a7-473e-aec1-37f8bdaf0953 {"pid": "6439", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012417107"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:37.717905 2023-07-08 08:24:37.717913 6856ae8d-2b4c-4ce9-9033-416fea91ec4f {"pid": "6440", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012417957"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:37.80517 2023-07-08 08:24:37.805179 174849ae-e905-4902-89b7-a01ce8e431a0 {"pid": "6441", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012418542"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:37.903634 2023-07-08 08:24:37.903645 5f9eb600-6ae5-418b-86bc-eddaf50d3f08 {"pid": "6442", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012419821"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:38.017836 2023-07-08 08:24:38.017841 08f4f80a-236b-4411-9fa4-6a0556af6507 {"pid": "6443", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012419929"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:38.102694 2023-07-08 08:24:38.102697 2f0c3996-cd2b-4f93-a6d3-0f386833fea0 {"pid": "6444", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012425753"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:38.413273 2023-07-08 08:24:38.413284 dc1d126a-d292-4e8e-a092-d44cd97232a5 {"pid": "6447", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012431216"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:38.620601 2023-07-08 08:24:38.620612 0e855f59-bfec-4765-ad66-97028f919ea4 {"pid": "6449", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012432065"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:38.702575 2023-07-08 08:24:38.702584 d63233d8-b7a5-4af7-a2a9-5495ed7d6d3c {"pid": "6450", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012435871"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:38.798943 2023-07-08 08:24:38.798953 d6c3844b-eadd-4af2-803a-953402a136f5 {"pid": "6451", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012437354"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:38.985697 2023-07-08 08:24:38.985706 198e99a4-0033-45fc-a115-a1eae3b202bd {"pid": "6453", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012442567"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:39.324391 2023-07-08 08:24:39.324394 e8dc0ef4-e67a-4130-8e51-6c83dce898e4 {"pid": "6457", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012454917"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:39.541874 2023-07-08 08:24:39.541883 08cfd169-ed07-4460-9508-3ce1d74faece {"pid": "6460", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012460208"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:39.804209 2023-07-08 08:24:39.804212 d17d97c9-cb38-484b-9f0a-eb49d05cb134 {"pid": "6463", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012468081"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:39.866344 2023-07-08 08:24:39.866346 65ccd095-20a4-4090-8434-b8a4c05bc82e {"pid": "6464", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012468192"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:39.934361 2023-07-08 08:24:39.934365 f1abf0e6-5c23-4e47-b6c2-6f569b83f3ca {"pid": "6465", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012470496"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:39.640255 2023-07-08 10:25:13.262056 caa320cf-96dd-4000-996c-aca4eb1538d2 {"pid": "6461", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012462643"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1023159234871303372962"} 2 -2023-07-08 08:24:38.311054 2023-07-08 10:26:45.307817 27efb45e-23eb-4ac5-a263-18ce346f169a {"pid": "6446", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012430693"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1058159234571703372062"} 2 -2023-07-08 08:24:39.736865 2023-07-08 10:26:46.921031 cf7720d0-df85-41ab-a173-f1b90709082f {"pid": "6462", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012465613"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1059159234449303371767"} 2 -2023-07-08 08:24:39.12161 2023-07-08 10:26:51.219271 deb4443a-187e-4096-a435-48d020a1403a {"pid": "6454", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012442717"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1060159233927703370267"} 2 -2023-07-08 08:24:38.899924 2023-07-08 10:27:44.993733 ca5d213b-72be-4aca-94ef-7c13c1525a9b {"pid": "6452", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012440656"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1073159234571803372068"} 2 -2023-07-08 08:24:38.530859 2023-07-08 10:27:53.078658 6f5b8b53-7db3-42f3-9845-efe3ebf779d3 {"pid": "6448", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012431876"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1076159234092503370604"} 2 -2023-07-08 08:24:38.202405 2023-07-08 10:27:56.24004 531a82d4-ef35-417e-aaed-c6c156668675 {"pid": "6445", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012427298"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1077159234465003371834"} 2 -2023-07-08 08:24:39.394522 2023-07-08 10:29:20.164187 99536616-1572-48a2-b261-9d2468838135 {"pid": "6458", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012457267"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1097159234411103371528"} 2 -2023-07-08 08:24:39.264338 2023-07-08 10:29:31.497483 1e828791-88ff-470d-965c-8737bcfeeac4 {"pid": "6456", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012448425"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1100159234253403371188"} 2 -2023-07-08 08:24:39.464139 2023-07-08 10:31:36.362598 c3512a0a-cbf8-4ebe-a3e0-b07b96f92090 {"pid": "6459", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012457605"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1129159234572203372085"} 2 -2023-07-08 08:24:37.420604 2023-07-08 10:31:40.029607 989b8717-dc52-44f7-a949-a842958d9504 {"pid": "6437", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012416378"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1131159234768203372708"} 2 -2023-07-08 08:24:40.131077 2023-07-08 08:24:40.131085 fef3b9b9-17e6-44da-9fad-cb3e0b159fc2 {"pid": "6467", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012470848"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:40.300055 2023-07-08 08:24:40.30006 04ee1c3f-1380-491f-93c4-f22bbadba2f6 {"pid": "6469", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012474515"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:40.383548 2023-07-08 08:24:40.383557 032e9599-9ccb-431d-832a-f1a77822950c {"pid": "6470", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012479271"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:40.466892 2023-07-08 08:24:40.4669 3b3e24bc-0ee4-483a-9f0d-b530f7e14675 {"pid": "6471", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012480008"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:40.553416 2023-07-08 08:24:40.553424 6ffd1149-6239-4eb4-bf01-dfa1e6c97483 {"pid": "6472", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012480139"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:40.743922 2023-07-08 08:24:40.743926 8c7f3d7f-0ce7-4141-950c-8f430267a434 {"pid": "6474", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012487640"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:40.808746 2023-07-08 08:24:40.808754 02c98e9a-e63c-49f2-93af-7210cd6bac1b {"pid": "6475", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012487887"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:40.901132 2023-07-08 08:24:40.901141 7642b930-ed86-4435-a87a-92b2f2a04d01 {"pid": "6476", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012488018"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:40.982953 2023-07-08 08:24:40.982957 f5f9b385-1490-4f50-95eb-1c59973d1440 {"pid": "6477", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012489633"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:41.06053 2023-07-08 08:24:41.060539 f0eb8c18-f687-499e-8a74-8b89ae52d6db {"pid": "6478", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012490094"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:41.154065 2023-07-08 08:24:41.154074 2273a3ae-0a6d-4edc-bfbd-ceeebc1705b4 {"pid": "6479", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012493490"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:41.327836 2023-07-08 08:24:41.327847 a26eb2a4-3d40-4bc7-a71f-f88f71e5fe93 {"pid": "6481", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012495733"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:41.411862 2023-07-08 08:24:41.411869 2b7276f4-110d-4ac7-bf23-243ef7c61e3e {"pid": "6482", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012497106"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:41.500747 2023-07-08 08:24:41.500755 54794520-6d77-4bd6-a431-bf9a0d5b36ff {"pid": "6483", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012497126"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:41.584226 2023-07-08 08:24:41.584235 d530a100-453f-4f75-96f1-cd8fa97f7d84 {"pid": "6484", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012497225"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:41.950856 2023-07-08 08:24:41.950865 f0bbde58-32d7-4058-b1ef-52ad9635b205 {"pid": "6488", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012506339"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:42.157917 2023-07-08 08:24:42.157922 0709cf4a-5d50-421a-b7f3-f2c9dbc6b717 {"pid": "6490", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012507478"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:42.255383 2023-07-08 08:24:42.255386 28821560-2f93-4d25-885e-4cde58f9ebbc {"pid": "6491", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012508085"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:42.383757 2023-07-08 08:24:42.38377 88346fcc-c7a4-45bc-911d-a801daf5ef50 {"pid": "6492", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012508468"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:42.468711 2023-07-08 08:24:42.468724 fc747fa9-d57b-48fe-94fb-13e6e27c04d5 {"pid": "6493", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012508709"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:42.664289 2023-07-08 08:24:42.664297 884a12c3-8628-4c1d-82d3-45d8a8fc7a5e {"pid": "6495", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012512864"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:41.678598 2023-07-08 10:26:09.956987 c8cc12a6-ad0b-4b97-84d7-d98dee60769a {"pid": "6485", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012498346"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1039159234276003371254"} 2 -2023-07-08 08:24:42.054983 2023-07-08 10:27:16.26032 3f56d335-d9bc-4aaf-99ae-81e2bfc747eb {"pid": "6489", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012506877"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1067159233906603370042"} 2 -2023-07-08 08:24:40.040637 2023-07-08 10:28:58.413375 809d6705-2e48-48bf-8cae-bf3a5440ee3d {"pid": "6466", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012470564"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1091159234695303372372"} 2 -2023-07-08 08:24:41.861596 2023-07-08 10:29:20.207047 d03ba3ca-27c3-4f1d-8a85-9303f8ed27fe {"pid": "6487", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012506256"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1097159234430403371753"} 2 -2023-07-08 08:24:42.566047 2023-07-08 10:29:28.558298 39037fcb-0d1c-4147-bd3d-2c4ee5a470e8 {"pid": "6494", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012509199"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1099159234600903372147"} 2 -2023-07-08 08:24:40.658272 2023-07-08 10:31:05.108124 d258d56b-589c-4029-98f0-d5e16d417e8f {"pid": "6473", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012484207"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1117159234093903370560"} 2 -2023-07-08 08:24:41.768971 2023-07-08 10:31:06.082147 ba7f43ff-459c-46d9-9198-4e8c2ddc390b {"pid": "6486", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012506176"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1118159234449503371761"} 2 -2023-07-08 08:24:40.235434 2023-07-08 10:31:32.053619 5c547445-740e-4ee3-bab7-6a0294718f7d {"pid": "6468", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012473809"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1126159234591003372120"} 2 -2023-07-08 08:24:42.845411 2023-07-08 08:24:42.845422 221f5c43-62db-468d-9b4b-1d0d3f1956ea {"pid": "6497", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012517704"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:42.937549 2023-07-08 08:24:42.93756 567e6fd5-98f3-4f9a-bee4-1f0a3b7e19a1 {"pid": "6498", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012518029"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:43.027616 2023-07-08 08:24:43.027625 d80649d0-4168-4e28-94ed-10b637b70176 {"pid": "6499", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012519806"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:43.103245 2023-07-08 08:24:43.103248 b0e96d68-8bf1-4b6d-877b-8b3f5f4b6711 {"pid": "6500", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012523458"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:43.289776 2023-07-08 08:24:43.28978 5efacc4b-fde8-477c-ad56-0e6f0c451af9 {"pid": "6502", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012525951"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:43.397824 2023-07-08 08:24:43.397833 5d3180fc-b530-418f-972f-0172b2b01e40 {"pid": "6503", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012527268"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:43.586163 2023-07-08 08:24:43.58617 8e2db2f4-2f4f-495f-a4ba-ac042e0c8601 {"pid": "6505", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012528466"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:43.686093 2023-07-08 08:24:43.686102 8e9fc739-1a07-4a7a-913c-d2b2df0308cb {"pid": "6506", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012529768"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:43.768211 2023-07-08 08:24:43.768215 fa53b567-4872-4946-8482-62ae9bd8c52f {"pid": "6507", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012533386"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:43.875782 2023-07-08 08:24:43.875876 9522fe7b-cf99-44f3-b68b-fd594b06d5a0 {"pid": "6508", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012534909"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:43.975742 2023-07-08 08:24:43.975753 0f48c966-cc67-415e-8cf6-fd2077c3d7f5 {"pid": "6509", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012534932"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:44.074911 2023-07-08 08:24:44.074916 3f3eefd7-6879-4a18-b9ea-64c868d9c5ef {"pid": "6510", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012571346"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:44.166661 2023-07-08 08:24:44.166669 e328e22c-67f1-44cc-9184-ca43a3319683 {"pid": "6511", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012572265"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:44.359607 2023-07-08 08:24:44.35961 1b466f3f-4a82-4e20-8675-c64fa3c25b8a {"pid": "6512", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012597330"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:44.449883 2023-07-08 08:24:44.449897 751b62af-bb46-4743-b0aa-842c5c63ca25 {"pid": "6513", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012598301"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:44.531819 2023-07-08 08:24:44.531822 9fe4a0b7-c222-4eb9-a7a6-cecd28b26acc {"pid": "6514", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012623821"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:44.618934 2023-07-08 08:24:44.618941 eed6a670-7dc0-4021-bcf6-ee16cc535074 {"pid": "6515", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012636366"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:44.705128 2023-07-08 08:24:44.705132 cb282296-a597-43c4-a3f7-050736adf801 {"pid": "6516", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012674280"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:44.784407 2023-07-08 08:24:44.78441 bab67cfb-b21d-4704-ac7d-87e432d039d4 {"pid": "6517", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012692359"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:44.878514 2023-07-08 08:24:44.878523 b8af91a4-8132-45a5-89c8-10d1566b36d0 {"pid": "6518", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012707155"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:44.96164 2023-07-08 08:24:44.961649 db31fc45-e807-40b4-be10-6a47694ea8f2 {"pid": "6519", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012707480"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:45.048687 2023-07-08 08:24:45.048697 92e2cf8b-1631-496c-a9f4-cdd29ff55616 {"pid": "6520", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012722635"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:45.220373 2023-07-08 08:24:45.220382 a2e7a1eb-c01c-4a7e-a4ff-2e1a9f98b98e {"pid": "6521", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012744465"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:45.316403 2023-07-08 08:24:45.316415 a4b411c0-1568-44a8-8dd0-b5911429bdd8 {"pid": "6522", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012765564"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:45.501577 2023-07-08 08:24:45.501586 b19c36b6-7f7c-4885-a5f0-5ab8d79b0e7a {"pid": "6524", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012774842"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:45.588344 2023-07-08 08:24:45.588351 85aae59b-e291-4525-91e8-f779dcf3ce53 {"pid": "6525", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012780830"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:43.207491 2023-07-08 10:26:30.289543 a7409552-2db7-4786-a777-c8f27ab0baa0 {"pid": "6501", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012525949"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1048159234276003371256"} 2 -2023-07-08 08:24:42.762296 2023-07-08 10:27:27.331964 62f17f15-9e41-4580-b2f4-4ad8505a0861 {"pid": "6496", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012513294"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1071159234394703371454"} 2 -2023-07-08 08:24:45.412117 2023-07-08 10:31:38.658375 3ee09c9e-7aad-4544-aad6-d30e7d9ef309 {"pid": "6523", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012771324"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1130159234704603372350"} 2 -2023-07-08 08:24:45.681968 2023-07-08 08:24:45.681976 d3768eae-0a59-46ef-ad24-b23f306f12e0 {"pid": "6526", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012781952"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:45.769772 2023-07-08 08:24:45.769778 0e0465c3-ac0d-4777-a326-804b392e5209 {"pid": "6527", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012784906"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:45.844985 2023-07-08 08:24:45.84499 821a2177-c669-4e37-94ab-0bdeb87502f0 {"pid": "6528", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012785250"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:45.912729 2023-07-08 08:24:45.912733 da98acb7-93bf-47b8-815d-1d8acf3c96e1 {"pid": "6529", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012791691"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:45.999048 2023-07-08 08:24:45.99906 074fc807-8ed3-4a4c-87bb-5dfa25dbccd3 {"pid": "6530", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012808722"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:46.086934 2023-07-08 08:24:46.086943 b7ffa110-f682-412c-bf23-c60ed87a0b4d {"pid": "6531", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012816863"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:46.16895 2023-07-08 08:24:46.168955 3749f56e-065c-48f3-97a8-9334cfa3db19 {"pid": "6532", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012833174"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:46.322777 2023-07-08 08:24:46.32278 0307af13-c865-447a-8173-1cc2a59de2d3 {"pid": "6534", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012895540"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:46.416367 2023-07-08 08:24:46.416376 4d6083a3-839f-4ae2-9aaf-e9d669c1d237 {"pid": "6535", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012907177"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:46.505217 2023-07-08 08:24:46.505226 455b2eee-874f-4f56-a4cc-43b3e8b0d0cc {"pid": "6536", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012928427"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:46.605099 2023-07-08 08:24:46.605107 998cf91e-4369-4532-87f3-9da61dab92b6 {"pid": "6537", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012937900"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:46.696654 2023-07-08 08:24:46.696659 2324e8b6-cca3-4742-8890-9ab6f879f97c {"pid": "6538", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012950169"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:46.783394 2023-07-08 08:24:46.783397 c9e3a294-8bf3-41a0-95a6-bcecdba7caa1 {"pid": "6539", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012957396"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:46.896168 2023-07-08 08:24:46.896171 0643bc43-3558-4cb0-8740-7510b13d1e4e {"pid": "6540", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012963166"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:46.977433 2023-07-08 08:24:46.977437 d4e6c406-9c2d-4c66-90ba-1675c1664210 {"pid": "6541", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012966636"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:47.066548 2023-07-08 08:24:47.066556 fe400884-2cab-4643-bb0d-8fd7ffbf1ddd {"pid": "6542", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013062530"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:47.148207 2023-07-08 08:24:47.148212 7118012f-b925-4856-a419-8f854722d91a {"pid": "6543", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013071942"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:47.245949 2023-07-08 08:24:47.245959 8b43de42-55fc-45a1-930c-9fb84980e63c {"pid": "6544", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013084243"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:47.31662 2023-07-08 08:24:47.316623 86ba3de0-5eba-49eb-99c7-a6b426ba5ece {"pid": "6545", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013088320"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:47.504631 2023-07-08 08:24:47.504638 9a04b5bf-e7ac-4870-8775-7f9c1b5c9fa8 {"pid": "6547", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013096212"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:47.59779 2023-07-08 08:24:47.597801 a3a0f9dc-1ac8-4793-aefd-744adf5926bc {"pid": "6548", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013128887"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:47.796274 2023-07-08 08:24:47.796312 96d3c01e-0d61-4810-88b1-802deea09586 {"pid": "6550", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013137641"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:47.897127 2023-07-08 08:24:47.897136 6a7d8a75-3e34-446a-81be-e12b64a02e8a {"pid": "6551", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013151927"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:48.001551 2023-07-08 08:24:48.00156 9b75b6b4-b60d-41a2-b6bb-7f079b63d23e {"pid": "6552", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013160840"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:48.092993 2023-07-08 08:24:48.093005 fddd9fee-dbbd-4821-993a-30ecde7444b9 {"pid": "6553", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013187480"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:48.187302 2023-07-08 08:24:48.18731 359d88d1-287c-4237-b5af-f55d28576cbf {"pid": "6554", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013188863"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:48.355192 2023-07-08 08:24:48.355197 fa7f030e-08fe-4505-9857-138bfb6a777e {"pid": "6556", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013199001"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:48.282133 2023-07-08 10:26:27.219485 d525e491-ebf4-4428-b5ec-182679789a83 {"pid": "6555", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013193457"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1046161211839440070009"} 2 -2023-07-08 08:24:46.25125 2023-07-08 10:27:53.139547 bbc35012-f97c-4b73-9340-1aa8acacbd73 {"pid": "6533", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012856933"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1076159234203603370951"} 2 -2023-07-08 08:24:47.707703 2023-07-08 10:31:25.838017 bbd96e15-2acb-4811-b275-0dfc85f0b4c4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1052636209"}, "pid": "6549", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013135052"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112300888"} 3 -2023-07-08 08:24:48.439349 2023-07-08 08:24:48.439358 c2087fab-15f4-4c85-af83-175eda3bb7ca {"pid": "6557", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013216832"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:48.549713 2023-07-08 08:24:48.549724 5381551f-565a-4321-b47d-270c02853929 {"pid": "6558", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013218412"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:48.647681 2023-07-08 08:24:48.647695 56c2e13d-a0d2-4ba2-942e-7d883cbb9a1c {"pid": "6559", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013222117"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:48.742141 2023-07-08 08:24:48.742149 66c788fb-01e4-4ade-8dee-f9683686aa5c {"pid": "6560", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013234989"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:48.856979 2023-07-08 08:24:48.856992 622b226f-2ef5-4202-9226-bef70161f175 {"pid": "6561", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013238298"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:48.97241 2023-07-08 08:24:48.972422 791040d7-951e-4b01-94d6-6cd7b9645e54 {"pid": "6562", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013254669"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:49.088999 2023-07-08 08:24:49.089008 d829cc98-a09b-40c6-b575-463dc0c7df52 {"pid": "6563", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013254904"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:49.220102 2023-07-08 08:24:49.220113 c43d5b36-a759-4a53-a7e5-db33742cdb26 {"pid": "6564", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013264678"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:49.46098 2023-07-08 08:24:49.46099 2bde8519-34b4-435e-a311-ef0171705ac3 {"pid": "6565", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013288987"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:49.597904 2023-07-08 08:24:49.597912 025e351a-eb9c-4140-847e-90636e48dffa {"pid": "6566", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013298285"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:49.724852 2023-07-08 08:24:49.724864 b193030e-edaa-49a9-9fdb-88acec10976b {"pid": "6567", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013325785"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:49.827961 2023-07-08 08:24:49.82798 6178613e-1719-4a4e-af17-e6bbc6632213 {"pid": "6568", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013328589"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:50.07631 2023-07-08 08:24:50.076327 a018e2cb-c9bb-4bfb-89a7-c4feca3c0eda {"pid": "6570", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013388531"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:50.287221 2023-07-08 08:24:50.28723 e45674eb-4369-49c5-891f-cc9ec69b56a7 {"pid": "6572", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013406985"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:50.554921 2023-07-08 08:24:50.554934 0c3af4a6-f3f4-42c1-bf23-94d1a4c3c9fb {"pid": "6574", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013461986"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:50.697689 2023-07-08 08:24:50.697704 a69fa5b1-06c1-4897-b0af-d177573e7b72 {"pid": "6575", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013469717"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:50.831008 2023-07-08 08:24:50.831023 4d8567d8-7e21-4a78-8db2-636ab1f48998 {"pid": "6576", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013472806"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:50.962842 2023-07-08 08:24:50.962855 8883baf1-6d07-4b13-ae56-6895fd25b2f7 {"pid": "6577", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013486130"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:51.116416 2023-07-08 08:24:51.11649 f2d78ad7-04cf-4b9e-9e8d-7f0758c54571 {"pid": "6578", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013491491"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:51.236652 2023-07-08 08:24:51.236659 85ba038f-0ab7-489a-aac8-2f764eeb90d5 {"pid": "6579", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013496961"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:51.343377 2023-07-08 08:24:51.343391 601f17d4-d80e-4b45-af63-6a94255ea829 {"pid": "6580", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013498494"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:51.444575 2023-07-08 08:24:51.444587 332c8396-b229-4dcc-b485-8cb01f07761f {"pid": "6581", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013503465"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:51.558472 2023-07-08 08:24:51.558483 fb6d0d9a-1414-4712-a1e9-205566c4ba1f {"pid": "6582", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013503508"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:51.661835 2023-07-08 08:24:51.661845 d14f162a-d86d-413a-bc65-291c2f7a0a61 {"pid": "6583", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013505068"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:51.876116 2023-07-08 08:24:51.876129 21bc782a-48af-4de4-922b-8ba183fd6464 {"pid": "6584", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013505439"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:51.997264 2023-07-08 08:24:51.99728 5d6a9c1d-3127-4339-ac4d-ab0b02aa84a6 {"pid": "6585", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013506588"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:52.107665 2023-07-08 08:24:52.107674 40eace42-7b7f-4020-8aef-7e6bc444c813 {"pid": "6586", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013518111"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:52.230107 2023-07-08 08:24:52.23012 4fcd72f9-5d64-4923-af2c-15709d317441 {"pid": "6587", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013519314"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:52.351504 2023-07-08 08:24:52.351519 1d60bf07-ba68-47d4-baa2-3ed656c8aaa8 {"pid": "6588", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013521342"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:50.403672 2023-07-08 10:31:44.15628 44fa253a-0a39-4cb9-8772-2e4060efca66 {"pid": "6573", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013436592"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "113155698"} 2 -2023-07-08 08:24:52.455108 2023-07-08 08:24:52.455119 a5905a3e-9b6b-4e34-8351-dc0ea557c461 {"pid": "6589", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013544891"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:52.562021 2023-07-08 08:24:52.56203 eaaf97e8-6fca-46fb-844f-70b220db0bcc {"pid": "6590", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013552965"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:52.689226 2023-07-08 08:24:52.689235 9f6f36cc-629c-4b6b-bde7-111031cfe66b {"pid": "6591", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013553997"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:52.926132 2023-07-08 08:24:52.926143 74828cc9-d393-4c65-97b6-d32300245598 {"pid": "6593", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013585039"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:53.038726 2023-07-08 08:24:53.03874 b1d19d4f-f7b0-450c-b912-170fffc11ae2 {"pid": "6594", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013595086"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:53.174326 2023-07-08 08:24:53.174338 813675cb-1ed1-4e11-b85f-ef44e83d460f {"pid": "6595", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013595372"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:53.294346 2023-07-08 08:24:53.294357 1783ee03-d4b3-4a74-a25e-a90d226215f8 {"pid": "6596", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013621306"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:53.503042 2023-07-08 08:24:53.503052 d06ac472-350d-4727-a688-3d28102f222c {"pid": "6598", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013629529"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:53.60787 2023-07-08 08:24:53.607881 7ef3629e-28be-4a09-ad10-bb243c2b7cd2 {"pid": "6599", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013654911"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:53.739346 2023-07-08 08:24:53.739356 4183f3fb-7059-4f7d-9f77-b764054c44a1 {"pid": "6600", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013663807"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:53.849135 2023-07-08 08:24:53.849145 9ba44f3f-acec-4299-9330-c2fe2637acf8 {"pid": "6601", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013675118"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:53.962833 2023-07-08 08:24:53.962848 ecf52fa7-b5e7-43e7-8dc3-520861f69115 {"pid": "6602", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013683105"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:54.392019 2023-07-08 08:24:54.392029 911265c5-cdaa-461f-8213-01badfbd42b0 {"pid": "6605", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013720765"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:54.654826 2023-07-08 08:24:54.654843 c74e27a3-dc0b-4811-927e-9bc0dfbb8d2d {"pid": "6606", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013763647"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:54.781121 2023-07-08 08:24:54.781134 b611ad3b-babf-474e-9e9c-2f2c4f3b6664 {"pid": "6607", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013784156"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:55.028865 2023-07-08 08:24:55.028879 68cafef8-9ea8-4c87-bdc8-b216e1922f92 {"pid": "6609", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013793627"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:55.23588 2023-07-08 08:24:55.235889 ac5c0448-0911-400d-8934-1fda73a3bc84 {"pid": "6611", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013815334"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:55.350083 2023-07-08 08:24:55.35009 efb00153-4661-47da-ad31-6017c43575a0 {"pid": "6612", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013839708"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:55.474385 2023-07-08 08:24:55.474399 7b1f820c-b83d-442c-97a4-019e20e7ea42 {"pid": "6613", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013851171"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:55.599932 2023-07-08 08:24:55.599948 0fe1d064-ae47-4d7a-bdcc-62b9c882a625 {"pid": "6614", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013863028"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:55.717477 2023-07-08 08:24:55.717488 a8e73290-3d6b-4e5f-b2f7-bda5229de103 {"pid": "6615", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013902798"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:55.839022 2023-07-08 08:24:55.839025 90e15487-eb7e-4217-87b8-f0357922e7d7 {"pid": "6616", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013936998"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:55.952568 2023-07-08 08:24:55.952578 8dfaef08-e00c-4bcc-b012-594286e68f36 {"pid": "6617", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013939562"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:56.056456 2023-07-08 08:24:56.056464 6fa0318e-760c-41f6-8403-4bc3b2cc004a {"pid": "6618", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013941086"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:54.270468 2023-07-08 10:30:14.320406 b510a110-d994-4dff-bff2-bb57dc8bbd3e {"pid": "6604", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013706277"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1109159234438003371731"} 2 -2023-07-08 08:24:54.122698 2023-07-08 10:30:41.358455 7f5fb5c8-d9a8-4b05-8f4c-0df1aa6c7dfc {"pid": "6603", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013688478"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1115159234203903370958"} 2 -2023-07-08 08:24:52.815737 2023-07-08 10:31:05.047219 92653b2a-58d7-479e-9da1-109e44bded7d {"pid": "6592", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013583535"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1117159233933703370232"} 2 -2023-07-08 08:24:53.403476 2023-07-08 10:31:25.892745 96379018-e1b7-4ae1-ad22-3998ddc006bc {"pid": "6597", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013627680"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1123159233933803370236"} 2 -2023-07-08 08:24:54.905071 2023-07-08 10:31:32.123804 cde030f1-76c5-463c-a176-696454c0d750 {"pid": "6608", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013786026"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1126159234757603372632"} 2 -2023-07-08 08:24:56.165634 2023-07-08 08:24:56.165645 d5cdc2bf-229d-4c76-9697-de8ecfb7313c {"pid": "6619", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013948865"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:56.269294 2023-07-08 08:24:56.269305 412f74e2-8b56-4ed1-9abc-f3ba4077520b {"pid": "6620", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013952563"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:56.495252 2023-07-08 08:24:56.49526 10a9c811-90dc-42a2-a48d-9b77b125a261 {"pid": "6621", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013986424"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:56.719188 2023-07-08 08:24:56.719198 c15171d9-1ecd-4998-93bf-b0b2a6a9fbb0 {"pid": "6622", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013995035"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:56.827827 2023-07-08 08:24:56.827837 3dfb0bc7-7064-41d2-b332-4a4ba6768c5c {"pid": "6623", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014012002"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:57.154779 2023-07-08 08:24:57.154788 bb4d00f5-3a40-40d0-abb8-32b530bab9a3 {"pid": "6625", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014036096"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:57.277865 2023-07-08 08:24:57.277883 9bb596e7-0b4c-41f0-98bd-88b2be06308b {"pid": "6626", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014037717"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:57.395796 2023-07-08 08:24:57.395812 8c5af63a-feef-455f-917b-ef18e4b6fdbb {"pid": "6627", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014059339"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:57.668358 2023-07-08 08:24:57.668367 d9a547a2-d5fa-4689-b73e-77c8b6b5a270 {"pid": "6628", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014070967"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:57.792927 2023-07-08 08:24:57.792939 1119a6b2-f07c-4c9a-bd07-ff19c16494a4 {"pid": "6629", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014074228"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:58.063404 2023-07-08 08:24:58.063417 f4b868b9-f353-49e8-8300-462e9392f9b7 {"pid": "6630", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014087918"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:58.302492 2023-07-08 08:24:58.3025 a3cddd17-42ec-455b-8018-4bbdfa6282f5 {"pid": "6631", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014094375"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:58.413076 2023-07-08 08:24:58.413088 030a33de-4b93-4624-a781-fa7200050eda {"pid": "6632", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014111148"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:58.51974 2023-07-08 08:24:58.51975 01e74c48-5790-47a9-aa9f-34b4a7039cf3 {"pid": "6633", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014127767"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:58.629864 2023-07-08 08:24:58.629875 94f180bc-88b2-403f-baa7-1ba0d3f72c51 {"pid": "6634", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014139981"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:58.748296 2023-07-08 08:24:58.748311 2c642597-5b9e-42e2-b15c-9ea5de06fb06 {"pid": "6635", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014145274"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:58.876118 2023-07-08 08:24:58.876127 f4ae9c48-60a4-40dc-a91a-c3429d413b01 {"pid": "6636", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014193528"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:59.007519 2023-07-08 08:24:59.007528 4569c912-f4cc-44d7-9c5d-8e68cb3202be {"pid": "6637", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014201130"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:59.134112 2023-07-08 08:24:59.134123 5f547eeb-f66b-407a-b3e6-759802884518 {"pid": "6638", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014202551"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:59.250582 2023-07-08 08:24:59.250592 1ebf4254-b25b-4594-af23-41f0e190621c {"pid": "6639", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014219231"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:59.360693 2023-07-08 08:24:59.360703 93b5a4ed-3316-4693-bb30-37868530e40c {"pid": "6640", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014222396"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:59.479183 2023-07-08 08:24:59.479193 ef1620b5-5931-4da0-8085-a834c0eac909 {"pid": "6641", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014224284"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:59.726333 2023-07-08 08:24:59.726342 2aae8d5f-2c54-43c1-a5f4-8fddf8a6ead2 {"pid": "6643", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014246692"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:59.841942 2023-07-08 08:24:59.841953 eb9883b1-f423-4aca-8a0a-c600c5d7766b {"pid": "6644", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014251795"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:24:59.978553 2023-07-08 08:24:59.978566 a4e48143-20a8-43c4-aacb-54cffdae1819 {"pid": "6645", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014255110"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:14:56.753233 2023-07-08 10:27:44.224463 d69c41a7-9925-4974-8593-0a3cd18573bc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1051412552"}, "pid": "819", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014065225"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/152270345"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107313367"} 6 -2023-07-08 08:24:56.938779 2023-07-08 10:28:35.733229 1662f75b-188e-4fb4-b74a-d27ba4556169 {"pid": "6624", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014025587"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1085159234751003372629"} 2 -2023-07-08 08:22:16.626918 2023-07-08 10:29:22.157259 e92329e1-32fc-4309-8165-b04c6a4954da {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/117249580"}, "pid": "5155", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013970354"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/230910793"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109802810"} 5 -2023-07-08 08:24:59.612198 2023-07-08 10:29:50.651673 d13c9589-c768-4f17-a11b-41c846174018 {"pid": "6642", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014242112"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1102155042854472402536"} 2 -2023-07-08 08:25:00.329289 2023-07-08 08:25:00.329302 b2c36873-2341-4117-a54e-f966f786e26c {"pid": "6647", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014276779"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:00.567936 2023-07-08 08:25:00.567947 da115e97-1d8f-4277-8a51-2719387fe640 {"pid": "6649", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014336689"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:00.687975 2023-07-08 08:25:00.687989 ea8af992-1f98-4dde-9c37-20dc4dde281d {"pid": "6650", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014337377"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:00.817361 2023-07-08 08:25:00.817375 a43eb813-d741-4dd6-ac3f-d36b56967793 {"pid": "6651", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014352979"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:00.962235 2023-07-08 08:25:00.962248 6d847a4d-d16a-4ca1-8a37-915322aed2fd {"pid": "6652", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014357923"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:01.07926 2023-07-08 08:25:01.079272 89d009f0-06b2-4a92-b51f-e07af36f34b6 {"pid": "6653", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016238365"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:01.209035 2023-07-08 08:25:01.209048 e18a24e7-6773-4009-9e96-532bbe7d5e1e {"pid": "6654", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016298786"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:01.454036 2023-07-08 08:25:01.454049 151765c8-2693-4bc2-b5bf-532f76b16284 {"pid": "6656", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016318307"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:01.56508 2023-07-08 08:25:01.565091 7a43965c-00f0-4049-9d9c-d4f8d61cce06 {"pid": "6657", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016389042"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:01.668492 2023-07-08 08:25:01.6685 8f5611e5-e857-4dcf-bf72-9a313eb78acd {"pid": "6658", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016404123"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:01.774019 2023-07-08 08:25:01.774033 e1551eb7-cce1-4732-b22d-898ddaafec7a {"pid": "6659", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016411096"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:01.988076 2023-07-08 08:25:01.988088 f9f87d90-56d6-46fd-972a-0a926e3441a7 {"pid": "6660", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016426300"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:02.093494 2023-07-08 08:25:02.093506 bc4d5da8-abaa-4963-b5fb-96e9c03e4cea {"pid": "6661", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016444932"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:02.20111 2023-07-08 08:25:02.201117 1c7cf8b3-ac3f-4510-89dc-3036824e78a5 {"pid": "6662", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016459229"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:02.300082 2023-07-08 08:25:02.30009 d96f49d9-a353-4f14-8bc9-ee153aa09b9a {"pid": "6663", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016459550"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:02.413299 2023-07-08 08:25:02.413308 560b4032-bd88-4225-a483-74875a6ee3b9 {"pid": "6664", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016477477"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:02.514614 2023-07-08 08:25:02.514625 b99615ed-a95c-48c8-9f3f-af80386dc18a {"pid": "6665", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016482621"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:02.753594 2023-07-08 08:25:02.753605 47794eb6-3378-458f-9a3d-6bfe4b3466d5 {"pid": "6667", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016506102"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:02.851962 2023-07-08 08:25:02.85197 38947d98-c570-4d63-9b70-130360c4fbd1 {"pid": "6668", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016511435"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:03.079821 2023-07-08 08:25:03.07983 e73aa75d-9b85-4d7b-947b-5e6d28345099 {"pid": "6669", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016514568"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:03.18204 2023-07-08 08:25:03.18205 1d011f29-75dc-440d-895c-16058b51a6a3 {"pid": "6670", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016521212"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:03.295648 2023-07-08 08:25:03.295652 50ce9a26-16f7-4a1f-845d-282b9357e18f {"pid": "6671", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016528677"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:03.389404 2023-07-08 08:25:03.389413 007499d1-dabe-4175-8009-c878a4702e26 {"pid": "6672", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016535988"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:02.625643 2023-07-08 10:25:19.755635 11b094b5-45b1-4687-a0b3-14666cb6bfc1 {"pid": "6666", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016484771"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1025159234579803372003"} 2 -2023-07-08 08:25:00.217503 2023-07-08 10:30:34.880494 59d04965-9cfd-47bf-996b-4cceacf1a5cd {"pid": "6646", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014273717"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1113159234865003372924"} 2 -2023-07-08 08:21:29.851597 2023-07-08 10:29:34.239314 9fa22cce-c245-4881-9a69-2d23300e3cbd {"pid": "4691", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016415566"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/181448793"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1101160667719403560003"} 4 -2023-07-08 08:22:04.206498 2023-07-08 10:29:43.040666 c2ba66e6-c10a-4a8f-8727-3d3569afe3c5 {"pid": "5048", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014258973"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/223847585"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110151836552820401758"} 4 -2023-07-08 08:25:01.34003 2023-07-08 10:31:29.775549 65e8e162-5d6c-4b3c-a226-966cb80a4605 {"pid": "6655", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016303136"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1125159233922903370057"} 2 -2023-07-08 08:25:00.455383 2023-07-08 10:31:29.870788 40dd5adf-bcf1-43bc-9f14-0384b62af3f1 {"pid": "6648", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014313002"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1125159234410403371540"} 2 -2023-07-08 08:25:03.489665 2023-07-08 08:25:03.489673 eee246cb-bf43-4e18-935c-55d024999714 {"pid": "6673", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016548812"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:03.598159 2023-07-08 08:25:03.59817 f6f4c029-036e-47fc-98f9-6ce11500309b {"pid": "6674", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016550065"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:03.713197 2023-07-08 08:25:03.713207 51189c04-0f52-4f99-999d-5a052d32f561 {"pid": "6675", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016568873"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:03.82569 2023-07-08 08:25:03.825701 9c6bb7f0-6e2c-48d0-8fe1-903dde0bac7f {"pid": "6676", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016604176"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:03.939938 2023-07-08 08:25:03.939948 61820c6e-9c02-4360-b549-e32e9fbc57cb {"pid": "6677", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016614032"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:04.046415 2023-07-08 08:25:04.046427 44bb5df1-8c02-4974-8932-754a2fed5042 {"pid": "6678", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016637978"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:04.153573 2023-07-08 08:25:04.153581 6efdbf6f-1577-4b8e-94ec-53de0d0c2624 {"pid": "6679", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016638657"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:04.28772 2023-07-08 08:25:04.287727 e3eba134-27e2-4482-97de-cf7293033846 {"pid": "6680", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016638677"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:04.409313 2023-07-08 08:25:04.409322 b7071765-a339-4724-aa6a-ba74f0777d31 {"pid": "6681", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016651275"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:04.510655 2023-07-08 08:25:04.510665 86711471-5ff6-4d2a-8a72-86bdea798076 {"pid": "6682", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016655749"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:04.627654 2023-07-08 08:25:04.627664 835475a1-0585-43ec-9f5d-a0293c296382 {"pid": "6683", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016666286"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:04.734871 2023-07-08 08:25:04.734885 b0597546-a3b9-42d4-9b3f-3dd5195ee3c2 {"pid": "6684", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016675995"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:04.969787 2023-07-08 08:25:04.969801 291b1a78-9979-4bd6-81ff-fb9f7773bd3d {"pid": "6685", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016688565"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:05.083005 2023-07-08 08:25:05.083018 b0be9ced-788a-4fc8-9f07-83c613e36465 {"pid": "6686", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016697578"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:05.216901 2023-07-08 08:25:05.21692 ff9af298-c826-4c42-909d-ac5f1d5d2f3a {"pid": "6687", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016697664"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:05.333717 2023-07-08 08:25:05.333727 16242e30-6fb8-48f9-8401-ee4f148467b1 {"pid": "6688", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016744040"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:05.44939 2023-07-08 08:25:05.449403 d3c44f4e-b4cd-40e2-92d7-370f8aff5560 {"pid": "6689", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016755736"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:05.661302 2023-07-08 08:25:05.661313 dca769a1-f19a-40a7-a1f6-e35cfd6b9d45 {"pid": "6691", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016787995"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:05.762353 2023-07-08 08:25:05.762363 fd3ab13d-884c-4c7e-a8ea-ab4d505db531 {"pid": "6692", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016799486"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:05.874954 2023-07-08 08:25:05.874967 596dd372-ac43-464e-b3c8-85fc9723a90e {"pid": "6693", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016809743"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:05.994039 2023-07-08 08:25:05.994054 5f1678e2-124c-41c7-b034-c6f05d473121 {"pid": "6694", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016813599"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:06.096823 2023-07-08 08:25:06.096835 eb0e0888-fac5-40bc-8c11-88f1cbd47da4 {"pid": "6695", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016814681"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:06.306479 2023-07-08 08:25:06.306488 d19da9ac-2e62-420a-95d7-36e0c5471ecc {"pid": "6696", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016818796"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:06.412401 2023-07-08 08:25:06.412409 960f5118-00dd-40c9-984e-c57b72b2f1be {"pid": "6697", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016841342"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:06.625278 2023-07-08 08:25:06.62529 ab59daae-02f6-42f7-bf0c-4f8378c0bcd8 {"pid": "6698", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016877431"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:06.738137 2023-07-08 08:25:06.738148 a6d8c90d-d28f-4dae-b7ab-d99934776fa3 {"pid": "6699", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016969116"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:06.843265 2023-07-08 08:25:06.843275 92c0656f-78ce-412f-8523-ba17e8b5096d {"pid": "6700", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016972683"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:06.955006 2023-07-08 08:25:06.955017 cb0b5300-5263-4120-8db3-3a88be2cd173 {"pid": "6701", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017020235"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:56.520868 2023-07-08 10:27:23.25836 4dccbfce-922e-4803-988a-6bedcdcc873c {"pid": "4332", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016871460"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/142877832"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106933713"} 4 -2023-07-08 08:25:07.062778 2023-07-08 08:25:07.062791 101493a8-e8b2-4cf3-8867-367c83568b9a {"pid": "6702", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017025989"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:07.190413 2023-07-08 08:25:07.19043 96c5db9d-0ba4-4dc1-b93e-33ac2c4ba8fc {"pid": "6703", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017057870"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:07.406111 2023-07-08 08:25:07.406124 95a5e142-070e-4750-9d46-e33c615dfbfe {"pid": "6705", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017122036"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:07.516485 2023-07-08 08:25:07.516495 7414ca03-48f4-4a7c-a483-e98fc156062f {"pid": "6706", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017130152"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:07.631411 2023-07-08 08:25:07.631422 54397d8a-2be4-42b9-a7ba-cb296f7a3bd8 {"pid": "6707", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017132207"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:07.745643 2023-07-08 08:25:07.745659 c4ea371a-5e54-4397-804e-f26bf68111ff {"pid": "6708", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017139224"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:08.078975 2023-07-08 08:25:08.078984 b6440670-a5c3-46a7-96fc-a75193257cc8 {"pid": "6711", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017178153"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:08.301644 2023-07-08 08:25:08.301653 7aef9581-eab8-4df6-b8e2-a048a89b025f {"pid": "6713", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017202523"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:08.405092 2023-07-08 08:25:08.405102 dacdd21b-27b2-4caf-8772-71ddb5668127 {"pid": "6714", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017237082"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:08.513827 2023-07-08 08:25:08.513835 cf292604-81f8-4319-b5a0-3aa3247a502d {"pid": "6715", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017314321"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:08.718433 2023-07-08 08:25:08.718443 a22500db-ed85-4402-a0c6-8823112d3b1b {"pid": "6716", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017377907"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:08.937557 2023-07-08 08:25:08.937565 2d4577dd-054d-4f82-be71-3e75f18a95c3 {"pid": "6717", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017410230"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:09.041077 2023-07-08 08:25:09.041087 cc17015f-6c16-4ce5-9dd9-1e53e31ccba3 {"pid": "6718", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017429783"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:09.270355 2023-07-08 08:25:09.270368 077bba7a-4304-4eff-915a-9c7da1563442 {"pid": "6719", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017451803"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:09.374027 2023-07-08 08:25:09.374042 1a200a1b-1064-4c5c-b4ff-3fb3902359a2 {"pid": "6720", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017458456"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:09.961902 2023-07-08 08:25:09.961909 ae6c4b85-63d3-4fc2-9239-b6ad3e5b6290 {"pid": "6723", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017572454"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:10.06483 2023-07-08 08:25:10.064839 055fb4c8-7e69-4797-b7f9-0f4dc1d05f2b {"pid": "6724", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017578807"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:10.15802 2023-07-08 08:25:10.15803 18cfdb36-b222-481d-97d4-8c4253bb83e8 {"pid": "6725", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017581317"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:08.194324 2023-07-08 10:26:42.695901 51715306-9788-4ec6-9ca8-b7ba45cd8f38 {"pid": "6712", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017187491"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1053159234104103370803"} 2 -2023-07-08 08:17:05.768032 2023-07-08 10:25:25.55679 d9238111-4e7b-44ea-bb42-8c4a982e10ab {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139769366"}, "pid": "2122", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017565309"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102618287"} 4 -2023-07-08 08:25:07.864836 2023-07-08 10:28:27.209637 4d11ed92-0db0-45ed-a757-6bbadbd67ed5 {"pid": "6709", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017158101"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1083159234728603372465"} 2 -2023-07-08 08:16:07.217448 2023-07-08 10:28:08.741234 e494541a-4200-4ef6-97b4-3a7f9d91df9e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1183057687"}, "pid": "1550", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017468446"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107937392"} 4 -2023-07-08 08:25:09.61929 2023-07-08 10:28:37.636521 25e819a0-5fa6-4992-9ebc-bd768e2548d8 {"pid": "6721", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017513975"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1086159233939403370201"} 2 -2023-07-08 08:25:09.742154 2023-07-08 10:29:11.225986 3d8f3973-04bd-4028-8ad9-e13ba55635cc {"pid": "6722", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017556608"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1094159234104303370804"} 2 -2023-07-08 08:21:48.464122 2023-07-08 10:29:17.727541 48a89443-0205-499a-a978-16805f95df78 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1131175786"}, "pid": "4889", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017435658"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/198217447"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1095151535358702890000"} 5 -2023-07-08 08:19:50.941028 2023-07-08 10:30:04.617877 ac6f7bac-68b4-4037-979c-f01760f5d53f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/13685849X"}, "pid": "3707", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017326126"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/05961398X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110535141"} 5 -2023-07-08 08:25:07.299637 2023-07-08 10:30:11.091599 ce39dd98-96de-4831-88af-9d27b9d655dc {"pid": "6704", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017097186"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1108159234362103371418"} 2 -2023-07-08 08:25:10.379507 2023-07-08 08:25:10.379517 45a24245-5852-4e87-801e-71db0222b72c {"pid": "6727", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017596294"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:10.486769 2023-07-08 08:25:10.48678 d919be40-5821-46c1-8fdc-a7c82c73bf47 {"pid": "6728", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017602316"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:10.596225 2023-07-08 08:25:10.596238 da8b46fc-2790-4a20-ab82-ff8352013591 {"pid": "6729", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017611108"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:10.696729 2023-07-08 08:25:10.696736 e444ee8b-4a21-43a5-a788-1f587deb451c {"pid": "6730", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017635757"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:10.801441 2023-07-08 08:25:10.80145 08ba3ab2-55fa-43a1-8768-3179323a9716 {"pid": "6731", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017650142"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:10.904105 2023-07-08 08:25:10.904113 1fde112d-8dac-4908-8277-e85af01a25bc {"pid": "6732", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017676479"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:11.001354 2023-07-08 08:25:11.001365 d994663f-e8b4-4147-be19-8028795ec70b {"pid": "6733", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017678297"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:11.205953 2023-07-08 08:25:11.205963 dc54cb9d-8716-4da5-8157-4120d90458aa {"pid": "6734", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017737385"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:11.305177 2023-07-08 08:25:11.305186 73627f4c-50c5-4f57-9e09-9440bbfcc112 {"pid": "6735", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017743945"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:11.397288 2023-07-08 08:25:11.397298 de7827e3-7b53-47ce-be14-441622d4a758 {"pid": "6736", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017761491"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:11.490369 2023-07-08 08:25:11.490381 b6a87e2e-2ab4-4f9a-8d01-771c257a2d4a {"pid": "6737", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017762299"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:11.69746 2023-07-08 08:25:11.69747 9ce1ec40-812e-4fed-8258-5f044daaf1b8 {"pid": "6739", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017798464"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:11.799634 2023-07-08 08:25:11.799641 5be361c0-4653-4290-b480-52b31de96d47 {"pid": "6740", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017940250"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:12.014041 2023-07-08 08:25:12.01405 db4d9d8c-5c96-4efa-93d6-2d975aa23895 {"pid": "6741", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017944947"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:12.113254 2023-07-08 08:25:12.113266 972a77c7-7835-4448-a023-0724c9a57f32 {"pid": "6742", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017955463"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:12.228337 2023-07-08 08:25:12.228347 43e2e3ce-3075-4a9f-9714-e18b13a6d170 {"pid": "6743", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017961866"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:12.330056 2023-07-08 08:25:12.330064 a36bb85c-b800-496d-944d-e22486a8331f {"pid": "6744", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017970655"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:12.420182 2023-07-08 08:25:12.42019 1858bf83-e06e-479b-916b-b8ac71d56213 {"pid": "6745", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017977912"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:12.515533 2023-07-08 08:25:12.51554 860e0629-406c-47f8-a115-fd1aaf6eac45 {"pid": "6746", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017990946"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:12.63129 2023-07-08 08:25:12.631301 bb62d93e-dd35-47b9-8fd4-86a8dc485fc3 {"pid": "6747", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017997426"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:12.735357 2023-07-08 08:25:12.735367 3f1e7e69-3841-417b-af36-2079dbccc967 {"pid": "6748", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017998485"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:12.840088 2023-07-08 08:25:12.840103 ab6339a1-fd65-4d79-9f04-406c02ff3409 {"pid": "6749", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018022500"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:12.939512 2023-07-08 08:25:12.939521 5f4dbe0a-f057-410b-a0aa-34decc6dd9a5 {"pid": "6750", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018042156"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:13.15005 2023-07-08 08:25:13.150063 887f7cf0-f327-4ac0-89cf-b89d667e5557 {"pid": "6752", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018052277"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:13.268145 2023-07-08 08:25:13.268155 a50eda44-f14f-46a4-b936-d4b9312beb28 {"pid": "6753", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018063051"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:13.052066 2023-07-08 10:27:14.844838 33283c52-e6bb-4c5a-a670-2f5ed464cb1b {"pid": "6751", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018051739"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1066159234416103371581"} 2 -2023-07-08 08:25:11.594954 2023-07-08 10:27:16.822774 765d741b-500d-4e78-9fa8-16d3935a7176 {"pid": "6738", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017784112"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106787644"} 2 -2023-07-08 08:25:10.268771 2023-07-08 10:30:11.135106 eb0575eb-ec73-4c3d-8535-28ead16f67ee {"pid": "6726", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017594651"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1108159234639103372306"} 2 -2023-07-08 08:21:34.582626 2023-07-08 10:27:53.964216 bf0d578d-5e0d-46e8-878b-c7fc5f4ec767 {"pid": "4741", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017696857"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/18786893X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107632895"} 4 -2023-07-08 08:25:13.497952 2023-07-08 08:25:13.497963 f9f0823c-c65c-4131-bc1c-21b6ea4000a4 {"pid": "6754", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018080715"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:13.908107 2023-07-08 08:25:13.908118 e7302020-ae3e-4c3e-9e01-6845350be70d {"pid": "6757", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018105228"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:14.017884 2023-07-08 08:25:14.017892 c4c87de8-7898-49c6-9714-b842147d570a {"pid": "6758", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018108985"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:14.124924 2023-07-08 08:25:14.124931 d6e43fff-4d77-4533-8b5a-1ee9543882ba {"pid": "6759", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018112339"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:14.243472 2023-07-08 08:25:14.243483 7b438cfb-4ac3-413e-a29d-8d5006ec59aa {"pid": "6760", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018117701"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:14.347923 2023-07-08 08:25:14.347932 fbae3a74-a84d-40f4-b446-d214a688ee45 {"pid": "6761", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018138835"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:14.456125 2023-07-08 08:25:14.456139 d8b38c4f-b2bb-4d01-b185-279f47a9f346 {"pid": "6762", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018140650"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:14.569949 2023-07-08 08:25:14.569962 89959538-08c6-40d5-ab8b-9b1d30cf8a0d {"pid": "6763", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018155271"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:14.681324 2023-07-08 08:25:14.681339 aef2d4fb-0737-4224-b8c0-ba15b92733da {"pid": "6764", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018157124"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:14.803155 2023-07-08 08:25:14.803163 d869cc5c-6db9-4446-957e-f21f2a3c02de {"pid": "6765", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018172231"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:14.909452 2023-07-08 08:25:14.909462 c17d74c4-7606-4b44-8869-e0acd3dc8f01 {"pid": "6766", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018201635"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:15.028801 2023-07-08 08:25:15.028812 3e663d23-b65e-4d1d-b28d-20b2903ae38d {"pid": "6767", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018206914"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:15.150053 2023-07-08 08:25:15.150062 ecf1ca81-514d-4ba4-a894-d8837b9a04fa {"pid": "6768", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018237999"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:15.256969 2023-07-08 08:25:15.256976 16e997ee-ca00-4ebe-ab46-a02cfad47cc1 {"pid": "6769", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018243805"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:15.367689 2023-07-08 08:25:15.367698 f34735a4-ea1e-4e96-9ccd-c9433fd1fc2e {"pid": "6770", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018251580"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:15.473542 2023-07-08 08:25:15.47355 58d38173-a35e-448e-b0b1-b5b34ab96247 {"pid": "6771", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018310828"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:15.585293 2023-07-08 08:25:15.585301 3682ed56-5b3b-4128-bfec-2f8bd9cef9e2 {"pid": "6772", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018321048"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:15.701971 2023-07-08 08:25:15.70198 8c0c65f6-e2c9-441b-80a8-185f772a1076 {"pid": "6773", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018322337"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:15.839071 2023-07-08 08:25:15.839079 aa87f079-ed78-4e35-9640-952b19a62980 {"pid": "6774", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018324391"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:16.041196 2023-07-08 08:25:16.041204 e4f2915f-07f4-4f7b-86ca-576c8e0f94a2 {"pid": "6776", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018332342"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:16.449198 2023-07-08 08:25:16.449207 54a26841-805c-4f63-889c-da8877f15046 {"pid": "6779", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018387362"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:16.548854 2023-07-08 08:25:16.548869 2210c82a-0805-4fca-b674-43cf8ecddc89 {"pid": "6780", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018391771"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:16.643308 2023-07-08 08:25:16.643319 64dc560a-2c69-4a35-a10b-489ffea6af36 {"pid": "6781", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018394246"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:15.948931 2023-07-08 10:25:04.840624 3200395d-75da-4ccd-8fa0-003aa61b8538 {"pid": "6775", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018331793"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1021159234720103372491"} 2 -2023-07-08 08:25:13.799044 2023-07-08 10:26:16.093413 e0235d5d-7820-49d3-a90a-ed28c43c7d36 {"pid": "6756", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018093417"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1041159234784403372779"} 2 -2023-07-08 08:25:16.344709 2023-07-08 10:27:13.709823 02410f4b-f610-406d-bf08-b742feef0778 {"pid": "6778", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018351276"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1065159234269103371270"} 2 -2023-07-08 08:25:16.240734 2023-07-08 10:28:14.308098 c3605f0e-00b6-492b-80db-e24f2e72a3de {"pid": "6777", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018346336"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1080159234215103370981"} 2 -2023-07-08 08:16:11.199684 2023-07-08 10:31:09.127766 6cc46ada-0cf9-4ee2-b71b-4ba8a374a0cf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/119007460"}, "pid": "1584", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018070048"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/181483513"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111889670"} 6 -2023-07-08 08:25:16.859494 2023-07-08 08:25:16.859529 502b7d23-b19a-4b71-a47c-2238f072904d {"pid": "6783", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018410690"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:16.964458 2023-07-08 08:25:16.964465 75b2705a-c1f6-4fba-bf09-9471a68ba936 {"pid": "6784", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018418232"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:17.164303 2023-07-08 08:25:17.164315 e41d6f97-e1d9-4801-a3b6-ab9e66c271ba {"pid": "6786", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018440172"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:17.499315 2023-07-08 08:25:17.499325 5d26d2d1-55f4-49e2-ad26-3762e1333b08 {"pid": "6788", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018463176"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:17.84868 2023-07-08 08:25:17.848693 fd3c4353-09f1-4914-8360-04152dc33aa8 {"pid": "6789", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018486553"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:17.966665 2023-07-08 08:25:17.966673 a68f81e0-df05-44bb-bd0d-20895d2f3092 {"pid": "6790", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018541924"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:18.305148 2023-07-08 08:25:18.305155 2bfb524b-bab6-4470-b8fb-0c4be214794b {"pid": "6793", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018562369"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:18.399086 2023-07-08 08:25:18.399096 36d13c20-17f4-41d8-b5b2-f6d2f1716d72 {"pid": "6794", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018581906"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:18.503046 2023-07-08 08:25:18.50306 eb64a44e-a75c-4db9-8628-1e8cf51c340b {"pid": "6795", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018584020"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:18.614421 2023-07-08 08:25:18.614431 55da5a40-8036-4c5c-90f0-ba7aa2020cc4 {"pid": "6796", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018585140"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:18.718056 2023-07-08 08:25:18.718066 e959521d-b935-43dd-aa5c-d6d2624456e1 {"pid": "6797", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018591525"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:18.832233 2023-07-08 08:25:18.83224 df6cd475-8b5a-4ee7-8a74-14a60b7e89a3 {"pid": "6798", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018606059"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:18.933855 2023-07-08 08:25:18.933868 15233ffb-6b73-4ace-b3ad-3b280b6e6afe {"pid": "6799", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018606217"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:19.612392 2023-07-08 08:25:19.612403 a7195bd8-7a7e-4906-9836-45664528e97e {"pid": "6802", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018655587"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:19.706651 2023-07-08 08:25:19.706661 15f20ac6-dde3-4b01-bbed-3f46073d2d87 {"pid": "6803", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018689283"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:19.814956 2023-07-08 08:25:19.814972 403cd191-6d6f-416a-b953-00ecde1e4c36 {"pid": "6804", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018689940"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:20.012869 2023-07-08 08:25:20.012882 eceff643-0273-40b8-9527-3e067396f16d {"pid": "6806", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018703625"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:20.218603 2023-07-08 08:25:20.218613 469b8054-9135-49cb-b36c-9e21ef544635 {"pid": "6808", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018750238"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:19.289297 2023-07-08 10:24:36.469636 bad8e43e-199f-4fce-82ac-420e4503a25d {"pid": "6800", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018617749"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1014159234751603372573"} 2 -2023-07-08 08:15:02.508378 2023-07-08 10:24:57.261287 2e6b9ba9-9e17-462f-b845-516a8df5dc3e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1063814340"}, "pid": "874", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018475973"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/132110520"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101719477"} 6 -2023-07-08 08:25:18.20669 2023-07-08 10:25:10.045664 c51e1256-eeb8-4ffe-bfe0-a1cc2dba7ebd {"pid": "6792", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018556919"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1022159234641703372289"} 2 -2023-07-08 08:25:17.072142 2023-07-08 10:26:00.246318 f5c9e845-7c3e-4631-9a8e-9e5dbcd04dc2 {"pid": "6785", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018432097"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1036159234085103370680"} 2 -2023-07-08 08:25:20.125388 2023-07-08 10:26:10.000248 a62ebb23-2fef-4be5-bc43-ac4e90de246f {"pid": "6807", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018726776"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1039159234641803372282"} 2 -2023-07-08 08:25:19.920257 2023-07-08 10:26:53.64146 c5fab241-597e-4778-b128-86020d188d3b {"pid": "6805", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018699407"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1061159234563703371985"} 2 -2023-07-08 08:25:18.112257 2023-07-08 10:29:14.653239 52d10e9d-cf08-4e25-9ac2-f6338248d396 {"pid": "6791", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018548221"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10945147"} 2 -2023-07-08 08:16:39.476603 2023-07-08 10:28:09.289435 cfc08443-2e3c-4ea5-af2f-76f2c5c8c93f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/125037988"}, "pid": "1861", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018456288"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10795063"} 4 -2023-07-08 08:25:19.502695 2023-07-08 10:30:32.876641 83c674a6-c1da-471f-bff1-9aad826aecfb {"pid": "6801", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018651679"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1112159234631803372276"} 2 -2023-07-08 08:21:26.373396 2023-07-08 10:29:44.401382 2b17e5bc-6a25-4339-b7c9-c058df6847da {"pid": "4653", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018623512"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/17637874X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110155284871787062266"} 4 -2023-07-08 08:25:20.330522 2023-07-08 08:25:20.330533 1261cbc1-41b9-4567-90e6-30a043a86032 {"pid": "6809", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018777696"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:20.433395 2023-07-08 08:25:20.433408 b51a35e6-cab8-451c-b6b3-5147ea16049b {"pid": "6810", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018790254"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:20.649292 2023-07-08 08:25:20.649301 17849bf5-cd9b-4220-9602-2269e20f4900 {"pid": "6812", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018796853"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:20.75619 2023-07-08 08:25:20.756203 68885d63-4455-4dd9-ac56-31245ce3decb {"pid": "6813", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018810961"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:20.868513 2023-07-08 08:25:20.868523 8c86ef08-dbea-4f92-9a9b-0988c4b90a36 {"pid": "6814", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018836965"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:20.96102 2023-07-08 08:25:20.96103 5c703877-6003-41d9-9a89-c32389f17163 {"pid": "6815", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018838435"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:21.075759 2023-07-08 08:25:21.075772 49f96a14-8c45-457c-bd28-dbe8477e4c32 {"pid": "6816", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018857106"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:21.191292 2023-07-08 08:25:21.191301 db29bc69-67dc-45a0-bc93-b521b348800b {"pid": "6817", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018863994"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:21.278035 2023-07-08 08:25:21.278045 049e5c63-acba-4769-9b78-453fb66d4ec4 {"pid": "6818", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018867909"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:21.383635 2023-07-08 08:25:21.383649 927cc6c4-9850-42d7-be64-60f39c04aab8 {"pid": "6819", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018875034"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:21.630108 2023-07-08 08:25:21.630119 e954b27e-fa02-4f4e-840d-a11de8a2ccd5 {"pid": "6821", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018880000"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:21.744842 2023-07-08 08:25:21.744857 bb9cba38-183c-499b-80b4-76bce4cc260b {"pid": "6822", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018906120"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:21.85403 2023-07-08 08:25:21.854039 fcdcc2f5-922f-43ca-ad32-c07ee8cd03cd {"pid": "6823", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018910104"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:21.978511 2023-07-08 08:25:21.97852 4ba87583-9e65-459f-80aa-fbdd5e746180 {"pid": "6824", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018913029"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:22.098643 2023-07-08 08:25:22.098652 1b003bdf-0304-46a9-9ba0-ecd6ed8323e9 {"pid": "6825", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018939247"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:22.216613 2023-07-08 08:25:22.216624 2c4012a1-0cac-47d8-94fc-7f2e4c9652a0 {"pid": "6826", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018946790"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:22.321852 2023-07-08 08:25:22.321864 0cecbc9d-4535-4f74-a635-f94f1e5e0934 {"pid": "6827", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018953919"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:22.423339 2023-07-08 08:25:22.423346 f9e55d6f-1ce0-401e-b7f0-4b5770bd2e43 {"pid": "6828", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018954799"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:22.531024 2023-07-08 08:25:22.531032 1c788510-1247-4900-b3fb-39f94c0dd05c {"pid": "6829", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018986263"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:22.807261 2023-07-08 08:25:22.807273 98950973-5415-4492-a686-036df405e56b {"pid": "6830", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A019019750"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:22.932613 2023-07-08 08:25:22.932621 2580b6e5-b183-4abc-b857-c7da1ec80103 {"pid": "6831", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A019033792"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:23.050586 2023-07-08 08:25:23.050596 16785a95-66bf-468b-8954-d49f5d468aa4 {"pid": "6832", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A019052882"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:23.176927 2023-07-08 08:25:23.176939 5c39366b-cd58-40b7-bead-acf726718983 {"pid": "6833", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A019060042"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:23.323864 2023-07-08 08:25:23.323871 b872354f-0560-420a-9de9-61bf4d0f3967 {"pid": "6834", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A019072876"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:23.448271 2023-07-08 08:25:23.448278 2965e26f-ffac-4e06-a808-00b76aa49f89 {"pid": "6835", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A019100305"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:23.567747 2023-07-08 08:25:23.567756 aa68bea3-1a93-48c0-b1be-12b935f8fb11 {"pid": "6836", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A019104065"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:23.685571 2023-07-08 08:25:23.685582 bb64f1ff-5b6d-4218-b5ba-77564d024b70 {"pid": "6837", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A019111556"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:23.821692 2023-07-08 08:25:23.821703 cb478b9d-4a77-49bd-81af-f47b46013a34 {"pid": "6838", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A019131066"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:21.52179 2023-07-08 10:26:45.391686 1ef6af3d-92c3-4d6b-a661-1a7360442a1e {"pid": "6820", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018879902"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1058159234742603372586"} 2 -2023-07-08 08:25:20.543942 2023-07-08 10:31:11.148274 2315a238-a946-4bf5-a181-13e4ec967a56 {"pid": "6811", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018795339"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11192674"} 2 -2023-07-08 08:25:23.970001 2023-07-08 08:25:23.970009 30dc4249-cfdf-4067-86be-e578cb6e0ff0 {"pid": "6839", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A019135541"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:24.213787 2023-07-08 08:25:24.213798 eec253cc-3b43-40e1-b766-9ec5bf743fe7 {"pid": "6841", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A019212102"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:24.330606 2023-07-08 08:25:24.330622 0697f7d8-6160-4ace-b56e-7ff623690689 {"pid": "6842", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A019243832"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:24.451 2023-07-08 08:25:24.45101 a5959ba1-f190-454d-ab76-859f133ab120 {"pid": "6843", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020002432"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:24.563206 2023-07-08 08:25:24.563216 90c68b86-1bdf-40ed-b12a-eb53e78a1cd0 {"pid": "6844", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020018697"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:24.688977 2023-07-08 08:25:24.688986 29287fd6-8b2b-4baa-b2eb-cb4724149789 {"pid": "6845", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020026743"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:24.921006 2023-07-08 08:25:24.921015 9e429593-93a8-440e-914c-b82afece9495 {"pid": "6847", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020057293"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:25.036205 2023-07-08 08:25:25.036217 52001753-fa23-455b-8286-f53f31369140 {"pid": "6848", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020059215"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:25.160605 2023-07-08 08:25:25.160617 8da8e0f9-f7fc-4dcb-82a0-7ea5f866b17d {"pid": "6849", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020064866"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:25.267654 2023-07-08 08:25:25.267667 9e71d07b-f5d1-4fe5-a0b2-311201a1ad68 {"pid": "6850", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020072898"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:25.369133 2023-07-08 08:25:25.369142 81d5590c-7c18-4b5c-a77f-2f6154765d28 {"pid": "6851", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020078206"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:25.47047 2023-07-08 08:25:25.47048 c7379676-e405-493c-89b7-b5e45de9f0f3 {"pid": "6852", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020092031"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:25.66731 2023-07-08 08:25:25.66732 8bd610b9-9a75-4092-b8cd-3f3c43f7a459 {"pid": "6854", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020092476"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:25.893317 2023-07-08 08:25:25.893328 d9081519-f284-4bfd-b763-0248cc011c1d {"pid": "6856", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020121326"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:25.997883 2023-07-08 08:25:25.997891 1d476426-c67d-40aa-ac79-ef53d31e931f {"pid": "6857", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020122182"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:26.192735 2023-07-08 08:25:26.192746 ad75fca5-d1b8-4734-8b0d-e1377b5c6256 {"pid": "6859", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020128356"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:26.290754 2023-07-08 08:25:26.290763 d27695ae-b53d-4f68-a750-6d5a6c2946b3 {"pid": "6860", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020139475"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:26.394055 2023-07-08 08:25:26.394066 623b28e7-4836-41f2-9d29-e8a847f73a9d {"pid": "6861", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020148399"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:26.495288 2023-07-08 08:25:26.495299 c7e409d1-8428-4cb6-afa9-1b7a05dcbff8 {"pid": "6862", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020157288"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:26.596662 2023-07-08 08:25:26.596669 ff085ab6-c488-4f76-9c7f-6dc56ae3e0e2 {"pid": "6863", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020168707"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:26.691964 2023-07-08 08:25:26.691975 187ccd64-988b-4c18-844c-249061499898 {"pid": "6864", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020209272"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:26.794265 2023-07-08 08:25:26.794277 4badc959-3c68-4c25-ad6f-35496870f96f {"pid": "6865", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020211267"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:27.137034 2023-07-08 08:25:27.137044 764c0279-0d94-47ba-b8ac-fc85d7952c5f {"pid": "6867", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020244189"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:27.239307 2023-07-08 08:25:27.239316 4553b4f7-10ad-4452-a3bb-5589ef18af30 {"pid": "6868", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020276000"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:27.34025 2023-07-08 08:25:27.34026 add0cfc7-0b6b-4f32-a52d-8c66b2e469c9 {"pid": "6869", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020278434"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:25.773518 2023-07-08 10:25:13.197441 75f992f4-82cd-43af-925a-a9ad68650377 {"pid": "6855", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020103298"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1023159234567403371975"} 2 -2023-07-08 08:25:24.100369 2023-07-08 10:26:45.073303 464caf61-0b95-4b76-9b0c-800963a7af7f {"pid": "6840", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A019156002"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105443367"} 2 -2023-07-08 08:25:24.81261 2023-07-08 10:27:14.755647 59631624-4bf6-4d9a-b66f-2b39c3bc84dd {"pid": "6846", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020053143"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1066159234275003371303"} 2 -2023-07-08 08:25:27.028146 2023-07-08 10:28:27.267246 19473a16-fe2a-43a5-a8d4-912cdbe0065f {"pid": "6866", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020232527"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1083159234801903372859"} 2 -2023-07-08 08:25:25.571763 2023-07-08 10:28:44.334875 c09c4a14-a8a0-40fe-8820-5ace015a3d1d {"pid": "6853", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020092462"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1088159234398603371673"} 2 -2023-07-08 08:25:27.452105 2023-07-08 08:25:27.452113 3d3f63a6-4f8c-405f-9400-b666a5810cd3 {"pid": "6870", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020285886"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:27.562789 2023-07-08 08:25:27.562801 6cf43a48-d2b9-47a1-aa86-5f5858dfaa19 {"pid": "6871", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020287613"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:27.814789 2023-07-08 08:25:27.814796 ef26d987-e58c-4210-a1bd-13df31f253d4 {"pid": "6873", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020337204"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:27.923422 2023-07-08 08:25:27.923429 eb98c247-813e-4119-8602-7e4aaf196363 {"pid": "6874", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020340385"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:28.137242 2023-07-08 08:25:28.137252 e8c4b5c8-612d-4e19-97a2-4ad688b42e16 {"pid": "6876", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020355982"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:28.238591 2023-07-08 08:25:28.238601 9ba1e207-317a-4886-8f08-bdf113c5ecd6 {"pid": "6877", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020360095"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:28.339881 2023-07-08 08:25:28.33989 a72b7c07-3ef3-4eb8-be62-8722cacc6e6f {"pid": "6878", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020370205"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:28.442116 2023-07-08 08:25:28.443686 7b07a5f7-a1e2-499d-86b4-3847e96c68fe {"pid": "6879", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020376367"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:28.559507 2023-07-08 08:25:28.559517 b9389335-f004-46a8-8329-8d821289e4be {"pid": "6880", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020377292"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:28.673501 2023-07-08 08:25:28.67351 6fa4305c-31cd-4eb4-8d08-4b990c3ae161 {"pid": "6881", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020398544"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:28.772629 2023-07-08 08:25:28.772638 0057b82c-df1a-46b4-812d-7f49f614be8d {"pid": "6882", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020413592"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:28.873051 2023-07-08 08:25:28.87306 74b463b0-4d89-4ca2-9a8e-28244267c860 {"pid": "6883", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020415873"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:28.973333 2023-07-08 08:25:28.973343 e929aa90-83d8-403a-9263-4b8cbd58139b {"pid": "6884", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020417148"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:29.183058 2023-07-08 08:25:29.183068 1e55d75a-ebce-413a-842b-845f4c95feeb {"pid": "6886", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020461666"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:29.287226 2023-07-08 08:25:29.287234 8c6b5cae-f0c5-4079-9529-bb0515c3ade6 {"pid": "6887", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020462104"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:29.389137 2023-07-08 08:25:29.38915 5f871e38-caac-4d1a-9d01-448cedf60b62 {"pid": "6888", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020465572"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:29.509848 2023-07-08 08:25:29.509859 1c2fc5db-9ef2-42cb-b295-13d165cac63c {"pid": "6889", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020465592"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:29.613073 2023-07-08 08:25:29.613085 034e4f52-d88d-4921-a9b7-edf75d057f55 {"pid": "6890", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020471717"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:29.725938 2023-07-08 08:25:29.725949 2b3b4632-1f19-4de2-8582-3569cf30d3a1 {"pid": "6891", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020478658"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:29.839542 2023-07-08 08:25:29.839553 74e31fa9-55b3-44ca-861e-6f9cd16e8e26 {"pid": "6892", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020487139"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:30.05317 2023-07-08 08:25:30.053181 f9124d82-3205-485b-aef0-f54d3e6ad950 {"pid": "6893", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021510454"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:30.28656 2023-07-08 08:25:30.286573 e5427cd3-9f4a-4e9f-a4e9-5b9d18ba5ac3 {"pid": "6894", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021535410"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:30.508305 2023-07-08 08:25:30.508315 f33000dc-c280-4726-8620-1aa13ab1f3fc {"pid": "6896", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021617173"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:30.629937 2023-07-08 08:25:30.629949 ec37050e-b844-4e2f-ab72-11120eaa9a39 {"pid": "6897", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021621256"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:30.781166 2023-07-08 08:25:30.781175 4c5946a4-7ca5-4a03-9783-3ee101ef5df3 {"pid": "6898", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021627558"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:28.033244 2023-07-08 10:24:27.080439 9ad5329f-1274-4c06-8ac8-3a8c5475b28b {"pid": "6875", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020351109"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1012159234798103372836"} 2 -2023-07-08 08:25:27.677051 2023-07-08 10:25:19.678781 ac03a6da-156c-4886-be17-415b06daa85f {"pid": "6872", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020317114"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1025159234108003370715"} 2 -2023-07-08 08:25:30.403614 2023-07-08 10:26:00.197488 10dcd815-dc23-4ef7-bb7d-5e72c58f3c23 {"pid": "6895", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021609811"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1036159233962503370421"} 2 -2023-07-08 08:25:29.078966 2023-07-08 10:28:01.206687 d7985ab9-5a5b-4e80-8546-41be901291b9 {"pid": "6885", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020436263"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1078159234847803372889"} 2 -2023-07-08 08:25:31.161352 2023-07-08 08:25:31.161361 87a48768-9b4e-42f9-bb83-670b3a36fd05 {"pid": "6901", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021653398"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:31.295979 2023-07-08 08:25:31.296232 93ee84d4-29a6-4295-a464-d34394072656 {"pid": "6902", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021657316"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:31.616517 2023-07-08 08:25:31.616528 df3c17f7-d619-4885-b1f5-e0cf96cf1edd {"pid": "6904", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021681210"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:31.850121 2023-07-08 08:25:31.850133 230b9c71-83a4-462f-a6d7-f1812b5a0693 {"pid": "6906", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021753974"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:31.96183 2023-07-08 08:25:31.96184 ce256957-726b-45ec-bd4e-0d1823aeb89c {"pid": "6907", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021794133"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:32.076827 2023-07-08 08:25:32.076836 e398d0e4-e493-405c-8bc7-790acaa7797f {"pid": "6908", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021819945"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:32.228895 2023-07-08 08:25:32.228905 46136869-dd43-4ec2-820d-a60ee7632448 {"pid": "6909", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021917468"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:32.450504 2023-07-08 08:25:32.450511 25c5359e-acb1-430f-928b-3af08a920b66 {"pid": "6910", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021921193"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:32.685073 2023-07-08 08:25:32.685084 e3c12583-9f48-4953-8a92-0b7f2f253e19 {"pid": "6912", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021988179"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:32.93945 2023-07-08 08:25:32.939459 19c26304-2892-4ccb-8c79-d1057e6a5c3c {"pid": "6914", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021995847"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:33.050761 2023-07-08 08:25:33.05077 1522d536-68a3-44ee-b7b2-c4a18a99f3d7 {"pid": "6915", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022010442"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:33.171484 2023-07-08 08:25:33.171492 2639e006-c891-4433-a543-4ccff35db1b0 {"pid": "6916", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022253194"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:33.296799 2023-07-08 08:25:33.296807 8b004f0b-fff1-424f-8119-570fac9bf028 {"pid": "6917", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022261345"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:33.414857 2023-07-08 08:25:33.414873 89600cc6-6285-4acb-b2f4-3cbf85141df2 {"pid": "6918", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022263478"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:33.519461 2023-07-08 08:25:33.519472 eb325b66-7a57-4180-90fb-4b64192e1030 {"pid": "6919", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022416217"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:33.764054 2023-07-08 08:25:33.764069 8c639de5-6072-4615-a862-f5a1c89394f7 {"pid": "6921", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022502492"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:33.890188 2023-07-08 08:25:33.890201 90de6808-7775-4fa5-8291-ca02b7310e28 {"pid": "6922", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022508588"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:33.999513 2023-07-08 08:25:33.999522 ad747a07-8b8e-47ab-826d-8199bc11e5a1 {"pid": "6923", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022508598"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:34.101802 2023-07-08 08:25:34.10181 5dfd09bf-0463-47a5-a0a8-91dd33d931f9 {"pid": "6924", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022512216"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:34.341072 2023-07-08 08:25:34.341083 54344be3-f57b-4402-b56d-6e14b045bf10 {"pid": "6926", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022545173"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:34.581923 2023-07-08 08:25:34.581932 45314d9b-c1a8-40f9-889d-434f97490851 {"pid": "6927", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022563739"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:33.655857 2023-07-08 10:24:59.514347 b53d64c1-321c-4639-90d0-de483d95a3f8 {"pid": "6920", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022476006"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1018159234773803372814"} 2 -2023-07-08 08:25:32.558874 2023-07-08 10:25:04.773819 a965e630-db59-49c7-83c1-2957f2c0385b {"pid": "6911", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021975601"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1021159234629703372251"} 2 -2023-07-08 08:25:34.234645 2023-07-08 10:25:36.369616 2834a17b-89ce-44cc-adcd-f8e7dc0153ad {"pid": "6925", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022533394"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1030159234294003371358"} 2 -2023-07-08 08:21:14.83396 2023-07-08 10:25:33.657055 ac6e6e44-b1b2-4029-81a5-34fe0f746ffa {"pid": "4533", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022553969"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/158552180"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102827771"} 4 -2023-07-08 08:25:31.047704 2023-07-08 10:26:30.204926 1111006a-2971-4630-b1c4-7ceaa6710b96 {"pid": "6900", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021650553"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1048159234108203370712"} 2 -2023-07-08 08:25:31.729115 2023-07-08 10:28:51.886654 448f292e-41b0-4bba-86c1-ad9a056938ba {"pid": "6905", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021706387"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1089159234274603371383"} 2 -2023-07-08 08:25:32.812155 2023-07-08 10:29:51.205159 5df290bb-f1db-4125-b27b-ac31ce6884f9 {"pid": "6913", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021992182"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1102159234274703371380"} 2 -2023-07-08 08:25:31.474746 2023-07-08 10:31:06.011619 f38a08fa-55a8-4430-a751-438653b24f14 {"pid": "6903", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021665049"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1118159233931403370177"} 2 -2023-07-08 08:25:34.69405 2023-07-08 08:25:34.694062 077d7a6b-d78a-4211-a828-8c19f3833626 {"pid": "6928", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022609222"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:34.794543 2023-07-08 08:25:34.794553 3a3b9a1b-d641-4692-ac9b-897daf5d141e {"pid": "6929", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022669691"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:34.901565 2023-07-08 08:25:34.901575 3a9cc1a6-fbfe-4875-a580-18d55b94b089 {"pid": "6930", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022727201"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:35.019311 2023-07-08 08:25:35.019325 35cbbb84-fe53-41e2-a455-a2b228f6f23b {"pid": "6931", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022728227"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:35.12132 2023-07-08 08:25:35.12133 60a8aa2d-100a-4c88-8ca2-bb6517521dda {"pid": "6932", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022750943"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:35.228943 2023-07-08 08:25:35.228953 c6d33047-e4f4-465e-9a03-cc9385146f2c {"pid": "6933", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022755606"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:35.331868 2023-07-08 08:25:35.331875 3a8de7b4-72fc-43ab-86cb-0b31fc13f33f {"pid": "6934", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022762257"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:35.553553 2023-07-08 08:25:35.553568 66651e34-343b-4f30-bebc-3c3cc5743f68 {"pid": "6936", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022779592"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:35.664164 2023-07-08 08:25:35.664173 2963878a-28da-419c-92cc-9faa0918c117 {"pid": "6937", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022780159"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:35.885659 2023-07-08 08:25:35.88567 11a925a7-1d34-4adf-9763-9e6fbccddc8a {"pid": "6939", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022788140"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:36.004136 2023-07-08 08:25:36.004149 88e8d61c-d366-48a4-a96b-133a251ce0ec {"pid": "6940", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022802138"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:36.128184 2023-07-08 08:25:36.128197 ad85fa25-0d21-401b-a7d2-d2ce10f5c7d4 {"pid": "6941", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022802695"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:36.232516 2023-07-08 08:25:36.232527 6369ff68-c4ce-40c9-9347-d27c51268805 {"pid": "6942", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022817751"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:36.341384 2023-07-08 08:25:36.341397 beec7a97-2bda-491b-8205-acbb7c42b6b9 {"pid": "6943", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022823883"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:36.44348 2023-07-08 08:25:36.44349 6ba4ae9a-f918-4d17-a64d-4eed4b31b9b1 {"pid": "6944", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022833947"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:36.554423 2023-07-08 08:25:36.554436 25b93ec2-3c53-4af0-8fef-6813eb08e7f6 {"pid": "6945", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022844215"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:36.658887 2023-07-08 08:25:36.658897 ad5e117a-0c18-4618-ae76-9828b298daca {"pid": "6946", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022850968"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:36.759505 2023-07-08 08:25:36.759515 fdec4c96-fbd6-494c-a536-48fc5280360b {"pid": "6947", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022851528"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:36.881038 2023-07-08 08:25:36.881051 f0c452d3-8075-421e-b685-e8e8c2210efe {"pid": "6948", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022851951"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:36.983638 2023-07-08 08:25:36.983646 d415b33d-bab0-474f-92ff-6eb697346059 {"pid": "6949", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022877330"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:37.092275 2023-07-08 08:25:37.092289 2998b49c-03ab-44e2-93ab-7ecc51265073 {"pid": "6950", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022879961"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:37.201651 2023-07-08 08:25:37.20167 a1708ecd-e279-43ba-9bb6-943408f829b1 {"pid": "6951", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022889884"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:37.309283 2023-07-08 08:25:37.309294 edc16731-bb5e-4546-a4f1-e1bd57113936 {"pid": "6952", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022899841"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:37.416954 2023-07-08 08:25:37.41697 c5c15634-d9a8-40fc-a677-99722e5c9649 {"pid": "6953", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022904210"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:37.51929 2023-07-08 08:25:37.519302 ea80583a-8b66-421c-8c76-91f8401e3800 {"pid": "6954", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022916519"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:37.620192 2023-07-08 08:25:37.6202 96bec8f7-6444-45bc-8101-55dc47c6f45a {"pid": "6955", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022917527"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:37.732926 2023-07-08 08:25:37.732935 53da9e74-8bc3-4831-9bc5-3f9b6bfc11a4 {"pid": "6956", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022925286"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:37.982676 2023-07-08 08:25:37.982687 c961cbe0-4789-4810-9c26-222165bf34f7 {"pid": "6958", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022959371"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:38.089882 2023-07-08 08:25:38.089895 2f6fb1d1-6f08-4e1f-9488-0781384c7085 {"pid": "6959", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022966454"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:35.448945 2023-07-08 10:28:15.756931 8db062da-3b0e-48b9-9940-cdcef5c09881 {"pid": "6935", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022774320"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1081159234514903371914"} 2 -2023-07-08 08:25:37.853689 2023-07-08 10:29:17.808094 f78b8864-40d6-49d2-87ff-23c7b8fd33db {"pid": "6957", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022944034"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1095159234803003372820"} 2 -2023-07-08 08:25:38.194026 2023-07-08 08:25:38.19404 29e27c3a-93d1-401e-a817-bbb41e63adac {"pid": "6960", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022967536"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:38.305539 2023-07-08 08:25:38.305547 6ec0d714-255f-4648-82e8-41dc2eec2bcb {"pid": "6961", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022968022"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:38.433426 2023-07-08 08:25:38.433435 4a9cfc71-f217-49e3-9e50-df31dd754c58 {"pid": "6962", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022977898"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:38.548816 2023-07-08 08:25:38.548832 0ab37534-51b6-4acd-a61e-604c201dba25 {"pid": "6963", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022983847"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:38.898565 2023-07-08 08:25:38.898577 77128f3b-f72d-4227-a127-fe94a3a1b2a5 {"pid": "6966", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023068067"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:39.023071 2023-07-08 08:25:39.02308 0e1227d6-81be-4d4c-a9a0-73e7a91684f4 {"pid": "6967", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023086196"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:39.133233 2023-07-08 08:25:39.133242 a643dd0a-5868-4a6d-a3d4-c904a7f5bbd9 {"pid": "6968", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023112678"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:39.35755 2023-07-08 08:25:39.357557 1634b6f9-567e-45f5-9c13-3f701fbc0db6 {"pid": "6969", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023116130"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:39.696559 2023-07-08 08:25:39.696569 bc372f09-6446-4f9a-9333-62289560d2aa {"pid": "6972", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023158576"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:39.93422 2023-07-08 08:25:39.934231 62b5776e-1f59-4932-a548-96753a4634d0 {"pid": "6973", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023168629"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:40.156674 2023-07-08 08:25:40.156683 c3c25958-f41e-4adb-9fee-cd3911f82d04 {"pid": "6975", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023188004"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:40.50003 2023-07-08 08:25:40.50004 a0334a02-c77f-4232-9a7e-c2f581d2d1f5 {"pid": "6978", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023196927"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:40.605947 2023-07-08 08:25:40.605955 8b917924-159e-489e-87ea-dbfc7b58d565 {"pid": "6979", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023205283"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:40.806118 2023-07-08 08:25:40.806125 a636399a-7c9e-44d0-936c-52c5fd660fc8 {"pid": "6981", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023237776"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:40.910646 2023-07-08 08:25:40.910658 48961e15-a962-4d81-aedb-da1a1949d9da {"pid": "6982", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023249408"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:41.059237 2023-07-08 08:25:41.059254 e8116284-8e0f-4f78-b5f2-3c110a294c94 {"pid": "6983", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023286352"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:41.168557 2023-07-08 08:25:41.168567 beebce41-8e52-4512-be1d-44b3a4092d4f {"pid": "6984", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023294886"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:41.26883 2023-07-08 08:25:41.268841 c5708342-be4a-4b32-92d9-d5d989172b04 {"pid": "6985", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023325251"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:41.379845 2023-07-08 08:25:41.379852 635baaed-64b2-485c-af1b-b466677c8a2d {"pid": "6986", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023343244"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:41.492635 2023-07-08 08:25:41.492646 513dddd9-5022-44bf-97f4-d84cb295bd1c {"pid": "6987", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023361460"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:41.618205 2023-07-08 08:25:41.618214 d98ad668-9a48-4527-bac9-0d0aaaf64c7f {"pid": "6988", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023366781"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:41.721063 2023-07-08 08:25:41.721073 54fcc843-effa-43c2-9382-4364d1778abf {"pid": "6989", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023417604"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:41.830259 2023-07-08 08:25:41.830268 7091755d-60f7-460f-9590-21a98c93aad6 {"pid": "6990", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023417887"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:38.669941 2023-07-08 10:26:25.38335 8be832dc-0dfb-4ac2-9da2-01d83d2d6898 {"pid": "6964", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022990131"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1045159234774003372813"} 2 -2023-07-08 08:25:38.78177 2023-07-08 10:26:45.235013 0717a064-fb30-450f-aadb-6e0ec0e32097 {"pid": "6965", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022997177"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105683640"} 2 -2023-07-08 08:25:40.711454 2023-07-08 10:27:17.815389 91111556-f84d-4632-ae22-039487b055eb {"pid": "6980", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023227823"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1068159234548603371931"} 2 -2023-07-08 08:25:40.284833 2023-07-08 10:27:45.12868 4cd5d08f-debb-42ae-ad82-1e95c892f1c2 {"pid": "6976", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023189262"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107325896"} 2 -2023-07-08 08:25:40.055802 2023-07-08 10:28:37.706648 da41da5a-88ba-42c1-bccd-11284d70fc20 {"pid": "6974", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023182560"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1086159234730403372515"} 2 -2023-07-08 08:25:39.590132 2023-07-08 10:28:58.330027 a63aa5a2-0daa-4b97-863d-ed799848dc4c {"pid": "6971", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023154358"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1091159234630103372254"} 2 -2023-07-08 08:25:40.399521 2023-07-08 10:30:14.367045 6ef9e964-deb2-44dc-9d78-cda6954fe14f {"pid": "6977", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023193920"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1109159234798703372837"} 2 -2023-07-08 08:25:41.935645 2023-07-08 08:25:41.935659 d5ad7596-e282-416b-a623-b3b5122c50a1 {"pid": "6991", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023419144"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:42.045555 2023-07-08 08:25:42.045565 90982d1d-3300-407d-9af8-e7ce4e3f2a4f {"pid": "6992", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023422393"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:42.314717 2023-07-08 08:25:42.314726 a310ba4e-cc6f-401a-9889-399a100f737e {"pid": "6993", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023432176"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:42.440566 2023-07-08 08:25:42.440578 0bb0d1fa-cbbc-4c83-be4f-5ef3258b2233 {"pid": "6994", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023438761"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:42.544654 2023-07-08 08:25:42.544662 a6f43d6b-7119-4a3d-8be5-fc0cd80997c6 {"pid": "6995", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023440649"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:42.650064 2023-07-08 08:25:42.650072 8495ef70-a2e5-48d2-9145-0cf470e3ecb1 {"pid": "6996", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023442924"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:42.87673 2023-07-08 08:25:42.87674 4d6dca7e-2751-4701-ad3b-1d19366e73ec {"pid": "6998", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023455691"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:42.991537 2023-07-08 08:25:42.991549 7961e74d-97fe-4a12-95a3-d5f8d426b85d {"pid": "6999", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023474915"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:43.108384 2023-07-08 08:25:43.108395 43ff9739-c55c-4d1e-b6cb-38bf4c4607b5 {"pid": "7000", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023516300"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:43.241652 2023-07-08 08:25:43.24166 e959db9f-60cc-4804-be30-67c8f5b02528 {"pid": "7001", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023516798"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:43.355934 2023-07-08 08:25:43.355943 b57720ec-a63a-41d5-96e9-b745dabf20c1 {"pid": "7002", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023520416"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:43.456861 2023-07-08 08:25:43.456872 47c5ae4e-dc47-4c2f-b660-94fd9c101a0f {"pid": "7003", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023524669"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:43.563159 2023-07-08 08:25:43.563168 b2df6663-ffd4-40e6-a510-eee290dfca03 {"pid": "7004", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023533143"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:43.671204 2023-07-08 08:25:43.671218 b996b004-1d9d-4c68-a06b-76c033358c3f {"pid": "7005", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023570716"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:43.771682 2023-07-08 08:25:43.77169 e4191f60-13a2-4032-ba77-61c646de5a66 {"pid": "7006", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023604346"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:43.860657 2023-07-08 08:25:43.860667 c2ed3229-6873-4c98-b223-7c8c7e040140 {"pid": "7007", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023605931"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:43.956903 2023-07-08 08:25:43.956931 9eb47af6-12e9-485c-94d8-8ae6e084a2c9 {"pid": "7008", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023608022"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:44.050734 2023-07-08 08:25:44.050744 ab538a32-6748-490e-83ff-2e032f10f80b {"pid": "7009", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023613346"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:44.149882 2023-07-08 08:25:44.149892 bb15d115-7887-45b4-9d34-a5d246b7bcb5 {"pid": "7010", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023626167"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:44.251885 2023-07-08 08:25:44.251894 ffb29122-42e7-4356-b58c-871fab4376ef {"pid": "7011", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023644947"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:44.349734 2023-07-08 08:25:44.349744 5e1fea9b-5fc8-44d3-b3f6-a50a9b4dfa19 {"pid": "7012", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023655893"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:44.571445 2023-07-08 08:25:44.571456 092881b4-1435-418a-b081-38b8d452e10f {"pid": "7014", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023690762"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:44.784296 2023-07-08 08:25:44.784304 1cc64a29-4a50-45b9-8c53-13881852bd28 {"pid": "7015", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023699946"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:44.881488 2023-07-08 08:25:44.881499 67a29746-cc19-4881-9646-a778cf434510 {"pid": "7016", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023700595"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:44.992626 2023-07-08 08:25:44.992636 7d628304-5998-4863-a4dd-d1d3042a0773 {"pid": "7017", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023701973"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:45.088034 2023-07-08 08:25:45.088047 db34e3d9-6b2e-4a80-92ba-f29ae4d1bb52 {"pid": "7018", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023712980"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:45.305806 2023-07-08 08:25:45.305814 379a7359-a18b-4ebb-9ab0-29862004607d {"pid": "7020", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023741754"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:42.764889 2023-07-08 10:31:36.279367 ddfa0e75-9429-4530-97c5-fb3fccaff904 {"pid": "6997", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023452640"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1129159233964903370408"} 2 -2023-07-08 08:25:45.194274 2023-07-08 10:30:20.010932 5729376e-9ce4-4e96-bd12-41b47e5cb103 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/119443988"}, "pid": "7019", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023720699"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111005319"} 3 -2023-07-08 08:25:45.429285 2023-07-08 08:25:45.429294 ef62808e-3c1b-4cd7-853d-6c3295facaea {"pid": "7021", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023763587"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:45.541573 2023-07-08 08:25:45.541583 441ed10f-b3fe-4fa4-b9f1-164592163e97 {"pid": "7022", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023783324"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:45.657482 2023-07-08 08:25:45.657495 8ba38299-d340-4cf3-aaf6-65781c5d0158 {"pid": "7023", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023806510"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:45.767876 2023-07-08 08:25:45.767889 27b21419-c30c-451d-94f4-f03411f78d9e {"pid": "7024", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023814163"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:45.884356 2023-07-08 08:25:45.884367 65c47ef1-6c36-4328-ac50-3a5e452c9759 {"pid": "7025", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023822688"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:45.984163 2023-07-08 08:25:45.984173 630e24e2-8425-4d5a-ba55-f40ea1dbbcdc {"pid": "7026", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023822699"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:46.087758 2023-07-08 08:25:46.087768 840a3269-1b9f-4e3f-a983-46f6c21fa7b4 {"pid": "7027", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023822966"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:46.19916 2023-07-08 08:25:46.199176 2644354c-c068-4a31-9ab2-d87439eb966d {"pid": "7028", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023823517"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:46.299669 2023-07-08 08:25:46.299683 6ef651e2-2753-4904-a68d-75814a251441 {"pid": "7029", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023823557"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:46.404269 2023-07-08 08:25:46.40428 49e01e05-651b-4c74-a667-7d54fd2f9b7f {"pid": "7030", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023848289"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:46.511678 2023-07-08 08:25:46.511691 f2fddedb-7379-4444-a8ed-ee213a7cd86e {"pid": "7031", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023869329"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:46.622095 2023-07-08 08:25:46.622108 fde06e55-25b3-48ac-84ec-e4a8256d17df {"pid": "7032", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023948966"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:46.737421 2023-07-08 08:25:46.737428 b8ddf2ea-ca26-4097-b336-ef31e194b034 {"pid": "7033", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023960471"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:46.867947 2023-07-08 08:25:46.867963 fb322be9-e564-43ac-8df9-dd6d6a9967c4 {"pid": "7034", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023966957"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:46.977952 2023-07-08 08:25:46.977966 1af585a1-40af-439e-9cfa-13bf15791986 {"pid": "7035", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023969519"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:47.092227 2023-07-08 08:25:47.092238 6debf12f-0b3a-4082-bd72-cc02fcfb85c9 {"pid": "7036", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023985610"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:47.198319 2023-07-08 08:25:47.198327 c0b6cfd2-c553-4904-9825-daf087a10bb0 {"pid": "7037", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023993514"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:47.310364 2023-07-08 08:25:47.310377 2e746297-682d-4d0e-9cc6-1cc713d8c4ba {"pid": "7038", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023994589"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:47.419774 2023-07-08 08:25:47.419782 ef09fbb9-44ee-42c4-81fa-6995516c5f3f {"pid": "7039", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024017606"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:47.527666 2023-07-08 08:25:47.52768 52aad436-b2d3-42df-aa48-d61a6a7c6a8e {"pid": "7040", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024032635"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:47.648901 2023-07-08 08:25:47.648913 12031c5d-5aa8-4325-906b-211cf5a0233b {"pid": "7041", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024034240"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:47.756279 2023-07-08 08:25:47.756291 efdd1004-2040-4c02-9cf3-2850974fb2aa {"pid": "7042", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024042745"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:47.988528 2023-07-08 08:25:47.988541 b8808f26-1bfb-4d7a-8fe4-22062ce90509 {"pid": "7043", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024063413"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:48.089667 2023-07-08 08:25:48.089675 3358e040-8a0b-464f-a4d4-c2a75f34c2aa {"pid": "7044", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024072354"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:48.195674 2023-07-08 08:25:48.195692 efda61ec-aa78-42e9-b922-4db90f91f2c0 {"pid": "7045", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024073610"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:48.427948 2023-07-08 08:25:48.427957 5aba29d1-0e1c-44a3-82ee-340f292a8fd0 {"pid": "7047", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024079443"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:48.753946 2023-07-08 08:25:48.753954 e596fea4-58cc-440e-9574-bd1c0687d902 {"pid": "7049", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024107085"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:48.851641 2023-07-08 08:25:48.851656 3d43e9a6-5f8b-4591-a9f6-7b425963e381 {"pid": "7050", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024109666"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:48.647426 2023-07-08 10:27:45.073256 32c83104-bef5-49b5-b129-e1019ef48350 {"pid": "7048", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024099458"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107321386"} 2 -2023-07-08 08:21:32.390925 2023-07-08 10:23:48.270489 37645091-fe68-4c81-a817-2046e3fdd25b {"pid": "4716", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024043552"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/185108385"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100343998"} 4 -2023-07-08 08:25:48.949664 2023-07-08 08:25:48.949676 db958ba4-8c95-4971-a0cc-ab75255b9d0e {"pid": "7051", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024119960"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:49.05634 2023-07-08 08:25:49.056353 07710179-d09f-4625-9f45-34133daa8b8c {"pid": "7052", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024120760"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:49.170212 2023-07-08 08:25:49.170225 29460ed6-1662-4cb5-b59f-e7b89c2c80a8 {"pid": "7053", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024123847"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:49.278148 2023-07-08 08:25:49.278158 d79a43a1-7a65-4c8b-ab0b-ec0ac070af39 {"pid": "7054", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024135505"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:49.382396 2023-07-08 08:25:49.382406 66deda94-7b8f-4044-9da8-4118a9a6af8b {"pid": "7055", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024137299"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:49.487888 2023-07-08 08:25:49.487891 ce8425e5-1a8b-4736-a46f-2da6223cfc96 {"pid": "7056", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024141965"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:49.59206 2023-07-08 08:25:49.592073 f95d7e65-f268-4f7a-b749-1dd475b38f34 {"pid": "7057", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024152276"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:49.698928 2023-07-08 08:25:49.698942 a3abc501-c821-42e9-b637-aa37a82e5b0f {"pid": "7058", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024180345"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:49.804338 2023-07-08 08:25:49.804351 a47ba935-eac7-4c2d-bb5a-ce13a5fea5f4 {"pid": "7059", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024182024"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:49.90082 2023-07-08 08:25:49.900827 47d1805f-48a5-4853-bff2-2c011e29de62 {"pid": "7060", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024188404"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:50.005412 2023-07-08 08:25:50.005424 de2eec27-19e7-49c0-9d98-8eb0ed2a775b {"pid": "7061", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024193588"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:50.111749 2023-07-08 08:25:50.111757 cf368a10-e931-41bc-a6f8-bfe3d0914b42 {"pid": "7062", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024201811"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:50.2145 2023-07-08 08:25:50.214508 23c1c7bc-9b0a-40b2-ab3b-de71d0669a8b {"pid": "7063", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024207312"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:50.319034 2023-07-08 08:25:50.319047 3bd42791-f0c6-4474-b78a-6aa84bbddee2 {"pid": "7064", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024239773"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:50.423791 2023-07-08 08:25:50.423805 f8f8cc39-866e-4d3c-95df-ed0ad31364e8 {"pid": "7065", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024248736"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:50.527387 2023-07-08 08:25:50.527397 579e4c0c-9f78-4c9a-a263-4167b131ebe4 {"pid": "7066", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024250351"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:50.633602 2023-07-08 08:25:50.633612 e882d65c-df24-40ef-8d39-35b4101a5ddf {"pid": "7067", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024250841"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:50.738892 2023-07-08 08:25:50.738905 83661d8d-9868-411d-9457-840d01ed1009 {"pid": "7068", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024251528"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:50.954833 2023-07-08 08:25:50.954846 5d94c2df-8ef1-4685-8bab-eecc01331047 {"pid": "7069", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024295112"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:51.054856 2023-07-08 08:25:51.054868 5a9330f0-b2f8-4b32-9aa0-d38f35fe16f5 {"pid": "7070", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024305757"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:51.160054 2023-07-08 08:25:51.160067 7daf06cc-d9ee-4bef-bf28-5184c3bce604 {"pid": "7071", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024311492"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:51.264485 2023-07-08 08:25:51.264495 8cf2098f-de48-40af-a7aa-03266316dbbd {"pid": "7072", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024314866"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:51.363932 2023-07-08 08:25:51.36395 5a948cd9-035a-465d-b103-37ec652080b1 {"pid": "7073", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024316631"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:51.469332 2023-07-08 08:25:51.469345 2fb54d8c-4bed-4ca6-9500-552e4e307acc {"pid": "7074", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024326128"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:51.582116 2023-07-08 08:25:51.582125 fc95add6-adba-48d0-8988-1074070d1554 {"pid": "7075", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024329523"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:51.688626 2023-07-08 08:25:51.68864 bca3159d-a3b9-435b-b69f-7d6a6ff9fb99 {"pid": "7076", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024329741"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:51.795512 2023-07-08 08:25:51.795526 d393a8ce-61aa-40ac-82e6-7bdaf29c7e8a {"pid": "7077", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024333154"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:51.903349 2023-07-08 08:25:51.903356 7c9fde75-d6d0-4fdb-8411-e83f45a0a4da {"pid": "7078", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024352277"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:52.010791 2023-07-08 08:25:52.0108 d3ed5a82-3b13-4b10-b779-b8ca719ee4c4 {"pid": "7079", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024368303"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:52.12838 2023-07-08 08:25:52.128389 9419a48b-f7bd-41cc-b428-d90ff7ae7043 {"pid": "7080", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024370974"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:52.239008 2023-07-08 08:25:52.23902 728395b8-ea65-4ec8-b000-f43e35ba0bc4 {"pid": "7081", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024377672"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:52.347576 2023-07-08 08:25:52.34759 cba6d517-4b72-4d46-b956-93e94a2274a7 {"pid": "7082", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024381221"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:52.677695 2023-07-08 08:25:52.677707 30352d29-3d21-4f9c-b144-9ffc7c236c45 {"pid": "7084", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024424763"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:52.783356 2023-07-08 08:25:52.783366 48acb220-98d7-4e26-be7c-25e775cced1c {"pid": "7085", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024446255"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:52.883809 2023-07-08 08:25:52.883822 fae22cd0-af06-432a-a778-3ce97f1e3010 {"pid": "7086", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024465489"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:52.995309 2023-07-08 08:25:52.995323 805848ce-4db6-4a7e-98ce-cb5042c93d33 {"pid": "7087", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024466417"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:53.098468 2023-07-08 08:25:53.098483 b8ea9e82-2c0c-415b-897b-ba5be2f23a35 {"pid": "7088", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024471669"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:53.203791 2023-07-08 08:25:53.203804 c26f911d-e2dc-4499-81ca-f6a03f2ffaf1 {"pid": "7089", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024478155"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:53.313788 2023-07-08 08:25:53.313797 6b5b446b-8c8a-435a-a439-c50a468d902c {"pid": "7090", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024478463"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:53.41049 2023-07-08 08:25:53.410506 5dfce257-e271-46d7-9212-e4dab1566c30 {"pid": "7091", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024478863"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:53.513957 2023-07-08 08:25:53.513969 69bc7e56-3ea6-4f52-a910-d5afe952edd8 {"pid": "7092", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024480400"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:53.629934 2023-07-08 08:25:53.629944 0a294335-0a67-4390-93d7-8096750ef17f {"pid": "7093", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024491342"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:53.735016 2023-07-08 08:25:53.735027 c9b334ab-8af6-4fb6-9fee-b706161ea9ca {"pid": "7094", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024527296"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:53.842714 2023-07-08 08:25:53.842724 8b1d1006-6c24-439e-9771-4cb800cb1567 {"pid": "7095", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024528563"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:53.949578 2023-07-08 08:25:53.949591 64c1cd9f-ea3f-4918-b685-15bdc8821f67 {"pid": "7096", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024529059"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:54.061912 2023-07-08 08:25:54.061933 9a2c3bcd-facd-4bfb-b10a-cdbfaf81cf44 {"pid": "7097", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024541309"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:54.184535 2023-07-08 08:25:54.184544 7e96de50-18b3-4b24-8111-ef724edee53b {"pid": "7098", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024566467"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:54.299122 2023-07-08 08:25:54.299136 0b4c11c2-b27b-4c20-890b-9bf5046b9871 {"pid": "7099", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024569645"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:54.424403 2023-07-08 08:25:54.424441 eb6c3a4f-5cce-4d7c-b4d7-aeeddacecb72 {"pid": "7100", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024595109"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:54.553552 2023-07-08 08:25:54.55357 48c0824f-72c7-468d-8d3c-53ab5904c970 {"pid": "7101", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024595509"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:54.658241 2023-07-08 08:25:54.658254 116a22d1-5f90-426b-b36b-3812fb414210 {"pid": "7102", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024600161"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:54.786646 2023-07-08 08:25:54.786655 81fc0734-86fc-4153-a19d-bbe527bec806 {"pid": "7103", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024602006"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:54.891261 2023-07-08 08:25:54.89127 a7c969f8-970f-43db-a2cf-f0000c57cf5c {"pid": "7104", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024707851"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:54.994061 2023-07-08 08:25:54.994071 bbbcfb03-fc26-4442-8cd3-338541930c8a {"pid": "7105", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024728544"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:55.098968 2023-07-08 08:25:55.098979 734d660c-cef2-4e36-a00c-e95b37ab254b {"pid": "7106", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024729479"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:55.213845 2023-07-08 08:25:55.213853 948bdc23-9ac2-4ec2-826a-6205c00691a7 {"pid": "7107", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024746147"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:55.320098 2023-07-08 08:25:55.320107 93ae6b65-c0a4-468b-a063-24ae64264a17 {"pid": "7108", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024770093"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:55.427982 2023-07-08 08:25:55.427991 55b05bf9-2d2b-4cb3-82e4-c94f49ce81fb {"pid": "7109", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024774397"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:55.535393 2023-07-08 08:25:55.535402 247ed3a0-2ff1-4b33-8748-e0e6e6724456 {"pid": "7110", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024790283"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:55.649682 2023-07-08 08:25:55.649692 3f8582d1-3302-4f5e-9548-35c46787a2f8 {"pid": "7111", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024801676"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:55.772513 2023-07-08 08:25:55.772525 563fe2f1-b617-4999-9d16-ed0c2d2b6992 {"pid": "7112", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024814391"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:55.906589 2023-07-08 08:25:55.906599 d7db1651-290d-4203-8b58-d201e12a4896 {"pid": "7113", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024843767"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:56.039235 2023-07-08 08:25:56.039248 9f15f698-7b2b-4e76-864e-88392a3a7976 {"pid": "7114", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024846924"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:56.163938 2023-07-08 08:25:56.163953 f4725865-2595-4afe-8bcb-c264ca1cb092 {"pid": "7115", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024866515"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:56.285923 2023-07-08 08:25:56.285936 597686ef-3ab6-4402-8185-28d6e2383b5c {"pid": "7116", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024878364"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:56.405432 2023-07-08 08:25:56.405445 ab7bc4c4-77fc-47eb-a470-e3f3f8449786 {"pid": "7117", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024884886"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:56.523427 2023-07-08 08:25:56.523443 60b6e73f-4893-404f-8b79-854a37c9b286 {"pid": "7118", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024896750"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:56.63181 2023-07-08 08:25:56.631823 a7ba021e-82a6-4b8c-9eb3-d1130368a2f9 {"pid": "7119", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024897034"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:56.738673 2023-07-08 08:25:56.738681 f9e5c4cf-1609-463e-ace5-6bf5e49c01bc {"pid": "7120", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024917771"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:56.864328 2023-07-08 08:25:56.864336 230d7923-98ba-4559-8394-0ce03e4e6a5b {"pid": "7121", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024919899"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:56.969309 2023-07-08 08:25:56.969322 7d171c77-ee9e-42ea-a676-df02ba22bda8 {"pid": "7122", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024930424"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:57.08034 2023-07-08 08:25:57.080349 36642c5d-732e-4bb2-8024-fdff88a948c9 {"pid": "7123", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024960848"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:57.184395 2023-07-08 08:25:57.184406 4a0edf98-5038-49c9-a73f-453ed5282f6f {"pid": "7124", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024966631"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:57.29417 2023-07-08 08:25:57.294184 8794220b-e0c3-4cf6-8462-ea8fea5dcdf9 {"pid": "7125", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024969731"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:57.395126 2023-07-08 08:25:57.395139 57b480ee-bd33-41b1-9c71-1bd2b644bdae {"pid": "7126", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024978532"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:57.503359 2023-07-08 08:25:57.503371 cd9b5c86-76c9-4e7e-b1cd-cc43444d62a4 {"pid": "7127", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024983874"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:57.617788 2023-07-08 08:25:57.617801 10cbe075-d8cc-4b89-9952-474519c534fc {"pid": "7128", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025024778"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:57.727082 2023-07-08 08:25:57.727093 bafe735a-5176-442e-9d53-e719676b21f0 {"pid": "7129", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025029914"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:57.83599 2023-07-08 08:25:57.836002 12ebe5fe-0886-42ec-9cf0-b1fc8c34a01a {"pid": "7130", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025056747"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:57.956379 2023-07-08 08:25:57.956391 00136cce-a818-4610-87f3-1e46a047fda0 {"pid": "7131", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025075603"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:58.060945 2023-07-08 08:25:58.060958 a8c72a60-17a9-4b12-b9d9-d1e52e74b7bf {"pid": "7132", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025086688"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:58.170353 2023-07-08 08:25:58.170366 780fe578-2a05-4009-b6e8-bfce732c7a27 {"pid": "7133", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025119661"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:58.277158 2023-07-08 08:25:58.277168 4aad6979-056e-496f-a372-9ae3ac18ff2e {"pid": "7134", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025121507"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:58.506247 2023-07-08 08:25:58.50626 4c598da9-e036-4bdc-982a-b76aeb8d88b4 {"pid": "7135", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025252592"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:58.614792 2023-07-08 08:25:58.614806 b1078798-250c-43d6-b5da-1878b4aa08a4 {"pid": "7136", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025258576"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:58.732055 2023-07-08 08:25:58.732063 9393f36d-f690-4919-b5ca-e4fb12680c91 {"pid": "7137", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025259137"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:58.837831 2023-07-08 08:25:58.837844 3192e7dc-46ba-44f0-9b02-68b443aa34aa {"pid": "7138", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025287146"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:58.94001 2023-07-08 08:25:58.940024 cad4bfd4-da5e-4691-b3e8-beda20f7fe47 {"pid": "7139", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025328121"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:59.065943 2023-07-08 08:25:59.065956 1e680e1e-03ea-4f70-9b12-bf2994a0b25c {"pid": "7140", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025329777"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:59.17589 2023-07-08 08:25:59.175903 ba6da06d-7554-4df6-8f76-c3310daeff02 {"pid": "7141", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025330235"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:59.299313 2023-07-08 08:25:59.299326 38d51f66-3660-41c7-8e6e-c4025e67420d {"pid": "7142", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025337143"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:59.40658 2023-07-08 08:25:59.406592 bc0358ff-2dbc-4502-9523-35fd08d5a42f {"pid": "7143", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025360796"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:59.632722 2023-07-08 08:25:59.63273 1c0d2108-41f8-4e6a-8be1-51cf1feca733 {"pid": "7145", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025387385"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:59.735888 2023-07-08 08:25:59.735901 ae084a04-d8d2-47da-863a-78b6112f3c94 {"pid": "7146", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025397944"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:59.853038 2023-07-08 08:25:59.853052 4018cf08-b985-4247-b845-5a033a348b9a {"pid": "7147", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025418238"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:25:59.964028 2023-07-08 08:25:59.964044 c32f414f-2e21-4fb9-86c4-33fd8b0e6601 {"pid": "7148", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025435600"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:00.184788 2023-07-08 08:26:00.184799 2267818f-c61e-4e8c-8aef-9e280be76fde {"pid": "7149", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025477095"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:00.44372 2023-07-08 08:26:00.44373 9594a687-3ebd-4cc4-a27e-f81b1df2dcff {"pid": "7150", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025537929"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:00.549342 2023-07-08 08:26:00.549349 f1d28eda-6f30-426c-9ade-d3f0414681b1 {"pid": "7151", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025540309"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:00.664561 2023-07-08 08:26:00.664569 ed232545-76ba-45a8-9d1e-958194e851e7 {"pid": "7152", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025581873"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:00.854598 2023-07-08 08:26:00.854609 dfc7f01d-2b77-46b0-a8ce-dd3c6710f16e {"pid": "7153", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025582144"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:01.082592 2023-07-08 08:26:01.082603 e55c87eb-80e2-4de2-8716-c5f31476ba42 {"pid": "7154", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025610247"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:01.203918 2023-07-08 08:26:01.203929 8b64fe79-5181-463a-a7d2-11a5bbf92600 {"pid": "7155", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025614399"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:01.339885 2023-07-08 08:26:01.339896 85a4d9f0-3e64-42e3-9dd7-e69e62b62619 {"pid": "7156", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025630450"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:01.436559 2023-07-08 08:26:01.436569 21a1a5e5-0b6a-4cde-ad9d-89858dd3fab2 {"pid": "7157", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025632565"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:01.568167 2023-07-08 08:26:01.568176 16298615-8e5d-4a8f-8d21-1b42f24b7f84 {"pid": "7158", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025639432"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:01.69968 2023-07-08 08:26:01.699686 13823237-1946-499f-b224-268837518772 {"pid": "7159", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025669520"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:01.847186 2023-07-08 08:26:01.847197 50cf8222-1441-470f-9f2e-0d939cd1a6ce {"pid": "7160", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025676459"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:01.981415 2023-07-08 08:26:01.981427 c8e9b264-197c-438e-a8f2-3ca74b4f5c5c {"pid": "7161", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025678092"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:02.113999 2023-07-08 08:26:02.11401 1db8a5e3-d2fb-47bf-98ed-65b781829def {"pid": "7162", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025679166"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:02.233891 2023-07-08 08:26:02.233904 c228ff4f-0b3b-43d3-bc09-edf7f6b16edc {"pid": "7163", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025681987"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:02.518131 2023-07-08 08:26:02.518141 e22cc054-9a1b-4111-b655-2a2b5f4f8784 {"pid": "7164", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025691379"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:02.751718 2023-07-08 08:26:02.751731 be497145-a046-46c4-9621-3c28d8713620 {"pid": "7166", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025711026"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:02.867025 2023-07-08 08:26:02.867038 67aa23db-ebfb-4fba-847a-6cdef28c394c {"pid": "7167", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025712587"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:02.977609 2023-07-08 08:26:02.977625 393ea0c9-5376-4b3d-bc5b-7beeaa4f134a {"pid": "7168", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025721356"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:03.2072 2023-07-08 08:26:03.207211 228e7a68-3b48-4f51-8602-f11e2d59fb6e {"pid": "7170", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025730129"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:03.316239 2023-07-08 08:26:03.316251 9ee65005-edae-42e9-97c0-d7905bfc5fc6 {"pid": "7171", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025745173"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:03.430077 2023-07-08 08:26:03.430086 7dec7858-b965-4d73-a0ce-014cb018b7a1 {"pid": "7172", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025772014"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:03.534659 2023-07-08 08:26:03.534742 44a3534e-a2f2-47c4-bf1a-2a811bf05565 {"pid": "7173", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025773339"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:57.000683 2023-07-08 10:28:13.246125 d0757cf9-480e-4bde-9735-01956d081de6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1064724876"}, "pid": "4339", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025504164"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/143120743"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107995730"} 5 -2023-07-08 08:22:26.934939 2023-07-08 10:26:23.844743 86fa0da8-341f-49fd-96ed-3250ee320b61 {"pid": "5250", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025688432"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/235301787"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1043155284875187062000"} 4 -2023-07-08 08:26:03.645275 2023-07-08 08:26:03.645286 ead80259-017d-4142-bf84-8cc00e00f44c {"pid": "7174", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025780261"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:03.758953 2023-07-08 08:26:03.758968 0fc9884e-43db-4fb4-a4b4-23de3230d0f2 {"pid": "7175", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025785978"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:03.870202 2023-07-08 08:26:03.87023 89ffa426-94ac-4bff-a639-6abc49ff8db4 {"pid": "7176", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025796144"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:04.000947 2023-07-08 08:26:04.000956 220ac2b3-7d01-4b0b-968e-b4809274a015 {"pid": "7177", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025797147"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:04.119054 2023-07-08 08:26:04.119061 6988ac63-23fd-4f91-add4-2ebc2936043e {"pid": "7178", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025804299"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:04.234083 2023-07-08 08:26:04.234094 6f923e59-9bf1-47c6-99f7-587a9ef03816 {"pid": "7179", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025826851"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:04.341569 2023-07-08 08:26:04.341577 c1be7ab6-0cbe-4929-a621-5b7e76ce6719 {"pid": "7180", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025833339"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:04.448249 2023-07-08 08:26:04.448262 921c8994-9932-46a6-8c65-e95beb563251 {"pid": "7181", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025835776"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:04.575505 2023-07-08 08:26:04.575517 832a2526-cf59-4ddd-a523-7f051cf1ba27 {"pid": "7182", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025837185"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:04.702159 2023-07-08 08:26:04.702168 71dc1ec6-46fb-4237-b19b-578473f7e1c1 {"pid": "7183", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025845397"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:04.829311 2023-07-08 08:26:04.829324 f5e1ff8f-3a45-4706-90f6-d90ecadd95aa {"pid": "7184", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025848952"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:04.938037 2023-07-08 08:26:04.938044 a84c6d3f-749b-4f66-8183-f043d4907342 {"pid": "7185", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025851501"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:05.066864 2023-07-08 08:26:05.066878 dd361f5e-da47-4e9a-b437-93e2c07c5e9a {"pid": "7186", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025884069"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:05.187396 2023-07-08 08:26:05.187405 85218012-0aa6-4dba-bedd-920729b5e91d {"pid": "7187", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025890846"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:05.313719 2023-07-08 08:26:05.31373 d40849ef-64a6-4e48-91c5-311a36ad9bd0 {"pid": "7188", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025893734"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:05.56976 2023-07-08 08:26:05.569768 e1bf4d2c-03e6-482f-aa6c-fdf5c2db71a5 {"pid": "7189", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025930633"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:05.711133 2023-07-08 08:26:05.711156 fecbdea3-1991-4092-957b-3e449f996677 {"pid": "7190", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025932364"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:05.855708 2023-07-08 08:26:05.855722 5542460b-75ae-4a3c-ae0a-28c209b5bf95 {"pid": "7191", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025951707"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:05.987856 2023-07-08 08:26:05.987869 1ba2f1cd-c1c5-40bf-8dfc-36518de2289b {"pid": "7192", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025956739"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:06.131475 2023-07-08 08:26:06.131493 b39345b5-4385-44d9-af5e-12e90cef6ec9 {"pid": "7193", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025958419"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:06.256337 2023-07-08 08:26:06.256351 ae5a207c-9162-409a-bf5e-6b9f57ba97e1 {"pid": "7194", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025965491"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:06.383228 2023-07-08 08:26:06.383235 30cc4d57-b161-412b-99b9-52d6e9829c16 {"pid": "7195", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025967759"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:06.513167 2023-07-08 08:26:06.513186 cfc86653-37ff-4d76-b759-ecb0abd63de3 {"pid": "7196", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025976492"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:06.900612 2023-07-08 08:26:06.90062 e13032e0-6249-4ff0-ad80-90967f1b020d {"pid": "7198", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026005729"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:07.074998 2023-07-08 08:26:07.075001 3792cbaf-2f55-491b-9328-1beda3737b6e {"pid": "7199", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026012565"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:07.146727 2023-07-08 08:26:07.14673 22963041-de67-4551-a55f-e39947b49240 {"pid": "7200", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026015516"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:07.22922 2023-07-08 08:26:07.229229 80833b2c-fdc1-49a4-ae49-a258b656d0df {"pid": "7201", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026028252"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:07.344222 2023-07-08 08:26:07.344234 5d0108ec-e981-490d-b8b0-fdb9df65a734 {"pid": "7202", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026028546"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:07.452802 2023-07-08 08:26:07.452815 db460703-8735-4eb1-acc9-66a4016eca9d {"pid": "7203", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026050339"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:07.575014 2023-07-08 08:26:07.575023 622d8da5-9071-467b-b7a8-9e9f3d9d7eae {"pid": "7204", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026066357"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:07.67589 2023-07-08 08:26:07.675903 0ccb1fe9-d0ef-4fab-a0d7-c9d8efceaaa1 {"pid": "7205", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026085043"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:07.77748 2023-07-08 08:26:07.777488 ee726e76-8b59-4b70-b266-22cb43f3e4fa {"pid": "7206", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026091329"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:07.885882 2023-07-08 08:26:07.885891 0523d9b8-9f7d-4e2d-b93a-c1b1894d367f {"pid": "7207", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026115092"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:08.002346 2023-07-08 08:26:08.002355 a40081fc-6d21-4216-bd12-fc50bb6de08a {"pid": "7208", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026120339"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:08.117505 2023-07-08 08:26:08.117515 5de8dd6f-d341-4c7b-a926-77ec2e6f188e {"pid": "7209", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026122888"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:08.358364 2023-07-08 08:26:08.358378 7cb50677-4590-449b-9f69-700978625058 {"pid": "7210", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026129158"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:08.471337 2023-07-08 08:26:08.471349 1db33c10-53a5-4811-816f-fc9dc942c62d {"pid": "7211", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026132029"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:08.579569 2023-07-08 08:26:08.579578 656c1530-94ba-4cbf-b185-e548519fbeab {"pid": "7212", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026144791"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:08.811821 2023-07-08 08:26:08.811834 0d2a6462-e398-4e35-b560-5dd270e10a7f {"pid": "7214", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026164040"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:08.920644 2023-07-08 08:26:08.92066 67aa03ea-19a6-4c19-89cf-45e34568b49f {"pid": "7215", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026168031"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:09.03062 2023-07-08 08:26:09.030628 77eceeae-0d97-4394-8a42-df845f868d45 {"pid": "7216", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026168151"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:09.140291 2023-07-08 08:26:09.140302 88d294de-752b-4c09-b1a5-f7ee0d58d5dc {"pid": "7217", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026169859"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:09.261884 2023-07-08 08:26:09.261897 dab5a3b5-f7bf-4cba-8992-501af207e902 {"pid": "7218", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026174573"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:09.49027 2023-07-08 08:26:09.490334 3d531684-3a48-4510-9d8f-56f6c1a7df5e {"pid": "7220", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026432303"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:09.599508 2023-07-08 08:26:09.599522 d83475e7-e0be-4d5e-8525-05077ed5111c {"pid": "7221", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026434702"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:09.708738 2023-07-08 08:26:09.708751 770fe1a9-4340-4acc-9408-dff131e03900 {"pid": "7222", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026439717"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:09.828423 2023-07-08 08:26:09.828432 556ba24a-f7f7-46d4-9d88-8de0fb75e3ec {"pid": "7223", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026450966"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:09.931145 2023-07-08 08:26:09.931154 823408a0-1077-4f0f-828e-a790457be527 {"pid": "7224", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026459182"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:10.032671 2023-07-08 08:26:10.0327 45553fe3-796d-4c89-a850-24a5817430be {"pid": "7225", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026462220"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:10.139818 2023-07-08 08:26:10.139825 2be6004f-1b27-4df0-9d39-ee11a6badfe6 {"pid": "7226", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026466905"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:10.265615 2023-07-08 08:26:10.265628 9b5ae977-4ded-4e09-820b-facaa5383816 {"pid": "7227", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026474353"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:10.374517 2023-07-08 08:26:10.374525 fdee0b4a-1ed1-4d7a-9b66-db6c3d212d98 {"pid": "7228", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026534148"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:10.479915 2023-07-08 08:26:10.479925 645ec336-f4ed-4189-9ce7-b2dc32a96b62 {"pid": "7229", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026548298"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:10.602836 2023-07-08 08:26:10.602847 86276fb0-acbb-41cc-b336-74d8dbb48743 {"pid": "7230", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026554111"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:10.722272 2023-07-08 08:26:10.722279 b1183417-47ea-42fc-9c46-928d7ab5e899 {"pid": "7231", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026558985"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:10.82531 2023-07-08 08:26:10.825319 bf840fc0-1ca1-4a8c-829e-28d609b62a9b {"pid": "7232", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026586322"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:10.942245 2023-07-08 08:26:10.942253 683326a3-1c6a-446e-a75c-d5c999f96321 {"pid": "7233", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026596122"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:11.058904 2023-07-08 08:26:11.058916 a3923049-493b-4a1b-9b45-4a3ed70d37a5 {"pid": "7234", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026608425"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:11.164185 2023-07-08 08:26:11.164198 4432f178-27be-4aa8-97ec-183f0f330138 {"pid": "7235", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026614309"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:08.704446 2023-07-08 10:26:53.566722 712e66f2-35b0-431d-b5f1-faead0a6ca13 {"pid": "7213", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026155985"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1061155284807387060537"} 2 -2023-07-08 08:26:09.376317 2023-07-08 10:29:51.11598 2f144047-41af-4088-b57d-9c14d88ed9c5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1175036641"}, "pid": "7219", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026408718"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1102155284785887061387"} 3 -2023-07-08 08:26:11.27614 2023-07-08 08:26:11.276149 d2d2b420-5193-4210-96bb-2903687cc270 {"pid": "7236", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026614954"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:11.404137 2023-07-08 08:26:11.404146 0f18c65d-822e-40d4-af40-4ed6763ac4cb {"pid": "7237", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026623687"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:11.532316 2023-07-08 08:26:11.532329 831ac025-9fc9-482b-8c2b-870a6b59a4af {"pid": "7238", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026636855"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:11.641857 2023-07-08 08:26:11.641868 57d605ac-4c02-4c63-b298-ad16260bc0ee {"pid": "7239", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026642855"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:11.761694 2023-07-08 08:26:11.761702 c5f42ab9-6286-4d90-8400-881e7651fc9a {"pid": "7240", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026652068"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:11.882529 2023-07-08 08:26:11.88254 e65ccb92-4075-4f35-9b68-6e65c376aec0 {"pid": "7241", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026654612"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:12.008591 2023-07-08 08:26:12.008599 357af45b-06c1-452e-bb80-f9235b37928a {"pid": "7242", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026685590"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:12.117002 2023-07-08 08:26:12.117014 5981fcb9-b716-42d7-9cf7-3c83fcf7d992 {"pid": "7243", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026722774"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:12.257212 2023-07-08 08:26:12.257224 6845d58f-50b3-4d8b-a141-6ba7e743427e {"pid": "7244", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026723222"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:12.380809 2023-07-08 08:26:12.380822 3b206f87-63f3-48f8-8e2b-56833b1b7da9 {"pid": "7245", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026724664"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:12.485311 2023-07-08 08:26:12.48532 479a0a24-70ce-4f7b-b45c-09f1fcccb098 {"pid": "7246", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026736945"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:12.614167 2023-07-08 08:26:12.614182 da206540-909f-41cf-a0df-5ebf2cb439b2 {"pid": "7247", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026740856"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:12.721001 2023-07-08 08:26:12.721009 4c4dfec1-c70a-4ff7-b891-bfcf9df96c95 {"pid": "7248", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026741839"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:12.832086 2023-07-08 08:26:12.832098 ebe13c7d-78a1-4a61-9b5f-59a7aaca26d8 {"pid": "7249", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026748269"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:12.940749 2023-07-08 08:26:12.940758 d849bb68-8853-4729-b978-6b7c92df95a7 {"pid": "7250", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026774834"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:13.04796 2023-07-08 08:26:13.047974 54cf1c6b-405b-4805-915b-4b110ac23761 {"pid": "7251", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026783817"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:13.169923 2023-07-08 08:26:13.169932 63d171ab-6c39-42c2-b140-249087f8cf29 {"pid": "7252", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026785791"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:13.303346 2023-07-08 08:26:13.303364 6b90862e-0bae-4a64-b70f-a6232d131350 {"pid": "7253", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026813025"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:13.406008 2023-07-08 08:26:13.406023 c9e3c304-4612-4c25-95dc-07e0cfaeb52d {"pid": "7254", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026828697"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:13.533468 2023-07-08 08:26:13.533481 c71f538f-c5e4-4d80-9840-304a03388b2b {"pid": "7255", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026835388"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:13.673047 2023-07-08 08:26:13.673054 7b176c0f-8c99-4fd1-a2a4-1a95b8f7cedc {"pid": "7256", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026839306"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:13.807843 2023-07-08 08:26:13.807857 85a97169-74e6-4dd7-abdc-76f2a3f3307e {"pid": "7257", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026846628"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:13.933919 2023-07-08 08:26:13.93393 8a05df2b-19ae-4408-8b8c-32c939579ffb {"pid": "7258", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026847441"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:14.05216 2023-07-08 08:26:14.05217 0c4478ef-d2e9-4820-a1f7-35e563aab15f {"pid": "7259", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026864091"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:14.165735 2023-07-08 08:26:14.165748 4e546cfc-98f5-415a-a1c6-11208ffe8d75 {"pid": "7260", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026894353"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:14.279767 2023-07-08 08:26:14.27978 e0a78632-b029-4745-88d9-bc29c51b7803 {"pid": "7261", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026898077"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:14.391056 2023-07-08 08:26:14.391068 37356cf6-d037-4154-a556-57c43f441cd7 {"pid": "7262", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026907243"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:14.499877 2023-07-08 08:26:14.499881 73186298-ee65-4bc3-8ce0-769da15f5c1c {"pid": "7263", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026919795"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:14.605782 2023-07-08 08:26:14.605793 e57fdc96-edab-41b2-8b18-b896a131f652 {"pid": "7264", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026951773"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:14.722518 2023-07-08 08:26:14.722528 3d97427e-0bb1-410a-a2b7-f2ed27431628 {"pid": "7265", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026952894"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:14.818839 2023-07-08 08:26:14.818852 af6e7d5f-f887-43d7-8d5a-66615cd3c848 {"pid": "7266", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026958334"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:14.925976 2023-07-08 08:26:14.925991 aac7bdb4-9092-4a68-a77e-0059cf02c946 {"pid": "7267", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026964890"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:15.051083 2023-07-08 08:26:15.051092 43b6254f-b532-4fba-8893-1cfff827e50f {"pid": "7268", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026978679"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:15.284348 2023-07-08 08:26:15.284426 d7f7e3c1-9808-4808-a6ff-8b6cce6226ae {"pid": "7269", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027068066"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:15.401474 2023-07-08 08:26:15.401491 d2174f2f-731d-4e26-ac28-cbfe3e6c724a {"pid": "7270", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027089118"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:15.505105 2023-07-08 08:26:15.505116 30c5f9a0-041d-4373-9c2c-550f2cfbf2d8 {"pid": "7271", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027092266"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:15.595826 2023-07-08 08:26:15.595835 dcc204b1-69b3-43da-83fe-e98742bc2e25 {"pid": "7272", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027102482"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:15.678569 2023-07-08 08:26:15.678579 c1d1d33e-b27c-40a9-8ef5-eee646c74ab2 {"pid": "7273", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027103123"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:15.785095 2023-07-08 08:26:15.78511 841a738a-71b6-4681-8719-27d9891f2b2b {"pid": "7274", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027116952"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:15.900959 2023-07-08 08:26:15.900971 4382a7cd-e817-495b-ad36-718e784cfddf {"pid": "7275", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027118711"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:16.010564 2023-07-08 08:26:16.010577 71c41617-2119-40dc-9f1f-3722a14bd310 {"pid": "7276", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027119572"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:16.132784 2023-07-08 08:26:16.132801 34ec60ef-b41b-4638-a288-98d27d0c0092 {"pid": "7277", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027138153"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:16.255 2023-07-08 08:26:16.255014 9e87e087-1572-4a95-ad52-38b1a8e905dc {"pid": "7278", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027139051"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:16.363988 2023-07-08 08:26:16.364 1f1e5ada-0129-402e-becd-b1057744e275 {"pid": "7279", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027149145"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:16.463848 2023-07-08 08:26:16.463861 cbc5d756-8623-456c-a643-c4e58cadf79a {"pid": "7280", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027149446"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:16.573792 2023-07-08 08:26:16.573805 e1315d55-ba23-4aa4-a19b-79d1a2c5e777 {"pid": "7281", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027157860"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:16.698013 2023-07-08 08:26:16.69802 5b6185a4-b5e3-436c-8f7f-c7ca6c6436df {"pid": "7282", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027180250"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:16.812134 2023-07-08 08:26:16.812148 00586f84-b179-41de-85ea-c1042b79f6d9 {"pid": "7283", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027184035"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:17.164715 2023-07-08 08:26:17.164728 34c6595b-b5c7-4501-b027-b8fbee5bb4af {"pid": "7285", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027201602"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:17.288234 2023-07-08 08:26:17.288241 944d5f61-0bd7-4f73-acab-08509b6a4aae {"pid": "7286", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027205240"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:17.398283 2023-07-08 08:26:17.398297 1ddc85ec-6c12-42b0-9b38-389543793541 {"pid": "7287", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027205480"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:17.513277 2023-07-08 08:26:17.51329 fd253b51-00e2-4263-b61d-6a74793bab2f {"pid": "7288", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027220118"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:17.620671 2023-07-08 08:26:17.620679 59ed6cf0-cafd-4470-94ab-80374bedfb69 {"pid": "7289", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027221608"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:17.735561 2023-07-08 08:26:17.735569 a747669e-291d-4a79-a572-730db5266dcb {"pid": "7290", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027237908"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:17.847986 2023-07-08 08:26:17.847999 fe6c0a70-af7d-4fa2-92fd-ff01649e1310 {"pid": "7291", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027289406"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:17.966521 2023-07-08 08:26:17.966535 8e683336-33cc-48bc-af46-17693783fc3a {"pid": "7292", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027297912"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:18.075458 2023-07-08 08:26:18.075472 5413ecfb-30ef-4ad5-a4b1-9721037c446b {"pid": "7293", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027302854"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:18.194132 2023-07-08 08:26:18.194142 ea7289c6-5bcd-42f8-b40a-faf72cf782f8 {"pid": "7294", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027307709"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:18.303113 2023-07-08 08:26:18.303125 5ff9163f-352f-46de-aae0-37532b429918 {"pid": "7295", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027316896"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:18.411551 2023-07-08 08:26:18.411562 f13c645f-ae21-43a6-9b57-18b3aa9cdedb {"pid": "7296", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027333148"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:18.502393 2023-07-08 08:26:18.502402 6e31013d-287c-406c-9a90-cc3d651a72ec {"pid": "7297", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027339987"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:18.598284 2023-07-08 08:26:18.598297 6d90608a-348c-4649-a472-8648500188cf {"pid": "7298", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027342850"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:18.700961 2023-07-08 08:26:18.700977 e3fb8669-8887-43a9-bf55-b4abaaefdbba {"pid": "7299", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027355955"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:18.81569 2023-07-08 08:26:18.815704 ef3a6e58-926b-4e72-bae4-540e30d93fed {"pid": "7300", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027394831"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:18.93098 2023-07-08 08:26:18.930991 ddd0c709-1569-4096-bf63-9e735479dc85 {"pid": "7301", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027401068"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:19.0413 2023-07-08 08:26:19.041313 456dfa9e-6200-461a-9739-db964a87e7b3 {"pid": "7302", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027420393"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:19.15436 2023-07-08 08:26:19.154373 c08beb6f-b2e8-4ab7-9277-91804d8654a4 {"pid": "7303", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027429159"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:19.265757 2023-07-08 08:26:19.265769 fa5ee531-7247-42a9-aced-6564f50c8a7d {"pid": "7304", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027433246"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:19.372261 2023-07-08 08:26:19.372274 dc10f8a7-7244-4ad3-a9dc-8f0db687516a {"pid": "7305", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027441359"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:19.492259 2023-07-08 08:26:19.49227 004f771e-8f2a-4ec0-b489-c40fbb685a20 {"pid": "7306", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027443542"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:19.613651 2023-07-08 08:26:19.61366 09da0fae-8a59-4c1b-8cb0-580f3fb616f9 {"pid": "7307", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027444942"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:19.726091 2023-07-08 08:26:19.726099 37987cd4-69bf-4073-96eb-589ac56cf9dd {"pid": "7308", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027445987"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:19.848236 2023-07-08 08:26:19.848252 ab460e88-a0e7-48ce-95e6-c39f4acb1b94 {"pid": "7309", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027448978"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:20.102513 2023-07-08 08:26:20.102526 7acce601-e866-4133-8a5e-ce48ff77e67e {"pid": "7310", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027457648"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:20.2133 2023-07-08 08:26:20.213314 14552c18-e6d6-4ade-bbcf-adf5d35ac6b5 {"pid": "7311", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027468424"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:20.323309 2023-07-08 08:26:20.323323 4a014844-1c96-41e1-ad80-b13aab372ccd {"pid": "7312", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027470672"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:20.441107 2023-07-08 08:26:20.441119 6e172a66-0389-4771-ab25-70288df9c189 {"pid": "7313", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027477458"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:20.557758 2023-07-08 08:26:20.557766 036a3eae-661d-4ab4-af27-32f584a3e60d {"pid": "7314", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027477867"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:20.665269 2023-07-08 08:26:20.665277 efa32960-26f2-49a0-bced-17e9f9e8f41e {"pid": "7315", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027483344"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:20.78074 2023-07-08 08:26:20.780754 73833d8b-1eec-4684-98ae-118af1500e4f {"pid": "7316", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027488596"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:20.906843 2023-07-08 08:26:20.906855 5a34b01d-0bc6-4175-b19c-5c789b69d2a7 {"pid": "7317", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027490804"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:21.045932 2023-07-08 08:26:21.045943 907024cd-141f-4cf2-9b4e-4fc693e140af {"pid": "7318", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027498782"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:21.154621 2023-07-08 08:26:21.15463 3d3d62d7-a5d2-48e6-b357-d4afef50cfad {"pid": "7319", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027507344"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:21.267442 2023-07-08 08:26:21.267451 d78d00e1-f763-4a83-a540-4b9cdbf496df {"pid": "7320", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027508686"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:21.381545 2023-07-08 08:26:21.381559 d150b754-129f-4c0f-a0bd-fe64684bd373 {"pid": "7321", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027518436"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:21.494864 2023-07-08 08:26:21.494878 ba9b066a-1620-41d3-b608-a899c52301c9 {"pid": "7322", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027523029"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:21.611007 2023-07-08 08:26:21.611024 824bdbeb-123d-4236-957d-5eb11dedbac6 {"pid": "7323", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027523482"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:21.734508 2023-07-08 08:26:21.734525 3a869124-0d41-4c55-bde1-57a9cbe127a2 {"pid": "7324", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027543659"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:21.860754 2023-07-08 08:26:21.860767 719b5fb3-6745-42d1-bfb9-57d7226cd565 {"pid": "7325", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027544307"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:21.98845 2023-07-08 08:26:21.988463 14a51342-7191-4a06-9b28-36453603be80 {"pid": "7326", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027545859"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:22.107768 2023-07-08 08:26:22.107777 fc47b030-2baf-4f64-8d4a-4c6d3171c02a {"pid": "7327", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027565229"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:22.219838 2023-07-08 08:26:22.219851 1d99b61c-dc9b-440d-932c-988dd73a8438 {"pid": "7328", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027568451"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:20:40.984888 2023-07-08 10:25:48.020217 cff4d76b-69bf-41b0-b79e-847a33d5bebe {"pid": "4208", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027449905"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/127334807"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103247657"} 4 -2023-07-08 08:26:22.458782 2023-07-08 08:26:22.458792 bb50ecfc-7a56-4033-8703-42af04816856 {"pid": "7330", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027587471"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:22.569403 2023-07-08 08:26:22.569411 784f7fdd-62e5-4331-b9e0-9301479b79f4 {"pid": "7331", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027588056"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:22.681791 2023-07-08 08:26:22.681805 b8070a70-cb9b-40bc-acaf-31a364cbfae4 {"pid": "7332", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027604812"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:22.797452 2023-07-08 08:26:22.797465 1af80fa5-f807-4b8d-8d99-c50904ff29be {"pid": "7333", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027608462"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:22.938402 2023-07-08 08:26:22.938412 1971eb7c-8d29-4390-a4d7-29ac62bc9e15 {"pid": "7334", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027643343"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:23.165066 2023-07-08 08:26:23.16508 ea47c88f-8531-4e35-84a0-51d72207b59a {"pid": "7335", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027649761"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:23.275898 2023-07-08 08:26:23.275909 d5e3c49c-2938-424f-b703-26021a2d7ff1 {"pid": "7336", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027652944"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:23.370725 2023-07-08 08:26:23.370737 13357ed9-587f-45a6-97b8-fbaa25aab9c8 {"pid": "7337", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027653000"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:23.474244 2023-07-08 08:26:23.474256 32c6cf4c-cde6-4e55-be48-282694bf8209 {"pid": "7338", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027655212"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:23.58478 2023-07-08 08:26:23.584794 f0a5aa71-a50f-4ce4-bccb-415d3ac11ea5 {"pid": "7339", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027661275"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:23.692691 2023-07-08 08:26:23.692705 309ef0b0-1ea6-4de8-bb84-e2f853cf3849 {"pid": "7340", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027664950"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:23.805749 2023-07-08 08:26:23.805761 f3ec5b02-2c43-4add-b641-1ef0ae5ffd7a {"pid": "7341", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027667116"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:23.91279 2023-07-08 08:26:23.912806 c2e4ec09-e030-429f-b725-900fc7e5723a {"pid": "7342", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027688556"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:24.125664 2023-07-08 08:26:24.125679 fba6d9ba-cc7f-4791-b1b4-37740300f51c {"pid": "7343", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027716766"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:24.251527 2023-07-08 08:26:24.251535 8aa8cb16-d629-4ab2-a483-7ccd13e0333e {"pid": "7344", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027736928"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:24.357113 2023-07-08 08:26:24.357124 6ef6c9c1-5550-4c09-9abf-7161f1b32212 {"pid": "7345", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027737227"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:24.462376 2023-07-08 08:26:24.462389 40ee407b-3bac-498c-959c-d78ea8d67b7f {"pid": "7346", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027737968"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:24.80389 2023-07-08 08:26:24.803902 6b8d0e99-3791-4bbf-b1a3-803d27dab5d6 {"pid": "7347", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027763919"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:24.917544 2023-07-08 08:26:24.917557 64c578a6-618c-49f7-bd36-82c4dd736784 {"pid": "7348", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027766736"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:25.029876 2023-07-08 08:26:25.02989 babb19ca-e6e7-4793-96ff-fc22a90c65c6 {"pid": "7349", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027807323"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:25.139142 2023-07-08 08:26:25.139149 a260cf10-b553-48f8-9733-66df08130fee {"pid": "7350", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027811966"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:25.25776 2023-07-08 08:26:25.257771 52f6fc63-fee5-4d9a-8e76-cecc25604aa8 {"pid": "7351", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027817940"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:25.357826 2023-07-08 08:26:25.357838 a595801e-a43b-4842-a37d-85c9efc8f77c {"pid": "7352", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027841998"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:25.464633 2023-07-08 08:26:25.464649 8152673e-4f73-477f-9323-e5584116cd4f {"pid": "7353", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A028081955"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:25.581579 2023-07-08 08:26:25.58159 55234ee7-c9f0-433a-a4f7-14fcc229d1cc {"pid": "7354", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A028167226"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:25.69756 2023-07-08 08:26:25.697573 504b5150-43da-41d7-9c61-d79b873da915 {"pid": "7355", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A028177834"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:25.806008 2023-07-08 08:26:25.806016 7494546b-f901-48fc-8b2e-603e03473815 {"pid": "7356", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A028331435"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:25.91763 2023-07-08 08:26:25.917646 d75939d0-9ce7-4949-902d-e376688ea868 {"pid": "7357", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A028347593"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:15:57.84496 2023-07-08 10:30:14.275412 606b091b-77b1-4bdb-80dc-8cc2686d6a54 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1164710923"}, "pid": "1469", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027747343"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1109155284791687061613"} 4 -2023-07-08 08:21:37.540819 2023-07-08 10:31:13.277987 d69d61bd-09c0-4ba0-bedd-04477a577cf4 {"pid": "4773", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027644407"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/19107425X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1120145857084022921227"} 4 -2023-07-08 08:26:26.028531 2023-07-08 08:26:26.028544 93d7d6dd-dff4-4b74-8ae1-a2739dc11e1b {"pid": "7358", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A028355646"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:26.156968 2023-07-08 08:26:26.15698 a9e201b2-e6be-4496-9021-484df99b24f6 {"pid": "7359", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A028357568"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:26.266417 2023-07-08 08:26:26.26643 b4ebf5b5-8ed9-4e40-a060-b3035ba6ee73 {"pid": "7360", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A028447819"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:26.363952 2023-07-08 08:26:26.363965 daa0622c-02b5-494a-9737-fc61676fe7f0 {"pid": "7361", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A028520087"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:26.845204 2023-07-08 08:26:26.845218 65643b86-c2c8-4fa5-a0f6-e823262506d4 {"pid": "7363", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A028868962"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:27.092844 2023-07-08 08:26:27.092852 4a04bd0f-2a67-4d7f-b107-b7236d4018d2 {"pid": "7364", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A028989262"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:27.208159 2023-07-08 08:26:27.208173 4dc5e8fb-b861-470f-b646-668384fbef23 {"pid": "7365", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A029002736"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 08:26:27.326279 2023-07-08 08:26:27.326288 d7dceb13-8b70-4634-8da3-68a5d570e702 {"pid": "7366", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A029004750"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 -2023-07-08 10:21:54.924276 2023-07-08 10:23:45.939876 ce017c2a-b679-48f7-a88d-148b7f6e014b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086281020"}, "pid": "7565", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1003145856878722920218"} 2 -2023-07-08 10:21:55.358089 2023-07-08 10:23:50.06521 43c69b6e-9e1c-463b-9021-0488989de7bc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/136380638"}, "pid": "7566", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100394433"} 2 -2023-07-08 10:21:55.758463 2023-07-08 10:23:50.532751 bfe73f17-3ec4-4917-96a5-26041b3db1f0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139094342"}, "pid": "7567", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100403360"} 2 -2023-07-08 10:21:56.30948 2023-07-08 10:23:52.517675 79c0c0c5-c412-4d20-91fd-36e60b07ace5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139173544"}, "pid": "7568", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100472797"} 2 -2023-07-08 10:21:56.739889 2023-07-08 10:23:53.017833 197b59b1-7712-4294-a166-6ee40f4da7d0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139204105"}, "pid": "7569", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100499626"} 2 -2023-07-08 10:21:57.209795 2023-07-08 10:23:58.370349 a01ae0da-82d6-4c02-b9bb-dbd425076f3f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1233743082"}, "pid": "7570", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1006162181274408290003"} 2 -2023-07-08 10:21:57.599565 2023-07-08 10:24:01.460934 2d6c24b8-71fb-48c4-8469-07e286bda4b9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089511663"}, "pid": "7571", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100669807"} 2 -2023-07-08 10:21:58.098155 2023-07-08 10:24:02.453332 3ccb71ba-ad89-43a0-a49c-faa696235283 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158249543"}, "pid": "7572", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1007152636063420051252"} 2 -2023-07-08 10:21:58.485504 2023-07-08 10:24:07.187902 e74b78f1-1230-4bd1-84d5-b249d1a272bb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/137858825"}, "pid": "7573", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100905048"} 2 -2023-07-08 10:21:58.859664 2023-07-08 10:24:14.728181 7afcf0c8-4b5a-4e38-8e9d-a199afa3a657 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134550412"}, "pid": "7574", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101057733"} 2 -2023-07-08 10:21:59.273975 2023-07-08 10:24:15.204226 c774b825-eb24-43ea-9c12-a712e54f9206 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134619102"}, "pid": "7575", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101069316"} 2 -2023-07-08 10:21:59.695916 2023-07-08 10:24:16.578242 66e1ce58-cd17-45c4-9d39-5aaa58c51648 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134563166"}, "pid": "7576", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101079612"} 2 -2023-07-08 10:22:00.099336 2023-07-08 10:24:18.054385 c3c9c542-8195-4348-8714-574cbfe62dd0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/130556939"}, "pid": "7577", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101092482"} 2 -2023-07-08 10:22:00.475225 2023-07-08 10:24:18.944729 a350cab0-331b-4373-a47b-3198f8ff457a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139376119"}, "pid": "7578", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101123568"} 2 -2023-07-08 10:22:00.890257 2023-07-08 10:24:19.407784 58726096-a935-4822-a428-2a76555e0c7b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/13938233X"}, "pid": "7579", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101128969"} 2 -2023-07-08 10:22:01.318064 2023-07-08 10:24:20.31935 3ad09241-48e9-4576-94a6-c3df760207b6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1098168984"}, "pid": "7580", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101146216689909092054"} 2 -2023-07-08 08:15:09.530575 2023-07-08 10:25:09.866465 b907fb43-2fef-494a-b350-d9cbb2273a5d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1085836894"}, "pid": "955", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A028986344"}, "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251123022"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1022145857003022921052"} 6 -2023-07-08 08:15:01.175337 2023-07-08 10:25:57.026509 a7ff003b-7691-450e-9dd5-afb2ca0e4f50 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/106068375X"}, "pid": "857", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A028751062"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/170457257"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103482980"} 6 -2023-07-08 08:26:26.478338 2023-07-08 10:26:20.287332 0ecb96fa-911c-4e1e-a837-13a8289463fb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1220237183"}, "pid": "7362", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A028529691"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104160425256468320004"} 3 -2023-07-08 10:22:02.023301 2023-07-08 10:24:26.535311 0832f6e3-42a6-4087-a808-32294518ad86 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139480056"}, "pid": "7582", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101214945"} 2 -2023-07-08 10:22:02.44655 2023-07-08 10:24:30.925071 b586beec-9679-4e90-9ab5-08fb44616d4c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139621156"}, "pid": "7583", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101341511"} 2 -2023-07-08 10:22:02.931469 2023-07-08 10:24:31.378453 6ac81119-bde6-46e9-bd52-48a9a8755390 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139621652"}, "pid": "7584", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101341962"} 2 -2023-07-08 10:22:03.733896 2023-07-08 10:24:37.471818 a1ede734-6a03-44d8-9b28-2275905429a2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1104279754"}, "pid": "7586", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101416806"} 2 -2023-07-08 10:22:04.505922 2023-07-08 10:24:42.508906 265ebe71-2758-492d-b01c-fd4ebf6fc350 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1140075810"}, "pid": "7587", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10150644935210621186"} 2 -2023-07-08 10:22:04.862657 2023-07-08 10:24:42.990106 e9aa3ea2-ccf3-46d7-aa35-edb210e9aece {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1140557696"}, "pid": "7588", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10150686389512540452"} 2 -2023-07-08 10:22:05.362919 2023-07-08 10:24:43.514355 9743b5e3-df78-4039-998c-ba720f8b4e99 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1117731855"}, "pid": "7589", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10150807246218860103"} 2 -2023-07-08 10:22:05.749132 2023-07-08 10:24:44.560803 7ae80c2f-e904-4e9b-af2c-701044832456 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1148667989"}, "pid": "7590", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10151352032852602768"} 2 -2023-07-08 10:22:06.401459 2023-07-08 10:24:49.544272 724e3083-3a55-4a78-8cf1-c678c72631db {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1248272013"}, "pid": "7591", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10164114985410052511"} 2 -2023-07-08 10:22:06.797176 2023-07-08 10:24:50.501578 cddf66aa-6dba-4609-918f-ad4e65f0c372 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1251903606"}, "pid": "7592", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10164536122732020549"} 2 -2023-07-08 10:22:07.187461 2023-07-08 10:24:50.99703 8ec839ec-54f4-4652-b911-14a14fe66d33 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1253266913"}, "pid": "7593", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10164717561802090218"} 2 -2023-07-08 10:22:07.580312 2023-07-08 10:24:52.311823 f1883533-3577-4227-be78-7b2e622b8489 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1255052740"}, "pid": "7594", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10164959841424022160"} 2 -2023-07-08 10:22:07.96076 2023-07-08 10:24:53.850031 9313543b-e8a8-4fae-9c7f-89af095b737b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1268485969"}, "pid": "7595", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10166411369502481311"} 2 -2023-07-08 10:22:08.391269 2023-07-08 10:24:55.303581 c4dce2d2-692e-4511-90de-df15d2adbab8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1032305649"}, "pid": "7596", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101670840"} 2 -2023-07-08 10:22:08.742576 2023-07-08 10:25:02.319189 a3d57739-d198-429d-9aee-38258eac7e56 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1227063229"}, "pid": "7597", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101989153"} 2 -2023-07-08 10:22:09.117334 2023-07-08 10:25:03.422563 6469154a-99b5-4e6c-9e66-21f292904e30 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/109123471X"}, "pid": "7598", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1020145857884923020408"} 2 -2023-07-08 10:22:09.596501 2023-07-08 10:25:05.652386 2ede90f8-ecef-4bed-8f29-d205070d2cac {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1079732772"}, "pid": "7599", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102145003783861341145"} 2 -2023-07-08 10:22:10.025246 2023-07-08 10:25:08.143162 cad29c9d-63db-446c-a266-3a3ebea0af70 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1169953743"}, "pid": "7600", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102154075974911860005"} 2 -2023-07-08 10:22:10.44779 2023-07-08 10:25:11.941336 d59aaf6d-38d3-451d-b41e-8fdcb038c66d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/12864852X"}, "pid": "7601", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102295222"} 2 -2023-07-08 10:22:10.826027 2023-07-08 10:25:12.436129 b140bac4-458a-4886-8a04-5df1e975ef81 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1162523271"}, "pid": "7602", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1023153184539027100002"} 2 -2023-07-08 10:22:11.181997 2023-07-08 10:25:17.273889 dfbe21af-c469-4c76-a63a-3b8fee3629ba {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158577125"}, "pid": "7603", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1024152636074320051555"} 2 -2023-07-08 10:22:11.5848 2023-07-08 10:25:17.717597 0cd197f7-0656-4d08-8a1a-5f8bb49fd6a2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/11947428X"}, "pid": "7604", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102444910"} 2 -2023-07-08 10:22:12.031327 2023-07-08 10:25:21.112112 0aa2fccf-c5c2-4f9a-b4ee-fd4a664c804c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139668136"}, "pid": "7605", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102529187"} 2 -2023-07-08 10:22:12.421489 2023-07-08 10:25:22.039023 14280146-9ef5-4f72-98d4-8eff3a6f1537 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139705104"}, "pid": "7606", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102561587"} 2 -2023-07-08 10:22:12.871121 2023-07-08 10:25:23.142191 c9bf6223-6bcb-4f88-89c4-d24392cc6272 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139708669"}, "pid": "7607", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102564755"} 2 -2023-07-08 10:22:13.261026 2023-07-08 10:25:24.438563 683e6d0b-0d68-452d-a6ea-90967a4d19eb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139717676"}, "pid": "7608", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102572774"} 2 -2023-07-08 10:22:13.658762 2023-07-08 10:25:24.949572 3b7d5df5-cd78-4516-aa21-dcb6c89ebffb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/13976674X"}, "pid": "7609", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102616054"} 2 -2023-07-08 10:22:14.473559 2023-07-08 10:25:29.327647 7558bbd0-47bb-4093-bd89-1fada361a4c8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139863915"}, "pid": "7611", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102702030"} 2 -2023-07-08 10:22:14.88207 2023-07-08 10:25:30.192784 e4473da4-6636-4c54-8bdd-c6a83946a41c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139875484"}, "pid": "7612", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102712282"} 2 -2023-07-08 10:22:15.292619 2023-07-08 10:25:30.684044 68eb9f6f-3122-4fa0-9f28-c063a0cf7024 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/111476518X"}, "pid": "7613", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1027147553252953800006"} 2 -2023-07-08 10:22:15.744149 2023-07-08 10:25:31.44918 213ac5e6-940a-4a33-bbaf-eb542e08b542 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139894535"}, "pid": "7614", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102728870"} 2 -2023-07-08 10:22:16.151386 2023-07-08 10:25:33.21947 c1a41412-537f-4427-b3cf-5344329579cd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/117125184X"}, "pid": "7615", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1028154260549524480007"} 2 -2023-07-08 10:22:16.895717 2023-07-08 10:25:40.160602 2e725b76-df00-4835-8688-b080cff89401 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1077608101"}, "pid": "7616", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103144782702419106766"} 2 -2023-07-08 10:22:17.66617 2023-07-08 10:25:47.186136 47884430-ce69-46ec-94d6-8ba979feaf9b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1046083678"}, "pid": "7618", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103242300"} 2 -2023-07-08 10:22:18.064751 2023-07-08 10:25:48.905075 ba2ea293-e0ea-4166-96c2-d1692d978d7d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139946144"}, "pid": "7619", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103269987"} 2 -2023-07-08 10:22:18.466044 2023-07-08 10:25:51.265077 3c8c321f-e938-432c-a864-d8a786e76bcf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1091238898"}, "pid": "7620", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1033145856888922920449"} 2 -2023-07-08 10:22:19.032391 2023-07-08 10:25:51.636539 4fb2e383-b471-4663-9937-9ba7b64026f3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1091786100"}, "pid": "7621", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1033145857091722922084"} 2 -2023-07-08 10:22:19.522006 2023-07-08 10:25:52.578855 d76a5bf0-8975-433d-b49e-4be17028b796 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/14010657X"}, "pid": "7622", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103410655"} 2 -2023-07-08 10:22:19.879762 2023-07-08 10:25:54.824999 2c87d018-f691-4a57-b5ee-5715c884202a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140142622"}, "pid": "7623", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103442335"} 2 -2023-07-08 10:22:20.253561 2023-07-08 10:25:58.871846 19f0195e-5a7a-42aa-b5ea-c8d519b3cbab {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1027019781"}, "pid": "7624", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103528042"} 2 -2023-07-08 10:22:20.664178 2023-07-08 10:26:00.102667 0f763532-af1a-4540-805d-2a3a214f10fa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/170594211"}, "pid": "7625", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103613902"} 2 -2023-07-08 10:22:21.05833 2023-07-08 10:26:03.689579 4bd5b4eb-2a71-49c0-a20d-ac7cca776a73 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/14016815X"}, "pid": "7626", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103715152"} 2 -2023-07-08 10:22:21.451627 2023-07-08 10:26:04.605284 d01d5d90-614a-4313-ac8b-2ff3c8a9d248 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1221985515"}, "pid": "7627", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1038160667532003560009"} 2 -2023-07-08 10:22:21.82089 2023-07-08 10:26:09.885274 c35247c7-147f-489d-a4cc-618d8777e824 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1092457992"}, "pid": "7628", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1039145857081622921854"} 2 -2023-07-08 10:22:22.237587 2023-07-08 10:26:13.764491 74826c49-0f67-4690-82cb-4ef64470c2a2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087327822"}, "pid": "7629", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1040145857028422921154"} 2 -2023-07-08 10:22:23.022499 2023-07-08 10:26:20.77442 2c33d2f4-49c3-4828-824c-f5f836204553 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124396488X"}, "pid": "7630", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104163510363710932020"} 2 -2023-07-08 10:22:23.322052 2023-07-08 10:26:21.87811 afba89ef-00ce-48e3-b8df-c1bc269da1cd {"pid": "7631", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/153776951"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104198453"} 2 -2023-07-08 10:22:23.739078 2023-07-08 10:26:22.782458 b70ae52e-bc30-4b1c-9148-ec843b0fd594 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1044044519"}, "pid": "7632", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104242002"} 2 -2023-07-08 10:22:24.09914 2023-07-08 10:26:25.237286 b19a4101-5e68-40ac-845b-bff6d34d5625 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173047165"}, "pid": "7633", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104470395"} 2 -2023-07-08 10:22:24.475564 2023-07-08 10:26:30.106436 7f37eb3d-1449-43c5-b0fd-ad2aa6729b0e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/127857214"}, "pid": "7634", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1047229"} 2 -2023-07-08 10:22:25.025335 2023-07-08 10:26:42.106101 417e0542-0a32-4205-8f88-dc71a169543f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158376529"}, "pid": "7635", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1052152636061020050109"} 2 -2023-07-08 10:22:25.480432 2023-07-08 10:26:46.85116 3f1fe5e8-b50e-4c27-aa2d-b5e6566aa352 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1085824861"}, "pid": "7636", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1059145856858322920064"} 2 -2023-07-08 10:22:25.919726 2023-07-08 10:26:47.41452 ae645547-7dd3-487f-a9d3-8aef4d1d3cd9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116348747"}, "pid": "7637", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10594912"} 2 -2023-07-08 10:22:26.505289 2023-07-08 10:26:47.807927 e62288f4-a777-4d43-b796-c2df75fd3f17 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116361816"}, "pid": "7638", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10595308"} 2 -2023-07-08 10:22:27.389087 2023-07-08 10:26:52.070785 377842a1-f540-4dd9-9444-b5d6fc4cf54b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134781821"}, "pid": "7640", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106045683"} 2 -2023-07-08 10:22:27.838436 2023-07-08 10:26:54.461968 284751ac-8138-4ac8-add6-31e431da1a06 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/127465680X"}, "pid": "7641", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1061167082533458570003"} 2 -2023-07-08 10:22:28.331382 2023-07-08 10:27:02.63741 94cd489a-8c7e-46e3-99a6-c62b98c5db4d {"pid": "7642", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/26428058X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106166596754917591289"} 2 -2023-07-08 10:22:28.65768 2023-07-08 10:27:02.974735 4a1b3f7c-41da-4cdd-97f8-e5c31e9c8e5f {"pid": "7643", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/265219493"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106166835916835942662"} 2 -2023-07-08 10:22:29.141083 2023-07-08 10:27:03.495282 d2ba36f6-d54c-4015-9de9-6b156ad791ee {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/117186430"}, "pid": "7644", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10616764"} 2 -2023-07-08 10:22:29.793931 2023-07-08 10:27:09.343899 0b07dbe1-c344-44d2-af21-37f87be7e9e3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089477015"}, "pid": "7645", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106391319"} 2 -2023-07-08 10:22:30.197182 2023-07-08 10:27:11.914875 d9e83a6c-29ef-4000-85b4-b20cda71f0bc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/128438185"}, "pid": "7646", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1064653"} 2 -2023-07-08 10:22:30.608946 2023-07-08 10:27:13.213403 faef1fb0-3cac-4c10-bf2f-ec1d0d47a96e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087157226"}, "pid": "7647", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1065145857021422921149"} 2 -2023-07-08 10:22:31.012305 2023-07-08 10:27:13.657732 3ae3759c-2f24-4474-a863-1f9a455489d6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1085806677"}, "pid": "7648", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1065145858112123022189"} 2 -2023-07-08 10:22:31.38638 2023-07-08 10:27:15.715573 31096575-057d-4f40-bea0-c755752c6b3d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/126811846X"}, "pid": "7649", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106647207"} 2 -2023-07-08 10:22:31.847255 2023-07-08 10:27:19.170866 6aa97782-8744-4e2d-b390-ecc59a85e4da {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1207474568"}, "pid": "7650", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106842336"} 2 -2023-07-08 10:22:32.48825 2023-07-08 10:27:27.738298 209888d6-28e7-47ea-a0f4-75ddee73a460 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/121808173"}, "pid": "7651", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10711650"} 2 -2023-07-08 10:22:33.136795 2023-07-08 10:27:29.978499 bece0ea2-1fcc-42f5-afb7-1e092c2e833e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1095794957"}, "pid": "7652", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107146029458435821256"} 2 -2023-07-08 10:22:33.753694 2023-07-08 10:27:37.141551 d7fa61de-4be5-4da3-b5ab-b3f52c9397ad {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140469923"}, "pid": "7653", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107165065"} 2 -2023-07-08 10:22:34.220851 2023-07-08 10:27:37.658042 fc568d6c-9efd-478d-ba6a-afc8b95ff35b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140489096"}, "pid": "7654", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107181878"} 2 -2023-07-08 10:22:34.673732 2023-07-08 10:27:38.546838 b2991d28-a4da-4d06-ad93-0d827affd500 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140500634"}, "pid": "7655", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107191679"} 2 -2023-07-08 10:22:35.043347 2023-07-08 10:27:39.847601 56f0df03-cb52-447f-b690-e129dcd1bdbe {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140543503"}, "pid": "7656", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107228821"} 2 -2023-07-08 10:22:35.602884 2023-07-08 10:27:40.910391 e3ef949b-7214-44b1-9c3b-e74d858f921c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/14055260X"}, "pid": "7657", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107236840"} 2 -2023-07-08 10:22:36.013281 2023-07-08 10:27:42.288316 9af7e895-ecf5-43cf-bb98-9f74a0ecb3b2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140564306"}, "pid": "7658", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107247037"} 2 -2023-07-08 10:22:36.516087 2023-07-08 10:27:42.80748 28d1ec0c-be5f-4640-a324-50891c778961 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140580204"}, "pid": "7659", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107260726"} 2 -2023-07-08 10:22:36.871875 2023-07-08 10:27:43.277347 25ccd559-6573-4850-b0a0-d0e2b09ca812 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140623388"}, "pid": "7660", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107297807"} 2 -2023-07-08 10:22:37.545133 2023-07-08 10:27:47.54176 fa40c860-773d-45db-808e-cd0b918b7b4a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1245874098"}, "pid": "7661", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10743286"} 2 -2023-07-08 10:22:37.966679 2023-07-08 10:27:48.865845 c31a19e9-6c9e-4c77-8bc7-57b5057a4315 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/12307374X"}, "pid": "7662", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10744221"} 2 -2023-07-08 10:22:38.398866 2023-07-08 10:27:49.362651 c988281e-faee-449d-8df4-94ae96aacf80 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140330720"}, "pid": "7663", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107443101"} 2 -2023-07-08 10:22:38.758032 2023-07-08 10:27:51.56325 72f971fd-63f0-4127-924f-f13ebfc0d556 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/123571693"}, "pid": "7664", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10757597"} 2 -2023-07-08 10:22:39.311825 2023-07-08 10:27:55.241468 9064bcef-be8a-4851-9f87-1178b3a8da97 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140671153"}, "pid": "7665", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107674420"} 2 -2023-07-08 10:22:39.899135 2023-07-08 10:27:57.651239 215630b9-9310-468e-b90b-cc805d3aba52 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140749195"}, "pid": "7666", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107741641"} 2 -2023-07-08 10:22:40.295123 2023-07-08 10:27:58.069701 2736119e-d44e-4574-9099-56cd080116d5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140751149"}, "pid": "7667", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107743379"} 2 -2023-07-08 10:22:41.088121 2023-07-08 10:28:01.135817 b8165c10-cbe8-44ad-a53f-d36b4339de7d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140808337"}, "pid": "7669", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107792483"} 2 -2023-07-08 10:22:41.459266 2023-07-08 10:28:06.39294 4bf61f0a-e1ca-46cc-bbb8-3a6eacfc822e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140930531"}, "pid": "7670", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107897676"} 2 -2023-07-08 10:22:41.855877 2023-07-08 10:28:07.069008 2f61e29c-7553-45fe-9cd6-be74493b530c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1184634262"}, "pid": "7671", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1079155648119118330000"} 2 -2023-07-08 10:22:42.249793 2023-07-08 10:28:08.179431 3d49b399-7206-4628-93d1-e8bbe74c06df {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1278368817"}, "pid": "7672", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107933701"} 2 -2023-07-08 10:22:42.60103 2023-07-08 10:28:10.800674 c1a66080-ea89-443a-a7b4-4fb0cf4fbe08 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/104999227X"}, "pid": "7673", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107964941"} 2 -2023-07-08 10:22:42.99072 2023-07-08 10:28:12.338961 5d4387b1-2d49-4ec5-9347-50907136822a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141801689"}, "pid": "7674", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107978801"} 2 -2023-07-08 10:22:43.340431 2023-07-08 10:28:16.30549 25fd44b6-edc9-4a24-bcce-1722c50bdde0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1218187433"}, "pid": "7675", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1081160122836940630004"} 2 -2023-07-08 10:22:43.945563 2023-07-08 10:28:18.513943 6ea2b68f-dd73-42d3-969f-ae0d21d6e3f9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/125666632"}, "pid": "7676", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10814566"} 2 -2023-07-08 10:22:44.76953 2023-07-08 10:28:35.673828 8201cdd8-99be-424d-860f-813a1b139041 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/12688790X"}, "pid": "7677", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10851592"} 2 -2023-07-08 10:22:45.135993 2023-07-08 10:28:37.553423 84c63153-dc50-4783-844a-d7f7acf8c529 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1197826912"}, "pid": "7678", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1086157226613585410002"} 2 -2023-07-08 10:22:45.563232 2023-07-08 10:28:40.002455 f9cddf71-56a0-49e3-97b7-59403961cdde {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/12747692X"}, "pid": "7679", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10869467"} 2 -2023-07-08 10:22:45.98906 2023-07-08 10:28:42.951091 1a6b83ff-b0ec-4268-adf2-6c5996e34674 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/127714049"}, "pid": "7680", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10876144"} 2 -2023-07-08 10:22:46.46333 2023-07-08 10:28:55.643328 7804ac31-7ea8-4f7d-9666-0c6b61059b97 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/12837196X"}, "pid": "7681", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10896197"} 2 -2023-07-08 10:22:46.84701 2023-07-08 10:28:56.465073 b0fb5d01-7009-4f58-a9bc-00eb712c87bb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086545869"}, "pid": "7682", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1090145856977622920754"} 2 -2023-07-08 10:22:47.242436 2023-07-08 10:29:00.992971 a0146572-b9d4-4123-ae1b-eb99206636b4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1079330836"}, "pid": "7683", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109144898694150291149"} 2 -2023-07-08 10:22:47.625167 2023-07-08 10:29:09.798938 a9f01c6f-bdb4-41f2-9a2b-a100c727c3bb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/129608610"}, "pid": "7684", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10929109"} 2 -2023-07-08 10:22:48.019688 2023-07-08 10:29:20.117353 cf9db854-bc8f-4ed9-ac0b-8e1f6104fd8c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116397451X"}, "pid": "7685", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1097153411822141700008"} 2 -2023-07-08 10:22:48.418614 2023-07-08 10:29:20.807668 f53df509-5a92-4f6b-a0f3-eee34ca6cf1a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011709368"}, "pid": "7686", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109719958"} 2 -2023-07-08 10:22:48.786846 2023-07-08 10:29:22.688761 b3e4a555-48cc-4b78-8c2d-ab4a84045309 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/131514059"}, "pid": "7687", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10980715"} 2 -2023-07-08 10:22:49.16746 2023-07-08 10:29:28.46935 7d40baad-9be4-4229-b366-1733796899bd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/131738631"}, "pid": "7688", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10987079"} 2 -2023-07-08 10:22:49.616548 2023-07-08 10:29:31.427723 d3a9271c-4f06-4f25-a57d-2a1d18eb8e2a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158837534"}, "pid": "7689", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1100152636067920050982"} 2 -2023-07-08 10:22:50.025207 2023-07-08 10:29:41.22799 2ed20727-8273-4e08-9c97-49ce6b0eb8f8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1129905373"}, "pid": "7690", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110149233547676512774"} 2 -2023-07-08 10:22:50.329403 2023-07-08 10:29:48.64629 1caa2a33-b0a8-4a12-b16a-414a220c384d {"pid": "7691", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/264703227"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110166596777717591382"} 2 -2023-07-08 10:22:51.361437 2023-07-08 10:29:55.764403 e21ec4ca-c327-4675-a553-af880d6656fe {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1138059102"}, "pid": "7692", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11034417"} 2 -2023-07-08 10:22:52.213278 2023-07-08 10:30:11.045121 08f5ea41-e746-456a-930b-3f7ef9ce22ea {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1184827516"}, "pid": "7694", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1108155708732522580001"} 2 -2023-07-08 10:22:52.626151 2023-07-08 10:30:13.613261 54695b12-be32-4a89-b649-5118aa31d1f5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/115855365X"}, "pid": "7695", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1109152636172420052826"} 2 -2023-07-08 10:22:52.937096 2023-07-08 10:30:28.356127 c9d007ac-02a8-4214-b214-dbf49056a11c {"pid": "7696", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/263908038"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111166922987543512723"} 2 -2023-07-08 10:22:56.259428 2023-07-08 10:30:47.011496 b39d4968-2f7c-4ca1-a980-d354da18b909 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1261250842"}, "pid": "7704", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/264982959"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11154620867344591712"} 4 -2023-07-08 10:22:56.989353 2023-07-08 10:30:47.906959 9b7e0232-1690-41c7-8340-f82bef77b328 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/118608619X"}, "pid": "7705", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/267373414"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11154681870747862368"} 4 -2023-07-08 08:25:48.310946 2023-07-08 10:23:30.629366 6dc89246-cbff-47cb-90b1-591b4242adbf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116991992"}, "pid": "7046", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024075381"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100109330"} 3 -2023-07-08 08:25:30.911686 2023-07-08 10:23:30.71189 b608096e-1d77-4f99-934d-03a1c2ebbde4 {"pid": "6899", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021643724"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1001159234731203372537"} 2 -2023-07-08 10:21:54.086583 2023-07-08 10:23:31.958264 692b6ab3-d87a-4223-a073-3146f5b6b698 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1079471162"}, "pid": "7564", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100144928704054440114"} 2 -2023-07-08 10:22:53.482885 2023-07-08 10:30:33.859974 5037d9ab-f558-4c88-a509-93619ed85a5b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089143001"}, "pid": "7697", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111261630"} 2 -2023-07-08 10:22:53.859727 2023-07-08 10:30:37.889501 492f75aa-6a33-4b04-b95e-71cc3858077f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1082523097"}, "pid": "7698", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11145602344401360075"} 2 -2023-07-08 10:22:54.249654 2023-07-08 10:30:39.001575 664e2626-9afb-40b9-807c-615665e19dc8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1088801498"}, "pid": "7699", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11148207925300342818"} 2 -2023-07-08 10:22:54.68827 2023-07-08 10:30:41.771201 0a6f0d2b-b585-4ac4-8ef4-72a002089d8d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/115355996X"}, "pid": "7700", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11152023589403310337"} 2 -2023-07-08 10:22:55.089041 2023-07-08 10:30:45.177407 3475e723-218a-4006-9f65-22a58929b911 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1169173837"}, "pid": "7701", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11154013715009191156"} 2 -2023-07-08 10:22:55.459808 2023-07-08 10:30:45.612418 c5b2b62f-e277-442c-bcb4-d46f45f24081 {"pid": "7702", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260328065"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11154327972026851951"} 2 -2023-07-08 10:22:55.945322 2023-07-08 10:30:46.117457 ac9cff88-e23b-464f-a270-a6f3452923df {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1172300755"}, "pid": "7703", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11154381027230292608"} 2 -2023-07-08 10:22:57.793949 2023-07-08 10:30:48.392369 485eae74-9335-438c-97bd-881f704f6394 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1176219189"}, "pid": "7706", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11154865837059941088"} 2 -2023-07-08 10:22:58.211126 2023-07-08 10:30:49.892916 e1ddad0f-7671-4392-94f6-ea2963f376c8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1189236710"}, "pid": "7707", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11156219152604741999"} 2 -2023-07-08 10:22:58.576166 2023-07-08 10:30:52.236799 489bff0d-3876-4e46-b982-f331f8c094c8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/120415693X"}, "pid": "7708", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11158124986014931467"} 2 -2023-07-08 10:22:58.96859 2023-07-08 10:31:00.202864 54d75da6-eb07-409d-a7ae-0134770830fe {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1233756877"}, "pid": "7709", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11162178868807852103"} 2 -2023-07-08 10:22:59.358728 2023-07-08 10:31:00.679305 83e321fd-a6ca-45ea-a501-b8f4149c46bd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1238027237"}, "pid": "7710", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11162841961273040003"} 2 -2023-07-08 10:23:00.015833 2023-07-08 10:31:01.570765 f8ce285a-fabe-43cd-be23-b3dfc27ca0f2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1243598751"}, "pid": "7711", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11163510316910931329"} 2 -2023-07-08 10:23:00.394932 2023-07-08 10:31:02.458693 6ef99183-7ca6-4f13-a556-50844013b3a2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1244862096"}, "pid": "7712", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11163628674623462117"} 2 -2023-07-08 10:23:00.855728 2023-07-08 10:31:03.453557 27372e56-d819-4b53-a7eb-460288375a7a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/125606193X"}, "pid": "7713", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11165107062836452586"} 2 -2023-07-08 10:23:01.218157 2023-07-08 10:31:04.892535 aadebe02-64b3-4209-9e74-1667ecc10203 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1273775546"}, "pid": "7714", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11166955763746910323"} 2 -2023-07-08 10:23:01.609643 2023-07-08 10:31:05.933802 34793260-d2d2-42d2-977d-a8e6587e40d2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158955235"}, "pid": "7715", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1118152636067820051273"} 2 -2023-07-08 10:23:01.9865 2023-07-08 10:31:20.432092 d3dbb6e7-c2b5-451e-b973-1ab2e181660f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146958730"}, "pid": "7716", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112151246626444132994"} 2 -2023-07-08 10:23:02.25707 2023-07-08 10:31:24.836222 1d7398e3-4b25-4589-87b9-bbf9d7e74b59 {"pid": "7717", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/26528774X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112166835264435940968"} 2 -2023-07-08 10:23:02.694909 2023-07-08 10:31:32.945731 328bab0e-37e3-4f1f-8775-a0bcff4bc9c3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158918763"}, "pid": "7718", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1127152636055220050125"} 2 -2023-07-08 10:23:03.37574 2023-07-08 10:31:37.646405 8f98b6e6-c02a-439e-acf7-f9f167381f8f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1235245071"}, "pid": "7719", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11297911"} 2 -2023-07-08 08:15:28.898868 2023-07-08 10:23:32.428877 43144f4e-4e16-4a8d-8635-e25cc19fd0e3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1109931689"}, "pid": "1166", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100147094985625081522"} 2 -2023-07-08 08:23:56.827974 2023-07-08 10:23:46.638155 5d00a8d3-6655-4f18-890b-ff3f22f7ff6d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/133362817"}, "pid": "6038", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003427813"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100318770"} 3 -2023-07-08 08:23:07.976853 2023-07-08 10:23:33.326564 95882724-8ad6-4482-8ec8-c9b9001b2c88 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1057520837"}, "pid": "5661", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026123991"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/258241985"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100149804"} 5 -2023-07-08 08:21:53.596982 2023-07-08 10:23:33.686418 25d50b1c-ac50-4bee-8129-29c5af1fb31d {"pid": "4948", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/201762641"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100150565742606252567"} 2 -2023-07-08 08:22:22.711922 2023-07-08 10:23:35.694461 2b3773bc-3bc7-4f1d-b896-9a4b204cd90f {"pid": "5210", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234246820"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100157098566972552382"} 2 -2023-07-08 08:22:32.999108 2023-07-08 10:23:35.990519 d6351bca-8cbf-4c5c-8790-3bc561195e48 {"pid": "5305", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240312724"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100157340811009922640"} 2 -2023-07-08 08:22:36.602077 2023-07-08 10:23:36.52217 3ea79842-c716-4ce8-9ce4-ebc5e9086982 {"pid": "5335", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/241716853"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100158125062614931187"} 2 -2023-07-08 08:15:25.636866 2023-07-08 10:23:38.510049 d550cffb-80fb-4400-adcd-8e889e6e945a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/109790715"}, "pid": "1132", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003185209"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100181709"} 4 -2023-07-08 08:14:48.701784 2023-07-08 10:23:39.652451 a0b9c32c-86c4-4224-bd46-5747579535eb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1016763387"}, "pid": "739", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100189954"} 2 -2023-07-08 08:23:37.568477 2023-07-08 10:23:48.708578 210aedb5-eecb-4ac3-a928-30ae84b09b0a {"pid": "5889", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003048129"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100380122"} 2 -2023-07-08 08:16:09.400056 2023-07-08 10:23:40.499118 27ac1428-b857-4da3-8bb0-05879dc0f54f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/118818805"}, "pid": "1569", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003743887"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030254515"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100208187"} 6 -2023-07-08 08:24:34.945917 2023-07-08 10:23:40.648366 f28e6076-3aa2-4607-b2d8-e4e955b0c481 {"pid": "6411", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012368293"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1002159233919103370026"} 2 -2023-07-08 08:19:51.853286 2023-07-08 10:23:41.427295 5dfb7053-0aab-4201-a1ba-6c3d7fdff40a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/122616243"}, "pid": "3714", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011493066"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/060167181"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10022846"} 5 -2023-07-08 08:19:50.669509 2023-07-08 10:23:43.62143 476ecc5b-8254-40d7-acd0-e6afe934cd9a {"pid": "3706", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024255039"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/059213523"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10026905"} 4 -2023-07-08 08:19:15.960568 2023-07-08 10:23:45.460464 face0f61-a61a-4eb2-bfa5-59770a80d2b5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1126071935"}, "pid": "3439", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003531595"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026994801"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100314260"} 5 -2023-07-08 08:25:17.393424 2023-07-08 10:23:46.033641 b0710690-9fbb-46fe-a10e-1d8a905a149f {"pid": "6787", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018459512"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1003159234248603370992"} 2 -2023-07-08 08:17:02.72627 2023-07-08 10:23:51.98769 68f3d1a0-863b-4050-a4cc-6d1efce686d8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139128557"}, "pid": "2089", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A019010974"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/110185366"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100433538"} 6 -2023-07-08 08:24:23.788254 2023-07-08 10:23:53.769554 77b601b5-51ca-49da-9f01-4de884f8448d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139209204"}, "pid": "6303", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009279090"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100504043"} 3 -2023-07-08 08:15:50.797135 2023-07-08 10:23:54.174482 932fedc5-26c4-4d66-9599-53923a76e16b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/115836346X"}, "pid": "1400", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1005152636060820050108"} 2 -2023-07-08 08:24:34.380021 2023-07-08 10:23:54.248019 74366aac-bc55-4eaa-82bc-560dd1496b1e {"pid": "6405", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012346982"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1005159234775303372730"} 2 -2023-07-08 08:17:03.675659 2023-07-08 10:24:06.659413 25f71648-5025-4490-b078-e2f6b80d9d8f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139380027"}, "pid": "2101", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003364295"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/050225146"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100902870"} 6 -2023-07-08 08:20:32.971768 2023-07-08 10:23:55.801732 e8c5c018-7b1a-490d-9cd8-8359faa47715 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139286160"}, "pid": "4114", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014026079"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/113738048"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100571742"} 5 -2023-07-08 08:15:18.680766 2023-07-08 10:23:57.471486 d2d8ae95-d36c-4516-879b-0db5e96b68c9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089339771"}, "pid": "1055", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1006145856882222920257"} 2 -2023-07-08 08:16:42.345558 2023-07-08 10:24:08.177202 63e06b9a-ee1b-415c-aa4e-5b3877892744 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1258782901"}, "pid": "1892", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1009165450329527100003"} 2 -2023-07-08 08:17:22.764985 2023-07-08 10:23:59.705711 7fd27c82-eaa6-4ec1-9dca-f18743f04bd8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143513796"}, "pid": "2307", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A008584612"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/128587679"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10064822"} 6 -2023-07-08 08:21:51.013259 2023-07-08 10:24:11.013487 eb79ce33-d44e-4e7c-b321-417b316f92e7 {"pid": "4919", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/200141163"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101020201"} 2 -2023-07-08 08:22:54.237947 2023-07-08 10:24:00.660735 1075788b-7055-463b-83c5-62ae1b6dd65f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1056159278"}, "pid": "5509", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003300349"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/250664968"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100649386"} 5 -2023-07-08 08:25:16.749898 2023-07-08 10:24:02.503511 1a4aaffd-bfb9-47bb-b6d8-82a855542403 {"pid": "6782", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018395567"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1007159234641603372283"} 2 -2023-07-08 08:21:17.197763 2023-07-08 10:24:12.195496 70ad26d5-e4b0-41e3-a661-b9030af48ded {"pid": "4559", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/161367070"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101025602"} 2 -2023-07-08 08:14:52.299776 2023-07-08 10:24:03.484339 18172abe-afeb-47d5-a36e-3584d93157d3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1032029374"}, "pid": "778", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009426238"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/170128687"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100742319"} 6 -2023-07-08 08:24:17.846754 2023-07-08 10:24:03.538991 1577af66-f408-45ca-be0c-d8b3fbfa00d9 {"pid": "6229", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005821830"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100799173"} 2 -2023-07-08 08:22:26.701566 2023-07-08 10:24:05.738683 12f2e12e-685e-4fa5-8195-bd10ea850738 {"pid": "5248", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021918604"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/23527125X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100878021"} 4 -2023-07-08 08:16:50.085285 2023-07-08 10:24:17.585662 5260a1a9-5a43-4e63-9a66-cc4c75661fd6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/12981752X"}, "pid": "1974", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011736857"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/121469395"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101091591"} 6 -2023-07-08 08:14:50.940439 2023-07-08 10:24:14.22023 74013ff2-10b0-4473-ad73-d4a06bdc0a3c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1026199441"}, "pid": "763", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009687650"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/080608825"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10104043"} 6 -2023-07-08 08:19:46.602809 2023-07-08 10:24:16.181856 b657609b-dd04-4074-896b-59d816eb9e9f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/120498464"}, "pid": "3674", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003265730"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/056820151"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101079568"} 5 -2023-07-08 08:15:26.702066 2023-07-08 10:24:20.774738 9700253b-eac5-4e62-ad3a-01b4226d1cf8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1101364238"}, "pid": "1144", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101146462687227771964"} 2 -2023-07-08 08:15:41.556402 2023-07-08 10:24:21.914594 2a37c16e-aee6-426a-90cd-9d111f2c6b5c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146337116"}, "pid": "1292", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/256322325"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101148449943715692717"} 4 -2023-07-08 08:23:33.462704 2023-07-08 10:24:22.39538 01c1161c-3449-46ef-aeaa-38c21d9c8120 {"pid": "5861", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002942098"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101159233916303370161"} 2 -2023-07-08 08:23:10.750652 2023-07-08 10:24:24.053716 0405eb9d-8bb4-4d55-a480-a1929b266e52 {"pid": "5685", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/259329657"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101164476390325911817"} 2 -2023-07-08 08:23:14.567427 2023-07-08 10:24:24.417257 a23ae2db-7cc7-4bb5-ab4e-ce05855673d6 {"pid": "5716", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260864811"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101164959532724020077"} 2 -2023-07-08 08:23:18.633406 2023-07-08 10:24:24.827751 530cba58-ea28-4dbc-a9ce-2c1a9b07401a {"pid": "5754", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/262403242"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101166002461975022282"} 2 -2023-07-08 10:22:01.602328 2023-07-08 10:24:25.16708 c745fb67-d054-471c-a018-1a4074eb415a {"pid": "7581", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/26525969X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101166835186035940097"} 2 -2023-07-08 08:17:04.581033 2023-07-08 10:24:29.15526 80a7ea2f-89be-4916-93ce-4054d4afef73 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/13954402X"}, "pid": "2110", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25394144X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101272013"} 4 -2023-07-08 08:24:13.860671 2023-07-08 10:24:29.639598 7e746f90-3355-47ae-94a9-bf9b46e05a00 {"pid": "6186", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003971618"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101277090"} 2 -2023-07-08 08:24:41.251372 2023-07-08 10:24:29.703712 2dc7b8fa-5070-41b6-b15a-2cae7ab037f2 {"pid": "6480", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012494600"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1013159234257403371147"} 2 -2023-07-08 08:25:13.66671 2023-07-08 10:24:32.069909 0bcb8669-1cf5-4b7e-9a18-baf0c70f2819 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139622675"}, "pid": "6755", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018087920"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101342853"} 3 -2023-07-08 08:22:33.90478 2023-07-08 10:24:35.550499 65a149b8-a648-4b21-a98c-3dc808de13f8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1173303146"}, "pid": "5314", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240748069"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101395026"} 3 -2023-07-08 10:22:03.314119 2023-07-08 10:24:36.373577 b9cfb5fe-9b45-43b9-bfb3-ba3a8eb46834 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1143635876"}, "pid": "7585", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1014151052061233530002"} 2 -2023-07-08 08:15:07.288527 2023-07-08 10:24:38.779923 e5c65eaf-993d-4b1c-b173-71cc1f39abde {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1081429097"}, "pid": "930", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10145602335301360992"} 2 -2023-07-08 08:18:56.383619 2023-07-08 10:24:39.179197 a8979ec7-7ea4-4541-81cd-c568734d9db0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/990766160"}, "pid": "3286", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10145857815723021445"} 2 -2023-07-08 08:21:39.545217 2023-07-08 10:24:40.362407 ab7997f9-a3af-459a-be22-8b33995a5b4d {"pid": "4793", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/192776851"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10146285348915370004"} 2 -2023-07-08 08:20:36.354942 2023-07-08 10:24:50.020423 228f400b-80ca-4cf6-9de5-377764a97b5f {"pid": "4155", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013753495"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/119349043"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10164119"} 4 -2023-07-08 08:22:08.453095 2023-07-08 10:24:41.585689 1584baa2-70da-4a58-9be5-e35113771871 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1177717379"}, "pid": "5084", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027698830"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/225803658"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10148812821045212032"} 5 -2023-07-08 08:20:52.213168 2023-07-08 10:24:42.116725 d7d2091c-1480-43bd-8777-c4a2a8c6e11f {"pid": "4293", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016513981"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/137790872"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101493531"} 4 -2023-07-08 08:15:45.053905 2023-07-08 10:24:43.944415 f16f81aa-9c0e-4fad-8959-8c4f50217880 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1148121404"}, "pid": "1331", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10151351933852600332"} 2 -2023-07-08 08:24:43.496669 2023-07-08 10:24:44.658102 62069ac6-43f0-423b-ac91-039f78ab47a5 {"pid": "6504", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012527993"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1015159234413803371561"} 2 -2023-07-08 08:15:58.601787 2023-07-08 10:24:45.54611 e6c49716-3417-403c-a894-1ab843bbd0f6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1165547821"}, "pid": "1476", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10153593739351671558"} 2 -2023-07-08 08:25:07.977395 2023-07-08 10:24:47.429233 5d7f5681-c230-4bb2-962b-a154548d48c1 {"pid": "6710", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017173033"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1016159234081103370679"} 2 -2023-07-08 08:16:32.115474 2023-07-08 10:24:48.186848 ef916996-f206-4eb9-9007-17dba767be93 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1235024172"}, "pid": "1783", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10162365631525460906"} 2 -2023-07-08 08:20:37.403444 2023-07-08 10:24:49.072162 1b7e80d0-4fb9-49c0-9e44-ca1aae0762d6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/14275210X"}, "pid": "4167", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009590113"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/121150283"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10163228"} 5 -2023-07-08 08:23:20.216983 2023-07-08 10:24:51.857463 21f474a9-ad5b-4d8f-a6b9-9a87fc64c08a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1253501106"}, "pid": "5768", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/263082091"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10164778869208342773"} 3 -2023-07-08 08:25:44.469638 2023-07-08 10:24:55.391058 ba1a48ec-6dde-4b90-ad75-fcadc954d150 {"pid": "7013", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023668772"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101676637"} 2 -2023-07-08 08:25:05.556539 2023-07-08 10:24:56.320796 02e2dd5d-f0a1-4186-95d9-f538ba65c6f4 {"pid": "6690", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016768352"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1017159234435903371706"} 2 -2023-07-08 08:16:02.611411 2023-07-08 10:24:58.072621 6df95004-3e06-4b14-ac1e-4863db65bf73 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/117143553"}, "pid": "1511", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/150724527"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101737341"} 4 -2023-07-08 08:14:54.241843 2023-07-08 10:24:58.592335 ca6d0e56-18bb-4bc2-9e3e-c8ea331fed09 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1038798124"}, "pid": "797", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101780884"} 2 -2023-07-08 08:20:58.226765 2023-07-08 10:24:59.431167 bcd77a7f-1b2b-4730-9389-992e11b0e1c2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1259930696"}, "pid": "4353", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/145209512"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101789849"} 3 -2023-07-08 08:16:29.085666 2023-07-08 10:25:00.812243 ee6c2196-00c5-47fb-892b-bd9ba079e2f8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1225750350"}, "pid": "1752", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101880225"} 2 -2023-07-08 08:16:45.644192 2023-07-08 10:25:01.832031 cb6fe69d-4d36-4ee5-a918-d6d93950e25c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/127283447"}, "pid": "1927", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/167843052"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101923065"} 4 -2023-07-08 08:24:02.751642 2023-07-08 10:25:02.959994 b838c938-07b9-4687-a0de-85a897e1c109 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/170064344"}, "pid": "6088", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003594199"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102014359"} 3 -2023-07-08 08:25:26.096427 2023-07-08 10:25:03.606581 1857dd2c-3829-4a58-ac6e-fc2e49324b27 {"pid": "6858", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020122584"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1020159234553503371963"} 2 -2023-07-08 08:26:03.094304 2023-07-08 10:25:03.688553 64484273-3d76-4eac-a9ec-293afe25b67a {"pid": "7169", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025723446"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102017527"} 2 -2023-07-08 08:24:47.415585 2023-07-08 10:25:04.702486 3702eee2-6216-4ca5-89d1-517519451e77 {"pid": "6546", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013094655"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1021159234571303372037"} 2 -2023-07-08 08:16:37.343796 2023-07-08 10:25:07.278145 089c1934-8fa6-491e-ac3b-c2d1c63c797f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1244880027"}, "pid": "1838", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102153003"} 2 -2023-07-08 08:25:39.475281 2023-07-08 10:25:09.959126 f9c6601f-4b7e-496a-b746-7d8458360a16 {"pid": "6970", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023116917"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1022159234413103371649"} 2 -2023-07-08 08:14:51.766283 2023-07-08 10:25:10.664836 d4f84ff4-6e25-46d9-b39b-bd53cdd75168 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1028665504"}, "pid": "772", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003830445"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102268943"} 4 -2023-07-08 08:26:02.633057 2023-07-08 10:25:13.021262 36b9d2f3-abcc-4f78-8364-e59d16504d3c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/107738338X"}, "pid": "7165", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025694319"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1023155284785587061414"} 3 -2023-07-08 08:24:39.193178 2023-07-08 10:25:13.120034 f2cda9ea-eb0d-40a4-b028-eb20053a951e {"pid": "6455", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012443563"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1023159234404603371469"} 2 -2023-07-08 08:24:17.368948 2023-07-08 10:25:18.158134 674df2b3-b204-4ba5-a1dd-ad6ef63f9f8b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/120759241"}, "pid": "6223", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005732208"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102461795"} 3 -2023-07-08 08:14:58.173085 2023-07-08 10:25:15.964678 82b78162-1724-4f63-9264-7a9b86c82961 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1055348328"}, "pid": "831", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000103142"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032207107"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102383882"} 6 -2023-07-08 08:26:22.349938 2023-07-08 10:25:18.677814 3c907eb9-06b3-4641-8a2a-94fe562c322a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134624149"}, "pid": "7329", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027582518"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102471640"} 3 -2023-07-08 10:22:14.077577 2023-07-08 10:25:28.397313 4127397a-83e7-4f45-ac5b-c74aceb69940 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/103843914"}, "pid": "7610", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10269807"} 2 -2023-07-08 08:16:45.545301 2023-07-08 10:25:32.29538 2e188f6d-f9cf-4b28-8485-e3e5fb80a29e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/127205233"}, "pid": "1926", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1027627"} 2 -2023-07-08 08:16:45.761783 2023-07-08 10:25:38.461898 c0f346e3-9cca-493b-8053-5e995e4cbb85 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/127307427"}, "pid": "1928", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003363900"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/075866307"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1030696"} 6 -2023-07-08 08:16:51.474325 2023-07-08 10:25:39.382123 1cde3406-26cd-44c6-951a-662e9edd4a70 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/130677299"}, "pid": "1989", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017383534"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/146874595"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103076134"} 6 -2023-07-08 08:21:43.97241 2023-07-08 10:25:40.944969 ea05a2ae-3ed1-499e-9073-c19ea952f0e0 {"pid": "4839", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/195541855"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103148120859994792001"} 2 -2023-07-08 10:22:17.324377 2023-07-08 10:25:45.822992 d89f12ab-a79b-419f-805e-b1a95e434131 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087316928"}, "pid": "7617", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1032145857953523021267"} 2 -2023-07-08 08:20:26.645908 2023-07-08 10:25:46.51156 37239740-44a3-4dca-b79d-bca4c22885f5 {"pid": "4046", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/101448597"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103241365"} 2 -2023-07-08 08:17:07.373954 2023-07-08 10:25:52.095064 dd028a11-1b1b-43c4-b279-89d5e6d8430a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140091319"}, "pid": "2139", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103397444"} 2 -2023-07-08 08:15:11.428867 2023-07-08 10:25:53.042968 175069ad-9f81-4acc-9a81-3d42077235bd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086144686"}, "pid": "976", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1034145857097922922175"} 2 -2023-07-08 08:15:53.334025 2023-07-08 10:25:53.534145 40da7c2f-7c1f-46ff-9cd7-c521ad802983 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1159046239"}, "pid": "1427", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1034152636063620051234"} 2 -2023-07-08 08:24:49.964859 2023-07-08 10:26:03.182556 3767b3c4-a886-4b4f-836d-b67e8f414107 {"pid": "6569", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013346407"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10369275"} 2 -2023-07-08 08:26:17.055968 2023-07-08 10:26:03.246783 abd858d5-3aad-4b10-b7d2-282b4b7f0107 {"pid": "7284", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027194665"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1037144647704565498129"} 2 -2023-07-08 08:20:25.048152 2023-07-08 10:26:06.503114 fdb510f8-10f0-43a5-b6e9-6928f1d99234 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1195625049"}, "pid": "4028", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018345923"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/095775757"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103852745"} 5 -2023-07-08 08:19:32.474376 2023-07-08 10:26:11.372007 402cf498-bda2-4c82-993f-970cb9c4260d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1096172224"}, "pid": "3568", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003436041"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032649789"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103944194"} 5 -2023-07-08 08:21:01.167509 2023-07-08 10:26:12.356009 d4201a0c-c909-4270-af2a-a1f3e9ae689e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/117490555"}, "pid": "4381", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003853351"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/147644305"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10398282"} 5 -2023-07-08 08:16:13.244193 2023-07-08 10:26:13.29827 144c5c87-a0d7-4534-8157-8f1b686610bc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1192403959"}, "pid": "1601", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003552475"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034388397"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104012476"} 6 -2023-07-08 08:15:22.080965 2023-07-08 10:26:16.005737 4ba9d1c7-2792-44a0-83c1-b43fb71242be {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1091697620"}, "pid": "1093", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1041145856884122920363"} 2 -2023-07-08 08:21:58.47823 2023-07-08 10:26:17.671669 870f095a-1e92-4fdd-9f46-f52f14fac50d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1061268225"}, "pid": "4997", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003101806"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/204651913"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104151050007833410325"} 5 -2023-07-08 08:23:45.747048 2023-07-08 10:26:21.930903 52d65aee-2906-499a-890c-97a84b5015a2 {"pid": "5952", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003182838"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1042145856994022920929"} 2 -2023-07-08 08:15:15.986489 2023-07-08 10:26:23.257966 ad541adf-54b2-421b-a685-76a063f3b9d4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087161088"}, "pid": "1026", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1043145856962822920558"} 2 -2023-07-08 08:16:22.975588 2023-07-08 10:26:24.31591 ec4709d4-f365-421d-afc1-931b79642c5a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1211775216"}, "pid": "1688", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1044150264367405860003"} 2 -2023-07-08 08:23:06.938704 2023-07-08 10:26:24.818214 1ed3e7db-3cc8-4945-99f9-621595397d01 {"pid": "5650", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017944030"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/257647805"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1044155042867772402868"} 4 -2023-07-08 08:25:52.46371 2023-07-08 10:26:25.317662 7edd392f-56a3-46e6-b4e3-3aeafb21b27f {"pid": "7083", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024413945"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104504649"} 2 -2023-07-08 08:23:33.348842 2023-07-08 10:26:25.936257 568deacf-32f4-4c1d-9ec0-50912a00acc0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1079981993"}, "pid": "5860", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002941440"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10455493"} 3 -2023-07-08 08:15:21.472407 2023-07-08 10:26:26.492461 87ab72c0-4638-4699-ad3b-32df084d57ad {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1091183546"}, "pid": "1086", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1046145857953723021295"} 2 -2023-07-08 08:26:06.786213 2023-07-08 10:26:27.086348 49698ffb-3225-455a-ab8c-0c105b4c3c2a {"pid": "7197", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025987021"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1046155284918387062863"} 2 -2023-07-08 08:24:50.18584 2023-07-08 10:26:27.154611 126ca086-0155-4923-9eb4-574111a03eac {"pid": "6571", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013395525"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1046159234860003372931"} 2 -2023-07-08 08:19:20.789772 2023-07-08 10:26:28.432383 37470c41-031e-4184-a009-0f329212419b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/123952425"}, "pid": "3476", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003360509"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028766857"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104623647"} 5 -2023-07-08 08:17:29.652307 2023-07-08 10:26:29.452885 239ca89c-085b-49d3-bbbc-2fba20d77e56 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172435498"}, "pid": "2383", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003947464"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10470018"} 4 -2023-07-08 08:18:11.825039 2023-07-08 10:26:34.074369 7f1bcd79-493d-4388-9704-1ba7cf343904 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/958779147"}, "pid": "2857", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/191808105"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1051145424721186830523"} 4 -2023-07-08 08:16:04.966146 2023-07-08 10:26:34.912099 eb174b67-547f-482d-8a4d-df52b902d6ae {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1176847597"}, "pid": "1531", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/23322758X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105115875"} 4 -2023-07-08 08:16:17.978354 2023-07-08 10:26:42.60786 78adc0d5-9614-4d81-97fe-2f1366adb9da {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1203731949"}, "pid": "1644", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1053158070704108780008"} 2 -2023-07-08 08:25:35.778816 2023-07-08 10:26:44.534671 dd16bb51-0ecc-4292-b42d-16b326aeb0bd {"pid": "6938", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022784340"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1054159234069003370746"} 2 -2023-07-08 08:24:04.221313 2023-07-08 10:26:44.582371 52f6c814-6a27-485b-8b49-0d8faafa52cf {"pid": "6103", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003625161"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1054159248336604870007"} 2 -2023-07-08 10:22:26.950078 2023-07-08 10:26:48.808786 81f152e4-1f83-442f-b114-4645fd6f972b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1129898709"}, "pid": "7639", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105996931"} 2 -2023-07-08 08:16:09.883214 2023-07-08 10:27:10.934085 e8e35fbe-713e-42b2-b997-d05c4c5b2f3a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/118865900"}, "pid": "1573", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003516733"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/085647640"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10643494"} 6 -2023-07-08 08:16:51.572317 2023-07-08 10:26:49.798924 a9622f0c-6824-44d0-a1bb-4244c4aad575 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/130859842"}, "pid": "1990", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003245434"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032613237"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106003300"} 6 -2023-07-08 08:17:20.370217 2023-07-08 10:26:54.936998 0ce047a7-933d-4237-a6dd-0d6fe4b65f9f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143130706"}, "pid": "2280", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106143693"} 2 -2023-07-08 08:15:48.456252 2023-07-08 10:26:58.66825 2f34b6e5-7bad-4c50-b3d6-dc31ef00ceaf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157297676"}, "pid": "1372", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106152561552815441720"} 2 -2023-07-08 08:16:47.253478 2023-07-08 10:27:04.456682 1de2ef0b-7209-4ff9-896e-796bc3c126b9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/12833794X"}, "pid": "1944", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/145286444"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1061809"} 4 -2023-07-08 08:20:50.115514 2023-07-08 10:27:18.756088 a9529f09-cd66-4cf5-94eb-161d588ca3c7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1178017486"}, "pid": "4278", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016678629"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/136495117"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106841896"} 5 -2023-07-08 08:16:15.738195 2023-07-08 10:27:16.165083 a337a466-fd35-4eff-87ee-8e86c37aaffb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/11982387X"}, "pid": "1623", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10664806"} 2 -2023-07-08 08:21:11.985781 2023-07-08 10:27:17.732804 e7bebe22-4804-499d-96bf-b4330d0373f6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1019500344"}, "pid": "4503", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020228645"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/155852639"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106800855"} 5 -2023-07-08 08:21:36.154888 2023-07-08 10:27:22.799583 47297357-65da-4568-8707-702e4d1aa3d1 {"pid": "4758", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003975282"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/190122277"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106922977"} 4 -2023-07-08 08:21:45.467225 2023-07-08 10:27:31.140314 ef1ca489-3925-4f5f-a020-f6adab81c2a0 {"pid": "4856", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196425840"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107148389277810710683"} 2 -2023-07-08 08:16:37.633197 2023-07-08 10:27:46.458473 6f1a5292-0bbf-4ddf-9cbe-66c25d9907cd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124566025X"}, "pid": "1841", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/136803784"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107403358"} 4 -2023-07-08 08:25:59.51917 2023-07-08 10:27:48.462965 84f5ec67-6153-4ae2-a404-f3bd34308521 {"pid": "7144", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025367912"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107437766"} 2 -2023-07-08 08:20:19.011465 2023-07-08 10:27:52.981382 85755836-1269-46c8-b23e-2ee6657d35b9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/133999912"}, "pid": "3957", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000016955"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/08589320X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107598696"} 5 -2023-07-08 08:17:09.51351 2023-07-08 10:27:55.698156 bb33eb91-d035-4bc6-8619-401b1f8897df {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140699562"}, "pid": "2163", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107698983"} 2 -2023-07-08 10:22:40.729233 2023-07-08 10:27:59.273098 faeb4f96-7a9b-43cd-893d-6cd9ecdff525 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140764143"}, "pid": "7668", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107754610"} 2 -2023-07-08 08:17:10.095775 2023-07-08 10:28:00.605131 fdb6099f-3791-47f6-9aa2-6c7c2efe185f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140807268"}, "pid": "2170", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107791592"} 2 -2023-07-08 08:17:22.392466 2023-07-08 10:28:07.725197 fe77e2f7-1bfb-4726-be11-0c647cf02b30 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143464000"}, "pid": "2303", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107922514"} 2 -2023-07-08 08:16:38.115892 2023-07-08 10:28:31.285254 37170c67-6c4d-44e3-a5d0-d95c93ac744b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124715311"}, "pid": "1846", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003441673"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/050212265"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108377870"} 6 -2023-07-08 08:15:36.884445 2023-07-08 10:28:15.594359 10ef412f-03c5-4585-bf1b-fd4f03ebb92e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1139400851"}, "pid": "1241", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020500799"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/237257521"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1081087"} 6 -2023-07-08 08:22:37.421173 2023-07-08 10:28:17.279584 34e19be6-9785-423a-870b-3cc532d2277d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/128174889"}, "pid": "5342", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024416324"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/242007481"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108144648980009328314"} 5 -2023-07-08 08:16:35.423455 2023-07-08 10:28:18.124905 fcf10390-e6f4-410b-9e6a-343bc37040f0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1242496343"}, "pid": "1818", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/193181878"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108144782707063510652"} 4 -2023-07-08 08:24:33.345685 2023-07-08 10:28:19.524705 7484dad2-0ffa-4b5a-89da-997e2261bdc8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/125668465"}, "pid": "6395", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012313815"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10814610"} 3 -2023-07-08 08:15:32.025242 2023-07-08 10:28:20.903331 f1e648a2-68e3-4cbe-9392-1939695ff0a4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1120533260"}, "pid": "1192", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027062343"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108148812855545212571"} 4 -2023-07-08 08:19:22.306709 2023-07-08 10:28:33.247535 c08a8953-af7e-4ac3-ba48-e2b8fce5ca6f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/12473409X"}, "pid": "3489", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003685283"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/029598982"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108414698"} 5 -2023-07-08 08:16:14.524165 2023-07-08 10:28:27.14775 cb6db71f-1dd7-4d06-af14-93c1bbefadd1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/119499363"}, "pid": "1612", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003146897"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/108090450"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108286493"} 6 -2023-07-08 08:21:22.556836 2023-07-08 10:28:45.330008 fd8fa502-87f8-45e7-bc73-d2d45e6fbf45 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1199011495"}, "pid": "4612", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003275937"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/168647567"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108821984"} 5 -2023-07-08 08:22:51.168422 2023-07-08 10:28:51.795955 9440c37b-1a04-40da-bb79-3038f9d65f2b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/120756455"}, "pid": "5475", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023693839"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/248213032"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108912910"} 5 -2023-07-08 08:19:19.417166 2023-07-08 10:28:52.888223 5f5150a9-0a1e-44fc-ba38-a774cb8b80c5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/123673208"}, "pid": "3466", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003817832"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028500490"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108923602"} 5 -2023-07-08 08:20:18.153487 2023-07-08 10:28:55.17925 bdd791c9-648d-46d8-a575-7811299942a2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1029917442"}, "pid": "3949", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003378837"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/085535621"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108960089"} 5 -2023-07-08 08:16:25.661348 2023-07-08 10:28:58.821568 24e86b1a-853b-46a3-91a4-4bee0ab04769 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1218603739"}, "pid": "1716", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1091160211316148920005"} 2 -2023-07-08 08:16:49.478606 2023-07-08 10:29:09.326744 d7bca0b2-c829-470f-bbce-520e66d3bdd6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/129520896"}, "pid": "1968", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011686664"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251629783"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10926931"} 6 -2023-07-08 08:22:48.116249 2023-07-08 10:29:55.282481 0dbd3391-d70a-485a-bef9-712042924ff5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173457258"}, "pid": "5440", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000108719"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244121095"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110333109"} 5 -2023-07-08 10:22:51.759025 2023-07-08 10:30:08.764268 fdec3087-8acf-413f-ae8d-b166304d3310 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1085827739"}, "pid": "7693", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1106145857049222921336"} 2 -2023-07-08 08:17:00.417267 2023-07-08 10:30:09.60693 510f271b-153d-4403-9c27-c3f825c2db8d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/135757452"}, "pid": "2070", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11071399"} 2 -2023-07-08 08:15:35.719278 2023-07-08 10:30:32.508431 6ece7313-7ffd-44a9-97c6-28a08ae04de1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1135754381"}, "pid": "1227", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1112149844940302960009"} 2 -2023-07-08 08:22:31.13423 2023-07-08 10:30:38.604342 cdcaaa8a-5491-4521-bc30-d4c444cb8506 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1192852273"}, "pid": "5288", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/237851539"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11145970204932251599"} 3 -2023-07-08 08:22:12.768478 2023-07-08 10:30:40.739198 4350177b-7f26-4b7e-9481-671cbb49dcd8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1170737064"}, "pid": "5121", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/228853214"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11150999684929872908"} 3 -2023-07-08 08:20:42.570219 2023-07-08 10:31:05.543003 e490edd1-db3d-4cd8-be1a-77f14e49a3e4 {"pid": "4221", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013278476"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/128585544"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11173017"} 4 -2023-07-08 08:20:27.026321 2023-07-08 10:31:16.629286 402cdf72-581f-41ac-93cb-964c6b17811d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172265258"}, "pid": "4050", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/102616221"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112105759"} 3 -2023-07-08 08:19:15.373113 2023-07-08 10:31:30.716716 ae0fb109-8f3f-4ecf-aa3e-062b734744e0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/120661144"}, "pid": "3434", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012726948"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026868482"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112517462"} 5 -2023-07-08 08:24:55.132738 2023-07-08 10:31:39.966457 679311a1-8e94-46d9-9c77-a2bf3d17842a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/138127948"}, "pid": "6610", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013796408"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1131155042714072401024"} 3 +2024-09-11 09:00:07.14198 2024-09-11 09:00:07.141983 f1548543-d23e-4722-91bb-477957175b77 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000018953"}, "pid": "1", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:07.192539 2024-09-11 09:00:07.192542 0aa5bf55-08d4-4b8a-98da-ec049b176c6c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00002676X"}, "pid": "2", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:07.238598 2024-09-11 09:00:07.2386 5852ab08-c6dc-49ea-91f8-52414cb9b2c5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000089540"}, "pid": "3", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:07.287356 2024-09-11 09:00:07.287359 c07adac6-61a8-4dae-9f82-1c0efb54d44e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000115460"}, "pid": "4", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:07.364889 2024-09-11 09:00:07.364894 0ea3b468-7b95-4c1b-b841-d640204ff8ff {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000125121"}, "pid": "5", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:07.411296 2024-09-11 09:00:07.4113 b851c6dc-5438-431a-bb96-e88c4d1a521c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000132764"}, "pid": "6", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:07.460562 2024-09-11 09:00:07.460565 fa06e125-2e5a-4d36-8c89-50e7bc9a8f32 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000139076"}, "pid": "7", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:07.508743 2024-09-11 09:00:07.508746 d1b28f84-c89f-4756-9c11-978734b9b76e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000140899"}, "pid": "8", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:07.559648 2024-09-11 09:00:07.559653 7896da6b-d69d-4241-9fdb-e0558777e26e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00014388X"}, "pid": "9", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:07.607662 2024-09-11 09:00:07.607665 03d7ffd1-6d93-4daf-8927-1c822d80dab7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000151408"}, "pid": "10", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:07.656702 2024-09-11 09:00:07.656706 8dabb71a-2ac4-45d4-9a02-80d01d360c10 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000161632"}, "pid": "11", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:07.710512 2024-09-11 09:00:07.710516 c1b37441-1a40-4a45-bbbb-caee463eb5d7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000163791"}, "pid": "12", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:07.756903 2024-09-11 09:00:07.756905 6774399b-0800-479b-bbd7-0bca3072ec3f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000167088"}, "pid": "13", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:07.806974 2024-09-11 09:00:07.806977 8f60adde-5d03-401d-a0ec-e021f49844a8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000175978"}, "pid": "14", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:07.859597 2024-09-11 09:00:07.859601 753bb02d-0568-46b6-be68-4846aecab45e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000178020"}, "pid": "15", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:07.914186 2024-09-11 09:00:07.914189 27244094-9d7b-4ac4-bf37-bbb195b5fc9d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000193364"}, "pid": "16", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:07.964202 2024-09-11 09:00:07.964206 e8533191-53be-4ca2-a9a7-c32180a9d2ff {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000250422"}, "pid": "17", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:08.013727 2024-09-11 09:00:08.013731 14ef28c5-ee64-4710-817e-86227fe945c6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000269905"}, "pid": "18", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:08.059663 2024-09-11 09:00:08.059667 736a8813-9d8c-49c9-8a59-132f2ba4b78a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00037959X"}, "pid": "19", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:08.107307 2024-09-11 09:00:08.107311 6961a8ae-db7a-4013-af8d-1f59736d0e84 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000390003"}, "pid": "20", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:08.156118 2024-09-11 09:00:08.156122 54bcaf81-897e-4c10-8605-60e75fe54ba1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000409928"}, "pid": "21", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:08.205123 2024-09-11 09:00:08.205125 346e78dd-d5d3-46b4-ad33-40ea87b4871f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000425729"}, "pid": "22", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:08.253985 2024-09-11 09:00:08.253987 3a8c535b-bd39-41b8-abe4-72c0ca4d3a27 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000438049"}, "pid": "23", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:08.301075 2024-09-11 09:00:08.301077 2dc04e2c-4472-4acc-a435-d5c0f9f80565 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000441678"}, "pid": "24", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:08.351849 2024-09-11 09:00:08.351853 6412fa32-6417-4f44-b069-238426b1bcc3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00045561X"}, "pid": "25", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:08.405295 2024-09-11 09:00:08.405299 26b01bbc-e9bb-4f97-a8b1-9a3851d1c90b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000549568"}, "pid": "26", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:08.458324 2024-09-11 09:00:08.458327 8a898d61-8ad4-4e7d-a3c6-6f4c200f99ec {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000555851"}, "pid": "27", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:08.513309 2024-09-11 09:00:08.513314 957c0383-81ea-484d-9ca1-59ab634f3bed {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000602140"}, "pid": "28", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:08.569891 2024-09-11 09:00:08.569895 95146756-6fa5-40bd-a98c-7320d861dc0a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000613258"}, "pid": "29", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:08.621262 2024-09-11 09:00:08.621265 ae9715ae-fa69-4141-8e64-b717d8487e52 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000613665"}, "pid": "30", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:08.673638 2024-09-11 09:00:08.673644 9e5f461f-b8cd-48b6-a634-676a8d9d41cf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000662348"}, "pid": "31", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:08.722454 2024-09-11 09:00:08.722457 67aa5473-4113-49e3-b173-33d345529a97 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000666394"}, "pid": "32", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:08.771598 2024-09-11 09:00:08.7716 7ce1f69c-7db9-4663-b858-86b1b990db72 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000746568"}, "pid": "33", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:08.821381 2024-09-11 09:00:08.821384 8d5a095b-cb07-4fdd-90bf-f7e89539eef0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00074669X"}, "pid": "34", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:08.890675 2024-09-11 09:00:08.890679 03de3b35-a8ea-4972-831e-dfc8e246e1fb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000749915"}, "pid": "35", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:08.946965 2024-09-11 09:00:08.946967 ddadb154-c8c9-465b-921c-e4596c6344c2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000821829"}, "pid": "36", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:08.994894 2024-09-11 09:00:08.994897 0c650e0a-3319-4dd8-ae99-3b4302ddee70 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000827673"}, "pid": "37", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:09.044602 2024-09-11 09:00:09.044605 c116f503-95e4-45e4-830f-e0d922f527f5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000837318"}, "pid": "38", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:09.093878 2024-09-11 09:00:09.093881 f0bef1a1-fc73-4f60-8193-f5d462676e3b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000842362"}, "pid": "39", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:09.142527 2024-09-11 09:00:09.14253 4dd81a43-69a6-4058-a089-8f9f20d253ca {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000844470"}, "pid": "40", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:09.192527 2024-09-11 09:00:09.192532 89138a91-b282-427d-893f-3049743099b4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000903515"}, "pid": "41", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:09.244395 2024-09-11 09:00:09.244399 f33f0927-3e7a-4ef1-ae88-ad5696de491b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/000907820"}, "pid": "42", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:09.296749 2024-09-11 09:00:09.296752 f676444a-1250-41ff-9d10-d75b007db8c7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001106767"}, "pid": "43", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:09.349945 2024-09-11 09:00:09.349948 abb806d5-92bb-430c-91ff-5db13342225e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001116371"}, "pid": "44", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:09.397398 2024-09-11 09:00:09.397402 44283540-fca2-48a6-89cd-f93e73f367db {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00112207X"}, "pid": "45", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:09.44648 2024-09-11 09:00:09.446483 374a994c-7e36-4e00-bdd5-17213a1ebd3c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001148028"}, "pid": "46", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:09.496735 2024-09-11 09:00:09.49674 3c2576c7-f0c4-4f00-8914-9f6c8d92677e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001156373"}, "pid": "47", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:09.545779 2024-09-11 09:00:09.545782 8271afd0-8775-48c1-9b8d-d5ba1efece42 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001170325"}, "pid": "48", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:09.603212 2024-09-11 09:00:09.603214 cef62a20-b96c-4fa2-a7d3-b4cea6afcc90 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001183834"}, "pid": "49", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:09.662203 2024-09-11 09:00:09.662206 5102fc69-33ae-49e9-91e5-471913258044 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001187813"}, "pid": "50", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:09.713368 2024-09-11 09:00:09.713372 799bb295-4d42-4922-b8c9-5db53bab9fcd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001192396"}, "pid": "51", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:09.764462 2024-09-11 09:00:09.764465 a13e0876-64ee-4e12-851e-fa6a8169ba03 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001226355"}, "pid": "52", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:09.813311 2024-09-11 09:00:09.813314 f6db22ef-32b3-47ab-9a9a-ddbc9a4f7af5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00122722X"}, "pid": "53", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:09.864131 2024-09-11 09:00:09.864136 c2c01901-f6f3-4a97-95fe-e3e80bb90376 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001247697"}, "pid": "54", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:09.912631 2024-09-11 09:00:09.912634 272acdde-bf61-4ed7-9e4d-6e745837e8ba {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001277936"}, "pid": "55", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:09.965352 2024-09-11 09:00:09.965355 67791670-2d80-4285-88dc-a9d5e646fda4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001279858"}, "pid": "56", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:10.016623 2024-09-11 09:00:10.016626 a317f965-1c81-46e0-9a29-49e114f220c9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001282891"}, "pid": "57", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:10.06907 2024-09-11 09:00:10.069072 3ab58765-24da-4232-aab3-7641d55ef810 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001284150"}, "pid": "58", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:10.132247 2024-09-11 09:00:10.13225 aa237436-f7d7-4876-8bf6-ad9b1a06ab67 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001299662"}, "pid": "59", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:10.1813 2024-09-11 09:00:10.181303 da2b0641-ad34-405d-8dd3-908a400e5dea {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001303317"}, "pid": "60", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:10.232164 2024-09-11 09:00:10.232168 fa63f5d2-a60f-4837-bdeb-e661d7db2c46 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001306634"}, "pid": "61", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:10.283536 2024-09-11 09:00:10.283539 4c60948a-c81a-441f-90d4-a85872f5f080 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001330578"}, "pid": "62", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:10.33529 2024-09-11 09:00:10.335292 65d7c0ab-d1b0-47d8-9535-603e3be60348 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001371924"}, "pid": "63", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:10.398545 2024-09-11 09:00:10.398547 84fbd7a4-d039-42c2-ac1d-90cd63a52766 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001376136"}, "pid": "64", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:10.446829 2024-09-11 09:00:10.446831 c5b5f5fd-81e5-406f-939e-a16c1a7ec584 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001378600"}, "pid": "65", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:10.498674 2024-09-11 09:00:10.498677 ba486b0a-6522-44df-8574-95be31c3776d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001381504"}, "pid": "66", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:10.549455 2024-09-11 09:00:10.549458 881b2c6f-71a8-486b-9068-1eefcf820e6c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001434756"}, "pid": "67", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:10.600772 2024-09-11 09:00:10.600775 3e03523d-b938-432a-acdd-5de5f2a7ed0f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001436872"}, "pid": "68", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:10.652627 2024-09-11 09:00:10.65263 43508641-4a31-431e-9458-9d96402bc17e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001453459"}, "pid": "69", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:10.70442 2024-09-11 09:00:10.704423 df4377b2-8922-42fe-96d6-48734c68b518 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/001457101"}, "pid": "70", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:10.767915 2024-09-11 09:00:10.767919 40794796-af7b-4c53-94f4-8edd2083b20a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002004526"}, "pid": "71", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:10.820684 2024-09-11 09:00:10.820687 1f95ea0d-b618-4c3f-a3b2-fba109727ebb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002102536"}, "pid": "72", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:10.873134 2024-09-11 09:00:10.873136 bce22305-b96f-4aaa-8264-609eee450c71 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00210637X"}, "pid": "73", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:10.924881 2024-09-11 09:00:10.924884 82964101-68d8-4b9d-9575-61fb466d02ed {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002111748"}, "pid": "74", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:10.975094 2024-09-11 09:00:10.975098 bbfb1e4e-4ac1-4cc9-bd87-617ab2cddf57 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002128683"}, "pid": "75", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:11.028005 2024-09-11 09:00:11.028008 af4fe2c3-136c-4ad7-8d75-fa33d9c74639 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002148323"}, "pid": "76", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:11.08333 2024-09-11 09:00:11.083333 73d240ce-ef61-4c44-a57d-dd09bf36d5be {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002149176"}, "pid": "77", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:11.144858 2024-09-11 09:00:11.144861 163000b1-ae73-49da-a802-cd7a84a7655a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002150492"}, "pid": "78", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:11.197068 2024-09-11 09:00:11.197072 0849c22f-dd1c-49e5-b160-df29278bb4af {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002153912"}, "pid": "79", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:11.260934 2024-09-11 09:00:11.260937 923410de-b11d-4cf3-9e43-c65d1ac3aa3d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002156954"}, "pid": "80", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:11.326282 2024-09-11 09:00:11.326286 c16d3971-e3fc-45e7-8923-98ae5cd903a1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002171260"}, "pid": "81", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:11.378017 2024-09-11 09:00:11.37802 8a52e7ef-ebe7-496d-95db-840c5741df9f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002210819"}, "pid": "82", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:11.426227 2024-09-11 09:00:11.426231 6f386b67-a06f-4e76-ad1f-e8960105ef11 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00221153X"}, "pid": "83", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:11.480082 2024-09-11 09:00:11.480085 0f3a04c9-a7c8-45f1-a5e5-f98604b64f5f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00221167X"}, "pid": "84", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:11.531661 2024-09-11 09:00:11.531664 8333719e-c40d-46d1-811b-0016d4ce5674 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002215942"}, "pid": "85", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:11.582756 2024-09-11 09:00:11.582759 f8d21bf3-a065-40d2-a1e3-1c0737f41a21 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002356368"}, "pid": "86", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:11.640487 2024-09-11 09:00:11.640489 94b8923e-be9e-4dfe-8aa2-0a7903649614 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00236266X"}, "pid": "87", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:11.696233 2024-09-11 09:00:11.696238 65616999-25e7-433c-9d9a-2c8b84069614 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002362880"}, "pid": "88", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:11.761172 2024-09-11 09:00:11.761177 66ed87c9-e4f1-4d73-a51a-dd5c387736ae {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002407612"}, "pid": "89", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:11.835994 2024-09-11 09:00:11.835997 a34ba6fc-92bb-4df6-819c-2a11bfdeff63 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002411083"}, "pid": "90", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:11.885261 2024-09-11 09:00:11.885265 7c9bd466-a334-44f3-be42-f0421aa65960 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002413957"}, "pid": "91", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:11.935925 2024-09-11 09:00:11.935929 ab1dee0c-4643-4325-9591-9a89a9724e16 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002447797"}, "pid": "92", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:11.987117 2024-09-11 09:00:11.987119 0c0ddd5d-af4e-439a-935a-0d5be59f2ea3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002461102"}, "pid": "93", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:12.047474 2024-09-11 09:00:12.047477 f88770fd-3195-4603-b194-cf8c71e4783f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002476738"}, "pid": "94", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:12.106879 2024-09-11 09:00:12.106883 e8a9e228-cbe6-4acb-986b-3824d993e73d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002529041"}, "pid": "95", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:12.158408 2024-09-11 09:00:12.158411 3aa40a7a-cf18-413c-9114-e5dfd95a0642 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002530937"}, "pid": "96", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:12.222471 2024-09-11 09:00:12.222473 c817b4fc-147f-4b61-95a0-a24b2705238b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002531844"}, "pid": "97", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:12.271714 2024-09-11 09:00:12.271717 ae082456-1101-4ac9-afae-25353f3556f3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002537966"}, "pid": "98", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:12.328364 2024-09-11 09:00:12.328367 d72ac4e9-88cc-487e-9058-f185e8e6a908 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002546329"}, "pid": "99", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:12.378412 2024-09-11 09:00:12.378416 2c0d40f7-7683-4e29-ac26-3123aeb556ff {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002602555"}, "pid": "100", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:12.440912 2024-09-11 09:00:12.440915 8154881b-5af6-49ae-baf2-c60cbbb117dd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002606232"}, "pid": "101", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:12.491392 2024-09-11 09:00:12.491395 37e788d2-a8c5-4171-8cc0-e110f59eb918 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00260955X"}, "pid": "102", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:12.543518 2024-09-11 09:00:12.543521 76289972-eda0-402e-9b32-f919d5390652 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002610922"}, "pid": "103", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:12.609524 2024-09-11 09:00:12.609527 9f300cd2-29e4-4f58-b90b-6331349b6445 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002624508"}, "pid": "104", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:12.657742 2024-09-11 09:00:12.657746 7e803aa2-f3d9-4950-80a7-94aac29690e7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002627019"}, "pid": "105", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:12.712418 2024-09-11 09:00:12.712422 683bb917-c815-4276-bb9b-2de4966934ff {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002740990"}, "pid": "106", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:12.781067 2024-09-11 09:00:12.78107 9847b9f9-4d92-4e01-a667-9997d9d3d127 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002744759"}, "pid": "107", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:12.839 2024-09-11 09:00:12.839003 2ca1fc43-bdd6-4e51-bdc0-afad72dfcd28 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002746387"}, "pid": "108", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:12.89984 2024-09-11 09:00:12.899842 49a1a517-951f-4e06-9940-0b9802f5b347 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00274659X"}, "pid": "109", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:12.951469 2024-09-11 09:00:12.951472 29faeb27-21d4-4afe-98fc-d9430bc18836 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00275486X"}, "pid": "110", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:13.006337 2024-09-11 09:00:13.006339 aa9cd60b-a759-4d14-9c3d-cb7f0adc7c3f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002765187"}, "pid": "111", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:13.075649 2024-09-11 09:00:13.075655 af1356c3-e667-4aa8-b9eb-38da080e8078 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00278064X"}, "pid": "112", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:13.128406 2024-09-11 09:00:13.12841 1751cb48-b263-4ace-88df-ec40d644bee5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002785684"}, "pid": "113", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:13.176837 2024-09-11 09:00:13.17684 3c5393d9-837a-4d0a-b6d1-451816c35df3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002804077"}, "pid": "114", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:13.227413 2024-09-11 09:00:13.227417 7af2094c-8d12-4c97-af1d-23e8439905cb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002903296"}, "pid": "115", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:13.276711 2024-09-11 09:00:13.276715 b9d49240-cc4e-496d-b471-3d6b31256463 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/002910934"}, "pid": "116", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:13.326272 2024-09-11 09:00:13.326276 04d221d7-a1d7-43f2-b2bb-a9b93efa24a9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/003006816"}, "pid": "117", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:13.373592 2024-09-11 09:00:13.373594 ff5eb2f0-f2f6-4023-9a59-b6a34100307c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/003016617"}, "pid": "118", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:13.419921 2024-09-11 09:00:13.419924 d5ccadef-230e-4cb8-b39a-02f970e3cbef {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/003051986"}, "pid": "119", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:13.470053 2024-09-11 09:00:13.470056 26d3cc72-af75-4bba-a0ed-032e43bc359d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/003063976"}, "pid": "120", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:13.520004 2024-09-11 09:00:13.520007 22119d74-5a7d-4c3e-a13e-b2736032d945 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/003071316"}, "pid": "121", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:13.567519 2024-09-11 09:00:13.567523 c93f0d7a-827c-4000-a2df-9b06de3c61c7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/003078434"}, "pid": "122", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:13.618411 2024-09-11 09:00:13.618413 bcb94298-a634-4010-8e96-8ba2267acdc2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/003082725"}, "pid": "123", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:13.668795 2024-09-11 09:00:13.6688 e91c593f-31dd-4406-91f4-f8e9d83cdbfd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/003202720"}, "pid": "124", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:13.72751 2024-09-11 09:00:13.727513 a4af1c8a-3a92-4ee9-b525-798a5627ce64 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/003500950"}, "pid": "125", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:13.790012 2024-09-11 09:00:13.790016 bdd76964-dced-47ac-bf2d-79750b143748 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/003700526"}, "pid": "126", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:13.842554 2024-09-11 09:00:13.842558 2f13fc2f-bff6-4782-a6b9-17871b64862e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00370064X"}, "pid": "127", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:13.891876 2024-09-11 09:00:13.89188 5b4ed53b-7a50-4b3e-969e-ffc45dedbce2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/003806596"}, "pid": "128", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:13.942983 2024-09-11 09:00:13.942987 56679fdf-089d-498f-a33d-eb82169ed104 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/003811840"}, "pid": "129", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:13.992255 2024-09-11 09:00:13.992259 afaacf70-653d-4bf8-8f98-6a1602438e47 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00381307X"}, "pid": "130", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:14.051573 2024-09-11 09:00:14.051575 855463a8-d282-4236-bd2c-42615ed1c8b5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004008294"}, "pid": "131", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:14.108546 2024-09-11 09:00:14.10855 42bef282-5b4e-4370-a12b-86c4be69f8c2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004029763"}, "pid": "132", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:14.157272 2024-09-11 09:00:14.157274 3fc1e6c6-a161-41ef-b9ea-a094fc0bda0e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004036239"}, "pid": "133", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:14.209179 2024-09-11 09:00:14.209183 8de81610-7e3b-4bff-ac36-d44b91b90852 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004037073"}, "pid": "134", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:14.259665 2024-09-11 09:00:14.259669 b0378c6f-e125-4159-8636-27d000398245 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004056264"}, "pid": "135", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:14.318379 2024-09-11 09:00:14.318382 ee9e976c-b8d2-40e4-899d-5ea1df57e5ee {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00406397X"}, "pid": "136", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:14.370404 2024-09-11 09:00:14.370407 ce702e3e-67ea-46ac-830b-0c3648d6499e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004083687"}, "pid": "137", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:14.422019 2024-09-11 09:00:14.422022 59397cc4-d6f5-4a7d-ba47-b5d9f348c547 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004084233"}, "pid": "138", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:14.480095 2024-09-11 09:00:14.480098 f6572c4e-8ef7-4bcb-bec8-a417fc4e0301 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00408487X"}, "pid": "139", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:14.54231 2024-09-11 09:00:14.542315 3ded8a12-699e-41bb-b4cc-76cb210ae691 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004088212"}, "pid": "140", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:14.592869 2024-09-11 09:00:14.592871 d86535fe-0d9b-487a-8d66-4240965bb6c4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004089049"}, "pid": "141", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:14.644649 2024-09-11 09:00:14.644653 bdd75ee5-2456-4856-a8d8-0b3f6d4f4175 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00409753X"}, "pid": "142", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:14.700582 2024-09-11 09:00:14.700586 a36801c2-4324-404f-b4b3-3603c335ad7d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004106059"}, "pid": "143", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:14.758805 2024-09-11 09:00:14.758809 a6212381-1419-4406-b1b5-cee1c812b1af {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004110404"}, "pid": "144", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:14.807513 2024-09-11 09:00:14.807516 81dc1aac-2554-4f39-8b87-8ff60157293d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004112148"}, "pid": "145", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:14.859741 2024-09-11 09:00:14.859744 a5d3aeb2-4e16-4ca2-b76f-353c50c2a1e8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004115996"}, "pid": "146", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:14.91145 2024-09-11 09:00:14.911454 a31e3be3-d9fd-477d-bc2c-8ab4f14992c1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004119983"}, "pid": "147", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:14.965421 2024-09-11 09:00:14.965424 d01a7475-c2f8-4ee2-a302-40c92c1c0434 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004123158"}, "pid": "148", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:15.013683 2024-09-11 09:00:15.013686 d0df240a-6ff1-4738-a382-63c5c0ce30d3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004127900"}, "pid": "149", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:15.067418 2024-09-11 09:00:15.067421 0ce8d4f6-dbb1-4279-82cc-59fab1fe6be9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00414631X"}, "pid": "150", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:15.130568 2024-09-11 09:00:15.13057 3e87507b-a590-463e-bf53-9b4a65b89e6b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004149289"}, "pid": "151", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:15.184947 2024-09-11 09:00:15.18495 c6a35d9e-ae3d-41b3-8d0e-716417091388 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004150988"}, "pid": "152", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:15.241706 2024-09-11 09:00:15.24171 8151864a-5ebd-41f5-ac70-d291b9aea380 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004151917"}, "pid": "153", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:15.303395 2024-09-11 09:00:15.303398 f7b801e7-2c24-4d85-b51a-0bd3240f09d0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004159837"}, "pid": "154", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:15.353995 2024-09-11 09:00:15.353998 eb046c44-da97-4b74-b4a4-bac9e1dc7e40 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004171004"}, "pid": "155", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:15.415898 2024-09-11 09:00:15.415902 c4cb6792-7ff8-4338-b7f1-ca8436c14916 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00418484X"}, "pid": "156", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:15.468084 2024-09-11 09:00:15.468086 66570c09-0a59-4480-84ce-da8a6b6dc0ba {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004191811"}, "pid": "157", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:15.521981 2024-09-11 09:00:15.521984 23403527-7586-4eed-b935-1564b0a47c36 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004196287"}, "pid": "158", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:15.576672 2024-09-11 09:00:15.576675 6517e75c-128e-46eb-8ce4-228fe2918644 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004220765"}, "pid": "159", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:15.628201 2024-09-11 09:00:15.628204 255bbebe-58a8-47cf-ac11-92ac47fc2e2a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004232933"}, "pid": "160", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:15.693856 2024-09-11 09:00:15.693861 58fbc9d5-33a6-4fbc-be6f-d27ef3e02eb3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004247280"}, "pid": "161", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:15.746041 2024-09-11 09:00:15.746044 7c882783-152c-49f3-acfc-0825b131e2b7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004263707"}, "pid": "162", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:15.800048 2024-09-11 09:00:15.800051 50f39101-81c5-4e45-a6d1-144cb5fb56ce {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004265718"}, "pid": "163", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:15.858 2024-09-11 09:00:15.858004 5ecd5de4-1c4a-4f16-9d74-86f5cec2a969 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004270525"}, "pid": "164", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:15.931881 2024-09-11 09:00:15.931886 3def222e-5c17-47ab-b6dc-6bf1860436aa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004285565"}, "pid": "165", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:15.993363 2024-09-11 09:00:15.993366 0eb06c2f-581c-4ed9-b486-faac47280873 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004288637"}, "pid": "166", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:16.048516 2024-09-11 09:00:16.04852 db06c7d3-c6c2-4906-8b10-057260b4ceed {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004290674"}, "pid": "167", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:16.105032 2024-09-11 09:00:16.105035 135469d9-6cbd-47bb-b9db-a5b40c129622 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004315669"}, "pid": "168", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:16.157443 2024-09-11 09:00:16.157446 e18718c6-4956-4996-b6d4-93b0c51895c1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004340183"}, "pid": "169", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:16.235363 2024-09-11 09:00:16.235366 1685f1a4-0499-4936-a603-31af2107021f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004358554"}, "pid": "170", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:16.284266 2024-09-11 09:00:16.284268 de517a37-8d36-4a00-97d6-c05b8f2ee2f1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004361342"}, "pid": "171", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:16.339286 2024-09-11 09:00:16.33929 6e75cbf6-67fc-4c7b-88d4-12fe24dfd5ae {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004363779"}, "pid": "172", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:16.402313 2024-09-11 09:00:16.402316 a7ad1435-c85d-4760-b08a-da9d90dd48f9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004379802"}, "pid": "173", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:16.455313 2024-09-11 09:00:16.455317 e70735fd-4989-4a3d-b92a-184ca23febe9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004384865"}, "pid": "174", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:16.507193 2024-09-11 09:00:16.507196 973b1ca1-eec7-4160-9c86-5da13cb3eef2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004394828"}, "pid": "175", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:16.560763 2024-09-11 09:00:16.560767 96a5d3b0-6972-47a7-a9a7-a1697d06842a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004401875"}, "pid": "176", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:16.618715 2024-09-11 09:00:16.618719 95a73249-f0ce-4ba3-a037-ab464ee46095 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004406583"}, "pid": "177", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:16.674299 2024-09-11 09:00:16.674303 94107945-683d-4957-83e3-3f7da1892ddc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004407156"}, "pid": "178", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:16.727884 2024-09-11 09:00:16.727889 da899f01-8cac-41db-b846-15391ecca1af {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00442204X"}, "pid": "179", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:16.77942 2024-09-11 09:00:16.779422 733c06bc-1857-4c64-afc2-b67e54b3d392 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004427734"}, "pid": "180", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:16.832471 2024-09-11 09:00:16.832475 d11919fe-baa2-40a1-972e-2adbb98e9ea4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004444507"}, "pid": "181", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:16.885255 2024-09-11 09:00:16.885259 98056801-2ab3-4765-933c-abd45183bfc1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004453379"}, "pid": "182", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:16.946542 2024-09-11 09:00:16.946545 55e1de4c-1f3c-431c-b6d9-c8faf648747c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004462572"}, "pid": "183", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:17.009722 2024-09-11 09:00:17.009727 b9f89f2b-fd24-47ff-898a-62b2015d5be1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004475771"}, "pid": "184", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:17.063245 2024-09-11 09:00:17.063249 1610da3a-40ea-481d-b633-51b2f0a752e7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004479319"}, "pid": "185", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:17.116837 2024-09-11 09:00:17.11684 0951de74-1606-4209-ab41-3387cbf6db63 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004507673"}, "pid": "186", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:17.16608 2024-09-11 09:00:17.166083 ecba14a7-a116-4a51-8cec-4b1a1fb352d6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004522176"}, "pid": "187", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:17.219955 2024-09-11 09:00:17.21996 cf27ba62-2501-4b77-991f-b867f921bc3f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004534972"}, "pid": "188", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:17.282658 2024-09-11 09:00:17.282661 fd58be77-d510-4fee-af9e-9d6d6f114a88 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004535642"}, "pid": "189", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:17.350693 2024-09-11 09:00:17.350698 59b2c531-f1c7-437a-b042-1cf384915988 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004544617"}, "pid": "190", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:17.412634 2024-09-11 09:00:17.412637 6ceee98d-2519-41ac-a539-92868eb0f8b4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004554159"}, "pid": "191", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:17.487105 2024-09-11 09:00:17.48711 0a16bfcd-ef58-4047-87b7-ecfb89b8aa16 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004556208"}, "pid": "192", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:17.551288 2024-09-11 09:00:17.551292 fe68c1bb-04a6-43d0-8d31-5c23a6912357 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004559444"}, "pid": "193", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:17.605347 2024-09-11 09:00:17.60535 43b50434-5322-4e84-8eb4-a3883c729c63 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004570359"}, "pid": "194", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:17.656577 2024-09-11 09:00:17.65658 3df35ee3-07bf-4a33-842d-c02e75d19899 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004612876"}, "pid": "195", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:17.711438 2024-09-11 09:00:17.711443 374c975b-21ab-4606-b052-e43458a878aa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004652851"}, "pid": "196", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:17.7673 2024-09-11 09:00:17.767303 67ddf986-74ce-4b62-af35-33c1dc475557 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004656253"}, "pid": "197", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:17.820585 2024-09-11 09:00:17.820588 daf6a9d0-b4d3-4980-9270-20a0196b35fe {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004674316"}, "pid": "198", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:17.877492 2024-09-11 09:00:17.877496 61a4d498-5042-482c-99ab-903c5dbf3d33 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004680596"}, "pid": "199", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:17.934531 2024-09-11 09:00:17.934534 142af984-21dc-478c-a220-c1f8fb4e5848 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004685873"}, "pid": "200", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:17.996065 2024-09-11 09:00:17.996069 2e14a3c7-e5ac-4c31-b451-746da0ea6936 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004687280"}, "pid": "201", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:18.056778 2024-09-11 09:00:18.056782 26d095a1-dada-4be1-befe-ac073ec9ef1c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004708083"}, "pid": "202", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:18.117871 2024-09-11 09:00:18.117875 96b6a923-49e1-48ed-a140-8f258e5a99a9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004726642"}, "pid": "203", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:18.189017 2024-09-11 09:00:18.189021 302d9ee6-8ca5-4c67-8ae5-33f4a523c37d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00473985X"}, "pid": "204", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:18.261288 2024-09-11 09:00:18.261291 79d9f978-7deb-4251-8ed6-26e5c247cd3e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004746333"}, "pid": "205", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:18.312926 2024-09-11 09:00:18.312928 c74fda0b-cfdf-4c95-9070-3ad590f542a1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004753194"}, "pid": "206", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:18.367031 2024-09-11 09:00:18.367035 947a6955-269a-4e60-8607-e4d13e52638f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004772350"}, "pid": "207", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:18.422558 2024-09-11 09:00:18.42256 43feb652-1981-4886-a78f-4c10d04bac5b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00480435X"}, "pid": "208", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:18.484956 2024-09-11 09:00:18.48496 d409f04d-1f74-406a-977e-e0e8103e963f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004812476"}, "pid": "209", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:18.546232 2024-09-11 09:00:18.546235 3772bab2-98e9-4538-b6d3-6def70812200 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004815483"}, "pid": "210", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:18.605855 2024-09-11 09:00:18.605859 e82d50a2-7c3a-4a74-a38d-db651e1729a1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004837541"}, "pid": "211", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:18.671044 2024-09-11 09:00:18.671047 8482483f-f77e-41c2-8da5-6113876c0a92 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004867645"}, "pid": "212", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:18.729925 2024-09-11 09:00:18.729943 87de2195-2036-4caf-9ea1-bd0a470ed5f4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004868250"}, "pid": "213", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:18.812161 2024-09-11 09:00:18.812165 0e0b8fad-c9e3-4c7c-a8ed-aadc9479a916 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004888324"}, "pid": "214", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:18.867456 2024-09-11 09:00:18.867459 084e0de7-53c7-42fd-a3e9-df23314e841d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004890868"}, "pid": "215", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:18.929909 2024-09-11 09:00:18.929913 b7c20346-2abe-40dc-9c07-a676e875d6f0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004895002"}, "pid": "216", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:18.989244 2024-09-11 09:00:18.989247 8a75726a-bca7-4d92-ae55-f684ff471d0b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00490110X"}, "pid": "217", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:19.044139 2024-09-11 09:00:19.044143 7f37bc67-bcc3-4110-94ef-9b2c09d09103 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004904508"}, "pid": "218", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:19.094115 2024-09-11 09:00:19.094118 ab69e9bb-a67d-4cf0-8599-5ee271d3bfab {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004921445"}, "pid": "219", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:19.148437 2024-09-11 09:00:19.148439 b87d32b7-2bec-453d-99dd-2be75120bc8a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004930118"}, "pid": "220", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:19.205463 2024-09-11 09:00:19.205465 32d6562e-6eed-40cb-93dd-2b83f276b9b9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00495081X"}, "pid": "221", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:19.264406 2024-09-11 09:00:19.264411 237df0fb-565c-4a88-8397-b38e85a30ebc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004954599"}, "pid": "222", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:19.328434 2024-09-11 09:00:19.328437 5a3f903d-e755-46d7-a25d-1a555f300253 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004984242"}, "pid": "223", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:19.381775 2024-09-11 09:00:19.381778 e40bec84-db33-4108-955b-ab7aba485d36 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/004995732"}, "pid": "224", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:19.435668 2024-09-11 09:00:19.435671 43fe90b5-8e08-4fe7-a228-4cd143cf4743 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/005029902"}, "pid": "225", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:19.499231 2024-09-11 09:00:19.499236 9b058ae3-93f8-4e1b-aa9b-4cf9b3361777 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/005034523"}, "pid": "226", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:19.565136 2024-09-11 09:00:19.565141 a7b6cc01-5368-45fd-b7bf-c7108ab7b069 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/005053625"}, "pid": "227", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:19.620243 2024-09-11 09:00:19.620246 a1a3a8d8-1536-45ac-85cf-01a7459299f8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00505656X"}, "pid": "228", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:19.676637 2024-09-11 09:00:19.676641 342016d3-41e2-4be2-bbd4-07b72fc9887a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/005059054"}, "pid": "229", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:19.726531 2024-09-11 09:00:19.726534 98378d66-02fa-494a-9687-d48a968b87ad {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/005073189"}, "pid": "230", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:19.777849 2024-09-11 09:00:19.777852 bdcbe042-e7fc-49c7-86a5-a36efef83949 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/005095344"}, "pid": "231", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:19.829769 2024-09-11 09:00:19.829772 6d5b837c-e048-44fa-830e-f63b1defadcd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00509657X"}, "pid": "232", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:19.890273 2024-09-11 09:00:19.890277 73f7ab89-18d7-449a-b0ae-2730f45d300e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/005124972"}, "pid": "233", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:19.946082 2024-09-11 09:00:19.946085 787a4b63-4d0d-483f-ade6-d05252574c80 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/006002579"}, "pid": "234", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:19.999064 2024-09-11 09:00:19.999068 3fb3b6a8-3912-4da6-9a32-55531e1a4ae0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/006007295"}, "pid": "235", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:20.057015 2024-09-11 09:00:20.057018 5741f1b6-0560-4985-acd9-7cf76fdf43d9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/006010008"}, "pid": "236", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:20.108194 2024-09-11 09:00:20.108199 7d2fd949-7132-4eac-89d0-ef17600f8877 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/006058825"}, "pid": "237", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:20.16664 2024-09-11 09:00:20.166644 44c17fb9-529f-4d12-a66f-fd8673d1d580 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/006216722"}, "pid": "238", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:20.217509 2024-09-11 09:00:20.217511 4402625d-dc91-4087-a25b-ed10deec3e52 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/006226663"}, "pid": "239", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:20.304753 2024-09-11 09:00:20.304756 0e4c6146-a67e-40f3-a9e9-4f0a302a338e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/006234224"}, "pid": "240", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:20.356818 2024-09-11 09:00:20.356822 f09cfc8a-62ef-446d-a761-e9da7170231f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/006237754"}, "pid": "241", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:20.415613 2024-09-11 09:00:20.415617 e4fce74a-3cf5-4422-ab38-1d0a00f81c56 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/006243282"}, "pid": "242", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:20.479758 2024-09-11 09:00:20.479761 1a21414e-1ba5-4f1e-bcc2-0d8b385f82ac {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/006674410"}, "pid": "243", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:20.535206 2024-09-11 09:00:20.53521 482d7f74-aa41-4959-bbaf-1f2a0c7dcb8c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/006684378"}, "pid": "244", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:20.587926 2024-09-11 09:00:20.587929 60806a91-ca87-44b9-9a22-953f19400e88 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/006688977"}, "pid": "245", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:20.643728 2024-09-11 09:00:20.643732 cf233713-eccd-47bd-b0d0-647c50a9d936 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/006693911"}, "pid": "246", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:20.696612 2024-09-11 09:00:20.696616 213e1ae9-7622-4fd6-8dfc-29b700c9d150 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/006699618"}, "pid": "247", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:20.752278 2024-09-11 09:00:20.752282 a05b6fcd-b894-4b04-98bb-1f6d19ffb205 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/006705847"}, "pid": "248", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:20.845323 2024-09-11 09:00:20.845326 4c14b08c-a873-4bc9-a99d-07c00b3b5afc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007015089"}, "pid": "249", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:20.897745 2024-09-11 09:00:20.89775 b3945c5e-e1e9-4318-9cf2-d56dff1f9e5d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007030150"}, "pid": "250", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:20.958889 2024-09-11 09:00:20.958892 a49ce5a9-c208-4be0-acac-ecbeb3c3fb2d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007031394"}, "pid": "251", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:21.010283 2024-09-11 09:00:21.010286 30d07506-7650-4fc8-b1b6-3fe93b104e2f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007032641"}, "pid": "252", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:21.067975 2024-09-11 09:00:21.067978 22e9e730-2353-45a9-9b20-9f8dba03e66d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007059981"}, "pid": "253", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:21.127556 2024-09-11 09:00:21.127558 5f13aa63-6046-4651-835b-7c9c9144d17c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007060637"}, "pid": "254", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:21.183865 2024-09-11 09:00:21.183869 d39015c2-cc0e-4242-ba04-7268ddfa583c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007061757"}, "pid": "255", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:21.237286 2024-09-11 09:00:21.237289 d6a6d395-d3ec-4da5-bdf1-5a1f7722d42b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007097123"}, "pid": "256", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:21.300027 2024-09-11 09:00:21.300029 84f41bc9-9e6c-43fa-9ed2-c9830364a843 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007100434"}, "pid": "257", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:21.362885 2024-09-11 09:00:21.36289 cc831421-1ef5-4081-bcbf-8d5f2aa73d87 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007104456"}, "pid": "258", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:21.413672 2024-09-11 09:00:21.413675 44c93ce5-a1ee-478e-9325-2d5cda6d4a4f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007104804"}, "pid": "259", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:21.470102 2024-09-11 09:00:21.470105 d07ba422-e938-4e2d-ba35-4b5f912d5809 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007119666"}, "pid": "260", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:21.523792 2024-09-11 09:00:21.523794 0d7e6c25-1897-48a4-9c73-a2f5597d5788 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007172125"}, "pid": "261", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:21.587303 2024-09-11 09:00:21.587306 ad3fa122-f4e7-4c6f-95c6-c3994b4817aa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007207409"}, "pid": "262", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:21.639933 2024-09-11 09:00:21.639935 7bdf3004-d661-4ccf-a53d-3208e9d8be96 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007209320"}, "pid": "263", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:21.689885 2024-09-11 09:00:21.689887 04683423-ef56-483a-87ba-a72106d115f1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007210019"}, "pid": "264", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:21.779154 2024-09-11 09:00:21.779159 1bec7199-15a5-4428-bb26-5fdc5be929dd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007221010"}, "pid": "265", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:21.837727 2024-09-11 09:00:21.83773 13e1ec56-b593-4a7e-b60b-de1e3962edbd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007229003"}, "pid": "266", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:21.894917 2024-09-11 09:00:21.89492 64ad3096-47a9-4b4b-8802-cd6f14fb5713 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007233000"}, "pid": "267", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:21.964224 2024-09-11 09:00:21.964228 dca7d263-9fd4-4a0a-b02e-4931dc7a84ac {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007251920"}, "pid": "268", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:22.020317 2024-09-11 09:00:22.020322 7c41f415-0ace-4cc1-b572-bfc5101fc36e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007262329"}, "pid": "269", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:22.089988 2024-09-11 09:00:22.089992 0b2b7925-de4d-48e8-b0b7-0b7cd2008013 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007269358"}, "pid": "270", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:22.155446 2024-09-11 09:00:22.15545 9ade61f4-3e0f-46df-8f01-52d9f7938b2c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007284659"}, "pid": "271", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:22.213541 2024-09-11 09:00:22.213544 eb76a6b3-6f11-48b4-bd47-367b408d766f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007305117"}, "pid": "272", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:22.272898 2024-09-11 09:00:22.272902 d2b3c677-7787-44a6-a79a-4ce1e50a6688 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007309600"}, "pid": "273", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:22.326681 2024-09-11 09:00:22.326685 0208c45d-4e0a-44d7-8f4e-848e9ede2552 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007310005"}, "pid": "274", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:22.378627 2024-09-11 09:00:22.37863 29807de9-3946-46ea-b56f-b7529c422cb2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00731566X"}, "pid": "275", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:22.429112 2024-09-11 09:00:22.429116 bd407ff4-90f0-46bf-b460-ef482295bae8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007318413"}, "pid": "276", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:22.486624 2024-09-11 09:00:22.486628 e62c87ee-6bf2-462e-8713-c4fbc3033fe6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007319126"}, "pid": "277", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:22.538127 2024-09-11 09:00:22.53813 cc677ed7-350d-41e8-93c6-da2101b3770c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007322062"}, "pid": "278", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:22.591352 2024-09-11 09:00:22.591355 818e7946-0a16-483f-8e8c-5f399f506bc7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007353189"}, "pid": "279", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:22.646076 2024-09-11 09:00:22.64608 b7e79c93-73c0-41f6-8d75-ec909bc1aea5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007365950"}, "pid": "280", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:22.699839 2024-09-11 09:00:22.699841 404bcfae-b634-4d16-b4ac-a893ede48bd3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007366701"}, "pid": "281", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:22.754747 2024-09-11 09:00:22.754752 11fa4b4b-746b-45ea-9a12-41948f6cc5e1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007378238"}, "pid": "282", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:22.811761 2024-09-11 09:00:22.811766 0a01ffa1-6914-41a2-80f3-dcd497379f89 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007386133"}, "pid": "283", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:22.877856 2024-09-11 09:00:22.877859 ec125d5f-0ea9-47b1-8d30-56909aa3344b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007391765"}, "pid": "284", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:22.931323 2024-09-11 09:00:22.931327 b6f55f90-c966-45d3-99f1-860a04ed19be {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007396848"}, "pid": "285", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:22.998374 2024-09-11 09:00:22.998378 e54658c7-7ce2-4aa2-9524-70d6b1bed92e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007405995"}, "pid": "286", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:23.053643 2024-09-11 09:00:23.053646 66b9cac6-3e6b-486b-ae8e-7ac5d4c035ea {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007412193"}, "pid": "287", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:23.105931 2024-09-11 09:00:23.105934 6ec15df3-02aa-4746-944d-c7b63968155d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007420501"}, "pid": "288", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:23.158735 2024-09-11 09:00:23.158738 0a4406a8-b965-4ace-89af-87c4e884ad63 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007426321"}, "pid": "289", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:23.251423 2024-09-11 09:00:23.251426 26018c73-f3b8-4ac2-b6a3-0b762d73ab1d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007439210"}, "pid": "290", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:23.314828 2024-09-11 09:00:23.314833 bf3ea306-59f3-4b76-a675-7ff185409893 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007444788"}, "pid": "291", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:23.370363 2024-09-11 09:00:23.370366 427ecfa9-1cca-4727-a660-27e7604147a5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007453523"}, "pid": "292", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:23.427082 2024-09-11 09:00:23.427085 f0ea53eb-c7ee-4275-95f0-0ec24acd9f6b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007473338"}, "pid": "293", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:23.479128 2024-09-11 09:00:23.479131 953df249-7d4a-48e7-b0b3-17304788a63d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007495684"}, "pid": "294", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:23.534222 2024-09-11 09:00:23.534225 ee944254-6b8d-4a93-a286-a50e0ee396f4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007543204"}, "pid": "295", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:23.587937 2024-09-11 09:00:23.58794 07a3dcc8-3d45-4d72-add3-0ceca1aae5de {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007547692"}, "pid": "296", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:23.643225 2024-09-11 09:00:23.643229 c6188f63-4514-417d-a741-4606bc10eb6a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007550278"}, "pid": "297", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:23.694604 2024-09-11 09:00:23.694609 f94aaa70-bac1-4a25-b0cf-947a047ea003 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007553684"}, "pid": "298", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:23.746828 2024-09-11 09:00:23.746831 c04631e0-19f3-4ccd-921d-94227a5c5387 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007555245"}, "pid": "299", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:23.801418 2024-09-11 09:00:23.801421 4cc690d9-1fcb-4fed-9d85-b7b387b8cc69 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007571054"}, "pid": "300", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:23.855346 2024-09-11 09:00:23.855349 2cb9c574-afd6-43cd-b5d0-042f5641e69f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007575882"}, "pid": "301", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:23.921163 2024-09-11 09:00:23.921167 69a13de0-52df-474a-ad2e-2ad157b15ce5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007590172"}, "pid": "302", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:23.980989 2024-09-11 09:00:23.980993 f1d05768-0c4e-470c-a6cf-360918354ec8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00760453X"}, "pid": "303", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:24.03708 2024-09-11 09:00:24.037082 80f6c4f9-1cf8-4f6f-8c62-e6a0043288c5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007605285"}, "pid": "304", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:24.102594 2024-09-11 09:00:24.102599 19bc9f4f-4b75-4ebf-af1c-43e7ee3e01da {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007620756"}, "pid": "305", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:24.16404 2024-09-11 09:00:24.164044 cb04f860-f68d-464f-bec4-79ec0ea7c790 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007631731"}, "pid": "306", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:24.21522 2024-09-11 09:00:24.215223 dd6f71de-7d9f-4db9-8f04-2eaa91dc2180 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007642423"}, "pid": "307", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:24.268595 2024-09-11 09:00:24.268598 d1836b44-a130-4cab-a649-413755c81056 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007646895"}, "pid": "308", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:24.324412 2024-09-11 09:00:24.324414 9052f3f2-62b9-4adc-b9ee-75e46ecfaf3d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007675844"}, "pid": "309", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:24.39904 2024-09-11 09:00:24.399043 bf36e5ef-f617-47f0-b48b-754c44caf5b4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007676174"}, "pid": "310", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:24.460792 2024-09-11 09:00:24.460795 7ee3fbbc-79a3-4a3f-9425-2f0b5b695235 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007690495"}, "pid": "311", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:24.511502 2024-09-11 09:00:24.511505 4ac4b100-7e29-43f4-be58-7b63f2df49c3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007736851"}, "pid": "312", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:24.569061 2024-09-11 09:00:24.569064 708dbe00-cb3e-49ee-a3e3-4e8899dea537 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007744862"}, "pid": "313", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:24.631636 2024-09-11 09:00:24.63164 9e9c6d70-707d-428a-9dfc-32be907ecd5a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007762321"}, "pid": "314", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:24.687367 2024-09-11 09:00:24.687371 766e8df4-5784-4a2c-9840-0ef06222ac26 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007765908"}, "pid": "315", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:24.739834 2024-09-11 09:00:24.739836 e5efc4ef-2ec2-4f17-9b49-bf5f4e63780b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007776500"}, "pid": "316", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:24.802489 2024-09-11 09:00:24.802492 d5153204-0517-4cf2-8f39-81b65b9a5d8d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007777639"}, "pid": "317", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:24.858217 2024-09-11 09:00:24.858221 a0baa40f-9d97-43b0-9e43-df52f6d58a63 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007781113"}, "pid": "318", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:24.911304 2024-09-11 09:00:24.911307 bb2ccd8c-ead9-44e5-bcb0-c9b4d23862ce {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007783574"}, "pid": "319", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:24.965746 2024-09-11 09:00:24.965748 3bb34201-0d56-4368-9bc6-8246208309bd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007792948"}, "pid": "320", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:25.016753 2024-09-11 09:00:25.016756 15607605-6670-4ec1-ae94-752824aeab5a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007793731"}, "pid": "321", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:25.068969 2024-09-11 09:00:25.068972 12ea9bee-7bc5-4931-aced-e900317f84b9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/007796811"}, "pid": "322", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:25.12056 2024-09-11 09:00:25.120563 89b8e9fe-452f-4f40-b2bc-7b36a43924c2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/00779827X"}, "pid": "323", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:25.175453 2024-09-11 09:00:25.175456 95425add-8f8c-4b3d-bd5d-c581a208e754 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/008030286"}, "pid": "324", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:25.229665 2024-09-11 09:00:25.229667 6268a346-94bc-43bf-a77d-07a651da587e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/008036985"}, "pid": "325", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:25.314905 2024-09-11 09:00:25.314908 e363cea2-0b98-4ecd-9402-42acadf90b7e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/008055262"}, "pid": "326", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:25.369714 2024-09-11 09:00:25.369717 f6b112d7-ea5c-4009-844a-ab5ca57761ea {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/008059365"}, "pid": "327", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:25.421648 2024-09-11 09:00:25.42165 66294432-73fb-4573-863e-3af584e15432 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/008094217"}, "pid": "328", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:25.472085 2024-09-11 09:00:25.472087 cc90b1c6-bc99-4cf1-ae29-1b57bdd8af02 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/008095086"}, "pid": "329", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:25.525507 2024-09-11 09:00:25.525511 cd5404b3-6e75-430e-afec-28f0773bc8ad {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/008112282"}, "pid": "330", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:25.588543 2024-09-11 09:00:25.588546 a9fb9e4b-c5db-4d1a-81dd-1bd7ec5945eb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/008119198"}, "pid": "331", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:25.644875 2024-09-11 09:00:25.644879 1c5290f1-9652-4c09-879b-cea53c2a312c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/008122830"}, "pid": "332", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:25.705798 2024-09-11 09:00:25.7058 c966e44e-8421-463d-8bbd-0cd567a791d4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/008140111"}, "pid": "333", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:25.755418 2024-09-11 09:00:25.755422 925d3701-b6ab-4427-a780-532c985dc159 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/008147841"}, "pid": "334", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:25.807311 2024-09-11 09:00:25.807314 b33616ba-edf9-4530-90a1-be729cfcccbb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/008151733"}, "pid": "335", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:25.85737 2024-09-11 09:00:25.857373 bf43712b-5fdd-4d63-b304-f9ad12a96431 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/008157103"}, "pid": "336", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:25.91023 2024-09-11 09:00:25.910233 fc711629-9d01-4722-bd77-94a4d82491d0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/008165068"}, "pid": "337", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:25.962456 2024-09-11 09:00:25.96246 0c06c89d-afa2-44ea-b920-ca3cabe2115e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/008169446"}, "pid": "338", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:26.019045 2024-09-11 09:00:26.019047 0a9111df-6049-4278-8188-b84d01f3ce27 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/008169691"}, "pid": "339", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:26.079911 2024-09-11 09:00:26.079914 a4b88d71-c603-4366-a1b8-ca171aeb86a5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/008183147"}, "pid": "340", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:26.145573 2024-09-11 09:00:26.145576 21fc5d8a-00fd-478d-bacb-1dd57fc1558e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/008183171"}, "pid": "341", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:26.199985 2024-09-11 09:00:26.199988 52f98be9-fe9c-4df4-9b22-cc7b711233a5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/008186596"}, "pid": "342", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:26.253155 2024-09-11 09:00:26.253158 b00b3a4b-88cd-46ad-afe8-852d8cda45fd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/030010462"}, "pid": "343", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:26.312831 2024-09-11 09:00:26.312834 10c682f3-9213-4b7a-a6d8-c66525552c56 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/030011213"}, "pid": "344", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:26.362287 2024-09-11 09:00:26.362291 854d57eb-1d65-4c7d-81d4-9b780f649481 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/030028841"}, "pid": "345", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:26.414246 2024-09-11 09:00:26.414249 5fd8b7ac-60dd-4859-9932-95c614d88b13 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/03003891X"}, "pid": "346", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:26.467633 2024-09-11 09:00:26.467637 b9540f65-72d4-4a67-a76f-b7d176505e09 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/03005205X"}, "pid": "347", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:26.535798 2024-09-11 09:00:26.535801 aff77291-208b-413c-a4da-e700c65bfca2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/030052912"}, "pid": "348", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:26.600368 2024-09-11 09:00:26.600371 b627f339-d168-4a70-90f0-61faf809eeda {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/030072409"}, "pid": "349", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:26.666148 2024-09-11 09:00:26.66615 235c9c13-b414-4fb1-a904-c37ef515ef46 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/030078768"}, "pid": "350", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:26.722782 2024-09-11 09:00:26.722785 179ed939-df13-45a5-b930-a3f8e5105cc6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/030081297"}, "pid": "351", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:26.777295 2024-09-11 09:00:26.777298 85752ed9-52d7-4435-ab6c-4d0325c3edd5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/030120926"}, "pid": "352", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:26.825757 2024-09-11 09:00:26.82576 67f7ee62-68f3-408f-b200-cd8c2096ef18 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/03012199X"}, "pid": "353", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:26.879136 2024-09-11 09:00:26.879139 6ef70c6f-dbed-495b-aac2-e9a7d06b7a01 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/03012929X"}, "pid": "354", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:26.933215 2024-09-11 09:00:26.933219 030f35a8-ca4b-4825-af78-d24f5c7e104c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/030132053"}, "pid": "355", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:26.984226 2024-09-11 09:00:26.984231 cdd4314d-004f-40af-a9ff-534da57145f6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/030135567"}, "pid": "356", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:27.035094 2024-09-11 09:00:27.035096 50bdf46f-c5bb-4580-b35a-93f42591180c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/030146690"}, "pid": "357", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:27.084261 2024-09-11 09:00:27.084264 22c7397a-bbd4-4f44-bda4-3a3f9b78b315 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/030152089"}, "pid": "358", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:27.143288 2024-09-11 09:00:27.143291 400f4ccb-2d3d-4eed-bf0e-7c3b4ab12bb8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/030153727"}, "pid": "359", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:27.21299 2024-09-11 09:00:27.212993 7610a3db-3292-4084-b42a-181242d6d88e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/030168910"}, "pid": "360", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:27.278893 2024-09-11 09:00:27.278896 69a6b787-529d-49b2-ae83-c2d042823c42 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/030183251"}, "pid": "361", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:27.329823 2024-09-11 09:00:27.329827 3316cd46-dea4-45b6-a401-4242c3eddaca {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/041027752"}, "pid": "362", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:27.383784 2024-09-11 09:00:27.383787 37afe0f3-3423-42e1-a4f4-c76f5bb166ce {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/041297423"}, "pid": "363", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:27.461453 2024-09-11 09:00:27.461457 376276df-6c66-4319-af42-fde8bf5d5a62 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/042249627"}, "pid": "364", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:27.524851 2024-09-11 09:00:27.524853 f85ec388-5ae2-4d92-833c-4b4a1b2daf41 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/042260264"}, "pid": "365", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:27.593801 2024-09-11 09:00:27.593805 493bc82a-7ea6-4896-ae2a-82c508f899d7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/042968097"}, "pid": "366", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:27.651245 2024-09-11 09:00:27.651248 d44214dc-991f-475d-8713-32246dd815e1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050000462"}, "pid": "367", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:27.705367 2024-09-11 09:00:27.70537 def54ccc-32f1-4bb5-aabd-65ca931b96f8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/05000736X"}, "pid": "368", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:27.758164 2024-09-11 09:00:27.758167 40f3b8c1-555f-4386-9370-e7ad30232496 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/05001692X"}, "pid": "369", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:27.811456 2024-09-11 09:00:27.811459 2c2ef56f-45f9-4aba-bebe-af3e146160c8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050031937"}, "pid": "370", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:27.877923 2024-09-11 09:00:27.877927 1d977880-7998-4dbf-9cb6-3e41e11b54e9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050047043"}, "pid": "371", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:27.927679 2024-09-11 09:00:27.927683 8385c997-1330-4fcc-a4b6-36d726bb88d9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050053396"}, "pid": "372", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:27.981996 2024-09-11 09:00:27.981999 5684d5ce-5a69-4ea7-8804-6ac4b9ca59ae {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/05005967X"}, "pid": "373", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:28.048933 2024-09-11 09:00:28.048936 aa6f3af9-d5a9-409d-9cc7-0dc27cdf890e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050070606"}, "pid": "374", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:28.10132 2024-09-11 09:00:28.101322 53604039-4b5c-46a0-b1ef-24b22dca3882 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050096672"}, "pid": "375", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:28.157036 2024-09-11 09:00:28.157039 15568e0e-c1e6-4215-89d4-1fc72f8b9064 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/05009808X"}, "pid": "376", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:28.212622 2024-09-11 09:00:28.212625 19a2a53b-18db-4aff-ab5c-906a4310ba4b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050105884"}, "pid": "377", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:28.275321 2024-09-11 09:00:28.275326 326dfb03-60d2-4394-bc6f-08723656bb15 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050122916"}, "pid": "378", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:28.327479 2024-09-11 09:00:28.327481 9a645bf0-fa8a-463b-9911-81b730cd5709 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050132229"}, "pid": "379", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:28.377961 2024-09-11 09:00:28.377964 a4922b03-d728-4de9-82d2-1ac9c60c7058 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050145363"}, "pid": "380", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:28.430464 2024-09-11 09:00:28.430467 f65a554f-481b-4247-82eb-38898bb6f89e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050155032"}, "pid": "381", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:28.481701 2024-09-11 09:00:28.481705 3eb9771c-4952-4c22-91d9-958e81c2ba41 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050161261"}, "pid": "382", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:28.53326 2024-09-11 09:00:28.533264 7356e27f-382f-42de-acb8-6f794ca2689f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050168436"}, "pid": "383", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:28.585102 2024-09-11 09:00:28.585105 9fef7d89-292a-4ebf-90eb-6431746ad0d1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050171607"}, "pid": "384", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:28.635921 2024-09-11 09:00:28.635924 53021be5-df46-415f-b49c-fce46fd93bc3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050184318"}, "pid": "385", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:28.693311 2024-09-11 09:00:28.693314 d84da8ec-0c93-41d3-8ea4-b49e538ec84a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050186736"}, "pid": "386", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:28.744673 2024-09-11 09:00:28.744677 80553949-b6c5-4b37-8086-7eded42685be {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/05018685X"}, "pid": "387", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:28.799033 2024-09-11 09:00:28.799036 f5e3246c-6275-465e-9342-6f45e2751eca {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050187023"}, "pid": "388", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:28.851085 2024-09-11 09:00:28.851088 a89f352f-cc4c-4fc2-861c-d6f613944940 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050230611"}, "pid": "389", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:28.91104 2024-09-11 09:00:28.911044 901ad0c0-25d6-4acd-a131-2f9e938161b4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050247840"}, "pid": "390", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:28.970191 2024-09-11 09:00:28.970193 d481b0db-b280-48f3-ac01-5a35f5d7a656 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050257722"}, "pid": "391", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:29.02222 2024-09-11 09:00:29.022224 d1fafdcd-c204-4232-9a0e-5932ce580190 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050269704"}, "pid": "392", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:29.076843 2024-09-11 09:00:29.076847 10d8fee2-4482-4cea-8c65-3057dfa0c8a4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050270850"}, "pid": "393", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:29.135658 2024-09-11 09:00:29.135662 f173b9c9-b4ee-4b03-a81d-9699646ca8dd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050279831"}, "pid": "394", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:29.19035 2024-09-11 09:00:29.190352 07de391b-ecb0-4421-af30-e4de4eec77c0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050284185"}, "pid": "395", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:29.31175 2024-09-11 09:00:29.311753 b4dffb7d-0146-461b-9c29-ec51984459e5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050284673"}, "pid": "396", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:29.367186 2024-09-11 09:00:29.367189 2cb4c96e-fe70-44ba-82e8-c0d958ba8dde {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050329820"}, "pid": "397", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:29.422862 2024-09-11 09:00:29.422866 a116e492-d4b5-48f2-9a46-0bab608808c7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050353233"}, "pid": "398", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:29.476077 2024-09-11 09:00:29.47608 6c5a37c8-ed18-4f7f-bf8b-b9bb1a98ad4d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050361031"}, "pid": "399", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:29.540104 2024-09-11 09:00:29.540106 6513612d-3f5c-4c63-b87f-8a5d2547f67f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/05037107X"}, "pid": "400", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:29.590894 2024-09-11 09:00:29.590897 ba011e96-2a42-4075-a848-3f29965e7021 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050376756"}, "pid": "401", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:29.648981 2024-09-11 09:00:29.648984 01c011d6-6569-4c94-8dee-66adc5f4e33c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050379712"}, "pid": "402", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:29.700537 2024-09-11 09:00:29.70054 5de280ab-6342-497b-83b2-23fe83791bc8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050410814"}, "pid": "403", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:29.751488 2024-09-11 09:00:29.751491 9fe51177-b3b7-4f18-9002-7f70b4f90fe7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050411071"}, "pid": "404", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:29.803654 2024-09-11 09:00:29.803657 263c3452-c2b1-4118-bda8-f4b8341f185f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050417444"}, "pid": "405", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:29.855437 2024-09-11 09:00:29.85544 64c5f286-413f-40b9-a3f5-170904b122ab {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050425773"}, "pid": "406", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:29.90845 2024-09-11 09:00:29.908453 adc8c772-397f-4a0a-88ce-a66e0f890145 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050430726"}, "pid": "407", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:29.969777 2024-09-11 09:00:29.969779 ac4c5861-7206-4871-972c-cd334d2f3370 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050433504"}, "pid": "408", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:30.022659 2024-09-11 09:00:30.022663 eb550b31-d51e-40c3-ab43-8e8f1ee61006 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050436708"}, "pid": "409", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:30.076394 2024-09-11 09:00:30.076398 fe50c2e0-3a84-4f9c-b2e8-c80d27cef510 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/05043795X"}, "pid": "410", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:30.131313 2024-09-11 09:00:30.131316 5dba1971-d1b4-443b-bdc7-df2442d1c3fa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050439464"}, "pid": "411", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:30.187114 2024-09-11 09:00:30.187117 d689ba04-bc8e-4740-ba0f-b975cbbc385a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050445197"}, "pid": "412", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:30.245136 2024-09-11 09:00:30.245141 aff807a5-9893-4321-9d5b-677013989d8f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050447904"}, "pid": "413", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:30.309084 2024-09-11 09:00:30.309087 9d4a0834-3ad9-4798-a80d-f4535010b7b2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050458140"}, "pid": "414", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:30.377585 2024-09-11 09:00:30.377588 b72e986b-80ed-483e-a66f-489fb0d0584e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050465546"}, "pid": "415", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:30.429434 2024-09-11 09:00:30.429437 95111b72-a6b5-4697-b985-81fadf80f146 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/05048589X"}, "pid": "416", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:30.493205 2024-09-11 09:00:30.493208 a5d9cc22-1ca6-45fc-806c-aadf3a6a6b6f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050494570"}, "pid": "417", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:30.548418 2024-09-11 09:00:30.548422 a4f562cf-449b-4f3f-9066-267ee0703069 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050495747"}, "pid": "418", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:30.61413 2024-09-11 09:00:30.614132 6fed5ffa-a10c-4892-a41b-09b3b6429027 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050502298"}, "pid": "419", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:30.665746 2024-09-11 09:00:30.665748 72a85069-ff8e-43d7-a00b-9a846c585339 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050504274"}, "pid": "420", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:30.718644 2024-09-11 09:00:30.718648 5ae157b8-4c2a-48f4-bdc6-e835528c0928 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050516736"}, "pid": "421", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:30.783518 2024-09-11 09:00:30.783521 adf89688-c3d0-4a52-96cb-393de4459a53 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050519514"}, "pid": "422", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:30.847423 2024-09-11 09:00:30.847426 2d2227aa-815e-4a68-a0a7-620252d1ec0d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/05052920X"}, "pid": "423", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:30.900085 2024-09-11 09:00:30.900088 d38c119a-48aa-4fa9-8d37-7393177479ef {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050539876"}, "pid": "424", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:30.955796 2024-09-11 09:00:30.955799 2d710812-7f91-441e-96de-c3a38f6411a4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050544942"}, "pid": "425", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:31.014834 2024-09-11 09:00:31.014839 2d629e06-815b-4a5a-9e4b-5db5a34039c9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050545183"}, "pid": "426", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:31.078804 2024-09-11 09:00:31.078808 fee7e8b1-4ab7-4d1c-9739-de462ffd8f9e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050551205"}, "pid": "427", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:31.133478 2024-09-11 09:00:31.133483 534bdc5b-ac11-42ca-bbbc-052ccf02a92e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050577395"}, "pid": "428", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:31.186288 2024-09-11 09:00:31.18629 caffcd37-8061-44ce-9de9-488015c25b3a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050588907"}, "pid": "429", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:31.251898 2024-09-11 09:00:31.251902 e55c574a-5954-4e94-958a-37f0ae4c64d5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050620746"}, "pid": "430", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:31.313867 2024-09-11 09:00:31.313869 ea727489-c3be-4772-9845-5055b66ea6b5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050629069"}, "pid": "431", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:31.367894 2024-09-11 09:00:31.367898 26091997-7302-41a5-a2a2-1d518c5ae92c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/05063223X"}, "pid": "432", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:31.421067 2024-09-11 09:00:31.421069 cdea5ee9-ae94-455e-bd15-68961108ac7f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050639412"}, "pid": "433", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:31.477391 2024-09-11 09:00:31.477394 d64419d6-90a4-4fc3-9fde-12d1ae3a21ee {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050710885"}, "pid": "434", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:31.528267 2024-09-11 09:00:31.528271 d2d50e64-74cc-45be-b6e9-8b30ccbc7690 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050717510"}, "pid": "435", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:31.581159 2024-09-11 09:00:31.581163 cec58b78-b141-40b9-84ad-0c40256a6639 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050721607"}, "pid": "436", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:31.649337 2024-09-11 09:00:31.64934 0ada1bb5-3a55-4dca-8c94-9126e040e550 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050726064"}, "pid": "437", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:31.732703 2024-09-11 09:00:31.732708 296b6131-dd0d-4544-a267-edf76273d77c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050738151"}, "pid": "438", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:31.790272 2024-09-11 09:00:31.790275 58eb4a64-8ba2-4825-a21d-251f0bcbbb98 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050739875"}, "pid": "439", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:31.842949 2024-09-11 09:00:31.842953 9dc710e9-3f40-42bc-bdb6-1bc7e7061911 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050753762"}, "pid": "440", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:31.907192 2024-09-11 09:00:31.907195 db1cd23d-3651-4059-98e7-e033aa607001 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050778250"}, "pid": "441", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:31.958112 2024-09-11 09:00:31.958117 44f7b56e-bea2-4089-bb2f-5b5d4e65c0fc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050780328"}, "pid": "442", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:32.008972 2024-09-11 09:00:32.008975 d48b901f-7a2c-4afd-976f-b9ba74363ab4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050784005"}, "pid": "443", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:32.062373 2024-09-11 09:00:32.062377 97309a8e-8953-4846-84a9-fc1410bfb214 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050786954"}, "pid": "444", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:32.113714 2024-09-11 09:00:32.113717 b0c5ffe5-55a4-4781-9c21-044ed3fad053 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050788434"}, "pid": "445", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:32.164129 2024-09-11 09:00:32.164134 d2a379d2-4d56-459a-a99f-27d659dd8a01 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050805800"}, "pid": "446", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:32.215184 2024-09-11 09:00:32.215188 c97b8574-be39-4844-b96f-a6d763215db7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050846043"}, "pid": "447", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:32.275672 2024-09-11 09:00:32.275676 0e687520-de71-4414-9cdd-45206387e514 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050876902"}, "pid": "448", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:32.328154 2024-09-11 09:00:32.328156 581bebce-27f3-4e51-9686-623c9e99ca19 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050880667"}, "pid": "449", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:32.380511 2024-09-11 09:00:32.380514 f63814c6-e38c-4ddd-8688-d81105460fac {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050881922"}, "pid": "450", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:32.433205 2024-09-11 09:00:32.433207 c4d1cbeb-2ea0-4f14-b39f-e2c23e80f8d1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050895877"}, "pid": "451", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:32.495987 2024-09-11 09:00:32.495992 c034fb2e-5d74-49af-a399-0fa02ff1e935 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050917633"}, "pid": "452", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:32.546066 2024-09-11 09:00:32.54607 a9d84926-890f-4d61-b6a6-73e8ea9f5dd4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050917889"}, "pid": "453", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:32.599199 2024-09-11 09:00:32.599202 bf82a2b0-935a-4fa4-b8f9-7e7835e9fe35 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050925520"}, "pid": "454", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:32.650209 2024-09-11 09:00:32.650211 a57b9ef2-461a-449f-8e95-b26ac585a58a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050927078"}, "pid": "455", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:32.703028 2024-09-11 09:00:32.703031 1d98298b-038b-4786-a146-2e9055a89555 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/050943618"}, "pid": "456", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:32.757566 2024-09-11 09:00:32.757568 7dd67042-2481-4d32-a993-fc1d207860e9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/051115913"}, "pid": "457", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:32.819837 2024-09-11 09:00:32.819839 a3b4a57b-568e-4f29-a4f0-ed8193c9f03f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/051171538"}, "pid": "458", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:32.88821 2024-09-11 09:00:32.888211 0b4eecdf-3cd3-4218-bff1-ac55cd26d10b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/051251930"}, "pid": "459", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:32.940178 2024-09-11 09:00:32.94018 3881cdd0-e70a-4e6d-957a-8dc8579d7330 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/051253801"}, "pid": "460", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:32.993182 2024-09-11 09:00:32.993186 08a6cfee-5fdb-41b9-a3d9-f18a4b427397 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/051264129"}, "pid": "461", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:33.046308 2024-09-11 09:00:33.046311 088cda4a-1c89-47df-b42a-7feec87c3098 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/051266717"}, "pid": "462", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:33.098472 2024-09-11 09:00:33.098476 af5edef5-4a5c-4d8d-b181-de935a284110 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/051367386"}, "pid": "463", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:33.189845 2024-09-11 09:00:33.189849 5d07cc70-b92a-4f8f-ae43-2ea749b27a13 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/051381079"}, "pid": "464", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:33.246008 2024-09-11 09:00:33.246012 8c9ad9a7-e874-4fe7-b563-b2d88fb22b8e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/051518449"}, "pid": "465", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:33.296125 2024-09-11 09:00:33.296128 3c874b81-f230-4ed1-8351-ffba54d7763b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055005284"}, "pid": "466", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:33.347055 2024-09-11 09:00:33.34706 7cf25351-f4be-4dcd-ad42-c397b778e831 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055085849"}, "pid": "467", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:33.400678 2024-09-11 09:00:33.400681 a7031260-994d-433a-9a77-6892f94dbe7b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055114938"}, "pid": "468", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:33.452808 2024-09-11 09:00:33.452813 544c9413-0099-4c4d-a446-c871833cd91b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055142524"}, "pid": "469", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:33.517281 2024-09-11 09:00:33.517283 e0e0386d-7506-4eba-b941-48eba4acd586 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055146201"}, "pid": "470", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:33.56938 2024-09-11 09:00:33.569383 8ceddb76-9030-4ea6-b7cc-4b78e28caf66 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055154050"}, "pid": "471", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:33.623643 2024-09-11 09:00:33.623646 a49d9769-af04-45d4-b218-4a933967ab6e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055201873"}, "pid": "472", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:33.677186 2024-09-11 09:00:33.677189 4a44a683-7a73-4023-9227-69d90c682dca {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055244025"}, "pid": "473", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:33.738612 2024-09-11 09:00:33.738616 75b7ef19-ac27-4eb4-8217-fae002ba7b4d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/05533556X"}, "pid": "474", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:33.790004 2024-09-11 09:00:33.790009 24b0afa4-aa49-400d-bd69-05dad8b02763 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055380700"}, "pid": "475", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:33.842593 2024-09-11 09:00:33.842597 d9862693-30aa-47f7-b326-356022e91970 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055449271"}, "pid": "476", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:33.898973 2024-09-11 09:00:33.898976 4cc88732-b69f-4a09-9c11-029335245039 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055518788"}, "pid": "477", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:33.954134 2024-09-11 09:00:33.954139 f5101800-b310-45b4-b24f-c6e2f26c5a8a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055521460"}, "pid": "478", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:34.012164 2024-09-11 09:00:34.012169 03b3442f-f875-497d-871e-198f982b02a9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055526195"}, "pid": "479", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:34.065763 2024-09-11 09:00:34.065766 ec34db79-6f6c-4d38-a963-0a4ae47286c5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055529771"}, "pid": "480", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:34.117482 2024-09-11 09:00:34.117484 1b4085cf-6e56-4d04-9536-1046ba07af73 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055578861"}, "pid": "481", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:34.174249 2024-09-11 09:00:34.174253 45ac4ccb-1276-4856-8f8c-2266676e5415 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055593917"}, "pid": "482", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:34.239061 2024-09-11 09:00:34.239064 a9268a43-19df-4687-9403-90ccde4adbe6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055597793"}, "pid": "483", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:34.296429 2024-09-11 09:00:34.296432 1464e5fa-4112-4a1a-9203-d0db033213ce {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055608205"}, "pid": "484", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:34.350377 2024-09-11 09:00:34.35038 91b226ea-1c5d-464c-93c6-bb72828a778c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055656595"}, "pid": "485", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:34.407193 2024-09-11 09:00:34.407197 2aeb29c9-2efd-44cb-b984-846b9b0f4be2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055663354"}, "pid": "486", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:34.473214 2024-09-11 09:00:34.473217 7273c4bf-8512-4333-ae62-2060e1be1e8b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055689159"}, "pid": "487", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:34.533561 2024-09-11 09:00:34.533566 aaeb38d2-dfa6-48ac-9efa-3523b7c2d778 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055718086"}, "pid": "488", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:34.597203 2024-09-11 09:00:34.597206 e46810dc-1368-43c3-b9f2-2772027b01a7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/05573782X"}, "pid": "489", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:34.673671 2024-09-11 09:00:34.673675 b4c0bbc2-5399-4249-a7b6-fba5bc00b4c1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055774520"}, "pid": "490", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:34.747818 2024-09-11 09:00:34.747821 9c927956-7122-4de9-a862-fe1722a7a211 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055798837"}, "pid": "491", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:34.809234 2024-09-11 09:00:34.809238 08664836-ff81-49fc-9e86-7d08d59590cb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055823866"}, "pid": "492", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:34.871034 2024-09-11 09:00:34.871039 80ba5b76-323f-43db-9625-317a69c348a0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055837417"}, "pid": "493", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:34.927761 2024-09-11 09:00:34.927765 096c0779-86a0-4b46-b632-bbe18ab93515 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055842941"}, "pid": "494", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:34.9839 2024-09-11 09:00:34.983902 b5ac8be9-ceb3-4b48-b9a7-8c906eaf4084 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055872891"}, "pid": "495", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:35.046512 2024-09-11 09:00:35.046514 a18eb9ee-45d7-4bae-a1db-947ac78d05d5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055899781"}, "pid": "496", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:35.098072 2024-09-11 09:00:35.098075 e0905cc7-6267-4991-87b9-be742716b31d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055949002"}, "pid": "497", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:35.154925 2024-09-11 09:00:35.154929 e318ba9b-92ae-42d6-ab41-bbc28dfb04b9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/055952283"}, "pid": "498", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:35.210583 2024-09-11 09:00:35.210588 b0310272-5172-4d2b-90fe-309b23d07525 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/056024045"}, "pid": "499", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:35.265555 2024-09-11 09:00:35.265558 3c01245a-5b6f-46b5-a7f8-0aa6a63fefad {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/056088612"}, "pid": "500", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:35.3268 2024-09-11 09:00:35.326804 9de3b353-6d68-4317-a3c5-4962b654e5bc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/056119054"}, "pid": "501", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:35.392279 2024-09-11 09:00:35.392283 0cd93e56-6e3c-4c68-974a-6c511056082d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/056140010"}, "pid": "502", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:35.449528 2024-09-11 09:00:35.449532 9dfdd103-f56c-44c2-9cd4-f2ad2296e8da {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/056141645"}, "pid": "503", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:35.508373 2024-09-11 09:00:35.508378 2997f5d5-704a-4ff1-88c9-ec4073c64326 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/056169302"}, "pid": "504", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:35.575836 2024-09-11 09:00:35.575839 40dcb171-0f1d-46fe-b8a1-de57dc31d223 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/056281544"}, "pid": "505", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:35.633094 2024-09-11 09:00:35.633099 0daea0ee-5a1c-40c1-bdbd-3a7aeae6ef3a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/056310099"}, "pid": "506", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:35.696193 2024-09-11 09:00:35.696197 23f59c5d-a2ad-4a9d-b997-4d855e9a3f4b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/05634371X"}, "pid": "507", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:35.754075 2024-09-11 09:00:35.754077 f931a9fe-bbea-498a-8965-dda599b801a0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1000024091"}, "pid": "508", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:35.818796 2024-09-11 09:00:35.8188 91af313b-44d5-4645-baf9-d7df83c0efb4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1000226778"}, "pid": "509", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:35.902299 2024-09-11 09:00:35.902303 2f250292-b557-43e9-bb10-c0109ac80579 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1000228320"}, "pid": "510", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:35.972309 2024-09-11 09:00:35.972315 154b0c7c-0902-40fc-9809-d015dd293bcf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1000295257"}, "pid": "511", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:36.036892 2024-09-11 09:00:36.036895 f6b72b3c-cc3b-4f84-abd7-228f22d11f81 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1000465780"}, "pid": "512", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:36.104946 2024-09-11 09:00:36.10495 5e78dfb9-f582-4134-8dd5-5f77d2b74afc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1000582329"}, "pid": "513", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:36.186342 2024-09-11 09:00:36.186344 c3138d6b-d65d-4ce3-b337-9e02971d4ac5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1000592979"}, "pid": "514", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:36.252343 2024-09-11 09:00:36.252345 b57f3ea5-042f-4a94-946f-1c4695f7dbb2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1000594521"}, "pid": "515", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:36.309031 2024-09-11 09:00:36.309034 962ae100-c010-4dcf-9a4c-560ec3bcbae6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1000601153"}, "pid": "516", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:36.360804 2024-09-11 09:00:36.360808 f12fbc6b-30f7-4a95-83b8-beb094556926 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1000610896"}, "pid": "517", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:36.418811 2024-09-11 09:00:36.418815 1ae34b39-6c77-4602-82ef-2227900e8c81 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1000681815"}, "pid": "518", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:29.521035 2024-09-11 09:06:29.521038 e32b0d7d-9047-401f-bfcd-3c55e4f96257 {"pid": "6108", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003142207"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:36.536329 2024-09-11 09:00:36.536332 bc329a0c-d22d-4004-a65f-5650beb3e2c7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1000698777"}, "pid": "520", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:36.588414 2024-09-11 09:00:36.588416 4cf744a8-d035-4525-ab41-a2bb2d1ed2a5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1000836290"}, "pid": "521", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:36.645323 2024-09-11 09:00:36.645326 d072f798-bb3c-48e3-82d2-e963acfd9f9f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1000990958"}, "pid": "522", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:36.699069 2024-09-11 09:00:36.699071 9ceba11f-fa19-4372-9a29-e11c4c547eaa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1001088646"}, "pid": "523", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:36.752856 2024-09-11 09:00:36.752859 5d6ee173-8a08-49aa-b924-2ccc9de4523b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1001206770"}, "pid": "524", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:36.809613 2024-09-11 09:00:36.809616 10258a98-2e01-4645-bc3c-14763f982f6b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1001284402"}, "pid": "525", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:36.863577 2024-09-11 09:00:36.863581 af79d4a3-6804-41e9-9b07-605c26720da3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1001334272"}, "pid": "526", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:36.922703 2024-09-11 09:00:36.922706 55764179-8b79-4200-b8ff-edf9bf6f64b9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1001567501"}, "pid": "527", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:36.975388 2024-09-11 09:00:36.975392 3c08a75a-f0dc-4a0b-a8b3-103460138f3c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/100167328X"}, "pid": "528", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:37.030899 2024-09-11 09:00:37.030902 92392caf-2090-41e8-a3c5-34cfa3b9188f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1001827562"}, "pid": "529", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:37.087975 2024-09-11 09:00:37.087977 8e8252d5-facd-48af-b533-cc99f10dd6c2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1001848063"}, "pid": "530", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:37.153268 2024-09-11 09:00:37.153272 d5f6eb42-88cc-40f6-a51c-9f6599842d79 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1001985265"}, "pid": "531", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:37.211069 2024-09-11 09:00:37.211073 aa90afae-d2c9-4399-b2dd-84d1c1602c20 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1002133998"}, "pid": "532", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:37.272334 2024-09-11 09:00:37.272338 d88ead81-f1ad-4b67-9368-b9f5e55128aa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1002374588"}, "pid": "533", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:37.334274 2024-09-11 09:00:37.334277 3e109ca8-c2ee-4b2c-8f07-fddd450ff0f4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1002731305"}, "pid": "534", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:37.386646 2024-09-11 09:00:37.386648 81697e37-a48e-48f9-a2be-5eabea77316e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1003000274"}, "pid": "535", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:37.441786 2024-09-11 09:00:37.44179 565c89af-7039-4e22-8b14-9ce4bf4291e3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1003122329"}, "pid": "536", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:37.49514 2024-09-11 09:00:37.495143 899f6e77-3e71-43d8-ac3a-24311fbaa6f9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1003145523"}, "pid": "537", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:37.547806 2024-09-11 09:00:37.54781 69e14172-5f66-4ae9-814b-01c27f5fa504 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/100316042"}, "pid": "538", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:37.621933 2024-09-11 09:00:37.621938 6789b7bc-5a33-457d-b35b-4d9893fe86a0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1003218784"}, "pid": "539", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:37.686317 2024-09-11 09:00:37.686319 bb4f5607-29c2-4c5d-8a64-c5e6e023a869 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1003329063"}, "pid": "540", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:37.738452 2024-09-11 09:00:37.738457 337462a0-ed5c-4de4-be21-d162d3e6dab0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/100349471"}, "pid": "541", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:37.79451 2024-09-11 09:00:37.794513 07fe683c-b593-48e5-92ef-52ab81c186d8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1003824153"}, "pid": "542", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:37.858341 2024-09-11 09:00:37.858344 031c15b2-b876-4bc4-b33b-9641bfef6d7d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1003837840"}, "pid": "543", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:37.916692 2024-09-11 09:00:37.916695 488393f1-161f-4b27-be9b-0f93b587a357 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004014589"}, "pid": "544", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:37.97532 2024-09-11 09:00:37.975325 e1278640-1c81-4b5a-82c0-b409549327be {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004316267"}, "pid": "545", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:38.031899 2024-09-11 09:00:38.031901 4c590ceb-6c75-4d11-9def-79b6419915a3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004386486"}, "pid": "546", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:38.103983 2024-09-11 09:00:38.103987 ead9f289-cf7d-420f-ae82-88c4c330664f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/100438713X"}, "pid": "547", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:38.161109 2024-09-11 09:00:38.161113 632ffbc9-3dd3-4f37-a0c0-68eae2d5f9b3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004477503"}, "pid": "548", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:38.225981 2024-09-11 09:00:38.225986 e031b032-0c35-41e3-9985-518b9c4ed20e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004482531"}, "pid": "549", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:38.281537 2024-09-11 09:00:38.28154 187f011a-5cde-4d93-ad25-bc6dc6752c25 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004487096"}, "pid": "550", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:38.342876 2024-09-11 09:00:38.342881 0f0a0594-b337-4469-8122-d234b68cbcb8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004490674"}, "pid": "551", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:38.393045 2024-09-11 09:00:38.393048 1b19b55f-7c2e-4e5d-b1ff-175eceeff044 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004494807"}, "pid": "552", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:38.447981 2024-09-11 09:00:38.447984 d3c27b52-891b-46a8-9b61-aa32d8f91bf7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004497415"}, "pid": "553", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:38.498942 2024-09-11 09:00:38.498945 68863d80-b3c9-463a-990b-96dd6afb4149 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004503423"}, "pid": "554", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:38.565711 2024-09-11 09:00:38.565714 22887a02-1961-44fc-a17c-7873e6319c95 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004520778"}, "pid": "555", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:38.618923 2024-09-11 09:00:38.618925 946d2d1c-aa09-4f46-9007-2bba14dbd42c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004537549"}, "pid": "556", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:38.687647 2024-09-11 09:00:38.68765 8a256530-8927-4fad-a738-0cbed3238c70 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004552424"}, "pid": "557", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:38.746338 2024-09-11 09:00:38.746341 326a5c06-0b22-4bf7-b2d9-fcd3cb6a576d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/100455706X"}, "pid": "558", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:38.800549 2024-09-11 09:00:38.800552 e85cd275-a93d-48b4-b6ea-be44fd34fc9b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004578172"}, "pid": "559", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:38.853478 2024-09-11 09:00:38.853482 2e164381-b596-4af3-8f4d-6885ccc9bac3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004580428"}, "pid": "560", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:38.906274 2024-09-11 09:00:38.906277 3320e41d-94e5-4137-842a-d42b80e1248f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004597800"}, "pid": "561", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:38.95837 2024-09-11 09:00:38.958374 2f093971-7535-499c-bffd-775e08f85ee6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004602456"}, "pid": "562", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:39.014435 2024-09-11 09:00:39.01444 347866fa-2b64-47ba-b9e8-974d46c334f1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004610041"}, "pid": "563", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:39.080694 2024-09-11 09:00:39.080696 f473acda-2b91-4617-9e8d-0b3feca74072 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004623488"}, "pid": "564", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:39.132591 2024-09-11 09:00:39.132596 64edee11-8b78-4789-a3d5-4a6922050a09 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004659237"}, "pid": "565", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:39.187415 2024-09-11 09:00:39.187418 70db27b6-c1bf-41c0-82bd-b0d6368fdc3e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004691408"}, "pid": "566", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:39.240548 2024-09-11 09:00:39.24055 b1871e10-e92c-4beb-b8ad-4d11eba2dfe8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004696000"}, "pid": "567", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:39.297186 2024-09-11 09:00:39.297191 a11379ae-4996-42cf-9f3a-bbc5df3d97b2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1004996152"}, "pid": "568", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:39.351413 2024-09-11 09:00:39.351417 8f1d4884-9ca1-4d98-bf48-7f164d28bde1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1005138168"}, "pid": "569", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:39.405745 2024-09-11 09:00:39.405748 ed13281e-c699-4c1a-bd25-8dd527fc6255 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1005381364"}, "pid": "570", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:39.461439 2024-09-11 09:00:39.461442 273d446f-450c-4766-93a5-19b7250163db {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1005446873"}, "pid": "571", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:39.528221 2024-09-11 09:00:39.528224 2337917d-307b-45be-9c21-177c3838a8ad {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1006191062"}, "pid": "572", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:39.578792 2024-09-11 09:00:39.578795 6747f69c-7869-445f-ba84-ac8cd28788f6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1006414401"}, "pid": "573", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:39.632562 2024-09-11 09:00:39.632565 377b95d3-bc2c-465d-9d5f-d88a09e496ba {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1006687815"}, "pid": "574", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:39.689063 2024-09-11 09:00:39.689066 b1573ed7-f9c9-4d53-ab98-13a88e18683b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1006928111"}, "pid": "575", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:39.746983 2024-09-11 09:00:39.746987 036fd8e6-2063-429c-a4a3-9ed0025c568a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1007180692"}, "pid": "576", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:39.802878 2024-09-11 09:00:39.802882 2bc5ab82-555f-4700-a0b1-b2e48288deb8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1007242396"}, "pid": "577", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:39.856567 2024-09-11 09:00:39.85657 2cecc7ab-c4a2-4266-9c0a-42ad242193c0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1007432802"}, "pid": "578", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:39.912952 2024-09-11 09:00:39.912955 c83735ed-eaf5-4a4b-a4f4-ccf67245ae59 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1007693789"}, "pid": "579", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:39.978055 2024-09-11 09:00:39.97806 e012844c-3e07-4dd9-a785-b30ad4a50e11 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1007769319"}, "pid": "580", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:40.034179 2024-09-11 09:00:40.034182 97a4ed59-9371-457b-8c74-cad1d8ce7e31 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1007863307"}, "pid": "581", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:40.086344 2024-09-11 09:00:40.086347 336ecd04-5084-4bf0-a841-d934b4301120 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1008172537"}, "pid": "582", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:40.153554 2024-09-11 09:00:40.153557 ae2703aa-11a1-4368-bc41-df07255994ae {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1008311308"}, "pid": "583", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:40.220186 2024-09-11 09:00:40.220189 8a5a57ba-e3d2-44ce-ac43-3099fdc1195b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1008358118"}, "pid": "584", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:40.275148 2024-09-11 09:00:40.275152 8091390b-e424-4fd2-a900-c1c784c81910 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1008359025"}, "pid": "585", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:40.340816 2024-09-11 09:00:40.34082 76ce9944-5b6a-4b10-8403-89b05f464745 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1008374040"}, "pid": "586", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:40.391352 2024-09-11 09:00:40.391356 dd49b8e1-6e9f-42d2-8365-6cb3670662ec {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1008509957"}, "pid": "587", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:40.484517 2024-09-11 09:00:40.484522 3cb0f650-69cd-4c23-9592-2f001004bcc9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1008705683"}, "pid": "588", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:40.552686 2024-09-11 09:00:40.552689 23e77abf-9657-4be2-bca0-62f45c35a3fa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1008850411"}, "pid": "589", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:40.619087 2024-09-11 09:00:40.61909 a63bb85f-b0ab-461e-90c0-e33c633e7dd5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1008982075"}, "pid": "590", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:40.671284 2024-09-11 09:00:40.671286 a8b2f3c5-3f91-46a1-80ad-aac15a0c3041 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1009099981"}, "pid": "591", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:40.722477 2024-09-11 09:00:40.722479 1cc33c81-c1e2-4f72-bfe5-0e4e42882e18 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1009237543"}, "pid": "592", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:40.783286 2024-09-11 09:00:40.78329 a2d56d4c-5925-4728-a086-e184c7162599 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1009363581"}, "pid": "593", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:40.841273 2024-09-11 09:00:40.841277 20c59e89-b7c7-4b6e-b210-a689e0a40a30 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1009625977"}, "pid": "594", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:40.897009 2024-09-11 09:00:40.897013 5ae0096b-79dc-4b04-ae0f-615729a84020 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/100963315"}, "pid": "595", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:40.951405 2024-09-11 09:00:40.951408 8933ff56-3d7b-4633-ac87-15cde6c674ca {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1009786741"}, "pid": "596", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:41.006141 2024-09-11 09:00:41.006145 ad939d8a-896d-4778-bb62-4320014b4011 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1010306146"}, "pid": "597", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:41.070612 2024-09-11 09:00:41.070614 c09026a1-fbc5-48ca-8d7e-e445e23a49e9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1010326945"}, "pid": "598", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:41.120584 2024-09-11 09:00:41.120586 84f19699-47fb-4d95-9380-59b7b4f2a2a1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/101054389X"}, "pid": "599", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:41.178065 2024-09-11 09:00:41.178069 2445d258-03c6-4f63-b45d-27e5c00bcd46 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1010664034"}, "pid": "600", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:41.235498 2024-09-11 09:00:41.235501 d4393c01-c1de-44c6-a835-dcdee45bed6d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1010670174"}, "pid": "601", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:41.288966 2024-09-11 09:00:41.288968 3b70d84e-fb6d-45c3-ac63-407f4e03caa6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1010696092"}, "pid": "602", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:41.355226 2024-09-11 09:00:41.355229 c5c8354c-3d35-4e54-b88f-c8827a55b0ab {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1010769979"}, "pid": "603", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:41.410869 2024-09-11 09:00:41.410872 2eeac897-359b-4fbb-bcd1-67e26e3b6f64 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1010987895"}, "pid": "604", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:41.463298 2024-09-11 09:00:41.463302 60e2a107-1538-4469-b160-fd59fc21e461 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011029162"}, "pid": "605", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:41.516283 2024-09-11 09:00:41.516285 f9ead550-f545-4d11-a906-7dac00f8b34d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011038692"}, "pid": "606", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:41.580009 2024-09-11 09:00:41.580014 0bf8df67-18c9-4fea-893b-813f3511fbc7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011064766"}, "pid": "607", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:41.629655 2024-09-11 09:00:41.629657 803507ad-d9eb-4103-9ed0-348b47c1f819 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011072602"}, "pid": "608", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:41.681776 2024-09-11 09:00:41.681778 b0cf3f6c-d4ba-4596-b9a1-3e906dbc8fe3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011184176"}, "pid": "609", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:41.745745 2024-09-11 09:00:41.74575 5610cdfe-5805-4c6b-985c-0bc0ab4699b7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011184672"}, "pid": "610", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:41.802379 2024-09-11 09:00:41.802383 9830df2b-5a04-4473-ade8-dcacc432eed7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011196735"}, "pid": "611", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:41.865857 2024-09-11 09:00:41.86586 620dc2e3-ff9d-4c3c-8f95-ab7bf1b5de02 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011276259"}, "pid": "612", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:41.956017 2024-09-11 09:00:41.95602 bc3d2f22-d6f2-472d-83c3-f5615d31caba {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011311550"}, "pid": "613", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:42.010887 2024-09-11 09:00:42.010889 492fac46-4f07-4bd7-94c7-4703295632fd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011400707"}, "pid": "614", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:29.57402 2024-09-11 09:06:29.574025 3ab840b8-0bc2-46e7-bb99-8258d590abe2 {"pid": "6109", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003145194"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:42.125801 2024-09-11 09:00:42.125805 da37b02c-0ea3-472f-9c09-62b71d228afe {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011453215"}, "pid": "616", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:42.17837 2024-09-11 09:00:42.178378 f9cbe5ab-a97e-40ae-9c9d-7fc7fec1e107 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011475596"}, "pid": "617", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:42.231651 2024-09-11 09:00:42.231655 7536d577-4537-4f2f-b54f-f400733f6448 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011506084"}, "pid": "618", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:42.295173 2024-09-11 09:00:42.295177 f79e8458-cc2c-4ff9-a26e-d4ef373986c2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011618362"}, "pid": "619", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:42.351341 2024-09-11 09:00:42.351343 abbbde40-bd94-45b7-b0ef-109fa78bd86e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011673835"}, "pid": "620", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:42.403945 2024-09-11 09:00:42.403948 9bc7ec74-18a5-45dd-9f7a-a94722b01691 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011705486"}, "pid": "621", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:42.474572 2024-09-11 09:00:42.474576 2f4c33be-fb39-4b55-aedf-f3c24f7beaef {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011709368"}, "pid": "622", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109719958"} 1 +2024-09-11 09:00:42.52838 2024-09-11 09:00:42.528383 6dd16fff-adf2-4116-91c6-27e5709bf0c6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011744619"}, "pid": "623", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:42.596052 2024-09-11 09:00:42.596057 f45d6acb-a746-409a-84e4-fff9389ca16c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011762676"}, "pid": "624", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:42.646906 2024-09-11 09:00:42.646909 38f6c685-5c1b-4536-81d7-ed89c69b0c87 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011811669"}, "pid": "625", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:42.700381 2024-09-11 09:00:42.700383 7b44b5fb-85ac-4696-8583-d287dad2bf69 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011875829"}, "pid": "626", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:42.755726 2024-09-11 09:00:42.755729 e7c4d152-b1c0-4474-9e30-8ee6d6cca883 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011887444"}, "pid": "627", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:42.806103 2024-09-11 09:00:42.806106 7bce4881-cf00-4552-ae25-8cbab0cf55e1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011898012"}, "pid": "628", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:42.861199 2024-09-11 09:00:42.861202 a48a7f75-1f8a-40d1-939f-8acdf1f4d195 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011967472"}, "pid": "629", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:42.910645 2024-09-11 09:00:42.910647 35d6044e-098f-46a1-8633-03745ab4771c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012126404"}, "pid": "630", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:42.961493 2024-09-11 09:00:42.961497 1056b251-92f9-4a18-9b67-59251c12eec1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012244741"}, "pid": "631", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:43.01571 2024-09-11 09:00:43.015714 b5ca0312-d3e4-468b-a428-045d6e66ead1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012247554"}, "pid": "632", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:43.067034 2024-09-11 09:00:43.067037 ff887336-bad6-4586-b9c7-22ff1325ddda {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012247589"}, "pid": "633", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:43.120736 2024-09-11 09:00:43.120738 4c014a24-509b-4cc9-b40a-d897b87d0520 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012247627"}, "pid": "634", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:43.175075 2024-09-11 09:00:43.175078 5ef3ccb3-fa55-4b1a-964c-d78f118c9e7c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012262367"}, "pid": "635", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:43.236152 2024-09-11 09:00:43.236157 b0e44eed-86f0-487c-a177-729752fe0991 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012277151"}, "pid": "636", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:43.292753 2024-09-11 09:00:43.292757 b52a422e-6197-4e5f-8bf1-89c8f33a3836 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012289915"}, "pid": "637", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:43.36146 2024-09-11 09:00:43.361463 117d099a-607f-4c5b-addc-05089df93dc6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012299805"}, "pid": "638", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:43.418846 2024-09-11 09:00:43.418848 c941cda3-bad4-4506-840b-b6d2f3370b2b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012301389"}, "pid": "639", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:43.476764 2024-09-11 09:00:43.476767 8de65519-18ab-4743-bedb-f787a65f3f45 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012304973"}, "pid": "640", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:29.634441 2024-09-11 09:06:29.634445 4b5a4ae6-8f03-41a6-a51a-904629cf5df7 {"pid": "6110", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003145393"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:43.533769 2024-09-11 09:00:43.533773 f3a25367-8a18-40f8-a061-8d110750ed3f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012336026"}, "pid": "641", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:43.59982 2024-09-11 09:00:43.599823 96cc2908-b876-40ae-98a5-991ee3f6137c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/101234472X"}, "pid": "642", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:43.66492 2024-09-11 09:00:43.664924 89ad4f9f-5eb6-41ea-b62b-6d47bf9a6eef {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012370755"}, "pid": "643", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:43.719586 2024-09-11 09:00:43.719589 3f0152ec-2868-4b71-ae9e-2b870a359df1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012371964"}, "pid": "644", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:43.773373 2024-09-11 09:00:43.773376 41774a5b-bdd5-474f-afad-b9b8c3fb419e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012374548"}, "pid": "645", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:43.837909 2024-09-11 09:00:43.837912 d1b62d82-b301-4612-a6a1-3ef468a61d67 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012379574"}, "pid": "646", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:43.892062 2024-09-11 09:00:43.892065 0d231d23-e1be-45a6-9e93-9de3b4622000 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012394212"}, "pid": "647", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:43.943839 2024-09-11 09:00:43.943843 887e9a3d-f925-4591-96ca-b12ea003c572 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/101239705X"}, "pid": "648", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:44.001737 2024-09-11 09:00:44.00174 f5b68ae0-73a2-4c5b-89a3-a99f8e1a99fc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012398897"}, "pid": "649", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:44.064935 2024-09-11 09:00:44.064938 68f4d473-30ce-43e1-af75-65a173fde74e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012399737"}, "pid": "650", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:44.130101 2024-09-11 09:00:44.130103 53754dc3-838d-4e1b-9a4e-6af42393a4d0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012410234"}, "pid": "651", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:44.182563 2024-09-11 09:00:44.182566 cf702a40-9db3-42f1-9fde-3c527d18dc33 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012413934"}, "pid": "652", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:44.236573 2024-09-11 09:00:44.236577 de5c2e7d-6ba0-483f-b071-60760b75294d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012484076"}, "pid": "653", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:44.28884 2024-09-11 09:00:44.288843 6c4cd3d2-5b37-4307-9e60-e0c678bfc510 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012546772"}, "pid": "654", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:44.340271 2024-09-11 09:00:44.340273 843a712d-de6f-435a-a311-51aa0225651c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012559114"}, "pid": "655", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:44.404981 2024-09-11 09:00:44.404984 7e9ab204-bdd3-422f-a4b9-a834b987890d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012580350"}, "pid": "656", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:44.453627 2024-09-11 09:00:44.45363 d09ddd22-1b3c-43b0-9981-1cfd0687bf6c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012659720"}, "pid": "657", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:44.506688 2024-09-11 09:00:44.506691 31b026d3-3503-41f2-bef3-31cb5976f2ab {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012670813"}, "pid": "658", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:44.560292 2024-09-11 09:00:44.560295 97e73994-3848-406a-9ebb-6bebe4cdb12b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012703487"}, "pid": "659", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:44.624365 2024-09-11 09:00:44.624368 39ef656e-36e8-4a6b-889a-8927703a9ad0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012706826"}, "pid": "660", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:44.683321 2024-09-11 09:00:44.683323 9da55e1f-a0c3-4abb-81c9-8fe8838c2977 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012770982"}, "pid": "661", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:44.735563 2024-09-11 09:00:44.735566 1cb71833-3259-4ac6-aaa6-fc2e14eaab44 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012781593"}, "pid": "662", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:44.785344 2024-09-11 09:00:44.785347 7346f9e0-c5ad-48c0-a334-7de33aa86d73 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012785815"}, "pid": "663", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:44.835351 2024-09-11 09:00:44.835356 1310ae58-622a-41aa-856f-70189f153b59 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012795519"}, "pid": "664", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:44.889979 2024-09-11 09:00:44.889981 f45ee80a-ae08-42f5-a0f5-6a76f64ae73d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012797198"}, "pid": "665", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:44.954363 2024-09-11 09:00:44.954367 d5f80fc9-cec0-4fad-a2e0-4910393ff7ea {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012805433"}, "pid": "666", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:45.008964 2024-09-11 09:00:45.008969 d9c96352-2b40-492b-bd4d-21bb327b49ed {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012879887"}, "pid": "667", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:45.060961 2024-09-11 09:00:45.060965 5749adc6-72f7-43b4-a5e6-ad7b91b9d51d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012883744"}, "pid": "668", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:45.114666 2024-09-11 09:00:45.11467 6cd81bbe-7a31-47d0-a1fd-456d430a0d6c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1012992349"}, "pid": "669", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:45.168056 2024-09-11 09:00:45.16806 dd6c24e0-7b35-4dee-8ca3-739dbfea531c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1013119495"}, "pid": "670", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:45.225001 2024-09-11 09:00:45.225004 db285079-1167-4f09-bac1-88b4f0f1eb13 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1013122089"}, "pid": "671", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:45.277525 2024-09-11 09:00:45.277529 a9dac009-388a-43f0-ae11-8a0a6604cdf6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/101314953X"}, "pid": "672", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:45.332782 2024-09-11 09:00:45.332786 9c2cc83a-5516-48e5-a84c-ae54f7b89ac1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1013171349"}, "pid": "673", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:45.391963 2024-09-11 09:00:45.391966 e996dc60-d895-4da0-920f-000309a964f1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1013251334"}, "pid": "674", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:45.457703 2024-09-11 09:00:45.457707 980d0df8-0431-4eb1-a6aa-94bfd06917ba {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1013340728"}, "pid": "675", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:45.524779 2024-09-11 09:00:45.524782 29c79e5a-13e2-41e6-8850-f69419acf2d6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1013349806"}, "pid": "676", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:45.576795 2024-09-11 09:00:45.576797 ca190f82-1e02-4dca-9605-70158d23535c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1013363299"}, "pid": "677", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:45.63835 2024-09-11 09:00:45.638352 c9e708a0-f471-499b-899d-cfd3f01f2a77 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1013479785"}, "pid": "678", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:45.691638 2024-09-11 09:00:45.691642 26a48b57-cbb0-4f21-bfac-4130b4d97677 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1013536878"}, "pid": "679", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:45.757977 2024-09-11 09:00:45.75798 9f86a5e9-9193-4db4-b6bc-2b63da1293fe {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1013590554"}, "pid": "680", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:45.806045 2024-09-11 09:00:45.806048 563361a3-884c-4dc8-bc2a-f7f2de9a71d2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1013628063"}, "pid": "681", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:45.857824 2024-09-11 09:00:45.857827 9397849b-7136-457c-b4f4-e6ab5ae5bbfc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1013814339"}, "pid": "682", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:45.907319 2024-09-11 09:00:45.907321 84626f34-fad3-424c-860f-a366d9142695 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1013871383"}, "pid": "683", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:45.96205 2024-09-11 09:00:45.962054 5844b8dd-3972-4ffa-97b6-c274dcad2eba {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1013878353"}, "pid": "684", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:46.025521 2024-09-11 09:00:46.025525 ee098175-136f-49b4-814d-c1f7f7a754a5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1013882156"}, "pid": "685", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:46.08263 2024-09-11 09:00:46.082634 c69a54d0-176a-4e67-9000-04562ead0567 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014065240"}, "pid": "686", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:46.137966 2024-09-11 09:00:46.137969 f45e34d3-f34a-4180-a256-4d689febb271 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014089158"}, "pid": "687", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:46.19043 2024-09-11 09:00:46.190432 1ec72057-4f0d-40a8-94b7-3d0d87919e20 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014092191"}, "pid": "688", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:46.294403 2024-09-11 09:00:46.294407 251f11b5-c698-411a-860f-5ac481c4b6e2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014136539"}, "pid": "689", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:46.356189 2024-09-11 09:00:46.356193 a45a960e-9f87-40dc-8aa6-692ce1bcf274 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014143454"}, "pid": "690", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:46.42274 2024-09-11 09:00:46.422743 9ef2afb7-2214-46b0-979a-0096b5c02b08 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014223768"}, "pid": "691", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:46.481486 2024-09-11 09:00:46.481489 3a4bc818-72ea-4d3f-b03b-b17e1249b5df {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/101425762X"}, "pid": "692", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:46.541985 2024-09-11 09:00:46.541989 cf9f7592-d6af-45c7-91e5-f22ccfea025b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014290287"}, "pid": "693", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:46.596314 2024-09-11 09:00:46.596316 5a2efeaa-4eac-4d77-95ee-75935490d4ca {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014396158"}, "pid": "694", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:46.649367 2024-09-11 09:00:46.64937 77e898a0-f4d8-44fc-9b47-c59c3c9e6064 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014396824"}, "pid": "695", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:46.700307 2024-09-11 09:00:46.700311 af4aa773-13de-408d-a780-d62fcbd63699 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/101440391X"}, "pid": "696", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:46.751995 2024-09-11 09:00:46.751998 1ac8338c-684b-44a1-8388-77b99cf41e52 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014449278"}, "pid": "697", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:46.807152 2024-09-11 09:00:46.807154 673bba32-cd80-4f24-b7b0-b718064d6d8f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014449677"}, "pid": "698", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:46.861513 2024-09-11 09:00:46.861517 f4ce5e8f-9ae6-4a57-825e-b64d96b0f172 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014548012"}, "pid": "699", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:46.914857 2024-09-11 09:00:46.91486 1d922843-7a01-4bbf-9ec8-396ca7b687d4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014626358"}, "pid": "700", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:46.969306 2024-09-11 09:00:46.96931 98c0e1d8-cc2c-4f9c-ba57-e8c76ae50039 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014638895"}, "pid": "701", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:47.026845 2024-09-11 09:00:47.02685 62031b24-1e87-4f84-a416-92fbb2bd901f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014661951"}, "pid": "702", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:47.080718 2024-09-11 09:00:47.080721 0f5aff88-f1cc-4795-ac2c-a2f33852f6ef {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014671604"}, "pid": "703", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:47.132201 2024-09-11 09:00:47.132203 756ed47f-ea81-4f0b-8b9f-65c5ddb1ad98 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014677610"}, "pid": "704", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:47.185035 2024-09-11 09:00:47.185039 0f8f416b-017d-4fb4-8ba9-8b3688a55d0d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014681685"}, "pid": "705", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:47.237778 2024-09-11 09:00:47.237781 480e9cc5-387f-4e24-b199-2c6f014d6872 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014683998"}, "pid": "706", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:47.289994 2024-09-11 09:00:47.289997 51316284-f65f-41d3-ae6e-12a857ac6dfc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014696348"}, "pid": "707", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:47.354502 2024-09-11 09:00:47.354505 2590dfff-5d1a-45b0-8664-470693948a3a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014702739"}, "pid": "708", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:47.418399 2024-09-11 09:00:47.418402 c5e8540d-3ae2-41f6-8d80-834128ea08ba {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014714222"}, "pid": "709", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:47.484157 2024-09-11 09:00:47.48416 557fef18-b4af-4a1e-a1e0-d407a1c0924f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014733642"}, "pid": "710", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:47.538518 2024-09-11 09:00:47.53852 517789b8-1afe-4996-af26-72ec7a3c6d74 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014745357"}, "pid": "711", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:47.594962 2024-09-11 09:00:47.594965 2b716491-d0ad-4655-8253-cfde3edf0fe0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/101476677X"}, "pid": "712", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:47.650786 2024-09-11 09:00:47.650789 3859f0f5-8495-4ac2-98eb-b592a1bfe5dc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/101477635X"}, "pid": "713", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:47.70688 2024-09-11 09:00:47.706882 1a947f17-5c95-4e26-a8fe-47d278ce7936 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014803217"}, "pid": "714", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:47.75897 2024-09-11 09:00:47.758975 0895e68f-d4b2-4c2d-b2ad-63b7b2a37971 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014837839"}, "pid": "715", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:47.871187 2024-09-11 09:00:47.87119 23bf8a0f-da98-4c07-8c6f-c77c5e4dd7a0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014954320"}, "pid": "717", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:47.924101 2024-09-11 09:00:47.924104 87bdaae1-93f7-4463-b235-e3b1f2417b59 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1015098495"}, "pid": "718", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:47.986189 2024-09-11 09:00:47.986191 b67a8eff-4c16-45c4-b8b8-33f067cc195a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1015101003"}, "pid": "719", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:48.054281 2024-09-11 09:00:48.054285 a652885d-f607-4da6-94a7-bca4594671f5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/101514859X"}, "pid": "720", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:48.124625 2024-09-11 09:00:48.124626 c2ae486f-3f31-4c95-9825-99c6170bb5a5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1015165990"}, "pid": "721", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:48.174134 2024-09-11 09:00:48.174137 74fa3668-66cd-4ce6-8b71-0549bef6945c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1015193862"}, "pid": "722", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:48.228139 2024-09-11 09:00:48.228143 95b86181-ceaa-4a2f-8e35-1ad7626ff785 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1015243762"}, "pid": "723", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:48.287493 2024-09-11 09:00:48.287495 7bd3de91-453e-44c6-b9ec-879483ee398b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1015331386"}, "pid": "724", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:48.340881 2024-09-11 09:00:48.340884 71fb478d-16d8-4fa4-b9a2-6e582612b628 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1015348394"}, "pid": "725", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:48.399272 2024-09-11 09:00:48.399276 4acd915b-746d-4132-80da-ca720940f62b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1015354157"}, "pid": "726", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:48.469089 2024-09-11 09:00:48.469091 1a175648-fa37-4180-9b24-aee25b4597b2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1015371035"}, "pid": "727", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:48.524506 2024-09-11 09:00:48.524508 fd0506a5-59cc-4f40-8287-18d89fca0a6a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1015412998"}, "pid": "728", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:48.59169 2024-09-11 09:00:48.591694 a5baecd6-b444-4fa8-8c70-c32bfdcf02b2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1015428967"}, "pid": "729", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:48.661239 2024-09-11 09:00:48.661242 023917a4-1a8b-49f3-a8f1-705feccb7dba {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1015448186"}, "pid": "730", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:48.715729 2024-09-11 09:00:48.715731 6a434512-87f9-4641-bee3-ad0d22aa85b7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1015448305"}, "pid": "731", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:48.775281 2024-09-11 09:00:48.775285 0853250c-f981-4c6e-a6b8-eec4442a6a30 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1015457789"}, "pid": "732", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:48.840567 2024-09-11 09:00:48.840569 9829e076-80c3-48a3-a25a-bc48cce9f14d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1015645631"}, "pid": "733", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:48.893141 2024-09-11 09:00:48.893144 b21748cd-80e2-4f70-84e8-78b34eabd37d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1015750427"}, "pid": "734", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:48.947597 2024-09-11 09:00:48.9476 d4a42266-d1d3-4ffc-a1b8-517db6be1e1e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1015752756"}, "pid": "735", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:48.998284 2024-09-11 09:00:48.998288 6d00d5dc-ca47-4312-b2d9-85add8340824 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1015778275"}, "pid": "736", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:49.053539 2024-09-11 09:00:49.053541 8828e731-f205-48cf-8ef1-b94b34b3fb6d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1015799485"}, "pid": "737", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:49.112839 2024-09-11 09:00:49.112842 f77c21ae-d0bc-43da-aa9d-89aa35a5728c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1016006969"}, "pid": "738", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:49.164723 2024-09-11 09:00:49.164727 978e1f3d-76eb-42f1-bf7a-d1ce77274a7d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1016159560"}, "pid": "739", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:49.217768 2024-09-11 09:00:49.217771 3a84abbc-00c6-41d4-b8ab-a148a42e281c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1016626150"}, "pid": "740", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:49.276548 2024-09-11 09:00:49.276553 f08b86e6-44f7-43b6-a111-08a967d62825 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1016763387"}, "pid": "741", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100189954"} 1 +2024-09-11 09:00:49.338238 2024-09-11 09:00:49.33824 4d0d1320-2ed7-4588-9c34-9c45be642ec6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1016951426"}, "pid": "742", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:49.389229 2024-09-11 09:00:49.389233 de172c18-85dd-4a8c-bb51-af99ce6acd7e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1016975198"}, "pid": "743", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:49.444445 2024-09-11 09:00:49.444449 7c42efa2-a177-469f-9da2-ae0d873c0c66 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1017107246"}, "pid": "744", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:49.512712 2024-09-11 09:00:49.512716 57df0a1d-4c28-4412-9886-ca34bf3ee737 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1017352712"}, "pid": "745", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:49.566001 2024-09-11 09:00:49.566005 7e82dfdb-3d23-409d-86e7-81d34caef6e8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1017628769"}, "pid": "746", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:49.61798 2024-09-11 09:00:49.617982 0b01a45e-dd5f-4cdb-aef3-318d585f4f58 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1017668051"}, "pid": "747", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:49.669453 2024-09-11 09:00:49.669455 1cacaf45-9098-469a-9c6a-b368e956c7b3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1017696241"}, "pid": "748", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:49.722971 2024-09-11 09:00:49.722973 268fcd76-6f24-44dd-964d-f6b9c129d053 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1018180087"}, "pid": "749", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:49.775542 2024-09-11 09:00:49.775545 7d43f530-c0ea-42ea-8a87-d564954dac70 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1018299807"}, "pid": "750", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:49.831503 2024-09-11 09:00:49.831507 d4f5f571-1715-4869-b548-f200c3cddbbf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1018900772"}, "pid": "751", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:47.366491 2024-09-11 09:06:29.695564 c83fc92b-4506-4dc7-b0be-8aea1fdaefd6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/119499363"}, "pid": "1719", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003146897"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/108090450"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108286493"} 3 +2024-09-11 09:00:50.020093 2024-09-11 09:00:50.020097 c18da79d-7cab-4bd7-9710-7a5dabd910e5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1020150378"}, "pid": "754", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:50.081466 2024-09-11 09:00:50.081468 b65bf058-9dd6-4ceb-8d85-77aeee89aba0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/102047033X"}, "pid": "755", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:50.132585 2024-09-11 09:00:50.132589 005ae7fa-a1e2-4b03-a2ad-1eda0b19e6e1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1020473932"}, "pid": "756", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:50.208561 2024-09-11 09:00:50.208563 5c976215-98f7-4125-aa35-bb6ab6f7c912 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1020513020"}, "pid": "757", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101445813"} 1 +2024-09-11 09:00:50.266601 2024-09-11 09:00:50.266605 a2c9c348-b8b4-46af-8446-53790bed0381 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1020751282"}, "pid": "758", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:50.345077 2024-09-11 09:00:50.345081 b1a71386-d35c-4ea6-ab7a-4bd28dfc2f6a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/102248435"}, "pid": "759", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:50.397587 2024-09-11 09:00:50.397592 86364eb7-c9cd-4d7e-917d-c2a8bd7919dc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1023582090"}, "pid": "760", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:50.454781 2024-09-11 09:00:50.454785 647bb1c8-4d91-44f0-845f-aa5ceff87323 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1023649187"}, "pid": "761", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:50.507379 2024-09-11 09:00:50.507383 84414a92-92e1-4b57-b5d0-2edcbf60f3a3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/102402868"}, "pid": "762", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:50.55934 2024-09-11 09:00:50.559344 814f240f-8bd8-4ca8-80a2-3795b96fc8c0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/102503214"}, "pid": "763", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:50.612823 2024-09-11 09:00:50.612825 85dd946d-cf5e-4c4e-8899-e63ad78a9281 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1025074823"}, "pid": "764", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:50.662991 2024-09-11 09:00:50.662993 c71c85b8-e4ba-4ffc-b41b-0760f18da68d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1025297636"}, "pid": "765", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:50.77457 2024-09-11 09:00:50.774574 ab4e8822-e649-4725-b696-445ff4086668 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1026316790"}, "pid": "767", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:50.832999 2024-09-11 09:00:50.833003 3c441663-e9cf-4b7c-9986-504ec2f28c19 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1026448301"}, "pid": "768", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:50.900012 2024-09-11 09:00:50.900016 0b584ab0-650f-4ee6-9948-1fa3951455a4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1027019080"}, "pid": "769", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:50.968038 2024-09-11 09:00:50.968041 b73e78f6-48cd-4ab1-94e9-65ae74fa0972 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1027019781"}, "pid": "770", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103528042"} 1 +2024-09-11 09:00:51.02221 2024-09-11 09:00:51.022214 f66d2c04-6752-436f-bd07-a3edad071499 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1027170250"}, "pid": "771", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:49.900207 2024-09-11 09:04:42.018276 536be708-dcc3-4dd0-ac36-336eb32f9e77 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1019086750"}, "pid": "752", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/128657642"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103681673"} 2 +2024-09-11 09:00:51.076511 2024-09-11 09:00:51.076515 ea83b797-bdc4-4317-b6db-f4081d0cbce2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1027359981"}, "pid": "772", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:51.139281 2024-09-11 09:00:51.139284 43871efb-f40b-4bd7-8eff-4023cd33be90 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1027463770"}, "pid": "773", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:51.190523 2024-09-11 09:00:51.190525 04c87969-6f59-4272-8256-997f6b19d6d1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1027567835"}, "pid": "774", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:51.245893 2024-09-11 09:00:51.245896 a50ccc85-6b11-418c-88f6-c0ed6f1d65fc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1028398166"}, "pid": "775", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:51.355392 2024-09-11 09:00:51.355396 bb06d461-a5ea-4851-83f1-d4ed3c754720 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/102892113"}, "pid": "777", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:51.514018 2024-09-11 09:00:51.514023 035657a9-0790-439b-b086-7fcddf0e18e1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1030495416"}, "pid": "779", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:51.579837 2024-09-11 09:00:51.579841 6c3d8fe8-1075-443c-a659-81167e858f11 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1031215441"}, "pid": "780", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:51.63707 2024-09-11 09:00:51.637073 42058467-2578-400d-9e96-d0801aa2c0ce {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/103129928"}, "pid": "781", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:51.756123 2024-09-11 09:00:51.756125 262b709a-1033-41fb-b38d-79968ce0ea90 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/103163357X"}, "pid": "783", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:51.887274 2024-09-11 09:00:51.887276 6189cdbd-c7d2-491d-9d1e-a28befbbe24c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1032305649"}, "pid": "785", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101670840"} 1 +2024-09-11 09:00:51.952066 2024-09-11 09:00:51.952069 c70f656a-5237-42cb-97a1-e160073a9a5a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1032456213"}, "pid": "786", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:52.005078 2024-09-11 09:00:52.005081 72fb0aa7-2edb-41c6-81f9-ef05f0992098 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1032675357"}, "pid": "787", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:52.059474 2024-09-11 09:00:52.059479 9ebc0abf-ec9d-42ee-b69c-573777f2476e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1033120790"}, "pid": "788", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:52.11019 2024-09-11 09:00:52.110194 eaad59ae-4a35-4ad1-bd7f-5a7335e3212c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1033471542"}, "pid": "789", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:52.162299 2024-09-11 09:00:52.162303 e52814fd-3354-4223-ae62-4841f4244823 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1033570451"}, "pid": "790", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:52.213153 2024-09-11 09:00:52.213156 34ba0b30-1664-407e-8681-d78029750f9a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1034236164"}, "pid": "791", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:52.267196 2024-09-11 09:00:52.2672 6cdf8d76-8c7f-4bd2-8c9f-93f66c35dddd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1034635476"}, "pid": "792", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:52.323246 2024-09-11 09:00:52.323249 69a6955e-cd18-4fb5-b62a-b13e1fd8de7e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/103473262"}, "pid": "793", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:29.760853 2024-09-11 09:06:29.760858 78702570-692a-4702-b3f9-d5359f71fd60 {"pid": "6111", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003149155"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:52.435066 2024-09-11 09:00:52.435069 d6866c9b-a4fa-4093-8a08-36bac5a54520 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1035444666"}, "pid": "795", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:52.48285 2024-09-11 09:00:52.482853 f604f16c-8db1-4610-add8-9bba6b734670 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1035621460"}, "pid": "796", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:52.53564 2024-09-11 09:00:52.535645 439fe415-d39b-46bf-b752-747e7d973f77 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1035656221"}, "pid": "797", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:52.589281 2024-09-11 09:00:52.589284 ded7e748-667c-4765-9d79-0e2a6a4cadc4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1035688298"}, "pid": "798", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:52.640362 2024-09-11 09:00:52.640365 30561aba-a82c-47ee-bd65-1067453de1d3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1036111024"}, "pid": "799", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:51.302583 2024-09-11 09:06:46.88671 16c314b8-0003-49bd-b82b-f621f0e17833 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1028665504"}, "pid": "776", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003830445"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102268943"} 2 +2024-09-11 09:00:52.748833 2024-09-11 09:00:52.748836 5fd4e668-f102-4f26-b836-044237281a47 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1036550141"}, "pid": "801", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:52.803487 2024-09-11 09:00:52.803491 baf33fdb-e722-46d3-b674-39e346c768d8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1037547543"}, "pid": "802", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:52.867791 2024-09-11 09:00:52.867795 c3e30f31-f297-44fa-9937-c93f0847093f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1037748980"}, "pid": "803", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:51.826 2024-09-11 09:06:57.163939 78d215c3-e71b-4668-8a6e-f2b1e80d0ab6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1032029374"}, "pid": "784", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009426238"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/170128687"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100742319"} 3 +2024-09-11 09:00:51.695357 2024-09-11 09:05:12.665516 94c1980d-f354-4d9e-a8a1-b6ae6255f40f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1031494286"}, "pid": "782", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/18102540X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102293891"} 2 +2024-09-11 09:00:52.933657 2024-09-11 09:00:52.933661 37ab2070-2639-4024-b36d-c429ff8bdc82 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1037788141"}, "pid": "804", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:52.996668 2024-09-11 09:00:52.996674 b5eb84cd-2a01-41dd-8744-5240aadf88e5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/103807349"}, "pid": "805", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:53.058735 2024-09-11 09:00:53.058737 7c684c85-9659-46f0-8aad-db3c823811aa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/103843914"}, "pid": "806", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10269807"} 1 +2024-09-11 09:00:53.115778 2024-09-11 09:00:53.115781 62f88427-0f47-40bc-9340-b0af277494d4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1038798124"}, "pid": "807", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101780884"} 1 +2024-09-11 09:00:53.17157 2024-09-11 09:00:53.171574 f85d76f5-2436-4afa-ace9-d19e90c26132 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/103899138"}, "pid": "808", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:53.2236 2024-09-11 09:00:53.223603 58f9e98d-e9c3-45fa-ac75-6ec4c880ac3b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/104057386"}, "pid": "809", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:53.278567 2024-09-11 09:00:53.278571 94915d4a-92a3-4a97-802d-613c48e5dd0b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1041364962"}, "pid": "810", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:53.344014 2024-09-11 09:00:53.344018 81cd44b4-35c8-43ba-b2fb-aa252496eb4b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1041494114"}, "pid": "811", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:53.394675 2024-09-11 09:00:53.394678 d1a8f9b5-b369-4dcf-8759-f79fac77571c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1041505701"}, "pid": "812", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:53.448528 2024-09-11 09:00:53.448531 f048406d-eede-4a91-bcbc-e0bf4f357ad2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1042050643"}, "pid": "813", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:53.499524 2024-09-11 09:00:53.499527 6f661140-6778-420c-9c90-c5e8d18ea22d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/104240636"}, "pid": "814", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:53.558679 2024-09-11 09:00:53.558683 b92d3d39-3d24-4cdd-8453-92344a45a78b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1043162917"}, "pid": "815", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:53.610793 2024-09-11 09:00:53.610797 972df669-daeb-446f-886b-637cbe9a3535 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1043761047"}, "pid": "816", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:53.663983 2024-09-11 09:00:53.663986 a139f394-03e9-42bc-b85c-5f8bb1b31b82 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1043881336"}, "pid": "817", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:53.724705 2024-09-11 09:00:53.724708 29b960fe-cd71-4419-b8ab-4f3b758a4ad5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1044044519"}, "pid": "818", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104242002"} 1 +2024-09-11 09:00:53.774982 2024-09-11 09:00:53.774986 9ef48799-05a7-4be1-881b-95c70b88766c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1044246936"}, "pid": "819", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:53.828662 2024-09-11 09:00:53.828665 5f2277c6-8479-4762-b897-84eb3c95b7a4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1044369329"}, "pid": "820", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:53.886579 2024-09-11 09:00:53.886581 edc7da58-8320-41eb-994d-c79e2ac05f80 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1046083678"}, "pid": "821", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103242300"} 1 +2024-09-11 09:00:53.946423 2024-09-11 09:00:53.946427 dcfb2a70-e6fc-4195-b6af-0cb35f941cf1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1046664522"}, "pid": "822", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:54.063704 2024-09-11 09:00:54.063707 0cb068cd-323f-4a96-a905-d50cec434c5e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1047811014"}, "pid": "824", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:54.13259 2024-09-11 09:00:54.132595 91744aa2-4422-49a8-8576-22491202fbe0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1048228142"}, "pid": "825", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105898877"} 1 +2024-09-11 09:00:54.189424 2024-09-11 09:00:54.189429 2e40d198-e41c-49d8-a0a9-674720d9f5f4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1048657442"}, "pid": "826", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:54.245589 2024-09-11 09:00:54.245594 c785fdea-b205-46ae-90c6-e33ebf99bffa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/104999227X"}, "pid": "827", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107964941"} 1 +2024-09-11 09:00:54.307062 2024-09-11 09:00:54.307065 e732c75f-c1cb-4015-b964-87ff301aba22 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1050328639"}, "pid": "828", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:54.366717 2024-09-11 09:00:54.366719 08bd78a5-ea97-4f73-b003-6dc50b8031eb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1050869354"}, "pid": "829", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:54.419251 2024-09-11 09:00:54.419253 e607db7d-46cf-40ec-9e6f-578d76aae716 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1051111412"}, "pid": "830", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:29.836944 2024-09-11 09:06:29.836947 6310f744-a76a-4216-b01b-e4ef51af78ca {"pid": "6112", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003149182"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:29.891 2024-09-11 09:06:29.891004 4045921e-fd35-4a81-bb7e-747a2d77856a {"pid": "6113", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003149832"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:54.601669 2024-09-11 09:00:54.601673 f02c60d0-9279-4634-97e4-743083a9fac3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1051657490"}, "pid": "833", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:54.658448 2024-09-11 09:00:54.658452 f3253dd7-5774-45c0-b82d-456d0cb797f9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1051682878"}, "pid": "834", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:54.721526 2024-09-11 09:00:54.721528 9792b2aa-c1b0-45c2-ab13-2c85e8678f71 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1051697891"}, "pid": "835", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:54.003464 2024-09-11 09:05:07.295556 4498ceb0-273d-41f8-a771-18b66bc7ceea {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1047508257"}, "pid": "823", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/16737740X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102960359"} 2 +2024-09-11 09:00:54.777844 2024-09-11 09:00:54.777847 90d6fee8-8d4e-47f3-9f9b-31e3085695b1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1051918510"}, "pid": "836", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:54.831459 2024-09-11 09:00:54.831463 940204ad-5130-47b8-89c8-4ec9619c7998 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1052619274"}, "pid": "837", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:54.941034 2024-09-11 09:00:54.941037 d60caf5f-2af7-489d-83ac-03d0813ef731 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1053241011"}, "pid": "839", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:55.061776 2024-09-11 09:00:55.061779 f0b50324-5c04-4de5-b949-4d348d1d954d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1055067094"}, "pid": "841", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:55.114703 2024-09-11 09:00:55.114705 2a694db7-7474-439a-a642-e812792e12dd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1055101608"}, "pid": "842", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:55.183823 2024-09-11 09:00:55.183827 e5ec2d57-e15d-4385-ba09-b4a480a5d61f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1055200525"}, "pid": "843", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10187835"} 1 +2024-09-11 09:00:55.236908 2024-09-11 09:00:55.236912 ef75e15a-5380-4464-bafd-8370c19af3e5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1055211292"}, "pid": "844", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:55.360844 2024-09-11 09:00:55.360847 14649aa0-a78b-420e-b153-ff6cc2f70359 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1055490760"}, "pid": "846", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:55.4125 2024-09-11 09:00:55.412503 dd61060c-f316-41dd-9cea-f59606bd6c2b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/105550835X"}, "pid": "847", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:55.465239 2024-09-11 09:00:55.465242 d7fb8545-2c7c-43c1-88f9-3e0570ea19db {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1055540210"}, "pid": "848", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:29.942514 2024-09-11 09:06:29.942518 c884b36a-058e-4906-8e01-ffcb0657c4dc {"pid": "6114", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003150269"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:55.749431 2024-09-11 09:00:55.749436 d9b0adb0-a621-4f57-ad60-2c97eb3025d9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1055795316"}, "pid": "852", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100182771"} 1 +2024-09-11 09:00:55.869829 2024-09-11 09:00:55.869833 e379ef76-fd52-4615-8c38-49a1e8fa4be9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1056074779"}, "pid": "854", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:55.92658 2024-09-11 09:00:55.926584 b5b58109-3075-4150-8a30-d8b0278c15ca {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1056091770"}, "pid": "855", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:55.980245 2024-09-11 09:00:55.980249 b9de7cd2-0056-4859-9a6b-d3d793a3b18b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1056123087"}, "pid": "856", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:56.037919 2024-09-11 09:00:56.037922 201a7db8-592f-4473-a49d-4c8fb67a0ace {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1056148799"}, "pid": "857", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:54.886599 2024-09-11 09:07:11.693364 aacc9b65-dc03-4c5a-98e9-c48545b3a151 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1052636209"}, "pid": "838", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013135052"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112300888"} 2 +2024-09-11 09:00:56.163124 2024-09-11 09:00:56.163126 38b4cf5d-de0c-436f-b8fd-9e3de90e00fc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1056220570"}, "pid": "859", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:56.226859 2024-09-11 09:00:56.226864 bbdc389d-702a-4dff-a159-272a8ac1aed9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1056241462"}, "pid": "860", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:56.280492 2024-09-11 09:00:56.280496 4749b548-a70a-4ac3-8845-81984e240ca0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1056400331"}, "pid": "861", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:56.340056 2024-09-11 09:00:56.340058 f86a2c5b-6bd1-4be8-a283-6aa6593d279a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1056497572"}, "pid": "862", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:56.531605 2024-09-11 09:00:56.531607 43532342-7a4c-4778-ba92-91d63850e381 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1056646438"}, "pid": "865", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:56.588465 2024-09-11 09:00:56.588467 9c6497b3-1135-4068-9ee7-f3ef010ac82d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1056682051"}, "pid": "866", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:55.691085 2024-09-11 09:06:25.145483 90ac371d-8deb-4e50-9e52-efca54025113 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1055794662"}, "pid": "851", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002963001"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/050709585"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111184069"} 3 +2024-09-11 09:00:55.535967 2024-09-11 09:04:25.940018 de35a645-4e85-4f85-b750-a2c5ab541d15 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1055644334"}, "pid": "849", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/087470659"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112035090"} 2 +2024-09-11 09:00:55.810257 2024-09-11 09:04:30.170051 fba14f56-1754-4e72-9d4b-c4602343d260 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/105597377X"}, "pid": "853", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/101023235"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111620208"} 2 +2024-09-11 09:00:56.407169 2024-09-11 09:05:34.807828 69f5b004-37fc-4e41-9b0f-8e5f478555cd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1056601809"}, "pid": "863", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/224789147"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106152380131001762059"} 2 +2024-09-11 09:00:55.295778 2024-09-11 09:06:22.056955 739a03c1-e692-4191-bbd5-c19a18a54920 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1055348328"}, "pid": "845", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000103142"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032207107"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102383882"} 3 +2024-09-11 09:00:56.647072 2024-09-11 09:00:56.647076 ada19d8a-6a1a-4333-9137-2987a2f47475 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1057324841"}, "pid": "867", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1085159477658927990009"} 1 +2024-09-11 09:00:56.776313 2024-09-11 09:00:56.776317 34ea9bcc-1c37-4044-973a-a52e6fcbc9a2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1057605336"}, "pid": "869", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:56.846709 2024-09-11 09:00:56.846714 d947bfec-be5c-4d77-9006-38c6ffe7079b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1057630616"}, "pid": "870", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:56.911044 2024-09-11 09:00:56.911047 46e11acf-f91b-4c3c-a3c2-20a25c719505 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1058848518"}, "pid": "871", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:56.972291 2024-09-11 09:00:56.972295 688b0a68-a763-45e2-bacd-6ac96d06406b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1059467119"}, "pid": "872", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:29.994763 2024-09-11 09:06:29.994768 9bc49555-818c-4cfa-a6cd-1f6c96650cfd {"pid": "6115", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003151816"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:57.093431 2024-09-11 09:00:57.093434 27427ef0-9627-4e1e-acb2-c7306f673a3c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1060675595"}, "pid": "874", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:57.200255 2024-09-11 09:00:57.200257 5f0c5dc8-5f73-4365-8e10-b23e988c935e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1060757729"}, "pid": "876", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:30.053616 2024-09-11 09:06:30.05362 790e1912-722b-4501-b1d9-49d8504b48ee {"pid": "6116", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003154955"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:57.308186 2024-09-11 09:00:57.308189 8304e104-c728-4c34-b8dd-98d011e6455c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1061330117"}, "pid": "878", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:57.366128 2024-09-11 09:00:57.366132 7d21fe58-f290-4dbf-9d25-b6c37c88b278 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/106136769X"}, "pid": "879", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106010384"} 1 +2024-09-11 09:00:57.41844 2024-09-11 09:00:57.418442 0b3389b5-bdbc-4a4a-97a2-61bff455f8d1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1061395804"}, "pid": "880", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:57.513111 2024-09-11 09:00:57.513117 21f57c31-db4d-4e61-8c89-3430f00b63a1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1061433706"}, "pid": "881", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:57.568245 2024-09-11 09:00:57.568247 17a4476f-16f0-4cef-92d7-e90f19a1bd81 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1061583368"}, "pid": "882", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:57.620816 2024-09-11 09:00:57.620819 42ce02de-40d4-48b7-abb9-1c4eea707d3b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1061592588"}, "pid": "883", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:57.674974 2024-09-11 09:00:57.674977 826f1926-188b-4273-91c1-213afef247db {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1061744094"}, "pid": "884", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:57.740365 2024-09-11 09:00:57.740368 681c983a-9e2e-4c16-b3a9-d75148e9ae7d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1061835065"}, "pid": "885", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:57.794893 2024-09-11 09:00:57.794896 5dd700b2-fbae-4283-9e0a-459d14147860 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1061837513"}, "pid": "886", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:57.850626 2024-09-11 09:00:57.850628 5e307506-7848-439c-a756-c6d533a22908 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1061999920"}, "pid": "887", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:57.9183 2024-09-11 09:00:57.918304 f6af3f08-7053-4ad3-88a0-8bce44a446d0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1062371135"}, "pid": "888", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:57.972539 2024-09-11 09:00:57.972542 5129dbf9-5941-4bd8-a641-557a3007b007 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/106243756X"}, "pid": "889", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:58.031206 2024-09-11 09:00:58.03121 e20018ff-aa4c-4d4c-b7e4-70744079c6b9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1062692519"}, "pid": "890", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:58.089565 2024-09-11 09:00:58.08957 c98aae35-d08a-4e1f-9f0f-1f22ba1a1a91 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1063310490"}, "pid": "891", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:58.14565 2024-09-11 09:00:58.145654 9b6c8b47-9767-4ede-a976-5f2203d74fcb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1063319633"}, "pid": "892", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:56.710219 2024-09-11 09:07:53.73847 b0aa4151-abaa-4afe-9c35-0afe34309220 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1057520837"}, "pid": "868", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026123991"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/258241985"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100149804"} 3 +2024-09-11 09:00:58.270605 2024-09-11 09:00:58.270608 d7139e99-ec2e-4713-ae1f-2c20c224fc81 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1064701922"}, "pid": "894", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:58.377177 2024-09-11 09:00:58.37718 106b6355-0aa1-42db-927e-b96633a02d0b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1064912958"}, "pid": "896", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:58.437598 2024-09-11 09:00:58.437602 44e249cd-3e6f-4334-8d07-a6c126ce5a87 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1065743769"}, "pid": "897", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:58.509524 2024-09-11 09:00:58.509528 9cbd510e-da1e-4d88-b28f-ceacf1891c32 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1065866356"}, "pid": "898", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:57.150033 2024-09-11 09:08:03.080798 7ee555e9-fbee-4ace-b627-b37c73c53713 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/106068375X"}, "pid": "875", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A028751062"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/170457257"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103482980"} 3 +2024-09-11 09:00:58.564062 2024-09-11 09:00:58.564065 d4cbefa3-0cc4-4bc0-a7dc-6d5da19f607f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1067106146"}, "pid": "899", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:58.614699 2024-09-11 09:00:58.614703 5a093bd8-6e2d-473f-bb48-78c9e2b2dd9b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1067168370"}, "pid": "900", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:58.669729 2024-09-11 09:00:58.669731 f462d20c-d0ba-4e21-bc07-5d8bd17f406b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1067217495"}, "pid": "901", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:58.72307 2024-09-11 09:00:58.723073 7a265e6a-a60f-42f1-a366-feddde96a922 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1067908366"}, "pid": "902", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:30.10659 2024-09-11 09:06:30.106593 2c481923-0ccf-405c-ab12-652664478ada {"pid": "6117", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003155460"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:58.836134 2024-09-11 09:00:58.836136 947e07a0-47a2-44e8-8cdc-2a8fef9f9174 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1068089962"}, "pid": "904", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:58.901457 2024-09-11 09:00:58.90146 6ae4cffa-9347-4998-98ad-24368c5ea656 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1071439871"}, "pid": "905", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:59.869316 2024-09-11 09:07:51.011293 181710f3-ecf4-4936-8f1a-1d1baef757d1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/107738338X"}, "pid": "922", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025694319"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1023155284785587061414"} 2 +2024-09-11 09:00:59.012506 2024-09-11 09:00:59.01251 3c0620fc-59aa-4929-8070-556a6f43727a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/107289806"}, "pid": "907", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:59.069302 2024-09-11 09:00:59.069305 eeb02399-ac43-4ae7-9066-a8e085f07cdf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1072904977"}, "pid": "908", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:59.137101 2024-09-11 09:00:59.137105 b6969616-0e75-4899-b827-f6cebde07b08 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1072916436"}, "pid": "909", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:59.195977 2024-09-11 09:00:59.19598 ead3d422-a338-4d10-bc9c-28f9971ae688 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1072932296"}, "pid": "910", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:59.252109 2024-09-11 09:00:59.252112 212055c7-fb31-47f5-a090-0cb36959ddbe {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1072961296"}, "pid": "911", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:59.315156 2024-09-11 09:00:59.31516 a6d89864-6b05-4d1e-9d46-eb7b65c7ba52 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1073022544"}, "pid": "912", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:59.369486 2024-09-11 09:00:59.369489 e0b3ca70-efb2-48de-8f89-3cf8a988f1b1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1073026825"}, "pid": "913", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:59.435126 2024-09-11 09:00:59.435128 6e69c323-2151-4156-8f42-54486c4c45a9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1073045927"}, "pid": "914", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:59.487356 2024-09-11 09:00:59.487358 af5af463-e18c-4126-96ec-fbba4cf3beda {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1073087123"}, "pid": "915", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:59.539792 2024-09-11 09:00:59.539795 4fdd5fd0-bf87-45f1-917f-c3038a8a044a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/107371876X"}, "pid": "916", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:59.649491 2024-09-11 09:00:59.649494 f5ec8752-727f-47fc-8a4d-5e4d0ba8bdf7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/107495839X"}, "pid": "918", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:59.699552 2024-09-11 09:00:59.699554 bbd10c61-7a98-4980-9c2f-e5c79197d933 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1076838170"}, "pid": "919", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:59.750459 2024-09-11 09:00:59.750463 ddd95a76-13c4-4056-bcea-0db880901ca3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1076933726"}, "pid": "920", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:59.803141 2024-09-11 09:00:59.803143 3b89da86-348f-42c9-a193-61de17d40458 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1077345259"}, "pid": "921", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:59.925559 2024-09-11 09:00:59.925561 39b4b375-0ff9-4c4a-b860-8e0d7c755e98 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1077501706"}, "pid": "923", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106773784"} 1 +2024-09-11 09:00:59.985582 2024-09-11 09:00:59.985584 6903d922-1b09-4e86-a9ee-8770c53617e9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1077608101"}, "pid": "924", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103144782702419106766"} 1 +2024-09-11 09:01:00.043138 2024-09-11 09:01:00.043142 b791b047-fffa-455e-9e81-7209517ebfc7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1077612869"}, "pid": "925", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:00.09739 2024-09-11 09:01:00.097394 4b9c3b40-bc3f-4a03-9224-5d731dbc75e3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1077631081"}, "pid": "926", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:00.167804 2024-09-11 09:01:00.167806 591299d7-9b31-4c3b-8754-43ebca260a73 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1077666799"}, "pid": "927", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:00.226972 2024-09-11 09:01:00.226976 cc2ac53f-7645-4fc3-b6ae-9fd1b9981251 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1077833237"}, "pid": "928", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:00.281691 2024-09-11 09:01:00.281696 b816f8f6-3f33-40c2-be9d-cc33f54f3b5c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1077873468"}, "pid": "929", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11144782931879677381"} 1 +2024-09-11 09:01:00.332294 2024-09-11 09:01:00.332297 6b31e1fe-5393-4df0-acac-da937952e124 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1077979355"}, "pid": "930", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:00.383067 2024-09-11 09:01:00.383069 c605a1cd-ae67-4827-aace-efc189e00c06 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1078040133"}, "pid": "931", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:00.439768 2024-09-11 09:01:00.439771 a93c4a43-c728-4a03-8425-7a8c44f6f11f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/107808355X"}, "pid": "932", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:00.517557 2024-09-11 09:01:00.517562 04de04d1-f647-4932-b172-1cbc81dd1b06 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/107817864X"}, "pid": "933", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:00.583195 2024-09-11 09:01:00.583199 5d8e13ba-cc98-4084-a6b9-ae3f2310ef91 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1078249024"}, "pid": "934", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:00.634286 2024-09-11 09:01:00.63429 0d83ce6a-8972-4f83-971c-3431fe1db0ae {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1078758360"}, "pid": "935", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:00.68797 2024-09-11 09:01:00.687972 7b65cc65-827c-4a3e-b9ee-ba4e2ffb1cd8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/107916894"}, "pid": "936", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:00.739966 2024-09-11 09:01:00.739969 36e3199c-bf20-4284-8b92-6989782eee2f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1079291768"}, "pid": "937", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:00.801888 2024-09-11 09:01:00.80189 b28ba57c-364e-4c9f-99b7-6c46dd06b126 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1079304231"}, "pid": "938", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:00.871251 2024-09-11 09:01:00.871253 c6ab96ce-292a-4da4-94e2-4bcae4bccb73 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1079330836"}, "pid": "939", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109144898694150291149"} 1 +2024-09-11 09:01:00.924297 2024-09-11 09:01:00.9243 b51db4ec-0d2d-4007-83bd-0731b1f49c81 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1079330844"}, "pid": "940", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:00.978351 2024-09-11 09:01:00.978354 8b239c6b-8865-4cd4-b158-6e15b9f54464 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1079390413"}, "pid": "941", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:01.0332 2024-09-11 09:01:01.033202 fcd3c544-ffbb-47f9-931a-20ec88c31be4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1079392009"}, "pid": "942", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:01.094977 2024-09-11 09:01:01.09498 9e057db6-f482-418b-ab38-54682dcedec2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1079423273"}, "pid": "943", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:01.169151 2024-09-11 09:01:01.169154 7f15ea68-976b-4ae0-893f-147a843ebb2f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1079471162"}, "pid": "944", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100144928704054440114"} 1 +2024-09-11 09:01:01.224235 2024-09-11 09:01:01.224237 dfb3aa8b-00e0-4bea-ad30-7672e5ed6fb8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1079507582"}, "pid": "945", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:01.28077 2024-09-11 09:01:01.280773 2f6e9373-9f3c-41d2-9f33-79c091440cdd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/107956215X"}, "pid": "946", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:01.338964 2024-09-11 09:01:01.338967 a634f77d-3ea0-4bb9-ae0e-84696f180a92 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1079687157"}, "pid": "947", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:01.39418 2024-09-11 09:01:01.394184 1a22cc77-b8ad-4c30-9499-4885d40604bd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1079732772"}, "pid": "948", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102145003783861341145"} 1 +2024-09-11 09:06:30.16651 2024-09-11 09:06:30.166513 57f5449e-97c2-4cb9-a293-d35daa541c99 {"pid": "6118", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003155524"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:01.509053 2024-09-11 09:01:01.509059 012df883-f283-4914-894b-fd7d78343cd5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1079982175"}, "pid": "950", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:01.580976 2024-09-11 09:01:01.580981 950766bf-4c95-4d60-80d7-229093728c81 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1080093648"}, "pid": "951", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110145003277461300194"} 1 +2024-09-11 09:01:01.632266 2024-09-11 09:01:01.632269 cb182711-3c3a-4016-8e40-f22460c933be {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1080488448"}, "pid": "952", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:01.687764 2024-09-11 09:01:01.687767 215881f4-dfd6-40ed-be13-c588831e032d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1080490868"}, "pid": "953", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:01.74745 2024-09-11 09:01:01.747454 54485a1f-c7c4-481a-8d3c-5b0adae7dd5b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/108049450"}, "pid": "954", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:01.814446 2024-09-11 09:01:01.81445 6b6f54a6-5a26-4aa5-b877-83c339e8b280 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1080869417"}, "pid": "955", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:01.864667 2024-09-11 09:01:01.86467 0a5890f7-eb85-456d-9a0a-61ca6b7e3aba {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1081028270"}, "pid": "956", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:01.919721 2024-09-11 09:01:01.919724 11331c18-4cbc-487d-9ebc-640a407aca41 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1081399880"}, "pid": "957", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11145376243683720817"} 1 +2024-09-11 09:01:02.037271 2024-09-11 09:01:02.037274 b5a01d89-204c-4141-888d-f53c567c8e5e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1081429097"}, "pid": "958", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10145602335301360992"} 1 +2024-09-11 09:01:02.183907 2024-09-11 09:01:02.183909 07aa6c84-12dd-434d-abe1-7402f3e8ac05 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1081450452"}, "pid": "959", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:02.260955 2024-09-11 09:01:02.260959 5a953e48-3825-42de-b7c1-8ae3f47fefb8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1081489529"}, "pid": "960", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:02.31545 2024-09-11 09:01:02.315453 0a78a4d3-7ec8-4d18-9786-4e7b71a3c5ca {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1081556625"}, "pid": "961", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:02.369026 2024-09-11 09:01:02.36903 f60c1cd2-1d09-4de7-b260-b857217bc32a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1081654597"}, "pid": "962", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:02.421965 2024-09-11 09:01:02.421968 e3ce124b-6d75-4889-85df-02b431eb83da {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1081687118"}, "pid": "963", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:02.471468 2024-09-11 09:01:02.471471 14d8ca41-14e8-475f-bb5f-2ec071d0b87f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1081988355"}, "pid": "964", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:02.530376 2024-09-11 09:01:02.530378 905e1d27-e0b3-443c-b774-4393f00de4da {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1082002127"}, "pid": "965", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:02.583745 2024-09-11 09:01:02.583748 6588f6fa-fe91-4c03-90a2-56788136b9db {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1082006580"}, "pid": "966", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:02.649791 2024-09-11 09:01:02.649795 939ac85f-60e5-4a0b-92ef-7985979a93f6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1082007447"}, "pid": "967", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:02.708045 2024-09-11 09:01:02.708048 a9a0fd24-cf4f-4a12-8346-0c7571a7a911 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/108231563X"}, "pid": "968", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:02.761198 2024-09-11 09:01:02.761202 1806dd34-e957-4dd0-be29-09ebf6b30960 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1082319058"}, "pid": "969", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:02.814956 2024-09-11 09:01:02.814959 7a598fe4-5472-473d-a6fe-1337ce0ea6a9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1082383880"}, "pid": "970", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:02.866633 2024-09-11 09:01:02.866637 172ea7a7-3165-4db0-a8e6-ff07936e5468 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1082387401"}, "pid": "971", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:02.928194 2024-09-11 09:01:02.928198 41f598e1-08c0-4690-8120-94d556f51ab7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1082523097"}, "pid": "972", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11145602344401360075"} 1 +2024-09-11 09:01:02.988312 2024-09-11 09:01:02.988315 daa33422-485b-4faf-90aa-f989a2bc010c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1084363704"}, "pid": "973", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:30.220589 2024-09-11 09:06:30.220593 38683c2e-363b-4484-bc1e-9ff6faf0b29d {"pid": "6119", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003159779"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:03.105436 2024-09-11 09:01:03.10544 20263479-57f1-4b59-a113-dcebd216cad2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1085208036"}, "pid": "975", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:03.168253 2024-09-11 09:01:03.168256 f99ec867-ef3d-49f0-ba4b-f727c6b36a11 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1085704564"}, "pid": "976", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:03.222005 2024-09-11 09:01:03.222008 613ffaec-8b9e-4d80-a484-04bfc160f9f6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1085733416"}, "pid": "977", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:03.276619 2024-09-11 09:01:03.276623 c78108de-11cf-4f47-828f-dbaee722c2e3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1085772225"}, "pid": "978", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:03.342788 2024-09-11 09:01:03.342792 2cf363b5-17af-409e-ae92-48784f5b77c3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1085773566"}, "pid": "979", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:03.39539 2024-09-11 09:01:03.395394 a1011155-eda6-4d44-9c64-780fbe1d282c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1085805433"}, "pid": "980", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:03.451006 2024-09-11 09:01:03.451009 94d2178b-8144-469a-b3e0-0baebbe9cb54 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1085806677"}, "pid": "981", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1065145858112123022189"} 1 +2024-09-11 09:01:03.506033 2024-09-11 09:01:03.506035 3efdd752-d48b-41ca-a0b2-d38b2bf08e66 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1085808254"}, "pid": "982", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:03.556686 2024-09-11 09:01:03.556688 cd8b9ba5-f2e9-4179-8f3c-c5ca09ce962e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1085822613"}, "pid": "983", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:03.61624 2024-09-11 09:01:03.616244 33abde94-a5b6-4314-b699-0c83236edc5a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1085824861"}, "pid": "984", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1059145856858322920064"} 1 +2024-09-11 09:01:03.674826 2024-09-11 09:01:03.67483 54399ac0-4c8b-4d16-96a9-81d79466b544 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1085825302"}, "pid": "985", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:03.729118 2024-09-11 09:01:03.729122 0475e454-2602-465e-890a-6df17ffe2d23 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1085827739"}, "pid": "986", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1106145857049222921336"} 1 +2024-09-11 09:01:03.8387 2024-09-11 09:01:03.838703 b696c0fc-2100-4215-acc0-24410ed30081 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/108585440X"}, "pid": "988", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:03.892393 2024-09-11 09:01:03.892397 2b2c6569-f3c6-4397-b714-cf5a3e211d07 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1085905519"}, "pid": "989", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:03.947012 2024-09-11 09:01:03.947015 b974a270-6810-4a57-894c-d9f5fb7aad4d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1085909603"}, "pid": "990", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:03.998964 2024-09-11 09:01:03.998967 3d919f75-3267-4c2f-99df-b50e7b66ec17 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1085909808"}, "pid": "991", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:04.057428 2024-09-11 09:01:04.057432 15bae96c-9131-4ebc-9f35-8ef16bd3f93e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1085934519"}, "pid": "992", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:04.12663 2024-09-11 09:01:04.126635 e94902d8-54db-414b-97eb-8e56f76be30c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1085989879"}, "pid": "993", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:04.190906 2024-09-11 09:01:04.190909 ddbb663b-8ea3-4a0e-aca9-4313e61af96f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086006615"}, "pid": "994", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:04.245315 2024-09-11 09:01:04.245318 c9101a31-3b27-479c-8bf7-9475835a9835 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086024044"}, "pid": "995", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:04.302319 2024-09-11 09:01:04.302323 f687ac90-bddc-4058-9d3b-0c7f503a3714 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086025474"}, "pid": "996", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:04.366484 2024-09-11 09:01:04.366486 359044c3-9a9e-4d24-b552-54bd11959169 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086047532"}, "pid": "997", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:04.416608 2024-09-11 09:01:04.416611 00a83ac8-ddb6-43fc-95c8-1ea390b47aa4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086062159"}, "pid": "998", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:04.475402 2024-09-11 09:01:04.475404 01cd1694-61c1-4d7f-bc97-daab2db0e9d3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086067371"}, "pid": "999", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:04.539333 2024-09-11 09:01:04.539336 403553f5-6427-4c7c-8854-f3f1c512db8a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086070178"}, "pid": "1000", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:04.597503 2024-09-11 09:01:04.597507 92cc4474-6644-44c1-bcc7-bf92a1ed65be {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086074602"}, "pid": "1001", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:04.653717 2024-09-11 09:01:04.65372 45b403b7-60d8-4497-b3a9-ab57588abbba {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086075218"}, "pid": "1002", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:04.708183 2024-09-11 09:01:04.708186 66ab0265-e965-4bed-8fee-e35176c6d2b3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086080513"}, "pid": "1003", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:04.775852 2024-09-11 09:01:04.775856 d1d142b0-9089-44e0-b2e7-2ec38934991e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086080750"}, "pid": "1004", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:04.835475 2024-09-11 09:01:04.835478 47529c4f-568d-487b-92e7-e92551903373 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086082427"}, "pid": "1005", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:04.890461 2024-09-11 09:01:04.890464 eee043fa-4f4f-4001-a5ab-71d9c4deac10 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086092775"}, "pid": "1006", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:04.954551 2024-09-11 09:01:04.954555 402bd4d1-2ed8-485c-97a0-4425a7521ec0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086143264"}, "pid": "1007", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:05.015952 2024-09-11 09:01:05.015957 2ab4a623-4a45-4718-acff-6d9af07f4ae5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086144686"}, "pid": "1008", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1034145857097922922175"} 1 +2024-09-11 09:01:05.073566 2024-09-11 09:01:05.07357 75e1de47-db27-46cc-a0ec-d532a063dcca {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086144902"}, "pid": "1009", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:05.138709 2024-09-11 09:01:05.138713 1c52819c-ddb4-4404-b1db-76ef871990a5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086182871"}, "pid": "1010", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:05.209858 2024-09-11 09:01:05.209862 9452c744-2f1a-484d-a462-f864a36d4802 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086186427"}, "pid": "1011", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:05.264874 2024-09-11 09:01:05.264878 4b1419ad-ccc0-4562-ae8b-0063ac0290da {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086202244"}, "pid": "1012", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:05.319644 2024-09-11 09:01:05.319647 25364aef-a4a9-4aba-9538-5151ac514d84 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086206991"}, "pid": "1013", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:05.374187 2024-09-11 09:01:05.374189 97ca00b6-054e-4e58-a336-78d8c206249f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086215982"}, "pid": "1014", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:05.437507 2024-09-11 09:01:05.437509 766746ff-9734-4c49-b1b9-9e842ea5be55 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086230493"}, "pid": "1015", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:05.50601 2024-09-11 09:01:05.506014 84822612-2e44-4252-b664-9dd85cfeefc7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086235894"}, "pid": "1016", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:05.560551 2024-09-11 09:01:05.560553 393cc2b0-3960-4217-99c3-59b1753cb817 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086271440"}, "pid": "1017", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:05.615792 2024-09-11 09:01:05.615795 0c00eeb6-a99a-477c-b2ae-809af066c710 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086272587"}, "pid": "1018", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:05.68151 2024-09-11 09:01:05.681512 28b30cb7-f17f-4f9f-a8c8-99031cf02d1c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086274636"}, "pid": "1019", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:05.739697 2024-09-11 09:01:05.739701 9ba6bfe9-9b48-4c46-91a2-573251a98106 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086281020"}, "pid": "1020", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1003145856878722920218"} 1 +2024-09-11 09:01:05.791854 2024-09-11 09:01:05.791857 5899e998-5852-4060-8369-e9d6ad78888f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086292391"}, "pid": "1021", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:05.84253 2024-09-11 09:01:05.842534 a171bb0c-cc6f-45df-be5b-c73a2674d35b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086300475"}, "pid": "1022", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:05.895476 2024-09-11 09:01:05.895479 4813090c-2fc5-4994-8ce5-fa23f31a64ec {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086314646"}, "pid": "1023", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:05.945259 2024-09-11 09:01:05.945263 ae8f0acc-f541-4caa-ba69-42e593e6b78a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086340043"}, "pid": "1024", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:05.995908 2024-09-11 09:01:05.995915 d51d1d6e-7759-4d30-b8c9-53958aba1d0a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086373170"}, "pid": "1025", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:06.051452 2024-09-11 09:01:06.051455 02036ade-e5b9-41c4-a498-8888137f6faa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086413520"}, "pid": "1026", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:06.118633 2024-09-11 09:01:06.118636 f763db1c-e0db-4914-8993-6e8a43e84e95 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086431685"}, "pid": "1027", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:06.182376 2024-09-11 09:01:06.182378 18903fdf-28ee-4f44-9ea9-41984d5fd751 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086431855"}, "pid": "1028", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:06.235771 2024-09-11 09:01:06.235775 085ecef2-8f20-4a53-88ca-f64d4b3b063b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086433114"}, "pid": "1029", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:06.296629 2024-09-11 09:01:06.296633 83f8c0d9-a6ad-472a-bb7e-2d1cc329ae26 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086434900"}, "pid": "1030", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:06.34635 2024-09-11 09:01:06.346353 5a7b35b8-67f7-4002-8e85-f6772bbdd964 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086437500"}, "pid": "1031", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:06.408629 2024-09-11 09:01:06.408633 b9a2df25-7cae-4327-a876-f811ec2ede43 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086443640"}, "pid": "1032", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:06.458414 2024-09-11 09:01:06.458417 699bf6cf-897d-4a9e-88b9-e5f676213d36 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086444361"}, "pid": "1033", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:06.508829 2024-09-11 09:01:06.508833 fa77068f-1d2b-4426-a6cf-7a1ac00fffe8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086469747"}, "pid": "1034", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:06.56143 2024-09-11 09:01:06.561434 014a27d5-a492-41b9-8db6-6eb1a32cf600 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086480686"}, "pid": "1035", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:06.613436 2024-09-11 09:01:06.613439 c4db2923-fcb1-4f6f-ab96-403dc99fd541 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/108649282X"}, "pid": "1036", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:06.667894 2024-09-11 09:01:06.667896 a4bcba16-d570-497a-972e-2aae6f012cde {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086503910"}, "pid": "1037", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:06.729435 2024-09-11 09:01:06.729439 b4c6f8a6-ad44-4a29-92bb-fa0c015e2ff2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086511239"}, "pid": "1038", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:06.804277 2024-09-11 09:01:06.804281 c0acf64f-c4fb-424b-84f1-70ae8f60ce9e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086545605"}, "pid": "1039", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:06.873459 2024-09-11 09:01:06.873463 62218ac1-a67e-463a-8091-0312ca5efd2e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086545869"}, "pid": "1040", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1090145856977622920754"} 1 +2024-09-11 09:01:06.924746 2024-09-11 09:01:06.924749 3d4b3944-22f6-41cf-9009-760dd83aacb8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086572882"}, "pid": "1041", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:06.975939 2024-09-11 09:01:06.975943 36ece3d7-44a7-409c-a212-89832cc50e06 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086591453"}, "pid": "1042", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:07.031542 2024-09-11 09:01:07.031546 050b4a71-7a36-44f6-b07b-564be9b90ae2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086599594"}, "pid": "1043", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:07.091238 2024-09-11 09:01:07.091242 4c61684a-cf6d-49ac-a4a5-84c678916aa3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086646843"}, "pid": "1044", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:07.14709 2024-09-11 09:01:07.147094 f163d75a-cd2b-40c2-9085-8d19477222fd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086671775"}, "pid": "1045", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:07.197454 2024-09-11 09:01:07.197458 51616a2f-0d14-41e1-b2a8-5e77ae6fcbb6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086700902"}, "pid": "1046", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:07.248276 2024-09-11 09:01:07.248278 1984a58f-1c96-4371-a37d-c3d80d5372b2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086728939"}, "pid": "1047", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:07.299739 2024-09-11 09:01:07.299742 1e910a2f-c197-4736-aa1f-c41554da404d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086730003"}, "pid": "1048", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:07.358716 2024-09-11 09:01:07.35872 edf64313-44b5-4efe-b6f2-f3c0979df47f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086746554"}, "pid": "1049", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:07.410205 2024-09-11 09:01:07.410208 2a149c93-8ebf-4a31-8d54-3268488aab8d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086766326"}, "pid": "1050", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:07.461961 2024-09-11 09:01:07.461964 5d9cfa70-11c4-46fa-a228-f5af99e09127 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086780884"}, "pid": "1051", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:07.521824 2024-09-11 09:01:07.521828 e99310af-41aa-4ca3-9f0a-43f199239051 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086783476"}, "pid": "1052", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:07.589554 2024-09-11 09:01:07.589557 a7fccb7e-8b2c-492f-9592-38c9527ef4ec {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086783492"}, "pid": "1053", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1060145857100122922210"} 1 +2024-09-11 09:01:07.658144 2024-09-11 09:01:07.658148 530c4400-4eec-4aac-a1ca-887c33b9aedc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086814347"}, "pid": "1054", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:07.728479 2024-09-11 09:01:07.728483 18a47b79-2a03-4498-a895-bad9323853ad {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086828542"}, "pid": "1055", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:07.781318 2024-09-11 09:01:07.781321 7685cb77-3088-4754-ba31-59cb79bea984 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086839668"}, "pid": "1056", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:07.83368 2024-09-11 09:01:07.833684 22a95ab5-8fa3-4e8e-a62f-419349ea1048 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086844092"}, "pid": "1057", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:07.887214 2024-09-11 09:01:07.887216 40ce7fc1-791a-4872-b0ec-9b6db5f688c8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/108685604X"}, "pid": "1058", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:07.943817 2024-09-11 09:01:07.943821 b3f59c38-3aa2-499a-a309-18822e1092e3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1086971531"}, "pid": "1059", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:07.999583 2024-09-11 09:01:07.999588 9e112fd3-63ed-48ae-8750-26b5514720ae {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087157226"}, "pid": "1060", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1065145857021422921149"} 1 +2024-09-11 09:01:08.055218 2024-09-11 09:01:08.05522 be2a4de2-94a9-43bb-b225-16e5158e3e9d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087161088"}, "pid": "1061", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1043145856962822920558"} 1 +2024-09-11 09:01:08.105392 2024-09-11 09:01:08.105395 f5ec2470-1dd4-4347-ad99-d50ca8133da2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087202949"}, "pid": "1062", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:08.176747 2024-09-11 09:01:08.176752 9f26ccaf-404c-44f7-af77-bd7e3ee40f30 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087258685"}, "pid": "1063", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:08.226136 2024-09-11 09:01:08.22614 3c27ebd4-7ed9-446e-87a4-08de80803d0b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087265827"}, "pid": "1064", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:08.279687 2024-09-11 09:01:08.279691 b422071b-1730-49eb-b19c-879c5abbfd66 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087266157"}, "pid": "1065", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:08.334259 2024-09-11 09:01:08.334262 155b5feb-621f-42c8-b3f8-7f581580a2d0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087273897"}, "pid": "1066", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:08.398655 2024-09-11 09:01:08.39866 60e76cfe-c320-4171-87f9-9783140084d9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087296900"}, "pid": "1067", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:08.451279 2024-09-11 09:01:08.451281 22437f33-9add-4312-8937-222ff7788810 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087307619"}, "pid": "1068", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:08.516607 2024-09-11 09:01:08.516609 da89239b-bffa-4cec-81a2-9f8330cd5f9a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087316928"}, "pid": "1069", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1032145857953523021267"} 1 +2024-09-11 09:01:08.617474 2024-09-11 09:01:08.617478 69c56982-6300-40c0-a32b-cedb054bb59e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087324378"}, "pid": "1070", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:08.695766 2024-09-11 09:01:08.695769 9a088d16-7536-4843-849c-d87c6a913cbe {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087327822"}, "pid": "1071", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1040145857028422921154"} 1 +2024-09-11 09:01:08.750519 2024-09-11 09:01:08.750523 60e42e30-3c43-4036-b1ab-f8ebfb701480 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087335108"}, "pid": "1072", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:08.807146 2024-09-11 09:01:08.807148 e9c85dda-4ca7-46e8-9a53-16ae660ea2eb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087354226"}, "pid": "1073", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:08.863708 2024-09-11 09:01:08.863712 c8abcb68-97e4-479b-b228-18469024fb37 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087364086"}, "pid": "1074", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:08.92058 2024-09-11 09:01:08.920583 71149398-8e14-498b-8c9b-5e2d586cc4e2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087368367"}, "pid": "1075", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:08.975277 2024-09-11 09:01:08.975281 587b2915-5773-4a89-8821-26dc3e2d0bea {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087381363"}, "pid": "1076", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1119145857028722921154"} 1 +2024-09-11 09:01:09.027607 2024-09-11 09:01:09.027612 0117c759-ecc3-43fa-8039-2333dcd584c2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087450594"}, "pid": "1077", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:09.088411 2024-09-11 09:01:09.088415 99555136-901c-458b-ba28-f0a6a2e48bac {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087461731"}, "pid": "1078", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:09.150946 2024-09-11 09:01:09.150947 eb8b17e1-87d5-4e61-8fd8-8a3eee4c50dd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087515092"}, "pid": "1079", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:09.211086 2024-09-11 09:01:09.211088 81b453ef-72f6-49ed-895e-eac38e16f426 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087538092"}, "pid": "1080", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:09.270009 2024-09-11 09:01:09.270014 5e063242-b83f-476e-be32-14e546f534cb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087545471"}, "pid": "1081", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:09.328267 2024-09-11 09:01:09.32827 1ae66113-2c8f-4c38-9439-5f12b4acaf9b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/108756171X"}, "pid": "1082", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:09.390509 2024-09-11 09:01:09.390514 92139690-ea8a-43e6-bb72-c11cd7cd5b6e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087563429"}, "pid": "1083", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:09.45939 2024-09-11 09:01:09.459393 25177d41-c4c1-4716-82f0-67e4f818d391 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087600936"}, "pid": "1084", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:09.514391 2024-09-11 09:01:09.514393 91b4c691-8e38-47a7-a9a3-0173acd6826d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1087603781"}, "pid": "1085", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:09.575485 2024-09-11 09:01:09.575489 70e03515-0dfd-47c3-b40c-5dba898c050f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1088444008"}, "pid": "1086", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:09.669787 2024-09-11 09:01:09.669792 f85b0724-233c-4abb-b4d6-e199ca752bdd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1088579485"}, "pid": "1087", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:09.747364 2024-09-11 09:01:09.747369 8078b6ce-d7f2-4dce-8a5d-a32a00a8cde9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1088801498"}, "pid": "1088", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11148207925300342818"} 1 +2024-09-11 09:01:09.819991 2024-09-11 09:01:09.819993 4ec87bb0-08a6-46b5-a54c-3df94eacea09 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089143001"}, "pid": "1089", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111261630"} 1 +2024-09-11 09:01:09.959361 2024-09-11 09:01:09.959364 3b470c43-5f8a-45db-a0ae-518ee81000f6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089227736"}, "pid": "1091", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1038145856947622920528"} 1 +2024-09-11 09:01:10.027747 2024-09-11 09:01:10.027751 47a1046a-6176-4b9f-959f-c7d0101591af {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089267177"}, "pid": "1092", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1025145857140122922950"} 1 +2024-09-11 09:01:10.092291 2024-09-11 09:01:10.092294 cb92b127-88d6-4b21-a20e-e5e0f895d222 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089282826"}, "pid": "1093", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:10.154413 2024-09-11 09:01:10.154418 a861c1d9-d92e-4b03-8810-5c1f4fc0e18c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089334826"}, "pid": "1094", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:10.221051 2024-09-11 09:01:10.221054 2a1646f9-64be-4883-87dc-5b85c8f9efed {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089339771"}, "pid": "1095", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1006145856882222920257"} 1 +2024-09-11 09:01:10.279357 2024-09-11 09:01:10.279361 7ee1d650-a6a2-4bfd-a251-b99000a04992 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089387830"}, "pid": "1096", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:10.34793 2024-09-11 09:01:10.347937 34787465-ddfa-40fa-89d4-56b271a605e1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089390971"}, "pid": "1097", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:10.44826 2024-09-11 09:01:10.448263 d2856fe4-7329-4aca-b76a-30623d99f7a8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089392907"}, "pid": "1098", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1124145856882922920253"} 1 +2024-09-11 09:01:10.522582 2024-09-11 09:01:10.522586 cfdab6d7-f90d-44cd-a531-505fbd4b2086 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089443617"}, "pid": "1099", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:10.582394 2024-09-11 09:01:10.582397 ef848c96-b988-4014-8cb4-945aaf686d67 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089455437"}, "pid": "1100", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:30.270318 2024-09-11 09:06:30.270321 d0d5f8f1-e861-4552-ac20-bace13c35cb8 {"pid": "6120", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003162783"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:10.715676 2024-09-11 09:01:10.715679 41734599-9ff5-41a1-9ae8-25de8a03b61f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089477015"}, "pid": "1102", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106391319"} 1 +2024-09-11 09:01:10.777321 2024-09-11 09:01:10.777325 22eb8646-7843-4224-88e0-b85554da8015 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089511663"}, "pid": "1103", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100669807"} 1 +2024-09-11 09:01:10.833986 2024-09-11 09:01:10.833989 2ad324e3-8e62-43f0-9e41-e38fb9e513e9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/108951431X"}, "pid": "1104", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:10.908611 2024-09-11 09:01:10.908614 78059b33-ea6b-4965-b4be-a4e4ce08c459 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089572670"}, "pid": "1105", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:10.967327 2024-09-11 09:01:10.967331 18d323eb-d64e-4616-a22c-13524c69bc5e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089574282"}, "pid": "1106", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:11.035459 2024-09-11 09:01:11.035464 e1158460-f458-496b-bee2-c02d922fb117 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089580274"}, "pid": "1107", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:11.093628 2024-09-11 09:01:11.09363 51ee4567-2cf1-4c85-8eb2-1ebb7ea5a07f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089589018"}, "pid": "1108", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:11.149464 2024-09-11 09:01:11.149466 8baebafa-9139-4d2d-8bb1-af8b392b81c8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089604890"}, "pid": "1109", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:11.2083 2024-09-11 09:01:11.208305 332a2f2a-0bc2-4834-a593-3c65b1ed38b0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089638353"}, "pid": "1110", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:11.269055 2024-09-11 09:01:11.269059 c8dda590-783a-4ef4-93f9-9bc38fdae14d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089642393"}, "pid": "1111", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:11.364025 2024-09-11 09:01:11.364029 51b0f614-1df7-4e78-9de8-0d71d94067a3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089664281"}, "pid": "1112", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11192223"} 1 +2024-09-11 09:01:11.417783 2024-09-11 09:01:11.417785 bbfbb7de-2f5a-4ed5-88b9-0398efa59dec {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089664389"}, "pid": "1113", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:11.469173 2024-09-11 09:01:11.469176 abdab083-00b0-441c-b073-9150365eddaa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089666802"}, "pid": "1114", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:11.5195 2024-09-11 09:01:11.519502 56d28107-cb71-4815-a9d0-c80c3d3febe0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089669003"}, "pid": "1115", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:11.5781 2024-09-11 09:01:11.578104 72ee5b7c-258a-4141-8aee-962422cbb5fb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089693907"}, "pid": "1116", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:11.636456 2024-09-11 09:01:11.636459 dece29be-1692-4bf5-9ae6-f837ebcc0fab {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089702655"}, "pid": "1117", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:11.695181 2024-09-11 09:01:11.695185 164b9e1c-819f-4017-b803-dd6bb0acc425 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089766106"}, "pid": "1118", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:11.752056 2024-09-11 09:01:11.752061 4eef7f37-43e1-4c26-a050-ac034eeb633e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089790732"}, "pid": "1119", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:09.891007 2024-09-11 09:05:12.733625 623e977c-2828-48ac-8b40-c9ce8bc27081 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089160305"}, "pid": "1090", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/181054825"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104042374"} 2 +2024-09-11 09:01:11.813048 2024-09-11 09:01:11.813051 77efa895-c621-4d0b-be2f-28c4adbfda34 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089841035"}, "pid": "1120", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1116145857103822922265"} 1 +2024-09-11 09:01:11.873481 2024-09-11 09:01:11.873485 e342f666-e544-4d24-ad7c-aaac14e4fa63 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089904703"}, "pid": "1121", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:11.932164 2024-09-11 09:01:11.932168 8d104950-e4a1-49b3-a2c3-f8152726a61f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1090478615"}, "pid": "1122", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:11.997703 2024-09-11 09:01:11.997707 508b8eca-6cad-4a6e-a6cc-6cbcd0d28d81 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1090479816"}, "pid": "1123", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:12.061947 2024-09-11 09:01:12.061951 21933c73-dc9b-44dd-96d0-d55db19610eb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1090697538"}, "pid": "1124", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:12.123696 2024-09-11 09:01:12.123699 85331d7d-d66b-4b5b-be5a-011b5546b571 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1090699522"}, "pid": "1125", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:12.175431 2024-09-11 09:01:12.175435 e6ce9689-618f-4e26-963c-83150b639b89 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1090752598"}, "pid": "1126", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:12.230643 2024-09-11 09:01:12.230646 f3242aa2-84c8-4363-bd53-67891bc3c794 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1090809786"}, "pid": "1127", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:12.298148 2024-09-11 09:01:12.298152 889fb83b-4abf-4ea8-9af6-2a0ca589ecff {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1091183546"}, "pid": "1128", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1046145857953723021295"} 1 +2024-09-11 09:01:12.353047 2024-09-11 09:01:12.353051 2eaf523b-6039-4057-9f4d-0f51393b71b4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/109123471X"}, "pid": "1129", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1020145857884923020408"} 1 +2024-09-11 09:01:12.407066 2024-09-11 09:01:12.407069 ee7c3e3b-5b81-436b-8725-18dfc6cfd5af {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1091235007"}, "pid": "1130", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:12.464551 2024-09-11 09:01:12.464554 f9d8234a-9b50-4e5d-a8a1-d9662dde1dbd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1091238898"}, "pid": "1131", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1033145856888922920449"} 1 +2024-09-11 09:01:12.518981 2024-09-11 09:01:12.518983 1e90a468-eed4-4377-9a1e-bbfff7023c32 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1091451982"}, "pid": "1132", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:12.574319 2024-09-11 09:01:12.574321 3d8cda2a-6ff5-4d02-afe9-60147deb5bf6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1091613443"}, "pid": "1133", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:12.642083 2024-09-11 09:01:12.642087 8f2128cb-9290-43e3-a02e-a9f92f8fe550 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1091651787"}, "pid": "1134", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:12.726517 2024-09-11 09:01:12.726521 cf06dfd3-c413-48a0-a3c1-67d1390c0876 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1091678340"}, "pid": "1135", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:12.7907 2024-09-11 09:01:12.790705 26556777-91f8-4251-bd18-ef09edf84cf7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1091697396"}, "pid": "1136", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:12.851586 2024-09-11 09:01:12.85159 709f6c49-6f77-454b-ba08-398db3ea643a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1091697620"}, "pid": "1137", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1041145856884122920363"} 1 +2024-09-11 09:01:12.91074 2024-09-11 09:01:12.910743 5efd5954-1b00-40eb-8614-823edb4c2402 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1091698856"}, "pid": "1138", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:12.979065 2024-09-11 09:01:12.97907 6a3e88a7-1e9c-49c8-ad2a-5cae35957df2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1091702292"}, "pid": "1139", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:13.036377 2024-09-11 09:01:13.036381 6d392b23-78d3-4247-b8e0-016d7bca89ba {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/109172251X"}, "pid": "1140", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:13.090256 2024-09-11 09:01:13.09026 0bae2005-9fad-4545-a216-5eb0b7249739 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/109177918X"}, "pid": "1141", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:13.148596 2024-09-11 09:01:13.148601 1036918d-b22e-4fed-84f3-ce5017addd14 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1091785813"}, "pid": "1142", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:13.217998 2024-09-11 09:01:13.218002 3eb0c0ca-5661-4e91-8aaf-0d59e859b391 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1091786100"}, "pid": "1143", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1033145857091722922084"} 1 +2024-09-11 09:01:13.272866 2024-09-11 09:01:13.272869 60204e46-9a0a-4f00-bed4-61dc7019592e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1091792305"}, "pid": "1144", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:13.326094 2024-09-11 09:01:13.326098 add25c40-3970-4b00-b5b9-a1cd027f4eef {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/109179331X"}, "pid": "1145", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:13.386616 2024-09-11 09:01:13.386621 aa3e608f-23de-4c5b-95d1-0c45cfee4720 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1091822417"}, "pid": "1146", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:13.442747 2024-09-11 09:01:13.44275 7677242a-a41f-4293-abae-4e972d2f90ee {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1091849781"}, "pid": "1147", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:13.49491 2024-09-11 09:01:13.494912 36e1ece5-b67f-4756-b5e4-71c503fc8de9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1091883599"}, "pid": "1148", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:13.556253 2024-09-11 09:01:13.556256 4edeb210-136d-4e6d-89d8-0fed150ef8a5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1091897085"}, "pid": "1149", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:13.610286 2024-09-11 09:01:13.610288 79d92b0d-6547-4125-abbd-e4283d4e9d36 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1091907730"}, "pid": "1150", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:13.663574 2024-09-11 09:01:13.663577 3d71e339-8622-4ce4-80fa-a4df788997e6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1091936803"}, "pid": "1151", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:13.718066 2024-09-11 09:01:13.718069 13e28f18-2d17-40b8-8261-9e93b6efdc7d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1091959382"}, "pid": "1152", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:13.770129 2024-09-11 09:01:13.770133 9d9ea2bb-dd7f-44ce-b1ff-19d9da89d602 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1092040889"}, "pid": "1153", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:13.828805 2024-09-11 09:01:13.828809 6dd7ba28-fe11-4aeb-a58c-d4d686ecc8c5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/109206639X"}, "pid": "1154", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:13.88325 2024-09-11 09:01:13.883254 4382b2a7-da97-4349-8dc5-2e29cea48f7c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1092274499"}, "pid": "1155", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:13.938149 2024-09-11 09:01:13.938152 678a3051-b46a-4440-b847-fb5af5c202a4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/109229578X"}, "pid": "1156", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:13.999615 2024-09-11 09:01:13.999618 4e6f7836-063c-41f0-bc86-c94423df7d78 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1092297278"}, "pid": "1157", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:14.055247 2024-09-11 09:01:14.055249 63d0e03b-3f95-40d9-91ad-9add161d0dee {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1092349839"}, "pid": "1158", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:14.106373 2024-09-11 09:01:14.106376 15d4c84a-960c-4eb1-8e6b-f3290dcf8ef5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1092417966"}, "pid": "1159", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:14.175578 2024-09-11 09:01:14.175583 7e4656f7-6124-4170-bfc1-f10dbffb3da9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1092457992"}, "pid": "1160", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1039145857081622921854"} 1 +2024-09-11 09:01:14.243753 2024-09-11 09:01:14.243755 15d963a1-3af0-4a9e-960c-297bbd24d99b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1092493239"}, "pid": "1161", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:14.301732 2024-09-11 09:01:14.301735 62860008-b512-42b2-8e64-ceaae67e69a2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1092495266"}, "pid": "1162", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:14.356629 2024-09-11 09:01:14.356632 7d93c65b-a5ed-4397-ba3d-443c869dca3a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1092508333"}, "pid": "1163", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:14.408254 2024-09-11 09:01:14.408257 1d631c6d-55d7-42f6-801f-3d88c5097f9c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1092524398"}, "pid": "1164", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:14.464183 2024-09-11 09:01:14.464187 9152c0a0-632f-4b9e-a883-da4b934e0245 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1092551271"}, "pid": "1165", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:14.514545 2024-09-11 09:01:14.514548 c1d6e09a-7d5c-4edf-a1fd-c43975a8cb35 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1093232943"}, "pid": "1166", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:14.570559 2024-09-11 09:01:14.570563 f34e2ab8-ea09-4b6a-9709-0b0977631f86 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1095512498"}, "pid": "1167", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "113146029614235822937"} 1 +2024-09-11 09:01:14.623368 2024-09-11 09:01:14.623371 c4391375-a84e-4da1-882b-2d75c3c48adb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1095673300"}, "pid": "1168", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:14.691377 2024-09-11 09:01:14.69138 b182fa47-5090-4d9f-bdf6-6d8a08b97707 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1095685007"}, "pid": "1169", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:14.745056 2024-09-11 09:01:14.745059 74f6c8e4-5e5f-4473-841b-4317aad8c174 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1095792091"}, "pid": "1170", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:14.817473 2024-09-11 09:01:14.817475 a5e1efca-80b0-42c6-8fa0-c3dea28cf6b4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1095794957"}, "pid": "1171", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107146029458435821256"} 1 +2024-09-11 09:01:14.868805 2024-09-11 09:01:14.868808 cbebc897-fb29-4de4-88a8-9d0f1c51bb2b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/109579762X"}, "pid": "1172", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:30.326465 2024-09-11 09:06:30.32647 39e713cb-8a0f-4f50-a75a-3231c5725afb {"pid": "6121", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003170262"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:14.981617 2024-09-11 09:01:14.98162 531daf70-e0f1-4d3e-9f93-a678129b0316 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1096247151"}, "pid": "1174", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:15.04097 2024-09-11 09:01:15.040974 43429bb3-b474-4e7b-9379-f58c38a4be66 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1096338572"}, "pid": "1175", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:15.094238 2024-09-11 09:01:15.094241 035d7b9e-6a34-421b-8a4b-158fc1cdc3fb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1096509253"}, "pid": "1176", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:15.153866 2024-09-11 09:01:15.15387 52ca75e3-fc3c-40c8-8cd8-e13c2353e33d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1097290735"}, "pid": "1177", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:15.207769 2024-09-11 09:01:15.207772 fec076c3-fa1d-4110-887a-59512eae7c47 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1097642550"}, "pid": "1178", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:15.261033 2024-09-11 09:01:15.261036 d532efdc-c25f-4e04-afc5-032d584ce0a0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1097758591"}, "pid": "1179", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:15.377767 2024-09-11 09:01:15.377771 8c9a4a8f-2e13-4657-b0fa-8b02b6a5922c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1098168984"}, "pid": "1181", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101146216689909092054"} 1 +2024-09-11 09:01:15.437603 2024-09-11 09:01:15.437606 e3507213-0bcb-4529-926d-e19ebc2bb387 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1098212460"}, "pid": "1182", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:15.504475 2024-09-11 09:01:15.504479 63c0f873-2366-4ee9-b331-13c839e348b1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/109946577X"}, "pid": "1183", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:15.576835 2024-09-11 09:01:15.576838 34148b6b-6d1b-4a37-af18-15dffc5c9181 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1099467756"}, "pid": "1184", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:15.636326 2024-09-11 09:01:15.636329 a7495327-23c3-43bb-adb1-9a8a5ea4899b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1099730872"}, "pid": "1185", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:15.687762 2024-09-11 09:01:15.687764 d6d914a5-913f-4546-badb-223c04a2ddca {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1099924197"}, "pid": "1186", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:15.738063 2024-09-11 09:01:15.738066 df27edf5-5666-485b-9905-c4cea42115c3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1100173900"}, "pid": "1187", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:15.788378 2024-09-11 09:01:15.788381 28b9439b-0d10-4e80-827d-651ee2ac1406 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1100326294"}, "pid": "1188", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:15.850332 2024-09-11 09:01:15.850335 487bed51-6e31-45ee-999b-8e2043abf6fd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1100545808"}, "pid": "1189", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:15.899986 2024-09-11 09:01:15.899989 43b911d9-edef-4310-b62e-2529515ed468 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1100546359"}, "pid": "1190", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:15.952976 2024-09-11 09:01:15.952978 fc9fd5a8-e3b7-466f-8638-2d4b7550aec9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1100694404"}, "pid": "1191", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:16.005515 2024-09-11 09:01:16.005517 c100d43f-3f29-453d-87c2-a861c36c1a4b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1101362081"}, "pid": "1192", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:16.068617 2024-09-11 09:01:16.068622 8a9f0596-ea90-4dab-8de5-a0dce83f7c69 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1101364238"}, "pid": "1193", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101146462687227771964"} 1 +2024-09-11 09:01:16.142555 2024-09-11 09:01:16.142559 04a00ef8-fe2d-4e20-a348-53948e5a4aad {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1101375183"}, "pid": "1194", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:16.203221 2024-09-11 09:01:16.203225 b9d5b28f-61de-4231-aae0-de633d066c13 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1101470003"}, "pid": "1195", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:16.255862 2024-09-11 09:01:16.255867 f1a3f5da-d658-41e1-931b-5b646249a4d7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1102164240"}, "pid": "1196", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:16.310476 2024-09-11 09:01:16.310479 f5f24453-386b-49fc-8b13-2df09a3efbec {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1102224820"}, "pid": "1197", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:16.373762 2024-09-11 09:01:16.373765 9884ae01-592d-4453-80c1-bcb56a922b1a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/110234979"}, "pid": "1198", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:16.425919 2024-09-11 09:01:16.425923 9545eb00-bdde-462d-81f8-80776aa9261c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1102950661"}, "pid": "1199", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:16.479317 2024-09-11 09:01:16.47932 b10b08ad-d894-4b12-a356-5f857d56dd77 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1103145347"}, "pid": "1200", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:16.535601 2024-09-11 09:01:16.535606 9d3b10c8-d9a9-4552-b969-ff421b4be83a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1103471996"}, "pid": "1201", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102146634401541931725"} 1 +2024-09-11 09:01:16.587794 2024-09-11 09:01:16.587797 d9d04fc9-6a33-471e-a9df-bd40bef348ab {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1103491768"}, "pid": "1202", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:16.640805 2024-09-11 09:01:16.640808 4a80c5cd-e199-4ce4-b0b4-5e1e4a244372 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1103855794"}, "pid": "1203", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:16.697237 2024-09-11 09:01:16.697242 afbe13cd-cdff-4dde-a510-65f66830decd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1104130424"}, "pid": "1204", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:16.784399 2024-09-11 09:01:16.784402 8514faf8-40a3-4f26-a18b-0efcd87a0a3f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1104279754"}, "pid": "1205", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101416806"} 1 +2024-09-11 09:01:16.83974 2024-09-11 09:01:16.839743 2b2fd03c-96f7-41ca-be67-fbea5d35af3d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1104394499"}, "pid": "1206", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:16.891748 2024-09-11 09:01:16.891752 a2e21da3-b80d-4ad5-8de6-bfdd38d36d9e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1104971259"}, "pid": "1207", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:16.947152 2024-09-11 09:01:16.947155 0b16bc77-f26f-4bf9-8906-cbddb2802cfb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1105435075"}, "pid": "1208", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:17.00755 2024-09-11 09:01:17.007554 ff3b0b3b-1345-469d-96eb-11fd6119685a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1106144244"}, "pid": "1209", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:17.060731 2024-09-11 09:01:17.060734 f5ae2e5b-a0d7-40dc-81c5-af39699f9f5d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1106568257"}, "pid": "1210", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:17.111006 2024-09-11 09:01:17.111011 6ff9b65f-5c90-40fb-8850-11d9f4c1a1a1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/110674057"}, "pid": "1211", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:17.167759 2024-09-11 09:01:17.167762 c21953fb-cb7e-4bcd-94f0-0aad7599ae48 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1107220025"}, "pid": "1212", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111146937735413830378"} 1 +2024-09-11 09:01:17.219507 2024-09-11 09:01:17.219511 d9d4af84-8d0e-4b5f-a8c3-0657d0184cbf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1108588271"}, "pid": "1213", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:17.272473 2024-09-11 09:01:17.272477 2ae91762-4fcd-4f01-91dc-b9915aecfa01 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1109102283"}, "pid": "1214", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:17.324007 2024-09-11 09:01:17.32401 3785168f-1531-4a06-9339-e9aabadc2fce {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1109796900"}, "pid": "1215", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:17.379449 2024-09-11 09:01:17.379451 3b99f520-868f-4878-bd52-5dba63b816d9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1109931689"}, "pid": "1216", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100147094985625081522"} 1 +2024-09-11 09:01:17.437837 2024-09-11 09:01:17.437839 e0b933a5-e423-4961-b6b7-de7d7123f316 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1110040970"}, "pid": "1217", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110147094994025081219"} 1 +2024-09-11 09:01:17.492973 2024-09-11 09:01:17.492978 0a3e7e51-1e7e-4480-8874-74f4329e5ae0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1111133735"}, "pid": "1218", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:17.548527 2024-09-11 09:01:17.54853 c4864582-ffa1-4abf-ac95-132a7cab4316 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1111902321"}, "pid": "1219", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:17.603995 2024-09-11 09:01:17.603997 2f879dec-5069-45f8-a733-78ca1009a485 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1112571647"}, "pid": "1220", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:17.66318 2024-09-11 09:01:17.663183 dcf55a37-bcf4-4beb-93dc-611027101199 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/111263638"}, "pid": "1221", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10466509"} 1 +2024-09-11 09:01:17.722658 2024-09-11 09:01:17.72266 d03f48b1-4f2f-43fb-a81d-0c968f068a3d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1112747885"}, "pid": "1222", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:17.777285 2024-09-11 09:01:17.77729 fb0fd8fb-eafa-48fd-a5f0-9d678f64b859 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/111303002X"}, "pid": "1223", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:17.839709 2024-09-11 09:01:17.839712 e15a9686-dd8b-40b7-8463-595815719868 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1113214309"}, "pid": "1224", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:17.893762 2024-09-11 09:01:17.893766 6d01eb2a-b517-4480-b1fc-9ad0cf109b29 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1114419125"}, "pid": "1225", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:17.946079 2024-09-11 09:01:17.946081 4065789b-f3ec-4f36-824c-60fc9f795895 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1114601357"}, "pid": "1226", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:17.998025 2024-09-11 09:01:17.998029 88029fb8-63c4-4437-b29d-2dafda756839 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1114680176"}, "pid": "1227", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:18.054676 2024-09-11 09:01:18.054679 5b7fc22c-9875-4248-a818-04f1519a8eea {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/111476518X"}, "pid": "1228", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1027147553252953800006"} 1 +2024-09-11 09:01:18.107336 2024-09-11 09:01:18.107339 0c773571-5787-4bac-a2aa-9dff7555df15 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1114895288"}, "pid": "1229", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:18.174891 2024-09-11 09:01:18.174894 f60211c8-b546-466a-ad8d-1259772e4d31 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1114895318"}, "pid": "1230", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1060147553253253800009"} 1 +2024-09-11 09:01:18.228651 2024-09-11 09:01:18.228654 61cb12dc-99cf-4055-8ff1-75015565f3aa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1115670395"}, "pid": "1231", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:18.284194 2024-09-11 09:01:18.284197 d3b30ad9-e00f-4dad-b45a-973cc84155e6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1116350033"}, "pid": "1232", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:18.335218 2024-09-11 09:01:18.33522 fffdf4da-4782-4379-94bf-9bc275b9be45 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1116493586"}, "pid": "1233", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:18.387159 2024-09-11 09:01:18.387161 bf7219d9-4be4-41b4-a400-90b690b07890 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1116967383"}, "pid": "1234", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:18.4385 2024-09-11 09:01:18.438502 a5507b27-ce96-4206-a22a-66ea4a61df7c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1116977273"}, "pid": "1235", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:18.49327 2024-09-11 09:01:18.493273 bf11f36a-8afb-406d-8882-93c0a22d523d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1116983575"}, "pid": "1236", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:18.547588 2024-09-11 09:01:18.547591 63f718c0-cfd5-4e4e-b4ef-464c691a8761 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/111715677X"}, "pid": "1237", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:18.615276 2024-09-11 09:01:18.615279 b3c9f87a-3bb7-4c05-8077-e1a1700ab03b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/111716151X"}, "pid": "1238", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:18.683631 2024-09-11 09:01:18.683634 80a1f1be-a6a5-4629-89ce-68b82040af00 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1117731855"}, "pid": "1239", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10150807246218860103"} 1 +2024-09-11 09:01:18.742239 2024-09-11 09:01:18.742243 e2d250c1-1c12-495e-b17b-3dffbcca5578 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/111783946X"}, "pid": "1240", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:39.767977 2024-09-11 09:06:30.389815 95a4f736-47e7-4a7e-81e4-4dac6c4450b5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/170661393"}, "pid": "2610", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003171170"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260176893"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112022445"} 3 +2024-09-11 09:01:18.878282 2024-09-11 09:01:18.878286 2a4ec5cc-8442-455a-85b7-657898bbfa68 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1119264243"}, "pid": "1242", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:18.931901 2024-09-11 09:01:18.931905 0c31ea23-025a-4525-a6f6-c83fbaebfed2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1120447089"}, "pid": "1243", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:19.052903 2024-09-11 09:01:19.052905 523bbe91-7686-4968-887a-211037b8a0a9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1120533929"}, "pid": "1245", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:19.109416 2024-09-11 09:01:19.10942 0a29f4e9-48bc-429d-8802-48d059d0adc5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1120736277"}, "pid": "1246", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1046148122888895200002"} 1 +2024-09-11 09:01:19.166485 2024-09-11 09:01:19.166487 76b94ef7-1af4-4ace-bfe0-bab84cce73d6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1120815401"}, "pid": "1247", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103148120450694790522"} 1 +2024-09-11 09:01:19.21931 2024-09-11 09:01:19.219314 9f6ec6b2-106f-475a-b8b4-f153b7ed27c6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1121320910"}, "pid": "1248", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:19.275633 2024-09-11 09:01:19.275637 a90890a3-a1c9-4fb4-b264-757e7f3e03c8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1121540562"}, "pid": "1249", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:19.38865 2024-09-11 09:01:19.388653 3c9834c0-849d-40f2-9cc3-9cd083c1ef85 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1122056257"}, "pid": "1251", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:19.448355 2024-09-11 09:01:19.448359 f906f978-f915-419e-ab47-2515ff6b50e9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1122060041"}, "pid": "1252", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:19.506177 2024-09-11 09:01:19.506179 ddca8835-9118-42d8-a5ad-cd432270cb0c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1122486812"}, "pid": "1253", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:19.564356 2024-09-11 09:01:19.564358 7c71b8f8-ece1-4138-a463-6e5715ec111f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1122489684"}, "pid": "1254", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:19.618881 2024-09-11 09:01:19.618883 8eff7a83-cfcb-4351-a303-8519d44b10ae {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1122490267"}, "pid": "1255", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:19.68254 2024-09-11 09:01:19.682543 35e99346-e48d-4f88-a1ac-22e7a0586efb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1123156344"}, "pid": "1256", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:19.751462 2024-09-11 09:01:19.751465 87dcbd4d-9451-4598-9085-b2633fd34bfc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1123162263"}, "pid": "1257", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:19.802744 2024-09-11 09:01:19.802747 25c9d0b5-88e0-4457-8101-947df3ad9f0b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1123172706"}, "pid": "1258", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:19.852005 2024-09-11 09:01:19.852008 9238d7a3-f828-4d13-8ddc-ffbdd013259c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1123512752"}, "pid": "1259", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:19.905906 2024-09-11 09:01:19.905909 96bfa07b-ee1a-4e9d-90aa-901ab6828023 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1123752990"}, "pid": "1260", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:19.954574 2024-09-11 09:01:19.954577 f363fa37-ad07-4355-beaf-e141f94097fe {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/112427748X"}, "pid": "1261", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:20.011712 2024-09-11 09:01:20.011715 1065cf97-418c-493c-9dd5-9a44a430e26b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1125914920"}, "pid": "1262", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:20.080254 2024-09-11 09:01:20.080256 503e1fb0-a134-469c-a81d-7d2805d49d7e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1126056839"}, "pid": "1263", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:20.133627 2024-09-11 09:01:20.133629 4eba4971-4b70-4365-9ca2-41d4187b7318 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1126065013"}, "pid": "1264", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:30.448738 2024-09-11 09:06:30.448742 62ce7a1b-8a51-4920-bd17-d3c36fb7234f {"pid": "6122", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003172151"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:20.250176 2024-09-11 09:01:20.250181 5aedc8d2-0c7a-4460-9453-481f83e93683 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1127773151"}, "pid": "1266", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:20.306139 2024-09-11 09:01:20.306142 dc370284-655e-46d4-8394-fb68a5b089b3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1129898709"}, "pid": "1267", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105996931"} 1 +2024-09-11 09:01:20.376622 2024-09-11 09:01:20.376627 c40360fc-8dc4-4f1a-830a-f13f496acccb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1129905373"}, "pid": "1268", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110149233547676512774"} 1 +2024-09-11 09:01:20.433831 2024-09-11 09:01:20.433835 3e87a2ba-7e2a-4687-9680-6da351593ba9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1130192466"}, "pid": "1269", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:20.498665 2024-09-11 09:01:20.498669 2d011b81-e4f4-4390-9d64-84d200d1d3cd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1130814122"}, "pid": "1270", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:20.564475 2024-09-11 09:01:20.564477 b994af66-a8f8-447a-865b-7911ba12485b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1130817318"}, "pid": "1271", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:30.502176 2024-09-11 09:06:30.50218 7da6b6a7-e209-492a-bd7c-c4e1f512bb7b {"pid": "6123", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003172474"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:20.678385 2024-09-11 09:01:20.678388 b665f9dc-fc49-4d50-bda3-423ff614ae48 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1131199715"}, "pid": "1273", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:20.758293 2024-09-11 09:01:20.758297 26ffb867-4c2e-4167-9551-acf9045a7379 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/113126262X"}, "pid": "1274", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:19.002285 2024-09-11 09:07:57.233564 13782197-3217-4fdb-a162-ed0f5c6f9bef {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1120533260"}, "pid": "1244", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027062343"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108148812855545212571"} 2 +2024-09-11 09:01:20.819066 2024-09-11 09:01:20.819068 ec545d7c-fd68-4537-8cb3-e75369a59a28 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1131276868"}, "pid": "1275", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:20.871869 2024-09-11 09:01:20.871873 7d6e7dc6-6f70-49cf-b900-18a4e8cad770 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1131574338"}, "pid": "1276", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:20.928702 2024-09-11 09:01:20.928707 53c55d3f-6d3f-4e8c-be42-981eef891576 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1131715187"}, "pid": "1277", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:20.98065 2024-09-11 09:01:20.980652 09055524-0fa3-4cf8-8b32-9d40e2b50bf6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1132157781"}, "pid": "1278", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:21.036423 2024-09-11 09:01:21.036426 94ba3db2-aa65-4626-948d-7dbb838e71d2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1132540623"}, "pid": "1279", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:21.095257 2024-09-11 09:01:21.095259 312e45be-ad5c-48b8-9b23-5e4a8d1bc0fb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/113454228"}, "pid": "1280", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:21.154022 2024-09-11 09:01:21.154025 8723b3e0-1066-47b7-8e9d-b6dd39d48115 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1135284865"}, "pid": "1281", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:21.207531 2024-09-11 09:01:21.207535 e68a3859-45f5-4d17-95d8-5f2a65f6c472 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1135632049"}, "pid": "1282", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:21.26201 2024-09-11 09:01:21.262012 738c41bb-cffd-49f2-b857-9b5793be76f3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1135754381"}, "pid": "1283", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1112149844940302960009"} 1 +2024-09-11 09:01:21.31471 2024-09-11 09:01:21.314714 e876b147-efd2-4ae5-b071-6c3dda3b617d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1136441034"}, "pid": "1284", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:21.421237 2024-09-11 09:01:21.421241 b7b12cd9-0e76-40fa-8649-998a91c9f660 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/113660216X"}, "pid": "1285", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:21.479662 2024-09-11 09:01:21.479664 b935066a-b538-4f61-99ad-eda4c026f9ee {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1137394390"}, "pid": "1286", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:21.529607 2024-09-11 09:01:21.529611 edf77496-2fe3-4727-b269-252d28b96b90 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1137496746"}, "pid": "1287", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:21.611524 2024-09-11 09:01:21.611527 f82e470c-7121-4f6c-8588-839ea6995ebd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1137635371"}, "pid": "1288", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:21.666248 2024-09-11 09:01:21.666251 37e1f205-2b5f-460b-adc9-8706f6e7f4f8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1137723467"}, "pid": "1289", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:21.717759 2024-09-11 09:01:21.717761 df9a4a52-15f1-420d-b0cd-e2419b668660 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1137735988"}, "pid": "1290", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:21.770954 2024-09-11 09:01:21.770957 599f9cc0-83ce-4a89-8629-83643a9c3298 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1137839392"}, "pid": "1291", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:21.823907 2024-09-11 09:01:21.82391 f2795804-eeae-4fba-a030-61d8c63e2c72 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1137872462"}, "pid": "1292", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:21.878009 2024-09-11 09:01:21.878014 6b0b80e9-d1e4-41a5-a17e-3cab9883c764 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1137888660"}, "pid": "1293", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:21.935262 2024-09-11 09:01:21.935265 89791916-06cb-4b4c-a15f-95b85cff7303 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1138059102"}, "pid": "1294", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11034417"} 1 +2024-09-11 09:01:21.989461 2024-09-11 09:01:21.989464 dfc972ea-faa5-4ac7-83b0-8c749a0a551b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1138213659"}, "pid": "1295", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:22.054429 2024-09-11 09:01:22.054431 f4af78e4-dfc8-45a3-b473-9cd74454057c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/113918055X"}, "pid": "1296", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:22.108714 2024-09-11 09:01:22.108718 e57446c2-e1ee-4341-b02b-b20819aa961c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1139311719"}, "pid": "1297", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:30.553966 2024-09-11 09:06:30.553975 c2a2a666-6ce3-4203-a4a5-3148df83dcee {"pid": "6124", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003173240"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:22.232171 2024-09-11 09:01:22.232175 bf439344-ee58-4291-b10e-b3d0a528de83 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1139404660"}, "pid": "1299", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:22.291823 2024-09-11 09:01:22.291827 7418ef18-cf52-46dd-b65b-fb178f14386f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1139496387"}, "pid": "1300", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:22.358449 2024-09-11 09:01:22.358452 5a850e1a-e87f-4400-bdd6-77887d984de4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1139509292"}, "pid": "1301", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:22.426791 2024-09-11 09:01:22.426795 b450c648-d4ba-405d-9bb9-2f03eb84a09d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1139789902"}, "pid": "1302", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:22.480074 2024-09-11 09:01:22.48008 275f3535-fa31-4482-ba7c-2dd987c63d64 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/113997981"}, "pid": "1303", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:22.534984 2024-09-11 09:01:22.534987 65d0f567-4bbf-46a2-8cf2-61b2677587c4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1140050974"}, "pid": "1304", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:22.597346 2024-09-11 09:01:22.597351 a5c7f743-9f67-47b6-8b33-6b214869d4ec {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1140075810"}, "pid": "1305", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10150644935210621186"} 1 +2024-09-11 09:01:22.651192 2024-09-11 09:01:22.651195 1e6826c7-92f8-4290-9f33-af76831f1ae0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1140159526"}, "pid": "1306", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:22.765098 2024-09-11 09:01:22.765103 71d7c88f-77fb-4066-98f9-912656c717ae {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/114054635X"}, "pid": "1308", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:22.828584 2024-09-11 09:01:22.828588 05acf757-fe13-40ca-887b-ffc5b9f84920 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1140557696"}, "pid": "1309", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10150686389512540452"} 1 +2024-09-11 09:01:22.897954 2024-09-11 09:01:22.897957 22555ef6-0084-4627-b020-4cd07785b625 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1140620959"}, "pid": "1310", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:22.953947 2024-09-11 09:01:22.953951 88a2f1e2-f545-4509-a416-018c77de97dc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1141185997"}, "pid": "1311", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:23.023918 2024-09-11 09:01:23.023921 7a024d9c-8ece-4692-beab-75c9e6d30855 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1141203960"}, "pid": "1312", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:23.095812 2024-09-11 09:01:23.095816 4ddfb6b5-f046-4142-bef4-606404219880 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1141331683"}, "pid": "1313", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:23.147482 2024-09-11 09:01:23.147485 a73a5358-41e9-43e4-9552-dbb549984f86 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1141410621"}, "pid": "1314", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:23.200119 2024-09-11 09:01:23.200123 ce0f1194-2d55-4bed-98f1-7183311e9a2e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1141815214"}, "pid": "1315", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:23.251941 2024-09-11 09:01:23.251943 4dae76fb-ab16-44cc-b487-9385d2f85c71 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1142191087"}, "pid": "1316", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:30.603731 2024-09-11 09:06:30.603733 ed94ab46-6a3e-41e5-9d08-6ffced77f89b {"pid": "6125", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003177980"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:23.366026 2024-09-11 09:01:23.366029 b07b9681-7992-4851-b36a-ffae6a424eb3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1142566420"}, "pid": "1318", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:23.419791 2024-09-11 09:01:23.419794 810456c1-33a4-4f35-ae52-dfe001ded545 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1143061578"}, "pid": "1319", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:23.474911 2024-09-11 09:01:23.474916 6b594ff1-6ffb-4d50-8daa-470db8cf618a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1143241045"}, "pid": "1320", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:23.529499 2024-09-11 09:01:23.529502 719e2c1f-7aa7-42e3-bec2-5e43cb460622 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1143266722"}, "pid": "1321", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:23.590083 2024-09-11 09:01:23.590088 6b87bf47-6ea6-4fc1-9d62-6191bc4db9d1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1143567234"}, "pid": "1322", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:23.653576 2024-09-11 09:01:23.653579 ab264bc2-ed8b-4195-b92e-cbf87667182d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1143635876"}, "pid": "1323", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1014151052061233530002"} 1 +2024-09-11 09:01:23.705079 2024-09-11 09:01:23.705081 325769f2-c9eb-4591-bfa6-7cc4f575d94d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1144273307"}, "pid": "1324", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:23.763272 2024-09-11 09:01:23.763276 8d68557b-1cb0-4f14-a3b9-ffc47afc52e4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1144301130"}, "pid": "1325", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:23.83764 2024-09-11 09:01:23.837643 a839903f-be62-4fc0-a6bd-3f39e83cf6be {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1144669049"}, "pid": "1326", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:23.904316 2024-09-11 09:01:23.904318 77c74821-d3e1-4b83-95a5-894753027fea {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1145344372"}, "pid": "1327", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:23.976096 2024-09-11 09:01:23.976101 688d7ffa-e742-412d-bbeb-5acdde11f763 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1145352111"}, "pid": "1328", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:24.39812 2024-09-11 09:06:41.622726 69fb5e6e-7184-4545-8822-a9151d6dea7a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1145475299"}, "pid": "1335", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003588933"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112151170871339091229"} 2 +2024-09-11 09:01:24.168613 2024-09-11 09:01:24.168617 6f588200-85df-4a55-84c7-ffe8516d0bec {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1145390439"}, "pid": "1331", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:24.285655 2024-09-11 09:01:24.285658 8a2d6e9f-7aea-487f-b9bd-052ca3ce07e1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1145435904"}, "pid": "1333", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:24.341626 2024-09-11 09:01:24.34163 dfe9193e-7583-4ed7-9a93-0179e0443e8f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/114546193X"}, "pid": "1334", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:24.451557 2024-09-11 09:01:24.451561 a399aebb-9aa3-4ce6-9fa7-83bc61ac3491 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1145486533"}, "pid": "1336", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:24.032119 2024-09-11 09:07:01.715995 21e5e26c-0dc4-43af-8750-fe41b7047938 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/114535601X"}, "pid": "1329", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011983307"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/204167000"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108896036"} 3 +2024-09-11 09:01:22.707474 2024-09-11 09:05:33.227672 949991b0-3608-4c7a-b851-fe465f4a86cc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1140439618"}, "pid": "1307", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/221761942"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107434147"} 2 +2024-09-11 09:01:24.562217 2024-09-11 09:01:24.562221 48e4b331-bfc5-4a27-b356-deffa4899ab4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1145537650"}, "pid": "1338", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:24.620971 2024-09-11 09:01:24.620975 16d4e3bd-daff-4416-9f8d-4d292546b483 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1145563104"}, "pid": "1339", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:24.672122 2024-09-11 09:01:24.672125 7374a682-210a-43cc-951b-5c69f1623a87 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1145741851"}, "pid": "1340", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:24.729787 2024-09-11 09:01:24.729791 e2c4824c-a3a3-44cd-8f01-7c876878a489 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1145791662"}, "pid": "1341", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:24.781673 2024-09-11 09:01:24.781686 0eee5128-bd49-4ebc-8e41-63383f228507 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1145807690"}, "pid": "1342", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:24.834504 2024-09-11 09:01:24.834508 d0b80149-5582-4096-92a2-2f7d4cc1483e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1145825796"}, "pid": "1343", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:24.896911 2024-09-11 09:01:24.896914 eddae4be-f905-4da2-a4d4-7db472afb3b2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1145880231"}, "pid": "1344", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106151246547944131986"} 1 +2024-09-11 09:01:24.953586 2024-09-11 09:01:24.953589 b7f1f8f2-eb63-4426-9bb1-4111244f5fa1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1145891209"}, "pid": "1345", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:25.022584 2024-09-11 09:01:25.022587 b0151719-e1e7-4044-b3fc-83edd649a043 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1145931103"}, "pid": "1346", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10487173"} 1 +2024-09-11 09:01:25.075377 2024-09-11 09:01:25.075381 5bc4e265-d33b-456b-a8a4-067baa55fce7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1145959857"}, "pid": "1347", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:30.655007 2024-09-11 09:06:30.655011 993efaba-7039-4970-840f-aeb0f707fe12 {"pid": "6126", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003178146"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:25.18697 2024-09-11 09:01:25.186973 56324f9f-070b-4814-8682-b986e40955d6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/114606151X"}, "pid": "1349", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:25.254279 2024-09-11 09:01:25.254282 a0433ae8-c4f4-46cc-ba3c-41ca675d26d8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146063067"}, "pid": "1350", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:25.32388 2024-09-11 09:01:25.323883 d85df978-0558-46b5-b953-6bd28803ea5f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146079567"}, "pid": "1351", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:25.382966 2024-09-11 09:01:25.382968 109ae7e1-7f94-45af-a80f-034fa795b33f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146080271"}, "pid": "1352", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:25.436339 2024-09-11 09:01:25.436341 a2749ea5-39c1-440b-b8c7-d802a36afb7d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146220359"}, "pid": "1353", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:25.562946 2024-09-11 09:01:25.562951 3190b3e2-9693-46ec-863a-3bd783e284f0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146355181"}, "pid": "1355", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108766797"} 1 +2024-09-11 09:01:25.618509 2024-09-11 09:01:25.618514 e3d456cc-a340-4efd-ace0-150f1ecaefad {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146397208"}, "pid": "1356", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:25.674106 2024-09-11 09:01:25.674109 e4e7d828-89d8-41c9-89d4-8bc6b5fce8b8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146403054"}, "pid": "1357", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:25.728149 2024-09-11 09:01:25.728152 adc4f662-3154-4a51-a961-efa5ca08d81e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146418345"}, "pid": "1358", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:25.782149 2024-09-11 09:01:25.782152 55a01ac4-99c4-4882-b006-f15aa65c4d3d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146538235"}, "pid": "1359", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:25.83227 2024-09-11 09:01:25.832274 db0c0e20-7c38-4e27-bf97-c40c91787f16 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146539045"}, "pid": "1360", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:25.894876 2024-09-11 09:01:25.894879 d3ee088e-f10f-4ba3-bff0-b3c310efce3c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146539355"}, "pid": "1361", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1061151246607144132675"} 1 +2024-09-11 09:01:25.951798 2024-09-11 09:01:25.9518 341dfdea-4dc3-47a6-9608-7623df48614a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146540825"}, "pid": "1362", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:26.023814 2024-09-11 09:01:26.023816 38f58d5e-21fe-42a5-a2aa-2b2de322f583 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146583117"}, "pid": "1363", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1028151246518844130829"} 1 +2024-09-11 09:01:26.096201 2024-09-11 09:01:26.096205 1242ed6c-b4c5-4ab4-bb27-dba65e89254c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146702809"}, "pid": "1364", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1093151246514944130237"} 1 +2024-09-11 09:01:26.155661 2024-09-11 09:01:26.155665 0a8ac1e9-8b02-49c6-9e1d-eb03b3ba1a07 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146703015"}, "pid": "1365", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101021048"} 1 +2024-09-11 09:01:26.212848 2024-09-11 09:01:26.21285 8fab5ff6-5552-4b5a-b02e-6899ca560368 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146715056"}, "pid": "1366", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:26.284533 2024-09-11 09:01:26.284536 d82de16a-32f0-485a-8ac1-690838c595cf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146716346"}, "pid": "1367", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:26.342107 2024-09-11 09:01:26.342111 8cad3b8c-43fe-40ec-982b-b4125699cce5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146716648"}, "pid": "1368", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:25.506615 2024-09-11 09:06:07.44537 3825edad-cc5a-414e-8063-900a7dc3c10a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146337116"}, "pid": "1354", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/256322325"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101148449943715692717"} 2 +2024-09-11 09:01:26.409453 2024-09-11 09:01:26.409456 f39f40c8-6da9-494d-a65c-542a98ddea60 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146776039"}, "pid": "1369", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:26.474406 2024-09-11 09:01:26.47441 7ee131f9-40c4-4f81-85fa-12d62a89392f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146781075"}, "pid": "1370", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:26.541539 2024-09-11 09:01:26.541542 01ea93fe-217f-48df-abac-77a08bb062f8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146794703"}, "pid": "1371", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104066981"} 1 +2024-09-11 09:01:26.606793 2024-09-11 09:01:26.606796 2b2bacc2-1754-4860-860d-440ae6688685 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146797974"}, "pid": "1372", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:26.663704 2024-09-11 09:01:26.663708 928d72ac-bece-4367-abd9-2740c1aabc7e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146820763"}, "pid": "1373", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:26.732231 2024-09-11 09:01:26.732234 74540ca8-dae6-43b1-b12d-f6cfae54e566 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146911882"}, "pid": "1374", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:26.79075 2024-09-11 09:01:26.790752 afab1548-ff66-4bc1-98ac-804c48f8413e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146958730"}, "pid": "1375", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112151246626444132994"} 1 +2024-09-11 09:01:26.846935 2024-09-11 09:01:26.846939 7df5b77c-e33b-4c8a-9680-7ce6f8dbc81b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146987935"}, "pid": "1376", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "113151246509144130987"} 1 +2024-09-11 09:01:26.90171 2024-09-11 09:01:26.901713 e5f27a57-bc27-4864-90bd-9ee8188798f3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1147003505"}, "pid": "1377", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:26.951506 2024-09-11 09:01:26.951509 d77a0fea-dc4e-43eb-b973-1b0be33cfc1b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1147011087"}, "pid": "1378", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:27.003066 2024-09-11 09:01:27.003069 67d40b64-58eb-41df-b473-025435ca904f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1147058938"}, "pid": "1379", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:27.062237 2024-09-11 09:01:27.062239 a0042c2c-7b40-45d3-a2b9-f0d802dabb69 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1147073120"}, "pid": "1380", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:27.139852 2024-09-11 09:01:27.139854 788994ad-8b3e-43a2-b8c4-ef12559b400e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1147082367"}, "pid": "1381", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:27.194488 2024-09-11 09:01:27.19449 ded4d0be-43bb-4b32-896c-b0634eec7f1a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1147083045"}, "pid": "1382", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:27.250557 2024-09-11 09:01:27.25056 0862e4c2-fc61-419c-a6e2-f2662a22aa0f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1147127794"}, "pid": "1383", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107151246601144132608"} 1 +2024-09-11 09:01:27.30659 2024-09-11 09:01:27.306593 da7769b1-4277-4d49-9329-0354205bae92 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1147132976"}, "pid": "1384", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:30.706761 2024-09-11 09:06:30.706765 04db942e-859d-40c1-b54a-ae4979f3b92f {"pid": "6127", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003179452"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:27.442105 2024-09-11 09:01:27.442108 7059e401-47e8-4c46-b8a9-c1a88eac8a89 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1147150567"}, "pid": "1386", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:27.500693 2024-09-11 09:01:27.500695 c39c5f52-3d73-4bbd-81ce-1687e3625502 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1147173680"}, "pid": "1387", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:27.551482 2024-09-11 09:01:27.551484 8dfd3566-eea1-411f-8566-e8ed2f380c63 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/114720117X"}, "pid": "1388", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:27.603566 2024-09-11 09:01:27.603569 03dc049b-8b6a-425b-96ba-143f3ac3b5e9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1147319049"}, "pid": "1389", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:27.673988 2024-09-11 09:01:27.67399 2aeb719c-6288-4b03-9107-50d2229d8756 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1147429472"}, "pid": "1390", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:27.750322 2024-09-11 09:01:27.750326 f5439b21-74bb-4784-8f71-a08ed9775b0a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1147614709"}, "pid": "1391", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:27.809357 2024-09-11 09:01:27.809364 f6bc1851-1056-4735-96ea-b42331119763 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1147649642"}, "pid": "1392", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:27.875124 2024-09-11 09:01:27.875128 aecdea1e-02a3-4c24-b257-9b2c7ad10498 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1147777713"}, "pid": "1393", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:27.94585 2024-09-11 09:01:27.945853 515028f3-83e2-474c-a682-d27d587a2c10 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1148121404"}, "pid": "1394", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10151351933852600332"} 1 +2024-09-11 09:01:28.001685 2024-09-11 09:01:28.001688 2568bced-6b88-4fd9-b921-96fd3b8bdafe {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1148473181"}, "pid": "1395", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1124151353514352720000"} 1 +2024-09-11 09:01:28.062884 2024-09-11 09:01:28.062887 e688e1fc-8ef6-4805-9d2b-509268185789 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1148667989"}, "pid": "1396", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10151352032852602768"} 1 +2024-09-11 09:01:28.113856 2024-09-11 09:01:28.113858 d1222532-ef8d-401c-9951-5d5263f23888 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1148992316"}, "pid": "1397", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:28.17622 2024-09-11 09:01:28.176223 e1d8f0e3-e32c-4398-843d-6d52ed94f81c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1149000910"}, "pid": "1398", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:28.228911 2024-09-11 09:01:28.228913 8abfcb7e-a4f6-4e82-90c0-988c45788bc3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1149077050"}, "pid": "1399", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:28.281196 2024-09-11 09:01:28.2812 ff770805-06ea-4f02-ad0d-ea8c088e6b11 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1149382090"}, "pid": "1400", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:28.337442 2024-09-11 09:01:28.337444 a8d5d7f9-98e2-47f4-8593-444a1721c9d2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/115024397X"}, "pid": "1401", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:28.389951 2024-09-11 09:01:28.389954 bf97c60c-e593-4e7b-9b50-805a1d2cdbf7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1150721626"}, "pid": "1402", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:28.446946 2024-09-11 09:01:28.44695 37c8bec0-1fae-4d7f-8488-110a4f29c79f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1150789433"}, "pid": "1403", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:28.5024 2024-09-11 09:01:28.502403 5919b4a3-2f23-48c4-acf7-78c37e79a7d8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1150803541"}, "pid": "1404", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:28.564621 2024-09-11 09:01:28.564623 6f162aff-2f5c-4ced-a4a3-2f2b9b360ff2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1151079529"}, "pid": "1405", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:28.629431 2024-09-11 09:01:28.629435 c2f3a283-3076-40b2-ab45-b0da760316f1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1151380040"}, "pid": "1406", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:28.68197 2024-09-11 09:01:28.681974 f9cb0385-2b1d-4938-b945-50a02c17fd78 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/115168127X"}, "pid": "1407", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:28.736559 2024-09-11 09:01:28.736561 d13653b9-9280-4473-8f09-82d40e0f3b36 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1151834149"}, "pid": "1408", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:28.792694 2024-09-11 09:01:28.792698 e752be47-f8bb-41b9-9e38-a35ff30831a1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/115189203"}, "pid": "1409", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:28.849115 2024-09-11 09:01:28.849117 f2b2941e-3a47-49e7-bea2-4dc2842b0284 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/115228987X"}, "pid": "1410", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:28.902418 2024-09-11 09:01:28.90242 f04fbd20-02a8-4780-b939-76d20cb4fce8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1153014750"}, "pid": "1411", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:28.958394 2024-09-11 09:01:28.958397 966b287b-e14e-4313-b534-6db9fa835709 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1153069881"}, "pid": "1412", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:29.018579 2024-09-11 09:01:29.018581 f6a8026f-b748-44d6-812b-9edc6f7350b3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1153169363"}, "pid": "1413", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:29.078555 2024-09-11 09:01:29.078558 2ff73b30-5795-43d4-a0a9-ca266cb7e7ad {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/115355996X"}, "pid": "1414", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11152023589403310337"} 1 +2024-09-11 09:01:29.135757 2024-09-11 09:01:29.13576 d978cd54-450e-4097-b111-d19812412151 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1153565455"}, "pid": "1415", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:30.761387 2024-09-11 09:06:30.761391 2f4666a6-1ae4-4a75-b3d3-d566674a0b63 {"pid": "6128", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003182838"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1042145856994022920929"} 1 +2024-09-11 09:01:29.263602 2024-09-11 09:01:29.263605 ae26a387-7f47-450a-9cf9-9bc9e2c834f9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1153781506"}, "pid": "1417", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:29.319872 2024-09-11 09:01:29.319875 8aba5d78-2f5b-496f-a1f5-8699170d044a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/115378197"}, "pid": "1418", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:29.376859 2024-09-11 09:01:29.376863 3d3cfbf0-dcb5-4d6c-b136-78d248c9313f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1154802817"}, "pid": "1419", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:29.434999 2024-09-11 09:01:29.435005 8dd64eb3-f452-4dc9-8c3c-aa4727038c42 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/115493069"}, "pid": "1420", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:29.504272 2024-09-11 09:01:29.504274 e930d644-012d-4cd8-9da5-146e2dc98a10 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/115497328X"}, "pid": "1421", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:29.571776 2024-09-11 09:01:29.57178 cc203fe8-f019-4000-8c2c-342250dab474 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/115503256X"}, "pid": "1422", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:29.627292 2024-09-11 09:01:29.627296 8d19d8ee-bc81-428e-b1c9-fc07cb79bd96 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1155263766"}, "pid": "1423", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:29.678899 2024-09-11 09:01:29.678903 1313b1a3-4737-46ff-8f16-ad878ab2a7d3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1155422481"}, "pid": "1424", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:29.740619 2024-09-11 09:01:29.740622 2e3a9a77-19e0-474a-a36d-12455e7e993c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1155539176"}, "pid": "1425", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:29.79408 2024-09-11 09:01:29.794084 50b2e6c1-975b-4d00-85a5-5307bca79c18 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1155539249"}, "pid": "1426", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:29.851703 2024-09-11 09:01:29.851706 0bf8702a-06e5-4f27-8314-ccef7394fb5e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/115620451"}, "pid": "1427", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:29.918533 2024-09-11 09:01:29.918538 17935df8-1b3c-4caa-8efd-dfdfe325f6da {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1156292166"}, "pid": "1428", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:29.971979 2024-09-11 09:01:29.971982 dec84ece-1996-4de2-8b2e-45e26a48d2ff {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1156433290"}, "pid": "1429", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:30.023834 2024-09-11 09:01:30.023836 82e1df0d-56fc-4fc6-80db-484b28b29715 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1156493242"}, "pid": "1430", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:30.080782 2024-09-11 09:01:30.080786 2e736535-5608-4e56-9bf2-dad6e121c2af {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1156540917"}, "pid": "1431", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:30.135023 2024-09-11 09:01:30.135028 bf10b3dc-354f-476b-8e47-1f7ea628b79c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157052185"}, "pid": "1432", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:30.201431 2024-09-11 09:01:30.201435 7c47acf7-3f37-463d-92f1-a810653dbc88 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157216900"}, "pid": "1433", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:30.25379 2024-09-11 09:01:30.253793 5f4411e2-708c-4ee1-904d-a2e5f552f408 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157217559"}, "pid": "1434", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:30.817609 2024-09-11 09:06:30.817614 6e984502-3d10-419d-b4a9-0f8ad3a8713e {"pid": "6129", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003184655"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:30.363488 2024-09-11 09:01:30.363491 7390163c-7bb9-4726-a5ff-270c62e1651e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157269680"}, "pid": "1436", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:30.420435 2024-09-11 09:01:30.420439 946d4583-c94f-40a3-98c6-e194b570f4b8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157288723"}, "pid": "1437", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:30.483691 2024-09-11 09:01:30.483693 c399605f-9dfe-4417-bb41-2226bf0e8822 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157297676"}, "pid": "1438", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106152561552815441720"} 1 +2024-09-11 09:01:30.553435 2024-09-11 09:01:30.553439 609d13f2-1adc-4404-8e00-038718a6d8c6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157335101"}, "pid": "1439", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:30.608082 2024-09-11 09:01:30.608085 077dafa5-efa1-4b06-a2ab-3d268ae524ec {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157423981"}, "pid": "1440", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:30.659958 2024-09-11 09:01:30.659962 1a947ba5-0d52-41b7-96fc-4034ce980ea7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157447694"}, "pid": "1441", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:30.715387 2024-09-11 09:01:30.71539 e530eb35-59fd-4515-9b9e-923ab02dabd5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157452159"}, "pid": "1442", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:30.768094 2024-09-11 09:01:30.768098 c13f087b-0939-4e48-912f-e3fe4d9f705c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157594042"}, "pid": "1443", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:30.833837 2024-09-11 09:01:30.833841 2a432588-e8d9-4e9c-9cb4-3eaed94085c5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157599087"}, "pid": "1444", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:30.899139 2024-09-11 09:01:30.899145 9932bfc9-d25a-4d7a-b3c1-17ff70e201b8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157628680"}, "pid": "1445", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11152636052620050970"} 1 +2024-09-11 09:01:30.958332 2024-09-11 09:01:30.958337 752c0a6d-aff3-413e-b9e4-753f65fa3844 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157697208"}, "pid": "1446", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:31.018538 2024-09-11 09:01:31.018543 09e3cfbb-7ebc-48e9-a98c-681f03e0921a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157709702"}, "pid": "1447", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:31.091004 2024-09-11 09:01:31.091008 d8d6d1d0-5fc3-4651-909e-d2100ee44487 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157711162"}, "pid": "1448", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:31.150338 2024-09-11 09:01:31.150341 671453cb-7494-4bef-a041-83a46812b217 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/115775633"}, "pid": "1449", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:31.209857 2024-09-11 09:01:31.209862 a562c712-27d3-4dbf-b01e-2fd7cecca676 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157756964"}, "pid": "1450", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:31.269841 2024-09-11 09:01:31.269844 04b61f1d-f27f-4036-b71a-99db081f6ecb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157761518"}, "pid": "1451", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:31.33071 2024-09-11 09:01:31.330714 900953a8-888e-4e06-bba6-ded245a7f46a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157778321"}, "pid": "1452", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:31.392471 2024-09-11 09:01:31.392474 43afbe21-755c-484c-b638-636c0fed51ad {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157861202"}, "pid": "1453", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112152636063520050560"} 1 +2024-09-11 09:01:31.461797 2024-09-11 09:01:31.461801 5727c6f4-092a-498b-a4ee-be7b8643adb3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157879837"}, "pid": "1454", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:31.519663 2024-09-11 09:01:31.519667 b7acddfc-0d9a-44f5-bd52-97020de5ba9c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157907849"}, "pid": "1455", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:31.575856 2024-09-11 09:01:31.57586 ae31ed99-8496-4b29-9cf1-fc8db73667d2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157912311"}, "pid": "1456", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:31.714622 2024-09-11 09:01:31.714627 90977714-619f-4629-aeb9-21b054b0b1e4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158006497"}, "pid": "1457", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:31.801916 2024-09-11 09:01:31.801919 2951d02a-fb9e-4f9f-ae19-fb4f27133557 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158027060"}, "pid": "1458", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:31.870646 2024-09-11 09:01:31.870652 1c8835b4-5e2a-4eff-a5d2-44f13d396d35 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158052057"}, "pid": "1459", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:31.963753 2024-09-11 09:01:31.963758 ec99ac57-602f-427f-bcc6-f47693903a82 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158100892"}, "pid": "1460", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:32.048563 2024-09-11 09:01:32.048567 d0c13e75-f25c-4e79-b79c-33069680dee8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158101988"}, "pid": "1461", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:32.107075 2024-09-11 09:01:32.10708 5fbe7140-10f5-4558-87e4-b1dfc995c829 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158158408"}, "pid": "1462", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:34.50515 2024-09-11 09:06:34.505153 d7a0b5c3-e610-475c-b07b-755d338e16a8 {"pid": "6179", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003319632"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:32.220096 2024-09-11 09:01:32.220101 dfbff89c-b03d-4087-b576-e654d4a32091 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158200374"}, "pid": "1463", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:32.330905 2024-09-11 09:01:32.33091 3eaef252-495a-4047-97f3-b06eb8246f6d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158249543"}, "pid": "1464", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1007152636063420051252"} 1 +2024-09-11 09:01:32.391461 2024-09-11 09:01:32.391464 3ec7f6f1-d94a-4f2f-a1b6-75418ca8deda {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/115829106X"}, "pid": "1465", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:34.583302 2024-09-11 09:06:34.583308 40e49d19-ff96-49b1-a1ea-5099d3be5c6f {"pid": "6180", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003320872"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:32.521706 2024-09-11 09:01:32.521708 6ffba9ee-2a46-4b0f-af2b-b7e7c7114eba {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/115832599"}, "pid": "1467", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:32.583954 2024-09-11 09:01:32.583956 250bf438-de0b-456b-889e-9b7b13f51ef8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/115836346X"}, "pid": "1468", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1005152636060820050108"} 1 +2024-09-11 09:01:32.643077 2024-09-11 09:01:32.643081 15793de1-d435-4ed7-b0f4-bfd9425d1c57 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158367546"}, "pid": "1469", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:32.711099 2024-09-11 09:01:32.711103 74c57662-78b3-4a4b-bbf1-d6dcaaea227e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158376529"}, "pid": "1470", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1052152636061020050109"} 1 +2024-09-11 09:01:32.76906 2024-09-11 09:01:32.769064 a87ed9be-4d84-469c-8f63-186b47fd8ded {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158381719"}, "pid": "1471", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:32.829663 2024-09-11 09:01:32.829667 02575a1f-e6e3-4b28-a2e6-792c4ea491bb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158387253"}, "pid": "1472", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1024152636064720051266"} 1 +2024-09-11 09:01:32.885083 2024-09-11 09:01:32.885088 2b419b8b-24eb-46c5-8d9e-d80dadb565f7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158419481"}, "pid": "1473", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:32.945172 2024-09-11 09:01:32.945176 5bddc816-e2c4-4845-801e-7b4ec2711caf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158422814"}, "pid": "1474", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1094152636168820052394"} 1 +2024-09-11 09:01:33.001927 2024-09-11 09:01:33.001931 85607cca-75b4-4410-b8ed-060bba51b381 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158446462"}, "pid": "1475", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:33.063304 2024-09-11 09:01:33.063309 904ec1f8-7d55-49d6-8465-f5cae1479586 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158464681"}, "pid": "1476", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:33.11969 2024-09-11 09:01:33.119693 9fb4a6d8-cc50-4463-a2ce-f5cf0173aaa0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158546564"}, "pid": "1477", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:33.182644 2024-09-11 09:01:33.182646 84eefa28-86e3-4a8a-86f8-afa5ef2af434 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/115855365X"}, "pid": "1478", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1109152636172420052826"} 1 +2024-09-11 09:01:33.254618 2024-09-11 09:01:33.254621 d0e6235c-0ada-4b34-b963-fda4b2b600c6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158555156"}, "pid": "1479", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:33.329938 2024-09-11 09:01:33.329942 668f54e7-ebf7-4748-8167-1ebbb29b3f98 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/115855882"}, "pid": "1480", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:33.400293 2024-09-11 09:01:33.400297 efcd25af-8c1c-4f26-af27-11abd0dbdccc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158559259"}, "pid": "1481", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1087152637848520220008"} 1 +2024-09-11 09:01:33.455433 2024-09-11 09:01:33.455436 28f1673f-5e61-44b2-9ce6-fd1129c70796 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158570945"}, "pid": "1482", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:33.507258 2024-09-11 09:01:33.507261 b527ae53-d063-4134-974f-31039858c56e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158574614"}, "pid": "1483", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:33.568931 2024-09-11 09:01:33.568935 c2838080-ec14-47fc-92ce-93ff7f4c5a53 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158577125"}, "pid": "1484", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1024152636074320051555"} 1 +2024-09-11 09:01:33.622947 2024-09-11 09:01:33.62295 e2827e35-a594-435e-b074-253b0c08734f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158624107"}, "pid": "1485", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:33.691533 2024-09-11 09:01:33.691537 e0157c47-1658-4eda-bcda-2e2e7426db1c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158716125"}, "pid": "1486", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:33.749151 2024-09-11 09:01:33.749154 77bc71b5-c90f-4b9e-9f6f-5746683af817 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158723458"}, "pid": "1487", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:33.840068 2024-09-11 09:01:33.840071 349a98b8-512d-40c7-a4c0-e8fb306ea316 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158741308"}, "pid": "1488", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:33.89444 2024-09-11 09:01:33.894444 931d6e3a-cc37-4e18-badc-e75348c16c1b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158818726"}, "pid": "1489", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:33.954945 2024-09-11 09:01:33.954947 99660a89-0423-4019-87e4-8c0fe98bd6bf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158837534"}, "pid": "1490", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1100152636067920050982"} 1 +2024-09-11 09:01:34.003066 2024-09-11 09:01:34.003068 fc088464-6afa-493c-a345-42f68249e63d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158866127"}, "pid": "1491", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:34.062756 2024-09-11 09:01:34.062759 158f837f-ad86-46e8-8826-80030c2778da {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158918763"}, "pid": "1492", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1127152636055220050125"} 1 +2024-09-11 09:01:34.118769 2024-09-11 09:01:34.118772 21bb2546-3b27-411b-99c0-0dbfa841a94d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158920237"}, "pid": "1493", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:34.186547 2024-09-11 09:01:34.18655 7399f88d-d87e-49ac-892d-65731b05e7ec {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158922892"}, "pid": "1494", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:34.239561 2024-09-11 09:01:34.239564 96f3faca-cfa6-4317-bfbc-967efcfd9ed4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158941145"}, "pid": "1495", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:34.294621 2024-09-11 09:01:34.294625 e0070739-5cd7-4ccc-91b4-84c1296d2ea8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158944675"}, "pid": "1496", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:34.352428 2024-09-11 09:01:34.352431 b53edecf-9f23-420b-8ed4-8820537e38f9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158955235"}, "pid": "1497", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1118152636067820051273"} 1 +2024-09-11 09:01:34.403879 2024-09-11 09:01:34.403884 ecf9a133-41e4-49e7-be44-2d88afd92acb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1158971117"}, "pid": "1498", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:34.456957 2024-09-11 09:01:34.45696 430402a9-1855-4391-beb7-193ec81099d8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1159026750"}, "pid": "1499", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:34.514414 2024-09-11 09:01:34.514418 15785a9d-caad-4565-8889-8823b53dde6c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1159034591"}, "pid": "1500", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:34.574153 2024-09-11 09:01:34.574155 351e89bf-7114-4d89-9a12-160b543918e1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1159046239"}, "pid": "1501", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1034152636063620051234"} 1 +2024-09-11 09:01:34.625259 2024-09-11 09:01:34.625263 53d58e45-538d-4fb0-82e5-5a529da79efe {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1159064911"}, "pid": "1502", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:34.678163 2024-09-11 09:01:34.678165 57515e13-cf14-4748-a2fc-94b9c7a88bf2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1159071373"}, "pid": "1503", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:34.732236 2024-09-11 09:01:34.732239 57c0c87e-3bd4-4315-a5a6-36d36bb81419 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1159073880"}, "pid": "1504", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:34.787464 2024-09-11 09:01:34.787468 3e06dd48-67bd-4bb4-84ce-d1f7a8e577b2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1159080593"}, "pid": "1505", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:34.842466 2024-09-11 09:01:34.842468 c93b7360-9aba-4058-a20f-cb789357a14f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1159104611"}, "pid": "1506", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:34.895349 2024-09-11 09:01:34.895355 763d271c-3b8a-4845-84a2-35d6289c765f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1159119422"}, "pid": "1507", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:34.950123 2024-09-11 09:01:34.950126 3ae96647-72f9-4092-b492-72ed189056ca {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1159135630"}, "pid": "1508", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:35.018556 2024-09-11 09:01:35.018561 f77b43b8-e753-440e-b279-9dba7b3cc4ca {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1159138117"}, "pid": "1509", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:35.084009 2024-09-11 09:01:35.084014 ff02881b-862a-4d3e-8efc-73da78acf61e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1159153183"}, "pid": "1510", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:35.148626 2024-09-11 09:01:35.148632 1391aa33-6c5d-44ab-b256-5c716c4c644f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1159167451"}, "pid": "1511", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:35.203384 2024-09-11 09:01:35.203388 bb58ca43-f853-4ced-871c-a777f515dbeb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1159213550"}, "pid": "1512", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:35.296618 2024-09-11 09:01:35.296624 b1924044-252b-4bac-adf4-6a317b8bf13c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/115921719X"}, "pid": "1513", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:35.353092 2024-09-11 09:01:35.353097 e44d21a8-9f11-4f42-8011-e5ea63b203e3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1159260079"}, "pid": "1514", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:35.418978 2024-09-11 09:01:35.418983 6085ee9c-4eff-4f9e-bbda-314b3e31931b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1159260931"}, "pid": "1515", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:35.479923 2024-09-11 09:01:35.479926 a8b84ca3-8ea7-40f7-85b2-31f8ccd46e5b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1159261407"}, "pid": "1516", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:15.320041 2024-09-11 09:06:30.902911 e1c68b10-4682-4145-aa5d-050e296bb8bc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/109790715"}, "pid": "1180", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003185209"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100181709"} 2 +2024-09-11 09:01:35.663509 2024-09-11 09:01:35.663513 8e9f64ce-675c-457e-b680-d0863ba8a13c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1159288259"}, "pid": "1519", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:35.716293 2024-09-11 09:01:35.716295 d0a8f0f3-c59b-4aa4-b8a4-b6f9dcef30dc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1159531471"}, "pid": "1520", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:35.773308 2024-09-11 09:01:35.773311 19d88eeb-b432-4901-86a7-aae656929852 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1159712689"}, "pid": "1521", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:35.83546 2024-09-11 09:01:35.835463 b459d9ec-8e9a-4a92-845a-6156ef60e34b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1160106576"}, "pid": "1522", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:35.894563 2024-09-11 09:01:35.894568 887c524d-3ced-4fca-acb7-215f8a0efd17 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1160217254"}, "pid": "1523", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:35.957192 2024-09-11 09:01:35.957196 6198f63f-9a17-4d6f-b89f-9d2084e3f251 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1160325189"}, "pid": "1524", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:36.010562 2024-09-11 09:01:36.010565 5af37224-c2ec-4783-a940-72e9e81debf5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116037202"}, "pid": "1525", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:36.068489 2024-09-11 09:01:36.068492 0417b1bd-4b04-4292-ab97-8eb8c7423591 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116075899"}, "pid": "1526", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:36.132538 2024-09-11 09:01:36.132541 8f3b6cfe-5f58-4bb9-8aa5-8e27e3932eda {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1160946140"}, "pid": "1527", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:36.199003 2024-09-11 09:01:36.199006 a4906110-b5d2-428c-ba47-6c07d26074d6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116102932X"}, "pid": "1528", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:36.255806 2024-09-11 09:01:36.255809 dbbdf4ec-71af-46ca-8eea-6af3d0b8ca9f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116120444"}, "pid": "1529", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:36.317114 2024-09-11 09:01:36.317117 feb22117-dbf4-410f-8121-7cadd3939178 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116144131X"}, "pid": "1530", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107416327"} 1 +2024-09-11 09:01:36.368346 2024-09-11 09:01:36.368348 70175bca-55ee-4c0c-a72a-d919e76f72c8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116189673"}, "pid": "1531", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:36.426515 2024-09-11 09:01:36.426522 8ca9f435-3626-4387-9b24-e02e4f385061 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1162523271"}, "pid": "1532", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1023153184539027100002"} 1 +2024-09-11 09:01:36.477699 2024-09-11 09:01:36.477703 809f8206-8e30-43a6-92f0-447a3f41160c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1162968664"}, "pid": "1533", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:36.529903 2024-09-11 09:01:36.529907 99aafc6e-4e38-4fa1-a17d-d17b12e8e24a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1163054186"}, "pid": "1534", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:36.596517 2024-09-11 09:01:36.59652 86c172b3-066a-4662-956a-3c45dc142d63 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1163061921"}, "pid": "1535", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:36.67161 2024-09-11 09:01:36.671614 e7b712a2-dc82-4a79-a50f-3f122aa96575 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116311054X"}, "pid": "1536", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:36.743343 2024-09-11 09:01:36.743346 3d8cbc89-b333-459a-b6a1-7da5f828e3ca {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116348747"}, "pid": "1537", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10594912"} 1 +2024-09-11 09:01:36.807603 2024-09-11 09:01:36.807606 dfa18bd2-9303-4513-834b-4374d08b32d4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116361816"}, "pid": "1538", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10595308"} 1 +2024-09-11 09:01:36.863986 2024-09-11 09:01:36.863988 521f40b2-148d-42df-a41f-ea79dd40aa48 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1163622265"}, "pid": "1539", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:36.91498 2024-09-11 09:01:36.914984 e96e88a8-212d-4c88-b5f0-f344d5a7a608 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1163767662"}, "pid": "1540", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:36.97103 2024-09-11 09:01:36.971034 aa3b0aca-76c6-4f69-ad3e-1e017f191838 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116385103"}, "pid": "1541", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:37.02857 2024-09-11 09:01:37.028575 cdb2c90f-e5e0-4ed9-b4cd-4bf25d5528ee {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116397451X"}, "pid": "1542", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1097153411822141700008"} 1 +2024-09-11 09:01:37.083365 2024-09-11 09:01:37.083368 a2ab4172-9f45-4781-8160-a41fb8fb4903 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1164191497"}, "pid": "1543", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:37.137269 2024-09-11 09:01:37.137272 77325e2c-148a-40f2-bd9c-b92905962546 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1164263269"}, "pid": "1544", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:37.190319 2024-09-11 09:01:37.190321 1991c966-31ae-428b-a289-9cc55c1255e5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116439394"}, "pid": "1545", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:37.245614 2024-09-11 09:01:37.245619 4c378d03-aa52-48f1-bd2c-13f2b3fd5764 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116442743"}, "pid": "1546", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:37.296056 2024-09-11 09:01:37.296058 ced58c40-0c00-4dda-a03b-5967824d4c86 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1164502875"}, "pid": "1547", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:37.403297 2024-09-11 09:01:37.4033 9eed7cd0-d1fe-4180-bce8-5ca6c5396433 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/11647839X"}, "pid": "1549", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:37.455476 2024-09-11 09:01:37.455479 42aa2490-0e5b-4279-8107-918109ef2e95 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116481536"}, "pid": "1550", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:37.510317 2024-09-11 09:01:37.51032 a3df575f-b784-48a3-b365-bcf573677017 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116493011"}, "pid": "1551", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:31.022146 2024-09-11 09:06:31.02215 1d3f3a72-3055-420c-91a9-9f99a7de3f07 {"pid": "6130", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003192212"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:37.623639 2024-09-11 09:01:37.623642 42734ab9-3973-4ad8-9886-5f7629e40b8a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1165187388"}, "pid": "1553", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:37.676753 2024-09-11 09:01:37.676757 30b6cf00-6962-4a2f-9e9f-222e97043570 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1165269503"}, "pid": "1554", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:37.731929 2024-09-11 09:01:37.731932 d245e859-5ea4-41d8-95d0-212ffc89065d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1165531615"}, "pid": "1555", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:37.790073 2024-09-11 09:01:37.790076 6fd49f19-a513-41ce-80d3-85baefec255e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1165547821"}, "pid": "1556", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10153593739351671558"} 1 +2024-09-11 09:01:37.863645 2024-09-11 09:01:37.863647 9faa6b98-2c53-4a17-b64f-b059fc3c7bdd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1165583534"}, "pid": "1557", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11153593734351671266"} 1 +2024-09-11 09:01:37.943171 2024-09-11 09:01:37.943177 c1e367f3-7932-49cc-b1ce-f09cc7406189 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1165585391"}, "pid": "1558", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:37.999952 2024-09-11 09:01:37.999954 ef6921b1-0619-4ea1-b449-b5ef2dee8329 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116582782"}, "pid": "1559", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:38.053704 2024-09-11 09:01:38.053707 67c354a4-132a-4f41-bc9b-8b73d3b94648 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116600233"}, "pid": "1560", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:38.117635 2024-09-11 09:01:38.117637 a529e8f5-d272-42ea-9df2-20e8b9468f76 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116601795"}, "pid": "1561", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:38.168567 2024-09-11 09:01:38.16857 cfe9283d-1d5c-4f57-83be-c19753b6205c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1166105709"}, "pid": "1562", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:38.220721 2024-09-11 09:01:38.220724 6911e546-72ad-407f-b0f1-aef98bc02e7e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1166156494"}, "pid": "1563", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:38.271653 2024-09-11 09:01:38.271657 933fd528-81ef-4ca6-8f09-98e0c4d2a618 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116629673"}, "pid": "1564", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:38.32673 2024-09-11 09:01:38.326732 9648be34-fa24-4861-a42e-90f2b9aef5bc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116679875"}, "pid": "1565", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:38.396175 2024-09-11 09:01:38.396178 a2472222-9ef9-4ee2-be00-77a844f3e046 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1166857204"}, "pid": "1566", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:38.449734 2024-09-11 09:01:38.449737 6d783204-cff4-4200-ba1f-da8b6915a996 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1166992330"}, "pid": "1567", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:38.50453 2024-09-11 09:01:38.504534 3b9b44bf-9ad0-4af5-942e-39652e82a57d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/11671848X"}, "pid": "1568", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:38.573161 2024-09-11 09:01:38.573164 d522518c-1223-40ac-8a75-1464c7df7e7a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116736410"}, "pid": "1569", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:38.626063 2024-09-11 09:01:38.626067 89ba6800-3dd3-410f-bf1f-3f27e850c2d3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116755776"}, "pid": "1570", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:38.673879 2024-09-11 09:01:38.673881 f041ca5e-7ebe-44c4-9d87-915288fde6b8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1168165466"}, "pid": "1571", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:38.726756 2024-09-11 09:01:38.72676 a39c4544-b65d-4a5d-a6d5-6f8181d17d04 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1168177111"}, "pid": "1572", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:38.784729 2024-09-11 09:01:38.784732 e746543e-ed29-43f4-9bde-11467f80a8a5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116830565"}, "pid": "1573", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10607359"} 1 +2024-09-11 09:01:38.839855 2024-09-11 09:01:38.839858 b59be706-ccda-4818-9a4e-27600cc09473 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/11683188X"}, "pid": "1574", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:38.917697 2024-09-11 09:01:38.917699 f8fae83d-7db9-4a12-b0d1-bcf69f9d7e5d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116864366X"}, "pid": "1575", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:38.967422 2024-09-11 09:01:38.967424 6b2a5249-63ba-4d3b-9ae8-f1ed9d93d1d0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1168683211"}, "pid": "1576", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:39.022403 2024-09-11 09:01:39.022406 7dc4547c-7cf0-40b2-8ae5-4590a46e94b2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116903953"}, "pid": "1577", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:39.076315 2024-09-11 09:01:39.076318 6ca25345-9723-4fc1-a291-60445fa9cacd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1169048099"}, "pid": "1578", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:39.129836 2024-09-11 09:01:39.12984 fccdcc84-635d-4409-b959-4b033e817a37 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1169139434"}, "pid": "1579", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:39.196934 2024-09-11 09:01:39.196939 dd7bd04b-e6bc-4ca3-b8d2-d1f555cb9c73 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1169173837"}, "pid": "1580", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11154013715009191156"} 1 +2024-09-11 09:01:39.268466 2024-09-11 09:01:39.26847 b4ac6d5f-c2ed-4caf-91b8-48e75b96860e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1169226531"}, "pid": "1581", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:39.322392 2024-09-11 09:01:39.322394 5b2e4a9d-6c89-4b76-ab53-266f08e35d66 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116934565"}, "pid": "1582", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:39.389253 2024-09-11 09:01:39.389255 13ca8087-295d-47f4-989e-03c47813d2da {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116986700"}, "pid": "1583", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:39.507203 2024-09-11 09:01:39.507205 f67a383f-131a-46fb-8011-d870c7972c7a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1169953743"}, "pid": "1585", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102154075974911860005"} 1 +2024-09-11 09:01:39.563055 2024-09-11 09:01:39.563057 8151b1c7-f327-4d3e-ac8b-3a3b26fb18e7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1169969305"}, "pid": "1586", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:39.614031 2024-09-11 09:01:39.614035 10c507c8-ece3-4677-a1a4-5dacd1301b45 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1170278353"}, "pid": "1587", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:39.678528 2024-09-11 09:01:39.678532 b1d39d7f-58e2-4a6c-bfe1-0af9280d8422 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1170426131"}, "pid": "1588", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:39.729615 2024-09-11 09:01:39.729618 4e8a1225-7ef4-4cd4-bb98-259bd8ba7161 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1170451594"}, "pid": "1589", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:39.784999 2024-09-11 09:01:39.785001 9bc4239b-8654-446d-9a8b-f59454c4878a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/117054437"}, "pid": "1590", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:39.840543 2024-09-11 09:01:39.840546 62fd8a86-a3be-4bd0-b47f-d56592d23976 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1170618367"}, "pid": "1591", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:39.95821 2024-09-11 09:01:39.958214 f1be4124-d24b-4555-9aff-9dbde9b2aac1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1170837611"}, "pid": "1593", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:40.012782 2024-09-11 09:01:40.012787 2dafc1e0-3108-44c6-a4d2-7045dadddc19 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1171152183"}, "pid": "1594", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:40.068681 2024-09-11 09:01:40.068685 a7e597a9-261d-4e16-b00b-0a659bc93070 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/117125184X"}, "pid": "1595", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1028154260549524480007"} 1 +2024-09-11 09:06:31.073803 2024-09-11 09:06:31.073807 9780971d-8d0f-4a89-925e-b4e027b27702 {"pid": "6131", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003194582"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:40.744604 2024-09-11 09:07:16.097855 bea5c0ba-9907-4dd9-be5e-6c67ab913b02 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/117249580"}, "pid": "1606", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013970354"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/230910793"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109802810"} 3 +2024-09-11 09:01:40.246612 2024-09-11 09:01:40.246615 1ae29f5d-67c8-4fdd-8423-f651cd306d3e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1171765010"}, "pid": "1598", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:40.31347 2024-09-11 09:01:40.313474 7804d781-6fb3-44d2-bb03-406bf321a0ed {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/117186430"}, "pid": "1599", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10616764"} 1 +2024-09-11 09:01:40.365026 2024-09-11 09:01:40.365029 4f3bb286-d477-4331-b735-31135e49b1b2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1172001731"}, "pid": "1600", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:40.419448 2024-09-11 09:01:40.419452 afbf0538-5f1d-4779-8592-4c86dfddc727 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1172048657"}, "pid": "1601", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:40.511433 2024-09-11 09:01:40.511437 f852fb25-c72f-4413-a3b1-9fb45dfe48bc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1172083541"}, "pid": "1602", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:40.567401 2024-09-11 09:01:40.567406 a4217f12-0446-4dce-91f7-70da46336e54 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1172106339"}, "pid": "1603", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:40.631958 2024-09-11 09:01:40.631962 d182fae8-24a1-4007-87dc-b7a3b30fc947 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1172300755"}, "pid": "1604", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11154381027230292608"} 1 +2024-09-11 09:01:40.687438 2024-09-11 09:01:40.68744 687150e1-876c-45bc-8e75-e29c7d5d6bcc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/117233218"}, "pid": "1605", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:40.871621 2024-09-11 09:01:40.871626 a8f25163-a837-41a1-973c-78b67a7a2042 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1173330542"}, "pid": "1608", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:40.929342 2024-09-11 09:01:40.929346 f9ad0d59-f238-473e-b031-ae4cd1702dff {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/117352896"}, "pid": "1609", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:40.985997 2024-09-11 09:01:40.986 e21d8afc-7bea-49c4-ad23-5c2d18b26952 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/117471178"}, "pid": "1610", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10624332"} 1 +2024-09-11 09:01:41.03829 2024-09-11 09:01:41.038293 ffe60f68-5772-4f72-be83-c58172bb99d1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/117480797"}, "pid": "1611", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:41.218564 2024-09-11 09:01:41.218567 6625a8d0-43f7-482a-83fe-03cbd9783a62 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1175119865"}, "pid": "1614", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:41.273645 2024-09-11 09:01:41.273649 33627c70-3f6d-4cfd-89d8-110d94453593 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/117520705"}, "pid": "1615", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:41.328482 2024-09-11 09:01:41.328487 33d4e614-6cd1-4808-b8a0-cbbebc045240 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1175431435"}, "pid": "1616", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:41.382788 2024-09-11 09:01:41.382792 b9a46dae-4e4b-4cb7-a045-eb99e48ec776 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/117546720"}, "pid": "1617", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:41.453889 2024-09-11 09:01:41.453891 5cb0d6bb-112f-4480-b3a1-4bd5708accf4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1175643521"}, "pid": "1618", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:41.504953 2024-09-11 09:01:41.504956 d4ff2c71-6e8b-4374-a370-0c97cdccad61 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1175653861"}, "pid": "1619", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:41.1633 2024-09-11 09:07:54.304939 0f3c6488-f5cf-48c9-acde-a08c55db64b1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1175036641"}, "pid": "1613", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026408718"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1102155284785887061387"} 2 +2024-09-11 09:01:39.905766 2024-09-11 09:05:38.148688 be710c3a-e12a-4846-812c-3f1e25d7e3b5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1170737064"}, "pid": "1592", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/228853214"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11150999684929872908"} 2 +2024-09-11 09:01:40.803654 2024-09-11 09:05:49.458186 f503df0e-f5c2-4f38-8943-2f351d412807 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1173303146"}, "pid": "1607", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240748069"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101395026"} 2 +2024-09-11 09:01:41.557727 2024-09-11 09:01:41.557731 7cdb139c-8a23-407f-ae46-156f0196acba {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1176124900"}, "pid": "1620", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:41.620829 2024-09-11 09:01:41.620831 cf2786ef-b029-48ec-8a80-df6ffbe11654 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1176219189"}, "pid": "1621", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11154865837059941088"} 1 +2024-09-11 09:01:41.675384 2024-09-11 09:01:41.675386 7e415662-be9a-4352-b539-6eb40163e85a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1176442988"}, "pid": "1622", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:41.72812 2024-09-11 09:01:41.728124 d594e061-9530-4235-acc7-98a5d094db52 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/117655570"}, "pid": "1623", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:41.889636 2024-09-11 09:01:41.889641 6eb78e9a-2117-4591-a403-f927fda7706b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/117701408"}, "pid": "1625", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:41.943042 2024-09-11 09:01:41.943047 ee1fc9b5-499e-40bf-9040-af3d626393d8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1177093979"}, "pid": "1626", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:31.12751 2024-09-11 09:06:31.127514 0357f1b9-aa2b-48e1-9c61-06cf447a08c3 {"pid": "6132", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003196110"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:43.03748 2024-09-11 09:07:22.90575 3baac083-5428-4da4-90b1-329d92da35cc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1183057687"}, "pid": "1646", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017468446"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107937392"} 2 +2024-09-11 09:01:42.111163 2024-09-11 09:01:42.111166 e76cf564-acd1-4ee8-847c-da934687fb33 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1177904713"}, "pid": "1629", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:42.235843 2024-09-11 09:01:42.235846 f22cce41-cb79-4b30-93ff-b3547004fa47 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1178023370"}, "pid": "1631", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:42.287584 2024-09-11 09:01:42.287586 939af3b8-45b0-4780-acdc-ecfb657fce47 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1178350002"}, "pid": "1632", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:42.341056 2024-09-11 09:01:42.341059 c4b2b9d7-9e87-4cf6-90d3-e5d7de574485 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1178484009"}, "pid": "1633", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:42.399068 2024-09-11 09:01:42.39907 650eb16f-9fb7-4356-9191-77201a0496fa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1178833925"}, "pid": "1634", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:42.449914 2024-09-11 09:01:42.449918 0a04b985-5661-49ef-9143-75ee87c77d28 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1179197992"}, "pid": "1635", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:42.50172 2024-09-11 09:01:42.501725 9ff198da-a956-4273-9484-f62c521641d4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1179207440"}, "pid": "1636", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:42.605965 2024-09-11 09:01:42.605968 5a0c9b41-3654-451c-907a-bcb3c8adad89 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/117971041X"}, "pid": "1638", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:42.654598 2024-09-11 09:01:42.6546 5587e37e-1ae2-49b2-a580-08f609e98c06 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1179785266"}, "pid": "1639", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:42.705016 2024-09-11 09:01:42.705018 7195283a-3492-4759-b6cb-5c71988236d4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1180539567"}, "pid": "1640", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:42.755617 2024-09-11 09:01:42.75562 e760827d-74d8-474a-9a1a-b1cc2f77aa7f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/118068544X"}, "pid": "1641", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:42.806776 2024-09-11 09:01:42.80678 f42a8a4d-a526-43de-b351-65ff2d9cf20a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/118108093"}, "pid": "1642", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:42.867881 2024-09-11 09:01:42.867884 5ab980dc-740a-4105-a98f-60eb7a106a14 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1181153034"}, "pid": "1643", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:42.921189 2024-09-11 09:01:42.921192 b28ed3e1-3ba6-4508-a94a-18a1ed60f740 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1182338917"}, "pid": "1644", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:42.977261 2024-09-11 09:01:42.977265 03b5e144-3250-4eaf-abbd-1571291a32c6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/118247957X"}, "pid": "1645", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:43.102538 2024-09-11 09:01:43.102542 44269489-9f09-4de4-a6ac-095fb9a0a3a5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1183836740"}, "pid": "1647", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:43.184492 2024-09-11 09:01:43.184496 41e7b6d5-0962-44ba-a8a7-a97d826ef975 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1184599297"}, "pid": "1648", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:43.250444 2024-09-11 09:01:43.250446 3506f260-2196-4281-b7f2-ed325c8da3e7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1184634262"}, "pid": "1649", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1079155648119118330000"} 1 +2024-09-11 09:01:43.314102 2024-09-11 09:01:43.314106 8802e6c8-8df7-4ced-8159-4397ec8fd5aa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1184827516"}, "pid": "1650", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1108155708732522580001"} 1 +2024-09-11 09:01:41.801502 2024-09-11 09:05:42.635692 020752ed-cc5d-4760-adde-e51f851ce6b6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1176847597"}, "pid": "1624", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/23322758X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105115875"} 2 +2024-09-11 09:01:42.556863 2024-09-11 09:05:52.219783 7e28f8c3-792d-4e7c-8148-55eb6966d11e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/117948682X"}, "pid": "1637", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/242927351"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101668618"} 2 +2024-09-11 09:01:43.377443 2024-09-11 09:01:43.377447 af427406-c82e-47b1-930e-b26c86accd30 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1185183302"}, "pid": "1651", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:43.429043 2024-09-11 09:01:43.429047 a8e9bec7-3668-43f0-a631-2f121afddd6a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1185191275"}, "pid": "1652", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:43.485072 2024-09-11 09:01:43.485075 cb46162c-3c59-4041-8526-70f9b01191d4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/118531867"}, "pid": "1653", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:43.539541 2024-09-11 09:01:43.539544 5ddcb905-55f4-4d22-bb4e-208267d3a145 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/118544291X"}, "pid": "1654", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:43.612917 2024-09-11 09:01:43.612922 69063a4f-e31e-4ef3-82f2-d2680d5c8482 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1185450025"}, "pid": "1655", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:43.664944 2024-09-11 09:01:43.664947 dddd2f0f-8410-48c9-b54a-0163a854eb80 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/118553615"}, "pid": "1656", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:43.719669 2024-09-11 09:01:43.719671 2ee3c6fc-7b1f-4825-b628-63a5756e148d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/118561693"}, "pid": "1657", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:43.774035 2024-09-11 09:01:43.774037 5a405e30-fb53-4e37-9341-303570f35fd5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1186072571"}, "pid": "1658", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:43.902162 2024-09-11 09:01:43.902165 5d9453e5-8bff-409b-9895-564b5b62c6e7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/118684264"}, "pid": "1660", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:43.954456 2024-09-11 09:01:43.954459 db972e30-0747-4421-8094-ac001a06be91 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1187151726"}, "pid": "1661", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:44.006046 2024-09-11 09:01:44.006049 301adade-e07b-4383-bd0e-9cf446dafb91 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/118716328"}, "pid": "1662", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:44.062761 2024-09-11 09:01:44.062764 4ffdcb5b-13f8-4b42-9bb5-dc0efd1a3edc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1187368121"}, "pid": "1663", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1012150323740809970720"} 1 +2024-09-11 09:01:44.125361 2024-09-11 09:01:44.125365 20cc1e05-ef69-40b8-b0dc-9f747f0d8301 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1187537691"}, "pid": "1664", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:44.175402 2024-09-11 09:01:44.175406 92ae1987-2918-4d13-a5c6-af8a83ed622a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1187670472"}, "pid": "1665", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:44.230227 2024-09-11 09:01:44.230231 00df9efc-095c-4b5d-a656-4177fcc4deb9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1187679194"}, "pid": "1666", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:44.288895 2024-09-11 09:01:44.288897 61917f29-7b9d-4ae3-8159-30c94c827741 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1187985945"}, "pid": "1667", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:31.176521 2024-09-11 09:06:31.176525 3d1b2637-69d4-4fec-8617-d3aa10f04e18 {"pid": "6133", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003197536"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:44.435741 2024-09-11 09:01:44.435744 0153cac6-9a38-47c5-8bed-e7f7d1cc370d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/118842218"}, "pid": "1669", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:44.4961 2024-09-11 09:01:44.496102 32be23b3-8088-450d-bc2f-4c186ce0e5e4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1188483552"}, "pid": "1670", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:44.60407 2024-09-11 09:01:44.604073 e8403d6b-fb28-4f95-902e-d904df1cc6d1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1188583360"}, "pid": "1672", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:44.721737 2024-09-11 09:01:44.72174 17a61f81-0f42-4c59-bdf1-45b5e181eae7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/118873768"}, "pid": "1674", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:44.772707 2024-09-11 09:01:44.772709 7c683cfe-5f64-48d1-b6dc-aa2122eb27c1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1188747894"}, "pid": "1675", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:44.823814 2024-09-11 09:01:44.823818 61895e58-df31-4549-a221-653dc45e4da3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/118908642"}, "pid": "1676", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:44.876056 2024-09-11 09:01:44.876059 93686319-d785-4245-85d2-1832d9b11743 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1189098970"}, "pid": "1677", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:44.93083 2024-09-11 09:01:44.930833 97a3ba42-de70-481e-aa33-5174e21a28b6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/118914634"}, "pid": "1678", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:45.001879 2024-09-11 09:01:45.001882 d7832e0a-177b-4ac4-b6d7-b58087274061 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1189236710"}, "pid": "1679", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11156219152604741999"} 1 +2024-09-11 09:01:45.059008 2024-09-11 09:01:45.059012 98c50e04-e8f5-4c76-86ad-b200d3582343 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1189274361"}, "pid": "1680", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:45.1103 2024-09-11 09:01:45.110303 0f1332b7-d6ba-474e-aeed-43b4e82d934e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/118960032"}, "pid": "1681", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:45.157716 2024-09-11 09:01:45.157719 39bad52a-e722-45c4-b69a-e4d261ac7698 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/118960308X"}, "pid": "1682", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:43.832132 2024-09-11 09:06:17.722197 b567064c-122c-47d7-8533-36cd172aa3c9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/118608619X"}, "pid": "1659", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/267373414"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11154681870747862368"} 2 +2024-09-11 09:01:45.214635 2024-09-11 09:01:45.214639 fa35c8e9-d711-4162-ae1d-f6cadffc49d1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/118995316"}, "pid": "1683", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10646167"} 1 +2024-09-11 09:06:31.233331 2024-09-11 09:06:31.233336 492c96a3-2d9c-46c6-96a8-0900807f5ec1 {"pid": "6134", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003198713"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:45.379066 2024-09-11 09:01:45.37907 5cbb795b-2428-4b4e-9a24-c7c69e474ce8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/119009307"}, "pid": "1686", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:45.430857 2024-09-11 09:01:45.430859 70207e66-b2d5-437d-8852-b898fc0d8453 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1190205149"}, "pid": "1687", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:45.484622 2024-09-11 09:01:45.484626 71985e42-26e2-4acd-9c58-3850bd77055f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/119022826"}, "pid": "1688", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:31.284534 2024-09-11 09:06:31.284537 f0c6fb8f-2580-4ca1-9494-317019b70516 {"pid": "6135", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003199994"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:45.610517 2024-09-11 09:01:45.61052 c739dc93-72f3-4401-b18a-758023643e87 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1190386577"}, "pid": "1690", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11156312285502080766"} 1 +2024-09-11 09:01:45.662929 2024-09-11 09:01:45.662932 5c0dffb3-29fd-4a25-8eb2-ae4f7090836e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1190392402"}, "pid": "1691", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:45.804222 2024-09-11 09:01:45.804225 bfc15d19-1af2-4fb1-b4f0-17078ca5e812 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1190664518"}, "pid": "1693", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:45.866374 2024-09-11 09:01:45.866376 9ab058c3-5962-4691-b2ae-2305246cdc49 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1190675692"}, "pid": "1694", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:45.916714 2024-09-11 09:01:45.916716 f39b965f-c2a1-4c86-8a85-072a9efabe2c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/119077671"}, "pid": "1695", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:45.972948 2024-09-11 09:01:45.972951 6e55e760-c10d-4224-a54e-eda41e426c2e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1190845555"}, "pid": "1696", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:46.029055 2024-09-11 09:01:46.029059 db2cc125-564c-4ccd-9e60-74a6309d3859 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1190905671"}, "pid": "1697", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:46.096071 2024-09-11 09:01:46.096074 6657f538-7e2e-421d-b694-4201e61b5587 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/119090943X"}, "pid": "1698", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:46.150046 2024-09-11 09:01:46.150049 9244e439-baba-4f86-a21b-fd2f9359f05b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/119136228"}, "pid": "1699", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:46.226389 2024-09-11 09:01:46.226392 cd0be4ab-bcc3-4f2c-9224-adff82e766a7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/119161796"}, "pid": "1700", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:46.285354 2024-09-11 09:01:46.285357 5801f439-0c50-4af4-b17b-8b2fd43faf28 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1191853187"}, "pid": "1701", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:46.515154 2024-09-11 09:01:46.515159 4d949120-f514-411d-8183-074c1cfef3d5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1192518470"}, "pid": "1704", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:46.687848 2024-09-11 09:01:46.687851 986c7e2c-5b6c-48ea-987a-26382ed6dd8d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1192950399"}, "pid": "1707", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:46.737483 2024-09-11 09:01:46.737486 e7a20932-a1af-4272-85d9-86e49b233b30 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1193659566"}, "pid": "1708", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:46.793524 2024-09-11 09:01:46.793528 19c1e6cb-10dc-43b0-9aeb-d4899a62a791 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1193660688"}, "pid": "1709", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:46.847514 2024-09-11 09:01:46.847519 8be883c0-b308-4feb-bfa8-1ccacdeed4c9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1193684374"}, "pid": "1710", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:46.899977 2024-09-11 09:01:46.899979 31ffb531-9464-4f04-840f-b704d715c080 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1193701163"}, "pid": "1711", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:46.953058 2024-09-11 09:01:46.953062 2c3f24db-22dd-413a-9bcf-86fe8750b139 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/119380439"}, "pid": "1712", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:47.004991 2024-09-11 09:01:47.004994 ad872adc-5bbb-4520-b15e-90009db58000 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/119411679"}, "pid": "1713", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:46.346479 2024-09-11 09:05:42.322386 fbcced4c-a091-4faf-aab5-3389401312a4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/119219816"}, "pid": "1702", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232895651"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110724484"} 2 +2024-09-11 09:01:46.635371 2024-09-11 09:05:47.920808 f8582827-35e8-4f55-bf79-b3bb6a91278f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1192852273"}, "pid": "1706", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/237851539"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11145970204932251599"} 2 +2024-09-11 09:01:45.737817 2024-09-11 09:06:24.168332 1adc9497-9e7d-4015-82a7-92779a17d13f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/11904241X"}, "pid": "1692", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002922621"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032975856"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "113141882"} 3 +2024-09-11 09:01:47.05708 2024-09-11 09:01:47.057082 2d3c75fe-deac-48f4-ba40-46cbff5e12e6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1194409997"}, "pid": "1714", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:31.339408 2024-09-11 09:06:31.339411 badecd41-0362-4fdb-9a20-a0979d917fa1 {"pid": "6136", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003201589"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:47.245388 2024-09-11 09:01:47.245392 35c8450c-b6d0-4d29-bf0c-d1b49fc75831 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1194663192"}, "pid": "1717", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:47.31004 2024-09-11 09:01:47.310043 fe870ee4-4413-4ecd-9879-14524953b79e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/11947428X"}, "pid": "1718", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102444910"} 1 +2024-09-11 09:01:47.533165 2024-09-11 09:06:58.719747 961af334-790b-429f-bea7-6a2dc7e5e40c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/119552914"}, "pid": "1722", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A010176792"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10658696"} 2 +2024-09-11 09:01:47.417545 2024-09-11 09:01:47.417548 d8d0f13b-abdc-4412-a3c6-482a2e5c488d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/119508516"}, "pid": "1720", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:47.470686 2024-09-11 09:01:47.470689 fe4b0466-4209-4943-aa2a-11e3efc79ff6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/119537087"}, "pid": "1721", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:47.617748 2024-09-11 09:01:47.617752 c27f1f1c-8a7f-480b-9b70-24463f05a742 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/119559382"}, "pid": "1723", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:47.863828 2024-09-11 09:01:47.863833 f79f3891-07dc-4155-bcfc-2e1a8dafaabd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1195806868"}, "pid": "1725", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:47.927453 2024-09-11 09:01:47.927457 ccdc504e-cc9c-4cb7-9106-433b70dc1da4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1196648964"}, "pid": "1726", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:47.986112 2024-09-11 09:01:47.986115 8a6ef2ad-c118-4c52-a05d-f674a2173814 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/119724952"}, "pid": "1727", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:48.03999 2024-09-11 09:01:48.039993 53d69e05-67d8-4376-aaeb-f165c590fc85 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1197312137"}, "pid": "1728", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:48.091514 2024-09-11 09:01:48.091517 ab913b64-46fe-4aa7-8e51-ceb6fb5e5378 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1197337660"}, "pid": "1729", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:48.147047 2024-09-11 09:01:48.14705 081664f1-807d-47c1-a8c8-a391d1e82676 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1197621814"}, "pid": "1730", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:48.199981 2024-09-11 09:01:48.199984 b1a24341-f4be-438b-a7b6-a2138f0e2997 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1197715096"}, "pid": "1731", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:48.255712 2024-09-11 09:01:48.255717 f0622c37-8efe-42b8-8e3f-e281d11fbd0b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1197826912"}, "pid": "1732", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1086157226613585410002"} 1 +2024-09-11 09:01:48.313616 2024-09-11 09:01:48.313619 80c22b15-f08e-4186-9254-49dbed5ae4c2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/11982387X"}, "pid": "1733", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10664806"} 1 +2024-09-11 09:01:48.419673 2024-09-11 09:01:48.419675 cf8bca8e-5fc8-4b03-81dd-d4660acbbd11 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/11987251X"}, "pid": "1735", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:48.527532 2024-09-11 09:01:48.527536 a438ad15-4bb4-4987-83c1-18e8d3e70a6a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1199119393"}, "pid": "1737", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:48.581432 2024-09-11 09:01:48.581436 d6835513-2561-49dd-a563-dc5c604dfa63 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1199276545"}, "pid": "1738", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:48.63736 2024-09-11 09:01:48.637364 8c04afa6-bfa1-42d5-9791-94a52d3ca821 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1199967009"}, "pid": "1739", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1084157470192922640007"} 1 +2024-09-11 09:01:48.700767 2024-09-11 09:01:48.700769 261a5623-aaaf-4896-8f68-ab814da1fb79 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1200376331"}, "pid": "1740", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:48.761328 2024-09-11 09:01:48.761332 a091854d-c663-473e-b02c-a91353c51366 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1200558375"}, "pid": "1741", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:48.818394 2024-09-11 09:01:48.818398 ce602398-562f-4dea-b334-0bc34b2a8f6d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/120095785"}, "pid": "1742", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:48.869293 2024-09-11 09:01:48.869297 35a0ba6a-6307-484c-a500-e9a71d8fc8c2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1201178835"}, "pid": "1743", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:48.92716 2024-09-11 09:01:48.927165 d51aedd1-744d-45db-8b59-d54a558dd5e4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/120175118"}, "pid": "1744", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:47.11381 2024-09-11 09:07:41.750183 290f3c18-3e32-4700-8591-5587606b7ac9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/119443988"}, "pid": "1715", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023720699"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111005319"} 2 +2024-09-11 09:01:47.802611 2024-09-11 09:07:26.439502 8e9757a5-db2e-40b9-ba72-67f3f5d6df52 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1195625049"}, "pid": "1724", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018345923"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/095775757"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103852745"} 3 +2024-09-11 09:01:48.366508 2024-09-11 09:05:13.975192 2708eee1-2a8e-4c47-b81b-80de752df720 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1198439084"}, "pid": "1734", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/183544129"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "113132477"} 2 +2024-09-11 09:01:48.983292 2024-09-11 09:01:48.983295 55bdb853-40cf-4290-9386-9ecf6dcbd5a4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/120175533"}, "pid": "1745", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:49.03962 2024-09-11 09:01:49.039623 63a18746-7d6a-4994-b6cb-c6d0813fd0ee {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1201779243"}, "pid": "1746", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:49.113953 2024-09-11 09:01:49.113956 666978b5-6b9d-48bf-b147-7b1b1dba414f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1201917980"}, "pid": "1747", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:49.167244 2024-09-11 09:01:49.167249 d87004e9-23d1-4aec-b709-798ba90df782 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/120249561"}, "pid": "1748", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:49.224652 2024-09-11 09:01:49.224655 f3c553d7-079d-44a5-b0f5-4d9423c78207 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/120268081X"}, "pid": "1749", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11157949339865092339"} 1 +2024-09-11 09:01:49.293145 2024-09-11 09:01:49.29315 c33c1988-7eee-494e-a4f9-8028b9987108 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/120284952"}, "pid": "1750", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:49.347057 2024-09-11 09:01:49.34706 3ee1733d-3d42-4e91-99e1-3151de8f9f8f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1202884679"}, "pid": "1751", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:49.461571 2024-09-11 09:01:49.461575 1ad93b85-4f6b-40dd-8940-e8024fbdf63c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/120343525"}, "pid": "1753", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:49.514849 2024-09-11 09:01:49.514853 14c25d4d-5539-41f6-9e8e-09933973cf8f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/120355973"}, "pid": "1754", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:49.579249 2024-09-11 09:01:49.579253 61298a39-7778-4b54-9abf-7eb500c7a4d9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1203576099"}, "pid": "1755", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:49.63813 2024-09-11 09:01:49.638133 5d9960cb-c60e-4690-8de8-47bc00e1b343 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1203731949"}, "pid": "1756", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1053158070704108780008"} 1 +2024-09-11 09:01:49.700295 2024-09-11 09:01:49.700297 67ac13b4-20c3-4091-b7ef-2872c070ed5a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1204063087"}, "pid": "1757", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:49.757407 2024-09-11 09:01:49.75741 6ff7840d-2971-4a8a-aff0-0b9cb6324f8f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/120415693X"}, "pid": "1758", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11158124986014931467"} 1 +2024-09-11 09:01:49.808169 2024-09-11 09:01:49.808173 aec567c9-f62c-4c27-9402-8e9703aec97f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1204462666"}, "pid": "1759", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:49.86003 2024-09-11 09:01:49.860035 be8c460b-968e-445d-a7c1-80d9667f98ba {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/120473801"}, "pid": "1760", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:49.920107 2024-09-11 09:01:49.92011 c4d79238-47f7-43b0-b945-85fed5db932f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1204866740"}, "pid": "1761", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:49.970127 2024-09-11 09:01:49.97013 552577ae-d12b-473c-9800-4b2a7094b50c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1204875901"}, "pid": "1762", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:59.596367 2024-09-11 09:06:31.397408 21c4efb2-b5d4-474d-a1ed-5e44866692fc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/107441148X"}, "pid": "917", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003203987"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/134489500"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106867339"} 3 +2024-09-11 09:01:50.151299 2024-09-11 09:01:50.151303 667a9e63-91d4-4e6f-9239-7e817e2a9d56 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/120543125"}, "pid": "1765", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:50.259925 2024-09-11 09:01:50.25993 87c5ca36-e43d-4b06-8440-2cb79d6e8d9a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1205764232"}, "pid": "1767", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:50.315374 2024-09-11 09:01:50.315377 e739124d-b7fd-4ec5-b968-54c9dd5a3c59 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1205836233"}, "pid": "1768", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:50.378056 2024-09-11 09:01:50.378061 56ef3c4c-ec3f-4448-b1b6-defe1bebe08e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/120596067"}, "pid": "1769", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:50.440574 2024-09-11 09:01:50.440577 d3fd0bbd-2375-48f2-bfa0-8bddcf915174 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1206199024"}, "pid": "1770", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:50.490796 2024-09-11 09:01:50.490799 5ec8cf62-3baf-4b45-8b70-8f9b28e6fcd8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1206214643"}, "pid": "1771", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:50.538862 2024-09-11 09:01:50.538865 b190121c-6176-4c44-ac52-eab231ac8574 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1206297964"}, "pid": "1772", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:50.209751 2024-09-11 09:06:39.319595 675324db-df7f-4a1a-978f-69970f3c3d5f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/120554682"}, "pid": "1766", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003494285"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/154972673"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106944900"} 3 +2024-09-11 09:01:50.657894 2024-09-11 09:01:50.657899 6bb18db8-bb2e-4865-91a1-6f6cc0543cc6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1206889632"}, "pid": "1774", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:50.720083 2024-09-11 09:01:50.720087 0394963e-0d08-4266-9258-fcbde496d4f1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1206932619"}, "pid": "1775", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:50.773808 2024-09-11 09:01:50.773811 5569909e-101b-42ec-881f-a83aeefb8ca7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/120704463"}, "pid": "1776", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:50.826608 2024-09-11 09:01:50.826613 ec7d6c38-aceb-49a1-b852-0e89a8547bb9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1207293849"}, "pid": "1777", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:50.875089 2024-09-11 09:01:50.875094 203e33ae-05b9-4f71-9671-a0d25eb6912d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1207338478"}, "pid": "1778", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:50.925453 2024-09-11 09:01:50.925458 d447635d-2461-45a1-a2d7-13272c6064c1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1207445045"}, "pid": "1779", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:50.985912 2024-09-11 09:01:50.985916 a7b10da0-a498-464c-85b6-a5b809d39d34 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1207474568"}, "pid": "1780", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106842336"} 1 +2024-09-11 09:01:51.159758 2024-09-11 09:01:51.159762 9530cfb0-6e03-470b-bd24-a46701661944 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/120824261X"}, "pid": "1783", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:51.208393 2024-09-11 09:01:51.208397 c3784f51-8a9c-4574-918f-6c16c73e5673 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1208406337"}, "pid": "1784", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:51.261615 2024-09-11 09:01:51.26162 bb08bf68-6c0b-48e5-8314-95bcd3cb665f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1208648632"}, "pid": "1785", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:51.321395 2024-09-11 09:01:51.321398 d6fd8a78-d788-4ee0-9b42-8751dd109270 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1208728474"}, "pid": "1786", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:51.37592 2024-09-11 09:01:51.375925 6e5f68c6-76a9-4860-b80d-6dd7ef10c278 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1208923765"}, "pid": "1787", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:51.449378 2024-09-11 09:01:51.449382 373ad65c-f13a-4c1b-8192-12e09a90f5cd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1209087162"}, "pid": "1788", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:51.505169 2024-09-11 09:01:51.505172 c3e11212-28d4-43b4-8aeb-b9749cf447c6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/120917661"}, "pid": "1789", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10689034"} 1 +2024-09-11 09:01:51.558096 2024-09-11 09:01:51.5581 f1d8df08-5fba-411c-99ea-352f19968178 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1209584417"}, "pid": "1790", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:51.611408 2024-09-11 09:01:51.611411 8bf004e7-11a1-478f-9980-1251189943d2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1209711753"}, "pid": "1791", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:51.721358 2024-09-11 09:01:51.72136 c1fe3cd6-513b-4852-9c21-ab39042889b6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1209907445"}, "pid": "1793", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:51.772296 2024-09-11 09:01:51.772299 c3c6d1b3-e1e3-41d6-b83a-d9e5e6b796ff {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1209954184"}, "pid": "1794", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:51.835142 2024-09-11 09:01:51.835146 e312cda8-c83f-430a-b29b-533b8c9772ad {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1209976218"}, "pid": "1795", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:51.885942 2024-09-11 09:01:51.885944 67102a85-3e3b-4752-a4db-36744173607b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/121017206"}, "pid": "1796", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:51.939446 2024-09-11 09:01:51.939449 fc64e03b-5d2f-491b-9e21-6ebb4a14a58f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/121042413"}, "pid": "1797", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:52.015768 2024-09-11 09:01:52.015772 5119c5de-65cb-478e-9649-6d780dd1824a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/121068439"}, "pid": "1798", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:52.071215 2024-09-11 09:01:52.071219 13ed00ae-e971-4e59-b77a-ce3f4ae69741 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1210872188"}, "pid": "1799", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:52.133939 2024-09-11 09:01:52.133942 4703ce88-2257-455f-8b27-be3d84fdb65d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1210955601"}, "pid": "1800", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:52.189724 2024-09-11 09:01:52.189727 467e601a-7a75-419d-9618-5cbb4e9bc481 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1210962721"}, "pid": "1801", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:52.24371 2024-09-11 09:01:52.243712 49a37693-60da-4212-b0f8-370a67568bca {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1211035360"}, "pid": "1802", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:31.519674 2024-09-11 09:06:31.519681 716d30ee-15f8-493d-88d5-3e88ae4f3ef0 {"pid": "6137", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003217486"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:52.353423 2024-09-11 09:01:52.353426 974c30cc-c735-4d95-b258-75162ca6669f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1211576035"}, "pid": "1804", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1124159156314812180000"} 1 +2024-09-11 09:01:52.406353 2024-09-11 09:01:52.406355 25f5362c-9015-41e1-bf48-cd23364b01f0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/121163393"}, "pid": "1805", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:52.454095 2024-09-11 09:01:52.454098 92b29f4c-8ea8-438a-8e8d-f3692ff42220 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1211685918"}, "pid": "1806", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:51.667184 2024-09-11 09:06:53.222144 7cb4b0e5-5b55-4db8-b63c-52d36c8d5937 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/120981238"}, "pid": "1792", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006159385"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110149296302380670007"} 2 +2024-09-11 09:01:52.506588 2024-09-11 09:01:52.506591 c6305b88-4959-4e20-9f1f-0e4181cc6ec3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1211707628"}, "pid": "1807", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:52.558076 2024-09-11 09:01:52.558079 1609271f-e531-4bc9-baa9-1a6d29c0e73c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1211767892"}, "pid": "1808", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:52.612639 2024-09-11 09:01:52.612643 59457e13-a739-4701-b22c-3b8325e1cf25 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1211775216"}, "pid": "1809", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1044150264367405860003"} 1 +2024-09-11 09:01:52.664898 2024-09-11 09:01:52.664902 17b3b032-0ded-46b9-a807-b38973236110 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1212074939"}, "pid": "1810", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:52.775808 2024-09-11 09:01:52.775812 8db99183-92df-4003-84a6-2494e8d215b9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1212533003"}, "pid": "1812", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:52.831866 2024-09-11 09:01:52.831869 6cb97523-0187-4306-a8ad-ebe63f56976a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1212537750"}, "pid": "1813", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:52.892545 2024-09-11 09:01:52.892549 435a7003-1fe1-4670-a90e-05a23ffe6d5a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/121259927"}, "pid": "1814", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:52.95578 2024-09-11 09:01:52.955783 26d57d84-ec77-4934-9990-2207a7b6ee73 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1212602552"}, "pid": "1815", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1104159337529413150005"} 1 +2024-09-11 09:01:53.013948 2024-09-11 09:01:53.013952 a467dac0-c5ba-4151-9de2-52ac8c07c6ff {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1213248760"}, "pid": "1816", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:53.092933 2024-09-11 09:01:53.092937 615a5038-9488-452a-8a90-088607018875 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1213263360"}, "pid": "1817", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:53.155011 2024-09-11 09:01:53.155013 6f085416-a097-4345-a778-dae29ef22668 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1213396700"}, "pid": "1818", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:53.209611 2024-09-11 09:01:53.209615 6773f6bb-dc87-492e-a696-a0a4a1220f4c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1213491738"}, "pid": "1819", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:53.26325 2024-09-11 09:01:53.263253 a87fcb91-1185-4b21-be9e-6a16a873867f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/121376621"}, "pid": "1820", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:53.313824 2024-09-11 09:01:53.313827 7c94fd32-81bd-45f8-9d6c-488d01bc514b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/121432467"}, "pid": "1821", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:53.368624 2024-09-11 09:01:53.368626 fdaf7b84-b8d4-48a6-b49d-53984c929ac0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/121455637"}, "pid": "1822", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:53.465484 2024-09-11 09:01:53.465488 d10aa0b1-49cc-4259-8eeb-12cfbb5cfe2b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1215224869"}, "pid": "1823", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:53.519241 2024-09-11 09:01:53.519245 4b4bc506-c8b6-40f7-ba23-413fbdc780ae {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1215239556"}, "pid": "1824", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:53.571365 2024-09-11 09:01:53.571367 e7a80d74-e3f7-4653-afcb-0270c8606d63 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/121552756"}, "pid": "1825", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:53.623886 2024-09-11 09:01:53.623888 035162fd-d8b0-4f95-9298-921118b2cc52 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1215719418"}, "pid": "1826", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:53.672901 2024-09-11 09:01:53.672904 e140750b-225f-4f47-b3e8-1f5b2f14763b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1216057184"}, "pid": "1827", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:53.779385 2024-09-11 09:01:53.77939 c62cda73-1684-4185-9e38-b0d3999e79ad {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/12167410X"}, "pid": "1829", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:53.831479 2024-09-11 09:01:53.831482 d6b2620b-c5af-41f3-9c47-2e22e7377abb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1217064974"}, "pid": "1830", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:31.575595 2024-09-11 09:06:31.575599 ee2a80eb-f6b0-476b-9e01-a6435d146058 {"pid": "6138", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003218658"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:53.946679 2024-09-11 09:01:53.946683 492ab30c-5524-4a25-b0fc-a40e3b9d5ab5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/12172249X"}, "pid": "1832", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:54.001244 2024-09-11 09:01:54.001249 2fd8ec71-fab9-4c5b-8f11-fd75f1689d2c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/12173692X"}, "pid": "1833", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:54.055878 2024-09-11 09:01:54.05588 96a3dd9e-18a5-4b30-8155-7f8223f58891 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/121808173"}, "pid": "1834", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10711650"} 1 +2024-09-11 09:01:54.109316 2024-09-11 09:01:54.109319 a62b1ae3-71f5-413f-87ee-112e87392478 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1218087730"}, "pid": "1835", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:54.16649 2024-09-11 09:01:54.166494 9e9ee065-b1f5-4bc2-a768-72eb1465a18b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1218187433"}, "pid": "1836", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1081160122836940630004"} 1 +2024-09-11 09:01:54.219428 2024-09-11 09:01:54.219431 df25737b-877b-4946-a576-4a0c1d11b7c3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1218379219"}, "pid": "1837", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:53.727388 2024-09-11 09:05:48.83527 12613dd8-fab3-4bea-8130-0f63155ecbcf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1216511039"}, "pid": "1828", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240238117"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112157340716809922074"} 2 +2024-09-11 09:01:52.721875 2024-09-11 09:06:08.672191 9726997c-7b08-45b4-a823-380522a613b5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1212115716"}, "pid": "1811", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/257342818"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11159276739807951264"} 2 +2024-09-11 09:01:54.273244 2024-09-11 09:01:54.273247 b76e62e9-15b7-4363-b6c2-3866135bb563 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1218472189"}, "pid": "1838", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:54.336146 2024-09-11 09:01:54.336149 c9e231f2-fb71-4951-98c5-686c8f1e498c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/121855775"}, "pid": "1839", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:54.402805 2024-09-11 09:01:54.402809 73602ff8-4e5b-4e7f-82b1-ab14afa2c167 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1218603739"}, "pid": "1840", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1091160211316148920005"} 1 +2024-09-11 09:01:54.453232 2024-09-11 09:01:54.453234 61f6cec5-8ed9-4f34-8f08-d673171e282f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1218605995"}, "pid": "1841", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:54.503091 2024-09-11 09:01:54.503093 8795ca31-774b-48c4-a6aa-47481f35430d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1218696680"}, "pid": "1842", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:54.554086 2024-09-11 09:01:54.554089 8c764636-26f2-4855-b638-b78ccb9d2f58 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1219001767"}, "pid": "1843", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:54.602994 2024-09-11 09:01:54.602997 1dbd4aa3-8c93-4aa3-98b3-61b8b040694f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1219020982"}, "pid": "1844", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:54.657185 2024-09-11 09:01:54.657188 fa61ded6-d11a-48cc-bd1b-6cfbae8fcec5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/121953823X"}, "pid": "1845", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:54.726569 2024-09-11 09:01:54.726573 b7f5d556-cb56-4bc9-9298-5c9b49693f52 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1219543527"}, "pid": "1846", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:54.782099 2024-09-11 09:01:54.782102 a5f9ea03-6201-47c6-94c5-809199eed314 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/121978338"}, "pid": "1847", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:54.833799 2024-09-11 09:01:54.833803 a0e48cdd-5a87-4648-b336-63916a32879d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1219884790"}, "pid": "1848", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:54.913065 2024-09-11 09:01:54.913071 797c32a7-4004-49bf-a378-6d5988a14008 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1219946478"}, "pid": "1849", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:55.191676 2024-09-11 09:01:55.19168 a5f24ff2-52b2-4e74-bf2b-5f359759011d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1220523410"}, "pid": "1851", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:31.630031 2024-09-11 09:06:31.630038 1e1ac070-63ee-4eef-9269-cbd59231c5df {"pid": "6139", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003218686"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:55.305248 2024-09-11 09:01:55.305252 cb77d29c-9e60-42af-ba72-5224418b3a03 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1220778273"}, "pid": "1853", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:55.359375 2024-09-11 09:01:55.359379 b952df46-d8f6-4bba-95ff-0fe4e59c1e01 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1221205536"}, "pid": "1854", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:55.416576 2024-09-11 09:01:55.416579 8711a6da-9ab3-4d30-bd86-aeac7659c34f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1221416952"}, "pid": "1855", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:55.472717 2024-09-11 09:01:55.472719 5cc777c4-516e-482a-9ae3-8cb9ce7328fe {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1221561332"}, "pid": "1856", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:55.527751 2024-09-11 09:01:55.527755 0972b840-7807-4770-94a4-fcc2e7fe86c7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1221637401"}, "pid": "1857", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:55.593001 2024-09-11 09:01:55.593005 d99229a0-c44c-411b-a0a0-373f9d1ca286 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1221643304"}, "pid": "1858", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:55.649221 2024-09-11 09:01:55.649224 937f393d-5a6f-4839-b199-4280e6ccbbff {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1221680293"}, "pid": "1859", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:55.713694 2024-09-11 09:01:55.713698 65407103-07f3-4c82-939f-ae1aa3c40edc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1221818635"}, "pid": "1860", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:55.771333 2024-09-11 09:01:55.771336 60e2b637-edfc-4c5c-bb7b-a845c00e188e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1221985515"}, "pid": "1861", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1038160667532003560009"} 1 +2024-09-11 09:01:55.833031 2024-09-11 09:01:55.833034 9c2c78e8-ec03-460f-a8da-0ee0023bcff0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/122214459X"}, "pid": "1862", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11160665137003362451"} 1 +2024-09-11 09:01:55.917303 2024-09-11 09:01:55.917306 b1a4571f-2297-439e-b4d4-bc571d6f4116 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/122244958"}, "pid": "1863", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10723189"} 1 +2024-09-11 09:01:55.982379 2024-09-11 09:01:55.982382 046af28f-3ab6-4ef8-9cfb-f7f463f5dfdb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1222466716"}, "pid": "1864", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:56.038911 2024-09-11 09:01:56.038913 8ad0bf7a-2ebe-443a-9f51-71e59631a20a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1222736330"}, "pid": "1865", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1090160728549710380000"} 1 +2024-09-11 09:01:56.095159 2024-09-11 09:01:56.095162 f965c8c4-5805-4732-acf3-51780aa3d35e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/122307364"}, "pid": "1866", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:56.170457 2024-09-11 09:01:56.17046 0f0bb38a-0d8e-4c6e-b702-4475bca904d9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1223515273"}, "pid": "1867", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:56.221398 2024-09-11 09:01:56.221401 060fd3ef-aba5-4636-99fe-2fec295eaf18 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1223549372"}, "pid": "1868", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:56.272808 2024-09-11 09:01:56.27281 761e7efe-a01f-4dd1-a837-6a93dff373c8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/122397274"}, "pid": "1869", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:56.327384 2024-09-11 09:01:56.327388 a5e5dca3-0790-4cdc-bdb7-761f4d7bad2a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/122416600"}, "pid": "1870", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:56.379842 2024-09-11 09:01:56.379846 af25ea07-ea6c-4870-a9d6-e076c736fd78 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1224690672"}, "pid": "1871", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:56.429493 2024-09-11 09:01:56.429497 f5bf217d-9f1d-42f7-8ee1-5a57f52f5e19 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1225165792"}, "pid": "1872", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:56.48198 2024-09-11 09:01:56.481982 b4561199-f106-42f8-b9a8-8d68ee48fae6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1225314704"}, "pid": "1873", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:56.534274 2024-09-11 09:01:56.534276 76ae784a-70be-45aa-817c-793e02387cda {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1225318955"}, "pid": "1874", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:56.591571 2024-09-11 09:01:56.591575 e7271891-d5ee-4e20-833c-629c404a3f28 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1225369967"}, "pid": "1875", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:56.644432 2024-09-11 09:01:56.644436 6aeceff9-aa2c-49a1-99af-6547b8f73940 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1225371562"}, "pid": "1876", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:56.6965 2024-09-11 09:01:56.696504 43de0397-704c-419e-9687-b3d6014bb65c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/122546016"}, "pid": "1877", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:56.757889 2024-09-11 09:01:56.757891 61a83fb2-f461-4606-ae98-a8ef61c4a514 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1225499038"}, "pid": "1878", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:56.814703 2024-09-11 09:01:56.814707 aad14e08-6cfb-4315-b874-e86a702e6dfb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1225750350"}, "pid": "1879", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101880225"} 1 +2024-09-11 09:01:56.865549 2024-09-11 09:01:56.865554 f2ea0718-6a1f-499a-8066-269aaed889cf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1225880351"}, "pid": "1880", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:34.640688 2024-09-11 09:06:34.640691 5d1ecf08-f94e-434b-ad4c-b637604730da {"pid": "6181", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003324081"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:57.056195 2024-09-11 09:01:57.056198 19935872-cd32-4fde-b48d-0daca94cad0b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1226168973"}, "pid": "1883", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:57.106225 2024-09-11 09:01:57.106228 06c58e88-3916-42a1-a0e4-6bbe5860361b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1226343031"}, "pid": "1884", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:57.161945 2024-09-11 09:01:57.161948 e4698921-78c6-481d-a76e-6120d25d64e3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1227063229"}, "pid": "1885", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101989153"} 1 +2024-09-11 09:01:57.224774 2024-09-11 09:01:57.224778 4060c3fa-2213-4416-a8fb-85c2b7fcee7e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/122765052"}, "pid": "1886", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:57.292013 2024-09-11 09:01:57.292018 0abff5ad-a423-44e1-9f30-49b4ccbceb2e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/122787900"}, "pid": "1887", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:57.345779 2024-09-11 09:01:57.345784 54938f5e-87a4-4b9f-9056-351ea2fa1848 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1228480222"}, "pid": "1888", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:57.473902 2024-09-11 09:01:57.473905 a1cab5c1-64b5-40e3-91ff-ec7f367bf38b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1228854041"}, "pid": "1890", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:57.527163 2024-09-11 09:01:57.527167 83d9a90e-7e19-42da-a9c7-46feb9c70a66 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1228866244"}, "pid": "1891", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:57.579725 2024-09-11 09:01:57.579729 d39fa369-e20a-403b-a23e-23b041766133 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/122919455X"}, "pid": "1892", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:57.632596 2024-09-11 09:01:57.632598 4df996b6-e241-43d0-8d2b-cfe4bb9bbaf1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/122987870X"}, "pid": "1893", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:57.685607 2024-09-11 09:01:57.68561 660c3b87-3ec9-4f44-8218-f54efc860482 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1230449663"}, "pid": "1894", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:57.749444 2024-09-11 09:01:57.749447 da8577f3-4583-41f9-ba56-65cd0e55cd27 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1230581847"}, "pid": "1895", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:57.801876 2024-09-11 09:01:57.801879 fc65097d-b091-4a85-8a81-6557d0049a9c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1230588736"}, "pid": "1896", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:57.876219 2024-09-11 09:01:57.876224 04826863-8281-4b14-8cf7-59f1466e424a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1230589619"}, "pid": "1897", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:57.928925 2024-09-11 09:01:57.928928 f8050aa4-0a79-4c9f-b7c3-8d64c8ee44ba {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/12307374X"}, "pid": "1898", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10744221"} 1 +2024-09-11 09:01:58.045186 2024-09-11 09:01:58.04519 b2a0e8f0-b7e1-47bb-9984-98a313741adf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1231012749"}, "pid": "1900", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:57.402722 2024-09-11 09:05:12.019619 35ce113b-37d6-47f2-9ca1-0874deb87102 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1228546541"}, "pid": "1889", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/178750166"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112014426"} 2 +2024-09-11 09:01:56.923932 2024-09-11 09:06:11.108943 b5b8b1bd-8f44-4c23-aea7-467fec9fb227 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1226111009"}, "pid": "1881", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/258645563"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107207789"} 2 +2024-09-11 09:01:58.098977 2024-09-11 09:01:58.098981 ccba7e74-82ca-46c2-9aed-9e18208091cd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1231084758"}, "pid": "1901", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:58.165075 2024-09-11 09:01:58.16508 0ccfc5b9-39f8-4885-81df-4b6974733c24 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/123171770X"}, "pid": "1902", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:58.217245 2024-09-11 09:01:58.217248 5cc8a360-ecc4-49c1-a782-a43421002c21 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1232328308"}, "pid": "1903", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:58.27012 2024-09-11 09:01:58.270124 f078a6c8-ae29-4bec-98e2-951c964a91d6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1232437530"}, "pid": "1904", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:58.322629 2024-09-11 09:01:58.322632 cc6e6921-0bb0-4efc-8132-68c92db69da7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1232542377"}, "pid": "1905", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:58.377729 2024-09-11 09:01:58.377734 ef7ba6e9-d170-4058-884d-b7ebbf596d89 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/123269021X"}, "pid": "1906", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:58.431339 2024-09-11 09:01:58.431342 f31cc20f-3b26-446a-8d38-6fb0e77b98d1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/123314348"}, "pid": "1907", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:58.505602 2024-09-11 09:01:58.505604 737003d9-526e-4d41-aeaa-e3651ec56661 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1233743082"}, "pid": "1908", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1006162181274408290003"} 1 +2024-09-11 09:01:58.584458 2024-09-11 09:01:58.58446 30ebc0b7-6606-45dc-8db5-11b63c05e530 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1233756877"}, "pid": "1909", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11162178868807852103"} 1 +2024-09-11 09:01:58.650016 2024-09-11 09:01:58.650018 057478ed-aede-4496-8029-abf03dce7857 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1233766767"}, "pid": "1910", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:58.700143 2024-09-11 09:01:58.700148 2949f29b-ee0c-4678-bb9d-0b713eb73bee {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1233797700"}, "pid": "1911", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:58.753145 2024-09-11 09:01:58.753148 cf839c5c-597e-45b9-9c43-6e127c9aebd9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1234157845"}, "pid": "1912", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:58.806572 2024-09-11 09:01:58.806575 ad60e7ad-4491-438a-9d64-96b445769544 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1234276402"}, "pid": "1913", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:58.856921 2024-09-11 09:01:58.856924 7d3d74f8-c937-4a45-9707-01ecd0ca445b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1234416433"}, "pid": "1914", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:58.909139 2024-09-11 09:01:58.909143 38a10b82-12b3-4a06-998c-5af8b2c551db {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/123444578"}, "pid": "1915", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:58.966892 2024-09-11 09:01:58.966895 c9c9eeb5-2a5e-43e4-8f62-17e23fc7a510 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1235024172"}, "pid": "1916", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10162365631525460906"} 1 +2024-09-11 09:01:59.032029 2024-09-11 09:01:59.032033 5cf7fa24-cd0c-4418-a76b-679cfa7fcd35 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1235035301"}, "pid": "1917", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:59.083337 2024-09-11 09:01:59.08334 bb8ae9e0-a416-41f4-b7f6-ebde204228da {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/123508193"}, "pid": "1918", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:59.138063 2024-09-11 09:01:59.138066 2a72d7a3-20ab-415a-b4f2-779c9480d00a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/123522315"}, "pid": "1919", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:59.190028 2024-09-11 09:01:59.190031 b7850370-ccd5-41da-a694-af14dcf89cfd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1235245071"}, "pid": "1920", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11297911"} 1 +2024-09-11 09:01:59.242435 2024-09-11 09:01:59.24244 7cc3a918-a637-4cbd-817b-5de3d98962f4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1235577384"}, "pid": "1921", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:59.313176 2024-09-11 09:01:59.313179 cf55d0b1-7b8e-4466-a81a-f103d9d95445 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/123571693"}, "pid": "1922", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10757597"} 1 +2024-09-11 09:01:59.368765 2024-09-11 09:01:59.368768 c01fe607-dbf3-4f23-955d-497384256e84 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/123572817X"}, "pid": "1923", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:59.423523 2024-09-11 09:01:59.423525 9425a137-737a-42fc-9e36-df3169ba4073 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1235805395"}, "pid": "1924", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:59.475655 2024-09-11 09:01:59.475659 d56cc920-1ec2-4fbf-945e-d8f9d7b031d1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1235864014"}, "pid": "1925", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:59.529566 2024-09-11 09:01:59.529569 8b0c3463-4853-4b5c-9294-82c374d76c1f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1236151380"}, "pid": "1926", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:59.582132 2024-09-11 09:01:59.582135 c6326ef6-9ed4-48c3-a7a6-a72fcc706dd5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/123617286"}, "pid": "1927", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:59.636635 2024-09-11 09:01:59.636639 272e8084-5005-4aa8-856a-09c980b2591d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/123644372"}, "pid": "1928", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:59.700121 2024-09-11 09:01:59.700125 f606484f-8255-4fef-8fe0-0f2fbdbdd68f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1236649613"}, "pid": "1929", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:19.969744 2024-09-11 09:06:31.691057 bf99d732-0910-4dd0-8f41-b46a0f17e90a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/13707543X"}, "pid": "2277", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003223430"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/078835186"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111831150"} 3 +2024-09-11 09:01:59.809905 2024-09-11 09:01:59.809908 46d01aae-5aaf-4c02-ab84-21b4828092a4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/123686719X"}, "pid": "1931", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:59.859368 2024-09-11 09:01:59.859371 233af38b-9322-4595-b71a-1d325fc19954 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1236915291"}, "pid": "1932", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:59.913443 2024-09-11 09:01:59.913446 7c92eec8-62c6-49cf-82be-61a165f9be57 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1237119766"}, "pid": "1933", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:59.963547 2024-09-11 09:01:59.96355 0533d000-80ff-4209-8f3b-7debfc7d9e04 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/123718376"}, "pid": "1934", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:00.017208 2024-09-11 09:02:00.017211 b9bb2c9c-9e11-4d0a-9a4c-a3304fe9c739 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1237506611"}, "pid": "1935", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:00.073135 2024-09-11 09:02:00.073139 ad0235c6-e62b-4388-8052-1bdb012ecf7d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/123768624"}, "pid": "1936", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:00.144696 2024-09-11 09:02:00.144699 dc0d91d2-b119-4c28-8d23-5e2dc97049ca {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1238027237"}, "pid": "1937", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11162841961273040003"} 1 +2024-09-11 09:02:00.198008 2024-09-11 09:02:00.198013 7390b225-bbe9-4fa5-ba8f-53e81fc226fa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1238037844"}, "pid": "1938", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:00.255034 2024-09-11 09:02:00.255038 52fb0d17-ba29-4ec7-a5f1-ab34cf953314 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1238039944"}, "pid": "1939", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:00.317937 2024-09-11 09:02:00.31794 abe37a4a-de96-4716-a9f0-5e505e5ce628 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/123806305"}, "pid": "1940", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:00.37011 2024-09-11 09:02:00.370115 950e2588-c887-47c8-9366-d2a316e6dfc8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1238167659"}, "pid": "1941", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:31.747792 2024-09-11 09:06:31.747798 075b9d04-3528-43f2-a70b-0bddeeb3947e {"pid": "6140", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003230887"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:00.553738 2024-09-11 09:02:00.553742 c48f6a03-9ef8-4838-aee3-439e5f053de6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1239691408"}, "pid": "1944", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:00.607171 2024-09-11 09:02:00.607174 c3c7c571-aa49-4b69-a150-aa06690de6af {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1240158319"}, "pid": "1945", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:00.659225 2024-09-11 09:02:00.659228 8011b3d5-d75f-4b2d-ac3d-bba51bdc6385 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124025064"}, "pid": "1946", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:00.767881 2024-09-11 09:02:00.767884 abbce025-53ad-40e7-8ba0-93b97ea7be85 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1240323492"}, "pid": "1948", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:00.824582 2024-09-11 09:02:00.824585 b8098534-62cb-4666-b3cb-32b24e76a99b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1240334206"}, "pid": "1949", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:00.87815 2024-09-11 09:02:00.878153 4ff302eb-039b-4f56-9c7c-e4aa2e09ae2b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124045790"}, "pid": "1950", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:00.929037 2024-09-11 09:02:00.92904 81a3bbfc-560a-4ba0-9a7c-fa2e8f658c65 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1240634323"}, "pid": "1951", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:00.983172 2024-09-11 09:02:00.983175 323a2549-0cad-4de1-bbd7-87e5f7524a82 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1240922175"}, "pid": "1952", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:01.040177 2024-09-11 09:02:01.040182 2fb17145-705f-4594-86c5-b49ace297963 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1241124949"}, "pid": "1953", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:01.099093 2024-09-11 09:02:01.099096 c944b0dc-3dad-4d65-aba0-a18cbf4152fe {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1241190755"}, "pid": "1954", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11163208292107231907"} 1 +2024-09-11 09:02:01.162693 2024-09-11 09:02:01.162695 8a7dc7f8-c399-4936-9915-c9ebe4b197e8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1241191921"}, "pid": "1955", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:01.233904 2024-09-11 09:02:01.233908 c4076862-1900-416b-8187-fbe58cd51c47 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1241199418"}, "pid": "1956", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:31.800708 2024-09-11 09:06:31.800711 167a6feb-a5c9-4ce5-8243-16712fbd7b10 {"pid": "6141", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003235750"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:01.396624 2024-09-11 09:02:01.396628 8ea52190-1892-451f-8b07-9550c0ef7f6a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124250076"}, "pid": "1959", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:01.454985 2024-09-11 09:02:01.454989 75226432-135c-4562-a80a-4b8108be6449 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124257070"}, "pid": "1960", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:01.521365 2024-09-11 09:02:01.521369 ef26e9f7-0fa7-4531-b593-fa339efcfd87 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124257151"}, "pid": "1961", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:01.576219 2024-09-11 09:02:01.576223 13b16a11-e3b4-4c5a-8cde-bb62b650bc1d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124268512X"}, "pid": "1962", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:00.496546 2024-09-11 09:05:11.051376 f5a0807f-4d27-413f-82c5-cd9f993d7b5b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/123954940"}, "pid": "1943", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/176929738"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10767442"} 2 +2024-09-11 09:06:31.853909 2024-09-11 09:06:31.853913 d6fc5369-0436-4304-9df3-0c062bed0b0e {"pid": "6142", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003235825"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:01.688764 2024-09-11 09:02:01.688767 e191d9dd-1665-4cc2-84e3-069c7b60e413 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124284299"}, "pid": "1964", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:01.740955 2024-09-11 09:02:01.740957 3617ff56-7663-44ee-a202-9794af81b6c9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1243013648"}, "pid": "1965", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:01.83524 2024-09-11 09:02:01.835243 cd86089f-113a-45eb-85ef-9f602ba59d04 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124311861X"}, "pid": "1966", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:01.899693 2024-09-11 09:02:01.899695 8e750619-84dc-4c7b-a246-4dcc6e02c2c8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124326764X"}, "pid": "1967", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:01.95921 2024-09-11 09:02:01.959214 8f292cae-7e2e-4c7c-98ea-32859d0b0188 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1243598751"}, "pid": "1968", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11163510316910931329"} 1 +2024-09-11 09:02:02.02699 2024-09-11 09:02:02.026993 748b4356-db56-4468-b1e8-ef4cd5a5524a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124384196"}, "pid": "1969", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10778134"} 1 +2024-09-11 09:02:02.098852 2024-09-11 09:02:02.098855 c29a380c-601b-4bc3-a27e-864bd49ac9ee {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1243856505"}, "pid": "1970", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:02.148562 2024-09-11 09:02:02.148565 1da123a6-d6b4-45f2-809c-0a2b08591bb7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/12438644X"}, "pid": "1971", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:02.20658 2024-09-11 09:02:02.206582 74ec0ab8-92ec-47c7-8865-9027b93eeb9e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1243882166"}, "pid": "1972", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:02.267413 2024-09-11 09:02:02.267415 aa811e97-4888-4d49-bbb0-d0e2a6900433 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1243929332"}, "pid": "1973", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:02.321394 2024-09-11 09:02:02.321396 16f0a97a-765f-4be7-b999-5dedefd69011 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1243929464"}, "pid": "1974", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:02.392969 2024-09-11 09:02:02.392973 882cb465-2a40-4c62-92e8-3d380c7a3e8b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124396488X"}, "pid": "1975", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104163510363710932020"} 1 +2024-09-11 09:02:02.453981 2024-09-11 09:02:02.453983 6e395a33-1a01-4f95-a16e-e93f96a33668 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1243973145"}, "pid": "1976", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:02.504864 2024-09-11 09:02:02.504867 ff0d3911-0eb3-4012-a46f-b0914ad37fd5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1244179469"}, "pid": "1977", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:02.55913 2024-09-11 09:02:02.559134 16a7f321-2cb3-4e49-8a3c-840b837665c7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124423256"}, "pid": "1978", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:02.619964 2024-09-11 09:02:02.619967 2d8c6cb5-cc4a-4a65-a9fb-d4b129f4ec70 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124457711"}, "pid": "1979", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:02.681786 2024-09-11 09:02:02.681789 ce9384a1-7254-43e7-8507-983c2bca6a08 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1244862096"}, "pid": "1980", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11163628674623462117"} 1 +2024-09-11 09:02:02.747348 2024-09-11 09:02:02.747351 75330dfd-2dd9-4699-8076-99703171f9b2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1244880027"}, "pid": "1981", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102153003"} 1 +2024-09-11 09:02:02.805799 2024-09-11 09:02:02.805802 116bf0eb-86bd-40a0-970c-e28d46a4193d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1245339214"}, "pid": "1982", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:02.860355 2024-09-11 09:02:02.860359 7788cc36-08ea-4feb-b91e-4c50bf9aaa33 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1245458760"}, "pid": "1983", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:02.985065 2024-09-11 09:02:02.98507 c365d013-7b99-4d4b-be56-3b4c8a53695b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1245874098"}, "pid": "1985", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10743286"} 1 +2024-09-11 09:02:03.036063 2024-09-11 09:02:03.036065 9318c42d-8c0b-486b-9012-2b92284577ca {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124603106"}, "pid": "1986", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:03.089474 2024-09-11 09:02:03.089477 136cbdeb-a1ab-41d4-b065-e773412f9156 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1246058642"}, "pid": "1987", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:03.199359 2024-09-11 09:02:03.199361 97d5e7e0-42f0-4b05-bf7e-137a968559ba {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124686583"}, "pid": "1989", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:03.251495 2024-09-11 09:02:03.251498 259d7a80-9b1f-4a72-8ca7-a85209566c66 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124691560X"}, "pid": "1990", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:03.357955 2024-09-11 09:02:03.357959 cb3e5044-aaf2-43fd-ac29-531105e85fb3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124717764"}, "pid": "1992", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:03.305539 2024-09-11 09:06:37.895921 8ced7179-40a7-436c-98e2-8fea1d29a253 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124715311"}, "pid": "1991", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003441673"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/050212265"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108377870"} 3 +2024-09-11 09:02:02.925712 2024-09-11 09:04:45.730355 4d399cd6-db3f-4edd-bedd-2bdf08174dc4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124566025X"}, "pid": "1984", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/136803784"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107403358"} 2 +2024-09-11 09:02:03.466638 2024-09-11 09:02:03.466642 6b0044b4-e9e1-4e9f-9596-6e1b38272952 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1247579077"}, "pid": "1994", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:03.591511 2024-09-11 09:02:03.591513 39178121-fd76-45e4-93c9-c563932b7b7d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1248272013"}, "pid": "1996", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10164114985410052511"} 1 +2024-09-11 09:02:03.645233 2024-09-11 09:02:03.645237 e54593de-30f1-4393-ad37-0e909d5bd788 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1248663217"}, "pid": "1997", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:03.699501 2024-09-11 09:02:03.699503 fb83e8ad-2cc6-4285-8a75-fa7fea7d40e7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1248783271"}, "pid": "1998", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:03.809071 2024-09-11 09:02:03.809075 00a17461-4476-401b-82f7-acc3138b50c7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124922511"}, "pid": "2000", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:03.86044 2024-09-11 09:02:03.860444 c3815c45-a676-42a9-acf7-92f88191c0df {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1249513502"}, "pid": "2001", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:03.911632 2024-09-11 09:02:03.911637 6ada5f5a-6525-4b15-9003-10c77a9395ef {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124962793"}, "pid": "2002", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:03.965465 2024-09-11 09:02:03.965468 b71b4481-ac06-4594-a6bf-94c0cdbbae4d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124969178"}, "pid": "2003", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:04.022124 2024-09-11 09:02:04.022128 23a77f6c-5b65-4c3e-acfa-6346f17223f0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1249776090"}, "pid": "2004", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:04.084729 2024-09-11 09:02:04.084732 003a3e74-4d8a-421e-899f-9a60414032bf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1249789494"}, "pid": "2005", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:04.136907 2024-09-11 09:02:04.13691 a4f1cc0d-0ee1-45fc-afdf-150884b81262 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1249795362"}, "pid": "2006", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:04.195463 2024-09-11 09:02:04.195469 f68e3609-2cb8-4b07-8a33-f178d0965511 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124995136"}, "pid": "2007", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:04.263698 2024-09-11 09:02:04.263703 29808c4c-f541-4222-8aea-508f753f704b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/125013981"}, "pid": "2008", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:04.317461 2024-09-11 09:02:04.317464 c3ddb13e-47a2-4d8b-a866-9a26071117f8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1250280184"}, "pid": "2009", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:04.435713 2024-09-11 09:02:04.435716 3618ae22-1d4f-4739-84a5-8d9d11ac1ffe {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/125077683X"}, "pid": "2011", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:04.488608 2024-09-11 09:02:04.488611 a49a760b-9f34-47be-910f-92beaed03461 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/125085685X"}, "pid": "2012", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:03.75683 2024-09-11 09:06:30.967187 c06fbbf5-3907-46b0-b250-aa829d9f6cc6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1249217156"}, "pid": "1999", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003188796"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232278431"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10691536"} 3 +2024-09-11 09:02:04.597243 2024-09-11 09:02:04.597246 1cd65161-44f6-474c-945e-46d1a555ff24 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/125158103X"}, "pid": "2014", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:04.65424 2024-09-11 09:02:04.654243 bf25087c-6feb-4b55-9810-338920673e18 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1251903606"}, "pid": "2015", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10164536122732020549"} 1 +2024-09-11 09:02:04.703561 2024-09-11 09:02:04.703563 a86ea184-5c0a-4e99-88b1-e76606c818b0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/125190419X"}, "pid": "2016", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:04.755548 2024-09-11 09:02:04.755553 2505d307-9486-4869-ace3-ec907ac7646e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/125224524"}, "pid": "2017", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:04.81306 2024-09-11 09:02:04.813062 bc316974-0a1f-4b3c-b0e4-0effdc076b12 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1252339607"}, "pid": "2018", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106164604131737910001"} 1 +2024-09-11 09:02:04.864432 2024-09-11 09:02:04.864436 5e5fac04-cb27-497a-8456-b008022dc727 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1253016488"}, "pid": "2019", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:04.91651 2024-09-11 09:02:04.916513 ae0cca90-24a8-4940-bfdb-dc6a9dfc2467 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1253049424"}, "pid": "2020", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:04.97682 2024-09-11 09:02:04.976824 d64c9cfa-5528-499e-943a-f64188e83bc2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1253266913"}, "pid": "2021", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10164717561802090218"} 1 +2024-09-11 09:02:05.044281 2024-09-11 09:02:05.044284 31e9147a-1935-400c-8eba-0a12170b0659 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1253317887"}, "pid": "2022", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:05.098575 2024-09-11 09:02:05.09858 1c33d498-00cb-4350-90d2-c93c51fc036b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/12533396X"}, "pid": "2023", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:04.383421 2024-09-11 09:07:27.065036 f9e4c615-441b-4666-b522-86dfc90cf3ac {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/125037988"}, "pid": "2010", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018456288"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10795063"} 2 +2024-09-11 09:02:03.526871 2024-09-11 09:04:43.559491 4275f540-dd46-4d56-adc3-9dfcba005500 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1247672352"}, "pid": "1995", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/132394065"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10170356"} 2 +2024-09-11 09:02:05.218223 2024-09-11 09:02:05.218227 070b955c-9602-49e9-b6f9-acc103b3e335 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1253803536"}, "pid": "2025", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:05.274763 2024-09-11 09:02:05.274767 ba98cc55-f5a4-466b-ab24-1bd1873bfd00 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1253954518"}, "pid": "2026", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:05.338019 2024-09-11 09:02:05.338022 28015710-7f22-4cdb-b7de-f9b2ece0741d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/125407466X"}, "pid": "2027", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:05.390229 2024-09-11 09:02:05.390232 0fbae857-14c7-49f3-b4a1-9f1c17c9a60e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/125448554"}, "pid": "2028", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:05.443288 2024-09-11 09:02:05.443292 5c1ef380-a54d-4953-b8a0-9d3c1f3f2331 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1254513582"}, "pid": "2029", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:05.496494 2024-09-11 09:02:05.496499 6e3c8d99-725f-48f3-9cbf-b87984673a6b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1254551980"}, "pid": "2030", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:05.549536 2024-09-11 09:02:05.549539 974af5b1-eda1-49d5-ae04-07575feb9f6b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1254730559"}, "pid": "2031", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:05.610293 2024-09-11 09:02:05.610296 d4b72106-8a45-44bb-9e49-2ae50532ec3a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1255052740"}, "pid": "2032", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10164959841424022160"} 1 +2024-09-11 09:02:05.680035 2024-09-11 09:02:05.680038 dacec22c-1ccf-4c12-a0e0-084cd3078967 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/125522732X"}, "pid": "2033", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:05.732597 2024-09-11 09:02:05.7326 cd158db4-fc2c-45d8-83bb-884b4005ad8d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1255253967"}, "pid": "2034", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:05.787364 2024-09-11 09:02:05.787368 3db12113-923b-4420-a7c5-4bb3c83b80db {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/125525869"}, "pid": "2035", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:05.852642 2024-09-11 09:02:05.852644 7595ef81-1656-4216-abca-9ddc5421eb39 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/125527683"}, "pid": "2036", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:05.920104 2024-09-11 09:02:05.920107 bd085f02-77bb-41a1-bc68-dafb1da8c74c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/125606193X"}, "pid": "2037", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11165107062836452586"} 1 +2024-09-11 09:02:05.981359 2024-09-11 09:02:05.981362 b75d6f42-803e-4a2c-a39b-e255ee11c2ba {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1256298980"}, "pid": "2038", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:06.032742 2024-09-11 09:02:06.032746 57775461-4697-4962-a5f1-0759cc9ccdad {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1256639974"}, "pid": "2039", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:06.089036 2024-09-11 09:02:06.089039 d43177ae-bb99-4953-908e-6ec276d1fa64 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/125666632"}, "pid": "2040", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10814566"} 1 +2024-09-11 09:02:06.197683 2024-09-11 09:02:06.197688 b1a6e099-01d0-4c7a-9649-f2bbb56bd778 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/125675658X"}, "pid": "2042", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:06.247399 2024-09-11 09:02:06.247402 6bd6ba2a-7382-4d21-863e-5c9011c1e9df {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1257269704"}, "pid": "2043", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:06.304472 2024-09-11 09:02:06.304475 db16462e-78bb-4412-80a0-90cce058d49b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1257796259"}, "pid": "2044", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:06.356681 2024-09-11 09:02:06.356684 ca8d457a-5308-4ad3-87dc-ffa1d2667f42 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1257837826"}, "pid": "2045", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:06.407997 2024-09-11 09:02:06.408 f0908c13-034b-4f81-acf2-32c52f6d1906 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1257931253"}, "pid": "2046", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:06.460745 2024-09-11 09:02:06.460749 1393d24f-b775-4c94-bf9e-c78dd364e51f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1258741997"}, "pid": "2047", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:06.517469 2024-09-11 09:02:06.517472 4f60a156-a118-43c9-b536-7a8cc24decaf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1258782901"}, "pid": "2048", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1009165450329527100003"} 1 +2024-09-11 09:02:06.570593 2024-09-11 09:02:06.570597 588fce28-e918-447f-890e-43723ec2a0a1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1258808196"}, "pid": "2049", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:06.622663 2024-09-11 09:02:06.622666 c00ad3dc-ddb7-494a-a5b3-c8763bf01ce2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/125881336X"}, "pid": "2050", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:06.675299 2024-09-11 09:02:06.675303 0f663f76-50ef-4391-bd78-e97b1ab0b0b5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/125904568"}, "pid": "2051", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:06.731329 2024-09-11 09:02:06.731333 d5940415-903b-4a37-b760-7cca78630ef6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1259359026"}, "pid": "2052", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:06.785718 2024-09-11 09:02:06.785721 8b7b81df-df14-4078-a969-6b23f71c5c27 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1259480860"}, "pid": "2053", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:06.83957 2024-09-11 09:02:06.839573 6adc3b91-cce3-46f6-b8dd-7109f3cc2090 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1259906620"}, "pid": "2054", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:31.908841 2024-09-11 09:06:31.908845 92baaa71-73d9-439e-9379-90952829e75d {"pid": "6143", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003236665"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:06.964526 2024-09-11 09:02:06.96453 2bb5c5af-e6d7-4640-906a-f3c047f6da1a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1260402541"}, "pid": "2056", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:07.026021 2024-09-11 09:02:07.026025 28a8c344-b9e4-454c-9c34-e6844ac938fb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/126093148"}, "pid": "2057", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:07.113571 2024-09-11 09:02:07.113573 e6024f49-48ef-412b-b5e7-402ac6341bdc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/126098190"}, "pid": "2058", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:07.164015 2024-09-11 09:02:07.164018 1926f68e-a155-471c-803a-ba06b90591cb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1260994147"}, "pid": "2059", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:07.222316 2024-09-11 09:02:07.22232 c38a3919-7d1b-4ce9-b8bc-2d261f07b84c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1261058550"}, "pid": "2060", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10165705874348931300"} 1 +2024-09-11 09:02:07.327643 2024-09-11 09:02:07.327646 993995e9-b38d-481e-ac9e-183a078dd6d7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1261260147"}, "pid": "2062", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:07.379579 2024-09-11 09:02:07.379582 367c89e2-47c7-490c-b0a8-59a6263b23a0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1261307364"}, "pid": "2063", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:07.433524 2024-09-11 09:02:07.433527 aa53472b-d648-4ec1-8183-0c16e4a1ecf5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/126144060"}, "pid": "2064", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:07.499922 2024-09-11 09:02:07.499925 c155b6e5-3e94-469c-b1cc-a5a7dd250c9b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1261766156"}, "pid": "2065", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11165747247653932888"} 1 +2024-09-11 09:02:07.55656 2024-09-11 09:02:07.556565 95d25b0d-8dd6-4024-b89f-adc5a477ee3f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1261941136"}, "pid": "2066", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101542437"} 1 +2024-09-11 09:02:07.611625 2024-09-11 09:02:07.61163 49564c2c-86ed-41da-8d48-5f213ec23300 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1262106486"}, "pid": "2067", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:07.666695 2024-09-11 09:02:07.666699 4f65f7aa-cec5-4e89-b31b-7579eac037ea {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/126221804"}, "pid": "2068", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:07.734691 2024-09-11 09:02:07.734695 3f58d1e5-ceaf-4eb3-ba8e-c92b22cf940b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1262395305"}, "pid": "2069", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:07.807553 2024-09-11 09:02:07.807555 b0b4d360-c4c6-42ff-838e-281d2d55de21 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1262411238"}, "pid": "2070", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:07.860015 2024-09-11 09:02:07.86002 e994ad74-9383-45f7-814c-70edc0d15dd8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1262517281"}, "pid": "2071", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:07.913975 2024-09-11 09:02:07.913978 d4d306a0-c4e2-452e-ae9c-6d16f9830a1a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/12625639X"}, "pid": "2072", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:07.986486 2024-09-11 09:02:07.98649 427823b7-aaef-4299-9850-95f971ea2e7d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1262993016"}, "pid": "2073", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10165866673564000760"} 1 +2024-09-11 09:02:08.045943 2024-09-11 09:02:08.045948 a1950dbd-aab0-40cc-a249-58ec21d50b46 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1263532683"}, "pid": "2074", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11166001530675020687"} 1 +2024-09-11 09:02:08.110265 2024-09-11 09:02:08.110268 cc0050dd-a4b3-43c5-9fd6-c2f4d0517f46 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1264061994"}, "pid": "2075", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:08.176682 2024-09-11 09:02:08.176686 100a36b1-5d3e-473b-9cf0-50c7324966e2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1264067003"}, "pid": "2076", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107550472"} 1 +2024-09-11 09:02:08.232583 2024-09-11 09:02:08.232586 d2733078-be51-4110-a843-2cd957e3d25f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/126431582"}, "pid": "2077", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:08.296199 2024-09-11 09:02:08.296203 cb0cd96c-7097-4bb7-acfa-3b925d13eaba {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1265029369"}, "pid": "2078", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:08.35557 2024-09-11 09:02:08.355573 7a8f08df-e6c6-4542-95b9-6203d65f67c6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/126590249"}, "pid": "2079", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:08.408156 2024-09-11 09:02:08.408159 4dde00a4-532f-416d-8f73-420b98ee94a6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/126645590"}, "pid": "2080", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:08.459718 2024-09-11 09:02:08.459721 7459663d-c948-4649-a7b1-43d38c617af6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/126652902"}, "pid": "2081", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:08.517577 2024-09-11 09:02:08.517579 e28fa415-a2c4-4954-a3f8-022b00edc8fb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/126811846X"}, "pid": "2082", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106647207"} 1 +2024-09-11 09:02:08.574156 2024-09-11 09:02:08.574159 598e05cb-4ced-462e-90e1-572163c3d1b7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1268485969"}, "pid": "2083", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10166411369502481311"} 1 +2024-09-11 09:02:08.632001 2024-09-11 09:02:08.632005 b37a2683-86fa-4aaa-bfbf-660ddffc11fa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/12688790X"}, "pid": "2084", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10851592"} 1 +2024-09-11 09:02:08.683579 2024-09-11 09:02:08.683582 9ee7d673-77dc-4738-b364-0a647f43ea48 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/127018360"}, "pid": "2085", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:31.959553 2024-09-11 09:06:31.959558 90b94724-4659-4054-8f49-a4fe007e38fc {"pid": "6144", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003237696"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:07.27808 2024-09-11 09:06:17.424063 60fbfc66-0ae9-42c3-a4d9-593d6af18a7d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1261250842"}, "pid": "2061", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/264982959"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11154620867344591712"} 2 +2024-09-11 09:06:32.0132 2024-09-11 09:06:32.013203 d40d0cec-ea91-40f6-844f-326e628c84fa {"pid": "6145", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003240957"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:08.845142 2024-09-11 09:02:08.845144 7fe221de-d6ec-4ad1-8af3-a71ce7659579 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/127202048"}, "pid": "2088", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:08.899339 2024-09-11 09:02:08.899342 3b278828-4e89-41a7-96a3-7de82a690bac {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/127205233"}, "pid": "2089", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1027627"} 1 +2024-09-11 09:02:09.051833 2024-09-11 09:02:09.051835 6d9e30bd-9eea-48ad-a9bb-b4fac2319985 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1273775546"}, "pid": "2092", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11166955763746910323"} 1 +2024-09-11 09:02:09.102871 2024-09-11 09:02:09.102875 352f9ba8-b913-4bb9-aa3e-ae6a4d2ca9db {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/127398538"}, "pid": "2093", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:09.15877 2024-09-11 09:02:09.158774 88480b21-1dcf-4ffe-8141-f5fec2ff595f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/12742508X"}, "pid": "2094", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10868125"} 1 +2024-09-11 09:02:09.209478 2024-09-11 09:02:09.209482 94d517c0-c020-46e4-911e-6a29991ceeda {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/127465680X"}, "pid": "2095", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1061167082533458570003"} 1 +2024-09-11 09:02:09.260783 2024-09-11 09:02:09.260786 166175d8-19a5-42b6-8608-6631f845d6fc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/12747692X"}, "pid": "2096", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10869467"} 1 +2024-09-11 09:02:09.31015 2024-09-11 09:02:09.310155 04e697ac-e7eb-4da8-981f-ceeb974a0d36 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/127496491"}, "pid": "2097", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:09.356315 2024-09-11 09:02:09.356319 97e50c0d-3c8c-49b6-9cc7-dc156c5e6b91 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/127707255"}, "pid": "2098", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:09.410932 2024-09-11 09:02:09.410936 ba9436f5-d3bf-4fd7-b064-10199fd6e424 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/127714049"}, "pid": "2099", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10876144"} 1 +2024-09-11 09:02:09.462464 2024-09-11 09:02:09.462466 d7a0dee0-6652-49b9-aae5-a42f59b43c40 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/12771961X"}, "pid": "2100", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:09.513473 2024-09-11 09:02:09.513476 b773845e-61ed-4a42-842d-e3cacbc2cf38 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/127772553"}, "pid": "2101", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:09.563157 2024-09-11 09:02:09.563161 b15e3bcf-267d-4fff-9dc7-b83052fb7e81 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/127836160"}, "pid": "2102", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:09.613572 2024-09-11 09:02:09.613574 e7e4afbc-02e7-410f-9dc4-66461bffb567 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1278368817"}, "pid": "2103", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107933701"} 1 +2024-09-11 09:02:09.662173 2024-09-11 09:02:09.662178 45a4e94f-33e0-4541-b0f2-d97e9b964401 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/127845925"}, "pid": "2104", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:09.71491 2024-09-11 09:02:09.714913 440024a3-fca2-49dc-8381-e1718afb82c6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/127857214"}, "pid": "2105", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1047229"} 1 +2024-09-11 09:02:09.764347 2024-09-11 09:02:09.764351 596d6122-bb71-44e6-80d8-97b42e675e29 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/12786959X"}, "pid": "2106", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:09.814893 2024-09-11 09:02:09.814896 ddb1aa4b-c6bd-415a-b96e-d960a84a0876 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/128016736"}, "pid": "2107", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:09.926716 2024-09-11 09:02:09.92672 91906047-9777-43da-9cad-16d2ad8f5499 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/128190094"}, "pid": "2109", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:09.973392 2024-09-11 09:02:09.973395 cb67e964-a882-4b5c-951c-36236954e205 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/128202432"}, "pid": "2110", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:10.023141 2024-09-11 09:02:10.023145 3c28c6d3-4370-4c8d-84ae-babe9d601d72 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/128244224"}, "pid": "2111", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1058867"} 1 +2024-09-11 09:02:10.075452 2024-09-11 09:02:10.075455 7ae1749f-b754-48cf-9284-1d6166aaea94 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/128275022"}, "pid": "2112", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1059758"} 1 +2024-09-11 09:02:10.122313 2024-09-11 09:02:10.122317 7b4f56a1-c619-4bad-ba02-e4087fb0e593 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/128320419"}, "pid": "2113", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:09.877713 2024-09-11 09:07:45.924432 79691c20-d7a0-4cd2-83dc-82bb0047bb75 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/128174889"}, "pid": "2108", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024416324"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/242007481"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108144648980009328314"} 3 +2024-09-11 09:02:10.231863 2024-09-11 09:02:10.231867 8914013e-187c-4a40-9366-575f64d53bb4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/128346280"}, "pid": "2115", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:10.286912 2024-09-11 09:02:10.286916 8e0044cf-275d-4eef-bd56-318ae90da122 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/12837196X"}, "pid": "2116", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10896197"} 1 +2024-09-11 09:02:10.335395 2024-09-11 09:02:10.335398 134cd197-1ce2-4bf7-9bdb-170d19816b56 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/128387602"}, "pid": "2117", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:08.948948 2024-09-11 09:05:07.551274 4ba0dbc5-e971-4b18-b3a2-3fe7aab634de {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/127283447"}, "pid": "2090", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/167843052"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101923065"} 2 +2024-09-11 09:02:10.381335 2024-09-11 09:02:10.381339 e80fd4b0-148b-4205-87d8-2c76f9eb3b23 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/128430613"}, "pid": "2118", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:10.429443 2024-09-11 09:02:10.429446 685da87b-57ee-4507-a3a0-545d98f240a9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/128437979"}, "pid": "2119", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:10.485498 2024-09-11 09:02:10.485502 626e1de0-ae80-4795-98bf-da3efed520f8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/128438185"}, "pid": "2120", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1064653"} 1 +2024-09-11 09:02:10.542806 2024-09-11 09:02:10.542809 825076e6-1656-4301-b192-cd6f01a0dc1e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/12849915X"}, "pid": "2121", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:10.593088 2024-09-11 09:02:10.59309 ecc0f54d-d309-42aa-9c10-cab3385d3cea {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/128564520"}, "pid": "2122", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10901433"} 1 +2024-09-11 09:02:10.640688 2024-09-11 09:02:10.64069 fe96db02-ab91-4b8b-ae0c-8d2f48743b30 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/128568763"}, "pid": "2123", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:10.696098 2024-09-11 09:02:10.6961 a322be72-3796-40d9-924f-585511e2f972 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/128630450"}, "pid": "2124", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10903215"} 1 +2024-09-11 09:02:10.751964 2024-09-11 09:02:10.751967 f3cf2dd0-dbf2-4470-bda2-971715d52fb7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/12864852X"}, "pid": "2125", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102295222"} 1 +2024-09-11 09:02:10.798862 2024-09-11 09:02:10.798867 8753f783-9575-4656-b846-bb94e1d74ab3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/128669993"}, "pid": "2126", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:10.848424 2024-09-11 09:02:10.848427 543f7585-1a5e-432d-a279-196ccbbb32fb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/128807954"}, "pid": "2127", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:10.899549 2024-09-11 09:02:10.899552 ae533686-576b-47ad-a72d-14a9199bc22b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/128852690"}, "pid": "2128", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10909183"} 1 +2024-09-11 09:02:10.951699 2024-09-11 09:02:10.951702 d4740285-a922-4561-822b-0999920ebb0f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/128887249"}, "pid": "2129", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:11.005701 2024-09-11 09:02:11.005704 0e07322c-c37d-4457-a203-05c40db41893 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/128948426"}, "pid": "2130", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:11.056931 2024-09-11 09:02:11.056933 47c27b99-8898-4247-bb78-87c79a09b0d0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/128970790"}, "pid": "2131", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:11.131757 2024-09-11 09:02:11.131762 db4aa693-5515-4157-8179-77142775c794 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/128979852"}, "pid": "2132", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10912576"} 1 +2024-09-11 09:02:11.180333 2024-09-11 09:02:11.180337 4fb82787-fbd1-4415-ad1c-8233a9707abe {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/129020893"}, "pid": "2133", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:11.233132 2024-09-11 09:02:11.233136 fab6c219-75d1-4c0e-be5a-297f435adc9d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/129048267"}, "pid": "2134", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10914358"} 1 +2024-09-11 09:02:11.282842 2024-09-11 09:02:11.282845 a79a6dcc-96ed-4043-880a-b5fe100b498b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/129097632"}, "pid": "2135", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:11.332778 2024-09-11 09:02:11.332782 b06f1863-8a70-4817-85d0-2c0563b52a5c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/129154105"}, "pid": "2136", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:11.380218 2024-09-11 09:02:11.380221 afe37311-3257-4659-8491-84f0a94c7bf6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/129227838"}, "pid": "2137", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:32.066955 2024-09-11 09:06:32.066958 eaf91e19-91c6-46af-8016-be8f378daf7a {"pid": "6146", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003242452"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:11.481626 2024-09-11 09:02:11.481629 7357e455-7208-41e4-90be-d62f641838f2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/129446904"}, "pid": "2139", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:11.528152 2024-09-11 09:02:11.528156 d1a6e1cd-a914-4844-ab36-9ce4ab17293d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/129475351"}, "pid": "2140", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:11.575497 2024-09-11 09:02:11.575501 d475f62a-62b3-447c-a435-cf4cd2fd5a43 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/129504971"}, "pid": "2141", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:12.047092 2024-09-11 09:07:00.770082 08a65551-a9f0-49e9-9355-181ddb66ea31 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/12981752X"}, "pid": "2149", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011736857"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/121469395"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101091591"} 3 +2024-09-11 09:02:11.74569 2024-09-11 09:02:11.745693 7d194e83-dd63-4f40-86c3-456bc2eab743 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/129608610"}, "pid": "2144", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10929109"} 1 +2024-09-11 09:02:11.808951 2024-09-11 09:02:11.808957 c18a78e4-dff9-479a-8df9-eabd1b1bea91 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/129639109"}, "pid": "2145", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:11.865171 2024-09-11 09:02:11.865174 a0e97900-a461-44fe-89cb-adf8b82d8df6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/129685828"}, "pid": "2146", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:11.929599 2024-09-11 09:02:11.929602 a9c7c231-1710-4aa4-8b43-1db25bf03efe {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/129727482"}, "pid": "2147", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:11.989857 2024-09-11 09:02:11.989859 aebbfa88-4c05-4ee7-b14a-89925a5ec9e3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/129803332"}, "pid": "2148", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:12.159067 2024-09-11 09:02:12.159071 eb579b2f-4b2f-49b3-8fff-f90f6d67a472 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/129855863"}, "pid": "2151", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:12.212103 2024-09-11 09:02:12.212107 2e850b0b-d4a5-4928-a054-d71aef2a0a3b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/12988782X"}, "pid": "2152", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:12.266285 2024-09-11 09:02:12.26629 7791c098-1607-43cc-805e-26c93949ed38 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/129888796"}, "pid": "2153", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:12.377585 2024-09-11 09:02:12.377589 7b1fbf1f-3915-4cc4-a1db-1b533df24027 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/130000388"}, "pid": "2154", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:12.438309 2024-09-11 09:02:12.438311 afb7670f-799c-4dd2-b6fd-a55acd1fbcbf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/130016985"}, "pid": "2155", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:12.503269 2024-09-11 09:02:12.503272 66f2cb4f-3e32-4fc4-888c-3b8823354085 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/130020001"}, "pid": "2156", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:01.785537 2024-09-11 09:06:32.125364 63c906c3-711f-4c36-9549-e0b1555c09a2 {"pid": "3865", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003243348"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034731695"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108927617"} 2 +2024-09-11 09:02:12.641475 2024-09-11 09:02:12.641478 fb772a3b-f5f7-4d14-b381-51a5e61308a9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/130141623"}, "pid": "2158", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:12.709461 2024-09-11 09:02:12.709465 b15708e3-c336-4e6b-a340-52b7d0b18b90 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/13022622X"}, "pid": "2159", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:12.784093 2024-09-11 09:02:12.784096 e4e81853-9a51-4590-a740-4812bd70a274 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/130250473"}, "pid": "2160", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:12.834676 2024-09-11 09:02:12.83468 b7983281-4b7f-4d05-a5f3-36e3de6f880a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/130374520"}, "pid": "2161", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:12.887542 2024-09-11 09:02:12.887545 fa99dd40-a80d-4e3d-a0f8-a400c8f36a41 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/130502642"}, "pid": "2162", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:12.957425 2024-09-11 09:02:12.957426 d764f215-1a2e-496d-a098-5d5d3e7fbc50 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/130556939"}, "pid": "2163", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101092482"} 1 +2024-09-11 09:02:13.011636 2024-09-11 09:02:13.01164 538596bf-7175-4279-a9a7-6455d3dd144a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/130582883"}, "pid": "2164", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:13.187984 2024-09-11 09:02:13.187987 bd979ada-2a23-471d-aa69-4badff8ccdc2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/130860557"}, "pid": "2167", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:13.249541 2024-09-11 09:02:13.249546 98469f56-03b8-4b68-a617-b69cda276352 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/131284703"}, "pid": "2168", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:13.30724 2024-09-11 09:02:13.307243 43db78ae-d52e-4f95-94d9-bc2cae3001d6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/131443704"}, "pid": "2169", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:13.366201 2024-09-11 09:02:13.366205 e1bfb96c-822b-489b-ae61-72ef99d53b21 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/131514059"}, "pid": "2170", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10980715"} 1 +2024-09-11 09:02:13.422049 2024-09-11 09:02:13.422051 c1bc0bb8-4263-4022-9333-ee07251f23d4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/131564692"}, "pid": "2171", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:13.477366 2024-09-11 09:02:13.47737 3b94b23e-3104-4727-bc3b-08ed2081b2a2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/131638653"}, "pid": "2172", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:13.531478 2024-09-11 09:02:13.531482 a3d63333-7a88-42ea-b27c-b677d62a3874 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/131675907"}, "pid": "2173", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:13.604525 2024-09-11 09:02:13.604529 a544e176-4fa2-4d3a-a82c-cf6368dbe478 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/131709550"}, "pid": "2174", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10986188"} 1 +2024-09-11 09:02:13.694778 2024-09-11 09:02:13.694781 314546a7-cb2a-4044-a7eb-c8528c284cef {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/131738631"}, "pid": "2175", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10987079"} 1 +2024-09-11 09:02:13.749659 2024-09-11 09:02:13.749663 d5b5ccf6-be64-45db-9838-9267aff65d31 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/13178918X"}, "pid": "2176", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:13.813157 2024-09-11 09:02:13.813161 e1d45d7c-f1e9-482b-8b67-1dfdaf993576 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/131792350"}, "pid": "2177", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:13.068329 2024-09-11 09:07:22.547514 6ef37aea-aaba-4382-b430-f76ed1ff16fe {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/130677299"}, "pid": "2165", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017383534"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/146874595"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103076134"} 3 +2024-09-11 09:02:13.921615 2024-09-11 09:02:13.921618 ab19e003-d28e-4596-98d0-606eb4caf7f5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/13184248X"}, "pid": "2179", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:13.984192 2024-09-11 09:02:13.984197 187a5ce1-78c3-46b8-9c7d-d0e619ae1a75 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/131856839"}, "pid": "2180", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:14.038899 2024-09-11 09:02:14.038902 943269ed-a1a2-4432-986d-c52db229c2c3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/131896873"}, "pid": "2181", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:13.131493 2024-09-11 09:06:32.187994 070e63fd-c4ac-4366-897d-54b07d9c9730 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/130859842"}, "pid": "2166", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003245434"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032613237"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106003300"} 3 +2024-09-11 09:02:14.213141 2024-09-11 09:02:14.213145 c9794f5a-5783-4d3b-958b-42d0175e266f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/131930915"}, "pid": "2184", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:14.265878 2024-09-11 09:02:14.265881 200c46ba-f61d-4b4d-b4eb-7fd751665199 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/132104784"}, "pid": "2185", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:14.318796 2024-09-11 09:02:14.318799 19bf1c03-d727-4c4f-b829-587b51c11012 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/132266741"}, "pid": "2186", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:14.455037 2024-09-11 09:02:14.455042 2c70eda9-f756-45d4-b476-a5eca7b15fd2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/132327147"}, "pid": "2188", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100680895"} 1 +2024-09-11 09:02:14.519803 2024-09-11 09:02:14.519806 2d6ae1e9-99a0-46e5-b459-fe1b0ec6ca50 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/132373963"}, "pid": "2189", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11005130"} 1 +2024-09-11 09:02:14.585052 2024-09-11 09:02:14.585057 5ef595c9-ba6b-4c8a-bd95-16f97eadf950 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/13246781X"}, "pid": "2190", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:14.658543 2024-09-11 09:02:14.658547 46d9b568-3bfb-400f-8be7-2d86ce6ccb53 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/132490846"}, "pid": "2191", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:14.794382 2024-09-11 09:02:14.794384 91e2851b-5c1d-4385-9e4f-0a434a77b617 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/132526808"}, "pid": "2193", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:14.852747 2024-09-11 09:02:14.852752 ecd67b7e-5ea8-48fd-a278-bb8fdd109938 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/132658941"}, "pid": "2194", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:14.909953 2024-09-11 09:02:14.909958 695db22d-628a-4b5d-9e52-08f4533208f1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/132695405"}, "pid": "2195", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:14.970111 2024-09-11 09:02:14.970115 54142302-f4ea-4e52-b475-25152c4564a7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/132790912"}, "pid": "2196", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:15.033946 2024-09-11 09:02:15.03395 8eab11b2-c7f6-4b9f-825c-39e1ac031ee0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/132825198"}, "pid": "2197", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11017939"} 1 +2024-09-11 09:02:15.086992 2024-09-11 09:02:15.086996 cd411d1e-ea00-4986-a62f-b98dcb59bcbd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/132828944"}, "pid": "2198", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:15.143564 2024-09-11 09:02:15.143568 8dcf53ff-a653-440a-9940-90c761e6d8dd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/132832860"}, "pid": "2199", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:15.219336 2024-09-11 09:02:15.21934 b945682a-80c2-4ac9-b8aa-be69b720d540 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/132857022"}, "pid": "2200", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:15.278245 2024-09-11 09:02:15.278249 7d85c00e-b081-4682-80cf-e32e945d09b9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/132989719"}, "pid": "2201", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:15.334926 2024-09-11 09:02:15.334931 21a8b350-6147-48b2-8d2e-6afdfc2d1808 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/13299495X"}, "pid": "2202", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:15.391574 2024-09-11 09:02:15.391578 d5836eb1-4aa1-42bf-904d-0bbabce86827 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/132999102"}, "pid": "2203", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:15.457974 2024-09-11 09:02:15.457977 a329ff60-3619-45b4-bd64-9ce2b2c095e5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/133046567"}, "pid": "2204", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11024292"} 1 +2024-09-11 09:02:15.511846 2024-09-11 09:02:15.511849 27d95b94-8feb-465c-9b92-ade2ef9ec175 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/133056996"}, "pid": "2205", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:15.564756 2024-09-11 09:02:15.564761 9722325b-7dc6-4c08-a979-b05cb72862a0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/13308325X"}, "pid": "2206", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:15.621614 2024-09-11 09:02:15.621617 f8b26cfc-39f9-4811-aaf9-1954c2af670f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/133092852"}, "pid": "2207", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:15.677628 2024-09-11 09:02:15.677631 68d25176-6103-4bca-a995-c5d8631959ad {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/133104567"}, "pid": "2208", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:15.754714 2024-09-11 09:02:15.754717 a7062192-9569-4587-b8de-8c9faa70b315 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/13311189X"}, "pid": "2209", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11025958"} 1 +2024-09-11 09:02:15.809889 2024-09-11 09:02:15.809892 ac54a9b8-745f-4858-80ee-1d6357aa19b9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/133130886"}, "pid": "2210", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:15.866842 2024-09-11 09:02:15.866846 9ef07aaf-873a-4004-a3cf-20a3545ffbe3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/133245187"}, "pid": "2211", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:15.921499 2024-09-11 09:02:15.921502 88c891ad-c192-4982-910c-bd01688433aa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/133255344"}, "pid": "2212", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:15.972536 2024-09-11 09:02:15.972538 cfcf3876-13bb-4565-8bd9-01257e1f41e1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/133273407"}, "pid": "2213", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:14.738052 2024-09-11 09:04:48.303965 53c81743-3d23-47c6-b57a-e3b3b980d0fc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/132503980"}, "pid": "2192", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/140489436"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102340069"} 2 +2024-09-11 09:06:32.243 2024-09-11 09:06:32.243004 dc3046cf-a518-46a2-bf71-c02737884edf {"pid": "6147", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003246832"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:16.212823 2024-09-11 09:02:16.212825 0cf9cc21-f834-4d4d-b316-bf9a14d4aade {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/133396223"}, "pid": "2216", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:16.264041 2024-09-11 09:02:16.264044 2500b3d8-a737-4eee-8f72-05b333653734 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/133487342"}, "pid": "2217", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:16.316097 2024-09-11 09:02:16.316099 0ffd7537-7615-4791-b339-0e9b34181a6b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/13350171X"}, "pid": "2218", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:16.486625 2024-09-11 09:02:16.486629 0c92c111-7544-4822-b2fa-bba100403475 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/133685624"}, "pid": "2221", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:16.536762 2024-09-11 09:02:16.536765 15d26e1b-fe9d-4c5e-bffa-01be4b5b8a4c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/133715671"}, "pid": "2222", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:16.587223 2024-09-11 09:02:16.587225 119e1f78-a806-4572-a26c-491b33172f9f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/133748294"}, "pid": "2223", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:16.757963 2024-09-11 09:02:16.757966 b74e97ea-f312-42d2-b4b8-9cc7fbc42a85 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134089316"}, "pid": "2226", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:16.814581 2024-09-11 09:02:16.814584 738de5c0-4666-457b-90cf-c5af0986cc50 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134092147"}, "pid": "2227", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:16.87134 2024-09-11 09:02:16.871343 0e5a5b83-cdff-4829-a4ce-876c76f510a6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/13416492X"}, "pid": "2228", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:16.92633 2024-09-11 09:02:16.926333 5172bc00-a18a-4142-914c-36ca5c86b63a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134204603"}, "pid": "2229", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:17.032613 2024-09-11 09:02:17.032616 66a35d1e-a57a-48b5-8aab-0d836345ee03 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134311086"}, "pid": "2231", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:17.140134 2024-09-11 09:02:17.140138 cc6c6d63-2f86-4e47-b66a-dcd98cb52010 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134449002"}, "pid": "2233", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:17.19561 2024-09-11 09:02:17.195613 41a10382-f5b0-4cf3-8e24-e5093955b7fa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134454901"}, "pid": "2234", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:17.261027 2024-09-11 09:02:17.26103 491b8786-2d6f-4983-b456-6ce51b05de7a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134538099"}, "pid": "2235", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:17.318753 2024-09-11 09:02:17.318755 a97f6a82-5872-4785-9b01-a9dbc9e98f50 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134550412"}, "pid": "2236", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101057733"} 1 +2024-09-11 09:02:17.380042 2024-09-11 09:02:17.380047 da62a988-2111-4915-ae44-b240affbf4aa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134563166"}, "pid": "2237", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101079612"} 1 +2024-09-11 09:02:17.439791 2024-09-11 09:02:17.439794 7e8cbdc4-9928-4801-9c17-0aafa53dea78 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134574079"}, "pid": "2238", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:17.502295 2024-09-11 09:02:17.5023 d43be01a-a8ee-4133-8623-f66de581303e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134583337"}, "pid": "2239", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:17.56027 2024-09-11 09:02:17.560274 b9aec2a5-eb4f-42e0-a0fb-cae1b18c6625 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134588959"}, "pid": "2240", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:17.640333 2024-09-11 09:02:17.640335 93d95d2d-5320-4839-afe2-b64fe20a5bca {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134590481"}, "pid": "2241", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:17.692736 2024-09-11 09:02:17.692739 0fe38d17-e09b-48d8-8673-10d670d6407c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134591968"}, "pid": "2242", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:17.758739 2024-09-11 09:02:17.758743 3ceec00f-3739-4cab-b26b-4919f9306d8d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134619102"}, "pid": "2243", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101069316"} 1 +2024-09-11 09:02:17.819426 2024-09-11 09:02:17.819429 ee4889ed-ab51-4f18-89b3-70eafd122a73 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134623487"}, "pid": "2244", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:27.717511 2024-09-11 09:02:27.717515 3f3b4e81-da3b-4f4f-860a-93c129b70ca3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140605304"}, "pid": "2398", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:17.089157 2024-09-11 09:06:25.387521 e7baef31-b706-4e88-a80d-398d508b4fa3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134321707"}, "pid": "2232", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002971659"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/07101120X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100392200"} 3 +2024-09-11 09:02:16.979502 2024-09-11 09:05:14.824851 779880dd-00cf-4f13-be8a-aa4aa4c7c020 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134274458"}, "pid": "2230", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/18530396X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11060751"} 2 +2024-09-11 09:02:16.698095 2024-09-11 09:06:20.342159 fc8f7be8-e47a-466d-88b7-dab809881dfb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/133999912"}, "pid": "2225", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000016955"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/08589320X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107598696"} 3 +2024-09-11 09:02:17.949868 2024-09-11 09:02:17.949872 e208ef66-3d8f-4244-920b-7a8186b1da23 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134678478"}, "pid": "2246", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:18.021135 2024-09-11 09:02:18.021139 fcfa81ad-1f9b-4050-86ba-bd848c107ab9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/13468706X"}, "pid": "2247", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:18.093522 2024-09-11 09:02:18.093525 e05fc4f3-403f-492e-932c-4b89668a42b5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134694031"}, "pid": "2248", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:18.158378 2024-09-11 09:02:18.158383 8485f6fb-b87f-46d4-a62e-c137396f38b5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134781821"}, "pid": "2249", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106045683"} 1 +2024-09-11 09:02:18.215772 2024-09-11 09:02:18.215776 b852d7e3-5cd6-4e8b-8b26-1afbaa14fcd6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134802993"}, "pid": "2250", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:18.277436 2024-09-11 09:02:18.27744 1cc0bb8f-ef8e-4b51-8d5f-e2f8cace5ced {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134805313"}, "pid": "2251", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:18.365509 2024-09-11 09:02:18.365513 fc98145a-d917-4685-badf-4c25db3434f8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134872223"}, "pid": "2252", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:18.441445 2024-09-11 09:02:18.44145 0bc387e7-c9a7-4b5e-987b-4d5231f9700a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/135012864"}, "pid": "2253", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:18.506705 2024-09-11 09:02:18.506708 af29e982-a258-45c2-a90f-54bd1d0297c4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/135074800"}, "pid": "2254", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:18.567747 2024-09-11 09:02:18.567752 16b25a5e-f74f-41a3-820e-bb5c8d40b0bc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/135203449"}, "pid": "2255", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:18.700001 2024-09-11 09:02:18.700004 397999e8-2a8b-49a8-93d4-d1117e1562ee {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/135270103"}, "pid": "2257", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:18.772059 2024-09-11 09:02:18.772061 92cdef0f-0d59-4a9b-8776-7a33880c6bcc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/135270413"}, "pid": "2258", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:18.828323 2024-09-11 09:02:18.828327 4c62125f-493b-4fc6-b095-6a196eb2dab3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/135374774"}, "pid": "2259", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:18.887506 2024-09-11 09:02:18.88751 7420dce1-1834-49b5-a566-9ec95f5357cc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/135580986"}, "pid": "2260", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:18.952741 2024-09-11 09:02:18.952746 03df7041-aca9-4044-967c-74e3665d9b18 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/135626498"}, "pid": "2261", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:19.028825 2024-09-11 09:02:19.028827 e7c07071-702a-4e7a-8777-3d5fa090e14e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/135627095"}, "pid": "2262", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:19.087315 2024-09-11 09:02:19.087318 d5755dc2-6050-4c0a-912f-6a91ad71aa12 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/135661234"}, "pid": "2263", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:19.148237 2024-09-11 09:02:19.14824 c91d0c75-3573-4751-9fd0-aa8dce61b90c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/135757452"}, "pid": "2264", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11071399"} 1 +2024-09-11 09:02:19.211873 2024-09-11 09:02:19.211877 a254bfe2-8080-43cc-a21c-09b458f6d988 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/13579000X"}, "pid": "2265", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:19.277561 2024-09-11 09:02:19.277565 3e6a9fa0-3bf9-40f0-969f-5b4ba025d3c0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/135835321"}, "pid": "2266", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:19.335994 2024-09-11 09:02:19.335997 13fdf4fa-c9ce-40c8-a4ff-79a2da7046dd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/135958245"}, "pid": "2267", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:19.463451 2024-09-11 09:02:19.463454 d80ab28c-1af1-4ba9-98ef-94c618717507 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/135973368"}, "pid": "2269", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:19.518793 2024-09-11 09:02:19.518798 b1e78f6a-18a1-4243-b0df-71c2c70c5e8e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/136148808"}, "pid": "2270", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:19.580559 2024-09-11 09:02:19.580561 26fd4e2d-184d-446b-95ba-f92af5c055b3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/136205275"}, "pid": "2271", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:19.643298 2024-09-11 09:02:19.643301 b9ed646a-cf39-4210-8b12-89767157b712 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/136380638"}, "pid": "2272", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100394433"} 1 +2024-09-11 09:06:32.302298 2024-09-11 09:06:32.302301 a3c6bf7f-bba8-4f86-8d5e-fba67255daa6 {"pid": "6148", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003250020"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:19.405874 2024-09-11 09:06:48.646108 a9c8b292-7507-487c-a49a-3283764ffdb0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/135961602"}, "pid": "2268", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003913856"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/056810741"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109453818"} 3 +2024-09-11 09:02:19.899542 2024-09-11 09:02:19.899546 eefb1e79-d5a7-43fc-aced-344f29cc8ae3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/136999271"}, "pid": "2276", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:17.885262 2024-09-11 09:08:00.884236 c5c60d76-d5d9-4e52-8d6e-b5ac963cef81 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/134624149"}, "pid": "2245", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027582518"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102471640"} 2 +2024-09-11 09:02:18.632264 2024-09-11 09:06:10.121513 22615210-7adb-43b4-a3eb-6fcab328c806 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/135226082"}, "pid": "2256", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/258266457"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100319661"} 2 +2024-09-11 09:06:32.362444 2024-09-11 09:06:32.362448 c025226e-2744-41d3-89ee-dc57d663ab56 {"pid": "6149", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003250278"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:20.026859 2024-09-11 09:02:20.026862 b0a57183-258a-43b3-8db6-9c616f77c52e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/137111223"}, "pid": "2278", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:20.082985 2024-09-11 09:02:20.082988 c5b91489-ab66-484f-b731-ec6208e218ce {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/137241348"}, "pid": "2279", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:32.418616 2024-09-11 09:06:32.41862 f3274764-67d6-4aaf-b53f-d7d2047bdadd {"pid": "6150", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003250343"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:20.201068 2024-09-11 09:02:20.20107 75105f4c-642c-4787-a39f-ab3225937881 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/137500750"}, "pid": "2281", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:20.282891 2024-09-11 09:02:20.282893 8759bb72-99da-4ec7-9fab-17a3721c180c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/137858825"}, "pid": "2282", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100905048"} 1 +2024-09-11 09:02:20.393274 2024-09-11 09:02:20.393278 03135554-96d0-422b-973f-1491e07779f6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/138374732"}, "pid": "2284", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:20.450971 2024-09-11 09:02:20.450973 32bb6879-bc3f-437a-9b4e-e7380e41902e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/138598010"}, "pid": "2285", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:20.569063 2024-09-11 09:02:20.569067 1d7e59ea-bd7f-45a6-a044-cf8d85c68d26 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139094342"}, "pid": "2287", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100403360"} 1 +2024-09-11 09:02:20.629352 2024-09-11 09:02:20.629355 078fe9e8-85cf-48f9-b3d9-80ff96fb7a69 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139117091"}, "pid": "2288", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100423737"} 1 +2024-09-11 09:02:20.68819 2024-09-11 09:02:20.688193 637d2e13-3024-478c-92f1-128ad2ad6784 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139120629"}, "pid": "2289", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:20.799795 2024-09-11 09:02:20.799798 6efde258-ae51-4db9-b368-37545aac06d1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139134816"}, "pid": "2291", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:20.85836 2024-09-11 09:02:20.858364 f7a8519d-de6d-47f2-ac43-61aa3e95ea78 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139173544"}, "pid": "2292", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100472797"} 1 +2024-09-11 09:02:20.912861 2024-09-11 09:02:20.912865 7bfac9f0-e635-43ea-9c9a-507998a0446d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139180060"}, "pid": "2293", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:20.969388 2024-09-11 09:02:20.969391 5cfe059c-49a6-40c8-9d01-406408de8981 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139196269"}, "pid": "2294", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:21.042667 2024-09-11 09:02:21.04267 c0f60c0b-185b-4a40-b327-218ec659ff15 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139204105"}, "pid": "2295", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100499626"} 1 +2024-09-11 09:02:21.335973 2024-09-11 09:02:21.335978 d9926126-ea25-45ef-a9a4-804db98597a6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139268456"}, "pid": "2297", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100556271"} 1 +2024-09-11 09:02:21.443652 2024-09-11 09:02:21.443657 43045218-6671-4f0e-9754-caaec951c406 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139284575"}, "pid": "2298", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:21.728535 2024-09-11 09:02:21.728538 f9f0eb43-f364-4ea3-8a6c-e2e15e2402cd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139289690"}, "pid": "2300", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:21.861187 2024-09-11 09:02:21.861189 dcb99593-ccd1-4f00-a0a7-dc56695289fd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139310991"}, "pid": "2301", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:22.004883 2024-09-11 09:02:22.004885 5b0de0ed-107a-4803-beae-4e2c47bab3b3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139317783"}, "pid": "2302", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100599094"} 1 +2024-09-11 09:02:22.149677 2024-09-11 09:02:22.14968 90fcefd2-8a99-415b-be46-bd5ad2602825 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139334114"}, "pid": "2303", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100613196"} 1 +2024-09-11 09:02:22.216275 2024-09-11 09:02:22.216279 7573b759-c590-49bf-9eac-180e11f713ac {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139350101"}, "pid": "2304", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101100842"} 1 +2024-09-11 09:02:22.271906 2024-09-11 09:02:22.271909 2b39ff20-21ab-417c-a445-6ad0488f61a3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139361405"}, "pid": "2305", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:22.333683 2024-09-11 09:02:22.333686 e401a679-6a89-4792-adc9-0f7915a1e2c8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139376119"}, "pid": "2306", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101123568"} 1 +2024-09-11 09:02:20.342124 2024-09-11 09:07:15.382621 355d378a-c96e-4c9c-850a-61e188138367 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/138127948"}, "pid": "2283", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013796408"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1131155042714072401024"} 2 +2024-09-11 09:02:20.747505 2024-09-11 09:07:29.927143 cd44f94f-a6f0-46aa-bed8-8d2a6b2851bc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139128557"}, "pid": "2290", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A019010974"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/110185366"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100433538"} 3 +2024-09-11 09:02:20.511143 2024-09-11 09:04:51.167597 5d604248-42c4-4381-850f-97befcb61753 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/13902185X"}, "pid": "2286", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/14577838X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107974698"} 2 +2024-09-11 09:02:22.46301 2024-09-11 09:02:22.463014 75faceb6-da4f-4d76-b379-11dbb85ef64c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/13938233X"}, "pid": "2308", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101128969"} 1 +2024-09-11 09:02:22.530403 2024-09-11 09:02:22.530405 51db655a-e0b0-4754-8320-d0d84b30890d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139383050"}, "pid": "2309", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101129580"} 1 +2024-09-11 09:02:22.582784 2024-09-11 09:02:22.582788 b5c0164e-c5c8-4f6b-a843-2fa2e6ae3606 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139418598"}, "pid": "2310", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:32.471865 2024-09-11 09:06:32.471867 52df39a0-1869-441a-85f7-4a271e3390e9 {"pid": "6151", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003250353"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:22.753534 2024-09-11 09:02:22.753537 5505fdd6-dfbf-4fa3-b356-26cd7801c272 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/13943237X"}, "pid": "2313", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:22.812601 2024-09-11 09:02:22.812606 7872380d-2e8e-46d7-a802-0fc95c362c92 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139480056"}, "pid": "2314", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101214945"} 1 +2024-09-11 09:02:22.865252 2024-09-11 09:02:22.865257 cefca21e-80db-410f-bf7a-eed1e61668bb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139503072"}, "pid": "2315", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:22.919148 2024-09-11 09:02:22.919151 42bdc462-202d-4ef9-a8fe-ca133813d1c1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139512950"}, "pid": "2316", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:22.979074 2024-09-11 09:02:22.979079 8e175827-a876-4f04-9a7d-ce423da54e38 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139535489"}, "pid": "2317", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101264445"} 1 +2024-09-11 09:02:23.173157 2024-09-11 09:02:23.173161 b5050cc5-fa6f-4273-a405-d95841225851 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139546979"}, "pid": "2320", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101274741"} 1 +2024-09-11 09:02:23.236994 2024-09-11 09:02:23.236998 a0bc14b9-5ef9-4aab-90e4-748f5dc1a2bd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139612483"}, "pid": "2321", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101333943"} 1 +2024-09-11 09:02:23.301871 2024-09-11 09:02:23.301875 9eb8f2b6-356d-47e2-9e81-a99ffd23356f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139621156"}, "pid": "2322", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101341511"} 1 +2024-09-11 09:02:23.361609 2024-09-11 09:02:23.361614 3fab5daa-79e0-402b-baf7-a87c26e00c94 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139621652"}, "pid": "2323", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101341962"} 1 +2024-09-11 09:06:32.525873 2024-09-11 09:06:32.525875 3269e595-7924-427f-9986-4bf2e1e1ad52 {"pid": "6152", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003251379"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:23.659266 2024-09-11 09:02:23.659269 68d4cb32-2903-4fa8-b494-c6cb3bf0f19d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139649263"}, "pid": "2328", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102512527"} 1 +2024-09-11 09:02:23.714845 2024-09-11 09:02:23.714847 c7730f49-807c-47fb-a408-127f5b29bb57 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139654526"}, "pid": "2329", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102517153"} 1 +2024-09-11 09:02:23.772709 2024-09-11 09:02:23.772713 dd5b3a34-2bb0-4006-8ae1-6df524952fed {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139655395"}, "pid": "2330", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102517928"} 1 +2024-09-11 09:02:23.82727 2024-09-11 09:02:23.827273 0695bbc7-81ab-4a33-9bdd-0614310d5237 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139659382"}, "pid": "2331", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:23.898374 2024-09-11 09:02:23.898376 bdc446f3-6821-47da-9b75-c3146e906409 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139668136"}, "pid": "2332", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102529187"} 1 +2024-09-11 09:02:23.952272 2024-09-11 09:02:23.952275 2b5665c4-472d-41d5-bcc0-003ac4bacc07 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139695125"}, "pid": "2333", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:24.012981 2024-09-11 09:02:24.012985 2a0c8faa-9b2d-4e59-b487-41f0fa3ab7aa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139705104"}, "pid": "2334", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102561587"} 1 +2024-09-11 09:02:24.125301 2024-09-11 09:02:24.125305 8ace0b69-6570-41ae-8026-9c928a76de8c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139708669"}, "pid": "2336", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102564755"} 1 +2024-09-11 09:02:24.069746 2024-09-11 09:07:00.936702 7531ca83-eedd-46a6-b65f-e240708b4d2c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139708162"}, "pid": "2335", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011817228"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102564304"} 2 +2024-09-11 09:02:23.600834 2024-09-11 09:07:33.716004 47dfa011-6d16-486d-b2b7-5b3f81642548 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139630147"}, "pid": "2327", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021514179"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/156335336"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101349261"} 3 +2024-09-11 09:02:23.485277 2024-09-11 09:04:46.490897 83fdc94c-4315-44b3-9cc0-60a453ab9015 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139626417"}, "pid": "2325", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/137773927"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101345977"} 2 +2024-09-11 09:02:23.038368 2024-09-11 09:04:50.964195 81d5fe9f-c06a-42d6-9bb1-c5d137223148 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139542043"}, "pid": "2318", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/145661806"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101270231"} 2 +2024-09-11 09:02:23.108243 2024-09-11 09:06:04.17178 f3101d90-6d15-43c4-b94e-46ae6e20c5f0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/13954402X"}, "pid": "2319", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25394144X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101272013"} 2 +2024-09-11 09:02:03.146669 2024-09-11 09:06:32.596211 82c7b240-e94f-4774-84dd-5025b31c4281 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/12465164X"}, "pid": "1988", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003256978"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/265836905"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109122707"} 3 +2024-09-11 09:02:24.298567 2024-09-11 09:02:24.298571 b4a4ebbc-71cb-4b7b-afa3-7c0b0f2f95aa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139717676"}, "pid": "2339", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102572774"} 1 +2024-09-11 09:02:24.353578 2024-09-11 09:02:24.353581 9becb309-3592-4dc5-95c4-dbc5dbaa95d4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139733256"}, "pid": "2340", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:24.429232 2024-09-11 09:02:24.429235 4614bb38-6503-4446-8481-16dcbecb4014 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/13976674X"}, "pid": "2341", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102616054"} 1 +2024-09-11 09:02:24.552129 2024-09-11 09:02:24.552132 226ae9b1-0579-47e6-8c97-91321e8ed935 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139774807"}, "pid": "2343", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:24.626229 2024-09-11 09:02:24.626234 869945b9-6e48-483f-ab21-e27b41727731 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139794204"}, "pid": "2344", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102640435"} 1 +2024-09-11 09:02:24.687867 2024-09-11 09:02:24.68787 288994e4-efd8-4aa4-864b-0e9c170ade92 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139796282"}, "pid": "2345", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102642217"} 1 +2024-09-11 09:02:24.737727 2024-09-11 09:02:24.737731 ecd3cc82-f7aa-4c2e-bf50-dd9f27070837 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139822542"}, "pid": "2346", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:24.793134 2024-09-11 09:02:24.793139 ecdb1b97-6114-4daf-8ac0-d28df32b7245 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/13983043X"}, "pid": "2347", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102672115"} 1 +2024-09-11 09:02:24.904599 2024-09-11 09:02:24.904603 d7e35802-27c3-4607-95f8-00238152d5c3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139863915"}, "pid": "2349", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102702030"} 1 +2024-09-11 09:02:24.961291 2024-09-11 09:02:24.961295 990ef6aa-b4f4-4a6f-9730-854a178ffa07 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139875484"}, "pid": "2350", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102712282"} 1 +2024-09-11 09:02:25.01363 2024-09-11 09:02:25.013634 49c0d56b-74d2-4b2a-bbfb-1ec6208404b3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139879994"}, "pid": "2351", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:25.071729 2024-09-11 09:02:25.071732 c6e718c5-e4ca-46a0-ba56-9f16b7a55fbd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139889345"}, "pid": "2352", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102724360"} 1 +2024-09-11 09:02:25.127262 2024-09-11 09:02:25.127266 f421b344-ce07-4f3d-a0be-63955265a8bb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139894535"}, "pid": "2353", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102728870"} 1 +2024-09-11 09:02:25.18123 2024-09-11 09:02:25.181234 f40c0a48-246f-4033-8af0-363aff4cf2ba {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139894977"}, "pid": "2354", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:25.234242 2024-09-11 09:02:25.234245 154d1679-3f1e-48ae-a350-0bf36e34dc1e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139925988"}, "pid": "2355", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:25.290496 2024-09-11 09:02:25.290499 484b70c9-ef8c-42a1-a433-59e7a6eb0028 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139939415"}, "pid": "2356", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:25.349058 2024-09-11 09:02:25.349061 ffc29141-bdb6-4d36-ab5f-5d2f0a3e3211 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139942920"}, "pid": "2357", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103267303"} 1 +2024-09-11 09:02:25.407398 2024-09-11 09:02:25.4074 3d275637-a5ea-4212-ab48-1b95b8f5e0b6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139946144"}, "pid": "2358", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103269987"} 1 +2024-09-11 09:02:25.470257 2024-09-11 09:02:25.470261 2495f2f8-ae8f-4596-8939-504f8d4ed99b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139952179"}, "pid": "2359", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103275278"} 1 +2024-09-11 09:02:25.58583 2024-09-11 09:02:25.585834 6f513426-958a-4a7a-9d02-3a56e3ece173 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139974199"}, "pid": "2361", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103294484"} 1 +2024-09-11 09:02:25.650331 2024-09-11 09:02:25.650334 9c9624ad-7415-4b1f-8282-45d96def0d51 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/14006253X"}, "pid": "2362", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:25.70554 2024-09-11 09:02:25.705544 c3566cef-49fb-4c7d-a1ed-b0c45336afdc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140091319"}, "pid": "2363", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103397444"} 1 +2024-09-11 09:02:25.763944 2024-09-11 09:02:25.763948 dcd4f32e-69c6-4873-a863-8acdee41d754 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140093427"}, "pid": "2364", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:25.820912 2024-09-11 09:02:25.820917 8645c534-03bd-4a9d-b5b7-faed2bfbad7d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/14010657X"}, "pid": "2365", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103410655"} 1 +2024-09-11 09:02:25.944463 2024-09-11 09:02:25.944467 ba272faf-feb4-4ef9-93f1-3751b62c4570 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140132872"}, "pid": "2367", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:24.849181 2024-09-11 09:05:04.618943 13f7505e-9f58-4a32-bc49-117b13f22771 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139856072"}, "pid": "2348", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/162154224"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102694940"} 2 +2024-09-11 09:02:25.526135 2024-09-11 09:05:28.679484 8e0a20b0-689c-48b7-b98c-d0726fcdcfbb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139961968"}, "pid": "2360", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/202681793"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103283792"} 2 +2024-09-11 09:02:26.004576 2024-09-11 09:02:26.00458 c813d964-ca5c-44cc-bedb-0ad048ea6e46 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140142622"}, "pid": "2368", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103442335"} 1 +2024-09-11 09:02:26.06018 2024-09-11 09:02:26.060183 0f3e4d7e-8735-4ba5-8a8e-29ac30e8d87e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/14016815X"}, "pid": "2369", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103715152"} 1 +2024-09-11 09:02:26.119008 2024-09-11 09:02:26.119013 f19e17b5-18e1-417a-a304-df9dcbeec927 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140169016"}, "pid": "2370", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:26.178999 2024-09-11 09:02:26.179004 0378fd2b-e758-4c62-9484-eba3b3bfbdfe {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140234381"}, "pid": "2371", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:26.236613 2024-09-11 09:02:26.236616 a88531ee-27f5-455a-bdf4-a68298ee7697 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140306412"}, "pid": "2372", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103836707"} 1 +2024-09-11 09:02:26.288627 2024-09-11 09:02:26.28863 00ee06e7-9101-435b-9b19-02b29168caf0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140322140"}, "pid": "2373", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:26.348619 2024-09-11 09:02:26.348623 e10a4089-50ca-46de-ba94-193ebece5d81 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140322213"}, "pid": "2374", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103850512"} 1 +2024-09-11 09:02:26.402758 2024-09-11 09:02:26.402766 652183e4-ca8e-426a-8c71-7bb511deb4f2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140327126"}, "pid": "2375", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:32.665817 2024-09-11 09:06:32.665823 73cce97e-5902-4145-a39b-8a6d9828e0bc {"pid": "6153", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003259324"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:26.509525 2024-09-11 09:02:26.509529 e562f83a-ac05-4e50-910b-421b89035572 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140330720"}, "pid": "2377", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107443101"} 1 +2024-09-11 09:02:26.575816 2024-09-11 09:02:26.575819 383bb2da-6b86-47cb-acfd-045a9cc46f08 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140338683"}, "pid": "2378", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103865219"} 1 +2024-09-11 09:02:26.629252 2024-09-11 09:02:26.629255 de429e47-af51-4be4-ab49-00a8ba39a9b0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140345884"}, "pid": "2379", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:26.690446 2024-09-11 09:02:26.690448 c7a25b48-4736-47b0-8576-d81000962982 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140416919"}, "pid": "2380", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107118733"} 1 +2024-09-11 09:02:26.745714 2024-09-11 09:02:26.745719 f3c94666-eee1-49a0-8c2f-e5437cae479d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140419799"}, "pid": "2381", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:26.853489 2024-09-11 09:02:26.853496 3ae4632b-a7e6-483a-b8b0-c132640032fa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/14043917X"}, "pid": "2383", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:26.907091 2024-09-11 09:02:26.907094 0edb1768-e1cd-47d7-8acc-4384566b07f0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140458123"}, "pid": "2384", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:26.96474 2024-09-11 09:02:26.964744 fbf127cf-c14c-41a3-a6f2-0f22e10f386f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/14046090X"}, "pid": "2385", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107157046"} 1 +2024-09-11 09:02:27.02063 2024-09-11 09:02:27.020632 afe9ff80-049d-4e5c-bf00-1d7a7c25e26d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140469923"}, "pid": "2386", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107165065"} 1 +2024-09-11 09:02:27.076544 2024-09-11 09:02:27.076547 24bd66b0-8cdd-4868-a143-4e8c1b3a9c60 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140489096"}, "pid": "2387", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107181878"} 1 +2024-09-11 09:02:27.126705 2024-09-11 09:02:27.12671 5d44c1d2-a6c7-4c3a-88f5-c8062005df07 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140490841"}, "pid": "2388", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:27.188003 2024-09-11 09:02:27.188006 98957b9f-2fd1-4397-bb9a-c8c6dad3d22f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140499024"}, "pid": "2389", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107190337"} 1 +2024-09-11 09:02:27.241164 2024-09-11 09:02:27.241168 108cc9b5-4911-4a02-bfde-73a2fd3370ea {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140500634"}, "pid": "2390", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107191679"} 1 +2024-09-11 09:02:27.295118 2024-09-11 09:02:27.295121 ad18e0cb-d807-4d06-91a2-0c2809cf9108 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140540830"}, "pid": "2391", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:27.346427 2024-09-11 09:02:27.346429 f4455956-9032-49fe-9bb8-ec7e2e2d8df3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140543503"}, "pid": "2392", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107228821"} 1 +2024-09-11 09:02:27.395603 2024-09-11 09:02:27.395606 4ecb961d-cab6-40b9-b67f-5ceb4e4b1dbb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/14055260X"}, "pid": "2393", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107236840"} 1 +2024-09-11 09:02:27.528543 2024-09-11 09:02:27.528546 20a98553-26d7-4153-b37b-898ec7138103 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140564306"}, "pid": "2395", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107247037"} 1 +2024-09-11 09:02:27.60486 2024-09-11 09:02:27.604863 875b28e1-0eb9-42b5-b195-1d7ef578e205 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140580204"}, "pid": "2396", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107260726"} 1 +2024-09-11 09:02:27.664207 2024-09-11 09:02:27.664209 23d88c3f-a84d-4eb7-b3bf-35df1e53e3cf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140595716"}, "pid": "2397", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:26.803321 2024-09-11 09:05:11.114953 1786e33e-e447-4408-94bb-a0f47b0b7004 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140424873"}, "pid": "2382", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/177081724"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107125861"} 2 +2024-09-11 09:02:27.769519 2024-09-11 09:02:27.769522 a1b388bb-640d-4e39-966f-4db8725524a6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140623388"}, "pid": "2399", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107297807"} 1 +2024-09-11 09:02:27.819155 2024-09-11 09:02:27.819159 3d9ecc04-435f-4eb9-abfe-d61a59787f12 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140655387"}, "pid": "2400", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:27.869089 2024-09-11 09:02:27.869093 b7935e4f-f6bd-4d8b-86e1-846405b4feb2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140665927"}, "pid": "2401", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:27.923404 2024-09-11 09:02:27.923408 f7865e46-d420-4182-8f0e-db6116537860 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140671153"}, "pid": "2402", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107674420"} 1 +2024-09-11 09:02:27.987014 2024-09-11 09:02:27.987017 b52886ac-dd13-484d-99dd-a2f5733af739 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140699562"}, "pid": "2403", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107698983"} 1 +2024-09-11 09:02:28.044181 2024-09-11 09:02:28.044185 530567ec-bf78-4358-9ace-a3d138e8887a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140703063"}, "pid": "2404", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:28.102544 2024-09-11 09:02:28.10255 22416db2-4ba9-407e-b3e1-1ea3ca7e7204 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140707921"}, "pid": "2405", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:28.197439 2024-09-11 09:02:28.197444 adfbfe86-0f85-4105-a9f0-c51475125057 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140723269"}, "pid": "2406", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107719042"} 1 +2024-09-11 09:02:28.261267 2024-09-11 09:02:28.261271 3099e95e-ba75-4008-abb5-5304bb175b7a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140724656"}, "pid": "2407", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107720202"} 1 +2024-09-11 09:02:28.323708 2024-09-11 09:02:28.323711 39149233-64a7-46ae-bfed-dcd9d57c41eb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140749195"}, "pid": "2408", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107741641"} 1 +2024-09-11 09:06:32.721797 2024-09-11 09:06:32.721799 2583fb5f-e0d6-4d8e-900d-d8509f4c346c {"pid": "6154", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003259363"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:28.437789 2024-09-11 09:02:28.437792 655bc506-5846-42fc-9152-82454de4cec7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140751149"}, "pid": "2410", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107743379"} 1 +2024-09-11 09:02:28.496532 2024-09-11 09:02:28.496536 d1824d58-5a3d-4e89-a092-f50b0f5475f1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140764143"}, "pid": "2411", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107754610"} 1 +2024-09-11 09:02:28.55502 2024-09-11 09:02:28.555023 da9df26f-69af-4642-8df3-0003147d6a78 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140781498"}, "pid": "2412", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:28.606872 2024-09-11 09:02:28.606875 c5d2971d-94c5-410e-82f8-e2d2c8595360 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140791434"}, "pid": "2413", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:28.673133 2024-09-11 09:02:28.673136 fa3446a8-b0fc-4a29-b955-27061acaf6dc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140807268"}, "pid": "2414", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107791592"} 1 +2024-09-11 09:02:28.740996 2024-09-11 09:02:28.741 f531bcf9-c1b3-43cf-bcd1-dc2219ed29bd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140808337"}, "pid": "2415", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107792483"} 1 +2024-09-11 09:02:28.796616 2024-09-11 09:02:28.796619 1ac959b7-d963-4a9e-a161-2334df2c55e2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140818197"}, "pid": "2416", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:28.853788 2024-09-11 09:02:28.853792 c4cfacb7-0d8f-47c0-896f-94630862dd83 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140835822"}, "pid": "2417", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107816161"} 1 +2024-09-11 09:02:28.914634 2024-09-11 09:02:28.914639 dd84e836-ef67-4887-8c8c-767407e3d9a7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140848363"}, "pid": "2418", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107826737"} 1 +2024-09-11 09:02:28.968456 2024-09-11 09:02:28.968459 2119212f-6972-4017-a1e4-8a6aa28da43f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140849963"}, "pid": "2419", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107828195"} 1 +2024-09-11 09:02:29.122924 2024-09-11 09:02:29.122927 62bdaf7c-a92f-43a9-8613-0a9d666f94fb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140890335"}, "pid": "2422", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:29.187698 2024-09-11 09:02:29.187701 9ddf4d74-ed96-4057-adea-b7cff1a715ba {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140891420"}, "pid": "2423", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107864203"} 1 +2024-09-11 09:02:29.246663 2024-09-11 09:02:29.246666 77ecfd46-6ecc-4b14-94c0-153232be2055 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140897933"}, "pid": "2424", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107869604"} 1 +2024-09-11 09:02:29.30661 2024-09-11 09:02:29.306612 3c06efb9-682d-47b8-9a49-c611546f50f9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140930531"}, "pid": "2425", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107897676"} 1 +2024-09-11 09:02:29.359603 2024-09-11 09:02:29.359607 396f201a-dbf6-4af2-aced-ddc4afee9aed {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140948317"}, "pid": "2426", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:29.418441 2024-09-11 09:02:29.418445 0c1695c1-626e-4f7e-a66f-64d35834f0ee {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140952012"}, "pid": "2427", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:29.473696 2024-09-11 09:02:29.473699 c476a33c-5e25-4f6f-8f20-d1dcdc709d4f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140952985"}, "pid": "2428", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:29.021758 2024-09-11 09:04:32.166981 98c10617-0820-4b43-8f53-b5b495edfe41 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/14085200X"}, "pid": "2420", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/108510638"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107829905"} 2 +2024-09-11 09:02:29.075483 2024-09-11 09:04:52.770291 74e74b8f-29b4-4360-920a-1f6bf87c7236 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/14085603X"}, "pid": "2421", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/147906423"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107833414"} 2 +2024-09-11 09:02:29.526666 2024-09-11 09:02:29.52667 96a3c4fe-b271-465e-ac88-0aaa2e9613a7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140960597"}, "pid": "2429", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:29.578552 2024-09-11 09:02:29.578556 7f1247c1-c15e-4be0-91ad-aa4a54f2c3bb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140974571"}, "pid": "2430", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:29.62848 2024-09-11 09:02:29.628483 a544f871-177b-4658-8f43-466f48fda67a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/14098643X"}, "pid": "2431", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:29.680266 2024-09-11 09:02:29.68027 cc7e9815-4603-47e2-9046-6b440d40dea8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140996524"}, "pid": "2432", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:29.735273 2024-09-11 09:02:29.735275 e78156d4-e4cf-41b9-89cd-7614d4e4d348 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141011491"}, "pid": "2433", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:29.787736 2024-09-11 09:02:29.787741 610c9db8-40e1-42d0-8dd8-ce297ee16d26 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141030771"}, "pid": "2434", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:29.847165 2024-09-11 09:02:29.847169 212517ad-c861-40a9-a277-04873a0a4e7d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141129271"}, "pid": "2435", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:29.89734 2024-09-11 09:02:29.897343 37d70371-0661-45ca-b421-c8cdb160ad37 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141136618"}, "pid": "2436", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:29.94911 2024-09-11 09:02:29.949114 ad54bcb2-1ba5-4f5e-86e1-affb40757830 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141153067"}, "pid": "2437", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:30.006005 2024-09-11 09:02:30.006008 e30bd113-bd6b-4995-a032-56e9d75398ab {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141169818"}, "pid": "2438", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:32.774015 2024-09-11 09:06:32.774019 c6da942a-1af5-43eb-9914-40466b0900b1 {"pid": "6155", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003261984"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:30.126575 2024-09-11 09:02:30.12658 7d3b71f5-7bc2-4e68-94ee-582caf7a5a34 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141195428"}, "pid": "2440", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:32.829044 2024-09-11 09:06:32.829048 53f27aa2-0e15-439c-ad6a-906382526847 {"pid": "6156", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003262188"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:30.257009 2024-09-11 09:02:30.257014 d2e293d4-4486-4f96-be68-6df6bf9d6fc5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141222042"}, "pid": "2442", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:30.311449 2024-09-11 09:02:30.311454 44a1446e-c9a8-44fd-b93d-77ee776acb83 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141231742"}, "pid": "2443", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:30.362558 2024-09-11 09:02:30.362561 efc327fd-feef-4b8a-9552-2f85f1f12ba9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141248408"}, "pid": "2444", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:30.413893 2024-09-11 09:02:30.413898 a206a9ba-5efb-4a93-b682-5f1965070c21 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141327588"}, "pid": "2445", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:30.468485 2024-09-11 09:02:30.468488 1846e918-f846-4dd2-a909-f2a3f3157e60 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141339942"}, "pid": "2446", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:30.51777 2024-09-11 09:02:30.517775 c891641b-00b6-4d7a-9945-1daa16a58d2d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141354240"}, "pid": "2447", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:30.573183 2024-09-11 09:02:30.573186 36cd5921-ddad-4be4-ad40-c612f575a77c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141363193"}, "pid": "2448", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:30.630509 2024-09-11 09:02:30.630512 3d42e770-9800-4953-ba9a-0bafec3370a1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141373741"}, "pid": "2449", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:30.693104 2024-09-11 09:02:30.69311 1177a969-9dfe-45f6-8c7f-87bf60273b55 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141395362"}, "pid": "2450", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:30.750274 2024-09-11 09:02:30.750277 9ec76c65-63ea-41ae-96c0-c118aadf1871 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141454679"}, "pid": "2451", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:30.814559 2024-09-11 09:02:30.814561 9dc1326f-2bb0-41ae-91f3-aa65eee40492 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141463740"}, "pid": "2452", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:30.86995 2024-09-11 09:02:30.869953 e391daa3-e433-49c9-b67d-631564d9658b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141475366"}, "pid": "2453", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:30.923271 2024-09-11 09:02:30.923274 16c87971-474e-492e-8871-8ac4b57d049c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/14151289X"}, "pid": "2454", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:30.988914 2024-09-11 09:02:30.988917 04d386b7-c9f2-4ae7-b5ff-987589939313 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141518707"}, "pid": "2455", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:31.057987 2024-09-11 09:02:31.057991 d1dfef07-c8a8-4b28-8dbc-0f63b36c1c07 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141531142"}, "pid": "2456", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:31.122505 2024-09-11 09:02:31.122507 d9bf9d8b-2d96-44f7-9ec1-ee4f890c7b4c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141546891"}, "pid": "2457", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:31.174465 2024-09-11 09:02:31.174468 692b9fbb-3088-4c03-b36a-9897702c7b62 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141569344"}, "pid": "2458", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:31.227522 2024-09-11 09:02:31.227525 addb0bea-b297-44cd-9265-e3f91e829b2c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141630531"}, "pid": "2459", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:31.27945 2024-09-11 09:02:31.279454 abbf607f-7fa8-4142-80cd-1443f1a973cd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141639490"}, "pid": "2460", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:31.337004 2024-09-11 09:02:31.337007 79286467-ed07-4e11-9739-8683ed502cef {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141657278"}, "pid": "2461", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:31.390545 2024-09-11 09:02:31.390547 5252ccb0-d5f5-4ea9-9ada-b7097ed29902 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/14167220X"}, "pid": "2462", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:31.444346 2024-09-11 09:02:31.44435 0034d71a-dada-42f6-a92d-240b9cee46aa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141675330"}, "pid": "2463", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:31.496954 2024-09-11 09:02:31.496957 a490033b-c315-4b25-9ad3-e63cadbc7802 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141707151"}, "pid": "2464", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:31.55274 2024-09-11 09:02:31.552743 e6cad635-b0e6-4389-8e71-a01b83a0ed68 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141709499"}, "pid": "2465", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:31.631554 2024-09-11 09:02:31.631557 c6f7f5ce-52da-44fc-bb57-18c46a9d3d8e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141752025"}, "pid": "2466", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:31.687369 2024-09-11 09:02:31.687373 1cd0d83c-7cb9-423b-9624-69689affa0d6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141780940"}, "pid": "2467", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:31.758136 2024-09-11 09:02:31.75814 bc12850e-4be9-49c5-a246-6fe74eabb1e9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141801689"}, "pid": "2468", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107978801"} 1 +2024-09-11 09:02:31.812209 2024-09-11 09:02:31.812212 5bfc7ac8-41bf-4294-9ed2-136a0321d9d7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141820209"}, "pid": "2469", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:31.864511 2024-09-11 09:02:31.864514 4caef9c5-c0b8-499b-939f-6e046b6c9305 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141833475"}, "pid": "2470", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:31.918824 2024-09-11 09:02:31.918828 d15e2c12-07bf-4edb-8085-9a15ce6a1da2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141839422"}, "pid": "2471", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:31.983235 2024-09-11 09:02:31.983239 3ed7c68c-5753-4479-be34-d52925945db5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141851910"}, "pid": "2472", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:32.038797 2024-09-11 09:02:32.038801 b6df5e18-4d75-48b6-8212-c140fb099f72 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141864893"}, "pid": "2473", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:32.093305 2024-09-11 09:02:32.093309 a76171a0-c4c2-4381-8b6c-477cefce1d04 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141874325"}, "pid": "2474", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:32.145445 2024-09-11 09:02:32.145448 04a6e2bd-029b-4472-b070-2386b74c97a7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141919558"}, "pid": "2475", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:32.198776 2024-09-11 09:02:32.198778 4f7bc5ce-fa4a-4c72-b281-4c7cdeb185e2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141944447"}, "pid": "2476", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:32.249798 2024-09-11 09:02:32.249802 390a43f1-3404-481f-a154-f82052916dad {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/14194479X"}, "pid": "2477", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:32.305887 2024-09-11 09:02:32.30589 b3cd85be-04fa-47c6-89bc-a36414944e8b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141961406"}, "pid": "2478", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:32.36926 2024-09-11 09:02:32.369263 be2d67da-453f-4e25-8de6-358e5385cf2a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141969016"}, "pid": "2479", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:32.420425 2024-09-11 09:02:32.420428 b608ffd9-25e5-407d-8250-a5b117c68ec0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141980516"}, "pid": "2480", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:32.477599 2024-09-11 09:02:32.477603 26939802-eb85-4b48-8823-6480791b4ddb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/14198970X"}, "pid": "2481", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:32.539431 2024-09-11 09:02:32.539434 b992e991-23b1-4833-ac12-e5a5fea27763 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141990600"}, "pid": "2482", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:32.598157 2024-09-11 09:02:32.59816 237a6870-0e3a-4991-ae2f-f5b77096e3e5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142004634"}, "pid": "2483", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:32.647688 2024-09-11 09:02:32.647692 9ce4d1ca-9f67-4d98-9344-be70f83c8305 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142042544"}, "pid": "2484", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:32.698461 2024-09-11 09:02:32.698465 82eb03f3-a438-4eca-b460-6e559f149a2b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142047465"}, "pid": "2485", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:32.749955 2024-09-11 09:02:32.749959 28b940ff-4b97-44d8-9144-b25cb0fc621d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142047678"}, "pid": "2486", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:32.838249 2024-09-11 09:02:32.838252 8d6b2d0d-a4d2-45fc-a4d1-2cb348e5f127 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142098256"}, "pid": "2487", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:32.892239 2024-09-11 09:02:32.892243 e6aa54e6-be53-427d-824f-5a262f835036 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142138894"}, "pid": "2488", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:32.951192 2024-09-11 09:02:32.951195 a999fc58-0879-433b-976f-11343490ca61 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142174610"}, "pid": "2489", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:33.008597 2024-09-11 09:02:33.008601 fd0d65b1-580f-497a-913c-e21cef8873e1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142191663"}, "pid": "2490", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:33.102766 2024-09-11 09:02:33.102768 4f7d5dac-7145-42e7-9559-09724147399a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142206725"}, "pid": "2491", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:33.155765 2024-09-11 09:02:33.155768 f467203b-7b0a-40d6-9afe-cc0c40484e70 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142208035"}, "pid": "2492", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:33.211288 2024-09-11 09:02:33.211293 52b6563d-a734-4045-b58f-2c9e6d038a4b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142211117"}, "pid": "2493", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:33.266514 2024-09-11 09:02:33.266517 15c30cc3-8a9b-49e3-8606-ff1b94e90ac3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142218685"}, "pid": "2494", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:33.324821 2024-09-11 09:02:33.324826 af473322-651a-4a80-8d96-9c2a6221cf36 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142233307"}, "pid": "2495", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:33.392802 2024-09-11 09:02:33.392805 6e536bd2-59c8-4bdd-be2b-39493f1f6c1c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142248010"}, "pid": "2496", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:33.443698 2024-09-11 09:02:33.443701 f43cfab9-fe42-4169-be51-f5eb728552bd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142254193"}, "pid": "2497", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:33.498395 2024-09-11 09:02:33.4984 5bb9421c-f095-468d-beb3-8a77b631e5fc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142291684"}, "pid": "2498", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:33.547984 2024-09-11 09:02:33.547989 858304f1-f280-4f78-bd5b-1a62d987e2a7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142310778"}, "pid": "2499", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:33.617621 2024-09-11 09:02:33.617623 07449379-6620-43a3-9353-9de2046324eb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142328588"}, "pid": "2500", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:33.679357 2024-09-11 09:02:33.679361 b1797ae6-50fd-47ce-9268-c30efd5c852a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142468614"}, "pid": "2501", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:33.737722 2024-09-11 09:02:33.737726 2f0621d4-15da-4b6c-9056-c33874ebf17b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/14250923X"}, "pid": "2502", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:32.887477 2024-09-11 09:06:32.887482 02870984-5a47-410e-a046-bfd0c0928535 {"pid": "6157", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003263551"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:33.854994 2024-09-11 09:02:33.854997 2e93486f-280b-4452-91ff-88f2fde5804e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142554197"}, "pid": "2504", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:33.916889 2024-09-11 09:02:33.916892 6112ea0e-909c-4fc9-8367-3a3e07e78125 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142619930"}, "pid": "2505", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:33.967314 2024-09-11 09:02:33.967318 33979481-9cb0-40dd-a2d2-b2923f6cbf7a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142643742"}, "pid": "2506", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:34.023065 2024-09-11 09:02:34.023068 8079e32c-5fc2-48af-918d-06ed0cabc4fd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142693634"}, "pid": "2507", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:34.085722 2024-09-11 09:02:34.085725 34a7b9bd-5715-4711-843d-39b8f266c7cb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142697354"}, "pid": "2508", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:34.138166 2024-09-11 09:02:34.13817 d440b661-e28f-41ff-874d-e2a13aa9a9bf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142717126"}, "pid": "2509", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:34.189328 2024-09-11 09:02:34.18933 5105d36a-dafe-47d8-a663-22dbe810a6d9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142751464"}, "pid": "2510", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:38.169977 2024-09-11 09:06:38.16998 ca2dd57d-eeb5-4f53-a849-725c08603763 {"pid": "6221", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003453966"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:34.327667 2024-09-11 09:02:34.327671 e799251d-6583-4272-9e06-9d8f7e01991a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142757640"}, "pid": "2512", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:34.379417 2024-09-11 09:02:34.379419 2cf1c6c5-9add-4b58-9235-96ed15d5a35c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142767549"}, "pid": "2513", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:34.435933 2024-09-11 09:02:34.435936 db3b04da-2865-4c73-85a6-fe400de20e71 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142782629"}, "pid": "2514", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:34.483841 2024-09-11 09:02:34.483844 9934d861-8214-46cd-879f-ef431ef0cfe6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142784338"}, "pid": "2515", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:34.53404 2024-09-11 09:02:34.534043 02269dd5-1d8f-406a-a4ce-18dfb5e33a31 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142806943"}, "pid": "2516", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:34.584184 2024-09-11 09:02:34.584189 ccfda8f8-8b0a-416e-b78a-b4ff06de2d42 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142837431"}, "pid": "2517", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:34.635705 2024-09-11 09:02:34.635708 eb5bea25-66a5-4287-b97c-150aeee84ee4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142874906"}, "pid": "2518", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:34.687482 2024-09-11 09:02:34.687484 244babc7-dc71-4462-bbd2-d5c9a6193088 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142877174"}, "pid": "2519", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:34.738472 2024-09-11 09:02:34.738475 81617a58-ebb0-48cd-aebe-8f980cb51cc7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142881430"}, "pid": "2520", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:34.790297 2024-09-11 09:02:34.790299 ad9b9707-8053-4e4f-85a7-30a97d7a4fe7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142894745"}, "pid": "2521", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:34.843355 2024-09-11 09:02:34.84336 7e145263-8e73-41f7-9f52-c7af87a42e3b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142899615"}, "pid": "2522", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:34.905424 2024-09-11 09:02:34.905428 8f8e9179-bd94-4a5d-8b49-c5243074ee78 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142910406"}, "pid": "2523", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:34.954727 2024-09-11 09:02:34.95473 29eb64d0-2e68-4927-873b-00f0c5311338 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142915637"}, "pid": "2524", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:35.00544 2024-09-11 09:02:35.005445 4eab4ed5-e48b-448f-9c44-4e5fd49d3f32 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142944548"}, "pid": "2525", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:35.057081 2024-09-11 09:02:35.057083 75b9a31c-4cc2-4280-92cd-03458c5723a0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142979597"}, "pid": "2526", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:35.105941 2024-09-11 09:02:35.105946 26b4becc-648a-4dcd-8893-d1cc02c71aa8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/14299670X"}, "pid": "2527", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:35.157015 2024-09-11 09:02:35.157019 39ca7e4e-d727-4c43-a72e-59c30dfbd0a8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143008900"}, "pid": "2528", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:35.205874 2024-09-11 09:02:35.205876 146aa2ad-d527-4f46-b6c4-278021b1ab7b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143059424"}, "pid": "2529", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:35.253439 2024-09-11 09:02:35.253442 f0a6823a-92f0-41fd-b87a-4051c012614a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143063324"}, "pid": "2530", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:35.305845 2024-09-11 09:02:35.305848 1b14cf00-b182-49c0-a6d0-f848f0006cf5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143068547"}, "pid": "2531", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:35.370429 2024-09-11 09:02:35.370433 7c4be30d-2e86-4070-83ee-bdb2838b192e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143107291"}, "pid": "2532", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:35.42357 2024-09-11 09:02:35.423573 758c901c-755a-41bf-8789-db859a13ecf4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143130706"}, "pid": "2533", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106143693"} 1 +2024-09-11 09:02:35.473832 2024-09-11 09:02:35.473834 5be4ea9a-3b6d-4d4d-aaa3-90e7ed1b33b7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143138901"}, "pid": "2534", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:35.522388 2024-09-11 09:02:35.522391 c980a474-a495-489c-927a-3967307522bc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143152807"}, "pid": "2535", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:35.574426 2024-09-11 09:02:35.574429 cb3c02d1-63ad-4188-85dd-76f59a3b4ec2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143164406"}, "pid": "2536", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:35.625806 2024-09-11 09:02:35.625809 ccf4f5aa-7d16-44eb-9469-037b93826d50 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143170899"}, "pid": "2537", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:35.680349 2024-09-11 09:02:35.680353 9fdc9bfb-584d-4543-9525-9d0c64710e2d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143182846"}, "pid": "2538", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:35.735624 2024-09-11 09:02:35.735626 583ff2e1-2915-4fcd-a673-f35175884fae {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143199897"}, "pid": "2539", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:35.802735 2024-09-11 09:02:35.802739 80e328ed-c076-463e-b1b2-dcb353f64863 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/14320212X"}, "pid": "2540", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:35.851227 2024-09-11 09:02:35.851229 caf95911-656b-4852-8e7a-8209608c78f5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143203576"}, "pid": "2541", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:35.899945 2024-09-11 09:02:35.899948 5599f959-00ff-4554-a4f4-ea03441c5735 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143204718"}, "pid": "2542", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:35.950793 2024-09-11 09:02:35.950796 19c05eb8-2552-4b33-b999-26bbbcb4ba7a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143231499"}, "pid": "2543", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:36.004118 2024-09-11 09:02:36.004121 fbaac69d-21ba-48fb-8b71-a8c58be22477 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/14326589X"}, "pid": "2544", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:36.0602 2024-09-11 09:02:36.060203 ac1bdc52-8c09-4d3c-afa7-560b6ed13aac {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/14327810X"}, "pid": "2545", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:36.120284 2024-09-11 09:02:36.120287 fe58ce5b-e2ce-4fec-99e7-c5cecadd0c98 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143326694"}, "pid": "2546", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:36.170677 2024-09-11 09:02:36.170681 6d01e7e0-4da0-4885-b143-1ea4cc705f6a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143341847"}, "pid": "2547", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:36.224103 2024-09-11 09:02:36.224106 a29932b9-143d-47ab-b181-9615de221a5c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/14334739X"}, "pid": "2548", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:36.280919 2024-09-11 09:02:36.280923 7758f047-911b-4d03-b686-f78828b10b6a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143349791"}, "pid": "2549", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:36.34356 2024-09-11 09:02:36.343563 d41a38cc-4c7a-4238-a633-4f11d2c25ed0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143350285"}, "pid": "2550", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:36.395854 2024-09-11 09:02:36.395857 b8b495c9-637a-42b4-94b7-0cf6d26535c0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143366254"}, "pid": "2551", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:12.104526 2024-09-11 09:06:32.955823 ef224585-af9b-49e3-87bf-819865ed6df3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/129828866"}, "pid": "2150", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003264908"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/084531029"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1101976"} 3 +2024-09-11 09:02:36.506729 2024-09-11 09:02:36.506732 ca7251ec-8a90-40cd-a0c3-19a446c460a5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143380583"}, "pid": "2553", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:36.560569 2024-09-11 09:02:36.560574 4898a2a1-d793-404f-a37c-0f4f503f0eb4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143441450"}, "pid": "2554", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:36.62183 2024-09-11 09:02:36.621833 6e74021e-0c40-40f9-8f77-fd56cd1d3701 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143443011"}, "pid": "2555", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:36.734057 2024-09-11 09:02:36.734061 681a5df2-6438-4dc8-81f7-6aede3d4f8b7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143464000"}, "pid": "2557", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107922514"} 1 +2024-09-11 09:02:36.789926 2024-09-11 09:02:36.789928 752fc13d-7178-4d22-8ca5-f36970e81aa1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143465147"}, "pid": "2558", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:36.840332 2024-09-11 09:02:36.840335 32a3e292-0e4f-403c-99bb-e5701d7c7b33 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143505165"}, "pid": "2559", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:36.895004 2024-09-11 09:02:36.895007 feff9d81-d8cf-4f61-b48e-bc2f1bb7950c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143511327"}, "pid": "2560", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:50.028251 2024-09-11 09:06:33.015978 14a9a728-a292-4f63-900c-8f1dcabf9556 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/120498464"}, "pid": "1763", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003265730"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/056820151"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101079568"} 3 +2024-09-11 09:02:37.015806 2024-09-11 09:02:37.01581 8cf5baaf-77f2-41ba-b34b-c7376426603c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143530879"}, "pid": "2562", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:37.078614 2024-09-11 09:02:37.078617 9305ae07-f6a1-4060-9600-60f2a7882717 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143531468"}, "pid": "2563", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:37.162524 2024-09-11 09:02:37.162527 761fcc82-d700-4067-a869-16794de36588 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143560794"}, "pid": "2564", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:37.213189 2024-09-11 09:02:37.213192 9a9fdc24-89df-4e28-88bc-6e4ff5558940 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143583883"}, "pid": "2565", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:37.264748 2024-09-11 09:02:37.26475 b8de812e-a315-4d91-bc90-0fc6294dbefa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143606336"}, "pid": "2566", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:37.31632 2024-09-11 09:02:37.316323 b5aef1f1-d1a6-49bf-ab80-8f7a731080f8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143612972"}, "pid": "2567", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:37.369913 2024-09-11 09:02:37.369916 b95bc268-e03c-41da-80dc-e1602314b6c0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143626655"}, "pid": "2568", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:37.428295 2024-09-11 09:02:37.428299 1b09b158-7210-457f-9caf-48478e809b53 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143641174"}, "pid": "2569", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:37.482051 2024-09-11 09:02:37.482055 a0528385-310a-4dac-9e0c-aa4eda048e0f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143661779"}, "pid": "2570", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:37.545408 2024-09-11 09:02:37.545412 71ad348f-2e54-4cb2-80f9-7d90612171fc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143679783"}, "pid": "2571", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:37.598842 2024-09-11 09:02:37.598844 4dbb87e9-1899-46b1-af0a-8be1287f055a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/14369877X"}, "pid": "2572", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:37.653476 2024-09-11 09:02:37.653478 c5c707e5-d874-4893-a737-97b4109b8b85 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143700545"}, "pid": "2573", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:37.753181 2024-09-11 09:02:37.753183 5641fbaa-24a8-4537-959c-c770e2629ed4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143720244"}, "pid": "2574", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:37.811574 2024-09-11 09:02:37.811577 2b35eb7a-1357-4613-8c38-a1d86da55d6d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143739050"}, "pid": "2575", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:37.865568 2024-09-11 09:02:37.865572 3bdc112b-0774-4ffc-b08d-833fde4a899d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143747835"}, "pid": "2576", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:37.925455 2024-09-11 09:02:37.925459 b5c1f7f6-9e70-4de9-b56e-81d1598df31e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143755498"}, "pid": "2577", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:37.988008 2024-09-11 09:02:37.988011 3e91e1bb-d2e4-43ff-9031-75ab9baf0fc8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/14382399X"}, "pid": "2578", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:38.053168 2024-09-11 09:02:38.053173 de70fc21-9134-4a9d-a1fa-b5f39719ee96 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143849107"}, "pid": "2579", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:38.104474 2024-09-11 09:02:38.104477 a8afcd70-c61b-4519-9cc0-298f56c6cdfa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143873601"}, "pid": "2580", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:38.163536 2024-09-11 09:02:38.163538 5668e176-b3b2-46a9-9b93-fe47e7b7f7f8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143905856"}, "pid": "2581", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:38.213727 2024-09-11 09:02:38.213731 229c7ce6-64bf-4641-bb79-81cfc4bf76a0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143916629"}, "pid": "2582", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:38.266601 2024-09-11 09:02:38.266604 0e8cf925-72dd-4e3a-a20a-6217490e404b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143917889"}, "pid": "2583", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:38.315873 2024-09-11 09:02:38.315876 457c33d6-0334-49f6-835d-b6472a611c40 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143929496"}, "pid": "2584", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:38.368662 2024-09-11 09:02:38.368665 39a41f4b-6122-42b4-b14b-3521923052ca {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143934821"}, "pid": "2585", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:38.419174 2024-09-11 09:02:38.419177 c62da66d-9c6e-498c-8ff7-d28ddfd3d638 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143941844"}, "pid": "2586", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:38.47268 2024-09-11 09:02:38.472683 3f1f6291-22f7-4f00-9a6c-dab84f2f5810 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143985418"}, "pid": "2587", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:38.536494 2024-09-11 09:02:38.536497 a4572231-0ad5-40cf-bb8f-3f1afe599905 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/144017229"}, "pid": "2588", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:38.59235 2024-09-11 09:02:38.592354 1f95870e-180e-460b-a497-28703de9d684 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/144040182"}, "pid": "2589", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:38.711264 2024-09-11 09:02:38.711268 c2767f64-2e67-4daa-bbbf-560784cade24 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/158403487"}, "pid": "2591", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:38.649206 2024-09-11 09:06:01.12309 c8b7438d-3736-48ec-9579-20bb58e9da5e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/156719029"}, "pid": "2590", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251131807"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108801436"} 2 +2024-09-11 09:02:38.819991 2024-09-11 09:02:38.819994 96b7408a-4f5c-4d76-bbbb-dd32eb5f51b3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/170056937"}, "pid": "2593", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:33.077613 2024-09-11 09:06:33.077617 f4330c85-8b58-468d-883b-a682bc4ef99e {"pid": "6158", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003267103"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:39.04619 2024-09-11 09:02:39.046193 0e63bad7-96e3-4725-9762-99aa9e2d0b44 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/17017252X"}, "pid": "2597", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:39.101375 2024-09-11 09:02:39.101378 3af3a6b3-4e74-41c7-9894-67ab8a65b646 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/170229955"}, "pid": "2598", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:39.154169 2024-09-11 09:02:39.154171 25ace025-9d4a-45c9-b021-da54083c05c0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/170238873"}, "pid": "2599", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:33.129691 2024-09-11 09:06:33.129694 65748100-e9ab-4f8b-8e05-5551c69570d1 {"pid": "6159", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003267500"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:39.278823 2024-09-11 09:02:39.278827 4843a7e4-9c66-417c-aca9-178e7c4e0f4d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/170299597"}, "pid": "2601", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:39.338898 2024-09-11 09:02:39.338901 354da078-3f1e-4602-9b75-b6cfb2331f66 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/170311295"}, "pid": "2602", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:39.38987 2024-09-11 09:02:39.389873 9e41844e-af62-48a3-8c81-91af823d7edf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/170322122"}, "pid": "2603", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:39.439596 2024-09-11 09:02:39.439601 610320fa-d4bc-40bc-a8f3-bc955bfae0d6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/170395839"}, "pid": "2604", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:39.491095 2024-09-11 09:02:39.491097 8937a7fb-9366-4c75-8fc4-703d2a2e3cc7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/170402584"}, "pid": "2605", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:39.541146 2024-09-11 09:02:39.541149 133c559f-3cdc-45c7-8ba1-2458519fb1b8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/170410633"}, "pid": "2606", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:39.594942 2024-09-11 09:02:39.594945 ea892d43-3337-486c-aad3-d6e342f7df6f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/170454428"}, "pid": "2607", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:39.648913 2024-09-11 09:02:39.648917 6f464b24-a508-45be-a312-26f9a972c659 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/170502708"}, "pid": "2608", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:39.709371 2024-09-11 09:02:39.70938 c1532263-12fb-47f8-a621-bac99c6926b8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/170594211"}, "pid": "2609", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103613902"} 1 +2024-09-11 09:02:39.825967 2024-09-11 09:02:39.825972 b77ffcea-7d65-464b-857a-861bdcacfb5f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/170678253"}, "pid": "2611", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:39.901389 2024-09-11 09:02:39.901393 9496a9e5-7a48-4741-b23a-52bac0bc9471 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/170725383"}, "pid": "2612", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:39.971321 2024-09-11 09:02:39.971325 b1f74313-09b4-4c6d-a66a-3e0c3d9fe6f7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/170813010"}, "pid": "2613", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:40.135761 2024-09-11 09:02:40.135763 e332913b-536b-425f-b5bb-a1d5b163083c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/170877965"}, "pid": "2614", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:40.266131 2024-09-11 09:02:40.266134 4de60beb-5139-4bdc-9cad-5feba6a63cba {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/170952320"}, "pid": "2615", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:40.396733 2024-09-11 09:02:40.396736 2e78d94b-d870-470b-a2c6-bca9d642bbbd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/170996085"}, "pid": "2617", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11195798"} 1 +2024-09-11 09:02:40.507026 2024-09-11 09:02:40.507028 996d48c5-2bed-4fc8-902a-7d3377269946 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/171082079"}, "pid": "2619", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:40.621361 2024-09-11 09:02:40.621363 813903fa-6fcc-449b-ad0f-1efaabefdc9d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/171217772"}, "pid": "2621", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:40.673127 2024-09-11 09:02:40.673131 5a82868b-c07e-4ba9-ba4f-7e949519104e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/171283899"}, "pid": "2622", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:40.72975 2024-09-11 09:02:40.729755 d061327e-8d39-4630-a7b0-062e42564a4b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/171302605"}, "pid": "2623", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:40.784928 2024-09-11 09:02:40.784931 c1612a0a-debd-45f3-9ebd-cbd8de4e5c69 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/171346424"}, "pid": "2624", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:40.454271 2024-09-11 09:04:41.933407 216256d3-4ffd-4c36-82ab-1c73da22a600 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/171052412"}, "pid": "2618", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/128590874"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "113062088"} 2 +2024-09-11 09:02:40.342196 2024-09-11 09:04:54.311984 bc2fa577-3d8e-412a-bf0c-758f21ec43ad {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/170971325"}, "pid": "2616", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148833101"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106259622"} 2 +2024-09-11 09:02:40.565316 2024-09-11 09:06:06.186467 f0ada707-c5b7-4815-aef4-199b379f9e11 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/171115058"}, "pid": "2620", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/255241518"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110162365729725460323"} 2 +2024-09-11 09:02:38.938669 2024-09-11 09:06:46.120452 b708f09c-8841-4634-8679-809058178aa7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/17014514X"}, "pid": "2595", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003797257"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112786527"} 2 +2024-09-11 09:02:40.847885 2024-09-11 09:02:40.847889 3ab1f82f-ff3d-4ee1-b9e8-566182164f7e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/171367421"}, "pid": "2625", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:40.909683 2024-09-11 09:02:40.909685 307f588b-a800-4d3e-a326-b401ecb6de6c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/171541545"}, "pid": "2626", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:40.964343 2024-09-11 09:02:40.964346 104d5e60-9478-4fc1-bfd2-8f1576201b63 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/171555430"}, "pid": "2627", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:41.02139 2024-09-11 09:02:41.021393 0f02d912-9ca8-44a9-9bfb-ff225b5a0b97 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/171629353"}, "pid": "2628", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:41.085369 2024-09-11 09:02:41.085375 57e74db8-d33b-4b7e-96f2-aa02ac4d1959 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/171634667"}, "pid": "2629", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:41.13728 2024-09-11 09:02:41.137282 b625acb5-6165-41c7-af41-34c73294e64d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/171707788"}, "pid": "2630", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:41.18708 2024-09-11 09:02:41.187084 e7f2f905-372b-44b3-8912-53e6878e3b47 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/171735099"}, "pid": "2631", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:41.239654 2024-09-11 09:02:41.239656 3815ce25-5272-4028-a5fd-556a60a9de61 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/171781082"}, "pid": "2632", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:41.292637 2024-09-11 09:02:41.292641 0de1099d-79d8-4bed-825b-717588a515da {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/171827872"}, "pid": "2633", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:41.346552 2024-09-11 09:02:41.346555 8ec45c13-2292-4961-acc2-34cb1787879c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/17187935X"}, "pid": "2634", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:41.401301 2024-09-11 09:02:41.401304 1089812f-e70b-495c-b1fc-8534d512e4ee {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/171899660"}, "pid": "2635", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:41.45426 2024-09-11 09:02:41.454263 069bacd4-c45a-48b0-9e44-aa3973fc857e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/17205821X"}, "pid": "2636", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:33.183436 2024-09-11 09:06:33.18344 3e8b6bac-720b-4250-882c-6813290f6826 {"pid": "6160", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003268129"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:42.179065 2024-09-11 09:06:48.961767 9ecc44fc-1982-4da9-8e41-8e76da756659 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172435498"}, "pid": "2648", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003947464"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10470018"} 2 +2024-09-11 09:02:41.712979 2024-09-11 09:02:41.712981 0f5031a9-f432-4144-b288-068811a8362f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172206790"}, "pid": "2640", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:41.765419 2024-09-11 09:02:41.765422 ca5f3252-431b-476d-858e-ea1d58da123e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172224314"}, "pid": "2641", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:41.876027 2024-09-11 09:02:41.876031 2037080f-0700-4325-9211-33e898b14609 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172263840"}, "pid": "2643", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:42.064612 2024-09-11 09:02:42.064617 22b60457-3e08-48cc-9e54-1331c9cd0b39 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172325749"}, "pid": "2646", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:42.119546 2024-09-11 09:02:42.119549 af50c847-eca0-49a9-a8ac-b8c34662f36f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172335450"}, "pid": "2647", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:42.294259 2024-09-11 09:02:42.294263 72296a76-e302-48c0-8ded-9e3ad932d968 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/17248491X"}, "pid": "2650", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:42.351802 2024-09-11 09:02:42.351804 e2769ee1-e7c8-4a14-897f-3cfbae4361ed {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172560462"}, "pid": "2651", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:42.402176 2024-09-11 09:02:42.402179 53002153-05ce-46f7-be7f-ca3b39b23125 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172650003"}, "pid": "2652", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:42.449889 2024-09-11 09:02:42.449891 0199027b-2329-4fc0-adc9-b86e488b22c9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172664128"}, "pid": "2653", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:42.499522 2024-09-11 09:02:42.499526 e6c7a789-6622-439d-b130-a2f979ca7929 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172677335"}, "pid": "2654", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:42.547112 2024-09-11 09:02:42.547116 86332744-be1c-4b90-ba1f-eb06f2f9dbff {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172710073"}, "pid": "2655", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:42.592604 2024-09-11 09:02:42.592607 e9efcbb6-bcb3-40c2-827a-55cf74e3a5b0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172712866"}, "pid": "2656", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:42.237352 2024-09-11 09:06:49.241018 5807383f-3b78-460b-8749-5fffa4432104 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172448611"}, "pid": "2649", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003969580"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/067174299"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111916246"} 3 +2024-09-11 09:02:41.93464 2024-09-11 09:04:30.743858 16d7fad8-bac6-43b3-abf5-9cb9786a1654 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172265258"}, "pid": "2644", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/102616221"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112105759"} 2 +2024-09-11 09:02:42.000463 2024-09-11 09:04:35.746277 81514b63-333d-4b32-b8b3-14872a80e5b2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172316480"}, "pid": "2645", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/11499899X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106960894"} 2 +2024-09-11 09:02:42.643716 2024-09-11 09:02:42.64372 e8d69b25-b4f0-4304-bae2-e253051d8f87 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/17273889X"}, "pid": "2657", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:42.700021 2024-09-11 09:02:42.700025 76a960ac-9be0-49cf-948f-f31248cac9fa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172741912"}, "pid": "2658", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:42.761064 2024-09-11 09:02:42.761068 8e068a56-a178-4c3b-ba0c-8ed259718f24 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172821657"}, "pid": "2659", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:42.833968 2024-09-11 09:02:42.833972 9956b13c-d8df-4df6-972c-ad08464623ac {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172937051"}, "pid": "2660", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:42.888717 2024-09-11 09:02:42.888721 0076c600-a576-4173-baac-86448c8fe342 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172939755"}, "pid": "2661", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:42.943076 2024-09-11 09:02:42.943079 3e8388b2-3ed3-414f-9b52-b3699ca15b0c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172953804"}, "pid": "2662", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:42.999782 2024-09-11 09:02:42.999786 b8f4a211-a96e-4091-888a-8219cb634a1f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173016383"}, "pid": "2663", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:43.057767 2024-09-11 09:02:43.05777 ac4b13aa-27fb-4c5a-8fe3-b2f138fc95f6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173047165"}, "pid": "2664", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104470395"} 1 +2024-09-11 09:02:43.10926 2024-09-11 09:02:43.109264 e809ba4a-e9fd-4837-ad91-e15f2877e03f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173079466"}, "pid": "2665", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:43.159919 2024-09-11 09:02:43.159923 d3ede1f8-ca16-4078-a6c2-dec941398232 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173093086"}, "pid": "2666", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:43.209109 2024-09-11 09:02:43.209113 8789a7e9-e293-4055-afc0-1c69a22456c8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173112110"}, "pid": "2667", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:43.308708 2024-09-11 09:02:43.308712 83c4b521-b860-4ade-9808-ff2321d1276a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173162061"}, "pid": "2669", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:33.237838 2024-09-11 09:06:33.237841 f7e3ad26-6de3-4fa1-a982-b0bcadf60f70 {"pid": "6161", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003272218"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:43.411384 2024-09-11 09:02:43.411387 225bf772-04e6-42ec-b388-551dcfc1aa02 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173287387"}, "pid": "2671", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:43.525021 2024-09-11 09:02:43.525026 a3fc40fb-d53e-456a-a635-b75d13ad3cbe {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173395627"}, "pid": "2673", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:43.575116 2024-09-11 09:02:43.575119 9f5f5aff-c1af-4a2b-9d0f-56d89f8282ef {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/17344511X"}, "pid": "2674", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:33.294257 2024-09-11 09:06:33.294262 c7a05a2b-5f4c-4b61-9939-d3190dbe59e1 {"pid": "6162", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003272478"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:43.684007 2024-09-11 09:02:43.684009 5fd14a0e-5a35-4ece-8371-a01e1f2548ac {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173606091"}, "pid": "2676", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:43.750661 2024-09-11 09:02:43.750668 9a97bdb3-754c-4ec4-b2c0-7d41516e5997 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/17361860X"}, "pid": "2677", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:43.832048 2024-09-11 09:02:43.832052 95b8c816-d912-4cf8-8c23-093727386bac {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173628257"}, "pid": "2678", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:43.891487 2024-09-11 09:02:43.891491 2471c03a-2652-4df4-9f48-95b5faa451c3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173635385"}, "pid": "2679", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:43.959148 2024-09-11 09:02:43.959154 39b6759d-36a5-46da-8263-3aa587c02dd9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173674534"}, "pid": "2680", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:44.036481 2024-09-11 09:02:44.036485 ad9d006a-547f-42a0-9bab-90c704f120e6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173748856"}, "pid": "2681", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:44.111705 2024-09-11 09:02:44.111708 7eeb6cf0-7686-4353-b122-457b3242c107 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173756638"}, "pid": "2682", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:44.180079 2024-09-11 09:02:44.180083 c3dd1aa6-cfdb-4edc-a41d-2e62c9862bf9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173770401"}, "pid": "2683", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:44.237403 2024-09-11 09:02:44.237407 73dd95b3-c6b4-4279-97a0-1ec540e00454 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173774148"}, "pid": "2684", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:44.294643 2024-09-11 09:02:44.294647 f3252713-58d5-4d56-97ed-b0b243c3259d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173774776"}, "pid": "2685", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:44.354495 2024-09-11 09:02:44.354498 27671049-b11f-45b4-a262-e26c39122fd4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173808085"}, "pid": "2686", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:44.419902 2024-09-11 09:02:44.419907 216a4f8e-8a43-47bf-b6a4-e68e5bbcefc7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173843034"}, "pid": "2687", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:44.473361 2024-09-11 09:02:44.473365 16256407-93be-4b29-9e56-e45f9914d5a3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173888135"}, "pid": "2688", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:43.260447 2024-09-11 09:05:44.368691 ee60b96b-e24b-420f-8a55-bf511980ac23 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173120016"}, "pid": "2668", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234587989"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108229414"} 2 +2024-09-11 09:02:44.526649 2024-09-11 09:02:44.526654 20300ee3-7816-46b2-9cef-4de6c2837982 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173977669"}, "pid": "2689", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:44.578778 2024-09-11 09:02:44.578781 0ffb093a-7e68-4861-9db6-2a12735dbb2e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/174095139"}, "pid": "2690", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:44.629769 2024-09-11 09:02:44.629773 d8d1f158-475b-4932-b142-07d256fadf9d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/174168616"}, "pid": "2691", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:44.682503 2024-09-11 09:02:44.682507 ddec1c36-cb6e-440c-968f-e15ec6ca4722 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/17420275X"}, "pid": "2692", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:44.737423 2024-09-11 09:02:44.737425 551a421e-8454-4939-8e8f-5beda69ff15e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/17422138X"}, "pid": "2693", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:44.787791 2024-09-11 09:02:44.787795 7f8642ad-be50-4641-9da7-f1ee021eff5c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/174376391"}, "pid": "2694", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:33.352891 2024-09-11 09:06:33.352895 3d40165f-de10-45c2-a24c-053490315bc3 {"pid": "6163", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003272492"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:44.900125 2024-09-11 09:02:44.90013 84a4853a-e1cf-4684-b7cd-e49d862a0a23 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/189437065"}, "pid": "2696", "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:44.960083 2024-09-11 09:02:44.960086 6b255842-3ea7-4507-881a-f11c2132f1be {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/199160554"}, "pid": "2697", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:45.020701 2024-09-11 09:02:45.020704 bef81af9-ed63-4bcd-94db-12e38bb4724e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320025594"}, "pid": "2698", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:45.071565 2024-09-11 09:02:45.071569 762b5edd-29bc-4c0a-96a5-530b49d7b527 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320038580"}, "pid": "2699", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:45.120962 2024-09-11 09:02:45.120965 c415d76c-85fd-43b3-a211-b9a8a9e10b2c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320040992"}, "pid": "2700", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:45.169575 2024-09-11 09:02:45.169578 b7a59f9c-c0d9-4d8a-9158-78f0b7947245 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320067661"}, "pid": "2701", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:45.220095 2024-09-11 09:02:45.220099 d41091b8-2638-4936-9985-735d31594e80 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320070522"}, "pid": "2702", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:45.271862 2024-09-11 09:02:45.271866 5ce1f6ca-75bd-40e0-8f18-5c3db4db18bc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320074129"}, "pid": "2703", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:45.345352 2024-09-11 09:02:45.345358 076a0910-6aa1-46e1-aea5-1e1a556951cb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320080242"}, "pid": "2704", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:45.428027 2024-09-11 09:02:45.428033 dd2ed1d0-5921-4910-a046-3020b763c06e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320080366"}, "pid": "2705", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:45.502317 2024-09-11 09:02:45.502321 17f62798-e154-4b5a-baa1-61488995014b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320093549"}, "pid": "2706", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:45.633966 2024-09-11 09:02:45.633971 831b15c7-22ea-499b-9e52-e44a64c296ec {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320111881"}, "pid": "2707", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:45.70295 2024-09-11 09:02:45.702954 400f4c6b-a666-4607-b2f8-9f209618d7ec {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320153746"}, "pid": "2708", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:45.759635 2024-09-11 09:02:45.759638 281863ba-8992-4966-93c4-0bc004541f88 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320168328"}, "pid": "2709", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:45.823727 2024-09-11 09:02:45.823731 211c0b54-1fbe-4044-9f69-ff7320c4d1de {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320188760"}, "pid": "2710", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:45.898822 2024-09-11 09:02:45.898827 58b8d4e4-4bdf-4304-9a44-44e7390ead7e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320196321"}, "pid": "2711", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:45.965958 2024-09-11 09:02:45.965962 25a4c0c0-041a-465c-9743-66ae7e35cfdc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320202593"}, "pid": "2712", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:46.036059 2024-09-11 09:02:46.036064 92e787fe-a657-436b-9ac8-70ef2b5b7ed0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320218694"}, "pid": "2713", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:46.111762 2024-09-11 09:02:46.111768 09329cd9-4b67-4782-965b-74232c039f39 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320234975"}, "pid": "2714", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:46.219773 2024-09-11 09:02:46.219779 5e9d904d-b93a-4e51-8357-6602d3064c72 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320236706"}, "pid": "2715", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:46.288773 2024-09-11 09:02:46.288776 f278927d-1961-4c93-ba69-783037b042a3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320290239"}, "pid": "2716", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:46.346318 2024-09-11 09:02:46.346321 f117d5b0-bd8e-42cb-8296-234a0fd5e4ad {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320292746"}, "pid": "2717", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:46.41567 2024-09-11 09:02:46.415675 bfd34c1c-42d3-4a28-9897-4f78e56e1edf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320319008"}, "pid": "2718", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:46.473539 2024-09-11 09:02:46.473541 3b5f3260-3964-4ad2-9b78-ccebb66b44bb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320328074"}, "pid": "2719", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:46.552582 2024-09-11 09:02:46.552587 2fa7b5ba-a1f9-4111-aea1-724147bb1d16 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/32032964X"}, "pid": "2720", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:46.616263 2024-09-11 09:02:46.616267 001a96ee-3b85-4042-9161-a31294a65a1c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320334988"}, "pid": "2721", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:46.672153 2024-09-11 09:02:46.672156 dec296b9-626a-418d-9eb5-7edc56454a71 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320354202"}, "pid": "2722", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:46.726669 2024-09-11 09:02:46.726672 bf75ecbd-a42b-477d-85ae-e102c7884505 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320364879"}, "pid": "2723", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:46.782102 2024-09-11 09:02:46.782107 c796352b-574e-4f2e-8f15-36fea53360b6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320366510"}, "pid": "2724", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:46.833344 2024-09-11 09:02:46.833346 3d2fc42b-cd9b-4dd8-8ef5-3c40c5e96592 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320368173"}, "pid": "2725", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:46.888069 2024-09-11 09:02:46.888074 77fe690f-3a4c-4287-a0bd-243a1f45d00f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320388387"}, "pid": "2726", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:46.943745 2024-09-11 09:02:46.943749 476b2288-b50e-4f6d-b36a-426a2bf8fdf1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320390268"}, "pid": "2727", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:47.000051 2024-09-11 09:02:47.000054 38a94ee9-0ff4-4f64-84ea-325ccc340c33 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320393690"}, "pid": "2728", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:47.060053 2024-09-11 09:02:47.060057 a98d0c30-3e01-4a38-9af2-87ef1e4bd97f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320406407"}, "pid": "2729", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:47.118812 2024-09-11 09:02:47.118817 1e919c57-d1ea-4168-a3f9-22f811e41c0f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320412733"}, "pid": "2730", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:47.178688 2024-09-11 09:02:47.178691 7766561c-8a4b-4bc2-93c0-240ca3d094db {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320418448"}, "pid": "2731", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:47.235936 2024-09-11 09:02:47.235939 d23d4b6e-9408-4ba5-ba5f-4d1c4171dafc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320422739"}, "pid": "2732", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:47.296933 2024-09-11 09:02:47.296939 05149bc2-8fcc-45ae-9d3c-7b97ba7b4fd7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/32043706X"}, "pid": "2733", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:47.354169 2024-09-11 09:02:47.354172 85bf169e-f789-49b8-9e5b-ad7ee217c38f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320461394"}, "pid": "2734", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:47.412395 2024-09-11 09:02:47.412399 353dbde0-acf0-42d1-8b05-e33ee7aae908 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320475891"}, "pid": "2735", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:47.479032 2024-09-11 09:02:47.479037 2f19e60d-2ea1-42bb-8837-f71c3c6d60f0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320488063"}, "pid": "2736", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:47.544221 2024-09-11 09:02:47.544226 a072f8fa-d020-416d-b4db-5695baf3b8cf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/32048906X"}, "pid": "2737", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:47.600464 2024-09-11 09:02:47.600468 081f918c-1e71-4bc7-9889-7417397bf631 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320497070"}, "pid": "2738", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:47.656324 2024-09-11 09:02:47.656327 9c16b511-463c-40ca-9f64-d43b15f0c430 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320506037"}, "pid": "2739", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:47.725078 2024-09-11 09:02:47.72508 80bc2854-9687-4893-97ea-092cfdbc160f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320515206"}, "pid": "2740", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:47.781996 2024-09-11 09:02:47.782001 af930bec-06e0-484a-be2f-e5555e238fe7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320532836"}, "pid": "2741", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:47.838685 2024-09-11 09:02:47.838689 f2ae9cc1-1126-4e9c-a4f9-68226804c08f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320542173"}, "pid": "2742", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:47.894844 2024-09-11 09:02:47.894849 287dfa17-1b32-411b-815b-546d92215778 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320562425"}, "pid": "2743", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:47.951146 2024-09-11 09:02:47.951149 ff0ec02a-9943-4b0f-8183-fbca4ab00892 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320577880"}, "pid": "2744", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:48.004456 2024-09-11 09:02:48.004459 36fd7e8a-d1a9-4b6e-b8be-17f8d2a656a5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320577929"}, "pid": "2745", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:48.0631 2024-09-11 09:02:48.063104 a03cf6b9-e21e-41cd-8954-bb62e23b8beb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320579751"}, "pid": "2746", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:48.134659 2024-09-11 09:02:48.134663 6a040da9-4fd8-41f5-82bc-494089134d5f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320584739"}, "pid": "2747", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:48.198769 2024-09-11 09:02:48.198771 cc95fbf3-f5cd-4ba1-934a-377904003bba {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320618439"}, "pid": "2748", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:48.256798 2024-09-11 09:02:48.2568 df83cb95-52a1-431b-9be9-2b1b80299c15 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320631176"}, "pid": "2749", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:48.319989 2024-09-11 09:02:48.319995 4754f50d-5ab7-48f6-9e75-d401e2945672 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320642461"}, "pid": "2750", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:48.379844 2024-09-11 09:02:48.379849 6dc08693-b1aa-4e12-8b29-0e11f00cd28c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/32064779X"}, "pid": "2751", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:48.446734 2024-09-11 09:02:48.446739 9deedadd-8bd5-4cb1-b887-2a460731b389 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320648877"}, "pid": "2752", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:48.502441 2024-09-11 09:02:48.502443 26a6298c-b27c-49fb-80e8-1d301d1e0d58 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320655458"}, "pid": "2753", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:48.570826 2024-09-11 09:02:48.57083 98bef429-4347-4c8e-8128-8b001d766317 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320663817"}, "pid": "2754", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:48.626104 2024-09-11 09:02:48.626108 c10b5bc8-d42a-4d2b-892f-36f9990f9da2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320680169"}, "pid": "2755", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:48.683377 2024-09-11 09:02:48.683381 20336ab4-0e9e-434b-ae37-7cbbfd9d7452 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/320694577"}, "pid": "2756", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:48.741256 2024-09-11 09:02:48.741259 419eae8c-f8f6-414d-8a26-19458facd634 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/940254522"}, "pid": "2757", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:48.792312 2024-09-11 09:02:48.792315 78c3b483-0c5a-439e-befb-ab14db2db3a4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/940263920"}, "pid": "2758", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:48.850979 2024-09-11 09:02:48.850987 9e1b4c7c-0242-4d23-9fe5-c82531b7eda5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/94027115X"}, "pid": "2759", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:48.912266 2024-09-11 09:02:48.912269 240fe2b6-8bce-49b4-9d1a-a6b7152a3bf0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/94037238X"}, "pid": "2760", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:48.980492 2024-09-11 09:02:48.980496 99958a7e-8571-4152-9cee-ace983108907 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/940374412"}, "pid": "2761", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:49.041742 2024-09-11 09:02:49.041747 d9e47a8b-d493-423e-aab2-3a18839f8cd6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/940433729"}, "pid": "2762", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:49.114403 2024-09-11 09:02:49.114405 ddeb1008-b59e-442b-9a5d-e05081785738 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/940439611"}, "pid": "2763", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:49.167104 2024-09-11 09:02:49.167109 42533ad8-3e0c-4378-bffe-e759bcaf43da {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/940547880"}, "pid": "2764", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:49.224928 2024-09-11 09:02:49.224932 6e7546ee-4cbb-4e6c-bc5c-55a67bb6e68d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/940552337"}, "pid": "2765", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:49.277507 2024-09-11 09:02:49.27751 b65877ca-a9e8-4f6c-b136-842f655e4946 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/940717395"}, "pid": "2766", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:49.333121 2024-09-11 09:02:49.333125 5a05e1d9-dc3b-4924-bd59-32bb125e08d0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/940975262"}, "pid": "2767", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:49.392594 2024-09-11 09:02:49.392599 34629f0e-09ac-409e-bbde-ed79721a9a29 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/940977877"}, "pid": "2768", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:49.450437 2024-09-11 09:02:49.45044 070c757d-638b-4afb-b9c3-b1f3bf991855 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/940981769"}, "pid": "2769", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:49.513368 2024-09-11 09:02:49.513372 8effe148-751b-4627-bd9e-07b44fd955f2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/940982315"}, "pid": "2770", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:49.572035 2024-09-11 09:02:49.57204 c296fb77-dabe-4a3a-9280-699db903058a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/941017893"}, "pid": "2771", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:49.63799 2024-09-11 09:02:49.637996 427c0b17-e4a7-4484-9e8b-0bd02da573f2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/941089150"}, "pid": "2772", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:49.699456 2024-09-11 09:02:49.699459 18bd749b-63c4-45b1-9336-47cfc29c3c77 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/941275590"}, "pid": "2773", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:49.767513 2024-09-11 09:02:49.767516 a2c9e8fe-9773-415a-a076-92b0c8ebb798 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/941281973"}, "pid": "2774", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:49.832296 2024-09-11 09:02:49.8323 261f188d-466a-47fb-9581-b66529ef08ca {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/941346447"}, "pid": "2775", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:49.899204 2024-09-11 09:02:49.899208 5ee49c7d-2e53-4f63-b3af-5ceb0c31a52d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/941637379"}, "pid": "2776", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:49.953066 2024-09-11 09:02:49.953069 7845ba8f-7e5b-4691-bd76-c2507debc484 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/941671380"}, "pid": "2777", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:50.006487 2024-09-11 09:02:50.00649 6173626b-c0b8-4d1e-90b5-03aa0c4e42f2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/94192582X"}, "pid": "2778", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:50.062209 2024-09-11 09:02:50.062213 675f8157-c011-4fef-957d-65b224943695 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/941943933"}, "pid": "2779", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:50.118234 2024-09-11 09:02:50.118238 ead1656f-b49a-40af-8058-892441f34770 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/941953912"}, "pid": "2780", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:50.171722 2024-09-11 09:02:50.171724 ad859ec0-f907-4832-9e93-ca09e4f9be8f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/942048636"}, "pid": "2781", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:50.233257 2024-09-11 09:02:50.233262 c2f5ec85-07dc-4500-8748-f75774dc9c30 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/94205086X"}, "pid": "2782", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:50.294176 2024-09-11 09:02:50.294183 67569d18-bf2b-4f94-b862-08076e8b253f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/942050878"}, "pid": "2783", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:50.351886 2024-09-11 09:02:50.351888 7bf174af-586c-4ff0-85e7-7c0a4f4c1b3d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/942070747"}, "pid": "2784", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:50.406281 2024-09-11 09:02:50.406285 8ea5000b-4ff8-4fb1-9250-fd52ee372a41 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/942199448"}, "pid": "2785", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:50.468394 2024-09-11 09:02:50.468398 ef143122-0343-4544-b4de-8e07e64d575d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/942320220"}, "pid": "2786", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:50.542927 2024-09-11 09:02:50.542931 9e173060-cd5b-47d9-8ae8-8b4b9e67391a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/942384849"}, "pid": "2787", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:50.598663 2024-09-11 09:02:50.598666 2ef9f6f7-d70c-4f07-89f3-45dec9044981 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/94242283X"}, "pid": "2788", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:50.654168 2024-09-11 09:02:50.654172 4cb34a23-95db-42aa-b1de-abe8fe11e8a2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/942428595"}, "pid": "2789", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:50.71046 2024-09-11 09:02:50.710463 0255a629-9d0e-477c-be5e-e961cd5191cb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/942565762"}, "pid": "2790", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:50.780593 2024-09-11 09:02:50.780598 3793d9cc-ba46-4a15-aa1e-fdf31aedad64 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/942662024"}, "pid": "2791", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:50.835451 2024-09-11 09:02:50.835455 e8ab9ee7-fd45-4786-8b20-3e3f87901129 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/942856015"}, "pid": "2792", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:50.887744 2024-09-11 09:02:50.887749 7abac707-1a67-4a8b-b020-eb4d16352393 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/942894871"}, "pid": "2793", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:50.943151 2024-09-11 09:02:50.943155 160bc258-ce3d-419c-b6bc-6e9a781cd38e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/942904168"}, "pid": "2794", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:51.008106 2024-09-11 09:02:51.00811 40f2d233-0f4d-4acc-9008-ff9241af8507 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/942915232"}, "pid": "2795", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:51.067391 2024-09-11 09:02:51.067393 3f5c49f6-e36a-40e7-9adb-1a279325a9a7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/942918584"}, "pid": "2796", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:51.120143 2024-09-11 09:02:51.120147 668a2c62-d122-420e-8736-32b48d4f8399 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/942954297"}, "pid": "2797", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:51.183313 2024-09-11 09:02:51.183317 c245fd77-4c5a-4298-b009-78e8fdafb293 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/942982096"}, "pid": "2798", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:51.263084 2024-09-11 09:02:51.263088 40849925-7e26-47fe-a55c-61e8f58d56ad {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/943645956"}, "pid": "2799", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:51.317439 2024-09-11 09:02:51.317442 4eaf37ba-9a87-48ca-a402-cea3b799a625 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/943646448"}, "pid": "2800", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:51.371966 2024-09-11 09:02:51.371969 dbc07b55-31dd-4550-9eea-401ad8a87f70 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/943654904"}, "pid": "2801", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:51.427415 2024-09-11 09:02:51.42742 1fbbba2b-4690-4291-b52f-90ecdd59fb26 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/943708826"}, "pid": "2802", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:51.486123 2024-09-11 09:02:51.486129 a025f5d0-2533-4fba-8f15-85b8672078f6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/943780411"}, "pid": "2803", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:51.543124 2024-09-11 09:02:51.543128 7aa84c0a-b2a9-435d-8a16-76eff658fa68 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/943780489"}, "pid": "2804", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:51.60355 2024-09-11 09:02:51.603552 15d42263-94c1-40a6-9a0a-e0eee11ed6cb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/943895758"}, "pid": "2805", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:51.660634 2024-09-11 09:02:51.66064 c861dd11-1735-4246-9d79-545101a08b3f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/943900069"}, "pid": "2806", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:51.718449 2024-09-11 09:02:51.718453 dfbb3374-86c6-4057-9d39-7b50dfd8e363 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/943913152"}, "pid": "2807", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:51.783147 2024-09-11 09:02:51.783152 8cb50b2a-abe0-4023-8ad4-f05d4d38c94d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/943915236"}, "pid": "2808", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:51.842815 2024-09-11 09:02:51.842819 ef54de94-be94-4832-a379-97ebfb8ab464 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944068960"}, "pid": "2809", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:51.92066 2024-09-11 09:02:51.920662 2499d526-5f30-4505-8e58-3f13de607abf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944075738"}, "pid": "2810", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:51.975069 2024-09-11 09:02:51.975073 68afe02e-048a-4378-8124-e48154c79bf5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944081274"}, "pid": "2811", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:52.033142 2024-09-11 09:02:52.033146 9a42d410-03e5-42cf-a7d2-0220c2cf4363 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944087809"}, "pid": "2812", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:52.096428 2024-09-11 09:02:52.096433 a3c74d47-1ed2-4498-b01b-03a0d98146eb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944148816"}, "pid": "2813", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:52.151688 2024-09-11 09:02:52.151691 6981fba8-01b3-4454-9d5a-9024480373f8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944150284"}, "pid": "2814", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:52.208177 2024-09-11 09:02:52.208181 66716fc6-c156-47f6-87e2-8a4f4508b413 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944150381"}, "pid": "2815", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:52.266243 2024-09-11 09:02:52.266247 bacdda4e-fd6e-4ab9-8c79-641cb59a25d7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944150993"}, "pid": "2816", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:52.322897 2024-09-11 09:02:52.3229 2dce9fc4-dbc4-4af1-8cf4-0e7e80d3fd95 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944155383"}, "pid": "2817", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:52.379918 2024-09-11 09:02:52.379922 f6dc5fa1-3a44-43e0-b8a9-66a682343cdc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944191908"}, "pid": "2818", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:52.436538 2024-09-11 09:02:52.436541 973f9f18-1015-4f19-9970-ffaf3bf9ff6b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/94419558X"}, "pid": "2819", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:52.504232 2024-09-11 09:02:52.504234 c00f2e27-538b-4426-8c7f-c2ed4fe51ccd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944242898"}, "pid": "2820", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:52.557017 2024-09-11 09:02:52.557019 11476a82-cdbd-4e29-957f-bc81660fbccc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944290604"}, "pid": "2821", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:52.613117 2024-09-11 09:02:52.613121 f8b015ae-b2bd-4436-babc-ceb1a67665ad {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944393020"}, "pid": "2822", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:52.672027 2024-09-11 09:02:52.67203 a2c6191c-d1b0-4d36-9def-9200559abc84 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944405312"}, "pid": "2823", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:52.735483 2024-09-11 09:02:52.735486 e0fad6ad-0595-470a-b660-3483cfe420a5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944548059"}, "pid": "2824", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:52.796899 2024-09-11 09:02:52.796902 2df60c9e-9648-4a07-9d4e-9905fad8b631 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944640206"}, "pid": "2825", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:52.860362 2024-09-11 09:02:52.860367 5db49263-b556-47ba-aaeb-8ba01cf2fa8b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944694845"}, "pid": "2826", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:52.918403 2024-09-11 09:02:52.918405 83b81ab8-b217-4217-9596-2bc0cf3ad3bd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944695167"}, "pid": "2827", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:52.973186 2024-09-11 09:02:52.973188 74588510-6ac8-4f11-892e-5fdb46c079f6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944797199"}, "pid": "2828", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:53.031285 2024-09-11 09:02:53.031289 e0e71ffd-016c-4871-afdf-7f29bbaabb33 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944825028"}, "pid": "2829", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:53.088543 2024-09-11 09:02:53.088545 476e25d8-4728-46cb-8ff3-af1277412c57 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944923313"}, "pid": "2830", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:53.146202 2024-09-11 09:02:53.146207 eef92e30-dbf0-4f91-b5ea-4c1e7f64954e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944929052"}, "pid": "2831", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:53.203455 2024-09-11 09:02:53.203458 74ab073e-cf3a-4bac-b7b0-d12acb2792b5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944929710"}, "pid": "2832", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:53.260703 2024-09-11 09:02:53.260705 ba107d23-c6d8-4585-ba81-466e2a512c15 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944941710"}, "pid": "2833", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:53.32524 2024-09-11 09:02:53.325244 7e29ab56-dfc7-4f82-aa39-433fe1c1ef48 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/94495068X"}, "pid": "2834", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:53.394273 2024-09-11 09:02:53.394278 3ec37063-36d6-4d33-9be4-c90b1caf0fa0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944951910"}, "pid": "2835", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:53.45068 2024-09-11 09:02:53.450685 3669ffdb-ab0e-4362-a88f-862da4e24a66 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944952976"}, "pid": "2836", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:53.511259 2024-09-11 09:02:53.511263 489428a1-61fc-45f5-be77-79c6bc1f2817 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944953395"}, "pid": "2837", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:53.576084 2024-09-11 09:02:53.576088 6892b5e5-dee7-41c8-b4d4-2a4ab0cc0d48 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944963749"}, "pid": "2838", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:53.635233 2024-09-11 09:02:53.635235 6da5613e-99ca-4251-b4de-9c8340819187 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944971318"}, "pid": "2839", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:53.690271 2024-09-11 09:02:53.690273 da339045-6369-4e12-b771-407a6e52557e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/944978177"}, "pid": "2840", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:53.744089 2024-09-11 09:02:53.744093 c5e8103c-9c32-48df-b210-f9985d8de4a9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/945028067"}, "pid": "2841", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:53.802009 2024-09-11 09:02:53.802012 215e4731-97de-4e01-bda9-c1068c407a57 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/94504206X"}, "pid": "2842", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:53.88055 2024-09-11 09:02:53.880553 bcb83a7b-af6d-4ae8-9fc1-e547a835e310 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/945045972"}, "pid": "2843", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:53.937384 2024-09-11 09:02:53.937386 a8cf9eb8-2ea3-4fde-88c9-725b44250a7d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/945048653"}, "pid": "2844", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:53.992742 2024-09-11 09:02:53.992747 87dbf757-73c1-42c5-a115-651f2ce4de7b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/945073232"}, "pid": "2845", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:54.056596 2024-09-11 09:02:54.0566 9428c7cd-5665-4d9a-83b5-3e46c8ffa4d5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/945074212"}, "pid": "2846", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:54.124247 2024-09-11 09:02:54.124251 0289df97-5eea-42ff-9f9c-e4d1fdc3ad02 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/945079893"}, "pid": "2847", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:54.182161 2024-09-11 09:02:54.182166 798285fe-37d0-45b6-8428-a8fa40d2a2a5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/945102313"}, "pid": "2848", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:54.242335 2024-09-11 09:02:54.242339 4a967a60-e480-44dc-a9fa-9a1b411f2768 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/945104138"}, "pid": "2849", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:54.299166 2024-09-11 09:02:54.299169 c3c5d328-d0f6-4d59-a1bd-df704bc07f1d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/945107129"}, "pid": "2850", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:54.364955 2024-09-11 09:02:54.364958 568cf4b4-448e-4b62-aa6c-c9e28e042010 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/94510877X"}, "pid": "2851", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:54.432555 2024-09-11 09:02:54.432559 01d2fb7b-f493-48ea-aafd-80194cb954b8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/945118805"}, "pid": "2852", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:54.490891 2024-09-11 09:02:54.490892 83ba731e-f5cb-4591-b300-8a6ac0c0b70f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/945462891"}, "pid": "2853", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:54.549509 2024-09-11 09:02:54.549513 59126497-582f-404b-a3a4-287a89636bfb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/945492308"}, "pid": "2854", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:54.619962 2024-09-11 09:02:54.619965 9613bfa4-941b-419d-a3e5-40bc573acea1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/945504853"}, "pid": "2855", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:54.678661 2024-09-11 09:02:54.678665 9f013e99-b02e-4e51-95bf-4137cef94afd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/945555059"}, "pid": "2856", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:54.745023 2024-09-11 09:02:54.745025 7711c2a5-add9-48f0-828f-baf223d8ff3a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/945628889"}, "pid": "2857", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:54.803967 2024-09-11 09:02:54.803971 df2842e0-190c-4a26-bec4-b8577cd49930 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/945633696"}, "pid": "2858", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:54.868484 2024-09-11 09:02:54.868488 9403c5d9-16e6-4633-b57f-0f36b48238d4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/945708300"}, "pid": "2859", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:54.923832 2024-09-11 09:02:54.923836 434e6e06-96da-4b40-9aaf-52a020da8f04 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/945710097"}, "pid": "2860", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:54.979449 2024-09-11 09:02:54.979452 a81db98f-80a1-437b-87f0-6be5abf4df60 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/945763395"}, "pid": "2861", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:55.033157 2024-09-11 09:02:55.03316 d985e9fa-74c7-4159-a0d9-c118af7786e2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/945817428"}, "pid": "2862", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:55.089965 2024-09-11 09:02:55.089968 21833785-fd84-408e-aa34-00dda2e6a103 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/945951590"}, "pid": "2863", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:55.145924 2024-09-11 09:02:55.145928 1b9c2331-5863-42ef-9e08-4c574bcb746b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/946180822"}, "pid": "2864", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:55.204689 2024-09-11 09:02:55.204693 8eb67cbd-a4c4-4f5a-85c2-d6c1dafd546a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/946246734"}, "pid": "2865", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:55.261169 2024-09-11 09:02:55.261173 caebf884-f06f-48ea-93b8-2a3a6ee91427 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/946481911"}, "pid": "2866", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:55.316809 2024-09-11 09:02:55.316814 7377b56d-6d23-4e1a-ae1e-88d14db01c66 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/946487537"}, "pid": "2867", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:55.37465 2024-09-11 09:02:55.374653 cdf7212d-dc08-40b0-bf96-4427c1ae3700 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/946515468"}, "pid": "2868", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:55.429832 2024-09-11 09:02:55.429835 9e62eadc-5f24-41ff-91d2-b5f148af6199 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/946592039"}, "pid": "2869", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:55.488519 2024-09-11 09:02:55.488522 57052c37-df36-48a2-8683-261a7d7163e2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/946595259"}, "pid": "2870", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:55.561341 2024-09-11 09:02:55.561345 4cb80160-1f13-4de2-af3d-4424104ae035 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/946597189"}, "pid": "2871", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:55.623158 2024-09-11 09:02:55.62316 cbdb5c35-6700-4aa7-98b6-f886fa11599d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/946686203"}, "pid": "2872", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:55.676891 2024-09-11 09:02:55.676896 7f70d1a3-9937-4d17-ae2d-66f033bc1355 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/946688397"}, "pid": "2873", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:55.733924 2024-09-11 09:02:55.733927 b713434c-9365-4c82-bfb6-502b5425aecd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/946691215"}, "pid": "2874", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:55.788098 2024-09-11 09:02:55.788101 656f7a30-7668-4806-ac87-67072eb138d7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/94673271X"}, "pid": "2875", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:55.852872 2024-09-11 09:02:55.852875 47c6865f-25e1-4dde-a6e0-36b1a3ca8a26 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/946741077"}, "pid": "2876", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:55.906217 2024-09-11 09:02:55.906221 1eb523df-624c-4483-8144-dd2e2061fd61 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/94687400X"}, "pid": "2877", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:55.960731 2024-09-11 09:02:55.960734 169d4ded-6ad6-4ad6-9d3e-d20a7366506e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/946875715"}, "pid": "2878", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:56.026372 2024-09-11 09:02:56.026375 cf172b5d-a725-4528-a2ae-6595fa18b2d5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/946923477"}, "pid": "2879", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:56.091822 2024-09-11 09:02:56.091827 c291b218-a444-4ba0-b1b9-766c96ee6317 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/947105735"}, "pid": "2880", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:56.149646 2024-09-11 09:02:56.14965 9bc74a99-3e39-41f0-80a3-30751d3590f4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/947202900"}, "pid": "2881", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:56.215536 2024-09-11 09:02:56.215541 8996f5ab-e381-4fdd-9598-448596dd2899 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/947434348"}, "pid": "2882", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:56.284055 2024-09-11 09:02:56.28406 ef40360d-04bd-40df-bf47-6204d31deaff {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/947711708"}, "pid": "2883", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:56.339757 2024-09-11 09:02:56.339761 0c2000ab-77c9-4283-8045-5479d8f4ae3f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/94772530X"}, "pid": "2884", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:56.393411 2024-09-11 09:02:56.393415 71b1d828-e7e0-4920-99e8-3ef168637cd6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/947731687"}, "pid": "2885", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:56.448378 2024-09-11 09:02:56.448384 2eccfe8a-8ef6-4b1f-a1b8-95e3f4b09931 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/947742956"}, "pid": "2886", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:56.503071 2024-09-11 09:02:56.503075 f8c307d2-0ac9-47e9-9e23-d913341c2014 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/947854517"}, "pid": "2887", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:56.561533 2024-09-11 09:02:56.561537 01bd872a-8abd-4269-a0a4-e4972456bf82 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/947854789"}, "pid": "2888", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:56.620486 2024-09-11 09:02:56.62049 e0927157-1704-4072-bbd9-735c2df46288 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/947862765"}, "pid": "2889", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:56.677851 2024-09-11 09:02:56.677855 508174af-c85e-4351-b887-92314924cf0a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/948041838"}, "pid": "2890", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:56.737611 2024-09-11 09:02:56.737614 1cb3e29c-c90a-4eef-b121-84faed4274b5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/94813142X"}, "pid": "2891", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:56.814795 2024-09-11 09:02:56.814798 83a25747-e12e-4983-9b75-5d1a3b979116 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/94813514X"}, "pid": "2892", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:56.868065 2024-09-11 09:02:56.868068 a6f0b80b-feba-44df-908c-59252840b216 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/948139579"}, "pid": "2893", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:56.923916 2024-09-11 09:02:56.923919 ec1f1a70-667a-438c-a735-3413de0a9da1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/94814906X"}, "pid": "2894", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:56.984696 2024-09-11 09:02:56.984699 0e55252e-e38e-4f67-8b62-4afcd841a0c6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/948166894"}, "pid": "2895", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:57.04012 2024-09-11 09:02:57.040123 d5d67304-d6ad-4ac0-96d7-d97abe473ab9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/948240598"}, "pid": "2896", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:57.096761 2024-09-11 09:02:57.096766 cb5bab0f-4dc7-4f78-81a9-0c39c6de38ee {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/948258594"}, "pid": "2897", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:57.151806 2024-09-11 09:02:57.15181 b6ebfd9f-35f2-4556-8bf5-2523b3278307 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/948301236"}, "pid": "2898", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:57.218058 2024-09-11 09:02:57.218061 227a4242-27bf-491a-91e6-05567b306368 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/948314931"}, "pid": "2899", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:57.272736 2024-09-11 09:02:57.272739 be1f0557-25aa-4121-923f-feebf3a5504f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/948712244"}, "pid": "2900", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:57.328971 2024-09-11 09:02:57.328974 ef2927fe-763c-4334-b0cf-0372472a0dfb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/948719370"}, "pid": "2901", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:57.38549 2024-09-11 09:02:57.385493 7a78469c-d693-4f05-998c-7d0cff71c460 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/94872367X"}, "pid": "2902", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:57.453433 2024-09-11 09:02:57.453436 bf6b12c0-3cc2-485c-b9eb-c9872d33640d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/948936266"}, "pid": "2903", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:57.507964 2024-09-11 09:02:57.507968 5be477d3-79b6-48e5-acad-6fe6d5e0d863 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/94909613X"}, "pid": "2904", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:57.573847 2024-09-11 09:02:57.57385 9987fd71-c7ff-4923-938c-c82c2b341149 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/949101338"}, "pid": "2905", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:57.630771 2024-09-11 09:02:57.630774 be5e5be1-ecc8-4752-a308-68af8526e105 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/949309214"}, "pid": "2906", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:57.703115 2024-09-11 09:02:57.703118 d3ca293d-8435-4126-b9d9-3152465326f3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/949313874"}, "pid": "2907", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:57.75613 2024-09-11 09:02:57.756134 808b9668-cd01-4b47-9e5d-8cb56e7b3770 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/94933443X"}, "pid": "2908", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:57.812581 2024-09-11 09:02:57.812585 92415888-42c1-4d4f-9f5b-7e9a41e81595 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/949395161"}, "pid": "2909", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:57.879211 2024-09-11 09:02:57.879214 fbcb8793-c6d1-4f9d-986e-834e42eb5efe {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/949401560"}, "pid": "2910", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:57.944282 2024-09-11 09:02:57.944285 7a037b2a-8a2d-4ffe-a053-f797162c5543 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/949474851"}, "pid": "2911", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:57.999122 2024-09-11 09:02:57.999125 0b08facf-20ed-47cb-8e22-814d5ac6e604 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/949482110"}, "pid": "2912", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:58.056434 2024-09-11 09:02:58.056436 fea63f33-fb22-4fe5-8691-610d4f15b9dd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/949486779"}, "pid": "2913", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:58.116978 2024-09-11 09:02:58.116983 bbd9a545-df10-43ea-9d89-cb4dfdeca663 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/949496103"}, "pid": "2914", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:58.182325 2024-09-11 09:02:58.182329 b24a3bfe-e52c-486a-beb3-f828841bdfcb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/949525197"}, "pid": "2915", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:58.25796 2024-09-11 09:02:58.257964 b9d1b562-6a6a-4dda-bc87-e60c046529da {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/949560820"}, "pid": "2916", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:58.317666 2024-09-11 09:02:58.317672 d58e7a04-5126-4372-a207-8ac3d85b7708 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/949650978"}, "pid": "2917", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:58.383958 2024-09-11 09:02:58.383962 4d5f3f86-ad96-449c-b22b-44305202a42e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/949739960"}, "pid": "2918", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:58.444788 2024-09-11 09:02:58.444793 29b94b7c-f0dd-4c59-a111-177744952f5c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/949826758"}, "pid": "2919", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:58.513771 2024-09-11 09:02:58.513775 39212589-e9db-41ca-a239-7754e2dd3eef {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/949828246"}, "pid": "2920", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:58.573019 2024-09-11 09:02:58.573022 78dcd96c-51af-4049-8efc-bfc6c51920be {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/949857378"}, "pid": "2921", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:58.64227 2024-09-11 09:02:58.642275 baa68624-897e-44c0-831f-607bf4f3fc01 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/950041297"}, "pid": "2922", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:58.724292 2024-09-11 09:02:58.724295 d238d7e7-cdb2-423c-8ad1-0657c6cc8c32 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/950042544"}, "pid": "2923", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:58.799418 2024-09-11 09:02:58.799421 8c317f71-d371-43d2-abc0-b552c0769f3f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/950148148"}, "pid": "2924", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:58.857717 2024-09-11 09:02:58.857721 d6a33da5-f484-4e50-9047-069f77c7b99f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/950207535"}, "pid": "2925", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:58.914871 2024-09-11 09:02:58.914873 93faceff-d72f-4a53-b8be-c436dba36c71 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/950239623"}, "pid": "2926", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:58.972223 2024-09-11 09:02:58.972226 f394d6bc-9d40-40a0-92e8-f6a072b79beb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/950309788"}, "pid": "2927", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:59.028455 2024-09-11 09:02:59.02846 e7628eae-c736-4d94-a2d2-b0c52a35bf32 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/950323578"}, "pid": "2928", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:59.088558 2024-09-11 09:02:59.088561 a17e7b66-f0e7-4d44-826e-313181d796f2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/950389668"}, "pid": "2929", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:59.146176 2024-09-11 09:02:59.146181 86ddfb73-d7f6-4557-8c20-19e7497aa161 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/950389781"}, "pid": "2930", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:59.207871 2024-09-11 09:02:59.207875 d74ba7d5-cb1a-49a7-a23f-2d14bc632ea8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/950614076"}, "pid": "2931", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:59.263422 2024-09-11 09:02:59.263426 57c01f33-6487-4354-b985-8a188f82d377 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/950710776"}, "pid": "2932", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:59.314289 2024-09-11 09:02:59.314292 e83fb8ad-de88-4e31-bcb5-872b4afc5376 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/950729205"}, "pid": "2933", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:59.367538 2024-09-11 09:02:59.367543 47b2279f-d406-464b-a78b-7983431081b9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/950740136"}, "pid": "2934", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:59.423648 2024-09-11 09:02:59.423651 6ef5040b-e243-4c75-ae83-f04b6f6dfd81 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/950740381"}, "pid": "2935", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:59.476333 2024-09-11 09:02:59.476337 b3009650-847d-46e0-9c64-5acc0ddb8a27 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/950797855"}, "pid": "2936", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:59.533131 2024-09-11 09:02:59.533134 74a3f06f-8fa9-4ca4-9065-e5dc60060084 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95080617X"}, "pid": "2937", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:59.584903 2024-09-11 09:02:59.584908 acefea8c-5103-437a-99fa-eb5566b5d41b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/950819603"}, "pid": "2938", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:59.637219 2024-09-11 09:02:59.637223 f40eafd6-2e20-492a-b8cf-f7995f6856c1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/950857696"}, "pid": "2939", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:59.690324 2024-09-11 09:02:59.690327 e0e3c38b-8eaa-446c-ab2f-7b6884694345 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951162322"}, "pid": "2940", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:59.740125 2024-09-11 09:02:59.740127 7202e306-4308-430a-8917-63819c38b28e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951185314"}, "pid": "2941", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:59.796871 2024-09-11 09:02:59.796875 ee820d79-ff1d-4cde-b680-dedb7ac99e44 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951226029"}, "pid": "2942", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:59.85731 2024-09-11 09:02:59.857313 63b87e4f-95cb-4ec2-a0a2-a8f092e96c65 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951229982"}, "pid": "2943", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:59.917281 2024-09-11 09:02:59.917285 2e640091-2c66-4eb0-815d-138d5ffd44d5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95123272X"}, "pid": "2944", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:59.968902 2024-09-11 09:02:59.968905 59a4ff99-8397-4414-944a-c30e5f42b5b4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95125023X"}, "pid": "2945", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:00.02232 2024-09-11 09:03:00.022322 bc505331-0d65-4078-b45a-03e9d8fc3f92 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951301330"}, "pid": "2946", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:00.076404 2024-09-11 09:03:00.076407 569f3743-c40d-494d-b83a-a7bc2db90d5c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951303139"}, "pid": "2947", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:00.12778 2024-09-11 09:03:00.127783 954091fa-afd8-4c79-9294-1c7871ff14bf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951745956"}, "pid": "2948", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:00.177665 2024-09-11 09:03:00.177668 a2e22602-9083-4334-916f-251e45878ff7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951762990"}, "pid": "2949", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:00.228365 2024-09-11 09:03:00.228368 c9a5d9fc-847e-4548-bafd-81d630476e59 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951789252"}, "pid": "2950", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:00.280028 2024-09-11 09:03:00.280031 b658e66d-cb09-4007-9f34-ebf1562934a5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951803328"}, "pid": "2951", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:00.337454 2024-09-11 09:03:00.337456 afc9cbe7-ea11-4dda-9306-9b6d933bfacc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951803921"}, "pid": "2952", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:00.396514 2024-09-11 09:03:00.396517 2cb4b05c-75b5-4b16-b185-cb91b21bfccb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951806084"}, "pid": "2953", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:00.450893 2024-09-11 09:03:00.450896 5ed039b1-f59e-4c5d-b57e-1dca9036e327 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951828673"}, "pid": "2954", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:00.509925 2024-09-11 09:03:00.509928 ea9dcc69-ce57-4ba0-843f-bfb9eb0e0003 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951838482"}, "pid": "2955", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:00.562336 2024-09-11 09:03:00.562339 6e8f87a6-caaa-432e-812f-2d3630e69dc9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951842676"}, "pid": "2956", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:00.628295 2024-09-11 09:03:00.628299 33b9a5aa-dad4-4ea0-8c91-947eb5855269 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951852043"}, "pid": "2957", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:00.682881 2024-09-11 09:03:00.682884 5e3e3254-edc1-4ebe-ba3f-42bf9f0265e8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951854194"}, "pid": "2958", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:00.745832 2024-09-11 09:03:00.745835 0ac63389-9838-4904-a0fa-6575399a6fc7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951894048"}, "pid": "2959", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:00.800245 2024-09-11 09:03:00.800249 f641b134-0a73-41bf-bab8-dbe7000ed7e7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951894692"}, "pid": "2960", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:00.860204 2024-09-11 09:03:00.860208 cdbf313c-fe94-4210-bd9d-c55ae2529c9c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951913441"}, "pid": "2961", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:00.91294 2024-09-11 09:03:00.912944 d96bcc18-8c6a-4a1c-b83e-c4f1fbf5df48 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951920553"}, "pid": "2962", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:00.968991 2024-09-11 09:03:00.968995 0754f086-6afc-454e-950d-44f65b954eca {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951921258"}, "pid": "2963", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:01.029676 2024-09-11 09:03:01.02968 177b069c-8941-4bc0-bf87-3191c12c49e8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951945491"}, "pid": "2964", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:01.086763 2024-09-11 09:03:01.086767 6562c922-48e8-44c6-be41-cf157ace80d1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/951947915"}, "pid": "2965", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:01.141271 2024-09-11 09:03:01.141275 503696bd-eb11-4dad-a7bb-38483536fc96 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952056763"}, "pid": "2966", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:01.195892 2024-09-11 09:03:01.195896 101e3ac0-1f77-4123-b52b-1fda54a5574b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952070308"}, "pid": "2967", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:01.252408 2024-09-11 09:03:01.252413 45908dd3-e49b-44fd-a021-cb9db28e95cc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952091542"}, "pid": "2968", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:01.305334 2024-09-11 09:03:01.305338 2abd267f-b987-4a22-b831-f735504727e3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952101173"}, "pid": "2969", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:01.360315 2024-09-11 09:03:01.36032 79c94f22-0ef1-4b80-a0a6-6c85a07d2a7b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952199718"}, "pid": "2970", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:01.414881 2024-09-11 09:03:01.414885 3f39d2eb-5885-4334-8ae7-80e24a8e33f0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952207990"}, "pid": "2971", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:01.470871 2024-09-11 09:03:01.470874 151b973e-2804-4f35-b6fd-8b96caad3e4c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952241684"}, "pid": "2972", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:01.523062 2024-09-11 09:03:01.523065 daf60102-a21a-46ef-8757-b6f15e723c5a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952265168"}, "pid": "2973", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:01.576396 2024-09-11 09:03:01.576401 952d5b96-36a2-4477-ba68-3ab8dcf971b8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952327511"}, "pid": "2974", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:01.632576 2024-09-11 09:03:01.632581 67e96a82-f7f8-44dd-8a15-d91bae727dc4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95232752X"}, "pid": "2975", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:01.682878 2024-09-11 09:03:01.682881 1505d4dd-c206-4f63-9562-36dcf02d662d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952354527"}, "pid": "2976", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:01.738704 2024-09-11 09:03:01.738707 105dbc4a-0856-45fb-8dbb-ef8fab9ad4a5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952354969"}, "pid": "2977", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:01.794392 2024-09-11 09:03:01.794396 c37aded7-83f0-4fc8-9af4-ade777a34912 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952358492"}, "pid": "2978", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:01.856125 2024-09-11 09:03:01.856129 8c7ec128-c80f-4b2e-959a-a9ab85fe4488 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952379546"}, "pid": "2979", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:01.922402 2024-09-11 09:03:01.922406 eafa5679-a2a0-460d-975c-c0ebdf5ba1d0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952419351"}, "pid": "2980", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:01.974954 2024-09-11 09:03:01.974957 26060d3c-1541-4d9b-a951-dae5e95c8840 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952481464"}, "pid": "2981", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:02.03218 2024-09-11 09:03:02.032185 b9405c04-6415-42f2-ae60-c7d5669ff623 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952489546"}, "pid": "2982", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:02.101005 2024-09-11 09:03:02.10101 0fa767bb-a9d4-42a2-bd54-e8614879364b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952503980"}, "pid": "2983", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:02.158328 2024-09-11 09:03:02.15833 6bfa0334-569d-444f-bac6-e02c4440c602 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95250538X"}, "pid": "2984", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:02.227518 2024-09-11 09:03:02.227522 aff89265-b840-485e-a74f-7731a6445278 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952510995"}, "pid": "2985", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:02.285815 2024-09-11 09:03:02.285819 b330249e-9247-4997-9347-91b8359c50dc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95251592X"}, "pid": "2986", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:02.341586 2024-09-11 09:03:02.34159 59a7045c-a7ef-4c84-8951-4c4e88587c8d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952534924"}, "pid": "2987", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:02.399384 2024-09-11 09:03:02.399389 23a24ca8-ac58-43ae-8f37-78f34a6bf2e9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952540428"}, "pid": "2988", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:02.456788 2024-09-11 09:03:02.456792 eeb100a9-45c7-40a8-99d6-5652166e236d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952541084"}, "pid": "2989", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:02.515691 2024-09-11 09:03:02.515694 99501cd5-e7cb-4cfd-a3ac-1aba5126cc64 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952542811"}, "pid": "2990", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:02.572235 2024-09-11 09:03:02.572239 a1a64b46-72e9-4136-9bae-7ced64186e06 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952543141"}, "pid": "2991", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:02.63441 2024-09-11 09:03:02.634413 aa0287b1-7656-4f9c-bf2f-f527b20d7a8e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952571315"}, "pid": "2992", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:02.691816 2024-09-11 09:03:02.691819 5fd00acb-4418-4cab-b5d6-f9ea5f5a1588 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952607549"}, "pid": "2993", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:02.750388 2024-09-11 09:03:02.750392 bef21bc3-c51d-4a1c-9760-450623bf89a1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952616270"}, "pid": "2994", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:02.812844 2024-09-11 09:03:02.812846 f1144ae6-6910-4aea-92cc-51446471d93f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952753294"}, "pid": "2995", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:02.877905 2024-09-11 09:03:02.877909 f07da6b3-37d3-419d-ac2d-86e2dd1a7cf5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952753537"}, "pid": "2996", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:02.936904 2024-09-11 09:03:02.936908 b6a0e4d2-9001-45ad-bc88-4775bf858169 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952754606"}, "pid": "2997", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:02.997133 2024-09-11 09:03:02.997138 fcdd4b4d-5c49-4ef8-978f-dc7463f15c32 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952918838"}, "pid": "2998", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:03.067678 2024-09-11 09:03:03.067683 1391b1d8-37d5-4f7a-8d2b-56ca9e8be720 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/952923793"}, "pid": "2999", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:03.126441 2024-09-11 09:03:03.126445 f889e949-1e88-476d-be1a-00cf5e5a156e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/953095746"}, "pid": "3000", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:03.191366 2024-09-11 09:03:03.191369 cf5d03a9-67b5-4842-b704-180278af613f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95311886X"}, "pid": "3001", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:03.258339 2024-09-11 09:03:03.258343 ffc63774-5788-445a-a215-b20fa115a3d4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95315971X"}, "pid": "3002", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:03.330464 2024-09-11 09:03:03.330467 e6d3c4fc-80af-4b30-ad6d-95612a2a04cd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/953324559"}, "pid": "3003", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:03.386761 2024-09-11 09:03:03.386765 a81e3862-ffe3-48d6-88e6-9fb2d46d856a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/953324974"}, "pid": "3004", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:03.44552 2024-09-11 09:03:03.445523 636e5a59-0fb6-4a58-bf3e-2f74934225c0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/953476359"}, "pid": "3005", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:03.51379 2024-09-11 09:03:03.513793 cdcc0707-e917-4ffc-8d71-4efbac0d8dae {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/953477061"}, "pid": "3006", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:03.571651 2024-09-11 09:03:03.571656 ea0c11a7-412a-4c46-8313-6f3dcb9d4c02 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/953483401"}, "pid": "3007", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:03.688117 2024-09-11 09:03:03.68812 13d37ac8-7a67-48b5-8b72-b4566acda25a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/953537013"}, "pid": "3008", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:03.74443 2024-09-11 09:03:03.744434 7f55898f-05ef-4c99-bd09-abfb47e50a83 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95360795X"}, "pid": "3009", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:03.808919 2024-09-11 09:03:03.808924 6c750ee0-c858-4daa-a46c-15e800449f1c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/953608573"}, "pid": "3010", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:03.876164 2024-09-11 09:03:03.876168 76a813e8-7f1e-4365-b7a4-223bbec4176a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95364474X"}, "pid": "3011", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:03.936955 2024-09-11 09:03:03.936958 5015849c-370a-43aa-bee0-530ccfd84faf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/953644820"}, "pid": "3012", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:04.04192 2024-09-11 09:03:04.041924 3f91d317-7738-458b-982f-c95fcaa426c6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/953669033"}, "pid": "3013", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:04.10158 2024-09-11 09:03:04.101584 ee57dea6-8154-476d-bf7c-5504b460d12d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/953777839"}, "pid": "3014", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:04.158496 2024-09-11 09:03:04.1585 e9141716-3c59-4718-8d43-bdd1f34d7797 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/953979687"}, "pid": "3015", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:04.221707 2024-09-11 09:03:04.22171 4fb866e2-6e44-47b5-84a8-fa8780498fbd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/953980545"}, "pid": "3016", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:04.280518 2024-09-11 09:03:04.280522 403f0638-d9bb-4674-b455-1b16b0113d4a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954069773"}, "pid": "3017", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:04.353194 2024-09-11 09:03:04.353199 e8dca031-5835-4507-917c-151519f7167f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954132491"}, "pid": "3018", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:04.413058 2024-09-11 09:03:04.413063 2b4904aa-ac9b-474c-8426-3087be3aa100 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954184165"}, "pid": "3019", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:04.468569 2024-09-11 09:03:04.468572 d3889797-18b1-4ed3-ad82-b4839415f403 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954255011"}, "pid": "3020", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:04.529786 2024-09-11 09:03:04.52979 9704101f-3fbe-4723-aee4-7ed8ea7e746d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954328426"}, "pid": "3021", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:04.602501 2024-09-11 09:03:04.602503 781e486d-0d83-4460-9019-6a5e0c608458 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954330803"}, "pid": "3022", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:04.66192 2024-09-11 09:03:04.661924 c262a93f-08d3-49b5-90ea-6d3b91ce4688 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954352610"}, "pid": "3023", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:04.723256 2024-09-11 09:03:04.72326 c5f213d6-1f51-41e9-9309-715d7485a1f4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954405250"}, "pid": "3024", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:04.798376 2024-09-11 09:03:04.798381 86c9d8ef-a7ef-4338-a2d8-e580742428b8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954405986"}, "pid": "3025", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:04.854298 2024-09-11 09:03:04.854303 04e3c3bc-2588-4bb5-b360-b229b332e854 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954495098"}, "pid": "3026", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:04.915757 2024-09-11 09:03:04.91576 b368a602-4ab4-4525-8f74-552e92d66741 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954534530"}, "pid": "3027", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:04.985519 2024-09-11 09:03:04.985521 69c65b8e-50a7-43ae-b21e-c351987716da {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954535286"}, "pid": "3028", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:05.048312 2024-09-11 09:03:05.048315 4070ed25-80d1-41a0-b67f-4a959a1b952e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95454157X"}, "pid": "3029", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:05.108937 2024-09-11 09:03:05.108942 829d3887-0fd8-4726-9d70-b17cf3565c6c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954552873"}, "pid": "3030", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:05.17781 2024-09-11 09:03:05.177815 22d99f04-9775-4697-905b-ac3cb4c4edec {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954559592"}, "pid": "3031", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:05.238807 2024-09-11 09:03:05.23881 960048eb-8d57-45a1-9d2a-eecf599f557f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954569601"}, "pid": "3032", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:05.312291 2024-09-11 09:03:05.312295 48581a13-0b81-492e-9925-429227e25980 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954571398"}, "pid": "3033", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:05.367496 2024-09-11 09:03:05.3675 6838c9b8-c024-460f-ae93-682f984527fe {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954574354"}, "pid": "3034", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:05.433052 2024-09-11 09:03:05.433058 1fac8d90-7a7f-4972-8cba-c91cc19e96b1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954587693"}, "pid": "3035", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:05.50756 2024-09-11 09:03:05.507564 12c11d78-cc66-418d-9e74-11aa55a94b76 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954589262"}, "pid": "3036", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:05.57331 2024-09-11 09:03:05.573316 0743f6db-451f-4812-9c9c-14c157d4b7ec {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954590848"}, "pid": "3037", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:05.656329 2024-09-11 09:03:05.656336 a1c4f030-5453-479f-9eb5-685d1d24de23 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954619595"}, "pid": "3038", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:05.734719 2024-09-11 09:03:05.734725 834d0f65-be7b-45a2-acaf-2a0a0aa85b41 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954621131"}, "pid": "3039", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:05.803327 2024-09-11 09:03:05.803332 5f523527-834d-4818-a5ba-ab72ca376581 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954862805"}, "pid": "3040", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:05.872892 2024-09-11 09:03:05.872896 d0110066-852b-4b4c-99fd-581c05296579 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954863127"}, "pid": "3041", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:05.950819 2024-09-11 09:03:05.950822 a31c1253-1425-4d9f-9823-47ebdbe89e24 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954876539"}, "pid": "3042", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:06.020131 2024-09-11 09:03:06.020136 13dfd5aa-a726-4912-aa2b-d0958de89d7a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/954882571"}, "pid": "3043", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:06.1054 2024-09-11 09:03:06.105405 cd4e0637-398a-4d5f-8e71-5596b8bd52f8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95500778X"}, "pid": "3044", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:06.174742 2024-09-11 09:03:06.174746 d335e4e8-f89c-4e62-b380-a858afbbb4e3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/955030080"}, "pid": "3045", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:06.237628 2024-09-11 09:03:06.237634 edf99148-f82c-48dc-976c-aa957bfb85fb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/955046475"}, "pid": "3046", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:06.300271 2024-09-11 09:03:06.300277 54b66881-19d7-4ed8-8c47-f33d79cccd78 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/955064813"}, "pid": "3047", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:06.358388 2024-09-11 09:03:06.358392 bfaba14e-20e3-4705-a73b-7bf9ce6bf6ba {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/955092523"}, "pid": "3048", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:06.416153 2024-09-11 09:03:06.416156 a4438823-a68f-40f5-93d2-284356640809 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95511182X"}, "pid": "3049", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:06.4728 2024-09-11 09:03:06.472803 6ece4e61-1bb3-4b0c-9eb2-23afbd35249c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95511201X"}, "pid": "3050", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:06.538043 2024-09-11 09:03:06.538048 ba702ddb-4573-41c9-89ac-9a55e0e4bb41 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/955116635"}, "pid": "3051", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:06.605524 2024-09-11 09:03:06.605528 b3af1578-1973-4ce7-9700-d30ae7866780 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/955119413"}, "pid": "3052", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:06.662279 2024-09-11 09:03:06.662282 6057cb68-2a86-4bb8-8e99-4008b65862cf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/955121647"}, "pid": "3053", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:06.722531 2024-09-11 09:03:06.722536 5bb3f41d-e4e1-4219-b304-8585335469f0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/955190908"}, "pid": "3054", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:06.798085 2024-09-11 09:03:06.798089 9e731870-0c5a-48ea-82bf-500da9aadc67 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/955382378"}, "pid": "3055", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:06.854869 2024-09-11 09:03:06.854875 11dc0560-699b-4530-b1de-666dc80aba44 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/955401976"}, "pid": "3056", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:06.914784 2024-09-11 09:03:06.914787 dac95606-4de4-4c18-8f55-f122793f26e1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/955431425"}, "pid": "3057", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:06.979408 2024-09-11 09:03:06.979412 fced8d48-b3a1-4557-a6dd-717403be89de {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/955432774"}, "pid": "3058", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:07.037826 2024-09-11 09:03:07.03783 a475e639-6c64-42ce-bf13-af429325b159 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/955611423"}, "pid": "3059", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:07.099951 2024-09-11 09:03:07.099956 3e4f4f2f-ca12-495e-8a33-15fe1393f5db {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/955736374"}, "pid": "3060", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:07.161155 2024-09-11 09:03:07.161159 9b9ec2df-370b-4638-a52d-75983932784f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/955740223"}, "pid": "3061", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:07.220254 2024-09-11 09:03:07.220259 3879ba12-ce60-4010-b619-800c44110a49 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/955746256"}, "pid": "3062", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:07.280247 2024-09-11 09:03:07.280249 935376e9-b2f4-4a75-bac1-4b04def7d187 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/955966566"}, "pid": "3063", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:07.341896 2024-09-11 09:03:07.341899 059707aa-4cfc-4f93-9754-26ac8c2749b0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/956291279"}, "pid": "3064", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:07.415612 2024-09-11 09:03:07.415616 e96cc792-1e55-46ad-9170-3d33c6e51fbb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/956483542"}, "pid": "3065", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:07.476383 2024-09-11 09:03:07.476385 ddad0089-9f94-4614-9876-417d1bba3f7b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/956528775"}, "pid": "3066", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:07.536945 2024-09-11 09:03:07.536948 f7942439-b309-4a8e-81cf-9f73c84d871a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/956529445"}, "pid": "3067", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:07.607822 2024-09-11 09:03:07.607826 307731dd-7277-4f52-9384-94b814573dd1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/956539564"}, "pid": "3068", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:07.671993 2024-09-11 09:03:07.671996 b9ffdcad-5c17-45e8-b3a4-b61d7f5078f9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/956546927"}, "pid": "3069", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:07.744881 2024-09-11 09:03:07.744884 04c7f108-515c-4a87-a98e-7c982c5d067c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/956548660"}, "pid": "3070", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:07.847308 2024-09-11 09:03:07.847313 24af75b7-6a97-40c5-95be-f9770adc8d19 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/956555225"}, "pid": "3071", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:07.91534 2024-09-11 09:03:07.915344 df998fcb-a904-4089-b40e-f29e2933d43e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/956579760"}, "pid": "3072", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:07.988856 2024-09-11 09:03:07.98886 cf206398-5103-48f3-8f8f-92925604b9d1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/956627536"}, "pid": "3073", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:08.062592 2024-09-11 09:03:08.062596 1fe9413b-628a-4974-9430-2afe997119f3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/956749232"}, "pid": "3074", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:08.146089 2024-09-11 09:03:08.146093 244ae6b6-0c36-4460-a62f-fb46ff8ef762 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95679615X"}, "pid": "3075", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:08.208774 2024-09-11 09:03:08.208778 5c16ba2e-8295-4476-be24-8937a7b41328 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/956827195"}, "pid": "3076", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:08.26876 2024-09-11 09:03:08.268763 f1d9c798-3104-47da-a23a-2d953fea2295 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/956831044"}, "pid": "3077", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:08.339991 2024-09-11 09:03:08.339993 2bd39bdd-402b-43cc-a6ec-660c8e0eb883 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/956917054"}, "pid": "3078", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:08.400282 2024-09-11 09:03:08.400286 e63ae355-9c96-4f7d-a6ca-b8dfb2577021 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/956976999"}, "pid": "3079", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:08.460262 2024-09-11 09:03:08.460266 3b79fcde-ea0f-4c35-a4e2-af7e563098af {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/956990223"}, "pid": "3080", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:08.515632 2024-09-11 09:03:08.515635 6cd39743-fafb-496f-94b2-473f555a2e75 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/956994679"}, "pid": "3081", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:08.578498 2024-09-11 09:03:08.57853 4bcfec75-17f1-4c10-9406-04f373b0a4bb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957023235"}, "pid": "3082", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:08.636339 2024-09-11 09:03:08.636342 9a510d12-fe6a-4739-989d-cd75380fcce6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957059590"}, "pid": "3083", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:08.690828 2024-09-11 09:03:08.690831 580101b6-c58b-4966-b84b-5fcaed1b795f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957060149"}, "pid": "3084", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:08.74894 2024-09-11 09:03:08.748942 aeba7529-4a6a-4df3-88cd-398f8703dbf7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957075405"}, "pid": "3085", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:08.809637 2024-09-11 09:03:08.80964 d985444a-3579-4530-bdcc-44adf84945eb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957106408"}, "pid": "3086", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:08.873727 2024-09-11 09:03:08.87373 2924fa48-7713-42b3-8483-ab069bb89dbd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957164599"}, "pid": "3087", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:08.931174 2024-09-11 09:03:08.931179 e7a078ad-2ad4-4470-9e62-f74c63f989e3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957177879"}, "pid": "3088", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:08.994383 2024-09-11 09:03:08.994385 d606c25a-b1d5-46d7-8cdb-4df319a05b3b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95717926X"}, "pid": "3089", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:09.05217 2024-09-11 09:03:09.052172 9adf66ce-3896-4839-b336-2a08c8edb62c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957186185"}, "pid": "3090", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:09.124861 2024-09-11 09:03:09.124866 08126717-97bf-447c-84b9-600eca900195 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957223242"}, "pid": "3091", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:09.182436 2024-09-11 09:03:09.182439 8cea18c3-5149-4632-8e4c-b08679a618c9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957263511"}, "pid": "3092", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:09.237579 2024-09-11 09:03:09.237582 098b9abd-9fc0-4168-bfcd-395653eedf2b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957268688"}, "pid": "3093", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:09.299175 2024-09-11 09:03:09.299179 31022d12-e509-4472-b8af-a2395dce2e9f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957348924"}, "pid": "3094", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:09.357592 2024-09-11 09:03:09.357596 3a447f45-586f-4a07-94dd-1eb2d014220d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957354096"}, "pid": "3095", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:09.429695 2024-09-11 09:03:09.429698 dbed88d3-85bf-42de-a28f-d2a9dd3a96aa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957365993"}, "pid": "3096", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:09.483723 2024-09-11 09:03:09.483725 c9fce48f-bc72-4e8f-ac0a-f8bad36580de {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957382332"}, "pid": "3097", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:09.542462 2024-09-11 09:03:09.542466 63cce2fe-9ca6-4fce-aa19-9c454810b870 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957433158"}, "pid": "3098", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:09.60667 2024-09-11 09:03:09.606673 659285f3-ebef-4fdd-b6d7-960c47abbe7b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95746214X"}, "pid": "3099", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:09.677965 2024-09-11 09:03:09.67797 8e49ee00-2a95-4716-bafb-15b3e27f6a11 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957467303"}, "pid": "3100", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:09.734789 2024-09-11 09:03:09.734794 b1e48d99-7da6-493a-8108-5e40c6585875 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957488548"}, "pid": "3101", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:09.805256 2024-09-11 09:03:09.805261 7593b267-ca35-4549-a036-83fe9889a8d1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957490186"}, "pid": "3102", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:09.871082 2024-09-11 09:03:09.871085 e603ccd3-67ef-4c9b-8a0f-cd4857415690 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957496729"}, "pid": "3103", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:09.927535 2024-09-11 09:03:09.927538 b6ad3dfc-9d37-41ef-9458-a5d231f5b4d1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957503083"}, "pid": "3104", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:09.982487 2024-09-11 09:03:09.982491 f1a7af2c-bd7d-413a-90e9-de020f2e3614 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957506880"}, "pid": "3105", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:10.040104 2024-09-11 09:03:10.040108 70835d9b-bcd9-4911-85bd-53d5f8b5a2aa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957853408"}, "pid": "3106", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:10.099101 2024-09-11 09:03:10.099104 21333b41-bde3-489b-b3cc-d8721b64ca53 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957923031"}, "pid": "3107", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:10.15974 2024-09-11 09:03:10.159744 f4c8868a-1ad6-4d9e-820f-949a43c63bfb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95792755X"}, "pid": "3108", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:10.21891 2024-09-11 09:03:10.218913 c8d22fbf-d183-4a5a-b106-f35efef231a7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957929331"}, "pid": "3109", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:10.27688 2024-09-11 09:03:10.276885 972f7c26-ed51-4eb4-ae3b-4259ffe3d3f7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957935625"}, "pid": "3110", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:10.336173 2024-09-11 09:03:10.336177 c69e736b-c1d6-49da-a3ad-b0a0423be9c7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957935900"}, "pid": "3111", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:10.397243 2024-09-11 09:03:10.397245 2fa741f9-11df-4ab7-b8e1-55e991449942 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95794988X"}, "pid": "3112", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:10.459172 2024-09-11 09:03:10.459176 3a0e7443-b22e-4174-8b39-22cf0df1298a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957954522"}, "pid": "3113", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:10.520433 2024-09-11 09:03:10.520435 e97c0dc6-359d-4304-9f2d-a8e3283354f0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95795624X"}, "pid": "3114", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:10.596402 2024-09-11 09:03:10.596407 5fd3b2ce-c364-4a83-83e4-edd750ed1054 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957957114"}, "pid": "3115", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:10.653566 2024-09-11 09:03:10.65357 7c962ca7-47e2-4162-9883-0d6dac86bb1e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957962703"}, "pid": "3116", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:10.712418 2024-09-11 09:03:10.712423 f2d028e3-652e-4a49-8371-563b0bbe546e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/957973497"}, "pid": "3117", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:10.77387 2024-09-11 09:03:10.773873 46e19bdc-0fe7-445e-a890-1a060a1f5c38 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95797728X"}, "pid": "3118", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:10.841682 2024-09-11 09:03:10.841686 2fe4931e-6758-45a4-a79c-949589641f67 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/958006873"}, "pid": "3119", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:10.903595 2024-09-11 09:03:10.903598 e087540f-6eb0-4883-bc98-1c3f1770db40 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/958094160"}, "pid": "3120", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:10.978009 2024-09-11 09:03:10.978012 4782a36c-3b11-44ec-8ae5-f6af724c3a86 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/958490139"}, "pid": "3121", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:11.040645 2024-09-11 09:03:11.040649 f4901cc3-9f2d-4a0a-88c2-45435ba67c75 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95858012X"}, "pid": "3122", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:11.111296 2024-09-11 09:03:11.111301 5a172f80-40d0-4612-8751-18ac722da52b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/958686424"}, "pid": "3123", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:33.433042 2024-09-11 09:06:33.433044 ba8212a3-edbe-4801-b89c-e8772191e899 {"pid": "6164", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003274907"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:11.253156 2024-09-11 09:03:11.253161 07d65cfa-3f70-4fdc-be0c-9c7cb5fd06a2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/958942900"}, "pid": "3125", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:11.313688 2024-09-11 09:03:11.313691 a34325c8-f702-4915-be43-e9fbb64a76b7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/958945861"}, "pid": "3126", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:11.375605 2024-09-11 09:03:11.37561 22aeaf3c-794a-4b70-b8c4-121159fe5d39 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/959006028"}, "pid": "3127", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:11.452798 2024-09-11 09:03:11.452803 d12274e7-e916-4f97-9273-223658cddd7a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/959176918"}, "pid": "3128", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:11.520609 2024-09-11 09:03:11.520613 4110c499-f553-4589-84bb-1f83976b427c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/959194975"}, "pid": "3129", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:11.5827 2024-09-11 09:03:11.582704 19e4433d-c1d7-403d-a4e7-12f4bd2ca78d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/959280944"}, "pid": "3130", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:11.644039 2024-09-11 09:03:11.644045 25f517de-4f47-45e7-8202-270a95c4dffd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/959307338"}, "pid": "3131", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:11.718334 2024-09-11 09:03:11.718339 c39e12d3-590c-4d53-8fc1-91353c78778a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/95933727X"}, "pid": "3132", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:11.776235 2024-09-11 09:03:11.776237 b7f026f1-6793-4840-9920-4009b3e1f796 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/959433953"}, "pid": "3133", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:11.838849 2024-09-11 09:03:11.838852 9c0da501-f011-4a53-91d9-0be6cc316fff {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/959524215"}, "pid": "3134", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:11.904792 2024-09-11 09:03:11.904796 1a51145d-02c4-415e-9016-eebaea0d5baa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/959547916"}, "pid": "3135", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:11.961822 2024-09-11 09:03:11.961827 c1d86e26-fb34-41b0-8647-0c599d176b28 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/959585605"}, "pid": "3136", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:12.018448 2024-09-11 09:03:12.018453 db42a1ef-6bc1-4121-aa18-54b6bf692eb5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/959713697"}, "pid": "3137", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:12.080947 2024-09-11 09:03:12.08095 430cc9eb-0f79-44ba-8621-cddfcf9f72c7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/959734708"}, "pid": "3138", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:12.183984 2024-09-11 09:03:12.183989 06c2bac3-25b9-45b7-b197-46d0636de8bb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/959910808"}, "pid": "3139", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:12.262154 2024-09-11 09:03:12.262157 52d94167-8777-42d7-8c77-cd8234f91629 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/960094873"}, "pid": "3140", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:12.329721 2024-09-11 09:03:12.329724 b459273a-eb32-4c4f-a2ad-6ccdc7754eee {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/960193812"}, "pid": "3141", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:12.412992 2024-09-11 09:03:12.412995 91f2eb1f-3d79-4d48-bd5e-d314b36ccf2f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/960331077"}, "pid": "3142", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:12.47761 2024-09-11 09:03:12.477614 e1e0dec2-7a36-4096-b00c-770c19e7b9ab {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/960331166"}, "pid": "3143", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:12.539414 2024-09-11 09:03:12.539419 aeac0b98-ec39-4de2-8020-f150e723aa07 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/960373527"}, "pid": "3144", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:12.603669 2024-09-11 09:03:12.603673 128cc74d-95af-4a6d-9b74-8ad0cfc54cdb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/960554440"}, "pid": "3145", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:12.679661 2024-09-11 09:03:12.679666 42aec3ca-a8eb-49e8-9be4-f50ee61196f7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/96055646X"}, "pid": "3146", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:12.782898 2024-09-11 09:03:12.782905 b6f83a2d-4066-4c35-8573-ea49559d39d6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/96056814X"}, "pid": "3147", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:12.857314 2024-09-11 09:03:12.857318 22bd2271-3db0-471f-bbd9-9aa6344582e6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/960574298"}, "pid": "3148", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:12.922412 2024-09-11 09:03:12.922416 e44415bb-dcc7-4d47-bd7d-5bb7804e4578 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/960693785"}, "pid": "3149", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:12.988633 2024-09-11 09:03:12.988636 af78dfa6-a96e-4557-acc3-c3d432f0acb9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/960722157"}, "pid": "3150", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:13.0596 2024-09-11 09:03:13.059605 6db04ec6-e354-42d7-8be8-071c6a706d80 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/960794093"}, "pid": "3151", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:13.128867 2024-09-11 09:03:13.12887 22b261fe-3bba-4700-bab9-57a76cd50b0c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/960796878"}, "pid": "3152", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:13.209018 2024-09-11 09:03:13.209023 75201f8e-f2fe-49f4-a7e8-b0b24ceb8667 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/960807128"}, "pid": "3153", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:13.272456 2024-09-11 09:03:13.272459 44e6bfad-c1d6-4ddd-b3cb-48bd1705a983 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/960812989"}, "pid": "3154", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:13.342467 2024-09-11 09:03:13.342471 5e87ca04-372a-4dd3-96d6-19a1a04837a7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/960819177"}, "pid": "3155", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:13.401755 2024-09-11 09:03:13.401759 1614df21-a1b2-402f-8562-7a6fc5d71cfc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/960819541"}, "pid": "3156", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:13.467402 2024-09-11 09:03:13.467408 d240d999-93b9-4f46-a3ba-e6880f7fa046 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/960823271"}, "pid": "3157", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:13.531405 2024-09-11 09:03:13.531409 56fd0958-483a-4410-909b-b329faf73b76 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/960928995"}, "pid": "3158", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:13.593978 2024-09-11 09:03:13.593983 9ca31597-45ea-4392-b8d1-5afef966a761 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961071435"}, "pid": "3159", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:13.658878 2024-09-11 09:03:13.658881 dffeeb3d-4086-4e99-81cc-80e2dd895c6f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/96107177X"}, "pid": "3160", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:13.722215 2024-09-11 09:03:13.722219 cd5a6d89-4397-4399-b66a-3ac03270f64e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961077816"}, "pid": "3161", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:13.785193 2024-09-11 09:03:13.785197 a6c81b3f-953e-43c2-8d38-c3bfcb5ce3bb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961083387"}, "pid": "3162", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:13.849897 2024-09-11 09:03:13.849901 5431efba-9fdd-4718-aa37-5556b6017af5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961086882"}, "pid": "3163", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:13.915168 2024-09-11 09:03:13.915171 fb36d89b-e7e1-42e4-8cfe-942bbc7043c2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961106565"}, "pid": "3164", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:14.012402 2024-09-11 09:03:14.012406 b1e10488-41f2-4353-a769-6c2e0d8c7e5b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961106646"}, "pid": "3165", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:14.080794 2024-09-11 09:03:14.080798 f06e07e3-645a-4b37-aaba-63ae11840195 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961106840"}, "pid": "3166", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:14.148817 2024-09-11 09:03:14.148821 848c8e32-fab6-4015-88b5-6143a9e95b13 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961293950"}, "pid": "3167", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:14.214775 2024-09-11 09:03:14.214778 8a4104e0-08db-4148-8175-6ba84d5467a3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961300515"}, "pid": "3168", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:14.282374 2024-09-11 09:03:14.282378 60b5b7be-815d-40f6-a6fd-034acdf9c3e6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961328495"}, "pid": "3169", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:14.348631 2024-09-11 09:03:14.348635 ca95e6b9-cb5a-401d-8497-08144fc3a9ba {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961329653"}, "pid": "3170", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:14.419203 2024-09-11 09:03:14.41921 c78d2d43-39af-4d99-b882-e3afbc33f849 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961333065"}, "pid": "3171", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:14.494494 2024-09-11 09:03:14.494497 43c549f8-ea24-4c4b-90b9-6e82f08876ef {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961337893"}, "pid": "3172", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:14.559922 2024-09-11 09:03:14.559926 591da387-5ac3-4ec2-b3ba-51747e1d49fd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961342153"}, "pid": "3173", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:14.636987 2024-09-11 09:03:14.63699 845dc37a-e8ca-4cfd-8868-041a0c41189e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961397047"}, "pid": "3174", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:14.711276 2024-09-11 09:03:14.71128 ec639289-df29-4076-b912-ebb2f7387956 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961400803"}, "pid": "3175", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:14.78698 2024-09-11 09:03:14.786985 f31f54a5-354c-432f-aeae-a96f444828aa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961589809"}, "pid": "3176", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:14.853503 2024-09-11 09:03:14.853508 553b2f81-2cfc-4646-a676-b78c98198352 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961631171"}, "pid": "3177", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:14.928929 2024-09-11 09:03:14.928932 6a4978d3-0827-4eaa-b36f-4356c71a7635 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961636270"}, "pid": "3178", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:14.995605 2024-09-11 09:03:14.995609 e616a0df-bbe1-4781-b835-3327537f483b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961646969"}, "pid": "3179", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:15.062315 2024-09-11 09:03:15.062319 b290bd8d-cc3f-4bb6-ab5b-cb6e0cca40ab {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961652276"}, "pid": "3180", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:15.143528 2024-09-11 09:03:15.143533 fbad60ac-87e5-4a61-b7c9-0a96501e7ad0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961659645"}, "pid": "3181", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:15.249968 2024-09-11 09:03:15.249972 0ecf3231-242a-4d48-9418-0cba86a3e756 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961729155"}, "pid": "3182", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:15.303253 2024-09-11 09:03:15.303257 a32ff4ae-16c4-4d2d-96bb-cdbdc4426d54 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961784334"}, "pid": "3183", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:15.362792 2024-09-11 09:03:15.362796 3c50e43a-0fa4-4c30-b17d-b2f5f2432dde {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961792426"}, "pid": "3184", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:15.42388 2024-09-11 09:03:15.423883 3f2e2278-9db8-413e-9e54-94b36407b3e4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961797568"}, "pid": "3185", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:15.481176 2024-09-11 09:03:15.481179 4efd21ac-8ff9-4b3c-ba30-77dc7e276ce0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/961798025"}, "pid": "3186", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:15.539877 2024-09-11 09:03:15.53988 9d4f5ef6-fc0f-43ba-a9c8-9500597a8420 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962037141"}, "pid": "3187", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:15.600769 2024-09-11 09:03:15.600773 296705eb-60b3-4666-9ea9-1dd8bdb9acff {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962243477"}, "pid": "3188", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:15.660987 2024-09-11 09:03:15.660991 c8dad7ae-2798-4645-abd7-e26b396052ce {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962251968"}, "pid": "3189", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:15.719779 2024-09-11 09:03:15.719783 5fe8a943-c95b-440e-88fe-295e81097c66 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/96233359X"}, "pid": "3190", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:15.778929 2024-09-11 09:03:15.778933 b940b5f1-0648-4622-a98a-297bbe0a88e8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962390097"}, "pid": "3191", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:15.839049 2024-09-11 09:03:15.839053 d9320e7a-083e-4f68-9664-6cd65512deb9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962446440"}, "pid": "3192", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:15.908622 2024-09-11 09:03:15.908626 8c47cf7f-eafd-401f-a55e-7498476f33d2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962450170"}, "pid": "3193", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:15.965678 2024-09-11 09:03:15.965682 97279698-6b46-463b-9e67-5c4c380c7b31 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962470929"}, "pid": "3194", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:16.0339 2024-09-11 09:03:16.033963 3ddc93aa-fcc3-49de-9711-307924d7ef6d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/96247357X"}, "pid": "3195", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:16.116865 2024-09-11 09:03:16.116867 1e8d413f-6a68-4b74-845d-f4148ee7ff0d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962498726"}, "pid": "3196", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:16.189327 2024-09-11 09:03:16.189333 687142c8-9fe5-4f3a-ae9a-4c2999ef3661 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962506168"}, "pid": "3197", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:16.25836 2024-09-11 09:03:16.258364 27841e66-0f83-40a6-97ea-d3750a54b107 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/96251716X"}, "pid": "3198", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:16.31883 2024-09-11 09:03:16.318834 975afa5c-f67c-469a-bd45-718efbcc4aed {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/96252736X"}, "pid": "3199", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:16.389268 2024-09-11 09:03:16.389271 72687b57-dca0-4cf9-a7d5-bc069da4c7c0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962530328"}, "pid": "3200", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:16.456438 2024-09-11 09:03:16.456442 846df7ad-3332-4501-a012-76c5fcf4ac5a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962533300"}, "pid": "3201", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:16.514891 2024-09-11 09:03:16.514895 6030eeea-263b-4c3a-847e-8bd7512eead9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962540196"}, "pid": "3202", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:16.572213 2024-09-11 09:03:16.572217 10192dfa-39a6-4d47-a293-347815a2a9a1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962545295"}, "pid": "3203", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:16.63257 2024-09-11 09:03:16.632573 c8b3e813-ff6e-43b7-ae54-4d71fb1a986c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962552380"}, "pid": "3204", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:16.689026 2024-09-11 09:03:16.689031 5128e842-8c28-4307-8ed0-37922d400e67 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962552569"}, "pid": "3205", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:16.744422 2024-09-11 09:03:16.744427 627a186a-e6ec-437b-88ba-a26c9f7e4a2f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962557110"}, "pid": "3206", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:16.797443 2024-09-11 09:03:16.797447 1fc0e695-3718-4dfc-955e-06edf4618c04 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962558931"}, "pid": "3207", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:16.851021 2024-09-11 09:03:16.851024 7ad8d8cc-63de-41fd-b124-d6d0894557ab {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962559512"}, "pid": "3208", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:16.904941 2024-09-11 09:03:16.904943 2eb98435-2b68-43f6-8654-5e9b2f7a117e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962562688"}, "pid": "3209", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:16.958482 2024-09-11 09:03:16.958487 542b7b93-93fd-4a1c-9766-a253fce3402c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962582697"}, "pid": "3210", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:17.013823 2024-09-11 09:03:17.013825 d1c60d13-a7aa-4158-b107-e97e451def05 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962587087"}, "pid": "3211", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:17.070972 2024-09-11 09:03:17.070975 73bd7759-2bb8-44e2-92b2-9faf34f5faaf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962615838"}, "pid": "3212", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:17.126054 2024-09-11 09:03:17.126058 75d0b54f-b367-41e2-8e02-8955cdc39cdb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962626554"}, "pid": "3213", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:17.178872 2024-09-11 09:03:17.178875 c367e7f4-d351-45b3-aa40-72799b6879bd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/96263025X"}, "pid": "3214", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:17.231197 2024-09-11 09:03:17.2312 83f9ad0e-b69f-4a6b-8d32-4c50ba240411 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962632058"}, "pid": "3215", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:17.282294 2024-09-11 09:03:17.282296 891f689f-ea2f-4c9f-a615-08df96ad22de {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962637289"}, "pid": "3216", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:17.334758 2024-09-11 09:03:17.334762 80de0f53-f2fd-4843-9813-d679b21bab72 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962660914"}, "pid": "3217", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:17.388082 2024-09-11 09:03:17.388088 f3010425-3e10-4518-8626-d8b592da5ac2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/96266734X"}, "pid": "3218", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:17.450832 2024-09-11 09:03:17.450835 3568aaf1-b72d-4f3f-abd1-b38a4e165e9b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962668389"}, "pid": "3219", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:17.521774 2024-09-11 09:03:17.521777 bde3710b-9847-42fc-a087-a8c5235ee475 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962669881"}, "pid": "3220", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:17.572948 2024-09-11 09:03:17.57295 ae88668f-d60f-428e-a788-c0b124838ae1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962941042"}, "pid": "3221", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:17.627138 2024-09-11 09:03:17.627142 fe3ea72e-0ae2-4e1d-a67b-f354ac82a8e4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/962948918"}, "pid": "3222", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:17.685488 2024-09-11 09:03:17.685494 0fdbb4e0-6bfd-4cdb-a79f-7a46a8776c25 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/96303409X"}, "pid": "3223", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:17.739199 2024-09-11 09:03:17.739203 c6b1dd36-b4a3-4e5f-8d64-8a984f0a6962 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963066536"}, "pid": "3224", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:17.795017 2024-09-11 09:03:17.795022 90c25b85-0a43-4161-b3b6-cee36fe77432 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963134205"}, "pid": "3225", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:17.845797 2024-09-11 09:03:17.845801 f0ab464f-7d86-426a-9098-29303c7310cf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963138812"}, "pid": "3226", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:17.898418 2024-09-11 09:03:17.898421 b87a2529-c4b7-4236-a4d5-2d3de018ba09 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963139460"}, "pid": "3227", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:17.954355 2024-09-11 09:03:17.954359 3ca3f1dd-5911-4618-b7f6-6ab0f27d3dec {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963225332"}, "pid": "3228", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:18.011325 2024-09-11 09:03:18.01133 b957aeef-1873-4434-b877-fc1015c63ee4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963233599"}, "pid": "3229", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:18.068125 2024-09-11 09:03:18.068129 e7274a1d-fd02-4c56-bb56-40b38f60d072 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963261959"}, "pid": "3230", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:18.120003 2024-09-11 09:03:18.120007 6bbf9f87-cbd1-4fcd-b785-e35d5c2ad371 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963262246"}, "pid": "3231", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:18.17267 2024-09-11 09:03:18.172673 e7ff208f-581e-4908-868f-69ba1af7c5d0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963262513"}, "pid": "3232", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:18.225959 2024-09-11 09:03:18.225962 640a1e65-78b7-47c6-a89e-f29ec5cae0f2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963299433"}, "pid": "3233", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:18.281148 2024-09-11 09:03:18.281152 608ec0ef-48ed-4d1f-b750-3995f2ebf789 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963317040"}, "pid": "3234", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:18.339861 2024-09-11 09:03:18.339864 1ba9ab96-8c19-40a1-9268-3eac249c0324 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963320343"}, "pid": "3235", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:18.393327 2024-09-11 09:03:18.393331 6731c2c2-5e3c-4359-82be-abd02044d667 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963327666"}, "pid": "3236", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:18.448213 2024-09-11 09:03:18.448216 4913b1c6-743a-4ebc-a959-5c709fac8769 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963329812"}, "pid": "3237", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:18.500502 2024-09-11 09:03:18.500507 26c93c86-ab01-472e-8835-c08ce4a2b76a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963342177"}, "pid": "3238", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:18.556246 2024-09-11 09:03:18.556249 f1588a01-75da-48bd-943c-31471f725c81 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963342231"}, "pid": "3239", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:18.6083 2024-09-11 09:03:18.608304 dbe0e808-f7dc-4092-9891-d70b5942c6c7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963348442"}, "pid": "3240", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:18.663352 2024-09-11 09:03:18.663356 9d6a091b-7a4f-43af-b28e-e5b2bd5bd835 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963366785"}, "pid": "3241", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:18.716892 2024-09-11 09:03:18.716895 fb5c71da-accc-464c-b6a4-177c77e61820 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963367781"}, "pid": "3242", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:18.768431 2024-09-11 09:03:18.768435 0bf4dcfd-ec3e-4512-a124-bfe1bfc40b07 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963388673"}, "pid": "3243", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:18.82817 2024-09-11 09:03:18.828174 20ca4ab6-a351-4391-8971-2fca604de66a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963410849"}, "pid": "3244", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:18.888494 2024-09-11 09:03:18.888499 19101610-1654-415d-b005-40713c4e4650 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963529137"}, "pid": "3245", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:18.941187 2024-09-11 09:03:18.941191 734c269d-f55b-4dc4-ae21-cfc1dd140a8b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963600346"}, "pid": "3246", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:18.994371 2024-09-11 09:03:18.994374 6ffa3273-7dad-45ac-ac4b-52c6ae365de9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/96365778X"}, "pid": "3247", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:19.047635 2024-09-11 09:03:19.047637 899117ff-3045-4fcc-8572-95a26fb55d41 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963822977"}, "pid": "3248", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:19.10131 2024-09-11 09:03:19.101314 856fb145-b8b1-4f09-b1d2-05178c165669 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963823388"}, "pid": "3249", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:19.154859 2024-09-11 09:03:19.154863 0c89ae05-b566-4b93-892c-e131a0d3a25a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963837532"}, "pid": "3250", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:19.212127 2024-09-11 09:03:19.21213 360baeff-01f2-440c-ab77-62c872fbbcfc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963859803"}, "pid": "3251", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:19.268685 2024-09-11 09:03:19.26869 19f63cd8-eeb9-4f6e-b3f9-4436db525f79 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/963859811"}, "pid": "3252", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:19.335292 2024-09-11 09:03:19.335296 ef9c00d9-ce63-4e81-91c4-cf5c4d205b3f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/964213427"}, "pid": "3253", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:19.395377 2024-09-11 09:03:19.39538 5cc73e98-60e4-4f94-be4d-d11009d308f0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/964214407"}, "pid": "3254", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:19.455309 2024-09-11 09:03:19.455313 eaae8871-00a3-452f-af35-731448e48fee {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/964225581"}, "pid": "3255", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:19.509231 2024-09-11 09:03:19.509236 64b989e7-1085-414d-a4f5-0e3f9f18ca68 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/964319020"}, "pid": "3256", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:19.567718 2024-09-11 09:03:19.567724 b9f25283-1f10-4076-a8ef-7fda38aed677 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/964322153"}, "pid": "3257", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:19.626949 2024-09-11 09:03:19.626953 a466b01f-0c02-4a00-a6d7-5656f57bc4ba {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/964379473"}, "pid": "3258", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:19.689032 2024-09-11 09:03:19.689038 89c6f80c-9baa-456b-b49f-a1868e3f2483 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/964421984"}, "pid": "3259", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:19.752159 2024-09-11 09:03:19.752164 7273e360-a0be-49c1-8c90-663497f68855 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/964495376"}, "pid": "3260", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:19.80659 2024-09-11 09:03:19.806593 c3303dba-041f-4791-ac97-6eb8aff8cb8d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/964501090"}, "pid": "3261", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:19.862204 2024-09-11 09:03:19.862209 ba2430e1-3f5c-406f-a659-a03d93140ef5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/964564491"}, "pid": "3262", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:19.919962 2024-09-11 09:03:19.919966 8f7360af-4cfb-47a3-9422-ebb220934428 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/964647222"}, "pid": "3263", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:19.981353 2024-09-11 09:03:19.981356 bb0557e1-0796-4036-a7d5-05ce00f0220f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/964653613"}, "pid": "3264", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:20.039439 2024-09-11 09:03:20.039442 d27d752a-8b30-4866-b823-79fde0c68ba1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/964715619"}, "pid": "3265", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:20.106508 2024-09-11 09:03:20.106512 dbe7ed3a-6515-4ddb-8770-55f3b15c0d58 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/964855380"}, "pid": "3266", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:20.182585 2024-09-11 09:03:20.182589 fb7410da-50b5-4af6-b5c0-a9788faa380b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/964861135"}, "pid": "3267", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:20.24168 2024-09-11 09:03:20.241684 b4e18d12-23aa-4ec0-a1e2-91e2e821a8bc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/96503545X"}, "pid": "3268", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:20.302029 2024-09-11 09:03:20.302034 993a3938-ee3f-4292-81a4-6f367162ede4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/965091961"}, "pid": "3269", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:20.380589 2024-09-11 09:03:20.380592 c96d055d-3ca9-4e6c-af18-564ab0cba7d7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/965120449"}, "pid": "3270", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:20.438963 2024-09-11 09:03:20.438968 33ff3494-4b62-4068-bfdd-cc1b1f541d3f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/965135217"}, "pid": "3271", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:20.500908 2024-09-11 09:03:20.500913 52e2ee8d-0390-4551-b23e-b2670c8e2acd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/965175251"}, "pid": "3272", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:20.558681 2024-09-11 09:03:20.558685 a1759037-d5b4-46ef-baaa-bdd805e50f21 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/965321827"}, "pid": "3273", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:20.617097 2024-09-11 09:03:20.617101 fd126d44-89b0-44d4-89e1-f186048b159e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/965330842"}, "pid": "3274", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:20.675766 2024-09-11 09:03:20.675771 8d8757dc-8921-4949-a677-06614a99993e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/965868915"}, "pid": "3275", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:20.74839 2024-09-11 09:03:20.748394 ff07605a-80db-433f-94e2-ce5cd7472635 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/966048636"}, "pid": "3276", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:20.808661 2024-09-11 09:03:20.808666 bed89b32-3e3c-4fb4-a08c-0291fa1c8f64 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/966525892"}, "pid": "3277", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:20.869619 2024-09-11 09:03:20.869623 3014634d-c77c-4f7f-a99b-47dfd80d8e45 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/966552997"}, "pid": "3278", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:20.938973 2024-09-11 09:03:20.938976 ff225ff8-7dbc-49a8-aee9-6f7d1e2eae09 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/966574982"}, "pid": "3279", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:20.998634 2024-09-11 09:03:20.998638 fb393da5-d692-4d61-a85b-fd3116d67646 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/967972817"}, "pid": "3280", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:21.055408 2024-09-11 09:03:21.055415 7196f6c3-a6c2-4c93-9e7b-f4572f0969ab {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/968070191"}, "pid": "3281", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:21.114697 2024-09-11 09:03:21.1147 0dc9f0f7-4435-4982-b5ed-8155ace0d3fe {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/968095615"}, "pid": "3282", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:21.17543 2024-09-11 09:03:21.175434 d8c8bf44-2751-46ff-93a8-a043ddc9d9bc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/968111521"}, "pid": "3283", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:21.235447 2024-09-11 09:03:21.235451 15629799-187e-41ca-9a57-7838c2d6c89f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/968131786"}, "pid": "3284", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:21.310726 2024-09-11 09:03:21.31075 4ff98daa-5688-420f-b9fc-1f9ca7d31deb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/968149766"}, "pid": "3285", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:21.410508 2024-09-11 09:03:21.410512 367a87eb-f0cd-4b35-b606-abd136075672 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/96815252X"}, "pid": "3286", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:21.482434 2024-09-11 09:03:21.482437 2a63f84c-71c8-4b31-ade4-e1d311cd3829 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/968164811"}, "pid": "3287", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:21.542443 2024-09-11 09:03:21.542447 7d132539-b657-4fca-aa35-86748a5d76d7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/968168221"}, "pid": "3288", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:21.606994 2024-09-11 09:03:21.606997 5c09a5a6-60fa-4b2f-a749-04a0cc920a3a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/968179002"}, "pid": "3289", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:21.683345 2024-09-11 09:03:21.683348 9da35101-75fe-42c5-9059-08b1b5fc7f78 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/96818734X"}, "pid": "3290", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:21.746665 2024-09-11 09:03:21.746668 518f0d65-ea54-407c-857c-84f9088cfc21 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/968195938"}, "pid": "3291", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:21.826568 2024-09-11 09:03:21.826573 c222778f-79e7-4c2a-88ab-9c8fd0b08739 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/968196349"}, "pid": "3292", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:21.883218 2024-09-11 09:03:21.883222 6771a83d-0a88-4367-ba7d-d174da71d72f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/968265642"}, "pid": "3293", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:21.942848 2024-09-11 09:03:21.942852 32f67429-e5e0-4eaa-a155-7d9ad9525ee1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/968285988"}, "pid": "3294", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:22.014245 2024-09-11 09:03:22.01425 7ff0e0d6-39f9-437e-ac63-cfc83ee63b2d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/968290981"}, "pid": "3295", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:22.079711 2024-09-11 09:03:22.079716 c3873c03-d25b-444a-bac9-43a8ae152c05 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/968305768"}, "pid": "3296", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:22.148573 2024-09-11 09:03:22.148577 61179c7d-0eeb-48e4-a2bd-c005f8c1bbfa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/968777449"}, "pid": "3297", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:22.228934 2024-09-11 09:03:22.228937 c6e7cedb-8766-4fbf-838c-ae1989640e5c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/968883982"}, "pid": "3298", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:22.352856 2024-09-11 09:03:22.352869 4150d937-a67d-4fee-a855-74ae0a26d21b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/968989454"}, "pid": "3299", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:22.440394 2024-09-11 09:03:22.440399 1a4b393c-547d-4973-9378-92a70957b19e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/968989640"}, "pid": "3300", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:22.497989 2024-09-11 09:03:22.497992 808f1a52-a568-498b-b7e9-223473085e3a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/969011911"}, "pid": "3301", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:22.55576 2024-09-11 09:03:22.555765 dee4a45c-7e40-43d2-8f4f-15924cf61132 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/969012055"}, "pid": "3302", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:22.615536 2024-09-11 09:03:22.615538 2c001cc7-0de1-4eec-b71e-989c88ab4ba5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/969012462"}, "pid": "3303", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:22.670528 2024-09-11 09:03:22.670531 efc2ea30-20d4-46c8-9dac-ccd53ef06252 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/969026927"}, "pid": "3304", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:22.735989 2024-09-11 09:03:22.735993 999b5a14-bc26-42b6-9bcc-44cb3caccac4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/969033788"}, "pid": "3305", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:22.797457 2024-09-11 09:03:22.797461 f802db50-9e95-4b61-9df1-57ced8a7924c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/969045859"}, "pid": "3306", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:22.876792 2024-09-11 09:03:22.876796 c6c185e4-100c-4940-8b8b-b3b11661e096 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/969048009"}, "pid": "3307", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:22.945463 2024-09-11 09:03:22.945468 f08e670b-6e3b-465a-8705-ded07c9a4d65 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/969051492"}, "pid": "3308", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:23.009621 2024-09-11 09:03:23.009626 f52333cb-6270-420f-8dcf-c5a57c52d9fe {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/969056370"}, "pid": "3309", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:23.07062 2024-09-11 09:03:23.070624 42436f9f-faa7-4410-b4f8-563aca9b217c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/969521367"}, "pid": "3310", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:23.136351 2024-09-11 09:03:23.136356 aebd2668-98c8-4fb9-b6ef-6cbecad24315 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/969522304"}, "pid": "3311", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:23.194208 2024-09-11 09:03:23.194213 7957b4a8-ebcd-4f37-8b66-19d82aabffe6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/96954135X"}, "pid": "3312", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:23.253352 2024-09-11 09:03:23.253357 f140f26b-0588-4e06-889b-60ee55009695 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/96954457X"}, "pid": "3313", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:23.324936 2024-09-11 09:03:23.324939 a820a739-d8c1-4888-8554-f92cb1c9f0e4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/969559933"}, "pid": "3314", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:23.380973 2024-09-11 09:03:23.380977 0bc58c66-ac12-4836-b61b-406de7c44cb2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/96999463X"}, "pid": "3315", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:23.439189 2024-09-11 09:03:23.439191 c49905fe-f315-4d88-a96e-deae08562baf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/97001418X"}, "pid": "3316", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:23.507528 2024-09-11 09:03:23.507532 98b09f00-2510-4b47-a923-cd9e8b9df42b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/970052987"}, "pid": "3317", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:23.566548 2024-09-11 09:03:23.566552 fddf3efe-a9bd-4e0d-a33b-9d2f85cfefef {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/970275323"}, "pid": "3318", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:23.624245 2024-09-11 09:03:23.624247 fb2d5cd6-1f58-4b83-b4c9-0b04eb528bb8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/970287798"}, "pid": "3319", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:23.683307 2024-09-11 09:03:23.683311 b715d2b2-fad6-4d8c-99ad-104db79937ec {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/970302339"}, "pid": "3320", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:23.740431 2024-09-11 09:03:23.740434 b1c37dc1-fcaa-41ca-b816-7470389e049a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/97030482X"}, "pid": "3321", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:23.806684 2024-09-11 09:03:23.806687 6f008fbf-7b9d-4d7a-a841-cd167d4a5f75 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/970399340"}, "pid": "3322", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:23.872214 2024-09-11 09:03:23.872216 ecd35b48-df6a-49c4-983a-dcb5f19c48c8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/970821794"}, "pid": "3323", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:23.936741 2024-09-11 09:03:23.936744 372ad4d4-bce8-4350-9047-c5923c07f120 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/971124272"}, "pid": "3324", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:24.005429 2024-09-11 09:03:24.005433 4fcb5c0c-89ec-4406-83b4-818459e8fad0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/971124728"}, "pid": "3325", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:24.068925 2024-09-11 09:03:24.068929 bf95534e-cb49-4ec3-9b1c-9692beefcc41 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/971140162"}, "pid": "3326", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:24.12585 2024-09-11 09:03:24.125854 b022b37e-c0be-42c1-b67b-586a576b3f4f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/971140642"}, "pid": "3327", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:24.181531 2024-09-11 09:03:24.181534 d7a7dfd5-096c-48fd-9828-7140296d3141 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/971146853"}, "pid": "3328", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:24.242404 2024-09-11 09:03:24.242408 257e55ea-250d-453b-9145-212cb1187d76 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/971628246"}, "pid": "3329", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:24.297959 2024-09-11 09:03:24.297962 2d1779b1-97c2-4440-8645-629108d9f284 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/971687315"}, "pid": "3330", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:24.356881 2024-09-11 09:03:24.356884 c2222e1e-53aa-4477-afd7-0fc1c45730c8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/971792496"}, "pid": "3331", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:24.42562 2024-09-11 09:03:24.425624 692dda8e-edc8-4f94-bbf5-816a6e0db89c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/971798311"}, "pid": "3332", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:24.488149 2024-09-11 09:03:24.488154 9179af64-6ece-48b9-9ddc-f794dec0a6a9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/97198364X"}, "pid": "3333", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:24.550309 2024-09-11 09:03:24.550311 3f14fd1f-150b-42be-9cf7-b8539998c912 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/972482830"}, "pid": "3334", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:24.624235 2024-09-11 09:03:24.624239 211e320a-beef-4703-8a3a-92b9fc2b3c4b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/972926496"}, "pid": "3335", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:24.68098 2024-09-11 09:03:24.680983 9f76994f-4cf8-4f43-b726-bad5ee0dff07 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/972927743"}, "pid": "3336", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:24.744726 2024-09-11 09:03:24.744729 1483103d-e5b4-495a-aa98-24c218c8f3b0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/972947191"}, "pid": "3337", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:24.814826 2024-09-11 09:03:24.814832 74692f6e-9fff-44f5-acf5-50ebdf8701cd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/972955372"}, "pid": "3338", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:24.87487 2024-09-11 09:03:24.874873 2117461c-eb5f-4f99-bf72-3eed3efbe016 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/972969608"}, "pid": "3339", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:24.933862 2024-09-11 09:03:24.933866 a3567233-a88d-41bc-8a8a-da83b6da7fbc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/972975128"}, "pid": "3340", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:25.006294 2024-09-11 09:03:25.006297 43d359fc-12e1-4702-8748-cd25cc09f776 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/972990437"}, "pid": "3341", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:25.07658 2024-09-11 09:03:25.076585 9a40ddad-fdfd-47f2-be5f-e2d4ecb6f394 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/973004010"}, "pid": "3342", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:25.137498 2024-09-11 09:03:25.137501 976c8c02-f2b2-47e1-9f6d-7ca675d9088b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/973016515"}, "pid": "3343", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:25.197738 2024-09-11 09:03:25.197742 a5cd5730-5bbf-419f-bbaa-0b60b7dba9da {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/973017856"}, "pid": "3344", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:25.298249 2024-09-11 09:03:25.298252 71b5ce43-84cd-4827-9f33-4758a76fde1e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/973277645"}, "pid": "3345", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:25.354491 2024-09-11 09:03:25.354495 58801615-20cc-4bf0-91a2-bec9c0119740 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/97372076X"}, "pid": "3346", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:25.413873 2024-09-11 09:03:25.413877 dcb7a13d-8045-44d7-9e37-965a3bf6ad1a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/973728558"}, "pid": "3347", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:25.470477 2024-09-11 09:03:25.47048 895004cf-66d0-488e-9237-a69d8250dce8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/973729619"}, "pid": "3348", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:25.531019 2024-09-11 09:03:25.531022 2659be68-64ba-4e70-bccb-68ce8c5862b9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/973743220"}, "pid": "3349", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:25.586881 2024-09-11 09:03:25.586891 4903198c-aba6-4904-b334-5994da8a3fe9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/973753544"}, "pid": "3350", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:25.647237 2024-09-11 09:03:25.647241 f93231f0-1f54-4d58-a05c-9eb9e2168836 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/973763361"}, "pid": "3351", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:25.703126 2024-09-11 09:03:25.703129 82f5b4c9-9d7f-4b6c-88ca-4945c587c2a7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/973769998"}, "pid": "3352", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:25.757972 2024-09-11 09:03:25.757976 b6b28fdc-7b7d-4605-95df-291ea8258138 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/973778318"}, "pid": "3353", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:25.817747 2024-09-11 09:03:25.81775 72c6006a-cd06-4d36-84e7-a11df875c9f4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/97378637X"}, "pid": "3354", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:25.875708 2024-09-11 09:03:25.87571 279690ed-1a59-4dae-9dab-0cab2d2dcef6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/973790636"}, "pid": "3355", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:25.948888 2024-09-11 09:03:25.94889 5251512f-7a44-492f-b3a0-1aad027b98f1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/973818522"}, "pid": "3356", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:26.012669 2024-09-11 09:03:26.012675 41971e55-dff0-44c0-bd1f-bf0e34ee0700 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/973819987"}, "pid": "3357", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:26.072739 2024-09-11 09:03:26.072742 afd8f267-6ec4-4692-89c0-d8ec9e2b40c9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/973828269"}, "pid": "3358", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:26.136058 2024-09-11 09:03:26.136064 13dec372-48f4-4aff-af2c-d2eefdc6512a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/973832231"}, "pid": "3359", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:26.212428 2024-09-11 09:03:26.212431 ad979f8d-cce1-4717-9fb9-ac9024cc4be2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/973847476"}, "pid": "3360", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:26.267619 2024-09-11 09:03:26.267624 d6b821aa-7a30-45d0-87a5-00672bf0988b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/973854790"}, "pid": "3361", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:26.326522 2024-09-11 09:03:26.326526 4ef4a730-bdf6-4b6a-b072-4478980bef10 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/973987278"}, "pid": "3362", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:26.381057 2024-09-11 09:03:26.381062 4190f88e-7ce7-46c5-b6a0-662ef4efea26 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/973999527"}, "pid": "3363", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:26.437305 2024-09-11 09:03:26.43731 4e4b765d-8029-444c-9de8-9593578f3fde {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/974085812"}, "pid": "3364", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:26.492597 2024-09-11 09:03:26.492601 dc046930-b9e7-4116-adff-0c92a4967dfb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/974127469"}, "pid": "3365", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:26.54997 2024-09-11 09:03:26.549973 da6b5226-c4b8-4458-b9d2-707a7fda54c1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/974169722"}, "pid": "3366", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:26.609624 2024-09-11 09:03:26.609626 4e38e7c2-4172-47d8-9700-05acb659a7a5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/974334650"}, "pid": "3367", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:26.676423 2024-09-11 09:03:26.676427 2e0511d9-2ab4-494a-869c-bdfdaa0a6b97 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/974336076"}, "pid": "3368", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:26.735925 2024-09-11 09:03:26.735928 f8ff021e-5e17-4d5b-a52a-87b1859be96c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/974346063"}, "pid": "3369", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:26.798385 2024-09-11 09:03:26.798389 54cf883f-2906-4fa9-a53a-9202053c177c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/974357685"}, "pid": "3370", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:26.852607 2024-09-11 09:03:26.852611 567b3e1c-5a86-46cd-9787-f0b4537501e9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/974385492"}, "pid": "3371", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:26.91529 2024-09-11 09:03:26.915294 fbe66fbb-573a-4c24-93f5-f923c70fb46b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/974428345"}, "pid": "3372", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:26.972005 2024-09-11 09:03:26.972008 f792314c-51e0-4957-a226-a6cb5dcb99ca {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/974489530"}, "pid": "3373", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:27.029924 2024-09-11 09:03:27.029927 c9bf28b7-22c7-44ad-9537-d4e4a21d008b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/974648884"}, "pid": "3374", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:27.086567 2024-09-11 09:03:27.086571 3680e32f-3a49-4c1b-884c-37606c07cf3e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/974981990"}, "pid": "3375", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:27.150831 2024-09-11 09:03:27.150835 9be4d417-9a34-4153-a9c6-4ccde4560073 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/975310844"}, "pid": "3376", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:27.208325 2024-09-11 09:03:27.208328 abefef61-195d-4c15-9e42-72bca8140e07 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/975409239"}, "pid": "3377", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:27.270867 2024-09-11 09:03:27.27087 db38ac40-6130-4abb-bcd2-48d1397269b7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/975409255"}, "pid": "3378", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:27.336368 2024-09-11 09:03:27.33637 274adc1b-7954-4a4e-9394-eb3f54035eb8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/975411659"}, "pid": "3379", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:27.414286 2024-09-11 09:03:27.414289 aaeedd53-acfc-42f7-b5b3-52ae49e49e47 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/97542890X"}, "pid": "3380", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:27.482512 2024-09-11 09:03:27.482515 52c14d4a-47bc-4df3-bf63-6bde3d6247b6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/975483935"}, "pid": "3381", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:27.541336 2024-09-11 09:03:27.54134 0bc7a96c-54e3-47b5-bbe6-04b175e8b6c1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/975497278"}, "pid": "3382", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:27.617014 2024-09-11 09:03:27.61702 32bcf063-8225-4213-9c26-9734b7c1391d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/975537016"}, "pid": "3383", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:27.676067 2024-09-11 09:03:27.676072 abb1c60d-aec1-45ef-95d8-69b77c66efd1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/975540289"}, "pid": "3384", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:27.731138 2024-09-11 09:03:27.731143 765f7ac9-8cc2-4d0e-a63c-466760d49489 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/97554134X"}, "pid": "3385", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:27.790839 2024-09-11 09:03:27.790844 375ea0e8-e083-4bd4-ab74-8b301d1f0147 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/975543644"}, "pid": "3386", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:27.849432 2024-09-11 09:03:27.849436 f391b9f2-8a37-49cc-ab6f-f2993cfa065e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/975561243"}, "pid": "3387", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:27.903918 2024-09-11 09:03:27.903921 bfc7e93a-d42e-44cd-846c-8c3e3fd14422 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/975774719"}, "pid": "3388", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:27.962616 2024-09-11 09:03:27.962618 e23e6a6d-047c-440a-89f9-2f31d6388251 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/975895346"}, "pid": "3389", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:28.020428 2024-09-11 09:03:28.020431 3a625fe2-ed00-4f30-a7be-a0b35f3f2b52 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/976006332"}, "pid": "3390", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:28.079951 2024-09-11 09:03:28.079956 bdc7b42e-d5ce-4e8c-a3fb-eb3a341a6141 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/976206323"}, "pid": "3391", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:28.13612 2024-09-11 09:03:28.136124 ac7db7b4-0c5a-408f-8780-488673199df6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/976264293"}, "pid": "3392", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:28.193193 2024-09-11 09:03:28.193197 7da162bc-f34b-4549-9dd0-5b0ac3b6eb77 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/976322293"}, "pid": "3393", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:28.248787 2024-09-11 09:03:28.248791 6a173b84-616c-44b1-a2f9-b9e664b8a118 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/976362473"}, "pid": "3394", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:28.309098 2024-09-11 09:03:28.309103 e9f5d8f8-a330-4a7a-8c9e-aa9fd8181432 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/97638230X"}, "pid": "3395", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:28.378876 2024-09-11 09:03:28.37888 b71619f2-17f7-4281-a49a-3a5fb8a82d39 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/976430975"}, "pid": "3396", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:28.437725 2024-09-11 09:03:28.437727 14eb3c37-e137-4ceb-a118-cfd0804a73f7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/976606380"}, "pid": "3397", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:28.496925 2024-09-11 09:03:28.496929 26b583e1-02d3-4a41-b3ec-3b63f8d50c86 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/976645815"}, "pid": "3398", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:28.551171 2024-09-11 09:03:28.551173 d17525f9-2f5c-4c3a-a01e-b694b21b5d8e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/97664830X"}, "pid": "3399", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:28.610462 2024-09-11 09:03:28.610464 fdc94f2b-8685-4381-9791-0338e0f2e2f7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/976660970"}, "pid": "3400", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:28.663682 2024-09-11 09:03:28.663686 5de04787-bf50-4daf-954b-3c21c1af7157 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/976760681"}, "pid": "3401", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:28.723186 2024-09-11 09:03:28.72319 16dc71e4-9a1f-4f1c-9d6f-f76d9c6a3973 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/976796694"}, "pid": "3402", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:28.788092 2024-09-11 09:03:28.788096 c5e46031-4683-401d-b608-f31d700ca1f5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/976913445"}, "pid": "3403", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:28.846144 2024-09-11 09:03:28.846148 423f7dff-07fb-4e4d-8fc5-19f16de3dec2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/97693681X"}, "pid": "3404", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:28.903899 2024-09-11 09:03:28.903904 af560f58-d88e-41e4-94ec-a58166221ca7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/97694247X"}, "pid": "3405", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:28.959217 2024-09-11 09:03:28.959222 39070cc3-d03d-4e8d-b25b-b0feecb02688 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/977057763"}, "pid": "3406", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:29.020138 2024-09-11 09:03:29.020141 aaa8683e-87f1-42a5-a49b-bd05a682ed5f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/977094332"}, "pid": "3407", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:29.077245 2024-09-11 09:03:29.077248 1bf5b5bf-b1f2-450f-b145-cb1f3ba4b4dd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/977270866"}, "pid": "3408", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:29.137241 2024-09-11 09:03:29.137246 e1ae5d73-e55f-442b-b584-9d570046ba84 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/977320545"}, "pid": "3409", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:29.194218 2024-09-11 09:03:29.194222 1b885c84-c9cd-404a-afac-eafff552f6a2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/977327523"}, "pid": "3410", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:29.262703 2024-09-11 09:03:29.262708 97c13eed-4cf4-44ba-96b1-fc83d197a3b5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/977330281"}, "pid": "3411", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:29.318954 2024-09-11 09:03:29.318959 a1b09d7e-8563-442e-bbd7-ebdc75adbc75 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/977508102"}, "pid": "3412", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:29.375505 2024-09-11 09:03:29.375509 59ff25d6-6635-435c-b8f2-78530edf8580 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/977725022"}, "pid": "3413", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:29.43867 2024-09-11 09:03:29.438673 064217ad-abc5-4cf9-b538-2b8379a926b2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/977939359"}, "pid": "3414", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:29.499674 2024-09-11 09:03:29.49968 3de1a2c0-97d1-4a20-b441-db5778ca5b53 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/977998827"}, "pid": "3415", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:29.562098 2024-09-11 09:03:29.5621 02201809-753d-4f4b-8499-53e1e8aab57c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/978057414"}, "pid": "3416", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:29.617079 2024-09-11 09:03:29.617081 7e43ed19-57c3-4e0a-ba65-b0b53a76e25b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/978237064"}, "pid": "3417", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:29.678863 2024-09-11 09:03:29.678865 7533a2ea-940a-4cde-9a19-6e91136a7e8d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/97824723X"}, "pid": "3418", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:29.735963 2024-09-11 09:03:29.735966 395f78f2-543d-4762-9042-5777f78d7696 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/978328582"}, "pid": "3419", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:29.795605 2024-09-11 09:03:29.795609 d15f32ed-e369-4f88-83ea-78137a43815e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/978329953"}, "pid": "3420", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:29.86779 2024-09-11 09:03:29.867794 4decc51f-c9f2-406d-8498-ef19affba37b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/978348168"}, "pid": "3421", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:29.942887 2024-09-11 09:03:29.942891 49cbf1bd-8a3f-4255-afcc-1a956288d23f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/978367316"}, "pid": "3422", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:30.011775 2024-09-11 09:03:30.011779 9a1486dd-74ea-46e7-97a9-dec54d9c6cc3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/97845992X"}, "pid": "3423", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:30.08485 2024-09-11 09:03:30.084852 ffbed01a-4ff7-40f5-92a6-34fe847bfd19 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/978499298"}, "pid": "3424", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:30.155764 2024-09-11 09:03:30.155768 4322426b-3718-4178-b9cc-11c0cda79a25 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/978581717"}, "pid": "3425", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:30.227514 2024-09-11 09:03:30.227518 e487b9f0-8dd0-4640-9d61-e49d291f5351 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/978978862"}, "pid": "3426", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:30.284857 2024-09-11 09:03:30.284861 ac422303-91ba-4fd5-8c20-1d670997e376 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/978983149"}, "pid": "3427", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:30.342248 2024-09-11 09:03:30.342253 d2a53588-ec35-4a32-b1d5-d6d8c9db3944 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/979116791"}, "pid": "3428", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:30.40179 2024-09-11 09:03:30.401795 7dec4cbd-eb0d-4c43-8b4f-37ff02725498 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/979117453"}, "pid": "3429", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:30.490005 2024-09-11 09:03:30.490011 92e3179b-7c89-4b27-a780-8c672aa2ab8a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/979150949"}, "pid": "3430", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:30.569727 2024-09-11 09:03:30.569729 dce576f5-f337-451b-b35f-2b495d5355a7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/979243440"}, "pid": "3431", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:30.628647 2024-09-11 09:03:30.628651 dc368c17-5681-42e5-acd8-631aac5d7a17 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/979248566"}, "pid": "3432", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:30.686943 2024-09-11 09:03:30.686948 7a81d911-84a9-4b44-8342-b9701cdbcafa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/979300649"}, "pid": "3433", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:30.742671 2024-09-11 09:03:30.742676 37acedfb-447e-41e2-81b7-a4a4e30558e0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/97935272X"}, "pid": "3434", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:30.80284 2024-09-11 09:03:30.802843 8179543b-af3c-4ce9-a204-3600790bc31d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/979530083"}, "pid": "3435", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:30.861466 2024-09-11 09:03:30.861469 90f96370-6695-46f0-a879-c598effbbfbd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/979571839"}, "pid": "3436", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:30.938412 2024-09-11 09:03:30.938415 8f867347-0834-4097-b0e4-8af47cf0c804 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/979582407"}, "pid": "3437", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:30.995414 2024-09-11 09:03:30.995418 4d1bff6b-a6b4-4441-9ba0-0606d993d219 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/979721474"}, "pid": "3438", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:31.05233 2024-09-11 09:03:31.052336 79c5f404-bf95-4da1-bb89-6ce085d4b0cb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/979910978"}, "pid": "3439", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:31.109167 2024-09-11 09:03:31.10917 a53b2924-8557-496c-8694-044582d21895 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/980047277"}, "pid": "3440", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:31.165634 2024-09-11 09:03:31.165639 b6ac1dba-108b-48a2-b41c-5a469ec3c267 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/980202078"}, "pid": "3441", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:31.222674 2024-09-11 09:03:31.222678 7419fd04-cbab-430d-9f28-3a48d42ee994 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/98022540X"}, "pid": "3442", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:31.278969 2024-09-11 09:03:31.278973 eb2a3b9c-86f9-40bc-a8c0-83c65fce77af {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/980348749"}, "pid": "3443", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:31.335016 2024-09-11 09:03:31.335019 d06828b3-d9c5-47f1-a9a5-e03f855c7ddb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/980351189"}, "pid": "3444", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:31.393726 2024-09-11 09:03:31.393731 56af1959-25ea-4cc2-9d22-3456582ee986 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/980351952"}, "pid": "3445", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:31.468084 2024-09-11 09:03:31.468088 98705f3b-4325-4cfe-bf06-a6d1ef79f930 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/980433401"}, "pid": "3446", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:31.527439 2024-09-11 09:03:31.527443 c1791931-9d02-44c4-8799-5bf53afffb47 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/980446775"}, "pid": "3447", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:31.584493 2024-09-11 09:03:31.584498 09aa3b2a-d235-42fd-b597-0196d05dedc9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/980496705"}, "pid": "3448", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:31.643008 2024-09-11 09:03:31.643012 8e6209cf-4d0f-4601-b5d8-ba7c84412fdc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/980499607"}, "pid": "3449", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:31.703101 2024-09-11 09:03:31.703104 48e97dc1-12c9-4992-968d-542309adb714 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/980601851"}, "pid": "3450", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:31.760997 2024-09-11 09:03:31.761 1bd15e93-fd0f-4c99-87c9-9c1f4943d1c2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/980793017"}, "pid": "3451", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:31.818759 2024-09-11 09:03:31.818763 e165b892-6914-46a9-a4b7-660383fd3393 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/981031390"}, "pid": "3452", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:31.880255 2024-09-11 09:03:31.880259 6803117c-b261-4b36-85fe-395dcc4d733c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/981339794"}, "pid": "3453", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:31.937417 2024-09-11 09:03:31.93742 1c9bd439-423f-4e00-92ff-a263fc682dce {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/981426387"}, "pid": "3454", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:31.995457 2024-09-11 09:03:31.995461 28a66f77-c328-4cef-af29-4a194ff8b4b1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/981607705"}, "pid": "3455", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:32.071944 2024-09-11 09:03:32.071946 ee7ca1f8-b101-43a5-8c01-cb65845b644d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/981642551"}, "pid": "3456", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:32.129897 2024-09-11 09:03:32.1299 478cdf9c-9e79-4245-ab74-ef964270e854 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/981663753"}, "pid": "3457", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:32.189478 2024-09-11 09:03:32.189483 c1ffd826-3677-4d2c-9fef-2bdeb3b595f8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/981823866"}, "pid": "3458", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:32.245068 2024-09-11 09:03:32.245072 2e91d826-21d7-409c-8f16-d0a1723d3f7e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/981883427"}, "pid": "3459", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:32.301772 2024-09-11 09:03:32.301776 0059962d-3b5d-463e-a52a-856fb3c80e0d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/98195314X"}, "pid": "3460", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:32.356909 2024-09-11 09:03:32.356912 00554632-a996-452a-bb94-a26b96ae8d90 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/981996833"}, "pid": "3461", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:32.411819 2024-09-11 09:03:32.411825 3fcc8b2f-9f20-4b79-85ff-9479a254fc27 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/98208823X"}, "pid": "3462", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:32.468177 2024-09-11 09:03:32.468181 048a3e75-b716-4af8-9e62-315aef13f9ad {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/982492855"}, "pid": "3463", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:32.526507 2024-09-11 09:03:32.526511 a7743ccb-4240-4d0c-bd7b-95aa61a2fcd7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/982514050"}, "pid": "3464", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:32.58754 2024-09-11 09:03:32.587545 c9cbc62a-4517-43dc-98c3-164ab5a071e6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/982653166"}, "pid": "3465", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:32.646732 2024-09-11 09:03:32.646735 f51c2250-7c00-4812-a6d4-f671169584b4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/982910592"}, "pid": "3466", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:32.703409 2024-09-11 09:03:32.703414 ad854b5f-27d9-4fef-b318-fe58214c8110 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/982913656"}, "pid": "3467", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:32.760438 2024-09-11 09:03:32.760441 33326c0d-2ef8-4ece-a455-3a808f35c491 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/982939477"}, "pid": "3468", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:32.826705 2024-09-11 09:03:32.82671 5b76edde-4f46-49a1-b5f4-39e4a576b84b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/982961308"}, "pid": "3469", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:32.908589 2024-09-11 09:03:32.908593 8c547594-d242-423b-9c4f-40d14bf21377 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/982994818"}, "pid": "3470", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:32.967136 2024-09-11 09:03:32.967141 acba2785-195c-4369-89f0-506cc3d4a85d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/983050538"}, "pid": "3471", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:33.024858 2024-09-11 09:03:33.02486 a23a93a8-8089-41e8-bd11-f367bdd9bca6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/983491550"}, "pid": "3472", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:33.087191 2024-09-11 09:03:33.087196 e2a846b7-b0fa-46cf-b305-3d65a4e25f0c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/983615543"}, "pid": "3473", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:33.155352 2024-09-11 09:03:33.155356 8e5b5b1a-e370-42c1-80e7-e361d70a9669 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/983662215"}, "pid": "3474", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:33.213997 2024-09-11 09:03:33.214001 5277f9bb-f7b6-464c-88e2-26442390b094 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/98379314X"}, "pid": "3475", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:33.271022 2024-09-11 09:03:33.271026 8ec706fd-c455-4101-be28-b18f81894f16 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/983910138"}, "pid": "3476", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:33.327366 2024-09-11 09:03:33.327371 834fdde0-83b6-437f-996b-b879abe00e9d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/984022686"}, "pid": "3477", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:33.387226 2024-09-11 09:03:33.38723 9cf5942c-13d3-43e0-9d11-c0c4fe1eb2bd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/984092862"}, "pid": "3478", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:33.448361 2024-09-11 09:03:33.448363 a967833b-cfd1-46ba-ae2e-c86083725c44 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/984302190"}, "pid": "3479", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:33.519024 2024-09-11 09:03:33.519028 073a7136-6f23-4b6d-b7b6-b53dda34c192 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/984368728"}, "pid": "3480", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:33.603157 2024-09-11 09:03:33.603162 337cc4d1-eb2f-4ca4-a994-1ae4f2128c44 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/984403922"}, "pid": "3481", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:33.668703 2024-09-11 09:03:33.668707 94d3e171-72a0-49a1-9bdd-2aa5ec311f5d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/984432779"}, "pid": "3482", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:33.721772 2024-09-11 09:03:33.721776 4d5ae0af-b5c8-4b46-a2e6-295854448eaf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/984443711"}, "pid": "3483", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:33.778118 2024-09-11 09:03:33.778123 23420354-2d28-4477-acd2-9dee8d4dba72 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/984455655"}, "pid": "3484", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:33.830334 2024-09-11 09:03:33.830339 201c8ea7-133a-447b-87cd-83969703eab2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/984645454"}, "pid": "3485", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:33.886256 2024-09-11 09:03:33.88626 a31e36c9-553c-4aad-a6cf-8acbf0a6e2f8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/984649220"}, "pid": "3486", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:33.939494 2024-09-11 09:03:33.939497 f18cc36d-a128-4bcf-9142-2596ac43cc3b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/984661956"}, "pid": "3487", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:33.990993 2024-09-11 09:03:33.990997 e20e82d4-6964-494d-ae18-9a618ea90448 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/984695303"}, "pid": "3488", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:34.048255 2024-09-11 09:03:34.048257 c32539c8-a9ec-4fc5-bda4-df1c92cef1ed {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/984725180"}, "pid": "3489", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:34.109287 2024-09-11 09:03:34.109291 dba8e978-59f7-46d7-befa-f9a04f781111 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/98474309X"}, "pid": "3490", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:34.170906 2024-09-11 09:03:34.170908 180d812c-a80b-4c4f-ba88-f4731434acbb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/984864059"}, "pid": "3491", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:34.223397 2024-09-11 09:03:34.2234 7d759afd-52ab-4d63-aa30-41b77ce1c3c8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/984972498"}, "pid": "3492", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:34.275856 2024-09-11 09:03:34.275861 8bb72357-4e61-4144-97c3-f778299c4efa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/98510421X"}, "pid": "3493", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:34.331156 2024-09-11 09:03:34.33116 788cd4a0-8b16-4d3c-b52b-0e07f091c4f4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/985110783"}, "pid": "3494", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:34.387066 2024-09-11 09:03:34.387074 d6f52596-ab35-4796-925e-b57471178c19 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/985307358"}, "pid": "3495", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:34.440089 2024-09-11 09:03:34.440093 b8614bd7-7d98-49e7-bae9-deb5d5421212 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/985554134"}, "pid": "3496", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:34.489319 2024-09-11 09:03:34.489322 ae3ea162-5a5e-44fb-9fcb-82ed94072bb3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/985729414"}, "pid": "3497", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:34.542575 2024-09-11 09:03:34.542579 212bd3c0-3dff-4ce2-ae60-61ef83636e07 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/985808721"}, "pid": "3498", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:34.599323 2024-09-11 09:03:34.599328 98448f3c-42b6-40c0-97a0-3660517b2ec8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/985947179"}, "pid": "3499", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:34.662882 2024-09-11 09:03:34.662887 ccadbf20-43de-44d6-921e-23e7467da9b1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/986023647"}, "pid": "3500", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:34.72303 2024-09-11 09:03:34.723032 4506b17f-2fa2-4528-a302-94106c596d26 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/986065692"}, "pid": "3501", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:34.784938 2024-09-11 09:03:34.784944 51bcf81b-e299-4114-8e14-2e4b7af940bb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/986091332"}, "pid": "3502", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:34.847642 2024-09-11 09:03:34.847645 834d8c82-5c72-4f22-9199-70e021a4e97a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/986092274"}, "pid": "3503", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:34.90178 2024-09-11 09:03:34.901783 723fe08f-b447-41ca-a566-9086fe5cfe72 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/986429740"}, "pid": "3504", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:34.960391 2024-09-11 09:03:34.960395 43904814-9153-4f54-80a6-c9dc40ee9fec {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/986445649"}, "pid": "3505", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:35.012502 2024-09-11 09:03:35.012507 222e2135-de82-4a63-a5c4-2b74edc1ece9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/986571148"}, "pid": "3506", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:35.07442 2024-09-11 09:03:35.074424 873501a7-7688-47e9-9f0c-74595ad29a49 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/986759805"}, "pid": "3507", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:35.127204 2024-09-11 09:03:35.127208 a9f70422-8a00-41e1-8ea9-8e1b8af9d71c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/986792829"}, "pid": "3508", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:35.181151 2024-09-11 09:03:35.181154 6cbc211a-245a-4b73-90f4-3b1cd375013a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/986836400"}, "pid": "3509", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:35.238524 2024-09-11 09:03:35.238527 eaf30adb-35fa-4d1f-a2ca-b0c116371d4b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/98702115X"}, "pid": "3510", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:35.297175 2024-09-11 09:03:35.297178 3a96db62-71eb-4c84-8379-bdb31a633b94 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/987073982"}, "pid": "3511", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:35.348546 2024-09-11 09:03:35.348551 909aa228-b6f1-4906-9e7c-042900646324 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/987392964"}, "pid": "3512", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:35.401877 2024-09-11 09:03:35.401882 7c48a5a8-eb63-4aab-840a-447ce5d348d8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/987450816"}, "pid": "3513", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:35.450357 2024-09-11 09:03:35.450361 e4875f05-c1cc-4291-8ffa-ff2e6aebc917 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/987500465"}, "pid": "3514", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:35.507375 2024-09-11 09:03:35.507379 24280c21-e39a-41fd-b83a-441f64bd2d90 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/987545191"}, "pid": "3515", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:35.559495 2024-09-11 09:03:35.559499 be89d92d-2a00-4918-950c-8846528ce243 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/987612816"}, "pid": "3516", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:35.613004 2024-09-11 09:03:35.613006 c0998fe9-5655-4e33-9600-e3ff5600f252 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/987631365"}, "pid": "3517", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:35.664245 2024-09-11 09:03:35.66425 57b52046-1891-4d53-96d1-f7995f6ce51d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/987875418"}, "pid": "3518", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:35.719832 2024-09-11 09:03:35.719838 2a5fcc9a-0286-4e44-a657-40b8bf91c10c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/987960148"}, "pid": "3519", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:35.771669 2024-09-11 09:03:35.771671 83d5e491-a6b7-4fc0-8246-c2662a46f010 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/988152819"}, "pid": "3520", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:35.825016 2024-09-11 09:03:35.82502 455c7e27-9876-4b4b-b7ae-52d0c151e558 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/988280450"}, "pid": "3521", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:35.879704 2024-09-11 09:03:35.879707 62b03940-7ca3-4fdd-9520-fb057d189c22 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/988400162"}, "pid": "3522", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:35.935284 2024-09-11 09:03:35.935289 a247ed77-f1cc-440f-921e-b6179c62b7c0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/988430940"}, "pid": "3523", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:35.986348 2024-09-11 09:03:35.986352 e6850916-406b-4d36-a928-035452995dfd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/98843802X"}, "pid": "3524", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:36.041028 2024-09-11 09:03:36.041031 caa238d5-6712-4d3c-a7b9-ef5cf506e0c0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/988589125"}, "pid": "3525", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:36.091066 2024-09-11 09:03:36.091071 24c540cc-c76c-4367-8f32-48aefe61e167 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/989064859"}, "pid": "3526", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:36.144953 2024-09-11 09:03:36.144956 4f034023-1217-454b-a17a-fede209822c9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/989146731"}, "pid": "3527", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:36.197931 2024-09-11 09:03:36.197936 2bc22b77-f83c-41b9-9e9f-84fd1325e10f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/989224333"}, "pid": "3528", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:36.251325 2024-09-11 09:03:36.251328 4ef1fe35-ab1c-4ca3-8cac-dcd6f0f43c34 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/98940434X"}, "pid": "3529", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:36.315429 2024-09-11 09:03:36.315432 608f5169-2c7c-42ae-aab5-b309530d1aa9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/989409015"}, "pid": "3530", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:36.372288 2024-09-11 09:03:36.372292 03d426c9-b4b4-48c7-9ccf-1b062e8c5eb0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/989440583"}, "pid": "3531", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:36.429587 2024-09-11 09:03:36.42959 7b91cb4c-b582-4d6a-a4bd-0a83533dea8d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/989523926"}, "pid": "3532", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:36.48373 2024-09-11 09:03:36.483733 2db796a3-dddd-493b-8417-74c541b7d38f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/989560279"}, "pid": "3533", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:36.543272 2024-09-11 09:03:36.543276 636becb6-f923-4119-ad96-db3906451ec5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/989655059"}, "pid": "3534", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:36.59863 2024-09-11 09:03:36.598632 062a2e91-0349-44ed-a7e4-baf3b6c1021f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/989690350"}, "pid": "3535", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:36.656196 2024-09-11 09:03:36.656204 22de20d5-169e-48be-a1eb-636b05aace9a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/989782115"}, "pid": "3536", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:36.714428 2024-09-11 09:03:36.714431 87899b3d-4318-48fb-a030-903f02fd58de {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/989838420"}, "pid": "3537", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:36.771393 2024-09-11 09:03:36.771398 f49b80ca-1364-408a-9e30-74faa6f3ec4b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/989943828"}, "pid": "3538", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:36.83314 2024-09-11 09:03:36.833144 683bb703-ad00-4972-b5fd-0ebdaf06169a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/990095320"}, "pid": "3539", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:36.904956 2024-09-11 09:03:36.90496 70a4b065-82b3-4899-98bc-433fc54a3186 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/990184269"}, "pid": "3540", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:36.97204 2024-09-11 09:03:36.972042 947213a5-f02c-415c-8f89-6e0a7bb8611e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/990280616"}, "pid": "3541", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:37.030828 2024-09-11 09:03:37.030831 95a68620-1903-4b5e-8c0b-fd52c96e690a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/990285375"}, "pid": "3542", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:37.089528 2024-09-11 09:03:37.089532 b03d410c-9e21-4cb1-82cf-f37d846dd2c1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/990285650"}, "pid": "3543", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:37.150665 2024-09-11 09:03:37.150669 4a601f48-3ce3-453c-8e22-1cc63bf792ab {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/990303160"}, "pid": "3544", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:37.210342 2024-09-11 09:03:37.210345 a1f8bf88-a04e-4ce1-a9b8-7c8a4691deb1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/990335763"}, "pid": "3545", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:37.279702 2024-09-11 09:03:37.279708 cef907ac-ec6d-4d15-93db-d148a72d3ea8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/990348059"}, "pid": "3546", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:37.336776 2024-09-11 09:03:37.336781 02e65a57-5515-4440-89e8-995683bc01cf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/990387844"}, "pid": "3547", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:37.392918 2024-09-11 09:03:37.392922 f38b4978-3c25-4679-8096-926502d5b5bc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/990398455"}, "pid": "3548", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:37.459654 2024-09-11 09:03:37.459657 86e20f89-f3f5-46cc-ade5-32b4b8d80b7c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/990407624"}, "pid": "3549", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:37.52308 2024-09-11 09:03:37.523084 6a718a61-b956-4e34-a372-126b4380b162 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/990531325"}, "pid": "3550", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:37.594798 2024-09-11 09:03:37.594803 14bf3bc0-7a9f-4511-a3ef-1c38229afb03 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/990665801"}, "pid": "3551", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:37.656028 2024-09-11 09:03:37.656031 719ece6d-3291-4c53-9110-cb39da9315ce {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/990683869"}, "pid": "3552", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:37.717193 2024-09-11 09:03:37.717199 1f48cfea-bc0e-42fa-8261-6defe4143bc1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/990766160"}, "pid": "3553", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10145857815723021445"} 1 +2024-09-11 09:03:37.781287 2024-09-11 09:03:37.781289 b6422000-9fd4-49b1-b21c-4e7c86bba4f1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/990827321"}, "pid": "3554", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:37.86601 2024-09-11 09:03:37.866014 5effc613-189c-4e3d-8741-0ad50316b955 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/990889203"}, "pid": "3555", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:37.931493 2024-09-11 09:03:37.931498 e4936c3c-f3cb-4c6c-848b-e703586db8ac {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/99109087X"}, "pid": "3556", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:37.989599 2024-09-11 09:03:37.989603 3b96c37e-e751-479a-b638-b983364595aa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/991108337"}, "pid": "3557", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:38.053533 2024-09-11 09:03:38.053536 18fac26e-0f4b-4639-964a-fe9e24497608 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/991145429"}, "pid": "3558", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:38.119996 2024-09-11 09:03:38.120002 edaac1e8-d14e-409a-8f78-5beaad26299f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/991195000"}, "pid": "3559", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:38.178155 2024-09-11 09:03:38.178159 86dbdb6f-91dc-4fab-9b98-115d989afff3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/991211103"}, "pid": "3560", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:38.238125 2024-09-11 09:03:38.238129 efbe701b-9c56-4a30-bc9c-e0affb2e86a1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/991510011"}, "pid": "3561", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:38.295893 2024-09-11 09:03:38.295897 69461a06-969b-43b1-93f2-9c098337e886 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/991533445"}, "pid": "3562", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:38.351726 2024-09-11 09:03:38.351731 166a452a-d717-44a3-a7d8-a9f31353999b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/992031486"}, "pid": "3563", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:38.405905 2024-09-11 09:03:38.405908 ccc8496d-83aa-476d-8abd-dce8be6cae89 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/992385903"}, "pid": "3564", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:38.462751 2024-09-11 09:03:38.462753 160365c9-e858-4c0d-ac79-ff913d7dee53 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/992448972"}, "pid": "3565", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:38.521654 2024-09-11 09:03:38.521659 3c1415cd-0b88-485b-8145-f90c6f4b6af1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/992654173"}, "pid": "3566", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:38.578384 2024-09-11 09:03:38.578387 6a53faf2-d75b-45ca-bdc0-afcc8e99e7ef {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/992787858"}, "pid": "3567", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:38.63355 2024-09-11 09:03:38.633555 db0c4fd8-60d7-4b38-9eb1-6365c887fd01 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/992788137"}, "pid": "3568", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:38.701992 2024-09-11 09:03:38.701995 daf84315-7906-4034-9af2-f2da7fe22bcf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/992810159"}, "pid": "3569", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:38.756295 2024-09-11 09:03:38.756298 525cc2d6-17b8-4e87-a871-a00a8a1b6218 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/992947588"}, "pid": "3570", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:38.814558 2024-09-11 09:03:38.814562 88bf470c-df5e-442d-bd7c-754f4cf627f9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/993072542"}, "pid": "3571", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:38.873134 2024-09-11 09:03:38.873137 6b5602e0-dd64-4308-adc0-d8cdee5af657 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/993585043"}, "pid": "3572", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:38.938277 2024-09-11 09:03:38.938281 96550e6a-1478-4888-9b26-6f973fcb8292 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/994152868"}, "pid": "3573", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:38.999601 2024-09-11 09:03:38.999606 1c5b63e7-edf7-48dc-af9c-bcfe28431c8f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/994333080"}, "pid": "3574", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:39.067464 2024-09-11 09:03:39.067468 ec062a9f-9fd7-4154-9c1a-f6607459b34b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/994528647"}, "pid": "3575", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:39.120209 2024-09-11 09:03:39.120214 1c965365-4aeb-499f-8c7b-3110fb8cfa42 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/994603320"}, "pid": "3576", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:39.179397 2024-09-11 09:03:39.1794 c78d4508-78b6-4e53-aafe-a96a449add2c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/994861915"}, "pid": "3577", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:39.242233 2024-09-11 09:03:39.242237 115b0d6a-80e7-4ee7-a4e3-d93852d46b79 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/994895232"}, "pid": "3578", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:39.305506 2024-09-11 09:03:39.30551 290fdaad-7620-46bf-a181-32e7b2540567 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/995009384"}, "pid": "3579", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:39.373316 2024-09-11 09:03:39.37332 0cb7494d-4d45-452d-9502-e51dc1ce3bd3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/995549060"}, "pid": "3580", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:39.433189 2024-09-11 09:03:39.433194 8e902fbe-1bfc-4381-86e6-e629c7440f94 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/995590958"}, "pid": "3581", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:39.490347 2024-09-11 09:03:39.49035 2b6b5a45-3054-4d6a-b500-dc66c829d91b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/995597928"}, "pid": "3582", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:39.549121 2024-09-11 09:03:39.549124 63236112-4ec3-44eb-8bf1-6815b7c5e75d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/995606250"}, "pid": "3583", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:39.60701 2024-09-11 09:03:39.607013 d44c8ae8-0517-4f36-a45a-31dad361aca5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/995661391"}, "pid": "3584", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:39.670046 2024-09-11 09:03:39.670049 35b5c042-48d9-4819-a4f0-2b2503ff2fe6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996104801"}, "pid": "3585", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:39.73684 2024-09-11 09:03:39.736842 e58f6172-fe04-41b0-baf2-c1013f53537d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996109269"}, "pid": "3586", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:39.796983 2024-09-11 09:03:39.796988 88c8b59e-9b84-4371-b0e3-4a910df32b78 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996113045"}, "pid": "3587", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:39.850472 2024-09-11 09:03:39.850475 44ac0949-0e37-42e4-ac47-560fb1bbed90 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996118780"}, "pid": "3588", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:39.91488 2024-09-11 09:03:39.914884 01aa8b44-293d-4702-956e-248675e2591b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996123768"}, "pid": "3589", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:39.981585 2024-09-11 09:03:39.981589 735136ff-3251-4c67-9ced-826fdc8376d6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996129952"}, "pid": "3590", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:40.053142 2024-09-11 09:03:40.053148 c11b301d-01a7-4f1f-ad87-85d22af39ba6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996134492"}, "pid": "3591", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:40.108614 2024-09-11 09:03:40.108616 8f1c8752-64fc-4fb5-8867-538608bbbbb9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996142762"}, "pid": "3592", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:40.173277 2024-09-11 09:03:40.17328 d3c19324-634e-4d27-84f1-07ef4fd44d1c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996150994"}, "pid": "3593", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:40.2296 2024-09-11 09:03:40.229604 b842f77e-4d09-4061-9508-847fe151ec29 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996151265"}, "pid": "3594", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:40.288289 2024-09-11 09:03:40.288293 58aac260-f6e5-4a96-8dcb-9a7e1c74f672 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996312811"}, "pid": "3595", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:40.345047 2024-09-11 09:03:40.345051 c2f80091-db47-4efc-9e6b-bd25d8f3176c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996312919"}, "pid": "3596", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:40.402705 2024-09-11 09:03:40.402709 132fd7ea-5107-4565-9c8e-c309cbcc8e3b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996322809"}, "pid": "3597", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:40.475772 2024-09-11 09:03:40.475777 7647b6ab-9584-4134-a9a6-371ed241a4a9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996334920"}, "pid": "3598", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:40.567688 2024-09-11 09:03:40.567692 435084cd-a302-4e29-8e6a-c46a2e4388ee {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996335323"}, "pid": "3599", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:40.62631 2024-09-11 09:03:40.626312 4e44a440-6794-415f-8033-fa08abddfc14 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996335846"}, "pid": "3600", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:40.684281 2024-09-11 09:03:40.684285 e8c25f5e-7ed1-4bf0-a8f6-207c5c776b24 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996336109"}, "pid": "3601", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:40.742957 2024-09-11 09:03:40.742961 612b94f2-4077-442a-893f-e0dccccd77df {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996346562"}, "pid": "3602", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:40.797204 2024-09-11 09:03:40.797208 eecf5864-dc0c-4fe6-a998-1ab30407a5ab {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996348980"}, "pid": "3603", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:40.852859 2024-09-11 09:03:40.852864 57c2db54-3760-4265-8f12-03fad7739aba {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996450793"}, "pid": "3604", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:40.910864 2024-09-11 09:03:40.910868 d047bf06-b365-4e13-afa6-1e53b8123e04 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996450904"}, "pid": "3605", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:40.971009 2024-09-11 09:03:40.971012 2ce59872-484f-4de9-bcd8-056b6a5d5aba {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996455116"}, "pid": "3606", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:41.039071 2024-09-11 09:03:41.039075 acebd559-ade9-472f-8038-18cb8164508c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996459715"}, "pid": "3607", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:41.104412 2024-09-11 09:03:41.104415 469f4361-d032-41a0-8ed4-03c295f2e05b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996459855"}, "pid": "3608", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:41.164307 2024-09-11 09:03:41.164309 d74320ef-331a-48f9-82ac-128a7d44611b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996464190"}, "pid": "3609", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:41.229586 2024-09-11 09:03:41.229588 972ef32a-86bc-45c4-8ca7-001523b71348 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996469915"}, "pid": "3610", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:41.296242 2024-09-11 09:03:41.296246 86331594-11f5-4fcf-9f86-69d382539e5a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996474080"}, "pid": "3611", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:41.355493 2024-09-11 09:03:41.355498 c53de28b-a76b-485f-a46c-ea20e650422d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996484280"}, "pid": "3612", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:41.424756 2024-09-11 09:03:41.42476 f70dc389-fef7-4c25-83a7-f494f9e89e94 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996494138"}, "pid": "3613", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:41.48404 2024-09-11 09:03:41.484044 24d75510-8c42-454c-b37d-7e495427366a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996595066"}, "pid": "3614", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:41.543485 2024-09-11 09:03:41.54349 224d1479-d0da-4e00-a4ad-2c530e260529 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996755519"}, "pid": "3615", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:41.613208 2024-09-11 09:03:41.613213 e55b39fd-6d90-4f04-afc3-c5712ed2fc46 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996765980"}, "pid": "3616", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:41.674064 2024-09-11 09:03:41.674068 fc8ba66e-6080-4a26-aa95-b7bddc2a4584 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996797343"}, "pid": "3617", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:41.734353 2024-09-11 09:03:41.734358 c451e22b-f75a-4a73-b889-27f69a41b2b2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996885226"}, "pid": "3618", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:41.789802 2024-09-11 09:03:41.789807 e9ce2ddf-762f-45f5-94af-707b65ed2f0f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996895701"}, "pid": "3619", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:41.844065 2024-09-11 09:03:41.844069 b32c4637-f3fd-488b-9c3c-8b4aa6d8a3bf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996895876"}, "pid": "3620", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:41.902292 2024-09-11 09:03:41.902296 d65dc2a8-453b-4abb-bb1d-e4e3ae20d83a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/996901248"}, "pid": "3621", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:41.96329 2024-09-11 09:03:41.963295 82a6bb58-faae-4272-a4b6-0c4b9235ee6f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/997040386"}, "pid": "3622", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:42.054446 2024-09-11 09:03:42.054449 a0e1e653-e8af-4a3a-ba9b-082862a937f0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/997187581"}, "pid": "3623", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:42.119933 2024-09-11 09:03:42.119937 3910b64a-05de-4263-bc79-db13728e3b54 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/997192240"}, "pid": "3624", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:42.180369 2024-09-11 09:03:42.180372 1e87a534-71dd-43f9-9430-803e17d2942c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/997206845"}, "pid": "3625", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:42.237181 2024-09-11 09:03:42.237184 5b9b2c15-3067-4a8b-ae26-4e5255f65212 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/997478748"}, "pid": "3626", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:42.300218 2024-09-11 09:03:42.300224 f30114c6-3665-41eb-a502-ea69538553b0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/99770392X"}, "pid": "3627", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:42.381215 2024-09-11 09:03:42.381218 e87499ab-f686-43d3-aad1-81298ff12b53 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/997809213"}, "pid": "3628", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:42.441615 2024-09-11 09:03:42.44162 347e2f52-6e68-4fe0-be14-c4f6b84e8f60 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/99781926X"}, "pid": "3629", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:42.501644 2024-09-11 09:03:42.501649 345745cd-180a-4aff-9e27-9231f4c4f445 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/997997117"}, "pid": "3630", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:42.569536 2024-09-11 09:03:42.569539 52ec05b4-48a5-4a3d-9cd9-0684da187be0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/997998881"}, "pid": "3631", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:42.626443 2024-09-11 09:03:42.626447 c1a21028-2912-4fc2-816a-3bec2feed640 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/998032514"}, "pid": "3632", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:42.691299 2024-09-11 09:03:42.691303 eefb395d-3fb3-4af5-98fa-cb6868bdfb02 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/998115606"}, "pid": "3633", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:42.749762 2024-09-11 09:03:42.749766 8b7b350b-8715-4a35-b872-58c9d21f5912 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/998143278"}, "pid": "3634", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:42.822037 2024-09-11 09:03:42.822041 1b73efc2-2de5-47c3-9b64-be584fcf2453 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/998153915"}, "pid": "3635", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:42.878301 2024-09-11 09:03:42.878304 a8ef6b00-2e98-41f9-8edb-0f61984a8968 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/998167037"}, "pid": "3636", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:42.931745 2024-09-11 09:03:42.931749 8fc20c6d-e4e7-4509-ab56-0b515b45bf07 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/998173983"}, "pid": "3637", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:42.989324 2024-09-11 09:03:42.989328 32e4087f-e447-4996-a6d4-5cc15db51e08 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/998174807"}, "pid": "3638", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:43.047032 2024-09-11 09:03:43.047035 079dc188-d5a4-4e5f-8bf2-eda4a90ed243 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/998198137"}, "pid": "3639", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:43.106063 2024-09-11 09:03:43.106068 d738f9fa-bec7-4506-afa2-4118b322760f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/998198323"}, "pid": "3640", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:43.167654 2024-09-11 09:03:43.167659 537e5149-586a-4cb2-ace0-3cdb9dd41f79 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/998216801"}, "pid": "3641", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:43.223658 2024-09-11 09:03:43.223661 8b4a3e1e-0a25-4e8c-b731-72d52e3260b3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/99821731X"}, "pid": "3642", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:43.277291 2024-09-11 09:03:43.277295 8112e2da-ffee-4b27-8672-e1297651488a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/998245127"}, "pid": "3643", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:43.331254 2024-09-11 09:03:43.331258 a06aa65b-4e13-41db-a914-2cf066fc57b5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/998245518"}, "pid": "3644", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:43.386599 2024-09-11 09:03:43.386603 349a1313-6b2d-4a2e-b512-570777ab37e5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/998251313"}, "pid": "3645", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:43.447599 2024-09-11 09:03:43.447601 151f56f4-3a2b-4640-b22d-a99b2b3ea98d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/998278815"}, "pid": "3646", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:43.524956 2024-09-11 09:03:43.52496 41c9329b-a418-4266-92df-ab2f9f0b2786 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/998292125"}, "pid": "3647", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:43.581867 2024-09-11 09:03:43.58187 70c12d8a-c975-4600-9892-610747fa7f19 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/998331163"}, "pid": "3648", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:43.642405 2024-09-11 09:03:43.642409 855abce9-6172-4ee6-b279-08e448dc2b4a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/998858234"}, "pid": "3649", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:43.707436 2024-09-11 09:03:43.70744 fd28a7e3-2b36-42ca-9cda-10d168cf87ee {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/998904635"}, "pid": "3650", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:43.765125 2024-09-11 09:03:43.765129 88cd56dd-1582-4ea5-9fc1-6cfb0f7480a0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/999064185"}, "pid": "3651", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:43.82439 2024-09-11 09:03:43.824394 537cda24-7db6-4db3-8e6e-359109fa859a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/999203592"}, "pid": "3652", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:43.880845 2024-09-11 09:03:43.880848 8106ccdf-d594-4cad-abe6-740aff12f69a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/999527061"}, "pid": "3653", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:43.949591 2024-09-11 09:03:43.949596 b81da33a-9c69-4acc-8884-dbc13705830c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/999533908"}, "pid": "3654", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:44.023033 2024-09-11 09:03:44.02304 4d04e077-65bf-4f1b-ad61-112e6b1a31a0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/999541161"}, "pid": "3655", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:44.132945 2024-09-11 09:03:44.13295 2c2c1776-7ca7-4490-b315-a536fde223b0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/999549847"}, "pid": "3656", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:44.188443 2024-09-11 09:03:44.188448 01656c98-8518-41ea-8f27-e92f8528fa65 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/999646869"}, "pid": "3657", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:44.2457 2024-09-11 09:03:44.245702 c857b9da-aafe-41d5-b135-5f95eb9a0f33 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/999780859"}, "pid": "3658", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:44.302243 2024-09-11 09:03:44.302246 c8a5b741-0acf-4d19-bd12-4ce91d24dfda {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/999853155"}, "pid": "3659", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:44.360469 2024-09-11 09:03:44.360472 ea52f6e2-b1ef-4ec0-b23a-6456eda95079 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/999862243"}, "pid": "3660", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:44.415822 2024-09-11 09:03:44.415827 d4f8a17c-c6d8-46c2-937a-d72d2166ccc7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/999871633"}, "pid": "3661", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:44.468144 2024-09-11 09:03:44.468149 0776bcfc-1b68-40b9-901b-1694a24c9c24 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/999921770"}, "pid": "3662", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:44.527022 2024-09-11 09:03:44.527026 2396d4ef-cf3b-43d9-b4b4-e6e1115db42b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/999991361"}, "pid": "3663", "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:46.84898 2024-09-11 09:03:46.848983 bc572cab-e715-45a0-94fa-5bcbcd54c25d {"pid": "3664", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026361477"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:46.907094 2024-09-11 09:03:46.907098 000c0c11-a6e0-4aec-851e-98f9b75b1089 {"pid": "3665", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026366231"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:46.965571 2024-09-11 09:03:46.965575 5fe2c9d9-867c-42e7-a0b6-c1b98a7c5170 {"pid": "3666", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026393190"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:47.035392 2024-09-11 09:03:47.035397 89c2dc1e-35c0-46c0-b2cf-c8abfcc80806 {"pid": "3667", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026398257"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:47.089771 2024-09-11 09:03:47.089775 aafde7b7-224d-47d7-b44a-3d399a4967fb {"pid": "3668", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026403161"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:47.167552 2024-09-11 09:03:47.167557 eec5a59e-99df-437d-86e5-98df576bc66b {"pid": "3669", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026408805"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:47.238515 2024-09-11 09:03:47.238518 c705807c-e404-4b80-8cea-27f809cf7c09 {"pid": "3670", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026418460"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:47.294854 2024-09-11 09:03:47.294858 5cf4c17c-c33d-405f-a5de-d1d84a47260e {"pid": "3671", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026428636"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:47.349359 2024-09-11 09:03:47.349362 15f33d8a-9ab2-44f3-b1fc-5d9f8c73020a {"pid": "3672", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026430746"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:47.405079 2024-09-11 09:03:47.405082 a3c9c4e9-6c6f-45e2-98cf-5298a6365b25 {"pid": "3673", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026446278"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:47.460234 2024-09-11 09:03:47.460237 8fddecd1-122f-47d4-82ed-5684b49c0b83 {"pid": "3674", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026450038"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:47.515049 2024-09-11 09:03:47.515053 c0ddd1b0-9e3b-4105-9d70-78fdf63ed362 {"pid": "3675", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026452057"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:47.571105 2024-09-11 09:03:47.571108 e5fb4d57-5008-43f2-b1c7-0133ec46d031 {"pid": "3676", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026471396"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:47.635012 2024-09-11 09:03:47.635021 3c1d0812-9d6a-488a-bd4f-ccd9cffe361e {"pid": "3677", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026483157"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:47.687548 2024-09-11 09:03:47.687552 8aebb9ee-74d6-45a4-a2ea-fbe9f955022c {"pid": "3678", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026488582"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:47.743648 2024-09-11 09:03:47.743653 5e4feb02-44df-45bd-9e4a-aee4f8128f6b {"pid": "3679", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026501228"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:47.798684 2024-09-11 09:03:47.798688 14de8f2a-481d-4b32-bde0-ddb108a462fa {"pid": "3680", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026524759"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:47.857255 2024-09-11 09:03:47.857258 cb3370fb-182f-449b-ac20-69e2cfe702bf {"pid": "3681", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026526980"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:47.920416 2024-09-11 09:03:47.920419 99c9486d-64e2-4952-b9e6-0e40fa9eb244 {"pid": "3682", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026528290"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:47.975913 2024-09-11 09:03:47.975917 e99b5054-44ea-4799-a77a-8857b2eda070 {"pid": "3683", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026529890"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:48.03997 2024-09-11 09:03:48.039973 89ccddb7-c815-492a-980e-cd71f3424d17 {"pid": "3684", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026530538"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:48.09598 2024-09-11 09:03:48.095983 d4aa7333-71bd-4efc-acf0-85b5a28fbdb7 {"pid": "3685", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026536625"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:48.152661 2024-09-11 09:03:48.152667 ede63992-03a1-4157-815d-fb55f8f49f13 {"pid": "3686", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/02654606X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:48.210672 2024-09-11 09:03:48.210676 0fb61307-9e2d-4ceb-acfc-1c7dbea3b6ff {"pid": "3687", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/02654637X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:48.269455 2024-09-11 09:03:48.269458 09110a34-0855-462f-afb9-bc8ae5f4a70a {"pid": "3688", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026561328"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:48.335156 2024-09-11 09:03:48.335161 86b75225-07fc-43e0-856e-09798017107b {"pid": "3689", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026562170"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:48.391601 2024-09-11 09:03:48.391604 55557bdc-5b2a-41be-9c2a-d91c74c2eaf2 {"pid": "3690", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/02656453X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:48.480976 2024-09-11 09:03:48.480981 4e7d2e22-0166-44ef-b37e-28cd0db34c1f {"pid": "3691", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026567695"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:48.539807 2024-09-11 09:03:48.53981 a958b91a-0c0f-4e80-aea7-3fbef2b711bd {"pid": "3692", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026583135"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:48.59385 2024-09-11 09:03:48.593854 42f5f573-f6f5-48b0-9d25-2826fee3778d {"pid": "3693", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/02658672X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:48.65408 2024-09-11 09:03:48.654085 a0cd3491-c016-481f-9d6d-0a06ba42c9e0 {"pid": "3694", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026614421"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:48.708259 2024-09-11 09:03:48.708264 958984de-5a76-4ed1-8a25-70410e9d48e3 {"pid": "3695", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026626373"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:48.767285 2024-09-11 09:03:48.767291 44250e2e-2dda-46e0-b4ed-b7aac099abfb {"pid": "3696", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026631342"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:48.830272 2024-09-11 09:03:48.830276 fdf989d9-ead6-4a32-bbba-a22aa91a3164 {"pid": "3697", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026646862"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:48.882997 2024-09-11 09:03:48.883 437ceaca-2ec4-4f73-8da1-41ef0f6ed5f4 {"pid": "3698", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/02672698X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:48.939256 2024-09-11 09:03:48.939258 be861ea5-790d-4107-9f45-f100ba2ad0ad {"pid": "3699", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/02675181X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:48.994083 2024-09-11 09:03:48.994087 4a068719-1ba1-4b03-9042-b2d67a69a6c7 {"pid": "3700", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026847655"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:49.122797 2024-09-11 09:03:49.122801 b0eac5c6-c035-4b48-947f-6b8f4085a51d {"pid": "3701", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026895056"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:49.254734 2024-09-11 09:03:49.254741 66d4a097-1be6-40ce-a4a1-0de85a34181a {"pid": "3702", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026924498"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:49.526452 2024-09-11 09:03:49.526456 ec3a02d5-ff9a-4b81-a5be-5f8f2d78a8ef {"pid": "3703", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/02700273X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:57.038335 2024-09-11 09:06:38.837586 7138e013-741f-4587-9a63-9dc79d7d004c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1060270773"}, "pid": "873", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003488727"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026959852"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111270045"} 3 +2024-09-11 09:01:20.188042 2024-09-11 09:06:40.16766 4f27ed5a-b11f-4171-aad1-db09cd4ddca7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1126071935"}, "pid": "1265", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003531595"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026994801"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100314260"} 3 +2024-09-11 09:01:50.59609 2024-09-11 09:07:10.04259 03db7fa4-c477-4011-aa26-7ccb7f5625b4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/120661144"}, "pid": "1773", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012726948"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026868482"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112517462"} 3 +2024-09-11 09:03:49.583617 2024-09-11 09:03:49.58362 d01e2556-ae5a-4c8b-abba-c900b0d7bd8a {"pid": "3704", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/027006344"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:55.611995 2024-09-11 09:03:49.645389 a18dea95-9e54-4ca2-9e79-2c30bcc1c90a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1055753001"}, "pid": "850", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/027019837"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108342120"} 2 +2024-09-11 09:03:49.743752 2024-09-11 09:03:49.743756 0e2468b4-d159-4741-ba5d-73530f8ae45c {"pid": "3705", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/02703819X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:24.184328 2024-09-11 09:03:49.805013 cf054f1c-ed5b-4154-ba24-73fa4cf9eaed {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139708952"}, "pid": "2337", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/027135985"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109155729"} 2 +2024-09-11 09:03:49.86697 2024-09-11 09:03:49.866975 0a5c96c9-dde2-44ba-b63a-0ab14e8bf804 {"pid": "3706", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/027215008"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:49.922319 2024-09-11 09:03:49.922323 f81988c0-9cce-47e0-bee2-bd5ad24c0b17 {"pid": "3707", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/027486028"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:49.977091 2024-09-11 09:03:49.977096 93428c4e-f531-4853-aa29-d5f44e8e7c59 {"pid": "3708", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/027632288"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:50.035836 2024-09-11 09:03:50.03584 b4fcaef6-9878-428a-9333-f79610528bb8 {"pid": "3709", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/027767744"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:50.090195 2024-09-11 09:03:50.090199 0624f511-43f4-4a1e-922a-376d095b20b2 {"pid": "3710", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/027896781"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:50.147648 2024-09-11 09:03:50.147651 274a4d65-9579-432c-916a-174a37efd39b {"pid": "3711", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/027912760"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:50.219424 2024-09-11 09:03:50.219428 82d0d2bc-262a-41b1-b9cf-9c8bf4c947c6 {"pid": "3712", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/02796096X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:50.278021 2024-09-11 09:03:50.278025 6f458ba5-cfad-4203-87a9-b940e2877f9a {"pid": "3713", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/027969428"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:50.335838 2024-09-11 09:03:50.335842 575a2f9b-2ae4-428c-ab51-507449c1c4dd {"pid": "3714", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028071670"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:50.393203 2024-09-11 09:03:50.393206 7f10e9c8-080c-468f-8264-247e8b57b83e {"pid": "3715", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028082788"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:50.451023 2024-09-11 09:03:50.451027 83c26a31-bb1f-4414-9332-2b8e29cde301 {"pid": "3716", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/02809364X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:50.512983 2024-09-11 09:03:50.512986 ad240955-2fc1-4126-81e9-59864d25e6ba {"pid": "3717", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028166027"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:50.642843 2024-09-11 09:03:50.642848 2a1c7e31-26d4-4b5c-9059-842e308491e7 {"pid": "3718", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028302435"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:50.702038 2024-09-11 09:03:50.702043 d33c03dd-a027-477c-977c-779b5d06b08e {"pid": "3719", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/02832787X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:24.102901 2024-09-11 09:06:31.45968 c09d7d0a-2f21-4879-b760-b4dd69ff6880 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1145375154"}, "pid": "1330", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003206780"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028442717"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108374251"} 3 +2024-09-11 09:03:50.829747 2024-09-11 09:03:50.829751 49880f9c-77f1-4152-8b36-7f85829449a2 {"pid": "3720", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028354753"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:50.889846 2024-09-11 09:03:50.889849 546f56c6-02f3-4c1e-ab7a-eb0569f047f7 {"pid": "3721", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028357531"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:50.949303 2024-09-11 09:03:50.949307 96ac1cc1-dde2-417e-b3b6-d14ad7ac3b1b {"pid": "3722", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028416171"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:51.011412 2024-09-11 09:03:51.011416 7a3ec2d2-9e87-4438-95a0-c45ff69bbbde {"pid": "3723", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028419790"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:51.174331 2024-09-11 09:03:51.174335 ae0b669e-96a4-4c19-b919-0fb846e38511 {"pid": "3724", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028470141"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:51.246782 2024-09-11 09:03:51.246787 fe74410d-04fc-4e09-b7de-6b0ccbb9a514 {"pid": "3725", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028495764"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:51.369326 2024-09-11 09:03:51.369329 22362604-9b3d-4e47-9ac3-6b0085cefc71 {"pid": "3726", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028503112"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:59.757677 2024-09-11 09:06:46.443159 c318dc22-e46b-4dd1-bc72-069f8fcb2cec {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/123673208"}, "pid": "1930", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003817832"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028500490"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108923602"} 3 +2024-09-11 09:03:51.425101 2024-09-11 09:03:51.425105 3ef40c41-dde3-4df2-9b55-8ae5f817f1c0 {"pid": "3727", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028522206"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:39.225865 2024-09-11 09:06:35.500143 ac03d99a-f4ac-456f-935c-591c424e78ce {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/17027926X"}, "pid": "2600", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003370921"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028542770"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104963217"} 3 +2024-09-11 09:03:51.562052 2024-09-11 09:03:51.562056 e4d649e9-552e-42d2-8150-0fa0ff054f1f {"pid": "3728", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028529677"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:51.639117 2024-09-11 09:03:51.639119 0c473bf7-dcdc-49ba-8eb6-03b364deb1a0 {"pid": "3729", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028541634"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:51.765684 2024-09-11 09:03:51.765688 92d724f2-8290-430c-98e8-38f73a6a7b99 {"pid": "3730", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028558200"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:51.823238 2024-09-11 09:03:51.823241 fe70195e-749d-4729-9413-b95ee9ea67f9 {"pid": "3731", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028615719"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:51.880593 2024-09-11 09:03:51.880597 4b3d8365-77f0-45cd-9774-1089f05b7982 {"pid": "3732", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028666925"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:51.94238 2024-09-11 09:03:51.942384 5c0ffd16-669b-4e7a-bff8-ab54ca964952 {"pid": "3733", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028681673"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109323353"} 1 +2024-09-11 09:03:51.999042 2024-09-11 09:03:51.999046 a33589ea-7376-4cd5-9e22-b1c4b7763460 {"pid": "3734", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028735498"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:52.137099 2024-09-11 09:03:52.137103 df96c6a6-b72b-4125-b48c-ec305dbe6d23 {"pid": "3735", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028882199"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:52.261028 2024-09-11 09:03:52.261032 67d664e2-b07d-4e51-aaaf-7e348ae98834 {"pid": "3736", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/02893010X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:52.318514 2024-09-11 09:03:52.318517 6daf655d-9d5d-4d68-ad40-101b1262e9ce {"pid": "3737", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/02903096X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:52.378275 2024-09-11 09:03:52.37828 83b2e001-f945-4775-b28d-c0799c242f53 {"pid": "3738", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/02907309X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:52.434124 2024-09-11 09:03:52.434134 406d126a-195f-4215-a6ce-15f235f8081b {"pid": "3739", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/029077087"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:52.490405 2024-09-11 09:03:52.49041 b3094b94-b67a-49e6-b9db-7d7e21d3a242 {"pid": "3740", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/029195640"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:52.57983 2024-09-11 09:03:52.579833 f77d646e-7173-4e89-82fd-6306e50a5dc5 {"pid": "3741", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/029214084"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:52.646244 2024-09-11 09:03:52.646247 f49a8b5b-ddb1-4964-915e-3cdc598d7e20 {"pid": "3742", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/029218977"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:52.711166 2024-09-11 09:03:52.711169 29f294a7-c79d-4422-b722-a443317da167 {"pid": "3743", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/029470293"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:52.770897 2024-09-11 09:03:52.7709 fef207b4-970f-4a41-8752-cc388345ebf4 {"pid": "3744", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/029580293"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:52.842465 2024-09-11 09:03:52.842469 a8087c74-494b-4a4e-bba3-be79b9cd266e {"pid": "3745", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/029589681"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:52.976919 2024-09-11 09:03:52.976921 c6db79dd-3758-413d-8644-570418d3b76a {"pid": "3746", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/029652138"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:53.035103 2024-09-11 09:03:53.035107 56b01ce0-1017-4706-bcac-a6a71e7a9644 {"pid": "3747", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/029688019"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:53.086462 2024-09-11 09:03:53.086465 d6f58d83-93db-49cb-9419-052fe1f87505 {"pid": "3748", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/029698510"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:53.20369 2024-09-11 09:03:53.203695 52c42d7e-5c12-46cc-b178-4b37fb8ce3d6 {"pid": "3749", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/029761867"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:13.870167 2024-09-11 09:06:24.695088 185a57af-ea79-483d-8845-b6df46e72cc3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/131812378"}, "pid": "2178", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002941414"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/029733944"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110844373"} 3 +2024-09-11 09:02:16.374691 2024-09-11 09:06:28.538342 aedc2756-ce55-4a6c-a544-b3660a0e4230 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/13355757X"}, "pid": "2219", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003111864"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028902661"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111556606"} 3 +2024-09-11 09:06:38.222517 2024-09-11 09:06:38.22252 1468dbf1-8cb0-42cd-8d3f-fef88f542e74 {"pid": "6222", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003454418"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:38.339699 2024-09-11 09:06:38.339701 1d375bed-8cbd-47e1-a280-3a7ed4ed20e2 {"pid": "6223", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003462661"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:53.255346 2024-09-11 09:03:53.255351 63a2a2e8-a8e1-4425-9afc-e21392500362 {"pid": "3750", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/029767849"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:53.369353 2024-09-11 09:03:53.369357 e150e74c-00df-429b-9875-9561d16fe8ac {"pid": "3751", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/029869587"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:53.428199 2024-09-11 09:03:53.428203 5c2292d2-0def-47c8-b858-f06b98a9d18f {"pid": "3752", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/029872235"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:53.58472 2024-09-11 09:03:53.584723 bcb17956-68d8-4a1c-b97a-66db5a9c6560 {"pid": "3753", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/029986761"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:53.638575 2024-09-11 09:03:53.638578 5c01bcc5-f9a1-4df6-b613-fa06cae866da {"pid": "3754", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/029994861"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:53.692532 2024-09-11 09:03:53.692536 1ab77f02-4f16-4abd-9b3f-7ef94e90d9da {"pid": "3755", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030045614"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:53.744746 2024-09-11 09:03:53.744751 b672c84a-4e6a-4d65-986a-90e38ac62c8c {"pid": "3756", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030086329"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:53.806607 2024-09-11 09:03:53.806612 d1a1d9c2-36ea-4bf9-aa83-52850e0f29c5 {"pid": "3757", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030097886"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "deleted": "2023-05-02T15:49:27.476865+00:00"} 1 +2024-09-11 09:03:53.86747 2024-09-11 09:03:53.867475 53351164-e19c-4465-9260-e1621b88a036 {"pid": "3758", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030132711"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:53.918928 2024-09-11 09:03:53.918933 2568c2b5-33ba-4b1a-90f5-7c29987de01a {"pid": "3759", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/03013739X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:53.974893 2024-09-11 09:03:53.974896 838a193c-3908-474f-b443-25087655407a {"pid": "3760", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030187400"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:54.032883 2024-09-11 09:03:54.032887 3730c2aa-6b19-428d-b99b-a66b47528014 {"pid": "3761", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030198011"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:54.214425 2024-09-11 09:03:54.21443 37d237fa-77de-44de-b1d9-3da9c506746e {"pid": "3762", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/03025843X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:54.268711 2024-09-11 09:03:54.268714 ef520074-c5bc-4046-a2e3-4c583242809c {"pid": "3763", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030281342"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:54.393585 2024-09-11 09:03:54.39359 29d6f60f-486b-46e7-ad58-ffb58f9ffe98 {"pid": "3764", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030327687"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:54.447234 2024-09-11 09:03:54.447238 90896df4-6efd-4426-9f46-8374f02f22f7 {"pid": "3765", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030343429"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:54.567809 2024-09-11 09:03:54.567812 c7327385-9fc8-4c86-91eb-6c6d1224b457 {"pid": "3766", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030459249"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:54.620908 2024-09-11 09:03:54.620913 14147437-2542-4a1f-afaf-c0de73dd873b {"pid": "3767", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030486882"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:54.672255 2024-09-11 09:03:54.672257 fc3c6f03-79ab-4629-8cf5-51e8a143fe02 {"pid": "3768", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030490855"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:54.803106 2024-09-11 09:03:54.80311 cc0c0279-975d-4d7b-b960-2dced2be63c3 {"pid": "3769", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030557585"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:54.855552 2024-09-11 09:03:54.855557 771c22ea-964e-41bf-9ddb-e77e95c14a85 {"pid": "3770", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030575230"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:54.909957 2024-09-11 09:03:54.909962 cceb17dd-65d3-4f84-ae93-6c47c2cb4ab3 {"pid": "3771", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030633176"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:54.960262 2024-09-11 09:03:54.960267 59f4c902-55b0-4771-8a9a-03318c658b16 {"pid": "3772", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030713234"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:55.015724 2024-09-11 09:03:55.015727 eb4e0c6a-765c-40d0-a230-791beb04e14c {"pid": "3773", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/03074198X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:45.542936 2024-09-11 09:06:39.580994 476978fc-d962-4e43-be4b-a52ec2afec29 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/119033437"}, "pid": "1689", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003508662"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030223415"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112488933"} 3 +2024-09-11 09:01:44.349807 2024-09-11 09:06:44.934947 adb468cc-1b81-43b5-a39b-83067621288e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/118818805"}, "pid": "1668", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003743887"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030254515"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100208187"} 3 +2024-09-11 09:00:36.480284 2024-09-11 09:08:03.145737 c7508bb1-3ed0-4eba-b653-223684c30fe1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/100068944"}, "pid": "519", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A028868344"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030322995"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100177876"} 3 +2024-09-11 09:03:55.067529 2024-09-11 09:03:55.067532 6ce91300-9d7e-45d1-9894-abadc2def552 {"pid": "3774", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030745551"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:55.118349 2024-09-11 09:03:55.11836 0bdfe4dc-ce5a-4cb1-9068-f5b6b1a210da {"pid": "3775", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030782465"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:55.173588 2024-09-11 09:03:55.173592 f8919af1-754c-4a3d-a1f7-ade3350a096c {"pid": "3776", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030802997"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:55.223917 2024-09-11 09:03:55.223921 60fc1314-d80a-45c2-b4bc-9b23590a2026 {"pid": "3777", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030818095"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:55.296167 2024-09-11 09:03:55.296171 775dbe27-b9af-41a1-aec2-23d8bdcd72dc {"pid": "3778", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030835828"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:55.351161 2024-09-11 09:03:55.351165 61934462-af64-4301-ac58-7ece83de9bbe {"pid": "3779", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030851025"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:55.402496 2024-09-11 09:03:55.402501 c6392896-d0a3-4b8b-8b58-a10e50ab1817 {"pid": "3780", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030875277"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:55.457429 2024-09-11 09:03:55.457432 db07be09-d015-45ec-85cd-6ffd14bfbc56 {"pid": "3781", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/03089719X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:55.509087 2024-09-11 09:03:55.509091 7162f5f2-9dd8-446b-bb0b-4d8044f9ebb8 {"pid": "3782", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030907667"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:55.566453 2024-09-11 09:03:55.566458 e154830e-d38d-4c4a-a68e-efe97fa8092c {"pid": "3783", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030913632"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:55.638201 2024-09-11 09:03:55.638206 31c57c73-d6b8-48e0-8a12-cdfd622716fa {"pid": "3784", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/031015808"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:55.695381 2024-09-11 09:03:55.695385 50bb5877-b89b-420a-b685-fcb2b546d81e {"pid": "3785", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/031060102"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:55.747668 2024-09-11 09:03:55.747671 9193346e-12d3-489c-bb47-621335d01994 {"pid": "3786", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/031064442"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:55.801907 2024-09-11 09:03:55.801912 f4f02311-5dc5-47ab-931d-96a916acf332 {"pid": "3787", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/031133231"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:55.855903 2024-09-11 09:03:55.855908 3090b7a2-0b69-4b87-ae13-c166d351fe17 {"pid": "3788", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/031162568"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:55.908234 2024-09-11 09:03:55.908238 139ad5b1-1754-4760-82cc-043562751b34 {"pid": "3789", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/031226396"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:55.96449 2024-09-11 09:03:55.964495 8bbf647f-ad4a-4b5a-ac7e-4792c041e782 {"pid": "3790", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/031344712"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:56.029597 2024-09-11 09:03:56.029602 75200de0-0bf2-4433-b03b-da2c4f9e7839 {"pid": "3791", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/031382584"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:56.089127 2024-09-11 09:03:56.089133 12497da5-c638-4965-8173-d78c0ade394f {"pid": "3792", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/031416349"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:38.994621 2024-09-11 09:03:56.150473 bed2f7d6-c387-4f2b-bd6b-49ab86629df7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/170154297"}, "pid": "2596", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/031419763"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108931621"} 2 +2024-09-11 09:03:56.212496 2024-09-11 09:03:56.2125 a4401f9e-90be-48d5-928f-3a9037f63acc {"pid": "3793", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/031461034"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:56.280472 2024-09-11 09:03:56.280476 21a762ce-1fa0-455a-9de0-4dc48f2dca44 {"pid": "3794", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/031598285"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:56.339138 2024-09-11 09:03:56.339142 23fe9cdf-9d1a-4f40-ad73-ff9e8a8cf619 {"pid": "3795", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/031639704"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:56.4055 2024-09-11 09:03:56.405503 74a0a3eb-65f4-4b46-a262-bdf86d782fc7 {"pid": "3796", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/03165746X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:56.463748 2024-09-11 09:03:56.463752 6746e84d-5afe-4971-a954-b5ce83e66017 {"pid": "3797", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/031718752"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:56.52056 2024-09-11 09:03:56.520567 ecbd90f4-5720-43e4-acd5-d1d7431f013c {"pid": "3798", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/03172406X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:56.584811 2024-09-11 09:03:56.584814 5deab0d2-aee9-464b-a802-0ec509b109ee {"pid": "3799", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/03175709X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:56.65507 2024-09-11 09:03:56.655074 a4f34720-2c76-4151-9def-0607df0a544e {"pid": "3800", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/03180862X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:56.791951 2024-09-11 09:03:56.791955 77b9cee3-75d8-46fc-9254-921f4acb1c18 {"pid": "3801", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/031859259"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:56.851361 2024-09-11 09:03:56.851364 16d9074b-e5ce-4ae4-b0e0-f74316a780e0 {"pid": "3802", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/031867359"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:56.909567 2024-09-11 09:03:56.909571 20f51e3c-19b9-4f09-bf14-03d0a9ebd540 {"pid": "3803", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/031876633"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:56.970356 2024-09-11 09:03:56.970359 76aebcd8-32be-40a8-80b5-40723c73d815 {"pid": "3804", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/031962963"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:57.030185 2024-09-11 09:03:57.030189 94fe7b23-79ef-4fcd-b684-6c9e9cc77ede {"pid": "3805", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032004184"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:57.091432 2024-09-11 09:03:57.091436 7c8c9c89-341c-4d43-b3b6-f37abb90ff79 {"pid": "3806", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032063830"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:57.150943 2024-09-11 09:03:57.150947 512c90ba-11d3-483c-9949-d5efdccd2df3 {"pid": "3807", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032075049"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:57.217316 2024-09-11 09:03:57.21732 58b12290-784d-4a7d-88ec-439470c05a08 {"pid": "3808", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032099886"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:57.459773 2024-09-11 09:03:57.459777 0254b30c-63df-4ec7-a1fe-b6b429304247 {"pid": "3809", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032316704"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:57.521489 2024-09-11 09:03:57.521493 2685df57-cddf-42af-9ab3-1d7708bc5b4c {"pid": "3810", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032353618"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:57.593555 2024-09-11 09:03:57.593559 2bd57462-7e5e-4541-b2a3-202dd8fd367d {"pid": "3811", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032395116"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:57.671482 2024-09-11 09:03:57.671485 c5589b8a-506c-49cb-bfdd-165f50beaa87 {"pid": "3812", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032397402"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:57.806186 2024-09-11 09:03:57.80619 44d10a13-fcdc-4fc0-82b0-52448218e22b {"pid": "3813", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032477449"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:57.877655 2024-09-11 09:03:57.877658 d90d36ff-f2e0-4453-a432-1a1ec7750419 {"pid": "3814", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032498179"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:57.963055 2024-09-11 09:03:57.963058 548f803a-0ee9-416b-9c7d-8c0ad180e6b4 {"pid": "3815", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/03259626X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:58.025281 2024-09-11 09:03:58.025286 c037338f-ba5d-4e9c-bafa-c0f50db4199c {"pid": "3816", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032605641"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:58.170686 2024-09-11 09:03:58.17069 de27deeb-33ba-45b0-95c8-33f542dbe41b {"pid": "3817", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032638116"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100970019"} 1 +2024-09-11 09:03:58.299969 2024-09-11 09:03:58.299973 858e36c5-37e4-47d7-82a1-cb5da419f03c {"pid": "3818", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032679629"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:58.356298 2024-09-11 09:03:58.356301 9a108f51-3f93-45e4-9b4f-465df46168a8 {"pid": "3819", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032706391"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:58.415068 2024-09-11 09:03:58.415072 f1c64cf6-754b-47a3-b79f-f35861a2e971 {"pid": "3820", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032722567"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:58.577927 2024-09-11 09:03:58.577931 2cf3100b-191c-4071-9ac0-5ca9a9172883 {"pid": "3821", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032807589"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:58.670279 2024-09-11 09:03:58.670285 3b622a2b-4163-488c-8f5a-7a9cbbe61c74 {"pid": "3822", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032842694"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:58.731258 2024-09-11 09:03:58.731263 bf38956d-883e-42c6-9900-a4479a87368d {"pid": "3823", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032846908"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:58.860601 2024-09-11 09:03:58.860605 88903807-f8bf-42cd-8bf9-8f2613a74b36 {"pid": "3824", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/033004633"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:58.987211 2024-09-11 09:03:58.987215 092a5279-0a18-455e-bd4c-380f25b1c022 {"pid": "3825", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/033070245"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:59.044715 2024-09-11 09:03:59.044718 4cd9b5de-02fd-4f62-93a6-fcc75779bc55 {"pid": "3826", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/033079595"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:59.110462 2024-09-11 09:06:38.279871 cda79a8f-f40d-41d1-b6ee-aff3c3bd58d9 {"pid": "3827", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003454993"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/033151571"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105099045"} 2 +2024-09-11 09:03:59.250875 2024-09-11 09:03:59.250878 c4452217-995e-49b3-9fe2-cdf05be52ac7 {"pid": "3828", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/033239568"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:58.957979 2024-09-11 09:06:25.674848 6bae3dc9-9f45-4d8b-8362-e53d05633590 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1072585936"}, "pid": "906", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002992084"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/03225413X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109443198"} 3 +2024-09-11 09:06:38.392569 2024-09-11 09:06:38.392573 eb560cc3-ef66-44a0-ade3-db2b3db4cb6b {"pid": "6224", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003469619"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:38.473471 2024-09-11 09:06:38.473475 7afa904f-d480-4a3b-8442-1a144a7dd7ee {"pid": "6225", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003471135"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:59.304227 2024-09-11 09:03:59.30423 0736a36a-5ba1-45ab-8615-93e9f2dd2a9e {"pid": "3829", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/033386242"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:59.364599 2024-09-11 09:03:59.364603 502dc2c3-cbdf-4db7-ad9d-b1d263f21cd6 {"pid": "3830", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/033392757"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:59.419554 2024-09-11 09:03:59.41956 f77023f1-828c-42b5-b53e-c133897e2a45 {"pid": "3831", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/033454175"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:59.549143 2024-09-11 09:03:59.549147 39a7ec56-22c4-442b-a175-e896512ee81c {"pid": "3832", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/033596344"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:59.607654 2024-09-11 09:03:59.607657 26b51703-48cf-4eed-a18e-8b4a5d87481d {"pid": "3833", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/033614717"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:59.668009 2024-09-11 09:03:59.668013 4a10669a-0ccd-4419-99eb-4b16fe79d648 {"pid": "3834", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/033846987"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:59.855225 2024-09-11 09:03:59.85523 2bd8465a-a05c-4007-a9ad-278d68d7dc27 {"pid": "3836", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/033883262"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109454"} 1 +2024-09-11 09:03:59.917595 2024-09-11 09:03:59.917599 0d7af1bf-52a0-4b29-bf8a-cdef1d7d1c03 {"pid": "3837", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/033900795"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:03:59.97975 2024-09-11 09:03:59.979755 3e4bc9ae-6611-43bb-8411-62215b0036ab {"pid": "3838", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/03391737X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:00.132635 2024-09-11 09:04:00.132641 f51587ef-a331-4cf6-bd7b-099ed5cb76ec {"pid": "3840", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/033931941"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:00.192801 2024-09-11 09:04:00.192805 85f71b55-340c-4889-a0a9-cd3a906322dd {"pid": "3841", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/033938989"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:00.257742 2024-09-11 09:04:00.257746 4af58e87-d4ce-4646-9083-8259119a1d7b {"pid": "3842", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/033976171"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:00.317746 2024-09-11 09:04:00.31775 65e9fb07-ea6b-4037-b233-76f67069588e {"pid": "3843", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034035370"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:00.374013 2024-09-11 09:04:00.374017 7bce2df9-41b8-4517-a6b7-27c1d427b34b {"pid": "3844", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034035818"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:00.434464 2024-09-11 09:04:00.43447 ce954983-466f-48f8-87c1-858a70a771e6 {"pid": "3845", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034075763"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:00.500152 2024-09-11 09:04:00.500157 88311684-dbb4-4cd2-9b27-fe80da0f9f90 {"pid": "3846", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034085289"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:00.555863 2024-09-11 09:04:00.555869 88641c2a-5a3d-4e78-a793-00d651df21f4 {"pid": "3847", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034112774"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:00.610917 2024-09-11 09:04:00.610921 505d217f-b6a7-46d1-b0bb-6e78d969b2cc {"pid": "3848", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034263802"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:00.673801 2024-09-11 09:04:00.673804 faa963ac-320d-480c-a52e-13818872c33e {"pid": "3849", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034287728"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:00.730889 2024-09-11 09:04:00.730893 687f795f-92b0-4f2e-8c4a-18187952efa0 {"pid": "3850", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034310770"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:00.793393 2024-09-11 09:04:00.793399 5c8ddb27-49ac-4500-8b3b-611a0da6c92f {"pid": "3851", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034314873"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:00.861666 2024-09-11 09:04:00.861669 0729a08d-49f1-4ba9-8e1a-016fd35876c8 {"pid": "3852", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/03433999X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:00.929992 2024-09-11 09:04:00.929996 09eea033-eb87-44d6-bd71-8fb4e0c001a7 {"pid": "3853", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034343237"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:00.989885 2024-09-11 09:04:00.989888 29d41faa-9712-4a6f-a42a-f6a00d648ef6 {"pid": "3854", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034358218"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:01.128196 2024-09-11 09:04:01.128198 b03e4ad2-8151-46bd-876a-0288dbc55672 {"pid": "3855", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034511474"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:01.191355 2024-09-11 09:04:01.191359 388309ac-d399-4fd1-bb45-d6ddbfd6f7e3 {"pid": "3856", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034517928"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:04.545381 2024-09-11 09:06:36.195915 7e2cc55a-11c7-4b37-9da8-3b0606661bd2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1251284507"}, "pid": "2013", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003389309"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/03386540X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111536680"} 3 +2024-09-11 09:03:59.729417 2024-09-11 09:06:48.085438 39b9d069-9588-42ba-984d-9271a69ab44a {"pid": "3835", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003883717"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/033864357"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107037201"} 2 +2024-09-11 09:04:00.072648 2024-09-11 09:06:48.894198 dc7e1e3e-c5eb-466a-9b3d-ef96375e4955 {"pid": "3839", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003943767"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/033922055"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110119"} 2 +2024-09-11 09:04:01.273641 2024-09-11 09:04:01.273645 561ac86c-b384-4ca9-914e-c359dbf27ab1 {"pid": "3857", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034537015"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:01.342831 2024-09-11 09:04:01.342834 587cca6d-3e29-49cc-afc1-2991a91292ff {"pid": "3858", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034561528"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:01.412132 2024-09-11 09:04:01.412138 81ee04f9-fe27-4653-9ee3-eb6b1dc4b26c {"pid": "3859", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034612998"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:01.471086 2024-09-11 09:04:01.471089 82f792ec-b31a-4337-8255-b6f038d70fcc {"pid": "3860", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034663525"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:01.529355 2024-09-11 09:04:01.52936 7e6d6b00-cbaf-460f-8a79-e771fdb3b3a6 {"pid": "3861", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034692711"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:01.588073 2024-09-11 09:04:01.588077 229d6ae9-18ab-4a5b-b0de-eaf623302260 {"pid": "3862", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034696601"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:01.651299 2024-09-11 09:04:01.651303 c52570da-7e16-4f27-983c-e97236e756be {"pid": "3863", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034702105"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109727977"} 1 +2024-09-11 09:04:01.710948 2024-09-11 09:04:01.710953 944bd1c6-402a-4e50-99ef-e1f46890900e {"pid": "3864", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034710647"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:01.854491 2024-09-11 09:04:01.854495 c0e03cd8-ba1f-4ffd-9745-a37f390a794f {"pid": "3866", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034830936"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:01.917133 2024-09-11 09:04:01.917136 d9a7ccc3-a235-4470-a9e8-21d4bcec09c3 {"pid": "3867", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034833064"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:01.979098 2024-09-11 09:04:01.979102 c8034571-2cab-419f-b21d-3dd9d78e461c {"pid": "3868", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034886060"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:02.047745 2024-09-11 09:04:02.047749 0e99d290-0436-4674-9146-b0fee1f4514e {"pid": "3869", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034922903"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:02.110687 2024-09-11 09:04:02.11069 fdab5e62-4366-47e9-aeba-ce1a1e9e7eb6 {"pid": "3870", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034931929"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102388337"} 1 +2024-09-11 09:04:02.170307 2024-09-11 09:04:02.170313 1185dcad-97fc-4209-9c81-11f5b7eb0333 {"pid": "3871", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034938656"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:02.230601 2024-09-11 09:04:02.230606 a46db5f3-3cc6-4143-9e7f-27c9be4883c3 {"pid": "3872", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034953809"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:02.289925 2024-09-11 09:04:02.28993 76408c68-27c0-4c85-b1d1-8e8aeb7852d7 {"pid": "3873", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/035009039"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:02.347646 2024-09-11 09:04:02.347649 a7134319-c998-415d-91f8-ee55bb9c9606 {"pid": "3874", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/035068825"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:02.408629 2024-09-11 09:04:02.408633 b1a7c8d2-fb02-40c9-bd2e-a0851bc83c55 {"pid": "3875", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/035124199"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:02.463861 2024-09-11 09:04:02.463865 26d1b787-c5a8-423b-8e8e-2b2779d39d66 {"pid": "3876", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/035137045"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:02.551562 2024-09-11 09:04:02.551565 61e99f8e-1efe-420c-9658-c4209ff1c1bc {"pid": "3877", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/035170867"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:02.608665 2024-09-11 09:04:02.608669 b137795f-a790-4943-905d-f9a93df6acbe {"pid": "3878", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/035347988"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:02.668836 2024-09-11 09:04:02.668839 e2dc20b8-2e2b-4f0e-9a05-56b6e36063b6 {"pid": "3879", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/035348879"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:02.724854 2024-09-11 09:04:02.724857 83cab670-97a0-4132-9ee5-d660038a859d {"pid": "3880", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/035370572"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:02.789303 2024-09-11 09:04:02.789308 7aeb8f0d-a355-47a1-aa97-4f9fe51f155b {"pid": "3881", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/035451793"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:02.846232 2024-09-11 09:04:02.846235 d7216e0e-e418-45f4-a70c-fb1cb2f6ede8 {"pid": "3882", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/035466278"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:02.90628 2024-09-11 09:04:02.906283 789fa59b-5326-43e7-bca9-3257e096ca1d {"pid": "3883", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/035467207"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:02.964159 2024-09-11 09:04:02.964164 61c11ee0-9316-46c2-8ec3-1444bc32c5bd {"pid": "3884", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/035550767"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:03.024727 2024-09-11 09:04:03.024732 1fab6ed0-da21-43bf-9127-dd5f1fdf09c2 {"pid": "3885", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/035552913"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:03.082301 2024-09-11 09:04:03.082306 428781bb-096d-4988-858c-2251cd918bbe {"pid": "3886", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/035560754"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:03.143194 2024-09-11 09:04:03.143199 ab940c33-bb43-4bac-98e7-eb1cff954eec {"pid": "3887", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/035599634"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:03.207373 2024-09-11 09:04:03.207376 b688ca52-ba5e-428c-91f8-d659080b123e {"pid": "3888", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/035617179"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:03.277194 2024-09-11 09:04:03.277198 ae8057eb-2296-4bcf-a99d-8aee7d7e0d38 {"pid": "3889", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/035695161"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:03.336437 2024-09-11 09:04:03.336441 d24717df-7373-4906-990b-3fc111d050c7 {"pid": "3890", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/050162373"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:03.398517 2024-09-11 09:04:03.398521 ced1884f-a4bf-42ba-8387-09602b9fe3ec {"pid": "3891", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/050191101"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:03.524577 2024-09-11 09:04:03.524582 b39a9c99-634c-4c24-910f-56ed2126ba2a {"pid": "3892", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/05021425X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:03.648348 2024-09-11 09:04:03.648352 c41d1603-1e2c-48fb-9b04-30a5a90cae91 {"pid": "3893", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/050262645"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:03.705229 2024-09-11 09:04:03.705233 dc833771-640b-4f8b-876a-65f0e6545323 {"pid": "3894", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/050270982"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:03.76198 2024-09-11 09:04:03.761983 4ba85975-5e6e-4fe7-b296-4a067ccc3126 {"pid": "3895", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/050313800"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:03.821808 2024-09-11 09:04:03.821816 93683042-c69f-4d28-8890-947016b03dbf {"pid": "3896", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/050321692"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:03.879831 2024-09-11 09:04:03.879834 cc3c82ae-e6ec-4d87-9f0b-1b55a533f1ba {"pid": "3897", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/050323474"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:03.970959 2024-09-11 09:04:03.970963 3d7339da-b1d7-4fbf-9b68-fcf4d909bd8e {"pid": "3898", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/050329332"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:04.136804 2024-09-11 09:04:04.136809 6279427c-2968-4121-a3b2-3a8b379a8081 {"pid": "3899", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/050593587"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:04.203066 2024-09-11 09:04:04.20307 e793e7c6-6b82-46ac-8125-9a4d5f699fa1 {"pid": "3900", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/05066302X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:04.261633 2024-09-11 09:04:04.261637 5f1845b4-5872-473e-9076-072862d30ef8 {"pid": "3901", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/050667947"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:04.39216 2024-09-11 09:04:04.392165 f9f3ad05-240b-4725-a4a0-d8834109f567 {"pid": "3902", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/050723634"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:04.452842 2024-09-11 09:04:04.452846 e9ccdbe2-bd16-4f54-affd-113de4495067 {"pid": "3903", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/050785745"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:04.512835 2024-09-11 09:04:04.512838 50fe24f3-91e3-4455-a427-8656df45fa0a {"pid": "3904", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/050798928"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:04.641637 2024-09-11 09:04:04.641641 583116a3-e685-445b-adc0-291db24d7c47 {"pid": "3905", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/052206327"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:04.709329 2024-09-11 09:04:04.709334 1b543be3-a91b-4fdc-b4d7-3e21f83f173d {"pid": "3906", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/052460819"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:04.791886 2024-09-11 09:04:04.79189 abbc1b0c-5b4d-4eac-b816-f0f580852eaf {"pid": "3907", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/052470911"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:04.924661 2024-09-11 09:04:04.924664 e5b52f45-58d8-4499-9dfc-8e7056b754dc {"pid": "3908", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/052556220"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:04.981548 2024-09-11 09:04:04.981551 389b97fb-25ec-4cee-a008-ab86e5584011 {"pid": "3909", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/052737284"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:05.052565 2024-09-11 09:04:05.05257 554ee7ec-4aad-4e4f-bf62-72e5e198a13b {"pid": "3910", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/053434080"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10014052"} 1 +2024-09-11 09:04:05.111768 2024-09-11 09:04:05.111771 b58cd497-7570-42ce-a4b7-f76236a4fdd6 {"pid": "3911", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/053500679"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:05.35274 2024-09-11 09:04:05.352744 feaadd3c-8a4d-4817-bd6c-546f3d1eebd2 {"pid": "3912", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/055386806"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:05.422429 2024-09-11 09:04:05.422435 a9df84b6-d47b-4b74-858d-3253e78df571 {"pid": "3913", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/056579780"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:22.401686 2024-09-11 09:06:35.431114 df6172db-9a60-4723-99dd-ac5d43e9576d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139380027"}, "pid": "2307", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003364295"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/050225146"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100902870"} 3 +2024-09-11 09:02:30.203407 2024-09-11 09:06:48.770222 806e0b00-293b-4eb2-9fd2-d04391845700 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141208740"}, "pid": "2441", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003919082"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/055333893"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109826878"} 3 +2024-09-11 09:04:05.481047 2024-09-11 09:04:05.48105 61ad740f-7519-4d9b-abfd-b823255fb05f {"pid": "3914", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/056753950"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:05.540847 2024-09-11 09:04:05.540851 41590d06-a6ae-4f64-b19c-6d06b9c8c8da {"pid": "3915", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/056755759"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:05.640047 2024-09-11 09:04:05.64005 4403394b-cca7-4fb4-914a-b7c98b41f541 {"pid": "3916", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/056764073"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:05.703524 2024-09-11 09:04:05.703528 8657728e-ac07-497d-aa5b-53baf2091001 {"pid": "3917", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/056766378"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:05.844633 2024-09-11 09:04:05.844638 f2060fcb-c9a1-4259-9288-8ce318147026 {"pid": "3918", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/056810881"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:48.474805 2024-09-11 09:06:33.492514 9a0b04a6-2a3b-44a2-bf03-fe2f61c756d1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1199011495"}, "pid": "1736", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003275937"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/168647567"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108821984"} 3 +2024-09-11 09:04:06.091646 2024-09-11 09:04:06.091651 82af85d6-49f6-494b-958b-4ba1dd0dbc7d {"pid": "3920", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/056844093"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:06.159583 2024-09-11 09:04:06.159586 0e37112e-c092-4e2d-ac07-5ff76b4fd406 {"pid": "3921", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/056857276"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:06.243106 2024-09-11 09:04:06.24311 baccdee5-791c-4824-9059-a6e0c2b8f6a3 {"pid": "3922", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/056868324"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:06.364916 2024-09-11 09:04:06.364921 4191fced-f527-4a18-ba0a-8e6e519953e6 {"pid": "3924", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/056955669"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:06.439775 2024-09-11 09:04:06.439779 9d4d4c3d-1088-4645-b0c2-d730051077b4 {"pid": "3925", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/057030448"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:06.509511 2024-09-11 09:04:06.509514 0dd900cb-014d-4aa4-8a94-6742fcf427be {"pid": "3926", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/057097909"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:06.613318 2024-09-11 09:04:06.613323 50e3e273-f77d-4285-9b07-c9d9501763bf {"pid": "3927", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/057101795"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:06.680074 2024-09-11 09:04:06.680078 a05b2476-8898-477f-b1af-2e33b9f01e3b {"pid": "3928", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/057110662"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:06.748964 2024-09-11 09:04:06.748968 87d9fc7c-361e-499f-868c-0b535e04e91c {"pid": "3929", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/057199892"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:06.815964 2024-09-11 09:04:06.815968 7895473b-dd6a-47f7-9605-c7f8bbbe4f62 {"pid": "3930", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/057249660"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:06.87896 2024-09-11 09:04:06.878965 d542ac6b-1dbd-4711-bd76-c3f76aed2e77 {"pid": "3931", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/057271372"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:06.935326 2024-09-11 09:04:06.93533 8a4afcad-16d2-488f-b32e-e5e5956c4485 {"pid": "3932", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/057329850"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:06.993851 2024-09-11 09:04:06.993856 437e23bc-c7b1-4c70-83b2-a4a6660f97f8 {"pid": "3933", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/057345627"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:07.05274 2024-09-11 09:04:07.052744 be49b64c-e140-48b9-8453-7204fb3639f1 {"pid": "3934", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/057376719"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:07.111733 2024-09-11 09:04:07.111736 9d7cd9fa-11ce-4a28-8632-693c7a46cf85 {"pid": "3935", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/057556474"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:07.168461 2024-09-11 09:04:07.168464 2023f2bd-09c3-4d4b-8961-144f8487a029 {"pid": "3936", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/057564647"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:07.234807 2024-09-11 09:04:07.234813 176666bb-7cc3-4e1c-bf56-2a2f4c567f9c {"pid": "3937", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/057564876"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:07.29383 2024-09-11 09:04:07.293835 3e59e6ec-38e5-43bf-b76e-271176ba89cd {"pid": "3938", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/057687242"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:07.362104 2024-09-11 09:04:07.362107 95dfa337-c732-4978-9326-d4bf7ad2eb4a {"pid": "3939", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/05769009X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:07.418641 2024-09-11 09:04:07.418646 57a1e674-ccbb-4df0-af2c-a9da014c393c {"pid": "3940", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/05776171X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:07.476592 2024-09-11 09:04:07.476595 94336581-5a35-453e-bf3f-c98225261a87 {"pid": "3941", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/057791511"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:07.538404 2024-09-11 09:04:07.538407 57a48367-b3d3-48ed-b67b-f24978058366 {"pid": "3942", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/057941386"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:07.602465 2024-09-11 09:04:07.602469 88166a89-8c66-4a71-93ed-8845ec7b29a9 {"pid": "3943", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/058054529"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:07.663492 2024-09-11 09:04:07.663496 c1e81332-c2a5-4967-83a5-5590da0a0400 {"pid": "3944", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/058114491"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:07.723187 2024-09-11 09:04:07.723189 4e02c37e-1e7a-45c2-b7cb-88af08c0dffd {"pid": "3945", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/058598928"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10100759"} 1 +2024-09-11 09:04:07.779631 2024-09-11 09:04:07.779634 f4ec68a1-d97d-4de4-aeb7-89a779448a6d {"pid": "3946", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/058861998"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:07.834417 2024-09-11 09:04:07.834421 29912eaa-01b2-4157-887e-07f11dea1a90 {"pid": "3947", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/058993789"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:07.894567 2024-09-11 09:04:07.894569 881c26de-56ed-441a-9efe-47098d669207 {"pid": "3948", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/059051051"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:07.952013 2024-09-11 09:04:07.952018 209bcfdb-5bc7-4ddd-a223-d6180853dd0e {"pid": "3949", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/059202491"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:01.632904 2024-09-11 09:04:08.090763 88da2cfd-9830-4c8a-8eb2-31e09330c43a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124271057"}, "pid": "1963", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/059412720"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10775010"} 2 +2024-09-11 09:04:08.223174 2024-09-11 09:04:08.223179 4f3ca339-7416-44a8-a791-e7e3455acc7f {"pid": "3951", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/059742984"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:08.278648 2024-09-11 09:04:08.278652 726c61cb-0280-415b-bfb0-76c90f3164a4 {"pid": "3952", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/059774177"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:08.337172 2024-09-11 09:04:08.337174 15e7d3d4-7acc-4ee4-8fef-defc05cee93f {"pid": "3953", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/059780843"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:08.392716 2024-09-11 09:04:08.392721 99d24d03-af39-4647-86a5-7136e5453e1b {"pid": "3954", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/059922184"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:08.452508 2024-09-11 09:04:08.452514 827f7e46-0a6f-4169-bf2e-66c91b9bd931 {"pid": "3955", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/059943696"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:08.513747 2024-09-11 09:04:08.513751 c008a5fa-a262-4a98-9db3-de6c834ee8fa {"pid": "3956", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/060104406"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:08.648326 2024-09-11 09:04:08.648329 30e35528-b9b5-4efe-8889-7c112dc301c9 {"pid": "3957", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/060256982"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:08.708626 2024-09-11 09:04:08.70863 ac81f9f7-9497-4e69-a557-adb53755bd61 {"pid": "3958", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/060459743"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:08.769921 2024-09-11 09:04:08.769924 08b9841a-d4e9-4027-a3da-5424b2ba8f0e {"pid": "3959", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/060721995"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10061654"} 1 +2024-09-11 09:04:08.836243 2024-09-11 09:04:08.836249 395add79-b530-4113-b691-1ab52977518b {"pid": "3960", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/060722320"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:08.893856 2024-09-11 09:04:08.893859 8efea292-0e0b-4307-86a8-3683827095b9 {"pid": "3961", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/060754435"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:08.954636 2024-09-11 09:04:08.954643 c0a5b6c9-4b49-445b-9ffd-1f790a46bb9e {"pid": "3962", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/060756985"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:09.010669 2024-09-11 09:04:09.010672 ca80d116-ad10-4979-a9f7-cb7ecdda36ad {"pid": "3963", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/060819529"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:09.067624 2024-09-11 09:04:09.06763 54473e7b-2079-482e-9c54-fa1341c96abc {"pid": "3964", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/060890932"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:09.125039 2024-09-11 09:04:09.125043 cf707dfa-2d1b-4e46-97da-0036e1b65e33 {"pid": "3965", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/061077690"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:09.180863 2024-09-11 09:04:09.180867 40388299-371b-47ba-8123-e3619fda3657 {"pid": "3966", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/061113603"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:09.240654 2024-09-11 09:04:09.240659 49ea03b7-2c47-4059-8d32-b7ceb89d590e {"pid": "3967", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/061131547"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:09.309832 2024-09-11 09:04:09.309836 1d3dc5f5-f64b-421e-b8c0-f18135ba539a {"pid": "3968", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/061135437"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:09.377234 2024-09-11 09:04:09.377238 2e8f794d-2429-44a8-9ffa-b21b9d81735e {"pid": "3969", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/061190586"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:09.447846 2024-09-11 09:04:09.447849 5edbac74-0302-4424-8432-294ccff8f144 {"pid": "3970", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/063876981"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:09.519307 2024-09-11 09:04:09.519312 d8ffe314-9437-413b-aca7-67c8ab51214b {"pid": "3971", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/066759099"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:19.845018 2024-09-11 09:07:22.386223 d4e38058-3365-49e1-b476-b9795fb3b9fc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/13685849X"}, "pid": "2275", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017326126"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/05961398X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110535141"} 3 +2024-09-11 09:04:08.014508 2024-09-11 09:07:44.965013 7a658f9e-3151-46d6-934a-a65fadf8b876 {"pid": "3950", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024255039"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/059213523"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10026905"} 2 +2024-09-11 09:04:09.595257 2024-09-11 09:04:09.59526 3b54390f-2c6d-4fd0-8163-a7660e548122 {"pid": "3972", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/066764602"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:09.655794 2024-09-11 09:04:09.655798 37b049a1-a850-4022-b07e-4c56ae487192 {"pid": "3973", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/066772834"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:09.716292 2024-09-11 09:04:09.716296 1f3dd08d-c446-4259-aced-85a657698d34 {"pid": "3974", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/06685086X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:09.775539 2024-09-11 09:04:09.775544 9dc6829c-48dd-4d87-be0f-cab0ed65a0ca {"pid": "3975", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/066879353"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:09.82984 2024-09-11 09:04:09.829844 65a79a8a-c4ba-49f9-9ad0-fcd0af0c7520 {"pid": "3976", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/066897815"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:09.890538 2024-09-11 09:04:09.89054 19fc8690-51f0-4693-8368-2a56f46e81c9 {"pid": "3977", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/066902096"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:09.947101 2024-09-11 09:04:09.947104 27835995-6e5c-4f45-ae84-aa58a4a1c6bf {"pid": "3978", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/066986540"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:10.005505 2024-09-11 09:04:10.00551 cd9ad0fc-81a8-4587-ac69-419a80c82c61 {"pid": "3979", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/066993709"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:10.12395 2024-09-11 09:04:10.123954 535e2de9-e6ed-41de-9bb8-34617fa21166 {"pid": "3980", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/067042767"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:10.180338 2024-09-11 09:04:10.180341 5daea724-e69b-4b7b-b236-f2da2233c41b {"pid": "3981", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/067071333"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:10.234288 2024-09-11 09:04:10.234295 0f938523-6f7c-496a-8a52-8449f870c1e8 {"pid": "3982", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/067071740"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:10.292635 2024-09-11 09:04:10.292639 e766f238-4f35-4b62-ac3f-85e68a58212d {"pid": "3983", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/067073204"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:10.346066 2024-09-11 09:04:10.346071 41a6b714-fe86-4c80-b6a1-16e62f85fc10 {"pid": "3984", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/067086055"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:10.403741 2024-09-11 09:04:10.403745 bdc2f7ea-897a-49c7-9fe0-5496150c572c {"pid": "3985", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/067096441"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:10.461493 2024-09-11 09:04:10.461496 5d097e20-033e-4ade-8993-b78b33bd4141 {"pid": "3986", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/067096824"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:10.591462 2024-09-11 09:04:10.591466 b01d5da2-961a-411f-8419-943f166f6968 {"pid": "3987", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/067181562"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:10.647352 2024-09-11 09:04:10.647356 2319676c-cd86-4212-b929-36ac6addc16f {"pid": "3988", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/067223613"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:10.702065 2024-09-11 09:04:10.702068 f21517c1-44f8-4b7f-b19a-1231b87eedc2 {"pid": "3989", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/067285716"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:10.756257 2024-09-11 09:04:10.756261 fcf5175f-b2a7-4f29-a4e6-c543f490d117 {"pid": "3990", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/067321666"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:10.812619 2024-09-11 09:04:10.812623 5fbb9e4b-fa34-495e-b104-bfd6fef82893 {"pid": "3991", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/067345395"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:10.869138 2024-09-11 09:04:10.869142 07f37ad2-339f-466a-9fcf-83ceb2d3de7f {"pid": "3992", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/067692753"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:10.990616 2024-09-11 09:04:10.990619 da0dc96f-9635-47f0-82cb-af6c017ab5d4 {"pid": "3993", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/067732003"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:11.04932 2024-09-11 09:04:11.049324 6c1178c8-05a4-4341-a361-57ad7f80651b {"pid": "3994", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/068703597"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:11.110445 2024-09-11 09:04:11.110449 13d48dc6-9894-4392-8c2f-76623b98405b {"pid": "3995", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/069064830"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10120900"} 1 +2024-09-11 09:04:11.171968 2024-09-11 09:04:11.171973 b04547a2-9cb6-4014-b3d2-7286cbcce131 {"pid": "3996", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/069116458"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:11.226444 2024-09-11 09:04:11.226448 5f340e13-c9a2-48d5-b8f5-5ae9ef1b06de {"pid": "3997", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/069130817"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:11.33963 2024-09-11 09:04:11.339633 b1a29e55-46ae-44b4-9b7c-4710ecd6c147 {"pid": "3999", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/06915547X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:11.393568 2024-09-11 09:04:11.393572 c9305d3c-e853-4a15-989f-0c07753b9b18 {"pid": "4000", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/069156964"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:11.45138 2024-09-11 09:04:11.451385 764479df-09ec-4f23-aa71-cdef0e7d93da {"pid": "4001", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/069265860"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:11.505748 2024-09-11 09:04:11.505751 e59ed331-e968-4a8f-9083-362416bc5227 {"pid": "4002", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/069379777"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:11.622637 2024-09-11 09:04:11.622639 045cdf54-aec5-4754-a84c-185b0e5f1413 {"pid": "4003", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/069679908"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:11.678546 2024-09-11 09:04:11.678551 a941314f-ff07-417b-9c74-64b8fab2154a {"pid": "4004", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/069781524"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:40.183301 2024-09-11 09:04:11.740864 a11a3333-4d27-4b0c-bb88-aca45751d5ba {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/117155608"}, "pid": "1597", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/069782768"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10615873"} 2 +2024-09-11 09:04:11.833929 2024-09-11 09:04:11.833934 57cb2742-4a84-45a0-9761-5946e93bf8e2 {"pid": "4005", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/069843783"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:11.947853 2024-09-11 09:04:11.947857 35cc5042-eb04-4be3-8573-5e9763d118dd {"pid": "4006", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/069844119"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:12.006819 2024-09-11 09:04:12.006821 c2240e73-db75-4dfd-949e-b94eee061804 {"pid": "4007", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/069886687"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:12.072162 2024-09-11 09:04:12.072167 185cbb92-c80b-4edf-8f26-e39fd12f6434 {"pid": "4008", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/070054878"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:12.130281 2024-09-11 09:04:12.130286 4354a35b-ee84-45ae-9f36-b4b77892c139 {"pid": "4009", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/070150737"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:12.187661 2024-09-11 09:04:12.187665 b4ab2bcc-37eb-46c9-ba0f-ac2dc9ec369d {"pid": "4010", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/070160538"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:12.368289 2024-09-11 09:04:12.368293 7ef04dc6-648a-4e9d-8995-d2634105bb84 {"pid": "4011", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/070377510"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:12.419204 2024-09-11 09:04:12.419207 d1550ef4-7f85-477c-b4ff-bb91b253ed0f {"pid": "4012", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/070400229"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:12.472326 2024-09-11 09:04:12.47233 c21bd3fe-6916-4a9a-a8fd-aedfadee26a8 {"pid": "4013", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/070478015"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:12.530663 2024-09-11 09:04:12.530666 378ec4f3-ed92-472c-98b9-907b5b6f0278 {"pid": "4014", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/070664900"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:12.582387 2024-09-11 09:04:12.582391 5cbd46d6-58ea-4344-bfe2-9849a0cc5acd {"pid": "4015", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/070977275"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:12.636309 2024-09-11 09:04:12.636312 97fc4ec9-e0af-4466-9806-01a5012ee7ac {"pid": "4016", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/071004092"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:12.758649 2024-09-11 09:04:12.758653 53f73e9c-ebb3-4aab-8142-48a52df210f5 {"pid": "4017", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/071088679"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:12.817279 2024-09-11 09:04:12.817283 c7733213-d7c6-40e7-94a5-c977bbc0e360 {"pid": "4018", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/071120637"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:12.879139 2024-09-11 09:04:12.879144 170fa675-572a-4375-966e-961ee4b31e87 {"pid": "4019", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/071285571"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107615966"} 1 +2024-09-11 09:04:12.932484 2024-09-11 09:04:12.932489 ec37b8db-e781-47a8-860c-349355d3d86c {"pid": "4020", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/071324380"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:33.55327 2024-09-11 09:06:33.553273 87ba614b-51db-4817-ad86-313b2ca6919e {"pid": "6165", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003276590"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:13.226201 2024-09-11 09:04:13.226204 5b1e6277-935d-4ad3-a808-46ec4a1e3f32 {"pid": "4022", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/071555994"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:13.290183 2024-09-11 09:04:13.290193 2ffe443b-5029-44d2-95b2-3269892be0b0 {"pid": "4023", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/07162080X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:13.360601 2024-09-11 09:04:13.360605 e509ce99-515c-4814-b06f-0b30ae241d2f {"pid": "4024", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/071960651"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:13.420851 2024-09-11 09:04:13.420857 54ad93bd-5cf8-4602-93a5-7a11d76343a0 {"pid": "4025", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/072291826"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:13.478716 2024-09-11 09:04:13.47872 58b85f66-5146-4524-8e82-706d471e7208 {"pid": "4026", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/073256897"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:13.537345 2024-09-11 09:04:13.537348 934bc4e0-ae5e-4f0f-886b-3a38bd7bcbda {"pid": "4027", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/07327822X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:13.593925 2024-09-11 09:04:13.59393 6a36717c-c004-45a4-b21c-2bd2d0ba03f6 {"pid": "4028", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/073281794"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:43.359878 2024-09-11 09:06:46.730363 2872e455-6304-437b-b57e-9bda5f85bd27 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/17326851X"}, "pid": "2670", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003827929"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/069487332"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108874652"} 3 +2024-09-11 09:04:13.669268 2024-09-11 09:04:13.669271 877901fa-c013-4763-95fd-ca9071d63e74 {"pid": "4029", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/07330235X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:13.726011 2024-09-11 09:04:13.726015 afa3f62f-4a87-4979-93ec-19564a34c8bc {"pid": "4030", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/073312673"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:13.786456 2024-09-11 09:04:13.786461 bc56a2f6-66e3-4ae8-ae78-af886bbdda3f {"pid": "4031", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/073329673"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:13.846459 2024-09-11 09:04:13.846463 cd7a0e52-45e1-4564-918b-c26d9e310a23 {"pid": "4032", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/073368989"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:13.904053 2024-09-11 09:04:13.904056 ee0738d7-7c83-4930-90b3-78c8b3fab02a {"pid": "4033", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/07338206X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:13.961541 2024-09-11 09:04:13.961544 5f200548-52d7-459d-b0ee-046471fdfaca {"pid": "4034", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/073432865"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:14.020053 2024-09-11 09:04:14.020058 21d9fad0-9416-4483-b51d-78e7e2479ba3 {"pid": "4035", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/073648027"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:33.608831 2024-09-11 09:06:33.608835 ee578803-f6d1-45c9-a235-9a2cda745108 {"pid": "6166", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003278829"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:14.1523 2024-09-11 09:04:14.152305 4523c4f1-81b4-4dd4-8f72-6a7f3115b556 {"pid": "4037", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/073704199"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:14.222847 2024-09-11 09:04:14.22285 583dc170-df3d-4640-bc39-0c0597b471cc {"pid": "4038", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/073875724"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:14.301175 2024-09-11 09:04:14.30118 177c1bd5-b06e-4d91-bfba-24a46652f15c {"pid": "4039", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/073949183"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:14.398078 2024-09-11 09:04:14.398083 f4c4dcb7-f69e-4067-9064-72406a48bea5 {"pid": "4040", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/074008552"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:14.454755 2024-09-11 09:04:14.454759 be8256b8-b9fd-425a-aa51-3cd069d1830a {"pid": "4041", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/074011278"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:14.525948 2024-09-11 09:04:14.525952 35ee5576-e3dc-4bab-a178-36599f4b915a {"pid": "4042", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/074092855"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:14.583985 2024-09-11 09:04:14.583988 e792de21-a526-4e4b-91be-82eb40862bcd {"pid": "4043", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/074110217"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:14.643588 2024-09-11 09:04:14.643595 d893530c-8b6a-418f-b7ff-092dbad5a210 {"pid": "4044", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/074287680"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:14.701252 2024-09-11 09:04:14.701258 4cb606b8-2d15-4074-b64f-62ab4290baf0 {"pid": "4045", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/07432389X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:14.760871 2024-09-11 09:04:14.760873 d6043940-d7e4-4058-a38d-9e219147dd95 {"pid": "4046", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/074552996"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:14.820594 2024-09-11 09:04:14.820597 1f3e93ba-ac19-4989-aa25-60d36ee1ba32 {"pid": "4047", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/074594788"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:14.879766 2024-09-11 09:04:14.87977 2cefa4dc-fc9d-4d83-8abd-63e90f500ef8 {"pid": "4048", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/075029189"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:23.545383 2024-09-11 09:04:14.942658 07a52ce0-283e-4ae8-8d4a-30959395a8a0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/13962693X"}, "pid": "2326", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/07505924X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101346417"} 2 +2024-09-11 09:04:15.008961 2024-09-11 09:04:15.008965 9dde13d3-dae0-4e44-b8d3-e4fc818d131f {"pid": "4049", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/075103672"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:15.069208 2024-09-11 09:04:15.069213 54e81eee-eb49-43a2-803d-42cead51581c {"pid": "4050", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/075129094"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:15.130861 2024-09-11 09:04:15.130865 6f1e2ea5-b14e-41d3-8d0b-33911b601796 {"pid": "4051", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/075134438"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:15.192421 2024-09-11 09:04:15.192424 59c293da-2b8b-4017-8309-e50f42771666 {"pid": "4052", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/075146975"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:15.249388 2024-09-11 09:04:15.249392 5b31e332-6f09-4ebf-8075-fe9e0bdad6f8 {"pid": "4053", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/075434008"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:15.306658 2024-09-11 09:04:15.306661 ba084e9f-bd22-4e49-a03d-902e73997588 {"pid": "4054", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/075435179"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:15.363633 2024-09-11 09:04:15.363637 449be298-0770-469c-b383-602ff290dfd1 {"pid": "4055", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/075612178"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:15.43231 2024-09-11 09:04:15.432313 67ca5ff0-a85c-4d3f-a05c-19d1fda463b4 {"pid": "4056", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/075690632"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:15.65554 2024-09-11 09:04:15.655543 6ff69274-3878-4d40-be78-26ac9fac08e1 {"pid": "4058", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/075912872"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:15.716465 2024-09-11 09:04:15.71647 5467136b-ace1-4efe-b6db-c87449b960b1 {"pid": "4059", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/075964686"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106022462"} 1 +2024-09-11 09:04:15.779177 2024-09-11 09:04:15.779182 601bf6e2-0efe-4cda-8088-1349131f077f {"pid": "4060", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/076007316"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112574090"} 1 +2024-09-11 09:04:15.875895 2024-09-11 09:04:15.875899 a99ceb1a-354a-4952-a93e-3936644060ff {"pid": "4061", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/076054241"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:15.939268 2024-09-11 09:04:15.939271 2106fe7f-9136-4659-ac08-512fbc4b65ba {"pid": "4062", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/076340384"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:15.996732 2024-09-11 09:04:15.996734 2b817f5b-1eee-42ee-9b97-2b59b2591610 {"pid": "4063", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/076418731"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:16.059083 2024-09-11 09:04:16.059088 102f1fe2-b616-45d9-84c1-14ffd83de8e3 {"pid": "4064", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/076680819"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:16.1297 2024-09-11 09:04:16.129705 3bc1d4c4-3390-4b8a-a476-a6384a1ab889 {"pid": "4065", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/076709116"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:16.208119 2024-09-11 09:04:16.208123 788b26b7-ef7e-4830-9a66-d0654aa1e6fa {"pid": "4066", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/076721256"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:16.274784 2024-09-11 09:04:16.274788 22d953fd-a4a8-40d9-94c6-efd3886c3306 {"pid": "4067", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/076752054"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:16.333536 2024-09-11 09:04:16.33354 79a3672a-cd57-4871-9afa-602e209866ba {"pid": "4068", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/076905470"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:16.390566 2024-09-11 09:04:16.390569 78624677-ef83-42a6-b748-5a49721f4ec9 {"pid": "4069", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/076968537"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:16.453287 2024-09-11 09:04:16.453292 312f7654-79e4-43e5-a5c2-cb6c990dea64 {"pid": "4070", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/077006453"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:16.605271 2024-09-11 09:04:16.605274 1b316fa4-42f6-4918-88cb-7f3dbfe861a6 {"pid": "4071", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/077119428"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:16.660794 2024-09-11 09:04:16.660798 c0905310-9925-4630-b1b0-a7894e5b6217 {"pid": "4072", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/077143043"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:16.721862 2024-09-11 09:04:16.721866 2a674477-7326-43a9-8ced-99af3853fc7c {"pid": "4073", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/077162617"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:16.777408 2024-09-11 09:04:16.777412 dc3391e3-9049-473f-bfcc-be1cc651bd7e {"pid": "4074", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/077335996"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:16.839156 2024-09-11 09:04:16.839159 e7689cd9-fb77-4c7e-ae18-c745b30cf106 {"pid": "4075", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/07733826X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:16.895082 2024-09-11 09:04:16.895085 5bfca06b-1faa-4209-b814-cdb0accd76e4 {"pid": "4076", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/077342097"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:16.951053 2024-09-11 09:04:16.951057 893278e6-99b4-4238-ab0a-88ad733b5e7d {"pid": "4077", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/07741084X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:17.014508 2024-09-11 09:04:17.01451 ac8d37b5-fd4c-4489-9fff-ba7bcb735f47 {"pid": "4078", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/077437209"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100232612"} 1 +2024-09-11 09:04:17.073479 2024-09-11 09:04:17.073483 a4d9e599-ab96-4424-9bda-a9ed9ca7c52a {"pid": "4079", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/077446534"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:17.132187 2024-09-11 09:04:17.132191 44cc93a2-2949-4cc0-a14d-cd33ea18b078 {"pid": "4080", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/07750528X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:17.227033 2024-09-11 09:04:17.227038 39ba7f42-10a5-4c47-b46f-ca4ad7d91eaf {"pid": "4081", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/077763009"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:17.406066 2024-09-11 09:04:17.406068 0df28ab9-a17b-42b3-99cb-b7d0bc4310c9 {"pid": "4083", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/078038766"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:17.466748 2024-09-11 09:04:17.466751 79846cc8-3ed5-4f08-8423-d215f841b460 {"pid": "4084", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/078054982"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:17.543548 2024-09-11 09:04:17.543552 1413848f-b7f6-44eb-a375-34d06b75fc2c {"pid": "4085", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/078075467"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:17.609226 2024-09-11 09:04:17.60923 cb59c44f-acbc-4875-b85f-fabf531dc940 {"pid": "4086", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/078076641"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:17.666619 2024-09-11 09:04:17.666624 ea4ae1f7-1541-4533-a256-cc0f605c792c {"pid": "4087", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/078079330"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:17.723663 2024-09-11 09:04:17.723668 6977a610-6ca3-43ae-921f-c276a4fe51af {"pid": "4088", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/078118948"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:17.353541 2024-09-11 09:07:09.464789 be70642a-dfd9-4191-b880-35c9ad9c56da {"pid": "4082", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012591999"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/077813138"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10141349"} 2 +2024-09-11 09:04:17.783014 2024-09-11 09:04:17.783017 b0e32dc7-dc01-4717-8f4e-28916ef34a9c {"pid": "4089", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/078185556"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:17.854751 2024-09-11 09:04:17.854757 3ba18ad5-fa14-42e6-8e53-a33573f78347 {"pid": "4090", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/078607078"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:17.914705 2024-09-11 09:04:17.914709 6fef14f1-ad03-4d48-af99-e8da848d9f96 {"pid": "4091", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/078619505"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:17.982174 2024-09-11 09:04:17.982178 54a08fb6-34a4-4373-852e-95cc7a963bc2 {"pid": "4092", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/078640997"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:18.040374 2024-09-11 09:04:18.040377 8136f5b7-e251-4364-a99f-07ebed19319c {"pid": "4093", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/078763487"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:18.098491 2024-09-11 09:04:18.098495 dedac010-ffe9-4b5b-a7b3-69fdd38ff0bb {"pid": "4094", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/078835089"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:18.304792 2024-09-11 09:04:18.304794 c8c2a067-f7e2-4fbb-84b1-c2f2075fb4d9 {"pid": "4095", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/07904011X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:18.425674 2024-09-11 09:04:18.425677 e87df637-dea5-4e78-8e6f-2687073e1d08 {"pid": "4097", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/079151639"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:18.48931 2024-09-11 09:04:18.489315 74193f33-d0f6-4d8c-b511-94090265ee94 {"pid": "4098", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/079157106"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:18.555134 2024-09-11 09:04:18.555141 470e775d-df9d-4c90-aa60-12b91fb3bdc9 {"pid": "4099", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/07925814X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:18.613773 2024-09-11 09:04:18.613776 883de5f9-8c1b-4b3e-a2b6-2c58213d405c {"pid": "4100", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/079303315"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102360210"} 1 +2024-09-11 09:04:18.673908 2024-09-11 09:04:18.673912 e12bbc39-71e2-4e79-952e-ade24adf4840 {"pid": "4101", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/079436870"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:18.743614 2024-09-11 09:04:18.743618 6527d608-b997-4ef1-9209-b3aef9eae171 {"pid": "4102", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/07948901X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:18.805192 2024-09-11 09:04:18.805196 1834c95c-6fc4-44f3-a507-101201e5828a {"pid": "4103", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/079506151"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:18.875632 2024-09-11 09:04:18.875635 db0ac12b-ce96-407a-b4cd-83e035098c1b {"pid": "4104", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/079550746"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:33.663819 2024-09-11 09:06:33.663824 794dd82b-8dd8-40ea-a231-7b0c8309e147 {"pid": "6167", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003281452"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:18.994419 2024-09-11 09:04:18.994422 2a2e8d89-2a79-4a21-918b-4804e5c02f54 {"pid": "4106", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/07992056X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:19.051334 2024-09-11 09:04:19.051338 d619e49d-fbd8-4866-9c3f-21663d4cc937 {"pid": "4107", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/080088325"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:19.121466 2024-09-11 09:04:19.12147 cb3e0797-f95c-408f-8b50-d6c73781413c {"pid": "4108", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/080102859"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:19.178169 2024-09-11 09:04:19.178173 f3228c13-f0f9-4a3c-b4bf-64683ec08f43 {"pid": "4109", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/08013484X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:19.242463 2024-09-11 09:04:19.242468 550e1860-7bf9-4c8c-b6aa-310f38afa2a8 {"pid": "4110", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/080152503"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100347282"} 1 +2024-09-11 09:04:19.300435 2024-09-11 09:04:19.30044 1af50b2e-1cc8-47c5-9078-3f987cf9e889 {"pid": "4111", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/080164994"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:19.353365 2024-09-11 09:04:19.3534 f5af1cfe-ba64-4ae2-b31a-0025526f6ed2 {"pid": "4112", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/08018734X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:19.410817 2024-09-11 09:04:19.410822 7cdb89bf-c826-41b2-944a-620bd77feb2d {"pid": "4113", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/080307426"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:19.481894 2024-09-11 09:04:19.481896 1ae59bd9-a11f-46d0-89d1-8d6254d65854 {"pid": "4114", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/080487238"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:19.54397 2024-09-11 09:04:19.543973 b99506de-cdc9-4bda-8d45-9cb5637178de {"pid": "4115", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/080529712"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:19.60441 2024-09-11 09:04:19.604413 a41ba2c7-048c-4505-b5fe-5da91369ba49 {"pid": "4116", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/080557732"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:19.659288 2024-09-11 09:04:19.659292 fd0503ac-69a1-49ab-8add-968f1cb2d5b1 {"pid": "4117", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/080577350"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:19.715827 2024-09-11 09:04:19.71583 b4be42c6-dfdd-4efc-9543-b2a2d0a94653 {"pid": "4118", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/080596649"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:33.723279 2024-09-11 09:06:33.723283 190f0ec1-dd2a-412a-bd34-abbd610b331b {"pid": "6168", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003283186"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:28.383034 2024-09-11 09:04:19.846932 cd0cbb2e-16d3-48ea-ad36-2444b15775d4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140749861"}, "pid": "2409", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/080622151"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110549452"} 2 +2024-09-11 09:04:19.926548 2024-09-11 09:04:19.926553 1eaf9fcf-e3db-4fd0-9be4-4659ca140488 {"pid": "4119", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/080641024"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:19.995396 2024-09-11 09:04:19.995399 0c9857bc-c663-4b0a-b11e-2a2519b8a0b1 {"pid": "4120", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/080647359"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:20.053225 2024-09-11 09:04:20.053228 9624bd30-ff37-4616-ab2b-5803004ad25f {"pid": "4121", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/080678971"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:20.111796 2024-09-11 09:04:20.111799 865eb6b1-f7e1-44ea-9beb-e8b0c007fa9d {"pid": "4122", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/080683851"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:20.175814 2024-09-11 09:04:20.175818 44f10e78-e6c4-48a9-b456-59aff5a2ddfd {"pid": "4123", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/080722555"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:20.235195 2024-09-11 09:04:20.235198 5b7205cc-ebfd-489c-9bc0-87175fe9dc14 {"pid": "4124", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/080824072"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:20.300337 2024-09-11 09:04:20.300343 ae1a6ae7-bcb5-4c36-8a6f-04af18fcd031 {"pid": "4125", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/080923690"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:20.36995 2024-09-11 09:04:20.369954 3c1967b3-5e54-4aa2-b10a-1b5aabac6e05 {"pid": "4126", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/081103131"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:20.438819 2024-09-11 09:04:20.438822 4df5a8a2-6efe-40b3-94e4-d5311392f9c6 {"pid": "4127", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/081199392"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:33.774286 2024-09-11 09:06:33.774291 8ee1c1ae-9958-47a5-88ae-29a4cb237afd {"pid": "6169", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003288318"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:20.560177 2024-09-11 09:04:20.560181 29e1b7bd-7c94-4b22-9f87-c43b3c3e107d {"pid": "4129", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/081271395"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:20.618652 2024-09-11 09:04:20.618658 1a63132b-3c22-42fb-b507-16f7941dd209 {"pid": "4130", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/081311249"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104149106006668490615"} 1 +2024-09-11 09:04:20.676137 2024-09-11 09:04:20.676141 b8a71959-93f7-4beb-b42c-5a244a06e553 {"pid": "4131", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/081402880"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:20.732634 2024-09-11 09:04:20.732639 139a59d2-4916-4e7e-8dbc-93c1bb0e562c {"pid": "4132", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/081435827"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:20.792329 2024-09-11 09:04:20.792334 198e7c4c-e589-4540-a535-408b3f54ab78 {"pid": "4133", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/081436351"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:20.864673 2024-09-11 09:04:20.864677 526bb0f6-6e81-4833-8c67-b978b127f1fe {"pid": "4134", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/08147475X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:20.933186 2024-09-11 09:04:20.933191 f073051d-8b73-45e2-9a72-5fb8a25afc4f {"pid": "4135", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/081544693"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:20.988152 2024-09-11 09:04:20.988155 d5e8af8c-6b14-4937-a1e7-d2a2c42742da {"pid": "4136", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/081600356"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:21.053914 2024-09-11 09:04:21.053921 1bef6eb7-cebc-4cdd-ab19-c8722b958d1f {"pid": "4137", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/081609558"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:21.121376 2024-09-11 09:04:21.12138 354cdfba-ca08-4cb9-bdd5-e8ac351dd618 {"pid": "4138", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/081719752"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:21.186355 2024-09-11 09:04:21.186362 97c6aee3-5a5f-4f0a-856d-80c6d6944f67 {"pid": "4139", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/081801793"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:21.263142 2024-09-11 09:04:21.263147 d6ef5154-d9c9-40d4-8447-3ba6317016ac {"pid": "4140", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/081895046"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:21.331994 2024-09-11 09:04:21.331998 2391615e-5299-4e0b-96c1-52e2bed6277e {"pid": "4141", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/082025398"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:21.388086 2024-09-11 09:04:21.388109 031617d4-f6bf-4e46-b99c-f8fc4e37dd64 {"pid": "4142", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/082057826"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:21.445985 2024-09-11 09:04:21.445988 0c6d3ef9-8591-4d96-96e3-4a215fbd8a3c {"pid": "4143", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/082085072"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:21.574536 2024-09-11 09:04:21.57454 020d6287-6786-4ec6-9259-83af10bfc019 {"pid": "4144", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/082116008"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:21.630876 2024-09-11 09:04:21.630881 80386954-2c60-48a8-b6cd-9e24facbb051 {"pid": "4145", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/082333173"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:50.721159 2024-09-11 09:06:58.098305 73ce2c4b-3e07-497c-8499-7c8cf7534cbc {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1026199441"}, "pid": "766", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009687650"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/080608825"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10104043"} 3 +2024-09-11 09:04:21.756381 2024-09-11 09:04:21.756384 7fe416e9-c5df-499d-9622-d2143e1cb7c7 {"pid": "4147", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/082609675"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:21.812904 2024-09-11 09:04:21.812908 6865d441-35d3-41b1-9212-67f945353331 {"pid": "4148", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/082702446"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:21.870722 2024-09-11 09:04:21.870725 c7c07a4b-0761-4ad5-b88c-4f70575fb8cb {"pid": "4149", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083069119"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:21.94016 2024-09-11 09:04:21.940165 5b214e7f-017c-4529-b950-4bae5edddc55 {"pid": "4150", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083194037"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:21.998911 2024-09-11 09:04:21.998916 a5360bc0-7651-4c5d-a8d0-71aca3330643 {"pid": "4151", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083221689"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:22.057587 2024-09-11 09:04:22.05759 059da0de-15fe-4d42-82ca-55c73e8dbff8 {"pid": "4152", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083252819"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:22.128003 2024-09-11 09:04:22.128007 3d2bb557-2530-4b1d-97cd-aff2b30c4a1a {"pid": "4153", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083373365"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:22.192563 2024-09-11 09:04:22.192567 02a84dd6-b7a5-43f6-a062-3d17dc0f66aa {"pid": "4154", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083467815"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:22.250639 2024-09-11 09:04:22.250642 c1bfcd5c-e7ed-42bf-b58f-26536c113c2a {"pid": "4155", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083488790"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:22.306643 2024-09-11 09:04:22.306648 a4dde3f2-3a57-4b8f-8b49-fcbadc7e5a5a {"pid": "4156", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083493778"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:22.380016 2024-09-11 09:04:22.38002 87574121-9713-4a19-b464-4bbebd4133ad {"pid": "4157", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083553843"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:22.438167 2024-09-11 09:04:22.43817 36ed54d3-3ee7-41f6-a478-48d5d5a7749e {"pid": "4158", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083568077"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:22.495241 2024-09-11 09:04:22.495245 cae5fb10-21f8-4155-8f86-4409d4b2900c {"pid": "4159", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083580522"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:22.566092 2024-09-11 09:04:22.566097 1949724e-8012-4a7b-b782-4995b5b6e2d6 {"pid": "4160", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083680683"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:22.620873 2024-09-11 09:04:22.620877 d3e1cd79-2e0b-4857-92e0-7712cd60a78a {"pid": "4161", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083712941"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:22.680461 2024-09-11 09:04:22.680464 2dd27e60-4626-494b-9122-46cd8b529e5a {"pid": "4162", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083715789"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:22.735075 2024-09-11 09:04:22.735079 c334a819-3d0d-4164-8e14-02960a9b292f {"pid": "4163", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083726861"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:22.794456 2024-09-11 09:04:22.794459 543d93a9-778a-4eb5-80ac-bcb5df6bce91 {"pid": "4164", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083737499"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:22.852134 2024-09-11 09:04:22.852139 4e169463-8568-4286-9500-85a2996624ad {"pid": "4165", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083767827"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:22.910619 2024-09-11 09:04:22.910622 8577aa04-99d2-4224-b4cc-178bbacfa560 {"pid": "4166", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083843361"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:22.969026 2024-09-11 09:04:22.969029 16f8eab5-14c0-44fe-b78b-9bd4d1a85d17 {"pid": "4167", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083843981"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:23.027544 2024-09-11 09:04:23.027548 a43216f8-964b-4633-9e34-3c6c9dcad2a6 {"pid": "4168", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083885463"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:23.091496 2024-09-11 09:04:23.091501 8330427a-4fa8-4693-a460-10b5de3704c8 {"pid": "4169", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083928715"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:23.149806 2024-09-11 09:04:23.149811 5b83d9d7-de05-41de-8651-c235a4c3cf76 {"pid": "4170", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083961488"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:23.213173 2024-09-11 09:04:23.213176 8495dc99-2843-4831-9d6e-dddecea6c45f {"pid": "4171", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/083970592"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:23.27702 2024-09-11 09:04:23.277024 ced0f225-1de9-49d6-84e7-526f369784ee {"pid": "4172", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/084028750"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100809810"} 1 +2024-09-11 09:04:23.33574 2024-09-11 09:04:23.335744 0eb0fa67-16a6-4557-b7ae-c1175a04c5cf {"pid": "4173", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/084029463"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:23.397324 2024-09-11 09:04:23.397327 7d5e404b-74ce-4930-aa52-7fee69981118 {"pid": "4174", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/084037407"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:23.472036 2024-09-11 09:04:23.47204 ed3780f6-31ef-4d2c-a93e-705665246609 {"pid": "4175", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/084062320"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:23.551014 2024-09-11 09:04:23.551017 b95c0273-47b4-42bb-b7c4-7da32403a8c4 {"pid": "4176", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/084074752"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:25.86859 2024-09-11 09:04:25.868594 aa61ff2e-5b44-4691-9626-23bd343b8ac6 {"pid": "4206", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/087402467"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:23.710069 2024-09-11 09:04:23.710073 2ec03c24-0baa-46f2-a4b6-de48f42b6bb8 {"pid": "4177", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/084324856"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:23.768829 2024-09-11 09:04:23.768833 c60284ed-1faa-450d-bf26-045e262f9db3 {"pid": "4178", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/08433293X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:23.82688 2024-09-11 09:04:23.826883 a8ffca2b-bf0a-4c19-8837-74a16f851edd {"pid": "4179", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/084346450"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:10.645082 2024-09-11 09:04:23.954688 2af76eef-4ca2-449e-9fc0-5f9abbee8c41 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1089460732"}, "pid": "1101", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/084675810"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112986606"} 2 +2024-09-11 09:04:24.021189 2024-09-11 09:04:24.021193 4d9e233f-178f-4e7d-a3d6-cc8ecad60edb {"pid": "4180", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/084728949"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:24.079088 2024-09-11 09:04:24.079092 7d2adc12-4053-44c7-bfda-0f80d1af3b0c {"pid": "4181", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/085001392"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:24.138172 2024-09-11 09:04:24.138175 ae800d5e-827a-42e6-a7fe-d54ee8878e3f {"pid": "4182", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/085232629"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:24.199683 2024-09-11 09:04:24.199688 3f96f873-51fe-4a00-97e3-72e705a5a857 {"pid": "4183", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/085232815"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:24.361467 2024-09-11 09:04:24.361472 31432fc1-0d76-48dc-9fdd-eca660a35640 {"pid": "4184", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/085598143"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11107155"} 1 +2024-09-11 09:04:24.421805 2024-09-11 09:04:24.421807 efe8ff9b-c8cd-4ee5-9b61-aa47c655ca46 {"pid": "4185", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/085617598"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:24.563378 2024-09-11 09:04:24.563381 a486f699-376a-48de-b246-09a9b48ebcb9 {"pid": "4186", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/085731390"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:24.638206 2024-09-11 09:04:24.63821 3b2e8185-09c2-498d-8f47-eb2d8f98aa2b {"pid": "4187", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/085825069"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:24.698389 2024-09-11 09:04:24.698394 68b76d43-4beb-49a8-87cf-9cea029c7f87 {"pid": "4188", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/085826367"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:24.756212 2024-09-11 09:04:24.756215 3957175d-f8fa-4b35-af2f-d0aba46eab83 {"pid": "4189", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/085835943"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:24.813898 2024-09-11 09:04:24.813901 a35ee128-a495-42c7-89c1-8173f9e91fb3 {"pid": "4190", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/085856525"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:24.952522 2024-09-11 09:04:24.952525 768e023a-e4ad-4c7c-954c-34925cf405ef {"pid": "4191", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/086019740"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:25.011332 2024-09-11 09:04:25.011336 09cf399e-a0ef-4d0f-914a-dbe43a3e09e6 {"pid": "4192", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/086021311"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:25.070109 2024-09-11 09:04:25.070114 2bf5aac5-1fcc-44a0-8ba6-1d55393c0928 {"pid": "4193", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/08602308X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:25.125004 2024-09-11 09:04:25.125008 3a5dad9d-39af-4211-973f-e22325f3fff1 {"pid": "4194", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/086069527"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:25.184352 2024-09-11 09:04:25.184356 be201702-0836-4189-b214-6d92182f4b2f {"pid": "4195", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/086069888"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:25.244715 2024-09-11 09:04:25.24472 f4ea0eba-7d31-40db-8329-4e17a38be91e {"pid": "4196", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/08608416X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:25.302238 2024-09-11 09:04:25.302243 865b44eb-fd85-4d61-a19d-6de779a61009 {"pid": "4197", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/086094602"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:25.360809 2024-09-11 09:04:25.360812 a5cb412e-477e-4d0a-bc9a-ad21f3502cbe {"pid": "4198", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/086124641"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:25.416391 2024-09-11 09:04:25.416394 e9356c77-7bc7-4633-b25d-e65c0ae19a3f {"pid": "4199", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/086139096"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:25.477061 2024-09-11 09:04:25.477066 1f44016a-df0b-44a3-8b4e-eddcff1677f4 {"pid": "4200", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/086168312"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:25.545736 2024-09-11 09:04:25.54574 b57d4831-bc15-4a76-8a2f-e84abf9a3bd5 {"pid": "4201", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/086232827"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:25.611536 2024-09-11 09:04:25.611542 1434e8ad-07c0-4401-9480-01fccd40530b {"pid": "4202", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/086845659"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:25.682695 2024-09-11 09:04:25.682697 4d684523-0d19-4a30-833f-1aa7dddb6fb8 {"pid": "4203", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/086849786"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:25.739428 2024-09-11 09:04:25.739431 c0e271b8-ff9d-4aea-8701-11ac902c64a2 {"pid": "4204", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/087190087"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:25.802101 2024-09-11 09:04:25.802106 65922c59-52f7-414d-bad5-4043958e1c90 {"pid": "4205", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/087239981"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112741427"} 1 +2024-09-11 09:04:26.005198 2024-09-11 09:04:26.005203 0b4e7981-259e-40d2-a283-daeca0f6f563 {"pid": "4207", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/087504146"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:26.072466 2024-09-11 09:04:26.072468 f12f391b-50b5-4b0b-b419-0eab0cdcc621 {"pid": "4208", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/087535300"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:26.130765 2024-09-11 09:04:26.130769 d877506b-2169-4b99-8e96-216de710a8ff {"pid": "4209", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/087635585"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:26.188138 2024-09-11 09:04:26.188141 1ad85f7e-9cf4-456e-aaae-5dcae2a8a6b3 {"pid": "4210", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/087649535"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:26.257113 2024-09-11 09:04:26.257117 51c92947-3c8c-468e-814a-49062071380c {"pid": "4211", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/087823535"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:26.313822 2024-09-11 09:04:26.313825 3ba8e5c9-dcfc-43b8-b174-94e0212ab991 {"pid": "4212", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/087958686"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:26.382195 2024-09-11 09:04:26.382199 0a125f32-8939-48e9-aec8-1d8a69629dc7 {"pid": "4213", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/088014029"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:26.439084 2024-09-11 09:04:26.439087 bc67732b-7cfb-43fa-870f-322abc784ab3 {"pid": "4214", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/088042944"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:26.498632 2024-09-11 09:04:26.498636 c58067f9-af7d-4c3b-ac76-9ab71c9de4e6 {"pid": "4215", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/088082776"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:26.553788 2024-09-11 09:04:26.553794 e053b315-e533-489b-ad2d-1800ca5fdbc9 {"pid": "4216", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/088088944"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:26.615018 2024-09-11 09:04:26.615022 ac1c8d22-7097-4033-a0f5-3506c2390923 {"pid": "4217", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/088106926"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:26.677015 2024-09-11 09:04:26.67702 8a0e0f33-4d92-4562-b5d3-c3971607e665 {"pid": "4218", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/088397599"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106995742"} 1 +2024-09-11 09:04:26.81093 2024-09-11 09:04:26.810935 99e598ef-2bfb-4dc3-871d-b22ac71f5622 {"pid": "4219", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/088453022"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:26.866725 2024-09-11 09:04:26.866729 c7dbc88a-23fe-43f8-951e-02c3d1eb9027 {"pid": "4220", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/088540235"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:26.919286 2024-09-11 09:04:26.91929 9a8aa0f4-fbc1-469c-91ec-4136b6030e65 {"pid": "4221", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/08870078X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:26.972358 2024-09-11 09:04:26.972361 3b3b4c53-e7cf-40e5-bac1-e0f6e43e943c {"pid": "4222", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/08871246X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:27.024861 2024-09-11 09:04:27.024864 14ae880c-6d27-491d-89f2-3d81878a2194 {"pid": "4223", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/08875975X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:27.075925 2024-09-11 09:04:27.075929 812ae1bb-2718-4317-ad3b-a37162c106a3 {"pid": "4224", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/08880058X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:27.128821 2024-09-11 09:04:27.128825 b0d35b6e-4849-4ecf-8c33-cf1520a8bb40 {"pid": "4225", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/088888177"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:27.182982 2024-09-11 09:04:27.182987 d6bec325-670c-4403-a39d-e6776710e4d7 {"pid": "4226", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/088920763"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:27.236022 2024-09-11 09:04:27.236026 d2a0567e-6a7e-4437-9d5c-63016552a592 {"pid": "4227", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/088945332"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:27.289086 2024-09-11 09:04:27.289089 aad8c964-6729-4db2-a5a0-e3770a31051b {"pid": "4228", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/088984141"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:27.380422 2024-09-11 09:04:27.380426 8745a07a-6fb9-49b7-b2bb-c1a0fd8c247f {"pid": "4229", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/088997464"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:27.435863 2024-09-11 09:04:27.435866 836a24b8-1a58-499f-af52-56c6ac2e4bd2 {"pid": "4230", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/089425596"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:27.494723 2024-09-11 09:04:27.494727 54355b16-0725-41e2-8882-975a44c176f3 {"pid": "4231", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/089443675"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106409382"} 1 +2024-09-11 09:04:27.550465 2024-09-11 09:04:27.550469 c9adcf49-e3cb-47ee-9319-46b719f8008f {"pid": "4232", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/090159225"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:27.621026 2024-09-11 09:04:27.621031 8909e060-e2fa-4fe1-a480-98702f453e07 {"pid": "4233", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/09042333X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:27.67774 2024-09-11 09:04:27.677745 98733199-eb64-4105-aced-2b2bf158ee47 {"pid": "4234", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/091257174"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:27.730077 2024-09-11 09:04:27.73008 53780b6c-c212-41dc-9faf-40f8def0939d {"pid": "4235", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/091546230"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:27.783029 2024-09-11 09:04:27.783033 dd821527-8dd5-408e-b25b-9056499f0464 {"pid": "4236", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/092002781"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:27.836127 2024-09-11 09:04:27.836131 9bbafd3f-83d4-478a-a3e3-a0e2e4c857a0 {"pid": "4237", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/092098649"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:27.947894 2024-09-11 09:04:27.947896 3ee88784-9a53-4c08-a225-510b493d7b37 {"pid": "4239", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/092149561"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:28.002086 2024-09-11 09:04:28.002088 1bba6dd2-6fdf-4540-9c92-ac7a6af6fe9c {"pid": "4240", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/092241549"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:28.056624 2024-09-11 09:04:28.056627 f3d2c36d-2d7f-4be3-93e0-28d3951ba933 {"pid": "4241", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/092249760"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:25.890195 2024-09-11 09:04:28.111529 bb30f3ed-523a-48a5-9373-75501cd2b2d5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140129510"}, "pid": "2366", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/092359116"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103430752"} 2 +2024-09-11 09:04:28.231676 2024-09-11 09:04:28.23168 2a257bde-4b2e-4bad-97ec-f836d0739d5e {"pid": "4242", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/092699987"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:28.284352 2024-09-11 09:04:28.284354 5e0c3842-ad1a-4e99-bbc7-00a80ff8f381 {"pid": "4243", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/092726542"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:28.340112 2024-09-11 09:04:28.340116 69fdee6e-a557-4310-b8fc-ea046a9024b0 {"pid": "4244", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/092792642"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:28.394581 2024-09-11 09:04:28.394586 25686ed1-30f5-4b78-9274-e4b69b1681e6 {"pid": "4245", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/092846653"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:28.450196 2024-09-11 09:04:28.4502 39ef4154-bd19-4929-9caf-888ded58a595 {"pid": "4246", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/093834470"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:28.503825 2024-09-11 09:04:28.503829 20b4e011-6f92-411f-aed8-8beb66a8bd30 {"pid": "4247", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/09396997X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:28.563019 2024-09-11 09:04:28.563022 0bc2c513-e79b-480e-9e8c-489cc4dd9fa5 {"pid": "4248", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/094133344"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:28.620655 2024-09-11 09:04:28.620659 a955aa91-81fb-4b01-9ec2-26cacd9e57c5 {"pid": "4249", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/094225230"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:28.677116 2024-09-11 09:04:28.677121 953d8295-31af-414c-9a12-38f061ddd9f9 {"pid": "4250", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/09433434X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:28.731043 2024-09-11 09:04:28.731047 4e84b355-8b3a-43c1-bd4f-4c3d0b9c1f97 {"pid": "4251", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/094460922"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:28.851214 2024-09-11 09:04:28.85122 25c26136-1ab6-43c4-8752-5428fb473a3c {"pid": "4252", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/094648980"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:28.922029 2024-09-11 09:04:28.922035 a6048ca2-c279-4a6f-afca-33bd9cf7e5ac {"pid": "4253", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/095038426"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:28.974703 2024-09-11 09:04:28.974707 8c137d9d-b8b4-4890-a33b-cf74ec5ce430 {"pid": "4254", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/095087044"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:29.029942 2024-09-11 09:04:29.029946 68d2e253-08e2-437c-bdf6-ffa54abf6e7f {"pid": "4255", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/09512795X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:29.08913 2024-09-11 09:04:29.089135 d9380857-b52c-4cc2-b51a-4241d5c11137 {"pid": "4256", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/095171738"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:29.144367 2024-09-11 09:04:29.144371 bf4714ba-a3c1-4c95-b3e8-56d8c9ef53d4 {"pid": "4257", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/095227415"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:29.197677 2024-09-11 09:04:29.197682 8315b5a0-4574-4b83-99e6-36ffff9a3f90 {"pid": "4258", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/095344691"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:29.257723 2024-09-11 09:04:29.257727 4bedf350-9fd0-48a0-a50f-d67e7468daff {"pid": "4259", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/09564766X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112662623"} 1 +2024-09-11 09:04:29.375693 2024-09-11 09:04:29.375697 f6fee2bc-196b-4fae-9c30-fe44ea4d767b {"pid": "4260", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/095813225"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:29.429765 2024-09-11 09:04:29.42977 b6ea9144-af9a-4438-a6b7-27d31fcac55b {"pid": "4261", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/095998160"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:29.497235 2024-09-11 09:04:29.497239 b64c925c-ffad-45f7-8251-2361e805ad30 {"pid": "4262", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/096644389"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:29.555311 2024-09-11 09:04:29.555315 b18617bb-50cb-48f1-a96e-d6c22caa29fd {"pid": "4263", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/09715010X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:11.430997 2024-09-11 09:07:02.176755 35afe3b2-afbb-466d-9b41-a3543b15bf83 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/129388084"}, "pid": "2138", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012105454"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/092613314"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112525805"} 3 +2024-09-11 09:04:27.896875 2024-09-11 09:07:16.90208 378ad773-ace4-41e8-a222-b61e60c418d8 {"pid": "4238", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014087607"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/092124356"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112148704326736932686"} 2 +2024-09-11 09:04:29.61521 2024-09-11 09:04:29.615214 49ee8918-2eec-43d6-9e00-632c9e95a45d {"pid": "4264", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/097502146"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:29.671549 2024-09-11 09:04:29.671552 2c67fd29-9d53-4efd-a625-2869d828dfb2 {"pid": "4265", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/097587222"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:29.730105 2024-09-11 09:04:29.730108 04598514-a2a5-43c3-832b-9a0bd453144c {"pid": "4266", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/09794226X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:29.788816 2024-09-11 09:04:29.788821 8929521d-8635-47d8-aea2-9a6943763615 {"pid": "4267", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/098214381"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:29.848444 2024-09-11 09:04:29.848448 b04169e0-8e99-42a0-b5a7-c0b98183355a {"pid": "4268", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/098413406"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:29.907328 2024-09-11 09:04:29.907338 7a998a9b-6165-4e81-bb90-6b47c40d763f {"pid": "4269", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/09883312X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:29.975419 2024-09-11 09:04:29.975424 e48a5e55-d54c-4218-9ad3-7274287796b5 {"pid": "4270", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/100484522"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:30.045613 2024-09-11 09:04:30.045616 f5fd7853-0e07-45bc-a7e6-889295f85868 {"pid": "4271", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/100570453"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:30.102989 2024-09-11 09:04:30.102992 295b980f-7f65-4ae5-b334-0608d8f3155a {"pid": "4272", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/100930778"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:30.232442 2024-09-11 09:04:30.232445 e69f617d-fe5b-435b-a140-9c290500355a {"pid": "4273", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/101283407"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:30.300423 2024-09-11 09:04:30.300428 f9d09291-ccde-478d-b705-e602fdb1855f {"pid": "4274", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/101346654"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:30.370096 2024-09-11 09:04:30.370101 a6e2ed79-1823-4ce3-99dd-62e5c233bc0e {"pid": "4275", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/101397321"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:30.438492 2024-09-11 09:04:30.438496 3526317f-a2c9-4e4f-8850-9bc3cabe4427 {"pid": "4276", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/101448597"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103241365"} 1 +2024-09-11 09:04:30.497572 2024-09-11 09:04:30.497576 a7e90a7d-6dd3-486d-9cd5-45831681fb9c {"pid": "4277", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/102076855"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:30.565262 2024-09-11 09:04:30.565265 3c05b9c2-afa7-4831-9578-92a2d2b74b30 {"pid": "4278", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/102129150"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:30.644513 2024-09-11 09:04:30.644517 a5f90667-81c3-4f73-b10e-19a06a4568af {"pid": "4279", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/102522170"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:30.806469 2024-09-11 09:04:30.806473 f56f42dc-c1fa-4d47-90e7-b5873af76bcd {"pid": "4280", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/103208348"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:30.872451 2024-09-11 09:04:30.872456 54ef27b2-6405-4ba5-966e-e17d4cfbd584 {"pid": "4281", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/103396063"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:30.943808 2024-09-11 09:04:30.943813 a23f2a7d-d690-44cc-adc3-072f9cf3658b {"pid": "4282", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/103540695"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:31.009835 2024-09-11 09:04:31.009839 096b3c76-d9d2-4d9d-8733-797198231f83 {"pid": "4283", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/103578560"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:31.070688 2024-09-11 09:04:31.070693 634128c9-97e5-4ed4-99f2-d942abe01295 {"pid": "4284", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/10359342X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:31.129123 2024-09-11 09:04:31.129127 282e18e0-e9e5-4ba5-b0d3-68e1475b5778 {"pid": "4285", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/103613838"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:58.780457 2024-09-11 09:04:31.191496 465a1e6d-6f04-4684-958a-6980fe5d6321 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1067912916"}, "pid": "903", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/10368607X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110537374"} 2 +2024-09-11 09:04:31.253083 2024-09-11 09:04:31.253088 284d69fb-8f18-4baf-84f5-a55f6f332db2 {"pid": "4286", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/103835458"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:31.315126 2024-09-11 09:04:31.315129 783fa57b-17ef-42bb-b838-acdb7beb757c {"pid": "4287", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/103919511"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:31.374882 2024-09-11 09:04:31.374886 9f7ab731-48bc-4578-b10a-45df2da0c757 {"pid": "4288", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/104444126"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:31.431464 2024-09-11 09:04:31.431469 eb3c087c-02b7-4e53-8c50-9e4d043e1dfd {"pid": "4289", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/104506830"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:31.487232 2024-09-11 09:04:31.487237 6fac4cf0-9f2d-46e6-93b5-66e128fe303b {"pid": "4290", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/105998168"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:31.545284 2024-09-11 09:04:31.545291 9aa09dd6-5cfd-40ef-8581-8d82dc397f65 {"pid": "4291", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/106028723"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:31.603049 2024-09-11 09:04:31.603053 d37e1c65-fe72-4cac-9696-c0694d9abcb4 {"pid": "4292", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/10694956X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:31.660558 2024-09-11 09:04:31.660562 019017ff-06aa-4c3d-b19d-09c80ad92364 {"pid": "4293", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/106952587"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:31.717656 2024-09-11 09:04:31.71766 20092fc7-3b33-478d-9f38-979445d1420a {"pid": "4294", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/106968696"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:52.378701 2024-09-11 09:04:31.780554 f7b7cffe-51e3-4e90-8bcb-a5a5b8d5ca16 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1035018888"}, "pid": "794", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/107090538"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101040254"} 2 +2024-09-11 09:04:31.841252 2024-09-11 09:04:31.841257 e0396e2b-14ce-414c-8ef6-1c54fd5342bd {"pid": "4295", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/107702746"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:31.972614 2024-09-11 09:04:31.972617 2bd07a7e-f517-47c1-af9f-ab0be306acbb {"pid": "4296", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/108093875"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:32.050685 2024-09-11 09:04:32.050691 4527ae66-1ace-4578-be3c-6e1afaa60c5f {"pid": "4297", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/108157873"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:32.106163 2024-09-11 09:04:32.106166 d2d183e4-7e30-44d4-95eb-03f90d25af52 {"pid": "4298", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/108462897"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:32.229143 2024-09-11 09:04:32.229147 03f367b9-0ca2-4a17-ae64-7fcfc75ad1c2 {"pid": "4299", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/10853961X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:32.292013 2024-09-11 09:04:32.292018 cb90b291-2cb2-4713-9d49-a1e067801f36 {"pid": "4300", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/108882861"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:32.357791 2024-09-11 09:04:32.357794 5277fe0a-9afb-4296-8569-c6e3a7388b90 {"pid": "4301", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/108960811"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:32.416853 2024-09-11 09:04:32.416856 114cbce7-edc9-4b7b-91a3-9f0f0dc44379 {"pid": "4302", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/109075013"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:32.487078 2024-09-11 09:04:32.487081 954ad503-3b9a-4871-a2c6-c4c92f951fc8 {"pid": "4303", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/109149327"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:32.547776 2024-09-11 09:04:32.54778 db77bd0a-0c5f-4d97-8cf3-9afe1f9b92a8 {"pid": "4304", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/109154746"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:32.603027 2024-09-11 09:04:32.60303 518a20bd-983f-4b10-9afa-b3df02c86166 {"pid": "4305", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/10935026X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:32.66666 2024-09-11 09:04:32.666665 399f5a55-1d17-4992-91bc-e1c068cd18ad {"pid": "4306", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/110078810"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:32.727344 2024-09-11 09:04:32.727348 8dd6ea0c-873a-4dc9-bb8a-74f78f4bff19 {"pid": "4307", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/110124596"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:32.785985 2024-09-11 09:04:32.78599 adc17e8f-f46b-4509-b429-d48355435f22 {"pid": "4308", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/110124863"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112735361"} 1 +2024-09-11 09:04:32.84654 2024-09-11 09:04:32.846543 3dc1aa76-ce41-4f82-aa0c-7f80f5ec5d9c {"pid": "4309", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/11013253X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:32.908889 2024-09-11 09:04:32.908894 716ee096-3949-480b-ac77-5723d996d9c4 {"pid": "4310", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/11015469X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:33.048045 2024-09-11 09:04:33.048048 44e71947-b4ef-4ab3-b0ac-c7479fd15bfd {"pid": "4311", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/110195019"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:33.107156 2024-09-11 09:04:33.107159 1c3db9e1-ffe8-491e-8815-7c600d96e052 {"pid": "4312", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/11020414X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:33.168594 2024-09-11 09:04:33.168599 157d1ee6-4adf-4666-a564-a80156877252 {"pid": "4313", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/110240723"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:33.237969 2024-09-11 09:04:33.237972 74ccb206-0c56-4e19-9aba-f44b2b9e6bba {"pid": "4314", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/110458087"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:33.3114 2024-09-11 09:04:33.311404 78319b4f-86ff-4dfb-b586-005f9b92f872 {"pid": "4315", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/110510631"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:33.37203 2024-09-11 09:04:33.372034 8a75b314-ae38-4fc5-8e5a-3826c7f61daf {"pid": "4316", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/110591119"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:33.429039 2024-09-11 09:04:33.429043 ce846a3c-9296-4e5d-98fb-9358d33836a6 {"pid": "4317", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/110725476"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:33.487729 2024-09-11 09:04:33.487736 c120f1f6-2135-4e03-97cd-a187e235b539 {"pid": "4318", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/110735714"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:33.548238 2024-09-11 09:04:33.548242 97eb9db6-da2d-4606-aa3c-6d1283a34e1e {"pid": "4319", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/11114261X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:33.60642 2024-09-11 09:04:33.606423 2b8d6398-e832-4328-bd44-317fd13d3423 {"pid": "4320", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/111315387"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:33.674634 2024-09-11 09:04:33.674637 7a49a08e-b949-4ebc-a441-f4844f7405d1 {"pid": "4321", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/111318459"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:33.732727 2024-09-11 09:04:33.732732 8798b4a5-c5de-4471-a2f5-0819965e4645 {"pid": "4322", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/111515890"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:33.789662 2024-09-11 09:04:33.789667 75ea72b3-b1f0-4e75-a7b4-8e39594f5288 {"pid": "4323", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/111524679"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:33.84953 2024-09-11 09:04:33.849534 ef31efc0-9bbd-469e-a665-6fd449f68e51 {"pid": "4324", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/111755220"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:33.919015 2024-09-11 09:04:33.91902 fc4f51d3-80eb-402e-9142-a6775896436b {"pid": "4325", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/112030777"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:33.980054 2024-09-11 09:04:33.980057 93a88658-d9e0-42fc-a160-fe5b2c503dcf {"pid": "4326", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/112074863"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:34.041691 2024-09-11 09:04:34.041695 9cc12de4-e668-44cc-bb7b-7941bbfe67bf {"pid": "4327", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/112113028"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:34.111207 2024-09-11 09:04:34.111212 e51519e7-6994-4d75-a85c-8d196ad11865 {"pid": "4328", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/112169678"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:34.170624 2024-09-11 09:04:34.17063 65c9426e-fa80-440d-8c5d-4037caf99022 {"pid": "4329", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/11219222X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:34.261728 2024-09-11 09:04:34.261733 815d613b-f05e-4fbf-81d6-a73f0bcf4a2d {"pid": "4330", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/112238181"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:34.334124 2024-09-11 09:04:34.334128 23f17ef2-f169-46e9-8241-59a6a1f31022 {"pid": "4331", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/11246355X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:34.402392 2024-09-11 09:04:34.402395 b8bb95b3-b40d-4ec9-a890-dffe0ded69b3 {"pid": "4332", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/112722024"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:34.474919 2024-09-11 09:04:34.474924 fce3eeb6-112a-4518-a5fd-55f6fbf44d11 {"pid": "4333", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/112795889"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:34.540339 2024-09-11 09:04:34.540342 c6408650-61eb-41cf-8962-1237a3aee2a6 {"pid": "4334", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/112913202"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:34.604271 2024-09-11 09:04:34.604276 16d85ab8-2433-43d1-87b7-bfba51775363 {"pid": "4335", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/112961401"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:34.674068 2024-09-11 09:04:34.674071 3f966710-2bd5-4000-bea5-259de38648df {"pid": "4336", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/113120362"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:34.738446 2024-09-11 09:04:34.738449 9c395f6f-2ec8-4979-95d6-e793ba4a9e4d {"pid": "4337", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/113195931"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104195609"} 1 +2024-09-11 09:04:34.796596 2024-09-11 09:04:34.7966 4c45e94b-0a8d-4632-b251-024c2b823029 {"pid": "4338", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/113204442"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:34.855707 2024-09-11 09:04:34.855711 e2f0d90d-9852-4e41-9d02-6d2f34f37ce7 {"pid": "4339", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/113372213"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:34.913542 2024-09-11 09:04:34.913545 b4b88adf-f30b-4986-957d-3717355fa5ce {"pid": "4340", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/113737041"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:35.039932 2024-09-11 09:04:35.039936 c97370cb-b18d-430f-ba7c-a366c9dd48db {"pid": "4341", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/113753764"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:35.101164 2024-09-11 09:04:35.101169 2da39fa7-20ec-43d9-bff3-01a99f39203f {"pid": "4342", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/113834535"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:35.170275 2024-09-11 09:04:35.170279 88c01030-72af-436a-8eb1-2c30935c1850 {"pid": "4343", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/113915845"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:35.226804 2024-09-11 09:04:35.226808 8989f122-9606-4841-8cde-d45693d66805 {"pid": "4344", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/114044104"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:35.298537 2024-09-11 09:04:35.298545 2bf02bf5-5252-4953-a03b-627e9a945474 {"pid": "4345", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/114141606"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:35.370294 2024-09-11 09:04:35.370299 ae76272b-10bf-42b3-8d50-aa11363b8621 {"pid": "4346", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/114173699"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:35.439179 2024-09-11 09:04:35.439181 97e50187-9339-4f17-a039-2918a852802e {"pid": "4347", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/114244057"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:35.502125 2024-09-11 09:04:35.502129 10d283bd-bc40-4951-b226-f9a7a0545f89 {"pid": "4348", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/114270813"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:35.56008 2024-09-11 09:04:35.560084 73782a89-25f1-4028-8b89-c2af1f63f52a {"pid": "4349", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/11449973X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:35.619214 2024-09-11 09:04:35.619219 b07dca57-3bf7-4b97-b329-b42e6e559a6f {"pid": "4350", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/114570337"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:35.682499 2024-09-11 09:04:35.682502 8ffc4692-6134-42ec-9909-30f04897ccab {"pid": "4351", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/114673128"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11152029"} 1 +2024-09-11 09:04:35.810529 2024-09-11 09:04:35.810533 1b207d6e-3dea-4cab-85b9-b259936e19a1 {"pid": "4352", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/115046917"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:35.940403 2024-09-11 09:04:35.940408 80cab345-8035-4acb-8a80-632929d7fa29 {"pid": "4354", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/115277684"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:35.995334 2024-09-11 09:04:35.995338 c51ebbe3-bfaf-4df2-961f-c9cb68f18917 {"pid": "4355", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/115564535"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:36.053329 2024-09-11 09:04:36.053332 daff2e43-8cdc-4932-aa64-bd20751ea6f0 {"pid": "4356", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/11570793X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:36.11283 2024-09-11 09:04:36.112834 b465158e-ddc6-42c0-aa3b-5af613cb8872 {"pid": "4357", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/115842993"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:36.183059 2024-09-11 09:04:36.183062 0694d29c-5194-4254-ba59-708f088e8f2e {"pid": "4358", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/116055669"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111586504"} 1 +2024-09-11 09:04:36.242421 2024-09-11 09:04:36.242425 53aa0ffc-0944-46c3-a6d5-1bb76623eb70 {"pid": "4359", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/116121556"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:36.313832 2024-09-11 09:04:36.313835 c63c657d-9404-42a5-9c42-3eb80784c0c8 {"pid": "4360", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/116142219"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:36.381476 2024-09-11 09:04:36.381479 e1ad4bc9-fe9e-4f5f-b5bd-553a000f3875 {"pid": "4361", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/11627753X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:36.440767 2024-09-11 09:04:36.440772 12dc418e-6418-4e84-ace3-3c57c31965bb {"pid": "4362", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/116285125"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:36.502146 2024-09-11 09:04:36.502149 e0c922a0-092d-4a1d-9aec-ffd3aec533a7 {"pid": "4363", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/116293020"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:36.566983 2024-09-11 09:04:36.566988 89c8aed7-5de2-41bc-8123-f177312d516c {"pid": "4364", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/116436840"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:36.627742 2024-09-11 09:04:36.627746 bd7df263-be66-4dee-a2c8-89e8788d733f {"pid": "4365", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/11649736X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:36.76528 2024-09-11 09:04:36.765282 587ddf21-59a8-4195-9569-fbc7c68ec3d1 {"pid": "4366", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/116542306"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:36.833505 2024-09-11 09:04:36.833511 f09a0382-4b87-4ade-a173-f6f4ff5114eb {"pid": "4367", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/116771763"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:36.961375 2024-09-11 09:04:36.961378 09a0a499-30c0-4d45-a751-e12471f3daf7 {"pid": "4368", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/11749464X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:37.020325 2024-09-11 09:04:37.020331 e8aa1779-f106-4868-961b-fe73c7efb3ff {"pid": "4369", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/117780081"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:37.07963 2024-09-11 09:04:37.079633 2939e109-8f21-4f58-8f80-0815b5f49e25 {"pid": "4370", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/117829226"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:37.138564 2024-09-11 09:04:37.138567 fadabd95-3a5e-4a34-9612-6aa16f76661a {"pid": "4371", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/117886920"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:37.196259 2024-09-11 09:04:37.196263 884fe94d-aa55-418e-b6e5-be3619f4e26f {"pid": "4372", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/117982067"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:37.253675 2024-09-11 09:04:37.253677 889a343c-59f6-4c4e-a1a1-e74e473ee424 {"pid": "4373", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/118249487"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:37.317827 2024-09-11 09:04:37.317834 c077c49b-928d-4842-b115-599907ff66d1 {"pid": "4374", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/118275593"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:37.378229 2024-09-11 09:04:37.378232 37dba75f-3b18-4a09-b409-ea00c50f9083 {"pid": "4375", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/118630245"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:37.435862 2024-09-11 09:04:37.435866 94cdefd9-4821-4f12-b4e3-ef0798c7e196 {"pid": "4376", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/118895729"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:37.489455 2024-09-11 09:04:37.489459 271c0475-5115-4152-b0b0-e94014418bae {"pid": "4377", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/118964534"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:37.546153 2024-09-11 09:04:37.546157 bbbfce54-3539-4ac8-8821-8c7df8821fdf {"pid": "4378", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/119176114"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:37.669425 2024-09-11 09:04:37.669431 965fb386-27d3-4d78-856e-d830a89edbb5 {"pid": "4380", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/11954945X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:37.728449 2024-09-11 09:04:37.728452 39d52ee8-844a-4b72-a004-9f4071cef078 {"pid": "4381", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/119926350"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:37.784201 2024-09-11 09:04:37.784204 08c3823e-0ee8-487b-93bc-429d20e6d6a5 {"pid": "4382", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/119945290"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:46.575815 2024-09-11 09:06:48.265351 9ed7989e-505b-4a34-9b4b-18174b1e1ffb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/119255537"}, "pid": "1705", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003889324"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/117328383"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110391079"} 3 +2024-09-11 09:04:37.612577 2024-09-11 09:07:15.094554 be473c96-1304-49a7-b895-7481a691ec5a {"pid": "4379", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013753495"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/119349043"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10164119"} 2 +2024-09-11 09:04:37.844479 2024-09-11 09:04:37.844484 5896f843-69f3-41ad-bc46-b260a78d6af9 {"pid": "4383", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/119980924"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:37.914974 2024-09-11 09:04:37.914978 4730e3a6-7600-423d-a142-c2abe41fdd5d {"pid": "4384", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/120051575"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:37.992491 2024-09-11 09:04:37.992497 c4af06c0-bcf5-494e-9a40-073fc49eeb4f {"pid": "4385", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/120122545"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:38.053549 2024-09-11 09:04:38.053553 3c1a0f7a-98fe-4afd-812e-b2ae88967c94 {"pid": "4386", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/120196204"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:38.123311 2024-09-11 09:04:38.123315 2822f18a-55b9-435c-a64d-c845fc78573e {"pid": "4387", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/120483076"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:38.181637 2024-09-11 09:04:38.18164 8b061596-3aa0-4a23-98b2-a5fc4ddcce3d {"pid": "4388", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/120678918"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:38.24668 2024-09-11 09:04:38.246684 aa20f991-65d5-4ae3-8c08-72462fcf9ed0 {"pid": "4389", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/120767848"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:38.306828 2024-09-11 09:04:38.306832 cefbdafd-79d2-4898-b675-c35ff96d7cdf {"pid": "4390", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/120895579"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:38.433164 2024-09-11 09:04:38.433168 d251b3c1-17e2-4f28-8e20-5638e9f1af79 {"pid": "4391", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/121151778"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:38.491185 2024-09-11 09:04:38.49119 24e0403c-9052-4463-9d97-0f26fcca8bf0 {"pid": "4392", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/121294757"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:38.64103 2024-09-11 09:04:38.641033 205bd853-2c04-46cc-a650-b0191320d9c9 {"pid": "4393", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/121758419"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:38.69871 2024-09-11 09:04:38.698713 fe632b6a-ed3f-4206-baea-708f8422b185 {"pid": "4394", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/121801713"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:38.753966 2024-09-11 09:04:38.753971 836eae1e-9d45-472d-a25e-f46ae04eae65 {"pid": "4395", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/121832260"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:38.81251 2024-09-11 09:04:38.812516 41c285fb-da7e-4ce8-a0f7-334930d68be5 {"pid": "4396", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/122093186"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:38.869195 2024-09-11 09:04:38.8692 47ae1dd8-35d3-4423-b1a8-402a38dd318b {"pid": "4397", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/122301374"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:38.935492 2024-09-11 09:04:38.935497 bc2cb71e-16ef-42f2-b973-b83fa33d7eeb {"pid": "4398", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/122411749"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:38.991478 2024-09-11 09:04:38.991483 078bf717-fb59-4ad7-bc87-2682113e92b7 {"pid": "4399", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/122514904"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:39.047388 2024-09-11 09:04:39.047391 46cda834-9d7a-4d35-9fb0-872879892562 {"pid": "4400", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/122677315"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:39.107394 2024-09-11 09:04:39.107397 f302e222-8713-427f-b2af-cf1111e57f72 {"pid": "4401", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/122762142"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:39.16552 2024-09-11 09:04:39.165523 e30c9be6-7ef2-420f-bca5-1b94235dd1e3 {"pid": "4402", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/123006287"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:39.238501 2024-09-11 09:04:39.238505 9f28d6f5-ea8b-4020-be88-7b33a27ea77b {"pid": "4403", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/123007089"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:39.307821 2024-09-11 09:04:39.307825 eb04fa3c-2e36-416e-8e0e-2e31dad27897 {"pid": "4404", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/123240638"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106584892"} 1 +2024-09-11 09:04:39.370702 2024-09-11 09:04:39.370706 dd084564-0b1f-4aa8-942a-4fbf87dd1fbc {"pid": "4405", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/123395321"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:39.496033 2024-09-11 09:04:39.496037 7ffbecc4-1222-46dd-8b34-2d953dcb619c {"pid": "4406", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/123496225"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:39.55644 2024-09-11 09:04:39.556444 4191a33d-56fa-46a2-9022-aa34d9347ab5 {"pid": "4407", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/123609836"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:39.612976 2024-09-11 09:04:39.61298 1dc2ea1f-ee83-4cae-9c02-bb3a7e080ea4 {"pid": "4408", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/124179290"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:39.671581 2024-09-11 09:04:39.671584 e39c1cc8-41e5-45c8-92f3-b37fad8e88b9 {"pid": "4409", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/12420709X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:39.792081 2024-09-11 09:04:39.792084 c632f800-2971-41f2-8f57-ffff397f02b1 {"pid": "4411", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/12430284X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:39.851865 2024-09-11 09:04:39.851868 ef3c2fa6-4a8d-4367-88dc-3e4afb43a080 {"pid": "4412", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/124342078"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:39.736039 2024-09-11 09:07:16.235714 3acde31a-dacf-4ae8-adfd-463ad93fdd4f {"pid": "4410", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013993183"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/124217273"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1077127"} 2 +2024-09-11 09:04:39.910085 2024-09-11 09:04:39.910088 7dcdd812-0c5c-408b-9410-258ecc3d994b {"pid": "4413", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/124497209"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:40.038503 2024-09-11 09:04:40.038507 c2c3c644-697b-4912-9438-34ce41005332 {"pid": "4415", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/124670954"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:40.10436 2024-09-11 09:04:40.104363 bd3ed6c7-463d-4501-9185-0882223685ca {"pid": "4416", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/124764916"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:40.165953 2024-09-11 09:04:40.165958 91110760-bb93-43ef-ba01-bb2c8c481ccb {"pid": "4417", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/124806376"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:40.222243 2024-09-11 09:04:40.222247 e3d6d59e-d9cf-4d11-b8f7-40f2b8126369 {"pid": "4418", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/125074506"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:40.281387 2024-09-11 09:04:40.281391 c73d7292-c01e-43ae-aad1-b4c8d49e86bc {"pid": "4419", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/125871074"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:40.33869 2024-09-11 09:04:40.338695 08af03f6-9424-4fd5-92f4-0635be9ddd9d {"pid": "4420", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/126029784"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:40.401033 2024-09-11 09:04:40.401038 61898efe-9b13-43f6-b11e-d2d61f9a8376 {"pid": "4421", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/126078858"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:40.476487 2024-09-11 09:04:40.476491 f5c3062e-451e-4147-9117-7bb8babd1d8e {"pid": "4422", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/126483361"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:40.544675 2024-09-11 09:04:40.544679 161299f1-58b5-42ad-965e-af178987123b {"pid": "4423", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/126596131"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:40.610154 2024-09-11 09:04:40.610158 32afe02b-293f-41e1-9f25-0696e01505a9 {"pid": "4424", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/126598371"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:40.735375 2024-09-11 09:04:40.73538 d1e4e141-9952-4f0e-b0ce-bce483f283d9 {"pid": "4425", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/127065113"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:40.792585 2024-09-11 09:04:40.792589 b469e8cf-4ccb-44db-9f63-8487052a4098 {"pid": "4426", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/127163905"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:40.847469 2024-09-11 09:04:40.847473 02a8d236-3bc0-4766-93e0-701f426d54d8 {"pid": "4427", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/127251502"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:40.904536 2024-09-11 09:04:40.904539 818f5473-1712-432a-a17b-86de03bbce0d {"pid": "4428", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/127287159"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:41.039655 2024-09-11 09:04:41.039659 75e45b9d-54de-49c8-82d9-e079a07d9182 {"pid": "4430", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/127364013"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:41.09688 2024-09-11 09:04:41.096883 3ae95c29-f29f-4d2c-81fe-7353c43fa565 {"pid": "4431", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/127488790"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:41.165473 2024-09-11 09:04:41.165478 647dc6f5-fcea-42f8-b961-6abc5ae78593 {"pid": "4432", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/127521038"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:41.239354 2024-09-11 09:04:41.239358 e3c541c4-9c26-4b13-a571-1ca8b55b5270 {"pid": "4433", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/127789111"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:41.29689 2024-09-11 09:04:41.296893 53fb82ac-9bf4-4fc8-95aa-d11954b69d7d {"pid": "4434", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/127838732"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:41.353816 2024-09-11 09:04:41.35382 984b651c-f1d9-4bfc-aa44-d46ad478be8b {"pid": "4435", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/127859829"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:41.430743 2024-09-11 09:04:41.430745 8e53c423-728c-4564-aea0-e5d46952ae7b {"pid": "4436", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/128116951"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:41.492266 2024-09-11 09:04:41.49227 558dfcff-0f7d-4741-8d77-4fc1ab593ff6 {"pid": "4437", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/128258365"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:41.55266 2024-09-11 09:04:41.552665 926a89cd-b432-45b8-9352-5af68b82a91a {"pid": "4438", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/128283661"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:41.610529 2024-09-11 09:04:41.610534 c766060e-f282-4676-a1f0-3a7cdff534cb {"pid": "4439", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/128499877"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:41.66674 2024-09-11 09:04:41.666745 b31c5c65-f487-4f1f-886e-b9f8181da5e0 {"pid": "4440", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/128529202"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:41.727715 2024-09-11 09:04:41.727718 63f4fe16-e0d3-4000-b6df-dae27d247f71 {"pid": "4441", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/128537663"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:41.793222 2024-09-11 09:07:12.602047 51289f64-df4d-4947-b5f4-077a2704e1df {"pid": "4442", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013278476"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/128585544"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11173017"} 2 +2024-09-11 09:04:40.970701 2024-09-11 09:07:59.731156 9bd82b71-6b74-4684-bcef-bd7cfcc49f11 {"pid": "4429", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027449905"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/127334807"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103247657"} 2 +2024-09-11 09:04:42.080209 2024-09-11 09:04:42.080212 2c09d8cb-149b-4d24-8c8d-86b3a77682a4 {"pid": "4443", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/129182176"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:42.144922 2024-09-11 09:04:42.144927 53adb9c1-74fb-4662-8959-5d3d06d34470 {"pid": "4444", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/129211273"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:42.211155 2024-09-11 09:04:42.21116 0ded6946-20dc-4304-a00b-759f0a01aa0e {"pid": "4445", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/129419915"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108105466"} 1 +2024-09-11 09:04:42.286122 2024-09-11 09:04:42.286126 e095e44a-3fa2-44dc-a7e2-f09b38da4600 {"pid": "4446", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/129558311"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:42.366812 2024-09-11 09:04:42.366816 0f4e7fa1-8ca1-4766-b994-2b2d7ecada4f {"pid": "4447", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/129801577"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10635475"} 1 +2024-09-11 09:04:42.421845 2024-09-11 09:04:42.42185 11323871-0e1e-44d7-b934-40398834c2ee {"pid": "4448", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/129871303"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:42.48863 2024-09-11 09:04:42.488634 c4b6227c-157e-4237-ba1c-7cad464580dc {"pid": "4449", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/129966053"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:42.56568 2024-09-11 09:04:42.565684 dd4c9f9d-9583-4db0-9d0f-68f70584e55f {"pid": "4450", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/129988758"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:42.630749 2024-09-11 09:04:42.630752 b1dfaa41-8015-4860-903d-ed2a3ad22272 {"pid": "4451", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/130017256"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:42.686394 2024-09-11 09:04:42.686397 73ff5052-b219-43fa-b630-2c313ed02abe {"pid": "4452", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/13037962X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:42.746664 2024-09-11 09:04:42.746668 02065ae3-bbfd-4486-b866-f68e66654dfa {"pid": "4453", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/130434795"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:42.802298 2024-09-11 09:04:42.8023 cdbab83b-b40d-446f-a70b-1ad471d76a67 {"pid": "4454", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/130521973"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:42.862577 2024-09-11 09:04:42.862582 31945058-c732-457c-b97c-6475d219ed8e {"pid": "4455", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/130648396"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:42.918559 2024-09-11 09:04:42.918562 e15f80be-186a-4902-8c4e-2437cfddce56 {"pid": "4456", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/130807508"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:42.97725 2024-09-11 09:04:42.977254 175d6647-1f8d-431e-9c66-b5e21bf9e76d {"pid": "4457", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/130809217"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:43.035905 2024-09-11 09:04:43.03591 29ab4a76-e7e2-4106-a315-2bb5420fd960 {"pid": "4458", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/131054937"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:43.092846 2024-09-11 09:04:43.092851 84c50588-b610-4bc4-969e-8c4c6dd3bb30 {"pid": "4459", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/131245759"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:43.155039 2024-09-11 09:04:43.155044 74368e93-1edd-4ccc-9531-f28ef4ecb6d9 {"pid": "4460", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/13145269X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:43.217103 2024-09-11 09:04:43.217106 d6fe0d91-5efa-4b93-9bf0-374393531476 {"pid": "4461", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/131529595"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:43.295859 2024-09-11 09:04:43.295864 a986ed39-30cf-4682-8b45-274419de08b4 {"pid": "4462", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/131808206"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:43.355883 2024-09-11 09:04:43.355887 63ed96d5-2e4f-4e70-9273-f8fe7cd2478f {"pid": "4463", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/13185254X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:43.494 2024-09-11 09:04:43.494005 83f498d6-1da1-4f52-865c-66f6fa6804bb {"pid": "4464", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/132337282"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:43.624582 2024-09-11 09:04:43.624586 301a6918-1635-4209-baae-42b3db52bf4d {"pid": "4465", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/132436620"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:43.68425 2024-09-11 09:04:43.684255 8bd8d113-9730-449a-b7d5-046175b90fd1 {"pid": "4466", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/132521326"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:43.807649 2024-09-11 09:04:43.807653 727f7d5a-3bec-4df5-a171-33d3f9d5c5e1 {"pid": "4468", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/132750368"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:43.869548 2024-09-11 09:04:43.869551 4d145a23-b6ad-4d07-ad45-ca379b1b1fd6 {"pid": "4469", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/132844036"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:43.990065 2024-09-11 09:04:43.990068 0563f837-c411-4f19-8773-c3ad661d1e3f {"pid": "4471", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/13318479X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:58.205553 2024-09-11 09:07:27.243382 f7804c5f-898b-417d-8e30-6e411f6962a0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1063814340"}, "pid": "893", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018475973"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/132110520"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101719477"} 3 +2024-09-11 09:04:43.746517 2024-09-11 09:07:48.942366 7886e923-a626-4fae-a610-569c1002a8f5 {"pid": "4467", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025244362"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/132740966"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112003734"} 2 +2024-09-11 09:04:44.045942 2024-09-11 09:04:44.045947 2604a8f7-2315-41ac-b645-c29c20885bd6 {"pid": "4472", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/133250717"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:44.104137 2024-09-11 09:04:44.104141 8cc4e674-287b-44ec-9cb1-6cc1a3955fa0 {"pid": "4473", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/133383369"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:44.158757 2024-09-11 09:04:44.158762 3b5ab7a1-bd73-4d34-b133-f9ba21a0695d {"pid": "4474", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/133418278"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:44.217037 2024-09-11 09:04:44.217039 10f1cf02-cdf9-41c1-a606-4a4cfab5c257 {"pid": "4475", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/133532542"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:44.282195 2024-09-11 09:04:44.2822 b5057672-e77f-4b0b-9338-76e4c671cd64 {"pid": "4476", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/133564649"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:44.336887 2024-09-11 09:04:44.33689 5c0e9f9c-9bf1-4d4b-ad13-668d280d82b1 {"pid": "4477", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/13375412X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:44.462547 2024-09-11 09:04:44.462551 5f0d75b4-d175-4e45-b115-040d97dfc88f {"pid": "4479", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/133823261"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:44.583124 2024-09-11 09:04:44.583129 25f9bbb1-9ab7-47e6-ba81-113fdc0139af {"pid": "4481", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/134024672"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:44.639455 2024-09-11 09:04:44.639459 04fa6fb0-9152-426f-ae47-d94f1af7da40 {"pid": "4482", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/134273850"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:44.693318 2024-09-11 09:04:44.693322 4752b610-4ad3-429c-930b-ce99c024eae1 {"pid": "4483", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/134382005"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:44.74664 2024-09-11 09:04:44.746645 b32c9bf0-4887-4c45-9515-2e7735a9b04a {"pid": "4484", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/134448251"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:44.799912 2024-09-11 09:04:44.799917 e4006de3-21bf-45e2-a011-7ab70499b3d9 {"pid": "4485", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/134449568"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:44.913944 2024-09-11 09:04:44.913946 f6c47093-9b2c-4633-b1b1-23ce1adad0e5 {"pid": "4486", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/135192013"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:44.967738 2024-09-11 09:04:44.967743 85a660ff-2381-4fea-a314-3827d3f4d92f {"pid": "4487", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/135315042"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:45.027023 2024-09-11 09:04:45.027027 37f639b7-943e-4a4a-86f8-60973f28f9b2 {"pid": "4488", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/135562120"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:45.085742 2024-09-11 09:04:45.085745 f1fba825-ee2d-43e7-a2c7-082a6f5e8f89 {"pid": "4489", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/135612934"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:52.2979 2024-09-11 09:04:45.142701 92b2bada-f402-452a-8e17-92030c2b2a6c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1211358380"}, "pid": "1803", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/135683122"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107998854"} 2 +2024-09-11 09:04:45.205111 2024-09-11 09:04:45.205115 773cc555-41e1-40c2-b358-b43b1a448860 {"pid": "4490", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/135688590"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103607297"} 1 +2024-09-11 09:04:45.267983 2024-09-11 09:04:45.267986 72aaaf0a-9aeb-4af2-9a3a-299124a84b52 {"pid": "4491", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/135736234"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:45.330288 2024-09-11 09:04:45.33029 e8b34ca6-a058-417b-bf38-d8f63a08c789 {"pid": "4492", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/135975484"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:45.385467 2024-09-11 09:04:45.38547 a0ee9929-3605-42d5-aecf-e7197569eb01 {"pid": "4493", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/136123821"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:45.442415 2024-09-11 09:04:45.44242 677d4ca9-1910-4a12-ac36-4e8948c18869 {"pid": "4494", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/136235212"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:45.495387 2024-09-11 09:04:45.495391 1ca16757-7459-4d8f-9378-22188fa1b500 {"pid": "4495", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/13632536X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:45.617512 2024-09-11 09:04:45.617517 51230e95-d908-4f59-b7d1-1c99c1673359 {"pid": "4496", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/136556906"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:45.672777 2024-09-11 09:04:45.67278 12f939df-543a-40b0-814a-60034efa33c6 {"pid": "4497", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/136738850"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:45.783936 2024-09-11 09:04:45.783938 a2b3fd2e-a7b5-4da6-b687-9bc32ebc4526 {"pid": "4498", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/136864279"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:45.90265 2024-09-11 09:04:45.902653 53c61c5e-5b00-4785-94f5-31735beb9f48 {"pid": "4500", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/136864554"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106213631"} 1 +2024-09-11 09:04:45.954385 2024-09-11 09:04:45.95439 dad45ca3-c8da-4fb6-9f79-eb7aea16c1cb {"pid": "4501", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/136893163"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:44.528181 2024-09-11 09:06:45.769447 b2108f12-1974-4dd4-9127-5e4f96875a2d {"pid": "4480", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003789261"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/133972887"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103906772"} 2 +2024-09-11 09:04:46.010549 2024-09-11 09:04:46.010553 3a669c63-4554-41c2-8340-4d43c7c4cc2e {"pid": "4502", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/137193548"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:46.065257 2024-09-11 09:04:46.065261 21f12b1f-05c7-4424-b945-7bf6a431abb7 {"pid": "4503", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/137341563"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:46.126485 2024-09-11 09:04:46.12649 1e6d7d36-5edf-4cfe-ac43-c178d70be9e7 {"pid": "4504", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/137405723"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101147266978835482588"} 1 +2024-09-11 09:04:46.183736 2024-09-11 09:04:46.183741 c676f2cf-69ac-4344-ab90-4d567d4fe0e1 {"pid": "4505", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/137424795"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:46.271913 2024-09-11 09:04:46.271916 d1cf1925-35f7-4663-8f52-57d6ac17eefb {"pid": "4506", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/137586248"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:46.323053 2024-09-11 09:04:46.323058 027e23fd-3db1-4c48-87d1-7448a1c034bf {"pid": "4507", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/137635400"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:46.37443 2024-09-11 09:04:46.374434 eccb2e99-2045-446a-857f-336ebfb18858 {"pid": "4508", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/137657412"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:46.428547 2024-09-11 09:04:46.42855 a459e2fd-657d-4076-bcfd-185095c187fc {"pid": "4509", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/137724780"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:46.612253 2024-09-11 09:04:46.612259 b0a30e91-8fa6-4964-b807-243d3d5deff0 {"pid": "4511", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/138022550"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:46.666501 2024-09-11 09:04:46.666506 9eb7a426-452b-47e2-adaf-067e71987f24 {"pid": "4512", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/138023468"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:46.726217 2024-09-11 09:04:46.726222 e4032b3e-628b-40fd-b2ff-dd9bed42192d {"pid": "4513", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/138484945"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103247206"} 1 +2024-09-11 09:04:46.783978 2024-09-11 09:04:46.783982 94962975-4fbb-49a7-83ea-852fe36572d1 {"pid": "4514", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/138508518"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:46.842742 2024-09-11 09:04:46.842746 03a82c93-133e-44cb-ad13-bc2024548888 {"pid": "4515", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/138783578"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:46.906823 2024-09-11 09:04:46.906826 77393528-7308-4918-9110-203f0d7561e6 {"pid": "4516", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/138905312"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:46.973962 2024-09-11 09:04:46.973966 661e9990-8fb6-4de9-bf50-0da07bbb3e13 {"pid": "4517", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/138933871"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:47.041452 2024-09-11 09:04:47.041456 de864cd7-f5ff-4ef2-9242-0531a990de48 {"pid": "4518", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/13905443X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:44.844431 2024-09-11 09:04:47.1141 11ca53bc-ebd8-4353-8aff-de8ae4e4ab97 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/178767875"}, "pid": "2695", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/139135723"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108566267"} 2 +2024-09-11 09:04:47.173642 2024-09-11 09:04:47.173646 393d63a5-d332-46fb-9230-dceb2c2783c6 {"pid": "4519", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/139148256"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:47.232252 2024-09-11 09:04:47.232256 c0dbf953-1e8d-41c5-8142-1f3e8542f58e {"pid": "4520", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/139175520"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:47.305598 2024-09-11 09:04:47.3056 927f0e16-e81d-40ea-9eed-6538e9e10862 {"pid": "4521", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/139416846"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102699071"} 1 +2024-09-11 09:04:47.366882 2024-09-11 09:04:47.366888 7e7ed8d7-684f-484c-be43-3874c549b6c5 {"pid": "4522", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/139490752"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:47.435067 2024-09-11 09:04:47.435071 a94fcef8-6f36-49b7-99ad-2f65dce36fe9 {"pid": "4523", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/13949992X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:47.494051 2024-09-11 09:04:47.494074 f8ff3af2-4f1d-4824-adad-692986d4358b {"pid": "4524", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/139513760"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:47.551793 2024-09-11 09:04:47.551797 a72a6b6a-e567-4b95-8fc5-1dc4c5919d11 {"pid": "4525", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/139752528"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:47.676676 2024-09-11 09:04:47.67668 8941e414-ae60-4c94-b9b2-80de2073fdda {"pid": "4527", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/139815201"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:47.731783 2024-09-11 09:04:47.731786 0671f480-2ba8-42fe-a445-6ae2e336eb72 {"pid": "4528", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/139830383"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:47.789398 2024-09-11 09:04:47.789402 4dcd4a5f-ea61-4ff5-a8e7-b98ea2d0d850 {"pid": "4529", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/139890629"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:47.846661 2024-09-11 09:04:47.846665 79eaa0f4-b86b-4195-870a-d0edde2e98c3 {"pid": "4530", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/139975055"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:47.913611 2024-09-11 09:04:47.913615 eaac6c9c-679c-48ae-93e8-3c48c37042bb {"pid": "4531", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/140038493"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:47.978389 2024-09-11 09:04:47.978393 51f89cb3-8f6c-460b-99b1-053235af7178 {"pid": "4532", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/140057196"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:48.056277 2024-09-11 09:04:48.056281 f6bcd24a-4cb8-432c-9a99-bbe8f5667e5a {"pid": "4533", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/140162070"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:30.311082 2024-09-11 09:04:48.118834 53f5af46-1f51-4523-b33e-9ac7ebf74edd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1157230466"}, "pid": "1435", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/140317414"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112075113"} 2 +2024-09-11 09:04:48.183953 2024-09-11 09:04:48.183957 ffa7f4e5-bd97-4262-9876-bb05725c4db9 {"pid": "4534", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/140354336"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:48.242225 2024-09-11 09:04:48.242229 76483574-7371-4fa8-8aad-381ed32a2bb7 {"pid": "4535", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/140407235"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:48.365797 2024-09-11 09:04:48.365802 fdc15824-eade-4214-83d8-68c832810d89 {"pid": "4536", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/140494383"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:48.426465 2024-09-11 09:04:48.426468 7453422f-fe33-48d4-a958-2a1a6c2f7919 {"pid": "4537", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/140558756"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:48.492573 2024-09-11 09:04:48.492577 02cb8556-1647-4428-8e6b-4d9a68dc4dfd {"pid": "4538", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/140708987"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101827288"} 1 +2024-09-11 09:04:48.552881 2024-09-11 09:04:48.552892 7b44c708-2a48-46d6-a9e4-9980f7628eec {"pid": "4539", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/140773118"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:48.616836 2024-09-11 09:04:48.616838 0d79c247-4081-41f5-af9c-c949115718fc {"pid": "4540", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/140821325"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:48.686001 2024-09-11 09:04:48.686007 7189695f-aac5-46dd-a342-51b43c4c39b7 {"pid": "4541", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/142598542"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:48.7466 2024-09-11 09:04:48.746603 9225f369-feee-42d7-bd39-e0400e950d36 {"pid": "4542", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/142611379"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:48.80917 2024-09-11 09:04:48.809174 48fd05fe-e7a3-4c65-bbc4-ada7ba8bd780 {"pid": "4543", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/142638145"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103683950"} 1 +2024-09-11 09:04:48.868477 2024-09-11 09:04:48.868483 1c70bfab-448c-4eb8-972c-30fafce89543 {"pid": "4544", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/142668745"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:48.925633 2024-09-11 09:04:48.925637 c90ccdfc-48e2-4969-96ea-1b01a4d53d1a {"pid": "4545", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/142741299"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:48.984231 2024-09-11 09:04:48.984235 c7dd52ed-86c4-45bb-928d-44ae9be363e0 {"pid": "4546", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/142838411"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:49.044567 2024-09-11 09:04:49.044571 d59d2bca-dd25-4914-9f17-97cae2670c47 {"pid": "4547", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/142843229"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:49.161653 2024-09-11 09:04:49.161656 f4c97716-83a3-4c74-b34a-a919ceddd68f {"pid": "4549", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/142918342"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:49.221494 2024-09-11 09:04:49.221499 a37327db-5190-4322-9deb-4a297709f2cb {"pid": "4550", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/14299443X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:49.302958 2024-09-11 09:04:49.302964 40887e42-e38e-4c59-91b6-35d1573a5491 {"pid": "4551", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/142996734"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103514182"} 1 +2024-09-11 09:04:49.379593 2024-09-11 09:04:49.379597 bb617db8-d83b-41a8-8496-74bfe8a8fc04 {"pid": "4552", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/143028537"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:49.438761 2024-09-11 09:04:49.438764 0184a2a2-76c8-478b-8ec5-d2a34a99d0c5 {"pid": "4553", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/143076310"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:49.512137 2024-09-11 09:04:49.512139 eb10a356-f40e-4f05-aa90-c7588f344fd4 {"pid": "4554", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/143098713"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:49.636046 2024-09-11 09:04:49.636049 cdeccc2f-ffa8-4980-ad4b-f203c75aadaf {"pid": "4555", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/143151851"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:29.201235 2024-09-11 09:04:49.700776 4e8832eb-d22c-45a7-80e5-6f9573d7f682 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1153744600"}, "pid": "1416", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/143329790"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102047876"} 2 +2024-09-11 09:04:49.763 2024-09-11 09:04:49.763004 745f16c0-ce94-46aa-92f8-1d01c7c02ae6 {"pid": "4556", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/143330772"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:49.833037 2024-09-11 09:04:49.833041 d0189d04-e1ad-4a56-ae17-5ee2957276e6 {"pid": "4557", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/143403826"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:49.897964 2024-09-11 09:04:49.89797 be0f1e3a-b924-4505-815c-857609ef56cd {"pid": "4558", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/143470280"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103475852"} 1 +2024-09-11 09:04:49.966731 2024-09-11 09:04:49.966737 0fb2f4bb-ed29-4289-8e06-eadef44cb8a9 {"pid": "4559", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/143860747"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:50.024759 2024-09-11 09:04:50.024763 90b8db7c-b0fd-438f-8d11-afd372d435a9 {"pid": "4560", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/144467909"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:50.083658 2024-09-11 09:04:50.083663 790bdb15-c99f-476f-a46d-c64c5a42aec6 {"pid": "4561", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/144487179"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:50.143278 2024-09-11 09:04:50.143282 27d4da24-8c43-46c3-aa56-94856c5c89da {"pid": "4562", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/144499401"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:50.202024 2024-09-11 09:04:50.202029 e1eb8cbc-cfe7-4127-b131-6433b53f5af5 {"pid": "4563", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/144580403"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:50.260238 2024-09-11 09:04:50.260243 673bc958-d137-43a0-a1d5-d8a78979edf9 {"pid": "4564", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/144614421"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:50.320805 2024-09-11 09:04:50.320809 d35b0b09-3712-4f00-98f0-3f6f7b5f985c {"pid": "4565", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/144636077"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:50.380861 2024-09-11 09:04:50.380866 af446edb-a6c7-444a-9a3b-2b784b65d3ae {"pid": "4566", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/145090515"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:06.909963 2024-09-11 09:04:50.456785 50ef8341-613d-400f-8a36-7e3d6a136056 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1259930696"}, "pid": "2055", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/145209512"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101789849"} 2 +2024-09-11 09:02:10.176411 2024-09-11 09:04:50.522658 abbe9167-f33e-4c5a-8439-df8a79d5cf49 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/12833794X"}, "pid": "2114", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/145286444"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1061809"} 2 +2024-09-11 09:04:50.583739 2024-09-11 09:04:50.583744 be49dc00-7c24-4e33-b373-e4c94ecf6ae0 {"pid": "4567", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/145296741"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:50.641399 2024-09-11 09:04:50.641403 b9df34d3-13b4-4c64-aa22-f94c0e21f505 {"pid": "4568", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/145350177"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:50.712245 2024-09-11 09:04:50.712249 1867a603-32c2-4577-ac0f-7267dc3c4fe4 {"pid": "4569", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/145351297"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:50.771389 2024-09-11 09:04:50.771393 100ecfbe-ef64-4dc8-a7c7-5cde18dc190b {"pid": "4570", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/145373487"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:50.830167 2024-09-11 09:04:50.830174 8e19ea81-0369-4493-87d1-565fcf6f4f8b {"pid": "4571", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/145630218"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:50.89893 2024-09-11 09:04:50.898933 278af542-849a-424d-a7a0-fc639180e620 {"pid": "4572", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/145636496"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:51.026421 2024-09-11 09:04:51.026425 02d01e9c-939a-4801-8bff-6b056e8a25e0 {"pid": "4573", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/14566841X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:51.091251 2024-09-11 09:04:51.091255 8dd02dc7-ff74-4ece-ad65-8965da8b0fa9 {"pid": "4574", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/145729613"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107836538"} 1 +2024-09-11 09:04:51.233713 2024-09-11 09:04:51.233719 37f720b3-25e1-45d0-a415-5f85c06a17c6 {"pid": "4575", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/145888185"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:51.295176 2024-09-11 09:04:51.29518 3eed383a-1b2d-44cd-b353-ab9008cfb327 {"pid": "4576", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/145959783"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:51.363617 2024-09-11 09:04:51.36362 9fc69a53-ce19-4e84-8b88-2ce90db9f005 {"pid": "4577", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/146054210"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:51.428482 2024-09-11 09:04:51.428486 0ce9a898-7462-498a-811e-013b6260eefa {"pid": "4578", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/146086457"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:51.505351 2024-09-11 09:04:51.505356 ffcb020e-92cd-48a0-b3ee-5f6462fb2746 {"pid": "4579", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/146148754"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:26.45774 2024-09-11 09:04:51.5821 e9445ef4-269b-4959-8428-a95bc1259ad0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140327606"}, "pid": "2376", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/146270401"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103855418"} 2 +2024-09-11 09:04:51.651319 2024-09-11 09:04:51.651322 19e1f991-1622-47a1-bc85-5250a4c8c8ee {"pid": "4580", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/146872584"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:51.781926 2024-09-11 09:04:51.781929 654fe91c-5fff-48af-8c2a-95f6a693dafd {"pid": "4581", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/146985109"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:51.847497 2024-09-11 09:04:51.847502 2446a208-5461-4a33-868a-4be979b0040c {"pid": "4582", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/147004268"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:51.917246 2024-09-11 09:04:51.91725 bc25f897-af7c-45cd-8c11-ae69a8a1c9bd {"pid": "4583", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/147054672"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:51.983241 2024-09-11 09:04:51.983246 596986fe-14b9-4bfb-99cd-3c1e0ef08646 {"pid": "4584", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/147179955"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:52.12827 2024-09-11 09:04:52.128275 f4c2dd1f-a43e-4a56-acde-92e5ed338ac6 {"pid": "4586", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/147297192"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:52.196808 2024-09-11 09:04:52.196813 f5f06392-3b5b-420a-9eaa-04f67ab0f09a {"pid": "4587", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/147331781"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:52.252503 2024-09-11 09:04:52.252508 eb1c083e-06e3-4fa8-bd10-aae230a13cc4 {"pid": "4588", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/147383579"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:52.314057 2024-09-11 09:04:52.31406 8e9fd6e4-31b0-4af9-bbf6-a86f16fb2170 {"pid": "4589", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/147406889"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:52.390008 2024-09-11 09:04:52.390012 6957e4cf-3854-4dac-886c-1132cfca8e2a {"pid": "4590", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/147465885"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:52.463104 2024-09-11 09:04:52.463107 3ce8e1e0-054c-4bbc-9519-87a287055388 {"pid": "4591", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/147528712"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:52.628136 2024-09-11 09:04:52.62814 704d9b63-bf47-4f60-be33-d62b1edd711e {"pid": "4592", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/147700094"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:52.846191 2024-09-11 09:04:52.846194 db5df99b-5713-461d-876e-e24a5e13bc10 {"pid": "4593", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/147934540"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:52.912886 2024-09-11 09:04:52.912889 b54239c2-ad8b-4461-8e85-1aa1941ff379 {"pid": "4594", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148064884"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:52.973629 2024-09-11 09:04:52.973631 81acbec7-1ae3-49b0-bca5-af1300f1d360 {"pid": "4595", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148113761"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:53.035638 2024-09-11 09:04:53.035643 85659109-c597-4fd2-923d-cf94aeced5bb {"pid": "4596", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148169643"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:53.101384 2024-09-11 09:04:53.10139 42fda289-d32b-49b1-a593-0c0f80dcfa99 {"pid": "4597", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148202330"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:53.158777 2024-09-11 09:04:53.158781 79114cb8-9ddc-4a8e-b758-a68938a1692b {"pid": "4598", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148265286"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:53.220524 2024-09-11 09:04:53.220529 7bfa8247-e22d-4a55-9fb7-2d4f4af8d5cf {"pid": "4599", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148350887"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:53.281645 2024-09-11 09:04:53.28165 7d9c03c2-2530-4b7a-a7d7-0a66cd9a7f32 {"pid": "4600", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148352006"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:53.337803 2024-09-11 09:04:53.337806 704bba99-96f1-4962-845c-a108158d26b5 {"pid": "4601", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148411754"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:53.411175 2024-09-11 09:04:53.411179 1f7791eb-6fbb-4fd7-a31f-f9d299d31454 {"pid": "4602", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148443230"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:53.48003 2024-09-11 09:04:53.480035 517ac809-f4ad-416d-8bac-55e56a37c7d6 {"pid": "4603", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148457568"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:53.543965 2024-09-11 09:04:53.54397 5e9866b1-4fe2-4130-b700-a26a6b75075c {"pid": "4604", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148462081"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:53.611541 2024-09-11 09:04:53.611546 30c1511f-a088-4ed9-a920-da4b142be7c5 {"pid": "4605", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148468020"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:53.673618 2024-09-11 09:04:53.673622 083f9667-9fba-47f2-9a37-ce20ad836552 {"pid": "4606", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148481418"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:53.746609 2024-09-11 09:04:53.746614 88df8cc2-a325-4fbf-8e43-0ddb76c8f96b {"pid": "4607", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/14849952X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:53.80743 2024-09-11 09:04:53.807436 3b9fb01e-e1ce-40b2-a205-6b7d2db399db {"pid": "4608", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148509088"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:53.885069 2024-09-11 09:04:53.885072 3ec4fbc9-a3b3-4175-b212-ada1412b0030 {"pid": "4609", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148637450"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107344651"} 1 +2024-09-11 09:04:53.944976 2024-09-11 09:04:53.94498 6b60d508-a416-413d-92be-6c80358d64ce {"pid": "4610", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/14869506X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:54.011566 2024-09-11 09:04:54.011571 22a71cbb-fa5b-4339-8afe-72a2ce3801e2 {"pid": "4611", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148702090"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:54.081732 2024-09-11 09:04:54.081737 b8201c10-d1bd-40ce-8eea-b440176ce20f {"pid": "4612", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148746349"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:54.137554 2024-09-11 09:04:54.137558 ecde553b-2586-4bee-aef1-6dfbbb419ea2 {"pid": "4613", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148754899"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:54.194822 2024-09-11 09:04:54.194826 6f1240b8-feb1-4fd3-9d2b-632eb8613e4a {"pid": "4614", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148755097"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:54.249629 2024-09-11 09:04:54.249632 0992d77b-2c44-4108-9deb-6043916cb26c {"pid": "4615", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148766587"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:33.829154 2024-09-11 09:06:33.829159 bf508517-9151-4d70-b54e-0615667271da {"pid": "6170", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003293538"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:54.432661 2024-09-11 09:04:54.432666 a74e6644-a73a-487f-8643-301196b14fff {"pid": "4617", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148913679"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:56.511042 2024-09-11 09:04:56.511046 377eee14-16e2-4caf-a8a9-bd94002d9066 {"pid": "4649", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/150610203"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:54.49135 2024-09-11 09:04:54.491355 7325c474-bd8f-42d8-aebc-517152709a97 {"pid": "4618", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148935710"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103555547"} 1 +2024-09-11 09:04:54.564886 2024-09-11 09:04:54.564891 b58778d1-386e-443a-af3c-8b98947ecd81 {"pid": "4619", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/14894227X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:54.637746 2024-09-11 09:04:54.637752 8a4483c6-2a87-466a-8132-78c35bfa9a5f {"pid": "4620", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148944000"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:54.696569 2024-09-11 09:04:54.696573 926ca965-19ab-49b8-b8d8-ccf49a92cdcf {"pid": "4621", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/149110804"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:54.752112 2024-09-11 09:04:54.752114 60c722be-0349-46fc-94fc-c3754d0dcbaf {"pid": "4622", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/149112866"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:54.816251 2024-09-11 09:04:54.816255 4649bcda-a805-4be8-9c25-e31c0b7f4fc3 {"pid": "4623", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/149224516"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:54.875288 2024-09-11 09:04:54.875293 d4f93b1d-74cd-4f3e-93f2-c264fccafa6c {"pid": "4624", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/149233949"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:54.931854 2024-09-11 09:04:54.931858 8ae3a47c-6a82-400f-ace1-19b5d5da4225 {"pid": "4625", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/149252161"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:54.988726 2024-09-11 09:04:54.98873 f36c83aa-6317-466a-8a69-ecd552590974 {"pid": "4626", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/149264380"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:55.043388 2024-09-11 09:04:55.043393 23f9543d-0077-4472-bfb1-7870466dd168 {"pid": "4627", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/14928053X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:55.101282 2024-09-11 09:04:55.101284 6c11c05f-5a78-4e94-8e9c-a520a8929c7f {"pid": "4628", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/149301065"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:55.15587 2024-09-11 09:04:55.155873 701538b1-7520-499d-8739-a0b3eae7501b {"pid": "4629", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/149357826"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:55.212495 2024-09-11 09:04:55.2125 9cc58a2a-94eb-4468-8aab-16799c687fdb {"pid": "4630", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/149375565"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:55.279786 2024-09-11 09:04:55.27979 68f47c4f-77ba-4114-9336-0fc52a1c2553 {"pid": "4631", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/149501706"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:55.348053 2024-09-11 09:04:55.348058 d34cf22d-84f9-495b-8e74-2482a24ba980 {"pid": "4632", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/149728182"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:55.413683 2024-09-11 09:04:55.413687 aff745c8-1803-47b1-a42a-47eba35d4ca6 {"pid": "4633", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/149733100"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:55.478539 2024-09-11 09:04:55.478543 aa8fc3fb-f0ed-4ad7-8e9c-2576e193079d {"pid": "4634", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/149834802"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107101254"} 1 +2024-09-11 09:04:55.541797 2024-09-11 09:04:55.541801 c58bd2b5-32c5-4d67-8ea8-c562b5aec9da {"pid": "4635", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/149877706"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:55.600966 2024-09-11 09:04:55.600972 5e2a75c9-5f03-45f5-86ca-46b4610fba29 {"pid": "4636", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/149944586"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101025558"} 1 +2024-09-11 09:04:55.663344 2024-09-11 09:04:55.663348 21358871-c7a4-4c8c-b3bb-cf6a333aeb63 {"pid": "4637", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/149955847"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103203448"} 1 +2024-09-11 09:04:55.721099 2024-09-11 09:04:55.721103 81a5638e-f783-465c-a3a2-024c36741259 {"pid": "4638", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/149968302"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:55.790684 2024-09-11 09:04:55.790686 de1a481e-3b80-46bf-bc92-a777803e1c13 {"pid": "4639", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/149990871"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:55.846432 2024-09-11 09:04:55.846436 40d8fd7e-00f1-4fa4-9989-dcb47543b67b {"pid": "4640", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/149999399"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:55.908719 2024-09-11 09:04:55.908724 a09e19d0-016a-4ca4-9d22-c7e04af89017 {"pid": "4641", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/150102836"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:56.034313 2024-09-11 09:04:56.034318 83fdf2bc-38d2-4baa-98ba-a5b7e426aaf8 {"pid": "4643", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/150296541"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:56.132413 2024-09-11 09:04:56.132418 7f2dddd7-df91-454f-84a1-7696ecafc1f5 {"pid": "4644", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/150503717"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:56.236867 2024-09-11 09:04:56.236875 d9e226c0-fc26-4192-b741-270da38fed85 {"pid": "4645", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/150552343"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:56.310476 2024-09-11 09:04:56.31048 566ac2c6-b8e5-47ca-979a-f462ce945803 {"pid": "4646", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/150572492"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:56.37857 2024-09-11 09:04:56.378575 819be9dd-86ea-4b64-8b22-c9a0a6ee0430 {"pid": "4647", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/150592884"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:56.453784 2024-09-11 09:04:56.453788 e18f676c-6a87-4b94-9f24-66fb76718c6d {"pid": "4648", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/150599811"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102761710"} 1 +2024-09-11 09:04:56.572593 2024-09-11 09:04:56.572598 c441585b-75f9-43d5-a881-591743e7afe5 {"pid": "4650", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/150630085"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:56.642012 2024-09-11 09:04:56.642016 c65624e2-b777-4658-994c-6096e655c82d {"pid": "4651", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/150685793"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:56.720663 2024-09-11 09:04:56.720667 476d8743-644b-4ba4-86fc-2c9e5e665e3c {"pid": "4652", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/150700768"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102711715"} 1 +2024-09-11 09:01:40.124582 2024-09-11 09:04:56.792445 feec1112-2c3f-41df-8d69-f9da7bb3dbb8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/117143553"}, "pid": "1596", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/150724527"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101737341"} 2 +2024-09-11 09:04:56.85744 2024-09-11 09:04:56.857444 9c3e3c1a-63c6-438d-8953-b2264a998c3b {"pid": "4653", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/150813325"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:56.91417 2024-09-11 09:04:56.914176 40831c56-0761-4799-80b9-b9e79ac9ad41 {"pid": "4654", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/150840691"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:56.982353 2024-09-11 09:04:56.982356 52293340-4964-4696-bd65-0c69b6314a93 {"pid": "4655", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/151028702"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:50.087587 2024-09-11 09:04:57.050152 9b92f64a-3568-4d58-8cdb-02e3986d2abe {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/120539544X"}, "pid": "1764", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/15117430X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106386919"} 2 +2024-09-11 09:04:57.112693 2024-09-11 09:04:57.112695 093899d3-8d7c-4303-98fe-b7413fedd4c1 {"pid": "4656", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/151217742"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:57.170011 2024-09-11 09:04:57.170017 fde637e6-505f-4f56-ad57-511becd669a6 {"pid": "4657", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/151341885"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:57.228466 2024-09-11 09:04:57.22847 44f67d02-108d-4c38-bd5a-867c6565a317 {"pid": "4658", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/151481733"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:57.29495 2024-09-11 09:04:57.294954 c3fc56a0-4fdf-46d3-ae4a-7c4a9c626b01 {"pid": "4659", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/151508712"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:57.369715 2024-09-11 09:04:57.369719 e5eae51f-77dc-4c47-8f66-af47cd19e0f6 {"pid": "4660", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/151580715"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:57.428586 2024-09-11 09:04:57.42859 5799dd26-84ac-4035-a5a0-2298c62df3cb {"pid": "4661", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/151775192"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:57.486141 2024-09-11 09:04:57.486145 6fdf6b85-9821-490e-a40c-46f9959fbd9d {"pid": "4662", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/151813590"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:57.543429 2024-09-11 09:04:57.543434 84f9eb03-cedd-4299-b3ff-1060af699394 {"pid": "4663", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/151884951"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:57.601401 2024-09-11 09:04:57.601404 d2226d90-a681-445d-abcb-741400b7b433 {"pid": "4664", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/151889511"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:57.661062 2024-09-11 09:04:57.661066 dfee2778-d436-4369-95bf-b2ec4a051f9c {"pid": "4665", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/152016872"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101420766"} 1 +2024-09-11 09:04:57.720374 2024-09-11 09:04:57.720378 e30f6e46-3295-4613-9e00-8ed04ba8c4a4 {"pid": "4666", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/152049193"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:57.785933 2024-09-11 09:04:57.785936 d65ae881-9203-4fa6-ab1d-3dec22927976 {"pid": "4667", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/152071210"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:57.916421 2024-09-11 09:04:57.916424 743bea31-6cd3-4429-90f8-7005b3410fa3 {"pid": "4668", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/152355731"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:57.978549 2024-09-11 09:04:57.978552 f724b5f6-3393-4369-be3c-e2a6f3919503 {"pid": "4669", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/152491589"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:58.047512 2024-09-11 09:04:58.047517 052dbdfa-40ed-4dbb-8118-783c91aba8d1 {"pid": "4670", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/152513655"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:58.110211 2024-09-11 09:04:58.110216 d6856b02-ca4a-42d3-8890-4ac0ce929be9 {"pid": "4671", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/152519866"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:58.177624 2024-09-11 09:04:58.177628 ae75bcfa-b5c7-4901-abc2-cf052b367c6a {"pid": "4672", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/152563024"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:58.234528 2024-09-11 09:04:58.234531 ecd9dcdd-ecc2-4455-a95b-35e5901617d5 {"pid": "4673", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/152706038"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:58.295787 2024-09-11 09:04:58.29579 6a1d5126-4eed-41de-85a8-9cb10af58410 {"pid": "4674", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/152722270"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:58.351545 2024-09-11 09:04:58.351549 0c72c4bb-4b54-4de3-beac-be5279bc47c0 {"pid": "4675", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/15282300X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:58.41011 2024-09-11 09:04:58.410115 f7086852-252d-4400-b7c0-3f99e6de301a {"pid": "4676", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/152852093"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:58.467506 2024-09-11 09:04:58.467509 f5fe5f41-2513-47fd-b57e-38e358d171df {"pid": "4677", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/152901353"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:58.530537 2024-09-11 09:04:58.530541 144704e6-275b-4b3d-9e71-758236c56689 {"pid": "4678", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/152940898"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:58.609448 2024-09-11 09:04:58.609453 1888099a-cd84-4284-880a-228d969577eb {"pid": "4679", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/15295208X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:58.669233 2024-09-11 09:04:58.669239 2677a10c-57b9-489f-97e5-6240c25c37f3 {"pid": "4680", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/152972250"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:58.738848 2024-09-11 09:04:58.738851 0880160d-3cae-46bc-92a8-39cf2be6d416 {"pid": "4681", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/153081147"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:58.793401 2024-09-11 09:04:58.793403 8d9054e0-98c3-47dd-a613-a21e708c4ae8 {"pid": "4682", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/153136480"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:58.850538 2024-09-11 09:04:58.850541 d4370a2c-0e31-4c1b-b9f9-314574e7e86c {"pid": "4683", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/153410647"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:58.972036 2024-09-11 09:04:58.972039 5cb8e177-b5c0-43d0-b4a9-6b1ca8de3af8 {"pid": "4685", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/153516631"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:59.039199 2024-09-11 09:04:59.039206 7ea641b4-feda-43d0-ac0c-25b1d933e6ac {"pid": "4686", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/153533056"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:59.099193 2024-09-11 09:04:59.099197 e1b45df6-bf80-4616-becb-a3d543c0ed56 {"pid": "4687", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/153541342"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:59.166079 2024-09-11 09:04:59.166086 d052e815-5e8c-4c2d-b585-badfb0de1b3f {"pid": "4688", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/153546247"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:59.223176 2024-09-11 09:04:59.223179 ebc25f0a-76c0-405b-b5f9-20788e38c8a2 {"pid": "4689", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/153613556"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:59.284327 2024-09-11 09:04:59.284331 eadb0b4d-9910-4d88-972a-dbb0632a84ed {"pid": "4690", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/153776951"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104198453"} 1 +2024-09-11 09:04:59.345516 2024-09-11 09:04:59.34552 9e0d0a5f-ea07-4567-b725-2f2a8546274b {"pid": "4691", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/153973145"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:20.142937 2024-09-11 09:04:59.417415 e32ce822-26cd-4151-9929-f942a3f75aa2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/137308914"}, "pid": "2280", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/15401916X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110147061"} 2 +2024-09-11 09:04:59.484072 2024-09-11 09:04:59.484074 3905c372-2699-4798-812b-51dd1cb5d33e {"pid": "4692", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/154190551"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:59.545662 2024-09-11 09:04:59.545667 610207bf-a9da-429a-bcc3-5fe43e51c18d {"pid": "4693", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/154659622"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:59.605048 2024-09-11 09:04:59.605053 3752c094-9353-4560-a604-33256401d572 {"pid": "4694", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/154744395"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:59.666106 2024-09-11 09:04:59.66611 d76ce8b1-1be4-4878-bfa0-c58fecb9ef07 {"pid": "4695", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/154778532"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:59.726554 2024-09-11 09:04:59.726559 f31a7f3a-cc03-4c1f-ae0f-53f3c5d660fb {"pid": "4696", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/154820903"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:59.778531 2024-09-11 09:04:59.778535 fa8175b3-82c2-4f8b-b9e8-05825e371d71 {"pid": "4697", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/154833649"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:42.068479 2024-09-11 09:04:59.844043 b7fc6ba9-d7ae-4d24-ac48-86d72d9bafbd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1011449145"}, "pid": "615", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/154889415"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107950630"} 2 +2024-09-11 09:04:59.990457 2024-09-11 09:04:59.99046 9309013d-9e57-455d-8b7d-d4b5bb1318dd {"pid": "4698", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/155128965"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:00.050384 2024-09-11 09:05:00.050388 30aea541-9379-4787-8dda-67942c1917c4 {"pid": "4699", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/155289292"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:00.115974 2024-09-11 09:05:00.115977 56ad7f7f-51f0-4f74-924d-7c00abb3b6b0 {"pid": "4700", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/155309668"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100656063"} 1 +2024-09-11 09:05:00.173601 2024-09-11 09:05:00.173605 0576b7e7-1678-49e0-b55f-1dd89429e7f4 {"pid": "4701", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/155413163"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:00.233746 2024-09-11 09:05:00.23375 a2333914-f36d-455b-bf59-8a7d3fb0b5fa {"pid": "4702", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/155413414"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:00.294466 2024-09-11 09:05:00.294471 b189eb44-f0da-48b3-b7dd-d14db5bb7257 {"pid": "4703", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/155519107"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:00.354327 2024-09-11 09:05:00.35433 8c30d367-a445-4a9e-92e3-c68f61282d32 {"pid": "4704", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/155533797"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:00.41324 2024-09-11 09:05:00.413245 22948430-7f8f-4836-af52-f3f618fbda4e {"pid": "4705", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/155592122"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:00.48558 2024-09-11 09:05:00.485583 00efcb51-ad80-407d-82b8-29b30ca0b989 {"pid": "4706", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/155733370"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:00.546746 2024-09-11 09:05:00.54675 305280ac-9795-4d08-9207-a16028867707 {"pid": "4707", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/155746936"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100331018"} 1 +2024-09-11 09:05:00.607127 2024-09-11 09:05:00.607131 02c850ef-a90f-4ee8-9346-250c5d04493a {"pid": "4708", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/155760947"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:00.733377 2024-09-11 09:05:00.733381 294972f7-babc-494d-90e9-be898ff3bba9 {"pid": "4709", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/15589899X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:00.796898 2024-09-11 09:05:00.796902 336c6515-e9b0-4119-947b-26c72bec5f82 {"pid": "4710", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/155925261"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:00.854038 2024-09-11 09:05:00.85404 49fb7211-be81-4bdc-a283-33f97d7ff2bc {"pid": "4711", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/155933604"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:00.922972 2024-09-11 09:05:00.922976 0a46a3b9-22f6-4131-b6f8-c91fe3c1d922 {"pid": "4712", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/155942204"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:00.979949 2024-09-11 09:05:00.979954 317a0f61-6923-4ecf-94aa-552bdde4bd49 {"pid": "4713", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/156048701"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:01.044608 2024-09-11 09:05:01.044614 c012249e-f419-43d5-b2c0-0e80454477ca {"pid": "4714", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/156053241"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:01.106522 2024-09-11 09:05:01.106525 ed52844d-a3ff-4b38-a706-4c35293725b2 {"pid": "4715", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/156252813"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:01.184237 2024-09-11 09:05:01.18424 465e81fc-6053-4432-9011-0732510f5854 {"pid": "4716", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/156288435"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:01.328188 2024-09-11 09:05:01.328192 64f457ae-17a3-42fa-bf29-c5b23f287eb1 {"pid": "4717", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/156363690"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:01.387794 2024-09-11 09:05:01.387799 717cbdc9-c98e-4f74-82a1-56f4f4dfcc92 {"pid": "4718", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/156539063"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:01.442544 2024-09-11 09:05:01.442547 1478be81-6dee-4c66-939b-701fef1a0d5f {"pid": "4719", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/156563932"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:01.49563 2024-09-11 09:05:01.495634 a3290103-298b-4f76-b048-9e8a118d80c4 {"pid": "4720", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/156590948"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:01.552774 2024-09-11 09:05:01.552777 c85f0c9b-9d68-4cf1-8b08-06bcd807e458 {"pid": "4721", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/156838524"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:01.613636 2024-09-11 09:05:01.61364 8358613d-8f06-4e54-971e-891b4695151a {"pid": "4722", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/156838613"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:01.678434 2024-09-11 09:05:01.678439 a9999fa9-d4d9-4d70-bc23-e8d3b5b85b12 {"pid": "4723", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/156954761"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:01.744522 2024-09-11 09:05:01.744526 e33da73c-ccae-405a-abb5-65073a756cd5 {"pid": "4724", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/15704856X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:01.807792 2024-09-11 09:05:01.807797 f05efb54-e9d9-427c-877f-98e719cdaf55 {"pid": "4725", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/157222330"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:01.873964 2024-09-11 09:05:01.87397 0579b61d-823c-434c-a945-893a27d6d9da {"pid": "4726", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/157227170"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:01.937504 2024-09-11 09:05:01.937508 d8a43b18-4621-4df0-87e5-35e9e77fb020 {"pid": "4727", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/157315088"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:01.993045 2024-09-11 09:05:01.993049 69d6a442-1a9d-4761-9593-4f362e2a147a {"pid": "4728", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/157332047"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:02.057063 2024-09-11 09:05:02.057065 5df71fa2-5068-40b2-b6c9-c797de95bd06 {"pid": "4729", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/157333507"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:02.115885 2024-09-11 09:05:02.115889 0e105e61-a616-4f90-ae7f-01bbe3ec4b86 {"pid": "4730", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/157526860"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:02.174213 2024-09-11 09:05:02.174217 101e5d9d-3cd7-4383-aab8-ef0e497bc2ad {"pid": "4731", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/157650154"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:02.240088 2024-09-11 09:05:02.240092 1ff3edb9-b0e5-4256-af97-48f652f0fefc {"pid": "4732", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/157856283"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106237743"} 1 +2024-09-11 09:05:02.297513 2024-09-11 09:05:02.297518 809ddaca-5fdf-44b2-a4ea-6c62e3f7188a {"pid": "4733", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/157881997"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:02.359394 2024-09-11 09:05:02.359398 7deae252-9608-49ec-8432-7a73cb6e02f1 {"pid": "4734", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/157995860"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:02.416052 2024-09-11 09:05:02.416057 f9b1b311-27d6-4267-8b4c-c65723b03919 {"pid": "4735", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/158085647"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:02.4716 2024-09-11 09:05:02.471603 9a35027c-2835-46da-8948-d1aa7ee6cc1b {"pid": "4736", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/158118294"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:02.527437 2024-09-11 09:05:02.527441 19a9aa66-7a7f-4719-9d49-3bab3fd3af19 {"pid": "4737", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/158365186"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:02.673006 2024-09-11 09:05:02.67301 71598acc-8bba-4b21-9c6c-19b34086869a {"pid": "4739", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/158638247"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:02.753955 2024-09-11 09:05:02.753963 f47121dc-acd9-4aa5-ad41-1e6401341a36 {"pid": "4740", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/158762274"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:02.812944 2024-09-11 09:05:02.812948 06df87df-4a5b-4610-8ab2-33d32feea5dd {"pid": "4741", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/158778235"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:02.872642 2024-09-11 09:05:02.872645 138af864-8832-4526-8687-2768cbfed932 {"pid": "4742", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/158991583"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:02.930906 2024-09-11 09:05:02.93091 856b42f1-e768-4362-9a79-7ecec5e36893 {"pid": "4743", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/158996577"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:02.988301 2024-09-11 09:05:02.988306 a1ce8740-14ca-495a-be04-c16aa0198c43 {"pid": "4744", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/159184495"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:03.047058 2024-09-11 09:05:03.047062 45306ef1-ebca-4ed8-b867-09fc2fdc0d52 {"pid": "4745", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/159278201"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:03.10828 2024-09-11 09:05:03.108285 0bb209f2-0aa9-4601-9cba-b1e9d83dd7ee {"pid": "4746", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/159640989"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:03.174641 2024-09-11 09:05:03.174646 9e3fe5c2-ab67-4095-8893-ac8542d97890 {"pid": "4747", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/159658152"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:03.231476 2024-09-11 09:05:03.231481 3585fd78-8213-4298-8da5-588119f00ac4 {"pid": "4748", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/159687306"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:03.291552 2024-09-11 09:05:03.291556 46a3bc4d-3e6d-477e-a69f-41fa02deccde {"pid": "4749", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/159765315"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:03.347666 2024-09-11 09:05:03.34767 8f34e88d-3c12-4ac3-b604-86cf8b0eef3f {"pid": "4750", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/159775744"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:03.411699 2024-09-11 09:05:03.411703 71506285-e54a-4023-b961-a95a918660a4 {"pid": "4751", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/159852684"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:03.469833 2024-09-11 09:05:03.469837 f6bf3122-19b0-4304-8494-6743968b5f71 {"pid": "4752", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/160193974"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:03.529664 2024-09-11 09:05:03.529669 f53ec1a3-2cce-4a1d-ab5e-8cb5b729fdf4 {"pid": "4753", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/160196620"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:03.59048 2024-09-11 09:05:03.590485 b04d9805-146a-4337-91d3-55af41f4a4a8 {"pid": "4754", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/160342465"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:03.652407 2024-09-11 09:05:03.652415 1e5cd00f-1f9d-49d9-8afd-3433b3220be6 {"pid": "4755", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/160359619"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:03.715133 2024-09-11 09:05:03.715138 4e154664-02ab-419e-91bd-ab319cbfed2b {"pid": "4756", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/160424275"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:03.787845 2024-09-11 09:05:03.787847 7d617380-5d02-4cd1-a769-6f4a954fa386 {"pid": "4757", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/160613701"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103688900"} 1 +2024-09-11 09:05:03.85943 2024-09-11 09:05:03.859435 cc42d37f-75d3-40c0-987a-cfeb31dfbea3 {"pid": "4758", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/160635543"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:03.93339 2024-09-11 09:05:03.933395 7f32470f-69b7-4e9b-b892-6ddaa4fa3b69 {"pid": "4759", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/160773318"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:03.990488 2024-09-11 09:05:03.990491 360f88c3-3be2-4f03-8ba9-dc785d64ccaa {"pid": "4760", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/160837065"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:04.050978 2024-09-11 09:05:04.050984 feca33da-ef68-4e9b-a86e-7fc9e0518065 {"pid": "4761", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/16113307X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:04.114915 2024-09-11 09:05:04.114918 719103f0-4dc1-4b72-abe1-cd6ac684203f {"pid": "4762", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/161148689"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:04.174484 2024-09-11 09:05:04.174488 afa5a429-5916-40b3-847f-913fe74a0cf0 {"pid": "4763", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/161301142"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:04.239195 2024-09-11 09:05:04.239198 0a8ee27b-57f5-4080-a695-641e14da4476 {"pid": "4764", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/161367070"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101025602"} 1 +2024-09-11 09:05:04.329145 2024-09-11 09:05:04.329149 9b339cd1-6812-4cb9-afba-3cf2c38724b1 {"pid": "4765", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/16165407X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:04.383134 2024-09-11 09:05:04.383138 eb4d2d3f-7a6c-41fd-a040-24e1842b39f2 {"pid": "4766", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/161696325"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:04.43463 2024-09-11 09:05:04.434634 6f96b1e2-c0c1-4fdd-90bf-e2dfac02fcdb {"pid": "4767", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/161996302"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:04.492082 2024-09-11 09:05:04.492086 6f354a7f-974f-430a-aa60-3cad65050652 {"pid": "4768", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/162046065"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:04.547771 2024-09-11 09:05:04.547775 167dc9eb-386b-42e6-8667-d588040e343a {"pid": "4769", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/162138997"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:04.683531 2024-09-11 09:05:04.683535 8a74b06e-5595-4eef-adff-d2a891c7d0b5 {"pid": "4770", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/16216193X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110239285"} 1 +2024-09-11 09:05:04.743015 2024-09-11 09:05:04.743019 974ab932-e53d-43b8-8f9b-12ec91543ab7 {"pid": "4771", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/162196407"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:04.798911 2024-09-11 09:05:04.798914 b70fd64d-e272-4c1e-bb9f-6fa4c7982699 {"pid": "4772", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/162320264"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:04.855103 2024-09-11 09:05:04.855108 84ce02c8-ce9c-4cae-b3b5-ecc58ba9b481 {"pid": "4773", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/162452659"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:22.638846 2024-09-11 09:05:04.916306 f6889c12-161d-474d-89a3-2f881f1e670a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139422102"}, "pid": "2311", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/162460163"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101164158"} 2 +2024-09-11 09:05:04.981486 2024-09-11 09:05:04.98149 ef8fd7a5-b1e8-4230-a1cd-e8e2141a31c8 {"pid": "4774", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/163232857"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:05.053248 2024-09-11 09:05:05.053251 aba28a4d-24f2-45b1-9841-650c5fb970a7 {"pid": "4775", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/163250030"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:05.110922 2024-09-11 09:05:05.110926 55d8eadf-eba0-4115-aa4e-acc9cbcf8435 {"pid": "4776", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/163880433"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:05.167969 2024-09-11 09:05:05.167979 22fcc032-b399-4458-af7d-fefdcb4cfd07 {"pid": "4777", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/164105301"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:05.22588 2024-09-11 09:05:05.225882 e262ed6e-2cd4-46e1-a35b-c42542ff90b0 {"pid": "4778", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/164529640"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103685237"} 1 +2024-09-11 09:05:05.282712 2024-09-11 09:05:05.282716 f4f5f1c5-209c-49fd-83a0-f596a0878b29 {"pid": "4779", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/164530363"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:05.337274 2024-09-11 09:05:05.337279 0c1fc0a6-1411-4d9f-97ea-ca41d43c2b09 {"pid": "4780", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/164539972"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:05.392613 2024-09-11 09:05:05.392619 e53380c6-84fe-4f48-94b5-059152757531 {"pid": "4781", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/164600620"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:05.449419 2024-09-11 09:05:05.449424 d48c72b5-2783-4b03-a128-e90e1e57fbdd {"pid": "4782", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/164604820"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:05.508042 2024-09-11 09:05:05.508046 b5c948e0-8ce1-448a-a7bd-470a75b3360e {"pid": "4783", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/164708782"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:05.567591 2024-09-11 09:05:05.567595 3a9330a4-e756-48cd-a18f-2141d3323e2c {"pid": "4784", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/16480224X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:05.633767 2024-09-11 09:05:05.633772 88cc3249-c7ef-4908-8da6-b313c4250cb3 {"pid": "4785", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/16481079X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:05.70048 2024-09-11 09:05:05.700484 e63501ab-bd0c-4f1c-b59f-20f92e3a3b5a {"pid": "4786", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/164855580"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:05.769314 2024-09-11 09:05:05.769321 95253d9d-3602-4bbd-93db-c1528b8a0a3f {"pid": "4787", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/164948368"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:05.832217 2024-09-11 09:05:05.832221 9ca9f4e5-048b-4f45-9709-215d358fc2b1 {"pid": "4788", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/165030968"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:05.8981 2024-09-11 09:05:05.898109 1baf8237-629c-4cd4-948c-3b5c86676d92 {"pid": "4789", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/165099054"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:05.964196 2024-09-11 09:05:05.964201 66341f56-b065-4562-a5f0-1e87354bb6d3 {"pid": "4790", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/165139455"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:06.028828 2024-09-11 09:05:06.028833 f2714d2c-f751-4644-8dd5-3eed5333509b {"pid": "4791", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/165153687"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:06.102022 2024-09-11 09:05:06.102025 0b64f60a-3d86-409d-8033-f1ad9adcffd8 {"pid": "4792", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/16530569X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:06.163048 2024-09-11 09:05:06.16305 463c711a-4d0b-4422-a100-295576d88136 {"pid": "4793", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/165425229"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:06.223762 2024-09-11 09:05:06.223766 8b3044a1-6dbb-4666-b01a-75562ad448e7 {"pid": "4794", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/165647876"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:06.352768 2024-09-11 09:05:06.352773 cb87c7e0-71b0-4993-ad02-378280273364 {"pid": "4795", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/165825324"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:06.421024 2024-09-11 09:05:06.421027 3861998f-fdf2-4a83-be1c-496cfd459d0b {"pid": "4796", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/165842822"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:06.50309 2024-09-11 09:05:06.503096 6379119c-d870-4723-a9d6-32eafd290d74 {"pid": "4797", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/165846771"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:06.579911 2024-09-11 09:05:06.579916 5fab0ad6-5341-4ea8-b75d-09b685131c6c {"pid": "4798", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/166452912"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:06.77479 2024-09-11 09:05:06.774794 d79cfa03-ebfe-4418-86ce-b61d9c0ea186 {"pid": "4799", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/16647729X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:06.839018 2024-09-11 09:05:06.839024 b0aa6722-ba9d-4f13-ab4a-22784d53c812 {"pid": "4800", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/166533971"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:06.907389 2024-09-11 09:05:06.907394 91a72a18-54f8-401a-8db8-0034de29c2d3 {"pid": "4801", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/166601551"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:06.96408 2024-09-11 09:05:06.964084 6f73096a-0ca7-48f5-bbb7-ec95c4ec66fc {"pid": "4802", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/166827886"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:33.880432 2024-09-11 09:06:33.880437 547f258b-28a0-4aab-b455-581f04dbf4ab {"pid": "6171", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003299867"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:07.095249 2024-09-11 09:05:07.095253 58f99496-fd57-423d-a185-9fcd1bdb9ef3 {"pid": "4803", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/167149369"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:07.159373 2024-09-11 09:05:07.159379 e58d8995-8689-4004-85da-c8f03568ce99 {"pid": "4804", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/167228862"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "deleted": "2023-07-08T10:23:44.366911+00:00", "viaf_pid": "10030090"} 1 +2024-09-11 09:05:07.220414 2024-09-11 09:05:07.220417 ad387e95-45b6-41b3-a58f-e8963f7bf89f {"pid": "4805", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/16734613X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:07.355451 2024-09-11 09:05:07.355455 a36c900d-976f-4e1d-9c89-a0a58a344b3c {"pid": "4806", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/16746499X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:07.481146 2024-09-11 09:05:07.48115 99314061-db39-41a7-a1a5-d30dd53cd982 {"pid": "4807", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/167597213"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:07.617019 2024-09-11 09:05:07.617023 36a67be3-b4ad-4abb-acb6-dd9e360d1933 {"pid": "4808", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/167900587"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:07.698339 2024-09-11 09:05:07.698342 bf864e10-a83b-4f6b-b852-235a606d4211 {"pid": "4809", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/167901842"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106621764"} 1 +2024-09-11 09:05:07.762757 2024-09-11 09:05:07.762762 e22a1f99-cd1f-42a2-8725-699e3012f7a7 {"pid": "4810", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/167994689"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:07.851556 2024-09-11 09:05:07.851562 ddc41870-d861-48aa-98f6-68f7c0dd6c73 {"pid": "4811", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/168060973"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:07.919845 2024-09-11 09:05:07.91985 bd3c72f0-8a6e-4d95-a169-54c3ee2b8149 {"pid": "4812", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/168391996"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:07.981214 2024-09-11 09:05:07.981218 f1fbd6ad-fffb-421f-b73d-7600a8afa425 {"pid": "4813", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/168510332"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:08.043673 2024-09-11 09:05:08.043677 cbe0b508-330a-46f7-99c0-09bc89d9d6a7 {"pid": "4814", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/168633248"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10083533"} 1 +2024-09-11 09:05:08.187325 2024-09-11 09:05:08.18733 114a27e6-3bb6-4b27-b7d1-9495aa2615b4 {"pid": "4815", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/168676761"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:08.246286 2024-09-11 09:05:08.246291 c62a5b17-57ac-421f-a994-6c2bf838b0d2 {"pid": "4816", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/168926962"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:08.311792 2024-09-11 09:05:08.311797 c42116b6-fc02-4f6e-b6d3-db32140a3248 {"pid": "4817", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/168968614"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106338921"} 1 +2024-09-11 09:05:08.369016 2024-09-11 09:05:08.369018 8880da1a-e5ce-46d8-bb48-dace47fc4097 {"pid": "4818", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/169159914"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:08.427183 2024-09-11 09:05:08.427187 60a149b2-7ecc-4f15-9ed0-1c1ae77e192c {"pid": "4819", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/169352501"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:08.489211 2024-09-11 09:05:08.489215 79a380da-eeb3-4839-91ef-c2469b2ecfe1 {"pid": "4820", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/169383695"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:08.562314 2024-09-11 09:05:08.562317 5015eeac-d540-426d-899c-862bdbe66ad3 {"pid": "4821", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/16961834X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100119582"} 1 +2024-09-11 09:02:30.066622 2024-09-11 09:05:08.641146 f463df74-22bb-4520-ba8e-28d61ef5e2c1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/141184531"}, "pid": "2439", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/169818098"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103455755"} 2 +2024-09-11 09:06:40.392137 2024-09-11 09:06:40.392141 d67f68d4-44c1-4d24-a7da-2dea6f183a60 {"pid": "6245", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003543183"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:08.713482 2024-09-11 09:05:08.713487 de44d5bf-408a-4f39-b5d1-eb94583ba23d {"pid": "4822", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/169852253"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:08.782209 2024-09-11 09:05:08.782213 691de7de-3793-40ef-b340-9ee9a3569f37 {"pid": "4823", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/169905187"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:08.847881 2024-09-11 09:05:08.847885 f17223dc-c251-4355-9501-f6c4657f157c {"pid": "4824", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/17000404X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:08.918767 2024-09-11 09:05:08.91877 6c8cf5fd-09ed-42ac-99d4-f5a181b39baa {"pid": "4825", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/170042650"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:09.040122 2024-09-11 09:05:09.040127 5a6923e3-b84c-48f3-a86d-5017d1348d9f {"pid": "4826", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/170276708"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:09.129155 2024-09-11 09:05:09.129159 f41fed5e-ec05-4ac9-aaa6-5be8673346f7 {"pid": "4827", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/170444368"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:09.269501 2024-09-11 09:05:09.269508 4c22f944-d3a5-4ba7-bf7f-eba4683dce0a {"pid": "4828", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/170479862"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:09.334959 2024-09-11 09:05:09.334963 2015005d-7d3e-4170-8929-15d83ec0a5d6 {"pid": "4829", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/170696413"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:09.393412 2024-09-11 09:05:09.393417 9fc0e15d-96fa-44e6-ba73-a2a90f1234a8 {"pid": "4830", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/170792188"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:09.464157 2024-09-11 09:05:09.464159 ba104071-04e1-4d1d-917e-337f833731a1 {"pid": "4831", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/170798828"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:09.523085 2024-09-11 09:05:09.523089 3088b627-3e78-48cc-a44d-397a0a26858f {"pid": "4832", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/170804291"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:09.580026 2024-09-11 09:05:09.58003 540f6b24-4766-484f-84a8-77ce0eca57e0 {"pid": "4833", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/171073444"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:09.632295 2024-09-11 09:05:09.632297 e5af31a1-2668-487e-99e7-5bd95b250309 {"pid": "4834", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/171330943"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:09.688057 2024-09-11 09:05:09.688061 3798f889-748a-482b-b642-13889379d716 {"pid": "4835", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/17141599X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:09.741907 2024-09-11 09:05:09.741912 29402ead-9bce-4cd2-a73a-cf25e98664a4 {"pid": "4836", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/171790944"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:09.79467 2024-09-11 09:05:09.794673 a60a824c-c734-4fda-a91a-27caf958026b {"pid": "4837", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/171811534"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:09.850513 2024-09-11 09:05:09.850519 3c7f64a6-d1cd-4900-b5f7-cb9cb1a6c0bd {"pid": "4838", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/172309239"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:09.908336 2024-09-11 09:05:09.908339 43ba521b-6e0f-4c11-b3d8-f332ad4e51ec {"pid": "4839", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/172595347"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:09.962567 2024-09-11 09:05:09.962572 4f19c50e-fefa-444d-9344-42feaab8c557 {"pid": "4840", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/172735319"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:10.014827 2024-09-11 09:05:10.014831 863615ce-5b77-4e19-b077-190cd7a51ce0 {"pid": "4841", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/174120745"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:10.123898 2024-09-11 09:05:10.123901 b71034e5-0ccb-4782-88ee-9f6f119a25d1 {"pid": "4843", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/174180039"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:10.182403 2024-09-11 09:05:10.182408 0e709cbd-1fab-43eb-a08e-ac745b04001f {"pid": "4844", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/174469470"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104037028"} 1 +2024-09-11 09:05:10.238035 2024-09-11 09:05:10.238039 49620d35-c556-45ac-8524-b88a1a02f544 {"pid": "4845", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/174571623"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108244066"} 1 +2024-09-11 09:05:10.363232 2024-09-11 09:05:10.363236 6a7deb3d-4251-41c0-9256-cafdf1ace0e3 {"pid": "4847", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/174757131"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:10.41719 2024-09-11 09:05:10.417195 1815357c-8ea5-46bb-838e-9140f9b26925 {"pid": "4848", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/175070180"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:10.47432 2024-09-11 09:05:10.474324 a1cfb0fb-f345-496d-a8f6-9e28c2e25ee5 {"pid": "4849", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/175084661"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:10.528087 2024-09-11 09:05:10.528091 bc4482d8-94c7-4ef2-9df0-0fb080ec4406 {"pid": "4850", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/175177880"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:10.587817 2024-09-11 09:05:10.587823 96bc5807-090f-45ae-8e50-a7faa1e49ff7 {"pid": "4851", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/175622914"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103893786"} 1 +2024-09-11 09:05:10.644891 2024-09-11 09:05:10.644896 15ab9703-a54c-4292-ba7e-3896070eadc8 {"pid": "4852", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/175664528"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:10.071533 2024-09-11 09:07:52.92959 c77bfa5c-ccd8-489b-8d1a-2b5cc9cd82ec {"pid": "4842", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025983847"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/174162790"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101570102"} 2 +2024-09-11 09:05:10.703836 2024-09-11 09:05:10.70384 38a541b9-3a13-404d-a6c2-b9317a545d36 {"pid": "4853", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/175917434"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:10.816866 2024-09-11 09:05:10.816871 c7def850-8b7d-43f7-b799-55a719eceb30 {"pid": "4855", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/176586350"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:10.87133 2024-09-11 09:05:10.871333 b5d6a211-d750-455e-8347-b4a761df7506 {"pid": "4856", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/176752781"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:10.931559 2024-09-11 09:05:10.931562 e8931166-3ccf-4d3c-a729-f90cb7d9c839 {"pid": "4857", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/176776613"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103936670"} 1 +2024-09-11 09:05:10.99249 2024-09-11 09:05:10.992493 5805c7ee-69ab-4a9f-bbc0-096e05cbb8d4 {"pid": "4858", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/176834540"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:11.169284 2024-09-11 09:05:11.169289 63b87ccc-a237-4509-9cdf-e6978c7dd2d2 {"pid": "4859", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/17718101X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:11.225076 2024-09-11 09:05:11.22508 1bc996d4-ebf2-40ea-a4f0-d17aef6a6f6f {"pid": "4860", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/177181516"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:11.276469 2024-09-11 09:05:11.276472 32aad3d4-5062-4c88-905b-3c03de188e39 {"pid": "4861", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/17719166X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:11.328926 2024-09-11 09:05:11.32893 1f4fa647-4ae1-4e56-969f-c3c5dff64346 {"pid": "4862", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/177498056"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:11.383879 2024-09-11 09:05:11.383885 70c6e1de-fdf4-4367-91fa-78d3044273da {"pid": "4863", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/177564229"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:11.442952 2024-09-11 09:05:11.442956 59bf6250-6570-47d1-acd7-f2dc7c22dac8 {"pid": "4864", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/177597933"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:11.498453 2024-09-11 09:05:11.498456 b1a27560-01cf-4529-861a-6001d4ca3b41 {"pid": "4865", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/177966793"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:11.568907 2024-09-11 09:05:11.568916 fa225b56-e06b-4545-a700-6b2d8802d48f {"pid": "4866", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/178055328"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101520602"} 1 +2024-09-11 09:05:11.628578 2024-09-11 09:05:11.628583 d2265aed-b2cb-42f9-a9a8-5cfe3d72d52a {"pid": "4867", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/178123889"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:11.683894 2024-09-11 09:05:11.683899 b4218269-9cb4-4e25-a253-30e64084b508 {"pid": "4868", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/178129887"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:11.743885 2024-09-11 09:05:11.743888 298ab985-171a-45e4-ab9c-fc178e6596c6 {"pid": "4869", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/178131059"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11158041"} 1 +2024-09-11 09:05:11.796298 2024-09-11 09:05:11.796302 6a1f3a11-22ef-4a8f-b813-e316f9b971df {"pid": "4870", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/178302430"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:11.852278 2024-09-11 09:05:11.852282 66e090f3-c7ea-402c-bbe8-0c164a8974f5 {"pid": "4871", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/178403431"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:11.907939 2024-09-11 09:05:11.907943 9e48cd13-2a02-41e3-b026-f50b10626e05 {"pid": "4872", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/178642932"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104933814"} 1 +2024-09-11 09:05:11.959063 2024-09-11 09:05:11.959067 367863d2-f786-4a1e-96b9-c1f79d7c8adf {"pid": "4873", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/178656275"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:12.077075 2024-09-11 09:05:12.077078 3c1ffd4f-484b-4989-8c79-e36e9d581950 {"pid": "4874", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/178887463"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:12.129928 2024-09-11 09:05:12.129932 ae6d0b75-77d3-4317-bab3-16b587ca9729 {"pid": "4875", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/178950823"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:12.246963 2024-09-11 09:05:12.246967 6f2bd20b-0f5c-4c45-9505-56b65cd8b820 {"pid": "4877", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/179410059"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:12.305349 2024-09-11 09:05:12.305352 71bcfd8b-4ce3-43ff-bb86-86b4d9dcc584 {"pid": "4878", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/179487183"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:12.359574 2024-09-11 09:05:12.359578 a2d75728-85a4-4e21-9742-3e060821940e {"pid": "4879", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/179957805"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:12.417451 2024-09-11 09:05:12.417456 03601ce9-f8dd-4e0a-aea9-722878f6e9f3 {"pid": "4880", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/180123580"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:12.477351 2024-09-11 09:05:12.477354 522725b1-aeb4-4201-a356-e0672c8161c5 {"pid": "4881", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/180177494"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:12.538986 2024-09-11 09:05:12.538991 af900f74-d759-4162-856a-8bdf94788963 {"pid": "4882", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/180568892"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:12.592536 2024-09-11 09:05:12.59254 4c59d9bf-b3a4-4d8c-8a86-b5e1e1825bd7 {"pid": "4883", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/180999699"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:10.76039 2024-09-11 09:07:28.212851 a4c2a60e-0510-473f-8d34-5a3690fbb600 {"pid": "4854", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018623512"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/17637874X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110155284871787062266"} 2 +2024-09-11 09:05:12.794434 2024-09-11 09:05:12.794438 0a353097-794e-4a22-838a-f0dc43b7e2be {"pid": "4884", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/181132931"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104919234"} 1 +2024-09-11 09:05:12.849486 2024-09-11 09:05:12.849491 824b06d4-8015-4ccb-8bdb-e9b2a9f60f83 {"pid": "4885", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/181254506"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:12.90407 2024-09-11 09:05:12.904076 8b51ec22-7ccf-449a-83e6-14904c948644 {"pid": "4886", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/181256037"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:12.965013 2024-09-11 09:05:12.965016 03217097-79be-4f41-a139-3a90bdd6ebea {"pid": "4887", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/181345404"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:13.154684 2024-09-11 09:05:13.154689 8226caba-c4d0-44a7-be80-4568351cdab5 {"pid": "4889", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/181732149"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:13.212984 2024-09-11 09:05:13.212987 c51a8c54-f773-46a2-bf1d-bdd7e797c3d3 {"pid": "4890", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/181863111"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:13.267192 2024-09-11 09:05:13.267195 97926773-5ae0-488f-923e-e46247985296 {"pid": "4891", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/182214184"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:13.32433 2024-09-11 09:05:13.324334 6686c238-242d-47f3-b17d-77171887e31e {"pid": "4892", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/182358534"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:13.374958 2024-09-11 09:05:13.374962 3435a107-b419-487a-8b9b-85dc9ebb969c {"pid": "4893", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/182624250"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:13.4331 2024-09-11 09:05:13.433103 b0c93860-d9cb-4611-9919-ec675540c632 {"pid": "4894", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/182625575"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:13.484808 2024-09-11 09:05:13.484812 c4c45004-2226-451e-9bfb-7cc530fce167 {"pid": "4895", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/182629589"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:13.536412 2024-09-11 09:05:13.536416 60f08932-0e1b-4ebc-8102-96cb264582dc {"pid": "4896", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/182693198"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:13.592544 2024-09-11 09:05:13.59255 f864c8e2-580f-4277-bc1a-dfc29d5c6fd3 {"pid": "4897", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/182842819"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105411731"} 1 +2024-09-11 09:05:13.642734 2024-09-11 09:05:13.642738 9184404c-c80d-4feb-ba18-8c72873a4f86 {"pid": "4898", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/183243641"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:13.707538 2024-09-11 09:05:13.707542 b1c07668-af9d-445c-ab63-76bbed27f5cd {"pid": "4899", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/183245504"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:13.761778 2024-09-11 09:05:13.761782 67c26156-7e23-481b-80c1-e96cda9ee203 {"pid": "4900", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/183295765"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:13.814855 2024-09-11 09:05:13.81486 4a24a600-19f8-4b51-8543-45703d94b691 {"pid": "4901", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/183379861"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:13.865887 2024-09-11 09:05:13.865891 cc7a92f0-c048-4712-b6bb-348200c39809 {"pid": "4902", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/183426967"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:13.920046 2024-09-11 09:05:13.92005 f21644af-0a01-420f-b93f-cff86a189688 {"pid": "4903", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/183511956"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:14.032461 2024-09-11 09:05:14.032464 e727de4c-405f-49ea-843c-25390f54e8c9 {"pid": "4904", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/183723341"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:14.088101 2024-09-11 09:05:14.088104 1616303f-03c7-4280-a978-6686b049a8e4 {"pid": "4905", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/183871065"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:14.140315 2024-09-11 09:05:14.140319 93efc443-c599-499a-ab89-8dc45c5f17c6 {"pid": "4906", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/18397574X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:14.196213 2024-09-11 09:05:14.196216 73416692-22f7-44de-a4d3-28326c2d5fb7 {"pid": "4907", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/184093546"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:14.253729 2024-09-11 09:05:14.253733 35afbfac-a4cb-4ebc-a27d-10d2856c6a22 {"pid": "4908", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/18439631X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:14.308307 2024-09-11 09:05:14.308311 4f91939a-bbc6-4233-86c1-c8381f7e07d5 {"pid": "4909", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/184529891"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:14.374931 2024-09-11 09:05:14.374935 4c58fed2-1808-4eab-a159-40de5916d904 {"pid": "4910", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/184614686"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:14.42805 2024-09-11 09:05:14.428053 16e00378-04e5-4df8-9026-4f5295bacb51 {"pid": "4911", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/184909961"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:14.480708 2024-09-11 09:05:14.480711 60d50b5b-354f-4e91-b2c7-e618e7af9f90 {"pid": "4912", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/185067050"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:14.595092 2024-09-11 09:05:14.595095 d9499f08-4fee-459e-918c-f4f923acd277 {"pid": "4914", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/185152023"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:14.542762 2024-09-11 09:07:43.29198 a49557e8-5b46-4d3b-9f4a-c7b3427a6863 {"pid": "4913", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024043552"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/185108385"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100343998"} 2 +2024-09-11 09:05:14.649818 2024-09-11 09:05:14.649823 ba331c05-2c96-4425-94ad-5403f9849ffc {"pid": "4915", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/185165249"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:14.710513 2024-09-11 09:05:14.710517 b21ed5ca-a51d-4af3-af13-720f2e2e7947 {"pid": "4916", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/185264352"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101200139"} 1 +2024-09-11 09:05:14.764011 2024-09-11 09:05:14.764016 602bffe5-799c-449e-9aee-eaa9847432f8 {"pid": "4917", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/18526557X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:14.893583 2024-09-11 09:05:14.893588 a6b767e8-1da1-4d41-8af4-b2654a3b2e7a {"pid": "4918", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/185446167"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:14.988272 2024-09-11 09:05:14.988276 f0710184-a0bb-426c-b1b4-19171635080c {"pid": "4919", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/185446221"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:15.045914 2024-09-11 09:05:15.045918 8d2486b4-cd49-4f76-8f56-84453748ce61 {"pid": "4920", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/185512461"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:15.104695 2024-09-11 09:05:15.104699 2eee6c1d-5b26-4ef1-838f-844feccfb9ec {"pid": "4921", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/185627935"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:15.158958 2024-09-11 09:05:15.158961 a82e0250-2b98-4d33-b3f0-07b93605cd43 {"pid": "4922", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/185740936"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:15.212138 2024-09-11 09:05:15.212142 1d0ff702-0406-429d-9712-c64cf5efc224 {"pid": "4923", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/185904300"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:15.265446 2024-09-11 09:05:15.265451 2b1a0290-86c4-45dd-b9de-32065311f11a {"pid": "4924", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/186075480"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:15.322108 2024-09-11 09:05:15.322112 ad57e351-e7ba-4e06-9b24-7f4cafb8cb41 {"pid": "4925", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/186152396"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:15.383753 2024-09-11 09:05:15.383758 50cd8bc6-8753-401f-b2ab-1df45ec484ed {"pid": "4926", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/186272758"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:15.442447 2024-09-11 09:05:15.44245 ea2afa26-18b0-40bf-9669-80f30e1dcf67 {"pid": "4927", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/186354614"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:15.495189 2024-09-11 09:05:15.495193 a505782c-1de7-48db-b140-a0fd739da0bb {"pid": "4928", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/18642597X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:15.551314 2024-09-11 09:05:15.551319 99be653a-0040-455f-8c64-854a1bad837a {"pid": "4929", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/186429495"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:15.605666 2024-09-11 09:05:15.605669 f4680281-3435-46f2-bfc0-37f7584f78ec {"pid": "4930", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/187118914"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:15.656508 2024-09-11 09:05:15.656511 5ad144a6-98a3-42ce-880f-a8e559632376 {"pid": "4931", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/187432627"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:15.709911 2024-09-11 09:05:15.709914 aecab5bf-ece2-4ec9-be85-dc63f916f453 {"pid": "4932", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/187440085"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:15.768205 2024-09-11 09:05:15.768214 56425cb9-5ed8-41ea-842e-177e7dd0a20e {"pid": "4933", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/187474192"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110154739914152992060"} 1 +2024-09-11 09:05:15.821773 2024-09-11 09:05:15.821776 961e9dfb-f4e7-4b92-a00d-761f895eadea {"pid": "4934", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/187512272"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:15.87494 2024-09-11 09:05:15.874944 e2c06940-85db-4583-9483-05f67f69c6e0 {"pid": "4935", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/187515441"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:15.927869 2024-09-11 09:05:15.927873 2a83a379-ebd3-46f5-b2cf-7857cf08cbf9 {"pid": "4936", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/187519374"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:16.039278 2024-09-11 09:05:16.039281 b9718888-e42e-47d6-b86f-b9871f0c70f8 {"pid": "4938", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/188048383"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:16.104352 2024-09-11 09:05:16.104356 3e844a36-2bb8-4053-a6d7-55a464dc82eb {"pid": "4939", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/188624295"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:16.177305 2024-09-11 09:05:16.177309 b3458ad4-d34b-4477-8a54-17fb222bd3ed {"pid": "4940", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/188652647"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10001407"} 1 +2024-09-11 09:05:16.250487 2024-09-11 09:05:16.250492 11cde5f3-2bad-4536-94ce-65f2faa4aecb {"pid": "4941", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/188721665"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:16.304346 2024-09-11 09:05:16.304351 19745914-1da5-48b3-bd89-d9c3531a11d8 {"pid": "4942", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/188848614"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:27.374399 2024-09-11 09:05:16.368838 7c1810b8-1e83-493b-9d28-f65214aa14fa {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1147141754"}, "pid": "1385", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/18897394X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103500646"} 2 +2024-09-11 09:05:16.425486 2024-09-11 09:05:16.42549 08010e7a-8384-479d-8197-a81eeebcb7c0 {"pid": "4943", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/189006161"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:16.4764 2024-09-11 09:05:16.476404 c939c01b-8a07-4776-bb74-295489c450cd {"pid": "4944", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/189240113"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:16.53089 2024-09-11 09:05:16.530893 c88ba784-c137-46d1-bb80-8e2a82a07285 {"pid": "4945", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/189252138"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:16.58784 2024-09-11 09:05:16.587844 a61a5e51-0313-4bc1-b93e-2abb5a0c8085 {"pid": "4946", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/189322454"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:16.648088 2024-09-11 09:05:16.648091 21c3bb3f-551b-4c47-a0e5-7c214d845c85 {"pid": "4947", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/189510145"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:37.57013 2024-09-11 09:05:16.715014 90f70662-f4b1-4f1a-abe4-c46ec8d40cc1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1164996517"}, "pid": "1552", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/189789581"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110493599"} 2 +2024-09-11 09:05:16.77058 2024-09-11 09:05:16.770586 d29ed2f5-0a73-4c62-92ee-294a83b4889b {"pid": "4948", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/189897678"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:16.823614 2024-09-11 09:05:16.823617 ccb9fa26-ba27-4c78-8450-74526953996b {"pid": "4949", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/189921080"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:16.943433 2024-09-11 09:05:16.943437 f841f0e7-5f89-4c0b-aae2-f4f5c71d3834 {"pid": "4951", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/190056002"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:16.997219 2024-09-11 09:05:16.997222 aac7bc75-da61-4612-b68a-f980b9a8f110 {"pid": "4952", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/190064323"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:17.110958 2024-09-11 09:05:17.11096 b953ea27-566c-4abf-927c-d9a568f97506 {"pid": "4954", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/190133139"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:17.165811 2024-09-11 09:05:17.165814 2aa5256e-0a10-4499-aa65-ccae0cd69b67 {"pid": "4955", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/190148667"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:17.229715 2024-09-11 09:05:17.22972 ab8f0028-a14c-4478-a053-b91c84c23197 {"pid": "4956", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/19024951X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:17.297193 2024-09-11 09:05:17.297195 ead7675c-ad37-4ab4-ab13-2113e3a52140 {"pid": "4957", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/190365420"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:17.353803 2024-09-11 09:05:17.353808 b6948688-bbfa-4689-b1e4-1e970d88bb90 {"pid": "4958", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/190401370"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112145243839574441124"} 1 +2024-09-11 09:05:17.404431 2024-09-11 09:05:17.404435 fa4e56ea-eb8c-49ea-b0eb-04ae2d500764 {"pid": "4959", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/190408413"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:17.457299 2024-09-11 09:05:17.457304 ecc03b2e-cc28-41c3-a864-dcb16481c65e {"pid": "4960", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/190629525"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:17.512596 2024-09-11 09:05:17.512599 36f62781-8bd0-4292-af21-3b7d94bed773 {"pid": "4961", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/190679204"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:17.565529 2024-09-11 09:05:17.565533 7ed39142-378b-42db-a036-6c4d13e85881 {"pid": "4962", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/190701285"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:17.61947 2024-09-11 09:05:17.619476 320a2d36-1bdc-4592-ad5a-0d162cc390f7 {"pid": "4963", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/190708085"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:17.675186 2024-09-11 09:05:17.675189 a6819aca-b5c3-4826-aa5d-8c7fdda01aa5 {"pid": "4964", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/190712120"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:17.735807 2024-09-11 09:05:17.73581 7a8bd400-99e1-4f3b-af6f-80caf756d3f0 {"pid": "4965", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/190913142"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:17.788039 2024-09-11 09:05:17.788044 737c924e-9fb5-4203-bef6-d0ba852058dc {"pid": "4966", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/19105254X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:17.840353 2024-09-11 09:05:17.840357 5f3a11e5-2760-442e-80d7-164dce50349f {"pid": "4967", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/191057142"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:17.957705 2024-09-11 09:05:17.957709 fd2b48f4-91f1-4068-a50c-a3460a8b5bfe {"pid": "4969", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/191305928"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:18.01099 2024-09-11 09:05:18.010995 e623a022-62c8-4822-8a45-d5991714254d {"pid": "4970", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/191591335"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:18.066012 2024-09-11 09:05:18.066015 28eee237-d91e-44e2-b00e-97d3d1d7ee51 {"pid": "4971", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/191603449"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:18.124493 2024-09-11 09:05:18.124496 9966d57a-bb77-4355-bc0e-625012c3071d {"pid": "4972", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/191644315"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:18.178171 2024-09-11 09:05:18.178174 09a8ada1-2fee-4766-b2d3-8910ea965790 {"pid": "4973", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/191710849"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:18.232911 2024-09-11 09:05:18.232914 2ad5f4b8-6918-44ed-93b9-894477bfd813 {"pid": "4974", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/191721166"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:16.886115 2024-09-11 09:07:52.401292 fb0ee5f8-b25b-4a13-8745-1dc306961450 {"pid": "4950", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025926750"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/190050721"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11144928026454340638"} 2 +2024-09-11 09:03:11.190951 2024-09-11 09:05:18.293833 f24ce4f7-a6ed-4ea7-baed-842fabe34349 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/958779147"}, "pid": "3124", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/191808105"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1051145424721186830523"} 2 +2024-09-11 09:05:18.364946 2024-09-11 09:05:18.364949 c79eb7dc-a9b8-4b70-9078-959d32468fc5 {"pid": "4975", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/192012401"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111146029642635822754"} 1 +2024-09-11 09:05:18.416692 2024-09-11 09:05:18.416697 dab45bd9-9f77-4a01-b0b9-1622e732a82d {"pid": "4976", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/192166506"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:18.482513 2024-09-11 09:05:18.482518 f3a5eee7-21a2-495a-8ebc-01617d2c6674 {"pid": "4977", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/192198149"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:18.545752 2024-09-11 09:05:18.545756 3b802f86-2327-45c9-ae9a-e30e9864a0fc {"pid": "4978", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/192269097"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:18.608264 2024-09-11 09:05:18.608267 074c0de9-7f75-4466-8c61-0eca220202b8 {"pid": "4979", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/192280953"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:18.666893 2024-09-11 09:05:18.666898 cddbc487-4e06-4fb5-9573-a89466d3353e {"pid": "4980", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/192298348"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10146030647535862820"} 1 +2024-09-11 09:05:18.723664 2024-09-11 09:05:18.723668 7a3f507b-cc78-4154-a473-226b0d12d40a {"pid": "4981", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/192319116"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:18.776885 2024-09-11 09:05:18.77689 8e7ad1c7-25e9-42a5-b6b8-c3e19b631609 {"pid": "4982", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/19239486X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:18.82802 2024-09-11 09:05:18.828023 07516396-9714-49d9-9f71-baf58d01e5a9 {"pid": "4983", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/192408909"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:18.883822 2024-09-11 09:05:18.883828 3368e42e-0d6e-40f6-a0cf-f644c2436fa0 {"pid": "4984", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/192529641"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:18.944327 2024-09-11 09:05:18.944331 4d4e986a-a955-4747-a892-d346e08e4284 {"pid": "4985", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/192628496"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:19.001529 2024-09-11 09:05:19.001533 7870288c-f00e-4c79-a868-01a609c3d864 {"pid": "4986", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/192640895"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:19.053548 2024-09-11 09:05:19.053552 16fbcb3a-f11e-4936-af0b-dc611382bf6d {"pid": "4987", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/192658697"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:19.109342 2024-09-11 09:05:19.109346 03cc6ec3-65b9-469b-926a-92ee1b14cc60 {"pid": "4988", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/192776851"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10146285348915370004"} 1 +2024-09-11 09:05:19.165008 2024-09-11 09:05:19.165012 363aca4b-4d33-4afa-9711-8532c740a461 {"pid": "4989", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/192790099"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:19.229174 2024-09-11 09:05:19.229178 57cd5c8b-1599-4db4-b8b2-0bad14cd7d72 {"pid": "4990", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/192856200"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1075146284374415331082"} 1 +2024-09-11 09:05:19.279857 2024-09-11 09:05:19.279861 723eda42-f4c0-4e92-b5cd-4691ebb9227d {"pid": "4991", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/192883313"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:19.331904 2024-09-11 09:05:19.331908 59910bc7-3136-4188-b5c0-71bc646df6e9 {"pid": "4992", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/192969285"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:19.390224 2024-09-11 09:05:19.390229 91965a16-40b0-4a20-ab47-5ed38b1a6d4d {"pid": "4993", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/193161109"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112146573785438100465"} 1 +2024-09-11 09:05:19.443135 2024-09-11 09:05:19.443139 657c1055-33ec-4d3c-ad5b-84704da37293 {"pid": "4994", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/193173328"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:01.344267 2024-09-11 09:05:19.509635 640e744c-beea-4448-9acd-fea8f619c5cd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1242496343"}, "pid": "1958", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/193181878"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108144782707063510652"} 2 +2024-09-11 09:05:19.572619 2024-09-11 09:05:19.572624 63a8d3bb-f6e6-459c-92be-cb9788e855eb {"pid": "4995", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/193183226"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:19.625002 2024-09-11 09:05:19.625004 8f197eb0-b46d-4bf2-94df-1177e8b9ef6e {"pid": "4996", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/193223287"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:19.681073 2024-09-11 09:05:19.681077 3f71e277-d1dc-4c2a-987c-bd39856ec0de {"pid": "4997", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/193276348"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111146573871738101187"} 1 +2024-09-11 09:05:19.736159 2024-09-11 09:05:19.736163 ec0274fb-3aa7-4f02-886b-772eadae04b8 {"pid": "4998", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/193284065"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:19.796081 2024-09-11 09:05:19.796085 6f3bc18b-0e74-433e-bb00-1d1652da381c {"pid": "4999", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/19329074X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107146573864638100904"} 1 +2024-09-11 09:05:19.863131 2024-09-11 09:05:19.863135 d30d6f58-b343-4ac5-b899-1ef51a4ef1c6 {"pid": "5000", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/193499975"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112146822307607381911"} 1 +2024-09-11 09:05:19.918488 2024-09-11 09:05:19.918492 08a35818-86ce-40f9-a9e3-a4a9d1a7f4db {"pid": "5001", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/193585057"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:19.981156 2024-09-11 09:05:19.981161 b832bc0a-4f92-4e49-baa7-bda653cf545f {"pid": "5002", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/193705974"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112146822167807380905"} 1 +2024-09-11 09:05:20.036764 2024-09-11 09:05:20.03677 303f053c-e2bd-446d-8609-7f8a480f4b7f {"pid": "5003", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/193736063"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:20.096336 2024-09-11 09:05:20.096341 415bcb1b-8efb-427e-9959-640b47b5b66a {"pid": "5004", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/193779587"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107043718"} 1 +2024-09-11 09:05:20.155673 2024-09-11 09:05:20.155677 91b22719-7135-4d7e-a4f8-e17b8e91419d {"pid": "5005", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/193809699"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1112156858617449780001"} 1 +2024-09-11 09:05:20.211046 2024-09-11 09:05:20.21105 71291bc3-f24e-441a-8b82-6fb6bc9b5629 {"pid": "5006", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/193825813"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:20.265152 2024-09-11 09:05:20.265155 855bab3b-5a25-49d5-9e18-b17089e8168b {"pid": "5007", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/193876191"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:20.320757 2024-09-11 09:05:20.320762 1c46ea6e-01d6-4741-b93d-d2ddaf5b4a6b {"pid": "5008", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/193955482"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107146822214107381212"} 1 +2024-09-11 09:05:20.377285 2024-09-11 09:05:20.377288 f96077d2-3b50-4ab7-9a8f-54211afe06f9 {"pid": "5009", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/193982269"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:20.438544 2024-09-11 09:05:20.438552 542e6c0d-3542-4e95-a5c6-9906792da9ae {"pid": "5010", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/194122603"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:20.497174 2024-09-11 09:05:20.497178 789b22e5-27f5-400e-87b6-9b06cb7523a8 {"pid": "5011", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/194162419"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:20.559758 2024-09-11 09:05:20.559763 0aa59e7c-b94b-4ffe-be54-410f03c0c19c {"pid": "5012", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/194167070"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:20.629477 2024-09-11 09:05:20.62948 fea71d32-7f56-492e-8d55-0c81f5b52cab {"pid": "5013", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/194445089"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104147093713725001419"} 1 +2024-09-11 09:05:20.692264 2024-09-11 09:05:20.692268 a897e69f-dae9-4286-b85b-bd4399e4d876 {"pid": "5014", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/194503941"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:20.743824 2024-09-11 09:05:20.743828 1a5f7139-b3fc-4f2d-afc5-30d1707057a9 {"pid": "5015", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/194564932"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:20.795813 2024-09-11 09:05:20.795815 a7c5f116-e837-4d21-86fe-74a5075835b4 {"pid": "5016", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/194577058"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:20.851347 2024-09-11 09:05:20.851352 cd89d535-591f-4093-91b9-2c4b4bd288d0 {"pid": "5017", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/194588718"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:20.911186 2024-09-11 09:05:20.911191 e9f728a1-c637-44d2-bce9-13ae2c246e3c {"pid": "5018", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/194616320"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:20.966371 2024-09-11 09:05:20.966374 153f11d7-8324-4c48-8372-29fe57e01a7a {"pid": "5019", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/194625036"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:21.02157 2024-09-11 09:05:21.021574 5b28d9bb-6ebf-4422-a7c8-649fce0b6685 {"pid": "5020", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/194925625"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:21.074393 2024-09-11 09:05:21.074397 489b9c3f-4e2e-4813-807a-fc815d655bd8 {"pid": "5021", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/195021371"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:21.132468 2024-09-11 09:05:21.132471 0a6d25d9-dd1b-46ce-b47a-1a16bcb3a9de {"pid": "5022", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/195226267"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112147602664457642278"} 1 +2024-09-11 09:05:21.189729 2024-09-11 09:05:21.189733 a244ebb2-3a2f-4605-b701-51450f83d20f {"pid": "5023", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/195247922"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:21.24444 2024-09-11 09:05:21.244444 29873abd-eccb-46c9-8ccc-96a17703ff6d {"pid": "5024", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/195263472"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:21.296887 2024-09-11 09:05:21.296891 1b527337-6481-4ba3-a64c-1d36734bb3f8 {"pid": "5025", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/195274059"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:21.354302 2024-09-11 09:05:21.354307 30914b2f-00df-4301-a075-42cb66880b52 {"pid": "5026", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/195276205"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:21.40741 2024-09-11 09:05:21.407415 e2a963d6-6d78-4a3f-903e-ccdf6a63a691 {"pid": "5027", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/195286227"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:21.463894 2024-09-11 09:05:21.463897 3f1c8a45-1076-4010-8325-f7becd24e137 {"pid": "5028", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/19529534X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105147602547657641154"} 1 +2024-09-11 09:05:21.516522 2024-09-11 09:05:21.516527 9c27f13d-8243-40f1-b530-cc99fad57684 {"pid": "5029", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/195370317"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:21.566475 2024-09-11 09:05:21.566509 bc00514c-f569-4f1e-8871-cad3a11c3442 {"pid": "5030", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/195403460"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:21.623176 2024-09-11 09:05:21.623179 6d75e19a-9050-4907-bf63-9d000d2de917 {"pid": "5031", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/195430662"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:21.677474 2024-09-11 09:05:21.677478 8cf7be2d-402e-4c57-b33e-74b835cb3b07 {"pid": "5032", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/19544504X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:21.731157 2024-09-11 09:05:21.73116 9eb4b15f-baa9-4e29-81c2-2c7b76cb3ce8 {"pid": "5033", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/195458575"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:21.792115 2024-09-11 09:05:21.792118 1af1d006-f006-460a-9a73-3258817b5d44 {"pid": "5034", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/195541855"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103148120859994792001"} 1 +2024-09-11 09:05:21.847327 2024-09-11 09:05:21.847332 1bd8076e-dae2-464a-87cc-c14c33996dd0 {"pid": "5035", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/195544439"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:21.905679 2024-09-11 09:05:21.905683 3ad64951-4da4-4e94-925a-25cac3b49bff {"pid": "5036", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/195555228"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:21.978412 2024-09-11 09:05:21.978416 cc9400cf-f25a-4d87-b38e-ffd565731730 {"pid": "5037", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/195708814"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:22.036834 2024-09-11 09:05:22.036837 27fa4a69-3177-4725-8399-45dbaa575059 {"pid": "5038", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/195713133"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:22.086717 2024-09-11 09:05:22.086721 3516b819-d2ac-4f27-ba95-86d3e28bf371 {"pid": "5039", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/195791258"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:22.139942 2024-09-11 09:05:22.139947 2f1d343e-d247-400a-8493-710d718d5a9d {"pid": "5040", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/195824431"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:22.193829 2024-09-11 09:05:22.193833 75448885-bb8d-4d7b-aa35-c3a863f20ee6 {"pid": "5041", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/195941942"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:22.245929 2024-09-11 09:05:22.245933 b0bb759d-d61f-4d9c-8481-945eb6ef5420 {"pid": "5042", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196095700"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:22.300668 2024-09-11 09:05:22.300672 3db7da0d-7ade-450f-ba13-3c4794655930 {"pid": "5043", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196155487"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:22.359933 2024-09-11 09:05:22.359938 d01b79c0-9982-4f89-ad90-3267ab423b2d {"pid": "5044", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196254795"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:22.417477 2024-09-11 09:05:22.417482 17143400-8e54-4d2f-b75c-5cf211c3b5d1 {"pid": "5045", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196282411"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:22.477764 2024-09-11 09:05:22.477768 5e37587b-90a5-4e9a-b97d-cc6cfdc30434 {"pid": "5046", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196313910"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:22.534881 2024-09-11 09:05:22.534883 e722d5d7-3977-450c-8dae-a4c46981ad51 {"pid": "5047", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196337208"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:22.588148 2024-09-11 09:05:22.588152 638e4d86-972a-4b3b-9261-b6f1916e01a6 {"pid": "5048", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196341280"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:22.643255 2024-09-11 09:05:22.643259 f10f8e88-02df-4a00-90cb-d32c0e8cd4bb {"pid": "5049", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196405750"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:22.698569 2024-09-11 09:05:22.698573 ad7cd74a-5136-451c-a0ee-85715f99f1b6 {"pid": "5050", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196409500"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:22.758435 2024-09-11 09:05:22.758439 47a80538-e9c9-4715-bece-169b7f1ba0e9 {"pid": "5051", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196425840"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107148389277810710683"} 1 +2024-09-11 09:05:22.817431 2024-09-11 09:05:22.817435 cb188b3f-9b3f-4e40-8bba-92f0182f0f9c {"pid": "5052", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196435099"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:22.877093 2024-09-11 09:05:22.877095 fc65d2ff-7fb6-45ff-ab6d-a52713df5671 {"pid": "5053", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196452341"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:22.931403 2024-09-11 09:05:22.931406 129d041c-8ddd-439d-8c91-d89baf6d906e {"pid": "5054", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196511275"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:22.986609 2024-09-11 09:05:22.986613 67bd7666-ceab-45cc-9078-a887bb4d73e5 {"pid": "5055", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196538637"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:23.040672 2024-09-11 09:05:23.040676 9bcfac7f-5af2-4b97-baa7-185a91bb661f {"pid": "5056", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196539102"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:23.095106 2024-09-11 09:05:23.09511 49e41b46-ae4f-43ab-ab21-5fe7493c318b {"pid": "5057", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196540429"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:23.154308 2024-09-11 09:05:23.154314 c3cdddc5-012c-487d-9bae-6e9ed6f2beab {"pid": "5058", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196575214"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:23.216284 2024-09-11 09:05:23.216289 8a78cdcf-18cf-4017-9cde-11faf69fcd7f {"pid": "5059", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196694531"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:23.272113 2024-09-11 09:05:23.272126 12db571f-1962-4ff2-8172-975e0bd88458 {"pid": "5060", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196706831"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:23.333019 2024-09-11 09:05:23.333021 3b65d4bd-a4af-4278-b3b0-70ae5a2a8023 {"pid": "5061", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196728711"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:23.386418 2024-09-11 09:05:23.386422 401c412a-95db-4115-ba02-4e975f6cbe56 {"pid": "5062", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196814944"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:23.440658 2024-09-11 09:05:23.440661 40bc2cdd-2f2b-4c6b-a750-1329d2bce617 {"pid": "5063", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196859883"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:23.494055 2024-09-11 09:05:23.494059 92ecb995-fca2-44b1-84e6-226a296c948a {"pid": "5064", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/196887429"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:23.548514 2024-09-11 09:05:23.54852 fb22708a-7416-462a-9814-a6bfb0be0004 {"pid": "5065", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/197014984"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:23.602188 2024-09-11 09:05:23.602193 e8aeccbb-7232-4b9b-b2ab-d8e285d0f7fb {"pid": "5066", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/197035167"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:23.656015 2024-09-11 09:05:23.656018 47388518-a78c-4ed1-a56a-227766ffbdef {"pid": "5067", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/197073077"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:23.710117 2024-09-11 09:05:23.710122 1bc490fd-c19b-4542-9e5d-e8da9747d108 {"pid": "5068", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/197115047"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:23.774876 2024-09-11 09:05:23.77488 8c50a018-eddd-4751-8f8a-5db637b41e05 {"pid": "5069", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/197132588"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:23.834991 2024-09-11 09:05:23.834994 02dca506-77d5-4726-b29c-132cd94197d8 {"pid": "5070", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/197226809"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:23.889539 2024-09-11 09:05:23.889543 9c0d3227-cfa3-4f55-9fb4-4b3dcb6e73f7 {"pid": "5071", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/197280544"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:23.943719 2024-09-11 09:05:23.943724 93a792ca-01a6-4148-9b23-5a571b9d1d33 {"pid": "5072", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/197391648"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:23.999341 2024-09-11 09:05:23.999344 30a516d8-0cf6-4baa-a06c-916cd2cde596 {"pid": "5073", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/197394795"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:24.052638 2024-09-11 09:05:24.052643 97b12a41-2796-4cc4-b338-75b9b9ab78da {"pid": "5074", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/197444067"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:24.109065 2024-09-11 09:05:24.10907 c811d8df-3112-43d0-9dab-a07d68a0d272 {"pid": "5075", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/197444881"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:24.167446 2024-09-11 09:05:24.167449 b27f2894-f820-4559-b3e4-4fa45db295c2 {"pid": "5076", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/197511392"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:24.226248 2024-09-11 09:05:24.226253 d6215b72-64ef-4a58-aefc-f902ea43f37d {"pid": "5077", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/197533590"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:24.284981 2024-09-11 09:05:24.284986 fea3429a-cb82-4ae8-8186-f63190be7d50 {"pid": "5078", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/197593968"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:24.343688 2024-09-11 09:05:24.343692 6f831793-977a-411d-9aa7-dc2b5863aa5f {"pid": "5079", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/197623549"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:24.399631 2024-09-11 09:05:24.399635 18756211-30f7-4fdf-a3fa-2fd50882b5e1 {"pid": "5080", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/197687717"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:24.460173 2024-09-11 09:05:24.460178 31917a71-094b-4ea4-8988-f99f48b7148d {"pid": "5081", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/197696597"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:24.515905 2024-09-11 09:05:24.515911 dedd350b-a3ae-41ea-aec0-86f417998bc7 {"pid": "5082", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/197997961"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:24.699566 2024-09-11 09:05:24.69957 54cd0086-827b-4542-a225-9886e96e81fd {"pid": "5084", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/198395361"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:24.754131 2024-09-11 09:05:24.754135 7f4f3cba-7459-4076-a46b-c1ae8e2ab86a {"pid": "5085", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/198493231"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:24.813561 2024-09-11 09:05:24.813565 2a3ed6ae-b69c-4880-9cfd-cd7e2e5d22c9 {"pid": "5086", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/198494289"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:24.878266 2024-09-11 09:05:24.878271 a21cff06-0335-42f8-aaa7-b92768c68b11 {"pid": "5087", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/19859318X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105148933547054300834"} 1 +2024-09-11 09:05:24.934492 2024-09-11 09:05:24.934496 0cda190e-3c53-4dc2-ac70-311203c46815 {"pid": "5088", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/19870125X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:25.000108 2024-09-11 09:05:25.000112 a4d82e24-d9cf-4eef-8519-b6b9dd7bcf8c {"pid": "5089", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/199108617"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105149717325010950335"} 1 +2024-09-11 09:05:25.118053 2024-09-11 09:05:25.118057 c9b1facc-a8af-4c32-b1f4-76f5db196927 {"pid": "5091", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/19915631X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:25.17584 2024-09-11 09:05:25.175842 3432bc9f-c851-4d22-88dc-8ae6f01551ee {"pid": "5092", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/199168326"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:25.228246 2024-09-11 09:05:25.228251 dde74d66-f7f3-4db0-9949-4d6e3aaa311d {"pid": "5093", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/199187606"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:25.323729 2024-09-11 09:05:25.323733 931b189a-e3e3-4fb4-8a47-9ecc020a4c80 {"pid": "5094", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/19921347X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:25.062311 2024-09-11 09:07:02.751632 1eedd2ff-8792-4f18-9dca-4c66c0f2c933 {"pid": "5090", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012329066"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/199119961"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100272267"} 2 +2024-09-11 09:05:25.385448 2024-09-11 09:05:25.385452 3c8383b0-b83e-4a78-ba18-ea8ba9cbff50 {"pid": "5095", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/199238324"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:25.441352 2024-09-11 09:05:25.441356 0c6ec57e-bb1f-4373-9273-893061e59dd7 {"pid": "5096", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/199257213"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:25.498568 2024-09-11 09:05:25.498572 c45a70f4-4643-4bf5-acda-390f1601d3f0 {"pid": "5097", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/199258813"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105149717315710950076"} 1 +2024-09-11 09:05:25.551361 2024-09-11 09:05:25.551366 8736ea40-a2f8-4582-9daa-3b8fd168f5ea {"pid": "5098", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/199336776"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:25.60736 2024-09-11 09:05:25.607364 02c63e6b-d79d-4bcc-9c6e-608e028488b4 {"pid": "5099", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/199441863"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:25.659603 2024-09-11 09:05:25.659606 271f9a12-9812-4864-b382-3ded7a4aa533 {"pid": "5100", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/199452857"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:25.71546 2024-09-11 09:05:25.715465 3c40286a-6729-4412-b010-17f57a7c1e62 {"pid": "5101", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/199464669"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:25.767432 2024-09-11 09:05:25.767437 43ee4f74-d8ec-4254-bf2d-17baed6418d8 {"pid": "5102", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/19954770X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:25.82087 2024-09-11 09:05:25.820874 70b720ad-5cac-4002-95e9-39b3db634d18 {"pid": "5103", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/199555907"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:25.875923 2024-09-11 09:05:25.875928 ef842b06-32fc-4ffe-be43-bf7ed6f680c1 {"pid": "5104", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/19960097X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:25.931814 2024-09-11 09:05:25.931819 0dfac13c-924e-4f05-ace2-9611a6901a2b {"pid": "5105", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/199679150"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107149717319710950386"} 1 +2024-09-11 09:05:25.98726 2024-09-11 09:05:25.987264 ba9b2909-8922-4ca6-b752-d475dc70203b {"pid": "5106", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/199716498"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:26.050137 2024-09-11 09:05:26.050142 0917a400-6e52-45ee-a725-f662cb365237 {"pid": "5107", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/199742022"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102149717632910952374"} 1 +2024-09-11 09:05:26.10346 2024-09-11 09:05:26.103463 e20f1abd-b87a-4a33-9698-854f934a4acb {"pid": "5108", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/199749736"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:26.156462 2024-09-11 09:05:26.156466 094eff61-e1c9-4187-b9ad-675038ec5ebf {"pid": "5109", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/199777381"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:26.222169 2024-09-11 09:05:26.222172 a5e85630-d10e-4f0d-a6ec-1b5531d98f0e {"pid": "5110", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/199828121"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102149717568510951522"} 1 +2024-09-11 09:05:26.275172 2024-09-11 09:05:26.275175 4e19c101-0da0-4d73-8305-309ac433bbf8 {"pid": "5111", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/200127748"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:26.324957 2024-09-11 09:05:26.324961 6303032d-351f-4f2d-94f3-9db4c012c5b3 {"pid": "5112", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/200138766"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:26.383993 2024-09-11 09:05:26.383998 0b63788a-c310-4603-b72d-3202ba50df08 {"pid": "5113", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/200141163"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101020201"} 1 +2024-09-11 09:05:26.436577 2024-09-11 09:05:26.436582 8d7bc749-6f49-4be4-9270-1921a0405b11 {"pid": "5114", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/200238574"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:26.488645 2024-09-11 09:05:26.488651 27385e23-09b6-408a-8540-4eac297e579c {"pid": "5115", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/200252933"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:26.544122 2024-09-11 09:05:26.544126 9c7a0b78-c6db-4cc2-b803-8f92ce2553cd {"pid": "5116", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/200400525"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:26.606115 2024-09-11 09:05:26.606117 c782ffb6-c530-4500-940d-2a4ecf905b63 {"pid": "5117", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/200469169"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "113149717359910950242"} 1 +2024-09-11 09:05:26.679494 2024-09-11 09:05:26.679499 103c8c2c-ae21-44e3-b3f4-8a6967df7764 {"pid": "5118", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/200480111"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:26.732747 2024-09-11 09:05:26.73275 d3f1f838-3532-49b1-8aa5-4bf444bbaa9a {"pid": "5119", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/200480391"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:26.792673 2024-09-11 09:05:26.792677 9dacc217-0c96-4c23-aee2-b9c89bf26666 {"pid": "5120", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/200497065"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109149717519010951405"} 1 +2024-09-11 09:05:26.84221 2024-09-11 09:05:26.842213 0269639a-dec7-4fcf-a438-1afc3ada12d1 {"pid": "5121", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/200524925"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:26.895227 2024-09-11 09:05:26.895232 b0652208-6a40-4c7e-b5a6-c97c2795bbf2 {"pid": "5122", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/200581627"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:26.946479 2024-09-11 09:05:26.946483 6965718c-9ed6-41ca-90e5-771820c6e3b7 {"pid": "5123", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/200646788"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:27.005429 2024-09-11 09:05:27.005433 91184798-1037-448f-839e-e307eba1a958 {"pid": "5124", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/200661531"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107149717334710950417"} 1 +2024-09-11 09:05:27.060838 2024-09-11 09:05:27.060842 cf75fcc9-429c-4eb6-a611-a2ea2757e5db {"pid": "5125", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/20071659X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:27.115407 2024-09-11 09:05:27.115412 359ff5a4-3c77-4df6-bce9-b6a0306ad37b {"pid": "5126", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/200723421"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:27.175299 2024-09-11 09:05:27.175303 73fbe457-fefc-4fe6-87e9-2b72e81f35f2 {"pid": "5127", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/20082807X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:27.23197 2024-09-11 09:05:27.231973 c78b846b-47c9-4f08-af8f-d9583e32bf2a {"pid": "5128", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/201287617"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:27.290634 2024-09-11 09:05:27.290638 f4a163b0-8ff1-4f2b-8b87-0beace70219c {"pid": "5129", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/201289377"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:27.350823 2024-09-11 09:05:27.350828 a446d0de-4544-4131-bfb8-abebddffbd36 {"pid": "5130", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/201301040"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:27.411535 2024-09-11 09:05:27.411539 83925311-9bcc-4738-98d4-d1aec615dfe0 {"pid": "5131", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/201306824"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:27.465064 2024-09-11 09:05:27.465067 6a5be84d-8280-49cd-ab5b-a6e853670c5a {"pid": "5132", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/201480034"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:27.524508 2024-09-11 09:05:27.524513 1899338b-f92b-43d9-a338-c9afe0d58569 {"pid": "5133", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/201609924"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107150565608906251400"} 1 +2024-09-11 09:05:27.579168 2024-09-11 09:05:27.579172 85e235d5-22c7-46d7-b769-71188badd136 {"pid": "5134", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/201643936"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:27.634781 2024-09-11 09:05:27.634789 49a2740f-ef2e-467e-88b1-993cd7083f79 {"pid": "5135", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/201672618"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:27.687592 2024-09-11 09:05:27.687596 1ebfa5ae-b6a5-4ca3-8b0c-51a423a6cb1e {"pid": "5136", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/201683636"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:27.741373 2024-09-11 09:05:27.741378 f9b6770f-4b7f-453f-b90f-4b8d4f04a69d {"pid": "5137", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/20169106X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:27.811941 2024-09-11 09:05:27.811945 4c23ea4e-bb37-4ddd-a75e-42c24f2468dc {"pid": "5138", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/201716461"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:27.867104 2024-09-11 09:05:27.86711 64f0a5c8-8e7c-4564-a2e5-8d6bfade6d19 {"pid": "5139", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/201724588"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:27.920335 2024-09-11 09:05:27.920338 31bd19a1-dd90-4a78-8235-b9337cdfa5ac {"pid": "5140", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/201753413"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:27.976815 2024-09-11 09:05:27.976819 6524e6f7-a74d-4ffe-82a4-aa6edb0ac7c2 {"pid": "5141", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/201756463"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:28.039028 2024-09-11 09:05:28.039031 4cbda14a-0a0f-4642-a43e-de43ea81cca4 {"pid": "5142", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/201762641"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100150565742606252567"} 1 +2024-09-11 09:05:28.092656 2024-09-11 09:05:28.092661 56abed3b-9ea0-4e89-aa34-ca4fe6d8c8e5 {"pid": "5143", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/201790017"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:28.150994 2024-09-11 09:05:28.150999 8aaf73fa-e7f6-4f27-b051-5fc405833ea8 {"pid": "5144", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/201827581"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:28.204144 2024-09-11 09:05:28.204149 509f5876-da56-418c-9359-72074ea7a10e {"pid": "5145", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/201830507"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:28.259883 2024-09-11 09:05:28.259887 820f9bd6-62f0-4b4f-92ad-970517052236 {"pid": "5146", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/201849534"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:28.313459 2024-09-11 09:05:28.313464 5e598a3f-11b9-4a24-bd6a-18928487853e {"pid": "5147", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/20185080X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:28.377009 2024-09-11 09:05:28.377013 d93a5bf4-dddf-436b-b160-9a474ce5f5b5 {"pid": "5148", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/202400263"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1061150567601206370000"} 1 +2024-09-11 09:05:28.440722 2024-09-11 09:05:28.440726 cf65f281-0a8d-454e-b8a9-b9ff95208ede {"pid": "5149", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/202446573"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106150565731706251927"} 1 +2024-09-11 09:05:28.501594 2024-09-11 09:05:28.5016 e06b3ee7-c17d-44fa-bb24-d4340efaea84 {"pid": "5150", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/202513645"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:28.559175 2024-09-11 09:05:28.559179 c517f304-745e-4e7b-bb5e-242b610a6121 {"pid": "5151", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/202637417"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:28.621571 2024-09-11 09:05:28.621575 7f922968-bf58-45a7-b3ea-96b69a7ab403 {"pid": "5152", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/202648087"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103150565728106251065"} 1 +2024-09-11 09:05:28.738076 2024-09-11 09:05:28.738079 cc6f8402-b371-4cea-83ad-e59f23805d8f {"pid": "5153", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/202685144"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109652682"} 1 +2024-09-11 09:05:28.791625 2024-09-11 09:05:28.791629 91efe217-88f2-46bd-9bd6-89aaf2cec68e {"pid": "5154", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/202745279"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:28.858086 2024-09-11 09:05:28.85809 3946fb23-7634-4215-8a99-7ac51ea9d108 {"pid": "5155", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/202768740"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:28.917625 2024-09-11 09:05:28.917629 547af2ac-1b3d-4bff-9dee-8518126861b2 {"pid": "5156", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/202773663"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111150565705006251651"} 1 +2024-09-11 09:05:28.967566 2024-09-11 09:05:28.96757 899d15c9-0696-435b-96d6-4a3323603a66 {"pid": "5157", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/202908097"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:29.03351 2024-09-11 09:05:29.033514 31ca3c4c-efda-4204-8aa7-824d4a9ba42f {"pid": "5158", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/202971511"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106150565600006250676"} 1 +2024-09-11 09:05:29.090107 2024-09-11 09:05:29.090112 27a922b7-c095-42ee-a90a-aa84ae06416d {"pid": "5159", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/202987752"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:29.146304 2024-09-11 09:05:29.146308 1b0db6a1-99ff-40d2-994c-c2604edf44ab {"pid": "5160", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/20307324X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:29.202902 2024-09-11 09:05:29.202906 07af9fba-b665-433f-a54e-5b0c0e6385a0 {"pid": "5161", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/203079442"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:29.263338 2024-09-11 09:05:29.263341 ee9df3f2-ed47-488a-a07d-f930f1695824 {"pid": "5162", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/203120752"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108150565576206250917"} 1 +2024-09-11 09:05:29.318361 2024-09-11 09:05:29.318366 dbf77179-fc65-4211-9b5e-8b6190687788 {"pid": "5163", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/203121953"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:29.369052 2024-09-11 09:05:29.369058 75cfa167-fe7c-4a23-86e3-208495db432f {"pid": "5164", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/203168712"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:29.428275 2024-09-11 09:05:29.428282 27f1de35-313a-465e-8309-2f077b6b84d0 {"pid": "5165", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/203351312"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109150565702706251791"} 1 +2024-09-11 09:05:29.491029 2024-09-11 09:05:29.491033 c530c03c-9cc4-4e82-949b-866e35fb8c21 {"pid": "5166", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/203359321"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103150565588906250372"} 1 +2024-09-11 09:05:29.547374 2024-09-11 09:05:29.547378 1e977b7f-8cae-4b3b-93f3-3499c5c154a2 {"pid": "5167", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/203372514"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:29.604902 2024-09-11 09:05:29.604905 43173403-eb07-4187-9adc-3ed45988e3c8 {"pid": "5168", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/203387279"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:29.659294 2024-09-11 09:05:29.659298 0d6dcbc9-1f37-4a3d-8ebb-80b9246e63cd {"pid": "5169", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/20354014X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:29.711935 2024-09-11 09:05:29.711938 105fdf47-50a8-4f8c-9cbe-4529fdffd2a6 {"pid": "5170", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/203603141"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:29.763454 2024-09-11 09:05:29.763456 d47a8462-254b-4c5c-a303-3ff2d7fd9735 {"pid": "5171", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/203620941"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:29.816722 2024-09-11 09:05:29.816727 a38df8c5-632e-41d9-a411-3bba3887d116 {"pid": "5172", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/203662997"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:29.870383 2024-09-11 09:05:29.870387 d0ec21a3-b6c3-46bf-94b0-bd588b911620 {"pid": "5173", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/203861108"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:29.922792 2024-09-11 09:05:29.922796 fe78c27e-16cd-4800-bf30-9d10c3c49c18 {"pid": "5174", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/203863232"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:29.976542 2024-09-11 09:05:29.976548 dc5da4af-fda8-4c82-b0b9-d19329ddaff2 {"pid": "5175", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/203926625"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:30.031224 2024-09-11 09:05:30.031229 e89c852b-ee03-4cd3-accc-8c57ccd9944c {"pid": "5176", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/203929594"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:30.082872 2024-09-11 09:05:30.082876 52227a0d-f682-421d-af60-9b7e16151487 {"pid": "5177", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/203933036"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:30.136618 2024-09-11 09:05:30.136622 ab2f690d-7660-4b67-ae9f-6965de50adea {"pid": "5178", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/203935616"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:30.194639 2024-09-11 09:05:30.194644 900eb41b-1627-4ab1-b4e7-dc4e48466a47 {"pid": "5179", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/203937740"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:30.268344 2024-09-11 09:05:30.268347 5c2b3060-f711-455b-8b8b-894cd4c70492 {"pid": "5180", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/20394562X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:30.321289 2024-09-11 09:05:30.321293 35903f74-e4d6-4e04-be10-8e1342991108 {"pid": "5181", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/203971051"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:30.382173 2024-09-11 09:05:30.382177 2ad0e394-df67-4197-bff7-30f1b0dcb8b2 {"pid": "5182", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/204040388"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110150747135116302704"} 1 +2024-09-11 09:05:30.4411 2024-09-11 09:05:30.441104 b302f666-046b-4185-b186-12dee4b0226b {"pid": "5183", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/204097428"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:30.563995 2024-09-11 09:05:30.563999 b9f600c2-75c2-4df2-9975-d0a637be24a2 {"pid": "5184", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/204208246"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:30.616689 2024-09-11 09:05:30.616694 8f08cdb5-cb18-4ab3-b99c-564147866376 {"pid": "5185", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/20422280X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:30.670262 2024-09-11 09:05:30.670266 8239f874-5633-4de6-9c4d-98a5ac3c0bbc {"pid": "5186", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/204242479"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:30.783125 2024-09-11 09:05:30.78313 012b1075-cf9c-4b1e-be46-a363a06dbf5b {"pid": "5188", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/20436678X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:30.836439 2024-09-11 09:05:30.836443 3e4da094-fa93-4fb4-bfb1-1d79693a1cb7 {"pid": "5189", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/204436869"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:30.898551 2024-09-11 09:05:30.898554 739d5e89-144d-40b7-a6e7-75a3967a1eee {"pid": "5190", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/204581745"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110151050168333412174"} 1 +2024-09-11 09:05:31.012821 2024-09-11 09:05:31.012825 033554f4-3f30-43d7-a202-1de410089270 {"pid": "5191", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/204719593"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:31.067764 2024-09-11 09:05:31.067766 c2017277-7da2-4910-8c90-d81b70d9c5f6 {"pid": "5192", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/204750032"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:31.11978 2024-09-11 09:05:31.119785 cb5c7074-3383-4e09-bd65-6df9ed54eac5 {"pid": "5193", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/204755824"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:31.176239 2024-09-11 09:05:31.176244 98bf4d87-2aa0-4054-a3b5-3813c485fd00 {"pid": "5194", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/20476209X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:31.236503 2024-09-11 09:05:31.236506 bd71148d-db26-469f-9b67-ab84f229a1fb {"pid": "5195", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/204801923"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:31.298723 2024-09-11 09:05:31.298728 089285c3-57a2-42ab-8642-6e570dc00432 {"pid": "5196", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/219558523"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:31.352373 2024-09-11 09:05:31.352376 e1667497-6b8c-462d-9936-01eff11ad474 {"pid": "5197", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/219844496"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:31.406303 2024-09-11 09:05:31.406307 645c0deb-cd58-4b62-bc3f-8c72d1df2f14 {"pid": "5198", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/219895058"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:31.467575 2024-09-11 09:05:31.46758 bcfd9eaa-a239-44eb-91d7-50846371d14a {"pid": "5199", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/219901015"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:31.52304 2024-09-11 09:05:31.523043 7ea5125d-17f1-47c0-8247-8b736ab10ea7 {"pid": "5200", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/219918252"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:31.583005 2024-09-11 09:05:31.58301 c067a5a3-9ab9-42da-bbf3-94335bcfcbfb {"pid": "5201", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/219992657"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103151302966148662012"} 1 +2024-09-11 09:05:31.638404 2024-09-11 09:05:31.638409 57a5f78a-5838-4eb6-bb0b-ecdbdc8bc5e9 {"pid": "5202", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/220045143"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:31.690074 2024-09-11 09:05:31.690079 87ae90ae-5a5f-4991-849b-95414cc085c0 {"pid": "5203", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/220058784"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:31.743497 2024-09-11 09:05:31.743501 60355315-1225-47e7-a9b7-1f49257bd73b {"pid": "5204", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/220068062"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:31.799369 2024-09-11 09:05:31.799374 373e00b8-a7f3-4160-a502-a18a24734ec1 {"pid": "5205", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/220075247"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:31.852906 2024-09-11 09:05:31.852909 094b06d4-9dea-45ce-8b87-b6d91c669d92 {"pid": "5206", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/220078440"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:31.906917 2024-09-11 09:05:31.90692 04b30e46-4543-4739-a968-0d1965fecc59 {"pid": "5207", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/220159157"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:31.964416 2024-09-11 09:05:31.96442 5ed39960-a873-4237-b4d3-0792e3bc2329 {"pid": "5208", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/220178003"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "113151302976248662220"} 1 +2024-09-11 09:05:32.017384 2024-09-11 09:05:32.01739 9125b1cf-85b2-40e8-8677-f678f78c2a3d {"pid": "5209", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/220196133"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:32.070127 2024-09-11 09:05:32.07013 0426d289-7277-4080-8dae-ea77c3a61f49 {"pid": "5210", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/220218919"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:32.130607 2024-09-11 09:05:32.130611 9d6916ae-4404-4eb4-aba2-1cd10228078c {"pid": "5211", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/220304114"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112151302886348660062"} 1 +2024-09-11 09:05:32.246309 2024-09-11 09:05:32.246314 d456466e-3910-46ae-8956-9f3edf69f221 {"pid": "5213", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/220609829"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111151302950748661778"} 1 +2024-09-11 09:05:32.304629 2024-09-11 09:05:32.304633 700d0807-6f2a-4c02-8c9f-a341207eaa7d {"pid": "5214", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/220828164"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100151302888048660222"} 1 +2024-09-11 09:05:32.36329 2024-09-11 09:05:32.363293 8fd18a0e-0fe1-419b-b962-0fdcf9ee677d {"pid": "5215", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/22088787X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:32.422246 2024-09-11 09:05:32.422249 81fd22c7-188c-48ad-806e-eaa94e0d2c3e {"pid": "5216", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/220890056"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106151302919848660519"} 1 +2024-09-11 09:05:32.487974 2024-09-11 09:05:32.48798 b2ea2c51-77d0-440d-9bb2-60e2d542690b {"pid": "5217", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/221211810"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:32.544354 2024-09-11 09:05:32.544358 d7dae846-1e58-4b63-919d-89eb691a1a57 {"pid": "5218", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/221276904"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:32.596756 2024-09-11 09:05:32.596759 1d411642-b2fe-4501-aaa0-ffc9edc479ad {"pid": "5219", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/221337571"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:32.656483 2024-09-11 09:05:32.656486 fcfdeba2-1057-4289-9a7d-f39477716229 {"pid": "5220", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/221337806"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:32.710395 2024-09-11 09:05:32.710397 22baaca8-f74a-462c-9ac5-39eb16d0b7b1 {"pid": "5221", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/221343555"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:32.766865 2024-09-11 09:05:32.766868 d5711474-b656-4306-9c11-5c0d03a47003 {"pid": "5222", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/221345477"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:32.830732 2024-09-11 09:05:32.830735 3f65ca43-a6d5-47ae-a2a1-de77eb99a664 {"pid": "5223", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/221427767"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108151594464705351770"} 1 +2024-09-11 09:05:32.888361 2024-09-11 09:05:32.888364 63b4cb90-c02e-420b-b2a9-0d363680f359 {"pid": "5224", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/221465480"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:32.943359 2024-09-11 09:05:32.943363 81a856f3-bc6e-41a8-bbf5-978e43b3e434 {"pid": "5225", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/221485554"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:32.995095 2024-09-11 09:05:32.995099 f78896a6-57f5-46bc-8cb4-fa776e04978b {"pid": "5226", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/221493646"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:33.055623 2024-09-11 09:05:33.055627 5a11cacd-1ba8-495e-b920-4674429995c4 {"pid": "5227", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/221661425"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:33.108124 2024-09-11 09:05:33.108128 f05aa858-5922-4805-89a7-68c7c93599f5 {"pid": "5228", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/221728856"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:33.161914 2024-09-11 09:05:33.161918 d759e9d0-a785-4eab-9a51-c7a1b1630fcd {"pid": "5229", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/22175167X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:33.291228 2024-09-11 09:05:33.291232 bf8161ba-5044-4fd8-87ff-d019bbedccc9 {"pid": "5230", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/22344250X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104151836548620401031"} 1 +2024-09-11 09:05:33.344057 2024-09-11 09:05:33.344061 939f7332-b78c-4974-9fa4-1b0ca1695327 {"pid": "5231", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/223483516"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:33.400198 2024-09-11 09:05:33.4002 5cc7efa2-10fa-4988-bbda-24ca25da405d {"pid": "5232", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/223491071"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100151836552720401901"} 1 +2024-09-11 09:05:33.453146 2024-09-11 09:05:33.453149 b8f23c7e-842e-43e2-b47d-96308baf4622 {"pid": "5233", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/223505056"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:33.506647 2024-09-11 09:05:33.50665 8933b1e0-d3d9-4d85-a628-ea60175e1ecd {"pid": "5234", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/223537616"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:33.5604 2024-09-11 09:05:33.560402 2941d2e9-5ebe-4029-b7fc-6a7f59201d3f {"pid": "5235", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/223609935"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:33.614144 2024-09-11 09:05:33.614148 8b70fbff-f9ce-435e-a4b4-cb4a769cc141 {"pid": "5236", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/223614866"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:33.679037 2024-09-11 09:05:33.679042 706893e5-235d-474f-be45-521132e6f5a9 {"pid": "5237", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/223652555"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:33.733235 2024-09-11 09:05:33.733238 c6116bcf-5680-47b8-9594-6525a7cd05b0 {"pid": "5238", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/223704288"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:33.784157 2024-09-11 09:05:33.784162 917bea95-447d-41f7-969f-a0ef4eba6cd0 {"pid": "5239", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/22376423X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:33.898155 2024-09-11 09:05:33.898158 83d0c9e5-8e34-44e9-9dec-6895f0b01765 {"pid": "5241", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/223852481"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:33.950374 2024-09-11 09:05:33.95038 a55974a0-df28-4c14-a909-c1856a99b649 {"pid": "5242", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/223890472"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:34.00795 2024-09-11 09:05:34.007955 639bac4d-880c-4dfe-a155-af14d05abfa1 {"pid": "5243", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/224016806"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:34.068069 2024-09-11 09:05:34.068073 24781ba3-b51e-4692-bed6-f77ade4685ad {"pid": "5244", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/224210963"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104152079169107111308"} 1 +2024-09-11 09:05:34.13757 2024-09-11 09:05:34.137575 1eeb8232-15e6-4f4b-8653-b530d3a24463 {"pid": "5245", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/224227815"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111152079173007110745"} 1 +2024-09-11 09:05:34.193968 2024-09-11 09:05:34.193971 e45f24e5-c009-4026-96a8-4a544fd6ca0c {"pid": "5246", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/224319418"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:34.250286 2024-09-11 09:05:34.250291 a94aac56-b4d0-4985-8d58-c0828b0e6449 {"pid": "5247", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/224335081"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:34.309824 2024-09-11 09:05:34.309827 a999cb8f-c53d-49a4-9f79-4523746e5193 {"pid": "5248", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/22438306X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:34.415327 2024-09-11 09:05:34.415332 7931b7c8-f334-4d72-971e-015834cd21de {"pid": "5249", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/224404717"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:34.469521 2024-09-11 09:05:34.469526 bdec7d50-da5d-4f38-8dd2-0f93d55ec528 {"pid": "5250", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/224452630"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:34.523088 2024-09-11 09:05:34.523092 32f50fd9-f977-401e-a44f-5c92145bab1a {"pid": "5251", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/224502557"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:34.575545 2024-09-11 09:05:34.575548 9fae3edf-6ef5-41b2-be7a-e3740e77192e {"pid": "5252", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/224542249"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:34.629034 2024-09-11 09:05:34.629038 630e7b2f-0504-404d-aae6-54a335e1b5d4 {"pid": "5253", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/224544411"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "deleted": "2023-05-02T15:14:40.693107+00:00"} 1 +2024-09-11 09:05:34.683112 2024-09-11 09:05:34.683117 5345f0da-e86c-4616-8062-04e8e3878481 {"pid": "5254", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/224701592"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:34.747462 2024-09-11 09:05:34.747467 7823e5f2-7ba1-46f5-bfaa-ac30cc927ccb {"pid": "5255", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/22472178X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:08.739277 2024-09-11 09:05:34.86648 b9a8e027-22e4-4295-bd3b-e76030c75d3e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1270306960"}, "pid": "2086", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/224794272"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107152380058201760201"} 2 +2024-09-11 09:05:34.926668 2024-09-11 09:05:34.926672 a9b66288-d44d-43c7-9bb9-d51998bc93bc {"pid": "5256", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/224842722"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:34.984977 2024-09-11 09:05:34.98498 69278959-51d1-49d1-a506-4b8ad2da25a2 {"pid": "5257", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/224847333"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:35.053273 2024-09-11 09:05:35.053276 813186a1-e496-45ab-9a77-cf009cee604e {"pid": "5258", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/224875868"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103152380061501760617"} 1 +2024-09-11 09:05:35.105071 2024-09-11 09:05:35.105076 45b13cbb-c292-4ba8-824a-48bd33b5f60c {"pid": "5259", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/224900536"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:35.155402 2024-09-11 09:05:35.155406 0d8a4bec-9eb6-4eae-a65e-65dc3b569e68 {"pid": "5260", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/224972065"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:35.218582 2024-09-11 09:05:35.218587 4227430b-27bd-4baa-99a6-d5b505774e34 {"pid": "5261", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/224991523"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100152380054401760785"} 1 +2024-09-11 09:05:35.277278 2024-09-11 09:05:35.277281 150f62c9-e91a-45dd-8e4b-b51fda369fd6 {"pid": "5262", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/225224054"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11113716"} 1 +2024-09-11 09:05:35.335712 2024-09-11 09:05:35.335717 ee92c44d-6271-477c-9ca3-f5a81c9367b1 {"pid": "5263", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/225402475"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106152380106901761541"} 1 +2024-09-11 09:05:35.385903 2024-09-11 09:05:35.385906 9cc0dea6-acb7-4b36-9055-f56be42fd94f {"pid": "5264", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/225406292"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:35.439813 2024-09-11 09:05:35.439817 6e15977e-d9ae-454e-abe2-4663900d34f9 {"pid": "5265", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/225412632"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:35.490144 2024-09-11 09:05:35.490149 dc9dcee0-94c7-4d5b-b363-ce861b678433 {"pid": "5266", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/225448475"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:35.541037 2024-09-11 09:05:35.541041 cb0fa146-940e-48ff-8689-d849f2365433 {"pid": "5267", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/225463121"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:35.593755 2024-09-11 09:05:35.59376 e34e6613-7103-482d-8f94-4434d71e229d {"pid": "5268", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/225512521"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:35.646405 2024-09-11 09:05:35.646409 9562bf18-6635-4dbc-9023-a63303f1c168 {"pid": "5269", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/225514451"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:35.699333 2024-09-11 09:05:35.699337 1b9a1237-677d-4497-b3a9-79ef6ac4997f {"pid": "5270", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/225603128"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:35.752537 2024-09-11 09:05:35.75254 a65808a5-9f74-4154-be4a-65c2f2c48912 {"pid": "5271", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/225616459"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:35.803358 2024-09-11 09:05:35.803363 a58a2dd7-24c4-4287-ac12-f035b3bf79c1 {"pid": "5272", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/225732394"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:35.867518 2024-09-11 09:05:35.867521 e6b10a1d-4f41-4c3c-b932-58aa34bb16d2 {"pid": "5273", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/225791153"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:35.921293 2024-09-11 09:05:35.921297 b0af998c-6e02-4d55-9a39-d2077da69aac {"pid": "5274", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/225800373"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:36.047671 2024-09-11 09:05:36.047676 f795bf5a-be23-4c26-9956-db53ddf06a73 {"pid": "5275", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/226149390"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1032152636118020050995"} 1 +2024-09-11 09:05:36.10837 2024-09-11 09:05:36.108374 ff9b021b-e380-4ef9-a31b-fccf36d6b01e {"pid": "5276", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/226257444"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1073152636118220050996"} 1 +2024-09-11 09:05:36.161099 2024-09-11 09:05:36.161103 7b3cfc5c-66b7-414d-a7d2-f71fdeaa6c51 {"pid": "5277", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/226272893"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:36.214184 2024-09-11 09:05:36.214188 c9ebe448-491e-4408-b7fe-7c942aa18317 {"pid": "5278", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/226304108"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:36.267101 2024-09-11 09:05:36.267104 7011ad2a-09d4-434e-a190-e162476e7a23 {"pid": "5279", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/226336328"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:36.318268 2024-09-11 09:05:36.318271 a111b5d4-be07-43a3-b101-6c792e07d30a {"pid": "5280", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/226372294"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:36.372571 2024-09-11 09:05:36.372576 e777ec4a-8d17-4d7b-b0b5-8186fb1ed97e {"pid": "5281", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/226411354"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:36.429052 2024-09-11 09:05:36.429057 8a4e43ce-05a8-4d52-8dbe-6a854a9acea3 {"pid": "5282", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/22676026X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:36.485255 2024-09-11 09:05:36.48526 d4ebeac6-ce41-45bc-acb8-2bf580a7f407 {"pid": "5283", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/226865037"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:36.539099 2024-09-11 09:05:36.539103 8ae97965-826a-4813-8474-e5403d3761e1 {"pid": "5284", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/226921670"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:36.591661 2024-09-11 09:05:36.591665 031c71c2-c17b-4079-ac6f-127b42434689 {"pid": "5285", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/226932141"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:36.649386 2024-09-11 09:05:36.649389 d7c92c73-d792-46ad-9535-d70478dcd0c4 {"pid": "5286", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/226958728"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105152864169204821729"} 1 +2024-09-11 09:05:36.699919 2024-09-11 09:05:36.699922 427f5d7d-cefe-4e00-9e43-974e9cd834cd {"pid": "5287", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/226964736"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:36.756458 2024-09-11 09:05:36.756462 369b2017-998b-4acb-bc84-1a43d13ea61e {"pid": "5288", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/227130812"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112152864214604822990"} 1 +2024-09-11 09:05:36.874865 2024-09-11 09:05:36.874868 0ab31f0d-a1fc-4ed7-b883-a1f8a8c2ddb7 {"pid": "5289", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/227236610"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:36.9309 2024-09-11 09:05:36.930904 57cd8725-8683-4ff4-913c-6b846cf48723 {"pid": "5290", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/227237382"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:37.04722 2024-09-11 09:05:37.047225 b0edeff0-08fd-4800-8db7-3cdab4efb600 {"pid": "5292", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/227327551"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103153124329024491575"} 1 +2024-09-11 09:05:37.101102 2024-09-11 09:05:37.101105 e70fcc5e-c324-490b-a20f-e546899b5eba {"pid": "5293", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/227475453"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:37.16457 2024-09-11 09:05:37.164573 7551b099-0012-4751-bc46-2cc225aea9c2 {"pid": "5294", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/22749900X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102153124263324490687"} 1 +2024-09-11 09:05:37.228454 2024-09-11 09:05:37.228457 69eeb3aa-4e07-4f9c-ac48-2706f62a6cb9 {"pid": "5295", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/227511980"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:37.290419 2024-09-11 09:05:37.290422 1ab57bce-4982-4b4b-872f-6618c6d8f0d7 {"pid": "5296", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/227583752"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103153124315724490965"} 1 +2024-09-11 09:05:37.344972 2024-09-11 09:05:37.344975 15c79309-7514-4d09-a192-59f1eae06c91 {"pid": "5297", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/227594509"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:37.400675 2024-09-11 09:05:37.400679 71f0c277-b571-49e3-b7c2-30bff1991386 {"pid": "5298", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/227599055"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:37.453701 2024-09-11 09:05:37.453704 d2ab394f-a50c-4c3e-8a8f-152b17c9b910 {"pid": "5299", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/227616839"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:37.510318 2024-09-11 09:05:37.510321 e9ccedf8-8392-4c25-8daa-6da650de86c7 {"pid": "5300", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/227645278"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:37.571806 2024-09-11 09:05:37.571811 497e5499-919c-4437-a2ff-d872402d7270 {"pid": "5301", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/227762045"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:37.629776 2024-09-11 09:05:37.62978 3f39296b-c580-446e-abb2-97e53f85e7fe {"pid": "5302", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/22779222X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:37.688074 2024-09-11 09:05:37.688078 9ba6405b-3277-450b-a838-5abf55ef9b90 {"pid": "5303", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/227806646"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:37.743467 2024-09-11 09:05:37.743471 7ace9979-c73d-4b86-8c2e-b8cfe510b45c {"pid": "5304", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/227845307"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:37.795172 2024-09-11 09:05:37.795175 a3e6b626-872c-49dd-8cf1-5d222e7fcf57 {"pid": "5305", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/227933923"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:37.846718 2024-09-11 09:05:37.846721 7427c08f-e43e-4e67-b729-a8470b503484 {"pid": "5306", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/22793492X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:37.90029 2024-09-11 09:05:37.900295 ff4ca8f3-adf9-448a-bf1c-90a7eadaa7a5 {"pid": "5307", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/227979303"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:37.966106 2024-09-11 09:05:37.966112 29861c06-32b3-47e0-9c61-720625177a99 {"pid": "5308", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/228238714"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:38.040352 2024-09-11 09:05:38.040355 df210013-9bbc-4946-9df2-3c04bafffeab {"pid": "5309", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/228263050"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101153124270024490533"} 1 +2024-09-11 09:05:38.091867 2024-09-11 09:05:38.091871 34828cf9-e75d-4f0b-b628-709a1054f89c {"pid": "5310", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/228795990"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:38.205035 2024-09-11 09:05:38.205039 b556b7f1-bab6-4aae-a878-0bed6eb25bfd {"pid": "5311", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/228947545"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:38.25659 2024-09-11 09:05:38.256594 adbdb98f-a142-4638-b8de-81f4e67713a0 {"pid": "5312", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/229034713"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:38.307313 2024-09-11 09:05:38.307316 de5ad4f1-ec09-4cb9-8493-be168d8abcdb {"pid": "5313", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/229300324"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:38.358528 2024-09-11 09:05:38.358532 2c6135f0-db9f-4870-a456-ca7db8a91c86 {"pid": "5314", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/229580165"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:38.420178 2024-09-11 09:05:38.420182 c4cfa76b-c462-4534-9780-9a031e9280f3 {"pid": "5315", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/229619231"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107153651772455782407"} 1 +2024-09-11 09:05:38.47276 2024-09-11 09:05:38.472763 e9a6d1a7-89c9-4cda-86e2-7c6683f3736d {"pid": "5316", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/229650473"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:38.529935 2024-09-11 09:05:38.52994 42a6adb8-b8bc-40d7-aebc-97e08996d786 {"pid": "5317", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/229663362"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:38.583445 2024-09-11 09:05:38.583451 d00091d4-4176-41b5-af0c-282bf4306d0a {"pid": "5318", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/229665470"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:38.639923 2024-09-11 09:05:38.639927 824a7f3b-2a68-4ab7-bfd7-0a21c5f04d22 {"pid": "5319", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/229675018"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:38.690629 2024-09-11 09:05:38.690632 8c535dec-f55e-4f04-a859-bb62c4076925 {"pid": "5320", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/229703747"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:38.743796 2024-09-11 09:05:38.7438 6285a88a-b530-438d-aac2-6b3db6f06f21 {"pid": "5321", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/229818676"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:38.800142 2024-09-11 09:05:38.800148 92971398-6cf9-4c6f-ba91-b5a708c67521 {"pid": "5322", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/229845606"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:38.851008 2024-09-11 09:05:38.851012 c1fd1a1b-bfeb-4fda-a91b-bfb2085c3cb0 {"pid": "5323", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/23008964X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:38.902573 2024-09-11 09:05:38.902576 e5bddfcc-506a-439c-91c0-8d7ede8789ae {"pid": "5324", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/230158145"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:38.955081 2024-09-11 09:05:38.955084 364d8290-064b-408b-943c-53d404a6b068 {"pid": "5325", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/230252427"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:39.007421 2024-09-11 09:05:39.007426 adbb4a75-d422-4122-884c-712f0234ff24 {"pid": "5326", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/230252575"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:39.062753 2024-09-11 09:05:39.062757 3da4e2cc-7d02-41b7-8b31-775055f2efba {"pid": "5327", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/230306365"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:39.11657 2024-09-11 09:05:39.116574 69a31851-af6a-4fd5-a20f-f86ce182b63a {"pid": "5328", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/230333885"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:39.198911 2024-09-11 09:05:39.198921 7339e3d7-b498-48fc-b55c-c48731cc25cf {"pid": "5329", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/230389597"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:39.258873 2024-09-11 09:05:39.258878 936d609a-64ca-4da6-9df4-4ccf35d500cf {"pid": "5330", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/230392407"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:39.310468 2024-09-11 09:05:39.310471 832c40d4-4c9f-43d4-ba08-18ba5fd02d64 {"pid": "5331", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/230394477"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:39.364501 2024-09-11 09:05:39.364504 f1f2d0d5-9b4d-40ea-8641-5bd1934bc720 {"pid": "5332", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/230409261"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:39.418597 2024-09-11 09:05:39.418602 0b14f698-0d48-4327-bec7-89af3a286121 {"pid": "5333", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/230421075"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:39.471476 2024-09-11 09:05:39.471483 d07796ea-8325-4c8d-8e9b-b4aab47cae75 {"pid": "5334", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/230487653"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:39.525337 2024-09-11 09:05:39.525341 8ef5f846-2c6e-404e-a0be-5b2635a2c61a {"pid": "5335", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/230499805"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:39.581217 2024-09-11 09:05:39.581222 edcf8226-c167-48ca-9953-387228c26d87 {"pid": "5336", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/23054634X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:39.643706 2024-09-11 09:05:39.64371 d71f5d2e-239b-41df-afd6-bc56bd217fcd {"pid": "5337", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/230568378"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:39.704827 2024-09-11 09:05:39.704833 b78a2001-119a-4656-8730-ae7794a6e3dc {"pid": "5338", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/230663338"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112154196754420110171"} 1 +2024-09-11 09:05:39.75744 2024-09-11 09:05:39.757443 f4f67e81-3d9f-4c33-b490-e3a6be58f389 {"pid": "5339", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/230746608"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:39.81483 2024-09-11 09:05:39.814833 07740d05-a898-420b-85d6-015237c87acf {"pid": "5340", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/230769373"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:39.869169 2024-09-11 09:05:39.869173 1585de16-4a9b-4a7d-992f-a1eb29c0a161 {"pid": "5341", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/230818846"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:39.921624 2024-09-11 09:05:39.921628 5f9c9729-18b3-413f-88f6-c5f66d67c746 {"pid": "5342", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/230825478"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:39.971533 2024-09-11 09:05:39.971539 5cb95ee7-5612-4577-86c7-f12bf7cbe02e {"pid": "5343", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/230880525"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:40.090845 2024-09-11 09:05:40.090849 b762001d-b23b-41d0-a21e-8f5f4f9210d9 {"pid": "5344", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/230956866"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104154196737820111181"} 1 +2024-09-11 09:05:40.14437 2024-09-11 09:05:40.144374 a2636332-465c-4c04-94a6-fe1fafe1dad1 {"pid": "5345", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/230969267"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:40.197872 2024-09-11 09:05:40.197877 030c78ac-63cf-4b2a-bf91-f065ce7c313a {"pid": "5346", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/231084056"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:40.250815 2024-09-11 09:05:40.25082 879a2abe-8ca7-4e67-8dd3-6365d55daa24 {"pid": "5347", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/231252188"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:40.302222 2024-09-11 09:05:40.302225 b19f48ee-3392-4a3b-84a0-719c5dc807a2 {"pid": "5348", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/231276729"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:40.354836 2024-09-11 09:05:40.35484 36dd5e82-c510-470e-97a0-cae4e5e1e9a1 {"pid": "5349", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/231291779"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:40.41112 2024-09-11 09:05:40.411124 4cb8e6ae-9e5f-4e5c-8ab7-7c2cbce5b0e9 {"pid": "5350", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/231292856"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:40.471588 2024-09-11 09:05:40.471593 cdaf5b5a-23d7-4552-a822-e09e3bd69e8a {"pid": "5351", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/231295405"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:40.535725 2024-09-11 09:05:40.53573 b4308bad-348e-499b-aa69-2f042c517bee {"pid": "5352", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/231314116"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:40.590904 2024-09-11 09:05:40.590907 5b39a00c-0320-49ad-b9b7-e7f8c522fd62 {"pid": "5353", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/231372507"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:40.65133 2024-09-11 09:05:40.651333 f137c0c8-d4a1-417e-80fa-bf90deb4ded9 {"pid": "5354", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/231381476"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:40.708326 2024-09-11 09:05:40.708329 50fa17d1-c68c-4852-bbf2-1cf7ffed503b {"pid": "5355", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/231381964"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:40.763149 2024-09-11 09:05:40.763152 f8a1b39e-baf0-4a41-9d9b-740404ad8b16 {"pid": "5356", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/231451555"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:40.82177 2024-09-11 09:05:40.821774 b352f30d-a377-46e8-896f-1192162d3266 {"pid": "5357", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/231480520"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:40.886116 2024-09-11 09:05:40.886121 3c8f07f7-a9d9-415e-ab06-2373c0a5d89f {"pid": "5358", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/231537743"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11277319"} 1 +2024-09-11 09:05:40.93888 2024-09-11 09:05:40.938889 dc8ebec2-0ea2-472e-b803-bd602d3c0d3a {"pid": "5359", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/231540957"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:40.997257 2024-09-11 09:05:40.997261 59cdce57-a5c2-40e6-a498-c3735ba2de93 {"pid": "5360", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/231623739"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:41.052188 2024-09-11 09:05:41.052192 b7aa2495-f12b-43ff-b00b-23171a0f7a80 {"pid": "5361", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/231934203"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:41.106317 2024-09-11 09:05:41.106321 9414584e-8d95-4be3-9d29-6f6f60d4abf7 {"pid": "5362", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232202699"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:41.222758 2024-09-11 09:05:41.222761 a1f17a3d-a2b9-42c4-bc33-3b7a6d54b6fc {"pid": "5363", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232343446"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:41.284982 2024-09-11 09:05:41.284987 a84960bc-b15f-4aa1-af9e-6db8fd88a7e5 {"pid": "5364", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232523703"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:35.609555 2024-09-11 09:05:41.345169 18ac4a3e-e279-4340-b372-73c402adcd9f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1159284946"}, "pid": "1518", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232530343"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102935131"} 2 +2024-09-11 09:05:41.40331 2024-09-11 09:05:41.403316 9bfb0f54-2eb9-4c64-8932-18b97c2767cb {"pid": "5365", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232640858"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:41.461907 2024-09-11 09:05:41.461911 8e9fc534-03aa-43df-b1b5-13e00656051b {"pid": "5366", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232656770"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103154739822952990437"} 1 +2024-09-11 09:05:41.520496 2024-09-11 09:05:41.5205 4fe1fd4f-2fd1-41d6-ac30-df0cf2d1a682 {"pid": "5367", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232674450"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110154739844052991589"} 1 +2024-09-11 09:05:41.57639 2024-09-11 09:05:41.576394 50498e68-94fb-45c0-a91d-a6c0278f08a9 {"pid": "5368", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232696551"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:41.629829 2024-09-11 09:05:41.629832 dff8a00d-dfe3-4000-adc3-abe0e925ee69 {"pid": "5369", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232702845"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:41.688301 2024-09-11 09:05:41.688307 4ab8f621-6a0d-4179-85fd-0318c0195e87 {"pid": "5370", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/23272377X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:41.747524 2024-09-11 09:05:41.747529 1f68bcdf-7eab-4ded-a100-341b7b187b86 {"pid": "5371", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/23272380X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:41.799841 2024-09-11 09:05:41.799844 e96eb6d8-3ded-4d84-8886-9c632a65ef62 {"pid": "5372", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232774072"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:41.859553 2024-09-11 09:05:41.859557 90bf8933-6806-4b45-8a99-c5c89e5c0080 {"pid": "5373", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232796734"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:41.922059 2024-09-11 09:05:41.922062 ed5defa4-be8b-4413-81b4-0499b38f7968 {"pid": "5374", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232804788"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105154739909452991974"} 1 +2024-09-11 09:05:41.976769 2024-09-11 09:05:41.976773 8c2112da-215e-4c81-a3c4-282b0a825dbb {"pid": "5375", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232805636"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:42.036369 2024-09-11 09:05:42.036374 fb55a99e-ed55-481c-983d-4319cb041c89 {"pid": "5376", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232810265"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:42.091587 2024-09-11 09:05:42.091593 bffe3c1a-5dcf-4c1c-962a-0799336e7a85 {"pid": "5377", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232813116"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:42.144302 2024-09-11 09:05:42.144305 83dd1dd6-d95e-4876-818c-b73a63dbf530 {"pid": "5378", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232862583"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:42.203196 2024-09-11 09:05:42.2032 47f0e527-53d6-4b26-8d3f-33757c85a413 {"pid": "5379", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232868468"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:42.25796 2024-09-11 09:05:42.257963 c527108c-fa15-4dd9-b3ed-a2cc84d0f854 {"pid": "5380", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232869278"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:42.387607 2024-09-11 09:05:42.387611 3cf056aa-86d9-4bd0-9ba6-8b1c58f84602 {"pid": "5381", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232897964"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:42.445496 2024-09-11 09:05:42.4455 309a29bf-4b1b-4f6c-a2fa-1e9500b11ada {"pid": "5382", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232915741"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:42.50264 2024-09-11 09:05:42.502645 5cd31622-cda8-47eb-a731-c3dd25a21765 {"pid": "5383", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/232934436"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:42.565978 2024-09-11 09:05:42.565982 667fda30-c8e7-428f-970a-10f1ffb7d771 {"pid": "5384", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/233220984"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105154981764267741203"} 1 +2024-09-11 09:05:42.695083 2024-09-11 09:05:42.695087 c54a4119-1a7d-47cc-b55d-7eef7cf2b08b {"pid": "5385", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/233251073"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:42.754817 2024-09-11 09:05:42.754823 002cf06f-1026-4c6b-9ec9-cab80e90f277 {"pid": "5386", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/233326103"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109154981789567740808"} 1 +2024-09-11 09:05:42.812108 2024-09-11 09:05:42.812111 db387c20-f98b-4614-9c85-a9ef1591df5a {"pid": "5387", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/233342575"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:42.868116 2024-09-11 09:05:42.868121 27ed183e-0205-40bc-96a5-1c59a5f4790b {"pid": "5388", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/233346562"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:42.923195 2024-09-11 09:05:42.923198 563155a9-2e2f-471a-b726-b73325f70139 {"pid": "5389", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/23352391X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:42.976049 2024-09-11 09:05:42.976053 06682a63-9213-4f73-af39-e254d86c0d40 {"pid": "5390", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/233537155"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:43.03149 2024-09-11 09:05:43.031494 e8f81552-a478-4500-9e63-ca461ab10c79 {"pid": "5391", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/233564373"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:43.090206 2024-09-11 09:05:43.090209 9e5bd6e3-2e7b-4389-9c6f-f0509b2ae88d {"pid": "5392", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/233619771"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:43.143691 2024-09-11 09:05:43.143695 356069e6-1364-4402-95ef-be74fe161669 {"pid": "5393", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/233969829"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:43.197909 2024-09-11 09:05:43.197913 ef076e6b-9a70-4374-84c4-4aefbd4b6785 {"pid": "5394", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234087080"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:43.254845 2024-09-11 09:05:43.254849 167dc376-6b04-457b-b73c-12b90b02d736 {"pid": "5395", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234195576"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107157098572872552794"} 1 +2024-09-11 09:05:43.311571 2024-09-11 09:05:43.311575 3df09201-1e93-4134-8d16-8a9676d206d9 {"pid": "5396", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234199180"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:43.368703 2024-09-11 09:05:43.368708 0c36e6da-894a-45f5-a2e4-a297f08727d4 {"pid": "5397", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234246820"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100157098566972552382"} 1 +2024-09-11 09:05:43.42664 2024-09-11 09:05:43.426644 c640c3a2-e004-44be-99b2-eeb5e99e02c0 {"pid": "5398", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234251433"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106157098586572552944"} 1 +2024-09-11 09:05:43.485003 2024-09-11 09:05:43.485009 f7a677b9-5be2-4aa7-8336-a38370d3d00a {"pid": "5399", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234251867"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109157098333572550356"} 1 +2024-09-11 09:05:43.538915 2024-09-11 09:05:43.53892 eb62add5-c3d9-4148-8dda-101e05b56f8a {"pid": "5400", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234252006"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:43.593501 2024-09-11 09:05:43.593506 3acb5f41-0cd5-4d71-8c92-699dac768caa {"pid": "5401", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234273771"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:43.652171 2024-09-11 09:05:43.652174 0daac6ba-dc4f-4e92-8502-bdaaa99d0183 {"pid": "5402", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234277602"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:43.704182 2024-09-11 09:05:43.704184 285fb0dd-664b-4b7a-8da6-79da600722c5 {"pid": "5403", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234278390"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:43.75603 2024-09-11 09:05:43.756033 9a798e84-9c48-4c51-9b7a-42243dc32a8e {"pid": "5404", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234317566"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:43.82123 2024-09-11 09:05:43.821235 a9eb2635-a9df-4e04-9d8c-6947b8613d43 {"pid": "5405", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234340487"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:43.876884 2024-09-11 09:05:43.876888 d5b1b622-ad30-49a0-974a-9d7d9ef2bda7 {"pid": "5406", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234363053"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:43.928989 2024-09-11 09:05:43.928994 b76a4cc7-1b63-42e7-abc5-5122d8b3e6f6 {"pid": "5407", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234417765"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:43.981506 2024-09-11 09:05:43.98151 a8055ec1-218d-4881-9303-8fbaac73624f {"pid": "5408", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234443693"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:44.037019 2024-09-11 09:05:44.037021 1d019556-0a19-42d8-bd27-6e59ba3f3324 {"pid": "5409", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234449381"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:44.091501 2024-09-11 09:05:44.091505 7401dcf6-7f34-41df-9e59-afbb168a67b2 {"pid": "5410", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234468718"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:44.15172 2024-09-11 09:05:44.151726 3411bc08-75d7-4d2a-9a19-6506398a7a9d {"pid": "5411", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234477644"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:44.205939 2024-09-11 09:05:44.205943 87ac6215-f991-4696-b7c6-90e2f2cfb906 {"pid": "5412", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/23449140X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:44.258858 2024-09-11 09:05:44.258863 78cdb784-8269-435a-81b2-79715715fac2 {"pid": "5413", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234536535"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:44.313507 2024-09-11 09:05:44.313512 6658a061-af58-4830-beae-6c49cb1a0fe5 {"pid": "5414", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234569182"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:44.429198 2024-09-11 09:05:44.429202 8ae2e07e-a66a-4657-a3b8-110cd420247f {"pid": "5415", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/23459313X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:44.491291 2024-09-11 09:05:44.491295 70769eb8-d352-4c45-8785-f877ecab0d79 {"pid": "5416", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234622512"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:44.546882 2024-09-11 09:05:44.546886 2498b3fb-4e2f-4037-9f97-276ccc235c77 {"pid": "5417", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234673672"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:44.662223 2024-09-11 09:05:44.662226 04f74db6-3995-4793-a982-8e0df406f218 {"pid": "5418", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234745479"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:44.717772 2024-09-11 09:05:44.717776 5d538348-b198-4c0d-99ff-c802a1fe1310 {"pid": "5419", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/23475382X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:44.775297 2024-09-11 09:05:44.775301 cd140879-4d6b-4c7f-9730-eb7dcb11847e {"pid": "5420", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234776439"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:44.836596 2024-09-11 09:05:44.836602 b299c392-ee12-449c-ba9c-e6759a38058d {"pid": "5421", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234777079"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:44.895189 2024-09-11 09:05:44.895193 03c93822-e1c8-4def-8fe9-dace74e77280 {"pid": "5422", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234811080"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:44.954342 2024-09-11 09:05:44.954346 78105941-9052-4d3e-9f2e-7f4e893f6fb4 {"pid": "5423", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234843160"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:45.016121 2024-09-11 09:05:45.016125 c9c4ab07-55a6-482e-b935-87eaf55afeb3 {"pid": "5424", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234849223"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:45.085993 2024-09-11 09:05:45.085997 b5aab113-4a93-4960-a451-274b697a9ae8 {"pid": "5425", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/235030929"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100155767374427761206"} 1 +2024-09-11 09:05:45.142502 2024-09-11 09:05:45.142506 a1e2a8a8-4cb8-4f5c-9109-64492708a64c {"pid": "5426", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/235031771"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:45.199586 2024-09-11 09:05:45.199589 7da34902-5729-448d-ad6e-396ccaabd03b {"pid": "5427", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/235057657"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108155767374927760071"} 1 +2024-09-11 09:05:45.252967 2024-09-11 09:05:45.252971 5242a157-37e0-4756-a4d5-7b7c03489328 {"pid": "5428", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/235095273"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:45.312108 2024-09-11 09:05:45.312112 d4bd072a-32a4-416d-9019-72954ecaa476 {"pid": "5429", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/235097306"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111155767377327761529"} 1 +2024-09-11 09:05:45.365942 2024-09-11 09:05:45.365945 b2edec7a-aec0-4729-9f24-ad9adb3c2119 {"pid": "5430", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/23515606X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:45.42365 2024-09-11 09:05:45.423654 2529782d-400e-4289-ac2c-2937eaadc735 {"pid": "5431", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/235183881"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:45.478122 2024-09-11 09:05:45.478124 ae9aa26a-86a9-4b2e-8bfe-57f41cd6bec5 {"pid": "5432", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/235239593"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:45.535648 2024-09-11 09:05:45.535653 0d598716-eab1-4b67-84c2-24ea39766082 {"pid": "5433", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/235262927"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:45.651953 2024-09-11 09:05:45.651955 3440ea37-bb7c-4e15-8458-c6a74daabefe {"pid": "5435", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/235301108"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:45.761555 2024-09-11 09:05:45.761558 a999548e-904e-4a44-b582-50b3fc16e5b1 {"pid": "5437", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/235328790"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:45.885011 2024-09-11 09:05:45.885014 ad6131d8-fc3a-48ad-9138-b8c7877d623f {"pid": "5439", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/235598720"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:45.941534 2024-09-11 09:05:45.941538 dd8b0b41-95e2-42a3-b175-0097e340e474 {"pid": "5440", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/235711667"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:45.994875 2024-09-11 09:05:45.994878 7f695a1a-822f-4ff4-b040-34505a2a1c5b {"pid": "5441", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/235718211"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:46.052957 2024-09-11 09:05:46.052962 8e9306a9-a521-4da2-bfcf-88375a6ee093 {"pid": "5442", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/235835943"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:46.125633 2024-09-11 09:05:46.125637 90aa3ca9-34c2-4cc1-a309-12e3b5ff26bb {"pid": "5443", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/235860131"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:46.196419 2024-09-11 09:05:46.196425 fbb80409-58d5-43e9-b34d-559344d4683b {"pid": "5444", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/235909025"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:46.256968 2024-09-11 09:05:46.256973 3a070228-4602-4521-92d1-cafa4a4fe650 {"pid": "5445", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/236048198"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:46.309784 2024-09-11 09:05:46.309788 8245e830-daf3-4695-a68e-bd8d8245a347 {"pid": "5446", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/236052616"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:46.366921 2024-09-11 09:05:46.366924 c364c74f-81d9-4807-98b6-6b9d63aaabd8 {"pid": "5447", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/236100599"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:46.422441 2024-09-11 09:05:46.422445 8f974729-7e2d-402c-975f-44fca99a2bc2 {"pid": "5448", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/236101706"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:46.478415 2024-09-11 09:05:46.478418 81833f42-8d7b-4e5d-9c82-db736b940694 {"pid": "5449", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/236118668"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:46.533614 2024-09-11 09:05:46.533617 4702968a-cfad-40c8-9e4d-b1c7905e48d4 {"pid": "5450", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/236167510"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:46.588595 2024-09-11 09:05:46.588598 c9e25507-5331-4499-8113-d055e41a8b3f {"pid": "5451", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/236210424"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:46.645545 2024-09-11 09:05:46.645549 1d7d76db-0974-49ef-9db3-dec14164be14 {"pid": "5452", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/236421603"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:46.700321 2024-09-11 09:05:46.700326 b7d4e73e-a1e6-4e20-ab6c-b69f380587ed {"pid": "5453", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/236517627"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109156251790007991180"} 1 +2024-09-11 09:05:46.75081 2024-09-11 09:05:46.750817 6620aa97-2da6-42dc-86f5-f407e2ca9317 {"pid": "5454", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/236553917"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:46.802497 2024-09-11 09:05:46.802499 ed8154e9-cfed-45d9-8a0c-771e7b9341f4 {"pid": "5455", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/236613529"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:46.856608 2024-09-11 09:05:46.856611 8a28b817-a983-43f1-b6d0-59e1e7b12cdf {"pid": "5456", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/236615165"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:46.911972 2024-09-11 09:05:46.911976 c0b65a34-a031-42a7-9efc-678f7c5b756f {"pid": "5457", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/236625284"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:46.964025 2024-09-11 09:05:46.96403 c3d79d83-0940-4b88-a46b-33cffc84c96b {"pid": "5458", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/236722344"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:47.018127 2024-09-11 09:05:47.018137 97ca42c1-efae-4e52-9fe4-c76bfdc1dc00 {"pid": "5459", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/236724371"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:47.072059 2024-09-11 09:05:47.072063 773f67e0-6f40-440e-838f-9dfb932db339 {"pid": "5460", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/236751964"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:47.12675 2024-09-11 09:05:47.126752 32acc044-d8e0-4eea-9d86-80c5d71ab866 {"pid": "5461", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/236752677"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:45.709471 2024-09-11 09:07:50.88781 99dd8bf8-c467-4bc3-a08e-66bedb2fd082 {"pid": "5436", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025688432"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/235301787"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1043155284875187062000"} 2 +2024-09-11 09:05:45.822967 2024-09-11 09:08:02.059999 de687259-c1aa-4337-81f9-21b9b919b8bb {"pid": "5438", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027745860"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/235561584"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11152329229202672289"} 2 +2024-09-11 09:05:47.188992 2024-09-11 09:05:47.188997 be942689-e46c-4645-8564-825f945ba8b8 {"pid": "5462", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/236755889"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:47.244874 2024-09-11 09:05:47.244878 a523bd32-f8c3-45a4-8d5a-b22f4d942d44 {"pid": "5463", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/236758349"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:47.308414 2024-09-11 09:05:47.308418 728cb06a-9361-4276-91f7-6f6318cf7ef0 {"pid": "5464", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/236760378"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:47.363192 2024-09-11 09:05:47.363197 9be3dae5-b994-4d7e-b3e4-00aecaf433d9 {"pid": "5465", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/236792539"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:47.414725 2024-09-11 09:05:47.414729 2eca11bc-1ee4-4a8c-bf9c-35c81c1b2d64 {"pid": "5466", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/237190109"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:47.533574 2024-09-11 09:05:47.533576 b98199bf-6160-4593-8147-5516dc59efbe {"pid": "5467", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/237613883"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:47.591397 2024-09-11 09:05:47.591401 40231dd2-9ead-48d3-8812-13cccbd59e0f {"pid": "5468", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/237634260"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11152561494415440828"} 1 +2024-09-11 09:05:47.643525 2024-09-11 09:05:47.643529 2047fcdd-a0ca-4c6a-818b-ec6d591578db {"pid": "5469", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/237678373"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:47.698029 2024-09-11 09:05:47.698034 853de8bd-5121-45f1-88f5-645befc9bf31 {"pid": "5470", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/23771745X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:47.752416 2024-09-11 09:05:47.752421 52d5a0c6-452c-46da-b295-85b48e5cb47d {"pid": "5471", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/237781565"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:47.808025 2024-09-11 09:05:47.808028 0219c8d7-b098-4ca8-b228-1954696cb949 {"pid": "5472", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/237801221"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:47.863334 2024-09-11 09:05:47.863339 d2f4bba2-cdce-40b9-814d-075fea9c3742 {"pid": "5473", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/237825457"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:47.981932 2024-09-11 09:05:47.981935 1c317e82-feec-44d1-9f44-6c71180602b6 {"pid": "5474", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/23789615X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:48.0445 2024-09-11 09:05:48.044505 145b997d-ba10-4268-a08c-df2bb9fcf0ec {"pid": "5475", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/238282694"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1063157100614072740000"} 1 +2024-09-11 09:05:48.106855 2024-09-11 09:05:48.106859 41dca930-5d6f-414d-aeda-986aa3260a2c {"pid": "5476", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/238303845"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:48.16411 2024-09-11 09:05:48.164115 c5227539-3f1e-4941-8be9-2516eea99808 {"pid": "5477", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/23830566X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:48.220476 2024-09-11 09:05:48.220479 266514e2-0efa-421c-93b9-c000ad4a874e {"pid": "5478", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/238472345"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:48.270058 2024-09-11 09:05:48.270061 c0df2272-0275-4c7d-ab9b-6f4290737cb1 {"pid": "5479", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/238526852"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:48.325144 2024-09-11 09:05:48.325148 a5769ebc-cf27-489d-a99b-481e9568b411 {"pid": "5480", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/238572366"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:48.389735 2024-09-11 09:05:48.389741 7c4c4ce2-9c4c-4e8e-81aa-9227d81f0e3f {"pid": "5481", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/238704750"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:48.447525 2024-09-11 09:05:48.447529 d4fabc90-d2b3-476e-ac7b-5b477d9faa25 {"pid": "5482", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/238709906"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:48.507498 2024-09-11 09:05:48.507503 9972d9fb-a52f-4864-940a-7e1adad11fd2 {"pid": "5483", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/238712435"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105157340820509922864"} 1 +2024-09-11 09:05:48.566677 2024-09-11 09:05:48.566682 9111d0bb-5723-4fec-9c8d-9108ba3cac2d {"pid": "5484", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/238721892"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:48.617425 2024-09-11 09:05:48.617428 2fd5f592-e47e-44a9-ab6a-bbc6574ccd2f {"pid": "5485", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240085930"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:48.668629 2024-09-11 09:05:48.668632 65950a4b-906a-40cf-aedf-cc1d0414bd44 {"pid": "5486", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240100786"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:48.720211 2024-09-11 09:05:48.720214 8605fc1e-f332-4690-8454-8749527c8d3c {"pid": "5487", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240195523"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:48.775322 2024-09-11 09:05:48.775326 aba1c523-9048-464a-b55a-855de97f091f {"pid": "5488", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240228448"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "113157340586609920630"} 1 +2024-09-11 09:05:48.890057 2024-09-11 09:05:48.890062 548d9c42-4a0a-46dd-89f5-b2252c516ad7 {"pid": "5489", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240280539"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:48.947042 2024-09-11 09:05:48.947047 0e7f91c9-ede5-456e-9449-dcbaaf80cdb5 {"pid": "5490", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240312724"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100157340811009922640"} 1 +2024-09-11 09:05:49.005508 2024-09-11 09:05:49.005511 a6c9a032-edfa-4651-91ac-2c6b01297491 {"pid": "5491", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240401891"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:49.06167 2024-09-11 09:05:49.061675 c77fe47e-6f18-4112-b3fd-be4ef45be819 {"pid": "5492", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240413741"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:49.123682 2024-09-11 09:05:49.123685 59bccbce-ef03-4b5f-a8ed-0b20c3366c5f {"pid": "5493", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240416082"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:49.181996 2024-09-11 09:05:49.182 0831443b-d4fb-4312-bfba-3307f0a7529f {"pid": "5494", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240441516"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:49.238097 2024-09-11 09:05:49.238101 02377fe2-69b6-4fc5-8d93-7c5040738be4 {"pid": "5495", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240465067"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:49.290135 2024-09-11 09:05:49.29014 a1fc66db-f900-4512-829e-d4ee47eb2d2e {"pid": "5496", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240522737"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:49.343767 2024-09-11 09:05:49.343771 5986f2ed-65b0-4b5e-9205-6b64c425a8ab {"pid": "5497", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240554868"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:49.399896 2024-09-11 09:05:49.3999 e16089f6-93cd-4fce-bd92-84b090bfc7ea {"pid": "5498", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240646339"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:45.270133 2024-09-11 09:05:49.523156 48407570-dcc8-413c-86c8-df078cb3e5e9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1190043440"}, "pid": "1684", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240816773"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108146573961738102281"} 2 +2024-09-11 09:05:49.594234 2024-09-11 09:05:49.594238 f3c446f5-6081-4632-8dc7-68b779239ba9 {"pid": "5499", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240825187"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "113157581572633780365"} 1 +2024-09-11 09:05:49.649907 2024-09-11 09:05:49.64991 61b61197-4fae-4a99-bd3e-7107e5daa3fe {"pid": "5500", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240863062"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:49.703843 2024-09-11 09:05:49.703845 900bc547-a119-454e-8382-3ad934ef0f42 {"pid": "5501", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240922344"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:49.757988 2024-09-11 09:05:49.757992 4333db35-b212-4321-a530-dd102ff4e4ab {"pid": "5502", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240936094"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:49.813649 2024-09-11 09:05:49.813653 e3956e53-f750-43dd-8da5-d1ef2f42a6ba {"pid": "5503", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240965280"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:49.869732 2024-09-11 09:05:49.869735 7cf28145-aa51-48a2-be12-2287fa6b2d9a {"pid": "5504", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240984374"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:49.932098 2024-09-11 09:05:49.932101 7952f656-8025-449c-9f31-d6b50364dee7 {"pid": "5505", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/240987195"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1009164479543226210009"} 1 +2024-09-11 09:05:49.986376 2024-09-11 09:05:49.986382 3df477c1-aedd-41c7-8dc2-7fbab5289233 {"pid": "5506", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/241130921"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:50.047906 2024-09-11 09:05:50.04791 8ba1bb4f-c092-4093-a719-3b19aee845a2 {"pid": "5507", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/241164168"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106157581693233781443"} 1 +2024-09-11 09:05:50.100945 2024-09-11 09:05:50.100949 16821181-7cf1-40fe-8c43-228720c46de5 {"pid": "5508", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/241297230"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:50.162676 2024-09-11 09:05:50.162682 daba2e17-4277-4458-8c37-ae3061f46c6b {"pid": "5509", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/241375908"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11163567689616381416"} 1 +2024-09-11 09:05:50.226889 2024-09-11 09:05:50.226893 fee03328-3da7-4ca2-a285-3e039b067270 {"pid": "5510", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/241428017"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:50.287032 2024-09-11 09:05:50.287035 12f38868-2d67-45ea-bad7-c523cdbe4624 {"pid": "5511", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/241442567"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:50.342623 2024-09-11 09:05:50.342625 990820c9-93b9-41fa-b0a7-804db5f1bdf5 {"pid": "5512", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/241463548"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:50.39911 2024-09-11 09:05:50.399116 7cbd9756-c014-4bc8-b1d7-2e1ca3c94f9e {"pid": "5513", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/241506662"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:50.464236 2024-09-11 09:05:50.464241 600262ac-56ed-4151-890d-a3b8eaf1a2d8 {"pid": "5514", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/241515033"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106157882778560440758"} 1 +2024-09-11 09:05:50.523793 2024-09-11 09:05:50.523796 f320dc49-cd44-4f8d-9887-29bdcce6413a {"pid": "5515", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/241527104"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112157882789360440474"} 1 +2024-09-11 09:05:50.577676 2024-09-11 09:05:50.57768 748bf06b-c4ca-4bbd-bd09-904e31ff2540 {"pid": "5516", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/241542162"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:50.637207 2024-09-11 09:05:50.637211 9d206d9d-49bb-42af-80c7-292d15e01114 {"pid": "5517", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/241568137"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110157882894160441188"} 1 +2024-09-11 09:05:50.697696 2024-09-11 09:05:50.697701 9cbfa85b-dbee-4abe-bb24-4f6d585d9b0d {"pid": "5518", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/24157899X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:50.762265 2024-09-11 09:05:50.762269 32a27bf0-8892-4f6e-939b-f355867b01cf {"pid": "5519", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/241716853"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100158125062614931187"} 1 +2024-09-11 09:05:50.825051 2024-09-11 09:05:50.825055 281cea79-2711-4ee9-bc7a-057f94a77872 {"pid": "5520", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/24172726X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104158124944614930328"} 1 +2024-09-11 09:05:50.878053 2024-09-11 09:05:50.878057 e6a578ea-87ed-4122-b8d8-8fd410951a46 {"pid": "5521", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/241765528"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:50.932123 2024-09-11 09:05:50.932128 fdbe96bc-e4ee-48b1-9cfa-23970173cc70 {"pid": "5522", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/241771188"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:50.987739 2024-09-11 09:05:50.987744 d1175750-7f15-45d4-87b3-ecc5541a5994 {"pid": "5523", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/24185055X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:51.036602 2024-09-11 09:05:51.036606 0206452b-8c52-4827-a043-a80ae50740e9 {"pid": "5524", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/241923018"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:51.091715 2024-09-11 09:05:51.091719 c03f1721-f381-4f49-839d-d4e091792194 {"pid": "5525", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/241957176"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:51.210827 2024-09-11 09:05:51.210831 470dc074-84b9-42bd-8bc7-794e61af4723 {"pid": "5526", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/242143814"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108158125194914932600"} 1 +2024-09-11 09:05:51.277788 2024-09-11 09:05:51.277792 434b0ea2-c120-43d8-8aff-926a74e5af31 {"pid": "5527", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/242274455"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103158367742101281463"} 1 +2024-09-11 09:05:51.337034 2024-09-11 09:05:51.337037 887cf40c-3bb0-48b5-ae82-556b69b03564 {"pid": "5528", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/242293557"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105158367615801280606"} 1 +2024-09-11 09:05:51.386834 2024-09-11 09:05:51.386839 096808e6-e9fa-45e6-b50c-2d88d144dd0d {"pid": "5529", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/242323375"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:51.44141 2024-09-11 09:05:51.441413 810d78fb-44e1-4c63-ba92-144405c239dc {"pid": "5530", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/242335608"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:51.501511 2024-09-11 09:05:51.501514 e376dd07-6e27-4e6f-be0d-4d84cd52f242 {"pid": "5531", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/242414826"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:51.553504 2024-09-11 09:05:51.553508 5ffe2c73-5064-4025-8a82-0c45dddbe6ff {"pid": "5532", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/242426832"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:51.610227 2024-09-11 09:05:51.61023 f0fa0f08-a941-4e8f-a771-538aa41a7e08 {"pid": "5533", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/242433995"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:51.667932 2024-09-11 09:05:51.667935 fc06b5e8-2f27-4f42-b131-7aa31d99223b {"pid": "5534", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/242448771"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:51.718965 2024-09-11 09:05:51.718969 f6e69ffa-d2d5-42a8-b2ee-c170008fe2e8 {"pid": "5535", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/242451098"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:51.775381 2024-09-11 09:05:51.775385 87ddaba2-ccea-446d-8a68-148c01412c8d {"pid": "5536", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/24245383X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103158367618801280320"} 1 +2024-09-11 09:05:51.83847 2024-09-11 09:05:51.838474 a198864b-22f4-4733-81dd-a4abb66b8bfb {"pid": "5537", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/242518664"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:51.89329 2024-09-11 09:05:51.893294 8b39951c-e005-4c6a-8627-292b9ad444a6 {"pid": "5538", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/242542948"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:51.945337 2024-09-11 09:05:51.94534 fcbfd930-f99b-472f-8e5c-b0cf73002481 {"pid": "5539", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/242557139"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:52.001543 2024-09-11 09:05:52.001546 8377d02f-8f78-45a7-85c6-620b65206a68 {"pid": "5540", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/242723470"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:52.058272 2024-09-11 09:05:52.058276 c25bd2ec-1aea-480d-850a-0c1b6377387c {"pid": "5541", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/242740065"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:52.110065 2024-09-11 09:05:52.110068 fdb10840-3f22-4a6d-852b-7c58e3336796 {"pid": "5542", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/242756220"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:52.161007 2024-09-11 09:05:52.161011 514504b6-aaed-4d1d-8d12-990f4c64c1c6 {"pid": "5543", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/242866441"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:52.292391 2024-09-11 09:05:52.292395 0a7f8cdb-9b53-4ba8-b254-68db6fc2c333 {"pid": "5544", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243004028"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:52.349128 2024-09-11 09:05:52.349132 f443d1bc-77cc-4392-ac62-4819a47e2114 {"pid": "5545", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243016271"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:52.402534 2024-09-11 09:05:52.402539 9ecb69db-fa2f-47d2-927f-fb27a6b74805 {"pid": "5546", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243031599"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:52.456964 2024-09-11 09:05:52.456968 39a8d7a4-f214-44af-8ec0-3daa51fccc7b {"pid": "5547", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243035411"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:52.511838 2024-09-11 09:05:52.511842 bacf9552-ddc3-4868-91d6-edadf68967ce {"pid": "5548", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243035632"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:52.568631 2024-09-11 09:05:52.568635 8dfa6be8-51e7-4e71-a7e5-089836ce1128 {"pid": "5549", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243036620"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:52.624075 2024-09-11 09:05:52.624081 93f0efb0-c527-42e1-9888-83ee0bbb0cba {"pid": "5550", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243043619"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:56.106573 2024-09-11 09:06:33.938281 c1be0ec3-e855-4096-aa38-f6f36c11c641 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1056159278"}, "pid": "858", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003300349"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/250664968"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100649386"} 3 +2024-09-11 09:05:52.737428 2024-09-11 09:05:52.73743 50332fa5-1136-4e95-af81-881419f57c6f {"pid": "5552", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243138016"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:52.789388 2024-09-11 09:05:52.789391 c41ce904-8bf5-4169-ad3f-9c3dba7ed07c {"pid": "5553", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243154666"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:52.841817 2024-09-11 09:05:52.841821 463a3e0a-520b-413c-bdf9-6dffed8ba711 {"pid": "5554", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243208294"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:52.895589 2024-09-11 09:05:52.895594 51c25dc8-f62b-4918-83f6-2eb7db07a03f {"pid": "5555", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243209983"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:52.955157 2024-09-11 09:05:52.95516 a1d34b2c-8553-493c-92e6-216d54cebc3a {"pid": "5556", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243266413"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:53.013516 2024-09-11 09:05:53.013521 f98d510d-706d-47c8-9518-7ae753ff9f10 {"pid": "5557", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243279795"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:53.071108 2024-09-11 09:05:53.071112 0be29107-ecac-4537-9222-2b3abc8c516e {"pid": "5558", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243300131"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:53.132396 2024-09-11 09:05:53.132399 143e0d11-af3c-4c97-ba66-7d13a1dd588c {"pid": "5559", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243306032"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:53.183823 2024-09-11 09:05:53.183827 58e5ea03-e467-4666-aa1c-e323087af906 {"pid": "5560", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243308442"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:53.238106 2024-09-11 09:05:53.238109 2fefa7d2-570d-4b3e-9a71-7d5870aeb898 {"pid": "5561", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243327463"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:53.292108 2024-09-11 09:05:53.292111 a6634ac4-deac-4aa0-bccc-225bf0c98664 {"pid": "5562", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243330715"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:53.343563 2024-09-11 09:05:53.343566 daccf501-7589-479b-8e1e-844401da02d8 {"pid": "5563", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243363796"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:53.397532 2024-09-11 09:05:53.397537 b05558ba-34b0-453f-90b2-33380dc6e908 {"pid": "5564", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243370261"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:53.451648 2024-09-11 09:05:53.451653 f0b35e6c-27dc-401a-b9f1-ebf888bb237c {"pid": "5565", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243382731"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:53.507518 2024-09-11 09:05:53.507523 ee38a3dc-a6e5-4455-80af-ff9d6b3b82af {"pid": "5566", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243407998"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:53.567169 2024-09-11 09:05:53.567173 9c7b8a03-03d4-4d1a-a814-e3eaeea9f720 {"pid": "5567", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243428421"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:53.626887 2024-09-11 09:05:53.626892 775dbc81-512f-4c5b-8827-51ea41a97efd {"pid": "5568", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243433913"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:53.680941 2024-09-11 09:05:53.680946 2c8fd9f3-c378-43d0-8a83-39609375934d {"pid": "5569", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243488785"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:53.734391 2024-09-11 09:05:53.734394 33443ba8-1034-46f5-8ba2-22bc531b7ffe {"pid": "5570", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/24348951X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:53.790092 2024-09-11 09:05:53.790096 2052ed28-980a-4d17-a10d-8d9317b55b14 {"pid": "5571", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243512155"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:53.846985 2024-09-11 09:05:53.846987 e70670fa-7ad7-42b5-ba1d-9d3f2167618f {"pid": "5572", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243530080"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:53.903817 2024-09-11 09:05:53.90382 ad64e14a-ad6c-4902-81f1-37b14286e2aa {"pid": "5573", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243540434"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:53.964925 2024-09-11 09:05:53.964928 a28e5926-821c-455b-be77-09ee8f453316 {"pid": "5574", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243554001"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:54.025097 2024-09-11 09:05:54.025101 d2c38643-8c2d-43f5-8602-d2783a2e1fa5 {"pid": "5575", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/24355933X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:54.077311 2024-09-11 09:05:54.077336 c0bcd44f-4ff1-4bcb-9d5f-4f9ada6ecb67 {"pid": "5576", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243567634"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:54.136463 2024-09-11 09:05:54.136468 959af23a-877b-481a-813f-e53fd92a75b5 {"pid": "5577", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243577583"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:54.195396 2024-09-11 09:05:54.1954 7981da9e-c1ec-4a64-b855-5bae24063880 {"pid": "5578", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243578482"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:54.248237 2024-09-11 09:05:54.248241 cd807951-b485-4e9a-85ad-d03401ab08fe {"pid": "5579", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243583133"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:54.303803 2024-09-11 09:05:54.303806 272972e2-0fbc-44f2-bf3d-4ac64020dd44 {"pid": "5580", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243594895"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:54.35587 2024-09-11 09:05:54.355875 4f1778f4-551d-4ab7-93c6-54aa8e8af121 {"pid": "5581", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243597827"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:54.414336 2024-09-11 09:05:54.41434 01790f47-9491-454a-945b-e91f71f0f5aa {"pid": "5582", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243602049"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:54.472275 2024-09-11 09:05:54.472279 f3778094-5766-496a-bfe6-5233ff5d4510 {"pid": "5583", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/24360405X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:54.524166 2024-09-11 09:05:54.52417 4b6ab78e-7f50-4c1a-8d22-5346da2cde61 {"pid": "5584", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243621418"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:54.577024 2024-09-11 09:05:54.577026 a23cd399-39a4-482a-9dc2-cd9443925d97 {"pid": "5585", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243630832"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:54.630863 2024-09-11 09:05:54.630868 8be3515f-3eb1-4b65-a691-8713c4f43ed0 {"pid": "5586", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243644124"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:54.689367 2024-09-11 09:05:54.689371 4e99c35e-070f-4f83-85cf-46e6e113bcd7 {"pid": "5587", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243654510"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:54.746218 2024-09-11 09:05:54.746222 b232c8a1-3655-46c1-9f05-71efa663cbf0 {"pid": "5588", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243677596"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:54.80395 2024-09-11 09:05:54.803953 4a87d3cb-6b61-4124-bf20-982ec79ca4a0 {"pid": "5589", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243682603"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:54.857663 2024-09-11 09:05:54.857668 b2aecdae-350d-418a-8e2f-52656436da6b {"pid": "5590", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243689616"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:54.910507 2024-09-11 09:05:54.910512 0b0c144f-4c05-403b-a540-50d666393d56 {"pid": "5591", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243691041"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:54.967092 2024-09-11 09:05:54.967097 e63754c7-07b3-4c43-846a-ea8ab10793ab {"pid": "5592", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243694911"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:55.019647 2024-09-11 09:05:55.019654 f5e20d97-1944-4804-be52-5e697eb6b73e {"pid": "5593", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243698267"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:55.073051 2024-09-11 09:05:55.073055 05df5fb7-405e-41d4-8286-6ca681fd3fb8 {"pid": "5594", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/24370206X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:55.126369 2024-09-11 09:05:55.126373 67144d63-bb3b-4b56-95e0-5c0b62dd044d {"pid": "5595", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243703597"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:55.182288 2024-09-11 09:05:55.182291 4ecf2b2a-fb13-4c68-912c-699a5ba4344c {"pid": "5596", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243712979"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:55.258188 2024-09-11 09:05:55.258194 c91793fe-8bb0-4180-a8ed-8df868f19f29 {"pid": "5597", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243737823"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:55.367799 2024-09-11 09:05:55.367802 afc48cb9-e50e-46f8-8b2b-2a1062b51362 {"pid": "5598", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243741138"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:55.419512 2024-09-11 09:05:55.419514 c7d31f56-7285-4724-8237-8dccd06278aa {"pid": "5599", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243749120"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104620479"} 1 +2024-09-11 09:05:55.472871 2024-09-11 09:05:55.472875 f4268627-e51e-4a0f-874c-1e35606f622e {"pid": "5600", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243803133"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:55.529795 2024-09-11 09:05:55.5298 224a1cc8-799b-4f03-ad13-7adadef09c85 {"pid": "5601", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243814682"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:55.587319 2024-09-11 09:05:55.587323 368a839a-d510-437c-82d6-b336a8dc8b15 {"pid": "5602", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243820984"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:55.642218 2024-09-11 09:05:55.64222 dd5eecfa-b378-4678-ba6e-77eca482b628 {"pid": "5603", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243828446"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:55.695385 2024-09-11 09:05:55.69539 f3089fd6-8f5d-4efb-80c0-529d7a3d5910 {"pid": "5604", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243832206"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:55.748026 2024-09-11 09:05:55.74803 b4330a4f-c4f2-4289-afe0-bc3b51cb2a35 {"pid": "5605", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/24384025X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:55.801495 2024-09-11 09:05:55.801497 eae4ef9c-1d38-4f2c-a651-42a46c0837d8 {"pid": "5606", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243868065"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:55.861657 2024-09-11 09:05:55.861661 21e164a7-0339-4ad5-a182-33daede747f5 {"pid": "5607", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/24388303X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:55.970577 2024-09-11 09:05:55.97058 1dde8cb2-febb-458f-91e2-39b4c220a892 {"pid": "5609", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243894910"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:56.026016 2024-09-11 09:05:56.02602 2448290a-98c9-4719-83b1-e95a97629617 {"pid": "5610", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243895046"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:56.082306 2024-09-11 09:05:56.082309 51ae111b-fcfa-4405-b327-1531ec6a1c32 {"pid": "5611", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243937075"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:56.136231 2024-09-11 09:05:56.136235 c0f6b099-6264-417a-9145-cc15dfdf9fe3 {"pid": "5612", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244010218"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:56.246679 2024-09-11 09:05:56.246684 84536b0f-5977-450c-8abc-2c6137945d10 {"pid": "5614", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244052468"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:55.921166 2024-09-11 09:07:13.700324 39c4aabb-5f54-4709-9e8c-a180cb13c2a6 {"pid": "5608", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013505146"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243886179"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10253390"} 2 +2024-09-11 09:05:56.304654 2024-09-11 09:05:56.304658 888c196c-2701-4848-ab22-d1847ae79440 {"pid": "5615", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/24406024X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:56.356586 2024-09-11 09:05:56.356589 0cbcadbb-db76-41f1-ba3e-8fe72027012d {"pid": "5616", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244061092"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:56.421762 2024-09-11 09:05:56.421769 5cf7bda6-6ed3-49f7-9976-2adec19fd3f0 {"pid": "5617", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244072922"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:56.479767 2024-09-11 09:05:56.479771 53e92821-8cbf-4727-8c3a-8490b0fd02b6 {"pid": "5618", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244077878"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:56.534122 2024-09-11 09:05:56.534126 540ce524-8a71-43dd-8e66-f72d94108f5a {"pid": "5619", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244092389"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:56.587561 2024-09-11 09:05:56.587566 852877c0-2fdd-4d2b-8ed6-593765d41035 {"pid": "5620", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244098972"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:56.638116 2024-09-11 09:05:56.638119 7f87a005-7036-4886-94fb-5a4ae852ccbf {"pid": "5621", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244117802"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:41.528849 2024-09-11 09:06:34.001005 79533dd2-3747-4b1b-9d4f-d33a117f02a9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172099331"}, "pid": "2637", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003301693"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/077775430"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109481934"} 3 +2024-09-11 09:05:56.750129 2024-09-11 09:05:56.750135 368bd84c-e81b-468d-9cb1-ab8b7e133704 {"pid": "5622", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244126283"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:56.805243 2024-09-11 09:05:56.805248 e27883e0-a70f-4e7a-ac1c-895f01766b10 {"pid": "5623", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244135282"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:56.918649 2024-09-11 09:05:56.918653 7fb51c45-8cc9-41c4-a6f1-6664abbb8382 {"pid": "5624", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244139563"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:56.970122 2024-09-11 09:05:56.970125 300c3eb0-5d3c-49a3-a1f2-3b11f66d0744 {"pid": "5625", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244165610"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:57.02277 2024-09-11 09:05:57.022774 d512c7a3-5c46-40ac-8830-1eb2264df991 {"pid": "5626", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/24416603X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:57.082474 2024-09-11 09:05:57.082477 dd183a26-00a9-4b2c-8dc9-a95278080de7 {"pid": "5627", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244233403"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11115174"} 1 +2024-09-11 09:05:57.138023 2024-09-11 09:05:57.138027 714e9524-cfa3-41da-9299-ad378d16734e {"pid": "5628", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244251568"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:57.19724 2024-09-11 09:05:57.197245 727156c1-fbdd-4d4c-8ae7-e9625a3467bb {"pid": "5629", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244257469"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:57.249213 2024-09-11 09:05:57.249216 647335d7-e03e-48e3-abc1-49e68f72c3d3 {"pid": "5630", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244273111"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:57.301159 2024-09-11 09:05:57.301162 d2c36bcc-1612-488f-b8ce-eaffc2fb726e {"pid": "5631", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244318301"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:57.357478 2024-09-11 09:05:57.357482 cbf2d3c9-caee-49ef-a348-6d0fb6104e62 {"pid": "5632", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244324913"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:57.407087 2024-09-11 09:05:57.407091 6996294b-9c97-41d3-8e4d-907c9c548149 {"pid": "5633", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244341672"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:57.460302 2024-09-11 09:05:57.460306 a6535ea6-9681-4f70-8646-0ca5ab1b178c {"pid": "5634", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244341796"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:57.519381 2024-09-11 09:05:57.519385 5b85eb45-0f42-4163-9576-c2990a9512c4 {"pid": "5635", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244350329"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:57.57348 2024-09-11 09:05:57.573483 08d54256-3def-4b2d-9597-efa083961276 {"pid": "5636", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244402515"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:57.631974 2024-09-11 09:05:57.631977 af8344b9-212f-4bc9-a06d-b9566968488d {"pid": "5637", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244420645"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:57.709243 2024-09-11 09:05:57.709247 21768187-67e5-426e-b68f-b7fc6301de13 {"pid": "5638", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244433577"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:57.770829 2024-09-11 09:05:57.770833 7a7ad356-8b4f-4e29-9bce-bdfa3947513b {"pid": "5639", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244450765"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:57.823523 2024-09-11 09:05:57.823527 de26055e-7c61-43a2-bfb6-e6af814cda69 {"pid": "5640", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244788987"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:57.879047 2024-09-11 09:05:57.87905 92289c61-c497-4995-bd9d-c5b2c4ca6a05 {"pid": "5641", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244799768"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:57.931604 2024-09-11 09:05:57.931609 ba4dfd9d-7f05-4840-bf80-43e958a554ed {"pid": "5642", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244882908"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:57.988885 2024-09-11 09:05:57.988891 d11eb65b-efef-4bbf-8728-04d93dfaf662 {"pid": "5643", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/24488451X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:58.048593 2024-09-11 09:05:58.048597 f7ab5215-294f-4e96-b95b-3edef313761f {"pid": "5644", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244888558"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1006149198207974940002"} 1 +2024-09-11 09:05:58.100216 2024-09-11 09:05:58.100221 26d02e76-a096-46d2-be7f-27f9e98dd193 {"pid": "5645", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244922624"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:58.152489 2024-09-11 09:05:58.152496 6f9d9008-c2cb-44b7-8040-91de18ef5b7f {"pid": "5646", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244934894"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:58.203902 2024-09-11 09:05:58.203905 1e05b0ed-f631-4d86-b933-dac68f949c88 {"pid": "5647", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/245023542"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:58.26465 2024-09-11 09:05:58.264656 b3d8e20b-fee7-4fa7-869f-55e0a52f7a35 {"pid": "5648", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/245054200"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1061159474416927662154"} 1 +2024-09-11 09:05:58.322236 2024-09-11 09:05:58.322241 aaa97c17-92fd-445a-9460-a0462f6ab326 {"pid": "5649", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/24507869X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1042159474312827661844"} 1 +2024-09-11 09:05:58.379173 2024-09-11 09:05:58.379178 79234139-6ec3-408d-8b6c-a06de7943401 {"pid": "5650", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/24515969X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1051159474312827661846"} 1 +2024-09-11 09:05:58.445745 2024-09-11 09:05:58.445749 153f7813-e50c-4fc8-b401-912fa66a8fcd {"pid": "5651", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/245200142"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1054159474339527662132"} 1 +2024-09-11 09:05:58.502218 2024-09-11 09:05:58.502222 da5e3197-92d9-4076-8c9f-cc89f1435076 {"pid": "5652", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/245235949"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:58.563508 2024-09-11 09:05:58.563514 525efebc-9eaf-4d77-8241-57e0423f883a {"pid": "5653", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/245265805"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:58.615671 2024-09-11 09:05:58.615674 fe25cc16-d7c5-47cb-8ead-347b50dd74d2 {"pid": "5654", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/245313486"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:58.671853 2024-09-11 09:05:58.671858 9b11fd5a-a3c4-46bc-8f72-1cb89752cf67 {"pid": "5655", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/248175920"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:58.785957 2024-09-11 09:05:58.785961 4e06766e-39d8-48f3-af5d-63df28c9a68e {"pid": "5656", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/248374249"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:58.845167 2024-09-11 09:05:58.84517 b0351f6e-236a-498f-a314-022edff6b3dd {"pid": "5657", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/248391038"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111159697551503310057"} 1 +2024-09-11 09:05:58.897376 2024-09-11 09:05:58.897381 a1e652fd-38f9-43b6-b720-ba0eefba91d5 {"pid": "5658", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/248436074"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:58.994255 2024-09-11 09:05:58.994259 3669c975-f03f-4149-a038-12c04c6f22e4 {"pid": "5659", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/248958445"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106950642"} 1 +2024-09-11 09:05:59.050416 2024-09-11 09:05:59.050422 11776531-121a-40ae-93ff-a48d4c08c9ab {"pid": "5660", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/248982621"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:59.109447 2024-09-11 09:05:59.109451 fc53a5cc-8029-4e08-a11e-67975d026da8 {"pid": "5661", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/249008173"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:59.166026 2024-09-11 09:05:59.16603 d2c661e7-17db-4975-b355-feac4bf88a29 {"pid": "5662", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/249129019"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:59.225576 2024-09-11 09:05:59.22558 29d134e0-2f37-4ca2-8223-a9b1694a7ae3 {"pid": "5663", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/24913344X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:59.287517 2024-09-11 09:05:59.287524 811a48c2-d7fe-4f55-aa8b-10d7018e6e87 {"pid": "5664", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/249284472"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109160243001252432491"} 1 +2024-09-11 09:05:59.342335 2024-09-11 09:05:59.34234 6c0ba1b8-48ff-443f-bba9-d2e9f97e4d64 {"pid": "5665", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/249311461"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:59.397627 2024-09-11 09:05:59.397632 3de37536-9be7-40b5-962c-59764520459a {"pid": "5666", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/249406845"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:59.457577 2024-09-11 09:05:59.457581 7c14677e-6572-46d0-8beb-603d14a6e3f6 {"pid": "5667", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/249486504"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:59.513971 2024-09-11 09:05:59.513975 92ae13cc-1a57-468b-aaac-644eb10cbafd {"pid": "5668", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/249730375"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:59.567751 2024-09-11 09:05:59.567755 41c28d0d-a0e2-4d8e-b436-1a2739dc3139 {"pid": "5669", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/249743523"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:59.619448 2024-09-11 09:05:59.619452 84fe84a5-ac9d-42b6-a940-4e2ca5818461 {"pid": "5670", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/249775441"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:59.674277 2024-09-11 09:05:59.67428 91de1200-1dbb-43e2-a18a-d91df20bc87d {"pid": "5671", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/249825074"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:59.730762 2024-09-11 09:05:59.730767 06a374b9-1f2c-4919-a761-36c007997200 {"pid": "5672", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/249834472"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:59.781368 2024-09-11 09:05:59.781372 9782f76f-c793-4f56-b1a9-be0e581279f0 {"pid": "5673", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/249952378"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:59.834947 2024-09-11 09:05:59.83495 663ea814-6122-4707-81a9-58913bb34d56 {"pid": "5674", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/249981394"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:59.888228 2024-09-11 09:05:59.888231 8f44e116-85cc-4e29-baab-e209fe3ed4d7 {"pid": "5675", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/250341611"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:59.976375 2024-09-11 09:05:59.976379 b87acd5e-782f-4ac4-bff0-1667f1d7fdd3 {"pid": "5676", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/250364913"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:00.03941 2024-09-11 09:06:00.039413 2f3b6a6f-1f7b-4c60-8cf6-d2680074819a {"pid": "5677", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/250368196"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:00.092664 2024-09-11 09:06:00.092668 3c1f68a8-5146-4264-8c23-bfb8736de445 {"pid": "5678", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/250382598"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:00.150147 2024-09-11 09:06:00.15015 58af9adf-7695-4214-a598-6021072fc4ef {"pid": "5679", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/250383926"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:00.202033 2024-09-11 09:06:00.202036 810840e3-af44-4936-bb1e-e6990fe8a0f6 {"pid": "5680", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/250384183"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:00.255237 2024-09-11 09:06:00.25524 aa0b0801-c48b-457b-8697-37501c1c7446 {"pid": "5681", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/250397072"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:00.312313 2024-09-11 09:06:00.312317 f65fa9b1-e680-4d69-9dfc-0df0a2c09c1c {"pid": "5682", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/250402823"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109160789613902680418"} 1 +2024-09-11 09:06:00.364899 2024-09-11 09:06:00.364902 5a55d497-bd78-4ca8-bde0-00922ee51d07 {"pid": "5683", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/250416468"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:55.251968 2024-09-11 09:06:00.425837 7c46b887-6ccb-42e3-b56d-df7ec4e37d54 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1220644811"}, "pid": "1852", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/250507617"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1101160486104805180002"} 2 +2024-09-11 09:06:00.486923 2024-09-11 09:06:00.486928 886b31e7-f86d-4b6c-87a2-59b303301c93 {"pid": "5684", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/250599325"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:00.545338 2024-09-11 09:06:00.545343 b05218fc-a07d-42ad-922d-1eda7588501d {"pid": "5685", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/250603187"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:00.604876 2024-09-11 09:06:00.604879 cc4888c6-1b8a-4496-ad16-33a230daa72b {"pid": "5686", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/250620499"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:00.667328 2024-09-11 09:06:00.667333 8229f127-15cb-4837-83e2-71770aa2750d {"pid": "5687", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/250649691"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105160789614402680577"} 1 +2024-09-11 09:06:00.791482 2024-09-11 09:06:00.791487 3312c1ec-0f18-4406-829b-f3dee507b2c7 {"pid": "5688", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/250680505"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:00.855599 2024-09-11 09:06:00.855604 ca745f92-e69e-4e51-8c11-77d895d47bd9 {"pid": "5689", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/250907801"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:00.909248 2024-09-11 09:06:00.909253 89c493c9-2556-4e22-8a7e-60d74e1cd69b {"pid": "5690", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/250949903"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:00.967024 2024-09-11 09:06:00.967028 cf5d1e68-f025-4f20-8483-ab75420e80ed {"pid": "5691", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251014878"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:01.181478 2024-09-11 09:06:01.181482 67dc70a9-ee39-4f4b-b5a4-c1f985924b98 {"pid": "5692", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251138607"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:01.239404 2024-09-11 09:06:01.239407 527b626e-cc1e-4491-89fc-c786c2279265 {"pid": "5693", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251195627"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109161028919723741132"} 1 +2024-09-11 09:06:01.351576 2024-09-11 09:06:01.351579 68622218-769f-4c53-a4fe-dc811e6fe169 {"pid": "5694", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251278492"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:01.400816 2024-09-11 09:06:01.400819 c265c04b-c900-4671-8c22-294c2a863fcd {"pid": "5695", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251314677"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:01.45235 2024-09-11 09:06:01.452354 8edb5975-2b79-4320-a31c-b250c21e0da1 {"pid": "5696", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251360164"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:01.503035 2024-09-11 09:06:01.503038 917c277b-5cb1-4ae4-b5c5-bf52251d7ccd {"pid": "5697", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251394581"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:01.556586 2024-09-11 09:06:01.556589 e331ca37-57e5-4c7e-a879-eb76e57435b4 {"pid": "5698", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251396312"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:01.609378 2024-09-11 09:06:01.609381 cf0d4b07-7772-428f-8394-8f7a2eb43397 {"pid": "5699", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251411699"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:01.664567 2024-09-11 09:06:01.664571 a6b1e068-52ee-4d49-91b9-2b010c370854 {"pid": "5700", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251429180"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:01.718058 2024-09-11 09:06:01.718062 76f957e1-f358-4dbc-b0b5-4853731c2409 {"pid": "5701", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251432122"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:01.773682 2024-09-11 09:06:01.773686 9a939244-6f70-4909-a64f-0c48cb5e4d86 {"pid": "5702", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251443361"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:18.816223 2024-09-11 09:06:46.947086 4401284f-3616-4e0d-93e5-d48ccc53e976 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/111787238"}, "pid": "1241", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003833071"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251202283"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109204355"} 3 +2024-09-11 09:06:01.830785 2024-09-11 09:06:01.830791 4d26d831-8b8c-482a-b18c-03de4ff77e49 {"pid": "5703", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251455394"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:01.88259 2024-09-11 09:06:01.882593 eb839847-89f4-4510-9612-6db872b3916c {"pid": "5704", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251520528"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:01.937591 2024-09-11 09:06:01.937595 95ed0cba-0f45-4c27-9985-9083947cf40c {"pid": "5705", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25154091X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:01.994204 2024-09-11 09:06:01.99421 dc146022-2714-4dae-a1b1-abe5c2ded619 {"pid": "5706", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25156584X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:02.050709 2024-09-11 09:06:02.050713 c9bbfb3a-7bfc-4d11-8db0-442a2735780a {"pid": "5707", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25158917X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:02.105673 2024-09-11 09:06:02.105678 196171f3-146a-4394-892f-bf8879c08687 {"pid": "5708", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251615014"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:02.16148 2024-09-11 09:06:02.161484 d16b75ba-3f72-48e9-9ad2-dc82b8abed7f {"pid": "5709", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251625338"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:02.322172 2024-09-11 09:06:02.322179 de5aa5d6-4f7c-4982-b648-783aa5666eeb {"pid": "5710", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251650375"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:02.374087 2024-09-11 09:06:02.374091 3382df70-65c1-4605-839b-054c969d9a27 {"pid": "5711", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251660346"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:02.424451 2024-09-11 09:06:02.424455 ded11354-2f9d-418f-bb84-1091f88d5af5 {"pid": "5712", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251871533"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:02.477239 2024-09-11 09:06:02.477244 cc0fb00c-1d48-46a4-b6b2-89d2b0e771a4 {"pid": "5713", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/252252799"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:02.529979 2024-09-11 09:06:02.529983 dddba894-f889-4bb1-a18c-78665a93837c {"pid": "5714", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25234717X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:02.582647 2024-09-11 09:06:02.582652 80e791d1-1371-4d3e-a4f3-ef78e4a16b5a {"pid": "5715", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/252382781"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:02.63812 2024-09-11 09:06:02.638123 fce40167-8684-4b60-91d7-6d5337684836 {"pid": "5716", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/252388208"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:02.692586 2024-09-11 09:06:02.69259 3e5b6eba-76b9-47a8-a948-987e80fcefa0 {"pid": "5717", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/252426398"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:02.746861 2024-09-11 09:06:02.746865 eb277678-013f-47bc-946b-0d0ccabc5ef1 {"pid": "5718", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/252437888"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:02.799727 2024-09-11 09:06:02.799731 5ecdc5d2-a0d7-45bb-990e-9d93e2f0e187 {"pid": "5719", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/252443748"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:02.853023 2024-09-11 09:06:02.853028 4e69b56f-fbc6-4448-98ec-0eca2d61f121 {"pid": "5720", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/252462599"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:02.910656 2024-09-11 09:06:02.91066 9c7e39a2-8f1a-433f-9958-68136e254a63 {"pid": "5721", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25256541X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:02.963547 2024-09-11 09:06:02.963551 a15f16a1-11f0-4670-84e6-dc20e9cb7c53 {"pid": "5722", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25268088X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:03.021408 2024-09-11 09:06:03.021411 3885f666-83ce-4d91-9b64-12eb50fb1c67 {"pid": "5723", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/252755294"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:03.076571 2024-09-11 09:06:03.076575 79a1e4dd-cd20-45ec-bf25-71abf8adeeb0 {"pid": "5724", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/252764277"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:03.131877 2024-09-11 09:06:03.13188 005db016-946b-40bb-ad15-113f711b1968 {"pid": "5725", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/252855477"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:03.188293 2024-09-11 09:06:03.188297 ab3e762e-533d-422a-b302-f116f89b84b0 {"pid": "5726", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/252916263"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:03.243256 2024-09-11 09:06:03.24326 b5f9c569-64e2-4287-947f-1b9bea3cf721 {"pid": "5727", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25295114X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:03.300812 2024-09-11 09:06:03.300817 12867c41-9c14-4321-bd2f-95c2a198b4b2 {"pid": "5728", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25304653X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:03.366107 2024-09-11 09:06:03.366109 b4927c0c-0fe2-4946-ad0e-7ce1cc43bc48 {"pid": "5729", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/253143462"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111161511999970560377"} 1 +2024-09-11 09:06:03.420362 2024-09-11 09:06:03.420365 a3c58079-72a0-4d20-a9f2-0eaf19552014 {"pid": "5730", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/253180627"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:03.485716 2024-09-11 09:06:03.485722 97c664f9-75d5-4d2d-9419-237ea11f18e5 {"pid": "5731", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/253203155"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:03.566139 2024-09-11 09:06:03.566142 72c8d7d1-7497-4a92-993e-59ca4caae663 {"pid": "5732", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25322859X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:03.619559 2024-09-11 09:06:03.619564 a9d74026-5a17-475e-9a9f-b44f417ffc9f {"pid": "5733", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25324403X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:03.669739 2024-09-11 09:06:03.669743 606dfdcc-c45b-45d6-999d-6bb8242b25f2 {"pid": "5734", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/253263298"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:03.728647 2024-09-11 09:06:03.728652 2b3c5212-973b-4184-a309-fb873f8b7834 {"pid": "5735", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/253507790"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107161512132470561954"} 1 +2024-09-11 09:06:03.780344 2024-09-11 09:06:03.780347 8fd1fbbe-55a8-4560-9ed8-e32bca50a43c {"pid": "5736", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/253610958"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:03.833511 2024-09-11 09:06:03.833514 8e3333ae-204d-49e6-9f96-e2fae6c11a43 {"pid": "5737", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/253613957"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:03.886901 2024-09-11 09:06:03.886906 4d472164-dac0-4684-a4fb-15028e997076 {"pid": "5738", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/253654041"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:03.944801 2024-09-11 09:06:03.944806 daaba2e3-6a04-4397-824f-86843a04ba36 {"pid": "5739", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/253760844"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:04.005624 2024-09-11 09:06:04.005628 fe7c2bae-30ef-49ca-aa8c-bf4127cdbbaf {"pid": "5740", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/253765005"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107161511999170560400"} 1 +2024-09-11 09:06:04.063372 2024-09-11 09:06:04.063377 89b66460-d5c5-47a8-b14f-ca62436f5217 {"pid": "5741", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/253814103"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:04.116667 2024-09-11 09:06:04.11667 05e2e5a0-45dd-4bac-b99e-d5256294e6ce {"pid": "5742", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/253879965"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:04.230879 2024-09-11 09:06:04.230883 29fd330c-fb46-4df1-a4d7-e5b648048c8b {"pid": "5743", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/253973031"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1014162608710749820006"} 1 +2024-09-11 09:06:04.284619 2024-09-11 09:06:04.284622 e70b825e-7f93-42f8-9a18-9cfa8a2b2729 {"pid": "5744", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254069606"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110620957"} 1 +2024-09-11 09:06:04.333505 2024-09-11 09:06:04.333507 c1a4b6fd-18a1-4319-b428-054e54efb6f0 {"pid": "5745", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254110754"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:04.388925 2024-09-11 09:06:04.388929 52d43dc4-f3c6-4a8e-b71f-162d35463132 {"pid": "5746", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254146279"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:04.440805 2024-09-11 09:06:04.440808 b6e6002c-c553-470d-9c67-7a4acaebf740 {"pid": "5747", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254215696"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:04.526486 2024-09-11 09:06:04.52649 e6856551-9d1f-4174-aa04-b5ba0d21c0d3 {"pid": "5748", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254232787"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:04.57948 2024-09-11 09:06:04.579484 745484ce-94ed-4e23-b2e3-ea1997a5650a {"pid": "5749", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254344445"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:04.642679 2024-09-11 09:06:04.642683 09320588-2dca-4db8-a77b-9dc117b7c5f6 {"pid": "5750", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254374557"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111161816312527721610"} 1 +2024-09-11 09:06:04.71553 2024-09-11 09:06:04.715533 712b076c-56b1-44cb-b652-22bcd439f9fb {"pid": "5751", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254391508"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:04.775436 2024-09-11 09:06:04.775441 3c3321af-fea7-407b-a10b-56bba369f901 {"pid": "5752", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254418422"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111161816197527720917"} 1 +2024-09-11 09:06:04.828581 2024-09-11 09:06:04.828585 280790bc-4521-48f3-ad73-3fb7c3a51c8c {"pid": "5753", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254429521"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:04.881888 2024-09-11 09:06:04.881893 0a767625-39f8-47c7-b767-0e34e1193d56 {"pid": "5754", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254455565"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:04.93628 2024-09-11 09:06:04.936284 1a561b03-0146-4f4d-ab64-625bdc35c8a0 {"pid": "5755", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254491758"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:04.991921 2024-09-11 09:06:04.991927 3880f344-01dc-414c-9a16-ac005771f509 {"pid": "5756", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254522564"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:05.053438 2024-09-11 09:06:05.053444 b75fe969-7a72-46fb-8bdd-de44049bc13c {"pid": "5757", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254587763"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:05.109644 2024-09-11 09:06:05.109649 75306bf2-d3ce-41e7-a70b-7c796a95f9d3 {"pid": "5758", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254630618"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:05.226438 2024-09-11 09:06:05.226443 dfcb3049-b7b1-4f7e-a623-9af80e6928c9 {"pid": "5760", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254738591"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:05.280335 2024-09-11 09:06:05.28034 3538ac0f-3207-4138-8aac-8fccfd6f4496 {"pid": "5761", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254743048"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:05.3359 2024-09-11 09:06:05.335905 a5727052-c421-4348-af2a-464f72712937 {"pid": "5762", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254747086"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:05.394497 2024-09-11 09:06:05.394501 7fe198bb-7e8a-4a6d-bf1f-08118f382a27 {"pid": "5763", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254775578"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:05.447901 2024-09-11 09:06:05.447905 cc7a6282-a755-4de2-b680-58fd11cbfc9c {"pid": "5764", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254778569"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:05.504092 2024-09-11 09:06:05.504096 1a261944-c136-47fa-a3de-d488f5e8fd1e {"pid": "5765", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254816568"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:05.569725 2024-09-11 09:06:05.569729 a3eb7fce-5f02-41de-bb95-9889fedc795c {"pid": "5766", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25483180X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:05.631781 2024-09-11 09:06:05.631785 273be670-c02e-4e09-b163-e453f94f1a3f {"pid": "5767", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254929192"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:05.693269 2024-09-11 09:06:05.693272 c489d68b-8efe-440a-9e31-cc0561f9f160 {"pid": "5768", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254941540"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:05.793594 2024-09-11 09:06:05.7936 5517b5e7-3c80-45ab-b4b3-8f6ece4d3a8f {"pid": "5769", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254976719"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110162060266851400491"} 1 +2024-09-11 09:06:05.867954 2024-09-11 09:06:05.867958 187c4146-eadf-4db1-837f-a54c631c3888 {"pid": "5770", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254994024"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101162060268351400089"} 1 +2024-09-11 09:06:05.931881 2024-09-11 09:06:05.931886 fc75c0db-4956-43d3-89a2-69054ce0c822 {"pid": "5771", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/255028679"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:05.995452 2024-09-11 09:06:05.995456 dd3d045e-9739-4b44-aabf-1041c14eae9b {"pid": "5772", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25508255X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:06.059429 2024-09-11 09:06:06.059434 cd67bdea-6fe6-4f15-9ccd-e89494ed1233 {"pid": "5773", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/255083556"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:06.12348 2024-09-11 09:06:06.123485 9b6d0a2e-2a2d-4d9b-9c3b-7df4016c784e {"pid": "5774", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/255144490"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:06.246449 2024-09-11 09:06:06.246454 326c027d-b642-4de5-a37c-bb90fd152802 {"pid": "5775", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/255348517"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:06.301886 2024-09-11 09:06:06.30189 2c840c2c-c2d5-4c2e-9c84-a71df94d8a20 {"pid": "5776", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/255361343"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:06.366596 2024-09-11 09:06:06.366601 b4168519-b0d5-41a0-9b65-0037c257191f {"pid": "5777", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/255386419"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:06.425737 2024-09-11 09:06:06.425741 be769324-aed5-4baf-bdbd-24e74805345d {"pid": "5778", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/255415184"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:06.477466 2024-09-11 09:06:06.47747 48e01d07-080f-401d-bf0a-19215274790b {"pid": "5779", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/255430760"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:06.549259 2024-09-11 09:06:06.549262 35b45fa1-46f7-4a6f-9459-158aaeac870e {"pid": "5780", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/255435169"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:06.610815 2024-09-11 09:06:06.610819 df55ed0b-c2b9-4d1b-8452-a27e3ae00c34 {"pid": "5781", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/255444478"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:06.673202 2024-09-11 09:06:06.673207 148cbcab-00e5-46f2-9208-6cce1eab70b5 {"pid": "5782", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/255445075"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:06.734799 2024-09-11 09:06:06.734803 b5b3d9b8-fd7c-47e4-a999-be16cbacb0e4 {"pid": "5783", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/255453876"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:06.797179 2024-09-11 09:06:06.797185 a3624018-ae95-49e8-8ca1-cba00c65ebfa {"pid": "5784", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/255473532"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:06.85075 2024-09-11 09:06:06.850755 a975d1c4-df22-4a8f-a83f-4263f5272554 {"pid": "5785", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/255495269"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:06.90525 2024-09-11 09:06:06.905253 9146cb5c-f12b-4c25-bde3-8859919b4516 {"pid": "5786", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/255554338"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:06.962572 2024-09-11 09:06:06.962575 a359361f-3714-4367-b9c9-c1994061e8fa {"pid": "5787", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/255666594"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:07.054955 2024-09-11 09:06:07.054962 121692ee-4773-4fa2-8106-86b18674a1b5 {"pid": "5788", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/255733151"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:07.115884 2024-09-11 09:06:07.115888 430383fc-18b3-46de-b3c6-d7c9f4732109 {"pid": "5789", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/255923058"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111162606661449532487"} 1 +2024-09-11 09:06:07.172017 2024-09-11 09:06:07.17202 e78b9c93-8cc4-4a89-9dd8-949e616c9cae {"pid": "5790", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/255939248"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:07.224487 2024-09-11 09:06:07.224491 511ce318-22b4-41aa-9295-dca08e3fd243 {"pid": "5791", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/255998880"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:07.27549 2024-09-11 09:06:07.275493 cd769c74-ab3f-4d62-b208-75777f6a2a79 {"pid": "5792", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/256075980"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:07.330131 2024-09-11 09:06:07.330136 b697e9c8-2b28-477b-b5eb-5be986d2dfde {"pid": "5793", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/256123829"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:07.386337 2024-09-11 09:06:07.386344 7ae272cc-0221-43fa-9c7d-4c5028d2676c {"pid": "5794", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25623650X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:07.501879 2024-09-11 09:06:07.501883 70789f1b-d2ee-4218-b511-8ddb860af751 {"pid": "5795", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25640772X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:07.558957 2024-09-11 09:06:07.558961 fcd10f7b-60ab-46b8-a258-0753a43ab7c3 {"pid": "5796", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/256435847"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:07.620368 2024-09-11 09:06:07.620372 4b7429d6-8b09-4385-9c04-99b7d9cef9f2 {"pid": "5797", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/256458391"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112162842453073042440"} 1 +2024-09-11 09:06:07.671518 2024-09-11 09:06:07.671522 086270bd-52ea-4587-b612-935e64c96dec {"pid": "5798", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25650945X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:07.728189 2024-09-11 09:06:07.728193 c764d3af-b009-4861-ac41-39c701359fa6 {"pid": "5799", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/256515417"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:07.791321 2024-09-11 09:06:07.791325 16e8674e-8fe1-47ae-875f-f5177d2c525e {"pid": "5800", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/256606625"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:07.849275 2024-09-11 09:06:07.849279 affd1d24-e164-423e-9327-e05f7cd1bd05 {"pid": "5801", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/256607982"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:07.900071 2024-09-11 09:06:07.900074 1db78399-df50-4288-8188-0090835518b5 {"pid": "5802", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/256622302"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:07.958926 2024-09-11 09:06:07.958931 8b402ae8-c4fb-4071-988e-4f16c346569f {"pid": "5803", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/256653992"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:08.010678 2024-09-11 09:06:08.010681 ea16c029-8973-4d19-b154-fa13378b73a5 {"pid": "5804", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/256728682"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:08.071329 2024-09-11 09:06:08.071334 ebba336f-5326-4753-8730-73faadb79333 {"pid": "5805", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/256767483"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:08.151523 2024-09-11 09:06:08.151529 0f89c85a-6ee2-4dc6-9759-71bf2741e448 {"pid": "5806", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/256769044"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:24.2412 2024-09-11 09:06:08.209054 0b19a29f-54f2-40cf-87fe-ba0f86588847 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/13971166X"}, "pid": "2338", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/256910200"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102567428"} 2 +2024-09-11 09:06:08.264385 2024-09-11 09:06:08.26439 e74a66a1-42ee-4a86-931f-04d1d557b459 {"pid": "5807", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/256931038"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:08.317072 2024-09-11 09:06:08.317075 5b0f291a-1f49-4989-bbbd-60c38566262f {"pid": "5808", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/256938660"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:08.381835 2024-09-11 09:06:08.381839 cec3c5cc-4a66-4cdf-b47c-08f97497f210 {"pid": "5809", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/256975485"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110163155782701311022"} 1 +2024-09-11 09:06:08.444515 2024-09-11 09:06:08.444518 2031aa6e-baf0-408d-ad62-38a38c08fee1 {"pid": "5810", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/256977178"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107163155777901310737"} 1 +2024-09-11 09:06:08.501563 2024-09-11 09:06:08.501567 0a700ebe-b2e9-4e5f-a2fb-86f481e20b8a {"pid": "5811", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/257161775"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:08.561391 2024-09-11 09:06:08.561396 17f5904a-3b75-4227-afa7-c5c316c9769e {"pid": "5812", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/257283994"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:08.615055 2024-09-11 09:06:08.61506 5733e043-4147-49da-a958-027539ad5d5c {"pid": "5813", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/257341730"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:08.726656 2024-09-11 09:06:08.726659 190d2745-fb21-4b34-b37b-949605a9972b {"pid": "5814", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/257348328"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:08.786878 2024-09-11 09:06:08.786885 18f8c007-9e16-4b6f-a783-85903f4b8e6d {"pid": "5815", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/257382968"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108163408673100090712"} 1 +2024-09-11 09:06:08.839628 2024-09-11 09:06:08.839631 4085490b-52b8-4a6d-aa55-ab42aae3b9d5 {"pid": "5816", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/257433422"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:08.895449 2024-09-11 09:06:08.895453 59e34ad1-2e6f-4d16-8d45-650cf6a4e30b {"pid": "5817", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/257473459"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:08.951124 2024-09-11 09:06:08.951127 7970d6c6-b12e-4dea-8922-639bedf0524c {"pid": "5818", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/257484167"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:09.0039 2024-09-11 09:06:09.003903 b0f5b345-e6e2-4964-bfeb-bd831b0711a7 {"pid": "5819", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/257484434"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:09.058457 2024-09-11 09:06:09.05846 9b80948d-c2b8-4830-9b7c-35f618e0103a {"pid": "5820", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/257494138"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:09.109864 2024-09-11 09:06:09.109868 8c2adfc4-6a32-48a0-a4d2-fd28801e6eb7 {"pid": "5821", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25752214X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:09.21122 2024-09-11 09:06:09.211223 018e29e6-52da-4821-8f52-afa3b17329c5 {"pid": "5822", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/257572481"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:09.276248 2024-09-11 09:06:09.276253 6870e23c-a5d6-4022-aa88-fab4d1ab1dcc {"pid": "5823", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/257572732"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105163408655700090317"} 1 +2024-09-11 09:06:09.336736 2024-09-11 09:06:09.33674 161915d7-a1b1-462d-bda1-7fe9513f3b33 {"pid": "5824", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/257647007"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:09.465244 2024-09-11 09:06:09.465248 bf76631f-162a-4a38-a79c-c285722fdca8 {"pid": "5826", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25773855X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:09.517753 2024-09-11 09:06:09.517756 cba10001-3e0e-4c57-812a-584de6b6207d {"pid": "5827", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/257862544"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:09.578608 2024-09-11 09:06:09.578613 e3154658-b7fc-485d-bf64-f3069ed3b5aa {"pid": "5828", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/257890505"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110163628562223460324"} 1 +2024-09-11 09:06:09.631415 2024-09-11 09:06:09.631419 9945dd3a-c62d-4bb6-9c3e-064647f450df {"pid": "5829", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/257908870"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:09.690659 2024-09-11 09:06:09.690663 e4ef1d4c-b4e7-47e2-a9cf-df3adbc1b2ff {"pid": "5830", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/257937730"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:09.767064 2024-09-11 09:06:09.767067 bef85678-8947-44b2-b168-42bccc73f817 {"pid": "5831", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/257974350"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:09.821251 2024-09-11 09:06:09.821255 f09cebf3-8bf6-4097-bc06-ddd44a9c1d2c {"pid": "5832", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25808524X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:09.877128 2024-09-11 09:06:09.877131 f5ddd9b0-6540-4efd-8d65-2a9a289e0a7d {"pid": "5833", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/258134178"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106163629098823462700"} 1 +2024-09-11 09:06:09.934225 2024-09-11 09:06:09.934228 2263de89-c22f-4e86-8cf2-9881c3c4de96 {"pid": "5834", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/258183659"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:09.993101 2024-09-11 09:06:09.993104 334a8530-5b95-49bb-b48b-d052e80b0d2f {"pid": "5835", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/258220724"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:10.176969 2024-09-11 09:06:10.176973 0d9c0878-be4c-41a8-94b7-98904a6f7e61 {"pid": "5836", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/258291524"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:10.235469 2024-09-11 09:06:10.235472 49d2e50d-a935-4b8e-9f01-ba079b48f946 {"pid": "5837", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/258322020"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10096007"} 1 +2024-09-11 09:06:10.29328 2024-09-11 09:06:10.293284 091c591d-8e23-4ee2-b576-31281028fdd2 {"pid": "5838", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/258325089"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10097349"} 1 +2024-09-11 09:06:10.348158 2024-09-11 09:06:10.348163 f305743c-a0c9-450b-a5c7-9731c9942601 {"pid": "5839", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/258363355"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:10.407168 2024-09-11 09:06:10.407172 3b57ac28-d624-45b0-8af4-5e4052f6c538 {"pid": "5840", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/258385138"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100163936570700832446"} 1 +2024-09-11 09:06:10.465767 2024-09-11 09:06:10.465771 75db8daf-e64a-4ba0-9d85-33600887a4e3 {"pid": "5841", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/258433914"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:10.557147 2024-09-11 09:06:10.55715 2c3d32bf-1ecd-4e71-9271-66aaacba5f38 {"pid": "5842", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/258437855"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104163936290200831584"} 1 +2024-09-11 09:06:10.610268 2024-09-11 09:06:10.610273 9a3e6dac-784c-41a3-96d1-6a645522950c {"pid": "5843", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25844939X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:10.670235 2024-09-11 09:06:10.670239 2d539758-d139-4846-8abf-a71e0887f0d7 {"pid": "5844", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/258454458"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:10.724241 2024-09-11 09:06:10.724245 4d855c81-9601-4736-ab75-2b31cad2ae24 {"pid": "5845", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/258520191"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:10.78698 2024-09-11 09:06:10.786985 0215105d-aeea-44a2-8d50-34b7b3fa9e97 {"pid": "5846", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/258528079"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:10.836823 2024-09-11 09:06:10.836825 a680eefc-5206-4649-b70b-9757f8115420 {"pid": "5847", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/258546417"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:10.888938 2024-09-11 09:06:10.888941 f450eafc-0e6c-40be-baed-da94464749bc {"pid": "5848", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/258552778"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:10.939733 2024-09-11 09:06:10.939736 893643b8-995d-472b-9e6b-4ae1de6731c2 {"pid": "5849", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/258575719"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:10.99859 2024-09-11 09:06:10.998594 36f36dfe-0c4c-448e-8204-51ae29f07efe {"pid": "5850", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/258640731"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:11.050673 2024-09-11 09:06:11.050677 c169b5a1-4a08-41bc-91c1-5dfc1cce0f6b {"pid": "5851", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/258645172"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:11.166818 2024-09-11 09:06:11.166822 d701f6bf-f543-451e-8f05-aa712fb6667d {"pid": "5852", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/259100056"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:11.222878 2024-09-11 09:06:11.222881 f4aa49d0-b66f-4815-8eff-292cf1e8858c {"pid": "5853", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/259230197"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:11.275435 2024-09-11 09:06:11.275439 cf480277-53b0-43e7-89ab-906e6113d235 {"pid": "5854", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/259270482"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:11.332209 2024-09-11 09:06:11.332217 01ecc7d8-21b7-452a-935e-ffea4b03f9f1 {"pid": "5855", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25929070X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:11.40289 2024-09-11 09:06:11.402894 9e0d821b-a4b2-43fb-aa21-9ba6b7ca9bd8 {"pid": "5856", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/259327735"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108164476716225912968"} 1 +2024-09-11 09:06:11.496261 2024-09-11 09:06:11.496266 219b10b2-f863-440c-b20a-e326cb8e0bb5 {"pid": "5857", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/259329657"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101164476390325911817"} 1 +2024-09-11 09:06:11.567259 2024-09-11 09:06:11.567263 9bcec4ee-1696-43db-a139-5d2b237e7dc8 {"pid": "5858", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/259367516"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112164476730525912975"} 1 +2024-09-11 09:06:11.6198 2024-09-11 09:06:11.619805 f1c14df0-bb98-4d0f-b6a2-edc3f0bc1908 {"pid": "5859", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25943812X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:11.673748 2024-09-11 09:06:11.673751 6ab406dd-9ce1-4b87-89de-fbbb3f4e9cf4 {"pid": "5860", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/259789798"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:11.725307 2024-09-11 09:06:11.72531 326cb600-15e6-425e-8ca4-f71a830f05a3 {"pid": "5861", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/25982142X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:11.779913 2024-09-11 09:06:11.779916 6970ae2b-2a5c-459f-9824-22091193a6ed {"pid": "5862", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/259847127"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:11.832871 2024-09-11 09:06:11.832874 77ec7961-e3b1-4b5e-a4cf-b00c14ccd0ee {"pid": "5863", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/259860778"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:11.883805 2024-09-11 09:06:11.883809 25bb73e2-a9d0-49dd-a279-5f35ec27b5b4 {"pid": "5864", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/259863424"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:11.939038 2024-09-11 09:06:11.939041 d44f2da6-bb66-464f-a78f-08848d0e3329 {"pid": "5865", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/259907448"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:11.992936 2024-09-11 09:06:11.992941 43a5cdee-5427-40cd-91b8-ff96ea7a6d54 {"pid": "5866", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/259908142"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:12.05343 2024-09-11 09:06:12.053436 0b305177-92bb-485c-b719-45527d236253 {"pid": "5867", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/259925993"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:12.1037 2024-09-11 09:06:12.103705 7af3f610-a778-4f39-9491-6755ad3f8088 {"pid": "5868", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/259928844"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:12.15807 2024-09-11 09:06:12.158075 da4e87cc-0a1f-4179-8b1c-7802a204eb89 {"pid": "5869", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/259991724"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:12.211332 2024-09-11 09:06:12.211336 3de11015-3262-4691-a0fd-72d7b222e855 {"pid": "5870", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260074969"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:12.265739 2024-09-11 09:06:12.265743 e08a79d9-17e3-474b-b885-e9477328bb66 {"pid": "5871", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/26009773X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:12.392901 2024-09-11 09:06:12.392903 007c10ba-6204-4203-b6e5-baf1b795d52a {"pid": "5872", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260238570"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103165322631016020041"} 1 +2024-09-11 09:06:12.448723 2024-09-11 09:06:12.448729 0aac3d8a-2ea4-4284-af4f-0247b6ae4b98 {"pid": "5873", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260322393"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:12.50814 2024-09-11 09:06:12.508144 c637f042-4dc8-48fc-8282-6151b2c508aa {"pid": "5874", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260328065"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11154327972026851951"} 1 +2024-09-11 09:06:12.563599 2024-09-11 09:06:12.563602 8991d994-ab58-42b8-a735-d8d61c527e40 {"pid": "5875", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/26040862X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:12.652681 2024-09-11 09:06:12.652686 fa091c4f-4f1e-4249-92ca-d30e6d5316ae {"pid": "5876", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260480584"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:12.707448 2024-09-11 09:06:12.707453 405f517c-6269-46a1-8cf0-a0c73f161ae3 {"pid": "5877", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260499021"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:12.761588 2024-09-11 09:06:12.761592 6ca01a5d-41e4-446b-af17-f4f7873068fb {"pid": "5878", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260505269"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:12.811751 2024-09-11 09:06:12.811756 0cbd4719-0cc4-43dd-9905-df10c4ceb2ba {"pid": "5879", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260578045"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:12.866478 2024-09-11 09:06:12.866481 06eed74d-e887-4e3e-b3ca-df646041c557 {"pid": "5880", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260582808"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:12.921619 2024-09-11 09:06:12.921624 51784445-780f-4803-92cb-dd3f9655c64e {"pid": "5881", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260592404"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105165322558816020634"} 1 +2024-09-11 09:06:12.979042 2024-09-11 09:06:12.979045 f713fc5c-011e-417f-805e-6bd7c97ee8fd {"pid": "5882", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260735353"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112164959504824020059"} 1 +2024-09-11 09:06:13.031102 2024-09-11 09:06:13.031106 ae6cee9d-06c2-4123-be06-7f1394692a75 {"pid": "5883", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260775967"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:13.08985 2024-09-11 09:06:13.089853 3355af94-4967-4964-888a-56f5d4e314e1 {"pid": "5884", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260782955"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102164959504924021058"} 1 +2024-09-11 09:06:13.145293 2024-09-11 09:06:13.145297 4d7cea09-9112-4677-9db9-43df87170714 {"pid": "5885", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260807710"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:13.201413 2024-09-11 09:06:13.201416 fab126dd-7e1e-4f36-a272-0c53c64103c6 {"pid": "5886", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260812374"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:13.263668 2024-09-11 09:06:13.263673 a7d2e238-c39c-4986-9df0-e2a4e46113e5 {"pid": "5887", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260844578"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107164959491724020750"} 1 +2024-09-11 09:06:13.321277 2024-09-11 09:06:13.321282 a590ef48-6f24-4f7b-a0c7-d40f87fc727e {"pid": "5888", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260864811"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101164959532724020077"} 1 +2024-09-11 09:06:13.380154 2024-09-11 09:06:13.380158 e6414f45-bedb-4e48-a6bb-c9dc39030f7d {"pid": "5889", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260877484"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100164959500324020776"} 1 +2024-09-11 09:06:13.435539 2024-09-11 09:06:13.435543 dddf0dc6-0d9a-48f9-8d90-4c61bc3cfc2b {"pid": "5890", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/26091164X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:13.485352 2024-09-11 09:06:13.485354 9a94cbe9-9d2b-4654-ab32-7e13e447dc93 {"pid": "5891", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260925810"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:13.542284 2024-09-11 09:06:13.542288 b4017081-32f8-4e78-a1bb-d37dadb783a5 {"pid": "5892", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260929905"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:13.595254 2024-09-11 09:06:13.595259 bca46df3-cf0c-4c4f-9002-14de8460ff73 {"pid": "5893", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260939587"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:13.665773 2024-09-11 09:06:13.665776 4a72f7c7-51c8-4ecb-8caa-ec30a7bf599c {"pid": "5894", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260943193"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:13.744299 2024-09-11 09:06:13.744303 03977cf7-cf21-4666-8c39-6954f5a08a98 {"pid": "5895", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260977756"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:13.801242 2024-09-11 09:06:13.801245 763525d0-b59c-492f-afa4-ff9df24d77b9 {"pid": "5896", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260987204"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110164960181924022794"} 1 +2024-09-11 09:06:13.85139 2024-09-11 09:06:13.851396 5689afe9-bfd7-4663-bf2d-7b0029ec3dd2 {"pid": "5897", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/260995223"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:13.901951 2024-09-11 09:06:13.901953 a9281211-73c6-4120-a094-5cf3f2a1c7a7 {"pid": "5898", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/261067079"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:13.953233 2024-09-11 09:06:13.953239 15509379-3ba7-498e-8aac-f9dc3285b214 {"pid": "5899", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/261116274"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:14.003517 2024-09-11 09:06:14.003521 8d501d09-8dd5-461d-9096-aea8d54336f9 {"pid": "5900", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/261144588"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:14.063462 2024-09-11 09:06:14.063467 1226667f-3dcf-4f2f-a706-ea9720048168 {"pid": "5901", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/261155210"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111164960128624022342"} 1 +2024-09-11 09:06:14.112861 2024-09-11 09:06:14.112865 f2be96cd-fa78-497f-ae19-0b52059633c6 {"pid": "5902", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/26124096X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:14.168216 2024-09-11 09:06:14.168221 5770f51d-ca0c-4b0a-a729-eb2e0993a632 {"pid": "5903", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/261260987"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:14.223577 2024-09-11 09:06:14.223582 27396c3b-22ba-4fd7-b230-5ef4a0a210f8 {"pid": "5904", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/261270206"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:14.278205 2024-09-11 09:06:14.27821 3b70b83f-5a6b-4c72-81bc-89fff0109bcf {"pid": "5905", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/261515632"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:14.339418 2024-09-11 09:06:14.339422 61bfca08-9b99-4e36-bfa4-291223237aad {"pid": "5906", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/261606441"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:14.400243 2024-09-11 09:06:14.400248 d020d5b4-c8cf-4599-844d-e04e4863af48 {"pid": "5907", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/261732722"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:14.455428 2024-09-11 09:06:14.455432 9d67b52e-f47b-476d-b202-ee2c4845f50b {"pid": "5908", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/261805762"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:14.507973 2024-09-11 09:06:14.507978 3b7f0db8-d92e-4e45-9b5f-7d9851f0e43b {"pid": "5909", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/261809911"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:14.571511 2024-09-11 09:06:14.571514 4ecae7b1-0dd3-4006-8918-8ab774e0bd0a {"pid": "5910", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/261814176"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1021159474067827660894"} 1 +2024-09-11 09:06:14.624778 2024-09-11 09:06:14.624781 e54a47bd-14c4-48d6-a7e5-07395b5e8ed3 {"pid": "5911", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/261876007"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:14.682256 2024-09-11 09:06:14.682258 fd926488-8495-41c4-b34d-47ffcb350d6c {"pid": "5912", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/261892169"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:14.734235 2024-09-11 09:06:14.734239 7887195a-10ee-4bb1-b436-58e4bc273e4c {"pid": "5913", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/261974580"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:14.787277 2024-09-11 09:06:14.787285 d7bacf9f-a73f-493a-a57e-7ac41d116eb9 {"pid": "5914", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/26212369X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:14.837981 2024-09-11 09:06:14.837984 91ed5dd8-3a40-4e9d-84df-40aeb5374796 {"pid": "5915", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/26221007X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:14.891167 2024-09-11 09:06:14.89117 cbd76162-0bb7-4741-8f2b-e18059d4e6fb {"pid": "5916", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/262212129"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:14.944112 2024-09-11 09:06:14.944117 711577ce-a729-4ea7-b52b-449edcb6ee88 {"pid": "5917", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/262213656"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:14.996722 2024-09-11 09:06:14.996727 1c592819-2a4f-4113-bda1-f83c2e4301a7 {"pid": "5918", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/262246619"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:15.090836 2024-09-11 09:06:15.09084 120434ec-9424-4fcc-a629-2ff16ec49973 {"pid": "5919", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/262262940"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106166001783975020867"} 1 +2024-09-11 09:06:15.145417 2024-09-11 09:06:15.145421 636cb679-6a24-4bb2-b847-a3a90bb78e7e {"pid": "5920", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/262286394"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:15.199812 2024-09-11 09:06:15.199817 a88ee6cc-db78-4d37-b35b-fe034d6a9d8f {"pid": "5921", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/26232217X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:15.256046 2024-09-11 09:06:15.256051 c37f2b21-5409-402d-8735-39eb802ca66d {"pid": "5922", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/262328836"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:15.311346 2024-09-11 09:06:15.311349 d1231dc4-b5d4-4de0-95f6-2e780f1b9eab {"pid": "5923", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/262350459"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:15.364726 2024-09-11 09:06:15.364731 96036cfb-ad86-4ad1-a015-a941a23d109f {"pid": "5924", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/262354659"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:15.424886 2024-09-11 09:06:15.424889 334066f3-786d-4044-8de2-266d3d282b12 {"pid": "5925", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/262398516"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105166002494375022152"} 1 +2024-09-11 09:06:15.496679 2024-09-11 09:06:15.496684 d0344e57-b5bf-4c88-9aea-e215412fc682 {"pid": "5926", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/262403242"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101166002461975022282"} 1 +2024-09-11 09:06:15.560434 2024-09-11 09:06:15.560437 cf125117-5b83-4045-8771-4f86f330e349 {"pid": "5927", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/262436574"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:15.647093 2024-09-11 09:06:15.647097 e053212c-5e89-4428-803f-45ed7910bd25 {"pid": "5928", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/262452979"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:15.704256 2024-09-11 09:06:15.704258 a30c3fc7-3cc2-47ec-8563-9f00cd6f3328 {"pid": "5929", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/262466724"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:15.765874 2024-09-11 09:06:15.765878 c12229bb-33fb-4895-b1e7-0d0e98108f48 {"pid": "5930", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/262469561"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102166002566775022443"} 1 +2024-09-11 09:06:15.815995 2024-09-11 09:06:15.815999 f93eebec-5c10-4330-b79c-c89f3712ef8b {"pid": "5931", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/262471116"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:15.867471 2024-09-11 09:06:15.867476 692bf535-eb64-4612-8bd8-c31ff4adf426 {"pid": "5932", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/262486636"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:15.919906 2024-09-11 09:06:15.919912 efb7a788-c884-4785-b0dc-4fab75a9cc57 {"pid": "5933", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/26249714X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:15.972076 2024-09-11 09:06:15.972079 5b44583a-5b7a-496a-934e-1300c265b685 {"pid": "5934", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/262504391"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:16.024087 2024-09-11 09:06:16.02409 bfa5e918-98fb-4957-91ca-d8d2f897037a {"pid": "5935", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/262615223"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:16.083101 2024-09-11 09:06:16.083105 13707adb-4161-4315-a3ef-de8107cd7336 {"pid": "5936", "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/262645882"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:16.147679 2024-09-11 09:06:16.147685 f8aa8911-f443-46c6-9d16-1f854bbdf36b {"pid": "5937", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/26282180X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:16.206094 2024-09-11 09:06:16.206098 28889129-f496-46a4-b3f2-57fa27ab164e {"pid": "5938", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/26285242X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:16.260868 2024-09-11 09:06:16.260873 35dd2e1b-d31f-4938-84d8-d3bb733a8261 {"pid": "5939", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/262888467"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:05.166855 2024-09-11 09:06:16.319272 baa717ea-80f2-4fac-a2fc-2298182bb468 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1253501106"}, "pid": "2024", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/263082091"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10164778869208342773"} 2 +2024-09-11 09:06:16.375806 2024-09-11 09:06:16.375811 1a4adf9f-cdf3-458c-8385-e76e9aa6b692 {"pid": "5940", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/263195449"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:16.427777 2024-09-11 09:06:16.427781 59e3add0-31a7-4d42-8be8-b4753e56379e {"pid": "5941", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/263217442"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:16.484653 2024-09-11 09:06:16.484661 ac37b941-9e53-40d1-a9fc-d50b4977b381 {"pid": "5942", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/263267466"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:16.546443 2024-09-11 09:06:16.546448 17c92f14-5174-4944-a2c2-38b7e9486a1e {"pid": "5943", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/263445194"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:16.602882 2024-09-11 09:06:16.602885 dc278ae7-06e8-44d1-a260-3e879d42bda8 {"pid": "5944", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/26347318X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:16.663668 2024-09-11 09:06:16.663673 8e678445-19ed-4775-b81e-c9abd684cd46 {"pid": "5945", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/263491455"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:16.729542 2024-09-11 09:06:16.729547 3adf1e4c-0f7e-40c6-b6d7-498162deb23f {"pid": "5946", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/263502627"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108166060160180320569"} 1 +2024-09-11 09:06:16.785294 2024-09-11 09:06:16.7853 3c4bd28d-7e83-4054-bb55-503ca323344c {"pid": "5947", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/263581780"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:16.83775 2024-09-11 09:06:16.837752 3ca9e7f7-7bfd-467a-9f47-3f40b493b5ce {"pid": "5948", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/263587339"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:16.887673 2024-09-11 09:06:16.887677 d4180cb1-4cf2-467a-9c31-e7bf04fdc54b {"pid": "5949", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/263603652"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:16.940232 2024-09-11 09:06:16.940235 eaf40c10-56e4-43a6-b57a-a9c1f652ea5b {"pid": "5950", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/263626687"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:16.991878 2024-09-11 09:06:16.991882 995932f1-099b-43f8-b4d7-d1ca28fee10c {"pid": "5951", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/263671372"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:17.046762 2024-09-11 09:06:17.046766 71171c9d-49ec-4c1c-89d7-10e300cd14e5 {"pid": "5952", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/263671887"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:17.10248 2024-09-11 09:06:17.102483 cee7d5bc-9840-4fde-9792-94efbe0d19d7 {"pid": "5953", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/263682471"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:17.153463 2024-09-11 09:06:17.153472 3543e436-f341-49d2-9031-e350dfdc5bb3 {"pid": "5954", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/263722198"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:17.209996 2024-09-11 09:06:17.21 7a008926-859d-4d8c-b892-f7ea8ab8a059 {"pid": "5955", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/263908038"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111166922987543512723"} 1 +2024-09-11 09:06:17.26994 2024-09-11 09:06:17.269944 b145f05d-456e-448b-8e48-b0a863af3fd7 {"pid": "5956", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/26428058X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106166596754917591289"} 1 +2024-09-11 09:06:17.359768 2024-09-11 09:06:17.359772 86b87c8e-8d23-4010-82f2-db912114ca2d {"pid": "5957", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/264703227"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110166596777717591382"} 1 +2024-09-11 09:06:17.485794 2024-09-11 09:06:17.4858 bb2b3f28-5b90-4abf-b06e-2ca6c888b902 {"pid": "5958", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/265219493"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106166835916835942662"} 1 +2024-09-11 09:06:17.545962 2024-09-11 09:06:17.545966 aa4dea10-32df-4bc0-b89f-6c978d10671c {"pid": "5959", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/26525969X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101166835186035940097"} 1 +2024-09-11 09:06:17.603394 2024-09-11 09:06:17.603398 2487a452-68ec-401a-9cfe-8f4d4be6de47 {"pid": "5960", "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/26528774X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112166835264435940968"} 1 +2024-09-11 09:06:20.008886 2024-09-11 09:06:20.008889 8f291f36-1a42-4c48-9746-fc7f5a89485d {"pid": "5961", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000003203"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:20.061964 2024-09-11 09:06:20.061967 5fd17b2b-090b-4193-9304-bfcad0bfee11 {"pid": "5962", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000010540"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:20.115054 2024-09-11 09:06:20.115058 c93cdcca-97eb-408c-9111-a322988df1b3 {"pid": "5963", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000011132"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:20.169317 2024-09-11 09:06:20.169321 0d049b7b-4306-4ab8-abd9-5cf634c4b27e {"pid": "5964", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000012165"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:20.219789 2024-09-11 09:06:20.219793 4b6f8efa-873d-48ac-966e-08a8f18acd52 {"pid": "5965", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000014216"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:20.2764 2024-09-11 09:06:20.276404 e281b446-ee4f-4c64-b0c5-fdf9cdad9532 {"pid": "5966", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000014650"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:20.407545 2024-09-11 09:06:20.40755 53235fa5-99c0-424e-b65e-3446e66ceb4c {"pid": "5967", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000018483"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:20.461412 2024-09-11 09:06:20.461416 fe174a3c-2f20-40bb-8723-76d6fb44e0ad {"pid": "5968", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000018719"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:20.515906 2024-09-11 09:06:20.515909 637680fc-d020-4719-b9cb-2322b5897a76 {"pid": "5969", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000022042"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:20.566613 2024-09-11 09:06:20.566615 8b0d1431-7320-4fa7-a472-0252f6c2f4f1 {"pid": "5970", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000023938"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:20.616418 2024-09-11 09:06:20.61642 204c2ed1-c433-4387-a07c-ad0ba02163d3 {"pid": "5971", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000026444"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:20.668127 2024-09-11 09:06:20.66813 9ce06dd3-1398-4be1-a5b3-0e6a44d35bd0 {"pid": "5972", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000031507"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:20.720486 2024-09-11 09:06:20.72049 cc1ba61b-c559-41b5-acf4-c048120325b9 {"pid": "5973", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000032185"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:20.774596 2024-09-11 09:06:20.7746 78be2ebf-0af2-42a5-a64d-55bfad600c93 {"pid": "5974", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000033498"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:20.827002 2024-09-11 09:06:20.827006 a29ba966-e1e5-4d5a-8485-4ca2500b6022 {"pid": "5975", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000035884"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:20.875015 2024-09-11 09:06:20.875019 c0899532-366b-4373-88ac-cb3069b55363 {"pid": "5976", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000041054"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:20.932935 2024-09-11 09:06:20.93294 72468cee-ba3b-4f3f-9016-9f7be2271fe7 {"pid": "5977", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000042792"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:21.008162 2024-09-11 09:06:21.008165 d87e47c4-3eb0-45e8-b733-9877d21ad62e {"pid": "5978", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000045285"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:20.501921 2024-09-11 09:06:21.064797 eeddcf60-79a4-430c-a35b-3567bf1b6dd9 {"pid": "4128", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000047084"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/081232683"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109975323"} 2 +2024-09-11 09:06:21.115758 2024-09-11 09:06:21.11576 b77a7624-f5e1-49e5-8990-4ece14a173cd {"pid": "5979", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000047788"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:21.165631 2024-09-11 09:06:21.165634 9842da63-7f10-4468-b808-4ce0195b0fa1 {"pid": "5980", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000062707"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:21.217538 2024-09-11 09:06:21.217541 7c5ca351-f585-453f-90a5-059e9f5813f5 {"pid": "5981", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000063670"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:21.270909 2024-09-11 09:06:21.270912 23f08403-4080-4d07-b836-021555d81452 {"pid": "5982", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000068070"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:21.317855 2024-09-11 09:06:21.317857 c35234b7-8978-4c64-94ac-fc33bf04667a {"pid": "5983", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000069516"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:21.36843 2024-09-11 09:06:21.368432 4e6c1ca0-efd8-45c4-a9d3-2a31619186d5 {"pid": "5984", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000074210"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:21.423948 2024-09-11 09:06:21.423952 f85f4542-ad93-470d-ab27-e570a64de855 {"pid": "5985", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000075082"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:21.474827 2024-09-11 09:06:21.474831 ded73363-80fe-4c6d-b2c4-a701b3c30a4e {"pid": "5986", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000075825"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:21.535148 2024-09-11 09:06:21.535152 f5316d37-baed-4015-ab36-bbae8c2bed1a {"pid": "5987", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000078192"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:21.58896 2024-09-11 09:06:21.588964 643d930c-20ce-485a-8b57-174385ba990a {"pid": "5988", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000082809"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:21.639334 2024-09-11 09:06:21.639337 d4eb5b68-d1f0-469b-ae45-a92e2c33d950 {"pid": "5989", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000085441"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:21.692085 2024-09-11 09:06:21.692089 795258fb-8755-4b63-9156-f934683be10e {"pid": "5990", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000085746"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:21.739953 2024-09-11 09:06:21.739956 f23360b9-0971-4463-8cff-42a9d15225c3 {"pid": "5991", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000087771"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:21.789043 2024-09-11 09:06:21.789048 21fd685d-e691-4ae5-8248-dfe0385c6261 {"pid": "5992", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000091274"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:21.837357 2024-09-11 09:06:21.837362 42190b71-0140-4d70-a115-bd84068f0bac {"pid": "5993", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000092501"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:21.886538 2024-09-11 09:06:21.886544 af4386cd-77f7-4de3-8258-4cc7e34efc8c {"pid": "5994", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000099346"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:21.935594 2024-09-11 09:06:21.935597 f528316c-00c4-4965-b4be-6e12ce0c12f7 {"pid": "5995", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000100584"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:21.987458 2024-09-11 09:06:21.987462 2c500c7d-ccd7-4ee6-ae4d-fc3161e98980 {"pid": "5996", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000102121"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:22.127758 2024-09-11 09:06:22.127763 622d0e88-8470-4c5e-a974-7d2d34bd8223 {"pid": "5997", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000104694"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:22.19342 2024-09-11 09:06:22.193423 e7ca21a1-7f59-4f3e-8436-8a78a2758181 {"pid": "5998", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000107290"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:22.244743 2024-09-11 09:06:22.244746 edc854ee-7206-4522-8b64-3ed70e8f5b35 {"pid": "5999", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000108532"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:43.625933 2024-09-11 09:06:22.303935 e41cf7a5-9630-4cd6-a91b-421e451ccab6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173457258"}, "pid": "2675", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000108719"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244121095"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110333109"} 3 +2024-09-11 09:06:22.362884 2024-09-11 09:06:22.362889 bc19343a-676b-44d7-ab97-42a903c8b57d {"pid": "6000", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000110353"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:22.412705 2024-09-11 09:06:22.412709 783cee21-7eab-47a8-9819-0d07aebf339c {"pid": "6001", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000119730"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:22.470027 2024-09-11 09:06:22.47003 aa4c0654-9d32-4751-80de-70cfe69298db {"pid": "6002", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000120627"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:22.525436 2024-09-11 09:06:22.52544 5fd7ef64-b030-4f2b-8638-ed5d65b9d31d {"pid": "6003", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000124969"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:22.577019 2024-09-11 09:06:22.577023 f73e2e89-d34c-405c-9104-d6ce3ffc7dd2 {"pid": "6004", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000132150"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:22.628949 2024-09-11 09:06:22.628953 d920cc3b-41da-486d-8c5c-41f0e4dba57a {"pid": "6005", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000135302"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:22.67849 2024-09-11 09:06:22.678493 b8418015-0fa7-4489-9237-ddccf8933067 {"pid": "6006", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000136441"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:22.736355 2024-09-11 09:06:22.736359 a264a0fb-6c9b-4d5a-b0ea-e57ee7ba10c9 {"pid": "6007", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000142799"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:22.791063 2024-09-11 09:06:22.791066 e9925a2e-e894-4e6c-bc10-6db3f98b6a60 {"pid": "6008", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000144337"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:22.846607 2024-09-11 09:06:22.846611 8894cb6d-a3c3-4524-8cd9-03e4049fb68b {"pid": "6009", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000147059"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:22.898257 2024-09-11 09:06:22.89826 ab0a639b-6a84-41a2-8e3f-b4b9aafd44ca {"pid": "6010", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000152472"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:22.947506 2024-09-11 09:06:22.947511 5e5f2baa-e338-4897-b902-6e52269ccb0c {"pid": "6011", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000152802"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:22.999785 2024-09-11 09:06:22.999788 5e31cd23-afb9-4582-a7a0-cdd07e3ea25f {"pid": "6012", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000156095"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:23.054719 2024-09-11 09:06:23.054723 75b5c8d3-4737-4b18-b311-f48443364de7 {"pid": "6013", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000157703"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:23.109906 2024-09-11 09:06:23.10991 d6cc381f-b01e-46f1-ac54-07705e4930a8 {"pid": "6014", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000171374"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:23.165611 2024-09-11 09:06:23.165615 803eb3d2-3672-4e59-9143-50f359ca75c7 {"pid": "6015", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000176762"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:23.21593 2024-09-11 09:06:23.215936 d5c3401a-d6ab-4d87-8148-75dbb552b74e {"pid": "6016", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000181158"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:23.2711 2024-09-11 09:06:23.271104 9fa5ff28-51b4-4c62-991f-1523ac0b1bc5 {"pid": "6017", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000183008"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:23.349845 2024-09-11 09:06:23.349847 11bbe80a-e957-4d5b-902f-ecfe0471709e {"pid": "6018", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000183027"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:23.400799 2024-09-11 09:06:23.400802 2ef05f28-4000-4107-8560-ef558215f31e {"pid": "6019", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000184256"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:23.450538 2024-09-11 09:06:23.450541 5ab885f2-fb3a-4972-b7a1-6cab9d65f3b1 {"pid": "6020", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000185690"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:23.504492 2024-09-11 09:06:23.504495 81592f9e-c80d-41ae-8183-59d9e98b2488 {"pid": "6021", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000187213"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:23.557598 2024-09-11 09:06:23.557602 cf0c1a97-cd91-450c-aa3d-a2fcefe1ca0f {"pid": "6022", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000187557"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:23.609885 2024-09-11 09:06:23.60989 97f5968b-9f73-472c-a5eb-35f58030e381 {"pid": "6023", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000189570"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:23.660991 2024-09-11 09:06:23.660995 03701976-0c43-4840-9b8b-1cc503d32123 {"pid": "6024", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000190495"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:23.711289 2024-09-11 09:06:23.711293 644c876e-b266-4cb1-a5d7-33845b8b578b {"pid": "6025", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000193226"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:23.766739 2024-09-11 09:06:23.766741 5264cecb-44f8-4a2b-b76b-2c36413094a9 {"pid": "6026", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000193381"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:23.818595 2024-09-11 09:06:23.818599 9ed1e9e5-4fca-4bb0-b989-af3d28d54cda {"pid": "6027", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000193605"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:23.877299 2024-09-11 09:06:23.877303 ec21d22d-2fce-4126-8583-434cb016ce76 {"pid": "6028", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A000194499"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:23.934159 2024-09-11 09:06:23.934163 b7747cfb-e7d0-477c-b03c-63049afc136f {"pid": "6029", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002910761"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:23.309751 2024-09-11 09:06:23.997528 686126ff-eecf-4ee7-95ae-9541ea601d1b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/11425172X"}, "pid": "1317", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002912942"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/03321994X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108848769"} 3 +2024-09-11 09:06:24.056475 2024-09-11 09:06:24.056479 ced87c94-12a5-4dd4-819c-4530c630e424 {"pid": "6030", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002916477"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:24.109417 2024-09-11 09:06:24.109422 6299d588-a12f-44f8-b7a8-858528c8fd6f {"pid": "6031", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002922214"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:24.221122 2024-09-11 09:06:24.221127 a8bffb0e-6a64-4e4e-b609-99b05b2b70da {"pid": "6032", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002928445"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:24.278664 2024-09-11 09:06:24.278668 cdce73c7-6577-4492-b4f8-daa25c0b1ee8 {"pid": "6033", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002929473"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112792764"} 1 +2024-09-11 09:06:24.32917 2024-09-11 09:06:24.329174 3de596fc-487d-45e6-9c82-791a5619a580 {"pid": "6034", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002931456"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:24.382464 2024-09-11 09:06:24.382467 7b3e3fa7-e493-48b7-ad9f-3d37a8e8d70f {"pid": "6035", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002933956"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:24.433909 2024-09-11 09:06:24.433912 6e0bedd7-eb4c-483f-b2ce-a068cbfbb58e {"pid": "6036", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002939215"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:13.091902 2024-09-11 09:06:24.503916 feb20429-829b-427a-8f8f-1327f20dd62d {"pid": "4021", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002939817"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/071531149"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108145660"} 2 +2024-09-11 09:02:16.035959 2024-09-11 09:06:24.571183 87fb3893-6763-4219-82d3-92c94280c7f7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/133315681"}, "pid": "2214", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002940438"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028523555"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108720355"} 3 +2024-09-11 09:05:52.68314 2024-09-11 09:06:24.631187 993bf7ae-b5ff-4ef7-859c-61b533229794 {"pid": "5551", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002940495"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/243137400"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109051878"} 2 +2024-09-11 09:01:01.449437 2024-09-11 09:06:24.757469 e82da20b-da7b-42a8-aea0-ad01b9702286 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1079981993"}, "pid": "949", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002941440"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10455493"} 2 +2024-09-11 09:06:24.81699 2024-09-11 09:06:24.816993 d7c6de67-26fb-4702-ab1c-112b1699e6a9 {"pid": "6037", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002942098"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101159233916303370161"} 1 +2024-09-11 09:06:24.868491 2024-09-11 09:06:24.868495 75f71cb6-52a1-42bc-a74d-9b47c791d51f {"pid": "6038", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002944324"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:24.919821 2024-09-11 09:06:24.919824 cae3d254-b4e6-4c9c-8446-d6176d391195 {"pid": "6039", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002947740"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:24.975841 2024-09-11 09:06:24.975845 e0f71f28-bf55-4c93-b4ca-1eef48400b10 {"pid": "6040", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002953651"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111159234410003371632"} 1 +2024-09-11 09:06:25.024755 2024-09-11 09:06:25.024759 113e45ff-ffb9-4fb1-b196-b86dfaa49af7 {"pid": "6041", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002955901"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:25.084738 2024-09-11 09:06:25.084746 921b65d9-7cfa-4186-abd9-60049b6a45c0 {"pid": "6042", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002961093"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104578800"} 1 +2024-09-11 09:02:16.434965 2024-09-11 09:06:25.213601 c9482d16-87bd-409b-a598-bab74c832af9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/133592316"}, "pid": "2220", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002966255"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/167143565"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11039818"} 3 +2024-09-11 09:04:14.095961 2024-09-11 09:06:25.277581 526ed993-74a2-4920-9d4f-4a414febf011 {"pid": "4036", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002968314"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/073673986"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108888468"} 2 +2024-09-11 09:06:25.332032 2024-09-11 09:06:25.332037 a4289f12-4253-4f4e-baa5-fbfc0d28ddc7 {"pid": "6043", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002969933"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:25.442698 2024-09-11 09:06:25.4427 deb03abf-3c59-4149-adc3-3e701090149d {"pid": "6044", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002979038"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:25.498573 2024-09-11 09:06:25.498576 10d2c2d8-4a6d-4ed4-b5e7-802b1ce3cd32 {"pid": "6045", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002979177"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:25.553504 2024-09-11 09:06:25.553508 bdec37dd-3cab-4aa0-bd7f-b61541bccb26 {"pid": "6046", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002981392"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:25.615673 2024-09-11 09:06:25.615678 3374f5ef-f7b0-4ed5-8443-affbd39e0635 {"pid": "6047", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002981924"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103159234267003371376"} 1 +2024-09-11 09:06:25.772999 2024-09-11 09:06:25.773001 8242fbc2-3cf7-46e6-88a5-ff9463bb11e7 {"pid": "6048", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002992522"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111159234237303371038"} 1 +2024-09-11 09:06:25.823741 2024-09-11 09:06:25.823748 9d4a1f1d-f259-408b-a4c3-92bfa42d1510 {"pid": "6049", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A002993107"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:25.87763 2024-09-11 09:06:25.877634 d14c6c01-2505-44a8-9b94-171adb2a53fb {"pid": "6050", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003003384"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:25.930903 2024-09-11 09:06:25.930907 e6efc7fb-72f6-4c3b-ba07-d13630c34032 {"pid": "6051", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003005276"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:25.983277 2024-09-11 09:06:25.98328 d5a37278-9413-41d9-9262-2f2c2c17d758 {"pid": "6052", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003005486"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:26.036972 2024-09-11 09:06:26.036977 bdb618ae-4013-48f4-91a1-733d291efdb8 {"pid": "6053", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003010065"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:26.088783 2024-09-11 09:06:26.088786 9084a5cc-f1f0-4249-891c-be2b1987a7ec {"pid": "6054", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003013653"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:26.139983 2024-09-11 09:06:26.139987 6d57785e-8fc9-4046-9ae6-95df462b2e34 {"pid": "6055", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003017126"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:26.197217 2024-09-11 09:06:26.197222 eb79137d-8223-4e7f-bcd9-4d30f0c0189a {"pid": "6056", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003019667"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105159233927803370366"} 1 +2024-09-11 09:06:26.247409 2024-09-11 09:06:26.247412 b0cb3bd4-4f35-4cb6-a9b1-b2f4409b6a5d {"pid": "6057", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003020410"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:26.302818 2024-09-11 09:06:26.302822 cf173f82-aa11-4146-8a2e-cc44fd97cb42 {"pid": "6058", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003021395"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:26.356984 2024-09-11 09:06:26.356988 84ae53f4-54c6-4717-be6f-e323488f6107 {"pid": "6059", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003024732"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:26.412387 2024-09-11 09:06:26.412391 78318f8b-095d-4923-9a30-4618ca07bc2d {"pid": "6060", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003028730"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:26.465229 2024-09-11 09:06:26.465234 d8a869f1-84c5-4169-884e-3510cf802a48 {"pid": "6061", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003031223"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:26.520449 2024-09-11 09:06:26.520453 87db97cb-fe31-410b-8465-d6589f14d0fe {"pid": "6062", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003037757"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:54.375143 2024-09-11 09:06:26.580775 608b884a-476f-4e4a-a4a9-98f251616560 {"pid": "4616", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003037886"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/148842836"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103006988"} 2 +2024-09-11 09:06:26.63539 2024-09-11 09:06:26.635394 3ae82c30-c6e8-4622-9cfa-a73bd9b7cf47 {"pid": "6063", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003042099"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:26.688008 2024-09-11 09:06:26.688011 78652572-d131-46e9-b476-d5a2c2656356 {"pid": "6064", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003042520"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:26.740923 2024-09-11 09:06:26.740927 69abf072-240b-4de8-ad45-e194ace7a814 {"pid": "6065", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003048129"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100380122"} 1 +2024-09-11 09:06:26.791303 2024-09-11 09:06:26.791307 5e3d134d-0f92-45f6-b20d-7502d5dda173 {"pid": "6066", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003050459"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:26.853533 2024-09-11 09:06:26.853536 60ff5a48-b8a3-4543-9019-fae61a9399f8 {"pid": "6067", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003055215"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102159234074403370558"} 1 +2024-09-11 09:01:44.551151 2024-09-11 09:06:26.915301 586e0205-5213-4964-954c-4a7f5f9537c6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/118857703"}, "pid": "1671", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003055423"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028330943"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110994935"} 3 +2024-09-11 09:06:26.978038 2024-09-11 09:06:26.978041 e8b7a2d4-e777-48af-926d-73ef48eba2f7 {"pid": "6068", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003061439"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:27.077017 2024-09-11 09:06:27.077022 88b076f3-854b-440a-ad8a-40969a757df3 {"pid": "6069", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003061455"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:27.131789 2024-09-11 09:06:27.131794 12f51d69-46b5-43f0-bb86-f9772f459258 {"pid": "6070", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003063890"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:27.181387 2024-09-11 09:06:27.181392 67cbe420-a194-4268-b02a-eba58aabfedc {"pid": "6071", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003064605"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:27.233516 2024-09-11 09:06:27.233518 9293727a-afc3-4dbd-901f-b5b5a5850fc7 {"pid": "6072", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003065345"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:27.292741 2024-09-11 09:06:27.292744 5449143f-63c9-439c-b20b-0014e50805c0 {"pid": "6073", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003066204"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110159234697103372359"} 1 +2024-09-11 09:04:06.011547 2024-09-11 09:06:27.359313 3229de46-189d-4bd0-a2f5-1823502c595b {"pid": "3919", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003077749"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/056821840"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111059329"} 2 +2024-09-11 09:06:27.422052 2024-09-11 09:06:27.422054 29dfc33b-2928-4383-a1eb-de4404115bdb {"pid": "6074", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003080186"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104159234263803371203"} 1 +2024-09-11 09:06:27.478176 2024-09-11 09:06:27.47818 09f080cb-eb2a-46a3-af66-015bf7d6384a {"pid": "6075", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003082787"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:27.536476 2024-09-11 09:06:27.536479 0eec59b5-d657-4174-808d-f6ceab2c8365 {"pid": "6076", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003084316"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107155042846272402753"} 1 +2024-09-11 09:04:18.938607 2024-09-11 09:06:27.60338 e1f22417-af59-41bb-8a7e-9bc81fc3964b {"pid": "4105", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003085874"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/079890849"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111648055"} 2 +2024-09-11 09:06:27.668125 2024-09-11 09:06:27.66813 93b0d653-1362-43fd-acfa-e4ebf7dc5983 {"pid": "6077", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003086097"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:27.727534 2024-09-11 09:06:27.727538 249e1986-f55c-4bb2-8fee-5b624106c48a {"pid": "6078", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003086874"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:27.786017 2024-09-11 09:06:27.786021 3880ea1f-7eb4-4ed5-a8f0-ee4b59b65c21 {"pid": "6079", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003089906"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:27.836688 2024-09-11 09:06:27.836691 a8c5124a-912b-45db-90f3-d43994fd343b {"pid": "6080", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003093098"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:27.899217 2024-09-11 09:06:27.899221 349484fe-e475-489b-b34f-829db40bc480 {"pid": "6081", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003093717"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106159234082303370640"} 1 +2024-09-11 09:06:27.949759 2024-09-11 09:06:27.949762 6e446776-0e75-4b49-b972-e2b0ebf9ed67 {"pid": "6082", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003094768"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:28.007059 2024-09-11 09:06:28.007061 a593f8e4-94a2-40d8-9543-6b26f0b03344 {"pid": "6083", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003094880"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109159234268103371260"} 1 +2024-09-11 09:06:28.060609 2024-09-11 09:06:28.060613 9423d401-26ba-4479-a0f6-0123bfb4067f {"pid": "6084", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003096778"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:28.110323 2024-09-11 09:06:28.110326 301d99c6-5d53-4978-8ecf-815c136ed5e7 {"pid": "6085", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003098919"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:28.165524 2024-09-11 09:06:28.165529 e1b3fadf-1ce4-4e2d-bbbd-2adb8914f791 {"pid": "6086", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003099881"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:28.214207 2024-09-11 09:06:28.214211 52b90be4-7b14-4f65-b529-b4bbc6011368 {"pid": "6087", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003100597"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:57.25666 2024-09-11 09:06:28.272248 fa3e41f7-041d-420b-a704-3c8c086c8d8f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1061268225"}, "pid": "877", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003101806"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/204651913"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104151050007833410325"} 3 +2024-09-11 09:06:28.330478 2024-09-11 09:06:28.330483 b58ca4d8-8202-414d-84ea-8b1d16d4c5f2 {"pid": "6088", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003103435"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:28.386487 2024-09-11 09:06:28.386491 189f02cc-01d5-4b5b-a13c-974bfaa60a9a {"pid": "6089", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003103659"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110159234142703370912"} 1 +2024-09-11 09:06:28.446934 2024-09-11 09:06:28.446939 0216cc77-4d23-48f6-92a2-e0fff7396c0e {"pid": "6090", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003104849"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:28.596446 2024-09-11 09:06:28.596449 8f5c4190-f7aa-4bdd-8a57-442d2854a5e5 {"pid": "6091", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003112356"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:28.64799 2024-09-11 09:06:28.647994 7db0c9a1-8b6d-48c8-8aa2-de840d5c940b {"pid": "6092", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003113657"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:28.700933 2024-09-11 09:06:28.700936 a35f611f-60cf-4821-a157-ee15eba5ab10 {"pid": "6093", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003114032"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:28.752483 2024-09-11 09:06:28.752488 2fc3861a-6acb-4929-8eb7-846b9ebd7211 {"pid": "6094", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003114105"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:28.809521 2024-09-11 09:06:28.809525 95cbd626-7efe-4a33-968c-95451e8b2b2d {"pid": "6095", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003114110"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:28.861454 2024-09-11 09:06:28.861458 bc201368-d7eb-4f85-80dd-81a361acbe8f {"pid": "6096", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003116989"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:28.915765 2024-09-11 09:06:28.915768 74bbe87e-3813-440c-b4b6-04e35af0f1b1 {"pid": "6097", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003121026"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:28.968848 2024-09-11 09:06:28.968851 6b0f3909-01f0-4071-b0ee-9243a48e637d {"pid": "6098", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003121313"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:29.017978 2024-09-11 09:06:29.017981 0fe05504-15b5-45b8-a5a1-1d2a4e444595 {"pid": "6099", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003122042"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:29.070427 2024-09-11 09:06:29.07043 a84f4261-f66f-46ac-9149-a2430b8e78fd {"pid": "6100", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003122713"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:29.122346 2024-09-11 09:06:29.12235 d3354c51-949d-4e4d-afe0-d2156a739879 {"pid": "6101", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003123930"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:29.173318 2024-09-11 09:06:29.173321 c3c65a94-1e32-4203-88d3-d67042743219 {"pid": "6102", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003131969"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:29.232205 2024-09-11 09:06:29.232209 48607cc9-5cd3-4e9b-b296-73a36b9e4967 {"pid": "6103", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003132079"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:29.289582 2024-09-11 09:06:29.289586 8f335849-fe38-47d0-8b0d-32df972dc119 {"pid": "6104", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003134703"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:29.341808 2024-09-11 09:06:29.341812 cba23d97-6219-4cb5-b583-67d5d44f6558 {"pid": "6105", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003136891"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:29.395133 2024-09-11 09:06:29.395135 f7d44513-8af1-4069-a9ef-3decd8793362 {"pid": "6106", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003141286"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:29.457074 2024-09-11 09:06:29.457079 5e51cd2d-b966-4f9d-8f2b-8f63e6a3b59d {"pid": "6107", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003141352"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:34.069335 2024-09-11 09:06:34.06934 95585e87-d008-4b4b-a4ad-745154782e06 {"pid": "6172", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003302604"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112462544"} 1 +2024-09-11 09:06:34.124816 2024-09-11 09:06:34.12482 a3316ecb-a38a-4e36-b4b5-20beee9c9716 {"pid": "6173", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003303466"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:34.180753 2024-09-11 09:06:34.180757 6581fd57-a66c-4d48-b1e2-31fbf3d6d421 {"pid": "6174", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003303830"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:34.233733 2024-09-11 09:06:34.233737 e88a7b0e-9c49-47b7-9acf-7a8c49cbd404 {"pid": "6175", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003307504"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:34.285997 2024-09-11 09:06:34.286002 cfe4f5f0-eab2-448f-9f33-00dbdec0c35f {"pid": "6176", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003308819"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:24.232353 2024-09-11 09:06:34.342651 c23e8053-46e3-4fbc-8a47-88b4aafc712f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1145399924"}, "pid": "1332", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003312980"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11151170896939091824"} 2 +2024-09-11 09:06:34.399245 2024-09-11 09:06:34.399249 ba48c4e2-5bac-4c18-a184-e5bb0ae52ee6 {"pid": "6177", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003314705"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:34.449041 2024-09-11 09:06:34.449044 1cf00322-8fe1-4cfd-9f96-93d2576a9b2d {"pid": "6178", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003316151"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:56.471469 2024-09-11 09:06:34.734955 d99e5379-642e-4397-b44d-5b5e817c4396 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1056604328"}, "pid": "864", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003328096"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/050822551"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111417231"} 3 +2024-09-11 09:06:34.793739 2024-09-11 09:06:34.793744 d1beb0d7-d3dc-4858-80fa-2cca12f6c629 {"pid": "6182", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003331851"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:34.846449 2024-09-11 09:06:34.846453 36c95982-c54a-4b49-956b-1072b247bc8c {"pid": "6183", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003334623"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:34.899353 2024-09-11 09:06:34.899356 2d978c8f-8667-4f77-ab12-318e1dcd6e29 {"pid": "6184", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003337947"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:34.95592 2024-09-11 09:06:34.955925 640fbc73-2d43-48b9-b518-c186c3847b82 {"pid": "6185", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003351113"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:08.79583 2024-09-11 09:06:35.019204 ad6fc36f-d0fd-4475-91b8-693db27db417 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1270526294"}, "pid": "2087", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003352968"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026916134"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110928127"} 3 +2024-09-11 09:06:35.079522 2024-09-11 09:06:35.079527 043c2ee5-fd21-4188-8c86-eacaca937995 {"pid": "6186", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003357999"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:35.135122 2024-09-11 09:06:35.135126 8e496dc5-46ff-4746-acbe-d3f471baa13a {"pid": "6187", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003359260"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:00.437945 2024-09-11 09:06:35.193407 c6f121b5-b466-4305-b92c-3a13267ead34 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/123952425"}, "pid": "1942", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003360509"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028766857"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104623647"} 3 +2024-09-11 09:06:35.251546 2024-09-11 09:06:35.25155 b83b29b2-3698-48bc-b7ac-910349220b16 {"pid": "6188", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003361845"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:35.303912 2024-09-11 09:06:35.303916 d11eb1a3-0fe6-4a72-8726-20b5613e30a2 {"pid": "6189", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003362103"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:08.998666 2024-09-11 09:06:35.368853 e0724582-b7e3-4f38-b6b3-e620f9f3492b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/127307427"}, "pid": "2091", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003363900"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/075866307"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1030696"} 3 +2024-09-11 09:02:41.592808 2024-09-11 09:06:35.562877 a5323cce-ef5c-48f8-a8d5-c1a933e88234 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172140013"}, "pid": "2638", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003375801"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030542650"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109861176"} 3 +2024-09-11 09:06:35.632256 2024-09-11 09:06:35.632259 e9977b49-8be3-43f4-bbf5-929c8ce489cf {"pid": "6190", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003378379"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:25.136476 2024-09-11 09:06:35.701229 16204a0a-7c36-4e29-bd7f-25d9083a8125 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1146015976"}, "pid": "1348", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003378581"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/116539313"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110551008"} 3 +2024-09-11 09:00:51.415119 2024-09-11 09:06:35.769573 b8b32fbb-39a1-4f43-8d5c-5783b0c8e81e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1029917442"}, "pid": "778", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003378837"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/085535621"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108960089"} 3 +2024-09-11 09:02:41.650606 2024-09-11 09:06:35.862972 e242810c-d13d-407c-abff-fad76893f1c4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172141788"}, "pid": "2639", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003379503"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/033478686"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109426764"} 3 +2024-09-11 09:06:35.924724 2024-09-11 09:06:35.924728 cd7ce6fb-0696-4c47-ba55-c04feed52f8d {"pid": "6191", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003381861"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:35.978107 2024-09-11 09:06:35.978112 cd4646e9-5f5b-4ed2-a225-2998f69ee94c {"pid": "6192", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003383105"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:36.031873 2024-09-11 09:06:36.031879 db7aa173-37b9-4245-9b22-03deb726e025 {"pid": "6193", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003385342"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:36.081366 2024-09-11 09:06:36.08137 6f5cc745-245e-4c65-918a-bc40d232cc26 {"pid": "6194", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003386566"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:36.133758 2024-09-11 09:06:36.133761 18f5374d-30ae-4156-81a2-b215e1cfff85 {"pid": "6195", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003388636"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:36.678224 2024-09-11 09:06:36.263601 633b7373-17c3-49e7-bfc4-19efc5343981 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143454781"}, "pid": "2556", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003389620"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/079020933"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110951617"} 3 +2024-09-11 09:02:14.159344 2024-09-11 09:06:36.328464 9d5f3d39-6086-45b9-98fe-42c5fa0fae9a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/131915401"}, "pid": "2183", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003389663"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/031854575"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103618808"} 3 +2024-09-11 09:06:36.3903 2024-09-11 09:06:36.390304 7d7eee66-ea2c-4ff3-8a18-3f9f6f63b243 {"pid": "6196", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003395338"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:12.576051 2024-09-11 09:06:36.44793 7e9be131-1a43-4964-9d30-471792c4b602 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/130124648"}, "pid": "2157", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003398237"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/071344241"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108398363"} 3 +2024-09-11 09:06:36.503482 2024-09-11 09:06:36.503484 f48dbe26-3ae9-4136-879b-90ee23a9a2fd {"pid": "6197", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003399031"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:36.556892 2024-09-11 09:06:36.556906 2302578f-8ce8-42c3-99fb-354f75015b60 {"pid": "6198", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003399240"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:36.611519 2024-09-11 09:06:36.611523 6734d41b-5cc0-4074-9c8f-f416f2aeab12 {"pid": "6199", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003399386"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:36.668046 2024-09-11 09:06:36.66805 75c6662b-cb94-43ac-952a-1505fee5ac0f {"pid": "6200", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003399601"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108467861"} 1 +2024-09-11 09:06:36.720368 2024-09-11 09:06:36.720374 e6bd52eb-5dd6-4a82-ac14-7d3db34b7702 {"pid": "6201", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003401536"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:36.772173 2024-09-11 09:06:36.772176 93a2c683-9f44-4bc7-846a-5ffff7c539c5 {"pid": "6202", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003402056"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:36.82243 2024-09-11 09:06:36.822433 566a0937-8884-494f-b9e1-2b13e5da9064 {"pid": "6203", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003403470"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:36.87455 2024-09-11 09:06:36.874554 5753bdbb-daf1-47cb-beaa-a3973c86086c {"pid": "6204", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003404800"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:36.928443 2024-09-11 09:06:36.928446 8737ecf6-42fe-47ab-955d-d742e1c54cce {"pid": "6205", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003406290"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:36.982018 2024-09-11 09:06:36.982023 3cd11b07-5ff1-42ed-8d53-a8418cad82fb {"pid": "6206", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003411195"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:37.034987 2024-09-11 09:06:37.03499 f09b25a9-6cc6-4508-81bb-579ef3754c4c {"pid": "6207", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003413213"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:37.088889 2024-09-11 09:06:37.088894 f8120ffa-7ad6-42d8-8dfc-81130ab707d2 {"pid": "6208", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003413435"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:01.290407 2024-09-11 09:06:37.14961 b5d1fd74-e540-433b-91ee-8b3f228e9194 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/124206018"}, "pid": "1957", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003416346"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/030415357"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110816301"} 3 +2024-09-11 09:02:00.715631 2024-09-11 09:06:37.253068 7b3c52a3-8a06-468f-86f5-9f6213b28f22 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/12402890X"}, "pid": "1947", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003418109"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/06771496X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109835337"} 3 +2024-09-11 09:06:37.311647 2024-09-11 09:06:37.31165 6a7ccaa1-2cf6-4f6b-9bfc-9f5baeb6b296 {"pid": "6209", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003418336"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:37.364038 2024-09-11 09:06:37.364042 dcfc7fe2-2217-4e5d-8969-c972f2e11ee7 {"pid": "6210", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003421420"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:37.421054 2024-09-11 09:06:37.421057 2f487266-d72a-4433-b0d1-39667c7fb1ec {"pid": "6211", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003421797"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102085298"} 1 +2024-09-11 09:06:37.473152 2024-09-11 09:06:37.473155 3d0caae8-5dce-40db-85ab-0382cea848ca {"pid": "6212", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003422794"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:16.141926 2024-09-11 09:06:37.533967 e22916cf-f215-48ec-aa69-11c27987ea51 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/133362817"}, "pid": "2215", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003427813"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100318770"} 2 +2024-09-11 09:06:37.588105 2024-09-11 09:06:37.588111 f36af0bb-bec6-496d-b155-633a36f5112e {"pid": "6213", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003428330"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:37.639868 2024-09-11 09:06:37.639871 89c81802-6d20-477c-b32f-213abe897fbb {"pid": "6214", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003428443"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:37.696918 2024-09-11 09:06:37.696923 62574fb4-e95d-4b3e-91aa-a4d687ea150d {"pid": "6215", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003435187"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:37.75004 2024-09-11 09:06:37.750045 9f7a4cfd-bd33-4815-b72f-47faad34da19 {"pid": "6216", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003435467"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:14.927817 2024-09-11 09:06:37.817015 986dcfb1-ad6b-439c-8b99-e643456ed29f {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1096172224"}, "pid": "1173", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003436041"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032649789"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103944194"} 3 +2024-09-11 09:06:37.957854 2024-09-11 09:06:37.957858 2cee3d2e-dde9-40b6-b0f0-5a2c2fc51e46 {"pid": "6217", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003449705"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:38.010511 2024-09-11 09:06:38.010516 a86351e6-123d-4cc3-b0b6-52ea0f5b1b6f {"pid": "6218", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003449812"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:38.065207 2024-09-11 09:06:38.065211 0d0104c9-741c-4583-ba3a-12c3a462a586 {"pid": "6219", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003450257"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:38.117768 2024-09-11 09:06:38.117771 ae073339-918a-4382-a2d5-1c3017fef09b {"pid": "6220", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003451220"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:55.976479 2024-09-11 09:06:38.543399 d9c64ba2-04d0-40f1-a724-7fce2669bdd0 {"pid": "4642", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003471767"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/150196261"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112412549"} 2 +2024-09-11 09:06:38.606393 2024-09-11 09:06:38.606396 aa45688b-05d1-4dd6-b3ae-68f341f58160 {"pid": "6226", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003477398"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:38.659033 2024-09-11 09:06:38.659037 b1510178-db97-42e2-a07f-08f77167ef37 {"pid": "6227", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003483779"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:38.716626 2024-09-11 09:06:38.71663 2a704fd4-0f6a-4152-95f6-abc6b1617129 {"pid": "6228", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003483806"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:38.77436 2024-09-11 09:06:38.774364 1018d4aa-8796-402b-930e-b95278f44890 {"pid": "6229", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003484799"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:38.897801 2024-09-11 09:06:38.897806 f49a6c1b-1b1c-4058-9cfe-fd47be6ce4c8 {"pid": "6230", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003489212"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "113148995916359751295"} 1 +2024-09-11 09:04:47.61418 2024-09-11 09:06:38.957639 4d7a3ff3-bd34-4a32-813e-01d2a1504069 {"pid": "4526", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003489450"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/139755969"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111055765"} 2 +2024-09-11 09:06:39.02093 2024-09-11 09:06:39.020938 6b0c81fc-7b61-4ca6-a7e9-8572336c0413 {"pid": "6231", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003490603"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:18.367489 2024-09-11 09:06:39.083872 df9a6105-19f3-4e40-9f0c-b63d8c198aee {"pid": "4096", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003491429"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/079112943"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108494915"} 2 +2024-09-11 09:06:39.142591 2024-09-11 09:06:39.142595 4161829b-3334-436c-b904-74876e65cfe0 {"pid": "6232", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003491460"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:55.003872 2024-09-11 09:06:39.206017 db97c690-6476-4b54-9c43-494da30c2466 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1054143951"}, "pid": "840", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003491484"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/071535616"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106878977"} 3 +2024-09-11 09:06:39.261397 2024-09-11 09:06:39.261402 12b94234-f895-44fb-a448-a89c3290968f {"pid": "6233", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003492458"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:39.408458 2024-09-11 09:06:39.408462 1163bdf7-87d6-4b1e-b961-45e266ebfcfb {"pid": "6234", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003497728"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:39.470526 2024-09-11 09:06:39.470529 2edafc85-d165-483a-8817-25cf95d59645 {"pid": "6235", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003501142"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:39.524108 2024-09-11 09:06:39.524111 6736baa8-3eb4-4d56-ab7b-2d4ae638f49e {"pid": "6236", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003507812"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:39.637835 2024-09-11 09:06:39.637838 77ca8f5f-5cff-4f9b-b8bf-a88b74b8de4a {"pid": "6237", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003510150"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:39.691289 2024-09-11 09:06:39.691294 56404aca-1022-4ce1-bd09-70897baf5c7c {"pid": "6238", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003511981"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:44.40092 2024-09-11 09:06:39.753747 b0854b59-a33e-44a9-90ba-ee11853c5a79 {"pid": "4478", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003514292"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/133765687"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10535188"} 2 +2024-09-11 09:01:44.658181 2024-09-11 09:06:39.818551 fd853bfc-9c77-4a85-939f-c999c1c5de19 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/118865900"}, "pid": "1673", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003516733"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/085647640"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10643494"} 3 +2024-09-11 09:06:39.878213 2024-09-11 09:06:39.878217 d8a10133-1667-4b81-b91e-e87a1ff191e0 {"pid": "6239", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003517040"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:39.930095 2024-09-11 09:06:39.930101 6355bb60-bad3-47bd-8e86-7c10f735751f {"pid": "6240", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003517060"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:39.982764 2024-09-11 09:06:39.982768 4912e8ff-3eeb-439e-9a06-20ea70b55a34 {"pid": "6241", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003518724"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:40.044269 2024-09-11 09:06:40.044273 3b78f126-24ee-4ea5-91e0-52fb029001ef {"pid": "6242", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003520958"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111712927"} 1 +2024-09-11 09:02:19.777286 2024-09-11 09:06:40.106236 7e551430-8d39-4dce-822d-2995dd7292b0 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/136444075"}, "pid": "2274", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003531526"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/070199736"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111213912"} 3 +2024-09-11 09:01:35.543187 2024-09-11 09:06:40.232201 89c691ea-6e09-476a-881f-5565d9aa4b1e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1159283095"}, "pid": "1517", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003531943"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/026995050"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100268307"} 3 +2024-09-11 09:06:40.288689 2024-09-11 09:06:40.288693 21326a9e-7d57-469d-a5a7-da97d515a879 {"pid": "6243", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003538407"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:40.341772 2024-09-11 09:06:40.341777 267a7b6e-12a1-4f13-809c-7d5529e7759e {"pid": "6244", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003542278"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:40.447369 2024-09-11 09:06:40.447374 545cf686-18a3-4fe4-b42c-40fceb282486 {"pid": "6246", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003544201"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:11.690716 2024-09-11 09:06:40.509724 ab48273c-0315-4563-b997-8431e7424c8a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/129599646"}, "pid": "2143", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003546689"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/077053869"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110098886"} 3 +2024-09-11 09:06:40.568696 2024-09-11 09:06:40.5687 60331d7f-a9d8-4d91-804c-2970665ab66b {"pid": "6247", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003550856"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:40.625484 2024-09-11 09:06:40.625489 a3eca4e4-93e8-429d-b0ee-833ebeb800e7 {"pid": "6248", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003552034"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:46.461217 2024-09-11 09:06:40.695344 4e1bd5d0-9f6d-4413-98d0-0e80633e0f6b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1192403959"}, "pid": "1703", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003552475"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/034388397"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104012476"} 3 +2024-09-11 09:06:40.759238 2024-09-11 09:06:40.759242 b0e7c4e4-b1f6-43a5-8c3e-7b89cd6d0ad7 {"pid": "6249", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003556987"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:40.811999 2024-09-11 09:06:40.812003 200c5206-cbb8-442b-b170-63054059d285 {"pid": "6250", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003557648"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:40.864448 2024-09-11 09:06:40.864453 df2beec3-7e93-4dbd-aaef-fae9515d5590 {"pid": "6251", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003557956"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:40.916449 2024-09-11 09:06:40.916452 0a7d9368-749f-4a78-8e03-ad84ea17f043 {"pid": "6252", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003561750"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:12.190458 2024-09-11 09:06:40.974283 fc5fe4b6-b192-443c-ba41-1f6f519784e9 {"pid": "4876", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003562973"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/179358103"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111828532"} 2 +2024-09-11 09:06:41.03095 2024-09-11 09:06:41.030953 0732725b-d1b6-48c4-8ee3-812a65a23c69 {"pid": "6253", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003564111"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:41.086666 2024-09-11 09:06:41.086669 fa534bc8-e15b-4820-a777-33842911f8a2 {"pid": "6254", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003566329"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:41.141621 2024-09-11 09:06:41.141624 164eb11b-9f1d-427f-8790-b37474cfad9a {"pid": "6255", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003568779"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:41.194368 2024-09-11 09:06:41.194372 6d46335c-00fc-49a6-a623-3d3ef72d4b55 {"pid": "6256", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003569699"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:39.976791 2024-09-11 09:06:41.259993 5ed65b66-c542-48c1-8ce2-45229dc45344 {"pid": "4414", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003572511"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/124508758"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108888963"} 2 +2024-09-11 09:06:41.322665 2024-09-11 09:06:41.322669 7be18944-088f-4097-b146-e4bd84a10971 {"pid": "6257", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003572877"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:41.820877 2024-09-11 09:06:41.389402 1dd3b160-701d-4443-a220-20a3177f918b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/172252938"}, "pid": "2642", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003575662"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/033033269"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109537743"} 3 +2024-09-11 09:06:41.451348 2024-09-11 09:06:41.451351 dea46dbb-6f9e-4d08-8376-58575ecacba6 {"pid": "6258", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003578228"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:41.512023 2024-09-11 09:06:41.512025 080d0c74-df01-48ee-8e51-b843cc32b121 {"pid": "6259", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003582881"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:41.566244 2024-09-11 09:06:41.566248 753a8099-1550-4334-a7e2-304bc9cc7210 {"pid": "6260", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003588222"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:38.885367 2024-09-11 09:06:41.683301 7ae6893a-95c9-4986-87e7-90d6ba1a01c5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/170064344"}, "pid": "2594", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003594199"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102014359"} 2 +2024-09-11 09:06:41.741041 2024-09-11 09:06:41.741045 c0f0049d-9320-489b-ac68-55602e35c260 {"pid": "6261", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003596440"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:41.796244 2024-09-11 09:06:41.79625 d9623bc0-2cd7-4f26-a263-84ccf0b4786a {"pid": "6262", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003597080"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:41.854928 2024-09-11 09:06:41.854934 8315173e-0d40-467b-8dc5-fd17713194af {"pid": "6263", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003600525"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:41.919894 2024-09-11 09:06:41.9199 19d38569-5579-444c-a776-fd04ec3e3008 {"pid": "6264", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003600526"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:41.971823 2024-09-11 09:06:41.971826 f7f17372-ae20-4eaa-b960-b7aa81e4ca0c {"pid": "6265", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003604534"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:42.024343 2024-09-11 09:06:42.024347 7eb458f4-f75b-42ab-9dcb-7005c24c9b12 {"pid": "6266", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003610796"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:42.079545 2024-09-11 09:06:42.07955 8f1306fb-a9ff-43bd-b724-7c8c67950e96 {"pid": "6267", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003611548"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:42.13521 2024-09-11 09:06:42.135213 b9302536-a44f-44e7-a5f1-004a2c8915d4 {"pid": "6268", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003613760"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:42.189535 2024-09-11 09:06:42.189538 648c487a-678d-4e8a-bd69-041c24315fd6 {"pid": "6269", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003618731"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:42.240981 2024-09-11 09:06:42.240985 b283c3c0-98b2-451b-bbb7-46757d1d7bb2 {"pid": "6270", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003618791"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:22.697048 2024-09-11 09:06:42.301004 acd0fcac-e7c9-49ee-a862-7010ba57758b {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139422161"}, "pid": "2312", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003618794"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/050348736"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112779075"} 3 +2024-09-11 09:06:42.360932 2024-09-11 09:06:42.360936 bef998ff-bc8a-4300-a57d-5da06a70680c {"pid": "6271", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003619989"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:42.415113 2024-09-11 09:06:42.415116 47581f9d-94c0-48c9-adea-117d16d65abd {"pid": "6272", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003620019"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:42.471811 2024-09-11 09:06:42.471814 b3e4d4e7-1599-4c99-baf0-9bfa2e497111 {"pid": "6273", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003620351"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:42.525044 2024-09-11 09:06:42.525047 ff00a3e7-6888-47ec-8452-c2826dd79975 {"pid": "6274", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003621449"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:42.587144 2024-09-11 09:06:42.587149 7cd42ad7-7135-4680-b7c7-5286d773663f {"pid": "6275", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003625161"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1054159248336604870007"} 1 +2024-09-11 09:06:42.638677 2024-09-11 09:06:42.63868 970ade23-b3fc-4f3a-a97e-6ff2d9c90178 {"pid": "6276", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003630712"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:06.305817 2024-09-11 09:06:42.698658 ac7319f8-1722-44e7-96a6-2e804e6199d2 {"pid": "3923", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003632361"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/056926650"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109846524"} 2 +2024-09-11 09:06:42.755169 2024-09-11 09:06:42.755174 d7faeddd-5deb-47ca-bcd9-be4d2cafad7d {"pid": "6277", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003637861"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:42.807917 2024-09-11 09:06:42.807921 afef9dc9-64c4-41e0-a7e2-394a1bfc7cdb {"pid": "6278", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003640740"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:57.9904 2024-09-11 09:06:42.870579 ae42eb3e-594e-4bfb-b907-aead2eb46153 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/123090598"}, "pid": "1899", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003641265"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/094563152"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10744672"} 3 +2024-09-11 09:00:54.479079 2024-09-11 09:06:42.936163 f7942d91-87f2-4e0f-bc4b-2f70d4d73154 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1051286786"}, "pid": "831", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003645251"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/082091943"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108341185"} 3 +2024-09-11 09:06:42.994572 2024-09-11 09:06:42.994577 1d3b224b-6341-4dfb-af3d-9eab98f3d5cc {"pid": "6279", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003648696"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:43.048216 2024-09-11 09:06:43.04822 466692c8-d86a-499f-91af-73884dd6bebb {"pid": "6280", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003650297"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:43.098985 2024-09-11 09:06:43.098988 fb8b3d17-a75d-43e0-aa2d-abc1955ee7da {"pid": "6281", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003650669"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:43.158213 2024-09-11 09:06:43.158217 1743ef5b-aa7b-4650-af1b-6cb275bea455 {"pid": "6282", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003653616"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:43.219581 2024-09-11 09:06:43.219584 38213d6e-f5d6-4c56-a5f7-a8a4d232edac {"pid": "6283", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003658765"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:43.281648 2024-09-11 09:06:43.281652 6beabf25-a7b2-4570-837b-6c725015fe33 {"pid": "6284", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003660931"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:43.342323 2024-09-11 09:06:43.342327 27350743-5b04-4f36-9584-55ff0eb02184 {"pid": "6285", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003662299"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:43.402697 2024-09-11 09:06:43.4027 d63a9695-cb58-4124-8bfa-50dfba8b1c3f {"pid": "6286", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003662624"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:43.453053 2024-09-11 09:06:43.453056 e08d8a85-5257-43d9-bf4f-805a0f7b88ae {"pid": "6287", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003671506"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:43.505456 2024-09-11 09:06:43.505468 866049e8-b409-4463-a1ff-e805cb0a3e78 {"pid": "6288", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003672170"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:43.556082 2024-09-11 09:06:43.556085 a54ff15a-7527-462a-8e68-f1c53368a710 {"pid": "6289", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003673634"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:43.609838 2024-09-11 09:06:43.609842 db110353-2fa0-45cf-bffc-2f90aff90e1b {"pid": "6290", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003677375"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:43.660477 2024-09-11 09:06:43.660481 4f997484-6cf9-4981-9145-47ef7e980235 {"pid": "6291", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003679975"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:43.712957 2024-09-11 09:06:43.712961 0378ecef-aa59-400f-a543-d0e11856e5e1 {"pid": "6292", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003681000"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:03.413596 2024-09-11 09:06:43.774986 51c88339-5751-42ae-9e96-32c8c55acf46 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/12473409X"}, "pid": "1993", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003685283"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/029598982"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108414698"} 3 +2024-09-11 09:06:43.839706 2024-09-11 09:06:43.839711 9c443497-c32d-45be-b0b7-6d733a7e94ce {"pid": "6293", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003685465"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:30.728236 2024-09-11 09:06:43.902002 37eaa46a-e77d-46b9-88c2-c9e7ee875091 {"pid": "5187", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003688082"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/204251206"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112150747059116301735"} 2 +2024-09-11 09:06:43.958723 2024-09-11 09:06:43.958728 f5253cad-4651-4db4-8c03-db48969c4e26 {"pid": "6294", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003688354"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:44.014636 2024-09-11 09:06:44.014639 55bc5389-919e-494b-b71a-ea6148d012e6 {"pid": "6295", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003696554"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:44.071374 2024-09-11 09:06:44.07138 32f3c26b-e670-440b-aac8-24e004d4bd3a {"pid": "6296", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003699041"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:44.125663 2024-09-11 09:06:44.125667 e75ad7aa-8bc1-49d3-9994-c47a568b25ac {"pid": "6297", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003703519"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:44.182362 2024-09-11 09:06:44.182365 7fb783bc-ef40-4f32-8353-c9333039a71d {"pid": "6298", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003703655"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:43.937073 2024-09-11 09:06:44.241176 63070ec8-0d15-4b0f-a2ab-a6268db516ee {"pid": "4470", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003706170"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/133004503"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112252873"} 2 +2024-09-11 09:06:44.29963 2024-09-11 09:06:44.299632 fa6d2264-4f9f-4f3f-aa95-a1e0d1694ac0 {"pid": "6299", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003710512"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:44.354099 2024-09-11 09:06:44.354102 4b0209a9-b425-44b9-a4d6-a97dae7c2e4e {"pid": "6300", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003713064"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:44.405866 2024-09-11 09:06:44.405869 8a1d787d-1835-46bb-81bb-494ff6a97109 {"pid": "6301", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003717532"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:44.461688 2024-09-11 09:06:44.461692 e228c14b-2776-4c9a-b7e1-c89498b798eb {"pid": "6302", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003719235"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107203774"} 1 +2024-09-11 09:06:44.518541 2024-09-11 09:06:44.518546 9c67cf6d-b3ed-49b5-be27-3fd966520413 {"pid": "6303", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003721710"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:44.576797 2024-09-11 09:06:44.576801 b66649d2-64a8-4538-b6ba-15b7919d73b1 {"pid": "6304", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003728520"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:24.573381 2024-09-11 09:06:44.654882 6e68f208-48d0-4416-876a-cebab06dc370 {"pid": "5083", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003733566"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/198193327"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107588895"} 2 +2024-09-11 09:00:47.816564 2024-09-11 09:06:44.71497 c4ac4841-fd73-4068-9ad8-de82f143a545 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1014841011"}, "pid": "716", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003734370"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111260244"} 2 +2024-09-11 09:06:44.769313 2024-09-11 09:06:44.769318 2116fc4b-1749-4c1e-97ae-da839aadbcd0 {"pid": "6305", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003736990"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:44.820818 2024-09-11 09:06:44.820821 e0b5c368-2281-4ec7-bc6b-58032743f4d0 {"pid": "6306", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003737238"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:44.872246 2024-09-11 09:06:44.872248 82a99551-91f1-42a2-9706-da363ea36176 {"pid": "6307", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003743096"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:44.996939 2024-09-11 09:06:44.996942 f89a2f27-5cc5-4cf8-a83b-885ba5d03d9a {"pid": "6308", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003744787"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:45.060493 2024-09-11 09:06:45.060497 592f534a-7564-4526-b1ba-b5e35944fe48 {"pid": "6309", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003747661"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:45.117083 2024-09-11 09:06:45.117088 718fca43-cdcb-4abd-96b8-5d483e71ec01 {"pid": "6310", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003751647"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:43.472746 2024-09-11 09:06:45.17287 9cd5787b-5833-4fc9-830f-2c820771b9d5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/173311660"}, "pid": "2672", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003752143"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/227218493"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109420472"} 3 +2024-09-11 09:06:45.233909 2024-09-11 09:06:45.233915 5abaee4d-3b3f-4a98-bb4b-9b53bf36c66c {"pid": "6311", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003755899"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:45.28895 2024-09-11 09:06:45.288953 48e87c1d-d42e-4099-8c28-a91a51477920 {"pid": "6312", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003759742"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:45.342387 2024-09-11 09:06:45.342391 a15f7311-ab9c-4833-ae79-02b94ed4b988 {"pid": "6313", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003763487"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:45.393617 2024-09-11 09:06:45.393622 287805a8-98f8-4b69-b0fd-9bb5a4bf8e74 {"pid": "6314", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003768835"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:47.189902 2024-09-11 09:06:45.451592 d352ef26-a252-4a87-b732-2b0036eaf847 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/119464942"}, "pid": "1716", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003780412"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032801009"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108259312"} 3 +2024-09-11 09:06:45.512115 2024-09-11 09:06:45.51212 33a47466-069b-41c7-8888-6b0007c3cfbf {"pid": "6315", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003781775"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:45.56854 2024-09-11 09:06:45.568544 55992e26-8a89-4977-83b5-cde036d5a747 {"pid": "6316", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003782234"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100211129"} 1 +2024-09-11 09:06:45.64899 2024-09-11 09:06:45.648995 c9e34b10-868f-4b88-8a9f-75f36aa19ff6 {"pid": "6317", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003783872"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:45.70472 2024-09-11 09:06:45.704724 64a41867-8f73-4542-9e8f-f5af2f7659bb {"pid": "6318", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003788311"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:45.832442 2024-09-11 09:06:45.832444 90d68790-e7a0-4779-9981-14fefe097628 {"pid": "6319", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003794166"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:45.887423 2024-09-11 09:06:45.887428 f2ec2971-39db-434d-af0a-da781a537ec8 {"pid": "6320", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003794394"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:45.943989 2024-09-11 09:06:45.943993 ecc63190-dfa6-4b91-99ac-b977fd59e9da {"pid": "6321", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003794788"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109822368"} 1 +2024-09-11 09:01:24.507152 2024-09-11 09:06:45.998642 e85d7e7d-a575-4903-9079-21d2bceb88b6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1145519989"}, "pid": "1337", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003795823"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/032401248"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108875994"} 3 +2024-09-11 09:06:46.060363 2024-09-11 09:06:46.060368 74f6366f-b4be-4828-8d47-80c4f41bf704 {"pid": "6322", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003795824"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:46.177995 2024-09-11 09:06:46.178 5c37228f-dd36-432d-92a8-6e6e7a31dfe1 {"pid": "6323", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003808479"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:46.231801 2024-09-11 09:06:46.231803 56aa8b2c-4914-472b-897c-d79aee82c261 {"pid": "6324", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003808958"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:46.282849 2024-09-11 09:06:46.282855 2ac0c662-0c2e-4567-bc86-0b89ca86a814 {"pid": "6325", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003809251"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:46.332502 2024-09-11 09:06:46.332504 50658279-1398-424e-ab3d-658bde6002fd {"pid": "6326", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003811660"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:46.384134 2024-09-11 09:06:46.384137 6caf14f3-0691-4ce1-9a68-2075c1b17aa9 {"pid": "6327", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003813334"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:46.50021 2024-09-11 09:06:46.500214 7529a567-debb-427e-9a82-6c8da4e7283c {"pid": "6328", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003819619"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:46.554856 2024-09-11 09:06:46.554861 0db164b9-6c1c-42c8-8c1b-81217df08a49 {"pid": "6329", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003822497"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:41.997446 2024-09-11 09:06:46.614106 9b828e15-eb15-4f65-a95f-7dd635f8dd88 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/117725293"}, "pid": "1627", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003825451"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/084147385"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108896487"} 3 +2024-09-11 09:06:46.671589 2024-09-11 09:06:46.671593 d251f4bb-eba6-41de-b4b9-a6b1863dd9d2 {"pid": "6330", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003827438"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:46.826912 2024-09-11 09:06:46.826917 896b7b61-f0cb-4ef8-bb56-c5ace8131929 {"pid": "6331", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003829549"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:47.003257 2024-09-11 09:06:47.003262 3c3f63cd-0f69-4ad5-ac67-c11dc88e8aed {"pid": "6332", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003835588"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:19.334261 2024-09-11 09:06:47.061617 78d3f0e1-9da2-4df9-ae9b-3b75b7d80a72 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1122052537"}, "pid": "1250", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003839353"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/06703098X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110272620"} 3 +2024-09-11 09:06:47.118609 2024-09-11 09:06:47.118613 c4688a78-7dd0-4059-b0cd-db7162be5fb4 {"pid": "6333", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003840255"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:47.167327 2024-09-11 09:06:47.167329 bc4034a3-8e27-4e0e-b0e4-dde0fe2b842b {"pid": "6334", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003840370"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:47.217481 2024-09-11 09:06:47.217485 703140e1-1373-4c5c-a422-4c5c21180b99 {"pid": "6335", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003840561"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:47.271273 2024-09-11 09:06:47.271277 5e269aeb-e324-47c9-8346-ace60c56c076 {"pid": "6336", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003842524"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:47.330018 2024-09-11 09:06:47.330022 bcc90ac5-8798-44ea-af1c-e57b1c228caa {"pid": "6337", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003845264"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:47.392287 2024-09-11 09:06:47.392292 fc9316a0-9edc-4514-9ef2-af2e3d4825b1 {"pid": "6338", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003849275"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105159248448004870005"} 1 +2024-09-11 09:06:47.444673 2024-09-11 09:06:47.444676 92f33d00-ca22-4ac0-bc3e-d7415cb09d92 {"pid": "6339", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003849995"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:47.499293 2024-09-11 09:06:47.499298 4808c1d2-fd31-470f-ab06-ec74deed7f8d {"pid": "6340", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003852855"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:41.094808 2024-09-11 09:06:47.556882 238f8346-620e-4341-997b-03ea62a5f40e {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/117490555"}, "pid": "1612", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003853351"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/147644305"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10398282"} 3 +2024-09-11 09:06:47.612599 2024-09-11 09:06:47.612603 78120df4-3c6a-4c2c-a1bc-4ef3f27d29c0 {"pid": "6341", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003854679"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:36.4558 2024-09-11 09:06:47.674316 c66e1272-ac19-4e76-9167-34ce38e57ac1 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143371193"}, "pid": "2552", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003861370"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/029924480"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112422845"} 3 +2024-09-11 09:01:32.454372 2024-09-11 09:06:47.755596 5e6be034-ba71-4e9d-9b30-1a923403f77d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/115830324"}, "pid": "1466", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003863577"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/053516184"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108685760"} 3 +2024-09-11 09:04:11.286202 2024-09-11 09:06:47.82226 509b14a1-6d80-45fc-8b8b-aaaeb0929594 {"pid": "3998", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003870613"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/069148155"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110245846"} 2 +2024-09-11 09:06:47.875957 2024-09-11 09:06:47.875961 aed84f52-276e-427c-a9d2-910395b3734d {"pid": "6342", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003881754"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:47.956804 2024-09-11 09:06:47.956808 149ec4c5-5748-47d0-9a3d-a63988a9600e {"pid": "6343", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003883009"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:48.024187 2024-09-11 09:06:48.024191 1c5e91bd-7e2e-4a6f-b080-2f0f2adef151 {"pid": "6344", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003883330"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:48.144415 2024-09-11 09:06:48.144419 1d8305ae-efd6-4eb5-a931-539e32d8da2b {"pid": "6345", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003883777"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:48.203736 2024-09-11 09:06:48.203741 965ed9d0-c5de-45e7-9816-7ceecde5ee3c {"pid": "6346", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003886758"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:48.328598 2024-09-11 09:06:48.328601 386f9744-6785-4bc9-8e87-0f5080d2291f {"pid": "6347", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003890737"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:48.37994 2024-09-11 09:06:48.379945 62ed0ede-9493-4836-b43c-13bd0ca2cc60 {"pid": "6348", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003895492"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:48.440245 2024-09-11 09:06:48.440247 f5585f8f-e973-4a49-bdd8-7031e645ca3f {"pid": "6349", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003899816"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:48.527386 2024-09-11 09:06:48.527392 1cbf9a9c-d5ec-4488-bbf4-1e97ccc6ff18 {"pid": "6350", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003902263"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:48.584924 2024-09-11 09:06:48.584927 4559706b-c969-4593-b90e-49af21f8fc5d {"pid": "6351", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003905474"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:48.833236 2024-09-11 09:06:48.83324 a5534167-7c2b-4b1b-abd7-ab7a10e504fd {"pid": "6352", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003936311"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:49.016394 2024-09-11 09:06:49.016399 ff51c031-789c-4112-81b9-306ef2a6730f {"pid": "6353", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003948416"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:49.06918 2024-09-11 09:06:49.069182 9a928dfd-b23a-4ac8-91e4-60311bfaaa9b {"pid": "6354", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003958822"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:35.880507 2024-09-11 09:06:49.127922 72a499fb-84f9-493c-942c-e29c74a9f275 {"pid": "4353", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003966124"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/115078630"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100232568"} 2 +2024-09-11 09:06:49.183304 2024-09-11 09:06:49.18331 87f90494-bc9d-47da-8787-edc94d4e500b {"pid": "6355", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003967245"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:49.32824 2024-09-11 09:06:49.328244 15471c5d-ac1c-4839-896d-edbb4bebdedf {"pid": "6356", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003969900"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:49.389732 2024-09-11 09:06:49.389735 c1fed4a2-a662-448a-861e-7d1d3f72e485 {"pid": "6357", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003971618"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101277090"} 1 +2024-09-11 09:06:49.453679 2024-09-11 09:06:49.453682 3a3f2b54-1c69-48f5-a884-4cab41d66ba7 {"pid": "6358", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003973251"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110149294102580520845"} 1 +2024-09-11 09:05:17.056188 2024-09-11 09:06:49.513672 c3070073-68db-4eec-b80b-f2fd084b486b {"pid": "4953", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003975282"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/190122277"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106922977"} 2 +2024-09-11 09:01:03.048258 2024-09-11 09:06:49.577879 b08718a2-ad37-4975-85ec-112172727982 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/108451836"}, "pid": "974", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003981555"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/088404587"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11150698"} 3 +2024-09-11 09:01:53.897523 2024-09-11 09:06:49.652909 caca493b-42c2-43a5-bd93-ea26c0abece7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/121710696"}, "pid": "1831", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003981870"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/166452955"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109955226"} 3 +2024-09-11 09:06:49.710208 2024-09-11 09:06:49.710212 25262d7a-105d-476a-8297-af0c4c4e522a {"pid": "6359", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003984942"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:10.305628 2024-09-11 09:06:49.769635 e60d0e4f-40e5-43c7-a924-2a71ef6264fb {"pid": "4846", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003985806"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/174595174"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109243938"} 2 +2024-09-11 09:06:49.82667 2024-09-11 09:06:49.826675 df11421b-f563-4573-bc24-b3c094ec106d {"pid": "6360", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003988011"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:49.878311 2024-09-11 09:06:49.878315 919b9ea2-fb07-4e72-a903-8166602a1b55 {"pid": "6361", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003988126"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:49.93446 2024-09-11 09:06:49.934463 d8cf201f-70c1-48a1-abc3-8d2f7914e1e5 {"pid": "6362", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003990251"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:49.987101 2024-09-11 09:06:49.987104 5ea106a6-04e4-4a9c-9bb7-072a56fe764a {"pid": "6363", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003991229"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:50.0425 2024-09-11 09:06:50.042505 5f05df2a-3105-456c-bd98-ddfaafac527d {"pid": "6364", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003994705"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:36.987904 2024-09-11 09:06:50.098059 c0ebd747-c5fc-409b-89b6-f21fefaf2105 {"pid": "5291", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003995908"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/227302370"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109437005"} 2 +2024-09-11 09:06:50.154955 2024-09-11 09:06:50.154958 e0961efb-8ddc-4653-9765-3d42f99a52ff {"pid": "6365", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A003999648"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:50.210831 2024-09-11 09:06:50.210833 12b06273-0a61-4fbd-ad0e-93407c563de1 {"pid": "6366", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005312991"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:50.262831 2024-09-11 09:06:50.262834 5a110aee-bb0f-4931-9c0e-ca3d752c3605 {"pid": "6367", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005368039"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:50.318635 2024-09-11 09:06:50.318639 70dd3af3-9885-4eb6-b043-79a01807790c {"pid": "6368", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005460720"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:50.375353 2024-09-11 09:06:50.375357 63724dfa-89ab-47e1-8ff3-893cbfa5b6ee {"pid": "6369", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005463202"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:50.428157 2024-09-11 09:06:50.428159 35471374-9896-474e-98a5-92b5dec9bdee {"pid": "6370", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005464802"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:50.482742 2024-09-11 09:06:50.482746 de3f7166-db28-479d-b241-23e6509de964 {"pid": "6371", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005466192"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:50.559335 2024-09-11 09:06:50.55934 67feecbf-bdfd-43fa-aaf1-1371069a1fca {"pid": "6372", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005469950"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:50.615543 2024-09-11 09:06:50.615547 a5c1304c-5b96-4291-a6b4-7b4496dad5c5 {"pid": "6373", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005471055"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:50.667691 2024-09-11 09:06:50.667695 a255298f-9d76-402a-b773-f029fd2ba0d8 {"pid": "6374", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005475587"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:50.722678 2024-09-11 09:06:50.722682 1ea0a290-a542-44cc-a194-df6fec17c39d {"pid": "6375", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005480840"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:50.774187 2024-09-11 09:06:50.77419 a50dd129-bb48-441a-be69-d6ef71d31d37 {"pid": "6376", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005495353"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:50.82761 2024-09-11 09:06:50.827615 9afdb9f0-da2c-4deb-a998-3cc8954af8cd {"pid": "6377", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005496746"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:50.886996 2024-09-11 09:06:50.886999 3ac435d3-fcf4-45b5-abf7-cb156703b050 {"pid": "6378", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005513603"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:50.938682 2024-09-11 09:06:50.938685 4ab57aa3-dd55-44fa-9380-7681040000ae {"pid": "6379", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005522657"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:50.992809 2024-09-11 09:06:50.992814 ef290004-9526-4523-bd68-ff18d95aecc9 {"pid": "6380", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005533991"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:51.04888 2024-09-11 09:06:51.048884 e30816fa-a6ce-4ef1-bd14-0d4bfa0d6c64 {"pid": "6381", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005558255"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:51.10542 2024-09-11 09:06:51.105424 e8cfb276-0015-4286-972d-f0277ca30c96 {"pid": "6382", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005570502"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:51.158375 2024-09-11 09:06:51.158379 2aa7314e-ff08-4066-8438-2f204e1dbcb9 {"pid": "6383", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005573785"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:51.21331 2024-09-11 09:06:51.213315 fe527757-08a4-4a86-914a-32662efcc800 {"pid": "6384", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005595559"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:51.268599 2024-09-11 09:06:51.268604 54658457-13b2-445b-ac9c-c8b7616652a5 {"pid": "6385", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005599445"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:51.327099 2024-09-11 09:06:51.327103 e01eb13a-9177-4950-97be-6daefc2a8526 {"pid": "6386", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005605846"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:51.387028 2024-09-11 09:06:51.387033 b19a78ff-06e5-4e36-89c0-fe2ae8bcb654 {"pid": "6387", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005621817"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:51.439679 2024-09-11 09:06:51.439681 8fa10d77-301f-46fb-a276-1f9add5f6820 {"pid": "6388", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005623637"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:51.494809 2024-09-11 09:06:51.494814 61b3fd3f-d829-49c9-97ea-a9c18f1d8b2e {"pid": "6389", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005655274"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:51.551795 2024-09-11 09:06:51.551799 a72774cc-8b3f-46f0-8916-2b9eac006456 {"pid": "6390", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005663176"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:51.609307 2024-09-11 09:06:51.609309 45b9382b-0497-42a4-a096-aa0cdd64019f {"pid": "6391", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005673019"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:51.665962 2024-09-11 09:06:51.665966 09c0b12f-ef9c-4deb-9ea7-e0593cb355c3 {"pid": "6392", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005680197"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:51.718599 2024-09-11 09:06:51.718602 1cf7a169-68fe-4a06-9b59-f25470d00ac2 {"pid": "6393", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005718969"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:51.107647 2024-09-11 09:06:51.777496 a5e14d95-4b1b-4036-8560-0f690abc04e7 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/120759241"}, "pid": "1782", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005732208"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102461795"} 2 +2024-09-11 09:06:51.834268 2024-09-11 09:06:51.834274 c4b4ed86-0f93-4d6f-bbc6-db1b2d526061 {"pid": "6394", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005753197"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:51.916012 2024-09-11 09:06:51.916017 7239703a-7b5f-46be-930f-21c273ea468a {"pid": "6395", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005770175"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:51.971801 2024-09-11 09:06:51.971804 13e0fa7b-439a-4f1d-9643-c291f7dcc573 {"pid": "6396", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005787734"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:52.032806 2024-09-11 09:06:52.03281 0d09cbf9-4d5f-49ee-8376-b3d243a3d47a {"pid": "6397", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005794650"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:52.085694 2024-09-11 09:06:52.085697 5c4faa73-2083-47ee-984f-597b50f2fefa {"pid": "6398", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005814757"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:52.141826 2024-09-11 09:06:52.14183 494fc60b-a8d6-415a-99d6-02621903f1e6 {"pid": "6399", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005821830"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100799173"} 1 +2024-09-11 09:06:52.196717 2024-09-11 09:06:52.196721 46a4e713-f6ab-44b3-bc71-72d2e4ed1093 {"pid": "6400", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005915341"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:52.250647 2024-09-11 09:06:52.250653 5edb6673-2df9-41b0-ab3e-93ee69bf64c4 {"pid": "6401", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005942520"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:52.308372 2024-09-11 09:06:52.308376 0fdefbfe-939f-4dfe-b5dc-c9a0f7d6a53b {"pid": "6402", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005944951"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:52.36471 2024-09-11 09:06:52.364713 91abe8fa-7458-42f0-9d72-99a3c9a8fbbe {"pid": "6403", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005945920"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:52.417167 2024-09-11 09:06:52.417172 b9c9e89a-75a1-44bc-8d36-638c4e0a5c60 {"pid": "6404", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005984015"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:52.480872 2024-09-11 09:06:52.480876 62ad5003-a8a8-41ff-95a1-27b08636b708 {"pid": "6405", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A005995031"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104973469"} 1 +2024-09-11 09:06:52.537102 2024-09-11 09:06:52.537104 87083759-4036-4b0f-a35b-b81daf473174 {"pid": "6406", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006018560"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:52.590723 2024-09-11 09:06:52.590727 30e451de-0a06-4796-8464-f4e6c0f052b4 {"pid": "6407", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006023343"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:52.64633 2024-09-11 09:06:52.646335 52cd9cdf-ef17-4bc2-a1d3-340ac6608758 {"pid": "6408", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006035318"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10712541"} 1 +2024-09-11 09:06:52.704207 2024-09-11 09:06:52.704213 bd87a15b-bc34-46ec-891b-10e27692e7bc {"pid": "6409", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006048308"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:52.759982 2024-09-11 09:06:52.759986 b499524d-4cd4-4ca7-94e5-b885c6c34b3c {"pid": "6410", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006055239"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:52.813616 2024-09-11 09:06:52.813621 0437addd-4a98-4969-87ed-63e1bf79db37 {"pid": "6411", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006055590"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:52.87818 2024-09-11 09:06:52.878184 ae0de1fb-67ae-4474-8521-7a73119f240f {"pid": "6412", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006065033"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111907831"} 1 +2024-09-11 09:06:52.93176 2024-09-11 09:06:52.931762 c9107689-c611-4c71-ab91-de5e8cb0129b {"pid": "6413", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006071676"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:52.985029 2024-09-11 09:06:52.985034 0bcf2d06-8fb2-4deb-b2e7-c09c84aadaa8 {"pid": "6414", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006094802"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:53.037868 2024-09-11 09:06:53.037872 ea55e66b-844e-4bd7-91b2-59171beca330 {"pid": "6415", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006099782"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:53.095628 2024-09-11 09:06:53.09563 624405f3-c3d7-41ef-8b5a-94ebf1d3e260 {"pid": "6416", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006102670"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:53.148559 2024-09-11 09:06:53.148562 dce20a5a-d510-401a-8d8b-e61384f6b5a9 {"pid": "6417", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006154163"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:53.27759 2024-09-11 09:06:53.277593 70d87e38-f52c-4701-b45d-7df0aa26f00a {"pid": "6418", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006173450"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:49.410744 2024-09-11 09:06:53.337297 fa4c6f8d-7741-4a30-a7bb-9b214cff1736 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/12031603X"}, "pid": "1752", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006173574"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/052470989"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112941957"} 3 +2024-09-11 09:06:53.39601 2024-09-11 09:06:53.396013 94994071-14fc-4580-ad99-0275a843631d {"pid": "6419", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006204823"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:53.448792 2024-09-11 09:06:53.448796 0e2e0e19-2e31-43c2-b048-891221b926e3 {"pid": "6420", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006210520"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:53.504653 2024-09-11 09:06:53.504656 73f39e88-f329-400e-8607-362769e62e1a {"pid": "6421", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006220068"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:53.556911 2024-09-11 09:06:53.556916 6c34540c-5edd-48c5-a6ca-e307435ecf0c {"pid": "6422", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006225272"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:53.609895 2024-09-11 09:06:53.609898 b49b0cf8-f513-4033-8fb1-c1b544c3e78b {"pid": "6423", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006241487"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:53.664095 2024-09-11 09:06:53.664099 a953f8f2-5096-4bbd-82bf-62da2b8997e8 {"pid": "6424", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006246319"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:53.724491 2024-09-11 09:06:53.724495 d4ac7a5b-0348-4b1a-9206-c80db580ca30 {"pid": "6425", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006251854"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:53.782167 2024-09-11 09:06:53.782171 a5e8d1a0-d3c1-4327-8d29-24eefe3cdca3 {"pid": "6426", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006282682"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:53.853221 2024-09-11 09:06:53.853226 35d3b91f-8893-43e6-983d-88aabf6da9fd {"pid": "6427", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006288245"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:53.913196 2024-09-11 09:06:53.9132 a6a79194-4623-43b9-bcb7-dce34524ee3c {"pid": "6428", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006304507"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:53.978564 2024-09-11 09:06:53.978566 14eef598-79c6-4224-a77a-49b3fc26413b {"pid": "6429", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006305372"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:54.031456 2024-09-11 09:06:54.031459 df0f6d69-57e6-4369-b53b-bf5166ea9b23 {"pid": "6430", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006319847"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:54.090036 2024-09-11 09:06:54.09004 e8d1faf5-12d1-4640-a824-97d6c60ad35a {"pid": "6431", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006331016"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:54.149815 2024-09-11 09:06:54.14982 83d4feb1-35df-44d6-969c-458530cdbb2d {"pid": "6432", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006378241"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:54.213756 2024-09-11 09:06:54.213761 e35e05d2-3556-481a-bc20-fd052a04075c {"pid": "6433", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006384206"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:54.281424 2024-09-11 09:06:54.281429 8b95ec44-d2db-4816-8757-054f5140b741 {"pid": "6434", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006389498"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102218173"} 1 +2024-09-11 09:06:54.336315 2024-09-11 09:06:54.33632 9020afa8-0136-4b57-82f4-2e4aaf816f64 {"pid": "6435", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006407470"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:54.389489 2024-09-11 09:06:54.389491 48e50a20-0cde-4a29-9a47-faf62b45fd63 {"pid": "6436", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006417880"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:54.442676 2024-09-11 09:06:54.442681 cb308cfb-4fbe-485d-aa0b-07b8e26f61f9 {"pid": "6437", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006417971"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:54.497952 2024-09-11 09:06:54.497955 3e577360-1c6b-452d-bbc4-e1557ad665ca {"pid": "6438", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006451071"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:54.550792 2024-09-11 09:06:54.550797 446c2de2-d309-48ee-91e2-b2d27027a0bf {"pid": "6439", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006525884"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:54.603237 2024-09-11 09:06:54.603241 9e800d7f-8f23-45a5-b9eb-37ee47dd8aaa {"pid": "6440", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006533818"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:54.657013 2024-09-11 09:06:54.657016 1a2f6202-9a42-43d0-909e-7b8ee8797b23 {"pid": "6441", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006534193"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:54.711364 2024-09-11 09:06:54.711367 c0f95d4e-e206-45f1-a704-e8ac356b15ad {"pid": "6442", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A006581053"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:36.961747 2024-09-11 09:06:54.772418 31608e0c-e02d-45f1-8ac7-44813ab5bab2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/143513796"}, "pid": "2561", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A008584612"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/128587679"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10064822"} 3 +2024-09-11 09:06:54.829999 2024-09-11 09:06:54.830002 22429db7-e52e-4b43-a096-cd00553a357c {"pid": "6443", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A008591482"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:54.889119 2024-09-11 09:06:54.889124 d2ed111f-d430-47c6-ab59-779bfdc2dbee {"pid": "6444", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A008595638"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:54.94628 2024-09-11 09:06:54.946283 73d1fb0e-8af8-4d4d-9d82-1cdb248cff50 {"pid": "6445", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A008660620"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:05.171112 2024-09-11 09:06:55.008529 b4bb3d0f-10f5-49a8-bb45-a40e79c577d9 {"pid": "5759", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A008729062"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/254678475"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102373586"} 2 +2024-09-11 09:06:55.072246 2024-09-11 09:06:55.07225 ec5a578e-168b-4b84-b0e7-0cde7cb529a2 {"pid": "6446", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A008730051"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106312488"} 1 +2024-09-11 09:06:55.13165 2024-09-11 09:06:55.131654 0c7a16aa-3490-4823-9f65-a83502b478d4 {"pid": "6447", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A008794733"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:55.187678 2024-09-11 09:06:55.187681 0e85188c-8f6c-4978-984f-f5a64798865e {"pid": "6448", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A008799434"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:55.242702 2024-09-11 09:06:55.242706 1b2d0cbd-9e5b-4009-ba13-fcff76d347b0 {"pid": "6449", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A008811165"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:55.301748 2024-09-11 09:06:55.301752 237177a7-354f-42b0-9eac-22540ef3eac8 {"pid": "6450", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A008813776"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:55.352074 2024-09-11 09:06:55.352076 2b9bbb1a-e3e3-4336-977d-2fedff44576b {"pid": "6451", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A008846996"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:55.403331 2024-09-11 09:06:55.403337 10e5d9f2-7cbc-454b-9f12-676d92c8f063 {"pid": "6452", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A008873000"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:55.453962 2024-09-11 09:06:55.453967 eb4e3385-1585-4bd1-ac6b-cdbed530ec31 {"pid": "6453", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A008883799"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:55.506037 2024-09-11 09:06:55.506039 abdc52e6-73a8-4e07-9304-f8262c28109c {"pid": "6454", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A008902038"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:55.559644 2024-09-11 09:06:55.559647 2f0bea6b-681a-409a-9f63-08fd7438a6b3 {"pid": "6455", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A008915559"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:55.610449 2024-09-11 09:06:55.610453 33ebd999-9193-46e0-b77c-1c73a8e4b3bb {"pid": "6456", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A008943784"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:55.668625 2024-09-11 09:06:55.66863 6ebff628-fb43-4462-a450-fdcb654d8fc3 {"pid": "6457", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A008959724"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:55.774365 2024-09-11 09:06:55.774368 69fc4d57-fe9e-41e5-8315-451ce29e12f9 {"pid": "6458", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A008978887"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:55.828627 2024-09-11 09:06:55.828632 36ff18fd-0d0b-4410-899a-d44cf614a1cc {"pid": "6459", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009007993"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:55.889101 2024-09-11 09:06:55.889104 5df867b4-10a7-4dd0-bebc-1bc7ec18ae5d {"pid": "6460", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009035130"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:55.94203 2024-09-11 09:06:55.942034 36f54bcd-7e7b-4368-9108-252ddfe12363 {"pid": "6461", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009047642"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:55.992203 2024-09-11 09:06:55.992207 619bed27-a073-45eb-ac05-5fc98262e65b {"pid": "6462", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009059078"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:56.046927 2024-09-11 09:06:56.046931 2b0b737c-4d66-4308-b3da-f5d764635e92 {"pid": "6463", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009061697"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:56.10626 2024-09-11 09:06:56.106264 843a9115-5527-45a4-99ce-eba1f1062da3 {"pid": "6464", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009062623"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:56.161963 2024-09-11 09:06:56.161966 b2ce27e8-cee7-4984-9c46-bd654b196e16 {"pid": "6465", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009084334"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110752429"} 1 +2024-09-11 09:06:56.217374 2024-09-11 09:06:56.21738 2366bb0f-9ea7-445f-938a-1cfb22894449 {"pid": "6466", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009106239"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:56.276277 2024-09-11 09:06:56.27628 c68d94b0-facf-4579-bd85-c41e4689649e {"pid": "6467", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009112861"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:56.332394 2024-09-11 09:06:56.332397 8c7c2b3d-2792-4943-9032-f6b4ad6070d1 {"pid": "6468", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009177536"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:56.385968 2024-09-11 09:06:56.385972 f58c86b2-304b-4f82-b722-8fe3e44de17c {"pid": "6469", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009187240"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:56.437443 2024-09-11 09:06:56.437447 0557d0c4-d02f-4d7c-a664-5508bd1d9550 {"pid": "6470", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009191402"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:56.49714 2024-09-11 09:06:56.497143 8e3948a0-64d0-409a-bf0f-a2a294093431 {"pid": "6471", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009191855"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:21.17326 2024-09-11 09:06:56.554404 f2c35fc9-5276-4a7c-85da-c6eb1841d72a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139209204"}, "pid": "2296", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009279090"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100504043"} 2 +2024-09-11 09:06:56.611771 2024-09-11 09:06:56.611775 1bfcfae9-3094-45ad-9f6b-2eb0062628ce {"pid": "6472", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009281447"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:56.667927 2024-09-11 09:06:56.667931 61612a08-39ee-482b-ae5c-36b790cd91a5 {"pid": "6473", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009303631"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:56.725547 2024-09-11 09:06:56.725551 f99d8b76-ddaf-4221-a810-2f2f665b5b13 {"pid": "6474", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009306109"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10222925"} 1 +2024-09-11 09:06:56.778346 2024-09-11 09:06:56.77835 53531d9d-6394-40fe-8cdd-4f5e688e081c {"pid": "6475", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009309124"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:56.829194 2024-09-11 09:06:56.829199 58ef9090-f4dc-4bec-a9e4-293e092e5b97 {"pid": "6476", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009315376"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:56.883255 2024-09-11 09:06:56.88326 118b30a6-757e-41d8-b7bf-f037df7e9acb {"pid": "6477", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009341300"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:56.935154 2024-09-11 09:06:56.935157 e7d26e14-3416-40a4-9e13-7e7e7972e757 {"pid": "6478", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009366379"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:56.98756 2024-09-11 09:06:56.987563 095756db-3e9d-4ba8-b243-7c1807120ab5 {"pid": "6479", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009366743"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:57.044433 2024-09-11 09:06:57.044436 b3f7a769-5003-4fa1-ae82-bad985031343 {"pid": "6480", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009390744"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:57.097068 2024-09-11 09:06:57.097071 b7fdf5a3-3cd6-4426-91a8-2e052185aeee {"pid": "6481", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009403017"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:57.228073 2024-09-11 09:06:57.228076 0af3bb18-9b26-4442-b39e-3b834a4b780e {"pid": "6482", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009431913"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:57.284053 2024-09-11 09:06:57.284059 f6fac7b4-b1d7-42d0-b00e-5e3fd8e756dc {"pid": "6483", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009476519"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:57.341685 2024-09-11 09:06:57.341689 d54448b4-54e7-49ab-80df-1fbf0d82887c {"pid": "6484", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009505580"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:15.593123 2024-09-11 09:06:57.403383 7742bc5b-fff1-420a-aa3d-d49eb7a7768f {"pid": "4057", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009519020"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/075899655"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10145903"} 2 +2024-09-11 09:06:57.464029 2024-09-11 09:06:57.464031 3d7c9f14-1593-4e9d-8176-0e598bc576b7 {"pid": "6485", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009523157"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:57.518201 2024-09-11 09:06:57.518205 a5c88d55-b653-4904-af71-eee60383e897 {"pid": "6486", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009541958"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:57.573086 2024-09-11 09:06:57.573088 c54f4e6d-39a1-41d8-bd62-5e6e79cb8a38 {"pid": "6487", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009544653"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:57.625576 2024-09-11 09:06:57.625581 b5e30640-ec14-469d-9549-6dc0ecae545b {"pid": "6488", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009546303"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:57.68196 2024-09-11 09:06:57.681964 23338459-4f18-4bd0-9951-0e67a1b82863 {"pid": "6489", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009587127"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:34.281032 2024-09-11 09:06:57.742329 c04ac082-19cc-41c0-8684-ae9527de8de5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/14275210X"}, "pid": "2511", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009590113"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/121150283"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10163228"} 3 +2024-09-11 09:06:57.799705 2024-09-11 09:06:57.799708 c010b59e-7925-4bb5-937a-4d83bef29d0a {"pid": "6490", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009621407"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:57.857623 2024-09-11 09:06:57.857627 9ee5a666-c01a-49ba-83c8-65accf9689f1 {"pid": "6491", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009631364"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:57.919713 2024-09-11 09:06:57.919717 1398c56e-de16-489d-a1ab-64b52e44678d {"pid": "6492", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009639453"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:57.982779 2024-09-11 09:06:57.982783 bcb15579-b697-4968-a787-74257851ceb5 {"pid": "6493", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009643309"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:58.036767 2024-09-11 09:06:58.03677 3a6c463a-f163-450b-9136-369cc8dba22a {"pid": "6494", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009673075"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:58.163789 2024-09-11 09:06:58.163792 e0a6adad-3ed7-4afe-8511-0c4ab1540673 {"pid": "6495", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009754386"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:58.231928 2024-09-11 09:06:58.231932 2b64434e-b3d6-4223-9fbc-323791761ce5 {"pid": "6496", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009973428"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:58.286616 2024-09-11 09:06:58.286618 4e6f10b6-0032-4aeb-9a48-231a96d8dac5 {"pid": "6497", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A009989567"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:58.33992 2024-09-11 09:06:58.339923 c9da3e9e-9700-4ada-86a1-512956e3611b {"pid": "6498", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A010006868"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:58.396215 2024-09-11 09:06:58.396218 e11af3c7-941d-4b3f-802c-693c772a3645 {"pid": "6499", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A010043080"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:58.450507 2024-09-11 09:06:58.450512 28d13576-9a8f-4474-b7f4-c5d6d81e4528 {"pid": "6500", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A010073993"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:58.503415 2024-09-11 09:06:58.503419 43e663a2-d6aa-494c-8492-01a28828ab17 {"pid": "6501", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A010086586"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:58.554084 2024-09-11 09:06:58.554086 8f95e72e-fead-4afd-8f85-8f5ace23de1c {"pid": "6502", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A010104035"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:58.610013 2024-09-11 09:06:58.610016 6876f946-80d7-4f8d-bb58-c92014de7f9f {"pid": "6503", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A010152644"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:58.662357 2024-09-11 09:06:58.662361 71286cb1-0bdb-45f8-9def-82f96cb60aa8 {"pid": "6504", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A010154587"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:58.778526 2024-09-11 09:06:58.778529 eb8cbc48-1e58-4bf5-863a-dee4ff6ab754 {"pid": "6505", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A010219336"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:58.833596 2024-09-11 09:06:58.833601 7ece2021-67ac-4290-b710-8e39812f52fd {"pid": "6506", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A010244192"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:00.574971 2024-09-11 09:07:00.574975 0c7a5794-5bad-4000-bffc-29a45abb7687 {"pid": "6535", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011674667"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:21.696712 2024-09-11 09:06:58.891643 f19f70e1-4a38-4e7e-ac64-835a7a728b36 {"pid": "4146", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A010938873"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/082560757"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10095611"} 2 +2024-09-11 09:06:58.949484 2024-09-11 09:06:58.94949 a4c67c3a-2ec7-4474-85a4-b8787ccdeb3d {"pid": "6507", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A010941010"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:59.007028 2024-09-11 09:06:59.007032 fc36e41a-b2ef-4400-b70b-1e530d560e96 {"pid": "6508", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A010941759"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:59.063502 2024-09-11 09:06:59.063506 da81e8e6-07d3-4203-81bc-c61addf2fca0 {"pid": "6509", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A010952913"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:59.116788 2024-09-11 09:06:59.116793 e2ec6c76-3f1a-4d62-a8e8-80924f1715ff {"pid": "6510", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A010959260"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:59.174534 2024-09-11 09:06:59.174538 721a8937-068b-42d2-b2d4-a1e2ce9ad9ed {"pid": "6511", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011007424"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1056159248481204870000"} 1 +2024-09-11 09:06:59.233412 2024-09-11 09:06:59.233415 56fb6850-58a5-4359-b1a4-3e8401dfce67 {"pid": "6512", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011038799"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:59.285915 2024-09-11 09:06:59.285918 83bce7d5-c4de-40cc-a548-426d279461bb {"pid": "6513", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011078595"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:59.339374 2024-09-11 09:06:59.339377 b72c421f-2338-4a6f-be10-13dfdb7e34a0 {"pid": "6514", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011089656"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:59.401651 2024-09-11 09:06:59.401654 2d1db1bb-2758-4032-bf97-f6030f403982 {"pid": "6515", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011095417"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:59.458056 2024-09-11 09:06:59.458061 bc76a760-a1b7-416d-98ae-c28f33bfe41e {"pid": "6516", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011106617"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:59.513553 2024-09-11 09:06:59.513556 840049b8-39eb-4cbc-b98a-1e20e7835d74 {"pid": "6517", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011113114"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1121159248246104870009"} 1 +2024-09-11 09:06:59.568973 2024-09-11 09:06:59.568979 dba1060c-89aa-41f8-9361-99bba4d0aa5d {"pid": "6518", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011132692"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:59.625684 2024-09-11 09:06:59.625688 6ac114a9-769c-4801-b0ab-96b327c34ef7 {"pid": "6519", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011151957"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:59.677935 2024-09-11 09:06:59.677939 dfa63815-9cfc-4ec7-b48d-9f139178007a {"pid": "6520", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011157710"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:59.730662 2024-09-11 09:06:59.730667 d35b71c2-aefa-41bf-b495-de9a90a9603a {"pid": "6521", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011241983"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:59.78162 2024-09-11 09:06:59.781623 9a793e25-90ed-4a48-a965-2959a1e8d125 {"pid": "6522", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011363373"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:59.834477 2024-09-11 09:06:59.834486 56eb728d-e316-4e57-9041-55f2e25a78df {"pid": "6523", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011377115"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:59.889993 2024-09-11 09:06:59.889998 d5b3770a-d012-4623-95ac-56e762f99477 {"pid": "6524", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011383290"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:59.943017 2024-09-11 09:06:59.943021 0b14b52b-d85c-4c51-9bfd-b81b9966e71e {"pid": "6525", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011384771"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:59.997149 2024-09-11 09:06:59.997152 9d8da7f9-3e73-4e50-ad52-300e51d26b94 {"pid": "6526", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011412011"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:00.056177 2024-09-11 09:07:00.056179 62d2de1d-e85b-413e-8280-3c46d0106fd4 {"pid": "6527", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011417162"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1043147907501079210004"} 1 +2024-09-11 09:07:00.1132 2024-09-11 09:07:00.113205 b82ad9fd-c2f4-49c4-b508-90c7a7117203 {"pid": "6528", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011417535"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:00.164564 2024-09-11 09:07:00.164566 4a0ad2d6-59e8-416f-8347-ee195fa52dbe {"pid": "6529", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011464222"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:00.222859 2024-09-11 09:07:00.222863 2bb6bbb7-f23f-42b4-b4ed-92ba67e7ac58 {"pid": "6530", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011466531"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:00.287265 2024-09-11 09:07:00.287269 03461ea2-f37f-4984-8c1e-73f59ed36c40 {"pid": "6531", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011466589"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:56.992526 2024-09-11 09:07:00.348079 62f69966-d870-4d24-a213-e4681ecb004a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/122616243"}, "pid": "1882", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011493066"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/060167181"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10022846"} 3 +2024-09-11 09:07:00.408953 2024-09-11 09:07:00.408957 2bfae786-9c2a-4a8f-8eea-381deb8270f6 {"pid": "6532", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011558774"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:00.460331 2024-09-11 09:07:00.460333 515b6216-e8a6-4e41-81db-3b58658ed941 {"pid": "6533", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011591041"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:00.516037 2024-09-11 09:07:00.516041 1b1137b0-9716-467c-aa57-91d82c401554 {"pid": "6534", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011627404"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:11.633831 2024-09-11 09:07:00.65098 eda11e89-f39d-4c2e-9bcb-3202789b1686 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/129520896"}, "pid": "2142", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011686664"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251629783"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10926931"} 3 +2024-09-11 09:07:00.709995 2024-09-11 09:07:00.709999 c3506169-aae6-49ac-a21a-acb2a03f5bfd {"pid": "6536", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011733730"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:00.825883 2024-09-11 09:07:00.825887 73d6130d-382d-4ba3-9f71-2e9ad20952fe {"pid": "6537", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011743931"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:00.878545 2024-09-11 09:07:00.878548 44b21106-9c7e-461d-9a85-7552e4cec981 {"pid": "6538", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011755738"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:00.993194 2024-09-11 09:07:00.993196 b97c69c5-242f-4e4c-b7fc-042d14c985cc {"pid": "6539", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011818787"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:01.048371 2024-09-11 09:07:01.048375 26b100fd-bbf7-414c-b642-a48db3878a3a {"pid": "6540", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011831186"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:01.100238 2024-09-11 09:07:01.10024 de6db941-7afc-4969-a26d-1950e0f49919 {"pid": "6541", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011875062"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:01.15249 2024-09-11 09:07:01.152494 1a06646e-f1e0-4271-a2d1-b944a2c58500 {"pid": "6542", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011896248"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:01.216088 2024-09-11 09:07:01.216094 4227ebb0-89aa-4a34-97d8-bc774adf2f95 {"pid": "6543", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011919031"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:01.273233 2024-09-11 09:07:01.273235 99ae21c6-5403-4163-ac62-439e370be654 {"pid": "6544", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011935041"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:01.32576 2024-09-11 09:07:01.325765 73eea6b1-49a6-4b36-b529-8f5248ef8e3d {"pid": "6545", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011951291"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:01.375159 2024-09-11 09:07:01.375163 894cbc3d-8ace-496d-a2f8-a4b4476ccb1a {"pid": "6546", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011958684"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:01.427348 2024-09-11 09:07:01.427352 3a944391-b234-4b71-881a-1372230bf76d {"pid": "6547", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011959589"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:01.486602 2024-09-11 09:07:01.486606 6f4619c1-0655-4018-a05e-72f3ae9bcd25 {"pid": "6548", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011961159"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:01.539816 2024-09-11 09:07:01.539819 13c6128a-e1bc-47ee-9b48-9e330ef7281a {"pid": "6549", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011964957"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:01.594262 2024-09-11 09:07:01.594267 92d96301-025c-4e4f-b8f5-39419111b395 {"pid": "6550", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011971216"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:32.187434 2024-09-11 09:07:01.651808 9ec74139-5ab6-46c3-972b-3e6ae775abd4 {"pid": "5212", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011981174"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/220457220"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "109617438"} 2 +2024-09-11 09:07:01.771786 2024-09-11 09:07:01.771789 f2667002-d4f6-453e-96fa-4fb8d34161cd {"pid": "6551", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A011992966"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:01.821924 2024-09-11 09:07:01.821927 76932096-52cb-4c2d-b5f2-1c3acb3a2987 {"pid": "6552", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012003599"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:01.883382 2024-09-11 09:07:01.883387 501f6daa-9a76-4bf8-b0e7-b9e599a7630b {"pid": "6553", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012045391"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:56.191777 2024-09-11 09:07:01.950768 37012285-b7bf-49c2-89d7-b04d4beb3746 {"pid": "5613", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012045625"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/244049882"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111570411"} 2 +2024-09-11 09:07:02.007571 2024-09-11 09:07:02.007573 608712d1-1b4f-4d21-b54c-de4f36dbf8e6 {"pid": "6554", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012053752"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:02.06367 2024-09-11 09:07:02.063673 95d48b0a-368e-400c-a1c0-64c8642c4b5a {"pid": "6555", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012086274"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102176224"} 1 +2024-09-11 09:07:02.118049 2024-09-11 09:07:02.118054 eed8e668-7bc9-4fc2-8b58-c0364e161bd8 {"pid": "6556", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012098479"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:02.237343 2024-09-11 09:07:02.237349 65aa1eea-16ed-4778-b334-6b64ef901233 {"pid": "6557", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012128366"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:02.294907 2024-09-11 09:07:02.294911 dbad0d79-2d33-4284-b282-298376b57041 {"pid": "6558", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012136328"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:02.346985 2024-09-11 09:07:02.346989 ad2b7dc4-1d54-421a-af3e-9fe1543075d3 {"pid": "6559", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012311534"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:02.402077 2024-09-11 09:07:02.402081 922f229d-1a0e-4761-a3b6-25efe938d83d {"pid": "6560", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012313581"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:06.14432 2024-09-11 09:07:02.466976 11a91c7a-9914-4691-9c5d-e715953aadb6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/125668465"}, "pid": "2041", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012313815"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10814610"} 2 +2024-09-11 09:07:02.530317 2024-09-11 09:07:02.530319 e199a8d6-5ba2-46a9-8701-b5e4c0b31a60 {"pid": "6561", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012315468"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:02.583128 2024-09-11 09:07:02.583133 2c4bd98d-8555-4be8-bbeb-03ddc4bda3da {"pid": "6562", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012322962"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:02.636634 2024-09-11 09:07:02.636639 d89ea861-ddb6-40c5-9209-95dc15e54797 {"pid": "6563", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012323710"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:02.689207 2024-09-11 09:07:02.689209 4debd9d2-8c44-4f9c-a802-ab55054a9898 {"pid": "6564", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012325371"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:02.815842 2024-09-11 09:07:02.815846 28e3a9af-3ee9-456a-a16a-1f7bac8c7385 {"pid": "6565", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012332893"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:02.869877 2024-09-11 09:07:02.869884 a797d4a0-e3b8-4221-a016-39c10427c686 {"pid": "6566", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012335428"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:02.931222 2024-09-11 09:07:02.931225 e97dd833-4d3a-41e6-8f0e-4ffa9820d60c {"pid": "6567", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012338211"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105001321"} 1 +2024-09-11 09:07:02.984789 2024-09-11 09:07:02.984794 160c6b9f-fa80-4939-a481-48bed93a67fc {"pid": "6568", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012343378"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:03.051529 2024-09-11 09:07:03.051534 c665ad0b-1994-4094-9d0f-d3f5ecc75991 {"pid": "6569", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012346177"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1020159234092003370594"} 1 +2024-09-11 09:07:03.112017 2024-09-11 09:07:03.11202 55638925-262e-4149-93ad-512b5f75f47c {"pid": "6570", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012346982"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1005159234775303372730"} 1 +2024-09-11 09:07:03.16793 2024-09-11 09:07:03.167936 3b0a658f-c670-41e7-a0df-79120473c1f7 {"pid": "6571", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012349826"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:03.220245 2024-09-11 09:07:03.220247 66000fce-2b46-4a7a-9098-8ad333fa7fad {"pid": "6572", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012350932"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:03.27196 2024-09-11 09:07:03.271967 9c29254f-bbd8-4a98-a825-27ecf0010e39 {"pid": "6573", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012352585"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:03.332192 2024-09-11 09:07:03.332195 c84dc655-8662-4f40-8782-4d0a5be88a5b {"pid": "6574", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012353728"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1015159234253603371194"} 1 +2024-09-11 09:07:03.384405 2024-09-11 09:07:03.38441 735fcc1a-a4e8-4043-8abb-657092e018d8 {"pid": "6575", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012366684"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:03.442606 2024-09-11 09:07:03.44261 897fb0da-2fe1-4b6f-84b3-a78dc52e8685 {"pid": "6576", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012368293"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1002159233919103370026"} 1 +2024-09-11 09:07:03.506176 2024-09-11 09:07:03.506179 115fb525-094f-4f63-b658-02422c313142 {"pid": "6577", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012368815"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1003159234265203371222"} 1 +2024-09-11 09:07:03.556624 2024-09-11 09:07:03.556629 14a25e3a-9814-4b4f-8a17-e4011ab1a00e {"pid": "6578", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012371308"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:03.610346 2024-09-11 09:07:03.61035 0fb55a3d-d5c9-4fa6-a30e-fac5e37a6e65 {"pid": "6579", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012374691"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:03.664815 2024-09-11 09:07:03.664818 cb28ad43-11b3-4501-86c6-fb623dba058e {"pid": "6580", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012374741"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:03.720198 2024-09-11 09:07:03.720202 ebe224ee-6d8b-47ab-9bc6-948a3af71024 {"pid": "6581", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012377358"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:03.770459 2024-09-11 09:07:03.770464 4768f8db-4d2e-4a27-b697-086cd57183fa {"pid": "6582", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012377584"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:03.825082 2024-09-11 09:07:03.825086 cc609b4a-efc3-4ecb-9596-ce487ffc70af {"pid": "6583", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012378544"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1009159234410703371526"} 1 +2024-09-11 09:07:03.879922 2024-09-11 09:07:03.879927 05a078f4-4c50-4492-95f8-6c9ee5b9e379 {"pid": "6584", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012385634"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:03.940208 2024-09-11 09:07:03.940211 fe9f4322-0186-4965-a38d-e013bd892d6f {"pid": "6585", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012387266"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1004159234088503370639"} 1 +2024-09-11 09:07:03.996418 2024-09-11 09:07:03.996422 0adbaf0e-0104-4089-81b9-54f0e8c00ea4 {"pid": "6586", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012387358"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:04.050994 2024-09-11 09:07:04.050998 ccd66324-363c-45b0-9983-45333e578caf {"pid": "6587", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012387899"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:04.11256 2024-09-11 09:07:04.112565 74d6021e-1e05-4756-979e-85d329b71e28 {"pid": "6588", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012388774"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "112330830"} 1 +2024-09-11 09:07:04.170036 2024-09-11 09:07:04.170041 03426bb5-5dcb-45c2-a4c0-f4209817a6f4 {"pid": "6589", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012388884"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:04.221144 2024-09-11 09:07:04.221148 f1c91ffc-4152-49e8-a304-4cc0c5997903 {"pid": "6590", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012390212"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:04.278576 2024-09-11 09:07:04.27858 3788c384-aa45-4bd6-8431-701d48a9d64d {"pid": "6591", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012391465"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1098159234092303370590"} 1 +2024-09-11 09:07:04.354817 2024-09-11 09:07:04.354822 3337b8fe-361f-4266-aafb-92e08defa51a {"pid": "6592", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012393385"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1105159234724703372421"} 1 +2024-09-11 09:07:04.412969 2024-09-11 09:07:04.412973 44074efe-151e-47c0-9676-e426bcb36ce0 {"pid": "6593", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012394672"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1081159234461303371823"} 1 +2024-09-11 09:07:04.474832 2024-09-11 09:07:04.474838 f2792e16-b4be-4e99-9458-227cd0b93ed4 {"pid": "6594", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012396940"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1030159234410803371521"} 1 +2024-09-11 09:07:04.530057 2024-09-11 09:07:04.530059 6dc2bd79-1096-4f01-8625-84b813219d7e {"pid": "6595", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012397510"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:04.587275 2024-09-11 09:07:04.587279 4cf84457-457f-4b22-9389-7b4e3f6a5587 {"pid": "6596", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012402163"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:04.7059 2024-09-11 09:07:04.705903 40b0aa0d-d302-4a3d-a00f-e590afc144b0 {"pid": "6597", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012406670"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:04.763573 2024-09-11 09:07:04.763576 b6550df1-d5c2-45a5-a903-318ea29a1ddc {"pid": "6598", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012408608"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1050159234870503372976"} 1 +2024-09-11 09:07:04.822277 2024-09-11 09:07:04.822281 3482c7f3-56a8-4908-902e-3f820247ff13 {"pid": "6599", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012409616"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1008159234265103371174"} 1 +2024-09-11 09:07:04.876472 2024-09-11 09:07:04.876475 cab9bb7f-1b8d-419d-9a7a-891639ba0688 {"pid": "6600", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012409972"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:04.930421 2024-09-11 09:07:04.930423 8601f84c-e8d2-4418-8350-6f7c2e9d9add {"pid": "6601", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012416360"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:04.989406 2024-09-11 09:07:04.98941 f494fb49-4273-4280-913a-1aabf12135e5 {"pid": "6602", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012416378"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1131159234768203372708"} 1 +2024-09-11 09:07:05.049405 2024-09-11 09:07:05.049408 9fb9e48d-da4a-420c-8310-cae1bd9971d3 {"pid": "6603", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012416611"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:05.108819 2024-09-11 09:07:05.108823 67358025-1a95-415c-8c85-52503caeee22 {"pid": "6604", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012417107"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:05.164809 2024-09-11 09:07:05.164812 f27abdf3-b9a2-4dbb-be08-8168e17e49fd {"pid": "6605", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012417957"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:05.21888 2024-09-11 09:07:05.218882 46e29f50-4064-487d-b32f-a3976d1c114d {"pid": "6606", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012418542"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:05.27399 2024-09-11 09:07:05.273993 41ae03c1-f5c6-4db2-9664-a038648f3894 {"pid": "6607", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012419821"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:05.332513 2024-09-11 09:07:05.332516 3af4aa64-274f-4f4a-893f-1483f0a21ea9 {"pid": "6608", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012419929"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:05.404143 2024-09-11 09:07:05.404149 4f701ba6-9a06-4a69-837f-a5a0f633ab4f {"pid": "6609", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012425753"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:05.473046 2024-09-11 09:07:05.47305 5ef4e24d-902a-4055-b7a5-19e7070003e1 {"pid": "6610", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012427298"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1077159234465003371834"} 1 +2024-09-11 09:07:05.531777 2024-09-11 09:07:05.53178 6b5483ba-267a-4c4a-adfe-7d44dc3835d6 {"pid": "6611", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012430693"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1058159234571703372062"} 1 +2024-09-11 09:07:05.592897 2024-09-11 09:07:05.592902 2ee36f27-63e5-4dbf-b940-8cc0cf535d21 {"pid": "6612", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012431216"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:05.671275 2024-09-11 09:07:05.67128 ba8f57ba-afad-41d2-907e-67235e3f0a01 {"pid": "6613", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012431876"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1076159234092503370604"} 1 +2024-09-11 09:07:05.734541 2024-09-11 09:07:05.734543 6f64a5af-484b-4eb4-a80a-428d61b56ac3 {"pid": "6614", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012432065"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:05.796405 2024-09-11 09:07:05.79641 f4553d39-f0cf-4c84-b566-8b369facda83 {"pid": "6615", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012435871"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:05.855978 2024-09-11 09:07:05.855983 45b9018c-7e1e-4c55-8d07-726c7caf4ca1 {"pid": "6616", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012437354"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:05.923844 2024-09-11 09:07:05.923846 cc1a529b-ed3b-4433-9114-a05492627894 {"pid": "6617", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012440656"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1073159234571803372068"} 1 +2024-09-11 09:07:05.988369 2024-09-11 09:07:05.988374 a9717e97-912b-4d17-99d6-308ce3876534 {"pid": "6618", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012442567"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:06.063302 2024-09-11 09:07:06.063307 d88f009a-a1d9-4783-a61b-143f699a2b27 {"pid": "6619", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012442717"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1060159233927703370267"} 1 +2024-09-11 09:07:06.13126 2024-09-11 09:07:06.131265 ff5a6e03-2d7b-4097-9539-91968e2e9707 {"pid": "6620", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012443563"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1023159234404603371469"} 1 +2024-09-11 09:07:06.196003 2024-09-11 09:07:06.196007 9dea8560-90a0-4321-bed5-3a5fdaf013d4 {"pid": "6621", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012448425"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1100159234253403371188"} 1 +2024-09-11 09:07:06.251767 2024-09-11 09:07:06.25177 c14a28b8-ebcf-43f9-aadf-eeda3fca463a {"pid": "6622", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012454917"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:06.322384 2024-09-11 09:07:06.322389 012e8b02-57d5-43e5-8098-ac0d3fc97672 {"pid": "6623", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012457267"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1097159234411103371528"} 1 +2024-09-11 09:07:06.394587 2024-09-11 09:07:06.394592 1b54c4da-2728-447c-897c-a7a6e8be4c5a {"pid": "6624", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012457605"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1129159234572203372085"} 1 +2024-09-11 09:07:06.463959 2024-09-11 09:07:06.463963 05254338-204b-49fe-8bed-efe23fe62633 {"pid": "6625", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012460208"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:06.530176 2024-09-11 09:07:06.53018 8cd85dac-a866-4c21-9de3-731d2aa1dc33 {"pid": "6626", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012462643"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1023159234871303372962"} 1 +2024-09-11 09:07:06.595872 2024-09-11 09:07:06.595877 c8edfc58-4d84-4709-ac80-8f37c73ac4a9 {"pid": "6627", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012465613"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1059159234449303371767"} 1 +2024-09-11 09:07:06.653873 2024-09-11 09:07:06.653877 d3bd88f3-d982-4574-b1a4-c6faba4b1554 {"pid": "6628", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012468081"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:06.71627 2024-09-11 09:07:06.716276 f1be1214-8d34-4cee-b28e-57bf73469cbe {"pid": "6629", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012468192"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:06.776409 2024-09-11 09:07:06.776413 8cb54346-56eb-4a0c-90f4-4ab5c9a18282 {"pid": "6630", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012470496"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:06.844183 2024-09-11 09:07:06.844187 2b5cd187-3dd3-482c-8da5-f9cc03bcf91d {"pid": "6631", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012470564"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1091159234695303372372"} 1 +2024-09-11 09:07:06.915181 2024-09-11 09:07:06.915186 2cdc90f3-7189-4818-8119-42d4cd202618 {"pid": "6632", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012470848"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:06.986928 2024-09-11 09:07:06.986933 6156a781-3147-4dd3-8ec0-13c88c8693a8 {"pid": "6633", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012473809"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1126159234591003372120"} 1 +2024-09-11 09:07:07.051211 2024-09-11 09:07:07.051217 bb995a75-0c55-4073-91f5-b403903a7ee3 {"pid": "6634", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012474515"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:07.105324 2024-09-11 09:07:07.105326 0bb9c058-c1fb-4eef-a94a-df50c3bfa4e7 {"pid": "6635", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012479271"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:07.159578 2024-09-11 09:07:07.159583 7985e9a7-93a5-4e8d-b14d-2df92381c0b0 {"pid": "6636", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012480008"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:07.210944 2024-09-11 09:07:07.210946 ba664e73-289b-4ff1-8d14-916b68b0e182 {"pid": "6637", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012480139"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:07.269815 2024-09-11 09:07:07.269821 916bbee0-afda-42c1-a061-4a659810e0a4 {"pid": "6638", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012484207"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1117159234093903370560"} 1 +2024-09-11 09:07:07.323451 2024-09-11 09:07:07.323454 1d5fb826-a92e-4273-9434-da84a4546989 {"pid": "6639", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012487640"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:07.375151 2024-09-11 09:07:07.375156 3dfe64b4-515a-46ac-aa5f-a8af0fd74fb9 {"pid": "6640", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012487887"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:07.425851 2024-09-11 09:07:07.425855 a74725b2-680e-446f-b2e4-54b5eeb06ac0 {"pid": "6641", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012488018"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:07.48002 2024-09-11 09:07:07.480025 0c25c87b-d79e-4e1b-bb4f-27255e1a8dc5 {"pid": "6642", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012489633"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:07.535762 2024-09-11 09:07:07.535769 14871253-afc9-46fb-ad77-6a5ad9d2886d {"pid": "6643", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012490094"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:07.587475 2024-09-11 09:07:07.587478 595a2cea-c7df-4310-ba7b-1579bb921149 {"pid": "6644", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012493490"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:07.646412 2024-09-11 09:07:07.646414 b9a2b10a-5530-4247-8064-7e56f4b88b0a {"pid": "6645", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012494600"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1013159234257403371147"} 1 +2024-09-11 09:07:07.702549 2024-09-11 09:07:07.702554 d9e165fb-de1a-4970-ab45-49c55d46a50a {"pid": "6646", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012495733"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:07.760304 2024-09-11 09:07:07.760308 4adbc165-5b9b-48e1-8f36-fb7a70471ff3 {"pid": "6647", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012497106"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:07.815899 2024-09-11 09:07:07.815903 906cbdc8-0d3c-496c-a491-bf4e8597ced7 {"pid": "6648", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012497126"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:07.87258 2024-09-11 09:07:07.872584 ad14fc3a-0737-4a58-88fc-0e5b2045766a {"pid": "6649", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012497225"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:07.940181 2024-09-11 09:07:07.940184 fabe38d5-f052-4fe2-acab-80becfda357b {"pid": "6650", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012498346"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1039159234276003371254"} 1 +2024-09-11 09:07:07.998885 2024-09-11 09:07:07.998889 f9a0bdec-242b-403f-958a-d3a2423fa151 {"pid": "6651", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012506176"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1118159234449503371761"} 1 +2024-09-11 09:07:08.056579 2024-09-11 09:07:08.056583 d1b81f49-bb09-4a09-96cd-4f8c590de2ca {"pid": "6652", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012506256"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1097159234430403371753"} 1 +2024-09-11 09:07:08.108133 2024-09-11 09:07:08.108138 d4cb1f09-0894-481f-99da-840d167abce6 {"pid": "6653", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012506339"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:08.163978 2024-09-11 09:07:08.163982 37c133f7-604a-48dc-85a3-94726d7904c8 {"pid": "6654", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012506877"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1067159233906603370042"} 1 +2024-09-11 09:07:08.219049 2024-09-11 09:07:08.219053 adffad84-2df1-4fb7-8fe5-02c2ae79707d {"pid": "6655", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012507478"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:08.271477 2024-09-11 09:07:08.271482 6fce49e5-ab53-4f99-8ed3-a00edaa2006b {"pid": "6656", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012508085"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:08.323744 2024-09-11 09:07:08.323746 0414997a-d2a2-49dd-927e-05f952484d75 {"pid": "6657", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012508468"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:08.376633 2024-09-11 09:07:08.376637 658798ad-655a-4a74-a141-f317bd90f754 {"pid": "6658", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012508709"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:08.460744 2024-09-11 09:07:08.460748 252872cd-3c69-4a29-83b2-bd5f810dff16 {"pid": "6659", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012509199"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1099159234600903372147"} 1 +2024-09-11 09:07:08.520106 2024-09-11 09:07:08.52011 4a0bc538-453b-4618-a028-e617b3da7cd5 {"pid": "6660", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012512864"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:08.579947 2024-09-11 09:07:08.579951 c11c917b-c3f5-428e-b320-db90043e0773 {"pid": "6661", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012513294"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1071159234394703371454"} 1 +2024-09-11 09:07:08.633514 2024-09-11 09:07:08.633517 c7cac4d4-0318-429a-9929-e1ab1607ae2f {"pid": "6662", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012517704"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:08.687353 2024-09-11 09:07:08.687357 1b88ce58-7bfd-46d7-b802-b56290a9dfd7 {"pid": "6663", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012518029"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:08.740012 2024-09-11 09:07:08.740016 461a1dcb-21b5-400e-a6e8-5aac181ab622 {"pid": "6664", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012519806"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:08.796551 2024-09-11 09:07:08.796555 57e6c0d9-f460-40a9-ade9-3ca2fcdc7ab5 {"pid": "6665", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012523458"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:08.856359 2024-09-11 09:07:08.856362 2dabe236-1722-466e-ad03-ef6fecf6cda4 {"pid": "6666", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012525949"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1048159234276003371256"} 1 +2024-09-11 09:07:08.90775 2024-09-11 09:07:08.907755 8dc99b30-5b0e-43c6-a4cd-7b7bc8166f4f {"pid": "6667", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012525951"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:08.964735 2024-09-11 09:07:08.964739 068d467b-428f-4ba8-8632-8110315f45f9 {"pid": "6668", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012527268"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:09.031165 2024-09-11 09:07:09.031169 1e5c9573-cef0-4117-b2fa-471395740d23 {"pid": "6669", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012527993"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1015159234413803371561"} 1 +2024-09-11 09:07:09.087107 2024-09-11 09:07:09.087111 fa63b8d1-5b49-460c-81e3-451d82e09b0a {"pid": "6670", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012528466"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:09.142364 2024-09-11 09:07:09.142368 5acbf758-4f63-47f9-b9a9-0d7f2ded16cb {"pid": "6671", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012529768"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:09.197843 2024-09-11 09:07:09.197846 ec00b49b-fcfd-4c66-9edf-90191f15697f {"pid": "6672", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012533386"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:09.248766 2024-09-11 09:07:09.24877 3455409d-f0ca-4b9f-be85-2baa89377d3c {"pid": "6673", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012534909"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:09.304262 2024-09-11 09:07:09.304266 78fc329c-ced3-45c2-b0c1-33471d07b65f {"pid": "6674", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012534932"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:09.360788 2024-09-11 09:07:09.360792 44fcda2e-5394-4c1b-bc6c-8a903b189c82 {"pid": "6675", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012571346"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:09.412222 2024-09-11 09:07:09.412226 9501e49c-053c-4123-87ab-15e91163df63 {"pid": "6676", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012572265"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:09.522186 2024-09-11 09:07:09.52219 6358c6d0-0b4b-4531-91ad-44ebb44e46cb {"pid": "6677", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012597330"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:09.581472 2024-09-11 09:07:09.581476 2c23717b-7d65-41b0-97f0-89789703fade {"pid": "6678", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012598301"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:09.64598 2024-09-11 09:07:09.645985 93a4993e-c843-4dd9-a215-5b17b094aa16 {"pid": "6679", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012623821"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:09.705108 2024-09-11 09:07:09.70511 ee77190b-2aaf-4f68-92f5-ee65bd1d6126 {"pid": "6680", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012636366"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:09.761631 2024-09-11 09:07:09.761636 0245fa31-7c5b-4f5b-af25-d70ddbe94203 {"pid": "6681", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012674280"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:09.814355 2024-09-11 09:07:09.81436 f9bc8761-6109-45eb-9b28-323e141b3e28 {"pid": "6682", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012692359"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:09.866024 2024-09-11 09:07:09.866043 37dba392-3af4-4d2c-80cf-81478923b85f {"pid": "6683", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012707155"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:09.921579 2024-09-11 09:07:09.921583 5d271f41-ac66-414b-8293-03f989d6fe09 {"pid": "6684", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012707480"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:09.978293 2024-09-11 09:07:09.978297 7d65fa4f-596d-49f0-a253-909821336942 {"pid": "6685", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012722635"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:10.109503 2024-09-11 09:07:10.109509 de55ff23-7bac-48e5-a3f4-c53e6dca3dfc {"pid": "6686", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012744465"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:10.166847 2024-09-11 09:07:10.166851 e795a7a9-4468-4619-8cc8-c0b28ed8a9b6 {"pid": "6687", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012765564"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:10.266444 2024-09-11 09:07:10.266447 44719355-67bf-44ed-b8ce-15b0f502ecf9 {"pid": "6688", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012771324"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1130159234704603372350"} 1 +2024-09-11 09:07:10.322344 2024-09-11 09:07:10.322348 18e3e5b4-4761-4850-80a6-03b57d0c589a {"pid": "6689", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012774842"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:10.373009 2024-09-11 09:07:10.373012 866ddbf2-775d-4adb-a1e6-b6b5f1b705b2 {"pid": "6690", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012780830"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:10.423074 2024-09-11 09:07:10.423077 ac346332-d430-4609-b40a-5b8c6d7bf73b {"pid": "6691", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012781952"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:10.476073 2024-09-11 09:07:10.476075 2d481741-e468-40d6-9d84-26c8204114b1 {"pid": "6692", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012784906"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:10.529514 2024-09-11 09:07:10.529517 6aa394a1-0109-48cc-b453-b853e8dd7e60 {"pid": "6693", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012785250"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:10.584824 2024-09-11 09:07:10.584828 2dbece47-420c-4073-b741-e56df39170f0 {"pid": "6694", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012791691"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:10.637872 2024-09-11 09:07:10.637874 caf605e6-41e0-4c06-aaa6-10a0ac059563 {"pid": "6695", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012808722"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:10.689179 2024-09-11 09:07:10.689182 534bf6aa-0b5f-43ca-b8e3-2f3fe079f66f {"pid": "6696", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012816863"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:10.744415 2024-09-11 09:07:10.74442 1f73271a-69e3-47a3-9a08-43ac4e97fa52 {"pid": "6697", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012833174"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:10.802186 2024-09-11 09:07:10.802194 50a20a0b-a42c-4566-99bc-795cee3f3a11 {"pid": "6698", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012856933"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1076159234203603370951"} 1 +2024-09-11 09:07:10.861855 2024-09-11 09:07:10.861859 f19606bd-cd81-41e9-a651-0b9688e886dc {"pid": "6699", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012895540"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:10.922127 2024-09-11 09:07:10.92213 d4f45661-89eb-4e1b-bce7-570daa74a672 {"pid": "6700", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012907177"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:10.977002 2024-09-11 09:07:10.977005 b83a9c33-c6be-43e8-8c14-ee596c2e3f79 {"pid": "6701", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012928427"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:11.032025 2024-09-11 09:07:11.032029 a916a20a-299d-478a-ac5c-e176babba9d0 {"pid": "6702", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012937900"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:11.090103 2024-09-11 09:07:11.090107 8067620c-3986-4e1e-8bc5-4a53897c9979 {"pid": "6703", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012950169"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:11.144987 2024-09-11 09:07:11.144992 36eed4fa-5e6b-4f52-8d34-5733d8552ce0 {"pid": "6704", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012957396"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:11.195261 2024-09-11 09:07:11.195265 d379a08a-0882-4b15-b26d-efe2f784e7f2 {"pid": "6705", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012963166"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:11.248867 2024-09-11 09:07:11.248872 28908098-bd03-455c-b780-f6b7e367aee1 {"pid": "6706", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A012966636"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:11.306051 2024-09-11 09:07:11.306054 09d5e4f3-1cf6-41aa-99a0-9ae306948566 {"pid": "6707", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013062530"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:11.357841 2024-09-11 09:07:11.357846 28c27437-a64c-4152-8460-e9dc31f4a393 {"pid": "6708", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013071942"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:11.411122 2024-09-11 09:07:11.411125 beec26a0-2b3e-4cf8-8144-32f1f2596204 {"pid": "6709", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013084243"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:11.463123 2024-09-11 09:07:11.463126 70d26b87-df49-4ea6-94eb-41984b2db69d {"pid": "6710", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013088320"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:11.524235 2024-09-11 09:07:11.524239 b424f246-d25f-4a93-a2e9-1446d0e7a95f {"pid": "6711", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013094655"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1021159234571303372037"} 1 +2024-09-11 09:07:11.580183 2024-09-11 09:07:11.580188 e3d758f5-861a-4190-8a20-282575d5a73a {"pid": "6712", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013096212"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:11.638209 2024-09-11 09:07:11.638214 9476559b-4e14-4009-b08a-c29b331a5952 {"pid": "6713", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013128887"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:11.751552 2024-09-11 09:07:11.751557 fbc919f3-c0e2-4eaf-8514-929db34dc733 {"pid": "6714", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013137641"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:11.805168 2024-09-11 09:07:11.805171 11feaa1e-8cb0-47f6-bbcd-8f322c65bfc4 {"pid": "6715", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013151927"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:11.858767 2024-09-11 09:07:11.858772 31e65403-c3db-49ae-b616-d9e336349508 {"pid": "6716", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013160840"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:11.914074 2024-09-11 09:07:11.914077 c147cf97-561c-4e03-8e78-5d5b659192ea {"pid": "6717", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013187480"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:11.972164 2024-09-11 09:07:11.972169 1974bbbb-a400-4964-bae7-56d25eafd9f0 {"pid": "6718", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013188863"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:12.036954 2024-09-11 09:07:12.036963 04391e8c-8d69-4921-b9ea-da748a08b31e {"pid": "6719", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013193457"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1046161211839440070009"} 1 +2024-09-11 09:07:12.085982 2024-09-11 09:07:12.085986 5c940db8-c25e-43a7-a998-515fb9b97dfe {"pid": "6720", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013199001"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:12.146568 2024-09-11 09:07:12.146571 9718a416-329d-4cc1-a605-cdf1b911f174 {"pid": "6721", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013216832"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:12.222664 2024-09-11 09:07:12.222667 892a51ff-6110-418c-845d-589cc0ef2a20 {"pid": "6722", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013218412"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:12.276614 2024-09-11 09:07:12.276617 537d559c-aea1-400c-b09b-d2ee65c0b3a0 {"pid": "6723", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013222117"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:12.330189 2024-09-11 09:07:12.330191 5cba924f-d67f-47ca-aa44-bec7be7ad54d {"pid": "6724", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013234989"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:12.380065 2024-09-11 09:07:12.380069 2ade0919-510e-416a-af94-0f740bea925a {"pid": "6725", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013238298"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:12.435312 2024-09-11 09:07:12.435315 6ed1962a-1e17-49a9-8e85-963bf6dbbb9a {"pid": "6726", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013254669"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:12.491219 2024-09-11 09:07:12.491223 e0fff7fd-67aa-4aa2-b5e2-74b516dbcb2d {"pid": "6727", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013254904"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:12.54504 2024-09-11 09:07:12.545044 cc49b973-948c-44a2-bb81-799c6710ba51 {"pid": "6728", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013264678"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:12.661683 2024-09-11 09:07:12.661687 caaf1d94-8e1f-451a-a106-9a24f5156104 {"pid": "6729", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013288987"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:12.714751 2024-09-11 09:07:12.714756 941eaf1d-3f91-4d80-8056-b69a72060228 {"pid": "6730", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013298285"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:12.766745 2024-09-11 09:07:12.766748 99edfbe6-3ba3-4e91-bacb-f676146e6f66 {"pid": "6731", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013325785"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:12.818722 2024-09-11 09:07:12.818725 0c539af8-15f7-4909-b63f-87558f24baf5 {"pid": "6732", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013328589"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:12.873235 2024-09-11 09:07:12.873238 f36ed867-dd03-4090-b97d-95eac98382f9 {"pid": "6733", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013346407"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10369275"} 1 +2024-09-11 09:07:12.927448 2024-09-11 09:07:12.927452 7220264a-3d46-4754-818a-0c9dc806d5a6 {"pid": "6734", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013388531"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:12.98445 2024-09-11 09:07:12.984453 bcf2864a-6268-494c-b4d8-7f6d720b47dd {"pid": "6735", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013395525"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1046159234860003372931"} 1 +2024-09-11 09:07:13.037059 2024-09-11 09:07:13.037063 2eabd449-c113-41b7-ba2d-e80b38ea308e {"pid": "6736", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013406985"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:13.093656 2024-09-11 09:07:13.09366 b4dfa966-5aa4-4d2e-ba0d-0e0e89c604a4 {"pid": "6737", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013436592"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "113155698"} 1 +2024-09-11 09:07:13.147844 2024-09-11 09:07:13.147848 5ba4fd74-eede-479a-8458-7b4412ef2d11 {"pid": "6738", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013461986"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:13.200375 2024-09-11 09:07:13.200378 1afe884e-dec3-47a9-9002-781405d7e0b4 {"pid": "6739", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013469717"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:13.251521 2024-09-11 09:07:13.251523 3dc2a6a2-c48f-422f-b2ea-b21948f6d767 {"pid": "6740", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013472806"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:13.303782 2024-09-11 09:07:13.303785 0d3398c3-a243-4272-8e2a-602d6435c38a {"pid": "6741", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013486130"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:13.355592 2024-09-11 09:07:13.355595 5a54cd9a-9624-4f40-87df-d2a07d0603e9 {"pid": "6742", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013491491"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:13.407428 2024-09-11 09:07:13.407431 638ed420-2ce7-4b70-aa9f-c8653ca68d15 {"pid": "6743", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013496961"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:13.462269 2024-09-11 09:07:13.462274 78c68f9b-68a9-4b7f-a5d9-eab71cd09366 {"pid": "6744", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013498494"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:13.527715 2024-09-11 09:07:13.527719 9e82d224-9172-4a8c-8845-971a833dbdb0 {"pid": "6745", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013503465"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:13.589103 2024-09-11 09:07:13.589106 a57d4d9e-8b12-4015-b9b6-e6836b13ba73 {"pid": "6746", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013503508"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:13.641945 2024-09-11 09:07:13.64195 83573569-37ce-45cb-b656-e7f087d2afee {"pid": "6747", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013505068"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:13.756863 2024-09-11 09:07:13.756866 8a096e42-56bb-4a5a-bfe7-39e7700a245b {"pid": "6748", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013505439"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:13.810351 2024-09-11 09:07:13.810353 69f97390-0028-403b-881b-ea0e090e1ed4 {"pid": "6749", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013506588"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:13.866166 2024-09-11 09:07:13.866169 74f95c3e-72c4-417c-95b2-313143340845 {"pid": "6750", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013518111"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:13.918437 2024-09-11 09:07:13.91844 db7606c1-495e-4c67-b180-8690aa6f96a2 {"pid": "6751", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013519314"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:13.972821 2024-09-11 09:07:13.972825 df8ae8a7-b3de-4b94-9e64-4037efaabe75 {"pid": "6752", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013521342"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:14.029275 2024-09-11 09:07:14.029278 40abb1c2-d462-4983-a957-8e012e9c2870 {"pid": "6753", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013544891"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:14.082195 2024-09-11 09:07:14.082198 517e7b37-7dd4-4bc5-899a-1f7b921a83e3 {"pid": "6754", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013552965"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:14.137182 2024-09-11 09:07:14.137187 225f0c51-fdf7-4030-afe6-b280b35c2a6c {"pid": "6755", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013553997"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:14.194647 2024-09-11 09:07:14.194652 4cae03d2-bb54-4816-9240-2426665349dd {"pid": "6756", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013583535"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1117159233933703370232"} 1 +2024-09-11 09:07:14.254574 2024-09-11 09:07:14.254577 85dffd08-5d13-494f-8a10-377086ace427 {"pid": "6757", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013585039"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:14.313768 2024-09-11 09:07:14.313771 0f8a9dbd-6176-4217-98fc-cbb4d1b0baca {"pid": "6758", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013595086"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:14.371639 2024-09-11 09:07:14.371643 ea341880-422c-49d3-b59f-736e3ed474a2 {"pid": "6759", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013595372"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:14.42542 2024-09-11 09:07:14.425424 3eaafb3b-9b22-49a8-88a0-4e0f7c7d1762 {"pid": "6760", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013621306"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:14.487334 2024-09-11 09:07:14.487338 050b381f-777a-43a4-bce9-ca8ab56c19f4 {"pid": "6761", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013627680"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1123159233933803370236"} 1 +2024-09-11 09:07:14.544229 2024-09-11 09:07:14.544234 5e8fa81e-1b28-4a50-beae-9835141e0627 {"pid": "6762", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013629529"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:14.611068 2024-09-11 09:07:14.611072 ac6a9dff-37f5-49cc-887b-60e507323556 {"pid": "6763", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013654911"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:14.744906 2024-09-11 09:07:14.744911 6a9f880e-2b5f-40f5-9e98-a1acf6ae6edd {"pid": "6764", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013663807"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:14.804508 2024-09-11 09:07:14.804511 b8f65b7f-5c24-49af-a738-323c024174ca {"pid": "6765", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013675118"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:14.855775 2024-09-11 09:07:14.855777 55a8b9b4-f38c-4c8b-8707-c962f4696ca5 {"pid": "6766", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013683105"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:14.916381 2024-09-11 09:07:14.916386 b3d93e15-4114-4eb0-9d1a-23b6e848762f {"pid": "6767", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013688478"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1115159234203903370958"} 1 +2024-09-11 09:07:14.981461 2024-09-11 09:07:14.981465 9467f5e8-8b38-49b2-b07e-6a7aff8284f3 {"pid": "6768", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013706277"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1109159234438003371731"} 1 +2024-09-11 09:07:15.036238 2024-09-11 09:07:15.036241 32f7f828-8ac5-44b2-83ad-b5e0df523516 {"pid": "6769", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013720765"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:15.153041 2024-09-11 09:07:15.153045 a17d771a-1f7c-4cc0-8f9e-12719d5eb510 {"pid": "6770", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013763647"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:15.207028 2024-09-11 09:07:15.207032 536ede99-5359-4a9d-9570-9c2e679aa8ea {"pid": "6771", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013784156"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:15.263897 2024-09-11 09:07:15.263899 1a0047ab-4d69-4f62-8150-1acfa5082550 {"pid": "6772", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013786026"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1126159234757603372632"} 1 +2024-09-11 09:07:15.32325 2024-09-11 09:07:15.323252 09c6e45e-0f79-4b17-8405-ea5a92305951 {"pid": "6773", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013793627"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:15.44134 2024-09-11 09:07:15.441343 eb255817-b9e3-483a-970f-17dc2f885fa8 {"pid": "6774", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013815334"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:15.493891 2024-09-11 09:07:15.493895 8c2cc96f-58eb-4ab4-b9ed-eab112fb408a {"pid": "6775", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013839708"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:15.553116 2024-09-11 09:07:15.55312 3db532e0-857d-4eee-874c-9cb10ee8cc77 {"pid": "6776", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013851171"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:15.616156 2024-09-11 09:07:15.616161 665a2402-9712-449b-af25-9453b7cf2488 {"pid": "6777", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013863028"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:15.678768 2024-09-11 09:07:15.678771 0510ea6d-43fa-4c16-bc7e-7e2b1c8efcab {"pid": "6778", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013902798"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:15.745043 2024-09-11 09:07:15.745046 73df25b1-aa00-4653-8197-d831a1005e97 {"pid": "6779", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013936998"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:15.804486 2024-09-11 09:07:15.804491 72a108b6-f75f-43b9-b256-a555e34bf50c {"pid": "6780", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013939562"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:15.867456 2024-09-11 09:07:15.867461 b5b3f626-db28-4b97-b51c-a183ffede234 {"pid": "6781", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013941086"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:15.934732 2024-09-11 09:07:15.93474 5c167608-bf3a-43d6-8e42-b038a99e5075 {"pid": "6782", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013948865"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:16.01455 2024-09-11 09:07:16.014555 94438d9f-dcdb-49a0-b387-8a094550e067 {"pid": "6783", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013952563"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:16.165074 2024-09-11 09:07:16.165079 af67eea6-762a-4051-87e3-62a9e2ac6603 {"pid": "6784", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013986424"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:16.303012 2024-09-11 09:07:16.303019 2b58f96f-fa6e-4361-a156-0e3ce251aaca {"pid": "6785", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A013995035"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:16.356846 2024-09-11 09:07:16.35685 b4472e16-fce1-43bb-ac95-007fcfcbcb83 {"pid": "6786", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014012002"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:16.413281 2024-09-11 09:07:16.413285 b7108b49-03b7-4b2e-a634-0303eb83eda7 {"pid": "6787", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014025587"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1085159234751003372629"} 1 +2024-09-11 09:02:21.561659 2024-09-11 09:07:16.473158 e4935bc5-f361-4e79-b1bc-a159ed4cdefe {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139286160"}, "pid": "2299", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014026079"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/113738048"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100571742"} 3 +2024-09-11 09:07:16.538561 2024-09-11 09:07:16.538567 03837461-304f-4d28-bede-6952f9f6ca4a {"pid": "6788", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014036096"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:16.601868 2024-09-11 09:07:16.601872 9ef7b27d-fe68-4f88-b8c7-a691830e1bf3 {"pid": "6789", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014037717"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:16.661546 2024-09-11 09:07:16.661549 eba86edc-2d6b-4c18-996e-ef7662736234 {"pid": "6790", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014059339"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:54.539415 2024-09-11 09:07:16.723857 bafddb83-f248-4e40-b4a9-f8d5422c57ba {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1051412552"}, "pid": "832", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014065225"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/152270345"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107313367"} 3 +2024-09-11 09:07:16.788373 2024-09-11 09:07:16.788375 cb66692c-7814-4bfc-bc0c-2239e0968743 {"pid": "6791", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014070967"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:16.843648 2024-09-11 09:07:16.843652 31ebead2-c890-4795-b37a-7a93ac0b197c {"pid": "6792", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014074228"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:16.957694 2024-09-11 09:07:16.957697 5b56ec25-3e24-4e90-b9a1-6ac4351e67d6 {"pid": "6793", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014087918"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:16.640575 2024-09-11 09:07:17.018715 3af604d0-2a15-4b8e-b01d-d084c05339d9 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/133767183"}, "pid": "2224", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014091750"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/02982480X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111847199"} 3 +2024-09-11 09:07:17.08072 2024-09-11 09:07:17.080725 3ee70af4-822a-4663-8902-ebf7138e5afd {"pid": "6794", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014094375"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:17.141664 2024-09-11 09:07:17.141667 802f3717-3842-456d-a2f0-c86bc27323f9 {"pid": "6795", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014111148"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:17.19426 2024-09-11 09:07:17.194264 fa8253fb-66a5-40eb-bde0-602b687b422f {"pid": "6796", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014127767"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:17.249454 2024-09-11 09:07:17.249456 b7369bf6-4acd-4db8-9e00-0dc18ea5ad73 {"pid": "6797", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014139981"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:17.304742 2024-09-11 09:07:17.304747 53600fdf-f171-42fb-b31c-33882141f1bc {"pid": "6798", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014145274"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:17.359011 2024-09-11 09:07:17.359015 59ece816-b32d-4300-9944-049fc7aff4d0 {"pid": "6799", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014193528"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:17.419227 2024-09-11 09:07:17.419231 0e5259ca-7396-4309-8512-b639620fe9cd {"pid": "6800", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014201130"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:17.489955 2024-09-11 09:07:17.48996 f4ac5b61-b0c8-45b5-85ee-4ec84bd3b488 {"pid": "6801", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014202551"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:17.550935 2024-09-11 09:07:17.55094 42d72078-5fe6-49f2-9707-e7e858830f6d {"pid": "6802", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014219231"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:17.608618 2024-09-11 09:07:17.608622 71e84dd9-6531-4396-9604-d974d499c66d {"pid": "6803", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014222396"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:17.66264 2024-09-11 09:07:17.662642 b9ace9f8-2b45-4c71-965a-8339adee6759 {"pid": "6804", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014224284"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:17.724382 2024-09-11 09:07:17.724386 3c4123cb-4195-4d64-9bee-3b15bf2991e1 {"pid": "6805", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014242112"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1102155042854472402536"} 1 +2024-09-11 09:07:17.781384 2024-09-11 09:07:17.781387 df7ebbbb-ba07-40a1-9e67-f7c28f1331b3 {"pid": "6806", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014246692"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:17.846947 2024-09-11 09:07:17.846951 59e7a979-9e74-4b28-bbcc-5ae5fc86159c {"pid": "6807", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014251795"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:17.914328 2024-09-11 09:07:17.914333 54d02fc1-8bbb-4c2e-8ccb-c1e7fdd03564 {"pid": "6808", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014255110"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:33.844933 2024-09-11 09:07:17.975484 28717bb2-8873-494a-9eb1-5eccd9c9875b {"pid": "5240", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014258973"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/223847585"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "110151836552820401758"} 2 +2024-09-11 09:07:18.037413 2024-09-11 09:07:18.037418 94c8f594-6ed7-4c84-a0f4-fd9dee5b92f1 {"pid": "6809", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014273717"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1113159234865003372924"} 1 +2024-09-11 09:07:18.092543 2024-09-11 09:07:18.092548 e4de29f7-6d97-44af-aab6-9389f3ac67d9 {"pid": "6810", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014276779"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:18.150715 2024-09-11 09:07:18.15072 fca7773c-fc85-4b25-b976-41ffc58107e3 {"pid": "6811", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014313002"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1125159234410403371540"} 1 +2024-09-11 09:07:18.203539 2024-09-11 09:07:18.203543 dc0475da-6a8e-430c-8332-1feb22edd691 {"pid": "6812", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014336689"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:18.25907 2024-09-11 09:07:18.259074 9f275e7b-b18b-4bff-9f2a-aaa9e1881a57 {"pid": "6813", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014337377"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:18.314518 2024-09-11 09:07:18.314522 60f0be6a-f9dc-4994-abd4-625611f07149 {"pid": "6814", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014352979"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:18.365764 2024-09-11 09:07:18.365767 943afd0e-01d0-4210-a81b-7a636a595310 {"pid": "6815", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A014357923"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:18.420194 2024-09-11 09:07:18.420198 1431e3de-4144-4db2-aa89-d47eb2a6384e {"pid": "6816", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016238365"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:18.4819 2024-09-11 09:07:18.481904 a846eb39-be79-4b89-86fc-d495b9b59efd {"pid": "6817", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016298786"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:18.5476 2024-09-11 09:07:18.547604 45aefc68-da76-4232-a878-f61ba86c421d {"pid": "6818", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016303136"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1125159233922903370057"} 1 +2024-09-11 09:07:18.613924 2024-09-11 09:07:18.613927 668dab6a-3e28-4824-a99a-e5dbee3cf243 {"pid": "6819", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016318307"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:18.669255 2024-09-11 09:07:18.669259 c0f2d47a-1fe0-4898-b9dc-2444d57a43d5 {"pid": "6820", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016389042"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:18.724682 2024-09-11 09:07:18.724686 f1fb5e30-d3f2-484e-89ac-5994a46c4551 {"pid": "6821", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016404123"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:18.782018 2024-09-11 09:07:18.782022 d2c9376b-dd6b-44ed-8dac-a52b34bfb8c4 {"pid": "6822", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016411096"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:13.024083 2024-09-11 09:07:18.839143 ae44fd80-0f78-4e37-bfa5-143fd1234214 {"pid": "4888", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016415566"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/181448793"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1101160667719403560003"} 2 +2024-09-11 09:07:18.895986 2024-09-11 09:07:18.89599 241294a7-d414-4f1a-81fd-027ddd80e1df {"pid": "6823", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016426300"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:18.948779 2024-09-11 09:07:18.948783 6beb55ec-dad3-412d-86ed-a4c9c5d7df3f {"pid": "6824", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016444932"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:19.002626 2024-09-11 09:07:19.00263 90457315-2ba8-4334-a7d6-fd58dba25aa3 {"pid": "6825", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016459229"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:19.056744 2024-09-11 09:07:19.056749 d798848f-3716-493d-ac33-9c1fd8428007 {"pid": "6826", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016459550"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:19.111277 2024-09-11 09:07:19.11128 3df4c719-4fdc-4466-a301-26d6d206c60c {"pid": "6827", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016477477"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:19.163588 2024-09-11 09:07:19.163592 8d320a22-7e61-4f43-888a-05cfbfefe3ec {"pid": "6828", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016482621"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:19.223286 2024-09-11 09:07:19.22329 d9245abf-ec65-4000-97da-23fc19645e25 {"pid": "6829", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016484771"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1025159234579803372003"} 1 +2024-09-11 09:07:19.275012 2024-09-11 09:07:19.275016 5bd3ba7a-8e6c-4769-9227-ec50e34958f0 {"pid": "6830", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016506102"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:19.327194 2024-09-11 09:07:19.327198 585d6bd1-a0b0-4b4e-a3dc-2ff8709e5983 {"pid": "6831", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016511435"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:46.552591 2024-09-11 09:07:19.384757 bb58d962-c063-40ae-9d04-044ad593a533 {"pid": "4510", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016513981"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/137790872"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101493531"} 2 +2024-09-11 09:07:19.446604 2024-09-11 09:07:19.446609 e4e9f3f3-ad82-4f1e-9d6a-0c94f5b951b4 {"pid": "6832", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016514568"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:19.504012 2024-09-11 09:07:19.504016 fa38e050-6e47-4c19-81f6-1bf4d1476896 {"pid": "6833", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016521212"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:19.557626 2024-09-11 09:07:19.557631 a039ed7b-944b-4569-9000-af05b24df223 {"pid": "6834", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016528677"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:19.611819 2024-09-11 09:07:19.611823 ae8e0c64-316c-4ef8-9ff5-14fb325b4214 {"pid": "6835", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016535988"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:19.673 2024-09-11 09:07:19.673005 36cbd8fd-7276-4009-881d-cc6ba6910b78 {"pid": "6836", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016548812"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:19.732248 2024-09-11 09:07:19.732251 dedba895-0fc1-48f8-a440-f05b21d415b5 {"pid": "6837", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016550065"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:19.802694 2024-09-11 09:07:19.802701 eef216b4-b609-44bb-8c05-e12564737450 {"pid": "6838", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016568873"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:19.888076 2024-09-11 09:07:19.88808 f9b73415-044e-4b96-afde-2a489c8640bc {"pid": "6839", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016604176"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:19.939288 2024-09-11 09:07:19.939292 5190c4b1-8913-4d4f-8c57-66466d75122c {"pid": "6840", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016614032"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:19.994086 2024-09-11 09:07:19.994091 99d3f80d-472c-4ba3-a071-3de29f49e11c {"pid": "6841", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016637978"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:20.048303 2024-09-11 09:07:20.048308 5c82ebdc-5b3c-4002-8f19-0c744d16b930 {"pid": "6842", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016638657"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:20.109424 2024-09-11 09:07:20.109429 9801d085-a1c8-4286-9b8f-cf8d9bc13736 {"pid": "6843", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016638677"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:20.166395 2024-09-11 09:07:20.166401 d6d70a05-b939-4afb-8104-8d9ada0bc091 {"pid": "6844", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016651275"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:20.226699 2024-09-11 09:07:20.226703 12674a67-deef-49f8-9a51-0fc5d62989af {"pid": "6845", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016655749"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:20.29059 2024-09-11 09:07:20.290593 140171ee-6dd4-42dc-8756-f8a157634b3e {"pid": "6846", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016666286"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:20.348303 2024-09-11 09:07:20.348308 2221c58d-9315-43e6-a246-441e5b55ab29 {"pid": "6847", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016675995"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:42.178986 2024-09-11 09:07:20.413608 5168cf1f-46dc-4e10-8fd4-b2bba4ee51c4 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1178017486"}, "pid": "1630", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016678629"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/136495117"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106841896"} 3 +2024-09-11 09:07:20.478555 2024-09-11 09:07:20.478561 48df2dd6-3897-4694-96a7-23e6d253d2bc {"pid": "6848", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016688565"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:20.54029 2024-09-11 09:07:20.540293 000d5d78-2f33-4251-ad5a-72058600c51d {"pid": "6849", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016697578"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:20.600328 2024-09-11 09:07:20.600333 ee2700c2-115d-40fb-b620-86e731ccbc0a {"pid": "6850", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016697664"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:20.658827 2024-09-11 09:07:20.658831 e9c983f7-a3cb-486f-972b-31642f9d9cd5 {"pid": "6851", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016744040"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:20.712154 2024-09-11 09:07:20.712158 8d4b86e0-c495-440d-8869-1dce6dc2fad2 {"pid": "6852", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016755736"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:20.773503 2024-09-11 09:07:20.773507 2d8d881c-3595-4cf1-ab8b-d4693a7c009d {"pid": "6853", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016768352"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1017159234435903371706"} 1 +2024-09-11 09:07:20.82989 2024-09-11 09:07:20.829893 e3fb1dfe-cbb7-4592-ab78-c358fb21678a {"pid": "6854", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016787995"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:20.89217 2024-09-11 09:07:20.892175 4a6794c2-38b7-43fd-8563-369d543c5502 {"pid": "6855", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016799486"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:20.953976 2024-09-11 09:07:20.95398 7f32dd4a-ef8a-4b82-9632-e199192c68e8 {"pid": "6856", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016809743"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:21.011281 2024-09-11 09:07:21.011286 66b9116c-ca52-4c71-905b-658eb1101f81 {"pid": "6857", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016813599"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:21.070539 2024-09-11 09:07:21.070544 cb11be01-b647-4b6e-bd9d-b760118db5c4 {"pid": "6858", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016814681"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:52.06083 2024-09-11 09:07:21.150368 85fcc973-d0b1-4bb3-a60e-9672a76eef12 {"pid": "4585", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016816789"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/147233429"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101006072"} 2 +2024-09-11 09:07:21.208079 2024-09-11 09:07:21.208082 2dfa5b57-6ec7-49e7-acb4-17e3c7161ec0 {"pid": "6859", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016818796"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:21.265116 2024-09-11 09:07:21.26512 4beed189-b168-4a51-b03f-bea69d9926ac {"pid": "6860", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016841342"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:49.106291 2024-09-11 09:07:21.330457 67a0a556-2b2a-4007-9d40-2e2eb2406557 {"pid": "4548", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016871460"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/142877832"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106933713"} 2 +2024-09-11 09:07:21.386012 2024-09-11 09:07:21.386014 76b0cf98-c0e0-46c7-b683-497db56f215f {"pid": "6861", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016877431"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:21.437587 2024-09-11 09:07:21.437594 534dd101-b6ac-43bc-acf6-2042177a03d1 {"pid": "6862", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016969116"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:21.491226 2024-09-11 09:07:21.491231 762eb86b-8d57-4074-ab6c-cfcbfb733bb3 {"pid": "6863", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A016972683"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:21.543529 2024-09-11 09:07:21.543533 41b8e162-e07d-4674-a543-a22771eab9b6 {"pid": "6864", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017020235"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:21.600523 2024-09-11 09:07:21.600528 ded7c2a1-7c04-4c81-9367-2e4d574e8e8c {"pid": "6865", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017025989"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:21.651721 2024-09-11 09:07:21.651723 4b6e5eb6-9472-4c68-8a84-8c7be5607860 {"pid": "6866", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017057870"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:21.711556 2024-09-11 09:07:21.71156 603dcada-45aa-4aef-9608-38f35732b7f9 {"pid": "6867", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017097186"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1108159234362103371418"} 1 +2024-09-11 09:07:21.766547 2024-09-11 09:07:21.766551 d83bb354-af06-4fae-b36e-3d6fca060aae {"pid": "6868", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017122036"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:21.820994 2024-09-11 09:07:21.820996 0c3f6ec9-6e5b-42d2-95a6-3d60cd38c119 {"pid": "6869", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017130152"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:21.873915 2024-09-11 09:07:21.873919 136a2298-5389-428c-9120-6b9958aa4976 {"pid": "6870", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017132207"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:21.925837 2024-09-11 09:07:21.92584 129c967b-9f6e-4530-9def-4ae96e134cb1 {"pid": "6871", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017139224"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:21.983681 2024-09-11 09:07:21.983686 34c22dcf-feb3-41df-b3a3-a6bfec875470 {"pid": "6872", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017158101"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1083159234728603372465"} 1 +2024-09-11 09:07:22.04318 2024-09-11 09:07:22.043185 b7713068-194c-4dac-9abb-952bfd47e97e {"pid": "6873", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017173033"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1016159234081103370679"} 1 +2024-09-11 09:07:22.105788 2024-09-11 09:07:22.105794 9e35155c-0130-43d1-9649-16e502cf5e8e {"pid": "6874", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017178153"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:22.163307 2024-09-11 09:07:22.163309 b9f082be-1eed-4fb4-a72d-9cedcf61b87e {"pid": "6875", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017187491"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1053159234104103370803"} 1 +2024-09-11 09:07:22.214314 2024-09-11 09:07:22.214318 b47e5a42-806b-4bf8-b1bc-75b683b08813 {"pid": "6876", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017202523"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:22.268986 2024-09-11 09:07:22.26899 9fdb73bc-4341-4ff9-b2ad-172f89881470 {"pid": "6877", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017237082"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:22.321925 2024-09-11 09:07:22.32193 93825227-b2f4-48ec-b71e-30064883c180 {"pid": "6878", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017314321"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:22.48515 2024-09-11 09:07:22.485155 d0cf3a76-400e-403b-b312-34cc25e98b2c {"pid": "6879", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017377907"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:22.62076 2024-09-11 09:07:22.620764 0469b94f-5a70-4977-9d54-6f866b3d1511 {"pid": "6880", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017410230"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:22.674924 2024-09-11 09:07:22.674928 fdf91553-a16a-4932-9436-05ac1fc0517b {"pid": "6881", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017429783"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:20.620939 2024-09-11 09:07:22.731148 9115b2cc-4034-46c2-ae19-142bf5504297 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1131175786"}, "pid": "1272", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017435658"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/198217447"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1095151535358702890000"} 3 +2024-09-11 09:07:22.790048 2024-09-11 09:07:22.790052 315ddfd3-3d24-4b75-bf76-b94fcdca5ebd {"pid": "6882", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017451803"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:22.844089 2024-09-11 09:07:22.844093 ca247b3d-7ee8-47da-985a-e476a99f4533 {"pid": "6883", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017458456"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:22.967991 2024-09-11 09:07:22.967993 56067def-0ea9-472d-b8d0-fda70d560a30 {"pid": "6884", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017513975"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1086159233939403370201"} 1 +2024-09-11 09:07:23.023102 2024-09-11 09:07:23.023107 5f5eff04-a956-4f6e-b3c7-0d9f32bf93ef {"pid": "6885", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017556608"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1094159234104303370804"} 1 +2024-09-11 09:02:24.486303 2024-09-11 09:07:23.087853 e20082ca-6663-4c21-9b3a-5feda554cf24 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139769366"}, "pid": "2342", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017565309"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102618287"} 2 +2024-09-11 09:07:23.149441 2024-09-11 09:07:23.149445 38a7f62e-54a1-4d8a-a1bc-145d7ac847e4 {"pid": "6886", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017572454"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:23.206424 2024-09-11 09:07:23.206428 2b8213f9-fe69-47fe-a8e9-e96152ee6afd {"pid": "6887", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017578807"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:23.260014 2024-09-11 09:07:23.260018 9bfb03b3-5055-4270-a62c-a2991fc6dce4 {"pid": "6888", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017581317"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:23.318152 2024-09-11 09:07:23.318156 f6f77d2d-79d0-4251-88f0-dd0c913a5e28 {"pid": "6889", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017594651"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1108159234639103372306"} 1 +2024-09-11 09:07:23.367655 2024-09-11 09:07:23.367657 caf78109-cd25-4774-92d6-43097bd21ebf {"pid": "6890", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017596294"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:23.417961 2024-09-11 09:07:23.417965 58653b6e-e3ca-46ca-be30-f874b6b7a057 {"pid": "6891", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017602316"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:23.470525 2024-09-11 09:07:23.470531 2adb1fcc-9e55-4589-ad69-19561fa32620 {"pid": "6892", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017611108"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:23.524051 2024-09-11 09:07:23.524054 736a8211-8525-49af-aff3-a8d8b0e5cb76 {"pid": "6893", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017635757"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:23.607698 2024-09-11 09:07:23.607702 a7caff77-9c69-4600-a737-eca465f1c1d3 {"pid": "6894", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017650142"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:23.669218 2024-09-11 09:07:23.669223 8b5de8ea-4a55-4694-aa7a-0e1c1b5b2a14 {"pid": "6895", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017676479"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:23.72506 2024-09-11 09:07:23.725064 83e59cd2-0434-4a30-b0d0-ae477c5f85be {"pid": "6896", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017678297"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:15.985075 2024-09-11 09:07:23.785287 1a780c06-5870-4fee-af9f-f7e8db198b7b {"pid": "4937", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017696857"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/18786893X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107632895"} 2 +2024-09-11 09:07:23.842656 2024-09-11 09:07:23.84266 3a2b1db5-1c1d-4275-b8b4-002e2c67e0ab {"pid": "6897", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017737385"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:23.897733 2024-09-11 09:07:23.897736 2506b3d1-d7ec-4682-87ea-ce167b533ce0 {"pid": "6898", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017743945"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:23.949977 2024-09-11 09:07:23.949983 ba8c93cf-6cd0-4a79-b089-cf8218abab63 {"pid": "6899", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017761491"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:24.004389 2024-09-11 09:07:24.004393 12b704e6-2ffb-4059-9eb3-23c44ea92090 {"pid": "6900", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017762299"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:24.067598 2024-09-11 09:07:24.067603 9707d586-aa8a-4aa2-a92e-6dbcd8866d5e {"pid": "6901", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017784112"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106787644"} 1 +2024-09-11 09:07:24.123185 2024-09-11 09:07:24.123188 2d986d72-bb48-44db-a2cb-c51e1bc7f34d {"pid": "6902", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017798464"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:24.17521 2024-09-11 09:07:24.175215 43c60582-db0c-4651-bea5-ab3e00b665e2 {"pid": "6903", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017940250"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:06:09.40934 2024-09-11 09:07:24.237749 d5839d23-4198-4336-b2b6-9cb54136086d {"pid": "5825", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017944030"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/257647805"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1044155042867772402868"} 2 +2024-09-11 09:07:24.292822 2024-09-11 09:07:24.292825 89878ac9-01a5-4686-9e37-decc970306b6 {"pid": "6904", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017944947"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:24.344239 2024-09-11 09:07:24.344242 abd8d814-54da-4133-88e3-b1cda2375d13 {"pid": "6905", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017955463"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:24.398073 2024-09-11 09:07:24.398076 57d55e84-7cab-443a-9ae3-b32f35102bcb {"pid": "6906", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017961866"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:24.450984 2024-09-11 09:07:24.450988 adfeb06c-2086-4a5c-8c5c-44cdfd501d98 {"pid": "6907", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017970655"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:24.505633 2024-09-11 09:07:24.505635 575bf70f-465a-46b6-8efc-544bd4a6fd0d {"pid": "6908", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017977912"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:24.566112 2024-09-11 09:07:24.566116 c7173955-8dd9-4b5f-b35f-fe77ec8bcdb2 {"pid": "6909", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017990946"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:24.624478 2024-09-11 09:07:24.624482 e93c06bf-7a47-4b29-92c9-6290da0681ff {"pid": "6910", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017997426"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:24.677811 2024-09-11 09:07:24.677814 707e0c47-4890-4e3e-9831-3b7a20a27b48 {"pid": "6911", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A017998485"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:24.731031 2024-09-11 09:07:24.731034 dccc8a10-49db-471c-8911-d464aec83844 {"pid": "6912", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018022500"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:24.784283 2024-09-11 09:07:24.784287 7596444a-3d71-4235-bbb0-07455ce4f4aa {"pid": "6913", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018042156"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:24.843697 2024-09-11 09:07:24.843701 6e9df6ea-e257-4624-bdd0-c2682a92e1af {"pid": "6914", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018051739"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1066159234416103371581"} 1 +2024-09-11 09:07:24.921515 2024-09-11 09:07:24.921518 2a19acba-6957-41ad-8170-423088c2a008 {"pid": "6915", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018052277"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:24.986893 2024-09-11 09:07:24.986898 306d114d-d3f3-44b1-afbf-ff695e65745f {"pid": "6916", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018063051"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:45.324828 2024-09-11 09:07:25.04935 5dce79a6-8d7e-4139-8af2-5c96b879f0f3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/119007460"}, "pid": "1685", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018070048"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/181483513"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "111889670"} 3 +2024-09-11 09:07:25.113886 2024-09-11 09:07:25.113888 b9af09cf-018f-4b26-8cbb-0e1e9bd65c24 {"pid": "6917", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018080715"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:23.428205 2024-09-11 09:07:25.171762 e7894af6-d27d-4f12-8f75-bb7a1ce06d63 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/139622675"}, "pid": "2324", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018087920"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101342853"} 2 +2024-09-11 09:07:25.233739 2024-09-11 09:07:25.233741 6ffb85d1-f375-4d39-96dd-679b2fe4c240 {"pid": "6918", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018093417"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1041159234784403372779"} 1 +2024-09-11 09:07:25.290866 2024-09-11 09:07:25.290871 d573c660-6f04-499e-bbb0-99d01c99f106 {"pid": "6919", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018105228"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:25.344464 2024-09-11 09:07:25.344468 c9fbc88e-1d45-4845-a549-65133c945db4 {"pid": "6920", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018108985"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:25.397694 2024-09-11 09:07:25.397699 9a7b429e-055d-46ef-844b-f91ea03ff8a2 {"pid": "6921", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018112339"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:25.455782 2024-09-11 09:07:25.455786 aa04aae4-bb5a-47ff-a54c-b0361522a252 {"pid": "6922", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018117701"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:25.521513 2024-09-11 09:07:25.521517 b5e8e23c-0c7e-4c86-958e-23e9483226fb {"pid": "6923", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018138835"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:25.573103 2024-09-11 09:07:25.573106 8416647a-de00-4c82-9b46-299f2e9a170b {"pid": "6924", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018140650"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:25.625417 2024-09-11 09:07:25.625422 d3c40f15-a67d-4f17-b4cf-d0557abdaef0 {"pid": "6925", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018155271"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:25.678906 2024-09-11 09:07:25.67891 7acc1dfa-a031-4a4f-9049-a8d60ca9a062 {"pid": "6926", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018157124"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:25.737883 2024-09-11 09:07:25.737888 83f78983-3c90-4956-9b58-9b5e7bcf5fea {"pid": "6927", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018172231"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:25.795016 2024-09-11 09:07:25.79502 4bb56bb9-f7e0-44e0-ac35-80d33235b5bb {"pid": "6928", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018201635"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:25.84854 2024-09-11 09:07:25.848543 20628e66-acfe-4430-acdb-8d281a109dac {"pid": "6929", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018206914"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:25.901012 2024-09-11 09:07:25.901017 41b1e0c5-37d0-4e54-aacd-42bf0d928155 {"pid": "6930", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018237999"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:25.953492 2024-09-11 09:07:25.953495 c56ce0e0-a97a-45a7-89ed-43d41baa516a {"pid": "6931", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018243805"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:26.006146 2024-09-11 09:07:26.00615 efba35dd-e528-473d-a4d0-3f615c2056bc {"pid": "6932", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018251580"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:26.062286 2024-09-11 09:07:26.062289 547cd1aa-7e76-4d30-9793-1325d27fd23a {"pid": "6933", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018310828"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:26.151132 2024-09-11 09:07:26.151136 1c7e41fa-7283-4bea-8e51-a2acd08402d8 {"pid": "6934", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018321048"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:26.209926 2024-09-11 09:07:26.20993 05d36ae6-4f3b-426c-a89b-aee04517be94 {"pid": "6935", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018322337"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:26.267033 2024-09-11 09:07:26.267036 4c10182f-282c-4585-aedd-690516323fdc {"pid": "6936", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018324391"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:26.32591 2024-09-11 09:07:26.325914 2c624de7-054c-4da1-b477-f1712fde0b22 {"pid": "6937", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018331793"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1021159234720103372491"} 1 +2024-09-11 09:07:26.377138 2024-09-11 09:07:26.377142 8b98d921-d8bb-4421-b426-3ea00a71cc35 {"pid": "6938", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018332342"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:26.505497 2024-09-11 09:07:26.505501 bd4326f1-f73c-48f9-aaa8-324248b4d1ac {"pid": "6939", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018346336"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1080159234215103370981"} 1 +2024-09-11 09:07:26.570095 2024-09-11 09:07:26.570102 2b9ff0d3-73f8-45e4-addf-8f4f08149d02 {"pid": "6940", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018351276"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1065159234269103371270"} 1 +2024-09-11 09:07:26.62279 2024-09-11 09:07:26.622793 f11cd9f2-8479-4038-bc3d-db553713533c {"pid": "6941", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018387362"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:26.676452 2024-09-11 09:07:26.676456 41823960-b910-4ada-8876-b8259631067a {"pid": "6942", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018391771"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:26.733857 2024-09-11 09:07:26.733859 8c342ccf-820c-485d-986a-78f1be546e31 {"pid": "6943", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018394246"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:26.790274 2024-09-11 09:07:26.790278 2eefc976-c4c7-4d90-813b-bf65252283f5 {"pid": "6944", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018395567"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1007159234641603372283"} 1 +2024-09-11 09:07:26.843425 2024-09-11 09:07:26.843428 ff58015c-a8e9-40a1-a8b0-7a075b1644fb {"pid": "6945", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018410690"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:26.894752 2024-09-11 09:07:26.894756 7a0fb2cc-c933-4b88-8e06-615a92bed2b5 {"pid": "6946", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018418232"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:26.9528 2024-09-11 09:07:26.952804 620f434d-9469-4fa3-84d3-3d22fa76cfc1 {"pid": "6947", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018432097"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1036159234085103370680"} 1 +2024-09-11 09:07:27.005744 2024-09-11 09:07:27.005747 c706a046-416a-4de5-abc8-3df6ba1773d5 {"pid": "6948", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018440172"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:27.12945 2024-09-11 09:07:27.129454 8e4d1022-96cd-4546-aa8d-df1b7547d925 {"pid": "6949", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018459512"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1003159234248603370992"} 1 +2024-09-11 09:07:27.181179 2024-09-11 09:07:27.181183 da45f848-d266-4da7-b865-469d20f3d08d {"pid": "6950", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018463176"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:52.696653 2024-09-11 09:07:27.308662 81bcaca7-dfcb-449a-87f8-e51c11e991d3 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/103624163"}, "pid": "800", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018477130"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/070328005"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10084875"} 3 +2024-09-11 09:07:27.383156 2024-09-11 09:07:27.38316 f12f99e4-b9cc-461c-8209-d6a3b33736ad {"pid": "6951", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018486553"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:27.434532 2024-09-11 09:07:27.434538 84882c14-0bdd-41a4-9332-fd96fbcbf142 {"pid": "6952", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018541924"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:27.493816 2024-09-11 09:07:27.493822 8b75c1c6-30b6-4e21-8159-183875ace547 {"pid": "6953", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018548221"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10945147"} 1 +2024-09-11 09:07:27.553093 2024-09-11 09:07:27.553097 134f4ac5-edaf-4abc-9c54-5bfed58da817 {"pid": "6954", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018556919"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1022159234641703372289"} 1 +2024-09-11 09:07:27.607067 2024-09-11 09:07:27.607069 68b80905-cacc-4846-9133-f9bd33de0305 {"pid": "6955", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018562369"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:27.663146 2024-09-11 09:07:27.663149 1c8c2f1b-a5c2-4ae0-bdaf-5992c82675cb {"pid": "6956", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018581906"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:27.716324 2024-09-11 09:07:27.716329 91d40b25-cb19-4d61-b7d6-c2baccec9517 {"pid": "6957", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018584020"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:27.770184 2024-09-11 09:07:27.770189 167c90b1-b929-423b-856a-0b6adb9262d0 {"pid": "6958", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018585140"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:27.841572 2024-09-11 09:07:27.841575 33d67cd9-ee06-4627-b62b-290806a984ad {"pid": "6959", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018591525"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:27.89489 2024-09-11 09:07:27.894894 de897ece-c052-4ce3-a288-bc1f083d8adb {"pid": "6960", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018606059"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:27.95084 2024-09-11 09:07:27.950845 b373a2b9-71f1-44ba-9d7c-d6e6e58f2b39 {"pid": "6961", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018606217"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:04:58.914455 2024-09-11 09:07:28.012106 164b00bc-59c5-42cd-8fc2-33f2a661c9ba {"pid": "4684", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018610634"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/153446544"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106496232"} 2 +2024-09-11 09:04:45.843351 2024-09-11 09:07:28.087868 79452a14-429c-4c78-ada5-1df35fdcab4f {"pid": "4499", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018613224"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/136864473"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102860567"} 2 +2024-09-11 09:07:28.152741 2024-09-11 09:07:28.152745 fe5ede71-94fe-4ec0-8259-98bc39cc7965 {"pid": "6962", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018617749"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1014159234751603372573"} 1 +2024-09-11 09:07:28.2717 2024-09-11 09:07:28.271704 2696c80a-0d8b-4851-85a1-7a274be55e45 {"pid": "6963", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018651679"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1112159234631803372276"} 1 +2024-09-11 09:07:28.32914 2024-09-11 09:07:28.329144 2452b223-a96b-45a1-ba1b-08864019f290 {"pid": "6964", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018655587"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:28.385975 2024-09-11 09:07:28.385981 2608c55d-08b6-49c9-bec0-f000a6662d32 {"pid": "6965", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018689283"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:28.441451 2024-09-11 09:07:28.441455 aed2da58-6ce4-4936-bcb1-3030cb34a512 {"pid": "6966", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018689940"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:28.50011 2024-09-11 09:07:28.500113 3e527d18-c46e-4b0a-ac60-1f91df865847 {"pid": "6967", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018699407"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1061159234563703371985"} 1 +2024-09-11 09:07:28.553012 2024-09-11 09:07:28.553017 a4e27957-74b0-486f-9e4f-605ed1f6c8f6 {"pid": "6968", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018703625"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:28.617494 2024-09-11 09:07:28.617499 71454548-6fe5-4c1c-8629-70cafdc81c3c {"pid": "6969", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018726776"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1039159234641803372282"} 1 +2024-09-11 09:07:28.697988 2024-09-11 09:07:28.697992 2255083f-2486-40d5-a13d-34d4d233d4f7 {"pid": "6970", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018750238"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:28.75318 2024-09-11 09:07:28.753183 21f2197e-d864-423a-af32-e8469b07a90b {"pid": "6971", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018777696"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:28.802947 2024-09-11 09:07:28.802952 b087b2fd-39a3-44b6-8c96-7d7e003c7ddf {"pid": "6972", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018790254"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:28.861668 2024-09-11 09:07:28.861672 b47ea679-9847-42fc-b154-8fbd9d0f4565 {"pid": "6973", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018795339"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "11192674"} 1 +2024-09-11 09:07:28.912175 2024-09-11 09:07:28.912178 9c289ff7-13bc-460f-92ff-64ff27157dbc {"pid": "6974", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018796853"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:28.970152 2024-09-11 09:07:28.970157 87693cd1-13b1-4088-91cb-1b88c15f16a7 {"pid": "6975", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018810961"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:29.03233 2024-09-11 09:07:29.032334 15f8f278-3d18-4e8a-8a40-f689808d41b2 {"pid": "6976", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018836965"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:29.089934 2024-09-11 09:07:29.089938 5c4d85a9-c9c3-420d-b15e-6a3693f21b78 {"pid": "6977", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018838435"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:29.14772 2024-09-11 09:07:29.147724 fa821d1c-7849-4372-a6bf-eb5bfcf7b957 {"pid": "6978", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018857106"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:29.199115 2024-09-11 09:07:29.199117 76be7bc7-7eed-4c6c-aff1-28f46c52d040 {"pid": "6979", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018863994"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:29.253217 2024-09-11 09:07:29.25322 2c44e5ad-d695-4417-920e-7f6e463c8953 {"pid": "6980", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018867909"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:29.304571 2024-09-11 09:07:29.304576 67de7204-96ce-42bf-858c-6c4064b0be5f {"pid": "6981", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018875034"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:29.365515 2024-09-11 09:07:29.365518 c2722001-ebf0-431c-b445-83561f266f4b {"pid": "6982", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018879902"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1058159234742603372586"} 1 +2024-09-11 09:07:29.415579 2024-09-11 09:07:29.415583 690b65c2-941c-451d-a8c4-7cbffb81dd8f {"pid": "6983", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018880000"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:29.471597 2024-09-11 09:07:29.471601 4c4db74e-36e1-45f8-a126-7ae870ea99ae {"pid": "6984", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018906120"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:29.532935 2024-09-11 09:07:29.532939 5a8fc59e-ac30-48be-8020-fa2c14b8dee9 {"pid": "6985", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018910104"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:29.586067 2024-09-11 09:07:29.58607 e18bbb56-d949-4c8a-b6e6-de5868791772 {"pid": "6986", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018913029"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:29.639503 2024-09-11 09:07:29.639509 6b07f136-5590-4f02-b927-82f661851950 {"pid": "6987", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018939247"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:29.692236 2024-09-11 09:07:29.692241 2e2080d1-88dc-4394-8920-18e2d96ae43b {"pid": "6988", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018946790"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:29.745786 2024-09-11 09:07:29.745788 e3b819c3-2b61-4e2d-9eb0-67a447822429 {"pid": "6989", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018953919"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:29.801448 2024-09-11 09:07:29.801452 99bd7c35-4561-4a94-b85f-970fc6056a0f {"pid": "6990", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018954799"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:29.859113 2024-09-11 09:07:29.859117 9aa4aa6e-3330-43ec-b3cc-59540715270c {"pid": "6991", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A018986263"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:29.987386 2024-09-11 09:07:29.987389 81df700e-bd2e-4485-988f-4f48da33240d {"pid": "6992", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A019019750"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:30.043958 2024-09-11 09:07:30.043961 67402b5b-c100-40c8-9a28-6c11106c97b9 {"pid": "6993", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A019033792"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:30.09546 2024-09-11 09:07:30.095467 4e909257-d513-403c-9738-c7a3990e7705 {"pid": "6994", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A019052882"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:30.149627 2024-09-11 09:07:30.149633 0a3d2928-9131-4814-b407-4e4d0828bbb7 {"pid": "6995", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A019060042"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:30.206361 2024-09-11 09:07:30.206365 57b18613-0b29-4b6d-a175-ed50421afc2d {"pid": "6996", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A019072876"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:30.263919 2024-09-11 09:07:30.263923 6d67df0b-59e9-45b5-8fb3-83f5812921b0 {"pid": "6997", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A019100305"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:30.317767 2024-09-11 09:07:30.317772 84b7a630-e875-4329-b126-2be85c21d10d {"pid": "6998", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A019104065"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:30.370753 2024-09-11 09:07:30.370756 7d549f91-0993-4935-ad14-8ead043179ba {"pid": "6999", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A019111556"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:30.428446 2024-09-11 09:07:30.428449 6f9e64f3-bbea-4ca3-bc17-1616e8aef608 {"pid": "7000", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A019131066"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:30.48721 2024-09-11 09:07:30.487214 a309a206-fc72-44e5-a31e-6e18df594e65 {"pid": "7001", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A019135541"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:30.546774 2024-09-11 09:07:30.546777 74b4bd4b-492e-4d58-a90d-84fe4656213d {"pid": "7002", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A019156002"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105443367"} 1 +2024-09-11 09:07:30.598038 2024-09-11 09:07:30.598041 56082a28-353c-4903-8b71-62a1c662b441 {"pid": "7003", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A019212102"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:30.652721 2024-09-11 09:07:30.652725 9a47f208-8bec-476a-ab8d-1bba769a10e7 {"pid": "7004", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A019243832"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:30.706487 2024-09-11 09:07:30.70649 46076903-f740-4749-bdf7-82948b933dff {"pid": "7005", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020002432"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:30.762499 2024-09-11 09:07:30.762504 4e4bdb03-f30a-4031-9d37-9794e04be6b1 {"pid": "7006", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020018697"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:30.821512 2024-09-11 09:07:30.821516 2e4eda15-7038-4e03-821a-26a4d9ebc001 {"pid": "7007", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020026743"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:30.882055 2024-09-11 09:07:30.882059 ff82d6a4-97b6-42c8-8ae3-0841397e1382 {"pid": "7008", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020053143"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1066159234275003371303"} 1 +2024-09-11 09:07:30.934318 2024-09-11 09:07:30.934324 413c24c3-4274-408b-8380-a306174d611b {"pid": "7009", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020057293"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:30.98706 2024-09-11 09:07:30.987064 b404c293-5488-4460-a362-6105b5b4c575 {"pid": "7010", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020059215"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:31.04541 2024-09-11 09:07:31.045414 1233fe92-6a7e-46b5-bd7c-e7268dd33dbe {"pid": "7011", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020064866"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:31.103119 2024-09-11 09:07:31.103122 914d3d91-5612-4486-8add-67b5d800a23b {"pid": "7012", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020072898"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:31.16087 2024-09-11 09:07:31.160873 1b2b4758-ebce-4978-8960-3e306ca92825 {"pid": "7013", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020078206"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:31.221669 2024-09-11 09:07:31.221671 71bba58b-e780-4e30-9d3f-7ba17c985c52 {"pid": "7014", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020092031"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:31.281532 2024-09-11 09:07:31.281535 6c06c31b-6737-4f04-84fc-3854dc56f199 {"pid": "7015", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020092462"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1088159234398603371673"} 1 +2024-09-11 09:07:31.33247 2024-09-11 09:07:31.332479 e6900045-7e42-4904-9e65-0ada5ba6f870 {"pid": "7016", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020092476"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:31.388112 2024-09-11 09:07:31.388116 a8df4481-73cd-47b0-8a0b-48ba794bccb6 {"pid": "7017", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020103298"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1023159234567403371975"} 1 +2024-09-11 09:07:31.442547 2024-09-11 09:07:31.44255 976a78d2-c9cc-43f3-b86c-18028946292a {"pid": "7018", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020121326"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:31.495514 2024-09-11 09:07:31.495517 8ccf824e-fab6-4bda-8d32-f8d43a08fbb6 {"pid": "7019", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020122182"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:31.556002 2024-09-11 09:07:31.556005 b26368ac-a8d0-45ab-acdd-6c6e50680ce6 {"pid": "7020", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020122584"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1020159234553503371963"} 1 +2024-09-11 09:07:31.609452 2024-09-11 09:07:31.609457 d95961db-ec27-4021-9100-e2abd3ca5b00 {"pid": "7021", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020128356"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:31.667423 2024-09-11 09:07:31.667428 9816184b-a5ac-4e4b-b12c-8ed44a7faf0a {"pid": "7022", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020139475"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:31.722242 2024-09-11 09:07:31.722247 8c0f6b22-65e8-4b9b-a860-9fbecb1a1163 {"pid": "7023", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020148399"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:31.774558 2024-09-11 09:07:31.774563 c9943b91-7ff2-432e-b271-fe7828cba62f {"pid": "7024", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020157288"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:31.826261 2024-09-11 09:07:31.826266 053278fc-a766-41ea-b2db-e9a9b7fc494a {"pid": "7025", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020168707"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:31.883347 2024-09-11 09:07:31.883352 ba8c18c1-f78c-4af7-bd8c-7b0d0c4a84fb {"pid": "7026", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020209272"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:31.940995 2024-09-11 09:07:31.940999 aa6c7e12-191f-431f-8c72-870fd83bee4a {"pid": "7027", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020211267"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:49.968571 2024-09-11 09:07:32.004102 d2b8b485-13aa-4fe3-b07c-f0e1464896fb {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1019500344"}, "pid": "753", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020228645"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/155852639"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "106800855"} 3 +2024-09-11 09:07:32.068631 2024-09-11 09:07:32.068634 87275310-96ff-450f-915e-5d93f85f03e0 {"pid": "7028", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020232527"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1083159234801903372859"} 1 +2024-09-11 09:07:32.119147 2024-09-11 09:07:32.119152 d01cc7a6-bb5f-4946-af27-0c1c7cf36756 {"pid": "7029", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020244189"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:32.168243 2024-09-11 09:07:32.168247 0abd4b0f-f183-456e-abcc-dfaaf449babc {"pid": "7030", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020276000"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:32.224112 2024-09-11 09:07:32.224115 036869dc-181a-4b2b-a453-9df7eee29f3a {"pid": "7031", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020278434"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:32.283107 2024-09-11 09:07:32.283112 f856f3ba-a5b5-4e51-8089-bbd88cfea1ce {"pid": "7032", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020285886"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:32.337851 2024-09-11 09:07:32.33786 df34c1e4-cb12-4365-98a6-e83c8b0e192c {"pid": "7033", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020287613"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:32.39424 2024-09-11 09:07:32.394243 fbcfe23b-45dd-489b-aea4-f1180e110405 {"pid": "7034", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020317114"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1025159234108003370715"} 1 +2024-09-11 09:07:32.465978 2024-09-11 09:07:32.465982 57442ca1-3c80-478d-8388-5d46c7e4a3d1 {"pid": "7035", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020337204"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:32.521688 2024-09-11 09:07:32.521691 9cd27281-2db2-48b8-bf6f-3def2d4bbadd {"pid": "7036", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020340385"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:32.576403 2024-09-11 09:07:32.576407 b126ef3a-07b6-4f0c-86a3-0c52d8f60d6c {"pid": "7037", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020351109"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1012159234798103372836"} 1 +2024-09-11 09:07:32.630931 2024-09-11 09:07:32.630934 fa8f0e3f-e190-4b10-b927-0c929037bb2d {"pid": "7038", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020355982"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:32.68601 2024-09-11 09:07:32.686013 f8d01918-ba36-4031-a673-775162595247 {"pid": "7039", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020360095"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:32.736983 2024-09-11 09:07:32.736988 c2931845-fec8-45d2-a2b5-9bd1a4211924 {"pid": "7040", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020370205"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:32.792547 2024-09-11 09:07:32.792549 d3933831-732c-4214-9274-97ccb5c4da05 {"pid": "7041", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020376367"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:32.851786 2024-09-11 09:07:32.851791 ab5e390c-a9a1-42ee-a4f4-691b15d57a66 {"pid": "7042", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020377292"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:32.90462 2024-09-11 09:07:32.904625 cb5b25fe-7309-46db-8b59-f021860cbf0a {"pid": "7043", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020398544"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:32.95592 2024-09-11 09:07:32.955923 d346e0c5-cf55-48de-8e40-1a4ebe1d5c85 {"pid": "7044", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020413592"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:33.010783 2024-09-11 09:07:33.010786 631467a3-d8a0-4f76-85c9-55f91f82d06a {"pid": "7045", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020415873"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:33.066738 2024-09-11 09:07:33.066742 addb4897-e1e3-4ebe-b611-e7829b8c9dab {"pid": "7046", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020417148"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:33.124239 2024-09-11 09:07:33.124243 8856e4eb-5e93-4699-a920-8ebe69909c72 {"pid": "7047", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020436263"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1078159234847803372889"} 1 +2024-09-11 09:07:33.191089 2024-09-11 09:07:33.191094 b23a4113-2eab-49bf-b779-0c72b3d29410 {"pid": "7048", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020461666"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:33.244481 2024-09-11 09:07:33.244486 bd4615de-3e54-4573-ae76-da78ce9553f2 {"pid": "7049", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020462104"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:33.301492 2024-09-11 09:07:33.301495 661799b9-f2e8-4f5f-91a3-b23c118250f1 {"pid": "7050", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020465572"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:33.355284 2024-09-11 09:07:33.355286 6d3fea24-dc65-4159-9e77-405e4ec75e6f {"pid": "7051", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020465592"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:33.413836 2024-09-11 09:07:33.41384 04741869-b702-417b-9b84-161c5e09f4e4 {"pid": "7052", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020471717"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:33.474106 2024-09-11 09:07:33.47411 0048d1ea-4797-4e17-9f5a-b879af5c352c {"pid": "7053", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020478658"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:33.528557 2024-09-11 09:07:33.528562 9bad5cf3-8b56-496b-9174-2b08b000cfe5 {"pid": "7054", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020487139"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:22.166524 2024-09-11 09:07:33.590606 78542b61-d992-46f0-bb23-c5fbf139946a {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1139400851"}, "pid": "1298", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A020500799"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/237257521"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1081087"} 3 +2024-09-11 09:07:33.652828 2024-09-11 09:07:33.652832 426de414-14ab-494a-a61b-17ca94872985 {"pid": "7055", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021510454"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:33.785031 2024-09-11 09:07:33.785034 6ead9b04-a75e-4d46-83ee-737ad5355255 {"pid": "7056", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021535410"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:33.846472 2024-09-11 09:07:33.846476 486ef428-db0a-4cb8-8465-9021e2d8db71 {"pid": "7057", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021609811"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1036159233962503370421"} 1 +2024-09-11 09:07:33.900261 2024-09-11 09:07:33.900265 910c62bc-3a09-453d-909f-18b65eaf8670 {"pid": "7058", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021617173"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:33.963033 2024-09-11 09:07:33.963036 797711dd-4450-4b2e-b10f-79585de8f7d5 {"pid": "7059", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021621256"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:34.023353 2024-09-11 09:07:34.023356 b411e1f0-d852-4652-ab59-0e483ed2de86 {"pid": "7060", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021627558"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:34.084414 2024-09-11 09:07:34.084419 eaabe0a0-826e-4446-acd9-9094a755dc68 {"pid": "7061", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021643724"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1001159234731203372537"} 1 +2024-09-11 09:07:34.145765 2024-09-11 09:07:34.145769 9e6dfbc4-0c7d-460d-8cb4-51ae3d0e7af3 {"pid": "7062", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021650553"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1048159234108203370712"} 1 +2024-09-11 09:07:34.217476 2024-09-11 09:07:34.217482 94bdf032-70c7-46cc-8fce-cd526852cc7b {"pid": "7063", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021653398"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:34.274306 2024-09-11 09:07:34.27431 94c10bb8-0135-4f9c-aa9c-dc5aaf7e3af5 {"pid": "7064", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021657316"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:34.33311 2024-09-11 09:07:34.333112 f3c2c2cb-1b14-4523-816c-f9da91ce1acb {"pid": "7065", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021665049"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1118159233931403370177"} 1 +2024-09-11 09:07:34.386872 2024-09-11 09:07:34.386875 05d1d2d1-cba0-4628-bc5d-83c38aaa8f42 {"pid": "7066", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021681210"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:34.445448 2024-09-11 09:07:34.445452 cd827093-aa2c-4d8f-a636-a8ed478b668c {"pid": "7067", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021706387"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1089159234274603371383"} 1 +2024-09-11 09:07:34.500586 2024-09-11 09:07:34.500591 d92dc95d-317c-4b82-8e9e-884642564a19 {"pid": "7068", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021753974"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:34.554579 2024-09-11 09:07:34.554582 f2615740-86f0-493a-b7d5-7e0f41946f87 {"pid": "7069", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021794133"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:34.609762 2024-09-11 09:07:34.609767 b68359cb-8c6d-400d-afe8-28ff3aec04b4 {"pid": "7070", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021819945"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:34.667215 2024-09-11 09:07:34.667219 eb91b2be-8cb3-4a2f-9a31-f9f3c271c901 {"pid": "7071", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021917468"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:45.594418 2024-09-11 09:07:34.778491 0f68e2ac-cfbd-4423-bd98-2ec434c41552 {"pid": "5434", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021918604"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/23527125X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100878021"} 2 +2024-09-11 09:07:34.837142 2024-09-11 09:07:34.837149 3a425643-91aa-418d-841a-4c8aaf0bf0c1 {"pid": "7072", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021921193"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:34.903416 2024-09-11 09:07:34.90342 1c059fc1-4953-4302-9a52-0c823f7723db {"pid": "7073", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021975601"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1021159234629703372251"} 1 +2024-09-11 09:07:34.966485 2024-09-11 09:07:34.966491 5dc5a449-a209-4094-9946-2edf8475f8bc {"pid": "7074", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021988179"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:35.033903 2024-09-11 09:07:35.033908 9d90566b-751f-40ce-94c0-0edabe9566ad {"pid": "7075", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021992182"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1102159234274703371380"} 1 +2024-09-11 09:07:35.08748 2024-09-11 09:07:35.087483 42bf3bc8-a4dc-4f47-b297-89b69627d077 {"pid": "7076", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A021995847"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:35.14228 2024-09-11 09:07:35.142283 560f78e7-f001-47e3-97ac-80844ea92853 {"pid": "7077", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022010442"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:35.202201 2024-09-11 09:07:35.202205 d1fbc47f-9273-4105-b2f5-db4bea19d22a {"pid": "7078", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022253194"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:35.256093 2024-09-11 09:07:35.256096 d1c5818c-e476-49fe-a877-58e77635b078 {"pid": "7079", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022261345"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:35.312628 2024-09-11 09:07:35.312631 8dfd96c1-f4aa-454a-9f5f-f84b7c23d15b {"pid": "7080", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022263478"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:35.365564 2024-09-11 09:07:35.365567 76b3be54-fedf-491c-b04e-3be86dfaae33 {"pid": "7081", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022416217"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:35.426561 2024-09-11 09:07:35.426566 fa660e0a-6ea1-4c9f-8aa9-399f23e14257 {"pid": "7082", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022476006"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1018159234773803372814"} 1 +2024-09-11 09:07:35.483582 2024-09-11 09:07:35.483588 01152a88-4ce3-4438-8940-17ffe42d4caa {"pid": "7083", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022502492"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:35.547656 2024-09-11 09:07:35.547661 63beaeb5-fd84-4fe5-b91b-30f9c2b6c8aa {"pid": "7084", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022508588"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:35.602111 2024-09-11 09:07:35.602116 72aeb1ba-fa64-4333-9230-f8ca9d9260d1 {"pid": "7085", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022508598"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:35.654897 2024-09-11 09:07:35.6549 c04445a7-8296-48de-8cda-ce92821afa56 {"pid": "7086", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022512216"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:35.720948 2024-09-11 09:07:35.720952 e5380077-541f-4898-ba76-06bc97e07535 {"pid": "7087", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022533394"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1030159234294003371358"} 1 +2024-09-11 09:07:35.780142 2024-09-11 09:07:35.780146 4a5af8b7-c3ef-4599-800d-a2521679eac9 {"pid": "7088", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022545173"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:02.60977 2024-09-11 09:07:35.843109 cbdb3f04-1371-429e-b2d7-f1139caeb999 {"pid": "4738", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022553969"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/158552180"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102827771"} 2 +2024-09-11 09:07:35.904405 2024-09-11 09:07:35.904412 52a99b9a-9895-4cd2-97f4-82894fbf242b {"pid": "7089", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022563739"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:35.96053 2024-09-11 09:07:35.960534 a7cf85f5-d915-4e4f-8a20-ba21effb72b6 {"pid": "7090", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022609222"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:36.022067 2024-09-11 09:07:36.022071 caeb05ff-db4a-45b0-b626-3e686c5c528d {"pid": "7091", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022669691"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:36.08212 2024-09-11 09:07:36.082124 9af81737-7916-4073-a6f2-e0d7cb6b32e1 {"pid": "7092", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022727201"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:36.144665 2024-09-11 09:07:36.144668 6fbb6f41-4de2-4cd0-82aa-205fc1f656a6 {"pid": "7093", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022728227"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:36.200569 2024-09-11 09:07:36.200579 86d3eb63-86a1-4637-9a62-bb3fafe8a0cd {"pid": "7094", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022750943"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:36.257657 2024-09-11 09:07:36.257661 b6e0158e-941f-448b-81c4-4648be735c57 {"pid": "7095", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022755606"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:36.313216 2024-09-11 09:07:36.313221 e731824f-6176-470a-8d5d-7d5273e2b894 {"pid": "7096", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022762257"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:36.375652 2024-09-11 09:07:36.375655 350b9c2f-c092-4830-8d2f-23b43c81e52e {"pid": "7097", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022774320"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1081159234514903371914"} 1 +2024-09-11 09:07:36.432282 2024-09-11 09:07:36.432286 af78da17-e4e1-40ec-acfe-092c7053c5ce {"pid": "7098", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022779592"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:36.508845 2024-09-11 09:07:36.50885 bd51e5c6-b85b-4d01-a02b-4e05d00a79c3 {"pid": "7099", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022780159"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:36.572055 2024-09-11 09:07:36.57206 a91fc2b1-ae48-4af7-ac04-47f4b995a80b {"pid": "7100", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022784340"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1054159234069003370746"} 1 +2024-09-11 09:07:36.6374 2024-09-11 09:07:36.637425 e5ca285c-7c16-471a-a630-35c2d14fea59 {"pid": "7101", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022788140"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:36.690359 2024-09-11 09:07:36.690362 6969c620-0661-4e15-91fc-a5f755f3bd7b {"pid": "7102", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022802138"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:36.739518 2024-09-11 09:07:36.739522 c24832a0-9484-45bc-965f-83f626eb0c72 {"pid": "7103", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022802695"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:36.797401 2024-09-11 09:07:36.797403 02a5587b-caac-49cf-9907-968b798d0435 {"pid": "7104", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022817751"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:36.85594 2024-09-11 09:07:36.855943 7800c124-8320-4fc3-87f7-22ef6aa8a561 {"pid": "7105", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022823883"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:36.917685 2024-09-11 09:07:36.91769 256c63d5-25ad-41b4-869f-552d93be2eb2 {"pid": "7106", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022833947"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:36.977134 2024-09-11 09:07:36.977139 d9eff271-4816-438d-a249-d0d7933f416d {"pid": "7107", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022844215"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:37.033905 2024-09-11 09:07:37.033909 c6e8a7db-b31b-47a1-80cd-1546a0d33d95 {"pid": "7108", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022850968"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:37.088633 2024-09-11 09:07:37.088636 92a67a41-6d0b-43ce-b6ca-a642bb942163 {"pid": "7109", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022851528"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:37.143669 2024-09-11 09:07:37.143673 e807442f-3cd7-453e-9f8a-0230d2b413a9 {"pid": "7110", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022851951"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:37.21365 2024-09-11 09:07:37.213663 0db218cd-7eb9-4532-b887-9d9a30eb0f49 {"pid": "7111", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022877330"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:37.272553 2024-09-11 09:07:37.272555 a4e2cb8f-14d5-44cc-8351-0a3fcdec1451 {"pid": "7112", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022879961"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:37.327175 2024-09-11 09:07:37.327179 4423d851-5721-4d85-955b-04b0063e1e08 {"pid": "7113", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022889884"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:37.379891 2024-09-11 09:07:37.379894 c764d214-ebb2-42ca-8372-a31b2431588a {"pid": "7114", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022899841"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:37.444452 2024-09-11 09:07:37.444457 f7a4f707-9da1-4236-883b-778c33cc859c {"pid": "7115", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022904210"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:37.510484 2024-09-11 09:07:37.510489 374a6650-41a3-4048-9d20-ce31b42dce8e {"pid": "7116", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022916519"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:37.568775 2024-09-11 09:07:37.568779 ce54c9e7-4d5d-4e14-a67e-860a07203886 {"pid": "7117", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022917527"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:37.623183 2024-09-11 09:07:37.623186 07942209-eaa5-465d-97a0-4d657a310d5f {"pid": "7118", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022925286"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:37.683122 2024-09-11 09:07:37.683134 b5da264c-0e23-4c32-bce0-70cc200a6fee {"pid": "7119", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022944034"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1095159234803003372820"} 1 +2024-09-11 09:07:37.736738 2024-09-11 09:07:37.736741 2fc07cf6-169e-4ad5-8dad-28b4995436e6 {"pid": "7120", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022959371"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:37.788864 2024-09-11 09:07:37.788867 06fd6754-eb39-4a1f-9417-9e17a738c72e {"pid": "7121", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022966454"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:37.846957 2024-09-11 09:07:37.846961 4ad6a56e-526e-4630-b2eb-a2dade608d0a {"pid": "7122", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022967536"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:37.907901 2024-09-11 09:07:37.907905 7dd428d5-93c7-4b34-aa88-7bc0fc017979 {"pid": "7123", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022968022"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:37.973989 2024-09-11 09:07:37.973993 608a4a5d-b150-4537-99e2-c1b0cb401220 {"pid": "7124", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022977898"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:38.029215 2024-09-11 09:07:38.029221 93e10307-a158-463b-80db-fb4da0937fa1 {"pid": "7125", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022983847"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:38.143721 2024-09-11 09:07:38.143726 267d7702-1950-474d-87a4-b0c0ecdb1014 {"pid": "7126", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022990131"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1045159234774003372813"} 1 +2024-09-11 09:07:38.203559 2024-09-11 09:07:38.203564 df64119d-a172-4f42-9a1a-8ae909da3278 {"pid": "7127", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A022997177"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105683640"} 1 +2024-09-11 09:07:38.261279 2024-09-11 09:07:38.261282 2e25acb2-906a-446f-822c-97ec9350dad4 {"pid": "7128", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023068067"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:38.310849 2024-09-11 09:07:38.310853 ce3b830a-0a1f-4818-870d-4f061ed7b07d {"pid": "7129", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023086196"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:38.362256 2024-09-11 09:07:38.362261 46a01ccf-e233-4f6d-a3c2-6e5ccf3a3af6 {"pid": "7130", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023112678"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:14.376013 2024-09-11 09:07:38.422103 0c70d9b7-0d35-41d8-94d0-92e94e251cdf {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/132272105"}, "pid": "2187", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023114350"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/126698104"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10156271"} 3 +2024-09-11 09:07:38.479062 2024-09-11 09:07:38.479066 3c363be9-2f5d-4d65-bed9-61e602e18a6a {"pid": "7131", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023116130"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:38.53979 2024-09-11 09:07:38.539794 1e78c127-d990-4ee9-9119-f9103ae39526 {"pid": "7132", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023116917"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1022159234413103371649"} 1 +2024-09-11 09:07:38.596159 2024-09-11 09:07:38.596162 85d89735-677f-4091-98fe-04e41da1c550 {"pid": "7133", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023154358"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1091159234630103372254"} 1 +2024-09-11 09:07:38.652392 2024-09-11 09:07:38.652397 29da400a-76a6-4885-9922-0a0430f9ca56 {"pid": "7134", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023158576"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:38.766478 2024-09-11 09:07:38.712028 a45dd151-c59d-4a84-880e-c8cdec09cea6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/16110522X"}, "pid": "2592", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023166695"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/167467549"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "105369513"} 3 +2024-09-11 09:07:38.76808 2024-09-11 09:07:38.768084 eb8b7879-cf2f-4f35-afec-13f34af13cb4 {"pid": "7135", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023168629"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:38.839697 2024-09-11 09:07:38.839701 4d731973-6690-4ef0-873f-e6172f6232c8 {"pid": "7136", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023182560"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1086159234730403372515"} 1 +2024-09-11 09:07:38.893455 2024-09-11 09:07:38.893459 3e9beb64-0711-4b2c-af0b-2618e341aa43 {"pid": "7137", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023188004"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:38.952417 2024-09-11 09:07:38.952421 4e01e9a1-deca-46bb-8160-f4d862f13e74 {"pid": "7138", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023189262"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107325896"} 1 +2024-09-11 09:07:39.012702 2024-09-11 09:07:39.012706 2bb9e33c-7d23-452d-b6b3-a7e3b514bc38 {"pid": "7139", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023193920"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1109159234798703372837"} 1 +2024-09-11 09:07:39.07092 2024-09-11 09:07:39.070925 388f7dd0-0cbe-4675-871a-0cc416769621 {"pid": "7140", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023196927"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:39.12696 2024-09-11 09:07:39.126965 322896b8-43c5-4194-b7f6-7ca315bffed4 {"pid": "7141", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023205283"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:39.188188 2024-09-11 09:07:39.188193 b9694019-74ac-49d8-a027-a2b31e148024 {"pid": "7142", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023227823"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1068159234548603371931"} 1 +2024-09-11 09:07:39.243959 2024-09-11 09:07:39.243963 2992b255-aaa6-4325-af08-d4f5cd336b5b {"pid": "7143", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023237776"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:39.302242 2024-09-11 09:07:39.302246 0ac91052-eef5-48f3-8d62-0c9f9012db4f {"pid": "7144", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023249408"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:39.360789 2024-09-11 09:07:39.360793 e4561bb0-ab16-4b71-889d-6ce7dc461873 {"pid": "7145", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023286352"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:39.415982 2024-09-11 09:07:39.415986 310fafa6-3811-4b75-abe9-06db21fa42a7 {"pid": "7146", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023294886"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:39.471872 2024-09-11 09:07:39.471877 8d84372c-3679-49e9-9c6a-06e11de1fa7f {"pid": "7147", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023325251"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:39.527891 2024-09-11 09:07:39.527896 f483bdb3-7977-433a-8ac3-1baa9b611e04 {"pid": "7148", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023343244"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:39.581965 2024-09-11 09:07:39.581968 6a09caac-d732-4a41-983c-dd9ff635445e {"pid": "7149", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023361460"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:39.643896 2024-09-11 09:07:39.6439 98ae22fb-33ac-48b1-9e41-53020a230665 {"pid": "7150", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023366781"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:39.70575 2024-09-11 09:07:39.705754 1a7e8510-03b5-4640-afcc-46afab2a76f3 {"pid": "7151", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023417604"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:39.760829 2024-09-11 09:07:39.760834 5ebc9463-eed0-4236-afb5-3d7b51d81b08 {"pid": "7152", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023417887"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:39.824741 2024-09-11 09:07:39.824745 72264b3d-3b8c-4659-9af8-fb6aa23f31d1 {"pid": "7153", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023419144"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:39.880616 2024-09-11 09:07:39.88062 e4ed9898-08b5-4f6a-8c0a-9d06a4f03d28 {"pid": "7154", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023422393"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:33.79275 2024-09-11 09:07:39.945479 fc291cb0-d810-4075-90f3-8900e49fb3cd {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/142514926"}, "pid": "2503", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023425677"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/234715723"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108454892"} 3 +2024-09-11 09:07:40.004473 2024-09-11 09:07:40.004478 0a42e89f-814b-49dc-a97b-e3fd22e00b5b {"pid": "7155", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023432176"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:40.060187 2024-09-11 09:07:40.060191 a87a1c2a-e81a-43fc-b5f8-77fc4b875b89 {"pid": "7156", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023438761"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:40.115777 2024-09-11 09:07:40.115781 c0ddf68a-5f71-442c-a8a7-5f6b7d479319 {"pid": "7157", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023440649"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:40.188076 2024-09-11 09:07:40.188081 d98db413-42f7-4728-a086-ad769aa67d86 {"pid": "7158", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023442924"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:40.269672 2024-09-11 09:07:40.269675 72863dc6-2c0d-4741-8700-ae2a5ed2d251 {"pid": "7159", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023452640"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1129159233964903370408"} 1 +2024-09-11 09:07:40.330074 2024-09-11 09:07:40.330077 a37df0ee-8845-4cfd-916a-c9cbfc116909 {"pid": "7160", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023455691"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:40.383841 2024-09-11 09:07:40.383846 76bc408e-2596-44fc-b4a1-6aacc0faa114 {"pid": "7161", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023474915"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:40.439076 2024-09-11 09:07:40.439079 69a677bd-32c6-4eea-a39d-9bccfd734110 {"pid": "7162", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023516300"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:40.495327 2024-09-11 09:07:40.495329 52bb0899-c231-4ec0-9c2f-e4f23234e858 {"pid": "7163", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023516798"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:40.561865 2024-09-11 09:07:40.561871 3c9ac0c7-bb9e-4fc2-8d66-9b779f67baef {"pid": "7164", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023520416"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:40.616548 2024-09-11 09:07:40.616553 715483e2-42e2-4859-86ce-9f7931cbfc0a {"pid": "7165", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023524669"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:40.669273 2024-09-11 09:07:40.669277 120925e8-f7a3-4df4-9a19-f8bd0b253cb2 {"pid": "7166", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023533143"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:40.724286 2024-09-11 09:07:40.724291 7f7a73a4-4ffd-4244-8918-e0e41552d567 {"pid": "7167", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023570716"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:40.775435 2024-09-11 09:07:40.77544 cacdaa37-7c54-4d63-a872-5f14c5d21b43 {"pid": "7168", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023604346"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:40.837862 2024-09-11 09:07:40.837866 779f1421-31c4-4911-9c83-756a2ead1ef7 {"pid": "7169", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023605931"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:40.898402 2024-09-11 09:07:40.898405 6ea4508d-b27d-4d9d-a7f8-db84d1dac8ba {"pid": "7170", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023608022"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:40.962115 2024-09-11 09:07:40.962136 f579bae2-31cf-442c-95b1-e57338ab20dc {"pid": "7171", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023613346"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:41.021953 2024-09-11 09:07:41.021958 f52d1238-1344-469b-acd1-92ba5964a721 {"pid": "7172", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023626167"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:41.095781 2024-09-11 09:07:41.095784 e4b52891-a01a-4907-a8bc-a3b0569c79ad {"pid": "7173", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023644947"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:41.157224 2024-09-11 09:07:41.157228 cdd15407-98f1-4cb7-bd77-5ad7cb07d2a6 {"pid": "7174", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023655893"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:41.221847 2024-09-11 09:07:41.221873 83d34cc8-a73d-49bc-a9a4-8019ab2ed5e4 {"pid": "7175", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023668772"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "101676637"} 1 +2024-09-11 09:07:41.286557 2024-09-11 09:07:41.286565 f4ea664d-b5bf-4260-9391-7b3e8f9de075 {"pid": "7176", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023690762"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:51.043845 2024-09-11 09:07:41.386581 e4d3ce7a-aa33-4181-ace5-cb49b397b4c8 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/120756455"}, "pid": "1781", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023693839"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/248213032"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108912910"} 3 +2024-09-11 09:07:41.45037 2024-09-11 09:07:41.450376 5ca2e498-d2a7-42d4-9cc7-4a0a140d0c33 {"pid": "7177", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023699946"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:41.518623 2024-09-11 09:07:41.518628 cfa6a017-aa38-455f-93b4-b21d11646612 {"pid": "7178", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023700595"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:41.595409 2024-09-11 09:07:41.595413 d2af15f4-80d7-4576-b0f3-fb6fcbd1926c {"pid": "7179", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023701973"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:41.672587 2024-09-11 09:07:41.672594 d4bbee4e-1f88-4625-808f-16d075f7ea5b {"pid": "7180", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023712980"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:41.819715 2024-09-11 09:07:41.819722 a99e2fca-cbcc-4312-9495-50cfd418b302 {"pid": "7181", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023741754"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:41.88011 2024-09-11 09:07:41.880113 fd7539e1-9201-4766-8e9b-6af2493d64be {"pid": "7182", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023763587"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:41.947795 2024-09-11 09:07:41.947799 f3ec719a-adac-4cbb-be00-7830250fbf3d {"pid": "7183", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023783324"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:42.005024 2024-09-11 09:07:42.005028 31ebabf2-1014-4d6c-949b-71eaf68eeab1 {"pid": "7184", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023806510"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:42.063102 2024-09-11 09:07:42.063107 c3ed65d3-b8cb-442b-856c-d5721b2ff0d3 {"pid": "7185", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023814163"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:42.12641 2024-09-11 09:07:42.126414 2a41e156-a5a2-4fa0-b706-788263fd4f7b {"pid": "7186", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023822688"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:42.184907 2024-09-11 09:07:42.184914 6d34079f-8bac-433e-b5c4-2c2ab47a81c9 {"pid": "7187", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023822699"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:42.245399 2024-09-11 09:07:42.245404 7c40c898-5ef5-41c0-8922-b8727fa1ad5f {"pid": "7188", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023822966"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:42.305353 2024-09-11 09:07:42.305356 b6a00363-665a-4796-8859-51905740250f {"pid": "7189", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023823517"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:42.365399 2024-09-11 09:07:42.365403 b026759d-58b7-48ed-8d20-bf920d13d263 {"pid": "7190", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023823557"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:42.433427 2024-09-11 09:07:42.433434 51362aba-e814-4d68-805b-aedd4d2b2301 {"pid": "7191", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023848289"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:42.489102 2024-09-11 09:07:42.489107 97ef56f1-0221-48b2-857a-f7a5ea6d4686 {"pid": "7192", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023869329"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:42.544975 2024-09-11 09:07:42.544977 c22efb65-161c-4c4f-bcd9-2e91d488b78e {"pid": "7193", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023948966"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:42.600985 2024-09-11 09:07:42.60099 38056e3f-794d-4990-a4ee-7a6e12adb336 {"pid": "7194", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023960471"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:42.663953 2024-09-11 09:07:42.663958 28bbd808-dcc2-4ef4-8a77-9933332e90ec {"pid": "7195", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023966957"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:42.748109 2024-09-11 09:07:42.74812 f317ac86-63dd-4f51-a25c-d9fc1343bb3d {"pid": "7196", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023969519"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:42.821373 2024-09-11 09:07:42.821376 4ee67bd5-5c1f-4016-86f6-08eebe904b18 {"pid": "7197", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023985610"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:42.884435 2024-09-11 09:07:42.884439 3f3d9d41-18ee-41eb-8709-1b869cae0c32 {"pid": "7198", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023993514"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:42.947062 2024-09-11 09:07:42.947066 97ddc5d0-40bf-4680-a946-9ab18a8f919f {"pid": "7199", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A023994589"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:42.999378 2024-09-11 09:07:42.99938 94482afb-f10f-4f34-8d24-945ca7acc86b {"pid": "7200", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024017606"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:43.060041 2024-09-11 09:07:43.060045 a3874dcb-2920-4c6d-96a6-babbf55cb3a4 {"pid": "7201", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024032635"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:43.140958 2024-09-11 09:07:43.140963 16945fb7-f9dd-4a6f-9805-8b67fa1b540b {"pid": "7202", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024034240"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:43.22781 2024-09-11 09:07:43.227815 01e22dda-dbb3-444b-b505-2669d0cdc1d2 {"pid": "7203", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024042745"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:43.356099 2024-09-11 09:07:43.356103 5c03bce7-2b9f-4060-bf6e-683be2640f0c {"pid": "7204", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024063413"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:43.419138 2024-09-11 09:07:43.419142 0126f691-a969-4647-a665-93fdf16285cd {"pid": "7205", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024072354"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:43.477747 2024-09-11 09:07:43.477752 68f89621-9844-428c-a0c4-ae4bb4896f21 {"pid": "7206", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024073610"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:39.447749 2024-09-11 09:07:43.5433 bab544a7-7761-4538-9e26-3b91dfcadba2 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/116991992"}, "pid": "1584", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024075381"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "100109330"} 2 +2024-09-11 09:07:43.605235 2024-09-11 09:07:43.605238 4fd14d0c-3239-4f8f-b70d-f6174bac4d26 {"pid": "7207", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024079443"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:27.449256 2024-09-11 09:07:43.668909 16342ed1-b66d-40e8-a73d-efc88338178d {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/140553533"}, "pid": "2394", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024083167"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/147759420"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107237687"} 3 +2024-09-11 09:07:43.739638 2024-09-11 09:07:43.739641 7cb4cc2e-45f0-4744-b5ee-9bfbe488d5d4 {"pid": "7208", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024099458"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107321386"} 1 +2024-09-11 09:07:43.795508 2024-09-11 09:07:43.795512 07c26c72-1d31-42b1-8b4c-c4a3092b30ac {"pid": "7209", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024107085"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:43.85006 2024-09-11 09:07:43.850066 0d38f0f4-fe71-40f8-9cd9-038b2633ff2c {"pid": "7210", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024109666"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:43.90613 2024-09-11 09:07:43.906134 6ce746e6-0306-4141-9779-104d59e12462 {"pid": "7211", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024119960"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:43.963789 2024-09-11 09:07:43.963792 6e1d701b-20b8-4f08-95b4-9e823b9502f0 {"pid": "7212", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024120760"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:44.026774 2024-09-11 09:07:44.026778 642772c2-d98b-4dab-8813-5efa72ad0a47 {"pid": "7213", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024123847"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:44.081699 2024-09-11 09:07:44.081701 10da04d3-436b-44f9-8843-5573f55846bd {"pid": "7214", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024135505"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:44.134327 2024-09-11 09:07:44.13433 0834e13f-eaa0-47d2-a295-10ff65c7268b {"pid": "7215", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024137299"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:44.193268 2024-09-11 09:07:44.193273 490893e0-be75-4f09-8a61-e2e9237a5054 {"pid": "7216", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024141965"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:44.250177 2024-09-11 09:07:44.250182 5d4316be-77e9-49cd-966f-b8c30b41ab40 {"pid": "7217", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024152276"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:44.310797 2024-09-11 09:07:44.310801 97af0489-4203-48d8-8e7e-c6ceeb604d2a {"pid": "7218", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024180345"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:44.364485 2024-09-11 09:07:44.364488 d834a3fb-c65e-483c-b9a9-c7f3569f66b9 {"pid": "7219", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024182024"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:44.430966 2024-09-11 09:07:44.43097 28529394-14d9-44cd-8442-cdfe12c1059e {"pid": "7220", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024188404"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:44.49705 2024-09-11 09:07:44.497055 4c2dbd26-fc42-44a1-b93b-a7914d104a56 {"pid": "7221", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024193588"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:44.56121 2024-09-11 09:07:44.561215 7b9bc804-d37f-450e-af2b-d8794aae3518 {"pid": "7222", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024201811"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:44.61627 2024-09-11 09:07:44.616274 5ee9d3d2-1d77-45f7-8aeb-2c51e010eb16 {"pid": "7223", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024207312"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:44.673601 2024-09-11 09:07:44.673604 a1392d0b-625e-4f8f-9273-533d7cb1f652 {"pid": "7224", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024239773"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:44.726336 2024-09-11 09:07:44.726338 6f8456fe-3fa9-449c-9c92-58de839c949f {"pid": "7225", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024248736"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:44.788869 2024-09-11 09:07:44.788872 8a53a611-e406-48d0-b730-f2b19477439a {"pid": "7226", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024250351"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:44.846874 2024-09-11 09:07:44.846878 9309c3ac-5ee8-447d-b65d-cc9761051a29 {"pid": "7227", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024250841"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:44.904352 2024-09-11 09:07:44.904356 5fb47ff5-e0b5-4db4-9cbd-1d9c13300017 {"pid": "7228", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024251528"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:45.023081 2024-09-11 09:07:45.023085 72fb8c81-002b-459d-9651-193ccb370f6b {"pid": "7229", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024295112"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:45.081118 2024-09-11 09:07:45.081122 f183b763-3d51-4f3d-9aac-ef2ce3d77fd8 {"pid": "7230", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024305757"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:45.144674 2024-09-11 09:07:45.144679 0ff4f548-0773-4a6f-924a-ee88d594ceb6 {"pid": "7231", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024311492"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:45.209452 2024-09-11 09:07:45.209455 97c95c2c-0adb-49c4-ba1c-037352cd73c8 {"pid": "7232", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024314866"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:45.270813 2024-09-11 09:07:45.270818 e42c6ef9-b9d9-4983-b91e-5dcad1aba64a {"pid": "7233", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024316631"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:45.34011 2024-09-11 09:07:45.340113 437afc42-cacb-4e34-8258-99ea0c25f5fe {"pid": "7234", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024326128"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:45.40146 2024-09-11 09:07:45.401462 f1f80a7c-3c9b-4d11-b913-1f5d05351909 {"pid": "7235", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024329523"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:45.4574 2024-09-11 09:07:45.457403 2f8a0a62-dcfa-4b2f-a28c-2cf85784cf0e {"pid": "7236", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024329741"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:45.50975 2024-09-11 09:07:45.509754 d6ce8237-8257-43d3-9449-4a28c0eb4acd {"pid": "7237", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024333154"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:45.569864 2024-09-11 09:07:45.569868 2de35c9a-b8f6-45f7-b68d-04a61319348f {"pid": "7238", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024352277"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:45.633105 2024-09-11 09:07:45.633108 3d6ec665-981f-4aad-8e9a-70171582e286 {"pid": "7239", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024368303"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:45.68907 2024-09-11 09:07:45.689073 0c7f0aa5-bb35-4463-858f-c60488918984 {"pid": "7240", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024370974"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:45.743583 2024-09-11 09:07:45.743587 6189bca4-a855-4bfa-bac5-a1360a93dd57 {"pid": "7241", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024377672"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:45.798611 2024-09-11 09:07:45.798613 b1c943a9-2e1c-4025-9037-662ce3a09705 {"pid": "7242", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024381221"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:45.860228 2024-09-11 09:07:45.860232 c422dd12-030b-4dae-9921-2733de74631f {"pid": "7243", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024413945"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104504649"} 1 +2024-09-11 09:07:45.994108 2024-09-11 09:07:45.99411 5701e4a2-b101-4fe8-b463-fb071927e531 {"pid": "7244", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024424763"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:46.061857 2024-09-11 09:07:46.06186 67f5b7e6-4af2-4f91-a9f8-2e67e8ee5d0a {"pid": "7245", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024446255"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:46.12204 2024-09-11 09:07:46.122043 b406347d-8042-4a70-89fd-eca4dc09b9f9 {"pid": "7246", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024465489"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:46.175257 2024-09-11 09:07:46.175261 98ba1410-a95c-4ab1-b56a-c5288798ae87 {"pid": "7247", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024466417"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:46.226978 2024-09-11 09:07:46.226982 83d3696f-7331-47dd-91b4-e2c7142577cf {"pid": "7248", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024471669"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:46.291811 2024-09-11 09:07:46.291815 fa6b2787-6518-4b0b-b61d-72a45e564fee {"pid": "7249", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024478155"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:46.34772 2024-09-11 09:07:46.347725 b733d744-1d7b-445a-bfa7-f010a178222f {"pid": "7250", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024478463"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:46.402596 2024-09-11 09:07:46.402601 e7bc3959-6f7b-4c13-ab4b-66399cadcaa6 {"pid": "7251", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024478863"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:46.4623 2024-09-11 09:07:46.462304 ceb36077-a75c-4328-9057-940027d919dc {"pid": "7252", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024480400"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:46.516025 2024-09-11 09:07:46.516031 40556780-78d2-40e9-a064-605a9ae0620a {"pid": "7253", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024491342"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:46.574261 2024-09-11 09:07:46.574265 5ededbcd-abeb-4bd2-af33-628181f00b24 {"pid": "7254", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024527296"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:46.638866 2024-09-11 09:07:46.63887 a439bbbc-8be2-4c2c-bb61-628168eaea77 {"pid": "7255", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024528563"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:46.699227 2024-09-11 09:07:46.699231 8a663eb0-f392-40f4-9c65-c7e6cb69ef28 {"pid": "7256", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024529059"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:46.761564 2024-09-11 09:07:46.761567 cc2491b9-256b-4bb0-9a17-55f9fb597393 {"pid": "7257", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024541309"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:46.819523 2024-09-11 09:07:46.819527 db620188-1fa9-4fa4-9ac2-d0a98474df4a {"pid": "7258", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024566467"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:46.887696 2024-09-11 09:07:46.8877 2bcfd7a7-6179-4393-8436-5daaa9037def {"pid": "7259", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024569645"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:46.941704 2024-09-11 09:07:46.941709 0665a54f-d622-4cf3-a2c7-01700ac9a5dc {"pid": "7260", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024595109"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:47.002629 2024-09-11 09:07:47.002632 d3980c65-09fe-4a90-9d55-d375b428db2a {"pid": "7261", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024595509"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:47.054744 2024-09-11 09:07:47.054746 830c7679-d97b-4fe1-95ae-a02736199de5 {"pid": "7262", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024600161"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:47.108565 2024-09-11 09:07:47.108569 bae05e75-ac14-4534-8a23-e884a7fe46ae {"pid": "7263", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024602006"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:47.16035 2024-09-11 09:07:47.160353 6b47036b-7ab6-428a-864e-ad4dc005f2c3 {"pid": "7264", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024707851"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:47.219197 2024-09-11 09:07:47.2192 650ee3dc-c292-48cd-98b4-039e6d1bef17 {"pid": "7265", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024728544"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:47.274014 2024-09-11 09:07:47.274018 75cf1928-e3f5-4ecb-b8f5-889b7336bcfa {"pid": "7266", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024729479"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:47.327943 2024-09-11 09:07:47.327948 6cc001ca-ab03-4cf4-893f-11f3374486eb {"pid": "7267", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024746147"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:47.38135 2024-09-11 09:07:47.381354 d8f31436-e8d7-48a1-8b30-9099d7596b84 {"pid": "7268", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024770093"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:47.435759 2024-09-11 09:07:47.435766 f762d83d-2979-4780-a0ba-e16520dc0958 {"pid": "7269", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024774397"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:47.493472 2024-09-11 09:07:47.493478 a138f8b9-12ab-4d34-bd9c-e3b9e5703d1b {"pid": "7270", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024790283"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:47.555564 2024-09-11 09:07:47.555567 c2e5e5ec-ecc7-47f6-820a-59c91fc53446 {"pid": "7271", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024801676"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:47.616115 2024-09-11 09:07:47.616119 bfa6d169-1a03-40d6-94bb-113948694771 {"pid": "7272", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024814391"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:47.674154 2024-09-11 09:07:47.674157 ddab038f-22bd-4ed8-9608-4ec43c7705fb {"pid": "7273", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024843767"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:47.736209 2024-09-11 09:07:47.736214 90ff5f42-50f1-4f3f-b091-6b99e6020ba9 {"pid": "7274", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024846924"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:47.792097 2024-09-11 09:07:47.792101 5f892cc3-8e65-4303-b2f6-f9228e3b542d {"pid": "7275", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024866515"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:47.84692 2024-09-11 09:07:47.846925 07c9cc19-7ea2-40c9-87d4-5a86709a1c4d {"pid": "7276", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024878364"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:47.905096 2024-09-11 09:07:47.9051 04bfa306-fedd-4111-823a-32999de65eda {"pid": "7277", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024884886"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:47.960696 2024-09-11 09:07:47.960701 c34f8727-4d38-4c4d-bd7a-32529e226a52 {"pid": "7278", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024896750"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:48.017991 2024-09-11 09:07:48.017996 ac9d0b7c-b8a9-46ec-810f-494e51ea4bbf {"pid": "7279", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024897034"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:48.077679 2024-09-11 09:07:48.077683 13ce9963-bb91-438e-b90e-ab23ac662a36 {"pid": "7280", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024917771"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:48.134033 2024-09-11 09:07:48.134038 6166071e-00f0-47b1-9dee-e9e095e31df9 {"pid": "7281", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024919899"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:48.196803 2024-09-11 09:07:48.196807 60c164f7-cbf9-4e59-9880-868753214270 {"pid": "7282", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024930424"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:48.261464 2024-09-11 09:07:48.261467 82388056-2954-499e-bafb-96526242eb24 {"pid": "7283", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024960848"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:48.317187 2024-09-11 09:07:48.317193 5528b46b-2b23-4f2e-88be-f81b2cbfdd11 {"pid": "7284", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024966631"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:48.376915 2024-09-11 09:07:48.376919 678854d5-c7d3-448a-805a-6bf1075fa1fc {"pid": "7285", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024969731"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:48.434395 2024-09-11 09:07:48.434401 c12fa1a7-c9b0-44b9-944a-e9cf8c2b2c3b {"pid": "7286", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024978532"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:48.493878 2024-09-11 09:07:48.493881 9f1da867-077a-4ae0-b043-b332ba68609b {"pid": "7287", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A024983874"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:48.552738 2024-09-11 09:07:48.552743 ce9be1fe-b58f-4360-a396-1f2772bf4b04 {"pid": "7288", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025024778"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:48.608978 2024-09-11 09:07:48.608983 7b8f3e6f-39d1-4f08-a959-729f441f2c29 {"pid": "7289", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025029914"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:48.663832 2024-09-11 09:07:48.663835 07624795-18cf-4c39-bbad-2f5151bb12d5 {"pid": "7290", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025056747"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:48.717819 2024-09-11 09:07:48.717823 85a9dddd-d3ae-410e-9110-28cc6b11d5c7 {"pid": "7291", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025075603"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:48.771797 2024-09-11 09:07:48.771801 e499e548-b7c2-4eb1-b51d-9864e90e0d38 {"pid": "7292", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025086688"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:48.827414 2024-09-11 09:07:48.827418 fccc97e4-a124-4b34-8ed6-c3949f1dd259 {"pid": "7293", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025119661"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:48.885171 2024-09-11 09:07:48.885173 3997f39d-09f7-4ba1-bec1-a6cc4e2019ac {"pid": "7294", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025121507"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:48.997148 2024-09-11 09:07:48.997151 ba0d289f-eff7-46e6-bc3a-fa87e7efcc9b {"pid": "7295", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025252592"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:49.054356 2024-09-11 09:07:49.054359 2f661e36-9af6-458a-9735-ec866d1dca22 {"pid": "7296", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025258576"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:49.10736 2024-09-11 09:07:49.107364 8e1d92dc-39a3-439d-bf8e-a934167105e8 {"pid": "7297", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025259137"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:49.164818 2024-09-11 09:07:49.164821 276a8a9d-4437-4de7-93a0-5efc3efbb8af {"pid": "7298", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025287146"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:49.223878 2024-09-11 09:07:49.223882 a08a6eea-1cde-4550-8716-d8741e26e48f {"pid": "7299", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025328121"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:49.281323 2024-09-11 09:07:49.281327 4dad11fc-65ac-4aef-adf3-e4eb9e346056 {"pid": "7300", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025329777"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:49.336871 2024-09-11 09:07:49.336875 2c0d091f-131c-46a4-bb3a-0b77b0bd0cb8 {"pid": "7301", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025330235"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:49.392098 2024-09-11 09:07:49.3921 a30181e7-feff-476a-a605-aaf50ab923f7 {"pid": "7302", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025337143"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:49.450896 2024-09-11 09:07:49.450899 6b6ce068-bc74-4559-84bb-df08e1fcbc98 {"pid": "7303", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025360796"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:49.511556 2024-09-11 09:07:49.511561 faa8463a-b430-4d89-b192-9aad75112d22 {"pid": "7304", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025367912"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107437766"} 1 +2024-09-11 09:07:49.570111 2024-09-11 09:07:49.570115 c183faa4-381c-45f0-b4ea-b822f57cba5f {"pid": "7305", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025387385"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:49.625395 2024-09-11 09:07:49.6254 8460956a-d731-486d-82ca-58df6f69089d {"pid": "7306", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025397944"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:49.69123 2024-09-11 09:07:49.691236 ff326c79-a73e-490a-8de6-652067b9af45 {"pid": "7307", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025418238"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:49.753275 2024-09-11 09:07:49.753278 f30b848e-8483-447f-93e4-04f495b7f214 {"pid": "7308", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025435600"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:19.71163 2024-09-11 09:07:49.821433 5a3777dc-8ddb-4b54-a5a0-178ae54223a6 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/136417582"}, "pid": "2273", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025454683"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/028259866"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "108744962"} 3 +2024-09-11 09:07:49.894887 2024-09-11 09:07:49.894891 7b1acf01-7068-4a45-86a3-59a16728999d {"pid": "7309", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025477095"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:00:58.325477 2024-09-11 09:07:49.960796 270ff378-e151-48d5-b13a-7c442a92682c {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1064724876"}, "pid": "895", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025504164"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/143120743"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "107995730"} 3 +2024-09-11 09:07:50.032743 2024-09-11 09:07:50.032747 d1d44568-1d0d-40b7-8de4-2dee9cbbc1cc {"pid": "7310", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025537929"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:50.092024 2024-09-11 09:07:50.092027 71c6402a-941a-4619-be32-fb44a0e0d385 {"pid": "7311", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025540309"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:50.15138 2024-09-11 09:07:50.151385 861e1e41-c159-400f-8819-017bfe3b055e {"pid": "7312", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025581873"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:50.213709 2024-09-11 09:07:50.213713 f9f1e7d9-fc30-483d-aaf5-433666c8212a {"pid": "7313", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025582144"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:50.272372 2024-09-11 09:07:50.272377 f174d58f-c1ff-475a-bf69-f7b85bb48692 {"pid": "7314", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025610247"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:50.328635 2024-09-11 09:07:50.328639 53692735-7c35-48b5-98bf-207adb2dd289 {"pid": "7315", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025614399"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:50.391277 2024-09-11 09:07:50.391281 a3e70f15-b4cf-40db-9f0b-53eb26743c29 {"pid": "7316", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025630450"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:50.448218 2024-09-11 09:07:50.44822 c7c343f8-7483-4830-9b37-9d4dda5792a2 {"pid": "7317", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025632565"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:50.509927 2024-09-11 09:07:50.509929 dd3650ba-9d7d-49d5-8fa6-937d097f4391 {"pid": "7318", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025639432"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:50.570226 2024-09-11 09:07:50.57023 19b7c803-3e1e-428e-a657-9e59895a7f17 {"pid": "7319", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025669520"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:50.629877 2024-09-11 09:07:50.629883 52acf8a7-599e-491f-b745-e2fb757eeeda {"pid": "7320", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025676459"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:50.690084 2024-09-11 09:07:50.690089 03569cef-104c-4e8e-99ac-6670a25482c1 {"pid": "7321", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025678092"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:50.754767 2024-09-11 09:07:50.754771 bc6a1c29-57de-424a-bfc3-bc454df7b978 {"pid": "7322", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025679166"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:50.820388 2024-09-11 09:07:50.820392 fdb366ba-e64f-47d2-91b0-b23fdd896ad8 {"pid": "7323", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025681987"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:50.952798 2024-09-11 09:07:50.952801 be733430-a566-4730-a811-8ec77f23f9ca {"pid": "7324", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025691379"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:51.072977 2024-09-11 09:07:51.07298 6f9021d5-ad17-4147-873c-c17c1729b1db {"pid": "7325", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025711026"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:51.135831 2024-09-11 09:07:51.135835 2eb8257a-99f5-483b-8324-709aa2c61c67 {"pid": "7326", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025712587"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:51.195202 2024-09-11 09:07:51.195206 88e1af09-20e0-488a-89b9-7b3871cc27aa {"pid": "7327", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025721356"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:51.256482 2024-09-11 09:07:51.256486 8b54c09f-99c5-48b2-b720-2bc16bf96272 {"pid": "7328", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025723446"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "102017527"} 1 +2024-09-11 09:07:51.318174 2024-09-11 09:07:51.318179 eb4966a2-87ee-4911-bb75-329cec0becb6 {"pid": "7329", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025730129"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:51.37446 2024-09-11 09:07:51.374463 34a0b200-b18a-44b5-a356-07d0b7a4e173 {"pid": "7330", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025745173"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:51.432965 2024-09-11 09:07:51.43297 18ecac2d-7c4d-47c5-9a97-c5cfa791dd93 {"pid": "7331", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025772014"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:51.486893 2024-09-11 09:07:51.486897 c90c2077-4186-47f7-aa3e-443cc07efa71 {"pid": "7332", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025773339"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:51.541753 2024-09-11 09:07:51.541758 003c3108-13af-4470-ac3d-1f91f2a11817 {"pid": "7333", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025780261"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:51.600088 2024-09-11 09:07:51.600092 98187e4e-21b5-47cb-a623-e98a25265a96 {"pid": "7334", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025785978"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:51.659029 2024-09-11 09:07:51.659034 6740a0e5-e9ac-4420-9eb3-7394ba96c4e5 {"pid": "7335", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025796144"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:51.713223 2024-09-11 09:07:51.713228 1bf5ca9e-9f1e-4890-96ec-255471edddb0 {"pid": "7336", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025797147"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:51.765666 2024-09-11 09:07:51.765669 b75b020f-ad2f-4baf-bb8a-3aaef8c65265 {"pid": "7337", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025804299"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:51.819208 2024-09-11 09:07:51.819214 6f21e2f7-861b-4392-bf69-eb17d392e009 {"pid": "7338", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025826851"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:51.875968 2024-09-11 09:07:51.875972 c4a58d09-c038-465a-90fc-49f352421b05 {"pid": "7339", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025833339"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:51.934143 2024-09-11 09:07:51.934146 e6cf145d-01d2-4ad4-b22a-05c55a3ab785 {"pid": "7340", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025835776"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:51.996195 2024-09-11 09:07:51.9962 b67dafa7-d326-4d2e-96c6-3f783c7b05d4 {"pid": "7341", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025837185"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:52.065309 2024-09-11 09:07:52.065312 e8dbc8a0-a442-4e49-8519-49fa00fee383 {"pid": "7342", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025845397"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:52.119268 2024-09-11 09:07:52.119273 987e14f5-4f80-4b55-b1d3-4eb7600fd539 {"pid": "7343", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025848952"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:52.177727 2024-09-11 09:07:52.177732 65e3fad6-29d6-4af9-884b-42155bc54659 {"pid": "7344", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025851501"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:52.23478 2024-09-11 09:07:52.234783 ba0102b1-9d80-464c-b07f-ffc8ad47b5e0 {"pid": "7345", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025884069"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:52.287472 2024-09-11 09:07:52.287475 8343474c-56e5-4e91-b853-f74dedee5457 {"pid": "7346", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025890846"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:52.340136 2024-09-11 09:07:52.34014 b305f169-ed91-41f7-ad84-b06cb732191a {"pid": "7347", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025893734"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:52.459994 2024-09-11 09:07:52.459999 49918a9d-92ef-439f-9ae8-f95cbc0a7024 {"pid": "7348", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025930633"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:52.512224 2024-09-11 09:07:52.512228 ef47bc4b-fb31-4a2a-889b-3ca0b390bc9c {"pid": "7349", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025932364"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:52.576034 2024-09-11 09:07:52.576039 bb45567e-d7c3-4016-ab42-7567bbe54432 {"pid": "7350", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025951707"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:52.636105 2024-09-11 09:07:52.636109 0edc3d4e-71d1-48ea-9050-0e52d710b82b {"pid": "7351", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025956739"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:52.695004 2024-09-11 09:07:52.695008 6b596a02-f63b-4ff7-a67b-3d86dd2eb488 {"pid": "7352", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025958419"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:52.75516 2024-09-11 09:07:52.755163 ca874ce8-17ef-4046-b2af-5006d816da6a {"pid": "7353", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025965491"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:52.816723 2024-09-11 09:07:52.816728 836a8713-bbb7-42f6-bf27-d6374af4084c {"pid": "7354", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025967759"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:52.868914 2024-09-11 09:07:52.868916 85413956-4243-4c3e-8fe3-0172dbcf4840 {"pid": "7355", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025976492"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:53.001041 2024-09-11 09:07:53.001044 ece91251-9f01-41ea-a2a2-14dc01dff420 {"pid": "7356", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A025987021"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1046155284918387062863"} 1 +2024-09-11 09:07:53.071982 2024-09-11 09:07:53.071986 323779b6-4414-4ce2-a377-379a78587050 {"pid": "7357", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026005729"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:53.12584 2024-09-11 09:07:53.125844 429454c9-9f41-4a26-987f-cc66a58d62f4 {"pid": "7358", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026012565"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:53.181196 2024-09-11 09:07:53.1812 10020e62-e523-4494-8f6e-1eac5e4a547d {"pid": "7359", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026015516"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:53.236145 2024-09-11 09:07:53.236148 25b753f9-7f0b-4cdc-89d9-6b49f33b886c {"pid": "7360", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026028252"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:53.286783 2024-09-11 09:07:53.286786 b5a34fad-2513-4078-bc47-7204c12e4012 {"pid": "7361", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026028546"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:53.338198 2024-09-11 09:07:53.338203 27bc0535-6b1d-4d08-8f0a-a166d73db2fc {"pid": "7362", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026050339"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:53.391431 2024-09-11 09:07:53.391435 0823610e-0b6c-42e6-ac31-2f997e1180a1 {"pid": "7363", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026066357"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:53.44597 2024-09-11 09:07:53.445975 f8318701-6705-4c02-bea6-1b4d0ebf8477 {"pid": "7364", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026085043"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:53.502119 2024-09-11 09:07:53.502122 628df882-d85a-4ff3-939d-4a70744b69d7 {"pid": "7365", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026091329"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:53.556824 2024-09-11 09:07:53.556827 a112c996-a462-4e0c-918f-4e3879507e5e {"pid": "7366", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026115092"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:53.614132 2024-09-11 09:07:53.614136 855b457a-e38a-4349-b988-b9a4efa79881 {"pid": "7367", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026120339"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:53.671234 2024-09-11 09:07:53.671237 0c33a338-032a-4fc3-b67b-e43edd699ca3 {"pid": "7368", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026122888"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:53.798783 2024-09-11 09:07:53.798787 3bd2303a-d7ff-4c7f-93cc-9642d407e356 {"pid": "7369", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026129158"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:53.858158 2024-09-11 09:07:53.85816 70dabd01-263f-4a7e-a0d9-3e835ca86c71 {"pid": "7370", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026132029"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:53.913096 2024-09-11 09:07:53.913101 02771bf5-5f62-43ee-b518-4df8cf0c3bcb {"pid": "7371", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026144791"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:53.971339 2024-09-11 09:07:53.971344 25d25c58-0b8d-473b-93a2-9cf4088ea1ae {"pid": "7372", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026155985"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1061155284807387060537"} 1 +2024-09-11 09:07:54.029626 2024-09-11 09:07:54.029629 b8d255ae-c132-464a-9416-48574ded816e {"pid": "7373", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026164040"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:54.08473 2024-09-11 09:07:54.084734 28baf04d-711e-44b1-8d07-8a2ac9578bc1 {"pid": "7374", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026168031"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:54.137276 2024-09-11 09:07:54.137279 e9da2998-0e80-4b1f-a655-9c8cb8141240 {"pid": "7375", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026168151"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:54.19113 2024-09-11 09:07:54.191134 403a6ea3-0427-40a8-b53c-3ca378bbe184 {"pid": "7376", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026169859"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:54.244727 2024-09-11 09:07:54.24473 0b42cdde-0619-4590-84ae-bb18cf6ce5ba {"pid": "7377", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026174573"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:54.363099 2024-09-11 09:07:54.363103 6f880033-66bc-410c-a746-85173026ff8d {"pid": "7378", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026432303"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:54.423321 2024-09-11 09:07:54.423325 5baa4fba-565f-496e-b8c4-9d330bbb8349 {"pid": "7379", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026434702"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:54.504397 2024-09-11 09:07:54.504399 90c0c1b6-352a-4f19-b496-6eed391465a8 {"pid": "7380", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026439717"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:54.565996 2024-09-11 09:07:54.565999 60007e9b-7b2f-43c8-b0ba-ccb0dc63fbcb {"pid": "7381", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026450966"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:54.627652 2024-09-11 09:07:54.627655 162eaaf0-abfc-4bea-9e4c-eba8e316c9f7 {"pid": "7382", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026459182"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:54.687144 2024-09-11 09:07:54.687147 c2f43cd3-d6b3-4de6-8300-af2804698da9 {"pid": "7383", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026462220"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:54.742799 2024-09-11 09:07:54.742803 bbf526c0-c85f-40bb-8d5d-adb92e585548 {"pid": "7384", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026466905"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:54.798457 2024-09-11 09:07:54.798461 e7fdf32d-84a4-4407-9061-7684d75ca45a {"pid": "7385", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026474353"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:54.858145 2024-09-11 09:07:54.858148 b685c4bc-961b-40c9-b455-360a663bdede {"pid": "7386", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026534148"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:54.911299 2024-09-11 09:07:54.911302 25f5948b-5fd3-4e58-94b2-e20ec7b7a9ac {"pid": "7387", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026548298"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:54.968778 2024-09-11 09:07:54.968782 eb548608-9a90-442b-8e4f-415e8f010169 {"pid": "7388", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026554111"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:55.033045 2024-09-11 09:07:55.033047 d19a0ac5-c930-45f0-b260-6cfb77a1eea7 {"pid": "7389", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026558985"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:55.092424 2024-09-11 09:07:55.092429 541c12bf-576e-439f-8db7-fb07e48ee8a0 {"pid": "7390", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026586322"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:55.145425 2024-09-11 09:07:55.145429 c2e571b0-050d-494f-bdd1-95ff2cd3ebfe {"pid": "7391", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026596122"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:55.19965 2024-09-11 09:07:55.199652 090bb612-f140-413f-92ea-427141b12d38 {"pid": "7392", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026608425"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:55.309106 2024-09-11 09:07:55.309109 3b1377ad-7dde-4fa2-ac5c-3cec5cbdda37 {"pid": "7393", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026614309"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:55.364941 2024-09-11 09:07:55.364947 9fb96da5-e11f-423b-92ea-5293483ff5a2 {"pid": "7394", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026614954"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:55.417693 2024-09-11 09:07:55.417699 5b21a366-8d7c-42f6-9ca9-06912404c759 {"pid": "7395", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026623687"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:55.469279 2024-09-11 09:07:55.469282 7d9ff069-53b1-4893-8f9f-3a4d2cd4278e {"pid": "7396", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026636855"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:55.528705 2024-09-11 09:07:55.52871 3131b4bc-ef3c-4b25-a347-75de4defd34b {"pid": "7397", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026642855"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:55.585367 2024-09-11 09:07:55.585373 f097dc39-bcb5-4791-90d1-f441be120f91 {"pid": "7398", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026652068"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:55.64944 2024-09-11 09:07:55.649445 697277cb-f228-4e73-a40f-87094825c68e {"pid": "7399", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026654612"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:55.704594 2024-09-11 09:07:55.704597 fbe5fc23-7297-4d9a-a0fe-84517c13de8c {"pid": "7400", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026685590"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:55.765586 2024-09-11 09:07:55.765588 fb149e56-937b-4454-a677-02511a38e84b {"pid": "7401", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026722774"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:55.819457 2024-09-11 09:07:55.819462 d4f45a16-e510-40c8-8a3e-e5b18d9251e5 {"pid": "7402", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026723222"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:55.874858 2024-09-11 09:07:55.874862 ca0564a5-501e-47b7-bf87-666625174170 {"pid": "7403", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026724664"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:55.928147 2024-09-11 09:07:55.928151 4cb93b9d-78a7-4652-b103-727534a30eca {"pid": "7404", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026736945"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:55.983447 2024-09-11 09:07:55.983451 b2276233-d833-4251-b7c4-c882f8aadddc {"pid": "7405", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026740856"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:56.042095 2024-09-11 09:07:56.0421 dff88ee9-ac8a-4aa8-a170-4a7395e0ae28 {"pid": "7406", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026741839"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:56.092235 2024-09-11 09:07:56.09226 5538f7ef-c298-4ce9-a87c-7b3cbdcf6c10 {"pid": "7407", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026748269"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:56.145206 2024-09-11 09:07:56.14521 8665aba0-0b39-4cde-b4a7-4c525dd88ebe {"pid": "7408", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026774834"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:56.198857 2024-09-11 09:07:56.19886 96a6a98a-e541-412f-8e99-c23fd2e67e29 {"pid": "7409", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026783817"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:56.256834 2024-09-11 09:07:56.256837 4a93e584-b884-48ed-a303-caac2127c150 {"pid": "7410", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026785791"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:56.309483 2024-09-11 09:07:56.309487 0a08d6e7-35b0-4e98-8e9a-3bb79a346be8 {"pid": "7411", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026813025"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:56.361981 2024-09-11 09:07:56.361985 2d8fd49f-d4cd-4729-ac6a-6ff454522677 {"pid": "7412", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026828697"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:56.420224 2024-09-11 09:07:56.420228 f423f51b-f96f-4682-8e52-344eeac33758 {"pid": "7413", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026835388"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:56.476827 2024-09-11 09:07:56.476831 b8c04fec-8b45-483a-ac47-e4b3c8ac28cd {"pid": "7414", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026839306"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:56.537353 2024-09-11 09:07:56.537356 8e34dd29-0a93-4f93-a8be-fcdeebe9a81e {"pid": "7415", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026846628"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:56.590899 2024-09-11 09:07:56.590902 abe71c1e-22de-4e1f-98dc-e24a982b99ba {"pid": "7416", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026847441"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:56.646849 2024-09-11 09:07:56.646851 bac6f3b8-d030-4150-b4d0-afc1228ed274 {"pid": "7417", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026864091"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:56.701176 2024-09-11 09:07:56.701179 cc722f7d-bdbe-45bf-a75c-9855e30aeb1a {"pid": "7418", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026894353"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:56.755352 2024-09-11 09:07:56.755355 2a685342-d777-468a-b891-0a8bf350e395 {"pid": "7419", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026898077"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:56.81161 2024-09-11 09:07:56.811615 f878f2b1-daf9-4f7e-b9d7-147ce9928626 {"pid": "7420", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026907243"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:56.866044 2024-09-11 09:07:56.866047 5ba6c263-bbc3-4b6e-8858-299d8d1441e3 {"pid": "7421", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026919795"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:56.917034 2024-09-11 09:07:56.917036 99c0aec9-a205-440f-ad51-9ab8dceacc3d {"pid": "7422", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026951773"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:56.967637 2024-09-11 09:07:56.967641 e8d811b3-6b03-4e56-be84-da0c1c99fb1b {"pid": "7423", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026952894"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:57.021788 2024-09-11 09:07:57.021791 0fca2881-c6e3-4c92-a272-fb016b3ef0e0 {"pid": "7424", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026958334"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:57.104169 2024-09-11 09:07:57.104173 e2ec750d-e667-4bf4-bb5e-6d4385c368e0 {"pid": "7425", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026964890"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:57.165248 2024-09-11 09:07:57.165252 262c87e4-dc08-4284-8972-4b8fbd939c31 {"pid": "7426", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A026978679"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:57.293597 2024-09-11 09:07:57.293601 b3fccc31-aea2-45d0-aabe-4f6cc00998a3 {"pid": "7427", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027068066"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:57.346563 2024-09-11 09:07:57.346567 7086fc35-7514-457a-aa66-ce35a438930d {"pid": "7428", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027089118"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:57.399719 2024-09-11 09:07:57.399722 f58be375-adec-4d40-8c93-2bdbfec68413 {"pid": "7429", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027092266"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:57.454737 2024-09-11 09:07:57.454741 1d60194d-3020-4dba-8afc-49a879454605 {"pid": "7430", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027102482"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:57.508517 2024-09-11 09:07:57.508521 648d9312-9749-47ae-917c-f63daee94fde {"pid": "7431", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027103123"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:57.563115 2024-09-11 09:07:57.563121 b7c88cdc-7a3c-4693-bf0b-e1ebb1ec2041 {"pid": "7432", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027116952"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:57.620797 2024-09-11 09:07:57.6208 1da3bfc4-0ada-47e0-a1a4-6983c28590e8 {"pid": "7433", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027118711"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:57.68238 2024-09-11 09:07:57.682384 8e227a3e-b62c-441c-a42d-1690a5b28f6b {"pid": "7434", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027119572"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:57.741951 2024-09-11 09:07:57.741955 c965fe3a-5ddf-42d7-9acb-fdff82afea47 {"pid": "7435", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027138153"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:57.797912 2024-09-11 09:07:57.797917 1aebe5f2-8794-45ce-aee9-afb4e58db4f4 {"pid": "7436", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027139051"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:57.853411 2024-09-11 09:07:57.853417 da1f1955-4a6a-4877-b87e-dbbbde439aeb {"pid": "7437", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027149145"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:57.91186 2024-09-11 09:07:57.911864 40a8cdbb-780e-41d0-b74a-c9ea508d88ce {"pid": "7438", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027149446"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:57.972281 2024-09-11 09:07:57.972285 3dca2209-c896-4436-bb73-fd09a75fffc9 {"pid": "7439", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027157860"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:58.034441 2024-09-11 09:07:58.034446 44ea6f6e-bec7-4aa7-8791-affa386e1e5b {"pid": "7440", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027180250"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:58.097032 2024-09-11 09:07:58.097037 ac548464-bbb5-497d-a80a-d4b01c8988fb {"pid": "7441", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027184035"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:02:14.096524 2024-09-11 09:07:58.159823 cedfa4e8-e5b3-4240-be72-81d35f311a79 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/131898922"}, "pid": "2182", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027191227"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/123474825"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "103886702"} 3 +2024-09-11 09:07:58.220853 2024-09-11 09:07:58.220858 9cdb36b4-0281-42a1-ae08-c60af293fadc {"pid": "7442", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027194665"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1037144647704565498129"} 1 +2024-09-11 09:07:58.274223 2024-09-11 09:07:58.274227 feccf341-137c-4502-b9eb-1f78c4a6f032 {"pid": "7443", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027201602"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:58.328327 2024-09-11 09:07:58.328329 e13eeed0-a897-4207-ae32-87f2c48ce185 {"pid": "7444", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027205240"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:58.39643 2024-09-11 09:07:58.396435 e5ac3d29-be4c-4184-b49e-e145c900e9cd {"pid": "7445", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027205480"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:58.458707 2024-09-11 09:07:58.458711 68938e74-c86e-41b9-9d84-ab8ebcc0e20b {"pid": "7446", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027220118"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:58.517002 2024-09-11 09:07:58.517005 6f84dff6-5a97-4545-b8d9-eff2437bbe4e {"pid": "7447", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027221608"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:58.573599 2024-09-11 09:07:58.573602 30909bb9-6ecc-4489-b57b-d435a35d8b0c {"pid": "7448", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027237908"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:58.63109 2024-09-11 09:07:58.631094 7908ebcc-c53f-4496-9383-fe67b7536b76 {"pid": "7449", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027289406"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:58.693758 2024-09-11 09:07:58.693763 87469a06-6162-42bf-b5e5-7919789cc3f5 {"pid": "7450", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027297912"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:58.757182 2024-09-11 09:07:58.757185 aef7b064-7cd0-490c-aef6-41429d9c9d40 {"pid": "7451", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027302854"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:58.813599 2024-09-11 09:07:58.813605 0d38f55a-aa99-4fb9-8cf3-5cdbf49c4cf7 {"pid": "7452", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027307709"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:58.872181 2024-09-11 09:07:58.872183 4f620965-306a-4375-8aec-79788bbeefa2 {"pid": "7453", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027316896"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:58.928807 2024-09-11 09:07:58.928811 aab20a1a-688a-43ce-83c3-575437dc88d9 {"pid": "7454", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027333148"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:58.986274 2024-09-11 09:07:58.986279 22c255b9-031e-482d-829a-25e55224d8b9 {"pid": "7455", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027339987"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:59.042129 2024-09-11 09:07:59.042133 663a295a-afcd-446c-b6dc-c42cda4a04ed {"pid": "7456", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027342850"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:59.096446 2024-09-11 09:07:59.096451 6c59abd7-3cb1-4a96-a912-5ee7201c168c {"pid": "7457", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027355955"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:59.150078 2024-09-11 09:07:59.150081 dc1cfc68-22d7-4411-bee8-1549abcae165 {"pid": "7458", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027394831"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:59.204187 2024-09-11 09:07:59.20419 d8f7760e-c47f-4198-80a5-bbf2ca2ec597 {"pid": "7459", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027401068"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:59.258511 2024-09-11 09:07:59.258514 8abaf850-2d93-4ae4-a356-4a5d513645fb {"pid": "7460", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027420393"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:59.314618 2024-09-11 09:07:59.314624 66f293ed-dff7-45ac-96b4-bec3f3536e05 {"pid": "7461", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027429159"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:59.374084 2024-09-11 09:07:59.374088 4d63e647-8375-4b7f-b68f-f9886a1d989a {"pid": "7462", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027433246"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:59.435233 2024-09-11 09:07:59.435237 8f1ebafc-b71a-4940-b605-bcad472d0bf3 {"pid": "7463", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027441359"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:59.490844 2024-09-11 09:07:59.490848 927d2ca6-6768-4ec9-87b4-30ed9b7c1403 {"pid": "7464", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027443542"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:59.554696 2024-09-11 09:07:59.554701 0263e094-79cf-460c-af44-f0feb0ff0431 {"pid": "7465", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027444942"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:59.61247 2024-09-11 09:07:59.612474 34d9ae8c-c820-4022-992a-dfb031536fe5 {"pid": "7466", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027445987"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:59.670712 2024-09-11 09:07:59.670715 2bf8a50e-5eac-4f41-8fb5-842bf83d5c20 {"pid": "7467", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027448978"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:59.786468 2024-09-11 09:07:59.786472 2d07eab2-a8aa-408b-bba6-fe499e5573ea {"pid": "7468", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027457648"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:59.841322 2024-09-11 09:07:59.841326 f07bd84c-fcb8-4929-8889-3f74ff836e8b {"pid": "7469", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027468424"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:59.894122 2024-09-11 09:07:59.894126 ff234e61-1d4d-4161-9c6d-902b491178a3 {"pid": "7470", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027470672"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:07:59.949423 2024-09-11 09:07:59.949426 d300504a-171f-4d6a-909f-aea6a8a43012 {"pid": "7471", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027477458"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:00.0027 2024-09-11 09:08:00.002704 c2a836b3-1bce-441d-a6df-6b892ae7f987 {"pid": "7472", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027477867"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:00.059651 2024-09-11 09:08:00.059656 a5644ce1-3b86-4db3-b771-2d16ba55b34e {"pid": "7473", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027483344"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:00.115097 2024-09-11 09:08:00.115101 b68b6f50-2a8f-4b8d-859a-8da82ca51e5b {"pid": "7474", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027488596"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:00.171907 2024-09-11 09:08:00.17191 005a6088-f633-4fe0-80b7-04c2eec9cb31 {"pid": "7475", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027490804"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:00.234106 2024-09-11 09:08:00.234109 216c756d-fa62-4951-a2e8-541080c4436b {"pid": "7476", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027498782"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:00.284608 2024-09-11 09:08:00.284611 8c5281eb-198b-4aab-a9b8-5323b8ff6a65 {"pid": "7477", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027507344"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:00.339314 2024-09-11 09:08:00.339318 ebada200-fb68-4164-adc3-75e2cb678366 {"pid": "7478", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027508686"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:00.399417 2024-09-11 09:08:00.399422 aaac0879-0255-409e-be10-f221db5b4543 {"pid": "7479", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027518436"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:00.470889 2024-09-11 09:08:00.470894 04da0012-eec9-4977-824d-b3d8cbcf8af1 {"pid": "7480", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027523029"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:00.525552 2024-09-11 09:08:00.525557 8ac237a4-6de4-4384-9eb7-bbeea30f439e {"pid": "7481", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027523482"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:00.580308 2024-09-11 09:08:00.580313 bfc25d5b-9ce0-4210-9085-87a167f7f203 {"pid": "7482", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027543659"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:00.640142 2024-09-11 09:08:00.640144 6883000f-e615-4e0c-8e8a-54e061ef3313 {"pid": "7483", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027544307"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:00.700754 2024-09-11 09:08:00.700759 202e9304-03fb-44b3-bf47-3aa4ef7c6e40 {"pid": "7484", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027545859"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:00.769676 2024-09-11 09:08:00.769679 96630cb3-0b4a-44d4-9bd2-536577b230a8 {"pid": "7485", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027565229"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:00.823742 2024-09-11 09:08:00.823745 4180f120-2545-4ad7-89b3-3b09bfbd0efd {"pid": "7486", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027568451"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:00.937936 2024-09-11 09:08:00.937941 2c7eaa32-05f6-4ccc-abdc-72ede9fb02f8 {"pid": "7487", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027587471"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:00.994355 2024-09-11 09:08:00.994358 859913a1-6a99-4c2c-abc1-386209cc10c8 {"pid": "7488", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027588056"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:01.055043 2024-09-11 09:08:01.055047 c695df60-44c8-4cef-bf4e-0ddb39f1bf13 {"pid": "7489", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027604812"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:01.117101 2024-09-11 09:08:01.117104 82746e7e-cab0-4bd7-8cf2-a196b4b1ab8d {"pid": "7490", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027608462"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:01.172397 2024-09-11 09:08:01.1724 5011a399-2282-42e2-8b3c-0eb7f07eaa30 {"pid": "7491", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027643343"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:05:17.905084 2024-09-11 09:08:01.231678 cf34a3f7-f0d1-4fe9-ba0a-f423abbd580c {"pid": "4968", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027644407"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/19107425X"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1120145857084022921227"} 2 +2024-09-11 09:08:01.288337 2024-09-11 09:08:01.28834 3329b24d-e02e-4a7f-b59b-a8f27c8eca82 {"pid": "7492", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027649761"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:01.34012 2024-09-11 09:08:01.340124 02911907-fa35-4dd2-986b-3514082aace8 {"pid": "7493", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027652944"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:01.395893 2024-09-11 09:08:01.395899 b6b46af0-9d94-40cd-9ad7-ada4d204c9f0 {"pid": "7494", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027653000"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:01.458082 2024-09-11 09:08:01.458086 4945dec3-36b8-4562-8d18-484f44453d38 {"pid": "7495", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027655212"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:01.511501 2024-09-11 09:08:01.511503 d60d7347-8b3f-4213-aec9-23ca69aceb3a {"pid": "7496", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027661275"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:01.567524 2024-09-11 09:08:01.567528 a280bc10-3ce0-40fb-9c36-bdac1258cf60 {"pid": "7497", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027664950"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:01.625987 2024-09-11 09:08:01.625991 d91cdf96-2db4-4ac8-9b36-3807f8b3d255 {"pid": "7498", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027667116"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:01.686592 2024-09-11 09:08:01.686597 5b74d343-d1a1-4760-88a5-c7cc40614fcb {"pid": "7499", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027688556"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:42.055577 2024-09-11 09:08:01.747798 cf568abd-8f66-41e1-86a4-bee5a9a36200 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1177717379"}, "pid": "1628", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027698830"}, "type": "bf:Person", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/225803658"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "10148812821045212032"} 3 +2024-09-11 09:08:01.835944 2024-09-11 09:08:01.835949 3d1a4d59-7873-4420-b930-18d49a7cc711 {"pid": "7500", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027716766"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:01.892545 2024-09-11 09:08:01.892549 53483552-afee-4279-bdea-4e1405862573 {"pid": "7501", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027736928"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:01.947929 2024-09-11 09:08:01.947933 79a82de9-c65a-4cc0-848e-bf9a72fb39b8 {"pid": "7502", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027737227"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:02.001553 2024-09-11 09:08:02.001559 a802ffa2-fcfc-40fe-a4d3-4f981b0d6a32 {"pid": "7503", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027737968"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:37.352833 2024-09-11 09:08:02.122881 277aac5f-41cb-43a1-8fcd-3921a1626e14 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1164710923"}, "pid": "1548", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027747343"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1109155284791687061613"} 2 +2024-09-11 09:08:02.177731 2024-09-11 09:08:02.177735 9126eb03-78df-42d6-9d94-2e0ef4acd2a8 {"pid": "7504", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027763919"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:02.23087 2024-09-11 09:08:02.230873 14a3b309-334b-4314-8991-e6ce8cee2c4f {"pid": "7505", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027766736"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:02.282791 2024-09-11 09:08:02.282796 c77eedce-f8cd-484a-9b09-665be0f5956b {"pid": "7506", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027807323"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:02.340809 2024-09-11 09:08:02.340813 a1039998-3fb5-41ed-9c27-43755fa15cc2 {"pid": "7507", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027811966"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:02.393342 2024-09-11 09:08:02.393346 0bd847b1-4ad4-46c2-8e04-54c2a44bbc62 {"pid": "7508", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027817940"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:02.444482 2024-09-11 09:08:02.444486 37b30450-1e0d-478d-8527-6484df682126 {"pid": "7509", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A027841998"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:02.5144 2024-09-11 09:08:02.514405 4e77ef69-44d6-47a5-88fc-70defb75b59a {"pid": "7510", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A028081955"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:02.570432 2024-09-11 09:08:02.570435 739c2434-1771-4214-8cd3-1fc6f2bcb7a3 {"pid": "7511", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A028167226"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:02.625169 2024-09-11 09:08:02.625173 18c19fba-0935-458d-8574-2c06532de679 {"pid": "7512", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A028177834"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:02.679297 2024-09-11 09:08:02.679299 66f509e0-ae52-4930-8f1a-f4634470a2fc {"pid": "7513", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A028331435"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:02.736324 2024-09-11 09:08:02.736327 55ef8766-9a48-47d6-9cb7-1647460c3eda {"pid": "7514", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A028347593"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:02.797842 2024-09-11 09:08:02.797847 b1f88f51-6539-4229-9be3-9809bd35e79f {"pid": "7515", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A028355646"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:02.849951 2024-09-11 09:08:02.849954 814a7d72-6c0c-4edd-949b-2f15226f7c2a {"pid": "7516", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A028357568"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:02.905391 2024-09-11 09:08:02.905393 2454b5c8-9135-4ef4-b8f7-21b97aefe535 {"pid": "7517", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A028447819"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:02.95976 2024-09-11 09:08:02.959762 c7caf972-f665-4aca-9605-a6ce07262dc1 {"pid": "7518", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A028520087"}, "type": "bf:Organisation", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:55.076312 2024-09-11 09:08:03.019626 2193d035-cdf4-4b03-bec0-6bc3f29eea22 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1220237183"}, "pid": "1850", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A028529691"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "104160425256468320004"} 2 +2024-09-11 09:08:03.21889 2024-09-11 09:08:03.218893 9fcfd9d8-40fd-44ad-83c2-c9531fdc902d {"pid": "7519", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A028868962"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:01:03.786395 2024-09-11 09:08:03.281913 4ccab8b5-0fab-4d7d-9b27-da2a20866df5 {"gnd": {"$ref": "https://mef.rero.ch/api/agents/gnd/1085836894"}, "pid": "987", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A028986344"}, "type": "bf:Organisation", "idref": {"$ref": "https://mef.rero.ch/api/agents/idref/251123022"}, "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json", "viaf_pid": "1022145857003022921052"} 3 +2024-09-11 09:08:03.343089 2024-09-11 09:08:03.343092 ed204385-90ef-4973-9bd2-9dbd8a69515c {"pid": "7520", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A028989262"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:03.401047 2024-09-11 09:08:03.401052 c80372ca-1a94-48ea-8c58-647bd64d37a4 {"pid": "7521", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A029002736"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 +2024-09-11 09:08:03.455206 2024-09-11 09:08:03.455208 03dac4a3-9bd2-43c5-9d56-a469b7d94987 {"pid": "7522", "rero": {"$ref": "https://mef.rero.ch/api/agents/rero/A029004750"}, "type": "bf:Person", "$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} 1 diff --git a/data/mef_pidstore.csv b/data/mef_pidstore.csv index 299e9c36..ae4afbca 100644 --- a/data/mef_pidstore.csv +++ b/data/mef_pidstore.csv @@ -1,7719 +1,11795 @@ -2023-07-08 08:13:33.118129 2023-07-08 08:13:33.118137 mef 1 R rec d6f96d30-585a-4544-83ed-a7e91f468bda -2023-07-08 08:13:33.20827 2023-07-08 08:13:33.208274 mef 2 R rec 7ba78757-f2b0-47c6-aec9-5ed44c46a537 -2023-07-08 08:13:33.270423 2023-07-08 08:13:33.270428 mef 3 R rec 9e850636-3079-4a12-a5e5-d65fead16803 -2023-07-08 08:13:33.34971 2023-07-08 08:13:33.34972 mef 4 R rec 019039c5-b410-4c7a-821c-a1c1cbff628b -2023-07-08 08:13:33.442863 2023-07-08 08:13:33.442872 mef 5 R rec 6a4cafc8-8b08-424a-93c1-fff8754f5471 -2023-07-08 08:13:33.541039 2023-07-08 08:13:33.541049 mef 6 R rec 3bdf9251-691c-4bb2-8866-4238e348c41e -2023-07-08 08:13:33.643383 2023-07-08 08:13:33.643398 mef 7 R rec 1a487cf2-ad3c-43e9-ae1b-c289c42d7ac0 -2023-07-08 08:13:33.737215 2023-07-08 08:13:33.737226 mef 8 R rec f32e5413-e724-4165-972d-32a15024d7f6 -2023-07-08 08:13:33.837823 2023-07-08 08:13:33.837833 mef 9 R rec 1c806a27-f213-4ae6-bc76-64e226abcb6d -2023-07-08 08:13:33.935663 2023-07-08 08:13:33.935673 mef 10 R rec a1fb9ccd-e3df-4b76-b0b0-2cd960055280 -2023-07-08 08:13:34.024807 2023-07-08 08:13:34.024818 mef 11 R rec 6fc6a60d-f425-471a-a8bc-4f49ccc40d5d -2023-07-08 08:13:34.119506 2023-07-08 08:13:34.119518 mef 12 R rec 74e9418d-5de5-443e-a923-0dd3b19c4389 -2023-07-08 08:13:34.229945 2023-07-08 08:13:34.22996 mef 13 R rec 9d5c668c-893a-471c-aa19-33137c95a0d6 -2023-07-08 08:13:34.330271 2023-07-08 08:13:34.330283 mef 14 R rec 282d0af0-3f72-43cb-96ce-9dc9743b3e56 -2023-07-08 08:13:34.447137 2023-07-08 08:13:34.447142 mef 15 R rec c43b9ddc-7c01-485f-8479-c375e8543271 -2023-07-08 08:13:34.50824 2023-07-08 08:13:34.508245 mef 16 R rec 12e7313f-58fa-42b1-b529-fde26ca10599 -2023-07-08 08:13:34.582059 2023-07-08 08:13:34.582069 mef 17 R rec 59bccd7b-2b9d-4211-b8dd-18dbd92d56fe -2023-07-08 08:13:34.6748 2023-07-08 08:13:34.674811 mef 18 R rec 0807a0c7-9aa2-4336-bfc6-6e49de3c2806 -2023-07-08 08:13:34.759454 2023-07-08 08:13:34.759464 mef 19 R rec 3c1a2722-6719-4a51-b98d-2673f3af2811 -2023-07-08 08:13:34.856747 2023-07-08 08:13:34.856761 mef 20 R rec 23f7c95a-affe-40c2-aa17-c7bfe27e218e -2023-07-08 08:13:34.943435 2023-07-08 08:13:34.943446 mef 21 R rec f1240785-771c-46d4-828a-584a984839b5 -2023-07-08 08:13:35.037623 2023-07-08 08:13:35.037633 mef 22 R rec 9e1f5d84-f543-417c-8abf-ff2e7add1cb4 -2023-07-08 08:13:35.133386 2023-07-08 08:13:35.133396 mef 23 R rec d805d370-ec15-4cb0-bb2e-121774e8b240 -2023-07-08 08:13:35.233411 2023-07-08 08:13:35.233424 mef 24 R rec 29498321-159e-4881-91e1-bf027f8d5023 -2023-07-08 08:13:35.331875 2023-07-08 08:13:35.331884 mef 25 R rec b0bd9e1b-92a1-4a04-ab9c-687166b48971 -2023-07-08 08:13:35.430346 2023-07-08 08:13:35.430359 mef 26 R rec 40ee3783-165b-4d60-a5e4-a32d83aa3de6 -2023-07-08 08:13:35.522391 2023-07-08 08:13:35.522403 mef 27 R rec 251e0171-9f19-485c-b3bb-5b75084ecaba -2023-07-08 08:13:35.618872 2023-07-08 08:13:35.618883 mef 28 R rec 278b93f1-a363-4519-bf1c-c4bf31a97020 -2023-07-08 08:13:35.722562 2023-07-08 08:13:35.722578 mef 29 R rec 61617904-ee71-43ef-9613-6855e93a1040 -2023-07-08 08:13:35.815953 2023-07-08 08:13:35.815967 mef 30 R rec 57ef34d3-e7ce-41bb-ab77-c034e4e111d5 -2023-07-08 08:13:35.919582 2023-07-08 08:13:35.919595 mef 31 R rec 31fc7ebf-7c00-407c-a040-ff855d532fac -2023-07-08 08:13:36.049325 2023-07-08 08:13:36.049335 mef 32 R rec 0c4a11eb-44cf-4da4-b963-5e02c4b9faf6 -2023-07-08 08:13:36.162942 2023-07-08 08:13:36.162952 mef 33 R rec df8c0ecd-80e1-4f0e-af00-c47c8cdb7f5d -2023-07-08 08:13:36.279955 2023-07-08 08:13:36.279965 mef 34 R rec 1330c7d1-59b8-4bc8-9d78-cb92596440a4 -2023-07-08 08:13:36.387219 2023-07-08 08:13:36.38723 mef 35 R rec a2831b37-ecf5-4d70-9970-cd06b5510b52 -2023-07-08 08:13:36.514671 2023-07-08 08:13:36.514682 mef 36 R rec fc3baa26-431e-4f0c-8d6f-e7417b8ca74d -2023-07-08 08:13:36.632972 2023-07-08 08:13:36.632985 mef 37 R rec dea0d906-9843-499c-be86-63f0a68d0d3f -2023-07-08 08:13:36.756639 2023-07-08 08:13:36.756651 mef 38 R rec 696becc7-bf20-415a-a9f8-30bd054efaf5 -2023-07-08 08:13:36.874581 2023-07-08 08:13:36.874594 mef 39 R rec 78507037-93e9-4298-b7d9-0110224bc889 -2023-07-08 08:13:36.975795 2023-07-08 08:13:36.975805 mef 40 R rec dddd1a40-c6ef-4626-9915-319cf890e24a -2023-07-08 08:13:37.083769 2023-07-08 08:13:37.083779 mef 41 R rec fc5708eb-ee0d-4cdc-a74c-aea0bc3817ba -2023-07-08 08:13:37.208088 2023-07-08 08:13:37.208101 mef 42 R rec e0260df3-c2d9-4849-ba7a-7dbd5a5071ee -2023-07-08 08:13:37.325385 2023-07-08 08:13:37.325395 mef 43 R rec 1724ab6b-d8f8-472f-a671-ca243c8803f2 -2023-07-08 08:13:37.427203 2023-07-08 08:13:37.427213 mef 44 R rec ff743bc1-a34e-43f6-84ab-1b427efffe47 -2023-07-08 08:13:37.544529 2023-07-08 08:13:37.544541 mef 45 R rec 226cd7a4-f8e3-4227-9b72-01effe255fe7 -2023-07-08 08:13:37.652557 2023-07-08 08:13:37.652569 mef 46 R rec b77be20d-e9eb-4d8a-aa94-2b33a058694c -2023-07-08 08:13:37.743228 2023-07-08 08:13:37.743238 mef 47 R rec 42b7714d-1cbe-4044-8f5d-d9b6c3b616b9 -2023-07-08 08:13:37.83621 2023-07-08 08:13:37.836222 mef 48 R rec a42838f1-e729-4d2a-b542-4f68b13581cf -2023-07-08 08:13:37.928631 2023-07-08 08:13:37.928642 mef 49 R rec 72d717e0-e5c4-4f5e-a688-5c20cbeb237d -2023-07-08 08:13:38.032378 2023-07-08 08:13:38.032388 mef 50 R rec b2ed46de-56f1-40df-9a04-bfb6a40727fa -2023-07-08 08:13:38.134377 2023-07-08 08:13:38.134392 mef 51 R rec 0f453aca-4eae-4a8b-9184-8ae4247075d3 -2023-07-08 08:13:38.244179 2023-07-08 08:13:38.244192 mef 52 R rec 7fe04ce3-57e5-4f43-a8d8-962c6aec6586 -2023-07-08 08:13:38.353205 2023-07-08 08:13:38.353215 mef 53 R rec faaa1353-54d3-495e-9127-dbb5b207fe95 -2023-07-08 08:13:38.46399 2023-07-08 08:13:38.464009 mef 54 R rec 2835adb7-8341-4e25-9d2f-d1b76d9a5c8b -2023-07-08 08:13:38.571164 2023-07-08 08:13:38.571177 mef 55 R rec bc9c3c33-c991-4f1a-8b68-17c15b054a6d -2023-07-08 08:13:38.679732 2023-07-08 08:13:38.679743 mef 56 R rec 0cbaba9a-41f0-40b8-a93b-ae03c73434b6 -2023-07-08 08:13:38.783649 2023-07-08 08:13:38.783659 mef 57 R rec 5319c3d0-874a-4f9f-a88c-5a28d89fbff6 -2023-07-08 08:13:38.885006 2023-07-08 08:13:38.88502 mef 58 R rec 38289e71-0176-4f04-ba62-fa92d02da11b -2023-07-08 08:13:38.995817 2023-07-08 08:13:38.995832 mef 59 R rec 6648b0fe-fe23-459c-8a8a-f2b9d616a0e9 -2023-07-08 08:13:39.096197 2023-07-08 08:13:39.096208 mef 60 R rec a6410b6e-d5a2-413a-839c-b65c499a0f47 -2023-07-08 08:13:39.19523 2023-07-08 08:13:39.195241 mef 61 R rec e1b9fa0f-bc2f-4bb8-8917-2f8e6b537605 -2023-07-08 08:13:39.31453 2023-07-08 08:13:39.314541 mef 62 R rec 08bacce1-5775-4984-b1ca-b85d0ddb43bb -2023-07-08 08:13:39.426285 2023-07-08 08:13:39.426295 mef 63 R rec 940c4144-1cff-4d01-9ca7-216129799590 -2023-07-08 08:13:39.522585 2023-07-08 08:13:39.522597 mef 64 R rec 1ceb5c7e-7876-400c-a69f-ce21ea6e6d2f -2023-07-08 08:13:39.624218 2023-07-08 08:13:39.624229 mef 65 R rec 7b41a68b-6bb9-42c3-af67-baaa8c7dd046 -2023-07-08 08:13:39.720663 2023-07-08 08:13:39.720676 mef 66 R rec ba294fe8-1457-48b2-87b8-eca1cc35f0b9 -2023-07-08 08:13:39.830967 2023-07-08 08:13:39.830979 mef 67 R rec 3cf9ffd0-ab02-485e-82e7-80a2484016fb -2023-07-08 08:13:39.942819 2023-07-08 08:13:39.942831 mef 68 R rec a4711d58-2c79-4a7a-9470-f6164fc6479e -2023-07-08 08:13:40.037271 2023-07-08 08:13:40.037282 mef 69 R rec 1e95d6f5-3da9-4988-8a4f-f7b7a69c0fa2 -2023-07-08 08:13:40.141601 2023-07-08 08:13:40.141611 mef 70 R rec 3ed78099-7290-4807-8f6d-6e151eb3ca0b -2023-07-08 08:13:40.251575 2023-07-08 08:13:40.25159 mef 71 R rec 4e155426-e0b2-4c00-85d9-22d08eefc001 -2023-07-08 08:13:40.350997 2023-07-08 08:13:40.35101 mef 72 R rec 0d491318-9742-4362-8dca-2af7fa43e57b -2023-07-08 08:13:40.453559 2023-07-08 08:13:40.453569 mef 73 R rec 5fc8b4d8-2709-4ab4-b219-bc1a874f0231 -2023-07-08 08:13:40.560278 2023-07-08 08:13:40.56029 mef 74 R rec 9cfd1913-6b69-4dbc-b359-895f8018e79e -2023-07-08 08:13:40.664742 2023-07-08 08:13:40.664754 mef 75 R rec dea48f20-7072-49b2-8964-70a8388fdddb -2023-07-08 08:13:40.764491 2023-07-08 08:13:40.764501 mef 76 R rec 785850a1-70fc-46d6-9074-2f9e36c99ed5 -2023-07-08 08:13:40.870391 2023-07-08 08:13:40.870402 mef 77 R rec eb7a1eec-4661-4891-a04f-a225a1bda940 -2023-07-08 08:13:40.972827 2023-07-08 08:13:40.972838 mef 78 R rec 73053dd5-1b1f-45db-bc3b-d36b2e319e8e -2023-07-08 08:13:41.083831 2023-07-08 08:13:41.08384 mef 79 R rec 55fc33ea-a7aa-43f8-a2e7-383e4b106815 -2023-07-08 08:13:41.207111 2023-07-08 08:13:41.207124 mef 80 R rec 99fa836b-7a8a-49ba-9e51-0480fcd04bfb -2023-07-08 08:13:41.307949 2023-07-08 08:13:41.30796 mef 81 R rec 60a84f45-a1e2-498a-bcf2-6c088932aaf6 -2023-07-08 08:13:41.391949 2023-07-08 08:13:41.391958 mef 82 R rec 35c8afb5-7125-412d-bcee-81838ff23f76 -2023-07-08 08:13:41.49486 2023-07-08 08:13:41.494872 mef 83 R rec 2e130b9d-7d3d-4e2d-b5d5-cdf34b46e252 -2023-07-08 08:13:41.604556 2023-07-08 08:13:41.604569 mef 84 R rec 765a695a-f657-47dd-abdd-d760b528ef1d -2023-07-08 08:13:41.718774 2023-07-08 08:13:41.718784 mef 85 R rec e922fe25-cd72-4aaf-9e7e-6b072abb6919 -2023-07-08 08:13:41.822387 2023-07-08 08:13:41.8224 mef 86 R rec d9df9cb4-b5ef-4e19-9e88-04536acd0615 -2023-07-08 08:13:41.921356 2023-07-08 08:13:41.921366 mef 87 R rec b7fbf50c-0de5-4b26-bd13-4127abdb9057 -2023-07-08 08:13:42.018665 2023-07-08 08:13:42.018675 mef 88 R rec 17a3036c-b895-4c3a-adbb-1e3b9d182da4 -2023-07-08 08:13:42.118154 2023-07-08 08:13:42.118164 mef 89 R rec f3d019ce-728a-489b-8897-28ee658b072c -2023-07-08 08:13:42.235131 2023-07-08 08:13:42.235143 mef 90 R rec 26ae3c1f-3e6d-4024-907c-eced2d963e10 -2023-07-08 08:13:42.357073 2023-07-08 08:13:42.357084 mef 91 R rec 12b9ddfd-9af4-428f-bcc6-b5952b8f62b6 -2023-07-08 08:13:42.461932 2023-07-08 08:13:42.461942 mef 92 R rec 7c8f86f5-e802-4639-a3b2-9c2f6c6134e1 -2023-07-08 08:13:42.558499 2023-07-08 08:13:42.558511 mef 93 R rec 911684d5-d8a6-4b01-9933-d71cf52c182f -2023-07-08 08:13:42.658148 2023-07-08 08:13:42.658154 mef 94 R rec 5358754e-0c7d-4951-b31c-ca60b1b8b760 -2023-07-08 08:13:42.74271 2023-07-08 08:13:42.742721 mef 95 R rec 4fd81120-99a9-4d1c-acb4-0a4c6b647179 -2023-07-08 08:13:42.850786 2023-07-08 08:13:42.850803 mef 96 R rec 958857b3-adbc-4801-ab05-524ceab1f102 -2023-07-08 08:13:42.967789 2023-07-08 08:13:42.967802 mef 97 R rec 49525b5a-81b1-4ae7-a892-9d39f2a6127a -2023-07-08 08:13:43.077649 2023-07-08 08:13:43.077659 mef 98 R rec 92a722a7-433c-40aa-80b5-9c55bfa3f42c -2023-07-08 08:13:43.202416 2023-07-08 08:13:43.202426 mef 99 R rec a58423de-d10f-439c-9411-61ec0e82d45f -2023-07-08 08:13:43.312817 2023-07-08 08:13:43.312832 mef 100 R rec 05e5bca4-cf94-4195-b87b-bf1956614f07 -2023-07-08 08:13:43.425999 2023-07-08 08:13:43.426009 mef 101 R rec e9546b6f-27d5-4d28-a927-ce9cd2c338b0 -2023-07-08 08:13:43.537751 2023-07-08 08:13:43.537764 mef 102 R rec 6a829438-392d-4d77-91e1-cd08ab87a973 -2023-07-08 08:13:43.668729 2023-07-08 08:13:43.668737 mef 103 R rec f49493d4-bad0-46a0-abd8-796dee767ea9 -2023-07-08 08:13:43.790779 2023-07-08 08:13:43.790794 mef 104 R rec 639a5736-10f4-4018-8ffe-b30c710d2f62 -2023-07-08 08:13:43.90312 2023-07-08 08:13:43.90313 mef 105 R rec 8fd62775-a6a7-4404-9bf1-ddaf19e93615 -2023-07-08 08:13:44.01202 2023-07-08 08:13:44.012029 mef 106 R rec becd4539-d1cf-4d56-a861-ac5db37c0897 -2023-07-08 08:13:44.128195 2023-07-08 08:13:44.128207 mef 107 R rec f645221e-376b-4f52-9900-232d0b8f48fb -2023-07-08 08:13:44.239749 2023-07-08 08:13:44.239759 mef 108 R rec faebaee2-5c72-421e-8801-eb3593269f72 -2023-07-08 08:13:44.354994 2023-07-08 08:13:44.355007 mef 109 R rec b5a68786-e6b8-4d75-b813-6b126378916a -2023-07-08 08:13:44.511557 2023-07-08 08:13:44.511567 mef 110 R rec ee2d900d-df90-4bc1-a166-582c11cd914c -2023-07-08 08:13:44.624776 2023-07-08 08:13:44.624786 mef 111 R rec dbbdfb00-0e5d-44fd-841f-ba1656a721de -2023-07-08 08:13:44.729895 2023-07-08 08:13:44.729905 mef 112 R rec 053c0c2c-d72f-4506-aec8-26e37fba6429 -2023-07-08 08:13:44.844936 2023-07-08 08:13:44.844952 mef 113 R rec bcd8e5aa-d744-476e-ad97-c96c08b5cad0 -2023-07-08 08:13:44.954864 2023-07-08 08:13:44.954876 mef 114 R rec 87b1c9a2-1d97-4f2f-a9d3-e2f964644c02 -2023-07-08 08:13:45.071195 2023-07-08 08:13:45.071201 mef 115 R rec e8da6b84-9bbb-418f-a1c3-64d7d733e12a -2023-07-08 08:13:45.179308 2023-07-08 08:13:45.179323 mef 116 R rec 1adda358-a631-4e86-8bcd-33bdfae4b589 -2023-07-08 08:13:45.283049 2023-07-08 08:13:45.28306 mef 117 R rec 12027608-0fe8-443d-99c5-8782c087b429 -2023-07-08 08:13:45.391646 2023-07-08 08:13:45.39166 mef 118 R rec 1e5413de-b9af-4012-b5f6-1b9686f1914b -2023-07-08 08:13:45.499488 2023-07-08 08:13:45.499498 mef 119 R rec 2bdc1282-ce5b-4b34-865f-7b0afd3b1e81 -2023-07-08 08:13:45.628909 2023-07-08 08:13:45.628919 mef 120 R rec 4690189b-6aa2-4626-bc2f-f1dd787ffd47 -2023-07-08 08:13:45.766059 2023-07-08 08:13:45.76607 mef 121 R rec e9610d50-b0b6-43f4-b5f1-ac0d9686cd58 -2023-07-08 08:13:45.874582 2023-07-08 08:13:45.874592 mef 122 R rec 63a163c5-a8b6-4869-9761-c1ccbcaf45d3 -2023-07-08 08:13:45.982979 2023-07-08 08:13:45.98299 mef 123 R rec d42e9513-953b-4f2a-b548-434d065989cd -2023-07-08 08:13:46.09737 2023-07-08 08:13:46.097384 mef 124 R rec ec087803-5122-4317-ba18-974c48b39e55 -2023-07-08 08:13:46.218852 2023-07-08 08:13:46.218862 mef 125 R rec c95deb69-d9e8-49ed-9942-a5519851539a -2023-07-08 08:13:46.338315 2023-07-08 08:13:46.33833 mef 126 R rec 166f8f18-c305-4919-919a-a887c99d0108 -2023-07-08 08:13:46.447581 2023-07-08 08:13:46.447593 mef 127 R rec 2f0466ad-4a9f-4177-9eb8-3ff25185345d -2023-07-08 08:13:46.549012 2023-07-08 08:13:46.549024 mef 128 R rec cf8e88c6-ffd1-4ebd-a832-bf740b00e8ef -2023-07-08 08:13:46.672474 2023-07-08 08:13:46.67248 mef 129 R rec 54d987a1-e266-481f-8633-7ba6a4fdf2cd -2023-07-08 08:13:46.797363 2023-07-08 08:13:46.797372 mef 130 R rec 59b54431-db37-49f7-a195-31a02fdb49b0 -2023-07-08 08:13:46.933104 2023-07-08 08:13:46.933114 mef 131 R rec 7ff0a84c-27cc-4bd9-8ac1-71cad7a1d599 -2023-07-08 08:13:47.109014 2023-07-08 08:13:47.109027 mef 132 R rec ce9d4038-abe3-4581-b68b-f13e13bdec61 -2023-07-08 08:13:47.222675 2023-07-08 08:13:47.222685 mef 133 R rec ec1062f4-4620-4eaf-b66b-31ed0b116ead -2023-07-08 08:13:47.344301 2023-07-08 08:13:47.344313 mef 134 R rec fade6896-dad2-4c9a-a5ee-279bf49d73ca -2023-07-08 08:13:47.454815 2023-07-08 08:13:47.45483 mef 135 R rec 4d5203f5-d8d8-4db3-b2d4-6651e8c12699 -2023-07-08 08:13:47.550994 2023-07-08 08:13:47.55101 mef 136 R rec b0e054fb-bb84-4a9a-ab7a-4e7ae55820ea -2023-07-08 08:13:47.678391 2023-07-08 08:13:47.678402 mef 137 R rec 459b3738-4284-41e6-b536-2fe01b9f730f -2023-07-08 08:13:47.785345 2023-07-08 08:13:47.785357 mef 138 R rec b9be5953-a363-472f-b4ff-d3fcac271f9b -2023-07-08 08:13:47.887733 2023-07-08 08:13:47.887744 mef 139 R rec a2ffb9a5-6ce7-4bd8-8a11-a0963b4982fc -2023-07-08 08:13:47.997183 2023-07-08 08:13:47.997194 mef 140 R rec 18c1ffb3-8cc6-4152-b555-7bf623e6db63 -2023-07-08 08:13:48.094947 2023-07-08 08:13:48.094957 mef 141 R rec 085fca95-d300-45c2-8a7b-21b894c0bf07 -2023-07-08 08:13:48.178696 2023-07-08 08:13:48.178707 mef 142 R rec 13415cf1-7791-4a62-b796-5e61aaf4922f -2023-07-08 08:13:48.286686 2023-07-08 08:13:48.286697 mef 143 R rec ad6c1141-b471-48e0-96a7-471029e9ca46 -2023-07-08 08:13:48.395147 2023-07-08 08:13:48.395163 mef 144 R rec 445c350f-45ee-4b68-a79b-e95a4015710b -2023-07-08 08:13:48.48358 2023-07-08 08:13:48.48359 mef 145 R rec 5382a959-1ec2-4754-ad38-4cd63e36b90b -2023-07-08 08:13:48.580916 2023-07-08 08:13:48.580925 mef 146 R rec 86d177e4-b9c5-4032-bd58-4def99de3efb -2023-07-08 08:13:48.683977 2023-07-08 08:13:48.683988 mef 147 R rec 64f9c0e1-011a-43c9-af2c-37bb14155458 -2023-07-08 08:13:48.794342 2023-07-08 08:13:48.794353 mef 148 R rec fa7adeff-99ab-4ca2-9522-d217a64820e4 -2023-07-08 08:13:48.882405 2023-07-08 08:13:48.882418 mef 149 R rec 9036d10d-0c51-4e31-b32f-b22574a27100 -2023-07-08 08:13:48.986566 2023-07-08 08:13:48.986577 mef 150 R rec 9ba4a541-7749-4c8b-a247-c8802f067f05 -2023-07-08 08:13:49.085027 2023-07-08 08:13:49.085038 mef 151 R rec a6ec5992-086c-43fb-8f5e-85eed23837f9 -2023-07-08 08:13:49.204499 2023-07-08 08:13:49.204513 mef 152 R rec 310383b9-2ea4-42b0-99f0-fe9a481dcad4 -2023-07-08 08:13:49.306031 2023-07-08 08:13:49.306048 mef 153 R rec d7cdeef2-b05a-4912-8212-5e323998b2f1 -2023-07-08 08:13:49.416046 2023-07-08 08:13:49.416056 mef 154 R rec 0cd77d1a-af56-4c00-9f73-098efdd0151c -2023-07-08 08:13:49.524331 2023-07-08 08:13:49.524341 mef 155 R rec 796083ba-f00a-4fa4-ac1f-459008c550a9 -2023-07-08 08:13:49.644243 2023-07-08 08:13:49.64426 mef 156 R rec 9480d8c8-995a-4860-bb7f-dc76d37a2723 -2023-07-08 08:13:49.752005 2023-07-08 08:13:49.752015 mef 157 R rec 6b9d8a07-45e6-485f-b937-f8f360b37830 -2023-07-08 08:13:49.864022 2023-07-08 08:13:49.864031 mef 158 R rec 5b9373b5-4f39-4438-a7d7-f52fd55d8b31 -2023-07-08 08:13:49.975522 2023-07-08 08:13:49.975533 mef 159 R rec d2de4603-d901-45c3-beb1-d6e68341d033 -2023-07-08 08:13:50.110828 2023-07-08 08:13:50.110839 mef 160 R rec 175dd82f-118a-46f5-9963-3903a1d125ab -2023-07-08 08:13:50.221568 2023-07-08 08:13:50.221581 mef 161 R rec f0c75360-faa7-489e-9426-73c479232e62 -2023-07-08 08:13:50.328995 2023-07-08 08:13:50.329007 mef 162 R rec f2843349-c8de-40c2-898a-0ad0d6467bac -2023-07-08 08:13:50.443341 2023-07-08 08:13:50.443354 mef 163 R rec ffae396a-17c7-42e1-a3c2-ba3a002ddb31 -2023-07-08 08:13:50.561378 2023-07-08 08:13:50.561393 mef 164 R rec 3f40cd4c-8b9c-4c68-a3e0-3c6f7019fa67 -2023-07-08 08:13:50.674432 2023-07-08 08:13:50.674442 mef 165 R rec edf77e61-2576-43b2-86d9-6f6fbe055fe1 -2023-07-08 08:13:50.787584 2023-07-08 08:13:50.787593 mef 166 R rec 5cb43804-06bf-4103-832e-c068409976e3 -2023-07-08 08:13:50.909765 2023-07-08 08:13:50.909775 mef 167 R rec 26b46ffa-a0c5-4dac-b6ec-a61fff6d5c3d -2023-07-08 08:13:51.031155 2023-07-08 08:13:51.031168 mef 168 R rec 39aa93d4-03e3-4b65-bd7d-8a7f11b79b0e -2023-07-08 08:13:51.149839 2023-07-08 08:13:51.14985 mef 169 R rec aca89b09-e464-48c4-8692-b7fde1280e25 -2023-07-08 08:13:51.290456 2023-07-08 08:13:51.290616 mef 170 R rec c8759e57-a2a3-4371-90e8-ef25946555f5 -2023-07-08 08:13:51.426576 2023-07-08 08:13:51.426589 mef 171 R rec b82ae969-ee35-4fab-9434-87eafe6a87bd -2023-07-08 08:13:51.537373 2023-07-08 08:13:51.537383 mef 172 R rec 9bf0a270-c9f9-4963-a10a-a2e75bab58c2 -2023-07-08 08:13:51.647853 2023-07-08 08:13:51.647863 mef 173 R rec 96173dec-09d7-4aa7-810c-71e9602b2bd1 -2023-07-08 08:13:51.770746 2023-07-08 08:13:51.770757 mef 174 R rec eb96e54f-3692-4eb8-904c-28e620c434ad -2023-07-08 08:13:51.883816 2023-07-08 08:13:51.883826 mef 175 R rec 5317b86d-7331-4c80-90fd-fa790c066a6f -2023-07-08 08:13:51.993488 2023-07-08 08:13:51.993501 mef 176 R rec 0b6cc3ee-f8b9-4017-b3df-4d5fbd6ba543 -2023-07-08 08:13:52.092022 2023-07-08 08:13:52.092033 mef 177 R rec bd53ed39-cf75-4462-a2ff-ed4ca675418e -2023-07-08 08:13:52.20215 2023-07-08 08:13:52.202163 mef 178 R rec d9f93adf-8bb7-4c50-ab15-c773f6d853b0 -2023-07-08 08:13:52.30551 2023-07-08 08:13:52.305524 mef 179 R rec 07b7f9b3-79d2-4cd9-80da-207d9b02daba -2023-07-08 08:13:52.42484 2023-07-08 08:13:52.42485 mef 180 R rec c96c8e6c-8aab-4b36-a7ba-527ee1146223 -2023-07-08 08:13:52.55172 2023-07-08 08:13:52.551734 mef 181 R rec 79c01c93-3910-4120-925e-dfe7e1b0dec1 -2023-07-08 08:13:52.669905 2023-07-08 08:13:52.669917 mef 182 R rec 88fe8fe9-d739-468f-aa03-0dc47c92ce40 -2023-07-08 08:13:52.768612 2023-07-08 08:13:52.768624 mef 183 R rec 86321556-0db8-4b35-bc34-8c1227ffb264 -2023-07-08 08:13:52.859103 2023-07-08 08:13:52.859112 mef 184 R rec cf634aeb-3c28-41c0-a5e8-fe8133daedec -2023-07-08 08:13:52.970068 2023-07-08 08:13:52.970084 mef 185 R rec b5db8ecc-cf23-49ea-9cd4-e8998a9d10a6 -2023-07-08 08:13:53.099917 2023-07-08 08:13:53.099931 mef 186 R rec eee81c28-209c-41f1-9a52-40cd78b5a7f2 -2023-07-08 08:13:53.2226 2023-07-08 08:13:53.222612 mef 187 R rec 1f87769f-bf0f-4a7a-8029-502868997ea0 -2023-07-08 08:13:53.320307 2023-07-08 08:13:53.320317 mef 188 R rec 7c376127-38fc-4072-bc29-b08730d4fcfe -2023-07-08 08:13:53.419584 2023-07-08 08:13:53.419592 mef 189 R rec d83664b0-7d60-402c-8ccb-09c740cc60e0 -2023-07-08 08:13:53.518883 2023-07-08 08:13:53.518893 mef 190 R rec b704aa35-0575-44d3-bf16-cade52f33725 -2023-07-08 08:13:53.624192 2023-07-08 08:13:53.624202 mef 191 R rec fd1098e6-4445-4715-82e4-bd4427369542 -2023-07-08 08:13:53.731989 2023-07-08 08:13:53.732 mef 192 R rec dff17241-8e9b-4a84-ba6e-6813e16197b5 -2023-07-08 08:13:53.854819 2023-07-08 08:13:53.854829 mef 193 R rec 3420fa62-9587-45d5-93a7-f5d759d8adef -2023-07-08 08:13:53.984214 2023-07-08 08:13:53.984227 mef 194 R rec c6309652-d1fc-4b49-942f-70af57d0bb12 -2023-07-08 08:13:54.109403 2023-07-08 08:13:54.109414 mef 195 R rec b86323dd-92db-4b27-9869-2ffa13d0dcf5 -2023-07-08 08:13:54.225144 2023-07-08 08:13:54.225155 mef 196 R rec cbb02d43-7280-45a3-8cf1-b59a9b731023 -2023-07-08 08:13:54.328529 2023-07-08 08:13:54.328542 mef 197 R rec 0b26cc6f-992e-4436-8e85-4bbd8b2acf9e -2023-07-08 08:13:54.438554 2023-07-08 08:13:54.438567 mef 198 R rec 5c2d0d15-2fd3-4716-90e0-bd42fb3c11f4 -2023-07-08 08:13:54.546601 2023-07-08 08:13:54.546611 mef 199 R rec 0d4dc3c5-f602-4bb5-be4e-f3cf35334032 -2023-07-08 08:13:54.664203 2023-07-08 08:13:54.664213 mef 200 R rec c20ca726-ecf4-4e89-97e4-2367a7c78637 -2023-07-08 08:13:54.779505 2023-07-08 08:13:54.779516 mef 201 R rec 80984acd-4692-4c74-abef-4763f8bf7aac -2023-07-08 08:13:54.911583 2023-07-08 08:13:54.9116 mef 202 R rec c6d4f140-8268-45d9-9d7a-704952f1f7e4 -2023-07-08 08:13:55.022134 2023-07-08 08:13:55.022144 mef 203 R rec 59b067de-f37e-4edb-bd54-491f0fb96cbb -2023-07-08 08:13:55.136651 2023-07-08 08:13:55.136661 mef 204 R rec 10217ef9-6caf-4ef3-ab86-81431e2d502a -2023-07-08 08:13:55.243139 2023-07-08 08:13:55.243151 mef 205 R rec 6f0ab4d1-6d7e-4efe-87a2-3fb8c96f40ad -2023-07-08 08:13:55.337436 2023-07-08 08:13:55.337448 mef 206 R rec e02a51fb-2b69-427f-9782-c6baf14ba6a6 -2023-07-08 08:13:55.444873 2023-07-08 08:13:55.444888 mef 207 R rec ff2889ec-4e36-4e26-9574-515d1aa91618 -2023-07-08 08:13:55.557601 2023-07-08 08:13:55.557613 mef 208 R rec fc71c2bc-9b4c-4d1a-a317-5078dd3e8904 -2023-07-08 08:13:55.682629 2023-07-08 08:13:55.682641 mef 209 R rec 9e72afc5-7c99-4098-b694-05c95742fd21 -2023-07-08 08:13:55.809778 2023-07-08 08:13:55.809788 mef 210 R rec da40cfa6-5e80-4022-9190-560c377ca86b -2023-07-08 08:13:55.925264 2023-07-08 08:13:55.925275 mef 211 R rec 1cf06dca-61a9-465a-9ef0-54b110f6058e -2023-07-08 08:13:56.039783 2023-07-08 08:13:56.039793 mef 212 R rec 60577607-6191-4dba-a616-31e4e1a90d70 -2023-07-08 08:13:56.149894 2023-07-08 08:13:56.149905 mef 213 R rec d257f4fe-7877-4c49-92cd-53a72176d943 -2023-07-08 08:13:56.272878 2023-07-08 08:13:56.272894 mef 214 R rec 21a26b1a-10f0-4f08-af35-40c3c23ff101 -2023-07-08 08:13:56.378085 2023-07-08 08:13:56.378097 mef 215 R rec 59fed84c-ba99-47fd-946e-667a9e4950db -2023-07-08 08:13:56.518237 2023-07-08 08:13:56.518243 mef 216 R rec 552c0ca2-8f0f-4c6e-90b9-97f712361629 -2023-07-08 08:13:56.630651 2023-07-08 08:13:56.630662 mef 217 R rec e3854a17-0fab-4385-be76-2456a9c4a8fa -2023-07-08 08:13:56.747409 2023-07-08 08:13:56.74742 mef 218 R rec 9401475d-788c-4c01-8f3a-5b0929ac3aca -2023-07-08 08:13:56.85125 2023-07-08 08:13:56.851262 mef 219 R rec 706d79bc-1208-4209-8d69-6c5db6e123d7 -2023-07-08 08:13:56.959208 2023-07-08 08:13:56.959218 mef 220 R rec 255f1e31-fc6a-425b-b37c-0b60dcf41874 -2023-07-08 08:13:57.084071 2023-07-08 08:13:57.084077 mef 221 R rec b809d6ed-cc44-4175-bd87-c99f50869f61 -2023-07-08 08:13:57.19662 2023-07-08 08:13:57.19663 mef 222 R rec bffab0d0-39ae-4329-a2d5-54839f227698 -2023-07-08 08:13:57.32652 2023-07-08 08:13:57.326526 mef 223 R rec bdd8488f-d646-423d-b03a-6eb56d4c19f2 -2023-07-08 08:13:57.454779 2023-07-08 08:13:57.45479 mef 224 R rec d98c6415-5c12-4cb1-8725-af4b93cf7353 -2023-07-08 08:13:57.587422 2023-07-08 08:13:57.587432 mef 225 R rec f7306011-8187-433d-ba82-21fd523c5132 -2023-07-08 08:13:57.728608 2023-07-08 08:13:57.728621 mef 226 R rec 1a1e1e5f-bea2-4754-abff-00701dbdfd98 -2023-07-08 08:13:57.842469 2023-07-08 08:13:57.842509 mef 227 R rec 6f6ad63b-26c1-4e77-8b85-9638b0ab6ca2 -2023-07-08 08:13:57.969508 2023-07-08 08:13:57.969528 mef 228 R rec 65a275b3-1cad-48ea-9603-46c553032c5a -2023-07-08 08:13:58.08665 2023-07-08 08:13:58.086662 mef 229 R rec d9d26abe-f795-4afc-83ba-ba63ddcdae1f -2023-07-08 08:13:58.216808 2023-07-08 08:13:58.216819 mef 230 R rec ecf8d6b2-778f-4d5f-be86-cc23b36c92aa -2023-07-08 08:13:58.346482 2023-07-08 08:13:58.346497 mef 231 R rec b74b87eb-3f12-4d5a-bd48-4132fb74bdf6 -2023-07-08 08:13:58.474876 2023-07-08 08:13:58.474891 mef 232 R rec 88fbb0f4-680c-4b90-98fe-cdd43c43d106 -2023-07-08 08:13:58.594575 2023-07-08 08:13:58.594585 mef 233 R rec b5e24e81-a4de-4d21-8fb1-158c3c949d0e -2023-07-08 08:13:58.73458 2023-07-08 08:13:58.734594 mef 234 R rec 14c8f507-fe03-44b7-956a-187e0bc31c35 -2023-07-08 08:13:58.852177 2023-07-08 08:13:58.852187 mef 235 R rec 60e524b3-2d24-4cd2-a6bd-25c2116d9d19 -2023-07-08 08:13:58.978513 2023-07-08 08:13:58.978528 mef 236 R rec 6648f204-b06e-4dcf-9d9f-313f564275a7 -2023-07-08 08:13:59.084747 2023-07-08 08:13:59.084761 mef 237 R rec 76728abf-022c-444e-961a-6583659cd793 -2023-07-08 08:13:59.211948 2023-07-08 08:13:59.211959 mef 238 R rec 8c8caedc-4942-4651-8172-b42c1e69dac0 -2023-07-08 08:13:59.329321 2023-07-08 08:13:59.329333 mef 239 R rec 64b78751-6926-4480-96aa-e8a2b957834d -2023-07-08 08:13:59.460742 2023-07-08 08:13:59.460748 mef 240 R rec 2afa5c73-3801-452d-8d7e-6603c38ea8fe -2023-07-08 08:13:59.551936 2023-07-08 08:13:59.55195 mef 241 R rec fa87ea08-2faa-4003-b8dd-272ce12a36b9 -2023-07-08 08:13:59.663056 2023-07-08 08:13:59.663065 mef 242 R rec 91ffe2e7-50ee-4806-a144-163cb7bb75bf -2023-07-08 08:13:59.778518 2023-07-08 08:13:59.778528 mef 243 R rec 9c7a994c-d36a-414d-9b76-4c4b5623217f -2023-07-08 08:13:59.884803 2023-07-08 08:13:59.884815 mef 244 R rec d3dbc7e5-859d-4940-a336-2ae17348a084 -2023-07-08 08:14:00.016408 2023-07-08 08:14:00.016414 mef 245 R rec 642d9ead-9273-4cd8-917d-715d9492d01c -2023-07-08 08:14:00.126634 2023-07-08 08:14:00.126645 mef 246 R rec ea1c4216-e2df-471d-b9c2-ff25e61cdc3f -2023-07-08 08:14:00.244848 2023-07-08 08:14:00.244861 mef 247 R rec a502cab7-7f7e-4bb6-b639-9432e6357f12 -2023-07-08 08:14:00.358618 2023-07-08 08:14:00.358628 mef 248 R rec faa1a6f3-d71c-42e0-b4e8-e1ebabe5b097 -2023-07-08 08:14:00.486555 2023-07-08 08:14:00.486566 mef 249 R rec 95ad2fcf-4e65-4a5c-8c96-624034b5210e -2023-07-08 08:14:00.605608 2023-07-08 08:14:00.605617 mef 250 R rec cb52e5c2-bfe0-47bc-b485-39753906a4e0 -2023-07-08 08:14:00.774719 2023-07-08 08:14:00.774731 mef 251 R rec e22a558e-f88c-464d-9e70-0c82807a7a04 -2023-07-08 08:14:00.966572 2023-07-08 08:14:00.966585 mef 252 R rec 4290c3d5-d972-43c6-b7c1-a4b80c5d30e6 -2023-07-08 08:14:01.09602 2023-07-08 08:14:01.096033 mef 253 R rec af43acb2-d62a-4fc8-9c7b-b67413e59037 -2023-07-08 08:14:01.214229 2023-07-08 08:14:01.214239 mef 254 R rec 4100afe8-9c41-4dfc-b8e1-ef8a4024164f -2023-07-08 08:14:01.344999 2023-07-08 08:14:01.345009 mef 255 R rec 3024ea8b-d6a8-4aa1-bfcf-5def8f1d8a7c -2023-07-08 08:14:01.458596 2023-07-08 08:14:01.458614 mef 256 R rec 7a35a6e5-cdb1-4225-a847-e1bef60a016b -2023-07-08 08:14:01.56343 2023-07-08 08:14:01.563443 mef 257 R rec c4d566f5-70cf-4ced-8de4-097f09bb0b6b -2023-07-08 08:14:01.681062 2023-07-08 08:14:01.681072 mef 258 R rec 92dd8399-e612-4779-accd-b13f62433a43 -2023-07-08 08:14:01.79646 2023-07-08 08:14:01.796474 mef 259 R rec 73bd8d47-3f3b-41b5-865a-8aefb579246f -2023-07-08 08:14:01.899624 2023-07-08 08:14:01.899633 mef 260 R rec a27a4da6-a6c8-4cf9-8d45-01e8dd9aa824 -2023-07-08 08:14:02.012295 2023-07-08 08:14:02.012307 mef 261 R rec 4abc8a90-44b4-4413-aac1-f4bb778fce77 -2023-07-08 08:14:02.143744 2023-07-08 08:14:02.143757 mef 262 R rec 9586953e-83f3-47f8-b0ae-2d8c875d24a5 -2023-07-08 08:14:02.264025 2023-07-08 08:14:02.264035 mef 263 R rec edef4651-f18b-409f-882a-b2b4f40f4c5a -2023-07-08 08:14:02.382121 2023-07-08 08:14:02.382132 mef 264 R rec 995c774d-8dd4-4bd4-b5e3-34ea70e8df8f -2023-07-08 08:14:02.487724 2023-07-08 08:14:02.487734 mef 265 R rec db1a03ed-494b-44fa-b15d-ea2f34f61b02 -2023-07-08 08:14:02.600456 2023-07-08 08:14:02.600467 mef 266 R rec ac7fb335-4980-491c-8a10-432675888315 -2023-07-08 08:14:02.732777 2023-07-08 08:14:02.732787 mef 267 R rec ae7478cc-c11a-4e38-9365-aef6dc4168e5 -2023-07-08 08:14:02.851946 2023-07-08 08:14:02.851957 mef 268 R rec 10a72f05-3a3e-40bc-a3c4-6bc72466d9c0 -2023-07-08 08:14:02.966035 2023-07-08 08:14:02.966045 mef 269 R rec 1e210ffd-3d30-4226-beec-cb0c4f1e2f53 -2023-07-08 08:14:03.11306 2023-07-08 08:14:03.113071 mef 270 R rec 6c7a4acb-cd57-4fe3-b9c1-3db31e4ea475 -2023-07-08 08:14:03.219841 2023-07-08 08:14:03.219853 mef 271 R rec dd6b809d-66ef-41d9-9d00-0580e3f01d59 -2023-07-08 08:14:03.336022 2023-07-08 08:14:03.336035 mef 272 R rec 0c589c4f-1740-4cf9-b791-5707a27e1f27 -2023-07-08 08:14:03.451749 2023-07-08 08:14:03.451759 mef 273 R rec 9732792d-9f11-4226-a85e-37f8fa426985 -2023-07-08 08:14:03.559884 2023-07-08 08:14:03.559895 mef 274 R rec 84518b07-c1d7-4431-a0fd-5eee5b65a21b -2023-07-08 08:14:03.684276 2023-07-08 08:14:03.684286 mef 275 R rec ff75aa06-37e5-442a-a2eb-346157d4a29a -2023-07-08 08:14:03.809523 2023-07-08 08:14:03.809536 mef 276 R rec dacd1016-aeb0-4a32-892f-732a97f66a5d -2023-07-08 08:14:03.932432 2023-07-08 08:14:03.932545 mef 277 R rec f580a799-5fb0-4565-846d-da3076969894 -2023-07-08 08:14:04.051429 2023-07-08 08:14:04.051438 mef 278 R rec 140ce002-0c82-44e8-b35d-9d94813bb0da -2023-07-08 08:14:04.188915 2023-07-08 08:14:04.188933 mef 279 R rec 6b099ab4-4c86-4adb-b2e6-1e1f425dc43b -2023-07-08 08:14:04.296992 2023-07-08 08:14:04.297002 mef 280 R rec a96b0544-03a7-426b-90ad-bbf9ec32158a -2023-07-08 08:14:04.414436 2023-07-08 08:14:04.41445 mef 281 R rec d17d3345-cbf4-422b-9e4f-3691f8fc81d6 -2023-07-08 08:14:04.530319 2023-07-08 08:14:04.530329 mef 282 R rec 220671e6-0a47-4599-bd3b-fa20c5c70fcd -2023-07-08 08:14:04.658278 2023-07-08 08:14:04.658289 mef 283 R rec 7141c14d-2883-4d23-a4ee-9c56149432d8 -2023-07-08 08:14:04.775736 2023-07-08 08:14:04.77575 mef 284 R rec 0176cabe-b1df-451a-82e9-d35cf6c69a5c -2023-07-08 08:14:04.886713 2023-07-08 08:14:04.886723 mef 285 R rec ac92c54d-3381-4db8-a848-220bd7cb6f7e -2023-07-08 08:14:05.00095 2023-07-08 08:14:05.000963 mef 286 R rec 4f4be203-9a4d-49ce-ae0e-302a43e50607 -2023-07-08 08:14:05.109402 2023-07-08 08:14:05.109407 mef 287 R rec 99897bec-a598-472d-8d2e-95bd4ea4ab67 -2023-07-08 08:14:05.225131 2023-07-08 08:14:05.225149 mef 288 R rec 56eeec72-ab12-4a07-be51-5c6b4758e10d -2023-07-08 08:14:05.333733 2023-07-08 08:14:05.333743 mef 289 R rec eebd1942-8b7d-4b94-ae8a-5bf9ebf7a393 -2023-07-08 08:14:05.442515 2023-07-08 08:14:05.442525 mef 290 R rec e3e0c4a6-230a-48f8-8c95-1922b5327915 -2023-07-08 08:14:05.536149 2023-07-08 08:14:05.536159 mef 291 R rec c355b0ae-3237-44f8-bac2-ff55fcb73eac -2023-07-08 08:14:05.634399 2023-07-08 08:14:05.634409 mef 292 R rec f2fc578f-c490-4cb2-9f03-5b3b87ba1dad -2023-07-08 08:14:05.747463 2023-07-08 08:14:05.747474 mef 293 R rec 9c1e45f7-0ff5-409e-8a6b-94e70bf6fb3f -2023-07-08 08:14:05.880978 2023-07-08 08:14:05.880991 mef 294 R rec c3fda5c5-d819-4bee-82d4-2c1379df0720 -2023-07-08 08:14:06.000284 2023-07-08 08:14:06.000379 mef 295 R rec 8cd1a2e4-5657-4e6b-9a98-72dc7ddaf2b7 -2023-07-08 08:14:06.146846 2023-07-08 08:14:06.146857 mef 296 R rec 8fa82a9c-a4b2-4b8d-9baf-cbca5938e6d3 -2023-07-08 08:14:06.26951 2023-07-08 08:14:06.26952 mef 297 R rec 386025e8-2013-4a20-af96-abaef00b8fa3 -2023-07-08 08:14:06.398004 2023-07-08 08:14:06.398017 mef 298 R rec 5c408188-f6dd-4d7d-86d3-592a9b6cf87d -2023-07-08 08:14:06.518831 2023-07-08 08:14:06.518841 mef 299 R rec b8cdafc2-097c-4553-b69b-50718f42c8ed -2023-07-08 08:14:06.64328 2023-07-08 08:14:06.643291 mef 300 R rec c0df09cd-a799-4b03-984b-903247c41ef2 -2023-07-08 08:14:06.775459 2023-07-08 08:14:06.775465 mef 301 R rec 584e205b-1580-4af9-8d22-638cd41cc9d2 -2023-07-08 08:14:06.869311 2023-07-08 08:14:06.869322 mef 302 R rec 8606ae73-b236-46ed-8418-c4eb32db68b7 -2023-07-08 08:14:07.018468 2023-07-08 08:14:07.018473 mef 303 R rec fc7a2ab5-3b76-42c4-959a-3903136270b2 -2023-07-08 08:14:07.09671 2023-07-08 08:14:07.096715 mef 304 R rec ef5c0aca-421e-44fd-a4ad-20127b04e38f -2023-07-08 08:14:07.176922 2023-07-08 08:14:07.176927 mef 305 R rec 51661baa-e9a3-472b-b9f3-9f3a5aef2d98 -2023-07-08 08:14:07.257472 2023-07-08 08:14:07.257477 mef 306 R rec ec9bbfda-6503-4d8b-a0ae-9bafe8d75976 -2023-07-08 08:14:07.35749 2023-07-08 08:14:07.357495 mef 307 R rec 916ed5ee-f2b6-4e65-81f6-56a078f6a5cf -2023-07-08 08:14:07.468115 2023-07-08 08:14:07.468121 mef 308 R rec 4a4c59b5-f688-47bc-8964-2cc474e3dfa0 -2023-07-08 08:14:07.560413 2023-07-08 08:14:07.560418 mef 309 R rec d6eb61b7-78c9-407e-a584-4f6b0d2a7c91 -2023-07-08 08:14:07.644417 2023-07-08 08:14:07.644422 mef 310 R rec 794e67a2-8cbf-440b-840d-ea96b4c8cc40 -2023-07-08 08:14:07.72995 2023-07-08 08:14:07.729954 mef 311 R rec 81b13d5e-161d-4d37-8b11-2b1789532380 -2023-07-08 08:14:07.811892 2023-07-08 08:14:07.811901 mef 312 R rec 7844aa8d-12b8-4e55-8e52-17c772c7c164 -2023-07-08 08:14:07.902175 2023-07-08 08:14:07.902184 mef 313 R rec b611f97f-a95c-4697-95dc-0a5f37d57716 -2023-07-08 08:14:07.983456 2023-07-08 08:14:07.983463 mef 314 R rec a26fb32c-3b27-4f06-ab85-fbcc536bfba6 -2023-07-08 08:14:08.058538 2023-07-08 08:14:08.058548 mef 315 R rec d5ec26df-dd7c-4500-bfe5-67527162834b -2023-07-08 08:14:08.140657 2023-07-08 08:14:08.14067 mef 316 R rec 5800e3bc-31f5-4fba-9619-46384a157b87 -2023-07-08 08:14:08.230612 2023-07-08 08:14:08.230623 mef 317 R rec 074388c2-814e-4872-b9f2-685a2523adad -2023-07-08 08:14:08.346054 2023-07-08 08:14:08.346065 mef 318 R rec 0d279828-a784-4a53-a8e9-a5d8844b8c37 -2023-07-08 08:14:08.442129 2023-07-08 08:14:08.442139 mef 319 R rec c4f865ee-7dda-48ad-b1d3-2b4173f0f357 -2023-07-08 08:14:08.52358 2023-07-08 08:14:08.523586 mef 320 R rec fb2bcc05-fa29-47f6-beed-2dba67104bb1 -2023-07-08 08:14:08.608088 2023-07-08 08:14:08.608092 mef 321 R rec cf2719b8-f2c2-4b0c-a32d-33cc874c6083 -2023-07-08 08:14:08.704316 2023-07-08 08:14:08.704325 mef 322 R rec 62bce4c6-3657-4ee4-9bd6-d68f0412e38d -2023-07-08 08:14:08.793756 2023-07-08 08:14:08.793766 mef 323 R rec 4ce422ce-a2d6-48e3-a9a2-c08c5d6c68fb -2023-07-08 08:14:08.892565 2023-07-08 08:14:08.892577 mef 324 R rec 08251295-efaa-4abd-91eb-ddac8dd93b1b -2023-07-08 08:14:08.980965 2023-07-08 08:14:08.98097 mef 325 R rec 230a1800-31e8-4211-8e41-d05a007e2f00 -2023-07-08 08:14:09.084305 2023-07-08 08:14:09.084315 mef 326 R rec 3b40b051-fae1-47ce-b7e8-3a5028d789c5 -2023-07-08 08:14:09.178516 2023-07-08 08:14:09.178521 mef 327 R rec b4b26c1f-a7e9-4cf3-91b7-4fd6dcf87961 -2023-07-08 08:14:09.270544 2023-07-08 08:14:09.270554 mef 328 R rec 00aa5841-a826-476f-b6dd-00dd0e51365c -2023-07-08 08:14:09.360771 2023-07-08 08:14:09.360775 mef 329 R rec 0eef5d6b-ddf1-4199-8d7d-4af0e205057b -2023-07-08 08:14:09.440365 2023-07-08 08:14:09.440369 mef 330 R rec d391a210-bae0-468f-a5a8-b55a2b97350d -2023-07-08 08:14:09.530953 2023-07-08 08:14:09.530963 mef 331 R rec 40a3d72a-366d-472d-a24a-2978b5b26797 -2023-07-08 08:14:09.620522 2023-07-08 08:14:09.620534 mef 332 R rec 3380783a-b5ee-4d4e-b3af-0f70bc0de578 -2023-07-08 08:14:09.72133 2023-07-08 08:14:09.721346 mef 333 R rec 93688b2a-b912-456b-93b5-347a90881731 -2023-07-08 08:14:09.805876 2023-07-08 08:14:09.805889 mef 334 R rec af8dc936-dae3-47a5-ac7b-779038ac8936 -2023-07-08 08:14:09.899038 2023-07-08 08:14:09.899047 mef 335 R rec 87698ba1-9f0b-49cb-a5a6-af37d38f5cec -2023-07-08 08:14:10.003496 2023-07-08 08:14:10.003505 mef 336 R rec 768431c5-6caf-4506-8900-e12315984a41 -2023-07-08 08:14:10.077844 2023-07-08 08:14:10.077849 mef 337 R rec 72cfeb40-e6da-40dc-8fed-d7aca177b885 -2023-07-08 08:14:10.145289 2023-07-08 08:14:10.145294 mef 338 R rec 5cb84b59-3c29-4ea9-9974-5e7eaef12aa1 -2023-07-08 08:14:10.219766 2023-07-08 08:14:10.219771 mef 339 R rec 66c7a7f0-6a20-44cf-9332-80c1bab6eeee -2023-07-08 08:14:10.312782 2023-07-08 08:14:10.312797 mef 340 R rec 919444ee-3d4d-4140-aee7-ddfb4dcad94d -2023-07-08 08:14:10.395587 2023-07-08 08:14:10.395592 mef 341 R rec e46e0dce-e5d0-4d13-9065-a1a67c4f3d6e -2023-07-08 08:14:10.474733 2023-07-08 08:14:10.474738 mef 342 R rec 5762192a-6a73-4fb3-b16c-f8781d539e16 -2023-07-08 08:14:10.544175 2023-07-08 08:14:10.54418 mef 343 R rec ba4d1812-8bd9-455f-82e0-53fef3f34f18 -2023-07-08 08:14:10.622006 2023-07-08 08:14:10.622016 mef 344 R rec e6d197bd-0b72-45bb-8c69-d79e228cead6 -2023-07-08 08:14:10.698437 2023-07-08 08:14:10.698442 mef 345 R rec 2f858267-a45b-499b-ba4d-d186213bf1c6 -2023-07-08 08:14:10.766113 2023-07-08 08:14:10.76612 mef 346 R rec de906a4f-5620-49dd-8d64-9b50c24c89d0 -2023-07-08 08:14:10.837181 2023-07-08 08:14:10.837186 mef 347 R rec 1eccdbc6-78ff-4628-bf15-63509858cfea -2023-07-08 08:14:10.929934 2023-07-08 08:14:10.929939 mef 348 R rec 6380c1c1-d80c-49fb-83b2-3bac6fcc4321 -2023-07-08 08:14:11.001875 2023-07-08 08:14:11.00188 mef 349 R rec 0f233883-b53c-41f1-8f74-0567c5ea332b -2023-07-08 08:14:11.082438 2023-07-08 08:14:11.082443 mef 350 R rec 1b111309-c5ba-4354-a26c-e9dbfdf14198 -2023-07-08 08:14:11.151054 2023-07-08 08:14:11.151059 mef 351 R rec bf2df8cc-5fed-4ace-a6e5-a1e9906ad801 -2023-07-08 08:14:11.221594 2023-07-08 08:14:11.221599 mef 352 R rec 918f7111-d34d-4b66-9531-755f984883ce -2023-07-08 08:14:11.287194 2023-07-08 08:14:11.287199 mef 353 R rec 1c6783d5-3b47-488d-a4d1-57fe2b323b2f -2023-07-08 08:14:11.370993 2023-07-08 08:14:11.371005 mef 354 R rec 4b84facb-b1ad-40dc-9c0d-f92c3d40de49 -2023-07-08 08:14:11.465459 2023-07-08 08:14:11.465465 mef 355 R rec f5143a78-6fd4-445c-b438-246504738618 -2023-07-08 08:14:11.553289 2023-07-08 08:14:11.553294 mef 356 R rec 19fb919e-ce25-4117-ba9e-ac5fad05c686 -2023-07-08 08:14:11.640428 2023-07-08 08:14:11.640441 mef 357 R rec 604c6824-a722-4ef9-a100-54bf1ee8c5c0 -2023-07-08 08:14:11.733989 2023-07-08 08:14:11.733994 mef 358 R rec 6c43f792-453e-476b-bcd4-0d7d6a6a9bd5 -2023-07-08 08:14:11.820126 2023-07-08 08:14:11.820136 mef 359 R rec 35a40695-3cf1-4b3a-b185-423d5527abb6 -2023-07-08 08:14:11.908097 2023-07-08 08:14:11.908102 mef 360 R rec af580262-f53e-4782-b839-cea7b574ffbe -2023-07-08 08:14:11.985427 2023-07-08 08:14:11.98543 mef 361 R rec 764cb023-547f-4f5b-8392-fe19972b44e5 -2023-07-08 08:14:12.063931 2023-07-08 08:14:12.063936 mef 362 R rec 27c88477-1abf-4ddf-864a-a366475cdc96 -2023-07-08 08:14:12.146627 2023-07-08 08:14:12.146639 mef 363 R rec 2f439005-a6d5-4650-b768-6120bd1b6cf7 -2023-07-08 08:14:12.245932 2023-07-08 08:14:12.245937 mef 364 R rec 07d3241a-dc5e-4215-acb5-0c87dec016ef -2023-07-08 08:14:12.333182 2023-07-08 08:14:12.333187 mef 365 R rec a9c24939-5415-473d-94b4-2c312497a54d -2023-07-08 08:14:12.427098 2023-07-08 08:14:12.427113 mef 366 R rec 0a4d368e-f667-4f6a-866e-0359bbd56192 -2023-07-08 08:14:12.514089 2023-07-08 08:14:12.514099 mef 367 R rec 0194f2ef-1405-4361-bfcb-207568e31bfb -2023-07-08 08:14:12.621526 2023-07-08 08:14:12.621537 mef 368 R rec 286acc3e-ca00-45ef-9db3-b1c2ed25f293 -2023-07-08 08:14:12.713897 2023-07-08 08:14:12.713908 mef 369 R rec d5e13829-e5b5-4d75-a83a-724d19521f98 -2023-07-08 08:14:12.824027 2023-07-08 08:14:12.824039 mef 370 R rec f28344d4-2f6c-4dff-b7ad-8dacd906515c -2023-07-08 08:14:12.916861 2023-07-08 08:14:12.916866 mef 371 R rec 1c863968-6984-497d-8de5-a97377981e3d -2023-07-08 08:14:13.038716 2023-07-08 08:14:13.038731 mef 372 R rec 44805778-2aa0-4673-a99e-1269f6364d53 -2023-07-08 08:14:13.125275 2023-07-08 08:14:13.12528 mef 373 R rec a75ef72c-287b-4631-8a3c-6eac6d88a7d6 -2023-07-08 08:14:13.210189 2023-07-08 08:14:13.210198 mef 374 R rec 77538b10-665d-4ec3-ae5c-de558e4a859c -2023-07-08 08:14:13.326023 2023-07-08 08:14:13.326033 mef 375 R rec ba627577-d93f-4dfd-a7b2-dc56db6c2542 -2023-07-08 08:14:13.421952 2023-07-08 08:14:13.421958 mef 376 R rec 387a6c42-e238-48a2-890e-f9bfd8a5aa12 -2023-07-08 08:14:13.505543 2023-07-08 08:14:13.505548 mef 377 R rec bf38d001-4832-4748-ab6e-cc41f8a9cd71 -2023-07-08 08:14:13.573117 2023-07-08 08:14:13.573122 mef 378 R rec 3f49cc32-0086-4730-82d0-a6b5d322bce2 -2023-07-08 08:14:13.664653 2023-07-08 08:14:13.664664 mef 379 R rec b482ffc3-c3ed-4cb8-b8ba-560c51276083 -2023-07-08 08:14:13.771605 2023-07-08 08:14:13.771616 mef 380 R rec 5bd9c1b5-e11d-4fb1-a18b-dc6a2de9d152 -2023-07-08 08:14:13.886275 2023-07-08 08:14:13.886285 mef 381 R rec be7e80a3-18e1-42cd-8e83-179c8b0edb7c -2023-07-08 08:14:14.009342 2023-07-08 08:14:14.009354 mef 382 R rec e5abb7f7-ebb4-40d7-9eda-d1e553f0972c -2023-07-08 08:14:14.120974 2023-07-08 08:14:14.120986 mef 383 R rec 438386f0-9429-48c9-bb13-65ebacc9de76 -2023-07-08 08:14:14.242838 2023-07-08 08:14:14.242849 mef 384 R rec ff7fa513-8298-4e5a-8428-4484715ee99d -2023-07-08 08:14:14.354601 2023-07-08 08:14:14.354614 mef 385 R rec db612cac-3a21-4881-b84b-39c2a6582396 -2023-07-08 08:14:14.478754 2023-07-08 08:14:14.478767 mef 386 R rec ab91aeda-61be-4096-88fd-52992bd37674 -2023-07-08 08:14:14.59741 2023-07-08 08:14:14.597424 mef 387 R rec 39816b22-62fb-4143-ba4d-71cf2964f7a4 -2023-07-08 08:14:14.72789 2023-07-08 08:14:14.727902 mef 388 R rec 29a0bed0-f7ab-40cf-bad6-3d1a334ed930 -2023-07-08 08:14:14.835412 2023-07-08 08:14:14.835422 mef 389 R rec 2ed85c4e-7da7-4fa0-9174-821d5bea6918 -2023-07-08 08:14:14.951318 2023-07-08 08:14:14.951328 mef 390 R rec 3d806635-caa7-4e91-a4e9-883d02f9a238 -2023-07-08 08:14:15.070846 2023-07-08 08:14:15.070853 mef 391 R rec a96c0477-9be8-43c8-8de1-9b0e74dca171 -2023-07-08 08:14:15.179071 2023-07-08 08:14:15.179086 mef 392 R rec c9f1c39e-8616-4495-b574-a11d106def0e -2023-07-08 08:14:15.299351 2023-07-08 08:14:15.299362 mef 393 R rec b8aa481e-30e0-41d9-8a08-f81aa338a425 -2023-07-08 08:14:15.433101 2023-07-08 08:14:15.433109 mef 394 R rec d78026c7-8034-4041-8954-d40d8074fbf4 -2023-07-08 08:14:15.551961 2023-07-08 08:14:15.551974 mef 395 R rec d59867b8-8672-4414-a32c-718c259796a7 -2023-07-08 08:14:15.684396 2023-07-08 08:14:15.684408 mef 396 R rec 16f3dfea-918a-4090-87a1-5c63fde38e0f -2023-07-08 08:14:15.810618 2023-07-08 08:14:15.810624 mef 397 R rec bbd1ffbc-1724-47b2-a4cd-a3b3d62ee5b6 -2023-07-08 08:14:15.922356 2023-07-08 08:14:15.922367 mef 398 R rec 23bfb22e-27cb-485c-a62a-177ca2533381 -2023-07-08 08:14:16.040441 2023-07-08 08:14:16.040494 mef 399 R rec afcc375a-8267-4837-95c0-670e29bf0f54 -2023-07-08 08:14:16.176258 2023-07-08 08:14:16.176274 mef 400 R rec 03111ca7-05c1-4dbb-b387-3804dcf2858e -2023-07-08 08:14:16.287872 2023-07-08 08:14:16.287885 mef 401 R rec f53f3f16-7e78-4829-8ba8-83863ad0f956 -2023-07-08 08:14:16.395682 2023-07-08 08:14:16.395692 mef 402 R rec 1bf53929-8aee-42a2-8bd1-2f19aa756107 -2023-07-08 08:14:16.499374 2023-07-08 08:14:16.499384 mef 403 R rec b482fca1-52ad-4918-98b3-9eddcf86e3ce -2023-07-08 08:14:16.599176 2023-07-08 08:14:16.599187 mef 404 R rec 3599209f-454e-4c80-8db6-660a012bb0e7 -2023-07-08 08:14:16.722085 2023-07-08 08:14:16.7221 mef 405 R rec 9934afb6-4fe7-46a7-823f-81fb126e08b7 -2023-07-08 08:14:16.832786 2023-07-08 08:14:16.832797 mef 406 R rec 0a6fc744-a378-455b-9810-8f67117253b7 -2023-07-08 08:14:16.931422 2023-07-08 08:14:16.931432 mef 407 R rec a056708f-15f0-45c0-99c3-011bcf047933 -2023-07-08 08:14:17.047437 2023-07-08 08:14:17.047448 mef 408 R rec 2a004c0d-ec96-4d66-a9d1-b28107a833b4 -2023-07-08 08:14:17.190024 2023-07-08 08:14:17.190037 mef 409 R rec 23ea822b-1f9e-465d-b013-349a18ad4f65 -2023-07-08 08:14:17.311333 2023-07-08 08:14:17.311345 mef 410 R rec 6508ef3e-5565-489c-b8c9-65faaf35132d -2023-07-08 08:14:17.425493 2023-07-08 08:14:17.425503 mef 411 R rec 1a2a62da-6d71-4a47-97e0-16a4affe6045 -2023-07-08 08:14:17.538332 2023-07-08 08:14:17.538342 mef 412 R rec c789a6ca-88f1-4226-aa97-46e2aa231b01 -2023-07-08 08:14:17.659774 2023-07-08 08:14:17.659786 mef 413 R rec b6c404cd-fb42-46c9-8549-865b70a561ee -2023-07-08 08:14:17.771363 2023-07-08 08:14:17.771383 mef 414 R rec 7fc962d5-3f2f-4fdc-8f0f-897023d1183e -2023-07-08 08:14:17.884769 2023-07-08 08:14:17.88478 mef 415 R rec 41eeddec-d69c-4ae1-8d4f-6ad9311e437c -2023-07-08 08:14:17.99818 2023-07-08 08:14:17.998193 mef 416 R rec d837f147-a163-412e-80b0-ba406e02ece2 -2023-07-08 08:14:18.116995 2023-07-08 08:14:18.117011 mef 417 R rec 15bec44d-a710-4e70-a8f1-4513e7632a26 -2023-07-08 08:14:18.240225 2023-07-08 08:14:18.240236 mef 418 R rec 913315a5-1e0a-4f49-b35a-df1624374b5d -2023-07-08 08:14:18.369438 2023-07-08 08:14:18.369453 mef 419 R rec d1c80027-476a-451c-aa31-f844f47afc85 -2023-07-08 08:14:18.486291 2023-07-08 08:14:18.486301 mef 420 R rec 41a9a28a-4179-4e03-9a28-33cc09ab8293 -2023-07-08 08:14:18.593319 2023-07-08 08:14:18.593334 mef 421 R rec 674d2c84-a0d6-4327-ae5e-1289a1ac64a6 -2023-07-08 08:14:18.756453 2023-07-08 08:14:18.756496 mef 422 R rec d040404a-fbfa-4490-b499-e927844886fa -2023-07-08 08:14:18.865075 2023-07-08 08:14:18.865086 mef 423 R rec 3eb9dde4-a165-42fb-b644-5a093290d445 -2023-07-08 08:14:18.974989 2023-07-08 08:14:18.975004 mef 424 R rec 21c7a618-0ae7-4c6b-9580-ee7928012196 -2023-07-08 08:14:19.087494 2023-07-08 08:14:19.087505 mef 425 R rec a96bd7dc-cf5a-42b5-bc76-a4fbf5946e72 -2023-07-08 08:14:19.202778 2023-07-08 08:14:19.202794 mef 426 R rec 982425c4-a208-49d0-a39f-1c8b78c88eb6 -2023-07-08 08:14:19.311338 2023-07-08 08:14:19.311348 mef 427 R rec 55eef693-d5ab-4e07-9d8d-66d383000697 -2023-07-08 08:14:19.437438 2023-07-08 08:14:19.437448 mef 428 R rec 8a3ddb15-acb8-40b8-9ea0-c22a85783f4c -2023-07-08 08:14:19.561579 2023-07-08 08:14:19.561589 mef 429 R rec 2f78ee99-c269-46f5-ab0c-082098d95738 -2023-07-08 08:14:19.695523 2023-07-08 08:14:19.695533 mef 430 R rec 6f1feced-8708-41d9-8bd7-15a5502c3a3b -2023-07-08 08:14:19.804483 2023-07-08 08:14:19.804493 mef 431 R rec d012bfaf-8e9a-4b95-ac31-26136bed5fac -2023-07-08 08:14:19.92599 2023-07-08 08:14:19.926001 mef 432 R rec ec04651f-2227-4bd3-beae-5b065437ab0e -2023-07-08 08:14:20.034592 2023-07-08 08:14:20.034607 mef 433 R rec 2252ab8a-4935-494f-9c13-18fc8a0dcca9 -2023-07-08 08:14:20.14015 2023-07-08 08:14:20.140162 mef 434 R rec b8c8e58b-b2ae-40e2-b2bb-1945e5650ab7 -2023-07-08 08:14:20.250392 2023-07-08 08:14:20.250405 mef 435 R rec b1bdd542-6c00-45ae-923a-575b4cb8104d -2023-07-08 08:14:20.375077 2023-07-08 08:14:20.375092 mef 436 R rec e43b376d-6174-47ea-bae4-a0321c36d115 -2023-07-08 08:14:20.475957 2023-07-08 08:14:20.475967 mef 437 R rec f203a9e5-1012-4848-a408-44e424548042 -2023-07-08 08:14:20.606423 2023-07-08 08:14:20.606434 mef 438 R rec f8f19209-5a1e-40be-8608-5029eff3301f -2023-07-08 08:14:20.737393 2023-07-08 08:14:20.737407 mef 439 R rec 0fff08eb-e354-46f1-8d2b-550a9a9dccaf -2023-07-08 08:14:20.866061 2023-07-08 08:14:20.866073 mef 440 R rec 538a49fd-d30f-43b3-8f2d-be24a616b682 -2023-07-08 08:14:20.979399 2023-07-08 08:14:20.979409 mef 441 R rec 74771508-0e47-441f-a790-6a8df12c71a3 -2023-07-08 08:14:21.090282 2023-07-08 08:14:21.090295 mef 442 R rec 510f090b-4ce6-4a34-88ec-2481fe2caa13 -2023-07-08 08:14:21.202874 2023-07-08 08:14:21.202885 mef 443 R rec 3efb5efd-f6dc-4a77-a3c0-c9b415ff4088 -2023-07-08 08:14:21.313837 2023-07-08 08:14:21.313851 mef 444 R rec 681d9ee1-a0fa-43b0-b10c-e8a85a05e737 -2023-07-08 08:14:21.436416 2023-07-08 08:14:21.436426 mef 445 R rec 2dc518c0-c359-4bc9-8f32-8b2a074aed98 -2023-07-08 08:14:21.550795 2023-07-08 08:14:21.550808 mef 446 R rec 8c0000b3-5c10-4500-bb78-7e002ce6a3c1 -2023-07-08 08:14:21.655843 2023-07-08 08:14:21.655849 mef 447 R rec 457a6e23-5f3f-4e58-b155-bc642218d831 -2023-07-08 08:14:21.727862 2023-07-08 08:14:21.727867 mef 448 R rec 0aecb34d-cd3a-45bd-84c9-3d5fa43b674c -2023-07-08 08:14:21.801735 2023-07-08 08:14:21.80174 mef 449 R rec 01262c0a-3a49-4108-b8f8-3890ef78ba23 -2023-07-08 08:14:21.876321 2023-07-08 08:14:21.876326 mef 450 R rec c241cb8f-ffe5-49c3-8a36-b95af272d453 -2023-07-08 08:14:21.94709 2023-07-08 08:14:21.947095 mef 451 R rec 931cdcf9-46a9-4d8b-a8b1-73ec5a09c2d3 -2023-07-08 08:14:22.015549 2023-07-08 08:14:22.015554 mef 452 R rec 4edce007-3a0e-49f3-8c8a-84b6be46786c -2023-07-08 08:14:22.084042 2023-07-08 08:14:22.084047 mef 453 R rec ba12f283-27ff-42f3-bf83-c89aa73541a6 -2023-07-08 08:14:22.153924 2023-07-08 08:14:22.153929 mef 454 R rec 6878eb10-cd8a-4a2c-a4e5-041ccddc7ce9 -2023-07-08 08:14:22.223688 2023-07-08 08:14:22.223693 mef 455 R rec fd9ffbc1-1e7f-412c-8769-4c636590531b -2023-07-08 08:14:22.295684 2023-07-08 08:14:22.295689 mef 456 R rec fd85764c-23cb-4e28-b10a-057dd001a19d -2023-07-08 08:14:22.36638 2023-07-08 08:14:22.366385 mef 457 R rec f3c1e85b-e2e9-4ad4-b18a-fe7997b9f23b -2023-07-08 08:14:22.459565 2023-07-08 08:14:22.459577 mef 458 R rec 50d97540-650e-4343-8ecf-62aa6ea80ea4 -2023-07-08 08:14:22.539638 2023-07-08 08:14:22.539643 mef 459 R rec cd41186b-df8b-4bf3-8f74-cd9eacd715ff -2023-07-08 08:14:22.615691 2023-07-08 08:14:22.615697 mef 460 R rec 20c9c933-f42d-4375-b748-afc6f716942c -2023-07-08 08:14:22.699873 2023-07-08 08:14:22.699883 mef 461 R rec f1d629c4-db89-486b-9f20-70da3b93d936 -2023-07-08 08:14:22.789932 2023-07-08 08:14:22.789937 mef 462 R rec d4692819-46e9-475b-9ba4-f39dea998605 -2023-07-08 08:14:22.85865 2023-07-08 08:14:22.858655 mef 463 R rec 48c6373e-7973-45d9-9cb7-db082dfa7484 -2023-07-08 08:14:22.941979 2023-07-08 08:14:22.94199 mef 464 R rec 7f168576-17fa-4026-b3c1-dc361928e072 -2023-07-08 08:14:23.036886 2023-07-08 08:14:23.036896 mef 465 R rec 1008c6aa-5b3d-4f50-aca4-64a794584268 -2023-07-08 08:14:23.117605 2023-07-08 08:14:23.117611 mef 466 R rec 32435089-815f-48d2-99c4-94359cb353da -2023-07-08 08:14:23.206646 2023-07-08 08:14:23.206656 mef 467 R rec c19520b6-b12a-4d7c-b4b5-d90a0c961621 -2023-07-08 08:14:23.298153 2023-07-08 08:14:23.298158 mef 468 R rec 865561f7-8485-4b64-b3c2-83f11062d1c2 -2023-07-08 08:14:23.373029 2023-07-08 08:14:23.373035 mef 469 R rec 7a259c1d-c499-46ad-9809-6611d9edf1bd -2023-07-08 08:14:23.448466 2023-07-08 08:14:23.448471 mef 470 R rec 05b838af-b942-490d-8d0c-36bb86b33576 -2023-07-08 08:14:23.530395 2023-07-08 08:14:23.5304 mef 471 R rec 09c2af7e-a08a-43e6-b782-c63d827c633a -2023-07-08 08:14:23.616139 2023-07-08 08:14:23.616149 mef 472 R rec e2458bf3-d326-4dad-b128-46a031c522a2 -2023-07-08 08:14:23.691815 2023-07-08 08:14:23.691821 mef 473 R rec 6f82be5f-8205-48e9-8162-22082418fd83 -2023-07-08 08:14:23.761362 2023-07-08 08:14:23.761367 mef 474 R rec aff5ab78-30a1-4af2-ab35-d2d588fdecbe -2023-07-08 08:14:23.840512 2023-07-08 08:14:23.840517 mef 475 R rec 6cd0c452-616a-4f88-88d2-bd21f9743448 -2023-07-08 08:14:23.922314 2023-07-08 08:14:23.922319 mef 476 R rec a0b5a4c4-865a-4081-be69-5e9d99521911 -2023-07-08 08:14:23.986353 2023-07-08 08:14:23.986359 mef 477 R rec 744dd62a-6ebc-4e81-9b90-71afdbf34061 -2023-07-08 08:14:24.056575 2023-07-08 08:14:24.056579 mef 478 R rec cb3d411a-941d-4292-b137-8f9cd471ed4c -2023-07-08 08:14:24.125092 2023-07-08 08:14:24.125097 mef 479 R rec ce170c67-cffe-4163-90b9-c08e3c1dc739 -2023-07-08 08:14:24.199574 2023-07-08 08:14:24.199579 mef 480 R rec a1d05666-80f1-44c5-9c6a-9bb7315cc8a0 -2023-07-08 08:14:24.291769 2023-07-08 08:14:24.291778 mef 481 R rec d27a1762-8ebc-4307-8aa1-f7783cbc077c -2023-07-08 08:14:24.392066 2023-07-08 08:14:24.392078 mef 482 R rec e1d083c9-6ae0-43c8-82d6-2fa7652ee460 -2023-07-08 08:14:24.47735 2023-07-08 08:14:24.477359 mef 483 R rec 5c953443-eb5c-4d95-ae10-f96c06871d0e -2023-07-08 08:14:24.580625 2023-07-08 08:14:24.58064 mef 484 R rec 3332d83a-90cc-4df0-9219-e94775dc963c -2023-07-08 08:14:24.657209 2023-07-08 08:14:24.657213 mef 485 R rec 27a2b24d-00c0-415b-8f40-bbe1ad3dfd88 -2023-07-08 08:14:24.734015 2023-07-08 08:14:24.734026 mef 486 R rec 72a6900b-8ae4-4906-9d9e-99de0720dcc3 -2023-07-08 08:14:24.813452 2023-07-08 08:14:24.813457 mef 487 R rec 96d368d9-9a30-42dc-9f3b-fc64929dc9c1 -2023-07-08 08:14:24.892969 2023-07-08 08:14:24.892975 mef 488 R rec 82aba57d-22e1-4e8f-af19-fbd3899ce524 -2023-07-08 08:14:24.991058 2023-07-08 08:14:24.99107 mef 489 R rec a8a9cf7c-ed39-481c-abff-9dadc79a0440 -2023-07-08 08:14:25.101058 2023-07-08 08:14:25.101073 mef 490 R rec 15d6f2ed-7329-4c6d-880f-8545ba486c68 -2023-07-08 08:14:25.193901 2023-07-08 08:14:25.193906 mef 491 R rec 95e564cb-8550-478a-8071-6412cfbedca9 -2023-07-08 08:14:25.287955 2023-07-08 08:14:25.287965 mef 492 R rec 58ded463-1d2f-4c45-82ba-136ea97bb7ac -2023-07-08 08:14:25.367834 2023-07-08 08:14:25.367838 mef 493 R rec 8222a619-d197-4353-b2ad-b0d8b632b82f -2023-07-08 08:14:25.46131 2023-07-08 08:14:25.461327 mef 494 R rec 320f04d7-05e9-4c0b-8c02-99d86b35911f -2023-07-08 08:14:25.551517 2023-07-08 08:14:25.551526 mef 495 R rec 2182971a-9f79-4aa3-96b3-4de5c9258bc7 -2023-07-08 08:14:25.634037 2023-07-08 08:14:25.634043 mef 496 R rec a704bab7-4fee-42f9-87ed-fc64121c5ac5 -2023-07-08 08:14:25.716165 2023-07-08 08:14:25.716171 mef 497 R rec 1afb299f-bd6f-4a8c-ba1c-454a857dac87 -2023-07-08 08:14:25.808426 2023-07-08 08:14:25.808435 mef 498 R rec 3deb1ab2-58c1-4d12-b6c9-38d97739477e -2023-07-08 08:14:25.896764 2023-07-08 08:14:25.896774 mef 499 R rec da75fa63-c313-413a-864c-90e52f4a8928 -2023-07-08 08:14:25.991896 2023-07-08 08:14:25.991907 mef 500 R rec 7599c108-a0eb-4a73-84ea-e14cdb5221ed -2023-07-08 08:14:26.089986 2023-07-08 08:14:26.09 mef 501 R rec 0d9838ad-9ec0-4e83-ac7a-5738a6ddd5ef -2023-07-08 08:14:26.173488 2023-07-08 08:14:26.173495 mef 502 R rec 17d2e642-4904-4e03-9770-68b864de657e -2023-07-08 08:14:26.254887 2023-07-08 08:14:26.254896 mef 503 R rec 1359a043-c502-4e72-82d8-9450a64f41f4 -2023-07-08 08:14:26.350875 2023-07-08 08:14:26.350886 mef 504 R rec 99a921ab-9e34-402c-9fd1-35480fc87a05 -2023-07-08 08:14:26.443039 2023-07-08 08:14:26.443053 mef 505 R rec bb9a4718-11af-4923-aabb-5ba489addc59 -2023-07-08 08:14:26.522646 2023-07-08 08:14:26.522651 mef 506 R rec 13d26359-83da-458c-8f6a-605489c8b74b -2023-07-08 08:14:26.613832 2023-07-08 08:14:26.613842 mef 507 R rec eba0c092-9ab5-42b0-a451-280b9b6a6b92 -2023-07-08 08:14:26.711235 2023-07-08 08:14:26.711249 mef 508 R rec 8fb0d34a-7347-449f-b123-84110d17cb8f -2023-07-08 08:14:26.820155 2023-07-08 08:14:26.820165 mef 509 R rec 1f0b7d66-c8bf-4c7f-921d-1deda364d54b -2023-07-08 08:14:26.913687 2023-07-08 08:14:26.913702 mef 510 R rec 1b82e8be-052c-426f-9c74-70c1f8424f83 -2023-07-08 08:14:27.009194 2023-07-08 08:14:27.009209 mef 511 R rec 4a2e0b9d-c688-4176-9321-7aed903fcacc -2023-07-08 08:14:27.09392 2023-07-08 08:14:27.093931 mef 512 R rec 48e13cb0-f544-4905-8acb-c2e8ffb36f49 -2023-07-08 08:14:27.183204 2023-07-08 08:14:27.18322 mef 513 R rec 4ed7b04f-77b7-4368-89fc-270408d8acc1 -2023-07-08 08:14:27.281956 2023-07-08 08:14:27.281964 mef 514 R rec 3fc2c4e4-89f8-49fa-80a5-f2811de7779b -2023-07-08 08:14:27.372837 2023-07-08 08:14:27.372851 mef 515 R rec ed3dad65-f963-464c-bdff-4cd9450ab9fb -2023-07-08 08:14:27.452991 2023-07-08 08:14:27.452996 mef 516 R rec 656aa786-763f-4ea6-8d70-1f5340fda921 -2023-07-08 08:14:27.537021 2023-07-08 08:14:27.537034 mef 517 R rec 60b1ca18-c144-4a16-a24d-daa9559f39c6 -2023-07-08 08:14:27.626988 2023-07-08 08:14:27.626993 mef 518 R rec 60276868-2a6e-4e6a-b380-7c0c152bdb79 -2023-07-08 08:14:27.716151 2023-07-08 08:14:27.716156 mef 519 R rec 09485713-a247-4171-889d-bf0cc6170dd3 -2023-07-08 08:14:27.795648 2023-07-08 08:14:27.795655 mef 520 R rec 218403a8-2aac-44d7-ab54-0d7e3c106720 -2023-07-08 08:14:27.89796 2023-07-08 08:14:27.89797 mef 521 R rec 9ba8ec08-8540-4b6c-a8e7-3a735feba6a1 -2023-07-08 08:14:27.983566 2023-07-08 08:14:27.983576 mef 522 R rec 39342e9e-d714-48b0-8904-ac46f5c23d11 -2023-07-08 08:14:28.072209 2023-07-08 08:14:28.072214 mef 523 R rec a50f229e-f411-4a86-a978-f3f28abe28e6 -2023-07-08 08:14:28.166796 2023-07-08 08:14:28.166809 mef 524 R rec f0467001-d163-4ae3-80a7-912ad5891f6e -2023-07-08 08:14:28.279057 2023-07-08 08:14:28.279067 mef 525 R rec 5eef9667-ff86-46f1-940c-d399561d1bf5 -2023-07-08 08:14:28.376199 2023-07-08 08:14:28.376209 mef 526 R rec f8ca8713-558f-45c5-bf73-e3348a2dbf0e -2023-07-08 08:14:28.452843 2023-07-08 08:14:28.452848 mef 527 R rec 37e1fe40-51ed-4f7a-9559-88e5359d5ce7 -2023-07-08 08:14:28.542225 2023-07-08 08:14:28.542236 mef 528 R rec 38541f43-b10a-47d2-a759-f20bf8e32546 -2023-07-08 08:14:28.632802 2023-07-08 08:14:28.632807 mef 529 R rec 1abdc398-61a7-4295-bb55-8d479719f92a -2023-07-08 08:14:28.73316 2023-07-08 08:14:28.733165 mef 530 R rec e721d6d0-5553-406a-b432-5ca62eeced28 -2023-07-08 08:14:28.809563 2023-07-08 08:14:28.809568 mef 531 R rec 1e290b38-7bda-4d7d-b225-1d66a2846442 -2023-07-08 08:14:28.880905 2023-07-08 08:14:28.88091 mef 532 R rec 16d5528e-bfba-4bae-a8dc-6ae8e2610d36 -2023-07-08 08:14:28.967458 2023-07-08 08:14:28.967468 mef 533 R rec 38065a86-a282-455f-836c-f856e777d9e8 -2023-07-08 08:14:29.103518 2023-07-08 08:14:29.103531 mef 534 R rec 75d51227-1aaa-49ee-9ec7-1593da3ed174 -2023-07-08 08:14:29.214567 2023-07-08 08:14:29.214576 mef 535 R rec 314d8dd5-3dd6-4f60-ab26-7e04ba0df0b3 -2023-07-08 08:14:29.335035 2023-07-08 08:14:29.335046 mef 536 R rec 8bbea393-04ba-461b-8058-b911829d7f7d -2023-07-08 08:14:29.442179 2023-07-08 08:14:29.442189 mef 537 R rec 2ea0be09-330b-4553-bbc0-e071ebf47c55 -2023-07-08 08:14:29.545934 2023-07-08 08:14:29.545949 mef 538 R rec 73524818-8b13-4715-bf9a-687e121be7f9 -2023-07-08 08:14:29.652812 2023-07-08 08:14:29.652821 mef 539 R rec 032756d2-5dd1-433b-8dce-beca0bbc7cd0 -2023-07-08 08:14:29.780663 2023-07-08 08:14:29.780678 mef 540 R rec b57193c1-5dd2-451e-9a85-511ad209149a -2023-07-08 08:14:29.890399 2023-07-08 08:14:29.890413 mef 541 R rec b888f899-6a2c-48aa-9bb8-ea0288ec42fb -2023-07-08 08:14:30.017439 2023-07-08 08:14:30.017449 mef 542 R rec cdb31f60-1910-4ff3-92ac-ca2ded30faa5 -2023-07-08 08:14:30.141276 2023-07-08 08:14:30.141287 mef 543 R rec 74842f14-ce2f-4396-aa68-8c2c802b701d -2023-07-08 08:14:30.251498 2023-07-08 08:14:30.251508 mef 544 R rec 34f8963f-7034-4c88-959e-15bd2cb47a97 -2023-07-08 08:14:30.372467 2023-07-08 08:14:30.372477 mef 545 R rec 2b80a26a-275e-4469-805a-8483fb7f01fc -2023-07-08 08:14:30.487981 2023-07-08 08:14:30.487997 mef 546 R rec bbe4529a-01a0-4eca-a2bf-8a42988db4aa -2023-07-08 08:14:30.616545 2023-07-08 08:14:30.616565 mef 547 R rec 008e0d7b-3b50-4a62-a9dc-a4a077b7b56e -2023-07-08 08:14:30.759686 2023-07-08 08:14:30.759701 mef 548 R rec 58e54d47-7608-4683-8f08-7ffd505a6422 -2023-07-08 08:14:30.89292 2023-07-08 08:14:30.892925 mef 549 R rec b6f198e3-4c6b-483b-9f43-15e45c373d17 -2023-07-08 08:14:31.009558 2023-07-08 08:14:31.009569 mef 550 R rec 32ce0b51-a9b1-4703-bfaa-8b07c9f437d3 -2023-07-08 08:14:31.133316 2023-07-08 08:14:31.133326 mef 551 R rec b3f3ef80-ada9-42d3-8c28-d0c23d32a839 -2023-07-08 08:14:31.252933 2023-07-08 08:14:31.252944 mef 552 R rec e53d4a44-72ff-43ce-887e-817dffe6a509 -2023-07-08 08:14:31.379945 2023-07-08 08:14:31.379955 mef 553 R rec 75b8a03e-7ac2-4408-8bce-278d9ee2afc4 -2023-07-08 08:14:31.524149 2023-07-08 08:14:31.524161 mef 554 R rec 2f060fda-cd78-419e-aed4-b90a4537d7a5 -2023-07-08 08:14:31.640468 2023-07-08 08:14:31.640481 mef 555 R rec a7c5855d-d43f-41b6-9618-eeb06b6a9535 -2023-07-08 08:14:31.77787 2023-07-08 08:14:31.777881 mef 556 R rec 98c61f71-8282-4688-931d-53a641d4d1e9 -2023-07-08 08:14:31.890245 2023-07-08 08:14:31.890255 mef 557 R rec 1ca599e5-df1d-4611-9aa4-57bf5d21aa8e -2023-07-08 08:14:32.009241 2023-07-08 08:14:32.009244 mef 558 R rec ab2269fc-7d5e-4e08-9091-b014eb0dd623 -2023-07-08 08:14:32.151366 2023-07-08 08:14:32.151387 mef 559 R rec cbe63a99-4627-42e1-a65a-769a7684963f -2023-07-08 08:14:32.262894 2023-07-08 08:14:32.262905 mef 560 R rec 8cfb6f05-7c17-4c75-a554-0c5755bcd380 -2023-07-08 08:14:32.365822 2023-07-08 08:14:32.365832 mef 561 R rec 78402993-2893-426c-b1ba-a4743fb02b74 -2023-07-08 08:14:32.474581 2023-07-08 08:14:32.474591 mef 562 R rec 2016209c-5801-4008-89f9-628dd8e5eb97 -2023-07-08 08:14:32.580537 2023-07-08 08:14:32.580548 mef 563 R rec 27db2c91-803c-487f-83cc-93cb1ee4db93 -2023-07-08 08:14:32.684842 2023-07-08 08:14:32.684852 mef 564 R rec f7ddfac8-741e-4918-a29e-9b533d7b4259 -2023-07-08 08:14:32.812169 2023-07-08 08:14:32.812182 mef 565 R rec 98dd0eb2-578a-4983-a48f-a60a33aca43e -2023-07-08 08:14:32.917595 2023-07-08 08:14:32.917606 mef 566 R rec fd149b5b-26cb-4467-8b94-7a978a00c3d8 -2023-07-08 08:14:33.032404 2023-07-08 08:14:33.032414 mef 567 R rec d4ba9fad-72a5-48f6-aaf9-821fdd341be3 -2023-07-08 08:14:33.153823 2023-07-08 08:14:33.153834 mef 568 R rec c74d1c58-c45f-44bc-8ced-cf3d9569b9ad -2023-07-08 08:14:33.248657 2023-07-08 08:14:33.248668 mef 569 R rec 75d2a726-dc0b-4ea7-b643-3e37f54dbd7c -2023-07-08 08:14:33.34896 2023-07-08 08:14:33.348969 mef 570 R rec 6498f1d4-9613-46f7-ac8a-4998a9c8fb15 -2023-07-08 08:14:33.464775 2023-07-08 08:14:33.464793 mef 571 R rec dab13a85-5224-4dde-b3b4-2a4164ee97cc -2023-07-08 08:14:33.590435 2023-07-08 08:14:33.590452 mef 572 R rec 61474436-aaac-4a8f-86ea-0f234a9ace0c -2023-07-08 08:14:33.700006 2023-07-08 08:14:33.700021 mef 573 R rec 79d3ed55-8102-42cb-a1f1-72159e430689 -2023-07-08 08:14:33.827521 2023-07-08 08:14:33.827532 mef 574 R rec 89724568-bcd5-40d0-bf60-db9abac0462e -2023-07-08 08:14:33.953319 2023-07-08 08:14:33.953329 mef 575 R rec 4359cd54-01b3-4586-a0db-5e7315a1aaec -2023-07-08 08:14:34.085711 2023-07-08 08:14:34.085721 mef 576 R rec ee4ece66-df6f-42c6-88a3-c39e67d18d32 -2023-07-08 08:14:34.211455 2023-07-08 08:14:34.211466 mef 577 R rec 27531454-a7e6-4b5d-923b-e8a3a3e199dc -2023-07-08 08:14:34.331589 2023-07-08 08:14:34.3316 mef 578 R rec c3a65706-9bb2-4122-b8d0-d4e20e64fcf0 -2023-07-08 08:14:34.445378 2023-07-08 08:14:34.445383 mef 579 R rec bef29a08-ba91-4439-ad00-1038f824055a -2023-07-08 08:14:34.550404 2023-07-08 08:14:34.550409 mef 580 R rec f6bb5425-1b10-41b9-ad8a-908c9cf9a66c -2023-07-08 08:14:34.685946 2023-07-08 08:14:34.685957 mef 581 R rec 186a89b6-5917-4a49-9330-3cb7aaeeb9a0 -2023-07-08 08:14:34.814375 2023-07-08 08:14:34.814391 mef 582 R rec 08eb8cd8-2c9c-43f6-85d0-a82050dddc48 -2023-07-08 08:14:34.937249 2023-07-08 08:14:34.93726 mef 583 R rec 26a23aac-5d7f-445b-a157-626518815d15 -2023-07-08 08:14:35.059305 2023-07-08 08:14:35.059315 mef 584 R rec f00c8de4-ba33-4a99-bb98-62f37506e444 -2023-07-08 08:14:35.168613 2023-07-08 08:14:35.168619 mef 585 R rec 2fd35a84-9b9c-4f10-8a71-036576ea491b -2023-07-08 08:14:35.241486 2023-07-08 08:14:35.241491 mef 586 R rec b07a10c5-2328-49ca-b0dd-a1d52d890d30 -2023-07-08 08:14:35.311956 2023-07-08 08:14:35.311961 mef 587 R rec 4629d340-cb5b-48e4-baae-697aeaeaea53 -2023-07-08 08:14:35.384978 2023-07-08 08:14:35.384982 mef 588 R rec 069aed6d-9cfa-437b-89df-d80d6e916553 -2023-07-08 08:14:35.461485 2023-07-08 08:14:35.461489 mef 589 R rec 7cf1a38d-8900-4968-84d1-a6c356b4cd5d -2023-07-08 08:14:35.529949 2023-07-08 08:14:35.529953 mef 590 R rec 304f472f-0da3-4426-869c-0bfb4aab06e3 -2023-07-08 08:14:35.604738 2023-07-08 08:14:35.604748 mef 591 R rec 62e29450-99d8-44a9-9d16-b936c47c9470 -2023-07-08 08:14:35.705364 2023-07-08 08:14:35.705368 mef 592 R rec af7f95e6-b4ed-4403-baec-f8cc667a3210 -2023-07-08 08:14:35.781582 2023-07-08 08:14:35.781587 mef 593 R rec b1a66e66-1f30-4c90-b5f1-080606777f31 -2023-07-08 08:14:35.881804 2023-07-08 08:14:35.881815 mef 594 R rec c85fc4f1-a918-49fe-8132-98819d1a7802 -2023-07-08 08:14:35.98142 2023-07-08 08:14:35.981425 mef 595 R rec 6d986a86-c632-497f-8e9a-5669a0c29835 -2023-07-08 08:14:36.075014 2023-07-08 08:14:36.075027 mef 596 R rec 10d0f6e9-e042-4abf-827d-d5409866ed29 -2023-07-08 08:14:36.163961 2023-07-08 08:14:36.163964 mef 597 R rec ec119713-de1d-4943-ae4e-f0d9b209aeaf -2023-07-08 08:14:36.256434 2023-07-08 08:14:36.256448 mef 598 R rec af585491-349e-4b1c-8bbf-57e353797138 -2023-07-08 08:14:36.36722 2023-07-08 08:14:36.36723 mef 599 R rec cd18d63d-3921-4552-963e-07c824254388 -2023-07-08 08:14:36.459742 2023-07-08 08:14:36.459757 mef 600 R rec fdcb58b3-024c-43bb-a99e-5f94ee079d2c -2023-07-08 08:14:36.551829 2023-07-08 08:14:36.55184 mef 601 R rec 14b51bfa-a5b4-44f1-b660-b58218d1caaf -2023-07-08 08:14:36.634282 2023-07-08 08:14:36.634287 mef 602 R rec 6da074c2-6d9a-4fad-9d42-6043e16f766c -2023-07-08 08:14:36.706839 2023-07-08 08:14:36.706844 mef 603 R rec 0bb3fccf-6726-4ae5-90f5-915cc4d6926b -2023-07-08 08:14:36.779127 2023-07-08 08:14:36.779135 mef 604 R rec 7c923509-cef6-486d-a465-56c99310d106 -2023-07-08 08:14:36.881715 2023-07-08 08:14:36.881726 mef 605 R rec 03bc6c32-b1e9-4a18-bad0-2a79093c36bd -2023-07-08 08:14:36.981998 2023-07-08 08:14:36.982011 mef 606 R rec 81a7e6c7-b079-4a2e-9c3b-7147e6e609b1 -2023-07-08 08:14:37.066355 2023-07-08 08:14:37.06636 mef 607 R rec ce810c08-9a28-45a5-9e56-ad84e460dcfc -2023-07-08 08:14:37.144695 2023-07-08 08:14:37.1447 mef 608 R rec 8af40731-ca87-4911-a373-d81c7a678bc5 -2023-07-08 08:14:37.217623 2023-07-08 08:14:37.217628 mef 609 R rec 82668869-d69f-4a1d-a366-04fa9a28b90b -2023-07-08 08:14:37.299141 2023-07-08 08:14:37.299146 mef 610 R rec 37f7f383-217f-4c6e-8c97-1e869d1c18ef -2023-07-08 08:14:37.377919 2023-07-08 08:14:37.377925 mef 611 R rec d3bd8d0e-e90b-43c1-86d0-eb810697cf02 -2023-07-08 08:14:37.444961 2023-07-08 08:14:37.444965 mef 612 R rec aaa19059-2624-49e6-a7b3-ead6d35ae403 -2023-07-08 08:14:37.50979 2023-07-08 08:14:37.509795 mef 613 R rec 661a1df3-1870-4e81-bc94-c9184711bec3 -2023-07-08 08:14:37.574339 2023-07-08 08:14:37.574343 mef 614 R rec 92acb059-f217-470c-9c1a-cdbd161951e2 -2023-07-08 08:14:37.645842 2023-07-08 08:14:37.645847 mef 615 R rec 095b8805-b7bc-4525-91c8-cc905ecaf689 -2023-07-08 08:14:37.716629 2023-07-08 08:14:37.716638 mef 616 R rec b0fbaa52-dbe2-4bd1-a5ec-67be3b6640a1 -2023-07-08 08:14:37.792299 2023-07-08 08:14:37.792305 mef 617 R rec 74567620-a200-4941-9799-72aea037bcba -2023-07-08 08:14:37.869322 2023-07-08 08:14:37.869327 mef 618 R rec 0826440c-0e26-415c-bd5d-d9338d57f8a0 -2023-07-08 08:14:37.960084 2023-07-08 08:14:37.960094 mef 619 R rec 866905ec-a11b-43f5-9bdf-46dfb1dab95e -2023-07-08 08:14:38.047862 2023-07-08 08:14:38.047866 mef 620 R rec 35d66990-937c-4f3c-aac4-d71f69f7da1c -2023-07-08 08:14:38.128219 2023-07-08 08:14:38.128224 mef 621 R rec 4eb447e2-5b46-44a8-9d00-bad0bcbc5bb6 -2023-07-08 08:14:38.212494 2023-07-08 08:14:38.212504 mef 622 R rec 346216e0-5a97-4816-b427-a0b7e02afae0 -2023-07-08 08:14:38.309366 2023-07-08 08:14:38.309376 mef 623 R rec 0bd07b87-fe40-4bd9-8dc0-43b39d61832e -2023-07-08 08:14:38.395946 2023-07-08 08:14:38.395956 mef 624 R rec 5b6e0a05-121c-4858-bd85-ff4d2e21b330 -2023-07-08 08:14:38.47965 2023-07-08 08:14:38.479654 mef 625 R rec 9c2b2797-3817-4146-8027-2aef1f61d2f7 -2023-07-08 08:14:38.565124 2023-07-08 08:14:38.565134 mef 626 R rec 35f95a5a-6194-4d39-897a-7edba5565982 -2023-07-08 08:14:38.655701 2023-07-08 08:14:38.655706 mef 627 R rec e0db89b3-91cf-4ddc-93b1-33742e7f960d -2023-07-08 08:14:38.741601 2023-07-08 08:14:38.741618 mef 628 R rec 13766fc1-fc29-4d43-a7b3-692844df6dcc -2023-07-08 08:14:38.830422 2023-07-08 08:14:38.830427 mef 629 R rec 44a2472b-8438-418b-a059-0488067fffbc -2023-07-08 08:14:38.908699 2023-07-08 08:14:38.908704 mef 630 R rec 55194d31-f14a-46cc-b5d4-0ac74145601b -2023-07-08 08:14:38.99529 2023-07-08 08:14:38.995303 mef 631 R rec 69e6c730-f2c4-49a0-8108-e2f36d668cf4 -2023-07-08 08:14:39.088662 2023-07-08 08:14:39.088673 mef 632 R rec 9f2215da-84b1-4905-82e0-f225bb20ec79 -2023-07-08 08:14:39.194016 2023-07-08 08:14:39.194031 mef 633 R rec a28e1725-24be-4f52-b86d-dd422b102e49 -2023-07-08 08:14:39.337087 2023-07-08 08:14:39.337098 mef 634 R rec fb2057f9-d47f-44cc-ae90-9539b5d3531b -2023-07-08 08:14:39.453178 2023-07-08 08:14:39.453195 mef 635 R rec 97c9a549-ba71-4b3d-ae52-9550396a0553 -2023-07-08 08:14:39.564735 2023-07-08 08:14:39.564746 mef 636 R rec 543a0549-e5ae-4362-bad4-5a145ce1304c -2023-07-08 08:14:39.687093 2023-07-08 08:14:39.687104 mef 637 R rec b9f01608-07c1-4758-b87c-29a4eed053ad -2023-07-08 08:14:39.787648 2023-07-08 08:14:39.787852 mef 638 R rec b9222c96-1a00-48e7-97aa-19844bb9d623 -2023-07-08 08:14:39.885716 2023-07-08 08:14:39.885732 mef 639 R rec 643ccdc9-ead2-4324-b5f1-3df6b3782425 -2023-07-08 08:14:40.008998 2023-07-08 08:14:40.009014 mef 640 R rec 5e6aee42-11b9-4c4f-95db-c46ed4bd2d46 -2023-07-08 08:14:40.10251 2023-07-08 08:14:40.102519 mef 641 R rec 42b58725-faeb-44b0-8a28-b60a69f9d066 -2023-07-08 08:14:40.193982 2023-07-08 08:14:40.193993 mef 642 R rec f69fc990-df52-4940-a308-b43a2ef27e22 -2023-07-08 08:14:40.290361 2023-07-08 08:14:40.290376 mef 643 R rec 99b82615-4110-4b73-9cc1-894f3c41385a -2023-07-08 08:14:40.383359 2023-07-08 08:14:40.383369 mef 644 R rec 1a0f7723-dc20-459e-b625-aad1eb5c14bf -2023-07-08 08:14:40.473691 2023-07-08 08:14:40.473702 mef 645 R rec 674098f5-d20c-4da1-a57b-e4d6005c5f99 -2023-07-08 08:14:40.56238 2023-07-08 08:14:40.562395 mef 646 R rec a106df4d-9932-4b46-ba32-e9307097f6ba -2023-07-08 08:14:40.653746 2023-07-08 08:14:40.653751 mef 647 R rec 2cfeb42b-3d84-4cb3-bfe3-c6ad6cfd2823 -2023-07-08 08:14:40.73196 2023-07-08 08:14:40.73197 mef 648 R rec 5faab1d5-d9a5-4788-8540-3d7e3202468a -2023-07-08 08:14:40.822772 2023-07-08 08:14:40.822782 mef 649 R rec 66e89a6b-5e82-4ecd-bbdd-23dc545a172b -2023-07-08 08:14:40.913943 2023-07-08 08:14:40.913958 mef 650 R rec 4606c82a-789b-4c7d-8691-1e670e794ff5 -2023-07-08 08:14:41.007024 2023-07-08 08:14:41.00704 mef 651 R rec 9ef707c8-e0e4-4317-a170-75804a51bbd3 -2023-07-08 08:14:41.111176 2023-07-08 08:14:41.111188 mef 652 R rec bbf37cea-a4f8-40b1-9c00-afcf5b37d5cd -2023-07-08 08:14:41.191792 2023-07-08 08:14:41.191797 mef 653 R rec 7d05ca78-c0e8-4170-a739-f2e0e06c341a -2023-07-08 08:14:41.271615 2023-07-08 08:14:41.271628 mef 654 R rec ea7472af-2d54-441f-ba17-21337576750f -2023-07-08 08:14:41.361519 2023-07-08 08:14:41.361533 mef 655 R rec f93440d8-7289-4f3b-8151-b831b9f2941c -2023-07-08 08:14:41.445951 2023-07-08 08:14:41.445959 mef 656 R rec 16bd1c13-8fb1-4dc9-aacf-f894a467f5f4 -2023-07-08 08:14:41.550025 2023-07-08 08:14:41.550038 mef 657 R rec 597bea69-ca24-4452-a902-3ff8e1ebde84 -2023-07-08 08:14:41.645562 2023-07-08 08:14:41.645567 mef 658 R rec 30a146d3-8e64-4e20-acc9-f21b2192e325 -2023-07-08 08:14:41.717345 2023-07-08 08:14:41.717355 mef 659 R rec ccc90cc3-0c29-4282-8119-f20ce51b4660 -2023-07-08 08:14:41.828384 2023-07-08 08:14:41.82839 mef 660 R rec 57485fc7-a9ff-4d7c-8eaf-dd80c19c382a -2023-07-08 08:14:41.93471 2023-07-08 08:14:41.934715 mef 661 R rec ca4c0bf7-9ebe-4b88-9514-adc67deeaa18 -2023-07-08 08:14:42.027774 2023-07-08 08:14:42.02779 mef 662 R rec f092542b-f84b-4658-9f89-a42202b9aa2e -2023-07-08 08:14:42.113922 2023-07-08 08:14:42.113929 mef 663 R rec db35992e-167a-4ac2-8981-221ea5674fba -2023-07-08 08:14:42.193749 2023-07-08 08:14:42.193753 mef 664 R rec 391286f3-617d-45b3-be13-8ebdbb467754 -2023-07-08 08:14:42.27038 2023-07-08 08:14:42.270385 mef 665 R rec 56260737-dcfc-43fc-94a5-a51a44a71264 -2023-07-08 08:14:42.367507 2023-07-08 08:14:42.367516 mef 666 R rec daf851bb-6174-43a6-a96f-017e713bb904 -2023-07-08 08:14:42.474982 2023-07-08 08:14:42.474992 mef 667 R rec 2feeb89d-b010-426d-b46d-2a9dfd836fea -2023-07-08 08:14:42.574751 2023-07-08 08:14:42.574762 mef 668 R rec ddcb86d7-b2b8-42c8-8945-c34ee08d6f99 -2023-07-08 08:14:42.654096 2023-07-08 08:14:42.654105 mef 669 R rec 316aefa8-66f5-4fc8-8eba-8f2b02e0e027 -2023-07-08 08:14:42.741819 2023-07-08 08:14:42.741832 mef 670 R rec 3744ebc0-819b-4c80-be3f-a449aa4c1c7e -2023-07-08 08:14:42.827805 2023-07-08 08:14:42.82781 mef 671 R rec 581bffe4-e271-4624-b8a8-9f79bab1b4a5 -2023-07-08 08:14:42.911577 2023-07-08 08:14:42.911586 mef 672 R rec fa8a6762-84a6-4f91-a2f9-4545d71dceda -2023-07-08 08:14:43.004145 2023-07-08 08:14:43.004157 mef 673 R rec 4e25b64d-6898-41a6-b612-ef27c624f715 -2023-07-08 08:14:43.09823 2023-07-08 08:14:43.09824 mef 674 R rec e3097ed0-dff4-490a-b867-971b9ac129d3 -2023-07-08 08:14:43.183073 2023-07-08 08:14:43.183079 mef 675 R rec 1dd06d93-9dd6-4282-9c88-80e478a422b0 -2023-07-08 08:14:43.260886 2023-07-08 08:14:43.260891 mef 676 R rec 2e357620-ec33-4902-b555-818a0978e4fa -2023-07-08 08:14:43.343696 2023-07-08 08:14:43.343701 mef 677 R rec 9f8c6c87-f3a7-4b8a-b97d-63d2db2325db -2023-07-08 08:14:43.416785 2023-07-08 08:14:43.416794 mef 678 R rec a40288e8-0a9e-43c0-8f09-a55a1e621e59 -2023-07-08 08:14:43.498653 2023-07-08 08:14:43.498657 mef 679 R rec 38714ce6-686e-4c1a-b716-b9d2c013cb34 -2023-07-08 08:14:43.577895 2023-07-08 08:14:43.5779 mef 680 R rec d9b3c740-7b70-4216-ad29-98bc9b81599f -2023-07-08 08:14:43.65431 2023-07-08 08:14:43.654315 mef 681 R rec 035a3fef-c9f0-4a61-93cc-6f5d62833085 -2023-07-08 08:14:43.736078 2023-07-08 08:14:43.736088 mef 682 R rec f3035ec9-7257-4591-8300-c7560b6f6e80 -2023-07-08 08:14:43.812129 2023-07-08 08:14:43.812132 mef 683 R rec e8a54e19-019a-4235-9179-caf5a3e400d7 -2023-07-08 08:14:43.889311 2023-07-08 08:14:43.889321 mef 684 R rec 179a4fe0-010d-437c-b044-4d1deb93a212 -2023-07-08 08:14:43.971109 2023-07-08 08:14:43.971113 mef 685 R rec 8705a5a5-40e8-4351-8933-52962111b8bb -2023-07-08 08:14:44.059275 2023-07-08 08:14:44.059285 mef 686 R rec 9a95fdab-15b6-46ab-b344-e98854859001 -2023-07-08 08:14:44.144484 2023-07-08 08:14:44.144489 mef 687 R rec 850357fa-f689-4752-873e-7d6b840689f4 -2023-07-08 08:14:44.236935 2023-07-08 08:14:44.236944 mef 688 R rec 2e80882a-f781-4b7d-b1f5-45715f441ff3 -2023-07-08 08:14:44.32382 2023-07-08 08:14:44.32383 mef 689 R rec d4466cc3-0c43-4375-9388-257f802ba022 -2023-07-08 08:14:44.411091 2023-07-08 08:14:44.411101 mef 690 R rec a7b8d9ba-2e6c-4603-849e-2f37342762b9 -2023-07-08 08:14:44.508585 2023-07-08 08:14:44.508597 mef 691 R rec 88528352-0d15-40cd-88d5-4a02d3da0b7c -2023-07-08 08:14:44.596162 2023-07-08 08:14:44.596173 mef 692 R rec 3b8e1ef2-5539-47ab-812b-f078849541cf -2023-07-08 08:14:44.678205 2023-07-08 08:14:44.67821 mef 693 R rec bc9bd500-eda4-4cdd-ac3b-3003ec7d3a38 -2023-07-08 08:14:44.775783 2023-07-08 08:14:44.775793 mef 694 R rec 3059a6bb-6542-414d-bd84-e3373868ec1f -2023-07-08 08:14:44.86174 2023-07-08 08:14:44.861749 mef 695 R rec 5e5b20a0-8938-4f18-a5b1-22f5b3f845c3 -2023-07-08 08:14:44.942195 2023-07-08 08:14:44.9422 mef 696 R rec bbddb37a-5419-4804-aa0a-779381e3faf7 -2023-07-08 08:14:45.025601 2023-07-08 08:14:45.025613 mef 697 R rec d5d8762e-fdc2-4961-9fa0-58070e78b756 -2023-07-08 08:14:45.103591 2023-07-08 08:14:45.103596 mef 698 R rec 78702151-4a97-4c8a-92ac-a16e992539ca -2023-07-08 08:14:45.17674 2023-07-08 08:14:45.176745 mef 699 R rec a87becc0-acef-4b79-9c0c-2d1eb1c9845d -2023-07-08 08:14:45.265389 2023-07-08 08:14:45.265402 mef 700 R rec 07ce05db-0e63-41da-a44d-54a8d4cb22c7 -2023-07-08 08:14:45.34699 2023-07-08 08:14:45.346995 mef 701 R rec 05edee6d-3bde-43ad-8a67-80e55216805b -2023-07-08 08:14:45.430698 2023-07-08 08:14:45.430707 mef 702 R rec 04b175d1-7bb1-4673-a652-f5e8a678caa3 -2023-07-08 08:14:45.518564 2023-07-08 08:14:45.518575 mef 703 R rec b1006484-c40e-4cb7-ba27-8664e609552a -2023-07-08 08:14:45.60926 2023-07-08 08:14:45.609273 mef 704 R rec 0c9bce24-63a4-4c61-ac92-db5aebd245b4 -2023-07-08 08:14:45.709483 2023-07-08 08:14:45.709498 mef 705 R rec e9212810-7a0b-49f5-8ae0-d5afe7287e13 -2023-07-08 08:14:45.797132 2023-07-08 08:14:45.797142 mef 706 R rec a0511a2e-eb51-4d45-8d17-e78763930759 -2023-07-08 08:14:45.879086 2023-07-08 08:14:45.879091 mef 707 R rec 424e5160-1daa-4d1e-8ab4-4348b762c1e0 -2023-07-08 08:14:45.969842 2023-07-08 08:14:45.969863 mef 708 R rec d701f27b-d603-4dd4-9480-543d5af64a9c -2023-07-08 08:14:46.074776 2023-07-08 08:14:46.074786 mef 709 R rec 120e5273-44a7-4295-b17d-a6a037d20d70 -2023-07-08 08:14:46.155065 2023-07-08 08:14:46.155069 mef 710 R rec 3c7bb2b0-f321-4ebc-8eb2-9fa0dc90cea2 -2023-07-08 08:14:46.229085 2023-07-08 08:14:46.229091 mef 711 R rec 8ed1eae5-d8b3-4feb-a98f-2ecd3373c775 -2023-07-08 08:14:46.329565 2023-07-08 08:14:46.329577 mef 712 R rec 00786721-190e-4a63-9bbc-e9c65a2d5ac6 -2023-07-08 08:14:46.420991 2023-07-08 08:14:46.421001 mef 713 R rec 6c03867a-c27a-424d-9a8e-8467bea7e46c -2023-07-08 08:14:46.503852 2023-07-08 08:14:46.503862 mef 714 R rec 69a9c6dd-1113-4cc5-aef6-02fcb6c2ca8b -2023-07-08 08:14:46.587972 2023-07-08 08:14:46.587977 mef 715 R rec 5f3e5e10-281f-41dc-b560-7498a7f6e3a7 -2023-07-08 08:14:46.671028 2023-07-08 08:14:46.671036 mef 716 R rec 22776e1c-0690-4367-967c-388362e06dcd -2023-07-08 08:14:46.78045 2023-07-08 08:14:46.78046 mef 717 R rec adda26b0-cf60-42f9-8bc5-b5025ff2c40f -2023-07-08 08:14:46.864154 2023-07-08 08:14:46.864159 mef 718 R rec d2beb0c1-ce51-4a38-8f55-f1cccf98c688 -2023-07-08 08:14:46.947287 2023-07-08 08:14:46.947292 mef 719 R rec e933dd7e-42fc-45af-8ef0-2f1e69fae735 -2023-07-08 08:14:47.034468 2023-07-08 08:14:47.034478 mef 720 R rec b7c0c4e2-899c-4c9c-9861-787ceaa30d75 -2023-07-08 08:14:47.139203 2023-07-08 08:14:47.139209 mef 721 R rec af698476-fe49-41d1-961d-4c99bc408337 -2023-07-08 08:14:47.215125 2023-07-08 08:14:47.21513 mef 722 R rec b3687726-14d1-4ac1-a45f-000184edd230 -2023-07-08 08:14:47.283626 2023-07-08 08:14:47.283635 mef 723 R rec 361c8c19-96cc-44d2-8ce7-1f069c970a60 -2023-07-08 08:14:47.363273 2023-07-08 08:14:47.363278 mef 724 R rec 0ab3f9a9-38be-4248-b739-0da730386583 -2023-07-08 08:14:47.441954 2023-07-08 08:14:47.441958 mef 725 R rec 38b18309-e298-49c9-ba43-2477b7ba9c1c -2023-07-08 08:14:47.534156 2023-07-08 08:14:47.534161 mef 726 R rec 5691ed98-e3b7-4075-bfc4-9a2aa77baeac -2023-07-08 08:14:47.622314 2023-07-08 08:14:47.62233 mef 727 R rec d471de68-485d-4256-995f-ec4568ccc83d -2023-07-08 08:14:47.706756 2023-07-08 08:14:47.706766 mef 728 R rec e18d81ac-22de-4e7d-9f33-938e1b1ff383 -2023-07-08 08:14:47.790662 2023-07-08 08:14:47.790673 mef 729 R rec 8be2734a-f00f-4370-8576-ec5e74dc47b2 -2023-07-08 08:14:47.881899 2023-07-08 08:14:47.88191 mef 730 R rec 8faf4be3-afa0-4c70-bf5d-d6ca4fe17efb -2023-07-08 08:14:47.97651 2023-07-08 08:14:47.976516 mef 731 R rec 0c3e4d53-b026-4c7c-b898-b9debd386653 -2023-07-08 08:14:48.063399 2023-07-08 08:14:48.063404 mef 732 R rec 34499cf4-35a9-4625-be61-be0f8e7364e2 -2023-07-08 08:14:48.144382 2023-07-08 08:14:48.14439 mef 733 R rec 5f324c16-96a4-41e8-958d-659b9f6bfd5a -2023-07-08 08:14:48.219757 2023-07-08 08:14:48.219766 mef 734 R rec 1af36bcd-87e8-4ded-a8a1-b17b1693f924 -2023-07-08 08:14:48.327511 2023-07-08 08:14:48.327517 mef 735 R rec 6f641c1b-3387-440e-b979-1314b194ebe6 -2023-07-08 08:14:48.434459 2023-07-08 08:14:48.434464 mef 736 R rec 5c16028d-8009-4d8f-ac44-34615653fb00 -2023-07-08 08:14:48.514396 2023-07-08 08:14:48.5144 mef 737 R rec ec5cc81a-0c16-46f9-989e-7aebd6cff225 -2023-07-08 08:14:48.604017 2023-07-08 08:14:48.604027 mef 738 R rec 838f4cb1-a6de-4780-9309-982202acfda8 -2023-07-08 08:14:48.696344 2023-07-08 08:14:48.696347 mef 739 R rec a0b9c32c-86c4-4224-bd46-5747579535eb -2023-07-08 08:14:48.780875 2023-07-08 08:14:48.780881 mef 740 R rec d7b7220b-e554-4db8-b510-86d09cc6e582 -2023-07-08 08:14:48.885078 2023-07-08 08:14:48.885088 mef 741 R rec e9e17f54-6c6e-4890-b994-196ba23c0b78 -2023-07-08 08:14:48.995522 2023-07-08 08:14:48.995534 mef 742 R rec 35e395b4-062a-48ba-b4c2-8d4a974da12a -2023-07-08 08:14:49.093208 2023-07-08 08:14:49.093219 mef 743 R rec 782f2df2-9677-4505-98c1-4cd83491dac5 -2023-07-08 08:14:49.178854 2023-07-08 08:14:49.178859 mef 744 R rec a04f2c59-1d44-4785-9deb-da78315ddade -2023-07-08 08:14:49.272867 2023-07-08 08:14:49.272876 mef 745 R rec 29207403-9abe-45ac-b1a2-57b46ab30391 -2023-07-08 08:14:49.35676 2023-07-08 08:14:49.356765 mef 746 R rec e20cec49-0ac1-4037-8c79-2b2ac9b50ad6 -2023-07-08 08:14:49.438781 2023-07-08 08:14:49.438786 mef 747 R rec fc7d35aa-ba4f-4f0d-920f-24cbe2b03871 -2023-07-08 08:14:49.519578 2023-07-08 08:14:49.519584 mef 748 R rec 4541eb13-8b3a-485f-aa96-644b7da3ec25 -2023-07-08 08:14:49.607972 2023-07-08 08:14:49.607977 mef 749 R rec 16c7f5f2-9737-49ca-b526-543c9d364306 -2023-07-08 08:14:49.704008 2023-07-08 08:14:49.704019 mef 750 R rec 8e70ccae-a96b-4874-925e-472e5400d107 -2023-07-08 08:14:49.800382 2023-07-08 08:14:49.8004 mef 751 R rec e33b59b3-cc95-46db-977d-b709256560bd -2023-07-08 08:14:49.897523 2023-07-08 08:14:49.897529 mef 752 R rec 2b1881e8-dbdc-4d99-98d1-f9c5968c6a62 -2023-07-08 08:14:49.994403 2023-07-08 08:14:49.994416 mef 753 R rec 6aa8f672-3990-45e1-9d25-745696dfe8cc -2023-07-08 08:14:50.083654 2023-07-08 08:14:50.083664 mef 754 R rec ec74e26d-47ee-402a-bc49-6a0e1615d6d1 -2023-07-08 08:14:50.171214 2023-07-08 08:14:50.171219 mef 755 R rec 85562fd6-dc2f-4495-a0f4-504ad754310e -2023-07-08 08:14:50.274534 2023-07-08 08:14:50.274549 mef 756 R rec 306f9c8d-d76c-4d58-aafa-c2bfc1427675 -2023-07-08 08:14:50.368079 2023-07-08 08:14:50.368084 mef 757 R rec cfaed5f9-8fa4-4f71-ad62-d4d3d4e47914 -2023-07-08 08:14:50.470406 2023-07-08 08:14:50.470415 mef 758 R rec 9f81c369-ec74-4020-8f38-45297a199ad6 -2023-07-08 08:14:50.555812 2023-07-08 08:14:50.555824 mef 759 R rec 38156b4f-71a2-45af-be18-8f22341bdabb -2023-07-08 08:14:50.653283 2023-07-08 08:14:50.653289 mef 760 R rec 93d2fe17-3b0e-44ad-84c4-e2ff78a3a6f2 -2023-07-08 08:14:50.752291 2023-07-08 08:14:50.752301 mef 761 R rec 05f8cf35-9e55-4552-bbcc-7560a6f6998e -2023-07-08 08:14:50.840039 2023-07-08 08:14:50.84005 mef 762 R rec e6d25ef2-69df-43f4-8a20-03cf1d36d51e -2023-07-08 08:14:50.935669 2023-07-08 08:14:50.935679 mef 763 R rec 74013ff2-10b0-4473-ad73-d4a06bdc0a3c -2023-07-08 08:14:51.029391 2023-07-08 08:14:51.029395 mef 764 R rec 574a8d71-23ae-41a2-a8e6-80570aa08240 -2023-07-08 08:14:51.126992 2023-07-08 08:14:51.127001 mef 765 R rec 3a064a48-4f04-49eb-af20-5fb9dda95a94 -2023-07-08 08:14:51.203254 2023-07-08 08:14:51.203263 mef 766 R rec 4076aeb5-4950-47e2-bac6-adaf492b4e45 -2023-07-08 08:14:51.310195 2023-07-08 08:14:51.31021 mef 767 R rec 5d0f1572-8c83-4c61-ad48-bfda202b99e8 -2023-07-08 08:14:51.398255 2023-07-08 08:14:51.398261 mef 768 R rec ba0e6988-3b4e-4e33-8d6b-cbdd3e0d6354 -2023-07-08 08:14:51.47887 2023-07-08 08:14:51.478882 mef 769 R rec 8b60fbbb-c76b-4195-b55b-a6bb1f8de724 -2023-07-08 08:14:51.583065 2023-07-08 08:14:51.583075 mef 770 R rec 0082accb-4d0e-4a47-a8a4-e9abd7852d7a -2023-07-08 08:14:51.670973 2023-07-08 08:14:51.670978 mef 771 R rec 881120bc-847a-4618-a7b0-083d292472b4 -2023-07-08 08:14:51.761837 2023-07-08 08:14:51.761842 mef 772 R rec d4f84ff4-6e25-46d9-b39b-bd53cdd75168 -2023-07-08 08:14:51.870152 2023-07-08 08:14:51.870161 mef 773 R rec 2375605d-2799-410b-ad00-62240fed09e8 -2023-07-08 08:14:51.960981 2023-07-08 08:14:51.960991 mef 774 R rec 552f9a79-b286-4929-a281-2190d38f92d0 -2023-07-08 08:14:52.052135 2023-07-08 08:14:52.052146 mef 775 R rec b7216dd4-d314-472e-ab4c-91c0112facaa -2023-07-08 08:14:52.13047 2023-07-08 08:14:52.130475 mef 776 R rec 0c5b1469-439c-49cb-b10d-39888829dba2 -2023-07-08 08:14:52.201007 2023-07-08 08:14:52.201012 mef 777 R rec 9a773c89-5175-444b-ba6e-acced3b835e5 -2023-07-08 08:14:52.295582 2023-07-08 08:14:52.295592 mef 778 R rec 18172abe-afeb-47d5-a36e-3584d93157d3 -2023-07-08 08:14:52.396825 2023-07-08 08:14:52.396835 mef 779 R rec 9ae2af37-bc08-4515-b9f0-acc70f5a23d7 -2023-07-08 08:14:52.482818 2023-07-08 08:14:52.482828 mef 780 R rec 09239b4b-ff89-492e-8e8b-25e3393f88aa -2023-07-08 08:14:52.574925 2023-07-08 08:14:52.574936 mef 781 R rec 0c188aa1-6a13-4583-9ae4-83fe470a26c0 -2023-07-08 08:14:52.660979 2023-07-08 08:14:52.660984 mef 782 R rec 17653a7f-4267-4314-8fac-158bce1d1f3c -2023-07-08 08:14:52.7466 2023-07-08 08:14:52.746705 mef 783 R rec fce5953c-bbc6-478d-a74e-15377e12f40b -2023-07-08 08:14:52.841395 2023-07-08 08:14:52.841406 mef 784 R rec eb0a8e94-67bd-4c9b-bdd5-403cd74f21fe -2023-07-08 08:14:52.932517 2023-07-08 08:14:52.932524 mef 785 R rec d19ed348-2300-4b4b-a769-3927f252d5e8 -2023-07-08 08:14:53.01573 2023-07-08 08:14:53.015737 mef 786 R rec 8d309e9b-044f-4f28-9b0f-a0e2b6de5e04 -2023-07-08 08:14:53.109103 2023-07-08 08:14:53.109115 mef 787 R rec 65bf49ac-0b31-4129-865c-137f8f31ebce -2023-07-08 08:14:53.21255 2023-07-08 08:14:53.21256 mef 788 R rec 343e8b17-67c6-4255-abbf-e6c5842b90a7 -2023-07-08 08:14:53.328493 2023-07-08 08:14:53.328503 mef 789 R rec eeb41c1a-84ea-4ef0-b0c6-7e50a3be1cda -2023-07-08 08:14:53.442308 2023-07-08 08:14:53.442324 mef 790 R rec 475f6003-4cbd-40ff-b9a9-552508670cca -2023-07-08 08:14:53.565079 2023-07-08 08:14:53.565089 mef 791 R rec 38a0a7c1-a875-4994-8bb6-9ec2ae28d200 -2023-07-08 08:14:53.676053 2023-07-08 08:14:53.676062 mef 792 R rec 407380ac-034d-412c-ab16-b8774586d850 -2023-07-08 08:14:53.788921 2023-07-08 08:14:53.78893 mef 793 R rec b4bad931-6c3a-472f-9d77-3d61b5ee91a5 -2023-07-08 08:14:53.890837 2023-07-08 08:14:53.890848 mef 794 R rec 6b3cbbdd-d1a8-4b39-88f6-ed05e4448b93 -2023-07-08 08:14:54.00995 2023-07-08 08:14:54.009958 mef 795 R rec 33f84e27-a8d8-4046-840e-9ba7898f278b -2023-07-08 08:14:54.120074 2023-07-08 08:14:54.120082 mef 796 R rec 0ba97964-59a5-494e-bad6-b23543f68845 -2023-07-08 08:14:54.235256 2023-07-08 08:14:54.235271 mef 797 R rec ca6d0e56-18bb-4bc2-9e3e-c8ea331fed09 -2023-07-08 08:14:54.33776 2023-07-08 08:14:54.337772 mef 798 R rec 98fbb6a7-f7bf-4d1f-88ec-da8dc2071aff -2023-07-08 08:14:54.440671 2023-07-08 08:14:54.440682 mef 799 R rec 17ccf019-8fc0-4089-8a98-6d358746efd3 -2023-07-08 08:14:54.550821 2023-07-08 08:14:54.550835 mef 800 R rec a82af9d4-64ef-4472-885d-ac83c1167565 -2023-07-08 08:14:54.678054 2023-07-08 08:14:54.678068 mef 801 R rec ebf50dbf-ed76-4477-aa39-7772a1b0dcac -2023-07-08 08:14:54.826188 2023-07-08 08:14:54.826194 mef 802 R rec d1345e55-9a68-4c7e-977b-6383907756dd -2023-07-08 08:14:54.893207 2023-07-08 08:14:54.893213 mef 803 R rec ad2cafd6-427b-4d1d-aec4-91d3e8755faa -2023-07-08 08:14:54.965326 2023-07-08 08:14:54.965332 mef 804 R rec 658424bd-b124-4c80-8c9d-8cc500e84af2 -2023-07-08 08:14:55.042515 2023-07-08 08:14:55.042526 mef 805 R rec 0a10e334-dc5a-4ede-be3f-e6246b2ecc45 -2023-07-08 08:14:55.163081 2023-07-08 08:14:55.163092 mef 806 R rec db7a20cf-9025-470f-9a9b-3a54706b7475 -2023-07-08 08:14:55.272507 2023-07-08 08:14:55.272517 mef 807 R rec 49c7584b-0d10-482d-9bb8-d34b38998290 -2023-07-08 08:14:55.380823 2023-07-08 08:14:55.380836 mef 808 R rec bb9c85b0-32a8-44c7-962e-60c15c1ed212 -2023-07-08 08:14:55.491913 2023-07-08 08:14:55.491924 mef 809 R rec 45f7a382-b4b7-4ee2-8399-a3e659b2a428 -2023-07-08 08:14:55.603649 2023-07-08 08:14:55.603659 mef 810 R rec 3725ab11-cacb-4650-971e-b83461134bd3 -2023-07-08 08:14:55.727091 2023-07-08 08:14:55.727106 mef 811 R rec 423921aa-8df9-4399-b09c-d6004cf1a889 -2023-07-08 08:14:55.838889 2023-07-08 08:14:55.8389 mef 812 R rec 477fc103-7d5c-46d9-be39-782f4b034735 -2023-07-08 08:14:55.963919 2023-07-08 08:14:55.963931 mef 813 R rec 07e6e841-a393-48c4-ac41-82ff2e23e2fc -2023-07-08 08:14:56.097594 2023-07-08 08:14:56.097608 mef 814 R rec cf28a1d8-2163-407d-80e4-4cd85bf7396d -2023-07-08 08:14:56.244696 2023-07-08 08:14:56.244712 mef 815 R rec ea173058-2ec0-4209-9874-f2c485695417 -2023-07-08 08:14:56.36097 2023-07-08 08:14:56.360981 mef 816 R rec 67d6b367-a1ec-441f-bebf-ec61424a4489 -2023-07-08 08:14:56.484752 2023-07-08 08:14:56.484767 mef 817 R rec 9714f8e6-d551-41d4-bbf0-13a6c61f1378 -2023-07-08 08:14:56.60767 2023-07-08 08:14:56.60768 mef 818 R rec a3e64cc8-ad46-416f-8a38-fa2dceaed706 -2023-07-08 08:14:56.747539 2023-07-08 08:14:56.747549 mef 819 R rec d69c41a7-9925-4974-8593-0a3cd18573bc -2023-07-08 08:14:56.866291 2023-07-08 08:14:56.866311 mef 820 R rec 4f2ae601-0b96-48de-8f37-86e18385d2ff -2023-07-08 08:14:56.984173 2023-07-08 08:14:56.984183 mef 821 R rec 171c4f80-05a1-4974-a269-65439d14fd45 -2023-07-08 08:14:57.103168 2023-07-08 08:14:57.103178 mef 822 R rec 6f8ed89a-4e3e-44b7-a542-4e10197d04ab -2023-07-08 08:14:57.230063 2023-07-08 08:14:57.230073 mef 823 R rec a0a319c3-be89-48b2-b91f-8ab40cb651d5 -2023-07-08 08:14:57.325468 2023-07-08 08:14:57.325477 mef 824 R rec 0cfab5a0-d24c-469d-b774-ba285ac02f93 -2023-07-08 08:14:57.438333 2023-07-08 08:14:57.438343 mef 825 R rec 26caedd2-b99e-413c-a419-c742cc25e15f -2023-07-08 08:14:57.566012 2023-07-08 08:14:57.566028 mef 826 R rec 71722ee9-e731-43d4-850a-04902911e19b -2023-07-08 08:14:57.691313 2023-07-08 08:14:57.691324 mef 827 R rec 44c38267-8147-47c0-a114-074edfa10e55 -2023-07-08 08:14:57.809256 2023-07-08 08:14:57.809268 mef 828 R rec 84d5e64d-31b9-4b0d-abfe-d715e5253a6c -2023-07-08 08:14:57.933035 2023-07-08 08:14:57.933045 mef 829 R rec 285fbf07-9ec9-4693-9258-66beaa0a51cd -2023-07-08 08:14:58.044288 2023-07-08 08:14:58.044299 mef 830 R rec fe6a0af0-2aa0-483c-a1f2-7a4b88aa54da -2023-07-08 08:14:58.162467 2023-07-08 08:14:58.16248 mef 831 R rec 82b78162-1724-4f63-9264-7a9b86c82961 -2023-07-08 08:14:58.294312 2023-07-08 08:14:58.294331 mef 832 R rec bd6c4ea2-19a6-4cb8-bdb2-df57d25848fb -2023-07-08 08:14:58.418748 2023-07-08 08:14:58.418763 mef 833 R rec f824d742-19b8-4d1c-8962-184aeb506c8f -2023-07-08 08:14:58.532763 2023-07-08 08:14:58.532772 mef 834 R rec b2f1405c-6557-4c85-8b2a-a8eddfa187b9 -2023-07-08 08:14:58.64967 2023-07-08 08:14:58.649682 mef 835 R rec cfec5c97-d568-4663-afb1-65dd52af985d -2023-07-08 08:14:58.801813 2023-07-08 08:14:58.801828 mef 836 R rec 21652ebb-d3a9-4bec-8e74-129192fa407f -2023-07-08 08:14:58.925361 2023-07-08 08:14:58.92537 mef 837 R rec 132ea927-51cd-4c31-bf77-50152c566369 -2023-07-08 08:14:59.0408 2023-07-08 08:14:59.040815 mef 838 R rec 51fc9fc5-8b48-4ac1-ac3d-15be548fa34b -2023-07-08 08:14:59.143868 2023-07-08 08:14:59.14388 mef 839 R rec c4cad243-2b22-496d-85e0-6df064e40248 -2023-07-08 08:14:59.248372 2023-07-08 08:14:59.248384 mef 840 R rec 7faccfaf-e269-4e15-beaf-09473d159795 -2023-07-08 08:14:59.354242 2023-07-08 08:14:59.354257 mef 841 R rec da8d6193-f7cc-428e-8225-c2998edeb0ca -2023-07-08 08:14:59.466526 2023-07-08 08:14:59.466536 mef 842 R rec a25de663-f73e-44c1-81a1-6f49c55b5662 -2023-07-08 08:14:59.575188 2023-07-08 08:14:59.575198 mef 843 R rec 7589ecfb-24f0-40d2-817e-23f07c8fde8b -2023-07-08 08:14:59.688193 2023-07-08 08:14:59.688205 mef 844 R rec 9ccfeea5-f49c-472d-9d4a-be867ebe9c69 -2023-07-08 08:14:59.799671 2023-07-08 08:14:59.799682 mef 845 R rec 331e64bc-327e-4351-91f2-a91088eefbb6 -2023-07-08 08:14:59.91488 2023-07-08 08:14:59.91489 mef 846 R rec e100ddab-7349-4121-8e19-f34097334286 -2023-07-08 08:15:00.05017 2023-07-08 08:15:00.050185 mef 847 R rec f23b2c1b-d2f0-4856-a77a-4f6b06d8f45b -2023-07-08 08:15:00.179157 2023-07-08 08:15:00.179168 mef 848 R rec ae21d524-f189-4214-ba04-9c4cca2099af -2023-07-08 08:15:00.300612 2023-07-08 08:15:00.300622 mef 849 R rec 043088f7-bfef-4f48-89fb-8166552924e3 -2023-07-08 08:15:00.420409 2023-07-08 08:15:00.420419 mef 850 R rec 1765b3b7-7e7d-4168-9ec9-aff6ef60c916 -2023-07-08 08:15:00.540266 2023-07-08 08:15:00.540272 mef 851 R rec 46a1e855-7861-4194-bf1a-5127752bb20d -2023-07-08 08:15:00.644282 2023-07-08 08:15:00.644295 mef 852 R rec f6c95360-0718-42de-8976-882e597e0e5f -2023-07-08 08:15:00.791509 2023-07-08 08:15:00.791521 mef 853 R rec 322feea3-dcb2-4816-a927-81712a71c4db -2023-07-08 08:15:00.938199 2023-07-08 08:15:00.938205 mef 854 R rec 7d620a78-26a4-40e0-b278-11cd99004221 -2023-07-08 08:15:01.019243 2023-07-08 08:15:01.019248 mef 855 R rec 9482e6cd-2b07-4f8d-9e8d-b19aa19d148b -2023-07-08 08:15:01.092719 2023-07-08 08:15:01.092725 mef 856 R rec 2fbc5de4-2dfe-4787-8cca-432ec853e479 -2023-07-08 08:15:01.172215 2023-07-08 08:15:01.172221 mef 857 R rec a7ff003b-7691-450e-9dd5-afb2ca0e4f50 -2023-07-08 08:15:01.245017 2023-07-08 08:15:01.245022 mef 858 R rec 2d2a0efe-b2b7-4043-8cc6-d382fae29114 -2023-07-08 08:15:01.318926 2023-07-08 08:15:01.318931 mef 859 R rec 63e9c06d-aa00-49bb-8e2f-a69edd18ea87 -2023-07-08 08:15:01.419566 2023-07-08 08:15:01.41957 mef 860 R rec ee2fd8e9-95e4-43e0-b3db-7d108e87d9d2 -2023-07-08 08:15:01.486753 2023-07-08 08:15:01.48676 mef 861 R rec accda6c4-f82a-4957-bc3a-dbb041f9387d -2023-07-08 08:15:01.558305 2023-07-08 08:15:01.55831 mef 862 R rec 9cd03668-f45e-4d1a-8dd1-025f7b6c556a -2023-07-08 08:15:01.632694 2023-07-08 08:15:01.632699 mef 863 R rec c96c6cd8-2dec-4761-aa9f-db169336402d -2023-07-08 08:15:01.710364 2023-07-08 08:15:01.710369 mef 864 R rec 1d4be12d-0d2a-4d96-9e5d-3681e9f2b4ee -2023-07-08 08:15:01.809764 2023-07-08 08:15:01.809779 mef 865 R rec ef41d0e1-00f9-4841-a157-1e454a28e26e -2023-07-08 08:15:01.890541 2023-07-08 08:15:01.890547 mef 866 R rec 40deab85-bba7-484b-b6a2-75f2e9109bc5 -2023-07-08 08:15:01.964902 2023-07-08 08:15:01.964907 mef 867 R rec 6f28d387-e216-4f86-b348-54e5f6688980 -2023-07-08 08:15:02.047075 2023-07-08 08:15:02.047086 mef 868 R rec 94737486-6659-4882-8e66-2fc7c0ee1bb0 -2023-07-08 08:15:02.137339 2023-07-08 08:15:02.137348 mef 869 R rec 98f0a512-fd77-4cff-83ea-1047a71b51db -2023-07-08 08:15:02.222703 2023-07-08 08:15:02.222709 mef 870 R rec 167e8151-e109-46c1-aa73-a9946bc9ba6e -2023-07-08 08:15:02.291036 2023-07-08 08:15:02.291042 mef 871 R rec 84fd1fb6-fcd6-4d8a-97a8-92f8046b9373 -2023-07-08 08:15:02.360718 2023-07-08 08:15:02.360723 mef 872 R rec 041cd360-3b19-4608-9c3c-6f969d135917 -2023-07-08 08:15:02.431431 2023-07-08 08:15:02.431436 mef 873 R rec 0209f735-fb67-49cd-ac3c-a532651cdc7e -2023-07-08 08:15:02.505647 2023-07-08 08:15:02.505652 mef 874 R rec 2e6b9ba9-9e17-462f-b845-516a8df5dc3e -2023-07-08 08:15:02.576844 2023-07-08 08:15:02.576849 mef 875 R rec 4df3aa1e-e4cd-4c4c-8ec9-8900324fcd5c -2023-07-08 08:15:02.645206 2023-07-08 08:15:02.645214 mef 876 R rec ac8a7761-aed4-45be-a418-08d6c3168f9b -2023-07-08 08:15:02.716338 2023-07-08 08:15:02.716344 mef 877 R rec a4bd0e2e-d240-4942-93ca-a57f72ca021b -2023-07-08 08:15:02.784845 2023-07-08 08:15:02.784851 mef 878 R rec a36a2766-da32-4c70-a805-77c6b7003b17 -2023-07-08 08:15:02.855218 2023-07-08 08:15:02.855224 mef 879 R rec 7512a0b2-705c-40f0-a55e-d2d228b5db98 -2023-07-08 08:15:02.924513 2023-07-08 08:15:02.924517 mef 880 R rec 1f5b01d6-718c-4918-b853-2ef0fbff7352 -2023-07-08 08:15:02.994152 2023-07-08 08:15:02.994157 mef 881 R rec 3c3d47ab-f3c2-46e0-8d03-3182613e814a -2023-07-08 08:15:03.064629 2023-07-08 08:15:03.064634 mef 882 R rec 34482040-2585-46dc-96cf-4e56af4bd7f6 -2023-07-08 08:15:03.156059 2023-07-08 08:15:03.156062 mef 883 R rec 958ba281-8256-45ba-a685-24d0427257b7 -2023-07-08 08:15:03.257684 2023-07-08 08:15:03.257694 mef 884 R rec 70395d24-2e04-4443-9d88-909ad168042c -2023-07-08 08:15:03.360509 2023-07-08 08:15:03.36052 mef 885 R rec 2b3c4b43-d9aa-4ec6-aeae-c6fd95d86ce9 -2023-07-08 08:15:03.440181 2023-07-08 08:15:03.440186 mef 886 R rec 6a9e0234-0654-41b1-9f0b-14b50c2e8449 -2023-07-08 08:15:03.510438 2023-07-08 08:15:03.510444 mef 887 R rec 1178c638-a45e-4e70-8a1b-5eb1594b3c53 -2023-07-08 08:15:03.57707 2023-07-08 08:15:03.577075 mef 888 R rec 5006222f-3808-4912-a6e5-e8a6bb558091 -2023-07-08 08:15:03.651596 2023-07-08 08:15:03.651601 mef 889 R rec 5cbe727d-0a14-47b7-aa7c-e06090b57506 -2023-07-08 08:15:03.728804 2023-07-08 08:15:03.72881 mef 890 R rec bb95c158-5e01-4f18-99d8-e8f0024eac81 -2023-07-08 08:15:03.804746 2023-07-08 08:15:03.804751 mef 891 R rec 3f36a368-9c47-4c69-9109-cc7ee5955a66 -2023-07-08 08:15:03.89252 2023-07-08 08:15:03.892526 mef 892 R rec f99de3a8-c45f-41b8-953e-1951736e7810 -2023-07-08 08:15:03.993612 2023-07-08 08:15:03.993618 mef 893 R rec 44f217db-ff4d-496e-8d71-dbbc71453574 -2023-07-08 08:15:04.08638 2023-07-08 08:15:04.08639 mef 894 R rec 55135294-c0d8-42c9-9a9e-9e9750dc920b -2023-07-08 08:15:04.169949 2023-07-08 08:15:04.169952 mef 895 R rec 84f3ebd7-53e2-409a-b785-ea1155c6941b -2023-07-08 08:15:04.240732 2023-07-08 08:15:04.240737 mef 896 R rec 04775aba-0380-45c2-b1c5-d67306663a5c -2023-07-08 08:15:04.318372 2023-07-08 08:15:04.318378 mef 897 R rec 5a4c1d27-1715-4e46-9569-0d8d6ad7d129 -2023-07-08 08:15:04.401234 2023-07-08 08:15:04.401239 mef 898 R rec 76254a1e-50b9-494f-8271-e94436244959 -2023-07-08 08:15:04.470848 2023-07-08 08:15:04.470853 mef 899 R rec 0d6df9e7-4b17-410c-86ec-d4dc3454edcd -2023-07-08 08:15:04.558077 2023-07-08 08:15:04.558087 mef 900 R rec 4d70b99a-a057-4073-909d-ec0406705d76 -2023-07-08 08:15:04.65505 2023-07-08 08:15:04.655055 mef 901 R rec 326f216e-42ac-416c-8ebd-7f5714e109eb -2023-07-08 08:15:04.744183 2023-07-08 08:15:04.744193 mef 902 R rec 10b2bf3c-86c7-4e6a-b2ae-808d5a07b4b7 -2023-07-08 08:15:04.8223 2023-07-08 08:15:04.822304 mef 903 R rec 413d1c29-8952-4d57-a317-2abdf23502e2 -2023-07-08 08:15:04.907924 2023-07-08 08:15:04.907935 mef 904 R rec 3c3087f9-de99-43a8-9ce0-322395f1e395 -2023-07-08 08:15:05.014645 2023-07-08 08:15:05.014656 mef 905 R rec 5095a077-0e6f-4f78-a019-75b3b65aef4a -2023-07-08 08:15:05.104133 2023-07-08 08:15:05.104144 mef 906 R rec cd86856e-b05e-454b-80eb-abbe83a02b5e -2023-07-08 08:15:05.205619 2023-07-08 08:15:05.205624 mef 907 R rec b9eaebfb-1eb6-423b-974f-b3f7233fd30a -2023-07-08 08:15:05.304054 2023-07-08 08:15:05.304067 mef 908 R rec 9046a333-a559-4448-9981-dce5f47f3b77 -2023-07-08 08:15:05.390624 2023-07-08 08:15:05.390629 mef 909 R rec d35ca0cb-807c-4f2c-945c-63becd753f3e -2023-07-08 08:15:05.464416 2023-07-08 08:15:05.464421 mef 910 R rec 0fdf02d1-7bfc-4a39-9ee7-82b3f90ff30e -2023-07-08 08:15:05.548414 2023-07-08 08:15:05.548426 mef 911 R rec 247048b1-4c14-4111-b6a0-f3f60def58ca -2023-07-08 08:15:05.634111 2023-07-08 08:15:05.634116 mef 912 R rec ba8a73f3-0395-491b-af2a-6f157e6454d7 -2023-07-08 08:15:05.736008 2023-07-08 08:15:05.736019 mef 913 R rec 5465dd2e-0df8-4597-8201-b8c7f1fb23a9 -2023-07-08 08:15:05.830448 2023-07-08 08:15:05.830457 mef 914 R rec 83541c23-8995-40e5-8df1-c8c722e84c0b -2023-07-08 08:15:05.907669 2023-07-08 08:15:05.907674 mef 915 R rec 68b0662b-bdde-4c9a-9e74-e594832e593f -2023-07-08 08:15:05.977467 2023-07-08 08:15:05.977473 mef 916 R rec b388fa6b-6cb4-4933-863d-6ccfaa1656ac -2023-07-08 08:15:06.090066 2023-07-08 08:15:06.090113 mef 917 R rec eb62a90c-7125-48ea-a365-e26a8209737e -2023-07-08 08:15:06.182213 2023-07-08 08:15:06.182223 mef 918 R rec fff69fac-0b78-4ebd-8479-4948e589ffc4 -2023-07-08 08:15:06.264712 2023-07-08 08:15:06.264717 mef 919 R rec 769e997b-3336-451c-980b-7424a227d7fc -2023-07-08 08:15:06.351714 2023-07-08 08:15:06.351725 mef 920 R rec 4defdc72-714e-4927-a74d-ebb4e5be1665 -2023-07-08 08:15:06.453959 2023-07-08 08:15:06.453964 mef 921 R rec d244d292-92c6-438c-bf0f-d450c094ea52 -2023-07-08 08:15:06.537004 2023-07-08 08:15:06.537009 mef 922 R rec 0b0f6029-cf7f-4b0f-8d60-5dfc11cd501c -2023-07-08 08:15:06.638249 2023-07-08 08:15:06.638259 mef 923 R rec d6e4829e-e4be-49dd-bb4c-e29b3f42aa8e -2023-07-08 08:15:06.72406 2023-07-08 08:15:06.724065 mef 924 R rec c8a99da7-673d-4f76-9397-3f9ccb1cf2aa -2023-07-08 08:15:06.815525 2023-07-08 08:15:06.81553 mef 925 R rec f240c14f-701a-4655-95df-556f5592eaa5 -2023-07-08 08:15:06.89069 2023-07-08 08:15:06.890702 mef 926 R rec fc061ae9-bda6-465b-b4c4-53ef924023ac -2023-07-08 08:15:06.967209 2023-07-08 08:15:06.967214 mef 927 R rec 2154ad28-19ee-468f-af9e-5d45ab042341 -2023-07-08 08:15:07.063507 2023-07-08 08:15:07.063519 mef 928 R rec 953d71ed-f2ad-4ea4-b1cd-932cb2e718df -2023-07-08 08:15:07.175577 2023-07-08 08:15:07.175588 mef 929 R rec 3b31bbd3-9b59-40fa-8e05-07f36dedfafd -2023-07-08 08:15:07.283664 2023-07-08 08:15:07.283675 mef 930 R rec e5c65eaf-993d-4b1c-b173-71cc1f39abde -2023-07-08 08:15:07.375362 2023-07-08 08:15:07.375367 mef 931 R rec a087c2ac-4951-46a4-98f7-f641b40e3362 -2023-07-08 08:15:07.460245 2023-07-08 08:15:07.460252 mef 932 R rec 4f51eba9-7c24-4d93-9d3b-39f2df8c4d17 -2023-07-08 08:15:07.546506 2023-07-08 08:15:07.546515 mef 933 R rec 5141df3f-1c2a-46e0-820d-e5f2cee87ed9 -2023-07-08 08:15:07.644992 2023-07-08 08:15:07.645 mef 934 R rec cf2a269c-568c-4da7-8416-71cd6cd5423e -2023-07-08 08:15:07.716589 2023-07-08 08:15:07.716605 mef 935 R rec 58e3ec2f-f10b-4731-81ca-cca95648eeba -2023-07-08 08:15:07.804983 2023-07-08 08:15:07.804996 mef 936 R rec d47ed4b1-98cf-4745-a28c-2793777032e1 -2023-07-08 08:15:07.885712 2023-07-08 08:15:07.885717 mef 937 R rec 8490ca7f-cc28-473d-9ab7-6e7e85442b9a -2023-07-08 08:15:07.95926 2023-07-08 08:15:07.959265 mef 938 R rec db413378-3c6b-4577-87c4-3a1ff7a09b36 -2023-07-08 08:15:08.038071 2023-07-08 08:15:08.038081 mef 939 R rec 8e002ec7-ca44-4ab7-bccd-fa50bc51115c -2023-07-08 08:15:08.124347 2023-07-08 08:15:08.12436 mef 940 R rec 7ff16183-498f-4086-aa4f-87b6c39b421d -2023-07-08 08:15:08.228326 2023-07-08 08:15:08.228341 mef 941 R rec 3f445b16-add7-4f5f-8a27-ff4bd79a3042 -2023-07-08 08:15:08.31733 2023-07-08 08:15:08.317335 mef 942 R rec 27a248c5-34bb-48a5-8a74-80cbe03623de -2023-07-08 08:15:08.401246 2023-07-08 08:15:08.401254 mef 943 R rec edadc516-9f26-42f5-9d95-c8850bad1120 -2023-07-08 08:15:08.478159 2023-07-08 08:15:08.478164 mef 944 R rec 334051ea-7862-4763-926d-c840554b8477 -2023-07-08 08:15:08.559403 2023-07-08 08:15:08.559412 mef 945 R rec 0d982365-888a-42d1-9417-b03cca8c480f -2023-07-08 08:15:08.655512 2023-07-08 08:15:08.655529 mef 946 R rec cb63b023-7b42-49b7-b6b1-4225635b4997 -2023-07-08 08:15:08.750685 2023-07-08 08:15:08.750699 mef 947 R rec e3cd93a9-e609-4562-ba46-826d70e5bec1 -2023-07-08 08:15:08.835534 2023-07-08 08:15:08.835539 mef 948 R rec 53a239d7-858b-4731-8be2-61319447e7ae -2023-07-08 08:15:08.921778 2023-07-08 08:15:08.921791 mef 949 R rec 25e05b3a-4b34-4ee3-8781-6e46e3d667dd -2023-07-08 08:15:09.015546 2023-07-08 08:15:09.01556 mef 950 R rec be848cad-637f-430d-809c-c92384262c4a -2023-07-08 08:15:09.129022 2023-07-08 08:15:09.129034 mef 951 R rec a0a3ba56-b4fe-4d99-9ceb-a8211846cef7 -2023-07-08 08:15:09.221127 2023-07-08 08:15:09.221136 mef 952 R rec 02508f9f-86f7-4098-81ea-a9d373aac5c5 -2023-07-08 08:15:09.319069 2023-07-08 08:15:09.319078 mef 953 R rec 0fdebca7-3a6f-4efd-88cd-ba7ee35c2bf7 -2023-07-08 08:15:09.419293 2023-07-08 08:15:09.419307 mef 954 R rec e4def727-68c2-4bef-9384-eafbc1ba6094 -2023-07-08 08:15:09.52308 2023-07-08 08:15:09.523089 mef 955 R rec b907fb43-2fef-494a-b350-d9cbb2273a5d -2023-07-08 08:15:09.615843 2023-07-08 08:15:09.615852 mef 956 R rec 4472f062-1099-4e47-bbfc-02844cf40230 -2023-07-08 08:15:09.706046 2023-07-08 08:15:09.706051 mef 957 R rec 462bb20d-ecf1-48ff-b81e-0e5185b38afd -2023-07-08 08:15:09.783552 2023-07-08 08:15:09.783557 mef 958 R rec f44c4875-c3da-4f9e-9f46-184f1ada0fc9 -2023-07-08 08:15:09.874408 2023-07-08 08:15:09.874418 mef 959 R rec 7be3a12e-d281-4e58-8b33-641e542f7e15 -2023-07-08 08:15:09.960095 2023-07-08 08:15:09.9601 mef 960 R rec 7fac505f-d476-4145-8109-b23005d08f46 -2023-07-08 08:15:10.050269 2023-07-08 08:15:10.05028 mef 961 R rec 4b152b9f-59a7-4bcf-b0e3-c2a5477b7940 -2023-07-08 08:15:10.153844 2023-07-08 08:15:10.153857 mef 962 R rec 9b0b2f02-8dae-4d54-84e5-d4b03696af01 -2023-07-08 08:15:10.23411 2023-07-08 08:15:10.234116 mef 963 R rec 9947f8ea-35a5-44cb-a229-204bd2e42d08 -2023-07-08 08:15:10.31789 2023-07-08 08:15:10.317899 mef 964 R rec 6fba0b6d-f174-43d7-bab8-6f713bf6aad7 -2023-07-08 08:15:10.439936 2023-07-08 08:15:10.439942 mef 965 R rec f8022fe1-4cce-4933-9516-10092b24203d -2023-07-08 08:15:10.525819 2023-07-08 08:15:10.52583 mef 966 R rec f08fc679-cc49-4ad0-88a5-e7bc3ed81ac4 -2023-07-08 08:15:10.620973 2023-07-08 08:15:10.620983 mef 967 R rec 674de731-73ac-49e0-be00-def26b68f4b1 -2023-07-08 08:15:10.706356 2023-07-08 08:15:10.706364 mef 968 R rec 3e1095af-7a36-4a32-974d-e0890e593a7a -2023-07-08 08:15:10.788969 2023-07-08 08:15:10.788974 mef 969 R rec b2481509-f5be-43fe-bd8d-c78f00718662 -2023-07-08 08:15:10.881164 2023-07-08 08:15:10.881179 mef 970 R rec e3bf40b4-c78f-4159-ab77-c3720433e15b -2023-07-08 08:15:10.970062 2023-07-08 08:15:10.970068 mef 971 R rec eee3e746-edad-4404-b705-17f8c877d300 -2023-07-08 08:15:11.064939 2023-07-08 08:15:11.064953 mef 972 R rec 0d2164b3-6e9f-4665-962f-1e44226fc045 -2023-07-08 08:15:11.15293 2023-07-08 08:15:11.152939 mef 973 R rec 56595ec3-08ee-4688-909b-c31f3a8498c4 -2023-07-08 08:15:11.244809 2023-07-08 08:15:11.244814 mef 974 R rec 96b57804-c365-433e-81fc-ce2ba27f2d65 -2023-07-08 08:15:11.319856 2023-07-08 08:15:11.319861 mef 975 R rec 477fb574-6332-42a3-8a70-e3106e60792e -2023-07-08 08:15:11.421583 2023-07-08 08:15:11.421597 mef 976 R rec 175069ad-9f81-4acc-9a81-3d42077235bd -2023-07-08 08:15:11.509051 2023-07-08 08:15:11.50906 mef 977 R rec e4d65a62-5d6d-449a-97c8-1045daafaeb4 -2023-07-08 08:15:11.605456 2023-07-08 08:15:11.605465 mef 978 R rec 511c1fcb-c5f5-4202-ba76-76125e1be753 -2023-07-08 08:15:11.699135 2023-07-08 08:15:11.699145 mef 979 R rec b1237f99-c45e-47e4-a45f-df471e853dea -2023-07-08 08:15:11.789797 2023-07-08 08:15:11.789807 mef 980 R rec 9d554d50-cdb3-454f-ba68-5635a135f5e9 -2023-07-08 08:15:11.877428 2023-07-08 08:15:11.877433 mef 981 R rec 72dcb7d7-26fc-4e23-bd4a-1e3731c7db1d -2023-07-08 08:15:11.959017 2023-07-08 08:15:11.959021 mef 982 R rec a9d58032-efef-4e0b-b6d4-25d445696fc0 -2023-07-08 08:15:12.029511 2023-07-08 08:15:12.029516 mef 983 R rec 4a64b7de-a369-4b1b-b904-6b0233cef992 -2023-07-08 08:15:12.119581 2023-07-08 08:15:12.119593 mef 984 R rec d9d4bc7d-97df-4313-b2f4-a23984e54efc -2023-07-08 08:15:12.236248 2023-07-08 08:15:12.236264 mef 985 R rec c734745a-6147-4fd3-b6cf-37c0201bde73 -2023-07-08 08:15:12.345408 2023-07-08 08:15:12.345418 mef 986 R rec 43ea85e3-2073-4e46-92df-0b77a76ffcbe -2023-07-08 08:15:12.492797 2023-07-08 08:15:12.492812 mef 987 R rec e08f8de7-c452-4abc-aae5-83da98f8d9d4 -2023-07-08 08:15:12.590331 2023-07-08 08:15:12.590344 mef 988 R rec 4d851993-3343-4e69-9ed2-aab658a2bb3c -2023-07-08 08:15:12.686359 2023-07-08 08:15:12.686372 mef 989 R rec fa13d479-9b8a-4d16-ba4a-5a3760645831 -2023-07-08 08:15:12.765211 2023-07-08 08:15:12.765216 mef 990 R rec 52cc9c5f-76e2-4742-a45c-fc983d9d5317 -2023-07-08 08:15:12.848873 2023-07-08 08:15:12.848883 mef 991 R rec 137e4580-2338-4397-b0bb-c4528ed861f5 -2023-07-08 08:15:12.933273 2023-07-08 08:15:12.933286 mef 992 R rec bf48089d-4f44-40c7-b50c-ce78bbbd61dc -2023-07-08 08:15:13.011867 2023-07-08 08:15:13.01188 mef 993 R rec 0338ad25-65ce-4c55-a7b9-9e57a01c0bf2 -2023-07-08 08:15:13.098198 2023-07-08 08:15:13.098203 mef 994 R rec 4fcf543a-c0a4-4da5-8417-3940388ad41c -2023-07-08 08:15:13.180675 2023-07-08 08:15:13.180687 mef 995 R rec 6f61106b-a7c9-4c27-9ea9-167feacb40e2 -2023-07-08 08:15:13.266553 2023-07-08 08:15:13.266566 mef 996 R rec 39e13320-7f72-4029-aac9-0f8a3ec2d071 -2023-07-08 08:15:13.361753 2023-07-08 08:15:13.361761 mef 997 R rec 781e1afc-5198-4f8c-8279-d9abcf009287 -2023-07-08 08:15:13.445402 2023-07-08 08:15:13.445411 mef 998 R rec faa23a20-3e7f-4b2f-9848-652bfcd937c1 -2023-07-08 08:15:13.549035 2023-07-08 08:15:13.549046 mef 999 R rec 7a35ee0a-9bd4-424b-a083-95f80a2001d2 -2023-07-08 08:15:13.627436 2023-07-08 08:15:13.627443 mef 1000 R rec c66caa41-f59b-4252-88c9-9a6c148e85b6 -2023-07-08 08:15:13.717001 2023-07-08 08:15:13.71701 mef 1001 R rec bb6cc653-7f77-4ebf-82a9-620e6ff3fb1f -2023-07-08 08:15:13.805068 2023-07-08 08:15:13.805073 mef 1002 R rec 96a33f34-1747-493e-baf9-6efa989bd703 -2023-07-08 08:15:13.886407 2023-07-08 08:15:13.886417 mef 1003 R rec 34a6c40d-bfcd-40b9-9140-1b0d06086d51 -2023-07-08 08:15:13.980194 2023-07-08 08:15:13.980204 mef 1004 R rec 70a2090b-1de0-491c-b3e3-8b2039db1862 -2023-07-08 08:15:14.094765 2023-07-08 08:15:14.094779 mef 1005 R rec db5990a8-a33d-4939-8033-507daf18f66b -2023-07-08 08:15:14.177103 2023-07-08 08:15:14.177117 mef 1006 R rec 25b2c133-693d-4c2b-9555-a51681d6b408 -2023-07-08 08:15:14.265515 2023-07-08 08:15:14.265525 mef 1007 R rec 334b3c0e-2ed0-4134-bb2a-31555ef54251 -2023-07-08 08:15:14.347928 2023-07-08 08:15:14.347933 mef 1008 R rec df572c1f-dbce-4a65-8b13-dc594de5fe82 -2023-07-08 08:15:14.426753 2023-07-08 08:15:14.426757 mef 1009 R rec ad99c9e3-f491-4778-bb21-0c1d4190f7ea -2023-07-08 08:15:14.517778 2023-07-08 08:15:14.51779 mef 1010 R rec cf8e5e59-3b95-4a4e-96e1-8f2813575744 -2023-07-08 08:15:14.623248 2023-07-08 08:15:14.623253 mef 1011 R rec 9bac40b6-dac6-4d4d-86bf-a66d18177d5e -2023-07-08 08:15:14.72053 2023-07-08 08:15:14.72054 mef 1012 R rec 52f36043-71c9-4ddb-8ea3-1b285660a78e -2023-07-08 08:15:14.80706 2023-07-08 08:15:14.807067 mef 1013 R rec 178bccae-4bba-41ef-a696-27c35c19c61e -2023-07-08 08:15:14.89484 2023-07-08 08:15:14.894845 mef 1014 R rec 6800329b-10eb-4093-a263-b1599bee7564 -2023-07-08 08:15:14.971627 2023-07-08 08:15:14.971632 mef 1015 R rec 24c8be4b-1aa7-4d81-8419-d0011dc20de7 -2023-07-08 08:15:15.047533 2023-07-08 08:15:15.047538 mef 1016 R rec 859b0a87-755f-44aa-ba8a-7aee2e747281 -2023-07-08 08:15:15.132902 2023-07-08 08:15:15.132913 mef 1017 R rec 13620d9a-d93a-4e97-9e1b-307caa7f90a2 -2023-07-08 08:15:15.218113 2023-07-08 08:15:15.218118 mef 1018 R rec 7ba1f447-59f4-4ba0-82f3-6abec48871ac -2023-07-08 08:15:15.322919 2023-07-08 08:15:15.322929 mef 1019 R rec dab0fe10-fc7b-4389-b8d3-f7c01d69625a -2023-07-08 08:15:15.430672 2023-07-08 08:15:15.430682 mef 1020 R rec 798dca0a-defd-415d-9b16-0c787cf9bb77 -2023-07-08 08:15:15.514982 2023-07-08 08:15:15.514995 mef 1021 R rec 2f99910e-44ac-467c-8190-7b67955837e3 -2023-07-08 08:15:15.60869 2023-07-08 08:15:15.6087 mef 1022 R rec 3755fdc3-c74f-494f-8a84-9c80032b5efc -2023-07-08 08:15:15.70876 2023-07-08 08:15:15.708773 mef 1023 R rec 3d1774d7-434e-4e1d-8603-69dec06c6cdb -2023-07-08 08:15:15.803816 2023-07-08 08:15:15.803826 mef 1024 R rec 56530fec-c0ae-4ec7-a93d-f426f94cfcf1 -2023-07-08 08:15:15.892459 2023-07-08 08:15:15.892472 mef 1025 R rec 7815ccc9-1301-477e-9930-7168f1b1c12d -2023-07-08 08:15:15.983678 2023-07-08 08:15:15.983683 mef 1026 R rec ad541adf-54b2-421b-a685-76a063f3b9d4 -2023-07-08 08:15:16.068395 2023-07-08 08:15:16.068405 mef 1027 R rec 26541ca1-74cc-4447-8f02-67fb7820c4e8 -2023-07-08 08:15:16.169308 2023-07-08 08:15:16.169318 mef 1028 R rec ff3cc7f9-d355-4909-923e-5137258f6ea9 -2023-07-08 08:15:16.28141 2023-07-08 08:15:16.28142 mef 1029 R rec b2b0a4d7-021f-498a-85ae-c0ff4721a025 -2023-07-08 08:15:16.368451 2023-07-08 08:15:16.368461 mef 1030 R rec 9306cb65-ec4b-4226-85d3-d63aaf0941f5 -2023-07-08 08:15:16.460164 2023-07-08 08:15:16.46017 mef 1031 R rec b2a2597b-c785-40bd-8254-2bfef18a5767 -2023-07-08 08:15:16.564152 2023-07-08 08:15:16.564157 mef 1032 R rec 32449c70-d4db-4efa-b65b-74311ddf52db -2023-07-08 08:15:16.677485 2023-07-08 08:15:16.677496 mef 1033 R rec e9e562ba-2602-4b9d-b91d-af79d9467dee -2023-07-08 08:15:16.781459 2023-07-08 08:15:16.78147 mef 1034 R rec e20c1363-c464-4cc0-a132-b31d6078bb7a -2023-07-08 08:15:16.869707 2023-07-08 08:15:16.869717 mef 1035 R rec ba609bfd-ced8-461c-9b11-d70077314042 -2023-07-08 08:15:16.955103 2023-07-08 08:15:16.955108 mef 1036 R rec 18fef640-3fba-4752-a229-9cd11ebf6c4f -2023-07-08 08:15:17.035256 2023-07-08 08:15:17.035261 mef 1037 R rec 8b0806ac-59f9-4c2e-b186-53e209a59514 -2023-07-08 08:15:17.1155 2023-07-08 08:15:17.115514 mef 1038 R rec d9251911-7414-454f-845a-f448190e41ac -2023-07-08 08:15:17.196646 2023-07-08 08:15:17.196656 mef 1039 R rec ff52469d-9f73-4125-8987-e46f044fae99 -2023-07-08 08:15:17.28295 2023-07-08 08:15:17.28296 mef 1040 R rec dbdd1b99-885c-458c-a5a3-4d9aa1291fbd -2023-07-08 08:15:17.36946 2023-07-08 08:15:17.369474 mef 1041 R rec 01f42a0f-7833-43cb-ac79-3b90bc2bd6b5 -2023-07-08 08:15:17.471367 2023-07-08 08:15:17.471373 mef 1042 R rec ace3540d-c1f4-404e-9d3e-b36fb2c1c0d3 -2023-07-08 08:15:17.564583 2023-07-08 08:15:17.564593 mef 1043 R rec 4e6cc4e7-7a6c-4343-b766-ac43a66369e7 -2023-07-08 08:15:17.648031 2023-07-08 08:15:17.64804 mef 1044 R rec ab28cd80-8ca9-48c5-936a-886c2a13b170 -2023-07-08 08:15:17.762515 2023-07-08 08:15:17.762524 mef 1045 R rec e09f9a96-9baa-4aa2-af04-f7a415f207d2 -2023-07-08 08:15:17.857767 2023-07-08 08:15:17.857777 mef 1046 R rec b239d959-6eae-429e-a669-7dd6781a5803 -2023-07-08 08:15:17.944398 2023-07-08 08:15:17.944409 mef 1047 R rec 660b1fef-dd35-4157-b4d8-1c5edd0e949b -2023-07-08 08:15:18.039275 2023-07-08 08:15:18.03928 mef 1048 R rec cbc9d663-f852-49f3-9456-f0105f03c44f -2023-07-08 08:15:18.116017 2023-07-08 08:15:18.116022 mef 1049 R rec 1196f774-4efb-4c64-84b0-ec89f6048900 -2023-07-08 08:15:18.190533 2023-07-08 08:15:18.190541 mef 1050 R rec 3a6c75a5-1158-4e5b-9150-0904732d7abe -2023-07-08 08:15:18.299196 2023-07-08 08:15:18.299201 mef 1051 R rec aa8a2eee-1b27-4b9d-bf8b-479d38e646e5 -2023-07-08 08:15:18.409353 2023-07-08 08:15:18.409363 mef 1052 R rec 0d92f7a8-9ec9-48b7-8c28-abc1bfa63509 -2023-07-08 08:15:18.49613 2023-07-08 08:15:18.496145 mef 1053 R rec b09a39ce-9094-4f3a-94d5-74db4945ab43 -2023-07-08 08:15:18.586099 2023-07-08 08:15:18.586105 mef 1054 R rec f5003865-c5fd-4433-8148-574e9ccf8017 -2023-07-08 08:15:18.676527 2023-07-08 08:15:18.676536 mef 1055 R rec d2d8ae95-d36c-4516-879b-0db5e96b68c9 -2023-07-08 08:15:18.771714 2023-07-08 08:15:18.771725 mef 1056 R rec 4dfd30a5-ec4f-4f42-8592-9a2ac36b2772 -2023-07-08 08:15:18.86073 2023-07-08 08:15:18.860741 mef 1057 R rec 68389f8b-eaf2-42ba-af85-c0ce38e80773 -2023-07-08 08:15:18.969253 2023-07-08 08:15:18.969273 mef 1058 R rec 3af35ad7-d1ff-42b4-b460-bbc074df93b8 -2023-07-08 08:15:19.069798 2023-07-08 08:15:19.069812 mef 1059 R rec ce5c2b48-2029-46f4-9ee3-5d4a54d21f34 -2023-07-08 08:15:19.161634 2023-07-08 08:15:19.161652 mef 1060 R rec 953ce727-47e4-41c9-9aa6-caaeec4a7990 -2023-07-08 08:15:19.283311 2023-07-08 08:15:19.283323 mef 1061 R rec d556e7eb-b9cb-4fea-bbae-3500ae932fa4 -2023-07-08 08:15:19.386071 2023-07-08 08:15:19.386081 mef 1062 R rec 06f2c1e9-119e-4265-9f83-14f5abb4af87 -2023-07-08 08:15:19.479783 2023-07-08 08:15:19.47979 mef 1063 R rec 8a06a905-bcda-4de5-9e52-df336f45f86a -2023-07-08 08:15:19.56955 2023-07-08 08:15:19.569562 mef 1064 R rec 8c7b2e90-7dc5-4ad3-8375-6c4cf8bc4bdf -2023-07-08 08:15:19.651864 2023-07-08 08:15:19.651869 mef 1065 R rec 3d2b5c16-523a-49b2-9887-d840efd1e8f9 -2023-07-08 08:15:19.728223 2023-07-08 08:15:19.728228 mef 1066 R rec dd83de14-46c2-43e0-9cac-030627a7a219 -2023-07-08 08:15:19.815823 2023-07-08 08:15:19.815832 mef 1067 R rec 068af5cb-4e9c-4405-9688-dd875a27ff13 -2023-07-08 08:15:19.902142 2023-07-08 08:15:19.902152 mef 1068 R rec ac1376c8-a4bc-4579-8d4c-a515de815e3c -2023-07-08 08:15:19.98352 2023-07-08 08:15:19.983529 mef 1069 R rec 33171471-49f2-40f5-8e0f-0bf2bb5f0934 -2023-07-08 08:15:20.07661 2023-07-08 08:15:20.076622 mef 1070 R rec 9cccbe58-5cc1-41d1-add5-66deda0870dd -2023-07-08 08:15:20.15773 2023-07-08 08:15:20.157735 mef 1071 R rec 698697ef-a27b-4c49-bc98-6aeef512301c -2023-07-08 08:15:20.231523 2023-07-08 08:15:20.231531 mef 1072 R rec 48bc9971-9d17-4088-8cd7-661917578436 -2023-07-08 08:15:20.314887 2023-07-08 08:15:20.314896 mef 1073 R rec d4159797-19bf-4471-988d-26ae83513fc6 -2023-07-08 08:15:20.413951 2023-07-08 08:15:20.413964 mef 1074 R rec cac74e24-a6e5-4d8b-a52b-1622bb4dc20e -2023-07-08 08:15:20.491459 2023-07-08 08:15:20.491465 mef 1075 R rec fa3568f0-3e38-48aa-bf51-147e377a1d08 -2023-07-08 08:15:20.574427 2023-07-08 08:15:20.57445 mef 1076 R rec 14db02de-c374-4ba0-b06f-6fbbff758ac0 -2023-07-08 08:15:20.656697 2023-07-08 08:15:20.656707 mef 1077 R rec 63821ca2-c164-4868-80e7-8acbd0097dae -2023-07-08 08:15:20.756525 2023-07-08 08:15:20.756536 mef 1078 R rec b4309574-8b6e-455e-a6ea-d97ebe3811e9 -2023-07-08 08:15:20.851012 2023-07-08 08:15:20.851021 mef 1079 R rec 1d2cd064-4397-4815-8668-8da7d7dd70ea -2023-07-08 08:15:20.936264 2023-07-08 08:15:20.936279 mef 1080 R rec 647dc538-3431-42ea-be6d-dd3fbd346cab -2023-07-08 08:15:21.023554 2023-07-08 08:15:21.023559 mef 1081 R rec ca527497-525d-47b7-b775-e913c7e7c783 -2023-07-08 08:15:21.113266 2023-07-08 08:15:21.113277 mef 1082 R rec f50f524c-3e30-4b20-b79f-01b637f94105 -2023-07-08 08:15:21.199823 2023-07-08 08:15:21.199834 mef 1083 R rec d8d7d97c-a27b-4f92-8112-59b6eb0f8faf -2023-07-08 08:15:21.288647 2023-07-08 08:15:21.288658 mef 1084 R rec 02a06471-a31e-42c1-b74a-b6c3c4df971e -2023-07-08 08:15:21.377584 2023-07-08 08:15:21.377599 mef 1085 R rec e199d7ff-c757-48df-82cb-fd8580dcc3ad -2023-07-08 08:15:21.469764 2023-07-08 08:15:21.469771 mef 1086 R rec 87ab72c0-4638-4699-ad3b-32df084d57ad -2023-07-08 08:15:21.549502 2023-07-08 08:15:21.549514 mef 1087 R rec 00dce61f-c738-4f5d-9f67-b38ef89e0b93 -2023-07-08 08:15:21.638501 2023-07-08 08:15:21.638512 mef 1088 R rec c84d3922-6d44-4547-aaaf-88eff3cef88f -2023-07-08 08:15:21.735965 2023-07-08 08:15:21.735976 mef 1089 R rec 613175b2-4dc6-4a42-b587-f3ba209f2021 -2023-07-08 08:15:21.836105 2023-07-08 08:15:21.836123 mef 1090 R rec 8caf4d8a-09bf-40a6-9c0a-b5dcc270ad05 -2023-07-08 08:15:21.918202 2023-07-08 08:15:21.918207 mef 1091 R rec f7207964-d4b4-4a3e-801f-df879f8f6fd5 -2023-07-08 08:15:21.994954 2023-07-08 08:15:21.994961 mef 1092 R rec 1fa63451-eec4-4c7e-8c08-ee613f92f59a -2023-07-08 08:15:22.077853 2023-07-08 08:15:22.077858 mef 1093 R rec 4ba9d1c7-2792-44a0-83c1-b43fb71242be -2023-07-08 08:15:22.155039 2023-07-08 08:15:22.155042 mef 1094 R rec 5e5fb655-fe28-4ead-b1f0-ab6781c94e87 -2023-07-08 08:15:22.241405 2023-07-08 08:15:22.241416 mef 1095 R rec b6009bcd-b5bf-4e44-afc9-405b804f12d8 -2023-07-08 08:15:22.334184 2023-07-08 08:15:22.334198 mef 1096 R rec ef1351eb-851c-4502-87cc-d96a541d12b0 -2023-07-08 08:15:22.430357 2023-07-08 08:15:22.430368 mef 1097 R rec 1c55430a-cd3f-42b0-aec3-5838de15644c -2023-07-08 08:15:22.505756 2023-07-08 08:15:22.505764 mef 1098 R rec f58c00c6-004b-459d-a5c8-c8f8516e151e -2023-07-08 08:15:22.599554 2023-07-08 08:15:22.599565 mef 1099 R rec f91ac986-ea1b-404c-abfe-c68c08c76789 -2023-07-08 08:15:22.687647 2023-07-08 08:15:22.687657 mef 1100 R rec acfa409a-62dc-4691-a2e0-8fcd3ad563e7 -2023-07-08 08:15:22.782902 2023-07-08 08:15:22.782912 mef 1101 R rec cd857729-3310-47fe-b3e1-9648b94fff3e -2023-07-08 08:15:22.870387 2023-07-08 08:15:22.870398 mef 1102 R rec b68fd4f2-ee98-45b5-b2fd-0c9fb0a7eba3 -2023-07-08 08:15:22.958532 2023-07-08 08:15:22.958537 mef 1103 R rec e7cb0836-94a9-4218-bf0d-4c66567a0458 -2023-07-08 08:15:23.053486 2023-07-08 08:15:23.053501 mef 1104 R rec a78086b2-d709-4258-bdda-a04ccfc3767a -2023-07-08 08:15:23.159036 2023-07-08 08:15:23.159048 mef 1105 R rec 3e200b24-9f49-49dc-8117-d74dcf8314bd -2023-07-08 08:15:23.253891 2023-07-08 08:15:23.253901 mef 1106 R rec 2579ca0a-7c5f-4a60-9baa-8dc92db131bf -2023-07-08 08:15:23.346562 2023-07-08 08:15:23.346572 mef 1107 R rec 9c92211d-ac7e-4585-9841-6dc16431e745 -2023-07-08 08:15:23.443134 2023-07-08 08:15:23.443139 mef 1108 R rec f2368deb-a01d-4fa8-a15d-69a5b0b97fbb -2023-07-08 08:15:23.513056 2023-07-08 08:15:23.513061 mef 1109 R rec ad92aa3e-4dac-442b-bbd4-b1c2c05aadf8 -2023-07-08 08:15:23.608553 2023-07-08 08:15:23.608564 mef 1110 R rec fb6e8c37-d9e2-4524-8ee3-70b25b828f71 -2023-07-08 08:15:23.720103 2023-07-08 08:15:23.720116 mef 1111 R rec a28f5c42-de89-4351-8acc-b63fefe0e5b6 -2023-07-08 08:15:23.817706 2023-07-08 08:15:23.817722 mef 1112 R rec 53838eb9-b1db-49cd-9bfb-0e369f4ceaa7 -2023-07-08 08:15:23.925685 2023-07-08 08:15:23.925695 mef 1113 R rec d2dd5866-7da5-4ffc-976f-9e8c610321f6 -2023-07-08 08:15:24.003296 2023-07-08 08:15:24.003301 mef 1114 R rec b06dcc3f-6eb1-462e-82ef-c84d5b7a41d8 -2023-07-08 08:15:24.096358 2023-07-08 08:15:24.09637 mef 1115 R rec d0b845be-dcd3-41bd-bc49-d184bfb82c7b -2023-07-08 08:15:24.201724 2023-07-08 08:15:24.201737 mef 1116 R rec 1338f5a5-b015-44d5-8394-3327f9d18426 -2023-07-08 08:15:24.29301 2023-07-08 08:15:24.293021 mef 1117 R rec 1381fa92-b174-49dd-aef4-73371b798564 -2023-07-08 08:15:24.391171 2023-07-08 08:15:24.391182 mef 1118 R rec a1f217a0-f9e0-4f31-90ca-eb501e78b526 -2023-07-08 08:15:24.472915 2023-07-08 08:15:24.47292 mef 1119 R rec 331ca51e-6f33-42c4-a8cb-ecd4e3f6e87f -2023-07-08 08:15:24.54752 2023-07-08 08:15:24.547529 mef 1120 R rec 83059b73-4d1b-47da-9692-90880445ee56 -2023-07-08 08:15:24.646586 2023-07-08 08:15:24.646592 mef 1121 R rec 05845ed5-ef5f-4bbc-95c5-5a60ba513430 -2023-07-08 08:15:24.722359 2023-07-08 08:15:24.722364 mef 1122 R rec 6499bed3-ff61-4ab3-a216-19ecbbaa1b37 -2023-07-08 08:15:24.814783 2023-07-08 08:15:24.814794 mef 1123 R rec 5cedf20d-cf63-43d0-8dbc-c758cffceb7a -2023-07-08 08:15:24.901385 2023-07-08 08:15:24.9014 mef 1124 R rec 2ae6921c-936b-47d4-99aa-dfc27bc9bf31 -2023-07-08 08:15:24.999849 2023-07-08 08:15:24.999855 mef 1125 R rec a508b48c-c60c-4581-923d-355452ec45f8 -2023-07-08 08:15:25.088343 2023-07-08 08:15:25.088353 mef 1126 R rec a1937689-f155-4353-9a38-9662b7c4550d -2023-07-08 08:15:25.18489 2023-07-08 08:15:25.184901 mef 1127 R rec cae786cf-a966-46a8-9723-29367a963fb2 -2023-07-08 08:15:25.270994 2023-07-08 08:15:25.270998 mef 1128 R rec 5670c938-a2e1-4d5a-b533-30ee71f20748 -2023-07-08 08:15:25.360507 2023-07-08 08:15:25.360517 mef 1129 R rec 8537e132-39db-4d6b-8789-ae90f95a148e -2023-07-08 08:15:25.450879 2023-07-08 08:15:25.450891 mef 1130 R rec a7fafae5-cc67-485c-87f3-5ac17cc663fc -2023-07-08 08:15:25.533759 2023-07-08 08:15:25.533769 mef 1131 R rec ecd6192a-6532-46a2-881c-0b9698bbbd1d -2023-07-08 08:15:25.632665 2023-07-08 08:15:25.632676 mef 1132 R rec d550cffb-80fb-4400-adcd-8e889e6e945a -2023-07-08 08:15:25.72317 2023-07-08 08:15:25.723175 mef 1133 R rec ce6c824d-bec7-49fb-9faa-9063e86b98a3 -2023-07-08 08:15:25.827543 2023-07-08 08:15:25.827554 mef 1134 R rec 1a75709f-133c-45d1-b9bb-fa9063d4e4e2 -2023-07-08 08:15:25.935689 2023-07-08 08:15:25.935702 mef 1135 R rec 09ec839c-3ab9-4d05-8bc1-f43175b7dbbe -2023-07-08 08:15:26.010765 2023-07-08 08:15:26.010771 mef 1136 R rec e98f2411-2cb3-4616-b2b4-d91dd0bf8271 -2023-07-08 08:15:26.104604 2023-07-08 08:15:26.104608 mef 1137 R rec 54d09b30-4fff-41ff-933c-fe5799f263fa -2023-07-08 08:15:26.185506 2023-07-08 08:15:26.185514 mef 1138 R rec 278cf21a-ddc0-404b-9d6c-8c804b20540d -2023-07-08 08:15:26.268244 2023-07-08 08:15:26.268254 mef 1139 R rec bf5af02d-d87e-4809-85ea-d811aacaab1e -2023-07-08 08:15:26.361753 2023-07-08 08:15:26.361765 mef 1140 R rec 3335408b-fde1-4105-9d94-8ced1b1733aa -2023-07-08 08:15:26.473235 2023-07-08 08:15:26.47324 mef 1141 R rec b03f7929-12d3-4887-9319-67f0d911b621 -2023-07-08 08:15:26.551118 2023-07-08 08:15:26.551123 mef 1142 R rec bcfff467-3142-4971-8944-8785a6fb14c3 -2023-07-08 08:15:26.619279 2023-07-08 08:15:26.619284 mef 1143 R rec 20171cd7-067c-4f1a-adbf-02ab014cce8b -2023-07-08 08:15:26.699258 2023-07-08 08:15:26.699263 mef 1144 R rec 9700253b-eac5-4e62-ad3a-01b4226d1cf8 -2023-07-08 08:15:26.768415 2023-07-08 08:15:26.76842 mef 1145 R rec 22d83500-cf22-4d02-ae38-bc5b5c7fa870 -2023-07-08 08:15:26.838563 2023-07-08 08:15:26.838568 mef 1146 R rec 8a2dcedc-1745-4f74-869b-92d776bade8a -2023-07-08 08:15:26.920012 2023-07-08 08:15:26.920017 mef 1147 R rec 1ecb67af-808e-4d5e-aef5-1f884d5a013f -2023-07-08 08:15:27.004376 2023-07-08 08:15:27.004382 mef 1148 R rec 22700463-6caf-4440-b4fe-8071f0b984dc -2023-07-08 08:15:27.088476 2023-07-08 08:15:27.088481 mef 1149 R rec be7e5917-e506-475c-b3ab-66ce1ddc2a2f -2023-07-08 08:15:27.187276 2023-07-08 08:15:27.187281 mef 1150 R rec 20ab02be-2d30-40a9-9d25-b8690d9043fb -2023-07-08 08:15:27.267212 2023-07-08 08:15:27.267217 mef 1151 R rec 00b2c6e2-4b26-42b3-af97-6f84e632cbc0 -2023-07-08 08:15:27.36394 2023-07-08 08:15:27.363952 mef 1152 R rec 49408674-8f4a-4449-94d9-91bbe5a9c7a1 -2023-07-08 08:15:27.45897 2023-07-08 08:15:27.458985 mef 1153 R rec 750468c1-db59-41bb-9a70-6eefc6297e1d -2023-07-08 08:15:27.56089 2023-07-08 08:15:27.560897 mef 1154 R rec 3ef8b0de-606e-44c7-954f-5a543005fc90 -2023-07-08 08:15:27.653531 2023-07-08 08:15:27.653539 mef 1155 R rec 279f98ab-629b-4a94-b440-6961d88b1200 -2023-07-08 08:15:27.740186 2023-07-08 08:15:27.740191 mef 1156 R rec 5a75495a-4960-46d2-a4c8-bd082513af7d -2023-07-08 08:15:27.847927 2023-07-08 08:15:27.847937 mef 1157 R rec 03b19e39-0ba4-4570-ab4a-9541f5286b18 -2023-07-08 08:15:27.955302 2023-07-08 08:15:27.955315 mef 1158 R rec 0e1c11d6-d830-4a70-9f8c-fe4749583615 -2023-07-08 08:15:28.058913 2023-07-08 08:15:28.058922 mef 1159 R rec 517a0072-3034-4b6f-98ed-eac578593cd9 -2023-07-08 08:15:28.17084 2023-07-08 08:15:28.170851 mef 1160 R rec 0033a74e-5752-404b-8e5a-dbe571728804 -2023-07-08 08:15:28.295089 2023-07-08 08:15:28.295102 mef 1161 R rec af74d229-4541-49ca-8f7e-213ae55cecb6 -2023-07-08 08:15:28.425325 2023-07-08 08:15:28.425335 mef 1162 R rec e71ede7b-5b5b-49d4-8a95-a0480af534cf -2023-07-08 08:15:28.529514 2023-07-08 08:15:28.529525 mef 1163 R rec d417217c-7aa2-418e-9963-164acdb7129b -2023-07-08 08:15:28.637883 2023-07-08 08:15:28.637893 mef 1164 R rec ffd4ec7d-f012-478e-8d5f-894bc4508fee -2023-07-08 08:15:28.755162 2023-07-08 08:15:28.755175 mef 1165 R rec 572a62e3-0003-4325-9b37-1a2697aaef0c -2023-07-08 08:15:28.892498 2023-07-08 08:15:28.892509 mef 1166 R rec 43144f4e-4e16-4a8d-8635-e25cc19fd0e3 -2023-07-08 08:15:29.018832 2023-07-08 08:15:29.018847 mef 1167 R rec cce1180b-3450-4d10-b09c-84425cf37cb7 -2023-07-08 08:15:29.121608 2023-07-08 08:15:29.121619 mef 1168 R rec 3cc1c255-43f5-4e68-9b82-4b814748a92f -2023-07-08 08:15:29.222612 2023-07-08 08:15:29.222621 mef 1169 R rec 8403d435-32f4-451d-a5c3-0b046e787e42 -2023-07-08 08:15:29.333233 2023-07-08 08:15:29.333247 mef 1170 R rec d5255340-10de-4b49-9818-82629699c681 -2023-07-08 08:15:29.453944 2023-07-08 08:15:29.453955 mef 1171 R rec 7540fe87-ef62-46bb-8197-c3312b202e9d -2023-07-08 08:15:29.555082 2023-07-08 08:15:29.555093 mef 1172 R rec c8483b6a-92e8-42a4-a57a-ce83d08268b2 -2023-07-08 08:15:29.674697 2023-07-08 08:15:29.674707 mef 1173 R rec 96215491-0303-40b6-995a-4aa09010ee0c -2023-07-08 08:15:29.788245 2023-07-08 08:15:29.788255 mef 1174 R rec ac86a489-07fc-4356-931f-fa2af0cd3e6f -2023-07-08 08:15:29.899939 2023-07-08 08:15:29.899954 mef 1175 R rec 94fb65f2-7923-4e34-b0d0-43da6dbf256a -2023-07-08 08:15:30.017979 2023-07-08 08:15:30.017989 mef 1176 R rec 31e60890-b2c1-4ea2-bdae-25a464c19123 -2023-07-08 08:15:30.13616 2023-07-08 08:15:30.136173 mef 1177 R rec b2e3ce4d-ad8c-4d0b-b750-edc06affb497 -2023-07-08 08:15:30.277752 2023-07-08 08:15:30.277765 mef 1178 R rec 3d219b14-f7d5-4866-ab77-e6f7b5b031cd -2023-07-08 08:15:30.400216 2023-07-08 08:15:30.400226 mef 1179 R rec bab02192-4de2-42c4-91d7-30fae0b258a2 -2023-07-08 08:15:30.500304 2023-07-08 08:15:30.500315 mef 1180 R rec 82f3a133-05c7-4624-8ab5-706380a1a129 -2023-07-08 08:15:30.61001 2023-07-08 08:15:30.610021 mef 1181 R rec 2af810e4-f061-4e3d-92ca-508046330e1f -2023-07-08 08:15:30.790273 2023-07-08 08:15:30.790283 mef 1182 R rec 6fa24992-56bf-4401-8836-d8a7e9765c52 -2023-07-08 08:15:30.929635 2023-07-08 08:15:30.929656 mef 1183 R rec 66373932-a70a-446d-aeac-fd7b475fe4af -2023-07-08 08:15:31.062407 2023-07-08 08:15:31.062422 mef 1184 R rec d08052c0-b603-4e97-ab57-ced59e5ed29f -2023-07-08 08:15:31.177572 2023-07-08 08:15:31.177581 mef 1185 R rec 19567280-c194-417c-a764-4b7069618810 -2023-07-08 08:15:31.291201 2023-07-08 08:15:31.291217 mef 1186 R rec d5f27273-05ed-4b14-982e-5384e7211ede -2023-07-08 08:15:31.424531 2023-07-08 08:15:31.424542 mef 1187 R rec da40348a-4cf0-43a1-83d3-e0d996daef38 -2023-07-08 08:15:31.542881 2023-07-08 08:15:31.542891 mef 1188 R rec 49411bb2-b8e7-4bbe-a0b9-1573fd8cfa64 -2023-07-08 08:15:31.678334 2023-07-08 08:15:31.678346 mef 1189 R rec c903a99e-69de-49aa-840b-407d944e6a18 -2023-07-08 08:15:31.792344 2023-07-08 08:15:31.792355 mef 1190 R rec b9d3b893-f682-4142-8c8a-e1d3956fd21e -2023-07-08 08:15:31.897326 2023-07-08 08:15:31.897337 mef 1191 R rec 352bb98b-7c32-4435-9715-30f25e9563a3 -2023-07-08 08:15:32.018877 2023-07-08 08:15:32.018888 mef 1192 R rec f1e648a2-68e3-4cbe-9392-1939695ff0a4 -2023-07-08 08:15:32.139958 2023-07-08 08:15:32.13997 mef 1193 R rec eb2bb7f5-bfb6-4c2c-aa29-b1eb3e00abd6 -2023-07-08 08:15:32.283362 2023-07-08 08:15:32.283375 mef 1194 R rec 52d01fa0-721d-4dfd-8dd3-39365929384f -2023-07-08 08:15:32.412442 2023-07-08 08:15:32.412454 mef 1195 R rec b505ff64-dfcd-406c-b40d-ea9693e7f670 -2023-07-08 08:15:32.524664 2023-07-08 08:15:32.524675 mef 1196 R rec 34e152db-fc97-4431-aaa8-acb8397122cf -2023-07-08 08:15:32.617893 2023-07-08 08:15:32.617903 mef 1197 R rec cb71ebc8-79da-4d0a-84fe-e8fb610a60d9 -2023-07-08 08:15:32.764348 2023-07-08 08:15:32.7644 mef 1198 R rec c9c1cd30-f984-4953-92b1-7ecfad403bf0 -2023-07-08 08:15:32.895544 2023-07-08 08:15:32.895559 mef 1199 R rec 50e98716-e26e-4201-b629-2a829b5b296e -2023-07-08 08:15:33.030972 2023-07-08 08:15:33.030983 mef 1200 R rec e417088c-13d9-4b6b-9405-bb6119e32f67 -2023-07-08 08:15:33.147664 2023-07-08 08:15:33.147674 mef 1201 R rec bc7a1c83-52e9-4308-8f78-899c096cd298 -2023-07-08 08:15:33.271202 2023-07-08 08:15:33.271215 mef 1202 R rec eaa55506-ba59-4fd4-823f-00c6c3ee1c4e -2023-07-08 08:15:33.384713 2023-07-08 08:15:33.384723 mef 1203 R rec cfb64691-66ac-4d49-a98c-0d731e5be02f -2023-07-08 08:15:33.519413 2023-07-08 08:15:33.519424 mef 1204 R rec fdca7b9c-4766-4a40-82c4-a88403bd2279 -2023-07-08 08:15:33.652443 2023-07-08 08:15:33.652453 mef 1205 R rec 996f713d-af5f-416a-a131-bfe944295194 -2023-07-08 08:15:33.768495 2023-07-08 08:15:33.768507 mef 1206 R rec 8f2c59c5-c40c-4563-a92a-116334ca9934 -2023-07-08 08:15:33.89917 2023-07-08 08:15:33.899183 mef 1207 R rec a38a027a-bcce-465f-8418-80a5ded182ae -2023-07-08 08:15:34.019279 2023-07-08 08:15:34.019291 mef 1208 R rec 3bd73572-918c-4965-b844-bf3cea7053c6 -2023-07-08 08:15:34.13517 2023-07-08 08:15:34.135183 mef 1209 R rec 2a91b12d-1e84-4d74-b8c9-f3ba1dae529b -2023-07-08 08:15:34.25197 2023-07-08 08:15:34.251982 mef 1210 R rec c458b020-5e2b-4987-b31c-7f2309a11784 -2023-07-08 08:15:34.358593 2023-07-08 08:15:34.358604 mef 1211 R rec a759a7f7-47ff-42d1-b142-8dea3e7a1366 -2023-07-08 08:15:34.463751 2023-07-08 08:15:34.46376 mef 1212 R rec a731cfb4-792a-46eb-a7d4-a6dc6b23b999 -2023-07-08 08:15:34.555932 2023-07-08 08:15:34.55594 mef 1213 R rec ba36a1a6-fada-4a3f-8553-e2db16bc06be -2023-07-08 08:15:34.625163 2023-07-08 08:15:34.625169 mef 1214 R rec 231e5e34-67cc-497c-b824-2d633bc15b11 -2023-07-08 08:15:34.700819 2023-07-08 08:15:34.700822 mef 1215 R rec fe6626e8-8ee5-46c1-93a5-eccd3748b460 -2023-07-08 08:15:34.782597 2023-07-08 08:15:34.782602 mef 1216 R rec 22393d8d-2336-4b11-b1e0-d80b5a1a34b6 -2023-07-08 08:15:34.850592 2023-07-08 08:15:34.850597 mef 1217 R rec 77c0c658-971f-4585-a703-ea760a11ad58 -2023-07-08 08:15:34.918453 2023-07-08 08:15:34.918458 mef 1218 R rec 85ccf831-9a12-46aa-8d0d-c85614386789 -2023-07-08 08:15:34.991763 2023-07-08 08:15:34.991769 mef 1219 R rec c0eabd6a-d0eb-4717-8715-690cdacd0f92 -2023-07-08 08:15:35.070295 2023-07-08 08:15:35.070298 mef 1220 R rec 08a5bf3d-1d38-49d9-bbb1-6f1390d52861 -2023-07-08 08:15:35.139976 2023-07-08 08:15:35.139982 mef 1221 R rec ed02fabf-0c40-4f60-8ca9-66fa597200a2 -2023-07-08 08:15:35.209296 2023-07-08 08:15:35.209301 mef 1222 R rec f4c0e338-5619-49f7-9005-79f27eaa4128 -2023-07-08 08:15:35.279967 2023-07-08 08:15:35.279972 mef 1223 R rec fef4ca2b-b5a2-4846-9009-a3d0e535e797 -2023-07-08 08:15:35.370415 2023-07-08 08:15:35.370424 mef 1224 R rec 9b166907-edaa-4820-9058-e8251083b8cb -2023-07-08 08:15:35.479595 2023-07-08 08:15:35.479879 mef 1225 R rec 5e717999-03c1-445c-a7fe-45176b8b900e -2023-07-08 08:15:35.593325 2023-07-08 08:15:35.593336 mef 1226 R rec 7fae470b-2e6b-40f8-a8db-6fc3c9a1a156 -2023-07-08 08:15:35.715072 2023-07-08 08:15:35.715081 mef 1227 R rec 6ece7313-7ffd-44a9-97c6-28a08ae04de1 -2023-07-08 08:15:35.809485 2023-07-08 08:15:35.809502 mef 1228 R rec 44f92afc-9a90-46f1-812d-18be599157d0 -2023-07-08 08:15:35.906645 2023-07-08 08:15:35.906655 mef 1229 R rec 5979ddc8-ca8e-4345-a901-ca2a28a86262 -2023-07-08 08:15:35.998909 2023-07-08 08:15:35.998914 mef 1230 R rec 49e01477-21ad-4882-a113-497b56d20ef6 -2023-07-08 08:15:36.073709 2023-07-08 08:15:36.073714 mef 1231 R rec 5c2d3b49-9b45-4879-9d84-a45969b803e3 -2023-07-08 08:15:36.155862 2023-07-08 08:15:36.15587 mef 1232 R rec 10482a49-31fb-4abe-94d0-a965c423f0b6 -2023-07-08 08:15:36.256103 2023-07-08 08:15:36.256116 mef 1233 R rec b7690829-77a8-44b1-8bfa-ebec9bcffd05 -2023-07-08 08:15:36.348145 2023-07-08 08:15:36.34815 mef 1234 R rec d005927c-b834-45ab-a585-cac82f03a0e0 -2023-07-08 08:15:36.430785 2023-07-08 08:15:36.430795 mef 1235 R rec a872deb4-25c0-460c-b11d-bd090f16cb05 -2023-07-08 08:15:36.514471 2023-07-08 08:15:36.514476 mef 1236 R rec a4bf2ea0-8b77-4bc4-af84-499c00d403bc -2023-07-08 08:15:36.583598 2023-07-08 08:15:36.583603 mef 1237 R rec 886843d1-10e3-4d71-a064-5f4849373213 -2023-07-08 08:15:36.650477 2023-07-08 08:15:36.650482 mef 1238 R rec c9d6f1f0-bcb8-4f9c-97a4-38abec3155e5 -2023-07-08 08:15:36.719528 2023-07-08 08:15:36.719532 mef 1239 R rec d482182e-f2f0-4eba-95c0-e988a0b680c6 -2023-07-08 08:15:36.790246 2023-07-08 08:15:36.790251 mef 1240 R rec 70c4168c-d95a-4476-8ea1-bb8ed972565b -2023-07-08 08:15:36.879092 2023-07-08 08:15:36.879105 mef 1241 R rec 10ef412f-03c5-4585-bf1b-fd4f03ebb92e -2023-07-08 08:15:36.96783 2023-07-08 08:15:36.967844 mef 1242 R rec 4d900433-ae01-49f0-b30a-fc69559b5953 -2023-07-08 08:15:37.037729 2023-07-08 08:15:37.037734 mef 1243 R rec fcd392e3-3975-4de5-a985-df210a5376ce -2023-07-08 08:15:37.128356 2023-07-08 08:15:37.128368 mef 1244 R rec d00343b2-e34e-4ef2-a229-75a8bd71bd03 -2023-07-08 08:15:37.231691 2023-07-08 08:15:37.231702 mef 1245 R rec dce29ace-90cc-4109-9cad-533770237b4f -2023-07-08 08:15:37.325536 2023-07-08 08:15:37.325549 mef 1246 R rec 3d57a1ee-6135-41ab-b989-abceac4abd99 -2023-07-08 08:15:37.411157 2023-07-08 08:15:37.411167 mef 1247 R rec 6fb1fd12-ca99-4b8d-a97e-87a1657b633f -2023-07-08 08:15:37.497735 2023-07-08 08:15:37.49774 mef 1248 R rec c8f30871-9c5b-409d-af97-1e7422532fcf -2023-07-08 08:15:37.573226 2023-07-08 08:15:37.573231 mef 1249 R rec 1954922f-2416-4f54-b9c6-06772d7d045c -2023-07-08 08:15:37.656659 2023-07-08 08:15:37.656672 mef 1250 R rec 004b5eed-d4fa-4386-8562-536756246ded -2023-07-08 08:15:37.745999 2023-07-08 08:15:37.746009 mef 1251 R rec cc01b5ac-274d-4ab6-b954-11e7befdf41f -2023-07-08 08:15:37.837813 2023-07-08 08:15:37.83783 mef 1252 R rec 429e7402-6782-4cf0-98f2-586eac55144c -2023-07-08 08:15:37.9421 2023-07-08 08:15:37.942111 mef 1253 R rec 60c479da-6cdf-46fc-b3ea-f3259d1b64f0 -2023-07-08 08:15:38.03005 2023-07-08 08:15:38.030053 mef 1254 R rec d52848dc-9352-414a-96b0-c750dc9d71fe -2023-07-08 08:15:38.098263 2023-07-08 08:15:38.098269 mef 1255 R rec 1c95e9c4-dbe2-4a24-8af1-98705086c9a5 -2023-07-08 08:15:38.182201 2023-07-08 08:15:38.182211 mef 1256 R rec a1696990-7025-4bea-aa7f-3175b92c2426 -2023-07-08 08:15:38.300352 2023-07-08 08:15:38.300362 mef 1257 R rec f1342a69-8259-4778-833b-d64b9fe99b58 -2023-07-08 08:15:38.386782 2023-07-08 08:15:38.386792 mef 1258 R rec 3423c6d2-9b32-4c77-b2b1-db41364b39ea -2023-07-08 08:15:38.470312 2023-07-08 08:15:38.470317 mef 1259 R rec 4ed72b77-518a-4739-b3b5-86fb80ab66e8 -2023-07-08 08:15:38.543605 2023-07-08 08:15:38.54361 mef 1260 R rec 2d7b57d0-11cb-4f8a-be46-bb6c47c632a8 -2023-07-08 08:15:38.623518 2023-07-08 08:15:38.623523 mef 1261 R rec 105cc372-0b02-496e-8980-1eae17cb19a8 -2023-07-08 08:15:38.702733 2023-07-08 08:15:38.702744 mef 1262 R rec 8e88a83b-4695-46c3-95e9-d9e60a50c8ef -2023-07-08 08:15:38.794421 2023-07-08 08:15:38.794431 mef 1263 R rec 358a9043-8437-4c43-afba-d2add3db3dec -2023-07-08 08:15:38.88976 2023-07-08 08:15:38.889771 mef 1264 R rec bdb50386-4e19-4fe4-b627-18716bfd917d -2023-07-08 08:15:38.984977 2023-07-08 08:15:38.984987 mef 1265 R rec 4dbb5c55-073e-4aa4-a1d5-a9f5d3ee30ff -2023-07-08 08:15:39.075547 2023-07-08 08:15:39.075557 mef 1266 R rec 682070c9-06aa-4438-af2b-fc14ebd8b034 -2023-07-08 08:15:39.182339 2023-07-08 08:15:39.182349 mef 1267 R rec f6016c48-de4d-406d-914f-a0661edadcc7 -2023-07-08 08:15:39.279187 2023-07-08 08:15:39.279199 mef 1268 R rec deab9e33-8174-40a1-a7dc-59b46917f62d -2023-07-08 08:15:39.385501 2023-07-08 08:15:39.385511 mef 1269 R rec 465a8be9-4c27-41ac-86eb-2870040658ac -2023-07-08 08:15:39.502212 2023-07-08 08:15:39.502221 mef 1270 R rec b9565c8b-b874-4342-acb1-cb91aefbc06c -2023-07-08 08:15:39.598727 2023-07-08 08:15:39.598739 mef 1271 R rec e5ddd9ec-acfc-4a45-b578-f0e035aebf50 -2023-07-08 08:15:39.688983 2023-07-08 08:15:39.688994 mef 1272 R rec 88ffa51d-56aa-43db-9c02-e469b7d604dc -2023-07-08 08:15:39.774481 2023-07-08 08:15:39.774486 mef 1273 R rec 83ff45b2-8bcf-4284-bba9-88afd8357ed9 -2023-07-08 08:15:39.856996 2023-07-08 08:15:39.857009 mef 1274 R rec 47aa5a85-30ce-4a71-8c85-3f3f4914476f -2023-07-08 08:15:39.95779 2023-07-08 08:15:39.957801 mef 1275 R rec 0781affe-5d28-4ba6-b0e7-28167f53bdbf -2023-07-08 08:15:40.040106 2023-07-08 08:15:40.040125 mef 1276 R rec 0c63e622-f4ec-4d0f-b6fd-21fafec1218d -2023-07-08 08:15:40.118155 2023-07-08 08:15:40.11816 mef 1277 R rec 5d1980c6-9745-44db-adea-9aaf0596ae4a -2023-07-08 08:15:40.205963 2023-07-08 08:15:40.205976 mef 1278 R rec 8525aad7-a000-433a-a38d-3b2e67368fa3 -2023-07-08 08:15:40.296819 2023-07-08 08:15:40.296829 mef 1279 R rec b88b85c2-f636-4195-8d6f-86fda290f373 -2023-07-08 08:15:40.396633 2023-07-08 08:15:40.396644 mef 1280 R rec df8eb013-c19e-4e9e-aca7-0e16f36d4f62 -2023-07-08 08:15:40.485795 2023-07-08 08:15:40.485806 mef 1281 R rec 0c878e2c-9d7c-4dd5-8e65-69f52ae280ac -2023-07-08 08:15:40.589607 2023-07-08 08:15:40.589619 mef 1282 R rec a3359d88-b29d-483e-9cd9-e17cd332efab -2023-07-08 08:15:40.681307 2023-07-08 08:15:40.681317 mef 1283 R rec fbf09b44-8142-4088-8d39-dfe6bd46bfe9 -2023-07-08 08:15:40.796021 2023-07-08 08:15:40.796033 mef 1284 R rec dde84b59-87c1-4dcd-aaa2-da94fd92b5ff -2023-07-08 08:15:40.882803 2023-07-08 08:15:40.882815 mef 1285 R rec be4f303b-b37c-4854-be23-58b541f64d0d -2023-07-08 08:15:40.990978 2023-07-08 08:15:40.99099 mef 1286 R rec 8248f746-15e2-44c5-8647-42f1687252eb -2023-07-08 08:15:41.093086 2023-07-08 08:15:41.093097 mef 1287 R rec 00b72124-91dc-4cd8-8eb0-c66027b2d07c -2023-07-08 08:15:41.181238 2023-07-08 08:15:41.181249 mef 1288 R rec 0672a042-25d7-47de-abb5-ee63e819334c -2023-07-08 08:15:41.271129 2023-07-08 08:15:41.271139 mef 1289 R rec 6e875b17-64bb-49b1-b276-d5733fc6e4ff -2023-07-08 08:15:41.359911 2023-07-08 08:15:41.359919 mef 1290 R rec a4a201da-f84f-4d29-9d44-9d20fb3f3a97 -2023-07-08 08:15:41.45203 2023-07-08 08:15:41.452043 mef 1291 R rec b2c9e59d-178e-4490-a8fd-aebbdd9fa4b3 -2023-07-08 08:15:41.551254 2023-07-08 08:15:41.551264 mef 1292 R rec 2a37c16e-aee6-426a-90cd-9d111f2c6b5c -2023-07-08 08:15:41.64488 2023-07-08 08:15:41.644891 mef 1293 R rec feeeab7c-c841-4df1-8c0a-f6f9a4328233 -2023-07-08 08:15:41.728311 2023-07-08 08:15:41.728315 mef 1294 R rec 6475b3ef-0c24-4f51-95db-87b6285f0a80 -2023-07-08 08:15:41.827764 2023-07-08 08:15:41.827774 mef 1295 R rec bfaf4026-3e69-4160-a974-81b6738ad4a2 -2023-07-08 08:15:41.908977 2023-07-08 08:15:41.908983 mef 1296 R rec 301adf2e-3a75-48b2-aabf-65f49f073612 -2023-07-08 08:15:41.996397 2023-07-08 08:15:41.996411 mef 1297 R rec 4dda42d6-30bb-401e-ae8b-a04fdbe92b7c -2023-07-08 08:15:42.104832 2023-07-08 08:15:42.104845 mef 1298 R rec 574c3d5f-548c-4f75-a873-aedec9589385 -2023-07-08 08:15:42.208869 2023-07-08 08:15:42.208879 mef 1299 R rec 28b61021-4108-4dcb-b97c-3c68c58a2814 -2023-07-08 08:15:42.291538 2023-07-08 08:15:42.291548 mef 1300 R rec 6af8a0fb-ea21-41d9-bb08-b14231e24562 -2023-07-08 08:15:42.380905 2023-07-08 08:15:42.380917 mef 1301 R rec 81332152-0d14-404f-b3fe-652133ef2760 -2023-07-08 08:15:42.482193 2023-07-08 08:15:42.482203 mef 1302 R rec de343aea-ed0c-4e44-ad3e-c403abc684d3 -2023-07-08 08:15:42.562348 2023-07-08 08:15:42.562353 mef 1303 R rec 9e1408e8-c0ac-40de-8913-b2079e2a6eed -2023-07-08 08:15:42.644337 2023-07-08 08:15:42.644343 mef 1304 R rec 7b61ec42-b8a3-4494-bed4-7b7be7be6da3 -2023-07-08 08:15:42.720388 2023-07-08 08:15:42.720393 mef 1305 R rec b0b96165-e028-4cec-b499-e9308d3cf5d1 -2023-07-08 08:15:42.801729 2023-07-08 08:15:42.801741 mef 1306 R rec 5ebfeb5a-2c0a-439a-a5c1-12cf0e5256d9 -2023-07-08 08:15:42.886449 2023-07-08 08:15:42.886455 mef 1307 R rec ea2935ec-33a2-4505-8f4b-cacbc4fc8523 -2023-07-08 08:15:42.962079 2023-07-08 08:15:42.962087 mef 1308 R rec 6c0c8cd0-5229-4c97-a01f-aac3d2ef2437 -2023-07-08 08:15:43.061653 2023-07-08 08:15:43.061658 mef 1309 R rec 249d6179-5bd5-40f8-b238-027e2324b6ae -2023-07-08 08:15:43.170855 2023-07-08 08:15:43.170867 mef 1310 R rec a0d70855-069c-4ad6-a319-965796de6870 -2023-07-08 08:15:43.27891 2023-07-08 08:15:43.27892 mef 1311 R rec 0248e5ad-bb8c-4f8d-8002-fdbc6bc694d7 -2023-07-08 08:15:43.363359 2023-07-08 08:15:43.363368 mef 1312 R rec f92c3dca-d7a9-46ad-9ade-13370b19883b -2023-07-08 08:15:43.459853 2023-07-08 08:15:43.459863 mef 1313 R rec d0d0cabe-fca8-47d4-99ca-53482d51101c -2023-07-08 08:15:43.546199 2023-07-08 08:15:43.546204 mef 1314 R rec 882dbf5c-4194-43f3-b207-5f975a83af2b -2023-07-08 08:15:43.617805 2023-07-08 08:15:43.617811 mef 1315 R rec a4c8f525-d0e4-4e1a-bde9-3da65359bc56 -2023-07-08 08:15:43.709921 2023-07-08 08:15:43.70993 mef 1316 R rec fcd5e1ec-fd84-4965-bcab-92f858fda98e -2023-07-08 08:15:43.809025 2023-07-08 08:15:43.809036 mef 1317 R rec 66d9daed-9437-4bb5-98b6-af9ac9d67845 -2023-07-08 08:15:43.906034 2023-07-08 08:15:43.906045 mef 1318 R rec d6796452-a0f6-4bbf-8929-7146d111636e -2023-07-08 08:15:44.001091 2023-07-08 08:15:44.001102 mef 1319 R rec 4eb53af3-eb23-4fa1-9cc5-a37fe4b0868d -2023-07-08 08:15:44.089997 2023-07-08 08:15:44.090012 mef 1320 R rec 3aa39583-bcf1-45c1-9701-40c449019dae -2023-07-08 08:15:44.170543 2023-07-08 08:15:44.170552 mef 1321 R rec 1c716f74-1145-4364-846d-37be00b4024d -2023-07-08 08:15:44.26894 2023-07-08 08:15:44.268949 mef 1322 R rec 1f3b2386-86df-4b7b-941b-0812b659630d -2023-07-08 08:15:44.354209 2023-07-08 08:15:44.354214 mef 1323 R rec c9d3a4d3-0c33-4711-91ba-191d9c0079f6 -2023-07-08 08:15:44.432638 2023-07-08 08:15:44.432644 mef 1324 R rec b16057bd-8cf4-4531-8060-cfec19885b17 -2023-07-08 08:15:44.524571 2023-07-08 08:15:44.524577 mef 1325 R rec 05275852-6276-4623-9983-e424f8c49de8 -2023-07-08 08:15:44.617457 2023-07-08 08:15:44.617466 mef 1326 R rec 3c8cb8c9-9aa5-44c6-8a97-397b68155055 -2023-07-08 08:15:44.694757 2023-07-08 08:15:44.694765 mef 1327 R rec b697153f-c27c-4ccd-b19c-a98fc1c9d3eb -2023-07-08 08:15:44.781969 2023-07-08 08:15:44.781974 mef 1328 R rec c03c6a4a-ba05-4b4e-9a41-91f904626e57 -2023-07-08 08:15:44.875506 2023-07-08 08:15:44.875511 mef 1329 R rec 18829cca-543d-415a-a5f6-908ff5a8b2ee -2023-07-08 08:15:44.962598 2023-07-08 08:15:44.962611 mef 1330 R rec 68302a6a-2c5d-438b-8c09-406fc3361689 -2023-07-08 08:15:45.051165 2023-07-08 08:15:45.051173 mef 1331 R rec f16f81aa-9c0e-4fad-8959-8c4f50217880 -2023-07-08 08:15:45.145528 2023-07-08 08:15:45.145533 mef 1332 R rec 5a984e5b-703f-4ce9-9496-88366c9af415 -2023-07-08 08:15:45.225739 2023-07-08 08:15:45.225746 mef 1333 R rec 5d945967-032e-4ab1-9a57-fd77ba584027 -2023-07-08 08:15:45.322912 2023-07-08 08:15:45.322922 mef 1334 R rec 51001c8e-738e-449f-b4b7-d6b97dda90af -2023-07-08 08:15:45.417004 2023-07-08 08:15:45.417015 mef 1335 R rec 60a04ae9-cca2-46cd-b649-fd1c39d9eb66 -2023-07-08 08:15:45.510137 2023-07-08 08:15:45.510143 mef 1336 R rec 075c4b2a-c6b0-4b08-a7ba-2f721fd328f0 -2023-07-08 08:15:45.587374 2023-07-08 08:15:45.587381 mef 1337 R rec 47fedcce-4223-4748-aca1-704031320a86 -2023-07-08 08:15:45.679864 2023-07-08 08:15:45.679869 mef 1338 R rec c8952f59-d7c3-4215-b185-cf6b49dadc2c -2023-07-08 08:15:45.758796 2023-07-08 08:15:45.758802 mef 1339 R rec 2175d950-0c27-4b39-b08f-47566cb8d351 -2023-07-08 08:15:45.836259 2023-07-08 08:15:45.836264 mef 1340 R rec 02b48a11-b5cc-4c74-b2f3-71e3a25b1e62 -2023-07-08 08:15:45.910436 2023-07-08 08:15:45.910442 mef 1341 R rec 1b4536fe-2aca-40e3-b9b0-54ada60a9d61 -2023-07-08 08:15:46.008454 2023-07-08 08:15:46.008466 mef 1342 R rec 3f0b34de-b297-4f37-97e5-eeff7e210b01 -2023-07-08 08:15:46.116254 2023-07-08 08:15:46.116267 mef 1343 R rec 0fa273dd-3b14-4069-818a-cfcb0808c9d2 -2023-07-08 08:15:46.202126 2023-07-08 08:15:46.202132 mef 1344 R rec 8756d194-1585-4fd4-8fe2-21617cd10202 -2023-07-08 08:15:46.281875 2023-07-08 08:15:46.28188 mef 1345 R rec 07c1ab2e-9ba8-4e2a-84ad-384fc4bbbd53 -2023-07-08 08:15:46.362483 2023-07-08 08:15:46.362494 mef 1346 R rec 62376dec-921a-411a-a99e-aaabee65386e -2023-07-08 08:15:46.446945 2023-07-08 08:15:46.446949 mef 1347 R rec da111560-f0db-4abb-b293-3499013ecb20 -2023-07-08 08:15:46.529025 2023-07-08 08:15:46.529029 mef 1348 R rec 88b236fc-9d88-495b-b736-a08a0d9c3a71 -2023-07-08 08:15:46.598426 2023-07-08 08:15:46.598431 mef 1349 R rec 2a11dbac-e7db-4d85-8b8f-bad8451a9b8f -2023-07-08 08:15:46.689824 2023-07-08 08:15:46.68983 mef 1350 R rec 587ed4cd-9bc4-4d75-b206-bd1c61b012ab -2023-07-08 08:15:46.779242 2023-07-08 08:15:46.779247 mef 1351 R rec eac94b2a-5e34-4b9d-b9ea-561455f4b1f5 -2023-07-08 08:15:46.860432 2023-07-08 08:15:46.860441 mef 1352 R rec ef398468-e540-41a7-a343-f52b78334a8a -2023-07-08 08:15:46.961891 2023-07-08 08:15:46.961901 mef 1353 R rec c2b5577c-cd3e-4057-ada4-27b09c7f8004 -2023-07-08 08:15:47.046209 2023-07-08 08:15:47.046214 mef 1354 R rec ba5099e0-32e4-4cb9-a8a2-0b6fa8a6928d -2023-07-08 08:15:47.119874 2023-07-08 08:15:47.119879 mef 1355 R rec 2c1392f9-f12c-40fd-b299-1e87bd54bf35 -2023-07-08 08:15:47.189833 2023-07-08 08:15:47.189838 mef 1356 R rec 29af4fa6-15a1-4ffb-b4ed-0f9e0ab3ef89 -2023-07-08 08:15:47.25553 2023-07-08 08:15:47.255535 mef 1357 R rec 0f10193a-16fb-44aa-b85d-bee25788aac5 -2023-07-08 08:15:47.326148 2023-07-08 08:15:47.326153 mef 1358 R rec 560ed47b-ece7-4d77-9eb6-ed8722ff7ec0 -2023-07-08 08:15:47.432682 2023-07-08 08:15:47.432694 mef 1359 R rec 67632a6f-1b1b-4d63-91c8-43c78df671b2 -2023-07-08 08:15:47.509561 2023-07-08 08:15:47.50957 mef 1360 R rec 2432627b-b02c-494d-8425-965c64c30d99 -2023-07-08 08:15:47.589209 2023-07-08 08:15:47.589214 mef 1361 R rec fa8ef1aa-b96b-4376-8dfc-6257bf7770be -2023-07-08 08:15:47.653297 2023-07-08 08:15:47.653301 mef 1362 R rec c51a437f-e279-4cf9-8e79-a274dc4c99f7 -2023-07-08 08:15:47.723376 2023-07-08 08:15:47.723383 mef 1363 R rec e9fb3b80-0f7b-4fce-bdd4-6ba436d3c8cc -2023-07-08 08:15:47.794126 2023-07-08 08:15:47.794131 mef 1364 R rec 81db08e1-461e-41ec-b72a-a2ce1f36dadc -2023-07-08 08:15:47.865638 2023-07-08 08:15:47.865643 mef 1365 R rec 98f6f945-2c78-41ab-a029-e3a6c86e133c -2023-07-08 08:15:47.933566 2023-07-08 08:15:47.933571 mef 1366 R rec 166f3349-3885-4c72-8a06-c819d153eccc -2023-07-08 08:15:48.026462 2023-07-08 08:15:48.026467 mef 1367 R rec 31d58e79-6c66-4da3-9d26-01a48b3c5254 -2023-07-08 08:15:48.099984 2023-07-08 08:15:48.099992 mef 1368 R rec 4f29fe0b-daf7-40f6-a298-2f92b2d0b79a -2023-07-08 08:15:48.182861 2023-07-08 08:15:48.182866 mef 1369 R rec e301b464-6e10-4f2f-865d-450a7907cc8c -2023-07-08 08:15:48.275744 2023-07-08 08:15:48.275755 mef 1370 R rec de75c7d6-adf0-4fd8-95ee-2e22f9a53fb3 -2023-07-08 08:15:48.366118 2023-07-08 08:15:48.366127 mef 1371 R rec a77298bc-90fa-4c9a-9920-71c5638341f8 -2023-07-08 08:15:48.453281 2023-07-08 08:15:48.453286 mef 1372 R rec 2f34b6e5-7bad-4c50-b3d6-dc31ef00ceaf -2023-07-08 08:15:48.520182 2023-07-08 08:15:48.520187 mef 1373 R rec baf2cb7b-7a4e-4c43-aa14-070079a35ebc -2023-07-08 08:15:48.592848 2023-07-08 08:15:48.592854 mef 1374 R rec f6449727-634a-40f7-bdc5-d5770ab529f8 -2023-07-08 08:15:48.663482 2023-07-08 08:15:48.663487 mef 1375 R rec 92f90411-f48c-458a-8f37-8d4210437fa6 -2023-07-08 08:15:48.733105 2023-07-08 08:15:48.73311 mef 1376 R rec 38727237-98a7-4d3d-86ad-d9c903b774b6 -2023-07-08 08:15:48.805309 2023-07-08 08:15:48.805314 mef 1377 R rec c4d24573-2c09-4efa-95f2-22c1026d61d1 -2023-07-08 08:15:48.873084 2023-07-08 08:15:48.873088 mef 1378 R rec 72e1bd3f-4d43-4c33-b01b-55ade5e060bd -2023-07-08 08:15:48.946664 2023-07-08 08:15:48.946669 mef 1379 R rec 8600e70c-2367-4833-bcfc-389196ccf175 -2023-07-08 08:15:49.024045 2023-07-08 08:15:49.02405 mef 1380 R rec 481f10d3-ec36-41c8-a330-ae4875f5cb48 -2023-07-08 08:15:49.097273 2023-07-08 08:15:49.097278 mef 1381 R rec aec10c48-99b4-456d-b64f-b5dc9a5fe168 -2023-07-08 08:15:49.177847 2023-07-08 08:15:49.177851 mef 1382 R rec 5e66ac20-d8d6-47ae-bef7-944c0ccdf398 -2023-07-08 08:15:49.266738 2023-07-08 08:15:49.266748 mef 1383 R rec 8a1806c4-878e-4d22-8167-913f19bd0235 -2023-07-08 08:15:49.354921 2023-07-08 08:15:49.354927 mef 1384 R rec 95a8ee05-ab99-4f3a-82dc-fb8e39108b7c -2023-07-08 08:15:49.438383 2023-07-08 08:15:49.438394 mef 1385 R rec 348af59f-a6ad-4697-bae5-3e3b339c6fb4 -2023-07-08 08:15:49.530745 2023-07-08 08:15:49.530761 mef 1386 R rec 302006a6-6edf-4e00-a814-88e9390f5124 -2023-07-08 08:15:49.63651 2023-07-08 08:15:49.63652 mef 1387 R rec d2368342-004a-4d28-95a4-2752f1f70f6a -2023-07-08 08:15:49.733557 2023-07-08 08:15:49.733562 mef 1388 R rec 33f1c7b1-79fe-4189-bc9b-a6bc83a1587c -2023-07-08 08:15:49.819729 2023-07-08 08:15:49.819736 mef 1389 R rec a6acc572-6368-4562-a915-c8a85058c79a -2023-07-08 08:15:49.901587 2023-07-08 08:15:49.901597 mef 1390 R rec eca6c955-a3bb-4299-be26-e1d4ae51eb0b -2023-07-08 08:15:49.984912 2023-07-08 08:15:49.984917 mef 1391 R rec df435afc-b38f-4175-b27e-917921c931af -2023-07-08 08:15:50.095516 2023-07-08 08:15:50.095527 mef 1392 R rec 9cfce63a-2839-405f-932d-c5c5ddcb176c -2023-07-08 08:15:50.210033 2023-07-08 08:15:50.210038 mef 1393 R rec df4625f4-aa10-41bb-99b0-d31aac970cda -2023-07-08 08:15:50.300539 2023-07-08 08:15:50.300552 mef 1394 R rec 58ba7cd4-2cd4-4ad8-9096-00c9d8d11d26 -2023-07-08 08:15:50.39463 2023-07-08 08:15:50.39464 mef 1395 R rec c7edd976-dab1-4f22-878f-777daf25ce19 -2023-07-08 08:15:50.46649 2023-07-08 08:15:50.466495 mef 1396 R rec dfc767d7-578b-407c-8f66-ef5bc8a19842 -2023-07-08 08:15:50.535198 2023-07-08 08:15:50.535203 mef 1397 R rec 53d508ca-d315-496d-9933-0a584bc9f900 -2023-07-08 08:15:50.601785 2023-07-08 08:15:50.601791 mef 1398 R rec d12ca5aa-eb4d-4be9-b6a0-817270dc7895 -2023-07-08 08:15:50.691242 2023-07-08 08:15:50.691254 mef 1399 R rec a46f6d53-8bf1-492b-827f-0ad75abdf5bd -2023-07-08 08:15:50.791753 2023-07-08 08:15:50.791759 mef 1400 R rec 932fedc5-26c4-4d66-9599-53923a76e16b -2023-07-08 08:15:50.88878 2023-07-08 08:15:50.88879 mef 1401 R rec ca3772cd-fffb-458e-b253-1584774be61e -2023-07-08 08:15:50.984992 2023-07-08 08:15:50.985002 mef 1402 R rec 20e3e179-e3f5-49f6-8683-7747244fbc50 -2023-07-08 08:15:51.07887 2023-07-08 08:15:51.078885 mef 1403 R rec ec09133d-2464-4b71-98b0-dca9cb60edc7 -2023-07-08 08:15:51.173664 2023-07-08 08:15:51.173674 mef 1404 R rec d7278fe7-be29-4031-a3dc-dc068f9f732b -2023-07-08 08:15:51.280805 2023-07-08 08:15:51.28081 mef 1405 R rec 21d7c5a3-2a88-4467-945a-43921141a647 -2023-07-08 08:15:51.381101 2023-07-08 08:15:51.381111 mef 1406 R rec 182dbded-4f7b-478e-98f3-7d59b1502345 -2023-07-08 08:15:51.484915 2023-07-08 08:15:51.484925 mef 1407 R rec 8f68bba1-d6a4-46e1-8b28-d18bde451d89 -2023-07-08 08:15:51.571499 2023-07-08 08:15:51.571508 mef 1408 R rec 59245a46-510d-4227-915d-53a05f4b2e05 -2023-07-08 08:15:51.667412 2023-07-08 08:15:51.667423 mef 1409 R rec 5ca63e1f-e617-4fef-8831-b30d6d117d60 -2023-07-08 08:15:51.768058 2023-07-08 08:15:51.768078 mef 1410 R rec 31b8b956-7d8a-416d-91de-c7194a4d6a32 -2023-07-08 08:15:51.880789 2023-07-08 08:15:51.8808 mef 1411 R rec ec7aa857-c1df-4d7b-9d98-635753192ce3 -2023-07-08 08:15:51.965657 2023-07-08 08:15:51.965667 mef 1412 R rec 6d08292a-dcee-40b3-89f4-d40259bfc92c -2023-07-08 08:15:52.054215 2023-07-08 08:15:52.054229 mef 1413 R rec f7faa253-5b0a-465e-bbec-1d74edebf799 -2023-07-08 08:15:52.153417 2023-07-08 08:15:52.153426 mef 1414 R rec 06097f6e-9ef7-4b8c-90ec-e60fee05fafb -2023-07-08 08:15:52.242753 2023-07-08 08:15:52.242766 mef 1415 R rec c1470f46-18c4-4d34-b28d-3c0a10c71b0b -2023-07-08 08:15:52.347185 2023-07-08 08:15:52.347196 mef 1416 R rec f3221c6c-c0f1-4af0-a435-dc9d45b6f260 -2023-07-08 08:15:52.433486 2023-07-08 08:15:52.433491 mef 1417 R rec b7563575-0a48-4707-a976-b01d040866ac -2023-07-08 08:15:52.518094 2023-07-08 08:15:52.518106 mef 1418 R rec 9e08c89a-0d2a-4dd5-8411-2cbf386802ed -2023-07-08 08:15:52.622599 2023-07-08 08:15:52.622613 mef 1419 R rec 5c91ec8b-1b46-47f4-837b-51fbd26af8fc -2023-07-08 08:15:52.706341 2023-07-08 08:15:52.706347 mef 1420 R rec 929ecc5a-d38d-43e4-baae-7b6eeb24abb2 -2023-07-08 08:15:52.781786 2023-07-08 08:15:52.781791 mef 1421 R rec dc463b6a-a184-4f54-8884-b1ba3c429476 -2023-07-08 08:15:52.856521 2023-07-08 08:15:52.856532 mef 1422 R rec 65e4c8ca-82fa-4eca-a250-799e6249ce75 -2023-07-08 08:15:52.941759 2023-07-08 08:15:52.941764 mef 1423 R rec b96e2aa8-32ad-4156-8430-201dd5aab357 -2023-07-08 08:15:53.023876 2023-07-08 08:15:53.023887 mef 1424 R rec 60bc32e2-62db-47d0-b0df-be95f802d361 -2023-07-08 08:15:53.110974 2023-07-08 08:15:53.110985 mef 1425 R rec f8aa43fb-bf15-4fde-b9f1-7620990bfd5a -2023-07-08 08:15:53.215905 2023-07-08 08:15:53.215915 mef 1426 R rec 4807dac2-b990-4dfc-b619-afe182b8b48a -2023-07-08 08:15:53.327764 2023-07-08 08:15:53.327774 mef 1427 R rec 40da7c2f-7c1f-46ff-9cd7-c521ad802983 -2023-07-08 08:15:53.418809 2023-07-08 08:15:53.418814 mef 1428 R rec a39774e8-d747-4769-a27d-7398ff2cb7be -2023-07-08 08:15:53.512123 2023-07-08 08:15:53.512138 mef 1429 R rec 8ef3a965-aff2-46c0-954a-d0a6b46de94e -2023-07-08 08:15:53.612393 2023-07-08 08:15:53.612407 mef 1430 R rec 59dc2e9f-d65a-410f-95a9-cc1b980e5db3 -2023-07-08 08:15:53.704461 2023-07-08 08:15:53.704466 mef 1431 R rec f9f666a6-6550-4f09-a732-d73cc1873d2d -2023-07-08 08:15:53.794713 2023-07-08 08:15:53.794724 mef 1432 R rec 0eeeafa9-54bb-490c-bdd5-f6f7257f1921 -2023-07-08 08:15:53.896492 2023-07-08 08:15:53.896504 mef 1433 R rec d5b9eeb3-fcec-4b72-a055-4f928ca6412e -2023-07-08 08:15:53.975049 2023-07-08 08:15:53.975059 mef 1434 R rec 0504f470-7113-4158-9e92-9b367140f38e -2023-07-08 08:15:54.071121 2023-07-08 08:15:54.071126 mef 1435 R rec 406f2832-9694-4a6d-bd6c-ed57d63c03fa -2023-07-08 08:15:54.158437 2023-07-08 08:15:54.15845 mef 1436 R rec a18770fd-5246-4eaf-b59f-fe0a15ef12d9 -2023-07-08 08:15:54.252219 2023-07-08 08:15:54.252225 mef 1437 R rec d8b8927a-5ff2-4443-8ca3-8e0b52c17922 -2023-07-08 08:15:54.334077 2023-07-08 08:15:54.334082 mef 1438 R rec 150d33c9-0eb9-4c95-a340-23f646715598 -2023-07-08 08:15:54.414465 2023-07-08 08:15:54.414476 mef 1439 R rec 2ac16943-2928-4f4c-9bc4-98b2f48f941d -2023-07-08 08:15:54.517432 2023-07-08 08:15:54.517443 mef 1440 R rec f3dafe0c-2d0a-4587-8b35-0404882d2d47 -2023-07-08 08:15:54.62439 2023-07-08 08:15:54.624402 mef 1441 R rec d88c0c6d-3fd4-48c4-bcd9-b260332844a2 -2023-07-08 08:15:54.736964 2023-07-08 08:15:54.73698 mef 1442 R rec b07b83e7-55b8-4c50-8e34-767a1edbb7dc -2023-07-08 08:15:54.900299 2023-07-08 08:15:54.900308 mef 1443 R rec 369e0d8c-61ef-42b8-8058-e5a07de67b7f -2023-07-08 08:15:55.011929 2023-07-08 08:15:55.011939 mef 1444 R rec 80302f3a-3c0c-4b76-aa2e-f8d6b29454ef -2023-07-08 08:15:55.116031 2023-07-08 08:15:55.116041 mef 1445 R rec 9c28eaf7-1bfe-40a5-b4c2-06ad6f9e7274 -2023-07-08 08:15:55.224539 2023-07-08 08:15:55.224549 mef 1446 R rec 8790736d-4eb6-428b-832d-f8644183992c -2023-07-08 08:15:55.349005 2023-07-08 08:15:55.349016 mef 1447 R rec 1683e336-8bc4-4707-8d1d-b08ebaf47038 -2023-07-08 08:15:55.475237 2023-07-08 08:15:55.475296 mef 1448 R rec 2078a5c2-eb4b-42b3-970b-7b707089ba29 -2023-07-08 08:15:55.615909 2023-07-08 08:15:55.615919 mef 1449 R rec f87ef2bd-78f0-4e95-b58c-2a65841a1942 -2023-07-08 08:15:55.731871 2023-07-08 08:15:55.731887 mef 1450 R rec e909034d-f67b-4084-b590-a92bde61bf49 -2023-07-08 08:15:55.837561 2023-07-08 08:15:55.837572 mef 1451 R rec 2f5486f6-9f79-4cae-9aff-b7d252c11802 -2023-07-08 08:15:55.939443 2023-07-08 08:15:55.939458 mef 1452 R rec 623375a3-b32a-43d1-aaab-601fc5635121 -2023-07-08 08:15:56.046693 2023-07-08 08:15:56.046703 mef 1453 R rec d582c57e-a9cc-46ec-9365-3b876497bbc7 -2023-07-08 08:15:56.150636 2023-07-08 08:15:56.150652 mef 1454 R rec 755b7665-71a4-4573-b20e-563ab0f81279 -2023-07-08 08:15:56.264947 2023-07-08 08:15:56.264957 mef 1455 R rec 1033e781-d696-435a-a70f-eb2c38f29a6c -2023-07-08 08:15:56.375266 2023-07-08 08:15:56.375281 mef 1456 R rec b6d3538a-998d-4052-8882-e16fcb8aa230 -2023-07-08 08:15:56.478818 2023-07-08 08:15:56.478828 mef 1457 R rec cbc181e1-be23-4c2e-b64f-93cb7322f2a6 -2023-07-08 08:15:56.594745 2023-07-08 08:15:56.594755 mef 1458 R rec 5ef9be18-419e-48cb-aa6d-6a0b5de753d8 -2023-07-08 08:15:56.697503 2023-07-08 08:15:56.697513 mef 1459 R rec ebed2c37-bc4a-40d3-8996-467be68f6001 -2023-07-08 08:15:56.802145 2023-07-08 08:15:56.802154 mef 1460 R rec fb871815-17e7-4722-a3b9-3e17ee53e9f5 -2023-07-08 08:15:56.920295 2023-07-08 08:15:56.920309 mef 1461 R rec aef649bb-0fee-46d6-a2fd-3582c3fc56d7 -2023-07-08 08:15:57.039838 2023-07-08 08:15:57.039853 mef 1462 R rec d78282fb-7baf-401c-be76-7ff8ae98b6d9 -2023-07-08 08:15:57.148826 2023-07-08 08:15:57.14885 mef 1463 R rec 8269ed5a-a0a7-455c-892b-c886c167ffdf -2023-07-08 08:15:57.248344 2023-07-08 08:15:57.248358 mef 1464 R rec db19fd6f-72d7-448b-b477-5ac8e63506fd -2023-07-08 08:15:57.366905 2023-07-08 08:15:57.366914 mef 1465 R rec aec1b945-ab6d-4ae9-afa8-96beed06440d -2023-07-08 08:15:57.470478 2023-07-08 08:15:57.47049 mef 1466 R rec aa6eb0ce-5539-4f2e-b3d2-8071888f6adf -2023-07-08 08:15:57.576175 2023-07-08 08:15:57.576185 mef 1467 R rec 0d412972-0dec-4457-8e3c-3f9f2f08e7bb -2023-07-08 08:15:57.704464 2023-07-08 08:15:57.704479 mef 1468 R rec 615672c1-dffb-42dc-96d1-8d9bb91139c7 -2023-07-08 08:15:57.837455 2023-07-08 08:15:57.837464 mef 1469 R rec 606b091b-77b1-4bdb-80dc-8cc2686d6a54 -2023-07-08 08:15:57.941074 2023-07-08 08:15:57.941084 mef 1470 R rec 128c4071-389e-4107-809a-8dc81d423075 -2023-07-08 08:15:58.049513 2023-07-08 08:15:58.049527 mef 1471 R rec f2ad6893-a2aa-4ddd-b986-9eba19c6f2bd -2023-07-08 08:15:58.161596 2023-07-08 08:15:58.161606 mef 1472 R rec 0dd58243-ddad-4abb-81ae-949331653bdf -2023-07-08 08:15:58.266166 2023-07-08 08:15:58.266177 mef 1473 R rec 99e3975a-3a97-481a-859f-99197415d414 -2023-07-08 08:15:58.378398 2023-07-08 08:15:58.378408 mef 1474 R rec c1b8d66d-7eb6-4402-a5ea-11938fb5ea3a -2023-07-08 08:15:58.481188 2023-07-08 08:15:58.4812 mef 1475 R rec dec88716-4c05-4a34-9387-22d10556e57c -2023-07-08 08:15:58.595202 2023-07-08 08:15:58.595217 mef 1476 R rec e6c49716-3417-403c-a894-1ab843bbd0f6 -2023-07-08 08:15:58.718275 2023-07-08 08:15:58.718285 mef 1477 R rec f415506b-fd3d-41f3-8c44-5b9487204fd2 -2023-07-08 08:15:58.82744 2023-07-08 08:15:58.827451 mef 1478 R rec b8cb67e5-b9de-4bc4-922f-5fbee68a9325 -2023-07-08 08:15:58.929754 2023-07-08 08:15:58.929765 mef 1479 R rec 400a41eb-1f85-424a-91d7-3c7fd46be4b4 -2023-07-08 08:15:59.026024 2023-07-08 08:15:59.026035 mef 1480 R rec 41b710a1-c964-4755-a7b6-4ff3e10906b1 -2023-07-08 08:15:59.13164 2023-07-08 08:15:59.131654 mef 1481 R rec b5c6f328-06a9-453d-87e1-8ffc72f1e5ed -2023-07-08 08:15:59.238401 2023-07-08 08:15:59.238412 mef 1482 R rec b9b95ea7-fc5f-46ae-a8ba-3f93ad2b8839 -2023-07-08 08:15:59.336694 2023-07-08 08:15:59.336704 mef 1483 R rec a5a74f51-4a91-444c-8b76-f4640923e47e -2023-07-08 08:15:59.441979 2023-07-08 08:15:59.441989 mef 1484 R rec cc22290f-0085-405b-9e18-796a36034aee -2023-07-08 08:15:59.54596 2023-07-08 08:15:59.545977 mef 1485 R rec e452fd93-b938-4af7-9fa2-d3cf9074b930 -2023-07-08 08:15:59.648575 2023-07-08 08:15:59.648588 mef 1486 R rec 420f01bb-4e78-40fe-8fa1-a1e699eb30ea -2023-07-08 08:15:59.754168 2023-07-08 08:15:59.754177 mef 1487 R rec 6afd53b3-ab53-4bba-9940-b3afe754b85b -2023-07-08 08:15:59.857937 2023-07-08 08:15:59.857952 mef 1488 R rec 59b1fc8a-86d1-4c67-872a-367153be1863 -2023-07-08 08:15:59.97854 2023-07-08 08:15:59.978553 mef 1489 R rec 11817c2c-0249-4eae-b489-a5a31906da52 -2023-07-08 08:16:00.086439 2023-07-08 08:16:00.086452 mef 1490 R rec e89b3562-10f6-498b-ac7b-f60b0a7b3040 -2023-07-08 08:16:00.191927 2023-07-08 08:16:00.191942 mef 1491 R rec 0f90f713-b41a-40cb-83a0-b1b921797c9d -2023-07-08 08:16:00.297392 2023-07-08 08:16:00.297404 mef 1492 R rec 32d1d3d4-4524-4617-a65a-b6e0e04df04c -2023-07-08 08:16:00.413842 2023-07-08 08:16:00.413855 mef 1493 R rec a5df8064-78a4-49d1-a9a0-02158ca5b060 -2023-07-08 08:16:00.519552 2023-07-08 08:16:00.519564 mef 1494 R rec f341c470-4fbd-408d-99ca-5e3f256aef8d -2023-07-08 08:16:00.637387 2023-07-08 08:16:00.637403 mef 1495 R rec 50887815-8243-4700-9b50-13b83cb7fb84 -2023-07-08 08:16:00.771982 2023-07-08 08:16:00.771995 mef 1496 R rec eb96ea80-57f9-4a1a-b8dc-88fbe27e54c3 -2023-07-08 08:16:00.939762 2023-07-08 08:16:00.939772 mef 1497 R rec b6f0a9cb-0899-4f9f-b61b-9fdc0bec7927 -2023-07-08 08:16:01.075425 2023-07-08 08:16:01.075436 mef 1498 R rec 07548ec4-f485-442b-8b44-e64848fa9592 -2023-07-08 08:16:01.200441 2023-07-08 08:16:01.200457 mef 1499 R rec 5d6839d9-2b68-4a75-9962-cf754c54073b -2023-07-08 08:16:01.333534 2023-07-08 08:16:01.333543 mef 1500 R rec c0f0f4c2-2b42-4df6-b9a5-305089c07cc5 -2023-07-08 08:16:01.483179 2023-07-08 08:16:01.483194 mef 1501 R rec 7eb5c0c1-0e69-4a53-9d58-3329cbb8b280 -2023-07-08 08:16:01.583504 2023-07-08 08:16:01.583518 mef 1502 R rec 694f78df-1c92-4060-82df-5f1778f35b9c -2023-07-08 08:16:01.692175 2023-07-08 08:16:01.692185 mef 1503 R rec ae447896-dcc7-4046-a46e-f9b2feb2db48 -2023-07-08 08:16:01.800458 2023-07-08 08:16:01.800475 mef 1504 R rec 2946843e-67e7-41b4-81bd-da017d3439c8 -2023-07-08 08:16:01.915481 2023-07-08 08:16:01.915491 mef 1505 R rec 27dbd4c5-1e4e-45cd-ab8c-3dfbfeecf296 -2023-07-08 08:16:02.025598 2023-07-08 08:16:02.025614 mef 1506 R rec b7d6036e-7e9b-410b-9c8b-3605399f1465 -2023-07-08 08:16:02.150596 2023-07-08 08:16:02.150611 mef 1507 R rec 76dd3968-80c1-4121-abc4-21edfd7cde1d -2023-07-08 08:16:02.269009 2023-07-08 08:16:02.269028 mef 1508 R rec db15a5fc-2b06-4a30-8544-b7a66c5f9898 -2023-07-08 08:16:02.37745 2023-07-08 08:16:02.377461 mef 1509 R rec cb9f682d-8263-4670-bad6-ff4ff7fc8fad -2023-07-08 08:16:02.484207 2023-07-08 08:16:02.484216 mef 1510 R rec dd092901-dc43-4e94-b8a8-3059c9c8335e -2023-07-08 08:16:02.60648 2023-07-08 08:16:02.60649 mef 1511 R rec 6df95004-3e06-4b14-ac1e-4863db65bf73 -2023-07-08 08:16:02.730871 2023-07-08 08:16:02.730881 mef 1512 R rec b343077c-6994-41d7-9f1d-bf13bfcdda0e -2023-07-08 08:16:02.846869 2023-07-08 08:16:02.846886 mef 1513 R rec af033941-ab55-49ae-9ec0-b7d976291dd2 -2023-07-08 08:16:02.978386 2023-07-08 08:16:02.978398 mef 1514 R rec 5563ab38-efdb-4ac3-8362-77b355dcfede -2023-07-08 08:16:03.095016 2023-07-08 08:16:03.095032 mef 1515 R rec 3a6ebc1f-520a-4cdc-8b6e-5233fd4294d9 -2023-07-08 08:16:03.203282 2023-07-08 08:16:03.203294 mef 1516 R rec a8ceb949-f9f7-442f-b133-d54577f8459b -2023-07-08 08:16:03.320504 2023-07-08 08:16:03.320516 mef 1517 R rec 7a73499b-4355-496f-b98c-4c96a9927300 -2023-07-08 08:16:03.425916 2023-07-08 08:16:03.425926 mef 1518 R rec 0b57ce96-bdd5-43fd-91dc-1f8b6f926692 -2023-07-08 08:16:03.541951 2023-07-08 08:16:03.541961 mef 1519 R rec 8ad30e92-9ef8-457e-97eb-009db3720695 -2023-07-08 08:16:03.652212 2023-07-08 08:16:03.652227 mef 1520 R rec b02a6fb8-52ae-43a0-ad5c-dd21b8b2980b -2023-07-08 08:16:03.761726 2023-07-08 08:16:03.761738 mef 1521 R rec c3a92a6f-8d41-499e-958b-bba1ce60149c -2023-07-08 08:16:03.884082 2023-07-08 08:16:03.884094 mef 1522 R rec 9bf09c79-1335-4b3c-911c-de255b1e35c3 -2023-07-08 08:16:04.000167 2023-07-08 08:16:04.000176 mef 1523 R rec 70dd2f43-108f-4862-aeed-f3597c0f9f1f -2023-07-08 08:16:04.131955 2023-07-08 08:16:04.131966 mef 1524 R rec da5a0352-e8c4-4100-a793-3dfaf5c9e394 -2023-07-08 08:16:04.268737 2023-07-08 08:16:04.268754 mef 1525 R rec a8dc43bf-a216-407a-ae33-d41bbe206dac -2023-07-08 08:16:04.385312 2023-07-08 08:16:04.385322 mef 1526 R rec 7cb85f09-6221-46c3-aa03-57b13e0ce1c1 -2023-07-08 08:16:04.490293 2023-07-08 08:16:04.490303 mef 1527 R rec 11cc2d24-66e5-4b33-9a10-95d00bb0fad2 -2023-07-08 08:16:04.61734 2023-07-08 08:16:04.617349 mef 1528 R rec 1ac1c881-1421-4a6e-bc81-7b7d75d906a8 -2023-07-08 08:16:04.711584 2023-07-08 08:16:04.711599 mef 1529 R rec 01be3bc0-5e06-45c5-bfb8-fe958abcc855 -2023-07-08 08:16:04.825518 2023-07-08 08:16:04.825531 mef 1530 R rec d3fb01df-0160-4436-832a-5b881736f119 -2023-07-08 08:16:04.961242 2023-07-08 08:16:04.961255 mef 1531 R rec eb174b67-547f-482d-8a4d-df52b902d6ae -2023-07-08 08:16:05.078338 2023-07-08 08:16:05.078348 mef 1532 R rec d0ac3c72-f29b-4922-b303-7ab5e2121258 -2023-07-08 08:16:05.199912 2023-07-08 08:16:05.199924 mef 1533 R rec 366e1e63-2743-4d1f-95ea-704fa1ec477e -2023-07-08 08:16:05.336834 2023-07-08 08:16:05.336848 mef 1534 R rec 0ec392e5-d001-460d-9394-fb3609c1e786 -2023-07-08 08:16:05.459121 2023-07-08 08:16:05.459132 mef 1535 R rec 50d8bf25-f123-4273-9d98-9945ac6e365a -2023-07-08 08:16:05.591307 2023-07-08 08:16:05.591318 mef 1536 R rec 687d58e7-5fee-4dc9-a266-6b9db06d513a -2023-07-08 08:16:05.710223 2023-07-08 08:16:05.710231 mef 1537 R rec fd7d09a5-899a-41eb-9e92-8b6235ebea4e -2023-07-08 08:16:05.8151 2023-07-08 08:16:05.815111 mef 1538 R rec f1373b50-491c-4279-bc7c-4c8ff8920463 -2023-07-08 08:16:05.95739 2023-07-08 08:16:05.957407 mef 1539 R rec 80cc5029-a5ad-4868-b5d7-93b85f56756f -2023-07-08 08:16:06.084077 2023-07-08 08:16:06.084087 mef 1540 R rec dfa062f3-1094-4565-b975-5e18f39de27c -2023-07-08 08:16:06.194569 2023-07-08 08:16:06.194584 mef 1541 R rec 457d5d6a-c00d-4518-b6ec-cb334879d314 -2023-07-08 08:16:06.318187 2023-07-08 08:16:06.318198 mef 1542 R rec 2e592444-0c37-45d5-ba1b-9ca1429943de -2023-07-08 08:16:06.433486 2023-07-08 08:16:06.433504 mef 1543 R rec a9af15a6-832f-4881-b5f7-7055bd154d66 -2023-07-08 08:16:06.534987 2023-07-08 08:16:06.534996 mef 1544 R rec 079892fe-9f1a-40c1-bb43-7840e2f346e1 -2023-07-08 08:16:06.634449 2023-07-08 08:16:06.634461 mef 1545 R rec 30dffa7d-7a65-44ee-94d4-191c9aa5849f -2023-07-08 08:16:06.737022 2023-07-08 08:16:06.737038 mef 1546 R rec e9f9cef5-f1fa-4ab5-8599-6491021a3635 -2023-07-08 08:16:06.844862 2023-07-08 08:16:06.844872 mef 1547 R rec e188cdbe-192c-45dc-81a1-462ed94499ab -2023-07-08 08:16:06.952252 2023-07-08 08:16:06.952264 mef 1548 R rec 19070a4c-141d-49cf-bec1-3aa456a4bb41 -2023-07-08 08:16:07.070416 2023-07-08 08:16:07.070431 mef 1549 R rec 569d2508-29db-4345-b2a9-8206ae21f8c3 -2023-07-08 08:16:07.210259 2023-07-08 08:16:07.210274 mef 1550 R rec e494541a-4200-4ef6-97b4-3a7f9d91df9e -2023-07-08 08:16:07.342688 2023-07-08 08:16:07.342697 mef 1551 R rec 89dac8be-5f4f-4a7d-af01-8f6f0108d139 -2023-07-08 08:16:07.44513 2023-07-08 08:16:07.445142 mef 1552 R rec ab89c37a-f378-4cc0-9c0e-5878a89af34d -2023-07-08 08:16:07.555061 2023-07-08 08:16:07.555072 mef 1553 R rec 1110f451-dc27-4f8d-8671-9699a0ab1945 -2023-07-08 08:16:07.670062 2023-07-08 08:16:07.670073 mef 1554 R rec 66aa665d-825f-4b60-a528-4141f67e8a3b -2023-07-08 08:16:07.783808 2023-07-08 08:16:07.783818 mef 1555 R rec b1258c9d-a2e4-4c56-8362-faf74b51a18a -2023-07-08 08:16:07.891298 2023-07-08 08:16:07.89131 mef 1556 R rec ee352b2c-245b-45e8-b752-54a0b684ed53 -2023-07-08 08:16:08.005941 2023-07-08 08:16:08.005952 mef 1557 R rec 848f80df-71b4-4e36-8e6e-2fbde327cd3b -2023-07-08 08:16:08.128768 2023-07-08 08:16:08.128784 mef 1558 R rec d2f38007-3403-433a-b06e-4f9524560803 -2023-07-08 08:16:08.260764 2023-07-08 08:16:08.260775 mef 1559 R rec a3fcb26d-98e3-4855-9e52-de63f8eb7a82 -2023-07-08 08:16:08.384462 2023-07-08 08:16:08.384497 mef 1560 R rec 9994cbe4-044b-4367-b746-9e61a36feac7 -2023-07-08 08:16:08.492577 2023-07-08 08:16:08.492588 mef 1561 R rec 85433fba-ec1d-4f25-b7d2-f2e924c90a6c -2023-07-08 08:16:08.604176 2023-07-08 08:16:08.604187 mef 1562 R rec 3b0dc0b9-f28a-4461-b96f-27d0fac7ca5f -2023-07-08 08:16:08.72575 2023-07-08 08:16:08.72576 mef 1563 R rec b0691ebe-e583-4b95-a231-5bccdd8b20d8 -2023-07-08 08:16:08.881858 2023-07-08 08:16:08.881876 mef 1564 R rec 5e35b2b7-691f-4871-bbb1-924fbf593f82 -2023-07-08 08:16:08.992433 2023-07-08 08:16:08.992448 mef 1565 R rec ad2a051c-74c0-477e-a9cf-2d232ba6dd2d -2023-07-08 08:16:09.088674 2023-07-08 08:16:09.088683 mef 1566 R rec 23a16d5c-278e-4c15-a9c5-5d1a66ca00e3 -2023-07-08 08:16:09.188177 2023-07-08 08:16:09.188188 mef 1567 R rec 1f420f52-6002-43dd-a57a-eeb8604e57e6 -2023-07-08 08:16:09.290703 2023-07-08 08:16:09.290715 mef 1568 R rec 2c2e62de-7218-4ff3-87c6-82a1eed626e9 -2023-07-08 08:16:09.395401 2023-07-08 08:16:09.395412 mef 1569 R rec 27ac1428-b857-4da3-8bb0-05879dc0f54f -2023-07-08 08:16:09.49631 2023-07-08 08:16:09.496323 mef 1570 R rec b5f81931-b4dc-4190-8999-e2eb7bbb73a0 -2023-07-08 08:16:09.60906 2023-07-08 08:16:09.609073 mef 1571 R rec c269bb7d-9d76-477d-bf47-7dec8ee5dcd7 -2023-07-08 08:16:09.727508 2023-07-08 08:16:09.727524 mef 1572 R rec 4fd41dfe-caf2-4756-81f4-f875fe660403 -2023-07-08 08:16:09.877713 2023-07-08 08:16:09.877723 mef 1573 R rec e8e35fbe-713e-42b2-b997-d05c4c5b2f3a -2023-07-08 08:16:09.998528 2023-07-08 08:16:09.998538 mef 1574 R rec dc925863-bf47-423a-b3e6-dd7596af0260 -2023-07-08 08:16:10.114127 2023-07-08 08:16:10.114139 mef 1575 R rec b17660bb-1b00-4394-bb12-96025b88b95b -2023-07-08 08:16:10.230456 2023-07-08 08:16:10.230466 mef 1576 R rec c4b5fd4c-a653-426f-8d9a-8ed2267d4cdc -2023-07-08 08:16:10.377338 2023-07-08 08:16:10.377349 mef 1577 R rec ce6e8458-0bba-47ed-a7fe-0412f9ac79ac -2023-07-08 08:16:10.496029 2023-07-08 08:16:10.496046 mef 1578 R rec c01555a9-f93d-43ba-aade-4617f38a50b0 -2023-07-08 08:16:10.615368 2023-07-08 08:16:10.615379 mef 1579 R rec 8730da4a-cbfa-42c6-9f42-5f86d099b06e -2023-07-08 08:16:10.718749 2023-07-08 08:16:10.718764 mef 1580 R rec ce8a2fa8-2a27-4226-b804-520051a1b367 -2023-07-08 08:16:10.825136 2023-07-08 08:16:10.825151 mef 1581 R rec b754ad82-41c7-4ec7-9f53-9b02a4f642e6 -2023-07-08 08:16:10.948594 2023-07-08 08:16:10.948607 mef 1582 R rec 42ffd5e4-a1f8-4281-9829-b924fc867f2f -2023-07-08 08:16:11.064955 2023-07-08 08:16:11.064967 mef 1583 R rec 2e48a1fd-82c2-4915-bcdc-fb1463280b64 -2023-07-08 08:16:11.192477 2023-07-08 08:16:11.192487 mef 1584 R rec 6cc46ada-0cf9-4ee2-b71b-4ba8a374a0cf -2023-07-08 08:16:11.31763 2023-07-08 08:16:11.31764 mef 1585 R rec b3b0a6ea-063d-47a2-82fc-21de1a1a896d -2023-07-08 08:16:11.43187 2023-07-08 08:16:11.431879 mef 1586 R rec b266e29c-058d-46f0-9342-cd3ee28a800e -2023-07-08 08:16:11.566383 2023-07-08 08:16:11.566391 mef 1587 R rec 7f5c378a-e634-4bc5-99e8-1d8d75d3c15d -2023-07-08 08:16:11.691313 2023-07-08 08:16:11.691328 mef 1588 R rec 14788ab5-cd34-4969-be68-b4f28818c369 -2023-07-08 08:16:11.809282 2023-07-08 08:16:11.809297 mef 1589 R rec 92c2deba-e95d-48b2-ab2f-f3c90a9879e5 -2023-07-08 08:16:11.942132 2023-07-08 08:16:11.942146 mef 1590 R rec de7954a9-66d1-4052-8e63-841a09e34c6a -2023-07-08 08:16:12.049587 2023-07-08 08:16:12.049599 mef 1591 R rec 3f6e0469-8b79-4049-aeb4-d9372c4a7c51 -2023-07-08 08:16:12.154831 2023-07-08 08:16:12.154843 mef 1592 R rec 23a3c3b5-858d-41cd-86b3-9dd4eee340f3 -2023-07-08 08:16:12.285226 2023-07-08 08:16:12.285238 mef 1593 R rec ae299209-e848-4fc1-bec5-1198e9f1c634 -2023-07-08 08:16:12.41068 2023-07-08 08:16:12.41069 mef 1594 R rec 7bbd923b-6ba5-4c3c-a698-bf97a5f0207a -2023-07-08 08:16:12.513785 2023-07-08 08:16:12.513799 mef 1595 R rec c5d3c7a7-c21a-426f-8d92-945adb29f13d -2023-07-08 08:16:12.644328 2023-07-08 08:16:12.644343 mef 1596 R rec 76f3d351-9db1-408f-8beb-1e4c09a90c76 -2023-07-08 08:16:12.761213 2023-07-08 08:16:12.761222 mef 1597 R rec c72bdcdd-33a0-4ac3-91ba-2aa274405bce -2023-07-08 08:16:12.866653 2023-07-08 08:16:12.866668 mef 1598 R rec 750496ec-291c-4031-8bf8-fa8b34de4e77 -2023-07-08 08:16:12.983411 2023-07-08 08:16:12.983421 mef 1599 R rec 88bc8afe-e19a-4ea6-bf31-c90844827251 -2023-07-08 08:16:13.103519 2023-07-08 08:16:13.103531 mef 1600 R rec 3d61ea4a-7bca-42a1-bcc8-499f3ca32e88 -2023-07-08 08:16:13.238406 2023-07-08 08:16:13.238415 mef 1601 R rec 144c5c87-a0d7-4534-8157-8f1b686610bc -2023-07-08 08:16:13.340408 2023-07-08 08:16:13.340417 mef 1602 R rec e1333638-d78e-411a-8055-d1911fe72b04 -2023-07-08 08:16:13.461995 2023-07-08 08:16:13.462004 mef 1603 R rec b5bd303d-3a59-4f11-a47d-e7795fb885a7 -2023-07-08 08:16:13.583675 2023-07-08 08:16:13.583688 mef 1604 R rec 6f38dbc7-e24d-44d1-85cb-17870c29c297 -2023-07-08 08:16:13.704373 2023-07-08 08:16:13.704383 mef 1605 R rec 38572a98-3792-46dc-8773-4f4e5bf50884 -2023-07-08 08:16:13.834852 2023-07-08 08:16:13.834868 mef 1606 R rec bb897f4d-c15d-4a94-9761-59b87f6c9661 -2023-07-08 08:16:13.955794 2023-07-08 08:16:13.955807 mef 1607 R rec 0a50abfc-f2fb-443f-ab0a-38012e1ed590 -2023-07-08 08:16:14.066205 2023-07-08 08:16:14.066215 mef 1608 R rec dddca33e-ac24-47bd-84d5-42074c0ed83c -2023-07-08 08:16:14.178051 2023-07-08 08:16:14.178061 mef 1609 R rec 4f6bea7a-f33b-4453-849f-2685a59da413 -2023-07-08 08:16:14.289883 2023-07-08 08:16:14.289896 mef 1610 R rec 052d03fa-31df-44e6-b5a0-b958c65747f0 -2023-07-08 08:16:14.403765 2023-07-08 08:16:14.403777 mef 1611 R rec bd61bdd6-0de6-4883-a0bb-f6c3d001dfba -2023-07-08 08:16:14.521214 2023-07-08 08:16:14.521222 mef 1612 R rec cb6db71f-1dd7-4d06-af14-93c1bbefadd1 -2023-07-08 08:16:14.616225 2023-07-08 08:16:14.616235 mef 1613 R rec 9953539b-457f-408c-a6e2-33883d70c6d5 -2023-07-08 08:16:14.721089 2023-07-08 08:16:14.721101 mef 1614 R rec 975637f1-03e3-4186-82fb-b0d3af10ad62 -2023-07-08 08:16:14.828428 2023-07-08 08:16:14.828439 mef 1615 R rec 785ffde8-c869-484c-b105-991766d3b5cb -2023-07-08 08:16:14.93422 2023-07-08 08:16:14.934229 mef 1616 R rec 2c4f1777-4bf8-403b-bedd-464112d42dc8 -2023-07-08 08:16:15.04447 2023-07-08 08:16:15.044481 mef 1617 R rec b5634ae6-15a6-4af6-99df-6179f6e0ab87 -2023-07-08 08:16:15.161658 2023-07-08 08:16:15.161672 mef 1618 R rec 98cf5442-72a2-4296-9131-d57c5c3c2520 -2023-07-08 08:16:15.2776 2023-07-08 08:16:15.27761 mef 1619 R rec c2fd6bab-2048-4dbe-afeb-847538de6097 -2023-07-08 08:16:15.388793 2023-07-08 08:16:15.388802 mef 1620 R rec fe81930f-23bd-48aa-bf4b-4cc066c09bed -2023-07-08 08:16:15.495842 2023-07-08 08:16:15.495852 mef 1621 R rec fe0cdc5c-b9e6-4179-b740-e21f82fe1904 -2023-07-08 08:16:15.607973 2023-07-08 08:16:15.607986 mef 1622 R rec cfd2852f-a3b6-41d9-8531-f2870972152a -2023-07-08 08:16:15.734147 2023-07-08 08:16:15.734159 mef 1623 R rec a337a466-fd35-4eff-87ee-8e86c37aaffb -2023-07-08 08:16:15.85378 2023-07-08 08:16:15.853789 mef 1624 R rec 696cfde4-fe68-47b9-b9fc-2f8b2a5be5b0 -2023-07-08 08:16:15.969754 2023-07-08 08:16:15.969764 mef 1625 R rec d6d1ddc4-3ee3-4f9c-b179-7b412172bf16 -2023-07-08 08:16:16.096746 2023-07-08 08:16:16.096756 mef 1626 R rec a9516647-805d-4b8a-be69-ba186b041922 -2023-07-08 08:16:16.20693 2023-07-08 08:16:16.206942 mef 1627 R rec ed0c11db-2c34-405e-9992-86e2e4442c24 -2023-07-08 08:16:16.311906 2023-07-08 08:16:16.31192 mef 1628 R rec 7e7afc0b-e870-4364-b8e8-38f1512e7462 -2023-07-08 08:16:16.429218 2023-07-08 08:16:16.429228 mef 1629 R rec dabf4fe9-d031-4bdf-9b4b-e646645f9efe -2023-07-08 08:16:16.545379 2023-07-08 08:16:16.545388 mef 1630 R rec 5e6763ae-cc95-4b2f-a4f7-1524819956a6 -2023-07-08 08:16:16.656092 2023-07-08 08:16:16.656103 mef 1631 R rec 0c13952d-7c47-4fb3-ae08-ccab6b8690f9 -2023-07-08 08:16:16.758371 2023-07-08 08:16:16.758387 mef 1632 R rec afbc3a4c-2b6d-4c04-b274-d0489193b52e -2023-07-08 08:16:16.91391 2023-07-08 08:16:16.913915 mef 1633 R rec 2c63456b-7771-41ec-987b-831b2e0d97f7 -2023-07-08 08:16:16.978934 2023-07-08 08:16:16.978941 mef 1634 R rec def1e5a3-5851-423b-9845-3fee5ee8f339 -2023-07-08 08:16:17.042917 2023-07-08 08:16:17.04292 mef 1635 R rec ce8a791c-e440-4029-a3e8-7e17a99ea9e8 -2023-07-08 08:16:17.130637 2023-07-08 08:16:17.130643 mef 1636 R rec 4fd19df5-0522-40d6-b3c0-b9ef208a5867 -2023-07-08 08:16:17.228664 2023-07-08 08:16:17.228678 mef 1637 R rec 43497a2a-562b-4cef-ac50-8fa92d133cfe -2023-07-08 08:16:17.361944 2023-07-08 08:16:17.361954 mef 1638 R rec 23c7da01-5e37-47fe-a483-8e4b48fdaab4 -2023-07-08 08:16:17.460627 2023-07-08 08:16:17.46064 mef 1639 R rec 845e559d-97b2-4011-ae94-7f4ef57a2671 -2023-07-08 08:16:17.554704 2023-07-08 08:16:17.554717 mef 1640 R rec 654f681a-ed52-4fc7-8304-ead0d6b110f2 -2023-07-08 08:16:17.666502 2023-07-08 08:16:17.666512 mef 1641 R rec a18b42c4-4506-4717-b5d9-f6f88e1b33bd -2023-07-08 08:16:17.766948 2023-07-08 08:16:17.766959 mef 1642 R rec 1ce6ed9a-c415-44c9-9b08-978ca8f2574e -2023-07-08 08:16:17.864131 2023-07-08 08:16:17.864144 mef 1643 R rec f2e4d733-73b5-4873-8106-e2d789df8b6e -2023-07-08 08:16:17.971031 2023-07-08 08:16:17.971041 mef 1644 R rec 78adc0d5-9614-4d81-97fe-2f1366adb9da -2023-07-08 08:16:18.079996 2023-07-08 08:16:18.080005 mef 1645 R rec 6b4dcc6f-58c3-4504-beaa-b58c89e3d6c0 -2023-07-08 08:16:18.201216 2023-07-08 08:16:18.201226 mef 1646 R rec fbc5d23e-5b4e-45e5-b68e-f28e148b1a84 -2023-07-08 08:16:18.314756 2023-07-08 08:16:18.314778 mef 1647 R rec c248afd6-facf-4e0e-9872-8e1b45fbfc61 -2023-07-08 08:16:18.411029 2023-07-08 08:16:18.41112 mef 1648 R rec 58cf573a-1875-4884-b70d-07fd10eee8fd -2023-07-08 08:16:18.509654 2023-07-08 08:16:18.509667 mef 1649 R rec 82e1280f-0aec-4c80-869a-195119c0fe37 -2023-07-08 08:16:18.614921 2023-07-08 08:16:18.614933 mef 1650 R rec 76c4b781-28ce-4dc3-a73e-4941308f19c7 -2023-07-08 08:16:18.727208 2023-07-08 08:16:18.72722 mef 1651 R rec 0f8840b4-fe7b-446c-8379-53ab87d40cf7 -2023-07-08 08:16:18.85164 2023-07-08 08:16:18.851654 mef 1652 R rec 6e1ba65b-7aa6-494a-a34c-e60f61061364 -2023-07-08 08:16:18.963366 2023-07-08 08:16:18.963377 mef 1653 R rec 05258a09-92f8-45b8-81be-4f084c6eeb34 -2023-07-08 08:16:19.064509 2023-07-08 08:16:19.06452 mef 1654 R rec 8353624c-e687-4601-b354-ad12e9e81464 -2023-07-08 08:16:19.170555 2023-07-08 08:16:19.170565 mef 1655 R rec 04f5ed6c-80a5-4cf3-83c5-d32551b962ac -2023-07-08 08:16:19.270929 2023-07-08 08:16:19.270939 mef 1656 R rec a8e51b4b-7e5a-4f30-991d-4d4a2cd4ce62 -2023-07-08 08:16:19.394896 2023-07-08 08:16:19.394906 mef 1657 R rec 67c8295e-abb1-44ea-9207-1dab7142082e -2023-07-08 08:16:19.496858 2023-07-08 08:16:19.496868 mef 1658 R rec 32ff7ada-4cfa-46ed-ad1f-3f84b6519e56 -2023-07-08 08:16:19.605137 2023-07-08 08:16:19.605147 mef 1659 R rec d550f4fb-5122-4873-97fe-31247c2e5e8e -2023-07-08 08:16:19.718142 2023-07-08 08:16:19.718152 mef 1660 R rec 0f1a7ebd-ea9e-4d15-aec3-d8b4c50c44c7 -2023-07-08 08:16:19.831426 2023-07-08 08:16:19.831436 mef 1661 R rec ab206e0c-13a0-4d56-bb49-ca9386301821 -2023-07-08 08:16:19.953606 2023-07-08 08:16:19.953616 mef 1662 R rec 14d55bd2-4296-49b9-9074-507c96de9a4c -2023-07-08 08:16:20.063065 2023-07-08 08:16:20.063075 mef 1663 R rec 96065461-f96c-4d47-bf0f-6f5ec35f8b56 -2023-07-08 08:16:20.169094 2023-07-08 08:16:20.169104 mef 1664 R rec a1e3e97d-31d6-4d67-904c-2ea10b353cf2 -2023-07-08 08:16:20.269392 2023-07-08 08:16:20.269402 mef 1665 R rec 19edba3f-4887-44ab-98bc-32131586235f -2023-07-08 08:16:20.368772 2023-07-08 08:16:20.368785 mef 1666 R rec df5aa0ac-51e8-4007-9cff-7a27862f9efd -2023-07-08 08:16:20.466587 2023-07-08 08:16:20.466597 mef 1667 R rec d89b09ab-be40-4baf-ba36-3051a8f86a13 -2023-07-08 08:16:20.569153 2023-07-08 08:16:20.569163 mef 1668 R rec 7dc5242a-601f-4a66-b5ef-e2056935f8c5 -2023-07-08 08:16:20.678973 2023-07-08 08:16:20.67899 mef 1669 R rec 3e086b54-06d5-4739-9929-05c82ccfd881 -2023-07-08 08:16:20.814412 2023-07-08 08:16:20.814422 mef 1670 R rec e18eddf4-870a-4ac9-bfed-84453507537c -2023-07-08 08:16:20.913448 2023-07-08 08:16:20.913458 mef 1671 R rec ac469ecd-f0f0-4b72-a23f-8792fb0332ee -2023-07-08 08:16:21.017976 2023-07-08 08:16:21.018131 mef 1672 R rec d0a8f01c-80a7-4511-b7e2-13403e4fb4ad -2023-07-08 08:16:21.129793 2023-07-08 08:16:21.129805 mef 1673 R rec c28cb522-9569-4c99-b404-5c9b1b980976 -2023-07-08 08:16:21.238537 2023-07-08 08:16:21.238552 mef 1674 R rec 83736718-e799-40d6-90e5-46d5652b35d5 -2023-07-08 08:16:21.357187 2023-07-08 08:16:21.357196 mef 1675 R rec 40a16783-f5a4-4e40-b57c-c114c4d91ad2 -2023-07-08 08:16:21.451864 2023-07-08 08:16:21.451874 mef 1676 R rec 2a89f9e8-5b38-4c95-8d58-7d24255003ed -2023-07-08 08:16:21.554352 2023-07-08 08:16:21.554361 mef 1677 R rec 1d9225e8-7801-4845-9c2a-a017650857c1 -2023-07-08 08:16:21.65994 2023-07-08 08:16:21.65995 mef 1678 R rec e91de31e-265d-4321-9511-b77be261162c -2023-07-08 08:16:21.7655 2023-07-08 08:16:21.765514 mef 1679 R rec 431d39c1-2ec8-444d-a872-a22566d4cd15 -2023-07-08 08:16:21.89701 2023-07-08 08:16:21.897024 mef 1680 R rec 5cddaf79-f684-484e-a87d-6a388566f44a -2023-07-08 08:16:22.029607 2023-07-08 08:16:22.02962 mef 1681 R rec 1d3bbea9-f400-4f3c-8c31-3bc8773e820e -2023-07-08 08:16:22.144352 2023-07-08 08:16:22.144368 mef 1682 R rec 51a9d568-76db-4ea3-a228-b26e018ba214 -2023-07-08 08:16:22.271316 2023-07-08 08:16:22.271402 mef 1683 R rec 7c99a756-91f6-4fa1-9a24-467febc16582 -2023-07-08 08:16:22.398098 2023-07-08 08:16:22.398108 mef 1684 R rec bea5dc23-36f2-4b91-8302-a3f2370b95ee -2023-07-08 08:16:22.529438 2023-07-08 08:16:22.529449 mef 1685 R rec b69042a7-ac6d-415c-ae34-737b00bfb63a -2023-07-08 08:16:22.653989 2023-07-08 08:16:22.654 mef 1686 R rec 7012aa78-ed4a-4d04-b8d1-1f60975d9092 -2023-07-08 08:16:22.782754 2023-07-08 08:16:22.782764 mef 1687 R rec a09d4514-82a6-45c5-8a3f-3b7a4eb70141 -2023-07-08 08:16:22.966619 2023-07-08 08:16:22.966632 mef 1688 R rec ec4709d4-f365-421d-afc1-931b79642c5a -2023-07-08 08:16:23.104111 2023-07-08 08:16:23.104122 mef 1689 R rec 6a2827c0-a061-441e-9bc9-68bbc22cc433 -2023-07-08 08:16:23.224583 2023-07-08 08:16:23.224598 mef 1690 R rec bc9a9f3f-e8b4-42f8-85c1-a19847191658 -2023-07-08 08:16:23.327208 2023-07-08 08:16:23.327216 mef 1691 R rec 5a729213-4ee2-4e69-ac0f-53445c434cce -2023-07-08 08:16:23.397881 2023-07-08 08:16:23.397884 mef 1692 R rec 62e02815-e607-4f7a-bda1-f1570ded7910 -2023-07-08 08:16:23.472601 2023-07-08 08:16:23.472608 mef 1693 R rec d14f6679-8624-4cdf-ae4b-94f1c592ffef -2023-07-08 08:16:23.541482 2023-07-08 08:16:23.541485 mef 1694 R rec cdfe30d6-c0ca-47a6-8290-a2905705e4c5 -2023-07-08 08:16:23.610219 2023-07-08 08:16:23.610224 mef 1695 R rec b30db8ed-39f3-4fef-ad44-42524af967f4 -2023-07-08 08:16:23.70433 2023-07-08 08:16:23.70434 mef 1696 R rec f1d385b3-6076-462b-af96-3e0feab5e84f -2023-07-08 08:16:23.793033 2023-07-08 08:16:23.793039 mef 1697 R rec 156adc4a-f1e3-4805-bba6-27ab9c1c3b3c -2023-07-08 08:16:23.889133 2023-07-08 08:16:23.889144 mef 1698 R rec 254e0337-8db3-4e80-b8e9-331acd16846a -2023-07-08 08:16:23.992918 2023-07-08 08:16:23.992928 mef 1699 R rec 0a641239-c260-47e0-8653-3fe1080e9fa7 -2023-07-08 08:16:24.09716 2023-07-08 08:16:24.097173 mef 1700 R rec 41ac45ca-76bd-45a8-a09d-1c3249c17f32 -2023-07-08 08:16:24.1953 2023-07-08 08:16:24.195313 mef 1701 R rec f68b9f85-9f3d-4362-a0c0-976ffbe14689 -2023-07-08 08:16:24.277891 2023-07-08 08:16:24.277897 mef 1702 R rec 85956728-53be-42bf-b21a-f2004e3247da -2023-07-08 08:16:24.388783 2023-07-08 08:16:24.388796 mef 1703 R rec fa2604a0-4936-49b0-ba91-b1ae55c2ebdb -2023-07-08 08:16:24.473691 2023-07-08 08:16:24.473702 mef 1704 R rec 6e248d2d-70ef-4977-bd05-45c95622fb94 -2023-07-08 08:16:24.565177 2023-07-08 08:16:24.565189 mef 1705 R rec f093041f-9cd2-4d41-89d5-090c1548ff1c -2023-07-08 08:16:24.665499 2023-07-08 08:16:24.665511 mef 1706 R rec 6bfa669a-fd1d-40cd-8a13-99440299fac8 -2023-07-08 08:16:24.761447 2023-07-08 08:16:24.761457 mef 1707 R rec 6d98f82c-a4be-43d5-9442-0ef012cc9228 -2023-07-08 08:16:24.865662 2023-07-08 08:16:24.865678 mef 1708 R rec 7ee66c32-4e33-4ee8-a087-be28aba8b4ad -2023-07-08 08:16:24.964156 2023-07-08 08:16:24.964167 mef 1709 R rec 9822db4a-ab36-4918-8cf1-c0b8ce9c53cc -2023-07-08 08:16:25.07946 2023-07-08 08:16:25.079471 mef 1710 R rec 2272388b-9c89-4287-813f-e5396d4a8e93 -2023-07-08 08:16:25.170141 2023-07-08 08:16:25.170154 mef 1711 R rec b2c2c718-37c7-4769-ba9b-f85b7629416f -2023-07-08 08:16:25.262815 2023-07-08 08:16:25.262826 mef 1712 R rec 78153f9f-9953-451a-b979-4995b24e1da9 -2023-07-08 08:16:25.367002 2023-07-08 08:16:25.367039 mef 1713 R rec e8e252a4-bc09-4657-8019-cb91c88116e8 -2023-07-08 08:16:25.455396 2023-07-08 08:16:25.455409 mef 1714 R rec 347cf8c4-b55e-475d-8632-775e6606e975 -2023-07-08 08:16:25.549106 2023-07-08 08:16:25.549121 mef 1715 R rec 98a4f625-cf53-481e-a8a0-b57546df23ca -2023-07-08 08:16:25.656965 2023-07-08 08:16:25.656975 mef 1716 R rec 24e86b1a-853b-46a3-91a4-4bee0ab04769 -2023-07-08 08:16:25.756103 2023-07-08 08:16:25.756113 mef 1717 R rec 9ea1d93a-8e25-478e-8188-37a5c0ec1f48 -2023-07-08 08:16:25.863168 2023-07-08 08:16:25.863181 mef 1718 R rec fc7c4e04-ebde-4d4b-8d0d-a431eeded3f1 -2023-07-08 08:16:25.966038 2023-07-08 08:16:25.966053 mef 1719 R rec a9e6cd2f-bec8-4816-b917-eed44584f554 -2023-07-08 08:16:26.058628 2023-07-08 08:16:26.058645 mef 1720 R rec a83a8d1a-e28d-4737-9d73-d5308b917000 -2023-07-08 08:16:26.158511 2023-07-08 08:16:26.158527 mef 1721 R rec 176d572e-9b40-4a1b-87a1-a14544fdfae9 -2023-07-08 08:16:26.255314 2023-07-08 08:16:26.255325 mef 1722 R rec f6c63122-57e6-4611-9c62-9f3d7ff22803 -2023-07-08 08:16:26.351611 2023-07-08 08:16:26.35162 mef 1723 R rec 99d933d2-a704-4073-8384-47189fdb8bbc -2023-07-08 08:16:26.441063 2023-07-08 08:16:26.441075 mef 1724 R rec e26c2d2e-f410-4c2d-8470-abac02fc5e04 -2023-07-08 08:16:26.529143 2023-07-08 08:16:26.529154 mef 1725 R rec 8df4a935-f855-46d2-85e1-7184a7aebc0d -2023-07-08 08:16:26.6231 2023-07-08 08:16:26.62311 mef 1726 R rec 34c57c7f-1196-4701-9be5-208893dd2989 -2023-07-08 08:16:26.723323 2023-07-08 08:16:26.723335 mef 1727 R rec 49c44205-bfd8-411e-a2aa-225107cc770a -2023-07-08 08:16:26.806898 2023-07-08 08:16:26.806904 mef 1728 R rec 0280c704-fc15-42a2-99a5-2a66061cb411 -2023-07-08 08:16:26.907708 2023-07-08 08:16:26.907718 mef 1729 R rec 74477787-c28d-4250-ac5d-fa47eb45384c -2023-07-08 08:16:26.993262 2023-07-08 08:16:26.993272 mef 1730 R rec 0e3fe92f-c8dd-4aaf-8b48-d068e4ebfcbc -2023-07-08 08:16:27.095355 2023-07-08 08:16:27.09536 mef 1731 R rec 83eb2539-1bba-46cd-ad88-f8f746235959 -2023-07-08 08:16:27.188357 2023-07-08 08:16:27.188374 mef 1732 R rec 3655fec2-0eed-4c79-8f09-607930132212 -2023-07-08 08:16:27.272579 2023-07-08 08:16:27.272584 mef 1733 R rec c5a4b19b-4c48-4241-8ef6-b265184145ba -2023-07-08 08:16:27.368685 2023-07-08 08:16:27.368697 mef 1734 R rec dc466eab-2850-4f58-a6b9-2e182297a5e2 -2023-07-08 08:16:27.469309 2023-07-08 08:16:27.469323 mef 1735 R rec 626050e5-94e1-4f15-af2f-13edbf97e637 -2023-07-08 08:16:27.578576 2023-07-08 08:16:27.578588 mef 1736 R rec 1fa8f7fb-7cef-4d85-9b56-287edae73af3 -2023-07-08 08:16:27.672199 2023-07-08 08:16:27.672214 mef 1737 R rec 331a5a20-cec3-454f-a43d-ea4916dd6f53 -2023-07-08 08:16:27.771319 2023-07-08 08:16:27.771325 mef 1738 R rec e8617977-f31b-4f44-a875-242f84b1659a -2023-07-08 08:16:27.857138 2023-07-08 08:16:27.857149 mef 1739 R rec 03661017-85f2-4200-8544-e96f09b7c2a7 -2023-07-08 08:16:27.951399 2023-07-08 08:16:27.95141 mef 1740 R rec 07018812-32f7-427d-94f3-e9c744dbc127 -2023-07-08 08:16:28.039508 2023-07-08 08:16:28.039518 mef 1741 R rec 8ff23f0c-3861-4f0e-be36-1e178354607b -2023-07-08 08:16:28.127899 2023-07-08 08:16:28.127905 mef 1742 R rec bc146f5c-6230-434e-97fd-c30ced2e264c -2023-07-08 08:16:28.218968 2023-07-08 08:16:28.218978 mef 1743 R rec c7547693-2ae9-4dfa-ad43-2275f61ee28e -2023-07-08 08:16:28.308007 2023-07-08 08:16:28.308012 mef 1744 R rec 8ecff682-a3ae-462f-9d32-a50f388470a6 -2023-07-08 08:16:28.396181 2023-07-08 08:16:28.396191 mef 1745 R rec 40c576df-289f-4651-a6b5-8776fe3f8a4c -2023-07-08 08:16:28.484426 2023-07-08 08:16:28.484436 mef 1746 R rec db03a662-c9b7-42ce-accf-254d808f15d6 -2023-07-08 08:16:28.580331 2023-07-08 08:16:28.580344 mef 1747 R rec 1f3097b3-24ba-475e-81d5-ac3747a6c4b7 -2023-07-08 08:16:28.673712 2023-07-08 08:16:28.673725 mef 1748 R rec 65ed9d7b-6894-45f9-bd07-ad057195969f -2023-07-08 08:16:28.768231 2023-07-08 08:16:28.768237 mef 1749 R rec 70e04151-e13e-4f10-9c89-1cf0bbf5f018 -2023-07-08 08:16:28.857757 2023-07-08 08:16:28.857767 mef 1750 R rec 60e388cd-4a7d-4e6c-b96f-d2f489046a90 -2023-07-08 08:16:28.958889 2023-07-08 08:16:28.958899 mef 1751 R rec edaa0a21-52a0-45b7-81cf-1088cd4c88c8 -2023-07-08 08:16:29.079006 2023-07-08 08:16:29.079023 mef 1752 R rec ee6c2196-00c5-47fb-892b-bd9ba079e2f8 -2023-07-08 08:16:29.195034 2023-07-08 08:16:29.195039 mef 1753 R rec cdbd221f-22a1-498e-9587-60cdb81b0c27 -2023-07-08 08:16:29.277683 2023-07-08 08:16:29.277688 mef 1754 R rec d9e51a7f-4d50-43c8-a859-1aac559899c1 -2023-07-08 08:16:29.380705 2023-07-08 08:16:29.380715 mef 1755 R rec 4a88bc84-bac0-4d07-96c5-e1ac39a5a01d -2023-07-08 08:16:29.476463 2023-07-08 08:16:29.476473 mef 1756 R rec 399de98f-28d2-4672-a53b-601da9a5bc7d -2023-07-08 08:16:29.574855 2023-07-08 08:16:29.574869 mef 1757 R rec eae48232-1658-4ca5-889f-33a92ec7bd81 -2023-07-08 08:16:29.668376 2023-07-08 08:16:29.668386 mef 1758 R rec a4664523-5fa8-43a6-aee8-3ca1ff6c7dcf -2023-07-08 08:16:29.78148 2023-07-08 08:16:29.781491 mef 1759 R rec 317a0fc1-cb58-4615-8c5f-e18e58090cdc -2023-07-08 08:16:29.874192 2023-07-08 08:16:29.874206 mef 1760 R rec c57aebcf-840e-4dd0-84f0-3bf7d0b7af70 -2023-07-08 08:16:29.975978 2023-07-08 08:16:29.975988 mef 1761 R rec 4c713ade-591a-4b83-b538-0cc498f208da -2023-07-08 08:16:30.079099 2023-07-08 08:16:30.079112 mef 1762 R rec 3d5cd4c9-ff63-4a5e-9b25-a0ebdc2eb9a0 -2023-07-08 08:16:30.192091 2023-07-08 08:16:30.192104 mef 1763 R rec 5e0d2a4f-fbf9-4589-ad53-050ac6fd2b14 -2023-07-08 08:16:30.278479 2023-07-08 08:16:30.278485 mef 1764 R rec 50d9e1c3-f199-443e-baf0-025d9f2d5f31 -2023-07-08 08:16:30.377793 2023-07-08 08:16:30.377805 mef 1765 R rec 91b3ad90-0695-4e7b-9f79-67cbc84ffbb7 -2023-07-08 08:16:30.475652 2023-07-08 08:16:30.475666 mef 1766 R rec 3cce9828-2ed1-4551-b859-74ecd35f3bdd -2023-07-08 08:16:30.578532 2023-07-08 08:16:30.578542 mef 1767 R rec 89b23f9c-50d3-41c6-9c8a-e987648ec616 -2023-07-08 08:16:30.672729 2023-07-08 08:16:30.672739 mef 1768 R rec b8e90df5-db49-4263-ac7e-149e3a6c1b82 -2023-07-08 08:16:30.799876 2023-07-08 08:16:30.799886 mef 1769 R rec 855154c4-0a92-4c64-90f2-599a380fc9be -2023-07-08 08:16:30.914908 2023-07-08 08:16:30.914918 mef 1770 R rec 5263b88e-ad6d-4968-a894-378f2f6526b2 -2023-07-08 08:16:31.004779 2023-07-08 08:16:31.004789 mef 1771 R rec 66bcc3fa-0598-415d-9cb0-62848cdbed34 -2023-07-08 08:16:31.103272 2023-07-08 08:16:31.103281 mef 1772 R rec e2e6600f-7746-40bc-a4d8-c1eed5ffb1bb -2023-07-08 08:16:31.205349 2023-07-08 08:16:31.20544 mef 1773 R rec 78dfe562-8a9c-4b62-a524-6991a4f1cbf2 -2023-07-08 08:16:31.280653 2023-07-08 08:16:31.280658 mef 1774 R rec 9d016c78-cced-49dc-9558-2450edb3dcb8 -2023-07-08 08:16:31.36912 2023-07-08 08:16:31.36913 mef 1775 R rec d3a868f3-3050-4393-8de6-82b1811f13b0 -2023-07-08 08:16:31.467981 2023-07-08 08:16:31.467991 mef 1776 R rec 23d3cd38-b76b-4f51-b3ec-32cb98375529 -2023-07-08 08:16:31.558071 2023-07-08 08:16:31.558082 mef 1777 R rec 4b5c0f2c-f598-47d3-a36b-ebcccb0d1c28 -2023-07-08 08:16:31.652342 2023-07-08 08:16:31.652357 mef 1778 R rec c9fbf929-55dd-40e5-84d1-7657e475065f -2023-07-08 08:16:31.741758 2023-07-08 08:16:31.741775 mef 1779 R rec 4650423d-6ac2-47bd-a8d2-0dc9b744082f -2023-07-08 08:16:31.821834 2023-07-08 08:16:31.821845 mef 1780 R rec 8ea34146-a262-4b88-9e12-da01c67a135a -2023-07-08 08:16:31.908374 2023-07-08 08:16:31.908385 mef 1781 R rec 4560f3b3-8d40-4126-bfb0-ffa63d039ec9 -2023-07-08 08:16:32.003766 2023-07-08 08:16:32.003776 mef 1782 R rec 0e8a23cc-037e-408e-af72-00860865a113 -2023-07-08 08:16:32.112783 2023-07-08 08:16:32.112788 mef 1783 R rec ef916996-f206-4eb9-9007-17dba767be93 -2023-07-08 08:16:32.208724 2023-07-08 08:16:32.208739 mef 1784 R rec 1f5816e1-00c2-42a7-beca-3e3436232bda -2023-07-08 08:16:32.31875 2023-07-08 08:16:32.318761 mef 1785 R rec e32ac356-ff77-4b6b-bce9-befdefacb332 -2023-07-08 08:16:32.419155 2023-07-08 08:16:32.419204 mef 1786 R rec 391f4a6b-8382-4bb0-90f6-3f5b40c57ca5 -2023-07-08 08:16:32.51446 2023-07-08 08:16:32.514473 mef 1787 R rec 7563f7f4-bae3-4bfb-9fb1-683950590b88 -2023-07-08 08:16:32.602036 2023-07-08 08:16:32.602045 mef 1788 R rec 4685bfa4-4309-4f4c-826b-9b08386d0184 -2023-07-08 08:16:32.695292 2023-07-08 08:16:32.695303 mef 1789 R rec 679fd129-f79e-42d3-aaa0-fc4bf140c694 -2023-07-08 08:16:32.780739 2023-07-08 08:16:32.780744 mef 1790 R rec c215a416-8c70-4639-9f45-e86b0da13c83 -2023-07-08 08:16:32.858803 2023-07-08 08:16:32.858818 mef 1791 R rec 24a4eca2-d353-481e-aa92-0a6f16b70004 -2023-07-08 08:16:32.955846 2023-07-08 08:16:32.955859 mef 1792 R rec d971fa83-0f0d-4595-88bb-caeb7fadb119 -2023-07-08 08:16:33.061553 2023-07-08 08:16:33.061564 mef 1793 R rec f48c2d8d-500c-498d-b2a0-05a3f37a16ab -2023-07-08 08:16:33.151689 2023-07-08 08:16:33.151699 mef 1794 R rec 09c5eeb5-c73f-4681-94d1-0a38c24c9959 -2023-07-08 08:16:33.244217 2023-07-08 08:16:33.24423 mef 1795 R rec f961448d-6437-4638-b668-86649a370181 -2023-07-08 08:16:33.31775 2023-07-08 08:16:33.317764 mef 1796 R rec 6a2d6aff-7b13-4307-a337-647d4655c1b5 -2023-07-08 08:16:33.403542 2023-07-08 08:16:33.403551 mef 1797 R rec 89a12576-2cdb-4416-8f9c-4322c33e303d -2023-07-08 08:16:33.477341 2023-07-08 08:16:33.477346 mef 1798 R rec d9b11981-393d-41dc-b21f-ca7a14218921 -2023-07-08 08:16:33.577942 2023-07-08 08:16:33.577955 mef 1799 R rec b8998fdd-ee47-4d17-bc4c-c58eb46e788b -2023-07-08 08:16:33.67107 2023-07-08 08:16:33.671077 mef 1800 R rec 4daecff0-3e7e-422e-b6e8-b207dfe9ce95 -2023-07-08 08:16:33.775796 2023-07-08 08:16:33.775802 mef 1801 R rec 460fddc6-8c8d-4019-b2b7-fbd585943b02 -2023-07-08 08:16:33.900889 2023-07-08 08:16:33.9009 mef 1802 R rec e903c3c1-9f2e-4d82-a0b7-e4d38c34fc96 -2023-07-08 08:16:34.00444 2023-07-08 08:16:34.004453 mef 1803 R rec 195daca3-0a96-40f9-94f6-9b99cd044900 -2023-07-08 08:16:34.098162 2023-07-08 08:16:34.098172 mef 1804 R rec b5e4f672-1ae3-4943-8d93-2a7918c3af53 -2023-07-08 08:16:34.194789 2023-07-08 08:16:34.194802 mef 1805 R rec 74779d24-46fd-4eec-87be-34a932d4158a -2023-07-08 08:16:34.280497 2023-07-08 08:16:34.280502 mef 1806 R rec 464c7f15-5972-4b14-a5cd-5fd85a15e21c -2023-07-08 08:16:34.364234 2023-07-08 08:16:34.364244 mef 1807 R rec 5777b7e1-5819-4059-bc71-370c183c4847 -2023-07-08 08:16:34.47354 2023-07-08 08:16:34.47355 mef 1808 R rec 2207c700-cabb-427f-90bb-310ddf2a0355 -2023-07-08 08:16:34.567026 2023-07-08 08:16:34.567036 mef 1809 R rec ffc2ed7b-aea7-4e6d-9387-6ae8a7ef9648 -2023-07-08 08:16:34.667734 2023-07-08 08:16:34.667747 mef 1810 R rec 65d4e186-b90c-4c5f-a14f-b0ae46549483 -2023-07-08 08:16:34.759192 2023-07-08 08:16:34.759202 mef 1811 R rec 055b9507-cc31-4e56-8db2-ca285ca5562f -2023-07-08 08:16:34.849794 2023-07-08 08:16:34.849805 mef 1812 R rec 7945994f-b15f-4295-94c8-b260af99fd7d -2023-07-08 08:16:34.940117 2023-07-08 08:16:34.940126 mef 1813 R rec fbccbba8-29fe-4218-86f4-900605082d3e -2023-07-08 08:16:35.029133 2023-07-08 08:16:35.029145 mef 1814 R rec c5b73955-d828-4315-ace4-6dbbdab928ce -2023-07-08 08:16:35.134268 2023-07-08 08:16:35.134278 mef 1815 R rec 63af02ff-7d44-4d04-9b51-ab666e5b1301 -2023-07-08 08:16:35.222104 2023-07-08 08:16:35.222116 mef 1816 R rec d4847787-61fa-406e-969e-61bcde02046c -2023-07-08 08:16:35.322834 2023-07-08 08:16:35.32285 mef 1817 R rec 9a0966d6-e58c-4e58-99de-a1e9c074b19d -2023-07-08 08:16:35.41849 2023-07-08 08:16:35.418505 mef 1818 R rec fcf10390-e6f4-410b-9e6a-343bc37040f0 -2023-07-08 08:16:35.506674 2023-07-08 08:16:35.506685 mef 1819 R rec f671f52b-881a-4a69-9540-0e183bea7291 -2023-07-08 08:16:35.594855 2023-07-08 08:16:35.594866 mef 1820 R rec 5e22bc4a-c600-4f09-b16e-fa5d93101aa1 -2023-07-08 08:16:35.696804 2023-07-08 08:16:35.696815 mef 1821 R rec b5b873b1-50cc-4412-bde1-581ea3cd2687 -2023-07-08 08:16:35.790494 2023-07-08 08:16:35.790499 mef 1822 R rec 53b975c3-c33d-4857-8c46-11d6e9b4bff3 -2023-07-08 08:16:35.890156 2023-07-08 08:16:35.890166 mef 1823 R rec b6cb9571-c289-4c2d-91d7-3878bbb4899e -2023-07-08 08:16:35.980117 2023-07-08 08:16:35.980128 mef 1824 R rec ab9b3a3c-56a3-45a2-8f2d-e102dafe505a -2023-07-08 08:16:36.084368 2023-07-08 08:16:36.084379 mef 1825 R rec d94d2db5-d71f-44ea-b851-d5409a4434de -2023-07-08 08:16:36.198086 2023-07-08 08:16:36.198097 mef 1826 R rec 5bebde7d-69ce-4687-8d7b-48d4a6971046 -2023-07-08 08:16:36.280617 2023-07-08 08:16:36.280622 mef 1827 R rec 764566a9-7b24-4c4c-9626-dd51160ea0e9 -2023-07-08 08:16:36.379244 2023-07-08 08:16:36.379255 mef 1828 R rec 48fb92a6-6d56-45a2-8b02-06f527170a44 -2023-07-08 08:16:36.471103 2023-07-08 08:16:36.471114 mef 1829 R rec 8c5dc341-9332-42da-9e26-995842d0a779 -2023-07-08 08:16:36.560652 2023-07-08 08:16:36.560657 mef 1830 R rec 1f4d2d24-3a91-4696-a60b-cc5eda0d5f86 -2023-07-08 08:16:36.656226 2023-07-08 08:16:36.656236 mef 1831 R rec b9e829e7-d408-413b-9dd8-29ff86a30299 -2023-07-08 08:16:36.74999 2023-07-08 08:16:36.749999 mef 1832 R rec 6a03445e-0872-4b66-8293-31ffa33728ee -2023-07-08 08:16:36.840223 2023-07-08 08:16:36.840233 mef 1833 R rec fe8e47ab-2460-4b99-adfb-91e0f945aa2e -2023-07-08 08:16:36.94499 2023-07-08 08:16:36.945001 mef 1834 R rec 0ad3e5fb-34bb-4e79-b296-1c9a45fba22b -2023-07-08 08:16:37.034999 2023-07-08 08:16:37.035011 mef 1835 R rec 57ec4008-f314-4d3e-ace8-2366e8dfaa53 -2023-07-08 08:16:37.127581 2023-07-08 08:16:37.127587 mef 1836 R rec dadf03f3-671c-4c99-9869-de7aacda8ec6 -2023-07-08 08:16:37.221358 2023-07-08 08:16:37.221373 mef 1837 R rec ebb2784a-22cb-432b-8ac8-3d9a2a6d805a -2023-07-08 08:16:37.338123 2023-07-08 08:16:37.338133 mef 1838 R rec 089c1934-8fa6-491e-ac3b-c2d1c63c797f -2023-07-08 08:16:37.425596 2023-07-08 08:16:37.425611 mef 1839 R rec 2859a91e-9e2f-46b4-a884-adef7c6212fa -2023-07-08 08:16:37.527897 2023-07-08 08:16:37.527907 mef 1840 R rec 9604a7a7-d115-4e93-931b-16bb39247764 -2023-07-08 08:16:37.63007 2023-07-08 08:16:37.630075 mef 1841 R rec 6f1a5292-0bbf-4ddf-9cbe-66c25d9907cd -2023-07-08 08:16:37.72965 2023-07-08 08:16:37.729655 mef 1842 R rec 5f3856e2-62d4-49f0-b25c-43606a15ce53 -2023-07-08 08:16:37.812699 2023-07-08 08:16:37.812713 mef 1843 R rec 87411f80-fd9d-42db-91ac-70afd25ae122 -2023-07-08 08:16:37.896275 2023-07-08 08:16:37.896285 mef 1844 R rec 5dafd597-56aa-4b7c-8cfe-ceaed6e2fa97 -2023-07-08 08:16:37.995411 2023-07-08 08:16:37.995424 mef 1845 R rec 65ffc658-2bdb-44a8-88c9-6a6bc66d747a -2023-07-08 08:16:38.11121 2023-07-08 08:16:38.111223 mef 1846 R rec 37170c67-6c4d-44e3-a5d0-d95c93ac744b -2023-07-08 08:16:38.208802 2023-07-08 08:16:38.208811 mef 1847 R rec 35f37e38-22f4-4cc5-a8d4-afb302a95d00 -2023-07-08 08:16:38.296858 2023-07-08 08:16:38.296863 mef 1848 R rec 0cbaf168-7739-4619-938f-50432c2bf1d0 -2023-07-08 08:16:38.388424 2023-07-08 08:16:38.388437 mef 1849 R rec f43ebd75-dbc5-4216-ac78-f6307b0560d3 -2023-07-08 08:16:38.476335 2023-07-08 08:16:38.476346 mef 1850 R rec c1177f9d-857f-4235-920e-e74040b7be4e -2023-07-08 08:16:38.567323 2023-07-08 08:16:38.567338 mef 1851 R rec f2bd4c32-fbb0-43e1-ab51-096c182e88c6 -2023-07-08 08:16:38.657395 2023-07-08 08:16:38.657406 mef 1852 R rec 746b3c61-eeaa-4c70-89ca-481f10950523 -2023-07-08 08:16:38.729902 2023-07-08 08:16:38.729907 mef 1853 R rec 461f0c96-0089-4f01-bee3-e57292c8d122 -2023-07-08 08:16:38.805525 2023-07-08 08:16:38.805532 mef 1854 R rec dc3f6f81-c307-42ae-80af-7591df5313fd -2023-07-08 08:16:38.903298 2023-07-08 08:16:38.903309 mef 1855 R rec f7424824-096c-4d46-9fd8-ea13e6e2941d -2023-07-08 08:16:39.001802 2023-07-08 08:16:39.001812 mef 1856 R rec 2531268c-b983-4958-a5e8-740d119defe3 -2023-07-08 08:16:39.089771 2023-07-08 08:16:39.089782 mef 1857 R rec 576cbf78-0852-4570-b2f9-9407470f83df -2023-07-08 08:16:39.183836 2023-07-08 08:16:39.183847 mef 1858 R rec 321392e7-54b8-4114-8a33-f53dd657af16 -2023-07-08 08:16:39.270746 2023-07-08 08:16:39.270755 mef 1859 R rec 540a0acb-fde8-4eb6-84b7-e5f9be98b9a6 -2023-07-08 08:16:39.364857 2023-07-08 08:16:39.364875 mef 1860 R rec 23ab9883-ecca-453f-a831-6b8fd3d6c2d4 -2023-07-08 08:16:39.470678 2023-07-08 08:16:39.470693 mef 1861 R rec cfc08443-2e3c-4ea5-af2f-76f2c5c8c93f -2023-07-08 08:16:39.566911 2023-07-08 08:16:39.566921 mef 1862 R rec 24dc7b64-5c3d-44b0-9d84-3c9694501d14 -2023-07-08 08:16:39.656115 2023-07-08 08:16:39.656128 mef 1863 R rec 4588ad75-8bf3-4c85-b6e1-3cebd0eee80d -2023-07-08 08:16:39.753907 2023-07-08 08:16:39.753922 mef 1864 R rec 9c9d1bdf-d9fe-4151-9d88-6ffff9343c39 -2023-07-08 08:16:39.841095 2023-07-08 08:16:39.841106 mef 1865 R rec 61e2bc87-5b69-490f-b6fa-5b40f6a3721c -2023-07-08 08:16:39.924983 2023-07-08 08:16:39.924988 mef 1866 R rec f6994ece-40ea-4f8e-a0ca-a45497ba8803 -2023-07-08 08:16:40.020896 2023-07-08 08:16:40.020907 mef 1867 R rec c5fc6972-698b-49d7-8f4f-abb567ca9e9b -2023-07-08 08:16:40.1296 2023-07-08 08:16:40.129611 mef 1868 R rec a3032522-f88a-4142-b1e6-cdd2355aaa54 -2023-07-08 08:16:40.218701 2023-07-08 08:16:40.218712 mef 1869 R rec b71b6f28-03e1-4297-85e2-f3052abb5fb7 -2023-07-08 08:16:40.305084 2023-07-08 08:16:40.305088 mef 1870 R rec bc7077cf-cbde-4ffd-925a-09461d801abb -2023-07-08 08:16:40.39868 2023-07-08 08:16:40.398689 mef 1871 R rec ff2e634f-4313-407a-ad33-78f4a37e3be6 -2023-07-08 08:16:40.492857 2023-07-08 08:16:40.492872 mef 1872 R rec f0096a9e-44e8-451a-88c3-d94c0c364915 -2023-07-08 08:16:40.591361 2023-07-08 08:16:40.59137 mef 1873 R rec 73b37c4a-a6a1-4b45-9389-5ba6ccb9dd6a -2023-07-08 08:16:40.69724 2023-07-08 08:16:40.69725 mef 1874 R rec ffba8aba-df94-4cd8-bd27-1b13297d3dd2 -2023-07-08 08:16:40.782615 2023-07-08 08:16:40.782624 mef 1875 R rec 022e1cfa-7023-4bde-af9b-7c6e0a9c1bf7 -2023-07-08 08:16:40.87247 2023-07-08 08:16:40.872486 mef 1876 R rec 505ab3b2-cd6a-45bb-9d42-e302f3e1578a -2023-07-08 08:16:40.977733 2023-07-08 08:16:40.977744 mef 1877 R rec 1b13a7f7-be26-48f5-8a4d-91e69842609d -2023-07-08 08:16:41.079997 2023-07-08 08:16:41.080011 mef 1878 R rec 626b79fc-9d4a-4e42-b8cd-3fb3e210bd21 -2023-07-08 08:16:41.167555 2023-07-08 08:16:41.167569 mef 1879 R rec e62ac63d-64b0-4de7-b92d-3a09a5f9241e -2023-07-08 08:16:41.248194 2023-07-08 08:16:41.248199 mef 1880 R rec 512e06d4-76c6-4561-a784-60691b082b0d -2023-07-08 08:16:41.338239 2023-07-08 08:16:41.338249 mef 1881 R rec 167acdd2-e74b-4193-b7e4-ae34f170cfe0 -2023-07-08 08:16:41.436534 2023-07-08 08:16:41.436547 mef 1882 R rec 5722456f-3e6c-483e-8759-7aa39c8211d1 -2023-07-08 08:16:41.51843 2023-07-08 08:16:41.518441 mef 1883 R rec 6c7be9c5-5168-4f4f-bd5e-930697e1b1c9 -2023-07-08 08:16:41.606592 2023-07-08 08:16:41.606609 mef 1884 R rec b28abbd7-217c-480f-8289-b24359bd78fe -2023-07-08 08:16:41.710564 2023-07-08 08:16:41.710578 mef 1885 R rec d6312a79-c52b-4bd0-94a8-50ba9753db3a -2023-07-08 08:16:41.795862 2023-07-08 08:16:41.795867 mef 1886 R rec 7ae1fcd7-c827-4c91-be30-0b6700d86c0f -2023-07-08 08:16:41.880481 2023-07-08 08:16:41.880494 mef 1887 R rec 29009290-6a98-4540-a8ab-efbfc91aa79d -2023-07-08 08:16:41.973057 2023-07-08 08:16:41.973071 mef 1888 R rec 07a93e10-840f-4134-a7d1-9161eccbb494 -2023-07-08 08:16:42.067172 2023-07-08 08:16:42.067185 mef 1889 R rec 798dc587-b6d0-446e-9818-722c5d299a63 -2023-07-08 08:16:42.169932 2023-07-08 08:16:42.169943 mef 1890 R rec be619353-893d-4c56-b77b-5aea2a2bb2d8 -2023-07-08 08:16:42.25533 2023-07-08 08:16:42.255335 mef 1891 R rec 77b15fb7-e22c-428a-b385-1719a703bf32 -2023-07-08 08:16:42.338249 2023-07-08 08:16:42.338259 mef 1892 R rec 63e06b9a-ee1b-415c-aa4e-5b3877892744 -2023-07-08 08:16:42.456451 2023-07-08 08:16:42.456462 mef 1893 R rec a01be55d-e37f-468c-ae84-d78e226b54b5 -2023-07-08 08:16:42.536553 2023-07-08 08:16:42.536564 mef 1894 R rec dabc0df6-0daf-4c48-bd47-2431de1d33b7 -2023-07-08 08:16:42.632389 2023-07-08 08:16:42.632399 mef 1895 R rec 31044aab-836d-4c79-a38b-7c5103c0188b -2023-07-08 08:16:42.719983 2023-07-08 08:16:42.720003 mef 1896 R rec a1f0274e-3a19-49cf-b2a1-fb2b7c2ea98e -2023-07-08 08:16:42.802715 2023-07-08 08:16:42.802722 mef 1897 R rec dbc77cea-5550-4ab1-b165-c445f3d89023 -2023-07-08 08:16:42.892396 2023-07-08 08:16:42.892407 mef 1898 R rec 0b89fc75-d254-410f-9801-72b76ce1de8c -2023-07-08 08:16:42.989479 2023-07-08 08:16:42.98949 mef 1899 R rec ca776c30-a98e-45cf-b81a-849bab89a0c9 -2023-07-08 08:16:43.085113 2023-07-08 08:16:43.085122 mef 1900 R rec 9550d162-314c-4801-a4e7-f474626e9656 -2023-07-08 08:16:43.185266 2023-07-08 08:16:43.185276 mef 1901 R rec afc21599-6186-4890-b68b-b7520132caf9 -2023-07-08 08:16:43.27459 2023-07-08 08:16:43.274602 mef 1902 R rec a02f5d17-237c-463a-b0ab-529be9fb2135 -2023-07-08 08:16:43.377583 2023-07-08 08:16:43.377595 mef 1903 R rec 4da39d12-17a4-4022-9086-071ceeabb357 -2023-07-08 08:16:43.473827 2023-07-08 08:16:43.473838 mef 1904 R rec f4905dba-660a-4d1b-953f-d99f045f7fcf -2023-07-08 08:16:43.569393 2023-07-08 08:16:43.569408 mef 1905 R rec a7d06a75-aac8-459c-81c5-e6dd2e4eea94 -2023-07-08 08:16:43.666607 2023-07-08 08:16:43.666616 mef 1906 R rec ca8a300f-1d57-434d-80c0-ec869d99ab7f -2023-07-08 08:16:43.771943 2023-07-08 08:16:43.771951 mef 1907 R rec 06f1bb81-ebc5-498e-b832-9f8acea05837 -2023-07-08 08:16:43.86621 2023-07-08 08:16:43.86622 mef 1908 R rec 19d2ea44-a972-4590-99ad-1e332bb509af -2023-07-08 08:16:43.9642 2023-07-08 08:16:43.96421 mef 1909 R rec 2f34c084-a16d-473e-ae06-4363abfc1f68 -2023-07-08 08:16:44.057186 2023-07-08 08:16:44.057199 mef 1910 R rec a0933eb3-d871-4de9-a44d-8a14ab53fb83 -2023-07-08 08:16:44.151433 2023-07-08 08:16:44.151444 mef 1911 R rec 425d2aad-a91d-4dd4-bbc0-2f03c668e2e8 -2023-07-08 08:16:44.238547 2023-07-08 08:16:44.238557 mef 1912 R rec 44ebce7e-6ab4-4bdd-a4b5-805b16b8be2e -2023-07-08 08:16:44.315336 2023-07-08 08:16:44.31534 mef 1913 R rec b9358459-2b44-41a9-9969-d8002db79f73 -2023-07-08 08:16:44.401658 2023-07-08 08:16:44.401668 mef 1914 R rec 6f3d86ca-e8eb-478e-b512-90f2c8c9c677 -2023-07-08 08:16:44.495891 2023-07-08 08:16:44.495906 mef 1915 R rec b4061ddc-921d-44e2-b25e-cef44e132579 -2023-07-08 08:16:44.600062 2023-07-08 08:16:44.600077 mef 1916 R rec 93cc40fd-9d67-428c-9a9f-c066ab98dc3e -2023-07-08 08:16:44.688839 2023-07-08 08:16:44.688849 mef 1917 R rec 689c84a0-07c9-4411-9b44-5bdceaf9e541 -2023-07-08 08:16:44.78834 2023-07-08 08:16:44.788353 mef 1918 R rec 0d4d7005-69aa-4e2a-aed0-b8646e974807 -2023-07-08 08:16:44.883492 2023-07-08 08:16:44.883503 mef 1919 R rec ff2681a7-c3e0-4b66-ae38-6c30adf87022 -2023-07-08 08:16:44.970418 2023-07-08 08:16:44.970428 mef 1920 R rec 04b24585-eedb-40c2-80c3-4eb412681e59 -2023-07-08 08:16:45.071195 2023-07-08 08:16:45.071208 mef 1921 R rec 3570493c-12d9-4bfb-a1cb-727af8fbe780 -2023-07-08 08:16:45.175599 2023-07-08 08:16:45.175612 mef 1922 R rec e70e7b6b-8822-4b2d-8ba5-cd064896aec6 -2023-07-08 08:16:45.268639 2023-07-08 08:16:45.26865 mef 1923 R rec 868a0906-f9a8-4080-90a9-2758526cef4d -2023-07-08 08:16:45.351338 2023-07-08 08:16:45.351349 mef 1924 R rec 77022bb7-aa35-4095-b5f9-2a6d536f9dee -2023-07-08 08:16:45.440751 2023-07-08 08:16:45.440763 mef 1925 R rec 2be4290d-8afd-4c59-a79d-23a01ce80ef4 -2023-07-08 08:16:45.539709 2023-07-08 08:16:45.53972 mef 1926 R rec 2e188f6d-f9cf-4b28-8485-e3e5fb80a29e -2023-07-08 08:16:45.63889 2023-07-08 08:16:45.638902 mef 1927 R rec cb6fe69d-4d36-4ee5-a918-d6d93950e25c -2023-07-08 08:16:45.757242 2023-07-08 08:16:45.75726 mef 1928 R rec c0f346e3-9cca-493b-8053-5e995e4cbb85 -2023-07-08 08:16:45.831681 2023-07-08 08:16:45.831686 mef 1929 R rec 9748785a-176c-4143-b2d6-2d326ec18f99 -2023-07-08 08:16:45.927181 2023-07-08 08:16:45.927192 mef 1930 R rec 30ebdf96-31dd-4943-8304-1cb78295e632 -2023-07-08 08:16:46.014363 2023-07-08 08:16:46.014373 mef 1931 R rec 46764580-3907-4475-95d6-de2875ccd27c -2023-07-08 08:16:46.105206 2023-07-08 08:16:46.105219 mef 1932 R rec 8de4366c-0542-446f-8cef-e12dc8ef744e -2023-07-08 08:16:46.201042 2023-07-08 08:16:46.201054 mef 1933 R rec b7dcbcab-c329-4254-b02a-1f8418861eb0 -2023-07-08 08:16:46.28982 2023-07-08 08:16:46.28983 mef 1934 R rec 548afab9-90b8-408b-a664-0c8fb696d7a0 -2023-07-08 08:16:46.369019 2023-07-08 08:16:46.369033 mef 1935 R rec 22cf495b-f8b1-4d1a-986e-8cc522f871a8 -2023-07-08 08:16:46.463175 2023-07-08 08:16:46.463186 mef 1936 R rec 92b78ff7-378a-4d34-aabd-1e357da8dbf4 -2023-07-08 08:16:46.571276 2023-07-08 08:16:46.571289 mef 1937 R rec 0282f418-24db-47b1-b376-394cc6bbc490 -2023-07-08 08:16:46.677004 2023-07-08 08:16:46.677013 mef 1938 R rec 4cd63f0c-8e7e-4de3-b098-f94007685150 -2023-07-08 08:16:46.77072 2023-07-08 08:16:46.770729 mef 1939 R rec 217bda29-3121-494e-9384-1f5d3d427b65 -2023-07-08 08:16:46.866855 2023-07-08 08:16:46.866864 mef 1940 R rec 6624bf52-b963-446a-b9b5-b57eea34d49a -2023-07-08 08:16:46.964198 2023-07-08 08:16:46.964209 mef 1941 R rec 3ed2d1b8-d40c-4e78-bcfa-48be56680394 -2023-07-08 08:16:47.063726 2023-07-08 08:16:47.063731 mef 1942 R rec 1228fb67-71b1-483e-9f8f-e4ee76287299 -2023-07-08 08:16:47.156971 2023-07-08 08:16:47.156981 mef 1943 R rec d29e3515-d16a-41a2-a5a0-586c47e4da92 -2023-07-08 08:16:47.249281 2023-07-08 08:16:47.249291 mef 1944 R rec 1de2ef0b-7209-4ff9-896e-796bc3c126b9 -2023-07-08 08:16:47.330144 2023-07-08 08:16:47.330149 mef 1945 R rec ac404134-5160-407b-91b6-20a8e8067af4 -2023-07-08 08:16:47.422878 2023-07-08 08:16:47.422892 mef 1946 R rec 44333551-94c7-45ff-9ca3-b0a89026bd1c -2023-07-08 08:16:47.513799 2023-07-08 08:16:47.513809 mef 1947 R rec e7965110-b427-418b-882b-de1c84b0bd59 -2023-07-08 08:16:47.603679 2023-07-08 08:16:47.60369 mef 1948 R rec 92e719a1-e05f-4ce8-a392-58fe3da1b6e2 -2023-07-08 08:16:47.697264 2023-07-08 08:16:47.697275 mef 1949 R rec c38ebf4e-5e9a-474a-8c2a-61020fec1b35 -2023-07-08 08:16:47.807939 2023-07-08 08:16:47.807944 mef 1950 R rec e5ce8583-11a5-45bf-97c9-ffdee6adecfc -2023-07-08 08:16:47.890135 2023-07-08 08:16:47.890145 mef 1951 R rec 477f17d0-f8e5-412e-8041-29afada8110a -2023-07-08 08:16:47.99757 2023-07-08 08:16:47.997581 mef 1952 R rec 6986ac90-1673-4e97-ac3b-1b580ad93122 -2023-07-08 08:16:48.097429 2023-07-08 08:16:48.097442 mef 1953 R rec 88ed2d9b-4828-4a39-b23f-bef6d24316ec -2023-07-08 08:16:48.190593 2023-07-08 08:16:48.190601 mef 1954 R rec b950efbb-de01-445a-867e-cc6cad5fe467 -2023-07-08 08:16:48.297408 2023-07-08 08:16:48.297418 mef 1955 R rec a9d8fe07-925c-4aef-b99b-bef42ef04468 -2023-07-08 08:16:48.399471 2023-07-08 08:16:48.39948 mef 1956 R rec 1d886fcf-f59d-4e8d-92a3-b58cc00a2bff -2023-07-08 08:16:48.488608 2023-07-08 08:16:48.488618 mef 1957 R rec 7d12930f-42bf-4ed2-88ce-80c701f3976c -2023-07-08 08:16:48.580238 2023-07-08 08:16:48.580248 mef 1958 R rec 78a47902-f25c-4503-956e-41d8ee08c4bd -2023-07-08 08:16:48.681578 2023-07-08 08:16:48.681583 mef 1959 R rec 1ca38bde-e582-4fc1-8c22-bda39b559378 -2023-07-08 08:16:48.768488 2023-07-08 08:16:48.7685 mef 1960 R rec 854d0abb-653a-4c21-8fb0-f20e3959747e -2023-07-08 08:16:48.849476 2023-07-08 08:16:48.849487 mef 1961 R rec 4c1f81b7-a4b9-4c67-a708-32e5d44e26a5 -2023-07-08 08:16:48.93565 2023-07-08 08:16:48.93566 mef 1962 R rec ff1e7a72-2732-4d48-aae5-560fc347ec17 -2023-07-08 08:16:49.018789 2023-07-08 08:16:49.018798 mef 1963 R rec 4e428b1e-a289-4584-b0ed-45abc1ec0a81 -2023-07-08 08:16:49.107519 2023-07-08 08:16:49.107524 mef 1964 R rec 97f261ab-f176-4e4a-a529-8d63f88a3664 -2023-07-08 08:16:49.197174 2023-07-08 08:16:49.197185 mef 1965 R rec 567dc81d-70b5-4cd2-850c-dee57ed98a6f -2023-07-08 08:16:49.283135 2023-07-08 08:16:49.283146 mef 1966 R rec 6dcb12f1-b803-4e47-bab2-6dc98d7a9763 -2023-07-08 08:16:49.363301 2023-07-08 08:16:49.363313 mef 1967 R rec 66d6b0cb-092d-4b94-9274-b5bf7e6f8f63 -2023-07-08 08:16:49.472729 2023-07-08 08:16:49.47274 mef 1968 R rec d7bca0b2-c829-470f-bbce-520e66d3bdd6 -2023-07-08 08:16:49.588381 2023-07-08 08:16:49.588391 mef 1969 R rec fd480db7-89bf-4bd8-a0d5-7ba45debd5ac -2023-07-08 08:16:49.688527 2023-07-08 08:16:49.688537 mef 1970 R rec ee64517f-322d-4d0d-b2ac-3fa96f28f11d -2023-07-08 08:16:49.788642 2023-07-08 08:16:49.788655 mef 1971 R rec db16ec52-639b-4e89-b045-0dce83edd496 -2023-07-08 08:16:49.888857 2023-07-08 08:16:49.888867 mef 1972 R rec b6302957-a325-4f6a-8841-d5470337d8d4 -2023-07-08 08:16:49.981315 2023-07-08 08:16:49.98132 mef 1973 R rec be46d437-a202-4630-9082-6dc7057881f2 -2023-07-08 08:16:50.079683 2023-07-08 08:16:50.079693 mef 1974 R rec 5260a1a9-5a43-4e63-9a66-cc4c75661fd6 -2023-07-08 08:16:50.182987 2023-07-08 08:16:50.182998 mef 1975 R rec 61ae7b0f-9510-499a-afb5-3b7409663a19 -2023-07-08 08:16:50.281145 2023-07-08 08:16:50.281156 mef 1976 R rec 59a2a34f-ad7d-43e9-84b6-59cd0702e6c0 -2023-07-08 08:16:50.367318 2023-07-08 08:16:50.367328 mef 1977 R rec 6df26589-c0a2-48ca-b978-f093a445148a -2023-07-08 08:16:50.466276 2023-07-08 08:16:50.466288 mef 1978 R rec 5a97e92c-53e7-4ed7-a7a8-db5b947171bf -2023-07-08 08:16:50.553704 2023-07-08 08:16:50.553714 mef 1979 R rec 5f15b43b-ebd8-411b-b3fe-00b625db2792 -2023-07-08 08:16:50.650193 2023-07-08 08:16:50.650203 mef 1980 R rec e905a86b-6aee-48c6-9c0e-03a6007b9860 -2023-07-08 08:16:50.735424 2023-07-08 08:16:50.73544 mef 1981 R rec 8765c8db-18c1-41e4-9d91-dac1d34fc223 -2023-07-08 08:16:50.823194 2023-07-08 08:16:50.8232 mef 1982 R rec 4398474a-0ebb-4057-b207-7f133c1fe29c -2023-07-08 08:16:50.889841 2023-07-08 08:16:50.889852 mef 1983 R rec 073c166a-3cc9-48d8-a2ab-23e9fa5b3345 -2023-07-08 08:16:50.981305 2023-07-08 08:16:50.981315 mef 1984 R rec 4b8598f0-eea6-4bf5-adc8-cd15fe350a2a -2023-07-08 08:16:51.068505 2023-07-08 08:16:51.068517 mef 1985 R rec 24522127-fb8b-4378-853d-4740047443b5 -2023-07-08 08:16:51.169506 2023-07-08 08:16:51.16952 mef 1986 R rec 730ccfb8-14a0-4fc3-94ff-9a348e494b95 -2023-07-08 08:16:51.249348 2023-07-08 08:16:51.249353 mef 1987 R rec 7c6e2bb5-e032-4168-8dac-d4f2e6141c69 -2023-07-08 08:16:51.358931 2023-07-08 08:16:51.358942 mef 1988 R rec ffbfd0bc-de58-44f6-9200-3d976ac89e70 -2023-07-08 08:16:51.469333 2023-07-08 08:16:51.469348 mef 1989 R rec 1cde3406-26cd-44c6-951a-662e9edd4a70 -2023-07-08 08:16:51.567728 2023-07-08 08:16:51.567737 mef 1990 R rec a9622f0c-6824-44d0-a1bb-4244c4aad575 -2023-07-08 08:16:51.658861 2023-07-08 08:16:51.658871 mef 1991 R rec 5e4429a9-0c6e-45cd-ba4e-35949f120b18 -2023-07-08 08:16:51.757549 2023-07-08 08:16:51.757564 mef 1992 R rec fb7d2486-549a-400c-b25c-a03bb4584fce -2023-07-08 08:16:51.844151 2023-07-08 08:16:51.844156 mef 1993 R rec c95f7aa6-2f2b-4df7-b498-b965e683cf19 -2023-07-08 08:16:51.919222 2023-07-08 08:16:51.919229 mef 1994 R rec 1087a9a1-6d7b-4657-87e9-6fd47bd0739d -2023-07-08 08:16:52.00204 2023-07-08 08:16:52.00205 mef 1995 R rec 9b10d680-feff-4ad8-94f1-6109d1575d38 -2023-07-08 08:16:52.120113 2023-07-08 08:16:52.120126 mef 1996 R rec b2d98b43-8626-473b-b8bf-31f8f0c8ea14 -2023-07-08 08:16:52.226528 2023-07-08 08:16:52.226538 mef 1997 R rec fae03d06-761c-49b6-9b27-ef115246b65a -2023-07-08 08:16:52.310461 2023-07-08 08:16:52.310466 mef 1998 R rec 0bd64078-fe16-4105-b091-7df8f303f446 -2023-07-08 08:16:52.396162 2023-07-08 08:16:52.396172 mef 1999 R rec af857fdc-80aa-4d66-9571-2ff845e80ea0 -2023-07-08 08:16:52.487685 2023-07-08 08:16:52.487696 mef 2000 R rec 491111ed-6072-4569-88d5-46e270a04544 -2023-07-08 08:16:52.57508 2023-07-08 08:16:52.575085 mef 2001 R rec 0609a594-6372-4a1f-807d-13cb690b63ad -2023-07-08 08:16:52.655384 2023-07-08 08:16:52.655393 mef 2002 R rec ca55eed2-68c1-45d8-a033-c399283a26aa -2023-07-08 08:16:52.758239 2023-07-08 08:16:52.758252 mef 2003 R rec 3f9854a2-0afe-42a0-9d6c-36c3220e53e7 -2023-07-08 08:16:52.854048 2023-07-08 08:16:52.854053 mef 2004 R rec bf762e62-dd6e-4875-85e9-4ce8ce1e7f54 -2023-07-08 08:16:52.939716 2023-07-08 08:16:52.939721 mef 2005 R rec d120b7dd-27cd-4593-b07c-762ee1f9b1a6 -2023-07-08 08:16:53.05122 2023-07-08 08:16:53.051231 mef 2006 R rec bf94c298-575d-4fc2-a1c1-f271f7a42a72 -2023-07-08 08:16:53.151645 2023-07-08 08:16:53.151652 mef 2007 R rec 38620024-8e60-40ae-8f7d-c1430ec5e8f6 -2023-07-08 08:16:53.245757 2023-07-08 08:16:53.245763 mef 2008 R rec 170f5ea2-191d-460f-9b92-1a768ae0fd5a -2023-07-08 08:16:53.325863 2023-07-08 08:16:53.325868 mef 2009 R rec 53306c82-9b54-4733-a069-9452e0e15143 -2023-07-08 08:16:53.410139 2023-07-08 08:16:53.410152 mef 2010 R rec cfc4085d-6766-45c8-9a19-42b928ab588b -2023-07-08 08:16:53.536669 2023-07-08 08:16:53.536684 mef 2011 R rec d775cbfe-c493-4de1-b8e4-0b4ee1bf142d -2023-07-08 08:16:53.653912 2023-07-08 08:16:53.653922 mef 2012 R rec fa57659c-6304-4e13-8b69-53a593a79dd5 -2023-07-08 08:16:53.773363 2023-07-08 08:16:53.773375 mef 2013 R rec e2888279-812a-4a67-891e-19e440a5a2a4 -2023-07-08 08:16:53.888913 2023-07-08 08:16:53.888925 mef 2014 R rec 3d51edf8-bd59-4394-ac4c-3060928a32cd -2023-07-08 08:16:54.004782 2023-07-08 08:16:54.004796 mef 2015 R rec 68237895-7ec3-4013-8951-29ca60a5de67 -2023-07-08 08:16:54.114668 2023-07-08 08:16:54.114683 mef 2016 R rec c46f8c8d-a69a-4e3f-b867-626d9dd02ce6 -2023-07-08 08:16:54.213483 2023-07-08 08:16:54.213497 mef 2017 R rec 58ab770a-0939-48dd-a0ee-d4950a5e8be1 -2023-07-08 08:16:54.323649 2023-07-08 08:16:54.323664 mef 2018 R rec 8e2aaad8-da84-44a7-b141-d43e5f96a400 -2023-07-08 08:16:54.436296 2023-07-08 08:16:54.436308 mef 2019 R rec 5249ab09-519e-4768-9982-68533a88a015 -2023-07-08 08:16:54.557773 2023-07-08 08:16:54.557783 mef 2020 R rec 60f7ec8e-4eff-4f54-8c4b-0f0ea133218b -2023-07-08 08:16:54.684761 2023-07-08 08:16:54.684773 mef 2021 R rec ae0b95a0-e473-49d6-a09a-c87cdf23b2fb -2023-07-08 08:16:54.805234 2023-07-08 08:16:54.805246 mef 2022 R rec d8f3cf5f-4934-45fd-ac3c-0c2c0cb7f891 -2023-07-08 08:16:54.917799 2023-07-08 08:16:54.91781 mef 2023 R rec e727d692-35c5-4845-b491-15aab4650d6e -2023-07-08 08:16:55.040502 2023-07-08 08:16:55.040512 mef 2024 R rec 86d50978-bea6-46e2-89fe-5c211cfb65ce -2023-07-08 08:16:55.173104 2023-07-08 08:16:55.173119 mef 2025 R rec fb1f18d7-a328-48b7-b9f0-f8bf3230e3c0 -2023-07-08 08:16:55.292875 2023-07-08 08:16:55.292886 mef 2026 R rec bcc1dc8d-ecae-4ea1-b1fa-6ad7144cdda3 -2023-07-08 08:16:55.408144 2023-07-08 08:16:55.408153 mef 2027 R rec a32d1c5c-fdc5-4ef1-b190-250eeea9c614 -2023-07-08 08:16:55.531536 2023-07-08 08:16:55.531547 mef 2028 R rec c5030fff-9945-41cc-ba42-85e894c75680 -2023-07-08 08:16:55.643854 2023-07-08 08:16:55.643864 mef 2029 R rec 47245f07-b4ca-4b4d-82d4-2a083916ac4f -2023-07-08 08:16:55.748122 2023-07-08 08:16:55.748138 mef 2030 R rec 997ddeb2-95bf-416d-80fc-8e4859029ad2 -2023-07-08 08:16:55.845192 2023-07-08 08:16:55.845207 mef 2031 R rec 988dbb0f-6d5a-4b3b-b6fb-4f8041429885 -2023-07-08 08:16:55.963594 2023-07-08 08:16:55.963608 mef 2032 R rec 8a6c0815-55d1-4354-85fe-02b49829ca75 -2023-07-08 08:16:56.065849 2023-07-08 08:16:56.065861 mef 2033 R rec 5e790e72-af28-4c01-bde1-dafe96377f14 -2023-07-08 08:16:56.176249 2023-07-08 08:16:56.176255 mef 2034 R rec 85a996e8-00de-46e0-a984-920989ae1f84 -2023-07-08 08:16:56.28352 2023-07-08 08:16:56.283531 mef 2035 R rec eaa7c733-8fe9-435e-8d77-df271f769226 -2023-07-08 08:16:56.406329 2023-07-08 08:16:56.406345 mef 2036 R rec 053f88a2-b07a-4bb2-8f03-b4de2de31c35 -2023-07-08 08:16:56.513756 2023-07-08 08:16:56.513765 mef 2037 R rec 807143ba-ea41-46ab-98a4-407a02c04e39 -2023-07-08 08:16:56.617496 2023-07-08 08:16:56.617506 mef 2038 R rec 3779d995-67a1-4867-91ad-816a3454e80e -2023-07-08 08:16:56.749967 2023-07-08 08:16:56.749985 mef 2039 R rec 2aa8a96c-2745-4c14-84b0-477247e909d5 -2023-07-08 08:16:56.869002 2023-07-08 08:16:56.869017 mef 2040 R rec 9f22a74f-ac0b-4ebe-9bdb-f0a3e1ff0d03 -2023-07-08 08:16:56.985227 2023-07-08 08:16:56.985239 mef 2041 R rec 569f90cf-7d30-4458-9d05-41c5294b4f0a -2023-07-08 08:16:57.09335 2023-07-08 08:16:57.093363 mef 2042 R rec 8631231d-0591-448e-89a2-b43a0ece5fc5 -2023-07-08 08:16:57.208705 2023-07-08 08:16:57.208719 mef 2043 R rec 975608e7-50a2-43e9-aef2-5be14b6fcfdd -2023-07-08 08:16:57.321703 2023-07-08 08:16:57.321714 mef 2044 R rec 8b335b98-9bd6-4aac-8b8e-3a64d0bad774 -2023-07-08 08:16:57.449454 2023-07-08 08:16:57.449465 mef 2045 R rec bfabcbf7-5e8e-42fd-93b8-2edf83e6e6eb -2023-07-08 08:16:57.576227 2023-07-08 08:16:57.576237 mef 2046 R rec 51c8d6a1-f52e-459d-a861-ddd67409b454 -2023-07-08 08:16:57.693329 2023-07-08 08:16:57.693359 mef 2047 R rec bf9d3e92-416b-4446-bddb-bcd57e416734 -2023-07-08 08:16:57.811928 2023-07-08 08:16:57.811937 mef 2048 R rec 80930603-3773-4c7d-a598-e30191f810bf -2023-07-08 08:16:57.919649 2023-07-08 08:16:57.91966 mef 2049 R rec 06ec9a5a-cf71-4113-aa6c-f74c94dc768d -2023-07-08 08:16:58.023791 2023-07-08 08:16:58.023801 mef 2050 R rec c2af2816-ead4-453b-9ab5-8732eff8316e -2023-07-08 08:16:58.13281 2023-07-08 08:16:58.132819 mef 2051 R rec bb6984ac-76d9-489c-9893-2505658e9767 -2023-07-08 08:16:58.250055 2023-07-08 08:16:58.250065 mef 2052 R rec bef4a14a-cdde-4abd-9ad1-2614947952c1 -2023-07-08 08:16:58.361021 2023-07-08 08:16:58.361033 mef 2053 R rec 89a10ce5-9eeb-464b-98b2-f24d0564a268 -2023-07-08 08:16:58.470925 2023-07-08 08:16:58.47094 mef 2054 R rec c489a25f-56ce-41db-9561-31fdb4bd7531 -2023-07-08 08:16:58.61385 2023-07-08 08:16:58.613861 mef 2055 R rec 73552458-4cb1-4c4a-8193-8218e3363bfe -2023-07-08 08:16:58.739543 2023-07-08 08:16:58.739555 mef 2056 R rec 7733effe-8638-48df-8560-b0f78abe5b3f -2023-07-08 08:16:58.858481 2023-07-08 08:16:58.858496 mef 2057 R rec 07dbe48d-120e-41ef-8ed1-cfc7c96128be -2023-07-08 08:16:58.97758 2023-07-08 08:16:58.977591 mef 2058 R rec a57eb03f-9d02-4b48-bc93-d7f154527164 -2023-07-08 08:16:59.088359 2023-07-08 08:16:59.088375 mef 2059 R rec 8eaceb54-17f2-453f-a830-198ff13ea093 -2023-07-08 08:16:59.225177 2023-07-08 08:16:59.225187 mef 2060 R rec 60b925fb-a5b0-4195-8df9-6a0b2bdd3d30 -2023-07-08 08:16:59.350575 2023-07-08 08:16:59.350585 mef 2061 R rec aa1be06b-14c9-4cb8-b530-6b84130b2fdf -2023-07-08 08:16:59.464724 2023-07-08 08:16:59.464734 mef 2062 R rec b41c6199-fb17-4eb9-b511-a60d6c6552bc -2023-07-08 08:16:59.594841 2023-07-08 08:16:59.594857 mef 2063 R rec 4a77f8b7-d367-4508-becf-0c3ff1382d6a -2023-07-08 08:16:59.711195 2023-07-08 08:16:59.711211 mef 2064 R rec f268c9a4-98e2-4fef-bfa9-a1a76558f81e -2023-07-08 08:16:59.829488 2023-07-08 08:16:59.829503 mef 2065 R rec ae845de0-a36f-43fd-96da-d9f147616ff3 -2023-07-08 08:16:59.945972 2023-07-08 08:16:59.945982 mef 2066 R rec de116639-cc77-4460-a176-df83a070400f -2023-07-08 08:17:00.055843 2023-07-08 08:17:00.055854 mef 2067 R rec ca737680-b860-4490-b5f3-5ee69378a173 -2023-07-08 08:17:00.173084 2023-07-08 08:17:00.173094 mef 2068 R rec c96551d3-6498-4c17-84d6-566633cefd14 -2023-07-08 08:17:00.292254 2023-07-08 08:17:00.292267 mef 2069 R rec 4a77ac1c-b473-4bbc-9f38-6fd37fc0ed12 -2023-07-08 08:17:00.411579 2023-07-08 08:17:00.411598 mef 2070 R rec 510f271b-153d-4403-9c27-c3f825c2db8d -2023-07-08 08:17:00.522861 2023-07-08 08:17:00.52287 mef 2071 R rec 629117b4-99ad-4d51-b810-aa856240d5b3 -2023-07-08 08:17:00.637569 2023-07-08 08:17:00.637584 mef 2072 R rec 95195508-ad2c-47f1-95a7-64c24e9d55c3 -2023-07-08 08:17:00.756837 2023-07-08 08:17:00.756851 mef 2073 R rec 507f1b41-be06-45f9-93a8-da3603647ebb -2023-07-08 08:17:00.916124 2023-07-08 08:17:00.916134 mef 2074 R rec 2bb511cc-131c-44d1-bbf1-d221eb8821ac -2023-07-08 08:17:01.036066 2023-07-08 08:17:01.036077 mef 2075 R rec 45eba4a1-d80f-49bf-a606-364852909879 -2023-07-08 08:17:01.145475 2023-07-08 08:17:01.145485 mef 2076 R rec ee8aebe9-446f-4dee-9df2-a0a8af90ede7 -2023-07-08 08:17:01.268672 2023-07-08 08:17:01.268682 mef 2077 R rec 136b519c-6d3d-4646-a03b-45fd40e99985 -2023-07-08 08:17:01.399371 2023-07-08 08:17:01.399387 mef 2078 R rec b7bad417-054c-491e-9964-2a1cad12fce2 -2023-07-08 08:17:01.521733 2023-07-08 08:17:01.521748 mef 2079 R rec 42d6d47a-9c42-489a-b848-6937d596a153 -2023-07-08 08:17:01.652511 2023-07-08 08:17:01.652521 mef 2080 R rec 3c2f49f3-edbd-4c40-87fb-af94ac6ad98d -2023-07-08 08:17:01.780109 2023-07-08 08:17:01.780115 mef 2081 R rec 181d4499-2070-47fd-9487-b096c6a7f9c2 -2023-07-08 08:17:01.884105 2023-07-08 08:17:01.884115 mef 2082 R rec abcdc656-0778-49ab-a177-f686b50c7603 -2023-07-08 08:17:01.998652 2023-07-08 08:17:01.998669 mef 2083 R rec 4cf1f1b4-1746-4654-ab6f-01f46b4c9286 -2023-07-08 08:17:02.126188 2023-07-08 08:17:02.126198 mef 2084 R rec 63bc4cf0-d98a-4cb9-88d4-dde78d9879f3 -2023-07-08 08:17:02.254561 2023-07-08 08:17:02.254572 mef 2085 R rec 0fa206db-8e1b-4f34-8477-36ddb50fc591 -2023-07-08 08:17:02.40735 2023-07-08 08:17:02.407361 mef 2086 R rec 481e4293-39cd-44b9-b620-f2143606bea7 -2023-07-08 08:17:02.544907 2023-07-08 08:17:02.544921 mef 2087 R rec af6cf94f-585a-48fd-a07c-6026fd361546 -2023-07-08 08:17:02.643721 2023-07-08 08:17:02.643727 mef 2088 R rec c99a190c-d5d7-43c2-a51c-5ba0e8e80852 -2023-07-08 08:17:02.723297 2023-07-08 08:17:02.723303 mef 2089 R rec 68f3d1a0-863b-4050-a4cc-6d1efce686d8 -2023-07-08 08:17:02.798148 2023-07-08 08:17:02.798154 mef 2090 R rec 6014f6d3-34ea-4270-b60b-2aaa04644a49 -2023-07-08 08:17:02.882519 2023-07-08 08:17:02.882524 mef 2091 R rec 264efb84-9c52-473d-a5e0-718b085bb951 -2023-07-08 08:17:02.94761 2023-07-08 08:17:02.947614 mef 2092 R rec 5d673b97-ca44-4058-9a82-bb1422d36970 -2023-07-08 08:17:03.021691 2023-07-08 08:17:03.021696 mef 2093 R rec 0f6bfa3e-b210-482c-8667-025672cb7666 -2023-07-08 08:17:03.087499 2023-07-08 08:17:03.087504 mef 2094 R rec 9e3cad65-cf38-420e-8bb7-975e8f56298a -2023-07-08 08:17:03.152257 2023-07-08 08:17:03.152261 mef 2095 R rec fa9f514e-48ea-47e7-ab33-323c40b354b2 -2023-07-08 08:17:03.226368 2023-07-08 08:17:03.226372 mef 2096 R rec 4a751381-d8ee-4fee-9de4-ae1655b04494 -2023-07-08 08:17:03.323081 2023-07-08 08:17:03.323086 mef 2097 R rec 6f851c1c-3b7f-42d2-a37a-d8ef973f4b99 -2023-07-08 08:17:03.431908 2023-07-08 08:17:03.431922 mef 2098 R rec f4ce17aa-c6fa-4b8f-b743-d438730dd9a2 -2023-07-08 08:17:03.526377 2023-07-08 08:17:03.526381 mef 2099 R rec 82c29429-cae0-4d98-91cf-27f6bdf0a009 -2023-07-08 08:17:03.595865 2023-07-08 08:17:03.595871 mef 2100 R rec 77145721-a568-40ed-a45f-95561998e7e6 -2023-07-08 08:17:03.670772 2023-07-08 08:17:03.670781 mef 2101 R rec 25f71648-5025-4490-b078-e2f6b80d9d8f -2023-07-08 08:17:03.774737 2023-07-08 08:17:03.774747 mef 2102 R rec 5fb9e6d9-31f6-4386-8c6a-8ab7ed992a05 -2023-07-08 08:17:03.869549 2023-07-08 08:17:03.869554 mef 2103 R rec 734b9bb7-bfc6-4bff-b6ef-11cf868a1eb3 -2023-07-08 08:17:03.977466 2023-07-08 08:17:03.977476 mef 2104 R rec 2ab121e0-7b44-4e9d-8c97-87d157bfe258 -2023-07-08 08:17:04.084255 2023-07-08 08:17:04.084266 mef 2105 R rec 99ee9a56-0fcf-481f-a114-fdda4dd1f475 -2023-07-08 08:17:04.166136 2023-07-08 08:17:04.16615 mef 2106 R rec e7d7f20b-149c-4c86-94b9-81a412070222 -2023-07-08 08:17:04.253503 2023-07-08 08:17:04.253515 mef 2107 R rec f3227cf3-dc23-45dd-b9c4-2af4faa0e915 -2023-07-08 08:17:04.354267 2023-07-08 08:17:04.354277 mef 2108 R rec 154a198f-444e-443b-bf1f-ed022cd7fe7e -2023-07-08 08:17:04.457631 2023-07-08 08:17:04.457646 mef 2109 R rec 02b163dd-f095-41c8-bf99-5c28c8098583 -2023-07-08 08:17:04.576417 2023-07-08 08:17:04.576429 mef 2110 R rec 80a7ea2f-89be-4916-93ce-4054d4afef73 -2023-07-08 08:17:04.657198 2023-07-08 08:17:04.657204 mef 2111 R rec d450552e-0f14-4e50-ad48-581472f8b7c1 -2023-07-08 08:17:04.763278 2023-07-08 08:17:04.763287 mef 2112 R rec 9e4e21ea-dbb7-4238-b242-2eee162477ec -2023-07-08 08:17:04.867282 2023-07-08 08:17:04.867301 mef 2113 R rec ee9d57c0-c578-4a46-b86b-c93ca555b72d -2023-07-08 08:17:04.980848 2023-07-08 08:17:04.980857 mef 2114 R rec 3e9d04d9-c7a1-40c5-9b1c-b00e3da459f6 -2023-07-08 08:17:05.079991 2023-07-08 08:17:05.080001 mef 2115 R rec a0c54bc9-6216-4b8a-8b47-1ff9df528871 -2023-07-08 08:17:05.198059 2023-07-08 08:17:05.198064 mef 2116 R rec 98f37c16-24e5-4d3c-9364-baedcd595167 -2023-07-08 08:17:05.30081 2023-07-08 08:17:05.300822 mef 2117 R rec 25b2f4ff-dfa0-49b3-9d40-1bfc6b303821 -2023-07-08 08:17:05.386091 2023-07-08 08:17:05.386101 mef 2118 R rec 1d9defe4-11ca-4a63-83d1-4c8e9aa5fa92 -2023-07-08 08:17:05.470122 2023-07-08 08:17:05.470131 mef 2119 R rec cf02992f-e7ae-41f6-bf42-26d527832e68 -2023-07-08 08:17:05.573394 2023-07-08 08:17:05.573407 mef 2120 R rec 1191481a-464a-4fc3-a3a1-f24aa95850f0 -2023-07-08 08:17:05.652882 2023-07-08 08:17:05.652887 mef 2121 R rec 564cf9a3-92ed-4556-8f15-6b7f71b3ff66 -2023-07-08 08:17:05.763409 2023-07-08 08:17:05.763426 mef 2122 R rec d9238111-4e7b-44ea-bb42-8c4a982e10ab -2023-07-08 08:17:05.854834 2023-07-08 08:17:05.854846 mef 2123 R rec a72ce6ad-66ba-4bc9-8c28-3fc971673a3f -2023-07-08 08:17:05.953268 2023-07-08 08:17:05.953273 mef 2124 R rec 43e7ab71-774d-4141-bcc0-04b374a33612 -2023-07-08 08:17:06.039115 2023-07-08 08:17:06.039125 mef 2125 R rec 0d6d35c6-7544-4a4b-8e4d-3b4a55d605e0 -2023-07-08 08:17:06.124884 2023-07-08 08:17:06.124888 mef 2126 R rec d902f39c-0ccf-43a8-8e5c-ced7dfb2806b -2023-07-08 08:17:06.205258 2023-07-08 08:17:06.205264 mef 2127 R rec b01de9a2-1f73-4e58-8fd3-f5ee21890288 -2023-07-08 08:17:06.33827 2023-07-08 08:17:06.33828 mef 2128 R rec efa250c9-a9b7-4f51-931c-a065b443b893 -2023-07-08 08:17:06.428677 2023-07-08 08:17:06.428687 mef 2129 R rec 9962c1d0-4a9d-4f82-a38b-9a4546206d9d -2023-07-08 08:17:06.52857 2023-07-08 08:17:06.528581 mef 2130 R rec 6333b596-75e6-4c68-840c-5cb2a56e0620 -2023-07-08 08:17:06.616568 2023-07-08 08:17:06.616576 mef 2131 R rec c0364149-af3a-415f-ae0f-ca6373c17a03 -2023-07-08 08:17:06.700901 2023-07-08 08:17:06.70091 mef 2132 R rec 700bc770-5d21-4be8-975d-38b5e88017f8 -2023-07-08 08:17:06.791412 2023-07-08 08:17:06.791417 mef 2133 R rec 618ec2d3-1ec2-4460-90ef-42bc2ca07419 -2023-07-08 08:17:06.889255 2023-07-08 08:17:06.889264 mef 2134 R rec 51c72ab3-c4b6-4c7b-9020-0e72f464e146 -2023-07-08 08:17:06.983955 2023-07-08 08:17:06.983969 mef 2135 R rec 0ca81994-43d6-4e24-b4c3-ee69ef45f654 -2023-07-08 08:17:07.080627 2023-07-08 08:17:07.080632 mef 2136 R rec 37f13639-6a2a-4a1b-924e-38c3a2a87197 -2023-07-08 08:17:07.164164 2023-07-08 08:17:07.164169 mef 2137 R rec c0a6ada5-d6b1-4cc1-baca-a451ff5128e0 -2023-07-08 08:17:07.26177 2023-07-08 08:17:07.26178 mef 2138 R rec 31956810-be71-4367-9209-571bd6ec0aaf -2023-07-08 08:17:07.367714 2023-07-08 08:17:07.367732 mef 2139 R rec dd028a11-1b1b-43c4-b279-89d5e6d8430a -2023-07-08 08:17:07.467509 2023-07-08 08:17:07.467523 mef 2140 R rec 548ef97a-e474-45e2-8a79-a9741ce4d4ef -2023-07-08 08:17:07.583888 2023-07-08 08:17:07.583901 mef 2141 R rec 0403a4dc-fdc2-4eb4-89a8-d40d704c94f5 -2023-07-08 08:17:07.652368 2023-07-08 08:17:07.652373 mef 2142 R rec 20b468c3-0070-401d-8e6d-cc8968007049 -2023-07-08 08:17:07.73543 2023-07-08 08:17:07.735442 mef 2143 R rec c9d9a8ae-f7e6-419f-85fb-7493c2b8cce7 -2023-07-08 08:17:07.811872 2023-07-08 08:17:07.811875 mef 2144 R rec 49950e8f-c3ae-422b-9c3d-ba87987af996 -2023-07-08 08:17:07.90757 2023-07-08 08:17:07.907581 mef 2145 R rec 6b799f45-3d5f-4eae-bb36-cdac4a49a1bd -2023-07-08 08:17:08.001653 2023-07-08 08:17:08.001658 mef 2146 R rec fe72f950-ef58-4088-aab3-400bb14fc171 -2023-07-08 08:17:08.110204 2023-07-08 08:17:08.110216 mef 2147 R rec 36af49c1-9489-4c4c-b77e-928d6f422f74 -2023-07-08 08:17:08.198184 2023-07-08 08:17:08.198194 mef 2148 R rec 1ab4ae6f-8041-40e1-b7ed-709c4d26ef38 -2023-07-08 08:17:08.297873 2023-07-08 08:17:08.297885 mef 2149 R rec 494d2ec3-0190-432c-a7af-5def5e45987c -2023-07-08 08:17:08.395879 2023-07-08 08:17:08.395892 mef 2150 R rec 3a6a7ec5-d811-483e-8396-fd9b77b29f47 -2023-07-08 08:17:08.486987 2023-07-08 08:17:08.486997 mef 2151 R rec 3639b17b-014e-4575-ac39-79b4a6d938e0 -2023-07-08 08:17:08.569855 2023-07-08 08:17:08.56986 mef 2152 R rec b480c4ec-e62e-4cef-9ce9-0086f0313951 -2023-07-08 08:17:08.655282 2023-07-08 08:17:08.655287 mef 2153 R rec f0ca9c52-fadf-4408-b928-07eff15db84a -2023-07-08 08:17:08.744691 2023-07-08 08:17:08.744701 mef 2154 R rec d9d9e50d-df9d-4803-8d9d-cf34b6c15277 -2023-07-08 08:17:08.843796 2023-07-08 08:17:08.843801 mef 2155 R rec d77c98cf-b430-4d48-98a1-c352a61be474 -2023-07-08 08:17:08.930648 2023-07-08 08:17:08.930659 mef 2156 R rec b946a764-96b1-4aee-bd94-d2fd5f3ca153 -2023-07-08 08:17:09.01429 2023-07-08 08:17:09.014296 mef 2157 R rec ffa8036a-cfbf-4918-b5d6-72a3a5ad6a00 -2023-07-08 08:17:09.10535 2023-07-08 08:17:09.105361 mef 2158 R rec 0ae091c3-5e72-4e39-af38-6ee660ea6477 -2023-07-08 08:17:09.190934 2023-07-08 08:17:09.190939 mef 2159 R rec 3194ad2f-9011-4884-bddc-4dd1db3173d8 -2023-07-08 08:17:09.288839 2023-07-08 08:17:09.288849 mef 2160 R rec 99de9464-970a-430a-a252-eb29fffcafef -2023-07-08 08:17:09.369067 2023-07-08 08:17:09.369072 mef 2161 R rec 93270d55-daef-41f8-bea3-c49f58cda9d7 -2023-07-08 08:17:09.438057 2023-07-08 08:17:09.438062 mef 2162 R rec e2216d3f-fbe6-4562-b507-b89ff867160c -2023-07-08 08:17:09.510734 2023-07-08 08:17:09.510739 mef 2163 R rec bb33eb91-d035-4bc6-8619-401b1f8897df -2023-07-08 08:17:09.578319 2023-07-08 08:17:09.578324 mef 2164 R rec b6450683-45a4-4257-8f75-e9c2cdc74089 -2023-07-08 08:17:09.645471 2023-07-08 08:17:09.645476 mef 2165 R rec 84e44d44-bbc3-46ec-8a43-3fc93a47dc09 -2023-07-08 08:17:09.720926 2023-07-08 08:17:09.720931 mef 2166 R rec 7047b6e8-c085-4c61-bd8a-3110749dc455 -2023-07-08 08:17:09.81407 2023-07-08 08:17:09.814075 mef 2167 R rec 21b0dae9-707a-47ad-8a4a-22d2314e7338 -2023-07-08 08:17:09.888289 2023-07-08 08:17:09.888305 mef 2168 R rec 594e024c-14df-4ec2-9e99-5ad0595a8650 -2023-07-08 08:17:09.979087 2023-07-08 08:17:09.979097 mef 2169 R rec ff8be52b-eeac-475a-b596-e841aab02084 -2023-07-08 08:17:10.090862 2023-07-08 08:17:10.090872 mef 2170 R rec fdb6099f-3791-47f6-9aa2-6c7c2efe185f -2023-07-08 08:17:10.18891 2023-07-08 08:17:10.18892 mef 2171 R rec fa658905-483f-452a-a156-8e5e79d0a6c4 -2023-07-08 08:17:10.297934 2023-07-08 08:17:10.297946 mef 2172 R rec 7523fdae-034c-4521-a59b-7d90de69a1e0 -2023-07-08 08:17:10.404783 2023-07-08 08:17:10.404797 mef 2173 R rec c8defd8e-984b-4c77-8a41-c3622caffa28 -2023-07-08 08:17:10.517583 2023-07-08 08:17:10.517596 mef 2174 R rec 05a5fc3f-0ae7-4001-be16-3954c621ad15 -2023-07-08 08:17:10.611909 2023-07-08 08:17:10.611919 mef 2175 R rec 1fd3d02d-c2fb-46ad-9209-19c8a65d3646 -2023-07-08 08:17:10.716038 2023-07-08 08:17:10.71605 mef 2176 R rec 8da66392-1ad2-4926-9f68-a63b99dd015b -2023-07-08 08:17:10.846059 2023-07-08 08:17:10.846071 mef 2177 R rec 47a5c442-e0c6-4107-99fb-9e8a7b05900b -2023-07-08 08:17:10.926045 2023-07-08 08:17:10.926049 mef 2178 R rec 57afcdf1-5690-445c-8457-74254df3a4ae -2023-07-08 08:17:11.010069 2023-07-08 08:17:11.010079 mef 2179 R rec 82796e83-2b36-438b-bc66-ac44db03d5bb -2023-07-08 08:17:11.102138 2023-07-08 08:17:11.102148 mef 2180 R rec 9e73c914-5235-44fb-8722-1e1381dc3f21 -2023-07-08 08:17:11.188803 2023-07-08 08:17:11.188814 mef 2181 R rec 154ff009-516c-4920-96d6-9cc2e04eab41 -2023-07-08 08:17:11.283093 2023-07-08 08:17:11.283103 mef 2182 R rec e47e401e-074c-4972-96e0-859f508ce11d -2023-07-08 08:17:11.372157 2023-07-08 08:17:11.372166 mef 2183 R rec 68fc5dd7-afe5-492e-8e3a-0967908bdf04 -2023-07-08 08:17:11.457597 2023-07-08 08:17:11.457611 mef 2184 R rec 0764ddc6-b487-47c4-91b7-3c4b539d06a8 -2023-07-08 08:17:11.539094 2023-07-08 08:17:11.539099 mef 2185 R rec b8c160f7-28c1-4185-9f64-07e9e26206a5 -2023-07-08 08:17:11.614108 2023-07-08 08:17:11.614121 mef 2186 R rec 86bae233-df48-4880-ae18-8d6a5b09502d -2023-07-08 08:17:11.705275 2023-07-08 08:17:11.705288 mef 2187 R rec 1861a55e-b8c9-4471-933b-62b5c53dfff6 -2023-07-08 08:17:11.797601 2023-07-08 08:17:11.797611 mef 2188 R rec b07e0bc1-08a6-4d4e-81e6-0afb5b862903 -2023-07-08 08:17:11.885788 2023-07-08 08:17:11.885798 mef 2189 R rec 3cad9b8b-c9c1-4e2d-87e2-bb019ef92786 -2023-07-08 08:17:11.969924 2023-07-08 08:17:11.969934 mef 2190 R rec c733face-39e0-4990-bdd9-af137d91049d -2023-07-08 08:17:12.061467 2023-07-08 08:17:12.061479 mef 2191 R rec 16d9f740-d045-42cb-b634-873a570e6c80 -2023-07-08 08:17:12.160893 2023-07-08 08:17:12.160903 mef 2192 R rec ae8dc7db-3bf4-4bc0-8e99-3ba61dde1516 -2023-07-08 08:17:12.261627 2023-07-08 08:17:12.261641 mef 2193 R rec 281ded88-1b08-4775-a507-e4ee120fb4b5 -2023-07-08 08:17:12.385594 2023-07-08 08:17:12.385602 mef 2194 R rec 4ee35b77-3b35-48f3-ab40-653ec974dbfa -2023-07-08 08:17:12.483175 2023-07-08 08:17:12.483184 mef 2195 R rec 27bec754-7539-4cdd-bb64-b0a8d64d1652 -2023-07-08 08:17:12.574339 2023-07-08 08:17:12.574344 mef 2196 R rec ce59ad7a-5044-464e-b496-653dabfccba4 -2023-07-08 08:17:12.646939 2023-07-08 08:17:12.646943 mef 2197 R rec e9beae6d-c394-4673-be8c-9d2b6652ca94 -2023-07-08 08:17:12.736811 2023-07-08 08:17:12.736821 mef 2198 R rec 26830be3-1c98-4b70-ac3a-61224f636639 -2023-07-08 08:17:12.816439 2023-07-08 08:17:12.816444 mef 2199 R rec c015b9a4-8c91-41db-8053-2874409281e3 -2023-07-08 08:17:12.89083 2023-07-08 08:17:12.89084 mef 2200 R rec 5caa5385-0fb5-46b3-8668-5baddccd1266 -2023-07-08 08:17:12.970776 2023-07-08 08:17:12.970781 mef 2201 R rec 083d4295-103e-40be-ace8-37383b4ea439 -2023-07-08 08:17:13.054657 2023-07-08 08:17:13.054669 mef 2202 R rec 2c3e1463-bf49-4918-90b9-e3271b50a008 -2023-07-08 08:17:13.149913 2023-07-08 08:17:13.149924 mef 2203 R rec b69e5d55-aec3-4e1a-a733-eb06a2f85a47 -2023-07-08 08:17:13.252689 2023-07-08 08:17:13.252703 mef 2204 R rec 2486922f-9983-45cb-92d8-5b76debfa96d -2023-07-08 08:17:13.34972 2023-07-08 08:17:13.349732 mef 2205 R rec 72882234-fd7d-4f43-8689-fafbe7ed470a -2023-07-08 08:17:13.431941 2023-07-08 08:17:13.431946 mef 2206 R rec 05f25a9f-9597-4637-be61-cff13128da99 -2023-07-08 08:17:13.519252 2023-07-08 08:17:13.519267 mef 2207 R rec 97b7fb28-3244-4dc0-8470-cd1d71996ca5 -2023-07-08 08:17:13.607032 2023-07-08 08:17:13.607045 mef 2208 R rec 84597077-5421-496a-914f-4fda5e637275 -2023-07-08 08:17:13.697897 2023-07-08 08:17:13.697908 mef 2209 R rec 27c276d4-895a-4ad8-a8d5-7e4e8fe99090 -2023-07-08 08:17:13.79006 2023-07-08 08:17:13.790069 mef 2210 R rec 7ad5d0ba-8afa-4c9d-bc70-f0e32f6a1132 -2023-07-08 08:17:13.900628 2023-07-08 08:17:13.900643 mef 2211 R rec d5581218-9cf2-4bc6-8d26-a525aa50755f -2023-07-08 08:17:13.995192 2023-07-08 08:17:13.995204 mef 2212 R rec 3e975f9b-e1ae-401d-afd4-5c4be246a3fd -2023-07-08 08:17:14.102431 2023-07-08 08:17:14.102441 mef 2213 R rec 1278c071-820c-43f7-b904-9e6aa6843bcb -2023-07-08 08:17:14.185458 2023-07-08 08:17:14.185471 mef 2214 R rec dc929f23-6ea8-40f7-af91-5e80b8ee7dbd -2023-07-08 08:17:14.279128 2023-07-08 08:17:14.27914 mef 2215 R rec 2e18ca4e-871c-4b02-91a4-ce43576e1a36 -2023-07-08 08:17:14.367371 2023-07-08 08:17:14.367376 mef 2216 R rec 65608ef0-a804-4f26-b87c-7820e3125f58 -2023-07-08 08:17:14.458887 2023-07-08 08:17:14.458898 mef 2217 R rec f0cd7ef0-1c21-4064-a068-26e3bc5c2ad9 -2023-07-08 08:17:14.558335 2023-07-08 08:17:14.558347 mef 2218 R rec d365cd66-bfa4-41ea-99fa-90bcb38fa88d -2023-07-08 08:17:14.642799 2023-07-08 08:17:14.642804 mef 2219 R rec ac6f4540-82d4-4aa1-a345-bcdc8f836b59 -2023-07-08 08:17:14.726583 2023-07-08 08:17:14.726594 mef 2220 R rec dc021966-70e8-445a-83ac-b8a256429fc3 -2023-07-08 08:17:14.801277 2023-07-08 08:17:14.801282 mef 2221 R rec 5471469d-ba21-4e52-9ed4-bb61f84be309 -2023-07-08 08:17:14.8706 2023-07-08 08:17:14.870607 mef 2222 R rec 04f8c04b-b7db-4a31-adbd-18871d253382 -2023-07-08 08:17:14.950732 2023-07-08 08:17:14.950737 mef 2223 R rec 61f77250-fb1c-4ea2-a588-d5c65a61b6c3 -2023-07-08 08:17:15.036463 2023-07-08 08:17:15.036468 mef 2224 R rec d2b12847-574c-49fb-8b7b-b015604f7e19 -2023-07-08 08:17:15.122288 2023-07-08 08:17:15.122296 mef 2225 R rec f747245b-5a1d-4998-91bf-733fad26f93a -2023-07-08 08:17:15.195814 2023-07-08 08:17:15.195819 mef 2226 R rec e49ac569-e8ea-4739-a851-3e79c5398e48 -2023-07-08 08:17:15.272412 2023-07-08 08:17:15.272417 mef 2227 R rec 850f5854-162d-40f1-81f6-e0115f73b4cd -2023-07-08 08:17:15.362451 2023-07-08 08:17:15.36246 mef 2228 R rec d402efe5-8e7a-4728-8802-a2254f2ee88b -2023-07-08 08:17:15.468772 2023-07-08 08:17:15.468784 mef 2229 R rec bb1dc09c-36c3-435d-899f-abb752acc2c8 -2023-07-08 08:17:15.555965 2023-07-08 08:17:15.555977 mef 2230 R rec bdb2e9c9-9c5e-4c73-bc73-9c2b1fbdc8a2 -2023-07-08 08:17:15.630932 2023-07-08 08:17:15.630937 mef 2231 R rec 6d450264-53b3-4be4-87be-1c50e8a0f974 -2023-07-08 08:17:15.727244 2023-07-08 08:17:15.727256 mef 2232 R rec b85bd6d0-5b76-4168-a9fb-a5f89ae0214d -2023-07-08 08:17:15.820204 2023-07-08 08:17:15.820215 mef 2233 R rec a75b4a30-af6c-4917-9cbc-c86514402187 -2023-07-08 08:17:15.91308 2023-07-08 08:17:15.91309 mef 2234 R rec 1125e111-7bf9-4e86-9b40-4aa3d6127322 -2023-07-08 08:17:16.006633 2023-07-08 08:17:16.006649 mef 2235 R rec 620944d6-eed7-41a3-90a5-483f0fdb7a72 -2023-07-08 08:17:16.112333 2023-07-08 08:17:16.112344 mef 2236 R rec 991a0e63-e0af-411c-8e25-e628ce0ca3ca -2023-07-08 08:17:16.202732 2023-07-08 08:17:16.202747 mef 2237 R rec e2bd6504-444d-457f-aa12-235d86152b2a -2023-07-08 08:17:16.311446 2023-07-08 08:17:16.311457 mef 2238 R rec 56893997-7811-4047-bfa9-bd9f3ae2bd6d -2023-07-08 08:17:16.403029 2023-07-08 08:17:16.403037 mef 2239 R rec 7c9bdbd5-a3ac-45ab-970e-812786be9757 -2023-07-08 08:17:16.492688 2023-07-08 08:17:16.4927 mef 2240 R rec ef4e1286-58b0-4917-9444-505cbc228ddc -2023-07-08 08:17:16.600705 2023-07-08 08:17:16.600714 mef 2241 R rec 10d6fd3f-cba8-4d9f-891f-f40f0d957698 -2023-07-08 08:17:16.721713 2023-07-08 08:17:16.721727 mef 2242 R rec 1775a4d5-fa1e-4d19-83c0-c6f85b6c5447 -2023-07-08 08:17:16.815445 2023-07-08 08:17:16.815457 mef 2243 R rec 2d106ce3-8661-4438-ac77-848bdb885851 -2023-07-08 08:17:16.930489 2023-07-08 08:17:16.930502 mef 2244 R rec c3c97df9-bd30-48d2-8ab3-e361d36c6006 -2023-07-08 08:17:17.022349 2023-07-08 08:17:17.022359 mef 2245 R rec e65eef6e-4413-4515-8324-0682a7fff907 -2023-07-08 08:17:17.126144 2023-07-08 08:17:17.12615 mef 2246 R rec bdfc64f8-6eb6-49a2-b162-804d1c9b878b -2023-07-08 08:17:17.234007 2023-07-08 08:17:17.234012 mef 2247 R rec c79c2a07-14a3-46f2-bd37-ec69e77965c5 -2023-07-08 08:17:17.338238 2023-07-08 08:17:17.338248 mef 2248 R rec d8ed7172-156e-4baf-9a7c-9b6245537cbd -2023-07-08 08:17:17.446413 2023-07-08 08:17:17.446428 mef 2249 R rec 3c8810c8-7e50-4372-bd05-89203381b4eb -2023-07-08 08:17:17.562231 2023-07-08 08:17:17.562241 mef 2250 R rec 95b1086d-68ac-4850-98be-f5f2f01b3182 -2023-07-08 08:17:17.688915 2023-07-08 08:17:17.688929 mef 2251 R rec cf98cbd5-959d-4697-9575-06d8b81bae9f -2023-07-08 08:17:17.775625 2023-07-08 08:17:17.775635 mef 2252 R rec 8d895822-cada-4bc3-b116-3128bae7a3e7 -2023-07-08 08:17:17.869254 2023-07-08 08:17:17.869264 mef 2253 R rec 5cc1d698-c751-4076-a30c-d6c8946e8db9 -2023-07-08 08:17:17.961497 2023-07-08 08:17:17.961512 mef 2254 R rec a552ac02-9aaa-42d3-9264-31530333bc42 -2023-07-08 08:17:18.066787 2023-07-08 08:17:18.066801 mef 2255 R rec f2d85bcd-0ed7-4c2d-8069-4859d2494dd6 -2023-07-08 08:17:18.15552 2023-07-08 08:17:18.155534 mef 2256 R rec 2287dda6-a1a5-4872-82db-c5966cdd8cc7 -2023-07-08 08:17:18.242306 2023-07-08 08:17:18.242316 mef 2257 R rec aaf2d7a8-6b9f-480f-b41f-ce2c8836133a -2023-07-08 08:17:18.342776 2023-07-08 08:17:18.342791 mef 2258 R rec f0d04f68-deb3-4fdf-b95d-f86143689eaa -2023-07-08 08:17:18.421645 2023-07-08 08:17:18.42165 mef 2259 R rec ecfe081c-547a-4e7a-86db-2546e642c5d8 -2023-07-08 08:17:18.499222 2023-07-08 08:17:18.499227 mef 2260 R rec 8c5477cd-145d-4fbb-bc39-c11c6175b83b -2023-07-08 08:17:18.601589 2023-07-08 08:17:18.6016 mef 2261 R rec 1c38911d-4502-49cb-883b-fde7be6c4f70 -2023-07-08 08:17:18.693272 2023-07-08 08:17:18.693283 mef 2262 R rec 22dd5359-62d9-49de-92ac-cadda6aa3096 -2023-07-08 08:17:18.785042 2023-07-08 08:17:18.785046 mef 2263 R rec 078daf88-d4ee-40a3-bdb0-3b2bc4037177 -2023-07-08 08:17:18.87169 2023-07-08 08:17:18.871695 mef 2264 R rec 162fb2a9-a7b1-4e75-94b2-95477b2066a9 -2023-07-08 08:17:18.955423 2023-07-08 08:17:18.955433 mef 2265 R rec 30d8bbee-c0af-4fd9-a59d-6290635a613e -2023-07-08 08:17:19.045358 2023-07-08 08:17:19.045363 mef 2266 R rec 28493ebc-8472-4d94-bb1b-2329558ae1e4 -2023-07-08 08:17:19.119255 2023-07-08 08:17:19.11926 mef 2267 R rec 2be8c5e6-1a8b-41b7-9a0e-d33c9cf85b34 -2023-07-08 08:17:19.20464 2023-07-08 08:17:19.204644 mef 2268 R rec dcf16f74-543f-45ac-b3c5-6dd32e81fbc1 -2023-07-08 08:17:19.29876 2023-07-08 08:17:19.298766 mef 2269 R rec 3dba44fd-9528-4992-a00f-17d485d5ece6 -2023-07-08 08:17:19.403258 2023-07-08 08:17:19.403268 mef 2270 R rec e7cb6353-28bf-45f9-b797-7d79256d1f3b -2023-07-08 08:17:19.506648 2023-07-08 08:17:19.506664 mef 2271 R rec 26038213-2d39-41b2-86df-147347168e34 -2023-07-08 08:17:19.625604 2023-07-08 08:17:19.62561 mef 2272 R rec e3476761-e1d8-43b1-80cc-f52517b349d6 -2023-07-08 08:17:19.718046 2023-07-08 08:17:19.718057 mef 2273 R rec 41f86b8d-4e7c-45c5-bf4d-8dbbe9d22a5b -2023-07-08 08:17:19.814561 2023-07-08 08:17:19.814574 mef 2274 R rec a300b70b-d175-4a45-927e-f4b20cfe445d -2023-07-08 08:17:19.907803 2023-07-08 08:17:19.907813 mef 2275 R rec a7d39cc8-11ca-4cb3-bdbb-f61a4f15c494 -2023-07-08 08:17:19.997407 2023-07-08 08:17:19.997416 mef 2276 R rec b5ecca90-2ec0-4f22-bd55-b07594f7f046 -2023-07-08 08:17:20.092271 2023-07-08 08:17:20.092286 mef 2277 R rec 5468dd64-6cb9-4e63-9388-3531b18b672f -2023-07-08 08:17:20.168345 2023-07-08 08:17:20.168352 mef 2278 R rec f56d6e23-298e-4e8a-8e6b-df1167171351 -2023-07-08 08:17:20.260372 2023-07-08 08:17:20.260381 mef 2279 R rec 3aa4ab5c-6432-40ce-bdc7-6cf25b0da001 -2023-07-08 08:17:20.365343 2023-07-08 08:17:20.365357 mef 2280 R rec 0ce047a7-933d-4237-a6dd-0d6fe4b65f9f -2023-07-08 08:17:20.463208 2023-07-08 08:17:20.463217 mef 2281 R rec 1ddfa0c3-60b3-4f6d-9d58-948635ff4092 -2023-07-08 08:17:20.542697 2023-07-08 08:17:20.542703 mef 2282 R rec 186abb96-589e-47dc-8f20-ac16beb064c3 -2023-07-08 08:17:20.613681 2023-07-08 08:17:20.613686 mef 2283 R rec 11c31ac9-7db6-4ccc-a102-4bf19dc20a57 -2023-07-08 08:17:20.682557 2023-07-08 08:17:20.682567 mef 2284 R rec b907a1a7-1a87-409f-9bbb-97328e8e9d28 -2023-07-08 08:17:20.769074 2023-07-08 08:17:20.769083 mef 2285 R rec 536aac09-3435-4b75-a674-7f762f2d41bc -2023-07-08 08:17:20.854201 2023-07-08 08:17:20.854204 mef 2286 R rec 67b808f7-0415-40f6-95ec-c492fa372c96 -2023-07-08 08:17:20.923275 2023-07-08 08:17:20.92328 mef 2287 R rec f5c8a3ce-3694-41e5-9a06-de27bb52cda3 -2023-07-08 08:17:21.009139 2023-07-08 08:17:21.009152 mef 2288 R rec db780e31-ecb4-4dfc-80b7-16c5bf7d599a -2023-07-08 08:17:21.103023 2023-07-08 08:17:21.103033 mef 2289 R rec f7f7e05a-4506-4017-a88e-212b678e5a82 -2023-07-08 08:17:21.182627 2023-07-08 08:17:21.182636 mef 2290 R rec b8e1c883-8e2e-4dbe-849c-e603d827232f -2023-07-08 08:17:21.277133 2023-07-08 08:17:21.277149 mef 2291 R rec 7e9c8098-adad-4333-8793-155736d569bf -2023-07-08 08:17:21.382533 2023-07-08 08:17:21.382538 mef 2292 R rec da3cc7d7-292e-4220-beec-368286ed01a2 -2023-07-08 08:17:21.473532 2023-07-08 08:17:21.473544 mef 2293 R rec 503d6198-ea5a-40a7-9237-ac9ce552a109 -2023-07-08 08:17:21.571438 2023-07-08 08:17:21.571451 mef 2294 R rec 4970eb67-0f89-42b6-85de-3a966e83aea6 -2023-07-08 08:17:21.655305 2023-07-08 08:17:21.65531 mef 2295 R rec f42b7a42-d305-41c7-a23b-5a3b4a284302 -2023-07-08 08:17:21.742562 2023-07-08 08:17:21.742571 mef 2296 R rec e4419e56-bcf4-4caa-9aff-7bc3dc9f0798 -2023-07-08 08:17:21.85068 2023-07-08 08:17:21.85069 mef 2297 R rec fd6f2e1a-b378-4c03-a34e-a8a495796f13 -2023-07-08 08:17:21.942326 2023-07-08 08:17:21.942337 mef 2298 R rec 27b84180-3e3e-48c0-98a7-48dbf6bef7e0 -2023-07-08 08:17:22.04435 2023-07-08 08:17:22.044362 mef 2299 R rec 3bf7f497-6f26-49b3-9c2d-e5a03320e569 -2023-07-08 08:17:22.137618 2023-07-08 08:17:22.137623 mef 2300 R rec d2a98884-1e41-4e95-b831-80ef4afe68a6 -2023-07-08 08:17:22.221123 2023-07-08 08:17:22.221138 mef 2301 R rec 7899a521-f2a5-4262-9564-29d5f6a437c4 -2023-07-08 08:17:22.303467 2023-07-08 08:17:22.303472 mef 2302 R rec 40cd3584-17a2-4292-8378-2e82c5391629 -2023-07-08 08:17:22.386821 2023-07-08 08:17:22.386831 mef 2303 R rec fe77e2f7-1bfb-4726-be11-0c647cf02b30 -2023-07-08 08:17:22.472932 2023-07-08 08:17:22.472944 mef 2304 R rec c21f17c3-2c48-42b7-bea0-08989bc88f07 -2023-07-08 08:17:22.563264 2023-07-08 08:17:22.563274 mef 2305 R rec 09107187-cd7d-4f23-b62b-a40a343e6c45 -2023-07-08 08:17:22.65552 2023-07-08 08:17:22.65553 mef 2306 R rec f7f8552d-68d4-44ee-8dd5-12164d5a5027 -2023-07-08 08:17:22.757395 2023-07-08 08:17:22.757408 mef 2307 R rec 7fd27c82-eaa6-4ec1-9dca-f18743f04bd8 -2023-07-08 08:17:22.857831 2023-07-08 08:17:22.857841 mef 2308 R rec d08630a0-156a-4b79-9774-dd63654d22dc -2023-07-08 08:17:22.950497 2023-07-08 08:17:22.950503 mef 2309 R rec 7f779f10-1e93-4690-81b6-99f626d81ba8 -2023-07-08 08:17:23.039986 2023-07-08 08:17:23.039997 mef 2310 R rec f732299b-94de-4c0f-9aac-b56e82241464 -2023-07-08 08:17:23.134371 2023-07-08 08:17:23.134377 mef 2311 R rec 9e5de06d-e1d8-4cb6-80de-a78b5767588b -2023-07-08 08:17:23.216202 2023-07-08 08:17:23.216218 mef 2312 R rec 80e7dfb5-52ee-42f6-ae7a-c6ca7d9a7d44 -2023-07-08 08:17:23.300027 2023-07-08 08:17:23.300035 mef 2313 R rec 51d95ce2-82d3-433b-be84-2c8132da79aa -2023-07-08 08:17:23.388664 2023-07-08 08:17:23.388673 mef 2314 R rec 3b218043-dbdc-4890-83c7-eef11921745d -2023-07-08 08:17:23.475599 2023-07-08 08:17:23.47561 mef 2315 R rec 713640b9-c0a8-4f7e-bd89-3a4559c17e9e -2023-07-08 08:17:23.573715 2023-07-08 08:17:23.573724 mef 2316 R rec 19f7a83d-67b8-4309-a059-72ccb427d659 -2023-07-08 08:17:23.666739 2023-07-08 08:17:23.666743 mef 2317 R rec 63b1b825-398e-406f-88c2-ba9b0807405a -2023-07-08 08:17:23.764082 2023-07-08 08:17:23.764097 mef 2318 R rec bd782a7d-1ae8-46e3-8569-5def0bfacc09 -2023-07-08 08:17:23.857237 2023-07-08 08:17:23.857246 mef 2319 R rec 35dc2314-20e4-4bca-b938-45fc257225a0 -2023-07-08 08:17:23.955089 2023-07-08 08:17:23.9551 mef 2320 R rec bc59836b-ff8a-479b-8391-aeeee2248826 -2023-07-08 08:17:24.057019 2023-07-08 08:17:24.057029 mef 2321 R rec e3a6649f-3126-4e38-ad6c-42d911d609d5 -2023-07-08 08:17:24.140026 2023-07-08 08:17:24.140031 mef 2322 R rec ce6fda7f-473c-4629-92ec-4d6b91977e87 -2023-07-08 08:17:24.224051 2023-07-08 08:17:24.224063 mef 2323 R rec 87d6013c-2d15-4b38-b7dd-6b09955e0d3a -2023-07-08 08:17:24.307932 2023-07-08 08:17:24.307943 mef 2324 R rec c9e9a0d6-7ebc-407d-b591-514a966a50b2 -2023-07-08 08:17:24.399209 2023-07-08 08:17:24.39922 mef 2325 R rec 3e23bd13-3f37-41a1-b4cb-4fd9b7a745ce -2023-07-08 08:17:24.49004 2023-07-08 08:17:24.49005 mef 2326 R rec 74d59f81-c97e-41ee-a740-c3c09486dd91 -2023-07-08 08:17:24.594707 2023-07-08 08:17:24.594717 mef 2327 R rec a73e3ada-e8c7-4bec-bc75-a3880f0d5a78 -2023-07-08 08:17:24.675147 2023-07-08 08:17:24.675154 mef 2328 R rec 545184f2-d3ac-41fe-8713-3dd3aa76ccbd -2023-07-08 08:17:24.757332 2023-07-08 08:17:24.757342 mef 2329 R rec a5611eaa-9107-45f0-8f01-c718c81cbafc -2023-07-08 08:17:24.855099 2023-07-08 08:17:24.855113 mef 2330 R rec c9474f33-f275-4714-9c01-680db2a105d8 -2023-07-08 08:17:24.939456 2023-07-08 08:17:24.939461 mef 2331 R rec 26a093e7-d681-45e8-9919-e08136536d84 -2023-07-08 08:17:25.028329 2023-07-08 08:17:25.028342 mef 2332 R rec 2ade0da3-29b5-46f5-a46c-12811ee38c17 -2023-07-08 08:17:25.13388 2023-07-08 08:17:25.133885 mef 2333 R rec 5bf51858-112a-448d-82e0-0d26c766af22 -2023-07-08 08:17:25.218184 2023-07-08 08:17:25.218189 mef 2334 R rec 569863d1-00f3-45c5-91db-b937445ebbc2 -2023-07-08 08:17:25.30039 2023-07-08 08:17:25.3004 mef 2335 R rec 9deb6c65-69df-4f63-844e-f5f46240b7b1 -2023-07-08 08:17:25.438772 2023-07-08 08:17:25.438781 mef 2336 R rec 5d4304ca-cf23-47ff-9f66-22ac84bb7425 -2023-07-08 08:17:25.529484 2023-07-08 08:17:25.529495 mef 2337 R rec 96a7db08-9063-46b8-82fc-a4d3cbb7aac4 -2023-07-08 08:17:25.631949 2023-07-08 08:17:25.63196 mef 2338 R rec 7a1953f8-5d33-4d43-ac1d-9658392448f1 -2023-07-08 08:17:25.737493 2023-07-08 08:17:25.737506 mef 2339 R rec 8788d922-36f6-414d-ac40-49d10d536732 -2023-07-08 08:17:25.823671 2023-07-08 08:17:25.823684 mef 2340 R rec 0f9963bb-d9e2-4ba8-ac82-831c6ff57c2c -2023-07-08 08:17:25.916569 2023-07-08 08:17:25.916579 mef 2341 R rec 151e2357-48f2-4ece-998f-d1920f7550b6 -2023-07-08 08:17:26.011955 2023-07-08 08:17:26.011968 mef 2342 R rec 18eaeb37-9aee-426b-868a-c28eea29302d -2023-07-08 08:17:26.116801 2023-07-08 08:17:26.116812 mef 2343 R rec 4c689330-5870-48c4-8101-6584caa22cb1 -2023-07-08 08:17:26.200851 2023-07-08 08:17:26.200862 mef 2344 R rec d969eefd-4158-4343-875f-76bb1ad37d7c -2023-07-08 08:17:26.300159 2023-07-08 08:17:26.300169 mef 2345 R rec 8417a119-45d6-4336-a68d-502b34b58986 -2023-07-08 08:17:26.393116 2023-07-08 08:17:26.393129 mef 2346 R rec aca7532c-1c1b-4420-96e8-a25676294385 -2023-07-08 08:17:26.495672 2023-07-08 08:17:26.495685 mef 2347 R rec 5b7b4788-ac44-449a-ab90-e3ff9706c884 -2023-07-08 08:17:26.581753 2023-07-08 08:17:26.581759 mef 2348 R rec 7d6aeeb3-540c-4b77-a0eb-2ee1fdfa09ed -2023-07-08 08:17:26.65848 2023-07-08 08:17:26.658485 mef 2349 R rec 83be7e90-0cf2-4277-a581-8d64dc67e697 -2023-07-08 08:17:26.739435 2023-07-08 08:17:26.739439 mef 2350 R rec 6e034715-61ba-48d2-9a85-395c082d8e2a -2023-07-08 08:17:26.807356 2023-07-08 08:17:26.807365 mef 2351 R rec 62304603-8447-4a08-9c20-422ca34c627f -2023-07-08 08:17:26.879095 2023-07-08 08:17:26.8791 mef 2352 R rec 829d5850-db2c-49aa-b5bb-78e5064d2785 -2023-07-08 08:17:26.949503 2023-07-08 08:17:26.94951 mef 2353 R rec d8cc61bf-8dd2-44f8-853d-84701ffb1bbd -2023-07-08 08:17:27.018654 2023-07-08 08:17:27.018659 mef 2354 R rec 61c4e374-aebb-4441-aced-32b59ac68816 -2023-07-08 08:17:27.085539 2023-07-08 08:17:27.085544 mef 2355 R rec 0e963f37-e2b9-43e0-979b-ac9f9ac00273 -2023-07-08 08:17:27.157795 2023-07-08 08:17:27.1578 mef 2356 R rec 59a9dd03-b876-4d12-9d9e-e93979f01e4d -2023-07-08 08:17:27.228821 2023-07-08 08:17:27.228825 mef 2357 R rec cb1cedc3-a2a4-4a90-b9e6-4562deb8ae96 -2023-07-08 08:17:27.309698 2023-07-08 08:17:27.309703 mef 2358 R rec 4bf43808-45be-4435-b053-562536e98a4d -2023-07-08 08:17:27.399862 2023-07-08 08:17:27.399871 mef 2359 R rec 9e84cc9e-695b-4569-8373-ee9b3f326f5d -2023-07-08 08:17:27.490914 2023-07-08 08:17:27.490926 mef 2360 R rec 9539adbe-f1a8-4744-b54a-3732bd5ff5ff -2023-07-08 08:17:27.589611 2023-07-08 08:17:27.58962 mef 2361 R rec 1417adfa-33b1-4d0e-908c-386c6c8e8c8d -2023-07-08 08:17:27.672909 2023-07-08 08:17:27.672918 mef 2362 R rec c2121d35-d882-408a-aded-6dbc2b1013eb -2023-07-08 08:17:27.759873 2023-07-08 08:17:27.759884 mef 2363 R rec d73128df-2ce2-4d0e-9c24-ed439bbe0192 -2023-07-08 08:17:27.846762 2023-07-08 08:17:27.846773 mef 2364 R rec 66f91234-da9e-4d32-871a-469df0dc2f70 -2023-07-08 08:17:27.928225 2023-07-08 08:17:27.928231 mef 2365 R rec d2414eaa-fc71-49b1-9085-a3305e838e13 -2023-07-08 08:17:28.017502 2023-07-08 08:17:28.017517 mef 2366 R rec 4b253778-02f0-46bd-86f9-31ed23238646 -2023-07-08 08:17:28.107969 2023-07-08 08:17:28.107975 mef 2367 R rec f36d20da-62a2-4b95-b1f6-c663b82e35be -2023-07-08 08:17:28.20996 2023-07-08 08:17:28.209972 mef 2368 R rec 632472e6-6ee4-4fa4-8440-19a7bff2523c -2023-07-08 08:17:28.298165 2023-07-08 08:17:28.298171 mef 2369 R rec 9066851a-0686-4461-b74a-2383c1878afd -2023-07-08 08:17:28.409989 2023-07-08 08:17:28.410007 mef 2370 R rec 53568c48-7f8f-48a8-9167-617533515d59 -2023-07-08 08:17:28.504558 2023-07-08 08:17:28.504572 mef 2371 R rec 98396d73-26c0-4842-a5ad-a9740d10dfc5 -2023-07-08 08:17:28.601823 2023-07-08 08:17:28.601833 mef 2372 R rec 025c2443-ad47-4892-aae2-db4bf910a942 -2023-07-08 08:17:28.689075 2023-07-08 08:17:28.689084 mef 2373 R rec 96543156-8a2a-4488-8bd1-c2f59ac0a291 -2023-07-08 08:17:28.778314 2023-07-08 08:17:28.77832 mef 2374 R rec 6dd6eae6-2029-464e-99b9-e2ac29e7aa99 -2023-07-08 08:17:28.895784 2023-07-08 08:17:28.895794 mef 2375 R rec 46a289ca-7b05-4ef7-acbb-c170e7c4cf71 -2023-07-08 08:17:28.998415 2023-07-08 08:17:28.998426 mef 2376 R rec 3dc510aa-543a-49e0-83ba-ef3b043f3080 -2023-07-08 08:17:29.103254 2023-07-08 08:17:29.103264 mef 2377 R rec d847c389-899d-49fa-b49f-c519110f1994 -2023-07-08 08:17:29.192775 2023-07-08 08:17:29.192781 mef 2378 R rec 0ed1ad78-25d5-4259-8b74-54f5e0d8c5f9 -2023-07-08 08:17:29.288215 2023-07-08 08:17:29.288225 mef 2379 R rec a5546f70-45aa-435d-b70c-46c80ab7233b -2023-07-08 08:17:29.376084 2023-07-08 08:17:29.37609 mef 2380 R rec a6be4562-7842-4549-b395-16b900fd722a -2023-07-08 08:17:29.465992 2023-07-08 08:17:29.466 mef 2381 R rec 835276fa-8c79-4e13-9124-0d4c50299814 -2023-07-08 08:17:29.559526 2023-07-08 08:17:29.559539 mef 2382 R rec 3125752c-c540-4e94-b440-6d0b07d91bf1 -2023-07-08 08:17:29.649686 2023-07-08 08:17:29.649693 mef 2383 R rec 239ca89c-085b-49d3-bbbc-2fba20d77e56 -2023-07-08 08:17:29.731035 2023-07-08 08:17:29.731044 mef 2384 R rec ccb0e58e-9162-41f0-9c51-ac2a4d69b6ad -2023-07-08 08:17:29.82368 2023-07-08 08:17:29.823694 mef 2385 R rec 73c3e769-86f2-48ff-91a5-ffed50063093 -2023-07-08 08:17:29.930227 2023-07-08 08:17:29.930242 mef 2386 R rec a1eceda7-e514-4dd3-959b-dbc27f7bd301 -2023-07-08 08:17:30.03625 2023-07-08 08:17:30.036261 mef 2387 R rec f4d4344b-5f7a-4d7a-9ea6-34120cfe88c6 -2023-07-08 08:17:30.125593 2023-07-08 08:17:30.125606 mef 2388 R rec 7212927b-29e1-4714-9ab7-93355c62796d -2023-07-08 08:17:30.216683 2023-07-08 08:17:30.216688 mef 2389 R rec bb7bda90-d3f5-4f8a-a7d0-2abc4bde9707 -2023-07-08 08:17:30.303925 2023-07-08 08:17:30.303929 mef 2390 R rec 33777702-b032-42a4-8b32-e52edada934b -2023-07-08 08:17:30.385183 2023-07-08 08:17:30.385189 mef 2391 R rec 5b90f61f-1d11-4d8d-a1bb-e479a7260ee6 -2023-07-08 08:17:30.468934 2023-07-08 08:17:30.46894 mef 2392 R rec 813e02a9-0883-4a20-a244-b2dbea70035e -2023-07-08 08:17:30.549148 2023-07-08 08:17:30.549154 mef 2393 R rec c8e87e94-ee69-4f8e-8b05-e8a34fdb2d00 -2023-07-08 08:17:30.623937 2023-07-08 08:17:30.623942 mef 2394 R rec 511a2209-de9e-4e0c-8520-60408c7df459 -2023-07-08 08:17:30.768659 2023-07-08 08:17:30.768667 mef 2395 R rec 21842518-4d83-427e-afec-89b8536cac11 -2023-07-08 08:17:30.845106 2023-07-08 08:17:30.845111 mef 2396 R rec 4d04c6f8-bc51-485b-8d57-3348d5078df5 -2023-07-08 08:17:30.933386 2023-07-08 08:17:30.933392 mef 2397 R rec 7f39cd97-4af8-48dd-8f2a-2dafe88b038b -2023-07-08 08:17:31.014429 2023-07-08 08:17:31.014434 mef 2398 R rec e45bc86a-54a8-4fc3-a464-227f2807ea7e -2023-07-08 08:17:31.09817 2023-07-08 08:17:31.098176 mef 2399 R rec 0350bc68-aa05-4f74-b5e0-077eda13032c -2023-07-08 08:17:31.178853 2023-07-08 08:17:31.178859 mef 2400 R rec 264928ee-311c-4a38-bc72-1719fd87cb77 -2023-07-08 08:17:31.253621 2023-07-08 08:17:31.253626 mef 2401 R rec c70743f9-fed7-43b1-a15a-bcb1b844ba0b -2023-07-08 08:17:31.328606 2023-07-08 08:17:31.328611 mef 2402 R rec 97f19708-38ce-4a5e-ac09-9fe3ebb6a2d5 -2023-07-08 08:17:31.39862 2023-07-08 08:17:31.398624 mef 2403 R rec e7419068-fa68-471f-b289-2235c5262ad9 -2023-07-08 08:17:31.481207 2023-07-08 08:17:31.481215 mef 2404 R rec f37e1aac-2184-4943-ac05-e46ece92c308 -2023-07-08 08:17:31.558832 2023-07-08 08:17:31.558839 mef 2405 R rec 9a6e1753-a9c6-4eb2-b52f-8cba3333b31f -2023-07-08 08:17:31.635891 2023-07-08 08:17:31.635896 mef 2406 R rec abff7939-2108-4dac-9aa4-60234e536cd4 -2023-07-08 08:17:31.707547 2023-07-08 08:17:31.707552 mef 2407 R rec 8a1ec3cc-a9d7-4b49-be5e-1556cc0f1526 -2023-07-08 08:17:31.779348 2023-07-08 08:17:31.779353 mef 2408 R rec 90393a88-45a5-4736-aa49-9208eaa90317 -2023-07-08 08:17:31.847753 2023-07-08 08:17:31.847756 mef 2409 R rec 1b42885c-100c-429e-8023-4f05391b1006 -2023-07-08 08:17:31.916765 2023-07-08 08:17:31.916769 mef 2410 R rec 169abbef-a5e9-4218-99bb-3d662705b7dc -2023-07-08 08:17:31.988126 2023-07-08 08:17:31.988131 mef 2411 R rec 603c85d2-c60e-4310-81f7-e6059f05be17 -2023-07-08 08:17:32.060789 2023-07-08 08:17:32.060793 mef 2412 R rec 2a405285-c617-4be5-ad0d-22fb0fe2cba9 -2023-07-08 08:17:32.130525 2023-07-08 08:17:32.13053 mef 2413 R rec a79aee90-8ba1-4961-a52c-1178b4f7fa0e -2023-07-08 08:17:32.198361 2023-07-08 08:17:32.198367 mef 2414 R rec dabb3a98-dc5d-4361-9327-ace35159bf9e -2023-07-08 08:17:32.26475 2023-07-08 08:17:32.264756 mef 2415 R rec 915c1199-fd64-4aa5-ac5a-be937f84dacb -2023-07-08 08:17:32.336738 2023-07-08 08:17:32.336744 mef 2416 R rec c8c9bc8d-8691-43d6-8bb6-3191c1b2aa3d -2023-07-08 08:17:32.420755 2023-07-08 08:17:32.420765 mef 2417 R rec da8640bc-7163-4367-8aff-caa5055f0e2d -2023-07-08 08:17:32.504975 2023-07-08 08:17:32.504979 mef 2418 R rec 7000b5c9-5de5-48be-a48f-1dd43df2b1af -2023-07-08 08:17:32.580284 2023-07-08 08:17:32.580288 mef 2419 R rec 6175e6da-285c-4525-ba60-7342fca96194 -2023-07-08 08:17:32.661509 2023-07-08 08:17:32.661516 mef 2420 R rec 03fb58c9-7ca5-4cc9-830d-89175bac30cc -2023-07-08 08:17:32.755557 2023-07-08 08:17:32.755572 mef 2421 R rec ee0fd35f-1593-4bcd-913e-588ab6179b41 -2023-07-08 08:17:32.848706 2023-07-08 08:17:32.84872 mef 2422 R rec 97cc7539-c26e-47fc-b646-56456d927ed8 -2023-07-08 08:17:32.936664 2023-07-08 08:17:32.936674 mef 2423 R rec 50c9562c-3740-474e-953a-ef935c5dcb8a -2023-07-08 08:17:33.0251 2023-07-08 08:17:33.025112 mef 2424 R rec 778cd9c5-0fb7-4274-9c8f-9ebc9d47e717 -2023-07-08 08:17:33.121913 2023-07-08 08:17:33.121926 mef 2425 R rec 9004fa9f-da3c-430d-a829-462044899e68 -2023-07-08 08:17:33.202165 2023-07-08 08:17:33.202175 mef 2426 R rec 992322bb-ac61-4467-ac45-1c198b5286d6 -2023-07-08 08:17:33.292596 2023-07-08 08:17:33.292607 mef 2427 R rec 0cd95431-c941-46d0-9a68-5a32d0594608 -2023-07-08 08:17:33.406431 2023-07-08 08:17:33.406444 mef 2428 R rec b64b7bcb-b96d-4294-b320-e5490e54083c -2023-07-08 08:17:33.505927 2023-07-08 08:17:33.505946 mef 2429 R rec cedf8a54-de99-4eb9-b7ee-e4f729484ac2 -2023-07-08 08:17:33.597725 2023-07-08 08:17:33.597735 mef 2430 R rec a1ebe7dc-a4a2-4648-85b0-af57cb2e16dc -2023-07-08 08:17:33.689079 2023-07-08 08:17:33.689089 mef 2431 R rec ba237c4f-c063-4196-8341-295cc0d83979 -2023-07-08 08:17:33.787518 2023-07-08 08:17:33.787533 mef 2432 R rec 5c579702-f4bf-404b-b2ee-7171e0317689 -2023-07-08 08:17:33.888215 2023-07-08 08:17:33.888224 mef 2433 R rec 83cdc175-4616-4d32-b9af-468da8f78b35 -2023-07-08 08:17:33.992653 2023-07-08 08:17:33.992664 mef 2434 R rec ccb86ba1-cf70-4039-926f-76bf03ed6303 -2023-07-08 08:17:34.102698 2023-07-08 08:17:34.102708 mef 2435 R rec 67a5b9c1-5457-4f7e-94ae-2f318c1972e2 -2023-07-08 08:17:34.18822 2023-07-08 08:17:34.188228 mef 2436 R rec c86b80f9-aca8-45f8-a8e6-14d576128227 -2023-07-08 08:17:34.271215 2023-07-08 08:17:34.271221 mef 2437 R rec 98dcfbfe-edf3-4cec-8a01-97fb3df21d49 -2023-07-08 08:17:34.3583 2023-07-08 08:17:34.35831 mef 2438 R rec b08d30b6-bd6f-45a9-b718-61db63e0ad15 -2023-07-08 08:17:34.433471 2023-07-08 08:17:34.433478 mef 2439 R rec dbd279c9-b832-4515-a642-8c847e430248 -2023-07-08 08:17:34.519746 2023-07-08 08:17:34.519758 mef 2440 R rec 1c1401d2-a93e-480b-9e22-c735f6ec5032 -2023-07-08 08:17:34.624254 2023-07-08 08:17:34.624267 mef 2441 R rec b06fac81-3f45-4e6d-965e-3086f31c9f18 -2023-07-08 08:17:34.697606 2023-07-08 08:17:34.697611 mef 2442 R rec b4aef8d8-7aff-4482-9382-ec6840f036b8 -2023-07-08 08:17:34.783616 2023-07-08 08:17:34.783626 mef 2443 R rec b9a0148f-e541-453f-afc9-bca9a16def47 -2023-07-08 08:17:34.880982 2023-07-08 08:17:34.880993 mef 2444 R rec b735dd44-f1f6-4936-b472-b26a1616e3cb -2023-07-08 08:17:34.966832 2023-07-08 08:17:34.966836 mef 2445 R rec 25eb7eb7-30e2-49c9-8929-846242559f22 -2023-07-08 08:17:35.054065 2023-07-08 08:17:35.054076 mef 2446 R rec 112ecfdd-3abf-40f8-a702-18fdacfcff30 -2023-07-08 08:17:35.13685 2023-07-08 08:17:35.136859 mef 2447 R rec e62cbe89-b1ac-40e1-a32d-6051bb8e6ea1 -2023-07-08 08:17:35.210599 2023-07-08 08:17:35.210605 mef 2448 R rec 0d697292-bf6c-49f2-ab0b-a62aa404de18 -2023-07-08 08:17:35.278299 2023-07-08 08:17:35.278303 mef 2449 R rec 808a7641-c68b-45a6-99a4-9bce9ed83315 -2023-07-08 08:17:35.3646 2023-07-08 08:17:35.36461 mef 2450 R rec d6adb0f6-6457-4234-96c3-ada6444bb44c -2023-07-08 08:17:35.458039 2023-07-08 08:17:35.458051 mef 2451 R rec b80717cf-ce36-4e9e-806d-ff9df3fc5ceb -2023-07-08 08:17:35.542271 2023-07-08 08:17:35.542284 mef 2452 R rec 3bac4b2d-8880-48e5-adbe-9e0bec2e512d -2023-07-08 08:17:35.680174 2023-07-08 08:17:35.680179 mef 2453 R rec a8e151bc-7e7f-4046-97bd-3c0d34810060 -2023-07-08 08:17:35.75499 2023-07-08 08:17:35.754995 mef 2454 R rec 28dcb344-fd30-46ad-9117-b509efe79e77 -2023-07-08 08:17:35.824715 2023-07-08 08:17:35.82472 mef 2455 R rec db50ec7c-9a62-489d-9ed3-b18c2fb76f3c -2023-07-08 08:17:35.905758 2023-07-08 08:17:35.905768 mef 2456 R rec 394c42b1-659f-4c3e-8e8d-9c27e0b41982 -2023-07-08 08:17:36.001447 2023-07-08 08:17:36.001456 mef 2457 R rec b1c6a880-2000-40d8-9e74-fb518b1e58b8 -2023-07-08 08:17:36.088227 2023-07-08 08:17:36.088237 mef 2458 R rec c7526b21-a0f4-43c9-b533-0cf09d9c9bea -2023-07-08 08:17:36.174256 2023-07-08 08:17:36.174261 mef 2459 R rec 3bf4250b-caf2-4c6a-a185-15a7af1501f2 -2023-07-08 08:17:36.253575 2023-07-08 08:17:36.253593 mef 2460 R rec 7aa67c7e-3744-4096-92f6-237f38478af5 -2023-07-08 08:17:36.345668 2023-07-08 08:17:36.345678 mef 2461 R rec 89484f4f-e41f-44f3-9e79-d0b25ece1234 -2023-07-08 08:17:36.438794 2023-07-08 08:17:36.438809 mef 2462 R rec e8f2c9a3-1bed-4569-983d-5eb49a6081a1 -2023-07-08 08:17:36.540231 2023-07-08 08:17:36.540241 mef 2463 R rec 257cb762-2c63-4a4e-9bf8-555a14c98303 -2023-07-08 08:17:36.633596 2023-07-08 08:17:36.633655 mef 2464 R rec 7cc20004-855f-44ec-8314-a46aa726e25f -2023-07-08 08:17:36.735207 2023-07-08 08:17:36.735218 mef 2465 R rec 3d9d0582-1ca8-45f5-aa06-1e25b21bb31a -2023-07-08 08:17:36.835811 2023-07-08 08:17:36.835824 mef 2466 R rec b3720d54-2784-432c-8afb-6cf2f9c49f10 -2023-07-08 08:17:36.926404 2023-07-08 08:17:36.926415 mef 2467 R rec 9ba12e2f-8547-4f2e-9e91-404d65ce67d6 -2023-07-08 08:17:37.033964 2023-07-08 08:17:37.033974 mef 2468 R rec f89b53c7-ca47-4882-a316-7387ac3e3930 -2023-07-08 08:17:37.12303 2023-07-08 08:17:37.123041 mef 2469 R rec 33cd5007-b203-4b33-9bcd-5771b3c3317a -2023-07-08 08:17:37.196088 2023-07-08 08:17:37.196093 mef 2470 R rec 75c73fd8-521a-42e3-83cf-a1bbfee60c49 -2023-07-08 08:17:37.279566 2023-07-08 08:17:37.279577 mef 2471 R rec c354cdac-ef78-41ea-b643-03472197b41b -2023-07-08 08:17:37.373507 2023-07-08 08:17:37.37352 mef 2472 R rec 7b914c82-3c5d-490b-8517-e0b66ee5eb10 -2023-07-08 08:17:37.48029 2023-07-08 08:17:37.4803 mef 2473 R rec 3d402862-31e5-403a-a2d9-156983dd3fd5 -2023-07-08 08:17:37.585251 2023-07-08 08:17:37.585261 mef 2474 R rec 11eb2a4c-a20c-431b-9b17-519c610886dc -2023-07-08 08:17:37.663615 2023-07-08 08:17:37.66362 mef 2475 R rec 73fd12a2-6d9c-403d-b40b-98802dc3b940 -2023-07-08 08:17:37.738576 2023-07-08 08:17:37.738592 mef 2476 R rec fb2c0047-d918-4d63-b80f-46e816b14fc6 -2023-07-08 08:17:37.821823 2023-07-08 08:17:37.821828 mef 2477 R rec 1d94d9f5-d5e0-4c57-847b-6ff9e9ed0a4e -2023-07-08 08:17:37.909959 2023-07-08 08:17:37.909969 mef 2478 R rec 4a925703-da72-484c-94fd-f52e70e0b03f -2023-07-08 08:17:37.997734 2023-07-08 08:17:37.997744 mef 2479 R rec bcad07e5-5212-4158-a23c-2346bc7fc5c7 -2023-07-08 08:17:38.085927 2023-07-08 08:17:38.085932 mef 2480 R rec 6020e045-c26e-4049-ba5a-2039019d1154 -2023-07-08 08:17:38.165348 2023-07-08 08:17:38.165353 mef 2481 R rec aa93013d-e284-4040-8023-19b6378a6d6c -2023-07-08 08:17:38.240038 2023-07-08 08:17:38.240043 mef 2482 R rec dbe45351-8a96-4d16-ba11-57bde1117e99 -2023-07-08 08:17:38.329889 2023-07-08 08:17:38.329899 mef 2483 R rec 32f5c453-34db-4846-8da2-a77e99384133 -2023-07-08 08:17:38.418885 2023-07-08 08:17:38.418899 mef 2484 R rec 1dbb960e-cc0f-495c-90cc-05769d99936a -2023-07-08 08:17:38.506182 2023-07-08 08:17:38.506195 mef 2485 R rec 1f4fc295-01eb-41b7-b179-4cb7749dab07 -2023-07-08 08:17:38.599767 2023-07-08 08:17:38.599778 mef 2486 R rec d9c2e7e5-485e-4929-9d14-73d50a35d7da -2023-07-08 08:17:38.680973 2023-07-08 08:17:38.680979 mef 2487 R rec 21ce8dfa-e394-4409-939e-cb749469f66a -2023-07-08 08:17:38.783992 2023-07-08 08:17:38.784004 mef 2488 R rec e118e9ab-8eda-43db-b5a9-2495919c0789 -2023-07-08 08:17:38.874564 2023-07-08 08:17:38.874577 mef 2489 R rec 7cbf1b97-dc6c-4dd3-9b34-c765288a466d -2023-07-08 08:17:38.967185 2023-07-08 08:17:38.9672 mef 2490 R rec 86e876ee-8394-4e06-81d6-ad3cb172b331 -2023-07-08 08:17:39.058825 2023-07-08 08:17:39.058844 mef 2491 R rec 7dd9dff5-9456-4b6d-9f51-23aeb1d10d37 -2023-07-08 08:17:39.151948 2023-07-08 08:17:39.151958 mef 2492 R rec 5e6bc9b5-2314-4dff-b9f7-c9bfae8af7d6 -2023-07-08 08:17:39.245221 2023-07-08 08:17:39.245236 mef 2493 R rec 16477785-7c78-4eff-b7c4-afc37ffd8bfd -2023-07-08 08:17:39.347492 2023-07-08 08:17:39.347505 mef 2494 R rec 225ae229-766f-4cd4-b226-7a3406edb6ba -2023-07-08 08:17:39.437876 2023-07-08 08:17:39.437886 mef 2495 R rec acd5f2b9-4db1-43e3-9f4d-e52aff2e284e -2023-07-08 08:17:39.527555 2023-07-08 08:17:39.527565 mef 2496 R rec 60f885ad-c953-455a-a712-7b3d37067f9e -2023-07-08 08:17:39.62659 2023-07-08 08:17:39.626601 mef 2497 R rec 8fa0fcc4-9e87-4920-8e85-0bb53ccb883a -2023-07-08 08:17:39.704706 2023-07-08 08:17:39.704718 mef 2498 R rec 901941e9-0cad-4222-8fc1-7c7c9a50f343 -2023-07-08 08:17:39.795665 2023-07-08 08:17:39.795675 mef 2499 R rec 96910d76-2086-40f3-9799-d4b54bb33248 -2023-07-08 08:17:39.890416 2023-07-08 08:17:39.890429 mef 2500 R rec ed0563b9-c3fe-44a3-8695-a116850a0653 -2023-07-08 08:17:39.984916 2023-07-08 08:17:39.984926 mef 2501 R rec 17507d63-9ae3-48e5-a4c9-8235a1a3b042 -2023-07-08 08:17:40.074326 2023-07-08 08:17:40.074337 mef 2502 R rec e3810074-4e37-427a-9262-8c4d68ec371a -2023-07-08 08:17:40.155851 2023-07-08 08:17:40.155864 mef 2503 R rec 94c47a62-7256-4229-996e-9db01bd3d038 -2023-07-08 08:17:40.253382 2023-07-08 08:17:40.2534 mef 2504 R rec d1eba9a6-4213-4bd9-9d8b-ab6812776a79 -2023-07-08 08:17:40.339419 2023-07-08 08:17:40.339429 mef 2505 R rec 26610a4b-bc1a-4472-a2e5-08f581cfd47a -2023-07-08 08:17:40.437638 2023-07-08 08:17:40.437648 mef 2506 R rec e87f0370-906d-4fe2-9aaf-21b3b82b90d1 -2023-07-08 08:17:40.514507 2023-07-08 08:17:40.514517 mef 2507 R rec 61afaec4-8ad0-420b-9df6-9dab2364bebf -2023-07-08 08:17:40.59942 2023-07-08 08:17:40.599435 mef 2508 R rec 3f8b7dc7-bd8b-422e-8f50-a6707cd244ab -2023-07-08 08:17:40.684949 2023-07-08 08:17:40.684959 mef 2509 R rec cdffd0ff-28c0-437c-a928-445e0d01311f -2023-07-08 08:17:40.789302 2023-07-08 08:17:40.789313 mef 2510 R rec fc5b02b4-028d-484f-8fa4-bb268e372ddb -2023-07-08 08:17:40.893415 2023-07-08 08:17:40.893427 mef 2511 R rec b27a9ead-2368-4afe-895a-78c331d2025f -2023-07-08 08:17:40.996084 2023-07-08 08:17:40.996098 mef 2512 R rec f48da3c6-c203-4aec-99b2-aabbc81ce10f -2023-07-08 08:17:41.097184 2023-07-08 08:17:41.09719 mef 2513 R rec e7fdc4e0-7d26-4f5a-b541-2e07260f17a5 -2023-07-08 08:17:41.179815 2023-07-08 08:17:41.17982 mef 2514 R rec 3b94b6f4-4d5a-440b-be37-0c7e2578a557 -2023-07-08 08:17:41.249742 2023-07-08 08:17:41.249748 mef 2515 R rec 337b4c08-5a63-4ad2-b0b9-9d674fe6f4ad -2023-07-08 08:17:41.321167 2023-07-08 08:17:41.321172 mef 2516 R rec 168b5346-4b3d-497f-b8d7-422fc13822a6 -2023-07-08 08:17:41.390797 2023-07-08 08:17:41.390802 mef 2517 R rec 10e9b4e4-09fc-4ee3-b043-da13858dc627 -2023-07-08 08:17:41.463715 2023-07-08 08:17:41.46372 mef 2518 R rec 299d981b-4a06-4b0e-8254-c5e232d4850b -2023-07-08 08:17:41.542401 2023-07-08 08:17:41.542407 mef 2519 R rec d17de343-2d31-48f1-853c-41d411e9aa0a -2023-07-08 08:17:41.612923 2023-07-08 08:17:41.612928 mef 2520 R rec c413c8d8-9008-4795-ae5c-a0c743d9d926 -2023-07-08 08:17:41.683487 2023-07-08 08:17:41.683492 mef 2521 R rec 8075414f-f5fb-460f-a454-3a7abbc2651d -2023-07-08 08:17:41.753887 2023-07-08 08:17:41.753891 mef 2522 R rec d7024eae-c09d-4d73-9ce2-5a1194b8e6a9 -2023-07-08 08:17:41.8273 2023-07-08 08:17:41.827305 mef 2523 R rec 826e02b2-cfe3-4f7a-a237-930e35539265 -2023-07-08 08:17:41.897435 2023-07-08 08:17:41.897443 mef 2524 R rec e775ebf0-2ff2-4ddf-9769-deefb6837659 -2023-07-08 08:17:41.965847 2023-07-08 08:17:41.96585 mef 2525 R rec 8776be32-45c8-4cf1-9c72-f199cf268048 -2023-07-08 08:17:42.037328 2023-07-08 08:17:42.037333 mef 2526 R rec a13390b4-dbb5-41e0-a0e6-8d93377850e1 -2023-07-08 08:17:42.121476 2023-07-08 08:17:42.121481 mef 2527 R rec c2021471-1740-4543-97e6-05d1e041a44b -2023-07-08 08:17:42.192825 2023-07-08 08:17:42.19283 mef 2528 R rec a7978d81-c7b9-4ba0-82e1-8bfe0b6eccea -2023-07-08 08:17:42.262785 2023-07-08 08:17:42.26279 mef 2529 R rec 662db332-11c3-4079-a494-d672a199bd3a -2023-07-08 08:17:42.338827 2023-07-08 08:17:42.338832 mef 2530 R rec 6fb0cc30-d369-424f-bac8-db31ae2e5aaa -2023-07-08 08:17:42.436355 2023-07-08 08:17:42.43636 mef 2531 R rec a199c505-4011-492f-a117-0b6f182f9da7 -2023-07-08 08:17:42.505467 2023-07-08 08:17:42.505471 mef 2532 R rec 5aeaec3d-f312-4f52-913a-03c15515a238 -2023-07-08 08:17:42.579297 2023-07-08 08:17:42.579303 mef 2533 R rec 62ca8b83-b4c5-42a0-8e8b-4df4346158b9 -2023-07-08 08:17:42.653172 2023-07-08 08:17:42.653177 mef 2534 R rec ff8b4220-e759-45e2-a968-5e2beb544d83 -2023-07-08 08:17:42.739657 2023-07-08 08:17:42.739661 mef 2535 R rec b2b62dea-2c06-4dbe-9343-97b1a3aa4b80 -2023-07-08 08:17:42.806372 2023-07-08 08:17:42.806377 mef 2536 R rec 351446da-9ced-41a7-9ca8-dd4659fe0b1f -2023-07-08 08:17:42.874914 2023-07-08 08:17:42.874919 mef 2537 R rec e12d7c12-ee5a-4008-afba-51c3edca148c -2023-07-08 08:17:42.93988 2023-07-08 08:17:42.939885 mef 2538 R rec 3be40863-c29e-4adb-b70d-8a34611854f9 -2023-07-08 08:17:43.008403 2023-07-08 08:17:43.008408 mef 2539 R rec ad9e7761-1f87-434c-8a1c-efd036182434 -2023-07-08 08:17:43.094149 2023-07-08 08:17:43.094163 mef 2540 R rec 14862c81-3d29-404b-ba65-22c20e663a77 -2023-07-08 08:17:43.179906 2023-07-08 08:17:43.179911 mef 2541 R rec 8c5600a5-c58c-4464-b5f0-73a5a3c3be49 -2023-07-08 08:17:43.285999 2023-07-08 08:17:43.286018 mef 2542 R rec d24ed922-e91a-4a4f-b5e1-557f879d3c02 -2023-07-08 08:17:43.39279 2023-07-08 08:17:43.392801 mef 2543 R rec fea77796-0704-4eeb-ba25-08caed03dcbe -2023-07-08 08:17:43.483183 2023-07-08 08:17:43.483194 mef 2544 R rec 7b085e9a-eeba-4f2e-8971-1e35b8760603 -2023-07-08 08:17:43.572793 2023-07-08 08:17:43.572804 mef 2545 R rec bb084d00-662e-48c3-bdd3-9df67ae9127c -2023-07-08 08:17:43.659387 2023-07-08 08:17:43.6594 mef 2546 R rec 0bbb9e55-6613-4d78-b650-1280aa30a873 -2023-07-08 08:17:43.747687 2023-07-08 08:17:43.747699 mef 2547 R rec ccb7c189-30ae-40fe-8f0a-f19629f7c703 -2023-07-08 08:17:43.851324 2023-07-08 08:17:43.85133 mef 2548 R rec 9ba55920-7a65-45b8-8a5a-bfcfe38a7fd9 -2023-07-08 08:17:43.939059 2023-07-08 08:17:43.939068 mef 2549 R rec 5ec70dd6-3d5b-414a-ba4d-be31926c7d47 -2023-07-08 08:17:44.021748 2023-07-08 08:17:44.021753 mef 2550 R rec f31a8a98-43d7-4060-8055-2fe7f51f8f4a -2023-07-08 08:17:44.115778 2023-07-08 08:17:44.115789 mef 2551 R rec 24084801-f539-4026-b177-05e138b90b3e -2023-07-08 08:17:44.197349 2023-07-08 08:17:44.197357 mef 2552 R rec c588e21d-b699-46bd-b1b5-6d053c542f41 -2023-07-08 08:17:44.27849 2023-07-08 08:17:44.278499 mef 2553 R rec e7aa165b-1c8a-4db8-87dd-adcf6f35756c -2023-07-08 08:17:44.359539 2023-07-08 08:17:44.359544 mef 2554 R rec ca3e741b-2ab3-431b-8f93-7edbb5af5b85 -2023-07-08 08:17:44.441313 2023-07-08 08:17:44.441326 mef 2555 R rec 6d365a76-ece0-4c13-8989-fd45dc3c63fa -2023-07-08 08:17:44.524192 2023-07-08 08:17:44.524197 mef 2556 R rec 8f688b99-a504-4077-ab2f-eb9f6586a2da -2023-07-08 08:17:44.607297 2023-07-08 08:17:44.607308 mef 2557 R rec f167fec7-024b-4c4d-8f7b-67754c4ba2ad -2023-07-08 08:17:44.686623 2023-07-08 08:17:44.686628 mef 2558 R rec bc4d017c-7704-4a75-806c-0fec2d11dd69 -2023-07-08 08:17:44.76916 2023-07-08 08:17:44.76917 mef 2559 R rec 945a9ccc-1260-4f33-8b05-afc0998aa46b -2023-07-08 08:17:44.847708 2023-07-08 08:17:44.847712 mef 2560 R rec bf258727-af6b-4e3d-8726-509ae7bb2f36 -2023-07-08 08:17:44.925463 2023-07-08 08:17:44.925468 mef 2561 R rec c9926f17-10ef-4bb6-8d7c-9ea3e46dd864 -2023-07-08 08:17:45.014495 2023-07-08 08:17:45.014506 mef 2562 R rec 145d561d-37d1-48e3-bce9-834ba879db88 -2023-07-08 08:17:45.1141 2023-07-08 08:17:45.114106 mef 2563 R rec 16658eeb-8d70-4cda-9e2b-6f41318f076c -2023-07-08 08:17:45.198652 2023-07-08 08:17:45.198692 mef 2564 R rec c4bc582c-50d3-48a8-bf07-41dbc034151c -2023-07-08 08:17:45.281821 2023-07-08 08:17:45.281832 mef 2565 R rec 824a9fe2-742f-4e0b-93c2-67f3026680f4 -2023-07-08 08:17:45.372627 2023-07-08 08:17:45.372635 mef 2566 R rec 8c647df4-b088-46de-b563-464b61262b82 -2023-07-08 08:17:45.473434 2023-07-08 08:17:45.473448 mef 2567 R rec b75fd767-8a45-4932-91e1-8eed88935171 -2023-07-08 08:17:45.574064 2023-07-08 08:17:45.574068 mef 2568 R rec 9794124a-4f57-47f2-828a-e1ba99e033ba -2023-07-08 08:17:45.699735 2023-07-08 08:17:45.69974 mef 2569 R rec 23a053bc-5f58-491e-9d19-d5da7ada63c1 -2023-07-08 08:17:45.81338 2023-07-08 08:17:45.81339 mef 2570 R rec 4fdc08ab-5d16-4d17-bce0-a2e6bea7dff3 -2023-07-08 08:17:45.913499 2023-07-08 08:17:45.913504 mef 2571 R rec 2b1eb6a6-b8cf-464c-ab8e-42679b8a11bc -2023-07-08 08:17:46.017309 2023-07-08 08:17:46.017319 mef 2572 R rec 3d5fe808-12c6-4c86-89ee-e1b2b7df71c1 -2023-07-08 08:17:46.116059 2023-07-08 08:17:46.116064 mef 2573 R rec 02792eb4-2135-44ae-a48a-1abcc8938ca4 -2023-07-08 08:17:46.200199 2023-07-08 08:17:46.200205 mef 2574 R rec e287bac1-e89a-4a15-b461-d572f26d0515 -2023-07-08 08:17:46.301962 2023-07-08 08:17:46.301977 mef 2575 R rec 079a7786-484c-4c9f-9a8f-ff36370872a2 -2023-07-08 08:17:46.408488 2023-07-08 08:17:46.408499 mef 2576 R rec 79b95683-449f-4eb5-a9f7-1af5aa6b3c09 -2023-07-08 08:17:46.494901 2023-07-08 08:17:46.494909 mef 2577 R rec 281ac698-5382-4a72-8594-025f270b58c8 -2023-07-08 08:17:46.610899 2023-07-08 08:17:46.61091 mef 2578 R rec 95b33640-2558-462f-a6ee-d8cbc15080ff -2023-07-08 08:17:46.738724 2023-07-08 08:17:46.738734 mef 2579 R rec 7cbe7b27-ed5b-410f-ac96-b784cf1b5aea -2023-07-08 08:17:46.842054 2023-07-08 08:17:46.842067 mef 2580 R rec 8142c5be-85e8-428c-a26a-99deb390d959 -2023-07-08 08:17:46.939738 2023-07-08 08:17:46.939742 mef 2581 R rec 65c1d7af-0331-4563-bb04-8d69fcab5474 -2023-07-08 08:17:47.035116 2023-07-08 08:17:47.035127 mef 2582 R rec 393b8c11-42c3-4501-bb34-00f27ca36c0a -2023-07-08 08:17:47.109492 2023-07-08 08:17:47.109502 mef 2583 R rec 51f3f525-aca8-42af-b8f4-6829b8a3bf29 -2023-07-08 08:17:47.195881 2023-07-08 08:17:47.195887 mef 2584 R rec 4c2d94c4-6acc-498b-b3a8-e492f4b3fe4b -2023-07-08 08:17:47.299296 2023-07-08 08:17:47.299301 mef 2585 R rec e06042c4-793d-49c0-ae31-8ba0d943f71b -2023-07-08 08:17:47.405517 2023-07-08 08:17:47.405529 mef 2586 R rec 37a01ce0-4236-48c1-85c2-197fea254898 -2023-07-08 08:17:47.503529 2023-07-08 08:17:47.503542 mef 2587 R rec bb5a3c1c-8a4e-46cc-8f28-767b05b5031c -2023-07-08 08:17:47.603687 2023-07-08 08:17:47.603697 mef 2588 R rec e70b622e-60aa-467e-b721-151fd8104505 -2023-07-08 08:17:47.700692 2023-07-08 08:17:47.700697 mef 2589 R rec c4e33190-b695-4c79-bebd-cb711614700a -2023-07-08 08:17:47.7806 2023-07-08 08:17:47.780605 mef 2590 R rec 5f207c6f-456a-4930-9f5b-b7cecd65e707 -2023-07-08 08:17:47.863362 2023-07-08 08:17:47.863376 mef 2591 R rec bd134825-bdb5-4307-a6a2-65ccb9bdd7e9 -2023-07-08 08:17:47.958673 2023-07-08 08:17:47.958679 mef 2592 R rec 40c5b7a4-4cc6-4a5b-8d1d-df93b299e5fe -2023-07-08 08:17:48.032098 2023-07-08 08:17:48.032104 mef 2593 R rec 33d376b2-186d-4e32-97db-b12553fd86fe -2023-07-08 08:17:48.117774 2023-07-08 08:17:48.117783 mef 2594 R rec ecd2c4b4-bdde-4f18-9463-f79fb16f13d6 -2023-07-08 08:17:48.209136 2023-07-08 08:17:48.209164 mef 2595 R rec 21fdd93a-3014-4276-80db-48c6df8c387b -2023-07-08 08:17:48.301432 2023-07-08 08:17:48.301444 mef 2596 R rec b842337e-8cf4-4889-87bd-ff306b8f73eb -2023-07-08 08:17:48.396739 2023-07-08 08:17:48.396748 mef 2597 R rec dc998724-3fb7-4223-99f6-12697366581e -2023-07-08 08:17:48.487898 2023-07-08 08:17:48.487907 mef 2598 R rec 3220ce04-b283-4108-a4c9-f8fdeab8ed0a -2023-07-08 08:17:48.57877 2023-07-08 08:17:48.57878 mef 2599 R rec 413fc462-5384-4611-b807-649fbd16a027 -2023-07-08 08:17:48.663628 2023-07-08 08:17:48.663641 mef 2600 R rec d59e386f-f7d6-4fb5-af2b-cc4507b77465 -2023-07-08 08:17:48.750317 2023-07-08 08:17:48.750327 mef 2601 R rec 22dc7b84-6275-4e63-aeed-ed40d858e970 -2023-07-08 08:17:48.843865 2023-07-08 08:17:48.84388 mef 2602 R rec cca5f410-5ac4-4f48-9667-757c78b2eb89 -2023-07-08 08:17:48.93108 2023-07-08 08:17:48.93109 mef 2603 R rec 2b52c8d1-5353-4390-a8bd-675c6df61190 -2023-07-08 08:17:49.036565 2023-07-08 08:17:49.036577 mef 2604 R rec 0412a4a2-23e9-4e16-b935-4ea2bf6927b1 -2023-07-08 08:17:49.121939 2023-07-08 08:17:49.121949 mef 2605 R rec ab4d2872-8839-42c5-96f2-a4a947adb7fb -2023-07-08 08:17:49.200285 2023-07-08 08:17:49.200289 mef 2606 R rec a44d9d3d-512e-40cb-8732-e6b11a46d214 -2023-07-08 08:17:49.27062 2023-07-08 08:17:49.270625 mef 2607 R rec 6a6893aa-1d50-4356-85bc-daa82621627f -2023-07-08 08:17:49.340777 2023-07-08 08:17:49.340782 mef 2608 R rec 62d12f97-e19b-493f-b8f8-862bbee1dbd6 -2023-07-08 08:17:49.413363 2023-07-08 08:17:49.413368 mef 2609 R rec 042db311-dbf9-4b12-b6e2-c2dc0fda8734 -2023-07-08 08:17:49.48536 2023-07-08 08:17:49.485365 mef 2610 R rec c2a4e185-b120-4515-9622-dc4c0b02e990 -2023-07-08 08:17:49.559267 2023-07-08 08:17:49.559273 mef 2611 R rec 25fefc81-f52d-4f6e-ab3b-e78be8167619 -2023-07-08 08:17:49.641579 2023-07-08 08:17:49.641585 mef 2612 R rec a007e113-2cca-48d1-aef1-12b4fe0487b0 -2023-07-08 08:17:49.719082 2023-07-08 08:17:49.719087 mef 2613 R rec 5831f586-5c2c-44c7-b736-53cbab1b88e7 -2023-07-08 08:17:49.790349 2023-07-08 08:17:49.790357 mef 2614 R rec 2541a5ee-3e41-4437-a662-9c54e56aaff8 -2023-07-08 08:17:49.870172 2023-07-08 08:17:49.870183 mef 2615 R rec 0cdde238-54c3-48e6-aef4-bebafc4ac0ce -2023-07-08 08:17:49.962155 2023-07-08 08:17:49.962168 mef 2616 R rec 93286fad-a0c9-470b-9c51-c72005956e8b -2023-07-08 08:17:50.046748 2023-07-08 08:17:50.046753 mef 2617 R rec 319b7d47-3c02-4eba-84b9-759d3b6f3b81 -2023-07-08 08:17:50.139182 2023-07-08 08:17:50.139193 mef 2618 R rec a1476016-3884-4bd2-888f-0c3271b23fa6 -2023-07-08 08:17:50.218887 2023-07-08 08:17:50.218892 mef 2619 R rec a3ba9669-3587-4291-b462-8d7d19509dbf -2023-07-08 08:17:50.31545 2023-07-08 08:17:50.315461 mef 2620 R rec 2da93219-277c-4ca8-a911-d11d78cbbd57 -2023-07-08 08:17:50.406055 2023-07-08 08:17:50.406067 mef 2621 R rec 20120a44-2301-42da-9652-f76c618fc178 -2023-07-08 08:17:50.496151 2023-07-08 08:17:50.496167 mef 2622 R rec d5599133-9529-4784-8996-6f1d873780fc -2023-07-08 08:17:50.586193 2023-07-08 08:17:50.586198 mef 2623 R rec 1ffbd9bf-734d-43e9-bdd3-0b9ad9074d55 -2023-07-08 08:17:50.668558 2023-07-08 08:17:50.668568 mef 2624 R rec 5f78642d-ecf7-4ace-8e68-2a31f891c3f4 -2023-07-08 08:17:50.762382 2023-07-08 08:17:50.762395 mef 2625 R rec 788497c7-19be-4da3-9841-f5041c0c3970 -2023-07-08 08:17:50.872093 2023-07-08 08:17:50.872102 mef 2626 R rec 3f40e00f-a971-415e-b83c-271158858c32 -2023-07-08 08:17:50.973765 2023-07-08 08:17:50.973776 mef 2627 R rec a4f4e925-112e-41b5-81d0-f60bff6fa61d -2023-07-08 08:17:51.050175 2023-07-08 08:17:51.05018 mef 2628 R rec 3df3b887-df78-4197-bdf6-5ddbeba0f935 -2023-07-08 08:17:51.144999 2023-07-08 08:17:51.145008 mef 2629 R rec 2889b217-1702-4c4e-9732-ca02349ae6d5 -2023-07-08 08:17:51.241308 2023-07-08 08:17:51.241318 mef 2630 R rec c102bb99-41d5-495e-9098-c0557b6cb955 -2023-07-08 08:17:51.331538 2023-07-08 08:17:51.331543 mef 2631 R rec 5b3274bd-6b7b-4245-96bc-aee0075f28d4 -2023-07-08 08:17:51.424666 2023-07-08 08:17:51.424678 mef 2632 R rec dae9557c-fa40-4118-8fd5-ef799e24458f -2023-07-08 08:17:51.529925 2023-07-08 08:17:51.529934 mef 2633 R rec b60e3618-7d89-47e7-bf71-01fb59b11d57 -2023-07-08 08:17:51.629649 2023-07-08 08:17:51.629663 mef 2634 R rec 33430922-d335-4117-80a1-6756e848f6dd -2023-07-08 08:17:51.717063 2023-07-08 08:17:51.717072 mef 2635 R rec f30e0284-cd27-44c8-baff-6cb7f8cd1af6 -2023-07-08 08:17:51.815649 2023-07-08 08:17:51.815659 mef 2636 R rec d4b9e31b-e054-4ac0-8b56-6bab1c6604f8 -2023-07-08 08:17:51.909871 2023-07-08 08:17:51.909898 mef 2637 R rec b526a106-7ac3-4462-b929-9761a1183c23 -2023-07-08 08:17:51.985629 2023-07-08 08:17:51.985636 mef 2638 R rec 5406026d-aa05-4ad9-b5ec-9273e9f16c6b -2023-07-08 08:17:52.068717 2023-07-08 08:17:52.06873 mef 2639 R rec 4b5618b7-25b2-48de-9cb0-f1b8780e2805 -2023-07-08 08:17:52.155948 2023-07-08 08:17:52.155953 mef 2640 R rec 644eea9b-5d43-43b8-ae2c-2fe2f756ae75 -2023-07-08 08:17:52.24602 2023-07-08 08:17:52.246033 mef 2641 R rec 37c38702-b15a-441f-87f4-f18e5990980f -2023-07-08 08:17:52.329013 2023-07-08 08:17:52.329018 mef 2642 R rec 382d9e20-57d2-4b93-9a45-7469df689f96 -2023-07-08 08:17:52.406237 2023-07-08 08:17:52.406247 mef 2643 R rec f75fd36a-2f46-421f-b671-380709d8ef51 -2023-07-08 08:17:52.502985 2023-07-08 08:17:52.50299 mef 2644 R rec 2f01c9ad-7a04-431a-a28d-7225ce6b991f -2023-07-08 08:17:52.587185 2023-07-08 08:17:52.58719 mef 2645 R rec bf93f3ed-2c1c-446a-a29e-2a34869e8a3c -2023-07-08 08:17:52.66891 2023-07-08 08:17:52.668916 mef 2646 R rec 60d70ec2-1f0c-4868-b9a4-da94d471a814 -2023-07-08 08:17:52.735871 2023-07-08 08:17:52.735879 mef 2647 R rec eae83fca-2d5f-4363-8509-9094fec588f1 -2023-07-08 08:17:52.816174 2023-07-08 08:17:52.816185 mef 2648 R rec 62104671-08f6-4482-b3b0-620ae0550a22 -2023-07-08 08:17:52.909155 2023-07-08 08:17:52.909165 mef 2649 R rec d263cc71-d390-4316-89ea-b8d3a0efc992 -2023-07-08 08:17:52.9872 2023-07-08 08:17:52.987204 mef 2650 R rec aba6f933-7d24-4e3a-b998-fbfd48913047 -2023-07-08 08:17:53.072252 2023-07-08 08:17:53.072261 mef 2651 R rec a044a46b-e7bd-4553-b072-e6a0d2b05bd0 -2023-07-08 08:17:53.173214 2023-07-08 08:17:53.173224 mef 2652 R rec 8e909e96-531d-4f45-86b7-5da2bec743ff -2023-07-08 08:17:53.262706 2023-07-08 08:17:53.262717 mef 2653 R rec 05657f8f-77e0-44fe-b28f-3a47b778b6ca -2023-07-08 08:17:53.358854 2023-07-08 08:17:53.358866 mef 2654 R rec f8ca0572-b398-4feb-a990-80d1537b65c5 -2023-07-08 08:17:53.462954 2023-07-08 08:17:53.462964 mef 2655 R rec 3b8ee951-c01d-4ce9-a542-bc1818160f87 -2023-07-08 08:17:53.547629 2023-07-08 08:17:53.547637 mef 2656 R rec 80e707d2-01bc-4d06-9f23-75bdf4aae3e2 -2023-07-08 08:17:53.627186 2023-07-08 08:17:53.627197 mef 2657 R rec 9d4fe1d4-a93f-4be3-b0e7-8096b928570f -2023-07-08 08:17:53.704485 2023-07-08 08:17:53.70449 mef 2658 R rec d614f688-af15-448d-b898-4a0673301882 -2023-07-08 08:17:53.785328 2023-07-08 08:17:53.785338 mef 2659 R rec 2cbcd940-301e-42f3-9a73-bf56d0e97c67 -2023-07-08 08:17:53.880705 2023-07-08 08:17:53.880715 mef 2660 R rec f9b1bf68-3a26-41eb-bf76-a4c67e80146f -2023-07-08 08:17:53.986444 2023-07-08 08:17:53.986449 mef 2661 R rec 3fcf3801-18bd-4a0c-b4ac-8740675e730b -2023-07-08 08:17:54.069259 2023-07-08 08:17:54.069268 mef 2662 R rec c12e522a-b9ad-4681-b821-e7512dc14916 -2023-07-08 08:17:54.162153 2023-07-08 08:17:54.162163 mef 2663 R rec d449c409-2cb6-4b36-9e00-03758017e19b -2023-07-08 08:17:54.246987 2023-07-08 08:17:54.246992 mef 2664 R rec 246024f2-c9fc-433e-95e6-5e40fdc7950c -2023-07-08 08:17:54.327579 2023-07-08 08:17:54.327594 mef 2665 R rec 4c5f0a88-53e0-4996-85c2-4775f0152f36 -2023-07-08 08:17:54.430152 2023-07-08 08:17:54.430163 mef 2666 R rec 6eacb468-f67d-45dc-832d-2ebbbebdb333 -2023-07-08 08:17:54.521738 2023-07-08 08:17:54.521751 mef 2667 R rec 375288f0-f70b-405d-a3b5-af7dda667792 -2023-07-08 08:17:54.610249 2023-07-08 08:17:54.610259 mef 2668 R rec c2e9ba71-8d49-4228-a7e0-11be51ef97bb -2023-07-08 08:17:54.694044 2023-07-08 08:17:54.694047 mef 2669 R rec e7749142-7055-45a5-aef1-f9c5cc0730c7 -2023-07-08 08:17:54.779515 2023-07-08 08:17:54.779525 mef 2670 R rec 6d89725a-1b21-4997-b745-9c273189c0e1 -2023-07-08 08:17:54.869046 2023-07-08 08:17:54.869057 mef 2671 R rec 252dd3ce-352a-4fe1-bdfe-07a48a8e609d -2023-07-08 08:17:54.960489 2023-07-08 08:17:54.960504 mef 2672 R rec b98a7928-92ee-47df-b2fa-cfb518521cb1 -2023-07-08 08:17:55.072809 2023-07-08 08:17:55.072824 mef 2673 R rec d4630408-f0ee-4408-b4c8-b036b4b46f43 -2023-07-08 08:17:55.182795 2023-07-08 08:17:55.1828 mef 2674 R rec 47e477b1-18b4-444b-9850-8adaae6cfef8 -2023-07-08 08:17:55.277855 2023-07-08 08:17:55.277864 mef 2675 R rec 7db59fa8-b244-4abe-aa6a-781762bebfd7 -2023-07-08 08:17:55.35007 2023-07-08 08:17:55.350075 mef 2676 R rec b48571aa-50c3-4ac7-ad3a-fafbeff260df -2023-07-08 08:17:55.418447 2023-07-08 08:17:55.418451 mef 2677 R rec 0da8abe7-236e-44c6-991d-33cbaa165c1b -2023-07-08 08:17:55.497162 2023-07-08 08:17:55.497167 mef 2678 R rec 23b0564c-a1ae-43dd-b015-a08f9997bdb5 -2023-07-08 08:17:55.587691 2023-07-08 08:17:55.587701 mef 2679 R rec 2fee1bca-92de-47e0-9ce5-ce9764e53aa6 -2023-07-08 08:17:55.695855 2023-07-08 08:17:55.69586 mef 2680 R rec e7044673-45b1-47fb-aad6-cb423ef9cca0 -2023-07-08 08:17:55.792965 2023-07-08 08:17:55.792976 mef 2681 R rec ddb8a48f-b25c-49ee-ac05-90f9e3a8a2d0 -2023-07-08 08:17:55.88215 2023-07-08 08:17:55.882155 mef 2682 R rec 079cd4c3-fe18-411c-bb93-0693a8ada84f -2023-07-08 08:17:55.974891 2023-07-08 08:17:55.974901 mef 2683 R rec 7bee0b86-d1cd-46cf-a815-d5c3931243c3 -2023-07-08 08:17:56.061775 2023-07-08 08:17:56.061787 mef 2684 R rec 83771fe4-a4c0-4cb0-8a89-416cb18d6d90 -2023-07-08 08:17:56.154493 2023-07-08 08:17:56.154502 mef 2685 R rec 2e57fd9a-9549-4b3a-906a-aa0e84ddcc13 -2023-07-08 08:17:56.221687 2023-07-08 08:17:56.221692 mef 2686 R rec d70c75cc-1938-433f-9c8c-22c5025940e6 -2023-07-08 08:17:56.307429 2023-07-08 08:17:56.307447 mef 2687 R rec 11e025b2-2bcb-4171-9b59-0e18c9505c53 -2023-07-08 08:17:56.403627 2023-07-08 08:17:56.403638 mef 2688 R rec 561d2a85-d742-4297-b7c7-a9f595f6c05d -2023-07-08 08:17:56.486751 2023-07-08 08:17:56.486756 mef 2689 R rec 0fa80653-47d0-49de-ac93-29f9a3882735 -2023-07-08 08:17:56.574268 2023-07-08 08:17:56.574283 mef 2690 R rec 27a589a7-9233-4ff8-911e-718fed741e62 -2023-07-08 08:17:56.654201 2023-07-08 08:17:56.654205 mef 2691 R rec 591aace0-a8ab-4c8f-9b7d-c4278328d078 -2023-07-08 08:17:56.751108 2023-07-08 08:17:56.751118 mef 2692 R rec 0f672cb9-aa4a-4e0b-b2fb-e63b21c25b49 -2023-07-08 08:17:56.859647 2023-07-08 08:17:56.859658 mef 2693 R rec 28f57880-f470-40a5-862d-cf1fee254417 -2023-07-08 08:17:56.948265 2023-07-08 08:17:56.94827 mef 2694 R rec e6e24f90-5ef4-4192-b932-cc2bf6dd5e32 -2023-07-08 08:17:57.035631 2023-07-08 08:17:57.035642 mef 2695 R rec bf0b5e7f-9ab5-40d2-a6a2-6b484417d126 -2023-07-08 08:17:57.151499 2023-07-08 08:17:57.151509 mef 2696 R rec 3b3b05bf-c4b2-494a-bcbc-3923eb3ad871 -2023-07-08 08:17:57.236398 2023-07-08 08:17:57.236404 mef 2697 R rec f7291c06-7879-4ab2-8c71-9d91e606122a -2023-07-08 08:17:57.33165 2023-07-08 08:17:57.331657 mef 2698 R rec 5a1dbbb7-07f7-42a8-90d7-989d77886da3 -2023-07-08 08:17:57.414373 2023-07-08 08:17:57.414385 mef 2699 R rec c389f3e2-5625-4867-868c-5086c98cad86 -2023-07-08 08:17:57.518106 2023-07-08 08:17:57.518121 mef 2700 R rec 4647188a-3f47-4a15-9579-d2a43e387eec -2023-07-08 08:17:57.607968 2023-07-08 08:17:57.607985 mef 2701 R rec bc701df6-b4d8-46e7-a3b0-a2cddbed48c0 -2023-07-08 08:17:57.701527 2023-07-08 08:17:57.701535 mef 2702 R rec 8091fe22-38ed-4f43-9553-84ca5c974322 -2023-07-08 08:17:57.796413 2023-07-08 08:17:57.796425 mef 2703 R rec 8f93ca89-aeb8-42b4-aef7-a5c40b856d8e -2023-07-08 08:17:57.900849 2023-07-08 08:17:57.90086 mef 2704 R rec 9c68fa68-4c6f-4dc6-b741-b26bd66911bb -2023-07-08 08:17:58.007322 2023-07-08 08:17:58.007337 mef 2705 R rec f409ca22-7adb-4657-bd5c-487b26b32a8f -2023-07-08 08:17:58.102738 2023-07-08 08:17:58.102744 mef 2706 R rec 69c4cbe5-5b52-432e-a797-48699775ff45 -2023-07-08 08:17:58.199913 2023-07-08 08:17:58.199918 mef 2707 R rec 325085b7-ac75-40f6-8152-1360a423e989 -2023-07-08 08:17:58.296394 2023-07-08 08:17:58.296409 mef 2708 R rec 7f07d2da-8323-43a2-87fe-49f5b164dffb -2023-07-08 08:17:58.381577 2023-07-08 08:17:58.381582 mef 2709 R rec 2c34d5d3-294d-4570-9da8-b1339821e05f -2023-07-08 08:17:58.453298 2023-07-08 08:17:58.453305 mef 2710 R rec 1f25c9a5-b10b-4877-a3ec-dc2247c2544d -2023-07-08 08:17:58.526398 2023-07-08 08:17:58.526403 mef 2711 R rec 31430106-18b8-42a9-83ab-aaa17e46c941 -2023-07-08 08:17:58.601907 2023-07-08 08:17:58.601918 mef 2712 R rec a8a4bec7-4aad-4091-a628-dff7ab47dca4 -2023-07-08 08:17:58.693042 2023-07-08 08:17:58.693047 mef 2713 R rec ffedd3c7-6d5b-4655-a47a-2e375b38761b -2023-07-08 08:17:58.775911 2023-07-08 08:17:58.775929 mef 2714 R rec b19b07c0-61af-4ae7-a892-f5f93df033e1 -2023-07-08 08:17:58.875034 2023-07-08 08:17:58.875054 mef 2715 R rec efc30ad0-d79d-4cf5-8145-8fba7c77e7b3 -2023-07-08 08:17:58.983943 2023-07-08 08:17:58.983955 mef 2716 R rec 3cbe1958-1070-448e-b666-38d86700f699 -2023-07-08 08:17:59.070778 2023-07-08 08:17:59.070792 mef 2717 R rec 9eca5c56-5aef-459d-9649-4fe70b1434ce -2023-07-08 08:17:59.163653 2023-07-08 08:17:59.163657 mef 2718 R rec 5ef798db-6bb0-42f1-b600-bb72ad6139f0 -2023-07-08 08:17:59.233167 2023-07-08 08:17:59.233172 mef 2719 R rec 8f8b4618-8052-45c7-802e-6e5422a6a4b9 -2023-07-08 08:17:59.316998 2023-07-08 08:17:59.317008 mef 2720 R rec 38b1ee68-aac7-4db6-9052-39cb76a500e3 -2023-07-08 08:17:59.404193 2023-07-08 08:17:59.404207 mef 2721 R rec 5a672dfa-2b26-4b39-abe2-db509b944cd3 -2023-07-08 08:17:59.493228 2023-07-08 08:17:59.493241 mef 2722 R rec 7567b6b3-9f50-4b11-91ab-e49ce348b4e0 -2023-07-08 08:17:59.588878 2023-07-08 08:17:59.588893 mef 2723 R rec f98b0125-6785-485c-b47c-e703faf0837e -2023-07-08 08:17:59.693925 2023-07-08 08:17:59.69393 mef 2724 R rec d49c3d0f-3549-479a-8298-bf6dd7ae27a2 -2023-07-08 08:17:59.781503 2023-07-08 08:17:59.781518 mef 2725 R rec dce83626-5c71-48ec-ab2b-c1b4ae75e638 -2023-07-08 08:17:59.873076 2023-07-08 08:17:59.873087 mef 2726 R rec 16432876-e716-4df1-9855-93c94d508d81 -2023-07-08 08:17:59.974225 2023-07-08 08:17:59.974235 mef 2727 R rec 4a52c289-bf24-4d06-80de-bc6abd35de4b -2023-07-08 08:18:00.064828 2023-07-08 08:18:00.06484 mef 2728 R rec 79979563-26a9-40c0-8733-af7eeb00c42b -2023-07-08 08:18:00.161236 2023-07-08 08:18:00.161245 mef 2729 R rec cb08c351-a68f-40ef-81ff-9250149db206 -2023-07-08 08:18:00.234072 2023-07-08 08:18:00.234077 mef 2730 R rec 6836bc9a-57cd-4805-86c5-a81592091a75 -2023-07-08 08:18:00.31851 2023-07-08 08:18:00.318521 mef 2731 R rec f54a7ced-268d-4c56-bb23-94792db7125e -2023-07-08 08:18:00.409387 2023-07-08 08:18:00.409397 mef 2732 R rec 100ff0e3-d465-467a-81f1-eeb5e2950726 -2023-07-08 08:18:00.496312 2023-07-08 08:18:00.496325 mef 2733 R rec 2ce7ae3c-5c9e-471b-963f-01f513a18543 -2023-07-08 08:18:00.590428 2023-07-08 08:18:00.590437 mef 2734 R rec 12f726eb-3ba2-4df7-92ce-6b1462249286 -2023-07-08 08:18:00.685794 2023-07-08 08:18:00.685797 mef 2735 R rec 80b0fa96-4247-446e-bfd4-c4c2e07664d4 -2023-07-08 08:18:00.771413 2023-07-08 08:18:00.771423 mef 2736 R rec f8554de8-b9fc-46a4-9b0c-bb11d0e905c5 -2023-07-08 08:18:00.946802 2023-07-08 08:18:00.94683 mef 2737 R rec 41939775-c898-4fd5-8357-b197879fdcee -2023-07-08 08:18:01.046788 2023-07-08 08:18:01.046801 mef 2738 R rec 7e8539e7-e877-4394-8696-b76f85d7938b -2023-07-08 08:18:01.149319 2023-07-08 08:18:01.149335 mef 2739 R rec 43d233ae-ceb4-4c64-9cec-e65b088f0471 -2023-07-08 08:18:01.24577 2023-07-08 08:18:01.245782 mef 2740 R rec d16fe75c-de4a-4401-91da-558913d198bf -2023-07-08 08:18:01.353454 2023-07-08 08:18:01.353466 mef 2741 R rec 4134eb3a-2f98-4ef1-8aea-89fccdba4f76 -2023-07-08 08:18:01.456053 2023-07-08 08:18:01.456062 mef 2742 R rec 7ab63a55-7b06-4e33-bb76-6669ff24db5d -2023-07-08 08:18:01.556562 2023-07-08 08:18:01.556571 mef 2743 R rec 6b4ab042-72ac-477e-b66d-ed2e84975532 -2023-07-08 08:18:01.64854 2023-07-08 08:18:01.64855 mef 2744 R rec e0f62d94-d7d5-43c5-8c7c-22bbe8fcdcf5 -2023-07-08 08:18:01.726577 2023-07-08 08:18:01.726582 mef 2745 R rec b5077eca-ebee-4c71-b4f5-74f364283044 -2023-07-08 08:18:01.80778 2023-07-08 08:18:01.807794 mef 2746 R rec 437b0bfe-b1d8-4821-b293-d5f4d01937f0 -2023-07-08 08:18:01.903539 2023-07-08 08:18:01.903544 mef 2747 R rec 5af7b1a4-ac83-48c3-a634-4f9a62e39690 -2023-07-08 08:18:01.993096 2023-07-08 08:18:01.993108 mef 2748 R rec 5c4f8324-2fc5-4a29-b4fa-22ee863bf5cf -2023-07-08 08:18:02.09499 2023-07-08 08:18:02.095007 mef 2749 R rec ba4905ba-f4ac-42e1-a0de-dafa0bd8ea71 -2023-07-08 08:18:02.183869 2023-07-08 08:18:02.183879 mef 2750 R rec b9476358-db95-4ea0-a157-1a2c17fc908c -2023-07-08 08:18:02.275448 2023-07-08 08:18:02.275459 mef 2751 R rec 4291ebd5-d26b-4ab3-80d8-862bfcf7545d -2023-07-08 08:18:02.362979 2023-07-08 08:18:02.362984 mef 2752 R rec 2e72b340-4161-4ccd-a21b-38a7426cb307 -2023-07-08 08:18:02.457268 2023-07-08 08:18:02.457282 mef 2753 R rec bda0940e-f903-44b5-93fc-da22621940f1 -2023-07-08 08:18:02.541858 2023-07-08 08:18:02.54187 mef 2754 R rec c3f2b4a4-a1cf-4180-807e-438fc12ba84e -2023-07-08 08:18:02.627589 2023-07-08 08:18:02.627599 mef 2755 R rec 40e34406-5a96-4ec2-b46c-904aec825154 -2023-07-08 08:18:02.721855 2023-07-08 08:18:02.72186 mef 2756 R rec 40ad9cf9-c5f7-4af2-adea-5e8e2bf41fd8 -2023-07-08 08:18:02.805992 2023-07-08 08:18:02.806001 mef 2757 R rec 6cea7f63-f194-4114-aebe-b58958405c4b -2023-07-08 08:18:02.912219 2023-07-08 08:18:02.912232 mef 2758 R rec 4bfe5c37-54ba-4ea5-820f-958796abafb6 -2023-07-08 08:18:03.000855 2023-07-08 08:18:03.000865 mef 2759 R rec d4a82168-81b1-4c92-953a-03e87c7699de -2023-07-08 08:18:03.09707 2023-07-08 08:18:03.09708 mef 2760 R rec b053e6d5-ba5c-4152-9496-77cf83d93ce7 -2023-07-08 08:18:03.193439 2023-07-08 08:18:03.193444 mef 2761 R rec 1edb53dc-076a-4f77-b1c7-b37d01c874f1 -2023-07-08 08:18:03.282856 2023-07-08 08:18:03.282869 mef 2762 R rec 9fde8537-5db0-4393-be3e-aea556e0ee5a -2023-07-08 08:18:03.383328 2023-07-08 08:18:03.383343 mef 2763 R rec 7e214a5d-5370-4371-a3c5-9a1da8d567e1 -2023-07-08 08:18:03.462958 2023-07-08 08:18:03.462963 mef 2764 R rec 9b3f4eb4-56c7-4c95-9b63-688fbfb7ac70 -2023-07-08 08:18:03.548982 2023-07-08 08:18:03.548992 mef 2765 R rec c09166cc-885e-42ee-95ca-09083c8a58f5 -2023-07-08 08:18:03.646745 2023-07-08 08:18:03.646758 mef 2766 R rec 039a71c5-30d0-4b20-befe-7366b24be749 -2023-07-08 08:18:03.754403 2023-07-08 08:18:03.754415 mef 2767 R rec aa4cc809-80ac-4a39-a68d-0d8297763eca -2023-07-08 08:18:03.85366 2023-07-08 08:18:03.85367 mef 2768 R rec b383518a-4ae1-494a-aca3-0b5fb10f15ae -2023-07-08 08:18:03.942435 2023-07-08 08:18:03.942455 mef 2769 R rec f0b2cd31-dff1-42b3-9ea0-79ec27fbfb53 -2023-07-08 08:18:04.037963 2023-07-08 08:18:04.037973 mef 2770 R rec d8efbb38-24f0-4bbd-af53-82adb4247b72 -2023-07-08 08:18:04.140365 2023-07-08 08:18:04.140376 mef 2771 R rec 4716a690-694f-4487-869a-42718f921a7b -2023-07-08 08:18:04.223844 2023-07-08 08:18:04.223848 mef 2772 R rec e736a693-38fb-4ad6-8a85-bc96c17e20ae -2023-07-08 08:18:04.29351 2023-07-08 08:18:04.293516 mef 2773 R rec ba17c0d2-efc5-4306-a01a-ae467a675a8e -2023-07-08 08:18:04.388456 2023-07-08 08:18:04.388468 mef 2774 R rec 2c21d00b-7fef-41f0-89d4-cdba64765fe4 -2023-07-08 08:18:04.505962 2023-07-08 08:18:04.505974 mef 2775 R rec 054d14ec-79dd-4632-ae26-39bed782ac8f -2023-07-08 08:18:04.610344 2023-07-08 08:18:04.610354 mef 2776 R rec 3a96e8c3-7918-423d-8300-6a5b3d2c98bd -2023-07-08 08:18:04.704129 2023-07-08 08:18:04.704134 mef 2777 R rec 6ac65b63-5a39-4947-8e69-e32aea4adb74 -2023-07-08 08:18:04.789466 2023-07-08 08:18:04.789476 mef 2778 R rec 202dd749-926b-403a-9341-c0b84a256900 -2023-07-08 08:18:04.87932 2023-07-08 08:18:04.87933 mef 2779 R rec 8b2c3b95-cc45-4c89-9a6e-4ff845d19e41 -2023-07-08 08:18:04.979984 2023-07-08 08:18:04.979995 mef 2780 R rec 8e4dd831-d4d6-43a0-b434-ae4a3b1265c0 -2023-07-08 08:18:05.081258 2023-07-08 08:18:05.081268 mef 2781 R rec e3a18c0d-6115-44bf-aba4-4a42ba266d49 -2023-07-08 08:18:05.168047 2023-07-08 08:18:05.168065 mef 2782 R rec 1cfd2a28-ec3a-49c0-bdaa-31dcf7fe6879 -2023-07-08 08:18:05.264949 2023-07-08 08:18:05.264954 mef 2783 R rec 5eef5698-b0f8-4527-a635-1da921ef63a3 -2023-07-08 08:18:05.356423 2023-07-08 08:18:05.356428 mef 2784 R rec 2130a881-e245-47ad-ae5a-6427b671e906 -2023-07-08 08:18:05.444398 2023-07-08 08:18:05.444403 mef 2785 R rec 0dd175c8-a020-4ca7-aadb-1c4ef2e614a8 -2023-07-08 08:18:05.528486 2023-07-08 08:18:05.528498 mef 2786 R rec 5ba9da4e-5745-4b90-8e43-24fd5f3483be -2023-07-08 08:18:05.604216 2023-07-08 08:18:05.604221 mef 2787 R rec a713c00f-8590-4669-b53c-8f7ed7903fad -2023-07-08 08:18:05.698056 2023-07-08 08:18:05.698062 mef 2788 R rec ab15c6eb-1242-408b-be64-96861b965f77 -2023-07-08 08:18:05.799927 2023-07-08 08:18:05.799943 mef 2789 R rec ab672991-92b4-471c-a7c1-064901242c72 -2023-07-08 08:18:05.895292 2023-07-08 08:18:05.895302 mef 2790 R rec 1f92d2dd-5a9f-4d95-b083-d913d49a18ca -2023-07-08 08:18:05.991812 2023-07-08 08:18:05.991823 mef 2791 R rec e334c40e-0253-4066-b0c5-d0a926c0839e -2023-07-08 08:18:06.082013 2023-07-08 08:18:06.082024 mef 2792 R rec 21b8e63f-c518-4099-8872-9f16db5e648c -2023-07-08 08:18:06.170949 2023-07-08 08:18:06.170959 mef 2793 R rec a1384bdd-4d06-4a9e-8be3-1044f1c3ffd6 -2023-07-08 08:18:06.245336 2023-07-08 08:18:06.245339 mef 2794 R rec 4eef885e-44eb-4acd-9a23-8fc27a0d9acf -2023-07-08 08:18:06.318105 2023-07-08 08:18:06.318115 mef 2795 R rec 453cc254-1f47-4054-858b-fde939a150d7 -2023-07-08 08:18:06.412984 2023-07-08 08:18:06.412996 mef 2796 R rec 6d27369d-1ee1-47c5-8b6c-714400b5d80e -2023-07-08 08:18:06.518668 2023-07-08 08:18:06.518681 mef 2797 R rec ff713889-96f1-4a9b-96ba-1624093afa86 -2023-07-08 08:18:06.61153 2023-07-08 08:18:06.611535 mef 2798 R rec 33c11369-509b-4aa9-8bf7-41e75265ff81 -2023-07-08 08:18:06.697778 2023-07-08 08:18:06.697784 mef 2799 R rec aed5ae4f-85e3-4493-be53-c3ffdce5cd31 -2023-07-08 08:18:06.787717 2023-07-08 08:18:06.787722 mef 2800 R rec 5cc72a78-0de1-4479-b24b-81b6f60c5531 -2023-07-08 08:18:06.864229 2023-07-08 08:18:06.864234 mef 2801 R rec 6d523a69-57ac-4604-bbb7-b9a431f70f2f -2023-07-08 08:18:06.939081 2023-07-08 08:18:06.939086 mef 2802 R rec 9d0dfd0f-7e4b-45c8-a3b0-413dbbb7bfd5 -2023-07-08 08:18:07.010804 2023-07-08 08:18:07.010809 mef 2803 R rec 9cc7b28a-da6c-4d0a-93b3-af9c8fbd5aa9 -2023-07-08 08:18:07.080193 2023-07-08 08:18:07.080198 mef 2804 R rec 41b5761e-badf-4e99-91f7-b85b1112e938 -2023-07-08 08:18:07.154695 2023-07-08 08:18:07.1547 mef 2805 R rec 0ec3e926-95b8-4b74-9a1c-4eee2154feb2 -2023-07-08 08:18:07.234957 2023-07-08 08:18:07.234962 mef 2806 R rec 5bb9b412-c1c1-4e7a-a3d9-b099b95812c3 -2023-07-08 08:18:07.303216 2023-07-08 08:18:07.303221 mef 2807 R rec 5d9f251c-2ad0-41c2-9d33-198deb0354b4 -2023-07-08 08:18:07.377417 2023-07-08 08:18:07.37743 mef 2808 R rec 603c4acf-13f7-490f-a1e4-e14f7aa75717 -2023-07-08 08:18:07.469123 2023-07-08 08:18:07.469133 mef 2809 R rec 59da7e9a-a079-4846-8111-4cd9449e9ef0 -2023-07-08 08:18:07.564858 2023-07-08 08:18:07.564868 mef 2810 R rec 9fb9b86c-e7a3-4d12-8cd1-a4f6acde7554 -2023-07-08 08:18:07.652241 2023-07-08 08:18:07.65225 mef 2811 R rec 1340a2ff-31c1-49be-a1cd-3b55118ce0a9 -2023-07-08 08:18:07.75172 2023-07-08 08:18:07.751735 mef 2812 R rec bdd39c97-906e-4140-8b64-c98cb7e68733 -2023-07-08 08:18:07.848334 2023-07-08 08:18:07.848346 mef 2813 R rec 5202be30-112c-4e25-b6b9-6fd41e426a37 -2023-07-08 08:18:07.9406 2023-07-08 08:18:07.940609 mef 2814 R rec 7d07b712-d188-49f1-86fb-de2388217007 -2023-07-08 08:18:08.031224 2023-07-08 08:18:08.031234 mef 2815 R rec ea0a1382-4d1e-401e-b5e8-5b88cb340eed -2023-07-08 08:18:08.129632 2023-07-08 08:18:08.129647 mef 2816 R rec c1c1af2d-b760-4a94-add8-ab6fa6604d36 -2023-07-08 08:18:08.210204 2023-07-08 08:18:08.210209 mef 2817 R rec 543e40db-d210-4ea9-af32-27bbdad87fc8 -2023-07-08 08:18:08.298154 2023-07-08 08:18:08.298164 mef 2818 R rec dda19b49-1fe5-4bed-8255-4ee891f9dffe -2023-07-08 08:18:08.384627 2023-07-08 08:18:08.384632 mef 2819 R rec b3732fc4-c5ae-49b0-b9c2-54d4a8193240 -2023-07-08 08:18:08.482491 2023-07-08 08:18:08.482501 mef 2820 R rec fbf9dc59-4730-4e11-af95-1f99487e30c2 -2023-07-08 08:18:08.575621 2023-07-08 08:18:08.575632 mef 2821 R rec 461fd14e-bef2-4b00-aece-8686ac6c5fd9 -2023-07-08 08:18:08.661676 2023-07-08 08:18:08.661688 mef 2822 R rec edff8502-6f1a-4006-978e-dbe9cbe3d8a6 -2023-07-08 08:18:08.763871 2023-07-08 08:18:08.763881 mef 2823 R rec e26dd423-4ac4-4da9-bda2-48edcfcc5bf2 -2023-07-08 08:18:08.846213 2023-07-08 08:18:08.846218 mef 2824 R rec dba4ab2b-0c35-4941-8ed7-9422926303cf -2023-07-08 08:18:08.915785 2023-07-08 08:18:08.915794 mef 2825 R rec df14a2e1-24d3-4ef1-bdeb-826cfb50f1c1 -2023-07-08 08:18:09.009518 2023-07-08 08:18:09.009528 mef 2826 R rec c5b77c3b-23f0-4268-a85b-1fbaa069a79f -2023-07-08 08:18:09.11602 2023-07-08 08:18:09.11603 mef 2827 R rec 63e9dfc1-5df3-4ba2-9141-d6a1c7fed89c -2023-07-08 08:18:09.209519 2023-07-08 08:18:09.209524 mef 2828 R rec fb68bd64-30b3-4c4c-b8a8-b947ca43a795 -2023-07-08 08:18:09.292013 2023-07-08 08:18:09.292023 mef 2829 R rec 2fd198c8-0c42-45bc-a25e-e620ba2f667d -2023-07-08 08:18:09.374146 2023-07-08 08:18:09.374161 mef 2830 R rec 87e135f6-e3d5-4e72-a0f9-e64fc867e239 -2023-07-08 08:18:09.459077 2023-07-08 08:18:09.459088 mef 2831 R rec 172df8c3-fd3d-4841-9f78-996b3f4fbc02 -2023-07-08 08:18:09.548544 2023-07-08 08:18:09.548557 mef 2832 R rec 408cfced-db72-4ad4-b9dc-d1172e396744 -2023-07-08 08:18:09.646768 2023-07-08 08:18:09.646779 mef 2833 R rec 7a6af26e-795f-4934-ab7a-70031b8b707f -2023-07-08 08:18:09.743986 2023-07-08 08:18:09.743992 mef 2834 R rec a0c436cc-9d0b-4747-8aed-aa85a9a349c5 -2023-07-08 08:18:09.828975 2023-07-08 08:18:09.828985 mef 2835 R rec 160baa95-9976-410e-afde-e595b32f5f42 -2023-07-08 08:18:09.921582 2023-07-08 08:18:09.921594 mef 2836 R rec 1ed56795-e4ef-4999-b829-571a868765e0 -2023-07-08 08:18:10.016536 2023-07-08 08:18:10.016547 mef 2837 R rec 1800ce42-a56a-4cf8-b44e-a9c66976eb83 -2023-07-08 08:18:10.112146 2023-07-08 08:18:10.112161 mef 2838 R rec c0cf2179-c306-4ea4-b870-e04704f64689 -2023-07-08 08:18:10.21543 2023-07-08 08:18:10.215442 mef 2839 R rec f671e710-859d-41f3-b250-158f438cd303 -2023-07-08 08:18:10.290877 2023-07-08 08:18:10.290888 mef 2840 R rec 8426e2c2-19ac-49d3-90d6-7a2ad8268808 -2023-07-08 08:18:10.382008 2023-07-08 08:18:10.38202 mef 2841 R rec 3e19a9a0-ad57-412b-b83e-9c23c5ac04d4 -2023-07-08 08:18:10.478797 2023-07-08 08:18:10.478802 mef 2842 R rec 4cce2ffc-2359-41d2-ad24-e2d416990e26 -2023-07-08 08:18:10.559908 2023-07-08 08:18:10.559922 mef 2843 R rec f26d8ac1-af65-464a-b4a8-913b15832270 -2023-07-08 08:18:10.650212 2023-07-08 08:18:10.650225 mef 2844 R rec 9d8723e1-8089-40f5-9d60-73b5417cc3f3 -2023-07-08 08:18:10.736774 2023-07-08 08:18:10.736779 mef 2845 R rec a057d5e7-c75d-4e63-8c12-864a6c9719df -2023-07-08 08:18:10.822667 2023-07-08 08:18:10.822677 mef 2846 R rec e5509177-769b-410d-9daf-91e1d428a43e -2023-07-08 08:18:10.915694 2023-07-08 08:18:10.915699 mef 2847 R rec 96d6bc51-46de-45c8-b290-a180ea35d37a -2023-07-08 08:18:11.013017 2023-07-08 08:18:11.013027 mef 2848 R rec 54d1e7c2-1aa3-40ae-a045-f66d88dc59c4 -2023-07-08 08:18:11.112548 2023-07-08 08:18:11.112558 mef 2849 R rec e0db7b40-2d1e-4404-b70d-bba67877ffe7 -2023-07-08 08:18:11.212595 2023-07-08 08:18:11.212602 mef 2850 R rec ea9e71d7-43cf-4e45-98e3-44da724a3d66 -2023-07-08 08:18:11.286596 2023-07-08 08:18:11.2866 mef 2851 R rec a4f1122c-bf7e-4022-91d2-aab5ac564247 -2023-07-08 08:18:11.368229 2023-07-08 08:18:11.368238 mef 2852 R rec 98341341-366c-4c64-8607-d935c96ba8c4 -2023-07-08 08:18:11.464931 2023-07-08 08:18:11.464942 mef 2853 R rec 6b7ebf1e-3ac6-4dc6-8419-db7a4a6813bf -2023-07-08 08:18:11.558265 2023-07-08 08:18:11.558275 mef 2854 R rec 9a50cf31-c396-407d-be4b-9208d769192e -2023-07-08 08:18:11.655413 2023-07-08 08:18:11.655423 mef 2855 R rec 3e2af490-4e82-4914-979f-5f17162cab66 -2023-07-08 08:18:11.734507 2023-07-08 08:18:11.734512 mef 2856 R rec 201f2849-1a99-4604-aabf-fd7a23822615 -2023-07-08 08:18:11.821303 2023-07-08 08:18:11.821312 mef 2857 R rec 7f1bcd79-493d-4388-9704-1ba7cf343904 -2023-07-08 08:18:11.890417 2023-07-08 08:18:11.890422 mef 2858 R rec 66a73bcb-0073-428c-9408-8efd9838e11b -2023-07-08 08:18:11.971045 2023-07-08 08:18:11.971059 mef 2859 R rec 74b49ba2-f069-4745-8b76-ee1757ecfbdb -2023-07-08 08:18:12.059929 2023-07-08 08:18:12.059939 mef 2860 R rec e888e31d-d9a3-43e3-9704-f27910ebdd59 -2023-07-08 08:18:12.170346 2023-07-08 08:18:12.170357 mef 2861 R rec 9d3a9d00-0c09-44cd-9b69-32925f281679 -2023-07-08 08:18:12.250849 2023-07-08 08:18:12.250854 mef 2862 R rec 483c0960-f11e-4778-b66c-982bef04ef8d -2023-07-08 08:18:12.334341 2023-07-08 08:18:12.334349 mef 2863 R rec d9815a73-e83d-4217-9b8b-fc525ad703bd -2023-07-08 08:18:12.423345 2023-07-08 08:18:12.423357 mef 2864 R rec df15e68d-c027-4547-94e9-c129c2734128 -2023-07-08 08:18:12.512991 2023-07-08 08:18:12.513004 mef 2865 R rec 404d573c-889c-41a2-883d-9b4638ab608c -2023-07-08 08:18:12.599157 2023-07-08 08:18:12.599166 mef 2866 R rec e2d39823-8061-4f7c-af89-5b041464f1dc -2023-07-08 08:18:12.686252 2023-07-08 08:18:12.686262 mef 2867 R rec 8520d050-26e7-4e95-9563-cbfbeaf56cb5 -2023-07-08 08:18:12.78046 2023-07-08 08:18:12.780464 mef 2868 R rec c19ff711-49b2-4870-82cf-a328429a9d9e -2023-07-08 08:18:12.859656 2023-07-08 08:18:12.85967 mef 2869 R rec fa378912-e32d-4470-8373-d3c11a590b9b -2023-07-08 08:18:12.958989 2023-07-08 08:18:12.959003 mef 2870 R rec 7fba014c-bec1-442b-a437-5b638278edc8 -2023-07-08 08:18:13.05868 2023-07-08 08:18:13.058693 mef 2871 R rec 282bb8fc-052a-4f2a-8b8b-6de583e630f4 -2023-07-08 08:18:13.14314 2023-07-08 08:18:13.143151 mef 2872 R rec 4671ef4d-b56a-4785-af14-64d78cf4ebd9 -2023-07-08 08:18:13.227409 2023-07-08 08:18:13.227415 mef 2873 R rec fb9d99d3-2859-4840-b9c6-8c69b8d95722 -2023-07-08 08:18:13.312901 2023-07-08 08:18:13.312912 mef 2874 R rec 41ccbc54-2ce3-431b-be61-91a075e61482 -2023-07-08 08:18:13.401906 2023-07-08 08:18:13.401916 mef 2875 R rec 08d36c06-b283-408f-98cf-804b96f2c08a -2023-07-08 08:18:13.509516 2023-07-08 08:18:13.509531 mef 2876 R rec 5a3ac2e1-ab97-49a8-b296-0ea902df7496 -2023-07-08 08:18:13.607999 2023-07-08 08:18:13.608014 mef 2877 R rec 5e329618-85ed-41b0-95fa-d1977a486ff7 -2023-07-08 08:18:13.707786 2023-07-08 08:18:13.707795 mef 2878 R rec ad92aaa4-a28d-4ce1-8c39-0fbb00ea1b6e -2023-07-08 08:18:13.810692 2023-07-08 08:18:13.810702 mef 2879 R rec 008130fe-a5ee-4692-aaf5-fe3bcb1344c8 -2023-07-08 08:18:13.902314 2023-07-08 08:18:13.902319 mef 2880 R rec 4c6a9087-0186-4973-8dcc-1ecc739f7c87 -2023-07-08 08:18:13.995987 2023-07-08 08:18:13.995992 mef 2881 R rec 97707ea2-7a2c-49be-9d24-6b9c4f1090db -2023-07-08 08:18:14.09813 2023-07-08 08:18:14.098135 mef 2882 R rec 0e7e0faf-5589-4500-9568-6543d8173cab -2023-07-08 08:18:14.185153 2023-07-08 08:18:14.185163 mef 2883 R rec 46138372-254f-4aa1-8e10-823fa4f48940 -2023-07-08 08:18:14.258518 2023-07-08 08:18:14.258523 mef 2884 R rec 56bdff00-f967-45af-aea8-c122dad9f06b -2023-07-08 08:18:14.352121 2023-07-08 08:18:14.352132 mef 2885 R rec 8bf3dac1-dde6-4c07-924c-a3aa14d0932d -2023-07-08 08:18:14.437457 2023-07-08 08:18:14.437462 mef 2886 R rec 340728bd-d720-4e4e-9271-1331c9d93814 -2023-07-08 08:18:14.526554 2023-07-08 08:18:14.526565 mef 2887 R rec 17e77489-1818-4019-85fb-98348ef55806 -2023-07-08 08:18:14.612728 2023-07-08 08:18:14.612733 mef 2888 R rec b51c8620-135e-48cc-ab86-f7587c5cdcf5 -2023-07-08 08:18:14.695169 2023-07-08 08:18:14.695183 mef 2889 R rec d0ebdb96-21fd-4a57-a667-76ca9d7ddc26 -2023-07-08 08:18:14.787938 2023-07-08 08:18:14.787948 mef 2890 R rec 3e3c9e4e-cbae-47ec-82b0-9b5f4641372a -2023-07-08 08:18:14.891682 2023-07-08 08:18:14.891692 mef 2891 R rec 1a5497fc-58bc-4d6d-af62-ef67fb233952 -2023-07-08 08:18:14.97718 2023-07-08 08:18:14.97719 mef 2892 R rec 7c45ea15-a892-40ea-aa27-9730e6a83738 -2023-07-08 08:18:15.066542 2023-07-08 08:18:15.066552 mef 2893 R rec 8f1738e7-7e23-4639-9e4d-7f632b0ee7f0 -2023-07-08 08:18:15.164779 2023-07-08 08:18:15.164793 mef 2894 R rec 667da5ce-913e-4139-9241-66367d08d717 -2023-07-08 08:18:15.252463 2023-07-08 08:18:15.252466 mef 2895 R rec cc081c62-597f-4651-a810-a86cb14c02f1 -2023-07-08 08:18:15.341202 2023-07-08 08:18:15.341211 mef 2896 R rec 4bce365a-06cc-4b21-a9fa-62d977a502fb -2023-07-08 08:18:15.440947 2023-07-08 08:18:15.440957 mef 2897 R rec 01485aa3-d8e9-4fc7-8772-ecdf2e671070 -2023-07-08 08:18:15.521004 2023-07-08 08:18:15.521009 mef 2898 R rec 40567258-2903-4402-986b-d4273b625ccf -2023-07-08 08:18:15.607549 2023-07-08 08:18:15.60756 mef 2899 R rec af5ee09b-e26a-4cc2-a126-19a2e2d39fd2 -2023-07-08 08:18:15.701294 2023-07-08 08:18:15.701304 mef 2900 R rec 7a7cfae6-16a1-42c7-9bad-2cf3b1ed65b9 -2023-07-08 08:18:15.803663 2023-07-08 08:18:15.803675 mef 2901 R rec f013397b-d88c-4983-9919-b661ef7b0c15 -2023-07-08 08:18:15.892489 2023-07-08 08:18:15.892499 mef 2902 R rec 49d55153-7644-407a-a872-9836db7256d0 -2023-07-08 08:18:15.993244 2023-07-08 08:18:15.993254 mef 2903 R rec 06690774-2054-47b1-9500-f1ddfd95b830 -2023-07-08 08:18:16.08225 2023-07-08 08:18:16.082263 mef 2904 R rec 8bb0e138-8498-4dd4-9701-fad0823c239e -2023-07-08 08:18:16.171285 2023-07-08 08:18:16.171299 mef 2905 R rec 1cac8647-344c-439f-a7a0-03f13fa374f3 -2023-07-08 08:18:16.260954 2023-07-08 08:18:16.260965 mef 2906 R rec 98c09065-1d54-43b0-a123-aee4bb5d27ff -2023-07-08 08:18:16.352371 2023-07-08 08:18:16.352381 mef 2907 R rec e21abf07-182f-462e-a715-6ad37904275f -2023-07-08 08:18:16.443981 2023-07-08 08:18:16.443993 mef 2908 R rec 0f8b6fbc-ead2-434a-b0b3-26cde0f452de -2023-07-08 08:18:16.534006 2023-07-08 08:18:16.534016 mef 2909 R rec 99cb3370-1761-4cd7-8efa-abc765d6c5f7 -2023-07-08 08:18:16.627508 2023-07-08 08:18:16.62752 mef 2910 R rec 62651117-8fbd-4533-bfce-61a312381838 -2023-07-08 08:18:16.707979 2023-07-08 08:18:16.707984 mef 2911 R rec 80475ad9-00eb-4981-997e-177bc878bbb2 -2023-07-08 08:18:16.78768 2023-07-08 08:18:16.78769 mef 2912 R rec 35f4f815-c04f-4e1e-8bd6-3244a047c4b3 -2023-07-08 08:18:16.87883 2023-07-08 08:18:16.878841 mef 2913 R rec 277fb3a9-859f-47c2-97ef-d3f173e0fa9d -2023-07-08 08:18:16.967093 2023-07-08 08:18:16.967097 mef 2914 R rec f48852eb-3c64-49aa-99b8-8a4bac31fa8a -2023-07-08 08:18:17.03905 2023-07-08 08:18:17.039055 mef 2915 R rec 107fae20-4f18-41ef-9299-d2b2d95f1e1b -2023-07-08 08:18:17.130086 2023-07-08 08:18:17.130093 mef 2916 R rec 149dbe49-dfe9-41c0-b281-e5064bd5c18e -2023-07-08 08:18:17.219781 2023-07-08 08:18:17.219786 mef 2917 R rec 38c9c584-b113-4091-86ff-ebb1a5417077 -2023-07-08 08:18:17.313381 2023-07-08 08:18:17.313394 mef 2918 R rec 12ecfa6e-46eb-4113-a9d8-ad8d014a61ef -2023-07-08 08:18:17.409512 2023-07-08 08:18:17.409517 mef 2919 R rec aad94967-8d68-4ce0-a4a2-aeb06d51a864 -2023-07-08 08:18:17.500319 2023-07-08 08:18:17.500331 mef 2920 R rec 8336c219-75a7-4212-93eb-700127dcf3ab -2023-07-08 08:18:17.608354 2023-07-08 08:18:17.608366 mef 2921 R rec 793ff995-ce2b-4a1d-8dd0-33227ecc1500 -2023-07-08 08:18:17.701457 2023-07-08 08:18:17.701474 mef 2922 R rec 0ddc657f-9b0b-4dcd-bd94-c078252083cc -2023-07-08 08:18:17.798353 2023-07-08 08:18:17.798366 mef 2923 R rec a1654e8c-3886-4bc3-ad27-39c05f928bdc -2023-07-08 08:18:17.895289 2023-07-08 08:18:17.895298 mef 2924 R rec 8f978990-7061-41f2-9ddd-8b6c360bd9d2 -2023-07-08 08:18:18.001597 2023-07-08 08:18:18.001608 mef 2925 R rec 4c7cd28f-c9a3-4948-9754-a1d87a7cb809 -2023-07-08 08:18:18.094355 2023-07-08 08:18:18.094368 mef 2926 R rec ee988c7c-a335-46f4-af7a-89c51fdd03f9 -2023-07-08 08:18:18.199494 2023-07-08 08:18:18.199504 mef 2927 R rec 1aa98863-6b63-4b3f-81f5-87a4e306d6a7 -2023-07-08 08:18:18.297612 2023-07-08 08:18:18.297627 mef 2928 R rec 603d37bd-5481-4870-8d08-6001e6ab3de3 -2023-07-08 08:18:18.385137 2023-07-08 08:18:18.385148 mef 2929 R rec 0fec210e-a659-4a51-a04f-8c0ddedeba4b -2023-07-08 08:18:18.482382 2023-07-08 08:18:18.482386 mef 2930 R rec 9e2ecc43-139d-4505-a1c5-db75e874dd06 -2023-07-08 08:18:18.571658 2023-07-08 08:18:18.571674 mef 2931 R rec f0ee18f4-7a4c-4fa1-b2fa-b9f37f64b9bf -2023-07-08 08:18:18.664137 2023-07-08 08:18:18.664149 mef 2932 R rec a9ed59dd-067f-40d3-8ebf-e48ff2baf268 -2023-07-08 08:18:18.753347 2023-07-08 08:18:18.753352 mef 2933 R rec 00e1f9ea-0544-44a7-8f8e-2f8f66120482 -2023-07-08 08:18:18.833712 2023-07-08 08:18:18.833716 mef 2934 R rec 02e36d42-07aa-4ea0-8349-13ae64d235b1 -2023-07-08 08:18:18.914394 2023-07-08 08:18:18.914404 mef 2935 R rec 45e18d55-8cec-4017-9642-ce94ef254cec -2023-07-08 08:18:19.010169 2023-07-08 08:18:19.010436 mef 2936 R rec c6944d91-3ffe-4fab-9c26-bbc5c2161c90 -2023-07-08 08:18:19.101726 2023-07-08 08:18:19.101739 mef 2937 R rec 326cb412-0290-426b-b4e8-36e682a8fa22 -2023-07-08 08:18:19.187689 2023-07-08 08:18:19.1877 mef 2938 R rec 1f8f2500-7f3b-497f-81a4-e3bded24d1b4 -2023-07-08 08:18:19.268368 2023-07-08 08:18:19.268373 mef 2939 R rec 04cf387f-1e03-4a90-90c4-00fcf5561387 -2023-07-08 08:18:19.354533 2023-07-08 08:18:19.354543 mef 2940 R rec 4d01ee93-ef70-435e-88f2-8e00c10a16ee -2023-07-08 08:18:19.442023 2023-07-08 08:18:19.442035 mef 2941 R rec a4ba99ae-f073-4a33-8aa1-3549cad8cc9e -2023-07-08 08:18:19.53401 2023-07-08 08:18:19.534015 mef 2942 R rec 1eff6dd8-7d77-4aa6-be84-d66962204871 -2023-07-08 08:18:19.621506 2023-07-08 08:18:19.621513 mef 2943 R rec 39f7e33b-7067-440d-82f8-e4457b6ea689 -2023-07-08 08:18:19.707612 2023-07-08 08:18:19.707622 mef 2944 R rec 480f85aa-6358-49ef-9834-aa64ce2754e3 -2023-07-08 08:18:19.808338 2023-07-08 08:18:19.808348 mef 2945 R rec 5084ac6c-6bfc-4a08-9419-4e9ea4e9ae43 -2023-07-08 08:18:19.883692 2023-07-08 08:18:19.883697 mef 2946 R rec 6ac74bb0-5aea-40fd-af07-2cbbee582a79 -2023-07-08 08:18:19.962553 2023-07-08 08:18:19.962558 mef 2947 R rec a0ea49c9-c89e-4f9b-899a-cf0f0ff13d7a -2023-07-08 08:18:20.050835 2023-07-08 08:18:20.050845 mef 2948 R rec fe009840-36eb-410b-ae13-bb54c68afc70 -2023-07-08 08:18:20.141966 2023-07-08 08:18:20.141974 mef 2949 R rec 9f176f3f-e36d-4637-b0b6-7797ea9f607c -2023-07-08 08:18:20.230688 2023-07-08 08:18:20.230692 mef 2950 R rec 7264e724-ba6e-45e3-81a2-256df9631861 -2023-07-08 08:18:20.316252 2023-07-08 08:18:20.316273 mef 2951 R rec 3d09f326-e048-4524-a232-401b3e3e6c11 -2023-07-08 08:18:20.417451 2023-07-08 08:18:20.417457 mef 2952 R rec e95ca1c0-0358-45ac-bee6-0830574e96db -2023-07-08 08:18:20.517208 2023-07-08 08:18:20.517221 mef 2953 R rec 4d3cacbb-20de-405d-a1ca-c43ec1fd12d1 -2023-07-08 08:18:20.610333 2023-07-08 08:18:20.610345 mef 2954 R rec 93d0d4a7-4872-40ff-a5f8-a6cf8ca57f0a -2023-07-08 08:18:20.70141 2023-07-08 08:18:20.70142 mef 2955 R rec 98e73f1e-a300-4f7c-a315-60ccd3d98043 -2023-07-08 08:18:20.775085 2023-07-08 08:18:20.775089 mef 2956 R rec ae0338d2-dbfc-4ad9-a586-ab30dff4cf45 -2023-07-08 08:18:20.859903 2023-07-08 08:18:20.859914 mef 2957 R rec 9806a83d-1573-40ec-a4ad-6ddadcc8f1ef -2023-07-08 08:18:20.948359 2023-07-08 08:18:20.948369 mef 2958 R rec 15e69743-b44f-4455-90cb-cfd559eaf3b8 -2023-07-08 08:18:21.04412 2023-07-08 08:18:21.044131 mef 2959 R rec fe5d1cda-5aff-4728-9a9b-724ed068f704 -2023-07-08 08:18:21.136408 2023-07-08 08:18:21.136418 mef 2960 R rec 81bae117-b0bf-4ad4-a24f-55475f2a495c -2023-07-08 08:18:21.226252 2023-07-08 08:18:21.226258 mef 2961 R rec 01b70fb3-46de-4331-8dd4-c4e97f10ecda -2023-07-08 08:18:21.328985 2023-07-08 08:18:21.328996 mef 2962 R rec 4c9025d9-29a8-406f-91d5-89b7e87ea219 -2023-07-08 08:18:21.408032 2023-07-08 08:18:21.408037 mef 2963 R rec 595ce7bc-6f9c-4ff6-8a9b-8e3669a390d4 -2023-07-08 08:18:21.497361 2023-07-08 08:18:21.497374 mef 2964 R rec e07d4eec-c084-4016-ab43-c9dbfeb0e42e -2023-07-08 08:18:21.600719 2023-07-08 08:18:21.600729 mef 2965 R rec 7148f9db-0aeb-4c77-9776-1a6e32b03636 -2023-07-08 08:18:21.686797 2023-07-08 08:18:21.686801 mef 2966 R rec e438c7e2-d659-4c10-8485-3946e7f50258 -2023-07-08 08:18:21.767682 2023-07-08 08:18:21.767687 mef 2967 R rec f45bd4a9-986a-4397-af08-69e0471123bf -2023-07-08 08:18:21.866586 2023-07-08 08:18:21.866598 mef 2968 R rec d319b73a-fa73-489b-ab26-e077e15cc895 -2023-07-08 08:18:21.962558 2023-07-08 08:18:21.96257 mef 2969 R rec 71872810-5514-4520-93e2-846a6a983e34 -2023-07-08 08:18:22.063339 2023-07-08 08:18:22.063349 mef 2970 R rec 74fed2f9-d8b8-4dd8-9de2-a59030937580 -2023-07-08 08:18:22.164887 2023-07-08 08:18:22.164897 mef 2971 R rec 21b5cd65-2231-4688-b0fa-632b91986a6b -2023-07-08 08:18:22.254704 2023-07-08 08:18:22.254709 mef 2972 R rec b2ae93b6-cb60-4bf2-9e71-8d4d61f03efb -2023-07-08 08:18:22.353142 2023-07-08 08:18:22.353156 mef 2973 R rec 183108f3-499f-42a0-8de9-20aebab25cdb -2023-07-08 08:18:22.44688 2023-07-08 08:18:22.446887 mef 2974 R rec ced11fbc-3575-48ce-9c43-6ee30877f155 -2023-07-08 08:18:22.5365 2023-07-08 08:18:22.536507 mef 2975 R rec 92f742b1-b662-401e-934c-4cd2d6b5a74c -2023-07-08 08:18:22.623295 2023-07-08 08:18:22.62331 mef 2976 R rec 1a8ab94e-dd0a-498e-979c-57c7cbca9e52 -2023-07-08 08:18:22.726847 2023-07-08 08:18:22.726854 mef 2977 R rec afd516be-2b8c-4373-9ab5-ff5f8c7170d1 -2023-07-08 08:18:22.811911 2023-07-08 08:18:22.811926 mef 2978 R rec 9176bd58-6ca4-4366-ac9f-efabfa54edde -2023-07-08 08:18:22.91138 2023-07-08 08:18:22.911391 mef 2979 R rec ed517a96-dc7a-4a57-9696-660e298e74ac -2023-07-08 08:18:23.013086 2023-07-08 08:18:23.013096 mef 2980 R rec e9b454f4-68d6-415f-8302-4a7fd096ebb2 -2023-07-08 08:18:23.117634 2023-07-08 08:18:23.117649 mef 2981 R rec 5fe59028-9157-4f8f-8229-5612d3702df1 -2023-07-08 08:18:23.207377 2023-07-08 08:18:23.207388 mef 2982 R rec 00dc7705-6371-4718-bb7d-c5c69629e7c9 -2023-07-08 08:18:23.280783 2023-07-08 08:18:23.280787 mef 2983 R rec d10f33ac-7ae3-452f-bcc9-37d9e945b7f2 -2023-07-08 08:18:23.362338 2023-07-08 08:18:23.362348 mef 2984 R rec 50be9687-1535-4f9b-a92f-208dc3027eec -2023-07-08 08:18:23.467683 2023-07-08 08:18:23.467697 mef 2985 R rec 1ca098e0-3037-47b4-979c-c9f3da7025a7 -2023-07-08 08:18:23.548531 2023-07-08 08:18:23.548536 mef 2986 R rec ac14937e-64b9-41e9-9b6a-6ce506b96eac -2023-07-08 08:18:23.631662 2023-07-08 08:18:23.631675 mef 2987 R rec 3cfe27da-6f67-460e-8d19-fa9457d2fe8e -2023-07-08 08:18:23.731628 2023-07-08 08:18:23.73164 mef 2988 R rec 164bf4ee-9772-40b0-a7e4-e4f5807c8480 -2023-07-08 08:18:23.812906 2023-07-08 08:18:23.812926 mef 2989 R rec d055a042-de84-4c99-aced-605e0200b20e -2023-07-08 08:18:23.904232 2023-07-08 08:18:23.904241 mef 2990 R rec 0fcdd759-aa22-40ef-bdad-fb4fb266ed88 -2023-07-08 08:18:23.997636 2023-07-08 08:18:23.997649 mef 2991 R rec 1ee01f6a-be24-4d56-9b60-a198783ad540 -2023-07-08 08:18:24.085742 2023-07-08 08:18:24.085748 mef 2992 R rec aa238dfa-2922-4338-940f-23327f4308ff -2023-07-08 08:18:24.166759 2023-07-08 08:18:24.166769 mef 2993 R rec 923b5fad-27ea-4090-b82d-c53a3b3a6770 -2023-07-08 08:18:24.249979 2023-07-08 08:18:24.249984 mef 2994 R rec 6ebe4911-4cf0-4caf-bea0-b5aec4e6d095 -2023-07-08 08:18:24.334825 2023-07-08 08:18:24.334837 mef 2995 R rec 187283c7-9d8e-4247-a856-7ff76d04716b -2023-07-08 08:18:24.425039 2023-07-08 08:18:24.425055 mef 2996 R rec ff6d7189-838c-459a-9dab-174001a5fa53 -2023-07-08 08:18:24.51146 2023-07-08 08:18:24.511471 mef 2997 R rec bf74ac87-b1e5-4542-9369-b18f75a89ea6 -2023-07-08 08:18:24.612725 2023-07-08 08:18:24.612739 mef 2998 R rec d7f83323-1e02-419a-90c9-1e1122580512 -2023-07-08 08:18:24.705821 2023-07-08 08:18:24.705831 mef 2999 R rec fef5678f-0a0d-4d55-99e4-ae9c2a20fc1e -2023-07-08 08:18:24.786407 2023-07-08 08:18:24.786431 mef 3000 R rec fda0d463-8e61-4d64-87bb-65b240cf6377 -2023-07-08 08:18:24.905609 2023-07-08 08:18:24.905622 mef 3001 R rec c5098176-52c6-4e14-8591-0abb7b7c7393 -2023-07-08 08:18:24.990006 2023-07-08 08:18:24.990017 mef 3002 R rec ebfe3caa-a576-4ec1-9d37-1191e425d3b8 -2023-07-08 08:18:25.079463 2023-07-08 08:18:25.079474 mef 3003 R rec 13d9fe47-79cb-4558-a384-6e23768a6016 -2023-07-08 08:18:25.173072 2023-07-08 08:18:25.173081 mef 3004 R rec e0a04dc3-3a97-4fee-af4e-09d0dc79e835 -2023-07-08 08:18:25.263714 2023-07-08 08:18:25.263725 mef 3005 R rec de7d8ebe-61ff-4ca1-b833-7a9f4fe27f34 -2023-07-08 08:18:25.347735 2023-07-08 08:18:25.347741 mef 3006 R rec 33dda1e6-e580-44e8-b369-72af6e752ab9 -2023-07-08 08:18:25.414422 2023-07-08 08:18:25.414427 mef 3007 R rec c5f4faee-57e6-4f3b-a72c-282fe372d002 -2023-07-08 08:18:25.496576 2023-07-08 08:18:25.49659 mef 3008 R rec 26c53ce0-c3f1-47b3-b074-908cf17f1eb4 -2023-07-08 08:18:25.589291 2023-07-08 08:18:25.589301 mef 3009 R rec 1d78e3d9-9cca-47fa-ac66-e56a1ae48a65 -2023-07-08 08:18:25.693577 2023-07-08 08:18:25.693591 mef 3010 R rec ce9a3f6c-838c-4fcf-8d79-71851bc30dcb -2023-07-08 08:18:25.800836 2023-07-08 08:18:25.800847 mef 3011 R rec c5e1b9fd-9078-4c7e-ac30-ca5396521dea -2023-07-08 08:18:25.900715 2023-07-08 08:18:25.900728 mef 3012 R rec d99abfc4-f476-48c9-9c15-9e89b96323ae -2023-07-08 08:18:25.992384 2023-07-08 08:18:25.992389 mef 3013 R rec 8c29dcab-8b01-4dda-a1b1-1e9e9d14b253 -2023-07-08 08:18:26.076182 2023-07-08 08:18:26.076193 mef 3014 R rec a0b056be-5970-408f-a9ac-fad7d73f527d -2023-07-08 08:18:26.185737 2023-07-08 08:18:26.185752 mef 3015 R rec 17e1f6cb-4f4b-47f4-a6a0-0eb9f5937a53 -2023-07-08 08:18:26.266854 2023-07-08 08:18:26.266859 mef 3016 R rec 6efdaccd-a388-47fd-b159-bea3939ec500 -2023-07-08 08:18:26.339815 2023-07-08 08:18:26.33982 mef 3017 R rec c7272c15-311c-4a9a-85f2-104bd5bce6bc -2023-07-08 08:18:26.43147 2023-07-08 08:18:26.431481 mef 3018 R rec b5fe5baf-7d5c-401d-a24c-dd90be175cc7 -2023-07-08 08:18:26.519421 2023-07-08 08:18:26.519427 mef 3019 R rec d39eb0bd-abd7-4840-ab24-0ca6d94faa08 -2023-07-08 08:18:26.601938 2023-07-08 08:18:26.601943 mef 3020 R rec 8e3d3b9e-ee64-46dc-b85a-30482bc644a1 -2023-07-08 08:18:26.701486 2023-07-08 08:18:26.701498 mef 3021 R rec 6921d575-88ea-41a0-96a8-85572536d050 -2023-07-08 08:18:26.785355 2023-07-08 08:18:26.785359 mef 3022 R rec 25b30dfa-ee64-4b42-b56f-cca52136b9a9 -2023-07-08 08:18:26.882576 2023-07-08 08:18:26.882585 mef 3023 R rec 51581b86-cdae-4db1-9425-56b59d6722b0 -2023-07-08 08:18:26.988606 2023-07-08 08:18:26.988611 mef 3024 R rec e802e4a4-31e3-48e7-a998-fd1b14bc2246 -2023-07-08 08:18:27.060094 2023-07-08 08:18:27.060099 mef 3025 R rec d7a84425-00b6-45f8-93a8-3c10a378ea92 -2023-07-08 08:18:27.175536 2023-07-08 08:18:27.175547 mef 3026 R rec 9259b05b-75e9-46a8-9fe3-440828661c12 -2023-07-08 08:18:27.321228 2023-07-08 08:18:27.321239 mef 3027 R rec e130ef5c-4037-4276-be66-3613afb16cea -2023-07-08 08:18:27.437065 2023-07-08 08:18:27.437077 mef 3028 R rec 98cc91f1-b42f-4b79-9293-0cdb8e52a9ca -2023-07-08 08:18:27.557835 2023-07-08 08:18:27.557848 mef 3029 R rec a1f9d18b-cced-4bfe-89b2-7c094836280e -2023-07-08 08:18:27.681491 2023-07-08 08:18:27.681505 mef 3030 R rec 2f00f559-2231-4cff-ac1b-df4c47ef7d20 -2023-07-08 08:18:27.785149 2023-07-08 08:18:27.785163 mef 3031 R rec bdb920ba-c3e5-4219-95c9-b27ef7b8fbb3 -2023-07-08 08:18:27.884248 2023-07-08 08:18:27.88426 mef 3032 R rec 3e3dcca8-b8e7-45c5-9909-9f6d8d996e5d -2023-07-08 08:18:28.021905 2023-07-08 08:18:28.02192 mef 3033 R rec e379b6ed-0d7e-4ab5-9182-4e67cc195ed1 -2023-07-08 08:18:28.129986 2023-07-08 08:18:28.129997 mef 3034 R rec 22f7ee97-3f85-4201-8890-7d110447be90 -2023-07-08 08:18:28.230458 2023-07-08 08:18:28.230469 mef 3035 R rec fc9d1145-c5a8-4888-b367-79f94d0be552 -2023-07-08 08:18:28.350299 2023-07-08 08:18:28.350314 mef 3036 R rec e8583d46-2125-471f-a9da-a75dd6f5e310 -2023-07-08 08:18:28.454999 2023-07-08 08:18:28.455012 mef 3037 R rec 67c2f99d-0873-4a9a-9cde-6927d23b5c77 -2023-07-08 08:18:28.551063 2023-07-08 08:18:28.551073 mef 3038 R rec e9466d2e-d7a6-4883-82ec-a7a7fc973c49 -2023-07-08 08:18:28.656763 2023-07-08 08:18:28.656779 mef 3039 R rec be189137-acb7-40d1-a4c8-c54be7d0156d -2023-07-08 08:18:28.773945 2023-07-08 08:18:28.773955 mef 3040 R rec 248ad68e-d31f-4e27-8513-f5a696d83b1a -2023-07-08 08:18:28.891256 2023-07-08 08:18:28.891265 mef 3041 R rec 22f54d88-d19f-4b27-afed-1b5ba0f7272b -2023-07-08 08:18:29.009737 2023-07-08 08:18:29.00975 mef 3042 R rec 759de499-aea7-40b6-9454-0d6179e988bc -2023-07-08 08:18:29.109298 2023-07-08 08:18:29.109309 mef 3043 R rec 8ea6f5f8-3534-47d8-a350-3267283499f1 -2023-07-08 08:18:29.211707 2023-07-08 08:18:29.211719 mef 3044 R rec 0aea3da9-5570-4d02-8aa6-941c48515ab4 -2023-07-08 08:18:29.322584 2023-07-08 08:18:29.322597 mef 3045 R rec 7fd6e448-6d32-4d58-82d7-fc2a285e7c33 -2023-07-08 08:18:29.430563 2023-07-08 08:18:29.430575 mef 3046 R rec 98b41ce5-1053-4cb3-8bd4-16772ba4759b -2023-07-08 08:18:29.535811 2023-07-08 08:18:29.535822 mef 3047 R rec 616ba511-ce1b-4766-a08a-3c6c3741a3f3 -2023-07-08 08:18:29.654056 2023-07-08 08:18:29.654069 mef 3048 R rec 92bcad4e-120a-422d-ad6a-1e71b43d181a -2023-07-08 08:18:29.756944 2023-07-08 08:18:29.756955 mef 3049 R rec 9f8bf181-c790-42ab-b6c6-6ff668f27b1f -2023-07-08 08:18:29.882254 2023-07-08 08:18:29.882272 mef 3050 R rec 6dea4be5-784b-4754-815d-0fea70d48ce2 -2023-07-08 08:18:30.008599 2023-07-08 08:18:30.008612 mef 3051 R rec be23ec9b-f4fc-47c9-a638-56a54fb8fd9f -2023-07-08 08:18:30.128238 2023-07-08 08:18:30.128251 mef 3052 R rec d5a8eb76-0be7-4371-8954-9c528c8c9d68 -2023-07-08 08:18:30.233107 2023-07-08 08:18:30.233117 mef 3053 R rec a8027743-3304-4ca2-9015-2d55ff414bce -2023-07-08 08:18:30.333464 2023-07-08 08:18:30.333479 mef 3054 R rec ee44520e-5f2f-4f96-a758-238bb8202460 -2023-07-08 08:18:30.43885 2023-07-08 08:18:30.438862 mef 3055 R rec 9959ad66-fe9d-47f4-a8d7-e96eb21599e9 -2023-07-08 08:18:30.544548 2023-07-08 08:18:30.544553 mef 3056 R rec 42f228eb-43c5-4d16-8c78-5913183365e2 -2023-07-08 08:18:30.635421 2023-07-08 08:18:30.635434 mef 3057 R rec 2e52bde3-5b22-48a1-90d1-3fd8d646f552 -2023-07-08 08:18:30.742366 2023-07-08 08:18:30.742377 mef 3058 R rec 153cf345-b5a8-4821-8a13-e8c01b3a0c00 -2023-07-08 08:18:30.858734 2023-07-08 08:18:30.858743 mef 3059 R rec 9233eb77-d5f0-4093-a1ca-657044e9d481 -2023-07-08 08:18:30.973036 2023-07-08 08:18:30.973049 mef 3060 R rec 660d64be-d01b-4bf6-bc7e-732cbe44f18e -2023-07-08 08:18:31.080992 2023-07-08 08:18:31.081002 mef 3061 R rec 7eaf971f-5467-4707-a8e0-78f58a1b7b60 -2023-07-08 08:18:31.184623 2023-07-08 08:18:31.184638 mef 3062 R rec 5a961192-bc39-427a-a199-3c06fa670c48 -2023-07-08 08:18:31.29241 2023-07-08 08:18:31.292423 mef 3063 R rec 52ec22c3-d2be-4002-8409-734d57b35fa6 -2023-07-08 08:18:31.416302 2023-07-08 08:18:31.416315 mef 3064 R rec fd96ae6d-58c6-4b2e-918c-2204c408e4bc -2023-07-08 08:18:31.516208 2023-07-08 08:18:31.51622 mef 3065 R rec 631cf3a8-771a-4465-9337-ceca0a9edc93 -2023-07-08 08:18:31.628764 2023-07-08 08:18:31.628774 mef 3066 R rec 0be8db43-d5ec-4ae5-bf53-937240ee6c2a -2023-07-08 08:18:31.746407 2023-07-08 08:18:31.746417 mef 3067 R rec 45f9827c-4468-4b0b-8ba4-21bf03bad9d8 -2023-07-08 08:18:31.836404 2023-07-08 08:18:31.836415 mef 3068 R rec e67cae8d-5746-4dfb-bcbe-8171ad4112e9 -2023-07-08 08:18:31.937587 2023-07-08 08:18:31.937603 mef 3069 R rec 602f0bb2-85c9-4fec-80ad-fb819ff9baea -2023-07-08 08:18:32.059228 2023-07-08 08:18:32.059239 mef 3070 R rec 4c04c691-e9c6-4593-afd0-acf9e9ddc794 -2023-07-08 08:18:32.160096 2023-07-08 08:18:32.160109 mef 3071 R rec 5b867c41-71e9-4a4a-b28a-acd7c52d9fa6 -2023-07-08 08:18:32.262991 2023-07-08 08:18:32.263003 mef 3072 R rec 23939690-9d14-46b7-a223-0180397cc7b3 -2023-07-08 08:18:32.358444 2023-07-08 08:18:32.358459 mef 3073 R rec a033c5df-0589-4cb2-a4ac-21064847f2bb -2023-07-08 08:18:32.471912 2023-07-08 08:18:32.471924 mef 3074 R rec 874c28b7-fef3-4095-a4eb-8be8e1739142 -2023-07-08 08:18:32.582706 2023-07-08 08:18:32.582718 mef 3075 R rec 521b8957-75d5-403b-adad-b9ce73fdca0c -2023-07-08 08:18:32.704562 2023-07-08 08:18:32.704576 mef 3076 R rec f4a86baf-e165-4bf8-b3f9-ea8b0ed1e220 -2023-07-08 08:18:32.83786 2023-07-08 08:18:32.837877 mef 3077 R rec 018c4b98-9ed4-4e11-8164-a6b7e70344c7 -2023-07-08 08:18:32.948557 2023-07-08 08:18:32.948564 mef 3078 R rec 807bca96-5eff-4d7d-b459-6e08a7cba28f -2023-07-08 08:18:33.052726 2023-07-08 08:18:33.052738 mef 3079 R rec fe151072-df7a-43fe-a208-4309c000e8ad -2023-07-08 08:18:33.17832 2023-07-08 08:18:33.178331 mef 3080 R rec 24e2eb56-aef3-451c-9336-e8cf78e8b6af -2023-07-08 08:18:33.28636 2023-07-08 08:18:33.286365 mef 3081 R rec 560d0c2d-8624-4066-b863-e49e989f024c -2023-07-08 08:18:33.383213 2023-07-08 08:18:33.383226 mef 3082 R rec 22c9c91c-a56d-44a8-a386-d2dc142e7964 -2023-07-08 08:18:33.503075 2023-07-08 08:18:33.503091 mef 3083 R rec 89446923-b14d-4729-a38d-3daa0bb2e1fe -2023-07-08 08:18:33.632468 2023-07-08 08:18:33.632478 mef 3084 R rec 844188ef-724c-4f0a-8b21-279e3cbd62a4 -2023-07-08 08:18:33.747626 2023-07-08 08:18:33.747636 mef 3085 R rec f8851f0f-3836-4c9a-97f4-e6a483ee2278 -2023-07-08 08:18:33.854694 2023-07-08 08:18:33.854707 mef 3086 R rec c860ac7b-ec13-4418-9c35-0da2e48b7833 -2023-07-08 08:18:33.9621 2023-07-08 08:18:33.962115 mef 3087 R rec 9e198243-f04f-43b8-b128-ee4b0bc61dc7 -2023-07-08 08:18:34.063924 2023-07-08 08:18:34.063929 mef 3088 R rec 0ea32df9-3fdb-4b85-960a-a4b0cd1b6099 -2023-07-08 08:18:34.175469 2023-07-08 08:18:34.175479 mef 3089 R rec 662e1d75-af78-4c76-8033-8d081db04f68 -2023-07-08 08:18:34.312511 2023-07-08 08:18:34.312522 mef 3090 R rec 8d5dbe5a-ebdf-4f92-bcc9-e34c920a4f6b -2023-07-08 08:18:34.423461 2023-07-08 08:18:34.423471 mef 3091 R rec ff59dfd9-09ed-415e-b125-3cec87a28ae3 -2023-07-08 08:18:34.520776 2023-07-08 08:18:34.520788 mef 3092 R rec 7a2c203b-bcf1-4f1d-80d1-851756c5cd48 -2023-07-08 08:18:34.639526 2023-07-08 08:18:34.639536 mef 3093 R rec f7d89b1f-4eab-429e-9be2-207c6f24a73e -2023-07-08 08:18:34.746114 2023-07-08 08:18:34.746126 mef 3094 R rec 627a3ed3-4cf0-4156-906d-bf5a2f6c20c5 -2023-07-08 08:18:34.855296 2023-07-08 08:18:34.855308 mef 3095 R rec dd4d6774-2986-4276-94b8-4d28e6e96b87 -2023-07-08 08:18:34.967356 2023-07-08 08:18:34.967361 mef 3096 R rec c0d9469e-b73d-4c0f-b41a-f0f95cf6e26e -2023-07-08 08:18:35.06834 2023-07-08 08:18:35.06835 mef 3097 R rec 4c35bb66-d7e6-4fde-9618-57490818f4fc -2023-07-08 08:18:35.191161 2023-07-08 08:18:35.191172 mef 3098 R rec 9f32fa55-2ec5-407d-8b57-8f697d28a04f -2023-07-08 08:18:35.3068 2023-07-08 08:18:35.30681 mef 3099 R rec f51c0908-6eb8-428f-bd51-8f1326e7bb8c -2023-07-08 08:18:35.40041 2023-07-08 08:18:35.400424 mef 3100 R rec 2e4768f9-0e1a-4359-a141-6912aeeff811 -2023-07-08 08:18:35.500106 2023-07-08 08:18:35.500118 mef 3101 R rec fe2a6bb4-c6a9-4e86-b887-accfd976a3e2 -2023-07-08 08:18:35.60767 2023-07-08 08:18:35.607685 mef 3102 R rec b6d213ff-1904-44b3-9841-6fa86209b31f -2023-07-08 08:18:35.719996 2023-07-08 08:18:35.720007 mef 3103 R rec 20e9abc6-c4cc-4ac2-b40f-51225d773727 -2023-07-08 08:18:35.836326 2023-07-08 08:18:35.836336 mef 3104 R rec d758c927-bbb8-408a-a40b-1015b9770765 -2023-07-08 08:18:35.95572 2023-07-08 08:18:35.95573 mef 3105 R rec 374c78c3-54c5-496f-9289-d4f0e1b5fa90 -2023-07-08 08:18:36.072013 2023-07-08 08:18:36.072028 mef 3106 R rec 80403d29-4301-40bd-8832-8d52f1c69d4f -2023-07-08 08:18:36.1792 2023-07-08 08:18:36.179211 mef 3107 R rec 2c1fdf26-ccf3-4469-872b-abcc3986f4e4 -2023-07-08 08:18:36.291385 2023-07-08 08:18:36.291396 mef 3108 R rec e19b9dd1-240b-42ab-bdd0-89217f196c17 -2023-07-08 08:18:36.422889 2023-07-08 08:18:36.422899 mef 3109 R rec 7d928c22-f500-428c-bca9-330c9efbdd90 -2023-07-08 08:18:36.548709 2023-07-08 08:18:36.548719 mef 3110 R rec 017ec83e-d13e-4ac7-870c-748c442d8a72 -2023-07-08 08:18:36.664377 2023-07-08 08:18:36.664388 mef 3111 R rec b33f3818-0b1d-4141-bce0-b91b0b7c9ee3 -2023-07-08 08:18:36.788924 2023-07-08 08:18:36.788961 mef 3112 R rec b9d57750-79f1-4b02-b120-95a846ef818a -2023-07-08 08:18:36.90591 2023-07-08 08:18:36.905934 mef 3113 R rec bce60081-179a-41ae-8b98-c3d9f08b231b -2023-07-08 08:18:37.050402 2023-07-08 08:18:37.050426 mef 3114 R rec 765c5454-c3d2-4f2f-90d7-6c05a622d242 -2023-07-08 08:18:37.159602 2023-07-08 08:18:37.159608 mef 3115 R rec 32fbdbda-7715-459d-8dcd-bed487349d22 -2023-07-08 08:18:37.258832 2023-07-08 08:18:37.258836 mef 3116 R rec 57121f93-2f45-406d-8c55-84cf58d6dd50 -2023-07-08 08:18:37.360899 2023-07-08 08:18:37.360904 mef 3117 R rec 6ddac1be-7008-447b-8457-761cb654745b -2023-07-08 08:18:37.468797 2023-07-08 08:18:37.468807 mef 3118 R rec aa851b6d-a0ee-4df5-8f1d-070663e3533e -2023-07-08 08:18:37.58745 2023-07-08 08:18:37.58746 mef 3119 R rec 4bab095c-d460-4f7a-830e-2552f25a557a -2023-07-08 08:18:37.695792 2023-07-08 08:18:37.695806 mef 3120 R rec 373c8146-845e-45ae-b86e-6e7fe2f952de -2023-07-08 08:18:37.814198 2023-07-08 08:18:37.814214 mef 3121 R rec bc4459a1-086b-4030-889a-26b31032678d -2023-07-08 08:18:37.928753 2023-07-08 08:18:37.928766 mef 3122 R rec 007bab3e-c077-45c5-9bb1-05351023ef81 -2023-07-08 08:18:38.027981 2023-07-08 08:18:38.027992 mef 3123 R rec 917446c5-8f97-4e23-ae61-6cc9db0be91e -2023-07-08 08:18:38.136691 2023-07-08 08:18:38.136704 mef 3124 R rec e656132c-33d8-4509-9c60-9890c00f46cf -2023-07-08 08:18:38.252227 2023-07-08 08:18:38.252233 mef 3125 R rec 037d9417-9142-4644-a0e6-491cf1a4b615 -2023-07-08 08:18:38.350966 2023-07-08 08:18:38.350978 mef 3126 R rec 5bd32611-8bd0-4d09-9538-f331543d01f9 -2023-07-08 08:18:38.462056 2023-07-08 08:18:38.462071 mef 3127 R rec 769a85d2-7773-4493-8b61-2a3bb110c1d2 -2023-07-08 08:18:38.581306 2023-07-08 08:18:38.581319 mef 3128 R rec 3890188b-2bcb-4a98-b9ac-94d24c16ae9f -2023-07-08 08:18:38.68784 2023-07-08 08:18:38.68786 mef 3129 R rec 96a5b8e6-1890-4bf1-a7ed-672b03c98f37 -2023-07-08 08:18:38.799276 2023-07-08 08:18:38.799292 mef 3130 R rec b2bef62b-0857-49a2-bd1b-a5351538effa -2023-07-08 08:18:38.905019 2023-07-08 08:18:38.905031 mef 3131 R rec c03a058d-429f-4f01-b6e9-d22ba2fedfb2 -2023-07-08 08:18:39.03081 2023-07-08 08:18:39.030819 mef 3132 R rec 095e9462-4985-479a-a35c-a35a960b7958 -2023-07-08 08:18:39.136856 2023-07-08 08:18:39.136872 mef 3133 R rec 2ba0a896-9aed-42d5-871e-e3a9e144becf -2023-07-08 08:18:39.237411 2023-07-08 08:18:39.237416 mef 3134 R rec 99ea34f9-6487-4dfc-bf61-ab6d9a031e1d -2023-07-08 08:18:39.328742 2023-07-08 08:18:39.328754 mef 3135 R rec 27cfaf7b-41a9-4244-b06a-f40a35ba757a -2023-07-08 08:18:39.429529 2023-07-08 08:18:39.42954 mef 3136 R rec a1ca5c53-f04e-449c-8de8-a5538d9a19b8 -2023-07-08 08:18:39.536854 2023-07-08 08:18:39.536862 mef 3137 R rec b44e39de-fbc3-4757-ae33-553440b89ef1 -2023-07-08 08:18:39.633483 2023-07-08 08:18:39.633496 mef 3138 R rec cfe9c2e9-17f3-48ac-ad90-859fcd9444d6 -2023-07-08 08:18:39.737106 2023-07-08 08:18:39.737117 mef 3139 R rec 1dcf63dd-a032-419a-b8d5-5d7c5867918e -2023-07-08 08:18:39.845612 2023-07-08 08:18:39.845624 mef 3140 R rec ae04b788-0cec-4049-97c4-6998dbfa662c -2023-07-08 08:18:39.974251 2023-07-08 08:18:39.974261 mef 3141 R rec 365bf9e1-bc23-4c75-822b-fb511da2211b -2023-07-08 08:18:40.105846 2023-07-08 08:18:40.105852 mef 3142 R rec bf089fd9-db22-4858-800b-699632dcc835 -2023-07-08 08:18:40.19993 2023-07-08 08:18:40.199943 mef 3143 R rec f149875a-fdc5-4d20-bfd7-bb9deda37d52 -2023-07-08 08:18:40.317689 2023-07-08 08:18:40.317699 mef 3144 R rec 644b7928-6948-49fe-aa41-b168adc61c49 -2023-07-08 08:18:40.435324 2023-07-08 08:18:40.435333 mef 3145 R rec 1e3d4eb1-d45e-4d7b-bda4-54d6af456124 -2023-07-08 08:18:40.548757 2023-07-08 08:18:40.548768 mef 3146 R rec 6bc5c6db-5820-428e-8368-3fdd754d9cc4 -2023-07-08 08:18:40.681091 2023-07-08 08:18:40.681784 mef 3147 R rec 668661a5-5adf-403f-83d9-bf107f08c01e -2023-07-08 08:18:40.790267 2023-07-08 08:18:40.790278 mef 3148 R rec d6f702cc-b443-4b2d-bdeb-6cccb582e1bb -2023-07-08 08:18:40.904201 2023-07-08 08:18:40.90421 mef 3149 R rec e9873de8-50d7-41a3-ab1e-f52e26712608 -2023-07-08 08:18:41.017422 2023-07-08 08:18:41.017434 mef 3150 R rec 1cb408e0-4144-41e4-8132-1ac1257168ff -2023-07-08 08:18:41.120913 2023-07-08 08:18:41.120926 mef 3151 R rec 66d9c572-9832-47c5-b638-4703fc94c359 -2023-07-08 08:18:41.229689 2023-07-08 08:18:41.229699 mef 3152 R rec 9d29e55d-2828-48c0-9d4b-1cb56ede7e5e -2023-07-08 08:18:41.340732 2023-07-08 08:18:41.340743 mef 3153 R rec d14b3dcc-c8de-40c1-b2bc-441de4479ce4 -2023-07-08 08:18:41.434388 2023-07-08 08:18:41.434398 mef 3154 R rec 500b5bcb-31b5-40e2-a8dc-347b281a7627 -2023-07-08 08:18:41.53238 2023-07-08 08:18:41.532389 mef 3155 R rec d5d5b5fc-5342-4dd8-8f88-badb99df4fa9 -2023-07-08 08:18:41.653313 2023-07-08 08:18:41.653322 mef 3156 R rec 9d700bca-4801-4421-b549-c22b42fd9abb -2023-07-08 08:18:41.755384 2023-07-08 08:18:41.755396 mef 3157 R rec 0dc6575c-9b79-4a0f-882d-210154cf11fb -2023-07-08 08:18:41.873382 2023-07-08 08:18:41.873396 mef 3158 R rec 8719e09b-ec88-4611-af3e-5976da7e8d23 -2023-07-08 08:18:41.988391 2023-07-08 08:18:41.988395 mef 3159 R rec c926c4e6-4957-4f69-8243-07921276920c -2023-07-08 08:18:42.084172 2023-07-08 08:18:42.084184 mef 3160 R rec 695c0294-0b4e-40fb-b9f1-d27e041535d2 -2023-07-08 08:18:42.226248 2023-07-08 08:18:42.226259 mef 3161 R rec 0e5e2236-4dde-4069-af33-ad88dbe328d6 -2023-07-08 08:18:42.344059 2023-07-08 08:18:42.344071 mef 3162 R rec 71cf5ffc-8d35-447a-9143-2590748b8a99 -2023-07-08 08:18:42.464371 2023-07-08 08:18:42.464381 mef 3163 R rec f33ffd7d-99c9-4489-bcaf-dc773aaae012 -2023-07-08 08:18:42.581302 2023-07-08 08:18:42.58132 mef 3164 R rec 7d79ca93-dec6-4d4e-a7ad-22f857b6728a -2023-07-08 08:18:42.698742 2023-07-08 08:18:42.698755 mef 3165 R rec 6d084cb5-83a3-4193-9ddc-f3935e3d9792 -2023-07-08 08:18:42.818248 2023-07-08 08:18:42.81826 mef 3166 R rec 279f5554-9b21-471a-b7f6-6a0b523a9a0b -2023-07-08 08:18:42.927259 2023-07-08 08:18:42.92727 mef 3167 R rec 523bc74c-e9a0-44ae-9164-9921f6b4ded4 -2023-07-08 08:18:43.038782 2023-07-08 08:18:43.038793 mef 3168 R rec a049e8fe-1234-41bf-a113-70a21089795d -2023-07-08 08:18:43.194854 2023-07-08 08:18:43.194867 mef 3169 R rec 3520a66a-0dc0-4c7a-8436-99c0f175f60e -2023-07-08 08:18:43.320667 2023-07-08 08:18:43.320678 mef 3170 R rec 1ee9a977-ca92-4bf6-95ec-6f6163b1978e -2023-07-08 08:18:43.448213 2023-07-08 08:18:43.448223 mef 3171 R rec 3e218e99-d7f0-4936-8fe8-273e0a969b7e -2023-07-08 08:18:43.56345 2023-07-08 08:18:43.563462 mef 3172 R rec c1529bc9-ea33-46d7-a4cd-81e12112c346 -2023-07-08 08:18:43.6967 2023-07-08 08:18:43.696711 mef 3173 R rec bb0bd35a-3f97-43c7-be15-5ffb7fbeb007 -2023-07-08 08:18:43.809871 2023-07-08 08:18:43.809886 mef 3174 R rec afeec9ff-93c0-429e-b05e-758b005a830e -2023-07-08 08:18:43.925269 2023-07-08 08:18:43.925286 mef 3175 R rec 372f6805-b726-4e82-bc10-79b76bd3ff33 -2023-07-08 08:18:44.046025 2023-07-08 08:18:44.046037 mef 3176 R rec 878917b4-7d89-4341-bb06-539b6388aba1 -2023-07-08 08:18:44.152385 2023-07-08 08:18:44.152395 mef 3177 R rec fd985ddb-ed6a-4d7c-ac8b-d0a785a5fe93 -2023-07-08 08:18:44.284771 2023-07-08 08:18:44.284781 mef 3178 R rec 65da1d6a-4a20-49e7-bf80-c2ba385217af -2023-07-08 08:18:44.392013 2023-07-08 08:18:44.392026 mef 3179 R rec 5a97c56b-1bde-479e-8cf3-4f47c00c80d5 -2023-07-08 08:18:44.521802 2023-07-08 08:18:44.521812 mef 3180 R rec 53177c03-6159-4fcb-89cc-9c48c968ad47 -2023-07-08 08:18:44.625951 2023-07-08 08:18:44.625963 mef 3181 R rec 8615e07d-a9d6-4cef-8fdc-849a92ee60c4 -2023-07-08 08:18:44.745061 2023-07-08 08:18:44.745073 mef 3182 R rec 091819b8-d892-439a-b049-c2dcb2b1c092 -2023-07-08 08:18:44.857695 2023-07-08 08:18:44.8577 mef 3183 R rec 815ae8e2-9da4-42b9-8e25-3bceebfe9020 -2023-07-08 08:18:44.942047 2023-07-08 08:18:44.942058 mef 3184 R rec f5345063-c43a-4ff9-bd6d-55b441ecbd6c -2023-07-08 08:18:45.051849 2023-07-08 08:18:45.051861 mef 3185 R rec fdc6544a-bfdd-41cc-b296-464ff3d8f3d9 -2023-07-08 08:18:45.175447 2023-07-08 08:18:45.175459 mef 3186 R rec a4aeb4e0-b508-4467-b541-e603cd925946 -2023-07-08 08:18:45.286127 2023-07-08 08:18:45.286139 mef 3187 R rec 3edfa0de-915a-4078-b71f-9003a4ad1d4c -2023-07-08 08:18:45.394188 2023-07-08 08:18:45.394197 mef 3188 R rec fbcc1efa-f1a1-4ca7-b3cf-b4d312adbafc -2023-07-08 08:18:45.514354 2023-07-08 08:18:45.514366 mef 3189 R rec 02468d4c-abf4-4da9-96cd-5a8c6f3dc8de -2023-07-08 08:18:45.618765 2023-07-08 08:18:45.618775 mef 3190 R rec f5e23178-1d5a-4327-85ad-52f9068310e0 -2023-07-08 08:18:45.739943 2023-07-08 08:18:45.739953 mef 3191 R rec 8b18df94-f0f0-4e02-88e4-ba03135e1107 -2023-07-08 08:18:45.840869 2023-07-08 08:18:45.840879 mef 3192 R rec e204e915-9727-4c83-8228-c9b723c6a804 -2023-07-08 08:18:45.939956 2023-07-08 08:18:45.939967 mef 3193 R rec d7b442bc-d021-48e3-ba40-6e043264475e -2023-07-08 08:18:46.10212 2023-07-08 08:18:46.102135 mef 3194 R rec 15d08966-de3d-4caf-8d0c-a41b1a8e9bf5 -2023-07-08 08:18:46.205984 2023-07-08 08:18:46.205993 mef 3195 R rec 5c19b08b-22c2-4829-86e7-0db7f1efde0d -2023-07-08 08:18:46.304926 2023-07-08 08:18:46.304939 mef 3196 R rec 79470368-81f9-4145-ba74-99ce284414bc -2023-07-08 08:18:46.410957 2023-07-08 08:18:46.41116 mef 3197 R rec b4bc2613-1150-4b33-8f3b-a4bc364c4f4e -2023-07-08 08:18:46.511339 2023-07-08 08:18:46.511354 mef 3198 R rec e67135be-3af1-4ad9-8c12-3cc02e21f057 -2023-07-08 08:18:46.612522 2023-07-08 08:18:46.612536 mef 3199 R rec 1577fe2a-6ac9-4178-989b-8e90bd5a5672 -2023-07-08 08:18:46.718818 2023-07-08 08:18:46.718823 mef 3200 R rec 25859f0c-d8c9-4a2c-a71d-ad93a1197f5b -2023-07-08 08:18:46.812185 2023-07-08 08:18:46.812196 mef 3201 R rec f727f5f8-d3a0-4062-8f2c-029ed42269db -2023-07-08 08:18:46.932486 2023-07-08 08:18:46.932499 mef 3202 R rec 21fabc44-33f4-4503-a1a8-94da2bb4a864 -2023-07-08 08:18:47.039359 2023-07-08 08:18:47.039369 mef 3203 R rec c00fa447-fc98-4245-b9ed-fc9a29bc4ea2 -2023-07-08 08:18:47.152499 2023-07-08 08:18:47.152511 mef 3204 R rec 25a6c23c-b402-4389-b868-97d8cbcfd3e9 -2023-07-08 08:18:47.268916 2023-07-08 08:18:47.268925 mef 3205 R rec 5d7ebe67-dbf8-498a-9847-233ca84a27bc -2023-07-08 08:18:47.365674 2023-07-08 08:18:47.365683 mef 3206 R rec 41655b6c-3e2d-40f4-9207-219b07515171 -2023-07-08 08:18:47.474783 2023-07-08 08:18:47.474794 mef 3207 R rec 000da639-1785-4232-9753-6a76982b66d1 -2023-07-08 08:18:47.600425 2023-07-08 08:18:47.60044 mef 3208 R rec 4db418d2-2697-4d46-b920-d5b9bbca4713 -2023-07-08 08:18:47.71517 2023-07-08 08:18:47.715179 mef 3209 R rec f4cd3884-d8f7-4775-8853-508a863aca90 -2023-07-08 08:18:47.82294 2023-07-08 08:18:47.822954 mef 3210 R rec 12e19e58-4f60-426c-b7c9-a52657158744 -2023-07-08 08:18:47.92289 2023-07-08 08:18:47.922903 mef 3211 R rec 0ce9c996-d662-4154-97c7-8d08dd966bdb -2023-07-08 08:18:48.030675 2023-07-08 08:18:48.03068 mef 3212 R rec 9581e5c0-4aee-4c74-b0c6-88acbb5239b0 -2023-07-08 08:18:48.119997 2023-07-08 08:18:48.120008 mef 3213 R rec 1624e450-8daa-446e-9c0e-400ab0fd8616 -2023-07-08 08:18:48.216196 2023-07-08 08:18:48.216209 mef 3214 R rec 1137deda-eab8-42dc-85a0-3ed7bc6cccdc -2023-07-08 08:18:48.340718 2023-07-08 08:18:48.340733 mef 3215 R rec cadb02da-6c08-45af-ac01-ec99c902875a -2023-07-08 08:18:48.44803 2023-07-08 08:18:48.44804 mef 3216 R rec e33dd842-ee9c-4cc8-b50e-2205a951f7b9 -2023-07-08 08:18:48.568639 2023-07-08 08:18:48.568651 mef 3217 R rec 79822eca-3d89-41b4-b475-e546eaedb592 -2023-07-08 08:18:48.678703 2023-07-08 08:18:48.678713 mef 3218 R rec 79dfbbf3-ca86-4bad-86c6-f213878f3462 -2023-07-08 08:18:48.769977 2023-07-08 08:18:48.769991 mef 3219 R rec 96904011-4277-4cf2-a563-80bb52f6dd57 -2023-07-08 08:18:48.871737 2023-07-08 08:18:48.871749 mef 3220 R rec ac5a51d6-7000-4ce8-b2a0-5e0a8d774c6b -2023-07-08 08:18:48.95639 2023-07-08 08:18:48.956399 mef 3221 R rec 46109c51-c4f3-46d9-a687-f5ae96e175b4 -2023-07-08 08:18:49.081759 2023-07-08 08:18:49.081772 mef 3222 R rec 08c3e764-5d18-41a9-ad0e-5983e481ce96 -2023-07-08 08:18:49.213974 2023-07-08 08:18:49.21399 mef 3223 R rec 1397a521-78c5-4b6f-bcd2-dbc8d25a3b0d -2023-07-08 08:18:49.330247 2023-07-08 08:18:49.33026 mef 3224 R rec 7693a4a4-de96-4792-93c6-a125e85368bf -2023-07-08 08:18:49.443958 2023-07-08 08:18:49.443969 mef 3225 R rec f81d011d-ae02-4304-b9df-b3d61fce7b49 -2023-07-08 08:18:49.563945 2023-07-08 08:18:49.563957 mef 3226 R rec b645c84b-15ff-4e68-bede-29126ea61fff -2023-07-08 08:18:49.67714 2023-07-08 08:18:49.677152 mef 3227 R rec a9f48d8e-5149-4999-b937-adea4c79b079 -2023-07-08 08:18:49.79494 2023-07-08 08:18:49.794952 mef 3228 R rec 491c99d5-dc1d-44c6-8f67-9605d5afa8a6 -2023-07-08 08:18:49.918661 2023-07-08 08:18:49.918676 mef 3229 R rec 6ed4f744-a0a2-483b-a120-79b23323f05e -2023-07-08 08:18:50.052011 2023-07-08 08:18:50.052021 mef 3230 R rec 014dff6a-b40a-49e1-94d7-c2271d2e47a3 -2023-07-08 08:18:50.171035 2023-07-08 08:18:50.171044 mef 3231 R rec 64e52392-63b2-4c8c-838b-32712f83b085 -2023-07-08 08:18:50.285158 2023-07-08 08:18:50.28517 mef 3232 R rec 9e4515b1-50d8-4cf3-8c22-ebd2ce94cab0 -2023-07-08 08:18:50.420432 2023-07-08 08:18:50.420447 mef 3233 R rec 13348dcb-65ad-44d0-9b17-cb92d07fc537 -2023-07-08 08:18:50.534833 2023-07-08 08:18:50.534845 mef 3234 R rec c2a20b6c-db49-441b-8cc0-ba9516084468 -2023-07-08 08:18:50.636577 2023-07-08 08:18:50.636586 mef 3235 R rec 2c6b8fff-6fbf-40e5-be9c-eaed6ebbefdf -2023-07-08 08:18:50.731977 2023-07-08 08:18:50.731988 mef 3236 R rec 3daf5e18-b30a-4ad0-bc80-df8416b4b375 -2023-07-08 08:18:50.841493 2023-07-08 08:18:50.841505 mef 3237 R rec b2bdef2a-2031-423c-8990-82f5387094b2 -2023-07-08 08:18:50.939342 2023-07-08 08:18:50.939352 mef 3238 R rec 75214408-065f-4a69-a8f6-306716f391ec -2023-07-08 08:18:51.049528 2023-07-08 08:18:51.049538 mef 3239 R rec c605f4f5-ac6a-4f47-ab16-e33b379e06fb -2023-07-08 08:18:51.169268 2023-07-08 08:18:51.169281 mef 3240 R rec ad3a5bef-76f9-4c24-8333-5c80d5f7bdd3 -2023-07-08 08:18:51.273195 2023-07-08 08:18:51.273207 mef 3241 R rec 66a2599c-b780-43f7-98f3-d6b42717d40c -2023-07-08 08:18:51.382275 2023-07-08 08:18:51.382289 mef 3242 R rec 29e87d6c-303b-4b9a-9205-89808caf4ae6 -2023-07-08 08:18:51.492491 2023-07-08 08:18:51.492502 mef 3243 R rec 2a240141-3667-4f8d-b9d7-60b0acae1437 -2023-07-08 08:18:51.600451 2023-07-08 08:18:51.600457 mef 3244 R rec b0cfc12f-52cd-4ec2-801e-dd50474e0276 -2023-07-08 08:18:51.692339 2023-07-08 08:18:51.692349 mef 3245 R rec b3f9d2bb-e67a-4494-b34b-04f7c583cae4 -2023-07-08 08:18:51.794517 2023-07-08 08:18:51.79453 mef 3246 R rec 1c80769c-4a72-4b13-aac5-7354191c217f -2023-07-08 08:18:51.899415 2023-07-08 08:18:51.89942 mef 3247 R rec ab76cb17-2d89-4c33-a030-479cc4f03568 -2023-07-08 08:18:51.993332 2023-07-08 08:18:51.993803 mef 3248 R rec 52f74e19-f62e-4626-8ef1-7f2e1510e1d6 -2023-07-08 08:18:52.107914 2023-07-08 08:18:52.107923 mef 3249 R rec 8dca8d40-034e-421a-beae-f766205575fd -2023-07-08 08:18:52.216013 2023-07-08 08:18:52.216025 mef 3250 R rec 9acd3403-5a4b-4b63-8542-7f4d99ed5776 -2023-07-08 08:18:52.317637 2023-07-08 08:18:52.317646 mef 3251 R rec b31ca5e1-1048-4280-a0ff-eaccf32319b3 -2023-07-08 08:18:52.449532 2023-07-08 08:18:52.449542 mef 3252 R rec 7a036d34-3bb3-44ad-ac00-26c7eb3e791d -2023-07-08 08:18:52.574267 2023-07-08 08:18:52.574282 mef 3253 R rec 67660608-517a-4226-a27d-136e6ec296af -2023-07-08 08:18:52.701836 2023-07-08 08:18:52.701849 mef 3254 R rec 32855e7c-f916-4265-8114-697b6a075198 -2023-07-08 08:18:52.802899 2023-07-08 08:18:52.802909 mef 3255 R rec c1200fd7-928e-4cf4-8c20-7ad8a4f37170 -2023-07-08 08:18:52.906 2023-07-08 08:18:52.906013 mef 3256 R rec 91238879-9c5a-43a1-b564-26506c1b47f2 -2023-07-08 08:18:53.024954 2023-07-08 08:18:53.024965 mef 3257 R rec e53c4fca-ebca-40e9-b5a6-0a7f84c11245 -2023-07-08 08:18:53.134895 2023-07-08 08:18:53.134901 mef 3258 R rec 05d4b652-915c-4c83-afac-ddaaa12c265c -2023-07-08 08:18:53.253159 2023-07-08 08:18:53.253174 mef 3259 R rec e9565460-4b11-4e90-a4d4-79961396d202 -2023-07-08 08:18:53.380397 2023-07-08 08:18:53.38041 mef 3260 R rec 3b899ccb-e940-4c6d-ac8c-fd634a90a294 -2023-07-08 08:18:53.503416 2023-07-08 08:18:53.503429 mef 3261 R rec 3cc29bfe-6591-46c9-98c3-60077b2eb5ab -2023-07-08 08:18:53.614416 2023-07-08 08:18:53.614437 mef 3262 R rec 8e81c056-cf3d-47dc-98d0-994ad5876d8c -2023-07-08 08:18:53.74156 2023-07-08 08:18:53.741571 mef 3263 R rec 7edc7348-288b-415e-82b7-001285267c19 -2023-07-08 08:18:53.858201 2023-07-08 08:18:53.858213 mef 3264 R rec 3dd2a8f9-6cfd-4342-84b6-596bd95a534f -2023-07-08 08:18:53.959332 2023-07-08 08:18:53.959345 mef 3265 R rec 3b3828d3-b5c2-48ae-a227-3b8c8de95813 -2023-07-08 08:18:54.061454 2023-07-08 08:18:54.061466 mef 3266 R rec ef4d67a8-2530-40f6-a612-4d2defaa898d -2023-07-08 08:18:54.169366 2023-07-08 08:18:54.169378 mef 3267 R rec 944879c7-1cde-4c38-893d-170b8cbdcceb -2023-07-08 08:18:54.289588 2023-07-08 08:18:54.289604 mef 3268 R rec fbec8758-dfd8-4f51-91e9-e75015cddff4 -2023-07-08 08:18:54.398804 2023-07-08 08:18:54.398815 mef 3269 R rec f02c7694-f642-4897-8504-84c9a919c654 -2023-07-08 08:18:54.51436 2023-07-08 08:18:54.514372 mef 3270 R rec f6c42d0c-4f78-4747-9bac-ce0b84cb7399 -2023-07-08 08:18:54.623069 2023-07-08 08:18:54.623087 mef 3271 R rec 8aff400e-79fe-44e1-946b-4de9a4484697 -2023-07-08 08:18:54.748363 2023-07-08 08:18:54.748372 mef 3272 R rec f4bcf37b-1fb3-4cc4-b23f-f5f181529515 -2023-07-08 08:18:54.86703 2023-07-08 08:18:54.867041 mef 3273 R rec 783ddd76-e1d0-4066-9eae-c1376b5cfa0b -2023-07-08 08:18:54.967133 2023-07-08 08:18:54.967145 mef 3274 R rec 40fa84a2-99f9-4b0a-9990-7999a6e11f8e -2023-07-08 08:18:55.101704 2023-07-08 08:18:55.101717 mef 3275 R rec c2f0bbb0-96b6-4653-a6e3-3c1e01458341 -2023-07-08 08:18:55.2149 2023-07-08 08:18:55.214911 mef 3276 R rec cf7d1a95-8a38-4554-9f79-cde1f2db2a08 -2023-07-08 08:18:55.361071 2023-07-08 08:18:55.361082 mef 3277 R rec a0897689-e638-401a-9a62-dc66089d2137 -2023-07-08 08:18:55.481515 2023-07-08 08:18:55.481526 mef 3278 R rec 8ad8c236-4198-4483-8ee7-c86dfc521a73 -2023-07-08 08:18:55.604749 2023-07-08 08:18:55.604762 mef 3279 R rec 55a24a80-12bb-4793-b07c-63a45d78d72b -2023-07-08 08:18:55.727481 2023-07-08 08:18:55.727492 mef 3280 R rec 3850920f-586b-41b6-ac41-88ac08c32910 -2023-07-08 08:18:55.891513 2023-07-08 08:18:55.891518 mef 3281 R rec eeeef156-a87d-44c2-8205-745f8b740b12 -2023-07-08 08:18:55.975659 2023-07-08 08:18:55.975663 mef 3282 R rec ecc1d0e6-8f64-46e9-9d1a-2d9f16f744bd -2023-07-08 08:18:56.055197 2023-07-08 08:18:56.055201 mef 3283 R rec 87008a8e-84d0-4ba0-90e7-583f359cd817 -2023-07-08 08:18:56.140394 2023-07-08 08:18:56.140407 mef 3284 R rec 040336b1-cb06-47f6-b07c-ab095cab4120 -2023-07-08 08:18:56.249273 2023-07-08 08:18:56.249285 mef 3285 R rec b55296e9-0f48-4d80-8ec2-8482118b0033 -2023-07-08 08:18:56.37856 2023-07-08 08:18:56.37857 mef 3286 R rec a8979ec7-7ea4-4541-81cd-c568734d9db0 -2023-07-08 08:18:56.482854 2023-07-08 08:18:56.482865 mef 3287 R rec d0d0b083-4afc-4286-a433-69ffd90d10ec -2023-07-08 08:18:56.604723 2023-07-08 08:18:56.604733 mef 3288 R rec ac7f5eeb-7645-468c-b599-90d0e01a46f7 -2023-07-08 08:18:56.717644 2023-07-08 08:18:56.717652 mef 3289 R rec f7e7b682-6f2c-44f4-ab40-7a96a186752d -2023-07-08 08:18:56.829729 2023-07-08 08:18:56.829739 mef 3290 R rec 50cf6a49-5c2a-40bd-bac3-c551e50584f8 -2023-07-08 08:18:56.935312 2023-07-08 08:18:56.935324 mef 3291 R rec 215ebbde-8089-42af-b848-2b9ce5047a4f -2023-07-08 08:18:57.038706 2023-07-08 08:18:57.038719 mef 3292 R rec 0cb1bae0-aba9-4506-8914-ee970f69294e -2023-07-08 08:18:57.158027 2023-07-08 08:18:57.158039 mef 3293 R rec c442c1c9-8b15-45b9-88a7-cc5e026e8309 -2023-07-08 08:18:57.334223 2023-07-08 08:18:57.334233 mef 3294 R rec 30afd9ab-a905-4c19-91b9-0b0f5fe42b84 -2023-07-08 08:18:57.450274 2023-07-08 08:18:57.450286 mef 3295 R rec 744c6d31-2c17-4915-bccc-21b9f64cdf3d -2023-07-08 08:18:57.556408 2023-07-08 08:18:57.556417 mef 3296 R rec f4864b47-6ec5-4775-9f6a-4f5e1b65fabf -2023-07-08 08:18:57.675856 2023-07-08 08:18:57.67587 mef 3297 R rec f7221340-3e29-4dc3-9426-4fee71fb976d -2023-07-08 08:18:57.781677 2023-07-08 08:18:57.781689 mef 3298 R rec b80f3db8-0201-4729-abcb-789d028c7f33 -2023-07-08 08:18:57.883468 2023-07-08 08:18:57.883475 mef 3299 R rec b13847b8-e055-402b-bf64-5f51b74fc10c -2023-07-08 08:18:57.973304 2023-07-08 08:18:57.973317 mef 3300 R rec d1046105-0702-4826-a344-b6495ae721eb -2023-07-08 08:18:58.083 2023-07-08 08:18:58.083011 mef 3301 R rec 18b6687c-aeff-4b49-9773-4a5f328cfe3d -2023-07-08 08:18:58.205918 2023-07-08 08:18:58.205928 mef 3302 R rec 519ed987-27a4-4af3-9137-062e69a78548 -2023-07-08 08:18:58.331446 2023-07-08 08:18:58.331457 mef 3303 R rec 62278e04-c1b7-47ed-ae98-60950edebbd2 -2023-07-08 08:18:58.46121 2023-07-08 08:18:58.461221 mef 3304 R rec 930c7786-9510-40fb-8211-8e28b21aa807 -2023-07-08 08:18:58.557821 2023-07-08 08:18:58.557834 mef 3305 R rec 3eadc8a5-a9b8-465a-b21a-9475963be87c -2023-07-08 08:18:58.673274 2023-07-08 08:18:58.673282 mef 3306 R rec 6a2a7901-5be3-4020-b93b-bc91b6a22618 -2023-07-08 08:18:58.779622 2023-07-08 08:18:58.779631 mef 3307 R rec f11a3e07-5c9c-4665-bff2-67d6f73dec5a -2023-07-08 08:18:58.863706 2023-07-08 08:18:58.86372 mef 3308 R rec cf05cd3e-c938-4886-9c91-44eb7157dba3 -2023-07-08 08:18:58.962791 2023-07-08 08:18:58.962801 mef 3309 R rec 253b7701-6fcb-475a-bb31-6b6d7b2cebaa -2023-07-08 08:18:59.06834 2023-07-08 08:18:59.068355 mef 3310 R rec 285a32c6-2c3e-45eb-a289-91084ff8f743 -2023-07-08 08:18:59.180935 2023-07-08 08:18:59.180947 mef 3311 R rec 0a257d71-ad2f-4e96-88fa-10980bb3dbf6 -2023-07-08 08:18:59.29493 2023-07-08 08:18:59.294945 mef 3312 R rec 3898a98b-133f-4d2e-8388-bf09f56f2b85 -2023-07-08 08:18:59.401666 2023-07-08 08:18:59.401673 mef 3313 R rec 5561784e-137b-4e26-901a-c4e020fad69e -2023-07-08 08:18:59.50751 2023-07-08 08:18:59.507523 mef 3314 R rec 4fe1fdb5-bf81-4f1d-ba56-3c95e822e43f -2023-07-08 08:18:59.637488 2023-07-08 08:18:59.637503 mef 3315 R rec 09557b8b-38ee-40d5-b863-395638abdf7a -2023-07-08 08:18:59.766274 2023-07-08 08:18:59.766286 mef 3316 R rec 173ed219-d12b-471f-9cf3-8c3739b90e98 -2023-07-08 08:18:59.882745 2023-07-08 08:18:59.88276 mef 3317 R rec dd84f987-8716-4318-878c-93a9270c9bef -2023-07-08 08:18:59.999339 2023-07-08 08:18:59.999349 mef 3318 R rec 74a57c4a-974a-4357-a3d0-9f022e281de1 -2023-07-08 08:19:00.127284 2023-07-08 08:19:00.127299 mef 3319 R rec 623583bc-1b87-49a0-bc75-e9aa2fed0865 -2023-07-08 08:19:00.244576 2023-07-08 08:19:00.244585 mef 3320 R rec 42b7814e-c7c8-4df3-9207-7a1fbe78d099 -2023-07-08 08:19:00.375266 2023-07-08 08:19:00.375281 mef 3321 R rec 38a8dce2-66f3-4acf-9bd1-b342d3434c0a -2023-07-08 08:19:00.473906 2023-07-08 08:19:00.473916 mef 3322 R rec c93b8f8f-92f2-416d-a5a4-e250ed85510f -2023-07-08 08:19:00.576304 2023-07-08 08:19:00.576321 mef 3323 R rec 9996457a-cc69-4135-8254-0e5ed3e1b6b6 -2023-07-08 08:19:00.726687 2023-07-08 08:19:00.726699 mef 3324 R rec 387ce2fb-2537-4ce4-8470-56c6aef77a48 -2023-07-08 08:19:00.88491 2023-07-08 08:19:00.88492 mef 3325 R rec e3c08630-f2cb-48b8-9d51-0de127fe2fd1 -2023-07-08 08:19:01.020961 2023-07-08 08:19:01.020974 mef 3326 R rec e80b562a-a96e-41c8-8901-50513bfcc094 -2023-07-08 08:19:01.137635 2023-07-08 08:19:01.137646 mef 3327 R rec 529121f9-90a4-4685-bd15-2a6906b9dbbe -2023-07-08 08:19:01.242371 2023-07-08 08:19:01.242381 mef 3328 R rec 4156f8d4-1ece-483c-9463-5220f8d27aec -2023-07-08 08:19:01.344787 2023-07-08 08:19:01.344797 mef 3329 R rec be890264-3403-490b-b4eb-d3d8911648ec -2023-07-08 08:19:01.450289 2023-07-08 08:19:01.450302 mef 3330 R rec ea75e834-225f-41d5-9503-4a4a2cdf1c1d -2023-07-08 08:19:01.567691 2023-07-08 08:19:01.567701 mef 3331 R rec 08cd9b47-9d38-458e-8d37-a33f6627db96 -2023-07-08 08:19:01.667984 2023-07-08 08:19:01.667993 mef 3332 R rec 6e12ec8b-b14d-416c-ae32-5761177ba981 -2023-07-08 08:19:01.774863 2023-07-08 08:19:01.774876 mef 3333 R rec 9eeffa3e-02b8-4796-8b7b-0aecb8dc2c55 -2023-07-08 08:19:01.886827 2023-07-08 08:19:01.886837 mef 3334 R rec dd2c059a-8aee-46e2-bb26-f36d8fa90542 -2023-07-08 08:19:02.014306 2023-07-08 08:19:02.014316 mef 3335 R rec 85152e92-3574-4149-84e2-56c08776b4bf -2023-07-08 08:19:02.122346 2023-07-08 08:19:02.122359 mef 3336 R rec 1719fc6b-af66-4b79-9ebf-191c008b19cf -2023-07-08 08:19:02.233219 2023-07-08 08:19:02.23323 mef 3337 R rec 06724838-59e6-4de9-b442-f6a29da5c68f -2023-07-08 08:19:02.336579 2023-07-08 08:19:02.336605 mef 3338 R rec d1a57349-72a9-4549-a208-9daa6dbdf7f3 -2023-07-08 08:19:02.451873 2023-07-08 08:19:02.451886 mef 3339 R rec 58b9f882-0b6c-40ba-86a0-59471026e8d0 -2023-07-08 08:19:02.566255 2023-07-08 08:19:02.566264 mef 3340 R rec 2a4f5edf-0c42-49f0-91f7-d8807c46f11b -2023-07-08 08:19:02.666452 2023-07-08 08:19:02.666464 mef 3341 R rec eedbf7a7-6786-429d-a999-fd17a9e5d422 -2023-07-08 08:19:02.766475 2023-07-08 08:19:02.766485 mef 3342 R rec 39eb1cf3-164f-449a-aeb5-bae86e31993a -2023-07-08 08:19:02.884435 2023-07-08 08:19:02.88445 mef 3343 R rec 4a71973b-fa9a-4562-82a2-77f4f275cad1 -2023-07-08 08:19:03.004847 2023-07-08 08:19:03.004856 mef 3344 R rec 799af9e0-0e6f-4815-9b0f-9e7f92ceafd2 -2023-07-08 08:19:03.113905 2023-07-08 08:19:03.113921 mef 3345 R rec be27f073-7658-4914-bab2-21d9d8e0091e -2023-07-08 08:19:03.206115 2023-07-08 08:19:03.206123 mef 3346 R rec 038b324d-a5e1-4c2e-b1e8-c61667b244b8 -2023-07-08 08:19:03.320866 2023-07-08 08:19:03.32088 mef 3347 R rec 71189077-8aa7-45b7-b644-6e136b94c5de -2023-07-08 08:19:03.438243 2023-07-08 08:19:03.438255 mef 3348 R rec 254227dc-ff89-4f87-b7e0-324057a12e10 -2023-07-08 08:19:03.542574 2023-07-08 08:19:03.542585 mef 3349 R rec 9cb8cb9a-174c-4a4f-8581-32ba92c867bd -2023-07-08 08:19:03.659367 2023-07-08 08:19:03.65938 mef 3350 R rec 05bde9d4-3017-44e1-97c6-4e1ee19214d9 -2023-07-08 08:19:03.755665 2023-07-08 08:19:03.755675 mef 3351 R rec 1866f252-696a-4908-b983-3187bdbf8a27 -2023-07-08 08:19:03.854404 2023-07-08 08:19:03.854416 mef 3352 R rec a15a3a46-ab03-4e31-8910-2bf5c8322b72 -2023-07-08 08:19:03.969809 2023-07-08 08:19:03.969826 mef 3353 R rec 9c0dce99-90fc-4a8f-9045-6f8291717fb7 -2023-07-08 08:19:04.089238 2023-07-08 08:19:04.089241 mef 3354 R rec 03e89db6-f95d-45c6-a049-fc8310dae1cb -2023-07-08 08:19:04.185136 2023-07-08 08:19:04.185148 mef 3355 R rec 310525e2-7a95-4ea4-b46d-3728d8ceef47 -2023-07-08 08:19:04.289773 2023-07-08 08:19:04.289788 mef 3356 R rec f358a14f-4c37-49ea-8e97-94cd721facd9 -2023-07-08 08:19:04.398941 2023-07-08 08:19:04.398955 mef 3357 R rec 9f67bdee-713a-42e8-89fc-9c828d789f3c -2023-07-08 08:19:04.487836 2023-07-08 08:19:04.487846 mef 3358 R rec 3ca2ae22-a2d0-4569-acd5-f6c67e56681d -2023-07-08 08:19:04.595223 2023-07-08 08:19:04.595233 mef 3359 R rec d92bc290-5473-47f3-bc71-04a86e617de8 -2023-07-08 08:19:04.71062 2023-07-08 08:19:04.710634 mef 3360 R rec 8ad5a9fe-db1b-4fd4-903b-837efb0fc3c2 -2023-07-08 08:19:04.823727 2023-07-08 08:19:04.823737 mef 3361 R rec d96eeabd-a886-4d30-a931-ea66147ed31a -2023-07-08 08:19:04.948467 2023-07-08 08:19:04.948488 mef 3362 R rec 8eec5257-b5a5-45ca-840b-4ec5b4f982bb -2023-07-08 08:19:05.070321 2023-07-08 08:19:05.07033 mef 3363 R rec 2628d35e-4fed-4935-9c13-1e9a0ef30b69 -2023-07-08 08:19:05.199059 2023-07-08 08:19:05.19907 mef 3364 R rec 089abccf-0346-4649-b7ae-c2fe9a9aabb4 -2023-07-08 08:19:05.314388 2023-07-08 08:19:05.3144 mef 3365 R rec b1c37f11-cb50-424b-b475-4b713308cd17 -2023-07-08 08:19:05.417782 2023-07-08 08:19:05.417795 mef 3366 R rec 12b759a6-3da8-473b-b2da-1f2435ceb6ae -2023-07-08 08:19:05.523408 2023-07-08 08:19:05.523418 mef 3367 R rec 69ad6d3f-5b3d-4fa7-bc9b-3d1802c15ca5 -2023-07-08 08:19:05.65381 2023-07-08 08:19:05.65382 mef 3368 R rec 35844035-d3ea-494c-82a0-47d0d7195796 -2023-07-08 08:19:05.789207 2023-07-08 08:19:05.789212 mef 3369 R rec 68efcb37-67cd-4bde-a451-530311cd6013 -2023-07-08 08:19:05.892647 2023-07-08 08:19:05.89266 mef 3370 R rec 5b434444-1d35-4521-800d-80ef013a95d9 -2023-07-08 08:19:06.00834 2023-07-08 08:19:06.008351 mef 3371 R rec d6053e5e-8ee9-48d6-aa36-992fefeb5bfc -2023-07-08 08:19:06.159761 2023-07-08 08:19:06.159767 mef 3372 R rec 3adcb601-3859-4d40-b5fe-ba8971bc9c0a -2023-07-08 08:19:06.290052 2023-07-08 08:19:06.290079 mef 3373 R rec 37a214cb-0f57-4490-9e44-2c9bdc239c1d -2023-07-08 08:19:06.418803 2023-07-08 08:19:06.418813 mef 3374 R rec ef6a6eb4-dd81-4bc0-b106-c51169086a16 -2023-07-08 08:19:06.546253 2023-07-08 08:19:06.546264 mef 3375 R rec 4451ee06-edb4-4120-9cc1-71053d19f6df -2023-07-08 08:19:06.653099 2023-07-08 08:19:06.653109 mef 3376 R rec aae992c6-0da4-49a8-a069-6e60c19d8828 -2023-07-08 08:19:06.761232 2023-07-08 08:19:06.761242 mef 3377 R rec c8f216c3-c9c0-41e2-ac03-6e1f2d26dac6 -2023-07-08 08:19:06.875756 2023-07-08 08:19:06.875766 mef 3378 R rec 2e410832-d2f7-4c52-9c57-419471e399d3 -2023-07-08 08:19:06.995703 2023-07-08 08:19:06.995714 mef 3379 R rec 25bdff5f-3776-44e1-86db-8499d6f623c2 -2023-07-08 08:19:07.141119 2023-07-08 08:19:07.141129 mef 3380 R rec b25c1332-f32f-45f1-9d71-79bee7aa98f1 -2023-07-08 08:19:07.254321 2023-07-08 08:19:07.254333 mef 3381 R rec bde9491a-299a-4165-afa8-0f21ebd5b880 -2023-07-08 08:19:07.362128 2023-07-08 08:19:07.362142 mef 3382 R rec 4f6105fa-2a8d-4423-877a-d18417b74bb5 -2023-07-08 08:19:07.505928 2023-07-08 08:19:07.505936 mef 3383 R rec 22e85cf3-75a5-4ff1-8ad6-bdd242ff6710 -2023-07-08 08:19:07.614788 2023-07-08 08:19:07.614801 mef 3384 R rec 54d3b074-3324-4475-b29b-ca9e36b04b5d -2023-07-08 08:19:07.738672 2023-07-08 08:19:07.738682 mef 3385 R rec ffc451a8-06dc-4130-b9aa-3afb05de6e10 -2023-07-08 08:19:07.87261 2023-07-08 08:19:07.872621 mef 3386 R rec c59a189d-15d7-4279-8827-76ce223adc43 -2023-07-08 08:19:08.006952 2023-07-08 08:19:08.006961 mef 3387 R rec 0f5b0ab9-1d45-49b6-bf9a-a1eaee7b2721 -2023-07-08 08:19:08.123375 2023-07-08 08:19:08.12338 mef 3388 R rec 76dee2aa-388d-4665-a13f-8f59891a556e -2023-07-08 08:19:08.228753 2023-07-08 08:19:08.228763 mef 3389 R rec 4190bc4a-cded-457f-9067-16c96a1388a4 -2023-07-08 08:19:08.381673 2023-07-08 08:19:08.381684 mef 3390 R rec e6e39764-4c3b-4237-b5d8-de663d0fa4c7 -2023-07-08 08:19:08.49603 2023-07-08 08:19:08.496045 mef 3391 R rec 13889dcd-2b18-4b92-912b-f56e3d9f4b8e -2023-07-08 08:19:08.654119 2023-07-08 08:19:08.654134 mef 3392 R rec 58447c75-0fb8-4b76-940a-2966821eaec9 -2023-07-08 08:19:08.773444 2023-07-08 08:19:08.773454 mef 3393 R rec 901d543a-479d-4d10-a11c-aaab37907a5f -2023-07-08 08:19:08.883549 2023-07-08 08:19:08.883559 mef 3394 R rec 10e86648-d558-4c08-bf4d-bf68184a7df0 -2023-07-08 08:19:09.000348 2023-07-08 08:19:09.000359 mef 3395 R rec 92742639-226c-4ba0-8ad6-cdaee2ea9b9e -2023-07-08 08:19:09.09594 2023-07-08 08:19:09.09595 mef 3396 R rec 73cae9c1-aff0-4bde-8ac4-268a7593f000 -2023-07-08 08:19:11.362608 2023-07-08 08:19:11.362614 mef 3397 R rec 5fb7f6ea-d709-46ff-bde3-5393e240aecd -2023-07-08 08:19:11.462996 2023-07-08 08:19:11.463 mef 3398 R rec 61a3afb3-5d51-45af-b6fc-c69423d107fa -2023-07-08 08:19:11.533612 2023-07-08 08:19:11.533617 mef 3399 R rec 427d113d-29f3-46db-9457-6c4edcda4bf0 -2023-07-08 08:19:11.63544 2023-07-08 08:19:11.635449 mef 3400 R rec f3f77269-4310-4378-9e86-e622edb674d0 -2023-07-08 08:19:11.736535 2023-07-08 08:19:11.736547 mef 3401 R rec 9f404ad6-7965-4ea2-acba-5d4607533fd6 -2023-07-08 08:19:11.840108 2023-07-08 08:19:11.840117 mef 3402 R rec f08d87b7-58a8-4d3f-9d16-61d9ba33da12 -2023-07-08 08:19:11.940679 2023-07-08 08:19:11.940688 mef 3403 R rec 910ded78-810a-4e83-be5c-7efce538db7f -2023-07-08 08:19:12.047956 2023-07-08 08:19:12.047967 mef 3404 R rec e353354c-9923-4eb5-b372-bcfc92c95800 -2023-07-08 08:19:12.147166 2023-07-08 08:19:12.147171 mef 3405 R rec d8a97411-f838-4c3f-9584-0560d86c0b40 -2023-07-08 08:19:12.27051 2023-07-08 08:19:12.27052 mef 3406 R rec 62a8d382-37f8-41d1-afd7-d75ab65c09b5 -2023-07-08 08:19:12.399917 2023-07-08 08:19:12.399928 mef 3407 R rec 6872b07a-e351-4097-924f-0259c11a4304 -2023-07-08 08:19:12.504747 2023-07-08 08:19:12.504756 mef 3408 R rec ae6c3c68-db75-4933-bc8b-1040af36330f -2023-07-08 08:19:12.600965 2023-07-08 08:19:12.600976 mef 3409 R rec d301567d-8674-47d6-9b65-75cc9b6242d5 -2023-07-08 08:19:12.702828 2023-07-08 08:19:12.702838 mef 3410 R rec 8b74f54c-8043-414d-8fc2-08f918ca75f6 -2023-07-08 08:19:12.800231 2023-07-08 08:19:12.80024 mef 3411 R rec 05b2bee6-a557-4f61-ac37-587c69ba2c12 -2023-07-08 08:19:12.901095 2023-07-08 08:19:12.901107 mef 3412 R rec 3cf9503e-a225-4540-87fb-968881564e72 -2023-07-08 08:19:13.00888 2023-07-08 08:19:13.00889 mef 3413 R rec 7e9575df-6c79-4d26-ab49-a977b464e4a2 -2023-07-08 08:19:13.18622 2023-07-08 08:19:13.186225 mef 3414 R rec 46eb9f63-d0f3-46f3-acf4-005699aabac2 -2023-07-08 08:19:13.26415 2023-07-08 08:19:13.264157 mef 3415 R rec 7989c090-9c2b-449c-b7fc-7fcd2d08b82c -2023-07-08 08:19:13.329207 2023-07-08 08:19:13.329211 mef 3416 R rec 037e4b06-2474-45fa-8cbc-0572e8605185 -2023-07-08 08:19:13.431 2023-07-08 08:19:13.431011 mef 3417 R rec e6885334-ce7b-49c9-83bb-9b3ca7103a58 -2023-07-08 08:19:13.539554 2023-07-08 08:19:13.539564 mef 3418 R rec 2052d0a1-a7ef-4bf9-9ed8-77dc2be55666 -2023-07-08 08:19:13.65769 2023-07-08 08:19:13.6577 mef 3419 R rec efa01149-4b19-4545-8bf1-2f048f7e0415 -2023-07-08 08:19:13.759585 2023-07-08 08:19:13.759596 mef 3420 R rec 6ed76be9-6a68-4af5-a285-1ea5e3a3790a -2023-07-08 08:19:13.870368 2023-07-08 08:19:13.870379 mef 3421 R rec 4a6e3af7-475d-4551-998a-5b6901c324f4 -2023-07-08 08:19:13.988108 2023-07-08 08:19:13.988121 mef 3422 R rec 333a1d0c-8682-4298-91b7-606123a4b2cb -2023-07-08 08:19:14.103771 2023-07-08 08:19:14.103784 mef 3423 R rec 3ad86343-85c5-48ef-9fdc-d5dfe4013de2 -2023-07-08 08:19:14.205609 2023-07-08 08:19:14.205624 mef 3424 R rec 5247492f-c734-4bc4-a141-3b38874465b6 -2023-07-08 08:19:14.307857 2023-07-08 08:19:14.307867 mef 3425 R rec 33317bcf-1036-482d-bf8e-8fcef76e9378 -2023-07-08 08:19:14.408582 2023-07-08 08:19:14.408592 mef 3426 R rec 526279bc-71ff-4256-b88e-8a57e09dd3b4 -2023-07-08 08:19:14.533654 2023-07-08 08:19:14.533666 mef 3427 R rec da2d0aa9-8022-4114-986d-5f3f4f8e17c0 -2023-07-08 08:19:14.665995 2023-07-08 08:19:14.666008 mef 3428 R rec 3aeec2dc-1c57-44c7-bd1e-55b503386469 -2023-07-08 08:19:14.773225 2023-07-08 08:19:14.773234 mef 3429 R rec 4322772c-6e46-4eeb-b274-520be3649395 -2023-07-08 08:19:14.895597 2023-07-08 08:19:14.895607 mef 3430 R rec 19d39eb4-88ca-449c-a0fa-b5bdcfce6c1c -2023-07-08 08:19:15.002425 2023-07-08 08:19:15.002435 mef 3431 R rec 5be8ba6b-d23a-4089-90a9-06248079a7c2 -2023-07-08 08:19:15.119551 2023-07-08 08:19:15.119561 mef 3432 R rec 4e1341d5-4dd6-403c-bfc2-ddd511d28742 -2023-07-08 08:19:15.240922 2023-07-08 08:19:15.240933 mef 3433 R rec ad21589c-413c-45de-b289-6771dd4c3a36 -2023-07-08 08:19:15.366556 2023-07-08 08:19:15.366569 mef 3434 R rec ae0fb109-8f3f-4ecf-aa3e-062b734744e0 -2023-07-08 08:19:15.479496 2023-07-08 08:19:15.4795 mef 3435 R rec 51ea36e9-72d0-4c8c-95dc-12e271b75aa8 -2023-07-08 08:19:15.57708 2023-07-08 08:19:15.577091 mef 3436 R rec 2e8a6538-580c-490f-a44e-5b94d17ca365 -2023-07-08 08:19:15.686886 2023-07-08 08:19:15.686896 mef 3437 R rec 5ed08f4e-86e0-4efc-8fad-853e4beccd0f -2023-07-08 08:19:15.817327 2023-07-08 08:19:15.817342 mef 3438 R rec ae85da0d-1f35-47de-ae7e-5532c90b5301 -2023-07-08 08:19:15.954673 2023-07-08 08:19:15.954685 mef 3439 R rec face0f61-a61a-4eb2-bfa5-59770a80d2b5 -2023-07-08 08:19:16.139057 2023-07-08 08:19:16.139063 mef 3440 R rec 502e7b10-a63c-4239-afb9-0d719ef2f455 -2023-07-08 08:19:16.235566 2023-07-08 08:19:16.235577 mef 3441 R rec 0649d640-5798-42e8-8ed0-685e0bae7c65 -2023-07-08 08:19:16.341849 2023-07-08 08:19:16.341862 mef 3442 R rec 1af24759-1607-4bf4-ab30-5341b22ee7d7 -2023-07-08 08:19:16.554339 2023-07-08 08:19:16.554353 mef 3443 R rec b5ee5f9f-e4cd-46f8-9b9b-3f688fc19d89 -2023-07-08 08:19:16.676364 2023-07-08 08:19:16.676376 mef 3444 R rec 6d0b0e23-a09e-4f4d-b0f9-d37b55aa48ab -2023-07-08 08:19:16.779498 2023-07-08 08:19:16.779507 mef 3445 R rec e22771c4-0414-4ea7-9def-07bf2ef2c638 -2023-07-08 08:19:16.903977 2023-07-08 08:19:16.904422 mef 3446 R rec 047fc9e5-44f0-4834-9dd5-8652c067a3ab -2023-07-08 08:19:17.014822 2023-07-08 08:19:17.014834 mef 3447 R rec 964f53ba-d594-49b6-81d7-54cf6f09ee43 -2023-07-08 08:19:17.119841 2023-07-08 08:19:17.119852 mef 3448 R rec d06fe145-a108-4a85-83f8-24266a1deb10 -2023-07-08 08:19:17.215363 2023-07-08 08:19:17.215377 mef 3449 R rec b3070354-886d-440e-b739-0d15cad4a6a6 -2023-07-08 08:19:17.311597 2023-07-08 08:19:17.311601 mef 3450 R rec 730ffaa5-76c3-4085-8ea0-5f9419e74d54 -2023-07-08 08:19:17.403053 2023-07-08 08:19:17.403068 mef 3451 R rec eeb6a563-30f6-4f14-abe4-b1eee9b023f0 -2023-07-08 08:19:17.50975 2023-07-08 08:19:17.509759 mef 3452 R rec 69179f7f-8a65-4c11-b090-3610996fb2d4 -2023-07-08 08:19:17.619896 2023-07-08 08:19:17.619912 mef 3453 R rec e7750397-833a-4f5d-8e4b-fdb1015f2d4b -2023-07-08 08:19:17.738606 2023-07-08 08:19:17.738618 mef 3454 R rec 0af8d5d7-0e94-4fab-bbeb-b0e81104b095 -2023-07-08 08:19:17.867636 2023-07-08 08:19:17.867645 mef 3455 R rec 0f738411-0d0c-4ffe-9ba4-2926a29ca7c0 -2023-07-08 08:19:17.984768 2023-07-08 08:19:17.984777 mef 3456 R rec bc24586b-50b1-40af-a357-c3818409af9d -2023-07-08 08:19:18.202611 2023-07-08 08:19:18.202621 mef 3457 R rec e6337b75-04c9-48df-b2fe-5dbade41ee04 -2023-07-08 08:19:18.364557 2023-07-08 08:19:18.364567 mef 3458 R rec e888d84a-6bb3-496d-a99c-0d088f04f07c -2023-07-08 08:19:18.47773 2023-07-08 08:19:18.477742 mef 3459 R rec e657ff0e-3e78-47bf-ada1-3c575b93f466 -2023-07-08 08:19:18.588863 2023-07-08 08:19:18.588872 mef 3460 R rec e1fd5695-15af-40d2-9c94-6652d563dd26 -2023-07-08 08:19:18.69948 2023-07-08 08:19:18.69949 mef 3461 R rec 8431e7a5-5343-44e8-8b24-d48443b4ab48 -2023-07-08 08:19:18.840016 2023-07-08 08:19:18.840026 mef 3462 R rec 199d83c6-c332-4bc8-b2f5-08dc556eb9de -2023-07-08 08:19:18.98435 2023-07-08 08:19:18.984362 mef 3463 R rec 3e1f57e0-263d-493a-b7b3-2f56809c19b2 -2023-07-08 08:19:19.200206 2023-07-08 08:19:19.20025 mef 3464 R rec 94a79484-3208-4777-9e87-fd2a01ce1e42 -2023-07-08 08:19:19.299918 2023-07-08 08:19:19.299929 mef 3465 R rec ea8d133a-cc69-40fe-bff0-ae69bf21a61d -2023-07-08 08:19:19.409714 2023-07-08 08:19:19.409738 mef 3466 R rec 5f5150a9-0a1e-44fc-ba38-a774cb8b80c5 -2023-07-08 08:19:19.521689 2023-07-08 08:19:19.521701 mef 3467 R rec 6a512dae-bc6d-4cf9-8888-88059ec6f1f9 -2023-07-08 08:19:19.649906 2023-07-08 08:19:19.649923 mef 3468 R rec 8cedf662-eca1-4a3e-894f-26f5aa6076bf -2023-07-08 08:19:19.904077 2023-07-08 08:19:19.904088 mef 3469 R rec 920f88da-5eee-47cd-ad2b-d6b05987f7b4 -2023-07-08 08:19:20.012384 2023-07-08 08:19:20.012394 mef 3470 R rec 3d708b9b-5fbf-4fc4-a764-d5b74a3f1f04 -2023-07-08 08:19:20.225772 2023-07-08 08:19:20.225785 mef 3471 R rec e9aa692a-656a-4f60-819e-ae26e9026b95 -2023-07-08 08:19:20.322512 2023-07-08 08:19:20.322528 mef 3472 R rec 86c464d1-7b1c-47dc-a1ba-5f4029bfe522 -2023-07-08 08:19:20.421277 2023-07-08 08:19:20.421288 mef 3473 R rec 5a9c77b6-3a8e-49c3-853b-9e1de760619b -2023-07-08 08:19:20.531763 2023-07-08 08:19:20.531773 mef 3474 R rec 0be35eb9-5188-471e-9485-ea233a6cf596 -2023-07-08 08:19:20.64732 2023-07-08 08:19:20.647333 mef 3475 R rec f5bbecc2-e3db-4d25-b0b2-3346b83bad4f -2023-07-08 08:19:20.784146 2023-07-08 08:19:20.784161 mef 3476 R rec 37470c41-031e-4184-a009-0f329212419b -2023-07-08 08:19:20.913921 2023-07-08 08:19:20.91393 mef 3477 R rec e2b7668a-15fc-443c-a9b3-16a43f0d8ba2 -2023-07-08 08:19:21.050059 2023-07-08 08:19:21.050074 mef 3478 R rec da10dc12-52df-49e5-9177-f3ed688a0ede -2023-07-08 08:19:21.182676 2023-07-08 08:19:21.182682 mef 3479 R rec 02b93938-79eb-4297-a66f-c5fcc6cec81e -2023-07-08 08:19:21.259746 2023-07-08 08:19:21.259756 mef 3480 R rec fb062bd8-16da-4833-ba66-fdc7c02aaf50 -2023-07-08 08:19:21.359625 2023-07-08 08:19:21.359638 mef 3481 R rec 16bb6751-fb01-4bd4-8efa-bda8ddb8deeb -2023-07-08 08:19:21.486175 2023-07-08 08:19:21.486183 mef 3482 R rec 8a370ba2-8fec-43f2-a4a3-47d94042a243 -2023-07-08 08:19:21.595322 2023-07-08 08:19:21.59533 mef 3483 R rec c3ac77ca-9caf-4bfa-88ac-c5888a71fac9 -2023-07-08 08:19:21.716989 2023-07-08 08:19:21.717001 mef 3484 R rec aef056b6-52e5-4594-8b49-b89881e22c7a -2023-07-08 08:19:21.826289 2023-07-08 08:19:21.826294 mef 3485 R rec 8b7aca28-1c6d-4e8f-a061-f3c1ddb316a9 -2023-07-08 08:19:21.922655 2023-07-08 08:19:21.922665 mef 3486 R rec 8388c648-4b6e-495b-a0f2-02d158de9e30 -2023-07-08 08:19:22.037145 2023-07-08 08:19:22.037155 mef 3487 R rec b6074a69-d9a9-4d36-9293-fa92743c9d5b -2023-07-08 08:19:22.165155 2023-07-08 08:19:22.165172 mef 3488 R rec f3f5a1f0-5487-471e-9281-3ae6b4cb2eaf -2023-07-08 08:19:22.302312 2023-07-08 08:19:22.302322 mef 3489 R rec c08a8953-af7e-4ac3-ba48-e2b8fce5ca6f -2023-07-08 08:19:22.404675 2023-07-08 08:19:22.404687 mef 3490 R rec 73c6427c-1340-482c-8e94-f3b4e17122ef -2023-07-08 08:19:22.529227 2023-07-08 08:19:22.529242 mef 3491 R rec cac1d602-09e6-4eed-9d58-436649d8c2b2 -2023-07-08 08:19:22.671567 2023-07-08 08:19:22.671577 mef 3492 R rec 6d5d770d-df3b-425e-8646-2367d6487a52 -2023-07-08 08:19:22.768763 2023-07-08 08:19:22.768773 mef 3493 R rec f8b11039-b80e-4882-930f-5b6a94d703ad -2023-07-08 08:19:22.868956 2023-07-08 08:19:22.868969 mef 3494 R rec 300a9724-a06a-4cdd-80f2-4443c552cdd4 -2023-07-08 08:19:22.984374 2023-07-08 08:19:22.984386 mef 3495 R rec 4cd51567-8a50-4c7a-9037-2c4dd4fe66b7 -2023-07-08 08:19:23.109557 2023-07-08 08:19:23.109567 mef 3496 R rec ca5017d4-f815-425b-87c5-b7268bd38c41 -2023-07-08 08:19:23.22955 2023-07-08 08:19:23.22956 mef 3497 R rec e60aefc2-64a0-40de-adb0-67d812050a7f -2023-07-08 08:19:23.342025 2023-07-08 08:19:23.342035 mef 3498 R rec cacc9e69-f988-40aa-b9fc-d04e74825756 -2023-07-08 08:19:23.55282 2023-07-08 08:19:23.55283 mef 3499 R rec 87276450-5474-4662-b961-dec447841dcd -2023-07-08 08:19:23.667532 2023-07-08 08:19:23.667542 mef 3500 R rec 7086c794-50e8-4488-9878-2c9db4058cb2 -2023-07-08 08:19:23.786882 2023-07-08 08:19:23.786895 mef 3501 R rec 69f749ff-ab44-434a-95a5-f8ca70abe730 -2023-07-08 08:19:23.891031 2023-07-08 08:19:23.891035 mef 3502 R rec aa67ae22-f937-419f-bc30-edeaeca2403a -2023-07-08 08:19:23.989841 2023-07-08 08:19:23.989851 mef 3503 R rec 90407569-45ab-4916-b8cd-44a2a101b2c5 -2023-07-08 08:19:24.101688 2023-07-08 08:19:24.101698 mef 3504 R rec 913b61f9-da68-4a90-af3c-bdace962af0b -2023-07-08 08:19:24.214429 2023-07-08 08:19:24.214439 mef 3505 R rec 5c035ca3-08bc-42b7-b6a0-f7948b54abb1 -2023-07-08 08:19:24.327385 2023-07-08 08:19:24.327396 mef 3506 R rec 0a1e71e1-734c-48e6-8cec-410f0f1b7caf -2023-07-08 08:19:24.449641 2023-07-08 08:19:24.449652 mef 3507 R rec 8bd3de77-6586-4403-b67f-03a2a9f6a313 -2023-07-08 08:19:24.606067 2023-07-08 08:19:24.606077 mef 3508 R rec fecf1776-1960-4d01-bf5f-0755f5592dca -2023-07-08 08:19:24.869242 2023-07-08 08:19:24.869254 mef 3509 R rec 61c5d80e-196a-4ce8-85ff-22b88945eee4 -2023-07-08 08:19:24.974182 2023-07-08 08:19:24.974191 mef 3510 R rec e4fbfc76-dd00-4b5c-89f0-d9e8ff88d485 -2023-07-08 08:19:25.185804 2023-07-08 08:19:25.185816 mef 3511 R rec 1a02d5c2-eef2-4231-83ad-3203aae7a7d8 -2023-07-08 08:19:25.323449 2023-07-08 08:19:25.32355 mef 3512 R rec d8060238-51b1-4693-84b3-20b21a4d1b86 -2023-07-08 08:19:25.454875 2023-07-08 08:19:25.454886 mef 3513 R rec 0122add0-1262-4115-8c16-870a1130ded4 -2023-07-08 08:19:25.563712 2023-07-08 08:19:25.563723 mef 3514 R rec a81738e1-4ced-46cd-8351-9307780b3beb -2023-07-08 08:19:25.67017 2023-07-08 08:19:25.670183 mef 3515 R rec d51fe2d9-cf37-4792-9398-255d6a0d5343 -2023-07-08 08:19:25.816388 2023-07-08 08:19:25.816393 mef 3516 R rec 3d7e752f-3c7f-4567-ad20-27048bbea78d -2023-07-08 08:19:26.067384 2023-07-08 08:19:26.067395 mef 3517 R rec bfd2b521-5045-47a8-9bc0-42b4307a689c -2023-07-08 08:19:26.211608 2023-07-08 08:19:26.211613 mef 3518 R rec 2313bf9c-1dc1-4e2d-b758-f437826c66f7 -2023-07-08 08:19:26.316218 2023-07-08 08:19:26.316228 mef 3519 R rec c26b9202-1f9d-467a-a6b2-1b609c518c98 -2023-07-08 08:19:26.412076 2023-07-08 08:19:26.412087 mef 3520 R rec 9c47e582-69bc-4e57-a9b0-2f8cc823639b -2023-07-08 08:19:26.552223 2023-07-08 08:19:26.552233 mef 3521 R rec 82bdb5d6-38fa-45b9-b1f6-e54b41cc488c -2023-07-08 08:19:26.668455 2023-07-08 08:19:26.668468 mef 3522 R rec 5a05abe0-3ed5-4ea3-bd72-787d566be727 -2023-07-08 08:19:26.788044 2023-07-08 08:19:26.788054 mef 3523 R rec 16fc0524-3e86-4fe1-8931-1e30ea8e10e5 -2023-07-08 08:19:26.908014 2023-07-08 08:19:26.908205 mef 3524 R rec 56bcc877-f1f4-4817-9a99-4d8403c9add8 -2023-07-08 08:19:27.014163 2023-07-08 08:19:27.014178 mef 3525 R rec ae73309b-fb37-4a6f-bcce-cb9faa7fb24d -2023-07-08 08:19:27.132783 2023-07-08 08:19:27.132793 mef 3526 R rec 3df9a4b8-050e-4ae1-8573-4984b348e3f6 -2023-07-08 08:19:27.244518 2023-07-08 08:19:27.244534 mef 3527 R rec 543b44c1-a341-42d9-934d-9d81aa862f26 -2023-07-08 08:19:27.344405 2023-07-08 08:19:27.344415 mef 3528 R rec 148f8ca3-f973-4a81-a07d-5db537d2745b -2023-07-08 08:19:27.439446 2023-07-08 08:19:27.439458 mef 3529 R rec daecc807-933c-4219-a4c0-5600b78f2687 -2023-07-08 08:19:27.565465 2023-07-08 08:19:27.565475 mef 3530 R rec 38213e80-a3f2-45a0-9380-2815f1181919 -2023-07-08 08:19:27.689166 2023-07-08 08:19:27.689175 mef 3531 R rec b44ba7a7-f24b-4eb4-8599-b838b38cca1a -2023-07-08 08:19:27.78839 2023-07-08 08:19:27.788399 mef 3532 R rec 62ff0815-64cd-40d1-aec2-66e184016d3b -2023-07-08 08:19:27.90103 2023-07-08 08:19:27.901039 mef 3533 R rec c6c31a45-8df8-4bb9-99cc-f837cb9063a3 -2023-07-08 08:19:28.018687 2023-07-08 08:19:28.018696 mef 3534 R rec 5edb859c-5a8d-4422-a50f-51e772a57189 -2023-07-08 08:19:28.131534 2023-07-08 08:19:28.131545 mef 3535 R rec b732204f-fb6c-4849-a5ee-d91d95893030 -2023-07-08 08:19:28.24619 2023-07-08 08:19:28.246205 mef 3536 R rec 97ad5ab0-1193-4122-962d-866dcb99aa1f -2023-07-08 08:19:28.375399 2023-07-08 08:19:28.375414 mef 3537 R rec 73edf063-31f2-48e1-a8eb-6caa6babb3d6 -2023-07-08 08:19:28.489515 2023-07-08 08:19:28.489532 mef 3538 R rec d6fdaff4-7f78-4676-99a5-08ec63de2216 -2023-07-08 08:19:28.592824 2023-07-08 08:19:28.592829 mef 3539 R rec 7b46a36a-05a6-4cf3-9bee-7cf3917d8e95 -2023-07-08 08:19:28.690003 2023-07-08 08:19:28.690017 mef 3540 R rec f55ab3da-f34a-4771-bad8-16f71bc3f56f -2023-07-08 08:19:28.811678 2023-07-08 08:19:28.811691 mef 3541 R rec e3d1f328-0cd7-4370-9a49-09a4fae1365d -2023-07-08 08:19:28.910251 2023-07-08 08:19:28.910261 mef 3542 R rec 7a5a74d6-37ed-4c8b-9a3c-13616a5c897a -2023-07-08 08:19:29.024246 2023-07-08 08:19:29.024258 mef 3543 R rec 85d5e5d6-7f16-4fbb-b6a4-5fdfad2f801f -2023-07-08 08:19:29.132022 2023-07-08 08:19:29.132032 mef 3544 R rec e156fea4-3762-4691-9a91-2bbb2a905397 -2023-07-08 08:19:29.235705 2023-07-08 08:19:29.235717 mef 3545 R rec 40153125-f27c-49d2-84f2-d7aae5658991 -2023-07-08 08:19:29.335499 2023-07-08 08:19:29.335508 mef 3546 R rec 8fc166e6-2425-4495-9e7d-e3f55f4040cd -2023-07-08 08:19:29.459263 2023-07-08 08:19:29.459277 mef 3547 R rec c961beb5-7445-4e0e-aed0-9c23a0dc1cbf -2023-07-08 08:19:29.580424 2023-07-08 08:19:29.580434 mef 3548 R rec a57ee5fb-6e3a-4e5d-aae3-c206fdf3d0c4 -2023-07-08 08:19:29.679499 2023-07-08 08:19:29.679514 mef 3549 R rec 9fa587b1-0408-491c-862a-02c020198665 -2023-07-08 08:19:29.912976 2023-07-08 08:19:29.912983 mef 3550 R rec 7cedf842-2eed-41fc-966b-53a00737e0d2 -2023-07-08 08:19:30.061398 2023-07-08 08:19:30.061408 mef 3551 R rec 66c27bde-4bfb-4927-9482-504cd42eea7c -2023-07-08 08:19:30.176165 2023-07-08 08:19:30.176176 mef 3552 R rec 4c0e4021-9ef2-4887-9eb3-c7f11f61dbb4 -2023-07-08 08:19:30.32065 2023-07-08 08:19:30.320661 mef 3553 R rec 8d56787d-9872-4391-9529-f24a84b50351 -2023-07-08 08:19:30.461839 2023-07-08 08:19:30.461849 mef 3554 R rec 7c229ec2-6998-4651-8e5c-b6fc4e6b4f9c -2023-07-08 08:19:30.56823 2023-07-08 08:19:30.568249 mef 3555 R rec 1c71e50b-18f3-4663-bcc8-fff1e295bdb4 -2023-07-08 08:19:30.683068 2023-07-08 08:19:30.683083 mef 3556 R rec 9d8ffec9-ca43-4fc9-8d78-f47cf71bfe96 -2023-07-08 08:19:30.801943 2023-07-08 08:19:30.801953 mef 3557 R rec bdaf39b4-904b-49e4-8ac3-61a9ac6577e3 -2023-07-08 08:19:31.063645 2023-07-08 08:19:31.06365 mef 3558 R rec 4f7b2ff6-d25a-4f30-8712-9bad70e4a13d -2023-07-08 08:19:31.172871 2023-07-08 08:19:31.17288 mef 3559 R rec c0a22098-f172-44b0-a589-3190f576c2fd -2023-07-08 08:19:31.300806 2023-07-08 08:19:31.300833 mef 3560 R rec 53c75fc3-156c-4199-ad46-2a5c01b133b6 -2023-07-08 08:19:31.434342 2023-07-08 08:19:31.434353 mef 3561 R rec 5432d902-d531-44b2-abc1-71817db16121 -2023-07-08 08:19:31.550101 2023-07-08 08:19:31.550111 mef 3562 R rec eecd61e0-10cb-4a7f-b059-7c1842012f57 -2023-07-08 08:19:31.772572 2023-07-08 08:19:31.772582 mef 3563 R rec a1a04e5e-bf8e-4b32-a6b9-7fa9878e9ba0 -2023-07-08 08:19:31.873806 2023-07-08 08:19:31.873808 mef 3564 R rec b3fa1ade-1316-4155-bac0-a5c0a3bb55cb -2023-07-08 08:19:31.988361 2023-07-08 08:19:31.988374 mef 3565 R rec 00e0973e-3c55-4df7-a0c5-e0c875756348 -2023-07-08 08:19:32.106021 2023-07-08 08:19:32.106025 mef 3566 R rec 41e830b8-baa6-464f-907b-1dc3b07223af -2023-07-08 08:19:32.327993 2023-07-08 08:19:32.328003 mef 3567 R rec 5272f4b7-294d-453d-ba60-39c31a58a02f -2023-07-08 08:19:32.468325 2023-07-08 08:19:32.468339 mef 3568 R rec 402cf498-bda2-4c82-993f-970cb9c4260d -2023-07-08 08:19:32.571251 2023-07-08 08:19:32.571261 mef 3569 R rec 14f04849-3b93-4fb0-801e-56ee35054b1f -2023-07-08 08:19:32.676336 2023-07-08 08:19:32.676346 mef 3570 R rec e6eb8714-8d94-4ed9-a7ff-72c705c2852f -2023-07-08 08:19:32.804348 2023-07-08 08:19:32.804359 mef 3571 R rec b6196ee2-a196-43bb-b9b9-9f2fc7c88d62 -2023-07-08 08:19:32.952372 2023-07-08 08:19:32.952383 mef 3572 R rec 1d3433b9-6bca-4833-9733-a7c4efea4dd0 -2023-07-08 08:19:33.08956 2023-07-08 08:19:33.089576 mef 3573 R rec 3915420a-48e7-4f63-86be-a94d6cf98790 -2023-07-08 08:19:33.217618 2023-07-08 08:19:33.217634 mef 3574 R rec 6227fc78-01ce-4996-8dae-23ffafcb6823 -2023-07-08 08:19:33.330295 2023-07-08 08:19:33.330306 mef 3575 R rec 53829013-d162-46de-8c05-f9ce7db80e0e -2023-07-08 08:19:33.542622 2023-07-08 08:19:33.542632 mef 3576 R rec 8a2641f3-a3d5-401c-88e3-24e6f8da2a5d -2023-07-08 08:19:33.752626 2023-07-08 08:19:33.752639 mef 3577 R rec 6339f164-79bf-4e4b-aba9-d9090b54e435 -2023-07-08 08:19:33.867495 2023-07-08 08:19:33.867507 mef 3578 R rec a666a3b0-6a79-4c0d-a137-3a6a1d173939 -2023-07-08 08:19:33.990801 2023-07-08 08:19:33.990812 mef 3579 R rec 0b0b86c5-41de-406e-ac85-d2a8cd5706f8 -2023-07-08 08:19:34.219203 2023-07-08 08:19:34.219216 mef 3580 R rec 6306dc8f-fb37-4bae-8e0c-18ef19254044 -2023-07-08 08:19:34.328739 2023-07-08 08:19:34.328755 mef 3581 R rec 0708878a-6571-4922-89f2-7629d65fc0ea -2023-07-08 08:19:34.435421 2023-07-08 08:19:34.435436 mef 3582 R rec de41397c-9efd-4251-b83c-615d5c8e4773 -2023-07-08 08:19:34.555953 2023-07-08 08:19:34.555964 mef 3583 R rec 98a70d67-7bc4-4c55-893a-21657ae908a0 -2023-07-08 08:19:34.773759 2023-07-08 08:19:34.773769 mef 3584 R rec fc6d3a28-8695-44ac-b5a8-7d0a2d35f476 -2023-07-08 08:19:34.893454 2023-07-08 08:19:34.893467 mef 3585 R rec 68342cb9-c716-4758-9d73-86a41c4e389b -2023-07-08 08:19:35.008675 2023-07-08 08:19:35.008687 mef 3586 R rec 51edf661-32c3-4b58-9bff-c2c5798c0160 -2023-07-08 08:19:35.149415 2023-07-08 08:19:35.149426 mef 3587 R rec 835fd924-fa8d-4981-9b20-abe00749b824 -2023-07-08 08:19:35.426835 2023-07-08 08:19:35.426845 mef 3588 R rec ffdffa0c-f80d-4851-bb97-12dd022a59df -2023-07-08 08:19:35.546569 2023-07-08 08:19:35.54658 mef 3589 R rec 0b0a83f1-9725-48e5-8c5f-663df9839cf3 -2023-07-08 08:19:35.690258 2023-07-08 08:19:35.690264 mef 3590 R rec 72d8dbf5-74c3-4fc2-9338-3efec2b87372 -2023-07-08 08:19:35.836485 2023-07-08 08:19:35.836496 mef 3591 R rec 84981b81-80c3-4816-a352-fe666641b558 -2023-07-08 08:19:35.972658 2023-07-08 08:19:35.972668 mef 3592 R rec 4934b72c-3ab9-4ff8-8a56-6d14470cac21 -2023-07-08 08:19:36.088083 2023-07-08 08:19:36.088094 mef 3593 R rec 52822a36-c9cd-4a03-8ecd-4121a87ec9e3 -2023-07-08 08:19:36.207377 2023-07-08 08:19:36.20739 mef 3594 R rec 6be8b71f-ab85-470f-a46b-ed731f846dca -2023-07-08 08:19:36.366384 2023-07-08 08:19:36.366391 mef 3595 R rec 5c4ff384-53cb-41bc-8e62-989af79e5e66 -2023-07-08 08:19:36.508306 2023-07-08 08:19:36.508316 mef 3596 R rec 2de28e4e-7be4-4f76-aab2-0ac8f6fe559e -2023-07-08 08:19:36.631825 2023-07-08 08:19:36.631835 mef 3597 R rec 6366de9f-df5f-4608-b973-1571673fc76c -2023-07-08 08:19:36.760795 2023-07-08 08:19:36.760806 mef 3598 R rec 6cc18286-3a20-4e7f-8e39-06eaff305275 -2023-07-08 08:19:36.883226 2023-07-08 08:19:36.883237 mef 3599 R rec 57c58cb9-94d7-4f6a-ad96-e6e0c11a6d89 -2023-07-08 08:19:36.997924 2023-07-08 08:19:36.997933 mef 3600 R rec 2ca6fc76-4093-4a9d-9607-4b3fb7f488bf -2023-07-08 08:19:37.118442 2023-07-08 08:19:37.118456 mef 3601 R rec d5c2f4e1-db6f-46b7-999f-93cb8fc30db4 -2023-07-08 08:19:37.229613 2023-07-08 08:19:37.229623 mef 3602 R rec 7773aef1-6df3-4314-a31d-9daa750cfd56 -2023-07-08 08:19:37.352474 2023-07-08 08:19:37.352484 mef 3603 R rec 5090a74c-1dc7-441f-98f6-37523dcaa54c -2023-07-08 08:19:37.46175 2023-07-08 08:19:37.461763 mef 3604 R rec 3938bf68-352b-40d1-8026-5f5634dd6aaa -2023-07-08 08:19:37.566478 2023-07-08 08:19:37.566494 mef 3605 R rec af102bed-53ec-425f-951e-537b2c49e747 -2023-07-08 08:19:37.667191 2023-07-08 08:19:37.667204 mef 3606 R rec 693dba69-8c54-4b79-a369-7f3411805a50 -2023-07-08 08:19:37.911963 2023-07-08 08:19:37.911973 mef 3607 R rec 2dc5f317-003a-4486-bf4c-05d63561223e -2023-07-08 08:19:38.014713 2023-07-08 08:19:38.014723 mef 3608 R rec dcd59924-9680-49fb-b877-0781bde1797e -2023-07-08 08:19:38.132839 2023-07-08 08:19:38.13285 mef 3609 R rec eb889027-40a8-4e26-b1aa-3dcedd099caf -2023-07-08 08:19:38.236702 2023-07-08 08:19:38.236714 mef 3610 R rec 36b4e4f4-42be-4457-b738-228146e03bcf -2023-07-08 08:19:38.356581 2023-07-08 08:19:38.356591 mef 3611 R rec 6ef2d2ed-d2b1-431c-809c-d2d6b5d3a234 -2023-07-08 08:19:38.47002 2023-07-08 08:19:38.470032 mef 3612 R rec 017a67b0-58e5-4d94-8776-2ad64a8ce961 -2023-07-08 08:19:38.597969 2023-07-08 08:19:38.59798 mef 3613 R rec aeba7caf-d550-422a-8af8-793924e8d321 -2023-07-08 08:19:38.70782 2023-07-08 08:19:38.707836 mef 3614 R rec 9b794ed5-6dc0-4994-af7e-84fcf8814cdb -2023-07-08 08:19:38.830761 2023-07-08 08:19:38.830772 mef 3615 R rec 4f84209d-b536-45a4-95b1-06373f880c39 -2023-07-08 08:19:38.938212 2023-07-08 08:19:38.938225 mef 3616 R rec de4dc4ab-376e-4d6c-9aeb-b656f14d40d8 -2023-07-08 08:19:39.069361 2023-07-08 08:19:39.069376 mef 3617 R rec 53e6796a-dabe-4d61-9014-7d9b257a3ad3 -2023-07-08 08:19:39.200853 2023-07-08 08:19:39.200867 mef 3618 R rec 5d5e083c-ec20-46f9-9d01-516cac09300b -2023-07-08 08:19:39.310256 2023-07-08 08:19:39.310269 mef 3619 R rec ebdf6053-5297-4d1e-8978-544cc1fdc7af -2023-07-08 08:19:39.418645 2023-07-08 08:19:39.41865 mef 3620 R rec 56b2a8b0-3593-4e80-b378-977b0d5ffecb -2023-07-08 08:19:39.507436 2023-07-08 08:19:39.507445 mef 3621 R rec 43abc37c-9edd-40dc-8761-b3c67cf03d1b -2023-07-08 08:19:39.637784 2023-07-08 08:19:39.637794 mef 3622 R rec ab7934e1-3b87-4b66-9fcc-78c050a58095 -2023-07-08 08:19:39.746307 2023-07-08 08:19:39.746312 mef 3623 R rec 2f8b2f4c-86f9-477e-83c4-87bab2cf4c6f -2023-07-08 08:19:39.850157 2023-07-08 08:19:39.850167 mef 3624 R rec b29a5088-6de4-4c5c-a012-6a80efd56f8b -2023-07-08 08:19:39.980701 2023-07-08 08:19:39.980711 mef 3625 R rec 93e5a5f6-ac64-40c2-85d9-3be8211378a2 -2023-07-08 08:19:40.102208 2023-07-08 08:19:40.102219 mef 3626 R rec d0e7635b-f9b0-490d-87c6-25bc456f6f6e -2023-07-08 08:19:40.222352 2023-07-08 08:19:40.222361 mef 3627 R rec fc717fff-6c25-439a-8280-ddd7baa398f8 -2023-07-08 08:19:40.331087 2023-07-08 08:19:40.331098 mef 3628 R rec bec4645d-6163-473f-9ae3-582851c9be26 -2023-07-08 08:19:40.436521 2023-07-08 08:19:40.436525 mef 3629 R rec 1e0be4c1-77e6-4124-8dd6-5c1af589b6dd -2023-07-08 08:19:40.558042 2023-07-08 08:19:40.558052 mef 3630 R rec 21c5f280-45e4-4d41-8831-6295c78c92c2 -2023-07-08 08:19:40.667365 2023-07-08 08:19:40.66738 mef 3631 R rec b94a740a-eff6-4fb0-909d-521a8306c76c -2023-07-08 08:19:40.80077 2023-07-08 08:19:40.80078 mef 3632 R rec e9ddec8a-ccd3-4c77-a8d7-c499660dbfd7 -2023-07-08 08:19:40.937983 2023-07-08 08:19:40.938001 mef 3633 R rec 626a2df0-cd28-4e1c-85ea-c15ce68f2053 -2023-07-08 08:19:41.0616 2023-07-08 08:19:41.06161 mef 3634 R rec 088fdf7f-2ad5-4ebe-b9b0-0510663cf3e0 -2023-07-08 08:19:41.172589 2023-07-08 08:19:41.172601 mef 3635 R rec f4a22588-3925-4c7e-bf0c-4905d62effe2 -2023-07-08 08:19:41.292315 2023-07-08 08:19:41.292325 mef 3636 R rec 7c3641b9-348a-43ab-bce4-95033ad61299 -2023-07-08 08:19:41.398595 2023-07-08 08:19:41.398605 mef 3637 R rec d355d588-7386-4256-9174-93388f99cefd -2023-07-08 08:19:41.503479 2023-07-08 08:19:41.503492 mef 3638 R rec 81bb4837-d6ff-42df-ba34-a1243f150fea -2023-07-08 08:19:41.624896 2023-07-08 08:19:41.624906 mef 3639 R rec 60010535-cf3d-400e-8452-bfdebf89f669 -2023-07-08 08:19:41.732053 2023-07-08 08:19:41.732063 mef 3640 R rec f7077889-8f77-4cd6-b149-1ffa59a4d868 -2023-07-08 08:19:41.844089 2023-07-08 08:19:41.844099 mef 3641 R rec e3e144c5-4b57-4e8f-8c54-7e4cccace180 -2023-07-08 08:19:41.975375 2023-07-08 08:19:41.975385 mef 3642 R rec d62949a5-c257-4731-af03-5590bf4d0fd1 -2023-07-08 08:19:42.107066 2023-07-08 08:19:42.107078 mef 3643 R rec a1486d8a-18ea-4fd9-a04f-99ad5ff38914 -2023-07-08 08:19:42.354177 2023-07-08 08:19:42.354187 mef 3644 R rec 5bbc1df9-770d-483a-9808-f10c373d2c09 -2023-07-08 08:19:42.583726 2023-07-08 08:19:42.583736 mef 3645 R rec bc2b68fe-abc8-4521-9ea9-ebe7554dfd07 -2023-07-08 08:19:42.697083 2023-07-08 08:19:42.697094 mef 3646 R rec 43c80a4d-4b0c-46e9-bae7-8a6db6f056b4 -2023-07-08 08:19:42.810546 2023-07-08 08:19:42.810558 mef 3647 R rec d76adb90-67e3-4587-a779-548a4b15c06f -2023-07-08 08:19:42.92049 2023-07-08 08:19:42.920504 mef 3648 R rec ab2a4c2c-8431-4d95-be6f-8526994bfe63 -2023-07-08 08:19:43.041281 2023-07-08 08:19:43.041296 mef 3649 R rec ab4d6465-c115-49e9-bc81-105a298817e3 -2023-07-08 08:19:43.168644 2023-07-08 08:19:43.168656 mef 3650 R rec 269d9c43-0dcf-4a77-98d4-671607439264 -2023-07-08 08:19:43.465413 2023-07-08 08:19:43.465428 mef 3651 R rec 53ee05de-7247-45ad-b71f-10af703e1665 -2023-07-08 08:19:43.580185 2023-07-08 08:19:43.5802 mef 3652 R rec 63cb9951-0a1b-4dc5-bbd2-056cce7a77b5 -2023-07-08 08:19:43.6917 2023-07-08 08:19:43.69171 mef 3653 R rec 93800a5d-3c63-4826-bf62-0a5266ba752c -2023-07-08 08:19:43.939107 2023-07-08 08:19:43.939118 mef 3654 R rec 882bf0dc-5d3f-42fa-b683-0f8cbc901d53 -2023-07-08 08:19:44.054246 2023-07-08 08:19:44.054259 mef 3655 R rec 0b33e1fa-ab00-4745-8d82-5ff6be9ab4d4 -2023-07-08 08:19:44.171519 2023-07-08 08:19:44.171529 mef 3656 R rec 1b621a1d-bee3-4be9-b9fb-21e17b20383d -2023-07-08 08:19:44.431301 2023-07-08 08:19:44.431305 mef 3657 R rec 97d5395a-080a-48ae-add9-0c257b4a2b69 -2023-07-08 08:19:44.517444 2023-07-08 08:19:44.517454 mef 3658 R rec 8ee38cd5-1226-4c9e-9dae-6bd52a541ffd -2023-07-08 08:19:44.63326 2023-07-08 08:19:44.633274 mef 3659 R rec d434f89f-6e68-4fe6-8413-34b3cdbb9d78 -2023-07-08 08:19:44.76878 2023-07-08 08:19:44.768791 mef 3660 R rec 5bfcfb0f-4a77-41ae-83da-73207898818d -2023-07-08 08:19:44.890896 2023-07-08 08:19:44.890908 mef 3661 R rec b5e17273-8af0-432c-8e92-5d2c6ff233e3 -2023-07-08 08:19:45.017422 2023-07-08 08:19:45.017434 mef 3662 R rec 3d7e0e03-9e0d-417a-8939-fe860fc16b55 -2023-07-08 08:19:45.161196 2023-07-08 08:19:45.161211 mef 3663 R rec a6f821ef-dd3c-4c88-a16b-42b71f242bf6 -2023-07-08 08:19:45.276462 2023-07-08 08:19:45.276474 mef 3664 R rec 934214e8-ad81-40a0-804a-58f10dca8c53 -2023-07-08 08:19:45.389863 2023-07-08 08:19:45.389878 mef 3665 R rec 1c634c51-2147-4fa5-b6ab-72ac988de17a -2023-07-08 08:19:45.532217 2023-07-08 08:19:45.532231 mef 3666 R rec 51bfc734-8d3d-4bbc-8435-1c9587b171de -2023-07-08 08:19:45.66076 2023-07-08 08:19:45.660769 mef 3667 R rec 64ddf224-e88a-44ff-ab15-c6e906d28a7f -2023-07-08 08:19:45.787944 2023-07-08 08:19:45.787959 mef 3668 R rec 95c0262d-a026-439b-b5f7-50922a3ea6c6 -2023-07-08 08:19:45.898083 2023-07-08 08:19:45.898099 mef 3669 R rec 6f5f7713-7c4e-48ef-906e-d99f3da26d89 -2023-07-08 08:19:46.005196 2023-07-08 08:19:46.005206 mef 3670 R rec c53d8645-a278-4a0c-a4bf-523f8ca80c68 -2023-07-08 08:19:46.116184 2023-07-08 08:19:46.116196 mef 3671 R rec ec37cfe2-b279-4541-9d7f-075f714e74d1 -2023-07-08 08:19:46.225912 2023-07-08 08:19:46.225926 mef 3672 R rec 46ac35e0-26d0-4791-9f6b-5eb08267eaf5 -2023-07-08 08:19:46.474354 2023-07-08 08:19:46.474369 mef 3673 R rec fbb17003-fb64-4efb-a7dc-9e956874b385 -2023-07-08 08:19:46.597304 2023-07-08 08:19:46.597315 mef 3674 R rec b657609b-dd04-4074-896b-59d816eb9e9f -2023-07-08 08:19:46.733754 2023-07-08 08:19:46.73377 mef 3675 R rec 360be85d-e070-4469-aa32-70970057ea24 -2023-07-08 08:19:46.855219 2023-07-08 08:19:46.855231 mef 3676 R rec c8d513cd-5156-4795-ba2c-77377fde8dc7 -2023-07-08 08:19:46.969268 2023-07-08 08:19:46.969278 mef 3677 R rec 6bec1a0d-1db7-44d9-bcbf-50f65681a8a0 -2023-07-08 08:19:47.113245 2023-07-08 08:19:47.113255 mef 3678 R rec b1e8e708-1ce4-4c22-836a-d5223ec09460 -2023-07-08 08:19:47.248071 2023-07-08 08:19:47.248082 mef 3679 R rec b1f52415-2f4d-4907-b3fa-0695c6fe78a1 -2023-07-08 08:19:47.366829 2023-07-08 08:19:47.366845 mef 3680 R rec 14380b9f-838e-429b-8544-c13deefd8a1b -2023-07-08 08:19:47.500599 2023-07-08 08:19:47.500609 mef 3681 R rec 658b2b40-e1f2-48ce-9db2-a0d836c4e564 -2023-07-08 08:19:47.614485 2023-07-08 08:19:47.614494 mef 3682 R rec f476b89e-4c25-45d0-9776-8b797f67c090 -2023-07-08 08:19:47.745671 2023-07-08 08:19:47.745684 mef 3683 R rec 027be098-460f-43d8-83c3-7e0edf965ff1 -2023-07-08 08:19:47.869757 2023-07-08 08:19:47.869772 mef 3684 R rec 2bd2f7d2-0ad2-4419-9d7d-1a1948514a16 -2023-07-08 08:19:48.016149 2023-07-08 08:19:48.016164 mef 3685 R rec 3464f45a-8e92-4475-925d-d5e356815fc7 -2023-07-08 08:19:48.151978 2023-07-08 08:19:48.151996 mef 3686 R rec e64cc44b-79f0-4597-9565-c018d3c531f2 -2023-07-08 08:19:48.282853 2023-07-08 08:19:48.282868 mef 3687 R rec 71bfb95b-591c-43ce-afb3-18e3735a475f -2023-07-08 08:19:48.433408 2023-07-08 08:19:48.43342 mef 3688 R rec 7ec81e02-7fbe-4d5e-9b93-a9266e1869b2 -2023-07-08 08:19:48.580097 2023-07-08 08:19:48.58011 mef 3689 R rec 8d926325-b1e6-4524-9ef5-23fc62c56f91 -2023-07-08 08:19:48.706763 2023-07-08 08:19:48.706775 mef 3690 R rec db20fbb6-963e-4fda-8887-3fd754c13d69 -2023-07-08 08:19:48.8379 2023-07-08 08:19:48.83791 mef 3691 R rec cf45e660-a6b7-42d0-a47b-a549e0bb464d -2023-07-08 08:19:48.957278 2023-07-08 08:19:48.957287 mef 3692 R rec dfa0c5a9-7541-4df1-8a9e-90ee9256179b -2023-07-08 08:19:49.069271 2023-07-08 08:19:49.069286 mef 3693 R rec 6b2abe04-82e5-4cc4-a6bb-240a2ef43a0a -2023-07-08 08:19:49.189712 2023-07-08 08:19:49.189726 mef 3694 R rec 525deb29-bc26-425a-9f14-493055b7c009 -2023-07-08 08:19:49.315398 2023-07-08 08:19:49.315413 mef 3695 R rec db7d2274-fcc8-4c88-85e3-d38303c01149 -2023-07-08 08:19:49.43165 2023-07-08 08:19:49.431664 mef 3696 R rec 70ec26de-98eb-435f-8c91-973394963cfe -2023-07-08 08:19:49.559419 2023-07-08 08:19:49.55943 mef 3697 R rec ebd78795-14fd-44d1-80e5-d4ebcebf3656 -2023-07-08 08:19:49.674417 2023-07-08 08:19:49.674432 mef 3698 R rec da5d6bf1-5789-44fe-be2b-ad6b29ea4fa7 -2023-07-08 08:19:49.795657 2023-07-08 08:19:49.795678 mef 3699 R rec f1de4a6e-ea0d-4248-941f-74957ae5bd43 -2023-07-08 08:19:49.913828 2023-07-08 08:19:49.913837 mef 3700 R rec 37ecceeb-8093-4918-9375-2f611b93c0d4 -2023-07-08 08:19:50.038602 2023-07-08 08:19:50.038612 mef 3701 R rec 55f5d91a-4a7d-41ad-b8a1-d220a475a617 -2023-07-08 08:19:50.173291 2023-07-08 08:19:50.173308 mef 3702 R rec 18b780e0-f4b8-4944-bcde-f7ef164812a2 -2023-07-08 08:19:50.303563 2023-07-08 08:19:50.303581 mef 3703 R rec 7f7418b1-3edc-4eea-8cd0-baf924e996bf -2023-07-08 08:19:50.419979 2023-07-08 08:19:50.419992 mef 3704 R rec ea132a03-a7ed-4174-87e3-49e051469f7e -2023-07-08 08:19:50.542117 2023-07-08 08:19:50.542131 mef 3705 R rec 7715b9d6-6a99-4f54-b2d5-606798ec362b -2023-07-08 08:19:50.664114 2023-07-08 08:19:50.664126 mef 3706 R rec 476ecc5b-8254-40d7-acd0-e6afe934cd9a -2023-07-08 08:19:50.933277 2023-07-08 08:19:50.933295 mef 3707 R rec ac6f7bac-68b4-4037-979c-f01760f5d53f -2023-07-08 08:19:51.077904 2023-07-08 08:19:51.077915 mef 3708 R rec cee6c426-ee02-4226-bafc-95e7f62c0fca -2023-07-08 08:19:51.214664 2023-07-08 08:19:51.214675 mef 3709 R rec 98c4fb5b-45b3-487f-b0c3-aa1f93090c61 -2023-07-08 08:19:51.343964 2023-07-08 08:19:51.343982 mef 3710 R rec 1b2516d6-2baa-4e47-b115-89c459913818 -2023-07-08 08:19:51.46811 2023-07-08 08:19:51.468121 mef 3711 R rec 50519b54-c924-4937-a45a-e6b6590afc8d -2023-07-08 08:19:51.584814 2023-07-08 08:19:51.584825 mef 3712 R rec fab8bda0-7117-4625-ad10-aab2537f6f9a -2023-07-08 08:19:51.711652 2023-07-08 08:19:51.711664 mef 3713 R rec 1da54f91-6182-4153-8fff-b37cad4a4e0d -2023-07-08 08:19:51.848042 2023-07-08 08:19:51.848053 mef 3714 R rec 5dfb7053-0aab-4201-a1ba-6c3d7fdff40a -2023-07-08 08:19:51.971748 2023-07-08 08:19:51.971758 mef 3715 R rec db297b03-81bc-48c0-a577-a8ff770c7e81 -2023-07-08 08:19:52.115772 2023-07-08 08:19:52.115784 mef 3716 R rec 37dd5d0f-fd16-4ec7-988a-2a6f15854dd4 -2023-07-08 08:19:52.243793 2023-07-08 08:19:52.243812 mef 3717 R rec bbb8c8af-2e24-4861-a79b-6650f2bb11db -2023-07-08 08:19:52.359368 2023-07-08 08:19:52.359384 mef 3718 R rec c1fb8f8a-f692-41ef-973b-6cd1d71dd342 -2023-07-08 08:19:52.463368 2023-07-08 08:19:52.463378 mef 3719 R rec 369e7224-85be-4ff5-b187-f5e1e58e63cc -2023-07-08 08:19:52.564503 2023-07-08 08:19:52.564518 mef 3720 R rec 316ebec1-f712-47b6-b4c9-580cf1a9c683 -2023-07-08 08:19:52.695154 2023-07-08 08:19:52.695165 mef 3721 R rec 50d40837-50d1-420b-9dfb-ad6c9773c224 -2023-07-08 08:19:52.810041 2023-07-08 08:19:52.810051 mef 3722 R rec f5fe779e-eed6-4f2b-9622-ded1321fb0f2 -2023-07-08 08:19:52.928881 2023-07-08 08:19:52.928896 mef 3723 R rec 6e39d6be-a761-4699-be56-feda00737e0d -2023-07-08 08:19:53.050142 2023-07-08 08:19:53.050159 mef 3724 R rec 0a8bc36c-daac-4249-83ec-74aeb1854a35 -2023-07-08 08:19:53.175742 2023-07-08 08:19:53.17576 mef 3725 R rec 8cfcc30f-7776-4fa7-a11d-5d717e6875b8 -2023-07-08 08:19:53.299984 2023-07-08 08:19:53.3 mef 3726 R rec 19ab7e35-c312-4d16-9898-773c692f685e -2023-07-08 08:19:53.419767 2023-07-08 08:19:53.419777 mef 3727 R rec 10ca83f0-882e-4dfa-8b1c-ba4e009e2241 -2023-07-08 08:19:53.54466 2023-07-08 08:19:53.54467 mef 3728 R rec e89248f1-1721-4232-a01b-04afb625e66f -2023-07-08 08:19:53.662526 2023-07-08 08:19:53.662537 mef 3729 R rec 58a594cd-74d4-4a60-94e9-d299d0bb2d34 -2023-07-08 08:19:53.793429 2023-07-08 08:19:53.793445 mef 3730 R rec d6e7b4c6-6b5b-437e-9766-3f13dddf77ca -2023-07-08 08:19:53.92267 2023-07-08 08:19:53.922685 mef 3731 R rec 4e647d12-3506-4b68-9378-59b5a8f96210 -2023-07-08 08:19:54.046742 2023-07-08 08:19:54.046753 mef 3732 R rec 94a4ff25-0843-4e88-95ea-37f234dd1187 -2023-07-08 08:19:54.163325 2023-07-08 08:19:54.16334 mef 3733 R rec d5a8aee5-2dbb-492e-b4a4-88bfea4ad820 -2023-07-08 08:19:54.27672 2023-07-08 08:19:54.276735 mef 3734 R rec 5f8f92c3-d8a8-427a-aef7-97403a422047 -2023-07-08 08:19:54.399619 2023-07-08 08:19:54.399706 mef 3735 R rec 2acc86f7-fd0c-4d84-a3fb-efb9daaacfc4 -2023-07-08 08:19:54.509731 2023-07-08 08:19:54.509743 mef 3736 R rec 55d3cc00-16f5-4c16-b7a6-ac3d58a3be91 -2023-07-08 08:19:54.630071 2023-07-08 08:19:54.630087 mef 3737 R rec 4b486815-196c-40e3-8423-9b45c0a6a721 -2023-07-08 08:19:54.881473 2023-07-08 08:19:54.881491 mef 3738 R rec fdec7b3f-ebbb-41dc-82a0-d67db974e884 -2023-07-08 08:19:55.00772 2023-07-08 08:19:55.007737 mef 3739 R rec d02980bc-76f7-4ce3-b733-f112b7fe98b0 -2023-07-08 08:19:55.123542 2023-07-08 08:19:55.123554 mef 3740 R rec 8921c17d-242f-4c2d-844a-d561d9090c74 -2023-07-08 08:19:55.233629 2023-07-08 08:19:55.23364 mef 3741 R rec fd77396f-98f6-4cc6-bd21-2b243c94aa69 -2023-07-08 08:19:55.350638 2023-07-08 08:19:55.350648 mef 3742 R rec f5cd9efe-9799-43de-ad73-57caebcf2d93 -2023-07-08 08:19:55.457571 2023-07-08 08:19:55.457585 mef 3743 R rec 39ebc6ec-e4c5-47b0-9359-ef543551c551 -2023-07-08 08:19:55.586965 2023-07-08 08:19:55.586978 mef 3744 R rec 965a8f9f-9d9e-4935-abbb-228426557b32 -2023-07-08 08:19:55.841373 2023-07-08 08:19:55.841384 mef 3745 R rec 35f423b0-53fa-42cd-96ad-02ae0c5a774e -2023-07-08 08:19:55.953796 2023-07-08 08:19:55.953806 mef 3746 R rec cc51b27a-3eb5-4479-b20b-e7fbeacf6fe3 -2023-07-08 08:19:56.055145 2023-07-08 08:19:56.055155 mef 3747 R rec 68fc801b-24e2-492b-af63-fe9721e8e8d0 -2023-07-08 08:19:56.173495 2023-07-08 08:19:56.173503 mef 3748 R rec b716ef44-586d-49a3-878d-3f0b11fb2004 -2023-07-08 08:19:56.325044 2023-07-08 08:19:56.325055 mef 3749 R rec 33b935cb-aba9-4475-9e62-de343190dde9 -2023-07-08 08:19:56.436888 2023-07-08 08:19:56.436903 mef 3750 R rec fc8f2c82-b6e5-450a-82d1-07ac5d9d3864 -2023-07-08 08:19:56.70072 2023-07-08 08:19:56.700732 mef 3751 R rec deac7eff-4541-4b28-918b-1592d764b731 -2023-07-08 08:19:56.814189 2023-07-08 08:19:56.814199 mef 3752 R rec 6b7bca4f-54b0-4cf7-ad9b-779e68ed01d2 -2023-07-08 08:19:56.930519 2023-07-08 08:19:56.930529 mef 3753 R rec 93e3cdb4-242a-4416-9fbd-122ed92dfd96 -2023-07-08 08:19:57.037184 2023-07-08 08:19:57.037194 mef 3754 R rec abd5aef6-2a4d-422f-be16-fdeaf8e091e6 -2023-07-08 08:19:57.155246 2023-07-08 08:19:57.155266 mef 3755 R rec 2e5b0dab-5e2c-436d-944a-d63bebf2412b -2023-07-08 08:19:57.270495 2023-07-08 08:19:57.270507 mef 3756 R rec aac90c38-a97d-48aa-aa54-ba99b5b68d5a -2023-07-08 08:19:57.367191 2023-07-08 08:19:57.367204 mef 3757 R rec 7ff61c06-8e92-4afe-ac5a-8bbe795c0827 -2023-07-08 08:19:57.479285 2023-07-08 08:19:57.4793 mef 3758 R rec ede608b8-3133-49d0-84a6-dc452876b3e4 -2023-07-08 08:19:57.597039 2023-07-08 08:19:57.597053 mef 3759 R rec b4750067-881f-470c-a6f1-27ea269df7e3 -2023-07-08 08:19:57.712323 2023-07-08 08:19:57.712334 mef 3760 R rec 8a3378b8-47be-4478-8036-431d4341c8d3 -2023-07-08 08:19:57.974761 2023-07-08 08:19:57.974771 mef 3761 R rec 72b87762-49e7-43d0-b33f-a6a6ecd71c60 -2023-07-08 08:19:58.106982 2023-07-08 08:19:58.106997 mef 3762 R rec 9393d934-ca03-4915-907c-a9c13050eca9 -2023-07-08 08:19:58.237401 2023-07-08 08:19:58.237411 mef 3763 R rec ab6538a1-9107-4f5b-8b43-fa3611b716ca -2023-07-08 08:19:58.376573 2023-07-08 08:19:58.376584 mef 3764 R rec 100fa76f-2be3-4082-a314-5f7aa6aa515d -2023-07-08 08:19:58.512091 2023-07-08 08:19:58.512106 mef 3765 R rec a98885e1-a757-4e71-a281-36421e3fce49 -2023-07-08 08:19:58.635868 2023-07-08 08:19:58.635878 mef 3766 R rec 32698084-ad63-4651-8a18-5c2c6e8ebb3a -2023-07-08 08:19:58.764441 2023-07-08 08:19:58.764456 mef 3767 R rec 639593d6-575a-4502-9b55-6361d8e86bf6 -2023-07-08 08:19:58.929975 2023-07-08 08:19:58.92999 mef 3768 R rec e09f4d7d-556d-430c-b364-a297cceb47c1 -2023-07-08 08:19:59.05355 2023-07-08 08:19:59.053563 mef 3769 R rec d0419613-d8fa-47e4-b0b7-e13df7f58344 -2023-07-08 08:19:59.317724 2023-07-08 08:19:59.317737 mef 3770 R rec 2b7f8d18-043f-4521-aa4e-1be794118698 -2023-07-08 08:19:59.434448 2023-07-08 08:19:59.434458 mef 3771 R rec 30cb0259-0d05-482a-8908-239a67d8ccd4 -2023-07-08 08:19:59.553108 2023-07-08 08:19:59.553118 mef 3772 R rec 8e2118ae-ceec-40a4-8c8a-e0ffa6792ffd -2023-07-08 08:19:59.674098 2023-07-08 08:19:59.674114 mef 3773 R rec 40d44e29-cf6b-489c-b1e7-f135649ed513 -2023-07-08 08:19:59.799508 2023-07-08 08:19:59.799528 mef 3774 R rec f747c1f0-b309-42f3-aebd-1e01eb225ca1 -2023-07-08 08:19:59.921266 2023-07-08 08:19:59.921276 mef 3775 R rec 88acfe80-916c-4493-b261-adcb414a30f3 -2023-07-08 08:20:00.063272 2023-07-08 08:20:00.063285 mef 3776 R rec 4bdde04f-f0bf-4b56-b3cb-9b25a6bfee22 -2023-07-08 08:20:00.325087 2023-07-08 08:20:00.325099 mef 3777 R rec 22e4f65b-305b-4fec-a246-38c486ba96e8 -2023-07-08 08:20:00.448828 2023-07-08 08:20:00.448839 mef 3778 R rec b8b113a0-f32c-44c6-9797-dd5482ff4fac -2023-07-08 08:20:00.574697 2023-07-08 08:20:00.574709 mef 3779 R rec e5193293-64ee-40ad-abf1-9e531991338a -2023-07-08 08:20:00.69484 2023-07-08 08:20:00.694851 mef 3780 R rec aa60391f-5227-414d-82b7-abbccd76b8c7 -2023-07-08 08:20:00.999445 2023-07-08 08:20:00.999462 mef 3781 R rec b375ccef-85c3-4892-8af5-c8681e10a07e -2023-07-08 08:20:01.261129 2023-07-08 08:20:01.261139 mef 3782 R rec 549dc213-536c-4799-a806-85d36d717a03 -2023-07-08 08:20:01.372016 2023-07-08 08:20:01.372032 mef 3783 R rec 532db950-f1d2-4feb-9086-21dc0d1340e3 -2023-07-08 08:20:01.490151 2023-07-08 08:20:01.49016 mef 3784 R rec 2a66f140-f1cd-45aa-9ab1-2b0948e2f310 -2023-07-08 08:20:01.607526 2023-07-08 08:20:01.607535 mef 3785 R rec c89ba99d-8784-4250-9a7c-f681b6069881 -2023-07-08 08:20:01.751543 2023-07-08 08:20:01.751553 mef 3786 R rec 7b210a86-985d-4a59-9a33-346aa3e9e430 -2023-07-08 08:20:01.869511 2023-07-08 08:20:01.86952 mef 3787 R rec e827727d-2b24-42c4-9a07-9017a8733290 -2023-07-08 08:20:01.988827 2023-07-08 08:20:01.988838 mef 3788 R rec 05f9f811-de6d-4628-a8bd-51dd1618ada7 -2023-07-08 08:20:02.102188 2023-07-08 08:20:02.102203 mef 3789 R rec 33e9a65a-629c-49d6-8c66-ca78fa24d6a7 -2023-07-08 08:20:02.228618 2023-07-08 08:20:02.228634 mef 3790 R rec cb13c526-80ba-4fcd-bc33-225e69d41635 -2023-07-08 08:20:02.347513 2023-07-08 08:20:02.347523 mef 3791 R rec f3f7a878-7f58-4407-9847-243e330afb2e -2023-07-08 08:20:02.456468 2023-07-08 08:20:02.456482 mef 3792 R rec b8ea1f63-3f7c-4e4a-b6ce-91cd4179d22e -2023-07-08 08:20:02.571352 2023-07-08 08:20:02.57137 mef 3793 R rec 97c9c27b-2283-4e9b-a056-c95bb4b701a4 -2023-07-08 08:20:02.687822 2023-07-08 08:20:02.687832 mef 3794 R rec b9bf1a73-46eb-4383-a59c-8ead83eea317 -2023-07-08 08:20:02.806643 2023-07-08 08:20:02.806656 mef 3795 R rec cc2bf7dc-aa97-48f1-8e44-92d1f0a6f16d -2023-07-08 08:20:02.930073 2023-07-08 08:20:02.930084 mef 3796 R rec 8bc5c48d-a954-4921-82a6-d4296d98684c -2023-07-08 08:20:03.038733 2023-07-08 08:20:03.038746 mef 3797 R rec b25fd475-338c-4094-bb91-3cb25344ee44 -2023-07-08 08:20:03.15355 2023-07-08 08:20:03.153564 mef 3798 R rec 25688cd4-6c19-49a1-b020-e600f2d44846 -2023-07-08 08:20:03.263505 2023-07-08 08:20:03.263518 mef 3799 R rec 461656ce-670e-4b72-be95-d98c5416c1ba -2023-07-08 08:20:03.371496 2023-07-08 08:20:03.37151 mef 3800 R rec 1bb70efe-2623-4314-8311-4004f828e418 -2023-07-08 08:20:03.493521 2023-07-08 08:20:03.493537 mef 3801 R rec 1b875aea-bcad-4856-9957-f62eec670a31 -2023-07-08 08:20:03.61476 2023-07-08 08:20:03.614777 mef 3802 R rec a429903d-9add-4b67-9d39-f453fd860eb3 -2023-07-08 08:20:03.733271 2023-07-08 08:20:03.73328 mef 3803 R rec d30dd465-3473-4ac1-8934-b0ae6470bfad -2023-07-08 08:20:03.836566 2023-07-08 08:20:03.836582 mef 3804 R rec f7ad8e3b-7ea4-4e9d-a2b3-371b7c1141de -2023-07-08 08:20:03.939664 2023-07-08 08:20:03.939678 mef 3805 R rec 9711bb23-9c19-41ee-8819-b5f525e020ff -2023-07-08 08:20:04.046997 2023-07-08 08:20:04.047006 mef 3806 R rec 2f9490c9-2a25-4274-8b02-16071799d8bb -2023-07-08 08:20:04.16525 2023-07-08 08:20:04.16526 mef 3807 R rec eed07100-860b-43ce-8d61-c78543c722fb -2023-07-08 08:20:04.307341 2023-07-08 08:20:04.307356 mef 3808 R rec 31a51003-1534-4e3d-9e3d-1eeea9d64cb6 -2023-07-08 08:20:04.467114 2023-07-08 08:20:04.467124 mef 3809 R rec 3064c837-f7d7-4df6-9eeb-930a10c1b99e -2023-07-08 08:20:04.601859 2023-07-08 08:20:04.601873 mef 3810 R rec 92a328bf-062d-4395-b732-8d22481dac3d -2023-07-08 08:20:04.722874 2023-07-08 08:20:04.722886 mef 3811 R rec b5b87f41-3c4a-4976-8c9f-438a13be70e5 -2023-07-08 08:20:04.847915 2023-07-08 08:20:04.84793 mef 3812 R rec 41ffd2f4-ccd8-45a4-bd49-340f6e9f959c -2023-07-08 08:20:04.962874 2023-07-08 08:20:04.962889 mef 3813 R rec 7d86713d-d42d-4e4d-a40c-759dbd73d59a -2023-07-08 08:20:05.09439 2023-07-08 08:20:05.094403 mef 3814 R rec 103bb07f-5333-41dc-b486-ca95bc4aabb6 -2023-07-08 08:20:05.24965 2023-07-08 08:20:05.249662 mef 3815 R rec 826c8c79-d859-41eb-bf91-28abdb4b9f79 -2023-07-08 08:20:05.37858 2023-07-08 08:20:05.378592 mef 3816 R rec 1e52e7c5-146e-4687-a24e-87473a9feab1 -2023-07-08 08:20:05.497328 2023-07-08 08:20:05.497341 mef 3817 R rec d00e3712-44ea-4543-bf48-b334ed12e1d1 -2023-07-08 08:20:05.775398 2023-07-08 08:20:05.775409 mef 3818 R rec 7842b20f-c6e4-4e0d-b012-060fd0001d7a -2023-07-08 08:20:05.908688 2023-07-08 08:20:05.908693 mef 3819 R rec 63dcfc32-3f00-4e8e-bc24-c24b74d69097 -2023-07-08 08:20:05.992267 2023-07-08 08:20:05.992274 mef 3820 R rec b6abb51f-036c-4777-9dcc-da55d112ab04 -2023-07-08 08:20:06.082436 2023-07-08 08:20:06.08244 mef 3821 R rec d1740a16-a8af-4692-b3fd-e2652cbaf8df -2023-07-08 08:20:06.154437 2023-07-08 08:20:06.154445 mef 3822 R rec c037ad1d-6ba0-45be-9ac5-559ae308ad84 -2023-07-08 08:20:06.228443 2023-07-08 08:20:06.228448 mef 3823 R rec d9c4280f-9313-4730-81b8-2f9bfa5b5f5f -2023-07-08 08:20:06.317938 2023-07-08 08:20:06.317944 mef 3824 R rec b7df766d-447f-4912-a869-e5175b343345 -2023-07-08 08:20:06.413977 2023-07-08 08:20:06.413989 mef 3825 R rec 420b9ce1-437c-4e05-a281-ac4077ea3387 -2023-07-08 08:20:06.513624 2023-07-08 08:20:06.513637 mef 3826 R rec 78b90968-836e-4921-bc90-4115cb9667f5 -2023-07-08 08:20:06.596822 2023-07-08 08:20:06.596827 mef 3827 R rec a610be88-8ee1-4721-876f-998fa2891178 -2023-07-08 08:20:06.679017 2023-07-08 08:20:06.679028 mef 3828 R rec 2c1ce871-1395-4d1b-8bc1-bffa20ec60a0 -2023-07-08 08:20:06.793406 2023-07-08 08:20:06.793413 mef 3829 R rec 7a7b5b32-df4b-43b9-ae3b-d7b9414613b4 -2023-07-08 08:20:06.875889 2023-07-08 08:20:06.875894 mef 3830 R rec 1730351a-6bf7-40c9-9393-279ef2df9f2a -2023-07-08 08:20:06.959756 2023-07-08 08:20:06.959761 mef 3831 R rec 9a417dcd-b188-4e71-acd7-508933173643 -2023-07-08 08:20:07.146769 2023-07-08 08:20:07.14678 mef 3832 R rec ee70f820-26d6-4fb7-9078-17856a752442 -2023-07-08 08:20:07.240957 2023-07-08 08:20:07.240972 mef 3833 R rec 4637a4e6-35e2-4654-86b8-4d05a619046a -2023-07-08 08:20:07.326157 2023-07-08 08:20:07.326161 mef 3834 R rec 3d0a2d36-3182-47ee-9312-8b5210c440f6 -2023-07-08 08:20:07.395642 2023-07-08 08:20:07.39565 mef 3835 R rec cd4d6c19-e2a2-4808-a12d-4622491eb7d9 -2023-07-08 08:20:07.470502 2023-07-08 08:20:07.470512 mef 3836 R rec 4bae827e-4658-4326-9544-127f567a034e -2023-07-08 08:20:07.548598 2023-07-08 08:20:07.548602 mef 3837 R rec d94306fd-5b72-4c35-9b9d-92dbaec05be7 -2023-07-08 08:20:07.626983 2023-07-08 08:20:07.626996 mef 3838 R rec 10a620ee-778b-4395-aaac-72df085e1096 -2023-07-08 08:20:07.711241 2023-07-08 08:20:07.711246 mef 3839 R rec 81407f56-c4db-4a49-8157-cc9c1277bb36 -2023-07-08 08:20:07.800756 2023-07-08 08:20:07.800769 mef 3840 R rec 6380e415-564a-44ae-98a0-93974380077e -2023-07-08 08:20:07.899179 2023-07-08 08:20:07.899191 mef 3841 R rec 97cfa7ef-6c46-4914-9bd9-13448ce3a9ec -2023-07-08 08:20:07.98243 2023-07-08 08:20:07.982443 mef 3842 R rec 2519aedf-52b6-46bd-aff9-d66ff33b5f68 -2023-07-08 08:20:08.078563 2023-07-08 08:20:08.078567 mef 3843 R rec ed02bb7a-4ae2-49e2-ab14-ac7437ea9286 -2023-07-08 08:20:08.18892 2023-07-08 08:20:08.188932 mef 3844 R rec 7d0ed555-65fb-4acb-97d1-9af75ea2d5b8 -2023-07-08 08:20:08.274516 2023-07-08 08:20:08.274521 mef 3845 R rec 7f5fa1dd-4c7c-4e63-b14e-45b9d88c08c7 -2023-07-08 08:20:08.364212 2023-07-08 08:20:08.364216 mef 3846 R rec b90dad11-d94a-4153-b2fa-cd750c9f6cda -2023-07-08 08:20:08.464687 2023-07-08 08:20:08.464696 mef 3847 R rec f54cb442-ae0b-4593-a631-1e7aca22912f -2023-07-08 08:20:08.543162 2023-07-08 08:20:08.543167 mef 3848 R rec 2977cc49-49e5-4903-8561-bcc10d9e47cf -2023-07-08 08:20:08.614438 2023-07-08 08:20:08.614443 mef 3849 R rec d9c868ab-61fb-4b38-8445-de721d85fe6c -2023-07-08 08:20:08.683451 2023-07-08 08:20:08.683456 mef 3850 R rec 4e04605f-bf22-47cf-afd3-4e76d91e2ac2 -2023-07-08 08:20:08.758013 2023-07-08 08:20:08.758018 mef 3851 R rec 831b4bf2-fd23-461c-a000-310670c92d70 -2023-07-08 08:20:08.831975 2023-07-08 08:20:08.831982 mef 3852 R rec da57466e-4215-4880-b530-2415de90af9e -2023-07-08 08:20:08.912426 2023-07-08 08:20:08.912431 mef 3853 R rec 8d2987f4-f145-43e8-ad6e-68f43e601f6f -2023-07-08 08:20:08.990667 2023-07-08 08:20:08.990673 mef 3854 R rec b2354b5f-7d32-458b-af09-a9e7358f3992 -2023-07-08 08:20:09.064523 2023-07-08 08:20:09.064528 mef 3855 R rec 6327f6f2-0330-49b2-95e4-b0dea255dd28 -2023-07-08 08:20:09.133488 2023-07-08 08:20:09.133493 mef 3856 R rec ddeab71f-32fd-409e-9672-103013f16ef8 -2023-07-08 08:20:09.209573 2023-07-08 08:20:09.20958 mef 3857 R rec 8088e26e-6687-4533-b45a-d297e8f3554c -2023-07-08 08:20:09.309472 2023-07-08 08:20:09.309483 mef 3858 R rec 36aaa78b-80d4-45c6-b75c-82968f619151 -2023-07-08 08:20:09.390407 2023-07-08 08:20:09.390438 mef 3859 R rec a871f754-c070-4be5-bda4-285789d725a1 -2023-07-08 08:20:09.497063 2023-07-08 08:20:09.497073 mef 3860 R rec 505528c4-39d8-473e-88f9-0e7945ac3656 -2023-07-08 08:20:09.584674 2023-07-08 08:20:09.584679 mef 3861 R rec 7155b42e-62d0-4f81-8a23-9b8ac82b8e46 -2023-07-08 08:20:09.673387 2023-07-08 08:20:09.673397 mef 3862 R rec 0456516b-35f9-434a-84f5-11719e7328e1 -2023-07-08 08:20:09.772314 2023-07-08 08:20:09.772324 mef 3863 R rec 8e59198d-df44-4cad-86c5-ff581fe7fcaa -2023-07-08 08:20:09.8644 2023-07-08 08:20:09.86441 mef 3864 R rec 4b4abdc0-1b96-4e98-9384-2cb9fa8f12cc -2023-07-08 08:20:09.965824 2023-07-08 08:20:09.965834 mef 3865 R rec bfabd76b-af14-455c-8cf8-e5e29948d245 -2023-07-08 08:20:10.059448 2023-07-08 08:20:10.059459 mef 3866 R rec 07b244db-0ef1-4b5c-afcf-3de54585cae3 -2023-07-08 08:20:10.151859 2023-07-08 08:20:10.151868 mef 3867 R rec 3b7a2147-2002-4500-82b5-070ba3beed45 -2023-07-08 08:20:10.234962 2023-07-08 08:20:10.234966 mef 3868 R rec e4fb77db-bff9-4c7d-9b2c-947d0450aafd -2023-07-08 08:20:10.316024 2023-07-08 08:20:10.316029 mef 3869 R rec 83b5c235-cadd-46f9-9f32-c801198a9a15 -2023-07-08 08:20:10.396933 2023-07-08 08:20:10.396943 mef 3870 R rec c8f240d4-f974-4aae-add2-bc0604df47ac -2023-07-08 08:20:10.47897 2023-07-08 08:20:10.478975 mef 3871 R rec e4795415-545b-4e5f-9f52-ac7f3daaf4f5 -2023-07-08 08:20:10.557689 2023-07-08 08:20:10.557694 mef 3872 R rec c04d2c4d-80dd-497e-b564-a0309c2fbd69 -2023-07-08 08:20:10.636675 2023-07-08 08:20:10.636685 mef 3873 R rec 804a1a89-090a-4388-b84f-d1d0580b5169 -2023-07-08 08:20:10.734361 2023-07-08 08:20:10.73437 mef 3874 R rec c53920b1-5df1-40d4-bb76-f0aec6d94c5f -2023-07-08 08:20:10.83622 2023-07-08 08:20:10.836226 mef 3875 R rec cc53be5e-6d09-405e-b8e5-dd1c8a68509b -2023-07-08 08:20:10.934925 2023-07-08 08:20:10.934935 mef 3876 R rec 48dcc967-2734-4d42-975c-012016dbdc60 -2023-07-08 08:20:11.039506 2023-07-08 08:20:11.039516 mef 3877 R rec 3ca72764-9305-4797-8ead-d1dce48d6a96 -2023-07-08 08:20:11.132542 2023-07-08 08:20:11.132552 mef 3878 R rec 37417d4b-173c-4ce1-acdc-1ae8db176fe9 -2023-07-08 08:20:11.231801 2023-07-08 08:20:11.231817 mef 3879 R rec 499a8def-3579-45b1-8d54-758c621cfdbd -2023-07-08 08:20:11.327181 2023-07-08 08:20:11.327186 mef 3880 R rec 1bc4fbed-d9d6-48b3-824a-ad89fe835233 -2023-07-08 08:20:11.408957 2023-07-08 08:20:11.408968 mef 3881 R rec f05977a6-5433-4533-ace0-6a4eb8e01fd6 -2023-07-08 08:20:11.49589 2023-07-08 08:20:11.495894 mef 3882 R rec 8f86604f-ad3c-44b6-b3da-97feacfa89ec -2023-07-08 08:20:11.713368 2023-07-08 08:20:11.713373 mef 3883 R rec 84c7cb60-32be-40fc-a2ff-9586f820bf05 -2023-07-08 08:20:11.799065 2023-07-08 08:20:11.799075 mef 3884 R rec f5b1fda1-94aa-4bfd-b4a5-9fd660e23b37 -2023-07-08 08:20:11.870051 2023-07-08 08:20:11.870056 mef 3885 R rec 151f5142-d982-4539-86fd-ca36032b6b75 -2023-07-08 08:20:11.965351 2023-07-08 08:20:11.965363 mef 3886 R rec 880613d4-bb3f-48b5-8229-30624ba36936 -2023-07-08 08:20:12.077399 2023-07-08 08:20:12.077412 mef 3887 R rec 29717c4b-5d7e-45ff-bc27-602a82295830 -2023-07-08 08:20:12.183884 2023-07-08 08:20:12.183894 mef 3888 R rec 8d70f5d5-2f33-41a9-accf-05a4a012497c -2023-07-08 08:20:12.281611 2023-07-08 08:20:12.281615 mef 3889 R rec 9c326eb5-c9d1-4b31-93ad-dd84e10b01ff -2023-07-08 08:20:12.366389 2023-07-08 08:20:12.366395 mef 3890 R rec 7f79ab20-0b3e-420a-9af2-72cb4be1e539 -2023-07-08 08:20:12.463115 2023-07-08 08:20:12.463126 mef 3891 R rec 69494a03-b68c-4f5f-8139-2e1ee18a7ab7 -2023-07-08 08:20:12.558768 2023-07-08 08:20:12.558783 mef 3892 R rec 80e9667c-e637-4459-935f-d90be300b956 -2023-07-08 08:20:12.651741 2023-07-08 08:20:12.651756 mef 3893 R rec a4524353-cb9e-408c-b86b-87e4e5417044 -2023-07-08 08:20:12.745398 2023-07-08 08:20:12.745414 mef 3894 R rec 7146c7c8-fd16-460d-8086-87fa358e3fcd -2023-07-08 08:20:12.839881 2023-07-08 08:20:12.839887 mef 3895 R rec 8fd6e96d-f378-4afa-8191-c454e2ba35a0 -2023-07-08 08:20:12.928814 2023-07-08 08:20:12.928824 mef 3896 R rec 1473d853-9a9c-4841-8171-38005c7f5613 -2023-07-08 08:20:13.015688 2023-07-08 08:20:13.015697 mef 3897 R rec e0595334-212b-4e0c-8b89-37b1448628b4 -2023-07-08 08:20:13.102658 2023-07-08 08:20:13.102667 mef 3898 R rec 525b3cbb-04a1-4296-b49a-4bea668f2526 -2023-07-08 08:20:13.193025 2023-07-08 08:20:13.193035 mef 3899 R rec c8ad2321-b48d-4493-99b7-4fa831de854b -2023-07-08 08:20:13.273629 2023-07-08 08:20:13.273643 mef 3900 R rec 808a72c2-da4c-4f3e-bb97-0a907df6f97f -2023-07-08 08:20:13.351392 2023-07-08 08:20:13.351395 mef 3901 R rec 92f56e8a-62ce-4d00-ba2d-81216cc98438 -2023-07-08 08:20:13.442846 2023-07-08 08:20:13.44286 mef 3902 R rec c388bcaa-66d0-4304-b5ab-f38431143b06 -2023-07-08 08:20:13.525901 2023-07-08 08:20:13.52591 mef 3903 R rec 010a5be1-7383-49df-8ced-9cc6810d0105 -2023-07-08 08:20:13.619162 2023-07-08 08:20:13.619171 mef 3904 R rec 8d115bc4-4f14-46f6-9b07-ab35f7ffc542 -2023-07-08 08:20:13.727658 2023-07-08 08:20:13.727667 mef 3905 R rec 78b6ab1c-0c7a-443b-bf69-fc6948e568b2 -2023-07-08 08:20:13.83091 2023-07-08 08:20:13.830916 mef 3906 R rec bb645cfd-7f37-40e6-b6cb-95d3ae7f5e03 -2023-07-08 08:20:13.913734 2023-07-08 08:20:13.913747 mef 3907 R rec fc23fba0-e802-4d50-abf6-03d0419159f9 -2023-07-08 08:20:14.005666 2023-07-08 08:20:14.005678 mef 3908 R rec 04c56c86-f345-433b-b7a4-949be2628c11 -2023-07-08 08:20:14.19284 2023-07-08 08:20:14.192853 mef 3909 R rec 0b1405b2-1a50-4c55-8a7a-1d6e9b8acc5c -2023-07-08 08:20:14.296065 2023-07-08 08:20:14.296077 mef 3910 R rec c63e3bbb-bd28-45b7-8db3-0cc960634c93 -2023-07-08 08:20:14.428626 2023-07-08 08:20:14.428641 mef 3911 R rec bfd41e97-ac74-49ca-877e-710ef5a2a304 -2023-07-08 08:20:14.536221 2023-07-08 08:20:14.536233 mef 3912 R rec 9cd442ba-150d-433a-a7f5-cd51f1667662 -2023-07-08 08:20:14.63887 2023-07-08 08:20:14.63888 mef 3913 R rec 7d0b3fe7-9099-4468-8266-f8440ed8cdf0 -2023-07-08 08:20:14.741337 2023-07-08 08:20:14.741348 mef 3914 R rec e6358bcf-bece-41d6-8e8b-772913dcd19c -2023-07-08 08:20:14.839944 2023-07-08 08:20:14.839949 mef 3915 R rec 51f41a4c-bfae-4e75-94aa-19033736890f -2023-07-08 08:20:14.939062 2023-07-08 08:20:14.939075 mef 3916 R rec 64d95c72-c7bf-474f-8d2d-ebdf717e5975 -2023-07-08 08:20:15.029604 2023-07-08 08:20:15.029616 mef 3917 R rec 1f6ef8ca-2665-47d3-bc77-c3bb1779482c -2023-07-08 08:20:15.125561 2023-07-08 08:20:15.125567 mef 3918 R rec fdbf36f8-65eb-4d49-a9b5-02332714f494 -2023-07-08 08:20:15.208849 2023-07-08 08:20:15.208853 mef 3919 R rec 8293cd73-48a3-44a8-8881-563e56057b55 -2023-07-08 08:20:15.293988 2023-07-08 08:20:15.293999 mef 3920 R rec 5a13a356-da26-4ce5-8a21-95c141b656cf -2023-07-08 08:20:15.372178 2023-07-08 08:20:15.372183 mef 3921 R rec ed71b26b-1299-4a25-a45d-060b37e5a022 -2023-07-08 08:20:15.454839 2023-07-08 08:20:15.454852 mef 3922 R rec 86fa8023-abdc-4a6e-9ce6-fce05d1f80b5 -2023-07-08 08:20:15.54926 2023-07-08 08:20:15.549272 mef 3923 R rec 0b87a440-436b-4507-9c51-716cbfecc00d -2023-07-08 08:20:15.637645 2023-07-08 08:20:15.637655 mef 3924 R rec e695dcef-de29-48ce-a493-5f3640e52c3c -2023-07-08 08:20:15.743474 2023-07-08 08:20:15.743487 mef 3925 R rec 08d6fa89-112d-4b72-a354-54ff10a21b24 -2023-07-08 08:20:15.833899 2023-07-08 08:20:15.833904 mef 3926 R rec b62123fc-b97a-49ed-8b3c-68cff05bc376 -2023-07-08 08:20:15.916888 2023-07-08 08:20:15.916901 mef 3927 R rec 19513c18-a4f5-4846-8ac1-90819c6e4c23 -2023-07-08 08:20:16.012859 2023-07-08 08:20:16.012869 mef 3928 R rec e5da89ad-65d2-4ef0-922f-00b234278e29 -2023-07-08 08:20:16.10758 2023-07-08 08:20:16.107594 mef 3929 R rec 57c58d17-8cfe-417f-a868-0ad75c8c76e3 -2023-07-08 08:20:16.211025 2023-07-08 08:20:16.211036 mef 3930 R rec 50036195-c8c8-41c3-9913-a9d882685c96 -2023-07-08 08:20:16.332028 2023-07-08 08:20:16.332034 mef 3931 R rec cdb7dc99-460f-4dab-99e9-a31f3d32de76 -2023-07-08 08:20:16.414147 2023-07-08 08:20:16.41415 mef 3932 R rec 569b92e2-3adc-4ae5-858d-97c30723de0d -2023-07-08 08:20:16.504199 2023-07-08 08:20:16.504211 mef 3933 R rec 180fa17d-b5b9-41bd-b426-e29959f03710 -2023-07-08 08:20:16.591323 2023-07-08 08:20:16.591333 mef 3934 R rec f775dabe-86aa-4915-838d-517180a1b324 -2023-07-08 08:20:16.674741 2023-07-08 08:20:16.674749 mef 3935 R rec e7280824-7c89-4ae3-aea4-be56e5308bd7 -2023-07-08 08:20:16.749338 2023-07-08 08:20:16.749342 mef 3936 R rec f32e7393-421a-4c5d-9363-7938a09b218f -2023-07-08 08:20:16.840826 2023-07-08 08:20:16.840831 mef 3937 R rec eb04ca78-6833-46dd-ad5a-c38a15da6bdb -2023-07-08 08:20:16.908677 2023-07-08 08:20:16.908682 mef 3938 R rec 216681af-fe9f-4002-8539-9a4fc3056376 -2023-07-08 08:20:16.983448 2023-07-08 08:20:16.983452 mef 3939 R rec 530cda2f-17ab-4666-9513-84c3d89f2241 -2023-07-08 08:20:17.06457 2023-07-08 08:20:17.06458 mef 3940 R rec 34369b34-8454-4269-b4b6-b44df11b9683 -2023-07-08 08:20:17.156246 2023-07-08 08:20:17.156266 mef 3941 R rec 2174b4ef-c3ad-41e9-ab09-f10901d803bb -2023-07-08 08:20:17.34031 2023-07-08 08:20:17.340315 mef 3942 R rec c93217e1-bfa2-401f-bdcb-7f1e863cd7c2 -2023-07-08 08:20:17.427284 2023-07-08 08:20:17.427295 mef 3943 R rec 28b1bb92-27ee-4775-a8e0-17a2b0627f5a -2023-07-08 08:20:17.530695 2023-07-08 08:20:17.530705 mef 3944 R rec a1d4e916-3af7-4b72-89a4-aa09136cf9a1 -2023-07-08 08:20:17.801369 2023-07-08 08:20:17.801383 mef 3945 R rec c8033fb7-eb41-41c3-8783-e273159e4a0e -2023-07-08 08:20:17.878995 2023-07-08 08:20:17.878999 mef 3946 R rec e57ba861-57ff-4d1c-bb9b-3cf7cc5c765c -2023-07-08 08:20:17.971437 2023-07-08 08:20:17.971453 mef 3947 R rec 0e2b4a0d-72d5-4649-9770-9e76ef0c4e17 -2023-07-08 08:20:18.062869 2023-07-08 08:20:18.062879 mef 3948 R rec 11bf184c-b88a-4303-82a5-ff3172834444 -2023-07-08 08:20:18.150831 2023-07-08 08:20:18.150835 mef 3949 R rec bdd791c9-648d-46d8-a575-7811299942a2 -2023-07-08 08:20:18.25454 2023-07-08 08:20:18.254551 mef 3950 R rec 3199a31f-71e5-44b5-95cc-8ab178d027b6 -2023-07-08 08:20:18.343242 2023-07-08 08:20:18.343248 mef 3951 R rec 08177b12-2117-48a4-b255-df528b48ce1f -2023-07-08 08:20:18.524087 2023-07-08 08:20:18.524097 mef 3952 R rec 1978ac82-9815-4327-b5b7-6a1ecdfff37f -2023-07-08 08:20:18.61973 2023-07-08 08:20:18.619747 mef 3953 R rec 33a485bc-84c9-4cf3-80d6-4a7309da0530 -2023-07-08 08:20:18.727027 2023-07-08 08:20:18.727037 mef 3954 R rec 1f4ba787-5f94-42b3-859a-ae369136f1ed -2023-07-08 08:20:18.815763 2023-07-08 08:20:18.815771 mef 3955 R rec 27db0c85-0d51-43e4-8962-fe409640b2d2 -2023-07-08 08:20:18.906733 2023-07-08 08:20:18.906743 mef 3956 R rec 46f97fb7-3f5b-4e2e-ad47-8afcdb18b206 -2023-07-08 08:20:19.00515 2023-07-08 08:20:19.00516 mef 3957 R rec 85755836-1269-46c8-b23e-2ee6657d35b9 -2023-07-08 08:20:19.098733 2023-07-08 08:20:19.098744 mef 3958 R rec 8007d131-06d0-4596-b37f-6aadcec4dd3b -2023-07-08 08:20:19.203469 2023-07-08 08:20:19.203482 mef 3959 R rec 7b8e0505-68f7-4903-84b8-13812f280c93 -2023-07-08 08:20:19.30894 2023-07-08 08:20:19.308956 mef 3960 R rec 1d531b8b-a93a-48c3-891d-fe8c2be122b3 -2023-07-08 08:20:19.401872 2023-07-08 08:20:19.401876 mef 3961 R rec b3f4e07e-1e00-4624-8f9c-35b77288f464 -2023-07-08 08:20:19.497361 2023-07-08 08:20:19.497368 mef 3962 R rec 353cfb97-d25c-4a5c-9f86-52d244fc21c7 -2023-07-08 08:20:19.574233 2023-07-08 08:20:19.574238 mef 3963 R rec 0b8ce5b3-e8bc-433e-90d8-cc9a2570277f -2023-07-08 08:20:19.649408 2023-07-08 08:20:19.649414 mef 3964 R rec e14bb2e9-6eec-4c2e-8455-eb5c340064d6 -2023-07-08 08:20:19.733077 2023-07-08 08:20:19.733083 mef 3965 R rec 09b22086-f167-4f8f-9a01-d504ece2bd7e -2023-07-08 08:20:19.811986 2023-07-08 08:20:19.811993 mef 3966 R rec 0f5a1926-7858-4634-8397-a1f534723c6a -2023-07-08 08:20:19.900076 2023-07-08 08:20:19.90008 mef 3967 R rec 04489ad8-5b80-4628-90ff-fbcd5b4d4568 -2023-07-08 08:20:19.97683 2023-07-08 08:20:19.976835 mef 3968 R rec 77218179-a38b-49a2-a7c5-9a94d6410aa3 -2023-07-08 08:20:20.044984 2023-07-08 08:20:20.044989 mef 3969 R rec 3f30976a-80af-409d-b8f6-6afe301075bd -2023-07-08 08:20:20.111641 2023-07-08 08:20:20.111646 mef 3970 R rec 78459cd5-ff01-4689-b01a-bc126c6e63b9 -2023-07-08 08:20:20.178219 2023-07-08 08:20:20.178223 mef 3971 R rec cd3e6dc6-5a54-4708-9a89-b1368be26dae -2023-07-08 08:20:20.251886 2023-07-08 08:20:20.251891 mef 3972 R rec 50d5ca4b-35a4-463f-9af3-ccab474a1222 -2023-07-08 08:20:20.329033 2023-07-08 08:20:20.329037 mef 3973 R rec 06c2b0dd-5b1e-4bcc-8629-1ea9a4bd3ce8 -2023-07-08 08:20:20.510657 2023-07-08 08:20:20.510668 mef 3974 R rec d0ee989e-1723-4cb4-a007-20334ce16776 -2023-07-08 08:20:20.601992 2023-07-08 08:20:20.602002 mef 3975 R rec f1163639-94f1-4c5d-a9d4-800c43d085ea -2023-07-08 08:20:20.703734 2023-07-08 08:20:20.70374 mef 3976 R rec d7abd04a-24c6-4cbf-bf5a-e82a943842e7 -2023-07-08 08:20:20.787458 2023-07-08 08:20:20.787473 mef 3977 R rec 50e7ea11-c59a-488c-ac6a-3f905408087b -2023-07-08 08:20:20.88878 2023-07-08 08:20:20.88879 mef 3978 R rec 89b560e9-1ece-4bdf-ab72-a4b80e5f98d1 -2023-07-08 08:20:20.981008 2023-07-08 08:20:20.981018 mef 3979 R rec 6417c451-b48f-4052-9286-e3fe8416d7fb -2023-07-08 08:20:21.07947 2023-07-08 08:20:21.079486 mef 3980 R rec e223cba6-a544-4638-b66a-9d2243584e4f -2023-07-08 08:20:21.186787 2023-07-08 08:20:21.186797 mef 3981 R rec 8858ab0b-39f4-457f-97e7-b11c0e5f1d07 -2023-07-08 08:20:21.283228 2023-07-08 08:20:21.283243 mef 3982 R rec 226c80a9-61d7-47b2-8748-3af71b2535d7 -2023-07-08 08:20:21.369421 2023-07-08 08:20:21.369426 mef 3983 R rec fc71af8c-f671-4952-89f3-4d6277337395 -2023-07-08 08:20:21.455213 2023-07-08 08:20:21.455224 mef 3984 R rec 0d1ebe6a-b82f-4060-a359-d0e7935abd72 -2023-07-08 08:20:21.552233 2023-07-08 08:20:21.552249 mef 3985 R rec 99d91f72-6bb3-4e21-a0b4-122b4cc01344 -2023-07-08 08:20:21.732694 2023-07-08 08:20:21.732703 mef 3986 R rec 322f351b-60ab-4932-986a-e00205c3b05b -2023-07-08 08:20:21.828742 2023-07-08 08:20:21.828752 mef 3987 R rec 003d4b90-2f24-4d6a-8379-877af9760fcd -2023-07-08 08:20:21.924547 2023-07-08 08:20:21.924558 mef 3988 R rec 07e8a40b-2ba9-4cd8-a40e-8a466e48e7ce -2023-07-08 08:20:22.014678 2023-07-08 08:20:22.014683 mef 3989 R rec c193ba29-82c4-4c4a-b9bd-b571014714e2 -2023-07-08 08:20:22.087528 2023-07-08 08:20:22.087533 mef 3990 R rec 25aefb07-53df-448d-8c07-3309739b0975 -2023-07-08 08:20:22.160372 2023-07-08 08:20:22.160376 mef 3991 R rec 48d05dc9-bc9e-4120-821a-7fc0e8054b8f -2023-07-08 08:20:22.233285 2023-07-08 08:20:22.23329 mef 3992 R rec d51bb813-67d5-4dcb-9a80-f5904fa3f895 -2023-07-08 08:20:22.305645 2023-07-08 08:20:22.305651 mef 3993 R rec f71c2ce8-a6a3-4cb8-bf88-2a54f706c3a3 -2023-07-08 08:20:22.391257 2023-07-08 08:20:22.391262 mef 3994 R rec d36aa3b1-7c92-4e4e-b112-436f8e316029 -2023-07-08 08:20:22.474084 2023-07-08 08:20:22.474089 mef 3995 R rec 446963eb-8c81-43a0-8bf6-373de56627d8 -2023-07-08 08:20:22.550499 2023-07-08 08:20:22.550504 mef 3996 R rec b6710d61-3147-4b3c-b53f-659e299d076b -2023-07-08 08:20:22.625193 2023-07-08 08:20:22.625198 mef 3997 R rec 699e8a1b-34e2-405c-bdde-bbf13158cd2d -2023-07-08 08:20:22.697985 2023-07-08 08:20:22.69799 mef 3998 R rec 15c67502-7262-4a0b-a853-fa4e8b2ab22f -2023-07-08 08:20:22.766742 2023-07-08 08:20:22.766746 mef 3999 R rec dc6a5af5-478d-48fa-975e-6b032e77e7b8 -2023-07-08 08:20:22.834997 2023-07-08 08:20:22.835002 mef 4000 R rec 437fc6d8-0790-4dc4-ab54-fa6c24efc689 -2023-07-08 08:20:22.903172 2023-07-08 08:20:22.903176 mef 4001 R rec 70df96f9-03ed-46e0-88a0-a0faf55dedb0 -2023-07-08 08:20:22.97575 2023-07-08 08:20:22.975755 mef 4002 R rec dfdb98d3-2b99-4f39-a905-5ae46254988c -2023-07-08 08:20:23.046567 2023-07-08 08:20:23.046573 mef 4003 R rec 999005bf-c893-4a96-88ad-00da6c0103e2 -2023-07-08 08:20:23.121932 2023-07-08 08:20:23.121937 mef 4004 R rec 3a9e7d04-8945-4ea2-806c-cc4bc848a526 -2023-07-08 08:20:23.198467 2023-07-08 08:20:23.198472 mef 4005 R rec cd6978e5-a5b0-47bb-a1b5-34eaaeb82fba -2023-07-08 08:20:23.266882 2023-07-08 08:20:23.266887 mef 4006 R rec 8c44a161-a0a3-4eda-af2d-a1ebe420b53a -2023-07-08 08:20:23.335076 2023-07-08 08:20:23.335081 mef 4007 R rec a79a1321-2c3e-4f7c-a716-7e55aa4a5382 -2023-07-08 08:20:23.411494 2023-07-08 08:20:23.411499 mef 4008 R rec b3438462-7438-4a96-a7f9-c791802529fc -2023-07-08 08:20:23.564984 2023-07-08 08:20:23.564987 mef 4009 R rec a91f86de-43d9-4cbd-aa43-6f83dd54a80f -2023-07-08 08:20:23.635975 2023-07-08 08:20:23.635979 mef 4010 R rec d7a29d5f-c8bd-4ddd-b36f-4f46455a5cad -2023-07-08 08:20:23.708087 2023-07-08 08:20:23.708093 mef 4011 R rec 38c02fd3-8bdc-43dd-99ab-1fae5d817e3c -2023-07-08 08:20:23.778195 2023-07-08 08:20:23.7782 mef 4012 R rec 9d23c4c9-49b5-4ff6-8e62-cb89603f546d -2023-07-08 08:20:23.85142 2023-07-08 08:20:23.851425 mef 4013 R rec 372fc352-32a8-4685-9241-bbebccc20dd9 -2023-07-08 08:20:23.92009 2023-07-08 08:20:23.920094 mef 4014 R rec 02427245-b182-4398-b79a-07a1b0957774 -2023-07-08 08:20:23.985894 2023-07-08 08:20:23.985899 mef 4015 R rec 70a99658-42db-43a8-8421-9f83c9cb2afd -2023-07-08 08:20:24.05613 2023-07-08 08:20:24.056137 mef 4016 R rec 4be5233c-f312-4192-8149-1c95fc3de611 -2023-07-08 08:20:24.127493 2023-07-08 08:20:24.127498 mef 4017 R rec fe207532-2289-4eed-bfca-64714d693f41 -2023-07-08 08:20:24.198015 2023-07-08 08:20:24.19802 mef 4018 R rec 50604f4f-bd44-49f0-bc2f-564b8b27eb71 -2023-07-08 08:20:24.26898 2023-07-08 08:20:24.268985 mef 4019 R rec c11b3a8e-470d-41c2-bc03-08bb0afac534 -2023-07-08 08:20:24.418078 2023-07-08 08:20:24.418083 mef 4020 R rec 40d2e882-9d93-4da4-979d-a02b9d012787 -2023-07-08 08:20:24.49466 2023-07-08 08:20:24.494666 mef 4021 R rec c5b62017-5a22-4cc2-8605-819bfaf4dfea -2023-07-08 08:20:24.576157 2023-07-08 08:20:24.576165 mef 4022 R rec 0060254c-60a1-44f2-8b91-a8256ff9fdc8 -2023-07-08 08:20:24.650229 2023-07-08 08:20:24.650233 mef 4023 R rec 19ec9599-8994-4020-868b-6a66434e411b -2023-07-08 08:20:24.731016 2023-07-08 08:20:24.731022 mef 4024 R rec 472e6874-9073-4a1b-a920-80a94fa8b021 -2023-07-08 08:20:24.802185 2023-07-08 08:20:24.80219 mef 4025 R rec b4d00c69-e4f9-459a-be1d-35f89c62722e -2023-07-08 08:20:24.877341 2023-07-08 08:20:24.877349 mef 4026 R rec b747d405-3868-4f97-91ff-557b32c1bd8c -2023-07-08 08:20:24.953322 2023-07-08 08:20:24.953327 mef 4027 R rec 6366cb8c-1354-41a2-a944-2b6d1d43a207 -2023-07-08 08:20:25.045393 2023-07-08 08:20:25.045398 mef 4028 R rec fdb510f8-10f0-43a5-b6e9-6928f1d99234 -2023-07-08 08:20:25.123462 2023-07-08 08:20:25.123467 mef 4029 R rec 35960874-233e-4778-a020-ff9831e76467 -2023-07-08 08:20:25.188499 2023-07-08 08:20:25.188504 mef 4030 R rec a17e69f5-86ae-4a60-971b-55407b1aea6a -2023-07-08 08:20:25.253331 2023-07-08 08:20:25.253335 mef 4031 R rec 30754a69-cf43-4ec2-9de0-ff9426f6ac8e -2023-07-08 08:20:25.318277 2023-07-08 08:20:25.318282 mef 4032 R rec e690f67b-fe11-4d0c-ba08-c67778b65878 -2023-07-08 08:20:25.385875 2023-07-08 08:20:25.385879 mef 4033 R rec c18e77e8-9498-46ab-9a46-aecd0730d1ac -2023-07-08 08:20:25.46156 2023-07-08 08:20:25.461563 mef 4034 R rec ee53e8a1-af97-4fb0-a2c7-44cf05377b03 -2023-07-08 08:20:25.56812 2023-07-08 08:20:25.568134 mef 4035 R rec a44d459c-99f4-433b-af0a-6a0bd314b0e6 -2023-07-08 08:20:25.652992 2023-07-08 08:20:25.653008 mef 4036 R rec ed980244-0b40-4dca-9dd8-e4b0b24e3634 -2023-07-08 08:20:25.765497 2023-07-08 08:20:25.765507 mef 4037 R rec 9d1dc267-376e-4439-ba00-5045f6a023f0 -2023-07-08 08:20:25.85189 2023-07-08 08:20:25.851895 mef 4038 R rec 052bdb2e-fc1e-4c27-b3bf-6d60823076dd -2023-07-08 08:20:25.9434 2023-07-08 08:20:25.943411 mef 4039 R rec 3c6b06e8-1854-4cc3-a926-b589562bdd0c -2023-07-08 08:20:26.033606 2023-07-08 08:20:26.033617 mef 4040 R rec 13a93454-3c86-4d6d-a2a8-6ce19801b8c6 -2023-07-08 08:20:26.128018 2023-07-08 08:20:26.12803 mef 4041 R rec 562176ac-371b-445c-9d2f-aa7beffb366a -2023-07-08 08:20:26.232913 2023-07-08 08:20:26.232922 mef 4042 R rec f5c173db-b4aa-4680-9ff1-8b0d5622f156 -2023-07-08 08:20:26.326477 2023-07-08 08:20:26.326491 mef 4043 R rec 0a2394e3-0060-4575-b16f-442bd97a7a5c -2023-07-08 08:20:26.43667 2023-07-08 08:20:26.43668 mef 4044 R rec a641a2c6-3acb-41bf-bba5-e09e231c65b1 -2023-07-08 08:20:26.530601 2023-07-08 08:20:26.530616 mef 4045 R rec b8f25280-1cc5-4043-8eb5-d0ba01f96255 -2023-07-08 08:20:26.64059 2023-07-08 08:20:26.640603 mef 4046 R rec 37239740-44a3-4dca-b79d-bca4c22885f5 -2023-07-08 08:20:26.756171 2023-07-08 08:20:26.756183 mef 4047 R rec 40d1ba09-9f69-4343-a97b-d00b611ccd96 -2023-07-08 08:20:26.848806 2023-07-08 08:20:26.848813 mef 4048 R rec 222e15e1-9b07-4ba8-9ad6-bfdb0e5b6d07 -2023-07-08 08:20:26.929227 2023-07-08 08:20:26.929231 mef 4049 R rec 0f06d6ba-0417-4326-b16b-87536d020617 -2023-07-08 08:20:27.020023 2023-07-08 08:20:27.020033 mef 4050 R rec 402cdf72-581f-41ac-93cb-964c6b17811d -2023-07-08 08:20:27.107938 2023-07-08 08:20:27.107949 mef 4051 R rec d3dd3208-220e-4491-9a56-92eacaab3528 -2023-07-08 08:20:27.20163 2023-07-08 08:20:27.201634 mef 4052 R rec 084ead81-87c0-4e51-a31a-7820bf3f3bd9 -2023-07-08 08:20:27.301851 2023-07-08 08:20:27.301864 mef 4053 R rec 1fed05d1-7cb8-46b7-a179-1eb509f3b8f0 -2023-07-08 08:20:27.395114 2023-07-08 08:20:27.395129 mef 4054 R rec 2927fddc-01fb-4088-8f4c-5e616a6be9f5 -2023-07-08 08:20:27.484151 2023-07-08 08:20:27.484162 mef 4055 R rec 7907cd83-4647-442a-9fa0-54b8ff5ab067 -2023-07-08 08:20:27.568038 2023-07-08 08:20:27.568057 mef 4056 R rec e493fb9a-b435-410d-ab42-3171bd4f6c9c -2023-07-08 08:20:27.753443 2023-07-08 08:20:27.753457 mef 4057 R rec 7f5e5e17-5309-4008-9aa5-60716cd66004 -2023-07-08 08:20:27.838154 2023-07-08 08:20:27.83816 mef 4058 R rec d76b5146-f114-4454-86d0-ab8386c0c341 -2023-07-08 08:20:27.909875 2023-07-08 08:20:27.909879 mef 4059 R rec dba69725-2c2e-409d-8e2e-27140b3c1210 -2023-07-08 08:20:27.995788 2023-07-08 08:20:27.995798 mef 4060 R rec b167db6e-5ec1-49c5-94c3-33a2ebfc308a -2023-07-08 08:20:28.088812 2023-07-08 08:20:28.088825 mef 4061 R rec 62270243-54c1-4a4f-8dfc-51876347b487 -2023-07-08 08:20:28.176431 2023-07-08 08:20:28.176443 mef 4062 R rec bb7585e3-5164-463c-bab9-591155e394c9 -2023-07-08 08:20:28.260764 2023-07-08 08:20:28.260774 mef 4063 R rec 228f5f0a-e327-4688-bdc0-268393a8b64b -2023-07-08 08:20:28.348051 2023-07-08 08:20:28.348056 mef 4064 R rec 686f7a32-4e96-4717-a871-f1fa27d5c41e -2023-07-08 08:20:28.431664 2023-07-08 08:20:28.431675 mef 4065 R rec e3365554-12bc-4f02-b109-0381ff4a03ad -2023-07-08 08:20:28.533773 2023-07-08 08:20:28.533784 mef 4066 R rec 76339a53-b4dc-4f8f-92e9-08b14638e319 -2023-07-08 08:20:28.627846 2023-07-08 08:20:28.627851 mef 4067 R rec 47714232-2a6c-4c8c-aa96-2fcda7e92aa4 -2023-07-08 08:20:28.779924 2023-07-08 08:20:28.779931 mef 4068 R rec aa982641-e375-4589-b585-0717caedc81d -2023-07-08 08:20:28.858169 2023-07-08 08:20:28.858174 mef 4069 R rec 31bc6852-e8ed-498e-8628-7c8a77a5e8bf -2023-07-08 08:20:28.937977 2023-07-08 08:20:28.937988 mef 4070 R rec 75d9a7d9-1b26-49b1-bc89-46ea0e355847 -2023-07-08 08:20:29.03171 2023-07-08 08:20:29.03172 mef 4071 R rec afb89cfb-7de3-4a9c-a39f-c25a1b071cd8 -2023-07-08 08:20:29.116409 2023-07-08 08:20:29.116414 mef 4072 R rec e9a37b16-8c73-4ad9-a2e7-6a37fae9ca6e -2023-07-08 08:20:29.20611 2023-07-08 08:20:29.206136 mef 4073 R rec 28964873-130a-4923-b5ec-78a41adae330 -2023-07-08 08:20:29.302152 2023-07-08 08:20:29.302167 mef 4074 R rec e17b55da-e923-4db0-9b80-6fa4550edc9c -2023-07-08 08:20:29.382757 2023-07-08 08:20:29.382759 mef 4075 R rec 6b9a7962-db7b-41dc-b14b-608f153c0ca6 -2023-07-08 08:20:29.457303 2023-07-08 08:20:29.457313 mef 4076 R rec 17aee40c-6cef-4b49-8e9f-5b48c3dce961 -2023-07-08 08:20:29.528025 2023-07-08 08:20:29.52803 mef 4077 R rec 31a5b0ea-a05f-4a32-bb41-20755c74e7de -2023-07-08 08:20:29.610215 2023-07-08 08:20:29.610228 mef 4078 R rec ebd26969-e78c-4edd-a204-723be0ebdb56 -2023-07-08 08:20:29.693963 2023-07-08 08:20:29.693974 mef 4079 R rec 2aaa7d28-6eec-4fec-a807-43e0327cc47e -2023-07-08 08:20:29.779147 2023-07-08 08:20:29.779157 mef 4080 R rec d06377b3-ff1d-439a-97cc-a78cb4aed721 -2023-07-08 08:20:29.871174 2023-07-08 08:20:29.871179 mef 4081 R rec db32846c-88a9-43b9-a121-c2cd16130b28 -2023-07-08 08:20:29.958911 2023-07-08 08:20:29.95892 mef 4082 R rec c790da08-be2d-4f46-b51f-b3d3680536a8 -2023-07-08 08:20:30.044615 2023-07-08 08:20:30.04462 mef 4083 R rec 807aaea2-0a54-4f9e-b9e7-11378b201459 -2023-07-08 08:20:30.216515 2023-07-08 08:20:30.21652 mef 4084 R rec bc53ad26-b05f-4ff4-a8e3-5950bd85d10e -2023-07-08 08:20:30.305729 2023-07-08 08:20:30.305744 mef 4085 R rec 8fade5fa-7a61-427b-8dc0-0d8c26670139 -2023-07-08 08:20:30.391144 2023-07-08 08:20:30.39115 mef 4086 R rec 6d500abe-c69e-454a-b64b-561814e0f92b -2023-07-08 08:20:30.47284 2023-07-08 08:20:30.472852 mef 4087 R rec 745edd43-8ba4-4e53-9cf2-1fb71e961055 -2023-07-08 08:20:30.561038 2023-07-08 08:20:30.561044 mef 4088 R rec b131e138-3bdf-46bb-9ec7-c49b00f86ee5 -2023-07-08 08:20:30.641969 2023-07-08 08:20:30.641982 mef 4089 R rec 6e67c1e5-2116-4349-9a28-ef2bfd2f0f0e -2023-07-08 08:20:30.775581 2023-07-08 08:20:30.775591 mef 4090 R rec 05ea092e-6db3-441b-9b2a-918a507727ae -2023-07-08 08:20:30.87191 2023-07-08 08:20:30.871915 mef 4091 R rec 958da275-d9c4-44c3-ad41-5c8b05406c08 -2023-07-08 08:20:30.958005 2023-07-08 08:20:30.95801 mef 4092 R rec 134296f1-fedf-4ce4-b9da-e0a1e4caaad1 -2023-07-08 08:20:31.043377 2023-07-08 08:20:31.04339 mef 4093 R rec a816ba80-d498-494e-ace0-7b72b3863146 -2023-07-08 08:20:31.141907 2023-07-08 08:20:31.141917 mef 4094 R rec 08080091-9124-48a2-b55c-96b385140f54 -2023-07-08 08:20:31.227096 2023-07-08 08:20:31.227105 mef 4095 R rec d53daaf8-bbc9-49c9-9ce6-fb0f9b3748bf -2023-07-08 08:20:31.319202 2023-07-08 08:20:31.319206 mef 4096 R rec 884209c3-efd6-4509-af5e-630edf53c356 -2023-07-08 08:20:31.39372 2023-07-08 08:20:31.393725 mef 4097 R rec cf993ec8-3c72-418e-beb4-ce97a8d20f3e -2023-07-08 08:20:31.477274 2023-07-08 08:20:31.477279 mef 4098 R rec 8601a1a9-05ce-4a93-8e52-bae4fdd161f9 -2023-07-08 08:20:31.561654 2023-07-08 08:20:31.561664 mef 4099 R rec e60e8857-35ef-4325-b947-bc9d5cd5de2f -2023-07-08 08:20:31.647439 2023-07-08 08:20:31.647444 mef 4100 R rec 75744dc0-3d33-4953-8fc6-d9c7c2e8196c -2023-07-08 08:20:31.734948 2023-07-08 08:20:31.734961 mef 4101 R rec d8933fb6-3f49-470e-a09c-50b2b3ff7956 -2023-07-08 08:20:31.833652 2023-07-08 08:20:31.833665 mef 4102 R rec 97d9e6b5-9187-4973-9dba-f769b6879f57 -2023-07-08 08:20:31.942846 2023-07-08 08:20:31.942859 mef 4103 R rec fe31baaa-e85e-471b-ad49-dd6fb004248d -2023-07-08 08:20:32.051179 2023-07-08 08:20:32.051189 mef 4104 R rec dca3ac7e-8c4c-4e48-b003-cacde370a0bc -2023-07-08 08:20:32.158829 2023-07-08 08:20:32.158843 mef 4105 R rec 718dc424-39a4-4a95-a9d5-42b5fc401082 -2023-07-08 08:20:32.24871 2023-07-08 08:20:32.248719 mef 4106 R rec a5d17fd4-f67e-456c-9825-f41ccc420213 -2023-07-08 08:20:32.339581 2023-07-08 08:20:32.339592 mef 4107 R rec 7a0065c2-4d87-44eb-a44e-70d9a4c33fb4 -2023-07-08 08:20:32.438885 2023-07-08 08:20:32.438898 mef 4108 R rec 80baffdc-26b9-404f-a406-76ba7c8cf50c -2023-07-08 08:20:32.527131 2023-07-08 08:20:32.527141 mef 4109 R rec bfa96d71-78a4-4b42-9da4-7128eeb68690 -2023-07-08 08:20:32.622583 2023-07-08 08:20:32.622598 mef 4110 R rec d24639c1-842c-42c8-849e-1b2d877861b8 -2023-07-08 08:20:32.726232 2023-07-08 08:20:32.726246 mef 4111 R rec 38221682-5dda-4a7e-815d-2f008be55c4a -2023-07-08 08:20:32.815448 2023-07-08 08:20:32.815463 mef 4112 R rec 87610865-e086-483b-a29d-a1c67d483552 -2023-07-08 08:20:32.884077 2023-07-08 08:20:32.884082 mef 4113 R rec c7e0251c-e485-499a-95c3-71cd1c823853 -2023-07-08 08:20:32.967458 2023-07-08 08:20:32.967466 mef 4114 R rec e8c5c018-7b1a-490d-9cd8-8359faa47715 -2023-07-08 08:20:33.057744 2023-07-08 08:20:33.057749 mef 4115 R rec 3348ad11-08bd-4b56-8e65-930702952b94 -2023-07-08 08:20:33.141058 2023-07-08 08:20:33.141068 mef 4116 R rec 615f421d-dd99-4a67-b242-ce33e2170d53 -2023-07-08 08:20:33.217871 2023-07-08 08:20:33.217876 mef 4117 R rec bbb4a2ff-3b98-4e1a-8156-62e1abd72801 -2023-07-08 08:20:33.281689 2023-07-08 08:20:33.281693 mef 4118 R rec 41254a44-bdda-4735-a21e-7a08eaf77c83 -2023-07-08 08:20:33.34662 2023-07-08 08:20:33.346624 mef 4119 R rec 36d350d7-0ee0-4bc7-a4a9-17fe3acfbdb7 -2023-07-08 08:20:33.418879 2023-07-08 08:20:33.418883 mef 4120 R rec 36359672-1d66-495f-bd87-8fbaa52f6b27 -2023-07-08 08:20:33.480828 2023-07-08 08:20:33.480835 mef 4121 R rec 045b7599-3061-4451-99b2-422bbfb20e03 -2023-07-08 08:20:33.542862 2023-07-08 08:20:33.542868 mef 4122 R rec a2b7a297-4e49-4381-8691-3a75133665e8 -2023-07-08 08:20:33.607563 2023-07-08 08:20:33.607567 mef 4123 R rec 4125d1c4-32bc-4196-b217-106970247338 -2023-07-08 08:20:33.677965 2023-07-08 08:20:33.677974 mef 4124 R rec ef072036-88c4-4fd7-b425-d5e81891fa8c -2023-07-08 08:20:33.777613 2023-07-08 08:20:33.777623 mef 4125 R rec e3c3f575-2821-4d27-b9f9-bb77f74213fe -2023-07-08 08:20:33.867798 2023-07-08 08:20:33.867804 mef 4126 R rec 849df3c9-8576-4665-b08c-0f9885b40114 -2023-07-08 08:20:33.947629 2023-07-08 08:20:33.947639 mef 4127 R rec fa7387b0-a084-4045-b1af-28df4e288182 -2023-07-08 08:20:34.052535 2023-07-08 08:20:34.052552 mef 4128 R rec bf3d22a0-cb89-4e51-ad7c-db94ef0611fa -2023-07-08 08:20:34.14498 2023-07-08 08:20:34.14499 mef 4129 R rec dcf8f4bc-a272-40fe-8c8f-be7fc3807017 -2023-07-08 08:20:34.23213 2023-07-08 08:20:34.232141 mef 4130 R rec 0a1b68a0-320c-4eca-ba22-90191bdf7a3a -2023-07-08 08:20:34.320199 2023-07-08 08:20:34.320208 mef 4131 R rec a5696c3c-da96-4255-a920-f84d0ee528d7 -2023-07-08 08:20:34.396205 2023-07-08 08:20:34.396212 mef 4132 R rec 8f7590d3-65ed-4a76-920c-19c5ea554ece -2023-07-08 08:20:34.495273 2023-07-08 08:20:34.495285 mef 4133 R rec 37287a3c-2d33-47f3-9eb7-4bf82ba0a901 -2023-07-08 08:20:34.579912 2023-07-08 08:20:34.579917 mef 4134 R rec 8ca4f725-1faf-4cd0-bbeb-8750e6a931c0 -2023-07-08 08:20:34.660155 2023-07-08 08:20:34.660159 mef 4135 R rec 416ee8e7-87d8-41fe-a523-180369c63a79 -2023-07-08 08:20:34.734721 2023-07-08 08:20:34.734734 mef 4136 R rec b616bf20-4ca0-4b5f-ae3a-2e7ffcb03d57 -2023-07-08 08:20:34.825384 2023-07-08 08:20:34.82539 mef 4137 R rec faf42222-f029-4259-b3a2-1241248a2897 -2023-07-08 08:20:34.900681 2023-07-08 08:20:34.900686 mef 4138 R rec ea6ed518-dc78-4e71-a684-eaaa43195440 -2023-07-08 08:20:34.969263 2023-07-08 08:20:34.969267 mef 4139 R rec 31af21fe-949f-40ca-b227-350220028fa4 -2023-07-08 08:20:35.047795 2023-07-08 08:20:35.047807 mef 4140 R rec 73392496-3ad1-4075-9140-1fd53de93657 -2023-07-08 08:20:35.245263 2023-07-08 08:20:35.245278 mef 4141 R rec 45f138f8-5c08-4105-8b98-e46c1e4c36eb -2023-07-08 08:20:35.325604 2023-07-08 08:20:35.325614 mef 4142 R rec 3c2af067-26ef-433e-b3c8-7e8e3b935b40 -2023-07-08 08:20:35.404166 2023-07-08 08:20:35.404171 mef 4143 R rec e614d528-e2ce-410b-8dea-8819df235376 -2023-07-08 08:20:35.541152 2023-07-08 08:20:35.541157 mef 4144 R rec 1952acd2-a632-456e-8319-20bc0af4b906 -2023-07-08 08:20:35.605381 2023-07-08 08:20:35.605386 mef 4145 R rec e8f4802c-c0b8-47e9-8f97-c1372b30335d -2023-07-08 08:20:35.666526 2023-07-08 08:20:35.666531 mef 4146 R rec d6fc02fa-80f5-48bb-93b0-40b6373278cc -2023-07-08 08:20:35.73464 2023-07-08 08:20:35.734645 mef 4147 R rec 536a11cd-6761-4b24-baf6-5b9edf84bc92 -2023-07-08 08:20:35.80629 2023-07-08 08:20:35.806294 mef 4148 R rec e34502f7-75bb-41d4-b788-d92b021a0474 -2023-07-08 08:20:35.868762 2023-07-08 08:20:35.868764 mef 4149 R rec 3068ad00-dca8-4f20-abdb-ab9003420a75 -2023-07-08 08:20:35.934591 2023-07-08 08:20:35.934596 mef 4150 R rec 36ca2c8c-9bc6-435c-9d73-abbf59fb473a -2023-07-08 08:20:36.005276 2023-07-08 08:20:36.005286 mef 4151 R rec c069b24d-7431-4995-bd4d-902c43aea3f0 -2023-07-08 08:20:36.098583 2023-07-08 08:20:36.098596 mef 4152 R rec 47fac2a0-1d4f-432a-aeca-69d5739f7992 -2023-07-08 08:20:36.183664 2023-07-08 08:20:36.183673 mef 4153 R rec 7d35cbe2-b56e-4a57-a9e8-067965a60f23 -2023-07-08 08:20:36.26368 2023-07-08 08:20:36.263686 mef 4154 R rec a3eb7085-aad7-45ed-8c96-a5297e67192d -2023-07-08 08:20:36.349497 2023-07-08 08:20:36.34951 mef 4155 R rec 228f400b-80ca-4cf6-9de5-377764a97b5f -2023-07-08 08:20:36.434544 2023-07-08 08:20:36.434553 mef 4156 R rec 5a61897d-c295-4bbd-8009-d041c42b6487 -2023-07-08 08:20:36.520115 2023-07-08 08:20:36.520119 mef 4157 R rec 0694ab5a-e467-48eb-a29e-655b6b96e909 -2023-07-08 08:20:36.605388 2023-07-08 08:20:36.605392 mef 4158 R rec ec109127-1f01-407a-aa1f-f73725fe8529 -2023-07-08 08:20:36.691646 2023-07-08 08:20:36.691651 mef 4159 R rec 5bdf91dc-1568-4266-aa28-b48a21e0b5fb -2023-07-08 08:20:36.785702 2023-07-08 08:20:36.785712 mef 4160 R rec 58c47a27-a974-44ca-a841-4af6a68fa195 -2023-07-08 08:20:36.868451 2023-07-08 08:20:36.868459 mef 4161 R rec 31370d2c-c525-41f8-83f7-92137e0faae8 -2023-07-08 08:20:36.948184 2023-07-08 08:20:36.948194 mef 4162 R rec ae8b4bfe-de6a-4148-bb5d-f04e01a423ed -2023-07-08 08:20:37.03796 2023-07-08 08:20:37.037972 mef 4163 R rec 4498d4ee-a947-45dc-96e6-cde77a805498 -2023-07-08 08:20:37.124576 2023-07-08 08:20:37.124588 mef 4164 R rec c140cb79-6fec-4696-ba88-7aff2336cf74 -2023-07-08 08:20:37.213111 2023-07-08 08:20:37.213126 mef 4165 R rec 027d8285-4785-40e4-a862-d6e331b942d4 -2023-07-08 08:20:37.308163 2023-07-08 08:20:37.308176 mef 4166 R rec 483a7ad7-ca4d-4a27-afac-0728b3d9069b -2023-07-08 08:20:37.400806 2023-07-08 08:20:37.40081 mef 4167 R rec 1b7e80d0-4fb9-49c0-9e44-ca1aae0762d6 -2023-07-08 08:20:37.472954 2023-07-08 08:20:37.472959 mef 4168 R rec e2dcf442-4728-4b25-8854-7084e9507bc4 -2023-07-08 08:20:37.545768 2023-07-08 08:20:37.545778 mef 4169 R rec a2e49f06-9835-4896-8622-f496862a147d -2023-07-08 08:20:37.729408 2023-07-08 08:20:37.729424 mef 4170 R rec 9fbd6013-6d54-44a8-9ae4-a50ef8027e31 -2023-07-08 08:20:37.816506 2023-07-08 08:20:37.816516 mef 4171 R rec dbe632e2-5c52-47b6-9a35-651c637c2757 -2023-07-08 08:20:37.907791 2023-07-08 08:20:37.907805 mef 4172 R rec 2e448e6a-20d5-4943-bd08-1326beb47e03 -2023-07-08 08:20:37.987406 2023-07-08 08:20:37.987416 mef 4173 R rec 680c55e8-0372-44ca-b064-bfacd399e821 -2023-07-08 08:20:38.078674 2023-07-08 08:20:38.078683 mef 4174 R rec 54e2ac49-f19a-4140-8f26-9dafb9b66821 -2023-07-08 08:20:38.167803 2023-07-08 08:20:38.167813 mef 4175 R rec f451d250-4c96-4592-b075-3c7f129c6513 -2023-07-08 08:20:38.262824 2023-07-08 08:20:38.262834 mef 4176 R rec 27ee7d52-2104-4ece-937e-1448d6f40b8a -2023-07-08 08:20:38.362109 2023-07-08 08:20:38.362126 mef 4177 R rec 4cf550b2-4f3d-4833-bdb0-12f2e855b525 -2023-07-08 08:20:38.449971 2023-07-08 08:20:38.44998 mef 4178 R rec 098f0b11-de88-4c28-ae38-938bc4ec4de2 -2023-07-08 08:20:38.526776 2023-07-08 08:20:38.526785 mef 4179 R rec 45edcb02-8da6-427c-a668-24c779df1861 -2023-07-08 08:20:38.594221 2023-07-08 08:20:38.594226 mef 4180 R rec 747e7f6a-ef5f-4ca9-b4ce-f5355e46fa40 -2023-07-08 08:20:38.671077 2023-07-08 08:20:38.671082 mef 4181 R rec 3560889f-2b40-4065-b8bc-73161a98e3f4 -2023-07-08 08:20:38.751476 2023-07-08 08:20:38.751481 mef 4182 R rec 38f9aa42-c273-496a-b5b1-c4a017c4bb5e -2023-07-08 08:20:38.850417 2023-07-08 08:20:38.850428 mef 4183 R rec 9601a063-53d6-43bb-b511-8480ca68498c -2023-07-08 08:20:38.917146 2023-07-08 08:20:38.91715 mef 4184 R rec 192b1b0b-247a-4fcd-b7e3-98f8b35e74b4 -2023-07-08 08:20:38.992155 2023-07-08 08:20:38.99216 mef 4185 R rec 4b897427-2d87-4ab9-9320-89b1c2d012f5 -2023-07-08 08:20:39.069574 2023-07-08 08:20:39.069587 mef 4186 R rec f4ba6fe5-cd41-445f-9595-718d83d4c74b -2023-07-08 08:20:39.159618 2023-07-08 08:20:39.159631 mef 4187 R rec e9029fa8-7795-43a7-9a28-84ab161785f2 -2023-07-08 08:20:39.249747 2023-07-08 08:20:39.249758 mef 4188 R rec 86136fa7-d12e-45ff-8433-d5c7c6a8c152 -2023-07-08 08:20:39.340791 2023-07-08 08:20:39.340802 mef 4189 R rec 25e3c86d-69d8-4c8b-a330-1271e1c95fc2 -2023-07-08 08:20:39.427702 2023-07-08 08:20:39.427711 mef 4190 R rec 30d18be7-3460-479c-a450-30ed990f6307 -2023-07-08 08:20:39.512111 2023-07-08 08:20:39.512121 mef 4191 R rec d9f14994-f313-403f-aa1f-60a503957b49 -2023-07-08 08:20:39.62033 2023-07-08 08:20:39.620335 mef 4192 R rec c8b33026-9857-49ec-97d8-daf239cfccd3 -2023-07-08 08:20:39.703141 2023-07-08 08:20:39.703153 mef 4193 R rec daa9b14c-cf88-440b-83e8-5a8929f1ee13 -2023-07-08 08:20:39.788184 2023-07-08 08:20:39.788193 mef 4194 R rec aa574f50-d85e-42d5-8c70-acba3442785b -2023-07-08 08:20:39.871734 2023-07-08 08:20:39.871739 mef 4195 R rec 01b3a2d1-51d9-4f74-bb89-c8ecfee6ca0e -2023-07-08 08:20:39.963115 2023-07-08 08:20:39.96313 mef 4196 R rec a3261415-9667-4f8d-bb70-39ce6ae4694f -2023-07-08 08:20:40.052606 2023-07-08 08:20:40.052618 mef 4197 R rec 3320099b-4db4-4ac9-af8b-3d387dec32c6 -2023-07-08 08:20:40.140515 2023-07-08 08:20:40.14052 mef 4198 R rec d6242e6c-da07-4198-b7c0-62ae93837e83 -2023-07-08 08:20:40.2287 2023-07-08 08:20:40.22871 mef 4199 R rec 91b6e60c-e821-40c9-afcd-149d1f9c55d3 -2023-07-08 08:20:40.315594 2023-07-08 08:20:40.315604 mef 4200 R rec 8ade8dbb-a4b7-485b-a87f-edb8691a4856 -2023-07-08 08:20:40.39371 2023-07-08 08:20:40.393715 mef 4201 R rec 1ad9de69-9218-4d07-b47f-cf3865045c3a -2023-07-08 08:20:40.46784 2023-07-08 08:20:40.467852 mef 4202 R rec 2e75a315-68bc-42ba-8681-e65483790fe2 -2023-07-08 08:20:40.566812 2023-07-08 08:20:40.566821 mef 4203 R rec 0ccca3e0-4f82-4f71-9a5b-3dee1478a177 -2023-07-08 08:20:40.651004 2023-07-08 08:20:40.651016 mef 4204 R rec 2ef5a13c-6bd6-4351-b110-4672686e333f -2023-07-08 08:20:40.737145 2023-07-08 08:20:40.737156 mef 4205 R rec 44084a29-d554-465a-9f54-6099d8db7a23 -2023-07-08 08:20:40.819171 2023-07-08 08:20:40.819182 mef 4206 R rec af701e1e-9c45-403c-a9e4-e384ac03ee0b -2023-07-08 08:20:40.897753 2023-07-08 08:20:40.897757 mef 4207 R rec f92a6af7-8bbe-4a0d-89a2-1ce2e7d03d85 -2023-07-08 08:20:40.979855 2023-07-08 08:20:40.97986 mef 4208 R rec cff4d76b-69bf-41b0-b79e-847a33d5bebe -2023-07-08 08:20:41.076502 2023-07-08 08:20:41.076515 mef 4209 R rec 7c4f268d-20cb-41f9-aab7-381bf6e0d788 -2023-07-08 08:20:41.179773 2023-07-08 08:20:41.17978 mef 4210 R rec 40e9bffc-cc69-4fc0-987c-fd1e422e7f52 -2023-07-08 08:20:41.266007 2023-07-08 08:20:41.266017 mef 4211 R rec c0df3a43-098b-4816-8262-8405eeeeeb0e -2023-07-08 08:20:41.369611 2023-07-08 08:20:41.369626 mef 4212 R rec be7f005b-7ecf-4565-84f9-d545711a2241 -2023-07-08 08:20:41.504647 2023-07-08 08:20:41.504657 mef 4213 R rec e94972e5-178c-48ca-ba1e-8ca8d68f234d -2023-07-08 08:20:41.606845 2023-07-08 08:20:41.606861 mef 4214 R rec fccd7c6b-7080-49ff-b3fa-8bbe09b69b39 -2023-07-08 08:20:41.725228 2023-07-08 08:20:41.725242 mef 4215 R rec 50a948cb-c867-488b-adeb-21e7d4a16967 -2023-07-08 08:20:41.859817 2023-07-08 08:20:41.859826 mef 4216 R rec 5b9f50bb-8fec-49ec-b4ac-1209c508f846 -2023-07-08 08:20:41.967696 2023-07-08 08:20:41.967708 mef 4217 R rec a25212ae-1cd6-43fb-a283-f598358b5980 -2023-07-08 08:20:42.095452 2023-07-08 08:20:42.095472 mef 4218 R rec 6c58c072-0452-47d5-8cce-abfaa228dbac -2023-07-08 08:20:42.261916 2023-07-08 08:20:42.261929 mef 4219 R rec 9b165f19-7ffe-418b-a46d-a276f8fa0e1f -2023-07-08 08:20:42.412967 2023-07-08 08:20:42.41298 mef 4220 R rec 5e742ff6-7c61-4f36-b908-231a82d8cda5 -2023-07-08 08:20:42.563374 2023-07-08 08:20:42.563383 mef 4221 R rec e490edd1-db3d-4cd8-be1a-77f14e49a3e4 -2023-07-08 08:20:43.101361 2023-07-08 08:20:43.101375 mef 4222 R rec d039cac8-995e-4966-a724-08ba3ceacd69 -2023-07-08 08:20:43.225441 2023-07-08 08:20:43.225452 mef 4223 R rec 25249734-852d-42c7-949f-2fd71c69bfcd -2023-07-08 08:20:43.348777 2023-07-08 08:20:43.348787 mef 4224 R rec 7ae39055-adca-4b8c-bd89-1a4dee4e9882 -2023-07-08 08:20:43.483421 2023-07-08 08:20:43.483439 mef 4225 R rec 411bfdef-77a9-403a-b90e-4fee0672a9a1 -2023-07-08 08:20:43.601477 2023-07-08 08:20:43.601495 mef 4226 R rec 7e0c8d0f-16e8-4e4e-b5e4-09bb37fd4b1a -2023-07-08 08:20:43.709003 2023-07-08 08:20:43.709023 mef 4227 R rec 8ba95b88-88ee-4cd7-9ffd-01059317e937 -2023-07-08 08:20:43.832476 2023-07-08 08:20:43.832486 mef 4228 R rec 107238b7-cb9f-4ca6-adb6-c472dbd23ddc -2023-07-08 08:20:43.937781 2023-07-08 08:20:43.937791 mef 4229 R rec 6fec8b56-cb5c-47ac-bad2-22af193a63d6 -2023-07-08 08:20:44.048781 2023-07-08 08:20:44.048824 mef 4230 R rec e90fd2e6-0f18-4a3a-a47f-0fef952c8d56 -2023-07-08 08:20:44.163596 2023-07-08 08:20:44.163611 mef 4231 R rec ee348973-5b9d-4ffa-89f9-253e403b7dae -2023-07-08 08:20:44.280393 2023-07-08 08:20:44.280409 mef 4232 R rec eaf4c621-65c2-4e99-96dd-884b57f26d72 -2023-07-08 08:20:44.401447 2023-07-08 08:20:44.401461 mef 4233 R rec d2bebd8c-9b35-440d-91e5-7d8cedaaa57a -2023-07-08 08:20:44.512981 2023-07-08 08:20:44.51299 mef 4234 R rec 3a5707bc-4fd1-47d6-b8a0-e142bac9816b -2023-07-08 08:20:44.647721 2023-07-08 08:20:44.647731 mef 4235 R rec 5caf4fdd-b5cb-4db7-9e51-1899bb7ea3c0 -2023-07-08 08:20:44.779307 2023-07-08 08:20:44.779322 mef 4236 R rec 800c5c34-cf63-4f14-a86c-9f2bd4bffc2b -2023-07-08 08:20:44.90575 2023-07-08 08:20:44.90576 mef 4237 R rec a099767e-3316-496c-9411-d8ee2e3f78bf -2023-07-08 08:20:45.029152 2023-07-08 08:20:45.029164 mef 4238 R rec 9029c75c-7dbf-4758-b821-ed718734ecae -2023-07-08 08:20:45.150722 2023-07-08 08:20:45.150735 mef 4239 R rec 5e2db7f8-e5af-4041-88b5-559ad1822ab3 -2023-07-08 08:20:45.276683 2023-07-08 08:20:45.276694 mef 4240 R rec f52a53e9-8e03-4b58-8438-5452a5b9a15e -2023-07-08 08:20:45.438447 2023-07-08 08:20:45.43846 mef 4241 R rec 1bc34107-f849-4e20-9ff8-ab9a11ae367f -2023-07-08 08:20:45.549093 2023-07-08 08:20:45.549104 mef 4242 R rec fc86e0f0-e44d-4851-be80-66b4b812e124 -2023-07-08 08:20:45.836307 2023-07-08 08:20:45.836325 mef 4243 R rec 3ebdc4c6-8c98-4989-9005-dba2b42c13ed -2023-07-08 08:20:46.012703 2023-07-08 08:20:46.012719 mef 4244 R rec 42d603e8-a374-4f72-b913-8c6834591dd2 -2023-07-08 08:20:46.136778 2023-07-08 08:20:46.136788 mef 4245 R rec 182c617e-66e3-4c07-850b-0b3ad7367c56 -2023-07-08 08:20:46.25238 2023-07-08 08:20:46.252393 mef 4246 R rec dc6dce48-21dc-4060-87bd-3a5d5da77430 -2023-07-08 08:20:46.385942 2023-07-08 08:20:46.385954 mef 4247 R rec ace82407-62a8-4ee8-a4b4-bcd88c7fa563 -2023-07-08 08:20:46.506601 2023-07-08 08:20:46.506613 mef 4248 R rec 417f8893-1ad1-4288-9005-c61a537ed8fd -2023-07-08 08:20:46.611899 2023-07-08 08:20:46.611911 mef 4249 R rec 640130fc-849f-4fb0-87e0-689b11969d57 -2023-07-08 08:20:46.746185 2023-07-08 08:20:46.7462 mef 4250 R rec 387119f3-c071-4a8f-a91f-51a3712cfc6c -2023-07-08 08:20:46.880866 2023-07-08 08:20:46.880877 mef 4251 R rec 2b841f23-daef-4964-acc1-916a57f19438 -2023-07-08 08:20:46.98594 2023-07-08 08:20:46.985952 mef 4252 R rec 749f6a3c-febb-4a11-9414-d8b9fc0dfee5 -2023-07-08 08:20:47.091665 2023-07-08 08:20:47.091677 mef 4253 R rec 9c631b61-67aa-42b9-8bea-3580c572a75f -2023-07-08 08:20:47.209537 2023-07-08 08:20:47.209547 mef 4254 R rec 1133eaff-babb-4fd3-8de0-35146cd13050 -2023-07-08 08:20:47.322493 2023-07-08 08:20:47.322504 mef 4255 R rec 6f218b5f-073d-4b98-adc3-1c7c73c1953e -2023-07-08 08:20:47.435048 2023-07-08 08:20:47.435063 mef 4256 R rec 6520dc07-c098-404a-b004-c47911533274 -2023-07-08 08:20:47.555788 2023-07-08 08:20:47.555798 mef 4257 R rec 8ed71312-f2f7-4b1e-9bd2-9708999f4734 -2023-07-08 08:20:47.696153 2023-07-08 08:20:47.696163 mef 4258 R rec 6dd9a0b3-8fef-41c6-8ed6-a53fb630d3b1 -2023-07-08 08:20:47.814065 2023-07-08 08:20:47.814079 mef 4259 R rec 77435215-1ed5-473d-b1b0-a40ce2c37350 -2023-07-08 08:20:47.946021 2023-07-08 08:20:47.946034 mef 4260 R rec eaa56d9b-1d60-4bdf-aa18-3ce935cb2a8a -2023-07-08 08:20:48.052981 2023-07-08 08:20:48.052993 mef 4261 R rec 13544984-be2a-468b-a7ee-1c1857b4f458 -2023-07-08 08:20:48.171568 2023-07-08 08:20:48.171581 mef 4262 R rec f33412ea-333e-492c-b266-b5bb88c12843 -2023-07-08 08:20:48.286181 2023-07-08 08:20:48.286192 mef 4263 R rec 034cfa0c-a958-415e-ba4d-f844d1387e68 -2023-07-08 08:20:48.408553 2023-07-08 08:20:48.408562 mef 4264 R rec 87f6d1be-d0f9-4b87-9a1a-c2e6c3eb9846 -2023-07-08 08:20:48.518155 2023-07-08 08:20:48.51817 mef 4265 R rec 87226fe6-7ee8-4349-9ef1-81fbe2e07d2a -2023-07-08 08:20:48.64742 2023-07-08 08:20:48.647435 mef 4266 R rec c21bdb9e-02e7-4632-8437-c3c49ca4272f -2023-07-08 08:20:48.75576 2023-07-08 08:20:48.755774 mef 4267 R rec 8c8cdf43-f818-4853-93d1-bb7b8281c2c8 -2023-07-08 08:20:48.868952 2023-07-08 08:20:48.868967 mef 4268 R rec bd848ead-deba-4bd1-bf81-1ce069648a9e -2023-07-08 08:20:49.003312 2023-07-08 08:20:49.003345 mef 4269 R rec 34e98691-75dd-45c5-b3a4-7df97ec79776 -2023-07-08 08:20:49.117449 2023-07-08 08:20:49.117461 mef 4270 R rec e0ad84dd-3fc6-4db8-a883-cdec50478d9f -2023-07-08 08:20:49.255023 2023-07-08 08:20:49.255034 mef 4271 R rec 6e5ea194-f1a9-4ab4-b386-b3fbde1305de -2023-07-08 08:20:49.380027 2023-07-08 08:20:49.380045 mef 4272 R rec 210aad68-4735-43ba-acc5-398aa802708b -2023-07-08 08:20:49.510155 2023-07-08 08:20:49.510174 mef 4273 R rec 4376d3c3-bbcf-430e-9c4d-a05d7926f368 -2023-07-08 08:20:49.6257 2023-07-08 08:20:49.62571 mef 4274 R rec 390da946-abf0-4c8f-9bd5-5e04be22daf8 -2023-07-08 08:20:49.758392 2023-07-08 08:20:49.758402 mef 4275 R rec 7724e221-7136-4773-a78e-a9ebe2ccf875 -2023-07-08 08:20:49.865386 2023-07-08 08:20:49.865399 mef 4276 R rec 7208c91a-556a-45e0-9567-11e988d600ac -2023-07-08 08:20:49.982999 2023-07-08 08:20:49.983009 mef 4277 R rec 7ffc1aa8-dd89-4464-bfe0-640b1199a76a -2023-07-08 08:20:50.107357 2023-07-08 08:20:50.10737 mef 4278 R rec a9529f09-cd66-4cf5-94eb-161d588ca3c7 -2023-07-08 08:20:50.230296 2023-07-08 08:20:50.230307 mef 4279 R rec f3dd37e1-4ec0-4c32-a498-41c8a8e04617 -2023-07-08 08:20:50.346609 2023-07-08 08:20:50.346619 mef 4280 R rec 37c058d0-9d3e-4630-93e6-369aca344284 -2023-07-08 08:20:50.569215 2023-07-08 08:20:50.569227 mef 4281 R rec 8868f643-8d2e-496d-a05c-52a375b25922 -2023-07-08 08:20:50.700671 2023-07-08 08:20:50.700681 mef 4282 R rec 5c2e727c-8a82-4927-861a-22fe489aeea3 -2023-07-08 08:20:50.816482 2023-07-08 08:20:50.816496 mef 4283 R rec 14ef7c60-268c-4a75-9629-19726543f708 -2023-07-08 08:20:50.933112 2023-07-08 08:20:50.933122 mef 4284 R rec 4fff83bb-5689-4439-aa03-4cc21b3dc415 -2023-07-08 08:20:51.040407 2023-07-08 08:20:51.04045 mef 4285 R rec 5adad0f6-a105-46d8-9cf4-8d9926df718a -2023-07-08 08:20:51.164418 2023-07-08 08:20:51.16443 mef 4286 R rec d75c1247-4bba-4335-962a-c82956840b38 -2023-07-08 08:20:51.308046 2023-07-08 08:20:51.308057 mef 4287 R rec e51ab5eb-727b-4886-9d7e-cd0dd3497597 -2023-07-08 08:20:51.442829 2023-07-08 08:20:51.442841 mef 4288 R rec 4b869e48-3b93-4378-9de6-49f197e74c5e -2023-07-08 08:20:51.565379 2023-07-08 08:20:51.56539 mef 4289 R rec 16b4ad7a-a967-4e63-aa1e-f161642f8bf2 -2023-07-08 08:20:51.695439 2023-07-08 08:20:51.69545 mef 4290 R rec e7c9fc73-f967-4750-b45f-0d16f8907866 -2023-07-08 08:20:51.811353 2023-07-08 08:20:51.811367 mef 4291 R rec fe5ca646-94cd-4357-a58e-8404a08e3de8 -2023-07-08 08:20:51.935348 2023-07-08 08:20:51.935359 mef 4292 R rec 29b0bc09-821f-418c-9135-01913b70437c -2023-07-08 08:20:52.199438 2023-07-08 08:20:52.199452 mef 4293 R rec d7d2091c-1480-43bd-8777-c4a2a8c6e11f -2023-07-08 08:20:52.34922 2023-07-08 08:20:52.349234 mef 4294 R rec 89d75665-c6e3-4cea-a312-ee8def4d10b3 -2023-07-08 08:20:52.47696 2023-07-08 08:20:52.476969 mef 4295 R rec 89227f62-524d-42af-bdff-7a988c526b62 -2023-07-08 08:20:52.607478 2023-07-08 08:20:52.607488 mef 4296 R rec 22c0b780-ab0b-4ac8-9689-d75081f8febf -2023-07-08 08:20:52.718312 2023-07-08 08:20:52.718324 mef 4297 R rec 2b76d03f-3243-4d51-b767-747cca150b17 -2023-07-08 08:20:52.829709 2023-07-08 08:20:52.82972 mef 4298 R rec aa70d59b-4ce9-4bc2-b21e-b3a89372c0cd -2023-07-08 08:20:52.939043 2023-07-08 08:20:52.939053 mef 4299 R rec da39bb24-c2f5-4260-978c-1d7317b94ad1 -2023-07-08 08:20:53.055956 2023-07-08 08:20:53.055968 mef 4300 R rec 3bdb0c57-1856-4562-9064-c8ac55db6905 -2023-07-08 08:20:53.17358 2023-07-08 08:20:53.173595 mef 4301 R rec bba702f3-a5a7-4aed-b456-d445ebf2fc61 -2023-07-08 08:20:53.392033 2023-07-08 08:20:53.39205 mef 4302 R rec b3608f1d-70ff-4f62-b53d-cd6f3e1af0a4 -2023-07-08 08:20:53.530066 2023-07-08 08:20:53.530079 mef 4303 R rec 47fef475-d1ac-4c0f-b76b-1c43e1de0c3b -2023-07-08 08:20:53.665735 2023-07-08 08:20:53.665749 mef 4304 R rec 52954129-dd42-4844-8d6d-5aa5d392757f -2023-07-08 08:20:53.781589 2023-07-08 08:20:53.7816 mef 4305 R rec be5e1961-72a2-40ed-9209-eb6ccc69f09c -2023-07-08 08:20:53.88583 2023-07-08 08:20:53.885838 mef 4306 R rec f155ff81-7707-468e-a283-69397da39b42 -2023-07-08 08:20:54.006236 2023-07-08 08:20:54.006246 mef 4307 R rec cd4c3047-8487-4731-8fb3-3f1dc2afdd3f -2023-07-08 08:20:54.140955 2023-07-08 08:20:54.140966 mef 4308 R rec 379b336d-d4b2-4497-b2a2-b80220ea2bc4 -2023-07-08 08:20:54.287927 2023-07-08 08:20:54.287938 mef 4309 R rec a0c5df80-85b5-49ab-87e1-ca2cbd47b135 -2023-07-08 08:20:54.414752 2023-07-08 08:20:54.414761 mef 4310 R rec aee9a5fe-b8c9-4ac2-8e48-d62caf67ab96 -2023-07-08 08:20:54.516218 2023-07-08 08:20:54.516223 mef 4311 R rec 3378571f-e2f4-4f7f-aaef-1cc35a0d4daa -2023-07-08 08:20:54.600285 2023-07-08 08:20:54.600289 mef 4312 R rec 5298b003-f756-4466-82d6-bdc14fc951a0 -2023-07-08 08:20:54.672 2023-07-08 08:20:54.672005 mef 4313 R rec 38982248-8d1a-4d5e-a9df-4716f360ab74 -2023-07-08 08:20:54.744744 2023-07-08 08:20:54.744749 mef 4314 R rec 645b0188-e0a5-4b18-8df9-c97fa074274d -2023-07-08 08:20:54.819633 2023-07-08 08:20:54.819638 mef 4315 R rec 22fc718e-0ec0-4f94-bfa5-569657ea0615 -2023-07-08 08:20:54.890158 2023-07-08 08:20:54.890163 mef 4316 R rec 482ccf3e-0f01-4e00-b995-d5129f9c231c -2023-07-08 08:20:55.084393 2023-07-08 08:20:55.084406 mef 4317 R rec ce70dd41-77fc-4a0b-95da-378be39f4ffb -2023-07-08 08:20:55.178596 2023-07-08 08:20:55.178603 mef 4318 R rec cc0335c6-73d2-49b1-8060-d87b8f746315 -2023-07-08 08:20:55.274671 2023-07-08 08:20:55.274682 mef 4319 R rec 622b1959-aacd-48fc-9f5e-8473a112e4c9 -2023-07-08 08:20:55.371678 2023-07-08 08:20:55.371687 mef 4320 R rec 403c5d37-a09c-4861-8073-fff9bd789fc6 -2023-07-08 08:20:55.474394 2023-07-08 08:20:55.474398 mef 4321 R rec a4f4fc2a-4b4d-414b-9c26-e80cdc559339 -2023-07-08 08:20:55.576748 2023-07-08 08:20:55.576758 mef 4322 R rec 407178a4-dd29-489e-8f73-5fa45823dfd9 -2023-07-08 08:20:55.665587 2023-07-08 08:20:55.665597 mef 4323 R rec 73f65b37-8a6e-4077-8da9-76242ea38603 -2023-07-08 08:20:55.765171 2023-07-08 08:20:55.765178 mef 4324 R rec 385f25f2-0230-4834-80c5-e8f021f8ce17 -2023-07-08 08:20:55.863543 2023-07-08 08:20:55.863553 mef 4325 R rec fde5aea7-a4af-495e-8806-d20e2685b2dd -2023-07-08 08:20:55.967805 2023-07-08 08:20:55.96781 mef 4326 R rec 9a5878e4-0b79-48e3-bddf-faaf83178dae -2023-07-08 08:20:56.05531 2023-07-08 08:20:56.055315 mef 4327 R rec 19475745-18be-4e34-b8f8-8875ec3df5bb -2023-07-08 08:20:56.123182 2023-07-08 08:20:56.123186 mef 4328 R rec 9123bac3-0664-4f0e-b8b1-9288a8caebd4 -2023-07-08 08:20:56.201937 2023-07-08 08:20:56.201942 mef 4329 R rec b1800ecf-4ac3-4fbe-b39f-125ed0ba5b49 -2023-07-08 08:20:56.309912 2023-07-08 08:20:56.309927 mef 4330 R rec 5b0e2c90-5750-4253-a4e4-2b27bbd1ab88 -2023-07-08 08:20:56.406172 2023-07-08 08:20:56.406182 mef 4331 R rec 9150d756-18d4-48e0-a1b0-128165b4ec1f -2023-07-08 08:20:56.517772 2023-07-08 08:20:56.517779 mef 4332 R rec 4dccbfce-922e-4803-988a-6bedcdcc873c -2023-07-08 08:20:56.584003 2023-07-08 08:20:56.584007 mef 4333 R rec d414aa80-37ac-40fd-987c-2edb3e9aab85 -2023-07-08 08:20:56.657707 2023-07-08 08:20:56.657712 mef 4334 R rec cd7b384b-b0d1-46e4-894c-93b5dda1e883 -2023-07-08 08:20:56.726989 2023-07-08 08:20:56.726994 mef 4335 R rec 7ece66ac-5f45-435a-83f6-8ef9adb34854 -2023-07-08 08:20:56.793618 2023-07-08 08:20:56.793625 mef 4336 R rec c08475e0-de80-4d6b-9c74-daaaededd9fe -2023-07-08 08:20:56.859525 2023-07-08 08:20:56.859529 mef 4337 R rec 9e113d58-cc4b-43c8-9342-2df3fcab622c -2023-07-08 08:20:56.927436 2023-07-08 08:20:56.927441 mef 4338 R rec ba702e3c-68bd-43f6-b8d6-63cc4e173c7b -2023-07-08 08:20:56.997928 2023-07-08 08:20:56.997931 mef 4339 R rec d0757cf9-480e-4bde-9735-01956d081de6 -2023-07-08 08:20:57.070426 2023-07-08 08:20:57.070435 mef 4340 R rec 5d810452-0964-4c37-985c-f05f90a140f8 -2023-07-08 08:20:57.179352 2023-07-08 08:20:57.179364 mef 4341 R rec 9f3116a0-ae4f-4337-bbc1-8f08623d8b5b -2023-07-08 08:20:57.269872 2023-07-08 08:20:57.269884 mef 4342 R rec 76bcecde-59f1-4325-9277-c07e2c7b7844 -2023-07-08 08:20:57.354187 2023-07-08 08:20:57.354196 mef 4343 R rec 0c313249-43eb-471e-8b51-ac991ca359ca -2023-07-08 08:20:57.449201 2023-07-08 08:20:57.449218 mef 4344 R rec 9cf1cacf-b3ab-449f-8d94-5614418923f0 -2023-07-08 08:20:57.530669 2023-07-08 08:20:57.530679 mef 4345 R rec c8f4c940-1f39-4ebb-aab0-1bf468c5149d -2023-07-08 08:20:57.609563 2023-07-08 08:20:57.609573 mef 4346 R rec 92e0d76d-1b0e-443e-87f7-01e80557a9a5 -2023-07-08 08:20:57.697407 2023-07-08 08:20:57.697422 mef 4347 R rec d138bd2b-d353-402a-97ec-0d74ebb8592c -2023-07-08 08:20:57.785801 2023-07-08 08:20:57.785812 mef 4348 R rec 4e1f4205-7914-41f3-bd5a-b4b618e11378 -2023-07-08 08:20:57.876102 2023-07-08 08:20:57.876115 mef 4349 R rec 63260e72-272e-439c-8c08-76e12ceef387 -2023-07-08 08:20:57.964049 2023-07-08 08:20:57.964059 mef 4350 R rec 016ea304-2282-4f05-9bef-8281c205ae1d -2023-07-08 08:20:58.049892 2023-07-08 08:20:58.049905 mef 4351 R rec 5ad0e64f-3746-4152-922d-ad368076fdee -2023-07-08 08:20:58.13179 2023-07-08 08:20:58.1318 mef 4352 R rec 0ae0ce8f-166d-4b33-a308-2432f2cf6ff8 -2023-07-08 08:20:58.221126 2023-07-08 08:20:58.221136 mef 4353 R rec bcd77a7f-1b2b-4730-9389-992e11b0e1c2 -2023-07-08 08:20:58.413581 2023-07-08 08:20:58.413598 mef 4354 R rec e551c373-4ae4-4bd7-8346-f404f71b32f3 -2023-07-08 08:20:58.501516 2023-07-08 08:20:58.501521 mef 4355 R rec 719180b5-7fef-4140-bd98-d1264f1c05ed -2023-07-08 08:20:58.586812 2023-07-08 08:20:58.586823 mef 4356 R rec 19d42a9a-92e6-4a8a-8942-dfabf7d68c72 -2023-07-08 08:20:58.665408 2023-07-08 08:20:58.665418 mef 4357 R rec 04acea7a-d4d0-4e5d-a64d-a5fc5db69b85 -2023-07-08 08:20:58.750973 2023-07-08 08:20:58.750983 mef 4358 R rec b6066441-6cdf-4fa4-ae19-ad7c420710db -2023-07-08 08:20:58.840797 2023-07-08 08:20:58.840813 mef 4359 R rec 445800de-6a4a-440f-83d2-35eee4677b90 -2023-07-08 08:20:58.945194 2023-07-08 08:20:58.945206 mef 4360 R rec e3c709ba-bcde-44d9-8ae2-59b2176272db -2023-07-08 08:20:59.030729 2023-07-08 08:20:59.03074 mef 4361 R rec a2cf5ccd-d477-4915-9cc4-40bad2e2262c -2023-07-08 08:20:59.128396 2023-07-08 08:20:59.128408 mef 4362 R rec ec65c444-8d41-438f-a598-6551f9ba29c5 -2023-07-08 08:20:59.328471 2023-07-08 08:20:59.328484 mef 4363 R rec 116d9c9f-18ae-4f94-a977-b3a0b3ed520a -2023-07-08 08:20:59.417191 2023-07-08 08:20:59.4172 mef 4364 R rec 3fddf53d-0605-42e7-bfe1-52892f538dbe -2023-07-08 08:20:59.51147 2023-07-08 08:20:59.511475 mef 4365 R rec d7dcbfd7-bf17-488b-99c3-c49bad1c105f -2023-07-08 08:20:59.596351 2023-07-08 08:20:59.596363 mef 4366 R rec 8c9d70a3-70ee-4581-8375-83f3098e23e4 -2023-07-08 08:20:59.702144 2023-07-08 08:20:59.702154 mef 4367 R rec 35241575-013c-4b76-a20e-dde728284cb2 -2023-07-08 08:20:59.824473 2023-07-08 08:20:59.824488 mef 4368 R rec 6cd822ca-2b38-4cfd-9460-acd8c08c498f -2023-07-08 08:20:59.917401 2023-07-08 08:20:59.917411 mef 4369 R rec 157bd1ed-9229-45bd-9b62-053b4cda4728 -2023-07-08 08:21:00.112743 2023-07-08 08:21:00.112753 mef 4370 R rec 9a200895-6529-4f28-abab-dd07f450b362 -2023-07-08 08:21:00.197246 2023-07-08 08:21:00.197251 mef 4371 R rec 16ed0f0f-7997-4a6b-a89b-f14c7fd1a7ff -2023-07-08 08:21:00.286216 2023-07-08 08:21:00.286231 mef 4372 R rec 434da9b8-9d93-49f2-9f2e-ba43a73ebe1a -2023-07-08 08:21:00.369277 2023-07-08 08:21:00.369293 mef 4373 R rec 6026bf80-35be-4e6a-bfdc-d08640d1f2ce -2023-07-08 08:21:00.47015 2023-07-08 08:21:00.470158 mef 4374 R rec f3339a4e-6b76-4d7a-a028-89cb0654851d -2023-07-08 08:21:00.559906 2023-07-08 08:21:00.559918 mef 4375 R rec c642051d-5668-4126-9fdd-d33f648694e0 -2023-07-08 08:21:00.649814 2023-07-08 08:21:00.649825 mef 4376 R rec 8a9a7e8f-ad86-4048-8e77-f47638024064 -2023-07-08 08:21:00.747253 2023-07-08 08:21:00.747266 mef 4377 R rec fa35fd14-5f0f-41c4-b413-9a44928c9723 -2023-07-08 08:21:00.859302 2023-07-08 08:21:00.859313 mef 4378 R rec bf395786-6fa0-4836-814f-fe10e2b4b1c6 -2023-07-08 08:21:00.958446 2023-07-08 08:21:00.958456 mef 4379 R rec a6aca7b7-477f-4a92-8766-3950618abf68 -2023-07-08 08:21:01.060868 2023-07-08 08:21:01.060884 mef 4380 R rec 127572a3-55fb-47d8-8fa4-2bb181b29e28 -2023-07-08 08:21:01.163367 2023-07-08 08:21:01.163378 mef 4381 R rec d4201a0c-c909-4270-af2a-a1f3e9ae689e -2023-07-08 08:21:01.260918 2023-07-08 08:21:01.260931 mef 4382 R rec 88f04c3c-1d9c-41f6-a9ed-54a49da5c68d -2023-07-08 08:21:01.366047 2023-07-08 08:21:01.366062 mef 4383 R rec 9bf51372-63fd-4314-9562-afdabae382bc -2023-07-08 08:21:01.467693 2023-07-08 08:21:01.467703 mef 4384 R rec c62d4dc9-1bd3-4cf7-850e-0fb1a53169ef -2023-07-08 08:21:01.559795 2023-07-08 08:21:01.559811 mef 4385 R rec 211276d4-2f7c-4927-98e6-d764cde88143 -2023-07-08 08:21:01.650178 2023-07-08 08:21:01.650191 mef 4386 R rec ce4a4a58-425f-4d67-81d1-4102a56776fd -2023-07-08 08:21:01.738175 2023-07-08 08:21:01.738179 mef 4387 R rec f10fb988-ca4c-4b6e-a8ba-9844aa37cfbf -2023-07-08 08:21:01.816958 2023-07-08 08:21:01.816961 mef 4388 R rec 06d6a39a-e78d-4548-8b2b-963ccd5fda6e -2023-07-08 08:21:01.908151 2023-07-08 08:21:01.908162 mef 4389 R rec d96cb8b3-bf03-4018-9573-696f8a649214 -2023-07-08 08:21:01.986026 2023-07-08 08:21:01.986031 mef 4390 R rec 1172098a-c877-4796-8f44-6f931a2e9fe3 -2023-07-08 08:21:02.064512 2023-07-08 08:21:02.064515 mef 4391 R rec 7dd309fc-e821-496d-88b1-4b41940c5e37 -2023-07-08 08:21:02.144723 2023-07-08 08:21:02.144735 mef 4392 R rec 9835636f-9619-4559-ab44-a3cd01481640 -2023-07-08 08:21:02.22889 2023-07-08 08:21:02.228894 mef 4393 R rec 30946869-edfa-47f0-978d-8ad306a7b31a -2023-07-08 08:21:02.29341 2023-07-08 08:21:02.293414 mef 4394 R rec 54772008-5cba-4431-8778-a3eab49e9d70 -2023-07-08 08:21:02.36774 2023-07-08 08:21:02.367745 mef 4395 R rec bf694b7f-4d26-4149-994a-3e35c6869067 -2023-07-08 08:21:02.443478 2023-07-08 08:21:02.44349 mef 4396 R rec d2d83c2f-ad50-4231-99fb-62f8d2ceb169 -2023-07-08 08:21:02.519655 2023-07-08 08:21:02.51966 mef 4397 R rec c23a499a-0e9f-4bb6-b4f8-9fd79992f5c2 -2023-07-08 08:21:02.58582 2023-07-08 08:21:02.585825 mef 4398 R rec f4ca5d40-73db-4631-8e35-1455d0489ca3 -2023-07-08 08:21:02.656475 2023-07-08 08:21:02.65648 mef 4399 R rec c7c726a0-7492-472b-a441-c76844b3a8a9 -2023-07-08 08:21:02.727038 2023-07-08 08:21:02.727043 mef 4400 R rec dfba5433-9688-4584-96e7-9b6ab76a262e -2023-07-08 08:21:02.807758 2023-07-08 08:21:02.807762 mef 4401 R rec c0883aac-580f-42f6-934b-719dca5e4fac -2023-07-08 08:21:02.883496 2023-07-08 08:21:02.883501 mef 4402 R rec 17676954-2890-45fc-8590-9d0b2eefd060 -2023-07-08 08:21:02.955731 2023-07-08 08:21:02.955736 mef 4403 R rec 7da64a26-c96d-4a0e-8c8a-19d2a8941401 -2023-07-08 08:21:03.036986 2023-07-08 08:21:03.036996 mef 4404 R rec 6c6cc2df-711f-4582-8dc2-52475a049cc9 -2023-07-08 08:21:03.133597 2023-07-08 08:21:03.13361 mef 4405 R rec cb4c61c6-c32b-4702-bf15-38d858227df3 -2023-07-08 08:21:03.2187 2023-07-08 08:21:03.218714 mef 4406 R rec 378f6c1d-929a-43eb-aa37-8be1e3a326f4 -2023-07-08 08:21:03.304165 2023-07-08 08:21:03.304172 mef 4407 R rec b0e23d06-7e19-4ab0-a5ef-cacb13bfa076 -2023-07-08 08:21:03.390591 2023-07-08 08:21:03.390596 mef 4408 R rec 36113230-1399-4817-9a23-64c2b89bf608 -2023-07-08 08:21:03.460485 2023-07-08 08:21:03.46049 mef 4409 R rec 899b835a-a604-4545-a923-b10f34ce01c7 -2023-07-08 08:21:03.531196 2023-07-08 08:21:03.531202 mef 4410 R rec 6b596eba-be21-4aba-95e8-6a87768c7ded -2023-07-08 08:21:03.62838 2023-07-08 08:21:03.628386 mef 4411 R rec c01711b2-8afd-4f33-9827-c12d744b0f46 -2023-07-08 08:21:03.700044 2023-07-08 08:21:03.700054 mef 4412 R rec b2cdd9c4-62e4-43e8-a557-67d1bf03a6dd -2023-07-08 08:21:03.771672 2023-07-08 08:21:03.771678 mef 4413 R rec 9cad56c3-eed3-4ccb-9764-aad07f08ab7a -2023-07-08 08:21:03.849759 2023-07-08 08:21:03.849764 mef 4414 R rec a8aee487-f26d-48d5-91cb-50f4f2cb6aa7 -2023-07-08 08:21:03.93039 2023-07-08 08:21:03.930401 mef 4415 R rec 71ecb32c-e9cb-4a8a-98cb-0f6ba2229467 -2023-07-08 08:21:04.026368 2023-07-08 08:21:04.02638 mef 4416 R rec 4e381a4d-b55a-4bc8-829e-1c7f2211f909 -2023-07-08 08:21:04.10831 2023-07-08 08:21:04.10832 mef 4417 R rec 3da0fb73-036d-4c66-9064-14ea0adfe851 -2023-07-08 08:21:04.183846 2023-07-08 08:21:04.183852 mef 4418 R rec a03fef67-5a06-4bbc-a8e4-8078f2e9263a -2023-07-08 08:21:04.255467 2023-07-08 08:21:04.255477 mef 4419 R rec 0f426d0f-0e83-446d-ab44-998b3551219f -2023-07-08 08:21:04.340996 2023-07-08 08:21:04.341006 mef 4420 R rec f8316081-6fd6-40a4-85bf-b598cc69010b -2023-07-08 08:21:04.425993 2023-07-08 08:21:04.426005 mef 4421 R rec 32dd8e20-a06d-4c4e-a806-e13a71c02643 -2023-07-08 08:21:04.503118 2023-07-08 08:21:04.503126 mef 4422 R rec 008d4065-a4ff-4c15-bc71-d73ac44fbbcf -2023-07-08 08:21:04.569915 2023-07-08 08:21:04.56992 mef 4423 R rec 62de80a9-8b8e-493d-b0ca-f4fca18714e4 -2023-07-08 08:21:04.638794 2023-07-08 08:21:04.638799 mef 4424 R rec a3313b07-a23b-4247-80cf-02d37702515c -2023-07-08 08:21:04.733331 2023-07-08 08:21:04.733341 mef 4425 R rec cfa12284-1426-4fee-8387-954987155591 -2023-07-08 08:21:04.82703 2023-07-08 08:21:04.827043 mef 4426 R rec 982613d4-4be4-4d9d-8abd-6696e00b62be -2023-07-08 08:21:04.91042 2023-07-08 08:21:04.910434 mef 4427 R rec 4b7f6f06-2432-4a2a-83dc-b5053333e53e -2023-07-08 08:21:04.989077 2023-07-08 08:21:04.989082 mef 4428 R rec 498419c0-e537-456a-a485-7d815a70298a -2023-07-08 08:21:05.087442 2023-07-08 08:21:05.087454 mef 4429 R rec b58b4448-053e-4183-a7a9-f2f8a8340781 -2023-07-08 08:21:05.194644 2023-07-08 08:21:05.194659 mef 4430 R rec fda596fe-f273-43f6-96fb-e15796ef9011 -2023-07-08 08:21:05.277815 2023-07-08 08:21:05.27782 mef 4431 R rec 9205dcaa-033d-439c-9ea6-aa6a45253e2d -2023-07-08 08:21:05.366417 2023-07-08 08:21:05.366434 mef 4432 R rec 2ee4767a-cd58-4b87-b8c3-8e4b1549c798 -2023-07-08 08:21:05.458217 2023-07-08 08:21:05.458229 mef 4433 R rec d558498f-7fac-41fb-aa6f-9e19fa378ef6 -2023-07-08 08:21:05.549723 2023-07-08 08:21:05.549728 mef 4434 R rec 38c06528-e19b-4322-99dd-81b8cfdd5f9d -2023-07-08 08:21:05.627191 2023-07-08 08:21:05.627195 mef 4435 R rec 387c0160-1e57-4811-9670-b9a95588da78 -2023-07-08 08:21:05.714328 2023-07-08 08:21:05.714339 mef 4436 R rec b63a8661-34dd-4599-967c-a9b363ac442b -2023-07-08 08:21:05.811819 2023-07-08 08:21:05.811832 mef 4437 R rec 1d126eea-2b7f-4d97-917e-88da45da5f44 -2023-07-08 08:21:05.915705 2023-07-08 08:21:05.915723 mef 4438 R rec 08594a42-0416-4bd0-ada9-fb8666016402 -2023-07-08 08:21:05.996587 2023-07-08 08:21:05.996592 mef 4439 R rec 8c374927-32f8-4e6e-b9ed-852d4a15717c -2023-07-08 08:21:06.074046 2023-07-08 08:21:06.074051 mef 4440 R rec 0f29573e-9928-429d-aaf3-66ea65c2af77 -2023-07-08 08:21:06.167213 2023-07-08 08:21:06.167223 mef 4441 R rec 3376a232-5284-48b8-85d9-8e5cbbbadcb3 -2023-07-08 08:21:06.25051 2023-07-08 08:21:06.25052 mef 4442 R rec 0845772d-dab5-48e3-ad37-e6182d57ce77 -2023-07-08 08:21:06.343522 2023-07-08 08:21:06.343535 mef 4443 R rec 38ea166d-dd20-4561-9c74-1c43c2a48426 -2023-07-08 08:21:06.43386 2023-07-08 08:21:06.43387 mef 4444 R rec d1a58563-da35-42d3-9413-fb653132584d -2023-07-08 08:21:06.519898 2023-07-08 08:21:06.519902 mef 4445 R rec c90fae99-1bb0-43d3-802c-5429eb606649 -2023-07-08 08:21:06.699502 2023-07-08 08:21:06.699507 mef 4446 R rec f6019266-1d7d-48aa-91d3-fa0af95a7d98 -2023-07-08 08:21:06.796899 2023-07-08 08:21:06.796911 mef 4447 R rec 62cb0011-3756-499e-92d5-c0750a86037e -2023-07-08 08:21:06.894276 2023-07-08 08:21:06.894289 mef 4448 R rec 93fb9d27-80f7-4f31-b6d9-993cb699adf4 -2023-07-08 08:21:06.994717 2023-07-08 08:21:06.994721 mef 4449 R rec dafc98f6-cc7c-42e4-bf81-4a2b1c6642a8 -2023-07-08 08:21:07.074884 2023-07-08 08:21:07.074895 mef 4450 R rec 28abaae8-82c9-4395-bafd-dfc6e7094e2e -2023-07-08 08:21:07.157556 2023-07-08 08:21:07.157561 mef 4451 R rec 97a6e358-cf04-4b43-a89d-67484c4c1284 -2023-07-08 08:21:07.225865 2023-07-08 08:21:07.225875 mef 4452 R rec db7fb54e-aa6d-4ea8-b696-d1024c34cb8c -2023-07-08 08:21:07.314469 2023-07-08 08:21:07.31448 mef 4453 R rec cfbe1b17-daed-43bd-aa6e-a117d86552c3 -2023-07-08 08:21:07.401058 2023-07-08 08:21:07.40107 mef 4454 R rec fea92103-43f3-4438-912b-c3772740214c -2023-07-08 08:21:07.497457 2023-07-08 08:21:07.497462 mef 4455 R rec 2d57ee2e-9cf0-4598-8395-c1cf86747011 -2023-07-08 08:21:07.583539 2023-07-08 08:21:07.583544 mef 4456 R rec 1d6b3799-804e-4310-aee2-2ed61cee75b8 -2023-07-08 08:21:07.664087 2023-07-08 08:21:07.664091 mef 4457 R rec a91adad8-1b17-4f8c-aaed-49e12edfdc94 -2023-07-08 08:21:07.727492 2023-07-08 08:21:07.727497 mef 4458 R rec 3864443a-001f-4e8c-b42f-8f6acd8f3543 -2023-07-08 08:21:07.804163 2023-07-08 08:21:07.80417 mef 4459 R rec ab600319-a614-4cd5-9269-4d04b3ffe883 -2023-07-08 08:21:07.883477 2023-07-08 08:21:07.883488 mef 4460 R rec 7861a859-e1c1-4960-85c5-0881e5ea2540 -2023-07-08 08:21:07.965291 2023-07-08 08:21:07.965295 mef 4461 R rec 566e35b8-5cda-403e-ac9f-85bb311b5f09 -2023-07-08 08:21:08.126033 2023-07-08 08:21:08.126044 mef 4462 R rec c51f6210-669b-4085-b76b-27583e5fc661 -2023-07-08 08:21:08.210809 2023-07-08 08:21:08.210821 mef 4463 R rec a75af8f1-d799-4d24-be1b-c0bf2f8dc8bc -2023-07-08 08:21:08.296606 2023-07-08 08:21:08.296616 mef 4464 R rec d6b7a6a3-e1a5-43a3-8af6-3a0edabe8f6e -2023-07-08 08:21:08.387993 2023-07-08 08:21:08.388002 mef 4465 R rec 8e843a50-7024-4303-ad5a-059ad98161d1 -2023-07-08 08:21:08.47508 2023-07-08 08:21:08.475091 mef 4466 R rec 29ee62e5-62d8-4045-a919-ee5305b66c3d -2023-07-08 08:21:08.577557 2023-07-08 08:21:08.577562 mef 4467 R rec 46829d93-82fe-4eaf-a3fb-21c6cff7bfc9 -2023-07-08 08:21:08.658017 2023-07-08 08:21:08.658028 mef 4468 R rec 0ad03844-6d85-41cd-9430-fa31e35dee95 -2023-07-08 08:21:08.740568 2023-07-08 08:21:08.740578 mef 4469 R rec 09ebcee8-0805-45d4-aa50-e4f52a0f9939 -2023-07-08 08:21:08.822512 2023-07-08 08:21:08.822517 mef 4470 R rec 70493bbb-8418-478d-9d80-a33cbc659d7b -2023-07-08 08:21:08.903113 2023-07-08 08:21:08.903123 mef 4471 R rec aa56853f-01df-4b68-9688-fc6c5ef337e8 -2023-07-08 08:21:08.992056 2023-07-08 08:21:08.992069 mef 4472 R rec 28704ac3-a859-4cb5-bfd7-1808ccd45dee -2023-07-08 08:21:09.067175 2023-07-08 08:21:09.06719 mef 4473 R rec 88ac175d-ee65-4806-a6e3-e38981b5e93f -2023-07-08 08:21:09.141137 2023-07-08 08:21:09.141142 mef 4474 R rec 17e51516-1693-49b6-84a3-793d69301b6b -2023-07-08 08:21:09.206776 2023-07-08 08:21:09.206787 mef 4475 R rec 1d0b8f00-b40a-4c1f-adf7-4e042fa6c80b -2023-07-08 08:21:09.298028 2023-07-08 08:21:09.298038 mef 4476 R rec 0e0f0732-fb72-4c01-aebf-6afae68d8bc9 -2023-07-08 08:21:09.396247 2023-07-08 08:21:09.396257 mef 4477 R rec 6314e8c4-e8ff-43e3-85b9-4712f1e681d0 -2023-07-08 08:21:09.486361 2023-07-08 08:21:09.486375 mef 4478 R rec 95b7a53a-4afa-4162-a48b-c4b879bdc24f -2023-07-08 08:21:09.569556 2023-07-08 08:21:09.569568 mef 4479 R rec 20e023e5-e189-4e9e-b2de-de7c6b2a4c7a -2023-07-08 08:21:09.656988 2023-07-08 08:21:09.656999 mef 4480 R rec ccfd6550-3035-4cf9-a403-9038a1d9881f -2023-07-08 08:21:09.75385 2023-07-08 08:21:09.753865 mef 4481 R rec 756035d4-ab32-41cd-b407-9daac43f8a26 -2023-07-08 08:21:09.836286 2023-07-08 08:21:09.836295 mef 4482 R rec 6ede7305-c817-4c5f-9483-15bbbed13037 -2023-07-08 08:21:09.934065 2023-07-08 08:21:09.93408 mef 4483 R rec ec4536fb-3d24-4782-bff6-0f957a8086d0 -2023-07-08 08:21:10.022669 2023-07-08 08:21:10.022674 mef 4484 R rec 0af4fa5c-1346-49d2-b4ae-56f39c12eff4 -2023-07-08 08:21:10.109267 2023-07-08 08:21:10.109271 mef 4485 R rec b7ebd951-67c3-4ae4-84b8-84d9bf6fb869 -2023-07-08 08:21:10.190327 2023-07-08 08:21:10.19034 mef 4486 R rec d03b1238-0c27-46ee-8fd2-8f9622c59beb -2023-07-08 08:21:10.277456 2023-07-08 08:21:10.277466 mef 4487 R rec 5727febc-b1c4-412a-993b-c22d49101e91 -2023-07-08 08:21:10.367732 2023-07-08 08:21:10.367742 mef 4488 R rec 73db8ea1-ac9f-447a-9008-c9b4a7d551b4 -2023-07-08 08:21:10.453792 2023-07-08 08:21:10.453805 mef 4489 R rec be69d732-9916-40e4-9d94-08c5910dc6a9 -2023-07-08 08:21:10.543786 2023-07-08 08:21:10.543797 mef 4490 R rec 320d35a8-77cc-4e8f-a4db-463b4d145906 -2023-07-08 08:21:10.634493 2023-07-08 08:21:10.634506 mef 4491 R rec 2e22bde3-2f8e-4a5c-892c-a3d31d5e3179 -2023-07-08 08:21:10.916853 2023-07-08 08:21:10.916868 mef 4492 R rec 5cedcd78-5e9a-4016-8cd4-ada81f3acd52 -2023-07-08 08:21:11.005882 2023-07-08 08:21:11.005889 mef 4493 R rec deadef0e-fe73-4174-bcc2-784336b4a8df -2023-07-08 08:21:11.086882 2023-07-08 08:21:11.086887 mef 4494 R rec b6197792-c0da-45c9-8b86-c0be8ca138a5 -2023-07-08 08:21:11.178615 2023-07-08 08:21:11.178628 mef 4495 R rec 7a86f675-b2ab-4800-87d2-8b840d79ff6c -2023-07-08 08:21:11.28432 2023-07-08 08:21:11.284331 mef 4496 R rec 70cbb230-25ce-4d69-a6c4-30e5551e4870 -2023-07-08 08:21:11.385762 2023-07-08 08:21:11.385772 mef 4497 R rec 03cc6de5-6cf5-40d5-95fe-bdf8c5cdeb59 -2023-07-08 08:21:11.490981 2023-07-08 08:21:11.490994 mef 4498 R rec 161cd032-ae9b-4173-bdd2-f53c7d286c77 -2023-07-08 08:21:11.582347 2023-07-08 08:21:11.582364 mef 4499 R rec 805d3048-0772-411f-a465-3b1123990c41 -2023-07-08 08:21:11.673007 2023-07-08 08:21:11.673018 mef 4500 R rec 55200af7-0cd8-4a58-8bac-53bf12909598 -2023-07-08 08:21:11.778812 2023-07-08 08:21:11.778818 mef 4501 R rec a058cb4a-3aaa-4fb4-9b0e-5bc00d6abd54 -2023-07-08 08:21:11.876449 2023-07-08 08:21:11.876459 mef 4502 R rec 2f3252b4-5df1-46a4-8ede-5e433bc8735e -2023-07-08 08:21:11.981482 2023-07-08 08:21:11.981492 mef 4503 R rec e7bebe22-4804-499d-96bf-b4330d0373f6 -2023-07-08 08:21:12.070926 2023-07-08 08:21:12.07093 mef 4504 R rec 93b28448-c36d-4b53-a832-d76c98c803fc -2023-07-08 08:21:12.170903 2023-07-08 08:21:12.170908 mef 4505 R rec 4893179a-4387-48df-b37d-7996ef5799ad -2023-07-08 08:21:12.281783 2023-07-08 08:21:12.281797 mef 4506 R rec 08d6cc1b-6a16-444f-a031-531181d1a624 -2023-07-08 08:21:12.378254 2023-07-08 08:21:12.378258 mef 4507 R rec 227e5ac4-e7f6-455c-81df-806790d4d650 -2023-07-08 08:21:12.470441 2023-07-08 08:21:12.470456 mef 4508 R rec f337ba9c-1d86-4b52-ac82-dee16b3e5ad6 -2023-07-08 08:21:12.577987 2023-07-08 08:21:12.578001 mef 4509 R rec 8d8a4129-74df-4869-998d-5208bc77666d -2023-07-08 08:21:12.666178 2023-07-08 08:21:12.666184 mef 4510 R rec 543e7cbd-2f64-4b97-a266-f00e29b37b5c -2023-07-08 08:21:12.75957 2023-07-08 08:21:12.759583 mef 4511 R rec f2bd9893-217f-4726-8889-5d2dfd20dfc6 -2023-07-08 08:21:12.947505 2023-07-08 08:21:12.947515 mef 4512 R rec ec402e73-ecfc-4b7b-88c1-dbaeded54587 -2023-07-08 08:21:13.030663 2023-07-08 08:21:13.030668 mef 4513 R rec f8c79ea5-9a55-4af5-a9da-d7069f3409d7 -2023-07-08 08:21:13.103709 2023-07-08 08:21:13.103714 mef 4514 R rec d44da96c-b4f9-4fab-aa98-a08c7c7ccfb9 -2023-07-08 08:21:13.201637 2023-07-08 08:21:13.201646 mef 4515 R rec 5eb1d691-e454-4e45-9671-9b1f15ebbdb7 -2023-07-08 08:21:13.289213 2023-07-08 08:21:13.289229 mef 4516 R rec 14583e22-432c-4221-9148-74e3eadaaece -2023-07-08 08:21:13.381769 2023-07-08 08:21:13.381777 mef 4517 R rec cfdc0c3b-6dd4-4a75-acf7-d536e812630f -2023-07-08 08:21:13.481063 2023-07-08 08:21:13.481073 mef 4518 R rec 71b5be35-3c36-4829-914a-6071da51ae4e -2023-07-08 08:21:13.554051 2023-07-08 08:21:13.554055 mef 4519 R rec 979305e3-7513-41a5-b500-cf27161da3b9 -2023-07-08 08:21:13.630534 2023-07-08 08:21:13.630538 mef 4520 R rec 164f2c7b-d754-4da1-afe7-2677b8cfce9b -2023-07-08 08:21:13.728922 2023-07-08 08:21:13.729006 mef 4521 R rec 587fe13f-dece-4c1e-ac7e-4cfdbd1e56d9 -2023-07-08 08:21:13.826234 2023-07-08 08:21:13.82624 mef 4522 R rec 5b4fcbc7-85e7-439a-ac76-4e554dbb0ae9 -2023-07-08 08:21:13.921406 2023-07-08 08:21:13.921419 mef 4523 R rec 4687bcea-99d2-48a4-b449-5134cb2ac9d1 -2023-07-08 08:21:14.006215 2023-07-08 08:21:14.006223 mef 4524 R rec 7665236e-876f-44ef-b244-18d915c62034 -2023-07-08 08:21:14.098461 2023-07-08 08:21:14.098478 mef 4525 R rec 543daabb-5da4-4807-ad73-d749da4149a1 -2023-07-08 08:21:14.184274 2023-07-08 08:21:14.184282 mef 4526 R rec 4864d9d7-1944-43db-86ed-1a83aab12e58 -2023-07-08 08:21:14.277334 2023-07-08 08:21:14.277347 mef 4527 R rec 1c7a88a3-d41c-4cae-bd82-bca7ed801617 -2023-07-08 08:21:14.371429 2023-07-08 08:21:14.371439 mef 4528 R rec e729a68b-4dbc-402b-b5ce-059b9cfcb699 -2023-07-08 08:21:14.467 2023-07-08 08:21:14.467004 mef 4529 R rec e5573ee0-3111-42f3-aac8-1291a5b0b013 -2023-07-08 08:21:14.553579 2023-07-08 08:21:14.553585 mef 4530 R rec 2d5382f9-476f-49e9-b717-6be886b1df4b -2023-07-08 08:21:14.648857 2023-07-08 08:21:14.648867 mef 4531 R rec ba0d48ea-4bdf-408c-a830-a1df31078c97 -2023-07-08 08:21:14.728068 2023-07-08 08:21:14.728078 mef 4532 R rec 1d55ebee-7b6d-4052-8223-9d7ef8feb3ef -2023-07-08 08:21:14.82843 2023-07-08 08:21:14.828441 mef 4533 R rec ac6e6e44-b1b2-4029-81a5-34fe0f746ffa -2023-07-08 08:21:14.916316 2023-07-08 08:21:14.916326 mef 4534 R rec 1d8053e0-90c4-4fdc-84a9-910448f0155c -2023-07-08 08:21:15.012573 2023-07-08 08:21:15.012583 mef 4535 R rec 40c06438-b88b-4a86-8f6f-58a566d4e857 -2023-07-08 08:21:15.097469 2023-07-08 08:21:15.097479 mef 4536 R rec 00ef3da0-c88e-4414-9b64-f88ef3464b35 -2023-07-08 08:21:15.1927 2023-07-08 08:21:15.19271 mef 4537 R rec 4b6845af-3921-4e34-9ade-0b28991b8465 -2023-07-08 08:21:15.278056 2023-07-08 08:21:15.278066 mef 4538 R rec 273a74e1-9fe2-4213-bd37-96db1f252c6c -2023-07-08 08:21:15.362705 2023-07-08 08:21:15.362714 mef 4539 R rec 192b8bd7-f7a8-4375-ae1d-18790dc1ba30 -2023-07-08 08:21:15.451164 2023-07-08 08:21:15.451174 mef 4540 R rec d6148504-893a-4265-8429-3d3d71d0eccf -2023-07-08 08:21:15.535532 2023-07-08 08:21:15.535537 mef 4541 R rec 6d372420-7742-4350-affa-6cae06a3db5c -2023-07-08 08:21:15.61448 2023-07-08 08:21:15.614484 mef 4542 R rec 245897bd-6fce-4b94-a2dd-bed1d0364e0e -2023-07-08 08:21:15.707393 2023-07-08 08:21:15.707399 mef 4543 R rec a37dad6f-92c6-4cda-8bd0-82c96271bff6 -2023-07-08 08:21:15.801103 2023-07-08 08:21:15.801115 mef 4544 R rec d38fff3c-2372-41bc-a134-c4db417dccb5 -2023-07-08 08:21:15.894472 2023-07-08 08:21:15.894486 mef 4545 R rec 6769efb6-3175-43cc-a789-7c468302a870 -2023-07-08 08:21:15.994228 2023-07-08 08:21:15.994242 mef 4546 R rec 0f022468-e6c7-4cfb-9686-c2e3bfe83328 -2023-07-08 08:21:16.082567 2023-07-08 08:21:16.082579 mef 4547 R rec dafe7cfa-43d5-4bb6-b149-5139c7daad5d -2023-07-08 08:21:16.177101 2023-07-08 08:21:16.177107 mef 4548 R rec 47d1abc1-04b7-4fe7-b1ec-a5b40ffe1d0d -2023-07-08 08:21:16.262765 2023-07-08 08:21:16.26278 mef 4549 R rec 6d51484b-5f40-4a35-b7af-004c491c5ccc -2023-07-08 08:21:16.351325 2023-07-08 08:21:16.35133 mef 4550 R rec 06ea0157-c132-450a-a7d5-8b8b9072591a -2023-07-08 08:21:16.440564 2023-07-08 08:21:16.440575 mef 4551 R rec ca0ef47a-08fe-4333-af2e-b4a627b8ff53 -2023-07-08 08:21:16.525533 2023-07-08 08:21:16.525538 mef 4552 R rec e8b67531-e789-48c2-95a0-8938d50b0cbd -2023-07-08 08:21:16.608859 2023-07-08 08:21:16.608868 mef 4553 R rec 0868c6a7-8dda-4742-8ecf-f3622c80edb5 -2023-07-08 08:21:16.708509 2023-07-08 08:21:16.708519 mef 4554 R rec d078ae87-dd2f-4667-8d7a-7f1d75cd2a02 -2023-07-08 08:21:16.795949 2023-07-08 08:21:16.795957 mef 4555 R rec 3e7d2f5b-fe6d-4b4c-821a-cc8a8e9c6ba8 -2023-07-08 08:21:16.907235 2023-07-08 08:21:16.907249 mef 4556 R rec 33fec79a-d888-4dff-a8f6-f79e7aeb6ad0 -2023-07-08 08:21:16.997062 2023-07-08 08:21:16.997084 mef 4557 R rec d7f15a77-b897-4520-a54f-f908ca2e6b8f -2023-07-08 08:21:17.092346 2023-07-08 08:21:17.092352 mef 4558 R rec 0dfb932e-23b9-4c61-9bb7-857930d1a8c0 -2023-07-08 08:21:17.191433 2023-07-08 08:21:17.191449 mef 4559 R rec 70ad26d5-e4b0-41e3-a661-b9030af48ded -2023-07-08 08:21:17.281613 2023-07-08 08:21:17.281628 mef 4560 R rec c5049fda-d73e-46b8-a0f1-5450d17453ea -2023-07-08 08:21:17.385838 2023-07-08 08:21:17.385847 mef 4561 R rec 250b5890-1c81-450d-bbce-35d46ae8e5a5 -2023-07-08 08:21:17.486085 2023-07-08 08:21:17.486095 mef 4562 R rec e5e51ab1-d1f7-4f88-bbcb-d16238349720 -2023-07-08 08:21:17.565906 2023-07-08 08:21:17.565917 mef 4563 R rec e322daf4-4ec0-4552-b991-2674fa92fe95 -2023-07-08 08:21:17.653912 2023-07-08 08:21:17.653921 mef 4564 R rec 64f10615-d1c2-4477-8913-050709da4e59 -2023-07-08 08:21:17.844744 2023-07-08 08:21:17.844755 mef 4565 R rec 5d83ae28-cf50-4b55-a98d-bc0c4fcb31d5 -2023-07-08 08:21:17.944284 2023-07-08 08:21:17.944296 mef 4566 R rec 053c8275-0864-4f66-870c-1985d67f3e41 -2023-07-08 08:21:18.023997 2023-07-08 08:21:18.024001 mef 4567 R rec 5b5f78d2-0cbe-4cea-8558-d108c2850cf8 -2023-07-08 08:21:18.107795 2023-07-08 08:21:18.107805 mef 4568 R rec b45ef210-3ae0-4788-b1af-88aac31f9f00 -2023-07-08 08:21:18.297069 2023-07-08 08:21:18.297084 mef 4569 R rec 19b1c5a2-8a82-4444-9f3f-aee62fe07291 -2023-07-08 08:21:18.398658 2023-07-08 08:21:18.398673 mef 4570 R rec 8fab3820-cd42-4c67-b987-717c3d450dd8 -2023-07-08 08:21:18.497184 2023-07-08 08:21:18.497201 mef 4571 R rec 08bfe9d9-d45b-474e-bfae-9b9895c6c499 -2023-07-08 08:21:18.588991 2023-07-08 08:21:18.589001 mef 4572 R rec ae4adb33-a7ef-4345-be76-7a9db6ea2341 -2023-07-08 08:21:18.676765 2023-07-08 08:21:18.676769 mef 4573 R rec 70361d7e-0870-4345-b84d-b39102331121 -2023-07-08 08:21:18.781183 2023-07-08 08:21:18.781193 mef 4574 R rec 149f3ff0-17ff-44e3-ae8d-9afb24e075ee -2023-07-08 08:21:18.874385 2023-07-08 08:21:18.8744 mef 4575 R rec 37c7f887-cf62-4c99-9c90-848ef5358177 -2023-07-08 08:21:18.96433 2023-07-08 08:21:18.964335 mef 4576 R rec 96e62833-1861-4d4c-ab2c-41ba63250016 -2023-07-08 08:21:19.057538 2023-07-08 08:21:19.057548 mef 4577 R rec 9411689a-3789-4657-9357-e29c822d2c3f -2023-07-08 08:21:19.164835 2023-07-08 08:21:19.164855 mef 4578 R rec 95109d05-efa8-4dd0-ac77-41a9ca79b0ed -2023-07-08 08:21:19.255509 2023-07-08 08:21:19.255518 mef 4579 R rec dd533a6e-30dd-4931-a212-20082c0f08d0 -2023-07-08 08:21:19.348638 2023-07-08 08:21:19.348652 mef 4580 R rec b9d4aa9d-ee11-454a-99d4-0b8f7a6b58c5 -2023-07-08 08:21:19.450802 2023-07-08 08:21:19.450813 mef 4581 R rec 4d39b066-9702-4abf-b23b-5593e68c1b53 -2023-07-08 08:21:19.547405 2023-07-08 08:21:19.547415 mef 4582 R rec f291bdd3-397d-487a-af9a-9f178ad2aed9 -2023-07-08 08:21:19.630957 2023-07-08 08:21:19.630962 mef 4583 R rec 3765cd29-d152-4d8c-b760-ac58e08e45c6 -2023-07-08 08:21:19.714014 2023-07-08 08:21:19.714025 mef 4584 R rec bdd706a3-c2e2-442e-96ac-d73e3f7c2ad5 -2023-07-08 08:21:19.808979 2023-07-08 08:21:19.808989 mef 4585 R rec 72284978-ebb2-4e39-9388-631a2204b7c3 -2023-07-08 08:21:19.890686 2023-07-08 08:21:19.890703 mef 4586 R rec 07b8798c-2b36-4ac6-a42e-8923a7f3ec4d -2023-07-08 08:21:19.99367 2023-07-08 08:21:19.993683 mef 4587 R rec 9974e0f5-c057-483c-bfb5-6151b288c9d5 -2023-07-08 08:21:20.08541 2023-07-08 08:21:20.085421 mef 4588 R rec bad273c3-f836-46a4-ba3e-0649c0959581 -2023-07-08 08:21:20.179215 2023-07-08 08:21:20.179224 mef 4589 R rec 3ef897bb-41a9-4fc2-94f0-03e8129cd0d0 -2023-07-08 08:21:20.266969 2023-07-08 08:21:20.266978 mef 4590 R rec 0348dfb0-ff8a-45fc-af1d-27c77d0ee8fe -2023-07-08 08:21:20.362148 2023-07-08 08:21:20.362152 mef 4591 R rec 418a738c-87c6-4cd8-9d85-ff81b6756fb5 -2023-07-08 08:21:20.445584 2023-07-08 08:21:20.445599 mef 4592 R rec 27f55cf7-3e14-4279-919a-58d04ea6edf8 -2023-07-08 08:21:20.530513 2023-07-08 08:21:20.530518 mef 4593 R rec 750c46b1-c1cd-479d-8c07-c60225eafab8 -2023-07-08 08:21:20.702049 2023-07-08 08:21:20.702051 mef 4594 R rec 37e0eb75-040e-4570-8d98-b633d39c4738 -2023-07-08 08:21:20.790791 2023-07-08 08:21:20.790803 mef 4595 R rec acdc4759-7baf-49fa-886d-729d1612978c -2023-07-08 08:21:20.874823 2023-07-08 08:21:20.874833 mef 4596 R rec a171b4a3-27de-4ff7-bad6-b7bf6f5ad6c7 -2023-07-08 08:21:20.96921 2023-07-08 08:21:20.969223 mef 4597 R rec 5ce51b24-d540-4fe1-9baa-2bdbfd38f796 -2023-07-08 08:21:21.066439 2023-07-08 08:21:21.066447 mef 4598 R rec 2c0751f4-bb95-4db6-8370-86d650193495 -2023-07-08 08:21:21.165418 2023-07-08 08:21:21.165429 mef 4599 R rec 4ec2ebfc-c79c-43b4-9fcf-3c631f841b63 -2023-07-08 08:21:21.279301 2023-07-08 08:21:21.279306 mef 4600 R rec 51e424de-d297-4ede-85fe-efb164cbb4c5 -2023-07-08 08:21:21.379859 2023-07-08 08:21:21.379872 mef 4601 R rec e32094af-97e3-4d58-b546-fc17ba4ecd46 -2023-07-08 08:21:21.559654 2023-07-08 08:21:21.559661 mef 4602 R rec 32ae2e80-3f50-4625-81c3-8b6772f1b62e -2023-07-08 08:21:21.639546 2023-07-08 08:21:21.639552 mef 4603 R rec 123b4974-bb36-4466-8333-661d85a0485b -2023-07-08 08:21:21.732723 2023-07-08 08:21:21.732735 mef 4604 R rec 3e63db54-1f36-4d76-9e68-73316dc7eb39 -2023-07-08 08:21:21.930655 2023-07-08 08:21:21.930665 mef 4605 R rec 6dd8e426-ba51-45bb-87d7-d50fc8df10ea -2023-07-08 08:21:22.02327 2023-07-08 08:21:22.023275 mef 4606 R rec ffe779ac-87f6-46d1-bfa0-5cccd7def2fe -2023-07-08 08:21:22.10502 2023-07-08 08:21:22.10503 mef 4607 R rec f8608272-3dfc-4982-835d-b601a77f2680 -2023-07-08 08:21:22.188621 2023-07-08 08:21:22.188625 mef 4608 R rec f6a66ec8-c054-48d9-8917-722ecbef547d -2023-07-08 08:21:22.270941 2023-07-08 08:21:22.270957 mef 4609 R rec f75acb99-7477-4287-8f50-4c234357e6fb -2023-07-08 08:21:22.356739 2023-07-08 08:21:22.356753 mef 4610 R rec b9136f1a-9540-48af-8185-1238e9b741d0 -2023-07-08 08:21:22.460122 2023-07-08 08:21:22.460132 mef 4611 R rec 36c6f2f9-6662-4885-8385-73e1f1203e32 -2023-07-08 08:21:22.554053 2023-07-08 08:21:22.554058 mef 4612 R rec fd8fa502-87f8-45e7-bc73-d2d45e6fbf45 -2023-07-08 08:21:22.628475 2023-07-08 08:21:22.628489 mef 4613 R rec a4e21876-66db-4fc4-923a-d837774cfe9c -2023-07-08 08:21:22.712214 2023-07-08 08:21:22.712227 mef 4614 R rec 19c6f337-4733-4ad1-8018-29da7b6f8478 -2023-07-08 08:21:22.811446 2023-07-08 08:21:22.811455 mef 4615 R rec 8f65a9ba-3605-4f11-a7ee-571ff4b0e923 -2023-07-08 08:21:22.914794 2023-07-08 08:21:22.914803 mef 4616 R rec a0476d0c-15ad-4009-b387-c60ff80d7920 -2023-07-08 08:21:23.003814 2023-07-08 08:21:23.003824 mef 4617 R rec 83189c9a-9278-4b30-bd6b-cd59539262a7 -2023-07-08 08:21:23.08419 2023-07-08 08:21:23.084195 mef 4618 R rec 30a0352e-6999-4475-beb2-8c690b4511d5 -2023-07-08 08:21:23.153844 2023-07-08 08:21:23.153851 mef 4619 R rec e8729751-1190-4da2-87a9-5b4243bf2bf8 -2023-07-08 08:21:23.246212 2023-07-08 08:21:23.246224 mef 4620 R rec c58ec8ce-41e9-472e-bd1f-ce156b8900a7 -2023-07-08 08:21:23.332847 2023-07-08 08:21:23.332862 mef 4621 R rec 61250dbb-e9e1-4d47-95d9-f675ca32ae38 -2023-07-08 08:21:23.424451 2023-07-08 08:21:23.424461 mef 4622 R rec a5d136d3-4957-475a-936c-dd0d989e922e -2023-07-08 08:21:23.514712 2023-07-08 08:21:23.514722 mef 4623 R rec 855dba96-8204-43bf-bc56-48cef7881ab6 -2023-07-08 08:21:23.612245 2023-07-08 08:21:23.612258 mef 4624 R rec 24908a28-41f1-4888-808e-2797e5c95813 -2023-07-08 08:21:23.793935 2023-07-08 08:21:23.793944 mef 4625 R rec 028c38ad-dac3-440f-afe2-52cb0b2c481e -2023-07-08 08:21:23.894899 2023-07-08 08:21:23.894917 mef 4626 R rec 770cd655-d027-41d7-806a-7e3a4a4db25a -2023-07-08 08:21:24.065536 2023-07-08 08:21:24.06554 mef 4627 R rec eab3e3c5-9632-4063-8d71-295bdab989cd -2023-07-08 08:21:24.150333 2023-07-08 08:21:24.150343 mef 4628 R rec 6a4778d6-1387-40ce-8388-840389e63fae -2023-07-08 08:21:24.233021 2023-07-08 08:21:24.233025 mef 4629 R rec 03b53b70-7827-4a3e-870a-b01d62c4ccfc -2023-07-08 08:21:24.321787 2023-07-08 08:21:24.321797 mef 4630 R rec f63b4cc1-6875-4645-ba4c-e16c61d1d3c7 -2023-07-08 08:21:24.39375 2023-07-08 08:21:24.393753 mef 4631 R rec 97a8b349-02b1-4e11-a267-a8eab0baf849 -2023-07-08 08:21:24.477393 2023-07-08 08:21:24.477408 mef 4632 R rec ca71b03d-c38d-45ee-b74a-009ac06d117d -2023-07-08 08:21:24.559577 2023-07-08 08:21:24.559582 mef 4633 R rec d160c228-ef9d-4a70-bd03-bff5250d9f77 -2023-07-08 08:21:24.653275 2023-07-08 08:21:24.653285 mef 4634 R rec 5c2b150f-3008-4d00-9fd6-9d97b505f7c5 -2023-07-08 08:21:24.740052 2023-07-08 08:21:24.740062 mef 4635 R rec ff3ad520-d05c-44f7-968f-871df81c71ee -2023-07-08 08:21:24.831097 2023-07-08 08:21:24.831108 mef 4636 R rec 2c0c084c-e3a4-485f-8f5c-509a36ae1e6c -2023-07-08 08:21:24.912087 2023-07-08 08:21:24.912096 mef 4637 R rec 6026645c-c355-45d2-abec-06607bb13ad9 -2023-07-08 08:21:24.989426 2023-07-08 08:21:24.989431 mef 4638 R rec e56edf1b-7c9b-4a9a-9be2-93b519fe39ec -2023-07-08 08:21:25.064914 2023-07-08 08:21:25.064919 mef 4639 R rec 3d6eea2f-1217-4f9f-af2f-edbfbdd3af1a -2023-07-08 08:21:25.151192 2023-07-08 08:21:25.151202 mef 4640 R rec 39b8b54f-11d3-43cc-92d0-21a21b1aeb64 -2023-07-08 08:21:25.26701 2023-07-08 08:21:25.267024 mef 4641 R rec 32cebc5f-ffde-49b5-9f0f-23939d1b0f25 -2023-07-08 08:21:25.347345 2023-07-08 08:21:25.347352 mef 4642 R rec 0a16203f-903a-45ad-8c0f-b60baaccf6ec -2023-07-08 08:21:25.438932 2023-07-08 08:21:25.438945 mef 4643 R rec 2c1e9fbf-75ce-49a7-ae5e-c5fbdc944f5d -2023-07-08 08:21:25.538059 2023-07-08 08:21:25.538064 mef 4644 R rec 6e8bbf42-5852-4e61-86d5-7e3126ea593e -2023-07-08 08:21:25.633679 2023-07-08 08:21:25.633684 mef 4645 R rec fcc2106d-fb17-4394-bfbb-1e459c53f55a -2023-07-08 08:21:25.732001 2023-07-08 08:21:25.732013 mef 4646 R rec c0490d05-adb5-4024-8be8-14b9c7f58708 -2023-07-08 08:21:25.825802 2023-07-08 08:21:25.825813 mef 4647 R rec 9a658549-6d94-4fad-9900-f8e86b97d852 -2023-07-08 08:21:25.902622 2023-07-08 08:21:25.902627 mef 4648 R rec 41635330-0894-44c6-9668-494ecc47ce54 -2023-07-08 08:21:25.983089 2023-07-08 08:21:25.983093 mef 4649 R rec 44eb1ea3-19ce-4f3b-a50a-9c463171bf89 -2023-07-08 08:21:26.076378 2023-07-08 08:21:26.076388 mef 4650 R rec a923fcbe-6a14-4ecf-8740-51058291f1d4 -2023-07-08 08:21:26.183211 2023-07-08 08:21:26.183223 mef 4651 R rec 6da9519a-7b84-462d-bf03-8274c761805e -2023-07-08 08:21:26.268179 2023-07-08 08:21:26.268191 mef 4652 R rec 28e8e403-5344-4f00-bd0a-1be32755c96d -2023-07-08 08:21:26.368781 2023-07-08 08:21:26.368792 mef 4653 R rec 2b17e5bc-6a25-4339-b7c9-c058df6847da -2023-07-08 08:21:26.45338 2023-07-08 08:21:26.453391 mef 4654 R rec d00314e1-5fa7-4048-b9d4-db458fd36d7f -2023-07-08 08:21:26.536617 2023-07-08 08:21:26.536621 mef 4655 R rec 2017778e-d141-474d-aafd-299da84a94ac -2023-07-08 08:21:26.67969 2023-07-08 08:21:26.679703 mef 4656 R rec 865f48e3-0752-47c8-8bee-105a576d9e76 -2023-07-08 08:21:26.768134 2023-07-08 08:21:26.768145 mef 4657 R rec 461677f1-d2c9-4a2f-ba8a-41d129ff1b19 -2023-07-08 08:21:26.866077 2023-07-08 08:21:26.866089 mef 4658 R rec 3d185b3e-ee72-4487-8233-138dbc0df953 -2023-07-08 08:21:26.965982 2023-07-08 08:21:26.965994 mef 4659 R rec 707d51ee-92e5-4254-9be8-4754084a178b -2023-07-08 08:21:27.049308 2023-07-08 08:21:27.049313 mef 4660 R rec e3dcdebf-d4ae-428d-ab2c-4808ce2be286 -2023-07-08 08:21:27.124863 2023-07-08 08:21:27.124874 mef 4661 R rec 1cf1eda3-15e5-49fb-aea3-e6becc76b930 -2023-07-08 08:21:27.198585 2023-07-08 08:21:27.198598 mef 4662 R rec f72a7fbd-6bac-43cc-b534-78d08a1f495d -2023-07-08 08:21:27.292098 2023-07-08 08:21:27.292113 mef 4663 R rec 1b5fa7c3-e859-4258-86d8-822784d82496 -2023-07-08 08:21:27.382261 2023-07-08 08:21:27.382266 mef 4664 R rec 0b602e14-9bd2-4636-9564-a0dfe7185872 -2023-07-08 08:21:27.45451 2023-07-08 08:21:27.454521 mef 4665 R rec e6b1b6f8-cc67-45e3-ac48-f86fb57f5b9e -2023-07-08 08:21:27.535925 2023-07-08 08:21:27.53593 mef 4666 R rec 214a25aa-00e4-4403-a672-3b455e7c9f65 -2023-07-08 08:21:27.620709 2023-07-08 08:21:27.62072 mef 4667 R rec 49a39f79-28d9-4ced-9caa-89c4e0a13670 -2023-07-08 08:21:27.705186 2023-07-08 08:21:27.70519 mef 4668 R rec 2ad1eebc-3a57-4d29-95cb-f905c14969cf -2023-07-08 08:21:27.812155 2023-07-08 08:21:27.812164 mef 4669 R rec de203f21-809f-41cd-9e81-e414b5bd59ba -2023-07-08 08:21:27.914884 2023-07-08 08:21:27.914896 mef 4670 R rec a3005206-8158-4428-b593-a8ba760e57ab -2023-07-08 08:21:28.016403 2023-07-08 08:21:28.016413 mef 4671 R rec f9bfb41a-7c34-4c1e-9e53-5cb92731e05a -2023-07-08 08:21:28.121454 2023-07-08 08:21:28.121465 mef 4672 R rec d255bbd5-48f5-4817-8cce-f83aee202db3 -2023-07-08 08:21:28.223164 2023-07-08 08:21:28.223175 mef 4673 R rec 120b3830-dfa5-4545-9195-82b45a2cc523 -2023-07-08 08:21:28.305711 2023-07-08 08:21:28.305721 mef 4674 R rec d9551592-9aba-4c81-85d1-e1880c0bbe14 -2023-07-08 08:21:28.500549 2023-07-08 08:21:28.500562 mef 4675 R rec 6b2b9d12-b5fc-401f-8d53-6a4cdcc2b49a -2023-07-08 08:21:28.57106 2023-07-08 08:21:28.571064 mef 4676 R rec 2953dea3-b270-4a46-bd88-dd206dd19481 -2023-07-08 08:21:28.643543 2023-07-08 08:21:28.643557 mef 4677 R rec cdb456d3-ed30-451a-8df2-5e0d79730e08 -2023-07-08 08:21:28.730733 2023-07-08 08:21:28.730738 mef 4678 R rec 8043edd4-1644-47b9-8d56-c458a75d5db0 -2023-07-08 08:21:28.815372 2023-07-08 08:21:28.815385 mef 4679 R rec e1bc1bca-3bd6-4a98-9c6d-df0483b539f8 -2023-07-08 08:21:28.906558 2023-07-08 08:21:28.906575 mef 4680 R rec d5f24a3a-00a0-4d9c-a1a2-42843fcc14c6 -2023-07-08 08:21:28.991282 2023-07-08 08:21:28.9913 mef 4681 R rec 4ae1cf96-74e5-4371-96e2-6b1c7eecf33f -2023-07-08 08:21:29.068384 2023-07-08 08:21:29.068389 mef 4682 R rec 5a2c5113-f5f6-478e-92de-2308b04a2d1a -2023-07-08 08:21:29.153046 2023-07-08 08:21:29.15306 mef 4683 R rec 4f7b8c65-ce5b-4b10-a50f-9f310e2ab0d2 -2023-07-08 08:21:29.24309 2023-07-08 08:21:29.243103 mef 4684 R rec f366df44-ff93-4238-8e67-096b954d664a -2023-07-08 08:21:29.334569 2023-07-08 08:21:29.334579 mef 4685 R rec f46f3019-ca84-4701-8b18-d01e5d81bbaa -2023-07-08 08:21:29.423645 2023-07-08 08:21:29.42365 mef 4686 R rec b6877889-a480-490f-90e9-6379f722cbd6 -2023-07-08 08:21:29.513223 2023-07-08 08:21:29.513235 mef 4687 R rec ae9c48cd-eb14-4afc-8d8f-bdc1f53bfa69 -2023-07-08 08:21:29.599048 2023-07-08 08:21:29.599058 mef 4688 R rec 319c75ee-d241-4fca-97aa-ebfb0a5d6cc2 -2023-07-08 08:21:29.682485 2023-07-08 08:21:29.68249 mef 4689 R rec c0b6ace8-cac9-4613-b399-7ce822ea8284 -2023-07-08 08:21:29.749424 2023-07-08 08:21:29.749433 mef 4690 R rec 2d6654b0-c86c-49d6-a236-d64e779cd829 -2023-07-08 08:21:29.846726 2023-07-08 08:21:29.846736 mef 4691 R rec 9fa22cce-c245-4881-9a69-2d23300e3cbd -2023-07-08 08:21:30.029329 2023-07-08 08:21:30.029334 mef 4692 R rec 7ac9482d-909d-4cc2-8858-e5696e2b1e89 -2023-07-08 08:21:30.103874 2023-07-08 08:21:30.103877 mef 4693 R rec 8523e592-35f3-4984-b3b1-30b82baa9046 -2023-07-08 08:21:30.191752 2023-07-08 08:21:30.191762 mef 4694 R rec 0cce10ed-1c79-4b13-ba20-e02a4b366799 -2023-07-08 08:21:30.274495 2023-07-08 08:21:30.274506 mef 4695 R rec 64c1f0eb-c831-4a9b-abdc-302fc20f42aa -2023-07-08 08:21:30.355381 2023-07-08 08:21:30.355386 mef 4696 R rec b02bba3f-9cab-4167-b6c7-afa78aa53d58 -2023-07-08 08:21:30.43661 2023-07-08 08:21:30.436622 mef 4697 R rec f407d7ec-5007-4366-854f-b38eaa19fe65 -2023-07-08 08:21:30.528993 2023-07-08 08:21:30.529003 mef 4698 R rec 05324a62-2515-476e-a005-77c9d6ebc95f -2023-07-08 08:21:30.610988 2023-07-08 08:21:30.610995 mef 4699 R rec a2d557e8-0a29-4fae-9d65-c6af80fa594c -2023-07-08 08:21:30.697059 2023-07-08 08:21:30.697064 mef 4700 R rec 5f90d8e9-6ac5-4dc7-bcd9-71f20f90ebeb -2023-07-08 08:21:30.815367 2023-07-08 08:21:30.815377 mef 4701 R rec 59f0475e-da7c-4dd6-a99b-576faddbe11d -2023-07-08 08:21:30.918641 2023-07-08 08:21:30.918652 mef 4702 R rec f267e10f-2cfc-4c9b-a49f-c90ec64ffa68 -2023-07-08 08:21:31.01846 2023-07-08 08:21:31.018475 mef 4703 R rec 8891a529-6ae2-4815-89ba-ca46601e1424 -2023-07-08 08:21:31.114041 2023-07-08 08:21:31.114051 mef 4704 R rec 4feb620c-6910-4303-9dd0-ebfcb63e3fa5 -2023-07-08 08:21:31.216502 2023-07-08 08:21:31.216515 mef 4705 R rec a9469061-fb1b-4e49-9ceb-2f1069922c62 -2023-07-08 08:21:31.330038 2023-07-08 08:21:31.330055 mef 4706 R rec 9ac2421a-4881-49e4-9290-cb91f89f290d -2023-07-08 08:21:31.600386 2023-07-08 08:21:31.600391 mef 4707 R rec c4d64fe1-87c2-4127-8f14-c06865f07fbe -2023-07-08 08:21:31.690823 2023-07-08 08:21:31.690835 mef 4708 R rec 2ee50e8e-1bc5-4e26-839b-1f119ff5baad -2023-07-08 08:21:31.781528 2023-07-08 08:21:31.781534 mef 4709 R rec 22cc138f-ae7a-47a8-bf75-27b85dcde04c -2023-07-08 08:21:31.85949 2023-07-08 08:21:31.859507 mef 4710 R rec 567b0b4a-896d-4fe1-83fd-bef9657a6e07 -2023-07-08 08:21:31.947946 2023-07-08 08:21:31.947961 mef 4711 R rec 5c16e10a-e6c3-4ab3-81c7-56f824b39b94 -2023-07-08 08:21:32.042044 2023-07-08 08:21:32.042049 mef 4712 R rec 75761961-4115-4deb-ace1-76aa3e383798 -2023-07-08 08:21:32.111087 2023-07-08 08:21:32.111092 mef 4713 R rec a09f54e0-4ffc-4613-a90c-1b19b43b4061 -2023-07-08 08:21:32.195851 2023-07-08 08:21:32.195856 mef 4714 R rec 34032cc5-dab5-4e5c-a25c-51e38eb4954a -2023-07-08 08:21:32.28049 2023-07-08 08:21:32.280503 mef 4715 R rec 919fd4e2-a1c3-45f1-988e-d382d501a710 -2023-07-08 08:21:32.385677 2023-07-08 08:21:32.385688 mef 4716 R rec 37645091-fe68-4c81-a817-2046e3fdd25b -2023-07-08 08:21:32.47959 2023-07-08 08:21:32.479604 mef 4717 R rec 4abbc941-3312-4c52-824f-56b93aa1ce6b -2023-07-08 08:21:32.571769 2023-07-08 08:21:32.571774 mef 4718 R rec 14210ed3-d77b-4e7c-978b-98badd400292 -2023-07-08 08:21:32.657716 2023-07-08 08:21:32.657728 mef 4719 R rec b5968061-c0c9-4476-913d-92d2743b940f -2023-07-08 08:21:32.746309 2023-07-08 08:21:32.74632 mef 4720 R rec cc7fb429-fd95-4f6d-8df5-d937827efa11 -2023-07-08 08:21:32.843699 2023-07-08 08:21:32.843714 mef 4721 R rec 716a2a1e-98b7-4af8-8fc2-4f426f7761d1 -2023-07-08 08:21:32.939444 2023-07-08 08:21:32.939449 mef 4722 R rec e1ce69ea-07d2-420f-bfe5-365f70308ac7 -2023-07-08 08:21:33.018119 2023-07-08 08:21:33.018129 mef 4723 R rec d365848b-caef-4794-b083-c65ad2a7bd7a -2023-07-08 08:21:33.089955 2023-07-08 08:21:33.08996 mef 4724 R rec 793864c8-ef42-4e50-8126-e84effa309bb -2023-07-08 08:21:33.186647 2023-07-08 08:21:33.186656 mef 4725 R rec 5513ba6f-3738-41ca-a388-f1833e3f387d -2023-07-08 08:21:33.282943 2023-07-08 08:21:33.282954 mef 4726 R rec f9f99757-6ee6-4db1-85a0-54a43f8768b9 -2023-07-08 08:21:33.371791 2023-07-08 08:21:33.371803 mef 4727 R rec 5a5bdf48-7cc0-4b92-9fc2-35ef06e2adf2 -2023-07-08 08:21:33.458771 2023-07-08 08:21:33.458787 mef 4728 R rec 99739eb7-fa2d-4b66-80ce-368c05fa65c1 -2023-07-08 08:21:33.542282 2023-07-08 08:21:33.542288 mef 4729 R rec d98634d9-1873-40cd-b9c1-0fa2a14c46eb -2023-07-08 08:21:33.622936 2023-07-08 08:21:33.622948 mef 4730 R rec f93512d5-0136-467d-83f4-d926b9302319 -2023-07-08 08:21:33.709419 2023-07-08 08:21:33.709428 mef 4731 R rec 026b075f-8de5-405f-a185-db87cea5e742 -2023-07-08 08:21:33.790511 2023-07-08 08:21:33.790515 mef 4732 R rec f4ba8d32-aa10-4619-8360-1e229f6269b6 -2023-07-08 08:21:33.877232 2023-07-08 08:21:33.877242 mef 4733 R rec 014342cd-a9ff-459d-b3b9-f1a2c6d1e28e -2023-07-08 08:21:33.959179 2023-07-08 08:21:33.95919 mef 4734 R rec 84b181c0-1db7-42ff-9a24-48603e1afae4 -2023-07-08 08:21:34.046187 2023-07-08 08:21:34.046191 mef 4735 R rec 4c9ba032-8c9c-4214-9ae3-d67ed9b43d57 -2023-07-08 08:21:34.129188 2023-07-08 08:21:34.129199 mef 4736 R rec f86c09c5-d1a3-4a78-8170-833e9b246b55 -2023-07-08 08:21:34.226315 2023-07-08 08:21:34.226329 mef 4737 R rec ceb92b70-4536-4881-9b85-41ea9a4237d0 -2023-07-08 08:21:34.319138 2023-07-08 08:21:34.319152 mef 4738 R rec 36e46438-9b43-464d-ac90-c05e8ec8fcf9 -2023-07-08 08:21:34.403173 2023-07-08 08:21:34.403178 mef 4739 R rec 63c8d0b9-615d-4428-b4a5-b9bd7e5b7956 -2023-07-08 08:21:34.494024 2023-07-08 08:21:34.494037 mef 4740 R rec 58fcad81-28eb-4e44-9d36-90abb052ff5b -2023-07-08 08:21:34.579943 2023-07-08 08:21:34.579946 mef 4741 R rec bf0d578d-5e0d-46e8-878b-c7fc5f4ec767 -2023-07-08 08:21:34.64959 2023-07-08 08:21:34.649597 mef 4742 R rec 365835f0-4ae5-4ec2-befa-a337f75a5bbf -2023-07-08 08:21:34.718814 2023-07-08 08:21:34.718822 mef 4743 R rec 2fe31dfc-4b6a-4471-aeb6-bf497dff82ab -2023-07-08 08:21:34.810865 2023-07-08 08:21:34.810879 mef 4744 R rec 0a670583-5ac7-43e0-95c6-364a403150f7 -2023-07-08 08:21:34.899549 2023-07-08 08:21:34.899559 mef 4745 R rec 221b26d3-c673-4f7f-8f0f-7f5b13419a73 -2023-07-08 08:21:34.996855 2023-07-08 08:21:34.996867 mef 4746 R rec d1ce2742-0c87-4a8b-a8c4-554aceee8650 -2023-07-08 08:21:35.159805 2023-07-08 08:21:35.15982 mef 4747 R rec a2effee8-82f0-45c7-943e-0f9e5eae9a66 -2023-07-08 08:21:35.245631 2023-07-08 08:21:35.245643 mef 4748 R rec 3fe9e045-26b6-4555-9d17-a55ec11f5ee3 -2023-07-08 08:21:35.336618 2023-07-08 08:21:35.336631 mef 4749 R rec 85c61943-9422-413f-8aa4-435e423c1bf7 -2023-07-08 08:21:35.425317 2023-07-08 08:21:35.425328 mef 4750 R rec 74e04da8-55a7-457c-9ebe-7a279ac09a25 -2023-07-08 08:21:35.5084 2023-07-08 08:21:35.50841 mef 4751 R rec 195d804b-42dc-4c31-a168-251d75f8bc6a -2023-07-08 08:21:35.596699 2023-07-08 08:21:35.596713 mef 4752 R rec b88cd541-40f0-42cb-a20a-847a199be3e4 -2023-07-08 08:21:35.695862 2023-07-08 08:21:35.695881 mef 4753 R rec e8ea32b5-8ddd-4633-a690-a2701888cd0e -2023-07-08 08:21:35.795398 2023-07-08 08:21:35.795412 mef 4754 R rec be3933ab-db87-4f4c-9fe7-ba67262b5c16 -2023-07-08 08:21:35.877329 2023-07-08 08:21:35.877335 mef 4755 R rec eff58860-2a9f-4967-bcef-671e398b2ef5 -2023-07-08 08:21:35.962735 2023-07-08 08:21:35.962747 mef 4756 R rec 8bdd8483-506f-4064-b52f-f80df7a316d0 -2023-07-08 08:21:36.05067 2023-07-08 08:21:36.050676 mef 4757 R rec 70b40ed2-c928-446d-99fb-a93e04ea8d26 -2023-07-08 08:21:36.152137 2023-07-08 08:21:36.152144 mef 4758 R rec 47297357-65da-4568-8707-702e4d1aa3d1 -2023-07-08 08:21:36.245177 2023-07-08 08:21:36.245182 mef 4759 R rec 6fa760f5-a1f8-4d31-a679-9f7b6528a0f5 -2023-07-08 08:21:36.344662 2023-07-08 08:21:36.344675 mef 4760 R rec 051cc832-40a1-4d79-9f8b-a00359f174d1 -2023-07-08 08:21:36.454546 2023-07-08 08:21:36.454557 mef 4761 R rec a5da1d8d-c9e7-44ad-8a89-7eb24f983808 -2023-07-08 08:21:36.547489 2023-07-08 08:21:36.547494 mef 4762 R rec 89ff1987-e003-47d8-8d8d-59e4e5539b0d -2023-07-08 08:21:36.633416 2023-07-08 08:21:36.633427 mef 4763 R rec 2cedf628-c863-417a-b781-6392847b12b7 -2023-07-08 08:21:36.730539 2023-07-08 08:21:36.730549 mef 4764 R rec da9827ae-360d-4c60-851e-3c653cff7147 -2023-07-08 08:21:36.819025 2023-07-08 08:21:36.819034 mef 4765 R rec 956c724c-a0e6-471c-90a2-98d0d5b2000c -2023-07-08 08:21:36.898513 2023-07-08 08:21:36.89852 mef 4766 R rec 7ae915d2-653d-4d1e-a13c-d86819349671 -2023-07-08 08:21:36.989011 2023-07-08 08:21:36.989021 mef 4767 R rec f611ab7a-51ba-478e-9d1a-cff335e11558 -2023-07-08 08:21:37.065344 2023-07-08 08:21:37.065348 mef 4768 R rec 58f771fd-c2ec-4afb-be01-e3b9e63ea04d -2023-07-08 08:21:37.13281 2023-07-08 08:21:37.132814 mef 4769 R rec a87b7fc5-bda0-4d67-ad5a-8c3a8345d4fa -2023-07-08 08:21:37.230473 2023-07-08 08:21:37.23049 mef 4770 R rec 22e59906-dbb4-4bde-b78c-034263c99519 -2023-07-08 08:21:37.327256 2023-07-08 08:21:37.327267 mef 4771 R rec f0e0bb69-1094-4ac1-9122-41de46735a1a -2023-07-08 08:21:37.420829 2023-07-08 08:21:37.420843 mef 4772 R rec a7434dc7-77b6-4a2f-b649-4795429f402c -2023-07-08 08:21:37.536111 2023-07-08 08:21:37.536121 mef 4773 R rec d69d61bd-09c0-4ba0-bedd-04477a577cf4 -2023-07-08 08:21:37.621046 2023-07-08 08:21:37.621058 mef 4774 R rec 2a69a1f7-e539-4db9-9c0d-d1020c5d5d9c -2023-07-08 08:21:37.7122 2023-07-08 08:21:37.712212 mef 4775 R rec 02d6fa8d-d764-48ed-b6c6-3e20320ad6c2 -2023-07-08 08:21:37.816789 2023-07-08 08:21:37.816805 mef 4776 R rec 5d7032d1-4181-4cb8-b630-2267ab466029 -2023-07-08 08:21:37.914986 2023-07-08 08:21:37.914999 mef 4777 R rec c4a3f3ad-bc4d-4f1e-a6b4-befffba59e6b -2023-07-08 08:21:38.005834 2023-07-08 08:21:38.005845 mef 4778 R rec 32f8f94f-5956-4c13-84fa-4451bcdbb1d9 -2023-07-08 08:21:38.104649 2023-07-08 08:21:38.104654 mef 4779 R rec fca6204e-2551-4e6a-aaa5-a7526c919a6a -2023-07-08 08:21:38.316729 2023-07-08 08:21:38.316742 mef 4780 R rec 82c45793-d966-456a-b3a4-caf6bfd4556a -2023-07-08 08:21:38.407109 2023-07-08 08:21:38.407113 mef 4781 R rec 10ebabc9-9b87-4602-8fef-17289bb02030 -2023-07-08 08:21:38.496468 2023-07-08 08:21:38.496481 mef 4782 R rec d622741c-8d65-4c26-a4a9-bb49e2b2a867 -2023-07-08 08:21:38.593362 2023-07-08 08:21:38.593379 mef 4783 R rec c1053672-a964-4153-a465-0c138eb04b20 -2023-07-08 08:21:38.681858 2023-07-08 08:21:38.681872 mef 4784 R rec 9ce4208d-b0f7-469d-a76d-b7ff960ede99 -2023-07-08 08:21:38.79011 2023-07-08 08:21:38.790119 mef 4785 R rec 97548dcc-2810-4b3a-9d02-e85f823612a3 -2023-07-08 08:21:38.89356 2023-07-08 08:21:38.893573 mef 4786 R rec fe7a9a5c-0813-4e96-a750-9fd0998f6471 -2023-07-08 08:21:38.98222 2023-07-08 08:21:38.982231 mef 4787 R rec ef628234-c6c8-442d-bf4d-5d631a6d4058 -2023-07-08 08:21:39.061532 2023-07-08 08:21:39.061536 mef 4788 R rec 60f85faa-50ae-4122-8616-3e1dc6c53718 -2023-07-08 08:21:39.132254 2023-07-08 08:21:39.132258 mef 4789 R rec 317b657e-e5b3-4306-8aca-3f20d0b05af5 -2023-07-08 08:21:39.221987 2023-07-08 08:21:39.222 mef 4790 R rec 1fc0ce0e-813c-4ee9-bf22-ddf4b8d677e9 -2023-07-08 08:21:39.316619 2023-07-08 08:21:39.316633 mef 4791 R rec 7c90002a-0b43-4c38-9082-819a7b6eadbf -2023-07-08 08:21:39.430022 2023-07-08 08:21:39.430034 mef 4792 R rec 73fbcd49-3682-4012-a3ba-355ac95f3482 -2023-07-08 08:21:39.538759 2023-07-08 08:21:39.538769 mef 4793 R rec ab7997f9-a3af-459a-be22-8b33995a5b4d -2023-07-08 08:21:39.636809 2023-07-08 08:21:39.636819 mef 4794 R rec 0bc794ba-a6c1-4577-934e-41b065ade86a -2023-07-08 08:21:39.732437 2023-07-08 08:21:39.732449 mef 4795 R rec 6630ce77-18d2-4eda-b848-e28814d6af6a -2023-07-08 08:21:39.825663 2023-07-08 08:21:39.825678 mef 4796 R rec fb7993fe-a032-4a01-947e-d06d8300871f -2023-07-08 08:21:39.913773 2023-07-08 08:21:39.913778 mef 4797 R rec b04d5791-8e82-4b71-8019-f49d6b7e6757 -2023-07-08 08:21:40.022231 2023-07-08 08:21:40.022237 mef 4798 R rec 84a69b28-812e-43a4-b002-0450595b3fda -2023-07-08 08:21:40.096742 2023-07-08 08:21:40.096747 mef 4799 R rec c6cb84f1-9547-4499-b1c7-94623bd6724d -2023-07-08 08:21:40.304375 2023-07-08 08:21:40.304385 mef 4800 R rec 7156e321-a261-43d4-886b-db74e30028c5 -2023-07-08 08:21:40.393206 2023-07-08 08:21:40.393216 mef 4801 R rec c050353f-3f6d-4664-bfbc-12ff8b7e1541 -2023-07-08 08:21:40.493277 2023-07-08 08:21:40.493287 mef 4802 R rec 0b34fdf5-a3c1-41a7-bced-aa34900db7f1 -2023-07-08 08:21:40.594636 2023-07-08 08:21:40.59465 mef 4803 R rec b71b8cee-59c3-481a-96c7-f706ad9b6786 -2023-07-08 08:21:40.695942 2023-07-08 08:21:40.695952 mef 4804 R rec 59e31678-6ac5-4a74-bfb2-00651cea4c81 -2023-07-08 08:21:40.786448 2023-07-08 08:21:40.786453 mef 4805 R rec c0aaf242-aab1-4ae9-9801-7c9cc0b7a074 -2023-07-08 08:21:40.888366 2023-07-08 08:21:40.888377 mef 4806 R rec 55d850e9-e431-4b89-8c50-f4ed01e351cc -2023-07-08 08:21:40.986711 2023-07-08 08:21:40.98672 mef 4807 R rec 52c9fa60-f1b6-4eab-ac3f-34b90b0f23a6 -2023-07-08 08:21:41.072074 2023-07-08 08:21:41.072078 mef 4808 R rec f70464ac-53e4-459a-af0b-69389edb08cf -2023-07-08 08:21:41.17332 2023-07-08 08:21:41.173331 mef 4809 R rec cd1f1ffd-d689-4813-9459-f5847c3cdf88 -2023-07-08 08:21:41.26977 2023-07-08 08:21:41.269779 mef 4810 R rec 2bd905e8-e9ba-4d11-8881-71a74f1100b3 -2023-07-08 08:21:41.349956 2023-07-08 08:21:41.349961 mef 4811 R rec 3a6cd6aa-49ab-4ae4-b6aa-dbea01a6005a -2023-07-08 08:21:41.433088 2023-07-08 08:21:41.433093 mef 4812 R rec 89eb856b-78b7-4186-81ed-0f0a941754b6 -2023-07-08 08:21:41.540216 2023-07-08 08:21:41.540239 mef 4813 R rec feb33beb-053a-4cf7-9251-0929be26ebba -2023-07-08 08:21:41.623036 2023-07-08 08:21:41.62305 mef 4814 R rec 5ca683a7-e478-4085-a697-abe337acce08 -2023-07-08 08:21:41.708723 2023-07-08 08:21:41.708732 mef 4815 R rec 930505ca-6b73-4b59-b343-05435080aee1 -2023-07-08 08:21:41.796791 2023-07-08 08:21:41.796802 mef 4816 R rec 753a1903-68ef-495d-b771-72a309b67d2d -2023-07-08 08:21:41.889522 2023-07-08 08:21:41.889526 mef 4817 R rec f91e4a26-bd3a-4317-8cbb-19ad17c36cc8 -2023-07-08 08:21:41.996341 2023-07-08 08:21:41.996354 mef 4818 R rec 98461a96-e397-44f8-b0b7-e5f6ade81515 -2023-07-08 08:21:42.08781 2023-07-08 08:21:42.087814 mef 4819 R rec 526b35a6-dd51-4ee8-af43-8abbd41cd679 -2023-07-08 08:21:42.19233 2023-07-08 08:21:42.19234 mef 4820 R rec 9af8ab9c-ef7e-4da0-ad28-b98598ffa6cd -2023-07-08 08:21:42.295492 2023-07-08 08:21:42.295498 mef 4821 R rec d8fcbe9e-09a5-4d2b-9189-82617c995afa -2023-07-08 08:21:42.421959 2023-07-08 08:21:42.421972 mef 4822 R rec b15cf988-5493-44d6-b044-d52be9b0f2f3 -2023-07-08 08:21:42.508127 2023-07-08 08:21:42.508137 mef 4823 R rec 980a05a0-0ced-4982-a202-09c0661139cf -2023-07-08 08:21:42.587952 2023-07-08 08:21:42.587957 mef 4824 R rec c405d0ef-1ac6-4265-9057-69c700034deb -2023-07-08 08:21:42.66548 2023-07-08 08:21:42.665491 mef 4825 R rec e62d3fe0-cb6e-416a-bfab-573cd62f69a5 -2023-07-08 08:21:42.760142 2023-07-08 08:21:42.760146 mef 4826 R rec b9b9e5ca-98b9-4af1-8997-6dddb58a756a -2023-07-08 08:21:42.86367 2023-07-08 08:21:42.863685 mef 4827 R rec 5eabf746-ee9a-4d01-b495-2159f3c9eb13 -2023-07-08 08:21:42.969686 2023-07-08 08:21:42.969701 mef 4828 R rec b5f07ba2-a6be-41fe-aae1-7c21c2d373ea -2023-07-08 08:21:43.059334 2023-07-08 08:21:43.059341 mef 4829 R rec 6ef5a2f1-dd76-4d4e-869a-fb3813d35c82 -2023-07-08 08:21:43.150571 2023-07-08 08:21:43.15058 mef 4830 R rec 370f78a9-aabf-41f9-8e5e-412d980148f3 -2023-07-08 08:21:43.236239 2023-07-08 08:21:43.236242 mef 4831 R rec be851476-366a-4826-8ce0-9366a1f73d6c -2023-07-08 08:21:43.321542 2023-07-08 08:21:43.321552 mef 4832 R rec 5cf5a765-a631-4a33-9b35-31af80a59eca -2023-07-08 08:21:43.432765 2023-07-08 08:21:43.432775 mef 4833 R rec 13281496-72f4-4fee-9632-5865d4183fa1 -2023-07-08 08:21:43.525249 2023-07-08 08:21:43.525264 mef 4834 R rec 4daad31a-4f68-4131-9b21-17e9c9a8f140 -2023-07-08 08:21:43.610283 2023-07-08 08:21:43.610297 mef 4835 R rec 6c5d8747-c530-4b77-9161-88657f4013cf -2023-07-08 08:21:43.693596 2023-07-08 08:21:43.693601 mef 4836 R rec a086d971-fc67-40b8-bcd3-e655aa0f5a40 -2023-07-08 08:21:43.767036 2023-07-08 08:21:43.767049 mef 4837 R rec 10bb1ba4-b58d-414e-b472-0ae6f33138f4 -2023-07-08 08:21:43.861176 2023-07-08 08:21:43.861189 mef 4838 R rec 35ccb1ae-adf0-40a3-b89f-4a1a26f0e094 -2023-07-08 08:21:43.968409 2023-07-08 08:21:43.968418 mef 4839 R rec ea05a2ae-3ed1-499e-9073-c19ea952f0e0 -2023-07-08 08:21:44.065944 2023-07-08 08:21:44.065948 mef 4840 R rec 4e3f5ff3-5806-44d7-9997-64b8ee5b4dd8 -2023-07-08 08:21:44.150058 2023-07-08 08:21:44.150071 mef 4841 R rec d553889f-3e09-40ba-b385-58169a06233f -2023-07-08 08:21:44.239154 2023-07-08 08:21:44.239164 mef 4842 R rec 51d12666-34b5-4c2d-852f-6b916ecf174b -2023-07-08 08:21:44.329325 2023-07-08 08:21:44.329329 mef 4843 R rec 785acc71-d08a-4258-831f-4647300caa36 -2023-07-08 08:21:44.41514 2023-07-08 08:21:44.41515 mef 4844 R rec 3eb5802f-7ca8-4f99-8699-1507fc915166 -2023-07-08 08:21:44.502068 2023-07-08 08:21:44.502081 mef 4845 R rec f657204c-3800-43df-a380-e3aef2d537fc -2023-07-08 08:21:44.586308 2023-07-08 08:21:44.586313 mef 4846 R rec 9dd11482-b30f-4716-8203-dc125e94b4ca -2023-07-08 08:21:44.654171 2023-07-08 08:21:44.654176 mef 4847 R rec ac3642a8-787a-4cf1-af2d-44304149b254 -2023-07-08 08:21:44.724772 2023-07-08 08:21:44.724776 mef 4848 R rec c49a18e5-e28e-4375-a39e-74d22368260e -2023-07-08 08:21:44.809442 2023-07-08 08:21:44.809455 mef 4849 R rec d43dfe70-0cb1-423c-8a5f-744244d7f475 -2023-07-08 08:21:44.906848 2023-07-08 08:21:44.906852 mef 4850 R rec 5fe69987-b686-4c9c-8752-d3e5e004248b -2023-07-08 08:21:45.002766 2023-07-08 08:21:45.002776 mef 4851 R rec f2d48c65-5f44-4a30-acc2-cae38751e6aa -2023-07-08 08:21:45.083734 2023-07-08 08:21:45.083741 mef 4852 R rec 40ea0696-c6a7-4c82-b11a-79ecf8ed13f4 -2023-07-08 08:21:45.167171 2023-07-08 08:21:45.167181 mef 4853 R rec 2211154d-834d-4e10-bc38-e35e4c78719a -2023-07-08 08:21:45.267467 2023-07-08 08:21:45.267478 mef 4854 R rec 7d3259f7-1d45-46c6-bdf2-c53954d8c34a -2023-07-08 08:21:45.357128 2023-07-08 08:21:45.357138 mef 4855 R rec 365c1049-f7f1-4b59-b1de-72d83934f125 -2023-07-08 08:21:45.462908 2023-07-08 08:21:45.462923 mef 4856 R rec ef1ca489-3925-4f5f-a020-f6adab81c2a0 -2023-07-08 08:21:45.572852 2023-07-08 08:21:45.572857 mef 4857 R rec 75b1e838-8d79-4967-957d-d9936b3e6be1 -2023-07-08 08:21:45.655033 2023-07-08 08:21:45.655037 mef 4858 R rec a90718f1-46dd-4059-97b5-8b9137eef8c8 -2023-07-08 08:21:45.756904 2023-07-08 08:21:45.756914 mef 4859 R rec c4649670-f2fb-4e57-9c3d-ed92087f7d36 -2023-07-08 08:21:45.850395 2023-07-08 08:21:45.850407 mef 4860 R rec 00d752a8-1241-4900-ade4-7feefd4ff8a0 -2023-07-08 08:21:45.948038 2023-07-08 08:21:45.948042 mef 4861 R rec ffebabe6-5468-495a-ad88-d396ed87d3ed -2023-07-08 08:21:46.037177 2023-07-08 08:21:46.037194 mef 4862 R rec ee1df41b-8aa6-467f-9c7a-1760591b366f -2023-07-08 08:21:46.133074 2023-07-08 08:21:46.133084 mef 4863 R rec ccb7401d-8f6a-4ae0-b4b1-e46c4b637939 -2023-07-08 08:21:46.235035 2023-07-08 08:21:46.235039 mef 4864 R rec d6347a9a-e42b-412f-8bcb-4f48a567c2c1 -2023-07-08 08:21:46.33185 2023-07-08 08:21:46.331861 mef 4865 R rec cc21adea-1270-4806-82da-0de52ab023be -2023-07-08 08:21:46.435801 2023-07-08 08:21:46.43581 mef 4866 R rec d4eb66df-4ad6-4f6a-b125-f023cab13d07 -2023-07-08 08:21:46.533538 2023-07-08 08:21:46.533543 mef 4867 R rec 64e5ac07-9668-4e49-8d1e-9e82079b47de -2023-07-08 08:21:46.610364 2023-07-08 08:21:46.610376 mef 4868 R rec 8c39e616-99b2-4a24-886c-f81d0c143213 -2023-07-08 08:21:46.689403 2023-07-08 08:21:46.689414 mef 4869 R rec 602ab61a-9ab5-4fcc-ac66-6ce741782068 -2023-07-08 08:21:46.785416 2023-07-08 08:21:46.785428 mef 4870 R rec d0a29702-a40d-4081-912d-8ac27d68d3ae -2023-07-08 08:21:46.881099 2023-07-08 08:21:46.881113 mef 4871 R rec 2f39e36f-d2a7-4b08-a793-580a3c4c3994 -2023-07-08 08:21:46.960413 2023-07-08 08:21:46.960423 mef 4872 R rec fb9b8a2c-6d76-40ac-b242-d4fc35739f9e -2023-07-08 08:21:47.050657 2023-07-08 08:21:47.05067 mef 4873 R rec 8cd2a988-4939-418c-a05d-1b083a55f649 -2023-07-08 08:21:47.13864 2023-07-08 08:21:47.13865 mef 4874 R rec 3c1912ea-6b45-4a76-b2ab-f5eab4f2178f -2023-07-08 08:21:47.226093 2023-07-08 08:21:47.226103 mef 4875 R rec 098529b7-1ad7-43cb-b252-781df209aba4 -2023-07-08 08:21:47.314337 2023-07-08 08:21:47.314353 mef 4876 R rec 482967f5-a39b-40c8-bae7-fc29646d8cb5 -2023-07-08 08:21:47.413347 2023-07-08 08:21:47.413358 mef 4877 R rec 85cde1d8-9bc1-43c6-8dad-1a6e02d78660 -2023-07-08 08:21:47.504391 2023-07-08 08:21:47.5044 mef 4878 R rec 4fe8c719-1f13-431b-aee8-441ab9bc2115 -2023-07-08 08:21:47.600128 2023-07-08 08:21:47.600132 mef 4879 R rec 71d835d9-c130-4ce4-aad3-13215c84e68d -2023-07-08 08:21:47.668328 2023-07-08 08:21:47.668333 mef 4880 R rec 933ac7ca-b1b2-45b0-8c0e-179dd1cd1f92 -2023-07-08 08:21:47.752974 2023-07-08 08:21:47.752986 mef 4881 R rec 57d94e09-cabc-4a75-95b5-1da0ea8694b2 -2023-07-08 08:21:47.843598 2023-07-08 08:21:47.843609 mef 4882 R rec 9cc2fc57-4742-47d9-903f-de2c6dfb3d28 -2023-07-08 08:21:47.922992 2023-07-08 08:21:47.923004 mef 4883 R rec 95bb5d42-5457-46e7-8ee6-c2b5cdac3e54 -2023-07-08 08:21:48.007009 2023-07-08 08:21:48.00702 mef 4884 R rec ff78e773-0a57-472c-b780-c175f15ebaea -2023-07-08 08:21:48.086997 2023-07-08 08:21:48.087002 mef 4885 R rec 89cb3381-460c-4d44-8752-75edb629d8a0 -2023-07-08 08:21:48.174937 2023-07-08 08:21:48.174948 mef 4886 R rec e1e72c59-8ed9-40f9-91ce-320834c8c0a4 -2023-07-08 08:21:48.263002 2023-07-08 08:21:48.263014 mef 4887 R rec f3bda74d-9d57-4d6d-ae3d-f6da68ea4982 -2023-07-08 08:21:48.365677 2023-07-08 08:21:48.365694 mef 4888 R rec 0aa6d345-7555-4698-a1e6-3a8fa4fff033 -2023-07-08 08:21:48.459229 2023-07-08 08:21:48.459239 mef 4889 R rec 48a89443-0205-499a-a978-16805f95df78 -2023-07-08 08:21:48.537446 2023-07-08 08:21:48.537451 mef 4890 R rec b9e693fe-8edb-4e91-98b7-e8610bea02b0 -2023-07-08 08:21:48.609164 2023-07-08 08:21:48.609167 mef 4891 R rec 18ff21d1-35ff-4563-a767-64229faa5a8c -2023-07-08 08:21:48.680088 2023-07-08 08:21:48.680101 mef 4892 R rec df428bf9-df1e-47d5-ba31-2b77a3ab49a9 -2023-07-08 08:21:48.780465 2023-07-08 08:21:48.780474 mef 4893 R rec 608cf3ff-9d6c-4a73-85c6-e74ff999b38c -2023-07-08 08:21:48.860609 2023-07-08 08:21:48.860613 mef 4894 R rec 734827bc-0285-4fad-9a5c-6d9870fb51b1 -2023-07-08 08:21:48.948695 2023-07-08 08:21:48.948707 mef 4895 R rec 315f4e8e-66bf-46d0-83ae-f7c29e8c15cc -2023-07-08 08:21:49.043709 2023-07-08 08:21:49.043725 mef 4896 R rec 1d8c5b4c-8baa-494f-992f-f1c8d091ac20 -2023-07-08 08:21:49.118925 2023-07-08 08:21:49.11893 mef 4897 R rec f2fa6edd-23f1-4aa1-8b91-1c6c3a0e3248 -2023-07-08 08:21:49.205607 2023-07-08 08:21:49.205619 mef 4898 R rec 5e407dfb-25ee-4a26-9a13-4507091cbf25 -2023-07-08 08:21:49.294564 2023-07-08 08:21:49.294576 mef 4899 R rec 81b1521f-f6c4-4492-a1d7-5cb27e617c49 -2023-07-08 08:21:49.381573 2023-07-08 08:21:49.381578 mef 4900 R rec 2a0083ec-5599-4312-bb5e-7b13c75467ec -2023-07-08 08:21:49.465073 2023-07-08 08:21:49.465083 mef 4901 R rec f994509c-bdbe-4d54-9139-6a68bcecbf3d -2023-07-08 08:21:49.544264 2023-07-08 08:21:49.544272 mef 4902 R rec fedf0e49-8db6-4d2e-a1b9-2f431bc87c72 -2023-07-08 08:21:49.616231 2023-07-08 08:21:49.616234 mef 4903 R rec b155322e-200f-4222-9cf5-ad2ce99e586e -2023-07-08 08:21:49.698793 2023-07-08 08:21:49.698807 mef 4904 R rec 63e72dd2-53e7-4795-9808-637052f15ad7 -2023-07-08 08:21:49.783455 2023-07-08 08:21:49.783466 mef 4905 R rec 894ad6e6-0da5-4f8d-b468-d1b88522f2af -2023-07-08 08:21:49.861476 2023-07-08 08:21:49.861489 mef 4906 R rec 418b92b8-cee7-45a1-9d7c-65aa61635ec1 -2023-07-08 08:21:49.945777 2023-07-08 08:21:49.945788 mef 4907 R rec 06d7d719-2979-4b3a-8e1e-a1135c670e1e -2023-07-08 08:21:50.034546 2023-07-08 08:21:50.03455 mef 4908 R rec ce66132a-5858-492b-9ef4-115f714bdb3e -2023-07-08 08:21:50.116391 2023-07-08 08:21:50.116398 mef 4909 R rec 383c06d3-7592-4524-b038-79e3c1a85228 -2023-07-08 08:21:50.197792 2023-07-08 08:21:50.197803 mef 4910 R rec 065e86b5-85a6-49e4-ba92-c82d335be3fb -2023-07-08 08:21:50.287569 2023-07-08 08:21:50.287579 mef 4911 R rec 6efc3978-4121-4dad-bd11-3c6d5fb91876 -2023-07-08 08:21:50.362124 2023-07-08 08:21:50.362132 mef 4912 R rec c6d557c4-71fb-40df-97ce-e001c7d9f9f3 -2023-07-08 08:21:50.450826 2023-07-08 08:21:50.450836 mef 4913 R rec 4ec2531f-b588-47bd-bde5-1e087ef16c6a -2023-07-08 08:21:50.537702 2023-07-08 08:21:50.537712 mef 4914 R rec 9b1b30a6-7a3b-4e08-9718-d31678debc32 -2023-07-08 08:21:50.621946 2023-07-08 08:21:50.62195 mef 4915 R rec d684d102-196f-49c8-be51-82a3e3465420 -2023-07-08 08:21:50.708112 2023-07-08 08:21:50.708129 mef 4916 R rec 6ebfe147-3d99-4493-8c15-9d37eb976c22 -2023-07-08 08:21:50.814435 2023-07-08 08:21:50.814447 mef 4917 R rec 59bb1474-0711-4999-98eb-25ebcaf3c9ea -2023-07-08 08:21:50.906636 2023-07-08 08:21:50.906641 mef 4918 R rec 4dc22c94-219e-4fa7-93c1-dc5d26ac2702 -2023-07-08 08:21:51.008871 2023-07-08 08:21:51.008881 mef 4919 R rec eb79ce33-d44e-4e7c-b321-417b316f92e7 -2023-07-08 08:21:51.098173 2023-07-08 08:21:51.098178 mef 4920 R rec 40651c41-8ac5-4113-9a9d-4334625e2d94 -2023-07-08 08:21:51.18958 2023-07-08 08:21:51.18959 mef 4921 R rec aa670763-8e69-4e52-9d23-a6caca5b434a -2023-07-08 08:21:51.293316 2023-07-08 08:21:51.293327 mef 4922 R rec 7ba3caf6-9028-4039-a3db-2be4981e5557 -2023-07-08 08:21:51.397726 2023-07-08 08:21:51.397737 mef 4923 R rec a49eeefe-c13c-42c9-af78-31572788a389 -2023-07-08 08:21:51.500931 2023-07-08 08:21:51.500943 mef 4924 R rec 565c2c2c-31ee-4e01-976f-f242c03d0315 -2023-07-08 08:21:51.649502 2023-07-08 08:21:51.649507 mef 4925 R rec 8cc07746-2676-4cb9-8a67-ff92c3b5429d -2023-07-08 08:21:51.725193 2023-07-08 08:21:51.725199 mef 4926 R rec 434ef0d4-fc4f-4912-a2fe-0f6eef5a66b8 -2023-07-08 08:21:51.795301 2023-07-08 08:21:51.795306 mef 4927 R rec 9f32e17d-0aa5-4c16-a914-e598ea334f5b -2023-07-08 08:21:51.874424 2023-07-08 08:21:51.874429 mef 4928 R rec c6595dcb-5484-46cb-b1ea-d6d80fc719fe -2023-07-08 08:21:51.953855 2023-07-08 08:21:51.95386 mef 4929 R rec fb6b0dad-46b9-4800-ac8a-93212f9978d7 -2023-07-08 08:21:52.03542 2023-07-08 08:21:52.035424 mef 4930 R rec 46fc7264-6424-4b5a-b6b1-32bafda43990 -2023-07-08 08:21:52.126843 2023-07-08 08:21:52.126854 mef 4931 R rec 6c2a1461-7d0a-441c-b021-c2645b00ebe8 -2023-07-08 08:21:52.230386 2023-07-08 08:21:52.230401 mef 4932 R rec 03e15e44-4242-4890-aa9c-f59196572441 -2023-07-08 08:21:52.318436 2023-07-08 08:21:52.318448 mef 4933 R rec 65b5a57e-82cf-4dd0-a318-fb3956bf2080 -2023-07-08 08:21:52.406539 2023-07-08 08:21:52.406549 mef 4934 R rec 99568444-4a2e-4ea5-9c34-978a34a637e9 -2023-07-08 08:21:52.500949 2023-07-08 08:21:52.500952 mef 4935 R rec 20f7c3c1-e60c-44b1-bf3f-c9cf597f88c1 -2023-07-08 08:21:52.584396 2023-07-08 08:21:52.584401 mef 4936 R rec 3dafc0d1-d074-4cae-a5f7-765dd6eb1d1f -2023-07-08 08:21:52.661497 2023-07-08 08:21:52.661507 mef 4937 R rec c882fc6c-1ff8-4b50-a0f1-659c9df1756c -2023-07-08 08:21:52.760201 2023-07-08 08:21:52.760217 mef 4938 R rec 7faf0f22-b170-40e1-be77-7f4b028ce1b5 -2023-07-08 08:21:52.848563 2023-07-08 08:21:52.848571 mef 4939 R rec f58a82a1-9e34-487a-bd1a-ae59abf0e61b -2023-07-08 08:21:52.934465 2023-07-08 08:21:52.934475 mef 4940 R rec 96c689f1-c415-46e6-b302-856268afd0a4 -2023-07-08 08:21:53.025638 2023-07-08 08:21:53.025648 mef 4941 R rec 0b39a8e8-8de9-4f22-b377-8ec44b4d44ce -2023-07-08 08:21:53.10274 2023-07-08 08:21:53.102746 mef 4942 R rec eba59161-1f2d-4c0e-b0b3-2dcee178b648 -2023-07-08 08:21:53.188332 2023-07-08 08:21:53.188343 mef 4943 R rec e6dd8f85-534f-4a9d-bf61-2128d7794792 -2023-07-08 08:21:53.270842 2023-07-08 08:21:53.270855 mef 4944 R rec 5949e53b-2fe5-40a3-9f24-a48e8679060b -2023-07-08 08:21:53.354427 2023-07-08 08:21:53.354441 mef 4945 R rec be1c8134-6f5c-419c-a15e-2c1aec4e1bee -2023-07-08 08:21:53.442087 2023-07-08 08:21:53.442091 mef 4946 R rec d2729a9c-3ca6-4a96-a907-e2ac36cdc225 -2023-07-08 08:21:53.516043 2023-07-08 08:21:53.516047 mef 4947 R rec ea85cf21-f63e-4486-85ad-e7a5aa1bae13 -2023-07-08 08:21:53.594263 2023-07-08 08:21:53.594268 mef 4948 R rec 25d50b1c-ac50-4bee-8129-29c5af1fb31d -2023-07-08 08:21:53.672195 2023-07-08 08:21:53.672204 mef 4949 R rec f3748584-0f2f-4d11-b472-394c1477bf35 -2023-07-08 08:21:53.745244 2023-07-08 08:21:53.745249 mef 4950 R rec 85305f92-21d1-4f92-b3b0-787e1b08bcff -2023-07-08 08:21:53.824953 2023-07-08 08:21:53.82497 mef 4951 R rec 5fe72432-a003-4c10-a1d4-5287d5377341 -2023-07-08 08:21:53.908036 2023-07-08 08:21:53.908051 mef 4952 R rec 49af820a-0530-40ec-a8fc-0eb31415f22b -2023-07-08 08:21:53.997835 2023-07-08 08:21:53.997843 mef 4953 R rec 95e2e5f0-85cd-4f11-bb75-34d1b9c8b90d -2023-07-08 08:21:54.085188 2023-07-08 08:21:54.085192 mef 4954 R rec 9aae5875-801f-4521-9243-afc7fd43d65d -2023-07-08 08:21:54.175787 2023-07-08 08:21:54.175797 mef 4955 R rec df7a03d1-9598-4d86-ac8d-9cc786dece19 -2023-07-08 08:21:54.264742 2023-07-08 08:21:54.264747 mef 4956 R rec 301c0f21-4390-440d-8c5d-16657d319ca0 -2023-07-08 08:21:54.33118 2023-07-08 08:21:54.331185 mef 4957 R rec 1b583cd0-2633-4524-bbae-30ac3d25aaa8 -2023-07-08 08:21:54.424865 2023-07-08 08:21:54.424884 mef 4958 R rec 597b639b-9f76-4bf0-9464-9c72aaa48972 -2023-07-08 08:21:54.592053 2023-07-08 08:21:54.592058 mef 4959 R rec a39f1704-7000-4105-a378-6e9f64b8ffd6 -2023-07-08 08:21:54.659097 2023-07-08 08:21:54.659102 mef 4960 R rec 0713c512-9be4-4f4c-8560-6b4911ce9f42 -2023-07-08 08:21:54.725302 2023-07-08 08:21:54.725306 mef 4961 R rec 3d9e436f-1463-464d-8fd3-5786bdcb38dd -2023-07-08 08:21:54.792357 2023-07-08 08:21:54.792361 mef 4962 R rec 5af7f8c9-7ed8-4db6-9f10-ee5e730e6cfe -2023-07-08 08:21:54.877376 2023-07-08 08:21:54.877385 mef 4963 R rec f8c4bcf9-6106-45a3-a644-ef128cf551a9 -2023-07-08 08:21:54.975727 2023-07-08 08:21:54.975731 mef 4964 R rec 359e3184-291e-41ad-bcf4-427da9ddf987 -2023-07-08 08:21:55.079578 2023-07-08 08:21:55.079583 mef 4965 R rec 1150443f-b7cd-487a-9ee0-e1f88013405f -2023-07-08 08:21:55.150135 2023-07-08 08:21:55.15014 mef 4966 R rec bcddd3df-5433-405c-8357-6c7cd29ce433 -2023-07-08 08:21:55.223005 2023-07-08 08:21:55.223015 mef 4967 R rec ab6090df-c201-468b-a41f-ae583a887e72 -2023-07-08 08:21:55.314079 2023-07-08 08:21:55.314084 mef 4968 R rec bde7a37e-f841-42b0-8be4-e8c3513c5ebd -2023-07-08 08:21:55.403081 2023-07-08 08:21:55.403085 mef 4969 R rec d3b89d0e-819d-45d6-853c-bdcabb1207b9 -2023-07-08 08:21:55.483345 2023-07-08 08:21:55.483359 mef 4970 R rec 68fc4866-0bf9-4849-a6db-ebcaae1390d9 -2023-07-08 08:21:55.582275 2023-07-08 08:21:55.582281 mef 4971 R rec 568b8953-f550-40b3-8136-d2adec0e5ccf -2023-07-08 08:21:55.671181 2023-07-08 08:21:55.671189 mef 4972 R rec e14d9a1c-6e97-4c69-aa6e-a3edaafc5145 -2023-07-08 08:21:55.78748 2023-07-08 08:21:55.787485 mef 4973 R rec 098ab2b6-eced-40d8-ae0f-f34612193045 -2023-07-08 08:21:55.860165 2023-07-08 08:21:55.860169 mef 4974 R rec 7354d616-6f65-4c85-8cd5-360a04723b69 -2023-07-08 08:21:55.93282 2023-07-08 08:21:55.932836 mef 4975 R rec 8aa1b4ce-45ff-45c8-b7ac-f32194ea0d86 -2023-07-08 08:21:56.062481 2023-07-08 08:21:56.062495 mef 4976 R rec b1037839-21e4-4909-816f-06d8ff522832 -2023-07-08 08:21:56.180601 2023-07-08 08:21:56.180611 mef 4977 R rec 81394a2c-0a8d-4342-8993-14f27f79ad3d -2023-07-08 08:21:56.309175 2023-07-08 08:21:56.309188 mef 4978 R rec 947e4e88-de52-4c4f-b07f-87c94ee19fda -2023-07-08 08:21:56.391363 2023-07-08 08:21:56.391373 mef 4979 R rec c082e7f0-510d-4d99-918c-a6c677d3fd1f -2023-07-08 08:21:56.498377 2023-07-08 08:21:56.498387 mef 4980 R rec 520e3d51-c214-4dae-9b11-d2cd7a2e154e -2023-07-08 08:21:56.62114 2023-07-08 08:21:56.621155 mef 4981 R rec 4caeb9ea-ea4c-422b-a091-5f285f2b189e -2023-07-08 08:21:56.710565 2023-07-08 08:21:56.710576 mef 4982 R rec 6d5829c2-2422-46f3-9a0c-30871ec0159d -2023-07-08 08:21:56.835034 2023-07-08 08:21:56.835044 mef 4983 R rec 98fa48b5-a2ec-4b5b-a370-ffe6a5d0f19c -2023-07-08 08:21:56.951816 2023-07-08 08:21:56.95184 mef 4984 R rec c4771049-1b87-41cf-a3b7-55a3c828cc71 -2023-07-08 08:21:57.059589 2023-07-08 08:21:57.059601 mef 4985 R rec 936e578b-68ec-4db3-94b2-f8de611d6e0b -2023-07-08 08:21:57.171298 2023-07-08 08:21:57.171313 mef 4986 R rec 6ad813fd-d103-4258-98ae-adef4bad97f6 -2023-07-08 08:21:57.27272 2023-07-08 08:21:57.272945 mef 4987 R rec 1bcf5856-3291-499f-8bb5-09696ea414c5 -2023-07-08 08:21:57.38152 2023-07-08 08:21:57.381534 mef 4988 R rec afb57eba-40bb-4eab-a86a-53a540f2bf84 -2023-07-08 08:21:57.482761 2023-07-08 08:21:57.482771 mef 4989 R rec d754973d-0192-4d8d-b251-9b05d4b26615 -2023-07-08 08:21:57.697154 2023-07-08 08:21:57.697165 mef 4990 R rec e456d5cf-b969-451d-9b11-3904a2e93589 -2023-07-08 08:21:57.797487 2023-07-08 08:21:57.797496 mef 4991 R rec 818e5aaf-1b76-432c-a470-f44290fae134 -2023-07-08 08:21:57.910704 2023-07-08 08:21:57.910716 mef 4992 R rec 0740a067-7b23-4ac4-83dd-eb87326a5534 -2023-07-08 08:21:58.034831 2023-07-08 08:21:58.034841 mef 4993 R rec 072cd3fa-d3af-4fe3-9ab0-1d1d3c7e15da -2023-07-08 08:21:58.135088 2023-07-08 08:21:58.135101 mef 4994 R rec f9380301-23f4-42fa-90bc-b2200ae8c155 -2023-07-08 08:21:58.236702 2023-07-08 08:21:58.236714 mef 4995 R rec 8531eade-b9c4-4c10-a3dc-17bbe73300e5 -2023-07-08 08:21:58.343629 2023-07-08 08:21:58.34364 mef 4996 R rec a293773f-e517-4832-b64c-e054cfeeb4ae -2023-07-08 08:21:58.470181 2023-07-08 08:21:58.47019 mef 4997 R rec 870f095a-1e92-4fdd-9f46-f52f14fac50d -2023-07-08 08:21:58.561911 2023-07-08 08:21:58.561922 mef 4998 R rec 4133dea7-ecc1-4525-9755-6de337faccab -2023-07-08 08:21:58.67233 2023-07-08 08:21:58.67234 mef 4999 R rec 53825ac7-f888-48a5-b70d-6ef2a5ee6dba -2023-07-08 08:21:58.794813 2023-07-08 08:21:58.794824 mef 5000 R rec 24a19da5-9dd0-41b7-9c65-aa46de147c9d -2023-07-08 08:21:58.902336 2023-07-08 08:21:58.902351 mef 5001 R rec e2ada002-0f34-4a16-8f1b-0e727570e2dd -2023-07-08 08:21:59.015168 2023-07-08 08:21:59.015216 mef 5002 R rec b9cab2bf-6122-431a-82f0-eabb862d66d1 -2023-07-08 08:21:59.117698 2023-07-08 08:21:59.117708 mef 5003 R rec 873bb294-7b5d-4da4-ad03-ec0e1fb08234 -2023-07-08 08:21:59.228823 2023-07-08 08:21:59.228833 mef 5004 R rec 81380751-d099-484c-b8f8-38dda525276e -2023-07-08 08:21:59.320518 2023-07-08 08:21:59.320531 mef 5005 R rec eedb448a-f845-4091-92a0-fa6008f3f62d -2023-07-08 08:21:59.431767 2023-07-08 08:21:59.431777 mef 5006 R rec 2fbc866b-ce0e-4702-90cf-51afb8ebc74c -2023-07-08 08:21:59.530162 2023-07-08 08:21:59.530167 mef 5007 R rec d0389806-b7d9-4f8d-a75e-4b679e88d34f -2023-07-08 08:21:59.632011 2023-07-08 08:21:59.632021 mef 5008 R rec f3c9971a-eb97-47c1-b982-23f409347208 -2023-07-08 08:21:59.743362 2023-07-08 08:21:59.743373 mef 5009 R rec 7af4ef6e-f8a0-4607-8573-98b9ef029d7f -2023-07-08 08:21:59.867877 2023-07-08 08:21:59.867892 mef 5010 R rec f41ecb2b-f124-4b70-83d4-9409432c0d5f -2023-07-08 08:21:59.968975 2023-07-08 08:21:59.96899 mef 5011 R rec 29cb016d-a258-4239-946d-7ce3e626860a -2023-07-08 08:22:00.075582 2023-07-08 08:22:00.075588 mef 5012 R rec 59adb6ec-1839-40ab-8a1c-f1d674578c48 -2023-07-08 08:22:00.160045 2023-07-08 08:22:00.160056 mef 5013 R rec 07856905-ab01-4d69-b036-54df71f9f993 -2023-07-08 08:22:00.258935 2023-07-08 08:22:00.258945 mef 5014 R rec da798424-0b92-4aba-8f42-3a054d2b13b9 -2023-07-08 08:22:00.370841 2023-07-08 08:22:00.37085 mef 5015 R rec 2d2b8ef6-eac5-477d-a81d-7ed012ed6326 -2023-07-08 08:22:00.456797 2023-07-08 08:22:00.456808 mef 5016 R rec 1003bf70-e739-47ff-a92f-08660d69d2c4 -2023-07-08 08:22:00.567505 2023-07-08 08:22:00.567515 mef 5017 R rec 9ead0bb7-5450-410d-ba61-172e1414063f -2023-07-08 08:22:00.694237 2023-07-08 08:22:00.694247 mef 5018 R rec fdb3fa3b-8e1e-4d96-9c4c-37b6fdc66c27 -2023-07-08 08:22:00.892348 2023-07-08 08:22:00.892355 mef 5019 R rec 5307e28a-d7e7-4eb5-8d78-4614b59a39e3 -2023-07-08 08:22:01.028938 2023-07-08 08:22:01.028949 mef 5020 R rec 94b2fd8d-75d3-48f9-9605-b4066576c2e6 -2023-07-08 08:22:01.165401 2023-07-08 08:22:01.165414 mef 5021 R rec 6c7e17dd-08ff-4bad-8e08-f64775b59352 -2023-07-08 08:22:01.289025 2023-07-08 08:22:01.289039 mef 5022 R rec d146bf71-12c8-43c1-82b2-573447e4d4d2 -2023-07-08 08:22:01.421014 2023-07-08 08:22:01.421026 mef 5023 R rec 89e6ce26-37cb-4ede-a50c-fb6faa2492ae -2023-07-08 08:22:01.524446 2023-07-08 08:22:01.524457 mef 5024 R rec 7d08c04e-f5f6-4a98-ace2-2af7ff56e1d8 -2023-07-08 08:22:01.61852 2023-07-08 08:22:01.61853 mef 5025 R rec 6f0613c6-6709-4b96-ba12-098be8811e46 -2023-07-08 08:22:01.733921 2023-07-08 08:22:01.733929 mef 5026 R rec 7d9c500f-1fef-481b-8073-a5a2743d1449 -2023-07-08 08:22:01.816422 2023-07-08 08:22:01.816434 mef 5027 R rec 17f1475b-3ac2-415b-bf15-844ae480ee76 -2023-07-08 08:22:01.920552 2023-07-08 08:22:01.920562 mef 5028 R rec dcb97c50-6063-41b9-9b39-5553fe15987c -2023-07-08 08:22:02.017669 2023-07-08 08:22:02.017681 mef 5029 R rec 647859b1-20bd-426a-a37e-7dbd2bc64fa2 -2023-07-08 08:22:02.133771 2023-07-08 08:22:02.13378 mef 5030 R rec 9b8d30dc-aaf4-4f0a-a9b6-11f58f91c471 -2023-07-08 08:22:02.240294 2023-07-08 08:22:02.240305 mef 5031 R rec 43f99e31-49d0-4bdf-914d-50019a76c95d -2023-07-08 08:22:02.346572 2023-07-08 08:22:02.346584 mef 5032 R rec dd63819a-ccd4-4737-bf40-f79965973592 -2023-07-08 08:22:02.462712 2023-07-08 08:22:02.462722 mef 5033 R rec 4d09eb29-200d-443c-a457-c7fdede1d179 -2023-07-08 08:22:02.583812 2023-07-08 08:22:02.583873 mef 5034 R rec 3f17636f-8541-4b7c-ac55-262b528b1bef -2023-07-08 08:22:02.694024 2023-07-08 08:22:02.694036 mef 5035 R rec 7f31f427-8977-44ab-93b2-7b6671b87ab2 -2023-07-08 08:22:02.786968 2023-07-08 08:22:02.786977 mef 5036 R rec 507d298e-0bdb-4362-9471-206b99524b81 -2023-07-08 08:22:02.897612 2023-07-08 08:22:02.897623 mef 5037 R rec 6deb36f6-ccab-416e-93ad-28554600b063 -2023-07-08 08:22:03.012444 2023-07-08 08:22:03.012458 mef 5038 R rec 6236252c-5d33-4fe5-ab85-8cb9dd76c87d -2023-07-08 08:22:03.115807 2023-07-08 08:22:03.11582 mef 5039 R rec bf4267cb-8057-4a00-8951-b9a778002ff3 -2023-07-08 08:22:03.254375 2023-07-08 08:22:03.254388 mef 5040 R rec 3cf65a94-afe3-406d-bad8-21168619f018 -2023-07-08 08:22:03.372236 2023-07-08 08:22:03.37225 mef 5041 R rec c58a6fb3-94e0-44f7-b2af-73eb87a11f37 -2023-07-08 08:22:03.48904 2023-07-08 08:22:03.489051 mef 5042 R rec 0ffc4837-c65a-4d9f-99bc-a65b38fd8318 -2023-07-08 08:22:03.619411 2023-07-08 08:22:03.619424 mef 5043 R rec 5fb4f52f-97bf-48a3-b8a2-da58b797425d -2023-07-08 08:22:03.738589 2023-07-08 08:22:03.738601 mef 5044 R rec b515cfab-e09f-47f5-b6e3-d59d77fcf54c -2023-07-08 08:22:03.847609 2023-07-08 08:22:03.847619 mef 5045 R rec b59d377f-6866-401d-8169-5eacaabf2113 -2023-07-08 08:22:03.946214 2023-07-08 08:22:03.94623 mef 5046 R rec cf48e506-786b-4d8f-a415-faf3338f3440 -2023-07-08 08:22:04.063359 2023-07-08 08:22:04.063374 mef 5047 R rec 0d236fbc-c75a-4ee4-b37d-74c3902cd776 -2023-07-08 08:22:04.201188 2023-07-08 08:22:04.201198 mef 5048 R rec c2ba66e6-c10a-4a8f-8727-3d3569afe3c5 -2023-07-08 08:22:04.314873 2023-07-08 08:22:04.314883 mef 5049 R rec 8fb3e7e1-51c4-4309-beaf-c1032e2d4544 -2023-07-08 08:22:04.439677 2023-07-08 08:22:04.439686 mef 5050 R rec cbeef1e0-cf77-482a-a6c2-fb2a7215a5f6 -2023-07-08 08:22:04.555819 2023-07-08 08:22:04.555831 mef 5051 R rec 1d3fb490-cbfc-429a-94a6-cf9d9b936d9e -2023-07-08 08:22:04.681185 2023-07-08 08:22:04.681196 mef 5052 R rec 175f78d8-452b-4f4b-843c-be19d23aee57 -2023-07-08 08:22:04.784403 2023-07-08 08:22:04.784413 mef 5053 R rec 97762e3b-0734-4ab8-806c-9431535a6b4a -2023-07-08 08:22:04.891974 2023-07-08 08:22:04.891999 mef 5054 R rec 624af701-fe53-41ee-9566-af38bb241d5f -2023-07-08 08:22:05.030178 2023-07-08 08:22:05.03019 mef 5055 R rec a993956a-9e2e-422f-b2f3-f9baf85c552f -2023-07-08 08:22:05.141823 2023-07-08 08:22:05.141836 mef 5056 R rec d2c79373-5701-4cb6-bf20-71b8e9865ac4 -2023-07-08 08:22:05.253984 2023-07-08 08:22:05.254 mef 5057 R rec 465f4907-f848-4f07-88b6-7524e94d078a -2023-07-08 08:22:05.376977 2023-07-08 08:22:05.376987 mef 5058 R rec 729bbf76-fc71-43e9-ba74-f93d871898c4 -2023-07-08 08:22:05.489151 2023-07-08 08:22:05.489163 mef 5059 R rec 1d8a7fec-5ed2-4e8c-bbd3-e04869b5ffbd -2023-07-08 08:22:05.624028 2023-07-08 08:22:05.624038 mef 5060 R rec c12df8c0-4dd5-4f7d-8aee-8e336b6d71b7 -2023-07-08 08:22:05.727881 2023-07-08 08:22:05.727892 mef 5061 R rec 2993b774-09bb-4ba2-83a3-dc31b51bff4d -2023-07-08 08:22:05.853829 2023-07-08 08:22:05.853838 mef 5062 R rec 44c7766a-fa87-4b41-a7f1-ba18c30043d6 -2023-07-08 08:22:05.961846 2023-07-08 08:22:05.961856 mef 5063 R rec 05ef84f9-20d4-407e-9e28-e34c2fe1098e -2023-07-08 08:22:06.227671 2023-07-08 08:22:06.227681 mef 5064 R rec e03c37e9-5fe0-4747-a1b2-c6feee239f82 -2023-07-08 08:22:06.357337 2023-07-08 08:22:06.357347 mef 5065 R rec 9d218bf6-c51a-479f-a1e7-1dddb7d96178 -2023-07-08 08:22:06.462868 2023-07-08 08:22:06.462879 mef 5066 R rec bfde024a-77d8-411d-ad41-9bdb045097fe -2023-07-08 08:22:06.576901 2023-07-08 08:22:06.576912 mef 5067 R rec a13b8a5e-c595-4607-93df-a6f50829b4f1 -2023-07-08 08:22:06.659838 2023-07-08 08:22:06.659908 mef 5068 R rec 835e5797-4b35-448c-8064-57ce1a4915ee -2023-07-08 08:22:06.7688 2023-07-08 08:22:06.768813 mef 5069 R rec 39e0d626-f525-4169-a2fd-9820f26521ec -2023-07-08 08:22:06.894178 2023-07-08 08:22:06.89419 mef 5070 R rec 37c32eae-c40a-46d9-a96e-0aebf875568b -2023-07-08 08:22:07.027654 2023-07-08 08:22:07.027664 mef 5071 R rec 65e2e07a-7b88-407c-96ea-cd890b8a0380 -2023-07-08 08:22:07.149192 2023-07-08 08:22:07.149203 mef 5072 R rec c5ac5c53-e8c1-4e6b-b35b-6ca2ec8c6fa2 -2023-07-08 08:22:07.261528 2023-07-08 08:22:07.261547 mef 5073 R rec abb8cdb2-8f67-4436-9cde-fb8da0d694b1 -2023-07-08 08:22:07.367129 2023-07-08 08:22:07.367147 mef 5074 R rec 394875c0-49f5-4e92-9407-15feced79f4f -2023-07-08 08:22:07.487659 2023-07-08 08:22:07.487664 mef 5075 R rec 1a829b2a-01d0-4148-8850-77d700113517 -2023-07-08 08:22:07.584754 2023-07-08 08:22:07.584764 mef 5076 R rec 60a7c9d4-2341-43a2-a9cc-a13a323f51d0 -2023-07-08 08:22:07.702072 2023-07-08 08:22:07.702088 mef 5077 R rec 489ba17e-7b00-4cd3-ba46-51c8be582c02 -2023-07-08 08:22:07.812395 2023-07-08 08:22:07.812399 mef 5078 R rec 4a2f7cbc-2efe-4141-b234-ab6016e690b2 -2023-07-08 08:22:07.899794 2023-07-08 08:22:07.899806 mef 5079 R rec f9d22beb-94e1-4ff7-a65b-ef0fadc785fc -2023-07-08 08:22:08.002389 2023-07-08 08:22:08.002402 mef 5080 R rec ef72aa47-dcea-4167-950a-0a29952ee54f -2023-07-08 08:22:08.109693 2023-07-08 08:22:08.109708 mef 5081 R rec 6acf1bd5-f313-433c-ba03-0426db74f3a4 -2023-07-08 08:22:08.222937 2023-07-08 08:22:08.222948 mef 5082 R rec 8c0f3c83-6420-4cb1-b824-98a5d0f49243 -2023-07-08 08:22:08.329967 2023-07-08 08:22:08.329978 mef 5083 R rec a055b910-a035-407c-8408-775ad359cbbb -2023-07-08 08:22:08.449016 2023-07-08 08:22:08.449026 mef 5084 R rec 1584baa2-70da-4a58-9be5-e35113771871 -2023-07-08 08:22:08.56968 2023-07-08 08:22:08.569697 mef 5085 R rec 5d92d04b-ddae-48b6-b92e-c38ff18e3dab -2023-07-08 08:22:08.705717 2023-07-08 08:22:08.705727 mef 5086 R rec a8fccf9f-ff59-4390-95e9-1287e374f299 -2023-07-08 08:22:08.831608 2023-07-08 08:22:08.831619 mef 5087 R rec 26487bed-b432-46da-bdcd-773246c7fe0e -2023-07-08 08:22:08.956768 2023-07-08 08:22:08.956778 mef 5088 R rec 26afc91c-e38d-4f8f-a005-9fc9d9096f58 -2023-07-08 08:22:09.061103 2023-07-08 08:22:09.061119 mef 5089 R rec 050447eb-fb96-446f-90c4-51b817cb9b3d -2023-07-08 08:22:09.168315 2023-07-08 08:22:09.168328 mef 5090 R rec 155c5316-a6ee-4951-af9a-88a7214521d8 -2023-07-08 08:22:09.279947 2023-07-08 08:22:09.279957 mef 5091 R rec d5e25e95-fb0c-4fbe-a7d1-e0b09eb89954 -2023-07-08 08:22:09.384919 2023-07-08 08:22:09.38493 mef 5092 R rec 2b63cd4b-76af-4036-89ec-76034d49d985 -2023-07-08 08:22:09.487816 2023-07-08 08:22:09.487828 mef 5093 R rec a8975a3a-7762-4df8-b66e-72663e0a4e77 -2023-07-08 08:22:09.612098 2023-07-08 08:22:09.61211 mef 5094 R rec 45a8c573-4ad0-47a6-baa1-af9f436adab7 -2023-07-08 08:22:09.700399 2023-07-08 08:22:09.700409 mef 5095 R rec 92b657ee-93d6-4167-a540-0786da89c645 -2023-07-08 08:22:09.827535 2023-07-08 08:22:09.827546 mef 5096 R rec e2a4779f-e973-433f-a53c-2a3db8c4bec2 -2023-07-08 08:22:09.942014 2023-07-08 08:22:09.942029 mef 5097 R rec b4c6799d-54c4-48dd-a5d9-e18052339514 -2023-07-08 08:22:10.064492 2023-07-08 08:22:10.064503 mef 5098 R rec 28766b58-d1bb-42fd-a1f2-c95de251cf1a -2023-07-08 08:22:10.305597 2023-07-08 08:22:10.305609 mef 5099 R rec 1794e66e-bf8d-47a4-a22b-9a50c7d96911 -2023-07-08 08:22:10.415245 2023-07-08 08:22:10.415263 mef 5100 R rec 6dd313c4-b2bf-45ab-ac9c-603be2da0ea1 -2023-07-08 08:22:10.533712 2023-07-08 08:22:10.533723 mef 5101 R rec c7073a0e-fb39-4001-afd8-0057269fcffd -2023-07-08 08:22:10.629009 2023-07-08 08:22:10.629019 mef 5102 R rec 2aa036a7-1f3b-472a-bef0-c8b7de342aa0 -2023-07-08 08:22:10.734467 2023-07-08 08:22:10.73448 mef 5103 R rec 25ebcd13-99d9-43fa-8a5f-4f192863d725 -2023-07-08 08:22:10.859145 2023-07-08 08:22:10.859157 mef 5104 R rec 27b44d1d-3ace-4e0b-af0a-c19112252a03 -2023-07-08 08:22:10.980438 2023-07-08 08:22:10.980443 mef 5105 R rec d0b1ddef-a63b-474c-a6eb-94ec5321b9c1 -2023-07-08 08:22:11.080775 2023-07-08 08:22:11.080785 mef 5106 R rec 631e9049-a26f-467c-9ca8-266d29ea853d -2023-07-08 08:22:11.182445 2023-07-08 08:22:11.182458 mef 5107 R rec c1aa2c4c-2c87-4470-8127-5decc5c3beb9 -2023-07-08 08:22:11.286378 2023-07-08 08:22:11.286387 mef 5108 R rec 528e0232-2273-4f73-b12c-390af571019a -2023-07-08 08:22:11.397765 2023-07-08 08:22:11.397783 mef 5109 R rec 9321df4a-6b50-4f1d-951a-03d9d914e72a -2023-07-08 08:22:11.505674 2023-07-08 08:22:11.505684 mef 5110 R rec 9b373568-9933-4d37-92e5-4ddff3920f8c -2023-07-08 08:22:11.60311 2023-07-08 08:22:11.60312 mef 5111 R rec 30638c09-ecb3-48dd-9ec2-8f4a6da27914 -2023-07-08 08:22:11.703449 2023-07-08 08:22:11.70346 mef 5112 R rec 208a6560-f7bc-4989-9fd0-b45d4991ebe0 -2023-07-08 08:22:11.833587 2023-07-08 08:22:11.833592 mef 5113 R rec 0c8585c8-0dfc-4377-bec4-ac85c326e356 -2023-07-08 08:22:11.919174 2023-07-08 08:22:11.919189 mef 5114 R rec 67c961ad-203e-4daa-b7b8-c89c1a8be210 -2023-07-08 08:22:12.020462 2023-07-08 08:22:12.020471 mef 5115 R rec b6bb9fe6-82a6-4326-a567-4c091eb87642 -2023-07-08 08:22:12.129757 2023-07-08 08:22:12.129771 mef 5116 R rec c6413ee6-ed27-443d-a5b6-8c0b80eacb6a -2023-07-08 08:22:12.295656 2023-07-08 08:22:12.295667 mef 5117 R rec 14cb1eb2-414f-44d5-8c58-09d688530d7d -2023-07-08 08:22:12.422674 2023-07-08 08:22:12.422684 mef 5118 R rec 2be7d1b0-48f1-425a-9f1b-41e62f022c37 -2023-07-08 08:22:12.536681 2023-07-08 08:22:12.536691 mef 5119 R rec 3a356bf1-f939-4e55-a724-04dab4449b13 -2023-07-08 08:22:12.653328 2023-07-08 08:22:12.65334 mef 5120 R rec 3e4dd6e2-31df-4ba0-8e76-d541b580239b -2023-07-08 08:22:12.762889 2023-07-08 08:22:12.762909 mef 5121 R rec 4350177b-7f26-4b7e-9481-671cbb49dcd8 -2023-07-08 08:22:12.884476 2023-07-08 08:22:12.884487 mef 5122 R rec 573c8d4d-0378-4035-a89b-400d60acabd6 -2023-07-08 08:22:12.981348 2023-07-08 08:22:12.98136 mef 5123 R rec f2feb494-c5de-472c-9a3d-7d1162ae038d -2023-07-08 08:22:13.088285 2023-07-08 08:22:13.088302 mef 5124 R rec fdaae538-6d97-4455-9206-f9c9d4b91b5a -2023-07-08 08:22:13.220887 2023-07-08 08:22:13.220896 mef 5125 R rec 0cd2d86b-dc12-4ae4-9e37-a150fd0173fc -2023-07-08 08:22:13.345598 2023-07-08 08:22:13.345611 mef 5126 R rec ee086832-362d-4e3b-9968-cbefb0961d3d -2023-07-08 08:22:13.445956 2023-07-08 08:22:13.445965 mef 5127 R rec e3a236f2-1a68-4d52-9c0f-42d0cda59ab0 -2023-07-08 08:22:13.552146 2023-07-08 08:22:13.552162 mef 5128 R rec 79c20be6-c1ff-4b04-8846-4b0ccc4274ea -2023-07-08 08:22:13.665761 2023-07-08 08:22:13.665772 mef 5129 R rec 47678073-7bef-4ce5-9b25-1172f37afecb -2023-07-08 08:22:13.779955 2023-07-08 08:22:13.779967 mef 5130 R rec f2d4864d-ca07-4bf7-85cd-288530f36933 -2023-07-08 08:22:13.878648 2023-07-08 08:22:13.878664 mef 5131 R rec 839a2364-11a8-4d5d-a534-e81d7a827d5b -2023-07-08 08:22:13.996821 2023-07-08 08:22:13.996836 mef 5132 R rec fbc78bc4-9619-498b-a8a3-851847bae9d7 -2023-07-08 08:22:14.11247 2023-07-08 08:22:14.112486 mef 5133 R rec 8e5181b9-f416-48a7-b8f1-8144e6e2d1ec -2023-07-08 08:22:14.239767 2023-07-08 08:22:14.239778 mef 5134 R rec 9461b2c7-f65a-478f-8e42-97a07ae823c6 -2023-07-08 08:22:14.352021 2023-07-08 08:22:14.352032 mef 5135 R rec 04da3405-694b-4e7a-8a9a-9d065d98b624 -2023-07-08 08:22:14.469694 2023-07-08 08:22:14.469706 mef 5136 R rec b637d50b-0e27-4f79-987f-730f490f0a09 -2023-07-08 08:22:14.590581 2023-07-08 08:22:14.590591 mef 5137 R rec 5bd35293-00f8-47fb-988d-c65e11860faf -2023-07-08 08:22:14.694803 2023-07-08 08:22:14.694814 mef 5138 R rec 1ff14ccb-ef1a-43d1-aacd-76843d704bf4 -2023-07-08 08:22:14.791405 2023-07-08 08:22:14.791418 mef 5139 R rec aa6b6b23-e59e-476d-b588-d052d6be5cca -2023-07-08 08:22:14.895511 2023-07-08 08:22:14.895523 mef 5140 R rec 223b6fee-bf17-49c8-bce6-c7b53cfc7033 -2023-07-08 08:22:15.021181 2023-07-08 08:22:15.021198 mef 5141 R rec b83cede0-6b00-4139-8a01-45d6c6daae4a -2023-07-08 08:22:15.130799 2023-07-08 08:22:15.130809 mef 5142 R rec ff7c1ec6-309b-4e14-90ae-6852401667fa -2023-07-08 08:22:15.252327 2023-07-08 08:22:15.252341 mef 5143 R rec 71e1dcec-7ee3-4831-b5d7-14a245a5a946 -2023-07-08 08:22:15.377473 2023-07-08 08:22:15.377488 mef 5144 R rec 7a2afcee-ec3f-43ef-a317-906d8d95e260 -2023-07-08 08:22:15.500201 2023-07-08 08:22:15.500211 mef 5145 R rec e4d9784e-78b4-491a-a581-63469e2a9099 -2023-07-08 08:22:15.615313 2023-07-08 08:22:15.615325 mef 5146 R rec 3c0da058-cd41-4075-8a4b-b8a3bc72ff74 -2023-07-08 08:22:15.729943 2023-07-08 08:22:15.729954 mef 5147 R rec 08ced905-3805-452e-8628-7f5d51981a87 -2023-07-08 08:22:15.838694 2023-07-08 08:22:15.8387 mef 5148 R rec 53fe48e8-9ff6-45bd-b8aa-552e7d489662 -2023-07-08 08:22:15.946466 2023-07-08 08:22:15.946479 mef 5149 R rec c76796df-f526-4c2d-bfde-b0c81f245845 -2023-07-08 08:22:16.064872 2023-07-08 08:22:16.064883 mef 5150 R rec ea159fd1-3981-40ce-ad70-db3a2a68526e -2023-07-08 08:22:16.175618 2023-07-08 08:22:16.175629 mef 5151 R rec 76bb8ce4-49c9-4f91-ae77-d804bea2f2d8 -2023-07-08 08:22:16.292576 2023-07-08 08:22:16.292586 mef 5152 R rec 8645ce2f-47bf-4776-b62c-9a095ea37b3d -2023-07-08 08:22:16.406268 2023-07-08 08:22:16.406284 mef 5153 R rec edf5d324-0dfe-4c09-ba65-d92409d59007 -2023-07-08 08:22:16.507526 2023-07-08 08:22:16.507538 mef 5154 R rec b5a08451-59cb-4c03-8c70-81c9405c1a56 -2023-07-08 08:22:16.62053 2023-07-08 08:22:16.620539 mef 5155 R rec e92329e1-32fc-4309-8165-b04c6a4954da -2023-07-08 08:22:16.733863 2023-07-08 08:22:16.733874 mef 5156 R rec ae4560a1-8cee-4559-8a9b-79fea0b66d5c -2023-07-08 08:22:16.841431 2023-07-08 08:22:16.841441 mef 5157 R rec 05ac127e-cc6a-419b-a591-ec00b4ba3ff0 -2023-07-08 08:22:16.95115 2023-07-08 08:22:16.951159 mef 5158 R rec adf77409-9508-4298-9ce1-5bb022dc4a1b -2023-07-08 08:22:17.050678 2023-07-08 08:22:17.050692 mef 5159 R rec 4732401e-0a29-4755-95bb-af02a5c476e9 -2023-07-08 08:22:17.170637 2023-07-08 08:22:17.170655 mef 5160 R rec f53db080-68a4-439c-ad1f-a06a2ed7c031 -2023-07-08 08:22:17.28824 2023-07-08 08:22:17.28825 mef 5161 R rec 6b6ce187-8eba-4e2e-80a5-bef09df376dd -2023-07-08 08:22:17.386909 2023-07-08 08:22:17.386919 mef 5162 R rec f8d26d2e-8c8c-4d04-bf2d-c9254523cdf9 -2023-07-08 08:22:17.487894 2023-07-08 08:22:17.487906 mef 5163 R rec fa6b1167-c920-4d34-b3b1-c2022c55c413 -2023-07-08 08:22:17.586197 2023-07-08 08:22:17.586212 mef 5164 R rec 6cc7e19a-7f1a-40f4-aa1f-ad9a0a856caa -2023-07-08 08:22:17.696692 2023-07-08 08:22:17.696704 mef 5165 R rec 5d8f9ff4-379d-48a4-81d2-9b1c23630229 -2023-07-08 08:22:17.813011 2023-07-08 08:22:17.813026 mef 5166 R rec 26e79195-7083-4fdb-9c5d-93fecf0f7ad0 -2023-07-08 08:22:17.897819 2023-07-08 08:22:17.897826 mef 5167 R rec 5c7da778-df29-4151-82d3-652152f0db61 -2023-07-08 08:22:17.978853 2023-07-08 08:22:17.978866 mef 5168 R rec 1a547e30-6d23-4f22-b124-9cd34b7f7513 -2023-07-08 08:22:18.081626 2023-07-08 08:22:18.081636 mef 5169 R rec 4a39002b-bbc1-4419-a920-12999c45fe25 -2023-07-08 08:22:18.187896 2023-07-08 08:22:18.187907 mef 5170 R rec 3baeb209-4a20-4e6d-b986-65c62f123368 -2023-07-08 08:22:18.276377 2023-07-08 08:22:18.276387 mef 5171 R rec ac7c5867-4324-4fba-9b0c-40d050be3478 -2023-07-08 08:22:18.395555 2023-07-08 08:22:18.395568 mef 5172 R rec 97fc35cc-f9f1-4916-9895-cfa9cf907c7e -2023-07-08 08:22:18.501568 2023-07-08 08:22:18.501581 mef 5173 R rec 1e14be38-0d66-45d7-a055-26d8ab92824c -2023-07-08 08:22:18.597005 2023-07-08 08:22:18.597017 mef 5174 R rec e67cb08a-6cc7-4ec1-937c-7e7a51e661a6 -2023-07-08 08:22:18.700239 2023-07-08 08:22:18.700251 mef 5175 R rec 9a68311a-4bc2-4561-aa60-74abc3fd26c2 -2023-07-08 08:22:18.797178 2023-07-08 08:22:18.797191 mef 5176 R rec a19a7f83-44db-41f5-b8ab-38827951facd -2023-07-08 08:22:18.886084 2023-07-08 08:22:18.886096 mef 5177 R rec 511fd64b-f30e-45c8-8c7c-e213d3b6a304 -2023-07-08 08:22:19.118201 2023-07-08 08:22:19.118213 mef 5178 R rec ab8ab8fb-f88b-4a72-ad97-1193e08da4a4 -2023-07-08 08:22:19.236271 2023-07-08 08:22:19.236285 mef 5179 R rec 9910f30e-64a1-40e5-b00f-abb59fc1bdbf -2023-07-08 08:22:19.34576 2023-07-08 08:22:19.345775 mef 5180 R rec d8dc3419-cb1d-4009-a68b-0a48572fbfe8 -2023-07-08 08:22:19.446826 2023-07-08 08:22:19.446836 mef 5181 R rec 2c4847d7-e591-4289-b76c-a7faa68eb938 -2023-07-08 08:22:19.563411 2023-07-08 08:22:19.563421 mef 5182 R rec 8f24422f-99ff-465d-93c2-334184949c2d -2023-07-08 08:22:19.670853 2023-07-08 08:22:19.670864 mef 5183 R rec cc2a0c70-ec4a-448c-a641-2f0af6c28200 -2023-07-08 08:22:19.766956 2023-07-08 08:22:19.766966 mef 5184 R rec 35b4e6e7-74ad-4d61-a73e-2c110a0dfa26 -2023-07-08 08:22:19.87018 2023-07-08 08:22:19.870192 mef 5185 R rec 3918e4bb-bbfe-475b-b997-c2948326bf5a -2023-07-08 08:22:19.972784 2023-07-08 08:22:19.972795 mef 5186 R rec ecc52b95-5189-45f5-85d2-2939314e4b17 -2023-07-08 08:22:20.06272 2023-07-08 08:22:20.06273 mef 5187 R rec 2c333370-c371-457f-ae5d-e81e76a149e5 -2023-07-08 08:22:20.171642 2023-07-08 08:22:20.171654 mef 5188 R rec 1ebd3918-3326-4265-a75f-12840ce68f74 -2023-07-08 08:22:20.2685 2023-07-08 08:22:20.268511 mef 5189 R rec a5372468-706f-4cb7-bc5b-d511a3310b68 -2023-07-08 08:22:20.373112 2023-07-08 08:22:20.373125 mef 5190 R rec dc59c0c2-8c09-4b04-94e9-209fc5249b74 -2023-07-08 08:22:20.476377 2023-07-08 08:22:20.476388 mef 5191 R rec b66acd30-4aec-4ac7-922b-a59352f5086d -2023-07-08 08:22:20.584534 2023-07-08 08:22:20.584539 mef 5192 R rec 139e7be9-b09d-4aa4-aff1-812edaff5fb7 -2023-07-08 08:22:20.668382 2023-07-08 08:22:20.668392 mef 5193 R rec 11ce908c-e528-4e10-8a71-8618be29e2fe -2023-07-08 08:22:20.879788 2023-07-08 08:22:20.879798 mef 5194 R rec e4f097d6-9243-4975-8025-3de51dc10662 -2023-07-08 08:22:20.981353 2023-07-08 08:22:20.981365 mef 5195 R rec a4553ced-331f-4ad6-abf4-27da902ebba0 -2023-07-08 08:22:21.086377 2023-07-08 08:22:21.086387 mef 5196 R rec 917e2bc5-03b1-42aa-90cc-c6334b7184c9 -2023-07-08 08:22:21.195829 2023-07-08 08:22:21.19584 mef 5197 R rec 46abf4b5-502e-400e-bd13-9e1f79f21f66 -2023-07-08 08:22:21.403367 2023-07-08 08:22:21.403376 mef 5198 R rec 91f4e94b-34cd-4070-87c4-3a3d0e6be0b5 -2023-07-08 08:22:21.512268 2023-07-08 08:22:21.512278 mef 5199 R rec d220633d-5345-4010-b2f7-02a855912376 -2023-07-08 08:22:21.606058 2023-07-08 08:22:21.606072 mef 5200 R rec c523f2ac-85e0-485f-8604-26e581948521 -2023-07-08 08:22:21.705587 2023-07-08 08:22:21.705604 mef 5201 R rec 920323e5-2cd1-43b0-878a-7d88a5ef96b6 -2023-07-08 08:22:21.82516 2023-07-08 08:22:21.825171 mef 5202 R rec 565639ce-c01a-49a7-85dd-a47fbebde177 -2023-07-08 08:22:21.911428 2023-07-08 08:22:21.91144 mef 5203 R rec 5442e600-d999-4fbc-a780-9e341e09705c -2023-07-08 08:22:22.031346 2023-07-08 08:22:22.031358 mef 5204 R rec de583d30-bbfc-43eb-941d-86a0ed04ed26 -2023-07-08 08:22:22.149038 2023-07-08 08:22:22.149052 mef 5205 R rec 558bbe04-a7b5-4146-9c48-ae46583db7c4 -2023-07-08 08:22:22.257381 2023-07-08 08:22:22.257391 mef 5206 R rec 7f5663e3-cbb6-42e3-b205-e4324211166c -2023-07-08 08:22:22.368183 2023-07-08 08:22:22.368194 mef 5207 R rec 08424abf-d8e6-40b3-9268-8fa82f56f8b6 -2023-07-08 08:22:22.49368 2023-07-08 08:22:22.493695 mef 5208 R rec 25b9fc2f-6b4a-4325-bb80-5ac099f2e022 -2023-07-08 08:22:22.613376 2023-07-08 08:22:22.613391 mef 5209 R rec 5eb42ab1-cff5-4552-bcc5-f0b357b69e13 -2023-07-08 08:22:22.707767 2023-07-08 08:22:22.707781 mef 5210 R rec 2b3773bc-3bc7-4f1d-b896-9a4b204cd90f -2023-07-08 08:22:22.809344 2023-07-08 08:22:22.809356 mef 5211 R rec d44c359a-b2ee-454e-b1c5-fb6bc255c354 -2023-07-08 08:22:22.925676 2023-07-08 08:22:22.925686 mef 5212 R rec b1e30325-31d2-4613-9cf8-96ade4211cc2 -2023-07-08 08:22:23.024057 2023-07-08 08:22:23.024073 mef 5213 R rec f4d1a77a-cf64-4596-bce7-ee85e8fc2a65 -2023-07-08 08:22:23.128202 2023-07-08 08:22:23.128214 mef 5214 R rec 3a010a67-7f63-4a2d-b3db-10ed02e0cf8b -2023-07-08 08:22:23.242439 2023-07-08 08:22:23.242449 mef 5215 R rec 3f4fb7b4-57f1-4476-97f5-3bbf826f456e -2023-07-08 08:22:23.354475 2023-07-08 08:22:23.354487 mef 5216 R rec a3a053f9-cc78-49fd-bf5a-baab6877dbd3 -2023-07-08 08:22:23.463463 2023-07-08 08:22:23.463478 mef 5217 R rec 47723cab-ef87-4531-af43-77bff1ffce7f -2023-07-08 08:22:23.569122 2023-07-08 08:22:23.569134 mef 5218 R rec 3975c46a-8a2b-41b8-a12b-5d2a69390f45 -2023-07-08 08:22:23.666248 2023-07-08 08:22:23.666261 mef 5219 R rec 988276d7-1f7d-4533-827c-f2175c8c3758 -2023-07-08 08:22:23.760152 2023-07-08 08:22:23.76016 mef 5220 R rec a26e5f43-04ad-49ea-85d4-fc8125d0033d -2023-07-08 08:22:23.860103 2023-07-08 08:22:23.860113 mef 5221 R rec c9f20583-fca3-4c1e-8656-2851a8a8c0c1 -2023-07-08 08:22:23.959111 2023-07-08 08:22:23.959121 mef 5222 R rec 59c4fb39-d535-453c-9887-9b7ed67123c0 -2023-07-08 08:22:24.063225 2023-07-08 08:22:24.063238 mef 5223 R rec 9d095dfa-f346-4fd6-bb62-b3009e78d2eb -2023-07-08 08:22:24.179958 2023-07-08 08:22:24.179967 mef 5224 R rec 335f3ec2-9b2d-49ee-9532-e30a34cc8f9e -2023-07-08 08:22:24.274455 2023-07-08 08:22:24.274465 mef 5225 R rec ca8c4ab3-a25f-41e2-aac1-c3abcdcf7236 -2023-07-08 08:22:24.375473 2023-07-08 08:22:24.375484 mef 5226 R rec e1a3ac66-186f-4d4f-a1f4-9dbad47fe898 -2023-07-08 08:22:24.473493 2023-07-08 08:22:24.473506 mef 5227 R rec 57aac40a-c47d-47a5-a138-14dbd2af996e -2023-07-08 08:22:24.693521 2023-07-08 08:22:24.693532 mef 5228 R rec 786b3eba-f433-4f03-b692-5c4ee6d2c389 -2023-07-08 08:22:24.783535 2023-07-08 08:22:24.783547 mef 5229 R rec 58f081ba-7ad5-418b-88ef-47d3e7ead3a6 -2023-07-08 08:22:24.884157 2023-07-08 08:22:24.884167 mef 5230 R rec d48c3405-2cf6-4d8d-ae16-5ab57c1528ae -2023-07-08 08:22:24.989107 2023-07-08 08:22:24.989165 mef 5231 R rec 7fa2afee-543f-45c1-934f-fbad1371d250 -2023-07-08 08:22:25.073527 2023-07-08 08:22:25.073538 mef 5232 R rec 6ace4f70-f4bb-4e21-85fc-9771c03397dd -2023-07-08 08:22:25.166208 2023-07-08 08:22:25.166219 mef 5233 R rec a9ee3460-f044-4b48-85a7-1522e72499d3 -2023-07-08 08:22:25.260713 2023-07-08 08:22:25.260725 mef 5234 R rec 7c2b6b3b-b3ef-4870-830f-8ec1db2bbe70 -2023-07-08 08:22:25.34856 2023-07-08 08:22:25.348573 mef 5235 R rec f522ee45-c76d-4b05-b539-68de260c7f0e -2023-07-08 08:22:25.438255 2023-07-08 08:22:25.438264 mef 5236 R rec c25a097b-4c85-43d9-8a47-3a2248294582 -2023-07-08 08:22:25.541321 2023-07-08 08:22:25.541337 mef 5237 R rec df4b6d3e-8f0a-4f79-911d-b85d4d71e8f9 -2023-07-08 08:22:25.642705 2023-07-08 08:22:25.642715 mef 5238 R rec ad536479-d655-4cef-be98-ec3111ea82b9 -2023-07-08 08:22:25.760394 2023-07-08 08:22:25.760404 mef 5239 R rec 7db71e0e-0093-43cc-b352-0c5e36f070c1 -2023-07-08 08:22:25.877203 2023-07-08 08:22:25.877215 mef 5240 R rec d9690855-23cc-439a-9cbf-5f35bf128fd8 -2023-07-08 08:22:25.988337 2023-07-08 08:22:25.988347 mef 5241 R rec fd19108c-8e97-4d7c-89e1-b86f124f047f -2023-07-08 08:22:26.088524 2023-07-08 08:22:26.088538 mef 5242 R rec 1e1fb039-28a0-4e94-8c49-7e8c3144c073 -2023-07-08 08:22:26.193747 2023-07-08 08:22:26.193757 mef 5243 R rec 3c9b91d7-792d-4636-ac8f-20ef25f88c37 -2023-07-08 08:22:26.302011 2023-07-08 08:22:26.302022 mef 5244 R rec 0c8f80a2-2328-4371-a73b-f4828d7039e8 -2023-07-08 08:22:26.405711 2023-07-08 08:22:26.405728 mef 5245 R rec f7e3ee05-67dd-45e2-bb78-2d831fa0e3c8 -2023-07-08 08:22:26.494197 2023-07-08 08:22:26.494213 mef 5246 R rec 9f12ccb2-20fd-4cfb-bd4d-076eacc8a845 -2023-07-08 08:22:26.588295 2023-07-08 08:22:26.588306 mef 5247 R rec 9b0795eb-f537-498a-b5fe-69f0e91f6f5a -2023-07-08 08:22:26.696868 2023-07-08 08:22:26.69688 mef 5248 R rec 12f2e12e-685e-4fa5-8195-bd10ea850738 -2023-07-08 08:22:26.822137 2023-07-08 08:22:26.822147 mef 5249 R rec b17059e4-8765-4648-8de5-260e110f6a95 -2023-07-08 08:22:26.93049 2023-07-08 08:22:26.9305 mef 5250 R rec 86fa0da8-341f-49fd-96ed-3250ee320b61 -2023-07-08 08:22:27.034908 2023-07-08 08:22:27.034918 mef 5251 R rec a6f85ec3-0b8c-4584-afea-a52f51444501 -2023-07-08 08:22:27.133339 2023-07-08 08:22:27.13335 mef 5252 R rec f95da5dd-4ec4-4e69-b7f2-af3229202d7d -2023-07-08 08:22:27.22961 2023-07-08 08:22:27.229619 mef 5253 R rec 9f06cf0c-8946-4313-9511-6dff75a6b736 -2023-07-08 08:22:27.32892 2023-07-08 08:22:27.32893 mef 5254 R rec b95a8eea-b4cc-41c9-b666-d3ff2bf78372 -2023-07-08 08:22:27.418559 2023-07-08 08:22:27.418572 mef 5255 R rec 658a6109-5fbd-4c9f-b69d-1e1f159ee7a8 -2023-07-08 08:22:27.510833 2023-07-08 08:22:27.51085 mef 5256 R rec 00627967-6bcc-4b33-8e33-3c327412cf4d -2023-07-08 08:22:27.617182 2023-07-08 08:22:27.617192 mef 5257 R rec 12081adb-62d6-47cc-8efe-6e4ec6d4f950 -2023-07-08 08:22:27.732267 2023-07-08 08:22:27.732277 mef 5258 R rec f17795d8-d1b5-4617-b001-efe088fad625 -2023-07-08 08:22:27.852072 2023-07-08 08:22:27.852084 mef 5259 R rec 8d4a82a2-a71d-4061-b9fa-4aa70cc1cb43 -2023-07-08 08:22:27.952255 2023-07-08 08:22:27.952269 mef 5260 R rec 25f3b685-8319-478c-9f66-1880182e0e43 -2023-07-08 08:22:28.03859 2023-07-08 08:22:28.0386 mef 5261 R rec 0b0db135-25a7-4b1c-a72e-95923b90b857 -2023-07-08 08:22:28.142572 2023-07-08 08:22:28.142584 mef 5262 R rec 8f3f486e-5840-4d7d-8c50-532383629e94 -2023-07-08 08:22:28.242734 2023-07-08 08:22:28.242744 mef 5263 R rec 4358ae6d-b809-4bc4-912f-4dc5d04a1957 -2023-07-08 08:22:28.335982 2023-07-08 08:22:28.335991 mef 5264 R rec 27101500-29e1-492d-9122-60354eb111ec -2023-07-08 08:22:28.429233 2023-07-08 08:22:28.429243 mef 5265 R rec ba762d8c-95bd-48c7-b474-5ef660a9aa98 -2023-07-08 08:22:28.529429 2023-07-08 08:22:28.52944 mef 5266 R rec a0eaa097-e62f-407f-aef3-a5d621d4048d -2023-07-08 08:22:28.661321 2023-07-08 08:22:28.661331 mef 5267 R rec 0a84e05e-d0fa-4cd0-84db-ac2e4c403433 -2023-07-08 08:22:28.766968 2023-07-08 08:22:28.766981 mef 5268 R rec 8cf84cdc-97be-42f6-a4f1-946c54c29e03 -2023-07-08 08:22:28.868707 2023-07-08 08:22:28.868712 mef 5269 R rec ccc218c2-4fd6-4e90-a050-50cde1498307 -2023-07-08 08:22:29.041035 2023-07-08 08:22:29.041042 mef 5270 R rec d21426a7-e15c-4718-aef5-bf9e2eabe15d -2023-07-08 08:22:29.155125 2023-07-08 08:22:29.155138 mef 5271 R rec 7ba67120-b273-4ff5-a4da-0158cb92fa14 -2023-07-08 08:22:29.26807 2023-07-08 08:22:29.268081 mef 5272 R rec 66f7da13-fd07-4b50-9c96-ceea93438b87 -2023-07-08 08:22:29.382236 2023-07-08 08:22:29.382252 mef 5273 R rec 7711a37c-462d-4f11-91b3-c0fde7c693d8 -2023-07-08 08:22:29.501653 2023-07-08 08:22:29.501666 mef 5274 R rec 5874996f-9ec9-432e-a0be-356b76f30d32 -2023-07-08 08:22:29.618899 2023-07-08 08:22:29.618908 mef 5275 R rec 95fc30aa-5d55-4337-b9cc-2755057cf646 -2023-07-08 08:22:29.728589 2023-07-08 08:22:29.728603 mef 5276 R rec 550bdccc-1996-4309-ad73-a2c3726bb122 -2023-07-08 08:22:29.836955 2023-07-08 08:22:29.836964 mef 5277 R rec 88aeb2d9-e3f2-407e-8a4a-05a6c1f2eb91 -2023-07-08 08:22:29.938261 2023-07-08 08:22:29.938272 mef 5278 R rec 674e9ced-cc07-48d6-8528-8cef893df321 -2023-07-08 08:22:30.03724 2023-07-08 08:22:30.037254 mef 5279 R rec c7d0dcee-8302-4cad-9d63-4e3afec5f5cd -2023-07-08 08:22:30.135323 2023-07-08 08:22:30.135335 mef 5280 R rec fd68f6b0-7ea0-4654-ab80-472cc691ec20 -2023-07-08 08:22:30.321745 2023-07-08 08:22:30.321757 mef 5281 R rec 1c73eaf8-d523-41a0-9f21-8d8ce35caa53 -2023-07-08 08:22:30.428347 2023-07-08 08:22:30.428362 mef 5282 R rec 24a0d039-4c06-4579-a300-77374ddc0f22 -2023-07-08 08:22:30.527409 2023-07-08 08:22:30.527419 mef 5283 R rec 768461cc-50c8-4bcc-bb85-bc0763cb3dd8 -2023-07-08 08:22:30.630282 2023-07-08 08:22:30.630292 mef 5284 R rec 7d1288c2-a7d2-40a7-88dd-52f8438e0eb3 -2023-07-08 08:22:30.787334 2023-07-08 08:22:30.787344 mef 5285 R rec 86885f78-4e88-4cf0-8d5e-929f689eb0dd -2023-07-08 08:22:30.903148 2023-07-08 08:22:30.903159 mef 5286 R rec 30005710-ee82-4660-99c0-07fd5048cc30 -2023-07-08 08:22:31.031461 2023-07-08 08:22:31.031473 mef 5287 R rec 6a468ce9-463c-4405-b598-f9658bcd2362 -2023-07-08 08:22:31.129853 2023-07-08 08:22:31.129863 mef 5288 R rec cdcaaa8a-5491-4521-bc30-d4c444cb8506 -2023-07-08 08:22:31.217264 2023-07-08 08:22:31.217276 mef 5289 R rec 40cc0267-301c-42d3-8118-d918ef5e3483 -2023-07-08 08:22:31.318631 2023-07-08 08:22:31.318643 mef 5290 R rec 8c8b0c27-763d-41b3-b46d-a0e91bbace63 -2023-07-08 08:22:31.432347 2023-07-08 08:22:31.432358 mef 5291 R rec b29549cb-4bd0-47ed-a851-2bc398810f2d -2023-07-08 08:22:31.555898 2023-07-08 08:22:31.555912 mef 5292 R rec d6547b27-6379-4f51-bd18-b0f78f70528e -2023-07-08 08:22:31.666025 2023-07-08 08:22:31.666034 mef 5293 R rec 83b0578f-832e-407d-b392-4da36a794685 -2023-07-08 08:22:31.751025 2023-07-08 08:22:31.751038 mef 5294 R rec 1e9986a3-aa60-4200-8dea-4b26561f6b20 -2023-07-08 08:22:31.858875 2023-07-08 08:22:31.858889 mef 5295 R rec 9bb72e41-cac5-4507-81f3-c1ea31d44c3b -2023-07-08 08:22:31.956254 2023-07-08 08:22:31.956264 mef 5296 R rec ddc5c123-b996-41cb-ba11-a00d52de7eb5 -2023-07-08 08:22:32.057401 2023-07-08 08:22:32.057412 mef 5297 R rec 517921a5-1588-4e77-962b-e1dc57dd9f44 -2023-07-08 08:22:32.171817 2023-07-08 08:22:32.171827 mef 5298 R rec ca1b5abe-2b03-43d8-b69e-e929cf9efc87 -2023-07-08 08:22:32.277102 2023-07-08 08:22:32.277113 mef 5299 R rec a2c09f15-8851-42c6-966e-b72f1840594a -2023-07-08 08:22:32.37653 2023-07-08 08:22:32.376545 mef 5300 R rec 67c5d252-e26a-4586-90ac-82a13626417c -2023-07-08 08:22:32.479372 2023-07-08 08:22:32.479381 mef 5301 R rec c9525892-6f71-4208-8a2e-2bc5485fef2c -2023-07-08 08:22:32.579211 2023-07-08 08:22:32.579223 mef 5302 R rec 58d416f4-a1fd-4101-b911-25f4e348515e -2023-07-08 08:22:32.688577 2023-07-08 08:22:32.688582 mef 5303 R rec 14628d84-1ddb-4e56-920a-e6ced37c1440 -2023-07-08 08:22:32.894288 2023-07-08 08:22:32.8943 mef 5304 R rec a54d5d85-bd8f-4414-9b99-f433dfeac222 -2023-07-08 08:22:32.994595 2023-07-08 08:22:32.994604 mef 5305 R rec d6351bca-8cbf-4c5c-8790-3bc561195e48 -2023-07-08 08:22:33.081349 2023-07-08 08:22:33.081359 mef 5306 R rec 5ee3b67b-37c8-4aee-ac6d-c821dfe07d92 -2023-07-08 08:22:33.178706 2023-07-08 08:22:33.178717 mef 5307 R rec 1800290d-69bd-4e0d-bed4-578777892f33 -2023-07-08 08:22:33.285616 2023-07-08 08:22:33.285625 mef 5308 R rec 5e462964-9fdb-4f98-93de-26dcc4ea958f -2023-07-08 08:22:33.384167 2023-07-08 08:22:33.384179 mef 5309 R rec 37c6d60d-5044-401b-9fee-5eb0c8bb1380 -2023-07-08 08:22:33.482168 2023-07-08 08:22:33.482177 mef 5310 R rec b8f3e946-20eb-4087-8ef7-456c1bfb71a2 -2023-07-08 08:22:33.5865 2023-07-08 08:22:33.586515 mef 5311 R rec decfd85c-de22-4b61-a95b-f36debd3e3e2 -2023-07-08 08:22:33.688481 2023-07-08 08:22:33.688493 mef 5312 R rec d59f2435-cfba-4a47-a315-c737478c0044 -2023-07-08 08:22:33.777145 2023-07-08 08:22:33.777156 mef 5313 R rec c002c075-14db-4b69-ab5f-4fe710131536 -2023-07-08 08:22:33.901322 2023-07-08 08:22:33.901332 mef 5314 R rec 65a149b8-a648-4b21-a98c-3dc808de13f8 -2023-07-08 08:22:34.163946 2023-07-08 08:22:34.163956 mef 5315 R rec 25c43005-8e67-4bf1-b360-ea066079ac19 -2023-07-08 08:22:34.278307 2023-07-08 08:22:34.278317 mef 5316 R rec 2f22535e-d919-42a6-a25f-02e4e08be4c4 -2023-07-08 08:22:34.398781 2023-07-08 08:22:34.398792 mef 5317 R rec aa3f4f43-4474-4b4e-8b7a-a8784327c291 -2023-07-08 08:22:34.517882 2023-07-08 08:22:34.517888 mef 5318 R rec 94a3bca5-c426-4b4a-9c63-b57508e63355 -2023-07-08 08:22:34.649761 2023-07-08 08:22:34.649771 mef 5319 R rec 6dd2140f-ceb0-4905-9d6d-e4d4b47573fc -2023-07-08 08:22:34.771566 2023-07-08 08:22:34.771583 mef 5320 R rec 2e2b414c-ec19-4cc7-980a-cff4b475e4c5 -2023-07-08 08:22:34.894418 2023-07-08 08:22:34.894428 mef 5321 R rec 4bc95f87-ff3d-4f1d-9691-8365a2c3ac41 -2023-07-08 08:22:35.030105 2023-07-08 08:22:35.030114 mef 5322 R rec 4aa6fe1e-4295-402c-bd91-483c7fdbdfb2 -2023-07-08 08:22:35.170779 2023-07-08 08:22:35.170796 mef 5323 R rec 546c0f5c-a0e4-4e16-9f6a-b187638eb8a3 -2023-07-08 08:22:35.278306 2023-07-08 08:22:35.278318 mef 5324 R rec 7b612d32-da39-49a3-bee8-45a4dd3547e4 -2023-07-08 08:22:35.403667 2023-07-08 08:22:35.403677 mef 5325 R rec ee7fadf0-cc15-4ed5-88dc-683284abfde0 -2023-07-08 08:22:35.517363 2023-07-08 08:22:35.517378 mef 5326 R rec c7faad24-39f3-4b91-b807-7ad5595a240f -2023-07-08 08:22:35.641951 2023-07-08 08:22:35.641965 mef 5327 R rec f333a712-ec7e-4332-b7c0-ee0db1a3a532 -2023-07-08 08:22:35.756456 2023-07-08 08:22:35.756465 mef 5328 R rec ce9e5383-f51b-4db5-8dda-8f7d731e63f5 -2023-07-08 08:22:35.879882 2023-07-08 08:22:35.879894 mef 5329 R rec 6cbf2ce8-6dd5-40fc-9c7a-b311b25a2565 -2023-07-08 08:22:36.001233 2023-07-08 08:22:36.001243 mef 5330 R rec 076d36fe-4985-4ee2-949c-de92417f82c6 -2023-07-08 08:22:36.129498 2023-07-08 08:22:36.129508 mef 5331 R rec 08a60c55-d589-410b-93a6-fb8d2e047259 -2023-07-08 08:22:36.252201 2023-07-08 08:22:36.252217 mef 5332 R rec 7e8b1841-e87e-4a0b-9d75-8a950772c027 -2023-07-08 08:22:36.374166 2023-07-08 08:22:36.37418 mef 5333 R rec 939854bd-4858-4fbc-99df-c5562556df67 -2023-07-08 08:22:36.481086 2023-07-08 08:22:36.481095 mef 5334 R rec c9925f86-3064-4d1e-9393-58f872cca9fb -2023-07-08 08:22:36.595393 2023-07-08 08:22:36.595403 mef 5335 R rec 3ea79842-c716-4ce8-9ce4-ebc5e9086982 -2023-07-08 08:22:36.716676 2023-07-08 08:22:36.71668 mef 5336 R rec bfd8dd7d-290f-4ca6-9407-bf50dbe06512 -2023-07-08 08:22:36.818095 2023-07-08 08:22:36.818111 mef 5337 R rec 059d63c3-9ccb-4585-98e2-d929971a44fc -2023-07-08 08:22:36.941019 2023-07-08 08:22:36.941035 mef 5338 R rec dd75cd03-5ff6-4a4c-b6f1-08a19bc596c0 -2023-07-08 08:22:37.068263 2023-07-08 08:22:37.068277 mef 5339 R rec fe9e0f40-584f-4356-9844-6e99645a539a -2023-07-08 08:22:37.183958 2023-07-08 08:22:37.183969 mef 5340 R rec 2a85bc77-a7e2-4339-a498-8654e2a95cc3 -2023-07-08 08:22:37.297208 2023-07-08 08:22:37.297218 mef 5341 R rec 693b6d19-80f6-4e9b-99ec-6927f7a9b053 -2023-07-08 08:22:37.41407 2023-07-08 08:22:37.414081 mef 5342 R rec 34e19be6-9785-423a-870b-3cc532d2277d -2023-07-08 08:22:37.530029 2023-07-08 08:22:37.530039 mef 5343 R rec 90db74cc-322d-48cd-bca9-f9fc6f8a27b7 -2023-07-08 08:22:37.647268 2023-07-08 08:22:37.647277 mef 5344 R rec 954a7a91-42f2-446d-b18c-3f2873e3825f -2023-07-08 08:22:37.767806 2023-07-08 08:22:37.76782 mef 5345 R rec 76a0d54a-56d3-4742-9624-d51e776f918b -2023-07-08 08:22:37.872857 2023-07-08 08:22:37.872866 mef 5346 R rec df740993-f1b2-428e-88d5-74372aebefc1 -2023-07-08 08:22:37.97644 2023-07-08 08:22:37.976449 mef 5347 R rec 3f3aec57-1e8b-49c1-af45-1222397960ac -2023-07-08 08:22:38.072588 2023-07-08 08:22:38.072599 mef 5348 R rec 25507c47-5054-4b77-9116-b074b9f5b23e -2023-07-08 08:22:38.183547 2023-07-08 08:22:38.183562 mef 5349 R rec ef27846e-e044-447a-a8df-a6e63a1cc394 -2023-07-08 08:22:38.298564 2023-07-08 08:22:38.298573 mef 5350 R rec cc8f5651-c6b4-463d-bb68-f6918ed0b442 -2023-07-08 08:22:38.409332 2023-07-08 08:22:38.409347 mef 5351 R rec 9d1d1a55-d997-4007-a630-9b1adb02e0a7 -2023-07-08 08:22:38.524654 2023-07-08 08:22:38.524664 mef 5352 R rec f62de8f0-9e8a-4f14-9034-2138d85a83d0 -2023-07-08 08:22:38.640216 2023-07-08 08:22:38.640232 mef 5353 R rec 5bbc59f7-20e7-43b0-8079-cb98cc25bf47 -2023-07-08 08:22:38.742711 2023-07-08 08:22:38.742721 mef 5354 R rec 2c4412c1-5b1d-42f2-8c0d-aaab74ddd2ba -2023-07-08 08:22:38.843284 2023-07-08 08:22:38.843295 mef 5355 R rec b452db1b-28f2-4eb4-8959-327bde5c6474 -2023-07-08 08:22:38.971546 2023-07-08 08:22:38.971562 mef 5356 R rec 330ba020-c0d9-42a1-a70d-3ee8254f8e41 -2023-07-08 08:22:39.071676 2023-07-08 08:22:39.071686 mef 5357 R rec cbbbacf5-8269-4f81-89c3-e13ca69e3ea8 -2023-07-08 08:22:39.172485 2023-07-08 08:22:39.172494 mef 5358 R rec 6b50021a-b3ed-40a2-800e-0fc7e95b5c1e -2023-07-08 08:22:39.281654 2023-07-08 08:22:39.281668 mef 5359 R rec 94ffd849-3278-455f-8162-e39889477deb -2023-07-08 08:22:39.398453 2023-07-08 08:22:39.39847 mef 5360 R rec d84529e9-a64e-43c8-b278-8b96843d52ff -2023-07-08 08:22:39.515023 2023-07-08 08:22:39.515032 mef 5361 R rec 21dda769-ada0-479a-9d57-733d098176f5 -2023-07-08 08:22:39.637569 2023-07-08 08:22:39.637572 mef 5362 R rec a1ae7a5a-1040-46be-a133-5e3d5e724a89 -2023-07-08 08:22:39.743447 2023-07-08 08:22:39.743461 mef 5363 R rec 8f4389db-1112-43ef-a776-45df158534bf -2023-07-08 08:22:39.842024 2023-07-08 08:22:39.842039 mef 5364 R rec 80fbb4c2-22eb-4def-a423-a33ca07e7592 -2023-07-08 08:22:39.944423 2023-07-08 08:22:39.944434 mef 5365 R rec c1d93c26-f01c-4057-bb82-2841466cda65 -2023-07-08 08:22:40.032165 2023-07-08 08:22:40.032175 mef 5366 R rec c4f30de2-31f1-4355-8a41-270f1464efb5 -2023-07-08 08:22:40.132078 2023-07-08 08:22:40.132094 mef 5367 R rec 9c3b6a54-b7c9-47e4-95a8-7bdde6baaf49 -2023-07-08 08:22:40.23923 2023-07-08 08:22:40.23924 mef 5368 R rec 167df801-5645-45e0-af6f-e232ee2abcb2 -2023-07-08 08:22:40.355262 2023-07-08 08:22:40.355718 mef 5369 R rec 0f18a802-5dec-4536-a868-43aa42f6908f -2023-07-08 08:22:40.462924 2023-07-08 08:22:40.462933 mef 5370 R rec e481431b-a75d-45dc-a65c-63bec06ba553 -2023-07-08 08:22:40.5814 2023-07-08 08:22:40.581411 mef 5371 R rec 4a7dd706-e6aa-40d6-aed3-b93030e6bb9f -2023-07-08 08:22:40.671436 2023-07-08 08:22:40.671448 mef 5372 R rec b2d32e35-bc1f-4e05-9bf2-59aef75c4a44 -2023-07-08 08:22:40.778315 2023-07-08 08:22:40.778327 mef 5373 R rec 108be8be-3e59-4529-9b3f-a8ce7f9f8097 -2023-07-08 08:22:40.877649 2023-07-08 08:22:40.877654 mef 5374 R rec 0f3f4fa9-08dd-482e-95d9-c188cc07c191 -2023-07-08 08:22:40.984213 2023-07-08 08:22:40.984227 mef 5375 R rec ffa5d224-3b44-475b-9190-4291152d6b2c -2023-07-08 08:22:41.096229 2023-07-08 08:22:41.09624 mef 5376 R rec a2197628-989c-4ec4-8d4a-c76690c0850e -2023-07-08 08:22:41.189791 2023-07-08 08:22:41.189803 mef 5377 R rec 315700c7-a935-4e4a-b1b0-e854da09c0a8 -2023-07-08 08:22:41.312186 2023-07-08 08:22:41.312198 mef 5378 R rec da0512af-0b9e-4cc3-96f4-4b85ea8b9e41 -2023-07-08 08:22:41.413333 2023-07-08 08:22:41.413345 mef 5379 R rec f9b98424-0257-4a12-87a5-b5f9791b72ea -2023-07-08 08:22:41.517482 2023-07-08 08:22:41.517491 mef 5380 R rec 804759f9-1972-4fa3-a011-474a31de1cb9 -2023-07-08 08:22:41.612197 2023-07-08 08:22:41.612207 mef 5381 R rec 109c2294-eb40-4567-b421-fd7d22a3eca9 -2023-07-08 08:22:41.705788 2023-07-08 08:22:41.70581 mef 5382 R rec 71f7aff7-7eb9-488f-901c-e1b15b71d58c -2023-07-08 08:22:41.806147 2023-07-08 08:22:41.806162 mef 5383 R rec ff185eb4-6bfe-4cf1-a902-f1445795f518 -2023-07-08 08:22:41.912869 2023-07-08 08:22:41.912872 mef 5384 R rec 679a7e3d-5692-4d7e-8dae-09206a90f7c9 -2023-07-08 08:22:41.998982 2023-07-08 08:22:41.998994 mef 5385 R rec 36caf194-91a3-460b-8289-27ec92753ced -2023-07-08 08:22:42.097926 2023-07-08 08:22:42.09794 mef 5386 R rec d611d579-7d22-4c98-8def-e18371ac670d -2023-07-08 08:22:42.218516 2023-07-08 08:22:42.218533 mef 5387 R rec 160f7066-81ba-4577-bce7-f4509518c7db -2023-07-08 08:22:42.346456 2023-07-08 08:22:42.346465 mef 5388 R rec 15189592-9380-45d8-aeef-60f6cefd2c00 -2023-07-08 08:22:42.443998 2023-07-08 08:22:42.444011 mef 5389 R rec ac864b55-10e2-4e0f-96d9-01e682b7d466 -2023-07-08 08:22:42.561202 2023-07-08 08:22:42.561214 mef 5390 R rec ad35f73b-2121-49f6-9702-1885e821ee32 -2023-07-08 08:22:42.678025 2023-07-08 08:22:42.678036 mef 5391 R rec 7325d7c4-ef9a-4133-97a2-7c7df9396972 -2023-07-08 08:22:42.777013 2023-07-08 08:22:42.777022 mef 5392 R rec d4c66aa2-f250-4910-a597-fac2ab390a50 -2023-07-08 08:22:42.88822 2023-07-08 08:22:42.888232 mef 5393 R rec f75bb3e7-c64c-46f6-8cbd-152263b339b2 -2023-07-08 08:22:43.00777 2023-07-08 08:22:43.007785 mef 5394 R rec bfb73fd6-08e0-4a47-8294-a8ef19a4738f -2023-07-08 08:22:43.115764 2023-07-08 08:22:43.115774 mef 5395 R rec 3a7bcd34-b026-4e9c-9222-acf4bfb6f751 -2023-07-08 08:22:43.222752 2023-07-08 08:22:43.222769 mef 5396 R rec f4cfaa4f-4ecd-494f-af24-61d41b5bb0ee -2023-07-08 08:22:43.345645 2023-07-08 08:22:43.345657 mef 5397 R rec b986840f-bf5c-457b-80d8-8260d5c5589b -2023-07-08 08:22:43.457295 2023-07-08 08:22:43.457307 mef 5398 R rec 3ad30943-7a22-47ae-8d64-13ed81923ff2 -2023-07-08 08:22:43.56598 2023-07-08 08:22:43.565992 mef 5399 R rec 1eee0def-fb55-4d0c-8c7a-566f6e5d231c -2023-07-08 08:22:43.678606 2023-07-08 08:22:43.678616 mef 5400 R rec 952622a3-bf53-4c69-9b8c-0c22b91d2923 -2023-07-08 08:22:43.783228 2023-07-08 08:22:43.783239 mef 5401 R rec 4c26306a-540c-49b5-b21b-1b9af8c11b1a -2023-07-08 08:22:43.880255 2023-07-08 08:22:43.880266 mef 5402 R rec 2cab5e50-1b51-4523-8c86-a6ab6ecc4839 -2023-07-08 08:22:43.970991 2023-07-08 08:22:43.971006 mef 5403 R rec 18392dcd-9da7-4796-9146-277e672a1348 -2023-07-08 08:22:44.08491 2023-07-08 08:22:44.084925 mef 5404 R rec a278472d-0841-4e18-a425-df996c81aa83 -2023-07-08 08:22:44.202258 2023-07-08 08:22:44.202276 mef 5405 R rec 81fc12fe-ccee-4f05-8893-79f9a23cbb8e -2023-07-08 08:22:44.313422 2023-07-08 08:22:44.313434 mef 5406 R rec db63735d-8fb2-43d2-bf54-b65fc1f013f5 -2023-07-08 08:22:44.428061 2023-07-08 08:22:44.428074 mef 5407 R rec dd8c504f-b0df-4e27-bbbb-6a74511b2d2b -2023-07-08 08:22:44.5384 2023-07-08 08:22:44.538415 mef 5408 R rec 9112b144-3d2e-4010-85f2-eca135d4b4f8 -2023-07-08 08:22:44.649374 2023-07-08 08:22:44.649384 mef 5409 R rec 150e7a15-29aa-4986-b854-6fa665b840cf -2023-07-08 08:22:44.738024 2023-07-08 08:22:44.738036 mef 5410 R rec 78618cb9-4516-44d0-b08b-d24ca8d5bc89 -2023-07-08 08:22:44.837497 2023-07-08 08:22:44.837508 mef 5411 R rec 987c8ba6-74f4-4d2b-9c7e-b7034e1ca2ef -2023-07-08 08:22:44.946252 2023-07-08 08:22:44.946264 mef 5412 R rec 40659940-9164-46b9-9d2b-cdab6e4eedca -2023-07-08 08:22:45.049449 2023-07-08 08:22:45.049461 mef 5413 R rec 938c31b2-79d6-46e4-89ba-eb398bedb8d4 -2023-07-08 08:22:45.163381 2023-07-08 08:22:45.163398 mef 5414 R rec 2b9a98d6-06a4-41b3-96d9-efdabb7df67c -2023-07-08 08:22:45.272326 2023-07-08 08:22:45.27234 mef 5415 R rec 185ceb2c-835b-47ee-870b-a39211e13795 -2023-07-08 08:22:45.39026 2023-07-08 08:22:45.390277 mef 5416 R rec 64bbee36-dba9-456d-86b5-bc62e073aeb5 -2023-07-08 08:22:45.524659 2023-07-08 08:22:45.524669 mef 5417 R rec 3478b1b0-f7e4-48b6-a30c-08b03f395eb9 -2023-07-08 08:22:45.631542 2023-07-08 08:22:45.631551 mef 5418 R rec d4896b36-d06a-4f1e-8a27-9454342591e0 -2023-07-08 08:22:45.735041 2023-07-08 08:22:45.73505 mef 5419 R rec 1bd9e81b-98e7-4ef2-aaad-9a998f625d6e -2023-07-08 08:22:45.840074 2023-07-08 08:22:45.840084 mef 5420 R rec 7f837035-3794-4f79-80ba-1667c2e22cfd -2023-07-08 08:22:45.963676 2023-07-08 08:22:45.963693 mef 5421 R rec 85e08584-8c27-4277-8135-cdd01ab1e200 -2023-07-08 08:22:46.086073 2023-07-08 08:22:46.086085 mef 5422 R rec b54e7bf6-f7dc-4d66-9818-e49a9ff3525c -2023-07-08 08:22:46.209149 2023-07-08 08:22:46.20916 mef 5423 R rec 72dd192b-137a-4fe8-8fa1-b08a8b858ad0 -2023-07-08 08:22:46.329817 2023-07-08 08:22:46.329831 mef 5424 R rec e77e0eaf-9804-4798-9508-a6b1b44b0327 -2023-07-08 08:22:46.452171 2023-07-08 08:22:46.452186 mef 5425 R rec 06596450-798e-4b5b-975b-1d59da385e40 -2023-07-08 08:22:46.584102 2023-07-08 08:22:46.584112 mef 5426 R rec 32a02c64-bca1-4aea-9d84-be9a60deb4b4 -2023-07-08 08:22:46.692619 2023-07-08 08:22:46.692633 mef 5427 R rec 93407fb7-9776-4a0c-9636-7c84d7ed5eae -2023-07-08 08:22:46.798868 2023-07-08 08:22:46.798885 mef 5428 R rec f4adfad6-7dcc-4460-aa2d-2441d73a2ae1 -2023-07-08 08:22:46.935484 2023-07-08 08:22:46.935495 mef 5429 R rec 51b424e1-d3bd-4785-99bb-13115d642c5c -2023-07-08 08:22:47.051306 2023-07-08 08:22:47.051318 mef 5430 R rec 85b9c51a-548a-42c2-92e0-4c01a6a485bd -2023-07-08 08:22:47.195159 2023-07-08 08:22:47.19517 mef 5431 R rec 2766da17-db3a-4a52-8e7a-2aa4f6ca2238 -2023-07-08 08:22:47.334851 2023-07-08 08:22:47.334861 mef 5432 R rec 4500f094-5633-4486-b5db-435c7d69c966 -2023-07-08 08:22:47.470205 2023-07-08 08:22:47.470216 mef 5433 R rec 1821cabd-301e-4f00-91d5-c417ca9f0b17 -2023-07-08 08:22:47.604254 2023-07-08 08:22:47.60426 mef 5434 R rec ae91327b-b218-47f5-98c2-8ac14e3ccad5 -2023-07-08 08:22:47.700841 2023-07-08 08:22:47.700846 mef 5435 R rec 47f7415e-107e-422c-9315-cb6445494c64 -2023-07-08 08:22:47.782394 2023-07-08 08:22:47.782398 mef 5436 R rec 0fe146a3-74f6-48a0-bcdc-5102ff0667cb -2023-07-08 08:22:47.859851 2023-07-08 08:22:47.859856 mef 5437 R rec 9ae0d30d-325d-43ae-bd32-5a99819090e2 -2023-07-08 08:22:47.929376 2023-07-08 08:22:47.929381 mef 5438 R rec b92c0f7f-eb94-4596-8601-bba180a006b5 -2023-07-08 08:22:48.019245 2023-07-08 08:22:48.019255 mef 5439 R rec 13c394f2-dfad-40fd-9e03-b7ea0154ca1c -2023-07-08 08:22:48.113006 2023-07-08 08:22:48.113012 mef 5440 R rec 0dbd3391-d70a-485a-bef9-712042924ff5 -2023-07-08 08:22:48.183522 2023-07-08 08:22:48.183526 mef 5441 R rec e09e0123-7573-440f-9a1c-7c18b563a885 -2023-07-08 08:22:48.251491 2023-07-08 08:22:48.251499 mef 5442 R rec f82e1e42-0c52-4db2-944b-1ec220f6591a -2023-07-08 08:22:48.338549 2023-07-08 08:22:48.338561 mef 5443 R rec 4e4c133d-6569-4f04-9975-cd1292a6dd30 -2023-07-08 08:22:48.437835 2023-07-08 08:22:48.437845 mef 5444 R rec 034691cf-d60d-4dea-b15e-94c49ffc221d -2023-07-08 08:22:48.51801 2023-07-08 08:22:48.518024 mef 5445 R rec 731a335d-4b8a-4766-b24b-62c33f832459 -2023-07-08 08:22:48.612608 2023-07-08 08:22:48.61262 mef 5446 R rec 6fcb5b5e-136e-4025-b235-6ac47eb6950e -2023-07-08 08:22:48.693645 2023-07-08 08:22:48.69365 mef 5447 R rec 571d9c8a-a221-4a63-9e77-73736afbad7d -2023-07-08 08:22:48.763049 2023-07-08 08:22:48.763053 mef 5448 R rec 19633c81-f9ee-4a0c-996b-44cf9fa80526 -2023-07-08 08:22:48.843871 2023-07-08 08:22:48.843883 mef 5449 R rec b0263d98-4119-4eb7-b79c-38139fc82247 -2023-07-08 08:22:48.941969 2023-07-08 08:22:48.941979 mef 5450 R rec 3fcc0305-59d3-453d-a5fe-8d5508c7e363 -2023-07-08 08:22:49.038922 2023-07-08 08:22:49.038933 mef 5451 R rec 5c7e1ce8-e96b-4daa-a7f7-b286da717f52 -2023-07-08 08:22:49.123949 2023-07-08 08:22:49.123954 mef 5452 R rec 4d1222f7-ced8-42a7-91b1-9e814a5d2a62 -2023-07-08 08:22:49.203466 2023-07-08 08:22:49.203478 mef 5453 R rec 5dfff31c-7f6d-4523-9e6a-63f61eba7c49 -2023-07-08 08:22:49.297294 2023-07-08 08:22:49.297304 mef 5454 R rec 5bff2145-118f-4559-9422-3a3034c95658 -2023-07-08 08:22:49.383857 2023-07-08 08:22:49.383868 mef 5455 R rec b95e2e60-856d-44d4-a83b-af5483f90fcc -2023-07-08 08:22:49.469517 2023-07-08 08:22:49.469531 mef 5456 R rec d40bf95f-9033-4fa7-a7b4-f5bb7ad85826 -2023-07-08 08:22:49.560944 2023-07-08 08:22:49.560956 mef 5457 R rec 49f59806-c20b-4739-9be5-c37a96cf9fb5 -2023-07-08 08:22:49.642697 2023-07-08 08:22:49.642702 mef 5458 R rec b6c2be47-63ee-479b-8518-019c3433028f -2023-07-08 08:22:49.705697 2023-07-08 08:22:49.705702 mef 5459 R rec a7632fb8-8f01-4c9d-ad51-71a19525a127 -2023-07-08 08:22:49.786255 2023-07-08 08:22:49.786259 mef 5460 R rec e1243c1c-7bdf-42cf-a274-8a0383f8ace9 -2023-07-08 08:22:49.868434 2023-07-08 08:22:49.86845 mef 5461 R rec 0accd760-ecf1-47ac-aba9-9e6bb1d0149a -2023-07-08 08:22:49.96028 2023-07-08 08:22:49.96029 mef 5462 R rec 6cbc9eda-6379-4b99-9252-270ccab2621b -2023-07-08 08:22:50.062987 2023-07-08 08:22:50.062996 mef 5463 R rec 5a6891c5-3915-4f36-a01d-1e7826f98e40 -2023-07-08 08:22:50.144209 2023-07-08 08:22:50.144214 mef 5464 R rec 91b77279-cfe6-4186-85fb-99c06883712f -2023-07-08 08:22:50.23211 2023-07-08 08:22:50.232124 mef 5465 R rec fe67672f-e4c4-4921-be9e-afb58b6918b1 -2023-07-08 08:22:50.330314 2023-07-08 08:22:50.330325 mef 5466 R rec 63b50fe9-024b-4298-93db-eaf89aceda29 -2023-07-08 08:22:50.444273 2023-07-08 08:22:50.444289 mef 5467 R rec ea50d52f-0335-4272-8cbf-4a048a5745cb -2023-07-08 08:22:50.540124 2023-07-08 08:22:50.540133 mef 5468 R rec 65275c93-a3cf-4281-a531-c61613fca30b -2023-07-08 08:22:50.630243 2023-07-08 08:22:50.630247 mef 5469 R rec eefe6391-fd0d-4de9-929f-cee1d3f7f749 -2023-07-08 08:22:50.718302 2023-07-08 08:22:50.718319 mef 5470 R rec 78b62688-6dfd-4870-af5f-9e3f92b52515 -2023-07-08 08:22:50.805229 2023-07-08 08:22:50.805239 mef 5471 R rec 0e439e85-2539-42e1-b49f-4a836d41fabc -2023-07-08 08:22:50.908653 2023-07-08 08:22:50.908663 mef 5472 R rec 9a072710-1493-4fd9-8841-54b6e7e1bd0d -2023-07-08 08:22:50.99485 2023-07-08 08:22:50.994861 mef 5473 R rec 1234729f-407e-4dba-acbf-e0bf28a1317e -2023-07-08 08:22:51.078825 2023-07-08 08:22:51.078838 mef 5474 R rec 02dbe4b6-7900-48ca-9fdb-b3bb9c95ae49 -2023-07-08 08:22:51.163991 2023-07-08 08:22:51.164006 mef 5475 R rec 9440c37b-1a04-40da-bb79-3038f9d65f2b -2023-07-08 08:22:51.251722 2023-07-08 08:22:51.251735 mef 5476 R rec de7c2fc4-8a1f-4d0d-9a23-0a72f4b65ddb -2023-07-08 08:22:51.349632 2023-07-08 08:22:51.349644 mef 5477 R rec d0d936c4-7d96-4e21-91f8-badd4b81eb7a -2023-07-08 08:22:51.440617 2023-07-08 08:22:51.440628 mef 5478 R rec 8cf58f54-52bd-4ef3-ae4b-881f07466cd2 -2023-07-08 08:22:51.556661 2023-07-08 08:22:51.556671 mef 5479 R rec 3f6cda2f-f2f0-4181-b94a-afa838ae5f5e -2023-07-08 08:22:51.644369 2023-07-08 08:22:51.644374 mef 5480 R rec b5e08472-31b0-46ec-9499-dbb3ead7895e -2023-07-08 08:22:51.731923 2023-07-08 08:22:51.731941 mef 5481 R rec da5805a2-a1e6-420e-9bbf-e02d995f0bbe -2023-07-08 08:22:51.837528 2023-07-08 08:22:51.837534 mef 5482 R rec d0a05f63-5874-450e-ae23-374932707a39 -2023-07-08 08:22:51.94183 2023-07-08 08:22:51.941835 mef 5483 R rec 0d1f1c72-5305-4652-9dd6-a7bef5b46578 -2023-07-08 08:22:52.038357 2023-07-08 08:22:52.038372 mef 5484 R rec d857a8b7-afaf-4435-abb9-aa68c16e59a8 -2023-07-08 08:22:52.125608 2023-07-08 08:22:52.125618 mef 5485 R rec 0cfb4a5b-9dc6-4487-997b-7e4d7da9f9ba -2023-07-08 08:22:52.193432 2023-07-08 08:22:52.19344 mef 5486 R rec 6ab8f216-f61c-4e58-9328-0fa495d07847 -2023-07-08 08:22:52.279561 2023-07-08 08:22:52.279572 mef 5487 R rec 4ca753ed-ff7f-4d2f-8e57-826a443427fe -2023-07-08 08:22:52.377639 2023-07-08 08:22:52.377649 mef 5488 R rec fb94f2f3-628d-402c-913e-6ad5a599de3e -2023-07-08 08:22:52.467615 2023-07-08 08:22:52.467625 mef 5489 R rec 48817927-42e0-424f-ba8a-6433d21a5600 -2023-07-08 08:22:52.557813 2023-07-08 08:22:52.557826 mef 5490 R rec 44fef5e3-a06d-4a93-9150-ddf0fc9bac9c -2023-07-08 08:22:52.651463 2023-07-08 08:22:52.651476 mef 5491 R rec b06d1282-e053-4ffa-a31e-1cbf2a9d0347 -2023-07-08 08:22:52.745529 2023-07-08 08:22:52.745535 mef 5492 R rec f36a5081-99b0-4825-b370-976f5c14357a -2023-07-08 08:22:52.819241 2023-07-08 08:22:52.819249 mef 5493 R rec 937240ce-c461-43dd-8406-542effd64abd -2023-07-08 08:22:52.913654 2023-07-08 08:22:52.913672 mef 5494 R rec e337704a-b221-4070-8449-590ca96e9cd8 -2023-07-08 08:22:53.000015 2023-07-08 08:22:53.00002 mef 5495 R rec 777a2d11-443c-4b64-8349-b382d4f9451e -2023-07-08 08:22:53.087692 2023-07-08 08:22:53.087703 mef 5496 R rec af5bb319-354c-4850-a8c6-89d803c5d2a4 -2023-07-08 08:22:53.192029 2023-07-08 08:22:53.192048 mef 5497 R rec 19c0a476-2f62-43a2-9d1e-5f7d14bf0c8e -2023-07-08 08:22:53.283636 2023-07-08 08:22:53.283646 mef 5498 R rec eb1a108c-991c-4fbc-9d5e-3ad706addffe -2023-07-08 08:22:53.37192 2023-07-08 08:22:53.37193 mef 5499 R rec a9fb2e58-b407-4b03-8550-6d100a723776 -2023-07-08 08:22:53.453739 2023-07-08 08:22:53.453743 mef 5500 R rec 60ef0b4f-a904-44b5-88aa-55f46327d3e2 -2023-07-08 08:22:53.540572 2023-07-08 08:22:53.540582 mef 5501 R rec 702daa58-bb98-40cd-b454-ab8892b7f8ab -2023-07-08 08:22:53.612967 2023-07-08 08:22:53.612972 mef 5502 R rec 4d8f6b37-fe6b-422e-87b2-ea0a7a31d7df -2023-07-08 08:22:53.692779 2023-07-08 08:22:53.692792 mef 5503 R rec 4a4ef858-f1e1-47e8-be5e-b08725a2cc18 -2023-07-08 08:22:53.779239 2023-07-08 08:22:53.779244 mef 5504 R rec c90cb177-3e2f-4b17-b8ca-42c6a7be0124 -2023-07-08 08:22:53.852103 2023-07-08 08:22:53.85211 mef 5505 R rec ad66a4fb-3059-4356-b8de-cf649b57fd4d -2023-07-08 08:22:53.936078 2023-07-08 08:22:53.936088 mef 5506 R rec d3df44a7-ba57-46a8-a6ea-d7fb95115e06 -2023-07-08 08:22:54.026968 2023-07-08 08:22:54.026979 mef 5507 R rec 70ec90c1-8792-43aa-867b-571b04755417 -2023-07-08 08:22:54.127119 2023-07-08 08:22:54.127124 mef 5508 R rec 0bd6275f-96f8-440a-87be-342b6608d675 -2023-07-08 08:22:54.232847 2023-07-08 08:22:54.232857 mef 5509 R rec 1075788b-7055-463b-83c5-62ae1b6dd65f -2023-07-08 08:22:54.32252 2023-07-08 08:22:54.322529 mef 5510 R rec de0fb83e-8edc-49ba-aca3-7793a1c6f972 -2023-07-08 08:22:54.409021 2023-07-08 08:22:54.409037 mef 5511 R rec ffc30849-b7f9-4a1e-89e8-18a2e96b9cac -2023-07-08 08:22:54.5006 2023-07-08 08:22:54.500612 mef 5512 R rec 4a15da31-2e42-4f52-8b65-b7c7b4cb680e -2023-07-08 08:22:54.593488 2023-07-08 08:22:54.5935 mef 5513 R rec e907cbb5-58e5-4eb0-a6aa-7cc998c66e64 -2023-07-08 08:22:54.756117 2023-07-08 08:22:54.756133 mef 5514 R rec 3d117133-39af-459b-9967-e4153830450b -2023-07-08 08:22:54.835668 2023-07-08 08:22:54.835677 mef 5515 R rec 954e1764-060b-4201-97a4-8ee31b35fa93 -2023-07-08 08:22:54.932438 2023-07-08 08:22:54.932448 mef 5516 R rec d58f273a-55f1-47c9-b729-67b057639e76 -2023-07-08 08:22:55.09794 2023-07-08 08:22:55.097951 mef 5517 R rec 9bb25c1f-0d5d-4e7f-92cb-0cc50303baf3 -2023-07-08 08:22:55.166423 2023-07-08 08:22:55.166428 mef 5518 R rec 3fbefc86-51dd-49e6-823a-a802a118aabf -2023-07-08 08:22:55.252791 2023-07-08 08:22:55.252801 mef 5519 R rec 15b5ff7d-f29c-4f04-a1f0-c144b8f7c79a -2023-07-08 08:22:55.33361 2023-07-08 08:22:55.333629 mef 5520 R rec fee6f406-ebc9-43f4-a9e0-ea553905d4b5 -2023-07-08 08:22:55.413303 2023-07-08 08:22:55.413307 mef 5521 R rec 684c691a-9fe4-476d-ad4f-6fa931a462e7 -2023-07-08 08:22:55.489915 2023-07-08 08:22:55.489919 mef 5522 R rec 969415ec-3acb-43a7-995d-b574ae56d8a7 -2023-07-08 08:22:55.57443 2023-07-08 08:22:55.574433 mef 5523 R rec 6d46ab9a-68c8-4aa1-a789-6264817e9c4b -2023-07-08 08:22:55.643464 2023-07-08 08:22:55.643468 mef 5524 R rec c48ba722-8555-4159-bdf1-44b931a1913c -2023-07-08 08:22:55.719559 2023-07-08 08:22:55.719569 mef 5525 R rec 4ba1b15b-d5c8-4bb1-b844-8d5be0669753 -2023-07-08 08:22:55.807048 2023-07-08 08:22:55.807051 mef 5526 R rec 4b3785b8-3a33-4d29-8c51-10ab6b0267d8 -2023-07-08 08:22:55.88526 2023-07-08 08:22:55.885273 mef 5527 R rec 6e4bc3e7-64c0-4005-8925-5dc75ceab80e -2023-07-08 08:22:55.976903 2023-07-08 08:22:55.976908 mef 5528 R rec b46c9f77-69d0-4288-b6bf-6910d196256f -2023-07-08 08:22:56.068522 2023-07-08 08:22:56.068533 mef 5529 R rec a480e2a2-c6a7-4d89-8ab8-a894c9a183fe -2023-07-08 08:22:56.149658 2023-07-08 08:22:56.149662 mef 5530 R rec 564533da-4e97-429e-ad57-fa4b56106ab2 -2023-07-08 08:22:56.213833 2023-07-08 08:22:56.213842 mef 5531 R rec 8f7cd063-0218-40e5-8dd7-d8fcb2b2cbab -2023-07-08 08:22:56.302291 2023-07-08 08:22:56.3023 mef 5532 R rec 63f99931-8861-4f37-a359-dca515de2a44 -2023-07-08 08:22:56.483751 2023-07-08 08:22:56.483764 mef 5533 R rec b00f40b1-7b07-49ac-ac96-697f7b95b337 -2023-07-08 08:22:56.561694 2023-07-08 08:22:56.561699 mef 5534 R rec 007a67ca-a733-4e9e-83e6-aef1fa6ee1cb -2023-07-08 08:22:56.638891 2023-07-08 08:22:56.638896 mef 5535 R rec 86eade6e-9016-4427-985d-31e851ad60a7 -2023-07-08 08:22:56.72634 2023-07-08 08:22:56.726351 mef 5536 R rec b5dbf058-2a28-4c0f-8b3d-fe998c64c4a3 -2023-07-08 08:22:56.82433 2023-07-08 08:22:56.824334 mef 5537 R rec 16d3c023-c6ba-447d-bf93-d3e704dd3713 -2023-07-08 08:22:56.916993 2023-07-08 08:22:56.917003 mef 5538 R rec e37507a6-02aa-4ad5-a930-d0db5a0c8028 -2023-07-08 08:22:57.006825 2023-07-08 08:22:57.006836 mef 5539 R rec c31259e6-f8e7-47f6-8586-8c25df1edbbf -2023-07-08 08:22:57.114211 2023-07-08 08:22:57.114215 mef 5540 R rec b30f74b7-ca84-43df-97bd-24dd5a4af53d -2023-07-08 08:22:57.20853 2023-07-08 08:22:57.208543 mef 5541 R rec bfb0c444-9d5a-4e2f-8996-ff0d7db00bbd -2023-07-08 08:22:57.291126 2023-07-08 08:22:57.291155 mef 5542 R rec 2291851c-814e-4238-8331-049d8aa06410 -2023-07-08 08:22:57.376617 2023-07-08 08:22:57.376626 mef 5543 R rec 9f50fc53-ac95-43b0-a596-8366c5edd5b1 -2023-07-08 08:22:57.457602 2023-07-08 08:22:57.457606 mef 5544 R rec 460476cb-9119-4b41-aa03-966d223aace3 -2023-07-08 08:22:57.532569 2023-07-08 08:22:57.532581 mef 5545 R rec ce6e6d80-d05e-45a6-b3f7-ed63a829dff3 -2023-07-08 08:22:57.614867 2023-07-08 08:22:57.614882 mef 5546 R rec 0804e194-e427-4979-96a5-c9eda0d3da16 -2023-07-08 08:22:57.713626 2023-07-08 08:22:57.713634 mef 5547 R rec 57010bd2-bffd-42bc-bae2-30f2168bdbfb -2023-07-08 08:22:57.791942 2023-07-08 08:22:57.791947 mef 5548 R rec 0dd71d0d-a954-4703-ac8b-e142d0de1886 -2023-07-08 08:22:57.866713 2023-07-08 08:22:57.866723 mef 5549 R rec dd53cf32-11dc-47c4-bb58-445a2cce1af7 -2023-07-08 08:22:57.948596 2023-07-08 08:22:57.948606 mef 5550 R rec e84f490a-076c-4e3e-a844-696cb08031b9 -2023-07-08 08:22:58.031299 2023-07-08 08:22:58.031304 mef 5551 R rec 26ff1dd4-ab57-40d5-9bb2-b77431e21862 -2023-07-08 08:22:58.13627 2023-07-08 08:22:58.136276 mef 5552 R rec 34ffc58b-538c-4e42-b377-833c36cb2158 -2023-07-08 08:22:58.213325 2023-07-08 08:22:58.213336 mef 5553 R rec 2c70c5bd-a374-439c-a093-2005da3e62ee -2023-07-08 08:22:58.302705 2023-07-08 08:22:58.302717 mef 5554 R rec 6fe44660-7388-45d2-a503-50f0437502da -2023-07-08 08:22:58.390765 2023-07-08 08:22:58.39077 mef 5555 R rec c389d518-a211-4eb4-b433-eb0a72a070db -2023-07-08 08:22:58.470246 2023-07-08 08:22:58.470261 mef 5556 R rec d95f59f8-d318-4bf9-83e2-7fa372b31ada -2023-07-08 08:22:58.566 2023-07-08 08:22:58.566011 mef 5557 R rec 61444a54-277c-49dc-8cdf-93ce238c8d5c -2023-07-08 08:22:58.648623 2023-07-08 08:22:58.648627 mef 5558 R rec c292d7c4-14fa-4afc-b6c9-66704ad19b11 -2023-07-08 08:22:58.728362 2023-07-08 08:22:58.728372 mef 5559 R rec 8f909baf-6d7d-4cf0-9fb2-2950906dadea -2023-07-08 08:22:58.826098 2023-07-08 08:22:58.826108 mef 5560 R rec 65c45396-97a6-4a77-8fc7-f7ab8b834149 -2023-07-08 08:22:58.915241 2023-07-08 08:22:58.915246 mef 5561 R rec 9c814cd3-46c7-45f9-b80b-60c4039148c9 -2023-07-08 08:22:59.009518 2023-07-08 08:22:59.009534 mef 5562 R rec 6c2a95c3-08c3-4f7e-8b95-0e6245244e7e -2023-07-08 08:22:59.105289 2023-07-08 08:22:59.105305 mef 5563 R rec c775989a-4521-4be2-93ca-3833048b6f70 -2023-07-08 08:22:59.187661 2023-07-08 08:22:59.187673 mef 5564 R rec e8f09a48-3a53-469f-8597-92f6293aeec1 -2023-07-08 08:22:59.266772 2023-07-08 08:22:59.266776 mef 5565 R rec 32273e36-80f3-4930-a4d4-1871af904dbc -2023-07-08 08:22:59.444695 2023-07-08 08:22:59.444705 mef 5566 R rec f8542c0a-11d2-4672-a5fd-90ce413b5fb8 -2023-07-08 08:22:59.536893 2023-07-08 08:22:59.536901 mef 5567 R rec d01870c2-add7-4eb1-bf1a-2416172837fd -2023-07-08 08:22:59.623665 2023-07-08 08:22:59.623678 mef 5568 R rec 83dcd367-fd21-4e0f-adb4-f6b911f85f3e -2023-07-08 08:22:59.706081 2023-07-08 08:22:59.706096 mef 5569 R rec afe8f9ba-5f18-418d-a239-58efae270833 -2023-07-08 08:22:59.792403 2023-07-08 08:22:59.792413 mef 5570 R rec 8df4dc7b-cbf5-459e-ab4f-272803ebc13c -2023-07-08 08:22:59.889618 2023-07-08 08:22:59.889628 mef 5571 R rec dcc3333d-2769-4590-87ed-5ec1274c9b4a -2023-07-08 08:22:59.97398 2023-07-08 08:22:59.973992 mef 5572 R rec 86394fbe-6723-41a5-8599-5cd9497abec6 -2023-07-08 08:23:00.071559 2023-07-08 08:23:00.07157 mef 5573 R rec 1c768147-e5cb-4b0d-b2f2-d920c6502cf3 -2023-07-08 08:23:00.149817 2023-07-08 08:23:00.149822 mef 5574 R rec d3a1751b-8863-4972-997e-07c8751fb68e -2023-07-08 08:23:00.224084 2023-07-08 08:23:00.224089 mef 5575 R rec d0876d31-821e-4057-a517-7bac6cf02bff -2023-07-08 08:23:00.299243 2023-07-08 08:23:00.299257 mef 5576 R rec e2174199-e7c9-4bcb-a05d-9ec2a934fe7b -2023-07-08 08:23:00.392953 2023-07-08 08:23:00.392957 mef 5577 R rec 5888eb2c-033b-4c08-a613-e6bba3d29e50 -2023-07-08 08:23:00.462296 2023-07-08 08:23:00.462305 mef 5578 R rec 8eb4bae3-84d3-426f-890f-71c7332e8a86 -2023-07-08 08:23:00.543384 2023-07-08 08:23:00.543388 mef 5579 R rec 076a7840-ef62-4fb6-afc0-58b4815589d2 -2023-07-08 08:23:00.633188 2023-07-08 08:23:00.6332 mef 5580 R rec 1e00cf9a-5113-47de-ab74-2928d94ffff6 -2023-07-08 08:23:00.72805 2023-07-08 08:23:00.728062 mef 5581 R rec 6db36733-134b-4f0e-8f60-bea7cdbf25c4 -2023-07-08 08:23:00.863577 2023-07-08 08:23:00.863583 mef 5582 R rec 5579198b-d2c3-4543-a1e6-4eb5a871db3e -2023-07-08 08:23:00.958341 2023-07-08 08:23:00.958361 mef 5583 R rec a4959580-af1e-4f99-bcb0-6ef2e9539cde -2023-07-08 08:23:01.04979 2023-07-08 08:23:01.049803 mef 5584 R rec 01407ff0-bb3e-44ae-b25a-ea6ca5bd3d86 -2023-07-08 08:23:01.133543 2023-07-08 08:23:01.133548 mef 5585 R rec 39d057cc-7050-4056-90b4-36b213928213 -2023-07-08 08:23:01.198372 2023-07-08 08:23:01.198379 mef 5586 R rec a46aec46-0e23-428b-aa63-46cee46ae51a -2023-07-08 08:23:01.285416 2023-07-08 08:23:01.285429 mef 5587 R rec 487c2a7c-2630-476b-a299-29104033c353 -2023-07-08 08:23:01.401304 2023-07-08 08:23:01.401309 mef 5588 R rec 17907373-fd3b-4a91-bb96-bf1176b813d8 -2023-07-08 08:23:01.488165 2023-07-08 08:23:01.488174 mef 5589 R rec 1b35826f-10a8-441a-ae88-e9122f9dbe88 -2023-07-08 08:23:01.568797 2023-07-08 08:23:01.568806 mef 5590 R rec df88db41-e2f2-4da6-bf75-58d0f344d726 -2023-07-08 08:23:01.650331 2023-07-08 08:23:01.650335 mef 5591 R rec 07616ce6-6913-48da-a7b3-1a56fd85bdd2 -2023-07-08 08:23:01.753595 2023-07-08 08:23:01.753613 mef 5592 R rec 7d4d4517-9d0e-4ffb-b6ed-a411bd462654 -2023-07-08 08:23:01.851778 2023-07-08 08:23:01.851791 mef 5593 R rec e83c34d5-9cc6-469b-b8a1-605a25b686ff -2023-07-08 08:23:01.939117 2023-07-08 08:23:01.939122 mef 5594 R rec 3e16907f-ce82-4a40-bc51-62f54265ec2d -2023-07-08 08:23:02.014709 2023-07-08 08:23:02.014715 mef 5595 R rec 3e822420-8406-4ff5-921e-8718b6aba877 -2023-07-08 08:23:02.108306 2023-07-08 08:23:02.108311 mef 5596 R rec f418c0e3-9d9a-45c9-b159-96b49c20e81d -2023-07-08 08:23:02.19054 2023-07-08 08:23:02.190546 mef 5597 R rec 4eed65b5-0579-47ea-b38d-10af05b8a526 -2023-07-08 08:23:02.282927 2023-07-08 08:23:02.282932 mef 5598 R rec 4eab0f9e-95ee-4ae6-b639-eb6aeec87ab0 -2023-07-08 08:23:02.378297 2023-07-08 08:23:02.378306 mef 5599 R rec af9c6bd6-32dc-4d31-91ca-2c95bfb95b4d -2023-07-08 08:23:02.470303 2023-07-08 08:23:02.470317 mef 5600 R rec 17f06580-7839-4b38-8f6f-ac545c0011ae -2023-07-08 08:23:02.556672 2023-07-08 08:23:02.556689 mef 5601 R rec 86647e6d-7819-4fd1-8395-b89668cd320f -2023-07-08 08:23:02.641365 2023-07-08 08:23:02.641371 mef 5602 R rec 67564977-caa3-4c15-9914-180f3394ea7d -2023-07-08 08:23:02.719301 2023-07-08 08:23:02.719315 mef 5603 R rec 4063057a-1ec4-49f0-9857-0a104b7b89e7 -2023-07-08 08:23:02.805545 2023-07-08 08:23:02.805573 mef 5604 R rec acfa7bde-13f0-414d-be0c-0013cfedd780 -2023-07-08 08:23:02.882384 2023-07-08 08:23:02.882388 mef 5605 R rec ad996b56-e067-4340-aa4e-9edce517b0cb -2023-07-08 08:23:02.962522 2023-07-08 08:23:02.962534 mef 5606 R rec 50a4469b-cf29-4c71-adfc-b1987c97d4dc -2023-07-08 08:23:03.050001 2023-07-08 08:23:03.050005 mef 5607 R rec 67eb6f92-80df-4b08-a71f-ff665893287f -2023-07-08 08:23:03.143527 2023-07-08 08:23:03.143532 mef 5608 R rec 116de26d-fce8-4151-b23b-47b4f3b19799 -2023-07-08 08:23:03.240758 2023-07-08 08:23:03.240768 mef 5609 R rec 7cf0e51c-0cf5-4b82-989d-76833f535e26 -2023-07-08 08:23:03.343959 2023-07-08 08:23:03.343966 mef 5610 R rec 1aac52ca-19ad-41ee-9732-a24658cb0180 -2023-07-08 08:23:03.431259 2023-07-08 08:23:03.431269 mef 5611 R rec 3d969698-200f-405d-9bc7-9fdc610c2c9b -2023-07-08 08:23:03.521932 2023-07-08 08:23:03.521942 mef 5612 R rec 58456d45-635d-4624-b4f3-8f3e5deac91a -2023-07-08 08:23:03.634113 2023-07-08 08:23:03.63413 mef 5613 R rec 7986e9e5-6f2c-44a0-84d6-b16c4e2cc48a -2023-07-08 08:23:03.741754 2023-07-08 08:23:03.741766 mef 5614 R rec 0f360eb7-fd5f-4e64-ba3f-f92688944e73 -2023-07-08 08:23:03.813223 2023-07-08 08:23:03.813228 mef 5615 R rec 63cb923d-07d0-46bf-95f8-25fe11f11827 -2023-07-08 08:23:03.902699 2023-07-08 08:23:03.902709 mef 5616 R rec 99cf7723-1530-4676-b7d4-08019a9cfa6e -2023-07-08 08:23:03.98596 2023-07-08 08:23:03.985969 mef 5617 R rec ed063723-09a8-4dc8-a35f-8e2f741f9a25 -2023-07-08 08:23:04.07495 2023-07-08 08:23:04.07496 mef 5618 R rec 7ece07b2-98f4-4c33-9953-033777095ea1 -2023-07-08 08:23:04.25347 2023-07-08 08:23:04.253486 mef 5619 R rec 24db3c90-acb4-46ff-a9e8-8a5d904d4018 -2023-07-08 08:23:04.34225 2023-07-08 08:23:04.34226 mef 5620 R rec c65c703c-5c70-47b4-91dc-a2ec0528ea1c -2023-07-08 08:23:04.44524 2023-07-08 08:23:04.445253 mef 5621 R rec 87042b6d-0176-47c5-bac5-24ba0741c6bf -2023-07-08 08:23:04.534082 2023-07-08 08:23:04.534092 mef 5622 R rec 0ab6b196-9529-4185-a578-5ba5c8e37404 -2023-07-08 08:23:04.627324 2023-07-08 08:23:04.627335 mef 5623 R rec b92f76c2-b05b-4d0a-adb3-ba4ea26b5cd9 -2023-07-08 08:23:04.704237 2023-07-08 08:23:04.704242 mef 5624 R rec 32d2e2f7-e223-40b1-b8f8-2fbf8c996252 -2023-07-08 08:23:04.793521 2023-07-08 08:23:04.793525 mef 5625 R rec 4dc39aae-0749-48c7-b405-1fb0dea17f42 -2023-07-08 08:23:04.864453 2023-07-08 08:23:04.864457 mef 5626 R rec 47ef4a9c-f2a2-458b-8abb-ff45603242e7 -2023-07-08 08:23:04.96289 2023-07-08 08:23:04.962907 mef 5627 R rec 10bd7eae-e569-453b-be0e-b2c352f76499 -2023-07-08 08:23:05.055591 2023-07-08 08:23:05.055603 mef 5628 R rec baf4bfdc-ad16-475b-a58d-ebdd4db56d8d -2023-07-08 08:23:05.14358 2023-07-08 08:23:05.143585 mef 5629 R rec c7d4a1d6-98d6-4ce6-8f43-73b537093bdd -2023-07-08 08:23:05.227705 2023-07-08 08:23:05.227718 mef 5630 R rec 602bbce8-3ca9-4e0f-a6a4-61bbbf005a10 -2023-07-08 08:23:05.414609 2023-07-08 08:23:05.414613 mef 5631 R rec 9b022cab-64d5-43e0-b06f-1e0e3a905ec5 -2023-07-08 08:23:05.482697 2023-07-08 08:23:05.482701 mef 5632 R rec fad2cdae-3f14-4750-ac56-023ed7ae9a78 -2023-07-08 08:23:05.560638 2023-07-08 08:23:05.560644 mef 5633 R rec 4593c74a-ab6a-4b9f-9a80-66125ebf7162 -2023-07-08 08:23:05.635814 2023-07-08 08:23:05.635819 mef 5634 R rec 53ac73bd-4624-4132-8da6-97c4abdc02f6 -2023-07-08 08:23:05.705314 2023-07-08 08:23:05.705319 mef 5635 R rec 8fe18f74-1c27-445c-ac21-424df175cb99 -2023-07-08 08:23:05.78476 2023-07-08 08:23:05.784766 mef 5636 R rec 51630339-7696-45ad-a7e0-81a8d873d269 -2023-07-08 08:23:05.86616 2023-07-08 08:23:05.866167 mef 5637 R rec 3a7028a4-9ed9-4ff3-a55d-d870af44b77a -2023-07-08 08:23:05.946321 2023-07-08 08:23:05.946325 mef 5638 R rec 84696766-87d0-4a57-9b8f-9346d89fad38 -2023-07-08 08:23:06.018292 2023-07-08 08:23:06.018297 mef 5639 R rec 2cb2a340-5012-4d4d-b848-8cfc759cd69c -2023-07-08 08:23:06.103585 2023-07-08 08:23:06.10359 mef 5640 R rec 47365570-4b49-4b43-8e87-f893af0c71ec -2023-07-08 08:23:06.179274 2023-07-08 08:23:06.179278 mef 5641 R rec 963510e4-3c06-468c-b889-720038c7f383 -2023-07-08 08:23:06.246142 2023-07-08 08:23:06.246147 mef 5642 R rec fdbb33cc-a871-4242-b4f0-822230249390 -2023-07-08 08:23:06.31826 2023-07-08 08:23:06.318265 mef 5643 R rec d2b43002-a93e-40a8-adde-3965f7d7efe5 -2023-07-08 08:23:06.400975 2023-07-08 08:23:06.40098 mef 5644 R rec 6f74f2d5-a36b-4d78-b8db-677120b284bf -2023-07-08 08:23:06.476241 2023-07-08 08:23:06.476253 mef 5645 R rec e0484649-87e1-4c2f-8ea0-cb2426250627 -2023-07-08 08:23:06.568912 2023-07-08 08:23:06.568921 mef 5646 R rec 79662854-8e4b-4222-b8a5-5a2bf27b4deb -2023-07-08 08:23:06.657626 2023-07-08 08:23:06.657631 mef 5647 R rec 0067bbbb-4b05-4d8e-9044-62ae857765f2 -2023-07-08 08:23:06.744429 2023-07-08 08:23:06.744435 mef 5648 R rec 6e17cc5f-5c6b-495d-b1ee-f72f19ca66ed -2023-07-08 08:23:06.830691 2023-07-08 08:23:06.830705 mef 5649 R rec 6968d2a9-9c6b-4fbf-b44c-f8cfbcb7a235 -2023-07-08 08:23:06.932344 2023-07-08 08:23:06.932356 mef 5650 R rec 1ed3e7db-3cc8-4945-99f9-621595397d01 -2023-07-08 08:23:07.021116 2023-07-08 08:23:07.021131 mef 5651 R rec af494b39-1db3-40c5-a7c7-89944eb1a1ba -2023-07-08 08:23:07.107654 2023-07-08 08:23:07.107659 mef 5652 R rec 2dfeb123-cd14-41b4-a91e-47566bd79099 -2023-07-08 08:23:07.194049 2023-07-08 08:23:07.194061 mef 5653 R rec b1a1c996-5eb7-486c-8344-f4cc85d5bdfc -2023-07-08 08:23:07.288249 2023-07-08 08:23:07.288259 mef 5654 R rec 77f4e5cc-e2f4-4c1c-9d61-461694266e32 -2023-07-08 08:23:07.394756 2023-07-08 08:23:07.394769 mef 5655 R rec 2118c2ba-19bf-41f5-b059-0cd07f162cdf -2023-07-08 08:23:07.484633 2023-07-08 08:23:07.484645 mef 5656 R rec 5a8efeae-75d1-4e66-be56-04d13a67a18d -2023-07-08 08:23:07.583799 2023-07-08 08:23:07.583812 mef 5657 R rec bc9247ad-cd5e-47f9-8555-f2a688616724 -2023-07-08 08:23:07.680365 2023-07-08 08:23:07.68037 mef 5658 R rec 393e9593-7788-4c5e-afc5-e1385337a741 -2023-07-08 08:23:07.766417 2023-07-08 08:23:07.766427 mef 5659 R rec 6981555e-79f5-4f90-917e-dfabdfaf79ec -2023-07-08 08:23:07.869141 2023-07-08 08:23:07.869151 mef 5660 R rec 884d2ef9-cd6f-4386-ae73-bc3ef27b1457 -2023-07-08 08:23:07.971286 2023-07-08 08:23:07.971296 mef 5661 R rec 95882724-8ad6-4482-8ec8-c9b9001b2c88 -2023-07-08 08:23:08.099901 2023-07-08 08:23:08.099914 mef 5662 R rec 21169fb6-3d2b-4f72-88ae-099d50c45dab -2023-07-08 08:23:08.181913 2023-07-08 08:23:08.181917 mef 5663 R rec 950f91e0-1b1f-4bdb-8066-a09bd96e9363 -2023-07-08 08:23:08.282194 2023-07-08 08:23:08.282205 mef 5664 R rec 0b513190-f984-4578-abe8-616330f69cf3 -2023-07-08 08:23:08.426259 2023-07-08 08:23:08.426273 mef 5665 R rec 747aade2-7146-4bff-96f9-b9a1a777a1a2 -2023-07-08 08:23:08.541141 2023-07-08 08:23:08.541149 mef 5666 R rec 93e273fe-3d74-4121-b5a8-ec518a725151 -2023-07-08 08:23:08.661522 2023-07-08 08:23:08.661532 mef 5667 R rec c3ca14b6-9b44-4c08-bcb2-34182a90ddfe -2023-07-08 08:23:08.769617 2023-07-08 08:23:08.769627 mef 5668 R rec 8a9ca200-7984-43f8-9ada-cbcf1bdead6f -2023-07-08 08:23:08.889441 2023-07-08 08:23:08.889451 mef 5669 R rec 93eee564-2c19-4a2c-b90e-c968273afba7 -2023-07-08 08:23:08.99819 2023-07-08 08:23:08.998202 mef 5670 R rec 5f160114-c26d-4143-8058-a30601dd8d35 -2023-07-08 08:23:09.102112 2023-07-08 08:23:09.102125 mef 5671 R rec 023617d4-9b7d-4741-88eb-b0d124c20c26 -2023-07-08 08:23:09.217962 2023-07-08 08:23:09.217976 mef 5672 R rec a1892606-b747-4baa-b324-36d728aaaecf -2023-07-08 08:23:09.3321 2023-07-08 08:23:09.332113 mef 5673 R rec 3917f825-7223-457d-b9ef-e8f797e82c0a -2023-07-08 08:23:09.447267 2023-07-08 08:23:09.447277 mef 5674 R rec 643ae0e0-439e-4f41-9b08-a2c42b7b74c8 -2023-07-08 08:23:09.557169 2023-07-08 08:23:09.557183 mef 5675 R rec 7b33a06d-8bfa-49dd-9784-7427e962a202 -2023-07-08 08:23:09.67246 2023-07-08 08:23:09.672469 mef 5676 R rec 57b2b683-f8d9-4589-9410-1207594cfadf -2023-07-08 08:23:09.780438 2023-07-08 08:23:09.780452 mef 5677 R rec 490ac6eb-d2d6-4e18-bdeb-70ae16e29ad7 -2023-07-08 08:23:09.895603 2023-07-08 08:23:09.895613 mef 5678 R rec f484d51d-96b2-46b4-b859-a28eb598a1c8 -2023-07-08 08:23:10.032746 2023-07-08 08:23:10.032756 mef 5679 R rec d4d38723-3b23-4fcb-8501-1551e871c70d -2023-07-08 08:23:10.145026 2023-07-08 08:23:10.145039 mef 5680 R rec 8f5d9f63-dc37-451a-ba6f-fcadb54ce13d -2023-07-08 08:23:10.255987 2023-07-08 08:23:10.256013 mef 5681 R rec 2bfca16c-47b0-435e-b49d-34249152aea6 -2023-07-08 08:23:10.384303 2023-07-08 08:23:10.384313 mef 5682 R rec adcb994e-4444-4064-bb9c-e2479c0934df -2023-07-08 08:23:10.480719 2023-07-08 08:23:10.48073 mef 5683 R rec 8c822d8d-4ecc-4b01-91c4-1e82e78ac08d -2023-07-08 08:23:10.597641 2023-07-08 08:23:10.597654 mef 5684 R rec 167e85cc-f6aa-4494-a3d4-d7f328b7e8b3 -2023-07-08 08:23:10.745387 2023-07-08 08:23:10.745397 mef 5685 R rec 0405eb9d-8bb4-4d55-a480-a1929b266e52 -2023-07-08 08:23:10.894906 2023-07-08 08:23:10.894921 mef 5686 R rec ba61de09-2921-4cb3-9aaf-8a7f79865a79 -2023-07-08 08:23:11.01221 2023-07-08 08:23:11.01222 mef 5687 R rec 43743f4c-6591-45ad-9fc6-5f7782fc43bb -2023-07-08 08:23:11.139043 2023-07-08 08:23:11.139056 mef 5688 R rec 6098ea4b-8761-41b1-b13a-5478a0b020a7 -2023-07-08 08:23:11.260314 2023-07-08 08:23:11.260326 mef 5689 R rec 69175f58-f30d-4e7f-8d75-4f544022fb49 -2023-07-08 08:23:11.379655 2023-07-08 08:23:11.379666 mef 5690 R rec a0c1727a-5ca2-4da3-82b7-40b79417dcec -2023-07-08 08:23:11.511593 2023-07-08 08:23:11.511606 mef 5691 R rec e4a1f4dd-264a-4993-96d3-95afdefa386f -2023-07-08 08:23:11.626254 2023-07-08 08:23:11.626265 mef 5692 R rec afa879c5-3243-4671-8525-d3015242a6dc -2023-07-08 08:23:11.778839 2023-07-08 08:23:11.778845 mef 5693 R rec 3fc1152a-96d4-4e31-84e6-c01a3c1b36a0 -2023-07-08 08:23:11.905559 2023-07-08 08:23:11.905572 mef 5694 R rec 331ae5f0-ccbe-477f-82ba-7e427ca11364 -2023-07-08 08:23:12.028263 2023-07-08 08:23:12.028277 mef 5695 R rec 02cbfcd7-f3e8-4af9-8990-565c2db3a371 -2023-07-08 08:23:12.183525 2023-07-08 08:23:12.183536 mef 5696 R rec 824920e0-e10d-476e-bf22-ea4d3f1b71a2 -2023-07-08 08:23:12.325832 2023-07-08 08:23:12.325849 mef 5697 R rec 99952981-14b2-4c03-a519-9997ac925bb0 -2023-07-08 08:23:12.482347 2023-07-08 08:23:12.482357 mef 5698 R rec dda93458-757a-4120-ba35-8b8ec8b1faa2 -2023-07-08 08:23:12.590816 2023-07-08 08:23:12.590829 mef 5699 R rec 52417a87-2fee-4d4a-be05-1e5dc7daab48 -2023-07-08 08:23:12.697487 2023-07-08 08:23:12.697499 mef 5700 R rec 41d4f7df-1193-4bc7-80bd-93806bd492b6 -2023-07-08 08:23:12.810098 2023-07-08 08:23:12.810108 mef 5701 R rec 5a85667c-67b8-4543-a1af-aeca7adcdaa2 -2023-07-08 08:23:12.914874 2023-07-08 08:23:12.914886 mef 5702 R rec b8b0b15e-fa6f-4214-ae71-6fc1531dd30c -2023-07-08 08:23:13.030144 2023-07-08 08:23:13.030154 mef 5703 R rec ddde9015-0490-433a-9078-b13161cb9f50 -2023-07-08 08:23:13.15634 2023-07-08 08:23:13.156353 mef 5704 R rec e14615b6-99bd-4fae-b348-344d258f9321 -2023-07-08 08:23:13.254695 2023-07-08 08:23:13.254705 mef 5705 R rec d8f978cd-79f6-4b26-b17c-aac3cdee2876 -2023-07-08 08:23:13.358958 2023-07-08 08:23:13.35897 mef 5706 R rec 916427a9-f7c1-451b-a02c-7f3dda6af812 -2023-07-08 08:23:13.480312 2023-07-08 08:23:13.480325 mef 5707 R rec c1f92b36-1f09-405c-8c88-a266583ac7c5 -2023-07-08 08:23:13.582093 2023-07-08 08:23:13.582107 mef 5708 R rec 10d3c6e9-7fbb-482a-8a5a-026b719107f1 -2023-07-08 08:23:13.702276 2023-07-08 08:23:13.702286 mef 5709 R rec 6eedb75d-2772-4988-b6db-d7f9bdfd96c0 -2023-07-08 08:23:13.823729 2023-07-08 08:23:13.823738 mef 5710 R rec e8330100-19e8-4385-b905-49463c67c2e2 -2023-07-08 08:23:13.932091 2023-07-08 08:23:13.932104 mef 5711 R rec 9472cdbc-5996-4691-b69a-8ffe88a8a4c6 -2023-07-08 08:23:14.069572 2023-07-08 08:23:14.069582 mef 5712 R rec 0ce2bd35-7453-40e6-9c17-353514b6e284 -2023-07-08 08:23:14.189008 2023-07-08 08:23:14.189018 mef 5713 R rec 35aaf1ba-06ca-43b9-8612-5567068f62ae -2023-07-08 08:23:14.302867 2023-07-08 08:23:14.302882 mef 5714 R rec cf31f014-e345-4bf9-990e-114cdddd7467 -2023-07-08 08:23:14.478422 2023-07-08 08:23:14.478428 mef 5715 R rec 37850a67-4c9a-4e05-8d49-ca7e42bf9539 -2023-07-08 08:23:14.562949 2023-07-08 08:23:14.562955 mef 5716 R rec a23ae2db-7cc7-4bb5-ab4e-ce05855673d6 -2023-07-08 08:23:14.649296 2023-07-08 08:23:14.649301 mef 5717 R rec 024c9a2c-ae03-4737-8bb7-eeba18ee250f -2023-07-08 08:23:14.734887 2023-07-08 08:23:14.734901 mef 5718 R rec e14e92cf-6286-43d6-9253-415f5deeb1f4 -2023-07-08 08:23:14.838164 2023-07-08 08:23:14.838179 mef 5719 R rec d6da4599-9237-4b6c-8e93-12d0c8e3aacf -2023-07-08 08:23:14.952927 2023-07-08 08:23:14.952939 mef 5720 R rec 96e4a003-63bc-4054-a85b-73f9673d8876 -2023-07-08 08:23:15.062361 2023-07-08 08:23:15.062373 mef 5721 R rec 47afe77c-b9f5-4c83-8354-f3969e1c2e2e -2023-07-08 08:23:15.163974 2023-07-08 08:23:15.163988 mef 5722 R rec 1520b5f8-63e4-4c32-bdf3-ee5125afacd9 -2023-07-08 08:23:15.272237 2023-07-08 08:23:15.272246 mef 5723 R rec b551d4e1-2243-4268-89a4-e0a8fef48d98 -2023-07-08 08:23:15.388208 2023-07-08 08:23:15.388217 mef 5724 R rec 9b374dad-eef0-498f-a426-8208726ef0b7 -2023-07-08 08:23:15.488187 2023-07-08 08:23:15.488199 mef 5725 R rec 78864d9d-5381-46ed-b24b-9dfe195ee30d -2023-07-08 08:23:15.593513 2023-07-08 08:23:15.593525 mef 5726 R rec 55b4eb74-d2fa-493e-b3ee-0c6f0e553915 -2023-07-08 08:23:15.694798 2023-07-08 08:23:15.694809 mef 5727 R rec 9530e8ed-4dba-44c6-8e0f-e3e067829713 -2023-07-08 08:23:15.796486 2023-07-08 08:23:15.796497 mef 5728 R rec c88523a4-9dbe-4140-8e03-9669abfaa099 -2023-07-08 08:23:15.916069 2023-07-08 08:23:15.916079 mef 5729 R rec f0da67a3-b1f0-430c-acbc-c60a98338865 -2023-07-08 08:23:16.031494 2023-07-08 08:23:16.031507 mef 5730 R rec e1c3c5b1-f935-4c45-b4dc-40ceaa901452 -2023-07-08 08:23:16.13497 2023-07-08 08:23:16.134985 mef 5731 R rec 57047616-e153-4d9e-9b8e-13fa21512f45 -2023-07-08 08:23:16.241311 2023-07-08 08:23:16.241324 mef 5732 R rec a43dd22b-ebb7-4124-8a7f-a73458500281 -2023-07-08 08:23:16.347904 2023-07-08 08:23:16.347916 mef 5733 R rec 67ac0004-b424-4842-a8fc-8648b77e0a4f -2023-07-08 08:23:16.453868 2023-07-08 08:23:16.453884 mef 5734 R rec 4209f33e-87f1-4f20-93bf-14c12f19dc4e -2023-07-08 08:23:16.554898 2023-07-08 08:23:16.554913 mef 5735 R rec c1a071b9-8dab-4094-ae31-81b912841509 -2023-07-08 08:23:16.672219 2023-07-08 08:23:16.67223 mef 5736 R rec 94305075-169c-498b-a499-209fa48c5e99 -2023-07-08 08:23:16.78856 2023-07-08 08:23:16.788571 mef 5737 R rec 2cac1c72-d6f9-458f-a394-ae50030041ac -2023-07-08 08:23:16.916284 2023-07-08 08:23:16.916298 mef 5738 R rec 863d87f7-52f4-41d7-acba-6ca42441410a -2023-07-08 08:23:17.033728 2023-07-08 08:23:17.033737 mef 5739 R rec 24d236a1-f7bb-411f-a1d3-e57dacb86d6f -2023-07-08 08:23:17.146171 2023-07-08 08:23:17.146181 mef 5740 R rec 80a9f79e-7d51-404d-aa69-e7f0ad57d250 -2023-07-08 08:23:17.246946 2023-07-08 08:23:17.246958 mef 5741 R rec ba90107b-11c1-47da-a024-8689ea9b8fdb -2023-07-08 08:23:17.34766 2023-07-08 08:23:17.347675 mef 5742 R rec a0752678-5c11-4135-93c8-e3d194ff928b -2023-07-08 08:23:17.462173 2023-07-08 08:23:17.462188 mef 5743 R rec ea61db10-95c8-4ff9-b9e4-a8cb30c64ffa -2023-07-08 08:23:17.562441 2023-07-08 08:23:17.562456 mef 5744 R rec 85a1cd93-a44f-442b-9177-1b0dd1591614 -2023-07-08 08:23:17.669001 2023-07-08 08:23:17.669017 mef 5745 R rec 7b95b942-dca0-4bc3-9cff-84a4c048a207 -2023-07-08 08:23:17.768797 2023-07-08 08:23:17.768811 mef 5746 R rec 2111bc14-4863-460c-81eb-296ebe454871 -2023-07-08 08:23:17.883016 2023-07-08 08:23:17.883028 mef 5747 R rec 2695e36f-76f0-4821-bda1-bbcc41c31db7 -2023-07-08 08:23:17.979741 2023-07-08 08:23:17.979751 mef 5748 R rec 46517d68-50aa-4bca-806c-83db2419d668 -2023-07-08 08:23:18.080522 2023-07-08 08:23:18.080534 mef 5749 R rec 4f42abd3-e1f9-4b0d-9fc1-536ebf68c59b -2023-07-08 08:23:18.187626 2023-07-08 08:23:18.187636 mef 5750 R rec 8c171704-aaf0-401a-80e6-97998107bb7b -2023-07-08 08:23:18.281419 2023-07-08 08:23:18.281433 mef 5751 R rec e9c3166e-4672-4138-895b-c9e585659502 -2023-07-08 08:23:18.386593 2023-07-08 08:23:18.386605 mef 5752 R rec 916dc16f-3cba-4d06-bcf3-ec67429f5a27 -2023-07-08 08:23:18.509125 2023-07-08 08:23:18.509139 mef 5753 R rec ba42d9ab-cba8-411b-8701-f26fafbce998 -2023-07-08 08:23:18.628062 2023-07-08 08:23:18.628072 mef 5754 R rec 530cba58-ea28-4dbc-a9ce-2c1a9b07401a -2023-07-08 08:23:18.729147 2023-07-08 08:23:18.72916 mef 5755 R rec 4a3f0ee4-e32c-48ae-a586-c1a64ee0b826 -2023-07-08 08:23:18.851664 2023-07-08 08:23:18.851684 mef 5756 R rec f062288d-a35c-40f6-abd4-fd9366cc58ad -2023-07-08 08:23:18.962254 2023-07-08 08:23:18.962267 mef 5757 R rec 95220356-7730-45e9-8007-0966cc9f901b -2023-07-08 08:23:19.085629 2023-07-08 08:23:19.085644 mef 5758 R rec efcece15-6716-44eb-86a4-532951d51a1b -2023-07-08 08:23:19.194219 2023-07-08 08:23:19.194231 mef 5759 R rec b36733e9-859b-4653-8d9c-99cf7ebdeafa -2023-07-08 08:23:19.30283 2023-07-08 08:23:19.302845 mef 5760 R rec ee90742b-9718-470b-8783-d8f0fc11e228 -2023-07-08 08:23:19.410397 2023-07-08 08:23:19.410406 mef 5761 R rec 081182c2-7374-4cce-b8b3-d693e162a472 -2023-07-08 08:23:19.522074 2023-07-08 08:23:19.522085 mef 5762 R rec ce4a8380-a998-456b-93f6-fd0b608a220e -2023-07-08 08:23:19.630798 2023-07-08 08:23:19.630811 mef 5763 R rec f85353bb-c6a4-4358-9f84-0793fe3661c5 -2023-07-08 08:23:19.750351 2023-07-08 08:23:19.750366 mef 5764 R rec bacc4d5b-9fc0-4a5c-a422-0d8e1e253725 -2023-07-08 08:23:19.855737 2023-07-08 08:23:19.855777 mef 5765 R rec 0ef1b355-2681-4c39-b704-e05d76cd6100 -2023-07-08 08:23:19.966537 2023-07-08 08:23:19.966555 mef 5766 R rec a82e8d10-303d-4afa-bfda-bcc92f857de3 -2023-07-08 08:23:20.076379 2023-07-08 08:23:20.076392 mef 5767 R rec f198f030-57cf-4167-be7c-9afa63cd1320 -2023-07-08 08:23:20.210887 2023-07-08 08:23:20.210917 mef 5768 R rec 21f474a9-ad5b-4d8f-a6b9-9a87fc64c08a -2023-07-08 08:23:20.340863 2023-07-08 08:23:20.340874 mef 5769 R rec 003ce34a-9eeb-47e2-821c-9873c4122d05 -2023-07-08 08:23:20.464247 2023-07-08 08:23:20.464257 mef 5770 R rec a9bff400-7c4a-41d2-8337-8cd5fcf2d5a0 -2023-07-08 08:23:20.582814 2023-07-08 08:23:20.582823 mef 5771 R rec b31d2b59-6144-4adf-b628-b92457227a39 -2023-07-08 08:23:20.685049 2023-07-08 08:23:20.685059 mef 5772 R rec ab709cec-714f-47c1-8fd8-f12407fdebce -2023-07-08 08:23:20.790115 2023-07-08 08:23:20.790127 mef 5773 R rec f9e4d4df-41a5-4ff4-a23f-41fb2b258311 -2023-07-08 08:23:20.913497 2023-07-08 08:23:20.913514 mef 5774 R rec 73d2d230-722c-47e8-99bd-d25325825fba -2023-07-08 08:23:21.04862 2023-07-08 08:23:21.048634 mef 5775 R rec 072f6036-eaa8-426c-9597-9e0978944180 -2023-07-08 08:23:21.165343 2023-07-08 08:23:21.165353 mef 5776 R rec 90dfd6ae-9fcf-4bc7-a12e-f950bc455dc9 -2023-07-08 08:23:21.271737 2023-07-08 08:23:21.271748 mef 5777 R rec bf65e4e9-aa7d-41da-a720-4ff6be5f8dad -2023-07-08 08:23:21.376696 2023-07-08 08:23:21.376709 mef 5778 R rec 6540f250-f506-4549-ae6c-8ae232139efd -2023-07-08 08:23:21.479198 2023-07-08 08:23:21.479209 mef 5779 R rec 8679b694-67e0-4727-8cab-3f8aa0bcc38f -2023-07-08 08:23:21.575252 2023-07-08 08:23:21.575263 mef 5780 R rec 05699cb0-62e7-4944-90ca-d21fe4735d0d -2023-07-08 08:23:21.68272 2023-07-08 08:23:21.682733 mef 5781 R rec 83ed11e6-bf61-45ad-aecc-b51e0449b95d -2023-07-08 08:23:21.799658 2023-07-08 08:23:21.799673 mef 5782 R rec cfe5a864-baf7-41de-9014-ce9b1e4a3e73 -2023-07-08 08:23:21.900366 2023-07-08 08:23:21.900378 mef 5783 R rec db73abf4-0889-425c-9c7d-5cc0ab11e7e5 -2023-07-08 08:23:24.005519 2023-07-08 08:23:24.005524 mef 5784 R rec 2531a940-008b-484b-9286-9c23e8afe222 -2023-07-08 08:23:24.098622 2023-07-08 08:23:24.098627 mef 5785 R rec 76505a3f-0f3f-47f1-b835-aaaf689e19f0 -2023-07-08 08:23:24.15982 2023-07-08 08:23:24.159825 mef 5786 R rec 4e3a4538-626a-408c-94af-15f344b5cc8e -2023-07-08 08:23:24.221354 2023-07-08 08:23:24.221362 mef 5787 R rec b8708cbf-284f-464a-9ed0-69d49052593d -2023-07-08 08:23:24.304524 2023-07-08 08:23:24.304539 mef 5788 R rec 638e1c31-ffb6-427f-a4ad-543949c60711 -2023-07-08 08:23:24.40749 2023-07-08 08:23:24.407505 mef 5789 R rec 65549a1a-174d-4d19-be0d-783263168e29 -2023-07-08 08:23:24.630442 2023-07-08 08:23:24.630453 mef 5790 R rec d8c40582-18d3-4fc0-b61b-b2a841fb64be -2023-07-08 08:23:24.729043 2023-07-08 08:23:24.729055 mef 5791 R rec aa9481e0-89d8-4114-bf77-512620dc23da -2023-07-08 08:23:24.819684 2023-07-08 08:23:24.819695 mef 5792 R rec e8a29237-00d7-4671-8f32-96520a692a7d -2023-07-08 08:23:24.912263 2023-07-08 08:23:24.912278 mef 5793 R rec 8625553e-33d3-4696-8664-d941327afc30 -2023-07-08 08:23:24.99972 2023-07-08 08:23:24.999732 mef 5794 R rec 3ea7c3c6-2836-4bc3-b962-c0c6500aaa18 -2023-07-08 08:23:25.094663 2023-07-08 08:23:25.094677 mef 5795 R rec 3db8b3be-d75a-414c-90a5-5ffc435edcf6 -2023-07-08 08:23:25.203173 2023-07-08 08:23:25.203184 mef 5796 R rec 58e7a41d-d951-4c4c-99e8-5e51e5788384 -2023-07-08 08:23:25.304383 2023-07-08 08:23:25.304396 mef 5797 R rec 034ea355-7732-4c17-9a8f-7bd40c1207ca -2023-07-08 08:23:25.407715 2023-07-08 08:23:25.407728 mef 5798 R rec 531cf267-e782-4bac-9845-e37646cd4fc1 -2023-07-08 08:23:25.510301 2023-07-08 08:23:25.510314 mef 5799 R rec c1c46151-4ecc-4292-9d81-5f1009cbc8f8 -2023-07-08 08:23:25.608779 2023-07-08 08:23:25.608792 mef 5800 R rec cea09775-b1a1-49d1-8b5c-8785cb200761 -2023-07-08 08:23:25.714445 2023-07-08 08:23:25.714457 mef 5801 R rec a902120a-72c2-4e48-a6b7-ada10504443f -2023-07-08 08:23:25.922393 2023-07-08 08:23:25.922405 mef 5802 R rec 7e78c5d8-bb28-4df5-997f-d9cadc70b4d1 -2023-07-08 08:23:26.022362 2023-07-08 08:23:26.022372 mef 5803 R rec be6ecdd3-bac2-4c81-88f3-ddee9434069c -2023-07-08 08:23:26.135425 2023-07-08 08:23:26.135437 mef 5804 R rec 6d9115c3-ea49-4ee5-be47-7e9b000d1335 -2023-07-08 08:23:26.23518 2023-07-08 08:23:26.235194 mef 5805 R rec 91f203f1-6ed0-4c0e-b7e5-c27928a25583 -2023-07-08 08:23:26.345268 2023-07-08 08:23:26.345278 mef 5806 R rec 2ba23250-3775-4f59-a198-debea61fedcc -2023-07-08 08:23:26.437426 2023-07-08 08:23:26.437439 mef 5807 R rec 7abd2af1-2422-48fd-ba6e-02272b2e8d1b -2023-07-08 08:23:26.54351 2023-07-08 08:23:26.543525 mef 5808 R rec e17280c2-7e86-4b29-81c2-a148aab03c2f -2023-07-08 08:23:26.646563 2023-07-08 08:23:26.646575 mef 5809 R rec 0500af2b-f03a-40f9-81e7-2a3ad956deec -2023-07-08 08:23:26.747828 2023-07-08 08:23:26.747839 mef 5810 R rec 0442723e-8242-4154-ac0b-a35e1977618b -2023-07-08 08:23:26.843757 2023-07-08 08:23:26.84377 mef 5811 R rec e66b1f38-67a9-431f-a822-ee4554006f2d -2023-07-08 08:23:26.942197 2023-07-08 08:23:26.942212 mef 5812 R rec a7bf192d-2170-4b47-978a-9f106ae6c41e -2023-07-08 08:23:27.101786 2023-07-08 08:23:27.101791 mef 5813 R rec 4cef7de0-9ea6-4b17-8951-f41e88872d47 -2023-07-08 08:23:27.17051 2023-07-08 08:23:27.170518 mef 5814 R rec 6d76cc9e-ddc1-40e9-b277-08d9b5119494 -2023-07-08 08:23:27.249025 2023-07-08 08:23:27.249036 mef 5815 R rec cc5f4ea3-7f37-43b0-8fc9-8043a0ce42c2 -2023-07-08 08:23:27.340245 2023-07-08 08:23:27.340258 mef 5816 R rec 0cdb6258-47ba-4e1e-b4a9-9f13c59ac91e -2023-07-08 08:23:27.45137 2023-07-08 08:23:27.451384 mef 5817 R rec d49711f7-53bb-41db-a49c-32b56adcdf5a -2023-07-08 08:23:27.564437 2023-07-08 08:23:27.564448 mef 5818 R rec 2ae9f37b-c070-4d49-a41b-83d5c22bc87d -2023-07-08 08:23:27.66719 2023-07-08 08:23:27.667201 mef 5819 R rec c9e1a732-c6eb-41ab-aa45-e7911c56a725 -2023-07-08 08:23:27.900255 2023-07-08 08:23:27.900268 mef 5820 R rec a24bfb98-ce4c-4ff8-983b-d7bc2c1c0d0a -2023-07-08 08:23:28.02632 2023-07-08 08:23:28.026332 mef 5821 R rec 365840af-c21b-4818-b698-623cdcd1e8cf -2023-07-08 08:23:28.122111 2023-07-08 08:23:28.122126 mef 5822 R rec 83164be9-088e-42c3-afcc-d037ca2b18cf -2023-07-08 08:23:28.326395 2023-07-08 08:23:28.326409 mef 5823 R rec ae0c6eac-7fb6-4f30-b4af-9846528fb093 -2023-07-08 08:23:28.443187 2023-07-08 08:23:28.443198 mef 5824 R rec da28e084-0f30-466a-b736-39f705990445 -2023-07-08 08:23:28.555738 2023-07-08 08:23:28.555748 mef 5825 R rec bd5a040f-fe25-48c4-b63a-802cdd981e49 -2023-07-08 08:23:28.665809 2023-07-08 08:23:28.665819 mef 5826 R rec bf827a20-0f99-4f48-9d49-76afe5d43c6c -2023-07-08 08:23:28.761667 2023-07-08 08:23:28.761678 mef 5827 R rec 72d7d1b6-b0d2-41a4-af3d-92fa54dc53b8 -2023-07-08 08:23:28.862544 2023-07-08 08:23:28.862554 mef 5828 R rec 7c8804bb-ff11-4fe5-a730-94bcca86a89f -2023-07-08 08:23:28.960558 2023-07-08 08:23:28.96057 mef 5829 R rec b88cb4e9-5525-4f62-91ec-68f4ab99bcd3 -2023-07-08 08:23:29.076494 2023-07-08 08:23:29.076505 mef 5830 R rec 3ee883a5-09e2-4d55-bdab-b057073784f7 -2023-07-08 08:23:29.184953 2023-07-08 08:23:29.184969 mef 5831 R rec 20136ce1-064e-4a4f-966c-ea4553420adf -2023-07-08 08:23:29.315578 2023-07-08 08:23:29.315591 mef 5832 R rec 1742008f-8ff9-4fc1-8bdc-890da6a63cf6 -2023-07-08 08:23:29.414833 2023-07-08 08:23:29.414848 mef 5833 R rec 44794b7b-e2a9-430b-a89e-78a0f8c921f2 -2023-07-08 08:23:29.533398 2023-07-08 08:23:29.533409 mef 5834 R rec c9637821-3c5f-4aa5-9e0a-64e9665abe7c -2023-07-08 08:23:29.659835 2023-07-08 08:23:29.659846 mef 5835 R rec f722a46e-cc2e-40df-9f07-c1da8446d69b -2023-07-08 08:23:29.801696 2023-07-08 08:23:29.801706 mef 5836 R rec 8450a81a-e3ee-4fa0-841d-f6de0d5a9715 -2023-07-08 08:23:29.916257 2023-07-08 08:23:29.916269 mef 5837 R rec 35bf1b77-135c-4c5b-b1e4-df84d310cb5b -2023-07-08 08:23:30.029064 2023-07-08 08:23:30.029078 mef 5838 R rec 0940e540-023e-463a-8cf4-9e4beff66af4 -2023-07-08 08:23:30.139649 2023-07-08 08:23:30.13966 mef 5839 R rec 42d65675-1577-4616-8fd0-0dcf86a1c1cd -2023-07-08 08:23:30.26313 2023-07-08 08:23:30.263141 mef 5840 R rec 3616ea6e-fc65-4e19-a6a3-47d8e249723f -2023-07-08 08:23:30.367481 2023-07-08 08:23:30.367494 mef 5841 R rec 66b857b2-bb7b-413e-b5f9-1dab1840a668 -2023-07-08 08:23:30.476515 2023-07-08 08:23:30.476534 mef 5842 R rec 2323138a-d68e-4df2-8b20-a1f567de7382 -2023-07-08 08:23:30.590917 2023-07-08 08:23:30.590928 mef 5843 R rec ead09dae-6e55-4fcd-8bc3-60407cdea41d -2023-07-08 08:23:30.705799 2023-07-08 08:23:30.705804 mef 5844 R rec c41ec4ef-7702-43b6-adb8-585b9bf41f5d -2023-07-08 08:23:30.848403 2023-07-08 08:23:30.848409 mef 5845 R rec d2bd4eed-899c-4d4a-95cf-b30ed36172b3 -2023-07-08 08:23:30.993383 2023-07-08 08:23:30.993394 mef 5846 R rec b2c9a8c6-0a6e-4919-b1a5-b14fb04bbbee -2023-07-08 08:23:31.115603 2023-07-08 08:23:31.115616 mef 5847 R rec ca561c43-c406-4dca-bde5-7dba52afcf56 -2023-07-08 08:23:31.237912 2023-07-08 08:23:31.237931 mef 5848 R rec 001d3511-1640-4ca1-86f1-aef08a7aa074 -2023-07-08 08:23:31.36176 2023-07-08 08:23:31.361772 mef 5849 R rec 1f273d65-e08f-498e-971c-1f7111825eea -2023-07-08 08:23:31.47944 2023-07-08 08:23:31.479453 mef 5850 R rec 7a6d7408-bc13-46f5-bb9b-1b4d72fdd830 -2023-07-08 08:23:31.590063 2023-07-08 08:23:31.590075 mef 5851 R rec 85d932e4-b8f9-4540-a060-ecd5816feaab -2023-07-08 08:23:31.699588 2023-07-08 08:23:31.699603 mef 5852 R rec 7e50d99a-2d08-41e0-868c-3f298c593a31 -2023-07-08 08:23:31.943574 2023-07-08 08:23:31.943588 mef 5853 R rec 538f9b86-669e-4451-98eb-e6224e2b90a2 -2023-07-08 08:23:32.070717 2023-07-08 08:23:32.070728 mef 5854 R rec ca8f4a28-4808-4491-b247-61b4da30e8c5 -2023-07-08 08:23:32.308662 2023-07-08 08:23:32.308681 mef 5855 R rec 93a1e625-1709-4783-9795-107038ae3a74 -2023-07-08 08:23:32.425547 2023-07-08 08:23:32.425563 mef 5856 R rec 8a80209b-36c4-4cfc-91c7-8abd991ffe55 -2023-07-08 08:23:32.534349 2023-07-08 08:23:32.534366 mef 5857 R rec 2a40d479-3dd6-4d9b-88cf-28c7959d8045 -2023-07-08 08:23:32.63704 2023-07-08 08:23:32.63705 mef 5858 R rec 1abecc7b-b3d2-43e6-b152-9371fbe6f9dd -2023-07-08 08:23:32.749606 2023-07-08 08:23:32.749622 mef 5859 R rec ee4d303d-46fe-478b-8b8a-282d33e1b8c0 -2023-07-08 08:23:33.343918 2023-07-08 08:23:33.343928 mef 5860 R rec 568deacf-32f4-4c1d-9ec0-50912a00acc0 -2023-07-08 08:23:33.45747 2023-07-08 08:23:33.45748 mef 5861 R rec 01c1161c-3449-46ef-aeaa-38c21d9c8120 -2023-07-08 08:23:33.55887 2023-07-08 08:23:33.55888 mef 5862 R rec 1d2631ec-07f3-44f1-ba96-423f20940bd6 -2023-07-08 08:23:33.664632 2023-07-08 08:23:33.664643 mef 5863 R rec 03068cae-89a0-4c91-a78f-c14e7bf8da96 -2023-07-08 08:23:33.799089 2023-07-08 08:23:33.799099 mef 5864 R rec 10e659be-3110-4f1a-99a5-da0ec2aad928 -2023-07-08 08:23:33.91911 2023-07-08 08:23:33.919125 mef 5865 R rec fd5b6f90-a426-4479-8616-c2029f51df03 -2023-07-08 08:23:34.036753 2023-07-08 08:23:34.036766 mef 5866 R rec bf375719-90db-40b0-97f4-c2d2a9675a86 -2023-07-08 08:23:34.507596 2023-07-08 08:23:34.507633 mef 5867 R rec b7e8f7ea-9423-40ed-a12a-6cb84058e19f -2023-07-08 08:23:34.762749 2023-07-08 08:23:34.762766 mef 5868 R rec e8253fdc-9525-47a8-81f7-b9c3481637eb -2023-07-08 08:23:34.896174 2023-07-08 08:23:34.896185 mef 5869 R rec 6cbaab69-d593-48a9-9709-efc855f8c423 -2023-07-08 08:23:35.028959 2023-07-08 08:23:35.028975 mef 5870 R rec 7961c592-fda6-4fa9-b042-384ba86b6e1b -2023-07-08 08:23:35.169698 2023-07-08 08:23:35.169709 mef 5871 R rec 3e938299-3cd4-444f-95ed-57250a783995 -2023-07-08 08:23:35.449472 2023-07-08 08:23:35.449488 mef 5872 R rec 401bece4-04f4-4cfe-9548-b7990c03287b -2023-07-08 08:23:35.581199 2023-07-08 08:23:35.581215 mef 5873 R rec 01dfa08c-de19-4ee2-892b-6ce699a180e0 -2023-07-08 08:23:35.689083 2023-07-08 08:23:35.689095 mef 5874 R rec 4ceec9a0-6218-463d-8c75-4d6993de2d04 -2023-07-08 08:23:35.812295 2023-07-08 08:23:35.812314 mef 5875 R rec 9da243ab-b9a1-4d78-843c-d52aee8723c7 -2023-07-08 08:23:35.927771 2023-07-08 08:23:35.927787 mef 5876 R rec 593e1692-457e-434f-83da-80bd8a616131 -2023-07-08 08:23:36.037562 2023-07-08 08:23:36.037572 mef 5877 R rec 36bbae27-ca52-43f9-9d85-cfa7221b91e5 -2023-07-08 08:23:36.145088 2023-07-08 08:23:36.145098 mef 5878 R rec 18516fa4-d0ec-4332-a5a7-79d6e18d23d6 -2023-07-08 08:23:36.265507 2023-07-08 08:23:36.265523 mef 5879 R rec 4b4c60b4-e758-48f6-b911-bfa62e3f9a05 -2023-07-08 08:23:36.38659 2023-07-08 08:23:36.386608 mef 5880 R rec 8827ae9b-de71-46d3-bc86-7dca1525930d -2023-07-08 08:23:36.500742 2023-07-08 08:23:36.500754 mef 5881 R rec b08713a3-49fa-48cb-8b94-db2b2e270005 -2023-07-08 08:23:36.614145 2023-07-08 08:23:36.614158 mef 5882 R rec 873224db-9171-48e5-9b86-796235ea8353 -2023-07-08 08:23:36.739352 2023-07-08 08:23:36.739362 mef 5883 R rec 80267ef9-506d-4357-8d83-9cd19116d759 -2023-07-08 08:23:36.853117 2023-07-08 08:23:36.853128 mef 5884 R rec 8778eba2-16a3-4424-b7a1-c45f4c88ae4b -2023-07-08 08:23:36.957519 2023-07-08 08:23:36.957531 mef 5885 R rec c7b2d50f-5efd-4463-813f-c7dac475f048 -2023-07-08 08:23:37.078369 2023-07-08 08:23:37.078382 mef 5886 R rec 3d9928a2-edb9-44e1-83a7-1e7e9a6977f7 -2023-07-08 08:23:37.2955 2023-07-08 08:23:37.295513 mef 5887 R rec 9aeb1c15-5bcf-40d4-9746-c21fa0f74e8d -2023-07-08 08:23:37.413847 2023-07-08 08:23:37.413868 mef 5888 R rec 0f445be6-178a-4fed-b144-f95ed52948b7 -2023-07-08 08:23:37.563807 2023-07-08 08:23:37.563817 mef 5889 R rec 210aedb5-eecb-4ac3-a928-30ae84b09b0a -2023-07-08 08:23:37.688961 2023-07-08 08:23:37.688973 mef 5890 R rec 292c0982-4b93-41ad-8ab3-120d21346071 -2023-07-08 08:23:37.817155 2023-07-08 08:23:37.817169 mef 5891 R rec dc9ac452-1b5b-4e24-bffc-b819cc592859 -2023-07-08 08:23:38.050566 2023-07-08 08:23:38.050577 mef 5892 R rec 7b7dd9e0-1dcf-4df5-a86c-a84f09112aa3 -2023-07-08 08:23:38.181229 2023-07-08 08:23:38.181241 mef 5893 R rec e7a86bec-3e3d-4ac0-85f1-283e9b1cfa69 -2023-07-08 08:23:38.282566 2023-07-08 08:23:38.282581 mef 5894 R rec 5c990dfb-f2ad-4b91-9a5a-d7a21adc48dd -2023-07-08 08:23:38.40061 2023-07-08 08:23:38.400621 mef 5895 R rec 757362d0-0765-4ae4-862b-edd9ee9f8c42 -2023-07-08 08:23:38.531602 2023-07-08 08:23:38.531612 mef 5896 R rec 5be63f1e-1c19-40c6-b8f8-f06ba5274353 -2023-07-08 08:23:38.653095 2023-07-08 08:23:38.653111 mef 5897 R rec 40b22ce3-1d36-4980-98a2-becfbf3b4872 -2023-07-08 08:23:38.92153 2023-07-08 08:23:38.921541 mef 5898 R rec fd6e0d35-2e53-4ab5-9d2a-8298ea7904e3 -2023-07-08 08:23:39.034283 2023-07-08 08:23:39.034299 mef 5899 R rec 94e7e93e-3f8c-4a28-9bbe-d4e395162791 -2023-07-08 08:23:39.161349 2023-07-08 08:23:39.161366 mef 5900 R rec 8cd3cd50-ce15-4b4b-b707-10307035c2de -2023-07-08 08:23:39.401315 2023-07-08 08:23:39.401331 mef 5901 R rec c815301b-1111-4cb8-b847-e42ecbc20e00 -2023-07-08 08:23:39.530728 2023-07-08 08:23:39.530738 mef 5902 R rec 18cc0e98-c2d5-4c17-89cc-99a2ece7e451 -2023-07-08 08:23:39.650835 2023-07-08 08:23:39.650846 mef 5903 R rec c98b4394-fc40-40c3-8e66-188b6c912993 -2023-07-08 08:23:39.802231 2023-07-08 08:23:39.802243 mef 5904 R rec b1ff4d41-036b-429c-942e-2591d6736691 -2023-07-08 08:23:39.937061 2023-07-08 08:23:39.937073 mef 5905 R rec 5a1e58ea-5a06-4b4c-8023-4d422a053add -2023-07-08 08:23:40.062024 2023-07-08 08:23:40.062036 mef 5906 R rec 70d0f7f4-5a22-4f5e-b9e6-4b63d07d910c -2023-07-08 08:23:40.20719 2023-07-08 08:23:40.207206 mef 5907 R rec 361845d5-da0f-495c-8dcc-60dcc385ac37 -2023-07-08 08:23:40.328971 2023-07-08 08:23:40.328982 mef 5908 R rec a6b4c6ef-79dc-4bb3-b79c-c9db553a3f0f -2023-07-08 08:23:40.454866 2023-07-08 08:23:40.454884 mef 5909 R rec 3ffc4f24-df4c-4be4-9354-b8f9d212c077 -2023-07-08 08:23:40.571805 2023-07-08 08:23:40.571821 mef 5910 R rec 01b54f8d-b428-4f12-ba80-6ef8e4d0a21f -2023-07-08 08:23:40.691252 2023-07-08 08:23:40.691264 mef 5911 R rec eeb68a3d-16c0-4596-91e0-aa04e80fe573 -2023-07-08 08:23:40.934148 2023-07-08 08:23:40.934159 mef 5912 R rec 94e775a3-2397-41bd-9d79-35a72b689167 -2023-07-08 08:23:41.070824 2023-07-08 08:23:41.070837 mef 5913 R rec dd9302dd-5941-43c8-99c6-9823cdd6c41d -2023-07-08 08:23:41.189233 2023-07-08 08:23:41.189249 mef 5914 R rec f5d26eef-9a8c-4b9c-84ea-efdf78da9b64 -2023-07-08 08:23:41.424302 2023-07-08 08:23:41.424312 mef 5915 R rec 3c1efa51-1ece-4bdc-ab6b-97bf75cac618 -2023-07-08 08:23:41.527175 2023-07-08 08:23:41.527192 mef 5916 R rec 0361a9a1-8bd7-4c8b-ab61-047cdb6e315c -2023-07-08 08:23:41.625926 2023-07-08 08:23:41.625936 mef 5917 R rec 8324ea76-d6c6-482a-b3c0-cf190e2d161e -2023-07-08 08:23:41.730525 2023-07-08 08:23:41.730544 mef 5918 R rec b0f4c358-1b2a-49b5-b20f-63a8060f6a39 -2023-07-08 08:23:41.847883 2023-07-08 08:23:41.847899 mef 5919 R rec 5c9f6f51-1759-48ac-8d6e-e05ca7a5f1e3 -2023-07-08 08:23:41.985977 2023-07-08 08:23:41.985988 mef 5920 R rec 6840c943-d775-44d6-a6c1-5efe31619c8b -2023-07-08 08:23:42.099786 2023-07-08 08:23:42.099797 mef 5921 R rec 2e7efa37-9c4b-4ce1-b045-54aec982eb8a -2023-07-08 08:23:42.267288 2023-07-08 08:23:42.267299 mef 5922 R rec b91c7a8d-070e-4342-b266-2b5d319a844c -2023-07-08 08:23:42.416261 2023-07-08 08:23:42.416275 mef 5923 R rec 72a7cebd-9f52-46de-93e3-7c5d57c7383e -2023-07-08 08:23:42.537919 2023-07-08 08:23:42.537932 mef 5924 R rec 5a80e52b-0493-4946-bb5f-f0d93c712872 -2023-07-08 08:23:42.661641 2023-07-08 08:23:42.661646 mef 5925 R rec e0617f95-4db5-4f3e-9a5b-34dca0fd6a13 -2023-07-08 08:23:42.77251 2023-07-08 08:23:42.77252 mef 5926 R rec 31ef0d8c-7d2e-44e8-a998-af87cca69a5e -2023-07-08 08:23:42.89848 2023-07-08 08:23:42.898491 mef 5927 R rec 7088f56b-8d35-4362-8a20-74d29abe72cd -2023-07-08 08:23:43.031428 2023-07-08 08:23:43.031435 mef 5928 R rec bb90d19f-0f30-4df9-9d0f-a02a61e1bd5a -2023-07-08 08:23:43.144065 2023-07-08 08:23:43.144081 mef 5929 R rec cafd6876-1512-4771-9785-dd3b92eaef4a -2023-07-08 08:23:43.283728 2023-07-08 08:23:43.283739 mef 5930 R rec 26fe9797-3005-47d7-853e-7ae58f596aa9 -2023-07-08 08:23:43.418473 2023-07-08 08:23:43.418487 mef 5931 R rec 83646897-1315-4225-bb72-5bf8844e8996 -2023-07-08 08:23:43.547522 2023-07-08 08:23:43.547535 mef 5932 R rec d1af605a-327d-4bbb-933d-f19dc2964f99 -2023-07-08 08:23:43.674661 2023-07-08 08:23:43.674668 mef 5933 R rec 7d29e11f-95e3-4ca5-9515-36748358ca92 -2023-07-08 08:23:43.816071 2023-07-08 08:23:43.816077 mef 5934 R rec 46fdaa73-bf4e-4564-ad6d-bddcec4cb559 -2023-07-08 08:23:44.002742 2023-07-08 08:23:44.002747 mef 5935 R rec f99d6903-82c9-4fac-b572-1defbd903d62 -2023-07-08 08:23:44.088481 2023-07-08 08:23:44.088485 mef 5936 R rec 1691a89b-0bf6-431d-9613-faa6f5458767 -2023-07-08 08:23:44.182631 2023-07-08 08:23:44.182636 mef 5937 R rec 180a1d7c-a9c2-4cee-ba9a-9f5af30c45f7 -2023-07-08 08:23:44.290231 2023-07-08 08:23:44.290241 mef 5938 R rec 8788b117-dacb-4107-8352-bbb620650594 -2023-07-08 08:23:44.426284 2023-07-08 08:23:44.426296 mef 5939 R rec df4f5d4f-509d-4801-a011-169bd6fc2c66 -2023-07-08 08:23:44.531956 2023-07-08 08:23:44.531965 mef 5940 R rec 0f12a9c3-45a8-4074-b366-731fd94f6564 -2023-07-08 08:23:44.621546 2023-07-08 08:23:44.621551 mef 5941 R rec 57f31761-4776-4929-a6d8-8ace7a4024d6 -2023-07-08 08:23:44.713451 2023-07-08 08:23:44.713457 mef 5942 R rec 8ffaf417-2593-4afe-86d2-5b63ee433393 -2023-07-08 08:23:44.80899 2023-07-08 08:23:44.809004 mef 5943 R rec 1714ffae-a684-4ec0-a41f-bd4c8fc7e0b3 -2023-07-08 08:23:44.925772 2023-07-08 08:23:44.925783 mef 5944 R rec a3d16779-07db-49c1-bc16-b2a023f58ed9 -2023-07-08 08:23:45.019493 2023-07-08 08:23:45.019503 mef 5945 R rec 1ae726c1-4a2c-4ad1-a8c9-043d5e725e54 -2023-07-08 08:23:45.216161 2023-07-08 08:23:45.216167 mef 5946 R rec 9a158a4d-8a86-4be4-a7b5-5ee411dfa70a -2023-07-08 08:23:45.304003 2023-07-08 08:23:45.304008 mef 5947 R rec 4f75e355-5ff3-4692-a8db-3dfa93c0a40c -2023-07-08 08:23:45.388496 2023-07-08 08:23:45.388501 mef 5948 R rec 8f67c739-a309-4649-804d-34e36c3da05f -2023-07-08 08:23:45.467719 2023-07-08 08:23:45.467724 mef 5949 R rec a42c61bd-6648-4a12-b1bb-aff767762083 -2023-07-08 08:23:45.545796 2023-07-08 08:23:45.545801 mef 5950 R rec 2ef0db9f-11e9-4bea-8f3a-613bd184b884 -2023-07-08 08:23:45.630895 2023-07-08 08:23:45.630901 mef 5951 R rec 038bb780-5447-4ce5-a1b7-a751e2eeecf2 -2023-07-08 08:23:45.742729 2023-07-08 08:23:45.74274 mef 5952 R rec 52d65aee-2906-499a-890c-97a84b5015a2 -2023-07-08 08:23:45.847994 2023-07-08 08:23:45.848004 mef 5953 R rec 5ab8f57b-cfaa-4eaa-bf5e-6938efb82f84 -2023-07-08 08:23:46.181274 2023-07-08 08:23:46.181279 mef 5954 R rec 2bcf6a35-6ea6-41c4-99ba-4060fcb33f80 -2023-07-08 08:23:46.286785 2023-07-08 08:23:46.286796 mef 5955 R rec 46a3e197-7db5-45d1-b997-03eda6b92c07 -2023-07-08 08:23:46.375686 2023-07-08 08:23:46.375695 mef 5956 R rec 133d6592-7072-44c2-b0b9-58a2a974b40d -2023-07-08 08:23:46.460904 2023-07-08 08:23:46.460915 mef 5957 R rec 4d8619d9-67a2-472b-89fe-e7a622030379 -2023-07-08 08:23:46.55915 2023-07-08 08:23:46.559161 mef 5958 R rec dd0ca9ab-cfcf-4310-85a2-a83ec36b6ff0 -2023-07-08 08:23:46.654201 2023-07-08 08:23:46.654215 mef 5959 R rec 7cbbbb68-70e9-4d54-aa7c-bdd3778ac727 -2023-07-08 08:23:46.74634 2023-07-08 08:23:46.746355 mef 5960 R rec 344f503f-b2e1-4044-a125-197a821f2948 -2023-07-08 08:23:47.06217 2023-07-08 08:23:47.062182 mef 5961 R rec cc914124-8293-42c4-9634-1efc4276f0cc -2023-07-08 08:23:47.162346 2023-07-08 08:23:47.162357 mef 5962 R rec 887f0d6b-f3ed-4c03-a4e9-cd1e3f4c58bd -2023-07-08 08:23:47.316594 2023-07-08 08:23:47.316607 mef 5963 R rec 1380d510-1184-4445-be45-7a16ed8006e4 -2023-07-08 08:23:47.510844 2023-07-08 08:23:47.510856 mef 5964 R rec 4192b1e2-803c-444c-af37-2df69267c6f1 -2023-07-08 08:23:47.606844 2023-07-08 08:23:47.606856 mef 5965 R rec 0fe839b4-18b0-4d11-956c-f8d5787ea1b1 -2023-07-08 08:23:47.694955 2023-07-08 08:23:47.694962 mef 5966 R rec ad1fcc04-a09a-473a-976f-ce521816f7bd -2023-07-08 08:23:47.789968 2023-07-08 08:23:47.789978 mef 5967 R rec c824972f-90cd-4712-a6b8-046886bc7647 -2023-07-08 08:23:47.890483 2023-07-08 08:23:47.890494 mef 5968 R rec 08ae1a9d-88d5-42ed-9130-9e4e29aa8699 -2023-07-08 08:23:47.98638 2023-07-08 08:23:47.986391 mef 5969 R rec d3cb7462-51fc-4faa-9770-aa86cb527aa8 -2023-07-08 08:23:48.078856 2023-07-08 08:23:48.078868 mef 5970 R rec e0d64933-b783-4afe-90fb-22c7591442b3 -2023-07-08 08:23:48.367244 2023-07-08 08:23:48.367254 mef 5971 R rec 72957317-6ce9-4f16-b511-5b9cccb7305e -2023-07-08 08:23:48.464247 2023-07-08 08:23:48.464258 mef 5972 R rec 148e2fb1-3133-41c5-8113-8d3e3ec71c0e -2023-07-08 08:23:48.553498 2023-07-08 08:23:48.553511 mef 5973 R rec b2a43b1d-eeba-4552-906b-1e2c9e1bca9e -2023-07-08 08:23:48.672766 2023-07-08 08:23:48.672772 mef 5974 R rec edba2ef9-f734-4733-af60-8c07893c9446 -2023-07-08 08:23:48.771652 2023-07-08 08:23:48.771662 mef 5975 R rec 825e90f0-6ac2-4d84-afb7-0cf58e8f771d -2023-07-08 08:23:48.867178 2023-07-08 08:23:48.867214 mef 5976 R rec 7dd89dfe-2dad-4087-a59e-a611f972263e -2023-07-08 08:23:48.969631 2023-07-08 08:23:48.969641 mef 5977 R rec 4e6f031d-8690-42de-baa2-e8e3371534da -2023-07-08 08:23:49.067674 2023-07-08 08:23:49.067684 mef 5978 R rec 64f7bac5-f5ec-4f92-a1da-8bc1c816d26b -2023-07-08 08:23:49.16915 2023-07-08 08:23:49.169161 mef 5979 R rec e7109e70-29b9-4112-9ef0-735c8b5def18 -2023-07-08 08:23:49.273226 2023-07-08 08:23:49.273237 mef 5980 R rec 20df0608-719b-4e02-8ef0-176f188bc249 -2023-07-08 08:23:49.374361 2023-07-08 08:23:49.374371 mef 5981 R rec a25bd524-ac25-411f-90bc-1f09e12b0cd1 -2023-07-08 08:23:49.469458 2023-07-08 08:23:49.469468 mef 5982 R rec 1765e1c1-2a04-4a3d-ab89-471fc10a6533 -2023-07-08 08:23:49.759019 2023-07-08 08:23:49.759032 mef 5983 R rec 46dc6845-ba9f-40b8-838b-c57aad93666d -2023-07-08 08:23:49.860622 2023-07-08 08:23:49.860632 mef 5984 R rec 752c67c1-6c13-4c11-a040-7c4333175e87 -2023-07-08 08:23:49.955028 2023-07-08 08:23:49.955038 mef 5985 R rec d58c1c63-862d-49a4-8162-a122b9e1a450 -2023-07-08 08:23:50.048336 2023-07-08 08:23:50.048346 mef 5986 R rec e8fd882b-250e-44f0-bf7f-6cc929425bee -2023-07-08 08:23:50.136063 2023-07-08 08:23:50.136074 mef 5987 R rec ec62d0d5-5297-43ec-86dd-95cf880096ad -2023-07-08 08:23:50.215458 2023-07-08 08:23:50.215462 mef 5988 R rec 8d200e35-61b2-47d9-8da8-c06c8c0cc42b -2023-07-08 08:23:50.30162 2023-07-08 08:23:50.30163 mef 5989 R rec 1133ce59-0220-4072-a3f1-e940b239f974 -2023-07-08 08:23:50.511582 2023-07-08 08:23:50.511593 mef 5990 R rec a77838a5-635f-4de5-b758-9685d1df782b -2023-07-08 08:23:50.60584 2023-07-08 08:23:50.605859 mef 5991 R rec bac10e99-1301-4fb6-9419-d4d68dabbfe6 -2023-07-08 08:23:50.687814 2023-07-08 08:23:50.687818 mef 5992 R rec 51dcd775-f150-4e11-a747-58c503e78545 -2023-07-08 08:23:50.767388 2023-07-08 08:23:50.767398 mef 5993 R rec acac883e-40df-4c06-8e16-81ae7394fc1f -2023-07-08 08:23:50.856462 2023-07-08 08:23:50.856472 mef 5994 R rec d5b515ea-1caa-40ab-b02a-5fca544b6572 -2023-07-08 08:23:50.949517 2023-07-08 08:23:50.949526 mef 5995 R rec 5229cff5-21ef-4c40-8805-8cbbce22bba7 -2023-07-08 08:23:51.051415 2023-07-08 08:23:51.051427 mef 5996 R rec feccf8af-f06b-4ebc-afa3-e72b757b3fea -2023-07-08 08:23:51.358817 2023-07-08 08:23:51.358833 mef 5997 R rec 1f2308c3-1216-42db-9f8c-fc3afea3040f -2023-07-08 08:23:51.447108 2023-07-08 08:23:51.447119 mef 5998 R rec fa61c8eb-660f-4039-8bd7-3bd6d3f76b10 -2023-07-08 08:23:51.536054 2023-07-08 08:23:51.536064 mef 5999 R rec 19c7423e-af38-4dbc-a8b4-a74959da8336 -2023-07-08 08:23:51.625096 2023-07-08 08:23:51.625111 mef 6000 R rec 9d086dcf-027d-4557-9dbc-fa7ee08c7dfd -2023-07-08 08:23:51.703016 2023-07-08 08:23:51.703024 mef 6001 R rec 469f15f2-843d-4eeb-81cf-f64edb9b26f9 -2023-07-08 08:23:51.875767 2023-07-08 08:23:51.875783 mef 6002 R rec a4a43b81-10ae-4e65-9004-6eb56d0c4b7f -2023-07-08 08:23:51.966628 2023-07-08 08:23:51.966637 mef 6003 R rec 0c40aec7-b255-43da-8c9c-de5e24af90a3 -2023-07-08 08:23:52.056764 2023-07-08 08:23:52.056775 mef 6004 R rec b0c460a3-e3c3-4aa4-8485-db183050b7ed -2023-07-08 08:23:52.15534 2023-07-08 08:23:52.155355 mef 6005 R rec 5ca4e778-af5d-4e56-928b-2666ca85a36b -2023-07-08 08:23:52.234783 2023-07-08 08:23:52.234798 mef 6006 R rec 928eccfe-4e5f-4b4e-83da-d0e8a95cbd40 -2023-07-08 08:23:52.423619 2023-07-08 08:23:52.42363 mef 6007 R rec 395839cd-f8fb-45cb-a969-12635f465fda -2023-07-08 08:23:52.512192 2023-07-08 08:23:52.512202 mef 6008 R rec 0456d765-7164-4dee-acac-40b921a0a14a -2023-07-08 08:23:52.604515 2023-07-08 08:23:52.604526 mef 6009 R rec 75e633b1-ef7a-4754-835c-8edaddb1a2f9 -2023-07-08 08:23:52.696093 2023-07-08 08:23:52.696107 mef 6010 R rec ebd14858-46be-489e-b275-01f1c4d4e80b -2023-07-08 08:23:52.929277 2023-07-08 08:23:52.929288 mef 6011 R rec 876cf00f-8bfa-4eb2-ac97-18df7e1d28c4 -2023-07-08 08:23:53.029013 2023-07-08 08:23:53.029024 mef 6012 R rec ee011fe5-7739-413a-93b3-d7e01c4cc786 -2023-07-08 08:23:53.217015 2023-07-08 08:23:53.217021 mef 6013 R rec aa7b206e-a7e1-4f2f-b86e-f3f6ec948956 -2023-07-08 08:23:53.30951 2023-07-08 08:23:53.309527 mef 6014 R rec 02c7bc2e-4b20-4bd1-ad89-0845c494d883 -2023-07-08 08:23:53.827385 2023-07-08 08:23:53.827396 mef 6015 R rec c9a91001-bb79-401a-9627-22534ebf1ab3 -2023-07-08 08:23:54.250844 2023-07-08 08:23:54.250855 mef 6016 R rec c2f2952c-a366-47f2-9ee0-d3afca9c87f4 -2023-07-08 08:23:54.357362 2023-07-08 08:23:54.357371 mef 6017 R rec b693d871-fba5-44df-9ce9-51c5dc378001 -2023-07-08 08:23:54.455701 2023-07-08 08:23:54.455717 mef 6018 R rec c926d223-1687-4ca6-bc21-decff933af78 -2023-07-08 08:23:54.553637 2023-07-08 08:23:54.553648 mef 6019 R rec 6dc4b131-0c77-468d-98d7-f9aa163b401d -2023-07-08 08:23:54.643203 2023-07-08 08:23:54.643214 mef 6020 R rec e7b1dbd1-74ad-4d7d-9abb-90b12b142aac -2023-07-08 08:23:54.999813 2023-07-08 08:23:54.999827 mef 6021 R rec 11e2fed8-8673-43a7-b834-99c0ac0abc5a -2023-07-08 08:23:55.185291 2023-07-08 08:23:55.185297 mef 6022 R rec 42fadb76-5f1b-4ab1-ab2d-2afd150943fa -2023-07-08 08:23:55.264076 2023-07-08 08:23:55.264089 mef 6023 R rec cd965093-cafa-495d-a2e2-ca699cf512c2 -2023-07-08 08:23:55.356595 2023-07-08 08:23:55.356606 mef 6024 R rec faf6c5e9-9548-4446-9fe8-d8ec66224826 -2023-07-08 08:23:55.454562 2023-07-08 08:23:55.454578 mef 6025 R rec f9f37c21-55e8-45dd-806f-ab72c2f90bb0 -2023-07-08 08:23:55.549202 2023-07-08 08:23:55.549212 mef 6026 R rec c6558e80-5517-41e3-8c3a-e9413fa559f4 -2023-07-08 08:23:55.640946 2023-07-08 08:23:55.640957 mef 6027 R rec aab65d45-36c7-4dbc-89ad-05fc614fc51d -2023-07-08 08:23:55.717365 2023-07-08 08:23:55.71737 mef 6028 R rec 957496ec-0ab6-4a8f-939e-2d8b26e93c81 -2023-07-08 08:23:55.808059 2023-07-08 08:23:55.808069 mef 6029 R rec f75ced71-39d0-4e1b-8872-2a775729b6d0 -2023-07-08 08:23:55.898287 2023-07-08 08:23:55.898299 mef 6030 R rec bf6065d0-3d61-4551-b8f1-290cb9978f43 -2023-07-08 08:23:56.005028 2023-07-08 08:23:56.005039 mef 6031 R rec d289951d-084e-4d38-905f-f8e6dd18358e -2023-07-08 08:23:56.087101 2023-07-08 08:23:56.087106 mef 6032 R rec 8ff6cb9c-c073-490e-95f5-742c7603d1a3 -2023-07-08 08:23:56.175802 2023-07-08 08:23:56.175817 mef 6033 R rec e3280c0e-4feb-4aff-b5c1-707c6ebaa8a6 -2023-07-08 08:23:56.44906 2023-07-08 08:23:56.449066 mef 6034 R rec 5b4698ed-d011-41f8-8f5e-3f61c196d769 -2023-07-08 08:23:56.542374 2023-07-08 08:23:56.542379 mef 6035 R rec 10434f8a-7f2a-43a2-8c75-4c8f19429c4f -2023-07-08 08:23:56.638448 2023-07-08 08:23:56.638464 mef 6036 R rec 1ccae309-e69a-400b-8f66-d192541698c5 -2023-07-08 08:23:56.717901 2023-07-08 08:23:56.717911 mef 6037 R rec 27b9053c-afeb-4fa7-b9f2-8c89454750f3 -2023-07-08 08:23:56.823206 2023-07-08 08:23:56.823218 mef 6038 R rec 5d00a8d3-6655-4f18-890b-ff3f22f7ff6d -2023-07-08 08:23:56.914845 2023-07-08 08:23:56.914862 mef 6039 R rec 77574f88-33e4-4bb7-b5a8-c46f30af8a3d -2023-07-08 08:23:56.99733 2023-07-08 08:23:56.99734 mef 6040 R rec 2fe73dd4-29d2-4605-a479-f4190928f964 -2023-07-08 08:23:57.082526 2023-07-08 08:23:57.082531 mef 6041 R rec 5612b419-454f-432a-a4b7-fa22f1731559 -2023-07-08 08:23:57.154692 2023-07-08 08:23:57.154698 mef 6042 R rec 7612247c-0893-4e34-9b73-03ed19818d30 -2023-07-08 08:23:57.393554 2023-07-08 08:23:57.39356 mef 6043 R rec 863f54a5-6795-4f01-a4b2-b8dfdc5e5f0c -2023-07-08 08:23:57.461463 2023-07-08 08:23:57.461468 mef 6044 R rec 1562e2cf-2028-4af8-853f-d052cf0ce6ab -2023-07-08 08:23:57.519146 2023-07-08 08:23:57.519172 mef 6045 R rec 52481c95-d724-462c-9e80-31c1825b9516 -2023-07-08 08:23:57.581971 2023-07-08 08:23:57.581976 mef 6046 R rec bfa3b519-77a6-4c35-a0e3-9bee2b0fd2a7 -2023-07-08 08:23:57.65251 2023-07-08 08:23:57.652514 mef 6047 R rec d82fed90-28e6-4f22-8dea-8b77ad3979d2 -2023-07-08 08:23:57.720887 2023-07-08 08:23:57.720891 mef 6048 R rec 3ba616a0-d5e8-48bb-9514-b00e8e1c40df -2023-07-08 08:23:57.866168 2023-07-08 08:23:57.866179 mef 6049 R rec e97af5ad-61fe-4215-a327-23fccbfa477b -2023-07-08 08:23:57.960593 2023-07-08 08:23:57.960604 mef 6050 R rec 50731661-8e59-4ad4-b675-9acb6a70ae5d -2023-07-08 08:23:58.046601 2023-07-08 08:23:58.046606 mef 6051 R rec 7dab2101-a4dc-461c-86cd-dd55de77e84e -2023-07-08 08:23:58.222063 2023-07-08 08:23:58.222068 mef 6052 R rec 2cf2c785-d597-4aed-b53a-6b86158bdfda -2023-07-08 08:23:58.299338 2023-07-08 08:23:58.299349 mef 6053 R rec 3db2b268-e47c-4313-b49e-864a204c55c5 -2023-07-08 08:23:58.388452 2023-07-08 08:23:58.388458 mef 6054 R rec b03dfb8c-65f2-4d11-9421-615b7249e3e0 -2023-07-08 08:23:58.457793 2023-07-08 08:23:58.457799 mef 6055 R rec 1acc9967-5792-46e9-83b3-9d913c638269 -2023-07-08 08:23:58.635872 2023-07-08 08:23:58.635883 mef 6056 R rec 712ecc08-f2e3-42a0-9689-24b52315437e -2023-07-08 08:23:58.815895 2023-07-08 08:23:58.81591 mef 6057 R rec 7bfd691c-8b4b-44c7-843d-a1fa834c1c8f -2023-07-08 08:23:59.002037 2023-07-08 08:23:59.002053 mef 6058 R rec 078cf14b-2652-4d08-a3ea-e97a89bd7215 -2023-07-08 08:23:59.188257 2023-07-08 08:23:59.188263 mef 6059 R rec 756d85a0-e936-4956-b991-6f07c69e3a12 -2023-07-08 08:23:59.35107 2023-07-08 08:23:59.351081 mef 6060 R rec 7cb7a079-ffc3-453b-ab78-5bd0749103b9 -2023-07-08 08:23:59.431621 2023-07-08 08:23:59.431626 mef 6061 R rec 5e67c1e6-8007-414c-877b-221c2d246373 -2023-07-08 08:23:59.508295 2023-07-08 08:23:59.508307 mef 6062 R rec 54998d9f-c074-48cb-aa0a-014c9fc1754f -2023-07-08 08:23:59.686936 2023-07-08 08:23:59.686942 mef 6063 R rec 4216a25d-5cbb-4fca-9e60-faa87d1bda3f -2023-07-08 08:23:59.755286 2023-07-08 08:23:59.755291 mef 6064 R rec f4ead743-74b3-436a-8d76-750c05aaa30a -2023-07-08 08:24:00.020898 2023-07-08 08:24:00.020903 mef 6065 R rec 33a20ff6-cdf3-4553-ae0c-10fd0b9fdbf7 -2023-07-08 08:24:00.113817 2023-07-08 08:24:00.11383 mef 6066 R rec 042e86c6-9217-4245-8980-c76685915c60 -2023-07-08 08:24:00.199003 2023-07-08 08:24:00.199008 mef 6067 R rec 801797c9-1635-4493-af3c-ddf7314c95ca -2023-07-08 08:24:00.276383 2023-07-08 08:24:00.276388 mef 6068 R rec 8f985e6d-1ab2-4734-b3dd-6f66a199962a -2023-07-08 08:24:00.622539 2023-07-08 08:24:00.622543 mef 6069 R rec c8ff30b1-8ae2-423e-9a45-ec413223ae0e -2023-07-08 08:24:00.698891 2023-07-08 08:24:00.698896 mef 6070 R rec f8ae59f2-f92d-4172-a3c8-bc64cb356cee -2023-07-08 08:24:00.783662 2023-07-08 08:24:00.783674 mef 6071 R rec 7f5e8475-6c19-4030-805a-13dfd41932d6 -2023-07-08 08:24:00.901163 2023-07-08 08:24:00.90118 mef 6072 R rec 6728eead-f161-483c-8b2a-f879435b86a4 -2023-07-08 08:24:01.090883 2023-07-08 08:24:01.090893 mef 6073 R rec d49b03c2-9459-4f04-9b81-560ca80b8d67 -2023-07-08 08:24:01.180006 2023-07-08 08:24:01.180016 mef 6074 R rec d3829f4e-a0b3-45f6-af70-e376fa54835d -2023-07-08 08:24:01.357032 2023-07-08 08:24:01.357043 mef 6075 R rec 4d670496-2b0d-4f3b-82fb-4f3af12a5dc0 -2023-07-08 08:24:01.451678 2023-07-08 08:24:01.451687 mef 6076 R rec 7d8349be-b486-4801-b2e7-e9657c51e0fd -2023-07-08 08:24:01.52163 2023-07-08 08:24:01.521638 mef 6077 R rec dcde0665-81ba-4fd1-97ca-9e222c23021f -2023-07-08 08:24:01.596583 2023-07-08 08:24:01.596593 mef 6078 R rec 50d61525-a937-4d7b-88b5-145ee54f5479 -2023-07-08 08:24:01.762254 2023-07-08 08:24:01.762264 mef 6079 R rec 5befb85f-51c0-4fe5-8762-813cb15caf50 -2023-07-08 08:24:01.849335 2023-07-08 08:24:01.849346 mef 6080 R rec 2575a069-001d-4672-95a2-4510d26e19a7 -2023-07-08 08:24:01.938518 2023-07-08 08:24:01.938528 mef 6081 R rec 1a20009c-34eb-4a7e-b1ef-3504b3c7dd98 -2023-07-08 08:24:02.029938 2023-07-08 08:24:02.02995 mef 6082 R rec 100ef15f-9328-46a3-a60f-b122e54f2d7c -2023-07-08 08:24:02.237676 2023-07-08 08:24:02.237681 mef 6083 R rec 935f402e-ed42-4241-822d-f0be4bee7444 -2023-07-08 08:24:02.397295 2023-07-08 08:24:02.397307 mef 6084 R rec 0b01d2ad-65d9-46f3-8e93-20ec0b3623c1 -2023-07-08 08:24:02.495141 2023-07-08 08:24:02.495152 mef 6085 R rec 11b45603-e89a-43fe-bc86-ba3507315cc9 -2023-07-08 08:24:02.575806 2023-07-08 08:24:02.57581 mef 6086 R rec 6c2e67c1-2253-406f-a0df-8b6fa10d5e85 -2023-07-08 08:24:02.657101 2023-07-08 08:24:02.657115 mef 6087 R rec 313f0783-ff68-41ad-9baa-9235a4635b11 -2023-07-08 08:24:02.74711 2023-07-08 08:24:02.747122 mef 6088 R rec b838c938-07b9-4687-a0de-85a897e1c109 -2023-07-08 08:24:02.83506 2023-07-08 08:24:02.835071 mef 6089 R rec 1cf4e68e-fa7b-4076-98df-6b209fe514a9 -2023-07-08 08:24:02.924555 2023-07-08 08:24:02.924565 mef 6090 R rec 61510549-e0a3-4044-9ea9-647008148ecb -2023-07-08 08:24:03.019988 2023-07-08 08:24:03.020002 mef 6091 R rec 628b3905-13b9-4d7b-a06f-2802dc8bc828 -2023-07-08 08:24:03.113146 2023-07-08 08:24:03.113156 mef 6092 R rec a3d7bcf9-668d-453a-be20-d2e2f41ab9bf -2023-07-08 08:24:03.211696 2023-07-08 08:24:03.211705 mef 6093 R rec 2a4d24a9-9f60-4fb6-a283-2c3e1d335ffe -2023-07-08 08:24:03.278996 2023-07-08 08:24:03.279001 mef 6094 R rec 2687107e-2060-452d-812e-62e012e6b6c8 -2023-07-08 08:24:03.373189 2023-07-08 08:24:03.3732 mef 6095 R rec 0895f14e-6d71-4c25-a561-f578877b05f0 -2023-07-08 08:24:03.465861 2023-07-08 08:24:03.465866 mef 6096 R rec 89d7e40a-1b07-47d2-98d5-788d928dd8c4 -2023-07-08 08:24:03.573374 2023-07-08 08:24:03.573392 mef 6097 R rec 736955eb-7573-46b2-b146-812fcba98782 -2023-07-08 08:24:03.670969 2023-07-08 08:24:03.670977 mef 6098 R rec a6cab25f-ad5a-4755-a0b7-79cc13a451b5 -2023-07-08 08:24:03.833332 2023-07-08 08:24:03.833343 mef 6099 R rec eb6ca44f-7ff4-4a00-aac6-f1de611f9892 -2023-07-08 08:24:03.938991 2023-07-08 08:24:03.939002 mef 6100 R rec 078cdfb9-2653-4eca-8bf3-b09d874fe7d7 -2023-07-08 08:24:04.032572 2023-07-08 08:24:04.032582 mef 6101 R rec 687aa29b-1a4d-4593-b621-addade4d5185 -2023-07-08 08:24:04.124586 2023-07-08 08:24:04.124591 mef 6102 R rec 5a66aab4-3cd2-47ad-bbd0-13e513381651 -2023-07-08 08:24:04.216835 2023-07-08 08:24:04.216846 mef 6103 R rec 52f6c814-6a27-485b-8b49-0d8faafa52cf -2023-07-08 08:24:04.311404 2023-07-08 08:24:04.311414 mef 6104 R rec a9731121-14a4-43d5-a2cc-9dbbbf5ee122 -2023-07-08 08:24:04.482341 2023-07-08 08:24:04.482346 mef 6105 R rec 6a354629-db78-4452-bdca-b25dda544682 -2023-07-08 08:24:04.573488 2023-07-08 08:24:04.573498 mef 6106 R rec e1b2a30c-18d1-4e65-815f-dcc7c0bd0bf0 -2023-07-08 08:24:04.838745 2023-07-08 08:24:04.83875 mef 6107 R rec 8a8ae469-ce83-4a83-87ec-b18b511fc731 -2023-07-08 08:24:04.927077 2023-07-08 08:24:04.927089 mef 6108 R rec 986e3943-0781-4e7b-a298-472474bfee43 -2023-07-08 08:24:05.01829 2023-07-08 08:24:05.018304 mef 6109 R rec 79cd2ef5-a8db-4cdd-a4f3-775704123c46 -2023-07-08 08:24:05.109794 2023-07-08 08:24:05.109799 mef 6110 R rec 090c3626-64c6-4394-bd4f-c70eba2c10d6 -2023-07-08 08:24:05.199041 2023-07-08 08:24:05.199049 mef 6111 R rec f77dabc1-af2d-488f-bc86-a90636763075 -2023-07-08 08:24:05.272419 2023-07-08 08:24:05.272425 mef 6112 R rec d238ec0c-7b78-4e80-a51c-3810180bf67b -2023-07-08 08:24:05.343148 2023-07-08 08:24:05.343152 mef 6113 R rec 2da31321-c228-4819-bcf8-b68d284d6b7c -2023-07-08 08:24:05.424077 2023-07-08 08:24:05.424091 mef 6114 R rec 0e7c380e-609c-4ab8-a455-00cdb27c5e33 -2023-07-08 08:24:05.51276 2023-07-08 08:24:05.512772 mef 6115 R rec fdd3d62a-578e-4e81-bad1-aa53d91d22ee -2023-07-08 08:24:05.612104 2023-07-08 08:24:05.612119 mef 6116 R rec 40b93cd5-254a-44bf-b2f3-bb46bc92c86e -2023-07-08 08:24:05.706843 2023-07-08 08:24:05.706848 mef 6117 R rec af4d167c-9388-433e-84bf-72e42c0189b8 -2023-07-08 08:24:05.813231 2023-07-08 08:24:05.813242 mef 6118 R rec ed565e65-a00e-4eae-b3a8-845eed17635e -2023-07-08 08:24:05.902986 2023-07-08 08:24:05.903 mef 6119 R rec 05bc3f01-a04b-486c-8104-bd36b47e8a18 -2023-07-08 08:24:05.994144 2023-07-08 08:24:05.994155 mef 6120 R rec e8733b23-3fc0-4ea2-9271-b45d36769db1 -2023-07-08 08:24:06.169259 2023-07-08 08:24:06.169264 mef 6121 R rec 0fb124ff-3d1b-45a6-8959-fe4f07e8da63 -2023-07-08 08:24:06.325219 2023-07-08 08:24:06.325224 mef 6122 R rec 5d63613c-5c44-46f9-b5dd-e155de0be74d -2023-07-08 08:24:06.405422 2023-07-08 08:24:06.405427 mef 6123 R rec 05814fed-366b-497e-8ff1-25fa81bec829 -2023-07-08 08:24:06.471371 2023-07-08 08:24:06.471379 mef 6124 R rec c51f3045-8dae-4826-b359-d482885477b3 -2023-07-08 08:24:06.541737 2023-07-08 08:24:06.541743 mef 6125 R rec 2ac516ec-c750-4439-b7be-32a94db4b4d5 -2023-07-08 08:24:06.611237 2023-07-08 08:24:06.611242 mef 6126 R rec b6b89173-cd90-4789-ae24-0b352c23d168 -2023-07-08 08:24:06.754426 2023-07-08 08:24:06.754432 mef 6127 R rec af62aa7e-ade5-4720-b281-631d69c83f37 -2023-07-08 08:24:06.836374 2023-07-08 08:24:06.836386 mef 6128 R rec 42d20469-5dc8-4048-b3d7-0247a0d91401 -2023-07-08 08:24:06.946508 2023-07-08 08:24:06.946519 mef 6129 R rec fe82956a-4a8e-4d3c-9244-963a16fea067 -2023-07-08 08:24:07.037045 2023-07-08 08:24:07.037056 mef 6130 R rec 8a875251-9048-460b-83cc-145bce421044 -2023-07-08 08:24:07.132337 2023-07-08 08:24:07.132348 mef 6131 R rec 554f48df-d595-4961-a780-810d6544b07f -2023-07-08 08:24:07.220594 2023-07-08 08:24:07.220599 mef 6132 R rec f847b7d7-cc2a-4121-9958-3862111d7c40 -2023-07-08 08:24:07.418379 2023-07-08 08:24:07.418389 mef 6133 R rec f6d419e1-5593-4150-b84a-5f9111d9130a -2023-07-08 08:24:07.506299 2023-07-08 08:24:07.506305 mef 6134 R rec 6644b4e4-6688-4d36-a74e-7fbe0050e6fc -2023-07-08 08:24:07.603857 2023-07-08 08:24:07.603869 mef 6135 R rec f8b9c95f-94a1-4222-8b9e-4871f4d52db2 -2023-07-08 08:24:07.69672 2023-07-08 08:24:07.696733 mef 6136 R rec f55e7427-a886-4e42-8030-f9d935d5d38c -2023-07-08 08:24:07.88191 2023-07-08 08:24:07.881916 mef 6137 R rec 0f820191-bc7c-4471-b898-dde383425a8f -2023-07-08 08:24:07.962202 2023-07-08 08:24:07.962206 mef 6138 R rec d0861895-b266-44f5-b2c0-7f4cc21b1a86 -2023-07-08 08:24:08.044692 2023-07-08 08:24:08.0447 mef 6139 R rec 19ab64ab-861d-4663-a95c-52de91cdb3ee -2023-07-08 08:24:08.188829 2023-07-08 08:24:08.188834 mef 6140 R rec e2f4e3f1-07dd-4b60-8e22-549c8c243871 -2023-07-08 08:24:08.260422 2023-07-08 08:24:08.260429 mef 6141 R rec 794a1f18-d16b-479f-ba32-44b5d3b1aff0 -2023-07-08 08:24:08.335877 2023-07-08 08:24:08.335883 mef 6142 R rec 48fe57a8-7fc2-460c-8c95-8adec38eb453 -2023-07-08 08:24:08.417639 2023-07-08 08:24:08.417645 mef 6143 R rec 139b179e-013e-4446-80cb-359f55af3c57 -2023-07-08 08:24:08.591112 2023-07-08 08:24:08.591117 mef 6144 R rec 81c9f704-6356-4a50-af56-fc1bff8ebff0 -2023-07-08 08:24:08.667229 2023-07-08 08:24:08.667234 mef 6145 R rec ad092a8b-12a6-4a4b-b00a-1561b5263cec -2023-07-08 08:24:08.740387 2023-07-08 08:24:08.740397 mef 6146 R rec fbb1d89b-3180-429b-b4e2-da9708ff579a -2023-07-08 08:24:08.816661 2023-07-08 08:24:08.816666 mef 6147 R rec 8f064df4-6e6a-490e-b1c7-a270d21d2641 -2023-07-08 08:24:08.960364 2023-07-08 08:24:08.960369 mef 6148 R rec 2959bd84-8b2c-4f62-9734-f7f9819a9ebe -2023-07-08 08:24:09.028685 2023-07-08 08:24:09.028689 mef 6149 R rec bb8dcbf0-102a-45ba-918b-50e1407511a5 -2023-07-08 08:24:09.105256 2023-07-08 08:24:09.105261 mef 6150 R rec 91bc2bc5-9c16-479c-ab87-4a563013be61 -2023-07-08 08:24:09.297003 2023-07-08 08:24:09.297014 mef 6151 R rec a771dc6c-2c58-4d70-86fc-e25d24aa7594 -2023-07-08 08:24:09.488798 2023-07-08 08:24:09.488804 mef 6152 R rec 903fb703-6fcd-4eda-b26e-287b4d5d2985 -2023-07-08 08:24:09.575319 2023-07-08 08:24:09.57533 mef 6153 R rec dad7db2a-d0bc-41f9-b5c2-1160644155be -2023-07-08 08:24:09.669741 2023-07-08 08:24:09.669752 mef 6154 R rec b85de34c-7526-49aa-aa7f-3b3d9dd2a57d -2023-07-08 08:24:09.748731 2023-07-08 08:24:09.748739 mef 6155 R rec 94ad35fc-98f9-45d5-b553-836724c90fb3 -2023-07-08 08:24:09.847426 2023-07-08 08:24:09.847441 mef 6156 R rec 305ff8d3-66d7-4a84-85c0-d141f308b252 -2023-07-08 08:24:10.04801 2023-07-08 08:24:10.048022 mef 6157 R rec 86e39af1-4ee9-433b-ac72-ddf60361b4b5 -2023-07-08 08:24:10.138344 2023-07-08 08:24:10.138355 mef 6158 R rec 0c8b9be7-3a9b-40df-b402-f51c9b599dcc -2023-07-08 08:24:10.364339 2023-07-08 08:24:10.364351 mef 6159 R rec 2e6f9c06-2eac-4133-8e0f-f95e3a4c3a03 -2023-07-08 08:24:10.571159 2023-07-08 08:24:10.571169 mef 6160 R rec 54fdfbb9-02cb-48a4-88e1-1b0446c740fc -2023-07-08 08:24:10.814883 2023-07-08 08:24:10.814889 mef 6161 R rec fe636af2-0703-411a-919b-20fc12188724 -2023-07-08 08:24:10.985802 2023-07-08 08:24:10.985807 mef 6162 R rec 95f9098c-236a-4f87-a5ae-deb0d575a0fd -2023-07-08 08:24:11.063728 2023-07-08 08:24:11.063733 mef 6163 R rec 155eb862-3fad-4271-bc7d-56c07f062258 -2023-07-08 08:24:11.139573 2023-07-08 08:24:11.139578 mef 6164 R rec 081cf576-8212-4a6a-ad74-68fc7c453007 -2023-07-08 08:24:11.215202 2023-07-08 08:24:11.215208 mef 6165 R rec ceca75ae-19a6-49f1-a906-6c3f17e3c0ae -2023-07-08 08:24:11.293212 2023-07-08 08:24:11.293217 mef 6166 R rec 1cdd9b2a-8848-4dc6-a3a0-83d317939a9d -2023-07-08 08:24:11.376924 2023-07-08 08:24:11.376929 mef 6167 R rec 890a13b7-8a72-413d-94c3-11b500f35cf4 -2023-07-08 08:24:11.443446 2023-07-08 08:24:11.443452 mef 6168 R rec 76c00d69-eba5-457d-9acc-f083205f0648 -2023-07-08 08:24:11.528869 2023-07-08 08:24:11.52888 mef 6169 R rec 882c02a2-46c7-4983-bf4c-1df82f67e9d8 -2023-07-08 08:24:11.715644 2023-07-08 08:24:11.715648 mef 6170 R rec ed25bd30-b82c-4f59-b908-2fae393e173d -2023-07-08 08:24:12.05127 2023-07-08 08:24:12.051275 mef 6171 R rec c80f554d-c829-42c8-bb47-7d80a6c837c4 -2023-07-08 08:24:12.13875 2023-07-08 08:24:12.138755 mef 6172 R rec 3748b71b-c6d4-490b-afff-1d79060a4288 -2023-07-08 08:24:12.22472 2023-07-08 08:24:12.224725 mef 6173 R rec 6b6276f7-77dd-45b5-ba4d-5e2dc0b2cc66 -2023-07-08 08:24:12.3882 2023-07-08 08:24:12.388206 mef 6174 R rec 0bdfefad-d502-43e4-a3f3-b665a0972d69 -2023-07-08 08:24:12.491034 2023-07-08 08:24:12.491039 mef 6175 R rec 73146347-aaee-4352-8bbc-a1471b19687f -2023-07-08 08:24:12.641978 2023-07-08 08:24:12.641983 mef 6176 R rec a5d26357-cf8f-4e9a-99f6-3d70c11e6e4c -2023-07-08 08:24:12.718345 2023-07-08 08:24:12.71835 mef 6177 R rec da7ab6f3-dcd2-4e44-b6f4-59bde2afc0a6 -2023-07-08 08:24:12.793247 2023-07-08 08:24:12.793253 mef 6178 R rec bf84b414-8d28-415c-9495-90a41d8d88a8 -2023-07-08 08:24:12.878062 2023-07-08 08:24:12.878072 mef 6179 R rec 6c2ef41e-646d-4223-a7ae-62a4c958528b -2023-07-08 08:24:12.950459 2023-07-08 08:24:12.950466 mef 6180 R rec c9a8e089-2cae-47cd-a0a6-6e01884592a5 -2023-07-08 08:24:13.173152 2023-07-08 08:24:13.173157 mef 6181 R rec eb986781-b7d3-4289-af09-e6ef9038d4ff -2023-07-08 08:24:13.399032 2023-07-08 08:24:13.399037 mef 6182 R rec bfc9fbee-f293-4d3d-a066-ab3d76d0b9c8 -2023-07-08 08:24:13.475409 2023-07-08 08:24:13.475416 mef 6183 R rec d676ded4-1ccc-40d1-9591-d097497d9bab -2023-07-08 08:24:13.637456 2023-07-08 08:24:13.63746 mef 6184 R rec f876728b-3d41-4659-b1b2-4950ced27539 -2023-07-08 08:24:13.785296 2023-07-08 08:24:13.785305 mef 6185 R rec f98a0cd4-e773-44ae-a2c1-b3f0aa2a3a21 -2023-07-08 08:24:13.857986 2023-07-08 08:24:13.857993 mef 6186 R rec 7e746f90-3355-47ae-94a9-bf9b46e05a00 -2023-07-08 08:24:13.928798 2023-07-08 08:24:13.928803 mef 6187 R rec 4a363cdb-75c4-44c0-9385-ebc031a254e1 -2023-07-08 08:24:14.243941 2023-07-08 08:24:14.243947 mef 6188 R rec 96201bc2-6bfc-40aa-89eb-4467cc41967f -2023-07-08 08:24:14.390416 2023-07-08 08:24:14.390421 mef 6189 R rec a0f09ae3-66ac-44cd-83a6-8554c8e7eb4c -2023-07-08 08:24:14.461396 2023-07-08 08:24:14.461401 mef 6190 R rec 7d19c86d-3081-458e-8cab-f07676fe0bd4 -2023-07-08 08:24:14.522857 2023-07-08 08:24:14.522862 mef 6191 R rec 5b0cafec-0335-4cc0-a01f-08d3d86162e2 -2023-07-08 08:24:14.594131 2023-07-08 08:24:14.594137 mef 6192 R rec 21339865-c467-420f-a588-b16343fe2f48 -2023-07-08 08:24:14.665757 2023-07-08 08:24:14.665763 mef 6193 R rec 31a068b7-8fad-443a-9b18-c2b8ea1c5336 -2023-07-08 08:24:14.821715 2023-07-08 08:24:14.821721 mef 6194 R rec a04fe7cd-5409-46c9-a379-60f436e7d8aa -2023-07-08 08:24:14.889682 2023-07-08 08:24:14.889687 mef 6195 R rec ca6bb23c-cc96-4d1d-ab65-52d3c4c4256d -2023-07-08 08:24:14.952448 2023-07-08 08:24:14.952453 mef 6196 R rec 39367c9d-bf8d-4532-b194-df36dd36be22 -2023-07-08 08:24:15.015752 2023-07-08 08:24:15.015757 mef 6197 R rec cadd9f30-a469-4686-be31-b3d721c4ea44 -2023-07-08 08:24:15.101981 2023-07-08 08:24:15.101991 mef 6198 R rec c457bb2b-8d9d-4cb4-bb82-5dd8dc87e1c3 -2023-07-08 08:24:15.205443 2023-07-08 08:24:15.205455 mef 6199 R rec 31d4257d-a73c-423a-9dcc-b1be601a46cb -2023-07-08 08:24:15.298752 2023-07-08 08:24:15.298763 mef 6200 R rec 234ebd6c-3e09-47cb-875f-3008c7c05ce0 -2023-07-08 08:24:15.388348 2023-07-08 08:24:15.388352 mef 6201 R rec 82d2ad0e-59c6-4978-a63b-f28a7b02ce33 -2023-07-08 08:24:15.475689 2023-07-08 08:24:15.475701 mef 6202 R rec 56c910f8-3574-4b62-a0b9-6d447bdef6a1 -2023-07-08 08:24:15.562686 2023-07-08 08:24:15.562703 mef 6203 R rec 696751ce-f7f5-4bda-9559-786de5145c31 -2023-07-08 08:24:15.653937 2023-07-08 08:24:15.653953 mef 6204 R rec 0a5538da-4134-4435-8645-6910b830526d -2023-07-08 08:24:15.735884 2023-07-08 08:24:15.735889 mef 6205 R rec 86e93a6b-1c46-4471-8991-14036ba754c3 -2023-07-08 08:24:15.812906 2023-07-08 08:24:15.812919 mef 6206 R rec a0397c46-60bb-4672-bb25-73a8a4a62190 -2023-07-08 08:24:15.902752 2023-07-08 08:24:15.902757 mef 6207 R rec 7ababb2f-a6a3-4d62-8be9-f114758ef504 -2023-07-08 08:24:15.986839 2023-07-08 08:24:15.986853 mef 6208 R rec 9e5d0209-9983-4ce6-b393-066697381ae8 -2023-07-08 08:24:16.066733 2023-07-08 08:24:16.066743 mef 6209 R rec eaf2f09c-11cb-40ad-b1b1-942e1fea53af -2023-07-08 08:24:16.150643 2023-07-08 08:24:16.150648 mef 6210 R rec 41031159-4631-4a66-8537-85c96db7a9e7 -2023-07-08 08:24:16.229261 2023-07-08 08:24:16.229272 mef 6211 R rec e1246bbe-33b6-4dca-96f9-c3ff47a737ac -2023-07-08 08:24:16.316467 2023-07-08 08:24:16.316481 mef 6212 R rec a32da89d-adfc-4193-a837-35fef861b31b -2023-07-08 08:24:16.403888 2023-07-08 08:24:16.403901 mef 6213 R rec 16a99b09-ed1d-4092-ba4b-83e0f4c8f9b6 -2023-07-08 08:24:16.498862 2023-07-08 08:24:16.498873 mef 6214 R rec 200298b1-4b3b-4a5f-9b8e-2fa2660fdab5 -2023-07-08 08:24:16.583655 2023-07-08 08:24:16.58367 mef 6215 R rec 2a20deae-6a9a-4433-b7e6-1d49b1323dfc -2023-07-08 08:24:16.670404 2023-07-08 08:24:16.670415 mef 6216 R rec c0802842-1a88-404a-abc6-6641255c7ac8 -2023-07-08 08:24:16.764479 2023-07-08 08:24:16.764489 mef 6217 R rec 83b92195-3c1e-4ec9-aabe-82720301293c -2023-07-08 08:24:16.850757 2023-07-08 08:24:16.850802 mef 6218 R rec 38441358-3789-47a4-a391-7a9bf19d02c8 -2023-07-08 08:24:16.93695 2023-07-08 08:24:16.936965 mef 6219 R rec 05705814-c8f7-4d01-96b5-7ee313178041 -2023-07-08 08:24:17.041845 2023-07-08 08:24:17.04185 mef 6220 R rec 68e5b939-6dc6-4e6f-ac86-de7d8937132e -2023-07-08 08:24:17.130191 2023-07-08 08:24:17.130202 mef 6221 R rec 25c418dc-821c-4e8c-82ed-bb8b4cf0a943 -2023-07-08 08:24:17.220572 2023-07-08 08:24:17.22058 mef 6222 R rec cf53196e-eb27-4ece-9dbb-f2b783d01585 -2023-07-08 08:24:17.36372 2023-07-08 08:24:17.363733 mef 6223 R rec 674df2b3-b204-4ba5-a1dd-ad6ef63f9f8b -2023-07-08 08:24:17.460684 2023-07-08 08:24:17.460694 mef 6224 R rec c35ce76b-6e8b-45c1-aeb4-52f931a92aeb -2023-07-08 08:24:17.542276 2023-07-08 08:24:17.542279 mef 6225 R rec ce75570e-6406-4c6b-8501-2a7a25eb5d7b -2023-07-08 08:24:17.626937 2023-07-08 08:24:17.626944 mef 6226 R rec c1675c19-4a03-4132-a74a-1694558a0244 -2023-07-08 08:24:17.698516 2023-07-08 08:24:17.698521 mef 6227 R rec 8b675a5c-8c12-4ad1-92b0-64c279b7e8a5 -2023-07-08 08:24:17.767727 2023-07-08 08:24:17.767735 mef 6228 R rec 9a4447ea-bbb6-4120-a340-2957a2d1c02d -2023-07-08 08:24:17.843946 2023-07-08 08:24:17.843951 mef 6229 R rec 1577af66-f408-45ca-be0c-d8b3fbfa00d9 -2023-07-08 08:24:17.916969 2023-07-08 08:24:17.916972 mef 6230 R rec fe9848e0-6033-4e92-b196-8949c9bf1824 -2023-07-08 08:24:18.013497 2023-07-08 08:24:18.013508 mef 6231 R rec c425573f-0702-4588-a81a-f4b4abfae960 -2023-07-08 08:24:18.103857 2023-07-08 08:24:18.103863 mef 6232 R rec 824e3196-a2f7-4389-ba1a-afc5d53ef211 -2023-07-08 08:24:18.187671 2023-07-08 08:24:18.187675 mef 6233 R rec 8df7f360-4496-433d-96e0-194e7b0dc919 -2023-07-08 08:24:18.263004 2023-07-08 08:24:18.26301 mef 6234 R rec 381634ab-53bb-44b8-aea3-25ed0bec0677 -2023-07-08 08:24:18.339935 2023-07-08 08:24:18.33994 mef 6235 R rec 94659b32-4df3-47df-a54d-ca991be94039 -2023-07-08 08:24:18.419598 2023-07-08 08:24:18.419603 mef 6236 R rec d441b0b0-c8c1-4742-b181-20019637084c -2023-07-08 08:24:18.487565 2023-07-08 08:24:18.48757 mef 6237 R rec 56a6027a-0a33-49a2-bd8a-bf4f381805cb -2023-07-08 08:24:18.578333 2023-07-08 08:24:18.578344 mef 6238 R rec 8f1788cc-aae7-40f6-aefa-0df204476dd5 -2023-07-08 08:24:18.680243 2023-07-08 08:24:18.680254 mef 6239 R rec cb8d2270-90f1-4510-9767-81f535741636 -2023-07-08 08:24:18.779788 2023-07-08 08:24:18.7798 mef 6240 R rec 4c088a91-9079-4608-bef6-6a51ab368f86 -2023-07-08 08:24:18.881582 2023-07-08 08:24:18.881595 mef 6241 R rec 82aa2636-6b77-4985-a827-2f869fed550d -2023-07-08 08:24:18.97833 2023-07-08 08:24:18.97834 mef 6242 R rec 61ca75c0-059f-44bb-8179-1170c2642166 -2023-07-08 08:24:19.076633 2023-07-08 08:24:19.076638 mef 6243 R rec 9008a955-8dc1-461e-9fcd-ea7f6084c3d0 -2023-07-08 08:24:19.152225 2023-07-08 08:24:19.152241 mef 6244 R rec 30c9080e-7637-4cb9-921d-88a3d7d6cf2a -2023-07-08 08:24:19.229192 2023-07-08 08:24:19.229197 mef 6245 R rec c106195b-63e3-4a30-9374-4a4f10f60da1 -2023-07-08 08:24:19.308711 2023-07-08 08:24:19.308721 mef 6246 R rec 3224baee-cd50-4f44-82d3-8888d342ff87 -2023-07-08 08:24:19.398747 2023-07-08 08:24:19.39876 mef 6247 R rec fa6a419e-ead5-4d21-8725-9750818f0fc1 -2023-07-08 08:24:19.48991 2023-07-08 08:24:19.489921 mef 6248 R rec ebb7928b-ea4b-4943-95b4-5bf2b0c49feb -2023-07-08 08:24:19.578139 2023-07-08 08:24:19.578228 mef 6249 R rec a62fa138-2c98-4240-9e9e-dae134060794 -2023-07-08 08:24:19.744665 2023-07-08 08:24:19.744671 mef 6250 R rec af6d3d03-6764-4c46-93b2-b9d358903e85 -2023-07-08 08:24:19.812733 2023-07-08 08:24:19.81274 mef 6251 R rec cefe2de3-47d5-47f9-908b-e9279f2c3fa3 -2023-07-08 08:24:19.883615 2023-07-08 08:24:19.88362 mef 6252 R rec e45e7b21-2848-4527-9972-f44afc8063f3 -2023-07-08 08:24:19.947386 2023-07-08 08:24:19.947391 mef 6253 R rec 5c7b06ea-888b-41ea-8ce1-727b10dc1d0a -2023-07-08 08:24:20.010957 2023-07-08 08:24:20.010962 mef 6254 R rec 1cde2c9c-9507-4f74-8d0b-992b11b0d4ac -2023-07-08 08:24:20.075415 2023-07-08 08:24:20.075421 mef 6255 R rec 992734b7-425e-4fd9-9a67-b8cff762dc02 -2023-07-08 08:24:20.142131 2023-07-08 08:24:20.142137 mef 6256 R rec 244f9b3b-dd2c-4cb6-9c6a-abd6c5f5ce93 -2023-07-08 08:24:20.211644 2023-07-08 08:24:20.211649 mef 6257 R rec 449ece6a-870b-481e-bcd1-76f420966d17 -2023-07-08 08:24:20.285758 2023-07-08 08:24:20.285763 mef 6258 R rec 283a70f7-1bc4-46bf-afc2-e527e15482ca -2023-07-08 08:24:20.360561 2023-07-08 08:24:20.36057 mef 6259 R rec 61a64f9d-1b83-445b-97c9-27d41d20b760 -2023-07-08 08:24:20.438731 2023-07-08 08:24:20.438737 mef 6260 R rec 4a6d86f2-3c27-4c1d-8d91-9f3a57346e8b -2023-07-08 08:24:20.512385 2023-07-08 08:24:20.512393 mef 6261 R rec 78f3e6ed-3013-47a9-bf68-e0bd17c4cc9b -2023-07-08 08:24:20.575138 2023-07-08 08:24:20.575143 mef 6262 R rec 8f6b4220-d9db-4ee9-b79e-44a668f08b6d -2023-07-08 08:24:20.644018 2023-07-08 08:24:20.644029 mef 6263 R rec 0a07185e-af13-4d57-9b21-f03f6448821d -2023-07-08 08:24:20.729836 2023-07-08 08:24:20.729842 mef 6264 R rec a5e88f60-7b6c-4513-92f6-2bda71448845 -2023-07-08 08:24:20.82339 2023-07-08 08:24:20.823404 mef 6265 R rec f796c7e2-bb97-476e-959c-78bd2b4fe08c -2023-07-08 08:24:20.909771 2023-07-08 08:24:20.909782 mef 6266 R rec a990f2db-2853-46ec-b77c-260d07c7ff5e -2023-07-08 08:24:20.988961 2023-07-08 08:24:20.988972 mef 6267 R rec a0061d61-1b0d-494c-86f0-2ff139e78fda -2023-07-08 08:24:21.064136 2023-07-08 08:24:21.064142 mef 6268 R rec 62850ac5-5990-4e30-a6e2-3ddeda9e6e52 -2023-07-08 08:24:21.136289 2023-07-08 08:24:21.136294 mef 6269 R rec 12bb9cef-4b7d-447e-b4e2-94f7aae06800 -2023-07-08 08:24:21.211805 2023-07-08 08:24:21.211808 mef 6270 R rec 5add4555-0d35-45a1-be17-63a6b391b47d -2023-07-08 08:24:21.277631 2023-07-08 08:24:21.277636 mef 6271 R rec 016f7cef-ddaf-4767-8f97-4690634ae3f6 -2023-07-08 08:24:21.342818 2023-07-08 08:24:21.342824 mef 6272 R rec 85ff265d-056e-40bc-bccb-400e0f371710 -2023-07-08 08:24:21.410513 2023-07-08 08:24:21.410518 mef 6273 R rec 9ac54dac-8fd7-4f76-8929-0705f9b18790 -2023-07-08 08:24:21.56852 2023-07-08 08:24:21.568525 mef 6274 R rec c5ff2bde-89b1-4034-9a36-d8aa5e8eed37 -2023-07-08 08:24:21.636509 2023-07-08 08:24:21.636514 mef 6275 R rec bf5e175b-25e2-4d18-8919-a4d86a502911 -2023-07-08 08:24:21.711452 2023-07-08 08:24:21.71146 mef 6276 R rec cdb5ae72-aec5-4d63-86b9-b2706e4f8e60 -2023-07-08 08:24:21.866234 2023-07-08 08:24:21.86624 mef 6277 R rec 2f3cf805-5dc7-422b-bcbf-9348d72be31f -2023-07-08 08:24:21.932777 2023-07-08 08:24:21.932784 mef 6278 R rec 975885df-ec2b-4fee-9aee-e06b64cc1207 -2023-07-08 08:24:22.003194 2023-07-08 08:24:22.003197 mef 6279 R rec 463d242f-5403-4056-872e-0830b70c8460 -2023-07-08 08:24:22.073811 2023-07-08 08:24:22.073817 mef 6280 R rec 8dbe0813-fb53-4b30-b64b-27185e0e0e60 -2023-07-08 08:24:22.151641 2023-07-08 08:24:22.151646 mef 6281 R rec ac125fad-53d2-443c-8952-b745105cf4a4 -2023-07-08 08:24:22.218733 2023-07-08 08:24:22.218738 mef 6282 R rec 4c1f616e-202c-4001-b825-4dc46ca49fd9 -2023-07-08 08:24:22.287263 2023-07-08 08:24:22.287269 mef 6283 R rec 20792271-b296-43d1-b76f-46cd89a7de19 -2023-07-08 08:24:22.36306 2023-07-08 08:24:22.363065 mef 6284 R rec ca361d5b-3d0a-4080-8dd8-afb676e4cf48 -2023-07-08 08:24:22.427501 2023-07-08 08:24:22.427506 mef 6285 R rec dfcdf5ea-c054-4476-8701-1e54a7830ff8 -2023-07-08 08:24:22.502937 2023-07-08 08:24:22.502941 mef 6286 R rec 9b073bda-a2c8-4f52-8088-9d8079ea43b8 -2023-07-08 08:24:22.566088 2023-07-08 08:24:22.566093 mef 6287 R rec b91c1e7f-c070-43c6-8f33-29a5662695e6 -2023-07-08 08:24:22.629286 2023-07-08 08:24:22.629291 mef 6288 R rec 148ad15e-7d02-4d4e-a6bc-b1a0509f32dc -2023-07-08 08:24:22.692328 2023-07-08 08:24:22.692333 mef 6289 R rec 51a8ff07-c267-4b48-91df-1c8e7e20e8a8 -2023-07-08 08:24:22.760237 2023-07-08 08:24:22.760242 mef 6290 R rec 3bb68b4f-b651-4022-8ff0-5be8a9f09dce -2023-07-08 08:24:22.836354 2023-07-08 08:24:22.836359 mef 6291 R rec 3139ce02-9f94-42b4-b224-f0cc2cb642ae -2023-07-08 08:24:22.906532 2023-07-08 08:24:22.906535 mef 6292 R rec 7e05b12d-1cd8-4b49-bd62-ea75fc9b5ddd -2023-07-08 08:24:22.982577 2023-07-08 08:24:22.982581 mef 6293 R rec 87c15bb7-9522-4e71-ae67-4a013ecb8bf2 -2023-07-08 08:24:23.049408 2023-07-08 08:24:23.049413 mef 6294 R rec 46e25165-0579-42ab-b798-65c443d5f095 -2023-07-08 08:24:23.119509 2023-07-08 08:24:23.119514 mef 6295 R rec da6b9d4d-d0ae-4a9e-bdea-3c30cf1bc444 -2023-07-08 08:24:23.193552 2023-07-08 08:24:23.193558 mef 6296 R rec d4dfc46e-1c83-4aea-a4a4-05908c9a56a5 -2023-07-08 08:24:23.272969 2023-07-08 08:24:23.272978 mef 6297 R rec ceb7a09f-01ae-4593-aaa5-7f12e3572eef -2023-07-08 08:24:23.356049 2023-07-08 08:24:23.356054 mef 6298 R rec a6c7b9e9-a3b7-4587-a68f-cc80fa2cb82b -2023-07-08 08:24:23.434634 2023-07-08 08:24:23.434645 mef 6299 R rec c55179f7-9068-404a-a9dc-f6a42dbdb1ef -2023-07-08 08:24:23.51895 2023-07-08 08:24:23.518962 mef 6300 R rec 5b1ccab0-4b32-48a4-968b-5c6e8396fa7f -2023-07-08 08:24:23.606533 2023-07-08 08:24:23.606538 mef 6301 R rec 1c2b0693-7b1e-44eb-8258-3530c9d6299a -2023-07-08 08:24:23.691052 2023-07-08 08:24:23.691063 mef 6302 R rec f3276bec-93e5-4186-b6d0-cfb34c889a89 -2023-07-08 08:24:23.783932 2023-07-08 08:24:23.783944 mef 6303 R rec 77b601b5-51ca-49da-9f01-4de884f8448d -2023-07-08 08:24:23.871315 2023-07-08 08:24:23.871325 mef 6304 R rec 2dfe9276-4779-4ad4-a942-aac59ad1cfc1 -2023-07-08 08:24:23.963613 2023-07-08 08:24:23.963625 mef 6305 R rec dd8a934b-ae0f-4e96-bf94-7b5261e1ba2a -2023-07-08 08:24:24.062748 2023-07-08 08:24:24.062795 mef 6306 R rec 3c9f49fb-424c-424d-9aa9-1d017116b3fb -2023-07-08 08:24:24.158101 2023-07-08 08:24:24.158113 mef 6307 R rec 5df890b0-360f-4f83-969e-7cef6d315dde -2023-07-08 08:24:24.234489 2023-07-08 08:24:24.234494 mef 6308 R rec ef67d8e0-3ad2-40d0-b5ce-4cc8c133d8d0 -2023-07-08 08:24:24.316798 2023-07-08 08:24:24.316802 mef 6309 R rec 6b3394b3-6a5c-4ddc-9e9a-cf1251c33569 -2023-07-08 08:24:24.403654 2023-07-08 08:24:24.403664 mef 6310 R rec 7f722b5e-d42f-474c-b441-5cd9633dc5f0 -2023-07-08 08:24:24.486485 2023-07-08 08:24:24.486496 mef 6311 R rec 1997dff7-1b15-42d3-bc16-b7270f5f7d73 -2023-07-08 08:24:24.570916 2023-07-08 08:24:24.570927 mef 6312 R rec fbc639ef-2626-45a6-8848-aa5cbe543d84 -2023-07-08 08:24:24.661421 2023-07-08 08:24:24.661431 mef 6313 R rec 1bea6a08-abec-4ca3-a354-438a25d7e8db -2023-07-08 08:24:24.816861 2023-07-08 08:24:24.816877 mef 6314 R rec b1923688-128a-48a8-ab44-df5c9a94be12 -2023-07-08 08:24:24.910169 2023-07-08 08:24:24.91018 mef 6315 R rec 217aa823-b410-4f48-a184-2ca069deda87 -2023-07-08 08:24:24.991459 2023-07-08 08:24:24.99147 mef 6316 R rec ec77b885-564f-4e67-a818-e0dc8f61f58c -2023-07-08 08:24:25.15937 2023-07-08 08:24:25.15938 mef 6317 R rec ca3a1da5-a3d0-4505-809f-880cc35d1857 -2023-07-08 08:24:25.241124 2023-07-08 08:24:25.241129 mef 6318 R rec 03fcddd4-8cb4-47e5-961b-6b14e5bae177 -2023-07-08 08:24:25.328337 2023-07-08 08:24:25.328347 mef 6319 R rec 2cae2223-e9ed-4544-9e59-165f8507d52c -2023-07-08 08:24:25.417155 2023-07-08 08:24:25.417166 mef 6320 R rec 4021d2f2-1446-4105-958f-89552723f37c -2023-07-08 08:24:25.503787 2023-07-08 08:24:25.503793 mef 6321 R rec 2f1edf3f-188d-42f1-b1ab-71cdca2d8bed -2023-07-08 08:24:25.689628 2023-07-08 08:24:25.689639 mef 6322 R rec 898aadf5-8fb6-4223-bb5c-64836b435734 -2023-07-08 08:24:25.771731 2023-07-08 08:24:25.771736 mef 6323 R rec 4d23c8e2-e6d4-41fa-b338-8cc5f12f5596 -2023-07-08 08:24:25.855049 2023-07-08 08:24:25.85506 mef 6324 R rec 1a28b44f-6c45-49d4-9baf-4b255a9bb4c6 -2023-07-08 08:24:25.938713 2023-07-08 08:24:25.938718 mef 6325 R rec 778289e0-3f9a-47d6-b277-32528cfafeea -2023-07-08 08:24:26.020986 2023-07-08 08:24:26.020999 mef 6326 R rec bbc26610-e6eb-4c1e-81f8-d89963f46299 -2023-07-08 08:24:26.204346 2023-07-08 08:24:26.204357 mef 6327 R rec 4498a615-b6e2-4927-8633-34e3298b7ddf -2023-07-08 08:24:26.276516 2023-07-08 08:24:26.276522 mef 6328 R rec c77cf961-4e91-4da6-b5b6-e47aac7e484b -2023-07-08 08:24:26.358374 2023-07-08 08:24:26.358384 mef 6329 R rec f301e184-1119-425a-ae1c-ff7bf458cadb -2023-07-08 08:24:26.447724 2023-07-08 08:24:26.447739 mef 6330 R rec 6caaf98e-e744-4184-bc1a-cdc6812f21f5 -2023-07-08 08:24:26.5378 2023-07-08 08:24:26.537811 mef 6331 R rec 97ec2e03-4a09-4a64-86a1-d5138720d68b -2023-07-08 08:24:26.638055 2023-07-08 08:24:26.638066 mef 6332 R rec a5abd79e-015a-4ecc-ba6b-c939a998f5ae -2023-07-08 08:24:26.724876 2023-07-08 08:24:26.724886 mef 6333 R rec 3f6ef9cf-d525-4bf1-989c-0bc655d15264 -2023-07-08 08:24:26.814689 2023-07-08 08:24:26.814699 mef 6334 R rec c6ad1300-6f5c-4dc6-991b-ef5f858775ca -2023-07-08 08:24:26.900938 2023-07-08 08:24:26.900948 mef 6335 R rec 290e5e1f-c0c4-4c7f-aded-91b61b0a4110 -2023-07-08 08:24:26.986927 2023-07-08 08:24:26.986938 mef 6336 R rec 136ac947-31af-4bd7-9c17-45d1ff8d9480 -2023-07-08 08:24:27.083515 2023-07-08 08:24:27.083526 mef 6337 R rec d653e9ef-9ce0-42aa-a725-6d40b21510c8 -2023-07-08 08:24:27.178523 2023-07-08 08:24:27.178533 mef 6338 R rec 45e01795-aab2-4b45-b326-87f476cdcf8b -2023-07-08 08:24:27.272655 2023-07-08 08:24:27.27266 mef 6339 R rec f5ddd6ec-f1fc-4d24-b75b-8799da712532 -2023-07-08 08:24:27.482621 2023-07-08 08:24:27.482631 mef 6340 R rec 3b02a916-0d3a-465e-bdb4-752c19010353 -2023-07-08 08:24:27.579128 2023-07-08 08:24:27.579139 mef 6341 R rec 9ab83dcb-aaaa-467f-8f5e-960a7da2d44d -2023-07-08 08:24:27.666368 2023-07-08 08:24:27.66638 mef 6342 R rec d0d7b0fb-3eec-4f41-a018-8ffda5fb188a -2023-07-08 08:24:27.752235 2023-07-08 08:24:27.75224 mef 6343 R rec a3a224fa-34f7-4932-9563-b50edf35d75b -2023-07-08 08:24:27.856142 2023-07-08 08:24:27.856161 mef 6344 R rec b68ca271-f27b-402b-b05e-45d0b1ed5d66 -2023-07-08 08:24:27.942099 2023-07-08 08:24:27.942111 mef 6345 R rec 4343ef1f-c228-40ab-ab24-1f6837ee1850 -2023-07-08 08:24:28.029988 2023-07-08 08:24:28.029993 mef 6346 R rec 2733a1ae-b1fd-4d72-b68a-74b8b9c31aca -2023-07-08 08:24:28.107361 2023-07-08 08:24:28.107372 mef 6347 R rec 747b7e15-2c03-4c64-b3dc-00462530d9e9 -2023-07-08 08:24:28.198793 2023-07-08 08:24:28.198806 mef 6348 R rec f23b056f-3b44-46e0-86e7-25c5e6e7c3a0 -2023-07-08 08:24:28.290719 2023-07-08 08:24:28.29073 mef 6349 R rec f2d02a9b-4118-4009-9340-b8882df05b10 -2023-07-08 08:24:28.394969 2023-07-08 08:24:28.39498 mef 6350 R rec 98268b1d-93cd-459b-8f78-b04987bae23c -2023-07-08 08:24:28.483083 2023-07-08 08:24:28.483094 mef 6351 R rec 60306e95-c528-476a-82e3-471e1ded007d -2023-07-08 08:24:28.586551 2023-07-08 08:24:28.586562 mef 6352 R rec d1b81868-c52e-48b6-a863-d5e200234905 -2023-07-08 08:24:28.689312 2023-07-08 08:24:28.689323 mef 6353 R rec be0fe8fc-ea9d-47d1-be9e-9e2c5c99ef19 -2023-07-08 08:24:28.792951 2023-07-08 08:24:28.792967 mef 6354 R rec 3e4e2f46-ed00-48b5-932b-73d4895db14f -2023-07-08 08:24:28.886131 2023-07-08 08:24:28.886144 mef 6355 R rec ee8dd164-21b4-4c82-a837-983d45582be5 -2023-07-08 08:24:28.968646 2023-07-08 08:24:28.968657 mef 6356 R rec b3fcab69-a3c3-4337-ac76-caed1be03a39 -2023-07-08 08:24:29.061446 2023-07-08 08:24:29.061458 mef 6357 R rec 0cbf7eae-0573-4827-b061-5da4f6db3794 -2023-07-08 08:24:29.156248 2023-07-08 08:24:29.156261 mef 6358 R rec 4ed00d60-42fc-4228-8a69-98e320f9fb0a -2023-07-08 08:24:29.241519 2023-07-08 08:24:29.241525 mef 6359 R rec b05e3991-95a7-4b9b-bfcb-42ceb10f0ac2 -2023-07-08 08:24:29.330232 2023-07-08 08:24:29.330242 mef 6360 R rec b328aeeb-90b2-4082-8fb8-45bf128bdad6 -2023-07-08 08:24:29.4196 2023-07-08 08:24:29.419605 mef 6361 R rec a057083b-3d2b-4d5d-a6b1-b1541fa034f9 -2023-07-08 08:24:29.503356 2023-07-08 08:24:29.50336 mef 6362 R rec ed1a6b44-94fd-43cd-8252-aaec85341e19 -2023-07-08 08:24:29.590097 2023-07-08 08:24:29.590109 mef 6363 R rec dd85ce5e-e8fe-440d-8546-184fc73853b5 -2023-07-08 08:24:29.696285 2023-07-08 08:24:29.696298 mef 6364 R rec 05d01a4e-3673-4c14-9feb-389a1b603fcb -2023-07-08 08:24:29.87245 2023-07-08 08:24:29.87246 mef 6365 R rec c943b2e4-19e4-4df3-a677-a34c3956226d -2023-07-08 08:24:29.958229 2023-07-08 08:24:29.958244 mef 6366 R rec bbebbfb0-1b28-4d41-be0b-4af472486c86 -2023-07-08 08:24:30.041979 2023-07-08 08:24:30.04199 mef 6367 R rec 1b348371-faaf-4a62-86be-3086eb18d4b6 -2023-07-08 08:24:30.134307 2023-07-08 08:24:30.134317 mef 6368 R rec 0ec10d58-bf0f-4301-842a-79bbcf93354f -2023-07-08 08:24:30.327785 2023-07-08 08:24:30.327798 mef 6369 R rec f3c70d6b-665b-4b64-b207-333f9ee49116 -2023-07-08 08:24:30.532298 2023-07-08 08:24:30.532309 mef 6370 R rec 99bede5c-a49a-4049-9f44-c3c26cc3d0d1 -2023-07-08 08:24:30.623827 2023-07-08 08:24:30.623837 mef 6371 R rec 092e8ca5-bc25-4a94-9a2b-6bc03bace06c -2023-07-08 08:24:30.800248 2023-07-08 08:24:30.80026 mef 6372 R rec ed2d7a72-08b4-4e25-9c9a-6a956aed048c -2023-07-08 08:24:30.913688 2023-07-08 08:24:30.9137 mef 6373 R rec e5b22a05-436f-4963-975d-1c8320957a45 -2023-07-08 08:24:31.005477 2023-07-08 08:24:31.005488 mef 6374 R rec bf5ccfed-4b1f-4707-96d9-482039c86328 -2023-07-08 08:24:31.090813 2023-07-08 08:24:31.090825 mef 6375 R rec c2d9e16f-b9c8-4a4c-8966-e0e8a8d2cc30 -2023-07-08 08:24:31.187515 2023-07-08 08:24:31.187526 mef 6376 R rec 8b475485-2719-40e0-95a2-d63e490571d0 -2023-07-08 08:24:31.269161 2023-07-08 08:24:31.269166 mef 6377 R rec b0160092-e4c2-4e00-a3cc-d3b98c5043cd -2023-07-08 08:24:31.348273 2023-07-08 08:24:31.348284 mef 6378 R rec 9887eb27-bc0b-4902-9ddd-59f2c0c26827 -2023-07-08 08:24:31.444239 2023-07-08 08:24:31.444251 mef 6379 R rec c7546cb7-547f-48df-b990-b0221ade5786 -2023-07-08 08:24:31.536888 2023-07-08 08:24:31.536898 mef 6380 R rec a1558b06-60c8-4346-9609-4b495150afb0 -2023-07-08 08:24:31.6342 2023-07-08 08:24:31.634211 mef 6381 R rec c58fc468-0866-48c0-a09c-4e07a9ae4ead -2023-07-08 08:24:31.737379 2023-07-08 08:24:31.737389 mef 6382 R rec 1d42e54a-e157-4b67-b4de-1dd563141254 -2023-07-08 08:24:31.827296 2023-07-08 08:24:31.82731 mef 6383 R rec f39d3f04-4d5a-419d-8806-11bb6e4c2160 -2023-07-08 08:24:31.946551 2023-07-08 08:24:31.946562 mef 6384 R rec c45bed12-daf2-441b-ac66-d95b2fd57420 -2023-07-08 08:24:32.233871 2023-07-08 08:24:32.233885 mef 6385 R rec 18b7558f-cd7a-4c4b-8eab-7c39dbfed12a -2023-07-08 08:24:32.317568 2023-07-08 08:24:32.317579 mef 6386 R rec be8e6543-ebe7-4c48-8efc-9b73f8dc1e5f -2023-07-08 08:24:32.404642 2023-07-08 08:24:32.404654 mef 6387 R rec 5fff8a74-0b75-491b-9664-efc338f2ae0f -2023-07-08 08:24:32.582065 2023-07-08 08:24:32.582078 mef 6388 R rec 71088c2a-3b03-482b-b052-743cde7c056b -2023-07-08 08:24:32.684068 2023-07-08 08:24:32.684082 mef 6389 R rec 8d7e557f-5ad5-4cb5-b336-807f4fc612d4 -2023-07-08 08:24:32.769613 2023-07-08 08:24:32.769619 mef 6390 R rec 1b928674-649e-4019-917d-84d68461d75d -2023-07-08 08:24:32.950612 2023-07-08 08:24:32.950623 mef 6391 R rec 947241db-2de4-4b91-b697-9c709e5756e3 -2023-07-08 08:24:33.039464 2023-07-08 08:24:33.039477 mef 6392 R rec 689a8ce6-4d64-4e29-8493-8fc03b395d42 -2023-07-08 08:24:33.140873 2023-07-08 08:24:33.140884 mef 6393 R rec b5d3b789-71e1-4a84-82fb-3f940ddfa00a -2023-07-08 08:24:33.241284 2023-07-08 08:24:33.24129 mef 6394 R rec 770d00ae-3ab1-4278-a06e-849bd761ea97 -2023-07-08 08:24:33.340281 2023-07-08 08:24:33.340291 mef 6395 R rec 7484dad2-0ffa-4b5a-89da-997e2261bdc8 -2023-07-08 08:24:33.436148 2023-07-08 08:24:33.436163 mef 6396 R rec 2208b312-df6b-4ac8-a250-a22eee18a04d -2023-07-08 08:24:33.537569 2023-07-08 08:24:33.537582 mef 6397 R rec c4fe9574-c182-4f18-8e4b-d2605dbcd16d -2023-07-08 08:24:33.626005 2023-07-08 08:24:33.626016 mef 6398 R rec e3c4bf45-f64f-46d5-8245-7cb47c069b9d -2023-07-08 08:24:33.726352 2023-07-08 08:24:33.72637 mef 6399 R rec 4ef02dca-7e7a-461d-9f7a-e04444eb32d1 -2023-07-08 08:24:33.911576 2023-07-08 08:24:33.911588 mef 6400 R rec 154d822a-d62f-4890-ba90-fd981c7d12f1 -2023-07-08 08:24:33.999005 2023-07-08 08:24:33.999016 mef 6401 R rec ed3975f8-eaf0-40e8-ad02-c418c3cc50ab -2023-07-08 08:24:34.105601 2023-07-08 08:24:34.105615 mef 6402 R rec 3311dbe7-f052-4f46-8685-73f1f899049c -2023-07-08 08:24:34.193684 2023-07-08 08:24:34.193695 mef 6403 R rec 86389d23-fd62-4d31-9f53-a1dd9e945837 -2023-07-08 08:24:34.277351 2023-07-08 08:24:34.277357 mef 6404 R rec 2de1ddd8-b7a3-4352-a4ae-3dfb3902d2d7 -2023-07-08 08:24:34.374614 2023-07-08 08:24:34.374628 mef 6405 R rec 74366aac-bc55-4eaa-82bc-560dd1496b1e -2023-07-08 08:24:34.470205 2023-07-08 08:24:34.470222 mef 6406 R rec 8241c46d-fa77-412b-bd2c-1413da416370 -2023-07-08 08:24:34.55789 2023-07-08 08:24:34.5579 mef 6407 R rec 346ba3f2-1d6e-4555-be25-9d783278a1f6 -2023-07-08 08:24:34.653706 2023-07-08 08:24:34.653715 mef 6408 R rec 1ae39c59-71a1-4aa6-8718-7dc7332ab6aa -2023-07-08 08:24:34.745452 2023-07-08 08:24:34.745461 mef 6409 R rec 0b6d67a7-aeb1-40eb-814e-07547a5a44b5 -2023-07-08 08:24:34.843442 2023-07-08 08:24:34.843458 mef 6410 R rec 0337b3a6-a4f0-42bb-9360-efdd0911281c -2023-07-08 08:24:34.940234 2023-07-08 08:24:34.940251 mef 6411 R rec f28e6076-3aa2-4607-b2d8-e4e955b0c481 -2023-07-08 08:24:35.034825 2023-07-08 08:24:35.03483 mef 6412 R rec a7968d58-2122-4416-914a-692c94b2d918 -2023-07-08 08:24:35.120569 2023-07-08 08:24:35.120582 mef 6413 R rec 666f3646-0298-4ad1-9755-1782f8b7af7f -2023-07-08 08:24:35.211125 2023-07-08 08:24:35.211134 mef 6414 R rec aa24dbe7-f73e-4d2f-81e1-b62b0f5244bb -2023-07-08 08:24:35.290604 2023-07-08 08:24:35.290616 mef 6415 R rec d53eb726-d101-4fba-b31a-b59c5246b080 -2023-07-08 08:24:35.382785 2023-07-08 08:24:35.382792 mef 6416 R rec 9e4e29a1-3fb7-44d1-81cb-59eb772cc169 -2023-07-08 08:24:35.489848 2023-07-08 08:24:35.489852 mef 6417 R rec 22117e2f-c986-44b0-a6f2-2ba07dc0c342 -2023-07-08 08:24:35.585623 2023-07-08 08:24:35.585628 mef 6418 R rec 95dcd1a6-5a09-43fa-9617-bfadd8601830 -2023-07-08 08:24:35.675813 2023-07-08 08:24:35.675829 mef 6419 R rec e5c322fc-5294-43eb-8bea-b2a0e79e190f -2023-07-08 08:24:35.794736 2023-07-08 08:24:35.79475 mef 6420 R rec 99507085-e353-4531-8a5f-e2be69562711 -2023-07-08 08:24:35.893707 2023-07-08 08:24:35.893721 mef 6421 R rec 8a608228-63aa-4cff-9e60-0b6c58c760d4 -2023-07-08 08:24:35.999774 2023-07-08 08:24:35.999784 mef 6422 R rec 101ba6f9-51f8-46d7-ad53-e3b17f2a1eb1 -2023-07-08 08:24:36.110281 2023-07-08 08:24:36.110295 mef 6423 R rec 5f324bdd-297c-4a65-8540-f3a10dc355bf -2023-07-08 08:24:36.213287 2023-07-08 08:24:36.213297 mef 6424 R rec ec80354d-b153-408b-82fd-613d34335ee8 -2023-07-08 08:24:36.288725 2023-07-08 08:24:36.288736 mef 6425 R rec d643a81d-5ee0-4abc-a0e7-78cc32cc51f0 -2023-07-08 08:24:36.383995 2023-07-08 08:24:36.384009 mef 6426 R rec 691625f2-33b0-461b-8443-068f3346540d -2023-07-08 08:24:36.487343 2023-07-08 08:24:36.487354 mef 6427 R rec 558a76c2-1365-4713-9e52-225f85241b43 -2023-07-08 08:24:36.582861 2023-07-08 08:24:36.582867 mef 6428 R rec 54fcac45-a3c0-42fb-a2df-5721651b32ce -2023-07-08 08:24:36.668496 2023-07-08 08:24:36.668506 mef 6429 R rec ab87e1d5-7f0b-4ccb-b11b-e4c48c2a3f10 -2023-07-08 08:24:36.754953 2023-07-08 08:24:36.754958 mef 6430 R rec 5e33f72b-8b76-4b27-8750-521fe3549f6e -2023-07-08 08:24:36.840063 2023-07-08 08:24:36.840073 mef 6431 R rec 6a415215-40f1-46dd-9f91-e53c95f677a3 -2023-07-08 08:24:36.92188 2023-07-08 08:24:36.921886 mef 6432 R rec 1abb4fbd-49d3-4835-83e8-13c201e7eb69 -2023-07-08 08:24:37.033803 2023-07-08 08:24:37.033813 mef 6433 R rec 5b40f717-d6bf-4e84-9e09-eb7cfdd201db -2023-07-08 08:24:37.143912 2023-07-08 08:24:37.143917 mef 6434 R rec 093d9335-ef30-42de-b18e-9f24790c480d -2023-07-08 08:24:37.234751 2023-07-08 08:24:37.234761 mef 6435 R rec b56a243e-12cb-4dba-b36b-ca31256225f7 -2023-07-08 08:24:37.323658 2023-07-08 08:24:37.323669 mef 6436 R rec 8e6c263c-d3d7-41d0-be91-27afdb937db3 -2023-07-08 08:24:37.415816 2023-07-08 08:24:37.41583 mef 6437 R rec 989b8717-dc52-44f7-a949-a842958d9504 -2023-07-08 08:24:37.511062 2023-07-08 08:24:37.511076 mef 6438 R rec 1bde5335-4682-4d82-9cc2-9f4c36025909 -2023-07-08 08:24:37.611586 2023-07-08 08:24:37.611605 mef 6439 R rec fb1038a6-16a7-473e-aec1-37f8bdaf0953 -2023-07-08 08:24:37.713482 2023-07-08 08:24:37.713494 mef 6440 R rec 6856ae8d-2b4c-4ce9-9033-416fea91ec4f -2023-07-08 08:24:37.79949 2023-07-08 08:24:37.799496 mef 6441 R rec 174849ae-e905-4902-89b7-a01ce8e431a0 -2023-07-08 08:24:37.899447 2023-07-08 08:24:37.899464 mef 6442 R rec 5f9eb600-6ae5-418b-86bc-eddaf50d3f08 -2023-07-08 08:24:38.013086 2023-07-08 08:24:38.0131 mef 6443 R rec 08f4f80a-236b-4411-9fa4-6a0556af6507 -2023-07-08 08:24:38.099733 2023-07-08 08:24:38.099739 mef 6444 R rec 2f0c3996-cd2b-4f93-a6d3-0f386833fea0 -2023-07-08 08:24:38.197667 2023-07-08 08:24:38.197678 mef 6445 R rec 531a82d4-ef35-417e-aaed-c6c156668675 -2023-07-08 08:24:38.307888 2023-07-08 08:24:38.307893 mef 6446 R rec 27efb45e-23eb-4ac5-a263-18ce346f169a -2023-07-08 08:24:38.40815 2023-07-08 08:24:38.408164 mef 6447 R rec dc1d126a-d292-4e8e-a092-d44cd97232a5 -2023-07-08 08:24:38.524229 2023-07-08 08:24:38.524248 mef 6448 R rec 6f5b8b53-7db3-42f3-9845-efe3ebf779d3 -2023-07-08 08:24:38.616319 2023-07-08 08:24:38.616332 mef 6449 R rec 0e855f59-bfec-4765-ad66-97028f919ea4 -2023-07-08 08:24:38.699547 2023-07-08 08:24:38.699555 mef 6450 R rec d63233d8-b7a5-4af7-a2a9-5495ed7d6d3c -2023-07-08 08:24:38.792151 2023-07-08 08:24:38.792164 mef 6451 R rec d6c3844b-eadd-4af2-803a-953402a136f5 -2023-07-08 08:24:38.895615 2023-07-08 08:24:38.895626 mef 6452 R rec ca5d213b-72be-4aca-94ef-7c13c1525a9b -2023-07-08 08:24:38.98273 2023-07-08 08:24:38.982735 mef 6453 R rec 198e99a4-0033-45fc-a115-a1eae3b202bd -2023-07-08 08:24:39.118829 2023-07-08 08:24:39.118836 mef 6454 R rec deb4443a-187e-4096-a435-48d020a1403a -2023-07-08 08:24:39.190094 2023-07-08 08:24:39.190099 mef 6455 R rec f2cda9ea-eb0d-40a4-b028-eb20053a951e -2023-07-08 08:24:39.261652 2023-07-08 08:24:39.261657 mef 6456 R rec 1e828791-88ff-470d-965c-8737bcfeeac4 -2023-07-08 08:24:39.322042 2023-07-08 08:24:39.322047 mef 6457 R rec e8dc0ef4-e67a-4130-8e51-6c83dce898e4 -2023-07-08 08:24:39.391149 2023-07-08 08:24:39.391155 mef 6458 R rec 99536616-1572-48a2-b261-9d2468838135 -2023-07-08 08:24:39.461493 2023-07-08 08:24:39.461498 mef 6459 R rec c3512a0a-cbf8-4ebe-a3e0-b07b96f92090 -2023-07-08 08:24:39.537697 2023-07-08 08:24:39.537706 mef 6460 R rec 08cfd169-ed07-4460-9508-3ce1d74faece -2023-07-08 08:24:39.636055 2023-07-08 08:24:39.636066 mef 6461 R rec caa320cf-96dd-4000-996c-aca4eb1538d2 -2023-07-08 08:24:39.732179 2023-07-08 08:24:39.73219 mef 6462 R rec cf7720d0-df85-41ab-a173-f1b90709082f -2023-07-08 08:24:39.801547 2023-07-08 08:24:39.801552 mef 6463 R rec d17d97c9-cb38-484b-9f0a-eb49d05cb134 -2023-07-08 08:24:39.863705 2023-07-08 08:24:39.86371 mef 6464 R rec 65ccd095-20a4-4090-8434-b8a4c05bc82e -2023-07-08 08:24:39.931601 2023-07-08 08:24:39.931606 mef 6465 R rec f1abf0e6-5c23-4e47-b6c2-6f569b83f3ca -2023-07-08 08:24:40.036092 2023-07-08 08:24:40.036097 mef 6466 R rec 809d6705-2e48-48bf-8cae-bf3a5440ee3d -2023-07-08 08:24:40.124329 2023-07-08 08:24:40.124345 mef 6467 R rec fef3b9b9-17e6-44da-9fad-cb3e0b159fc2 -2023-07-08 08:24:40.230977 2023-07-08 08:24:40.230988 mef 6468 R rec 5c547445-740e-4ee3-bab7-6a0294718f7d -2023-07-08 08:24:40.297452 2023-07-08 08:24:40.297455 mef 6469 R rec 04ee1c3f-1380-491f-93c4-f22bbadba2f6 -2023-07-08 08:24:40.377081 2023-07-08 08:24:40.377097 mef 6470 R rec 032e9599-9ccb-431d-832a-f1a77822950c -2023-07-08 08:24:40.462433 2023-07-08 08:24:40.462444 mef 6471 R rec 3b3e24bc-0ee4-483a-9f0d-b530f7e14675 -2023-07-08 08:24:40.54881 2023-07-08 08:24:40.54882 mef 6472 R rec 6ffd1149-6239-4eb4-bf01-dfa1e6c97483 -2023-07-08 08:24:40.65347 2023-07-08 08:24:40.653484 mef 6473 R rec d258d56b-589c-4029-98f0-d5e16d417e8f -2023-07-08 08:24:40.739042 2023-07-08 08:24:40.739048 mef 6474 R rec 8c7f3d7f-0ce7-4141-950c-8f430267a434 -2023-07-08 08:24:40.804247 2023-07-08 08:24:40.804261 mef 6475 R rec 02c98e9a-e63c-49f2-93af-7210cd6bac1b -2023-07-08 08:24:40.894477 2023-07-08 08:24:40.894497 mef 6476 R rec 7642b930-ed86-4435-a87a-92b2f2a04d01 -2023-07-08 08:24:40.980106 2023-07-08 08:24:40.980111 mef 6477 R rec f5f9b385-1490-4f50-95eb-1c59973d1440 -2023-07-08 08:24:41.055482 2023-07-08 08:24:41.055488 mef 6478 R rec f0eb8c18-f687-499e-8a74-8b89ae52d6db -2023-07-08 08:24:41.149035 2023-07-08 08:24:41.149045 mef 6479 R rec 2273a3ae-0a6d-4edc-bfbd-ceeebc1705b4 -2023-07-08 08:24:41.24811 2023-07-08 08:24:41.248116 mef 6480 R rec 2dc7b8fa-5070-41b6-b15a-2cae7ab037f2 -2023-07-08 08:24:41.321937 2023-07-08 08:24:41.321948 mef 6481 R rec a26eb2a4-3d40-4bc7-a71f-f88f71e5fe93 -2023-07-08 08:24:41.406978 2023-07-08 08:24:41.407361 mef 6482 R rec 2b7276f4-110d-4ac7-bf23-243ef7c61e3e -2023-07-08 08:24:41.495641 2023-07-08 08:24:41.495656 mef 6483 R rec 54794520-6d77-4bd6-a431-bf9a0d5b36ff -2023-07-08 08:24:41.581072 2023-07-08 08:24:41.581075 mef 6484 R rec d530a100-453f-4f75-96f1-cd8fa97f7d84 -2023-07-08 08:24:41.673476 2023-07-08 08:24:41.67349 mef 6485 R rec c8cc12a6-ad0b-4b97-84d7-d98dee60769a -2023-07-08 08:24:41.766318 2023-07-08 08:24:41.766323 mef 6486 R rec ba7f43ff-459c-46d9-9198-4e8c2ddc390b -2023-07-08 08:24:41.856575 2023-07-08 08:24:41.856587 mef 6487 R rec d03ba3ca-27c3-4f1d-8a85-9303f8ed27fe -2023-07-08 08:24:41.945784 2023-07-08 08:24:41.945798 mef 6488 R rec f0bbde58-32d7-4058-b1ef-52ad9635b205 -2023-07-08 08:24:42.049687 2023-07-08 08:24:42.049701 mef 6489 R rec 3f56d335-d9bc-4aaf-99ae-81e2bfc747eb -2023-07-08 08:24:42.154999 2023-07-08 08:24:42.155006 mef 6490 R rec 0709cf4a-5d50-421a-b7f3-f2c9dbc6b717 -2023-07-08 08:24:42.252691 2023-07-08 08:24:42.252697 mef 6491 R rec 28821560-2f93-4d25-885e-4cde58f9ebbc -2023-07-08 08:24:42.37867 2023-07-08 08:24:42.378681 mef 6492 R rec 88346fcc-c7a4-45bc-911d-a801daf5ef50 -2023-07-08 08:24:42.464217 2023-07-08 08:24:42.464222 mef 6493 R rec fc747fa9-d57b-48fe-94fb-13e6e27c04d5 -2023-07-08 08:24:42.56082 2023-07-08 08:24:42.560836 mef 6494 R rec 39037fcb-0d1c-4147-bd3d-2c4ee5a470e8 -2023-07-08 08:24:42.660106 2023-07-08 08:24:42.66012 mef 6495 R rec 884a12c3-8628-4c1d-82d3-45d8a8fc7a5e -2023-07-08 08:24:42.759522 2023-07-08 08:24:42.759527 mef 6496 R rec 62f17f15-9e41-4580-b2f4-4ad8505a0861 -2023-07-08 08:24:42.840423 2023-07-08 08:24:42.840433 mef 6497 R rec 221f5c43-62db-468d-9b4b-1d0d3f1956ea -2023-07-08 08:24:42.93335 2023-07-08 08:24:42.933359 mef 6498 R rec 567e6fd5-98f3-4f9a-bee4-1f0a3b7e19a1 -2023-07-08 08:24:43.022349 2023-07-08 08:24:43.02236 mef 6499 R rec d80649d0-4168-4e28-94ed-10b637b70176 -2023-07-08 08:24:43.100571 2023-07-08 08:24:43.100574 mef 6500 R rec b0e96d68-8bf1-4b6d-877b-8b3f5f4b6711 -2023-07-08 08:24:43.20254 2023-07-08 08:24:43.20255 mef 6501 R rec a7409552-2db7-4786-a777-c8f27ab0baa0 -2023-07-08 08:24:43.287116 2023-07-08 08:24:43.287121 mef 6502 R rec 5efacc4b-fde8-477c-ad56-0e6f0c451af9 -2023-07-08 08:24:43.39194 2023-07-08 08:24:43.391958 mef 6503 R rec 5d3180fc-b530-418f-972f-0172b2b01e40 -2023-07-08 08:24:43.491457 2023-07-08 08:24:43.491468 mef 6504 R rec 62069ac6-43f0-423b-ac91-039f78ab47a5 -2023-07-08 08:24:43.581867 2023-07-08 08:24:43.581882 mef 6505 R rec 8e2db2f4-2f4f-495f-a4ba-ac042e0c8601 -2023-07-08 08:24:43.681214 2023-07-08 08:24:43.681225 mef 6506 R rec 8e9fc739-1a07-4a7a-913c-d2b2df0308cb -2023-07-08 08:24:43.765375 2023-07-08 08:24:43.76538 mef 6507 R rec fa53b567-4872-4946-8482-62ae9bd8c52f -2023-07-08 08:24:43.869796 2023-07-08 08:24:43.869806 mef 6508 R rec 9522fe7b-cf99-44f3-b68b-fd594b06d5a0 -2023-07-08 08:24:43.970555 2023-07-08 08:24:43.970565 mef 6509 R rec 0f48c966-cc67-415e-8cf6-fd2077c3d7f5 -2023-07-08 08:24:44.069364 2023-07-08 08:24:44.069375 mef 6510 R rec 3f3eefd7-6879-4a18-b9ea-64c868d9c5ef -2023-07-08 08:24:44.16243 2023-07-08 08:24:44.162443 mef 6511 R rec e328e22c-67f1-44cc-9184-ca43a3319683 -2023-07-08 08:24:44.35277 2023-07-08 08:24:44.352781 mef 6512 R rec 1b466f3f-4a82-4e20-8675-c64fa3c25b8a -2023-07-08 08:24:44.444067 2023-07-08 08:24:44.444082 mef 6513 R rec 751b62af-bb46-4743-b0aa-842c5c63ca25 -2023-07-08 08:24:44.529285 2023-07-08 08:24:44.52929 mef 6514 R rec 9fe4a0b7-c222-4eb9-a7a6-cecd28b26acc -2023-07-08 08:24:44.614865 2023-07-08 08:24:44.614871 mef 6515 R rec eed6a670-7dc0-4021-bcf6-ee16cc535074 -2023-07-08 08:24:44.700795 2023-07-08 08:24:44.70081 mef 6516 R rec cb282296-a597-43c4-a3f7-050736adf801 -2023-07-08 08:24:44.781786 2023-07-08 08:24:44.781791 mef 6517 R rec bab67cfb-b21d-4704-ac7d-87e432d039d4 -2023-07-08 08:24:44.872741 2023-07-08 08:24:44.872753 mef 6518 R rec b8af91a4-8132-45a5-89c8-10d1566b36d0 -2023-07-08 08:24:44.957138 2023-07-08 08:24:44.957148 mef 6519 R rec db31fc45-e807-40b4-be10-6a47694ea8f2 -2023-07-08 08:24:45.043357 2023-07-08 08:24:45.043371 mef 6520 R rec 92e2cf8b-1631-496c-a9f4-cdd29ff55616 -2023-07-08 08:24:45.215846 2023-07-08 08:24:45.215859 mef 6521 R rec a2e7a1eb-c01c-4a7e-a4ff-2e1a9f98b98e -2023-07-08 08:24:45.311092 2023-07-08 08:24:45.311103 mef 6522 R rec a4b411c0-1568-44a8-8dd0-b5911429bdd8 -2023-07-08 08:24:45.407895 2023-07-08 08:24:45.407905 mef 6523 R rec 3ee09c9e-7aad-4544-aad6-d30e7d9ef309 -2023-07-08 08:24:45.497125 2023-07-08 08:24:45.497136 mef 6524 R rec b19c36b6-7f7c-4885-a5f0-5ab8d79b0e7a -2023-07-08 08:24:45.583908 2023-07-08 08:24:45.583918 mef 6525 R rec 85aae59b-e291-4525-91e8-f779dcf3ce53 -2023-07-08 08:24:45.677222 2023-07-08 08:24:45.677233 mef 6526 R rec d3768eae-0a59-46ef-ad24-b23f306f12e0 -2023-07-08 08:24:45.765439 2023-07-08 08:24:45.765445 mef 6527 R rec 0e0465c3-ac0d-4777-a326-804b392e5209 -2023-07-08 08:24:45.841846 2023-07-08 08:24:45.841852 mef 6528 R rec 821a2177-c669-4e37-94ab-0bdeb87502f0 -2023-07-08 08:24:45.910248 2023-07-08 08:24:45.910253 mef 6529 R rec da98acb7-93bf-47b8-815d-1d8acf3c96e1 -2023-07-08 08:24:45.993483 2023-07-08 08:24:45.993496 mef 6530 R rec 074fc807-8ed3-4a4c-87bb-5dfa25dbccd3 -2023-07-08 08:24:46.081998 2023-07-08 08:24:46.082009 mef 6531 R rec b7ffa110-f682-412c-bf23-c60ed87a0b4d -2023-07-08 08:24:46.165135 2023-07-08 08:24:46.165146 mef 6532 R rec 3749f56e-065c-48f3-97a8-9334cfa3db19 -2023-07-08 08:24:46.24688 2023-07-08 08:24:46.24689 mef 6533 R rec bbc35012-f97c-4b73-9340-1aa8acacbd73 -2023-07-08 08:24:46.320198 2023-07-08 08:24:46.320203 mef 6534 R rec 0307af13-c865-447a-8173-1cc2a59de2d3 -2023-07-08 08:24:46.411879 2023-07-08 08:24:46.411891 mef 6535 R rec 4d6083a3-839f-4ae2-9aaf-e9d669c1d237 -2023-07-08 08:24:46.500923 2023-07-08 08:24:46.500936 mef 6536 R rec 455b2eee-874f-4f56-a4cc-43b3e8b0d0cc -2023-07-08 08:24:46.598768 2023-07-08 08:24:46.598781 mef 6537 R rec 998cf91e-4369-4532-87f3-9da61dab92b6 -2023-07-08 08:24:46.693426 2023-07-08 08:24:46.693436 mef 6538 R rec 2324e8b6-cca3-4742-8890-9ab6f879f97c -2023-07-08 08:24:46.780495 2023-07-08 08:24:46.7805 mef 6539 R rec c9e3a294-8bf3-41a0-95a6-bcecdba7caa1 -2023-07-08 08:24:46.890335 2023-07-08 08:24:46.89034 mef 6540 R rec 0643bc43-3558-4cb0-8740-7510b13d1e4e -2023-07-08 08:24:46.971743 2023-07-08 08:24:46.971757 mef 6541 R rec d4e6c406-9c2d-4c66-90ba-1675c1664210 -2023-07-08 08:24:47.061122 2023-07-08 08:24:47.061135 mef 6542 R rec fe400884-2cab-4643-bb0d-8fd7ffbf1ddd -2023-07-08 08:24:47.143649 2023-07-08 08:24:47.143664 mef 6543 R rec 7118012f-b925-4856-a419-8f854722d91a -2023-07-08 08:24:47.238951 2023-07-08 08:24:47.238963 mef 6544 R rec 8b43de42-55fc-45a1-930c-9fb84980e63c -2023-07-08 08:24:47.314204 2023-07-08 08:24:47.31421 mef 6545 R rec 86ba3de0-5eba-49eb-99c7-a6b426ba5ece -2023-07-08 08:24:47.411386 2023-07-08 08:24:47.411391 mef 6546 R rec 3702eee2-6216-4ca5-89d1-517519451e77 -2023-07-08 08:24:47.500091 2023-07-08 08:24:47.500102 mef 6547 R rec 9a04b5bf-e7ac-4870-8775-7f9c1b5c9fa8 -2023-07-08 08:24:47.591286 2023-07-08 08:24:47.591297 mef 6548 R rec a3a0f9dc-1ac8-4793-aefd-744adf5926bc -2023-07-08 08:24:47.701898 2023-07-08 08:24:47.701914 mef 6549 R rec bbd96e15-2acb-4811-b275-0dfc85f0b4c4 -2023-07-08 08:24:47.79109 2023-07-08 08:24:47.791095 mef 6550 R rec 96d3c01e-0d61-4810-88b1-802deea09586 -2023-07-08 08:24:47.892182 2023-07-08 08:24:47.892194 mef 6551 R rec 6a7d8a75-3e34-446a-81be-e12b64a02e8a -2023-07-08 08:24:47.99496 2023-07-08 08:24:47.994976 mef 6552 R rec 9b75b6b4-b60d-41a2-b6bb-7f079b63d23e -2023-07-08 08:24:48.086565 2023-07-08 08:24:48.086577 mef 6553 R rec fddd9fee-dbbd-4821-993a-30ecde7444b9 -2023-07-08 08:24:48.182369 2023-07-08 08:24:48.182379 mef 6554 R rec 359d88d1-287c-4237-b5af-f55d28576cbf -2023-07-08 08:24:48.278875 2023-07-08 08:24:48.278881 mef 6555 R rec d525e491-ebf4-4428-b5ec-182679789a83 -2023-07-08 08:24:48.351706 2023-07-08 08:24:48.351711 mef 6556 R rec fa7f030e-08fe-4505-9857-138bfb6a777e -2023-07-08 08:24:48.433917 2023-07-08 08:24:48.433928 mef 6557 R rec c2087fab-15f4-4c85-af83-175eda3bb7ca -2023-07-08 08:24:48.543944 2023-07-08 08:24:48.543954 mef 6558 R rec 5381551f-565a-4321-b47d-270c02853929 -2023-07-08 08:24:48.64358 2023-07-08 08:24:48.643605 mef 6559 R rec 56c2e13d-a0d2-4ba2-942e-7d883cbb9a1c -2023-07-08 08:24:48.737226 2023-07-08 08:24:48.737237 mef 6560 R rec 66c788fb-01e4-4ade-8dee-f9683686aa5c -2023-07-08 08:24:48.85072 2023-07-08 08:24:48.850733 mef 6561 R rec 622b226f-2ef5-4202-9226-bef70161f175 -2023-07-08 08:24:48.967159 2023-07-08 08:24:48.967174 mef 6562 R rec 791040d7-951e-4b01-94d6-6cd7b9645e54 -2023-07-08 08:24:49.084146 2023-07-08 08:24:49.08416 mef 6563 R rec d829cc98-a09b-40c6-b575-463dc0c7df52 -2023-07-08 08:24:49.213353 2023-07-08 08:24:49.213366 mef 6564 R rec c43d5b36-a759-4a53-a7e5-db33742cdb26 -2023-07-08 08:24:49.454669 2023-07-08 08:24:49.45469 mef 6565 R rec 2bde8519-34b4-435e-a311-ef0171705ac3 -2023-07-08 08:24:49.592077 2023-07-08 08:24:49.592092 mef 6566 R rec 025e351a-eb9c-4140-847e-90636e48dffa -2023-07-08 08:24:49.718798 2023-07-08 08:24:49.718814 mef 6567 R rec b193030e-edaa-49a9-9fdb-88acec10976b -2023-07-08 08:24:49.819261 2023-07-08 08:24:49.819272 mef 6568 R rec 6178613e-1719-4a4e-af17-e6bbc6632213 -2023-07-08 08:24:49.956264 2023-07-08 08:24:49.956281 mef 6569 R rec 3767b3c4-a886-4b4f-836d-b67e8f414107 -2023-07-08 08:24:50.071108 2023-07-08 08:24:50.071121 mef 6570 R rec a018e2cb-c9bb-4bfb-89a7-c4feca3c0eda -2023-07-08 08:24:50.180649 2023-07-08 08:24:50.180665 mef 6571 R rec 126ca086-0155-4923-9eb4-574111a03eac -2023-07-08 08:24:50.281955 2023-07-08 08:24:50.281965 mef 6572 R rec e45674eb-4369-49c5-891f-cc9ec69b56a7 -2023-07-08 08:24:50.398121 2023-07-08 08:24:50.398132 mef 6573 R rec 44fa253a-0a39-4cb9-8772-2e4060efca66 -2023-07-08 08:24:50.546072 2023-07-08 08:24:50.546085 mef 6574 R rec 0c3af4a6-f3f4-42c1-bf23-94d1a4c3c9fb -2023-07-08 08:24:50.691821 2023-07-08 08:24:50.691832 mef 6575 R rec a69fa5b1-06c1-4897-b0af-d177573e7b72 -2023-07-08 08:24:50.821475 2023-07-08 08:24:50.821489 mef 6576 R rec 4d8567d8-7e21-4a78-8db2-636ab1f48998 -2023-07-08 08:24:50.952866 2023-07-08 08:24:50.952882 mef 6577 R rec 8883baf1-6d07-4b13-ae56-6895fd25b2f7 -2023-07-08 08:24:51.08997 2023-07-08 08:24:51.089985 mef 6578 R rec f2d78ad7-04cf-4b9e-9e8d-7f0758c54571 -2023-07-08 08:24:51.232432 2023-07-08 08:24:51.232444 mef 6579 R rec 85ba038f-0ab7-489a-aac8-2f764eeb90d5 -2023-07-08 08:24:51.337572 2023-07-08 08:24:51.337585 mef 6580 R rec 601f17d4-d80e-4b45-af63-6a94255ea829 -2023-07-08 08:24:51.43901 2023-07-08 08:24:51.439023 mef 6581 R rec 332c8396-b229-4dcc-b485-8cb01f07761f -2023-07-08 08:24:51.5523 2023-07-08 08:24:51.552311 mef 6582 R rec fb6d0d9a-1414-4712-a1e9-205566c4ba1f -2023-07-08 08:24:51.655304 2023-07-08 08:24:51.655315 mef 6583 R rec d14f162a-d86d-413a-bc65-291c2f7a0a61 -2023-07-08 08:24:51.869814 2023-07-08 08:24:51.869826 mef 6584 R rec 21bc782a-48af-4de4-922b-8ba183fd6464 -2023-07-08 08:24:51.989714 2023-07-08 08:24:51.989735 mef 6585 R rec 5d6a9c1d-3127-4339-ac4d-ab0b02aa84a6 -2023-07-08 08:24:52.101621 2023-07-08 08:24:52.101643 mef 6586 R rec 40eace42-7b7f-4020-8aef-7e6bc444c813 -2023-07-08 08:24:52.222761 2023-07-08 08:24:52.222779 mef 6587 R rec 4fcd72f9-5d64-4923-af2c-15709d317441 -2023-07-08 08:24:52.344488 2023-07-08 08:24:52.344507 mef 6588 R rec 1d60bf07-ba68-47d4-baa2-3ed656c8aaa8 -2023-07-08 08:24:52.449463 2023-07-08 08:24:52.449479 mef 6589 R rec a5905a3e-9b6b-4e34-8351-dc0ea557c461 -2023-07-08 08:24:52.55663 2023-07-08 08:24:52.556644 mef 6590 R rec eaaf97e8-6fca-46fb-844f-70b220db0bcc -2023-07-08 08:24:52.681731 2023-07-08 08:24:52.681742 mef 6591 R rec 9f6f36cc-629c-4b6b-bde7-111031cfe66b -2023-07-08 08:24:52.807722 2023-07-08 08:24:52.807733 mef 6592 R rec 92653b2a-58d7-479e-9da1-109e44bded7d -2023-07-08 08:24:52.920888 2023-07-08 08:24:52.920898 mef 6593 R rec 74828cc9-d393-4c65-97b6-d32300245598 -2023-07-08 08:24:53.033154 2023-07-08 08:24:53.033169 mef 6594 R rec b1d19d4f-f7b0-450c-b912-170fffc11ae2 -2023-07-08 08:24:53.166071 2023-07-08 08:24:53.166088 mef 6595 R rec 813675cb-1ed1-4e11-b85f-ef44e83d460f -2023-07-08 08:24:53.288239 2023-07-08 08:24:53.288255 mef 6596 R rec 1783ee03-d4b3-4a74-a25e-a90d226215f8 -2023-07-08 08:24:53.398177 2023-07-08 08:24:53.39819 mef 6597 R rec 96379018-e1b7-4ae1-ad22-3998ddc006bc -2023-07-08 08:24:53.497584 2023-07-08 08:24:53.497597 mef 6598 R rec d06ac472-350d-4727-a688-3d28102f222c -2023-07-08 08:24:53.60211 2023-07-08 08:24:53.602124 mef 6599 R rec 7ef3629e-28be-4a09-ad10-bb243c2b7cd2 -2023-07-08 08:24:53.730491 2023-07-08 08:24:53.730504 mef 6600 R rec 4183f3fb-7059-4f7d-9f77-b764054c44a1 -2023-07-08 08:24:53.843455 2023-07-08 08:24:53.843472 mef 6601 R rec 9ba44f3f-acec-4299-9330-c2fe2637acf8 -2023-07-08 08:24:53.954269 2023-07-08 08:24:53.954286 mef 6602 R rec ecf52fa7-b5e7-43e7-8dc3-520861f69115 -2023-07-08 08:24:54.115942 2023-07-08 08:24:54.115958 mef 6603 R rec 7f5fb5c8-d9a8-4b05-8f4c-0df1aa6c7dfc -2023-07-08 08:24:54.2649 2023-07-08 08:24:54.264919 mef 6604 R rec b510a110-d994-4dff-bff2-bb57dc8bbd3e -2023-07-08 08:24:54.386467 2023-07-08 08:24:54.386478 mef 6605 R rec 911265c5-cdaa-461f-8213-01badfbd42b0 -2023-07-08 08:24:54.647612 2023-07-08 08:24:54.647626 mef 6606 R rec c74e27a3-dc0b-4811-927e-9bc0dfbb8d2d -2023-07-08 08:24:54.770062 2023-07-08 08:24:54.770078 mef 6607 R rec b611ad3b-babf-474e-9e9c-2f2c4f3b6664 -2023-07-08 08:24:54.899198 2023-07-08 08:24:54.899209 mef 6608 R rec cde030f1-76c5-463c-a176-696454c0d750 -2023-07-08 08:24:55.023723 2023-07-08 08:24:55.023734 mef 6609 R rec 68cafef8-9ea8-4c87-bdc8-b216e1922f92 -2023-07-08 08:24:55.130008 2023-07-08 08:24:55.130014 mef 6610 R rec 679311a1-8e94-46d9-9c77-a2bf3d17842a -2023-07-08 08:24:55.231496 2023-07-08 08:24:55.231506 mef 6611 R rec ac5c0448-0911-400d-8934-1fda73a3bc84 -2023-07-08 08:24:55.3459 2023-07-08 08:24:55.345911 mef 6612 R rec efb00153-4661-47da-ad31-6017c43575a0 -2023-07-08 08:24:55.467278 2023-07-08 08:24:55.467292 mef 6613 R rec 7b1f820c-b83d-442c-97a4-019e20e7ea42 -2023-07-08 08:24:55.592764 2023-07-08 08:24:55.592775 mef 6614 R rec 0fe1d064-ae47-4d7a-bdcc-62b9c882a625 -2023-07-08 08:24:55.712225 2023-07-08 08:24:55.712237 mef 6615 R rec a8e73290-3d6b-4e5f-b2f7-bda5229de103 -2023-07-08 08:24:55.836215 2023-07-08 08:24:55.83622 mef 6616 R rec 90e15487-eb7e-4217-87b8-f0357922e7d7 -2023-07-08 08:24:55.946933 2023-07-08 08:24:55.946946 mef 6617 R rec 8dfaef08-e00c-4bcc-b012-594286e68f36 -2023-07-08 08:24:56.051029 2023-07-08 08:24:56.051039 mef 6618 R rec 6fa0318e-760c-41f6-8403-4bc3b2cc004a -2023-07-08 08:24:56.15798 2023-07-08 08:24:56.158016 mef 6619 R rec d5cdc2bf-229d-4c76-9697-de8ecfb7313c -2023-07-08 08:24:56.264091 2023-07-08 08:24:56.264101 mef 6620 R rec 412f74e2-8b56-4ed1-9abc-f3ba4077520b -2023-07-08 08:24:56.490708 2023-07-08 08:24:56.490719 mef 6621 R rec 10a9c811-90dc-42a2-a48d-9b77b125a261 -2023-07-08 08:24:56.713497 2023-07-08 08:24:56.713507 mef 6622 R rec c15171d9-1ecd-4998-93bf-b0b2a6a9fbb0 -2023-07-08 08:24:56.821734 2023-07-08 08:24:56.821749 mef 6623 R rec 3dfb0bc7-7064-41d2-b332-4a4ba6768c5c -2023-07-08 08:24:56.933812 2023-07-08 08:24:56.933825 mef 6624 R rec 1662f75b-188e-4fb4-b74a-d27ba4556169 -2023-07-08 08:24:57.150066 2023-07-08 08:24:57.150077 mef 6625 R rec bb4d00f5-3a40-40d0-abb8-32b530bab9a3 -2023-07-08 08:24:57.268292 2023-07-08 08:24:57.268303 mef 6626 R rec 9bb596e7-0b4c-41f0-98bd-88b2be06308b -2023-07-08 08:24:57.389434 2023-07-08 08:24:57.389445 mef 6627 R rec 8c5af63a-feef-455f-917b-ef18e4b6fdbb -2023-07-08 08:24:57.663944 2023-07-08 08:24:57.663957 mef 6628 R rec d9a547a2-d5fa-4689-b73e-77c8b6b5a270 -2023-07-08 08:24:57.787033 2023-07-08 08:24:57.787043 mef 6629 R rec 1119a6b2-f07c-4c9a-bd07-ff19c16494a4 -2023-07-08 08:24:58.056306 2023-07-08 08:24:58.056322 mef 6630 R rec f4b868b9-f353-49e8-8300-462e9392f9b7 -2023-07-08 08:24:58.297989 2023-07-08 08:24:58.298003 mef 6631 R rec a3cddd17-42ec-455b-8018-4bbdfa6282f5 -2023-07-08 08:24:58.406098 2023-07-08 08:24:58.406113 mef 6632 R rec 030a33de-4b93-4624-a781-fa7200050eda -2023-07-08 08:24:58.514177 2023-07-08 08:24:58.51419 mef 6633 R rec 01e74c48-5790-47a9-aa9f-34b4a7039cf3 -2023-07-08 08:24:58.625047 2023-07-08 08:24:58.625063 mef 6634 R rec 94f180bc-88b2-403f-baa7-1ba0d3f72c51 -2023-07-08 08:24:58.739345 2023-07-08 08:24:58.739357 mef 6635 R rec 2c642597-5b9e-42e2-b15c-9ea5de06fb06 -2023-07-08 08:24:58.869848 2023-07-08 08:24:58.869866 mef 6636 R rec f4ae9c48-60a4-40dc-a91a-c3429d413b01 -2023-07-08 08:24:59.000822 2023-07-08 08:24:59.000834 mef 6637 R rec 4569c912-f4cc-44d7-9c5d-8e68cb3202be -2023-07-08 08:24:59.128061 2023-07-08 08:24:59.128074 mef 6638 R rec 5f547eeb-f66b-407a-b3e6-759802884518 -2023-07-08 08:24:59.244818 2023-07-08 08:24:59.244829 mef 6639 R rec 1ebf4254-b25b-4594-af23-41f0e190621c -2023-07-08 08:24:59.355261 2023-07-08 08:24:59.355277 mef 6640 R rec 93b5a4ed-3316-4693-bb30-37868530e40c -2023-07-08 08:24:59.471149 2023-07-08 08:24:59.471167 mef 6641 R rec ef1620b5-5931-4da0-8085-a834c0eac909 -2023-07-08 08:24:59.606663 2023-07-08 08:24:59.606676 mef 6642 R rec d13c9589-c768-4f17-a11b-41c846174018 -2023-07-08 08:24:59.72117 2023-07-08 08:24:59.721181 mef 6643 R rec 2aae8d5f-2c54-43c1-a5f4-8fddf8a6ead2 -2023-07-08 08:24:59.836691 2023-07-08 08:24:59.836701 mef 6644 R rec eb9883b1-f423-4aca-8a0a-c600c5d7766b -2023-07-08 08:24:59.970999 2023-07-08 08:24:59.97101 mef 6645 R rec a4e48143-20a8-43c4-aacb-54cffdae1819 -2023-07-08 08:25:00.21215 2023-07-08 08:25:00.212163 mef 6646 R rec 59d04965-9cfd-47bf-996b-4cceacf1a5cd -2023-07-08 08:25:00.322995 2023-07-08 08:25:00.323012 mef 6647 R rec b2c36873-2341-4117-a54e-f966f786e26c -2023-07-08 08:25:00.448368 2023-07-08 08:25:00.448386 mef 6648 R rec 40dd5adf-bcf1-43bc-9f14-0384b62af3f1 -2023-07-08 08:25:00.5633 2023-07-08 08:25:00.563314 mef 6649 R rec da115e97-1d8f-4277-8a51-2719387fe640 -2023-07-08 08:25:00.681206 2023-07-08 08:25:00.681219 mef 6650 R rec ea8af992-1f98-4dde-9c37-20dc4dde281d -2023-07-08 08:25:00.811345 2023-07-08 08:25:00.811356 mef 6651 R rec a43eb813-d741-4dd6-ac3f-d36b56967793 -2023-07-08 08:25:00.956161 2023-07-08 08:25:00.956174 mef 6652 R rec 6d847a4d-d16a-4ca1-8a37-915322aed2fd -2023-07-08 08:25:01.072323 2023-07-08 08:25:01.072336 mef 6653 R rec 89d009f0-06b2-4a92-b51f-e07af36f34b6 -2023-07-08 08:25:01.202244 2023-07-08 08:25:01.202257 mef 6654 R rec e18a24e7-6773-4009-9e96-532bbe7d5e1e -2023-07-08 08:25:01.334571 2023-07-08 08:25:01.334581 mef 6655 R rec 65e8e162-5d6c-4b3c-a226-966cb80a4605 -2023-07-08 08:25:01.447559 2023-07-08 08:25:01.447574 mef 6656 R rec 151765c8-2693-4bc2-b5bf-532f76b16284 -2023-07-08 08:25:01.55923 2023-07-08 08:25:01.559241 mef 6657 R rec 7a43965c-00f0-4049-9d9c-d4f8d61cce06 -2023-07-08 08:25:01.664437 2023-07-08 08:25:01.664447 mef 6658 R rec 8f5611e5-e857-4dcf-bf72-9a313eb78acd -2023-07-08 08:25:01.767161 2023-07-08 08:25:01.767175 mef 6659 R rec e1551eb7-cce1-4732-b22d-898ddaafec7a -2023-07-08 08:25:01.98386 2023-07-08 08:25:01.98387 mef 6660 R rec f9f87d90-56d6-46fd-972a-0a926e3441a7 -2023-07-08 08:25:02.087356 2023-07-08 08:25:02.087368 mef 6661 R rec bc4d5da8-abaa-4963-b5fb-96e9c03e4cea -2023-07-08 08:25:02.196384 2023-07-08 08:25:02.196398 mef 6662 R rec 1c7cf8b3-ac3f-4510-89dc-3036824e78a5 -2023-07-08 08:25:02.295703 2023-07-08 08:25:02.295723 mef 6663 R rec d96f49d9-a353-4f14-8bc9-ee153aa09b9a -2023-07-08 08:25:02.408083 2023-07-08 08:25:02.408098 mef 6664 R rec 560b4032-bd88-4225-a483-74875a6ee3b9 -2023-07-08 08:25:02.509177 2023-07-08 08:25:02.509193 mef 6665 R rec b99615ed-a95c-48c8-9f3f-af80386dc18a -2023-07-08 08:25:02.619382 2023-07-08 08:25:02.619395 mef 6666 R rec 11b094b5-45b1-4687-a0b3-14666cb6bfc1 -2023-07-08 08:25:02.747269 2023-07-08 08:25:02.747282 mef 6667 R rec 47794eb6-3378-458f-9a3d-6bfe4b3466d5 -2023-07-08 08:25:02.84793 2023-07-08 08:25:02.847945 mef 6668 R rec 38947d98-c570-4d63-9b70-130360c4fbd1 -2023-07-08 08:25:03.073624 2023-07-08 08:25:03.07364 mef 6669 R rec e73aa75d-9b85-4d7b-947b-5e6d28345099 -2023-07-08 08:25:03.176473 2023-07-08 08:25:03.176488 mef 6670 R rec 1d011f29-75dc-440d-895c-16058b51a6a3 -2023-07-08 08:25:03.292748 2023-07-08 08:25:03.292755 mef 6671 R rec 50ce9a26-16f7-4a1f-845d-282b9357e18f -2023-07-08 08:25:03.385146 2023-07-08 08:25:03.385157 mef 6672 R rec 007499d1-dabe-4175-8009-c878a4702e26 -2023-07-08 08:25:03.484498 2023-07-08 08:25:03.484513 mef 6673 R rec eee246cb-bf43-4e18-935c-55d024999714 -2023-07-08 08:25:03.593237 2023-07-08 08:25:03.593251 mef 6674 R rec f6f4c029-036e-47fc-98f9-6ce11500309b -2023-07-08 08:25:03.707832 2023-07-08 08:25:03.707848 mef 6675 R rec 51189c04-0f52-4f99-999d-5a052d32f561 -2023-07-08 08:25:03.820179 2023-07-08 08:25:03.820192 mef 6676 R rec 9c6bb7f0-6e2c-48d0-8fe1-903dde0bac7f -2023-07-08 08:25:03.933795 2023-07-08 08:25:03.93381 mef 6677 R rec 61820c6e-9c02-4360-b549-e32e9fbc57cb -2023-07-08 08:25:04.04018 2023-07-08 08:25:04.040194 mef 6678 R rec 44bb5df1-8c02-4974-8932-754a2fed5042 -2023-07-08 08:25:04.148179 2023-07-08 08:25:04.148193 mef 6679 R rec 6efdbf6f-1577-4b8e-94ec-53de0d0c2624 -2023-07-08 08:25:04.283141 2023-07-08 08:25:04.283152 mef 6680 R rec e3eba134-27e2-4482-97de-cf7293033846 -2023-07-08 08:25:04.403885 2023-07-08 08:25:04.403894 mef 6681 R rec b7071765-a339-4724-aa6a-ba74f0777d31 -2023-07-08 08:25:04.505099 2023-07-08 08:25:04.505111 mef 6682 R rec 86711471-5ff6-4d2a-8a72-86bdea798076 -2023-07-08 08:25:04.622014 2023-07-08 08:25:04.622027 mef 6683 R rec 835475a1-0585-43ec-9f5d-a0293c296382 -2023-07-08 08:25:04.729659 2023-07-08 08:25:04.729673 mef 6684 R rec b0597546-a3b9-42d4-9b3f-3dd5195ee3c2 -2023-07-08 08:25:04.962927 2023-07-08 08:25:04.962945 mef 6685 R rec 291b1a78-9979-4bd6-81ff-fb9f7773bd3d -2023-07-08 08:25:05.077015 2023-07-08 08:25:05.077027 mef 6686 R rec b0be9ced-788a-4fc8-9f07-83c613e36465 -2023-07-08 08:25:05.210465 2023-07-08 08:25:05.210481 mef 6687 R rec ff9af298-c826-4c42-909d-ac5f1d5d2f3a -2023-07-08 08:25:05.328479 2023-07-08 08:25:05.32849 mef 6688 R rec 16242e30-6fb8-48f9-8401-ee4f148467b1 -2023-07-08 08:25:05.442567 2023-07-08 08:25:05.442578 mef 6689 R rec d3c44f4e-b4cd-40e2-92d7-370f8aff5560 -2023-07-08 08:25:05.549547 2023-07-08 08:25:05.549566 mef 6690 R rec 02e2dd5d-f0a1-4186-95d9-f538ba65c6f4 -2023-07-08 08:25:05.655806 2023-07-08 08:25:05.655819 mef 6691 R rec dca769a1-f19a-40a7-a1f6-e35cfd6b9d45 -2023-07-08 08:25:05.7582 2023-07-08 08:25:05.758211 mef 6692 R rec fd3ab13d-884c-4c7e-a8ea-ab4d505db531 -2023-07-08 08:25:05.868404 2023-07-08 08:25:05.86842 mef 6693 R rec 596dd372-ac43-464e-b3c8-85fc9723a90e -2023-07-08 08:25:05.986057 2023-07-08 08:25:05.986073 mef 6694 R rec 5f1678e2-124c-41c7-b034-c6f05d473121 -2023-07-08 08:25:06.090836 2023-07-08 08:25:06.090846 mef 6695 R rec eb0e0888-fac5-40bc-8c11-88f1cbd47da4 -2023-07-08 08:25:06.301152 2023-07-08 08:25:06.301167 mef 6696 R rec d19da9ac-2e62-420a-95d7-36e0c5471ecc -2023-07-08 08:25:06.405454 2023-07-08 08:25:06.405465 mef 6697 R rec 960f5118-00dd-40c9-984e-c57b72b2f1be -2023-07-08 08:25:06.620822 2023-07-08 08:25:06.620836 mef 6698 R rec ab59daae-02f6-42f7-bf0c-4f8378c0bcd8 -2023-07-08 08:25:06.733572 2023-07-08 08:25:06.733584 mef 6699 R rec a6d8c90d-d28f-4dae-b7ab-d99934776fa3 -2023-07-08 08:25:06.838543 2023-07-08 08:25:06.838556 mef 6700 R rec 92c0656f-78ce-412f-8523-ba17e8b5096d -2023-07-08 08:25:06.949585 2023-07-08 08:25:06.949598 mef 6701 R rec cb0b5300-5263-4120-8db3-3a88be2cd173 -2023-07-08 08:25:07.057715 2023-07-08 08:25:07.057729 mef 6702 R rec 101493a8-e8b2-4cf3-8867-367c83568b9a -2023-07-08 08:25:07.18376 2023-07-08 08:25:07.183773 mef 6703 R rec 96c5db9d-0ba4-4dc1-b93e-33ac2c4ba8fc -2023-07-08 08:25:07.293779 2023-07-08 08:25:07.293795 mef 6704 R rec ce39dd98-96de-4831-88af-9d27b9d655dc -2023-07-08 08:25:07.400253 2023-07-08 08:25:07.400264 mef 6705 R rec 95a5e142-070e-4750-9d46-e33c615dfbfe -2023-07-08 08:25:07.511486 2023-07-08 08:25:07.511502 mef 6706 R rec 7414ca03-48f4-4a7c-a483-e98fc156062f -2023-07-08 08:25:07.626535 2023-07-08 08:25:07.626551 mef 6707 R rec 54397d8a-2be4-42b9-a7ba-cb296f7a3bd8 -2023-07-08 08:25:07.737894 2023-07-08 08:25:07.73791 mef 6708 R rec c4ea371a-5e54-4397-804e-f26bf68111ff -2023-07-08 08:25:07.8598 2023-07-08 08:25:07.859814 mef 6709 R rec 4d11ed92-0db0-45ed-a757-6bbadbd67ed5 -2023-07-08 08:25:07.971878 2023-07-08 08:25:07.971891 mef 6710 R rec 5d7f5681-c230-4bb2-962b-a154548d48c1 -2023-07-08 08:25:08.073266 2023-07-08 08:25:08.073279 mef 6711 R rec b6440670-a5c3-46a7-96fc-a75193257cc8 -2023-07-08 08:25:08.186114 2023-07-08 08:25:08.186127 mef 6712 R rec 51715306-9788-4ec6-9ca8-b7ba45cd8f38 -2023-07-08 08:25:08.296867 2023-07-08 08:25:08.296882 mef 6713 R rec 7aef9581-eab8-4df6-b8e2-a048a89b025f -2023-07-08 08:25:08.399546 2023-07-08 08:25:08.399561 mef 6714 R rec dacdd21b-27b2-4caf-8772-71ddb5668127 -2023-07-08 08:25:08.509583 2023-07-08 08:25:08.509594 mef 6715 R rec cf292604-81f8-4319-b5a0-3aa3247a502d -2023-07-08 08:25:08.712836 2023-07-08 08:25:08.712849 mef 6716 R rec a22500db-ed85-4402-a0c6-8823112d3b1b -2023-07-08 08:25:08.932208 2023-07-08 08:25:08.93222 mef 6717 R rec 2d4577dd-054d-4f82-be71-3e75f18a95c3 -2023-07-08 08:25:09.036365 2023-07-08 08:25:09.036379 mef 6718 R rec cc17015f-6c16-4ce5-9dd9-1e53e31ccba3 -2023-07-08 08:25:09.263911 2023-07-08 08:25:09.263921 mef 6719 R rec 077bba7a-4304-4eff-915a-9c7da1563442 -2023-07-08 08:25:09.368091 2023-07-08 08:25:09.368104 mef 6720 R rec 1a200a1b-1064-4c5c-b4ff-3fb3902359a2 -2023-07-08 08:25:09.613091 2023-07-08 08:25:09.613102 mef 6721 R rec 25e819a0-5fa6-4992-9ebc-bd768e2548d8 -2023-07-08 08:25:09.735382 2023-07-08 08:25:09.735406 mef 6722 R rec 3d8f3973-04bd-4028-8ad9-e13ba55635cc -2023-07-08 08:25:09.956768 2023-07-08 08:25:09.95678 mef 6723 R rec ae6c4b85-63d3-4fc2-9239-b6ad3e5b6290 -2023-07-08 08:25:10.059776 2023-07-08 08:25:10.059789 mef 6724 R rec 055fb4c8-7e69-4797-b7f9-0f4dc1d05f2b -2023-07-08 08:25:10.153116 2023-07-08 08:25:10.15313 mef 6725 R rec 18cfdb36-b222-481d-97d4-8c4253bb83e8 -2023-07-08 08:25:10.264323 2023-07-08 08:25:10.264336 mef 6726 R rec eb0575eb-ec73-4c3d-8535-28ead16f67ee -2023-07-08 08:25:10.37349 2023-07-08 08:25:10.373503 mef 6727 R rec 45a24245-5852-4e87-801e-71db0222b72c -2023-07-08 08:25:10.481244 2023-07-08 08:25:10.481257 mef 6728 R rec d919be40-5821-46c1-8fdc-a7c82c73bf47 -2023-07-08 08:25:10.590559 2023-07-08 08:25:10.590572 mef 6729 R rec da8b46fc-2790-4a20-ab82-ff8352013591 -2023-07-08 08:25:10.691944 2023-07-08 08:25:10.691954 mef 6730 R rec e444ee8b-4a21-43a5-a788-1f587deb451c -2023-07-08 08:25:10.796184 2023-07-08 08:25:10.796194 mef 6731 R rec 08ba3ab2-55fa-43a1-8768-3179323a9716 -2023-07-08 08:25:10.899248 2023-07-08 08:25:10.89926 mef 6732 R rec 1fde112d-8dac-4908-8277-e85af01a25bc -2023-07-08 08:25:10.99586 2023-07-08 08:25:10.995876 mef 6733 R rec d994663f-e8b4-4147-be19-8028795ec70b -2023-07-08 08:25:11.200553 2023-07-08 08:25:11.200566 mef 6734 R rec dc54cb9d-8716-4da5-8157-4120d90458aa -2023-07-08 08:25:11.300707 2023-07-08 08:25:11.30072 mef 6735 R rec 73627f4c-50c5-4f57-9e09-9440bbfcc112 -2023-07-08 08:25:11.391309 2023-07-08 08:25:11.391322 mef 6736 R rec de7827e3-7b53-47ce-be14-441622d4a758 -2023-07-08 08:25:11.485139 2023-07-08 08:25:11.485155 mef 6737 R rec b6a87e2e-2ab4-4f9a-8d01-771c257a2d4a -2023-07-08 08:25:11.58907 2023-07-08 08:25:11.589083 mef 6738 R rec 765d741b-500d-4e78-9fa8-16d3935a7176 -2023-07-08 08:25:11.692115 2023-07-08 08:25:11.692126 mef 6739 R rec 9ce1ec40-812e-4fed-8258-5f044daaf1b8 -2023-07-08 08:25:11.794855 2023-07-08 08:25:11.794866 mef 6740 R rec 5be361c0-4653-4290-b480-52b31de96d47 -2023-07-08 08:25:12.008644 2023-07-08 08:25:12.008656 mef 6741 R rec db4d9d8c-5c96-4efa-93d6-2d975aa23895 -2023-07-08 08:25:12.108167 2023-07-08 08:25:12.108181 mef 6742 R rec 972a77c7-7835-4448-a023-0724c9a57f32 -2023-07-08 08:25:12.220403 2023-07-08 08:25:12.220414 mef 6743 R rec 43e2e3ce-3075-4a9f-9714-e18b13a6d170 -2023-07-08 08:25:12.324916 2023-07-08 08:25:12.324929 mef 6744 R rec a36bb85c-b800-496d-944d-e22486a8331f -2023-07-08 08:25:12.415662 2023-07-08 08:25:12.415674 mef 6745 R rec 1858bf83-e06e-479b-916b-b8ac71d56213 -2023-07-08 08:25:12.511562 2023-07-08 08:25:12.511576 mef 6746 R rec 860e0629-406c-47f8-a115-fd1aaf6eac45 -2023-07-08 08:25:12.626595 2023-07-08 08:25:12.626612 mef 6747 R rec bb62d93e-dd35-47b9-8fd4-86a8dc485fc3 -2023-07-08 08:25:12.729616 2023-07-08 08:25:12.729626 mef 6748 R rec 3f1e7e69-3841-417b-af36-2079dbccc967 -2023-07-08 08:25:12.833566 2023-07-08 08:25:12.833579 mef 6749 R rec ab6339a1-fd65-4d79-9f04-406c02ff3409 -2023-07-08 08:25:12.933756 2023-07-08 08:25:12.933768 mef 6750 R rec 5f4dbe0a-f057-410b-a0aa-34decc6dd9a5 -2023-07-08 08:25:13.046849 2023-07-08 08:25:13.046863 mef 6751 R rec 33283c52-e6bb-4c5a-a670-2f5ed464cb1b -2023-07-08 08:25:13.14517 2023-07-08 08:25:13.145184 mef 6752 R rec 887f7cf0-f327-4ac0-89cf-b89d667e5557 -2023-07-08 08:25:13.262639 2023-07-08 08:25:13.262649 mef 6753 R rec a50eda44-f14f-46a4-b936-d4b9312beb28 -2023-07-08 08:25:13.491555 2023-07-08 08:25:13.491568 mef 6754 R rec f9f0823c-c65c-4131-bc1c-21b6ea4000a4 -2023-07-08 08:25:13.662245 2023-07-08 08:25:13.662255 mef 6755 R rec 0bcb8669-1cf5-4b7e-9a18-baf0c70f2819 -2023-07-08 08:25:13.792162 2023-07-08 08:25:13.792174 mef 6756 R rec e0235d5d-7820-49d3-a90a-ed28c43c7d36 -2023-07-08 08:25:13.903445 2023-07-08 08:25:13.903459 mef 6757 R rec e7302020-ae3e-4c3e-9e01-6845350be70d -2023-07-08 08:25:14.013148 2023-07-08 08:25:14.013159 mef 6758 R rec c4c87de8-7898-49c6-9714-b842147d570a -2023-07-08 08:25:14.120625 2023-07-08 08:25:14.120638 mef 6759 R rec d6e43fff-4d77-4533-8b5a-1ee9543882ba -2023-07-08 08:25:14.237054 2023-07-08 08:25:14.237067 mef 6760 R rec 7b438cfb-4ac3-413e-a29d-8d5006ec59aa -2023-07-08 08:25:14.341635 2023-07-08 08:25:14.341645 mef 6761 R rec fbae3a74-a84d-40f4-b446-d214a688ee45 -2023-07-08 08:25:14.450005 2023-07-08 08:25:14.450018 mef 6762 R rec d8b38c4f-b2bb-4d01-b185-279f47a9f346 -2023-07-08 08:25:14.563784 2023-07-08 08:25:14.563797 mef 6763 R rec 89959538-08c6-40d5-ab8b-9b1d30cf8a0d -2023-07-08 08:25:14.675353 2023-07-08 08:25:14.675366 mef 6764 R rec aef2d4fb-0737-4224-b8c0-ba15b92733da -2023-07-08 08:25:14.798769 2023-07-08 08:25:14.798783 mef 6765 R rec d869cc5c-6db9-4446-957e-f21f2a3c02de -2023-07-08 08:25:14.904588 2023-07-08 08:25:14.904599 mef 6766 R rec c17d74c4-7606-4b44-8869-e0acd3dc8f01 -2023-07-08 08:25:15.02272 2023-07-08 08:25:15.022732 mef 6767 R rec 3e663d23-b65e-4d1d-b28d-20b2903ae38d -2023-07-08 08:25:15.145459 2023-07-08 08:25:15.14547 mef 6768 R rec ecf1ca81-514d-4ba4-a894-d8837b9a04fa -2023-07-08 08:25:15.252422 2023-07-08 08:25:15.252433 mef 6769 R rec 16e997ee-ca00-4ebe-ab46-a02cfad47cc1 -2023-07-08 08:25:15.363051 2023-07-08 08:25:15.363063 mef 6770 R rec f34735a4-ea1e-4e96-9ccd-c9433fd1fc2e -2023-07-08 08:25:15.467715 2023-07-08 08:25:15.467726 mef 6771 R rec 58d38173-a35e-448e-b0b1-b5b34ab96247 -2023-07-08 08:25:15.580291 2023-07-08 08:25:15.580302 mef 6772 R rec 3682ed56-5b3b-4128-bfec-2f8bd9cef9e2 -2023-07-08 08:25:15.696353 2023-07-08 08:25:15.696366 mef 6773 R rec 8c0c65f6-e2c9-441b-80a8-185f772a1076 -2023-07-08 08:25:15.832614 2023-07-08 08:25:15.832627 mef 6774 R rec aa87f079-ed78-4e35-9640-952b19a62980 -2023-07-08 08:25:15.943775 2023-07-08 08:25:15.943789 mef 6775 R rec 3200395d-75da-4ccd-8fa0-003aa61b8538 -2023-07-08 08:25:16.035924 2023-07-08 08:25:16.03594 mef 6776 R rec e4f2915f-07f4-4f7b-86ca-576c8e0f94a2 -2023-07-08 08:25:16.236409 2023-07-08 08:25:16.23642 mef 6777 R rec c3605f0e-00b6-492b-80db-e24f2e72a3de -2023-07-08 08:25:16.338585 2023-07-08 08:25:16.338597 mef 6778 R rec 02410f4b-f610-406d-bf08-b742feef0778 -2023-07-08 08:25:16.443928 2023-07-08 08:25:16.443942 mef 6779 R rec 54a26841-805c-4f63-889c-da8877f15046 -2023-07-08 08:25:16.543789 2023-07-08 08:25:16.543803 mef 6780 R rec 2210c82a-0805-4fca-b674-43cf8ecddc89 -2023-07-08 08:25:16.637949 2023-07-08 08:25:16.637963 mef 6781 R rec 64dc560a-2c69-4a35-a10b-489ffea6af36 -2023-07-08 08:25:16.744333 2023-07-08 08:25:16.744348 mef 6782 R rec 1a4aaffd-bfb9-47bb-b6d8-82a855542403 -2023-07-08 08:25:16.850828 2023-07-08 08:25:16.850838 mef 6783 R rec 502b7d23-b19a-4b71-a47c-2238f072904d -2023-07-08 08:25:16.960178 2023-07-08 08:25:16.96019 mef 6784 R rec 75b2705a-c1f6-4fba-bf09-9471a68ba936 -2023-07-08 08:25:17.06685 2023-07-08 08:25:17.066863 mef 6785 R rec f5c9e845-7c3e-4631-9a8e-9e5dbcd04dc2 -2023-07-08 08:25:17.159932 2023-07-08 08:25:17.159948 mef 6786 R rec e41d6f97-e1d9-4801-a3b6-ab9e66c271ba -2023-07-08 08:25:17.388179 2023-07-08 08:25:17.388189 mef 6787 R rec b0710690-9fbb-46fe-a10e-1d8a905a149f -2023-07-08 08:25:17.493904 2023-07-08 08:25:17.493918 mef 6788 R rec 5d26d2d1-55f4-49e2-ad26-3762e1333b08 -2023-07-08 08:25:17.842798 2023-07-08 08:25:17.842809 mef 6789 R rec fd3c4353-09f1-4914-8360-04152dc33aa8 -2023-07-08 08:25:17.962104 2023-07-08 08:25:17.962114 mef 6790 R rec a68f81e0-df05-44bb-bd0d-20895d2f3092 -2023-07-08 08:25:18.083281 2023-07-08 08:25:18.083296 mef 6791 R rec 52d10e9d-cf08-4e25-9ac2-f6338248d396 -2023-07-08 08:25:18.199973 2023-07-08 08:25:18.199991 mef 6792 R rec c51e1256-eeb8-4ffe-bfe0-a1cc2dba7ebd -2023-07-08 08:25:18.301079 2023-07-08 08:25:18.30109 mef 6793 R rec 2bfb524b-bab6-4470-b8fb-0c4be214794b -2023-07-08 08:25:18.39346 2023-07-08 08:25:18.393477 mef 6794 R rec 36d13c20-17f4-41d8-b5b2-f6d2f1716d72 -2023-07-08 08:25:18.498462 2023-07-08 08:25:18.498475 mef 6795 R rec eb64a44e-a75c-4db9-8628-1e8cf51c340b -2023-07-08 08:25:18.607943 2023-07-08 08:25:18.607956 mef 6796 R rec 55da5a40-8036-4c5c-90f0-ba7aa2020cc4 -2023-07-08 08:25:18.712631 2023-07-08 08:25:18.712643 mef 6797 R rec e959521d-b935-43dd-aa5c-d6d2624456e1 -2023-07-08 08:25:18.828265 2023-07-08 08:25:18.828276 mef 6798 R rec df6cd475-8b5a-4ee7-8a74-14a60b7e89a3 -2023-07-08 08:25:18.929304 2023-07-08 08:25:18.929315 mef 6799 R rec 15233ffb-6b73-4ace-b3ad-3b280b6e6afe -2023-07-08 08:25:19.284948 2023-07-08 08:25:19.284962 mef 6800 R rec bad8e43e-199f-4fce-82ac-420e4503a25d -2023-07-08 08:25:19.497458 2023-07-08 08:25:19.497469 mef 6801 R rec 83c674a6-c1da-471f-bff1-9aad826aecfb -2023-07-08 08:25:19.606878 2023-07-08 08:25:19.606889 mef 6802 R rec a7195bd8-7a7e-4906-9836-45664528e97e -2023-07-08 08:25:19.701779 2023-07-08 08:25:19.701793 mef 6803 R rec 15f20ac6-dde3-4b01-bbed-3f46073d2d87 -2023-07-08 08:25:19.808254 2023-07-08 08:25:19.808273 mef 6804 R rec 403cd191-6d6f-416a-b953-00ecde1e4c36 -2023-07-08 08:25:19.914828 2023-07-08 08:25:19.914842 mef 6805 R rec c5fab241-597e-4778-b128-86020d188d3b -2023-07-08 08:25:20.007781 2023-07-08 08:25:20.007794 mef 6806 R rec eceff643-0273-40b8-9527-3e067396f16d -2023-07-08 08:25:20.120147 2023-07-08 08:25:20.120159 mef 6807 R rec a62ebb23-2fef-4be5-bc43-ac4e90de246f -2023-07-08 08:25:20.213198 2023-07-08 08:25:20.21321 mef 6808 R rec 469b8054-9135-49cb-b36c-9e21ef544635 -2023-07-08 08:25:20.324085 2023-07-08 08:25:20.324101 mef 6809 R rec 1261cbc1-41b9-4567-90e6-30a043a86032 -2023-07-08 08:25:20.428278 2023-07-08 08:25:20.42829 mef 6810 R rec b51a35e6-cab8-451c-b6b3-5147ea16049b -2023-07-08 08:25:20.538161 2023-07-08 08:25:20.538171 mef 6811 R rec 2315a238-a946-4bf5-a181-13e4ec967a56 -2023-07-08 08:25:20.644362 2023-07-08 08:25:20.644373 mef 6812 R rec 17849bf5-cd9b-4220-9602-2269e20f4900 -2023-07-08 08:25:20.750918 2023-07-08 08:25:20.750929 mef 6813 R rec 68885d63-4455-4dd9-ac56-31245ce3decb -2023-07-08 08:25:20.863144 2023-07-08 08:25:20.863157 mef 6814 R rec 8c86ef08-dbea-4f92-9a9b-0988c4b90a36 -2023-07-08 08:25:20.955233 2023-07-08 08:25:20.955245 mef 6815 R rec 5c703877-6003-41d9-9a89-c32389f17163 -2023-07-08 08:25:21.06752 2023-07-08 08:25:21.067532 mef 6816 R rec 49f96a14-8c45-457c-bd28-dbe8477e4c32 -2023-07-08 08:25:21.186274 2023-07-08 08:25:21.186285 mef 6817 R rec db29bc69-67dc-45a0-bc93-b521b348800b -2023-07-08 08:25:21.272893 2023-07-08 08:25:21.272903 mef 6818 R rec 049e5c63-acba-4769-9b78-453fb66d4ec4 -2023-07-08 08:25:21.377004 2023-07-08 08:25:21.377023 mef 6819 R rec 927cc6c4-9850-42d7-be64-60f39c04aab8 -2023-07-08 08:25:21.517365 2023-07-08 08:25:21.517376 mef 6820 R rec 1ef6af3d-92c3-4d6b-a661-1a7360442a1e -2023-07-08 08:25:21.623247 2023-07-08 08:25:21.623257 mef 6821 R rec e954b27e-fa02-4f4e-840d-a11de8a2ccd5 -2023-07-08 08:25:21.738308 2023-07-08 08:25:21.738319 mef 6822 R rec bb9cba38-183c-499b-80b4-76bce4cc260b -2023-07-08 08:25:21.847792 2023-07-08 08:25:21.847807 mef 6823 R rec fcdcc2f5-922f-43ca-ad32-c07ee8cd03cd -2023-07-08 08:25:21.973087 2023-07-08 08:25:21.973097 mef 6824 R rec 4ba87583-9e65-459f-80aa-fbdd5e746180 -2023-07-08 08:25:22.093895 2023-07-08 08:25:22.093927 mef 6825 R rec 1b003bdf-0304-46a9-9ba0-ecd6ed8323e9 -2023-07-08 08:25:22.210893 2023-07-08 08:25:22.210904 mef 6826 R rec 2c4012a1-0cac-47d8-94fc-7f2e4c9652a0 -2023-07-08 08:25:22.316307 2023-07-08 08:25:22.316317 mef 6827 R rec 0cecbc9d-4535-4f74-a635-f94f1e5e0934 -2023-07-08 08:25:22.419182 2023-07-08 08:25:22.419193 mef 6828 R rec f9e55d6f-1ce0-401e-b7f0-4b5770bd2e43 -2023-07-08 08:25:22.526344 2023-07-08 08:25:22.526358 mef 6829 R rec 1c788510-1247-4900-b3fb-39f94c0dd05c -2023-07-08 08:25:22.799984 2023-07-08 08:25:22.799995 mef 6830 R rec 98950973-5415-4492-a686-036df405e56b -2023-07-08 08:25:22.928071 2023-07-08 08:25:22.928084 mef 6831 R rec 2580b6e5-b183-4abc-b857-c7da1ec80103 -2023-07-08 08:25:23.045431 2023-07-08 08:25:23.045442 mef 6832 R rec 16785a95-66bf-468b-8954-d49f5d468aa4 -2023-07-08 08:25:23.169759 2023-07-08 08:25:23.169775 mef 6833 R rec 5c39366b-cd58-40b7-bead-acf726718983 -2023-07-08 08:25:23.306617 2023-07-08 08:25:23.306629 mef 6834 R rec b872354f-0560-420a-9de9-61bf4d0f3967 -2023-07-08 08:25:23.443729 2023-07-08 08:25:23.443751 mef 6835 R rec 2965e26f-ffac-4e06-a808-00b76aa49f89 -2023-07-08 08:25:23.562627 2023-07-08 08:25:23.562638 mef 6836 R rec aa68bea3-1a93-48c0-b1be-12b935f8fb11 -2023-07-08 08:25:23.678057 2023-07-08 08:25:23.67807 mef 6837 R rec bb64f1ff-5b6d-4218-b5ba-77564d024b70 -2023-07-08 08:25:23.814867 2023-07-08 08:25:23.814874 mef 6838 R rec cb478b9d-4a77-49bd-81af-f47b46013a34 -2023-07-08 08:25:23.965403 2023-07-08 08:25:23.965414 mef 6839 R rec 30dc4249-cfdf-4067-86be-e578cb6e0ff0 -2023-07-08 08:25:24.094991 2023-07-08 08:25:24.095003 mef 6840 R rec 464caf61-0b95-4b76-9b0c-800963a7af7f -2023-07-08 08:25:24.208709 2023-07-08 08:25:24.20872 mef 6841 R rec eec253cc-3b43-40e1-b766-9ec5bf743fe7 -2023-07-08 08:25:24.321872 2023-07-08 08:25:24.321882 mef 6842 R rec 0697f7d8-6160-4ace-b56e-7ff623690689 -2023-07-08 08:25:24.445155 2023-07-08 08:25:24.445171 mef 6843 R rec a5959ba1-f190-454d-ab76-859f133ab120 -2023-07-08 08:25:24.555718 2023-07-08 08:25:24.555732 mef 6844 R rec 90c68b86-1bdf-40ed-b12a-eb53e78a1cd0 -2023-07-08 08:25:24.682164 2023-07-08 08:25:24.682179 mef 6845 R rec 29287fd6-8b2b-4baa-b2eb-cb4724149789 -2023-07-08 08:25:24.807068 2023-07-08 08:25:24.807079 mef 6846 R rec 59631624-4bf6-4d9a-b66f-2b39c3bc84dd -2023-07-08 08:25:24.91552 2023-07-08 08:25:24.91553 mef 6847 R rec 9e429593-93a8-440e-914c-b82afece9495 -2023-07-08 08:25:25.030015 2023-07-08 08:25:25.030028 mef 6848 R rec 52001753-fa23-455b-8286-f53f31369140 -2023-07-08 08:25:25.15462 2023-07-08 08:25:25.154637 mef 6849 R rec 8da8e0f9-f7fc-4dcb-82a0-7ea5f866b17d -2023-07-08 08:25:25.262477 2023-07-08 08:25:25.262489 mef 6850 R rec 9e71d07b-f5d1-4fe5-a0b2-311201a1ad68 -2023-07-08 08:25:25.364799 2023-07-08 08:25:25.364809 mef 6851 R rec 81d5590c-7c18-4b5c-a77f-2f6154765d28 -2023-07-08 08:25:25.466098 2023-07-08 08:25:25.466114 mef 6852 R rec c7379676-e405-493c-89b7-b5e45de9f0f3 -2023-07-08 08:25:25.566688 2023-07-08 08:25:25.566701 mef 6853 R rec c09c4a14-a8a0-40fe-8820-5ace015a3d1d -2023-07-08 08:25:25.662907 2023-07-08 08:25:25.662917 mef 6854 R rec 8bd610b9-9a75-4092-b8cd-3f3c43f7a459 -2023-07-08 08:25:25.768283 2023-07-08 08:25:25.768299 mef 6855 R rec 75f992f4-82cd-43af-925a-a9ad68650377 -2023-07-08 08:25:25.887276 2023-07-08 08:25:25.887288 mef 6856 R rec d9081519-f284-4bfd-b763-0248cc011c1d -2023-07-08 08:25:25.991602 2023-07-08 08:25:25.991615 mef 6857 R rec 1d476426-c67d-40aa-ac79-ef53d31e931f -2023-07-08 08:25:26.091919 2023-07-08 08:25:26.091929 mef 6858 R rec 1857dd2c-3829-4a58-ac6e-fc2e49324b27 -2023-07-08 08:25:26.187681 2023-07-08 08:25:26.187692 mef 6859 R rec ad75fca5-d1b8-4734-8b0d-e1377b5c6256 -2023-07-08 08:25:26.286046 2023-07-08 08:25:26.286057 mef 6860 R rec d27695ae-b53d-4f68-a750-6d5a6c2946b3 -2023-07-08 08:25:26.387834 2023-07-08 08:25:26.387848 mef 6861 R rec 623b28e7-4836-41f2-9d29-e8a847f73a9d -2023-07-08 08:25:26.489286 2023-07-08 08:25:26.489299 mef 6862 R rec c7e409d1-8428-4cb6-afa9-1b7a05dcbff8 -2023-07-08 08:25:26.59221 2023-07-08 08:25:26.592221 mef 6863 R rec ff085ab6-c488-4f76-9c7f-6dc56ae3e0e2 -2023-07-08 08:25:26.687649 2023-07-08 08:25:26.68766 mef 6864 R rec 187ccd64-988b-4c18-844c-249061499898 -2023-07-08 08:25:26.788472 2023-07-08 08:25:26.788482 mef 6865 R rec 4badc959-3c68-4c25-ad6f-35496870f96f -2023-07-08 08:25:27.020367 2023-07-08 08:25:27.020378 mef 6866 R rec 19473a16-fe2a-43a5-a8d4-912cdbe0065f -2023-07-08 08:25:27.13235 2023-07-08 08:25:27.132362 mef 6867 R rec 764c0279-0d94-47ba-b8ac-fc85d7952c5f -2023-07-08 08:25:27.234905 2023-07-08 08:25:27.234916 mef 6868 R rec 4553b4f7-10ad-4452-a3bb-5589ef18af30 -2023-07-08 08:25:27.33536 2023-07-08 08:25:27.335371 mef 6869 R rec add0cfc7-0b6b-4f32-a52d-8c66b2e469c9 -2023-07-08 08:25:27.445548 2023-07-08 08:25:27.445558 mef 6870 R rec 3d3f63a6-4f8c-405f-9400-b666a5810cd3 -2023-07-08 08:25:27.55602 2023-07-08 08:25:27.556054 mef 6871 R rec 6cf43a48-d2b9-47a1-aa86-5f5858dfaa19 -2023-07-08 08:25:27.671327 2023-07-08 08:25:27.671345 mef 6872 R rec ac03a6da-156c-4886-be17-415b06daa85f -2023-07-08 08:25:27.81031 2023-07-08 08:25:27.81032 mef 6873 R rec ef26d987-e58c-4210-a1bd-13df31f253d4 -2023-07-08 08:25:27.918567 2023-07-08 08:25:27.918577 mef 6874 R rec eb98c247-813e-4119-8602-7e4aaf196363 -2023-07-08 08:25:28.028317 2023-07-08 08:25:28.028326 mef 6875 R rec 9ad5329f-1274-4c06-8ac8-3a8c5475b28b -2023-07-08 08:25:28.132826 2023-07-08 08:25:28.132837 mef 6876 R rec e8c4b5c8-612d-4e19-97a2-4ad688b42e16 -2023-07-08 08:25:28.233614 2023-07-08 08:25:28.233624 mef 6877 R rec 9ba1e207-317a-4886-8f08-bdf113c5ecd6 -2023-07-08 08:25:28.334348 2023-07-08 08:25:28.334358 mef 6878 R rec a72b7c07-3ef3-4eb8-be62-8722cacc6e6f -2023-07-08 08:25:28.436974 2023-07-08 08:25:28.436985 mef 6879 R rec 7b07a5f7-a1e2-499d-86b4-3847e96c68fe -2023-07-08 08:25:28.553917 2023-07-08 08:25:28.55393 mef 6880 R rec b9389335-f004-46a8-8329-8d821289e4be -2023-07-08 08:25:28.668136 2023-07-08 08:25:28.668147 mef 6881 R rec 6fa4305c-31cd-4eb4-8d08-4b990c3ae161 -2023-07-08 08:25:28.767663 2023-07-08 08:25:28.767675 mef 6882 R rec 0057b82c-df1a-46b4-812d-7f49f614be8d -2023-07-08 08:25:28.868969 2023-07-08 08:25:28.868983 mef 6883 R rec 74b463b0-4d89-4ca2-9a8e-28244267c860 -2023-07-08 08:25:28.968582 2023-07-08 08:25:28.968594 mef 6884 R rec e929aa90-83d8-403a-9263-4b8cbd58139b -2023-07-08 08:25:29.07249 2023-07-08 08:25:29.072502 mef 6885 R rec d7985ab9-5a5b-4e80-8546-41be901291b9 -2023-07-08 08:25:29.177254 2023-07-08 08:25:29.177272 mef 6886 R rec 1e55d75a-ebce-413a-842b-845f4c95feeb -2023-07-08 08:25:29.282397 2023-07-08 08:25:29.282409 mef 6887 R rec 8c6b5cae-f0c5-4079-9529-bb0515c3ade6 -2023-07-08 08:25:29.382767 2023-07-08 08:25:29.38278 mef 6888 R rec 5f871e38-caac-4d1a-9d01-448cedf60b62 -2023-07-08 08:25:29.503313 2023-07-08 08:25:29.503326 mef 6889 R rec 1c2fc5db-9ef2-42cb-b295-13d165cac63c -2023-07-08 08:25:29.608798 2023-07-08 08:25:29.608814 mef 6890 R rec 034e4f52-d88d-4921-a9b7-edf75d057f55 -2023-07-08 08:25:29.720467 2023-07-08 08:25:29.720483 mef 6891 R rec 2b3b4632-1f19-4de2-8582-3569cf30d3a1 -2023-07-08 08:25:29.834073 2023-07-08 08:25:29.834085 mef 6892 R rec 74e31fa9-55b3-44ca-861e-6f9cd16e8e26 -2023-07-08 08:25:30.04773 2023-07-08 08:25:30.047743 mef 6893 R rec f9124d82-3205-485b-aef0-f54d3e6ad950 -2023-07-08 08:25:30.280812 2023-07-08 08:25:30.280823 mef 6894 R rec e5427cd3-9f4a-4e9f-a4e9-5b9d18ba5ac3 -2023-07-08 08:25:30.397758 2023-07-08 08:25:30.397774 mef 6895 R rec 10dcd815-dc23-4ef7-bb7d-5e72c58f3c23 -2023-07-08 08:25:30.503873 2023-07-08 08:25:30.503884 mef 6896 R rec f33000dc-c280-4726-8620-1aa13ab1f3fc -2023-07-08 08:25:30.622406 2023-07-08 08:25:30.622421 mef 6897 R rec ec37050e-b844-4e2f-ab72-11120eaa9a39 -2023-07-08 08:25:30.774318 2023-07-08 08:25:30.774336 mef 6898 R rec 4c5946a4-7ca5-4a03-9783-3ee101ef5df3 -2023-07-08 08:25:30.904852 2023-07-08 08:25:30.904866 mef 6899 R rec b608096e-1d77-4f99-934d-03a1c2ebbde4 -2023-07-08 08:25:31.041231 2023-07-08 08:25:31.041244 mef 6900 R rec 1111006a-2971-4630-b1c4-7ceaa6710b96 -2023-07-08 08:25:31.155767 2023-07-08 08:25:31.155787 mef 6901 R rec 87a48768-9b4e-42f9-bb83-670b3a36fd05 -2023-07-08 08:25:31.289318 2023-07-08 08:25:31.289333 mef 6902 R rec 93ee84d4-29a6-4295-a464-d34394072656 -2023-07-08 08:25:31.468172 2023-07-08 08:25:31.468182 mef 6903 R rec f38a08fa-55a8-4430-a751-438653b24f14 -2023-07-08 08:25:31.608634 2023-07-08 08:25:31.608648 mef 6904 R rec df3c17f7-d619-4885-b1f5-e0cf96cf1edd -2023-07-08 08:25:31.724322 2023-07-08 08:25:31.724335 mef 6905 R rec 448f292e-41b0-4bba-86c1-ad9a056938ba -2023-07-08 08:25:31.840829 2023-07-08 08:25:31.841827 mef 6906 R rec 230b9c71-83a4-462f-a6d7-f1812b5a0693 -2023-07-08 08:25:31.956772 2023-07-08 08:25:31.956781 mef 6907 R rec ce256957-726b-45ec-bd4e-0d1823aeb89c -2023-07-08 08:25:32.070683 2023-07-08 08:25:32.070694 mef 6908 R rec e398d0e4-e493-405c-8bc7-790acaa7797f -2023-07-08 08:25:32.222455 2023-07-08 08:25:32.222466 mef 6909 R rec 46136869-dd43-4ec2-820d-a60ee7632448 -2023-07-08 08:25:32.445913 2023-07-08 08:25:32.445926 mef 6910 R rec 25c5359e-acb1-430f-928b-3af08a920b66 -2023-07-08 08:25:32.554076 2023-07-08 08:25:32.554089 mef 6911 R rec a965e630-db59-49c7-83c1-2957f2c0385b -2023-07-08 08:25:32.679228 2023-07-08 08:25:32.679238 mef 6912 R rec e3c12583-9f48-4953-8a92-0b7f2f253e19 -2023-07-08 08:25:32.805847 2023-07-08 08:25:32.805858 mef 6913 R rec 5df290bb-f1db-4125-b27b-ac31ce6884f9 -2023-07-08 08:25:32.934771 2023-07-08 08:25:32.934782 mef 6914 R rec 19c26304-2892-4ccb-8c79-d1057e6a5c3c -2023-07-08 08:25:33.044917 2023-07-08 08:25:33.044927 mef 6915 R rec 1522d536-68a3-44ee-b7b2-c4a18a99f3d7 -2023-07-08 08:25:33.16509 2023-07-08 08:25:33.165104 mef 6916 R rec 2639e006-c891-4433-a543-4ccff35db1b0 -2023-07-08 08:25:33.291481 2023-07-08 08:25:33.291493 mef 6917 R rec 8b004f0b-fff1-424f-8119-570fac9bf028 -2023-07-08 08:25:33.409246 2023-07-08 08:25:33.40926 mef 6918 R rec 89600cc6-6285-4acb-b2f4-3cbf85141df2 -2023-07-08 08:25:33.512988 2023-07-08 08:25:33.513001 mef 6919 R rec eb325b66-7a57-4180-90fb-4b64192e1030 -2023-07-08 08:25:33.648922 2023-07-08 08:25:33.648941 mef 6920 R rec b53d64c1-321c-4639-90d0-de483d95a3f8 -2023-07-08 08:25:33.759067 2023-07-08 08:25:33.759072 mef 6921 R rec 8c639de5-6072-4615-a862-f5a1c89394f7 -2023-07-08 08:25:33.883744 2023-07-08 08:25:33.883755 mef 6922 R rec 90de6808-7775-4fa5-8291-ca02b7310e28 -2023-07-08 08:25:33.995007 2023-07-08 08:25:33.995019 mef 6923 R rec ad747a07-8b8e-47ab-826d-8199bc11e5a1 -2023-07-08 08:25:34.095305 2023-07-08 08:25:34.095319 mef 6924 R rec 5dfd09bf-0463-47a5-a0a8-91dd33d931f9 -2023-07-08 08:25:34.229857 2023-07-08 08:25:34.22987 mef 6925 R rec 2834a17b-89ce-44cc-adcd-f8e7dc0153ad -2023-07-08 08:25:34.334947 2023-07-08 08:25:34.334968 mef 6926 R rec 54344be3-f57b-4402-b56d-6e14b045bf10 -2023-07-08 08:25:34.576245 2023-07-08 08:25:34.576536 mef 6927 R rec 45314d9b-c1a8-40f9-889d-434f97490851 -2023-07-08 08:25:34.686731 2023-07-08 08:25:34.686743 mef 6928 R rec 077d7a6b-d78a-4211-a828-8c19f3833626 -2023-07-08 08:25:34.789521 2023-07-08 08:25:34.789537 mef 6929 R rec 3a3b9a1b-d641-4692-ac9b-897daf5d141e -2023-07-08 08:25:34.896884 2023-07-08 08:25:34.896894 mef 6930 R rec 3a9cc1a6-fbfe-4875-a580-18d55b94b089 -2023-07-08 08:25:35.013886 2023-07-08 08:25:35.013898 mef 6931 R rec 35cbbb84-fe53-41e2-a455-a2b228f6f23b -2023-07-08 08:25:35.116243 2023-07-08 08:25:35.116258 mef 6932 R rec 60a8aa2d-100a-4c88-8ca2-bb6517521dda -2023-07-08 08:25:35.223777 2023-07-08 08:25:35.223789 mef 6933 R rec c6d33047-e4f4-465e-9a03-cc9385146f2c -2023-07-08 08:25:35.327301 2023-07-08 08:25:35.327311 mef 6934 R rec 3a8de7b4-72fc-43ab-86cb-0b31fc13f33f -2023-07-08 08:25:35.442328 2023-07-08 08:25:35.442337 mef 6935 R rec 8db062da-3b0e-48b9-9940-cdcef5c09881 -2023-07-08 08:25:35.54599 2023-07-08 08:25:35.546041 mef 6936 R rec 66651e34-343b-4f30-bebc-3c3cc5743f68 -2023-07-08 08:25:35.658883 2023-07-08 08:25:35.658896 mef 6937 R rec 2963878a-28da-419c-92cc-9faa0918c117 -2023-07-08 08:25:35.772038 2023-07-08 08:25:35.772048 mef 6938 R rec dd16bb51-0ecc-4292-b42d-16b326aeb0bd -2023-07-08 08:25:35.880384 2023-07-08 08:25:35.880395 mef 6939 R rec 11a925a7-1d34-4adf-9763-9e6fbccddc8a -2023-07-08 08:25:35.997126 2023-07-08 08:25:35.997167 mef 6940 R rec 88e8d61c-d366-48a4-a96b-133a251ce0ec -2023-07-08 08:25:36.120716 2023-07-08 08:25:36.120732 mef 6941 R rec ad85fa25-0d21-401b-a7d2-d2ce10f5c7d4 -2023-07-08 08:25:36.228404 2023-07-08 08:25:36.228414 mef 6942 R rec 6369ff68-c4ce-40c9-9347-d27c51268805 -2023-07-08 08:25:36.337073 2023-07-08 08:25:36.337089 mef 6943 R rec beec7a97-2bda-491b-8205-acbb7c42b6b9 -2023-07-08 08:25:36.438042 2023-07-08 08:25:36.438056 mef 6944 R rec 6ba4ae9a-f918-4d17-a64d-4eed4b31b9b1 -2023-07-08 08:25:36.54749 2023-07-08 08:25:36.547507 mef 6945 R rec 25b93ec2-3c53-4af0-8fef-6813eb08e7f6 -2023-07-08 08:25:36.653093 2023-07-08 08:25:36.653106 mef 6946 R rec ad5e117a-0c18-4618-ae76-9828b298daca -2023-07-08 08:25:36.75407 2023-07-08 08:25:36.754086 mef 6947 R rec fdec4c96-fbd6-494c-a536-48fc5280360b -2023-07-08 08:25:36.873092 2023-07-08 08:25:36.873106 mef 6948 R rec f0c452d3-8075-421e-b685-e8e8c2210efe -2023-07-08 08:25:36.979265 2023-07-08 08:25:36.979278 mef 6949 R rec d415b33d-bab0-474f-92ff-6eb697346059 -2023-07-08 08:25:37.0861 2023-07-08 08:25:37.086111 mef 6950 R rec 2998b49c-03ab-44e2-93ab-7ecc51265073 -2023-07-08 08:25:37.196461 2023-07-08 08:25:37.196474 mef 6951 R rec a1708ecd-e279-43ba-9bb6-943408f829b1 -2023-07-08 08:25:37.302454 2023-07-08 08:25:37.302467 mef 6952 R rec edc16731-bb5e-4546-a4f1-e1bd57113936 -2023-07-08 08:25:37.411109 2023-07-08 08:25:37.411126 mef 6953 R rec c5c15634-d9a8-40fc-a677-99722e5c9649 -2023-07-08 08:25:37.51504 2023-07-08 08:25:37.515054 mef 6954 R rec ea80583a-8b66-421c-8c76-91f8401e3800 -2023-07-08 08:25:37.615076 2023-07-08 08:25:37.615088 mef 6955 R rec 96bec8f7-6444-45bc-8101-55dc47c6f45a -2023-07-08 08:25:37.728225 2023-07-08 08:25:37.728236 mef 6956 R rec 53da9e74-8bc3-4831-9bc5-3f9b6bfc11a4 -2023-07-08 08:25:37.847404 2023-07-08 08:25:37.847419 mef 6957 R rec f78b8864-40d6-49d2-87ff-23c7b8fd33db -2023-07-08 08:25:37.977174 2023-07-08 08:25:37.977184 mef 6958 R rec c961cbe0-4789-4810-9c26-222165bf34f7 -2023-07-08 08:25:38.083195 2023-07-08 08:25:38.083209 mef 6959 R rec 2f6fb1d1-6f08-4e1f-9488-0781384c7085 -2023-07-08 08:25:38.187905 2023-07-08 08:25:38.187915 mef 6960 R rec 29e27c3a-93d1-401e-a817-bbb41e63adac -2023-07-08 08:25:38.301536 2023-07-08 08:25:38.30155 mef 6961 R rec 6ec0d714-255f-4648-82e8-41dc2eec2bcb -2023-07-08 08:25:38.427246 2023-07-08 08:25:38.427259 mef 6962 R rec 4a9cfc71-f217-49e3-9e50-df31dd754c58 -2023-07-08 08:25:38.540798 2023-07-08 08:25:38.540809 mef 6963 R rec 0ab37534-51b6-4acd-a61e-604c201dba25 -2023-07-08 08:25:38.663133 2023-07-08 08:25:38.663149 mef 6964 R rec 8be832dc-0dfb-4ac2-9da2-01d83d2d6898 -2023-07-08 08:25:38.775664 2023-07-08 08:25:38.77568 mef 6965 R rec 0717a064-fb30-450f-aadb-6e0ec0e32097 -2023-07-08 08:25:38.891853 2023-07-08 08:25:38.891863 mef 6966 R rec 77128f3b-f72d-4227-a127-fe94a3a1b2a5 -2023-07-08 08:25:39.018794 2023-07-08 08:25:39.018808 mef 6967 R rec 0e1227d6-81be-4d4c-a9a0-73e7a91684f4 -2023-07-08 08:25:39.127661 2023-07-08 08:25:39.127677 mef 6968 R rec a643dd0a-5868-4a6d-a3d4-c904a7f5bbd9 -2023-07-08 08:25:39.352771 2023-07-08 08:25:39.352786 mef 6969 R rec 1634b6f9-567e-45f5-9c13-3f701fbc0db6 -2023-07-08 08:25:39.46873 2023-07-08 08:25:39.468746 mef 6970 R rec f9c6601f-4b7e-496a-b746-7d8458360a16 -2023-07-08 08:25:39.585925 2023-07-08 08:25:39.585935 mef 6971 R rec a63aa5a2-0daa-4b97-863d-ed799848dc4c -2023-07-08 08:25:39.691275 2023-07-08 08:25:39.691288 mef 6972 R rec bc372f09-6446-4f9a-9333-62289560d2aa -2023-07-08 08:25:39.92866 2023-07-08 08:25:39.928779 mef 6973 R rec 62b5776e-1f59-4932-a548-96753a4634d0 -2023-07-08 08:25:40.050193 2023-07-08 08:25:40.050206 mef 6974 R rec da41da5a-88ba-42c1-bccd-11284d70fc20 -2023-07-08 08:25:40.152241 2023-07-08 08:25:40.152251 mef 6975 R rec c3c25958-f41e-4adb-9fee-cd3911f82d04 -2023-07-08 08:25:40.280337 2023-07-08 08:25:40.280348 mef 6976 R rec 4cd5d08f-debb-42ae-ad82-1e95c892f1c2 -2023-07-08 08:25:40.392119 2023-07-08 08:25:40.392129 mef 6977 R rec 6ef9e964-deb2-44dc-9d78-cda6954fe14f -2023-07-08 08:25:40.4953 2023-07-08 08:25:40.495311 mef 6978 R rec a0334a02-c77f-4232-9a7e-c2f581d2d1f5 -2023-07-08 08:25:40.59937 2023-07-08 08:25:40.599387 mef 6979 R rec 8b917924-159e-489e-87ea-dbfc7b58d565 -2023-07-08 08:25:40.707156 2023-07-08 08:25:40.707169 mef 6980 R rec 91111556-f84d-4632-ae22-039487b055eb -2023-07-08 08:25:40.801963 2023-07-08 08:25:40.801974 mef 6981 R rec a636399a-7c9e-44d0-936c-52c5fd660fc8 -2023-07-08 08:25:40.905679 2023-07-08 08:25:40.905698 mef 6982 R rec 48961e15-a962-4d81-aedb-da1a1949d9da -2023-07-08 08:25:41.051998 2023-07-08 08:25:41.052009 mef 6983 R rec e8116284-8e0f-4f78-b5f2-3c110a294c94 -2023-07-08 08:25:41.163418 2023-07-08 08:25:41.16343 mef 6984 R rec beebce41-8e52-4512-be1d-44b3a4092d4f -2023-07-08 08:25:41.264736 2023-07-08 08:25:41.264746 mef 6985 R rec c5708342-be4a-4b32-92d9-d5d989172b04 -2023-07-08 08:25:41.374322 2023-07-08 08:25:41.374334 mef 6986 R rec 635baaed-64b2-485c-af1b-b466677c8a2d -2023-07-08 08:25:41.487133 2023-07-08 08:25:41.487143 mef 6987 R rec 513dddd9-5022-44bf-97f4-d84cb295bd1c -2023-07-08 08:25:41.61371 2023-07-08 08:25:41.613723 mef 6988 R rec d98ad668-9a48-4527-bac9-0d0aaaf64c7f -2023-07-08 08:25:41.71473 2023-07-08 08:25:41.714743 mef 6989 R rec 54fcc843-effa-43c2-9382-4364d1778abf -2023-07-08 08:25:41.825634 2023-07-08 08:25:41.825645 mef 6990 R rec 7091755d-60f7-460f-9590-21a98c93aad6 -2023-07-08 08:25:41.928967 2023-07-08 08:25:41.928982 mef 6991 R rec d5ad7596-e282-416b-a623-b3b5122c50a1 -2023-07-08 08:25:42.037115 2023-07-08 08:25:42.037128 mef 6992 R rec 90982d1d-3300-407d-9af8-e7ce4e3f2a4f -2023-07-08 08:25:42.310327 2023-07-08 08:25:42.310338 mef 6993 R rec a310ba4e-cc6f-401a-9889-399a100f737e -2023-07-08 08:25:42.435884 2023-07-08 08:25:42.435898 mef 6994 R rec 0bb0d1fa-cbbc-4c83-be4f-5ef3258b2233 -2023-07-08 08:25:42.539783 2023-07-08 08:25:42.539795 mef 6995 R rec a6f43d6b-7119-4a3d-8be5-fc0cd80997c6 -2023-07-08 08:25:42.644782 2023-07-08 08:25:42.644794 mef 6996 R rec 8495ef70-a2e5-48d2-9145-0cf470e3ecb1 -2023-07-08 08:25:42.759648 2023-07-08 08:25:42.759659 mef 6997 R rec ddfa0e75-9429-4530-97c5-fb3fccaff904 -2023-07-08 08:25:42.869465 2023-07-08 08:25:42.869478 mef 6998 R rec 4d6dca7e-2751-4701-ad3b-1d19366e73ec -2023-07-08 08:25:42.98538 2023-07-08 08:25:42.985395 mef 6999 R rec 7961e74d-97fe-4a12-95a3-d5f8d426b85d -2023-07-08 08:25:43.102924 2023-07-08 08:25:43.102936 mef 7000 R rec 43ff9739-c55c-4d1e-b6cb-38bf4c4607b5 -2023-07-08 08:25:43.236736 2023-07-08 08:25:43.236748 mef 7001 R rec e959db9f-60cc-4804-be30-67c8f5b02528 -2023-07-08 08:25:43.348466 2023-07-08 08:25:43.348479 mef 7002 R rec b57720ec-a63a-41d5-96e9-b745dabf20c1 -2023-07-08 08:25:43.451064 2023-07-08 08:25:43.451077 mef 7003 R rec 47c5ae4e-dc47-4c2f-b660-94fd9c101a0f -2023-07-08 08:25:43.558804 2023-07-08 08:25:43.558814 mef 7004 R rec b2df6663-ffd4-40e6-a510-eee290dfca03 -2023-07-08 08:25:43.665695 2023-07-08 08:25:43.665708 mef 7005 R rec b996b004-1d9d-4c68-a06b-76c033358c3f -2023-07-08 08:25:43.767538 2023-07-08 08:25:43.767549 mef 7006 R rec e4191f60-13a2-4032-ba77-61c646de5a66 -2023-07-08 08:25:43.855107 2023-07-08 08:25:43.855119 mef 7007 R rec c2ed3229-6873-4c98-b223-7c8c7e040140 -2023-07-08 08:25:43.95132 2023-07-08 08:25:43.951333 mef 7008 R rec 9eb47af6-12e9-485c-94d8-8ae6e084a2c9 -2023-07-08 08:25:44.046257 2023-07-08 08:25:44.046267 mef 7009 R rec ab538a32-6748-490e-83ff-2e032f10f80b -2023-07-08 08:25:44.144893 2023-07-08 08:25:44.144903 mef 7010 R rec bb15d115-7887-45b4-9d34-a5d246b7bcb5 -2023-07-08 08:25:44.246878 2023-07-08 08:25:44.24689 mef 7011 R rec ffb29122-42e7-4356-b58c-871fab4376ef -2023-07-08 08:25:44.344477 2023-07-08 08:25:44.344487 mef 7012 R rec 5e1fea9b-5fc8-44d3-b3f6-a50a9b4dfa19 -2023-07-08 08:25:44.459648 2023-07-08 08:25:44.459666 mef 7013 R rec ba1a48ec-6dde-4b90-ad75-fcadc954d150 -2023-07-08 08:25:44.566086 2023-07-08 08:25:44.566099 mef 7014 R rec 092881b4-1435-418a-b081-38b8d452e10f -2023-07-08 08:25:44.77921 2023-07-08 08:25:44.779221 mef 7015 R rec 1cc64a29-4a50-45b9-8c53-13881852bd28 -2023-07-08 08:25:44.875208 2023-07-08 08:25:44.875326 mef 7016 R rec 67a29746-cc19-4881-9646-a778cf434510 -2023-07-08 08:25:44.987976 2023-07-08 08:25:44.987988 mef 7017 R rec 7d628304-5998-4863-a4dd-d1d3042a0773 -2023-07-08 08:25:45.082986 2023-07-08 08:25:45.082998 mef 7018 R rec db34e3d9-6b2e-4a80-92ba-f29ae4d1bb52 -2023-07-08 08:25:45.189545 2023-07-08 08:25:45.189556 mef 7019 R rec 5729376e-9ce4-4e96-bd12-41b47e5cb103 -2023-07-08 08:25:45.300429 2023-07-08 08:25:45.30044 mef 7020 R rec 379a7359-a18b-4ebb-9ab0-29862004607d -2023-07-08 08:25:45.422527 2023-07-08 08:25:45.422538 mef 7021 R rec ef62808e-3c1b-4cd7-853d-6c3295facaea -2023-07-08 08:25:45.536509 2023-07-08 08:25:45.536524 mef 7022 R rec 441ed10f-b3fe-4fa4-b9f1-164592163e97 -2023-07-08 08:25:45.650906 2023-07-08 08:25:45.650921 mef 7023 R rec 8ba38299-d340-4cf3-aaf6-65781c5d0158 -2023-07-08 08:25:45.761518 2023-07-08 08:25:45.761535 mef 7024 R rec 27b21419-c30c-451d-94f4-f03411f78d9e -2023-07-08 08:25:45.879214 2023-07-08 08:25:45.879225 mef 7025 R rec 65c47ef1-6c36-4328-ac50-3a5e452c9759 -2023-07-08 08:25:45.979713 2023-07-08 08:25:45.979724 mef 7026 R rec 630e24e2-8425-4d5a-ba55-f40ea1dbbcdc -2023-07-08 08:25:46.082983 2023-07-08 08:25:46.082993 mef 7027 R rec 840a3269-1b9f-4e3f-a983-46f6c21fa7b4 -2023-07-08 08:25:46.19253 2023-07-08 08:25:46.192545 mef 7028 R rec 2644354c-c068-4a31-9ab2-d87439eb966d -2023-07-08 08:25:46.29386 2023-07-08 08:25:46.29387 mef 7029 R rec 6ef651e2-2753-4904-a68d-75814a251441 -2023-07-08 08:25:46.399397 2023-07-08 08:25:46.399411 mef 7030 R rec 49e01e05-651b-4c74-a667-7d54fd2f9b7f -2023-07-08 08:25:46.504524 2023-07-08 08:25:46.50454 mef 7031 R rec f2fddedb-7379-4444-a8ed-ee213a7cd86e -2023-07-08 08:25:46.615477 2023-07-08 08:25:46.615495 mef 7032 R rec fde06e55-25b3-48ac-84ec-e4a8256d17df -2023-07-08 08:25:46.732907 2023-07-08 08:25:46.73292 mef 7033 R rec b8ddf2ea-ca26-4097-b336-ef31e194b034 -2023-07-08 08:25:46.861403 2023-07-08 08:25:46.861419 mef 7034 R rec fb322be9-e564-43ac-8df9-dd6d6a9967c4 -2023-07-08 08:25:46.973244 2023-07-08 08:25:46.97326 mef 7035 R rec 1af585a1-40af-439e-9cfa-13bf15791986 -2023-07-08 08:25:47.085741 2023-07-08 08:25:47.085756 mef 7036 R rec 6debf12f-0b3a-4082-bd72-cc02fcfb85c9 -2023-07-08 08:25:47.192507 2023-07-08 08:25:47.192518 mef 7037 R rec c0b6cfd2-c553-4904-9825-daf087a10bb0 -2023-07-08 08:25:47.303935 2023-07-08 08:25:47.303945 mef 7038 R rec 2e746297-682d-4d0e-9cc6-1cc713d8c4ba -2023-07-08 08:25:47.413292 2023-07-08 08:25:47.413307 mef 7039 R rec ef09fbb9-44ee-42c4-81fa-6995516c5f3f -2023-07-08 08:25:47.520706 2023-07-08 08:25:47.520719 mef 7040 R rec 52aad436-b2d3-42df-aa48-d61a6a7c6a8e -2023-07-08 08:25:47.643732 2023-07-08 08:25:47.643746 mef 7041 R rec 12031c5d-5aa8-4325-906b-211cf5a0233b -2023-07-08 08:25:47.751506 2023-07-08 08:25:47.751522 mef 7042 R rec efdd1004-2040-4c02-9cf3-2850974fb2aa -2023-07-08 08:25:47.982399 2023-07-08 08:25:47.982412 mef 7043 R rec b8808f26-1bfb-4d7a-8fe4-22062ce90509 -2023-07-08 08:25:48.084996 2023-07-08 08:25:48.085012 mef 7044 R rec 3358e040-8a0b-464f-a4d4-c2a75f34c2aa -2023-07-08 08:25:48.186585 2023-07-08 08:25:48.1866 mef 7045 R rec efda61ec-aa78-42e9-b922-4db90f91f2c0 -2023-07-08 08:25:48.303616 2023-07-08 08:25:48.303632 mef 7046 R rec 6dc89246-cbff-47cb-90b1-591b4242adbf -2023-07-08 08:25:48.421142 2023-07-08 08:25:48.421157 mef 7047 R rec 5aba29d1-0e1c-44a3-82ee-340f292a8fd0 -2023-07-08 08:25:48.641046 2023-07-08 08:25:48.641057 mef 7048 R rec 32c83104-bef5-49b5-b129-e1019ef48350 -2023-07-08 08:25:48.747401 2023-07-08 08:25:48.747417 mef 7049 R rec e596fea4-58cc-440e-9574-bd1c0687d902 -2023-07-08 08:25:48.844811 2023-07-08 08:25:48.844822 mef 7050 R rec 3d43e9a6-5f8b-4591-a9f6-7b425963e381 -2023-07-08 08:25:48.942999 2023-07-08 08:25:48.943009 mef 7051 R rec db958ba4-8c95-4971-a0cc-ab75255b9d0e -2023-07-08 08:25:49.049523 2023-07-08 08:25:49.049538 mef 7052 R rec 07710179-d09f-4625-9f45-34133daa8b8c -2023-07-08 08:25:49.164816 2023-07-08 08:25:49.164832 mef 7053 R rec 29460ed6-1662-4cb5-b59f-e7b89c2c80a8 -2023-07-08 08:25:49.270336 2023-07-08 08:25:49.270351 mef 7054 R rec d79a43a1-7a65-4c8b-ab0b-ec0ac070af39 -2023-07-08 08:25:49.376691 2023-07-08 08:25:49.376708 mef 7055 R rec 66deda94-7b8f-4044-9da8-4118a9a6af8b -2023-07-08 08:25:49.485018 2023-07-08 08:25:49.485028 mef 7056 R rec ce8425e5-1a8b-4736-a46f-2da6223cfc96 -2023-07-08 08:25:49.586091 2023-07-08 08:25:49.586101 mef 7057 R rec f95d7e65-f268-4f7a-b749-1dd475b38f34 -2023-07-08 08:25:49.691481 2023-07-08 08:25:49.691491 mef 7058 R rec a3abc501-c821-42e9-b637-aa37a82e5b0f -2023-07-08 08:25:49.797498 2023-07-08 08:25:49.797514 mef 7059 R rec a47ba935-eac7-4c2d-bb5a-ce13a5fea5f4 -2023-07-08 08:25:49.896018 2023-07-08 08:25:49.896034 mef 7060 R rec 47d1805f-48a5-4853-bff2-2c011e29de62 -2023-07-08 08:25:49.999372 2023-07-08 08:25:49.999383 mef 7061 R rec de2eec27-19e7-49c0-9d98-8eb0ed2a775b -2023-07-08 08:25:50.105067 2023-07-08 08:25:50.105083 mef 7062 R rec cf368a10-e931-41bc-a6f8-bfe3d0914b42 -2023-07-08 08:25:50.210334 2023-07-08 08:25:50.21035 mef 7063 R rec 23c1c7bc-9b0a-40b2-ab3b-de71d0669a8b -2023-07-08 08:25:50.313955 2023-07-08 08:25:50.313974 mef 7064 R rec 3bd42791-f0c6-4474-b78a-6aa84bbddee2 -2023-07-08 08:25:50.417263 2023-07-08 08:25:50.417284 mef 7065 R rec f8f8cc39-866e-4d3c-95df-ed0ad31364e8 -2023-07-08 08:25:50.52065 2023-07-08 08:25:50.520669 mef 7066 R rec 579e4c0c-9f78-4c9a-a263-4167b131ebe4 -2023-07-08 08:25:50.628642 2023-07-08 08:25:50.628653 mef 7067 R rec e882d65c-df24-40ef-8d39-35b4101a5ddf -2023-07-08 08:25:50.732046 2023-07-08 08:25:50.73206 mef 7068 R rec 83661d8d-9868-411d-9457-840d01ed1009 -2023-07-08 08:25:50.948203 2023-07-08 08:25:50.948219 mef 7069 R rec 5d94c2df-8ef1-4685-8bab-eecc01331047 -2023-07-08 08:25:51.050386 2023-07-08 08:25:51.050404 mef 7070 R rec 5a9330f0-b2f8-4b32-9aa0-d38f35fe16f5 -2023-07-08 08:25:51.152844 2023-07-08 08:25:51.152862 mef 7071 R rec 7daf06cc-d9ee-4bef-bf28-5184c3bce604 -2023-07-08 08:25:51.25922 2023-07-08 08:25:51.259236 mef 7072 R rec 8cf2098f-de48-40af-a7aa-03266316dbbd -2023-07-08 08:25:51.359166 2023-07-08 08:25:51.359185 mef 7073 R rec 5a948cd9-035a-465d-b103-37ec652080b1 -2023-07-08 08:25:51.463572 2023-07-08 08:25:51.463582 mef 7074 R rec 2fb54d8c-4bed-4ca6-9500-552e4e307acc -2023-07-08 08:25:51.570717 2023-07-08 08:25:51.570732 mef 7075 R rec fc95add6-adba-48d0-8988-1074070d1554 -2023-07-08 08:25:51.682478 2023-07-08 08:25:51.68249 mef 7076 R rec bca3159d-a3b9-435b-b69f-7d6a6ff9fb99 -2023-07-08 08:25:51.788797 2023-07-08 08:25:51.788807 mef 7077 R rec d393a8ce-61aa-40ac-82e6-7bdaf29c7e8a -2023-07-08 08:25:51.899165 2023-07-08 08:25:51.899178 mef 7078 R rec 7c9fde75-d6d0-4fdb-8411-e83f45a0a4da -2023-07-08 08:25:52.003987 2023-07-08 08:25:52.003997 mef 7079 R rec d3ed5a82-3b13-4b10-b779-b8ca719ee4c4 -2023-07-08 08:25:52.12016 2023-07-08 08:25:52.120175 mef 7080 R rec 9419a48b-f7bd-41cc-b428-d90ff7ae7043 -2023-07-08 08:25:52.234071 2023-07-08 08:25:52.234082 mef 7081 R rec 728395b8-ea65-4ec8-b000-f43e35ba0bc4 -2023-07-08 08:25:52.340514 2023-07-08 08:25:52.340534 mef 7082 R rec cba6d517-4b72-4d46-b956-93e94a2274a7 -2023-07-08 08:25:52.456478 2023-07-08 08:25:52.456496 mef 7083 R rec 7edd392f-56a3-46e6-b4e3-3aeafb21b27f -2023-07-08 08:25:52.671642 2023-07-08 08:25:52.671652 mef 7084 R rec 30352d29-3d21-4f9c-b144-9ffc7c236c45 -2023-07-08 08:25:52.778346 2023-07-08 08:25:52.778357 mef 7085 R rec 48acb220-98d7-4e26-be7c-25e775cced1c -2023-07-08 08:25:52.878253 2023-07-08 08:25:52.878269 mef 7086 R rec fae22cd0-af06-432a-a778-3ce97f1e3010 -2023-07-08 08:25:52.988868 2023-07-08 08:25:52.988883 mef 7087 R rec 805848ce-4db6-4a7e-98ce-cb5042c93d33 -2023-07-08 08:25:53.08962 2023-07-08 08:25:53.089636 mef 7088 R rec b8ea9e82-2c0c-415b-897b-ba5be2f23a35 -2023-07-08 08:25:53.198253 2023-07-08 08:25:53.19827 mef 7089 R rec c26f911d-e2dc-4499-81ca-f6a03f2ffaf1 -2023-07-08 08:25:53.307057 2023-07-08 08:25:53.307073 mef 7090 R rec 6b5b446b-8c8a-435a-a439-c50a468d902c -2023-07-08 08:25:53.405763 2023-07-08 08:25:53.405773 mef 7091 R rec 5dfce257-e271-46d7-9212-e4dab1566c30 -2023-07-08 08:25:53.507709 2023-07-08 08:25:53.507726 mef 7092 R rec 69bc7e56-3ea6-4f52-a910-d5afe952edd8 -2023-07-08 08:25:53.62299 2023-07-08 08:25:53.623006 mef 7093 R rec 0a294335-0a67-4390-93d7-8096750ef17f -2023-07-08 08:25:53.729415 2023-07-08 08:25:53.729432 mef 7094 R rec c9b334ab-8af6-4fb6-9fee-b706161ea9ca -2023-07-08 08:25:53.838018 2023-07-08 08:25:53.838038 mef 7095 R rec 8b1d1006-6c24-439e-9771-4cb800cb1567 -2023-07-08 08:25:53.942021 2023-07-08 08:25:53.942036 mef 7096 R rec 64c1cd9f-ea3f-4918-b685-15bdc8821f67 -2023-07-08 08:25:54.055124 2023-07-08 08:25:54.05514 mef 7097 R rec 9a2c3bcd-facd-4bfb-b10a-cdbfaf81cf44 -2023-07-08 08:25:54.178101 2023-07-08 08:25:54.178115 mef 7098 R rec 7e96de50-18b3-4b24-8111-ef724edee53b -2023-07-08 08:25:54.291109 2023-07-08 08:25:54.291123 mef 7099 R rec 0b4c11c2-b27b-4c20-890b-9bf5046b9871 -2023-07-08 08:25:54.417358 2023-07-08 08:25:54.417368 mef 7100 R rec eb6c3a4f-5cce-4d7c-b4d7-aeeddacecb72 -2023-07-08 08:25:54.546681 2023-07-08 08:25:54.546691 mef 7101 R rec 48c0824f-72c7-468d-8d3c-53ab5904c970 -2023-07-08 08:25:54.653167 2023-07-08 08:25:54.653181 mef 7102 R rec 116a22d1-5f90-426b-b36b-3812fb414210 -2023-07-08 08:25:54.780572 2023-07-08 08:25:54.780582 mef 7103 R rec 81fc0734-86fc-4153-a19d-bbe527bec806 -2023-07-08 08:25:54.886373 2023-07-08 08:25:54.886383 mef 7104 R rec a7c969f8-970f-43db-a2cf-f0000c57cf5c -2023-07-08 08:25:54.989238 2023-07-08 08:25:54.989252 mef 7105 R rec bbbcfb03-fc26-4442-8cd3-338541930c8a -2023-07-08 08:25:55.090722 2023-07-08 08:25:55.090732 mef 7106 R rec 734d660c-cef2-4e36-a00c-e95b37ab254b -2023-07-08 08:25:55.209643 2023-07-08 08:25:55.209657 mef 7107 R rec 948bdc23-9ac2-4ec2-826a-6205c00691a7 -2023-07-08 08:25:55.314085 2023-07-08 08:25:55.314101 mef 7108 R rec 93ae6b65-c0a4-468b-a063-24ae64264a17 -2023-07-08 08:25:55.418378 2023-07-08 08:25:55.41839 mef 7109 R rec 55b05bf9-2d2b-4cb3-82e4-c94f49ce81fb -2023-07-08 08:25:55.531088 2023-07-08 08:25:55.531099 mef 7110 R rec 247ed3a0-2ff1-4b33-8748-e0e6e6724456 -2023-07-08 08:25:55.642497 2023-07-08 08:25:55.642514 mef 7111 R rec 3f8582d1-3302-4f5e-9548-35c46787a2f8 -2023-07-08 08:25:55.765689 2023-07-08 08:25:55.7657 mef 7112 R rec 563fe2f1-b617-4999-9d16-ed0c2d2b6992 -2023-07-08 08:25:55.90126 2023-07-08 08:25:55.901272 mef 7113 R rec d7db1651-290d-4203-8b58-d201e12a4896 -2023-07-08 08:25:56.033625 2023-07-08 08:25:56.033636 mef 7114 R rec 9f15f698-7b2b-4e76-864e-88392a3a7976 -2023-07-08 08:25:56.157156 2023-07-08 08:25:56.157173 mef 7115 R rec f4725865-2595-4afe-8bcb-c264ca1cb092 -2023-07-08 08:25:56.278459 2023-07-08 08:25:56.278476 mef 7116 R rec 597686ef-3ab6-4402-8185-28d6e2383b5c -2023-07-08 08:25:56.397892 2023-07-08 08:25:56.397908 mef 7117 R rec ab7bc4c4-77fc-47eb-a470-e3f3f8449786 -2023-07-08 08:25:56.516111 2023-07-08 08:25:56.516126 mef 7118 R rec 60b6e73f-4893-404f-8b79-854a37c9b286 -2023-07-08 08:25:56.625715 2023-07-08 08:25:56.625726 mef 7119 R rec a7ba021e-82a6-4b8c-9eb3-d1130368a2f9 -2023-07-08 08:25:56.733202 2023-07-08 08:25:56.733212 mef 7120 R rec f9e5c4cf-1609-463e-ace5-6bf5e49c01bc -2023-07-08 08:25:56.859653 2023-07-08 08:25:56.859666 mef 7121 R rec 230d7923-98ba-4559-8394-0ce03e4e6a5b -2023-07-08 08:25:56.963456 2023-07-08 08:25:56.963469 mef 7122 R rec 7d171c77-ee9e-42ea-a676-df02ba22bda8 -2023-07-08 08:25:57.075132 2023-07-08 08:25:57.075151 mef 7123 R rec 36642c5d-732e-4bb2-8024-fdff88a948c9 -2023-07-08 08:25:57.179284 2023-07-08 08:25:57.179295 mef 7124 R rec 4a0edf98-5038-49c9-a73f-453ed5282f6f -2023-07-08 08:25:57.287247 2023-07-08 08:25:57.287263 mef 7125 R rec 8794220b-e0c3-4cf6-8462-ea8fea5dcdf9 -2023-07-08 08:25:57.38714 2023-07-08 08:25:57.387155 mef 7126 R rec 57b480ee-bd33-41b1-9c71-1bd2b644bdae -2023-07-08 08:25:57.496732 2023-07-08 08:25:57.496748 mef 7127 R rec cd9b5c86-76c9-4e7e-b1cd-cc43444d62a4 -2023-07-08 08:25:57.611486 2023-07-08 08:25:57.611918 mef 7128 R rec 10cbe075-d8cc-4b89-9952-474519c534fc -2023-07-08 08:25:57.720386 2023-07-08 08:25:57.720397 mef 7129 R rec bafe735a-5176-442e-9d53-e719676b21f0 -2023-07-08 08:25:57.831306 2023-07-08 08:25:57.831317 mef 7130 R rec 12ebe5fe-0886-42ec-9cf0-b1fc8c34a01a -2023-07-08 08:25:57.951266 2023-07-08 08:25:57.951285 mef 7131 R rec 00136cce-a818-4610-87f3-1e46a047fda0 -2023-07-08 08:25:58.05354 2023-07-08 08:25:58.053553 mef 7132 R rec a8c72a60-17a9-4b12-b9d9-d1e52e74b7bf -2023-07-08 08:25:58.163598 2023-07-08 08:25:58.163616 mef 7133 R rec 780fe578-2a05-4009-b6e8-bfce732c7a27 -2023-07-08 08:25:58.27092 2023-07-08 08:25:58.270936 mef 7134 R rec 4aad6979-056e-496f-a372-9ae3ac18ff2e -2023-07-08 08:25:58.499754 2023-07-08 08:25:58.499771 mef 7135 R rec 4c598da9-e036-4bdc-982a-b76aeb8d88b4 -2023-07-08 08:25:58.607654 2023-07-08 08:25:58.607669 mef 7136 R rec b1078798-250c-43d6-b5da-1878b4aa08a4 -2023-07-08 08:25:58.72718 2023-07-08 08:25:58.727192 mef 7137 R rec 9393f36d-f690-4919-b5ca-e4fb12680c91 -2023-07-08 08:25:58.832164 2023-07-08 08:25:58.832176 mef 7138 R rec 3192e7dc-46ba-44f0-9b02-68b443aa34aa -2023-07-08 08:25:58.935007 2023-07-08 08:25:58.935018 mef 7139 R rec cad4bfd4-da5e-4691-b3e8-beda20f7fe47 -2023-07-08 08:25:59.060393 2023-07-08 08:25:59.060406 mef 7140 R rec 1e680e1e-03ea-4f70-9b12-bf2994a0b25c -2023-07-08 08:25:59.169687 2023-07-08 08:25:59.169698 mef 7141 R rec ba6da06d-7554-4df6-8f76-c3310daeff02 -2023-07-08 08:25:59.29143 2023-07-08 08:25:59.291446 mef 7142 R rec 38d51f66-3660-41c7-8e6e-c4025e67420d -2023-07-08 08:25:59.400065 2023-07-08 08:25:59.400081 mef 7143 R rec bc0358ff-2dbc-4502-9523-35fd08d5a42f -2023-07-08 08:25:59.513721 2023-07-08 08:25:59.513731 mef 7144 R rec 84f5ec67-6153-4ae2-a404-f3bd34308521 -2023-07-08 08:25:59.628392 2023-07-08 08:25:59.628402 mef 7145 R rec 1c0d2108-41f8-4e6a-8be1-51cf1feca733 -2023-07-08 08:25:59.73123 2023-07-08 08:25:59.73124 mef 7146 R rec ae084a04-d8d2-47da-863a-78b6112f3c94 -2023-07-08 08:25:59.845195 2023-07-08 08:25:59.845211 mef 7147 R rec 4018cf08-b985-4247-b845-5a033a348b9a -2023-07-08 08:25:59.957267 2023-07-08 08:25:59.957287 mef 7148 R rec c32f414f-2e21-4fb9-86c4-33fd8b0e6601 -2023-07-08 08:26:00.1801 2023-07-08 08:26:00.180113 mef 7149 R rec 2267818f-c61e-4e8c-8aef-9e280be76fde -2023-07-08 08:26:00.437506 2023-07-08 08:26:00.43752 mef 7150 R rec 9594a687-3ebd-4cc4-a27e-f81b1df2dcff -2023-07-08 08:26:00.544467 2023-07-08 08:26:00.544478 mef 7151 R rec f1d28eda-6f30-426c-9ade-d3f0414681b1 -2023-07-08 08:26:00.659706 2023-07-08 08:26:00.659717 mef 7152 R rec ed232545-76ba-45a8-9d1e-958194e851e7 -2023-07-08 08:26:00.848044 2023-07-08 08:26:00.84805 mef 7153 R rec dfc7f01d-2b77-46b0-a8ce-dd3c6710f16e -2023-07-08 08:26:01.075346 2023-07-08 08:26:01.075357 mef 7154 R rec e55c87eb-80e2-4de2-8716-c5f31476ba42 -2023-07-08 08:26:01.196185 2023-07-08 08:26:01.196196 mef 7155 R rec 8b64fe79-5181-463a-a7d2-11a5bbf92600 -2023-07-08 08:26:01.334568 2023-07-08 08:26:01.334581 mef 7156 R rec 85a4d9f0-3e64-42e3-9dd7-e69e62b62619 -2023-07-08 08:26:01.431801 2023-07-08 08:26:01.431811 mef 7157 R rec 21a1a5e5-0b6a-4cde-ad9d-89858dd3fab2 -2023-07-08 08:26:01.563745 2023-07-08 08:26:01.563756 mef 7158 R rec 16298615-8e5d-4a8f-8d21-1b42f24b7f84 -2023-07-08 08:26:01.68501 2023-07-08 08:26:01.685026 mef 7159 R rec 13823237-1946-499f-b224-268837518772 -2023-07-08 08:26:01.83886 2023-07-08 08:26:01.83887 mef 7160 R rec 50cf8222-1441-470f-9f2e-0d939cd1a6ce -2023-07-08 08:26:01.972982 2023-07-08 08:26:01.972997 mef 7161 R rec c8e9b264-197c-438e-a8f2-3ca74b4f5c5c -2023-07-08 08:26:02.101857 2023-07-08 08:26:02.101873 mef 7162 R rec 1db8a5e3-d2fb-47bf-98ed-65b781829def -2023-07-08 08:26:02.22734 2023-07-08 08:26:02.227352 mef 7163 R rec c228ff4f-0b3b-43d3-bc09-edf7f6b16edc -2023-07-08 08:26:02.507398 2023-07-08 08:26:02.507408 mef 7164 R rec e22cc054-9a1b-4111-b655-2a2b5f4f8784 -2023-07-08 08:26:02.627014 2023-07-08 08:26:02.627025 mef 7165 R rec 36b9d2f3-abcc-4f78-8364-e59d16504d3c -2023-07-08 08:26:02.744819 2023-07-08 08:26:02.744838 mef 7166 R rec be497145-a046-46c4-9621-3c28d8713620 -2023-07-08 08:26:02.860182 2023-07-08 08:26:02.860197 mef 7167 R rec 67aa23db-ebfb-4fba-847a-6cdef28c394c -2023-07-08 08:26:02.970112 2023-07-08 08:26:02.970121 mef 7168 R rec 393ea0c9-5376-4b3d-bc5b-7beeaa4f134a -2023-07-08 08:26:03.086362 2023-07-08 08:26:03.086374 mef 7169 R rec 64484273-3d76-4eac-a9ec-293afe25b67a -2023-07-08 08:26:03.199592 2023-07-08 08:26:03.199605 mef 7170 R rec 228e7a68-3b48-4f51-8602-f11e2d59fb6e -2023-07-08 08:26:03.310095 2023-07-08 08:26:03.310107 mef 7171 R rec 9ee65005-edae-42e9-97c0-d7905bfc5fc6 -2023-07-08 08:26:03.421846 2023-07-08 08:26:03.42186 mef 7172 R rec 7dec7858-b965-4d73-a0ce-014cb018b7a1 -2023-07-08 08:26:03.526625 2023-07-08 08:26:03.526649 mef 7173 R rec 44a3534e-a2f2-47c4-bf1a-2a811bf05565 -2023-07-08 08:26:03.640209 2023-07-08 08:26:03.640219 mef 7174 R rec ead80259-017d-4142-bf84-8cc00e00f44c -2023-07-08 08:26:03.752377 2023-07-08 08:26:03.752391 mef 7175 R rec 0fc9884e-43db-4fb4-a4b4-23de3230d0f2 -2023-07-08 08:26:03.864514 2023-07-08 08:26:03.86453 mef 7176 R rec 89ffa426-94ac-4bff-a639-6abc49ff8db4 -2023-07-08 08:26:03.996523 2023-07-08 08:26:03.996537 mef 7177 R rec 220ac2b3-7d01-4b0b-968e-b4809274a015 -2023-07-08 08:26:04.113237 2023-07-08 08:26:04.113247 mef 7178 R rec 6988ac63-23fd-4f91-add4-2ebc2936043e -2023-07-08 08:26:04.229226 2023-07-08 08:26:04.229237 mef 7179 R rec 6f923e59-9bf1-47c6-99f7-587a9ef03816 -2023-07-08 08:26:04.336419 2023-07-08 08:26:04.336434 mef 7180 R rec c1be7ab6-0cbe-4929-a621-5b7e76ce6719 -2023-07-08 08:26:04.443233 2023-07-08 08:26:04.443242 mef 7181 R rec 921c8994-9932-46a6-8c65-e95beb563251 -2023-07-08 08:26:04.569786 2023-07-08 08:26:04.569798 mef 7182 R rec 832a2526-cf59-4ddd-a523-7f051cf1ba27 -2023-07-08 08:26:04.696532 2023-07-08 08:26:04.696549 mef 7183 R rec 71dc1ec6-46fb-4237-b19b-578473f7e1c1 -2023-07-08 08:26:04.82418 2023-07-08 08:26:04.82419 mef 7184 R rec f5e1ff8f-3a45-4706-90f6-d90ecadd95aa -2023-07-08 08:26:04.933459 2023-07-08 08:26:04.933471 mef 7185 R rec a84c6d3f-749b-4f66-8183-f043d4907342 -2023-07-08 08:26:05.05916 2023-07-08 08:26:05.05917 mef 7186 R rec dd361f5e-da47-4e9a-b437-93e2c07c5e9a -2023-07-08 08:26:05.181641 2023-07-08 08:26:05.181654 mef 7187 R rec 85218012-0aa6-4dba-bedd-920729b5e91d -2023-07-08 08:26:05.305512 2023-07-08 08:26:05.305524 mef 7188 R rec d40849ef-64a6-4e48-91c5-311a36ad9bd0 -2023-07-08 08:26:05.564903 2023-07-08 08:26:05.564917 mef 7189 R rec e1bf4d2c-03e6-482f-aa6c-fdf5c2db71a5 -2023-07-08 08:26:05.703332 2023-07-08 08:26:05.703343 mef 7190 R rec fecbdea3-1991-4092-957b-3e449f996677 -2023-07-08 08:26:05.850055 2023-07-08 08:26:05.850066 mef 7191 R rec 5542460b-75ae-4a3c-ae0a-28c209b5bf95 -2023-07-08 08:26:05.982533 2023-07-08 08:26:05.982544 mef 7192 R rec 1ba2f1cd-c1c5-40bf-8dfc-36518de2289b -2023-07-08 08:26:06.122578 2023-07-08 08:26:06.122588 mef 7193 R rec b39345b5-4385-44d9-af5e-12e90cef6ec9 -2023-07-08 08:26:06.249573 2023-07-08 08:26:06.249592 mef 7194 R rec ae5a207c-9162-409a-bf5e-6b9f57ba97e1 -2023-07-08 08:26:06.378432 2023-07-08 08:26:06.378452 mef 7195 R rec 30cc4d57-b161-412b-99b9-52d6e9829c16 -2023-07-08 08:26:06.504686 2023-07-08 08:26:06.504697 mef 7196 R rec cfc86653-37ff-4d76-b759-ecb0abd63de3 -2023-07-08 08:26:06.781533 2023-07-08 08:26:06.781547 mef 7197 R rec 49698ffb-3225-455a-ab8c-0c105b4c3c2a -2023-07-08 08:26:06.894078 2023-07-08 08:26:06.894094 mef 7198 R rec e13032e0-6249-4ff0-ad80-90967f1b020d -2023-07-08 08:26:07.071942 2023-07-08 08:26:07.071947 mef 7199 R rec 3792cbaf-2f55-491b-9328-1beda3737b6e -2023-07-08 08:26:07.144109 2023-07-08 08:26:07.144115 mef 7200 R rec 22963041-de67-4551-a55f-e39947b49240 -2023-07-08 08:26:07.221159 2023-07-08 08:26:07.221173 mef 7201 R rec 80833b2c-fdc1-49a4-ae49-a258b656d0df -2023-07-08 08:26:07.337956 2023-07-08 08:26:07.33797 mef 7202 R rec 5d0108ec-e981-490d-b8b0-fdb9df65a734 -2023-07-08 08:26:07.447481 2023-07-08 08:26:07.447493 mef 7203 R rec db460703-8735-4eb1-acc9-66a4016eca9d -2023-07-08 08:26:07.567643 2023-07-08 08:26:07.567665 mef 7204 R rec 622d8da5-9071-467b-b7a8-9e9f3d9d7eae -2023-07-08 08:26:07.669249 2023-07-08 08:26:07.669267 mef 7205 R rec 0ccb1fe9-d0ef-4fab-a0d7-c9d8efceaaa1 -2023-07-08 08:26:07.77056 2023-07-08 08:26:07.770572 mef 7206 R rec ee726e76-8b59-4b70-b266-22cb43f3e4fa -2023-07-08 08:26:07.881442 2023-07-08 08:26:07.881455 mef 7207 R rec 0523d9b8-9f7d-4e2d-b93a-c1b1894d367f -2023-07-08 08:26:07.997078 2023-07-08 08:26:07.997087 mef 7208 R rec a40081fc-6d21-4216-bd12-fc50bb6de08a -2023-07-08 08:26:08.112701 2023-07-08 08:26:08.112718 mef 7209 R rec 5de8dd6f-d341-4c7b-a926-77ec2e6f188e -2023-07-08 08:26:08.353033 2023-07-08 08:26:08.353046 mef 7210 R rec 7cb50677-4590-449b-9f69-700978625058 -2023-07-08 08:26:08.464906 2023-07-08 08:26:08.464925 mef 7211 R rec 1db33c10-53a5-4811-816f-fc9dc942c62d -2023-07-08 08:26:08.571634 2023-07-08 08:26:08.571653 mef 7212 R rec 656c1530-94ba-4cbf-b185-e548519fbeab -2023-07-08 08:26:08.698019 2023-07-08 08:26:08.698035 mef 7213 R rec 712e66f2-35b0-431d-b5f1-faead0a6ca13 -2023-07-08 08:26:08.804747 2023-07-08 08:26:08.804757 mef 7214 R rec 0d2a6462-e398-4e35-b560-5dd270e10a7f -2023-07-08 08:26:08.913726 2023-07-08 08:26:08.913742 mef 7215 R rec 67aa03ea-19a6-4c19-89cf-45e34568b49f -2023-07-08 08:26:09.025037 2023-07-08 08:26:09.025047 mef 7216 R rec 77eceeae-0d97-4394-8a42-df845f868d45 -2023-07-08 08:26:09.134926 2023-07-08 08:26:09.134938 mef 7217 R rec 88d294de-752b-4c09-b1a5-f7ee0d58d5dc -2023-07-08 08:26:09.25432 2023-07-08 08:26:09.254339 mef 7218 R rec dab5a3b5-f7bf-4cba-8992-501af207e902 -2023-07-08 08:26:09.372038 2023-07-08 08:26:09.372049 mef 7219 R rec 2f144047-41af-4088-b57d-9c14d88ed9c5 -2023-07-08 08:26:09.485303 2023-07-08 08:26:09.485313 mef 7220 R rec 3d531684-3a48-4510-9d8f-56f6c1a7df5e -2023-07-08 08:26:09.59225 2023-07-08 08:26:09.592265 mef 7221 R rec d83475e7-e0be-4d5e-8525-05077ed5111c -2023-07-08 08:26:09.703779 2023-07-08 08:26:09.703794 mef 7222 R rec 770fe1a9-4340-4acc-9408-dff131e03900 -2023-07-08 08:26:09.821678 2023-07-08 08:26:09.821694 mef 7223 R rec 556ba24a-f7f7-46d4-9d88-8de0fb75e3ec -2023-07-08 08:26:09.925417 2023-07-08 08:26:09.925427 mef 7224 R rec 823408a0-1077-4f0f-828e-a790457be527 -2023-07-08 08:26:10.025812 2023-07-08 08:26:10.025829 mef 7225 R rec 45553fe3-796d-4c89-a850-24a5817430be -2023-07-08 08:26:10.135373 2023-07-08 08:26:10.135384 mef 7226 R rec 2be6004f-1b27-4df0-9d39-ee11a6badfe6 -2023-07-08 08:26:10.26062 2023-07-08 08:26:10.260635 mef 7227 R rec 9b5ae977-4ded-4e09-820b-facaa5383816 -2023-07-08 08:26:10.369042 2023-07-08 08:26:10.369058 mef 7228 R rec fdee0b4a-1ed1-4d7a-9b66-db6c3d212d98 -2023-07-08 08:26:10.473592 2023-07-08 08:26:10.473602 mef 7229 R rec 645ec336-f4ed-4189-9ce7-b2dc32a96b62 -2023-07-08 08:26:10.595702 2023-07-08 08:26:10.595719 mef 7230 R rec 86276fb0-acbb-41cc-b336-74d8dbb48743 -2023-07-08 08:26:10.717486 2023-07-08 08:26:10.717505 mef 7231 R rec b1183417-47ea-42fc-9c46-928d7ab5e899 -2023-07-08 08:26:10.820572 2023-07-08 08:26:10.820582 mef 7232 R rec bf840fc0-1ca1-4a8c-829e-28d609b62a9b -2023-07-08 08:26:10.935997 2023-07-08 08:26:10.936016 mef 7233 R rec 683326a3-1c6a-446e-a75c-d5c999f96321 -2023-07-08 08:26:11.053445 2023-07-08 08:26:11.05346 mef 7234 R rec a3923049-493b-4a1b-9b45-4a3ed70d37a5 -2023-07-08 08:26:11.15673 2023-07-08 08:26:11.156748 mef 7235 R rec 4432f178-27be-4aa8-97ec-183f0f330138 -2023-07-08 08:26:11.270786 2023-07-08 08:26:11.270797 mef 7236 R rec d2d2b420-5193-4210-96bb-2903687cc270 -2023-07-08 08:26:11.396029 2023-07-08 08:26:11.396099 mef 7237 R rec 0f18c65d-822e-40d4-af40-4ed6763ac4cb -2023-07-08 08:26:11.525197 2023-07-08 08:26:11.525211 mef 7238 R rec 831ac025-9fc9-482b-8c2b-870a6b59a4af -2023-07-08 08:26:11.636249 2023-07-08 08:26:11.63626 mef 7239 R rec 57d605ac-4c02-4c63-b298-ad16260bc0ee -2023-07-08 08:26:11.754502 2023-07-08 08:26:11.754514 mef 7240 R rec c5f42ab9-6286-4d90-8400-881e7651fc9a -2023-07-08 08:26:11.875887 2023-07-08 08:26:11.875898 mef 7241 R rec e65ccb92-4075-4f35-9b68-6e65c376aec0 -2023-07-08 08:26:12.002987 2023-07-08 08:26:12.003 mef 7242 R rec 357af45b-06c1-452e-bb80-f9235b37928a -2023-07-08 08:26:12.110489 2023-07-08 08:26:12.110499 mef 7243 R rec 5981fcb9-b716-42d7-9cf7-3c83fcf7d992 -2023-07-08 08:26:12.250077 2023-07-08 08:26:12.250089 mef 7244 R rec 6845d58f-50b3-4d8b-a141-6ba7e743427e -2023-07-08 08:26:12.372908 2023-07-08 08:26:12.37292 mef 7245 R rec 3b206f87-63f3-48f8-8e2b-56833b1b7da9 -2023-07-08 08:26:12.478979 2023-07-08 08:26:12.478995 mef 7246 R rec 479a0a24-70ce-4f7b-b45c-09f1fcccb098 -2023-07-08 08:26:12.605731 2023-07-08 08:26:12.605742 mef 7247 R rec da206540-909f-41cf-a0df-5ebf2cb439b2 -2023-07-08 08:26:12.716066 2023-07-08 08:26:12.716077 mef 7248 R rec 4c4dfec1-c70a-4ff7-b891-bfcf9df96c95 -2023-07-08 08:26:12.823953 2023-07-08 08:26:12.823972 mef 7249 R rec ebe13c7d-78a1-4a61-9b5f-59a7aaca26d8 -2023-07-08 08:26:12.936673 2023-07-08 08:26:12.936683 mef 7250 R rec d849bb68-8853-4729-b978-6b7c92df95a7 -2023-07-08 08:26:13.040064 2023-07-08 08:26:13.040079 mef 7251 R rec 54cf1c6b-405b-4805-915b-4b110ac23761 -2023-07-08 08:26:13.16591 2023-07-08 08:26:13.165916 mef 7252 R rec 63d171ab-6c39-42c2-b140-249087f8cf29 -2023-07-08 08:26:13.296082 2023-07-08 08:26:13.296103 mef 7253 R rec 6b90862e-0bae-4a64-b70f-a6232d131350 -2023-07-08 08:26:13.400467 2023-07-08 08:26:13.400477 mef 7254 R rec c9e3c304-4612-4c25-95dc-07e0cfaeb52d -2023-07-08 08:26:13.520067 2023-07-08 08:26:13.520077 mef 7255 R rec c71f538f-c5e4-4d80-9840-304a03388b2b -2023-07-08 08:26:13.66838 2023-07-08 08:26:13.668391 mef 7256 R rec 7b176c0f-8c99-4fd1-a2a4-1a95b8f7cedc -2023-07-08 08:26:13.799584 2023-07-08 08:26:13.799597 mef 7257 R rec 85a97169-74e6-4dd7-abdc-76f2a3f3307e -2023-07-08 08:26:13.929254 2023-07-08 08:26:13.929265 mef 7258 R rec 8a05df2b-19ae-4408-8b8c-32c939579ffb -2023-07-08 08:26:14.038319 2023-07-08 08:26:14.038336 mef 7259 R rec 0c4478ef-d2e9-4820-a1f7-35e563aab15f -2023-07-08 08:26:14.159126 2023-07-08 08:26:14.159144 mef 7260 R rec 4e546cfc-98f5-415a-a1c6-11208ffe8d75 -2023-07-08 08:26:14.270802 2023-07-08 08:26:14.270817 mef 7261 R rec e0a78632-b029-4745-88d9-bc29c51b7803 -2023-07-08 08:26:14.386594 2023-07-08 08:26:14.386609 mef 7262 R rec 37356cf6-d037-4154-a556-57c43f441cd7 -2023-07-08 08:26:14.497284 2023-07-08 08:26:14.497289 mef 7263 R rec 73186298-ee65-4bc3-8ce0-769da15f5c1c -2023-07-08 08:26:14.597421 2023-07-08 08:26:14.597435 mef 7264 R rec e57fdc96-edab-41b2-8b18-b896a131f652 -2023-07-08 08:26:14.715158 2023-07-08 08:26:14.71517 mef 7265 R rec 3d97427e-0bb1-410a-a2b7-f2ed27431628 -2023-07-08 08:26:14.81365 2023-07-08 08:26:14.813664 mef 7266 R rec af6e7d5f-f887-43d7-8d5a-66615cd3c848 -2023-07-08 08:26:14.918835 2023-07-08 08:26:14.918845 mef 7267 R rec aac7bdb4-9092-4a68-a77e-0059cf02c946 -2023-07-08 08:26:15.044534 2023-07-08 08:26:15.044552 mef 7268 R rec 43b6254f-b532-4fba-8893-1cfff827e50f -2023-07-08 08:26:15.273476 2023-07-08 08:26:15.273492 mef 7269 R rec d7f7e3c1-9808-4808-a6ff-8b6cce6226ae -2023-07-08 08:26:15.394915 2023-07-08 08:26:15.394925 mef 7270 R rec d2174f2f-731d-4e26-ac28-cbfe3e6c724a -2023-07-08 08:26:15.500428 2023-07-08 08:26:15.500443 mef 7271 R rec 30c5f9a0-041d-4373-9c2c-550f2cfbf2d8 -2023-07-08 08:26:15.590925 2023-07-08 08:26:15.590935 mef 7272 R rec dcc204b1-69b3-43da-83fe-e98742bc2e25 -2023-07-08 08:26:15.673376 2023-07-08 08:26:15.673388 mef 7273 R rec c1d1d33e-b27c-40a9-8ef5-eee646c74ab2 -2023-07-08 08:26:15.77859 2023-07-08 08:26:15.7786 mef 7274 R rec 841a738a-71b6-4681-8719-27d9891f2b2b -2023-07-08 08:26:15.894567 2023-07-08 08:26:15.894581 mef 7275 R rec 4382a7cd-e817-495b-ad36-718e784cfddf -2023-07-08 08:26:16.003791 2023-07-08 08:26:16.003804 mef 7276 R rec 71c41617-2119-40dc-9f1f-3722a14bd310 -2023-07-08 08:26:16.121007 2023-07-08 08:26:16.121023 mef 7277 R rec 34ec60ef-b41b-4638-a288-98d27d0c0092 -2023-07-08 08:26:16.24746 2023-07-08 08:26:16.247477 mef 7278 R rec 9e87e087-1572-4a95-ad52-38b1a8e905dc -2023-07-08 08:26:16.356908 2023-07-08 08:26:16.356927 mef 7279 R rec 1f1e5ada-0129-402e-becd-b1057744e275 -2023-07-08 08:26:16.459036 2023-07-08 08:26:16.459049 mef 7280 R rec cbc5d756-8623-456c-a643-c4e58cadf79a -2023-07-08 08:26:16.566205 2023-07-08 08:26:16.56622 mef 7281 R rec e1315d55-ba23-4aa4-a19b-79d1a2c5e777 -2023-07-08 08:26:16.693666 2023-07-08 08:26:16.69368 mef 7282 R rec 5b6185a4-b5e3-436c-8f7f-c7ca6c6436df -2023-07-08 08:26:16.804309 2023-07-08 08:26:16.804325 mef 7283 R rec 00586f84-b179-41de-85ea-c1042b79f6d9 -2023-07-08 08:26:17.048692 2023-07-08 08:26:17.048707 mef 7284 R rec abd858d5-3aad-4b10-b7d2-282b4b7f0107 -2023-07-08 08:26:17.15876 2023-07-08 08:26:17.158778 mef 7285 R rec 34c6595b-b5c7-4501-b027-b8fbee5bb4af -2023-07-08 08:26:17.284066 2023-07-08 08:26:17.284076 mef 7286 R rec 944d5f61-0bd7-4f73-acab-08509b6a4aae -2023-07-08 08:26:17.390781 2023-07-08 08:26:17.390797 mef 7287 R rec 1ddc85ec-6c12-42b0-9b38-389543793541 -2023-07-08 08:26:17.505669 2023-07-08 08:26:17.505684 mef 7288 R rec fd253b51-00e2-4263-b61d-6a74793bab2f -2023-07-08 08:26:17.615981 2023-07-08 08:26:17.615992 mef 7289 R rec 59ed6cf0-cafd-4470-94ab-80374bedfb69 -2023-07-08 08:26:17.73051 2023-07-08 08:26:17.730521 mef 7290 R rec a747669e-291d-4a79-a572-730db5266dcb -2023-07-08 08:26:17.841175 2023-07-08 08:26:17.841193 mef 7291 R rec fe6c0a70-af7d-4fa2-92fd-ff01649e1310 -2023-07-08 08:26:17.959328 2023-07-08 08:26:17.959344 mef 7292 R rec 8e683336-33cc-48bc-af46-17693783fc3a -2023-07-08 08:26:18.068469 2023-07-08 08:26:18.068485 mef 7293 R rec 5413ecfb-30ef-4ad5-a4b1-9721037c446b -2023-07-08 08:26:18.184711 2023-07-08 08:26:18.184726 mef 7294 R rec ea7289c6-5bcd-42f8-b40a-faf72cf782f8 -2023-07-08 08:26:18.297942 2023-07-08 08:26:18.297954 mef 7295 R rec 5ff9163f-352f-46de-aae0-37532b429918 -2023-07-08 08:26:18.406574 2023-07-08 08:26:18.406584 mef 7296 R rec f13c645f-ae21-43a6-9b57-18b3aa9cdedb -2023-07-08 08:26:18.497555 2023-07-08 08:26:18.497567 mef 7297 R rec 6e31013d-287c-406c-9a90-cc3d651a72ec -2023-07-08 08:26:18.592973 2023-07-08 08:26:18.592984 mef 7298 R rec 6d90608a-348c-4649-a472-8648500188cf -2023-07-08 08:26:18.696168 2023-07-08 08:26:18.696184 mef 7299 R rec e3fb8669-8887-43a9-bf55-b4abaaefdbba -2023-07-08 08:26:18.809727 2023-07-08 08:26:18.809741 mef 7300 R rec ef3a6e58-926b-4e72-bae4-540e30d93fed -2023-07-08 08:26:18.920237 2023-07-08 08:26:18.920247 mef 7301 R rec ddd0c709-1569-4096-bf63-9e735479dc85 -2023-07-08 08:26:19.033504 2023-07-08 08:26:19.03352 mef 7302 R rec 456dfa9e-6200-461a-9739-db964a87e7b3 -2023-07-08 08:26:19.147726 2023-07-08 08:26:19.147742 mef 7303 R rec c08beb6f-b2e8-4ab7-9277-91804d8654a4 -2023-07-08 08:26:19.260962 2023-07-08 08:26:19.260978 mef 7304 R rec fa5ee531-7247-42a9-aced-6564f50c8a7d -2023-07-08 08:26:19.365427 2023-07-08 08:26:19.365442 mef 7305 R rec dc10f8a7-7244-4ad3-a9dc-8f0db687516a -2023-07-08 08:26:19.486877 2023-07-08 08:26:19.486883 mef 7306 R rec 004f771e-8f2a-4ec0-b489-c40fbb685a20 -2023-07-08 08:26:19.607554 2023-07-08 08:26:19.607567 mef 7307 R rec 09da0fae-8a59-4c1b-8cb0-580f3fb616f9 -2023-07-08 08:26:19.721147 2023-07-08 08:26:19.721163 mef 7308 R rec 37987cd4-69bf-4073-96eb-589ac56cf9dd -2023-07-08 08:26:19.840118 2023-07-08 08:26:19.840134 mef 7309 R rec ab460e88-a0e7-48ce-95e6-c39f4acb1b94 -2023-07-08 08:26:20.094913 2023-07-08 08:26:20.094929 mef 7310 R rec 7acce601-e866-4133-8a5e-ce48ff77e67e -2023-07-08 08:26:20.207682 2023-07-08 08:26:20.207692 mef 7311 R rec 14552c18-e6d6-4ade-bbcf-adf5d35ac6b5 -2023-07-08 08:26:20.315929 2023-07-08 08:26:20.31595 mef 7312 R rec 4a014844-1c96-41e1-ad80-b13aab372ccd -2023-07-08 08:26:20.434205 2023-07-08 08:26:20.434221 mef 7313 R rec 6e172a66-0389-4771-ab25-70288df9c189 -2023-07-08 08:26:20.552039 2023-07-08 08:26:20.552049 mef 7314 R rec 036a3eae-661d-4ab4-af27-32f584a3e60d -2023-07-08 08:26:20.659039 2023-07-08 08:26:20.659049 mef 7315 R rec efa32960-26f2-49a0-bced-17e9f9e8f41e -2023-07-08 08:26:20.769905 2023-07-08 08:26:20.769923 mef 7316 R rec 73833d8b-1eec-4684-98ae-118af1500e4f -2023-07-08 08:26:20.900477 2023-07-08 08:26:20.900493 mef 7317 R rec 5a34b01d-0bc6-4175-b19c-5c789b69d2a7 -2023-07-08 08:26:21.036893 2023-07-08 08:26:21.036906 mef 7318 R rec 907024cd-141f-4cf2-9b4e-4fc693e140af -2023-07-08 08:26:21.148874 2023-07-08 08:26:21.148886 mef 7319 R rec 3d3d62d7-a5d2-48e6-b357-d4afef50cfad -2023-07-08 08:26:21.260484 2023-07-08 08:26:21.260496 mef 7320 R rec d78d00e1-f763-4a83-a540-4b9cdbf496df -2023-07-08 08:26:21.373077 2023-07-08 08:26:21.373098 mef 7321 R rec d150b754-129f-4c0f-a0bd-fe64684bd373 -2023-07-08 08:26:21.489185 2023-07-08 08:26:21.489196 mef 7322 R rec ba9b066a-1620-41d3-b608-a899c52301c9 -2023-07-08 08:26:21.603786 2023-07-08 08:26:21.603802 mef 7323 R rec 824bdbeb-123d-4236-957d-5eb11dedbac6 -2023-07-08 08:26:21.72439 2023-07-08 08:26:21.724405 mef 7324 R rec 3a869124-0d41-4c55-bde1-57a9cbe127a2 -2023-07-08 08:26:21.855164 2023-07-08 08:26:21.855174 mef 7325 R rec 719b5fb3-6745-42d1-bfb9-57d7226cd565 -2023-07-08 08:26:21.983555 2023-07-08 08:26:21.983571 mef 7326 R rec 14a51342-7191-4a06-9b28-36453603be80 -2023-07-08 08:26:22.102713 2023-07-08 08:26:22.102724 mef 7327 R rec fc47b030-2baf-4f64-8d4a-4c6d3171c02a -2023-07-08 08:26:22.21286 2023-07-08 08:26:22.212877 mef 7328 R rec 1d99b61c-dc9b-440d-932c-988dd73a8438 -2023-07-08 08:26:22.337512 2023-07-08 08:26:22.337527 mef 7329 R rec 3c907eb9-06b3-4641-8a2a-94fe562c322a -2023-07-08 08:26:22.45397 2023-07-08 08:26:22.453982 mef 7330 R rec bb50ecfc-7a56-4033-8703-42af04816856 -2023-07-08 08:26:22.565071 2023-07-08 08:26:22.565081 mef 7331 R rec 784f7fdd-62e5-4331-b9e0-9301479b79f4 -2023-07-08 08:26:22.672623 2023-07-08 08:26:22.672633 mef 7332 R rec b8070a70-cb9b-40bc-acaf-31a364cbfae4 -2023-07-08 08:26:22.78863 2023-07-08 08:26:22.788645 mef 7333 R rec 1af80fa5-f807-4b8d-8d99-c50904ff29be -2023-07-08 08:26:22.933852 2023-07-08 08:26:22.933866 mef 7334 R rec 1971eb7c-8d29-4390-a4d7-29ac62bc9e15 -2023-07-08 08:26:23.157918 2023-07-08 08:26:23.157928 mef 7335 R rec ea47c88f-8531-4e35-84a0-51d72207b59a -2023-07-08 08:26:23.270127 2023-07-08 08:26:23.270138 mef 7336 R rec d5e3c49c-2938-424f-b703-26021a2d7ff1 -2023-07-08 08:26:23.363651 2023-07-08 08:26:23.363671 mef 7337 R rec 13357ed9-587f-45a6-97b8-fbaa25aab9c8 -2023-07-08 08:26:23.469458 2023-07-08 08:26:23.469467 mef 7338 R rec 32c6cf4c-cde6-4e55-be48-282694bf8209 -2023-07-08 08:26:23.577644 2023-07-08 08:26:23.577657 mef 7339 R rec f0a5aa71-a50f-4ce4-bccb-415d3ac11ea5 -2023-07-08 08:26:23.686815 2023-07-08 08:26:23.68683 mef 7340 R rec 309ef0b0-1ea6-4de8-bb84-e2f853cf3849 -2023-07-08 08:26:23.799339 2023-07-08 08:26:23.799354 mef 7341 R rec f3ec5b02-2c43-4add-b641-1ef0ae5ffd7a -2023-07-08 08:26:23.90782 2023-07-08 08:26:23.907829 mef 7342 R rec c2e4ec09-e030-429f-b725-900fc7e5723a -2023-07-08 08:26:24.118421 2023-07-08 08:26:24.118437 mef 7343 R rec fba6d9ba-cc7f-4791-b1b4-37740300f51c -2023-07-08 08:26:24.244521 2023-07-08 08:26:24.244543 mef 7344 R rec 8aa8cb16-d629-4ab2-a483-7ccd13e0333e -2023-07-08 08:26:24.350338 2023-07-08 08:26:24.350359 mef 7345 R rec 6ef6c9c1-5550-4c09-9abf-7161f1b32212 -2023-07-08 08:26:24.454676 2023-07-08 08:26:24.454692 mef 7346 R rec 40ee407b-3bac-498c-959c-d78ea8d67b7f -2023-07-08 08:26:24.798521 2023-07-08 08:26:24.798531 mef 7347 R rec 6b8d0e99-3791-4bbf-b1a3-803d27dab5d6 -2023-07-08 08:26:24.912307 2023-07-08 08:26:24.912333 mef 7348 R rec 64c578a6-618c-49f7-bd36-82c4dd736784 -2023-07-08 08:26:25.021597 2023-07-08 08:26:25.021607 mef 7349 R rec babb19ca-e6e7-4793-96ff-fc22a90c65c6 -2023-07-08 08:26:25.134692 2023-07-08 08:26:25.134703 mef 7350 R rec a260cf10-b553-48f8-9733-66df08130fee -2023-07-08 08:26:25.250253 2023-07-08 08:26:25.250265 mef 7351 R rec 52f6fc63-fee5-4d9a-8e76-cecc25604aa8 -2023-07-08 08:26:25.35134 2023-07-08 08:26:25.351356 mef 7352 R rec a595801e-a43b-4842-a37d-85c9efc8f77c -2023-07-08 08:26:25.457422 2023-07-08 08:26:25.457437 mef 7353 R rec 8152673e-4f73-477f-9323-e5584116cd4f -2023-07-08 08:26:25.572347 2023-07-08 08:26:25.572356 mef 7354 R rec 55234ee7-c9f0-433a-a4f7-14fcc229d1cc -2023-07-08 08:26:25.692529 2023-07-08 08:26:25.692539 mef 7355 R rec 504b5150-43da-41d7-9c61-d79b873da915 -2023-07-08 08:26:25.800117 2023-07-08 08:26:25.800128 mef 7356 R rec 7494546b-f901-48fc-8b2e-603e03473815 -2023-07-08 08:26:25.911902 2023-07-08 08:26:25.911912 mef 7357 R rec d75939d0-9ce7-4949-902d-e376688ea868 -2023-07-08 08:26:26.020324 2023-07-08 08:26:26.020339 mef 7358 R rec 93d7d6dd-dff4-4b74-8ae1-a2739dc11e1b -2023-07-08 08:26:26.15064 2023-07-08 08:26:26.150656 mef 7359 R rec a9e201b2-e6be-4496-9021-484df99b24f6 -2023-07-08 08:26:26.259532 2023-07-08 08:26:26.259551 mef 7360 R rec b4ebf5b5-8ed9-4e40-a060-b3035ba6ee73 -2023-07-08 08:26:26.357227 2023-07-08 08:26:26.357239 mef 7361 R rec daa0622c-02b5-494a-9737-fc61676fe7f0 -2023-07-08 08:26:26.471745 2023-07-08 08:26:26.47176 mef 7362 R rec 0ecb96fa-911c-4e1e-a837-13a8289463fb -2023-07-08 08:26:26.838716 2023-07-08 08:26:26.838732 mef 7363 R rec 65643b86-c2c8-4fa5-a0f6-e823262506d4 -2023-07-08 08:26:27.086583 2023-07-08 08:26:27.086593 mef 7364 R rec 4a04bd0f-2a67-4d7f-b107-b7236d4018d2 -2023-07-08 08:26:27.201713 2023-07-08 08:26:27.201729 mef 7365 R rec 4dc5e8fb-b861-470f-b646-668384fbef23 -2023-07-08 08:26:27.3217 2023-07-08 08:26:27.321714 mef 7366 R rec d7dceb13-8b70-4634-8da3-68a5d570e702 -2023-07-08 08:26:29.430425 2023-07-08 08:26:29.430431 comef 7367 R rec 62df536f-1004-4705-84cf-b763c2aa1fa2 -2023-07-08 08:26:29.525464 2023-07-08 08:26:29.52547 comef 7368 R rec d048f32e-549d-4bf3-bfb8-71b1c70f3f9f -2023-07-08 08:26:29.583296 2023-07-08 08:26:29.583302 comef 7369 R rec fb444426-9c90-47d6-a887-0d767106aa34 -2023-07-08 08:26:29.645127 2023-07-08 08:26:29.645139 comef 7370 R rec 57df6248-7e33-4a01-90ba-f3e14ddd55b9 -2023-07-08 08:26:29.717771 2023-07-08 08:26:29.717782 comef 7371 R rec 8aea8149-7d21-40d1-bb65-12b3682867aa -2023-07-08 08:26:29.797229 2023-07-08 08:26:29.79724 comef 7372 R rec 0ced10cb-3c9a-4865-a40f-478fd21977ad -2023-07-08 08:26:29.875428 2023-07-08 08:26:29.875439 comef 7373 R rec e36aabe3-5085-4bb7-b00b-8fb2183cc5a6 -2023-07-08 08:26:29.951183 2023-07-08 08:26:29.951198 comef 7374 R rec b3a060c7-bce5-4c90-93f7-84efca8a41de -2023-07-08 08:26:30.041121 2023-07-08 08:26:30.041137 comef 7375 R rec 401ee3d9-e6fa-4251-9cd6-c6a47ac869ff -2023-07-08 08:26:30.13409 2023-07-08 08:26:30.134102 comef 7376 R rec 3687ea7a-a641-4e39-9052-0815bc61a14a -2023-07-08 08:26:30.217527 2023-07-08 08:26:30.217538 comef 7377 R rec 9e321fc3-8e24-40d9-bb6b-5140c4dd64d5 -2023-07-08 08:26:30.299682 2023-07-08 08:26:30.299694 comef 7378 R rec 5c74c014-eee5-4652-97dd-aad2ab1c073e -2023-07-08 08:26:30.381877 2023-07-08 08:26:30.381888 comef 7379 R rec c33ae58b-5a0a-463f-8ed1-521345f87d09 -2023-07-08 08:26:30.468715 2023-07-08 08:26:30.468729 comef 7380 R rec ac0ff85f-1a52-49b6-935a-2e67d503d6a4 -2023-07-08 08:26:30.553395 2023-07-08 08:26:30.553407 comef 7381 R rec 947c057c-2d45-4402-ba79-ff202d1a4678 -2023-07-08 08:26:30.645679 2023-07-08 08:26:30.64569 comef 7382 R rec 2cd50a8b-bd01-4b33-905f-139c3c8d7380 -2023-07-08 08:26:30.746402 2023-07-08 08:26:30.746415 comef 7383 R rec aed39f88-0437-4274-9fbe-0c9db2fcc907 -2023-07-08 08:26:30.856594 2023-07-08 08:26:30.856606 comef 7384 R rec 0b2ee136-e7a3-4851-a7d2-6c9cd4dd1dca -2023-07-08 08:26:30.941525 2023-07-08 08:26:30.941538 comef 7385 R rec 85767a08-0dd0-44bc-8653-c1f24ac04d69 -2023-07-08 08:26:31.045197 2023-07-08 08:26:31.045213 comef 7386 R rec 6f7f0610-79af-476b-8e35-7c8e75db51f6 -2023-07-08 08:26:32.881721 2023-07-08 08:26:32.881727 comef 7387 R rec d4b16da7-c9bf-48e7-be28-694fcaad0fc8 -2023-07-08 08:26:32.962587 2023-07-08 08:26:32.962593 comef 7388 R rec 0992fd2c-82fe-44eb-8de4-dbfcd45ea916 -2023-07-08 08:26:33.023117 2023-07-08 08:26:33.023123 comef 7389 R rec 2e54dacd-73b8-4220-a37c-a52d93a98a31 -2023-07-08 08:26:33.078725 2023-07-08 08:26:33.07873 comef 7390 R rec 5ad0e986-61bf-4c12-9d7d-7091ab56e1d7 -2023-07-08 08:26:33.134081 2023-07-08 08:26:33.134086 comef 7391 R rec 5a00d1a0-7555-46b4-8dc8-0fb55466491d -2023-07-08 08:26:33.207468 2023-07-08 08:26:33.207479 comef 7392 R rec 7b8f010d-9918-45ec-8385-349d75b4360b -2023-07-08 08:26:33.288444 2023-07-08 08:26:33.288456 comef 7393 R rec 1fc96862-8a3f-4e45-8eb9-36daab3d3b09 -2023-07-08 08:26:33.370544 2023-07-08 08:26:33.370559 comef 7394 R rec c479e4b6-6ebf-4536-9a2c-5e214b2aad32 -2023-07-08 08:26:33.451137 2023-07-08 08:26:33.451148 comef 7395 R rec 3219a873-4c11-46d2-a95e-c3f5102214dd -2023-07-08 08:26:33.537639 2023-07-08 08:26:33.537651 comef 7396 R rec 1f5dc035-c833-4a7d-bc46-ea9b924dd853 -2023-07-08 08:26:33.623177 2023-07-08 08:26:33.623187 comef 7397 R rec e8852700-0f68-4829-9289-48187a0c50cd -2023-07-08 08:26:33.71339 2023-07-08 08:26:33.7134 comef 7398 R rec 13016585-9f21-42ab-9671-487d2423105e -2023-07-08 08:26:33.800047 2023-07-08 08:26:33.800059 comef 7399 R rec fbda6782-493b-4eed-ae23-2bef5af89fae -2023-07-08 08:26:33.881462 2023-07-08 08:26:33.881473 comef 7400 R rec f2b65441-f43a-4be7-bd3c-d29430cd115f -2023-07-08 08:26:33.965084 2023-07-08 08:26:33.965093 comef 7401 R rec 82cf8481-907e-49aa-a731-e64f93bddd6e -2023-07-08 08:26:34.044596 2023-07-08 08:26:34.044606 comef 7402 R rec 59a2cb3f-4d9d-41a4-84d5-25ad90f973ec -2023-07-08 08:26:34.135621 2023-07-08 08:26:34.135632 comef 7403 R rec f146d813-3ded-4b2c-b4c6-fc0567bcbefb -2023-07-08 08:26:34.220309 2023-07-08 08:26:34.220322 comef 7404 R rec 639914ea-3b0f-4b09-a086-e6fcb9b7ce05 -2023-07-08 08:26:34.300383 2023-07-08 08:26:34.300397 comef 7405 R rec c5d3ae7f-b12a-4aa5-9030-d25bf72d516a -2023-07-08 08:26:34.385703 2023-07-08 08:26:34.385715 comef 7406 R rec 6bf924fc-b6df-4735-8f83-a56287f1a9e2 -2023-07-08 08:26:34.470752 2023-07-08 08:26:34.470765 comef 7407 R rec ea171ceb-d9e9-4e51-89b8-dba37c167345 -2023-07-08 08:26:34.554987 2023-07-08 08:26:34.555003 comef 7408 R rec 1f2cd686-33c2-4663-a794-47275cc1a049 -2023-07-08 08:26:34.64664 2023-07-08 08:26:34.646652 comef 7409 R rec 871a91ac-e7dd-492e-bfa5-9272cec8e552 -2023-07-08 08:26:34.739075 2023-07-08 08:26:34.739086 comef 7410 R rec 7e0e2b56-0a99-45cd-a1d4-c06bf7fb3686 -2023-07-08 08:26:34.814483 2023-07-08 08:26:34.814498 comef 7411 R rec 950a8602-5175-4219-933b-a98341dc4aa9 -2023-07-08 08:26:34.896947 2023-07-08 08:26:34.896959 comef 7412 R rec a8debea1-4924-4eaf-99aa-3e8494533bc4 -2023-07-08 08:26:34.977225 2023-07-08 08:26:34.977236 comef 7413 R rec d889486d-e6c1-441b-8b88-fa118dedab20 -2023-07-08 08:26:35.063818 2023-07-08 08:26:35.063833 comef 7414 R rec 24c266b9-bcc1-45bd-8096-d10f5bfe72aa -2023-07-08 08:26:35.151891 2023-07-08 08:26:35.151904 comef 7415 R rec 139505c2-e060-4691-b031-035bfebd7122 -2023-07-08 08:26:35.240638 2023-07-08 08:26:35.240649 comef 7416 R rec 5d192288-c4be-4646-9e48-66681e45f566 -2023-07-08 08:26:35.335508 2023-07-08 08:26:35.33552 comef 7417 R rec 621b94f5-a451-4fd3-baf7-025ab090af0e -2023-07-08 08:26:35.436759 2023-07-08 08:26:35.436772 comef 7418 R rec 73076986-f19f-433b-81d2-776682376fb1 -2023-07-08 08:26:35.525292 2023-07-08 08:26:35.525305 comef 7419 R rec 598178e9-ee2b-4c15-b375-8b8665603ee6 -2023-07-08 08:26:35.616419 2023-07-08 08:26:35.616432 comef 7420 R rec 447a8eae-56b7-4fcc-b615-126c1cde9b38 -2023-07-08 08:26:35.724815 2023-07-08 08:26:35.72483 comef 7421 R rec f958f6f2-a7e2-4133-a076-46292f681f92 -2023-07-08 08:26:35.840386 2023-07-08 08:26:35.840401 comef 7422 R rec 063d479b-a41b-49a3-a587-ac5cdb51d704 -2023-07-08 08:26:35.940184 2023-07-08 08:26:35.940194 comef 7423 R rec b44fa093-eca8-416b-bb6a-2d76689a526f -2023-07-08 08:26:36.034978 2023-07-08 08:26:36.034988 comef 7424 R rec d38a5614-e9f8-4b40-976f-44c0ebb87161 -2023-07-08 08:26:36.13095 2023-07-08 08:26:36.130963 comef 7425 R rec a7e10832-80f5-4a85-b8cc-500be38c6579 -2023-07-08 08:26:36.227999 2023-07-08 08:26:36.228014 comef 7426 R rec 4167ebb9-0193-4f22-bc20-e3671bc9579b -2023-07-08 08:26:36.33026 2023-07-08 08:26:36.330276 comef 7427 R rec 4ac57d19-2a25-42e3-a72d-d0f24397c421 -2023-07-08 08:26:36.443006 2023-07-08 08:26:36.443019 comef 7428 R rec 84539a4c-caa8-448d-84ad-a96fbd730e81 -2023-07-08 08:26:36.54134 2023-07-08 08:26:36.541361 comef 7429 R rec 8340e2f7-bb3e-4984-8bde-c521910d4152 -2023-07-08 08:26:36.634704 2023-07-08 08:26:36.634716 comef 7430 R rec 3cfa212f-0c65-4538-a87a-39385edd7dbf -2023-07-08 08:26:36.723818 2023-07-08 08:26:36.723829 comef 7431 R rec 42600611-54e5-4e47-9345-29576834af46 -2023-07-08 08:26:36.818883 2023-07-08 08:26:36.818895 comef 7432 R rec 0555d763-fad5-4019-956c-26eb065fb0cb -2023-07-08 08:26:36.913314 2023-07-08 08:26:36.913325 comef 7433 R rec 48866e72-9ba4-47d0-ad22-6f0b314e4edf -2023-07-08 08:26:37.018949 2023-07-08 08:26:37.018959 comef 7434 R rec 0928cdb0-0f56-41ad-932a-c7f09f76e432 -2023-07-08 08:26:37.11275 2023-07-08 08:26:37.112762 comef 7435 R rec 46311569-380c-43bf-9b22-a2ac8587b0fe -2023-07-08 08:26:37.214606 2023-07-08 08:26:37.214619 comef 7436 R rec 9a5ff85f-6f38-47af-889f-47f2b2571a2c -2023-07-08 08:26:37.310857 2023-07-08 08:26:37.310869 comef 7437 R rec 5a2bd711-b34e-4841-9890-0e6ebac7a40b -2023-07-08 08:26:37.407883 2023-07-08 08:26:37.407896 comef 7438 R rec 8585efdb-d004-46e9-a09b-ff638fe79ad9 -2023-07-08 08:26:37.50784 2023-07-08 08:26:37.507853 comef 7439 R rec 24949ea2-c208-4b9a-9038-9ccd793b79aa -2023-07-08 08:26:37.597734 2023-07-08 08:26:37.597747 comef 7440 R rec 6afd224d-fe21-4162-b22c-c81306454055 -2023-07-08 08:26:37.690018 2023-07-08 08:26:37.690034 comef 7441 R rec 5610ffaa-af3b-46ec-8ce0-ca704ca701a1 -2023-07-08 08:26:37.790189 2023-07-08 08:26:37.790202 comef 7442 R rec 60dc9e22-ba97-4292-a3ad-4ea39cbc8d7b -2023-07-08 08:26:37.900342 2023-07-08 08:26:37.900348 comef 7443 R rec a9535a93-38b2-45e5-b074-fddd04743842 -2023-07-08 08:26:37.998126 2023-07-08 08:26:37.99814 comef 7444 R rec 910124d7-c00f-478b-9025-7054cb1d25dc -2023-07-08 08:26:38.089414 2023-07-08 08:26:38.089426 comef 7445 R rec 20326405-28b9-4277-b95e-5d7f05f5f917 -2023-07-08 08:26:38.186481 2023-07-08 08:26:38.186491 comef 7446 R rec 0db251d9-1c77-40ea-80f5-cce072fd4381 -2023-07-08 08:26:38.282591 2023-07-08 08:26:38.282602 comef 7447 R rec 5d7282ba-838b-4c0e-9d3d-3167b8290024 -2023-07-08 08:26:38.368196 2023-07-08 08:26:38.368209 comef 7448 R rec 4217909f-f630-441c-b6ed-eec0fb7ccd80 -2023-07-08 08:26:38.462877 2023-07-08 08:26:38.46289 comef 7449 R rec fc800ab6-a0fd-4d2e-a3e2-c6d9d0850b9e -2023-07-08 08:26:38.557472 2023-07-08 08:26:38.557486 comef 7450 R rec 5e1b4775-9873-4001-9abc-edaddb93caa1 -2023-07-08 08:26:38.655915 2023-07-08 08:26:38.655926 comef 7451 R rec 7177beae-9f52-4743-a189-f1c442a0ff55 -2023-07-08 08:26:38.755434 2023-07-08 08:26:38.755448 comef 7452 R rec 1875f31a-dd3a-4720-a61c-050b6b5826e8 -2023-07-08 08:26:38.86316 2023-07-08 08:26:38.863172 comef 7453 R rec e25f644a-5af0-40bc-979c-423df255ccd2 -2023-07-08 08:26:38.974171 2023-07-08 08:26:38.974189 comef 7454 R rec 78fcf86f-7d6a-4f05-9cf9-1c653d60598e -2023-07-08 08:26:39.075023 2023-07-08 08:26:39.075036 comef 7455 R rec 812cd200-ad84-490a-9164-a0db2f2238e0 -2023-07-08 08:26:39.176871 2023-07-08 08:26:39.17689 comef 7456 R rec 23dba242-a9be-46c5-84eb-38f241023b7d -2023-07-08 08:26:39.282515 2023-07-08 08:26:39.282525 comef 7457 R rec d78e0543-3f82-4b33-b750-ee41aceab239 -2023-07-08 08:26:39.375494 2023-07-08 08:26:39.375508 comef 7458 R rec 1f408ebc-d53c-47aa-99d8-5da5ed634297 -2023-07-08 08:26:39.495716 2023-07-08 08:26:39.49573 comef 7459 R rec 65da54c2-fd2f-45d0-b161-7ab10d2f3dbc -2023-07-08 08:26:39.606736 2023-07-08 08:26:39.60675 comef 7460 R rec bd2d3545-bc60-44c0-abec-fddf3d33a977 -2023-07-08 08:26:39.708175 2023-07-08 08:26:39.708186 comef 7461 R rec 8e4f40ae-4242-4df5-b284-c09b81c58314 -2023-07-08 08:26:39.801315 2023-07-08 08:26:39.801328 comef 7462 R rec 357d3b41-5dac-4a9b-8ba7-816257b7ab2c -2023-07-08 08:26:39.902673 2023-07-08 08:26:39.902686 comef 7463 R rec f663c757-2f30-4b00-9cd2-d1fc62fc4654 -2023-07-08 08:26:40.016188 2023-07-08 08:26:40.016201 comef 7464 R rec 5603c48d-f7c4-4baf-b611-1287f63ca593 -2023-07-08 08:26:40.122693 2023-07-08 08:26:40.122699 comef 7465 R rec 3aafdd74-ae14-429e-b312-e41b35b75db1 -2023-07-08 08:26:40.221691 2023-07-08 08:26:40.221696 comef 7466 R rec 5c03766b-d8dd-41ef-a133-936adcd46f03 -2023-07-08 08:26:40.337963 2023-07-08 08:26:40.337974 comef 7467 R rec 3d5365cc-2acc-4b55-bb2f-1b4a2e046956 -2023-07-08 08:26:40.451872 2023-07-08 08:26:40.451887 comef 7468 R rec 61370a20-6baa-4297-8a66-0c8caaa99ace -2023-07-08 08:26:40.568285 2023-07-08 08:26:40.568303 comef 7469 R rec cd6a4446-0b7d-414b-8371-6d7d09c32ae5 -2023-07-08 08:26:40.700464 2023-07-08 08:26:40.700475 comef 7470 R rec 2b0b1126-0407-4f92-baad-6193690d1daf -2023-07-08 08:26:40.799359 2023-07-08 08:26:40.799374 comef 7471 R rec e80fae47-f962-4223-ba99-848ac75b48b4 -2023-07-08 08:26:40.951689 2023-07-08 08:26:40.9517 comef 7472 R rec c79f4eee-7090-4410-adf3-f95b3ec5e024 -2023-07-08 08:26:41.078354 2023-07-08 08:26:41.078367 comef 7473 R rec 5a94d166-9517-452e-b6d5-cc89c5b34457 -2023-07-08 08:26:41.164679 2023-07-08 08:26:41.164689 comef 7474 R rec 8893a6ff-e466-4146-86a5-61d8acc8728c -2023-07-08 08:26:41.271625 2023-07-08 08:26:41.271638 comef 7475 R rec 6863a4ec-92ba-4216-85b1-2f75a8eb1a60 -2023-07-08 08:26:41.369087 2023-07-08 08:26:41.369102 comef 7476 R rec 71047678-fba5-4001-9949-2c56c6ecf35f -2023-07-08 08:26:41.474429 2023-07-08 08:26:41.474445 comef 7477 R rec 6b186867-1c3e-415d-8e18-f549bebb59bb -2023-07-08 08:26:41.582099 2023-07-08 08:26:41.582109 comef 7478 R rec 74b9f4d8-f5a6-4370-b702-ba7d0de37817 -2023-07-08 08:26:41.680795 2023-07-08 08:26:41.680809 comef 7479 R rec 32e8b65e-6e26-4a28-965b-d3a18737a1a5 -2023-07-08 08:26:41.781323 2023-07-08 08:26:41.781334 comef 7480 R rec 5c14321f-0056-4c47-bfbc-9e3dd83663f1 -2023-07-08 08:26:41.887562 2023-07-08 08:26:41.887573 comef 7481 R rec 464a554c-ae31-4b94-a03f-ecfaded30062 -2023-07-08 08:26:41.987306 2023-07-08 08:26:41.987318 comef 7482 R rec 2830f532-4e8c-4140-92d9-d631e2d56905 -2023-07-08 08:26:42.091709 2023-07-08 08:26:42.091715 comef 7483 R rec 3bf04951-3840-4256-bf0d-fe41beedd943 -2023-07-08 08:26:42.199477 2023-07-08 08:26:42.199489 comef 7484 R rec 008390a9-cdd0-49a2-9a82-1435605de9eb -2023-07-08 08:26:42.295486 2023-07-08 08:26:42.295502 comef 7485 R rec 01490218-d844-40c8-bedd-763152989c02 -2023-07-08 08:26:42.386551 2023-07-08 08:26:42.386562 comef 7486 R rec b934a9d1-b336-4772-bbac-84909d14ab65 -2023-07-08 08:26:42.50801 2023-07-08 08:26:42.508021 comef 7487 R rec c860bb5a-552d-4da9-a4e8-f5f3d2ca21f3 -2023-07-08 08:26:42.625516 2023-07-08 08:26:42.625527 comef 7488 R rec d6f9fe65-134a-4375-bed3-87419ce91122 -2023-07-08 08:26:42.722349 2023-07-08 08:26:42.722365 comef 7489 R rec fecd2168-fe43-49ce-9881-7ce7a60c6e2a -2023-07-08 08:26:42.817135 2023-07-08 08:26:42.817149 comef 7490 R rec d99d9958-7d86-47ca-b343-d0cafe266258 -2023-07-08 08:26:42.971529 2023-07-08 08:26:42.971535 comef 7491 R rec d52cb641-ce22-4c13-8ccf-8a0d0033dfc7 -2023-07-08 08:26:43.056039 2023-07-08 08:26:43.056042 comef 7492 R rec bd9f21f9-fba3-4717-86fa-e9bcaae8de1c -2023-07-08 08:26:43.146682 2023-07-08 08:26:43.146693 comef 7493 R rec 5351514e-49b9-47dd-a924-71691b8f8846 -2023-07-08 08:26:43.237231 2023-07-08 08:26:43.237244 comef 7494 R rec 1f649a7f-11c8-4fe5-bad1-9cd905a8b04a -2023-07-08 08:26:43.328452 2023-07-08 08:26:43.328458 comef 7495 R rec 11314655-f57e-445c-b656-6e701af11fa6 -2023-07-08 08:26:43.414875 2023-07-08 08:26:43.414885 comef 7496 R rec 989650a7-80bb-4bea-a9df-7033ae5db348 -2023-07-08 08:26:43.511271 2023-07-08 08:26:43.511286 comef 7497 R rec ff415f39-e0eb-4a69-b367-2d70d40ed577 -2023-07-08 08:26:43.617035 2023-07-08 08:26:43.617045 comef 7498 R rec b6bdac77-5cb9-4333-8943-4b6ad9e23fdc -2023-07-08 08:26:43.725726 2023-07-08 08:26:43.725737 comef 7499 R rec b9481175-fee8-4d20-9a72-1ea6c7c9a325 -2023-07-08 08:26:43.836911 2023-07-08 08:26:43.836922 comef 7500 R rec f8da8bb2-a18b-4d36-875a-a4450aa35163 -2023-07-08 08:26:43.942792 2023-07-08 08:26:43.942803 comef 7501 R rec 9daf75a7-f187-4e50-9020-5f9bbf18a725 -2023-07-08 08:26:44.04975 2023-07-08 08:26:44.049763 comef 7502 R rec c4e1fe8e-d3e2-49a4-b226-86f6505c2a19 -2023-07-08 08:26:44.187823 2023-07-08 08:26:44.187834 comef 7503 R rec 5f3cc554-d90c-4f37-b6fe-a0e365e75f65 -2023-07-08 08:26:44.281326 2023-07-08 08:26:44.281336 comef 7504 R rec b76953fb-aeae-41e0-b987-18bca8f87c1a -2023-07-08 08:26:44.373219 2023-07-08 08:26:44.373235 comef 7505 R rec b9ab3660-3a2b-439a-82fa-171309360848 -2023-07-08 08:26:44.48405 2023-07-08 08:26:44.484055 comef 7506 R rec 36a84143-02fc-42c2-b890-67b95a74a73b -2023-07-08 08:26:44.592088 2023-07-08 08:26:44.592099 comef 7507 R rec 21b4c965-9e9d-49a7-bbb0-fb13c949f136 -2023-07-08 08:26:44.70269 2023-07-08 08:26:44.702706 comef 7508 R rec 2b81a0a2-7485-4590-a3d8-ab7ec94eafe2 -2023-07-08 08:26:44.787464 2023-07-08 08:26:44.787476 comef 7509 R rec 126f6234-cb53-429c-805b-b0717e3b3c1b -2023-07-08 08:26:44.897329 2023-07-08 08:26:44.897344 comef 7510 R rec da3199d3-2d11-4c91-a55c-1110f4506e91 -2023-07-08 08:26:45.001782 2023-07-08 08:26:45.001795 comef 7511 R rec defbf1d4-5baa-4e7a-8203-edde1878fbd7 -2023-07-08 08:26:45.110082 2023-07-08 08:26:45.110094 comef 7512 R rec 234f684a-4c6e-47e6-ab75-fb782bed443f -2023-07-08 08:26:45.215421 2023-07-08 08:26:45.215434 comef 7513 R rec 48687b3d-db73-46f5-808a-1ee5a39aab97 -2023-07-08 08:26:45.32815 2023-07-08 08:26:45.328178 comef 7514 R rec 4d7b8526-3e09-4306-a408-9b7a42123e05 -2023-07-08 08:26:45.432487 2023-07-08 08:26:45.4325 comef 7515 R rec c5ebcf00-e60a-408a-99e6-1ba8f7b70a72 -2023-07-08 08:26:45.548186 2023-07-08 08:26:45.548197 comef 7516 R rec 224f17b8-0db2-464d-90f1-1defe58b877f -2023-07-08 08:26:45.656862 2023-07-08 08:26:45.656873 comef 7517 R rec e655a2c2-cfb2-4583-ba8c-41d99ef010a1 -2023-07-08 08:26:45.764333 2023-07-08 08:26:45.764344 comef 7518 R rec 75bd492f-b77a-4869-b871-af38fb9fadb6 -2023-07-08 08:26:45.871528 2023-07-08 08:26:45.871539 comef 7519 R rec b6a60977-2eae-49ba-a0f9-043ecca3053f -2023-07-08 08:26:45.977798 2023-07-08 08:26:45.978054 comef 7520 R rec 2a8bc0c2-c451-4986-b0a1-f964fc35f1bb -2023-07-08 08:26:46.068465 2023-07-08 08:26:46.068477 comef 7521 R rec 37db2628-7f88-42d8-acce-35e0f5e60425 -2023-07-08 08:26:46.157955 2023-07-08 08:26:46.157971 comef 7522 R rec 492f5647-d6cc-43fc-8e57-b57b9c76bde5 -2023-07-08 08:26:46.264407 2023-07-08 08:26:46.264424 comef 7523 R rec 15b7dd9c-4a5a-4411-8489-f0378a26cd92 -2023-07-08 08:26:46.378795 2023-07-08 08:26:46.378807 comef 7524 R rec ecccdf73-841f-4584-9eda-2d81fc08b9c4 -2023-07-08 08:26:46.486232 2023-07-08 08:26:46.486245 comef 7525 R rec 0c0f1e49-edb7-478c-94d0-f8b9920e7c9f -2023-07-08 08:26:46.594711 2023-07-08 08:26:46.594722 comef 7526 R rec d2265c6c-ad91-45ea-8b72-ca9b8ffa47b0 -2023-07-08 08:26:46.700444 2023-07-08 08:26:46.700483 comef 7527 R rec 24490741-2e11-4980-914a-f571b236378b -2023-07-08 08:26:46.811974 2023-07-08 08:26:46.811985 comef 7528 R rec 6c52c8ae-1cb0-4c4c-a193-a1748b6aedbd -2023-07-08 08:26:46.922113 2023-07-08 08:26:46.922132 comef 7529 R rec adf9bb22-bb59-4bbb-bd2a-60c0cdd32fa1 -2023-07-08 08:26:47.020331 2023-07-08 08:26:47.020344 comef 7530 R rec 4cd00a6e-56e7-4ec3-a749-85573b1161d1 -2023-07-08 08:26:47.12306 2023-07-08 08:26:47.123075 comef 7531 R rec 94cea878-5187-4b7a-8a85-ace4273c0b39 -2023-07-08 08:26:47.221882 2023-07-08 08:26:47.221897 comef 7532 R rec b98e601a-e968-4a74-a068-bc7724f05b17 -2023-07-08 08:26:47.336312 2023-07-08 08:26:47.336324 comef 7533 R rec 23608095-8e05-4c0b-9f2e-1c73e5970f88 -2023-07-08 08:26:47.448416 2023-07-08 08:26:47.448427 comef 7534 R rec eb6370ec-13c6-4354-ac84-094557d8a16d -2023-07-08 08:26:47.539833 2023-07-08 08:26:47.539844 comef 7535 R rec bd7b827d-2a47-47f0-8c91-f58d5d0ded78 -2023-07-08 08:26:47.646931 2023-07-08 08:26:47.646945 comef 7536 R rec dc24f73e-59c0-4572-8a95-d4fe92284336 -2023-07-08 08:26:47.748064 2023-07-08 08:26:47.748075 comef 7537 R rec d62ad691-feb2-4d1f-96aa-fc749c6b1698 -2023-07-08 08:26:47.850014 2023-07-08 08:26:47.850027 comef 7538 R rec 79e308ec-7e8b-4c1f-85a6-7ac89be19dcb -2023-07-08 08:26:47.939012 2023-07-08 08:26:47.939024 comef 7539 R rec 71d3c94a-a918-49f6-b92d-54594d072729 -2023-07-08 08:26:48.050175 2023-07-08 08:26:48.050186 comef 7540 R rec ccc5a850-1d29-4e7a-92e4-409e0c363f6c -2023-07-08 08:26:48.163512 2023-07-08 08:26:48.163523 comef 7541 R rec bd527e9f-00a0-4d42-8243-17eab4b81245 -2023-07-08 08:26:48.268767 2023-07-08 08:26:48.268777 comef 7542 R rec 35694961-9bcf-4cac-bf8c-f7f77dcd2fa4 -2023-07-08 08:26:48.381403 2023-07-08 08:26:48.381414 comef 7543 R rec e7d93a43-48a0-4c6d-a9c0-2f73ce6d0450 -2023-07-08 08:26:48.504986 2023-07-08 08:26:48.505 comef 7544 R rec 306a6485-ddc7-4a52-a60a-3269cab524be -2023-07-08 08:26:48.600032 2023-07-08 08:26:48.600043 comef 7545 R rec bbe06640-189e-497a-90e9-5be26f35fa0a -2023-07-08 08:26:48.700293 2023-07-08 08:26:48.700303 comef 7546 R rec 86f65286-c1d2-4543-83cb-a56b72d53c66 -2023-07-08 08:26:48.797563 2023-07-08 08:26:48.797573 comef 7547 R rec af333f63-1df0-427a-84a1-e97cc63154c6 -2023-07-08 08:26:48.897096 2023-07-08 08:26:48.897106 comef 7548 R rec 8f4cde4a-48ba-4750-b2a4-fa45c1749884 -2023-07-08 08:26:49.028444 2023-07-08 08:26:49.028459 comef 7549 R rec 266a256d-b07b-4b7a-a586-6da55109ddb8 -2023-07-08 08:26:49.16508 2023-07-08 08:26:49.165091 comef 7550 R rec 21c73020-a1b9-4579-926b-f00f3a4576b3 -2023-07-08 08:26:49.283545 2023-07-08 08:26:49.283558 comef 7551 R rec 7d18a4ed-3f9b-4d80-9c15-ee93b313af38 -2023-07-08 08:26:49.388963 2023-07-08 08:26:49.388974 comef 7552 R rec 9287a582-3018-42c5-b522-7b1e6d9947cf -2023-07-08 08:26:49.501991 2023-07-08 08:26:49.502001 comef 7553 R rec 141a7426-fd34-40d0-86bb-dcb81b191e86 -2023-07-08 08:26:49.619546 2023-07-08 08:26:49.619557 comef 7554 R rec 313f480e-7755-4176-ab63-0790f6ca73b3 -2023-07-08 08:26:49.74111 2023-07-08 08:26:49.741126 comef 7555 R rec ab9b1a72-1411-4d0e-a5af-c7dd2cf7b413 -2023-07-08 08:26:49.850201 2023-07-08 08:26:49.850211 comef 7556 R rec 3a23ca19-a4fc-4ca0-ae71-8e3891b996a4 -2023-07-08 08:26:49.96058 2023-07-08 08:26:49.960586 comef 7557 R rec 4c809af3-d65b-4ea8-9b4b-e4dda0d17ebe -2023-07-08 08:26:50.085846 2023-07-08 08:26:50.085857 comef 7558 R rec 073602b2-1101-4e2e-9938-19561f7d6233 -2023-07-08 08:26:50.199607 2023-07-08 08:26:50.199617 comef 7559 R rec f54f538c-2ac7-4f15-b252-99ca82d25c21 -2023-07-08 08:26:50.315008 2023-07-08 08:26:50.315019 comef 7560 R rec 07c05baf-425b-430a-93ca-72fb97286515 -2023-07-08 08:26:50.414278 2023-07-08 08:26:50.414291 comef 7561 R rec ef47a930-c336-4fd0-999a-4514408b8e1f -2023-07-08 08:26:50.532866 2023-07-08 08:26:50.532878 comef 7562 R rec 6555308b-b495-4673-bceb-bea8d368f795 -2023-07-08 08:26:50.650882 2023-07-08 08:26:50.650894 comef 7563 R rec 7fdad7a8-c601-4429-9b24-5c14da498a59 -2023-07-08 10:21:54.081772 2023-07-08 10:21:54.081778 mef 7564 R rec 692b6ab3-d87a-4223-a073-3146f5b6b698 -2023-07-08 10:21:54.919647 2023-07-08 10:21:54.919659 mef 7565 R rec ce017c2a-b679-48f7-a88d-148b7f6e014b -2023-07-08 10:21:55.354808 2023-07-08 10:21:55.354813 mef 7566 R rec 43c69b6e-9e1c-463b-9021-0488989de7bc -2023-07-08 10:21:55.755206 2023-07-08 10:21:55.755211 mef 7567 R rec bfe73f17-3ec4-4917-96a5-26041b3db1f0 -2023-07-08 10:21:56.305495 2023-07-08 10:21:56.305501 mef 7568 R rec 79c0c0c5-c412-4d20-91fd-36e60b07ace5 -2023-07-08 10:21:56.736806 2023-07-08 10:21:56.73681 mef 7569 R rec 197b59b1-7712-4294-a166-6ee40f4da7d0 -2023-07-08 10:21:57.206347 2023-07-08 10:21:57.206355 mef 7570 R rec a01ae0da-82d6-4c02-b9bb-dbd425076f3f -2023-07-08 10:21:57.595071 2023-07-08 10:21:57.595088 mef 7571 R rec 2d6c24b8-71fb-48c4-8469-07e286bda4b9 -2023-07-08 10:21:58.094241 2023-07-08 10:21:58.09425 mef 7572 R rec 3ccb71ba-ad89-43a0-a49c-faa696235283 -2023-07-08 10:21:58.480713 2023-07-08 10:21:58.48072 mef 7573 R rec e74b78f1-1230-4bd1-84d5-b249d1a272bb -2023-07-08 10:21:58.854916 2023-07-08 10:21:58.854924 mef 7574 R rec 7afcf0c8-4b5a-4e38-8e9d-a199afa3a657 -2023-07-08 10:21:59.270471 2023-07-08 10:21:59.270479 mef 7575 R rec c774b825-eb24-43ea-9c12-a712e54f9206 -2023-07-08 10:21:59.69255 2023-07-08 10:21:59.692556 mef 7576 R rec 66e1ce58-cd17-45c4-9d39-5aaa58c51648 -2023-07-08 10:22:00.094159 2023-07-08 10:22:00.09417 mef 7577 R rec c3c9c542-8195-4348-8714-574cbfe62dd0 -2023-07-08 10:22:00.472546 2023-07-08 10:22:00.47255 mef 7578 R rec a350cab0-331b-4373-a47b-3198f8ff457a -2023-07-08 10:22:00.887461 2023-07-08 10:22:00.887466 mef 7579 R rec 58726096-a935-4822-a428-2a76555e0c7b -2023-07-08 10:22:01.315247 2023-07-08 10:22:01.315251 mef 7580 R rec 3ad09241-48e9-4576-94a6-c3df760207b6 -2023-07-08 10:22:01.599195 2023-07-08 10:22:01.5992 mef 7581 R rec c745fb67-d054-471c-a018-1a4074eb415a -2023-07-08 10:22:02.015741 2023-07-08 10:22:02.015764 mef 7582 R rec 0832f6e3-42a6-4087-a808-32294518ad86 -2023-07-08 10:22:02.439305 2023-07-08 10:22:02.439328 mef 7583 R rec b586beec-9679-4e90-9ab5-08fb44616d4c -2023-07-08 10:22:02.926636 2023-07-08 10:22:02.926646 mef 7584 R rec 6ac81119-bde6-46e9-bd52-48a9a8755390 -2023-07-08 10:22:03.311198 2023-07-08 10:22:03.311203 mef 7585 R rec b9cfb5fe-9b45-43b9-bfb3-ba3a8eb46834 -2023-07-08 10:22:03.730052 2023-07-08 10:22:03.730058 mef 7586 R rec a1ede734-6a03-44d8-9b28-2275905429a2 -2023-07-08 10:22:04.499487 2023-07-08 10:22:04.499498 mef 7587 R rec 265ebe71-2758-492d-b01c-fd4ebf6fc350 -2023-07-08 10:22:04.859247 2023-07-08 10:22:04.859254 mef 7588 R rec e9aa3ea2-ccf3-46d7-aa35-edb210e9aece -2023-07-08 10:22:05.355664 2023-07-08 10:22:05.355675 mef 7589 R rec 9743b5e3-df78-4039-998c-ba720f8b4e99 -2023-07-08 10:22:05.746459 2023-07-08 10:22:05.746465 mef 7590 R rec 7ae80c2f-e904-4e9b-af2c-701044832456 -2023-07-08 10:22:06.396221 2023-07-08 10:22:06.396231 mef 7591 R rec 724e3083-3a55-4a78-8cf1-c678c72631db -2023-07-08 10:22:06.794443 2023-07-08 10:22:06.794446 mef 7592 R rec cddf66aa-6dba-4609-918f-ad4e65f0c372 -2023-07-08 10:22:07.184188 2023-07-08 10:22:07.184195 mef 7593 R rec 8ec839ec-54f4-4652-b911-14a14fe66d33 -2023-07-08 10:22:07.577297 2023-07-08 10:22:07.577302 mef 7594 R rec f1883533-3577-4227-be78-7b2e622b8489 -2023-07-08 10:22:07.957425 2023-07-08 10:22:07.957433 mef 7595 R rec 9313543b-e8a8-4fae-9c7f-89af095b737b -2023-07-08 10:22:08.384051 2023-07-08 10:22:08.384081 mef 7596 R rec c4dce2d2-692e-4511-90de-df15d2adbab8 -2023-07-08 10:22:08.739992 2023-07-08 10:22:08.739997 mef 7597 R rec a3d57739-d198-429d-9aee-38258eac7e56 -2023-07-08 10:22:09.111705 2023-07-08 10:22:09.111712 mef 7598 R rec 6469154a-99b5-4e6c-9e66-21f292904e30 -2023-07-08 10:22:09.589387 2023-07-08 10:22:09.589413 mef 7599 R rec 2ede90f8-ecef-4bed-8f29-d205070d2cac -2023-07-08 10:22:10.022503 2023-07-08 10:22:10.022508 mef 7600 R rec cad29c9d-63db-446c-a266-3a3ebea0af70 -2023-07-08 10:22:10.441317 2023-07-08 10:22:10.441341 mef 7601 R rec d59aaf6d-38d3-451d-b41e-8fdcb038c66d -2023-07-08 10:22:10.822062 2023-07-08 10:22:10.822067 mef 7602 R rec b140bac4-458a-4886-8a04-5df1e975ef81 -2023-07-08 10:22:11.178786 2023-07-08 10:22:11.178791 mef 7603 R rec dfbe21af-c469-4c76-a63a-3b8fee3629ba -2023-07-08 10:22:11.579771 2023-07-08 10:22:11.579786 mef 7604 R rec 0cd197f7-0656-4d08-8a1a-5f8bb49fd6a2 -2023-07-08 10:22:12.024947 2023-07-08 10:22:12.024976 mef 7605 R rec 0aa2fccf-c5c2-4f9a-b4ee-fd4a664c804c -2023-07-08 10:22:12.417867 2023-07-08 10:22:12.417876 mef 7606 R rec 14280146-9ef5-4f72-98d4-8eff3a6f1537 -2023-07-08 10:22:12.866276 2023-07-08 10:22:12.866285 mef 7607 R rec c9bf6223-6bcb-4f88-89c4-d24392cc6272 -2023-07-08 10:22:13.258303 2023-07-08 10:22:13.258308 mef 7608 R rec 683e6d0b-0d68-452d-a6ea-90967a4d19eb -2023-07-08 10:22:13.6543 2023-07-08 10:22:13.654309 mef 7609 R rec 3b7d5df5-cd78-4516-aa21-dcb6c89ebffb -2023-07-08 10:22:14.069574 2023-07-08 10:22:14.069593 mef 7610 R rec 4127397a-83e7-4f45-ac5b-c74aceb69940 -2023-07-08 10:22:14.469476 2023-07-08 10:22:14.469488 mef 7611 R rec 7558bbd0-47bb-4093-bd89-1fada361a4c8 -2023-07-08 10:22:14.876762 2023-07-08 10:22:14.876772 mef 7612 R rec e4473da4-6636-4c54-8bdd-c6a83946a41c -2023-07-08 10:22:15.289223 2023-07-08 10:22:15.289228 mef 7613 R rec 68eb9f6f-3122-4fa0-9f28-c063a0cf7024 -2023-07-08 10:22:15.740158 2023-07-08 10:22:15.740166 mef 7614 R rec 213ac5e6-940a-4a33-bbaf-eb542e08b542 -2023-07-08 10:22:16.145938 2023-07-08 10:22:16.145948 mef 7615 R rec c1a41412-537f-4427-b3cf-5344329579cd -2023-07-08 10:22:16.887617 2023-07-08 10:22:16.887639 mef 7616 R rec 2e725b76-df00-4835-8688-b080cff89401 -2023-07-08 10:22:17.321456 2023-07-08 10:22:17.321459 mef 7617 R rec d89f12ab-a79b-419f-805e-b1a95e434131 -2023-07-08 10:22:17.66283 2023-07-08 10:22:17.662836 mef 7618 R rec 47884430-ce69-46ec-94d6-8ba979feaf9b -2023-07-08 10:22:18.05966 2023-07-08 10:22:18.059674 mef 7619 R rec ba2ea293-e0ea-4166-96c2-d1692d978d7d -2023-07-08 10:22:18.460191 2023-07-08 10:22:18.460203 mef 7620 R rec 3c8c321f-e938-432c-a864-d8a786e76bcf -2023-07-08 10:22:19.029096 2023-07-08 10:22:19.029102 mef 7621 R rec 4fb2e383-b471-4663-9937-9ba7b64026f3 -2023-07-08 10:22:19.519222 2023-07-08 10:22:19.519227 mef 7622 R rec d76a5bf0-8975-433d-b49e-4be17028b796 -2023-07-08 10:22:19.875884 2023-07-08 10:22:19.875891 mef 7623 R rec 2c87d018-f691-4a57-b5ee-5715c884202a -2023-07-08 10:22:20.250365 2023-07-08 10:22:20.250371 mef 7624 R rec 19f0195e-5a7a-42aa-b5ea-c8d519b3cbab -2023-07-08 10:22:20.659884 2023-07-08 10:22:20.659893 mef 7625 R rec 0f763532-af1a-4540-805d-2a3a214f10fa -2023-07-08 10:22:21.053745 2023-07-08 10:22:21.053757 mef 7626 R rec 4bd5b4eb-2a71-49c0-a20d-ac7cca776a73 -2023-07-08 10:22:21.448463 2023-07-08 10:22:21.448469 mef 7627 R rec d01d5d90-614a-4313-ac8b-2ff3c8a9d248 -2023-07-08 10:22:21.817986 2023-07-08 10:22:21.817991 mef 7628 R rec c35247c7-147f-489d-a4cc-618d8777e824 -2023-07-08 10:22:22.232615 2023-07-08 10:22:22.232627 mef 7629 R rec 74826c49-0f67-4690-82cb-4ef64470c2a2 -2023-07-08 10:22:23.019005 2023-07-08 10:22:23.019011 mef 7630 R rec 2c33d2f4-49c3-4828-824c-f5f836204553 -2023-07-08 10:22:23.317806 2023-07-08 10:22:23.317815 mef 7631 R rec afba89ef-00ce-48e3-b8df-c1bc269da1cd -2023-07-08 10:22:23.735835 2023-07-08 10:22:23.735841 mef 7632 R rec b70ae52e-bc30-4b1c-9148-ec843b0fd594 -2023-07-08 10:22:24.095954 2023-07-08 10:22:24.095961 mef 7633 R rec b19a4101-5e68-40ac-845b-bff6d34d5625 -2023-07-08 10:22:24.472006 2023-07-08 10:22:24.472009 mef 7634 R rec 7f37eb3d-1449-43c5-b0fd-ad2aa6729b0e -2023-07-08 10:22:25.022372 2023-07-08 10:22:25.022378 mef 7635 R rec 417e0542-0a32-4205-8f88-dc71a169543f -2023-07-08 10:22:25.475298 2023-07-08 10:22:25.475303 mef 7636 R rec 3f1fe5e8-b50e-4c27-aa2d-b5e6566aa352 -2023-07-08 10:22:25.912749 2023-07-08 10:22:25.912776 mef 7637 R rec ae645547-7dd3-487f-a9d3-8aef4d1d3cd9 -2023-07-08 10:22:26.501116 2023-07-08 10:22:26.501123 mef 7638 R rec e62288f4-a777-4d43-b796-c2df75fd3f17 -2023-07-08 10:22:26.942843 2023-07-08 10:22:26.942867 mef 7639 R rec 81f152e4-1f83-442f-b114-4645fd6f972b -2023-07-08 10:22:27.38484 2023-07-08 10:22:27.384848 mef 7640 R rec 377842a1-f540-4dd9-9444-b5d6fc4cf54b -2023-07-08 10:22:27.834844 2023-07-08 10:22:27.83485 mef 7641 R rec 284751ac-8138-4ac8-add6-31e431da1a06 -2023-07-08 10:22:28.327749 2023-07-08 10:22:28.327752 mef 7642 R rec 94cd489a-8c7e-46e3-99a6-c62b98c5db4d -2023-07-08 10:22:28.653967 2023-07-08 10:22:28.653973 mef 7643 R rec 4a1b3f7c-41da-4cdd-97f8-e5c31e9c8e5f -2023-07-08 10:22:29.137114 2023-07-08 10:22:29.137125 mef 7644 R rec d2ba36f6-d54c-4015-9de9-6b156ad791ee -2023-07-08 10:22:29.79075 2023-07-08 10:22:29.790756 mef 7645 R rec 0b07dbe1-c344-44d2-af21-37f87be7e9e3 -2023-07-08 10:22:30.189328 2023-07-08 10:22:30.189341 mef 7646 R rec d9e83a6c-29ef-4000-85b4-b20cda71f0bc -2023-07-08 10:22:30.602721 2023-07-08 10:22:30.602731 mef 7647 R rec faef1fb0-3cac-4c10-bf2f-ec1d0d47a96e -2023-07-08 10:22:31.003865 2023-07-08 10:22:31.003881 mef 7648 R rec 3ae3759c-2f24-4474-a863-1f9a455489d6 -2023-07-08 10:22:31.38361 2023-07-08 10:22:31.383616 mef 7649 R rec 31096575-057d-4f40-bea0-c755752c6b3d -2023-07-08 10:22:31.843192 2023-07-08 10:22:31.843202 mef 7650 R rec 6aa97782-8744-4e2d-b390-ecc59a85e4da -2023-07-08 10:22:32.485314 2023-07-08 10:22:32.48532 mef 7651 R rec 209888d6-28e7-47ea-a0f4-75ddee73a460 -2023-07-08 10:22:33.130886 2023-07-08 10:22:33.130898 mef 7652 R rec bece0ea2-1fcc-42f5-afb7-1e092c2e833e -2023-07-08 10:22:33.750818 2023-07-08 10:22:33.750824 mef 7653 R rec d7fa61de-4be5-4da3-b5ab-b3f52c9397ad -2023-07-08 10:22:34.217594 2023-07-08 10:22:34.217599 mef 7654 R rec fc568d6c-9efd-478d-ba6a-afc8b95ff35b -2023-07-08 10:22:34.670445 2023-07-08 10:22:34.670453 mef 7655 R rec b2991d28-a4da-4d06-ad93-0d827affd500 -2023-07-08 10:22:35.039095 2023-07-08 10:22:35.039106 mef 7656 R rec 56f0df03-cb52-447f-b690-e129dcd1bdbe -2023-07-08 10:22:35.600023 2023-07-08 10:22:35.600032 mef 7657 R rec e3ef949b-7214-44b1-9c3b-e74d858f921c -2023-07-08 10:22:36.006241 2023-07-08 10:22:36.00625 mef 7658 R rec 9af7e895-ecf5-43cf-bb98-9f74a0ecb3b2 -2023-07-08 10:22:36.510704 2023-07-08 10:22:36.510719 mef 7659 R rec 28d1ec0c-be5f-4640-a324-50891c778961 -2023-07-08 10:22:36.868121 2023-07-08 10:22:36.868127 mef 7660 R rec 25ccd559-6573-4850-b0a0-d0e2b09ca812 -2023-07-08 10:22:37.540696 2023-07-08 10:22:37.540711 mef 7661 R rec fa40c860-773d-45db-808e-cd0b918b7b4a -2023-07-08 10:22:37.959778 2023-07-08 10:22:37.959795 mef 7662 R rec c31a19e9-6c9e-4c77-8bc7-57b5057a4315 -2023-07-08 10:22:38.393142 2023-07-08 10:22:38.393152 mef 7663 R rec c988281e-faee-449d-8df4-94ae96aacf80 -2023-07-08 10:22:38.755364 2023-07-08 10:22:38.755367 mef 7664 R rec 72f971fd-63f0-4127-924f-f13ebfc0d556 -2023-07-08 10:22:39.309013 2023-07-08 10:22:39.309019 mef 7665 R rec 9064bcef-be8a-4851-9f87-1178b3a8da97 -2023-07-08 10:22:39.895981 2023-07-08 10:22:39.895986 mef 7666 R rec 215630b9-9310-468e-b90b-cc805d3aba52 -2023-07-08 10:22:40.290979 2023-07-08 10:22:40.290989 mef 7667 R rec 2736119e-d44e-4574-9099-56cd080116d5 -2023-07-08 10:22:40.725628 2023-07-08 10:22:40.725634 mef 7668 R rec faeb4f96-7a9b-43cd-893d-6cd9ecdff525 -2023-07-08 10:22:41.0849 2023-07-08 10:22:41.084905 mef 7669 R rec b8165c10-cbe8-44ad-a53f-d36b4339de7d -2023-07-08 10:22:41.456149 2023-07-08 10:22:41.456154 mef 7670 R rec 4bf61f0a-e1ca-46cc-bbb8-3a6eacfc822e -2023-07-08 10:22:41.852677 2023-07-08 10:22:41.852682 mef 7671 R rec 2f61e29c-7553-45fe-9cd6-be74493b530c -2023-07-08 10:22:42.246866 2023-07-08 10:22:42.246872 mef 7672 R rec 3d49b399-7206-4628-93d1-e8bbe74c06df -2023-07-08 10:22:42.598014 2023-07-08 10:22:42.598019 mef 7673 R rec c1a66080-ea89-443a-a7b4-4fb0cf4fbe08 -2023-07-08 10:22:42.987886 2023-07-08 10:22:42.98789 mef 7674 R rec 5d4387b1-2d49-4ec5-9347-50907136822a -2023-07-08 10:22:43.337533 2023-07-08 10:22:43.337537 mef 7675 R rec 25fd44b6-edc9-4a24-bcce-1722c50bdde0 -2023-07-08 10:22:43.939734 2023-07-08 10:22:43.939751 mef 7676 R rec 6ea2b68f-dd73-42d3-969f-ae0d21d6e3f9 -2023-07-08 10:22:44.765641 2023-07-08 10:22:44.765648 mef 7677 R rec 8201cdd8-99be-424d-860f-813a1b139041 -2023-07-08 10:22:45.133113 2023-07-08 10:22:45.133118 mef 7678 R rec 84c63153-dc50-4783-844a-d7f7acf8c529 -2023-07-08 10:22:45.559048 2023-07-08 10:22:45.559058 mef 7679 R rec f9cddf71-56a0-49e3-97b7-59403961cdde -2023-07-08 10:22:45.980722 2023-07-08 10:22:45.980755 mef 7680 R rec 1a6b83ff-b0ec-4268-adf2-6c5996e34674 -2023-07-08 10:22:46.455445 2023-07-08 10:22:46.455457 mef 7681 R rec 7804ac31-7ea8-4f7d-9666-0c6b61059b97 -2023-07-08 10:22:46.843298 2023-07-08 10:22:46.843304 mef 7682 R rec b0fb5d01-7009-4f58-a9bc-00eb712c87bb -2023-07-08 10:22:47.239316 2023-07-08 10:22:47.239322 mef 7683 R rec a0146572-b9d4-4123-ae1b-eb99206636b4 -2023-07-08 10:22:47.622166 2023-07-08 10:22:47.622172 mef 7684 R rec a9f01c6f-bdb4-41f2-9a2b-a100c727c3bb -2023-07-08 10:22:48.012544 2023-07-08 10:22:48.012571 mef 7685 R rec cf9db854-bc8f-4ed9-ac0b-8e1f6104fd8c -2023-07-08 10:22:48.415295 2023-07-08 10:22:48.415301 mef 7686 R rec f53df509-5a92-4f6b-a0f3-eee34ca6cf1a -2023-07-08 10:22:48.783945 2023-07-08 10:22:48.783951 mef 7687 R rec b3e4a555-48cc-4b78-8c2d-ab4a84045309 -2023-07-08 10:22:49.16394 2023-07-08 10:22:49.163947 mef 7688 R rec 7d40baad-9be4-4229-b366-1733796899bd -2023-07-08 10:22:49.610973 2023-07-08 10:22:49.610983 mef 7689 R rec d3a9271c-4f06-4f25-a57d-2a1d18eb8e2a -2023-07-08 10:22:50.020725 2023-07-08 10:22:50.020734 mef 7690 R rec 2ed20727-8273-4e08-9c97-49ce6b0eb8f8 -2023-07-08 10:22:50.325898 2023-07-08 10:22:50.325904 mef 7691 R rec 1caa2a33-b0a8-4a12-b16a-414a220c384d -2023-07-08 10:22:51.35882 2023-07-08 10:22:51.358825 mef 7692 R rec e21ec4ca-c327-4675-a553-af880d6656fe -2023-07-08 10:22:51.754379 2023-07-08 10:22:51.754391 mef 7693 R rec fdec3087-8acf-413f-ae8d-b166304d3310 -2023-07-08 10:22:52.205858 2023-07-08 10:22:52.205886 mef 7694 R rec 08f5ea41-e746-456a-930b-3f7ef9ce22ea -2023-07-08 10:22:52.623477 2023-07-08 10:22:52.623485 mef 7695 R rec 54695b12-be32-4a89-b649-5118aa31d1f5 -2023-07-08 10:22:52.932871 2023-07-08 10:22:52.932883 mef 7696 R rec c9d007ac-02a8-4214-b214-dbf49056a11c -2023-07-08 10:22:53.479649 2023-07-08 10:22:53.479655 mef 7697 R rec 5037d9ab-f558-4c88-a509-93619ed85a5b -2023-07-08 10:22:53.856522 2023-07-08 10:22:53.856528 mef 7698 R rec 492f75aa-6a33-4b04-b95e-71cc3858077f -2023-07-08 10:22:54.244838 2023-07-08 10:22:54.244851 mef 7699 R rec 664e2626-9afb-40b9-807c-615665e19dc8 -2023-07-08 10:22:54.685238 2023-07-08 10:22:54.685243 mef 7700 R rec 0a6f0d2b-b585-4ac4-8ef4-72a002089d8d -2023-07-08 10:22:55.081258 2023-07-08 10:22:55.081275 mef 7701 R rec 3475e723-218a-4006-9f65-22a58929b911 -2023-07-08 10:22:55.453873 2023-07-08 10:22:55.453889 mef 7702 R rec c5b2b62f-e277-442c-bcb4-d46f45f24081 -2023-07-08 10:22:55.942137 2023-07-08 10:22:55.942144 mef 7703 R rec ac9cff88-e23b-464f-a270-a6f3452923df -2023-07-08 10:22:56.252098 2023-07-08 10:22:56.25212 mef 7704 R rec b39d4968-2f7c-4ca1-a980-d354da18b909 -2023-07-08 10:22:56.985335 2023-07-08 10:22:56.985342 mef 7705 R rec 9b7e0232-1690-41c7-8340-f82bef77b328 -2023-07-08 10:22:57.790692 2023-07-08 10:22:57.790698 mef 7706 R rec 485eae74-9335-438c-97bd-881f704f6394 -2023-07-08 10:22:58.203655 2023-07-08 10:22:58.203689 mef 7707 R rec e1ddad0f-7671-4392-94f6-ea2963f376c8 -2023-07-08 10:22:58.573558 2023-07-08 10:22:58.573564 mef 7708 R rec 489bff0d-3876-4e46-b982-f331f8c094c8 -2023-07-08 10:22:58.965864 2023-07-08 10:22:58.965868 mef 7709 R rec 54d75da6-eb07-409d-a7ae-0134770830fe -2023-07-08 10:22:59.353835 2023-07-08 10:22:59.353847 mef 7710 R rec 83e321fd-a6ca-45ea-a501-b8f4149c46bd -2023-07-08 10:23:00.012452 2023-07-08 10:23:00.012457 mef 7711 R rec f8ce285a-fabe-43cd-be23-b3dfc27ca0f2 -2023-07-08 10:23:00.39083 2023-07-08 10:23:00.390842 mef 7712 R rec 6ef99183-7ca6-4f13-a556-50844013b3a2 -2023-07-08 10:23:00.852439 2023-07-08 10:23:00.852447 mef 7713 R rec 27372e56-d819-4b53-a7eb-460288375a7a -2023-07-08 10:23:01.214036 2023-07-08 10:23:01.214042 mef 7714 R rec aadebe02-64b3-4209-9e74-1667ecc10203 -2023-07-08 10:23:01.604503 2023-07-08 10:23:01.604515 mef 7715 R rec 34793260-d2d2-42d2-977d-a8e6587e40d2 -2023-07-08 10:23:01.983552 2023-07-08 10:23:01.983558 mef 7716 R rec d3dbb6e7-c2b5-451e-b973-1ab2e181660f -2023-07-08 10:23:02.254047 2023-07-08 10:23:02.254052 mef 7717 R rec 1d7398e3-4b25-4589-87b9-bbf9d7e74b59 -2023-07-08 10:23:02.688019 2023-07-08 10:23:02.688041 mef 7718 R rec 328bab0e-37e3-4f1f-8775-a0bcff4bc9c3 -2023-07-08 10:23:03.372606 2023-07-08 10:23:03.372612 mef 7719 R rec 8f98b6e6-c02a-439e-acf7-f9f167381f8f +2024-09-11 09:00:07.139321 2024-09-11 09:00:07.139326 mef 1 R rec f1548543-d23e-4722-91bb-477957175b77 +2024-09-11 09:00:07.190333 2024-09-11 09:00:07.190338 mef 2 R rec 0aa5bf55-08d4-4b8a-98da-ec049b176c6c +2024-09-11 09:00:07.236824 2024-09-11 09:00:07.236829 mef 3 R rec 5852ab08-c6dc-49ea-91f8-52414cb9b2c5 +2024-09-11 09:00:07.285589 2024-09-11 09:00:07.285594 mef 4 R rec c07adac6-61a8-4dae-9f82-1c0efb54d44e +2024-09-11 09:00:07.362446 2024-09-11 09:00:07.362452 mef 5 R rec 0ea3b468-7b95-4c1b-b841-d640204ff8ff +2024-09-11 09:00:07.40938 2024-09-11 09:00:07.409385 mef 6 R rec b851c6dc-5438-431a-bb96-e88c4d1a521c +2024-09-11 09:00:07.458499 2024-09-11 09:00:07.458505 mef 7 R rec fa06e125-2e5a-4d36-8c89-50e7bc9a8f32 +2024-09-11 09:00:07.50672 2024-09-11 09:00:07.506724 mef 8 R rec d1b28f84-c89f-4756-9c11-978734b9b76e +2024-09-11 09:00:07.557563 2024-09-11 09:00:07.557567 mef 9 R rec 7896da6b-d69d-4241-9fdb-e0558777e26e +2024-09-11 09:00:07.605919 2024-09-11 09:00:07.605923 mef 10 R rec 03d7ffd1-6d93-4daf-8927-1c822d80dab7 +2024-09-11 09:00:07.654856 2024-09-11 09:00:07.654858 mef 11 R rec 8dabb71a-2ac4-45d4-9a02-80d01d360c10 +2024-09-11 09:00:07.708284 2024-09-11 09:00:07.708288 mef 12 R rec c1b37441-1a40-4a45-bbbb-caee463eb5d7 +2024-09-11 09:00:07.75505 2024-09-11 09:00:07.755055 mef 13 R rec 6774399b-0800-479b-bbd7-0bca3072ec3f +2024-09-11 09:00:07.805171 2024-09-11 09:00:07.805175 mef 14 R rec 8f60adde-5d03-401d-a0ec-e021f49844a8 +2024-09-11 09:00:07.857534 2024-09-11 09:00:07.857539 mef 15 R rec 753bb02d-0568-46b6-be68-4846aecab45e +2024-09-11 09:00:07.91223 2024-09-11 09:00:07.912234 mef 16 R rec 27244094-9d7b-4ac4-bf37-bbb195b5fc9d +2024-09-11 09:00:07.96218 2024-09-11 09:00:07.962185 mef 17 R rec e8533191-53be-4ca2-a9a7-c32180a9d2ff +2024-09-11 09:00:08.011679 2024-09-11 09:00:08.011684 mef 18 R rec 14ef28c5-ee64-4710-817e-86227fe945c6 +2024-09-11 09:00:08.057718 2024-09-11 09:00:08.057722 mef 19 R rec 736a8813-9d8c-49c9-8a59-132f2ba4b78a +2024-09-11 09:00:08.105278 2024-09-11 09:00:08.105282 mef 20 R rec 6961a8ae-db7a-4013-af8d-1f59736d0e84 +2024-09-11 09:00:08.154192 2024-09-11 09:00:08.154197 mef 21 R rec 54bcaf81-897e-4c10-8605-60e75fe54ba1 +2024-09-11 09:00:08.203298 2024-09-11 09:00:08.203302 mef 22 R rec 346e78dd-d5d3-46b4-ad33-40ea87b4871f +2024-09-11 09:00:08.252058 2024-09-11 09:00:08.252063 mef 23 R rec 3a8c535b-bd39-41b8-abe4-72c0ca4d3a27 +2024-09-11 09:00:08.299354 2024-09-11 09:00:08.299359 mef 24 R rec 2dc04e2c-4472-4acc-a435-d5c0f9f80565 +2024-09-11 09:00:08.349969 2024-09-11 09:00:08.349973 mef 25 R rec 6412fa32-6417-4f44-b069-238426b1bcc3 +2024-09-11 09:00:08.403104 2024-09-11 09:00:08.403109 mef 26 R rec 26b01bbc-e9bb-4f97-a8b1-9a3851d1c90b +2024-09-11 09:00:08.456326 2024-09-11 09:00:08.45633 mef 27 R rec 8a898d61-8ad4-4e7d-a3c6-6f4c200f99ec +2024-09-11 09:00:08.510986 2024-09-11 09:00:08.510991 mef 28 R rec 957c0383-81ea-484d-9ca1-59ab634f3bed +2024-09-11 09:00:08.567749 2024-09-11 09:00:08.567753 mef 29 R rec 95146756-6fa5-40bd-a98c-7320d861dc0a +2024-09-11 09:00:08.619317 2024-09-11 09:00:08.619321 mef 30 R rec ae9715ae-fa69-4141-8e64-b717d8487e52 +2024-09-11 09:00:08.671185 2024-09-11 09:00:08.671189 mef 31 R rec 9e5f461f-b8cd-48b6-a634-676a8d9d41cf +2024-09-11 09:00:08.720593 2024-09-11 09:00:08.720598 mef 32 R rec 67aa5473-4113-49e3-b173-33d345529a97 +2024-09-11 09:00:08.769886 2024-09-11 09:00:08.769891 mef 33 R rec 7ce1f69c-7db9-4663-b858-86b1b990db72 +2024-09-11 09:00:08.819607 2024-09-11 09:00:08.819611 mef 34 R rec 8d5a095b-cb07-4fdd-90bf-f7e89539eef0 +2024-09-11 09:00:08.888599 2024-09-11 09:00:08.888605 mef 35 R rec 03de3b35-a8ea-4972-831e-dfc8e246e1fb +2024-09-11 09:00:08.945095 2024-09-11 09:00:08.9451 mef 36 R rec ddadb154-c8c9-465b-921c-e4596c6344c2 +2024-09-11 09:00:08.992916 2024-09-11 09:00:08.992921 mef 37 R rec 0c650e0a-3319-4dd8-ae99-3b4302ddee70 +2024-09-11 09:00:09.042451 2024-09-11 09:00:09.042456 mef 38 R rec c116f503-95e4-45e4-830f-e0d922f527f5 +2024-09-11 09:00:09.091953 2024-09-11 09:00:09.091958 mef 39 R rec f0bef1a1-fc73-4f60-8193-f5d462676e3b +2024-09-11 09:00:09.140527 2024-09-11 09:00:09.140532 mef 40 R rec 4dd81a43-69a6-4058-a089-8f9f20d253ca +2024-09-11 09:00:09.190351 2024-09-11 09:00:09.190354 mef 41 R rec 89138a91-b282-427d-893f-3049743099b4 +2024-09-11 09:00:09.242291 2024-09-11 09:00:09.242296 mef 42 R rec f33f0927-3e7a-4ef1-ae88-ad5696de491b +2024-09-11 09:00:09.294479 2024-09-11 09:00:09.294483 mef 43 R rec f676444a-1250-41ff-9d10-d75b007db8c7 +2024-09-11 09:00:09.348066 2024-09-11 09:00:09.34807 mef 44 R rec abb806d5-92bb-430c-91ff-5db13342225e +2024-09-11 09:00:09.395413 2024-09-11 09:00:09.395418 mef 45 R rec 44283540-fca2-48a6-89cd-f93e73f367db +2024-09-11 09:00:09.444807 2024-09-11 09:00:09.444812 mef 46 R rec 374a994c-7e36-4e00-bdd5-17213a1ebd3c +2024-09-11 09:00:09.494597 2024-09-11 09:00:09.494602 mef 47 R rec 3c2576c7-f0c4-4f00-8914-9f6c8d92677e +2024-09-11 09:00:09.543782 2024-09-11 09:00:09.543787 mef 48 R rec 8271afd0-8775-48c1-9b8d-d5ba1efece42 +2024-09-11 09:00:09.601331 2024-09-11 09:00:09.601335 mef 49 R rec cef62a20-b96c-4fa2-a7d3-b4cea6afcc90 +2024-09-11 09:00:09.660173 2024-09-11 09:00:09.660179 mef 50 R rec 5102fc69-33ae-49e9-91e5-471913258044 +2024-09-11 09:00:09.711214 2024-09-11 09:00:09.711233 mef 51 R rec 799bb295-4d42-4922-b8c9-5db53bab9fcd +2024-09-11 09:00:09.762358 2024-09-11 09:00:09.762363 mef 52 R rec a13e0876-64ee-4e12-851e-fa6a8169ba03 +2024-09-11 09:00:09.811587 2024-09-11 09:00:09.811592 mef 53 R rec f6db22ef-32b3-47ab-9a9a-ddbc9a4f7af5 +2024-09-11 09:00:09.86203 2024-09-11 09:00:09.862034 mef 54 R rec c2c01901-f6f3-4a97-95fe-e3e80bb90376 +2024-09-11 09:00:09.910586 2024-09-11 09:00:09.910591 mef 55 R rec 272acdde-bf61-4ed7-9e4d-6e745837e8ba +2024-09-11 09:00:09.96283 2024-09-11 09:00:09.962834 mef 56 R rec 67791670-2d80-4285-88dc-a9d5e646fda4 +2024-09-11 09:00:10.014398 2024-09-11 09:00:10.014403 mef 57 R rec a317f965-1c81-46e0-9a29-49e114f220c9 +2024-09-11 09:00:10.067412 2024-09-11 09:00:10.067416 mef 58 R rec 3ab58765-24da-4232-aab3-7641d55ef810 +2024-09-11 09:00:10.130125 2024-09-11 09:00:10.13013 mef 59 R rec aa237436-f7d7-4876-8bf6-ad9b1a06ab67 +2024-09-11 09:00:10.17952 2024-09-11 09:00:10.179525 mef 60 R rec da2b0641-ad34-405d-8dd3-908a400e5dea +2024-09-11 09:00:10.229814 2024-09-11 09:00:10.229818 mef 61 R rec fa63f5d2-a60f-4837-bdeb-e661d7db2c46 +2024-09-11 09:00:10.281698 2024-09-11 09:00:10.281702 mef 62 R rec 4c60948a-c81a-441f-90d4-a85872f5f080 +2024-09-11 09:00:10.333479 2024-09-11 09:00:10.333483 mef 63 R rec 65d7c0ab-d1b0-47d8-9535-603e3be60348 +2024-09-11 09:00:10.396261 2024-09-11 09:00:10.396266 mef 64 R rec 84fbd7a4-d039-42c2-ac1d-90cd63a52766 +2024-09-11 09:00:10.445004 2024-09-11 09:00:10.445009 mef 65 R rec c5b5f5fd-81e5-406f-939e-a16c1a7ec584 +2024-09-11 09:00:10.496585 2024-09-11 09:00:10.49659 mef 66 R rec ba486b0a-6522-44df-8574-95be31c3776d +2024-09-11 09:00:10.547654 2024-09-11 09:00:10.547659 mef 67 R rec 881b2c6f-71a8-486b-9068-1eefcf820e6c +2024-09-11 09:00:10.598763 2024-09-11 09:00:10.598769 mef 68 R rec 3e03523d-b938-432a-acdd-5de5f2a7ed0f +2024-09-11 09:00:10.650854 2024-09-11 09:00:10.650859 mef 69 R rec 43508641-4a31-431e-9458-9d96402bc17e +2024-09-11 09:00:10.702391 2024-09-11 09:00:10.702396 mef 70 R rec df4377b2-8922-42fe-96d6-48734c68b518 +2024-09-11 09:00:10.765963 2024-09-11 09:00:10.765968 mef 71 R rec 40794796-af7b-4c53-94f4-8edd2083b20a +2024-09-11 09:00:10.818928 2024-09-11 09:00:10.818932 mef 72 R rec 1f95ea0d-b618-4c3f-a3b2-fba109727ebb +2024-09-11 09:00:10.87143 2024-09-11 09:00:10.871435 mef 73 R rec bce22305-b96f-4aaa-8264-609eee450c71 +2024-09-11 09:00:10.923028 2024-09-11 09:00:10.923033 mef 74 R rec 82964101-68d8-4b9d-9575-61fb466d02ed +2024-09-11 09:00:10.973134 2024-09-11 09:00:10.973138 mef 75 R rec bbfb1e4e-4ac1-4cc9-bd87-617ab2cddf57 +2024-09-11 09:00:11.025932 2024-09-11 09:00:11.025936 mef 76 R rec af4fe2c3-136c-4ad7-8d75-fa33d9c74639 +2024-09-11 09:00:11.081117 2024-09-11 09:00:11.081122 mef 77 R rec 73d240ce-ef61-4c44-a57d-dd09bf36d5be +2024-09-11 09:00:11.142724 2024-09-11 09:00:11.14273 mef 78 R rec 163000b1-ae73-49da-a802-cd7a84a7655a +2024-09-11 09:00:11.194812 2024-09-11 09:00:11.194817 mef 79 R rec 0849c22f-dd1c-49e5-b160-df29278bb4af +2024-09-11 09:00:11.25896 2024-09-11 09:00:11.258965 mef 80 R rec 923410de-b11d-4cf3-9e43-c65d1ac3aa3d +2024-09-11 09:00:11.32419 2024-09-11 09:00:11.324195 mef 81 R rec c16d3971-e3fc-45e7-8923-98ae5cd903a1 +2024-09-11 09:00:11.375946 2024-09-11 09:00:11.375951 mef 82 R rec 8a52e7ef-ebe7-496d-95db-840c5741df9f +2024-09-11 09:00:11.424 2024-09-11 09:00:11.424004 mef 83 R rec 6f386b67-a06f-4e76-ad1f-e8960105ef11 +2024-09-11 09:00:11.478294 2024-09-11 09:00:11.478298 mef 84 R rec 0f3a04c9-a7c8-45f1-a5e5-f98604b64f5f +2024-09-11 09:00:11.52949 2024-09-11 09:00:11.529496 mef 85 R rec 8333719e-c40d-46d1-811b-0016d4ce5674 +2024-09-11 09:00:11.581068 2024-09-11 09:00:11.581071 mef 86 R rec f8d21bf3-a065-40d2-a1e3-1c0737f41a21 +2024-09-11 09:00:11.638491 2024-09-11 09:00:11.638495 mef 87 R rec 94b8923e-be9e-4dfe-8aa2-0a7903649614 +2024-09-11 09:00:11.693624 2024-09-11 09:00:11.693628 mef 88 R rec 65616999-25e7-433c-9d9a-2c8b84069614 +2024-09-11 09:00:11.758888 2024-09-11 09:00:11.758894 mef 89 R rec 66ed87c9-e4f1-4d73-a51a-dd5c387736ae +2024-09-11 09:00:11.834047 2024-09-11 09:00:11.834052 mef 90 R rec a34ba6fc-92bb-4df6-819c-2a11bfdeff63 +2024-09-11 09:00:11.883313 2024-09-11 09:00:11.883318 mef 91 R rec 7c9bd466-a334-44f3-be42-f0421aa65960 +2024-09-11 09:00:11.933992 2024-09-11 09:00:11.933997 mef 92 R rec ab1dee0c-4643-4325-9591-9a89a9724e16 +2024-09-11 09:00:11.985346 2024-09-11 09:00:11.98535 mef 93 R rec 0c0ddd5d-af4e-439a-935a-0d5be59f2ea3 +2024-09-11 09:00:12.045669 2024-09-11 09:00:12.045674 mef 94 R rec f88770fd-3195-4603-b194-cf8c71e4783f +2024-09-11 09:00:12.105023 2024-09-11 09:00:12.105028 mef 95 R rec e8a9e228-cbe6-4acb-986b-3824d993e73d +2024-09-11 09:00:12.15658 2024-09-11 09:00:12.156584 mef 96 R rec 3aa40a7a-cf18-413c-9114-e5dfd95a0642 +2024-09-11 09:00:12.220786 2024-09-11 09:00:12.220791 mef 97 R rec c817b4fc-147f-4b61-95a0-a24b2705238b +2024-09-11 09:00:12.269811 2024-09-11 09:00:12.269815 mef 98 R rec ae082456-1101-4ac9-afae-25353f3556f3 +2024-09-11 09:00:12.326287 2024-09-11 09:00:12.326292 mef 99 R rec d72ac4e9-88cc-487e-9058-f185e8e6a908 +2024-09-11 09:00:12.376325 2024-09-11 09:00:12.376331 mef 100 R rec 2c0d40f7-7683-4e29-ac26-3123aeb556ff +2024-09-11 09:00:12.438798 2024-09-11 09:00:12.438803 mef 101 R rec 8154881b-5af6-49ae-baf2-c60cbbb117dd +2024-09-11 09:00:12.489584 2024-09-11 09:00:12.489588 mef 102 R rec 37e788d2-a8c5-4171-8cc0-e110f59eb918 +2024-09-11 09:00:12.541435 2024-09-11 09:00:12.54144 mef 103 R rec 76289972-eda0-402e-9b32-f919d5390652 +2024-09-11 09:00:12.607595 2024-09-11 09:00:12.607601 mef 104 R rec 9f300cd2-29e4-4f58-b90b-6331349b6445 +2024-09-11 09:00:12.655911 2024-09-11 09:00:12.655916 mef 105 R rec 7e803aa2-f3d9-4950-80a7-94aac29690e7 +2024-09-11 09:00:12.710263 2024-09-11 09:00:12.710268 mef 106 R rec 683bb917-c815-4276-bb9b-2de4966934ff +2024-09-11 09:00:12.779264 2024-09-11 09:00:12.779269 mef 107 R rec 9847b9f9-4d92-4e01-a667-9997d9d3d127 +2024-09-11 09:00:12.8371 2024-09-11 09:00:12.837105 mef 108 R rec 2ca1fc43-bdd6-4e51-bdc0-afad72dfcd28 +2024-09-11 09:00:12.897975 2024-09-11 09:00:12.89798 mef 109 R rec 49a1a517-951f-4e06-9940-0b9802f5b347 +2024-09-11 09:00:12.949372 2024-09-11 09:00:12.949376 mef 110 R rec 29faeb27-21d4-4afe-98fc-d9430bc18836 +2024-09-11 09:00:13.003464 2024-09-11 09:00:13.003469 mef 111 R rec aa9cd60b-a759-4d14-9c3d-cb7f0adc7c3f +2024-09-11 09:00:13.070047 2024-09-11 09:00:13.070052 mef 112 R rec af1356c3-e667-4aa8-b9eb-38da080e8078 +2024-09-11 09:00:13.126416 2024-09-11 09:00:13.126421 mef 113 R rec 1751cb48-b263-4ace-88df-ec40d644bee5 +2024-09-11 09:00:13.174829 2024-09-11 09:00:13.174834 mef 114 R rec 3c5393d9-837a-4d0a-b6d1-451816c35df3 +2024-09-11 09:00:13.225311 2024-09-11 09:00:13.225316 mef 115 R rec 7af2094c-8d12-4c97-af1d-23e8439905cb +2024-09-11 09:00:13.274596 2024-09-11 09:00:13.274601 mef 116 R rec b9d49240-cc4e-496d-b471-3d6b31256463 +2024-09-11 09:00:13.323959 2024-09-11 09:00:13.323964 mef 117 R rec 04d221d7-a1d7-43f2-b2bb-a9b93efa24a9 +2024-09-11 09:00:13.371834 2024-09-11 09:00:13.371839 mef 118 R rec ff5eb2f0-f2f6-4023-9a59-b6a34100307c +2024-09-11 09:00:13.418193 2024-09-11 09:00:13.418198 mef 119 R rec d5ccadef-230e-4cb8-b39a-02f970e3cbef +2024-09-11 09:00:13.468246 2024-09-11 09:00:13.468251 mef 120 R rec 26d3cc72-af75-4bba-a0ed-032e43bc359d +2024-09-11 09:00:13.518094 2024-09-11 09:00:13.518099 mef 121 R rec 22119d74-5a7d-4c3e-a13e-b2736032d945 +2024-09-11 09:00:13.565735 2024-09-11 09:00:13.56574 mef 122 R rec c93f0d7a-827c-4000-a2df-9b06de3c61c7 +2024-09-11 09:00:13.616578 2024-09-11 09:00:13.616582 mef 123 R rec bcb94298-a634-4010-8e96-8ba2267acdc2 +2024-09-11 09:00:13.666866 2024-09-11 09:00:13.666871 mef 124 R rec e91c593f-31dd-4406-91f4-f8e9d83cdbfd +2024-09-11 09:00:13.725445 2024-09-11 09:00:13.72545 mef 125 R rec a4af1c8a-3a92-4ee9-b525-798a5627ce64 +2024-09-11 09:00:13.788102 2024-09-11 09:00:13.788106 mef 126 R rec bdd76964-dced-47ac-bf2d-79750b143748 +2024-09-11 09:00:13.840491 2024-09-11 09:00:13.840495 mef 127 R rec 2f13fc2f-bff6-4782-a6b9-17871b64862e +2024-09-11 09:00:13.889989 2024-09-11 09:00:13.889993 mef 128 R rec 5b4ed53b-7a50-4b3e-969e-ffc45dedbce2 +2024-09-11 09:00:13.940938 2024-09-11 09:00:13.940943 mef 129 R rec 56679fdf-089d-498f-a33d-eb82169ed104 +2024-09-11 09:00:13.990326 2024-09-11 09:00:13.990331 mef 130 R rec afaacf70-653d-4bf8-8f98-6a1602438e47 +2024-09-11 09:00:14.049773 2024-09-11 09:00:14.049777 mef 131 R rec 855463a8-d282-4236-bd2c-42615ed1c8b5 +2024-09-11 09:00:14.10671 2024-09-11 09:00:14.106715 mef 132 R rec 42bef282-5b4e-4370-a12b-86c4be69f8c2 +2024-09-11 09:00:14.155461 2024-09-11 09:00:14.155466 mef 133 R rec 3fc1e6c6-a161-41ef-b9ea-a094fc0bda0e +2024-09-11 09:00:14.206982 2024-09-11 09:00:14.206987 mef 134 R rec 8de81610-7e3b-4bff-ac36-d44b91b90852 +2024-09-11 09:00:14.257674 2024-09-11 09:00:14.257679 mef 135 R rec b0378c6f-e125-4159-8636-27d000398245 +2024-09-11 09:00:14.316439 2024-09-11 09:00:14.316444 mef 136 R rec ee9e976c-b8d2-40e4-899d-5ea1df57e5ee +2024-09-11 09:00:14.368262 2024-09-11 09:00:14.368266 mef 137 R rec ce702e3e-67ea-46ac-830b-0c3648d6499e +2024-09-11 09:00:14.420314 2024-09-11 09:00:14.420318 mef 138 R rec 59397cc4-d6f5-4a7d-ba47-b5d9f348c547 +2024-09-11 09:00:14.477941 2024-09-11 09:00:14.477946 mef 139 R rec f6572c4e-8ef7-4bcb-bec8-a417fc4e0301 +2024-09-11 09:00:14.540018 2024-09-11 09:00:14.540023 mef 140 R rec 3ded8a12-699e-41bb-b4cc-76cb210ae691 +2024-09-11 09:00:14.590629 2024-09-11 09:00:14.590634 mef 141 R rec d86535fe-0d9b-487a-8d66-4240965bb6c4 +2024-09-11 09:00:14.642468 2024-09-11 09:00:14.642472 mef 142 R rec bdd75ee5-2456-4856-a8d8-0b3f6d4f4175 +2024-09-11 09:00:14.698597 2024-09-11 09:00:14.698602 mef 143 R rec a36801c2-4324-404f-b4b3-3603c335ad7d +2024-09-11 09:00:14.756771 2024-09-11 09:00:14.756776 mef 144 R rec a6212381-1419-4406-b1b5-cee1c812b1af +2024-09-11 09:00:14.805623 2024-09-11 09:00:14.805628 mef 145 R rec 81dc1aac-2554-4f39-8b87-8ff60157293d +2024-09-11 09:00:14.85769 2024-09-11 09:00:14.857695 mef 146 R rec a5d3aeb2-4e16-4ca2-b76f-353c50c2a1e8 +2024-09-11 09:00:14.909444 2024-09-11 09:00:14.909449 mef 147 R rec a31e3be3-d9fd-477d-bc2c-8ab4f14992c1 +2024-09-11 09:00:14.963374 2024-09-11 09:00:14.96338 mef 148 R rec d01a7475-c2f8-4ee2-a302-40c92c1c0434 +2024-09-11 09:00:15.011405 2024-09-11 09:00:15.011411 mef 149 R rec d0df240a-6ff1-4738-a382-63c5c0ce30d3 +2024-09-11 09:00:15.065363 2024-09-11 09:00:15.065368 mef 150 R rec 0ce8d4f6-dbb1-4279-82cc-59fab1fe6be9 +2024-09-11 09:00:15.128288 2024-09-11 09:00:15.128293 mef 151 R rec 3e87507b-a590-463e-bf53-9b4a65b89e6b +2024-09-11 09:00:15.182988 2024-09-11 09:00:15.182993 mef 152 R rec c6a35d9e-ae3d-41b3-8d0e-716417091388 +2024-09-11 09:00:15.239789 2024-09-11 09:00:15.239794 mef 153 R rec 8151864a-5ebd-41f5-ac70-d291b9aea380 +2024-09-11 09:00:15.301434 2024-09-11 09:00:15.301438 mef 154 R rec f7b801e7-2c24-4d85-b51a-0bd3240f09d0 +2024-09-11 09:00:15.352167 2024-09-11 09:00:15.352171 mef 155 R rec eb046c44-da97-4b74-b4a4-bac9e1dc7e40 +2024-09-11 09:00:15.414058 2024-09-11 09:00:15.414063 mef 156 R rec c4cb6792-7ff8-4338-b7f1-ca8436c14916 +2024-09-11 09:00:15.466225 2024-09-11 09:00:15.46623 mef 157 R rec 66570c09-0a59-4480-84ce-da8a6b6dc0ba +2024-09-11 09:00:15.519971 2024-09-11 09:00:15.519976 mef 158 R rec 23403527-7586-4eed-b935-1564b0a47c36 +2024-09-11 09:00:15.574653 2024-09-11 09:00:15.574658 mef 159 R rec 6517e75c-128e-46eb-8ce4-228fe2918644 +2024-09-11 09:00:15.626051 2024-09-11 09:00:15.626057 mef 160 R rec 255bbebe-58a8-47cf-ac11-92ac47fc2e2a +2024-09-11 09:00:15.691801 2024-09-11 09:00:15.691804 mef 161 R rec 58fbc9d5-33a6-4fbc-be6f-d27ef3e02eb3 +2024-09-11 09:00:15.744248 2024-09-11 09:00:15.744253 mef 162 R rec 7c882783-152c-49f3-acfc-0825b131e2b7 +2024-09-11 09:00:15.798255 2024-09-11 09:00:15.79826 mef 163 R rec 50f39101-81c5-4e45-a6d1-144cb5fb56ce +2024-09-11 09:00:15.856066 2024-09-11 09:00:15.85607 mef 164 R rec 5ecd5de4-1c4a-4f16-9d74-86f5cec2a969 +2024-09-11 09:00:15.929741 2024-09-11 09:00:15.929745 mef 165 R rec 3def222e-5c17-47ab-b6dc-6bf1860436aa +2024-09-11 09:00:15.991233 2024-09-11 09:00:15.991237 mef 166 R rec 0eb06c2f-581c-4ed9-b486-faac47280873 +2024-09-11 09:00:16.046736 2024-09-11 09:00:16.04674 mef 167 R rec db06c7d3-c6c2-4906-8b10-057260b4ceed +2024-09-11 09:00:16.102086 2024-09-11 09:00:16.10209 mef 168 R rec 135469d9-6cbd-47bb-b9db-a5b40c129622 +2024-09-11 09:00:16.155423 2024-09-11 09:00:16.155428 mef 169 R rec e18718c6-4956-4996-b6d4-93b0c51895c1 +2024-09-11 09:00:16.23395 2024-09-11 09:00:16.233954 mef 170 R rec 1685f1a4-0499-4936-a603-31af2107021f +2024-09-11 09:00:16.2826 2024-09-11 09:00:16.282604 mef 171 R rec de517a37-8d36-4a00-97d6-c05b8f2ee2f1 +2024-09-11 09:00:16.337588 2024-09-11 09:00:16.337593 mef 172 R rec 6e75cbf6-67fc-4c7b-88d4-12fe24dfd5ae +2024-09-11 09:00:16.400622 2024-09-11 09:00:16.400626 mef 173 R rec a7ad1435-c85d-4760-b08a-da9d90dd48f9 +2024-09-11 09:00:16.453396 2024-09-11 09:00:16.453401 mef 174 R rec e70735fd-4989-4a3d-b92a-184ca23febe9 +2024-09-11 09:00:16.50546 2024-09-11 09:00:16.505464 mef 175 R rec 973b1ca1-eec7-4160-9c86-5da13cb3eef2 +2024-09-11 09:00:16.55823 2024-09-11 09:00:16.558235 mef 176 R rec 96a5d3b0-6972-47a7-a9a7-a1697d06842a +2024-09-11 09:00:16.616624 2024-09-11 09:00:16.616628 mef 177 R rec 95a73249-f0ce-4ba3-a037-ab464ee46095 +2024-09-11 09:00:16.672338 2024-09-11 09:00:16.672343 mef 178 R rec 94107945-683d-4957-83e3-3f7da1892ddc +2024-09-11 09:00:16.725923 2024-09-11 09:00:16.725926 mef 179 R rec da899f01-8cac-41db-b846-15391ecca1af +2024-09-11 09:00:16.777554 2024-09-11 09:00:16.777559 mef 180 R rec 733c06bc-1857-4c64-afc2-b67e54b3d392 +2024-09-11 09:00:16.830129 2024-09-11 09:00:16.830134 mef 181 R rec d11919fe-baa2-40a1-972e-2adbb98e9ea4 +2024-09-11 09:00:16.883449 2024-09-11 09:00:16.883454 mef 182 R rec 98056801-2ab3-4765-933c-abd45183bfc1 +2024-09-11 09:00:16.944351 2024-09-11 09:00:16.944357 mef 183 R rec 55e1de4c-1f3c-431c-b6d9-c8faf648747c +2024-09-11 09:00:17.007267 2024-09-11 09:00:17.007271 mef 184 R rec b9f89f2b-fd24-47ff-898a-62b2015d5be1 +2024-09-11 09:00:17.061147 2024-09-11 09:00:17.061152 mef 185 R rec 1610da3a-40ea-481d-b633-51b2f0a752e7 +2024-09-11 09:00:17.114959 2024-09-11 09:00:17.114964 mef 186 R rec 0951de74-1606-4209-ab41-3387cbf6db63 +2024-09-11 09:00:17.164016 2024-09-11 09:00:17.164022 mef 187 R rec ecba14a7-a116-4a51-8cec-4b1a1fb352d6 +2024-09-11 09:00:17.217959 2024-09-11 09:00:17.217964 mef 188 R rec cf27ba62-2501-4b77-991f-b867f921bc3f +2024-09-11 09:00:17.28087 2024-09-11 09:00:17.280874 mef 189 R rec fd58be77-d510-4fee-af9e-9d6d6f114a88 +2024-09-11 09:00:17.347625 2024-09-11 09:00:17.347633 mef 190 R rec 59b2c531-f1c7-437a-b042-1cf384915988 +2024-09-11 09:00:17.410272 2024-09-11 09:00:17.410278 mef 191 R rec 6ceee98d-2519-41ac-a539-92868eb0f8b4 +2024-09-11 09:00:17.484783 2024-09-11 09:00:17.484788 mef 192 R rec 0a16bfcd-ef58-4047-87b7-ecfb89b8aa16 +2024-09-11 09:00:17.549332 2024-09-11 09:00:17.549341 mef 193 R rec fe68c1bb-04a6-43d0-8d31-5c23a6912357 +2024-09-11 09:00:17.603052 2024-09-11 09:00:17.603056 mef 194 R rec 43b50434-5322-4e84-8eb4-a3883c729c63 +2024-09-11 09:00:17.654606 2024-09-11 09:00:17.654611 mef 195 R rec 3df35ee3-07bf-4a33-842d-c02e75d19899 +2024-09-11 09:00:17.709195 2024-09-11 09:00:17.709199 mef 196 R rec 374c975b-21ab-4606-b052-e43458a878aa +2024-09-11 09:00:17.765504 2024-09-11 09:00:17.765509 mef 197 R rec 67ddf986-74ce-4b62-af35-33c1dc475557 +2024-09-11 09:00:17.818654 2024-09-11 09:00:17.818659 mef 198 R rec daf6a9d0-b4d3-4980-9270-20a0196b35fe +2024-09-11 09:00:17.87533 2024-09-11 09:00:17.875335 mef 199 R rec 61a4d498-5042-482c-99ab-903c5dbf3d33 +2024-09-11 09:00:17.932559 2024-09-11 09:00:17.932564 mef 200 R rec 142af984-21dc-478c-a220-c1f8fb4e5848 +2024-09-11 09:00:17.993987 2024-09-11 09:00:17.993992 mef 201 R rec 2e14a3c7-e5ac-4c31-b451-746da0ea6936 +2024-09-11 09:00:18.054348 2024-09-11 09:00:18.054352 mef 202 R rec 26d095a1-dada-4be1-befe-ac073ec9ef1c +2024-09-11 09:00:18.115695 2024-09-11 09:00:18.1157 mef 203 R rec 96b6a923-49e1-48ed-a140-8f258e5a99a9 +2024-09-11 09:00:18.186898 2024-09-11 09:00:18.186903 mef 204 R rec 302d9ee6-8ca5-4c67-8ae5-33f4a523c37d +2024-09-11 09:00:18.259017 2024-09-11 09:00:18.259022 mef 205 R rec 79d9f978-7deb-4251-8ed6-26e5c247cd3e +2024-09-11 09:00:18.310938 2024-09-11 09:00:18.310943 mef 206 R rec c74fda0b-cfdf-4c95-9070-3ad590f542a1 +2024-09-11 09:00:18.36493 2024-09-11 09:00:18.364936 mef 207 R rec 947a6955-269a-4e60-8607-e4d13e52638f +2024-09-11 09:00:18.420706 2024-09-11 09:00:18.42071 mef 208 R rec 43feb652-1981-4886-a78f-4c10d04bac5b +2024-09-11 09:00:18.482701 2024-09-11 09:00:18.482705 mef 209 R rec d409f04d-1f74-406a-977e-e0e8103e963f +2024-09-11 09:00:18.543935 2024-09-11 09:00:18.54394 mef 210 R rec 3772bab2-98e9-4538-b6d3-6def70812200 +2024-09-11 09:00:18.603626 2024-09-11 09:00:18.603631 mef 211 R rec e82d50a2-7c3a-4a74-a38d-db651e1729a1 +2024-09-11 09:00:18.669052 2024-09-11 09:00:18.669056 mef 212 R rec 8482483f-f77e-41c2-8da5-6113876c0a92 +2024-09-11 09:00:18.727698 2024-09-11 09:00:18.727703 mef 213 R rec 87de2195-2036-4caf-9ea1-bd0a470ed5f4 +2024-09-11 09:00:18.809891 2024-09-11 09:00:18.809896 mef 214 R rec 0e0b8fad-c9e3-4c7c-a8ed-aadc9479a916 +2024-09-11 09:00:18.865607 2024-09-11 09:00:18.865611 mef 215 R rec 084e0de7-53c7-42fd-a3e9-df23314e841d +2024-09-11 09:00:18.927887 2024-09-11 09:00:18.927892 mef 216 R rec b7c20346-2abe-40dc-9c07-a676e875d6f0 +2024-09-11 09:00:18.987301 2024-09-11 09:00:18.987306 mef 217 R rec 8a75726a-bca7-4d92-ae55-f684ff471d0b +2024-09-11 09:00:19.041968 2024-09-11 09:00:19.041973 mef 218 R rec 7f37bc67-bcc3-4110-94ef-9b2c09d09103 +2024-09-11 09:00:19.091981 2024-09-11 09:00:19.091987 mef 219 R rec ab69e9bb-a67d-4cf0-8599-5ee271d3bfab +2024-09-11 09:00:19.146429 2024-09-11 09:00:19.146434 mef 220 R rec b87d32b7-2bec-453d-99dd-2be75120bc8a +2024-09-11 09:00:19.203742 2024-09-11 09:00:19.203746 mef 221 R rec 32d6562e-6eed-40cb-93dd-2b83f276b9b9 +2024-09-11 09:00:19.262139 2024-09-11 09:00:19.262145 mef 222 R rec 237df0fb-565c-4a88-8397-b38e85a30ebc +2024-09-11 09:00:19.326331 2024-09-11 09:00:19.326337 mef 223 R rec 5a3f903d-e755-46d7-a25d-1a555f300253 +2024-09-11 09:00:19.379659 2024-09-11 09:00:19.379664 mef 224 R rec e40bec84-db33-4108-955b-ab7aba485d36 +2024-09-11 09:00:19.433602 2024-09-11 09:00:19.433607 mef 225 R rec 43fe90b5-8e08-4fe7-a228-4cd143cf4743 +2024-09-11 09:00:19.496995 2024-09-11 09:00:19.497 mef 226 R rec 9b058ae3-93f8-4e1b-aa9b-4cf9b3361777 +2024-09-11 09:00:19.562794 2024-09-11 09:00:19.562799 mef 227 R rec a7b6cc01-5368-45fd-b7bf-c7108ab7b069 +2024-09-11 09:00:19.61829 2024-09-11 09:00:19.618295 mef 228 R rec a1a3a8d8-1536-45ac-85cf-01a7459299f8 +2024-09-11 09:00:19.674411 2024-09-11 09:00:19.674415 mef 229 R rec 342016d3-41e2-4be2-bbd4-07b72fc9887a +2024-09-11 09:00:19.724689 2024-09-11 09:00:19.724694 mef 230 R rec 98378d66-02fa-494a-9687-d48a968b87ad +2024-09-11 09:00:19.775918 2024-09-11 09:00:19.775923 mef 231 R rec bdcbe042-e7fc-49c7-86a5-a36efef83949 +2024-09-11 09:00:19.827625 2024-09-11 09:00:19.82763 mef 232 R rec 6d5b837c-e048-44fa-830e-f63b1defadcd +2024-09-11 09:00:19.887966 2024-09-11 09:00:19.887971 mef 233 R rec 73f7ab89-18d7-449a-b0ae-2730f45d300e +2024-09-11 09:00:19.943976 2024-09-11 09:00:19.943981 mef 234 R rec 787a4b63-4d0d-483f-ade6-d05252574c80 +2024-09-11 09:00:19.996991 2024-09-11 09:00:19.996997 mef 235 R rec 3fb3b6a8-3912-4da6-9a32-55531e1a4ae0 +2024-09-11 09:00:20.054976 2024-09-11 09:00:20.05498 mef 236 R rec 5741f1b6-0560-4985-acd9-7cf76fdf43d9 +2024-09-11 09:00:20.106425 2024-09-11 09:00:20.10643 mef 237 R rec 7d2fd949-7132-4eac-89d0-ef17600f8877 +2024-09-11 09:00:20.164511 2024-09-11 09:00:20.164516 mef 238 R rec 44c17fb9-529f-4d12-a66f-fd8673d1d580 +2024-09-11 09:00:20.215696 2024-09-11 09:00:20.2157 mef 239 R rec 4402625d-dc91-4087-a25b-ed10deec3e52 +2024-09-11 09:00:20.302864 2024-09-11 09:00:20.302868 mef 240 R rec 0e4c6146-a67e-40f3-a9e9-4f0a302a338e +2024-09-11 09:00:20.354811 2024-09-11 09:00:20.354815 mef 241 R rec f09cfc8a-62ef-446d-a761-e9da7170231f +2024-09-11 09:00:20.413717 2024-09-11 09:00:20.413722 mef 242 R rec e4fce74a-3cf5-4422-ab38-1d0a00f81c56 +2024-09-11 09:00:20.477686 2024-09-11 09:00:20.477691 mef 243 R rec 1a21414e-1ba5-4f1e-bcc2-0d8b385f82ac +2024-09-11 09:00:20.533195 2024-09-11 09:00:20.5332 mef 244 R rec 482d7f74-aa41-4959-bbaf-1f2a0c7dcb8c +2024-09-11 09:00:20.586129 2024-09-11 09:00:20.586134 mef 245 R rec 60806a91-ca87-44b9-9a22-953f19400e88 +2024-09-11 09:00:20.64149 2024-09-11 09:00:20.641494 mef 246 R rec cf233713-eccd-47bd-b0d0-647c50a9d936 +2024-09-11 09:00:20.694519 2024-09-11 09:00:20.694524 mef 247 R rec 213e1ae9-7622-4fd6-8dfc-29b700c9d150 +2024-09-11 09:00:20.747676 2024-09-11 09:00:20.747682 mef 248 R rec a05b6fcd-b894-4b04-98bb-1f6d19ffb205 +2024-09-11 09:00:20.843656 2024-09-11 09:00:20.843661 mef 249 R rec 4c14b08c-a873-4bc9-a99d-07c00b3b5afc +2024-09-11 09:00:20.895264 2024-09-11 09:00:20.895268 mef 250 R rec b3945c5e-e1e9-4318-9cf2-d56dff1f9e5d +2024-09-11 09:00:20.956913 2024-09-11 09:00:20.956918 mef 251 R rec a49ce5a9-c208-4be0-acac-ecbeb3c3fb2d +2024-09-11 09:00:21.008335 2024-09-11 09:00:21.00834 mef 252 R rec 30d07506-7650-4fc8-b1b6-3fe93b104e2f +2024-09-11 09:00:21.065918 2024-09-11 09:00:21.065923 mef 253 R rec 22e9e730-2353-45a9-9b20-9f8dba03e66d +2024-09-11 09:00:21.12529 2024-09-11 09:00:21.125295 mef 254 R rec 5f13aa63-6046-4651-835b-7c9c9144d17c +2024-09-11 09:00:21.181546 2024-09-11 09:00:21.181551 mef 255 R rec d39015c2-cc0e-4242-ba04-7268ddfa583c +2024-09-11 09:00:21.235421 2024-09-11 09:00:21.235425 mef 256 R rec d6a6d395-d3ec-4da5-bdf1-5a1f7722d42b +2024-09-11 09:00:21.29816 2024-09-11 09:00:21.298164 mef 257 R rec 84f41bc9-9e6c-43fa-9ed2-c9830364a843 +2024-09-11 09:00:21.360682 2024-09-11 09:00:21.360686 mef 258 R rec cc831421-1ef5-4081-bcbf-8d5f2aa73d87 +2024-09-11 09:00:21.411929 2024-09-11 09:00:21.411934 mef 259 R rec 44c93ce5-a1ee-478e-9325-2d5cda6d4a4f +2024-09-11 09:00:21.468188 2024-09-11 09:00:21.468192 mef 260 R rec d07ba422-e938-4e2d-ba35-4b5f912d5809 +2024-09-11 09:00:21.521891 2024-09-11 09:00:21.521895 mef 261 R rec 0d7e6c25-1897-48a4-9c73-a2f5597d5788 +2024-09-11 09:00:21.585483 2024-09-11 09:00:21.585487 mef 262 R rec ad3fa122-f4e7-4c6f-95c6-c3994b4817aa +2024-09-11 09:00:21.638327 2024-09-11 09:00:21.638332 mef 263 R rec 7bdf3004-d661-4ccf-a53d-3208e9d8be96 +2024-09-11 09:00:21.68823 2024-09-11 09:00:21.688234 mef 264 R rec 04683423-ef56-483a-87ba-a72106d115f1 +2024-09-11 09:00:21.776704 2024-09-11 09:00:21.776709 mef 265 R rec 1bec7199-15a5-4428-bb26-5fdc5be929dd +2024-09-11 09:00:21.835993 2024-09-11 09:00:21.835997 mef 266 R rec 13e1ec56-b593-4a7e-b60b-de1e3962edbd +2024-09-11 09:00:21.892974 2024-09-11 09:00:21.892979 mef 267 R rec 64ad3096-47a9-4b4b-8802-cd6f14fb5713 +2024-09-11 09:00:21.962047 2024-09-11 09:00:21.962052 mef 268 R rec dca7d263-9fd4-4a0a-b02e-4931dc7a84ac +2024-09-11 09:00:22.017998 2024-09-11 09:00:22.018003 mef 269 R rec 7c41f415-0ace-4cc1-b572-bfc5101fc36e +2024-09-11 09:00:22.087579 2024-09-11 09:00:22.087584 mef 270 R rec 0b2b7925-de4d-48e8-b0b7-0b7cd2008013 +2024-09-11 09:00:22.153297 2024-09-11 09:00:22.153302 mef 271 R rec 9ade61f4-3e0f-46df-8f01-52d9f7938b2c +2024-09-11 09:00:22.2109 2024-09-11 09:00:22.210905 mef 272 R rec eb76a6b3-6f11-48b4-bd47-367b408d766f +2024-09-11 09:00:22.270896 2024-09-11 09:00:22.270901 mef 273 R rec d2b3c677-7787-44a6-a79a-4ce1e50a6688 +2024-09-11 09:00:22.324501 2024-09-11 09:00:22.324507 mef 274 R rec 0208c45d-4e0a-44d7-8f4e-848e9ede2552 +2024-09-11 09:00:22.376712 2024-09-11 09:00:22.376717 mef 275 R rec 29807de9-3946-46ea-b56f-b7529c422cb2 +2024-09-11 09:00:22.427122 2024-09-11 09:00:22.427127 mef 276 R rec bd407ff4-90f0-46bf-b460-ef482295bae8 +2024-09-11 09:00:22.484706 2024-09-11 09:00:22.48471 mef 277 R rec e62c87ee-6bf2-462e-8713-c4fbc3033fe6 +2024-09-11 09:00:22.536358 2024-09-11 09:00:22.536363 mef 278 R rec cc677ed7-350d-41e8-93c6-da2101b3770c +2024-09-11 09:00:22.589515 2024-09-11 09:00:22.589519 mef 279 R rec 818e7946-0a16-483f-8e8c-5f399f506bc7 +2024-09-11 09:00:22.64412 2024-09-11 09:00:22.644124 mef 280 R rec b7e79c93-73c0-41f6-8d75-ec909bc1aea5 +2024-09-11 09:00:22.69781 2024-09-11 09:00:22.697815 mef 281 R rec 404bcfae-b634-4d16-b4ac-a893ede48bd3 +2024-09-11 09:00:22.752937 2024-09-11 09:00:22.752941 mef 282 R rec 11fa4b4b-746b-45ea-9a12-41948f6cc5e1 +2024-09-11 09:00:22.808988 2024-09-11 09:00:22.808993 mef 283 R rec 0a01ffa1-6914-41a2-80f3-dcd497379f89 +2024-09-11 09:00:22.875849 2024-09-11 09:00:22.875854 mef 284 R rec ec125d5f-0ea9-47b1-8d30-56909aa3344b +2024-09-11 09:00:22.929162 2024-09-11 09:00:22.929168 mef 285 R rec b6f55f90-c966-45d3-99f1-860a04ed19be +2024-09-11 09:00:22.996149 2024-09-11 09:00:22.996155 mef 286 R rec e54658c7-7ce2-4aa2-9524-70d6b1bed92e +2024-09-11 09:00:23.051651 2024-09-11 09:00:23.051656 mef 287 R rec 66b9cac6-3e6b-486b-ae8e-7ac5d4c035ea +2024-09-11 09:00:23.104176 2024-09-11 09:00:23.104181 mef 288 R rec 6ec15df3-02aa-4746-944d-c7b63968155d +2024-09-11 09:00:23.156539 2024-09-11 09:00:23.156544 mef 289 R rec 0a4406a8-b965-4ace-89af-87c4e884ad63 +2024-09-11 09:00:23.249589 2024-09-11 09:00:23.249593 mef 290 R rec 26018c73-f3b8-4ac2-b6a3-0b762d73ab1d +2024-09-11 09:00:23.312837 2024-09-11 09:00:23.312842 mef 291 R rec bf3ea306-59f3-4b76-a675-7ff185409893 +2024-09-11 09:00:23.368409 2024-09-11 09:00:23.368414 mef 292 R rec 427ecfa9-1cca-4727-a660-27e7604147a5 +2024-09-11 09:00:23.424933 2024-09-11 09:00:23.424938 mef 293 R rec f0ea53eb-c7ee-4275-95f0-0ec24acd9f6b +2024-09-11 09:00:23.476977 2024-09-11 09:00:23.476983 mef 294 R rec 953df249-7d4a-48e7-b0b3-17304788a63d +2024-09-11 09:00:23.532124 2024-09-11 09:00:23.532128 mef 295 R rec ee944254-6b8d-4a93-a286-a50e0ee396f4 +2024-09-11 09:00:23.586059 2024-09-11 09:00:23.586063 mef 296 R rec 07a3dcc8-3d45-4d72-add3-0ceca1aae5de +2024-09-11 09:00:23.641015 2024-09-11 09:00:23.641019 mef 297 R rec c6188f63-4514-417d-a741-4606bc10eb6a +2024-09-11 09:00:23.692588 2024-09-11 09:00:23.692593 mef 298 R rec f94aaa70-bac1-4a25-b0cf-947a047ea003 +2024-09-11 09:00:23.745164 2024-09-11 09:00:23.745168 mef 299 R rec c04631e0-19f3-4ccd-921d-94227a5c5387 +2024-09-11 09:00:23.799433 2024-09-11 09:00:23.799438 mef 300 R rec 4cc690d9-1fcb-4fed-9d85-b7b387b8cc69 +2024-09-11 09:00:23.85338 2024-09-11 09:00:23.853384 mef 301 R rec 2cb9c574-afd6-43cd-b5d0-042f5641e69f +2024-09-11 09:00:23.919203 2024-09-11 09:00:23.919209 mef 302 R rec 69a13de0-52df-474a-ad2e-2ad157b15ce5 +2024-09-11 09:00:23.979031 2024-09-11 09:00:23.979036 mef 303 R rec f1d05768-0c4e-470c-a6cf-360918354ec8 +2024-09-11 09:00:24.035309 2024-09-11 09:00:24.035314 mef 304 R rec 80f6c4f9-1cf8-4f6f-8c62-e6a0043288c5 +2024-09-11 09:00:24.100567 2024-09-11 09:00:24.100572 mef 305 R rec 19bc9f4f-4b75-4ebf-af1c-43e7ee3e01da +2024-09-11 09:00:24.161722 2024-09-11 09:00:24.161728 mef 306 R rec cb04f860-f68d-464f-bec4-79ec0ea7c790 +2024-09-11 09:00:24.213333 2024-09-11 09:00:24.213338 mef 307 R rec dd6f71de-7d9f-4db9-8f04-2eaa91dc2180 +2024-09-11 09:00:24.26687 2024-09-11 09:00:24.266874 mef 308 R rec d1836b44-a130-4cab-a649-413755c81056 +2024-09-11 09:00:24.322557 2024-09-11 09:00:24.322562 mef 309 R rec 9052f3f2-62b9-4adc-b9ee-75e46ecfaf3d +2024-09-11 09:00:24.397196 2024-09-11 09:00:24.397201 mef 310 R rec bf36e5ef-f617-47f0-b48b-754c44caf5b4 +2024-09-11 09:00:24.458797 2024-09-11 09:00:24.458802 mef 311 R rec 7ee3fbbc-79a3-4a3f-9425-2f0b5b695235 +2024-09-11 09:00:24.509461 2024-09-11 09:00:24.509466 mef 312 R rec 4ac4b100-7e29-43f4-be58-7b63f2df49c3 +2024-09-11 09:00:24.567035 2024-09-11 09:00:24.56704 mef 313 R rec 708dbe00-cb3e-49ee-a3e3-4e8899dea537 +2024-09-11 09:00:24.629283 2024-09-11 09:00:24.629288 mef 314 R rec 9e9c6d70-707d-428a-9dfc-32be907ecd5a +2024-09-11 09:00:24.685259 2024-09-11 09:00:24.685264 mef 315 R rec 766e8df4-5784-4a2c-9840-0ef06222ac26 +2024-09-11 09:00:24.737927 2024-09-11 09:00:24.737932 mef 316 R rec e5efc4ef-2ec2-4f17-9b49-bf5f4e63780b +2024-09-11 09:00:24.800155 2024-09-11 09:00:24.800159 mef 317 R rec d5153204-0517-4cf2-8f39-81b65b9a5d8d +2024-09-11 09:00:24.856012 2024-09-11 09:00:24.856018 mef 318 R rec a0baa40f-9d97-43b0-9e43-df52f6d58a63 +2024-09-11 09:00:24.909139 2024-09-11 09:00:24.909144 mef 319 R rec bb2ccd8c-ead9-44e5-bcb0-c9b4d23862ce +2024-09-11 09:00:24.963806 2024-09-11 09:00:24.963811 mef 320 R rec 3bb34201-0d56-4368-9bc6-8246208309bd +2024-09-11 09:00:25.014841 2024-09-11 09:00:25.014845 mef 321 R rec 15607605-6670-4ec1-ae94-752824aeab5a +2024-09-11 09:00:25.06723 2024-09-11 09:00:25.067235 mef 322 R rec 12ea9bee-7bc5-4931-aced-e900317f84b9 +2024-09-11 09:00:25.118791 2024-09-11 09:00:25.118796 mef 323 R rec 89b8e9fe-452f-4f40-b2bc-7b36a43924c2 +2024-09-11 09:00:25.173489 2024-09-11 09:00:25.173494 mef 324 R rec 95425add-8f8c-4b3d-bd5d-c581a208e754 +2024-09-11 09:00:25.227518 2024-09-11 09:00:25.227522 mef 325 R rec 6268a346-94bc-43bf-a77d-07a651da587e +2024-09-11 09:00:25.313143 2024-09-11 09:00:25.313148 mef 326 R rec e363cea2-0b98-4ecd-9402-42acadf90b7e +2024-09-11 09:00:25.367732 2024-09-11 09:00:25.367737 mef 327 R rec f6b112d7-ea5c-4009-844a-ab5ca57761ea +2024-09-11 09:00:25.41956 2024-09-11 09:00:25.419565 mef 328 R rec 66294432-73fb-4573-863e-3af584e15432 +2024-09-11 09:00:25.470276 2024-09-11 09:00:25.47028 mef 329 R rec cc90b1c6-bc99-4cf1-ae29-1b57bdd8af02 +2024-09-11 09:00:25.523448 2024-09-11 09:00:25.523453 mef 330 R rec cd5404b3-6e75-430e-afec-28f0773bc8ad +2024-09-11 09:00:25.586581 2024-09-11 09:00:25.586586 mef 331 R rec a9fb9e4b-c5db-4d1a-81dd-1bd7ec5945eb +2024-09-11 09:00:25.642701 2024-09-11 09:00:25.642707 mef 332 R rec 1c5290f1-9652-4c09-879b-cea53c2a312c +2024-09-11 09:00:25.704045 2024-09-11 09:00:25.70405 mef 333 R rec c966e44e-8421-463d-8bbd-0cd567a791d4 +2024-09-11 09:00:25.753613 2024-09-11 09:00:25.753618 mef 334 R rec 925d3701-b6ab-4427-a780-532c985dc159 +2024-09-11 09:00:25.805686 2024-09-11 09:00:25.80569 mef 335 R rec b33616ba-edf9-4530-90a1-be729cfcccbb +2024-09-11 09:00:25.855745 2024-09-11 09:00:25.85575 mef 336 R rec bf43712b-5fdd-4d63-b304-f9ad12a96431 +2024-09-11 09:00:25.908168 2024-09-11 09:00:25.908173 mef 337 R rec fc711629-9d01-4722-bd77-94a4d82491d0 +2024-09-11 09:00:25.960583 2024-09-11 09:00:25.960587 mef 338 R rec 0c06c89d-afa2-44ea-b920-ca3cabe2115e +2024-09-11 09:00:26.017259 2024-09-11 09:00:26.017263 mef 339 R rec 0a9111df-6049-4278-8188-b84d01f3ce27 +2024-09-11 09:00:26.077949 2024-09-11 09:00:26.077954 mef 340 R rec a4b88d71-c603-4366-a1b8-ca171aeb86a5 +2024-09-11 09:00:26.143472 2024-09-11 09:00:26.143477 mef 341 R rec 21fc5d8a-00fd-478d-bacb-1dd57fc1558e +2024-09-11 09:00:26.198234 2024-09-11 09:00:26.198238 mef 342 R rec 52f98be9-fe9c-4df4-9b22-cc7b711233a5 +2024-09-11 09:00:26.251212 2024-09-11 09:00:26.251217 mef 343 R rec b00b3a4b-88cd-46ad-afe8-852d8cda45fd +2024-09-11 09:00:26.311047 2024-09-11 09:00:26.311052 mef 344 R rec 10c682f3-9213-4b7a-a6d8-c66525552c56 +2024-09-11 09:00:26.360204 2024-09-11 09:00:26.360208 mef 345 R rec 854d57eb-1d65-4c7d-81d4-9b780f649481 +2024-09-11 09:00:26.4124 2024-09-11 09:00:26.412405 mef 346 R rec 5fd8b7ac-60dd-4859-9932-95c614d88b13 +2024-09-11 09:00:26.465713 2024-09-11 09:00:26.465717 mef 347 R rec b9540f65-72d4-4a67-a76f-b7d176505e09 +2024-09-11 09:00:26.534 2024-09-11 09:00:26.534004 mef 348 R rec aff77291-208b-413c-a4da-e700c65bfca2 +2024-09-11 09:00:26.598277 2024-09-11 09:00:26.598282 mef 349 R rec b627f339-d168-4a70-90f0-61faf809eeda +2024-09-11 09:00:26.664195 2024-09-11 09:00:26.6642 mef 350 R rec 235c9c13-b414-4fb1-a904-c37ef515ef46 +2024-09-11 09:00:26.721034 2024-09-11 09:00:26.721038 mef 351 R rec 179ed939-df13-45a5-b930-a3f8e5105cc6 +2024-09-11 09:00:26.775215 2024-09-11 09:00:26.77522 mef 352 R rec 85752ed9-52d7-4435-ab6c-4d0325c3edd5 +2024-09-11 09:00:26.823839 2024-09-11 09:00:26.823843 mef 353 R rec 67f7ee62-68f3-408f-b200-cd8c2096ef18 +2024-09-11 09:00:26.877007 2024-09-11 09:00:26.877012 mef 354 R rec 6ef70c6f-dbed-495b-aac2-e9a7d06b7a01 +2024-09-11 09:00:26.931329 2024-09-11 09:00:26.931334 mef 355 R rec 030f35a8-ca4b-4825-af78-d24f5c7e104c +2024-09-11 09:00:26.982203 2024-09-11 09:00:26.982207 mef 356 R rec cdd4314d-004f-40af-a9ff-534da57145f6 +2024-09-11 09:00:27.033373 2024-09-11 09:00:27.033378 mef 357 R rec 50bdf46f-c5bb-4580-b35a-93f42591180c +2024-09-11 09:00:27.082497 2024-09-11 09:00:27.082501 mef 358 R rec 22c7397a-bbd4-4f44-bda4-3a3f9b78b315 +2024-09-11 09:00:27.141333 2024-09-11 09:00:27.141338 mef 359 R rec 400f4ccb-2d3d-4eed-bf0e-7c3b4ab12bb8 +2024-09-11 09:00:27.211188 2024-09-11 09:00:27.211192 mef 360 R rec 7610a3db-3292-4084-b42a-181242d6d88e +2024-09-11 09:00:27.27664 2024-09-11 09:00:27.276645 mef 361 R rec 69a6b787-529d-49b2-ae83-c2d042823c42 +2024-09-11 09:00:27.327755 2024-09-11 09:00:27.32776 mef 362 R rec 3316cd46-dea4-45b6-a401-4242c3eddaca +2024-09-11 09:00:27.381953 2024-09-11 09:00:27.381957 mef 363 R rec 37afe0f3-3423-42e1-a4f4-c76f5bb166ce +2024-09-11 09:00:27.459232 2024-09-11 09:00:27.459237 mef 364 R rec 376276df-6c66-4319-af42-fde8bf5d5a62 +2024-09-11 09:00:27.522869 2024-09-11 09:00:27.522874 mef 365 R rec f85ec388-5ae2-4d92-833c-4b4a1b2daf41 +2024-09-11 09:00:27.59125 2024-09-11 09:00:27.591255 mef 366 R rec 493bc82a-7ea6-4896-ae2a-82c508f899d7 +2024-09-11 09:00:27.649292 2024-09-11 09:00:27.649297 mef 367 R rec d44214dc-991f-475d-8713-32246dd815e1 +2024-09-11 09:00:27.703546 2024-09-11 09:00:27.703551 mef 368 R rec def54ccc-32f1-4bb5-aabd-65ca931b96f8 +2024-09-11 09:00:27.756134 2024-09-11 09:00:27.756138 mef 369 R rec 40f3b8c1-555f-4386-9370-e7ad30232496 +2024-09-11 09:00:27.809381 2024-09-11 09:00:27.809387 mef 370 R rec 2c2ef56f-45f9-4aba-bebe-af3e146160c8 +2024-09-11 09:00:27.875237 2024-09-11 09:00:27.875242 mef 371 R rec 1d977880-7998-4dbf-9cb6-3e41e11b54e9 +2024-09-11 09:00:27.925637 2024-09-11 09:00:27.925641 mef 372 R rec 8385c997-1330-4fcc-a4b6-36d726bb88d9 +2024-09-11 09:00:27.980155 2024-09-11 09:00:27.980158 mef 373 R rec 5684d5ce-5a69-4ea7-8804-6ac4b9ca59ae +2024-09-11 09:00:28.047187 2024-09-11 09:00:28.047191 mef 374 R rec aa6f3af9-d5a9-409d-9cc7-0dc27cdf890e +2024-09-11 09:00:28.099609 2024-09-11 09:00:28.099613 mef 375 R rec 53604039-4b5c-46a0-b1ef-24b22dca3882 +2024-09-11 09:00:28.1551 2024-09-11 09:00:28.155105 mef 376 R rec 15568e0e-c1e6-4215-89d4-1fc72f8b9064 +2024-09-11 09:00:28.210378 2024-09-11 09:00:28.210382 mef 377 R rec 19a2a53b-18db-4aff-ab5c-906a4310ba4b +2024-09-11 09:00:28.273342 2024-09-11 09:00:28.273347 mef 378 R rec 326dfb03-60d2-4394-bc6f-08723656bb15 +2024-09-11 09:00:28.325477 2024-09-11 09:00:28.325481 mef 379 R rec 9a645bf0-fa8a-463b-9911-81b730cd5709 +2024-09-11 09:00:28.375779 2024-09-11 09:00:28.375784 mef 380 R rec a4922b03-d728-4de9-82d2-1ac9c60c7058 +2024-09-11 09:00:28.42843 2024-09-11 09:00:28.428435 mef 381 R rec f65a554f-481b-4247-82eb-38898bb6f89e +2024-09-11 09:00:28.479854 2024-09-11 09:00:28.479859 mef 382 R rec 3eb9771c-4952-4c22-91d9-958e81c2ba41 +2024-09-11 09:00:28.531338 2024-09-11 09:00:28.531343 mef 383 R rec 7356e27f-382f-42de-acb8-6f794ca2689f +2024-09-11 09:00:28.583311 2024-09-11 09:00:28.583316 mef 384 R rec 9fef7d89-292a-4ebf-90eb-6431746ad0d1 +2024-09-11 09:00:28.634052 2024-09-11 09:00:28.634057 mef 385 R rec 53021be5-df46-415f-b49c-fce46fd93bc3 +2024-09-11 09:00:28.691069 2024-09-11 09:00:28.691074 mef 386 R rec d84da8ec-0c93-41d3-8ea4-b49e538ec84a +2024-09-11 09:00:28.74274 2024-09-11 09:00:28.742744 mef 387 R rec 80553949-b6c5-4b37-8086-7eded42685be +2024-09-11 09:00:28.797005 2024-09-11 09:00:28.79701 mef 388 R rec f5e3246c-6275-465e-9342-6f45e2751eca +2024-09-11 09:00:28.849335 2024-09-11 09:00:28.849339 mef 389 R rec a89f352f-cc4c-4fc2-861c-d6f613944940 +2024-09-11 09:00:28.908685 2024-09-11 09:00:28.908691 mef 390 R rec 901ad0c0-25d6-4acd-a131-2f9e938161b4 +2024-09-11 09:00:28.96835 2024-09-11 09:00:28.968355 mef 391 R rec d481b0db-b280-48f3-ac01-5a35f5d7a656 +2024-09-11 09:00:29.02012 2024-09-11 09:00:29.020125 mef 392 R rec d1fafdcd-c204-4232-9a0e-5932ce580190 +2024-09-11 09:00:29.074815 2024-09-11 09:00:29.07482 mef 393 R rec 10d8fee2-4482-4cea-8c65-3057dfa0c8a4 +2024-09-11 09:00:29.133618 2024-09-11 09:00:29.133623 mef 394 R rec f173b9c9-b4ee-4b03-a81d-9699646ca8dd +2024-09-11 09:00:29.188593 2024-09-11 09:00:29.188598 mef 395 R rec 07de391b-ecb0-4421-af30-e4de4eec77c0 +2024-09-11 09:00:29.309694 2024-09-11 09:00:29.309699 mef 396 R rec b4dffb7d-0146-461b-9c29-ec51984459e5 +2024-09-11 09:00:29.365277 2024-09-11 09:00:29.365281 mef 397 R rec 2cb4c96e-fe70-44ba-82e8-c0d958ba8dde +2024-09-11 09:00:29.421051 2024-09-11 09:00:29.421055 mef 398 R rec a116e492-d4b5-48f2-9a46-0bab608808c7 +2024-09-11 09:00:29.474067 2024-09-11 09:00:29.474071 mef 399 R rec 6c5a37c8-ed18-4f7f-bf8b-b9bb1a98ad4d +2024-09-11 09:00:29.538294 2024-09-11 09:00:29.538299 mef 400 R rec 6513612d-3f5c-4c63-b87f-8a5d2547f67f +2024-09-11 09:00:29.589046 2024-09-11 09:00:29.58905 mef 401 R rec ba011e96-2a42-4075-a848-3f29965e7021 +2024-09-11 09:00:29.647179 2024-09-11 09:00:29.647184 mef 402 R rec 01c011d6-6569-4c94-8dee-66adc5f4e33c +2024-09-11 09:00:29.698821 2024-09-11 09:00:29.698826 mef 403 R rec 5de280ab-6342-497b-83b2-23fe83791bc8 +2024-09-11 09:00:29.749343 2024-09-11 09:00:29.749347 mef 404 R rec 9fe51177-b3b7-4f18-9002-7f70b4f90fe7 +2024-09-11 09:00:29.801976 2024-09-11 09:00:29.80198 mef 405 R rec 263c3452-c2b1-4118-bda8-f4b8341f185f +2024-09-11 09:00:29.853605 2024-09-11 09:00:29.85361 mef 406 R rec 64c5f286-413f-40b9-a3f5-170904b122ab +2024-09-11 09:00:29.9067 2024-09-11 09:00:29.906705 mef 407 R rec adc8c772-397f-4a0a-88ce-a66e0f890145 +2024-09-11 09:00:29.96799 2024-09-11 09:00:29.967995 mef 408 R rec ac4c5861-7206-4871-972c-cd334d2f3370 +2024-09-11 09:00:30.020562 2024-09-11 09:00:30.020567 mef 409 R rec eb550b31-d51e-40c3-ab43-8e8f1ee61006 +2024-09-11 09:00:30.074326 2024-09-11 09:00:30.07433 mef 410 R rec fe50c2e0-3a84-4f9c-b2e8-c80d27cef510 +2024-09-11 09:00:30.129043 2024-09-11 09:00:30.129047 mef 411 R rec 5dba1971-d1b4-443b-bdc7-df2442d1c3fa +2024-09-11 09:00:30.185384 2024-09-11 09:00:30.185388 mef 412 R rec d689ba04-bc8e-4740-ba0f-b975cbbc385a +2024-09-11 09:00:30.242749 2024-09-11 09:00:30.242754 mef 413 R rec aff807a5-9893-4321-9d5b-677013989d8f +2024-09-11 09:00:30.307185 2024-09-11 09:00:30.307189 mef 414 R rec 9d4a0834-3ad9-4798-a80d-f4535010b7b2 +2024-09-11 09:00:30.375048 2024-09-11 09:00:30.375053 mef 415 R rec b72e986b-80ed-483e-a66f-489fb0d0584e +2024-09-11 09:00:30.427525 2024-09-11 09:00:30.42753 mef 416 R rec 95111b72-a6b5-4697-b985-81fadf80f146 +2024-09-11 09:00:30.491123 2024-09-11 09:00:30.491128 mef 417 R rec a5d9cc22-1ca6-45fc-806c-aadf3a6a6b6f +2024-09-11 09:00:30.546484 2024-09-11 09:00:30.546489 mef 418 R rec a4f562cf-449b-4f3f-9066-267ee0703069 +2024-09-11 09:00:30.612168 2024-09-11 09:00:30.612173 mef 419 R rec 6fed5ffa-a10c-4892-a41b-09b3b6429027 +2024-09-11 09:00:30.663836 2024-09-11 09:00:30.663842 mef 420 R rec 72a85069-ff8e-43d7-a00b-9a846c585339 +2024-09-11 09:00:30.716669 2024-09-11 09:00:30.716674 mef 421 R rec 5ae157b8-4c2a-48f4-bdc6-e835528c0928 +2024-09-11 09:00:30.781422 2024-09-11 09:00:30.781426 mef 422 R rec adf89688-c3d0-4a52-96cb-393de4459a53 +2024-09-11 09:00:30.845513 2024-09-11 09:00:30.845517 mef 423 R rec 2d2227aa-815e-4a68-a0a7-620252d1ec0d +2024-09-11 09:00:30.897634 2024-09-11 09:00:30.897639 mef 424 R rec d38c119a-48aa-4fa9-8d37-7393177479ef +2024-09-11 09:00:30.953873 2024-09-11 09:00:30.953878 mef 425 R rec 2d710812-7f91-441e-96de-c3a38f6411a4 +2024-09-11 09:00:31.012764 2024-09-11 09:00:31.012769 mef 426 R rec 2d629e06-815b-4a5a-9e4b-5db5a34039c9 +2024-09-11 09:00:31.076713 2024-09-11 09:00:31.076718 mef 427 R rec fee7e8b1-4ab7-4d1c-9739-de462ffd8f9e +2024-09-11 09:00:31.131604 2024-09-11 09:00:31.131609 mef 428 R rec 534bdc5b-ac11-42ca-bbbc-052ccf02a92e +2024-09-11 09:00:31.184589 2024-09-11 09:00:31.184594 mef 429 R rec caffcd37-8061-44ce-9de9-488015c25b3a +2024-09-11 09:00:31.250104 2024-09-11 09:00:31.250108 mef 430 R rec e55c574a-5954-4e94-958a-37f0ae4c64d5 +2024-09-11 09:00:31.311903 2024-09-11 09:00:31.311908 mef 431 R rec ea727489-c3be-4772-9845-5055b66ea6b5 +2024-09-11 09:00:31.366054 2024-09-11 09:00:31.366059 mef 432 R rec 26091997-7302-41a5-a2a2-1d518c5ae92c +2024-09-11 09:00:31.41936 2024-09-11 09:00:31.419364 mef 433 R rec cdea5ee9-ae94-455e-bd15-68961108ac7f +2024-09-11 09:00:31.475297 2024-09-11 09:00:31.475303 mef 434 R rec d64419d6-90a4-4fc3-9fde-12d1ae3a21ee +2024-09-11 09:00:31.52619 2024-09-11 09:00:31.526194 mef 435 R rec d2d50e64-74cc-45be-b6e9-8b30ccbc7690 +2024-09-11 09:00:31.579184 2024-09-11 09:00:31.579189 mef 436 R rec cec58b78-b141-40b9-84ad-0c40256a6639 +2024-09-11 09:00:31.647462 2024-09-11 09:00:31.647466 mef 437 R rec 0ada1bb5-3a55-4dca-8c94-9126e040e550 +2024-09-11 09:00:31.730013 2024-09-11 09:00:31.730019 mef 438 R rec 296b6131-dd0d-4544-a267-edf76273d77c +2024-09-11 09:00:31.788395 2024-09-11 09:00:31.788398 mef 439 R rec 58eb4a64-8ba2-4825-a21d-251f0bcbbb98 +2024-09-11 09:00:31.840503 2024-09-11 09:00:31.840507 mef 440 R rec 9dc710e9-3f40-42bc-bdb6-1bc7e7061911 +2024-09-11 09:00:31.905268 2024-09-11 09:00:31.905273 mef 441 R rec db1cd23d-3651-4059-98e7-e033aa607001 +2024-09-11 09:00:31.956215 2024-09-11 09:00:31.956219 mef 442 R rec 44f7b56e-bea2-4089-bb2f-5b5d4e65c0fc +2024-09-11 09:00:32.006827 2024-09-11 09:00:32.006832 mef 443 R rec d48b901f-7a2c-4afd-976f-b9ba74363ab4 +2024-09-11 09:00:32.060333 2024-09-11 09:00:32.060337 mef 444 R rec 97309a8e-8953-4846-84a9-fc1410bfb214 +2024-09-11 09:00:32.11174 2024-09-11 09:00:32.111745 mef 445 R rec b0c5ffe5-55a4-4781-9c21-044ed3fad053 +2024-09-11 09:00:32.162087 2024-09-11 09:00:32.162091 mef 446 R rec d2a379d2-4d56-459a-a99f-27d659dd8a01 +2024-09-11 09:00:32.212967 2024-09-11 09:00:32.212971 mef 447 R rec c97b8574-be39-4844-b96f-a6d763215db7 +2024-09-11 09:00:32.273646 2024-09-11 09:00:32.273651 mef 448 R rec 0e687520-de71-4414-9cdd-45206387e514 +2024-09-11 09:00:32.32616 2024-09-11 09:00:32.326164 mef 449 R rec 581bebce-27f3-4e51-9686-623c9e99ca19 +2024-09-11 09:00:32.378749 2024-09-11 09:00:32.378754 mef 450 R rec f63814c6-e38c-4ddd-8688-d81105460fac +2024-09-11 09:00:32.431402 2024-09-11 09:00:32.431407 mef 451 R rec c4d1cbeb-2ea0-4f14-b39f-e2c23e80f8d1 +2024-09-11 09:00:32.494003 2024-09-11 09:00:32.494007 mef 452 R rec c034fb2e-5d74-49af-a399-0fa02ff1e935 +2024-09-11 09:00:32.54406 2024-09-11 09:00:32.544064 mef 453 R rec a9d84926-890f-4d61-b6a6-73e8ea9f5dd4 +2024-09-11 09:00:32.597085 2024-09-11 09:00:32.59709 mef 454 R rec bf82a2b0-935a-4fa4-b8f9-7e7835e9fe35 +2024-09-11 09:00:32.648338 2024-09-11 09:00:32.648342 mef 455 R rec a57b9ef2-461a-449f-8e95-b26ac585a58a +2024-09-11 09:00:32.701014 2024-09-11 09:00:32.701019 mef 456 R rec 1d98298b-038b-4786-a146-2e9055a89555 +2024-09-11 09:00:32.75578 2024-09-11 09:00:32.755785 mef 457 R rec 7dd67042-2481-4d32-a993-fc1d207860e9 +2024-09-11 09:00:32.817856 2024-09-11 09:00:32.817861 mef 458 R rec a3b4a57b-568e-4f29-a4f0-ed8193c9f03f +2024-09-11 09:00:32.886307 2024-09-11 09:00:32.886312 mef 459 R rec 0b4eecdf-3cd3-4218-bff1-ac55cd26d10b +2024-09-11 09:00:32.938417 2024-09-11 09:00:32.938421 mef 460 R rec 3881cdd0-e70a-4e6d-957a-8dc8579d7330 +2024-09-11 09:00:32.990861 2024-09-11 09:00:32.990865 mef 461 R rec 08a6cfee-5fdb-41b9-a3d9-f18a4b427397 +2024-09-11 09:00:33.04443 2024-09-11 09:00:33.044435 mef 462 R rec 088cda4a-1c89-47df-b42a-7feec87c3098 +2024-09-11 09:00:33.09617 2024-09-11 09:00:33.096175 mef 463 R rec af5edef5-4a5c-4d8d-b181-de935a284110 +2024-09-11 09:00:33.18783 2024-09-11 09:00:33.187834 mef 464 R rec 5d07cc70-b92a-4f8f-ae43-2ea749b27a13 +2024-09-11 09:00:33.243653 2024-09-11 09:00:33.243658 mef 465 R rec 8c9ad9a7-e874-4fe7-b563-b2d88fb22b8e +2024-09-11 09:00:33.29424 2024-09-11 09:00:33.294245 mef 466 R rec 3c874b81-f230-4ed1-8351-ffba54d7763b +2024-09-11 09:00:33.345095 2024-09-11 09:00:33.345098 mef 467 R rec 7cf25351-f4be-4dcd-ad42-c397b778e831 +2024-09-11 09:00:33.39888 2024-09-11 09:00:33.398884 mef 468 R rec a7031260-994d-433a-9a77-6892f94dbe7b +2024-09-11 09:00:33.450979 2024-09-11 09:00:33.450983 mef 469 R rec 544c9413-0099-4c4d-a446-c871833cd91b +2024-09-11 09:00:33.515655 2024-09-11 09:00:33.515659 mef 470 R rec e0e0386d-7506-4eba-b941-48eba4acd586 +2024-09-11 09:00:33.567612 2024-09-11 09:00:33.567617 mef 471 R rec 8ceddb76-9030-4ea6-b7cc-4b78e28caf66 +2024-09-11 09:00:33.621897 2024-09-11 09:00:33.621902 mef 472 R rec a49d9769-af04-45d4-b218-4a933967ab6e +2024-09-11 09:00:33.675166 2024-09-11 09:00:33.675169 mef 473 R rec 4a44a683-7a73-4023-9227-69d90c682dca +2024-09-11 09:00:33.736542 2024-09-11 09:00:33.736546 mef 474 R rec 75b7ef19-ac27-4eb4-8217-fae002ba7b4d +2024-09-11 09:00:33.788108 2024-09-11 09:00:33.788112 mef 475 R rec 24b0afa4-aa49-400d-bd69-05dad8b02763 +2024-09-11 09:00:33.840603 2024-09-11 09:00:33.840607 mef 476 R rec d9862693-30aa-47f7-b326-356022e91970 +2024-09-11 09:00:33.896961 2024-09-11 09:00:33.896966 mef 477 R rec 4cc88732-b69f-4a09-9c11-029335245039 +2024-09-11 09:00:33.951841 2024-09-11 09:00:33.951845 mef 478 R rec f5101800-b310-45b4-b24f-c6e2f26c5a8a +2024-09-11 09:00:34.009839 2024-09-11 09:00:34.009844 mef 479 R rec 03b3442f-f875-497d-871e-198f982b02a9 +2024-09-11 09:00:34.063967 2024-09-11 09:00:34.063972 mef 480 R rec ec34db79-6f6c-4d38-a963-0a4ae47286c5 +2024-09-11 09:00:34.115617 2024-09-11 09:00:34.115621 mef 481 R rec 1b4085cf-6e56-4d04-9536-1046ba07af73 +2024-09-11 09:00:34.172407 2024-09-11 09:00:34.172412 mef 482 R rec 45ac4ccb-1276-4856-8f8c-2266676e5415 +2024-09-11 09:00:34.236967 2024-09-11 09:00:34.236972 mef 483 R rec a9268a43-19df-4687-9403-90ccde4adbe6 +2024-09-11 09:00:34.294244 2024-09-11 09:00:34.294249 mef 484 R rec 1464e5fa-4112-4a1a-9203-d0db033213ce +2024-09-11 09:00:34.348425 2024-09-11 09:00:34.34843 mef 485 R rec 91b226ea-1c5d-464c-93c6-bb72828a778c +2024-09-11 09:00:34.405359 2024-09-11 09:00:34.405363 mef 486 R rec 2aeb29c9-2efd-44cb-b984-846b9b0f4be2 +2024-09-11 09:00:34.471232 2024-09-11 09:00:34.471237 mef 487 R rec 7273c4bf-8512-4333-ae62-2060e1be1e8b +2024-09-11 09:00:34.530686 2024-09-11 09:00:34.530692 mef 488 R rec aaeb38d2-dfa6-48ac-9efa-3523b7c2d778 +2024-09-11 09:00:34.594717 2024-09-11 09:00:34.594722 mef 489 R rec e46810dc-1368-43c3-b9f2-2772027b01a7 +2024-09-11 09:00:34.67138 2024-09-11 09:00:34.671385 mef 490 R rec b4c0bbc2-5399-4249-a7b6-fba5bc00b4c1 +2024-09-11 09:00:34.745855 2024-09-11 09:00:34.745859 mef 491 R rec 9c927956-7122-4de9-a862-fe1722a7a211 +2024-09-11 09:00:34.806954 2024-09-11 09:00:34.806958 mef 492 R rec 08664836-ff81-49fc-9e86-7d08d59590cb +2024-09-11 09:00:34.868485 2024-09-11 09:00:34.86849 mef 493 R rec 80ba5b76-323f-43db-9625-317a69c348a0 +2024-09-11 09:00:34.925704 2024-09-11 09:00:34.925709 mef 494 R rec 096c0779-86a0-4b46-b632-bbe18ab93515 +2024-09-11 09:00:34.981905 2024-09-11 09:00:34.981909 mef 495 R rec b5ac8be9-ceb3-4b48-b9a7-8c906eaf4084 +2024-09-11 09:00:35.044723 2024-09-11 09:00:35.044727 mef 496 R rec a18eb9ee-45d7-4bae-a1db-947ac78d05d5 +2024-09-11 09:00:35.095866 2024-09-11 09:00:35.09587 mef 497 R rec e0905cc7-6267-4991-87b9-be742716b31d +2024-09-11 09:00:35.152672 2024-09-11 09:00:35.152678 mef 498 R rec e318ba9b-92ae-42d6-ab41-bbc28dfb04b9 +2024-09-11 09:00:35.208408 2024-09-11 09:00:35.208416 mef 499 R rec b0310272-5172-4d2b-90fe-309b23d07525 +2024-09-11 09:00:35.263463 2024-09-11 09:00:35.263469 mef 500 R rec 3c01245a-5b6f-46b5-a7f8-0aa6a63fefad +2024-09-11 09:00:35.324564 2024-09-11 09:00:35.32457 mef 501 R rec 9de3b353-6d68-4317-a3c5-4962b654e5bc +2024-09-11 09:00:35.390118 2024-09-11 09:00:35.390123 mef 502 R rec 0cd93e56-6e3c-4c68-974a-6c511056082d +2024-09-11 09:00:35.447657 2024-09-11 09:00:35.447662 mef 503 R rec 9dfdd103-f56c-44c2-9cd4-f2ad2296e8da +2024-09-11 09:00:35.506157 2024-09-11 09:00:35.506162 mef 504 R rec 2997f5d5-704a-4ff1-88c9-ec4073c64326 +2024-09-11 09:00:35.573765 2024-09-11 09:00:35.57377 mef 505 R rec 40dcb171-0f1d-46fe-b8a1-de57dc31d223 +2024-09-11 09:00:35.630899 2024-09-11 09:00:35.630903 mef 506 R rec 0daea0ee-5a1c-40c1-bdbd-3a7aeae6ef3a +2024-09-11 09:00:35.694186 2024-09-11 09:00:35.694191 mef 507 R rec 23f59c5d-a2ad-4a9d-b997-4d855e9a3f4b +2024-09-11 09:00:35.752207 2024-09-11 09:00:35.752212 mef 508 R rec f931a9fe-bbea-498a-8965-dda599b801a0 +2024-09-11 09:00:35.816769 2024-09-11 09:00:35.816774 mef 509 R rec 91af313b-44d5-4645-baf9-d7df83c0efb4 +2024-09-11 09:00:35.899869 2024-09-11 09:00:35.899874 mef 510 R rec 2f250292-b557-43e9-bb10-c0109ac80579 +2024-09-11 09:00:35.968825 2024-09-11 09:00:35.968831 mef 511 R rec 154b0c7c-0902-40fc-9809-d015dd293bcf +2024-09-11 09:00:36.034939 2024-09-11 09:00:36.034943 mef 512 R rec f6b72b3c-cc3b-4f84-abd7-228f22d11f81 +2024-09-11 09:00:36.102652 2024-09-11 09:00:36.102656 mef 513 R rec 5e78dfb9-f582-4134-8dd5-5f77d2b74afc +2024-09-11 09:00:36.184631 2024-09-11 09:00:36.184635 mef 514 R rec c3138d6b-d65d-4ce3-b337-9e02971d4ac5 +2024-09-11 09:00:36.250447 2024-09-11 09:00:36.250451 mef 515 R rec b57f3ea5-042f-4a94-946f-1c4695f7dbb2 +2024-09-11 09:00:36.307282 2024-09-11 09:00:36.307287 mef 516 R rec 962ae100-c010-4dcf-9a4c-560ec3bcbae6 +2024-09-11 09:00:36.35871 2024-09-11 09:00:36.358715 mef 517 R rec f12fbc6b-30f7-4a95-83b8-beb094556926 +2024-09-11 09:00:36.416462 2024-09-11 09:00:36.416467 mef 518 R rec 1ae34b39-6c77-4602-82ef-2227900e8c81 +2024-09-11 09:00:36.478228 2024-09-11 09:00:36.478233 mef 519 R rec c7508bb1-3ed0-4eba-b653-223684c30fe1 +2024-09-11 09:00:36.534474 2024-09-11 09:00:36.534479 mef 520 R rec bc329a0c-d22d-4004-a65f-5650beb3e2c7 +2024-09-11 09:00:36.586603 2024-09-11 09:00:36.586607 mef 521 R rec 4cf744a8-d035-4525-ab41-a2bb2d1ed2a5 +2024-09-11 09:00:36.642493 2024-09-11 09:00:36.642497 mef 522 R rec d072f798-bb3c-48e3-82d2-e963acfd9f9f +2024-09-11 09:00:36.697155 2024-09-11 09:00:36.69716 mef 523 R rec 9ceba11f-fa19-4372-9a29-e11c4c547eaa +2024-09-11 09:00:36.75112 2024-09-11 09:00:36.751124 mef 524 R rec 5d6ee173-8a08-49aa-b924-2ccc9de4523b +2024-09-11 09:00:36.807573 2024-09-11 09:00:36.807577 mef 525 R rec 10258a98-2e01-4645-bc3c-14763f982f6b +2024-09-11 09:00:36.861247 2024-09-11 09:00:36.861251 mef 526 R rec af79d4a3-6804-41e9-9b07-605c26720da3 +2024-09-11 09:00:36.920788 2024-09-11 09:00:36.920792 mef 527 R rec 55764179-8b79-4200-b8ff-edf9bf6f64b9 +2024-09-11 09:00:36.973282 2024-09-11 09:00:36.973287 mef 528 R rec 3c08a75a-f0dc-4a0b-a8b3-103460138f3c +2024-09-11 09:00:37.028659 2024-09-11 09:00:37.028663 mef 529 R rec 92392caf-2090-41e8-a3c5-34cfa3b9188f +2024-09-11 09:00:37.086189 2024-09-11 09:00:37.086194 mef 530 R rec 8e8252d5-facd-48af-b533-cc99f10dd6c2 +2024-09-11 09:00:37.151192 2024-09-11 09:00:37.151197 mef 531 R rec d5f6eb42-88cc-40f6-a51c-9f6599842d79 +2024-09-11 09:00:37.208913 2024-09-11 09:00:37.208919 mef 532 R rec aa90afae-d2c9-4399-b2dd-84d1c1602c20 +2024-09-11 09:00:37.270394 2024-09-11 09:00:37.270399 mef 533 R rec d88ead81-f1ad-4b67-9368-b9f5e55128aa +2024-09-11 09:00:37.332323 2024-09-11 09:00:37.332329 mef 534 R rec 3e109ca8-c2ee-4b2c-8f07-fddd450ff0f4 +2024-09-11 09:00:37.384864 2024-09-11 09:00:37.384868 mef 535 R rec 81697e37-a48e-48f9-a2be-5eabea77316e +2024-09-11 09:00:37.439791 2024-09-11 09:00:37.439795 mef 536 R rec 565c89af-7039-4e22-8b14-9ce4bf4291e3 +2024-09-11 09:00:37.493146 2024-09-11 09:00:37.49315 mef 537 R rec 899f6e77-3e71-43d8-ac3a-24311fbaa6f9 +2024-09-11 09:00:37.545562 2024-09-11 09:00:37.545596 mef 538 R rec 69e14172-5f66-4ae9-814b-01c27f5fa504 +2024-09-11 09:00:37.619629 2024-09-11 09:00:37.619635 mef 539 R rec 6789b7bc-5a33-457d-b35b-4d9893fe86a0 +2024-09-11 09:00:37.684395 2024-09-11 09:00:37.684399 mef 540 R rec bb4f5607-29c2-4c5d-8a64-c5e6e023a869 +2024-09-11 09:00:37.73589 2024-09-11 09:00:37.735895 mef 541 R rec 337462a0-ed5c-4de4-be21-d162d3e6dab0 +2024-09-11 09:00:37.792108 2024-09-11 09:00:37.792113 mef 542 R rec 07fe683c-b593-48e5-92ef-52ab81c186d8 +2024-09-11 09:00:37.856411 2024-09-11 09:00:37.856415 mef 543 R rec 031c15b2-b876-4bc4-b33b-9641bfef6d7d +2024-09-11 09:00:37.914883 2024-09-11 09:00:37.914888 mef 544 R rec 488393f1-161f-4b27-be9b-0f93b587a357 +2024-09-11 09:00:37.972932 2024-09-11 09:00:37.972937 mef 545 R rec e1278640-1c81-4b5a-82c0-b409549327be +2024-09-11 09:00:38.029661 2024-09-11 09:00:38.029666 mef 546 R rec 4c590ceb-6c75-4d11-9def-79b6419915a3 +2024-09-11 09:00:38.10182 2024-09-11 09:00:38.101824 mef 547 R rec ead9f289-cf7d-420f-ae82-88c4c330664f +2024-09-11 09:00:38.158968 2024-09-11 09:00:38.158973 mef 548 R rec 632ffbc9-3dd3-4f37-a0c0-68eae2d5f9b3 +2024-09-11 09:00:38.223864 2024-09-11 09:00:38.223868 mef 549 R rec e031b032-0c35-41e3-9985-518b9c4ed20e +2024-09-11 09:00:38.279644 2024-09-11 09:00:38.279649 mef 550 R rec 187f011a-5cde-4d93-ad25-bc6dc6752c25 +2024-09-11 09:00:38.339943 2024-09-11 09:00:38.339948 mef 551 R rec 0f0a0594-b337-4469-8122-d234b68cbcb8 +2024-09-11 09:00:38.390938 2024-09-11 09:00:38.390942 mef 552 R rec 1b19b55f-7c2e-4e5d-b1ff-175eceeff044 +2024-09-11 09:00:38.445734 2024-09-11 09:00:38.445738 mef 553 R rec d3c27b52-891b-46a8-9b61-aa32d8f91bf7 +2024-09-11 09:00:38.497017 2024-09-11 09:00:38.497023 mef 554 R rec 68863d80-b3c9-463a-990b-96dd6afb4149 +2024-09-11 09:00:38.563809 2024-09-11 09:00:38.563814 mef 555 R rec 22887a02-1961-44fc-a17c-7873e6319c95 +2024-09-11 09:00:38.617045 2024-09-11 09:00:38.617049 mef 556 R rec 946d2d1c-aa09-4f46-9007-2bba14dbd42c +2024-09-11 09:00:38.685597 2024-09-11 09:00:38.685601 mef 557 R rec 8a256530-8927-4fad-a738-0cbed3238c70 +2024-09-11 09:00:38.744463 2024-09-11 09:00:38.744467 mef 558 R rec 326a5c06-0b22-4bf7-b2d9-fcd3cb6a576d +2024-09-11 09:00:38.798754 2024-09-11 09:00:38.798759 mef 559 R rec e85cd275-a93d-48b4-b6ea-be44fd34fc9b +2024-09-11 09:00:38.851722 2024-09-11 09:00:38.851727 mef 560 R rec 2e164381-b596-4af3-8f4d-6885ccc9bac3 +2024-09-11 09:00:38.904282 2024-09-11 09:00:38.904287 mef 561 R rec 3320e41d-94e5-4137-842a-d42b80e1248f +2024-09-11 09:00:38.956426 2024-09-11 09:00:38.956431 mef 562 R rec 2f093971-7535-499c-bffd-775e08f85ee6 +2024-09-11 09:00:39.012235 2024-09-11 09:00:39.012239 mef 563 R rec 347866fa-2b64-47ba-b9e8-974d46c334f1 +2024-09-11 09:00:39.078731 2024-09-11 09:00:39.078736 mef 564 R rec f473acda-2b91-4617-9e8d-0b3feca74072 +2024-09-11 09:00:39.130648 2024-09-11 09:00:39.130653 mef 565 R rec 64edee11-8b78-4789-a3d5-4a6922050a09 +2024-09-11 09:00:39.185626 2024-09-11 09:00:39.18563 mef 566 R rec 70db27b6-c1bf-41c0-82bd-b0d6368fdc3e +2024-09-11 09:00:39.238825 2024-09-11 09:00:39.23883 mef 567 R rec b1871e10-e92c-4beb-b8ad-4d11eba2dfe8 +2024-09-11 09:00:39.295092 2024-09-11 09:00:39.295096 mef 568 R rec a11379ae-4996-42cf-9f3a-bbc5df3d97b2 +2024-09-11 09:00:39.349519 2024-09-11 09:00:39.349523 mef 569 R rec 8f1d4884-9ca1-4d98-bf48-7f164d28bde1 +2024-09-11 09:00:39.403677 2024-09-11 09:00:39.403682 mef 570 R rec ed13281e-c699-4c1a-bd25-8dd527fc6255 +2024-09-11 09:00:39.459522 2024-09-11 09:00:39.459527 mef 571 R rec 273d446f-450c-4766-93a5-19b7250163db +2024-09-11 09:00:39.526183 2024-09-11 09:00:39.526188 mef 572 R rec 2337917d-307b-45be-9c21-177c3838a8ad +2024-09-11 09:00:39.576764 2024-09-11 09:00:39.576769 mef 573 R rec 6747f69c-7869-445f-ba84-ac8cd28788f6 +2024-09-11 09:00:39.630491 2024-09-11 09:00:39.630496 mef 574 R rec 377b95d3-bc2c-465d-9d5f-d88a09e496ba +2024-09-11 09:00:39.687315 2024-09-11 09:00:39.68732 mef 575 R rec b1573ed7-f9c9-4d53-ab98-13a88e18683b +2024-09-11 09:00:39.744866 2024-09-11 09:00:39.744871 mef 576 R rec 036fd8e6-2063-429c-a4a3-9ed0025c568a +2024-09-11 09:00:39.800954 2024-09-11 09:00:39.800959 mef 577 R rec 2bc5ab82-555f-4700-a0b1-b2e48288deb8 +2024-09-11 09:00:39.854765 2024-09-11 09:00:39.85477 mef 578 R rec 2cecc7ab-c4a2-4266-9c0a-42ad242193c0 +2024-09-11 09:00:39.911058 2024-09-11 09:00:39.911062 mef 579 R rec c83735ed-eaf5-4a4b-a4f4-ccf67245ae59 +2024-09-11 09:00:39.975822 2024-09-11 09:00:39.975826 mef 580 R rec e012844c-3e07-4dd9-a785-b30ad4a50e11 +2024-09-11 09:00:40.03227 2024-09-11 09:00:40.032275 mef 581 R rec 97a4ed59-9371-457b-8c74-cad1d8ce7e31 +2024-09-11 09:00:40.084577 2024-09-11 09:00:40.084581 mef 582 R rec 336ecd04-5084-4bf0-a841-d934b4301120 +2024-09-11 09:00:40.151814 2024-09-11 09:00:40.151819 mef 583 R rec ae2703aa-11a1-4368-bc41-df07255994ae +2024-09-11 09:00:40.218373 2024-09-11 09:00:40.218378 mef 584 R rec 8a5a57ba-e3d2-44ce-ac43-3099fdc1195b +2024-09-11 09:00:40.272979 2024-09-11 09:00:40.272984 mef 585 R rec 8091390b-e424-4fd2-a900-c1c784c81910 +2024-09-11 09:00:40.338471 2024-09-11 09:00:40.338476 mef 586 R rec 76ce9944-5b6a-4b10-8403-89b05f464745 +2024-09-11 09:00:40.389431 2024-09-11 09:00:40.389436 mef 587 R rec dd49b8e1-6e9f-42d2-8365-6cb3670662ec +2024-09-11 09:00:40.482323 2024-09-11 09:00:40.482328 mef 588 R rec 3cb0f650-69cd-4c23-9592-2f001004bcc9 +2024-09-11 09:00:40.550754 2024-09-11 09:00:40.550759 mef 589 R rec 23e77abf-9657-4be2-bca0-62f45c35a3fa +2024-09-11 09:00:40.617329 2024-09-11 09:00:40.617334 mef 590 R rec a63bb85f-b0ab-461e-90c0-e33c633e7dd5 +2024-09-11 09:00:40.669511 2024-09-11 09:00:40.669516 mef 591 R rec a8b2f3c5-3f91-46a1-80ad-aac15a0c3041 +2024-09-11 09:00:40.720767 2024-09-11 09:00:40.720772 mef 592 R rec 1cc33c81-c1e2-4f72-bfe5-0e4e42882e18 +2024-09-11 09:00:40.781042 2024-09-11 09:00:40.781046 mef 593 R rec a2d56d4c-5925-4728-a086-e184c7162599 +2024-09-11 09:00:40.839402 2024-09-11 09:00:40.839407 mef 594 R rec 20c59e89-b7c7-4b6e-b210-a689e0a40a30 +2024-09-11 09:00:40.894686 2024-09-11 09:00:40.89469 mef 595 R rec 5ae0096b-79dc-4b04-ae0f-615729a84020 +2024-09-11 09:00:40.949451 2024-09-11 09:00:40.949456 mef 596 R rec 8933ff56-3d7b-4633-ac87-15cde6c674ca +2024-09-11 09:00:41.004377 2024-09-11 09:00:41.004382 mef 597 R rec ad939d8a-896d-4778-bb62-4320014b4011 +2024-09-11 09:00:41.068859 2024-09-11 09:00:41.068863 mef 598 R rec c09026a1-fbc5-48ca-8d7e-e445e23a49e9 +2024-09-11 09:00:41.118771 2024-09-11 09:00:41.118775 mef 599 R rec 84f19699-47fb-4d95-9380-59b7b4f2a2a1 +2024-09-11 09:00:41.175614 2024-09-11 09:00:41.175619 mef 600 R rec 2445d258-03c6-4f63-b45d-27e5c00bcd46 +2024-09-11 09:00:41.233618 2024-09-11 09:00:41.233622 mef 601 R rec d4393c01-c1de-44c6-a835-dcdee45bed6d +2024-09-11 09:00:41.287154 2024-09-11 09:00:41.287158 mef 602 R rec 3b70d84e-fb6d-45c3-ac63-407f4e03caa6 +2024-09-11 09:00:41.353377 2024-09-11 09:00:41.353382 mef 603 R rec c5c8354c-3d35-4e54-b88f-c8827a55b0ab +2024-09-11 09:00:41.408654 2024-09-11 09:00:41.408659 mef 604 R rec 2eeac897-359b-4fbb-bcd1-67e26e3b6f64 +2024-09-11 09:00:41.46113 2024-09-11 09:00:41.461135 mef 605 R rec 60e2a107-1538-4469-b160-fd59fc21e461 +2024-09-11 09:00:41.514532 2024-09-11 09:00:41.514537 mef 606 R rec f9ead550-f545-4d11-a906-7dac00f8b34d +2024-09-11 09:00:41.577954 2024-09-11 09:00:41.577959 mef 607 R rec 0bf8df67-18c9-4fea-893b-813f3511fbc7 +2024-09-11 09:00:41.627559 2024-09-11 09:00:41.627563 mef 608 R rec 803507ad-d9eb-4103-9ed0-348b47c1f819 +2024-09-11 09:00:41.680043 2024-09-11 09:00:41.680048 mef 609 R rec b0cf3f6c-d4ba-4596-b9a1-3e906dbc8fe3 +2024-09-11 09:00:41.743697 2024-09-11 09:00:41.743702 mef 610 R rec 5610cdfe-5805-4c6b-985c-0bc0ab4699b7 +2024-09-11 09:00:41.80006 2024-09-11 09:00:41.800065 mef 611 R rec 9830df2b-5a04-4473-ade8-dcacc432eed7 +2024-09-11 09:00:41.863316 2024-09-11 09:00:41.863322 mef 612 R rec 620dc2e3-ff9d-4c3c-8f95-ab7bf1b5de02 +2024-09-11 09:00:41.954197 2024-09-11 09:00:41.954202 mef 613 R rec bc3d2f22-d6f2-472d-83c3-f5615d31caba +2024-09-11 09:00:42.008509 2024-09-11 09:00:42.008514 mef 614 R rec 492fac46-4f07-4bd7-94c7-4703295632fd +2024-09-11 09:00:42.066411 2024-09-11 09:00:42.066415 mef 615 R rec b7fc6ba9-d7ae-4d24-ac48-86d72d9bafbd +2024-09-11 09:00:42.123814 2024-09-11 09:00:42.123818 mef 616 R rec da37b02c-0ea3-472f-9c09-62b71d228afe +2024-09-11 09:00:42.176011 2024-09-11 09:00:42.176016 mef 617 R rec f9cbe5ab-a97e-40ae-9c9d-7fc7fec1e107 +2024-09-11 09:00:42.229573 2024-09-11 09:00:42.229577 mef 618 R rec 7536d577-4537-4f2f-b54f-f400733f6448 +2024-09-11 09:00:42.292907 2024-09-11 09:00:42.292912 mef 619 R rec f79e8458-cc2c-4ff9-a26e-d4ef373986c2 +2024-09-11 09:00:42.349384 2024-09-11 09:00:42.349388 mef 620 R rec abbbde40-bd94-45b7-b0ef-109fa78bd86e +2024-09-11 09:00:42.40212 2024-09-11 09:00:42.402124 mef 621 R rec 9bc7ec74-18a5-45dd-9f7a-a94722b01691 +2024-09-11 09:00:42.472543 2024-09-11 09:00:42.472547 mef 622 R rec 2f4c33be-fb39-4b55-aedf-f3c24f7beaef +2024-09-11 09:00:42.526354 2024-09-11 09:00:42.526359 mef 623 R rec 6dd16fff-adf2-4116-91c6-27e5709bf0c6 +2024-09-11 09:00:42.59359 2024-09-11 09:00:42.593594 mef 624 R rec f45d6acb-a746-409a-84e4-fff9389ca16c +2024-09-11 09:00:42.644973 2024-09-11 09:00:42.644978 mef 625 R rec 38f6c685-5c1b-4536-81d7-ed89c69b0c87 +2024-09-11 09:00:42.697933 2024-09-11 09:00:42.697937 mef 626 R rec 7b44b5fb-85ac-4696-8583-d287dad2bf69 +2024-09-11 09:00:42.753848 2024-09-11 09:00:42.753852 mef 627 R rec e7c4d152-b1c0-4474-9e30-8ee6d6cca883 +2024-09-11 09:00:42.804452 2024-09-11 09:00:42.804456 mef 628 R rec 7bce4881-cf00-4552-ae25-8cbab0cf55e1 +2024-09-11 09:00:42.859228 2024-09-11 09:00:42.859233 mef 629 R rec a48a7f75-1f8a-40d1-939f-8acdf1f4d195 +2024-09-11 09:00:42.908385 2024-09-11 09:00:42.908389 mef 630 R rec 35d6044e-098f-46a1-8633-03745ab4771c +2024-09-11 09:00:42.959207 2024-09-11 09:00:42.959212 mef 631 R rec 1056b251-92f9-4a18-9b67-59251c12eec1 +2024-09-11 09:00:43.013703 2024-09-11 09:00:43.013708 mef 632 R rec b5ca0312-d3e4-468b-a428-045d6e66ead1 +2024-09-11 09:00:43.065113 2024-09-11 09:00:43.065118 mef 633 R rec ff887336-bad6-4586-b9c7-22ff1325ddda +2024-09-11 09:00:43.118959 2024-09-11 09:00:43.118964 mef 634 R rec 4c014a24-509b-4cc9-b40a-d897b87d0520 +2024-09-11 09:00:43.173053 2024-09-11 09:00:43.173057 mef 635 R rec 5ef3ccb3-fa55-4b1a-964c-d78f118c9e7c +2024-09-11 09:00:43.234132 2024-09-11 09:00:43.234137 mef 636 R rec b0e44eed-86f0-487c-a177-729752fe0991 +2024-09-11 09:00:43.290622 2024-09-11 09:00:43.290627 mef 637 R rec b52a422e-6197-4e5f-8bf1-89c8f33a3836 +2024-09-11 09:00:43.359429 2024-09-11 09:00:43.359433 mef 638 R rec 117d099a-607f-4c5b-addc-05089df93dc6 +2024-09-11 09:00:43.417086 2024-09-11 09:00:43.41709 mef 639 R rec c941cda3-bad4-4506-840b-b6d2f3370b2b +2024-09-11 09:00:43.474551 2024-09-11 09:00:43.474556 mef 640 R rec 8de65519-18ab-4743-bedb-f787a65f3f45 +2024-09-11 09:00:43.531847 2024-09-11 09:00:43.531852 mef 641 R rec f3a25367-8a18-40f8-a061-8d110750ed3f +2024-09-11 09:00:43.597744 2024-09-11 09:00:43.597749 mef 642 R rec 96cc2908-b876-40ae-98a5-991ee3f6137c +2024-09-11 09:00:43.662854 2024-09-11 09:00:43.662859 mef 643 R rec 89ad4f9f-5eb6-41ea-b62b-6d47bf9a6eef +2024-09-11 09:00:43.717706 2024-09-11 09:00:43.717711 mef 644 R rec 3f0152ec-2868-4b71-ae9e-2b870a359df1 +2024-09-11 09:00:43.771664 2024-09-11 09:00:43.771669 mef 645 R rec 41774a5b-bdd5-474f-afad-b9b8c3fb419e +2024-09-11 09:00:43.836093 2024-09-11 09:00:43.836098 mef 646 R rec d1b62d82-b301-4612-a6a1-3ef468a61d67 +2024-09-11 09:00:43.890123 2024-09-11 09:00:43.890127 mef 647 R rec 0d231d23-e1be-45a6-9e93-9de3b4622000 +2024-09-11 09:00:43.941584 2024-09-11 09:00:43.941589 mef 648 R rec 887e9a3d-f925-4591-96ca-b12ea003c572 +2024-09-11 09:00:43.999871 2024-09-11 09:00:43.999876 mef 649 R rec f5b68ae0-73a2-4c5b-89a3-a99f8e1a99fc +2024-09-11 09:00:44.0628 2024-09-11 09:00:44.062804 mef 650 R rec 68f4d473-30ce-43e1-af75-65a173fde74e +2024-09-11 09:00:44.128092 2024-09-11 09:00:44.128096 mef 651 R rec 53754dc3-838d-4e1b-9a4e-6af42393a4d0 +2024-09-11 09:00:44.180804 2024-09-11 09:00:44.180809 mef 652 R rec cf702a40-9db3-42f1-9fde-3c527d18dc33 +2024-09-11 09:00:44.234755 2024-09-11 09:00:44.234761 mef 653 R rec de5c2e7d-6ba0-483f-b071-60760b75294d +2024-09-11 09:00:44.287109 2024-09-11 09:00:44.287114 mef 654 R rec 6c4cd3d2-5b37-4307-9e60-e0c678bfc510 +2024-09-11 09:00:44.338275 2024-09-11 09:00:44.338279 mef 655 R rec 843a712d-de6f-435a-a311-51aa0225651c +2024-09-11 09:00:44.40328 2024-09-11 09:00:44.403284 mef 656 R rec 7e9ab204-bdd3-422f-a4b9-a834b987890d +2024-09-11 09:00:44.451717 2024-09-11 09:00:44.451721 mef 657 R rec d09ddd22-1b3c-43b0-9981-1cfd0687bf6c +2024-09-11 09:00:44.504968 2024-09-11 09:00:44.504972 mef 658 R rec 31b026d3-3503-41f2-bef3-31cb5976f2ab +2024-09-11 09:00:44.558265 2024-09-11 09:00:44.55827 mef 659 R rec 97e73994-3848-406a-9ebb-6bebe4cdb12b +2024-09-11 09:00:44.62183 2024-09-11 09:00:44.621834 mef 660 R rec 39ef656e-36e8-4a6b-889a-8927703a9ad0 +2024-09-11 09:00:44.681577 2024-09-11 09:00:44.681582 mef 661 R rec 9da55e1f-a0c3-4abb-81c9-8fe8838c2977 +2024-09-11 09:00:44.733624 2024-09-11 09:00:44.733629 mef 662 R rec 1cb71833-3259-4ac6-aaa6-fc2e14eaab44 +2024-09-11 09:00:44.783485 2024-09-11 09:00:44.783489 mef 663 R rec 7346f9e0-c5ad-48c0-a334-7de33aa86d73 +2024-09-11 09:00:44.833381 2024-09-11 09:00:44.833386 mef 664 R rec 1310ae58-622a-41aa-856f-70189f153b59 +2024-09-11 09:00:44.888193 2024-09-11 09:00:44.888197 mef 665 R rec f45ee80a-ae08-42f5-a0f5-6a76f64ae73d +2024-09-11 09:00:44.952224 2024-09-11 09:00:44.952229 mef 666 R rec d5f80fc9-cec0-4fad-a2e0-4910393ff7ea +2024-09-11 09:00:45.007005 2024-09-11 09:00:45.007009 mef 667 R rec d9c96352-2b40-492b-bd4d-21bb327b49ed +2024-09-11 09:00:45.058968 2024-09-11 09:00:45.058972 mef 668 R rec 5749adc6-72f7-43b4-a5e6-ad7b91b9d51d +2024-09-11 09:00:45.112645 2024-09-11 09:00:45.11265 mef 669 R rec 6cd81bbe-7a31-47d0-a1fd-456d430a0d6c +2024-09-11 09:00:45.165737 2024-09-11 09:00:45.165743 mef 670 R rec dd6c24e0-7b35-4dee-8ca3-739dbfea531c +2024-09-11 09:00:45.222774 2024-09-11 09:00:45.222778 mef 671 R rec db285079-1167-4f09-bac1-88b4f0f1eb13 +2024-09-11 09:00:45.275436 2024-09-11 09:00:45.275442 mef 672 R rec a9dac009-388a-43f0-ae11-8a0a6604cdf6 +2024-09-11 09:00:45.330535 2024-09-11 09:00:45.33054 mef 673 R rec 9c2cc83a-5516-48e5-a84c-ae54f7b89ac1 +2024-09-11 09:00:45.390084 2024-09-11 09:00:45.390088 mef 674 R rec e996dc60-d895-4da0-920f-000309a964f1 +2024-09-11 09:00:45.455672 2024-09-11 09:00:45.455677 mef 675 R rec 980d0df8-0431-4eb1-a6aa-94bfd06917ba +2024-09-11 09:00:45.522811 2024-09-11 09:00:45.522816 mef 676 R rec 29c79e5a-13e2-41e6-8850-f69419acf2d6 +2024-09-11 09:00:45.574662 2024-09-11 09:00:45.574666 mef 677 R rec ca190f82-1e02-4dca-9605-70158d23535c +2024-09-11 09:00:45.636534 2024-09-11 09:00:45.636538 mef 678 R rec c9e708a0-f471-499b-899d-cfd3f01f2a77 +2024-09-11 09:00:45.689727 2024-09-11 09:00:45.689733 mef 679 R rec 26a48b57-cbb0-4f21-bfac-4130b4d97677 +2024-09-11 09:00:45.756282 2024-09-11 09:00:45.756287 mef 680 R rec 9f86a5e9-9193-4db4-b6bc-2b63da1293fe +2024-09-11 09:00:45.804276 2024-09-11 09:00:45.804281 mef 681 R rec 563361a3-884c-4dc8-bc2a-f7f2de9a71d2 +2024-09-11 09:00:45.85614 2024-09-11 09:00:45.856144 mef 682 R rec 9397849b-7136-457c-b4f4-e6ab5ae5bbfc +2024-09-11 09:00:45.905612 2024-09-11 09:00:45.905617 mef 683 R rec 84626f34-fad3-424c-860f-a366d9142695 +2024-09-11 09:00:45.960137 2024-09-11 09:00:45.960141 mef 684 R rec 5844b8dd-3972-4ffa-97b6-c274dcad2eba +2024-09-11 09:00:46.02327 2024-09-11 09:00:46.023274 mef 685 R rec ee098175-136f-49b4-814d-c1f7f7a754a5 +2024-09-11 09:00:46.080732 2024-09-11 09:00:46.080736 mef 686 R rec c69a54d0-176a-4e67-9000-04562ead0567 +2024-09-11 09:00:46.136067 2024-09-11 09:00:46.136072 mef 687 R rec f45e34d3-f34a-4180-a256-4d689febb271 +2024-09-11 09:00:46.188643 2024-09-11 09:00:46.188648 mef 688 R rec 1ec72057-4f0d-40a8-94b7-3d0d87919e20 +2024-09-11 09:00:46.292535 2024-09-11 09:00:46.29254 mef 689 R rec 251f11b5-c698-411a-860f-5ac481c4b6e2 +2024-09-11 09:00:46.354196 2024-09-11 09:00:46.354201 mef 690 R rec a45a960e-9f87-40dc-8aa6-692ce1bcf274 +2024-09-11 09:00:46.420974 2024-09-11 09:00:46.420978 mef 691 R rec 9ef2afb7-2214-46b0-979a-0096b5c02b08 +2024-09-11 09:00:46.479678 2024-09-11 09:00:46.479682 mef 692 R rec 3a4bc818-72ea-4d3f-b03b-b17e1249b5df +2024-09-11 09:00:46.539824 2024-09-11 09:00:46.539829 mef 693 R rec cf9f7592-d6af-45c7-91e5-f22ccfea025b +2024-09-11 09:00:46.594256 2024-09-11 09:00:46.59426 mef 694 R rec 5a2efeaa-4eac-4d77-95ee-75935490d4ca +2024-09-11 09:00:46.647562 2024-09-11 09:00:46.647567 mef 695 R rec 77e898a0-f4d8-44fc-9b47-c59c3c9e6064 +2024-09-11 09:00:46.698246 2024-09-11 09:00:46.698251 mef 696 R rec af4aa773-13de-408d-a780-d62fcbd63699 +2024-09-11 09:00:46.750187 2024-09-11 09:00:46.750191 mef 697 R rec 1ac8338c-684b-44a1-8388-77b99cf41e52 +2024-09-11 09:00:46.805472 2024-09-11 09:00:46.805477 mef 698 R rec 673bba32-cd80-4f24-b7b0-b718064d6d8f +2024-09-11 09:00:46.859535 2024-09-11 09:00:46.85954 mef 699 R rec f4ce5e8f-9ae6-4a57-825e-b64d96b0f172 +2024-09-11 09:00:46.912959 2024-09-11 09:00:46.912963 mef 700 R rec 1d922843-7a01-4bbf-9ec8-396ca7b687d4 +2024-09-11 09:00:46.967478 2024-09-11 09:00:46.967482 mef 701 R rec 98c0e1d8-cc2c-4f9c-ba57-e8c76ae50039 +2024-09-11 09:00:47.024853 2024-09-11 09:00:47.024857 mef 702 R rec 62031b24-1e87-4f84-a416-92fbb2bd901f +2024-09-11 09:00:47.07865 2024-09-11 09:00:47.078655 mef 703 R rec 0f5aff88-f1cc-4795-ac2c-a2f33852f6ef +2024-09-11 09:00:47.130171 2024-09-11 09:00:47.130176 mef 704 R rec 756ed47f-ea81-4f0b-8b9f-65c5ddb1ad98 +2024-09-11 09:00:47.183135 2024-09-11 09:00:47.18314 mef 705 R rec 0f8f416b-017d-4fb4-8ba9-8b3688a55d0d +2024-09-11 09:00:47.236024 2024-09-11 09:00:47.236028 mef 706 R rec 480e9cc5-387f-4e24-b199-2c6f014d6872 +2024-09-11 09:00:47.28809 2024-09-11 09:00:47.288095 mef 707 R rec 51316284-f65f-41d3-ae6e-12a857ac6dfc +2024-09-11 09:00:47.352736 2024-09-11 09:00:47.35274 mef 708 R rec 2590dfff-5d1a-45b0-8664-470693948a3a +2024-09-11 09:00:47.416685 2024-09-11 09:00:47.416689 mef 709 R rec c5e8540d-3ae2-41f6-8d80-834128ea08ba +2024-09-11 09:00:47.482194 2024-09-11 09:00:47.482198 mef 710 R rec 557fef18-b4af-4a1e-a1e0-d407a1c0924f +2024-09-11 09:00:47.536771 2024-09-11 09:00:47.536775 mef 711 R rec 517789b8-1afe-4996-af26-72ec7a3c6d74 +2024-09-11 09:00:47.592857 2024-09-11 09:00:47.592862 mef 712 R rec 2b716491-d0ad-4655-8253-cfde3edf0fe0 +2024-09-11 09:00:47.64904 2024-09-11 09:00:47.649045 mef 713 R rec 3859f0f5-8495-4ac2-98eb-b592a1bfe5dc +2024-09-11 09:00:47.705094 2024-09-11 09:00:47.705098 mef 714 R rec 1a947f17-5c95-4e26-a8fe-47d278ce7936 +2024-09-11 09:00:47.756995 2024-09-11 09:00:47.756999 mef 715 R rec 0895e68f-d4b2-4c2d-b2ad-63b7b2a37971 +2024-09-11 09:00:47.814537 2024-09-11 09:00:47.814542 mef 716 R rec c4ac4841-fd73-4068-9ad8-de82f143a545 +2024-09-11 09:00:47.869375 2024-09-11 09:00:47.869379 mef 717 R rec 23bf8a0f-da98-4c07-8c6f-c77c5e4dd7a0 +2024-09-11 09:00:47.922427 2024-09-11 09:00:47.922431 mef 718 R rec 87bdaae1-93f7-4463-b235-e3b1f2417b59 +2024-09-11 09:00:47.984278 2024-09-11 09:00:47.984282 mef 719 R rec b67a8eff-4c16-45c4-b8b8-33f067cc195a +2024-09-11 09:00:48.052463 2024-09-11 09:00:48.052467 mef 720 R rec a652885d-f607-4da6-94a7-bca4594671f5 +2024-09-11 09:00:48.12269 2024-09-11 09:00:48.122695 mef 721 R rec c2ae486f-3f31-4c95-9825-99c6170bb5a5 +2024-09-11 09:00:48.172378 2024-09-11 09:00:48.172382 mef 722 R rec 74fa3668-66cd-4ce6-8b71-0549bef6945c +2024-09-11 09:00:48.225947 2024-09-11 09:00:48.225952 mef 723 R rec 95b86181-ceaa-4a2f-8e35-1ad7626ff785 +2024-09-11 09:00:48.285578 2024-09-11 09:00:48.285582 mef 724 R rec 7bd3de91-453e-44c6-b9ec-879483ee398b +2024-09-11 09:00:48.338983 2024-09-11 09:00:48.338987 mef 725 R rec 71fb478d-16d8-4fa4-b9a2-6e582612b628 +2024-09-11 09:00:48.396864 2024-09-11 09:00:48.396871 mef 726 R rec 4acd915b-746d-4132-80da-ca720940f62b +2024-09-11 09:00:48.4669 2024-09-11 09:00:48.466905 mef 727 R rec 1a175648-fa37-4180-9b24-aee25b4597b2 +2024-09-11 09:00:48.522488 2024-09-11 09:00:48.522492 mef 728 R rec fd0506a5-59cc-4f40-8287-18d89fca0a6a +2024-09-11 09:00:48.589577 2024-09-11 09:00:48.589582 mef 729 R rec a5baecd6-b444-4fa8-8c70-c32bfdcf02b2 +2024-09-11 09:00:48.659096 2024-09-11 09:00:48.659101 mef 730 R rec 023917a4-1a8b-49f3-a8f1-705feccb7dba +2024-09-11 09:00:48.71403 2024-09-11 09:00:48.714035 mef 731 R rec 6a434512-87f9-4641-bee3-ad0d22aa85b7 +2024-09-11 09:00:48.773266 2024-09-11 09:00:48.773271 mef 732 R rec 0853250c-f981-4c6e-a6b8-eec4442a6a30 +2024-09-11 09:00:48.838698 2024-09-11 09:00:48.838703 mef 733 R rec 9829e076-80c3-48a3-a25a-bc48cce9f14d +2024-09-11 09:00:48.891007 2024-09-11 09:00:48.891012 mef 734 R rec b21748cd-80e2-4f70-84e8-78b34eabd37d +2024-09-11 09:00:48.945601 2024-09-11 09:00:48.945606 mef 735 R rec d4a42266-d1d3-4ffc-a1b8-517db6be1e1e +2024-09-11 09:00:48.996105 2024-09-11 09:00:48.996111 mef 736 R rec 6d00d5dc-ca47-4312-b2d9-85add8340824 +2024-09-11 09:00:49.051107 2024-09-11 09:00:49.051118 mef 737 R rec 8828e731-f205-48cf-8ef1-b94b34b3fb6d +2024-09-11 09:00:49.110886 2024-09-11 09:00:49.110891 mef 738 R rec f77c21ae-d0bc-43da-aa9d-89aa35a5728c +2024-09-11 09:00:49.162511 2024-09-11 09:00:49.162516 mef 739 R rec 978e1f3d-76eb-42f1-bf7a-d1ce77274a7d +2024-09-11 09:00:49.215988 2024-09-11 09:00:49.215993 mef 740 R rec 3a84abbc-00c6-41d4-b8ab-a148a42e281c +2024-09-11 09:00:49.27383 2024-09-11 09:00:49.273836 mef 741 R rec f08b86e6-44f7-43b6-a111-08a967d62825 +2024-09-11 09:00:49.336456 2024-09-11 09:00:49.336462 mef 742 R rec 4d0d1320-2ed7-4588-9c34-9c45be642ec6 +2024-09-11 09:00:49.387443 2024-09-11 09:00:49.387447 mef 743 R rec de172c18-85dd-4a8c-bb51-af99ce6acd7e +2024-09-11 09:00:49.442207 2024-09-11 09:00:49.442211 mef 744 R rec 7c42efa2-a177-469f-9da2-ae0d873c0c66 +2024-09-11 09:00:49.510611 2024-09-11 09:00:49.510616 mef 745 R rec 57df0a1d-4c28-4412-9886-ca34bf3ee737 +2024-09-11 09:00:49.563828 2024-09-11 09:00:49.563833 mef 746 R rec 7e82dfdb-3d23-409d-86e7-81d34caef6e8 +2024-09-11 09:00:49.616216 2024-09-11 09:00:49.616221 mef 747 R rec 0b01a45e-dd5f-4cdb-aef3-318d585f4f58 +2024-09-11 09:00:49.667728 2024-09-11 09:00:49.667733 mef 748 R rec 1cacaf45-9098-469a-9c6a-b368e956c7b3 +2024-09-11 09:00:49.721112 2024-09-11 09:00:49.721116 mef 749 R rec 268fcd76-6f24-44dd-964d-f6b9c129d053 +2024-09-11 09:00:49.773595 2024-09-11 09:00:49.773599 mef 750 R rec 7d43f530-c0ea-42ea-8a87-d564954dac70 +2024-09-11 09:00:49.82926 2024-09-11 09:00:49.829266 mef 751 R rec d4f5f571-1715-4869-b548-f200c3cddbbf +2024-09-11 09:00:49.898175 2024-09-11 09:00:49.898179 mef 752 R rec 536be708-dcc3-4dd0-ac36-336eb32f9e77 +2024-09-11 09:00:49.966759 2024-09-11 09:00:49.966763 mef 753 R rec d2b8b485-13aa-4fe3-b07c-f0e1464896fb +2024-09-11 09:00:50.017855 2024-09-11 09:00:50.01786 mef 754 R rec c18da79d-7cab-4bd7-9710-7a5dabd910e5 +2024-09-11 09:00:50.07969 2024-09-11 09:00:50.079695 mef 755 R rec b65bf058-9dd6-4ceb-8d85-77aeee89aba0 +2024-09-11 09:00:50.130476 2024-09-11 09:00:50.130481 mef 756 R rec 005ae7fa-a1e2-4b03-a2ad-1eda0b19e6e1 +2024-09-11 09:00:50.206292 2024-09-11 09:00:50.206297 mef 757 R rec 5c976215-98f7-4125-aa35-bb6ab6f7c912 +2024-09-11 09:00:50.26483 2024-09-11 09:00:50.264836 mef 758 R rec a2c9c348-b8b4-46af-8446-53790bed0381 +2024-09-11 09:00:50.342846 2024-09-11 09:00:50.342851 mef 759 R rec b1a71386-d35c-4ea6-ab7a-4bd28dfc2f6a +2024-09-11 09:00:50.394775 2024-09-11 09:00:50.39478 mef 760 R rec 86364eb7-c9cd-4d7e-917d-c2a8bd7919dc +2024-09-11 09:00:50.452552 2024-09-11 09:00:50.452557 mef 761 R rec 647bb1c8-4d91-44f0-845f-aa5ceff87323 +2024-09-11 09:00:50.505485 2024-09-11 09:00:50.505489 mef 762 R rec 84414a92-92e1-4b57-b5d0-2edcbf60f3a3 +2024-09-11 09:00:50.557266 2024-09-11 09:00:50.557271 mef 763 R rec 814f240f-8bd8-4ca8-80a2-3795b96fc8c0 +2024-09-11 09:00:50.610803 2024-09-11 09:00:50.610808 mef 764 R rec 85dd946d-cf5e-4c4e-8899-e63ad78a9281 +2024-09-11 09:00:50.661072 2024-09-11 09:00:50.661076 mef 765 R rec c71c85b8-e4ba-4ffc-b41b-0760f18da68d +2024-09-11 09:00:50.718909 2024-09-11 09:00:50.718914 mef 766 R rec 73ce2c4b-3e07-497c-8499-7c8cf7534cbc +2024-09-11 09:00:50.772742 2024-09-11 09:00:50.772747 mef 767 R rec ab4e8822-e649-4725-b696-445ff4086668 +2024-09-11 09:00:50.830649 2024-09-11 09:00:50.830654 mef 768 R rec 3c441663-e9cf-4b7c-9986-504ec2f28c19 +2024-09-11 09:00:50.898039 2024-09-11 09:00:50.898044 mef 769 R rec 0b584ab0-650f-4ee6-9948-1fa3951455a4 +2024-09-11 09:00:50.966069 2024-09-11 09:00:50.966074 mef 770 R rec b73e78f6-48cd-4ab1-94e9-65ae74fa0972 +2024-09-11 09:00:51.020252 2024-09-11 09:00:51.020256 mef 771 R rec f66d2c04-6752-436f-bd07-a3edad071499 +2024-09-11 09:00:51.074487 2024-09-11 09:00:51.074492 mef 772 R rec ea83b797-bdc4-4317-b6db-f4081d0cbce2 +2024-09-11 09:00:51.137316 2024-09-11 09:00:51.13732 mef 773 R rec 43871efb-f40b-4bd7-8eff-4023cd33be90 +2024-09-11 09:00:51.188767 2024-09-11 09:00:51.188772 mef 774 R rec 04c87969-6f59-4272-8256-997f6b19d6d1 +2024-09-11 09:00:51.243957 2024-09-11 09:00:51.243962 mef 775 R rec a50ccc85-6b11-418c-88f6-c0ed6f1d65fc +2024-09-11 09:00:51.300825 2024-09-11 09:00:51.30083 mef 776 R rec 16c314b8-0003-49bd-b82b-f621f0e17833 +2024-09-11 09:00:51.353602 2024-09-11 09:00:51.353607 mef 777 R rec bb06d461-a5ea-4851-83f1-d4ed3c754720 +2024-09-11 09:00:51.413212 2024-09-11 09:00:51.413216 mef 778 R rec b8b32fbb-39a1-4f43-8d5c-5783b0c8e81e +2024-09-11 09:00:51.507845 2024-09-11 09:00:51.507851 mef 779 R rec 035657a9-0790-439b-b086-7fcddf0e18e1 +2024-09-11 09:00:51.5777 2024-09-11 09:00:51.577704 mef 780 R rec 6c3d8fe8-1075-443c-a659-81167e858f11 +2024-09-11 09:00:51.634771 2024-09-11 09:00:51.634776 mef 781 R rec 42058467-2578-400d-9e96-d0801aa2c0ce +2024-09-11 09:00:51.692575 2024-09-11 09:00:51.692579 mef 782 R rec 94c1980d-f354-4d9e-a8a1-b6ae6255f40f +2024-09-11 09:00:51.753738 2024-09-11 09:00:51.753742 mef 783 R rec 262b709a-1033-41fb-b38d-79968ce0ea90 +2024-09-11 09:00:51.823753 2024-09-11 09:00:51.823758 mef 784 R rec 78d215c3-e71b-4668-8a6e-f2b1e80d0ab6 +2024-09-11 09:00:51.88527 2024-09-11 09:00:51.885274 mef 785 R rec 6189cdbd-c7d2-491d-9d1e-a28befbbe24c +2024-09-11 09:00:51.950379 2024-09-11 09:00:51.950383 mef 786 R rec c70f656a-5237-42cb-97a1-e160073a9a5a +2024-09-11 09:00:52.002952 2024-09-11 09:00:52.002958 mef 787 R rec 72fb0aa7-2edb-41c6-81f9-ef05f0992098 +2024-09-11 09:00:52.05745 2024-09-11 09:00:52.057454 mef 788 R rec 9ebc0abf-ec9d-42ee-b69c-573777f2476e +2024-09-11 09:00:52.108015 2024-09-11 09:00:52.108019 mef 789 R rec eaad59ae-4a35-4ad1-bd7f-5a7335e3212c +2024-09-11 09:00:52.160319 2024-09-11 09:00:52.160324 mef 790 R rec e52814fd-3354-4223-ae62-4841f4244823 +2024-09-11 09:00:52.21139 2024-09-11 09:00:52.211395 mef 791 R rec 34ba0b30-1664-407e-8681-d78029750f9a +2024-09-11 09:00:52.265249 2024-09-11 09:00:52.265255 mef 792 R rec 6cdf8d76-8c7f-4bd2-8c9f-93f66c35dddd +2024-09-11 09:00:52.321532 2024-09-11 09:00:52.321536 mef 793 R rec 69a6955e-cd18-4fb5-b62a-b13e1fd8de7e +2024-09-11 09:00:52.37664 2024-09-11 09:00:52.376645 mef 794 R rec f7b7cffe-51e3-4e90-8bcb-a5a5b8d5ca16 +2024-09-11 09:00:52.433305 2024-09-11 09:00:52.43331 mef 795 R rec d6866c9b-a4fa-4093-8a08-36bac5a54520 +2024-09-11 09:00:52.481095 2024-09-11 09:00:52.4811 mef 796 R rec f604f16c-8db1-4610-add8-9bba6b734670 +2024-09-11 09:00:52.533321 2024-09-11 09:00:52.533325 mef 797 R rec 439fe415-d39b-46bf-b752-747e7d973f77 +2024-09-11 09:00:52.587539 2024-09-11 09:00:52.587543 mef 798 R rec ded7e748-667c-4765-9d79-0e2a6a4cadc4 +2024-09-11 09:00:52.638578 2024-09-11 09:00:52.638582 mef 799 R rec 30561aba-a82c-47ee-bd65-1067453de1d3 +2024-09-11 09:00:52.694538 2024-09-11 09:00:52.694542 mef 800 R rec 81bcaca7-dfcb-449a-87f8-e51c11e991d3 +2024-09-11 09:00:52.747056 2024-09-11 09:00:52.74706 mef 801 R rec 5fd4e668-f102-4f26-b836-044237281a47 +2024-09-11 09:00:52.801462 2024-09-11 09:00:52.801467 mef 802 R rec baf33fdb-e722-46d3-b674-39e346c768d8 +2024-09-11 09:00:52.865542 2024-09-11 09:00:52.865547 mef 803 R rec c3e30f31-f297-44fa-9937-c93f0847093f +2024-09-11 09:00:52.931611 2024-09-11 09:00:52.931617 mef 804 R rec 37ab2070-2639-4024-b36d-c429ff8bdc82 +2024-09-11 09:00:52.994719 2024-09-11 09:00:52.994723 mef 805 R rec b5eb84cd-2a01-41dd-8744-5240aadf88e5 +2024-09-11 09:00:53.056453 2024-09-11 09:00:53.056457 mef 806 R rec 7c684c85-9659-46f0-8aad-db3c823811aa +2024-09-11 09:00:53.113893 2024-09-11 09:00:53.113897 mef 807 R rec 62f88427-0f47-40bc-9340-b0af277494d4 +2024-09-11 09:00:53.169753 2024-09-11 09:00:53.169758 mef 808 R rec f85d76f5-2436-4afa-ace9-d19e90c26132 +2024-09-11 09:00:53.221924 2024-09-11 09:00:53.221928 mef 809 R rec 58f9e98d-e9c3-45fa-ac75-6ec4c880ac3b +2024-09-11 09:00:53.276366 2024-09-11 09:00:53.276371 mef 810 R rec 94915d4a-92a3-4a97-802d-613c48e5dd0b +2024-09-11 09:00:53.341872 2024-09-11 09:00:53.341876 mef 811 R rec 81cd44b4-35c8-43ba-b2fb-aa252496eb4b +2024-09-11 09:00:53.392786 2024-09-11 09:00:53.392791 mef 812 R rec d1a8f9b5-b369-4dcf-8759-f79fac77571c +2024-09-11 09:00:53.446622 2024-09-11 09:00:53.446626 mef 813 R rec f048406d-eede-4a91-bcbc-e0bf4f357ad2 +2024-09-11 09:00:53.497755 2024-09-11 09:00:53.49776 mef 814 R rec 6f661140-6778-420c-9c90-c5e8d18ea22d +2024-09-11 09:00:53.556613 2024-09-11 09:00:53.556617 mef 815 R rec b92d3d39-3d24-4cdd-8453-92344a45a78b +2024-09-11 09:00:53.60877 2024-09-11 09:00:53.608776 mef 816 R rec 972df669-daeb-446f-886b-637cbe9a3535 +2024-09-11 09:00:53.661566 2024-09-11 09:00:53.66157 mef 817 R rec a139f394-03e9-42bc-b85c-5f8bb1b31b82 +2024-09-11 09:00:53.722672 2024-09-11 09:00:53.722677 mef 818 R rec 29b960fe-cd71-4419-b8ab-4f3b758a4ad5 +2024-09-11 09:00:53.773083 2024-09-11 09:00:53.773087 mef 819 R rec 9ef48799-05a7-4be1-881b-95c70b88766c +2024-09-11 09:00:53.82665 2024-09-11 09:00:53.826655 mef 820 R rec 5f2277c6-8479-4762-b897-84eb3c95b7a4 +2024-09-11 09:00:53.884576 2024-09-11 09:00:53.884581 mef 821 R rec edc7da58-8320-41eb-994d-c79e2ac05f80 +2024-09-11 09:00:53.944329 2024-09-11 09:00:53.944334 mef 822 R rec dcfb2a70-e6fc-4195-b6af-0cb35f941cf1 +2024-09-11 09:00:54.001431 2024-09-11 09:00:54.001436 mef 823 R rec 4498ceb0-273d-41f8-a771-18b66bc7ceea +2024-09-11 09:00:54.061636 2024-09-11 09:00:54.061641 mef 824 R rec 0cb068cd-323f-4a96-a905-d50cec434c5e +2024-09-11 09:00:54.130292 2024-09-11 09:00:54.130296 mef 825 R rec 91744aa2-4422-49a8-8576-22491202fbe0 +2024-09-11 09:00:54.18734 2024-09-11 09:00:54.187345 mef 826 R rec 2e40d198-e41c-49d8-a0a9-674720d9f5f4 +2024-09-11 09:00:54.243432 2024-09-11 09:00:54.243437 mef 827 R rec c785fdea-b205-46ae-90c6-e33ebf99bffa +2024-09-11 09:00:54.304992 2024-09-11 09:00:54.304997 mef 828 R rec e732c75f-c1cb-4015-b964-87ff301aba22 +2024-09-11 09:00:54.364894 2024-09-11 09:00:54.364899 mef 829 R rec 08bd78a5-ea97-4f73-b003-6dc50b8031eb +2024-09-11 09:00:54.417496 2024-09-11 09:00:54.417501 mef 830 R rec e607db7d-46cf-40ec-9e6f-578d76aae716 +2024-09-11 09:00:54.476866 2024-09-11 09:00:54.476871 mef 831 R rec f7942d91-87f2-4e0f-bc4b-2f70d4d73154 +2024-09-11 09:00:54.536866 2024-09-11 09:00:54.53687 mef 832 R rec bafddb83-f248-4e40-b4a9-f8d5422c57ba +2024-09-11 09:00:54.599565 2024-09-11 09:00:54.59957 mef 833 R rec f02c60d0-9279-4634-97e4-743083a9fac3 +2024-09-11 09:00:54.656338 2024-09-11 09:00:54.656342 mef 834 R rec f3253dd7-5774-45c0-b82d-456d0cb797f9 +2024-09-11 09:00:54.719788 2024-09-11 09:00:54.719792 mef 835 R rec 9792b2aa-c1b0-45c2-ab13-2c85e8678f71 +2024-09-11 09:00:54.775348 2024-09-11 09:00:54.775353 mef 836 R rec 90d6fee8-8d4e-47f3-9f9b-31e3085695b1 +2024-09-11 09:00:54.829326 2024-09-11 09:00:54.829332 mef 837 R rec 940204ad-5130-47b8-89c8-4ec9619c7998 +2024-09-11 09:00:54.88445 2024-09-11 09:00:54.884455 mef 838 R rec aacc9b65-dc03-4c5a-98e9-c48545b3a151 +2024-09-11 09:00:54.939112 2024-09-11 09:00:54.939117 mef 839 R rec d60caf5f-2af7-489d-83ac-03d0813ef731 +2024-09-11 09:00:55.001733 2024-09-11 09:00:55.001737 mef 840 R rec db97c690-6476-4b54-9c43-494da30c2466 +2024-09-11 09:00:55.059894 2024-09-11 09:00:55.059899 mef 841 R rec f0b50324-5c04-4de5-b949-4d348d1d954d +2024-09-11 09:00:55.113028 2024-09-11 09:00:55.113033 mef 842 R rec 2a694db7-7474-439a-a642-e812792e12dd +2024-09-11 09:00:55.181618 2024-09-11 09:00:55.181623 mef 843 R rec e5ec2d57-e15d-4385-ba09-b4a480a5d61f +2024-09-11 09:00:55.235018 2024-09-11 09:00:55.235023 mef 844 R rec ef75e15a-5380-4464-bafd-8370c19af3e5 +2024-09-11 09:00:55.293581 2024-09-11 09:00:55.293587 mef 845 R rec 739a03c1-e692-4191-bbd5-c19a18a54920 +2024-09-11 09:00:55.358722 2024-09-11 09:00:55.358727 mef 846 R rec 14649aa0-a78b-420e-b153-ff6cc2f70359 +2024-09-11 09:00:55.410453 2024-09-11 09:00:55.410458 mef 847 R rec dd61060c-f316-41dd-9cea-f59606bd6c2b +2024-09-11 09:00:55.463249 2024-09-11 09:00:55.463253 mef 848 R rec d7fb8545-2c7c-43c1-88f9-3e0570ea19db +2024-09-11 09:00:55.53354 2024-09-11 09:00:55.533546 mef 849 R rec de35a645-4e85-4f85-b750-a2c5ab541d15 +2024-09-11 09:00:55.609615 2024-09-11 09:00:55.60962 mef 850 R rec a18dea95-9e54-4ca2-9e79-2c30bcc1c90a +2024-09-11 09:00:55.689099 2024-09-11 09:00:55.689103 mef 851 R rec 90ac371d-8deb-4e50-9e52-efca54025113 +2024-09-11 09:00:55.747284 2024-09-11 09:00:55.747288 mef 852 R rec d9b0adb0-a621-4f57-ad60-2c97eb3025d9 +2024-09-11 09:00:55.808052 2024-09-11 09:00:55.808057 mef 853 R rec fba14f56-1754-4e72-9d4b-c4602343d260 +2024-09-11 09:00:55.868014 2024-09-11 09:00:55.868019 mef 854 R rec e379ef76-fd52-4615-8c38-49a1e8fa4be9 +2024-09-11 09:00:55.924598 2024-09-11 09:00:55.924603 mef 855 R rec b5b58109-3075-4150-8a30-d8b0278c15ca +2024-09-11 09:00:55.978298 2024-09-11 09:00:55.978302 mef 856 R rec b9de7cd2-0056-4859-9a6b-d3d793a3b18b +2024-09-11 09:00:56.036038 2024-09-11 09:00:56.036043 mef 857 R rec 201a7db8-592f-4473-a49d-4c8fb67a0ace +2024-09-11 09:00:56.104573 2024-09-11 09:00:56.104578 mef 858 R rec c1be0ec3-e855-4096-aa38-f6f36c11c641 +2024-09-11 09:00:56.161078 2024-09-11 09:00:56.161083 mef 859 R rec 38b4cf5d-de0c-436f-b8fd-9e3de90e00fc +2024-09-11 09:00:56.224632 2024-09-11 09:00:56.224637 mef 860 R rec bbdc389d-702a-4dff-a159-272a8ac1aed9 +2024-09-11 09:00:56.278474 2024-09-11 09:00:56.278478 mef 861 R rec 4749b548-a70a-4ac3-8845-81984e240ca0 +2024-09-11 09:00:56.338297 2024-09-11 09:00:56.338302 mef 862 R rec f86a2c5b-6bd1-4be8-a283-6aa6593d279a +2024-09-11 09:00:56.405021 2024-09-11 09:00:56.405025 mef 863 R rec 69f5b004-37fc-4e41-9b0f-8e5f478555cd +2024-09-11 09:00:56.469459 2024-09-11 09:00:56.469464 mef 864 R rec d99e5379-642e-4397-b44d-5b5e817c4396 +2024-09-11 09:00:56.529678 2024-09-11 09:00:56.529682 mef 865 R rec 43532342-7a4c-4778-ba92-91d63850e381 +2024-09-11 09:00:56.586503 2024-09-11 09:00:56.586508 mef 866 R rec 9c6497b3-1135-4068-9ee7-f3ef010ac82d +2024-09-11 09:00:56.644898 2024-09-11 09:00:56.644903 mef 867 R rec ada19d8a-6a1a-4333-9137-2987a2f47475 +2024-09-11 09:00:56.708092 2024-09-11 09:00:56.708097 mef 868 R rec b0aa4151-abaa-4afe-9c35-0afe34309220 +2024-09-11 09:00:56.774174 2024-09-11 09:00:56.774179 mef 869 R rec 34ea9bcc-1c37-4044-973a-a52e6fcbc9a2 +2024-09-11 09:00:56.844606 2024-09-11 09:00:56.844611 mef 870 R rec d947bfec-be5c-4d77-9006-38c6ffe7079b +2024-09-11 09:00:56.908916 2024-09-11 09:00:56.908921 mef 871 R rec 46e11acf-f91b-4c3c-a3c2-20a25c719505 +2024-09-11 09:00:56.970083 2024-09-11 09:00:56.970088 mef 872 R rec 688b0a68-a763-45e2-bacd-6ac96d06406b +2024-09-11 09:00:57.036098 2024-09-11 09:00:57.036104 mef 873 R rec 7138e013-741f-4587-9a63-9dc79d7d004c +2024-09-11 09:00:57.091285 2024-09-11 09:00:57.091289 mef 874 R rec 27427ef0-9627-4e1e-acb2-c7306f673a3c +2024-09-11 09:00:57.14803 2024-09-11 09:00:57.148034 mef 875 R rec 7ee555e9-fbee-4ace-b627-b37c73c53713 +2024-09-11 09:00:57.198371 2024-09-11 09:00:57.198376 mef 876 R rec 5f0c5dc8-5f73-4365-8e10-b23e988c935e +2024-09-11 09:00:57.254706 2024-09-11 09:00:57.254711 mef 877 R rec fa3e41f7-041d-420b-a704-3c8c086c8d8f +2024-09-11 09:00:57.306441 2024-09-11 09:00:57.306446 mef 878 R rec 8304e104-c728-4c34-b8dd-98d011e6455c +2024-09-11 09:00:57.364085 2024-09-11 09:00:57.364089 mef 879 R rec 7d21fe58-f290-4dbf-9d25-b6c37c88b278 +2024-09-11 09:00:57.416705 2024-09-11 09:00:57.41671 mef 880 R rec 0b3389b5-bdbc-4a4a-97a2-61bff455f8d1 +2024-09-11 09:00:57.506369 2024-09-11 09:00:57.506376 mef 881 R rec 21f57c31-db4d-4e61-8c89-3430f00b63a1 +2024-09-11 09:00:57.566425 2024-09-11 09:00:57.566428 mef 882 R rec 17a4476f-16f0-4cef-92d7-e90f19a1bd81 +2024-09-11 09:00:57.618922 2024-09-11 09:00:57.618927 mef 883 R rec 42ce02de-40d4-48b7-abb9-1c4eea707d3b +2024-09-11 09:00:57.673154 2024-09-11 09:00:57.673159 mef 884 R rec 826f1926-188b-4273-91c1-213afef247db +2024-09-11 09:00:57.738374 2024-09-11 09:00:57.738378 mef 885 R rec 681c983a-9e2e-4c16-b3a9-d75148e9ae7d +2024-09-11 09:00:57.792817 2024-09-11 09:00:57.792822 mef 886 R rec 5dd700b2-fbae-4283-9e0a-459d14147860 +2024-09-11 09:00:57.848817 2024-09-11 09:00:57.848822 mef 887 R rec 5e307506-7848-439c-a756-c6d533a22908 +2024-09-11 09:00:57.91629 2024-09-11 09:00:57.916294 mef 888 R rec f6af3f08-7053-4ad3-88a0-8bce44a446d0 +2024-09-11 09:00:57.97052 2024-09-11 09:00:57.970527 mef 889 R rec 5129dbf9-5941-4bd8-a641-557a3007b007 +2024-09-11 09:00:58.028976 2024-09-11 09:00:58.028982 mef 890 R rec e20018ff-aa4c-4d4c-b7e4-70744079c6b9 +2024-09-11 09:00:58.087085 2024-09-11 09:00:58.08709 mef 891 R rec c98aae35-d08a-4e1f-9f0f-1f22ba1a1a91 +2024-09-11 09:00:58.143523 2024-09-11 09:00:58.143528 mef 892 R rec 9b6c8b47-9767-4ede-a976-5f2203d74fcb +2024-09-11 09:00:58.203485 2024-09-11 09:00:58.203489 mef 893 R rec f7804c5f-898b-417d-8e30-6e411f6962a0 +2024-09-11 09:00:58.268844 2024-09-11 09:00:58.268849 mef 894 R rec d7139e99-ec2e-4713-ae1f-2c20c224fc81 +2024-09-11 09:00:58.323654 2024-09-11 09:00:58.323659 mef 895 R rec 270ff378-e151-48d5-b13a-7c442a92682c +2024-09-11 09:00:58.375271 2024-09-11 09:00:58.375276 mef 896 R rec 106b6355-0aa1-42db-927e-b96633a02d0b +2024-09-11 09:00:58.435499 2024-09-11 09:00:58.435503 mef 897 R rec 44e249cd-3e6f-4334-8d07-a6c126ce5a87 +2024-09-11 09:00:58.50751 2024-09-11 09:00:58.507514 mef 898 R rec 9cbd510e-da1e-4d88-b28f-ceacf1891c32 +2024-09-11 09:00:58.56232 2024-09-11 09:00:58.562325 mef 899 R rec d4cbefa3-0cc4-4bc0-a7dc-6d5da19f607f +2024-09-11 09:00:58.612511 2024-09-11 09:00:58.612517 mef 900 R rec 5a093bd8-6e2d-473f-bb48-78c9e2b2dd9b +2024-09-11 09:00:58.667755 2024-09-11 09:00:58.667759 mef 901 R rec f462d20c-d0ba-4e21-bc07-5d8bd17f406b +2024-09-11 09:00:58.721284 2024-09-11 09:00:58.721288 mef 902 R rec 7a265e6a-a60f-42f1-a366-feddde96a922 +2024-09-11 09:00:58.777996 2024-09-11 09:00:58.778001 mef 903 R rec 465a1e6d-6f04-4684-958a-6980fe5d6321 +2024-09-11 09:00:58.834389 2024-09-11 09:00:58.834393 mef 904 R rec 947e07a0-47a2-44e8-8cdc-2a8fef9f9174 +2024-09-11 09:00:58.899217 2024-09-11 09:00:58.899222 mef 905 R rec 6ae4cffa-9347-4998-98ad-24368c5ea656 +2024-09-11 09:00:58.955695 2024-09-11 09:00:58.9557 mef 906 R rec 6bae3dc9-9f45-4d8b-8362-e53d05633590 +2024-09-11 09:00:59.0105 2024-09-11 09:00:59.010506 mef 907 R rec 3c0620fc-59aa-4929-8070-556a6f43727a +2024-09-11 09:00:59.067603 2024-09-11 09:00:59.067607 mef 908 R rec eeb02399-ac43-4ae7-9066-a8e085f07cdf +2024-09-11 09:00:59.135194 2024-09-11 09:00:59.135199 mef 909 R rec b6969616-0e75-4899-b827-f6cebde07b08 +2024-09-11 09:00:59.1935 2024-09-11 09:00:59.193505 mef 910 R rec ead3d422-a338-4d10-bc9c-28f9971ae688 +2024-09-11 09:00:59.250332 2024-09-11 09:00:59.250337 mef 911 R rec 212055c7-fb31-47f5-a090-0cb36959ddbe +2024-09-11 09:00:59.313031 2024-09-11 09:00:59.313035 mef 912 R rec a6d89864-6b05-4d1e-9d46-eb7b65c7ba52 +2024-09-11 09:00:59.367411 2024-09-11 09:00:59.367416 mef 913 R rec e0b3ca70-efb2-48de-8f89-3cf8a988f1b1 +2024-09-11 09:00:59.433421 2024-09-11 09:00:59.433425 mef 914 R rec 6e69c323-2151-4156-8f42-54486c4c45a9 +2024-09-11 09:00:59.48557 2024-09-11 09:00:59.485575 mef 915 R rec af5af463-e18c-4126-96ec-fbba4cf3beda +2024-09-11 09:00:59.537904 2024-09-11 09:00:59.537909 mef 916 R rec 4fdd5fd0-bf87-45f1-917f-c3038a8a044a +2024-09-11 09:00:59.594201 2024-09-11 09:00:59.594205 mef 917 R rec 21c4efb2-b5d4-474d-a1ed-5e44866692fc +2024-09-11 09:00:59.647554 2024-09-11 09:00:59.647559 mef 918 R rec f5ec8752-727f-47fc-8a4d-5e4d0ba8bdf7 +2024-09-11 09:00:59.697873 2024-09-11 09:00:59.697877 mef 919 R rec bbd10c61-7a98-4980-9c2f-e5c79197d933 +2024-09-11 09:00:59.748464 2024-09-11 09:00:59.748469 mef 920 R rec ddd95a76-13c4-4056-bcea-0db880901ca3 +2024-09-11 09:00:59.801432 2024-09-11 09:00:59.801436 mef 921 R rec 3b89da86-348f-42c9-a193-61de17d40458 +2024-09-11 09:00:59.866995 2024-09-11 09:00:59.867 mef 922 R rec 181710f3-ecf4-4936-8f1a-1d1baef757d1 +2024-09-11 09:00:59.92349 2024-09-11 09:00:59.923494 mef 923 R rec 39b4b375-0ff9-4c4a-b860-8e0d7c755e98 +2024-09-11 09:00:59.98366 2024-09-11 09:00:59.983664 mef 924 R rec 6903d922-1b09-4e86-a9ee-8770c53617e9 +2024-09-11 09:01:00.040967 2024-09-11 09:01:00.040972 mef 925 R rec b791b047-fffa-455e-9e81-7209517ebfc7 +2024-09-11 09:01:00.09538 2024-09-11 09:01:00.095383 mef 926 R rec 4b9c3b40-bc3f-4a03-9224-5d731dbc75e3 +2024-09-11 09:01:00.166111 2024-09-11 09:01:00.166116 mef 927 R rec 591299d7-9b31-4c3b-8754-43ebca260a73 +2024-09-11 09:01:00.224904 2024-09-11 09:01:00.224909 mef 928 R rec cc2ac53f-7645-4fc3-b6ae-9fd1b9981251 +2024-09-11 09:01:00.279289 2024-09-11 09:01:00.279293 mef 929 R rec b816f8f6-3f33-40c2-be9d-cc33f54f3b5c +2024-09-11 09:01:00.330488 2024-09-11 09:01:00.330493 mef 930 R rec 6b31e1fe-5393-4df0-acac-da937952e124 +2024-09-11 09:01:00.381256 2024-09-11 09:01:00.381261 mef 931 R rec c605a1cd-ae67-4827-aace-efc189e00c06 +2024-09-11 09:01:00.437838 2024-09-11 09:01:00.437842 mef 932 R rec a93c4a43-c728-4a03-8425-7a8c44f6f11f +2024-09-11 09:01:00.51539 2024-09-11 09:01:00.515394 mef 933 R rec 04de04d1-f647-4932-b172-1cbc81dd1b06 +2024-09-11 09:01:00.581001 2024-09-11 09:01:00.581006 mef 934 R rec 5d8e13ba-cc98-4084-a6b9-ae3f2310ef91 +2024-09-11 09:01:00.632335 2024-09-11 09:01:00.63234 mef 935 R rec 0d83ce6a-8972-4f83-971c-3431fe1db0ae +2024-09-11 09:01:00.686206 2024-09-11 09:01:00.68621 mef 936 R rec 7b65cc65-827c-4a3e-b9ee-ba4e2ffb1cd8 +2024-09-11 09:01:00.73805 2024-09-11 09:01:00.738055 mef 937 R rec 36e3199c-bf20-4284-8b92-6989782eee2f +2024-09-11 09:01:00.800103 2024-09-11 09:01:00.800108 mef 938 R rec b28ba57c-364e-4c9f-99b7-6c46dd06b126 +2024-09-11 09:01:00.869315 2024-09-11 09:01:00.86932 mef 939 R rec c6ab96ce-292a-4da4-94e2-4bcae4bccb73 +2024-09-11 09:01:00.922411 2024-09-11 09:01:00.922416 mef 940 R rec b51db4ec-0d2d-4007-83bd-0731b1f49c81 +2024-09-11 09:01:00.976301 2024-09-11 09:01:00.976307 mef 941 R rec 8b239c6b-8865-4cd4-b158-6e15b9f54464 +2024-09-11 09:01:01.030857 2024-09-11 09:01:01.030862 mef 942 R rec fcd3c544-ffbb-47f9-931a-20ec88c31be4 +2024-09-11 09:01:01.092956 2024-09-11 09:01:01.092961 mef 943 R rec 9e057db6-f482-418b-ab38-54682dcedec2 +2024-09-11 09:01:01.167154 2024-09-11 09:01:01.167159 mef 944 R rec 7f15ea68-976b-4ae0-893f-147a843ebb2f +2024-09-11 09:01:01.222518 2024-09-11 09:01:01.222522 mef 945 R rec dfb3aa8b-00e0-4bea-ad30-7672e5ed6fb8 +2024-09-11 09:01:01.278465 2024-09-11 09:01:01.27847 mef 946 R rec 2f6e9373-9f3c-41d2-9f33-79c091440cdd +2024-09-11 09:01:01.337308 2024-09-11 09:01:01.337313 mef 947 R rec a634f77d-3ea0-4bb9-ae0e-84696f180a92 +2024-09-11 09:01:01.391557 2024-09-11 09:01:01.391561 mef 948 R rec 1a22cc77-b8ad-4c30-9499-4885d40604bd +2024-09-11 09:01:01.4474 2024-09-11 09:01:01.447404 mef 949 R rec e82da20b-da7b-42a8-aea0-ad01b9702286 +2024-09-11 09:01:01.506267 2024-09-11 09:01:01.506271 mef 950 R rec 012df883-f283-4914-894b-fd7d78343cd5 +2024-09-11 09:01:01.578703 2024-09-11 09:01:01.578708 mef 951 R rec 950766bf-4c95-4d60-80d7-229093728c81 +2024-09-11 09:01:01.63047 2024-09-11 09:01:01.630475 mef 952 R rec cb182711-3c3a-4016-8e40-f22460c933be +2024-09-11 09:01:01.686099 2024-09-11 09:01:01.686103 mef 953 R rec 215881f4-dfd6-40ed-be13-c588831e032d +2024-09-11 09:01:01.745352 2024-09-11 09:01:01.745357 mef 954 R rec 54485a1f-c7c4-481a-8d3c-5b0adae7dd5b +2024-09-11 09:01:01.81234 2024-09-11 09:01:01.812345 mef 955 R rec 6b6f54a6-5a26-4aa5-b877-83c339e8b280 +2024-09-11 09:01:01.862922 2024-09-11 09:01:01.862926 mef 956 R rec 0a5890f7-eb85-456d-9a0a-61ca6b7e3aba +2024-09-11 09:01:01.917329 2024-09-11 09:01:01.917334 mef 957 R rec 11331c18-4cbc-487d-9ebc-640a407aca41 +2024-09-11 09:01:02.035433 2024-09-11 09:01:02.035437 mef 958 R rec b5a01d89-204c-4141-888d-f53c567c8e5e +2024-09-11 09:01:02.182014 2024-09-11 09:01:02.182018 mef 959 R rec 07aa6c84-12dd-434d-abe1-7402f3e8ac05 +2024-09-11 09:01:02.258655 2024-09-11 09:01:02.258659 mef 960 R rec 5a953e48-3825-42de-b7c1-8ae3f47fefb8 +2024-09-11 09:01:02.313458 2024-09-11 09:01:02.313463 mef 961 R rec 0a78a4d3-7ec8-4d18-9786-4e7b71a3c5ca +2024-09-11 09:01:02.367035 2024-09-11 09:01:02.36704 mef 962 R rec f60c1cd2-1d09-4de7-b260-b857217bc32a +2024-09-11 09:01:02.420163 2024-09-11 09:01:02.420167 mef 963 R rec e3ce124b-6d75-4889-85df-02b431eb83da +2024-09-11 09:01:02.469655 2024-09-11 09:01:02.469659 mef 964 R rec 14d8ca41-14e8-475f-bb5f-2ec071d0b87f +2024-09-11 09:01:02.528441 2024-09-11 09:01:02.528446 mef 965 R rec 905e1d27-e0b3-443c-b774-4393f00de4da +2024-09-11 09:01:02.581839 2024-09-11 09:01:02.581844 mef 966 R rec 6588f6fa-fe91-4c03-90a2-56788136b9db +2024-09-11 09:01:02.647773 2024-09-11 09:01:02.647778 mef 967 R rec 939ac85f-60e5-4a0b-92ef-7985979a93f6 +2024-09-11 09:01:02.706246 2024-09-11 09:01:02.70625 mef 968 R rec a9a0fd24-cf4f-4a12-8346-0c7571a7a911 +2024-09-11 09:01:02.759146 2024-09-11 09:01:02.75915 mef 969 R rec 1806dd34-e957-4dd0-be29-09ebf6b30960 +2024-09-11 09:01:02.812708 2024-09-11 09:01:02.812713 mef 970 R rec 7a598fe4-5472-473d-a6fe-1337ce0ea6a9 +2024-09-11 09:01:02.864375 2024-09-11 09:01:02.864379 mef 971 R rec 172ea7a7-3165-4db0-a8e6-ff07936e5468 +2024-09-11 09:01:02.926114 2024-09-11 09:01:02.926119 mef 972 R rec 41f598e1-08c0-4690-8120-94d556f51ab7 +2024-09-11 09:01:02.986313 2024-09-11 09:01:02.986318 mef 973 R rec daa33422-485b-4faf-90aa-f989a2bc010c +2024-09-11 09:01:03.046 2024-09-11 09:01:03.046005 mef 974 R rec b08718a2-ad37-4975-85ec-112172727982 +2024-09-11 09:01:03.103109 2024-09-11 09:01:03.103114 mef 975 R rec 20263479-57f1-4b59-a113-dcebd216cad2 +2024-09-11 09:01:03.166165 2024-09-11 09:01:03.166169 mef 976 R rec f99ec867-ef3d-49f0-ba4b-f727c6b36a11 +2024-09-11 09:01:03.220119 2024-09-11 09:01:03.220124 mef 977 R rec 613ffaec-8b9e-4d80-a484-04bfc160f9f6 +2024-09-11 09:01:03.274522 2024-09-11 09:01:03.274527 mef 978 R rec c78108de-11cf-4f47-828f-dbaee722c2e3 +2024-09-11 09:01:03.34059 2024-09-11 09:01:03.340595 mef 979 R rec 2cf363b5-17af-409e-ae92-48784f5b77c3 +2024-09-11 09:01:03.393103 2024-09-11 09:01:03.393107 mef 980 R rec a1011155-eda6-4d44-9c64-780fbe1d282c +2024-09-11 09:01:03.448953 2024-09-11 09:01:03.448958 mef 981 R rec 94d2178b-8144-469a-b3e0-0baebbe9cb54 +2024-09-11 09:01:03.504253 2024-09-11 09:01:03.504257 mef 982 R rec 3efdd752-d48b-41ca-a0b2-d38b2bf08e66 +2024-09-11 09:01:03.55487 2024-09-11 09:01:03.554874 mef 983 R rec cd8b9ba5-f2e9-4179-8f3c-c5ca09ce962e +2024-09-11 09:01:03.613852 2024-09-11 09:01:03.613856 mef 984 R rec 33abde94-a5b6-4314-b699-0c83236edc5a +2024-09-11 09:01:03.672636 2024-09-11 09:01:03.672641 mef 985 R rec 54399ac0-4c8b-4d16-96a9-81d79466b544 +2024-09-11 09:01:03.726941 2024-09-11 09:01:03.726945 mef 986 R rec 0475e454-2602-465e-890a-6df17ffe2d23 +2024-09-11 09:01:03.784499 2024-09-11 09:01:03.784504 mef 987 R rec 4ccab8b5-0fab-4d7d-9b27-da2a20866df5 +2024-09-11 09:01:03.836965 2024-09-11 09:01:03.83697 mef 988 R rec b696c0fc-2100-4215-acc0-24410ed30081 +2024-09-11 09:01:03.89028 2024-09-11 09:01:03.890285 mef 989 R rec 2b2c6569-f3c6-4397-b714-cf5a3e211d07 +2024-09-11 09:01:03.944802 2024-09-11 09:01:03.944807 mef 990 R rec b974a270-6810-4a57-894c-d9f5fb7aad4d +2024-09-11 09:01:03.996899 2024-09-11 09:01:03.996904 mef 991 R rec 3d919f75-3267-4c2f-99df-b50e7b66ec17 +2024-09-11 09:01:04.055302 2024-09-11 09:01:04.055307 mef 992 R rec 15bae96c-9131-4ebc-9f35-8ef16bd3f93e +2024-09-11 09:01:04.124027 2024-09-11 09:01:04.124035 mef 993 R rec e94902d8-54db-414b-97eb-8e56f76be30c +2024-09-11 09:01:04.189023 2024-09-11 09:01:04.189028 mef 994 R rec ddbb663b-8ea3-4a0e-aca9-4313e61af96f +2024-09-11 09:01:04.243269 2024-09-11 09:01:04.243274 mef 995 R rec c9101a31-3b27-479c-8bf7-9475835a9835 +2024-09-11 09:01:04.300412 2024-09-11 09:01:04.300416 mef 996 R rec f687ac90-bddc-4058-9d3b-0c7f503a3714 +2024-09-11 09:01:04.364676 2024-09-11 09:01:04.364681 mef 997 R rec 359044c3-9a9e-4d24-b552-54bd11959169 +2024-09-11 09:01:04.414393 2024-09-11 09:01:04.414398 mef 998 R rec 00a83ac8-ddb6-43fc-95c8-1ea390b47aa4 +2024-09-11 09:01:04.473033 2024-09-11 09:01:04.473036 mef 999 R rec 01cd1694-61c1-4d7f-bc97-daab2db0e9d3 +2024-09-11 09:01:04.537307 2024-09-11 09:01:04.537312 mef 1000 R rec 403553f5-6427-4c7c-8854-f3f1c512db8a +2024-09-11 09:01:04.595201 2024-09-11 09:01:04.595207 mef 1001 R rec 92cc4474-6644-44c1-bcc7-bf92a1ed65be +2024-09-11 09:01:04.651847 2024-09-11 09:01:04.651853 mef 1002 R rec 45b403b7-60d8-4497-b3a9-ab57588abbba +2024-09-11 09:01:04.706074 2024-09-11 09:01:04.706079 mef 1003 R rec 66ab0265-e965-4bed-8fee-e35176c6d2b3 +2024-09-11 09:01:04.7738 2024-09-11 09:01:04.773805 mef 1004 R rec d1d142b0-9089-44e0-b2e7-2ec38934991e +2024-09-11 09:01:04.833635 2024-09-11 09:01:04.83364 mef 1005 R rec 47529c4f-568d-487b-92e7-e92551903373 +2024-09-11 09:01:04.888465 2024-09-11 09:01:04.888469 mef 1006 R rec eee043fa-4f4f-4001-a5ab-71d9c4deac10 +2024-09-11 09:01:04.952588 2024-09-11 09:01:04.952592 mef 1007 R rec 402bd4d1-2ed8-485c-97a0-4425a7521ec0 +2024-09-11 09:01:05.013268 2024-09-11 09:01:05.013274 mef 1008 R rec 2ab4a623-4a45-4718-acff-6d9af07f4ae5 +2024-09-11 09:01:05.071653 2024-09-11 09:01:05.071658 mef 1009 R rec 75e1de47-db27-46cc-a0ec-d532a063dcca +2024-09-11 09:01:05.13637 2024-09-11 09:01:05.136375 mef 1010 R rec 1c52819c-ddb4-4404-b1db-76ef871990a5 +2024-09-11 09:01:05.207676 2024-09-11 09:01:05.20768 mef 1011 R rec 9452c744-2f1a-484d-a462-f864a36d4802 +2024-09-11 09:01:05.262896 2024-09-11 09:01:05.262901 mef 1012 R rec 4b1419ad-ccc0-4562-ae8b-0063ac0290da +2024-09-11 09:01:05.317675 2024-09-11 09:01:05.31768 mef 1013 R rec 25364aef-a4a9-4aba-9538-5151ac514d84 +2024-09-11 09:01:05.372319 2024-09-11 09:01:05.372324 mef 1014 R rec 97ca00b6-054e-4e58-a336-78d8c206249f +2024-09-11 09:01:05.435809 2024-09-11 09:01:05.435813 mef 1015 R rec 766746ff-9734-4c49-b1b9-9e842ea5be55 +2024-09-11 09:01:05.503373 2024-09-11 09:01:05.503378 mef 1016 R rec 84822612-2e44-4252-b664-9dd85cfeefc7 +2024-09-11 09:01:05.558665 2024-09-11 09:01:05.558669 mef 1017 R rec 393cc2b0-3960-4217-99c3-59b1753cb817 +2024-09-11 09:01:05.613985 2024-09-11 09:01:05.61399 mef 1018 R rec 0c00eeb6-a99a-477c-b2ae-809af066c710 +2024-09-11 09:01:05.67968 2024-09-11 09:01:05.679685 mef 1019 R rec 28b30cb7-f17f-4f9f-a8c8-99031cf02d1c +2024-09-11 09:01:05.737727 2024-09-11 09:01:05.737732 mef 1020 R rec 9ba6bfe9-9b48-4c46-91a2-573251a98106 +2024-09-11 09:01:05.790005 2024-09-11 09:01:05.79001 mef 1021 R rec 5899e998-5852-4060-8369-e9d6ad78888f +2024-09-11 09:01:05.840521 2024-09-11 09:01:05.840526 mef 1022 R rec a171bb0c-cc6f-45df-be5b-c73a2674d35b +2024-09-11 09:01:05.893501 2024-09-11 09:01:05.893506 mef 1023 R rec 4813090c-2fc5-4994-8ce5-fa23f31a64ec +2024-09-11 09:01:05.943253 2024-09-11 09:01:05.943259 mef 1024 R rec ae8f0acc-f541-4caa-ba69-42e593e6b78a +2024-09-11 09:01:05.993826 2024-09-11 09:01:05.993832 mef 1025 R rec d51d1d6e-7759-4d30-b8c9-53958aba1d0a +2024-09-11 09:01:06.049583 2024-09-11 09:01:06.049588 mef 1026 R rec 02036ade-e5b9-41c4-a498-8888137f6faa +2024-09-11 09:01:06.116519 2024-09-11 09:01:06.116523 mef 1027 R rec f763db1c-e0db-4914-8993-6e8a43e84e95 +2024-09-11 09:01:06.180551 2024-09-11 09:01:06.180556 mef 1028 R rec 18903fdf-28ee-4f44-9ea9-41984d5fd751 +2024-09-11 09:01:06.233791 2024-09-11 09:01:06.233795 mef 1029 R rec 085ecef2-8f20-4a53-88ca-f64d4b3b063b +2024-09-11 09:01:06.294698 2024-09-11 09:01:06.294703 mef 1030 R rec 83f8c0d9-a6ad-472a-bb7e-2d1cc329ae26 +2024-09-11 09:01:06.344479 2024-09-11 09:01:06.344484 mef 1031 R rec 5a7b35b8-67f7-4002-8e85-f6772bbdd964 +2024-09-11 09:01:06.406706 2024-09-11 09:01:06.406711 mef 1032 R rec b9a2df25-7cae-4327-a876-f811ec2ede43 +2024-09-11 09:01:06.456621 2024-09-11 09:01:06.456625 mef 1033 R rec 699bf6cf-897d-4a9e-88b9-e5f676213d36 +2024-09-11 09:01:06.506854 2024-09-11 09:01:06.506858 mef 1034 R rec fa77068f-1d2b-4426-a6cf-7a1ac00fffe8 +2024-09-11 09:01:06.559361 2024-09-11 09:01:06.559366 mef 1035 R rec 014a27d5-a492-41b9-8db6-6eb1a32cf600 +2024-09-11 09:01:06.611269 2024-09-11 09:01:06.611274 mef 1036 R rec c4db2923-fcb1-4f6f-ab96-403dc99fd541 +2024-09-11 09:01:06.666001 2024-09-11 09:01:06.666004 mef 1037 R rec a4bcba16-d570-497a-972e-2aae6f012cde +2024-09-11 09:01:06.727165 2024-09-11 09:01:06.727169 mef 1038 R rec b4c6f8a6-ad44-4a29-92bb-fa0c015e2ff2 +2024-09-11 09:01:06.802264 2024-09-11 09:01:06.802268 mef 1039 R rec c0acf64f-c4fb-424b-84f1-70ae8f60ce9e +2024-09-11 09:01:06.871552 2024-09-11 09:01:06.871556 mef 1040 R rec 62218ac1-a67e-463a-8091-0312ca5efd2e +2024-09-11 09:01:06.92275 2024-09-11 09:01:06.922754 mef 1041 R rec 3d4b3944-22f6-41cf-9009-760dd83aacb8 +2024-09-11 09:01:06.973724 2024-09-11 09:01:06.97373 mef 1042 R rec 36ece3d7-44a7-409c-a212-89832cc50e06 +2024-09-11 09:01:07.029246 2024-09-11 09:01:07.029251 mef 1043 R rec 050b4a71-7a36-44f6-b07b-564be9b90ae2 +2024-09-11 09:01:07.089363 2024-09-11 09:01:07.089367 mef 1044 R rec 4c61684a-cf6d-49ac-a4a5-84c678916aa3 +2024-09-11 09:01:07.145119 2024-09-11 09:01:07.145123 mef 1045 R rec f163d75a-cd2b-40c2-9085-8d19477222fd +2024-09-11 09:01:07.195374 2024-09-11 09:01:07.19538 mef 1046 R rec 51616a2f-0d14-41e1-b2a8-5e77ae6fcbb6 +2024-09-11 09:01:07.246557 2024-09-11 09:01:07.246561 mef 1047 R rec 1984a58f-1c96-4371-a37d-c3d80d5372b2 +2024-09-11 09:01:07.297749 2024-09-11 09:01:07.297754 mef 1048 R rec 1e910a2f-c197-4736-aa1f-c41554da404d +2024-09-11 09:01:07.356523 2024-09-11 09:01:07.356527 mef 1049 R rec edf64313-44b5-4efe-b6f2-f3c0979df47f +2024-09-11 09:01:07.408174 2024-09-11 09:01:07.408179 mef 1050 R rec 2a149c93-8ebf-4a31-8d54-3268488aab8d +2024-09-11 09:01:07.459814 2024-09-11 09:01:07.459819 mef 1051 R rec 5d9cfa70-11c4-46fa-a228-f5af99e09127 +2024-09-11 09:01:07.519521 2024-09-11 09:01:07.519526 mef 1052 R rec e99310af-41aa-4ca3-9f0a-43f199239051 +2024-09-11 09:01:07.587631 2024-09-11 09:01:07.587635 mef 1053 R rec a7fccb7e-8b2c-492f-9592-38c9527ef4ec +2024-09-11 09:01:07.656206 2024-09-11 09:01:07.65621 mef 1054 R rec 530c4400-4eec-4aac-a1ca-887c33b9aedc +2024-09-11 09:01:07.726382 2024-09-11 09:01:07.726388 mef 1055 R rec 18a47b79-2a03-4498-a895-bad9323853ad +2024-09-11 09:01:07.779524 2024-09-11 09:01:07.779528 mef 1056 R rec 7685cb77-3088-4754-ba31-59cb79bea984 +2024-09-11 09:01:07.831747 2024-09-11 09:01:07.831751 mef 1057 R rec 22a95ab5-8fa3-4e8e-a62f-419349ea1048 +2024-09-11 09:01:07.88535 2024-09-11 09:01:07.885354 mef 1058 R rec 40ce7fc1-791a-4872-b0ec-9b6db5f688c8 +2024-09-11 09:01:07.941679 2024-09-11 09:01:07.941684 mef 1059 R rec b3f59c38-3aa2-499a-a309-18822e1092e3 +2024-09-11 09:01:07.996652 2024-09-11 09:01:07.996657 mef 1060 R rec 9e112fd3-63ed-48ae-8750-26b5514720ae +2024-09-11 09:01:08.053452 2024-09-11 09:01:08.053456 mef 1061 R rec be2a4de2-94a9-43bb-b225-16e5158e3e9d +2024-09-11 09:01:08.103626 2024-09-11 09:01:08.10363 mef 1062 R rec f5ec2470-1dd4-4347-ad99-d50ca8133da2 +2024-09-11 09:01:08.174816 2024-09-11 09:01:08.174821 mef 1063 R rec 9f26ccaf-404c-44f7-af77-bd7e3ee40f30 +2024-09-11 09:01:08.22417 2024-09-11 09:01:08.224175 mef 1064 R rec 3c27ebd4-7ed9-446e-87a4-08de80803d0b +2024-09-11 09:01:08.277459 2024-09-11 09:01:08.277465 mef 1065 R rec b422071b-1730-49eb-b19c-879c5abbfd66 +2024-09-11 09:01:08.332275 2024-09-11 09:01:08.332279 mef 1066 R rec 155b5feb-621f-42c8-b3f8-7f581580a2d0 +2024-09-11 09:01:08.396179 2024-09-11 09:01:08.396184 mef 1067 R rec 60e76cfe-c320-4171-87f9-9783140084d9 +2024-09-11 09:01:08.449517 2024-09-11 09:01:08.449521 mef 1068 R rec 22437f33-9add-4312-8937-222ff7788810 +2024-09-11 09:01:08.514525 2024-09-11 09:01:08.514529 mef 1069 R rec da89239b-bffa-4cec-81a2-9f8330cd5f9a +2024-09-11 09:01:08.615283 2024-09-11 09:01:08.615288 mef 1070 R rec 69c56982-6300-40c0-a32b-cedb054bb59e +2024-09-11 09:01:08.693723 2024-09-11 09:01:08.693728 mef 1071 R rec 9a088d16-7536-4843-849c-d87c6a913cbe +2024-09-11 09:01:08.748411 2024-09-11 09:01:08.748416 mef 1072 R rec 60e42e30-3c43-4036-b1ab-f8ebfb701480 +2024-09-11 09:01:08.80534 2024-09-11 09:01:08.805344 mef 1073 R rec e9c85dda-4ca7-46e8-9a53-16ae660ea2eb +2024-09-11 09:01:08.861714 2024-09-11 09:01:08.861719 mef 1074 R rec c8abcb68-97e4-479b-b228-18469024fb37 +2024-09-11 09:01:08.918599 2024-09-11 09:01:08.918604 mef 1075 R rec 71149398-8e14-498b-8c9b-5e2d586cc4e2 +2024-09-11 09:01:08.973069 2024-09-11 09:01:08.973073 mef 1076 R rec 587b2915-5773-4a89-8821-26dc3e2d0bea +2024-09-11 09:01:09.025551 2024-09-11 09:01:09.025557 mef 1077 R rec 0117c759-ecc3-43fa-8039-2333dcd584c2 +2024-09-11 09:01:09.085903 2024-09-11 09:01:09.085908 mef 1078 R rec 99555136-901c-458b-ba28-f0a6a2e48bac +2024-09-11 09:01:09.148764 2024-09-11 09:01:09.148768 mef 1079 R rec eb8b17e1-87d5-4e61-8fd8-8a3eee4c50dd +2024-09-11 09:01:09.208912 2024-09-11 09:01:09.208916 mef 1080 R rec 81b453ef-72f6-49ed-895e-eac38e16f426 +2024-09-11 09:01:09.267338 2024-09-11 09:01:09.267343 mef 1081 R rec 5e063242-b83f-476e-be32-14e546f534cb +2024-09-11 09:01:09.326388 2024-09-11 09:01:09.326393 mef 1082 R rec 1ae66113-2c8f-4c38-9439-5f12b4acaf9b +2024-09-11 09:01:09.387903 2024-09-11 09:01:09.387908 mef 1083 R rec 92139690-ea8a-43e6-bb72-c11cd7cd5b6e +2024-09-11 09:01:09.457278 2024-09-11 09:01:09.457282 mef 1084 R rec 25177d41-c4c1-4716-82f0-67e4f818d391 +2024-09-11 09:01:09.512349 2024-09-11 09:01:09.512354 mef 1085 R rec 91b4c691-8e38-47a7-a9a3-0173acd6826d +2024-09-11 09:01:09.573477 2024-09-11 09:01:09.573482 mef 1086 R rec 70e03515-0dfd-47c3-b40c-5dba898c050f +2024-09-11 09:01:09.666452 2024-09-11 09:01:09.666457 mef 1087 R rec f85b0724-233c-4abb-b4d6-e199ca752bdd +2024-09-11 09:01:09.74509 2024-09-11 09:01:09.745096 mef 1088 R rec 8078b6ce-d7f2-4dce-8a5d-a32a00a8cde9 +2024-09-11 09:01:09.817863 2024-09-11 09:01:09.817867 mef 1089 R rec 4ec87bb0-08a6-46b5-a54c-3df94eacea09 +2024-09-11 09:01:09.888625 2024-09-11 09:01:09.88863 mef 1090 R rec 623e977c-2828-48ac-8b40-c9ce8bc27081 +2024-09-11 09:01:09.956956 2024-09-11 09:01:09.95696 mef 1091 R rec 3b470c43-5f8a-45db-a0ae-518ee81000f6 +2024-09-11 09:01:10.025277 2024-09-11 09:01:10.025283 mef 1092 R rec 47a1046a-6176-4b9f-959f-c7d0101591af +2024-09-11 09:01:10.090022 2024-09-11 09:01:10.090028 mef 1093 R rec cb92b127-88d6-4b21-a20e-e5e0f895d222 +2024-09-11 09:01:10.152188 2024-09-11 09:01:10.152193 mef 1094 R rec a861c1d9-d92e-4b03-8810-5c1f4fc0e18c +2024-09-11 09:01:10.21869 2024-09-11 09:01:10.218695 mef 1095 R rec 2a1646f9-64be-4883-87dc-5b85c8f9efed +2024-09-11 09:01:10.277062 2024-09-11 09:01:10.277067 mef 1096 R rec 7ee1d650-a6a2-4bfd-a251-b99000a04992 +2024-09-11 09:01:10.345437 2024-09-11 09:01:10.345443 mef 1097 R rec 34787465-ddfa-40fa-89d4-56b271a605e1 +2024-09-11 09:01:10.445919 2024-09-11 09:01:10.445924 mef 1098 R rec d2856fe4-7329-4aca-b76a-30623d99f7a8 +2024-09-11 09:01:10.520658 2024-09-11 09:01:10.520662 mef 1099 R rec cfdab6d7-f90d-44cd-a531-505fbd4b2086 +2024-09-11 09:01:10.580518 2024-09-11 09:01:10.580524 mef 1100 R rec ef848c96-b988-4014-8cb4-945aaf686d67 +2024-09-11 09:01:10.642815 2024-09-11 09:01:10.642819 mef 1101 R rec 2af76eef-4ca2-449e-9fc0-5f9abbee8c41 +2024-09-11 09:01:10.713426 2024-09-11 09:01:10.713431 mef 1102 R rec 41734599-9ff5-41a1-9ae8-25de8a03b61f +2024-09-11 09:01:10.775005 2024-09-11 09:01:10.77501 mef 1103 R rec 22eb8646-7843-4224-88e0-b85554da8015 +2024-09-11 09:01:10.831981 2024-09-11 09:01:10.831986 mef 1104 R rec 2ad324e3-8e62-43f0-9e41-e38fb9e513e9 +2024-09-11 09:01:10.906509 2024-09-11 09:01:10.906514 mef 1105 R rec 78059b33-ea6b-4965-b4be-a4e4ce08c459 +2024-09-11 09:01:10.964809 2024-09-11 09:01:10.964814 mef 1106 R rec 18d323eb-d64e-4616-a22c-13524c69bc5e +2024-09-11 09:01:11.032944 2024-09-11 09:01:11.03295 mef 1107 R rec e1158460-f458-496b-bee2-c02d922fb117 +2024-09-11 09:01:11.091243 2024-09-11 09:01:11.091247 mef 1108 R rec 51ee4567-2cf1-4c85-8eb2-1ebb7ea5a07f +2024-09-11 09:01:11.147399 2024-09-11 09:01:11.147404 mef 1109 R rec 8baebafa-9139-4d2d-8bb1-af8b392b81c8 +2024-09-11 09:01:11.206261 2024-09-11 09:01:11.206265 mef 1110 R rec 332a2f2a-0bc2-4834-a593-3c65b1ed38b0 +2024-09-11 09:01:11.266715 2024-09-11 09:01:11.266721 mef 1111 R rec c8dda590-783a-4ef4-93f9-9bc38fdae14d +2024-09-11 09:01:11.361747 2024-09-11 09:01:11.361752 mef 1112 R rec 51b0f614-1df7-4e78-9de8-0d71d94067a3 +2024-09-11 09:01:11.415958 2024-09-11 09:01:11.415962 mef 1113 R rec bbfbb7de-2f5a-4ed5-88b9-0398efa59dec +2024-09-11 09:01:11.46743 2024-09-11 09:01:11.467436 mef 1114 R rec abdab083-00b0-441c-b073-9150365eddaa +2024-09-11 09:01:11.517809 2024-09-11 09:01:11.517813 mef 1115 R rec 56d28107-cb71-4815-a9d0-c80c3d3febe0 +2024-09-11 09:01:11.575304 2024-09-11 09:01:11.575307 mef 1116 R rec 72ee5b7c-258a-4141-8aee-962422cbb5fb +2024-09-11 09:01:11.634528 2024-09-11 09:01:11.634532 mef 1117 R rec dece29be-1692-4bf5-9ae6-f837ebcc0fab +2024-09-11 09:01:11.693108 2024-09-11 09:01:11.693113 mef 1118 R rec 164b9e1c-819f-4017-b803-dd6bb0acc425 +2024-09-11 09:01:11.749694 2024-09-11 09:01:11.749699 mef 1119 R rec 4eef7f37-43e1-4c26-a050-ac034eeb633e +2024-09-11 09:01:11.810852 2024-09-11 09:01:11.810857 mef 1120 R rec 77efa895-c621-4d0b-be2f-28c4adbfda34 +2024-09-11 09:01:11.871115 2024-09-11 09:01:11.87112 mef 1121 R rec e342f666-e544-4d24-ad7c-aaac14e4fa63 +2024-09-11 09:01:11.930064 2024-09-11 09:01:11.93007 mef 1122 R rec 8d104950-e4a1-49b3-a2c3-f8152726a61f +2024-09-11 09:01:11.995587 2024-09-11 09:01:11.995592 mef 1123 R rec 508b8eca-6cad-4a6e-a6cc-6cbcd0d28d81 +2024-09-11 09:01:12.059692 2024-09-11 09:01:12.059697 mef 1124 R rec 21933c73-dc9b-44dd-96d0-d55db19610eb +2024-09-11 09:01:12.121826 2024-09-11 09:01:12.121831 mef 1125 R rec 85331d7d-d66b-4b5b-be5a-011b5546b571 +2024-09-11 09:01:12.173218 2024-09-11 09:01:12.173224 mef 1126 R rec e6ce9689-618f-4e26-963c-83150b639b89 +2024-09-11 09:01:12.228496 2024-09-11 09:01:12.2285 mef 1127 R rec f3242aa2-84c8-4363-bd53-67891bc3c794 +2024-09-11 09:01:12.295667 2024-09-11 09:01:12.295672 mef 1128 R rec 889fb83b-4abf-4ea8-9af6-2a0ca589ecff +2024-09-11 09:01:12.35105 2024-09-11 09:01:12.351055 mef 1129 R rec 2eaf523b-6039-4057-9f4d-0f51393b71b4 +2024-09-11 09:01:12.405164 2024-09-11 09:01:12.405168 mef 1130 R rec ee7c3e3b-5b81-436b-8725-18dfc6cfd5af +2024-09-11 09:01:12.462367 2024-09-11 09:01:12.462373 mef 1131 R rec f9d8234a-9b50-4e5d-a8a1-d9662dde1dbd +2024-09-11 09:01:12.517316 2024-09-11 09:01:12.51732 mef 1132 R rec 1e90a468-eed4-4377-9a1e-bbfff7023c32 +2024-09-11 09:01:12.572619 2024-09-11 09:01:12.572624 mef 1133 R rec 3d8cda2a-6ff5-4d02-afe9-60147deb5bf6 +2024-09-11 09:01:12.639619 2024-09-11 09:01:12.639624 mef 1134 R rec 8f2128cb-9290-43e3-a02e-a9f92f8fe550 +2024-09-11 09:01:12.724445 2024-09-11 09:01:12.72445 mef 1135 R rec cf06dfd3-c413-48a0-a3c1-67d1390c0876 +2024-09-11 09:01:12.788587 2024-09-11 09:01:12.788592 mef 1136 R rec 26556777-91f8-4251-bd18-ef09edf84cf7 +2024-09-11 09:01:12.849143 2024-09-11 09:01:12.849148 mef 1137 R rec 709f6c49-6f77-454b-ba08-398db3ea643a +2024-09-11 09:01:12.908697 2024-09-11 09:01:12.908702 mef 1138 R rec 5efd5954-1b00-40eb-8614-823edb4c2402 +2024-09-11 09:01:12.976719 2024-09-11 09:01:12.976724 mef 1139 R rec 6a3e88a7-1e9c-49c8-ad2a-5cae35957df2 +2024-09-11 09:01:13.033974 2024-09-11 09:01:13.03398 mef 1140 R rec 6d392b23-78d3-4247-b8e0-016d7bca89ba +2024-09-11 09:01:13.088034 2024-09-11 09:01:13.088038 mef 1141 R rec 0bae2005-9fad-4545-a216-5eb0b7249739 +2024-09-11 09:01:13.146425 2024-09-11 09:01:13.14643 mef 1142 R rec 1036918d-b22e-4fed-84f3-ce5017addd14 +2024-09-11 09:01:13.215764 2024-09-11 09:01:13.215769 mef 1143 R rec 3eb0c0ca-5661-4e91-8aaf-0d59e859b391 +2024-09-11 09:01:13.270993 2024-09-11 09:01:13.270997 mef 1144 R rec 60204e46-9a0a-4f00-bed4-61dc7019592e +2024-09-11 09:01:13.324159 2024-09-11 09:01:13.324164 mef 1145 R rec add25c40-3970-4b00-b5b9-a1cd027f4eef +2024-09-11 09:01:13.384832 2024-09-11 09:01:13.384836 mef 1146 R rec aa3e608f-23de-4c5b-95d1-0c45cfee4720 +2024-09-11 09:01:13.440729 2024-09-11 09:01:13.440734 mef 1147 R rec 7677242a-a41f-4293-abae-4e972d2f90ee +2024-09-11 09:01:13.493014 2024-09-11 09:01:13.493018 mef 1148 R rec 36e1ece5-b67f-4756-b5e4-71c503fc8de9 +2024-09-11 09:01:13.554327 2024-09-11 09:01:13.554332 mef 1149 R rec 4edeb210-136d-4e6d-89d8-0fed150ef8a5 +2024-09-11 09:01:13.608153 2024-09-11 09:01:13.608158 mef 1150 R rec 79d92b0d-6547-4125-abbd-e4283d4e9d36 +2024-09-11 09:01:13.661749 2024-09-11 09:01:13.661754 mef 1151 R rec 3d71e339-8622-4ce4-80fa-a4df788997e6 +2024-09-11 09:01:13.716063 2024-09-11 09:01:13.716069 mef 1152 R rec 13e28f18-2d17-40b8-8261-9e93b6efdc7d +2024-09-11 09:01:13.768026 2024-09-11 09:01:13.768031 mef 1153 R rec 9d9ea2bb-dd7f-44ce-b1ff-19d9da89d602 +2024-09-11 09:01:13.826715 2024-09-11 09:01:13.826719 mef 1154 R rec 6dd7ba28-fe11-4aeb-a58c-d4d686ecc8c5 +2024-09-11 09:01:13.881334 2024-09-11 09:01:13.881339 mef 1155 R rec 4382b2a7-da97-4349-8dc5-2e29cea48f7c +2024-09-11 09:01:13.936439 2024-09-11 09:01:13.936443 mef 1156 R rec 678a3051-b46a-4440-b847-fb5af5c202a4 +2024-09-11 09:01:13.997498 2024-09-11 09:01:13.997503 mef 1157 R rec 4e6f7836-063c-41f0-bc86-c94423df7d78 +2024-09-11 09:01:14.053313 2024-09-11 09:01:14.053318 mef 1158 R rec 63d0e03b-3f95-40d9-91ad-9add161d0dee +2024-09-11 09:01:14.104459 2024-09-11 09:01:14.104464 mef 1159 R rec 15d4c84a-960c-4eb1-8e6b-f3290dcf8ef5 +2024-09-11 09:01:14.173226 2024-09-11 09:01:14.173231 mef 1160 R rec 7e4656f7-6124-4170-bfc1-f10dbffb3da9 +2024-09-11 09:01:14.241335 2024-09-11 09:01:14.24134 mef 1161 R rec 15d963a1-3af0-4a9e-960c-297bbd24d99b +2024-09-11 09:01:14.299575 2024-09-11 09:01:14.299581 mef 1162 R rec 62860008-b512-42b2-8e64-ceaae67e69a2 +2024-09-11 09:01:14.354801 2024-09-11 09:01:14.354805 mef 1163 R rec 7d93c65b-a5ed-4397-ba3d-443c869dca3a +2024-09-11 09:01:14.406291 2024-09-11 09:01:14.406295 mef 1164 R rec 1d631c6d-55d7-42f6-801f-3d88c5097f9c +2024-09-11 09:01:14.462169 2024-09-11 09:01:14.462174 mef 1165 R rec 9152c0a0-632f-4b9e-a883-da4b934e0245 +2024-09-11 09:01:14.51266 2024-09-11 09:01:14.512665 mef 1166 R rec c1d6e09a-7d5c-4edf-a1fd-c43975a8cb35 +2024-09-11 09:01:14.568512 2024-09-11 09:01:14.568516 mef 1167 R rec f34e2ab8-ea09-4b6a-9709-0b0977631f86 +2024-09-11 09:01:14.621581 2024-09-11 09:01:14.621585 mef 1168 R rec c4391375-a84e-4da1-882b-2d75c3c48adb +2024-09-11 09:01:14.689312 2024-09-11 09:01:14.689315 mef 1169 R rec b182fa47-5090-4d9f-bdf6-6d8a08b97707 +2024-09-11 09:01:14.74287 2024-09-11 09:01:14.742874 mef 1170 R rec 74f6c8e4-5e5f-4473-841b-4317aad8c174 +2024-09-11 09:01:14.815401 2024-09-11 09:01:14.815405 mef 1171 R rec a5e1efca-80b0-42c6-8fa0-c3dea28cf6b4 +2024-09-11 09:01:14.866962 2024-09-11 09:01:14.866966 mef 1172 R rec cbebc897-fb29-4de4-88a8-9d0f1c51bb2b +2024-09-11 09:01:14.925627 2024-09-11 09:01:14.925631 mef 1173 R rec 986dcfb1-ad6b-439c-8b99-e643456ed29f +2024-09-11 09:01:14.979842 2024-09-11 09:01:14.979846 mef 1174 R rec 531daf70-e0f1-4d3e-9f93-a678129b0316 +2024-09-11 09:01:15.039218 2024-09-11 09:01:15.039222 mef 1175 R rec 43429bb3-b474-4e7b-9379-f58c38a4be66 +2024-09-11 09:01:15.091997 2024-09-11 09:01:15.092002 mef 1176 R rec 035d7b9e-6a34-421b-8a4b-158fc1cdc3fb +2024-09-11 09:01:15.151761 2024-09-11 09:01:15.151765 mef 1177 R rec 52ca75e3-fc3c-40c8-8cd8-e13c2353e33d +2024-09-11 09:01:15.205509 2024-09-11 09:01:15.205513 mef 1178 R rec fec076c3-fa1d-4110-887a-59512eae7c47 +2024-09-11 09:01:15.25905 2024-09-11 09:01:15.259055 mef 1179 R rec d532efdc-c25f-4e04-afc5-032d584ce0a0 +2024-09-11 09:01:15.317503 2024-09-11 09:01:15.317507 mef 1180 R rec e1c68b10-4682-4145-aa5d-050e296bb8bc +2024-09-11 09:01:15.375372 2024-09-11 09:01:15.375377 mef 1181 R rec 8c9a4a8f-2e13-4657-b0fa-8b02b6a5922c +2024-09-11 09:01:15.435788 2024-09-11 09:01:15.435793 mef 1182 R rec e3507213-0bcb-4529-926d-e19ebc2bb387 +2024-09-11 09:01:15.502163 2024-09-11 09:01:15.502168 mef 1183 R rec 63c0f873-2366-4ee9-b331-13c839e348b1 +2024-09-11 09:01:15.574707 2024-09-11 09:01:15.574712 mef 1184 R rec 34148b6b-6d1b-4a37-af18-15dffc5c9181 +2024-09-11 09:01:15.63459 2024-09-11 09:01:15.634595 mef 1185 R rec a7495327-23c3-43bb-adb1-9a8a5ea4899b +2024-09-11 09:01:15.685973 2024-09-11 09:01:15.685977 mef 1186 R rec d6d914a5-913f-4546-badb-223c04a2ddca +2024-09-11 09:01:15.736338 2024-09-11 09:01:15.736342 mef 1187 R rec df27edf5-5666-485b-9905-c4cea42115c3 +2024-09-11 09:01:15.786391 2024-09-11 09:01:15.786396 mef 1188 R rec 28b9439b-0d10-4e80-827d-651ee2ac1406 +2024-09-11 09:01:15.848556 2024-09-11 09:01:15.84856 mef 1189 R rec 487bed51-6e31-45ee-999b-8e2043abf6fd +2024-09-11 09:01:15.89805 2024-09-11 09:01:15.898055 mef 1190 R rec 43b911d9-edef-4310-b62e-2529515ed468 +2024-09-11 09:01:15.951147 2024-09-11 09:01:15.951152 mef 1191 R rec fc9fd5a8-e3b7-466f-8638-2d4b7550aec9 +2024-09-11 09:01:16.003699 2024-09-11 09:01:16.003703 mef 1192 R rec c100d43f-3f29-453d-87c2-a861c36c1a4b +2024-09-11 09:01:16.066646 2024-09-11 09:01:16.066651 mef 1193 R rec 8a9f0596-ea90-4dab-8de5-a0dce83f7c69 +2024-09-11 09:01:16.140716 2024-09-11 09:01:16.14072 mef 1194 R rec 04a00ef8-fe2d-4e20-a348-53948e5a4aad +2024-09-11 09:01:16.201533 2024-09-11 09:01:16.201538 mef 1195 R rec b9d5b28f-61de-4231-aae0-de633d066c13 +2024-09-11 09:01:16.254201 2024-09-11 09:01:16.254205 mef 1196 R rec f1a3f5da-d658-41e1-931b-5b646249a4d7 +2024-09-11 09:01:16.308462 2024-09-11 09:01:16.308466 mef 1197 R rec f5f24453-386b-49fc-8b13-2df09a3efbec +2024-09-11 09:01:16.371933 2024-09-11 09:01:16.371938 mef 1198 R rec 9884ae01-592d-4453-80c1-bcb56a922b1a +2024-09-11 09:01:16.423707 2024-09-11 09:01:16.423712 mef 1199 R rec 9545eb00-bdde-462d-81f8-80776aa9261c +2024-09-11 09:01:16.477647 2024-09-11 09:01:16.477652 mef 1200 R rec b10b08ad-d894-4b12-a356-5f857d56dd77 +2024-09-11 09:01:16.533671 2024-09-11 09:01:16.533675 mef 1201 R rec 9d3b10c8-d9a9-4552-b969-ff421b4be83a +2024-09-11 09:01:16.585844 2024-09-11 09:01:16.585849 mef 1202 R rec d9d04fc9-6a33-471e-a9df-bd40bef348ab +2024-09-11 09:01:16.638981 2024-09-11 09:01:16.638985 mef 1203 R rec 4a80c5cd-e199-4ce4-b0b4-5e1e4a244372 +2024-09-11 09:01:16.695237 2024-09-11 09:01:16.695241 mef 1204 R rec afbe13cd-cdff-4dde-a510-65f66830decd +2024-09-11 09:01:16.78254 2024-09-11 09:01:16.782545 mef 1205 R rec 8514faf8-40a3-4f26-a18b-0efcd87a0a3f +2024-09-11 09:01:16.837779 2024-09-11 09:01:16.837784 mef 1206 R rec 2b2fd03c-96f7-41ca-be67-fbea5d35af3d +2024-09-11 09:01:16.88969 2024-09-11 09:01:16.889695 mef 1207 R rec a2e21da3-b80d-4ad5-8de6-bfdd38d36d9e +2024-09-11 09:01:16.945293 2024-09-11 09:01:16.945297 mef 1208 R rec 0b16bc77-f26f-4bf9-8906-cbddb2802cfb +2024-09-11 09:01:17.005294 2024-09-11 09:01:17.005298 mef 1209 R rec ff3b0b3b-1345-469d-96eb-11fd6119685a +2024-09-11 09:01:17.058662 2024-09-11 09:01:17.058668 mef 1210 R rec f5ae2e5b-a0d7-40dc-81c5-af39699f9f5d +2024-09-11 09:01:17.109044 2024-09-11 09:01:17.109048 mef 1211 R rec 6ff9b65f-5c90-40fb-8850-11d9f4c1a1a1 +2024-09-11 09:01:17.165806 2024-09-11 09:01:17.165812 mef 1212 R rec c21953fb-cb7e-4bcd-94f0-0aad7599ae48 +2024-09-11 09:01:17.217549 2024-09-11 09:01:17.217554 mef 1213 R rec d9d4af84-8d0e-4b5f-a8c3-0657d0184cbf +2024-09-11 09:01:17.270482 2024-09-11 09:01:17.270486 mef 1214 R rec 2ae91762-4fcd-4f01-91dc-b9915aecfa01 +2024-09-11 09:01:17.322212 2024-09-11 09:01:17.322216 mef 1215 R rec 3785168f-1531-4a06-9339-e9aabadc2fce +2024-09-11 09:01:17.377012 2024-09-11 09:01:17.377017 mef 1216 R rec 3b99f520-868f-4878-bd52-5dba63b816d9 +2024-09-11 09:01:17.435952 2024-09-11 09:01:17.435957 mef 1217 R rec e0b933a5-e423-4961-b6b7-de7d7123f316 +2024-09-11 09:01:17.490788 2024-09-11 09:01:17.490793 mef 1218 R rec 0a3e7e51-1e7e-4480-8874-74f4329e5ae0 +2024-09-11 09:01:17.5468 2024-09-11 09:01:17.546805 mef 1219 R rec c4864582-ffa1-4abf-ac95-132a7cab4316 +2024-09-11 09:01:17.602118 2024-09-11 09:01:17.602122 mef 1220 R rec 2f879dec-5069-45f8-a733-78ca1009a485 +2024-09-11 09:01:17.661045 2024-09-11 09:01:17.66105 mef 1221 R rec dcf55a37-bcf4-4beb-93dc-611027101199 +2024-09-11 09:01:17.720993 2024-09-11 09:01:17.720997 mef 1222 R rec d03f48b1-4f2f-43fb-a81d-0c968f068a3d +2024-09-11 09:01:17.775185 2024-09-11 09:01:17.775189 mef 1223 R rec fb0fd8fb-eafa-48fd-a5f0-9d678f64b859 +2024-09-11 09:01:17.837936 2024-09-11 09:01:17.83794 mef 1224 R rec e15a9686-dd8b-40b7-8463-595815719868 +2024-09-11 09:01:17.891765 2024-09-11 09:01:17.89177 mef 1225 R rec 6d01eb2a-b517-4480-b1fc-9ad0cf109b29 +2024-09-11 09:01:17.944204 2024-09-11 09:01:17.944209 mef 1226 R rec 4065789b-f3ec-4f36-824c-60fc9f795895 +2024-09-11 09:01:17.995926 2024-09-11 09:01:17.995932 mef 1227 R rec 88029fb8-63c4-4437-b29d-2dafda756839 +2024-09-11 09:01:18.052565 2024-09-11 09:01:18.05257 mef 1228 R rec 5b7fc22c-9875-4248-a818-04f1519a8eea +2024-09-11 09:01:18.105572 2024-09-11 09:01:18.105577 mef 1229 R rec 0c773571-5787-4bac-a2aa-9dff7555df15 +2024-09-11 09:01:18.172617 2024-09-11 09:01:18.172622 mef 1230 R rec f60211c8-b546-466a-ad8d-1259772e4d31 +2024-09-11 09:01:18.226747 2024-09-11 09:01:18.226752 mef 1231 R rec 61cb12dc-99cf-4055-8ff1-75015565f3aa +2024-09-11 09:01:18.282333 2024-09-11 09:01:18.282338 mef 1232 R rec d3b30ad9-e00f-4dad-b45a-973cc84155e6 +2024-09-11 09:01:18.333484 2024-09-11 09:01:18.333489 mef 1233 R rec fffdf4da-4782-4379-94bf-9bc275b9be45 +2024-09-11 09:01:18.385362 2024-09-11 09:01:18.385366 mef 1234 R rec bf7219d9-4be4-41b4-a400-90b690b07890 +2024-09-11 09:01:18.436745 2024-09-11 09:01:18.436749 mef 1235 R rec a5507b27-ce96-4206-a22a-66ea4a61df7c +2024-09-11 09:01:18.491263 2024-09-11 09:01:18.491268 mef 1236 R rec bf11f36a-8afb-406d-8882-93c0a22d523d +2024-09-11 09:01:18.545583 2024-09-11 09:01:18.545588 mef 1237 R rec 63f718c0-cfd5-4e4e-b4ef-464c691a8761 +2024-09-11 09:01:18.61335 2024-09-11 09:01:18.613355 mef 1238 R rec b3c9f87a-3bb7-4c05-8077-e1a1700ab03b +2024-09-11 09:01:18.681591 2024-09-11 09:01:18.681596 mef 1239 R rec 80a1f1be-a6a5-4629-89ce-68b82040af00 +2024-09-11 09:01:18.740364 2024-09-11 09:01:18.740368 mef 1240 R rec e2d250c1-1c12-495e-b17b-3dffbcca5578 +2024-09-11 09:01:18.814356 2024-09-11 09:01:18.814361 mef 1241 R rec 4401284f-3616-4e0d-93e5-d48ccc53e976 +2024-09-11 09:01:18.876303 2024-09-11 09:01:18.876308 mef 1242 R rec 2a4ec5cc-8442-455a-85b7-657898bbfa68 +2024-09-11 09:01:18.929714 2024-09-11 09:01:18.929719 mef 1243 R rec 0c31ea23-025a-4525-a6f6-c83fbaebfed2 +2024-09-11 09:01:19.000513 2024-09-11 09:01:19.000518 mef 1244 R rec 13782197-3217-4fdb-a162-ed0f5c6f9bef +2024-09-11 09:01:19.051174 2024-09-11 09:01:19.051178 mef 1245 R rec 523bbe91-7686-4968-887a-211037b8a0a9 +2024-09-11 09:01:19.10724 2024-09-11 09:01:19.107245 mef 1246 R rec 0a29f4e9-48bc-429d-8802-48d059d0adc5 +2024-09-11 09:01:19.164337 2024-09-11 09:01:19.164341 mef 1247 R rec 76b94ef7-1af4-4ace-bfe0-bab84cce73d6 +2024-09-11 09:01:19.217335 2024-09-11 09:01:19.21734 mef 1248 R rec 9f6ec6b2-106f-475a-b8b4-f153b7ed27c6 +2024-09-11 09:01:19.273651 2024-09-11 09:01:19.273656 mef 1249 R rec a90890a3-a1c9-4fb4-b264-757e7f3e03c8 +2024-09-11 09:01:19.33199 2024-09-11 09:01:19.331995 mef 1250 R rec 78d3f0e1-9da2-4df9-ae9b-3b75b7d80a72 +2024-09-11 09:01:19.386709 2024-09-11 09:01:19.386714 mef 1251 R rec 3c9834c0-849d-40f2-9cc3-9cd083c1ef85 +2024-09-11 09:01:19.44614 2024-09-11 09:01:19.446145 mef 1252 R rec f906f978-f915-419e-ab47-2515ff6b50e9 +2024-09-11 09:01:19.504276 2024-09-11 09:01:19.50428 mef 1253 R rec ddca8835-9118-42d8-a5ad-cd432270cb0c +2024-09-11 09:01:19.562198 2024-09-11 09:01:19.562202 mef 1254 R rec 7c71b8f8-ece1-4138-a463-6e5715ec111f +2024-09-11 09:01:19.617097 2024-09-11 09:01:19.617102 mef 1255 R rec 8eff7a83-cfcb-4351-a303-8519d44b10ae +2024-09-11 09:01:19.680755 2024-09-11 09:01:19.68076 mef 1256 R rec 35e99346-e48d-4f88-a1ac-22e7a0586efb +2024-09-11 09:01:19.749496 2024-09-11 09:01:19.749501 mef 1257 R rec 87dcbd4d-9451-4598-9085-b2633fd34bfc +2024-09-11 09:01:19.800843 2024-09-11 09:01:19.800848 mef 1258 R rec 25c9d0b5-88e0-4457-8101-947df3ad9f0b +2024-09-11 09:01:19.850056 2024-09-11 09:01:19.85006 mef 1259 R rec 9238d7a3-f828-4d13-8ddc-ffbdd013259c +2024-09-11 09:01:19.904147 2024-09-11 09:01:19.904152 mef 1260 R rec 96bfa07b-ee1a-4e9d-90aa-901ab6828023 +2024-09-11 09:01:19.952559 2024-09-11 09:01:19.952564 mef 1261 R rec f363fa37-ad07-4355-beaf-e141f94097fe +2024-09-11 09:01:20.009671 2024-09-11 09:01:20.009676 mef 1262 R rec 1065cf97-418c-493c-9dd5-9a44a430e26b +2024-09-11 09:01:20.078522 2024-09-11 09:01:20.078527 mef 1263 R rec 503e1fb0-a134-469c-a81d-7d2805d49d7e +2024-09-11 09:01:20.131746 2024-09-11 09:01:20.131751 mef 1264 R rec 4eba4971-4b70-4365-9ca2-41d4187b7318 +2024-09-11 09:01:20.185958 2024-09-11 09:01:20.185962 mef 1265 R rec 4f27ed5a-b11f-4171-aad1-db09cd4ddca7 +2024-09-11 09:01:20.248084 2024-09-11 09:01:20.248088 mef 1266 R rec 5aedc8d2-0c7a-4460-9453-481f83e93683 +2024-09-11 09:01:20.304195 2024-09-11 09:01:20.3042 mef 1267 R rec dc370284-655e-46d4-8394-fb68a5b089b3 +2024-09-11 09:01:20.37358 2024-09-11 09:01:20.373584 mef 1268 R rec c40360fc-8dc4-4f1a-830a-f13f496acccb +2024-09-11 09:01:20.431997 2024-09-11 09:01:20.432002 mef 1269 R rec 3e87a2ba-7e2a-4687-9680-6da351593ba9 +2024-09-11 09:01:20.496343 2024-09-11 09:01:20.49635 mef 1270 R rec 2d011b81-e4f4-4390-9d64-84d200d1d3cd +2024-09-11 09:01:20.562332 2024-09-11 09:01:20.562336 mef 1271 R rec b994af66-a8f8-447a-865b-7911ba12485b +2024-09-11 09:01:20.618887 2024-09-11 09:01:20.618892 mef 1272 R rec 9115b2cc-4034-46c2-ae19-142bf5504297 +2024-09-11 09:01:20.675921 2024-09-11 09:01:20.675926 mef 1273 R rec b665f9dc-fc49-4d50-bda3-423ff614ae48 +2024-09-11 09:01:20.755918 2024-09-11 09:01:20.755923 mef 1274 R rec 26ffb867-4c2e-4167-9551-acf9045a7379 +2024-09-11 09:01:20.81729 2024-09-11 09:01:20.817295 mef 1275 R rec ec545d7c-fd68-4537-8cb3-e75369a59a28 +2024-09-11 09:01:20.869974 2024-09-11 09:01:20.869978 mef 1276 R rec 7d6e7dc6-6f70-49cf-b900-18a4e8cad770 +2024-09-11 09:01:20.92652 2024-09-11 09:01:20.926525 mef 1277 R rec 53c55d3f-6d3f-4e8c-be42-981eef891576 +2024-09-11 09:01:20.978718 2024-09-11 09:01:20.978723 mef 1278 R rec 09055524-0fa3-4cf8-8b32-9d40e2b50bf6 +2024-09-11 09:01:21.034635 2024-09-11 09:01:21.03464 mef 1279 R rec 94ba3db2-aa65-4626-948d-7dbb838e71d2 +2024-09-11 09:01:21.093316 2024-09-11 09:01:21.093321 mef 1280 R rec 312e45be-ad5c-48b8-9b23-5e4a8d1bc0fb +2024-09-11 09:01:21.152199 2024-09-11 09:01:21.152204 mef 1281 R rec 8723b3e0-1066-47b7-8e9d-b6dd39d48115 +2024-09-11 09:01:21.205545 2024-09-11 09:01:21.20555 mef 1282 R rec e68a3859-45f5-4d17-95d8-5f2a65f6c472 +2024-09-11 09:01:21.259522 2024-09-11 09:01:21.259527 mef 1283 R rec 738c41bb-cffd-49f2-b857-9b5793be76f3 +2024-09-11 09:01:21.312831 2024-09-11 09:01:21.312835 mef 1284 R rec e876b147-efd2-4ae5-b071-6c3dda3b617d +2024-09-11 09:01:21.419183 2024-09-11 09:01:21.419188 mef 1285 R rec b7b12cd9-0e76-40fa-8649-998a91c9f660 +2024-09-11 09:01:21.477657 2024-09-11 09:01:21.477662 mef 1286 R rec b935066a-b538-4f61-99ad-eda4c026f9ee +2024-09-11 09:01:21.527686 2024-09-11 09:01:21.527691 mef 1287 R rec edf77496-2fe3-4727-b269-252d28b96b90 +2024-09-11 09:01:21.60955 2024-09-11 09:01:21.609554 mef 1288 R rec f82e470c-7121-4f6c-8588-839ea6995ebd +2024-09-11 09:01:21.664547 2024-09-11 09:01:21.664551 mef 1289 R rec 37e1f205-2b5f-460b-adc9-8706f6e7f4f8 +2024-09-11 09:01:21.716051 2024-09-11 09:01:21.716056 mef 1290 R rec df9a4a52-15f1-420d-b0cd-e2419b668660 +2024-09-11 09:01:21.769178 2024-09-11 09:01:21.769183 mef 1291 R rec 599f9cc0-83ce-4a89-8629-83643a9c3298 +2024-09-11 09:01:21.821845 2024-09-11 09:01:21.821849 mef 1292 R rec f2795804-eeae-4fba-a030-61d8c63e2c72 +2024-09-11 09:01:21.875951 2024-09-11 09:01:21.875955 mef 1293 R rec 6b0b80e9-d1e4-41a5-a17e-3cab9883c764 +2024-09-11 09:01:21.933409 2024-09-11 09:01:21.933413 mef 1294 R rec 89791916-06cb-4b4c-a15f-95b85cff7303 +2024-09-11 09:01:21.987791 2024-09-11 09:01:21.987795 mef 1295 R rec dfc972ea-faa5-4ac7-83b0-8c749a0a551b +2024-09-11 09:01:22.05261 2024-09-11 09:01:22.052615 mef 1296 R rec f4af78e4-dfc8-45a3-b473-9cd74454057c +2024-09-11 09:01:22.106838 2024-09-11 09:01:22.106843 mef 1297 R rec e57446c2-e1ee-4341-b02b-b20819aa961c +2024-09-11 09:01:22.164684 2024-09-11 09:01:22.164689 mef 1298 R rec 78542b61-d992-46f0-bb23-c5fbf139946a +2024-09-11 09:01:22.230086 2024-09-11 09:01:22.230091 mef 1299 R rec bf439344-ee58-4291-b10e-b3d0a528de83 +2024-09-11 09:01:22.289903 2024-09-11 09:01:22.289908 mef 1300 R rec 7418ef18-cf52-46dd-b65b-fb178f14386f +2024-09-11 09:01:22.356569 2024-09-11 09:01:22.356574 mef 1301 R rec 5a850e1a-e87f-4400-bdd6-77887d984de4 +2024-09-11 09:01:22.424845 2024-09-11 09:01:22.42485 mef 1302 R rec b450c648-d4ba-405d-9bb9-2f03eb84a09d +2024-09-11 09:01:22.477832 2024-09-11 09:01:22.477837 mef 1303 R rec 275f3535-fa31-4482-ba7c-2dd987c63d64 +2024-09-11 09:01:22.533382 2024-09-11 09:01:22.533387 mef 1304 R rec 65d0f567-4bbf-46a2-8cf2-61b2677587c4 +2024-09-11 09:01:22.595362 2024-09-11 09:01:22.595367 mef 1305 R rec a5c7f743-9f67-47b6-8b33-6b214869d4ec +2024-09-11 09:01:22.649488 2024-09-11 09:01:22.649492 mef 1306 R rec 1e6826c7-92f8-4290-9f33-af76831f1ae0 +2024-09-11 09:01:22.705141 2024-09-11 09:01:22.705147 mef 1307 R rec 949991b0-3608-4c7a-b851-fe465f4a86cc +2024-09-11 09:01:22.763101 2024-09-11 09:01:22.763105 mef 1308 R rec 71d7c88f-77fb-4066-98f9-912656c717ae +2024-09-11 09:01:22.826413 2024-09-11 09:01:22.826419 mef 1309 R rec 05acf757-fe13-40ca-887b-ffc5b9f84920 +2024-09-11 09:01:22.895851 2024-09-11 09:01:22.895856 mef 1310 R rec 22555ef6-0084-4627-b020-4cd07785b625 +2024-09-11 09:01:22.952049 2024-09-11 09:01:22.952053 mef 1311 R rec 88a2f1e2-f545-4509-a416-018c77de97dc +2024-09-11 09:01:23.022067 2024-09-11 09:01:23.022072 mef 1312 R rec 7a024d9c-8ece-4692-beab-75c9e6d30855 +2024-09-11 09:01:23.09379 2024-09-11 09:01:23.093794 mef 1313 R rec 4ddfb6b5-f046-4142-bef4-606404219880 +2024-09-11 09:01:23.145706 2024-09-11 09:01:23.145711 mef 1314 R rec a73a5358-41e9-43e4-9552-dbb549984f86 +2024-09-11 09:01:23.197966 2024-09-11 09:01:23.197971 mef 1315 R rec ce0f1194-2d55-4bed-98f1-7183311e9a2e +2024-09-11 09:01:23.250125 2024-09-11 09:01:23.25013 mef 1316 R rec 4dae76fb-ab16-44cc-b487-9385d2f85c71 +2024-09-11 09:01:23.307513 2024-09-11 09:01:23.307517 mef 1317 R rec 686126ff-eecf-4ee7-95ae-9541ea601d1b +2024-09-11 09:01:23.364164 2024-09-11 09:01:23.364168 mef 1318 R rec b07b9681-7992-4851-b36a-ffae6a424eb3 +2024-09-11 09:01:23.41754 2024-09-11 09:01:23.417544 mef 1319 R rec 810456c1-33a4-4f35-ae52-dfe001ded545 +2024-09-11 09:01:23.472944 2024-09-11 09:01:23.472947 mef 1320 R rec 6b594ff1-6ffb-4d50-8daa-470db8cf618a +2024-09-11 09:01:23.527502 2024-09-11 09:01:23.527506 mef 1321 R rec 719e2c1f-7aa7-42e3-bec2-5e43cb460622 +2024-09-11 09:01:23.587908 2024-09-11 09:01:23.587913 mef 1322 R rec 6b87bf47-6ea6-4fc1-9d62-6191bc4db9d1 +2024-09-11 09:01:23.651702 2024-09-11 09:01:23.651707 mef 1323 R rec ab264bc2-ed8b-4195-b92e-cbf87667182d +2024-09-11 09:01:23.703286 2024-09-11 09:01:23.703291 mef 1324 R rec 325769f2-c9eb-4591-bfa6-7cc4f575d94d +2024-09-11 09:01:23.761043 2024-09-11 09:01:23.761048 mef 1325 R rec 8d68557b-1cb0-4f14-a3b9-ffc47afc52e4 +2024-09-11 09:01:23.835652 2024-09-11 09:01:23.835657 mef 1326 R rec a839903f-be62-4fc0-a6bd-3f39e83cf6be +2024-09-11 09:01:23.902549 2024-09-11 09:01:23.902553 mef 1327 R rec 77c74821-d3e1-4b83-95a5-894753027fea +2024-09-11 09:01:23.974043 2024-09-11 09:01:23.974048 mef 1328 R rec 688d7ffa-e742-412d-bbeb-5acdde11f763 +2024-09-11 09:01:24.030023 2024-09-11 09:01:24.030028 mef 1329 R rec 21e5e26c-0dc4-43af-8750-fe41b7047938 +2024-09-11 09:01:24.100904 2024-09-11 09:01:24.100909 mef 1330 R rec c09d7d0a-2f21-4879-b760-b4dd69ff6880 +2024-09-11 09:01:24.16687 2024-09-11 09:01:24.166875 mef 1331 R rec 6f588200-85df-4a55-84c7-ffe8516d0bec +2024-09-11 09:01:24.230089 2024-09-11 09:01:24.230093 mef 1332 R rec c23e8053-46e3-4fbc-8a47-88b4aafc712f +2024-09-11 09:01:24.283949 2024-09-11 09:01:24.283954 mef 1333 R rec 8a2d6e9f-7aea-487f-b9bd-052ca3ce07e1 +2024-09-11 09:01:24.339755 2024-09-11 09:01:24.339759 mef 1334 R rec dfe9193e-7583-4ed7-9a93-0179e0443e8f +2024-09-11 09:01:24.395868 2024-09-11 09:01:24.395873 mef 1335 R rec 69fb5e6e-7184-4545-8822-a9151d6dea7a +2024-09-11 09:01:24.44948 2024-09-11 09:01:24.449485 mef 1336 R rec a399aebb-9aa3-4ce6-9fa7-83bc61ac3491 +2024-09-11 09:01:24.50504 2024-09-11 09:01:24.505045 mef 1337 R rec e85d7e7d-a575-4903-9079-21d2bceb88b6 +2024-09-11 09:01:24.560047 2024-09-11 09:01:24.560052 mef 1338 R rec 48e4b331-bfc5-4a27-b356-deffa4899ab4 +2024-09-11 09:01:24.619017 2024-09-11 09:01:24.619021 mef 1339 R rec 16d4e3bd-daff-4416-9f8d-4d292546b483 +2024-09-11 09:01:24.670443 2024-09-11 09:01:24.670447 mef 1340 R rec 7374a682-210a-43cc-951b-5c69f1623a87 +2024-09-11 09:01:24.727679 2024-09-11 09:01:24.727684 mef 1341 R rec e2c4824c-a3a3-44cd-8f01-7c876878a489 +2024-09-11 09:01:24.77944 2024-09-11 09:01:24.779444 mef 1342 R rec 0eee5128-bd49-4ebc-8e41-63383f228507 +2024-09-11 09:01:24.832123 2024-09-11 09:01:24.832129 mef 1343 R rec d0b80149-5582-4096-92a2-2f7d4cc1483e +2024-09-11 09:01:24.894659 2024-09-11 09:01:24.894663 mef 1344 R rec eddae4be-f905-4da2-a4d4-7db472afb3b2 +2024-09-11 09:01:24.951602 2024-09-11 09:01:24.951606 mef 1345 R rec b7f1f8f2-eb63-4426-9bb1-4111244f5fa1 +2024-09-11 09:01:25.020486 2024-09-11 09:01:25.020491 mef 1346 R rec b0151719-e1e7-4044-b3fc-83edd649a043 +2024-09-11 09:01:25.073249 2024-09-11 09:01:25.073253 mef 1347 R rec 5bc4e265-d33b-456b-a8a4-067baa55fce7 +2024-09-11 09:01:25.134681 2024-09-11 09:01:25.134686 mef 1348 R rec 16204a0a-7c36-4e29-bd7f-25d9083a8125 +2024-09-11 09:01:25.185301 2024-09-11 09:01:25.185306 mef 1349 R rec 56324f9f-070b-4814-8682-b986e40955d6 +2024-09-11 09:01:25.251565 2024-09-11 09:01:25.251569 mef 1350 R rec a0433ae8-c4f4-46cc-ba3c-41ca675d26d8 +2024-09-11 09:01:25.321912 2024-09-11 09:01:25.321916 mef 1351 R rec d85df978-0558-46b5-b953-6bd28803ea5f +2024-09-11 09:01:25.38123 2024-09-11 09:01:25.381235 mef 1352 R rec 109ae7e1-7f94-45af-a80f-034fa795b33f +2024-09-11 09:01:25.434609 2024-09-11 09:01:25.434613 mef 1353 R rec a2749ea5-39c1-440b-b8c7-d802a36afb7d +2024-09-11 09:01:25.504345 2024-09-11 09:01:25.50435 mef 1354 R rec 3825edad-cc5a-414e-8063-900a7dc3c10a +2024-09-11 09:01:25.560828 2024-09-11 09:01:25.560832 mef 1355 R rec 3190b3e2-9693-46ec-863a-3bd783e284f0 +2024-09-11 09:01:25.616109 2024-09-11 09:01:25.616115 mef 1356 R rec e3d456cc-a340-4efd-ace0-150f1ecaefad +2024-09-11 09:01:25.672229 2024-09-11 09:01:25.672234 mef 1357 R rec e4e7d828-89d8-41c9-89d4-8bc6b5fce8b8 +2024-09-11 09:01:25.725976 2024-09-11 09:01:25.725981 mef 1358 R rec adc4f662-3154-4a51-a961-efa5ca08d81e +2024-09-11 09:01:25.780393 2024-09-11 09:01:25.780398 mef 1359 R rec 55a01ac4-99c4-4882-b006-f15aa65c4d3d +2024-09-11 09:01:25.830201 2024-09-11 09:01:25.830206 mef 1360 R rec db0c0e20-7c38-4e27-bf97-c40c91787f16 +2024-09-11 09:01:25.892679 2024-09-11 09:01:25.892685 mef 1361 R rec d3ee088e-f10f-4ba3-bff0-b3c310efce3c +2024-09-11 09:01:25.949949 2024-09-11 09:01:25.949954 mef 1362 R rec 341dfdea-4dc3-47a6-9608-7623df48614a +2024-09-11 09:01:26.02182 2024-09-11 09:01:26.021825 mef 1363 R rec 38f58d5e-21fe-42a5-a2aa-2b2de322f583 +2024-09-11 09:01:26.093971 2024-09-11 09:01:26.093976 mef 1364 R rec 1242ed6c-b4c5-4ab4-bb27-dba65e89254c +2024-09-11 09:01:26.153744 2024-09-11 09:01:26.153748 mef 1365 R rec 0a8ac1e9-8b02-49c6-9e1d-eb03b3ba1a07 +2024-09-11 09:01:26.210798 2024-09-11 09:01:26.210803 mef 1366 R rec 8fab5ff6-5552-4b5a-b02e-6899ca560368 +2024-09-11 09:01:26.282376 2024-09-11 09:01:26.28238 mef 1367 R rec d82de16a-32f0-485a-8ac1-690838c595cf +2024-09-11 09:01:26.340033 2024-09-11 09:01:26.340037 mef 1368 R rec 8cad3b8c-43fe-40ec-982b-b4125699cce5 +2024-09-11 09:01:26.407306 2024-09-11 09:01:26.407311 mef 1369 R rec f39f40c8-6da9-494d-a65c-542a98ddea60 +2024-09-11 09:01:26.472441 2024-09-11 09:01:26.472445 mef 1370 R rec 7ee131f9-40c4-4f81-85fa-12d62a89392f +2024-09-11 09:01:26.539551 2024-09-11 09:01:26.539556 mef 1371 R rec 01ea93fe-217f-48df-abac-77a08bb062f8 +2024-09-11 09:01:26.605071 2024-09-11 09:01:26.605075 mef 1372 R rec 2b2bacc2-1754-4860-860d-440ae6688685 +2024-09-11 09:01:26.66176 2024-09-11 09:01:26.661765 mef 1373 R rec 928d72ac-bece-4367-abd9-2740c1aabc7e +2024-09-11 09:01:26.730024 2024-09-11 09:01:26.730029 mef 1374 R rec 74540ca8-dae6-43b1-b12d-f6cfae54e566 +2024-09-11 09:01:26.789081 2024-09-11 09:01:26.789086 mef 1375 R rec afab1548-ff66-4bc1-98ac-804c48f8413e +2024-09-11 09:01:26.844875 2024-09-11 09:01:26.844879 mef 1376 R rec 7df5b77c-e33b-4c8a-9680-7ce6f8dbc81b +2024-09-11 09:01:26.899779 2024-09-11 09:01:26.899784 mef 1377 R rec e5f27a57-bc27-4864-90bd-9ee8188798f3 +2024-09-11 09:01:26.94985 2024-09-11 09:01:26.949854 mef 1378 R rec d77a0fea-dc4e-43eb-b973-1b0be33cfc1b +2024-09-11 09:01:27.00098 2024-09-11 09:01:27.000984 mef 1379 R rec 67d40b64-58eb-41df-b473-025435ca904f +2024-09-11 09:01:27.060257 2024-09-11 09:01:27.060261 mef 1380 R rec a0042c2c-7b40-45d3-a2b9-f0d802dabb69 +2024-09-11 09:01:27.137525 2024-09-11 09:01:27.13753 mef 1381 R rec 788994ad-8b3e-43a2-b8c4-ef12559b400e +2024-09-11 09:01:27.192382 2024-09-11 09:01:27.192387 mef 1382 R rec ded4d0be-43bb-4b32-896c-b0634eec7f1a +2024-09-11 09:01:27.248558 2024-09-11 09:01:27.248562 mef 1383 R rec 0862e4c2-fc61-419c-a6e2-f2662a22aa0f +2024-09-11 09:01:27.304625 2024-09-11 09:01:27.30463 mef 1384 R rec da7769b1-4277-4d49-9329-0354205bae92 +2024-09-11 09:01:27.37245 2024-09-11 09:01:27.372454 mef 1385 R rec 7c1810b8-1e83-493b-9d28-f65214aa14fa +2024-09-11 09:01:27.440176 2024-09-11 09:01:27.44018 mef 1386 R rec 7059e401-47e8-4c46-b8a9-c1a88eac8a89 +2024-09-11 09:01:27.498997 2024-09-11 09:01:27.499001 mef 1387 R rec c39c5f52-3d73-4bbd-81ce-1687e3625502 +2024-09-11 09:01:27.549753 2024-09-11 09:01:27.549757 mef 1388 R rec 8dfd3566-eea1-411f-8566-e8ed2f380c63 +2024-09-11 09:01:27.601534 2024-09-11 09:01:27.601539 mef 1389 R rec 03dc049b-8b6a-425b-96ba-143f3ac3b5e9 +2024-09-11 09:01:27.671987 2024-09-11 09:01:27.671991 mef 1390 R rec 2aeb719c-6288-4b03-9107-50d2229d8756 +2024-09-11 09:01:27.748251 2024-09-11 09:01:27.748257 mef 1391 R rec f5439b21-74bb-4784-8f71-a08ed9775b0a +2024-09-11 09:01:27.806548 2024-09-11 09:01:27.806554 mef 1392 R rec f6bc1851-1056-4735-96ea-b42331119763 +2024-09-11 09:01:27.873052 2024-09-11 09:01:27.873056 mef 1393 R rec aecdea1e-02a3-4c24-b257-9b2c7ad10498 +2024-09-11 09:01:27.943773 2024-09-11 09:01:27.943778 mef 1394 R rec 515028f3-83e2-474c-a682-d27d587a2c10 +2024-09-11 09:01:27.999928 2024-09-11 09:01:27.999932 mef 1395 R rec 2568bced-6b88-4fd9-b921-96fd3b8bdafe +2024-09-11 09:01:28.061018 2024-09-11 09:01:28.061023 mef 1396 R rec e688e1fc-8ef6-4805-9d2b-509268185789 +2024-09-11 09:01:28.11158 2024-09-11 09:01:28.111584 mef 1397 R rec d1222532-ef8d-401c-9951-5d5263f23888 +2024-09-11 09:01:28.173964 2024-09-11 09:01:28.173969 mef 1398 R rec e1d8f0e3-e32c-4398-843d-6d52ed94f81c +2024-09-11 09:01:28.226981 2024-09-11 09:01:28.226987 mef 1399 R rec 8abfcb7e-a4f6-4e82-90c0-988c45788bc3 +2024-09-11 09:01:28.278898 2024-09-11 09:01:28.278902 mef 1400 R rec ff770805-06ea-4f02-ad0d-ea8c088e6b11 +2024-09-11 09:01:28.335491 2024-09-11 09:01:28.335495 mef 1401 R rec a8d5d7f9-98e2-47f4-8593-444a1721c9d2 +2024-09-11 09:01:28.38802 2024-09-11 09:01:28.388025 mef 1402 R rec bf97c60c-e593-4e7b-9b50-805a1d2cdbf7 +2024-09-11 09:01:28.444801 2024-09-11 09:01:28.444805 mef 1403 R rec 37c8bec0-1fae-4d7f-8488-110a4f29c79f +2024-09-11 09:01:28.500651 2024-09-11 09:01:28.500655 mef 1404 R rec 5919b4a3-2f23-48c4-acf7-78c37e79a7d8 +2024-09-11 09:01:28.562852 2024-09-11 09:01:28.562857 mef 1405 R rec 6f162aff-2f5c-4ced-a4a3-2f2b9b360ff2 +2024-09-11 09:01:28.627354 2024-09-11 09:01:28.627359 mef 1406 R rec c2f3a283-3076-40b2-ab45-b0da760316f1 +2024-09-11 09:01:28.679677 2024-09-11 09:01:28.679682 mef 1407 R rec f9cb0385-2b1d-4938-b945-50a02c17fd78 +2024-09-11 09:01:28.734862 2024-09-11 09:01:28.734866 mef 1408 R rec d13653b9-9280-4473-8f09-82d40e0f3b36 +2024-09-11 09:01:28.790526 2024-09-11 09:01:28.790531 mef 1409 R rec e752be47-f8bb-41b9-9e38-a35ff30831a1 +2024-09-11 09:01:28.847213 2024-09-11 09:01:28.847218 mef 1410 R rec f2b2941e-3a47-49e7-bea2-4dc2842b0284 +2024-09-11 09:01:28.900575 2024-09-11 09:01:28.90058 mef 1411 R rec f04fbd20-02a8-4780-b939-76d20cb4fce8 +2024-09-11 09:01:28.956393 2024-09-11 09:01:28.956397 mef 1412 R rec 966b287b-e14e-4313-b534-6db9fa835709 +2024-09-11 09:01:29.016795 2024-09-11 09:01:29.0168 mef 1413 R rec f6a8026f-b748-44d6-812b-9edc6f7350b3 +2024-09-11 09:01:29.076542 2024-09-11 09:01:29.076547 mef 1414 R rec 2ff73b30-5795-43d4-a0a9-ca266cb7e7ad +2024-09-11 09:01:29.133969 2024-09-11 09:01:29.133974 mef 1415 R rec d978cd54-450e-4097-b111-d19812412151 +2024-09-11 09:01:29.199021 2024-09-11 09:01:29.199026 mef 1416 R rec 4e8832eb-d22c-45a7-80e5-6f9573d7f682 +2024-09-11 09:01:29.261902 2024-09-11 09:01:29.261907 mef 1417 R rec ae26a387-7f47-450a-9cf9-9bc9e2c834f9 +2024-09-11 09:01:29.318173 2024-09-11 09:01:29.318177 mef 1418 R rec 8aba5d78-2f5b-496f-a1f5-8699170d044a +2024-09-11 09:01:29.37476 2024-09-11 09:01:29.374765 mef 1419 R rec 3d3cfbf0-dcb5-4d6c-b136-78d248c9313f +2024-09-11 09:01:29.432267 2024-09-11 09:01:29.432272 mef 1420 R rec 8dd64eb3-f452-4dc9-8c3c-aa4727038c42 +2024-09-11 09:01:29.502477 2024-09-11 09:01:29.502481 mef 1421 R rec e930d644-012d-4cd8-9da5-146e2dc98a10 +2024-09-11 09:01:29.569581 2024-09-11 09:01:29.569585 mef 1422 R rec cc203fe8-f019-4000-8c2c-342250dab474 +2024-09-11 09:01:29.625022 2024-09-11 09:01:29.625027 mef 1423 R rec 8d19d8ee-bc81-428e-b1c9-fc07cb79bd96 +2024-09-11 09:01:29.67682 2024-09-11 09:01:29.676824 mef 1424 R rec 1313b1a3-4737-46ff-8f16-ad878ab2a7d3 +2024-09-11 09:01:29.738668 2024-09-11 09:01:29.738673 mef 1425 R rec 2e3a9a77-19e0-474a-a36d-12455e7e993c +2024-09-11 09:01:29.791848 2024-09-11 09:01:29.791854 mef 1426 R rec 50b2e6c1-975b-4d00-85a5-5307bca79c18 +2024-09-11 09:01:29.84997 2024-09-11 09:01:29.849974 mef 1427 R rec 0bf8702a-06e5-4f27-8314-ccef7394fb5e +2024-09-11 09:01:29.916147 2024-09-11 09:01:29.916152 mef 1428 R rec 17935df8-1b3c-4caa-8efd-dfdfe325f6da +2024-09-11 09:01:29.970237 2024-09-11 09:01:29.970241 mef 1429 R rec dec84ece-1996-4de2-8b2e-45e26a48d2ff +2024-09-11 09:01:30.021902 2024-09-11 09:01:30.021906 mef 1430 R rec 82e1df0d-56fc-4fc6-80db-484b28b29715 +2024-09-11 09:01:30.078602 2024-09-11 09:01:30.078607 mef 1431 R rec 2e736535-5608-4e56-9bf2-dad6e121c2af +2024-09-11 09:01:30.132768 2024-09-11 09:01:30.132772 mef 1432 R rec bf10b3dc-354f-476b-8e47-1f7ea628b79c +2024-09-11 09:01:30.199577 2024-09-11 09:01:30.199581 mef 1433 R rec 7c47acf7-3f37-463d-92f1-a810653dbc88 +2024-09-11 09:01:30.252066 2024-09-11 09:01:30.25207 mef 1434 R rec 5f4411e2-708c-4ee1-904d-a2e5f552f408 +2024-09-11 09:01:30.308932 2024-09-11 09:01:30.308937 mef 1435 R rec 53f5af46-1f51-4523-b33e-9ac7ebf74edd +2024-09-11 09:01:30.36173 2024-09-11 09:01:30.361735 mef 1436 R rec 7390163c-7bb9-4726-a5ff-270c62e1651e +2024-09-11 09:01:30.418439 2024-09-11 09:01:30.418444 mef 1437 R rec 946d4583-c94f-40a3-98c6-e194b570f4b8 +2024-09-11 09:01:30.48186 2024-09-11 09:01:30.481865 mef 1438 R rec c399605f-9dfe-4417-bb41-2226bf0e8822 +2024-09-11 09:01:30.551153 2024-09-11 09:01:30.551158 mef 1439 R rec 609d13f2-1adc-4404-8e00-038718a6d8c6 +2024-09-11 09:01:30.606236 2024-09-11 09:01:30.606241 mef 1440 R rec 077dafa5-efa1-4b06-a2ab-3d268ae524ec +2024-09-11 09:01:30.657883 2024-09-11 09:01:30.657887 mef 1441 R rec 1a947ba5-0d52-41b7-96fc-4034ce980ea7 +2024-09-11 09:01:30.713388 2024-09-11 09:01:30.713393 mef 1442 R rec e530eb35-59fd-4515-9b9e-923ab02dabd5 +2024-09-11 09:01:30.765876 2024-09-11 09:01:30.765881 mef 1443 R rec c13f087b-0939-4e48-912f-e3fe4d9f705c +2024-09-11 09:01:30.831327 2024-09-11 09:01:30.831332 mef 1444 R rec 2a432588-e8d9-4e9c-9cb4-3eaed94085c5 +2024-09-11 09:01:30.896431 2024-09-11 09:01:30.896435 mef 1445 R rec 9932bfc9-d25a-4d7a-b3c1-17ff70e201b8 +2024-09-11 09:01:30.956171 2024-09-11 09:01:30.956177 mef 1446 R rec 752c0a6d-aff3-413e-b9e4-753f65fa3844 +2024-09-11 09:01:31.016243 2024-09-11 09:01:31.016248 mef 1447 R rec 09e3cfbb-7ebc-48e9-a98c-681f03e0921a +2024-09-11 09:01:31.088971 2024-09-11 09:01:31.088976 mef 1448 R rec d8d6d1d0-5fc3-4651-909e-d2100ee44487 +2024-09-11 09:01:31.148239 2024-09-11 09:01:31.148244 mef 1449 R rec 671453cb-7494-4bef-a041-83a46812b217 +2024-09-11 09:01:31.207485 2024-09-11 09:01:31.207491 mef 1450 R rec a562c712-27d3-4dbf-b01e-2fd7cecca676 +2024-09-11 09:01:31.267704 2024-09-11 09:01:31.267709 mef 1451 R rec 04b61f1d-f27f-4036-b71a-99db081f6ecb +2024-09-11 09:01:31.328232 2024-09-11 09:01:31.328237 mef 1452 R rec 900953a8-888e-4e06-bba6-ded245a7f46a +2024-09-11 09:01:31.390284 2024-09-11 09:01:31.390288 mef 1453 R rec 43afbe21-755c-484c-b638-636c0fed51ad +2024-09-11 09:01:31.459613 2024-09-11 09:01:31.459619 mef 1454 R rec 5727c6f4-092a-498b-a4ee-be7b8643adb3 +2024-09-11 09:01:31.517724 2024-09-11 09:01:31.517729 mef 1455 R rec b7acddfc-0d9a-44f5-bd52-97020de5ba9c +2024-09-11 09:01:31.573817 2024-09-11 09:01:31.573822 mef 1456 R rec ae31ed99-8496-4b29-9cf1-fc8db73667d2 +2024-09-11 09:01:31.711364 2024-09-11 09:01:31.711369 mef 1457 R rec 90977714-619f-4629-aeb9-21b054b0b1e4 +2024-09-11 09:01:31.799611 2024-09-11 09:01:31.799616 mef 1458 R rec 2951d02a-fb9e-4f9f-ae19-fb4f27133557 +2024-09-11 09:01:31.867549 2024-09-11 09:01:31.867554 mef 1459 R rec 1c8835b4-5e2a-4eff-a5d2-44f13d396d35 +2024-09-11 09:01:31.961016 2024-09-11 09:01:31.961023 mef 1460 R rec ec99ac57-602f-427f-bcc6-f47693903a82 +2024-09-11 09:01:32.046125 2024-09-11 09:01:32.04613 mef 1461 R rec d0c13e75-f25c-4e79-b79c-33069680dee8 +2024-09-11 09:01:32.10515 2024-09-11 09:01:32.105155 mef 1462 R rec 5fbe7140-10f5-4558-87e4-b1dfc995c829 +2024-09-11 09:01:32.217376 2024-09-11 09:01:32.217381 mef 1463 R rec dfbff89c-b03d-4087-b576-e654d4a32091 +2024-09-11 09:01:32.327225 2024-09-11 09:01:32.327231 mef 1464 R rec 3eaef252-495a-4047-97f3-b06eb8246f6d +2024-09-11 09:01:32.389694 2024-09-11 09:01:32.389698 mef 1465 R rec 3ec7f6f1-d94a-4f2f-a1b6-75418ca8deda +2024-09-11 09:01:32.452181 2024-09-11 09:01:32.452185 mef 1466 R rec 5e6be034-ba71-4e9d-9b30-1a923403f77d +2024-09-11 09:01:32.520138 2024-09-11 09:01:32.520143 mef 1467 R rec 6ffba9ee-2a46-4b0f-af2b-b7e7c7114eba +2024-09-11 09:01:32.58148 2024-09-11 09:01:32.581484 mef 1468 R rec 250bf438-de0b-456b-889e-9b7b13f51ef8 +2024-09-11 09:01:32.640837 2024-09-11 09:01:32.640842 mef 1469 R rec 15793de1-d435-4ed7-b0f4-bfd9425d1c57 +2024-09-11 09:01:32.709042 2024-09-11 09:01:32.709048 mef 1470 R rec 74c57662-78b3-4a4b-bbf1-d6dcaaea227e +2024-09-11 09:01:32.76696 2024-09-11 09:01:32.766965 mef 1471 R rec a87ed9be-4d84-469c-8f63-186b47fd8ded +2024-09-11 09:01:32.827579 2024-09-11 09:01:32.827584 mef 1472 R rec 02575a1f-e6e3-4b28-a2e6-792c4ea491bb +2024-09-11 09:01:32.882501 2024-09-11 09:01:32.882506 mef 1473 R rec 2b419b8b-24eb-46c5-8d9e-d80dadb565f7 +2024-09-11 09:01:32.94309 2024-09-11 09:01:32.943094 mef 1474 R rec 5bddc816-e2c4-4845-801e-7b4ec2711caf +2024-09-11 09:01:32.999936 2024-09-11 09:01:32.999941 mef 1475 R rec 85607cca-75b4-4410-b8ed-060bba51b381 +2024-09-11 09:01:33.061056 2024-09-11 09:01:33.06106 mef 1476 R rec 904ec1f8-7d55-49d6-8465-f5cae1479586 +2024-09-11 09:01:33.117744 2024-09-11 09:01:33.11775 mef 1477 R rec 9fb4a6d8-cc50-4463-a2ce-f5cf0173aaa0 +2024-09-11 09:01:33.18013 2024-09-11 09:01:33.180134 mef 1478 R rec 84eefa28-86e3-4a8a-86f8-afa5ef2af434 +2024-09-11 09:01:33.252531 2024-09-11 09:01:33.252536 mef 1479 R rec d0e6235c-0ada-4b34-b963-fda4b2b600c6 +2024-09-11 09:01:33.327504 2024-09-11 09:01:33.327509 mef 1480 R rec 668f54e7-ebf7-4748-8167-1ebbb29b3f98 +2024-09-11 09:01:33.39785 2024-09-11 09:01:33.397855 mef 1481 R rec efcd25af-8c1c-4f26-af27-11abd0dbdccc +2024-09-11 09:01:33.45355 2024-09-11 09:01:33.453555 mef 1482 R rec 28f1673f-5e61-44b2-9ce6-fd1129c70796 +2024-09-11 09:01:33.505499 2024-09-11 09:01:33.505504 mef 1483 R rec b527ae53-d063-4134-974f-31039858c56e +2024-09-11 09:01:33.566897 2024-09-11 09:01:33.566902 mef 1484 R rec c2838080-ec14-47fc-92ce-93ff7f4c5a53 +2024-09-11 09:01:33.621166 2024-09-11 09:01:33.621171 mef 1485 R rec e2827e35-a594-435e-b074-253b0c08734f +2024-09-11 09:01:33.689805 2024-09-11 09:01:33.689809 mef 1486 R rec e0157c47-1658-4eda-bcda-2e2e7426db1c +2024-09-11 09:01:33.747095 2024-09-11 09:01:33.7471 mef 1487 R rec 77bc71b5-c90f-4b9e-9f6f-5746683af817 +2024-09-11 09:01:33.83817 2024-09-11 09:01:33.838175 mef 1488 R rec 349a98b8-512d-40c7-a4c0-e8fb306ea316 +2024-09-11 09:01:33.892111 2024-09-11 09:01:33.892115 mef 1489 R rec 931d6e3a-cc37-4e18-badc-e75348c16c1b +2024-09-11 09:01:33.953112 2024-09-11 09:01:33.953116 mef 1490 R rec 99660a89-0423-4019-87e4-8c0fe98bd6bf +2024-09-11 09:01:34.001364 2024-09-11 09:01:34.001367 mef 1491 R rec fc088464-6afa-493c-a345-42f68249e63d +2024-09-11 09:01:34.060732 2024-09-11 09:01:34.060736 mef 1492 R rec 158f837f-ad86-46e8-8826-80030c2778da +2024-09-11 09:01:34.116953 2024-09-11 09:01:34.116958 mef 1493 R rec 21bb2546-3b27-411b-99c0-0dbfa841a94d +2024-09-11 09:01:34.18476 2024-09-11 09:01:34.184765 mef 1494 R rec 7399f88d-d87e-49ac-892d-65731b05e7ec +2024-09-11 09:01:34.237911 2024-09-11 09:01:34.237915 mef 1495 R rec 96f3faca-cfa6-4317-bfbc-967efcfd9ed4 +2024-09-11 09:01:34.292626 2024-09-11 09:01:34.292631 mef 1496 R rec e0070739-5cd7-4ccc-91b4-84c1296d2ea8 +2024-09-11 09:01:34.350419 2024-09-11 09:01:34.350423 mef 1497 R rec b53edecf-9f23-420b-8ed4-8820537e38f9 +2024-09-11 09:01:34.401969 2024-09-11 09:01:34.401973 mef 1498 R rec ecf9a133-41e4-49e7-be44-2d88afd92acb +2024-09-11 09:01:34.455245 2024-09-11 09:01:34.455249 mef 1499 R rec 430402a9-1855-4391-beb7-193ec81099d8 +2024-09-11 09:01:34.512277 2024-09-11 09:01:34.512282 mef 1500 R rec 15785a9d-caad-4565-8889-8823b53dde6c +2024-09-11 09:01:34.572014 2024-09-11 09:01:34.572018 mef 1501 R rec 351e89bf-7114-4d89-9a12-160b543918e1 +2024-09-11 09:01:34.623481 2024-09-11 09:01:34.623486 mef 1502 R rec 53d58e45-538d-4fb0-82e5-5a529da79efe +2024-09-11 09:01:34.67625 2024-09-11 09:01:34.676254 mef 1503 R rec 57515e13-cf14-4748-a2fc-94b9c7a88bf2 +2024-09-11 09:01:34.730304 2024-09-11 09:01:34.73031 mef 1504 R rec 57c0c87e-3bd4-4315-a5a6-36d36bb81419 +2024-09-11 09:01:34.78542 2024-09-11 09:01:34.785425 mef 1505 R rec 3e06dd48-67bd-4bb4-84ce-d1f7a8e577b2 +2024-09-11 09:01:34.840409 2024-09-11 09:01:34.840414 mef 1506 R rec c93b7360-9aba-4058-a20f-cb789357a14f +2024-09-11 09:01:34.892971 2024-09-11 09:01:34.892977 mef 1507 R rec 763d271c-3b8a-4845-84a2-35d6289c765f +2024-09-11 09:01:34.948046 2024-09-11 09:01:34.948052 mef 1508 R rec 3ae96647-72f9-4092-b492-72ed189056ca +2024-09-11 09:01:35.0164 2024-09-11 09:01:35.016406 mef 1509 R rec f77b43b8-e753-440e-b279-9dba7b3cc4ca +2024-09-11 09:01:35.081443 2024-09-11 09:01:35.08145 mef 1510 R rec ff02881b-862a-4d3e-8efc-73da78acf61e +2024-09-11 09:01:35.146453 2024-09-11 09:01:35.146458 mef 1511 R rec 1391aa33-6c5d-44ab-b256-5c716c4c644f +2024-09-11 09:01:35.201386 2024-09-11 09:01:35.20139 mef 1512 R rec bb58ca43-f853-4ced-871c-a777f515dbeb +2024-09-11 09:01:35.294238 2024-09-11 09:01:35.294243 mef 1513 R rec b1924044-252b-4bac-adf4-6a317b8bf13c +2024-09-11 09:01:35.351228 2024-09-11 09:01:35.351233 mef 1514 R rec e44d21a8-9f11-4f42-8011-e5ea63b203e3 +2024-09-11 09:01:35.416405 2024-09-11 09:01:35.41641 mef 1515 R rec 6085ee9c-4eff-4f9e-bbda-314b3e31931b +2024-09-11 09:01:35.47784 2024-09-11 09:01:35.477845 mef 1516 R rec a8b84ca3-8ea7-40f7-85b2-31f8ccd46e5b +2024-09-11 09:01:35.540807 2024-09-11 09:01:35.540811 mef 1517 R rec 89c691ea-6e09-476a-881f-5565d9aa4b1e +2024-09-11 09:01:35.607203 2024-09-11 09:01:35.607219 mef 1518 R rec 18ac4a3e-e279-4340-b372-73c402adcd9f +2024-09-11 09:01:35.661267 2024-09-11 09:01:35.661272 mef 1519 R rec 8e9f64ce-675c-457e-b680-d0863ba8a13c +2024-09-11 09:01:35.71418 2024-09-11 09:01:35.714185 mef 1520 R rec d0a8f0f3-c59b-4aa4-b8a4-b6f9dcef30dc +2024-09-11 09:01:35.771532 2024-09-11 09:01:35.771536 mef 1521 R rec 19d88eeb-b432-4901-86a7-aae656929852 +2024-09-11 09:01:35.833585 2024-09-11 09:01:35.83359 mef 1522 R rec b459d9ec-8e9a-4a92-845a-6156ef60e34b +2024-09-11 09:01:35.892222 2024-09-11 09:01:35.892226 mef 1523 R rec 887c524d-3ced-4fca-acb7-215f8a0efd17 +2024-09-11 09:01:35.955294 2024-09-11 09:01:35.955299 mef 1524 R rec 6198f63f-9a17-4d6f-b89f-9d2084e3f251 +2024-09-11 09:01:36.008323 2024-09-11 09:01:36.008327 mef 1525 R rec 5af37224-c2ec-4783-a940-72e9e81debf5 +2024-09-11 09:01:36.066499 2024-09-11 09:01:36.066503 mef 1526 R rec 0417b1bd-4b04-4292-ab97-8eb8c7423591 +2024-09-11 09:01:36.130665 2024-09-11 09:01:36.13067 mef 1527 R rec 8f3b6cfe-5f58-4bb9-8aa5-8e27e3932eda +2024-09-11 09:01:36.197199 2024-09-11 09:01:36.197204 mef 1528 R rec a4906110-b5d2-428c-ba47-6c07d26074d6 +2024-09-11 09:01:36.253379 2024-09-11 09:01:36.253384 mef 1529 R rec dbbdf4ec-71af-46ca-8eea-6af3d0b8ca9f +2024-09-11 09:01:36.315244 2024-09-11 09:01:36.315248 mef 1530 R rec feb22117-dbf4-410f-8121-7cadd3939178 +2024-09-11 09:01:36.366462 2024-09-11 09:01:36.366466 mef 1531 R rec 70175bca-55ee-4c0c-a72a-d919e76f72c8 +2024-09-11 09:01:36.42395 2024-09-11 09:01:36.423956 mef 1532 R rec 8ca9f435-3626-4387-9b24-e02e4f385061 +2024-09-11 09:01:36.475612 2024-09-11 09:01:36.475617 mef 1533 R rec 809f8206-8e30-43a6-92f0-447a3f41160c +2024-09-11 09:01:36.527743 2024-09-11 09:01:36.527748 mef 1534 R rec 99aafc6e-4e38-4fa1-a17d-d17b12e8e24a +2024-09-11 09:01:36.594478 2024-09-11 09:01:36.594483 mef 1535 R rec 86c172b3-066a-4662-956a-3c45dc142d63 +2024-09-11 09:01:36.669609 2024-09-11 09:01:36.669614 mef 1536 R rec e7b712a2-dc82-4a79-a50f-3f122aa96575 +2024-09-11 09:01:36.741321 2024-09-11 09:01:36.741326 mef 1537 R rec 3d8cbc89-b333-459a-b6a1-7da5f828e3ca +2024-09-11 09:01:36.805175 2024-09-11 09:01:36.805188 mef 1538 R rec dfa18bd2-9303-4513-834b-4374d08b32d4 +2024-09-11 09:01:36.862028 2024-09-11 09:01:36.862033 mef 1539 R rec 521f40b2-148d-42df-a41f-ea79dd40aa48 +2024-09-11 09:01:36.912726 2024-09-11 09:01:36.912732 mef 1540 R rec e96e88a8-212d-4c88-b5f0-f344d5a7a608 +2024-09-11 09:01:36.969172 2024-09-11 09:01:36.969177 mef 1541 R rec aa3b0aca-76c6-4f69-ad3e-1e017f191838 +2024-09-11 09:01:37.026206 2024-09-11 09:01:37.026211 mef 1542 R rec cdb2c90f-e5e0-4ed9-b4cd-4bf25d5528ee +2024-09-11 09:01:37.081232 2024-09-11 09:01:37.081236 mef 1543 R rec a2ab4172-9f45-4781-8160-a41fb8fb4903 +2024-09-11 09:01:37.135455 2024-09-11 09:01:37.13546 mef 1544 R rec 77325e2c-148a-40f2-bd9c-b92905962546 +2024-09-11 09:01:37.18854 2024-09-11 09:01:37.188545 mef 1545 R rec 1991c966-31ae-428b-a289-9cc55c1255e5 +2024-09-11 09:01:37.243771 2024-09-11 09:01:37.243776 mef 1546 R rec 4c378d03-aa52-48f1-bd2c-13f2b3fd5764 +2024-09-11 09:01:37.294153 2024-09-11 09:01:37.294158 mef 1547 R rec ced58c40-0c00-4dda-a03b-5967824d4c86 +2024-09-11 09:01:37.350909 2024-09-11 09:01:37.350913 mef 1548 R rec 277aac5f-41cb-43a1-8fcd-3921a1626e14 +2024-09-11 09:01:37.401507 2024-09-11 09:01:37.401512 mef 1549 R rec 9eed7cd0-d1fe-4180-bce8-5ca6c5396433 +2024-09-11 09:01:37.453496 2024-09-11 09:01:37.453501 mef 1550 R rec 42aa2490-0e5b-4279-8107-918109ef2e95 +2024-09-11 09:01:37.508365 2024-09-11 09:01:37.508371 mef 1551 R rec a3df575f-b784-48a3-b365-bcf573677017 +2024-09-11 09:01:37.568031 2024-09-11 09:01:37.568035 mef 1552 R rec 90f70662-f4b1-4f1a-abe4-c46ec8d40cc1 +2024-09-11 09:01:37.621888 2024-09-11 09:01:37.621892 mef 1553 R rec 42734ab9-3973-4ad8-9886-5f7629e40b8a +2024-09-11 09:01:37.67479 2024-09-11 09:01:37.674795 mef 1554 R rec 30b6cf00-6962-4a2f-9e9f-222e97043570 +2024-09-11 09:01:37.730039 2024-09-11 09:01:37.730044 mef 1555 R rec d245e859-5ea4-41d8-95d0-212ffc89065d +2024-09-11 09:01:37.788163 2024-09-11 09:01:37.788168 mef 1556 R rec 6fd49f19-a513-41ce-80d3-85baefec255e +2024-09-11 09:01:37.861386 2024-09-11 09:01:37.861391 mef 1557 R rec 9faa6b98-2c53-4a17-b64f-b059fc3c7bdd +2024-09-11 09:01:37.940761 2024-09-11 09:01:37.940766 mef 1558 R rec c1e367f3-7932-49cc-b1ce-f09cc7406189 +2024-09-11 09:01:37.998222 2024-09-11 09:01:37.998226 mef 1559 R rec ef6921b1-0619-4ea1-b449-b5ef2dee8329 +2024-09-11 09:01:38.051816 2024-09-11 09:01:38.051821 mef 1560 R rec 67c354a4-132a-4f41-bc9b-8b73d3b94648 +2024-09-11 09:01:38.115919 2024-09-11 09:01:38.115924 mef 1561 R rec a529e8f5-d272-42ea-9df2-20e8b9468f76 +2024-09-11 09:01:38.166869 2024-09-11 09:01:38.166874 mef 1562 R rec cfe9283d-1d5c-4f57-83be-c19753b6205c +2024-09-11 09:01:38.21863 2024-09-11 09:01:38.218635 mef 1563 R rec 6911e546-72ad-407f-b0f1-aef98bc02e7e +2024-09-11 09:01:38.269876 2024-09-11 09:01:38.269879 mef 1564 R rec 933fd528-81ef-4ca6-8f09-98e0c4d2a618 +2024-09-11 09:01:38.324782 2024-09-11 09:01:38.324786 mef 1565 R rec 9648be34-fa24-4861-a42e-90f2b9aef5bc +2024-09-11 09:01:38.394286 2024-09-11 09:01:38.394291 mef 1566 R rec a2472222-9ef9-4ee2-be00-77a844f3e046 +2024-09-11 09:01:38.447893 2024-09-11 09:01:38.447898 mef 1567 R rec 6d783204-cff4-4200-ba1f-da8b6915a996 +2024-09-11 09:01:38.502544 2024-09-11 09:01:38.502549 mef 1568 R rec 3b9b44bf-9ad0-4af5-942e-39652e82a57d +2024-09-11 09:01:38.571297 2024-09-11 09:01:38.571301 mef 1569 R rec d522518c-1223-40ac-8a75-1464c7df7e7a +2024-09-11 09:01:38.62384 2024-09-11 09:01:38.623845 mef 1570 R rec 89ba6800-3dd3-410f-bf1f-3f27e850c2d3 +2024-09-11 09:01:38.672201 2024-09-11 09:01:38.672205 mef 1571 R rec f041ca5e-7ebe-44c4-9d87-915288fde6b8 +2024-09-11 09:01:38.724481 2024-09-11 09:01:38.724487 mef 1572 R rec a39c4544-b65d-4a5d-a6d5-6f8181d17d04 +2024-09-11 09:01:38.782797 2024-09-11 09:01:38.782801 mef 1573 R rec e746543e-ed29-43f4-9bde-11467f80a8a5 +2024-09-11 09:01:38.838105 2024-09-11 09:01:38.83811 mef 1574 R rec b59be706-ccda-4818-9a4e-27600cc09473 +2024-09-11 09:01:38.915888 2024-09-11 09:01:38.915892 mef 1575 R rec f8fae83d-7db9-4a12-b0d1-bcf69f9d7e5d +2024-09-11 09:01:38.965666 2024-09-11 09:01:38.965671 mef 1576 R rec 6b2a5249-63ba-4d3b-9ae8-f1ed9d93d1d0 +2024-09-11 09:01:39.020538 2024-09-11 09:01:39.020542 mef 1577 R rec 7dc4547c-7cf0-40b2-8ae5-4590a46e94b2 +2024-09-11 09:01:39.074161 2024-09-11 09:01:39.074165 mef 1578 R rec 6ca25345-9723-4fc1-a291-60445fa9cacd +2024-09-11 09:01:39.127366 2024-09-11 09:01:39.12737 mef 1579 R rec fccdcc84-635d-4409-b959-4b033e817a37 +2024-09-11 09:01:39.194775 2024-09-11 09:01:39.19478 mef 1580 R rec dd7bd04b-e6bc-4ca3-b8d2-d1f555cb9c73 +2024-09-11 09:01:39.266659 2024-09-11 09:01:39.266663 mef 1581 R rec b4ac6d5f-c2ed-4caf-91b8-48e75b96860e +2024-09-11 09:01:39.320576 2024-09-11 09:01:39.32058 mef 1582 R rec 5b2e4a9d-6c89-4b76-ab53-266f08e35d66 +2024-09-11 09:01:39.387327 2024-09-11 09:01:39.387332 mef 1583 R rec 13ca8087-295d-47f4-989e-03c47813d2da +2024-09-11 09:01:39.445405 2024-09-11 09:01:39.445409 mef 1584 R rec bab544a7-7761-4538-9e26-3b91dfcadba2 +2024-09-11 09:01:39.505041 2024-09-11 09:01:39.505046 mef 1585 R rec f67a383f-131a-46fb-8011-d870c7972c7a +2024-09-11 09:01:39.561131 2024-09-11 09:01:39.561136 mef 1586 R rec 8151b1c7-f327-4d3e-ac8b-3a3b26fb18e7 +2024-09-11 09:01:39.611879 2024-09-11 09:01:39.611884 mef 1587 R rec 10c507c8-ece3-4677-a1a4-5dacd1301b45 +2024-09-11 09:01:39.676519 2024-09-11 09:01:39.676524 mef 1588 R rec b1d39d7f-58e2-4a6c-bfe1-0af9280d8422 +2024-09-11 09:01:39.727915 2024-09-11 09:01:39.72792 mef 1589 R rec 4e8a1225-7ef4-4cd4-bb98-259bd8ba7161 +2024-09-11 09:01:39.783052 2024-09-11 09:01:39.783056 mef 1590 R rec 9bc4239b-8654-446d-9a8b-f59454c4878a +2024-09-11 09:01:39.838582 2024-09-11 09:01:39.838586 mef 1591 R rec 62fd8a86-a3be-4bd0-b47f-d56592d23976 +2024-09-11 09:01:39.9038 2024-09-11 09:01:39.903805 mef 1592 R rec be710c3a-e12a-4846-812c-3f1e25d7e3b5 +2024-09-11 09:01:39.956008 2024-09-11 09:01:39.956012 mef 1593 R rec f1be4124-d24b-4555-9aff-9dbde9b2aac1 +2024-09-11 09:01:40.010139 2024-09-11 09:01:40.010144 mef 1594 R rec 2dafc1e0-3108-44c6-a4d2-7045dadddc19 +2024-09-11 09:01:40.066549 2024-09-11 09:01:40.066554 mef 1595 R rec a7e597a9-261d-4e16-b00b-0a659bc93070 +2024-09-11 09:01:40.122654 2024-09-11 09:01:40.122659 mef 1596 R rec feec1112-2c3f-41df-8d69-f9da7bb3dbb8 +2024-09-11 09:01:40.181222 2024-09-11 09:01:40.181226 mef 1597 R rec a11a3333-4d27-4b0c-bb88-aca45751d5ba +2024-09-11 09:01:40.244503 2024-09-11 09:01:40.244509 mef 1598 R rec 1ae29f5d-67c8-4fdd-8423-f651cd306d3e +2024-09-11 09:01:40.311244 2024-09-11 09:01:40.311249 mef 1599 R rec 7804d781-6fb3-44d2-bb03-406bf321a0ed +2024-09-11 09:01:40.363218 2024-09-11 09:01:40.363222 mef 1600 R rec 4f3bb286-d477-4331-b735-31135e49b1b2 +2024-09-11 09:01:40.41752 2024-09-11 09:01:40.417524 mef 1601 R rec afbf0538-5f1d-4779-8592-4c86dfddc727 +2024-09-11 09:01:40.508888 2024-09-11 09:01:40.508892 mef 1602 R rec f852fb25-c72f-4413-a3b1-9fb45dfe48bc +2024-09-11 09:01:40.565436 2024-09-11 09:01:40.56544 mef 1603 R rec a4217f12-0446-4dce-91f7-70da46336e54 +2024-09-11 09:01:40.630048 2024-09-11 09:01:40.630052 mef 1604 R rec d182fae8-24a1-4007-87dc-b7a3b30fc947 +2024-09-11 09:01:40.685682 2024-09-11 09:01:40.685686 mef 1605 R rec 687150e1-876c-45bc-8e75-e29c7d5d6bcc +2024-09-11 09:01:40.742368 2024-09-11 09:01:40.742373 mef 1606 R rec bea5c0ba-9907-4dd9-be5e-6c67ab913b02 +2024-09-11 09:01:40.801843 2024-09-11 09:01:40.801848 mef 1607 R rec f503df0e-f5c2-4f38-8943-2f351d412807 +2024-09-11 09:01:40.868698 2024-09-11 09:01:40.868703 mef 1608 R rec a8f25163-a837-41a1-973c-78b67a7a2042 +2024-09-11 09:01:40.927095 2024-09-11 09:01:40.9271 mef 1609 R rec f9ad0d59-f238-473e-b031-ae4cd1702dff +2024-09-11 09:01:40.983865 2024-09-11 09:01:40.98387 mef 1610 R rec e21d8afc-7bea-49c4-ad23-5c2d18b26952 +2024-09-11 09:01:41.03651 2024-09-11 09:01:41.036514 mef 1611 R rec ffe60f68-5772-4f72-be83-c58172bb99d1 +2024-09-11 09:01:41.092702 2024-09-11 09:01:41.092707 mef 1612 R rec 238f8346-620e-4341-997b-03ea62a5f40e +2024-09-11 09:01:41.161066 2024-09-11 09:01:41.161071 mef 1613 R rec 0f3c6488-f5cf-48c9-acde-a08c55db64b1 +2024-09-11 09:01:41.216833 2024-09-11 09:01:41.216837 mef 1614 R rec 6625a8d0-43f7-482a-83fe-03cbd9783a62 +2024-09-11 09:01:41.271407 2024-09-11 09:01:41.271412 mef 1615 R rec 33627c70-3f6d-4cfd-89d8-110d94453593 +2024-09-11 09:01:41.326453 2024-09-11 09:01:41.326458 mef 1616 R rec 33d4e614-6cd1-4808-b8a0-cbbebc045240 +2024-09-11 09:01:41.380732 2024-09-11 09:01:41.380737 mef 1617 R rec b9a46dae-4e4b-4cb7-a045-eb99e48ec776 +2024-09-11 09:01:41.452103 2024-09-11 09:01:41.452107 mef 1618 R rec 5cb0d6bb-112f-4480-b3a1-4bd5708accf4 +2024-09-11 09:01:41.503001 2024-09-11 09:01:41.503006 mef 1619 R rec d4ff2c71-6e8b-4374-a370-0c97cdccad61 +2024-09-11 09:01:41.555705 2024-09-11 09:01:41.55571 mef 1620 R rec 7cdb139c-8a23-407f-ae46-156f0196acba +2024-09-11 09:01:41.618789 2024-09-11 09:01:41.618794 mef 1621 R rec cf2786ef-b029-48ec-8a80-df6ffbe11654 +2024-09-11 09:01:41.672862 2024-09-11 09:01:41.672866 mef 1622 R rec 7e415662-be9a-4352-b539-6eb40163e85a +2024-09-11 09:01:41.726095 2024-09-11 09:01:41.7261 mef 1623 R rec d594e061-9530-4235-acc7-98a5d094db52 +2024-09-11 09:01:41.799283 2024-09-11 09:01:41.799287 mef 1624 R rec 020752ed-cc5d-4760-adde-e51f851ce6b6 +2024-09-11 09:01:41.887683 2024-09-11 09:01:41.887687 mef 1625 R rec 6eb78e9a-2117-4591-a403-f927fda7706b +2024-09-11 09:01:41.940893 2024-09-11 09:01:41.940898 mef 1626 R rec ee1fc9b5-499e-40bf-9040-af3d626393d8 +2024-09-11 09:01:41.995465 2024-09-11 09:01:41.995471 mef 1627 R rec 9b828e15-eb15-4f65-a95f-7dd635f8dd88 +2024-09-11 09:01:42.053499 2024-09-11 09:01:42.053504 mef 1628 R rec cf568abd-8f66-41e1-86a4-bee5a9a36200 +2024-09-11 09:01:42.109033 2024-09-11 09:01:42.109039 mef 1629 R rec e76cf564-acd1-4ee8-847c-da934687fb33 +2024-09-11 09:01:42.176697 2024-09-11 09:01:42.176703 mef 1630 R rec 5168cf1f-46dc-4e10-8fd4-b2bba4ee51c4 +2024-09-11 09:01:42.233951 2024-09-11 09:01:42.233956 mef 1631 R rec f22cce41-cb79-4b30-93ff-b3547004fa47 +2024-09-11 09:01:42.285812 2024-09-11 09:01:42.285817 mef 1632 R rec 939af3b8-45b0-4780-acdc-ecfb657fce47 +2024-09-11 09:01:42.339365 2024-09-11 09:01:42.339369 mef 1633 R rec c4b2b9d7-9e87-4cf6-90d3-e5d7de574485 +2024-09-11 09:01:42.397193 2024-09-11 09:01:42.397198 mef 1634 R rec 650eb16f-9fb7-4356-9191-77201a0496fa +2024-09-11 09:01:42.448041 2024-09-11 09:01:42.448045 mef 1635 R rec 0a04b985-5661-49ef-9143-75ee87c77d28 +2024-09-11 09:01:42.4999 2024-09-11 09:01:42.499905 mef 1636 R rec 9ff198da-a956-4273-9484-f62c521641d4 +2024-09-11 09:01:42.55468 2024-09-11 09:01:42.554684 mef 1637 R rec 7e28f8c3-792d-4e7c-8148-55eb6966d11e +2024-09-11 09:01:42.604246 2024-09-11 09:01:42.60425 mef 1638 R rec 5a0c9b41-3654-451c-907a-bcb3c8adad89 +2024-09-11 09:01:42.652851 2024-09-11 09:01:42.652855 mef 1639 R rec 5587e37e-1ae2-49b2-a580-08f609e98c06 +2024-09-11 09:01:42.703299 2024-09-11 09:01:42.703302 mef 1640 R rec 7195283a-3492-4759-b6cb-5c71988236d4 +2024-09-11 09:01:42.753907 2024-09-11 09:01:42.753911 mef 1641 R rec e760827d-74d8-474a-9a1a-b1cc2f77aa7f +2024-09-11 09:01:42.804802 2024-09-11 09:01:42.804806 mef 1642 R rec f42a8a4d-a526-43de-b351-65ff2d9cf20a +2024-09-11 09:01:42.866206 2024-09-11 09:01:42.86621 mef 1643 R rec 5ab980dc-740a-4105-a98f-60eb7a106a14 +2024-09-11 09:01:42.919452 2024-09-11 09:01:42.919457 mef 1644 R rec b28ed3e1-3ba6-4508-a94a-18a1ed60f740 +2024-09-11 09:01:42.975054 2024-09-11 09:01:42.97506 mef 1645 R rec 03b5e144-3250-4eaf-abbd-1571291a32c6 +2024-09-11 09:01:43.035631 2024-09-11 09:01:43.035635 mef 1646 R rec 3baac083-5428-4da4-90b1-329d92da35cc +2024-09-11 09:01:43.10069 2024-09-11 09:01:43.100695 mef 1647 R rec 44269489-9f09-4de4-a6ac-095fb9a0a3a5 +2024-09-11 09:01:43.182516 2024-09-11 09:01:43.182521 mef 1648 R rec 41e7b6d5-0962-44ba-a8a7-a97d826ef975 +2024-09-11 09:01:43.248416 2024-09-11 09:01:43.248421 mef 1649 R rec 3506f260-2196-4281-b7f2-ed325c8da3e7 +2024-09-11 09:01:43.31188 2024-09-11 09:01:43.311884 mef 1650 R rec 8802e6c8-8df7-4ced-8159-4397ec8fd5aa +2024-09-11 09:01:43.375365 2024-09-11 09:01:43.375371 mef 1651 R rec af427406-c82e-47b1-930e-b26c86accd30 +2024-09-11 09:01:43.426963 2024-09-11 09:01:43.426968 mef 1652 R rec a8e9bec7-3668-43f0-a631-2f121afddd6a +2024-09-11 09:01:43.482861 2024-09-11 09:01:43.482866 mef 1653 R rec cb46162c-3c59-4041-8526-70f9b01191d4 +2024-09-11 09:01:43.537701 2024-09-11 09:01:43.537706 mef 1654 R rec 5ddcb905-55f4-4d22-bb4e-208267d3a145 +2024-09-11 09:01:43.610693 2024-09-11 09:01:43.610697 mef 1655 R rec 69063a4f-e31e-4ef3-82f2-d2680d5c8482 +2024-09-11 09:01:43.6631 2024-09-11 09:01:43.663105 mef 1656 R rec dddd2f0f-8410-48c9-b54a-0163a854eb80 +2024-09-11 09:01:43.71739 2024-09-11 09:01:43.717395 mef 1657 R rec 2ee3c6fc-7b1f-4825-b628-63a5756e148d +2024-09-11 09:01:43.772263 2024-09-11 09:01:43.772268 mef 1658 R rec 5a405e30-fb53-4e37-9341-303570f35fd5 +2024-09-11 09:01:43.830249 2024-09-11 09:01:43.830253 mef 1659 R rec b567064c-122c-47d7-8533-36cd172aa3c9 +2024-09-11 09:01:43.900334 2024-09-11 09:01:43.900338 mef 1660 R rec 5d9453e5-8bff-409b-9895-564b5b62c6e7 +2024-09-11 09:01:43.95269 2024-09-11 09:01:43.952694 mef 1661 R rec db972e30-0747-4421-8094-ac001a06be91 +2024-09-11 09:01:44.004221 2024-09-11 09:01:44.004225 mef 1662 R rec 301adade-e07b-4383-bd0e-9cf446dafb91 +2024-09-11 09:01:44.060779 2024-09-11 09:01:44.060784 mef 1663 R rec 4ffdcb5b-13f8-4b42-9bb5-dc0efd1a3edc +2024-09-11 09:01:44.123525 2024-09-11 09:01:44.123529 mef 1664 R rec 20cc1e05-ef69-40b8-b0dc-9f747f0d8301 +2024-09-11 09:01:44.173609 2024-09-11 09:01:44.173613 mef 1665 R rec 92ae1987-2918-4d13-a5c6-af8a83ed622a +2024-09-11 09:01:44.228312 2024-09-11 09:01:44.228316 mef 1666 R rec 00df9efc-095c-4b5d-a656-4177fcc4deb9 +2024-09-11 09:01:44.287123 2024-09-11 09:01:44.287128 mef 1667 R rec 61917f29-7b9d-4ae3-8159-30c94c827741 +2024-09-11 09:01:44.347527 2024-09-11 09:01:44.347532 mef 1668 R rec adb468cc-1b81-43b5-a39b-83067621288e +2024-09-11 09:01:44.433973 2024-09-11 09:01:44.433978 mef 1669 R rec 0153cac6-9a38-47c5-8bed-e7f7d1cc370d +2024-09-11 09:01:44.494339 2024-09-11 09:01:44.494344 mef 1670 R rec 32be23b3-8088-450d-bc2f-4c186ce0e5e4 +2024-09-11 09:01:44.549241 2024-09-11 09:01:44.549246 mef 1671 R rec 586e0205-5213-4964-954c-4a7f5f9537c6 +2024-09-11 09:01:44.602249 2024-09-11 09:01:44.602254 mef 1672 R rec e8403d6b-fb28-4f95-902e-d904df1cc6d1 +2024-09-11 09:01:44.656115 2024-09-11 09:01:44.65612 mef 1673 R rec fd853bfc-9c77-4a85-939f-c999c1c5de19 +2024-09-11 09:01:44.719741 2024-09-11 09:01:44.719746 mef 1674 R rec 17a61f81-0f42-4c59-bdf1-45b5e181eae7 +2024-09-11 09:01:44.770865 2024-09-11 09:01:44.770869 mef 1675 R rec 7c683cfe-5f64-48d1-b6dc-aa2122eb27c1 +2024-09-11 09:01:44.821908 2024-09-11 09:01:44.821913 mef 1676 R rec 61895e58-df31-4549-a221-653dc45e4da3 +2024-09-11 09:01:44.874348 2024-09-11 09:01:44.874352 mef 1677 R rec 93686319-d785-4245-85d2-1832d9b11743 +2024-09-11 09:01:44.928862 2024-09-11 09:01:44.928866 mef 1678 R rec 97a3ba42-de70-481e-aa33-5174e21a28b6 +2024-09-11 09:01:44.999921 2024-09-11 09:01:44.999925 mef 1679 R rec d7832e0a-177b-4ac4-b6d7-b58087274061 +2024-09-11 09:01:45.057095 2024-09-11 09:01:45.057099 mef 1680 R rec 98c50e04-e8f5-4c76-86ad-b200d3582343 +2024-09-11 09:01:45.10836 2024-09-11 09:01:45.108365 mef 1681 R rec 0f1332b7-d6ba-474e-aeed-43b4e82d934e +2024-09-11 09:01:45.155821 2024-09-11 09:01:45.155825 mef 1682 R rec 39bad52a-e722-45c4-b69a-e4d261ac7698 +2024-09-11 09:01:45.212401 2024-09-11 09:01:45.212406 mef 1683 R rec fa35c8e9-d711-4162-ae1d-f6cadffc49d1 +2024-09-11 09:01:45.268359 2024-09-11 09:01:45.268363 mef 1684 R rec 48407570-dcc8-413c-86c8-df078cb3e5e9 +2024-09-11 09:01:45.322712 2024-09-11 09:01:45.322717 mef 1685 R rec 5dce79a6-8d7e-4139-8af2-5c96b879f0f3 +2024-09-11 09:01:45.3772 2024-09-11 09:01:45.377205 mef 1686 R rec 5cbb795b-2428-4b4e-9a24-c7c69e474ce8 +2024-09-11 09:01:45.428883 2024-09-11 09:01:45.428888 mef 1687 R rec 70207e66-b2d5-437d-8852-b898fc0d8453 +2024-09-11 09:01:45.48262 2024-09-11 09:01:45.482625 mef 1688 R rec 71985e42-26e2-4acd-9c58-3850bd77055f +2024-09-11 09:01:45.540772 2024-09-11 09:01:45.540777 mef 1689 R rec 476978fc-d962-4e43-be4b-a52ec2afec29 +2024-09-11 09:01:45.608221 2024-09-11 09:01:45.608226 mef 1690 R rec c739dc93-72f3-4401-b18a-758023643e87 +2024-09-11 09:01:45.66092 2024-09-11 09:01:45.660924 mef 1691 R rec 5c0dffb3-29fd-4a25-8eb2-ae4f7090836e +2024-09-11 09:01:45.735804 2024-09-11 09:01:45.735809 mef 1692 R rec 1adc9497-9e7d-4015-82a7-92779a17d13f +2024-09-11 09:01:45.802462 2024-09-11 09:01:45.802466 mef 1693 R rec bfc15d19-1af2-4fb1-b4f0-17078ca5e812 +2024-09-11 09:01:45.86443 2024-09-11 09:01:45.864435 mef 1694 R rec 9ab058c3-5962-4691-b2ae-2305246cdc49 +2024-09-11 09:01:45.914813 2024-09-11 09:01:45.914818 mef 1695 R rec f39b965f-c2a1-4c86-8a85-072a9efabe2c +2024-09-11 09:01:45.970806 2024-09-11 09:01:45.970811 mef 1696 R rec 6e55e760-c10d-4224-a54e-eda41e426c2e +2024-09-11 09:01:46.026716 2024-09-11 09:01:46.026721 mef 1697 R rec db2cc125-564c-4ccd-9e60-74a6309d3859 +2024-09-11 09:01:46.093681 2024-09-11 09:01:46.093687 mef 1698 R rec 6657f538-7e2e-421d-b694-4201e61b5587 +2024-09-11 09:01:46.148177 2024-09-11 09:01:46.148181 mef 1699 R rec 9244e439-baba-4f86-a21b-fd2f9359f05b +2024-09-11 09:01:46.224206 2024-09-11 09:01:46.224211 mef 1700 R rec cd0be4ab-bcc3-4f2c-9224-adff82e766a7 +2024-09-11 09:01:46.283573 2024-09-11 09:01:46.283577 mef 1701 R rec 5801f439-0c50-4af4-b17b-8b2fd43faf28 +2024-09-11 09:01:46.344155 2024-09-11 09:01:46.344161 mef 1702 R rec fbcced4c-a091-4faf-aab5-3389401312a4 +2024-09-11 09:01:46.459007 2024-09-11 09:01:46.459012 mef 1703 R rec 4e1bd5d0-9f6d-4413-98d0-0e80633e0f6b +2024-09-11 09:01:46.513056 2024-09-11 09:01:46.513061 mef 1704 R rec 4d949120-f514-411d-8183-074c1cfef3d5 +2024-09-11 09:01:46.573878 2024-09-11 09:01:46.573882 mef 1705 R rec 9ed7989e-505b-4a34-9b4b-18174b1e1ffb +2024-09-11 09:01:46.633267 2024-09-11 09:01:46.633271 mef 1706 R rec f8582827-35e8-4f55-bf79-b3bb6a91278f +2024-09-11 09:01:46.686204 2024-09-11 09:01:46.686208 mef 1707 R rec 986c7e2c-5b6c-48ea-987a-26382ed6dd8d +2024-09-11 09:01:46.735651 2024-09-11 09:01:46.735656 mef 1708 R rec e7a20932-a1af-4272-85d9-86e49b233b30 +2024-09-11 09:01:46.791397 2024-09-11 09:01:46.791402 mef 1709 R rec 19c1e6cb-10dc-43b0-9aeb-d4899a62a791 +2024-09-11 09:01:46.845255 2024-09-11 09:01:46.84526 mef 1710 R rec 8be883c0-b308-4feb-bfa8-1ccacdeed4c9 +2024-09-11 09:01:46.898243 2024-09-11 09:01:46.898248 mef 1711 R rec 31ffb531-9464-4f04-840f-b704d715c080 +2024-09-11 09:01:46.951314 2024-09-11 09:01:46.951318 mef 1712 R rec 2c3f24db-22dd-413a-9bcf-86fe8750b139 +2024-09-11 09:01:47.003091 2024-09-11 09:01:47.003095 mef 1713 R rec ad872adc-5bbb-4520-b15e-90009db58000 +2024-09-11 09:01:47.05548 2024-09-11 09:01:47.055484 mef 1714 R rec 2d3c75fe-deac-48f4-ba40-46cbff5e12e6 +2024-09-11 09:01:47.111756 2024-09-11 09:01:47.111761 mef 1715 R rec 290f3c18-3e32-4700-8591-5587606b7ac9 +2024-09-11 09:01:47.187817 2024-09-11 09:01:47.187821 mef 1716 R rec d352ef26-a252-4a87-b732-2b0036eaf847 +2024-09-11 09:01:47.243288 2024-09-11 09:01:47.243293 mef 1717 R rec 35c8450c-b6d0-4d29-bf0c-d1b49fc75831 +2024-09-11 09:01:47.308054 2024-09-11 09:01:47.308059 mef 1718 R rec fe870ee4-4413-4ecd-9879-14524953b79e +2024-09-11 09:01:47.364457 2024-09-11 09:01:47.364461 mef 1719 R rec c83fc92b-4506-4dc7-b0be-8aea1fdaefd6 +2024-09-11 09:01:47.415697 2024-09-11 09:01:47.415701 mef 1720 R rec d8d0f13b-abdc-4412-a3c6-482a2e5c488d +2024-09-11 09:01:47.468951 2024-09-11 09:01:47.468955 mef 1721 R rec fe4b0466-4209-4943-aa2a-11e3efc79ff6 +2024-09-11 09:01:47.530668 2024-09-11 09:01:47.530673 mef 1722 R rec 961af334-790b-429f-bea7-6a2dc7e5e40c +2024-09-11 09:01:47.61583 2024-09-11 09:01:47.615835 mef 1723 R rec c27f1f1c-8a7f-480b-9b70-24463f05a742 +2024-09-11 09:01:47.800729 2024-09-11 09:01:47.800734 mef 1724 R rec 8e9757a5-db2e-40b9-ba72-67f3f5d6df52 +2024-09-11 09:01:47.861618 2024-09-11 09:01:47.861622 mef 1725 R rec f79f3891-07dc-4155-bcfc-2e1a8dafaabd +2024-09-11 09:01:47.92538 2024-09-11 09:01:47.925385 mef 1726 R rec ccdc504e-cc9c-4cb7-9106-433b70dc1da4 +2024-09-11 09:01:47.984151 2024-09-11 09:01:47.984155 mef 1727 R rec 8a6ef2ad-c118-4c52-a05d-f674a2173814 +2024-09-11 09:01:48.038306 2024-09-11 09:01:48.038311 mef 1728 R rec 53d69e05-67d8-4376-aaeb-f165c590fc85 +2024-09-11 09:01:48.089678 2024-09-11 09:01:48.089682 mef 1729 R rec ab913b64-46fe-4aa7-8e51-ceb6fb5e5378 +2024-09-11 09:01:48.144758 2024-09-11 09:01:48.144763 mef 1730 R rec 081664f1-807d-47c1-a8c8-a391d1e82676 +2024-09-11 09:01:48.198285 2024-09-11 09:01:48.19829 mef 1731 R rec b1a24341-f4be-438b-a7b6-a2138f0e2997 +2024-09-11 09:01:48.25347 2024-09-11 09:01:48.253474 mef 1732 R rec f0622c37-8efe-42b8-8e3f-e281d11fbd0b +2024-09-11 09:01:48.311325 2024-09-11 09:01:48.311329 mef 1733 R rec 80c22b15-f08e-4186-9254-49dbed5ae4c2 +2024-09-11 09:01:48.364547 2024-09-11 09:01:48.364552 mef 1734 R rec 2708eee1-2a8e-4c47-b81b-80de752df720 +2024-09-11 09:01:48.417932 2024-09-11 09:01:48.417937 mef 1735 R rec cf8bca8e-5fc8-4b03-81dd-d4660acbbd11 +2024-09-11 09:01:48.473 2024-09-11 09:01:48.473005 mef 1736 R rec 9a0b04a6-2a3b-44a2-bf03-fe2f61c756d1 +2024-09-11 09:01:48.525299 2024-09-11 09:01:48.525304 mef 1737 R rec a438ad15-4bb4-4987-83c1-18e8d3e70a6a +2024-09-11 09:01:48.579201 2024-09-11 09:01:48.579206 mef 1738 R rec d6835513-2561-49dd-a563-dc5c604dfa63 +2024-09-11 09:01:48.635592 2024-09-11 09:01:48.635597 mef 1739 R rec 8c04afa6-bfa1-42d5-9791-94a52d3ca821 +2024-09-11 09:01:48.699188 2024-09-11 09:01:48.699193 mef 1740 R rec 261a5623-aaaf-4896-8f68-ab814da1fb79 +2024-09-11 09:01:48.759409 2024-09-11 09:01:48.759414 mef 1741 R rec a091854d-c663-473e-b02c-a91353c51366 +2024-09-11 09:01:48.816582 2024-09-11 09:01:48.816586 mef 1742 R rec ce602398-562f-4dea-b334-0bc34b2a8f6d +2024-09-11 09:01:48.867558 2024-09-11 09:01:48.867562 mef 1743 R rec 35a0ba6a-6307-484c-a500-e9a71d8fc8c2 +2024-09-11 09:01:48.924859 2024-09-11 09:01:48.924864 mef 1744 R rec d51aedd1-744d-45db-8b59-d54a558dd5e4 +2024-09-11 09:01:48.981367 2024-09-11 09:01:48.981372 mef 1745 R rec 55bdb853-40cf-4290-9386-9ecf6dcbd5a4 +2024-09-11 09:01:49.037703 2024-09-11 09:01:49.037708 mef 1746 R rec 63a18746-7d6a-4994-b6cb-c6d0813fd0ee +2024-09-11 09:01:49.111708 2024-09-11 09:01:49.111713 mef 1747 R rec 666978b5-6b9d-48bf-b147-7b1b1dba414f +2024-09-11 09:01:49.164742 2024-09-11 09:01:49.164747 mef 1748 R rec d87004e9-23d1-4aec-b709-798ba90df782 +2024-09-11 09:01:49.222603 2024-09-11 09:01:49.222607 mef 1749 R rec f3c553d7-079d-44a5-b0f5-4d9423c78207 +2024-09-11 09:01:49.290692 2024-09-11 09:01:49.290696 mef 1750 R rec c33c1988-7eee-494e-a4f9-8028b9987108 +2024-09-11 09:01:49.344667 2024-09-11 09:01:49.344671 mef 1751 R rec 3ee1733d-3d42-4e91-99e1-3151de8f9f8f +2024-09-11 09:01:49.408659 2024-09-11 09:01:49.408664 mef 1752 R rec fa4c6f8d-7741-4a30-a7bb-9b214cff1736 +2024-09-11 09:01:49.459501 2024-09-11 09:01:49.459504 mef 1753 R rec 1ad93b85-4f6b-40dd-8940-e8024fbdf63c +2024-09-11 09:01:49.512338 2024-09-11 09:01:49.512343 mef 1754 R rec 14c25d4d-5539-41f6-9e8e-09933973cf8f +2024-09-11 09:01:49.577064 2024-09-11 09:01:49.577068 mef 1755 R rec 61298a39-7778-4b54-9abf-7eb500c7a4d9 +2024-09-11 09:01:49.636173 2024-09-11 09:01:49.636178 mef 1756 R rec 5d9960cb-c60e-4690-8de8-47bc00e1b343 +2024-09-11 09:01:49.698407 2024-09-11 09:01:49.698412 mef 1757 R rec 67ac13b4-20c3-4091-b7ef-2872c070ed5a +2024-09-11 09:01:49.755383 2024-09-11 09:01:49.755387 mef 1758 R rec 6ff7840d-2971-4a8a-aff0-0b9cb6324f8f +2024-09-11 09:01:49.806406 2024-09-11 09:01:49.80641 mef 1759 R rec aec567c9-f62c-4c27-9402-8e9703aec97f +2024-09-11 09:01:49.8581 2024-09-11 09:01:49.858104 mef 1760 R rec be8c460b-968e-445d-a7c1-80d9667f98ba +2024-09-11 09:01:49.918304 2024-09-11 09:01:49.918309 mef 1761 R rec c4d79238-47f7-43b0-b945-85fed5db932f +2024-09-11 09:01:49.968378 2024-09-11 09:01:49.968382 mef 1762 R rec 552577ae-d12b-473c-9800-4b2a7094b50c +2024-09-11 09:01:50.026096 2024-09-11 09:01:50.026101 mef 1763 R rec 14a9a728-a292-4f63-900c-8f1dcabf9556 +2024-09-11 09:01:50.085666 2024-09-11 09:01:50.08567 mef 1764 R rec 9b92f64a-3568-4d58-8cdb-02e3986d2abe +2024-09-11 09:01:50.149229 2024-09-11 09:01:50.149234 mef 1765 R rec 667a9e63-91d4-4e6f-9239-7e817e2a9d56 +2024-09-11 09:01:50.207815 2024-09-11 09:01:50.20782 mef 1766 R rec 675324db-df7f-4a1a-978f-69970f3c3d5f +2024-09-11 09:01:50.257593 2024-09-11 09:01:50.257597 mef 1767 R rec 87c5ca36-e43d-4b06-8440-2cb79d6e8d9a +2024-09-11 09:01:50.313428 2024-09-11 09:01:50.313433 mef 1768 R rec e739124d-b7fd-4ec5-b968-54c9dd5a3c59 +2024-09-11 09:01:50.376052 2024-09-11 09:01:50.376056 mef 1769 R rec 56ef3c4c-ec3f-4448-b1b6-defe1bebe08e +2024-09-11 09:01:50.438879 2024-09-11 09:01:50.438883 mef 1770 R rec d3fd0bbd-2375-48f2-bfa0-8bddcf915174 +2024-09-11 09:01:50.489069 2024-09-11 09:01:50.489074 mef 1771 R rec 5ec8cf62-3baf-4b45-8b70-8f9b28e6fcd8 +2024-09-11 09:01:50.537045 2024-09-11 09:01:50.53705 mef 1772 R rec b190121c-6176-4c44-ac52-eab231ac8574 +2024-09-11 09:01:50.5941 2024-09-11 09:01:50.594105 mef 1773 R rec 03db7fa4-c477-4011-aa26-7ccb7f5625b4 +2024-09-11 09:01:50.656155 2024-09-11 09:01:50.65616 mef 1774 R rec 6bb18db8-bb2e-4865-91a1-6f6cc0543cc6 +2024-09-11 09:01:50.718337 2024-09-11 09:01:50.71834 mef 1775 R rec 0394963e-0d08-4266-9258-fcbde496d4f1 +2024-09-11 09:01:50.772052 2024-09-11 09:01:50.772057 mef 1776 R rec 5569909e-101b-42ec-881f-a83aeefb8ca7 +2024-09-11 09:01:50.824608 2024-09-11 09:01:50.824613 mef 1777 R rec ec7d6c38-aceb-49a1-b852-0e89a8547bb9 +2024-09-11 09:01:50.873338 2024-09-11 09:01:50.873342 mef 1778 R rec 203e33ae-05b9-4f71-9671-a0d25eb6912d +2024-09-11 09:01:50.923635 2024-09-11 09:01:50.92364 mef 1779 R rec d447635d-2461-45a1-a2d7-13272c6064c1 +2024-09-11 09:01:50.984033 2024-09-11 09:01:50.984037 mef 1780 R rec a7b10da0-a498-464c-85b6-a5b809d39d34 +2024-09-11 09:01:51.041741 2024-09-11 09:01:51.041746 mef 1781 R rec e4d3ce7a-aa33-4181-ace5-cb49b397b4c8 +2024-09-11 09:01:51.10601 2024-09-11 09:01:51.106014 mef 1782 R rec a5e14d95-4b1b-4036-8560-0f690abc04e7 +2024-09-11 09:01:51.157876 2024-09-11 09:01:51.157881 mef 1783 R rec 9530cfb0-6e03-470b-bd24-a46701661944 +2024-09-11 09:01:51.206564 2024-09-11 09:01:51.206568 mef 1784 R rec c3784f51-8a9c-4574-918f-6c16c73e5673 +2024-09-11 09:01:51.259515 2024-09-11 09:01:51.259518 mef 1785 R rec bb08bf68-6c0b-48e5-8314-95bcd3cb665f +2024-09-11 09:01:51.319516 2024-09-11 09:01:51.319521 mef 1786 R rec d6fd8a78-d788-4ee0-9b42-8751dd109270 +2024-09-11 09:01:51.373949 2024-09-11 09:01:51.373954 mef 1787 R rec 6e5f68c6-76a9-4860-b80d-6dd7ef10c278 +2024-09-11 09:01:51.446851 2024-09-11 09:01:51.446856 mef 1788 R rec 373ad65c-f13a-4c1b-8192-12e09a90f5cd +2024-09-11 09:01:51.503066 2024-09-11 09:01:51.503071 mef 1789 R rec c3e11212-28d4-43b4-8aeb-b9749cf447c6 +2024-09-11 09:01:51.556138 2024-09-11 09:01:51.556143 mef 1790 R rec f1d8df08-5fba-411c-99ea-352f19968178 +2024-09-11 09:01:51.609549 2024-09-11 09:01:51.609554 mef 1791 R rec 8bf004e7-11a1-478f-9980-1251189943d2 +2024-09-11 09:01:51.665272 2024-09-11 09:01:51.665277 mef 1792 R rec 7cb4b0e5-5b55-4db8-b63c-52d36c8d5937 +2024-09-11 09:01:51.719591 2024-09-11 09:01:51.719596 mef 1793 R rec c1fe3cd6-513b-4852-9c21-ab39042889b6 +2024-09-11 09:01:51.770495 2024-09-11 09:01:51.770499 mef 1794 R rec c3c6d1b3-e1e3-41d6-b83a-d9e5e6b796ff +2024-09-11 09:01:51.832997 2024-09-11 09:01:51.833002 mef 1795 R rec e312cda8-c83f-430a-b29b-533b8c9772ad +2024-09-11 09:01:51.884156 2024-09-11 09:01:51.884161 mef 1796 R rec 67102a85-3e3b-4752-a4db-36744173607b +2024-09-11 09:01:51.937605 2024-09-11 09:01:51.93761 mef 1797 R rec fc64e03b-5d2f-491b-9e21-6ebb4a14a58f +2024-09-11 09:01:52.013731 2024-09-11 09:01:52.013736 mef 1798 R rec 5119c5de-65cb-478e-9649-6d780dd1824a +2024-09-11 09:01:52.069109 2024-09-11 09:01:52.069113 mef 1799 R rec 13ed00ae-e971-4e59-b77a-ce3f4ae69741 +2024-09-11 09:01:52.13168 2024-09-11 09:01:52.131685 mef 1800 R rec 4703ce88-2257-455f-8b27-be3d84fdb65d +2024-09-11 09:01:52.187964 2024-09-11 09:01:52.187968 mef 1801 R rec 467e601a-7a75-419d-9618-5cbb4e9bc481 +2024-09-11 09:01:52.241554 2024-09-11 09:01:52.241558 mef 1802 R rec 49a37693-60da-4212-b0f8-370a67568bca +2024-09-11 09:01:52.295877 2024-09-11 09:01:52.295882 mef 1803 R rec 92b2bada-f402-452a-8e17-92030c2b2a6c +2024-09-11 09:01:52.351313 2024-09-11 09:01:52.351318 mef 1804 R rec 974c30cc-c735-4d95-b258-75162ca6669f +2024-09-11 09:01:52.404623 2024-09-11 09:01:52.404627 mef 1805 R rec 25f5362c-9015-41e1-bf48-cd23364b01f0 +2024-09-11 09:01:52.452366 2024-09-11 09:01:52.452371 mef 1806 R rec 92b29f4c-8ea8-438a-8e8d-f3692ff42220 +2024-09-11 09:01:52.504735 2024-09-11 09:01:52.50474 mef 1807 R rec c6305b88-4959-4e20-9f1f-0e4181cc6ec3 +2024-09-11 09:01:52.556302 2024-09-11 09:01:52.556306 mef 1808 R rec 1609271f-e531-4bc9-baa9-1a6d29c0e73c +2024-09-11 09:01:52.610525 2024-09-11 09:01:52.61053 mef 1809 R rec 59457e13-a739-4701-b22c-3b8325e1cf25 +2024-09-11 09:01:52.663041 2024-09-11 09:01:52.663046 mef 1810 R rec 17b3b032-0ded-46b9-a807-b38973236110 +2024-09-11 09:01:52.71981 2024-09-11 09:01:52.719813 mef 1811 R rec 9726997c-7b08-45b4-a823-380522a613b5 +2024-09-11 09:01:52.773603 2024-09-11 09:01:52.773608 mef 1812 R rec 8db99183-92df-4003-84a6-2494e8d215b9 +2024-09-11 09:01:52.829968 2024-09-11 09:01:52.829973 mef 1813 R rec 6cb97523-0187-4306-a8ad-ebe63f56976a +2024-09-11 09:01:52.890564 2024-09-11 09:01:52.89057 mef 1814 R rec 435a7003-1fe1-4670-a90e-05a23ffe6d5a +2024-09-11 09:01:52.953851 2024-09-11 09:01:52.953855 mef 1815 R rec 26d57d84-ec77-4934-9990-2207a7b6ee73 +2024-09-11 09:01:53.011823 2024-09-11 09:01:53.011828 mef 1816 R rec a467dac0-c5ba-4151-9de2-52ac8c07c6ff +2024-09-11 09:01:53.090999 2024-09-11 09:01:53.091004 mef 1817 R rec 615a5038-9488-452a-8a90-088607018875 +2024-09-11 09:01:53.153062 2024-09-11 09:01:53.153066 mef 1818 R rec 6f085416-a097-4345-a778-dae29ef22668 +2024-09-11 09:01:53.207296 2024-09-11 09:01:53.207305 mef 1819 R rec 6773f6bb-dc87-492e-a696-a0a4a1220f4c +2024-09-11 09:01:53.261451 2024-09-11 09:01:53.261456 mef 1820 R rec a87fcb91-1185-4b21-be9e-6a16a873867f +2024-09-11 09:01:53.311674 2024-09-11 09:01:53.311678 mef 1821 R rec 7c94fd32-81bd-45f8-9d6c-488d01bc514b +2024-09-11 09:01:53.366845 2024-09-11 09:01:53.36685 mef 1822 R rec fdaf7b84-b8d4-48a6-b49d-53984c929ac0 +2024-09-11 09:01:53.463409 2024-09-11 09:01:53.463415 mef 1823 R rec d10aa0b1-49cc-4259-8eeb-12cfbb5cfe2b +2024-09-11 09:01:53.517229 2024-09-11 09:01:53.517234 mef 1824 R rec 4b4bc506-c8b6-40f7-ba23-413fbdc780ae +2024-09-11 09:01:53.569432 2024-09-11 09:01:53.569437 mef 1825 R rec e7a80d74-e3f7-4653-afcb-0270c8606d63 +2024-09-11 09:01:53.62214 2024-09-11 09:01:53.622144 mef 1826 R rec 035162fd-d8b0-4f95-9298-921118b2cc52 +2024-09-11 09:01:53.671064 2024-09-11 09:01:53.671069 mef 1827 R rec e140750b-225f-4f47-b3e8-1f5b2f14763b +2024-09-11 09:01:53.725083 2024-09-11 09:01:53.725088 mef 1828 R rec 12613dd8-fab3-4bea-8130-0f63155ecbcf +2024-09-11 09:01:53.777433 2024-09-11 09:01:53.777437 mef 1829 R rec c62cda73-1684-4185-9e38-b0d3999e79ad +2024-09-11 09:01:53.829749 2024-09-11 09:01:53.829753 mef 1830 R rec d6b2620b-c5af-41f3-9c47-2e22e7377abb +2024-09-11 09:01:53.895535 2024-09-11 09:01:53.89554 mef 1831 R rec caca493b-42c2-43a5-bd93-ea26c0abece7 +2024-09-11 09:01:53.944557 2024-09-11 09:01:53.944562 mef 1832 R rec 492ab30c-5524-4a25-b0fc-a40e3b9d5ab5 +2024-09-11 09:01:53.999357 2024-09-11 09:01:53.999361 mef 1833 R rec 2fd8ec71-fab9-4c5b-8f11-fd75f1689d2c +2024-09-11 09:01:54.05397 2024-09-11 09:01:54.053975 mef 1834 R rec 96a3dd9e-18a5-4b30-8155-7f8223f58891 +2024-09-11 09:01:54.107108 2024-09-11 09:01:54.107113 mef 1835 R rec a62b1ae3-71f5-413f-87ee-112e87392478 +2024-09-11 09:01:54.164402 2024-09-11 09:01:54.164407 mef 1836 R rec 9e9ee065-b1f5-4bc2-a768-72eb1465a18b +2024-09-11 09:01:54.217553 2024-09-11 09:01:54.217557 mef 1837 R rec df25737b-877b-4946-a576-4a0c1d11b7c3 +2024-09-11 09:01:54.271423 2024-09-11 09:01:54.271428 mef 1838 R rec b76e62e9-15b7-4363-b6c2-3866135bb563 +2024-09-11 09:01:54.334146 2024-09-11 09:01:54.334151 mef 1839 R rec c9e231f2-fb71-4951-98c5-686c8f1e498c +2024-09-11 09:01:54.400936 2024-09-11 09:01:54.400941 mef 1840 R rec 73602ff8-4e5b-4e7f-82b1-ab14afa2c167 +2024-09-11 09:01:54.451553 2024-09-11 09:01:54.451557 mef 1841 R rec 61f6cec5-8ed9-4f34-8f08-d673171e282f +2024-09-11 09:01:54.501391 2024-09-11 09:01:54.501396 mef 1842 R rec 8795ca31-774b-48c4-a6aa-47481f35430d +2024-09-11 09:01:54.552317 2024-09-11 09:01:54.552322 mef 1843 R rec 8c764636-26f2-4855-b638-b78ccb9d2f58 +2024-09-11 09:01:54.601205 2024-09-11 09:01:54.601209 mef 1844 R rec 1dbd4aa3-8c93-4aa3-98b3-61b8b040694f +2024-09-11 09:01:54.655305 2024-09-11 09:01:54.65531 mef 1845 R rec fa61ded6-d11a-48cc-bd1b-6cfbae8fcec5 +2024-09-11 09:01:54.724141 2024-09-11 09:01:54.724147 mef 1846 R rec b7f5d556-cb56-4bc9-9298-5c9b49693f52 +2024-09-11 09:01:54.780079 2024-09-11 09:01:54.780084 mef 1847 R rec a5f9ea03-6201-47c6-94c5-809199eed314 +2024-09-11 09:01:54.831844 2024-09-11 09:01:54.831848 mef 1848 R rec a0e48cdd-5a87-4648-b336-63916a32879d +2024-09-11 09:01:54.910002 2024-09-11 09:01:54.910006 mef 1849 R rec 797c32a7-4004-49bf-a378-6d5988a14008 +2024-09-11 09:01:55.073953 2024-09-11 09:01:55.073957 mef 1850 R rec 2193d035-cdf4-4b03-bec0-6bc3f29eea22 +2024-09-11 09:01:55.189643 2024-09-11 09:01:55.189648 mef 1851 R rec a5f24ff2-52b2-4e74-bf2b-5f359759011d +2024-09-11 09:01:55.249895 2024-09-11 09:01:55.2499 mef 1852 R rec 7c46b887-6ccb-42e3-b56d-df7ec4e37d54 +2024-09-11 09:01:55.303374 2024-09-11 09:01:55.303378 mef 1853 R rec cb77d29c-9e60-42af-ba72-5224418b3a03 +2024-09-11 09:01:55.357311 2024-09-11 09:01:55.357316 mef 1854 R rec b952df46-d8f6-4bba-95ff-0fe4e59c1e01 +2024-09-11 09:01:55.414447 2024-09-11 09:01:55.414453 mef 1855 R rec 8711a6da-9ab3-4d30-bd86-aeac7659c34f +2024-09-11 09:01:55.471 2024-09-11 09:01:55.471005 mef 1856 R rec 5cc777c4-516e-482a-9ae3-8cb9ce7328fe +2024-09-11 09:01:55.525732 2024-09-11 09:01:55.525737 mef 1857 R rec 0972b840-7807-4770-94a4-fcc2e7fe86c7 +2024-09-11 09:01:55.590592 2024-09-11 09:01:55.590597 mef 1858 R rec d99229a0-c44c-411b-a0a0-373f9d1ca286 +2024-09-11 09:01:55.646605 2024-09-11 09:01:55.646609 mef 1859 R rec 937f393d-5a6f-4839-b199-4280e6ccbbff +2024-09-11 09:01:55.711598 2024-09-11 09:01:55.711604 mef 1860 R rec 65407103-07f3-4c82-939f-ae1aa3c40edc +2024-09-11 09:01:55.769497 2024-09-11 09:01:55.769502 mef 1861 R rec 60e2b637-edfc-4c5c-bb7b-a845c00e188e +2024-09-11 09:01:55.830619 2024-09-11 09:01:55.830625 mef 1862 R rec 9c2c78e8-ec03-460f-a8da-0ee0023bcff0 +2024-09-11 09:01:55.915365 2024-09-11 09:01:55.915369 mef 1863 R rec b1a4571f-2297-439e-b4d4-bc571d6f4116 +2024-09-11 09:01:55.980674 2024-09-11 09:01:55.980678 mef 1864 R rec 046af28f-3ab6-4ef8-9cfb-f7f463f5dfdb +2024-09-11 09:01:56.036827 2024-09-11 09:01:56.036832 mef 1865 R rec 8ad0bf7a-2ebe-443a-9f51-71e59631a20a +2024-09-11 09:01:56.092955 2024-09-11 09:01:56.09296 mef 1866 R rec f965c8c4-5805-4732-acf3-51780aa3d35e +2024-09-11 09:01:56.168603 2024-09-11 09:01:56.168607 mef 1867 R rec 0f0bb38a-0d8e-4c6e-b702-4475bca904d9 +2024-09-11 09:01:56.219615 2024-09-11 09:01:56.21962 mef 1868 R rec 060fd3ef-aba5-4636-99fe-2fec295eaf18 +2024-09-11 09:01:56.271002 2024-09-11 09:01:56.271006 mef 1869 R rec 761e7efe-a01f-4dd1-a837-6a93dff373c8 +2024-09-11 09:01:56.324936 2024-09-11 09:01:56.324941 mef 1870 R rec a5e5dca3-0790-4cdc-bdb7-761f4d7bad2a +2024-09-11 09:01:56.37749 2024-09-11 09:01:56.377496 mef 1871 R rec af25ea07-ea6c-4870-a9d6-e076c736fd78 +2024-09-11 09:01:56.427461 2024-09-11 09:01:56.427466 mef 1872 R rec f5bf217d-9f1d-42f7-8ee1-5a57f52f5e19 +2024-09-11 09:01:56.480077 2024-09-11 09:01:56.480081 mef 1873 R rec b4561199-f106-42f8-b9a8-8d68ee48fae6 +2024-09-11 09:01:56.532253 2024-09-11 09:01:56.532258 mef 1874 R rec 76ae784a-70be-45aa-817c-793e02387cda +2024-09-11 09:01:56.589707 2024-09-11 09:01:56.589711 mef 1875 R rec e7271891-d5ee-4e20-833c-629c404a3f28 +2024-09-11 09:01:56.642285 2024-09-11 09:01:56.642291 mef 1876 R rec 6aeceff9-aa2c-49a1-99af-6547b8f73940 +2024-09-11 09:01:56.694328 2024-09-11 09:01:56.694333 mef 1877 R rec 43de0397-704c-419e-9687-b3d6014bb65c +2024-09-11 09:01:56.756114 2024-09-11 09:01:56.756118 mef 1878 R rec 61a83fb2-f461-4606-ae98-a8ef61c4a514 +2024-09-11 09:01:56.812726 2024-09-11 09:01:56.812731 mef 1879 R rec aad14e08-6cfb-4315-b874-e86a702e6dfb +2024-09-11 09:01:56.863598 2024-09-11 09:01:56.863602 mef 1880 R rec f2ea0718-6a1f-499a-8066-269aaed889cf +2024-09-11 09:01:56.922132 2024-09-11 09:01:56.922137 mef 1881 R rec b5b8b1bd-8f44-4c23-aea7-467fec9fb227 +2024-09-11 09:01:56.990261 2024-09-11 09:01:56.990265 mef 1882 R rec 62f69966-d870-4d24-a213-e4681ecb004a +2024-09-11 09:01:57.054178 2024-09-11 09:01:57.054183 mef 1883 R rec 19935872-cd32-4fde-b48d-0daca94cad0b +2024-09-11 09:01:57.104463 2024-09-11 09:01:57.104467 mef 1884 R rec 06c58e88-3916-42a1-a0e4-6bbe5860361b +2024-09-11 09:01:57.159801 2024-09-11 09:01:57.159806 mef 1885 R rec e4698921-78c6-481d-a76e-6120d25d64e3 +2024-09-11 09:01:57.222395 2024-09-11 09:01:57.222402 mef 1886 R rec 4060c3fa-2213-4416-a8fb-85c2b7fcee7e +2024-09-11 09:01:57.290079 2024-09-11 09:01:57.290084 mef 1887 R rec 0abff5ad-a423-44e1-9f30-49b4ccbceb2e +2024-09-11 09:01:57.343751 2024-09-11 09:01:57.343756 mef 1888 R rec 54938f5e-87a4-4b9f-9056-351ea2fa1848 +2024-09-11 09:01:57.400765 2024-09-11 09:01:57.40077 mef 1889 R rec 35ce113b-37d6-47f2-9ca1-0874deb87102 +2024-09-11 09:01:57.471662 2024-09-11 09:01:57.471667 mef 1890 R rec a1cab5c1-64b5-40e3-91ff-ec7f367bf38b +2024-09-11 09:01:57.525259 2024-09-11 09:01:57.525264 mef 1891 R rec 83d9a90e-7e19-42da-a9c7-46feb9c70a66 +2024-09-11 09:01:57.577572 2024-09-11 09:01:57.577577 mef 1892 R rec d39fa369-e20a-403b-a23e-23b041766133 +2024-09-11 09:01:57.630725 2024-09-11 09:01:57.63073 mef 1893 R rec 4df996b6-e241-43d0-8d2b-cfe4bb9bbaf1 +2024-09-11 09:01:57.683794 2024-09-11 09:01:57.683799 mef 1894 R rec 660c3b87-3ec9-4f44-8218-f54efc860482 +2024-09-11 09:01:57.747607 2024-09-11 09:01:57.747611 mef 1895 R rec da8577f3-4583-41f9-ba56-65cd0e55cd27 +2024-09-11 09:01:57.800047 2024-09-11 09:01:57.800052 mef 1896 R rec fc65097d-b091-4a85-8a81-6557d0049a9c +2024-09-11 09:01:57.874095 2024-09-11 09:01:57.874099 mef 1897 R rec 04826863-8281-4b14-8cf7-59f1466e424a +2024-09-11 09:01:57.926781 2024-09-11 09:01:57.926787 mef 1898 R rec f8050aa4-0a79-4c9f-b7c3-8d64c8ee44ba +2024-09-11 09:01:57.988573 2024-09-11 09:01:57.988577 mef 1899 R rec ae42eb3e-594e-4bfb-b907-aead2eb46153 +2024-09-11 09:01:58.043212 2024-09-11 09:01:58.043217 mef 1900 R rec b2a0e8f0-b7e1-47bb-9984-98a313741adf +2024-09-11 09:01:58.096926 2024-09-11 09:01:58.096932 mef 1901 R rec ccba7e74-82ca-46c2-9aed-9e18208091cd +2024-09-11 09:01:58.162752 2024-09-11 09:01:58.162756 mef 1902 R rec 0ccfc5b9-39f8-4885-81df-4b6974733c24 +2024-09-11 09:01:58.215361 2024-09-11 09:01:58.215366 mef 1903 R rec 5cc8a360-ecc4-49c1-a782-a43421002c21 +2024-09-11 09:01:58.268329 2024-09-11 09:01:58.268333 mef 1904 R rec f078a6c8-ae29-4bec-98e2-951c964a91d6 +2024-09-11 09:01:58.320634 2024-09-11 09:01:58.320639 mef 1905 R rec cc6e6921-0bb0-4efc-8132-68c92db69da7 +2024-09-11 09:01:58.375453 2024-09-11 09:01:58.375457 mef 1906 R rec ef7ba6e9-d170-4058-884d-b7ebbf596d89 +2024-09-11 09:01:58.429201 2024-09-11 09:01:58.429207 mef 1907 R rec f31cc20f-3b26-446a-8d38-6fb0e77b98d1 +2024-09-11 09:01:58.503349 2024-09-11 09:01:58.503353 mef 1908 R rec 737003d9-526e-4d41-aeaa-e3651ec56661 +2024-09-11 09:01:58.582239 2024-09-11 09:01:58.582243 mef 1909 R rec 30ebc0b7-6606-45dc-8db5-11b63c05e530 +2024-09-11 09:01:58.648333 2024-09-11 09:01:58.648337 mef 1910 R rec 057478ed-aede-4496-8029-abf03dce7857 +2024-09-11 09:01:58.698229 2024-09-11 09:01:58.698234 mef 1911 R rec 2949f29b-ee0c-4678-bb9d-0b713eb73bee +2024-09-11 09:01:58.751216 2024-09-11 09:01:58.75122 mef 1912 R rec cf839c5c-597e-45b9-9c43-6e127c9aebd9 +2024-09-11 09:01:58.804755 2024-09-11 09:01:58.804759 mef 1913 R rec ad60e7ad-4491-438a-9d64-96b445769544 +2024-09-11 09:01:58.855176 2024-09-11 09:01:58.85518 mef 1914 R rec 7d3d74f8-c937-4a45-9707-01ecd0ca445b +2024-09-11 09:01:58.907129 2024-09-11 09:01:58.907134 mef 1915 R rec 38a10b82-12b3-4a06-998c-5af8b2c551db +2024-09-11 09:01:58.964774 2024-09-11 09:01:58.964779 mef 1916 R rec c9c9eeb5-2a5e-43e4-8f62-17e23fc7a510 +2024-09-11 09:01:59.030054 2024-09-11 09:01:59.030059 mef 1917 R rec 5cf7fa24-cd0c-4418-a76b-679cfa7fcd35 +2024-09-11 09:01:59.081478 2024-09-11 09:01:59.081483 mef 1918 R rec bb8ae9e0-a416-41f4-b7f6-ebde204228da +2024-09-11 09:01:59.1359 2024-09-11 09:01:59.135905 mef 1919 R rec 2a72d7a3-20ab-415a-b4f2-779c9480d00a +2024-09-11 09:01:59.188202 2024-09-11 09:01:59.188207 mef 1920 R rec b7850370-ccd5-41da-a694-af14dcf89cfd +2024-09-11 09:01:59.24035 2024-09-11 09:01:59.240354 mef 1921 R rec 7cc3a918-a637-4cbd-817b-5de3d98962f4 +2024-09-11 09:01:59.311085 2024-09-11 09:01:59.31109 mef 1922 R rec cf55d0b1-7b8e-4466-a81a-f103d9d95445 +2024-09-11 09:01:59.3668 2024-09-11 09:01:59.366805 mef 1923 R rec c01fe607-dbf3-4f23-955d-497384256e84 +2024-09-11 09:01:59.421787 2024-09-11 09:01:59.421791 mef 1924 R rec 9425a137-737a-42fc-9e36-df3169ba4073 +2024-09-11 09:01:59.473624 2024-09-11 09:01:59.473629 mef 1925 R rec d56cc920-1ec2-4fbf-945e-d8f9d7b031d1 +2024-09-11 09:01:59.527516 2024-09-11 09:01:59.52752 mef 1926 R rec 8b0c3463-4853-4b5c-9294-82c374d76c1f +2024-09-11 09:01:59.58006 2024-09-11 09:01:59.580064 mef 1927 R rec c6326ef6-9ed4-48c3-a7a6-a72fcc706dd5 +2024-09-11 09:01:59.634657 2024-09-11 09:01:59.634662 mef 1928 R rec 272e8084-5005-4aa8-856a-09c980b2591d +2024-09-11 09:01:59.698092 2024-09-11 09:01:59.698096 mef 1929 R rec f606484f-8255-4fef-8fe0-0f2fbdbdd68f +2024-09-11 09:01:59.755441 2024-09-11 09:01:59.755445 mef 1930 R rec c318dc22-e46b-4dd1-bc72-069f8fcb2cec +2024-09-11 09:01:59.807838 2024-09-11 09:01:59.807843 mef 1931 R rec 46d01aae-5aaf-4c02-ab84-21b4828092a4 +2024-09-11 09:01:59.857348 2024-09-11 09:01:59.857353 mef 1932 R rec 233af38b-9322-4595-b71a-1d325fc19954 +2024-09-11 09:01:59.911388 2024-09-11 09:01:59.911393 mef 1933 R rec 7c92eec8-62c6-49cf-82be-61a165f9be57 +2024-09-11 09:01:59.961399 2024-09-11 09:01:59.961404 mef 1934 R rec 0533d000-80ff-4209-8f3b-7debfc7d9e04 +2024-09-11 09:02:00.015114 2024-09-11 09:02:00.015119 mef 1935 R rec b9bb2c9c-9e11-4d0a-9a4c-a3304fe9c739 +2024-09-11 09:02:00.071152 2024-09-11 09:02:00.071156 mef 1936 R rec ad0235c6-e62b-4388-8052-1bdb012ecf7d +2024-09-11 09:02:00.142625 2024-09-11 09:02:00.14263 mef 1937 R rec dc0d91d2-b119-4c28-8d23-5e2dc97049ca +2024-09-11 09:02:00.19579 2024-09-11 09:02:00.195794 mef 1938 R rec 7390b225-bbe9-4fa5-ba8f-53e81fc226fa +2024-09-11 09:02:00.252987 2024-09-11 09:02:00.252992 mef 1939 R rec 52fb0d17-ba29-4ec7-a5f1-ab34cf953314 +2024-09-11 09:02:00.31577 2024-09-11 09:02:00.315774 mef 1940 R rec abe37a4a-de96-4716-a9f0-5e505e5ce628 +2024-09-11 09:02:00.368262 2024-09-11 09:02:00.368266 mef 1941 R rec 950e2588-c887-47c8-9366-d2a316e6dfc8 +2024-09-11 09:02:00.43592 2024-09-11 09:02:00.435924 mef 1942 R rec c6f121b5-b466-4305-b92c-3a13267ead34 +2024-09-11 09:02:00.494152 2024-09-11 09:02:00.494156 mef 1943 R rec f5a0807f-4d27-413f-82c5-cd9f993d7b5b +2024-09-11 09:02:00.551617 2024-09-11 09:02:00.551621 mef 1944 R rec c48f6a03-9ef8-4838-aee3-439e5f053de6 +2024-09-11 09:02:00.605342 2024-09-11 09:02:00.605346 mef 1945 R rec c3c7c571-aa49-4b69-a150-aa06690de6af +2024-09-11 09:02:00.656967 2024-09-11 09:02:00.656972 mef 1946 R rec 8011b3d5-d75f-4b2d-ac3d-bba51bdc6385 +2024-09-11 09:02:00.713688 2024-09-11 09:02:00.713692 mef 1947 R rec 7b3c52a3-8a06-468f-86f5-9f6213b28f22 +2024-09-11 09:02:00.76608 2024-09-11 09:02:00.766084 mef 1948 R rec abbce025-53ad-40e7-8ba0-93b97ea7be85 +2024-09-11 09:02:00.822835 2024-09-11 09:02:00.822839 mef 1949 R rec b8098534-62cb-4666-b3cb-32b24e76a99b +2024-09-11 09:02:00.876145 2024-09-11 09:02:00.87615 mef 1950 R rec 4ff302eb-039b-4f56-9c7c-e4aa2e09ae2b +2024-09-11 09:02:00.927181 2024-09-11 09:02:00.927186 mef 1951 R rec 81a3bbfc-560a-4ba0-9a7c-fa2e8f658c65 +2024-09-11 09:02:00.981343 2024-09-11 09:02:00.981348 mef 1952 R rec 323a2549-0cad-4de1-bbd7-87e5f7524a82 +2024-09-11 09:02:01.038019 2024-09-11 09:02:01.038023 mef 1953 R rec 2fb17145-705f-4594-86c5-b49ace297963 +2024-09-11 09:02:01.097204 2024-09-11 09:02:01.097209 mef 1954 R rec c944b0dc-3dad-4d65-aba0-a18cbf4152fe +2024-09-11 09:02:01.160809 2024-09-11 09:02:01.160813 mef 1955 R rec 8a7dc7f8-c399-4936-9915-c9ebe4b197e8 +2024-09-11 09:02:01.232143 2024-09-11 09:02:01.232148 mef 1956 R rec c4076862-1900-416b-8187-fbe58cd51c47 +2024-09-11 09:02:01.288772 2024-09-11 09:02:01.288777 mef 1957 R rec b5d1fd74-e540-433b-91ee-8b3f228e9194 +2024-09-11 09:02:01.342172 2024-09-11 09:02:01.342177 mef 1958 R rec 640e744c-beea-4448-9acd-fea8f619c5cd +2024-09-11 09:02:01.394463 2024-09-11 09:02:01.394469 mef 1959 R rec 8ea52190-1892-451f-8b07-9550c0ef7f6a +2024-09-11 09:02:01.452882 2024-09-11 09:02:01.452888 mef 1960 R rec 75226432-135c-4562-a80a-4b8108be6449 +2024-09-11 09:02:01.519477 2024-09-11 09:02:01.519482 mef 1961 R rec ef26e9f7-0fa7-4531-b593-fa339efcfd87 +2024-09-11 09:02:01.574247 2024-09-11 09:02:01.574252 mef 1962 R rec 13b16a11-e3b4-4c5a-8cde-bb62b650bc1d +2024-09-11 09:02:01.63059 2024-09-11 09:02:01.630595 mef 1963 R rec 88da2cfd-9830-4c8a-8eb2-31e09330c43a +2024-09-11 09:02:01.686914 2024-09-11 09:02:01.686918 mef 1964 R rec e191d9dd-1665-4cc2-84e3-069c7b60e413 +2024-09-11 09:02:01.739215 2024-09-11 09:02:01.739219 mef 1965 R rec 3617ff56-7663-44ee-a202-9794af81b6c9 +2024-09-11 09:02:01.833484 2024-09-11 09:02:01.833488 mef 1966 R rec cd86089f-113a-45eb-85ef-9f602ba59d04 +2024-09-11 09:02:01.897914 2024-09-11 09:02:01.897919 mef 1967 R rec 8e750619-84dc-4c7b-a246-4dcc6e02c2c8 +2024-09-11 09:02:01.957148 2024-09-11 09:02:01.957152 mef 1968 R rec 8f292cae-7e2e-4c7c-98ea-32859d0b0188 +2024-09-11 09:02:02.02475 2024-09-11 09:02:02.024755 mef 1969 R rec 748b4356-db56-4468-b1e8-ef4cd5a5524a +2024-09-11 09:02:02.096728 2024-09-11 09:02:02.096734 mef 1970 R rec c29a380c-601b-4bc3-a27e-864bd49ac9ee +2024-09-11 09:02:02.146821 2024-09-11 09:02:02.146826 mef 1971 R rec 1da123a6-d6b4-45f2-809c-0a2b08591bb7 +2024-09-11 09:02:02.204798 2024-09-11 09:02:02.204802 mef 1972 R rec 74ec0ab8-92ec-47c7-8865-9027b93eeb9e +2024-09-11 09:02:02.265631 2024-09-11 09:02:02.265635 mef 1973 R rec aa811e97-4888-4d49-bbb0-d0e2a6900433 +2024-09-11 09:02:02.319627 2024-09-11 09:02:02.319632 mef 1974 R rec 16f0a97a-765f-4be7-b999-5dedefd69011 +2024-09-11 09:02:02.390963 2024-09-11 09:02:02.390967 mef 1975 R rec 882cb465-2a40-4c62-92e8-3d380c7a3e8b +2024-09-11 09:02:02.452285 2024-09-11 09:02:02.452289 mef 1976 R rec 6e395a33-1a01-4f95-a16e-e93f96a33668 +2024-09-11 09:02:02.503126 2024-09-11 09:02:02.50313 mef 1977 R rec ff0d3911-0eb3-4012-a46f-b0914ad37fd5 +2024-09-11 09:02:02.557053 2024-09-11 09:02:02.557057 mef 1978 R rec 16a7f321-2cb3-4e49-8a3c-840b837665c7 +2024-09-11 09:02:02.618208 2024-09-11 09:02:02.618211 mef 1979 R rec 2d8c6cb5-cc4a-4a65-a9fb-d4b129f4ec70 +2024-09-11 09:02:02.679266 2024-09-11 09:02:02.679271 mef 1980 R rec ce9384a1-7254-43e7-8507-983c2bca6a08 +2024-09-11 09:02:02.745268 2024-09-11 09:02:02.745273 mef 1981 R rec 75330dfd-2dd9-4699-8076-99703171f9b2 +2024-09-11 09:02:02.804061 2024-09-11 09:02:02.804065 mef 1982 R rec 116bf0eb-86bd-40a0-970c-e28d46a4193d +2024-09-11 09:02:02.858229 2024-09-11 09:02:02.858233 mef 1983 R rec 7788cc36-08ea-4feb-b91e-4c50bf9aaa33 +2024-09-11 09:02:02.923575 2024-09-11 09:02:02.92358 mef 1984 R rec 4d399cd6-db3f-4edd-bedd-2bdf08174dc4 +2024-09-11 09:02:02.982976 2024-09-11 09:02:02.98298 mef 1985 R rec c365d013-7b99-4d4b-be56-3b4c8a53695b +2024-09-11 09:02:03.034278 2024-09-11 09:02:03.034283 mef 1986 R rec 9318c42d-8c0b-486b-9012-2b92284577ca +2024-09-11 09:02:03.087575 2024-09-11 09:02:03.08758 mef 1987 R rec 136cbdeb-a1ab-41d4-b065-e773412f9156 +2024-09-11 09:02:03.144551 2024-09-11 09:02:03.144555 mef 1988 R rec 82c7b240-e94f-4774-84dd-5025b31c4281 +2024-09-11 09:02:03.197595 2024-09-11 09:02:03.1976 mef 1989 R rec 97d5e7e0-42f0-4b05-bf7e-137a968559ba +2024-09-11 09:02:03.249757 2024-09-11 09:02:03.249762 mef 1990 R rec 259d7a80-9b1f-4a72-8ca7-a85209566c66 +2024-09-11 09:02:03.303696 2024-09-11 09:02:03.303701 mef 1991 R rec 8ced7179-40a7-436c-98e2-8fea1d29a253 +2024-09-11 09:02:03.355789 2024-09-11 09:02:03.355793 mef 1992 R rec cb3e5044-aaf2-43fd-ac29-531105e85fb3 +2024-09-11 09:02:03.411522 2024-09-11 09:02:03.411527 mef 1993 R rec 51c88339-5751-42ae-9e96-32c8c55acf46 +2024-09-11 09:02:03.464434 2024-09-11 09:02:03.464439 mef 1994 R rec 6b0044b4-e9e1-4e9f-9596-6e1b38272952 +2024-09-11 09:02:03.52472 2024-09-11 09:02:03.524724 mef 1995 R rec 4275f540-dd46-4d56-adc3-9dfcba005500 +2024-09-11 09:02:03.589161 2024-09-11 09:02:03.589165 mef 1996 R rec 39178121-fd76-45e4-93c9-c563932b7b7d +2024-09-11 09:02:03.643316 2024-09-11 09:02:03.643322 mef 1997 R rec e54593de-30f1-4393-ad37-0e909d5bd788 +2024-09-11 09:02:03.697654 2024-09-11 09:02:03.69766 mef 1998 R rec fb83e8ad-2cc6-4285-8a75-fa7fea7d40e7 +2024-09-11 09:02:03.755063 2024-09-11 09:02:03.755067 mef 1999 R rec c06fbbf5-3907-46b0-b250-aa829d9f6cc6 +2024-09-11 09:02:03.807103 2024-09-11 09:02:03.807107 mef 2000 R rec 00a17461-4476-401b-82f7-acc3138b50c7 +2024-09-11 09:02:03.857997 2024-09-11 09:02:03.858001 mef 2001 R rec c3815c45-a676-42a9-acf7-92f88191c0df +2024-09-11 09:02:03.909748 2024-09-11 09:02:03.909752 mef 2002 R rec 6ada5f5a-6525-4b15-9003-10c77a9395ef +2024-09-11 09:02:03.963423 2024-09-11 09:02:03.963428 mef 2003 R rec b71b4481-ac06-4594-a6bf-94c0cdbbae4d +2024-09-11 09:02:04.020057 2024-09-11 09:02:04.020063 mef 2004 R rec 23a77f6c-5b65-4c3e-acfa-6346f17223f0 +2024-09-11 09:02:04.082944 2024-09-11 09:02:04.082948 mef 2005 R rec 003a3e74-4d8a-421e-899f-9a60414032bf +2024-09-11 09:02:04.135129 2024-09-11 09:02:04.135134 mef 2006 R rec a4f1cc0d-0ee1-45fc-afdf-150884b81262 +2024-09-11 09:02:04.190456 2024-09-11 09:02:04.190461 mef 2007 R rec f68e3609-2cb8-4b07-8a33-f178d0965511 +2024-09-11 09:02:04.261722 2024-09-11 09:02:04.261726 mef 2008 R rec 29808c4c-f541-4222-8aea-508f753f704b +2024-09-11 09:02:04.315698 2024-09-11 09:02:04.315702 mef 2009 R rec c3ddb13e-47a2-4d8b-a866-9a26071117f8 +2024-09-11 09:02:04.381307 2024-09-11 09:02:04.381311 mef 2010 R rec f9e4c615-441b-4666-b522-86dfc90cf3ac +2024-09-11 09:02:04.433882 2024-09-11 09:02:04.433887 mef 2011 R rec 3618ae22-1d4f-4739-84a5-8d9d11ac1ffe +2024-09-11 09:02:04.486954 2024-09-11 09:02:04.486959 mef 2012 R rec a49a760b-9f34-47be-910f-92beaed03461 +2024-09-11 09:02:04.543439 2024-09-11 09:02:04.543444 mef 2013 R rec 7e2cc55a-11c7-4b37-9da8-3b0606661bd2 +2024-09-11 09:02:04.595165 2024-09-11 09:02:04.59517 mef 2014 R rec 1cd65161-44f6-474c-945e-46d1a555ff24 +2024-09-11 09:02:04.652222 2024-09-11 09:02:04.652227 mef 2015 R rec bf25087c-6feb-4b55-9810-338920673e18 +2024-09-11 09:02:04.701816 2024-09-11 09:02:04.701821 mef 2016 R rec a86ea184-5c0a-4e99-88b1-e76606c818b0 +2024-09-11 09:02:04.753081 2024-09-11 09:02:04.753084 mef 2017 R rec 2505d307-9486-4869-ace3-ec907ac7646e +2024-09-11 09:02:04.811083 2024-09-11 09:02:04.811087 mef 2018 R rec bc316974-0a1f-4b3c-b0e4-0effdc076b12 +2024-09-11 09:02:04.862394 2024-09-11 09:02:04.862399 mef 2019 R rec 5e5fac04-cb27-497a-8456-b008022dc727 +2024-09-11 09:02:04.914628 2024-09-11 09:02:04.914633 mef 2020 R rec ae0cca90-24a8-4940-bfdb-dc6a9dfc2467 +2024-09-11 09:02:04.974494 2024-09-11 09:02:04.974499 mef 2021 R rec d64c9cfa-5528-499e-943a-f64188e83bc2 +2024-09-11 09:02:05.042232 2024-09-11 09:02:05.042237 mef 2022 R rec 31e9147a-1935-400c-8eba-0a12170b0659 +2024-09-11 09:02:05.096436 2024-09-11 09:02:05.096441 mef 2023 R rec 1c33d498-00cb-4350-90d2-c93c51fc036b +2024-09-11 09:02:05.164681 2024-09-11 09:02:05.164686 mef 2024 R rec baa717ea-80f2-4fac-a2fc-2298182bb468 +2024-09-11 09:02:05.216443 2024-09-11 09:02:05.216447 mef 2025 R rec 070b955c-9602-49e9-b6f9-acc103b3e335 +2024-09-11 09:02:05.272529 2024-09-11 09:02:05.272534 mef 2026 R rec ba98cc55-f5a4-466b-ab24-1bd1873bfd00 +2024-09-11 09:02:05.336196 2024-09-11 09:02:05.3362 mef 2027 R rec 28015710-7f22-4cdb-b7de-f9b2ece0741d +2024-09-11 09:02:05.388421 2024-09-11 09:02:05.388427 mef 2028 R rec 0fbae857-14c7-49f3-b4a1-9f1c17c9a60e +2024-09-11 09:02:05.441135 2024-09-11 09:02:05.44114 mef 2029 R rec 5c1ef380-a54d-4953-b8a0-9d3c1f3f2331 +2024-09-11 09:02:05.494484 2024-09-11 09:02:05.494488 mef 2030 R rec 6e3c8d99-725f-48f3-9cbf-b87984673a6b +2024-09-11 09:02:05.547741 2024-09-11 09:02:05.547745 mef 2031 R rec 974af5b1-eda1-49d5-ae04-07575feb9f6b +2024-09-11 09:02:05.607625 2024-09-11 09:02:05.60763 mef 2032 R rec d4b72106-8a45-44bb-9e49-2ae50532ec3a +2024-09-11 09:02:05.678129 2024-09-11 09:02:05.678134 mef 2033 R rec dacec22c-1ccf-4c12-a0e0-084cd3078967 +2024-09-11 09:02:05.730654 2024-09-11 09:02:05.73066 mef 2034 R rec cd158db4-fc2c-45d8-83bb-884b4005ad8d +2024-09-11 09:02:05.785381 2024-09-11 09:02:05.785385 mef 2035 R rec 3db12113-923b-4420-a7c5-4bb3c83b80db +2024-09-11 09:02:05.850848 2024-09-11 09:02:05.850852 mef 2036 R rec 7595ef81-1656-4216-abca-9ddc5421eb39 +2024-09-11 09:02:05.91791 2024-09-11 09:02:05.917914 mef 2037 R rec bd085f02-77bb-41a1-bc68-dafb1da8c74c +2024-09-11 09:02:05.979613 2024-09-11 09:02:05.979617 mef 2038 R rec b75d6f42-803e-4a2c-a39b-e255ee11c2ba +2024-09-11 09:02:06.030756 2024-09-11 09:02:06.030761 mef 2039 R rec 57775461-4697-4962-a5f1-0759cc9ccdad +2024-09-11 09:02:06.087301 2024-09-11 09:02:06.087306 mef 2040 R rec d43177ae-bb99-4953-908e-6ec276d1fa64 +2024-09-11 09:02:06.142058 2024-09-11 09:02:06.142063 mef 2041 R rec 11a91c7a-9914-4691-9c5d-e715953aadb6 +2024-09-11 09:02:06.195402 2024-09-11 09:02:06.195408 mef 2042 R rec b1a6e099-01d0-4c7a-9649-f2bbb56bd778 +2024-09-11 09:02:06.245585 2024-09-11 09:02:06.24559 mef 2043 R rec 6bd6ba2a-7382-4d21-863e-5c9011c1e9df +2024-09-11 09:02:06.302462 2024-09-11 09:02:06.302467 mef 2044 R rec db16462e-78bb-4412-80a0-90cce058d49b +2024-09-11 09:02:06.354914 2024-09-11 09:02:06.354918 mef 2045 R rec ca8d457a-5308-4ad3-87dc-ffa1d2667f42 +2024-09-11 09:02:06.406184 2024-09-11 09:02:06.406188 mef 2046 R rec f0908c13-034b-4f81-acf2-32c52f6d1906 +2024-09-11 09:02:06.458487 2024-09-11 09:02:06.458493 mef 2047 R rec 1393d24f-b775-4c94-bf9e-c78dd364e51f +2024-09-11 09:02:06.515591 2024-09-11 09:02:06.515596 mef 2048 R rec 4f60a156-a118-43c9-b536-7a8cc24decaf +2024-09-11 09:02:06.568798 2024-09-11 09:02:06.568802 mef 2049 R rec 588fce28-e918-447f-890e-43723ec2a0a1 +2024-09-11 09:02:06.620878 2024-09-11 09:02:06.620882 mef 2050 R rec c00ad3dc-ddb7-494a-a5b3-c8763bf01ce2 +2024-09-11 09:02:06.673322 2024-09-11 09:02:06.673327 mef 2051 R rec 0f663f76-50ef-4391-bd78-e97b1ab0b0b5 +2024-09-11 09:02:06.729348 2024-09-11 09:02:06.729353 mef 2052 R rec d5940415-903b-4a37-b760-7cca78630ef6 +2024-09-11 09:02:06.783975 2024-09-11 09:02:06.783979 mef 2053 R rec 8b7b81df-df14-4078-a969-6b23f71c5c27 +2024-09-11 09:02:06.837616 2024-09-11 09:02:06.837621 mef 2054 R rec 6adc3b91-cce3-46f6-b8dd-7109f3cc2090 +2024-09-11 09:02:06.907551 2024-09-11 09:02:06.907555 mef 2055 R rec 50ef8341-613d-400f-8a36-7e3d6a136056 +2024-09-11 09:02:06.962426 2024-09-11 09:02:06.962431 mef 2056 R rec 2bb5c5af-e6d7-4640-906a-f3c047f6da1a +2024-09-11 09:02:07.023863 2024-09-11 09:02:07.023868 mef 2057 R rec 28a8c344-b9e4-454c-9c34-e6844ac938fb +2024-09-11 09:02:07.111753 2024-09-11 09:02:07.111758 mef 2058 R rec e6024f49-48ef-412b-b5e7-402ac6341bdc +2024-09-11 09:02:07.161827 2024-09-11 09:02:07.161832 mef 2059 R rec 1926f68e-a155-471c-803a-ba06b90591cb +2024-09-11 09:02:07.220272 2024-09-11 09:02:07.220276 mef 2060 R rec c38a3919-7d1b-4ce9-b8bc-2d261f07b84c +2024-09-11 09:02:07.275753 2024-09-11 09:02:07.275758 mef 2061 R rec 60fbfc66-0ae9-42c3-a4d9-593d6af18a7d +2024-09-11 09:02:07.325604 2024-09-11 09:02:07.32561 mef 2062 R rec 993995e9-b38d-481e-ac9e-183a078dd6d7 +2024-09-11 09:02:07.377598 2024-09-11 09:02:07.377602 mef 2063 R rec 367c89e2-47c7-490c-b0a8-59a6263b23a0 +2024-09-11 09:02:07.431666 2024-09-11 09:02:07.431671 mef 2064 R rec aa53472b-d648-4ec1-8183-0c16e4a1ecf5 +2024-09-11 09:02:07.497758 2024-09-11 09:02:07.497763 mef 2065 R rec c155b6e5-3e94-469c-b1cc-a5a7dd250c9b +2024-09-11 09:02:07.554617 2024-09-11 09:02:07.554623 mef 2066 R rec 95d25b0d-8dd6-4024-b89f-adc5a477ee3f +2024-09-11 09:02:07.609766 2024-09-11 09:02:07.60977 mef 2067 R rec 49564c2c-86ed-41da-8d48-5f213ec23300 +2024-09-11 09:02:07.664954 2024-09-11 09:02:07.664959 mef 2068 R rec 4f65f7aa-cec5-4e89-b31b-7579eac037ea +2024-09-11 09:02:07.732753 2024-09-11 09:02:07.732757 mef 2069 R rec 3f58d1e5-ceaf-4eb3-ba8e-c92b22cf940b +2024-09-11 09:02:07.80582 2024-09-11 09:02:07.805825 mef 2070 R rec b0b4d360-c4c6-42ff-838e-281d2d55de21 +2024-09-11 09:02:07.857941 2024-09-11 09:02:07.857945 mef 2071 R rec e994ad74-9383-45f7-814c-70edc0d15dd8 +2024-09-11 09:02:07.911583 2024-09-11 09:02:07.911628 mef 2072 R rec d4d306a0-c4e2-452e-ae9c-6d16f9830a1a +2024-09-11 09:02:07.984062 2024-09-11 09:02:07.984067 mef 2073 R rec 427823b7-aaef-4299-9850-95f971ea2e7d +2024-09-11 09:02:08.04379 2024-09-11 09:02:08.043794 mef 2074 R rec a1950dbd-aab0-40cc-a249-58ec21d50b46 +2024-09-11 09:02:08.108023 2024-09-11 09:02:08.108028 mef 2075 R rec cc0050dd-a4b3-43c5-9fd6-c2f4d0517f46 +2024-09-11 09:02:08.174476 2024-09-11 09:02:08.17448 mef 2076 R rec 100a36b1-5d3e-473b-9cf0-50c7324966e2 +2024-09-11 09:02:08.23036 2024-09-11 09:02:08.230366 mef 2077 R rec d2733078-be51-4110-a843-2cd957e3d25f +2024-09-11 09:02:08.293868 2024-09-11 09:02:08.293873 mef 2078 R rec cb0cd96c-7097-4bb7-acfa-3b925d13eaba +2024-09-11 09:02:08.35363 2024-09-11 09:02:08.353635 mef 2079 R rec 7a8f08df-e6c6-4542-95b9-6203d65f67c6 +2024-09-11 09:02:08.406236 2024-09-11 09:02:08.406241 mef 2080 R rec 4dde00a4-532f-416d-8f73-420b98ee94a6 +2024-09-11 09:02:08.457608 2024-09-11 09:02:08.457613 mef 2081 R rec 7459663d-c948-4649-a7b1-43d38c617af6 +2024-09-11 09:02:08.515562 2024-09-11 09:02:08.515567 mef 2082 R rec e28fa415-a2c4-4954-a3f8-022b00edc8fb +2024-09-11 09:02:08.572014 2024-09-11 09:02:08.572018 mef 2083 R rec 598e05cb-4ced-462e-90e1-572163c3d1b7 +2024-09-11 09:02:08.629465 2024-09-11 09:02:08.629479 mef 2084 R rec b37a2683-86fa-4aaa-bfbf-660ddffc11fa +2024-09-11 09:02:08.68171 2024-09-11 09:02:08.681715 mef 2085 R rec 9ee7d673-77dc-4738-b364-0a647f43ea48 +2024-09-11 09:02:08.736993 2024-09-11 09:02:08.736998 mef 2086 R rec b9a8e027-22e4-4295-bd3b-e76030c75d3e +2024-09-11 09:02:08.793815 2024-09-11 09:02:08.79382 mef 2087 R rec ad6fc36f-d0fd-4475-91b8-693db27db417 +2024-09-11 09:02:08.843095 2024-09-11 09:02:08.843101 mef 2088 R rec 7fe221de-d6ec-4ad1-8af3-a71ce7659579 +2024-09-11 09:02:08.896869 2024-09-11 09:02:08.896874 mef 2089 R rec 3b278828-4e89-41a7-96a3-7de82a690bac +2024-09-11 09:02:08.94685 2024-09-11 09:02:08.946854 mef 2090 R rec 4ba0dbc5-e971-4b18-b3a2-3fe7aab634de +2024-09-11 09:02:08.996619 2024-09-11 09:02:08.996623 mef 2091 R rec e0724582-b7e3-4f38-b6b3-e620f9f3492b +2024-09-11 09:02:09.049873 2024-09-11 09:02:09.049877 mef 2092 R rec 6d9e30bd-9eea-48ad-a9bb-b4fac2319985 +2024-09-11 09:02:09.100761 2024-09-11 09:02:09.100766 mef 2093 R rec 352f9ba8-b913-4bb9-aa3e-ae6a4d2ca9db +2024-09-11 09:02:09.156726 2024-09-11 09:02:09.156731 mef 2094 R rec 88480b21-1dcf-4ffe-8141-f5fec2ff595f +2024-09-11 09:02:09.207336 2024-09-11 09:02:09.20734 mef 2095 R rec 94d517c0-c020-46e4-911e-6a29991ceeda +2024-09-11 09:02:09.258771 2024-09-11 09:02:09.258776 mef 2096 R rec 166175d8-19a5-42b6-8608-6631f845d6fc +2024-09-11 09:02:09.30804 2024-09-11 09:02:09.308045 mef 2097 R rec 04e697ac-e7eb-4da8-981f-ceeb974a0d36 +2024-09-11 09:02:09.354429 2024-09-11 09:02:09.354433 mef 2098 R rec 97e50c0d-3c8c-49b6-9cc7-dc156c5e6b91 +2024-09-11 09:02:09.408592 2024-09-11 09:02:09.408597 mef 2099 R rec ba9436f5-d3bf-4fd7-b064-10199fd6e424 +2024-09-11 09:02:09.460523 2024-09-11 09:02:09.460528 mef 2100 R rec d7a0dee0-6652-49b9-aae5-a42f59b43c40 +2024-09-11 09:02:09.511515 2024-09-11 09:02:09.51152 mef 2101 R rec b773845e-61ed-4a42-842d-e3cacbc2cf38 +2024-09-11 09:02:09.561053 2024-09-11 09:02:09.561057 mef 2102 R rec b15e3bcf-267d-4fff-9dc7-b83052fb7e81 +2024-09-11 09:02:09.611767 2024-09-11 09:02:09.611771 mef 2103 R rec e7e4afbc-02e7-410f-9dc4-66461bffb567 +2024-09-11 09:02:09.659729 2024-09-11 09:02:09.659734 mef 2104 R rec 45a4e94f-33e0-4541-b0f2-d97e9b964401 +2024-09-11 09:02:09.712999 2024-09-11 09:02:09.713004 mef 2105 R rec 440024a3-fca2-49dc-8381-e1718afb82c6 +2024-09-11 09:02:09.762071 2024-09-11 09:02:09.762076 mef 2106 R rec 596d6122-bb71-44e6-80d8-97b42e675e29 +2024-09-11 09:02:09.812968 2024-09-11 09:02:09.812972 mef 2107 R rec ddb1aa4b-c6bd-415a-b96e-d960a84a0876 +2024-09-11 09:02:09.875513 2024-09-11 09:02:09.875519 mef 2108 R rec 79691c20-d7a0-4cd2-83dc-82bb0047bb75 +2024-09-11 09:02:09.924207 2024-09-11 09:02:09.924212 mef 2109 R rec 91906047-9777-43da-9cad-16d2ad8f5499 +2024-09-11 09:02:09.971717 2024-09-11 09:02:09.971721 mef 2110 R rec cb67e964-a882-4b5c-951c-36236954e205 +2024-09-11 09:02:10.021287 2024-09-11 09:02:10.021291 mef 2111 R rec 3c28c6d3-4370-4c8d-84ae-babe9d601d72 +2024-09-11 09:02:10.073605 2024-09-11 09:02:10.073609 mef 2112 R rec 7ae1749f-b754-48cf-9284-1d6166aaea94 +2024-09-11 09:02:10.120491 2024-09-11 09:02:10.120496 mef 2113 R rec 7b4f56a1-c619-4bad-ba02-e4087fb0e593 +2024-09-11 09:02:10.174132 2024-09-11 09:02:10.174136 mef 2114 R rec abbe9167-f33e-4c5a-8439-df8a79d5cf49 +2024-09-11 09:02:10.2298 2024-09-11 09:02:10.229805 mef 2115 R rec 8914013e-187c-4a40-9366-575f64d53bb4 +2024-09-11 09:02:10.284741 2024-09-11 09:02:10.284746 mef 2116 R rec 8e0044cf-275d-4eef-bd56-318ae90da122 +2024-09-11 09:02:10.333573 2024-09-11 09:02:10.333578 mef 2117 R rec 134cd197-1ce2-4bf7-9bdb-170d19816b56 +2024-09-11 09:02:10.379516 2024-09-11 09:02:10.37952 mef 2118 R rec e80fd4b0-148b-4205-87d8-2c76f9eb3b23 +2024-09-11 09:02:10.427353 2024-09-11 09:02:10.427358 mef 2119 R rec 685da87b-57ee-4507-a3a0-545d98f240a9 +2024-09-11 09:02:10.48353 2024-09-11 09:02:10.483535 mef 2120 R rec 626e1de0-ae80-4795-98bf-da3efed520f8 +2024-09-11 09:02:10.540443 2024-09-11 09:02:10.540447 mef 2121 R rec 825076e6-1656-4301-b192-cd6f01a0dc1e +2024-09-11 09:02:10.591182 2024-09-11 09:02:10.591187 mef 2122 R rec ecc0f54d-d309-42aa-9c10-cab3385d3cea +2024-09-11 09:02:10.638931 2024-09-11 09:02:10.638936 mef 2123 R rec fe96db02-ab91-4b8b-ae0c-8d2f48743b30 +2024-09-11 09:02:10.693986 2024-09-11 09:02:10.69399 mef 2124 R rec a322be72-3796-40d9-924f-585511e2f972 +2024-09-11 09:02:10.749944 2024-09-11 09:02:10.749949 mef 2125 R rec f3cf2dd0-dbf2-4470-bda2-971715d52fb7 +2024-09-11 09:02:10.796658 2024-09-11 09:02:10.796662 mef 2126 R rec 8753f783-9575-4656-b846-bb94e1d74ab3 +2024-09-11 09:02:10.846679 2024-09-11 09:02:10.846684 mef 2127 R rec 543f7585-1a5e-432d-a279-196ccbbb32fb +2024-09-11 09:02:10.897552 2024-09-11 09:02:10.897557 mef 2128 R rec ae533686-576b-47ad-a72d-14a9199bc22b +2024-09-11 09:02:10.949599 2024-09-11 09:02:10.949603 mef 2129 R rec d4740285-a922-4561-822b-0999920ebb0f +2024-09-11 09:02:11.003721 2024-09-11 09:02:11.003725 mef 2130 R rec 0e07322c-c37d-4457-a203-05c40db41893 +2024-09-11 09:02:11.05497 2024-09-11 09:02:11.054975 mef 2131 R rec 47c27b99-8898-4247-bb78-87c79a09b0d0 +2024-09-11 09:02:11.12882 2024-09-11 09:02:11.128826 mef 2132 R rec db4aa693-5515-4157-8179-77142775c794 +2024-09-11 09:02:11.178196 2024-09-11 09:02:11.178201 mef 2133 R rec 4fb82787-fbd1-4415-ad1c-8233a9707abe +2024-09-11 09:02:11.23118 2024-09-11 09:02:11.231185 mef 2134 R rec fab6c219-75d1-4c0e-be5a-297f435adc9d +2024-09-11 09:02:11.280904 2024-09-11 09:02:11.280908 mef 2135 R rec a79a6dcc-96ed-4043-880a-b5fe100b498b +2024-09-11 09:02:11.330402 2024-09-11 09:02:11.330407 mef 2136 R rec b06f1863-8a70-4817-85d0-2c0563b52a5c +2024-09-11 09:02:11.378291 2024-09-11 09:02:11.378295 mef 2137 R rec afe37311-3257-4659-8491-84f0a94c7bf6 +2024-09-11 09:02:11.429002 2024-09-11 09:02:11.429006 mef 2138 R rec 35afe3b2-afbb-466d-9b41-a3543b15bf83 +2024-09-11 09:02:11.47989 2024-09-11 09:02:11.479894 mef 2139 R rec 7357e455-7208-41e4-90be-d62f641838f2 +2024-09-11 09:02:11.526061 2024-09-11 09:02:11.526066 mef 2140 R rec d1a6e1cd-a914-4844-ab36-9ce4ab17293d +2024-09-11 09:02:11.573426 2024-09-11 09:02:11.57343 mef 2141 R rec d475f62a-62b3-447c-a435-cf4cd2fd5a43 +2024-09-11 09:02:11.631449 2024-09-11 09:02:11.631454 mef 2142 R rec eda11e89-f39d-4c2e-9bcb-3202789b1686 +2024-09-11 09:02:11.688531 2024-09-11 09:02:11.688536 mef 2143 R rec ab48273c-0315-4563-b997-8431e7424c8a +2024-09-11 09:02:11.743592 2024-09-11 09:02:11.743598 mef 2144 R rec 7d194e83-dd63-4f40-86c3-456bc2eab743 +2024-09-11 09:02:11.806876 2024-09-11 09:02:11.80688 mef 2145 R rec c18a78e4-dff9-479a-8df9-eabd1b1bea91 +2024-09-11 09:02:11.863139 2024-09-11 09:02:11.863144 mef 2146 R rec a0e97900-a461-44fe-89cb-adf8b82d8df6 +2024-09-11 09:02:11.927607 2024-09-11 09:02:11.927612 mef 2147 R rec a9c7c231-1710-4aa4-8b43-1db25bf03efe +2024-09-11 09:02:11.988053 2024-09-11 09:02:11.988057 mef 2148 R rec aebbfa88-4c05-4ee7-b14a-89925a5ec9e3 +2024-09-11 09:02:12.04492 2024-09-11 09:02:12.044924 mef 2149 R rec 08a65551-a9f0-49e9-9355-181ddb66ea31 +2024-09-11 09:02:12.102524 2024-09-11 09:02:12.102528 mef 2150 R rec ef224585-af9b-49e3-87bf-819865ed6df3 +2024-09-11 09:02:12.157015 2024-09-11 09:02:12.157019 mef 2151 R rec eb579b2f-4b2f-49b3-8fff-f90f6d67a472 +2024-09-11 09:02:12.209869 2024-09-11 09:02:12.209874 mef 2152 R rec 2e850b0b-d4a5-4928-a054-d71aef2a0a3b +2024-09-11 09:02:12.264383 2024-09-11 09:02:12.264388 mef 2153 R rec 7791c098-1607-43cc-805e-26c93949ed38 +2024-09-11 09:02:12.374692 2024-09-11 09:02:12.374699 mef 2154 R rec 7b1fbf1f-3915-4cc4-a1db-1b533df24027 +2024-09-11 09:02:12.436511 2024-09-11 09:02:12.436516 mef 2155 R rec afb7670f-799c-4dd2-b6fd-a55acd1fbcbf +2024-09-11 09:02:12.501369 2024-09-11 09:02:12.501373 mef 2156 R rec 66f2cb4f-3e32-4fc4-888c-3b8823354085 +2024-09-11 09:02:12.573809 2024-09-11 09:02:12.573814 mef 2157 R rec 7e9be131-1a43-4964-9d30-471792c4b602 +2024-09-11 09:02:12.639617 2024-09-11 09:02:12.639621 mef 2158 R rec fb772a3b-f5f7-4d14-b381-51a5e61308a9 +2024-09-11 09:02:12.707096 2024-09-11 09:02:12.707101 mef 2159 R rec b15708e3-c336-4e6b-a340-52b7d0b18b90 +2024-09-11 09:02:12.782153 2024-09-11 09:02:12.782158 mef 2160 R rec e4e81853-9a51-4590-a740-4812bd70a274 +2024-09-11 09:02:12.832819 2024-09-11 09:02:12.832824 mef 2161 R rec b7983281-4b7f-4d05-a5f3-36e3de6f880a +2024-09-11 09:02:12.885858 2024-09-11 09:02:12.885863 mef 2162 R rec fa99dd40-a80d-4e3d-a0f8-a400c8f36a41 +2024-09-11 09:02:12.955431 2024-09-11 09:02:12.955435 mef 2163 R rec d764f215-1a2e-496d-a098-5d5d3e7fbc50 +2024-09-11 09:02:13.009662 2024-09-11 09:02:13.009668 mef 2164 R rec 538596bf-7175-4279-a9a7-6455d3dd144a +2024-09-11 09:02:13.066383 2024-09-11 09:02:13.066388 mef 2165 R rec 6ef37aea-aaba-4382-b430-f76ed1ff16fe +2024-09-11 09:02:13.129395 2024-09-11 09:02:13.1294 mef 2166 R rec 070e63fd-c4ac-4366-897d-54b07d9c9730 +2024-09-11 09:02:13.186053 2024-09-11 09:02:13.186058 mef 2167 R rec bd979ada-2a23-471d-aa69-4badff8ccdc2 +2024-09-11 09:02:13.246306 2024-09-11 09:02:13.246311 mef 2168 R rec 98469f56-03b8-4b68-a617-b69cda276352 +2024-09-11 09:02:13.305486 2024-09-11 09:02:13.30549 mef 2169 R rec 43db78ae-d52e-4f95-94d9-bc2cae3001d6 +2024-09-11 09:02:13.363808 2024-09-11 09:02:13.363813 mef 2170 R rec e1bfb96c-822b-489b-ae61-72ef99d53b21 +2024-09-11 09:02:13.420201 2024-09-11 09:02:13.420207 mef 2171 R rec c1bc0bb8-4263-4022-9333-ee07251f23d4 +2024-09-11 09:02:13.475427 2024-09-11 09:02:13.475432 mef 2172 R rec 3b94b23e-3104-4727-bc3b-08ed2081b2a2 +2024-09-11 09:02:13.529663 2024-09-11 09:02:13.529667 mef 2173 R rec a3d63333-7a88-42ea-b27c-b677d62a3874 +2024-09-11 09:02:13.602341 2024-09-11 09:02:13.602345 mef 2174 R rec a544e176-4fa2-4d3a-a82c-cf6368dbe478 +2024-09-11 09:02:13.692747 2024-09-11 09:02:13.692752 mef 2175 R rec 314546a7-cb2a-4044-a7eb-c8528c284cef +2024-09-11 09:02:13.747279 2024-09-11 09:02:13.747286 mef 2176 R rec d5b5ccf6-be64-45db-9838-9267aff65d31 +2024-09-11 09:02:13.81109 2024-09-11 09:02:13.811095 mef 2177 R rec e1d45d7c-f1e9-482b-8b67-1dfdaf993576 +2024-09-11 09:02:13.867685 2024-09-11 09:02:13.867688 mef 2178 R rec 185a57af-ea79-483d-8845-b6df46e72cc3 +2024-09-11 09:02:13.919907 2024-09-11 09:02:13.919911 mef 2179 R rec ab19e003-d28e-4596-98d0-606eb4caf7f5 +2024-09-11 09:02:13.982081 2024-09-11 09:02:13.982086 mef 2180 R rec 187a5ce1-78c3-46b8-9c7d-d0e619ae1a75 +2024-09-11 09:02:14.037166 2024-09-11 09:02:14.037171 mef 2181 R rec 943269ed-a1a2-4432-986d-c52db229c2c3 +2024-09-11 09:02:14.094385 2024-09-11 09:02:14.094391 mef 2182 R rec cedfa4e8-e5b3-4240-be72-81d35f311a79 +2024-09-11 09:02:14.157221 2024-09-11 09:02:14.157226 mef 2183 R rec 9d5f3d39-6086-45b9-98fe-42c5fa0fae9a +2024-09-11 09:02:14.210976 2024-09-11 09:02:14.210981 mef 2184 R rec c9794f5a-5783-4d3b-958b-42d0175e266f +2024-09-11 09:02:14.264136 2024-09-11 09:02:14.264141 mef 2185 R rec 200c46ba-f61d-4b4d-b4eb-7fd751665199 +2024-09-11 09:02:14.316979 2024-09-11 09:02:14.316983 mef 2186 R rec 19bf1c03-d727-4c4f-b829-587b51c11012 +2024-09-11 09:02:14.373749 2024-09-11 09:02:14.373754 mef 2187 R rec 0c70d9b7-0d35-41d8-94d0-92e94e251cdf +2024-09-11 09:02:14.452604 2024-09-11 09:02:14.452613 mef 2188 R rec 2c70eda9-f756-45d4-b476-a5eca7b15fd2 +2024-09-11 09:02:14.517661 2024-09-11 09:02:14.517666 mef 2189 R rec 2d6ae1e9-99a0-46e5-b459-fe1b0ec6ca50 +2024-09-11 09:02:14.582803 2024-09-11 09:02:14.582808 mef 2190 R rec 5ef595c9-ba6b-4c8a-bd95-16f97eadf950 +2024-09-11 09:02:14.656348 2024-09-11 09:02:14.656352 mef 2191 R rec 46d9b568-3bfb-400f-8be7-2d86ce6ccb53 +2024-09-11 09:02:14.73544 2024-09-11 09:02:14.735445 mef 2192 R rec 53c81743-3d23-47c6-b57a-e3b3b980d0fc +2024-09-11 09:02:14.79236 2024-09-11 09:02:14.792364 mef 2193 R rec 91e2851b-5c1d-4385-9e4f-0a434a77b617 +2024-09-11 09:02:14.849685 2024-09-11 09:02:14.84969 mef 2194 R rec ecd67b7e-5ea8-48fd-a278-bb8fdd109938 +2024-09-11 09:02:14.907583 2024-09-11 09:02:14.907588 mef 2195 R rec 695db22d-628a-4b5d-9e52-08f4533208f1 +2024-09-11 09:02:14.968037 2024-09-11 09:02:14.968042 mef 2196 R rec 54142302-f4ea-4e52-b475-25152c4564a7 +2024-09-11 09:02:15.031231 2024-09-11 09:02:15.031235 mef 2197 R rec 8eab11b2-c7f6-4b9f-825c-39e1ac031ee0 +2024-09-11 09:02:15.085165 2024-09-11 09:02:15.08517 mef 2198 R rec cd411d1e-ea00-4986-a62f-b98dcb59bcbd +2024-09-11 09:02:15.141446 2024-09-11 09:02:15.141451 mef 2199 R rec 8dcf53ff-a653-440a-9940-90c761e6d8dd +2024-09-11 09:02:15.217332 2024-09-11 09:02:15.217336 mef 2200 R rec b945682a-80c2-4ac9-b8aa-be69b720d540 +2024-09-11 09:02:15.276072 2024-09-11 09:02:15.276077 mef 2201 R rec 7d85c00e-b081-4682-80cf-e32e945d09b9 +2024-09-11 09:02:15.332563 2024-09-11 09:02:15.332568 mef 2202 R rec 21a8b350-6147-48b2-8d2e-6afdfc2d1808 +2024-09-11 09:02:15.389446 2024-09-11 09:02:15.389451 mef 2203 R rec d5836eb1-4aa1-42bf-904d-0bbabce86827 +2024-09-11 09:02:15.455906 2024-09-11 09:02:15.455911 mef 2204 R rec a329ff60-3619-45b4-bd64-9ce2b2c095e5 +2024-09-11 09:02:15.509885 2024-09-11 09:02:15.50989 mef 2205 R rec 27d95b94-8feb-465c-9b92-ade2ef9ec175 +2024-09-11 09:02:15.5625 2024-09-11 09:02:15.562505 mef 2206 R rec 9722325b-7dc6-4c08-a979-b05cb72862a0 +2024-09-11 09:02:15.619552 2024-09-11 09:02:15.619557 mef 2207 R rec f8b26cfc-39f9-4811-aaf9-1954c2af670f +2024-09-11 09:02:15.675473 2024-09-11 09:02:15.675479 mef 2208 R rec 68d25176-6103-4bca-a995-c5d8631959ad +2024-09-11 09:02:15.752549 2024-09-11 09:02:15.752554 mef 2209 R rec a7062192-9569-4587-b8de-8c9faa70b315 +2024-09-11 09:02:15.807873 2024-09-11 09:02:15.807878 mef 2210 R rec ac54a9b8-745f-4858-80ee-1d6357aa19b9 +2024-09-11 09:02:15.864747 2024-09-11 09:02:15.864752 mef 2211 R rec 9ef07aaf-873a-4004-a3cf-20a3545ffbe3 +2024-09-11 09:02:15.919785 2024-09-11 09:02:15.91979 mef 2212 R rec 88c891ad-c192-4982-910c-bd01688433aa +2024-09-11 09:02:15.970756 2024-09-11 09:02:15.970761 mef 2213 R rec cfcf3876-13bb-4565-8bd9-01257e1f41e1 +2024-09-11 09:02:16.03391 2024-09-11 09:02:16.033916 mef 2214 R rec 87fb3893-6763-4219-82d3-92c94280c7f7 +2024-09-11 09:02:16.139985 2024-09-11 09:02:16.13999 mef 2215 R rec e22916cf-f215-48ec-aa69-11c27987ea51 +2024-09-11 09:02:16.211153 2024-09-11 09:02:16.211159 mef 2216 R rec 0cf9cc21-f834-4d4d-b316-bf9a14d4aade +2024-09-11 09:02:16.261766 2024-09-11 09:02:16.261771 mef 2217 R rec 2500b3d8-a737-4eee-8f72-05b333653734 +2024-09-11 09:02:16.314195 2024-09-11 09:02:16.3142 mef 2218 R rec 0ffd7537-7615-4791-b339-0e9b34181a6b +2024-09-11 09:02:16.372393 2024-09-11 09:02:16.372396 mef 2219 R rec aedc2756-ce55-4a6c-a544-b3660a0e4230 +2024-09-11 09:02:16.43285 2024-09-11 09:02:16.432855 mef 2220 R rec c9482d16-87bd-409b-a598-bab74c832af9 +2024-09-11 09:02:16.484707 2024-09-11 09:02:16.484712 mef 2221 R rec 0c92c111-7544-4822-b2fa-bba100403475 +2024-09-11 09:02:16.534994 2024-09-11 09:02:16.534999 mef 2222 R rec 15d26e1b-fe9d-4c5e-bffa-01be4b5b8a4c +2024-09-11 09:02:16.585409 2024-09-11 09:02:16.585413 mef 2223 R rec 119e1f78-a806-4572-a26c-491b33172f9f +2024-09-11 09:02:16.638541 2024-09-11 09:02:16.638546 mef 2224 R rec 3af604d0-2a15-4b8e-b01d-d084c05339d9 +2024-09-11 09:02:16.695849 2024-09-11 09:02:16.695854 mef 2225 R rec fc8f7be8-e47a-466d-88b7-dab809881dfb +2024-09-11 09:02:16.756076 2024-09-11 09:02:16.75608 mef 2226 R rec b74e97ea-f312-42d2-b4b8-9cc7fbc42a85 +2024-09-11 09:02:16.812695 2024-09-11 09:02:16.812699 mef 2227 R rec 738de5c0-4666-457b-90cf-c5af0986cc50 +2024-09-11 09:02:16.869491 2024-09-11 09:02:16.869496 mef 2228 R rec 0e5a5b83-cdff-4829-a4ce-876c76f510a6 +2024-09-11 09:02:16.924227 2024-09-11 09:02:16.924232 mef 2229 R rec 5172bc00-a18a-4142-914c-36ca5c86b63a +2024-09-11 09:02:16.977561 2024-09-11 09:02:16.977565 mef 2230 R rec 779880dd-00cf-4f13-be8a-aa4aa4c7c020 +2024-09-11 09:02:17.030472 2024-09-11 09:02:17.030476 mef 2231 R rec 66a35d1e-a57a-48b5-8aab-0d836345ee03 +2024-09-11 09:02:17.087265 2024-09-11 09:02:17.087269 mef 2232 R rec e7baef31-b706-4e88-a80d-398d508b4fa3 +2024-09-11 09:02:17.138334 2024-09-11 09:02:17.138339 mef 2233 R rec cc6c6d63-2f86-4e47-b66a-dcd98cb52010 +2024-09-11 09:02:17.193582 2024-09-11 09:02:17.193587 mef 2234 R rec 41a10382-f5b0-4cf3-8e24-e5093955b7fa +2024-09-11 09:02:17.258858 2024-09-11 09:02:17.258863 mef 2235 R rec 491b8786-2d6f-4983-b456-6ce51b05de7a +2024-09-11 09:02:17.316797 2024-09-11 09:02:17.316802 mef 2236 R rec a97f6a82-5872-4785-9b01-a9dbc9e98f50 +2024-09-11 09:02:17.377652 2024-09-11 09:02:17.377657 mef 2237 R rec da62a988-2111-4915-ae44-b240affbf4aa +2024-09-11 09:02:17.437611 2024-09-11 09:02:17.437616 mef 2238 R rec 7e8cbdc4-9928-4801-9c17-0aafa53dea78 +2024-09-11 09:02:17.499605 2024-09-11 09:02:17.499611 mef 2239 R rec d43be01a-a8ee-4133-8623-f66de581303e +2024-09-11 09:02:17.558143 2024-09-11 09:02:17.558149 mef 2240 R rec b9aec2a5-eb4f-42e0-a0fb-cae1b18c6625 +2024-09-11 09:02:17.638471 2024-09-11 09:02:17.638476 mef 2241 R rec 93d95d2d-5320-4839-afe2-b64fe20a5bca +2024-09-11 09:02:17.690676 2024-09-11 09:02:17.69068 mef 2242 R rec 0fe38d17-e09b-48d8-8673-10d670d6407c +2024-09-11 09:02:17.756488 2024-09-11 09:02:17.756492 mef 2243 R rec 3ceec00f-3739-4cab-b26b-4919f9306d8d +2024-09-11 09:02:17.817134 2024-09-11 09:02:17.817138 mef 2244 R rec ee4889ed-ab51-4f18-89b3-70eafd122a73 +2024-09-11 09:02:17.881684 2024-09-11 09:02:17.881689 mef 2245 R rec c5c60d76-d5d9-4e52-8d6e-b5ac963cef81 +2024-09-11 09:02:17.947141 2024-09-11 09:02:17.947146 mef 2246 R rec e208ef66-3d8f-4244-920b-7a8186b1da23 +2024-09-11 09:02:18.019004 2024-09-11 09:02:18.019009 mef 2247 R rec fcfa81ad-1f9b-4050-86ba-bd848c107ab9 +2024-09-11 09:02:18.091384 2024-09-11 09:02:18.091389 mef 2248 R rec e05fc4f3-403f-492e-932c-4b89668a42b5 +2024-09-11 09:02:18.155729 2024-09-11 09:02:18.155734 mef 2249 R rec 8485f6fb-b87f-46d4-a62e-c137396f38b5 +2024-09-11 09:02:18.213415 2024-09-11 09:02:18.21342 mef 2250 R rec b852d7e3-5cd6-4e8b-8b26-1afbaa14fcd6 +2024-09-11 09:02:18.275506 2024-09-11 09:02:18.275511 mef 2251 R rec 1cc0bb8f-ef8e-4b51-8d5f-e2f8cace5ced +2024-09-11 09:02:18.362799 2024-09-11 09:02:18.362803 mef 2252 R rec fc98145a-d917-4685-badf-4c25db3434f8 +2024-09-11 09:02:18.438853 2024-09-11 09:02:18.438859 mef 2253 R rec 0bc387e7-c9a7-4b5e-987b-4d5231f9700a +2024-09-11 09:02:18.504349 2024-09-11 09:02:18.504354 mef 2254 R rec af29e982-a258-45c2-a90f-54bd1d0297c4 +2024-09-11 09:02:18.565211 2024-09-11 09:02:18.565217 mef 2255 R rec 16b25a5e-f74f-41a3-820e-bb5c8d40b0bc +2024-09-11 09:02:18.62987 2024-09-11 09:02:18.629875 mef 2256 R rec 22615210-7adb-43b4-a3eb-6fcab328c806 +2024-09-11 09:02:18.697604 2024-09-11 09:02:18.697608 mef 2257 R rec 397999e8-2a8b-49a8-93d4-d1117e1562ee +2024-09-11 09:02:18.770057 2024-09-11 09:02:18.770062 mef 2258 R rec 92cdef0f-0d59-4a9b-8776-7a33880c6bcc +2024-09-11 09:02:18.826456 2024-09-11 09:02:18.826461 mef 2259 R rec 4c62125f-493b-4fc6-b095-6a196eb2dab3 +2024-09-11 09:02:18.885465 2024-09-11 09:02:18.885469 mef 2260 R rec 7420dce1-1834-49b5-a566-9ec95f5357cc +2024-09-11 09:02:18.950113 2024-09-11 09:02:18.950118 mef 2261 R rec 03df7041-aca9-4044-967c-74e3665d9b18 +2024-09-11 09:02:19.026386 2024-09-11 09:02:19.026392 mef 2262 R rec e7c07071-702a-4e7a-8777-3d5fa090e14e +2024-09-11 09:02:19.085505 2024-09-11 09:02:19.08551 mef 2263 R rec d5755dc2-6050-4c0a-912f-6a91ad71aa12 +2024-09-11 09:02:19.145744 2024-09-11 09:02:19.145749 mef 2264 R rec c91d0c75-3573-4751-9fd0-aa8dce61b90c +2024-09-11 09:02:19.209803 2024-09-11 09:02:19.209808 mef 2265 R rec a254bfe2-8080-43cc-a21c-09b458f6d988 +2024-09-11 09:02:19.275464 2024-09-11 09:02:19.27547 mef 2266 R rec 3e6a9fa0-3bf9-40f0-969f-5b4ba025d3c0 +2024-09-11 09:02:19.333919 2024-09-11 09:02:19.333924 mef 2267 R rec 13fdf4fa-c9ce-40c8-a4ff-79a2da7046dd +2024-09-11 09:02:19.403848 2024-09-11 09:02:19.403852 mef 2268 R rec a9c8b292-7507-487c-a49a-3283764ffdb0 +2024-09-11 09:02:19.46117 2024-09-11 09:02:19.461175 mef 2269 R rec d80ab28c-1af1-4ba9-98ef-94c618717507 +2024-09-11 09:02:19.516572 2024-09-11 09:02:19.516576 mef 2270 R rec b1e78f6a-18a1-4243-b0df-71c2c70c5e8e +2024-09-11 09:02:19.578004 2024-09-11 09:02:19.578008 mef 2271 R rec 26fd4e2d-184d-446b-95ba-f92af5c055b3 +2024-09-11 09:02:19.640984 2024-09-11 09:02:19.640988 mef 2272 R rec b9ed646a-cf39-4210-8b12-89767157b712 +2024-09-11 09:02:19.709124 2024-09-11 09:02:19.709128 mef 2273 R rec 5a3777dc-8ddb-4b54-a5a0-178ae54223a6 +2024-09-11 09:02:19.77446 2024-09-11 09:02:19.774465 mef 2274 R rec 7e551430-8d39-4dce-822d-2995dd7292b0 +2024-09-11 09:02:19.841845 2024-09-11 09:02:19.84185 mef 2275 R rec d4e38058-3365-49e1-b476-b9795fb3b9fc +2024-09-11 09:02:19.89731 2024-09-11 09:02:19.897315 mef 2276 R rec eefb1e79-d5a7-43fc-aced-344f29cc8ae3 +2024-09-11 09:02:19.967801 2024-09-11 09:02:19.967807 mef 2277 R rec bf99d732-0910-4dd0-8f41-b46a0f17e90a +2024-09-11 09:02:20.024794 2024-09-11 09:02:20.024799 mef 2278 R rec b0a57183-258a-43b3-8db6-9c616f77c52e +2024-09-11 09:02:20.08092 2024-09-11 09:02:20.080925 mef 2279 R rec c5b91489-ab66-484f-b731-ec6208e218ce +2024-09-11 09:02:20.140756 2024-09-11 09:02:20.140761 mef 2280 R rec e32ce822-26cd-4151-9929-f942a3f75aa2 +2024-09-11 09:02:20.198951 2024-09-11 09:02:20.198956 mef 2281 R rec 75105f4c-642c-4787-a39f-ab3225937881 +2024-09-11 09:02:20.280826 2024-09-11 09:02:20.280831 mef 2282 R rec 8759bb72-99da-4ec7-9fab-17a3721c180c +2024-09-11 09:02:20.339889 2024-09-11 09:02:20.339893 mef 2283 R rec 355d378a-c96e-4c9c-850a-61e188138367 +2024-09-11 09:02:20.391081 2024-09-11 09:02:20.391086 mef 2284 R rec 03135554-96d0-422b-973f-1491e07779f6 +2024-09-11 09:02:20.448964 2024-09-11 09:02:20.448969 mef 2285 R rec 32bb6879-bc3f-437a-9b4e-e7380e41902e +2024-09-11 09:02:20.508947 2024-09-11 09:02:20.508952 mef 2286 R rec 5d604248-42c4-4381-850f-97befcb61753 +2024-09-11 09:02:20.567148 2024-09-11 09:02:20.567152 mef 2287 R rec 1d7e59ea-bd7f-45a6-a044-cf8d85c68d26 +2024-09-11 09:02:20.627138 2024-09-11 09:02:20.627143 mef 2288 R rec 078fe9e8-85cf-48f9-b3d9-80ff96fb7a69 +2024-09-11 09:02:20.686377 2024-09-11 09:02:20.686382 mef 2289 R rec 637d2e13-3024-478c-92f1-128ad2ad6784 +2024-09-11 09:02:20.745299 2024-09-11 09:02:20.745304 mef 2290 R rec cd44f94f-a6f0-46aa-bed8-8d2a6b2851bc +2024-09-11 09:02:20.798059 2024-09-11 09:02:20.798064 mef 2291 R rec 6efde258-ae51-4db9-b368-37545aac06d1 +2024-09-11 09:02:20.8563 2024-09-11 09:02:20.856305 mef 2292 R rec f7a8519d-de6d-47f2-ac43-61aa3e95ea78 +2024-09-11 09:02:20.910948 2024-09-11 09:02:20.910953 mef 2293 R rec 7bfac9f0-e635-43ea-9c9a-507998a0446d +2024-09-11 09:02:20.967602 2024-09-11 09:02:20.967606 mef 2294 R rec 5cfe059c-49a6-40c8-9d01-406408de8981 +2024-09-11 09:02:21.040252 2024-09-11 09:02:21.040257 mef 2295 R rec c0f60c0b-185b-4a40-b327-218ec659ff15 +2024-09-11 09:02:21.171281 2024-09-11 09:02:21.171286 mef 2296 R rec f2c35fc9-5276-4a7c-85da-c6eb1841d72a +2024-09-11 09:02:21.333899 2024-09-11 09:02:21.333903 mef 2297 R rec d9926126-ea25-45ef-a9a4-804db98597a6 +2024-09-11 09:02:21.441279 2024-09-11 09:02:21.441284 mef 2298 R rec 43045218-6671-4f0e-9754-caaec951c406 +2024-09-11 09:02:21.559407 2024-09-11 09:02:21.559412 mef 2299 R rec e4935bc5-f361-4e79-b1bc-a159ed4cdefe +2024-09-11 09:02:21.726096 2024-09-11 09:02:21.726102 mef 2300 R rec f9f0eb43-f364-4ea3-8a6c-e2e15e2402cd +2024-09-11 09:02:21.85892 2024-09-11 09:02:21.858925 mef 2301 R rec dcb99593-ccd1-4f00-a0a7-dc56695289fd +2024-09-11 09:02:22.002701 2024-09-11 09:02:22.002705 mef 2302 R rec 5b0de0ed-107a-4803-beae-4e2c47bab3b3 +2024-09-11 09:02:22.147786 2024-09-11 09:02:22.147791 mef 2303 R rec 90fcefd2-8a99-415b-be46-bd5ad2602825 +2024-09-11 09:02:22.214155 2024-09-11 09:02:22.214159 mef 2304 R rec 7573b759-c590-49bf-9eac-180e11f713ac +2024-09-11 09:02:22.270081 2024-09-11 09:02:22.270086 mef 2305 R rec 2b39ff20-21ab-417c-a445-6ad0488f61a3 +2024-09-11 09:02:22.331511 2024-09-11 09:02:22.331517 mef 2306 R rec e401a679-6a89-4792-adc9-0f7915a1e2c8 +2024-09-11 09:02:22.399782 2024-09-11 09:02:22.399786 mef 2307 R rec df6172db-9a60-4723-99dd-ac5d43e9576d +2024-09-11 09:02:22.460716 2024-09-11 09:02:22.460722 mef 2308 R rec 75faceb6-da4f-4d76-b379-11dbb85ef64c +2024-09-11 09:02:22.528207 2024-09-11 09:02:22.528211 mef 2309 R rec 51db655a-e0b0-4754-8320-d0d84b30890d +2024-09-11 09:02:22.580915 2024-09-11 09:02:22.580919 mef 2310 R rec b5c0164e-c5c8-4f6b-a843-2fa2e6ae3606 +2024-09-11 09:02:22.636965 2024-09-11 09:02:22.63697 mef 2311 R rec f6889c12-161d-474d-89a3-2f881f1e670a +2024-09-11 09:02:22.69485 2024-09-11 09:02:22.694854 mef 2312 R rec acd0fcac-e7c9-49ee-a862-7010ba57758b +2024-09-11 09:02:22.751517 2024-09-11 09:02:22.751521 mef 2313 R rec 5505fdd6-dfbf-4fa3-b356-26cd7801c272 +2024-09-11 09:02:22.810401 2024-09-11 09:02:22.810406 mef 2314 R rec 7872380d-2e8e-46d7-a802-0fc95c362c92 +2024-09-11 09:02:22.863027 2024-09-11 09:02:22.863031 mef 2315 R rec cefca21e-80db-410f-bf7a-eed1e61668bb +2024-09-11 09:02:22.917278 2024-09-11 09:02:22.917283 mef 2316 R rec 42bdc462-202d-4ef9-a8fe-ca133813d1c1 +2024-09-11 09:02:22.976273 2024-09-11 09:02:22.976278 mef 2317 R rec 8e175827-a876-4f04-9a7d-ce423da54e38 +2024-09-11 09:02:23.036279 2024-09-11 09:02:23.036284 mef 2318 R rec 81d5fe9f-c06a-42d6-9bb1-c5d137223148 +2024-09-11 09:02:23.10574 2024-09-11 09:02:23.105744 mef 2319 R rec f3101d90-6d15-43c4-b94e-46ae6e20c5f0 +2024-09-11 09:02:23.171152 2024-09-11 09:02:23.171157 mef 2320 R rec b5050cc5-fa6f-4273-a405-d95841225851 +2024-09-11 09:02:23.234589 2024-09-11 09:02:23.234594 mef 2321 R rec a0bc14b9-5ef9-4aab-90e4-748f5dc1a2bd +2024-09-11 09:02:23.299952 2024-09-11 09:02:23.299957 mef 2322 R rec 9eb8f2b6-356d-47e2-9e81-a99ffd23356f +2024-09-11 09:02:23.358739 2024-09-11 09:02:23.358745 mef 2323 R rec 3fab5daa-79e0-402b-baf7-a87c26e00c94 +2024-09-11 09:02:23.425869 2024-09-11 09:02:23.425874 mef 2324 R rec e7894af6-d27d-4f12-8f75-bb7a1ce06d63 +2024-09-11 09:02:23.48318 2024-09-11 09:02:23.483185 mef 2325 R rec 83fdc94c-4315-44b3-9cc0-60a453ab9015 +2024-09-11 09:02:23.543053 2024-09-11 09:02:23.543057 mef 2326 R rec 07a52ce0-283e-4ae8-8d4a-30959395a8a0 +2024-09-11 09:02:23.598742 2024-09-11 09:02:23.598746 mef 2327 R rec 47dfa011-6d16-486d-b2b7-5b3f81642548 +2024-09-11 09:02:23.656798 2024-09-11 09:02:23.656802 mef 2328 R rec 68d4cb32-2903-4fa8-b494-c6cb3bf0f19d +2024-09-11 09:02:23.712675 2024-09-11 09:02:23.71268 mef 2329 R rec c7730f49-807c-47fb-a408-127f5b29bb57 +2024-09-11 09:02:23.770583 2024-09-11 09:02:23.770587 mef 2330 R rec dd5b3a34-2bb0-4006-8ae1-6df524952fed +2024-09-11 09:02:23.824924 2024-09-11 09:02:23.824929 mef 2331 R rec 0695bbc7-81ab-4a33-9bdd-0614310d5237 +2024-09-11 09:02:23.896348 2024-09-11 09:02:23.896352 mef 2332 R rec bdc446f3-6821-47da-9b75-c3146e906409 +2024-09-11 09:02:23.950478 2024-09-11 09:02:23.950482 mef 2333 R rec 2b5665c4-472d-41d5-bcc0-003ac4bacc07 +2024-09-11 09:02:24.01043 2024-09-11 09:02:24.010434 mef 2334 R rec 2a0c8faa-9b2d-4e59-b487-41f0fa3ab7aa +2024-09-11 09:02:24.068094 2024-09-11 09:02:24.068099 mef 2335 R rec 7531ca83-eedd-46a6-b65f-e240708b4d2c +2024-09-11 09:02:24.123194 2024-09-11 09:02:24.123198 mef 2336 R rec 8ace0b69-6570-41ae-8026-9c928a76de8c +2024-09-11 09:02:24.182488 2024-09-11 09:02:24.182492 mef 2337 R rec cf054f1c-ed5b-4154-ba24-73fa4cf9eaed +2024-09-11 09:02:24.239177 2024-09-11 09:02:24.239181 mef 2338 R rec 0b19a29f-54f2-40cf-87fe-ba0f86588847 +2024-09-11 09:02:24.296126 2024-09-11 09:02:24.29613 mef 2339 R rec b4a4ebbc-71cb-4b7b-afa3-7c0b0f2f95aa +2024-09-11 09:02:24.351879 2024-09-11 09:02:24.351884 mef 2340 R rec 9becb309-3592-4dc5-95c4-dbc5dbaa95d4 +2024-09-11 09:02:24.426976 2024-09-11 09:02:24.42698 mef 2341 R rec 4614bb38-6503-4446-8481-16dcbecb4014 +2024-09-11 09:02:24.484313 2024-09-11 09:02:24.484317 mef 2342 R rec e20082ca-6663-4c21-9b3a-5feda554cf24 +2024-09-11 09:02:24.550273 2024-09-11 09:02:24.550278 mef 2343 R rec 226ae9b1-0579-47e6-8c97-91321e8ed935 +2024-09-11 09:02:24.623894 2024-09-11 09:02:24.623899 mef 2344 R rec 869945b9-6e48-483f-ab21-e27b41727731 +2024-09-11 09:02:24.685651 2024-09-11 09:02:24.685656 mef 2345 R rec 288994e4-efd8-4aa4-864b-0e9c170ade92 +2024-09-11 09:02:24.735834 2024-09-11 09:02:24.735838 mef 2346 R rec ecd3cc82-f7aa-4c2e-bf50-dd9f27070837 +2024-09-11 09:02:24.790867 2024-09-11 09:02:24.790872 mef 2347 R rec ecdb1b97-6114-4daf-8ac0-d28df32b7245 +2024-09-11 09:02:24.847289 2024-09-11 09:02:24.847293 mef 2348 R rec 13f7505e-9f58-4a32-bc49-117b13f22771 +2024-09-11 09:02:24.902487 2024-09-11 09:02:24.902491 mef 2349 R rec d7e35802-27c3-4607-95f8-00238152d5c3 +2024-09-11 09:02:24.959042 2024-09-11 09:02:24.959046 mef 2350 R rec 990ef6aa-b4f4-4a6f-9730-854a178ffa07 +2024-09-11 09:02:25.011501 2024-09-11 09:02:25.011506 mef 2351 R rec 49c0d56b-74d2-4b2a-bbfb-1ec6208404b3 +2024-09-11 09:02:25.069775 2024-09-11 09:02:25.06978 mef 2352 R rec c6e718c5-e4ca-46a0-ba56-9f16b7a55fbd +2024-09-11 09:02:25.125103 2024-09-11 09:02:25.125108 mef 2353 R rec f421b344-ce07-4f3d-a0be-63955265a8bb +2024-09-11 09:02:25.17802 2024-09-11 09:02:25.178025 mef 2354 R rec f40c0a48-246f-4033-8af0-363aff4cf2ba +2024-09-11 09:02:25.232524 2024-09-11 09:02:25.232529 mef 2355 R rec 154d1679-3f1e-48ae-a350-0bf36e34dc1e +2024-09-11 09:02:25.28865 2024-09-11 09:02:25.288654 mef 2356 R rec 484b70c9-ef8c-42a1-a433-59e7a6eb0028 +2024-09-11 09:02:25.347259 2024-09-11 09:02:25.347263 mef 2357 R rec ffc29141-bdb6-4d36-ab5f-5d2f0a3e3211 +2024-09-11 09:02:25.405271 2024-09-11 09:02:25.405276 mef 2358 R rec 3d275637-a5ea-4212-ab48-1b95b8f5e0b6 +2024-09-11 09:02:25.46821 2024-09-11 09:02:25.468214 mef 2359 R rec 2495f2f8-ae8f-4596-8939-504f8d4ed99b +2024-09-11 09:02:25.524168 2024-09-11 09:02:25.524173 mef 2360 R rec 8e0a20b0-689c-48b7-b98c-d0726fcdcfbb +2024-09-11 09:02:25.58351 2024-09-11 09:02:25.583515 mef 2361 R rec 6f513426-958a-4a7a-9d02-3a56e3ece173 +2024-09-11 09:02:25.64855 2024-09-11 09:02:25.648554 mef 2362 R rec 9c9624ad-7415-4b1f-8282-45d96def0d51 +2024-09-11 09:02:25.703312 2024-09-11 09:02:25.703318 mef 2363 R rec c3566cef-49fb-4c7d-a1ed-b0c45336afdc +2024-09-11 09:02:25.761941 2024-09-11 09:02:25.761945 mef 2364 R rec dcd4f32e-69c6-4873-a863-8acdee41d754 +2024-09-11 09:02:25.818666 2024-09-11 09:02:25.818671 mef 2365 R rec 8645c534-03bd-4a9d-b5b7-faed2bfbad7d +2024-09-11 09:02:25.887982 2024-09-11 09:02:25.887987 mef 2366 R rec bb30f3ed-523a-48a5-9373-75501cd2b2d5 +2024-09-11 09:02:25.942269 2024-09-11 09:02:25.942273 mef 2367 R rec ba272faf-feb4-4ef9-93f1-3751b62c4570 +2024-09-11 09:02:26.002554 2024-09-11 09:02:26.002559 mef 2368 R rec c813d964-ca5c-44cc-bedb-0ad048ea6e46 +2024-09-11 09:02:26.058074 2024-09-11 09:02:26.058079 mef 2369 R rec 0f3e4d7e-8735-4ba5-8a8e-29ac30e8d87e +2024-09-11 09:02:26.116237 2024-09-11 09:02:26.116242 mef 2370 R rec f19e17b5-18e1-417a-a304-df9dcbeec927 +2024-09-11 09:02:26.176921 2024-09-11 09:02:26.176927 mef 2371 R rec 0378fd2b-e758-4c62-9484-eba3b3bfbdfe +2024-09-11 09:02:26.234348 2024-09-11 09:02:26.234352 mef 2372 R rec a88531ee-27f5-455a-bdf4-a68298ee7697 +2024-09-11 09:02:26.286906 2024-09-11 09:02:26.28691 mef 2373 R rec 00ee06e7-9101-435b-9b19-02b29168caf0 +2024-09-11 09:02:26.345872 2024-09-11 09:02:26.345877 mef 2374 R rec e10a4089-50ca-46de-ba94-193ebece5d81 +2024-09-11 09:02:26.400611 2024-09-11 09:02:26.400616 mef 2375 R rec 652183e4-ca8e-426a-8c71-7bb511deb4f2 +2024-09-11 09:02:26.455691 2024-09-11 09:02:26.455695 mef 2376 R rec e9445ef4-269b-4959-8428-a95bc1259ad0 +2024-09-11 09:02:26.50745 2024-09-11 09:02:26.507455 mef 2377 R rec e562f83a-ac05-4e50-910b-421b89035572 +2024-09-11 09:02:26.573031 2024-09-11 09:02:26.573035 mef 2378 R rec 383bb2da-6b86-47cb-acfd-045a9cc46f08 +2024-09-11 09:02:26.627345 2024-09-11 09:02:26.62735 mef 2379 R rec de429e47-af51-4be4-ab49-00a8ba39a9b0 +2024-09-11 09:02:26.688311 2024-09-11 09:02:26.688315 mef 2380 R rec c7a25b48-4736-47b0-8576-d81000962982 +2024-09-11 09:02:26.743361 2024-09-11 09:02:26.743366 mef 2381 R rec f3c94666-eee1-49a0-8c2f-e5437cae479d +2024-09-11 09:02:26.801131 2024-09-11 09:02:26.801136 mef 2382 R rec 1786e33e-e447-4408-94bb-a0f47b0b7004 +2024-09-11 09:02:26.851591 2024-09-11 09:02:26.851595 mef 2383 R rec 3ae4632b-a7e6-483a-b8b0-c132640032fa +2024-09-11 09:02:26.905235 2024-09-11 09:02:26.90524 mef 2384 R rec 0edb1768-e1cd-47d7-8acc-4384566b07f0 +2024-09-11 09:02:26.962525 2024-09-11 09:02:26.96253 mef 2385 R rec fbf127cf-c14c-41a3-a6f2-0f22e10f386f +2024-09-11 09:02:27.018694 2024-09-11 09:02:27.018699 mef 2386 R rec afe9ff80-049d-4e5c-bf00-1d7a7c25e26d +2024-09-11 09:02:27.074443 2024-09-11 09:02:27.074448 mef 2387 R rec 24bd66b0-8cdd-4868-a143-4e8c1b3a9c60 +2024-09-11 09:02:27.12446 2024-09-11 09:02:27.124464 mef 2388 R rec 5d44c1d2-a6c7-4c3a-88f5-c8062005df07 +2024-09-11 09:02:27.185946 2024-09-11 09:02:27.18595 mef 2389 R rec 98957b9f-2fd1-4397-bb9a-c8c6dad3d22f +2024-09-11 09:02:27.239041 2024-09-11 09:02:27.239045 mef 2390 R rec 108cc9b5-4911-4a02-bfde-73a2fd3370ea +2024-09-11 09:02:27.292999 2024-09-11 09:02:27.293005 mef 2391 R rec ad18e0cb-d807-4d06-91a2-0c2809cf9108 +2024-09-11 09:02:27.344716 2024-09-11 09:02:27.344721 mef 2392 R rec f4455956-9032-49fe-9bb8-ec7e2e2d8df3 +2024-09-11 09:02:27.393433 2024-09-11 09:02:27.393438 mef 2393 R rec 4ecb961d-cab6-40b9-b67f-5ceb4e4b1dbb +2024-09-11 09:02:27.447301 2024-09-11 09:02:27.447306 mef 2394 R rec 16342ed1-b66d-40e8-a73d-efc88338178d +2024-09-11 09:02:27.526502 2024-09-11 09:02:27.526507 mef 2395 R rec 20a98553-26d7-4153-b37b-898ec7138103 +2024-09-11 09:02:27.602397 2024-09-11 09:02:27.602402 mef 2396 R rec 875b28e1-0eb9-42b5-b195-1d7ef578e205 +2024-09-11 09:02:27.662407 2024-09-11 09:02:27.662412 mef 2397 R rec 23d88c3f-a84d-4eb7-b3bf-35df1e53e3cf +2024-09-11 09:02:27.71522 2024-09-11 09:02:27.715225 mef 2398 R rec 3f3b4e81-da3b-4f4f-860a-93c129b70ca3 +2024-09-11 09:02:27.767745 2024-09-11 09:02:27.76775 mef 2399 R rec a1b388bb-640d-4e39-966f-4db8725524a6 +2024-09-11 09:02:27.817143 2024-09-11 09:02:27.817147 mef 2400 R rec 3d9ecc04-435f-4eb9-abfe-d61a59787f12 +2024-09-11 09:02:27.867276 2024-09-11 09:02:27.867281 mef 2401 R rec b7935e4f-f6bd-4d8b-86e1-846405b4feb2 +2024-09-11 09:02:27.921466 2024-09-11 09:02:27.92147 mef 2402 R rec f7865e46-d420-4182-8f0e-db6116537860 +2024-09-11 09:02:27.984971 2024-09-11 09:02:27.984976 mef 2403 R rec b52886ac-dd13-484d-99dd-a2f5733af739 +2024-09-11 09:02:28.041998 2024-09-11 09:02:28.042002 mef 2404 R rec 530567ec-bf78-4358-9ace-a3d138e8887a +2024-09-11 09:02:28.100207 2024-09-11 09:02:28.100213 mef 2405 R rec 22416db2-4ba9-407e-b3e1-1ea3ca7e7204 +2024-09-11 09:02:28.194707 2024-09-11 09:02:28.194713 mef 2406 R rec adfbfe86-0f85-4105-a9f0-c51475125057 +2024-09-11 09:02:28.259113 2024-09-11 09:02:28.259118 mef 2407 R rec 3099e95e-ba75-4008-abb5-5304bb175b7a +2024-09-11 09:02:28.321952 2024-09-11 09:02:28.321956 mef 2408 R rec 39149233-64a7-46ae-bfed-dcd9d57c41eb +2024-09-11 09:02:28.380691 2024-09-11 09:02:28.380697 mef 2409 R rec cd0cbb2e-16d3-48ea-ad36-2444b15775d4 +2024-09-11 09:02:28.435631 2024-09-11 09:02:28.435636 mef 2410 R rec 655bc506-5846-42fc-9152-82454de4cec7 +2024-09-11 09:02:28.493843 2024-09-11 09:02:28.493847 mef 2411 R rec d1824d58-5a3d-4e89-a092-f50b0f5475f1 +2024-09-11 09:02:28.553303 2024-09-11 09:02:28.553307 mef 2412 R rec da9df26f-69af-4642-8df3-0003147d6a78 +2024-09-11 09:02:28.604944 2024-09-11 09:02:28.604949 mef 2413 R rec c5d2971d-94c5-410e-82f8-e2d2c8595360 +2024-09-11 09:02:28.671076 2024-09-11 09:02:28.671081 mef 2414 R rec fa3446a8-b0fc-4a29-b955-27061acaf6dc +2024-09-11 09:02:28.738984 2024-09-11 09:02:28.738988 mef 2415 R rec f531bcf9-c1b3-43cf-bcd1-dc2219ed29bd +2024-09-11 09:02:28.794792 2024-09-11 09:02:28.794796 mef 2416 R rec 1ac959b7-d963-4a9e-a161-2334df2c55e2 +2024-09-11 09:02:28.851514 2024-09-11 09:02:28.851519 mef 2417 R rec c4cfacb7-0d8f-47c0-896f-94630862dd83 +2024-09-11 09:02:28.912284 2024-09-11 09:02:28.912289 mef 2418 R rec dd84e836-ef67-4887-8c8c-767407e3d9a7 +2024-09-11 09:02:28.966494 2024-09-11 09:02:28.966498 mef 2419 R rec 2119212f-6972-4017-a1e4-8a6aa28da43f +2024-09-11 09:02:29.019563 2024-09-11 09:02:29.019568 mef 2420 R rec 98c10617-0820-4b43-8f53-b5b495edfe41 +2024-09-11 09:02:29.073455 2024-09-11 09:02:29.07346 mef 2421 R rec 74e74b8f-29b4-4360-920a-1f6bf87c7236 +2024-09-11 09:02:29.121299 2024-09-11 09:02:29.121304 mef 2422 R rec 62bdaf7c-a92f-43a9-8613-0a9d666f94fb +2024-09-11 09:02:29.18534 2024-09-11 09:02:29.185346 mef 2423 R rec 9ddf4d74-ed96-4057-adea-b7cff1a715ba +2024-09-11 09:02:29.244492 2024-09-11 09:02:29.244497 mef 2424 R rec 77ecfd46-6ecc-4b14-94c0-153232be2055 +2024-09-11 09:02:29.304643 2024-09-11 09:02:29.304647 mef 2425 R rec 3c06efb9-682d-47b8-9a49-c611546f50f9 +2024-09-11 09:02:29.357579 2024-09-11 09:02:29.357584 mef 2426 R rec 396f201a-dbf6-4af2-aced-ddc4afee9aed +2024-09-11 09:02:29.416254 2024-09-11 09:02:29.416259 mef 2427 R rec 0c1695c1-626e-4f7e-a66f-64d35834f0ee +2024-09-11 09:02:29.471922 2024-09-11 09:02:29.471926 mef 2428 R rec c476a33c-5e25-4f6f-8f20-d1dcdc709d4f +2024-09-11 09:02:29.524707 2024-09-11 09:02:29.524712 mef 2429 R rec 96a3c4fe-b271-465e-ac88-0aaa2e9613a7 +2024-09-11 09:02:29.576286 2024-09-11 09:02:29.576292 mef 2430 R rec 7f1247c1-c15e-4be0-91ad-aa4a54f2c3bb +2024-09-11 09:02:29.62655 2024-09-11 09:02:29.626555 mef 2431 R rec a544f871-177b-4658-8f43-466f48fda67a +2024-09-11 09:02:29.678101 2024-09-11 09:02:29.678106 mef 2432 R rec cc7e9815-4603-47e2-9046-6b440d40dea8 +2024-09-11 09:02:29.733538 2024-09-11 09:02:29.733542 mef 2433 R rec e78156d4-e4cf-41b9-89cd-7614d4e4d348 +2024-09-11 09:02:29.785851 2024-09-11 09:02:29.785854 mef 2434 R rec 610c9db8-40e1-42d0-8dd8-ce297ee16d26 +2024-09-11 09:02:29.845115 2024-09-11 09:02:29.84512 mef 2435 R rec 212517ad-c861-40a9-a277-04873a0a4e7d +2024-09-11 09:02:29.895527 2024-09-11 09:02:29.895532 mef 2436 R rec 37d70371-0661-45ca-b421-c8cdb160ad37 +2024-09-11 09:02:29.946856 2024-09-11 09:02:29.946861 mef 2437 R rec ad54bcb2-1ba5-4f5e-86e1-affb40757830 +2024-09-11 09:02:30.004228 2024-09-11 09:02:30.004232 mef 2438 R rec e30bd113-bd6b-4995-a032-56e9d75398ab +2024-09-11 09:02:30.064602 2024-09-11 09:02:30.064607 mef 2439 R rec f463df74-22bb-4520-ba8e-28d61ef5e2c1 +2024-09-11 09:02:30.124076 2024-09-11 09:02:30.124082 mef 2440 R rec 7d3b71f5-7bc2-4e68-94ee-582caf7a5a34 +2024-09-11 09:02:30.201424 2024-09-11 09:02:30.201428 mef 2441 R rec 806e0b00-293b-4eb2-9fd2-d04391845700 +2024-09-11 09:02:30.255211 2024-09-11 09:02:30.255216 mef 2442 R rec d2e293d4-4486-4f96-be68-6df6bf9d6fc5 +2024-09-11 09:02:30.309387 2024-09-11 09:02:30.30939 mef 2443 R rec 44a1446e-c9a8-44fd-b93d-77ee776acb83 +2024-09-11 09:02:30.360559 2024-09-11 09:02:30.360564 mef 2444 R rec efc327fd-feef-4b8a-9552-2f85f1f12ba9 +2024-09-11 09:02:30.411574 2024-09-11 09:02:30.411579 mef 2445 R rec a206a9ba-5efb-4a93-b682-5f1965070c21 +2024-09-11 09:02:30.466638 2024-09-11 09:02:30.466642 mef 2446 R rec 1846e918-f846-4dd2-a909-f2a3f3157e60 +2024-09-11 09:02:30.51592 2024-09-11 09:02:30.515924 mef 2447 R rec c891641b-00b6-4d7a-9945-1daa16a58d2d +2024-09-11 09:02:30.571206 2024-09-11 09:02:30.571211 mef 2448 R rec 36cd5921-ddad-4be4-ad40-c612f575a77c +2024-09-11 09:02:30.628425 2024-09-11 09:02:30.62843 mef 2449 R rec 3d42e770-9800-4953-ba9a-0bafec3370a1 +2024-09-11 09:02:30.690788 2024-09-11 09:02:30.690792 mef 2450 R rec 1177a969-9dfe-45f6-8c7f-87bf60273b55 +2024-09-11 09:02:30.748181 2024-09-11 09:02:30.748186 mef 2451 R rec 9ec76c65-63ea-41ae-96c0-c118aadf1871 +2024-09-11 09:02:30.812059 2024-09-11 09:02:30.812063 mef 2452 R rec 9dc1326f-2bb0-41ae-91f3-aa65eee40492 +2024-09-11 09:02:30.868018 2024-09-11 09:02:30.868022 mef 2453 R rec e391daa3-e433-49c9-b67d-631564d9658b +2024-09-11 09:02:30.921438 2024-09-11 09:02:30.921442 mef 2454 R rec 16c87971-474e-492e-8871-8ac4b57d049c +2024-09-11 09:02:30.987037 2024-09-11 09:02:30.987041 mef 2455 R rec 04d386b7-c9f2-4ae7-b5ff-987589939313 +2024-09-11 09:02:31.055969 2024-09-11 09:02:31.055974 mef 2456 R rec d1dfef07-c8a8-4b28-8dbc-0f63b36c1c07 +2024-09-11 09:02:31.120772 2024-09-11 09:02:31.120776 mef 2457 R rec d9bf9d8b-2d96-44f7-9ec1-ee4f890c7b4c +2024-09-11 09:02:31.172406 2024-09-11 09:02:31.17241 mef 2458 R rec 692b9fbb-3088-4c03-b36a-9897702c7b62 +2024-09-11 09:02:31.225465 2024-09-11 09:02:31.22547 mef 2459 R rec addb0bea-b297-44cd-9265-e3f91e829b2c +2024-09-11 09:02:31.277367 2024-09-11 09:02:31.277372 mef 2460 R rec abbf607f-7fa8-4142-80cd-1443f1a973cd +2024-09-11 09:02:31.334989 2024-09-11 09:02:31.334993 mef 2461 R rec 79286467-ed07-4e11-9739-8683ed502cef +2024-09-11 09:02:31.388612 2024-09-11 09:02:31.388616 mef 2462 R rec 5252ccb0-d5f5-4ea9-9ada-b7097ed29902 +2024-09-11 09:02:31.442328 2024-09-11 09:02:31.442333 mef 2463 R rec 0034d71a-dada-42f6-a92d-240b9cee46aa +2024-09-11 09:02:31.494946 2024-09-11 09:02:31.49495 mef 2464 R rec a490033b-c315-4b25-9ad3-e63cadbc7802 +2024-09-11 09:02:31.550745 2024-09-11 09:02:31.55075 mef 2465 R rec e6cad635-b0e6-4389-8e71-a01b83a0ed68 +2024-09-11 09:02:31.629672 2024-09-11 09:02:31.629677 mef 2466 R rec c6f7f5ce-52da-44fc-bb57-18c46a9d3d8e +2024-09-11 09:02:31.6853 2024-09-11 09:02:31.685304 mef 2467 R rec 1cd0d83c-7cb9-423b-9624-69689affa0d6 +2024-09-11 09:02:31.755948 2024-09-11 09:02:31.755952 mef 2468 R rec bc12850e-4be9-49c5-a246-6fe74eabb1e9 +2024-09-11 09:02:31.810201 2024-09-11 09:02:31.810206 mef 2469 R rec 5bfc7ac8-41bf-4294-9ed2-136a0321d9d7 +2024-09-11 09:02:31.862784 2024-09-11 09:02:31.862788 mef 2470 R rec 4caef9c5-c0b8-499b-939f-6e046b6c9305 +2024-09-11 09:02:31.916711 2024-09-11 09:02:31.916717 mef 2471 R rec d15e2c12-07bf-4edb-8085-9a15ce6a1da2 +2024-09-11 09:02:31.981362 2024-09-11 09:02:31.981367 mef 2472 R rec 3ed7c68c-5753-4479-be34-d52925945db5 +2024-09-11 09:02:32.036844 2024-09-11 09:02:32.036849 mef 2473 R rec b6df5e18-4d75-48b6-8212-c140fb099f72 +2024-09-11 09:02:32.091088 2024-09-11 09:02:32.091093 mef 2474 R rec a76171a0-c4c2-4381-8b6c-477cefce1d04 +2024-09-11 09:02:32.14345 2024-09-11 09:02:32.143455 mef 2475 R rec 04a6e2bd-029b-4472-b070-2386b74c97a7 +2024-09-11 09:02:32.196896 2024-09-11 09:02:32.1969 mef 2476 R rec 4f7bc5ce-fa4a-4c72-b281-4c7cdeb185e2 +2024-09-11 09:02:32.247349 2024-09-11 09:02:32.247354 mef 2477 R rec 390a43f1-3404-481f-a154-f82052916dad +2024-09-11 09:02:32.304038 2024-09-11 09:02:32.304043 mef 2478 R rec b3cd85be-04fa-47c6-89bc-a36414944e8b +2024-09-11 09:02:32.367431 2024-09-11 09:02:32.367435 mef 2479 R rec be2d67da-453f-4e25-8de6-358e5385cf2a +2024-09-11 09:02:32.418554 2024-09-11 09:02:32.418558 mef 2480 R rec b608ffd9-25e5-407d-8250-a5b117c68ec0 +2024-09-11 09:02:32.475636 2024-09-11 09:02:32.475641 mef 2481 R rec 26939802-eb85-4b48-8823-6480791b4ddb +2024-09-11 09:02:32.537703 2024-09-11 09:02:32.537708 mef 2482 R rec b992e991-23b1-4833-ac12-e5a5fea27763 +2024-09-11 09:02:32.596305 2024-09-11 09:02:32.59631 mef 2483 R rec 237a6870-0e3a-4991-ae2f-f5b77096e3e5 +2024-09-11 09:02:32.645697 2024-09-11 09:02:32.645703 mef 2484 R rec 9ce4d1ca-9f67-4d98-9344-be70f83c8305 +2024-09-11 09:02:32.69658 2024-09-11 09:02:32.696586 mef 2485 R rec 82eb03f3-a438-4eca-b460-6e559f149a2b +2024-09-11 09:02:32.748037 2024-09-11 09:02:32.748042 mef 2486 R rec 28b940ff-4b97-44d8-9144-b25cb0fc621d +2024-09-11 09:02:32.836121 2024-09-11 09:02:32.836126 mef 2487 R rec 8d6b2d0d-a4d2-45fc-a4d1-2cb348e5f127 +2024-09-11 09:02:32.890239 2024-09-11 09:02:32.890244 mef 2488 R rec e6aa54e6-be53-427d-824f-5a262f835036 +2024-09-11 09:02:32.949166 2024-09-11 09:02:32.949171 mef 2489 R rec a999fc58-0879-433b-976f-11343490ca61 +2024-09-11 09:02:33.006707 2024-09-11 09:02:33.006711 mef 2490 R rec fd0d65b1-580f-497a-913c-e21cef8873e1 +2024-09-11 09:02:33.100942 2024-09-11 09:02:33.100947 mef 2491 R rec 4f7d5dac-7145-42e7-9559-09724147399a +2024-09-11 09:02:33.153767 2024-09-11 09:02:33.153772 mef 2492 R rec f467203b-7b0a-40d6-9afe-cc0c40484e70 +2024-09-11 09:02:33.208432 2024-09-11 09:02:33.208437 mef 2493 R rec 52b6563d-a734-4045-b58f-2c9e6d038a4b +2024-09-11 09:02:33.264485 2024-09-11 09:02:33.26449 mef 2494 R rec 15c30cc3-8a9b-49e3-8606-ff1b94e90ac3 +2024-09-11 09:02:33.322594 2024-09-11 09:02:33.322599 mef 2495 R rec af473322-651a-4a80-8d96-9c2a6221cf36 +2024-09-11 09:02:33.390792 2024-09-11 09:02:33.390796 mef 2496 R rec 6e536bd2-59c8-4bdd-be2b-39493f1f6c1c +2024-09-11 09:02:33.441921 2024-09-11 09:02:33.441925 mef 2497 R rec f43cfab9-fe42-4169-be51-f5eb728552bd +2024-09-11 09:02:33.496666 2024-09-11 09:02:33.49667 mef 2498 R rec 5bb9421c-f095-468d-beb3-8a77b631e5fc +2024-09-11 09:02:33.546276 2024-09-11 09:02:33.54628 mef 2499 R rec 858304f1-f280-4f78-bd5b-1a62d987e2a7 +2024-09-11 09:02:33.616049 2024-09-11 09:02:33.616053 mef 2500 R rec 07449379-6620-43a3-9353-9de2046324eb +2024-09-11 09:02:33.677419 2024-09-11 09:02:33.677424 mef 2501 R rec b1797ae6-50fd-47ce-9268-c30efd5c852a +2024-09-11 09:02:33.735818 2024-09-11 09:02:33.735823 mef 2502 R rec 2f0621d4-15da-4b6c-9056-c33874ebf17b +2024-09-11 09:02:33.790542 2024-09-11 09:02:33.790547 mef 2503 R rec fc291cb0-d810-4075-90f3-8900e49fb3cd +2024-09-11 09:02:33.853021 2024-09-11 09:02:33.853026 mef 2504 R rec 2e93486f-280b-4452-91ff-88f2fde5804e +2024-09-11 09:02:33.91525 2024-09-11 09:02:33.915255 mef 2505 R rec 6112ea0e-909c-4fc9-8367-3a3e07e78125 +2024-09-11 09:02:33.965606 2024-09-11 09:02:33.96561 mef 2506 R rec 33979481-9cb0-40dd-a2d2-b2923f6cbf7a +2024-09-11 09:02:34.021246 2024-09-11 09:02:34.021251 mef 2507 R rec 8079e32c-5fc2-48af-918d-06ed0cabc4fd +2024-09-11 09:02:34.084132 2024-09-11 09:02:34.084136 mef 2508 R rec 34a7b9bd-5715-4711-843d-39b8f266c7cb +2024-09-11 09:02:34.136137 2024-09-11 09:02:34.136143 mef 2509 R rec d440b661-e28f-41ff-874d-e2a13aa9a9bf +2024-09-11 09:02:34.187554 2024-09-11 09:02:34.187558 mef 2510 R rec 5105d36a-dafe-47d8-a663-22dbe810a6d9 +2024-09-11 09:02:34.279084 2024-09-11 09:02:34.279089 mef 2511 R rec c04ac082-19cc-41c0-8684-ae9527de8de5 +2024-09-11 09:02:34.325972 2024-09-11 09:02:34.325977 mef 2512 R rec e799251d-6583-4272-9e06-9d8f7e01991a +2024-09-11 09:02:34.377603 2024-09-11 09:02:34.377607 mef 2513 R rec 2cf1c6c5-9add-4b58-9235-96ed15d5a35c +2024-09-11 09:02:34.433852 2024-09-11 09:02:34.433857 mef 2514 R rec db3b04da-2865-4c73-85a6-fe400de20e71 +2024-09-11 09:02:34.482276 2024-09-11 09:02:34.482281 mef 2515 R rec 9934d861-8214-46cd-879f-ef431ef0cfe6 +2024-09-11 09:02:34.532339 2024-09-11 09:02:34.532343 mef 2516 R rec 02269dd5-1d8f-406a-a4ce-18dfb5e33a31 +2024-09-11 09:02:34.582345 2024-09-11 09:02:34.58235 mef 2517 R rec ccfda8f8-8b0a-416e-b78a-b4ff06de2d42 +2024-09-11 09:02:34.634046 2024-09-11 09:02:34.634051 mef 2518 R rec eb5bea25-66a5-4287-b97c-150aeee84ee4 +2024-09-11 09:02:34.685856 2024-09-11 09:02:34.68586 mef 2519 R rec 244babc7-dc71-4462-bbd2-d5c9a6193088 +2024-09-11 09:02:34.736769 2024-09-11 09:02:34.736773 mef 2520 R rec 81617a58-ebb0-48cd-aebe-8f980cb51cc7 +2024-09-11 09:02:34.788158 2024-09-11 09:02:34.788161 mef 2521 R rec ad9b9707-8053-4e4f-85a7-30a97d7a4fe7 +2024-09-11 09:02:34.841305 2024-09-11 09:02:34.841309 mef 2522 R rec 7e145263-8e73-41f7-9f52-c7af87a42e3b +2024-09-11 09:02:34.903518 2024-09-11 09:02:34.903523 mef 2523 R rec 8f8e9179-bd94-4a5d-8b49-c5243074ee78 +2024-09-11 09:02:34.953152 2024-09-11 09:02:34.953157 mef 2524 R rec 29eb64d0-2e68-4927-873b-00f0c5311338 +2024-09-11 09:02:35.003706 2024-09-11 09:02:35.00371 mef 2525 R rec 4eab4ed5-e48b-448f-9c44-4e5fd49d3f32 +2024-09-11 09:02:35.055527 2024-09-11 09:02:35.055532 mef 2526 R rec 75b9a31c-4cc2-4280-92cd-03458c5723a0 +2024-09-11 09:02:35.104143 2024-09-11 09:02:35.104147 mef 2527 R rec 26b4becc-648a-4dcd-8893-d1cc02c71aa8 +2024-09-11 09:02:35.155242 2024-09-11 09:02:35.155246 mef 2528 R rec 39ca7e4e-d727-4c43-a72e-59c30dfbd0a8 +2024-09-11 09:02:35.204234 2024-09-11 09:02:35.204239 mef 2529 R rec 146aa2ad-d527-4f46-b6c4-278021b1ab7b +2024-09-11 09:02:35.251747 2024-09-11 09:02:35.251752 mef 2530 R rec f0a6823a-92f0-41fd-b87a-4051c012614a +2024-09-11 09:02:35.30418 2024-09-11 09:02:35.304187 mef 2531 R rec 1b14cf00-b182-49c0-a6d0-f848f0006cf5 +2024-09-11 09:02:35.368731 2024-09-11 09:02:35.368735 mef 2532 R rec 7c4be30d-2e86-4070-83ee-bdb2838b192e +2024-09-11 09:02:35.421866 2024-09-11 09:02:35.421871 mef 2533 R rec 758c901c-755a-41bf-8789-db859a13ecf4 +2024-09-11 09:02:35.472155 2024-09-11 09:02:35.472159 mef 2534 R rec 5be4ea9a-3b6d-4d4d-aaa3-90e7ed1b33b7 +2024-09-11 09:02:35.520866 2024-09-11 09:02:35.520869 mef 2535 R rec c980a474-a495-489c-927a-3967307522bc +2024-09-11 09:02:35.572798 2024-09-11 09:02:35.572801 mef 2536 R rec cb3c02d1-63ad-4188-85dd-76f59a3b4ec2 +2024-09-11 09:02:35.623905 2024-09-11 09:02:35.62391 mef 2537 R rec ccf4f5aa-7d16-44eb-9469-037b93826d50 +2024-09-11 09:02:35.678449 2024-09-11 09:02:35.678454 mef 2538 R rec 9fdc9bfb-584d-4543-9525-9d0c64710e2d +2024-09-11 09:02:35.734122 2024-09-11 09:02:35.734127 mef 2539 R rec 583ff2e1-2915-4fcd-a673-f35175884fae +2024-09-11 09:02:35.801128 2024-09-11 09:02:35.801132 mef 2540 R rec 80e328ed-c076-463e-b1b2-dcb353f64863 +2024-09-11 09:02:35.849854 2024-09-11 09:02:35.849858 mef 2541 R rec caf95911-656b-4852-8e7a-8209608c78f5 +2024-09-11 09:02:35.897992 2024-09-11 09:02:35.897997 mef 2542 R rec 5599f959-00ff-4554-a4f4-ea03441c5735 +2024-09-11 09:02:35.949083 2024-09-11 09:02:35.949087 mef 2543 R rec 19c05eb8-2552-4b33-b999-26bbbcb4ba7a +2024-09-11 09:02:36.002245 2024-09-11 09:02:36.002249 mef 2544 R rec fbaac69d-21ba-48fb-8b71-a8c58be22477 +2024-09-11 09:02:36.05804 2024-09-11 09:02:36.058045 mef 2545 R rec ac1bdc52-8c09-4d3c-afa7-560b6ed13aac +2024-09-11 09:02:36.118414 2024-09-11 09:02:36.118418 mef 2546 R rec fe58ce5b-e2ce-4fec-99e7-c5cecadd0c98 +2024-09-11 09:02:36.168825 2024-09-11 09:02:36.168829 mef 2547 R rec 6d01e7e0-4da0-4885-b143-1ea4cc705f6a +2024-09-11 09:02:36.222143 2024-09-11 09:02:36.222147 mef 2548 R rec a29932b9-143d-47ab-b181-9615de221a5c +2024-09-11 09:02:36.278766 2024-09-11 09:02:36.278771 mef 2549 R rec 7758f047-911b-4d03-b686-f78828b10b6a +2024-09-11 09:02:36.34146 2024-09-11 09:02:36.341465 mef 2550 R rec d41a38cc-4c7a-4238-a633-4f11d2c25ed0 +2024-09-11 09:02:36.393689 2024-09-11 09:02:36.393695 mef 2551 R rec b8b495c9-637a-42b4-94b7-0cf6d26535c0 +2024-09-11 09:02:36.454031 2024-09-11 09:02:36.454035 mef 2552 R rec c66e1272-ac19-4e76-9167-34ce38e57ac1 +2024-09-11 09:02:36.504933 2024-09-11 09:02:36.504937 mef 2553 R rec ca7251ec-8a90-40cd-a0c3-19a446c460a5 +2024-09-11 09:02:36.558595 2024-09-11 09:02:36.5586 mef 2554 R rec 4898a2a1-d793-404f-a37c-0f4f503f0eb4 +2024-09-11 09:02:36.619903 2024-09-11 09:02:36.619908 mef 2555 R rec 6e74021e-0c40-40f9-8f77-fd56cd1d3701 +2024-09-11 09:02:36.676094 2024-09-11 09:02:36.676099 mef 2556 R rec 633b7373-17c3-49e7-bfc4-19efc5343981 +2024-09-11 09:02:36.732057 2024-09-11 09:02:36.732062 mef 2557 R rec 681a5df2-6438-4dc8-81f7-6aede3d4f8b7 +2024-09-11 09:02:36.788129 2024-09-11 09:02:36.788134 mef 2558 R rec 752fc13d-7178-4d22-8ca5-f36970e81aa1 +2024-09-11 09:02:36.838445 2024-09-11 09:02:36.83845 mef 2559 R rec 32a3e292-0e4f-403c-99bb-e5701d7c7b33 +2024-09-11 09:02:36.892781 2024-09-11 09:02:36.892786 mef 2560 R rec feff9d81-d8cf-4f61-b48e-bc2f1bb7950c +2024-09-11 09:02:36.959723 2024-09-11 09:02:36.959727 mef 2561 R rec 31608e0c-e02d-45f1-8ac7-44813ab5bab2 +2024-09-11 09:02:37.013605 2024-09-11 09:02:37.01361 mef 2562 R rec 8cf5baaf-77f2-41ba-b34b-c7376426603c +2024-09-11 09:02:37.076658 2024-09-11 09:02:37.076663 mef 2563 R rec 9305ae07-f6a1-4060-9600-60f2a7882717 +2024-09-11 09:02:37.160613 2024-09-11 09:02:37.160618 mef 2564 R rec 761fcc82-d700-4067-a869-16794de36588 +2024-09-11 09:02:37.211136 2024-09-11 09:02:37.211141 mef 2565 R rec 9a9fdc24-89df-4e28-88bc-6e4ff5558940 +2024-09-11 09:02:37.263046 2024-09-11 09:02:37.263051 mef 2566 R rec b8de812e-a315-4d91-bc90-0fc6294dbefa +2024-09-11 09:02:37.314403 2024-09-11 09:02:37.314408 mef 2567 R rec b5aef1f1-d1a6-49bf-ab80-8f7a731080f8 +2024-09-11 09:02:37.36821 2024-09-11 09:02:37.368216 mef 2568 R rec b95bc268-e03c-41da-80dc-e1602314b6c0 +2024-09-11 09:02:37.426243 2024-09-11 09:02:37.426248 mef 2569 R rec 1b09b158-7210-457f-9caf-48478e809b53 +2024-09-11 09:02:37.47992 2024-09-11 09:02:37.479925 mef 2570 R rec a0528385-310a-4dac-9e0c-aa4eda048e0f +2024-09-11 09:02:37.543386 2024-09-11 09:02:37.543391 mef 2571 R rec 71ad348f-2e54-4cb2-80f9-7d90612171fc +2024-09-11 09:02:37.596995 2024-09-11 09:02:37.597001 mef 2572 R rec 4dbb87e9-1899-46b1-af0a-8be1287f055a +2024-09-11 09:02:37.651536 2024-09-11 09:02:37.651541 mef 2573 R rec c5c707e5-d874-4893-a737-97b4109b8b85 +2024-09-11 09:02:37.751359 2024-09-11 09:02:37.751364 mef 2574 R rec 5641fbaa-24a8-4537-959c-c770e2629ed4 +2024-09-11 09:02:37.809438 2024-09-11 09:02:37.809443 mef 2575 R rec 2b35eb7a-1357-4613-8c38-a1d86da55d6d +2024-09-11 09:02:37.863408 2024-09-11 09:02:37.863413 mef 2576 R rec 3bdc112b-0774-4ffc-b08d-833fde4a899d +2024-09-11 09:02:37.92338 2024-09-11 09:02:37.923384 mef 2577 R rec b5c1f7f6-9e70-4de9-b56e-81d1598df31e +2024-09-11 09:02:37.985783 2024-09-11 09:02:37.985788 mef 2578 R rec 3e91e1bb-d2e4-43ff-9031-75ab9baf0fc8 +2024-09-11 09:02:38.051231 2024-09-11 09:02:38.051236 mef 2579 R rec de70fc21-9134-4a9d-a1fa-b5f39719ee96 +2024-09-11 09:02:38.102681 2024-09-11 09:02:38.102685 mef 2580 R rec a8afcd70-c61b-4519-9cc0-298f56c6cdfa +2024-09-11 09:02:38.161609 2024-09-11 09:02:38.161614 mef 2581 R rec 5668e176-b3b2-46a9-9b93-fe47e7b7f7f8 +2024-09-11 09:02:38.211668 2024-09-11 09:02:38.211673 mef 2582 R rec 229c7ce6-64bf-4641-bb79-81cfc4bf76a0 +2024-09-11 09:02:38.264807 2024-09-11 09:02:38.264811 mef 2583 R rec 0e8cf925-72dd-4e3a-a20a-6217490e404b +2024-09-11 09:02:38.313725 2024-09-11 09:02:38.31373 mef 2584 R rec 457c33d6-0334-49f6-835d-b6472a611c40 +2024-09-11 09:02:38.366747 2024-09-11 09:02:38.366752 mef 2585 R rec 39a41f4b-6122-42b4-b14b-3521923052ca +2024-09-11 09:02:38.417422 2024-09-11 09:02:38.417427 mef 2586 R rec c62da66d-9c6e-498c-8ff7-d28ddfd3d638 +2024-09-11 09:02:38.470449 2024-09-11 09:02:38.470453 mef 2587 R rec 3f1f6291-22f7-4f00-9a6c-dab84f2f5810 +2024-09-11 09:02:38.534383 2024-09-11 09:02:38.534389 mef 2588 R rec a4572231-0ad5-40cf-bb8f-3f1afe599905 +2024-09-11 09:02:38.590249 2024-09-11 09:02:38.590253 mef 2589 R rec 1f95870e-180e-460b-a497-28703de9d684 +2024-09-11 09:02:38.646924 2024-09-11 09:02:38.646929 mef 2590 R rec c8b7438d-3736-48ec-9579-20bb58e9da5e +2024-09-11 09:02:38.708846 2024-09-11 09:02:38.708849 mef 2591 R rec c2767f64-2e67-4daa-bbbf-560784cade24 +2024-09-11 09:02:38.764561 2024-09-11 09:02:38.764566 mef 2592 R rec a45dd151-c59d-4a84-880e-c8cdec09cea6 +2024-09-11 09:02:38.817936 2024-09-11 09:02:38.817941 mef 2593 R rec 96b7408a-4f5c-4d76-bbbb-dd32eb5f51b3 +2024-09-11 09:02:38.88346 2024-09-11 09:02:38.883464 mef 2594 R rec 7ae6893a-95c9-4986-87e7-90d6ba1a01c5 +2024-09-11 09:02:38.936465 2024-09-11 09:02:38.936469 mef 2595 R rec b708f09c-8841-4634-8679-809058178aa7 +2024-09-11 09:02:38.992634 2024-09-11 09:02:38.992639 mef 2596 R rec bed2f7d6-c387-4f2b-bd6b-49ab86629df7 +2024-09-11 09:02:39.044091 2024-09-11 09:02:39.044095 mef 2597 R rec 0e63bad7-96e3-4725-9762-99aa9e2d0b44 +2024-09-11 09:02:39.099571 2024-09-11 09:02:39.099576 mef 2598 R rec 3af3a6b3-4e74-41c7-9894-67ab8a65b646 +2024-09-11 09:02:39.152346 2024-09-11 09:02:39.15235 mef 2599 R rec 25ace025-9d4a-45c9-b021-da54083c05c0 +2024-09-11 09:02:39.223417 2024-09-11 09:02:39.223421 mef 2600 R rec ac03d99a-f4ac-456f-935c-591c424e78ce +2024-09-11 09:02:39.276751 2024-09-11 09:02:39.276756 mef 2601 R rec 4843a7e4-9c66-417c-aca9-178e7c4e0f4d +2024-09-11 09:02:39.336835 2024-09-11 09:02:39.33684 mef 2602 R rec 354da078-3f1e-4602-9b75-b6cfb2331f66 +2024-09-11 09:02:39.38798 2024-09-11 09:02:39.387984 mef 2603 R rec 9e41844e-af62-48a3-8c81-91af823d7edf +2024-09-11 09:02:39.437653 2024-09-11 09:02:39.437656 mef 2604 R rec 610320fa-d4bc-40bc-a8f3-bc955bfae0d6 +2024-09-11 09:02:39.489238 2024-09-11 09:02:39.489243 mef 2605 R rec 8937a7fb-9366-4c75-8fc4-703d2a2e3cc7 +2024-09-11 09:02:39.539 2024-09-11 09:02:39.539005 mef 2606 R rec 133c559f-3cdc-45c7-8ba1-2458519fb1b8 +2024-09-11 09:02:39.592878 2024-09-11 09:02:39.592883 mef 2607 R rec ea892d43-3337-486c-aad3-d6e342f7df6f +2024-09-11 09:02:39.646779 2024-09-11 09:02:39.646784 mef 2608 R rec 6f464b24-a508-45be-a312-26f9a972c659 +2024-09-11 09:02:39.706883 2024-09-11 09:02:39.706888 mef 2609 R rec c1532263-12fb-47f8-a621-bac99c6926b8 +2024-09-11 09:02:39.765935 2024-09-11 09:02:39.765939 mef 2610 R rec 95a4f736-47e7-4a7e-81e4-4dac6c4450b5 +2024-09-11 09:02:39.82329 2024-09-11 09:02:39.823295 mef 2611 R rec b77ffcea-7d65-464b-857a-861bdcacfb5f +2024-09-11 09:02:39.898339 2024-09-11 09:02:39.898343 mef 2612 R rec 9496a9e5-7a48-4741-b23a-52bac0bc9471 +2024-09-11 09:02:39.968807 2024-09-11 09:02:39.968812 mef 2613 R rec b1f74313-09b4-4c6d-a66a-3e0c3d9fe6f7 +2024-09-11 09:02:40.133992 2024-09-11 09:02:40.133996 mef 2614 R rec e332913b-536b-425f-b5bb-a1d5b163083c +2024-09-11 09:02:40.264113 2024-09-11 09:02:40.264118 mef 2615 R rec 4de60beb-5139-4bdc-9cad-5feba6a63cba +2024-09-11 09:02:40.34006 2024-09-11 09:02:40.340064 mef 2616 R rec bc2fa577-3d8e-412a-bf0c-758f21ec43ad +2024-09-11 09:02:40.394515 2024-09-11 09:02:40.394519 mef 2617 R rec 2e78d94b-d870-470b-a2c6-bca9d642bbbd +2024-09-11 09:02:40.452232 2024-09-11 09:02:40.452236 mef 2618 R rec 216256d3-4ffd-4c36-82ab-1c73da22a600 +2024-09-11 09:02:40.505002 2024-09-11 09:02:40.505009 mef 2619 R rec 996d48c5-2bed-4fc8-902a-7d3377269946 +2024-09-11 09:02:40.562762 2024-09-11 09:02:40.562767 mef 2620 R rec f0ada707-c5b7-4815-aef4-199b379f9e11 +2024-09-11 09:02:40.619568 2024-09-11 09:02:40.619572 mef 2621 R rec 813903fa-6fcc-449b-ad0f-1efaabefdc9d +2024-09-11 09:02:40.670951 2024-09-11 09:02:40.670957 mef 2622 R rec 5a82868b-c07e-4ba9-ba4f-7e949519104e +2024-09-11 09:02:40.727579 2024-09-11 09:02:40.727584 mef 2623 R rec d061327e-8d39-4630-a7b0-062e42564a4b +2024-09-11 09:02:40.782867 2024-09-11 09:02:40.782871 mef 2624 R rec c1612a0a-debd-45f3-9ebd-cbd8de4e5c69 +2024-09-11 09:02:40.845519 2024-09-11 09:02:40.845523 mef 2625 R rec 3ab1f82f-ff3d-4ee1-b9e8-566182164f7e +2024-09-11 09:02:40.907462 2024-09-11 09:02:40.907465 mef 2626 R rec 307f588b-a800-4d3e-a326-b401ecb6de6c +2024-09-11 09:02:40.96209 2024-09-11 09:02:40.962094 mef 2627 R rec 104d5e60-9478-4fc1-bfd2-8f1576201b63 +2024-09-11 09:02:41.019403 2024-09-11 09:02:41.019407 mef 2628 R rec 0f02d912-9ca8-44a9-9bfb-ff225b5a0b97 +2024-09-11 09:02:41.079786 2024-09-11 09:02:41.079792 mef 2629 R rec 57e74db8-d33b-4b7e-96f2-aa02ac4d1959 +2024-09-11 09:02:41.135455 2024-09-11 09:02:41.13546 mef 2630 R rec b625acb5-6165-41c7-af41-34c73294e64d +2024-09-11 09:02:41.185217 2024-09-11 09:02:41.185222 mef 2631 R rec e7f2f905-372b-44b3-8912-53e6878e3b47 +2024-09-11 09:02:41.237674 2024-09-11 09:02:41.237678 mef 2632 R rec 3815ce25-5272-4028-a5fd-556a60a9de61 +2024-09-11 09:02:41.290575 2024-09-11 09:02:41.290579 mef 2633 R rec 0de1099d-79d8-4bed-825b-717588a515da +2024-09-11 09:02:41.344451 2024-09-11 09:02:41.344455 mef 2634 R rec 8ec45c13-2292-4961-acc2-34cb1787879c +2024-09-11 09:02:41.399505 2024-09-11 09:02:41.39951 mef 2635 R rec 1089812f-e70b-495c-b1fc-8534d512e4ee +2024-09-11 09:02:41.452366 2024-09-11 09:02:41.45237 mef 2636 R rec 069bacd4-c45a-48b0-9e44-aa3973fc857e +2024-09-11 09:02:41.526395 2024-09-11 09:02:41.5264 mef 2637 R rec 79533dd2-3747-4b1b-9d4f-d33a117f02a9 +2024-09-11 09:02:41.590513 2024-09-11 09:02:41.590517 mef 2638 R rec a5323cce-ef5c-48f8-a8d5-c1a933e88234 +2024-09-11 09:02:41.648667 2024-09-11 09:02:41.648671 mef 2639 R rec e242810c-d13d-407c-abff-fad76893f1c4 +2024-09-11 09:02:41.710734 2024-09-11 09:02:41.710738 mef 2640 R rec 0f5031a9-f432-4144-b288-068811a8362f +2024-09-11 09:02:41.763647 2024-09-11 09:02:41.763651 mef 2641 R rec ca5f3252-431b-476d-858e-ea1d58da123e +2024-09-11 09:02:41.818844 2024-09-11 09:02:41.818849 mef 2642 R rec 1dd3b160-701d-4443-a220-20a3177f918b +2024-09-11 09:02:41.874 2024-09-11 09:02:41.874004 mef 2643 R rec 2037080f-0700-4325-9211-33e898b14609 +2024-09-11 09:02:41.93264 2024-09-11 09:02:41.932645 mef 2644 R rec 16d7fad8-bac6-43b3-abf5-9cb9786a1654 +2024-09-11 09:02:41.998393 2024-09-11 09:02:41.998397 mef 2645 R rec 81514b63-333d-4b32-b8b3-14872a80e5b2 +2024-09-11 09:02:42.06242 2024-09-11 09:02:42.062424 mef 2646 R rec 22b60457-3e08-48cc-9e54-1331c9cd0b39 +2024-09-11 09:02:42.117468 2024-09-11 09:02:42.117473 mef 2647 R rec af50c847-eca0-49a9-a8ac-b8c34662f36f +2024-09-11 09:02:42.177008 2024-09-11 09:02:42.177013 mef 2648 R rec 9ecc44fc-1982-4da9-8e41-8e76da756659 +2024-09-11 09:02:42.234736 2024-09-11 09:02:42.23474 mef 2649 R rec 5807383f-3b78-460b-8749-5fffa4432104 +2024-09-11 09:02:42.292198 2024-09-11 09:02:42.292204 mef 2650 R rec 72296a76-e302-48c0-8ded-9e3ad932d968 +2024-09-11 09:02:42.349712 2024-09-11 09:02:42.349718 mef 2651 R rec e2769ee1-e7c8-4a14-897f-3cfbae4361ed +2024-09-11 09:02:42.400228 2024-09-11 09:02:42.400233 mef 2652 R rec 53002153-05ce-46f7-be7f-ca3b39b23125 +2024-09-11 09:02:42.447991 2024-09-11 09:02:42.447996 mef 2653 R rec 0199027b-2329-4fc0-adc9-b86e488b22c9 +2024-09-11 09:02:42.497449 2024-09-11 09:02:42.497453 mef 2654 R rec e6c7a789-6622-439d-b130-a2f979ca7929 +2024-09-11 09:02:42.545116 2024-09-11 09:02:42.545121 mef 2655 R rec 86332744-be1c-4b90-ba1f-eb06f2f9dbff +2024-09-11 09:02:42.590565 2024-09-11 09:02:42.590571 mef 2656 R rec e9efcbb6-bcb3-40c2-827a-55cf74e3a5b0 +2024-09-11 09:02:42.641534 2024-09-11 09:02:42.641539 mef 2657 R rec e8d69b25-b4f0-4304-bae2-e253051d8f87 +2024-09-11 09:02:42.697918 2024-09-11 09:02:42.697923 mef 2658 R rec 76a960ac-9be0-49cf-948f-f31248cac9fa +2024-09-11 09:02:42.758413 2024-09-11 09:02:42.758419 mef 2659 R rec 8e068a56-a178-4c3b-ba0c-8ed259718f24 +2024-09-11 09:02:42.831298 2024-09-11 09:02:42.831303 mef 2660 R rec 9956b13c-d8df-4df6-972c-ad08464623ac +2024-09-11 09:02:42.886343 2024-09-11 09:02:42.88635 mef 2661 R rec 0076c600-a576-4173-baac-86448c8fe342 +2024-09-11 09:02:42.940925 2024-09-11 09:02:42.94093 mef 2662 R rec 3e8388b2-3ed3-414f-9b52-b3699ca15b0c +2024-09-11 09:02:42.997698 2024-09-11 09:02:42.997704 mef 2663 R rec b8f4a211-a96e-4091-888a-8219cb634a1f +2024-09-11 09:02:43.055738 2024-09-11 09:02:43.055743 mef 2664 R rec ac4b13aa-27fb-4c5a-8fe3-b2f138fc95f6 +2024-09-11 09:02:43.106961 2024-09-11 09:02:43.106965 mef 2665 R rec e809ba4a-e9fd-4837-ad91-e15f2877e03f +2024-09-11 09:02:43.157769 2024-09-11 09:02:43.157775 mef 2666 R rec d3ede1f8-ca16-4078-a6c2-dec941398232 +2024-09-11 09:02:43.207028 2024-09-11 09:02:43.207032 mef 2667 R rec 8789a7e9-e293-4055-afc0-1c69a22456c8 +2024-09-11 09:02:43.258239 2024-09-11 09:02:43.258244 mef 2668 R rec ee60b96b-e24b-420f-8a55-bf511980ac23 +2024-09-11 09:02:43.306742 2024-09-11 09:02:43.306747 mef 2669 R rec 83c4b521-b860-4ade-9808-ff2321d1276a +2024-09-11 09:02:43.35754 2024-09-11 09:02:43.357545 mef 2670 R rec 2872e455-6304-437b-b57e-9bda5f85bd27 +2024-09-11 09:02:43.409053 2024-09-11 09:02:43.409059 mef 2671 R rec 225bf772-04e6-42ec-b388-551dcfc1aa02 +2024-09-11 09:02:43.470679 2024-09-11 09:02:43.470683 mef 2672 R rec 9cd5787b-5833-4fc9-830f-2c820771b9d5 +2024-09-11 09:02:43.522839 2024-09-11 09:02:43.522844 mef 2673 R rec a3fc40fb-d53e-456a-a635-b75d13ad3cbe +2024-09-11 09:02:43.57331 2024-09-11 09:02:43.573314 mef 2674 R rec 9f5f5aff-c1af-4a2b-9d0f-56d89f8282ef +2024-09-11 09:02:43.623856 2024-09-11 09:02:43.62386 mef 2675 R rec e41cf7a5-9630-4cd6-a91b-421e451ccab6 +2024-09-11 09:02:43.682161 2024-09-11 09:02:43.682166 mef 2676 R rec 5fd14a0e-5a35-4ece-8371-a01e1f2548ac +2024-09-11 09:02:43.740557 2024-09-11 09:02:43.740563 mef 2677 R rec 9a97bdb3-754c-4ec4-b2c0-7d41516e5997 +2024-09-11 09:02:43.82906 2024-09-11 09:02:43.829065 mef 2678 R rec 95b8c816-d912-4cf8-8c23-093727386bac +2024-09-11 09:02:43.888872 2024-09-11 09:02:43.888876 mef 2679 R rec 2471c03a-2652-4df4-9f48-95b5faa451c3 +2024-09-11 09:02:43.954184 2024-09-11 09:02:43.95419 mef 2680 R rec 39b6759d-36a5-46da-8263-3aa587c02dd9 +2024-09-11 09:02:44.034032 2024-09-11 09:02:44.034039 mef 2681 R rec ad9d006a-547f-42a0-9bab-90c704f120e6 +2024-09-11 09:02:44.109554 2024-09-11 09:02:44.109559 mef 2682 R rec 7eeb6cf0-7686-4353-b122-457b3242c107 +2024-09-11 09:02:44.177799 2024-09-11 09:02:44.177805 mef 2683 R rec c3dd1aa6-cfdb-4edc-a41d-2e62c9862bf9 +2024-09-11 09:02:44.235143 2024-09-11 09:02:44.235148 mef 2684 R rec 73dd95b3-c6b4-4279-97a0-1ec540e00454 +2024-09-11 09:02:44.292436 2024-09-11 09:02:44.292441 mef 2685 R rec f3252713-58d5-4d56-97ed-b0b243c3259d +2024-09-11 09:02:44.352384 2024-09-11 09:02:44.352389 mef 2686 R rec 27671049-b11f-45b4-a262-e26c39122fd4 +2024-09-11 09:02:44.417363 2024-09-11 09:02:44.417367 mef 2687 R rec 216a4f8e-8a43-47bf-b6a4-e68e5bbcefc7 +2024-09-11 09:02:44.471301 2024-09-11 09:02:44.471305 mef 2688 R rec 16256407-93be-4b29-9e56-e45f9914d5a3 +2024-09-11 09:02:44.523956 2024-09-11 09:02:44.523961 mef 2689 R rec 20300ee3-7816-46b2-9cef-4de6c2837982 +2024-09-11 09:02:44.576416 2024-09-11 09:02:44.57642 mef 2690 R rec 0ffb093a-7e68-4861-9db6-2a12735dbb2e +2024-09-11 09:02:44.627669 2024-09-11 09:02:44.627673 mef 2691 R rec d8d1f158-475b-4932-b142-07d256fadf9d +2024-09-11 09:02:44.680294 2024-09-11 09:02:44.680298 mef 2692 R rec ddec1c36-cb6e-440c-968f-e15ec6ca4722 +2024-09-11 09:02:44.735713 2024-09-11 09:02:44.735717 mef 2693 R rec 551a421e-8454-4939-8e8f-5beda69ff15e +2024-09-11 09:02:44.785933 2024-09-11 09:02:44.785939 mef 2694 R rec 7f8642ad-be50-4641-9da7-f1ee021eff5c +2024-09-11 09:02:44.842159 2024-09-11 09:02:44.842164 mef 2695 R rec 11ca53bc-ebd8-4353-8aff-de8ae4e4ab97 +2024-09-11 09:02:44.898068 2024-09-11 09:02:44.898073 mef 2696 R rec 84a4853a-e1cf-4684-b7cd-e49d862a0a23 +2024-09-11 09:02:44.957761 2024-09-11 09:02:44.957766 mef 2697 R rec 6b255842-3ea7-4507-881a-f11c2132f1be +2024-09-11 09:02:45.018862 2024-09-11 09:02:45.018867 mef 2698 R rec bef81af9-ed63-4bcd-94db-12e38bb4724e +2024-09-11 09:02:45.069642 2024-09-11 09:02:45.069647 mef 2699 R rec 762b5edd-29bc-4c0a-96a5-530b49d7b527 +2024-09-11 09:02:45.119142 2024-09-11 09:02:45.119146 mef 2700 R rec c415d76c-85fd-43b3-a211-b9a8a9e10b2c +2024-09-11 09:02:45.167708 2024-09-11 09:02:45.167712 mef 2701 R rec b7a59f9c-c0d9-4d8a-9158-78f0b7947245 +2024-09-11 09:02:45.218004 2024-09-11 09:02:45.218009 mef 2702 R rec d41091b8-2638-4936-9985-735d31594e80 +2024-09-11 09:02:45.269459 2024-09-11 09:02:45.269463 mef 2703 R rec 5ce1f6ca-75bd-40e0-8f18-5c3db4db18bc +2024-09-11 09:02:45.340503 2024-09-11 09:02:45.340508 mef 2704 R rec 076a0910-6aa1-46e1-aea5-1e1a556951cb +2024-09-11 09:02:45.424031 2024-09-11 09:02:45.424036 mef 2705 R rec dd2ed1d0-5921-4910-a046-3020b763c06e +2024-09-11 09:02:45.5003 2024-09-11 09:02:45.500305 mef 2706 R rec 17f62798-e154-4b5a-baa1-61488995014b +2024-09-11 09:02:45.630799 2024-09-11 09:02:45.630804 mef 2707 R rec 831b15c7-22ea-499b-9e52-e44a64c296ec +2024-09-11 09:02:45.700618 2024-09-11 09:02:45.700623 mef 2708 R rec 400f4c6b-a666-4607-b2f8-9f209618d7ec +2024-09-11 09:02:45.757851 2024-09-11 09:02:45.757856 mef 2709 R rec 281863ba-8992-4966-93c4-0bc004541f88 +2024-09-11 09:02:45.821527 2024-09-11 09:02:45.821533 mef 2710 R rec 211c0b54-1fbe-4044-9f69-ff7320c4d1de +2024-09-11 09:02:45.895845 2024-09-11 09:02:45.895851 mef 2711 R rec 58b8d4e4-4bdf-4304-9a44-44e7390ead7e +2024-09-11 09:02:45.96324 2024-09-11 09:02:45.963246 mef 2712 R rec 25a4c0c0-041a-465c-9743-66ae7e35cfdc +2024-09-11 09:02:46.031687 2024-09-11 09:02:46.031693 mef 2713 R rec 92e787fe-a657-436b-9ac8-70ef2b5b7ed0 +2024-09-11 09:02:46.108047 2024-09-11 09:02:46.108053 mef 2714 R rec 09329cd9-4b67-4782-965b-74232c039f39 +2024-09-11 09:02:46.212744 2024-09-11 09:02:46.21275 mef 2715 R rec 5e9d904d-b93a-4e51-8357-6602d3064c72 +2024-09-11 09:02:46.287007 2024-09-11 09:02:46.287012 mef 2716 R rec f278927d-1961-4c93-ba69-783037b042a3 +2024-09-11 09:02:46.344277 2024-09-11 09:02:46.344282 mef 2717 R rec f117d5b0-bd8e-42cb-8296-234a0fd5e4ad +2024-09-11 09:02:46.413087 2024-09-11 09:02:46.413093 mef 2718 R rec bfd34c1c-42d3-4a28-9897-4f78e56e1edf +2024-09-11 09:02:46.471818 2024-09-11 09:02:46.471831 mef 2719 R rec 3b5f3260-3964-4ad2-9b78-ccebb66b44bb +2024-09-11 09:02:46.549769 2024-09-11 09:02:46.549775 mef 2720 R rec 2fa7b5ba-a1f9-4111-aea1-724147bb1d16 +2024-09-11 09:02:46.613909 2024-09-11 09:02:46.613914 mef 2721 R rec 001a96ee-3b85-4042-9161-a31294a65a1c +2024-09-11 09:02:46.670363 2024-09-11 09:02:46.670367 mef 2722 R rec dec296b9-626a-418d-9eb5-7edc56454a71 +2024-09-11 09:02:46.724559 2024-09-11 09:02:46.724564 mef 2723 R rec bf75ecbd-a42b-477d-85ae-e102c7884505 +2024-09-11 09:02:46.779903 2024-09-11 09:02:46.779908 mef 2724 R rec c796352b-574e-4f2e-8f15-36fea53360b6 +2024-09-11 09:02:46.831591 2024-09-11 09:02:46.831595 mef 2725 R rec 3d2fc42b-cd9b-4dd8-8ef5-3c40c5e96592 +2024-09-11 09:02:46.885871 2024-09-11 09:02:46.885876 mef 2726 R rec 77fe690f-3a4c-4287-a0bd-243a1f45d00f +2024-09-11 09:02:46.941028 2024-09-11 09:02:46.941034 mef 2727 R rec 476b2288-b50e-4f6d-b36a-426a2bf8fdf1 +2024-09-11 09:02:46.997957 2024-09-11 09:02:46.997962 mef 2728 R rec 38a94ee9-0ff4-4f64-84ea-325ccc340c33 +2024-09-11 09:02:47.057464 2024-09-11 09:02:47.057469 mef 2729 R rec a98d0c30-3e01-4a38-9af2-87ef1e4bd97f +2024-09-11 09:02:47.116111 2024-09-11 09:02:47.116117 mef 2730 R rec 1e919c57-d1ea-4168-a3f9-22f811e41c0f +2024-09-11 09:02:47.176606 2024-09-11 09:02:47.176611 mef 2731 R rec 7766561c-8a4b-4bc2-93c0-240ca3d094db +2024-09-11 09:02:47.234019 2024-09-11 09:02:47.234024 mef 2732 R rec d23d4b6e-9408-4ba5-ba5f-4d1c4171dafc +2024-09-11 09:02:47.29417 2024-09-11 09:02:47.294177 mef 2733 R rec 05149bc2-8fcc-45ae-9d3c-7b97ba7b4fd7 +2024-09-11 09:02:47.351861 2024-09-11 09:02:47.351866 mef 2734 R rec 85bf169e-f789-49b8-9e5b-ad7ee217c38f +2024-09-11 09:02:47.410082 2024-09-11 09:02:47.410088 mef 2735 R rec 353dbde0-acf0-42d1-8b05-e33ee7aae908 +2024-09-11 09:02:47.476301 2024-09-11 09:02:47.476306 mef 2736 R rec 2f19e60d-2ea1-42bb-8837-f71c3c6d60f0 +2024-09-11 09:02:47.54156 2024-09-11 09:02:47.541582 mef 2737 R rec a072f8fa-d020-416d-b4db-5695baf3b8cf +2024-09-11 09:02:47.598357 2024-09-11 09:02:47.598361 mef 2738 R rec 081f918c-1e71-4bc7-9889-7417397bf631 +2024-09-11 09:02:47.654392 2024-09-11 09:02:47.654397 mef 2739 R rec 9c16b511-463c-40ca-9f64-d43b15f0c430 +2024-09-11 09:02:47.722795 2024-09-11 09:02:47.7228 mef 2740 R rec 80bc2854-9687-4893-97ea-092cfdbc160f +2024-09-11 09:02:47.779602 2024-09-11 09:02:47.779606 mef 2741 R rec af930bec-06e0-484a-be2f-e5555e238fe7 +2024-09-11 09:02:47.836491 2024-09-11 09:02:47.836495 mef 2742 R rec f2ae9cc1-1126-4e9c-a4f9-68226804c08f +2024-09-11 09:02:47.892562 2024-09-11 09:02:47.892567 mef 2743 R rec 287dfa17-1b32-411b-815b-546d92215778 +2024-09-11 09:02:47.949314 2024-09-11 09:02:47.949319 mef 2744 R rec ff0ec02a-9943-4b0f-8183-fbca4ab00892 +2024-09-11 09:02:48.002578 2024-09-11 09:02:48.002583 mef 2745 R rec 36fd7e8a-d1a9-4b6e-b8be-17f8d2a656a5 +2024-09-11 09:02:48.060808 2024-09-11 09:02:48.060814 mef 2746 R rec a03cf6b9-e21e-41cd-8954-bb62e23b8beb +2024-09-11 09:02:48.132029 2024-09-11 09:02:48.132034 mef 2747 R rec 6a040da9-4fd8-41f5-82bc-494089134d5f +2024-09-11 09:02:48.196303 2024-09-11 09:02:48.196307 mef 2748 R rec cc95fbf3-f5cd-4ba1-934a-377904003bba +2024-09-11 09:02:48.254743 2024-09-11 09:02:48.254748 mef 2749 R rec df83cb95-52a1-431b-9be9-2b1b80299c15 +2024-09-11 09:02:48.317146 2024-09-11 09:02:48.317152 mef 2750 R rec 4754f50d-5ab7-48f6-9e75-d401e2945672 +2024-09-11 09:02:48.377333 2024-09-11 09:02:48.377338 mef 2751 R rec 6dc08693-b1aa-4e12-8b29-0e11f00cd28c +2024-09-11 09:02:48.443309 2024-09-11 09:02:48.443313 mef 2752 R rec 9deedadd-8bd5-4cb1-b887-2a460731b389 +2024-09-11 09:02:48.500537 2024-09-11 09:02:48.500541 mef 2753 R rec 26a6298c-b27c-49fb-80e8-1d301d1e0d58 +2024-09-11 09:02:48.568652 2024-09-11 09:02:48.568657 mef 2754 R rec 98bef429-4347-4c8e-8128-8b001d766317 +2024-09-11 09:02:48.623816 2024-09-11 09:02:48.623821 mef 2755 R rec c10b5bc8-d42a-4d2b-892f-36f9990f9da2 +2024-09-11 09:02:48.681113 2024-09-11 09:02:48.681119 mef 2756 R rec 20336ab4-0e9e-434b-ae37-7cbbfd9d7452 +2024-09-11 09:02:48.739321 2024-09-11 09:02:48.739326 mef 2757 R rec 419eae8c-f8f6-414d-8a26-19458facd634 +2024-09-11 09:02:48.790284 2024-09-11 09:02:48.790288 mef 2758 R rec 78c3b483-0c5a-439e-befb-ab14db2db3a4 +2024-09-11 09:02:48.848607 2024-09-11 09:02:48.848612 mef 2759 R rec 9e1b4c7c-0242-4d23-9fe5-c82531b7eda5 +2024-09-11 09:02:48.910244 2024-09-11 09:02:48.910249 mef 2760 R rec 240fe2b6-8bce-49b4-9d1a-a6b7152a3bf0 +2024-09-11 09:02:48.978451 2024-09-11 09:02:48.978456 mef 2761 R rec 99958a7e-8571-4152-9cee-ace983108907 +2024-09-11 09:02:49.039507 2024-09-11 09:02:49.039511 mef 2762 R rec d9e47a8b-d493-423e-aab2-3a18839f8cd6 +2024-09-11 09:02:49.112095 2024-09-11 09:02:49.1121 mef 2763 R rec ddeb1008-b59e-442b-9a5d-e05081785738 +2024-09-11 09:02:49.165291 2024-09-11 09:02:49.165296 mef 2764 R rec 42533ad8-3e0c-4378-bffe-e759bcaf43da +2024-09-11 09:02:49.222745 2024-09-11 09:02:49.22275 mef 2765 R rec 6e7546ee-4cbb-4e6c-bc5c-55a67bb6e68d +2024-09-11 09:02:49.275271 2024-09-11 09:02:49.275276 mef 2766 R rec b65877ca-a9e8-4f6c-b136-842f655e4946 +2024-09-11 09:02:49.330451 2024-09-11 09:02:49.330455 mef 2767 R rec 5a05e1d9-dc3b-4924-bd59-32bb125e08d0 +2024-09-11 09:02:49.39042 2024-09-11 09:02:49.390425 mef 2768 R rec 34629f0e-09ac-409e-bbde-ed79721a9a29 +2024-09-11 09:02:49.448072 2024-09-11 09:02:49.448077 mef 2769 R rec 070c757d-638b-4afb-b9c3-b1f3bf991855 +2024-09-11 09:02:49.511305 2024-09-11 09:02:49.51131 mef 2770 R rec 8effe148-751b-4627-bd9e-07b44fd955f2 +2024-09-11 09:02:49.569753 2024-09-11 09:02:49.569759 mef 2771 R rec c296fb77-dabe-4a3a-9280-699db903058a +2024-09-11 09:02:49.635848 2024-09-11 09:02:49.635853 mef 2772 R rec 427c0b17-e4a7-4484-9e8b-0bd02da573f2 +2024-09-11 09:02:49.697399 2024-09-11 09:02:49.697404 mef 2773 R rec 18bd749b-63c4-45b1-9336-47cfc29c3c77 +2024-09-11 09:02:49.765685 2024-09-11 09:02:49.76569 mef 2774 R rec a2c9e8fe-9773-415a-a076-92b0c8ebb798 +2024-09-11 09:02:49.830456 2024-09-11 09:02:49.830461 mef 2775 R rec 261f188d-466a-47fb-9581-b66529ef08ca +2024-09-11 09:02:49.897344 2024-09-11 09:02:49.897348 mef 2776 R rec 5ee49c7d-2e53-4f63-b3af-5ceb0c31a52d +2024-09-11 09:02:49.951355 2024-09-11 09:02:49.95136 mef 2777 R rec 7845ba8f-7e5b-4691-bd76-c2507debc484 +2024-09-11 09:02:50.004666 2024-09-11 09:02:50.00467 mef 2778 R rec 6173626b-c0b8-4d1e-90b5-03aa0c4e42f2 +2024-09-11 09:02:50.060213 2024-09-11 09:02:50.060218 mef 2779 R rec 675f8157-c011-4fef-957d-65b224943695 +2024-09-11 09:02:50.115886 2024-09-11 09:02:50.115891 mef 2780 R rec ead1656f-b49a-40af-8058-892441f34770 +2024-09-11 09:02:50.169984 2024-09-11 09:02:50.169989 mef 2781 R rec ad859ec0-f907-4832-9e93-ca09e4f9be8f +2024-09-11 09:02:50.230877 2024-09-11 09:02:50.230882 mef 2782 R rec c2f5ec85-07dc-4500-8748-f75774dc9c30 +2024-09-11 09:02:50.291813 2024-09-11 09:02:50.291818 mef 2783 R rec 67569d18-bf2b-4f94-b862-08076e8b253f +2024-09-11 09:02:50.349919 2024-09-11 09:02:50.349924 mef 2784 R rec 7bf174af-586c-4ff0-85e7-7c0a4f4c1b3d +2024-09-11 09:02:50.404454 2024-09-11 09:02:50.404459 mef 2785 R rec 8ea5000b-4ff8-4fb1-9250-fd52ee372a41 +2024-09-11 09:02:50.465911 2024-09-11 09:02:50.465916 mef 2786 R rec ef143122-0343-4544-b4de-8e07e64d575d +2024-09-11 09:02:50.540614 2024-09-11 09:02:50.540619 mef 2787 R rec 9e173060-cd5b-47d9-8ae8-8b4b9e67391a +2024-09-11 09:02:50.596658 2024-09-11 09:02:50.596663 mef 2788 R rec 2ef9f6f7-d70c-4f07-89f3-45dec9044981 +2024-09-11 09:02:50.652059 2024-09-11 09:02:50.652064 mef 2789 R rec 4cb34a23-95db-42aa-b1de-abe8fe11e8a2 +2024-09-11 09:02:50.708258 2024-09-11 09:02:50.708263 mef 2790 R rec 0255a629-9d0e-477c-be5e-e961cd5191cb +2024-09-11 09:02:50.778038 2024-09-11 09:02:50.778042 mef 2791 R rec 3793d9cc-ba46-4a15-aa1e-fdf31aedad64 +2024-09-11 09:02:50.833501 2024-09-11 09:02:50.833505 mef 2792 R rec e8ab9ee7-fd45-4786-8b20-3e3f87901129 +2024-09-11 09:02:50.885832 2024-09-11 09:02:50.885837 mef 2793 R rec 7abac707-1a67-4a8b-b020-eb4d16352393 +2024-09-11 09:02:50.94106 2024-09-11 09:02:50.941065 mef 2794 R rec 160bc258-ce3d-419c-b6bc-6e9a781cd38e +2024-09-11 09:02:51.006179 2024-09-11 09:02:51.006184 mef 2795 R rec 40f2d233-0f4d-4acc-9008-ff9241af8507 +2024-09-11 09:02:51.065628 2024-09-11 09:02:51.065633 mef 2796 R rec 3f5c49f6-e36a-40e7-9adb-1a279325a9a7 +2024-09-11 09:02:51.118175 2024-09-11 09:02:51.11818 mef 2797 R rec 668a2c62-d122-420e-8736-32b48d4f8399 +2024-09-11 09:02:51.181104 2024-09-11 09:02:51.181109 mef 2798 R rec c245fd77-4c5a-4298-b009-78e8fdafb293 +2024-09-11 09:02:51.260458 2024-09-11 09:02:51.260463 mef 2799 R rec 40849925-7e26-47fe-a55c-61e8f58d56ad +2024-09-11 09:02:51.315486 2024-09-11 09:02:51.315491 mef 2800 R rec 4eaf37ba-9a87-48ca-a402-cea3b799a625 +2024-09-11 09:02:51.370215 2024-09-11 09:02:51.37022 mef 2801 R rec dbc07b55-31dd-4550-9eea-401ad8a87f70 +2024-09-11 09:02:51.424963 2024-09-11 09:02:51.424968 mef 2802 R rec 1fbbba2b-4690-4291-b52f-90ecdd59fb26 +2024-09-11 09:02:51.483179 2024-09-11 09:02:51.483185 mef 2803 R rec a025f5d0-2533-4fba-8f15-85b8672078f6 +2024-09-11 09:02:51.541055 2024-09-11 09:02:51.541059 mef 2804 R rec 7aa84c0a-b2a9-435d-8a16-76eff658fa68 +2024-09-11 09:02:51.601771 2024-09-11 09:02:51.601775 mef 2805 R rec 15d42263-94c1-40a6-9a0a-e0eee11ed6cb +2024-09-11 09:02:51.658362 2024-09-11 09:02:51.658367 mef 2806 R rec c861dd11-1735-4246-9d79-545101a08b3f +2024-09-11 09:02:51.716711 2024-09-11 09:02:51.716717 mef 2807 R rec dfbb3374-86c6-4057-9d39-7b50dfd8e363 +2024-09-11 09:02:51.780663 2024-09-11 09:02:51.78067 mef 2808 R rec 8cb50b2a-abe0-4023-8ad4-f05d4d38c94d +2024-09-11 09:02:51.840747 2024-09-11 09:02:51.840752 mef 2809 R rec ef54de94-be94-4832-a379-97ebfb8ab464 +2024-09-11 09:02:51.91872 2024-09-11 09:02:51.918724 mef 2810 R rec 2499d526-5f30-4505-8e58-3f13de607abf +2024-09-11 09:02:51.973077 2024-09-11 09:02:51.973082 mef 2811 R rec 68afe02e-048a-4378-8124-e48154c79bf5 +2024-09-11 09:02:52.030784 2024-09-11 09:02:52.030789 mef 2812 R rec 9a42d410-03e5-42cf-a7d2-0220c2cf4363 +2024-09-11 09:02:52.09416 2024-09-11 09:02:52.094165 mef 2813 R rec a3c74d47-1ed2-4498-b01b-03a0d98146eb +2024-09-11 09:02:52.149552 2024-09-11 09:02:52.149558 mef 2814 R rec 6981fba8-01b3-4454-9d5a-9024480373f8 +2024-09-11 09:02:52.20552 2024-09-11 09:02:52.205525 mef 2815 R rec 66716fc6-c156-47f6-87e2-8a4f4508b413 +2024-09-11 09:02:52.264082 2024-09-11 09:02:52.264087 mef 2816 R rec bacdda4e-fd6e-4ab9-8c79-641cb59a25d7 +2024-09-11 09:02:52.320138 2024-09-11 09:02:52.320142 mef 2817 R rec 2dce9fc4-dbc4-4af1-8cf4-0e7e80d3fd95 +2024-09-11 09:02:52.377845 2024-09-11 09:02:52.37785 mef 2818 R rec f6dc5fa1-3a44-43e0-b8a9-66a682343cdc +2024-09-11 09:02:52.434621 2024-09-11 09:02:52.434626 mef 2819 R rec 973f9f18-1015-4f19-9970-ffaf3bf9ff6b +2024-09-11 09:02:52.5021 2024-09-11 09:02:52.502104 mef 2820 R rec c00f2e27-538b-4426-8c7f-c2ed4fe51ccd +2024-09-11 09:02:52.555258 2024-09-11 09:02:52.555262 mef 2821 R rec 11476a82-cdbd-4e29-957f-bc81660fbccc +2024-09-11 09:02:52.611168 2024-09-11 09:02:52.611172 mef 2822 R rec f8b015ae-b2bd-4436-babc-ceb1a67665ad +2024-09-11 09:02:52.669368 2024-09-11 09:02:52.669373 mef 2823 R rec a2c6191c-d1b0-4d36-9def-9200559abc84 +2024-09-11 09:02:52.732984 2024-09-11 09:02:52.732989 mef 2824 R rec e0fad6ad-0595-470a-b660-3483cfe420a5 +2024-09-11 09:02:52.794752 2024-09-11 09:02:52.794757 mef 2825 R rec 2df60c9e-9648-4a07-9d4e-9905fad8b631 +2024-09-11 09:02:52.858104 2024-09-11 09:02:52.858109 mef 2826 R rec 5db49263-b556-47ba-aaeb-8ba01cf2fa8b +2024-09-11 09:02:52.916503 2024-09-11 09:02:52.916509 mef 2827 R rec 83b81ab8-b217-4217-9596-2bc0cf3ad3bd +2024-09-11 09:02:52.971309 2024-09-11 09:02:52.971315 mef 2828 R rec 74588510-6ac8-4f11-892e-5fdb46c079f6 +2024-09-11 09:02:53.029174 2024-09-11 09:02:53.029179 mef 2829 R rec e0e71ffd-016c-4871-afdf-7f29bbaabb33 +2024-09-11 09:02:53.086826 2024-09-11 09:02:53.086831 mef 2830 R rec 476e25d8-4728-46cb-8ff3-af1277412c57 +2024-09-11 09:02:53.143224 2024-09-11 09:02:53.143229 mef 2831 R rec eef92e30-dbf0-4f91-b5ea-4c1e7f64954e +2024-09-11 09:02:53.20163 2024-09-11 09:02:53.201634 mef 2832 R rec 74ab073e-cf3a-4bac-b7b0-d12acb2792b5 +2024-09-11 09:02:53.25861 2024-09-11 09:02:53.258614 mef 2833 R rec ba107d23-c6d8-4585-ba81-466e2a512c15 +2024-09-11 09:02:53.323324 2024-09-11 09:02:53.323328 mef 2834 R rec 7e29ab56-dfc7-4f82-aa39-433fe1c1ef48 +2024-09-11 09:02:53.391439 2024-09-11 09:02:53.391445 mef 2835 R rec 3ec37063-36d6-4d33-9be4-c90b1caf0fa0 +2024-09-11 09:02:53.448411 2024-09-11 09:02:53.448416 mef 2836 R rec 3669ffdb-ab0e-4362-a88f-862da4e24a66 +2024-09-11 09:02:53.508726 2024-09-11 09:02:53.508731 mef 2837 R rec 489428a1-61fc-45f5-be77-79c6bc1f2817 +2024-09-11 09:02:53.57409 2024-09-11 09:02:53.574095 mef 2838 R rec 6892b5e5-dee7-41c8-b4d4-2a4ab0cc0d48 +2024-09-11 09:02:53.632292 2024-09-11 09:02:53.6323 mef 2839 R rec 6da5613e-99ca-4251-b4de-9c8340819187 +2024-09-11 09:02:53.688537 2024-09-11 09:02:53.688541 mef 2840 R rec da339045-6369-4e12-b771-407a6e52557e +2024-09-11 09:02:53.742025 2024-09-11 09:02:53.74203 mef 2841 R rec c5e8103c-9c32-48df-b210-f9985d8de4a9 +2024-09-11 09:02:53.800201 2024-09-11 09:02:53.800205 mef 2842 R rec 215e4731-97de-4e01-bda9-c1068c407a57 +2024-09-11 09:02:53.878375 2024-09-11 09:02:53.87838 mef 2843 R rec bcb83a7b-af6d-4ae8-9fc1-e547a835e310 +2024-09-11 09:02:53.935072 2024-09-11 09:02:53.935077 mef 2844 R rec a8cf9eb8-2ea3-4fde-88c9-725b44250a7d +2024-09-11 09:02:53.990645 2024-09-11 09:02:53.990649 mef 2845 R rec 87dbf757-73c1-42c5-a115-651f2ce4de7b +2024-09-11 09:02:54.054608 2024-09-11 09:02:54.054612 mef 2846 R rec 9428c7cd-5665-4d9a-83b5-3e46c8ffa4d5 +2024-09-11 09:02:54.122036 2024-09-11 09:02:54.122041 mef 2847 R rec 0289df97-5eea-42ff-9f9c-e4d1fdc3ad02 +2024-09-11 09:02:54.179533 2024-09-11 09:02:54.179537 mef 2848 R rec 798285fe-37d0-45b6-8428-a8fa40d2a2a5 +2024-09-11 09:02:54.240176 2024-09-11 09:02:54.240181 mef 2849 R rec 4a967a60-e480-44dc-a9fa-9a1b411f2768 +2024-09-11 09:02:54.296804 2024-09-11 09:02:54.296809 mef 2850 R rec c3c5d328-d0f6-4d59-a1bd-df704bc07f1d +2024-09-11 09:02:54.36305 2024-09-11 09:02:54.363056 mef 2851 R rec 568cf4b4-448e-4b62-aa6c-c9e28e042010 +2024-09-11 09:02:54.429945 2024-09-11 09:02:54.42995 mef 2852 R rec 01d2fb7b-f493-48ea-aafd-80194cb954b8 +2024-09-11 09:02:54.488979 2024-09-11 09:02:54.488983 mef 2853 R rec 83ba731e-f5cb-4591-b300-8a6ac0c0b70f +2024-09-11 09:02:54.546476 2024-09-11 09:02:54.546481 mef 2854 R rec 59126497-582f-404b-a3a4-287a89636bfb +2024-09-11 09:02:54.617844 2024-09-11 09:02:54.617849 mef 2855 R rec 9613bfa4-941b-419d-a3e5-40bc573acea1 +2024-09-11 09:02:54.675676 2024-09-11 09:02:54.675681 mef 2856 R rec 9f013e99-b02e-4e51-95bf-4137cef94afd +2024-09-11 09:02:54.742653 2024-09-11 09:02:54.742657 mef 2857 R rec 7711c2a5-add9-48f0-828f-baf223d8ff3a +2024-09-11 09:02:54.801865 2024-09-11 09:02:54.80187 mef 2858 R rec df2842e0-190c-4a26-bec4-b8577cd49930 +2024-09-11 09:02:54.866344 2024-09-11 09:02:54.866348 mef 2859 R rec 9403c5d9-16e6-4633-b57f-0f36b48238d4 +2024-09-11 09:02:54.92191 2024-09-11 09:02:54.921914 mef 2860 R rec 434e6e06-96da-4b40-9aaf-52a020da8f04 +2024-09-11 09:02:54.977193 2024-09-11 09:02:54.977199 mef 2861 R rec a81db98f-80a1-437b-87f0-6be5abf4df60 +2024-09-11 09:02:55.030709 2024-09-11 09:02:55.030715 mef 2862 R rec d985e9fa-74c7-4159-a0d9-c118af7786e2 +2024-09-11 09:02:55.088209 2024-09-11 09:02:55.088213 mef 2863 R rec 21833785-fd84-408e-aa34-00dda2e6a103 +2024-09-11 09:02:55.143189 2024-09-11 09:02:55.143194 mef 2864 R rec 1b9c2331-5863-42ef-9e08-4c574bcb746b +2024-09-11 09:02:55.202323 2024-09-11 09:02:55.202328 mef 2865 R rec 8eb67cbd-a4c4-4f5a-85c2-d6c1dafd546a +2024-09-11 09:02:55.259146 2024-09-11 09:02:55.259151 mef 2866 R rec caebf884-f06f-48ea-93b8-2a3a6ee91427 +2024-09-11 09:02:55.314596 2024-09-11 09:02:55.314602 mef 2867 R rec 7377b56d-6d23-4e1a-ae1e-88d14db01c66 +2024-09-11 09:02:55.372424 2024-09-11 09:02:55.372428 mef 2868 R rec cdf7212d-dc08-40b0-bf96-4427c1ae3700 +2024-09-11 09:02:55.427932 2024-09-11 09:02:55.427937 mef 2869 R rec 9e62eadc-5f24-41ff-91d2-b5f148af6199 +2024-09-11 09:02:55.486543 2024-09-11 09:02:55.486548 mef 2870 R rec 57052c37-df36-48a2-8683-261a7d7163e2 +2024-09-11 09:02:55.559089 2024-09-11 09:02:55.559094 mef 2871 R rec 4cb80160-1f13-4de2-af3d-4424104ae035 +2024-09-11 09:02:55.621318 2024-09-11 09:02:55.621322 mef 2872 R rec cbdb5c35-6700-4aa7-98b6-f886fa11599d +2024-09-11 09:02:55.674797 2024-09-11 09:02:55.674801 mef 2873 R rec 7f70d1a3-9937-4d17-ae2d-66f033bc1355 +2024-09-11 09:02:55.731545 2024-09-11 09:02:55.73155 mef 2874 R rec b713434c-9365-4c82-bfb6-502b5425aecd +2024-09-11 09:02:55.786318 2024-09-11 09:02:55.786323 mef 2875 R rec 656f7a30-7668-4806-ac87-67072eb138d7 +2024-09-11 09:02:55.851058 2024-09-11 09:02:55.851063 mef 2876 R rec 47c6865f-25e1-4dde-a6e0-36b1a3ca8a26 +2024-09-11 09:02:55.904047 2024-09-11 09:02:55.904052 mef 2877 R rec 1eb523df-624c-4483-8144-dd2e2061fd61 +2024-09-11 09:02:55.958749 2024-09-11 09:02:55.958754 mef 2878 R rec 169d4ded-6ad6-4ad6-9d3e-d20a7366506e +2024-09-11 09:02:56.024472 2024-09-11 09:02:56.024477 mef 2879 R rec cf172b5d-a725-4528-a2ae-6595fa18b2d5 +2024-09-11 09:02:56.089777 2024-09-11 09:02:56.089782 mef 2880 R rec c291b218-a444-4ba0-b1b9-766c96ee6317 +2024-09-11 09:02:56.147339 2024-09-11 09:02:56.147345 mef 2881 R rec 9bc74a99-3e39-41f0-80a3-30751d3590f4 +2024-09-11 09:02:56.213194 2024-09-11 09:02:56.213199 mef 2882 R rec 8996f5ab-e381-4fdd-9598-448596dd2899 +2024-09-11 09:02:56.28144 2024-09-11 09:02:56.281445 mef 2883 R rec ef40360d-04bd-40df-bf47-6204d31deaff +2024-09-11 09:02:56.337813 2024-09-11 09:02:56.33782 mef 2884 R rec 0c2000ab-77c9-4283-8045-5479d8f4ae3f +2024-09-11 09:02:56.390865 2024-09-11 09:02:56.390869 mef 2885 R rec 71b1d828-e7e0-4920-99e8-3ef168637cd6 +2024-09-11 09:02:56.446017 2024-09-11 09:02:56.446022 mef 2886 R rec 2eccfe8a-8ef6-4b1f-a1b8-95e3f4b09931 +2024-09-11 09:02:56.500903 2024-09-11 09:02:56.500909 mef 2887 R rec f8c307d2-0ac9-47e9-9e23-d913341c2014 +2024-09-11 09:02:56.559399 2024-09-11 09:02:56.559404 mef 2888 R rec 01bd872a-8abd-4269-a0a4-e4972456bf82 +2024-09-11 09:02:56.618671 2024-09-11 09:02:56.618676 mef 2889 R rec e0927157-1704-4072-bbd9-735c2df46288 +2024-09-11 09:02:56.675793 2024-09-11 09:02:56.675798 mef 2890 R rec 508174af-c85e-4351-b887-92314924cf0a +2024-09-11 09:02:56.73599 2024-09-11 09:02:56.735995 mef 2891 R rec 1cb3e29c-c90a-4eef-b121-84faed4274b5 +2024-09-11 09:02:56.812372 2024-09-11 09:02:56.812377 mef 2892 R rec 83a25747-e12e-4983-9b75-5d1a3b979116 +2024-09-11 09:02:56.866177 2024-09-11 09:02:56.866181 mef 2893 R rec a6f0b80b-feba-44df-908c-59252840b216 +2024-09-11 09:02:56.921948 2024-09-11 09:02:56.921953 mef 2894 R rec ec1f1a70-667a-438c-a735-3413de0a9da1 +2024-09-11 09:02:56.981678 2024-09-11 09:02:56.981683 mef 2895 R rec 0e55252e-e38e-4f67-8b62-4afcd841a0c6 +2024-09-11 09:02:57.038393 2024-09-11 09:02:57.038398 mef 2896 R rec d5d67304-d6ad-4ac0-96d7-d97abe473ab9 +2024-09-11 09:02:57.094681 2024-09-11 09:02:57.094685 mef 2897 R rec cb5bab0f-4dc7-4f78-81a9-0c39c6de38ee +2024-09-11 09:02:57.149569 2024-09-11 09:02:57.149575 mef 2898 R rec b6ebfd9f-35f2-4556-8bf5-2523b3278307 +2024-09-11 09:02:57.216045 2024-09-11 09:02:57.21605 mef 2899 R rec 227a4242-27bf-491a-91e6-05567b306368 +2024-09-11 09:02:57.270775 2024-09-11 09:02:57.270779 mef 2900 R rec be1f0557-25aa-4121-923f-feebf3a5504f +2024-09-11 09:02:57.326839 2024-09-11 09:02:57.326845 mef 2901 R rec ef2927fe-763c-4334-b0cf-0372472a0dfb +2024-09-11 09:02:57.383285 2024-09-11 09:02:57.38329 mef 2902 R rec 7a78469c-d693-4f05-998c-7d0cff71c460 +2024-09-11 09:02:57.451318 2024-09-11 09:02:57.451323 mef 2903 R rec bf6b12c0-3cc2-485c-b9eb-c9872d33640d +2024-09-11 09:02:57.505899 2024-09-11 09:02:57.505904 mef 2904 R rec 5be477d3-79b6-48e5-acad-6fe6d5e0d863 +2024-09-11 09:02:57.572108 2024-09-11 09:02:57.572112 mef 2905 R rec 9987fd71-c7ff-4923-938c-c82c2b341149 +2024-09-11 09:02:57.62782 2024-09-11 09:02:57.627826 mef 2906 R rec be5e5be1-ecc8-4752-a308-68af8526e105 +2024-09-11 09:02:57.701271 2024-09-11 09:02:57.701276 mef 2907 R rec d3ca293d-8435-4126-b9d9-3152465326f3 +2024-09-11 09:02:57.753738 2024-09-11 09:02:57.753743 mef 2908 R rec 808b9668-cd01-4b47-9e5d-8cb56e7b3770 +2024-09-11 09:02:57.810085 2024-09-11 09:02:57.81009 mef 2909 R rec 92415888-42c1-4d4f-9f5b-7e9a41e81595 +2024-09-11 09:02:57.877152 2024-09-11 09:02:57.877157 mef 2910 R rec fbcb8793-c6d1-4f9d-986e-834e42eb5efe +2024-09-11 09:02:57.942131 2024-09-11 09:02:57.942135 mef 2911 R rec 7a037b2a-8a2d-4ffe-a053-f797162c5543 +2024-09-11 09:02:57.997017 2024-09-11 09:02:57.997023 mef 2912 R rec 0b08facf-20ed-47cb-8e22-814d5ac6e604 +2024-09-11 09:02:58.054301 2024-09-11 09:02:58.054305 mef 2913 R rec fea63f33-fb22-4fe5-8691-610d4f15b9dd +2024-09-11 09:02:58.11432 2024-09-11 09:02:58.114325 mef 2914 R rec bbd9a545-df10-43ea-9d89-cb4dfdeca663 +2024-09-11 09:02:58.179421 2024-09-11 09:02:58.179425 mef 2915 R rec b24a3bfe-e52c-486a-beb3-f828841bdfcb +2024-09-11 09:02:58.255771 2024-09-11 09:02:58.255776 mef 2916 R rec b9d1b562-6a6a-4dda-bc87-e60c046529da +2024-09-11 09:02:58.31483 2024-09-11 09:02:58.314835 mef 2917 R rec d58e7a04-5126-4372-a207-8ac3d85b7708 +2024-09-11 09:02:58.381693 2024-09-11 09:02:58.381699 mef 2918 R rec 4d5f3f86-ad96-449c-b22b-44305202a42e +2024-09-11 09:02:58.44234 2024-09-11 09:02:58.442345 mef 2919 R rec 29b94b7c-f0dd-4c59-a111-177744952f5c +2024-09-11 09:02:58.511421 2024-09-11 09:02:58.511425 mef 2920 R rec 39212589-e9db-41ca-a239-7754e2dd3eef +2024-09-11 09:02:58.571151 2024-09-11 09:02:58.571156 mef 2921 R rec 78dcd96c-51af-4049-8efc-bfc6c51920be +2024-09-11 09:02:58.63965 2024-09-11 09:02:58.639655 mef 2922 R rec baa68624-897e-44c0-831f-607bf4f3fc01 +2024-09-11 09:02:58.722058 2024-09-11 09:02:58.722062 mef 2923 R rec d238d7e7-cdb2-423c-8ad1-0657c6cc8c32 +2024-09-11 09:02:58.797163 2024-09-11 09:02:58.797167 mef 2924 R rec 8c317f71-d371-43d2-abc0-b552c0769f3f +2024-09-11 09:02:58.855585 2024-09-11 09:02:58.855589 mef 2925 R rec d6a33da5-f484-4e50-9047-069f77c7b99f +2024-09-11 09:02:58.912305 2024-09-11 09:02:58.91231 mef 2926 R rec 93faceff-d72f-4a53-b8be-c436dba36c71 +2024-09-11 09:02:58.969947 2024-09-11 09:02:58.969952 mef 2927 R rec f394d6bc-9d40-40a0-92e8-f6a072b79beb +2024-09-11 09:02:59.026092 2024-09-11 09:02:59.026096 mef 2928 R rec e7628eae-c736-4d94-a2d2-b0c52a35bf32 +2024-09-11 09:02:59.086556 2024-09-11 09:02:59.08656 mef 2929 R rec a17e7b66-f0e7-4d44-826e-313181d796f2 +2024-09-11 09:02:59.144241 2024-09-11 09:02:59.144245 mef 2930 R rec 86ddfb73-d7f6-4557-8c20-19e7497aa161 +2024-09-11 09:02:59.205793 2024-09-11 09:02:59.205798 mef 2931 R rec d74ba7d5-cb1a-49a7-a23f-2d14bc632ea8 +2024-09-11 09:02:59.261145 2024-09-11 09:02:59.261151 mef 2932 R rec 57c01f33-6487-4354-b985-8a188f82d377 +2024-09-11 09:02:59.312454 2024-09-11 09:02:59.312459 mef 2933 R rec e83fb8ad-de88-4e31-bcb5-872b4afc5376 +2024-09-11 09:02:59.364779 2024-09-11 09:02:59.364785 mef 2934 R rec 47b2279f-d406-464b-a78b-7983431081b9 +2024-09-11 09:02:59.421344 2024-09-11 09:02:59.421352 mef 2935 R rec 6ef5040b-e243-4c75-ae83-f04b6f6dfd81 +2024-09-11 09:02:59.47398 2024-09-11 09:02:59.473985 mef 2936 R rec b3009650-847d-46e0-9c64-5acc0ddb8a27 +2024-09-11 09:02:59.530647 2024-09-11 09:02:59.530653 mef 2937 R rec 74a3f06f-8fa9-4ca4-9065-e5dc60060084 +2024-09-11 09:02:59.583149 2024-09-11 09:02:59.583153 mef 2938 R rec acefea8c-5103-437a-99fa-eb5566b5d41b +2024-09-11 09:02:59.635172 2024-09-11 09:02:59.635177 mef 2939 R rec f40eafd6-2e20-492a-b8cf-f7995f6856c1 +2024-09-11 09:02:59.688328 2024-09-11 09:02:59.688333 mef 2940 R rec e0e3c38b-8eaa-446c-ab2f-7b6884694345 +2024-09-11 09:02:59.7383 2024-09-11 09:02:59.738305 mef 2941 R rec 7202e306-4308-430a-8917-63819c38b28e +2024-09-11 09:02:59.794643 2024-09-11 09:02:59.794649 mef 2942 R rec ee820d79-ff1d-4cde-b680-dedb7ac99e44 +2024-09-11 09:02:59.855379 2024-09-11 09:02:59.855384 mef 2943 R rec 63b87e4f-95cb-4ec2-a0a2-a8f092e96c65 +2024-09-11 09:02:59.915041 2024-09-11 09:02:59.915045 mef 2944 R rec 2e640091-2c66-4eb0-815d-138d5ffd44d5 +2024-09-11 09:02:59.966963 2024-09-11 09:02:59.966968 mef 2945 R rec 59a4ff99-8397-4414-944a-c30e5f42b5b4 +2024-09-11 09:03:00.020381 2024-09-11 09:03:00.020386 mef 2946 R rec bc505331-0d65-4078-b45a-03e9d8fc3f92 +2024-09-11 09:03:00.074405 2024-09-11 09:03:00.07441 mef 2947 R rec 569f3743-c40d-494d-b83a-a7bc2db90d5c +2024-09-11 09:03:00.125439 2024-09-11 09:03:00.125446 mef 2948 R rec 954091fa-afd8-4c79-9294-1c7871ff14bf +2024-09-11 09:03:00.175322 2024-09-11 09:03:00.175328 mef 2949 R rec a2e22602-9083-4334-916f-251e45878ff7 +2024-09-11 09:03:00.226301 2024-09-11 09:03:00.226307 mef 2950 R rec c9a5d9fc-847e-4548-bafd-81d630476e59 +2024-09-11 09:03:00.277839 2024-09-11 09:03:00.277844 mef 2951 R rec b658e66d-cb09-4007-9f34-ebf1562934a5 +2024-09-11 09:03:00.335509 2024-09-11 09:03:00.335514 mef 2952 R rec afc9cbe7-ea11-4dda-9306-9b6d933bfacc +2024-09-11 09:03:00.394047 2024-09-11 09:03:00.394052 mef 2953 R rec 2cb4b05c-75b5-4b16-b185-cb91b21bfccb +2024-09-11 09:03:00.449059 2024-09-11 09:03:00.449064 mef 2954 R rec 5ed039b1-f59e-4c5d-b57e-1dca9036e327 +2024-09-11 09:03:00.507737 2024-09-11 09:03:00.507742 mef 2955 R rec ea9dcc69-ce57-4ba0-843f-bfb9eb0e0003 +2024-09-11 09:03:00.560345 2024-09-11 09:03:00.56035 mef 2956 R rec 6e8f87a6-caaa-432e-812f-2d3630e69dc9 +2024-09-11 09:03:00.626029 2024-09-11 09:03:00.626034 mef 2957 R rec 33b9a5aa-dad4-4ea0-8c91-947eb5855269 +2024-09-11 09:03:00.680986 2024-09-11 09:03:00.68099 mef 2958 R rec 5e3e3254-edc1-4ebe-ba3f-42bf9f0265e8 +2024-09-11 09:03:00.743852 2024-09-11 09:03:00.743857 mef 2959 R rec 0ac63389-9838-4904-a0fa-6575399a6fc7 +2024-09-11 09:03:00.797768 2024-09-11 09:03:00.797774 mef 2960 R rec f641b134-0a73-41bf-bab8-dbe7000ed7e7 +2024-09-11 09:03:00.857372 2024-09-11 09:03:00.857378 mef 2961 R rec cdbf313c-fe94-4210-bd9d-c55ae2529c9c +2024-09-11 09:03:00.910991 2024-09-11 09:03:00.910996 mef 2962 R rec d96bcc18-8c6a-4a1c-b83e-c4f1fbf5df48 +2024-09-11 09:03:00.966564 2024-09-11 09:03:00.966569 mef 2963 R rec 0754f086-6afc-454e-950d-44f65b954eca +2024-09-11 09:03:01.02742 2024-09-11 09:03:01.027424 mef 2964 R rec 177b069c-8941-4bc0-bf87-3191c12c49e8 +2024-09-11 09:03:01.083597 2024-09-11 09:03:01.083601 mef 2965 R rec 6562c922-48e8-44c6-be41-cf157ace80d1 +2024-09-11 09:03:01.139234 2024-09-11 09:03:01.139239 mef 2966 R rec 503696bd-eb11-4dad-a7bb-38483536fc96 +2024-09-11 09:03:01.193411 2024-09-11 09:03:01.193416 mef 2967 R rec 101e3ac0-1f77-4123-b52b-1fda54a5574b +2024-09-11 09:03:01.25014 2024-09-11 09:03:01.250145 mef 2968 R rec 45908dd3-e49b-44fd-a021-cb9db28e95cc +2024-09-11 09:03:01.302934 2024-09-11 09:03:01.30294 mef 2969 R rec 2abd267f-b987-4a22-b831-f735504727e3 +2024-09-11 09:03:01.357664 2024-09-11 09:03:01.357669 mef 2970 R rec 79c94f22-0ef1-4b80-a0a6-6c85a07d2a7b +2024-09-11 09:03:01.413014 2024-09-11 09:03:01.413019 mef 2971 R rec 3f39d2eb-5885-4334-8ae7-80e24a8e33f0 +2024-09-11 09:03:01.469101 2024-09-11 09:03:01.469106 mef 2972 R rec 151b973e-2804-4f35-b6fd-8b96caad3e4c +2024-09-11 09:03:01.521027 2024-09-11 09:03:01.521034 mef 2973 R rec daf60102-a21a-46ef-8757-b6f15e723c5a +2024-09-11 09:03:01.574049 2024-09-11 09:03:01.574053 mef 2974 R rec 952d5b96-36a2-4477-ba68-3ab8dcf971b8 +2024-09-11 09:03:01.63025 2024-09-11 09:03:01.630255 mef 2975 R rec 67e96a82-f7f8-44dd-8a15-d91bae727dc4 +2024-09-11 09:03:01.680997 2024-09-11 09:03:01.681 mef 2976 R rec 1505d4dd-c206-4f63-9562-36dcf02d662d +2024-09-11 09:03:01.736885 2024-09-11 09:03:01.73689 mef 2977 R rec 105dbc4a-0856-45fb-8dbb-ef8fab9ad4a5 +2024-09-11 09:03:01.792167 2024-09-11 09:03:01.792172 mef 2978 R rec c37aded7-83f0-4fc8-9af4-ade777a34912 +2024-09-11 09:03:01.853987 2024-09-11 09:03:01.853992 mef 2979 R rec 8c7ec128-c80f-4b2e-959a-a9ab85fe4488 +2024-09-11 09:03:01.920435 2024-09-11 09:03:01.920441 mef 2980 R rec eafa5679-a2a0-460d-975c-c0ebdf5ba1d0 +2024-09-11 09:03:01.972956 2024-09-11 09:03:01.97296 mef 2981 R rec 26060d3c-1541-4d9b-a951-dae5e95c8840 +2024-09-11 09:03:02.029894 2024-09-11 09:03:02.029899 mef 2982 R rec b9405c04-6415-42f2-ae60-c7d5669ff623 +2024-09-11 09:03:02.098727 2024-09-11 09:03:02.098732 mef 2983 R rec 0fa767bb-a9d4-42a2-bd54-e8614879364b +2024-09-11 09:03:02.156281 2024-09-11 09:03:02.156286 mef 2984 R rec 6bfa0334-569d-444f-bac6-e02c4440c602 +2024-09-11 09:03:02.225263 2024-09-11 09:03:02.225268 mef 2985 R rec aff89265-b840-485e-a74f-7731a6445278 +2024-09-11 09:03:02.283882 2024-09-11 09:03:02.283887 mef 2986 R rec b330249e-9247-4997-9347-91b8359c50dc +2024-09-11 09:03:02.339462 2024-09-11 09:03:02.339467 mef 2987 R rec 59a7045c-a7ef-4c84-8951-4c4e88587c8d +2024-09-11 09:03:02.396847 2024-09-11 09:03:02.396851 mef 2988 R rec 23a24ca8-ac58-43ae-8f37-78f34a6bf2e9 +2024-09-11 09:03:02.454595 2024-09-11 09:03:02.454601 mef 2989 R rec eeb100a9-45c7-40a8-99d6-5652166e236d +2024-09-11 09:03:02.513732 2024-09-11 09:03:02.513736 mef 2990 R rec 99501cd5-e7cb-4cfd-a3ac-1aba5126cc64 +2024-09-11 09:03:02.569664 2024-09-11 09:03:02.569669 mef 2991 R rec a1a64b46-72e9-4136-9bae-7ced64186e06 +2024-09-11 09:03:02.632239 2024-09-11 09:03:02.632244 mef 2992 R rec aa0287b1-7656-4f9c-bf2f-f527b20d7a8e +2024-09-11 09:03:02.689961 2024-09-11 09:03:02.689966 mef 2993 R rec 5fd00acb-4418-4cab-b5d6-f9ea5f5a1588 +2024-09-11 09:03:02.74801 2024-09-11 09:03:02.748015 mef 2994 R rec bef21bc3-c51d-4a1c-9760-450623bf89a1 +2024-09-11 09:03:02.810792 2024-09-11 09:03:02.810797 mef 2995 R rec f1144ae6-6910-4aea-92cc-51446471d93f +2024-09-11 09:03:02.87525 2024-09-11 09:03:02.875255 mef 2996 R rec f07da6b3-37d3-419d-ac2d-86e2dd1a7cf5 +2024-09-11 09:03:02.934727 2024-09-11 09:03:02.934732 mef 2997 R rec b6a0e4d2-9001-45ad-bc88-4775bf858169 +2024-09-11 09:03:02.994602 2024-09-11 09:03:02.994607 mef 2998 R rec fcdd4b4d-5c49-4ef8-978f-dc7463f15c32 +2024-09-11 09:03:03.065094 2024-09-11 09:03:03.0651 mef 2999 R rec 1391b1d8-37d5-4f7a-8d2b-56ca9e8be720 +2024-09-11 09:03:03.123741 2024-09-11 09:03:03.123747 mef 3000 R rec f889e949-1e88-476d-be1a-00cf5e5a156e +2024-09-11 09:03:03.189446 2024-09-11 09:03:03.189451 mef 3001 R rec cf5d03a9-67b5-4842-b704-180278af613f +2024-09-11 09:03:03.256291 2024-09-11 09:03:03.256296 mef 3002 R rec ffc63774-5788-445a-a215-b20fa115a3d4 +2024-09-11 09:03:03.32845 2024-09-11 09:03:03.328456 mef 3003 R rec e6d3c4fc-80af-4b30-ad6d-95612a2a04cd +2024-09-11 09:03:03.38468 2024-09-11 09:03:03.384684 mef 3004 R rec a81e3862-ffe3-48d6-88e6-9fb2d46d856a +2024-09-11 09:03:03.443672 2024-09-11 09:03:03.443677 mef 3005 R rec 636e5a59-0fb6-4a58-bf3e-2f74934225c0 +2024-09-11 09:03:03.511449 2024-09-11 09:03:03.511455 mef 3006 R rec cdcc0707-e917-4ffc-8d71-4efbac0d8dae +2024-09-11 09:03:03.569612 2024-09-11 09:03:03.569617 mef 3007 R rec ea0c11a7-412a-4c46-8313-6f3dcb9d4c02 +2024-09-11 09:03:03.685795 2024-09-11 09:03:03.685802 mef 3008 R rec 13d37ac8-7a67-48b5-8b72-b4566acda25a +2024-09-11 09:03:03.741851 2024-09-11 09:03:03.741857 mef 3009 R rec 7f55898f-05ef-4c99-bd09-abfb47e50a83 +2024-09-11 09:03:03.806678 2024-09-11 09:03:03.806682 mef 3010 R rec 6c750ee0-c858-4daa-a46c-15e800449f1c +2024-09-11 09:03:03.873663 2024-09-11 09:03:03.873668 mef 3011 R rec 76a813e8-7f1e-4365-b7a4-223bbec4176a +2024-09-11 09:03:03.934915 2024-09-11 09:03:03.934921 mef 3012 R rec 5015849c-370a-43aa-bee0-530ccfd84faf +2024-09-11 09:03:04.039304 2024-09-11 09:03:04.039309 mef 3013 R rec 3f91d317-7738-458b-982f-c95fcaa426c6 +2024-09-11 09:03:04.099542 2024-09-11 09:03:04.099547 mef 3014 R rec ee57dea6-8154-476d-bf7c-5504b460d12d +2024-09-11 09:03:04.156468 2024-09-11 09:03:04.156473 mef 3015 R rec e9141716-3c59-4718-8d43-bdd1f34d7797 +2024-09-11 09:03:04.219623 2024-09-11 09:03:04.219629 mef 3016 R rec 4fb866e2-6e44-47b5-84a8-fa8780498fbd +2024-09-11 09:03:04.278522 2024-09-11 09:03:04.278527 mef 3017 R rec 403f0638-d9bb-4674-b455-1b16b0113d4a +2024-09-11 09:03:04.350533 2024-09-11 09:03:04.350538 mef 3018 R rec e8dca031-5835-4507-917c-151519f7167f +2024-09-11 09:03:04.410706 2024-09-11 09:03:04.410712 mef 3019 R rec 2b4904aa-ac9b-474c-8426-3087be3aa100 +2024-09-11 09:03:04.466482 2024-09-11 09:03:04.466487 mef 3020 R rec d3889797-18b1-4ed3-ad82-b4839415f403 +2024-09-11 09:03:04.527446 2024-09-11 09:03:04.527451 mef 3021 R rec 9704101f-3fbe-4723-aee4-7ed8ea7e746d +2024-09-11 09:03:04.600481 2024-09-11 09:03:04.600486 mef 3022 R rec 781e486d-0d83-4460-9019-6a5e0c608458 +2024-09-11 09:03:04.659835 2024-09-11 09:03:04.65984 mef 3023 R rec c262a93f-08d3-49b5-90ea-6d3b91ce4688 +2024-09-11 09:03:04.721149 2024-09-11 09:03:04.721154 mef 3024 R rec c5f213d6-1f51-41e9-9309-715d7485a1f4 +2024-09-11 09:03:04.795879 2024-09-11 09:03:04.795885 mef 3025 R rec 86c9d8ef-a7ef-4338-a2d8-e580742428b8 +2024-09-11 09:03:04.852323 2024-09-11 09:03:04.852329 mef 3026 R rec 04e3c3bc-2588-4bb5-b360-b229b332e854 +2024-09-11 09:03:04.91332 2024-09-11 09:03:04.913325 mef 3027 R rec b368a602-4ab4-4525-8f74-552e92d66741 +2024-09-11 09:03:04.982588 2024-09-11 09:03:04.982593 mef 3028 R rec 69c65b8e-50a7-43ae-b21e-c351987716da +2024-09-11 09:03:05.046338 2024-09-11 09:03:05.046342 mef 3029 R rec 4070ed25-80d1-41a0-b67f-4a959a1b952e +2024-09-11 09:03:05.106324 2024-09-11 09:03:05.10633 mef 3030 R rec 829d3887-0fd8-4726-9d70-b17cf3565c6c +2024-09-11 09:03:05.175233 2024-09-11 09:03:05.175238 mef 3031 R rec 22d99f04-9775-4697-905b-ac3cb4c4edec +2024-09-11 09:03:05.236148 2024-09-11 09:03:05.236154 mef 3032 R rec 960048eb-8d57-45a1-9d2a-eecf599f557f +2024-09-11 09:03:05.31004 2024-09-11 09:03:05.310045 mef 3033 R rec 48581a13-0b81-492e-9925-429227e25980 +2024-09-11 09:03:05.36513 2024-09-11 09:03:05.365135 mef 3034 R rec 6838c9b8-c024-460f-ae93-682f984527fe +2024-09-11 09:03:05.430175 2024-09-11 09:03:05.43018 mef 3035 R rec 1fac8d90-7a7f-4972-8cba-c91cc19e96b1 +2024-09-11 09:03:05.505432 2024-09-11 09:03:05.505437 mef 3036 R rec 12c11d78-cc66-418d-9e74-11aa55a94b76 +2024-09-11 09:03:05.570058 2024-09-11 09:03:05.570065 mef 3037 R rec 0743f6db-451f-4812-9c9c-14c157d4b7ec +2024-09-11 09:03:05.653397 2024-09-11 09:03:05.653403 mef 3038 R rec a1c4f030-5453-479f-9eb5-685d1d24de23 +2024-09-11 09:03:05.731764 2024-09-11 09:03:05.73177 mef 3039 R rec 834d0f65-be7b-45a2-acaf-2a0a0aa85b41 +2024-09-11 09:03:05.80015 2024-09-11 09:03:05.800154 mef 3040 R rec 5f523527-834d-4818-a5ba-ab72ca376581 +2024-09-11 09:03:05.869961 2024-09-11 09:03:05.869967 mef 3041 R rec d0110066-852b-4b4c-99fd-581c05296579 +2024-09-11 09:03:05.948645 2024-09-11 09:03:05.94865 mef 3042 R rec a31c1253-1425-4d9f-9823-47ebdbe89e24 +2024-09-11 09:03:06.016836 2024-09-11 09:03:06.016841 mef 3043 R rec 13dfd5aa-a726-4912-aa2b-d0958de89d7a +2024-09-11 09:03:06.102136 2024-09-11 09:03:06.102142 mef 3044 R rec cd4e0637-398a-4d5f-8e71-5596b8bd52f8 +2024-09-11 09:03:06.172549 2024-09-11 09:03:06.172554 mef 3045 R rec d335e4e8-f89c-4e62-b380-a858afbbb4e3 +2024-09-11 09:03:06.235628 2024-09-11 09:03:06.235634 mef 3046 R rec edf99148-f82c-48dc-976c-aa957bfb85fb +2024-09-11 09:03:06.298132 2024-09-11 09:03:06.298138 mef 3047 R rec 54b66881-19d7-4ed8-8c47-f33d79cccd78 +2024-09-11 09:03:06.35645 2024-09-11 09:03:06.356455 mef 3048 R rec bfaba14e-20e3-4705-a73b-7bf9ce6bf6ba +2024-09-11 09:03:06.414262 2024-09-11 09:03:06.414267 mef 3049 R rec a4438823-a68f-40f5-93d2-284356640809 +2024-09-11 09:03:06.470925 2024-09-11 09:03:06.470929 mef 3050 R rec 6ece4e61-1bb3-4b0c-9eb2-23afbd35249c +2024-09-11 09:03:06.535695 2024-09-11 09:03:06.535701 mef 3051 R rec ba702ddb-4573-41c9-89ac-9a55e0e4bb41 +2024-09-11 09:03:06.603246 2024-09-11 09:03:06.60325 mef 3052 R rec b3af1578-1973-4ce7-9700-d30ae7866780 +2024-09-11 09:03:06.660545 2024-09-11 09:03:06.66055 mef 3053 R rec 6057cb68-2a86-4bb8-8e99-4008b65862cf +2024-09-11 09:03:06.719931 2024-09-11 09:03:06.719937 mef 3054 R rec 5bb3f41d-e4e1-4219-b304-8585335469f0 +2024-09-11 09:03:06.79586 2024-09-11 09:03:06.795865 mef 3055 R rec 9e731870-0c5a-48ea-82bf-500da9aadc67 +2024-09-11 09:03:06.852617 2024-09-11 09:03:06.852622 mef 3056 R rec 11dc0560-699b-4530-b1de-666dc80aba44 +2024-09-11 09:03:06.912461 2024-09-11 09:03:06.912466 mef 3057 R rec dac95606-4de4-4c18-8f55-f122793f26e1 +2024-09-11 09:03:06.977347 2024-09-11 09:03:06.977352 mef 3058 R rec fced8d48-b3a1-4557-a6dd-717403be89de +2024-09-11 09:03:07.035572 2024-09-11 09:03:07.035577 mef 3059 R rec a475e639-6c64-42ce-bf13-af429325b159 +2024-09-11 09:03:07.097779 2024-09-11 09:03:07.097784 mef 3060 R rec 3e4f4f2f-ca12-495e-8a33-15fe1393f5db +2024-09-11 09:03:07.158941 2024-09-11 09:03:07.158947 mef 3061 R rec 9b9ec2df-370b-4638-a52d-75983932784f +2024-09-11 09:03:07.218438 2024-09-11 09:03:07.218444 mef 3062 R rec 3879ba12-ce60-4010-b619-800c44110a49 +2024-09-11 09:03:07.278264 2024-09-11 09:03:07.278269 mef 3063 R rec 935376e9-b2f4-4a75-bac1-4b04def7d187 +2024-09-11 09:03:07.339583 2024-09-11 09:03:07.339588 mef 3064 R rec 059707aa-4cfc-4f93-9754-26ac8c2749b0 +2024-09-11 09:03:07.413083 2024-09-11 09:03:07.413087 mef 3065 R rec e96cc792-1e55-46ad-9170-3d33c6e51fbb +2024-09-11 09:03:07.474195 2024-09-11 09:03:07.4742 mef 3066 R rec ddad0089-9f94-4614-9876-417d1bba3f7b +2024-09-11 09:03:07.535152 2024-09-11 09:03:07.535157 mef 3067 R rec f7942439-b309-4a8e-81cf-9f73c84d871a +2024-09-11 09:03:07.605441 2024-09-11 09:03:07.605446 mef 3068 R rec 307731dd-7277-4f52-9384-94b814573dd1 +2024-09-11 09:03:07.669983 2024-09-11 09:03:07.669989 mef 3069 R rec b9ffdcad-5c17-45e8-b3a4-b61d7f5078f9 +2024-09-11 09:03:07.742368 2024-09-11 09:03:07.742373 mef 3070 R rec 04c7f108-515c-4a87-a98e-7c982c5d067c +2024-09-11 09:03:07.84539 2024-09-11 09:03:07.845394 mef 3071 R rec 24af75b7-6a97-40c5-95be-f9770adc8d19 +2024-09-11 09:03:07.912731 2024-09-11 09:03:07.912736 mef 3072 R rec df998fcb-a904-4089-b40e-f29e2933d43e +2024-09-11 09:03:07.986364 2024-09-11 09:03:07.986369 mef 3073 R rec cf206398-5103-48f3-8f8f-92925604b9d1 +2024-09-11 09:03:08.060503 2024-09-11 09:03:08.060508 mef 3074 R rec 1fe9413b-628a-4974-9430-2afe997119f3 +2024-09-11 09:03:08.144129 2024-09-11 09:03:08.144134 mef 3075 R rec 244ae6b6-0c36-4460-a62f-fb46ff8ef762 +2024-09-11 09:03:08.206477 2024-09-11 09:03:08.206481 mef 3076 R rec 5c16ba2e-8295-4476-be24-8937a7b41328 +2024-09-11 09:03:08.266671 2024-09-11 09:03:08.266677 mef 3077 R rec f1d9c798-3104-47da-a23a-2d953fea2295 +2024-09-11 09:03:08.337606 2024-09-11 09:03:08.337612 mef 3078 R rec 2bd39bdd-402b-43cc-a6ec-660c8e0eb883 +2024-09-11 09:03:08.397923 2024-09-11 09:03:08.397928 mef 3079 R rec e63ae355-9c96-4f7d-a6ca-b8dfb2577021 +2024-09-11 09:03:08.457819 2024-09-11 09:03:08.457825 mef 3080 R rec 3b79fcde-ea0f-4c35-a4e2-af7e563098af +2024-09-11 09:03:08.51368 2024-09-11 09:03:08.513685 mef 3081 R rec 6cd39743-fafb-496f-94b2-473f555a2e75 +2024-09-11 09:03:08.575767 2024-09-11 09:03:08.575772 mef 3082 R rec 4bcfec75-17f1-4c10-9406-04f373b0a4bb +2024-09-11 09:03:08.634525 2024-09-11 09:03:08.634531 mef 3083 R rec 9a510d12-fe6a-4739-989d-cd75380fcce6 +2024-09-11 09:03:08.688935 2024-09-11 09:03:08.68894 mef 3084 R rec 580101b6-c58b-4966-b84b-5fcaed1b795f +2024-09-11 09:03:08.747222 2024-09-11 09:03:08.747226 mef 3085 R rec aeba7529-4a6a-4df3-88cd-398f8703dbf7 +2024-09-11 09:03:08.807341 2024-09-11 09:03:08.807345 mef 3086 R rec d985444a-3579-4530-bdcc-44adf84945eb +2024-09-11 09:03:08.871577 2024-09-11 09:03:08.871582 mef 3087 R rec 2924fa48-7713-42b3-8483-ab069bb89dbd +2024-09-11 09:03:08.928747 2024-09-11 09:03:08.928752 mef 3088 R rec e7a078ad-2ad4-4470-9e62-f74c63f989e3 +2024-09-11 09:03:08.992065 2024-09-11 09:03:08.99207 mef 3089 R rec d606c25a-b1d5-46d7-8cdb-4df319a05b3b +2024-09-11 09:03:09.050437 2024-09-11 09:03:09.050442 mef 3090 R rec 9adf66ce-3896-4839-b336-2a08c8edb62c +2024-09-11 09:03:09.122405 2024-09-11 09:03:09.12241 mef 3091 R rec 08126717-97bf-447c-84b9-600eca900195 +2024-09-11 09:03:09.180239 2024-09-11 09:03:09.180244 mef 3092 R rec 8cea18c3-5149-4632-8e4c-b08679a618c9 +2024-09-11 09:03:09.235396 2024-09-11 09:03:09.2354 mef 3093 R rec 098b9abd-9fc0-4168-bfcd-395653eedf2b +2024-09-11 09:03:09.296724 2024-09-11 09:03:09.296728 mef 3094 R rec 31022d12-e509-4472-b8af-a2395dce2e9f +2024-09-11 09:03:09.35556 2024-09-11 09:03:09.355565 mef 3095 R rec 3a447f45-586f-4a07-94dd-1eb2d014220d +2024-09-11 09:03:09.427647 2024-09-11 09:03:09.427652 mef 3096 R rec dbed88d3-85bf-42de-a28f-d2a9dd3a96aa +2024-09-11 09:03:09.481976 2024-09-11 09:03:09.48198 mef 3097 R rec c9fce48f-bc72-4e8f-ac0a-f8bad36580de +2024-09-11 09:03:09.540508 2024-09-11 09:03:09.540513 mef 3098 R rec 63cce2fe-9ca6-4fce-aa19-9c454810b870 +2024-09-11 09:03:09.604644 2024-09-11 09:03:09.604649 mef 3099 R rec 659285f3-ebef-4fdd-b6d7-960c47abbe7b +2024-09-11 09:03:09.675684 2024-09-11 09:03:09.675688 mef 3100 R rec 8e49ee00-2a95-4716-bafb-15b3e27f6a11 +2024-09-11 09:03:09.732191 2024-09-11 09:03:09.732197 mef 3101 R rec b1e48d99-7da6-493a-8108-5e40c6585875 +2024-09-11 09:03:09.803101 2024-09-11 09:03:09.803106 mef 3102 R rec 7593b267-ca35-4549-a036-83fe9889a8d1 +2024-09-11 09:03:09.869191 2024-09-11 09:03:09.869197 mef 3103 R rec e603ccd3-67ef-4c9b-8a0f-cd4857415690 +2024-09-11 09:03:09.925494 2024-09-11 09:03:09.925499 mef 3104 R rec b6ad3dfc-9d37-41ef-9458-a5d231f5b4d1 +2024-09-11 09:03:09.980411 2024-09-11 09:03:09.980416 mef 3105 R rec f1a7af2c-bd7d-413a-90e9-de020f2e3614 +2024-09-11 09:03:10.037965 2024-09-11 09:03:10.03797 mef 3106 R rec 70835d9b-bcd9-4911-85bd-53d5f8b5a2aa +2024-09-11 09:03:10.0973 2024-09-11 09:03:10.097305 mef 3107 R rec 21333b41-bde3-489b-b3cc-d8721b64ca53 +2024-09-11 09:03:10.157201 2024-09-11 09:03:10.157206 mef 3108 R rec f4c8868a-1ad6-4d9e-820f-949a43c63bfb +2024-09-11 09:03:10.216942 2024-09-11 09:03:10.216947 mef 3109 R rec c8d22fbf-d183-4a5a-b106-f35efef231a7 +2024-09-11 09:03:10.274934 2024-09-11 09:03:10.274939 mef 3110 R rec 972f7c26-ed51-4eb4-ae3b-4259ffe3d3f7 +2024-09-11 09:03:10.333699 2024-09-11 09:03:10.333703 mef 3111 R rec c69e736b-c1d6-49da-a3ad-b0a0423be9c7 +2024-09-11 09:03:10.394869 2024-09-11 09:03:10.394874 mef 3112 R rec 2fa741f9-11df-4ab7-b8e1-55e991449942 +2024-09-11 09:03:10.45649 2024-09-11 09:03:10.456497 mef 3113 R rec 3a0e7443-b22e-4174-8b39-22cf0df1298a +2024-09-11 09:03:10.517939 2024-09-11 09:03:10.517944 mef 3114 R rec e97c0dc6-359d-4304-9f2d-a8e3283354f0 +2024-09-11 09:03:10.594005 2024-09-11 09:03:10.594009 mef 3115 R rec 5fd3b2ce-c364-4a83-83e4-edd750ed1054 +2024-09-11 09:03:10.651231 2024-09-11 09:03:10.651236 mef 3116 R rec 7c962ca7-47e2-4162-9883-0d6dac86bb1e +2024-09-11 09:03:10.709688 2024-09-11 09:03:10.709692 mef 3117 R rec f2d028e3-652e-4a49-8371-563b0bbe546e +2024-09-11 09:03:10.771828 2024-09-11 09:03:10.771833 mef 3118 R rec 46e19bdc-0fe7-445e-a890-1a060a1f5c38 +2024-09-11 09:03:10.839329 2024-09-11 09:03:10.839335 mef 3119 R rec 2fe4931e-6758-45a4-a79c-949589641f67 +2024-09-11 09:03:10.901441 2024-09-11 09:03:10.901446 mef 3120 R rec e087540f-6eb0-4883-bc98-1c3f1770db40 +2024-09-11 09:03:10.975212 2024-09-11 09:03:10.975216 mef 3121 R rec 4782a36c-3b11-44ec-8ae5-f6af724c3a86 +2024-09-11 09:03:11.03872 2024-09-11 09:03:11.038726 mef 3122 R rec f4901cc3-9f2d-4a0a-88c2-45435ba67c75 +2024-09-11 09:03:11.108274 2024-09-11 09:03:11.108279 mef 3123 R rec 5a172f80-40d0-4612-8751-18ac722da52b +2024-09-11 09:03:11.188857 2024-09-11 09:03:11.188862 mef 3124 R rec f24ce4f7-a6ed-4ea7-baed-842fabe34349 +2024-09-11 09:03:11.250822 2024-09-11 09:03:11.250829 mef 3125 R rec 07d65cfa-3f70-4fdc-be0c-9c7cb5fd06a2 +2024-09-11 09:03:11.311756 2024-09-11 09:03:11.311761 mef 3126 R rec a34325c8-f702-4915-be43-e9fbb64a76b7 +2024-09-11 09:03:11.373029 2024-09-11 09:03:11.373034 mef 3127 R rec 22aeaf3c-794a-4b70-b8c4-121159fe5d39 +2024-09-11 09:03:11.450473 2024-09-11 09:03:11.450477 mef 3128 R rec d12274e7-e916-4f97-9273-223658cddd7a +2024-09-11 09:03:11.518065 2024-09-11 09:03:11.518072 mef 3129 R rec 4110c499-f553-4589-84bb-1f83976b427c +2024-09-11 09:03:11.580251 2024-09-11 09:03:11.580255 mef 3130 R rec 19e4433d-c1d7-403d-a4e7-12f4bd2ca78d +2024-09-11 09:03:11.641413 2024-09-11 09:03:11.641418 mef 3131 R rec 25f517de-4f47-45e7-8202-270a95c4dffd +2024-09-11 09:03:11.715816 2024-09-11 09:03:11.715821 mef 3132 R rec c39e12d3-590c-4d53-8fc1-91353c78778a +2024-09-11 09:03:11.773527 2024-09-11 09:03:11.773531 mef 3133 R rec b7f026f1-6793-4840-9920-4009b3e1f796 +2024-09-11 09:03:11.836776 2024-09-11 09:03:11.836781 mef 3134 R rec 9c0da501-f011-4a53-91d9-0be6cc316fff +2024-09-11 09:03:11.902156 2024-09-11 09:03:11.902161 mef 3135 R rec 1a51145d-02c4-415e-9016-eebaea0d5baa +2024-09-11 09:03:11.959707 2024-09-11 09:03:11.959712 mef 3136 R rec c1d86e26-fb34-41b0-8647-0c599d176b28 +2024-09-11 09:03:12.016037 2024-09-11 09:03:12.016042 mef 3137 R rec db42a1ef-6bc1-4121-aa18-54b6bf692eb5 +2024-09-11 09:03:12.078514 2024-09-11 09:03:12.078518 mef 3138 R rec 430cc9eb-0f79-44ba-8621-cddfcf9f72c7 +2024-09-11 09:03:12.181781 2024-09-11 09:03:12.181786 mef 3139 R rec 06c2bac3-25b9-45b7-b197-46d0636de8bb +2024-09-11 09:03:12.260012 2024-09-11 09:03:12.260018 mef 3140 R rec 52d94167-8777-42d7-8c77-cd8234f91629 +2024-09-11 09:03:12.3279 2024-09-11 09:03:12.327904 mef 3141 R rec b459273a-eb32-4c4f-a2ad-6ccdc7754eee +2024-09-11 09:03:12.410644 2024-09-11 09:03:12.410649 mef 3142 R rec 91f2eb1f-3d79-4d48-bd5e-d314b36ccf2f +2024-09-11 09:03:12.475432 2024-09-11 09:03:12.475437 mef 3143 R rec e1e0dec2-7a36-4096-b00c-770c19e7b9ab +2024-09-11 09:03:12.536944 2024-09-11 09:03:12.53695 mef 3144 R rec aeac0b98-ec39-4de2-8020-f150e723aa07 +2024-09-11 09:03:12.601245 2024-09-11 09:03:12.601251 mef 3145 R rec 128cc74d-95af-4a6d-9b74-8ad0cfc54cdb +2024-09-11 09:03:12.676952 2024-09-11 09:03:12.676958 mef 3146 R rec 42aec3ca-a8eb-49e8-9be4-f50ee61196f7 +2024-09-11 09:03:12.752924 2024-09-11 09:03:12.75293 mef 3147 R rec b6f83a2d-4066-4c35-8573-ea49559d39d6 +2024-09-11 09:03:12.855142 2024-09-11 09:03:12.855147 mef 3148 R rec 22bd2271-3db0-471f-bbd9-9aa6344582e6 +2024-09-11 09:03:12.920276 2024-09-11 09:03:12.920282 mef 3149 R rec e44415bb-dcc7-4d47-bd7d-5bb7804e4578 +2024-09-11 09:03:12.986607 2024-09-11 09:03:12.986616 mef 3150 R rec af78dfa6-a96e-4557-acc3-c3d432f0acb9 +2024-09-11 09:03:13.056907 2024-09-11 09:03:13.056912 mef 3151 R rec 6db04ec6-e354-42d7-8be8-071c6a706d80 +2024-09-11 09:03:13.126578 2024-09-11 09:03:13.126584 mef 3152 R rec 22b261fe-3bba-4700-bab9-57a76cd50b0c +2024-09-11 09:03:13.206766 2024-09-11 09:03:13.20677 mef 3153 R rec 75201f8e-f2fe-49f4-a7e8-b0b24ceb8667 +2024-09-11 09:03:13.269616 2024-09-11 09:03:13.26962 mef 3154 R rec 44e6bfad-c1d6-4ddd-b3cb-48bd1705a983 +2024-09-11 09:03:13.340153 2024-09-11 09:03:13.340158 mef 3155 R rec 5e87ca04-372a-4dd3-96d6-19a1a04837a7 +2024-09-11 09:03:13.399641 2024-09-11 09:03:13.399647 mef 3156 R rec 1614df21-a1b2-402f-8562-7a6fc5d71cfc +2024-09-11 09:03:13.465021 2024-09-11 09:03:13.465026 mef 3157 R rec d240d999-93b9-4f46-a3ba-e6880f7fa046 +2024-09-11 09:03:13.529264 2024-09-11 09:03:13.529269 mef 3158 R rec 56fd0958-483a-4410-909b-b329faf73b76 +2024-09-11 09:03:13.591367 2024-09-11 09:03:13.591373 mef 3159 R rec 9ca31597-45ea-4392-b8d1-5afef966a761 +2024-09-11 09:03:13.656885 2024-09-11 09:03:13.65689 mef 3160 R rec dffeeb3d-4086-4e99-81cc-80e2dd895c6f +2024-09-11 09:03:13.719124 2024-09-11 09:03:13.71913 mef 3161 R rec cd5a6d89-4397-4399-b66a-3ac03270f64e +2024-09-11 09:03:13.783272 2024-09-11 09:03:13.783277 mef 3162 R rec a6c81b3f-953e-43c2-8d38-c3bfcb5ce3bb +2024-09-11 09:03:13.847695 2024-09-11 09:03:13.8477 mef 3163 R rec 5431efba-9fdd-4718-aa37-5556b6017af5 +2024-09-11 09:03:13.913153 2024-09-11 09:03:13.913157 mef 3164 R rec fb36d89b-e7e1-42e4-8cfe-942bbc7043c2 +2024-09-11 09:03:14.010305 2024-09-11 09:03:14.01031 mef 3165 R rec b1e10488-41f2-4353-a769-6c2e0d8c7e5b +2024-09-11 09:03:14.0786 2024-09-11 09:03:14.078606 mef 3166 R rec f06e07e3-645a-4b37-aaba-63ae11840195 +2024-09-11 09:03:14.146626 2024-09-11 09:03:14.146631 mef 3167 R rec 848c8e32-fab6-4015-88b5-6143a9e95b13 +2024-09-11 09:03:14.212842 2024-09-11 09:03:14.212847 mef 3168 R rec 8a4104e0-08db-4148-8175-6ba84d5467a3 +2024-09-11 09:03:14.280206 2024-09-11 09:03:14.280212 mef 3169 R rec 60b5b7be-815d-40f6-a6fd-034acdf9c3e6 +2024-09-11 09:03:14.346547 2024-09-11 09:03:14.346552 mef 3170 R rec ca95e6b9-cb5a-401d-8497-08144fc3a9ba +2024-09-11 09:03:14.416515 2024-09-11 09:03:14.41652 mef 3171 R rec c78d2d43-39af-4d99-b882-e3afbc33f849 +2024-09-11 09:03:14.492016 2024-09-11 09:03:14.492021 mef 3172 R rec 43c549f8-ea24-4c4b-90b9-6e82f08876ef +2024-09-11 09:03:14.557945 2024-09-11 09:03:14.55795 mef 3173 R rec 591da387-5ac3-4ec2-b3ba-51747e1d49fd +2024-09-11 09:03:14.635048 2024-09-11 09:03:14.635054 mef 3174 R rec 845dc37a-e8ca-4cfd-8868-041a0c41189e +2024-09-11 09:03:14.709031 2024-09-11 09:03:14.709036 mef 3175 R rec ec639289-df29-4076-b912-ebb2f7387956 +2024-09-11 09:03:14.784823 2024-09-11 09:03:14.784828 mef 3176 R rec f31f54a5-354c-432f-aeae-a96f444828aa +2024-09-11 09:03:14.851213 2024-09-11 09:03:14.851219 mef 3177 R rec 553b2f81-2cfc-4646-a676-b78c98198352 +2024-09-11 09:03:14.926607 2024-09-11 09:03:14.926612 mef 3178 R rec 6a4978d3-0827-4eaa-b36f-4356c71a7635 +2024-09-11 09:03:14.993 2024-09-11 09:03:14.993006 mef 3179 R rec e616a0df-bbe1-4781-b835-3327537f483b +2024-09-11 09:03:15.060106 2024-09-11 09:03:15.060111 mef 3180 R rec b290bd8d-cc3f-4bb6-ab5b-cb6e0cca40ab +2024-09-11 09:03:15.14094 2024-09-11 09:03:15.140944 mef 3181 R rec fbad60ac-87e5-4a61-b7c9-0a96501e7ad0 +2024-09-11 09:03:15.248098 2024-09-11 09:03:15.248102 mef 3182 R rec 0ecf3231-242a-4d48-9418-0cba86a3e756 +2024-09-11 09:03:15.301423 2024-09-11 09:03:15.301429 mef 3183 R rec a32ff4ae-16c4-4d2d-96bb-cdbdc4426d54 +2024-09-11 09:03:15.359424 2024-09-11 09:03:15.359429 mef 3184 R rec 3c50e43a-0fa4-4c30-b17d-b2f5f2432dde +2024-09-11 09:03:15.422025 2024-09-11 09:03:15.42203 mef 3185 R rec 3f2e2278-9db8-413e-9e54-94b36407b3e4 +2024-09-11 09:03:15.479367 2024-09-11 09:03:15.479373 mef 3186 R rec 4efd21ac-8ff9-4b3c-ba30-77dc7e276ce0 +2024-09-11 09:03:15.537929 2024-09-11 09:03:15.537933 mef 3187 R rec 9d4f5ef6-fc0f-43ba-a9c8-9500597a8420 +2024-09-11 09:03:15.598428 2024-09-11 09:03:15.598434 mef 3188 R rec 296705eb-60b3-4666-9ea9-1dd8bdb9acff +2024-09-11 09:03:15.65882 2024-09-11 09:03:15.658826 mef 3189 R rec c8dad7ae-2798-4645-abd7-e26b396052ce +2024-09-11 09:03:15.717411 2024-09-11 09:03:15.717416 mef 3190 R rec 5fe8a943-c95b-440e-88fe-295e81097c66 +2024-09-11 09:03:15.77686 2024-09-11 09:03:15.776866 mef 3191 R rec b940b5f1-0648-4622-a98a-297bbe0a88e8 +2024-09-11 09:03:15.836778 2024-09-11 09:03:15.836783 mef 3192 R rec d9320e7a-083e-4f68-9664-6cd65512deb9 +2024-09-11 09:03:15.906348 2024-09-11 09:03:15.906353 mef 3193 R rec 8c47cf7f-eafd-401f-a55e-7498476f33d2 +2024-09-11 09:03:15.963315 2024-09-11 09:03:15.96332 mef 3194 R rec 97279698-6b46-463b-9e67-5c4c380c7b31 +2024-09-11 09:03:16.030062 2024-09-11 09:03:16.030068 mef 3195 R rec 3ddc93aa-fcc3-49de-9711-307924d7ef6d +2024-09-11 09:03:16.113958 2024-09-11 09:03:16.113963 mef 3196 R rec 1e8d413f-6a68-4b74-845d-f4148ee7ff0d +2024-09-11 09:03:16.187173 2024-09-11 09:03:16.187179 mef 3197 R rec 687142c8-9fe5-4f3a-ae9a-4c2999ef3661 +2024-09-11 09:03:16.256226 2024-09-11 09:03:16.256231 mef 3198 R rec 27841e66-0f83-40a6-97ea-d3750a54b107 +2024-09-11 09:03:16.31659 2024-09-11 09:03:16.316595 mef 3199 R rec 975afa5c-f67c-469a-bd45-718efbcc4aed +2024-09-11 09:03:16.387178 2024-09-11 09:03:16.387184 mef 3200 R rec 72687b57-dca0-4cf9-a7d5-bc069da4c7c0 +2024-09-11 09:03:16.45413 2024-09-11 09:03:16.454136 mef 3201 R rec 846df7ad-3332-4501-a012-76c5fcf4ac5a +2024-09-11 09:03:16.512884 2024-09-11 09:03:16.512888 mef 3202 R rec 6030eeea-263b-4c3a-847e-8bd7512eead9 +2024-09-11 09:03:16.569591 2024-09-11 09:03:16.569596 mef 3203 R rec 10192dfa-39a6-4d47-a293-347815a2a9a1 +2024-09-11 09:03:16.630343 2024-09-11 09:03:16.630349 mef 3204 R rec c8b3e813-ff6e-43b7-ae54-4d71fb1a986c +2024-09-11 09:03:16.686452 2024-09-11 09:03:16.686458 mef 3205 R rec 5128e842-8c28-4307-8ed0-37922d400e67 +2024-09-11 09:03:16.742236 2024-09-11 09:03:16.742241 mef 3206 R rec 627a186a-e6ec-437b-88ba-a26c9f7e4a2f +2024-09-11 09:03:16.795247 2024-09-11 09:03:16.795252 mef 3207 R rec 1fc0e695-3718-4dfc-955e-06edf4618c04 +2024-09-11 09:03:16.849088 2024-09-11 09:03:16.849092 mef 3208 R rec 7ad8d8cc-63de-41fd-b124-d6d0894557ab +2024-09-11 09:03:16.903168 2024-09-11 09:03:16.903172 mef 3209 R rec 2eb98435-2b68-43f6-8654-5e9b2f7a117e +2024-09-11 09:03:16.955895 2024-09-11 09:03:16.955902 mef 3210 R rec 542b7b93-93fd-4a1c-9766-a253fce3402c +2024-09-11 09:03:17.011633 2024-09-11 09:03:17.011638 mef 3211 R rec d1c60d13-a7aa-4158-b107-e97e451def05 +2024-09-11 09:03:17.069235 2024-09-11 09:03:17.06924 mef 3212 R rec 73bd7759-2bb8-44e2-92b2-9faf34f5faaf +2024-09-11 09:03:17.123904 2024-09-11 09:03:17.123908 mef 3213 R rec 75d0b54f-b367-41e2-8e02-8955cdc39cdb +2024-09-11 09:03:17.176795 2024-09-11 09:03:17.1768 mef 3214 R rec c367e7f4-d351-45b3-aa40-72799b6879bd +2024-09-11 09:03:17.228666 2024-09-11 09:03:17.228672 mef 3215 R rec 83f9ad0e-b69f-4a6b-8d32-4c50ba240411 +2024-09-11 09:03:17.280336 2024-09-11 09:03:17.28034 mef 3216 R rec 891f689f-ea2f-4c9f-a615-08df96ad22de +2024-09-11 09:03:17.3324 2024-09-11 09:03:17.332404 mef 3217 R rec 80de0f53-f2fd-4843-9813-d679b21bab72 +2024-09-11 09:03:17.385441 2024-09-11 09:03:17.385445 mef 3218 R rec f3010425-3e10-4518-8626-d8b592da5ac2 +2024-09-11 09:03:17.448541 2024-09-11 09:03:17.448546 mef 3219 R rec 3568aaf1-b72d-4f3f-abd1-b38a4e165e9b +2024-09-11 09:03:17.519542 2024-09-11 09:03:17.519548 mef 3220 R rec bde3710b-9847-42fc-a087-a8c5235ee475 +2024-09-11 09:03:17.57124 2024-09-11 09:03:17.571244 mef 3221 R rec ae88668f-d60f-428e-a788-c0b124838ae1 +2024-09-11 09:03:17.625126 2024-09-11 09:03:17.625131 mef 3222 R rec fe3ea72e-0ae2-4e1d-a67b-f354ac82a8e4 +2024-09-11 09:03:17.682784 2024-09-11 09:03:17.68279 mef 3223 R rec 0fdbb4e0-6bfd-4cdb-a79f-7a46a8776c25 +2024-09-11 09:03:17.737099 2024-09-11 09:03:17.737104 mef 3224 R rec c6b1dd36-b4a3-4e5f-8d64-8a984f0a6962 +2024-09-11 09:03:17.792437 2024-09-11 09:03:17.792441 mef 3225 R rec 90c25b85-0a43-4161-b3b6-cee36fe77432 +2024-09-11 09:03:17.843648 2024-09-11 09:03:17.843653 mef 3226 R rec f0ab464f-7d86-426a-9098-29303c7310cf +2024-09-11 09:03:17.895666 2024-09-11 09:03:17.895671 mef 3227 R rec b87a2529-c4b7-4236-a4d5-2d3de018ba09 +2024-09-11 09:03:17.952171 2024-09-11 09:03:17.952177 mef 3228 R rec 3ca3f1dd-5911-4618-b7f6-6ab0f27d3dec +2024-09-11 09:03:18.008726 2024-09-11 09:03:18.008732 mef 3229 R rec b957aeef-1873-4434-b877-fc1015c63ee4 +2024-09-11 09:03:18.066078 2024-09-11 09:03:18.066083 mef 3230 R rec e7274a1d-fd02-4c56-bb56-40b38f60d072 +2024-09-11 09:03:18.117736 2024-09-11 09:03:18.117742 mef 3231 R rec 6bbf9f87-cbd1-4fcd-b785-e35d5c2ad371 +2024-09-11 09:03:18.170748 2024-09-11 09:03:18.170754 mef 3232 R rec e7ff208f-581e-4908-868f-69ba1af7c5d0 +2024-09-11 09:03:18.22396 2024-09-11 09:03:18.223964 mef 3233 R rec 640a1e65-78b7-47c6-a89e-f29ec5cae0f2 +2024-09-11 09:03:18.278849 2024-09-11 09:03:18.278854 mef 3234 R rec 608ec0ef-48ed-4d1f-b750-3995f2ebf789 +2024-09-11 09:03:18.337518 2024-09-11 09:03:18.337524 mef 3235 R rec 1ba9ab96-8c19-40a1-9268-3eac249c0324 +2024-09-11 09:03:18.390911 2024-09-11 09:03:18.390917 mef 3236 R rec 6731c2c2-5e3c-4359-82be-abd02044d667 +2024-09-11 09:03:18.44627 2024-09-11 09:03:18.446275 mef 3237 R rec 4913b1c6-743a-4ebc-a959-5c709fac8769 +2024-09-11 09:03:18.498152 2024-09-11 09:03:18.498157 mef 3238 R rec 26c93c86-ab01-472e-8835-c08ce4a2b76a +2024-09-11 09:03:18.554038 2024-09-11 09:03:18.554044 mef 3239 R rec f1588a01-75da-48bd-943c-31471f725c81 +2024-09-11 09:03:18.606342 2024-09-11 09:03:18.606347 mef 3240 R rec dbe0e808-f7dc-4092-9891-d70b5942c6c7 +2024-09-11 09:03:18.661353 2024-09-11 09:03:18.661358 mef 3241 R rec 9d6a091b-7a4f-43af-b28e-e5b2bd5bd835 +2024-09-11 09:03:18.714918 2024-09-11 09:03:18.714922 mef 3242 R rec fb5c71da-accc-464c-b6a4-177c77e61820 +2024-09-11 09:03:18.76634 2024-09-11 09:03:18.766347 mef 3243 R rec 0bf4dcfd-ec3e-4512-a124-bfe1bfc40b07 +2024-09-11 09:03:18.825681 2024-09-11 09:03:18.825686 mef 3244 R rec 20ca4ab6-a351-4391-8971-2fca604de66a +2024-09-11 09:03:18.885997 2024-09-11 09:03:18.886002 mef 3245 R rec 19101610-1654-415d-b005-40713c4e4650 +2024-09-11 09:03:18.938984 2024-09-11 09:03:18.938988 mef 3246 R rec 734c269d-f55b-4dc4-ae21-cfc1dd140a8b +2024-09-11 09:03:18.992256 2024-09-11 09:03:18.992261 mef 3247 R rec 6ffa3273-7dad-45ac-ac4b-52c6ae365de9 +2024-09-11 09:03:19.045645 2024-09-11 09:03:19.045651 mef 3248 R rec 899117ff-3045-4fcc-8572-95a26fb55d41 +2024-09-11 09:03:19.099321 2024-09-11 09:03:19.099327 mef 3249 R rec 856fb145-b8b1-4f09-b1d2-05178c165669 +2024-09-11 09:03:19.152615 2024-09-11 09:03:19.15262 mef 3250 R rec 0c89ae05-b566-4b93-892c-e131a0d3a25a +2024-09-11 09:03:19.209788 2024-09-11 09:03:19.209794 mef 3251 R rec 360baeff-01f2-440c-ab77-62c872fbbcfc +2024-09-11 09:03:19.266692 2024-09-11 09:03:19.266698 mef 3252 R rec 19f63cd8-eeb9-4f6e-b3f9-4436db525f79 +2024-09-11 09:03:19.333113 2024-09-11 09:03:19.333119 mef 3253 R rec ef9c00d9-ce63-4e81-91c4-cf5c4d205b3f +2024-09-11 09:03:19.393245 2024-09-11 09:03:19.39325 mef 3254 R rec 5cc73e98-60e4-4f94-be4d-d11009d308f0 +2024-09-11 09:03:19.452568 2024-09-11 09:03:19.452573 mef 3255 R rec eaae8871-00a3-452f-af35-731448e48fee +2024-09-11 09:03:19.506756 2024-09-11 09:03:19.50676 mef 3256 R rec 64b989e7-1085-414d-a4f5-0e3f9f18ca68 +2024-09-11 09:03:19.564565 2024-09-11 09:03:19.564571 mef 3257 R rec b9f25283-1f10-4076-a8ef-7fda38aed677 +2024-09-11 09:03:19.624832 2024-09-11 09:03:19.624837 mef 3258 R rec a466b01f-0c02-4a00-a6d7-5656f57bc4ba +2024-09-11 09:03:19.686242 2024-09-11 09:03:19.686248 mef 3259 R rec 89c6f80c-9baa-456b-b49f-a1868e3f2483 +2024-09-11 09:03:19.750012 2024-09-11 09:03:19.750017 mef 3260 R rec 7273e360-a0be-49c1-8c90-663497f68855 +2024-09-11 09:03:19.804262 2024-09-11 09:03:19.804268 mef 3261 R rec c3303dba-041f-4791-ac97-6eb8aff8cb8d +2024-09-11 09:03:19.860048 2024-09-11 09:03:19.860052 mef 3262 R rec ba2430e1-3f5c-406f-a659-a03d93140ef5 +2024-09-11 09:03:19.917682 2024-09-11 09:03:19.917692 mef 3263 R rec 8f7360af-4cfb-47a3-9422-ebb220934428 +2024-09-11 09:03:19.979465 2024-09-11 09:03:19.979471 mef 3264 R rec bb0557e1-0796-4036-a7d5-05ce00f0220f +2024-09-11 09:03:20.037699 2024-09-11 09:03:20.037704 mef 3265 R rec d27d752a-8b30-4866-b823-79fde0c68ba1 +2024-09-11 09:03:20.104193 2024-09-11 09:03:20.104201 mef 3266 R rec dbe7ed3a-6515-4ddb-8770-55f3b15c0d58 +2024-09-11 09:03:20.180581 2024-09-11 09:03:20.180586 mef 3267 R rec fb7410da-50b5-4af6-b5c0-a9788faa380b +2024-09-11 09:03:20.239311 2024-09-11 09:03:20.239316 mef 3268 R rec b4e18d12-23aa-4ec0-a1e2-91e2e821a8bc +2024-09-11 09:03:20.299919 2024-09-11 09:03:20.299924 mef 3269 R rec 993a3938-ee3f-4292-81a4-6f367162ede4 +2024-09-11 09:03:20.378481 2024-09-11 09:03:20.378486 mef 3270 R rec c96d055d-3ca9-4e6c-af18-564ab0cba7d7 +2024-09-11 09:03:20.436708 2024-09-11 09:03:20.436714 mef 3271 R rec 33ff3494-4b62-4068-bfdd-cc1b1f541d3f +2024-09-11 09:03:20.498019 2024-09-11 09:03:20.498023 mef 3272 R rec 52e2ee8d-0390-4551-b23e-b2670c8e2acd +2024-09-11 09:03:20.556643 2024-09-11 09:03:20.556648 mef 3273 R rec a1759037-d5b4-46ef-baaa-bdd805e50f21 +2024-09-11 09:03:20.614865 2024-09-11 09:03:20.61487 mef 3274 R rec fd126d44-89b0-44d4-89e1-f186048b159e +2024-09-11 09:03:20.673429 2024-09-11 09:03:20.673434 mef 3275 R rec 8d8757dc-8921-4949-a677-06614a99993e +2024-09-11 09:03:20.746031 2024-09-11 09:03:20.746037 mef 3276 R rec ff07605a-80db-433f-94e2-ce5cd7472635 +2024-09-11 09:03:20.806357 2024-09-11 09:03:20.806361 mef 3277 R rec bed89b32-3e3c-4fb4-a08c-0291fa1c8f64 +2024-09-11 09:03:20.86746 2024-09-11 09:03:20.867465 mef 3278 R rec 3014634d-c77c-4f7f-a99b-47dfd80d8e45 +2024-09-11 09:03:20.937061 2024-09-11 09:03:20.937066 mef 3279 R rec ff225ff8-7dbc-49a8-aee9-6f7d1e2eae09 +2024-09-11 09:03:20.996569 2024-09-11 09:03:20.996575 mef 3280 R rec fb393da5-d692-4d61-a85b-fd3116d67646 +2024-09-11 09:03:21.052943 2024-09-11 09:03:21.052948 mef 3281 R rec 7196f6c3-a6c2-4c93-9e7b-f4572f0969ab +2024-09-11 09:03:21.112476 2024-09-11 09:03:21.112481 mef 3282 R rec 0dc9f0f7-4435-4982-b5ed-8155ace0d3fe +2024-09-11 09:03:21.173146 2024-09-11 09:03:21.173151 mef 3283 R rec d8c8bf44-2751-46ff-93a8-a043ddc9d9bc +2024-09-11 09:03:21.233128 2024-09-11 09:03:21.233133 mef 3284 R rec 15629799-187e-41ca-9a57-7838c2d6c89f +2024-09-11 09:03:21.307286 2024-09-11 09:03:21.307292 mef 3285 R rec 4ff98daa-5688-420f-b9fc-1f9ca7d31deb +2024-09-11 09:03:21.408247 2024-09-11 09:03:21.408252 mef 3286 R rec 367a87eb-f0cd-4b35-b606-abd136075672 +2024-09-11 09:03:21.480057 2024-09-11 09:03:21.480062 mef 3287 R rec 2a63f84c-71c8-4b31-ade4-e1d311cd3829 +2024-09-11 09:03:21.540184 2024-09-11 09:03:21.540189 mef 3288 R rec 7d132539-b657-4fca-aa35-86748a5d76d7 +2024-09-11 09:03:21.604735 2024-09-11 09:03:21.604741 mef 3289 R rec 5c09a5a6-60fa-4b2f-a749-04a0cc920a3a +2024-09-11 09:03:21.681157 2024-09-11 09:03:21.681162 mef 3290 R rec 9da35101-75fe-42c5-9059-08b1b5fc7f78 +2024-09-11 09:03:21.744453 2024-09-11 09:03:21.744458 mef 3291 R rec 518f0d65-ea54-407c-857c-84f9088cfc21 +2024-09-11 09:03:21.824323 2024-09-11 09:03:21.824328 mef 3292 R rec c222778f-79e7-4c2a-88ab-9c8fd0b08739 +2024-09-11 09:03:21.881133 2024-09-11 09:03:21.881138 mef 3293 R rec 6771a83d-0a88-4367-ba7d-d174da71d72f +2024-09-11 09:03:21.94062 2024-09-11 09:03:21.940626 mef 3294 R rec 32f67429-e5e0-4eaa-a155-7d9ad9525ee1 +2024-09-11 09:03:22.010971 2024-09-11 09:03:22.010976 mef 3295 R rec 7ff0e0d6-39f9-437e-ac63-cfc83ee63b2d +2024-09-11 09:03:22.07759 2024-09-11 09:03:22.077596 mef 3296 R rec c3873c03-d25b-444a-bac9-43a8ae152c05 +2024-09-11 09:03:22.146539 2024-09-11 09:03:22.146543 mef 3297 R rec 61179c7d-0eeb-48e4-a2bd-c005f8c1bbfa +2024-09-11 09:03:22.226892 2024-09-11 09:03:22.226898 mef 3298 R rec c6e7cedb-8766-4fbf-838c-ae1989640e5c +2024-09-11 09:03:22.346821 2024-09-11 09:03:22.346832 mef 3299 R rec 4150d937-a67d-4fee-a855-74ae0a26d21b +2024-09-11 09:03:22.438131 2024-09-11 09:03:22.438136 mef 3300 R rec 1a4b393c-547d-4973-9378-92a70957b19e +2024-09-11 09:03:22.495973 2024-09-11 09:03:22.495979 mef 3301 R rec 808f1a52-a568-498b-b7e9-223473085e3a +2024-09-11 09:03:22.553416 2024-09-11 09:03:22.553422 mef 3302 R rec dee4a45c-7e40-43d2-8f4f-15924cf61132 +2024-09-11 09:03:22.613808 2024-09-11 09:03:22.613813 mef 3303 R rec 2c001cc7-0de1-4eec-b71e-989c88ab4ba5 +2024-09-11 09:03:22.668393 2024-09-11 09:03:22.668399 mef 3304 R rec efc2ea30-20d4-46c8-9dac-ccd53ef06252 +2024-09-11 09:03:22.733804 2024-09-11 09:03:22.733811 mef 3305 R rec 999b5a14-bc26-42b6-9bcc-44cb3caccac4 +2024-09-11 09:03:22.794817 2024-09-11 09:03:22.794822 mef 3306 R rec f802db50-9e95-4b61-9df1-57ced8a7924c +2024-09-11 09:03:22.874483 2024-09-11 09:03:22.874488 mef 3307 R rec c6c185e4-100c-4940-8b8b-b3b11661e096 +2024-09-11 09:03:22.937139 2024-09-11 09:03:22.937145 mef 3308 R rec f08e670b-6e3b-465a-8705-ded07c9a4d65 +2024-09-11 09:03:23.00729 2024-09-11 09:03:23.007294 mef 3309 R rec f52333cb-6270-420f-8dcf-c5a57c52d9fe +2024-09-11 09:03:23.068093 2024-09-11 09:03:23.068099 mef 3310 R rec 42436f9f-faa7-4410-b4f8-563aca9b217c +2024-09-11 09:03:23.134104 2024-09-11 09:03:23.13411 mef 3311 R rec aebd2668-98c8-4fb9-b6ef-6cbecad24315 +2024-09-11 09:03:23.191701 2024-09-11 09:03:23.191706 mef 3312 R rec 7957b4a8-ebcd-4f37-8b66-19d82aabffe6 +2024-09-11 09:03:23.250057 2024-09-11 09:03:23.250061 mef 3313 R rec f140f26b-0588-4e06-889b-60ee55009695 +2024-09-11 09:03:23.322734 2024-09-11 09:03:23.322739 mef 3314 R rec a820a739-d8c1-4888-8554-f92cb1c9f0e4 +2024-09-11 09:03:23.378659 2024-09-11 09:03:23.378664 mef 3315 R rec 0bc58c66-ac12-4836-b61b-406de7c44cb2 +2024-09-11 09:03:23.437087 2024-09-11 09:03:23.437092 mef 3316 R rec c49905fe-f315-4d88-a96e-deae08562baf +2024-09-11 09:03:23.505109 2024-09-11 09:03:23.505114 mef 3317 R rec 98b09f00-2510-4b47-a923-cd9e8b9df42b +2024-09-11 09:03:23.564174 2024-09-11 09:03:23.564179 mef 3318 R rec fddf3efe-a9bd-4e0d-a33b-9d2f85cfefef +2024-09-11 09:03:23.621941 2024-09-11 09:03:23.621946 mef 3319 R rec fb2d5cd6-1f58-4b83-b4c9-0b04eb528bb8 +2024-09-11 09:03:23.681172 2024-09-11 09:03:23.681176 mef 3320 R rec b715d2b2-fad6-4d8c-99ad-104db79937ec +2024-09-11 09:03:23.738604 2024-09-11 09:03:23.738608 mef 3321 R rec b1c37dc1-fcaa-41ca-b816-7470389e049a +2024-09-11 09:03:23.804797 2024-09-11 09:03:23.804802 mef 3322 R rec 6f008fbf-7b9d-4d7a-a841-cd167d4a5f75 +2024-09-11 09:03:23.870328 2024-09-11 09:03:23.870333 mef 3323 R rec ecd35b48-df6a-49c4-983a-dcb5f19c48c8 +2024-09-11 09:03:23.934478 2024-09-11 09:03:23.934483 mef 3324 R rec 372ad4d4-bce8-4350-9047-c5923c07f120 +2024-09-11 09:03:24.003321 2024-09-11 09:03:24.003326 mef 3325 R rec 4fcb5c0c-89ec-4406-83b4-818459e8fad0 +2024-09-11 09:03:24.066761 2024-09-11 09:03:24.066766 mef 3326 R rec bf95534e-cb49-4ec3-9b1c-9692beefcc41 +2024-09-11 09:03:24.123638 2024-09-11 09:03:24.123643 mef 3327 R rec b022b37e-c0be-42c1-b67b-586a576b3f4f +2024-09-11 09:03:24.179515 2024-09-11 09:03:24.17952 mef 3328 R rec d7a7dfd5-096c-48fd-9828-7140296d3141 +2024-09-11 09:03:24.240198 2024-09-11 09:03:24.240203 mef 3329 R rec 257e55ea-250d-453b-9145-212cb1187d76 +2024-09-11 09:03:24.295618 2024-09-11 09:03:24.295623 mef 3330 R rec 2d1779b1-97c2-4440-8645-629108d9f284 +2024-09-11 09:03:24.354746 2024-09-11 09:03:24.354751 mef 3331 R rec c2222e1e-53aa-4477-afd7-0fc1c45730c8 +2024-09-11 09:03:24.423352 2024-09-11 09:03:24.423357 mef 3332 R rec 692dda8e-edc8-4f94-bbf5-816a6e0db89c +2024-09-11 09:03:24.485929 2024-09-11 09:03:24.485936 mef 3333 R rec 9179af64-6ece-48b9-9ddc-f794dec0a6a9 +2024-09-11 09:03:24.548494 2024-09-11 09:03:24.548499 mef 3334 R rec 3f14fd1f-150b-42be-9cf7-b8539998c912 +2024-09-11 09:03:24.622315 2024-09-11 09:03:24.622319 mef 3335 R rec 211e320a-beef-4703-8a3a-92b9fc2b3c4b +2024-09-11 09:03:24.678527 2024-09-11 09:03:24.678533 mef 3336 R rec 9f76994f-4cf8-4f43-b726-bad5ee0dff07 +2024-09-11 09:03:24.742463 2024-09-11 09:03:24.742468 mef 3337 R rec 1483103d-e5b4-495a-aa98-24c218c8f3b0 +2024-09-11 09:03:24.808116 2024-09-11 09:03:24.808121 mef 3338 R rec 74692f6e-9fff-44f5-acf5-50ebdf8701cd +2024-09-11 09:03:24.872787 2024-09-11 09:03:24.872792 mef 3339 R rec 2117461c-eb5f-4f99-bf72-3eed3efbe016 +2024-09-11 09:03:24.93156 2024-09-11 09:03:24.931565 mef 3340 R rec a3567233-a88d-41bc-8a8a-da83b6da7fbc +2024-09-11 09:03:25.004473 2024-09-11 09:03:25.004479 mef 3341 R rec 43d359fc-12e1-4702-8748-cd25cc09f776 +2024-09-11 09:03:25.073548 2024-09-11 09:03:25.073553 mef 3342 R rec 9a40ddad-fdfd-47f2-be5f-e2d4ecb6f394 +2024-09-11 09:03:25.135154 2024-09-11 09:03:25.13516 mef 3343 R rec 976c8c02-f2b2-47e1-9f6d-7ca675d9088b +2024-09-11 09:03:25.1955 2024-09-11 09:03:25.195505 mef 3344 R rec a5cd5730-5bbf-419f-bbaa-0b60b7dba9da +2024-09-11 09:03:25.296279 2024-09-11 09:03:25.296283 mef 3345 R rec 71b5ce43-84cd-4827-9f33-4758a76fde1e +2024-09-11 09:03:25.352288 2024-09-11 09:03:25.352292 mef 3346 R rec 58801615-20cc-4bf0-91a2-bec9c0119740 +2024-09-11 09:03:25.411727 2024-09-11 09:03:25.411731 mef 3347 R rec dcb7a13d-8045-44d7-9e37-965a3bf6ad1a +2024-09-11 09:03:25.468683 2024-09-11 09:03:25.468688 mef 3348 R rec 895004cf-66d0-488e-9237-a69d8250dce8 +2024-09-11 09:03:25.528767 2024-09-11 09:03:25.528771 mef 3349 R rec 2659be68-64ba-4e70-bccb-68ce8c5862b9 +2024-09-11 09:03:25.584519 2024-09-11 09:03:25.584523 mef 3350 R rec 4903198c-aba6-4904-b334-5994da8a3fe9 +2024-09-11 09:03:25.64474 2024-09-11 09:03:25.644744 mef 3351 R rec f93231f0-1f54-4d58-a05c-9eb9e2168836 +2024-09-11 09:03:25.701114 2024-09-11 09:03:25.701119 mef 3352 R rec 82f5b4c9-9d7f-4b6c-88ca-4945c587c2a7 +2024-09-11 09:03:25.75601 2024-09-11 09:03:25.756016 mef 3353 R rec b6b28fdc-7b7d-4605-95df-291ea8258138 +2024-09-11 09:03:25.815673 2024-09-11 09:03:25.815677 mef 3354 R rec 72c6006a-cd06-4d36-84e7-a11df875c9f4 +2024-09-11 09:03:25.873477 2024-09-11 09:03:25.873482 mef 3355 R rec 279690ed-1a59-4dae-9dab-0cab2d2dcef6 +2024-09-11 09:03:25.946802 2024-09-11 09:03:25.946807 mef 3356 R rec 5251512f-7a44-492f-b3a0-1aad027b98f1 +2024-09-11 09:03:26.010242 2024-09-11 09:03:26.010248 mef 3357 R rec 41971e55-dff0-44c0-bd1f-bf0e34ee0700 +2024-09-11 09:03:26.070803 2024-09-11 09:03:26.070808 mef 3358 R rec afd8f267-6ec4-4692-89c0-d8ec9e2b40c9 +2024-09-11 09:03:26.133155 2024-09-11 09:03:26.133162 mef 3359 R rec 13dec372-48f4-4aff-af2c-d2eefdc6512a +2024-09-11 09:03:26.210576 2024-09-11 09:03:26.210581 mef 3360 R rec ad979f8d-cce1-4717-9fb9-ac9024cc4be2 +2024-09-11 09:03:26.265318 2024-09-11 09:03:26.265323 mef 3361 R rec d6b821aa-7a30-45d0-87a5-00672bf0988b +2024-09-11 09:03:26.324183 2024-09-11 09:03:26.324188 mef 3362 R rec 4ef4a730-bdf6-4b6a-b072-4478980bef10 +2024-09-11 09:03:26.37914 2024-09-11 09:03:26.379145 mef 3363 R rec 4190f88e-7ce7-46c5-b6a0-662ef4efea26 +2024-09-11 09:03:26.434961 2024-09-11 09:03:26.434966 mef 3364 R rec 4e4b765d-8029-444c-9de8-9593578f3fde +2024-09-11 09:03:26.490296 2024-09-11 09:03:26.490302 mef 3365 R rec dc046930-b9e7-4116-adff-0c92a4967dfb +2024-09-11 09:03:26.548056 2024-09-11 09:03:26.54806 mef 3366 R rec da6b5226-c4b8-4458-b9d2-707a7fda54c1 +2024-09-11 09:03:26.60724 2024-09-11 09:03:26.607245 mef 3367 R rec 4e38e7c2-4172-47d8-9700-05acb659a7a5 +2024-09-11 09:03:26.67398 2024-09-11 09:03:26.673985 mef 3368 R rec 2e0511d9-2ab4-494a-869c-bdfdaa0a6b97 +2024-09-11 09:03:26.733744 2024-09-11 09:03:26.73375 mef 3369 R rec f8ff021e-5e17-4d5b-a52a-87b1859be96c +2024-09-11 09:03:26.795777 2024-09-11 09:03:26.795781 mef 3370 R rec 54cf883f-2906-4fa9-a53a-9202053c177c +2024-09-11 09:03:26.85071 2024-09-11 09:03:26.850715 mef 3371 R rec 567b3e1c-5a86-46cd-9787-f0b4537501e9 +2024-09-11 09:03:26.913024 2024-09-11 09:03:26.91303 mef 3372 R rec fbe66fbb-573a-4c24-93f5-f923c70fb46b +2024-09-11 09:03:26.969838 2024-09-11 09:03:26.969843 mef 3373 R rec f792314c-51e0-4957-a226-a6cb5dcb99ca +2024-09-11 09:03:27.027707 2024-09-11 09:03:27.027712 mef 3374 R rec c9bf28b7-22c7-44ad-9537-d4e4a21d008b +2024-09-11 09:03:27.084517 2024-09-11 09:03:27.084522 mef 3375 R rec 3680e32f-3a49-4c1b-884c-37606c07cf3e +2024-09-11 09:03:27.148823 2024-09-11 09:03:27.148828 mef 3376 R rec 9be4d417-9a34-4153-a9c6-4ccde4560073 +2024-09-11 09:03:27.206244 2024-09-11 09:03:27.206249 mef 3377 R rec abefef61-195d-4c15-9e42-72bca8140e07 +2024-09-11 09:03:27.268574 2024-09-11 09:03:27.268581 mef 3378 R rec db38ac40-6130-4abb-bcd2-48d1397269b7 +2024-09-11 09:03:27.334102 2024-09-11 09:03:27.334108 mef 3379 R rec 274adc1b-7954-4a4e-9394-eb3f54035eb8 +2024-09-11 09:03:27.412296 2024-09-11 09:03:27.412301 mef 3380 R rec aaeedd53-acfc-42f7-b5b3-52ae49e49e47 +2024-09-11 09:03:27.480663 2024-09-11 09:03:27.480667 mef 3381 R rec 52c14d4a-47bc-4df3-bf63-6bde3d6247b6 +2024-09-11 09:03:27.539329 2024-09-11 09:03:27.539334 mef 3382 R rec 0bc7a96c-54e3-47b5-bbe6-04b175e8b6c1 +2024-09-11 09:03:27.614288 2024-09-11 09:03:27.614293 mef 3383 R rec 32bcf063-8225-4213-9c26-9734b7c1391d +2024-09-11 09:03:27.674042 2024-09-11 09:03:27.674046 mef 3384 R rec abb1c60d-aec1-45ef-95d8-69b77c66efd1 +2024-09-11 09:03:27.728888 2024-09-11 09:03:27.728893 mef 3385 R rec 765f7ac9-8cc2-4d0e-a63c-466760d49489 +2024-09-11 09:03:27.787488 2024-09-11 09:03:27.787494 mef 3386 R rec 375ea0e8-e083-4bd4-ab74-8b301d1f0147 +2024-09-11 09:03:27.847349 2024-09-11 09:03:27.847354 mef 3387 R rec f391b9f2-8a37-49cc-ab6f-f2993cfa065e +2024-09-11 09:03:27.902043 2024-09-11 09:03:27.902048 mef 3388 R rec bfc7e93a-d42e-44cd-846c-8c3e3fd14422 +2024-09-11 09:03:27.960567 2024-09-11 09:03:27.96057 mef 3389 R rec e23e6a6d-047c-440a-89f9-2f31d6388251 +2024-09-11 09:03:28.018262 2024-09-11 09:03:28.018268 mef 3390 R rec 3a625fe2-ed00-4f30-a7be-a0b35f3f2b52 +2024-09-11 09:03:28.07782 2024-09-11 09:03:28.077825 mef 3391 R rec bdc7b42e-d5ce-4e8c-a3fb-eb3a341a6141 +2024-09-11 09:03:28.134063 2024-09-11 09:03:28.134069 mef 3392 R rec ac7db7b4-0c5a-408f-8780-488673199df6 +2024-09-11 09:03:28.190725 2024-09-11 09:03:28.19073 mef 3393 R rec 7da162bc-f34b-4549-9dd0-5b0ac3b6eb77 +2024-09-11 09:03:28.246575 2024-09-11 09:03:28.24658 mef 3394 R rec 6a173b84-616c-44b1-a2f9-b9e664b8a118 +2024-09-11 09:03:28.30666 2024-09-11 09:03:28.306665 mef 3395 R rec e9f5d8f8-a330-4a7a-8c9e-aa9fd8181432 +2024-09-11 09:03:28.376066 2024-09-11 09:03:28.376071 mef 3396 R rec b71619f2-17f7-4281-a49a-3a5fb8a82d39 +2024-09-11 09:03:28.435941 2024-09-11 09:03:28.435946 mef 3397 R rec 14eb3c37-e137-4ceb-a118-cfd0804a73f7 +2024-09-11 09:03:28.494663 2024-09-11 09:03:28.494668 mef 3398 R rec 26b583e1-02d3-4a41-b3ec-3b63f8d50c86 +2024-09-11 09:03:28.549382 2024-09-11 09:03:28.549386 mef 3399 R rec d17525f9-2f5c-4c3a-a01e-b694b21b5d8e +2024-09-11 09:03:28.608074 2024-09-11 09:03:28.608079 mef 3400 R rec fdc94f2b-8685-4381-9791-0338e0f2e2f7 +2024-09-11 09:03:28.66158 2024-09-11 09:03:28.661585 mef 3401 R rec 5de04787-bf50-4daf-954b-3c21c1af7157 +2024-09-11 09:03:28.72075 2024-09-11 09:03:28.720757 mef 3402 R rec 16dc71e4-9a1f-4f1c-9d6f-f76d9c6a3973 +2024-09-11 09:03:28.785779 2024-09-11 09:03:28.785784 mef 3403 R rec c5e46031-4683-401d-b608-f31d700ca1f5 +2024-09-11 09:03:28.843851 2024-09-11 09:03:28.843856 mef 3404 R rec 423f7dff-07fb-4e4d-8fc5-19f16de3dec2 +2024-09-11 09:03:28.901639 2024-09-11 09:03:28.901645 mef 3405 R rec af560f58-d88e-41e4-94ec-a58166221ca7 +2024-09-11 09:03:28.957026 2024-09-11 09:03:28.957031 mef 3406 R rec 39070cc3-d03d-4e8d-b25b-b0feecb02688 +2024-09-11 09:03:29.018022 2024-09-11 09:03:29.01803 mef 3407 R rec aaa8683e-87f1-42a5-a49b-bd05a682ed5f +2024-09-11 09:03:29.075199 2024-09-11 09:03:29.075203 mef 3408 R rec 1bf5b5bf-b1f2-450f-b145-cb1f3ba4b4dd +2024-09-11 09:03:29.135082 2024-09-11 09:03:29.135087 mef 3409 R rec e1ae5d73-e55f-442b-b584-9d570046ba84 +2024-09-11 09:03:29.191615 2024-09-11 09:03:29.19162 mef 3410 R rec 1b885c84-c9cd-404a-afac-eafff552f6a2 +2024-09-11 09:03:29.260013 2024-09-11 09:03:29.260018 mef 3411 R rec 97c13eed-4cf4-44ba-96b1-fc83d197a3b5 +2024-09-11 09:03:29.316792 2024-09-11 09:03:29.316797 mef 3412 R rec a1b09d7e-8563-442e-bbd7-ebdc75adbc75 +2024-09-11 09:03:29.373415 2024-09-11 09:03:29.37342 mef 3413 R rec 59ff25d6-6635-435c-b8f2-78530edf8580 +2024-09-11 09:03:29.436877 2024-09-11 09:03:29.436882 mef 3414 R rec 064217ad-abc5-4cf9-b538-2b8379a926b2 +2024-09-11 09:03:29.496412 2024-09-11 09:03:29.496417 mef 3415 R rec 3de1a2c0-97d1-4a20-b441-db5778ca5b53 +2024-09-11 09:03:29.560346 2024-09-11 09:03:29.56035 mef 3416 R rec 02201809-753d-4f4b-8499-53e1e8aab57c +2024-09-11 09:03:29.615244 2024-09-11 09:03:29.61525 mef 3417 R rec 7e43ed19-57c3-4e0a-ba65-b0b53a76e25b +2024-09-11 09:03:29.676836 2024-09-11 09:03:29.67684 mef 3418 R rec 7533a2ea-940a-4cde-9a19-6e91136a7e8d +2024-09-11 09:03:29.733853 2024-09-11 09:03:29.733858 mef 3419 R rec 395f78f2-543d-4762-9042-5777f78d7696 +2024-09-11 09:03:29.793309 2024-09-11 09:03:29.793314 mef 3420 R rec d15f32ed-e369-4f88-83ea-78137a43815e +2024-09-11 09:03:29.865498 2024-09-11 09:03:29.865503 mef 3421 R rec 4decc51f-c9f2-406d-8498-ef19affba37b +2024-09-11 09:03:29.940539 2024-09-11 09:03:29.940543 mef 3422 R rec 49cbf1bd-8a3f-4255-afcc-1a956288d23f +2024-09-11 09:03:30.009473 2024-09-11 09:03:30.009478 mef 3423 R rec 9a1486dd-74ea-46e7-97a9-dec54d9c6cc3 +2024-09-11 09:03:30.082814 2024-09-11 09:03:30.082818 mef 3424 R rec ffbed01a-4ff7-40f5-92a6-34fe847bfd19 +2024-09-11 09:03:30.152597 2024-09-11 09:03:30.152603 mef 3425 R rec 4322426b-3718-4178-b9cc-11c0cda79a25 +2024-09-11 09:03:30.224639 2024-09-11 09:03:30.224644 mef 3426 R rec e487b9f0-8dd0-4640-9d61-e49d291f5351 +2024-09-11 09:03:30.282218 2024-09-11 09:03:30.282223 mef 3427 R rec ac422303-91ba-4fd5-8c20-1d670997e376 +2024-09-11 09:03:30.340145 2024-09-11 09:03:30.34015 mef 3428 R rec d2a53588-ec35-4a32-b1d5-d6d8c9db3944 +2024-09-11 09:03:30.399301 2024-09-11 09:03:30.399307 mef 3429 R rec 7dec4cbd-eb0d-4c43-8b4f-37ff02725498 +2024-09-11 09:03:30.486868 2024-09-11 09:03:30.486875 mef 3430 R rec 92e3179b-7c89-4b27-a780-8c672aa2ab8a +2024-09-11 09:03:30.567801 2024-09-11 09:03:30.567806 mef 3431 R rec dce576f5-f337-451b-b35f-2b495d5355a7 +2024-09-11 09:03:30.626336 2024-09-11 09:03:30.626342 mef 3432 R rec dc368c17-5681-42e5-acd8-631aac5d7a17 +2024-09-11 09:03:30.684341 2024-09-11 09:03:30.684347 mef 3433 R rec 7a81d911-84a9-4b44-8342-b9701cdbcafa +2024-09-11 09:03:30.740541 2024-09-11 09:03:30.740545 mef 3434 R rec 37acedfb-447e-41e2-81b7-a4a4e30558e0 +2024-09-11 09:03:30.8008 2024-09-11 09:03:30.800805 mef 3435 R rec 8179543b-af3c-4ce9-a204-3600790bc31d +2024-09-11 09:03:30.859279 2024-09-11 09:03:30.859284 mef 3436 R rec 90f96370-6695-46f0-a879-c598effbbfbd +2024-09-11 09:03:30.936621 2024-09-11 09:03:30.936626 mef 3437 R rec 8f867347-0834-4097-b0e4-8af47cf0c804 +2024-09-11 09:03:30.993023 2024-09-11 09:03:30.993028 mef 3438 R rec 4d1bff6b-a6b4-4441-9ba0-0606d993d219 +2024-09-11 09:03:31.049662 2024-09-11 09:03:31.049667 mef 3439 R rec 79c5f404-bf95-4da1-bb89-6ce085d4b0cb +2024-09-11 09:03:31.107263 2024-09-11 09:03:31.107268 mef 3440 R rec a53b2924-8557-496c-8694-044582d21895 +2024-09-11 09:03:31.16334 2024-09-11 09:03:31.163345 mef 3441 R rec b6ac1dba-108b-48a2-b41c-5a469ec3c267 +2024-09-11 09:03:31.220765 2024-09-11 09:03:31.220769 mef 3442 R rec 7419fd04-cbab-430d-9f28-3a48d42ee994 +2024-09-11 09:03:31.276928 2024-09-11 09:03:31.276934 mef 3443 R rec eb2a3b9c-86f9-40bc-a8c0-83c65fce77af +2024-09-11 09:03:31.332986 2024-09-11 09:03:31.332993 mef 3444 R rec d06828b3-d9c5-47f1-a9a5-e03f855c7ddb +2024-09-11 09:03:31.391432 2024-09-11 09:03:31.391437 mef 3445 R rec 56af1959-25ea-4cc2-9d22-3456582ee986 +2024-09-11 09:03:31.465965 2024-09-11 09:03:31.465971 mef 3446 R rec 98705f3b-4325-4cfe-bf06-a6d1ef79f930 +2024-09-11 09:03:31.525404 2024-09-11 09:03:31.52541 mef 3447 R rec c1791931-9d02-44c4-8799-5bf53afffb47 +2024-09-11 09:03:31.582315 2024-09-11 09:03:31.582319 mef 3448 R rec 09aa3b2a-d235-42fd-b597-0196d05dedc9 +2024-09-11 09:03:31.640695 2024-09-11 09:03:31.6407 mef 3449 R rec 8e6209cf-4d0f-4601-b5d8-ba7c84412fdc +2024-09-11 09:03:31.701157 2024-09-11 09:03:31.701163 mef 3450 R rec 48e97dc1-12c9-4992-968d-542309adb714 +2024-09-11 09:03:31.758937 2024-09-11 09:03:31.758942 mef 3451 R rec 1bd15e93-fd0f-4c99-87c9-9c1f4943d1c2 +2024-09-11 09:03:31.816613 2024-09-11 09:03:31.816618 mef 3452 R rec e165b892-6914-46a9-a4b7-660383fd3393 +2024-09-11 09:03:31.878118 2024-09-11 09:03:31.878123 mef 3453 R rec 6803117c-b261-4b36-85fe-395dcc4d733c +2024-09-11 09:03:31.935288 2024-09-11 09:03:31.935294 mef 3454 R rec 1c9bd439-423f-4e00-92ff-a263fc682dce +2024-09-11 09:03:31.993016 2024-09-11 09:03:31.993022 mef 3455 R rec 28a66f77-c328-4cef-af29-4a194ff8b4b1 +2024-09-11 09:03:32.070149 2024-09-11 09:03:32.070154 mef 3456 R rec ee7ca1f8-b101-43a5-8c01-cb65845b644d +2024-09-11 09:03:32.127992 2024-09-11 09:03:32.127997 mef 3457 R rec 478cdf9c-9e79-4245-ab74-ef964270e854 +2024-09-11 09:03:32.187422 2024-09-11 09:03:32.187427 mef 3458 R rec c1ffd826-3677-4d2c-9fef-2bdeb3b595f8 +2024-09-11 09:03:32.24275 2024-09-11 09:03:32.242754 mef 3459 R rec 2e91d826-21d7-409c-8f16-d0a1723d3f7e +2024-09-11 09:03:32.299629 2024-09-11 09:03:32.299636 mef 3460 R rec 0059962d-3b5d-463e-a52a-856fb3c80e0d +2024-09-11 09:03:32.355106 2024-09-11 09:03:32.355111 mef 3461 R rec 00554632-a996-452a-bb94-a26b96ae8d90 +2024-09-11 09:03:32.40897 2024-09-11 09:03:32.408976 mef 3462 R rec 3fcc8b2f-9f20-4b79-85ff-9479a254fc27 +2024-09-11 09:03:32.465742 2024-09-11 09:03:32.465747 mef 3463 R rec 048a3e75-b716-4af8-9e62-315aef13f9ad +2024-09-11 09:03:32.524337 2024-09-11 09:03:32.524343 mef 3464 R rec a7743ccb-4240-4d0c-bd7b-95aa61a2fcd7 +2024-09-11 09:03:32.585263 2024-09-11 09:03:32.585268 mef 3465 R rec c9cbc62a-4517-43dc-98c3-164ab5a071e6 +2024-09-11 09:03:32.644722 2024-09-11 09:03:32.644727 mef 3466 R rec f51c2250-7c00-4812-a6d4-f671169584b4 +2024-09-11 09:03:32.701189 2024-09-11 09:03:32.701194 mef 3467 R rec ad854b5f-27d9-4fef-b318-fe58214c8110 +2024-09-11 09:03:32.758397 2024-09-11 09:03:32.758402 mef 3468 R rec 33326c0d-2ef8-4ece-a455-3a808f35c491 +2024-09-11 09:03:32.824519 2024-09-11 09:03:32.824524 mef 3469 R rec 5b76edde-4f46-49a1-b5f4-39e4a576b84b +2024-09-11 09:03:32.906308 2024-09-11 09:03:32.906313 mef 3470 R rec 8c547594-d242-423b-9c4f-40d14bf21377 +2024-09-11 09:03:32.964856 2024-09-11 09:03:32.964862 mef 3471 R rec acba2785-195c-4369-89f0-506cc3d4a85d +2024-09-11 09:03:33.022529 2024-09-11 09:03:33.022534 mef 3472 R rec a23a93a8-8089-41e8-bd11-f367bdd9bca6 +2024-09-11 09:03:33.084618 2024-09-11 09:03:33.084623 mef 3473 R rec e2a846b7-b0fa-46cf-b305-3d65a4e25f0c +2024-09-11 09:03:33.153042 2024-09-11 09:03:33.153048 mef 3474 R rec 8e5b5b1a-e370-42c1-80e7-e361d70a9669 +2024-09-11 09:03:33.211791 2024-09-11 09:03:33.211797 mef 3475 R rec 5277f9bb-f7b6-464c-88e2-26442390b094 +2024-09-11 09:03:33.268922 2024-09-11 09:03:33.268929 mef 3476 R rec 8ec706fd-c455-4101-be28-b18f81894f16 +2024-09-11 09:03:33.324784 2024-09-11 09:03:33.324789 mef 3477 R rec 834fdde0-83b6-437f-996b-b879abe00e9d +2024-09-11 09:03:33.385126 2024-09-11 09:03:33.385131 mef 3478 R rec 9cf5942c-13d3-43e0-9d11-c0c4fe1eb2bd +2024-09-11 09:03:33.446494 2024-09-11 09:03:33.446499 mef 3479 R rec a967833b-cfd1-46ba-ae2e-c86083725c44 +2024-09-11 09:03:33.516665 2024-09-11 09:03:33.51667 mef 3480 R rec 073a7136-6f23-4b6d-b7b6-b53dda34c192 +2024-09-11 09:03:33.600398 2024-09-11 09:03:33.600405 mef 3481 R rec 337cc4d1-eb2f-4ca4-a994-1ae4f2128c44 +2024-09-11 09:03:33.666499 2024-09-11 09:03:33.666504 mef 3482 R rec 94d3e171-72a0-49a1-9bdd-2aa5ec311f5d +2024-09-11 09:03:33.719316 2024-09-11 09:03:33.719324 mef 3483 R rec 4d5ae0af-b5c8-4b46-a2e6-295854448eaf +2024-09-11 09:03:33.775852 2024-09-11 09:03:33.775856 mef 3484 R rec 23420354-2d28-4477-acd2-9dee8d4dba72 +2024-09-11 09:03:33.827982 2024-09-11 09:03:33.827988 mef 3485 R rec 201c8ea7-133a-447b-87cd-83969703eab2 +2024-09-11 09:03:33.884049 2024-09-11 09:03:33.884055 mef 3486 R rec a31e36c9-553c-4aad-a6cf-8acbf0a6e2f8 +2024-09-11 09:03:33.937583 2024-09-11 09:03:33.937588 mef 3487 R rec f18cc36d-a128-4bcf-9142-2596ac43cc3b +2024-09-11 09:03:33.988612 2024-09-11 09:03:33.988619 mef 3488 R rec e20e82d4-6964-494d-ae18-9a618ea90448 +2024-09-11 09:03:34.04632 2024-09-11 09:03:34.046325 mef 3489 R rec c32539c8-a9ec-4fc5-bda4-df1c92cef1ed +2024-09-11 09:03:34.10714 2024-09-11 09:03:34.107145 mef 3490 R rec dba8e978-59f7-46d7-befa-f9a04f781111 +2024-09-11 09:03:34.169088 2024-09-11 09:03:34.169093 mef 3491 R rec 180d812c-a80b-4c4f-ba88-f4731434acbb +2024-09-11 09:03:34.221315 2024-09-11 09:03:34.221322 mef 3492 R rec 7d759afd-52ab-4d63-aa30-41b77ce1c3c8 +2024-09-11 09:03:34.273362 2024-09-11 09:03:34.273367 mef 3493 R rec 8bb72357-4e61-4144-97c3-f778299c4efa +2024-09-11 09:03:34.329014 2024-09-11 09:03:34.329019 mef 3494 R rec 788cd4a0-8b16-4d3c-b52b-0e07f091c4f4 +2024-09-11 09:03:34.384461 2024-09-11 09:03:34.384466 mef 3495 R rec d6f52596-ab35-4796-925e-b57471178c19 +2024-09-11 09:03:34.437621 2024-09-11 09:03:34.437627 mef 3496 R rec b8614bd7-7d98-49e7-bae9-deb5d5421212 +2024-09-11 09:03:34.487528 2024-09-11 09:03:34.487534 mef 3497 R rec ae3ea162-5a5e-44fb-9fcb-82ed94072bb3 +2024-09-11 09:03:34.540077 2024-09-11 09:03:34.540081 mef 3498 R rec 212bd3c0-3dff-4ce2-ae60-61ef83636e07 +2024-09-11 09:03:34.597022 2024-09-11 09:03:34.597028 mef 3499 R rec 98448f3c-42b6-40c0-97a0-3660517b2ec8 +2024-09-11 09:03:34.660731 2024-09-11 09:03:34.660736 mef 3500 R rec ccadbf20-43de-44d6-921e-23e7467da9b1 +2024-09-11 09:03:34.720856 2024-09-11 09:03:34.720862 mef 3501 R rec 4506b17f-2fa2-4528-a302-94106c596d26 +2024-09-11 09:03:34.782821 2024-09-11 09:03:34.782826 mef 3502 R rec 51bcf81b-e299-4114-8e14-2e4b7af940bb +2024-09-11 09:03:34.845898 2024-09-11 09:03:34.845903 mef 3503 R rec 834d8c82-5c72-4f22-9199-70e021a4e97a +2024-09-11 09:03:34.899589 2024-09-11 09:03:34.899595 mef 3504 R rec 723fe08f-b447-41ca-a566-9086fe5cfe72 +2024-09-11 09:03:34.958209 2024-09-11 09:03:34.958214 mef 3505 R rec 43904814-9153-4f54-80a6-c9dc40ee9fec +2024-09-11 09:03:35.010243 2024-09-11 09:03:35.01025 mef 3506 R rec 222e2135-de82-4a63-a5c4-2b74edc1ece9 +2024-09-11 09:03:35.071097 2024-09-11 09:03:35.071102 mef 3507 R rec 873501a7-7688-47e9-9f0c-74595ad29a49 +2024-09-11 09:03:35.125021 2024-09-11 09:03:35.125026 mef 3508 R rec a9f70422-8a00-41e1-8ea9-8e1b8af9d71c +2024-09-11 09:03:35.179307 2024-09-11 09:03:35.179312 mef 3509 R rec 6cbc211a-245a-4b73-90f4-3b1cd375013a +2024-09-11 09:03:35.236801 2024-09-11 09:03:35.236806 mef 3510 R rec eaf30adb-35fa-4d1f-a2ca-b0c116371d4b +2024-09-11 09:03:35.295398 2024-09-11 09:03:35.295402 mef 3511 R rec 3a96db62-71eb-4c84-8379-bdb31a633b94 +2024-09-11 09:03:35.346449 2024-09-11 09:03:35.346454 mef 3512 R rec 909aa228-b6f1-4906-9e7c-042900646324 +2024-09-11 09:03:35.399805 2024-09-11 09:03:35.39981 mef 3513 R rec 7c48a5a8-eb63-4aab-840a-447ce5d348d8 +2024-09-11 09:03:35.448458 2024-09-11 09:03:35.448463 mef 3514 R rec e4875f05-c1cc-4291-8ffa-ff2e6aebc917 +2024-09-11 09:03:35.505355 2024-09-11 09:03:35.50536 mef 3515 R rec 24280c21-e39a-41fd-b83a-441f64bd2d90 +2024-09-11 09:03:35.557341 2024-09-11 09:03:35.557346 mef 3516 R rec be89d92d-2a00-4918-950c-8846528ce243 +2024-09-11 09:03:35.611105 2024-09-11 09:03:35.611109 mef 3517 R rec c0998fe9-5655-4e33-9600-e3ff5600f252 +2024-09-11 09:03:35.661479 2024-09-11 09:03:35.661484 mef 3518 R rec 57b52046-1891-4d53-96d1-f7995f6ce51d +2024-09-11 09:03:35.717324 2024-09-11 09:03:35.717329 mef 3519 R rec 2a5fcc9a-0286-4e44-a657-40b8bf91c10c +2024-09-11 09:03:35.769819 2024-09-11 09:03:35.769823 mef 3520 R rec 83d5e491-a6b7-4fc0-8246-c2662a46f010 +2024-09-11 09:03:35.8229 2024-09-11 09:03:35.822905 mef 3521 R rec 455c7e27-9876-4b4b-b7ae-52d0c151e558 +2024-09-11 09:03:35.877785 2024-09-11 09:03:35.877791 mef 3522 R rec 62b03940-7ca3-4fdd-9520-fb057d189c22 +2024-09-11 09:03:35.932691 2024-09-11 09:03:35.932696 mef 3523 R rec a247ed77-f1cc-440f-921e-b6179c62b7c0 +2024-09-11 09:03:35.984328 2024-09-11 09:03:35.984333 mef 3524 R rec e6850916-406b-4d36-a928-035452995dfd +2024-09-11 09:03:36.039175 2024-09-11 09:03:36.03918 mef 3525 R rec caa238d5-6712-4d3c-a7b9-ef5cf506e0c0 +2024-09-11 09:03:36.088882 2024-09-11 09:03:36.088892 mef 3526 R rec 24c540cc-c76c-4367-8f32-48aefe61e167 +2024-09-11 09:03:36.143224 2024-09-11 09:03:36.143228 mef 3527 R rec 4f034023-1217-454b-a17a-fede209822c9 +2024-09-11 09:03:36.195501 2024-09-11 09:03:36.195507 mef 3528 R rec 2bc22b77-f83c-41b9-9e9f-84fd1325e10f +2024-09-11 09:03:36.249313 2024-09-11 09:03:36.249318 mef 3529 R rec 4ef1fe35-ab1c-4ca3-8cac-dcd6f0f43c34 +2024-09-11 09:03:36.313408 2024-09-11 09:03:36.313414 mef 3530 R rec 608f5169-2c7c-42ae-aab5-b309530d1aa9 +2024-09-11 09:03:36.370308 2024-09-11 09:03:36.370314 mef 3531 R rec 03d426c9-b4b4-48c7-9ccf-1b062e8c5eb0 +2024-09-11 09:03:36.426991 2024-09-11 09:03:36.426996 mef 3532 R rec 7b91cb4c-b582-4d6a-a4bd-0a83533dea8d +2024-09-11 09:03:36.481846 2024-09-11 09:03:36.481851 mef 3533 R rec 2db796a3-dddd-493b-8417-74c541b7d38f +2024-09-11 09:03:36.541047 2024-09-11 09:03:36.541052 mef 3534 R rec 636becb6-f923-4119-ad96-db3906451ec5 +2024-09-11 09:03:36.596423 2024-09-11 09:03:36.596428 mef 3535 R rec 062a2e91-0349-44ed-a7e4-baf3b6c1021f +2024-09-11 09:03:36.653286 2024-09-11 09:03:36.653292 mef 3536 R rec 22de20d5-169e-48be-a1eb-636b05aace9a +2024-09-11 09:03:36.712227 2024-09-11 09:03:36.712232 mef 3537 R rec 87899b3d-4318-48fb-a030-903f02fd58de +2024-09-11 09:03:36.769113 2024-09-11 09:03:36.769118 mef 3538 R rec f49b80ca-1364-408a-9e30-74faa6f3ec4b +2024-09-11 09:03:36.831069 2024-09-11 09:03:36.831074 mef 3539 R rec 683bb703-ad00-4972-b5fd-0ebdaf06169a +2024-09-11 09:03:36.902434 2024-09-11 09:03:36.902439 mef 3540 R rec 70a4b065-82b3-4899-98bc-433fc54a3186 +2024-09-11 09:03:36.97023 2024-09-11 09:03:36.970235 mef 3541 R rec 947213a5-f02c-415c-8f89-6e0a7bb8611e +2024-09-11 09:03:37.028886 2024-09-11 09:03:37.028891 mef 3542 R rec 95a68620-1903-4b5e-8c0b-fd52c96e690a +2024-09-11 09:03:37.0872 2024-09-11 09:03:37.087207 mef 3543 R rec b03d410c-9e21-4cb1-82cf-f37d846dd2c1 +2024-09-11 09:03:37.148024 2024-09-11 09:03:37.148029 mef 3544 R rec 4a601f48-3ce3-453c-8e22-1cc63bf792ab +2024-09-11 09:03:37.207958 2024-09-11 09:03:37.207964 mef 3545 R rec a1f8bf88-a04e-4ce1-a9b8-7c8a4691deb1 +2024-09-11 09:03:37.277176 2024-09-11 09:03:37.277181 mef 3546 R rec cef907ac-ec6d-4d15-93db-d148a72d3ea8 +2024-09-11 09:03:37.334639 2024-09-11 09:03:37.334645 mef 3547 R rec 02e65a57-5515-4440-89e8-995683bc01cf +2024-09-11 09:03:37.390119 2024-09-11 09:03:37.390126 mef 3548 R rec f38b4978-3c25-4679-8096-926502d5b5bc +2024-09-11 09:03:37.457755 2024-09-11 09:03:37.45776 mef 3549 R rec 86e20f89-f3f5-46cc-ade5-32b4b8d80b7c +2024-09-11 09:03:37.521095 2024-09-11 09:03:37.521102 mef 3550 R rec 6a718a61-b956-4e34-a372-126b4380b162 +2024-09-11 09:03:37.592285 2024-09-11 09:03:37.592289 mef 3551 R rec 14bf3bc0-7a9f-4511-a3ef-1c38229afb03 +2024-09-11 09:03:37.65403 2024-09-11 09:03:37.654036 mef 3552 R rec 719ece6d-3291-4c53-9110-cb39da9315ce +2024-09-11 09:03:37.714783 2024-09-11 09:03:37.714787 mef 3553 R rec 1f48cfea-bc0e-42fa-8261-6defe4143bc1 +2024-09-11 09:03:37.779201 2024-09-11 09:03:37.779206 mef 3554 R rec b6422000-9fd4-49b1-b21c-4e7c86bba4f1 +2024-09-11 09:03:37.863542 2024-09-11 09:03:37.863548 mef 3555 R rec 5effc613-189c-4e3d-8741-0ad50316b955 +2024-09-11 09:03:37.92942 2024-09-11 09:03:37.929426 mef 3556 R rec e4936c3c-f3cb-4c6c-848b-e703586db8ac +2024-09-11 09:03:37.987183 2024-09-11 09:03:37.987191 mef 3557 R rec 3b96c37e-e751-479a-b638-b983364595aa +2024-09-11 09:03:38.051481 2024-09-11 09:03:38.051487 mef 3558 R rec 18fac26e-0f4b-4639-964a-fe9e24497608 +2024-09-11 09:03:38.117943 2024-09-11 09:03:38.117949 mef 3559 R rec edaac1e8-d14e-409a-8f78-5beaad26299f +2024-09-11 09:03:38.176028 2024-09-11 09:03:38.176033 mef 3560 R rec 86dbdb6f-91dc-4fab-9b98-115d989afff3 +2024-09-11 09:03:38.235759 2024-09-11 09:03:38.235765 mef 3561 R rec efbe701b-9c56-4a30-bc9c-e0affb2e86a1 +2024-09-11 09:03:38.293771 2024-09-11 09:03:38.293775 mef 3562 R rec 69461a06-969b-43b1-93f2-9c098337e886 +2024-09-11 09:03:38.349355 2024-09-11 09:03:38.34936 mef 3563 R rec 166a452a-d717-44a3-a7d8-a9f31353999b +2024-09-11 09:03:38.404129 2024-09-11 09:03:38.404133 mef 3564 R rec ccc8496d-83aa-476d-8abd-dce8be6cae89 +2024-09-11 09:03:38.460682 2024-09-11 09:03:38.460687 mef 3565 R rec 160365c9-e858-4c0d-ac79-ff913d7dee53 +2024-09-11 09:03:38.519409 2024-09-11 09:03:38.519415 mef 3566 R rec 3c1415cd-0b88-485b-8145-f90c6f4b6af1 +2024-09-11 09:03:38.576505 2024-09-11 09:03:38.57651 mef 3567 R rec 6a53faf2-d75b-45ca-bdc0-afcc8e99e7ef +2024-09-11 09:03:38.630871 2024-09-11 09:03:38.630877 mef 3568 R rec db0c4fd8-60d7-4b38-9eb1-6365c887fd01 +2024-09-11 09:03:38.699834 2024-09-11 09:03:38.699839 mef 3569 R rec daf84315-7906-4034-9af2-f2da7fe22bcf +2024-09-11 09:03:38.754361 2024-09-11 09:03:38.754368 mef 3570 R rec 525cc2d6-17b8-4e87-a871-a00a8a1b6218 +2024-09-11 09:03:38.812059 2024-09-11 09:03:38.812065 mef 3571 R rec 88bf470c-df5e-442d-bd7c-754f4cf627f9 +2024-09-11 09:03:38.870967 2024-09-11 09:03:38.870972 mef 3572 R rec 6b5602e0-dd64-4308-adc0-d8cdee5af657 +2024-09-11 09:03:38.936251 2024-09-11 09:03:38.936256 mef 3573 R rec 96550e6a-1478-4888-9b26-6f973fcb8292 +2024-09-11 09:03:38.997427 2024-09-11 09:03:38.997433 mef 3574 R rec 1c5b63e7-edf7-48dc-af9c-bcfe28431c8f +2024-09-11 09:03:39.0652 2024-09-11 09:03:39.065205 mef 3575 R rec ec062a9f-9fd7-4154-9c1a-f6607459b34b +2024-09-11 09:03:39.118007 2024-09-11 09:03:39.118011 mef 3576 R rec 1c965365-4aeb-499f-8c7b-3110fb8cfa42 +2024-09-11 09:03:39.176446 2024-09-11 09:03:39.176452 mef 3577 R rec c78d4508-78b6-4e53-aafe-a96a449add2c +2024-09-11 09:03:39.2396 2024-09-11 09:03:39.239605 mef 3578 R rec 115b0d6a-80e7-4ee7-a4e3-d93852d46b79 +2024-09-11 09:03:39.303129 2024-09-11 09:03:39.303134 mef 3579 R rec 290fdaad-7620-46bf-a181-32e7b2540567 +2024-09-11 09:03:39.371208 2024-09-11 09:03:39.371213 mef 3580 R rec 0cb7494d-4d45-452d-9502-e51dc1ce3bd3 +2024-09-11 09:03:39.430593 2024-09-11 09:03:39.430598 mef 3581 R rec 8e902fbe-1bfc-4381-86e6-e629c7440f94 +2024-09-11 09:03:39.487903 2024-09-11 09:03:39.487911 mef 3582 R rec 2b6b5a45-3054-4d6a-b500-dc66c829d91b +2024-09-11 09:03:39.54734 2024-09-11 09:03:39.547345 mef 3583 R rec 63236112-4ec3-44eb-8bf1-6815b7c5e75d +2024-09-11 09:03:39.605072 2024-09-11 09:03:39.605077 mef 3584 R rec d44c8ae8-0517-4f36-a45a-31dad361aca5 +2024-09-11 09:03:39.668202 2024-09-11 09:03:39.668208 mef 3585 R rec 35b5c042-48d9-4819-a4f0-2b2503ff2fe6 +2024-09-11 09:03:39.734672 2024-09-11 09:03:39.734678 mef 3586 R rec e58f6172-fe04-41b0-baf2-c1013f53537d +2024-09-11 09:03:39.794567 2024-09-11 09:03:39.794573 mef 3587 R rec 88c8b59e-9b84-4371-b0e3-4a910df32b78 +2024-09-11 09:03:39.848676 2024-09-11 09:03:39.848681 mef 3588 R rec 44ac0949-0e37-42e4-ac47-560fb1bbed90 +2024-09-11 09:03:39.912453 2024-09-11 09:03:39.912459 mef 3589 R rec 01aa8b44-293d-4702-956e-248675e2591b +2024-09-11 09:03:39.97971 2024-09-11 09:03:39.979715 mef 3590 R rec 735136ff-3251-4c67-9ced-826fdc8376d6 +2024-09-11 09:03:40.050758 2024-09-11 09:03:40.050763 mef 3591 R rec c11b301d-01a7-4f1f-ad87-85d22af39ba6 +2024-09-11 09:03:40.106373 2024-09-11 09:03:40.106378 mef 3592 R rec 8f1c8752-64fc-4fb5-8867-538608bbbbb9 +2024-09-11 09:03:40.171294 2024-09-11 09:03:40.171299 mef 3593 R rec d3c19324-634e-4d27-84f1-07ef4fd44d1c +2024-09-11 09:03:40.227721 2024-09-11 09:03:40.227726 mef 3594 R rec b842f77e-4d09-4061-9508-847fe151ec29 +2024-09-11 09:03:40.285835 2024-09-11 09:03:40.285842 mef 3595 R rec 58aac260-f6e5-4a96-8dcb-9a7e1c74f672 +2024-09-11 09:03:40.342753 2024-09-11 09:03:40.342758 mef 3596 R rec c2f80091-db47-4efc-9e6b-bd25d8f3176c +2024-09-11 09:03:40.400423 2024-09-11 09:03:40.40043 mef 3597 R rec 132fd7ea-5107-4565-9c8e-c309cbcc8e3b +2024-09-11 09:03:40.473397 2024-09-11 09:03:40.473401 mef 3598 R rec 7647b6ab-9584-4134-a9a6-371ed241a4a9 +2024-09-11 09:03:40.565622 2024-09-11 09:03:40.565628 mef 3599 R rec 435084cd-a302-4e29-8e6a-c46a2e4388ee +2024-09-11 09:03:40.62413 2024-09-11 09:03:40.624135 mef 3600 R rec 4e44a440-6794-415f-8033-fa08abddfc14 +2024-09-11 09:03:40.682321 2024-09-11 09:03:40.682325 mef 3601 R rec e8c25f5e-7ed1-4bf0-a8f6-207c5c776b24 +2024-09-11 09:03:40.740783 2024-09-11 09:03:40.740787 mef 3602 R rec 612b94f2-4077-442a-893f-e0dccccd77df +2024-09-11 09:03:40.794904 2024-09-11 09:03:40.794909 mef 3603 R rec eecf5864-dc0c-4fe6-a998-1ab30407a5ab +2024-09-11 09:03:40.850799 2024-09-11 09:03:40.850803 mef 3604 R rec 57c2db54-3760-4265-8f12-03fad7739aba +2024-09-11 09:03:40.908536 2024-09-11 09:03:40.908541 mef 3605 R rec d047bf06-b365-4e13-afa6-1e53b8123e04 +2024-09-11 09:03:40.969042 2024-09-11 09:03:40.969047 mef 3606 R rec 2ce59872-484f-4de9-bcd8-056b6a5d5aba +2024-09-11 09:03:41.036717 2024-09-11 09:03:41.036722 mef 3607 R rec acebd559-ade9-472f-8038-18cb8164508c +2024-09-11 09:03:41.102396 2024-09-11 09:03:41.102402 mef 3608 R rec 469f4361-d032-41a0-8ed4-03c295f2e05b +2024-09-11 09:03:41.162135 2024-09-11 09:03:41.16214 mef 3609 R rec d74320ef-331a-48f9-82ac-128a7d44611b +2024-09-11 09:03:41.227404 2024-09-11 09:03:41.227408 mef 3610 R rec 972ef32a-86bc-45c4-8ca7-001523b71348 +2024-09-11 09:03:41.294303 2024-09-11 09:03:41.294308 mef 3611 R rec 86331594-11f5-4fcf-9f86-69d382539e5a +2024-09-11 09:03:41.353459 2024-09-11 09:03:41.353464 mef 3612 R rec c53de28b-a76b-485f-a46c-ea20e650422d +2024-09-11 09:03:41.422541 2024-09-11 09:03:41.422546 mef 3613 R rec f70dc389-fef7-4c25-83a7-f494f9e89e94 +2024-09-11 09:03:41.481905 2024-09-11 09:03:41.48191 mef 3614 R rec 24d75510-8c42-454c-b37d-7e495427366a +2024-09-11 09:03:41.541279 2024-09-11 09:03:41.541283 mef 3615 R rec 224d1479-d0da-4e00-a4ad-2c530e260529 +2024-09-11 09:03:41.610572 2024-09-11 09:03:41.610576 mef 3616 R rec e55b39fd-6d90-4f04-afc3-c5712ed2fc46 +2024-09-11 09:03:41.671771 2024-09-11 09:03:41.671777 mef 3617 R rec fc8ba66e-6080-4a26-aa95-b7bddc2a4584 +2024-09-11 09:03:41.731681 2024-09-11 09:03:41.731686 mef 3618 R rec c451e22b-f75a-4a73-b889-27f69a41b2b2 +2024-09-11 09:03:41.787667 2024-09-11 09:03:41.787672 mef 3619 R rec e9ce2ddf-762f-45f5-94af-707b65ed2f0f +2024-09-11 09:03:41.841785 2024-09-11 09:03:41.841789 mef 3620 R rec b32c4637-f3fd-488b-9c3c-8b4aa6d8a3bf +2024-09-11 09:03:41.9003 2024-09-11 09:03:41.900306 mef 3621 R rec d65dc2a8-453b-4abb-bb1d-e4e3ae20d83a +2024-09-11 09:03:41.960897 2024-09-11 09:03:41.960903 mef 3622 R rec 82a6bb58-faae-4272-a4b6-0c4b9235ee6f +2024-09-11 09:03:42.052411 2024-09-11 09:03:42.052415 mef 3623 R rec a0e1e653-e8af-4a3a-ba9b-082862a937f0 +2024-09-11 09:03:42.117775 2024-09-11 09:03:42.117779 mef 3624 R rec 3910b64a-05de-4263-bc79-db13728e3b54 +2024-09-11 09:03:42.178478 2024-09-11 09:03:42.178483 mef 3625 R rec 1e87a534-71dd-43f9-9430-803e17d2942c +2024-09-11 09:03:42.235402 2024-09-11 09:03:42.235408 mef 3626 R rec 5b9b2c15-3067-4a8b-ae26-4e5255f65212 +2024-09-11 09:03:42.297762 2024-09-11 09:03:42.297768 mef 3627 R rec f30114c6-3665-41eb-a502-ea69538553b0 +2024-09-11 09:03:42.379226 2024-09-11 09:03:42.37923 mef 3628 R rec e87499ab-f686-43d3-aad1-81298ff12b53 +2024-09-11 09:03:42.439296 2024-09-11 09:03:42.4393 mef 3629 R rec 347e2f52-6e68-4fe0-be14-c4f6b84e8f60 +2024-09-11 09:03:42.499332 2024-09-11 09:03:42.499337 mef 3630 R rec 345745cd-180a-4aff-9e27-9231f4c4f445 +2024-09-11 09:03:42.567543 2024-09-11 09:03:42.567548 mef 3631 R rec 52ec05b4-48a5-4a3d-9cd9-0684da187be0 +2024-09-11 09:03:42.624095 2024-09-11 09:03:42.6241 mef 3632 R rec c1a21028-2912-4fc2-816a-3bec2feed640 +2024-09-11 09:03:42.688485 2024-09-11 09:03:42.68849 mef 3633 R rec eefb395d-3fb3-4af5-98fa-cb6868bdfb02 +2024-09-11 09:03:42.74775 2024-09-11 09:03:42.747754 mef 3634 R rec 8b7b350b-8715-4a35-b872-58c9d21f5912 +2024-09-11 09:03:42.819834 2024-09-11 09:03:42.819839 mef 3635 R rec 1b73efc2-2de5-47c3-9b64-be584fcf2453 +2024-09-11 09:03:42.876151 2024-09-11 09:03:42.876156 mef 3636 R rec a8ef6b00-2e98-41f9-8edb-0f61984a8968 +2024-09-11 09:03:42.929896 2024-09-11 09:03:42.929901 mef 3637 R rec 8fc20c6d-e4e7-4509-ab56-0b515b45bf07 +2024-09-11 09:03:42.985661 2024-09-11 09:03:42.985666 mef 3638 R rec 32e4087f-e447-4996-a6d4-5cc15db51e08 +2024-09-11 09:03:43.045115 2024-09-11 09:03:43.04512 mef 3639 R rec 079dc188-d5a4-4e5f-8bf2-eda4a90ed243 +2024-09-11 09:03:43.103644 2024-09-11 09:03:43.103649 mef 3640 R rec d738f9fa-bec7-4506-afa2-4118b322760f +2024-09-11 09:03:43.165244 2024-09-11 09:03:43.16525 mef 3641 R rec 537e5149-586a-4cb2-ace0-3cdb9dd41f79 +2024-09-11 09:03:43.221768 2024-09-11 09:03:43.221775 mef 3642 R rec 8b4a3e1e-0a25-4e8c-b731-72d52e3260b3 +2024-09-11 09:03:43.275436 2024-09-11 09:03:43.275441 mef 3643 R rec 8112e2da-ffee-4b27-8672-e1297651488a +2024-09-11 09:03:43.328558 2024-09-11 09:03:43.328563 mef 3644 R rec a06aa65b-4e13-41db-a914-2cf066fc57b5 +2024-09-11 09:03:43.38469 2024-09-11 09:03:43.384695 mef 3645 R rec 349a1313-6b2d-4a2e-b512-570777ab37e5 +2024-09-11 09:03:43.445782 2024-09-11 09:03:43.445787 mef 3646 R rec 151f56f4-3a2b-4640-b22d-a99b2b3ea98d +2024-09-11 09:03:43.522097 2024-09-11 09:03:43.522102 mef 3647 R rec 41c9329b-a418-4266-92df-ab2f9f0b2786 +2024-09-11 09:03:43.579375 2024-09-11 09:03:43.57938 mef 3648 R rec 70c12d8a-c975-4600-9892-610747fa7f19 +2024-09-11 09:03:43.640158 2024-09-11 09:03:43.640163 mef 3649 R rec 855abce9-6172-4ee6-b279-08e448dc2b4a +2024-09-11 09:03:43.705449 2024-09-11 09:03:43.705453 mef 3650 R rec fd28a7e3-2b36-42ca-9cda-10d168cf87ee +2024-09-11 09:03:43.762929 2024-09-11 09:03:43.762933 mef 3651 R rec 88cd56dd-1582-4ea5-9fc1-6cfb0f7480a0 +2024-09-11 09:03:43.821998 2024-09-11 09:03:43.822003 mef 3652 R rec 537cda24-7db6-4db3-8e6e-359109fa859a +2024-09-11 09:03:43.8787 2024-09-11 09:03:43.878705 mef 3653 R rec 8106ccdf-d594-4cad-abe6-740aff12f69a +2024-09-11 09:03:43.947621 2024-09-11 09:03:43.947625 mef 3654 R rec b81da33a-9c69-4acc-8884-dbc13705830c +2024-09-11 09:03:44.020633 2024-09-11 09:03:44.020639 mef 3655 R rec 4d04e077-65bf-4f1b-ad61-112e6b1a31a0 +2024-09-11 09:03:44.13052 2024-09-11 09:03:44.130526 mef 3656 R rec 2c2c1776-7ca7-4490-b315-a536fde223b0 +2024-09-11 09:03:44.186138 2024-09-11 09:03:44.186144 mef 3657 R rec 01656c98-8518-41ea-8f27-e92f8528fa65 +2024-09-11 09:03:44.24366 2024-09-11 09:03:44.243666 mef 3658 R rec c857b9da-aafe-41d5-b135-5f95eb9a0f33 +2024-09-11 09:03:44.300181 2024-09-11 09:03:44.300187 mef 3659 R rec c8a5b741-0acf-4d19-bd12-4ce91d24dfda +2024-09-11 09:03:44.358429 2024-09-11 09:03:44.358434 mef 3660 R rec ea52f6e2-b1ef-4ec0-b23a-6456eda95079 +2024-09-11 09:03:44.41342 2024-09-11 09:03:44.413425 mef 3661 R rec d4f8a17c-c6d8-46c2-937a-d72d2166ccc7 +2024-09-11 09:03:44.466065 2024-09-11 09:03:44.466071 mef 3662 R rec 0776bcfc-1b68-40b9-901b-1694a24c9c24 +2024-09-11 09:03:44.524674 2024-09-11 09:03:44.524679 mef 3663 R rec 2396d4ef-cf3b-43d9-b4b4-e6e1115db42b +2024-09-11 09:03:46.846136 2024-09-11 09:03:46.846141 mef 3664 R rec bc572cab-e715-45a0-94fa-5bcbcd54c25d +2024-09-11 09:03:46.905028 2024-09-11 09:03:46.905032 mef 3665 R rec 000c0c11-a6e0-4aec-851e-98f9b75b1089 +2024-09-11 09:03:46.963409 2024-09-11 09:03:46.963414 mef 3666 R rec 5fe2c9d9-867c-42e7-a0b6-c1b98a7c5170 +2024-09-11 09:03:47.03298 2024-09-11 09:03:47.032985 mef 3667 R rec 89c2dc1e-35c0-46c0-b2cf-c8abfcc80806 +2024-09-11 09:03:47.087229 2024-09-11 09:03:47.087235 mef 3668 R rec aafde7b7-224d-47d7-b44a-3d399a4967fb +2024-09-11 09:03:47.165028 2024-09-11 09:03:47.165033 mef 3669 R rec eec5a59e-99df-437d-86e5-98df576bc66b +2024-09-11 09:03:47.236804 2024-09-11 09:03:47.236809 mef 3670 R rec c705807c-e404-4b80-8cea-27f809cf7c09 +2024-09-11 09:03:47.292546 2024-09-11 09:03:47.29255 mef 3671 R rec 5cf4c17c-c33d-405f-a5de-d1d84a47260e +2024-09-11 09:03:47.3475 2024-09-11 09:03:47.347505 mef 3672 R rec 15f33d8a-9ab2-44f3-b1fc-5d9f8c73020a +2024-09-11 09:03:47.403215 2024-09-11 09:03:47.403219 mef 3673 R rec a3c9c4e9-6c6f-45e2-98cf-5298a6365b25 +2024-09-11 09:03:47.458173 2024-09-11 09:03:47.458178 mef 3674 R rec 8fddecd1-122f-47d4-82ed-5684b49c0b83 +2024-09-11 09:03:47.512771 2024-09-11 09:03:47.512775 mef 3675 R rec c0ddd1b0-9e3b-4105-9d70-78fdf63ed362 +2024-09-11 09:03:47.569367 2024-09-11 09:03:47.569372 mef 3676 R rec e5fb4d57-5008-43f2-b1c7-0133ec46d031 +2024-09-11 09:03:47.633015 2024-09-11 09:03:47.633021 mef 3677 R rec 3c1d0812-9d6a-488a-bd4f-ccd9cffe361e +2024-09-11 09:03:47.685376 2024-09-11 09:03:47.685381 mef 3678 R rec 8aebb9ee-74d6-45a4-a2ea-fbe9f955022c +2024-09-11 09:03:47.74135 2024-09-11 09:03:47.741355 mef 3679 R rec 5e4feb02-44df-45bd-9e4a-aee4f8128f6b +2024-09-11 09:03:47.796509 2024-09-11 09:03:47.796515 mef 3680 R rec 14de8f2a-481d-4b32-bde0-ddb108a462fa +2024-09-11 09:03:47.85537 2024-09-11 09:03:47.855375 mef 3681 R rec cb3370fb-182f-449b-ac20-69e2cfe702bf +2024-09-11 09:03:47.918314 2024-09-11 09:03:47.918321 mef 3682 R rec 99c9486d-64e2-4952-b9e6-0e40fa9eb244 +2024-09-11 09:03:47.973751 2024-09-11 09:03:47.973757 mef 3683 R rec e99b5054-44ea-4799-a77a-8857b2eda070 +2024-09-11 09:03:48.038078 2024-09-11 09:03:48.038083 mef 3684 R rec 89ccddb7-c815-492a-980e-cd71f3424d17 +2024-09-11 09:03:48.093404 2024-09-11 09:03:48.093409 mef 3685 R rec d4aa7333-71bd-4efc-acf0-85b5a28fbdb7 +2024-09-11 09:03:48.150257 2024-09-11 09:03:48.150262 mef 3686 R rec ede63992-03a1-4157-815d-fb55f8f49f13 +2024-09-11 09:03:48.208459 2024-09-11 09:03:48.208464 mef 3687 R rec 0fb61307-9e2d-4ceb-acfc-1c7dbea3b6ff +2024-09-11 09:03:48.267454 2024-09-11 09:03:48.267459 mef 3688 R rec 09110a34-0855-462f-afb9-bc8ae5f4a70a +2024-09-11 09:03:48.332703 2024-09-11 09:03:48.332708 mef 3689 R rec 86b75225-07fc-43e0-856e-09798017107b +2024-09-11 09:03:48.389413 2024-09-11 09:03:48.389418 mef 3690 R rec 55557bdc-5b2a-41be-9c2a-d91c74c2eaf2 +2024-09-11 09:03:48.478341 2024-09-11 09:03:48.478347 mef 3691 R rec 4e7d2e22-0166-44ef-b37e-28cd0db34c1f +2024-09-11 09:03:48.537856 2024-09-11 09:03:48.537861 mef 3692 R rec a958b91a-0c0f-4e80-aea7-3fbef2b711bd +2024-09-11 09:03:48.591741 2024-09-11 09:03:48.591746 mef 3693 R rec 42f5f573-f6f5-48b0-9d25-2826fee3778d +2024-09-11 09:03:48.651685 2024-09-11 09:03:48.65169 mef 3694 R rec a0cd3491-c016-481f-9d6d-0a06ba42c9e0 +2024-09-11 09:03:48.705858 2024-09-11 09:03:48.705863 mef 3695 R rec 958984de-5a76-4ed1-8a25-70410e9d48e3 +2024-09-11 09:03:48.764528 2024-09-11 09:03:48.764535 mef 3696 R rec 44250e2e-2dda-46e0-b4ed-b7aac099abfb +2024-09-11 09:03:48.82788 2024-09-11 09:03:48.827885 mef 3697 R rec fdf989d9-ead6-4a32-bbba-a22aa91a3164 +2024-09-11 09:03:48.880956 2024-09-11 09:03:48.880961 mef 3698 R rec 437ceaca-2ec4-4f73-8da1-41ef0f6ed5f4 +2024-09-11 09:03:48.937077 2024-09-11 09:03:48.937083 mef 3699 R rec be861ea5-790d-4107-9f45-f100ba2ad0ad +2024-09-11 09:03:48.991763 2024-09-11 09:03:48.991768 mef 3700 R rec 4a068719-1ba1-4b03-9042-b2d67a69a6c7 +2024-09-11 09:03:49.1208 2024-09-11 09:03:49.120806 mef 3701 R rec b0eac5c6-c035-4b48-947f-6b8f4085a51d +2024-09-11 09:03:49.252236 2024-09-11 09:03:49.252241 mef 3702 R rec 66d4a097-1be6-40ce-a4a1-0de85a34181a +2024-09-11 09:03:49.524206 2024-09-11 09:03:49.524211 mef 3703 R rec ec3a02d5-ff9a-4b81-a5be-5f8f2d78a8ef +2024-09-11 09:03:49.581909 2024-09-11 09:03:49.581913 mef 3704 R rec d01e2556-ae5a-4c8b-abba-c900b0d7bd8a +2024-09-11 09:03:49.741406 2024-09-11 09:03:49.74141 mef 3705 R rec 0e2468b4-d159-4741-ba5d-73530f8ae45c +2024-09-11 09:03:49.864799 2024-09-11 09:03:49.864804 mef 3706 R rec 0a5c96c9-dde2-44ba-b63a-0ab14e8bf804 +2024-09-11 09:03:49.920281 2024-09-11 09:03:49.920286 mef 3707 R rec f81988c0-9cce-47e0-bee2-bd5ad24c0b17 +2024-09-11 09:03:49.974781 2024-09-11 09:03:49.974786 mef 3708 R rec 93428c4e-f531-4853-aa29-d5f44e8e7c59 +2024-09-11 09:03:50.032578 2024-09-11 09:03:50.032584 mef 3709 R rec b4fcaef6-9878-428a-9333-f79610528bb8 +2024-09-11 09:03:50.087718 2024-09-11 09:03:50.087725 mef 3710 R rec 0624f511-43f4-4a1e-922a-376d095b20b2 +2024-09-11 09:03:50.145467 2024-09-11 09:03:50.145473 mef 3711 R rec 274a4d65-9579-432c-916a-174a37efd39b +2024-09-11 09:03:50.217277 2024-09-11 09:03:50.217282 mef 3712 R rec 82d0d2bc-262a-41b1-b9cf-9c8bf4c947c6 +2024-09-11 09:03:50.275932 2024-09-11 09:03:50.275937 mef 3713 R rec 6f458ba5-cfad-4203-87a9-b940e2877f9a +2024-09-11 09:03:50.333762 2024-09-11 09:03:50.333768 mef 3714 R rec 575a2f9b-2ae4-428c-ab51-507449c1c4dd +2024-09-11 09:03:50.390952 2024-09-11 09:03:50.390958 mef 3715 R rec 7f10e9c8-080c-468f-8264-247e8b57b83e +2024-09-11 09:03:50.449267 2024-09-11 09:03:50.449272 mef 3716 R rec 83c26a31-bb1f-4414-9332-2b8e29cde301 +2024-09-11 09:03:50.511107 2024-09-11 09:03:50.511111 mef 3717 R rec ad240955-2fc1-4126-81e9-59864d25e6ba +2024-09-11 09:03:50.640767 2024-09-11 09:03:50.640771 mef 3718 R rec 2a1c7e31-26d4-4b5c-9059-842e308491e7 +2024-09-11 09:03:50.699756 2024-09-11 09:03:50.69976 mef 3719 R rec d33c03dd-a027-477c-977c-779b5d06b08e +2024-09-11 09:03:50.827526 2024-09-11 09:03:50.827531 mef 3720 R rec 49880f9c-77f1-4152-8b36-7f85829449a2 +2024-09-11 09:03:50.887944 2024-09-11 09:03:50.887949 mef 3721 R rec 546f56c6-02f3-4c1e-ab7a-eb0569f047f7 +2024-09-11 09:03:50.947357 2024-09-11 09:03:50.947362 mef 3722 R rec 96ac1cc1-dde2-417e-b3b6-d14ad7ac3b1b +2024-09-11 09:03:51.00909 2024-09-11 09:03:51.009096 mef 3723 R rec 7a3ec2d2-9e87-4438-95a0-c45ff69bbbde +2024-09-11 09:03:51.172211 2024-09-11 09:03:51.172216 mef 3724 R rec ae0b669e-96a4-4c19-b919-0fb846e38511 +2024-09-11 09:03:51.243297 2024-09-11 09:03:51.243302 mef 3725 R rec fe74410d-04fc-4e09-b7de-6b0ccbb9a514 +2024-09-11 09:03:51.367293 2024-09-11 09:03:51.367299 mef 3726 R rec 22362604-9b3d-4e47-9ac3-6b0085cefc71 +2024-09-11 09:03:51.422972 2024-09-11 09:03:51.422977 mef 3727 R rec 3ef40c41-dde3-4df2-9b55-8ae5f817f1c0 +2024-09-11 09:03:51.559846 2024-09-11 09:03:51.559871 mef 3728 R rec e4d649e9-552e-42d2-8150-0fa0ff054f1f +2024-09-11 09:03:51.636916 2024-09-11 09:03:51.636921 mef 3729 R rec 0c473bf7-dcdc-49ba-8eb6-03b364deb1a0 +2024-09-11 09:03:51.763363 2024-09-11 09:03:51.763369 mef 3730 R rec 92d724f2-8290-430c-98e8-38f73a6a7b99 +2024-09-11 09:03:51.821274 2024-09-11 09:03:51.821281 mef 3731 R rec fe70195e-749d-4729-9413-b95ee9ea67f9 +2024-09-11 09:03:51.878752 2024-09-11 09:03:51.878757 mef 3732 R rec 4b3d8365-77f0-45cd-9774-1089f05b7982 +2024-09-11 09:03:51.94011 2024-09-11 09:03:51.940115 mef 3733 R rec 5c0ffd16-669b-4e7a-bff8-ab54ca964952 +2024-09-11 09:03:51.996562 2024-09-11 09:03:51.996568 mef 3734 R rec a33589ea-7376-4cd5-9e22-b1c4b7763460 +2024-09-11 09:03:52.134756 2024-09-11 09:03:52.134762 mef 3735 R rec df96c6a6-b72b-4125-b48c-ec305dbe6d23 +2024-09-11 09:03:52.259062 2024-09-11 09:03:52.259068 mef 3736 R rec 67d664e2-b07d-4e51-aaaf-7e348ae98834 +2024-09-11 09:03:52.31671 2024-09-11 09:03:52.316715 mef 3737 R rec 6daf655d-9d5d-4d68-ad40-101b1262e9ce +2024-09-11 09:03:52.375951 2024-09-11 09:03:52.375956 mef 3738 R rec 83b2e001-f945-4775-b28d-c0799c242f53 +2024-09-11 09:03:52.431755 2024-09-11 09:03:52.43176 mef 3739 R rec 406d126a-195f-4215-a6ce-15f235f8081b +2024-09-11 09:03:52.487862 2024-09-11 09:03:52.487869 mef 3740 R rec b3094b94-b67a-49e6-b9db-7d7e21d3a242 +2024-09-11 09:03:52.577924 2024-09-11 09:03:52.57793 mef 3741 R rec f77d646e-7173-4e89-82fd-6306e50a5dc5 +2024-09-11 09:03:52.644291 2024-09-11 09:03:52.644296 mef 3742 R rec f49a8b5b-ddb1-4964-915e-3cdc598d7e20 +2024-09-11 09:03:52.709408 2024-09-11 09:03:52.709413 mef 3743 R rec 29f294a7-c79d-4422-b722-a443317da167 +2024-09-11 09:03:52.768856 2024-09-11 09:03:52.768861 mef 3744 R rec fef207b4-970f-4a41-8752-cc388345ebf4 +2024-09-11 09:03:52.840112 2024-09-11 09:03:52.840117 mef 3745 R rec a8087c74-494b-4a4e-bba3-be79b9cd266e +2024-09-11 09:03:52.974594 2024-09-11 09:03:52.974599 mef 3746 R rec c6db79dd-3758-413d-8644-570418d3b76a +2024-09-11 09:03:53.032757 2024-09-11 09:03:53.032762 mef 3747 R rec 56b01ce0-1017-4706-bcac-a6a71e7a9644 +2024-09-11 09:03:53.084717 2024-09-11 09:03:53.084722 mef 3748 R rec d6f58d83-93db-49cb-9419-052fe1f87505 +2024-09-11 09:03:53.20145 2024-09-11 09:03:53.201455 mef 3749 R rec 52c42d7e-5c12-46cc-b178-4b37fb8ce3d6 +2024-09-11 09:03:53.253097 2024-09-11 09:03:53.253102 mef 3750 R rec 63a2a2e8-a8e1-4425-9afc-e21392500362 +2024-09-11 09:03:53.36731 2024-09-11 09:03:53.367315 mef 3751 R rec e150e74c-00df-429b-9875-9561d16fe8ac +2024-09-11 09:03:53.42612 2024-09-11 09:03:53.426125 mef 3752 R rec 5c2292d2-0def-47c8-b858-f06b98a9d18f +2024-09-11 09:03:53.582818 2024-09-11 09:03:53.582823 mef 3753 R rec bcb17956-68d8-4a1c-b97a-66db5a9c6560 +2024-09-11 09:03:53.636735 2024-09-11 09:03:53.63674 mef 3754 R rec 5c01bcc5-f9a1-4df6-b613-fa06cae866da +2024-09-11 09:03:53.690325 2024-09-11 09:03:53.690329 mef 3755 R rec 1ab77f02-4f16-4abd-9b3f-7ef94e90d9da +2024-09-11 09:03:53.742349 2024-09-11 09:03:53.742355 mef 3756 R rec b672c84a-4e6a-4d65-986a-90e38ac62c8c +2024-09-11 09:03:53.803752 2024-09-11 09:03:53.803758 mef 3757 R rec d1a1d9c2-36ea-4bf9-aa83-52850e0f29c5 +2024-09-11 09:03:53.865323 2024-09-11 09:03:53.865329 mef 3758 R rec 53351164-e19c-4465-9260-e1621b88a036 +2024-09-11 09:03:53.916721 2024-09-11 09:03:53.916726 mef 3759 R rec 2568c2b5-33ba-4b1a-90f5-7c29987de01a +2024-09-11 09:03:53.973015 2024-09-11 09:03:53.973019 mef 3760 R rec 838a193c-3908-474f-b443-25087655407a +2024-09-11 09:03:54.03065 2024-09-11 09:03:54.030655 mef 3761 R rec 3730c2aa-6b19-428d-b99b-a66b47528014 +2024-09-11 09:03:54.211863 2024-09-11 09:03:54.211869 mef 3762 R rec 37d237fa-77de-44de-b1d9-3da9c506746e +2024-09-11 09:03:54.266635 2024-09-11 09:03:54.266641 mef 3763 R rec ef520074-c5bc-4046-a2e3-4c583242809c +2024-09-11 09:03:54.391202 2024-09-11 09:03:54.391207 mef 3764 R rec 29d6f60f-486b-46e7-ad58-ffb58f9ffe98 +2024-09-11 09:03:54.445391 2024-09-11 09:03:54.445396 mef 3765 R rec 90896df4-6efd-4426-9f46-8374f02f22f7 +2024-09-11 09:03:54.565802 2024-09-11 09:03:54.565807 mef 3766 R rec c7327385-9fc8-4c86-91eb-6c6d1224b457 +2024-09-11 09:03:54.618726 2024-09-11 09:03:54.618732 mef 3767 R rec 14147437-2542-4a1f-afaf-c0de73dd873b +2024-09-11 09:03:54.670433 2024-09-11 09:03:54.670438 mef 3768 R rec fc3c6f03-79ab-4629-8cf5-51e8a143fe02 +2024-09-11 09:03:54.801133 2024-09-11 09:03:54.801139 mef 3769 R rec cc0c0279-975d-4d7b-b960-2dced2be63c3 +2024-09-11 09:03:54.852833 2024-09-11 09:03:54.852839 mef 3770 R rec 771c22ea-964e-41bf-9ddb-e77e95c14a85 +2024-09-11 09:03:54.907311 2024-09-11 09:03:54.907316 mef 3771 R rec cceb17dd-65d3-4f84-ae93-6c47c2cb4ab3 +2024-09-11 09:03:54.958085 2024-09-11 09:03:54.958089 mef 3772 R rec 59f4c902-55b0-4771-8a9a-03318c658b16 +2024-09-11 09:03:55.013076 2024-09-11 09:03:55.01308 mef 3773 R rec eb4e0c6a-765c-40d0-a230-791beb04e14c +2024-09-11 09:03:55.065587 2024-09-11 09:03:55.065593 mef 3774 R rec 6ce91300-9d7e-45d1-9894-abadc2def552 +2024-09-11 09:03:55.115598 2024-09-11 09:03:55.115603 mef 3775 R rec 0bdfe4dc-ce5a-4cb1-9068-f5b6b1a210da +2024-09-11 09:03:55.171637 2024-09-11 09:03:55.171642 mef 3776 R rec f8919af1-754c-4a3d-a1f7-ade3350a096c +2024-09-11 09:03:55.221924 2024-09-11 09:03:55.221929 mef 3777 R rec 60fc1314-d80a-45c2-b4bc-9b23590a2026 +2024-09-11 09:03:55.293352 2024-09-11 09:03:55.293357 mef 3778 R rec 775dbe27-b9af-41a1-aec2-23d8bdcd72dc +2024-09-11 09:03:55.349263 2024-09-11 09:03:55.349268 mef 3779 R rec 61934462-af64-4301-ac58-7ece83de9bbe +2024-09-11 09:03:55.400457 2024-09-11 09:03:55.400463 mef 3780 R rec c6392896-d0a3-4b8b-8b58-a10e50ab1817 +2024-09-11 09:03:55.455484 2024-09-11 09:03:55.455489 mef 3781 R rec db07be09-d015-45ec-85cd-6ffd14bfbc56 +2024-09-11 09:03:55.507037 2024-09-11 09:03:55.507042 mef 3782 R rec 7162f5f2-9dd8-446b-bb0b-4d8044f9ebb8 +2024-09-11 09:03:55.56393 2024-09-11 09:03:55.563935 mef 3783 R rec e154830e-d38d-4c4a-a68e-efe97fa8092c +2024-09-11 09:03:55.635789 2024-09-11 09:03:55.635794 mef 3784 R rec 31c57c73-d6b8-48e0-8a12-cdfd622716fa +2024-09-11 09:03:55.693116 2024-09-11 09:03:55.693121 mef 3785 R rec 50bb5877-b89b-420a-b685-fcb2b546d81e +2024-09-11 09:03:55.745746 2024-09-11 09:03:55.745751 mef 3786 R rec 9193346e-12d3-489c-bb47-621335d01994 +2024-09-11 09:03:55.799103 2024-09-11 09:03:55.799108 mef 3787 R rec f4f02311-5dc5-47ab-931d-96a916acf332 +2024-09-11 09:03:55.853657 2024-09-11 09:03:55.853663 mef 3788 R rec 3090b7a2-0b69-4b87-ae13-c166d351fe17 +2024-09-11 09:03:55.905866 2024-09-11 09:03:55.905871 mef 3789 R rec 139ad5b1-1754-4760-82cc-043562751b34 +2024-09-11 09:03:55.96204 2024-09-11 09:03:55.962045 mef 3790 R rec 8bbf647f-ad4a-4b5a-ac7e-4792c041e782 +2024-09-11 09:03:56.027063 2024-09-11 09:03:56.027068 mef 3791 R rec 75200de0-0bf2-4433-b03b-da2c4f9e7839 +2024-09-11 09:03:56.085929 2024-09-11 09:03:56.085935 mef 3792 R rec 12497da5-c638-4965-8173-d78c0ade394f +2024-09-11 09:03:56.210616 2024-09-11 09:03:56.210621 mef 3793 R rec a4401f9e-90be-48d5-928f-3a9037f63acc +2024-09-11 09:03:56.278161 2024-09-11 09:03:56.278166 mef 3794 R rec 21a762ce-1fa0-455a-9de0-4dc48f2dca44 +2024-09-11 09:03:56.337324 2024-09-11 09:03:56.337328 mef 3795 R rec 23fe9cdf-9d1a-4f40-ad73-ff9e8a8cf619 +2024-09-11 09:03:56.403635 2024-09-11 09:03:56.40364 mef 3796 R rec 74a0a3eb-65f4-4b46-a262-bdf86d782fc7 +2024-09-11 09:03:56.461705 2024-09-11 09:03:56.46171 mef 3797 R rec 6746e84d-5afe-4971-a954-b5ce83e66017 +2024-09-11 09:03:56.518072 2024-09-11 09:03:56.518078 mef 3798 R rec ecbd90f4-5720-43e4-acd5-d1d7431f013c +2024-09-11 09:03:56.582734 2024-09-11 09:03:56.582738 mef 3799 R rec 5deab0d2-aee9-464b-a802-0ec509b109ee +2024-09-11 09:03:56.652837 2024-09-11 09:03:56.652846 mef 3800 R rec a4f34720-2c76-4151-9def-0607df0a544e +2024-09-11 09:03:56.789713 2024-09-11 09:03:56.789719 mef 3801 R rec 77b9cee3-75d8-46fc-9254-921f4acb1c18 +2024-09-11 09:03:56.849519 2024-09-11 09:03:56.849523 mef 3802 R rec 16d9074b-e5ce-4ae4-b0e0-f74316a780e0 +2024-09-11 09:03:56.907618 2024-09-11 09:03:56.907623 mef 3803 R rec 20f51e3c-19b9-4f09-bf14-03d0a9ebd540 +2024-09-11 09:03:56.9685 2024-09-11 09:03:56.968506 mef 3804 R rec 76aebcd8-32be-40a8-80b5-40723c73d815 +2024-09-11 09:03:57.027988 2024-09-11 09:03:57.027993 mef 3805 R rec 94fe7b23-79ef-4fcd-b684-6c9e9cc77ede +2024-09-11 09:03:57.089416 2024-09-11 09:03:57.089421 mef 3806 R rec 7c8c9c89-341c-4d43-b3b6-f37abb90ff79 +2024-09-11 09:03:57.14898 2024-09-11 09:03:57.148986 mef 3807 R rec 512c90ba-11d3-483c-9949-d5efdccd2df3 +2024-09-11 09:03:57.214598 2024-09-11 09:03:57.214602 mef 3808 R rec 58b12290-784d-4a7d-88ec-439470c05a08 +2024-09-11 09:03:57.457341 2024-09-11 09:03:57.457346 mef 3809 R rec 0254b30c-63df-4ec7-a1fe-b6b429304247 +2024-09-11 09:03:57.518876 2024-09-11 09:03:57.518882 mef 3810 R rec 2685df57-cddf-42af-9ab3-1d7708bc5b4c +2024-09-11 09:03:57.590892 2024-09-11 09:03:57.590896 mef 3811 R rec 2bd57462-7e5e-4541-b2a3-202dd8fd367d +2024-09-11 09:03:57.669159 2024-09-11 09:03:57.669164 mef 3812 R rec c5589b8a-506c-49cb-bfdd-165f50beaa87 +2024-09-11 09:03:57.804064 2024-09-11 09:03:57.804069 mef 3813 R rec 44d10a13-fcdc-4fc0-82b0-52448218e22b +2024-09-11 09:03:57.874982 2024-09-11 09:03:57.874986 mef 3814 R rec d90d36ff-f2e0-4453-a432-1a1ec7750419 +2024-09-11 09:03:57.960846 2024-09-11 09:03:57.960851 mef 3815 R rec 548f803a-0ee9-416b-9c7d-8c0ad180e6b4 +2024-09-11 09:03:58.022675 2024-09-11 09:03:58.02268 mef 3816 R rec c037338f-ba5d-4e9c-bafa-c0f50db4199c +2024-09-11 09:03:58.167539 2024-09-11 09:03:58.167544 mef 3817 R rec de27deeb-33ba-45b0-95c8-33f542dbe41b +2024-09-11 09:03:58.297753 2024-09-11 09:03:58.297759 mef 3818 R rec 858e36c5-37e4-47d7-82a1-cb5da419f03c +2024-09-11 09:03:58.354358 2024-09-11 09:03:58.354363 mef 3819 R rec 9a108f51-3f93-45e4-9b4f-465df46168a8 +2024-09-11 09:03:58.412255 2024-09-11 09:03:58.41226 mef 3820 R rec f1c64cf6-754b-47a3-b79f-f35861a2e971 +2024-09-11 09:03:58.575845 2024-09-11 09:03:58.57585 mef 3821 R rec 2cf3100b-191c-4071-9ac0-5ca9a9172883 +2024-09-11 09:03:58.667444 2024-09-11 09:03:58.66745 mef 3822 R rec 3b622a2b-4163-488c-8f5a-7a9cbbe61c74 +2024-09-11 09:03:58.728944 2024-09-11 09:03:58.72895 mef 3823 R rec bf38956d-883e-42c6-9900-a4479a87368d +2024-09-11 09:03:58.858292 2024-09-11 09:03:58.858298 mef 3824 R rec 88903807-f8bf-42cd-8bf9-8f2613a74b36 +2024-09-11 09:03:58.984994 2024-09-11 09:03:58.985004 mef 3825 R rec 092a5279-0a18-455e-bd4c-380f25b1c022 +2024-09-11 09:03:59.042258 2024-09-11 09:03:59.042262 mef 3826 R rec 4cd9b5de-02fd-4f62-93a6-fcc75779bc55 +2024-09-11 09:03:59.108279 2024-09-11 09:03:59.108285 mef 3827 R rec cda79a8f-f40d-41d1-b6ee-aff3c3bd58d9 +2024-09-11 09:03:59.248998 2024-09-11 09:03:59.249002 mef 3828 R rec c4452217-995e-49b3-9fe2-cdf05be52ac7 +2024-09-11 09:03:59.302403 2024-09-11 09:03:59.302407 mef 3829 R rec 0736a36a-5ba1-45ab-8615-93e9f2dd2a9e +2024-09-11 09:03:59.362199 2024-09-11 09:03:59.362204 mef 3830 R rec 502dc2c3-cbdf-4db7-ad9d-b1d263f21cd6 +2024-09-11 09:03:59.417018 2024-09-11 09:03:59.417022 mef 3831 R rec f77023f1-828c-42b5-b53e-c133897e2a45 +2024-09-11 09:03:59.54705 2024-09-11 09:03:59.547055 mef 3832 R rec 39a7ec56-22c4-442b-a175-e896512ee81c +2024-09-11 09:03:59.605415 2024-09-11 09:03:59.605419 mef 3833 R rec 26b51703-48cf-4eed-a18e-8b4a5d87481d +2024-09-11 09:03:59.665755 2024-09-11 09:03:59.66576 mef 3834 R rec 4a10669a-0ccd-4419-99eb-4b16fe79d648 +2024-09-11 09:03:59.727139 2024-09-11 09:03:59.727144 mef 3835 R rec 39b9d069-9588-42ba-984d-9271a69ab44a +2024-09-11 09:03:59.852239 2024-09-11 09:03:59.852244 mef 3836 R rec 2bd8465a-a05c-4007-a9ad-278d68d7dc27 +2024-09-11 09:03:59.915445 2024-09-11 09:03:59.915449 mef 3837 R rec 0d7af1bf-52a0-4b29-bf8a-cdef1d7d1c03 +2024-09-11 09:03:59.977539 2024-09-11 09:03:59.977544 mef 3838 R rec 3e4bc9ae-6611-43bb-8411-62215b0036ab +2024-09-11 09:04:00.070859 2024-09-11 09:04:00.070864 mef 3839 R rec dc7e1e3e-c5eb-466a-9b3d-ef96375e4955 +2024-09-11 09:04:00.128927 2024-09-11 09:04:00.128932 mef 3840 R rec f51587ef-a331-4cf6-bd7b-099ed5cb76ec +2024-09-11 09:04:00.190452 2024-09-11 09:04:00.190461 mef 3841 R rec 85f71b55-340c-4889-a0a9-cd3a906322dd +2024-09-11 09:04:00.255369 2024-09-11 09:04:00.255374 mef 3842 R rec 4af58e87-d4ce-4646-9083-8259119a1d7b +2024-09-11 09:04:00.315812 2024-09-11 09:04:00.315816 mef 3843 R rec 65e9fb07-ea6b-4037-b233-76f67069588e +2024-09-11 09:04:00.372088 2024-09-11 09:04:00.372093 mef 3844 R rec 7bce2df9-41b8-4517-a6b7-27c1d427b34b +2024-09-11 09:04:00.432072 2024-09-11 09:04:00.432077 mef 3845 R rec ce954983-466f-48f8-87c1-858a70a771e6 +2024-09-11 09:04:00.497955 2024-09-11 09:04:00.49796 mef 3846 R rec 88311684-dbb4-4cd2-9b27-fe80da0f9f90 +2024-09-11 09:04:00.55309 2024-09-11 09:04:00.553096 mef 3847 R rec 88641c2a-5a3d-4e78-a793-00d651df21f4 +2024-09-11 09:04:00.608611 2024-09-11 09:04:00.608617 mef 3848 R rec 505d217f-b6a7-46d1-b0bb-6e78d969b2cc +2024-09-11 09:04:00.672084 2024-09-11 09:04:00.672089 mef 3849 R rec faa963ac-320d-480c-a52e-13818872c33e +2024-09-11 09:04:00.728579 2024-09-11 09:04:00.728584 mef 3850 R rec 687f795f-92b0-4f2e-8c4a-18187952efa0 +2024-09-11 09:04:00.791055 2024-09-11 09:04:00.79106 mef 3851 R rec 5c8ddb27-49ac-4500-8b3b-611a0da6c92f +2024-09-11 09:04:00.859717 2024-09-11 09:04:00.859722 mef 3852 R rec 0729a08d-49f1-4ba9-8e1a-016fd35876c8 +2024-09-11 09:04:00.927903 2024-09-11 09:04:00.927908 mef 3853 R rec 09eea033-eb87-44d6-bd71-8fb4e0c001a7 +2024-09-11 09:04:00.987996 2024-09-11 09:04:00.988002 mef 3854 R rec 29d41faa-9712-4a6f-a42a-f6a00d648ef6 +2024-09-11 09:04:01.126118 2024-09-11 09:04:01.126122 mef 3855 R rec b03e4ad2-8151-46bd-876a-0288dbc55672 +2024-09-11 09:04:01.18909 2024-09-11 09:04:01.189095 mef 3856 R rec 388309ac-d399-4fd1-bb45-d6ddbfd6f7e3 +2024-09-11 09:04:01.271722 2024-09-11 09:04:01.271727 mef 3857 R rec 561ac86c-b384-4ca9-914e-c359dbf27ab1 +2024-09-11 09:04:01.340398 2024-09-11 09:04:01.340403 mef 3858 R rec 587cca6d-3e29-49cc-afc1-2991a91292ff +2024-09-11 09:04:01.409561 2024-09-11 09:04:01.409566 mef 3859 R rec 81ee04f9-fe27-4653-9ee3-eb6b1dc4b26c +2024-09-11 09:04:01.469173 2024-09-11 09:04:01.469179 mef 3860 R rec 82f792ec-b31a-4337-8255-b6f038d70fcc +2024-09-11 09:04:01.527152 2024-09-11 09:04:01.527157 mef 3861 R rec 7e6d6b00-cbaf-460f-8a79-e771fdb3b3a6 +2024-09-11 09:04:01.585673 2024-09-11 09:04:01.585678 mef 3862 R rec 229d6ae9-18ab-4a5b-b0de-eaf623302260 +2024-09-11 09:04:01.649284 2024-09-11 09:04:01.649288 mef 3863 R rec c52570da-7e16-4f27-983c-e97236e756be +2024-09-11 09:04:01.70832 2024-09-11 09:04:01.708326 mef 3864 R rec 944bd1c6-402a-4e50-99ef-e1f46890900e +2024-09-11 09:04:01.783575 2024-09-11 09:04:01.783579 mef 3865 R rec 63c906c3-711f-4c36-9549-e0b1555c09a2 +2024-09-11 09:04:01.85207 2024-09-11 09:04:01.852075 mef 3866 R rec c0e03cd8-ba1f-4ffd-9745-a37f390a794f +2024-09-11 09:04:01.915426 2024-09-11 09:04:01.91543 mef 3867 R rec d9a7ccc3-a235-4470-a9e8-21d4bcec09c3 +2024-09-11 09:04:01.977084 2024-09-11 09:04:01.97709 mef 3868 R rec c8034571-2cab-419f-b21d-3dd9d78e461c +2024-09-11 09:04:02.045476 2024-09-11 09:04:02.045481 mef 3869 R rec 0e99d290-0436-4674-9146-b0fee1f4514e +2024-09-11 09:04:02.108461 2024-09-11 09:04:02.108466 mef 3870 R rec fdab5e62-4366-47e9-aeba-ce1a1e9e7eb6 +2024-09-11 09:04:02.16788 2024-09-11 09:04:02.167886 mef 3871 R rec 1185dcad-97fc-4209-9c81-11f5b7eb0333 +2024-09-11 09:04:02.228139 2024-09-11 09:04:02.228145 mef 3872 R rec a46db5f3-3cc6-4143-9e7f-27c9be4883c3 +2024-09-11 09:04:02.287131 2024-09-11 09:04:02.287137 mef 3873 R rec 76408c68-27c0-4c85-b1d1-8e8aeb7852d7 +2024-09-11 09:04:02.345656 2024-09-11 09:04:02.345661 mef 3874 R rec a7134319-c998-415d-91f8-ee55bb9c9606 +2024-09-11 09:04:02.406574 2024-09-11 09:04:02.406578 mef 3875 R rec b1a7c8d2-fb02-40c9-bd2e-a0851bc83c55 +2024-09-11 09:04:02.461995 2024-09-11 09:04:02.462 mef 3876 R rec 26d1b787-c5a8-423b-8e8e-2b2779d39d66 +2024-09-11 09:04:02.549481 2024-09-11 09:04:02.549486 mef 3877 R rec 61e99f8e-1efe-420c-9658-c4209ff1c1bc +2024-09-11 09:04:02.606728 2024-09-11 09:04:02.606732 mef 3878 R rec b137795f-a790-4943-905d-f9a93df6acbe +2024-09-11 09:04:02.667108 2024-09-11 09:04:02.667113 mef 3879 R rec e2dc20b8-2e2b-4f0e-9a05-56b6e36063b6 +2024-09-11 09:04:02.722969 2024-09-11 09:04:02.722972 mef 3880 R rec 83cab670-97a0-4132-9ee5-d660038a859d +2024-09-11 09:04:02.786704 2024-09-11 09:04:02.786708 mef 3881 R rec 7aeb8f0d-a355-47a1-aa97-4f9fe51f155b +2024-09-11 09:04:02.844378 2024-09-11 09:04:02.844383 mef 3882 R rec d7216e0e-e418-45f4-a70c-fb1cb2f6ede8 +2024-09-11 09:04:02.904182 2024-09-11 09:04:02.904187 mef 3883 R rec 789fa59b-5326-43e7-bca9-3257e096ca1d +2024-09-11 09:04:02.961971 2024-09-11 09:04:02.961975 mef 3884 R rec 61c11ee0-9316-46c2-8ec3-1444bc32c5bd +2024-09-11 09:04:03.022212 2024-09-11 09:04:03.022217 mef 3885 R rec 1fab6ed0-da21-43bf-9127-dd5f1fdf09c2 +2024-09-11 09:04:03.080387 2024-09-11 09:04:03.080391 mef 3886 R rec 428781bb-096d-4988-858c-2251cd918bbe +2024-09-11 09:04:03.140907 2024-09-11 09:04:03.140913 mef 3887 R rec ab940c33-bb43-4bac-98e7-eb1cff954eec +2024-09-11 09:04:03.205658 2024-09-11 09:04:03.205663 mef 3888 R rec b688ca52-ba5e-428c-91f8-d659080b123e +2024-09-11 09:04:03.275328 2024-09-11 09:04:03.275332 mef 3889 R rec ae8057eb-2296-4bcf-a99d-8aee7d7e0d38 +2024-09-11 09:04:03.334496 2024-09-11 09:04:03.334502 mef 3890 R rec d24717df-7373-4906-990b-3fc111d050c7 +2024-09-11 09:04:03.396574 2024-09-11 09:04:03.396579 mef 3891 R rec ced1884f-a4bf-42ba-8387-09602b9fe3ec +2024-09-11 09:04:03.521086 2024-09-11 09:04:03.521091 mef 3892 R rec b39a9c99-634c-4c24-910f-56ed2126ba2a +2024-09-11 09:04:03.64613 2024-09-11 09:04:03.646134 mef 3893 R rec c41d1603-1e2c-48fb-9b04-30a5a90cae91 +2024-09-11 09:04:03.703261 2024-09-11 09:04:03.703266 mef 3894 R rec dc833771-640b-4f8b-876a-65f0e6545323 +2024-09-11 09:04:03.760136 2024-09-11 09:04:03.760142 mef 3895 R rec 4ba85975-5e6e-4fe7-b296-4a067ccc3126 +2024-09-11 09:04:03.819222 2024-09-11 09:04:03.819228 mef 3896 R rec 93683042-c69f-4d28-8890-947016b03dbf +2024-09-11 09:04:03.877917 2024-09-11 09:04:03.877922 mef 3897 R rec cc3c82ae-e6ec-4d87-9f0b-1b55a533f1ba +2024-09-11 09:04:03.968784 2024-09-11 09:04:03.968789 mef 3898 R rec 3d7339da-b1d7-4fbf-9b68-fcf4d909bd8e +2024-09-11 09:04:04.135105 2024-09-11 09:04:04.135109 mef 3899 R rec 6279427c-2968-4121-a3b2-3a8b379a8081 +2024-09-11 09:04:04.201224 2024-09-11 09:04:04.201229 mef 3900 R rec e793e7c6-6b82-46ac-8125-9a4d5f699fa1 +2024-09-11 09:04:04.259815 2024-09-11 09:04:04.25982 mef 3901 R rec 5f1845b4-5872-473e-9076-072862d30ef8 +2024-09-11 09:04:04.389545 2024-09-11 09:04:04.38955 mef 3902 R rec f9f3ad05-240b-4725-a4a0-d8834109f567 +2024-09-11 09:04:04.450837 2024-09-11 09:04:04.450843 mef 3903 R rec e9ccdbe2-bd16-4f54-affd-113de4495067 +2024-09-11 09:04:04.510589 2024-09-11 09:04:04.510593 mef 3904 R rec 50fe24f3-91e3-4455-a427-8656df45fa0a +2024-09-11 09:04:04.639632 2024-09-11 09:04:04.639637 mef 3905 R rec 583116a3-e685-445b-adc0-291db24d7c47 +2024-09-11 09:04:04.70688 2024-09-11 09:04:04.706885 mef 3906 R rec 1b543be3-a91b-4fdc-b4d7-3e21f83f173d +2024-09-11 09:04:04.789893 2024-09-11 09:04:04.789897 mef 3907 R rec abbc1b0c-5b4d-4eac-b816-f0f580852eaf +2024-09-11 09:04:04.922932 2024-09-11 09:04:04.922937 mef 3908 R rec e5b52f45-58d8-4499-9dfc-8e7056b754dc +2024-09-11 09:04:04.979742 2024-09-11 09:04:04.979747 mef 3909 R rec 389b97fb-25ec-4cee-a008-ab86e5584011 +2024-09-11 09:04:05.050158 2024-09-11 09:04:05.050163 mef 3910 R rec 554ee7ec-4aad-4e4f-bf62-72e5e198a13b +2024-09-11 09:04:05.1099 2024-09-11 09:04:05.109905 mef 3911 R rec b58cd497-7570-42ce-a4b7-f76236a4fdd6 +2024-09-11 09:04:05.350458 2024-09-11 09:04:05.350463 mef 3912 R rec feaadd3c-8a4d-4817-bd6c-546f3d1eebd2 +2024-09-11 09:04:05.420216 2024-09-11 09:04:05.420221 mef 3913 R rec a9df84b6-d47b-4b74-858d-3253e78df571 +2024-09-11 09:04:05.479133 2024-09-11 09:04:05.479137 mef 3914 R rec 61ad740f-7519-4d9b-abfd-b823255fb05f +2024-09-11 09:04:05.538924 2024-09-11 09:04:05.538929 mef 3915 R rec 41590d06-a6ae-4f64-b19c-6d06b9c8c8da +2024-09-11 09:04:05.637783 2024-09-11 09:04:05.637788 mef 3916 R rec 4403394b-cca7-4fb4-914a-b7c98b41f541 +2024-09-11 09:04:05.701074 2024-09-11 09:04:05.70108 mef 3917 R rec 8657728e-ac07-497d-aa5b-53baf2091001 +2024-09-11 09:04:05.841878 2024-09-11 09:04:05.841883 mef 3918 R rec f2060fcb-c9a1-4259-9288-8ce318147026 +2024-09-11 09:04:06.00921 2024-09-11 09:04:06.009215 mef 3919 R rec 3229de46-189d-4bd0-a2f5-1823502c595b +2024-09-11 09:04:06.088849 2024-09-11 09:04:06.088854 mef 3920 R rec 82af85d6-49f6-494b-958b-4ba1dd0dbc7d +2024-09-11 09:04:06.157496 2024-09-11 09:04:06.157501 mef 3921 R rec 0e37112e-c092-4e2d-ac07-5ff76b4fd406 +2024-09-11 09:04:06.240863 2024-09-11 09:04:06.240868 mef 3922 R rec baccdee5-791c-4824-9059-a6e0c2b8f6a3 +2024-09-11 09:04:06.303597 2024-09-11 09:04:06.303602 mef 3923 R rec ac7319f8-1722-44e7-96a6-2e804e6199d2 +2024-09-11 09:04:06.362489 2024-09-11 09:04:06.362495 mef 3924 R rec 4191fced-f527-4a18-ba0a-8e6e519953e6 +2024-09-11 09:04:06.437377 2024-09-11 09:04:06.437383 mef 3925 R rec 9d4d4c3d-1088-4645-b0c2-d730051077b4 +2024-09-11 09:04:06.507026 2024-09-11 09:04:06.507031 mef 3926 R rec 0dd900cb-014d-4aa4-8a94-6742fcf427be +2024-09-11 09:04:06.610398 2024-09-11 09:04:06.610404 mef 3927 R rec 50e3e273-f77d-4285-9b07-c9d9501763bf +2024-09-11 09:04:06.677952 2024-09-11 09:04:06.677959 mef 3928 R rec a05b2476-8898-477f-b1af-2e33b9f01e3b +2024-09-11 09:04:06.746535 2024-09-11 09:04:06.746541 mef 3929 R rec 87d9fc7c-361e-499f-868c-0b535e04e91c +2024-09-11 09:04:06.812747 2024-09-11 09:04:06.812753 mef 3930 R rec 7895473b-dd6a-47f7-9605-c7f8bbbe4f62 +2024-09-11 09:04:06.876474 2024-09-11 09:04:06.87648 mef 3931 R rec d542ac6b-1dbd-4711-bd76-c3f76aed2e77 +2024-09-11 09:04:06.93274 2024-09-11 09:04:06.932746 mef 3932 R rec 8a4afcad-16d2-488f-b32e-e5e5956c4485 +2024-09-11 09:04:06.991608 2024-09-11 09:04:06.991613 mef 3933 R rec 437e23bc-c7b1-4c70-83b2-a4a6660f97f8 +2024-09-11 09:04:07.049967 2024-09-11 09:04:07.049973 mef 3934 R rec be49b64c-e140-48b9-8453-7204fb3639f1 +2024-09-11 09:04:07.109688 2024-09-11 09:04:07.109693 mef 3935 R rec 9d7cd9fa-11ce-4a28-8632-693c7a46cf85 +2024-09-11 09:04:07.166459 2024-09-11 09:04:07.166465 mef 3936 R rec 2023f2bd-09c3-4d4b-8961-144f8487a029 +2024-09-11 09:04:07.232217 2024-09-11 09:04:07.232221 mef 3937 R rec 176666bb-7cc3-4e1c-bf56-2a2f4c567f9c +2024-09-11 09:04:07.291677 2024-09-11 09:04:07.291681 mef 3938 R rec 3e59e6ec-38e5-43bf-b76e-271176ba89cd +2024-09-11 09:04:07.360233 2024-09-11 09:04:07.360238 mef 3939 R rec 95dfa337-c732-4978-9326-d4bf7ad2eb4a +2024-09-11 09:04:07.41619 2024-09-11 09:04:07.416195 mef 3940 R rec 57a1e674-ccbb-4df0-af2c-a9da014c393c +2024-09-11 09:04:07.474058 2024-09-11 09:04:07.474063 mef 3941 R rec 94336581-5a35-453e-bf3f-c98225261a87 +2024-09-11 09:04:07.53632 2024-09-11 09:04:07.536325 mef 3942 R rec 57a48367-b3d3-48ed-b67b-f24978058366 +2024-09-11 09:04:07.600444 2024-09-11 09:04:07.600449 mef 3943 R rec 88166a89-8c66-4a71-93ed-8845ec7b29a9 +2024-09-11 09:04:07.66134 2024-09-11 09:04:07.661345 mef 3944 R rec c1e81332-c2a5-4967-83a5-5590da0a0400 +2024-09-11 09:04:07.721346 2024-09-11 09:04:07.721351 mef 3945 R rec 4e02c37e-1e7a-45c2-b7cb-88af08c0dffd +2024-09-11 09:04:07.777647 2024-09-11 09:04:07.777652 mef 3946 R rec f4ec68a1-d97d-4de4-aeb7-89a779448a6d +2024-09-11 09:04:07.832452 2024-09-11 09:04:07.832458 mef 3947 R rec 29912eaa-01b2-4157-887e-07f11dea1a90 +2024-09-11 09:04:07.892507 2024-09-11 09:04:07.892511 mef 3948 R rec 881c26de-56ed-441a-9efe-47098d669207 +2024-09-11 09:04:07.949853 2024-09-11 09:04:07.949861 mef 3949 R rec 209bcfdb-5bc7-4ddd-a223-d6180853dd0e +2024-09-11 09:04:08.011954 2024-09-11 09:04:08.01196 mef 3950 R rec 7a658f9e-3151-46d6-934a-a65fadf8b876 +2024-09-11 09:04:08.220859 2024-09-11 09:04:08.220866 mef 3951 R rec 4f3ca339-7416-44a8-a791-e7e3455acc7f +2024-09-11 09:04:08.276556 2024-09-11 09:04:08.27656 mef 3952 R rec 726c61cb-0280-415b-bfb0-76c90f3164a4 +2024-09-11 09:04:08.335259 2024-09-11 09:04:08.335264 mef 3953 R rec 15e7d3d4-7acc-4ee4-8fef-defc05cee93f +2024-09-11 09:04:08.390485 2024-09-11 09:04:08.390489 mef 3954 R rec 99d24d03-af39-4647-86a5-7136e5453e1b +2024-09-11 09:04:08.450071 2024-09-11 09:04:08.450076 mef 3955 R rec 827f7e46-0a6f-4169-bf2e-66c91b9bd931 +2024-09-11 09:04:08.511725 2024-09-11 09:04:08.51173 mef 3956 R rec c008a5fa-a262-4a98-9db3-de6c834ee8fa +2024-09-11 09:04:08.646528 2024-09-11 09:04:08.646533 mef 3957 R rec 30e35528-b9b5-4efe-8889-7c112dc301c9 +2024-09-11 09:04:08.706341 2024-09-11 09:04:08.706346 mef 3958 R rec ac81f9f7-9497-4e69-a557-adb53755bd61 +2024-09-11 09:04:08.767811 2024-09-11 09:04:08.767817 mef 3959 R rec 08b9841a-d4e9-4027-a3da-5424b2ba8f0e +2024-09-11 09:04:08.834008 2024-09-11 09:04:08.834013 mef 3960 R rec 395add79-b530-4113-b691-1ab52977518b +2024-09-11 09:04:08.891581 2024-09-11 09:04:08.891586 mef 3961 R rec 8efea292-0e0b-4307-86a8-3683827095b9 +2024-09-11 09:04:08.952187 2024-09-11 09:04:08.952193 mef 3962 R rec c0a5b6c9-4b49-445b-9ffd-1f790a46bb9e +2024-09-11 09:04:09.008734 2024-09-11 09:04:09.008739 mef 3963 R rec ca80d116-ad10-4979-a9f7-cb7ecdda36ad +2024-09-11 09:04:09.065324 2024-09-11 09:04:09.06533 mef 3964 R rec 54473e7b-2079-482e-9c54-fa1341c96abc +2024-09-11 09:04:09.122796 2024-09-11 09:04:09.122801 mef 3965 R rec cf707dfa-2d1b-4e46-97da-0036e1b65e33 +2024-09-11 09:04:09.178859 2024-09-11 09:04:09.178864 mef 3966 R rec 40388299-371b-47ba-8123-e3619fda3657 +2024-09-11 09:04:09.238652 2024-09-11 09:04:09.238656 mef 3967 R rec 49ea03b7-2c47-4059-8d32-b7ceb89d590e +2024-09-11 09:04:09.307583 2024-09-11 09:04:09.307588 mef 3968 R rec 1d3dc5f5-f64b-421e-b8c0-f18135ba539a +2024-09-11 09:04:09.375235 2024-09-11 09:04:09.37524 mef 3969 R rec 2e8f794d-2429-44a8-9ffa-b21b9d81735e +2024-09-11 09:04:09.445964 2024-09-11 09:04:09.445969 mef 3970 R rec 5edbac74-0302-4424-8432-294ccff8f144 +2024-09-11 09:04:09.51695 2024-09-11 09:04:09.516955 mef 3971 R rec d8ffe314-9437-413b-aca7-67c8ab51214b +2024-09-11 09:04:09.592955 2024-09-11 09:04:09.592961 mef 3972 R rec 3b54390f-2c6d-4fd0-8163-a7660e548122 +2024-09-11 09:04:09.653701 2024-09-11 09:04:09.653707 mef 3973 R rec 37b049a1-a850-4022-b07e-4c56ae487192 +2024-09-11 09:04:09.714137 2024-09-11 09:04:09.714143 mef 3974 R rec 1f3dd08d-c446-4259-aced-85a657698d34 +2024-09-11 09:04:09.773033 2024-09-11 09:04:09.773039 mef 3975 R rec 9dc6829c-48dd-4d87-be0f-cab0ed65a0ca +2024-09-11 09:04:09.827702 2024-09-11 09:04:09.827707 mef 3976 R rec 65a79a8a-c4ba-49f9-9ad0-fcd0af0c7520 +2024-09-11 09:04:09.888257 2024-09-11 09:04:09.888262 mef 3977 R rec 19fc8690-51f0-4693-8368-2a56f46e81c9 +2024-09-11 09:04:09.945157 2024-09-11 09:04:09.945162 mef 3978 R rec 27835995-6e5c-4f45-ae84-aa58a4a1c6bf +2024-09-11 09:04:10.003198 2024-09-11 09:04:10.003203 mef 3979 R rec cd9ad0fc-81a8-4587-ac69-419a80c82c61 +2024-09-11 09:04:10.121779 2024-09-11 09:04:10.121784 mef 3980 R rec 535e2de9-e6ed-41de-9bb8-34617fa21166 +2024-09-11 09:04:10.178315 2024-09-11 09:04:10.17832 mef 3981 R rec 5daea724-e69b-4b7b-b236-f2da2233c41b +2024-09-11 09:04:10.231477 2024-09-11 09:04:10.231482 mef 3982 R rec 0f938523-6f7c-496a-8a52-8449f870c1e8 +2024-09-11 09:04:10.290592 2024-09-11 09:04:10.290597 mef 3983 R rec e766f238-4f35-4b62-ac3f-85e68a58212d +2024-09-11 09:04:10.34356 2024-09-11 09:04:10.343564 mef 3984 R rec 41a6b714-fe86-4c80-b6a1-16e62f85fc10 +2024-09-11 09:04:10.401884 2024-09-11 09:04:10.40189 mef 3985 R rec bdc2f7ea-897a-49c7-9fe0-5496150c572c +2024-09-11 09:04:10.459161 2024-09-11 09:04:10.459166 mef 3986 R rec 5d097e20-033e-4ade-8993-b78b33bd4141 +2024-09-11 09:04:10.589409 2024-09-11 09:04:10.589415 mef 3987 R rec b01d5da2-961a-411f-8419-943f166f6968 +2024-09-11 09:04:10.645209 2024-09-11 09:04:10.645215 mef 3988 R rec 2319676c-cd86-4212-b929-36ac6addc16f +2024-09-11 09:04:10.699898 2024-09-11 09:04:10.699904 mef 3989 R rec f21517c1-44f8-4b7f-b19a-1231b87eedc2 +2024-09-11 09:04:10.753782 2024-09-11 09:04:10.753788 mef 3990 R rec fcf5175f-b2a7-4f29-a4e6-c543f490d117 +2024-09-11 09:04:10.810548 2024-09-11 09:04:10.810553 mef 3991 R rec 5fbb9e4b-fa34-495e-b104-bfd6fef82893 +2024-09-11 09:04:10.86691 2024-09-11 09:04:10.866916 mef 3992 R rec 07f37ad2-339f-466a-9fcf-83ceb2d3de7f +2024-09-11 09:04:10.988686 2024-09-11 09:04:10.988692 mef 3993 R rec da0dc96f-9635-47f0-82cb-af6c017ab5d4 +2024-09-11 09:04:11.047221 2024-09-11 09:04:11.047227 mef 3994 R rec 6c1178c8-05a4-4341-a361-57ad7f80651b +2024-09-11 09:04:11.108145 2024-09-11 09:04:11.10815 mef 3995 R rec 13d48dc6-9894-4392-8c2f-76623b98405b +2024-09-11 09:04:11.169391 2024-09-11 09:04:11.169396 mef 3996 R rec b04547a2-9cb6-4014-b3d2-7286cbcce131 +2024-09-11 09:04:11.224097 2024-09-11 09:04:11.224102 mef 3997 R rec 5f340e13-c9a2-48d5-b8f5-5ae9ef1b06de +2024-09-11 09:04:11.283606 2024-09-11 09:04:11.283611 mef 3998 R rec 509b14a1-6d80-45fc-8b8b-aaaeb0929594 +2024-09-11 09:04:11.337712 2024-09-11 09:04:11.337717 mef 3999 R rec b1a29e55-46ae-44b4-9b7c-4710ecd6c147 +2024-09-11 09:04:11.391449 2024-09-11 09:04:11.391454 mef 4000 R rec c9305d3c-e853-4a15-989f-0c07753b9b18 +2024-09-11 09:04:11.44877 2024-09-11 09:04:11.448776 mef 4001 R rec 764479df-09ec-4f23-aa71-cdef0e7d93da +2024-09-11 09:04:11.503332 2024-09-11 09:04:11.503337 mef 4002 R rec e59ed331-e968-4a8f-9083-362416bc5227 +2024-09-11 09:04:11.620741 2024-09-11 09:04:11.620747 mef 4003 R rec 045cdf54-aec5-4754-a84c-185b0e5f1413 +2024-09-11 09:04:11.676016 2024-09-11 09:04:11.67602 mef 4004 R rec a941314f-ff07-417b-9c74-64b8fab2154a +2024-09-11 09:04:11.83193 2024-09-11 09:04:11.831936 mef 4005 R rec 57cb2742-4a84-45a0-9761-5946e93bf8e2 +2024-09-11 09:04:11.944392 2024-09-11 09:04:11.944397 mef 4006 R rec 35cc5042-eb04-4be3-8573-5e9763d118dd +2024-09-11 09:04:12.004935 2024-09-11 09:04:12.004939 mef 4007 R rec c2240e73-db75-4dfd-949e-b94eee061804 +2024-09-11 09:04:12.0697 2024-09-11 09:04:12.069705 mef 4008 R rec 185cbb92-c80b-4edf-8f26-e39fd12f6434 +2024-09-11 09:04:12.128053 2024-09-11 09:04:12.128058 mef 4009 R rec 4354a35b-ee84-45ae-9f36-b4b77892c139 +2024-09-11 09:04:12.185655 2024-09-11 09:04:12.185661 mef 4010 R rec b4ab2bcc-37eb-46c9-ba0f-ac2dc9ec369d +2024-09-11 09:04:12.366483 2024-09-11 09:04:12.366489 mef 4011 R rec 7ef04dc6-648a-4e9d-8995-d2634105bb84 +2024-09-11 09:04:12.417266 2024-09-11 09:04:12.41727 mef 4012 R rec d1550ef4-7f85-477c-b4ff-bb91b253ed0f +2024-09-11 09:04:12.470401 2024-09-11 09:04:12.470406 mef 4013 R rec c21bd3fe-6916-4a9a-a8fd-aedfadee26a8 +2024-09-11 09:04:12.528608 2024-09-11 09:04:12.528613 mef 4014 R rec 378ec4f3-ed92-472c-98b9-907b5b6f0278 +2024-09-11 09:04:12.580118 2024-09-11 09:04:12.580123 mef 4015 R rec 5cbd46d6-58ea-4344-bfe2-9849a0cc5acd +2024-09-11 09:04:12.634587 2024-09-11 09:04:12.634592 mef 4016 R rec 97fc4ec9-e0af-4466-9806-01a5012ee7ac +2024-09-11 09:04:12.756582 2024-09-11 09:04:12.756589 mef 4017 R rec 53f73e9c-ebb3-4aab-8142-48a52df210f5 +2024-09-11 09:04:12.815054 2024-09-11 09:04:12.815059 mef 4018 R rec c7733213-d7c6-40e7-94a5-c977bbc0e360 +2024-09-11 09:04:12.876966 2024-09-11 09:04:12.876971 mef 4019 R rec 170fa675-572a-4375-966e-961ee4b31e87 +2024-09-11 09:04:12.930193 2024-09-11 09:04:12.930199 mef 4020 R rec ec37b8db-e781-47a8-860c-349355d3d86c +2024-09-11 09:04:13.089889 2024-09-11 09:04:13.089894 mef 4021 R rec feb20429-829b-427a-8f8f-1327f20dd62d +2024-09-11 09:04:13.223855 2024-09-11 09:04:13.22386 mef 4022 R rec 5b1e6277-935d-4ad3-a808-46ec4a1e3f32 +2024-09-11 09:04:13.287256 2024-09-11 09:04:13.287261 mef 4023 R rec 2ffe443b-5029-44d2-95b2-3269892be0b0 +2024-09-11 09:04:13.358536 2024-09-11 09:04:13.358541 mef 4024 R rec e509ce99-515c-4814-b06f-0b30ae241d2f +2024-09-11 09:04:13.418419 2024-09-11 09:04:13.418426 mef 4025 R rec 54ad93bd-5cf8-4602-93a5-7a11d76343a0 +2024-09-11 09:04:13.476592 2024-09-11 09:04:13.476597 mef 4026 R rec 58b85f66-5146-4524-8e82-706d471e7208 +2024-09-11 09:04:13.535377 2024-09-11 09:04:13.535383 mef 4027 R rec 934bc4e0-ae5e-4f0f-886b-3a38bd7bcbda +2024-09-11 09:04:13.59158 2024-09-11 09:04:13.591586 mef 4028 R rec 6a36717c-c004-45a4-b21c-2bd2d0ba03f6 +2024-09-11 09:04:13.667391 2024-09-11 09:04:13.667396 mef 4029 R rec 877901fa-c013-4763-95fd-ca9071d63e74 +2024-09-11 09:04:13.72378 2024-09-11 09:04:13.723785 mef 4030 R rec afa3f62f-4a87-4979-93ec-19564a34c8bc +2024-09-11 09:04:13.783541 2024-09-11 09:04:13.783546 mef 4031 R rec bc56a2f6-66e3-4ae8-ae78-af886bbdda3f +2024-09-11 09:04:13.844272 2024-09-11 09:04:13.844278 mef 4032 R rec cd7a0e52-45e1-4564-918b-c26d9e310a23 +2024-09-11 09:04:13.902274 2024-09-11 09:04:13.902279 mef 4033 R rec ee0738d7-7c83-4930-90b3-78c8b3fab02a +2024-09-11 09:04:13.958983 2024-09-11 09:04:13.958988 mef 4034 R rec 5f200548-52d7-459d-b0ee-046471fdfaca +2024-09-11 09:04:14.017356 2024-09-11 09:04:14.017361 mef 4035 R rec 21d9fad0-9416-4483-b51d-78e7e2479ba3 +2024-09-11 09:04:14.09363 2024-09-11 09:04:14.093635 mef 4036 R rec 526ed993-74a2-4920-9d4f-4a414febf011 +2024-09-11 09:04:14.149788 2024-09-11 09:04:14.149793 mef 4037 R rec 4523c4f1-81b4-4dd4-8f72-6a7f3115b556 +2024-09-11 09:04:14.220838 2024-09-11 09:04:14.220844 mef 4038 R rec 583dc170-df3d-4640-bc39-0c0597b471cc +2024-09-11 09:04:14.298972 2024-09-11 09:04:14.298977 mef 4039 R rec 177c1bd5-b06e-4d91-bfba-24a46652f15c +2024-09-11 09:04:14.395777 2024-09-11 09:04:14.395782 mef 4040 R rec f4c4dcb7-f69e-4067-9064-72406a48bea5 +2024-09-11 09:04:14.452381 2024-09-11 09:04:14.452387 mef 4041 R rec be8256b8-b9fd-425a-aa51-3cd069d1830a +2024-09-11 09:04:14.523662 2024-09-11 09:04:14.523666 mef 4042 R rec 35ee5576-e3dc-4bab-a178-36599f4b915a +2024-09-11 09:04:14.581871 2024-09-11 09:04:14.581876 mef 4043 R rec e792de21-a526-4e4b-91be-82eb40862bcd +2024-09-11 09:04:14.640647 2024-09-11 09:04:14.640653 mef 4044 R rec d893530c-8b6a-418f-b7ff-092dbad5a210 +2024-09-11 09:04:14.699045 2024-09-11 09:04:14.69905 mef 4045 R rec 4cb606b8-2d15-4074-b64f-62ab4290baf0 +2024-09-11 09:04:14.758634 2024-09-11 09:04:14.758638 mef 4046 R rec d6043940-d7e4-4058-a38d-9e219147dd95 +2024-09-11 09:04:14.818379 2024-09-11 09:04:14.818384 mef 4047 R rec 1f3e93ba-ac19-4989-aa25-60d36ee1ba32 +2024-09-11 09:04:14.87762 2024-09-11 09:04:14.877625 mef 4048 R rec 2cefa4dc-fc9d-4d83-8abd-63e90f500ef8 +2024-09-11 09:04:15.006593 2024-09-11 09:04:15.006599 mef 4049 R rec 9dde13d3-dae0-4e44-b8d3-e4fc818d131f +2024-09-11 09:04:15.066729 2024-09-11 09:04:15.066734 mef 4050 R rec 54e81eee-eb49-43a2-803d-42cead51581c +2024-09-11 09:04:15.128366 2024-09-11 09:04:15.128371 mef 4051 R rec 6f1e2ea5-b14e-41d3-8d0b-33911b601796 +2024-09-11 09:04:15.190239 2024-09-11 09:04:15.190244 mef 4052 R rec 59c293da-2b8b-4017-8309-e50f42771666 +2024-09-11 09:04:15.247329 2024-09-11 09:04:15.247334 mef 4053 R rec 5b31e332-6f09-4ebf-8075-fe9e0bdad6f8 +2024-09-11 09:04:15.304585 2024-09-11 09:04:15.304591 mef 4054 R rec ba084e9f-bd22-4e49-a03d-902e73997588 +2024-09-11 09:04:15.361522 2024-09-11 09:04:15.361526 mef 4055 R rec 449be298-0770-469c-b383-602ff290dfd1 +2024-09-11 09:04:15.430034 2024-09-11 09:04:15.430039 mef 4056 R rec 67ca5ff0-a85c-4d3f-a05c-19d1fda463b4 +2024-09-11 09:04:15.590613 2024-09-11 09:04:15.590617 mef 4057 R rec 7742bc5b-fff1-420a-aa3d-d49eb7a7768f +2024-09-11 09:04:15.65337 2024-09-11 09:04:15.653376 mef 4058 R rec 6ff69274-3878-4d40-be78-26ac9fac08e1 +2024-09-11 09:04:15.714441 2024-09-11 09:04:15.714446 mef 4059 R rec 5467136b-ace1-4efe-b6db-c87449b960b1 +2024-09-11 09:04:15.776726 2024-09-11 09:04:15.776731 mef 4060 R rec 601bf6e2-0efe-4cda-8088-1349131f077f +2024-09-11 09:04:15.873689 2024-09-11 09:04:15.873694 mef 4061 R rec a99ceb1a-354a-4952-a93e-3936644060ff +2024-09-11 09:04:15.93729 2024-09-11 09:04:15.937295 mef 4062 R rec 2106fe7f-9136-4659-ac08-512fbc4b65ba +2024-09-11 09:04:15.994466 2024-09-11 09:04:15.99447 mef 4063 R rec 2b817f5b-1eee-42ee-9b97-2b59b2591610 +2024-09-11 09:04:16.055219 2024-09-11 09:04:16.055226 mef 4064 R rec 102f1fe2-b616-45d9-84c1-14ffd83de8e3 +2024-09-11 09:04:16.127207 2024-09-11 09:04:16.127212 mef 4065 R rec 3bc1d4c4-3390-4b8a-a476-a6384a1ab889 +2024-09-11 09:04:16.206025 2024-09-11 09:04:16.206029 mef 4066 R rec 788b26b7-ef7e-4830-9a66-d0654aa1e6fa +2024-09-11 09:04:16.272441 2024-09-11 09:04:16.272445 mef 4067 R rec 22d953fd-a4a8-40d9-94c6-efd3886c3306 +2024-09-11 09:04:16.331261 2024-09-11 09:04:16.331266 mef 4068 R rec 79a3672a-cd57-4871-9afa-602e209866ba +2024-09-11 09:04:16.388339 2024-09-11 09:04:16.388345 mef 4069 R rec 78624677-ef83-42a6-b748-5a49721f4ec9 +2024-09-11 09:04:16.45104 2024-09-11 09:04:16.451045 mef 4070 R rec 312f7654-79e4-43e5-a5c2-cb6c990dea64 +2024-09-11 09:04:16.603536 2024-09-11 09:04:16.603541 mef 4071 R rec 1b316fa4-42f6-4918-88cb-7f3dbfe861a6 +2024-09-11 09:04:16.658721 2024-09-11 09:04:16.658726 mef 4072 R rec c0905310-9925-4630-b1b0-a7894e5b6217 +2024-09-11 09:04:16.719566 2024-09-11 09:04:16.719572 mef 4073 R rec 2a674477-7326-43a9-8ced-99af3853fc7c +2024-09-11 09:04:16.775191 2024-09-11 09:04:16.775196 mef 4074 R rec dc3391e3-9049-473f-bfcc-be1cc651bd7e +2024-09-11 09:04:16.837265 2024-09-11 09:04:16.83727 mef 4075 R rec e7689cd9-fb77-4c7e-ae18-c745b30cf106 +2024-09-11 09:04:16.893013 2024-09-11 09:04:16.893018 mef 4076 R rec 5bfca06b-1faa-4209-b814-cdb0accd76e4 +2024-09-11 09:04:16.949027 2024-09-11 09:04:16.949032 mef 4077 R rec 893278e6-99b4-4238-ab0a-88ad733b5e7d +2024-09-11 09:04:17.012192 2024-09-11 09:04:17.012198 mef 4078 R rec ac8d37b5-fd4c-4489-9fff-ba7bcb735f47 +2024-09-11 09:04:17.071221 2024-09-11 09:04:17.071227 mef 4079 R rec a4d9e599-ab96-4424-9bda-a9ed9ca7c52a +2024-09-11 09:04:17.129924 2024-09-11 09:04:17.129929 mef 4080 R rec 44cc93a2-2949-4cc0-a14d-cd33ea18b078 +2024-09-11 09:04:17.224642 2024-09-11 09:04:17.224648 mef 4081 R rec 39ba7f42-10a5-4c47-b46f-ca4ad7d91eaf +2024-09-11 09:04:17.351033 2024-09-11 09:04:17.351038 mef 4082 R rec be70642a-dfd9-4191-b880-35c9ad9c56da +2024-09-11 09:04:17.404312 2024-09-11 09:04:17.404316 mef 4083 R rec 0df28ab9-a17b-42b3-99cb-b7d0bc4310c9 +2024-09-11 09:04:17.464452 2024-09-11 09:04:17.464457 mef 4084 R rec 79846cc8-3ed5-4f08-8423-d215f841b460 +2024-09-11 09:04:17.541317 2024-09-11 09:04:17.541322 mef 4085 R rec 1413848f-b7f6-44eb-a375-34d06b75fc2c +2024-09-11 09:04:17.60673 2024-09-11 09:04:17.606735 mef 4086 R rec cb59c44f-acbc-4875-b85f-fabf531dc940 +2024-09-11 09:04:17.664531 2024-09-11 09:04:17.664535 mef 4087 R rec ea4ae1f7-1541-4533-a256-cc0f605c792c +2024-09-11 09:04:17.721252 2024-09-11 09:04:17.721258 mef 4088 R rec 6977a610-6ca3-43ae-921f-c276a4fe51af +2024-09-11 09:04:17.781167 2024-09-11 09:04:17.781171 mef 4089 R rec b0e32dc7-dc01-4717-8f4e-28916ef34a9c +2024-09-11 09:04:17.852057 2024-09-11 09:04:17.852062 mef 4090 R rec 3ba18ad5-fa14-42e6-8e53-a33573f78347 +2024-09-11 09:04:17.912387 2024-09-11 09:04:17.912392 mef 4091 R rec 6fef14f1-ad03-4d48-af99-e8da848d9f96 +2024-09-11 09:04:17.979739 2024-09-11 09:04:17.979744 mef 4092 R rec 54a08fb6-34a4-4373-852e-95cc7a963bc2 +2024-09-11 09:04:18.0386 2024-09-11 09:04:18.038605 mef 4093 R rec 8136f5b7-e251-4364-a99f-07ebed19319c +2024-09-11 09:04:18.096241 2024-09-11 09:04:18.096247 mef 4094 R rec dedac010-ffe9-4b5b-a7b3-69fdd38ff0bb +2024-09-11 09:04:18.303138 2024-09-11 09:04:18.303142 mef 4095 R rec c8c2a067-f7e2-4fbb-84b1-c2f2075fb4d9 +2024-09-11 09:04:18.365052 2024-09-11 09:04:18.365056 mef 4096 R rec df9a6105-19f3-4e40-9f0c-b63d8c198aee +2024-09-11 09:04:18.423471 2024-09-11 09:04:18.423476 mef 4097 R rec e87df637-dea5-4e78-8e6f-2687073e1d08 +2024-09-11 09:04:18.486318 2024-09-11 09:04:18.486325 mef 4098 R rec 74193f33-d0f6-4d8c-b511-94090265ee94 +2024-09-11 09:04:18.552679 2024-09-11 09:04:18.552684 mef 4099 R rec 470e775d-df9d-4c90-aa60-12b91fb3bdc9 +2024-09-11 09:04:18.611913 2024-09-11 09:04:18.611917 mef 4100 R rec 883de5f9-8c1b-4b3e-a2b6-2c58213d405c +2024-09-11 09:04:18.671285 2024-09-11 09:04:18.671291 mef 4101 R rec e12bbc39-71e2-4e79-952e-ade24adf4840 +2024-09-11 09:04:18.741095 2024-09-11 09:04:18.7411 mef 4102 R rec 6527d608-b997-4ef1-9209-b3aef9eae171 +2024-09-11 09:04:18.803027 2024-09-11 09:04:18.803033 mef 4103 R rec 1834c95c-6fc4-44f3-a507-101201e5828a +2024-09-11 09:04:18.873529 2024-09-11 09:04:18.873536 mef 4104 R rec db0ac12b-ce96-407a-b4cd-83e035098c1b +2024-09-11 09:04:18.936566 2024-09-11 09:04:18.936571 mef 4105 R rec e1f22417-af59-41bb-8a7e-9bc81fc3964b +2024-09-11 09:04:18.992334 2024-09-11 09:04:18.992339 mef 4106 R rec 2a2e8d89-2a79-4a21-918b-4804e5c02f54 +2024-09-11 09:04:19.049461 2024-09-11 09:04:19.049466 mef 4107 R rec d619e49d-fbd8-4866-9c3f-21663d4cc937 +2024-09-11 09:04:19.119175 2024-09-11 09:04:19.119179 mef 4108 R rec cb3e0797-f95c-408f-8b50-d6c73781413c +2024-09-11 09:04:19.175867 2024-09-11 09:04:19.175872 mef 4109 R rec f3228c13-f0f9-4a3c-b4bf-64683ec08f43 +2024-09-11 09:04:19.240192 2024-09-11 09:04:19.240196 mef 4110 R rec 550e1860-7bf9-4c8c-b6aa-310f38afa2a8 +2024-09-11 09:04:19.298015 2024-09-11 09:04:19.29802 mef 4111 R rec 1af50b2e-1cc8-47c5-9078-3f987cf9e889 +2024-09-11 09:04:19.351088 2024-09-11 09:04:19.351091 mef 4112 R rec f5af1cfe-ba64-4ae2-b31a-0025526f6ed2 +2024-09-11 09:04:19.408877 2024-09-11 09:04:19.408881 mef 4113 R rec 7cdb89bf-c826-41b2-944a-620bd77feb2d +2024-09-11 09:04:19.479902 2024-09-11 09:04:19.479906 mef 4114 R rec 1ae59bd9-a11f-46d0-89d1-8d6254d65854 +2024-09-11 09:04:19.541986 2024-09-11 09:04:19.541991 mef 4115 R rec b99506de-cdc9-4bda-8d45-9cb5637178de +2024-09-11 09:04:19.602467 2024-09-11 09:04:19.602472 mef 4116 R rec a41ba2c7-048c-4505-b5fe-5da91369ba49 +2024-09-11 09:04:19.656909 2024-09-11 09:04:19.656915 mef 4117 R rec fd0503ac-69a1-49ab-8add-968f1cb2d5b1 +2024-09-11 09:04:19.713761 2024-09-11 09:04:19.713765 mef 4118 R rec b4be42c6-dfdd-4efc-9543-b2a2d0a94653 +2024-09-11 09:04:19.92411 2024-09-11 09:04:19.92412 mef 4119 R rec 1eaf9fcf-e3db-4fd0-9be4-4659ca140488 +2024-09-11 09:04:19.993295 2024-09-11 09:04:19.993299 mef 4120 R rec 0c9857bc-c663-4b0a-b11e-2a2519b8a0b1 +2024-09-11 09:04:20.05142 2024-09-11 09:04:20.051425 mef 4121 R rec 9624bd30-ff37-4616-ab2b-5803004ad25f +2024-09-11 09:04:20.109559 2024-09-11 09:04:20.109564 mef 4122 R rec 865eb6b1-f7e1-44ea-9beb-e8b0c007fa9d +2024-09-11 09:04:20.173346 2024-09-11 09:04:20.173351 mef 4123 R rec 44f10e78-e6c4-48a9-b456-59aff5a2ddfd +2024-09-11 09:04:20.233042 2024-09-11 09:04:20.233047 mef 4124 R rec 5b7205cc-ebfd-489c-9bc0-87175fe9dc14 +2024-09-11 09:04:20.29786 2024-09-11 09:04:20.297864 mef 4125 R rec ae1a6ae7-bcb5-4c36-8a6f-04af18fcd031 +2024-09-11 09:04:20.368201 2024-09-11 09:04:20.368205 mef 4126 R rec 3c1967b3-5e54-4aa2-b10a-1b5aabac6e05 +2024-09-11 09:04:20.437016 2024-09-11 09:04:20.437022 mef 4127 R rec 4df5a8a2-6efe-40b3-94e4-d5311392f9c6 +2024-09-11 09:04:20.499951 2024-09-11 09:04:20.499956 mef 4128 R rec eeddcf60-79a4-430c-a35b-3567bf1b6dd9 +2024-09-11 09:04:20.558133 2024-09-11 09:04:20.558137 mef 4129 R rec 29e1b7bd-7c94-4b22-9f87-c43b3c3e107d +2024-09-11 09:04:20.616165 2024-09-11 09:04:20.61617 mef 4130 R rec 1a63132b-3c22-42fb-b507-16f7941dd209 +2024-09-11 09:04:20.673563 2024-09-11 09:04:20.673569 mef 4131 R rec b8a71959-93f7-4beb-b42c-5a244a06e553 +2024-09-11 09:04:20.730434 2024-09-11 09:04:20.73044 mef 4132 R rec 139a59d2-4916-4e7e-8dbc-93c1bb0e562c +2024-09-11 09:04:20.789982 2024-09-11 09:04:20.789986 mef 4133 R rec 198e7c4c-e589-4540-a535-408b3f54ab78 +2024-09-11 09:04:20.862215 2024-09-11 09:04:20.86222 mef 4134 R rec 526bb0f6-6e81-4833-8c67-b978b127f1fe +2024-09-11 09:04:20.93111 2024-09-11 09:04:20.931115 mef 4135 R rec f073051d-8b73-45e2-9a72-5fb8a25afc4f +2024-09-11 09:04:20.985992 2024-09-11 09:04:20.985998 mef 4136 R rec d5e8af8c-6b14-4937-a1e7-d2a2c42742da +2024-09-11 09:04:21.050012 2024-09-11 09:04:21.050017 mef 4137 R rec 1bef6eb7-cebc-4cdd-ab19-c8722b958d1f +2024-09-11 09:04:21.118843 2024-09-11 09:04:21.118852 mef 4138 R rec 354cdfba-ca08-4cb9-bdd5-e8ac351dd618 +2024-09-11 09:04:21.183891 2024-09-11 09:04:21.183896 mef 4139 R rec 97c6aee3-5a5f-4f0a-856d-80c6d6944f67 +2024-09-11 09:04:21.260995 2024-09-11 09:04:21.261 mef 4140 R rec d6ef5154-d9c9-40d4-8447-3ba6317016ac +2024-09-11 09:04:21.330103 2024-09-11 09:04:21.330108 mef 4141 R rec 2391615e-5299-4e0b-96c1-52e2bed6277e +2024-09-11 09:04:21.385917 2024-09-11 09:04:21.385923 mef 4142 R rec 031617d4-f6bf-4e46-b99c-f8fc4e37dd64 +2024-09-11 09:04:21.443385 2024-09-11 09:04:21.44339 mef 4143 R rec 0c6d3ef9-8591-4d96-96e3-4a215fbd8a3c +2024-09-11 09:04:21.572337 2024-09-11 09:04:21.572342 mef 4144 R rec 020d6287-6786-4ec6-9259-83af10bfc019 +2024-09-11 09:04:21.62864 2024-09-11 09:04:21.628645 mef 4145 R rec 80386954-2c60-48a8-b6cd-9e24facbb051 +2024-09-11 09:04:21.694027 2024-09-11 09:04:21.694032 mef 4146 R rec f19f70e1-4a38-4e7e-ac64-835a7a728b36 +2024-09-11 09:04:21.754324 2024-09-11 09:04:21.754333 mef 4147 R rec 7fe416e9-c5df-499d-9622-d2143e1cb7c7 +2024-09-11 09:04:21.810812 2024-09-11 09:04:21.810817 mef 4148 R rec 6865d441-35d3-41b1-9212-67f945353331 +2024-09-11 09:04:21.868845 2024-09-11 09:04:21.868851 mef 4149 R rec c7c07a4b-0761-4ad5-b88c-4f70575fb8cb +2024-09-11 09:04:21.938145 2024-09-11 09:04:21.938151 mef 4150 R rec 5b214e7f-017c-4529-b950-4bae5edddc55 +2024-09-11 09:04:21.996462 2024-09-11 09:04:21.996467 mef 4151 R rec a5360bc0-7651-4c5d-a8d0-71aca3330643 +2024-09-11 09:04:22.055505 2024-09-11 09:04:22.055512 mef 4152 R rec 059da0de-15fe-4d42-82ca-55c73e8dbff8 +2024-09-11 09:04:22.125424 2024-09-11 09:04:22.12543 mef 4153 R rec 3d2bb557-2530-4b1d-97cd-aff2b30c4a1a +2024-09-11 09:04:22.190313 2024-09-11 09:04:22.190318 mef 4154 R rec 02a84dd6-b7a5-43f6-a062-3d17dc0f66aa +2024-09-11 09:04:22.248753 2024-09-11 09:04:22.248758 mef 4155 R rec c1bfcd5c-e7ed-42bf-b58f-26536c113c2a +2024-09-11 09:04:22.304627 2024-09-11 09:04:22.304632 mef 4156 R rec a4dde3f2-3a57-4b8f-8b49-fcbadc7e5a5a +2024-09-11 09:04:22.377531 2024-09-11 09:04:22.377536 mef 4157 R rec 87574121-9713-4a19-b464-4bbebd4133ad +2024-09-11 09:04:22.436269 2024-09-11 09:04:22.436275 mef 4158 R rec 36ed54d3-3ee7-41f6-a478-48d5d5a7749e +2024-09-11 09:04:22.492898 2024-09-11 09:04:22.492903 mef 4159 R rec cae5fb10-21f8-4155-8f86-4409d4b2900c +2024-09-11 09:04:22.563616 2024-09-11 09:04:22.563621 mef 4160 R rec 1949724e-8012-4a7b-b782-4995b5b6e2d6 +2024-09-11 09:04:22.618666 2024-09-11 09:04:22.618671 mef 4161 R rec d3e1cd79-2e0b-4857-92e0-7712cd60a78a +2024-09-11 09:04:22.678658 2024-09-11 09:04:22.678663 mef 4162 R rec 2dd27e60-4626-494b-9122-46cd8b529e5a +2024-09-11 09:04:22.73293 2024-09-11 09:04:22.732935 mef 4163 R rec c334a819-3d0d-4164-8e14-02960a9b292f +2024-09-11 09:04:22.79215 2024-09-11 09:04:22.792155 mef 4164 R rec 543d93a9-778a-4eb5-80ac-bcb5df6bce91 +2024-09-11 09:04:22.849978 2024-09-11 09:04:22.849983 mef 4165 R rec 4e169463-8568-4286-9500-85a2996624ad +2024-09-11 09:04:22.908314 2024-09-11 09:04:22.908319 mef 4166 R rec 8577aa04-99d2-4224-b4cc-178bbacfa560 +2024-09-11 09:04:22.967125 2024-09-11 09:04:22.967131 mef 4167 R rec 16f8eab5-14c0-44fe-b78b-9bd4d1a85d17 +2024-09-11 09:04:23.025072 2024-09-11 09:04:23.025078 mef 4168 R rec a43216f8-964b-4633-9e34-3c6c9dcad2a6 +2024-09-11 09:04:23.088949 2024-09-11 09:04:23.088955 mef 4169 R rec 8330427a-4fa8-4693-a460-10b5de3704c8 +2024-09-11 09:04:23.14763 2024-09-11 09:04:23.147635 mef 4170 R rec 5b83d9d7-de05-41de-8651-c235a4c3cf76 +2024-09-11 09:04:23.21114 2024-09-11 09:04:23.211145 mef 4171 R rec 8495dc99-2843-4831-9d6e-dddecea6c45f +2024-09-11 09:04:23.27469 2024-09-11 09:04:23.274694 mef 4172 R rec ced0f225-1de9-49d6-84e7-526f369784ee +2024-09-11 09:04:23.333943 2024-09-11 09:04:23.333948 mef 4173 R rec 0eb0fa67-16a6-4557-b7ae-c1175a04c5cf +2024-09-11 09:04:23.394701 2024-09-11 09:04:23.394706 mef 4174 R rec 7d5e404b-74ce-4930-aa52-7fee69981118 +2024-09-11 09:04:23.469926 2024-09-11 09:04:23.469931 mef 4175 R rec ed3780f6-31ef-4d2c-a93e-705665246609 +2024-09-11 09:04:23.549045 2024-09-11 09:04:23.54905 mef 4176 R rec b95c0273-47b4-42bb-b7c4-7da32403a8c4 +2024-09-11 09:04:23.707806 2024-09-11 09:04:23.707812 mef 4177 R rec 2ec03c24-0baa-46f2-a4b6-de48f42b6bb8 +2024-09-11 09:04:23.766695 2024-09-11 09:04:23.7667 mef 4178 R rec c60284ed-1faa-450d-bf26-045e262f9db3 +2024-09-11 09:04:23.824491 2024-09-11 09:04:23.824495 mef 4179 R rec a8ffca2b-bf0a-4c19-8837-74a16f851edd +2024-09-11 09:04:24.019112 2024-09-11 09:04:24.019117 mef 4180 R rec 4d9e233f-178f-4e7d-a3d6-cc8ecad60edb +2024-09-11 09:04:24.077031 2024-09-11 09:04:24.077036 mef 4181 R rec 7d2adc12-4053-44c7-bfda-0f80d1af3b0c +2024-09-11 09:04:24.136097 2024-09-11 09:04:24.136102 mef 4182 R rec ae800d5e-827a-42e6-a7fe-d54ee8878e3f +2024-09-11 09:04:24.197232 2024-09-11 09:04:24.197236 mef 4183 R rec 3f96f873-51fe-4a00-97e3-72e705a5a857 +2024-09-11 09:04:24.359083 2024-09-11 09:04:24.359089 mef 4184 R rec 31432fc1-0d76-48dc-9fdd-eca660a35640 +2024-09-11 09:04:24.419816 2024-09-11 09:04:24.419821 mef 4185 R rec efe8ff9b-c8cd-4ee5-9b61-aa47c655ca46 +2024-09-11 09:04:24.56115 2024-09-11 09:04:24.561155 mef 4186 R rec a486f699-376a-48de-b246-09a9b48ebcb9 +2024-09-11 09:04:24.635741 2024-09-11 09:04:24.635747 mef 4187 R rec 3b2e8185-09c2-498d-8f47-eb2d8f98aa2b +2024-09-11 09:04:24.696087 2024-09-11 09:04:24.696091 mef 4188 R rec 68b76d43-4beb-49a8-87cf-9cea029c7f87 +2024-09-11 09:04:24.753959 2024-09-11 09:04:24.753965 mef 4189 R rec 3957175d-f8fa-4b35-af2f-d0aba46eab83 +2024-09-11 09:04:24.812046 2024-09-11 09:04:24.812051 mef 4190 R rec a35ee128-a495-42c7-89c1-8173f9e91fb3 +2024-09-11 09:04:24.950601 2024-09-11 09:04:24.950606 mef 4191 R rec 768e023a-e4ad-4c7c-954c-34925cf405ef +2024-09-11 09:04:25.009217 2024-09-11 09:04:25.009222 mef 4192 R rec 09cf399e-a0ef-4d0f-914a-dbe43a3e09e6 +2024-09-11 09:04:25.067582 2024-09-11 09:04:25.067588 mef 4193 R rec 2bf5aac5-1fcc-44a0-8ba6-1d55393c0928 +2024-09-11 09:04:25.122751 2024-09-11 09:04:25.122755 mef 4194 R rec 3a5dad9d-39af-4211-973f-e22325f3fff1 +2024-09-11 09:04:25.18211 2024-09-11 09:04:25.182114 mef 4195 R rec be201702-0836-4189-b214-6d92182f4b2f +2024-09-11 09:04:25.242342 2024-09-11 09:04:25.242347 mef 4196 R rec f4ea0eba-7d31-40db-8329-4e17a38be91e +2024-09-11 09:04:25.299799 2024-09-11 09:04:25.299805 mef 4197 R rec 865b44eb-fd85-4d61-a19d-6de779a61009 +2024-09-11 09:04:25.358579 2024-09-11 09:04:25.358584 mef 4198 R rec a5cb412e-477e-4d0a-bc9a-ad21f3502cbe +2024-09-11 09:04:25.414644 2024-09-11 09:04:25.414648 mef 4199 R rec e9356c77-7bc7-4633-b25d-e65c0ae19a3f +2024-09-11 09:04:25.474557 2024-09-11 09:04:25.474561 mef 4200 R rec 1f44016a-df0b-44a3-8b4e-eddcff1677f4 +2024-09-11 09:04:25.543412 2024-09-11 09:04:25.543417 mef 4201 R rec b57d4831-bc15-4a76-8a2f-e84abf9a3bd5 +2024-09-11 09:04:25.609043 2024-09-11 09:04:25.609048 mef 4202 R rec 1434e8ad-07c0-4401-9480-01fccd40530b +2024-09-11 09:04:25.680647 2024-09-11 09:04:25.680653 mef 4203 R rec 4d684523-0d19-4a30-833f-1aa7dddb6fb8 +2024-09-11 09:04:25.737484 2024-09-11 09:04:25.737489 mef 4204 R rec c0e271b8-ff9d-4aea-8701-11ac902c64a2 +2024-09-11 09:04:25.799732 2024-09-11 09:04:25.799738 mef 4205 R rec 65922c59-52f7-414d-bad5-4043958e1c90 +2024-09-11 09:04:25.866547 2024-09-11 09:04:25.866553 mef 4206 R rec aa61ff2e-5b44-4691-9626-23bd343b8ac6 +2024-09-11 09:04:26.003021 2024-09-11 09:04:26.003026 mef 4207 R rec 0b4e7981-259e-40d2-a283-daeca0f6f563 +2024-09-11 09:04:26.070178 2024-09-11 09:04:26.070183 mef 4208 R rec f12f391b-50b5-4b0b-b419-0eab0cdcc621 +2024-09-11 09:04:26.128311 2024-09-11 09:04:26.128316 mef 4209 R rec d877506b-2169-4b99-8e96-216de710a8ff +2024-09-11 09:04:26.186195 2024-09-11 09:04:26.186201 mef 4210 R rec 1ad85f7e-9cf4-456e-aaae-5dcae2a8a6b3 +2024-09-11 09:04:26.254284 2024-09-11 09:04:26.25429 mef 4211 R rec 51c92947-3c8c-468e-814a-49062071380c +2024-09-11 09:04:26.311675 2024-09-11 09:04:26.311679 mef 4212 R rec 3ba8e5c9-dcfc-43b8-b174-94e0212ab991 +2024-09-11 09:04:26.379607 2024-09-11 09:04:26.379612 mef 4213 R rec 0a125f32-8939-48e9-aec8-1d8a69629dc7 +2024-09-11 09:04:26.437049 2024-09-11 09:04:26.437054 mef 4214 R rec bc67732b-7cfb-43fa-870f-322abc784ab3 +2024-09-11 09:04:26.496206 2024-09-11 09:04:26.496211 mef 4215 R rec c58067f9-af7d-4c3b-ac76-9ab71c9de4e6 +2024-09-11 09:04:26.5513 2024-09-11 09:04:26.551306 mef 4216 R rec e053b315-e533-489b-ad2d-1800ca5fdbc9 +2024-09-11 09:04:26.612652 2024-09-11 09:04:26.612656 mef 4217 R rec ac1c8d22-7097-4033-a0f5-3506c2390923 +2024-09-11 09:04:26.674971 2024-09-11 09:04:26.674976 mef 4218 R rec 8a0e0f33-4d92-4562-b5d3-c3971607e665 +2024-09-11 09:04:26.808715 2024-09-11 09:04:26.80872 mef 4219 R rec 99e598ef-2bfb-4dc3-871d-b22ac71f5622 +2024-09-11 09:04:26.864582 2024-09-11 09:04:26.864587 mef 4220 R rec c7dbc88a-23fe-43f8-951e-02c3d1eb9027 +2024-09-11 09:04:26.916449 2024-09-11 09:04:26.916455 mef 4221 R rec 9a8aa0f4-fbc1-469c-91ec-4136b6030e65 +2024-09-11 09:04:26.97021 2024-09-11 09:04:26.970216 mef 4222 R rec 3b3b4c53-e7cf-40e5-bac1-e0f6e43e943c +2024-09-11 09:04:27.022863 2024-09-11 09:04:27.022868 mef 4223 R rec 14ae880c-6d27-491d-89f2-3d81878a2194 +2024-09-11 09:04:27.073573 2024-09-11 09:04:27.073577 mef 4224 R rec 812ae1bb-2718-4317-ad3b-a37162c106a3 +2024-09-11 09:04:27.126832 2024-09-11 09:04:27.126837 mef 4225 R rec b0d35b6e-4849-4ecf-8c33-cf1520a8bb40 +2024-09-11 09:04:27.18106 2024-09-11 09:04:27.181065 mef 4226 R rec d6bec325-670c-4403-a39d-e6776710e4d7 +2024-09-11 09:04:27.23399 2024-09-11 09:04:27.233996 mef 4227 R rec d2a0567e-6a7e-4437-9d5c-63016552a592 +2024-09-11 09:04:27.287108 2024-09-11 09:04:27.287115 mef 4228 R rec aad8c964-6729-4db2-a5a0-e3770a31051b +2024-09-11 09:04:27.378779 2024-09-11 09:04:27.378784 mef 4229 R rec 8745a07a-6fb9-49b7-b2bb-c1a0fd8c247f +2024-09-11 09:04:27.433556 2024-09-11 09:04:27.433561 mef 4230 R rec 836a24b8-1a58-499f-af52-56c6ac2e4bd2 +2024-09-11 09:04:27.492391 2024-09-11 09:04:27.492396 mef 4231 R rec 54355b16-0725-41e2-8882-975a44c176f3 +2024-09-11 09:04:27.548246 2024-09-11 09:04:27.548251 mef 4232 R rec c9adcf49-e3cb-47ee-9319-46b719f8008f +2024-09-11 09:04:27.618557 2024-09-11 09:04:27.618564 mef 4233 R rec 8909e060-e2fa-4fe1-a480-98702f453e07 +2024-09-11 09:04:27.675067 2024-09-11 09:04:27.675073 mef 4234 R rec 98733199-eb64-4105-aced-2b2bf158ee47 +2024-09-11 09:04:27.72817 2024-09-11 09:04:27.728174 mef 4235 R rec 53780b6c-c212-41dc-9faf-40f8def0939d +2024-09-11 09:04:27.780971 2024-09-11 09:04:27.780977 mef 4236 R rec dd821527-8dd5-408e-b25b-9056499f0464 +2024-09-11 09:04:27.834256 2024-09-11 09:04:27.834262 mef 4237 R rec 9bbafd3f-83d4-478a-a3e3-a0e2e4c857a0 +2024-09-11 09:04:27.89478 2024-09-11 09:04:27.894785 mef 4238 R rec 378ad773-ace4-41e8-a222-b61e60c418d8 +2024-09-11 09:04:27.94618 2024-09-11 09:04:27.946185 mef 4239 R rec 3ee88784-9a53-4c08-a225-510b493d7b37 +2024-09-11 09:04:27.999661 2024-09-11 09:04:27.999665 mef 4240 R rec 1bba6dd2-6fdf-4540-9c92-ac7a6af6fe9c +2024-09-11 09:04:28.054921 2024-09-11 09:04:28.054926 mef 4241 R rec f3d2c36d-2d7f-4be3-93e0-28d3951ba933 +2024-09-11 09:04:28.229153 2024-09-11 09:04:28.229158 mef 4242 R rec 2a257bde-4b2e-4bad-97ec-f836d0739d5e +2024-09-11 09:04:28.282613 2024-09-11 09:04:28.282618 mef 4243 R rec 5e0c3842-ad1a-4e99-bbc7-00a80ff8f381 +2024-09-11 09:04:28.338057 2024-09-11 09:04:28.338062 mef 4244 R rec 69fdee6e-a557-4310-b8fc-ea046a9024b0 +2024-09-11 09:04:28.391875 2024-09-11 09:04:28.391881 mef 4245 R rec 25686ed1-30f5-4b78-9274-e4b69b1681e6 +2024-09-11 09:04:28.448273 2024-09-11 09:04:28.448278 mef 4246 R rec 39ef4154-bd19-4929-9caf-888ded58a595 +2024-09-11 09:04:28.501689 2024-09-11 09:04:28.501695 mef 4247 R rec 20b4e011-6f92-411f-aed8-8beb66a8bd30 +2024-09-11 09:04:28.560739 2024-09-11 09:04:28.560744 mef 4248 R rec 0bc2c513-e79b-480e-9e8c-489cc4dd9fa5 +2024-09-11 09:04:28.618332 2024-09-11 09:04:28.618337 mef 4249 R rec a955aa91-81fb-4b01-9ec2-26cacd9e57c5 +2024-09-11 09:04:28.674476 2024-09-11 09:04:28.67448 mef 4250 R rec 953d8295-31af-414c-9a12-38f061ddd9f9 +2024-09-11 09:04:28.728611 2024-09-11 09:04:28.728616 mef 4251 R rec 4e84b355-8b3a-43c1-bd4f-4c3d0b9c1f97 +2024-09-11 09:04:28.848801 2024-09-11 09:04:28.848806 mef 4252 R rec 25c26136-1ab6-43c4-8752-5428fb473a3c +2024-09-11 09:04:28.919057 2024-09-11 09:04:28.919064 mef 4253 R rec a6048ca2-c279-4a6f-afca-33bd9cf7e5ac +2024-09-11 09:04:28.972578 2024-09-11 09:04:28.972582 mef 4254 R rec 8c137d9d-b8b4-4890-a33b-cf74ec5ce430 +2024-09-11 09:04:29.027539 2024-09-11 09:04:29.027544 mef 4255 R rec 68d2e253-08e2-437c-bdf6-ffa54abf6e7f +2024-09-11 09:04:29.086549 2024-09-11 09:04:29.086555 mef 4256 R rec d9380857-b52c-4cc2-b51a-4241d5c11137 +2024-09-11 09:04:29.142135 2024-09-11 09:04:29.14214 mef 4257 R rec bf4714ba-a3c1-4c95-b3e8-56d8c9ef53d4 +2024-09-11 09:04:29.194844 2024-09-11 09:04:29.194849 mef 4258 R rec 8315b5a0-4574-4b83-99e6-36ffff9a3f90 +2024-09-11 09:04:29.255688 2024-09-11 09:04:29.255693 mef 4259 R rec 4bedf350-9fd0-48a0-a50f-d67e7468daff +2024-09-11 09:04:29.373269 2024-09-11 09:04:29.373274 mef 4260 R rec f6fee2bc-196b-4fae-9c30-fe44ea4d767b +2024-09-11 09:04:29.427016 2024-09-11 09:04:29.427021 mef 4261 R rec b6ea9144-af9a-4438-a6b7-27d31fcac55b +2024-09-11 09:04:29.494491 2024-09-11 09:04:29.494498 mef 4262 R rec b64c925c-ffad-45f7-8251-2361e805ad30 +2024-09-11 09:04:29.553051 2024-09-11 09:04:29.553057 mef 4263 R rec b18617bb-50cb-48f1-a96e-d6c22caa29fd +2024-09-11 09:04:29.613178 2024-09-11 09:04:29.613183 mef 4264 R rec 49ee8918-2eec-43d6-9e00-632c9e95a45d +2024-09-11 09:04:29.669157 2024-09-11 09:04:29.669162 mef 4265 R rec 2c67fd29-9d53-4efd-a625-2869d828dfb2 +2024-09-11 09:04:29.727852 2024-09-11 09:04:29.727857 mef 4266 R rec 04598514-a2a5-43c3-832b-9a0bd453144c +2024-09-11 09:04:29.786232 2024-09-11 09:04:29.786237 mef 4267 R rec 8929521d-8635-47d8-aea2-9a6943763615 +2024-09-11 09:04:29.846134 2024-09-11 09:04:29.846138 mef 4268 R rec b04169e0-8e99-42a0-b5a7-c0b98183355a +2024-09-11 09:04:29.905586 2024-09-11 09:04:29.905592 mef 4269 R rec 7a998a9b-6165-4e81-bb90-6b47c40d763f +2024-09-11 09:04:29.972942 2024-09-11 09:04:29.972948 mef 4270 R rec e48a5e55-d54c-4218-9ad3-7274287796b5 +2024-09-11 09:04:30.043715 2024-09-11 09:04:30.043721 mef 4271 R rec f5fd7853-0e07-45bc-a7e6-889295f85868 +2024-09-11 09:04:30.101096 2024-09-11 09:04:30.101102 mef 4272 R rec 295b980f-7f65-4ae5-b334-0608d8f3155a +2024-09-11 09:04:30.230067 2024-09-11 09:04:30.230072 mef 4273 R rec e69f617d-fe5b-435b-a140-9c290500355a +2024-09-11 09:04:30.297902 2024-09-11 09:04:30.297908 mef 4274 R rec f9d09291-ccde-478d-b705-e602fdb1855f +2024-09-11 09:04:30.368064 2024-09-11 09:04:30.368069 mef 4275 R rec a6e2ed79-1823-4ce3-99dd-62e5c233bc0e +2024-09-11 09:04:30.436286 2024-09-11 09:04:30.436291 mef 4276 R rec 3526317f-a2c9-4e4f-8850-9bc3cabe4427 +2024-09-11 09:04:30.495174 2024-09-11 09:04:30.495178 mef 4277 R rec a7e90a7d-6dd3-486d-9cd5-45831681fb9c +2024-09-11 09:04:30.562992 2024-09-11 09:04:30.562996 mef 4278 R rec 3c05b9c2-afa7-4831-9578-92a2d2b74b30 +2024-09-11 09:04:30.64204 2024-09-11 09:04:30.642045 mef 4279 R rec a5f90667-81c3-4f73-b10e-19a06a4568af +2024-09-11 09:04:30.803966 2024-09-11 09:04:30.803973 mef 4280 R rec f56f42dc-c1fa-4d47-90e7-b5873af76bcd +2024-09-11 09:04:30.870065 2024-09-11 09:04:30.870071 mef 4281 R rec 54ef27b2-6405-4ba5-966e-e17d4cfbd584 +2024-09-11 09:04:30.941468 2024-09-11 09:04:30.941473 mef 4282 R rec a23f2a7d-d690-44cc-adc3-072f9cf3658b +2024-09-11 09:04:31.007435 2024-09-11 09:04:31.007439 mef 4283 R rec 096b3c76-d9d2-4d9d-8733-797198231f83 +2024-09-11 09:04:31.068557 2024-09-11 09:04:31.068563 mef 4284 R rec 634128c9-97e5-4ed4-99f2-d942abe01295 +2024-09-11 09:04:31.12703 2024-09-11 09:04:31.127036 mef 4285 R rec 282e18e0-e9e5-4ba5-b0d3-68e1475b5778 +2024-09-11 09:04:31.250708 2024-09-11 09:04:31.250713 mef 4286 R rec 284d69fb-8f18-4baf-84f5-a55f6f332db2 +2024-09-11 09:04:31.313293 2024-09-11 09:04:31.313298 mef 4287 R rec 783fa57b-17ef-42bb-b838-acdb7beb757c +2024-09-11 09:04:31.372675 2024-09-11 09:04:31.372681 mef 4288 R rec 9f7ab731-48bc-4578-b10a-45df2da0c757 +2024-09-11 09:04:31.429302 2024-09-11 09:04:31.429306 mef 4289 R rec eb3c087c-02b7-4e53-8c50-9e4d043e1dfd +2024-09-11 09:04:31.484218 2024-09-11 09:04:31.484223 mef 4290 R rec 6fac4cf0-9f2d-46e6-93b5-66e128fe303b +2024-09-11 09:04:31.542565 2024-09-11 09:04:31.542571 mef 4291 R rec 9aa09dd6-5cfd-40ef-8581-8d82dc397f65 +2024-09-11 09:04:31.601148 2024-09-11 09:04:31.601153 mef 4292 R rec d37e1c65-fe72-4cac-9696-c0694d9abcb4 +2024-09-11 09:04:31.65814 2024-09-11 09:04:31.658145 mef 4293 R rec 019017ff-06aa-4c3d-b19d-09c80ad92364 +2024-09-11 09:04:31.715836 2024-09-11 09:04:31.715841 mef 4294 R rec 20092fc7-3b33-478d-9f38-979445d1420a +2024-09-11 09:04:31.838679 2024-09-11 09:04:31.838685 mef 4295 R rec e0396e2b-14ce-414c-8ef6-1c54fd5342bd +2024-09-11 09:04:31.97057 2024-09-11 09:04:31.970576 mef 4296 R rec 2bd07a7e-f517-47c1-af9f-ab0be306acbb +2024-09-11 09:04:32.048489 2024-09-11 09:04:32.048496 mef 4297 R rec 4527ae66-1ace-4578-be3c-6e1afaa60c5f +2024-09-11 09:04:32.104208 2024-09-11 09:04:32.104214 mef 4298 R rec d2d183e4-7e30-44d4-95eb-03f90d25af52 +2024-09-11 09:04:32.226675 2024-09-11 09:04:32.22668 mef 4299 R rec 03f367b9-0ca2-4a17-ae64-7fcfc75ad1c2 +2024-09-11 09:04:32.289675 2024-09-11 09:04:32.289698 mef 4300 R rec cb90b291-2cb2-4713-9d49-a1e067801f36 +2024-09-11 09:04:32.355652 2024-09-11 09:04:32.355661 mef 4301 R rec 5277fe0a-9afb-4296-8569-c6e3a7388b90 +2024-09-11 09:04:32.41489 2024-09-11 09:04:32.414894 mef 4302 R rec 114cbce7-edc9-4b7b-91a3-9f0f0dc44379 +2024-09-11 09:04:32.484863 2024-09-11 09:04:32.484868 mef 4303 R rec 954ad503-3b9a-4871-a2c6-c4c92f951fc8 +2024-09-11 09:04:32.545843 2024-09-11 09:04:32.545848 mef 4304 R rec db77bd0a-0c5f-4d97-8cf3-9afe1f9b92a8 +2024-09-11 09:04:32.601201 2024-09-11 09:04:32.601207 mef 4305 R rec 518a20bd-983f-4b10-9afa-b3df02c86166 +2024-09-11 09:04:32.663907 2024-09-11 09:04:32.663912 mef 4306 R rec 399f5a55-1d17-4992-91bc-e1c068cd18ad +2024-09-11 09:04:32.72517 2024-09-11 09:04:32.725176 mef 4307 R rec 8dd6ea0c-873a-4dc9-bb8a-74f78f4bff19 +2024-09-11 09:04:32.783628 2024-09-11 09:04:32.783633 mef 4308 R rec adc17e8f-f46b-4509-b429-d48355435f22 +2024-09-11 09:04:32.844665 2024-09-11 09:04:32.84467 mef 4309 R rec 3dc1aa76-ce41-4f82-aa0c-7f80f5ec5d9c +2024-09-11 09:04:32.906744 2024-09-11 09:04:32.906749 mef 4310 R rec 716ee096-3949-480b-ac77-5723d996d9c4 +2024-09-11 09:04:33.046012 2024-09-11 09:04:33.046017 mef 4311 R rec 44e71947-b4ef-4ab3-b0ac-c7479fd15bfd +2024-09-11 09:04:33.105343 2024-09-11 09:04:33.105348 mef 4312 R rec 1c3db9e1-ffe8-491e-8815-7c600d96e052 +2024-09-11 09:04:33.166259 2024-09-11 09:04:33.166265 mef 4313 R rec 157d1ee6-4adf-4666-a564-a80156877252 +2024-09-11 09:04:33.236127 2024-09-11 09:04:33.236132 mef 4314 R rec 74ccb206-0c56-4e19-9aba-f44b2b9e6bba +2024-09-11 09:04:33.308994 2024-09-11 09:04:33.308999 mef 4315 R rec 78319b4f-86ff-4dfb-b586-005f9b92f872 +2024-09-11 09:04:33.37002 2024-09-11 09:04:33.370025 mef 4316 R rec 8a75b314-ae38-4fc5-8e5a-3826c7f61daf +2024-09-11 09:04:33.42687 2024-09-11 09:04:33.426875 mef 4317 R rec ce846a3c-9296-4e5d-98fb-9358d33836a6 +2024-09-11 09:04:33.485062 2024-09-11 09:04:33.485069 mef 4318 R rec c120f1f6-2135-4e03-97cd-a187e235b539 +2024-09-11 09:04:33.546009 2024-09-11 09:04:33.546015 mef 4319 R rec 97eb9db6-da2d-4606-aa3c-6d1283a34e1e +2024-09-11 09:04:33.604672 2024-09-11 09:04:33.604677 mef 4320 R rec 2b8d6398-e832-4328-bd44-317fd13d3423 +2024-09-11 09:04:33.672739 2024-09-11 09:04:33.672743 mef 4321 R rec 7a49a08e-b949-4ebc-a441-f4844f7405d1 +2024-09-11 09:04:33.730482 2024-09-11 09:04:33.730488 mef 4322 R rec 8798b4a5-c5de-4471-a2f5-0819965e4645 +2024-09-11 09:04:33.787719 2024-09-11 09:04:33.787723 mef 4323 R rec 75ea72b3-b1f0-4e75-a7b4-8e39594f5288 +2024-09-11 09:04:33.84712 2024-09-11 09:04:33.847124 mef 4324 R rec ef31efc0-9bbd-469e-a665-6fd449f68e51 +2024-09-11 09:04:33.916517 2024-09-11 09:04:33.916522 mef 4325 R rec fc4f51d3-80eb-402e-9142-a6775896436b +2024-09-11 09:04:33.978192 2024-09-11 09:04:33.978197 mef 4326 R rec 93a88658-d9e0-42fc-a160-fe5b2c503dcf +2024-09-11 09:04:34.039057 2024-09-11 09:04:34.039063 mef 4327 R rec 9cc12de4-e668-44cc-bb7b-7941bbfe67bf +2024-09-11 09:04:34.108541 2024-09-11 09:04:34.108547 mef 4328 R rec e51519e7-6994-4d75-a85c-8d196ad11865 +2024-09-11 09:04:34.168166 2024-09-11 09:04:34.168172 mef 4329 R rec 65c9426e-fa80-440d-8c5d-4037caf99022 +2024-09-11 09:04:34.258399 2024-09-11 09:04:34.258404 mef 4330 R rec 815d613b-f05e-4fbf-81d6-a73f0bcf4a2d +2024-09-11 09:04:34.331971 2024-09-11 09:04:34.331977 mef 4331 R rec 23f17ef2-f169-46e9-8241-59a6a1f31022 +2024-09-11 09:04:34.400405 2024-09-11 09:04:34.40041 mef 4332 R rec b8bb95b3-b40d-4ec9-a890-dffe0ded69b3 +2024-09-11 09:04:34.472343 2024-09-11 09:04:34.472348 mef 4333 R rec fce3eeb6-112a-4518-a5fd-55f6fbf44d11 +2024-09-11 09:04:34.538499 2024-09-11 09:04:34.538504 mef 4334 R rec c6408650-61eb-41cf-8962-1237a3aee2a6 +2024-09-11 09:04:34.602281 2024-09-11 09:04:34.602286 mef 4335 R rec 16d85ab8-2433-43d1-87b7-bfba51775363 +2024-09-11 09:04:34.671987 2024-09-11 09:04:34.671991 mef 4336 R rec 3f966710-2bd5-4000-bea5-259de38648df +2024-09-11 09:04:34.736409 2024-09-11 09:04:34.736414 mef 4337 R rec 9c395f6f-2ec8-4979-95d6-e793ba4a9e4d +2024-09-11 09:04:34.794259 2024-09-11 09:04:34.794264 mef 4338 R rec 4c45e94b-0a8d-4632-b251-024c2b823029 +2024-09-11 09:04:34.853708 2024-09-11 09:04:34.853713 mef 4339 R rec e2f0d90d-9852-4e41-9d02-6d2f34f37ce7 +2024-09-11 09:04:34.911449 2024-09-11 09:04:34.911454 mef 4340 R rec b4b88adf-f30b-4986-957d-3717355fa5ce +2024-09-11 09:04:35.0378 2024-09-11 09:04:35.037806 mef 4341 R rec c97370cb-b18d-430f-ba7c-a366c9dd48db +2024-09-11 09:04:35.098577 2024-09-11 09:04:35.098583 mef 4342 R rec 2da39fa7-20ec-43d9-bff3-01a99f39203f +2024-09-11 09:04:35.168042 2024-09-11 09:04:35.168047 mef 4343 R rec 88c01030-72af-436a-8eb1-2c30935c1850 +2024-09-11 09:04:35.223879 2024-09-11 09:04:35.223884 mef 4344 R rec 8989f122-9606-4841-8cde-d45693d66805 +2024-09-11 09:04:35.295686 2024-09-11 09:04:35.295691 mef 4345 R rec 2bf02bf5-5252-4953-a03b-627e9a945474 +2024-09-11 09:04:35.368194 2024-09-11 09:04:35.368219 mef 4346 R rec ae76272b-10bf-42b3-8d50-aa11363b8621 +2024-09-11 09:04:35.437002 2024-09-11 09:04:35.437007 mef 4347 R rec 97e50187-9339-4f17-a039-2918a852802e +2024-09-11 09:04:35.499847 2024-09-11 09:04:35.499852 mef 4348 R rec 10d283bd-bc40-4951-b226-f9a7a0545f89 +2024-09-11 09:04:35.557986 2024-09-11 09:04:35.557991 mef 4349 R rec 73782a89-25f1-4028-8b89-c2af1f63f52a +2024-09-11 09:04:35.61676 2024-09-11 09:04:35.616764 mef 4350 R rec b07dca57-3bf7-4b97-b329-b42e6e559a6f +2024-09-11 09:04:35.68043 2024-09-11 09:04:35.680434 mef 4351 R rec 8ffc4692-6134-42ec-9909-30f04897ccab +2024-09-11 09:04:35.808324 2024-09-11 09:04:35.808329 mef 4352 R rec 1b207d6e-3dea-4cab-85b9-b259936e19a1 +2024-09-11 09:04:35.878327 2024-09-11 09:04:35.878331 mef 4353 R rec 72a499fb-84f9-493c-942c-e29c74a9f275 +2024-09-11 09:04:35.938465 2024-09-11 09:04:35.938469 mef 4354 R rec 80cab345-8035-4acb-8a80-632929d7fa29 +2024-09-11 09:04:35.99267 2024-09-11 09:04:35.992675 mef 4355 R rec c51ebbe3-bfaf-4df2-961f-c9cb68f18917 +2024-09-11 09:04:36.051385 2024-09-11 09:04:36.05139 mef 4356 R rec daff2e43-8cdc-4932-aa64-bd20751ea6f0 +2024-09-11 09:04:36.110665 2024-09-11 09:04:36.11067 mef 4357 R rec b465158e-ddc6-42c0-aa3b-5af613cb8872 +2024-09-11 09:04:36.180949 2024-09-11 09:04:36.180954 mef 4358 R rec 0694d29c-5194-4254-ba59-708f088e8f2e +2024-09-11 09:04:36.240228 2024-09-11 09:04:36.240233 mef 4359 R rec 53aa0ffc-0944-46c3-a6d5-1bb76623eb70 +2024-09-11 09:04:36.311819 2024-09-11 09:04:36.311824 mef 4360 R rec c63c657d-9404-42a5-9c42-3eb80784c0c8 +2024-09-11 09:04:36.379581 2024-09-11 09:04:36.379586 mef 4361 R rec e1ad4bc9-fe9e-4f5f-b5bd-553a000f3875 +2024-09-11 09:04:36.438335 2024-09-11 09:04:36.438339 mef 4362 R rec 12dc418e-6418-4e84-ace3-3c57c31965bb +2024-09-11 09:04:36.499907 2024-09-11 09:04:36.499913 mef 4363 R rec e0c922a0-092d-4a1d-9aec-ffd3aec533a7 +2024-09-11 09:04:36.564726 2024-09-11 09:04:36.564731 mef 4364 R rec 89c8aed7-5de2-41bc-8123-f177312d516c +2024-09-11 09:04:36.625596 2024-09-11 09:04:36.6256 mef 4365 R rec bd7df263-be66-4dee-a2c8-89e8788d733f +2024-09-11 09:04:36.763084 2024-09-11 09:04:36.763088 mef 4366 R rec 587ddf21-59a8-4195-9569-fbc7c68ec3d1 +2024-09-11 09:04:36.831186 2024-09-11 09:04:36.831191 mef 4367 R rec f09a0382-4b87-4ade-a173-f6f4ff5114eb +2024-09-11 09:04:36.959411 2024-09-11 09:04:36.959417 mef 4368 R rec 09a0a499-30c0-4d45-a751-e12471f3daf7 +2024-09-11 09:04:37.017932 2024-09-11 09:04:37.017937 mef 4369 R rec e8aa1779-f106-4868-961b-fe73c7efb3ff +2024-09-11 09:04:37.077702 2024-09-11 09:04:37.077707 mef 4370 R rec 2939e109-8f21-4f58-8f80-0815b5f49e25 +2024-09-11 09:04:37.136435 2024-09-11 09:04:37.136441 mef 4371 R rec fadabd95-3a5e-4a34-9612-6aa16f76661a +2024-09-11 09:04:37.193889 2024-09-11 09:04:37.193893 mef 4372 R rec 884fe94d-aa55-418e-b6e5-be3619f4e26f +2024-09-11 09:04:37.251731 2024-09-11 09:04:37.251742 mef 4373 R rec 889a343c-59f6-4c4e-a1a1-e74e473ee424 +2024-09-11 09:04:37.314681 2024-09-11 09:04:37.314687 mef 4374 R rec c077c49b-928d-4842-b115-599907ff66d1 +2024-09-11 09:04:37.376194 2024-09-11 09:04:37.3762 mef 4375 R rec 37dba75f-3b18-4a09-b409-ea00c50f9083 +2024-09-11 09:04:37.433588 2024-09-11 09:04:37.433593 mef 4376 R rec 94cdefd9-4821-4f12-b4e3-ef0798c7e196 +2024-09-11 09:04:37.48688 2024-09-11 09:04:37.486886 mef 4377 R rec 271c0475-5115-4152-b0b0-e94014418bae +2024-09-11 09:04:37.543942 2024-09-11 09:04:37.543947 mef 4378 R rec bbbfce54-3539-4ac8-8821-8c7df8821fdf +2024-09-11 09:04:37.610421 2024-09-11 09:04:37.610426 mef 4379 R rec be473c96-1304-49a7-b895-7481a691ec5a +2024-09-11 09:04:37.667223 2024-09-11 09:04:37.667229 mef 4380 R rec 965fb386-27d3-4d78-856e-d830a89edbb5 +2024-09-11 09:04:37.72643 2024-09-11 09:04:37.726435 mef 4381 R rec 39d52ee8-844a-4b72-a004-9f4071cef078 +2024-09-11 09:04:37.782317 2024-09-11 09:04:37.782322 mef 4382 R rec 08c3823e-0ee8-487b-93bc-429d20e6d6a5 +2024-09-11 09:04:37.841985 2024-09-11 09:04:37.841991 mef 4383 R rec 5896f843-69f3-41ad-bc46-b260a78d6af9 +2024-09-11 09:04:37.912253 2024-09-11 09:04:37.912259 mef 4384 R rec 4730e3a6-7600-423d-a142-c2abe41fdd5d +2024-09-11 09:04:37.987155 2024-09-11 09:04:37.98716 mef 4385 R rec c4af06c0-bcf5-494e-9a40-073fc49eeb4f +2024-09-11 09:04:38.051546 2024-09-11 09:04:38.05155 mef 4386 R rec 3c1a0f7a-98fe-4afd-812e-b2ae88967c94 +2024-09-11 09:04:38.121115 2024-09-11 09:04:38.12112 mef 4387 R rec 2822f18a-55b9-435c-a64d-c845fc78573e +2024-09-11 09:04:38.179876 2024-09-11 09:04:38.179881 mef 4388 R rec 8b061596-3aa0-4a23-98b2-a5fc4ddcce3d +2024-09-11 09:04:38.244619 2024-09-11 09:04:38.244624 mef 4389 R rec aa20f991-65d5-4ae3-8c08-72462fcf9ed0 +2024-09-11 09:04:38.304562 2024-09-11 09:04:38.304568 mef 4390 R rec cefbdafd-79d2-4898-b675-c35ff96d7cdf +2024-09-11 09:04:38.430951 2024-09-11 09:04:38.430957 mef 4391 R rec d251b3c1-17e2-4f28-8e20-5638e9f1af79 +2024-09-11 09:04:38.488429 2024-09-11 09:04:38.488435 mef 4392 R rec 24e0403c-9052-4463-9d97-0f26fcca8bf0 +2024-09-11 09:04:38.639243 2024-09-11 09:04:38.639248 mef 4393 R rec 205bd853-2c04-46cc-a650-b0191320d9c9 +2024-09-11 09:04:38.696598 2024-09-11 09:04:38.696603 mef 4394 R rec fe632b6a-ed3f-4206-baea-708f8422b185 +2024-09-11 09:04:38.751621 2024-09-11 09:04:38.751625 mef 4395 R rec 836eae1e-9d45-472d-a25e-f46ae04eae65 +2024-09-11 09:04:38.810226 2024-09-11 09:04:38.810231 mef 4396 R rec 41c285fb-da7e-4ce8-a0f7-334930d68be5 +2024-09-11 09:04:38.866887 2024-09-11 09:04:38.866892 mef 4397 R rec 47ae1dd8-35d3-4423-b1a8-402a38dd318b +2024-09-11 09:04:38.933052 2024-09-11 09:04:38.933059 mef 4398 R rec bc2cb71e-16ef-42f2-b973-b83fa33d7eeb +2024-09-11 09:04:38.989085 2024-09-11 09:04:38.989091 mef 4399 R rec 078bf717-fb59-4ad7-bc87-2682113e92b7 +2024-09-11 09:04:39.045536 2024-09-11 09:04:39.04554 mef 4400 R rec 46cda834-9d7a-4d35-9fb0-872879892562 +2024-09-11 09:04:39.105395 2024-09-11 09:04:39.105399 mef 4401 R rec f302e222-8713-427f-b2af-cf1111e57f72 +2024-09-11 09:04:39.163169 2024-09-11 09:04:39.163174 mef 4402 R rec e30c9be6-7ef2-420f-bca5-1b94235dd1e3 +2024-09-11 09:04:39.236314 2024-09-11 09:04:39.236319 mef 4403 R rec 9f28d6f5-ea8b-4020-be88-7b33a27ea77b +2024-09-11 09:04:39.305728 2024-09-11 09:04:39.305755 mef 4404 R rec eb04fa3c-2e36-416e-8e0e-2e31dad27897 +2024-09-11 09:04:39.3686 2024-09-11 09:04:39.368605 mef 4405 R rec dd084564-0b1f-4aa8-942a-4fbf87dd1fbc +2024-09-11 09:04:39.493686 2024-09-11 09:04:39.493691 mef 4406 R rec 7ffbecc4-1222-46dd-8b34-2d953dcb619c +2024-09-11 09:04:39.554144 2024-09-11 09:04:39.554149 mef 4407 R rec 4191a33d-56fa-46a2-9022-aa34d9347ab5 +2024-09-11 09:04:39.611061 2024-09-11 09:04:39.611066 mef 4408 R rec 1dc2ea1f-ee83-4cae-9c02-bb3a7e080ea4 +2024-09-11 09:04:39.669761 2024-09-11 09:04:39.669766 mef 4409 R rec e39c1cc8-41e5-45c8-92f3-b37fad8e88b9 +2024-09-11 09:04:39.733284 2024-09-11 09:04:39.733289 mef 4410 R rec 3acde31a-dacf-4ae8-adfd-463ad93fdd4f +2024-09-11 09:04:39.789746 2024-09-11 09:04:39.789753 mef 4411 R rec c632f800-2971-41f2-8f57-ffff397f02b1 +2024-09-11 09:04:39.850029 2024-09-11 09:04:39.850034 mef 4412 R rec ef3c2fa6-4a8d-4367-88dc-3e4afb43a080 +2024-09-11 09:04:39.907902 2024-09-11 09:04:39.907908 mef 4413 R rec 7dcdd812-0c5c-408b-9410-258ecc3d994b +2024-09-11 09:04:39.974088 2024-09-11 09:04:39.974092 mef 4414 R rec 5ed65b66-c542-48c1-8ce2-45229dc45344 +2024-09-11 09:04:40.03658 2024-09-11 09:04:40.036586 mef 4415 R rec c2c3c644-697b-4912-9438-34ce41005332 +2024-09-11 09:04:40.102528 2024-09-11 09:04:40.102533 mef 4416 R rec bd3ed6c7-463d-4501-9185-0882223685ca +2024-09-11 09:04:40.163852 2024-09-11 09:04:40.163857 mef 4417 R rec 91110760-bb93-43ef-ba01-bb2c8c481ccb +2024-09-11 09:04:40.220021 2024-09-11 09:04:40.220027 mef 4418 R rec e3d6d59e-d9cf-4d11-b8f7-40f2b8126369 +2024-09-11 09:04:40.279201 2024-09-11 09:04:40.279206 mef 4419 R rec c73d7292-c01e-43ae-aad1-b4c8d49e86bc +2024-09-11 09:04:40.336737 2024-09-11 09:04:40.336741 mef 4420 R rec 08af03f6-9424-4fd5-92f4-0635be9ddd9d +2024-09-11 09:04:40.39887 2024-09-11 09:04:40.398875 mef 4421 R rec 61898efe-9b13-43f6-b11e-d2d61f9a8376 +2024-09-11 09:04:40.47386 2024-09-11 09:04:40.473864 mef 4422 R rec f5c3062e-451e-4147-9117-7bb8babd1d8e +2024-09-11 09:04:40.542529 2024-09-11 09:04:40.542535 mef 4423 R rec 161299f1-58b5-42ad-965e-af178987123b +2024-09-11 09:04:40.607965 2024-09-11 09:04:40.607971 mef 4424 R rec 32afe02b-293f-41e1-9f25-0696e01505a9 +2024-09-11 09:04:40.732856 2024-09-11 09:04:40.73286 mef 4425 R rec d1e4e141-9952-4f0e-b0ce-bce483f283d9 +2024-09-11 09:04:40.79066 2024-09-11 09:04:40.790665 mef 4426 R rec b469e8cf-4ccb-44db-9f63-8487052a4098 +2024-09-11 09:04:40.845301 2024-09-11 09:04:40.845305 mef 4427 R rec 02a8d236-3bc0-4766-93e0-701f426d54d8 +2024-09-11 09:04:40.902555 2024-09-11 09:04:40.90256 mef 4428 R rec 818f5473-1712-432a-a17b-86de03bbce0d +2024-09-11 09:04:40.967948 2024-09-11 09:04:40.967953 mef 4429 R rec 9bd82b71-6b74-4684-bcef-bd7cfcc49f11 +2024-09-11 09:04:41.037347 2024-09-11 09:04:41.037352 mef 4430 R rec 75e45b9d-54de-49c8-82d9-e079a07d9182 +2024-09-11 09:04:41.094889 2024-09-11 09:04:41.094894 mef 4431 R rec 3ae95c29-f29f-4d2c-81fe-7353c43fa565 +2024-09-11 09:04:41.162897 2024-09-11 09:04:41.162902 mef 4432 R rec 647dc6f5-fcea-42f8-b961-6abc5ae78593 +2024-09-11 09:04:41.237184 2024-09-11 09:04:41.237189 mef 4433 R rec e3c541c4-9c26-4b13-a571-1ca8b55b5270 +2024-09-11 09:04:41.29494 2024-09-11 09:04:41.294945 mef 4434 R rec 53fb82ac-9bf4-4fc8-95aa-d11954b69d7d +2024-09-11 09:04:41.35167 2024-09-11 09:04:41.351674 mef 4435 R rec 984b651c-f1d9-4bfc-aa44-d46ad478be8b +2024-09-11 09:04:41.428339 2024-09-11 09:04:41.428344 mef 4436 R rec 8e53c423-728c-4564-aea0-e5d46952ae7b +2024-09-11 09:04:41.490208 2024-09-11 09:04:41.490213 mef 4437 R rec 558dfcff-0f7d-4741-8d77-4fc1ab593ff6 +2024-09-11 09:04:41.549778 2024-09-11 09:04:41.549783 mef 4438 R rec 926a89cd-b432-45b8-9352-5af68b82a91a +2024-09-11 09:04:41.6084 2024-09-11 09:04:41.608405 mef 4439 R rec c766060e-f282-4676-a1f0-3a7cdff534cb +2024-09-11 09:04:41.664506 2024-09-11 09:04:41.664511 mef 4440 R rec b31c5c65-f487-4f1f-886e-b9f8181da5e0 +2024-09-11 09:04:41.725633 2024-09-11 09:04:41.725638 mef 4441 R rec 63f4fe16-e0d3-4000-b6df-dae27d247f71 +2024-09-11 09:04:41.791002 2024-09-11 09:04:41.791007 mef 4442 R rec 51289f64-df4d-4947-b5f4-077a2704e1df +2024-09-11 09:04:42.078206 2024-09-11 09:04:42.078211 mef 4443 R rec 2c09d8cb-149b-4d24-8c8d-86b3a77682a4 +2024-09-11 09:04:42.142722 2024-09-11 09:04:42.142727 mef 4444 R rec 53adb9c1-74fb-4662-8959-5d3d06d34470 +2024-09-11 09:04:42.208725 2024-09-11 09:04:42.208731 mef 4445 R rec 0ded6946-20dc-4304-a00b-759f0a01aa0e +2024-09-11 09:04:42.283856 2024-09-11 09:04:42.283861 mef 4446 R rec e095e44a-3fa2-44dc-a7e2-f09b38da4600 +2024-09-11 09:04:42.364287 2024-09-11 09:04:42.364293 mef 4447 R rec 0f4e7fa1-8ca1-4766-b994-2b2d7ecada4f +2024-09-11 09:04:42.419478 2024-09-11 09:04:42.419484 mef 4448 R rec 11323871-0e1e-44d7-b934-40398834c2ee +2024-09-11 09:04:42.485379 2024-09-11 09:04:42.485386 mef 4449 R rec c4b6227c-157e-4237-ba1c-7cad464580dc +2024-09-11 09:04:42.563224 2024-09-11 09:04:42.56323 mef 4450 R rec dd4c9f9d-9583-4db0-9d0f-68f70584e55f +2024-09-11 09:04:42.628879 2024-09-11 09:04:42.628884 mef 4451 R rec b1dfaa41-8015-4860-903d-ed2a3ad22272 +2024-09-11 09:04:42.684241 2024-09-11 09:04:42.684246 mef 4452 R rec 73ff5052-b219-43fa-b630-2c313ed02abe +2024-09-11 09:04:42.744789 2024-09-11 09:04:42.744795 mef 4453 R rec 02065ae3-bbfd-4486-b866-f68e66654dfa +2024-09-11 09:04:42.800341 2024-09-11 09:04:42.800347 mef 4454 R rec cdbab83b-b40d-446f-a70b-1ad471d76a67 +2024-09-11 09:04:42.860269 2024-09-11 09:04:42.860274 mef 4455 R rec 31945058-c732-457c-b97c-6475d219ed8e +2024-09-11 09:04:42.916701 2024-09-11 09:04:42.916706 mef 4456 R rec e15f80be-186a-4902-8c4e-2437cfddce56 +2024-09-11 09:04:42.974942 2024-09-11 09:04:42.974948 mef 4457 R rec 175d6647-1f8d-431e-9c66-b5e21bf9e76d +2024-09-11 09:04:43.033602 2024-09-11 09:04:43.033607 mef 4458 R rec 29ab4a76-e7e2-4106-a315-2bb5420fd960 +2024-09-11 09:04:43.090666 2024-09-11 09:04:43.09067 mef 4459 R rec 84c50588-b610-4bc4-969e-8c4c6dd3bb30 +2024-09-11 09:04:43.152605 2024-09-11 09:04:43.152611 mef 4460 R rec 74368e93-1edd-4ccc-9531-f28ef4ecb6d9 +2024-09-11 09:04:43.214858 2024-09-11 09:04:43.214864 mef 4461 R rec d6fe0d91-5efa-4b93-9bf0-374393531476 +2024-09-11 09:04:43.292051 2024-09-11 09:04:43.292055 mef 4462 R rec a986ed39-30cf-4682-8b45-274419de08b4 +2024-09-11 09:04:43.353718 2024-09-11 09:04:43.353724 mef 4463 R rec 63ed96d5-2e4f-4e70-9273-f8fe7cd2478f +2024-09-11 09:04:43.491795 2024-09-11 09:04:43.491799 mef 4464 R rec 83f498d6-1da1-4f52-865c-66f6fa6804bb +2024-09-11 09:04:43.62266 2024-09-11 09:04:43.622664 mef 4465 R rec 301a6918-1635-4209-baae-42b3db52bf4d +2024-09-11 09:04:43.682066 2024-09-11 09:04:43.682071 mef 4466 R rec 8bd8d113-9730-449a-b7d5-046175b90fd1 +2024-09-11 09:04:43.744146 2024-09-11 09:04:43.744151 mef 4467 R rec 7886e923-a626-4fae-a610-569c1002a8f5 +2024-09-11 09:04:43.80541 2024-09-11 09:04:43.805414 mef 4468 R rec 727f7d5a-3bec-4df5-a171-33d3f9d5c5e1 +2024-09-11 09:04:43.867519 2024-09-11 09:04:43.867524 mef 4469 R rec 4d145a23-b6ad-4d07-ad45-ca379b1b1fd6 +2024-09-11 09:04:43.93478 2024-09-11 09:04:43.934785 mef 4470 R rec 63070ec8-0d15-4b0f-a2ab-a6268db516ee +2024-09-11 09:04:43.98803 2024-09-11 09:04:43.988035 mef 4471 R rec 0563f837-c411-4f19-8773-c3ad661d1e3f +2024-09-11 09:04:44.043549 2024-09-11 09:04:44.043554 mef 4472 R rec 2604a8f7-2315-41ac-b645-c29c20885bd6 +2024-09-11 09:04:44.102201 2024-09-11 09:04:44.102205 mef 4473 R rec 8cc4e674-287b-44ec-9cb1-6cc1a3955fa0 +2024-09-11 09:04:44.156636 2024-09-11 09:04:44.156641 mef 4474 R rec 3b5ab7a1-bd73-4d34-b133-f9ba21a0695d +2024-09-11 09:04:44.214711 2024-09-11 09:04:44.214715 mef 4475 R rec 10f1cf02-cdf9-41c1-a606-4a4cfab5c257 +2024-09-11 09:04:44.280057 2024-09-11 09:04:44.280062 mef 4476 R rec b5057672-e77f-4b0b-9338-76e4c671cd64 +2024-09-11 09:04:44.334926 2024-09-11 09:04:44.334932 mef 4477 R rec 5c0e9f9c-9bf1-4d4b-ad13-668d280d82b1 +2024-09-11 09:04:44.398613 2024-09-11 09:04:44.39862 mef 4478 R rec b0854b59-a33e-44a9-90ba-ee11853c5a79 +2024-09-11 09:04:44.460321 2024-09-11 09:04:44.460327 mef 4479 R rec 5f0d75b4-d175-4e45-b115-040d97dfc88f +2024-09-11 09:04:44.525974 2024-09-11 09:04:44.52598 mef 4480 R rec b2108f12-1974-4dd4-9127-5e4f96875a2d +2024-09-11 09:04:44.580934 2024-09-11 09:04:44.580939 mef 4481 R rec 25f9bbb1-9ab7-47e6-ba81-113fdc0139af +2024-09-11 09:04:44.637219 2024-09-11 09:04:44.637225 mef 4482 R rec 04fa6fb0-9152-426f-ae47-d94f1af7da40 +2024-09-11 09:04:44.691004 2024-09-11 09:04:44.691008 mef 4483 R rec 4752b610-4ad3-429c-930b-ce99c024eae1 +2024-09-11 09:04:44.74457 2024-09-11 09:04:44.744575 mef 4484 R rec b32c9bf0-4887-4c45-9515-2e7735a9b04a +2024-09-11 09:04:44.797616 2024-09-11 09:04:44.797622 mef 4485 R rec e4006de3-21bf-45e2-a011-7ab70499b3d9 +2024-09-11 09:04:44.912263 2024-09-11 09:04:44.912267 mef 4486 R rec f6c47093-9b2c-4633-b1b1-23ce1adad0e5 +2024-09-11 09:04:44.965061 2024-09-11 09:04:44.965066 mef 4487 R rec 85a660ff-2381-4fea-a314-3827d3f4d92f +2024-09-11 09:04:45.024772 2024-09-11 09:04:45.024777 mef 4488 R rec 37f639b7-943e-4a4a-86f8-60973f28f9b2 +2024-09-11 09:04:45.083721 2024-09-11 09:04:45.083725 mef 4489 R rec f1fba825-ee2d-43e7-a2c7-082a6f5e8f89 +2024-09-11 09:04:45.202439 2024-09-11 09:04:45.202445 mef 4490 R rec 773cc555-41e1-40c2-b358-b43b1a448860 +2024-09-11 09:04:45.265759 2024-09-11 09:04:45.265764 mef 4491 R rec 72aaaf0a-9aeb-4af2-9a3a-299124a84b52 +2024-09-11 09:04:45.327898 2024-09-11 09:04:45.327902 mef 4492 R rec e8b34ca6-a058-417b-bf38-d8f63a08c789 +2024-09-11 09:04:45.383414 2024-09-11 09:04:45.383419 mef 4493 R rec a0ee9929-3605-42d5-aecf-e7197569eb01 +2024-09-11 09:04:45.440433 2024-09-11 09:04:45.440437 mef 4494 R rec 677d4ca9-1910-4a12-ac36-4e8948c18869 +2024-09-11 09:04:45.493105 2024-09-11 09:04:45.493111 mef 4495 R rec 1ca16757-7459-4d8f-9378-22188fa1b500 +2024-09-11 09:04:45.614813 2024-09-11 09:04:45.614817 mef 4496 R rec 51230e95-d908-4f59-b7d1-1c99c1673359 +2024-09-11 09:04:45.671011 2024-09-11 09:04:45.671016 mef 4497 R rec 12f939df-543a-40b0-814a-60034efa33c6 +2024-09-11 09:04:45.78213 2024-09-11 09:04:45.782135 mef 4498 R rec a2b3fd2e-a7b5-4da6-b687-9bc32ebc4526 +2024-09-11 09:04:45.840923 2024-09-11 09:04:45.840929 mef 4499 R rec 79452a14-429c-4c78-ada5-1df35fdcab4f +2024-09-11 09:04:45.900113 2024-09-11 09:04:45.900119 mef 4500 R rec 53c61c5e-5b00-4785-94f5-31735beb9f48 +2024-09-11 09:04:45.95249 2024-09-11 09:04:45.952495 mef 4501 R rec dad45ca3-c8da-4fb6-9f79-eb7aea16c1cb +2024-09-11 09:04:46.008534 2024-09-11 09:04:46.00854 mef 4502 R rec 3a669c63-4554-41c2-8340-4d43c7c4cc2e +2024-09-11 09:04:46.062778 2024-09-11 09:04:46.062782 mef 4503 R rec 21f12b1f-05c7-4424-b945-7bf6a431abb7 +2024-09-11 09:04:46.12325 2024-09-11 09:04:46.123258 mef 4504 R rec 1e6d7d36-5edf-4cfe-ac43-c178d70be9e7 +2024-09-11 09:04:46.181315 2024-09-11 09:04:46.181321 mef 4505 R rec c676f2cf-69ac-4344-ab90-4d567d4fe0e1 +2024-09-11 09:04:46.270213 2024-09-11 09:04:46.270218 mef 4506 R rec d1cf1925-35f7-4663-8f52-57d6ac17eefb +2024-09-11 09:04:46.320056 2024-09-11 09:04:46.320063 mef 4507 R rec 027e23fd-3db1-4c48-87d1-7448a1c034bf +2024-09-11 09:04:46.372569 2024-09-11 09:04:46.372574 mef 4508 R rec eccb2e99-2045-446a-857f-336ebfb18858 +2024-09-11 09:04:46.426592 2024-09-11 09:04:46.426597 mef 4509 R rec a459e2fd-657d-4076-bcfd-185095c187fc +2024-09-11 09:04:46.550243 2024-09-11 09:04:46.550247 mef 4510 R rec bb58d962-c063-40ae-9d04-044ad593a533 +2024-09-11 09:04:46.609571 2024-09-11 09:04:46.609576 mef 4511 R rec b0a30e91-8fa6-4964-b807-243d3d5deff0 +2024-09-11 09:04:46.664049 2024-09-11 09:04:46.664054 mef 4512 R rec 9eb7a426-452b-47e2-adaf-067e71987f24 +2024-09-11 09:04:46.723451 2024-09-11 09:04:46.723456 mef 4513 R rec e4032b3e-628b-40fd-b2ff-dd9bed42192d +2024-09-11 09:04:46.781733 2024-09-11 09:04:46.781738 mef 4514 R rec 94962975-4fbb-49a7-83ea-852fe36572d1 +2024-09-11 09:04:46.840542 2024-09-11 09:04:46.840547 mef 4515 R rec 03a82c93-133e-44cb-ad13-bc2024548888 +2024-09-11 09:04:46.904612 2024-09-11 09:04:46.904618 mef 4516 R rec 77393528-7308-4918-9110-203f0d7561e6 +2024-09-11 09:04:46.971529 2024-09-11 09:04:46.971533 mef 4517 R rec 661e9990-8fb6-4de9-bf50-0da07bbb3e13 +2024-09-11 09:04:47.039334 2024-09-11 09:04:47.039339 mef 4518 R rec de864cd7-f5ff-4ef2-9242-0531a990de48 +2024-09-11 09:04:47.171637 2024-09-11 09:04:47.171641 mef 4519 R rec 393d63a5-d332-46fb-9230-dceb2c2783c6 +2024-09-11 09:04:47.229958 2024-09-11 09:04:47.229963 mef 4520 R rec c0dbf953-1e8d-41c5-8142-1f3e8542f58e +2024-09-11 09:04:47.303544 2024-09-11 09:04:47.303548 mef 4521 R rec 927f0e16-e81d-40ea-9eed-6538e9e10862 +2024-09-11 09:04:47.364696 2024-09-11 09:04:47.364702 mef 4522 R rec 7e7ed8d7-684f-484c-be43-3874c549b6c5 +2024-09-11 09:04:47.432735 2024-09-11 09:04:47.432741 mef 4523 R rec a94fcef8-6f36-49b7-99ad-2f65dce36fe9 +2024-09-11 09:04:47.491292 2024-09-11 09:04:47.491297 mef 4524 R rec f8ff3af2-4f1d-4824-adad-692986d4358b +2024-09-11 09:04:47.549383 2024-09-11 09:04:47.549388 mef 4525 R rec a72a6b6a-e567-4b95-8fc5-1dc4c5919d11 +2024-09-11 09:04:47.611975 2024-09-11 09:04:47.61198 mef 4526 R rec 4d7a3ff3-bd34-4a32-813e-01d2a1504069 +2024-09-11 09:04:47.674629 2024-09-11 09:04:47.674634 mef 4527 R rec 8941e414-ae60-4c94-b9b2-80de2073fdda +2024-09-11 09:04:47.729688 2024-09-11 09:04:47.729693 mef 4528 R rec 0671f480-2ba8-42fe-a445-6ae2e336eb72 +2024-09-11 09:04:47.78704 2024-09-11 09:04:47.787047 mef 4529 R rec 4dcd4a5f-ea61-4ff5-a8e7-b98ea2d0d850 +2024-09-11 09:04:47.844606 2024-09-11 09:04:47.844611 mef 4530 R rec 79eaa0f4-b86b-4195-870a-d0edde2e98c3 +2024-09-11 09:04:47.911077 2024-09-11 09:04:47.911082 mef 4531 R rec eaac6c9c-679c-48ae-93e8-3c48c37042bb +2024-09-11 09:04:47.975922 2024-09-11 09:04:47.975928 mef 4532 R rec 51f89cb3-8f6c-460b-99b1-053235af7178 +2024-09-11 09:04:48.053796 2024-09-11 09:04:48.053803 mef 4533 R rec f6bcd24a-4cb8-432c-9a99-bbe8f5667e5a +2024-09-11 09:04:48.18174 2024-09-11 09:04:48.181745 mef 4534 R rec ffa7f4e5-bd97-4262-9876-bb05725c4db9 +2024-09-11 09:04:48.240286 2024-09-11 09:04:48.24029 mef 4535 R rec 76483574-7371-4fa8-8aad-381ed32a2bb7 +2024-09-11 09:04:48.363323 2024-09-11 09:04:48.363328 mef 4536 R rec fdc15824-eade-4214-83d8-68c832810d89 +2024-09-11 09:04:48.423912 2024-09-11 09:04:48.423917 mef 4537 R rec 7453422f-fe33-48d4-a958-2a1a6c2f7919 +2024-09-11 09:04:48.490131 2024-09-11 09:04:48.490135 mef 4538 R rec 02cb8556-1647-4428-8e6b-4d9a68dc4dfd +2024-09-11 09:04:48.550396 2024-09-11 09:04:48.550401 mef 4539 R rec 7b44c708-2a48-46d6-a9e4-9980f7628eec +2024-09-11 09:04:48.614878 2024-09-11 09:04:48.614882 mef 4540 R rec 0d79c247-4081-41f5-af9c-c949115718fc +2024-09-11 09:04:48.683351 2024-09-11 09:04:48.683355 mef 4541 R rec 7189695f-aac5-46dd-a342-51b43c4c39b7 +2024-09-11 09:04:48.744572 2024-09-11 09:04:48.744578 mef 4542 R rec 9225f369-feee-42d7-bd39-e0400e950d36 +2024-09-11 09:04:48.806997 2024-09-11 09:04:48.807002 mef 4543 R rec 48fd05fe-e7a3-4c65-bbc4-ada7ba8bd780 +2024-09-11 09:04:48.8661 2024-09-11 09:04:48.866106 mef 4544 R rec 1c70bfab-448c-4eb8-972c-30fafce89543 +2024-09-11 09:04:48.923228 2024-09-11 09:04:48.923234 mef 4545 R rec c90ccdfc-48e2-4969-96ea-1b01a4d53d1a +2024-09-11 09:04:48.982162 2024-09-11 09:04:48.982167 mef 4546 R rec c7dd52ed-86c4-45bb-928d-44ae9be363e0 +2024-09-11 09:04:49.042269 2024-09-11 09:04:49.042274 mef 4547 R rec d59d2bca-dd25-4914-9f17-97cae2670c47 +2024-09-11 09:04:49.103825 2024-09-11 09:04:49.103829 mef 4548 R rec 67a0a556-2b2a-4007-9d40-2e2eb2406557 +2024-09-11 09:04:49.159861 2024-09-11 09:04:49.159865 mef 4549 R rec f4c97716-83a3-4c74-b34a-a919ceddd68f +2024-09-11 09:04:49.219371 2024-09-11 09:04:49.219376 mef 4550 R rec a37327db-5190-4322-9deb-4a297709f2cb +2024-09-11 09:04:49.300553 2024-09-11 09:04:49.300559 mef 4551 R rec 40887e42-e38e-4c59-91b6-35d1573a5491 +2024-09-11 09:04:49.377448 2024-09-11 09:04:49.377453 mef 4552 R rec bb617db8-d83b-41a8-8496-74bfe8a8fc04 +2024-09-11 09:04:49.436836 2024-09-11 09:04:49.43684 mef 4553 R rec 0184a2a2-76c8-478b-8ec5-d2a34a99d0c5 +2024-09-11 09:04:49.508536 2024-09-11 09:04:49.508541 mef 4554 R rec eb10a356-f40e-4f05-aa90-c7588f344fd4 +2024-09-11 09:04:49.634017 2024-09-11 09:04:49.634022 mef 4555 R rec cdeccc2f-ffa8-4980-ad4b-f203c75aadaf +2024-09-11 09:04:49.760806 2024-09-11 09:04:49.760811 mef 4556 R rec 745f16c0-ce94-46aa-92f8-1d01c7c02ae6 +2024-09-11 09:04:49.830811 2024-09-11 09:04:49.830817 mef 4557 R rec d0189d04-e1ad-4a56-ae17-5ee2957276e6 +2024-09-11 09:04:49.895351 2024-09-11 09:04:49.895355 mef 4558 R rec be0f1e3a-b924-4505-815c-857609ef56cd +2024-09-11 09:04:49.96375 2024-09-11 09:04:49.963756 mef 4559 R rec 0fb2f4bb-ed29-4289-8e06-eadef44cb8a9 +2024-09-11 09:04:50.02233 2024-09-11 09:04:50.022336 mef 4560 R rec 90b8db7c-b0fd-438f-8d11-afd372d435a9 +2024-09-11 09:04:50.081742 2024-09-11 09:04:50.08175 mef 4561 R rec 790bdb15-c99f-476f-a46d-c64c5a42aec6 +2024-09-11 09:04:50.140957 2024-09-11 09:04:50.140961 mef 4562 R rec 27d4da24-8c43-46c3-aa56-94856c5c89da +2024-09-11 09:04:50.19988 2024-09-11 09:04:50.199886 mef 4563 R rec e1eb8cbc-cfe7-4127-b131-6433b53f5af5 +2024-09-11 09:04:50.258025 2024-09-11 09:04:50.25803 mef 4564 R rec 673bc958-d137-43a0-a1d5-d8a78979edf9 +2024-09-11 09:04:50.317858 2024-09-11 09:04:50.317864 mef 4565 R rec d35b0b09-3712-4f00-98f0-3f6f7b5f985c +2024-09-11 09:04:50.37881 2024-09-11 09:04:50.378814 mef 4566 R rec af446edb-a6c7-444a-9a3b-2b784b65d3ae +2024-09-11 09:04:50.581552 2024-09-11 09:04:50.581556 mef 4567 R rec be49dc00-7c24-4e33-b373-e4c94ecf6ae0 +2024-09-11 09:04:50.639328 2024-09-11 09:04:50.639333 mef 4568 R rec b9df34d3-13b4-4c64-aa22-f94c0e21f505 +2024-09-11 09:04:50.709888 2024-09-11 09:04:50.709893 mef 4569 R rec 1867a603-32c2-4577-ac0f-7267dc3c4fe4 +2024-09-11 09:04:50.769327 2024-09-11 09:04:50.769332 mef 4570 R rec 100ecfbe-ef64-4dc8-a7c7-5cde18dc190b +2024-09-11 09:04:50.827989 2024-09-11 09:04:50.827993 mef 4571 R rec 8e19ea81-0369-4493-87d1-565fcf6f4f8b +2024-09-11 09:04:50.89661 2024-09-11 09:04:50.896615 mef 4572 R rec 278af542-849a-424d-a7a0-fc639180e620 +2024-09-11 09:04:51.024111 2024-09-11 09:04:51.024116 mef 4573 R rec 02d01e9c-939a-4801-8bff-6b056e8a25e0 +2024-09-11 09:04:51.08917 2024-09-11 09:04:51.089174 mef 4574 R rec 8dd02dc7-ff74-4ece-ad65-8965da8b0fa9 +2024-09-11 09:04:51.230932 2024-09-11 09:04:51.230937 mef 4575 R rec 37f720b3-25e1-45d0-a415-5f85c06a17c6 +2024-09-11 09:04:51.293038 2024-09-11 09:04:51.293043 mef 4576 R rec 3eed383a-1b2d-44cd-b353-ab9008cfb327 +2024-09-11 09:04:51.361547 2024-09-11 09:04:51.361551 mef 4577 R rec 9fc69a53-ce19-4e84-8b88-2ce90db9f005 +2024-09-11 09:04:51.42612 2024-09-11 09:04:51.426126 mef 4578 R rec 0ce9a898-7462-498a-811e-013b6260eefa +2024-09-11 09:04:51.502841 2024-09-11 09:04:51.502852 mef 4579 R rec ffcb020e-92cd-48a0-b3ee-5f6462fb2746 +2024-09-11 09:04:51.649318 2024-09-11 09:04:51.649324 mef 4580 R rec 19e1f991-1622-47a1-bc85-5250a4c8c8ee +2024-09-11 09:04:51.779523 2024-09-11 09:04:51.779528 mef 4581 R rec 654fe91c-5fff-48af-8c2a-95f6a693dafd +2024-09-11 09:04:51.845318 2024-09-11 09:04:51.845323 mef 4582 R rec 2446a208-5461-4a33-868a-4be979b0040c +2024-09-11 09:04:51.91491 2024-09-11 09:04:51.914915 mef 4583 R rec bc25f897-af7c-45cd-8c11-ae69a8a1c9bd +2024-09-11 09:04:51.980278 2024-09-11 09:04:51.980284 mef 4584 R rec 596986fe-14b9-4bfb-99cd-3c1e0ef08646 +2024-09-11 09:04:52.05865 2024-09-11 09:04:52.058655 mef 4585 R rec 85fcc973-d0b1-4bb3-a60e-9672a76eef12 +2024-09-11 09:04:52.124951 2024-09-11 09:04:52.124955 mef 4586 R rec f4c2dd1f-a43e-4a56-acde-92e5ed338ac6 +2024-09-11 09:04:52.19454 2024-09-11 09:04:52.194545 mef 4587 R rec f5f06392-3b5b-420a-9eaa-04f67ab0f09a +2024-09-11 09:04:52.250581 2024-09-11 09:04:52.250587 mef 4588 R rec eb1c083e-06e3-4fa8-bd10-aae230a13cc4 +2024-09-11 09:04:52.312132 2024-09-11 09:04:52.312137 mef 4589 R rec 8e9fd6e4-31b0-4af9-bbf6-a86f16fb2170 +2024-09-11 09:04:52.387462 2024-09-11 09:04:52.387468 mef 4590 R rec 6957e4cf-3854-4dac-886c-1132cfca8e2a +2024-09-11 09:04:52.460699 2024-09-11 09:04:52.460704 mef 4591 R rec 3ce8e1e0-054c-4bbc-9519-87a287055388 +2024-09-11 09:04:52.625933 2024-09-11 09:04:52.625938 mef 4592 R rec 704d9b63-bf47-4f60-be33-d62b1edd711e +2024-09-11 09:04:52.844057 2024-09-11 09:04:52.844062 mef 4593 R rec db5df99b-5713-461d-876e-e24a5e13bc10 +2024-09-11 09:04:52.910667 2024-09-11 09:04:52.910671 mef 4594 R rec b54239c2-ad8b-4461-8e85-1aa1941ff379 +2024-09-11 09:04:52.971579 2024-09-11 09:04:52.971584 mef 4595 R rec 81acbec7-1ae3-49b0-bca5-af1300f1d360 +2024-09-11 09:04:53.033232 2024-09-11 09:04:53.033237 mef 4596 R rec 85659109-c597-4fd2-923d-cf94aeced5bb +2024-09-11 09:04:53.098589 2024-09-11 09:04:53.098595 mef 4597 R rec 42fda289-d32b-49b1-a593-0c0f80dcfa99 +2024-09-11 09:04:53.156768 2024-09-11 09:04:53.156773 mef 4598 R rec 79114cb8-9ddc-4a8e-b758-a68938a1692b +2024-09-11 09:04:53.217893 2024-09-11 09:04:53.217898 mef 4599 R rec 7bfa8247-e22d-4a55-9fb7-2d4f4af8d5cf +2024-09-11 09:04:53.27916 2024-09-11 09:04:53.279165 mef 4600 R rec 7d9c03c2-2530-4b7a-a7d7-0a66cd9a7f32 +2024-09-11 09:04:53.335333 2024-09-11 09:04:53.335339 mef 4601 R rec 704bba99-96f1-4962-845c-a108158d26b5 +2024-09-11 09:04:53.40899 2024-09-11 09:04:53.408995 mef 4602 R rec 1f7791eb-6fbb-4fd7-a31f-f9d299d31454 +2024-09-11 09:04:53.47808 2024-09-11 09:04:53.478084 mef 4603 R rec 517ac809-f4ad-416d-8bac-55e56a37c7d6 +2024-09-11 09:04:53.540805 2024-09-11 09:04:53.54081 mef 4604 R rec 5e9866b1-4fe2-4130-b700-a26a6b75075c +2024-09-11 09:04:53.609183 2024-09-11 09:04:53.609188 mef 4605 R rec 30c1511f-a088-4ed9-a920-da4b142be7c5 +2024-09-11 09:04:53.671828 2024-09-11 09:04:53.671833 mef 4606 R rec 083f9667-9fba-47f2-9a37-ce20ad836552 +2024-09-11 09:04:53.744306 2024-09-11 09:04:53.744311 mef 4607 R rec 88df8cc2-a325-4fbf-8e43-0ddb76c8f96b +2024-09-11 09:04:53.804972 2024-09-11 09:04:53.804977 mef 4608 R rec 3b9fb01e-e1ce-40b2-a205-6b7d2db399db +2024-09-11 09:04:53.882609 2024-09-11 09:04:53.882614 mef 4609 R rec 3ec4fbc9-a3b3-4175-b212-ada1412b0030 +2024-09-11 09:04:53.942878 2024-09-11 09:04:53.942883 mef 4610 R rec 6b60d508-a416-413d-92be-6c80358d64ce +2024-09-11 09:04:54.009036 2024-09-11 09:04:54.009041 mef 4611 R rec 22a71cbb-fa5b-4339-8afe-72a2ce3801e2 +2024-09-11 09:04:54.07945 2024-09-11 09:04:54.079456 mef 4612 R rec b8201c10-d1bd-40ce-8eea-b440176ce20f +2024-09-11 09:04:54.134936 2024-09-11 09:04:54.134941 mef 4613 R rec ecde553b-2586-4bee-aef1-6dfbbb419ea2 +2024-09-11 09:04:54.192637 2024-09-11 09:04:54.192642 mef 4614 R rec 6f1240b8-feb1-4fd3-9d2b-632eb8613e4a +2024-09-11 09:04:54.247727 2024-09-11 09:04:54.247733 mef 4615 R rec 0992d77b-2c44-4108-9deb-6043916cb26c +2024-09-11 09:04:54.372818 2024-09-11 09:04:54.372823 mef 4616 R rec 608b884a-476f-4e4a-a4a9-98f251616560 +2024-09-11 09:04:54.430335 2024-09-11 09:04:54.43034 mef 4617 R rec a74e6644-a73a-487f-8643-301196b14fff +2024-09-11 09:04:54.489223 2024-09-11 09:04:54.489228 mef 4618 R rec 7325c474-bd8f-42d8-aebc-517152709a97 +2024-09-11 09:04:54.562254 2024-09-11 09:04:54.562259 mef 4619 R rec b58778d1-386e-443a-af3c-8b98947ecd81 +2024-09-11 09:04:54.633593 2024-09-11 09:04:54.633599 mef 4620 R rec 8a4483c6-2a87-466a-8132-78c35bfa9a5f +2024-09-11 09:04:54.694154 2024-09-11 09:04:54.69416 mef 4621 R rec 926ca965-19ab-49b8-b8d8-ccf49a92cdcf +2024-09-11 09:04:54.750369 2024-09-11 09:04:54.750374 mef 4622 R rec 60c722be-0349-46fc-94fc-c3754d0dcbaf +2024-09-11 09:04:54.814007 2024-09-11 09:04:54.814013 mef 4623 R rec 4649bcda-a805-4be8-9c25-e31c0b7f4fc3 +2024-09-11 09:04:54.872941 2024-09-11 09:04:54.872945 mef 4624 R rec d4f93b1d-74cd-4f3e-93f2-c264fccafa6c +2024-09-11 09:04:54.929895 2024-09-11 09:04:54.9299 mef 4625 R rec 8ae3a47c-6a82-400f-ace1-19b5d5da4225 +2024-09-11 09:04:54.986895 2024-09-11 09:04:54.9869 mef 4626 R rec f36c83aa-6317-466a-8a69-ecd552590974 +2024-09-11 09:04:55.041179 2024-09-11 09:04:55.041183 mef 4627 R rec 23f9543d-0077-4472-bfb1-7870466dd168 +2024-09-11 09:04:55.099423 2024-09-11 09:04:55.099427 mef 4628 R rec 6c11c05f-5a78-4e94-8e9c-a520a8929c7f +2024-09-11 09:04:55.154064 2024-09-11 09:04:55.154069 mef 4629 R rec 701538b1-7520-499d-8739-a0b3eae7501b +2024-09-11 09:04:55.21022 2024-09-11 09:04:55.210224 mef 4630 R rec 9cc58a2a-94eb-4468-8aab-16799c687fdb +2024-09-11 09:04:55.277569 2024-09-11 09:04:55.277574 mef 4631 R rec 68f47c4f-77ba-4114-9336-0fc52a1c2553 +2024-09-11 09:04:55.345323 2024-09-11 09:04:55.345329 mef 4632 R rec d34cf22d-84f9-495b-8e74-2482a24ba980 +2024-09-11 09:04:55.411342 2024-09-11 09:04:55.411346 mef 4633 R rec aff745c8-1803-47b1-a42a-47eba35d4ca6 +2024-09-11 09:04:55.476258 2024-09-11 09:04:55.476263 mef 4634 R rec aa8fc3fb-f0ed-4ad7-8e9c-2576e193079d +2024-09-11 09:04:55.539624 2024-09-11 09:04:55.53963 mef 4635 R rec c58bd2b5-32c5-4d67-8ea8-c562b5aec9da +2024-09-11 09:04:55.598508 2024-09-11 09:04:55.598513 mef 4636 R rec 5e2a75c9-5f03-45f5-86ca-46b4610fba29 +2024-09-11 09:04:55.660634 2024-09-11 09:04:55.66064 mef 4637 R rec 21358871-c7a4-4c8c-b3bb-cf6a333aeb63 +2024-09-11 09:04:55.719145 2024-09-11 09:04:55.71915 mef 4638 R rec 81a5638e-f783-465c-a3a2-024c36741259 +2024-09-11 09:04:55.788454 2024-09-11 09:04:55.788458 mef 4639 R rec de1a481e-3b80-46bf-bc92-a777803e1c13 +2024-09-11 09:04:55.844184 2024-09-11 09:04:55.84419 mef 4640 R rec 40d8fd7e-00f1-4fa4-9989-dcb47543b67b +2024-09-11 09:04:55.90627 2024-09-11 09:04:55.906274 mef 4641 R rec a09e19d0-016a-4ca4-9d22-c7e04af89017 +2024-09-11 09:04:55.973952 2024-09-11 09:04:55.973957 mef 4642 R rec d9c64ba2-04d0-40f1-a724-7fce2669bdd0 +2024-09-11 09:04:56.031799 2024-09-11 09:04:56.031806 mef 4643 R rec 83fdf2bc-38d2-4baa-98ba-a5b7e426aaf8 +2024-09-11 09:04:56.129665 2024-09-11 09:04:56.129671 mef 4644 R rec 7f2dddd7-df91-454f-84a1-7696ecafc1f5 +2024-09-11 09:04:56.233455 2024-09-11 09:04:56.233462 mef 4645 R rec d9e226c0-fc26-4192-b741-270da38fed85 +2024-09-11 09:04:56.308064 2024-09-11 09:04:56.308069 mef 4646 R rec 566ac2c6-b8e5-47ca-979a-f462ce945803 +2024-09-11 09:04:56.376293 2024-09-11 09:04:56.376298 mef 4647 R rec 819be9dd-86ea-4b64-8b22-c9a0a6ee0430 +2024-09-11 09:04:56.451178 2024-09-11 09:04:56.451183 mef 4648 R rec e18f676c-6a87-4b94-9f24-66fb76718c6d +2024-09-11 09:04:56.509079 2024-09-11 09:04:56.509084 mef 4649 R rec 377eee14-16e2-4caf-a8a9-bd94002d9066 +2024-09-11 09:04:56.569776 2024-09-11 09:04:56.569782 mef 4650 R rec c441585b-75f9-43d5-a881-591743e7afe5 +2024-09-11 09:04:56.639984 2024-09-11 09:04:56.639989 mef 4651 R rec c65624e2-b777-4658-994c-6096e655c82d +2024-09-11 09:04:56.718531 2024-09-11 09:04:56.718535 mef 4652 R rec 476d8743-644b-4ba4-86fc-2c9e5e665e3c +2024-09-11 09:04:56.855167 2024-09-11 09:04:56.855171 mef 4653 R rec 9c3e3c1a-63c6-438d-8953-b2264a998c3b +2024-09-11 09:04:56.911515 2024-09-11 09:04:56.91152 mef 4654 R rec 40831c56-0761-4799-80b9-b9e79ac9ad41 +2024-09-11 09:04:56.980215 2024-09-11 09:04:56.980221 mef 4655 R rec 52293340-4964-4696-bd65-0c69b6314a93 +2024-09-11 09:04:57.110353 2024-09-11 09:04:57.110357 mef 4656 R rec 093899d3-8d7c-4303-98fe-b7413fedd4c1 +2024-09-11 09:04:57.167954 2024-09-11 09:04:57.167959 mef 4657 R rec fde637e6-505f-4f56-ad57-511becd669a6 +2024-09-11 09:04:57.225965 2024-09-11 09:04:57.22597 mef 4658 R rec 44f67d02-108d-4c38-bd5a-867c6565a317 +2024-09-11 09:04:57.292641 2024-09-11 09:04:57.292645 mef 4659 R rec c3fc56a0-4fdf-46d3-ae4a-7c4a9c626b01 +2024-09-11 09:04:57.366886 2024-09-11 09:04:57.366891 mef 4660 R rec e5eae51f-77dc-4c47-8f66-af47cd19e0f6 +2024-09-11 09:04:57.426306 2024-09-11 09:04:57.426311 mef 4661 R rec 5799dd26-84ac-4035-a5a0-2298c62df3cb +2024-09-11 09:04:57.483713 2024-09-11 09:04:57.483718 mef 4662 R rec 6fdf6b85-9821-490e-a40c-46f9959fbd9d +2024-09-11 09:04:57.540951 2024-09-11 09:04:57.54096 mef 4663 R rec 84f9eb03-cedd-4299-b3ff-1060af699394 +2024-09-11 09:04:57.599609 2024-09-11 09:04:57.599614 mef 4664 R rec d2226d90-a681-445d-abcb-741400b7b433 +2024-09-11 09:04:57.658575 2024-09-11 09:04:57.65858 mef 4665 R rec dfee2778-d436-4369-95bf-b2ec4a051f9c +2024-09-11 09:04:57.717982 2024-09-11 09:04:57.717987 mef 4666 R rec e30f6e46-3295-4613-9e00-8ed04ba8c4a4 +2024-09-11 09:04:57.783901 2024-09-11 09:04:57.783906 mef 4667 R rec d65ae881-9203-4fa6-ab1d-3dec22927976 +2024-09-11 09:04:57.914427 2024-09-11 09:04:57.914433 mef 4668 R rec 743bea31-6cd3-4429-90f8-7005b3410fa3 +2024-09-11 09:04:57.976333 2024-09-11 09:04:57.976339 mef 4669 R rec f724b5f6-3393-4369-be3c-e2a6f3919503 +2024-09-11 09:04:58.045135 2024-09-11 09:04:58.045139 mef 4670 R rec 052dbdfa-40ed-4dbb-8118-783c91aba8d1 +2024-09-11 09:04:58.107805 2024-09-11 09:04:58.10781 mef 4671 R rec d6856b02-ca4a-42d3-8890-4ac0ce929be9 +2024-09-11 09:04:58.175293 2024-09-11 09:04:58.175297 mef 4672 R rec ae75bcfa-b5c7-4901-abc2-cf052b367c6a +2024-09-11 09:04:58.232267 2024-09-11 09:04:58.232272 mef 4673 R rec ecd9dcdd-ecc2-4455-a95b-35e5901617d5 +2024-09-11 09:04:58.293369 2024-09-11 09:04:58.293374 mef 4674 R rec 6a1d5126-4eed-41de-85a8-9cb10af58410 +2024-09-11 09:04:58.349476 2024-09-11 09:04:58.349481 mef 4675 R rec 0c72c4bb-4b54-4de3-beac-be5279bc47c0 +2024-09-11 09:04:58.40748 2024-09-11 09:04:58.407487 mef 4676 R rec f7086852-252d-4400-b7c0-3f99e6de301a +2024-09-11 09:04:58.465509 2024-09-11 09:04:58.465514 mef 4677 R rec f5fe5f41-2513-47fd-b57e-38e358d171df +2024-09-11 09:04:58.527982 2024-09-11 09:04:58.527987 mef 4678 R rec 144704e6-275b-4b3d-9e71-758236c56689 +2024-09-11 09:04:58.607103 2024-09-11 09:04:58.607109 mef 4679 R rec 1888099a-cd84-4284-880a-228d969577eb +2024-09-11 09:04:58.667035 2024-09-11 09:04:58.66704 mef 4680 R rec 2677a10c-57b9-489f-97e5-6240c25c37f3 +2024-09-11 09:04:58.736768 2024-09-11 09:04:58.736773 mef 4681 R rec 0880160d-3cae-46bc-92a8-39cf2be6d416 +2024-09-11 09:04:58.79149 2024-09-11 09:04:58.791495 mef 4682 R rec 8d9054e0-98c3-47dd-a613-a21e708c4ae8 +2024-09-11 09:04:58.848769 2024-09-11 09:04:58.848774 mef 4683 R rec d4370a2c-0e31-4c1b-b9f9-314574e7e86c +2024-09-11 09:04:58.91206 2024-09-11 09:04:58.912065 mef 4684 R rec 164b00bc-59c5-42cd-8fc2-33f2a661c9ba +2024-09-11 09:04:58.969958 2024-09-11 09:04:58.969964 mef 4685 R rec 5cb8e177-b5c0-43d0-b4a9-6b1ca8de3af8 +2024-09-11 09:04:59.036656 2024-09-11 09:04:59.036663 mef 4686 R rec 7ea641b4-feda-43d0-ac0c-25b1d933e6ac +2024-09-11 09:04:59.096805 2024-09-11 09:04:59.09681 mef 4687 R rec e1b45df6-bf80-4616-becb-a3d543c0ed56 +2024-09-11 09:04:59.16371 2024-09-11 09:04:59.163714 mef 4688 R rec d052e815-5e8c-4c2d-b585-badfb0de1b3f +2024-09-11 09:04:59.221354 2024-09-11 09:04:59.221359 mef 4689 R rec ebc25f0a-76c0-405b-b5f9-20788e38c8a2 +2024-09-11 09:04:59.282067 2024-09-11 09:04:59.282072 mef 4690 R rec eadb0b4d-9910-4d88-972a-dbb0632a84ed +2024-09-11 09:04:59.343234 2024-09-11 09:04:59.343239 mef 4691 R rec 9e0d0a5f-ea07-4567-b725-2f2a8546274b +2024-09-11 09:04:59.482306 2024-09-11 09:04:59.482311 mef 4692 R rec 3905c372-2699-4798-812b-51dd1cb5d33e +2024-09-11 09:04:59.54294 2024-09-11 09:04:59.542945 mef 4693 R rec 610207bf-a9da-429a-bcc3-5fe43e51c18d +2024-09-11 09:04:59.602742 2024-09-11 09:04:59.602751 mef 4694 R rec 3752c094-9353-4560-a604-33256401d572 +2024-09-11 09:04:59.663162 2024-09-11 09:04:59.663167 mef 4695 R rec d76ce8b1-1be4-4878-bfa0-c58fecb9ef07 +2024-09-11 09:04:59.72409 2024-09-11 09:04:59.724096 mef 4696 R rec f31a7f3a-cc03-4c1f-ae0f-53f3c5d660fb +2024-09-11 09:04:59.776554 2024-09-11 09:04:59.77656 mef 4697 R rec fa8175b3-82c2-4f8b-b9e8-05825e371d71 +2024-09-11 09:04:59.988636 2024-09-11 09:04:59.988641 mef 4698 R rec 9309013d-9e57-455d-8b7d-d4b5bb1318dd +2024-09-11 09:05:00.047939 2024-09-11 09:05:00.047945 mef 4699 R rec 30aea541-9379-4787-8dda-67942c1917c4 +2024-09-11 09:05:00.113615 2024-09-11 09:05:00.113621 mef 4700 R rec 56ad7f7f-51f0-4f74-924d-7c00abb3b6b0 +2024-09-11 09:05:00.171616 2024-09-11 09:05:00.171623 mef 4701 R rec 0576b7e7-1678-49e0-b55f-1dd89429e7f4 +2024-09-11 09:05:00.231615 2024-09-11 09:05:00.231622 mef 4702 R rec a2333914-f36d-455b-bf59-8a7d3fb0b5fa +2024-09-11 09:05:00.2922 2024-09-11 09:05:00.292205 mef 4703 R rec b189eb44-f0da-48b3-b7dd-d14db5bb7257 +2024-09-11 09:05:00.352273 2024-09-11 09:05:00.352278 mef 4704 R rec 8c30d367-a445-4a9e-92e3-c68f61282d32 +2024-09-11 09:05:00.410831 2024-09-11 09:05:00.410835 mef 4705 R rec 22948430-7f8f-4836-af52-f3f618fbda4e +2024-09-11 09:05:00.483511 2024-09-11 09:05:00.483516 mef 4706 R rec 00efcb51-ad80-407d-82b8-29b30ca0b989 +2024-09-11 09:05:00.544331 2024-09-11 09:05:00.544336 mef 4707 R rec 305280ac-9795-4d08-9207-a16028867707 +2024-09-11 09:05:00.604629 2024-09-11 09:05:00.604635 mef 4708 R rec 02c850ef-a90f-4ee8-9346-250c5d04493a +2024-09-11 09:05:00.7316 2024-09-11 09:05:00.731605 mef 4709 R rec 294972f7-babc-494d-90e9-be898ff3bba9 +2024-09-11 09:05:00.794781 2024-09-11 09:05:00.794786 mef 4710 R rec 336c6515-e9b0-4119-947b-26c72bec5f82 +2024-09-11 09:05:00.851913 2024-09-11 09:05:00.851918 mef 4711 R rec 49fb7211-be81-4bdc-a283-33f97d7ff2bc +2024-09-11 09:05:00.920919 2024-09-11 09:05:00.920924 mef 4712 R rec 0a46a3b9-22f6-4131-b6f8-c91fe3c1d922 +2024-09-11 09:05:00.977568 2024-09-11 09:05:00.977573 mef 4713 R rec 317a0f61-6923-4ecf-94aa-552bdde4bd49 +2024-09-11 09:05:01.042129 2024-09-11 09:05:01.042134 mef 4714 R rec c012249e-f419-43d5-b2c0-0e80454477ca +2024-09-11 09:05:01.104074 2024-09-11 09:05:01.10408 mef 4715 R rec ed52844d-a3ff-4b38-a706-4c35293725b2 +2024-09-11 09:05:01.181965 2024-09-11 09:05:01.181971 mef 4716 R rec 465e81fc-6053-4432-9011-0732510f5854 +2024-09-11 09:05:01.32586 2024-09-11 09:05:01.325866 mef 4717 R rec 64f457ae-17a3-42fa-bf29-c5b23f287eb1 +2024-09-11 09:05:01.385645 2024-09-11 09:05:01.385649 mef 4718 R rec 717cbdc9-c98e-4f74-82a1-56f4f4dfcc92 +2024-09-11 09:05:01.440465 2024-09-11 09:05:01.44047 mef 4719 R rec 1478be81-6dee-4c66-939b-701fef1a0d5f +2024-09-11 09:05:01.493804 2024-09-11 09:05:01.493809 mef 4720 R rec a3290103-298b-4f76-b048-9e8a118d80c4 +2024-09-11 09:05:01.550852 2024-09-11 09:05:01.550857 mef 4721 R rec c85f0c9b-9d68-4cf1-8b08-06bcd807e458 +2024-09-11 09:05:01.611268 2024-09-11 09:05:01.611273 mef 4722 R rec 8358613d-8f06-4e54-971e-891b4695151a +2024-09-11 09:05:01.675799 2024-09-11 09:05:01.675805 mef 4723 R rec a9999fa9-d4d9-4d70-bc23-e8d3b5b85b12 +2024-09-11 09:05:01.742279 2024-09-11 09:05:01.742287 mef 4724 R rec e33da73c-ccae-405a-abb5-65073a756cd5 +2024-09-11 09:05:01.805321 2024-09-11 09:05:01.805327 mef 4725 R rec f05efb54-e9d9-427c-877f-98e719cdaf55 +2024-09-11 09:05:01.872121 2024-09-11 09:05:01.872126 mef 4726 R rec 0579b61d-823c-434c-a945-893a27d6d9da +2024-09-11 09:05:01.935455 2024-09-11 09:05:01.935461 mef 4727 R rec d8a43b18-4621-4df0-87e5-35e9e77fb020 +2024-09-11 09:05:01.989985 2024-09-11 09:05:01.98999 mef 4728 R rec 69d6a442-1a9d-4761-9593-4f362e2a147a +2024-09-11 09:05:02.054189 2024-09-11 09:05:02.054196 mef 4729 R rec 5df71fa2-5068-40b2-b6c9-c797de95bd06 +2024-09-11 09:05:02.113698 2024-09-11 09:05:02.113704 mef 4730 R rec 0e105e61-a616-4f90-ae7f-01bbe3ec4b86 +2024-09-11 09:05:02.171998 2024-09-11 09:05:02.172003 mef 4731 R rec 101e5d9d-3cd7-4383-aab8-ef0e497bc2ad +2024-09-11 09:05:02.237848 2024-09-11 09:05:02.237853 mef 4732 R rec 1ff3edb9-b0e5-4256-af97-48f652f0fefc +2024-09-11 09:05:02.294697 2024-09-11 09:05:02.294703 mef 4733 R rec 809ddaca-5fdf-44b2-a4ea-6c62e3f7188a +2024-09-11 09:05:02.357155 2024-09-11 09:05:02.357159 mef 4734 R rec 7deae252-9608-49ec-8432-7a73cb6e02f1 +2024-09-11 09:05:02.413964 2024-09-11 09:05:02.413968 mef 4735 R rec f9b1b311-27d6-4267-8b4c-c65723b03919 +2024-09-11 09:05:02.469602 2024-09-11 09:05:02.469607 mef 4736 R rec 9a35027c-2835-46da-8948-d1aa7ee6cc1b +2024-09-11 09:05:02.524845 2024-09-11 09:05:02.524849 mef 4737 R rec 19a9aa66-7a7f-4719-9d49-3bab3fd3af19 +2024-09-11 09:05:02.607545 2024-09-11 09:05:02.60755 mef 4738 R rec cbdb3f04-1371-429e-b2d7-f1139caeb999 +2024-09-11 09:05:02.671106 2024-09-11 09:05:02.67111 mef 4739 R rec 71598acc-8bba-4b21-9c6c-19b34086869a +2024-09-11 09:05:02.748829 2024-09-11 09:05:02.748835 mef 4740 R rec f47121dc-acd9-4aa5-ad41-1e6401341a36 +2024-09-11 09:05:02.810968 2024-09-11 09:05:02.810973 mef 4741 R rec 06df87df-4a5b-4610-8ab2-33d32feea5dd +2024-09-11 09:05:02.870631 2024-09-11 09:05:02.870636 mef 4742 R rec 138af864-8832-4526-8687-2768cbfed932 +2024-09-11 09:05:02.928869 2024-09-11 09:05:02.928875 mef 4743 R rec 856b42f1-e768-4362-9a79-7ecec5e36893 +2024-09-11 09:05:02.985452 2024-09-11 09:05:02.98546 mef 4744 R rec a1ce8740-14ca-495a-be04-c16aa0198c43 +2024-09-11 09:05:03.044888 2024-09-11 09:05:03.044892 mef 4745 R rec 45306ef1-ebca-4ed8-b867-09fc2fdc0d52 +2024-09-11 09:05:03.105582 2024-09-11 09:05:03.105588 mef 4746 R rec 0bb209f2-0aa9-4601-9cba-b1e9d83dd7ee +2024-09-11 09:05:03.172378 2024-09-11 09:05:03.172382 mef 4747 R rec 9e3fe5c2-ab67-4095-8893-ac8542d97890 +2024-09-11 09:05:03.229158 2024-09-11 09:05:03.229164 mef 4748 R rec 3585fd78-8213-4298-8da5-588119f00ac4 +2024-09-11 09:05:03.289706 2024-09-11 09:05:03.289711 mef 4749 R rec 46a3bc4d-3e6d-477e-a69f-41fa02deccde +2024-09-11 09:05:03.345715 2024-09-11 09:05:03.34572 mef 4750 R rec 8f34e88d-3c12-4ac3-b604-86cf8b0eef3f +2024-09-11 09:05:03.409525 2024-09-11 09:05:03.409531 mef 4751 R rec 71506285-e54a-4023-b961-a95a918660a4 +2024-09-11 09:05:03.467448 2024-09-11 09:05:03.467454 mef 4752 R rec f6bf3122-19b0-4304-8494-6743968b5f71 +2024-09-11 09:05:03.527248 2024-09-11 09:05:03.527254 mef 4753 R rec f53ec1a3-2cce-4a1d-ab5e-8cb5b729fdf4 +2024-09-11 09:05:03.588107 2024-09-11 09:05:03.588112 mef 4754 R rec b04d9805-146a-4337-91d3-55af41f4a4a8 +2024-09-11 09:05:03.648845 2024-09-11 09:05:03.648852 mef 4755 R rec 1e5cd00f-1f9d-49d9-8afd-3433b3220be6 +2024-09-11 09:05:03.711674 2024-09-11 09:05:03.711679 mef 4756 R rec 4e154664-02ab-419e-91bd-ab319cbfed2b +2024-09-11 09:05:03.785664 2024-09-11 09:05:03.785669 mef 4757 R rec 7d617380-5d02-4cd1-a769-6f4a954fa386 +2024-09-11 09:05:03.856775 2024-09-11 09:05:03.85678 mef 4758 R rec cc42d37f-75d3-40c0-987a-cfeb31dfbea3 +2024-09-11 09:05:03.930614 2024-09-11 09:05:03.93062 mef 4759 R rec 7f32470f-69b7-4e9b-b892-6ddaa4fa3b69 +2024-09-11 09:05:03.988376 2024-09-11 09:05:03.988382 mef 4760 R rec 360f88c3-3be2-4f03-8ba9-dc785d64ccaa +2024-09-11 09:05:04.048474 2024-09-11 09:05:04.04848 mef 4761 R rec feca33da-ef68-4e9b-a86e-7fc9e0518065 +2024-09-11 09:05:04.112628 2024-09-11 09:05:04.112633 mef 4762 R rec 719103f0-4dc1-4b72-abe1-cd6ac684203f +2024-09-11 09:05:04.172208 2024-09-11 09:05:04.172212 mef 4763 R rec afa5a429-5916-40b3-847f-913fe74a0cf0 +2024-09-11 09:05:04.237442 2024-09-11 09:05:04.237447 mef 4764 R rec 0a8ee27b-57f5-4080-a695-641e14da4476 +2024-09-11 09:05:04.327182 2024-09-11 09:05:04.327187 mef 4765 R rec 9b339cd1-6812-4cb9-afba-3cf2c38724b1 +2024-09-11 09:05:04.381197 2024-09-11 09:05:04.381202 mef 4766 R rec eb4d2d3f-7a6c-41fd-a040-24e1842b39f2 +2024-09-11 09:05:04.432926 2024-09-11 09:05:04.432931 mef 4767 R rec 6f96b1e2-c0c1-4fdd-90bf-e2dfac02fcdb +2024-09-11 09:05:04.489967 2024-09-11 09:05:04.489972 mef 4768 R rec 6f354a7f-974f-430a-aa60-3cad65050652 +2024-09-11 09:05:04.545524 2024-09-11 09:05:04.545529 mef 4769 R rec 167dc9eb-386b-42e6-8667-d588040e343a +2024-09-11 09:05:04.681231 2024-09-11 09:05:04.681237 mef 4770 R rec 8a74b06e-5595-4eef-adff-d2a891c7d0b5 +2024-09-11 09:05:04.740738 2024-09-11 09:05:04.740743 mef 4771 R rec 974ab932-e53d-43b8-8f9b-12ec91543ab7 +2024-09-11 09:05:04.796897 2024-09-11 09:05:04.796901 mef 4772 R rec b70fd64d-e272-4c1e-bb9f-6fa4c7982699 +2024-09-11 09:05:04.852827 2024-09-11 09:05:04.852832 mef 4773 R rec 84ce02c8-ce9c-4cae-b3b5-ecc58ba9b481 +2024-09-11 09:05:04.979164 2024-09-11 09:05:04.979169 mef 4774 R rec ef8fd7a5-b1e8-4230-a1cd-e8e2141a31c8 +2024-09-11 09:05:05.051396 2024-09-11 09:05:05.051401 mef 4775 R rec aba28a4d-24f2-45b1-9841-650c5fb970a7 +2024-09-11 09:05:05.108792 2024-09-11 09:05:05.108797 mef 4776 R rec 55d8eadf-eba0-4115-aa4e-acc9cbcf8435 +2024-09-11 09:05:05.165265 2024-09-11 09:05:05.16527 mef 4777 R rec 22fcc032-b399-4458-af7d-fefdcb4cfd07 +2024-09-11 09:05:05.223493 2024-09-11 09:05:05.223498 mef 4778 R rec e262ed6e-2cd4-46e1-a35b-c42542ff90b0 +2024-09-11 09:05:05.280504 2024-09-11 09:05:05.28051 mef 4779 R rec f4f5f1c5-209c-49fd-83a0-f596a0878b29 +2024-09-11 09:05:05.335068 2024-09-11 09:05:05.335075 mef 4780 R rec 0c1fc0a6-1411-4d9f-97ea-ca41d43c2b09 +2024-09-11 09:05:05.390536 2024-09-11 09:05:05.39054 mef 4781 R rec e53380c6-84fe-4f48-94b5-059152757531 +2024-09-11 09:05:05.4473 2024-09-11 09:05:05.447305 mef 4782 R rec d48c72b5-2783-4b03-a128-e90e1e57fbdd +2024-09-11 09:05:05.50591 2024-09-11 09:05:05.505914 mef 4783 R rec b5c948e0-8ce1-448a-a7bd-470a75b3360e +2024-09-11 09:05:05.565041 2024-09-11 09:05:05.565047 mef 4784 R rec 3a9330a4-e756-48cd-a18f-2141d3323e2c +2024-09-11 09:05:05.631188 2024-09-11 09:05:05.631194 mef 4785 R rec 88cc3249-c7ef-4908-8da6-b313c4250cb3 +2024-09-11 09:05:05.698017 2024-09-11 09:05:05.698022 mef 4786 R rec e63501ab-bd0c-4f1c-b59f-20f92e3a3b5a +2024-09-11 09:05:05.766706 2024-09-11 09:05:05.766711 mef 4787 R rec 95253d9d-3602-4bbd-93db-c1528b8a0a3f +2024-09-11 09:05:05.829744 2024-09-11 09:05:05.829748 mef 4788 R rec 9ca9f4e5-048b-4f45-9709-215d358fc2b1 +2024-09-11 09:05:05.895803 2024-09-11 09:05:05.895808 mef 4789 R rec 1baf8237-629c-4cd4-948c-3b5c86676d92 +2024-09-11 09:05:05.961744 2024-09-11 09:05:05.961749 mef 4790 R rec 66341f56-b065-4562-a5f0-1e87354bb6d3 +2024-09-11 09:05:06.026452 2024-09-11 09:05:06.026458 mef 4791 R rec f2714d2c-f751-4644-8dd5-3eed5333509b +2024-09-11 09:05:06.10026 2024-09-11 09:05:06.100264 mef 4792 R rec 0b64f60a-3d86-409d-8033-f1ad9adcffd8 +2024-09-11 09:05:06.16106 2024-09-11 09:05:06.161065 mef 4793 R rec 463c711a-4d0b-4422-a100-295576d88136 +2024-09-11 09:05:06.22194 2024-09-11 09:05:06.221945 mef 4794 R rec 8b3044a1-6dbb-4666-b01a-75562ad448e7 +2024-09-11 09:05:06.350291 2024-09-11 09:05:06.350297 mef 4795 R rec cb87c7e0-71b0-4993-ad02-378280273364 +2024-09-11 09:05:06.418784 2024-09-11 09:05:06.418789 mef 4796 R rec 3861998f-fdf2-4a83-be1c-496cfd459d0b +2024-09-11 09:05:06.500529 2024-09-11 09:05:06.500534 mef 4797 R rec 6379119c-d870-4723-a9d6-32eafd290d74 +2024-09-11 09:05:06.577132 2024-09-11 09:05:06.577137 mef 4798 R rec 5fab0ad6-5341-4ea8-b75d-09b685131c6c +2024-09-11 09:05:06.772665 2024-09-11 09:05:06.772671 mef 4799 R rec d79cfa03-ebfe-4418-86ce-b61d9c0ea186 +2024-09-11 09:05:06.836918 2024-09-11 09:05:06.836924 mef 4800 R rec b0aa6722-ba9d-4f13-ab4a-22784d53c812 +2024-09-11 09:05:06.904804 2024-09-11 09:05:06.904811 mef 4801 R rec 91a72a18-54f8-401a-8db8-0034de29c2d3 +2024-09-11 09:05:06.962231 2024-09-11 09:05:06.962237 mef 4802 R rec 6f73096a-0ca7-48f5-bbb7-ec95c4ec66fc +2024-09-11 09:05:07.09317 2024-09-11 09:05:07.093175 mef 4803 R rec 58f99496-fd57-423d-a185-9fcd1bdb9ef3 +2024-09-11 09:05:07.157236 2024-09-11 09:05:07.15724 mef 4804 R rec e58d8995-8689-4004-85da-c8f03568ce99 +2024-09-11 09:05:07.218532 2024-09-11 09:05:07.218538 mef 4805 R rec ad387e95-45b6-41b3-a58f-e8963f7bf89f +2024-09-11 09:05:07.353094 2024-09-11 09:05:07.353116 mef 4806 R rec a36c900d-976f-4e1d-9c89-a0a58a344b3c +2024-09-11 09:05:07.478973 2024-09-11 09:05:07.478979 mef 4807 R rec 99314061-db39-41a7-a1a5-d30dd53cd982 +2024-09-11 09:05:07.614837 2024-09-11 09:05:07.614842 mef 4808 R rec 36a67be3-b4ad-4abb-acb6-dd9e360d1933 +2024-09-11 09:05:07.696348 2024-09-11 09:05:07.696353 mef 4809 R rec bf864e10-a83b-4f6b-b852-235a606d4211 +2024-09-11 09:05:07.760551 2024-09-11 09:05:07.760556 mef 4810 R rec e22a1f99-cd1f-42a2-8725-699e3012f7a7 +2024-09-11 09:05:07.849115 2024-09-11 09:05:07.84912 mef 4811 R rec ddc41870-d861-48aa-98f6-68f7c0dd6c73 +2024-09-11 09:05:07.917547 2024-09-11 09:05:07.917552 mef 4812 R rec bd3c72f0-8a6e-4d95-a169-54c3ee2b8149 +2024-09-11 09:05:07.979254 2024-09-11 09:05:07.979259 mef 4813 R rec f1fbd6ad-fffb-421f-b73d-7600a8afa425 +2024-09-11 09:05:08.041414 2024-09-11 09:05:08.041419 mef 4814 R rec cbe0b508-330a-46f7-99c0-09bc89d9d6a7 +2024-09-11 09:05:08.184321 2024-09-11 09:05:08.184326 mef 4815 R rec 114a27e6-3bb6-4b27-b7d1-9495aa2615b4 +2024-09-11 09:05:08.244042 2024-09-11 09:05:08.244047 mef 4816 R rec c62a5b17-57ac-421f-a994-6c2bf838b0d2 +2024-09-11 09:05:08.309618 2024-09-11 09:05:08.309622 mef 4817 R rec c42116b6-fc02-4f6e-b6d3-db32140a3248 +2024-09-11 09:05:08.367347 2024-09-11 09:05:08.367351 mef 4818 R rec 8880da1a-e5ce-46d8-bb48-dace47fc4097 +2024-09-11 09:05:08.42435 2024-09-11 09:05:08.424356 mef 4819 R rec 60a149b2-7ecc-4f15-9ed0-1c1ae77e192c +2024-09-11 09:05:08.486843 2024-09-11 09:05:08.486849 mef 4820 R rec 79a380da-eeb3-4839-91ef-c2469b2ecfe1 +2024-09-11 09:05:08.560023 2024-09-11 09:05:08.560028 mef 4821 R rec 5015eeac-d540-426d-899c-862bdbe66ad3 +2024-09-11 09:05:08.710916 2024-09-11 09:05:08.710921 mef 4822 R rec de44d5bf-408a-4f39-b5d1-eb94583ba23d +2024-09-11 09:05:08.779921 2024-09-11 09:05:08.779926 mef 4823 R rec 691de7de-3793-40ef-b340-9ee9a3569f37 +2024-09-11 09:05:08.845723 2024-09-11 09:05:08.845728 mef 4824 R rec f17223dc-c251-4355-9501-f6c4657f157c +2024-09-11 09:05:08.916686 2024-09-11 09:05:08.916692 mef 4825 R rec 6c8cf5fd-09ed-42ac-99d4-f5a181b39baa +2024-09-11 09:05:09.038044 2024-09-11 09:05:09.038048 mef 4826 R rec 5a6923e3-b84c-48f3-a86d-5017d1348d9f +2024-09-11 09:05:09.12662 2024-09-11 09:05:09.126626 mef 4827 R rec f41fed5e-ec05-4ac9-aaa6-5be8673346f7 +2024-09-11 09:05:09.266831 2024-09-11 09:05:09.266837 mef 4828 R rec 4c22f944-d3a5-4ba7-bf7f-eba4683dce0a +2024-09-11 09:05:09.332647 2024-09-11 09:05:09.332652 mef 4829 R rec 2015005d-7d3e-4170-8929-15d83ec0a5d6 +2024-09-11 09:05:09.391004 2024-09-11 09:05:09.39101 mef 4830 R rec 9fc0e15d-96fa-44e6-ba73-a2a90f1234a8 +2024-09-11 09:05:09.462159 2024-09-11 09:05:09.462164 mef 4831 R rec ba104071-04e1-4d1d-917e-337f833731a1 +2024-09-11 09:05:09.520975 2024-09-11 09:05:09.520981 mef 4832 R rec 3088b627-3e78-48cc-a44d-397a0a26858f +2024-09-11 09:05:09.577901 2024-09-11 09:05:09.577906 mef 4833 R rec 540f6b24-4766-484f-84a8-77ce0eca57e0 +2024-09-11 09:05:09.630559 2024-09-11 09:05:09.630564 mef 4834 R rec e5af31a1-2668-487e-99e7-5bd95b250309 +2024-09-11 09:05:09.686197 2024-09-11 09:05:09.686202 mef 4835 R rec 3798f889-748a-482b-b642-13889379d716 +2024-09-11 09:05:09.73993 2024-09-11 09:05:09.739935 mef 4836 R rec 29402ead-9bce-4cd2-a73a-cf25e98664a4 +2024-09-11 09:05:09.792439 2024-09-11 09:05:09.792444 mef 4837 R rec a60a824c-c734-4fda-a91a-27caf958026b +2024-09-11 09:05:09.847951 2024-09-11 09:05:09.847957 mef 4838 R rec 3c7f64a6-d1cd-4900-b5f7-cb9cb1a6c0bd +2024-09-11 09:05:09.906398 2024-09-11 09:05:09.906403 mef 4839 R rec 43ba521b-6e0f-4c11-b3d8-f332ad4e51ec +2024-09-11 09:05:09.960325 2024-09-11 09:05:09.96033 mef 4840 R rec 4f19c50e-fefa-444d-9344-42feaab8c557 +2024-09-11 09:05:10.012562 2024-09-11 09:05:10.012568 mef 4841 R rec 863615ce-5b77-4e19-b077-190cd7a51ce0 +2024-09-11 09:05:10.068514 2024-09-11 09:05:10.068518 mef 4842 R rec c77bfa5c-ccd8-489b-8d1a-2b5cc9cd82ec +2024-09-11 09:05:10.122025 2024-09-11 09:05:10.122029 mef 4843 R rec b71034e5-0ccb-4782-88ee-9f6f119a25d1 +2024-09-11 09:05:10.179962 2024-09-11 09:05:10.179967 mef 4844 R rec 0e709cbd-1fab-43eb-a08e-ac745b04001f +2024-09-11 09:05:10.23565 2024-09-11 09:05:10.235655 mef 4845 R rec 49620d35-c556-45ac-8524-b88a1a02f544 +2024-09-11 09:05:10.303031 2024-09-11 09:05:10.303036 mef 4846 R rec e60d0e4f-40e5-43c7-a924-2a71ef6264fb +2024-09-11 09:05:10.361351 2024-09-11 09:05:10.361356 mef 4847 R rec 6a7deb3d-4251-41c0-9256-cafdf1ace0e3 +2024-09-11 09:05:10.414841 2024-09-11 09:05:10.414847 mef 4848 R rec 1815357c-8ea5-46bb-838e-9140f9b26925 +2024-09-11 09:05:10.472353 2024-09-11 09:05:10.472358 mef 4849 R rec a1cfb0fb-f345-496d-a8f6-9e28c2e25ee5 +2024-09-11 09:05:10.525942 2024-09-11 09:05:10.525947 mef 4850 R rec bc4482d8-94c7-4ef2-9df0-0fb080ec4406 +2024-09-11 09:05:10.585461 2024-09-11 09:05:10.585466 mef 4851 R rec 96bc5807-090f-45ae-8e50-a7faa1e49ff7 +2024-09-11 09:05:10.642404 2024-09-11 09:05:10.642409 mef 4852 R rec 15ab9703-a54c-4292-ba7e-3896070eadc8 +2024-09-11 09:05:10.701539 2024-09-11 09:05:10.701543 mef 4853 R rec 38a541b9-3a13-404d-a6c2-b9317a545d36 +2024-09-11 09:05:10.75821 2024-09-11 09:05:10.758215 mef 4854 R rec a4c2a60e-0510-473f-8d34-5a3690fbb600 +2024-09-11 09:05:10.814059 2024-09-11 09:05:10.814064 mef 4855 R rec c7def850-8b7d-43f7-b799-55a719eceb30 +2024-09-11 09:05:10.869408 2024-09-11 09:05:10.869414 mef 4856 R rec b5d6a211-d750-455e-8347-b4a761df7506 +2024-09-11 09:05:10.929557 2024-09-11 09:05:10.929561 mef 4857 R rec e8931166-3ccf-4d3c-a729-f90cb7d9c839 +2024-09-11 09:05:10.990277 2024-09-11 09:05:10.990281 mef 4858 R rec 5805c7ee-69ab-4a9f-bbc0-096e05cbb8d4 +2024-09-11 09:05:11.167345 2024-09-11 09:05:11.167349 mef 4859 R rec 63b87ccc-a237-4509-9cdf-e6978c7dd2d2 +2024-09-11 09:05:11.222688 2024-09-11 09:05:11.222693 mef 4860 R rec 1bc996d4-ebf2-40ea-a4f0-d17aef6a6f6f +2024-09-11 09:05:11.274294 2024-09-11 09:05:11.274299 mef 4861 R rec 32aad3d4-5062-4c88-905b-3c03de188e39 +2024-09-11 09:05:11.326966 2024-09-11 09:05:11.326971 mef 4862 R rec 1f4fa647-4ae1-4e56-969f-c3c5dff64346 +2024-09-11 09:05:11.381791 2024-09-11 09:05:11.381796 mef 4863 R rec 70c6e1de-fdf4-4367-91fa-78d3044273da +2024-09-11 09:05:11.440792 2024-09-11 09:05:11.440797 mef 4864 R rec 59bf6250-6570-47d1-acd7-f2dc7c22dac8 +2024-09-11 09:05:11.496308 2024-09-11 09:05:11.496313 mef 4865 R rec b1a27560-01cf-4529-861a-6001d4ca3b41 +2024-09-11 09:05:11.565816 2024-09-11 09:05:11.565821 mef 4866 R rec fa225b56-e06b-4545-a700-6b2d8802d48f +2024-09-11 09:05:11.626258 2024-09-11 09:05:11.626263 mef 4867 R rec d2265aed-b2cb-42f9-a9a8-5cfe3d72d52a +2024-09-11 09:05:11.681728 2024-09-11 09:05:11.681734 mef 4868 R rec b4218269-9cb4-4e25-a253-30e64084b508 +2024-09-11 09:05:11.741171 2024-09-11 09:05:11.741176 mef 4869 R rec 298ab985-171a-45e4-ab9c-fc178e6596c6 +2024-09-11 09:05:11.794345 2024-09-11 09:05:11.79435 mef 4870 R rec 6a1f3a11-22ef-4a8f-b813-e316f9b971df +2024-09-11 09:05:11.850009 2024-09-11 09:05:11.850014 mef 4871 R rec 66e090f3-c7ea-402c-bbe8-0c164a8974f5 +2024-09-11 09:05:11.905777 2024-09-11 09:05:11.905782 mef 4872 R rec 9e48cd13-2a02-41e3-b026-f50b10626e05 +2024-09-11 09:05:11.95675 2024-09-11 09:05:11.956755 mef 4873 R rec 367863d2-f786-4a1e-96b9-c1f79d7c8adf +2024-09-11 09:05:12.075087 2024-09-11 09:05:12.075092 mef 4874 R rec 3c1ffd4f-484b-4989-8c79-e36e9d581950 +2024-09-11 09:05:12.127918 2024-09-11 09:05:12.127923 mef 4875 R rec ae6d0b75-77d3-4317-bab3-16b587ca9729 +2024-09-11 09:05:12.188001 2024-09-11 09:05:12.188006 mef 4876 R rec fc5fe4b6-b192-443c-ba41-1f6f519784e9 +2024-09-11 09:05:12.244655 2024-09-11 09:05:12.244661 mef 4877 R rec 6f2bd20b-0f5c-4c45-9505-56b65cd8b820 +2024-09-11 09:05:12.303412 2024-09-11 09:05:12.303417 mef 4878 R rec 71bcfd8b-4ce3-43ff-bb86-86b4d9dcc584 +2024-09-11 09:05:12.357699 2024-09-11 09:05:12.357704 mef 4879 R rec a2d75728-85a4-4e21-9742-3e060821940e +2024-09-11 09:05:12.415176 2024-09-11 09:05:12.415181 mef 4880 R rec 03601ce9-f8dd-4e0a-aea9-722878f6e9f3 +2024-09-11 09:05:12.475437 2024-09-11 09:05:12.475442 mef 4881 R rec 522725b1-aeb4-4201-a356-e0672c8161c5 +2024-09-11 09:05:12.536291 2024-09-11 09:05:12.536297 mef 4882 R rec af900f74-d759-4162-856a-8bdf94788963 +2024-09-11 09:05:12.590289 2024-09-11 09:05:12.590293 mef 4883 R rec 4c59d9bf-b3a4-4d8c-8a86-b5e1e1825bd7 +2024-09-11 09:05:12.792107 2024-09-11 09:05:12.792112 mef 4884 R rec 0a353097-794e-4a22-838a-f0dc43b7e2be +2024-09-11 09:05:12.84708 2024-09-11 09:05:12.847084 mef 4885 R rec 824b06d4-8015-4ccb-8bdb-e9b2a9f60f83 +2024-09-11 09:05:12.901467 2024-09-11 09:05:12.901472 mef 4886 R rec 8b51ec22-7ccf-449a-83e6-14904c948644 +2024-09-11 09:05:12.96314 2024-09-11 09:05:12.963145 mef 4887 R rec 03217097-79be-4f41-a139-3a90bdd6ebea +2024-09-11 09:05:13.021723 2024-09-11 09:05:13.021728 mef 4888 R rec ae44fd80-0f78-4e37-bfa5-143fd1234214 +2024-09-11 09:05:13.152196 2024-09-11 09:05:13.152202 mef 4889 R rec 8226caba-c4d0-44a7-be80-4568351cdab5 +2024-09-11 09:05:13.210525 2024-09-11 09:05:13.210529 mef 4890 R rec c51a8c54-f773-46a2-bf1d-bdd7e797c3d3 +2024-09-11 09:05:13.265361 2024-09-11 09:05:13.265366 mef 4891 R rec 97926773-5ae0-488f-923e-e46247985296 +2024-09-11 09:05:13.322468 2024-09-11 09:05:13.322473 mef 4892 R rec 6686c238-242d-47f3-b17d-77171887e31e +2024-09-11 09:05:13.372803 2024-09-11 09:05:13.372807 mef 4893 R rec 3435a107-b419-487a-8b9b-85dc9ebb969c +2024-09-11 09:05:13.431187 2024-09-11 09:05:13.431192 mef 4894 R rec b0c93860-d9cb-4611-9919-ec675540c632 +2024-09-11 09:05:13.48307 2024-09-11 09:05:13.483076 mef 4895 R rec c4c45004-2226-451e-9bfb-7cc530fce167 +2024-09-11 09:05:13.534464 2024-09-11 09:05:13.534469 mef 4896 R rec 60f08932-0e1b-4ebc-8102-96cb264582dc +2024-09-11 09:05:13.590553 2024-09-11 09:05:13.590558 mef 4897 R rec f864c8e2-580f-4277-bc1a-dfc29d5c6fd3 +2024-09-11 09:05:13.640355 2024-09-11 09:05:13.64036 mef 4898 R rec 9184404c-c80d-4feb-ba18-8c72873a4f86 +2024-09-11 09:05:13.70515 2024-09-11 09:05:13.705156 mef 4899 R rec b1c07668-af9d-445c-ab63-76bbed27f5cd +2024-09-11 09:05:13.759588 2024-09-11 09:05:13.759593 mef 4900 R rec 67c26156-7e23-481b-80c1-e96cda9ee203 +2024-09-11 09:05:13.812528 2024-09-11 09:05:13.812534 mef 4901 R rec 4a24a600-19f8-4b51-8543-45703d94b691 +2024-09-11 09:05:13.863797 2024-09-11 09:05:13.863802 mef 4902 R rec cc7a92f0-c048-4712-b6bb-348200c39809 +2024-09-11 09:05:13.918072 2024-09-11 09:05:13.918078 mef 4903 R rec f21644af-0a01-420f-b93f-cff86a189688 +2024-09-11 09:05:14.030206 2024-09-11 09:05:14.030213 mef 4904 R rec e727de4c-405f-49ea-843c-25390f54e8c9 +2024-09-11 09:05:14.086235 2024-09-11 09:05:14.08624 mef 4905 R rec 1616303f-03c7-4280-a978-6686b049a8e4 +2024-09-11 09:05:14.138355 2024-09-11 09:05:14.138361 mef 4906 R rec 93efc443-c599-499a-ab89-8dc45c5f17c6 +2024-09-11 09:05:14.19415 2024-09-11 09:05:14.194155 mef 4907 R rec 73416692-22f7-44de-a4d3-28326c2d5fb7 +2024-09-11 09:05:14.251493 2024-09-11 09:05:14.251498 mef 4908 R rec 35afbfac-a4cb-4ebc-a27d-10d2856c6a22 +2024-09-11 09:05:14.306214 2024-09-11 09:05:14.306219 mef 4909 R rec 4f91939a-bbc6-4233-86c1-c8381f7e07d5 +2024-09-11 09:05:14.372834 2024-09-11 09:05:14.372839 mef 4910 R rec 4c58fed2-1808-4eab-a159-40de5916d904 +2024-09-11 09:05:14.425961 2024-09-11 09:05:14.425966 mef 4911 R rec 16e00378-04e5-4df8-9026-4f5295bacb51 +2024-09-11 09:05:14.478372 2024-09-11 09:05:14.478377 mef 4912 R rec 60d50b5b-354f-4e91-b2c7-e618e7af9f90 +2024-09-11 09:05:14.540251 2024-09-11 09:05:14.540255 mef 4913 R rec a49557e8-5b46-4d3b-9f4a-c7b3427a6863 +2024-09-11 09:05:14.593094 2024-09-11 09:05:14.593099 mef 4914 R rec d9499f08-4fee-459e-918c-f4f923acd277 +2024-09-11 09:05:14.647181 2024-09-11 09:05:14.647187 mef 4915 R rec ba331c05-2c96-4425-94ad-5403f9849ffc +2024-09-11 09:05:14.708375 2024-09-11 09:05:14.70838 mef 4916 R rec b21ed5ca-a51d-4af3-af13-720f2e2e7947 +2024-09-11 09:05:14.761799 2024-09-11 09:05:14.761805 mef 4917 R rec 602bffe5-799c-449e-9aee-eaa9847432f8 +2024-09-11 09:05:14.891018 2024-09-11 09:05:14.891023 mef 4918 R rec a6b767e8-1da1-4d41-8af4-b2654a3b2e7a +2024-09-11 09:05:14.986162 2024-09-11 09:05:14.986167 mef 4919 R rec f0710184-a0bb-426c-b1b4-19171635080c +2024-09-11 09:05:15.043752 2024-09-11 09:05:15.043757 mef 4920 R rec 8d2486b4-cd49-4f76-8f56-84453748ce61 +2024-09-11 09:05:15.102532 2024-09-11 09:05:15.102539 mef 4921 R rec 2eee6c1d-5b26-4ef1-838f-844feccfb9ec +2024-09-11 09:05:15.156718 2024-09-11 09:05:15.156723 mef 4922 R rec a82e0250-2b98-4d33-b3f0-07b93605cd43 +2024-09-11 09:05:15.210185 2024-09-11 09:05:15.21019 mef 4923 R rec 1d0ff702-0406-429d-9712-c64cf5efc224 +2024-09-11 09:05:15.263143 2024-09-11 09:05:15.263148 mef 4924 R rec 2b1a0290-86c4-45dd-b9de-32065311f11a +2024-09-11 09:05:15.320076 2024-09-11 09:05:15.32008 mef 4925 R rec ad57e351-e7ba-4e06-9b24-7f4cafb8cb41 +2024-09-11 09:05:15.381823 2024-09-11 09:05:15.381828 mef 4926 R rec 50cd8bc6-8753-401f-b2ab-1df45ec484ed +2024-09-11 09:05:15.440315 2024-09-11 09:05:15.44032 mef 4927 R rec ea2afa26-18b0-40bf-9669-80f30e1dcf67 +2024-09-11 09:05:15.492693 2024-09-11 09:05:15.492699 mef 4928 R rec a505782c-1de7-48db-b140-a0fd739da0bb +2024-09-11 09:05:15.548921 2024-09-11 09:05:15.548926 mef 4929 R rec 99be653a-0040-455f-8c64-854a1bad837a +2024-09-11 09:05:15.603765 2024-09-11 09:05:15.603785 mef 4930 R rec f4680281-3435-46f2-bfc0-37f7584f78ec +2024-09-11 09:05:15.653975 2024-09-11 09:05:15.65398 mef 4931 R rec 5ad144a6-98a3-42ce-880f-a8e559632376 +2024-09-11 09:05:15.707674 2024-09-11 09:05:15.707679 mef 4932 R rec aecab5bf-ece2-4ec9-be85-dc63f916f453 +2024-09-11 09:05:15.765637 2024-09-11 09:05:15.765642 mef 4933 R rec 56425cb9-5ed8-41ea-842e-177e7dd0a20e +2024-09-11 09:05:15.819751 2024-09-11 09:05:15.819756 mef 4934 R rec 961e9dfb-f4e7-4b92-a00d-761f895eadea +2024-09-11 09:05:15.87284 2024-09-11 09:05:15.872845 mef 4935 R rec e2c06940-85db-4583-9483-05f67f69c6e0 +2024-09-11 09:05:15.925948 2024-09-11 09:05:15.925954 mef 4936 R rec 2a83a379-ebd3-46f5-b2cf-7857cf08cbf9 +2024-09-11 09:05:15.982967 2024-09-11 09:05:15.982973 mef 4937 R rec 1a780c06-5870-4fee-af9f-f7e8db198b7b +2024-09-11 09:05:16.037203 2024-09-11 09:05:16.037211 mef 4938 R rec b9718888-e42e-47d6-b86f-b9871f0c70f8 +2024-09-11 09:05:16.101404 2024-09-11 09:05:16.101409 mef 4939 R rec 3e844a36-2bb8-4053-a6d7-55a464dc82eb +2024-09-11 09:05:16.174977 2024-09-11 09:05:16.174982 mef 4940 R rec b3458ad4-d34b-4477-8a54-17fb222bd3ed +2024-09-11 09:05:16.247694 2024-09-11 09:05:16.247699 mef 4941 R rec 11cde5f3-2bad-4536-94ce-65f2faa4aecb +2024-09-11 09:05:16.302306 2024-09-11 09:05:16.302311 mef 4942 R rec 19745914-1da5-48b3-bd89-d9c3531a11d8 +2024-09-11 09:05:16.423351 2024-09-11 09:05:16.423356 mef 4943 R rec 08010e7a-8384-479d-8197-a81eeebcb7c0 +2024-09-11 09:05:16.474316 2024-09-11 09:05:16.474321 mef 4944 R rec c939c01b-8a07-4776-bb74-295489c450cd +2024-09-11 09:05:16.529071 2024-09-11 09:05:16.529076 mef 4945 R rec c88ba784-c137-46d1-bb80-8e2a82a07285 +2024-09-11 09:05:16.585277 2024-09-11 09:05:16.585283 mef 4946 R rec a61a5e51-0313-4bc1-b93e-2abb5a0c8085 +2024-09-11 09:05:16.645862 2024-09-11 09:05:16.645868 mef 4947 R rec 21c3bb3f-551b-4c47-a0e5-7c214d845c85 +2024-09-11 09:05:16.768134 2024-09-11 09:05:16.768139 mef 4948 R rec d29ed2f5-0a73-4c62-92ee-294a83b4889b +2024-09-11 09:05:16.821878 2024-09-11 09:05:16.821883 mef 4949 R rec ccb9fa26-ba27-4c78-8450-74526953996b +2024-09-11 09:05:16.883898 2024-09-11 09:05:16.883904 mef 4950 R rec fb0ee5f8-b25b-4a13-8745-1dc306961450 +2024-09-11 09:05:16.941124 2024-09-11 09:05:16.941129 mef 4951 R rec f841f0e7-5f89-4c0b-aae2-f4f5c71d3834 +2024-09-11 09:05:16.99532 2024-09-11 09:05:16.995325 mef 4952 R rec aac7bc75-da61-4612-b68a-f980b9a8f110 +2024-09-11 09:05:17.053886 2024-09-11 09:05:17.053891 mef 4953 R rec c3070073-68db-4eec-b80b-f2fd084b486b +2024-09-11 09:05:17.108618 2024-09-11 09:05:17.108623 mef 4954 R rec b953ea27-566c-4abf-927c-d9a568f97506 +2024-09-11 09:05:17.163841 2024-09-11 09:05:17.163846 mef 4955 R rec 2aa5256e-0a10-4499-aa65-ccae0cd69b67 +2024-09-11 09:05:17.227962 2024-09-11 09:05:17.227967 mef 4956 R rec ab8f0028-a14c-4478-a053-b91c84c23197 +2024-09-11 09:05:17.295296 2024-09-11 09:05:17.295301 mef 4957 R rec ead7675c-ad37-4ab4-ab13-2113e3a52140 +2024-09-11 09:05:17.351803 2024-09-11 09:05:17.351809 mef 4958 R rec b6948688-bbfa-4689-b1e4-1e970d88bb90 +2024-09-11 09:05:17.402019 2024-09-11 09:05:17.402024 mef 4959 R rec fa4e56ea-eb8c-49ea-b0eb-04ae2d500764 +2024-09-11 09:05:17.455176 2024-09-11 09:05:17.455181 mef 4960 R rec ecc03b2e-cc28-41c3-a864-dcb16481c65e +2024-09-11 09:05:17.510578 2024-09-11 09:05:17.510583 mef 4961 R rec 36f62781-8bd0-4292-af21-3b7d94bed773 +2024-09-11 09:05:17.563583 2024-09-11 09:05:17.563588 mef 4962 R rec 7ed39142-378b-42db-a036-6c4d13e85881 +2024-09-11 09:05:17.617485 2024-09-11 09:05:17.61749 mef 4963 R rec 320a2d36-1bdc-4592-ad5a-0d162cc390f7 +2024-09-11 09:05:17.672511 2024-09-11 09:05:17.672516 mef 4964 R rec a6819aca-b5c3-4826-aa5d-8c7fdda01aa5 +2024-09-11 09:05:17.733987 2024-09-11 09:05:17.733992 mef 4965 R rec 7a8bd400-99e1-4f3b-af6f-80caf756d3f0 +2024-09-11 09:05:17.786038 2024-09-11 09:05:17.786043 mef 4966 R rec 737c924e-9fb5-4203-bef6-d0ba852058dc +2024-09-11 09:05:17.837761 2024-09-11 09:05:17.83777 mef 4967 R rec 5f3a11e5-2760-442e-80d7-164dce50349f +2024-09-11 09:05:17.902297 2024-09-11 09:05:17.902303 mef 4968 R rec cf34a3f7-f0d1-4fe9-ba0a-f423abbd580c +2024-09-11 09:05:17.955638 2024-09-11 09:05:17.955642 mef 4969 R rec fd2b48f4-91f1-4068-a50c-a3460a8b5bfe +2024-09-11 09:05:18.008848 2024-09-11 09:05:18.008853 mef 4970 R rec e623a022-62c8-4822-8a45-d5991714254d +2024-09-11 09:05:18.063985 2024-09-11 09:05:18.06399 mef 4971 R rec 28eee237-d91e-44e2-b00e-97d3d1d7ee51 +2024-09-11 09:05:18.122261 2024-09-11 09:05:18.122266 mef 4972 R rec 9966d57a-bb77-4355-bc0e-625012c3071d +2024-09-11 09:05:18.176171 2024-09-11 09:05:18.176176 mef 4973 R rec 09a8ada1-2fee-4766-b2d3-8910ea965790 +2024-09-11 09:05:18.231195 2024-09-11 09:05:18.2312 mef 4974 R rec 2ad5f4b8-6918-44ed-93b9-894477bfd813 +2024-09-11 09:05:18.362852 2024-09-11 09:05:18.362857 mef 4975 R rec c79eb7dc-a9b8-4b70-9078-959d32468fc5 +2024-09-11 09:05:18.414128 2024-09-11 09:05:18.414133 mef 4976 R rec dab45bd9-9f77-4a01-b0b9-1622e732a82d +2024-09-11 09:05:18.479909 2024-09-11 09:05:18.479915 mef 4977 R rec f3a5eee7-21a2-495a-8ebc-01617d2c6674 +2024-09-11 09:05:18.543595 2024-09-11 09:05:18.5436 mef 4978 R rec 3b802f86-2327-45c9-ae9a-e30e9864a0fc +2024-09-11 09:05:18.606321 2024-09-11 09:05:18.606325 mef 4979 R rec 074c0de9-7f75-4466-8c61-0eca220202b8 +2024-09-11 09:05:18.664424 2024-09-11 09:05:18.664429 mef 4980 R rec cddbc487-4e06-4fb5-9573-a89466d3353e +2024-09-11 09:05:18.721258 2024-09-11 09:05:18.721263 mef 4981 R rec 7a3f507b-cc78-4154-a473-226b0d12d40a +2024-09-11 09:05:18.774639 2024-09-11 09:05:18.774644 mef 4982 R rec 8e7ad1c7-25e9-42a5-b6b8-c3e19b631609 +2024-09-11 09:05:18.826074 2024-09-11 09:05:18.826079 mef 4983 R rec 07516396-9714-49d9-9f71-baf58d01e5a9 +2024-09-11 09:05:18.881373 2024-09-11 09:05:18.881378 mef 4984 R rec 3368e42e-0d6e-40f6-a0cf-f644c2436fa0 +2024-09-11 09:05:18.942251 2024-09-11 09:05:18.942256 mef 4985 R rec 4d4e986a-a955-4747-a892-d346e08e4284 +2024-09-11 09:05:18.999336 2024-09-11 09:05:18.999341 mef 4986 R rec 7870288c-f00e-4c79-a868-01a609c3d864 +2024-09-11 09:05:19.051282 2024-09-11 09:05:19.051287 mef 4987 R rec 16fbcb3a-f11e-4936-af0b-dc611382bf6d +2024-09-11 09:05:19.10712 2024-09-11 09:05:19.107125 mef 4988 R rec 03cc6ec3-65b9-469b-926a-92ee1b14cc60 +2024-09-11 09:05:19.163186 2024-09-11 09:05:19.163191 mef 4989 R rec 363aca4b-4d33-4afa-9711-8532c740a461 +2024-09-11 09:05:19.226996 2024-09-11 09:05:19.227002 mef 4990 R rec 57cd5c8b-1599-4db4-b8b2-0bad14cd7d72 +2024-09-11 09:05:19.277677 2024-09-11 09:05:19.277682 mef 4991 R rec 723eda42-f4c0-4e92-b5cd-4691ebb9227d +2024-09-11 09:05:19.329908 2024-09-11 09:05:19.329914 mef 4992 R rec 59910bc7-3136-4188-b5c0-71bc646df6e9 +2024-09-11 09:05:19.387814 2024-09-11 09:05:19.38782 mef 4993 R rec 91965a16-40b0-4a20-ab47-5ed38b1a6d4d +2024-09-11 09:05:19.441101 2024-09-11 09:05:19.441105 mef 4994 R rec 657c1055-33ec-4d3c-ad5b-84704da37293 +2024-09-11 09:05:19.570403 2024-09-11 09:05:19.570409 mef 4995 R rec 63a8d3bb-f6e6-459c-92be-cb9788e855eb +2024-09-11 09:05:19.622827 2024-09-11 09:05:19.622831 mef 4996 R rec 8f197eb0-b46d-4bf2-94df-1177e8b9ef6e +2024-09-11 09:05:19.67846 2024-09-11 09:05:19.678465 mef 4997 R rec 3f71e277-d1dc-4c2a-987c-bd39856ec0de +2024-09-11 09:05:19.733997 2024-09-11 09:05:19.734001 mef 4998 R rec ec0274fb-3aa7-4f02-886b-772eadae04b8 +2024-09-11 09:05:19.794151 2024-09-11 09:05:19.794156 mef 4999 R rec 6f3bc18b-0e74-433e-bb00-1d1652da381c +2024-09-11 09:05:19.860981 2024-09-11 09:05:19.860986 mef 5000 R rec d30d6f58-b343-4ac5-b899-1ef51a4ef1c6 +2024-09-11 09:05:19.916437 2024-09-11 09:05:19.916443 mef 5001 R rec 08a35818-86ce-40f9-a9e3-a4a9d1a7f4db +2024-09-11 09:05:19.978649 2024-09-11 09:05:19.978654 mef 5002 R rec b832bc0a-4f92-4e49-baa7-bda653cf545f +2024-09-11 09:05:20.03447 2024-09-11 09:05:20.034474 mef 5003 R rec 303f053c-e2bd-446d-8609-7f8a480f4b7f +2024-09-11 09:05:20.093795 2024-09-11 09:05:20.0938 mef 5004 R rec 415bcb1b-8efb-427e-9959-640b47b5b66a +2024-09-11 09:05:20.153322 2024-09-11 09:05:20.153328 mef 5005 R rec 91b22719-7135-4d7e-a4f8-e17b8e91419d +2024-09-11 09:05:20.208248 2024-09-11 09:05:20.208251 mef 5006 R rec 71291bc3-f24e-441a-8b82-6fb6bc9b5629 +2024-09-11 09:05:20.263367 2024-09-11 09:05:20.263371 mef 5007 R rec 855bab3b-5a25-49d5-9e18-b17089e8168b +2024-09-11 09:05:20.318368 2024-09-11 09:05:20.318374 mef 5008 R rec 1c46ea6e-01d6-4741-b93d-d2ddaf5b4a6b +2024-09-11 09:05:20.374944 2024-09-11 09:05:20.374948 mef 5009 R rec f96077d2-3b50-4ab7-9a8f-54211afe06f9 +2024-09-11 09:05:20.435953 2024-09-11 09:05:20.435958 mef 5010 R rec 542e6c0d-3542-4e95-a5c6-9906792da9ae +2024-09-11 09:05:20.494989 2024-09-11 09:05:20.494993 mef 5011 R rec 789b22e5-27f5-400e-87b6-9b06cb7523a8 +2024-09-11 09:05:20.55739 2024-09-11 09:05:20.557396 mef 5012 R rec 0aa59e7c-b94b-4ffe-be54-410f03c0c19c +2024-09-11 09:05:20.62713 2024-09-11 09:05:20.627137 mef 5013 R rec fea71d32-7f56-492e-8d55-0c81f5b52cab +2024-09-11 09:05:20.690027 2024-09-11 09:05:20.690032 mef 5014 R rec a897e69f-dae9-4286-b85b-bd4399e4d876 +2024-09-11 09:05:20.741343 2024-09-11 09:05:20.741347 mef 5015 R rec 1a5f7139-b3fc-4f2d-afc5-30d1707057a9 +2024-09-11 09:05:20.79391 2024-09-11 09:05:20.793915 mef 5016 R rec a7c5f116-e837-4d21-86fe-74a5075835b4 +2024-09-11 09:05:20.848913 2024-09-11 09:05:20.848918 mef 5017 R rec cd89d535-591f-4093-91b9-2c4b4bd288d0 +2024-09-11 09:05:20.908692 2024-09-11 09:05:20.908697 mef 5018 R rec e9f728a1-c637-44d2-bce9-13ae2c246e3c +2024-09-11 09:05:20.964296 2024-09-11 09:05:20.964301 mef 5019 R rec 153f11d7-8324-4c48-8372-29fe57e01a7a +2024-09-11 09:05:21.019341 2024-09-11 09:05:21.019346 mef 5020 R rec 5b28d9bb-6ebf-4422-a7c8-649fce0b6685 +2024-09-11 09:05:21.072361 2024-09-11 09:05:21.072367 mef 5021 R rec 489b9c3f-4e2e-4813-807a-fc815d655bd8 +2024-09-11 09:05:21.130124 2024-09-11 09:05:21.130129 mef 5022 R rec 0a6d25d9-dd1b-46ce-b47a-1a16bcb3a9de +2024-09-11 09:05:21.187527 2024-09-11 09:05:21.187532 mef 5023 R rec a244ebb2-3a2f-4605-b701-51450f83d20f +2024-09-11 09:05:21.242417 2024-09-11 09:05:21.242422 mef 5024 R rec 29873abd-eccb-46c9-8ccc-96a17703ff6d +2024-09-11 09:05:21.294643 2024-09-11 09:05:21.294649 mef 5025 R rec 1b527337-6481-4ba3-a64c-1d36734bb3f8 +2024-09-11 09:05:21.352147 2024-09-11 09:05:21.352152 mef 5026 R rec 30914b2f-00df-4301-a075-42cb66880b52 +2024-09-11 09:05:21.405316 2024-09-11 09:05:21.40532 mef 5027 R rec e2a963d6-6d78-4a3f-903e-ccdf6a63a691 +2024-09-11 09:05:21.461587 2024-09-11 09:05:21.461592 mef 5028 R rec 3f1c8a45-1076-4010-8325-f7becd24e137 +2024-09-11 09:05:21.514424 2024-09-11 09:05:21.514429 mef 5029 R rec 9c27f13d-8243-40f1-b530-cc99fad57684 +2024-09-11 09:05:21.564066 2024-09-11 09:05:21.56407 mef 5030 R rec bc00514c-f569-4f1e-8871-cad3a11c3442 +2024-09-11 09:05:21.621153 2024-09-11 09:05:21.621159 mef 5031 R rec 6d75e19a-9050-4907-bf63-9d000d2de917 +2024-09-11 09:05:21.675249 2024-09-11 09:05:21.675255 mef 5032 R rec 8cf7be2d-402e-4c57-b33e-74b835cb3b07 +2024-09-11 09:05:21.729194 2024-09-11 09:05:21.729199 mef 5033 R rec 9eb4b15f-baa9-4e29-81c2-2c7b76cb3ce8 +2024-09-11 09:05:21.789975 2024-09-11 09:05:21.78998 mef 5034 R rec 1af1d006-f006-460a-9a73-3258817b5d44 +2024-09-11 09:05:21.844963 2024-09-11 09:05:21.844966 mef 5035 R rec 1bd8076e-dae2-464a-87cc-c14c33996dd0 +2024-09-11 09:05:21.903606 2024-09-11 09:05:21.903612 mef 5036 R rec 3ad64951-4da4-4e94-925a-25cac3b49bff +2024-09-11 09:05:21.975823 2024-09-11 09:05:21.975829 mef 5037 R rec cc9400cf-f25a-4d87-b38e-ffd565731730 +2024-09-11 09:05:22.034467 2024-09-11 09:05:22.034474 mef 5038 R rec 27fa4a69-3177-4725-8399-45dbaa575059 +2024-09-11 09:05:22.084863 2024-09-11 09:05:22.084869 mef 5039 R rec 3516b819-d2ac-4f27-ba95-86d3e28bf371 +2024-09-11 09:05:22.137864 2024-09-11 09:05:22.137869 mef 5040 R rec 2f1d343e-d247-400a-8493-710d718d5a9d +2024-09-11 09:05:22.191544 2024-09-11 09:05:22.191549 mef 5041 R rec 75448885-bb8d-4d7b-aa35-c3a863f20ee6 +2024-09-11 09:05:22.243831 2024-09-11 09:05:22.243837 mef 5042 R rec b0bb759d-d61f-4d9c-8481-945eb6ef5420 +2024-09-11 09:05:22.298294 2024-09-11 09:05:22.298299 mef 5043 R rec 3db7da0d-7ade-450f-ba13-3c4794655930 +2024-09-11 09:05:22.357271 2024-09-11 09:05:22.357276 mef 5044 R rec d01b79c0-9982-4f89-ad90-3267ab423b2d +2024-09-11 09:05:22.415115 2024-09-11 09:05:22.415121 mef 5045 R rec 17143400-8e54-4d2f-b75c-5cf211c3b5d1 +2024-09-11 09:05:22.475463 2024-09-11 09:05:22.475469 mef 5046 R rec 5e37587b-90a5-4e9a-b97d-cc6cfdc30434 +2024-09-11 09:05:22.53306 2024-09-11 09:05:22.533065 mef 5047 R rec e722d5d7-3977-450c-8dae-a4c46981ad51 +2024-09-11 09:05:22.586117 2024-09-11 09:05:22.586123 mef 5048 R rec 638e4d86-972a-4b3b-9261-b6f1916e01a6 +2024-09-11 09:05:22.641156 2024-09-11 09:05:22.641161 mef 5049 R rec f10f8e88-02df-4a00-90cb-d32c0e8cd4bb +2024-09-11 09:05:22.696508 2024-09-11 09:05:22.696513 mef 5050 R rec ad7cd74a-5136-451c-a0ee-85715f99f1b6 +2024-09-11 09:05:22.755892 2024-09-11 09:05:22.755897 mef 5051 R rec 47a80538-e9c9-4715-bece-169b7f1ba0e9 +2024-09-11 09:05:22.815375 2024-09-11 09:05:22.815379 mef 5052 R rec cb188b3f-9b3f-4e40-8bba-92f0182f0f9c +2024-09-11 09:05:22.874809 2024-09-11 09:05:22.874813 mef 5053 R rec fc65d2ff-7fb6-45ff-ab6d-a52713df5671 +2024-09-11 09:05:22.929138 2024-09-11 09:05:22.929143 mef 5054 R rec 129d041c-8ddd-439d-8c91-d89baf6d906e +2024-09-11 09:05:22.984543 2024-09-11 09:05:22.984548 mef 5055 R rec 67bd7666-ceab-45cc-9078-a887bb4d73e5 +2024-09-11 09:05:23.0383 2024-09-11 09:05:23.038305 mef 5056 R rec 9bcfac7f-5af2-4b97-baa7-185a91bb661f +2024-09-11 09:05:23.092841 2024-09-11 09:05:23.092845 mef 5057 R rec 49e41b46-ae4f-43ab-ab21-5fe7493c318b +2024-09-11 09:05:23.151305 2024-09-11 09:05:23.15131 mef 5058 R rec c3cdddc5-012c-487d-9bae-6e9ed6f2beab +2024-09-11 09:05:23.21378 2024-09-11 09:05:23.213784 mef 5059 R rec 8a78cdcf-18cf-4017-9cde-11faf69fcd7f +2024-09-11 09:05:23.269884 2024-09-11 09:05:23.26989 mef 5060 R rec 12db571f-1962-4ff2-8172-975e0bd88458 +2024-09-11 09:05:23.331088 2024-09-11 09:05:23.331093 mef 5061 R rec 3b65d4bd-a4af-4278-b3b0-70ae5a2a8023 +2024-09-11 09:05:23.384421 2024-09-11 09:05:23.384426 mef 5062 R rec 401c412a-95db-4115-ba02-4e975f6cbe56 +2024-09-11 09:05:23.438435 2024-09-11 09:05:23.438444 mef 5063 R rec 40bc2cdd-2f2b-4c6b-a750-1329d2bce617 +2024-09-11 09:05:23.491649 2024-09-11 09:05:23.491653 mef 5064 R rec 92ecb995-fca2-44b1-84e6-226a296c948a +2024-09-11 09:05:23.545775 2024-09-11 09:05:23.545781 mef 5065 R rec fb22708a-7416-462a-9814-a6bfb0be0004 +2024-09-11 09:05:23.600177 2024-09-11 09:05:23.600181 mef 5066 R rec e8aeccbb-7232-4b9b-b2ab-d8e285d0f7fb +2024-09-11 09:05:23.654067 2024-09-11 09:05:23.654072 mef 5067 R rec 47388518-a78c-4ed1-a56a-227766ffbdef +2024-09-11 09:05:23.707547 2024-09-11 09:05:23.707552 mef 5068 R rec 1bc490fd-c19b-4542-9e5d-e8da9747d108 +2024-09-11 09:05:23.772584 2024-09-11 09:05:23.77259 mef 5069 R rec 8c50a018-eddd-4751-8f8a-5db637b41e05 +2024-09-11 09:05:23.832857 2024-09-11 09:05:23.832862 mef 5070 R rec 02dca506-77d5-4726-b29c-132cd94197d8 +2024-09-11 09:05:23.887575 2024-09-11 09:05:23.88758 mef 5071 R rec 9c0d3227-cfa3-4f55-9fb4-4b3dcb6e73f7 +2024-09-11 09:05:23.941347 2024-09-11 09:05:23.941352 mef 5072 R rec 93a792ca-01a6-4148-9b23-5a571b9d1d33 +2024-09-11 09:05:23.997386 2024-09-11 09:05:23.997391 mef 5073 R rec 30a516d8-0cf6-4baa-a06c-916cd2cde596 +2024-09-11 09:05:24.050557 2024-09-11 09:05:24.050563 mef 5074 R rec 97b12a41-2796-4cc4-b338-75b9b9ab78da +2024-09-11 09:05:24.106542 2024-09-11 09:05:24.106547 mef 5075 R rec c811d8df-3112-43d0-9dab-a07d68a0d272 +2024-09-11 09:05:24.165536 2024-09-11 09:05:24.165541 mef 5076 R rec b27f2894-f820-4559-b3e4-4fa45db295c2 +2024-09-11 09:05:24.223708 2024-09-11 09:05:24.223714 mef 5077 R rec d6215b72-64ef-4a58-aefc-f902ea43f37d +2024-09-11 09:05:24.28242 2024-09-11 09:05:24.282425 mef 5078 R rec fea3429a-cb82-4ae8-8186-f63190be7d50 +2024-09-11 09:05:24.34158 2024-09-11 09:05:24.341585 mef 5079 R rec 6f831793-977a-411d-9aa7-dc2b5863aa5f +2024-09-11 09:05:24.397518 2024-09-11 09:05:24.397522 mef 5080 R rec 18756211-30f7-4fdf-a3fa-2fd50882b5e1 +2024-09-11 09:05:24.457824 2024-09-11 09:05:24.457829 mef 5081 R rec 31917a71-094b-4ea4-8988-f99f48b7148d +2024-09-11 09:05:24.513309 2024-09-11 09:05:24.513314 mef 5082 R rec dedd350b-a3ae-41ea-aec0-86f417998bc7 +2024-09-11 09:05:24.571291 2024-09-11 09:05:24.571297 mef 5083 R rec 6e68f208-48d0-4416-876a-cebab06dc370 +2024-09-11 09:05:24.696852 2024-09-11 09:05:24.696857 mef 5084 R rec 54cd0086-827b-4542-a225-9886e96e81fd +2024-09-11 09:05:24.751781 2024-09-11 09:05:24.751785 mef 5085 R rec 7f4f3cba-7459-4076-a46b-c1ae8e2ab86a +2024-09-11 09:05:24.810959 2024-09-11 09:05:24.810965 mef 5086 R rec 2a3ed6ae-b69c-4880-9cfd-cd7e2e5d22c9 +2024-09-11 09:05:24.875792 2024-09-11 09:05:24.875796 mef 5087 R rec a21cff06-0335-42f8-aaa7-b92768c68b11 +2024-09-11 09:05:24.931801 2024-09-11 09:05:24.931806 mef 5088 R rec 0cda190e-3c53-4dc2-ac70-311203c46815 +2024-09-11 09:05:24.997846 2024-09-11 09:05:24.99785 mef 5089 R rec a4d82e24-d9cf-4eef-8519-b6b9dd7bcf8c +2024-09-11 09:05:25.060379 2024-09-11 09:05:25.060383 mef 5090 R rec 1eedd2ff-8792-4f18-9dca-4c66c0f2c933 +2024-09-11 09:05:25.115884 2024-09-11 09:05:25.115889 mef 5091 R rec c9b1facc-a8af-4c32-b1f4-76f5db196927 +2024-09-11 09:05:25.173594 2024-09-11 09:05:25.173598 mef 5092 R rec 3432bc9f-c851-4d22-88dc-8ae6f01551ee +2024-09-11 09:05:25.226221 2024-09-11 09:05:25.226226 mef 5093 R rec dde74d66-f7f3-4db0-9949-4d6e3aaa311d +2024-09-11 09:05:25.32109 2024-09-11 09:05:25.321097 mef 5094 R rec 931b189a-e3e3-4fb4-8a47-9ecc020a4c80 +2024-09-11 09:05:25.383584 2024-09-11 09:05:25.38359 mef 5095 R rec 3c8383b0-b83e-4a78-ba18-ea8ba9cbff50 +2024-09-11 09:05:25.43932 2024-09-11 09:05:25.439325 mef 5096 R rec 0c6ec57e-bb1f-4373-9273-893061e59dd7 +2024-09-11 09:05:25.496505 2024-09-11 09:05:25.49651 mef 5097 R rec c45a70f4-4643-4bf5-acda-390f1601d3f0 +2024-09-11 09:05:25.548922 2024-09-11 09:05:25.548928 mef 5098 R rec 8736ea40-a2f8-4582-9daa-3b8fd168f5ea +2024-09-11 09:05:25.605132 2024-09-11 09:05:25.605138 mef 5099 R rec 02c63e6b-d79d-4bcc-9c6e-608e028488b4 +2024-09-11 09:05:25.657041 2024-09-11 09:05:25.657046 mef 5100 R rec 271f9a12-9812-4864-b382-3ded7a4aa533 +2024-09-11 09:05:25.713263 2024-09-11 09:05:25.713268 mef 5101 R rec 3c40286a-6729-4412-b010-17f57a7c1e62 +2024-09-11 09:05:25.765113 2024-09-11 09:05:25.765118 mef 5102 R rec 43ee4f74-d8ec-4254-bf2d-17baed6418d8 +2024-09-11 09:05:25.818758 2024-09-11 09:05:25.818764 mef 5103 R rec 70b720ad-5cac-4002-95e9-39b3db634d18 +2024-09-11 09:05:25.873663 2024-09-11 09:05:25.873668 mef 5104 R rec ef842b06-32fc-4ffe-be43-bf7ed6f680c1 +2024-09-11 09:05:25.929626 2024-09-11 09:05:25.929631 mef 5105 R rec 0dfac13c-924e-4f05-ace2-9611a6901a2b +2024-09-11 09:05:25.985423 2024-09-11 09:05:25.985428 mef 5106 R rec ba9b2909-8922-4ca6-b752-d475dc70203b +2024-09-11 09:05:26.047707 2024-09-11 09:05:26.047712 mef 5107 R rec 0917a400-6e52-45ee-a725-f662cb365237 +2024-09-11 09:05:26.101057 2024-09-11 09:05:26.101063 mef 5108 R rec e20f1abd-b87a-4a33-9698-854f934a4acb +2024-09-11 09:05:26.15433 2024-09-11 09:05:26.154335 mef 5109 R rec 094eff61-e1c9-4187-b9ad-675038ec5ebf +2024-09-11 09:05:26.219653 2024-09-11 09:05:26.219658 mef 5110 R rec a5e85630-d10e-4f0d-a6ec-1b5531d98f0e +2024-09-11 09:05:26.273216 2024-09-11 09:05:26.27322 mef 5111 R rec 4e19c101-0da0-4d73-8305-309ac433bbf8 +2024-09-11 09:05:26.322842 2024-09-11 09:05:26.322847 mef 5112 R rec 6303032d-351f-4f2d-94f3-9db4c012c5b3 +2024-09-11 09:05:26.381524 2024-09-11 09:05:26.381529 mef 5113 R rec 0b63788a-c310-4603-b72d-3202ba50df08 +2024-09-11 09:05:26.434394 2024-09-11 09:05:26.434399 mef 5114 R rec 8d7bc749-6f49-4be4-9270-1921a0405b11 +2024-09-11 09:05:26.486037 2024-09-11 09:05:26.486042 mef 5115 R rec 27385e23-09b6-408a-8540-4eac297e579c +2024-09-11 09:05:26.54188 2024-09-11 09:05:26.541884 mef 5116 R rec 9c7a0b78-c6db-4cc2-b803-8f92ce2553cd +2024-09-11 09:05:26.603577 2024-09-11 09:05:26.603582 mef 5117 R rec c782ffb6-c530-4500-940d-2a4ecf905b63 +2024-09-11 09:05:26.677301 2024-09-11 09:05:26.677307 mef 5118 R rec 103c8c2c-ae21-44e3-b3f4-8a6967df7764 +2024-09-11 09:05:26.73098 2024-09-11 09:05:26.730985 mef 5119 R rec d3f1f838-3532-49b1-8aa5-4bf444bbaa9a +2024-09-11 09:05:26.790218 2024-09-11 09:05:26.790224 mef 5120 R rec 9dacc217-0c96-4c23-aee2-b9c89bf26666 +2024-09-11 09:05:26.840301 2024-09-11 09:05:26.840306 mef 5121 R rec 0269639a-dec7-4fcf-a438-1afc3ada12d1 +2024-09-11 09:05:26.892861 2024-09-11 09:05:26.892866 mef 5122 R rec b0652208-6a40-4c7e-b5a6-c97c2795bbf2 +2024-09-11 09:05:26.944558 2024-09-11 09:05:26.944562 mef 5123 R rec 6965718c-9ed6-41ca-90e5-771820c6e3b7 +2024-09-11 09:05:27.003367 2024-09-11 09:05:27.003376 mef 5124 R rec 91184798-1037-448f-839e-e307eba1a958 +2024-09-11 09:05:27.05865 2024-09-11 09:05:27.058655 mef 5125 R rec cf75fcc9-429c-4eb6-a611-a2ea2757e5db +2024-09-11 09:05:27.112905 2024-09-11 09:05:27.11291 mef 5126 R rec 359ff5a4-3c77-4df6-bce9-b6a0306ad37b +2024-09-11 09:05:27.172987 2024-09-11 09:05:27.172992 mef 5127 R rec 73fbe457-fefc-4fe6-87e9-2b72e81f35f2 +2024-09-11 09:05:27.229948 2024-09-11 09:05:27.229953 mef 5128 R rec c78b846b-47c9-4f08-af8f-d9583e32bf2a +2024-09-11 09:05:27.288465 2024-09-11 09:05:27.28847 mef 5129 R rec f4a163b0-8ff1-4f2b-8b87-0beace70219c +2024-09-11 09:05:27.34847 2024-09-11 09:05:27.348476 mef 5130 R rec a446d0de-4544-4131-bfb8-abebddffbd36 +2024-09-11 09:05:27.408687 2024-09-11 09:05:27.408691 mef 5131 R rec 83925311-9bcc-4738-98d4-d1aec615dfe0 +2024-09-11 09:05:27.463072 2024-09-11 09:05:27.463076 mef 5132 R rec 6a5be84d-8280-49cd-ab5b-a6e853670c5a +2024-09-11 09:05:27.522376 2024-09-11 09:05:27.522381 mef 5133 R rec 1899338b-f92b-43d9-a338-c9afe0d58569 +2024-09-11 09:05:27.576831 2024-09-11 09:05:27.576838 mef 5134 R rec 85e235d5-22c7-46d7-b769-71188badd136 +2024-09-11 09:05:27.631947 2024-09-11 09:05:27.631951 mef 5135 R rec 49a2740f-ef2e-467e-88b1-993cd7083f79 +2024-09-11 09:05:27.68568 2024-09-11 09:05:27.685685 mef 5136 R rec 1ebfa5ae-b6a5-4ca3-8b0c-51a423a6cb1e +2024-09-11 09:05:27.738679 2024-09-11 09:05:27.738687 mef 5137 R rec f9b6770f-4b7f-453f-b90f-4b8d4f04a69d +2024-09-11 09:05:27.809389 2024-09-11 09:05:27.809395 mef 5138 R rec 4c23ea4e-bb37-4ddd-a75e-42c24f2468dc +2024-09-11 09:05:27.864676 2024-09-11 09:05:27.864681 mef 5139 R rec 64f0a5c8-8e7c-4564-a2e5-8d6bfade6d19 +2024-09-11 09:05:27.918413 2024-09-11 09:05:27.918418 mef 5140 R rec 31bd19a1-dd90-4a78-8235-b9337cdfa5ac +2024-09-11 09:05:27.97429 2024-09-11 09:05:27.974296 mef 5141 R rec 6524e6f7-a74d-4ffe-82a4-aa6edb0ac7c2 +2024-09-11 09:05:28.03686 2024-09-11 09:05:28.036866 mef 5142 R rec 4cbda14a-0a0f-4642-a43e-de43ea81cca4 +2024-09-11 09:05:28.090379 2024-09-11 09:05:28.090384 mef 5143 R rec 56abed3b-9ea0-4e89-aa34-ca4fe6d8c8e5 +2024-09-11 09:05:28.148724 2024-09-11 09:05:28.148729 mef 5144 R rec 8aaf73fa-e7f6-4f27-b051-5fc405833ea8 +2024-09-11 09:05:28.201665 2024-09-11 09:05:28.201671 mef 5145 R rec 509f5876-da56-418c-9359-72074ea7a10e +2024-09-11 09:05:28.257335 2024-09-11 09:05:28.257339 mef 5146 R rec 820f9bd6-62f0-4b4f-92ad-970517052236 +2024-09-11 09:05:28.311435 2024-09-11 09:05:28.31144 mef 5147 R rec 5e598a3f-11b9-4a24-bd6a-18928487853e +2024-09-11 09:05:28.374634 2024-09-11 09:05:28.37464 mef 5148 R rec d93a5bf4-dddf-436b-b160-9a474ce5f5b5 +2024-09-11 09:05:28.438619 2024-09-11 09:05:28.438624 mef 5149 R rec cf65f281-0a8d-454e-b8a9-b9ff95208ede +2024-09-11 09:05:28.498867 2024-09-11 09:05:28.498872 mef 5150 R rec e06b3ee7-c17d-44fa-bb24-d4340efaea84 +2024-09-11 09:05:28.55683 2024-09-11 09:05:28.556835 mef 5151 R rec c517f304-745e-4e7b-bb5e-242b610a6121 +2024-09-11 09:05:28.61947 2024-09-11 09:05:28.619476 mef 5152 R rec 7f922968-bf58-45a7-b3ea-96b69a7ab403 +2024-09-11 09:05:28.735918 2024-09-11 09:05:28.735924 mef 5153 R rec cc6f8402-b371-4cea-83ad-e59f23805d8f +2024-09-11 09:05:28.789558 2024-09-11 09:05:28.789563 mef 5154 R rec 91efe217-88f2-46bd-9bd6-89aaf2cec68e +2024-09-11 09:05:28.855993 2024-09-11 09:05:28.855998 mef 5155 R rec 3946fb23-7634-4215-8a99-7ac51ea9d108 +2024-09-11 09:05:28.915318 2024-09-11 09:05:28.915323 mef 5156 R rec 547af2ac-1b3d-4bff-9dee-8518126861b2 +2024-09-11 09:05:28.965512 2024-09-11 09:05:28.965517 mef 5157 R rec 899d15c9-0696-435b-96d6-4a3323603a66 +2024-09-11 09:05:29.030566 2024-09-11 09:05:29.030571 mef 5158 R rec 31ca3c4c-efda-4204-8aa7-824d4a9ba42f +2024-09-11 09:05:29.087966 2024-09-11 09:05:29.087971 mef 5159 R rec 27a922b7-c095-42ee-a90a-aa84ae06416d +2024-09-11 09:05:29.143979 2024-09-11 09:05:29.143984 mef 5160 R rec 1b0db6a1-99ff-40d2-994c-c2604edf44ab +2024-09-11 09:05:29.200825 2024-09-11 09:05:29.20083 mef 5161 R rec 07af9fba-b665-433f-a54e-5b0c0e6385a0 +2024-09-11 09:05:29.261227 2024-09-11 09:05:29.261232 mef 5162 R rec ee9df3f2-ed47-488a-a07d-f930f1695824 +2024-09-11 09:05:29.316071 2024-09-11 09:05:29.316076 mef 5163 R rec dbf77179-fc65-4211-9b5e-8b6190687788 +2024-09-11 09:05:29.366675 2024-09-11 09:05:29.36668 mef 5164 R rec 75cfa167-fe7c-4a23-86e3-208495db432f +2024-09-11 09:05:29.425953 2024-09-11 09:05:29.425958 mef 5165 R rec 27f1de35-313a-465e-8309-2f077b6b84d0 +2024-09-11 09:05:29.48889 2024-09-11 09:05:29.488894 mef 5166 R rec c530c03c-9cc4-4e82-949b-866e35fb8c21 +2024-09-11 09:05:29.545061 2024-09-11 09:05:29.545066 mef 5167 R rec 1e977b7f-8cae-4b3b-93f3-3499c5c154a2 +2024-09-11 09:05:29.602487 2024-09-11 09:05:29.602498 mef 5168 R rec 43173403-eb07-4187-9adc-3ed45988e3c8 +2024-09-11 09:05:29.656995 2024-09-11 09:05:29.657001 mef 5169 R rec 0d6dcbc9-1f37-4a3d-8ebb-80b9246e63cd +2024-09-11 09:05:29.709805 2024-09-11 09:05:29.70981 mef 5170 R rec 105fdf47-50a8-4f8c-9cbe-4529fdffd2a6 +2024-09-11 09:05:29.761619 2024-09-11 09:05:29.761624 mef 5171 R rec d47a8462-254b-4c5c-a303-3ff2d7fd9735 +2024-09-11 09:05:29.814435 2024-09-11 09:05:29.81444 mef 5172 R rec a38df8c5-632e-41d9-a411-3bba3887d116 +2024-09-11 09:05:29.868151 2024-09-11 09:05:29.868157 mef 5173 R rec d0ec21a3-b6c3-46bf-94b0-bd588b911620 +2024-09-11 09:05:29.920833 2024-09-11 09:05:29.920838 mef 5174 R rec fe78c27e-16cd-4800-bf30-9d10c3c49c18 +2024-09-11 09:05:29.974265 2024-09-11 09:05:29.97427 mef 5175 R rec dc5da4af-fda8-4c82-b0b9-d19329ddaff2 +2024-09-11 09:05:30.029094 2024-09-11 09:05:30.029099 mef 5176 R rec e89c852b-ee03-4cd3-accc-8c57ccd9944c +2024-09-11 09:05:30.08042 2024-09-11 09:05:30.080426 mef 5177 R rec 52227a0d-f682-421d-af60-9b7e16151487 +2024-09-11 09:05:30.134587 2024-09-11 09:05:30.134592 mef 5178 R rec ab2f690d-7660-4b67-ae9f-6965de50adea +2024-09-11 09:05:30.1919 2024-09-11 09:05:30.191906 mef 5179 R rec 900eb41b-1627-4ab1-b4e7-dc4e48466a47 +2024-09-11 09:05:30.266104 2024-09-11 09:05:30.266108 mef 5180 R rec 5c2b3060-f711-455b-8b8b-894cd4c70492 +2024-09-11 09:05:30.319155 2024-09-11 09:05:30.319159 mef 5181 R rec 35903f74-e4d6-4e04-be10-8e1342991108 +2024-09-11 09:05:30.38008 2024-09-11 09:05:30.380086 mef 5182 R rec 2ad0e394-df67-4197-bff7-30f1b0dcb8b2 +2024-09-11 09:05:30.439138 2024-09-11 09:05:30.439143 mef 5183 R rec b302f666-046b-4185-b186-12dee4b0226b +2024-09-11 09:05:30.562172 2024-09-11 09:05:30.562177 mef 5184 R rec b9f600c2-75c2-4df2-9975-d0a637be24a2 +2024-09-11 09:05:30.614195 2024-09-11 09:05:30.6142 mef 5185 R rec 8f08cdb5-cb18-4ab3-b99c-564147866376 +2024-09-11 09:05:30.667899 2024-09-11 09:05:30.667905 mef 5186 R rec 8239f874-5633-4de6-9c4d-98a5ac3c0bbc +2024-09-11 09:05:30.726164 2024-09-11 09:05:30.726169 mef 5187 R rec 37eaa46a-e77d-46b9-88c2-c9e7ee875091 +2024-09-11 09:05:30.78072 2024-09-11 09:05:30.780726 mef 5188 R rec 012b1075-cf9c-4b1e-be46-a363a06dbf5b +2024-09-11 09:05:30.834429 2024-09-11 09:05:30.834434 mef 5189 R rec 3e4da094-fa93-4fb4-bfb1-1d79693a1cb7 +2024-09-11 09:05:30.896412 2024-09-11 09:05:30.896418 mef 5190 R rec 739d5e89-144d-40b7-a6e7-75a3967a1eee +2024-09-11 09:05:31.010563 2024-09-11 09:05:31.010569 mef 5191 R rec 033554f4-3f30-43d7-a202-1de410089270 +2024-09-11 09:05:31.065973 2024-09-11 09:05:31.065978 mef 5192 R rec c2017277-7da2-4910-8c90-d81b70d9c5f6 +2024-09-11 09:05:31.117579 2024-09-11 09:05:31.117584 mef 5193 R rec cb5c7074-3383-4e09-bd65-6df9ed54eac5 +2024-09-11 09:05:31.173881 2024-09-11 09:05:31.173886 mef 5194 R rec 98bf4d87-2aa0-4054-a3b5-3813c485fd00 +2024-09-11 09:05:31.23397 2024-09-11 09:05:31.233976 mef 5195 R rec bd71148d-db26-469f-9b67-ab84f229a1fb +2024-09-11 09:05:31.296632 2024-09-11 09:05:31.296638 mef 5196 R rec 089285c3-57a2-42ab-8642-6e570dc00432 +2024-09-11 09:05:31.350473 2024-09-11 09:05:31.350478 mef 5197 R rec e1667497-6b8c-462d-9936-01eff11ad474 +2024-09-11 09:05:31.403973 2024-09-11 09:05:31.403978 mef 5198 R rec 645c0deb-cd58-4b62-bc3f-8c72d1df2f14 +2024-09-11 09:05:31.465101 2024-09-11 09:05:31.465106 mef 5199 R rec bcfd9eaa-a239-44eb-91d7-50846371d14a +2024-09-11 09:05:31.521206 2024-09-11 09:05:31.521212 mef 5200 R rec 7ea5125d-17f1-47c0-8247-8b736ab10ea7 +2024-09-11 09:05:31.580255 2024-09-11 09:05:31.58026 mef 5201 R rec c067a5a3-9ab9-42da-bbf3-94335bcfcbfb +2024-09-11 09:05:31.636007 2024-09-11 09:05:31.636012 mef 5202 R rec 57a5f78a-5838-4eb6-bb0b-ecdbdc8bc5e9 +2024-09-11 09:05:31.688005 2024-09-11 09:05:31.68801 mef 5203 R rec 87ae90ae-5a5f-4991-849b-95414cc085c0 +2024-09-11 09:05:31.741562 2024-09-11 09:05:31.741567 mef 5204 R rec 60355315-1225-47e7-a9b7-1f49257bd73b +2024-09-11 09:05:31.79728 2024-09-11 09:05:31.797284 mef 5205 R rec 373e00b8-a7f3-4160-a502-a18a24734ec1 +2024-09-11 09:05:31.851099 2024-09-11 09:05:31.851104 mef 5206 R rec 094b06d4-9dea-45ce-8b87-b6d91c669d92 +2024-09-11 09:05:31.904481 2024-09-11 09:05:31.904487 mef 5207 R rec 04b30e46-4543-4739-a968-0d1965fecc59 +2024-09-11 09:05:31.962145 2024-09-11 09:05:31.962151 mef 5208 R rec 5ed39960-a873-4237-b4d3-0792e3bc2329 +2024-09-11 09:05:32.015049 2024-09-11 09:05:32.015054 mef 5209 R rec 9125b1cf-85b2-40e8-8677-f678f78c2a3d +2024-09-11 09:05:32.067912 2024-09-11 09:05:32.067918 mef 5210 R rec 0426d289-7277-4080-8dae-ea77c3a61f49 +2024-09-11 09:05:32.12862 2024-09-11 09:05:32.128625 mef 5211 R rec 9d6916ae-4404-4eb4-aba2-1cd10228078c +2024-09-11 09:05:32.185027 2024-09-11 09:05:32.185033 mef 5212 R rec 9ec74139-5ab6-46c3-972b-3e6ae775abd4 +2024-09-11 09:05:32.243867 2024-09-11 09:05:32.243872 mef 5213 R rec d456466e-3910-46ae-8956-9f3edf69f221 +2024-09-11 09:05:32.302302 2024-09-11 09:05:32.302308 mef 5214 R rec 700d0807-6f2a-4c02-8c9f-a341207eaa7d +2024-09-11 09:05:32.36077 2024-09-11 09:05:32.360776 mef 5215 R rec 8fd18a0e-0fe1-419b-b962-0fdcf9ee677d +2024-09-11 09:05:32.420317 2024-09-11 09:05:32.420322 mef 5216 R rec 81fd22c7-188c-48ad-806e-eaa94e0d2c3e +2024-09-11 09:05:32.484901 2024-09-11 09:05:32.484907 mef 5217 R rec b2ea2c51-77d0-440d-9bb2-60e2d542690b +2024-09-11 09:05:32.542302 2024-09-11 09:05:32.542307 mef 5218 R rec d7dae846-1e58-4b63-919d-89eb691a1a57 +2024-09-11 09:05:32.594833 2024-09-11 09:05:32.594838 mef 5219 R rec 1d411642-b2fe-4501-aaa0-ffc9edc479ad +2024-09-11 09:05:32.653914 2024-09-11 09:05:32.65392 mef 5220 R rec fcfdeba2-1057-4289-9a7d-f39477716229 +2024-09-11 09:05:32.707957 2024-09-11 09:05:32.707963 mef 5221 R rec 22baaca8-f74a-462c-9ac5-39eb16d0b7b1 +2024-09-11 09:05:32.764815 2024-09-11 09:05:32.764819 mef 5222 R rec d5711474-b656-4306-9c11-5c0d03a47003 +2024-09-11 09:05:32.828921 2024-09-11 09:05:32.828927 mef 5223 R rec 3f65ca43-a6d5-47ae-a2a1-de77eb99a664 +2024-09-11 09:05:32.886 2024-09-11 09:05:32.886006 mef 5224 R rec 63b4cb90-c02e-420b-b2a9-0d363680f359 +2024-09-11 09:05:32.941131 2024-09-11 09:05:32.941136 mef 5225 R rec 81a856f3-bc6e-41a8-bbf5-978e43b3e434 +2024-09-11 09:05:32.992908 2024-09-11 09:05:32.992914 mef 5226 R rec f78896a6-57f5-46bc-8cb4-fa776e04978b +2024-09-11 09:05:33.053375 2024-09-11 09:05:33.053381 mef 5227 R rec 5a11cacd-1ba8-495e-b920-4674429995c4 +2024-09-11 09:05:33.105927 2024-09-11 09:05:33.105932 mef 5228 R rec f05aa858-5922-4805-89a7-68c7c93599f5 +2024-09-11 09:05:33.15983 2024-09-11 09:05:33.159835 mef 5229 R rec d759e9d0-a785-4eab-9a51-c7a1b1630fcd +2024-09-11 09:05:33.288996 2024-09-11 09:05:33.289001 mef 5230 R rec bf8161ba-5044-4fd8-87ff-d019bbedccc9 +2024-09-11 09:05:33.342086 2024-09-11 09:05:33.342092 mef 5231 R rec 939f7332-b78c-4974-9fa4-1b0ca1695327 +2024-09-11 09:05:33.398068 2024-09-11 09:05:33.398073 mef 5232 R rec 5cc7efa2-10fa-4988-bbda-24ca25da405d +2024-09-11 09:05:33.45131 2024-09-11 09:05:33.451316 mef 5233 R rec b8f23c7e-842e-43e2-b47d-96308baf4622 +2024-09-11 09:05:33.504732 2024-09-11 09:05:33.504738 mef 5234 R rec 8933b1e0-d3d9-4d85-a628-ea60175e1ecd +2024-09-11 09:05:33.557694 2024-09-11 09:05:33.557698 mef 5235 R rec 2941d2e9-5ebe-4029-b7fc-6a7f59201d3f +2024-09-11 09:05:33.611871 2024-09-11 09:05:33.611876 mef 5236 R rec 8b70fbff-f9ce-435e-a4b4-cb4a769cc141 +2024-09-11 09:05:33.676213 2024-09-11 09:05:33.676218 mef 5237 R rec 706893e5-235d-474f-be45-521132e6f5a9 +2024-09-11 09:05:33.731265 2024-09-11 09:05:33.731271 mef 5238 R rec c6116bcf-5680-47b8-9594-6525a7cd05b0 +2024-09-11 09:05:33.78214 2024-09-11 09:05:33.782145 mef 5239 R rec 917bea95-447d-41f7-969f-a0ef4eba6cd0 +2024-09-11 09:05:33.842451 2024-09-11 09:05:33.842457 mef 5240 R rec 28717bb2-8873-494a-9eb1-5eccd9c9875b +2024-09-11 09:05:33.896334 2024-09-11 09:05:33.896339 mef 5241 R rec 83d0c9e5-8e34-44e9-9dec-6895f0b01765 +2024-09-11 09:05:33.948072 2024-09-11 09:05:33.948078 mef 5242 R rec a55974a0-df28-4c14-a909-c1856a99b649 +2024-09-11 09:05:34.005545 2024-09-11 09:05:34.005552 mef 5243 R rec 639bac4d-880c-4dfe-a155-af14d05abfa1 +2024-09-11 09:05:34.065971 2024-09-11 09:05:34.065975 mef 5244 R rec 24781ba3-b51e-4692-bed6-f77ade4685ad +2024-09-11 09:05:34.135261 2024-09-11 09:05:34.135267 mef 5245 R rec 1eeb8232-15e6-4f4b-8653-b530d3a24463 +2024-09-11 09:05:34.191749 2024-09-11 09:05:34.191754 mef 5246 R rec e45f24e5-c009-4026-96a8-4a544fd6ca0c +2024-09-11 09:05:34.248105 2024-09-11 09:05:34.24811 mef 5247 R rec a94aac56-b4d0-4985-8d58-c0828b0e6449 +2024-09-11 09:05:34.307713 2024-09-11 09:05:34.307718 mef 5248 R rec a999cb8f-c53d-49a4-9f79-4523746e5193 +2024-09-11 09:05:34.412599 2024-09-11 09:05:34.412603 mef 5249 R rec 7931b7c8-f334-4d72-971e-015834cd21de +2024-09-11 09:05:34.46712 2024-09-11 09:05:34.467126 mef 5250 R rec bdec7d50-da5d-4f38-8dd2-0f93d55ec528 +2024-09-11 09:05:34.521232 2024-09-11 09:05:34.521238 mef 5251 R rec 32f50fd9-f977-401e-a44f-5c92145bab1a +2024-09-11 09:05:34.573409 2024-09-11 09:05:34.573414 mef 5252 R rec 9fae3edf-6ef5-41b2-be7a-e3740e77192e +2024-09-11 09:05:34.62653 2024-09-11 09:05:34.626534 mef 5253 R rec 630e7b2f-0504-404d-aae6-54a335e1b5d4 +2024-09-11 09:05:34.680945 2024-09-11 09:05:34.68095 mef 5254 R rec 5345f0da-e86c-4616-8062-04e8e3878481 +2024-09-11 09:05:34.744224 2024-09-11 09:05:34.74423 mef 5255 R rec 7823e5f2-7ba1-46f5-bfaa-ac30cc927ccb +2024-09-11 09:05:34.924192 2024-09-11 09:05:34.924197 mef 5256 R rec a9b66288-d44d-43c7-9bb9-d51998bc93bc +2024-09-11 09:05:34.982838 2024-09-11 09:05:34.982844 mef 5257 R rec 69278959-51d1-49d1-a506-4b8ad2da25a2 +2024-09-11 09:05:35.05105 2024-09-11 09:05:35.051056 mef 5258 R rec 813186a1-e496-45ab-9a77-cf009cee604e +2024-09-11 09:05:35.102968 2024-09-11 09:05:35.102973 mef 5259 R rec 45b13cbb-c292-4ba8-824a-48bd33b5f60c +2024-09-11 09:05:35.153322 2024-09-11 09:05:35.153327 mef 5260 R rec 0d8a4bec-9eb6-4eae-a65e-65dc3b569e68 +2024-09-11 09:05:35.216301 2024-09-11 09:05:35.216308 mef 5261 R rec 4227430b-27bd-4baa-99a6-d5b505774e34 +2024-09-11 09:05:35.274912 2024-09-11 09:05:35.274917 mef 5262 R rec 150f62c9-e91a-45dd-8e4b-b51fda369fd6 +2024-09-11 09:05:35.333478 2024-09-11 09:05:35.333484 mef 5263 R rec ee92c44d-6271-477c-9ca3-f5a81c9367b1 +2024-09-11 09:05:35.383214 2024-09-11 09:05:35.383219 mef 5264 R rec 9cc0dea6-acb7-4b36-9055-f56be42fd94f +2024-09-11 09:05:35.437172 2024-09-11 09:05:35.437178 mef 5265 R rec 6e15977e-d9ae-454e-abe2-4663900d34f9 +2024-09-11 09:05:35.487628 2024-09-11 09:05:35.487633 mef 5266 R rec dc9dcee0-94c7-4d5b-b363-ce861b678433 +2024-09-11 09:05:35.539044 2024-09-11 09:05:35.53905 mef 5267 R rec cb0fa146-940e-48ff-8689-d849f2365433 +2024-09-11 09:05:35.591384 2024-09-11 09:05:35.591389 mef 5268 R rec e34e6613-7103-482d-8f94-4434d71e229d +2024-09-11 09:05:35.644149 2024-09-11 09:05:35.644154 mef 5269 R rec 9562bf18-6635-4dbc-9023-a63303f1c168 +2024-09-11 09:05:35.697097 2024-09-11 09:05:35.697102 mef 5270 R rec 1b9a1237-677d-4497-b3a9-79ef6ac4997f +2024-09-11 09:05:35.750338 2024-09-11 09:05:35.750343 mef 5271 R rec a65808a5-9f74-4154-be4a-65c2f2c48912 +2024-09-11 09:05:35.801069 2024-09-11 09:05:35.801075 mef 5272 R rec a58a2dd7-24c4-4287-ac12-f035b3bf79c1 +2024-09-11 09:05:35.865309 2024-09-11 09:05:35.865314 mef 5273 R rec e6b10a1d-4f41-4c3c-b932-58aa34bb16d2 +2024-09-11 09:05:35.91916 2024-09-11 09:05:35.919165 mef 5274 R rec b0af998c-6e02-4d55-9a39-d2077da69aac +2024-09-11 09:05:36.045285 2024-09-11 09:05:36.04529 mef 5275 R rec f795bf5a-be23-4c26-9956-db53ddf06a73 +2024-09-11 09:05:36.10629 2024-09-11 09:05:36.106296 mef 5276 R rec ff9b021b-e380-4ef9-a31b-fccf36d6b01e +2024-09-11 09:05:36.159074 2024-09-11 09:05:36.15908 mef 5277 R rec 7b3cfc5c-66b7-414d-a7d2-f71fdeaa6c51 +2024-09-11 09:05:36.211822 2024-09-11 09:05:36.211827 mef 5278 R rec c9ebe448-491e-4408-b7fe-7c942aa18317 +2024-09-11 09:05:36.265163 2024-09-11 09:05:36.265167 mef 5279 R rec 7011ad2a-09d4-434e-a190-e162476e7a23 +2024-09-11 09:05:36.316128 2024-09-11 09:05:36.316134 mef 5280 R rec a111b5d4-be07-43a3-b101-6c792e07d30a +2024-09-11 09:05:36.370266 2024-09-11 09:05:36.370272 mef 5281 R rec e777ec4a-8d17-4d7b-b0b5-8186fb1ed97e +2024-09-11 09:05:36.42684 2024-09-11 09:05:36.426845 mef 5282 R rec 8a4e43ce-05a8-4d52-8dbe-6a854a9acea3 +2024-09-11 09:05:36.482337 2024-09-11 09:05:36.482342 mef 5283 R rec d4ebeac6-ce41-45bc-acb8-2bf580a7f407 +2024-09-11 09:05:36.536749 2024-09-11 09:05:36.536754 mef 5284 R rec 8ae97965-826a-4813-8474-e5403d3761e1 +2024-09-11 09:05:36.588824 2024-09-11 09:05:36.588838 mef 5285 R rec 031c71c2-c17b-4079-ac6f-127b42434689 +2024-09-11 09:05:36.647099 2024-09-11 09:05:36.647104 mef 5286 R rec d7c92c73-d792-46ad-9535-d70478dcd0c4 +2024-09-11 09:05:36.698048 2024-09-11 09:05:36.698053 mef 5287 R rec 427f5d7d-cefe-4e00-9e43-974e9cd834cd +2024-09-11 09:05:36.754174 2024-09-11 09:05:36.754179 mef 5288 R rec 369b2017-998b-4acb-bc84-1a43d13ea61e +2024-09-11 09:05:36.872882 2024-09-11 09:05:36.872887 mef 5289 R rec 0ab31f0d-a1fc-4ed7-b883-a1f8a8c2ddb7 +2024-09-11 09:05:36.929029 2024-09-11 09:05:36.929033 mef 5290 R rec 57cd8725-8683-4ff4-913c-6b846cf48723 +2024-09-11 09:05:36.985036 2024-09-11 09:05:36.985041 mef 5291 R rec c0ebd747-c5fc-409b-89b6-f21fefaf2105 +2024-09-11 09:05:37.045007 2024-09-11 09:05:37.045011 mef 5292 R rec b0edeff0-08fd-4800-8db7-3cdab4efb600 +2024-09-11 09:05:37.099216 2024-09-11 09:05:37.099221 mef 5293 R rec e70fcc5e-c324-490b-a20f-e546899b5eba +2024-09-11 09:05:37.162503 2024-09-11 09:05:37.162508 mef 5294 R rec 7551b099-0012-4751-bc46-2cc225aea9c2 +2024-09-11 09:05:37.226448 2024-09-11 09:05:37.226453 mef 5295 R rec 69eeb3aa-4e07-4f9c-ac48-2706f62a6cb9 +2024-09-11 09:05:37.288388 2024-09-11 09:05:37.288393 mef 5296 R rec 1ab57bce-4982-4b4b-872f-6618c6d8f0d7 +2024-09-11 09:05:37.342708 2024-09-11 09:05:37.342713 mef 5297 R rec 15c79309-7514-4d09-a192-59f1eae06c91 +2024-09-11 09:05:37.398263 2024-09-11 09:05:37.398268 mef 5298 R rec 71f0c277-b571-49e3-b7c2-30bff1991386 +2024-09-11 09:05:37.451814 2024-09-11 09:05:37.451819 mef 5299 R rec d2ab394f-a50c-4c3e-8a8f-152b17c9b910 +2024-09-11 09:05:37.508272 2024-09-11 09:05:37.508277 mef 5300 R rec e9ccedf8-8392-4c25-8daa-6da650de86c7 +2024-09-11 09:05:37.569409 2024-09-11 09:05:37.569415 mef 5301 R rec 497e5499-919c-4437-a2ff-d872402d7270 +2024-09-11 09:05:37.627729 2024-09-11 09:05:37.627734 mef 5302 R rec 3f39296b-c580-446e-abb2-97e53f85e7fe +2024-09-11 09:05:37.686265 2024-09-11 09:05:37.68627 mef 5303 R rec 9ba6405b-3277-450b-a838-5abf55ef9b90 +2024-09-11 09:05:37.741197 2024-09-11 09:05:37.741202 mef 5304 R rec 7ace9979-c73d-4b86-8c2e-b8cfe510b45c +2024-09-11 09:05:37.793122 2024-09-11 09:05:37.793128 mef 5305 R rec a3e6b626-872c-49dd-8cf1-5d222e7fcf57 +2024-09-11 09:05:37.844818 2024-09-11 09:05:37.844823 mef 5306 R rec 7427c08f-e43e-4e67-b729-a8470b503484 +2024-09-11 09:05:37.898057 2024-09-11 09:05:37.898061 mef 5307 R rec ff4ca8f3-adf9-448a-bf1c-90a7eadaa7a5 +2024-09-11 09:05:37.963737 2024-09-11 09:05:37.963742 mef 5308 R rec 29861c06-32b3-47e0-9c61-720625177a99 +2024-09-11 09:05:38.038291 2024-09-11 09:05:38.038296 mef 5309 R rec df210013-9bbc-4946-9df2-3c04bafffeab +2024-09-11 09:05:38.089769 2024-09-11 09:05:38.089774 mef 5310 R rec 34828cf9-e75d-4f0b-b628-709a1054f89c +2024-09-11 09:05:38.20271 2024-09-11 09:05:38.202717 mef 5311 R rec b556b7f1-bab6-4aae-a878-0bed6eb25bfd +2024-09-11 09:05:38.254252 2024-09-11 09:05:38.254258 mef 5312 R rec adbdb98f-a142-4638-b8de-81f4e67713a0 +2024-09-11 09:05:38.305448 2024-09-11 09:05:38.305452 mef 5313 R rec de5ad4f1-ec09-4cb9-8493-be168d8abcdb +2024-09-11 09:05:38.356276 2024-09-11 09:05:38.356281 mef 5314 R rec 2c6135f0-db9f-4870-a456-ca7db8a91c86 +2024-09-11 09:05:38.418176 2024-09-11 09:05:38.418181 mef 5315 R rec c4cfa76b-c462-4534-9780-9a031e9280f3 +2024-09-11 09:05:38.470772 2024-09-11 09:05:38.470776 mef 5316 R rec e9a6d1a7-89c9-4cda-86e2-7c6683f3736d +2024-09-11 09:05:38.527591 2024-09-11 09:05:38.527596 mef 5317 R rec 42a6adb8-b8bc-40d7-aebc-97e08996d786 +2024-09-11 09:05:38.58122 2024-09-11 09:05:38.581226 mef 5318 R rec d00091d4-4176-41b5-af0c-282bf4306d0a +2024-09-11 09:05:38.637861 2024-09-11 09:05:38.637866 mef 5319 R rec 824a7f3b-2a68-4ab7-bfd7-0a21c5f04d22 +2024-09-11 09:05:38.68871 2024-09-11 09:05:38.688716 mef 5320 R rec 8c535dec-f55e-4f04-a859-bb62c4076925 +2024-09-11 09:05:38.741769 2024-09-11 09:05:38.741774 mef 5321 R rec 6285a88a-b530-438d-aac2-6b3db6f06f21 +2024-09-11 09:05:38.797628 2024-09-11 09:05:38.797632 mef 5322 R rec 92971398-6cf9-4c6f-ba91-b5a708c67521 +2024-09-11 09:05:38.848929 2024-09-11 09:05:38.848935 mef 5323 R rec c1fd1a1b-bfeb-4fda-a91b-bfb2085c3cb0 +2024-09-11 09:05:38.900124 2024-09-11 09:05:38.900128 mef 5324 R rec e5bddfcc-506a-439c-91c0-8d7ede8789ae +2024-09-11 09:05:38.953214 2024-09-11 09:05:38.95322 mef 5325 R rec 364d8290-064b-408b-943c-53d404a6b068 +2024-09-11 09:05:39.005206 2024-09-11 09:05:39.005213 mef 5326 R rec adbb4a75-d422-4122-884c-712f0234ff24 +2024-09-11 09:05:39.060586 2024-09-11 09:05:39.060592 mef 5327 R rec 3da4e2cc-7d02-41b7-8b31-775055f2efba +2024-09-11 09:05:39.114188 2024-09-11 09:05:39.114193 mef 5328 R rec 69a31851-af6a-4fd5-a20f-f86ce182b63a +2024-09-11 09:05:39.197234 2024-09-11 09:05:39.197238 mef 5329 R rec 7339e3d7-b498-48fc-b55c-c48731cc25cf +2024-09-11 09:05:39.256598 2024-09-11 09:05:39.256602 mef 5330 R rec 936d609a-64ca-4da6-9df4-4ccf35d500cf +2024-09-11 09:05:39.308125 2024-09-11 09:05:39.30813 mef 5331 R rec 832c40d4-4c9f-43d4-ba08-18ba5fd02d64 +2024-09-11 09:05:39.362603 2024-09-11 09:05:39.362608 mef 5332 R rec f1f2d0d5-9b4d-40ea-8641-5bd1934bc720 +2024-09-11 09:05:39.416366 2024-09-11 09:05:39.416371 mef 5333 R rec 0b14f698-0d48-4327-bec7-89af3a286121 +2024-09-11 09:05:39.469226 2024-09-11 09:05:39.46923 mef 5334 R rec d07796ea-8325-4c8d-8e9b-b4aab47cae75 +2024-09-11 09:05:39.523286 2024-09-11 09:05:39.523291 mef 5335 R rec 8ef5f846-2c6e-404e-a0be-5b2635a2c61a +2024-09-11 09:05:39.578432 2024-09-11 09:05:39.578437 mef 5336 R rec edcf8226-c167-48ca-9953-387228c26d87 +2024-09-11 09:05:39.641401 2024-09-11 09:05:39.641406 mef 5337 R rec d71f5d2e-239b-41df-afd6-bc56bd217fcd +2024-09-11 09:05:39.702359 2024-09-11 09:05:39.702364 mef 5338 R rec b78a2001-119a-4656-8730-ae7794a6e3dc +2024-09-11 09:05:39.755706 2024-09-11 09:05:39.755711 mef 5339 R rec f4f67e81-3d9f-4c33-b490-e3a6be58f389 +2024-09-11 09:05:39.812355 2024-09-11 09:05:39.81236 mef 5340 R rec 07740d05-a898-420b-85d6-015237c87acf +2024-09-11 09:05:39.867158 2024-09-11 09:05:39.867162 mef 5341 R rec 1585de16-4a9b-4a7d-992f-a1eb29c0a161 +2024-09-11 09:05:39.919722 2024-09-11 09:05:39.919727 mef 5342 R rec 5f9c9729-18b3-413f-88f6-c5f66d67c746 +2024-09-11 09:05:39.969221 2024-09-11 09:05:39.969236 mef 5343 R rec 5cb95ee7-5612-4577-86c7-f12bf7cbe02e +2024-09-11 09:05:40.088554 2024-09-11 09:05:40.088559 mef 5344 R rec b762001d-b23b-41d0-a21e-8f5f4f9210d9 +2024-09-11 09:05:40.142383 2024-09-11 09:05:40.142389 mef 5345 R rec a2636332-465c-4c04-94a6-fe1fafe1dad1 +2024-09-11 09:05:40.196027 2024-09-11 09:05:40.196031 mef 5346 R rec 030c78ac-63cf-4b2a-bf91-f065ce7c313a +2024-09-11 09:05:40.248261 2024-09-11 09:05:40.248266 mef 5347 R rec 879a2abe-8ca7-4e67-8dd3-6365d55daa24 +2024-09-11 09:05:40.300407 2024-09-11 09:05:40.300412 mef 5348 R rec b19f48ee-3392-4a3b-84a0-719c5dc807a2 +2024-09-11 09:05:40.352706 2024-09-11 09:05:40.352712 mef 5349 R rec 36dd5e82-c510-470e-97a0-cae4e5e1e9a1 +2024-09-11 09:05:40.40898 2024-09-11 09:05:40.408985 mef 5350 R rec 4cb8e6ae-9e5f-4e5c-8ab7-7c2cbce5b0e9 +2024-09-11 09:05:40.468929 2024-09-11 09:05:40.468934 mef 5351 R rec cdaf5b5a-23d7-4552-a822-e09e3bd69e8a +2024-09-11 09:05:40.53358 2024-09-11 09:05:40.533585 mef 5352 R rec b4308bad-348e-499b-aa69-2f042c517bee +2024-09-11 09:05:40.588758 2024-09-11 09:05:40.588763 mef 5353 R rec 5b39a00c-0320-49ad-b9b7-e7f8c522fd62 +2024-09-11 09:05:40.649557 2024-09-11 09:05:40.649562 mef 5354 R rec f137c0c8-d4a1-417e-80fa-bf90deb4ded9 +2024-09-11 09:05:40.705712 2024-09-11 09:05:40.705719 mef 5355 R rec 50fa17d1-c68c-4852-bbf2-1cf7ffed503b +2024-09-11 09:05:40.761011 2024-09-11 09:05:40.761016 mef 5356 R rec f8a1b39e-baf0-4a41-9d9b-740404ad8b16 +2024-09-11 09:05:40.819519 2024-09-11 09:05:40.819526 mef 5357 R rec b352f30d-a377-46e8-896f-1192162d3266 +2024-09-11 09:05:40.883281 2024-09-11 09:05:40.883286 mef 5358 R rec 3c8f07f7-a9d9-415e-ab06-2373c0a5d89f +2024-09-11 09:05:40.936483 2024-09-11 09:05:40.936489 mef 5359 R rec dc8ebec2-0ea2-472e-b803-bd602d3c0d3a +2024-09-11 09:05:40.995058 2024-09-11 09:05:40.995063 mef 5360 R rec 59cdce57-a5c2-40e6-a498-c3735ba2de93 +2024-09-11 09:05:41.050115 2024-09-11 09:05:41.050121 mef 5361 R rec b7aa2495-f12b-43ff-b00b-23171a0f7a80 +2024-09-11 09:05:41.103671 2024-09-11 09:05:41.103679 mef 5362 R rec 9414584e-8d95-4be3-9d29-6f6f60d4abf7 +2024-09-11 09:05:41.22083 2024-09-11 09:05:41.220835 mef 5363 R rec a1f17a3d-a2b9-42c4-bc33-3b7a6d54b6fc +2024-09-11 09:05:41.282702 2024-09-11 09:05:41.282707 mef 5364 R rec a84960bc-b15f-4aa1-af9e-6db8fd88a7e5 +2024-09-11 09:05:41.400334 2024-09-11 09:05:41.400341 mef 5365 R rec 9bfb0f54-2eb9-4c64-8932-18b97c2767cb +2024-09-11 09:05:41.459536 2024-09-11 09:05:41.459541 mef 5366 R rec 8e9fc534-03aa-43df-b1b5-13e00656051b +2024-09-11 09:05:41.518206 2024-09-11 09:05:41.518212 mef 5367 R rec 4fe1fd4f-2fd1-41d6-ac30-df0cf2d1a682 +2024-09-11 09:05:41.574164 2024-09-11 09:05:41.574169 mef 5368 R rec 50498e68-94fb-45c0-a91d-a6c0278f08a9 +2024-09-11 09:05:41.628041 2024-09-11 09:05:41.628045 mef 5369 R rec dff8a00d-dfe3-4000-adc3-abe0e925ee69 +2024-09-11 09:05:41.68595 2024-09-11 09:05:41.685956 mef 5370 R rec 4ab8f621-6a0d-4179-85fd-0318c0195e87 +2024-09-11 09:05:41.745168 2024-09-11 09:05:41.745172 mef 5371 R rec 1f68bcdf-7eab-4ded-a100-341b7b187b86 +2024-09-11 09:05:41.797809 2024-09-11 09:05:41.797814 mef 5372 R rec e96eb6d8-3ded-4d84-8886-9c632a65ef62 +2024-09-11 09:05:41.85737 2024-09-11 09:05:41.857375 mef 5373 R rec 90bf8933-6806-4b45-8a99-c5c89e5c0080 +2024-09-11 09:05:41.920114 2024-09-11 09:05:41.920119 mef 5374 R rec ed5defa4-be8b-4413-81b4-0499b38f7968 +2024-09-11 09:05:41.974336 2024-09-11 09:05:41.974341 mef 5375 R rec 8c2112da-215e-4c81-a3c4-282b0a825dbb +2024-09-11 09:05:42.033795 2024-09-11 09:05:42.033801 mef 5376 R rec fb55a99e-ed55-481c-983d-4319cb041c89 +2024-09-11 09:05:42.089455 2024-09-11 09:05:42.08946 mef 5377 R rec bffe3c1a-5dcf-4c1c-962a-0799336e7a85 +2024-09-11 09:05:42.142128 2024-09-11 09:05:42.142133 mef 5378 R rec 83dd1dd6-d95e-4876-818c-b73a63dbf530 +2024-09-11 09:05:42.20054 2024-09-11 09:05:42.200545 mef 5379 R rec 47f0e527-53d6-4b26-8d3f-33757c85a413 +2024-09-11 09:05:42.256077 2024-09-11 09:05:42.256081 mef 5380 R rec c527108c-fa15-4dd9-b3ed-a2cc84d0f854 +2024-09-11 09:05:42.385476 2024-09-11 09:05:42.385481 mef 5381 R rec 3cf056aa-86d9-4bd0-9ba6-8b1c58f84602 +2024-09-11 09:05:42.443568 2024-09-11 09:05:42.443573 mef 5382 R rec 309a29bf-4b1b-4f6c-a2fa-1e9500b11ada +2024-09-11 09:05:42.500605 2024-09-11 09:05:42.500611 mef 5383 R rec 5cd31622-cda8-47eb-a731-c3dd25a21765 +2024-09-11 09:05:42.563646 2024-09-11 09:05:42.563652 mef 5384 R rec 667fda30-c8e7-428f-970a-10f1ffb7d771 +2024-09-11 09:05:42.693097 2024-09-11 09:05:42.693102 mef 5385 R rec c54a4119-1a7d-47cc-b55d-7eef7cf2b08b +2024-09-11 09:05:42.752389 2024-09-11 09:05:42.752395 mef 5386 R rec 002cf06f-1026-4c6b-9ec9-cab80e90f277 +2024-09-11 09:05:42.809729 2024-09-11 09:05:42.809743 mef 5387 R rec db387c20-f98b-4614-9c85-a9ef1591df5a +2024-09-11 09:05:42.866084 2024-09-11 09:05:42.866088 mef 5388 R rec 27ed183e-0205-40bc-96a5-1c59a5f4790b +2024-09-11 09:05:42.921328 2024-09-11 09:05:42.921334 mef 5389 R rec 563155a9-2e2f-471a-b726-b73325f70139 +2024-09-11 09:05:42.973742 2024-09-11 09:05:42.973747 mef 5390 R rec 06682a63-9213-4f73-af39-e254d86c0d40 +2024-09-11 09:05:43.028184 2024-09-11 09:05:43.028188 mef 5391 R rec e8f81552-a478-4500-9e63-ca461ab10c79 +2024-09-11 09:05:43.088339 2024-09-11 09:05:43.088344 mef 5392 R rec 9e5bd6e3-2e7b-4389-9c6f-f0509b2ae88d +2024-09-11 09:05:43.141255 2024-09-11 09:05:43.14126 mef 5393 R rec 356069e6-1364-4402-95ef-be74fe161669 +2024-09-11 09:05:43.195884 2024-09-11 09:05:43.195889 mef 5394 R rec ef076e6b-9a70-4374-84c4-4aefbd4b6785 +2024-09-11 09:05:43.252654 2024-09-11 09:05:43.25266 mef 5395 R rec 167dc376-6b04-457b-b73c-12b90b02d736 +2024-09-11 09:05:43.309015 2024-09-11 09:05:43.30902 mef 5396 R rec 3df09201-1e93-4134-8d16-8a9676d206d9 +2024-09-11 09:05:43.366262 2024-09-11 09:05:43.366267 mef 5397 R rec 0c36e6da-894a-45f5-a2e4-a297f08727d4 +2024-09-11 09:05:43.42414 2024-09-11 09:05:43.424145 mef 5398 R rec c640c3a2-e004-44be-99b2-eeb5e99e02c0 +2024-09-11 09:05:43.482189 2024-09-11 09:05:43.482195 mef 5399 R rec f7a677b9-5be2-4aa7-8336-a38370d3d00a +2024-09-11 09:05:43.536455 2024-09-11 09:05:43.536461 mef 5400 R rec eb62add5-c3d9-4148-8dda-101e05b56f8a +2024-09-11 09:05:43.591185 2024-09-11 09:05:43.591191 mef 5401 R rec 3acb5f41-0cd5-4d71-8c92-699dac768caa +2024-09-11 09:05:43.650058 2024-09-11 09:05:43.650063 mef 5402 R rec 0daac6ba-dc4f-4e92-8502-bdaaa99d0183 +2024-09-11 09:05:43.701961 2024-09-11 09:05:43.701966 mef 5403 R rec 285fb0dd-664b-4b7a-8da6-79da600722c5 +2024-09-11 09:05:43.754218 2024-09-11 09:05:43.754223 mef 5404 R rec 9a798e84-9c48-4c51-9b7a-42243dc32a8e +2024-09-11 09:05:43.818573 2024-09-11 09:05:43.818579 mef 5405 R rec a9eb2635-a9df-4e04-9d8c-6947b8613d43 +2024-09-11 09:05:43.874188 2024-09-11 09:05:43.874194 mef 5406 R rec d5b1b622-ad30-49a0-974a-9d7d9ef2bda7 +2024-09-11 09:05:43.926946 2024-09-11 09:05:43.926951 mef 5407 R rec b76a4cc7-1b63-42e7-abc5-5122d8b3e6f6 +2024-09-11 09:05:43.979331 2024-09-11 09:05:43.979337 mef 5408 R rec a8055ec1-218d-4881-9303-8fbaac73624f +2024-09-11 09:05:44.034967 2024-09-11 09:05:44.034972 mef 5409 R rec 1d019556-0a19-42d8-bd27-6e59ba3f3324 +2024-09-11 09:05:44.089545 2024-09-11 09:05:44.089549 mef 5410 R rec 7401dcf6-7f34-41df-9e59-afbb168a67b2 +2024-09-11 09:05:44.14913 2024-09-11 09:05:44.149135 mef 5411 R rec 3411bc08-75d7-4d2a-9a19-6506398a7a9d +2024-09-11 09:05:44.20363 2024-09-11 09:05:44.203637 mef 5412 R rec 87ac6215-f991-4696-b7c6-90e2f2cfb906 +2024-09-11 09:05:44.256272 2024-09-11 09:05:44.256278 mef 5413 R rec 78cdb784-8269-435a-81b2-79715715fac2 +2024-09-11 09:05:44.311561 2024-09-11 09:05:44.311566 mef 5414 R rec 6658a061-af58-4830-beae-6c49cb1a0fe5 +2024-09-11 09:05:44.426076 2024-09-11 09:05:44.426081 mef 5415 R rec 8ae2e07e-a66a-4657-a3b8-110cd420247f +2024-09-11 09:05:44.488961 2024-09-11 09:05:44.488966 mef 5416 R rec 70769eb8-d352-4c45-8785-f877ecab0d79 +2024-09-11 09:05:44.544546 2024-09-11 09:05:44.544551 mef 5417 R rec 2498b3fb-4e2f-4037-9f97-276ccc235c77 +2024-09-11 09:05:44.659712 2024-09-11 09:05:44.659717 mef 5418 R rec 04f74db6-3995-4793-a982-8e0df406f218 +2024-09-11 09:05:44.715648 2024-09-11 09:05:44.715653 mef 5419 R rec 5d538348-b198-4c0d-99ff-c802a1fe1310 +2024-09-11 09:05:44.772933 2024-09-11 09:05:44.772938 mef 5420 R rec cd140879-4d6b-4c7f-9730-eb7dcb11847e +2024-09-11 09:05:44.83392 2024-09-11 09:05:44.833927 mef 5421 R rec b299c392-ee12-449c-ba9c-e6759a38058d +2024-09-11 09:05:44.892623 2024-09-11 09:05:44.892628 mef 5422 R rec 03c93822-e1c8-4def-8fe9-dace74e77280 +2024-09-11 09:05:44.95226 2024-09-11 09:05:44.952265 mef 5423 R rec 78105941-9052-4d3e-9f2e-7f4e893f6fb4 +2024-09-11 09:05:45.013557 2024-09-11 09:05:45.013563 mef 5424 R rec c9c4ab07-55a6-482e-b935-87eaf55afeb3 +2024-09-11 09:05:45.083933 2024-09-11 09:05:45.083938 mef 5425 R rec b5aab113-4a93-4960-a451-274b697a9ae8 +2024-09-11 09:05:45.139822 2024-09-11 09:05:45.139827 mef 5426 R rec a1e2a8a8-4cb8-4f5c-9109-64492708a64c +2024-09-11 09:05:45.196928 2024-09-11 09:05:45.196933 mef 5427 R rec 7da34902-5729-448d-ad6e-396ccaabd03b +2024-09-11 09:05:45.250865 2024-09-11 09:05:45.25087 mef 5428 R rec 5242a157-37e0-4756-a4d5-7b7c03489328 +2024-09-11 09:05:45.309626 2024-09-11 09:05:45.309673 mef 5429 R rec d4bd072a-32a4-416d-9019-72954ecaa476 +2024-09-11 09:05:45.363978 2024-09-11 09:05:45.363983 mef 5430 R rec b2edec7a-aec0-4729-9f24-ad9adb3c2119 +2024-09-11 09:05:45.421372 2024-09-11 09:05:45.421377 mef 5431 R rec 2529782d-400e-4289-ac2c-2937eaadc735 +2024-09-11 09:05:45.475842 2024-09-11 09:05:45.475846 mef 5432 R rec ae9aa26a-86a9-4b2e-8bfe-57f41cd6bec5 +2024-09-11 09:05:45.533107 2024-09-11 09:05:45.533111 mef 5433 R rec 0d598716-eab1-4b67-84c2-24ea39766082 +2024-09-11 09:05:45.591962 2024-09-11 09:05:45.591968 mef 5434 R rec 0f68e2ac-cfbd-4423-bd98-2ec434c41552 +2024-09-11 09:05:45.649229 2024-09-11 09:05:45.649234 mef 5435 R rec 3440ea37-bb7c-4e15-8458-c6a74daabefe +2024-09-11 09:05:45.707253 2024-09-11 09:05:45.707258 mef 5436 R rec 99dd8bf8-c467-4bc3-a08e-66bedb2fd082 +2024-09-11 09:05:45.759771 2024-09-11 09:05:45.759776 mef 5437 R rec a999548e-904e-4a44-b582-50b3fc16e5b1 +2024-09-11 09:05:45.820814 2024-09-11 09:05:45.82082 mef 5438 R rec de687259-c1aa-4337-81f9-21b9b919b8bb +2024-09-11 09:05:45.88288 2024-09-11 09:05:45.882885 mef 5439 R rec ad6131d8-fc3a-48ad-9138-b8c7877d623f +2024-09-11 09:05:45.93955 2024-09-11 09:05:45.939556 mef 5440 R rec dd8b0b41-95e2-42a3-b175-0097e340e474 +2024-09-11 09:05:45.992685 2024-09-11 09:05:45.99269 mef 5441 R rec 7f695a1a-822f-4ff4-b040-34505a2a1c5b +2024-09-11 09:05:46.049028 2024-09-11 09:05:46.049034 mef 5442 R rec 8e9306a9-a521-4da2-bfcf-88375a6ee093 +2024-09-11 09:05:46.122951 2024-09-11 09:05:46.122957 mef 5443 R rec 90aa3ca9-34c2-4cc1-a309-12e3b5ff26bb +2024-09-11 09:05:46.193771 2024-09-11 09:05:46.193777 mef 5444 R rec fbb80409-58d5-43e9-b34d-559344d4683b +2024-09-11 09:05:46.254843 2024-09-11 09:05:46.254849 mef 5445 R rec 3a070228-4602-4521-92d1-cafa4a4fe650 +2024-09-11 09:05:46.307505 2024-09-11 09:05:46.30751 mef 5446 R rec 8245e830-daf3-4695-a68e-bd8d8245a347 +2024-09-11 09:05:46.364836 2024-09-11 09:05:46.364841 mef 5447 R rec c364c74f-81d9-4807-98b6-6b9d63aaabd8 +2024-09-11 09:05:46.42027 2024-09-11 09:05:46.420277 mef 5448 R rec 8f974729-7e2d-402c-975f-44fca99a2bc2 +2024-09-11 09:05:46.476193 2024-09-11 09:05:46.476198 mef 5449 R rec 81833f42-8d7b-4e5d-9c82-db736b940694 +2024-09-11 09:05:46.53183 2024-09-11 09:05:46.531836 mef 5450 R rec 4702968a-cfad-40c8-9e4d-b1c7905e48d4 +2024-09-11 09:05:46.586502 2024-09-11 09:05:46.586508 mef 5451 R rec c9e25507-5331-4499-8113-d055e41a8b3f +2024-09-11 09:05:46.643266 2024-09-11 09:05:46.643271 mef 5452 R rec 1d7d76db-0974-49ef-9db3-dec14164be14 +2024-09-11 09:05:46.698025 2024-09-11 09:05:46.698031 mef 5453 R rec b7d4e73e-a1e6-4e20-ab6c-b69f380587ed +2024-09-11 09:05:46.748124 2024-09-11 09:05:46.74813 mef 5454 R rec 6620aa97-2da6-42dc-86f5-f407e2ca9317 +2024-09-11 09:05:46.800751 2024-09-11 09:05:46.800756 mef 5455 R rec ed8154e9-cfed-45d9-8a0c-771e7b9341f4 +2024-09-11 09:05:46.854788 2024-09-11 09:05:46.854793 mef 5456 R rec 8a28b817-a983-43f1-b6d0-59e1e7b12cdf +2024-09-11 09:05:46.909768 2024-09-11 09:05:46.909772 mef 5457 R rec c0b65a34-a031-42a7-9efc-678f7c5b756f +2024-09-11 09:05:46.961857 2024-09-11 09:05:46.961863 mef 5458 R rec c3d79d83-0940-4b88-a46b-33cffc84c96b +2024-09-11 09:05:47.01523 2024-09-11 09:05:47.015236 mef 5459 R rec 97ca42c1-efae-4e52-9fe4-c76bfdc1dc00 +2024-09-11 09:05:47.070123 2024-09-11 09:05:47.070128 mef 5460 R rec 773f67e0-6f40-440e-838f-9dfb932db339 +2024-09-11 09:05:47.124324 2024-09-11 09:05:47.124328 mef 5461 R rec 32acc044-d8e0-4eea-9d86-80c5d71ab866 +2024-09-11 09:05:47.186599 2024-09-11 09:05:47.186605 mef 5462 R rec be942689-e46c-4645-8564-825f945ba8b8 +2024-09-11 09:05:47.242787 2024-09-11 09:05:47.242793 mef 5463 R rec a523bd32-f8c3-45a4-8d5a-b22f4d942d44 +2024-09-11 09:05:47.306214 2024-09-11 09:05:47.306219 mef 5464 R rec 728cb06a-9361-4276-91f7-6f6318cf7ef0 +2024-09-11 09:05:47.360868 2024-09-11 09:05:47.360873 mef 5465 R rec 9be3dae5-b994-4d7e-b3e4-00aecaf433d9 +2024-09-11 09:05:47.412489 2024-09-11 09:05:47.412495 mef 5466 R rec 2eca11bc-1ee4-4a8c-bf9c-35c81c1b2d64 +2024-09-11 09:05:47.531539 2024-09-11 09:05:47.531545 mef 5467 R rec b98199bf-6160-4593-8147-5516dc59efbe +2024-09-11 09:05:47.589347 2024-09-11 09:05:47.589352 mef 5468 R rec 40231dd2-9ead-48d3-8812-13cccbd59e0f +2024-09-11 09:05:47.640969 2024-09-11 09:05:47.640973 mef 5469 R rec 2047fcdd-a0ca-4c6a-818b-ec6d591578db +2024-09-11 09:05:47.695353 2024-09-11 09:05:47.695358 mef 5470 R rec 853de8bd-5121-45f1-88f5-645befc9bf31 +2024-09-11 09:05:47.750244 2024-09-11 09:05:47.750249 mef 5471 R rec 52d5a0c6-452c-46da-b295-85b48e5cb47d +2024-09-11 09:05:47.80598 2024-09-11 09:05:47.805984 mef 5472 R rec 0219c8d7-b098-4ca8-b228-1954696cb949 +2024-09-11 09:05:47.861139 2024-09-11 09:05:47.861145 mef 5473 R rec d2f4bba2-cdce-40b9-814d-075fea9c3742 +2024-09-11 09:05:47.979833 2024-09-11 09:05:47.979839 mef 5474 R rec 1c317e82-feec-44d1-9f44-6c71180602b6 +2024-09-11 09:05:48.04206 2024-09-11 09:05:48.042065 mef 5475 R rec 145b997d-ba10-4268-a08c-df2bb9fcf0ec +2024-09-11 09:05:48.104701 2024-09-11 09:05:48.104705 mef 5476 R rec 41dca930-5d6f-414d-aeda-986aa3260a2c +2024-09-11 09:05:48.16189 2024-09-11 09:05:48.161896 mef 5477 R rec c5227539-3f1e-4941-8be9-2516eea99808 +2024-09-11 09:05:48.21822 2024-09-11 09:05:48.218229 mef 5478 R rec 266514e2-0efa-421c-93b9-c000ad4a874e +2024-09-11 09:05:48.268289 2024-09-11 09:05:48.268294 mef 5479 R rec c0df2272-0275-4c7d-ab9b-6f4290737cb1 +2024-09-11 09:05:48.322906 2024-09-11 09:05:48.322911 mef 5480 R rec a5769ebc-cf27-489d-a99b-481e9568b411 +2024-09-11 09:05:48.383533 2024-09-11 09:05:48.383538 mef 5481 R rec 7c4c4ce2-9c4c-4e8e-81aa-9227d81f0e3f +2024-09-11 09:05:48.445292 2024-09-11 09:05:48.445297 mef 5482 R rec d4fabc90-d2b3-476e-ac7b-5b477d9faa25 +2024-09-11 09:05:48.505217 2024-09-11 09:05:48.505222 mef 5483 R rec 9972d9fb-a52f-4864-940a-7e1adad11fd2 +2024-09-11 09:05:48.564447 2024-09-11 09:05:48.564453 mef 5484 R rec 9111d0bb-5723-4fec-9c8d-9108ba3cac2d +2024-09-11 09:05:48.615593 2024-09-11 09:05:48.615597 mef 5485 R rec 2fd5f592-e47e-44a9-ab6a-bbc6574ccd2f +2024-09-11 09:05:48.666696 2024-09-11 09:05:48.666702 mef 5486 R rec 65950a4b-906a-40cf-aedf-cc1d0414bd44 +2024-09-11 09:05:48.718222 2024-09-11 09:05:48.718227 mef 5487 R rec 8605fc1e-f332-4690-8454-8749527c8d3c +2024-09-11 09:05:48.773052 2024-09-11 09:05:48.773056 mef 5488 R rec aba1c523-9048-464a-b55a-855de97f091f +2024-09-11 09:05:48.887796 2024-09-11 09:05:48.887803 mef 5489 R rec 548d9c42-4a0a-46dd-89f5-b2252c516ad7 +2024-09-11 09:05:48.944643 2024-09-11 09:05:48.944648 mef 5490 R rec 0e7f91c9-ede5-456e-9449-dcbaaf80cdb5 +2024-09-11 09:05:49.003749 2024-09-11 09:05:49.003754 mef 5491 R rec a6c9a032-edfa-4651-91ac-2c6b01297491 +2024-09-11 09:05:49.059335 2024-09-11 09:05:49.059341 mef 5492 R rec c77fe47e-6f18-4112-b3fd-be4ef45be819 +2024-09-11 09:05:49.121265 2024-09-11 09:05:49.12127 mef 5493 R rec 59bccbce-ef03-4b5f-a8ed-0b20c3366c5f +2024-09-11 09:05:49.179574 2024-09-11 09:05:49.17958 mef 5494 R rec 0831443b-d4fb-4312-bfba-3307f0a7529f +2024-09-11 09:05:49.235832 2024-09-11 09:05:49.235838 mef 5495 R rec 02377fe2-69b6-4fc5-8d93-7c5040738be4 +2024-09-11 09:05:49.287484 2024-09-11 09:05:49.287489 mef 5496 R rec a1fc66db-f900-4512-829e-d4ee47eb2d2e +2024-09-11 09:05:49.341685 2024-09-11 09:05:49.341691 mef 5497 R rec 5986f2ed-65b0-4b5e-9205-6b64c425a8ab +2024-09-11 09:05:49.397661 2024-09-11 09:05:49.397667 mef 5498 R rec e16089f6-93cd-4fce-bd92-84b090bfc7ea +2024-09-11 09:05:49.591419 2024-09-11 09:05:49.591424 mef 5499 R rec f3c446f5-6081-4632-8dc7-68b779239ba9 +2024-09-11 09:05:49.647751 2024-09-11 09:05:49.647758 mef 5500 R rec 61b61197-4fae-4a99-bd3e-7107e5daa3fe +2024-09-11 09:05:49.702058 2024-09-11 09:05:49.702062 mef 5501 R rec 900bc547-a119-454e-8382-3ad934ef0f42 +2024-09-11 09:05:49.755864 2024-09-11 09:05:49.75587 mef 5502 R rec 4333db35-b212-4321-a530-dd102ff4e4ab +2024-09-11 09:05:49.811149 2024-09-11 09:05:49.811154 mef 5503 R rec e3956e53-f750-43dd-8da5-d1ef2f42a6ba +2024-09-11 09:05:49.867954 2024-09-11 09:05:49.86796 mef 5504 R rec 7cf28145-aa51-48a2-be12-2287fa6b2d9a +2024-09-11 09:05:49.929981 2024-09-11 09:05:49.929986 mef 5505 R rec 7952f656-8025-449c-9f31-d6b50364dee7 +2024-09-11 09:05:49.983887 2024-09-11 09:05:49.983892 mef 5506 R rec 3df477c1-aedd-41c7-8dc2-7fbab5289233 +2024-09-11 09:05:50.04535 2024-09-11 09:05:50.045355 mef 5507 R rec 8ba1bb4f-c092-4093-a719-3b19aee845a2 +2024-09-11 09:05:50.098937 2024-09-11 09:05:50.098942 mef 5508 R rec 16821181-7cf1-40fe-8c43-228720c46de5 +2024-09-11 09:05:50.159907 2024-09-11 09:05:50.159911 mef 5509 R rec daba2e17-4277-4458-8c37-ae3061f46c6b +2024-09-11 09:05:50.224592 2024-09-11 09:05:50.224597 mef 5510 R rec fee03328-3da7-4ca2-a285-3e039b067270 +2024-09-11 09:05:50.284257 2024-09-11 09:05:50.284263 mef 5511 R rec 12f38868-2d67-45ea-bad7-c523cdbe4624 +2024-09-11 09:05:50.340431 2024-09-11 09:05:50.340437 mef 5512 R rec 990820c9-93b9-41fa-b0a7-804db5f1bdf5 +2024-09-11 09:05:50.396526 2024-09-11 09:05:50.396532 mef 5513 R rec 7cbd9756-c014-4bc8-b1d7-2e1ca3c94f9e +2024-09-11 09:05:50.462161 2024-09-11 09:05:50.462166 mef 5514 R rec 600262ac-56ed-4151-890d-a3b8eaf1a2d8 +2024-09-11 09:05:50.521446 2024-09-11 09:05:50.521451 mef 5515 R rec f320dc49-cd44-4f8d-9887-29bdcce6413a +2024-09-11 09:05:50.575546 2024-09-11 09:05:50.575552 mef 5516 R rec 748bf06b-c4ca-4bbd-bd09-904e31ff2540 +2024-09-11 09:05:50.634789 2024-09-11 09:05:50.634794 mef 5517 R rec 9d206d9d-49bb-42af-80c7-292d15e01114 +2024-09-11 09:05:50.695228 2024-09-11 09:05:50.695233 mef 5518 R rec 9cbfa85b-dbee-4abe-bb24-4f6d585d9b0d +2024-09-11 09:05:50.75977 2024-09-11 09:05:50.759776 mef 5519 R rec 32a27bf0-8892-4f6e-939b-f355867b01cf +2024-09-11 09:05:50.822593 2024-09-11 09:05:50.822598 mef 5520 R rec 281cea79-2711-4ee9-bc7a-057f94a77872 +2024-09-11 09:05:50.87595 2024-09-11 09:05:50.875956 mef 5521 R rec e6a578ea-87ed-4122-b8d8-8fd410951a46 +2024-09-11 09:05:50.929899 2024-09-11 09:05:50.929905 mef 5522 R rec fdbe96bc-e4ee-48b1-9cfa-23970173cc70 +2024-09-11 09:05:50.985205 2024-09-11 09:05:50.985211 mef 5523 R rec d1175750-7f15-45d4-87b3-ecc5541a5994 +2024-09-11 09:05:51.03432 2024-09-11 09:05:51.034325 mef 5524 R rec 0206452b-8c52-4827-a043-a80ae50740e9 +2024-09-11 09:05:51.089645 2024-09-11 09:05:51.08965 mef 5525 R rec c03f1721-f381-4f49-839d-d4e091792194 +2024-09-11 09:05:51.208354 2024-09-11 09:05:51.208358 mef 5526 R rec 470dc074-84b9-42bd-8bc7-794e61af4723 +2024-09-11 09:05:51.275714 2024-09-11 09:05:51.275718 mef 5527 R rec 434b0ea2-c120-43d8-8aff-926a74e5af31 +2024-09-11 09:05:51.335006 2024-09-11 09:05:51.335012 mef 5528 R rec 887cf40c-3bb0-48b5-ae82-556b69b03564 +2024-09-11 09:05:51.384022 2024-09-11 09:05:51.384027 mef 5529 R rec 096808e6-e9fa-45e6-b50c-2d88d144dd0d +2024-09-11 09:05:51.439557 2024-09-11 09:05:51.439562 mef 5530 R rec 810d78fb-44e1-4c63-ba92-144405c239dc +2024-09-11 09:05:51.499305 2024-09-11 09:05:51.49931 mef 5531 R rec e376dd07-6e27-4e6f-be0d-4d84cd52f242 +2024-09-11 09:05:51.551256 2024-09-11 09:05:51.551262 mef 5532 R rec 5ffe2c73-5064-4025-8a82-0c45dddbe6ff +2024-09-11 09:05:51.608013 2024-09-11 09:05:51.608017 mef 5533 R rec f0fa0f08-a941-4e8f-a771-538aa41a7e08 +2024-09-11 09:05:51.66588 2024-09-11 09:05:51.665885 mef 5534 R rec fc06b5e8-2f27-4f42-b131-7aa31d99223b +2024-09-11 09:05:51.716954 2024-09-11 09:05:51.716959 mef 5535 R rec f6e69ffa-d2d5-42a8-b2ee-c170008fe2e8 +2024-09-11 09:05:51.773081 2024-09-11 09:05:51.773086 mef 5536 R rec 87ddaba2-ccea-446d-8a68-148c01412c8d +2024-09-11 09:05:51.83596 2024-09-11 09:05:51.835965 mef 5537 R rec a198864b-22f4-4733-81dd-a4abb66b8bfb +2024-09-11 09:05:51.891107 2024-09-11 09:05:51.891112 mef 5538 R rec 8b39951c-e005-4c6a-8627-292b9ad444a6 +2024-09-11 09:05:51.943235 2024-09-11 09:05:51.94324 mef 5539 R rec fcbfd930-f99b-472f-8e5c-b0cf73002481 +2024-09-11 09:05:51.999729 2024-09-11 09:05:51.999734 mef 5540 R rec 8377d02f-8f78-45a7-85c6-620b65206a68 +2024-09-11 09:05:52.055896 2024-09-11 09:05:52.055901 mef 5541 R rec c25bd2ec-1aea-480d-850a-0c1b6377387c +2024-09-11 09:05:52.108112 2024-09-11 09:05:52.108118 mef 5542 R rec fdb10840-3f22-4a6d-852b-7c58e3336796 +2024-09-11 09:05:52.159043 2024-09-11 09:05:52.159048 mef 5543 R rec 514504b6-aaed-4d1d-8d12-990f4c64c1c6 +2024-09-11 09:05:52.29018 2024-09-11 09:05:52.290186 mef 5544 R rec 0a7f8cdb-9b53-4ba8-b254-68db6fc2c333 +2024-09-11 09:05:52.347046 2024-09-11 09:05:52.347051 mef 5545 R rec f443d1bc-77cc-4392-ac62-4819a47e2114 +2024-09-11 09:05:52.400618 2024-09-11 09:05:52.400623 mef 5546 R rec 9ecb69db-fa2f-47d2-927f-fb27a6b74805 +2024-09-11 09:05:52.454764 2024-09-11 09:05:52.454769 mef 5547 R rec 39a8d7a4-f214-44af-8ec0-3daa51fccc7b +2024-09-11 09:05:52.509449 2024-09-11 09:05:52.509455 mef 5548 R rec bacf9552-ddc3-4868-91d6-edadf68967ce +2024-09-11 09:05:52.56616 2024-09-11 09:05:52.566165 mef 5549 R rec 8dfa6be8-51e7-4e71-a7e5-089836ce1128 +2024-09-11 09:05:52.621406 2024-09-11 09:05:52.621412 mef 5550 R rec 93f0efb0-c527-42e1-9888-83ee0bbb0cba +2024-09-11 09:05:52.680812 2024-09-11 09:05:52.680817 mef 5551 R rec 993bf7ae-b5ff-4ef7-859c-61b533229794 +2024-09-11 09:05:52.73568 2024-09-11 09:05:52.735685 mef 5552 R rec 50332fa5-1136-4e95-af81-881419f57c6f +2024-09-11 09:05:52.786988 2024-09-11 09:05:52.786993 mef 5553 R rec c41ce904-8bf5-4169-ad3f-9c3dba7ed07c +2024-09-11 09:05:52.839811 2024-09-11 09:05:52.839815 mef 5554 R rec 463a3e0a-520b-413c-bdf9-6dffed8ba711 +2024-09-11 09:05:52.893024 2024-09-11 09:05:52.893029 mef 5555 R rec 51c25dc8-f62b-4918-83f6-2eb7db07a03f +2024-09-11 09:05:52.953118 2024-09-11 09:05:52.953128 mef 5556 R rec a1d34b2c-8553-493c-92e6-216d54cebc3a +2024-09-11 09:05:53.011123 2024-09-11 09:05:53.011129 mef 5557 R rec f98d510d-706d-47c8-9518-7ae753ff9f10 +2024-09-11 09:05:53.069307 2024-09-11 09:05:53.069312 mef 5558 R rec 0be29107-ecac-4537-9222-2b3abc8c516e +2024-09-11 09:05:53.130161 2024-09-11 09:05:53.130166 mef 5559 R rec 143e0d11-af3c-4c97-ba66-7d13a1dd588c +2024-09-11 09:05:53.181638 2024-09-11 09:05:53.181644 mef 5560 R rec 58e5ea03-e467-4666-aa1c-e323087af906 +2024-09-11 09:05:53.236371 2024-09-11 09:05:53.236376 mef 5561 R rec 2fefa7d2-570d-4b3e-9a71-7d5870aeb898 +2024-09-11 09:05:53.290131 2024-09-11 09:05:53.290136 mef 5562 R rec a6634ac4-deac-4aa0-bccc-225bf0c98664 +2024-09-11 09:05:53.341455 2024-09-11 09:05:53.341461 mef 5563 R rec daccf501-7589-479b-8e1e-844401da02d8 +2024-09-11 09:05:53.395163 2024-09-11 09:05:53.395168 mef 5564 R rec b05558ba-34b0-453f-90b2-33380dc6e908 +2024-09-11 09:05:53.4493 2024-09-11 09:05:53.449304 mef 5565 R rec f0b35e6c-27dc-401a-b9f1-ebf888bb237c +2024-09-11 09:05:53.505365 2024-09-11 09:05:53.50537 mef 5566 R rec ee38a3dc-a6e5-4455-80af-ff9d6b3b82af +2024-09-11 09:05:53.565176 2024-09-11 09:05:53.565181 mef 5567 R rec 9c7b8a03-03d4-4d1a-a814-e3eaeea9f720 +2024-09-11 09:05:53.624097 2024-09-11 09:05:53.624104 mef 5568 R rec 775dbc81-512f-4c5b-8827-51ea41a97efd +2024-09-11 09:05:53.678461 2024-09-11 09:05:53.678466 mef 5569 R rec 2c8fd9f3-c378-43d0-8a83-39609375934d +2024-09-11 09:05:53.732641 2024-09-11 09:05:53.732646 mef 5570 R rec 33443ba8-1034-46f5-8ba2-22bc531b7ffe +2024-09-11 09:05:53.78743 2024-09-11 09:05:53.787436 mef 5571 R rec 2052ed28-980a-4d17-a10d-8d9317b55b14 +2024-09-11 09:05:53.844717 2024-09-11 09:05:53.844722 mef 5572 R rec e70670fa-7ad7-42b5-ba1d-9d3f2167618f +2024-09-11 09:05:53.902073 2024-09-11 09:05:53.902078 mef 5573 R rec ad64e14a-ad6c-4902-81f1-37b14286e2aa +2024-09-11 09:05:53.962729 2024-09-11 09:05:53.962734 mef 5574 R rec a28e5926-821c-455b-be77-09ee8f453316 +2024-09-11 09:05:54.023027 2024-09-11 09:05:54.023031 mef 5575 R rec d2c38643-8c2d-43f5-8602-d2783a2e1fa5 +2024-09-11 09:05:54.075148 2024-09-11 09:05:54.075153 mef 5576 R rec c0bcd44f-4ff1-4bcb-9d5f-4f9ada6ecb67 +2024-09-11 09:05:54.13366 2024-09-11 09:05:54.133666 mef 5577 R rec 959af23a-877b-481a-813f-e53fd92a75b5 +2024-09-11 09:05:54.193111 2024-09-11 09:05:54.193116 mef 5578 R rec 7981da9e-c1ec-4a64-b855-5bae24063880 +2024-09-11 09:05:54.245985 2024-09-11 09:05:54.245991 mef 5579 R rec cd807951-b485-4e9a-85ad-d03401ab08fe +2024-09-11 09:05:54.301939 2024-09-11 09:05:54.301944 mef 5580 R rec 272972e2-0fbc-44f2-bf3d-4ac64020dd44 +2024-09-11 09:05:54.353485 2024-09-11 09:05:54.35349 mef 5581 R rec 4f1778f4-551d-4ab7-93c6-54aa8e8af121 +2024-09-11 09:05:54.412024 2024-09-11 09:05:54.41203 mef 5582 R rec 01790f47-9491-454a-945b-e91f71f0f5aa +2024-09-11 09:05:54.470132 2024-09-11 09:05:54.470137 mef 5583 R rec f3778094-5766-496a-bfe6-5233ff5d4510 +2024-09-11 09:05:54.521896 2024-09-11 09:05:54.521901 mef 5584 R rec 4b6ab78e-7f50-4c1a-8d22-5346da2cde61 +2024-09-11 09:05:54.575175 2024-09-11 09:05:54.57518 mef 5585 R rec a23cd399-39a4-482a-9dc2-cd9443925d97 +2024-09-11 09:05:54.628156 2024-09-11 09:05:54.628161 mef 5586 R rec 8be3515f-3eb1-4b65-a691-8713c4f43ed0 +2024-09-11 09:05:54.687388 2024-09-11 09:05:54.687393 mef 5587 R rec 4e99c35e-070f-4f83-85cf-46e6e113bcd7 +2024-09-11 09:05:54.744105 2024-09-11 09:05:54.74411 mef 5588 R rec b232c8a1-3655-46c1-9f05-71efa663cbf0 +2024-09-11 09:05:54.80168 2024-09-11 09:05:54.801685 mef 5589 R rec 4a87d3cb-6b61-4124-bf20-982ec79ca4a0 +2024-09-11 09:05:54.855374 2024-09-11 09:05:54.855379 mef 5590 R rec b2aecdae-350d-418a-8e2f-52656436da6b +2024-09-11 09:05:54.90827 2024-09-11 09:05:54.908274 mef 5591 R rec 0b0c144f-4c05-403b-a540-50d666393d56 +2024-09-11 09:05:54.964434 2024-09-11 09:05:54.96444 mef 5592 R rec e63754c7-07b3-4c43-846a-ea8ab10793ab +2024-09-11 09:05:55.017048 2024-09-11 09:05:55.017053 mef 5593 R rec f5e20d97-1944-4804-be52-5e697eb6b73e +2024-09-11 09:05:55.071223 2024-09-11 09:05:55.071227 mef 5594 R rec 05df5fb7-405e-41d4-8286-6ca681fd3fb8 +2024-09-11 09:05:55.123917 2024-09-11 09:05:55.123923 mef 5595 R rec 67144d63-bb3b-4b56-95e0-5c0b62dd044d +2024-09-11 09:05:55.180201 2024-09-11 09:05:55.180207 mef 5596 R rec 4ecf2b2a-fb13-4c68-912c-699a5ba4344c +2024-09-11 09:05:55.255339 2024-09-11 09:05:55.255345 mef 5597 R rec c91793fe-8bb0-4180-a8ed-8df868f19f29 +2024-09-11 09:05:55.366105 2024-09-11 09:05:55.36611 mef 5598 R rec afc48cb9-e50e-46f8-8b2b-2a1062b51362 +2024-09-11 09:05:55.417742 2024-09-11 09:05:55.417746 mef 5599 R rec c7d31f56-7285-4724-8237-8dccd06278aa +2024-09-11 09:05:55.47105 2024-09-11 09:05:55.471055 mef 5600 R rec f4268627-e51e-4a0f-874c-1e35606f622e +2024-09-11 09:05:55.527551 2024-09-11 09:05:55.527556 mef 5601 R rec 224a1cc8-799b-4f03-ad13-7adadef09c85 +2024-09-11 09:05:55.585497 2024-09-11 09:05:55.585502 mef 5602 R rec 368a839a-d510-437c-82d6-b336a8dc8b15 +2024-09-11 09:05:55.640154 2024-09-11 09:05:55.640159 mef 5603 R rec dd5eecfa-b378-4678-ba6e-77eca482b628 +2024-09-11 09:05:55.692781 2024-09-11 09:05:55.692787 mef 5604 R rec f3089fd6-8f5d-4efb-80c0-529d7a3d5910 +2024-09-11 09:05:55.746017 2024-09-11 09:05:55.746023 mef 5605 R rec b4330a4f-c4f2-4289-afe0-bc3b51cb2a35 +2024-09-11 09:05:55.79965 2024-09-11 09:05:55.799654 mef 5606 R rec eae4ef9c-1d38-4f2c-a651-42a46c0837d8 +2024-09-11 09:05:55.859226 2024-09-11 09:05:55.859231 mef 5607 R rec 21e164a7-0339-4ad5-a182-33daede747f5 +2024-09-11 09:05:55.918629 2024-09-11 09:05:55.918634 mef 5608 R rec 39c4aabb-5f54-4709-9e8c-a180cb13c2a6 +2024-09-11 09:05:55.968904 2024-09-11 09:05:55.968908 mef 5609 R rec 1dde8cb2-febb-458f-91e2-39b4c220a892 +2024-09-11 09:05:56.023758 2024-09-11 09:05:56.023763 mef 5610 R rec 2448290a-98c9-4719-83b1-e95a97629617 +2024-09-11 09:05:56.080231 2024-09-11 09:05:56.080237 mef 5611 R rec 51ae111b-fcfa-4405-b327-1531ec6a1c32 +2024-09-11 09:05:56.134188 2024-09-11 09:05:56.134193 mef 5612 R rec c0f6b099-6264-417a-9145-cc15dfdf9fe3 +2024-09-11 09:05:56.189491 2024-09-11 09:05:56.189495 mef 5613 R rec 37012285-b7bf-49c2-89d7-b04d4beb3746 +2024-09-11 09:05:56.244426 2024-09-11 09:05:56.244432 mef 5614 R rec 84536b0f-5977-450c-8abc-2c6137945d10 +2024-09-11 09:05:56.302801 2024-09-11 09:05:56.302806 mef 5615 R rec 888c196c-2701-4848-ab22-d1847ae79440 +2024-09-11 09:05:56.354595 2024-09-11 09:05:56.3546 mef 5616 R rec 0cbcadbb-db76-41f1-ba3e-8fe72027012d +2024-09-11 09:05:56.415013 2024-09-11 09:05:56.415018 mef 5617 R rec 5cf7bda6-6ed3-49f7-9976-2adec19fd3f0 +2024-09-11 09:05:56.477636 2024-09-11 09:05:56.477641 mef 5618 R rec 53e92821-8cbf-4727-8c3a-8490b0fd02b6 +2024-09-11 09:05:56.53198 2024-09-11 09:05:56.531986 mef 5619 R rec 540ce524-8a71-43dd-8e66-f72d94108f5a +2024-09-11 09:05:56.584633 2024-09-11 09:05:56.584639 mef 5620 R rec 852877c0-2fdd-4d2b-8ed6-593765d41035 +2024-09-11 09:05:56.636285 2024-09-11 09:05:56.63629 mef 5621 R rec 7f87a005-7036-4886-94fb-5a4ae852ccbf +2024-09-11 09:05:56.747805 2024-09-11 09:05:56.747809 mef 5622 R rec 368bd84c-e81b-468d-9cb1-ab8b7e133704 +2024-09-11 09:05:56.802323 2024-09-11 09:05:56.802328 mef 5623 R rec e27883e0-a70f-4e7a-ac1c-895f01766b10 +2024-09-11 09:05:56.915578 2024-09-11 09:05:56.915584 mef 5624 R rec 7fb51c45-8cc9-41c4-a6f1-6664abbb8382 +2024-09-11 09:05:56.96816 2024-09-11 09:05:56.968165 mef 5625 R rec 300c3eb0-5d3c-49a3-a1f2-3b11f66d0744 +2024-09-11 09:05:57.020504 2024-09-11 09:05:57.020512 mef 5626 R rec d512c7a3-5c46-40ac-8830-1eb2264df991 +2024-09-11 09:05:57.080237 2024-09-11 09:05:57.080242 mef 5627 R rec dd183a26-00a9-4b2c-8dc9-a95278080de7 +2024-09-11 09:05:57.135933 2024-09-11 09:05:57.135938 mef 5628 R rec 714e9524-cfa3-41da-9299-ad378d16734e +2024-09-11 09:05:57.194234 2024-09-11 09:05:57.194238 mef 5629 R rec 727156c1-fbdd-4d4c-8ae7-e9625a3467bb +2024-09-11 09:05:57.247125 2024-09-11 09:05:57.24713 mef 5630 R rec 647335d7-e03e-48e3-abc1-49e68f72c3d3 +2024-09-11 09:05:57.299343 2024-09-11 09:05:57.299347 mef 5631 R rec d2c36bcc-1612-488f-b8ce-eaffc2fb726e +2024-09-11 09:05:57.355523 2024-09-11 09:05:57.355528 mef 5632 R rec cbf2d3c9-caee-49ef-a348-6d0fb6104e62 +2024-09-11 09:05:57.405089 2024-09-11 09:05:57.405093 mef 5633 R rec 6996294b-9c97-41d3-8e4d-907c9c548149 +2024-09-11 09:05:57.458164 2024-09-11 09:05:57.458168 mef 5634 R rec a6535ea6-9681-4f70-8646-0ca5ab1b178c +2024-09-11 09:05:57.517134 2024-09-11 09:05:57.517139 mef 5635 R rec 5b85eb45-0f42-4163-9576-c2990a9512c4 +2024-09-11 09:05:57.571378 2024-09-11 09:05:57.571384 mef 5636 R rec 08d54256-3def-4b2d-9597-efa083961276 +2024-09-11 09:05:57.629937 2024-09-11 09:05:57.629943 mef 5637 R rec af8344b9-212f-4bc9-a06d-b9566968488d +2024-09-11 09:05:57.706984 2024-09-11 09:05:57.706989 mef 5638 R rec 21768187-67e5-426e-b68f-b7fc6301de13 +2024-09-11 09:05:57.768975 2024-09-11 09:05:57.76898 mef 5639 R rec 7a7ad356-8b4f-4e29-9bce-bdfa3947513b +2024-09-11 09:05:57.821402 2024-09-11 09:05:57.821408 mef 5640 R rec de26055e-7c61-43a2-bfb6-e6af814cda69 +2024-09-11 09:05:57.876683 2024-09-11 09:05:57.876688 mef 5641 R rec 92289c61-c497-4995-bd9d-c5b2c4ca6a05 +2024-09-11 09:05:57.929527 2024-09-11 09:05:57.929533 mef 5642 R rec ba4dfd9d-7f05-4840-bf80-43e958a554ed +2024-09-11 09:05:57.985995 2024-09-11 09:05:57.986002 mef 5643 R rec d11eb65b-efef-4bbf-8728-04d93dfaf662 +2024-09-11 09:05:58.04612 2024-09-11 09:05:58.046127 mef 5644 R rec f7ab5215-294f-4e96-b95b-3edef313761f +2024-09-11 09:05:58.098108 2024-09-11 09:05:58.098114 mef 5645 R rec 26d02e76-a096-46d2-be7f-27f9e98dd193 +2024-09-11 09:05:58.1502 2024-09-11 09:05:58.150205 mef 5646 R rec 6f9d9008-c2cb-44b7-8040-91de18ef5b7f +2024-09-11 09:05:58.202005 2024-09-11 09:05:58.202011 mef 5647 R rec 1e05b0ed-f631-4d86-b933-dac68f949c88 +2024-09-11 09:05:58.262014 2024-09-11 09:05:58.262019 mef 5648 R rec b3d8e20b-fee7-4fa7-869f-55e0a52f7a35 +2024-09-11 09:05:58.319766 2024-09-11 09:05:58.319774 mef 5649 R rec aaa97c17-92fd-445a-9460-a0462f6ab326 +2024-09-11 09:05:58.376966 2024-09-11 09:05:58.376971 mef 5650 R rec 79234139-6ec3-408d-8b6c-a06de7943401 +2024-09-11 09:05:58.443343 2024-09-11 09:05:58.443348 mef 5651 R rec 153f7813-e50c-4fc8-b401-912fa66a8fcd +2024-09-11 09:05:58.500304 2024-09-11 09:05:58.500309 mef 5652 R rec da5e3197-92d9-4076-8c9f-cc89f1435076 +2024-09-11 09:05:58.561117 2024-09-11 09:05:58.561122 mef 5653 R rec 525efebc-9eaf-4d77-8241-57e0423f883a +2024-09-11 09:05:58.613594 2024-09-11 09:05:58.613598 mef 5654 R rec fe25cc16-d7c5-47cb-8ead-347b50dd74d2 +2024-09-11 09:05:58.669617 2024-09-11 09:05:58.669622 mef 5655 R rec 9b11fd5a-a3c4-46bc-8f72-1cb89752cf67 +2024-09-11 09:05:58.784127 2024-09-11 09:05:58.784132 mef 5656 R rec 4e06766e-39d8-48f3-af5d-63df28c9a68e +2024-09-11 09:05:58.843064 2024-09-11 09:05:58.843069 mef 5657 R rec b0351f6e-236a-498f-a314-022edff6b3dd +2024-09-11 09:05:58.895218 2024-09-11 09:05:58.895224 mef 5658 R rec a1e652fd-38f9-43b6-b720-ba0eefba91d5 +2024-09-11 09:05:58.99195 2024-09-11 09:05:58.991955 mef 5659 R rec 3669c975-f03f-4149-a038-12c04c6f22e4 +2024-09-11 09:05:59.04759 2024-09-11 09:05:59.047595 mef 5660 R rec 11776531-121a-40ae-93ff-a48d4c08c9ab +2024-09-11 09:05:59.107398 2024-09-11 09:05:59.107402 mef 5661 R rec fc53a5cc-8029-4e08-a11e-67975d026da8 +2024-09-11 09:05:59.16381 2024-09-11 09:05:59.163815 mef 5662 R rec d2c661e7-17db-4975-b355-feac4bf88a29 +2024-09-11 09:05:59.223409 2024-09-11 09:05:59.223414 mef 5663 R rec 29d134e0-2f37-4ca2-8223-a9b1694a7ae3 +2024-09-11 09:05:59.285254 2024-09-11 09:05:59.285259 mef 5664 R rec 811a48c2-d7fe-4f55-aa8b-10d7018e6e87 +2024-09-11 09:05:59.340283 2024-09-11 09:05:59.34029 mef 5665 R rec 6c0ba1b8-48ff-443f-bba9-d2e9f97e4d64 +2024-09-11 09:05:59.395341 2024-09-11 09:05:59.395346 mef 5666 R rec 3de37536-9be7-40b5-962c-59764520459a +2024-09-11 09:05:59.454716 2024-09-11 09:05:59.454735 mef 5667 R rec 7c14677e-6572-46d0-8beb-603d14a6e3f6 +2024-09-11 09:05:59.511546 2024-09-11 09:05:59.51155 mef 5668 R rec 92ae13cc-1a57-468b-aaac-644eb10cbafd +2024-09-11 09:05:59.565572 2024-09-11 09:05:59.565577 mef 5669 R rec 41c28d0d-a0e2-4d8e-b436-1a2739dc3139 +2024-09-11 09:05:59.617502 2024-09-11 09:05:59.617507 mef 5670 R rec 84fe84a5-ac9d-42b6-a940-4e2ca5818461 +2024-09-11 09:05:59.672226 2024-09-11 09:05:59.67223 mef 5671 R rec 91de1200-1dbb-43e2-a18a-d91df20bc87d +2024-09-11 09:05:59.728491 2024-09-11 09:05:59.728496 mef 5672 R rec 06a374b9-1f2c-4919-a761-36c007997200 +2024-09-11 09:05:59.779204 2024-09-11 09:05:59.779209 mef 5673 R rec 9782f76f-c793-4f56-b1a9-be0e581279f0 +2024-09-11 09:05:59.833209 2024-09-11 09:05:59.833214 mef 5674 R rec 663ea814-6122-4707-81a9-58913bb34d56 +2024-09-11 09:05:59.88611 2024-09-11 09:05:59.886117 mef 5675 R rec 8f44e116-85cc-4e29-baab-e209fe3ed4d7 +2024-09-11 09:05:59.97404 2024-09-11 09:05:59.974045 mef 5676 R rec b87acd5e-782f-4ac4-bff0-1667f1d7fdd3 +2024-09-11 09:06:00.037245 2024-09-11 09:06:00.03725 mef 5677 R rec 2f3b6a6f-1f7b-4c60-8cf6-d2680074819a +2024-09-11 09:06:00.090628 2024-09-11 09:06:00.090633 mef 5678 R rec 3c1f68a8-5146-4264-8c23-bfb8736de445 +2024-09-11 09:06:00.147811 2024-09-11 09:06:00.147816 mef 5679 R rec 58af9adf-7695-4214-a598-6021072fc4ef +2024-09-11 09:06:00.200069 2024-09-11 09:06:00.200074 mef 5680 R rec 810840e3-af44-4936-bb1e-e6990fe8a0f6 +2024-09-11 09:06:00.253069 2024-09-11 09:06:00.253079 mef 5681 R rec aa0b0801-c48b-457b-8697-37501c1c7446 +2024-09-11 09:06:00.309933 2024-09-11 09:06:00.309939 mef 5682 R rec f65fa9b1-e680-4d69-9dfc-0df0a2c09c1c +2024-09-11 09:06:00.36277 2024-09-11 09:06:00.362776 mef 5683 R rec 5a55d497-bd78-4ca8-bde0-00922ee51d07 +2024-09-11 09:06:00.484429 2024-09-11 09:06:00.484435 mef 5684 R rec 886b31e7-f86d-4b6c-87a2-59b303301c93 +2024-09-11 09:06:00.542853 2024-09-11 09:06:00.542859 mef 5685 R rec b05218fc-a07d-42ad-922d-1eda7588501d +2024-09-11 09:06:00.60279 2024-09-11 09:06:00.602795 mef 5686 R rec cc4888c6-1b8a-4496-ad16-33a230daa72b +2024-09-11 09:06:00.664705 2024-09-11 09:06:00.66471 mef 5687 R rec 8229f127-15cb-4837-83e2-71770aa2750d +2024-09-11 09:06:00.789057 2024-09-11 09:06:00.789062 mef 5688 R rec 3312c1ec-0f18-4406-829b-f3dee507b2c7 +2024-09-11 09:06:00.853202 2024-09-11 09:06:00.853208 mef 5689 R rec ca745f92-e69e-4e51-8c11-77d895d47bd9 +2024-09-11 09:06:00.906746 2024-09-11 09:06:00.90675 mef 5690 R rec 89c493c9-2556-4e22-8a7e-60d74e1cd69b +2024-09-11 09:06:00.964443 2024-09-11 09:06:00.964449 mef 5691 R rec cf5d1e68-f025-4f20-8483-ab75420e80ed +2024-09-11 09:06:01.179289 2024-09-11 09:06:01.179295 mef 5692 R rec 67dc70a9-ee39-4f4b-b5a4-c1f985924b98 +2024-09-11 09:06:01.237424 2024-09-11 09:06:01.237428 mef 5693 R rec 527b626e-cc1e-4491-89fc-c786c2279265 +2024-09-11 09:06:01.349891 2024-09-11 09:06:01.349896 mef 5694 R rec 68622218-769f-4c53-a4fe-dc811e6fe169 +2024-09-11 09:06:01.398932 2024-09-11 09:06:01.398937 mef 5695 R rec c265c04b-c900-4671-8c22-294c2a863fcd +2024-09-11 09:06:01.450251 2024-09-11 09:06:01.450257 mef 5696 R rec 8edb5975-2b79-4320-a31c-b250c21e0da1 +2024-09-11 09:06:01.501145 2024-09-11 09:06:01.501151 mef 5697 R rec 917c277b-5cb1-4ae4-b5c5-bf52251d7ccd +2024-09-11 09:06:01.554369 2024-09-11 09:06:01.554374 mef 5698 R rec e331ca37-57e5-4c7e-a879-eb76e57435b4 +2024-09-11 09:06:01.607154 2024-09-11 09:06:01.607158 mef 5699 R rec cf0d4b07-7772-428f-8394-8f7a2eb43397 +2024-09-11 09:06:01.662112 2024-09-11 09:06:01.662117 mef 5700 R rec a6b1e068-52ee-4d49-91b9-2b010c370854 +2024-09-11 09:06:01.716104 2024-09-11 09:06:01.71611 mef 5701 R rec 76f957e1-f358-4dbc-b0b5-4853731c2409 +2024-09-11 09:06:01.771767 2024-09-11 09:06:01.771772 mef 5702 R rec 9a939244-6f70-4909-a64f-0c48cb5e4d86 +2024-09-11 09:06:01.827824 2024-09-11 09:06:01.827829 mef 5703 R rec 4d26d831-8b8c-482a-b18c-03de4ff77e49 +2024-09-11 09:06:01.880639 2024-09-11 09:06:01.880644 mef 5704 R rec eb839847-89f4-4510-9612-6db872b3916c +2024-09-11 09:06:01.935339 2024-09-11 09:06:01.935344 mef 5705 R rec 95ed0cba-0f45-4c27-9985-9083947cf40c +2024-09-11 09:06:01.991245 2024-09-11 09:06:01.99125 mef 5706 R rec dc146022-2714-4dae-a1b1-abe5c2ded619 +2024-09-11 09:06:02.048537 2024-09-11 09:06:02.048541 mef 5707 R rec c9bbfb3a-7bfc-4d11-8db0-442a2735780a +2024-09-11 09:06:02.10368 2024-09-11 09:06:02.103684 mef 5708 R rec 196171f3-146a-4394-892f-bf8879c08687 +2024-09-11 09:06:02.159329 2024-09-11 09:06:02.159334 mef 5709 R rec d16b75ba-3f72-48e9-9ad2-dc82b8abed7f +2024-09-11 09:06:02.319333 2024-09-11 09:06:02.319338 mef 5710 R rec de5aa5d6-4f7c-4982-b648-783aa5666eeb +2024-09-11 09:06:02.372299 2024-09-11 09:06:02.372303 mef 5711 R rec 3382df70-65c1-4605-839b-054c969d9a27 +2024-09-11 09:06:02.422497 2024-09-11 09:06:02.422503 mef 5712 R rec ded11354-2f9d-418f-bb84-1091f88d5af5 +2024-09-11 09:06:02.475021 2024-09-11 09:06:02.475025 mef 5713 R rec cc0fb00c-1d48-46a4-b6b2-89d2b0e771a4 +2024-09-11 09:06:02.528039 2024-09-11 09:06:02.528044 mef 5714 R rec dddba894-f889-4bb1-a18c-78665a93837c +2024-09-11 09:06:02.580145 2024-09-11 09:06:02.58015 mef 5715 R rec 80e791d1-1371-4d3e-a4f3-ef78e4a16b5a +2024-09-11 09:06:02.636356 2024-09-11 09:06:02.636361 mef 5716 R rec fce40167-8684-4b60-91d7-6d5337684836 +2024-09-11 09:06:02.690227 2024-09-11 09:06:02.690232 mef 5717 R rec 3e5b6eba-76b9-47a8-a948-987e80fcefa0 +2024-09-11 09:06:02.744561 2024-09-11 09:06:02.744566 mef 5718 R rec eb277678-013f-47bc-946b-0d0ccabc5ef1 +2024-09-11 09:06:02.797723 2024-09-11 09:06:02.797728 mef 5719 R rec 5ecdc5d2-a0d7-45bb-990e-9d93e2f0e187 +2024-09-11 09:06:02.850129 2024-09-11 09:06:02.850134 mef 5720 R rec 4e69b56f-fbc6-4448-98ec-0eca2d61f121 +2024-09-11 09:06:02.908331 2024-09-11 09:06:02.908336 mef 5721 R rec 9c7e39a2-8f1a-433f-9958-68136e254a63 +2024-09-11 09:06:02.961495 2024-09-11 09:06:02.9615 mef 5722 R rec a15f16a1-11f0-4670-84e6-dc20e9cb7c53 +2024-09-11 09:06:03.019269 2024-09-11 09:06:03.019276 mef 5723 R rec 3885f666-83ce-4d91-9b64-12eb50fb1c67 +2024-09-11 09:06:03.073793 2024-09-11 09:06:03.073798 mef 5724 R rec 79a1e4dd-cd20-45ec-bf25-71abf8adeeb0 +2024-09-11 09:06:03.129756 2024-09-11 09:06:03.129762 mef 5725 R rec 005db016-946b-40bb-ad15-113f711b1968 +2024-09-11 09:06:03.186286 2024-09-11 09:06:03.186293 mef 5726 R rec ab3e762e-533d-422a-b302-f116f89b84b0 +2024-09-11 09:06:03.240943 2024-09-11 09:06:03.240948 mef 5727 R rec b5f9c569-64e2-4287-947f-1b9bea3cf721 +2024-09-11 09:06:03.298681 2024-09-11 09:06:03.298686 mef 5728 R rec 12867c41-9c14-4321-bd2f-95c2a198b4b2 +2024-09-11 09:06:03.364124 2024-09-11 09:06:03.364131 mef 5729 R rec b4927c0c-0fe2-4946-ad0e-7ce1cc43bc48 +2024-09-11 09:06:03.418159 2024-09-11 09:06:03.41817 mef 5730 R rec a3c58079-72a0-4d20-a9f2-0eaf19552014 +2024-09-11 09:06:03.482417 2024-09-11 09:06:03.482423 mef 5731 R rec 97c664f9-75d5-4d2d-9419-237ea11f18e5 +2024-09-11 09:06:03.564125 2024-09-11 09:06:03.564131 mef 5732 R rec 72c8d7d1-7497-4a92-993e-59ca4caae663 +2024-09-11 09:06:03.617223 2024-09-11 09:06:03.617228 mef 5733 R rec a9d74026-5a17-475e-9a9f-b44f417ffc9f +2024-09-11 09:06:03.667384 2024-09-11 09:06:03.667389 mef 5734 R rec 606dfdcc-c45b-45d6-999d-6bb8242b25f2 +2024-09-11 09:06:03.726218 2024-09-11 09:06:03.726222 mef 5735 R rec 2b3c5212-973b-4184-a309-fb873f8b7834 +2024-09-11 09:06:03.778494 2024-09-11 09:06:03.778498 mef 5736 R rec 8fd1fbbe-55a8-4560-9ed8-e32bca50a43c +2024-09-11 09:06:03.831689 2024-09-11 09:06:03.831695 mef 5737 R rec 8e3333ae-204d-49e6-9f96-e2fae6c11a43 +2024-09-11 09:06:03.88473 2024-09-11 09:06:03.884735 mef 5738 R rec 4d472164-dac0-4684-a4fb-15028e997076 +2024-09-11 09:06:03.942376 2024-09-11 09:06:03.942381 mef 5739 R rec daaba2e3-6a04-4397-824f-86843a04ba36 +2024-09-11 09:06:04.003782 2024-09-11 09:06:04.003786 mef 5740 R rec fe7c2bae-30ef-49ca-aa8c-bf4127cdbbaf +2024-09-11 09:06:04.061481 2024-09-11 09:06:04.061486 mef 5741 R rec 89b66460-d5c5-47a8-b14f-ca62436f5217 +2024-09-11 09:06:04.114763 2024-09-11 09:06:04.114768 mef 5742 R rec 05e2e5a0-45dd-4bac-b99e-d5256294e6ce +2024-09-11 09:06:04.228781 2024-09-11 09:06:04.228786 mef 5743 R rec 29fd330c-fb46-4df1-a4d7-e5b648048c8b +2024-09-11 09:06:04.28271 2024-09-11 09:06:04.282715 mef 5744 R rec e70b825e-7f93-42f8-9a18-9cfa8a2b2729 +2024-09-11 09:06:04.331815 2024-09-11 09:06:04.33182 mef 5745 R rec c1a4b6fd-18a1-4319-b428-054e54efb6f0 +2024-09-11 09:06:04.386664 2024-09-11 09:06:04.386672 mef 5746 R rec 52d43dc4-f3c6-4a8e-b71f-162d35463132 +2024-09-11 09:06:04.438887 2024-09-11 09:06:04.438892 mef 5747 R rec b6e6002c-c553-470d-9c67-7a4acaebf740 +2024-09-11 09:06:04.524364 2024-09-11 09:06:04.524368 mef 5748 R rec e6856551-9d1f-4174-aa04-b5ba0d21c0d3 +2024-09-11 09:06:04.577488 2024-09-11 09:06:04.577493 mef 5749 R rec 745484ce-94ed-4e23-b2e3-ea1997a5650a +2024-09-11 09:06:04.64038 2024-09-11 09:06:04.640385 mef 5750 R rec 09320588-2dca-4db8-a77b-9dc117b7c5f6 +2024-09-11 09:06:04.713427 2024-09-11 09:06:04.713436 mef 5751 R rec 712b076c-56b1-44cb-b652-22bcd439f9fb +2024-09-11 09:06:04.773093 2024-09-11 09:06:04.773097 mef 5752 R rec 3c3321af-fea7-407b-a10b-56bba369f901 +2024-09-11 09:06:04.826066 2024-09-11 09:06:04.826071 mef 5753 R rec 280790bc-4521-48f3-ad73-3fb7c3a51c8c +2024-09-11 09:06:04.879713 2024-09-11 09:06:04.879718 mef 5754 R rec 0a767625-39f8-47c7-b767-0e34e1193d56 +2024-09-11 09:06:04.933872 2024-09-11 09:06:04.933878 mef 5755 R rec 1a561b03-0146-4f4d-ab64-625bdc35c8a0 +2024-09-11 09:06:04.989588 2024-09-11 09:06:04.989592 mef 5756 R rec 3880f344-01dc-414c-9a16-ac005771f509 +2024-09-11 09:06:05.051207 2024-09-11 09:06:05.051212 mef 5757 R rec b75fe969-7a72-46fb-8bdd-de44049bc13c +2024-09-11 09:06:05.107294 2024-09-11 09:06:05.107299 mef 5758 R rec 75306bf2-d3ce-41e7-a70b-7c796a95f9d3 +2024-09-11 09:06:05.168137 2024-09-11 09:06:05.168141 mef 5759 R rec b4bb3d0f-10f5-49a8-bb45-a40e79c577d9 +2024-09-11 09:06:05.223888 2024-09-11 09:06:05.223891 mef 5760 R rec dfcb3049-b7b1-4f7e-a623-9af80e6928c9 +2024-09-11 09:06:05.277993 2024-09-11 09:06:05.277997 mef 5761 R rec 3538ac0f-3207-4138-8aac-8fccfd6f4496 +2024-09-11 09:06:05.333281 2024-09-11 09:06:05.333287 mef 5762 R rec a5727052-c421-4348-af2a-464f72712937 +2024-09-11 09:06:05.392288 2024-09-11 09:06:05.392293 mef 5763 R rec 7fe198bb-7e8a-4a6d-bf1f-08118f382a27 +2024-09-11 09:06:05.445655 2024-09-11 09:06:05.44566 mef 5764 R rec cc7a6282-a755-4de2-b680-58fd11cbfc9c +2024-09-11 09:06:05.501919 2024-09-11 09:06:05.501925 mef 5765 R rec 1a261944-c136-47fa-a3de-d488f5e8fd1e +2024-09-11 09:06:05.567801 2024-09-11 09:06:05.567807 mef 5766 R rec a3eb7fce-5f02-41de-bb95-9889fedc795c +2024-09-11 09:06:05.629042 2024-09-11 09:06:05.629047 mef 5767 R rec 273be670-c02e-4e09-b163-e453f94f1a3f +2024-09-11 09:06:05.690946 2024-09-11 09:06:05.69095 mef 5768 R rec c489d68b-8efe-440a-9e31-cc0561f9f160 +2024-09-11 09:06:05.79018 2024-09-11 09:06:05.790187 mef 5769 R rec 5517b5e7-3c80-45ab-b4b3-8f6ece4d3a8f +2024-09-11 09:06:05.865568 2024-09-11 09:06:05.865574 mef 5770 R rec 187c4146-eadf-4db1-837f-a54c631c3888 +2024-09-11 09:06:05.928969 2024-09-11 09:06:05.928975 mef 5771 R rec fc75c0db-4956-43d3-89a2-69054ce0c822 +2024-09-11 09:06:05.992862 2024-09-11 09:06:05.992868 mef 5772 R rec dd3d045e-9739-4b44-aabf-1041c14eae9b +2024-09-11 09:06:06.056896 2024-09-11 09:06:06.056902 mef 5773 R rec cd67bdea-6fe6-4f15-9ccd-e89494ed1233 +2024-09-11 09:06:06.120852 2024-09-11 09:06:06.120857 mef 5774 R rec 9b6d0a2e-2a2d-4d9b-9c3b-7df4016c784e +2024-09-11 09:06:06.243929 2024-09-11 09:06:06.243934 mef 5775 R rec 326c027d-b642-4de5-a37c-bb90fd152802 +2024-09-11 09:06:06.299828 2024-09-11 09:06:06.299833 mef 5776 R rec 2c840c2c-c2d5-4c2e-9c84-a71df94d8a20 +2024-09-11 09:06:06.364235 2024-09-11 09:06:06.364241 mef 5777 R rec b4168519-b0d5-41a0-9b65-0037c257191f +2024-09-11 09:06:06.423171 2024-09-11 09:06:06.423175 mef 5778 R rec be769324-aed5-4baf-bdbd-24e74805345d +2024-09-11 09:06:06.475243 2024-09-11 09:06:06.475249 mef 5779 R rec 48e01d07-080f-401d-bf0a-19215274790b +2024-09-11 09:06:06.546769 2024-09-11 09:06:06.546774 mef 5780 R rec 35b45fa1-46f7-4a6f-9459-158aaeac870e +2024-09-11 09:06:06.60822 2024-09-11 09:06:06.608225 mef 5781 R rec df55ed0b-c2b9-4d1b-8452-a27e3ae00c34 +2024-09-11 09:06:06.670607 2024-09-11 09:06:06.670613 mef 5782 R rec 148cbcab-00e5-46f2-9208-6cce1eab70b5 +2024-09-11 09:06:06.732415 2024-09-11 09:06:06.732421 mef 5783 R rec b5b3d9b8-fd7c-47e4-a999-be16cbacb0e4 +2024-09-11 09:06:06.794618 2024-09-11 09:06:06.794623 mef 5784 R rec a3624018-ae95-49e8-8ca1-cba00c65ebfa +2024-09-11 09:06:06.848501 2024-09-11 09:06:06.848506 mef 5785 R rec a975d1c4-df22-4a8f-a83f-4263f5272554 +2024-09-11 09:06:06.902363 2024-09-11 09:06:06.902368 mef 5786 R rec 9146cb5c-f12b-4c25-bde3-8859919b4516 +2024-09-11 09:06:06.960504 2024-09-11 09:06:06.960509 mef 5787 R rec a359361f-3714-4367-b9c9-c1994061e8fa +2024-09-11 09:06:07.052585 2024-09-11 09:06:07.05259 mef 5788 R rec 121692ee-4773-4fa2-8106-86b18674a1b5 +2024-09-11 09:06:07.113317 2024-09-11 09:06:07.113322 mef 5789 R rec 430383fc-18b3-46de-b3c6-d7c9f4732109 +2024-09-11 09:06:07.170331 2024-09-11 09:06:07.170336 mef 5790 R rec e78b9c93-8cc4-4a89-9dd8-949e616c9cae +2024-09-11 09:06:07.222488 2024-09-11 09:06:07.222494 mef 5791 R rec 511ce318-22b4-41aa-9295-dca08e3fd243 +2024-09-11 09:06:07.273313 2024-09-11 09:06:07.273318 mef 5792 R rec cd769c74-ab3f-4d62-b208-75777f6a2a79 +2024-09-11 09:06:07.327582 2024-09-11 09:06:07.327587 mef 5793 R rec b697e9c8-2b28-477b-b5eb-5be986d2dfde +2024-09-11 09:06:07.383859 2024-09-11 09:06:07.383864 mef 5794 R rec 7ae272cc-0221-43fa-9c7d-4c5028d2676c +2024-09-11 09:06:07.500042 2024-09-11 09:06:07.500047 mef 5795 R rec 70789f1b-d2ee-4218-b511-8ddb860af751 +2024-09-11 09:06:07.556757 2024-09-11 09:06:07.556762 mef 5796 R rec fcd10f7b-60ab-46b8-a258-0753a43ab7c3 +2024-09-11 09:06:07.618082 2024-09-11 09:06:07.618088 mef 5797 R rec 4b7429d6-8b09-4385-9c04-99b7d9cef9f2 +2024-09-11 09:06:07.669472 2024-09-11 09:06:07.669477 mef 5798 R rec 086270bd-52ea-4587-b612-935e64c96dec +2024-09-11 09:06:07.726004 2024-09-11 09:06:07.726009 mef 5799 R rec c764d3af-b009-4861-ac41-39c701359fa6 +2024-09-11 09:06:07.788587 2024-09-11 09:06:07.788591 mef 5800 R rec 16e8674e-8fe1-47ae-875f-f5177d2c525e +2024-09-11 09:06:07.847076 2024-09-11 09:06:07.847081 mef 5801 R rec affd1d24-e164-423e-9327-e05f7cd1bd05 +2024-09-11 09:06:07.898324 2024-09-11 09:06:07.89833 mef 5802 R rec 1db78399-df50-4288-8188-0090835518b5 +2024-09-11 09:06:07.956544 2024-09-11 09:06:07.95655 mef 5803 R rec 8b402ae8-c4fb-4071-988e-4f16c346569f +2024-09-11 09:06:08.008589 2024-09-11 09:06:08.008594 mef 5804 R rec ea16c029-8973-4d19-b154-fa13378b73a5 +2024-09-11 09:06:08.068663 2024-09-11 09:06:08.068668 mef 5805 R rec ebba336f-5326-4753-8730-73faadb79333 +2024-09-11 09:06:08.149253 2024-09-11 09:06:08.149259 mef 5806 R rec 0f89c85a-6ee2-4dc6-9759-71bf2741e448 +2024-09-11 09:06:08.262315 2024-09-11 09:06:08.26232 mef 5807 R rec e74a66a1-42ee-4a86-931f-04d1d557b459 +2024-09-11 09:06:08.315056 2024-09-11 09:06:08.315061 mef 5808 R rec 5b0f291a-1f49-4989-bbbd-60c38566262f +2024-09-11 09:06:08.379658 2024-09-11 09:06:08.379664 mef 5809 R rec cec3c5cc-4a66-4cdf-b47c-08f97497f210 +2024-09-11 09:06:08.442527 2024-09-11 09:06:08.442531 mef 5810 R rec 2031aa6e-baf0-408d-ad62-38a38c08fee1 +2024-09-11 09:06:08.499534 2024-09-11 09:06:08.499539 mef 5811 R rec 0a700ebe-b2e9-4e5f-a2fb-86f481e20b8a +2024-09-11 09:06:08.55901 2024-09-11 09:06:08.559015 mef 5812 R rec 17f5904a-3b75-4227-afa7-c5c316c9769e +2024-09-11 09:06:08.612396 2024-09-11 09:06:08.612401 mef 5813 R rec 5733e043-4147-49da-a958-027539ad5d5c +2024-09-11 09:06:08.724668 2024-09-11 09:06:08.724673 mef 5814 R rec 190d2745-fb21-4b34-b37b-949605a9972b +2024-09-11 09:06:08.784699 2024-09-11 09:06:08.784704 mef 5815 R rec 18f8c007-9e16-4b6f-a783-85903f4b8e6d +2024-09-11 09:06:08.837847 2024-09-11 09:06:08.837852 mef 5816 R rec 4085490b-52b8-4a6d-aa55-ab42aae3b9d5 +2024-09-11 09:06:08.893094 2024-09-11 09:06:08.8931 mef 5817 R rec 59e34ad1-2e6f-4d16-8d45-650cf6a4e30b +2024-09-11 09:06:08.949314 2024-09-11 09:06:08.949319 mef 5818 R rec 7970d6c6-b12e-4dea-8922-639bedf0524c +2024-09-11 09:06:09.001781 2024-09-11 09:06:09.001786 mef 5819 R rec b0f5b345-e6e2-4964-bfeb-bd831b0711a7 +2024-09-11 09:06:09.056371 2024-09-11 09:06:09.056378 mef 5820 R rec 9b80948d-c2b8-4830-9b7c-35f618e0103a +2024-09-11 09:06:09.107616 2024-09-11 09:06:09.10762 mef 5821 R rec 8c2adfc4-6a32-48a0-a4d2-fd28801e6eb7 +2024-09-11 09:06:09.208631 2024-09-11 09:06:09.208636 mef 5822 R rec 018e29e6-52da-4821-8f52-afa3b17329c5 +2024-09-11 09:06:09.273799 2024-09-11 09:06:09.273804 mef 5823 R rec 6870e23c-a5d6-4022-aa88-fab4d1ab1dcc +2024-09-11 09:06:09.334369 2024-09-11 09:06:09.334374 mef 5824 R rec 161915d7-a1b1-462d-bda1-7fe9513f3b33 +2024-09-11 09:06:09.407026 2024-09-11 09:06:09.40703 mef 5825 R rec d5839d23-4198-4336-b2b6-9cb54136086d +2024-09-11 09:06:09.463184 2024-09-11 09:06:09.46319 mef 5826 R rec bf76631f-162a-4a38-a79c-c285722fdca8 +2024-09-11 09:06:09.515581 2024-09-11 09:06:09.515586 mef 5827 R rec cba10001-3e0e-4c57-812a-584de6b6207d +2024-09-11 09:06:09.576485 2024-09-11 09:06:09.57649 mef 5828 R rec e3154658-b7fc-485d-bf64-f3069ed3b5aa +2024-09-11 09:06:09.62943 2024-09-11 09:06:09.629435 mef 5829 R rec 9945dd3a-c62d-4bb6-9c3e-064647f450df +2024-09-11 09:06:09.688531 2024-09-11 09:06:09.688536 mef 5830 R rec e4ef1d4c-b4e7-47e2-a9cf-df3adbc1b2ff +2024-09-11 09:06:09.765225 2024-09-11 09:06:09.76523 mef 5831 R rec bef85678-8947-44b2-b168-42bccc73f817 +2024-09-11 09:06:09.818653 2024-09-11 09:06:09.818659 mef 5832 R rec f09cebf3-8bf6-4097-bc06-ddd44a9c1d2c +2024-09-11 09:06:09.874724 2024-09-11 09:06:09.874729 mef 5833 R rec f5ddd9b0-6540-4efd-8d65-2a9a289e0a7d +2024-09-11 09:06:09.932164 2024-09-11 09:06:09.93217 mef 5834 R rec 2263de89-c22f-4e86-8cf2-9881c3c4de96 +2024-09-11 09:06:09.990769 2024-09-11 09:06:09.990773 mef 5835 R rec 334a8530-5b95-49bb-b48b-d052e80b0d2f +2024-09-11 09:06:10.174574 2024-09-11 09:06:10.174579 mef 5836 R rec 0d9c0878-be4c-41a8-94b7-98904a6f7e61 +2024-09-11 09:06:10.233028 2024-09-11 09:06:10.233033 mef 5837 R rec 49d2e50d-a935-4b8e-9f01-ba079b48f946 +2024-09-11 09:06:10.29107 2024-09-11 09:06:10.291075 mef 5838 R rec 091c591d-8e23-4ee2-b576-31281028fdd2 +2024-09-11 09:06:10.345752 2024-09-11 09:06:10.345756 mef 5839 R rec f305743c-a0c9-450b-a5c7-9731c9942601 +2024-09-11 09:06:10.40456 2024-09-11 09:06:10.404565 mef 5840 R rec 3b57ac28-d624-45b0-8af4-5e4052f6c538 +2024-09-11 09:06:10.463536 2024-09-11 09:06:10.463541 mef 5841 R rec 75db8daf-e64a-4ba0-9d85-33600887a4e3 +2024-09-11 09:06:10.555322 2024-09-11 09:06:10.555327 mef 5842 R rec 2c3d32bf-1ecd-4e71-9271-66aaacba5f38 +2024-09-11 09:06:10.607746 2024-09-11 09:06:10.607751 mef 5843 R rec 9a3e6dac-784c-41a3-96d1-6a645522950c +2024-09-11 09:06:10.667852 2024-09-11 09:06:10.667858 mef 5844 R rec 2d539758-d139-4846-8abf-a71e0887f0d7 +2024-09-11 09:06:10.722316 2024-09-11 09:06:10.722324 mef 5845 R rec 4d855c81-9601-4736-ab75-2b31cad2ae24 +2024-09-11 09:06:10.78521 2024-09-11 09:06:10.785215 mef 5846 R rec 0215105d-aeea-44a2-8d50-34b7b3fa9e97 +2024-09-11 09:06:10.834906 2024-09-11 09:06:10.834911 mef 5847 R rec a680eefc-5206-4649-b70b-9757f8115420 +2024-09-11 09:06:10.886914 2024-09-11 09:06:10.88692 mef 5848 R rec f450eafc-0e6c-40be-baed-da94464749bc +2024-09-11 09:06:10.937873 2024-09-11 09:06:10.937878 mef 5849 R rec 893643b8-995d-472b-9e6b-4ae1de6731c2 +2024-09-11 09:06:10.996053 2024-09-11 09:06:10.996057 mef 5850 R rec 36f36dfe-0c4c-448e-8204-51ae29f07efe +2024-09-11 09:06:11.048815 2024-09-11 09:06:11.04882 mef 5851 R rec c169b5a1-4a08-41bc-91c1-5dfc1cce0f6b +2024-09-11 09:06:11.1647 2024-09-11 09:06:11.164705 mef 5852 R rec d701f6bf-f543-451e-8f05-aa712fb6667d +2024-09-11 09:06:11.220778 2024-09-11 09:06:11.220783 mef 5853 R rec f4aa49d0-b66f-4815-8eff-292cf1e8858c +2024-09-11 09:06:11.273418 2024-09-11 09:06:11.273422 mef 5854 R rec cf480277-53b0-43e7-89ab-906e6113d235 +2024-09-11 09:06:11.32943 2024-09-11 09:06:11.329436 mef 5855 R rec 01ecc7d8-21b7-452a-935e-ffea4b03f9f1 +2024-09-11 09:06:11.40009 2024-09-11 09:06:11.400096 mef 5856 R rec 9e0d821b-a4b2-43fb-aa21-9ba6b7ca9bd8 +2024-09-11 09:06:11.493526 2024-09-11 09:06:11.493532 mef 5857 R rec 219b10b2-f863-440c-b20a-e326cb8e0bb5 +2024-09-11 09:06:11.564907 2024-09-11 09:06:11.564912 mef 5858 R rec 9bcec4ee-1696-43db-a139-5d2b237e7dc8 +2024-09-11 09:06:11.617562 2024-09-11 09:06:11.617567 mef 5859 R rec f1c14df0-bb98-4d0f-b6a2-edc3f0bc1908 +2024-09-11 09:06:11.671889 2024-09-11 09:06:11.671894 mef 5860 R rec 6ab406dd-9ce1-4b87-89de-fbbb3f4e9cf4 +2024-09-11 09:06:11.722937 2024-09-11 09:06:11.722944 mef 5861 R rec 326cb600-15e6-425e-8ca4-f71a830f05a3 +2024-09-11 09:06:11.777844 2024-09-11 09:06:11.777849 mef 5862 R rec 6970ae2b-2a5c-459f-9824-22091193a6ed +2024-09-11 09:06:11.83097 2024-09-11 09:06:11.830975 mef 5863 R rec 77ec7961-e3b1-4b5e-a4cf-b00c14ccd0ee +2024-09-11 09:06:11.881895 2024-09-11 09:06:11.8819 mef 5864 R rec 25bb73e2-a9d0-49dd-a279-5f35ec27b5b4 +2024-09-11 09:06:11.937045 2024-09-11 09:06:11.93705 mef 5865 R rec d44f2da6-bb66-464f-a78f-08848d0e3329 +2024-09-11 09:06:11.990412 2024-09-11 09:06:11.990418 mef 5866 R rec 43a5cdee-5427-40cd-91b8-ff96ea7a6d54 +2024-09-11 09:06:12.050869 2024-09-11 09:06:12.050874 mef 5867 R rec 0b305177-92bb-485c-b719-45527d236253 +2024-09-11 09:06:12.101892 2024-09-11 09:06:12.101897 mef 5868 R rec 7af3f610-a778-4f39-9491-6755ad3f8088 +2024-09-11 09:06:12.155501 2024-09-11 09:06:12.155507 mef 5869 R rec da4e87cc-0a1f-4179-8b1c-7802a204eb89 +2024-09-11 09:06:12.209107 2024-09-11 09:06:12.209112 mef 5870 R rec 3de11015-3262-4691-a0fd-72d7b222e855 +2024-09-11 09:06:12.263707 2024-09-11 09:06:12.263713 mef 5871 R rec e08a79d9-17e3-474b-b885-e9477328bb66 +2024-09-11 09:06:12.390816 2024-09-11 09:06:12.390821 mef 5872 R rec 007c10ba-6204-4203-b6e5-baf1b795d52a +2024-09-11 09:06:12.44628 2024-09-11 09:06:12.446286 mef 5873 R rec 0aac3d8a-2ea4-4284-af4f-0247b6ae4b98 +2024-09-11 09:06:12.505999 2024-09-11 09:06:12.506003 mef 5874 R rec c637f042-4dc8-48fc-8282-6151b2c508aa +2024-09-11 09:06:12.561317 2024-09-11 09:06:12.561322 mef 5875 R rec 8991d994-ab58-42b8-a735-d8d61c527e40 +2024-09-11 09:06:12.649972 2024-09-11 09:06:12.649977 mef 5876 R rec fa091c4f-4f1e-4249-92ca-d30e6d5316ae +2024-09-11 09:06:12.705384 2024-09-11 09:06:12.705389 mef 5877 R rec 405f517c-6269-46a1-8cf0-a0c73f161ae3 +2024-09-11 09:06:12.759601 2024-09-11 09:06:12.759606 mef 5878 R rec 6ca01a5d-41e4-446b-af17-f4f7873068fb +2024-09-11 09:06:12.809533 2024-09-11 09:06:12.809538 mef 5879 R rec 0cbd4719-0cc4-43dd-9905-df10c4ceb2ba +2024-09-11 09:06:12.864603 2024-09-11 09:06:12.864608 mef 5880 R rec 06eed74d-e887-4e3e-b3ca-df646041c557 +2024-09-11 09:06:12.919387 2024-09-11 09:06:12.919393 mef 5881 R rec 51784445-780f-4803-92cb-dd3f9655c64e +2024-09-11 09:06:12.976864 2024-09-11 09:06:12.976868 mef 5882 R rec f713fc5c-011e-417f-805e-6bd7c97ee8fd +2024-09-11 09:06:13.02918 2024-09-11 09:06:13.029185 mef 5883 R rec ae6cee9d-06c2-4123-be06-7f1394692a75 +2024-09-11 09:06:13.087745 2024-09-11 09:06:13.087751 mef 5884 R rec 3355af94-4967-4964-888a-56f5d4e314e1 +2024-09-11 09:06:13.143218 2024-09-11 09:06:13.143223 mef 5885 R rec 4d7cea09-9112-4677-9db9-43df87170714 +2024-09-11 09:06:13.199473 2024-09-11 09:06:13.199478 mef 5886 R rec fab126dd-7e1e-4f36-a272-0c53c64103c6 +2024-09-11 09:06:13.261321 2024-09-11 09:06:13.261326 mef 5887 R rec a7d2e238-c39c-4986-9df0-e2a4e46113e5 +2024-09-11 09:06:13.318791 2024-09-11 09:06:13.318797 mef 5888 R rec a590ef48-6f24-4f7b-a0c7-d40f87fc727e +2024-09-11 09:06:13.378104 2024-09-11 09:06:13.378108 mef 5889 R rec e6414f45-bedb-4e48-a6bb-c9dc39030f7d +2024-09-11 09:06:13.433745 2024-09-11 09:06:13.433749 mef 5890 R rec dddf0dc6-0d9a-48f9-8d90-4c61bc3cfc2b +2024-09-11 09:06:13.483037 2024-09-11 09:06:13.483042 mef 5891 R rec 9a94cbe9-9d2b-4654-ab32-7e13e447dc93 +2024-09-11 09:06:13.539776 2024-09-11 09:06:13.539781 mef 5892 R rec b4017081-32f8-4e78-a1bb-d37dadb783a5 +2024-09-11 09:06:13.593153 2024-09-11 09:06:13.593157 mef 5893 R rec bca46df3-cf0c-4c4f-9002-14de8460ff73 +2024-09-11 09:06:13.663859 2024-09-11 09:06:13.663865 mef 5894 R rec 4a72f7c7-51c8-4ecb-8caa-ec30a7bf599c +2024-09-11 09:06:13.742039 2024-09-11 09:06:13.742044 mef 5895 R rec 03977cf7-cf21-4666-8c39-6954f5a08a98 +2024-09-11 09:06:13.799465 2024-09-11 09:06:13.799469 mef 5896 R rec 763525d0-b59c-492f-afa4-ff9df24d77b9 +2024-09-11 09:06:13.84881 2024-09-11 09:06:13.848815 mef 5897 R rec 5689afe9-bfd7-4663-bf2d-7b0029ec3dd2 +2024-09-11 09:06:13.89979 2024-09-11 09:06:13.899795 mef 5898 R rec a9281211-73c6-4120-a094-5cf3f2a1c7a7 +2024-09-11 09:06:13.95094 2024-09-11 09:06:13.950945 mef 5899 R rec 15509379-3ba7-498e-8aac-f9dc3285b214 +2024-09-11 09:06:14.001648 2024-09-11 09:06:14.001652 mef 5900 R rec 8d501d09-8dd5-461d-9096-aea8d54336f9 +2024-09-11 09:06:14.061257 2024-09-11 09:06:14.061261 mef 5901 R rec 1226667f-3dcf-4f2f-a706-ea9720048168 +2024-09-11 09:06:14.110863 2024-09-11 09:06:14.110868 mef 5902 R rec f2be96cd-fa78-497f-ae19-0b52059633c6 +2024-09-11 09:06:14.165964 2024-09-11 09:06:14.165969 mef 5903 R rec 5770f51d-ca0c-4b0a-a729-eb2e0993a632 +2024-09-11 09:06:14.221445 2024-09-11 09:06:14.22145 mef 5904 R rec 27396c3b-22ba-4fd7-b230-5ef4a0a210f8 +2024-09-11 09:06:14.275504 2024-09-11 09:06:14.275509 mef 5905 R rec 3b70b83f-5a6b-4c72-81bc-89fff0109bcf +2024-09-11 09:06:14.336748 2024-09-11 09:06:14.336754 mef 5906 R rec 61bfca08-9b99-4e36-bfa4-291223237aad +2024-09-11 09:06:14.397119 2024-09-11 09:06:14.397125 mef 5907 R rec d020d5b4-c8cf-4599-844d-e04e4863af48 +2024-09-11 09:06:14.45312 2024-09-11 09:06:14.453125 mef 5908 R rec 9d67b52e-f47b-476d-b202-ee2c4845f50b +2024-09-11 09:06:14.505247 2024-09-11 09:06:14.505252 mef 5909 R rec 3b7f0db8-d92e-4e45-9b5f-7d9851f0e43b +2024-09-11 09:06:14.569221 2024-09-11 09:06:14.569226 mef 5910 R rec 4ecae7b1-0dd3-4006-8918-8ab774e0bd0a +2024-09-11 09:06:14.622746 2024-09-11 09:06:14.622751 mef 5911 R rec e54a47bd-14c4-48d6-a7e5-07395b5e8ed3 +2024-09-11 09:06:14.680481 2024-09-11 09:06:14.680486 mef 5912 R rec fd926488-8495-41c4-b34d-47ffcb350d6c +2024-09-11 09:06:14.732128 2024-09-11 09:06:14.732134 mef 5913 R rec 7887195a-10ee-4bb1-b436-58e4bc273e4c +2024-09-11 09:06:14.784749 2024-09-11 09:06:14.784754 mef 5914 R rec d7bacf9f-a73f-493a-a57e-7ac41d116eb9 +2024-09-11 09:06:14.836153 2024-09-11 09:06:14.836165 mef 5915 R rec 91ed5dd8-3a40-4e9d-84df-40aeb5374796 +2024-09-11 09:06:14.889021 2024-09-11 09:06:14.889027 mef 5916 R rec cbd76162-0bb7-4741-8f2b-e18059d4e6fb +2024-09-11 09:06:14.94208 2024-09-11 09:06:14.942085 mef 5917 R rec 711577ce-a729-4ea7-b52b-449edcb6ee88 +2024-09-11 09:06:14.994188 2024-09-11 09:06:14.994193 mef 5918 R rec 1c592819-2a4f-4113-bda1-f83c2e4301a7 +2024-09-11 09:06:15.088585 2024-09-11 09:06:15.08859 mef 5919 R rec 120434ec-9424-4fcc-a629-2ff16ec49973 +2024-09-11 09:06:15.143194 2024-09-11 09:06:15.143199 mef 5920 R rec 636cb679-6a24-4bb2-b847-a3a90bb78e7e +2024-09-11 09:06:15.197663 2024-09-11 09:06:15.197668 mef 5921 R rec a88ee6cc-db78-4d37-b35b-fe034d6a9d8f +2024-09-11 09:06:15.253894 2024-09-11 09:06:15.253899 mef 5922 R rec c37f2b21-5409-402d-8735-39eb802ca66d +2024-09-11 09:06:15.309204 2024-09-11 09:06:15.309209 mef 5923 R rec d1231dc4-b5d4-4de0-95f6-2e780f1b9eab +2024-09-11 09:06:15.362585 2024-09-11 09:06:15.36259 mef 5924 R rec 96036cfb-ad86-4ad1-a015-a941a23d109f +2024-09-11 09:06:15.422547 2024-09-11 09:06:15.422551 mef 5925 R rec 334066f3-786d-4044-8de2-266d3d282b12 +2024-09-11 09:06:15.494308 2024-09-11 09:06:15.494313 mef 5926 R rec d0344e57-b5bf-4c88-9aea-e215412fc682 +2024-09-11 09:06:15.558235 2024-09-11 09:06:15.55824 mef 5927 R rec cf125117-5b83-4045-8771-4f86f330e349 +2024-09-11 09:06:15.64469 2024-09-11 09:06:15.644695 mef 5928 R rec e053212c-5e89-4428-803f-45ed7910bd25 +2024-09-11 09:06:15.702534 2024-09-11 09:06:15.702539 mef 5929 R rec a30c3fc7-3cc2-47ec-8563-9f00cd6f3328 +2024-09-11 09:06:15.763676 2024-09-11 09:06:15.763681 mef 5930 R rec c12229bb-33fb-4895-b1e7-0d0e98108f48 +2024-09-11 09:06:15.813987 2024-09-11 09:06:15.813992 mef 5931 R rec f93eebec-5c10-4330-b79c-c89f3712ef8b +2024-09-11 09:06:15.865387 2024-09-11 09:06:15.865392 mef 5932 R rec 692bf535-eb64-4612-8bd8-c31ff4adf426 +2024-09-11 09:06:15.917645 2024-09-11 09:06:15.91765 mef 5933 R rec efb7a788-c884-4785-b0dc-4fab75a9cc57 +2024-09-11 09:06:15.97017 2024-09-11 09:06:15.970175 mef 5934 R rec 5b44583a-5b7a-496a-934e-1300c265b685 +2024-09-11 09:06:16.022216 2024-09-11 09:06:16.022221 mef 5935 R rec bfa5e918-98fb-4957-91ca-d8d2f897037a +2024-09-11 09:06:16.080703 2024-09-11 09:06:16.080708 mef 5936 R rec 13707adb-4161-4315-a3ef-de8107cd7336 +2024-09-11 09:06:16.144725 2024-09-11 09:06:16.14473 mef 5937 R rec f8aa8911-f443-46c6-9d16-1f854bbdf36b +2024-09-11 09:06:16.204055 2024-09-11 09:06:16.20406 mef 5938 R rec 28889129-f496-46a4-b3f2-57fa27ab164e +2024-09-11 09:06:16.258359 2024-09-11 09:06:16.258364 mef 5939 R rec 35dd2e1b-d31f-4938-84d8-d3bb733a8261 +2024-09-11 09:06:16.373558 2024-09-11 09:06:16.373563 mef 5940 R rec 1a4adf9f-cdf3-458c-8385-e76e9aa6b692 +2024-09-11 09:06:16.42567 2024-09-11 09:06:16.425675 mef 5941 R rec 59e3add0-31a7-4d42-8be8-b4753e56379e +2024-09-11 09:06:16.481969 2024-09-11 09:06:16.481974 mef 5942 R rec ac37b941-9e53-40d1-a9fc-d50b4977b381 +2024-09-11 09:06:16.543689 2024-09-11 09:06:16.543693 mef 5943 R rec 17c92f14-5174-4944-a2c2-38b7e9486a1e +2024-09-11 09:06:16.60103 2024-09-11 09:06:16.601035 mef 5944 R rec dc278ae7-06e8-44d1-a260-3e879d42bda8 +2024-09-11 09:06:16.661401 2024-09-11 09:06:16.661406 mef 5945 R rec 8e678445-19ed-4775-b81e-c9abd684cd46 +2024-09-11 09:06:16.727061 2024-09-11 09:06:16.727066 mef 5946 R rec 3adf1e4c-0f7e-40c6-b6d7-498162deb23f +2024-09-11 09:06:16.782462 2024-09-11 09:06:16.782468 mef 5947 R rec 3c4bd28d-7e83-4054-bb55-503ca323344c +2024-09-11 09:06:16.835827 2024-09-11 09:06:16.835831 mef 5948 R rec 3ca9e7f7-7bfd-467a-9f47-3f40b493b5ce +2024-09-11 09:06:16.885531 2024-09-11 09:06:16.885536 mef 5949 R rec d4180cb1-4cf2-467a-9c31-e7bf04fdc54b +2024-09-11 09:06:16.938234 2024-09-11 09:06:16.938238 mef 5950 R rec eaf40c10-56e4-43a6-b57a-a9c1f652ea5b +2024-09-11 09:06:16.989823 2024-09-11 09:06:16.989828 mef 5951 R rec 995932f1-099b-43f8-b4d7-d1ca28fee10c +2024-09-11 09:06:17.044801 2024-09-11 09:06:17.044806 mef 5952 R rec 71171c9d-49ec-4c1c-89d7-10e300cd14e5 +2024-09-11 09:06:17.100349 2024-09-11 09:06:17.100354 mef 5953 R rec cee7d5bc-9840-4fde-9792-94efbe0d19d7 +2024-09-11 09:06:17.150936 2024-09-11 09:06:17.150941 mef 5954 R rec 3543e436-f341-49d2-9031-e350dfdc5bb3 +2024-09-11 09:06:17.207697 2024-09-11 09:06:17.207702 mef 5955 R rec 7a008926-859d-4d8c-b892-f7ea8ab8a059 +2024-09-11 09:06:17.267601 2024-09-11 09:06:17.267606 mef 5956 R rec b145f05d-456e-448b-8e48-b0a863af3fd7 +2024-09-11 09:06:17.357458 2024-09-11 09:06:17.357463 mef 5957 R rec 86b87c8e-8d23-4010-82f2-db912114ca2d +2024-09-11 09:06:17.483047 2024-09-11 09:06:17.483052 mef 5958 R rec bb2b3f28-5b90-4abf-b06e-2ca6c888b902 +2024-09-11 09:06:17.543656 2024-09-11 09:06:17.543661 mef 5959 R rec aa4dea10-32df-4bc0-b89f-6c978d10671c +2024-09-11 09:06:17.601243 2024-09-11 09:06:17.601248 mef 5960 R rec 2487a452-68ec-401a-9cfe-8f4d4be6de47 +2024-09-11 09:06:20.005963 2024-09-11 09:06:20.005969 mef 5961 R rec 8f291f36-1a42-4c48-9746-fc7f5a89485d +2024-09-11 09:06:20.059715 2024-09-11 09:06:20.05972 mef 5962 R rec 5fd17b2b-090b-4193-9304-bfcad0bfee11 +2024-09-11 09:06:20.112735 2024-09-11 09:06:20.112741 mef 5963 R rec c93cdcca-97eb-408c-9111-a322988df1b3 +2024-09-11 09:06:20.16707 2024-09-11 09:06:20.167075 mef 5964 R rec 0d049b7b-4306-4ab8-abd9-5cf634c4b27e +2024-09-11 09:06:20.217396 2024-09-11 09:06:20.217403 mef 5965 R rec 4b6f8efa-873d-48ac-966e-08a8f18acd52 +2024-09-11 09:06:20.274189 2024-09-11 09:06:20.274193 mef 5966 R rec e281b446-ee4f-4c64-b0c5-fdf9cdad9532 +2024-09-11 09:06:20.405315 2024-09-11 09:06:20.40532 mef 5967 R rec 53235fa5-99c0-424e-b65e-3446e66ceb4c +2024-09-11 09:06:20.45926 2024-09-11 09:06:20.459265 mef 5968 R rec fe174a3c-2f20-40bb-8723-76d6fb44e0ad +2024-09-11 09:06:20.513844 2024-09-11 09:06:20.513849 mef 5969 R rec 637680fc-d020-4719-b9cb-2322b5897a76 +2024-09-11 09:06:20.564821 2024-09-11 09:06:20.564827 mef 5970 R rec 8b0d1431-7320-4fa7-a472-0252f6c2f4f1 +2024-09-11 09:06:20.614529 2024-09-11 09:06:20.614534 mef 5971 R rec 204c2ed1-c433-4387-a07c-ad0ba02163d3 +2024-09-11 09:06:20.666292 2024-09-11 09:06:20.666298 mef 5972 R rec 9ce06dd3-1398-4be1-a5b3-0e6a44d35bd0 +2024-09-11 09:06:20.71842 2024-09-11 09:06:20.718427 mef 5973 R rec cc1ba61b-c559-41b5-acf4-c048120325b9 +2024-09-11 09:06:20.771982 2024-09-11 09:06:20.771987 mef 5974 R rec 78be2ebf-0af2-42a5-a64d-55bfad600c93 +2024-09-11 09:06:20.824683 2024-09-11 09:06:20.824688 mef 5975 R rec a29ba966-e1e5-4d5a-8485-4ca2500b6022 +2024-09-11 09:06:20.872963 2024-09-11 09:06:20.872967 mef 5976 R rec c0899532-366b-4373-88ac-cb3069b55363 +2024-09-11 09:06:20.929789 2024-09-11 09:06:20.929795 mef 5977 R rec 72468cee-ba3b-4f3f-9016-9f7be2271fe7 +2024-09-11 09:06:21.006103 2024-09-11 09:06:21.006108 mef 5978 R rec d87e47c4-3eb0-45e8-b733-9877d21ad62e +2024-09-11 09:06:21.113971 2024-09-11 09:06:21.113976 mef 5979 R rec b77a7624-f5e1-49e5-8990-4ece14a173cd +2024-09-11 09:06:21.163411 2024-09-11 09:06:21.163416 mef 5980 R rec 9842da63-7f10-4468-b808-4ce0195b0fa1 +2024-09-11 09:06:21.215782 2024-09-11 09:06:21.215787 mef 5981 R rec 7c5ca351-f585-453f-90a5-059e9f5813f5 +2024-09-11 09:06:21.269048 2024-09-11 09:06:21.269053 mef 5982 R rec 23f08403-4080-4d07-b836-021555d81452 +2024-09-11 09:06:21.316162 2024-09-11 09:06:21.316167 mef 5983 R rec c35234b7-8978-4c64-94ac-fc33bf04667a +2024-09-11 09:06:21.366682 2024-09-11 09:06:21.366687 mef 5984 R rec 4e6c1ca0-efd8-45c4-a9d3-2a31619186d5 +2024-09-11 09:06:21.421932 2024-09-11 09:06:21.421937 mef 5985 R rec f85f4542-ad93-470d-ab27-e570a64de855 +2024-09-11 09:06:21.472884 2024-09-11 09:06:21.472889 mef 5986 R rec ded73363-80fe-4c6d-b2c4-a701b3c30a4e +2024-09-11 09:06:21.533229 2024-09-11 09:06:21.533234 mef 5987 R rec f5316d37-baed-4015-ab36-bbae8c2bed1a +2024-09-11 09:06:21.586377 2024-09-11 09:06:21.586383 mef 5988 R rec 643d930c-20ce-485a-8b57-174385ba990a +2024-09-11 09:06:21.637287 2024-09-11 09:06:21.637293 mef 5989 R rec d4eb5b68-d1f0-469b-ae45-a92e2c33d950 +2024-09-11 09:06:21.690047 2024-09-11 09:06:21.690053 mef 5990 R rec 795258fb-8755-4b63-9156-f934683be10e +2024-09-11 09:06:21.738163 2024-09-11 09:06:21.738169 mef 5991 R rec f23360b9-0971-4463-8cff-42a9d15225c3 +2024-09-11 09:06:21.786197 2024-09-11 09:06:21.786201 mef 5992 R rec 21fd685d-e691-4ae5-8248-dfe0385c6261 +2024-09-11 09:06:21.835404 2024-09-11 09:06:21.835409 mef 5993 R rec 42190b71-0140-4d70-a115-bd84068f0bac +2024-09-11 09:06:21.883993 2024-09-11 09:06:21.883999 mef 5994 R rec af4386cd-77f7-4de3-8258-4cc7e34efc8c +2024-09-11 09:06:21.933502 2024-09-11 09:06:21.933507 mef 5995 R rec f528316c-00c4-4965-b4be-6e12ce0c12f7 +2024-09-11 09:06:21.985125 2024-09-11 09:06:21.985129 mef 5996 R rec 2c500c7d-ccd7-4ee6-ae4d-fc3161e98980 +2024-09-11 09:06:22.125035 2024-09-11 09:06:22.12504 mef 5997 R rec 622d0e88-8470-4c5e-a974-7d2d34bd8223 +2024-09-11 09:06:22.19105 2024-09-11 09:06:22.191056 mef 5998 R rec e7ca21a1-7f59-4f3e-8436-8a78a2758181 +2024-09-11 09:06:22.24257 2024-09-11 09:06:22.242575 mef 5999 R rec edc854ee-7206-4522-8b64-3ed70e8f5b35 +2024-09-11 09:06:22.36057 2024-09-11 09:06:22.360575 mef 6000 R rec bc19343a-676b-44d7-ab97-42a903c8b57d +2024-09-11 09:06:22.410134 2024-09-11 09:06:22.410139 mef 6001 R rec 783cee21-7eab-47a8-9819-0d07aebf339c +2024-09-11 09:06:22.467971 2024-09-11 09:06:22.467977 mef 6002 R rec aa4c0654-9d32-4751-80de-70cfe69298db +2024-09-11 09:06:22.52316 2024-09-11 09:06:22.523166 mef 6003 R rec 5fd7ef64-b030-4f2b-8638-ed5d65b9d31d +2024-09-11 09:06:22.574316 2024-09-11 09:06:22.574321 mef 6004 R rec f73e2e89-d34c-405c-9104-d6ce3ffc7dd2 +2024-09-11 09:06:22.626482 2024-09-11 09:06:22.626488 mef 6005 R rec d920cc3b-41da-486d-8c5c-41f0e4dba57a +2024-09-11 09:06:22.676358 2024-09-11 09:06:22.676364 mef 6006 R rec b8418015-0fa7-4489-9237-ddccf8933067 +2024-09-11 09:06:22.733937 2024-09-11 09:06:22.733942 mef 6007 R rec a264a0fb-6c9b-4d5a-b0ea-e57ee7ba10c9 +2024-09-11 09:06:22.78918 2024-09-11 09:06:22.789184 mef 6008 R rec e9925a2e-e894-4e6c-bc10-6db3f98b6a60 +2024-09-11 09:06:22.844254 2024-09-11 09:06:22.844259 mef 6009 R rec 8894cb6d-a3c3-4524-8cd9-03e4049fb68b +2024-09-11 09:06:22.89614 2024-09-11 09:06:22.896145 mef 6010 R rec ab0a639b-6a84-41a2-8e3f-b4b9aafd44ca +2024-09-11 09:06:22.945438 2024-09-11 09:06:22.945443 mef 6011 R rec 5e5f2baa-e338-4897-b902-6e52269ccb0c +2024-09-11 09:06:22.997585 2024-09-11 09:06:22.997591 mef 6012 R rec 5e31cd23-afb9-4582-a7a0-cdd07e3ea25f +2024-09-11 09:06:23.052667 2024-09-11 09:06:23.052673 mef 6013 R rec 75b5c8d3-4737-4b18-b311-f48443364de7 +2024-09-11 09:06:23.107525 2024-09-11 09:06:23.10753 mef 6014 R rec d6cc381f-b01e-46f1-ac54-07705e4930a8 +2024-09-11 09:06:23.16357 2024-09-11 09:06:23.163576 mef 6015 R rec 803eb3d2-3672-4e59-9143-50f359ca75c7 +2024-09-11 09:06:23.213104 2024-09-11 09:06:23.213109 mef 6016 R rec d5c3401a-d6ab-4d87-8148-75dbb552b74e +2024-09-11 09:06:23.268942 2024-09-11 09:06:23.268947 mef 6017 R rec 9fa5ff28-51b4-4c62-991f-1523ac0b1bc5 +2024-09-11 09:06:23.347349 2024-09-11 09:06:23.347354 mef 6018 R rec 11bbe80a-e957-4d5b-902f-ecfe0471709e +2024-09-11 09:06:23.398907 2024-09-11 09:06:23.398913 mef 6019 R rec 2ef05f28-4000-4107-8560-ef558215f31e +2024-09-11 09:06:23.448801 2024-09-11 09:06:23.448805 mef 6020 R rec 5ab885f2-fb3a-4972-b7a1-6cab9d65f3b1 +2024-09-11 09:06:23.501994 2024-09-11 09:06:23.501999 mef 6021 R rec 81592f9e-c80d-41ae-8183-59d9e98b2488 +2024-09-11 09:06:23.555528 2024-09-11 09:06:23.555535 mef 6022 R rec cf0c1a97-cd91-450c-aa3d-a2fcefe1ca0f +2024-09-11 09:06:23.60744 2024-09-11 09:06:23.607445 mef 6023 R rec 97f5968b-9f73-472c-a5eb-35f58030e381 +2024-09-11 09:06:23.659069 2024-09-11 09:06:23.659074 mef 6024 R rec 03701976-0c43-4840-9b8b-1cc503d32123 +2024-09-11 09:06:23.708984 2024-09-11 09:06:23.708989 mef 6025 R rec 644c876e-b266-4cb1-a5d7-33845b8b578b +2024-09-11 09:06:23.764702 2024-09-11 09:06:23.764708 mef 6026 R rec 5264cecb-44f8-4a2b-b76b-2c36413094a9 +2024-09-11 09:06:23.816227 2024-09-11 09:06:23.816233 mef 6027 R rec 9ed1e9e5-4fca-4bb0-b989-af3d28d54cda +2024-09-11 09:06:23.875214 2024-09-11 09:06:23.875219 mef 6028 R rec ec21d22d-2fce-4126-8583-434cb016ce76 +2024-09-11 09:06:23.932131 2024-09-11 09:06:23.932136 mef 6029 R rec b7747cfb-e7d0-477c-b03c-63049afc136f +2024-09-11 09:06:24.054355 2024-09-11 09:06:24.054361 mef 6030 R rec ced87c94-12a5-4dd4-819c-4530c630e424 +2024-09-11 09:06:24.107205 2024-09-11 09:06:24.107209 mef 6031 R rec 6299d588-a12f-44f8-b7a8-858528c8fd6f +2024-09-11 09:06:24.218875 2024-09-11 09:06:24.218879 mef 6032 R rec a8bffb0e-6a64-4e4e-b609-99b05b2b70da +2024-09-11 09:06:24.276239 2024-09-11 09:06:24.276244 mef 6033 R rec cdce73c7-6577-4492-b4f8-daa25c0b1ee8 +2024-09-11 09:06:24.326868 2024-09-11 09:06:24.326873 mef 6034 R rec 3de596fc-487d-45e6-9c82-791a5619a580 +2024-09-11 09:06:24.380436 2024-09-11 09:06:24.380441 mef 6035 R rec 7b3e3fa7-e493-48b7-ad9f-3d37a8e8d70f +2024-09-11 09:06:24.432018 2024-09-11 09:06:24.432023 mef 6036 R rec 6e0bedd7-eb4c-483f-b2ce-a068cbfbb58e +2024-09-11 09:06:24.814561 2024-09-11 09:06:24.814566 mef 6037 R rec d7c6de67-26fb-4702-ab1c-112b1699e6a9 +2024-09-11 09:06:24.866505 2024-09-11 09:06:24.866511 mef 6038 R rec 75f71cb6-52a1-42bc-a74d-9b47c791d51f +2024-09-11 09:06:24.917813 2024-09-11 09:06:24.917818 mef 6039 R rec cae3d254-b4e6-4c9c-8446-d6176d391195 +2024-09-11 09:06:24.973582 2024-09-11 09:06:24.973587 mef 6040 R rec e0f71f28-bf55-4c93-b4ca-1eef48400b10 +2024-09-11 09:06:25.022642 2024-09-11 09:06:25.022647 mef 6041 R rec 113e45ff-ffb9-4fb1-b196-b86dfaa49af7 +2024-09-11 09:06:25.082047 2024-09-11 09:06:25.082052 mef 6042 R rec 921b65d9-7cfa-4186-abd9-60049b6a45c0 +2024-09-11 09:06:25.329554 2024-09-11 09:06:25.329559 mef 6043 R rec a4289f12-4253-4f4e-baa5-fbfc0d28ddc7 +2024-09-11 09:06:25.440669 2024-09-11 09:06:25.440673 mef 6044 R rec deb03abf-3c59-4149-adc3-3e701090149d +2024-09-11 09:06:25.49647 2024-09-11 09:06:25.496475 mef 6045 R rec 10d2c2d8-4a6d-4ed4-b5e7-802b1ce3cd32 +2024-09-11 09:06:25.551536 2024-09-11 09:06:25.55154 mef 6046 R rec bdec37dd-3cab-4aa0-bd7f-b61541bccb26 +2024-09-11 09:06:25.612869 2024-09-11 09:06:25.612875 mef 6047 R rec 3374f5ef-f7b0-4ed5-8443-affbd39e0635 +2024-09-11 09:06:25.771139 2024-09-11 09:06:25.771144 mef 6048 R rec 8242fbc2-3cf7-46e6-88a5-ff9463bb11e7 +2024-09-11 09:06:25.82115 2024-09-11 09:06:25.821156 mef 6049 R rec 9d4a1f1d-f259-408b-a4c3-92bfa42d1510 +2024-09-11 09:06:25.875191 2024-09-11 09:06:25.875196 mef 6050 R rec d14c6c01-2505-44a8-9b94-171adb2a53fb +2024-09-11 09:06:25.928938 2024-09-11 09:06:25.928942 mef 6051 R rec e6efc7fb-72f6-4c3b-ba07-d13630c34032 +2024-09-11 09:06:25.981391 2024-09-11 09:06:25.981396 mef 6052 R rec d5a37278-9413-41d9-9262-2f2c2c17d758 +2024-09-11 09:06:26.034752 2024-09-11 09:06:26.034757 mef 6053 R rec bdb618ae-4013-48f4-91a1-733d291efdb8 +2024-09-11 09:06:26.086684 2024-09-11 09:06:26.086695 mef 6054 R rec 9084a5cc-f1f0-4249-891c-be2b1987a7ec +2024-09-11 09:06:26.137788 2024-09-11 09:06:26.137794 mef 6055 R rec 6d57785e-8fc9-4046-9ae6-95df462b2e34 +2024-09-11 09:06:26.195034 2024-09-11 09:06:26.195039 mef 6056 R rec eb79137d-8223-4e7f-bcd9-4d30f0c0189a +2024-09-11 09:06:26.245142 2024-09-11 09:06:26.245147 mef 6057 R rec b0cb3bd4-4f35-4cb6-a9b1-b2f4409b6a5d +2024-09-11 09:06:26.300954 2024-09-11 09:06:26.300958 mef 6058 R rec cf173f82-aa11-4146-8a2e-cc44fd97cb42 +2024-09-11 09:06:26.355037 2024-09-11 09:06:26.355043 mef 6059 R rec 84ae53f4-54c6-4717-be6f-e323488f6107 +2024-09-11 09:06:26.410143 2024-09-11 09:06:26.410149 mef 6060 R rec 78318f8b-095d-4923-9a30-4618ca07bc2d +2024-09-11 09:06:26.463229 2024-09-11 09:06:26.463235 mef 6061 R rec d8a869f1-84c5-4169-884e-3510cf802a48 +2024-09-11 09:06:26.518382 2024-09-11 09:06:26.518388 mef 6062 R rec 87db97cb-fe31-410b-8465-d6589f14d0fe +2024-09-11 09:06:26.633389 2024-09-11 09:06:26.633394 mef 6063 R rec 3ae82c30-c6e8-4622-9cfa-a73bd9b7cf47 +2024-09-11 09:06:26.68604 2024-09-11 09:06:26.686047 mef 6064 R rec 78652572-d131-46e9-b476-d5a2c2656356 +2024-09-11 09:06:26.73881 2024-09-11 09:06:26.738814 mef 6065 R rec 69abf072-240b-4de8-ad45-e194ace7a814 +2024-09-11 09:06:26.789332 2024-09-11 09:06:26.789337 mef 6066 R rec 5e3d134d-0f92-45f6-b20d-7502d5dda173 +2024-09-11 09:06:26.85121 2024-09-11 09:06:26.851217 mef 6067 R rec 60ff5a48-b8a3-4543-9019-fae61a9399f8 +2024-09-11 09:06:26.976182 2024-09-11 09:06:26.976187 mef 6068 R rec e8b7a2d4-e777-48af-926d-73ef48eba2f7 +2024-09-11 09:06:27.074313 2024-09-11 09:06:27.074319 mef 6069 R rec 88b076f3-854b-440a-ad8a-40969a757df3 +2024-09-11 09:06:27.129192 2024-09-11 09:06:27.129198 mef 6070 R rec 12f51d69-46b5-43f0-bb86-f9772f459258 +2024-09-11 09:06:27.179287 2024-09-11 09:06:27.179292 mef 6071 R rec 67cbe420-a194-4268-b02a-eba58aabfedc +2024-09-11 09:06:27.23159 2024-09-11 09:06:27.231597 mef 6072 R rec 9293727a-afc3-4dbd-901f-b5b5a5850fc7 +2024-09-11 09:06:27.290467 2024-09-11 09:06:27.290472 mef 6073 R rec 5449143f-63c9-439c-b20b-0014e50805c0 +2024-09-11 09:06:27.419951 2024-09-11 09:06:27.419958 mef 6074 R rec 29dfc33b-2928-4383-a1eb-de4404115bdb +2024-09-11 09:06:27.475851 2024-09-11 09:06:27.475857 mef 6075 R rec 09f080cb-eb2a-46a3-af66-015bf7d6384a +2024-09-11 09:06:27.534065 2024-09-11 09:06:27.534071 mef 6076 R rec 0eec59b5-d657-4174-808d-f6ceab2c8365 +2024-09-11 09:06:27.665348 2024-09-11 09:06:27.665355 mef 6077 R rec 93b0d653-1362-43fd-acfa-e4ebf7dc5983 +2024-09-11 09:06:27.724817 2024-09-11 09:06:27.724821 mef 6078 R rec 249e1986-f55c-4bb2-8fee-5b624106c48a +2024-09-11 09:06:27.784141 2024-09-11 09:06:27.784146 mef 6079 R rec 3880ea1f-7eb4-4ed5-a8f0-ee4b59b65c21 +2024-09-11 09:06:27.83489 2024-09-11 09:06:27.834895 mef 6080 R rec a8c5124a-912b-45db-90f3-d43994fd343b +2024-09-11 09:06:27.896895 2024-09-11 09:06:27.896901 mef 6081 R rec 349484fe-e475-489b-b34f-829db40bc480 +2024-09-11 09:06:27.947665 2024-09-11 09:06:27.94767 mef 6082 R rec 6e446776-0e75-4b49-b972-e2b0ebf9ed67 +2024-09-11 09:06:28.004806 2024-09-11 09:06:28.00481 mef 6083 R rec a593f8e4-94a2-40d8-9543-6b26f0b03344 +2024-09-11 09:06:28.058372 2024-09-11 09:06:28.058378 mef 6084 R rec 9423d401-26ba-4479-a0f6-0123bfb4067f +2024-09-11 09:06:28.108206 2024-09-11 09:06:28.108211 mef 6085 R rec 301d99c6-5d53-4978-8ecf-815c136ed5e7 +2024-09-11 09:06:28.163076 2024-09-11 09:06:28.163106 mef 6086 R rec e1b3fadf-1ce4-4e2d-bbbd-2adb8914f791 +2024-09-11 09:06:28.212191 2024-09-11 09:06:28.212196 mef 6087 R rec 52b90be4-7b14-4f65-b529-b4bbc6011368 +2024-09-11 09:06:28.328188 2024-09-11 09:06:28.328192 mef 6088 R rec b58ca4d8-8202-414d-84ea-8b1d16d4c5f2 +2024-09-11 09:06:28.384229 2024-09-11 09:06:28.384235 mef 6089 R rec 189f02cc-01d5-4b5b-a13c-974bfaa60a9a +2024-09-11 09:06:28.44459 2024-09-11 09:06:28.444595 mef 6090 R rec 0216cc77-4d23-48f6-92a2-e0fff7396c0e +2024-09-11 09:06:28.594071 2024-09-11 09:06:28.594076 mef 6091 R rec 8f5c4190-f7aa-4bdd-8a57-442d2854a5e5 +2024-09-11 09:06:28.645972 2024-09-11 09:06:28.645976 mef 6092 R rec 7db0c9a1-8b6d-48c8-8aa2-de840d5c940b +2024-09-11 09:06:28.699028 2024-09-11 09:06:28.699034 mef 6093 R rec a35f611f-60cf-4821-a157-ee15eba5ab10 +2024-09-11 09:06:28.750355 2024-09-11 09:06:28.750361 mef 6094 R rec 2fc3861a-6acb-4929-8eb7-846b9ebd7211 +2024-09-11 09:06:28.807348 2024-09-11 09:06:28.807354 mef 6095 R rec 95cbd626-7efe-4a33-968c-95451e8b2b2d +2024-09-11 09:06:28.859286 2024-09-11 09:06:28.859291 mef 6096 R rec bc201368-d7eb-4f85-80dd-81a361acbe8f +2024-09-11 09:06:28.913705 2024-09-11 09:06:28.91371 mef 6097 R rec 74bbe87e-3813-440c-b4b6-04e35af0f1b1 +2024-09-11 09:06:28.967104 2024-09-11 09:06:28.967108 mef 6098 R rec 6b0f3909-01f0-4071-b0ee-9243a48e637d +2024-09-11 09:06:29.016106 2024-09-11 09:06:29.016111 mef 6099 R rec 0fe05504-15b5-45b8-a5a1-1d2a4e444595 +2024-09-11 09:06:29.068502 2024-09-11 09:06:29.068506 mef 6100 R rec a84f4261-f66f-46ac-9149-a2430b8e78fd +2024-09-11 09:06:29.119902 2024-09-11 09:06:29.119908 mef 6101 R rec d3354c51-949d-4e4d-afe0-d2156a739879 +2024-09-11 09:06:29.17147 2024-09-11 09:06:29.171474 mef 6102 R rec c3c65a94-1e32-4203-88d3-d67042743219 +2024-09-11 09:06:29.230353 2024-09-11 09:06:29.230358 mef 6103 R rec 48607cc9-5cd3-4e9b-b296-73a36b9e4967 +2024-09-11 09:06:29.287039 2024-09-11 09:06:29.287045 mef 6104 R rec 8f335849-fe38-47d0-8b0d-32df972dc119 +2024-09-11 09:06:29.339615 2024-09-11 09:06:29.33962 mef 6105 R rec cba23d97-6219-4cb5-b583-67d5d44f6558 +2024-09-11 09:06:29.392886 2024-09-11 09:06:29.392891 mef 6106 R rec f7d44513-8af1-4069-a9ef-3decd8793362 +2024-09-11 09:06:29.454145 2024-09-11 09:06:29.454151 mef 6107 R rec 5e51cd2d-b966-4f9d-8f2b-8f63e6a3b59d +2024-09-11 09:06:29.518735 2024-09-11 09:06:29.518742 mef 6108 R rec e32b0d7d-9047-401f-bfcd-3c55e4f96257 +2024-09-11 09:06:29.572102 2024-09-11 09:06:29.572106 mef 6109 R rec 3ab840b8-0bc2-46e7-bb99-8258d590abe2 +2024-09-11 09:06:29.632494 2024-09-11 09:06:29.632498 mef 6110 R rec 4b5a4ae6-8f03-41a6-a51a-904629cf5df7 +2024-09-11 09:06:29.758276 2024-09-11 09:06:29.758281 mef 6111 R rec 78702570-692a-4702-b3f9-d5359f71fd60 +2024-09-11 09:06:29.835003 2024-09-11 09:06:29.835008 mef 6112 R rec 6310f744-a76a-4216-b01b-e4ef51af78ca +2024-09-11 09:06:29.889057 2024-09-11 09:06:29.889062 mef 6113 R rec 4045921e-fd35-4a81-bb7e-747a2d77856a +2024-09-11 09:06:29.940206 2024-09-11 09:06:29.940211 mef 6114 R rec c884b36a-058e-4906-8e01-ffcb0657c4dc +2024-09-11 09:06:29.992163 2024-09-11 09:06:29.992168 mef 6115 R rec 9bc49555-818c-4cfa-a6cd-1f6c96650cfd +2024-09-11 09:06:30.051622 2024-09-11 09:06:30.051632 mef 6116 R rec 790e1912-722b-4501-b1d9-49d8504b48ee +2024-09-11 09:06:30.104541 2024-09-11 09:06:30.104544 mef 6117 R rec 2c481923-0ccf-405c-ab12-652664478ada +2024-09-11 09:06:30.164621 2024-09-11 09:06:30.164626 mef 6118 R rec 57f5449e-97c2-4cb9-a293-d35daa541c99 +2024-09-11 09:06:30.218519 2024-09-11 09:06:30.218526 mef 6119 R rec 38683c2e-363b-4484-bc1e-9ff6faf0b29d +2024-09-11 09:06:30.268338 2024-09-11 09:06:30.268343 mef 6120 R rec d0d5f8f1-e861-4552-ac20-bace13c35cb8 +2024-09-11 09:06:30.324102 2024-09-11 09:06:30.324107 mef 6121 R rec 39e713cb-8a0f-4f50-a75a-3231c5725afb +2024-09-11 09:06:30.446555 2024-09-11 09:06:30.44656 mef 6122 R rec 62ce7a1b-8a51-4920-bd17-d3c36fb7234f +2024-09-11 09:06:30.49978 2024-09-11 09:06:30.499784 mef 6123 R rec 7da6b6a7-e209-492a-bd7c-c4e1f512bb7b +2024-09-11 09:06:30.551338 2024-09-11 09:06:30.551342 mef 6124 R rec c2a2a666-6ce3-4203-a4a5-3148df83dcee +2024-09-11 09:06:30.601883 2024-09-11 09:06:30.601887 mef 6125 R rec ed94ab46-6a3e-41e5-9d08-6ffced77f89b +2024-09-11 09:06:30.65284 2024-09-11 09:06:30.652845 mef 6126 R rec 993efaba-7039-4970-840f-aeb0f707fe12 +2024-09-11 09:06:30.704849 2024-09-11 09:06:30.704853 mef 6127 R rec 04db942e-859d-40c1-b54a-ae4979f3b92f +2024-09-11 09:06:30.759195 2024-09-11 09:06:30.7592 mef 6128 R rec 2f4666a6-1ae4-4a75-b3d3-d566674a0b63 +2024-09-11 09:06:30.815145 2024-09-11 09:06:30.815151 mef 6129 R rec 6e984502-3d10-419d-b4a9-0f8ad3a8713e +2024-09-11 09:06:31.02006 2024-09-11 09:06:31.020065 mef 6130 R rec 1d3f3a72-3055-420c-91a9-9f99a7de3f07 +2024-09-11 09:06:31.071701 2024-09-11 09:06:31.071706 mef 6131 R rec 9780971d-8d0f-4a89-925e-b4e027b27702 +2024-09-11 09:06:31.125325 2024-09-11 09:06:31.125329 mef 6132 R rec 0357f1b9-aa2b-48e1-9c61-06cf447a08c3 +2024-09-11 09:06:31.174381 2024-09-11 09:06:31.174386 mef 6133 R rec 3d1b2637-69d4-4fec-8617-d3aa10f04e18 +2024-09-11 09:06:31.231054 2024-09-11 09:06:31.231058 mef 6134 R rec 492c96a3-2d9c-46c6-96a8-0900807f5ec1 +2024-09-11 09:06:31.282713 2024-09-11 09:06:31.282718 mef 6135 R rec f0c6fb8f-2580-4ca1-9494-317019b70516 +2024-09-11 09:06:31.337474 2024-09-11 09:06:31.337479 mef 6136 R rec badecd41-0362-4fdb-9a20-a0979d917fa1 +2024-09-11 09:06:31.517179 2024-09-11 09:06:31.517184 mef 6137 R rec 716d30ee-15f8-493d-88d5-3e88ae4f3ef0 +2024-09-11 09:06:31.573763 2024-09-11 09:06:31.573767 mef 6138 R rec ee2a80eb-f6b0-476b-9e01-a6435d146058 +2024-09-11 09:06:31.627868 2024-09-11 09:06:31.627873 mef 6139 R rec 1e1ac070-63ee-4eef-9269-cbd59231c5df +2024-09-11 09:06:31.74537 2024-09-11 09:06:31.745375 mef 6140 R rec 075b9d04-3528-43f2-a70b-0bddeeb3947e +2024-09-11 09:06:31.798828 2024-09-11 09:06:31.798834 mef 6141 R rec 167a6feb-a5c9-4ce5-8243-16712fbd7b10 +2024-09-11 09:06:31.852024 2024-09-11 09:06:31.852029 mef 6142 R rec d6fc5369-0436-4304-9df3-0c062bed0b0e +2024-09-11 09:06:31.906507 2024-09-11 09:06:31.906511 mef 6143 R rec 92baaa71-73d9-439e-9379-90952829e75d +2024-09-11 09:06:31.957483 2024-09-11 09:06:31.957487 mef 6144 R rec 90b94724-4659-4054-8f49-a4fe007e38fc +2024-09-11 09:06:32.010707 2024-09-11 09:06:32.01071 mef 6145 R rec d40d0cec-ea91-40f6-844f-326e628c84fa +2024-09-11 09:06:32.064955 2024-09-11 09:06:32.06496 mef 6146 R rec eaf91e19-91c6-46af-8016-be8f378daf7a +2024-09-11 09:06:32.240709 2024-09-11 09:06:32.240714 mef 6147 R rec dc3046cf-a518-46a2-bf71-c02737884edf +2024-09-11 09:06:32.300675 2024-09-11 09:06:32.30068 mef 6148 R rec a3c6bf7f-bba8-4f86-8d5e-fba67255daa6 +2024-09-11 09:06:32.36022 2024-09-11 09:06:32.360225 mef 6149 R rec c025226e-2744-41d3-89ee-dc57d663ab56 +2024-09-11 09:06:32.416416 2024-09-11 09:06:32.416421 mef 6150 R rec f3274764-67d6-4aaf-b53f-d7d2047bdadd +2024-09-11 09:06:32.469989 2024-09-11 09:06:32.469993 mef 6151 R rec 52df39a0-1869-441a-85f7-4a271e3390e9 +2024-09-11 09:06:32.523541 2024-09-11 09:06:32.523546 mef 6152 R rec 3269e595-7924-427f-9986-4bf2e1e1ad52 +2024-09-11 09:06:32.663166 2024-09-11 09:06:32.663171 mef 6153 R rec 73cce97e-5902-4145-a39b-8a6d9828e0bc +2024-09-11 09:06:32.720248 2024-09-11 09:06:32.720253 mef 6154 R rec 2583fb5f-e0d6-4d8e-900d-d8509f4c346c +2024-09-11 09:06:32.772051 2024-09-11 09:06:32.772055 mef 6155 R rec c6da942a-1af5-43eb-9914-40466b0900b1 +2024-09-11 09:06:32.826792 2024-09-11 09:06:32.826798 mef 6156 R rec 53f27aa2-0e15-439c-ad6a-906382526847 +2024-09-11 09:06:32.885188 2024-09-11 09:06:32.885194 mef 6157 R rec 02870984-5a47-410e-a046-bfd0c0928535 +2024-09-11 09:06:33.075131 2024-09-11 09:06:33.075135 mef 6158 R rec f4330c85-8b58-468d-883b-a682bc4ef99e +2024-09-11 09:06:33.127512 2024-09-11 09:06:33.127517 mef 6159 R rec 65748100-e9ab-4f8b-8e05-5551c69570d1 +2024-09-11 09:06:33.181282 2024-09-11 09:06:33.181287 mef 6160 R rec 3e8b6bac-720b-4250-882c-6813290f6826 +2024-09-11 09:06:33.235683 2024-09-11 09:06:33.235688 mef 6161 R rec f7e3ad26-6de3-4fa1-a982-b0bcadf60f70 +2024-09-11 09:06:33.29211 2024-09-11 09:06:33.292116 mef 6162 R rec c7a05a2b-5f4c-4b61-9939-d3190dbe59e1 +2024-09-11 09:06:33.350509 2024-09-11 09:06:33.350514 mef 6163 R rec 3d40165f-de10-45c2-a24c-053490315bc3 +2024-09-11 09:06:33.431182 2024-09-11 09:06:33.431187 mef 6164 R rec ba8212a3-edbe-4801-b89c-e8772191e899 +2024-09-11 09:06:33.551046 2024-09-11 09:06:33.551057 mef 6165 R rec 87ba614b-51db-4817-ad86-313b2ca6919e +2024-09-11 09:06:33.606705 2024-09-11 09:06:33.60671 mef 6166 R rec ee578803-f6d1-45c9-a235-9a2cda745108 +2024-09-11 09:06:33.661618 2024-09-11 09:06:33.661623 mef 6167 R rec 794dd82b-8dd8-40ea-a231-7b0c8309e147 +2024-09-11 09:06:33.721315 2024-09-11 09:06:33.721324 mef 6168 R rec 190f0ec1-dd2a-412a-bd34-abbd610b331b +2024-09-11 09:06:33.772 2024-09-11 09:06:33.772004 mef 6169 R rec 8ee1c1ae-9958-47a5-88ae-29a4cb237afd +2024-09-11 09:06:33.826287 2024-09-11 09:06:33.826293 mef 6170 R rec bf508517-9151-4d70-b54e-0615667271da +2024-09-11 09:06:33.878184 2024-09-11 09:06:33.878189 mef 6171 R rec 547f258b-28a0-4aab-b455-581f04dbf4ab +2024-09-11 09:06:34.066747 2024-09-11 09:06:34.066752 mef 6172 R rec 95585e87-d008-4b4b-a4ad-745154782e06 +2024-09-11 09:06:34.122777 2024-09-11 09:06:34.122782 mef 6173 R rec a3316ecb-a38a-4e36-b4b5-20beee9c9716 +2024-09-11 09:06:34.178419 2024-09-11 09:06:34.178423 mef 6174 R rec 6581fd57-a66c-4d48-b1e2-31fbf3d6d421 +2024-09-11 09:06:34.231434 2024-09-11 09:06:34.231439 mef 6175 R rec e88a7b0e-9c49-47b7-9acf-7a8c49cbd404 +2024-09-11 09:06:34.283708 2024-09-11 09:06:34.283713 mef 6176 R rec cfe4f5f0-eab2-448f-9f33-00dbdec0c35f +2024-09-11 09:06:34.397211 2024-09-11 09:06:34.397217 mef 6177 R rec ba48c4e2-5bac-4c18-a184-e5bb0ae52ee6 +2024-09-11 09:06:34.446957 2024-09-11 09:06:34.446964 mef 6178 R rec 1cf00322-8fe1-4cfd-9f96-93d2576a9b2d +2024-09-11 09:06:34.503303 2024-09-11 09:06:34.503307 mef 6179 R rec d7a0b5c3-e610-475c-b07b-755d338e16a8 +2024-09-11 09:06:34.58057 2024-09-11 09:06:34.580575 mef 6180 R rec 40e49d19-ff96-49b1-a1ea-5099d3be5c6f +2024-09-11 09:06:34.638557 2024-09-11 09:06:34.638562 mef 6181 R rec 5d1ecf08-f94e-434b-ad4c-b637604730da +2024-09-11 09:06:34.791352 2024-09-11 09:06:34.791358 mef 6182 R rec d1beb0d7-d3dc-4858-80fa-2cca12f6c629 +2024-09-11 09:06:34.844465 2024-09-11 09:06:34.84447 mef 6183 R rec 36c95982-c54a-4b49-956b-1072b247bc8c +2024-09-11 09:06:34.897431 2024-09-11 09:06:34.897437 mef 6184 R rec 2d978c8f-8667-4f77-ab12-318e1dcd6e29 +2024-09-11 09:06:34.953424 2024-09-11 09:06:34.953431 mef 6185 R rec 640fbc73-2d43-48b9-b518-c186c3847b82 +2024-09-11 09:06:35.077378 2024-09-11 09:06:35.077384 mef 6186 R rec 043c2ee5-fd21-4188-8c86-eacaca937995 +2024-09-11 09:06:35.132963 2024-09-11 09:06:35.132969 mef 6187 R rec 8e496dc5-46ff-4746-acbe-d3f471baa13a +2024-09-11 09:06:35.249476 2024-09-11 09:06:35.249482 mef 6188 R rec b83b29b2-3698-48bc-b7ac-910349220b16 +2024-09-11 09:06:35.30179 2024-09-11 09:06:35.301794 mef 6189 R rec d11eb1a3-0fe6-4a72-8726-20b5613e30a2 +2024-09-11 09:06:35.630271 2024-09-11 09:06:35.630276 mef 6190 R rec e9977b49-8be3-43f4-bbf5-929c8ce489cf +2024-09-11 09:06:35.92229 2024-09-11 09:06:35.922297 mef 6191 R rec cd7ce6fb-0696-4c47-ba55-c04feed52f8d +2024-09-11 09:06:35.975865 2024-09-11 09:06:35.97587 mef 6192 R rec cd4646e9-5f5b-4ed2-a225-2998f69ee94c +2024-09-11 09:06:36.029652 2024-09-11 09:06:36.029658 mef 6193 R rec db7aa173-37b9-4245-9b22-03deb726e025 +2024-09-11 09:06:36.078852 2024-09-11 09:06:36.078858 mef 6194 R rec 6f5cc745-245e-4c65-918a-bc40d232cc26 +2024-09-11 09:06:36.131981 2024-09-11 09:06:36.131986 mef 6195 R rec 18f5374d-30ae-4156-81a2-b215e1cfff85 +2024-09-11 09:06:36.388272 2024-09-11 09:06:36.388276 mef 6196 R rec 7d7eee66-ea2c-4ff3-8a18-3f9f6f63b243 +2024-09-11 09:06:36.501672 2024-09-11 09:06:36.501677 mef 6197 R rec f48dbe26-3ae9-4136-879b-90ee23a9a2fd +2024-09-11 09:06:36.554869 2024-09-11 09:06:36.554874 mef 6198 R rec 2302578f-8ce8-42c3-99fb-354f75015b60 +2024-09-11 09:06:36.609348 2024-09-11 09:06:36.609354 mef 6199 R rec 6734d41b-5cc0-4074-9c8f-f416f2aeab12 +2024-09-11 09:06:36.666107 2024-09-11 09:06:36.666112 mef 6200 R rec 75c6662b-cb94-43ac-952a-1505fee5ac0f +2024-09-11 09:06:36.717783 2024-09-11 09:06:36.717787 mef 6201 R rec e6bd52eb-5dd6-4a82-ac14-7d3db34b7702 +2024-09-11 09:06:36.770377 2024-09-11 09:06:36.770382 mef 6202 R rec 93a2c683-9f44-4bc7-846a-5ffff7c539c5 +2024-09-11 09:06:36.820537 2024-09-11 09:06:36.820542 mef 6203 R rec 566a0937-8884-494f-b9e1-2b13e5da9064 +2024-09-11 09:06:36.872326 2024-09-11 09:06:36.872331 mef 6204 R rec 5753bdbb-daf1-47cb-beaa-a3973c86086c +2024-09-11 09:06:36.926162 2024-09-11 09:06:36.926168 mef 6205 R rec 8737ecf6-42fe-47ab-955d-d742e1c54cce +2024-09-11 09:06:36.979402 2024-09-11 09:06:36.979407 mef 6206 R rec 3cd11b07-5ff1-42ed-8d53-a8418cad82fb +2024-09-11 09:06:37.032996 2024-09-11 09:06:37.033002 mef 6207 R rec f09b25a9-6cc6-4508-81bb-579ef3754c4c +2024-09-11 09:06:37.086607 2024-09-11 09:06:37.086613 mef 6208 R rec f8120ffa-7ad6-42d8-8dfc-81130ab707d2 +2024-09-11 09:06:37.309646 2024-09-11 09:06:37.309651 mef 6209 R rec 6a7ccaa1-2cf6-4f6b-9bfc-9f5baeb6b296 +2024-09-11 09:06:37.362086 2024-09-11 09:06:37.362091 mef 6210 R rec dcfc7fe2-2217-4e5d-8969-c972f2e11ee7 +2024-09-11 09:06:37.419073 2024-09-11 09:06:37.419078 mef 6211 R rec 2f487266-d72a-4433-b0d1-39667c7fb1ec +2024-09-11 09:06:37.471239 2024-09-11 09:06:37.471244 mef 6212 R rec 3d0caae8-5dce-40db-85ab-0382cea848ca +2024-09-11 09:06:37.585827 2024-09-11 09:06:37.585833 mef 6213 R rec f36af0bb-bec6-496d-b155-633a36f5112e +2024-09-11 09:06:37.638107 2024-09-11 09:06:37.638111 mef 6214 R rec 89c81802-6d20-477c-b32f-213abe897fbb +2024-09-11 09:06:37.69431 2024-09-11 09:06:37.694316 mef 6215 R rec 62574fb4-e95d-4b3e-91aa-a4d687ea150d +2024-09-11 09:06:37.747801 2024-09-11 09:06:37.747806 mef 6216 R rec 9f7a4cfd-bd33-4815-b72f-47faad34da19 +2024-09-11 09:06:37.955732 2024-09-11 09:06:37.955738 mef 6217 R rec 2cee3d2e-dde9-40b6-b0f0-5a2c2fc51e46 +2024-09-11 09:06:38.008022 2024-09-11 09:06:38.008028 mef 6218 R rec a86351e6-123d-4cc3-b0b6-52ea0f5b1b6f +2024-09-11 09:06:38.062756 2024-09-11 09:06:38.062761 mef 6219 R rec 0d0104c9-741c-4583-ba3a-12c3a462a586 +2024-09-11 09:06:38.115746 2024-09-11 09:06:38.115751 mef 6220 R rec ae073339-918a-4382-a2d5-1c3017fef09b +2024-09-11 09:06:38.168036 2024-09-11 09:06:38.168041 mef 6221 R rec ca2dd57d-eeb5-4f53-a849-725c08603763 +2024-09-11 09:06:38.220384 2024-09-11 09:06:38.220392 mef 6222 R rec 1468dbf1-8cb0-42cd-8d3f-fef88f542e74 +2024-09-11 09:06:38.337838 2024-09-11 09:06:38.337842 mef 6223 R rec 1d375bed-8cbd-47e1-a280-3a7ed4ed20e2 +2024-09-11 09:06:38.390189 2024-09-11 09:06:38.390194 mef 6224 R rec eb560cc3-ef66-44a0-ade3-db2b3db4cb6b +2024-09-11 09:06:38.471297 2024-09-11 09:06:38.471302 mef 6225 R rec 7afa904f-d480-4a3b-8442-1a144a7dd7ee +2024-09-11 09:06:38.604235 2024-09-11 09:06:38.604239 mef 6226 R rec aa45688b-05d1-4dd6-b3ae-68f341f58160 +2024-09-11 09:06:38.657016 2024-09-11 09:06:38.657021 mef 6227 R rec b1510178-db97-42e2-a07f-08f77167ef37 +2024-09-11 09:06:38.713953 2024-09-11 09:06:38.713958 mef 6228 R rec 2a704fd4-0f6a-4152-95f6-abc6b1617129 +2024-09-11 09:06:38.772207 2024-09-11 09:06:38.772212 mef 6229 R rec 1018d4aa-8796-402b-930e-b95278f44890 +2024-09-11 09:06:38.895139 2024-09-11 09:06:38.895162 mef 6230 R rec f49a6c1b-1b1c-4058-9cfe-fd47be6ce4c8 +2024-09-11 09:06:39.018256 2024-09-11 09:06:39.018261 mef 6231 R rec 6b0c81fc-7b61-4ca6-a7e9-8572336c0413 +2024-09-11 09:06:39.140475 2024-09-11 09:06:39.14048 mef 6232 R rec 4161829b-3334-436c-b904-74876e65cfe0 +2024-09-11 09:06:39.259243 2024-09-11 09:06:39.259248 mef 6233 R rec 12b94234-f895-44fb-a448-a89c3290968f +2024-09-11 09:06:39.406234 2024-09-11 09:06:39.406239 mef 6234 R rec 1163bdf7-87d6-4b1e-b961-45e266ebfcfb +2024-09-11 09:06:39.468794 2024-09-11 09:06:39.468799 mef 6235 R rec 2edafc85-d165-483a-8817-25cf95d59645 +2024-09-11 09:06:39.522072 2024-09-11 09:06:39.522076 mef 6236 R rec 6736baa8-3eb4-4d56-ab7b-2d4ae638f49e +2024-09-11 09:06:39.636017 2024-09-11 09:06:39.636021 mef 6237 R rec 77ca8f5f-5cff-4f9b-b8bf-a88b74b8de4a +2024-09-11 09:06:39.689137 2024-09-11 09:06:39.68914 mef 6238 R rec 56404aca-1022-4ce1-bd09-70897baf5c7c +2024-09-11 09:06:39.876187 2024-09-11 09:06:39.876192 mef 6239 R rec d8a10133-1667-4b81-b91e-e87a1ff191e0 +2024-09-11 09:06:39.927742 2024-09-11 09:06:39.927747 mef 6240 R rec 6355bb60-bad3-47bd-8e86-7c10f735751f +2024-09-11 09:06:39.980831 2024-09-11 09:06:39.980836 mef 6241 R rec 4912e8ff-3eeb-439e-9a06-20ea70b55a34 +2024-09-11 09:06:40.041965 2024-09-11 09:06:40.041971 mef 6242 R rec 3b78f126-24ee-4ea5-91e0-52fb029001ef +2024-09-11 09:06:40.286379 2024-09-11 09:06:40.286385 mef 6243 R rec 21326a9e-7d57-469d-a5a7-da97d515a879 +2024-09-11 09:06:40.339407 2024-09-11 09:06:40.339412 mef 6244 R rec 267a7b6e-12a1-4f13-809c-7d5529e7759e +2024-09-11 09:06:40.390025 2024-09-11 09:06:40.390029 mef 6245 R rec d67f68d4-44c1-4d24-a7da-2dea6f183a60 +2024-09-11 09:06:40.444986 2024-09-11 09:06:40.44499 mef 6246 R rec 545cf686-18a3-4fe4-b42c-40fceb282486 +2024-09-11 09:06:40.566865 2024-09-11 09:06:40.566869 mef 6247 R rec 60331d7f-a9d8-4d91-804c-2970665ab66b +2024-09-11 09:06:40.622963 2024-09-11 09:06:40.622968 mef 6248 R rec a3eca4e4-93e8-429d-b0ee-833ebeb800e7 +2024-09-11 09:06:40.757123 2024-09-11 09:06:40.757128 mef 6249 R rec b0e7c4e4-b1f6-43a5-8c3e-7b89cd6d0ad7 +2024-09-11 09:06:40.809614 2024-09-11 09:06:40.809619 mef 6250 R rec 200c5206-cbb8-442b-b170-63054059d285 +2024-09-11 09:06:40.862344 2024-09-11 09:06:40.862349 mef 6251 R rec df2beec3-7e93-4dbd-aaef-fae9515d5590 +2024-09-11 09:06:40.914162 2024-09-11 09:06:40.914167 mef 6252 R rec 0a7d9368-749f-4a78-8e03-ad84ea17f043 +2024-09-11 09:06:41.028486 2024-09-11 09:06:41.028491 mef 6253 R rec 0732725b-d1b6-48c4-8ee3-812a65a23c69 +2024-09-11 09:06:41.084283 2024-09-11 09:06:41.084287 mef 6254 R rec fa534bc8-e15b-4820-a777-33842911f8a2 +2024-09-11 09:06:41.139344 2024-09-11 09:06:41.139348 mef 6255 R rec 164eb11b-9f1d-427f-8790-b37474cfad9a +2024-09-11 09:06:41.192191 2024-09-11 09:06:41.192196 mef 6256 R rec 6d46335c-00fc-49a6-a623-3d3ef72d4b55 +2024-09-11 09:06:41.319946 2024-09-11 09:06:41.319951 mef 6257 R rec 7be18944-088f-4097-b146-e4bd84a10971 +2024-09-11 09:06:41.449352 2024-09-11 09:06:41.449357 mef 6258 R rec dea46dbb-6f9e-4d08-8376-58575ecacba6 +2024-09-11 09:06:41.510132 2024-09-11 09:06:41.510137 mef 6259 R rec 080d0c74-df01-48ee-8e51-b843cc32b121 +2024-09-11 09:06:41.564123 2024-09-11 09:06:41.564129 mef 6260 R rec 753a8099-1550-4334-a7e2-304bc9cc7210 +2024-09-11 09:06:41.738985 2024-09-11 09:06:41.73899 mef 6261 R rec c0f0049d-9320-489b-ac68-55602e35c260 +2024-09-11 09:06:41.794001 2024-09-11 09:06:41.794007 mef 6262 R rec d9623bc0-2cd7-4f26-a263-84ccf0b4786a +2024-09-11 09:06:41.852281 2024-09-11 09:06:41.852287 mef 6263 R rec 8315173e-0d40-467b-8dc5-fd17713194af +2024-09-11 09:06:41.917432 2024-09-11 09:06:41.917438 mef 6264 R rec 19d38569-5579-444c-a776-fd04ec3e3008 +2024-09-11 09:06:41.970135 2024-09-11 09:06:41.97014 mef 6265 R rec f7f17372-ae20-4eaa-b960-b7aa81e4ca0c +2024-09-11 09:06:42.021708 2024-09-11 09:06:42.021715 mef 6266 R rec 7eb458f4-f75b-42ab-9dcb-7005c24c9b12 +2024-09-11 09:06:42.077393 2024-09-11 09:06:42.077398 mef 6267 R rec 8f1306fb-a9ff-43bd-b724-7c8c67950e96 +2024-09-11 09:06:42.133353 2024-09-11 09:06:42.133357 mef 6268 R rec b9302536-a44f-44e7-a5f1-004a2c8915d4 +2024-09-11 09:06:42.187322 2024-09-11 09:06:42.187327 mef 6269 R rec 648c487a-678d-4e8a-bd69-041c24315fd6 +2024-09-11 09:06:42.238835 2024-09-11 09:06:42.23884 mef 6270 R rec b283c3c0-98b2-451b-bbb7-46757d1d7bb2 +2024-09-11 09:06:42.358327 2024-09-11 09:06:42.358333 mef 6271 R rec bef998ff-bc8a-4300-a57d-5da06a70680c +2024-09-11 09:06:42.413017 2024-09-11 09:06:42.413022 mef 6272 R rec 47581f9d-94c0-48c9-adea-117d16d65abd +2024-09-11 09:06:42.470011 2024-09-11 09:06:42.470016 mef 6273 R rec b3e4d4e7-1599-4c99-baf0-9bfa2e497111 +2024-09-11 09:06:42.522869 2024-09-11 09:06:42.522875 mef 6274 R rec ff00a3e7-6888-47ec-8452-c2826dd79975 +2024-09-11 09:06:42.584169 2024-09-11 09:06:42.584174 mef 6275 R rec 7cd42ad7-7135-4680-b7c7-5286d773663f +2024-09-11 09:06:42.636822 2024-09-11 09:06:42.636827 mef 6276 R rec 970ade23-b3fc-4f3a-a97e-6ff2d9c90178 +2024-09-11 09:06:42.752683 2024-09-11 09:06:42.752688 mef 6277 R rec d7faeddd-5deb-47ca-bcd9-be4d2cafad7d +2024-09-11 09:06:42.805617 2024-09-11 09:06:42.805621 mef 6278 R rec afef9dc9-64c4-41e0-a7e2-394a1bfc7cdb +2024-09-11 09:06:42.992444 2024-09-11 09:06:42.99245 mef 6279 R rec 1d3b224b-6341-4dfb-af3d-9eab98f3d5cc +2024-09-11 09:06:43.046056 2024-09-11 09:06:43.046062 mef 6280 R rec 466692c8-d86a-499f-91af-73884dd6bebb +2024-09-11 09:06:43.09683 2024-09-11 09:06:43.096835 mef 6281 R rec fb8b3d17-a75d-43e0-aa2d-abc1955ee7da +2024-09-11 09:06:43.155706 2024-09-11 09:06:43.155711 mef 6282 R rec 1743ef5b-aa7b-4650-af1b-6cb275bea455 +2024-09-11 09:06:43.217588 2024-09-11 09:06:43.217593 mef 6283 R rec 38213d6e-f5d6-4c56-a5f7-a8a4d232edac +2024-09-11 09:06:43.27974 2024-09-11 09:06:43.279745 mef 6284 R rec 6beabf25-a7b2-4570-837b-6c725015fe33 +2024-09-11 09:06:43.339962 2024-09-11 09:06:43.339967 mef 6285 R rec 27350743-5b04-4f36-9584-55ff0eb02184 +2024-09-11 09:06:43.400231 2024-09-11 09:06:43.400237 mef 6286 R rec d63a9695-cb58-4124-8bfa-50dfba8b1c3f +2024-09-11 09:06:43.451293 2024-09-11 09:06:43.451299 mef 6287 R rec e08d8a85-5257-43d9-bf4f-805a0f7b88ae +2024-09-11 09:06:43.502571 2024-09-11 09:06:43.502576 mef 6288 R rec 866049e8-b409-4463-a1ff-e805cb0a3e78 +2024-09-11 09:06:43.554047 2024-09-11 09:06:43.554052 mef 6289 R rec a54ff15a-7527-462a-8e68-f1c53368a710 +2024-09-11 09:06:43.607311 2024-09-11 09:06:43.607317 mef 6290 R rec db110353-2fa0-45cf-bffc-2f90aff90e1b +2024-09-11 09:06:43.658497 2024-09-11 09:06:43.658501 mef 6291 R rec 4f997484-6cf9-4981-9145-47ef7e980235 +2024-09-11 09:06:43.710544 2024-09-11 09:06:43.710549 mef 6292 R rec 0378ecef-aa59-400f-a543-d0e11856e5e1 +2024-09-11 09:06:43.836778 2024-09-11 09:06:43.836783 mef 6293 R rec 9c443497-c32d-45be-b0b7-6d733a7e94ce +2024-09-11 09:06:43.956318 2024-09-11 09:06:43.956323 mef 6294 R rec f5253cad-4651-4db4-8c03-db48969c4e26 +2024-09-11 09:06:44.012312 2024-09-11 09:06:44.012317 mef 6295 R rec 55bc5389-919e-494b-b71a-ea6148d012e6 +2024-09-11 09:06:44.069232 2024-09-11 09:06:44.069238 mef 6296 R rec 32f3c26b-e670-440b-aac8-24e004d4bd3a +2024-09-11 09:06:44.123312 2024-09-11 09:06:44.123316 mef 6297 R rec e75ad7aa-8bc1-49d3-9994-c47a568b25ac +2024-09-11 09:06:44.180164 2024-09-11 09:06:44.180169 mef 6298 R rec 7fb783bc-ef40-4f32-8353-c9333039a71d +2024-09-11 09:06:44.29731 2024-09-11 09:06:44.297314 mef 6299 R rec fa6d2264-4f9f-4f3f-aa95-a1e0d1694ac0 +2024-09-11 09:06:44.352269 2024-09-11 09:06:44.352274 mef 6300 R rec 4b0209a9-b425-44b9-a4d6-a97dae7c2e4e +2024-09-11 09:06:44.403834 2024-09-11 09:06:44.403838 mef 6301 R rec 8a1d787d-1835-46bb-81bb-494ff6a97109 +2024-09-11 09:06:44.459236 2024-09-11 09:06:44.45924 mef 6302 R rec e228c14b-2776-4c9a-b7e1-c89498b798eb +2024-09-11 09:06:44.516305 2024-09-11 09:06:44.51631 mef 6303 R rec 9c67cf6d-b3ed-49b5-be27-3fd966520413 +2024-09-11 09:06:44.574193 2024-09-11 09:06:44.574197 mef 6304 R rec b66649d2-64a8-4538-b6ba-15b7919d73b1 +2024-09-11 09:06:44.766975 2024-09-11 09:06:44.76698 mef 6305 R rec 2116fc4b-1749-4c1e-97ae-da839aadbcd0 +2024-09-11 09:06:44.818542 2024-09-11 09:06:44.818547 mef 6306 R rec e0b5c368-2281-4ec7-bc6b-58032743f4d0 +2024-09-11 09:06:44.870306 2024-09-11 09:06:44.870311 mef 6307 R rec 82a99551-91f1-42a2-9706-da363ea36176 +2024-09-11 09:06:44.994921 2024-09-11 09:06:44.994926 mef 6308 R rec f89a2f27-5cc5-4cf8-a83b-885ba5d03d9a +2024-09-11 09:06:45.05794 2024-09-11 09:06:45.057945 mef 6309 R rec 592f534a-7564-4526-b1ba-b5e35944fe48 +2024-09-11 09:06:45.114446 2024-09-11 09:06:45.114451 mef 6310 R rec 718fca43-cdcb-4abd-96b8-5d483e71ec01 +2024-09-11 09:06:45.231683 2024-09-11 09:06:45.231688 mef 6311 R rec 5abaee4d-3b3f-4a98-bb4b-9b53bf36c66c +2024-09-11 09:06:45.287153 2024-09-11 09:06:45.287158 mef 6312 R rec 48e87c1d-d42e-4099-8c28-a91a51477920 +2024-09-11 09:06:45.340264 2024-09-11 09:06:45.340268 mef 6313 R rec a15f7311-ab9c-4833-ae79-02b94ed4b988 +2024-09-11 09:06:45.391399 2024-09-11 09:06:45.391404 mef 6314 R rec 287805a8-98f8-4b69-b0fd-9bb5a4bf8e74 +2024-09-11 09:06:45.510097 2024-09-11 09:06:45.510101 mef 6315 R rec 33a47466-069b-41c7-8888-6b0007c3cfbf +2024-09-11 09:06:45.566275 2024-09-11 09:06:45.56628 mef 6316 R rec 55992e26-8a89-4977-83b5-cde036d5a747 +2024-09-11 09:06:45.646198 2024-09-11 09:06:45.646203 mef 6317 R rec c9e34b10-868f-4b88-8a9f-75f36aa19ff6 +2024-09-11 09:06:45.702619 2024-09-11 09:06:45.702625 mef 6318 R rec 64a41867-8f73-4542-9e8f-f5af2f7659bb +2024-09-11 09:06:45.830742 2024-09-11 09:06:45.830747 mef 6319 R rec 90d68790-e7a0-4779-9981-14fefe097628 +2024-09-11 09:06:45.8849 2024-09-11 09:06:45.884905 mef 6320 R rec f2ec2971-39db-434d-af0a-da781a537ec8 +2024-09-11 09:06:45.941796 2024-09-11 09:06:45.941801 mef 6321 R rec ecc63190-dfa6-4b91-99ac-b977fd59e9da +2024-09-11 09:06:46.057746 2024-09-11 09:06:46.057752 mef 6322 R rec 74f6366f-b4be-4828-8d47-80c4f41bf704 +2024-09-11 09:06:46.17632 2024-09-11 09:06:46.176325 mef 6323 R rec 5c37228f-dd36-432d-92a8-6e6e7a31dfe1 +2024-09-11 09:06:46.230091 2024-09-11 09:06:46.230096 mef 6324 R rec 56aa8b2c-4914-472b-897c-d79aee82c261 +2024-09-11 09:06:46.280439 2024-09-11 09:06:46.280444 mef 6325 R rec 2ac0c662-0c2e-4567-bc86-0b89ca86a814 +2024-09-11 09:06:46.330948 2024-09-11 09:06:46.330952 mef 6326 R rec 50658279-1398-424e-ab3d-658bde6002fd +2024-09-11 09:06:46.382183 2024-09-11 09:06:46.382187 mef 6327 R rec 6caf14f3-0691-4ce1-9a68-2075c1b17aa9 +2024-09-11 09:06:46.498569 2024-09-11 09:06:46.498573 mef 6328 R rec 7529a567-debb-427e-9a82-6c8da4e7283c +2024-09-11 09:06:46.552866 2024-09-11 09:06:46.552871 mef 6329 R rec 0db164b9-6c1c-42c8-8c1b-81217df08a49 +2024-09-11 09:06:46.669411 2024-09-11 09:06:46.669417 mef 6330 R rec d251f4bb-eba6-41de-b4b9-a6b1863dd9d2 +2024-09-11 09:06:46.824243 2024-09-11 09:06:46.824249 mef 6331 R rec 896b7b61-f0cb-4ef8-bb56-c5ace8131929 +2024-09-11 09:06:47.001425 2024-09-11 09:06:47.00143 mef 6332 R rec 3c3f63cd-0f69-4ad5-ac67-c11dc88e8aed +2024-09-11 09:06:47.116683 2024-09-11 09:06:47.116689 mef 6333 R rec c4688a78-7dd0-4059-b0cd-db7162be5fb4 +2024-09-11 09:06:47.165775 2024-09-11 09:06:47.16578 mef 6334 R rec bc4034a3-8e27-4e0e-b0e4-dde0fe2b842b +2024-09-11 09:06:47.215296 2024-09-11 09:06:47.215301 mef 6335 R rec 703140e1-1373-4c5c-a422-4c5c21180b99 +2024-09-11 09:06:47.269173 2024-09-11 09:06:47.269179 mef 6336 R rec 5e269aeb-e324-47c9-8346-ace60c56c076 +2024-09-11 09:06:47.328046 2024-09-11 09:06:47.328051 mef 6337 R rec bcc90ac5-8798-44ea-af1c-e57b1c228caa +2024-09-11 09:06:47.390137 2024-09-11 09:06:47.390142 mef 6338 R rec fc9316a0-9edc-4514-9ef2-af2e3d4825b1 +2024-09-11 09:06:47.4423 2024-09-11 09:06:47.442306 mef 6339 R rec 92f33d00-ca22-4ac0-bc3e-d7415cb09d92 +2024-09-11 09:06:47.49704 2024-09-11 09:06:47.497045 mef 6340 R rec 4808c1d2-fd31-470f-ab06-ec74deed7f8d +2024-09-11 09:06:47.610394 2024-09-11 09:06:47.610399 mef 6341 R rec 78120df4-3c6a-4c2c-a1bc-4ef3f27d29c0 +2024-09-11 09:06:47.874061 2024-09-11 09:06:47.874066 mef 6342 R rec aed84f52-276e-427c-a9d2-910395b3734d +2024-09-11 09:06:47.954018 2024-09-11 09:06:47.954024 mef 6343 R rec 149ec4c5-5748-47d0-9a3d-a63988a9600e +2024-09-11 09:06:48.021985 2024-09-11 09:06:48.02199 mef 6344 R rec 1c5e91bd-7e2e-4a6f-b080-2f0f2adef151 +2024-09-11 09:06:48.142198 2024-09-11 09:06:48.142203 mef 6345 R rec 1d8305ae-efd6-4eb5-a931-539e32d8da2b +2024-09-11 09:06:48.201396 2024-09-11 09:06:48.201402 mef 6346 R rec 965ed9d0-c5de-45e7-9816-7ceecde5ee3c +2024-09-11 09:06:48.326773 2024-09-11 09:06:48.326778 mef 6347 R rec 386f9744-6785-4bc9-8e87-0f5080d2291f +2024-09-11 09:06:48.377608 2024-09-11 09:06:48.377612 mef 6348 R rec 62ed0ede-9493-4836-b43c-13bd0ca2cc60 +2024-09-11 09:06:48.437724 2024-09-11 09:06:48.437731 mef 6349 R rec f5585f8f-e973-4a49-bdd8-7031e645ca3f +2024-09-11 09:06:48.524337 2024-09-11 09:06:48.524343 mef 6350 R rec 1cbf9a9c-d5ec-4488-bbf4-1e97ccc6ff18 +2024-09-11 09:06:48.582866 2024-09-11 09:06:48.582885 mef 6351 R rec 4559706b-c969-4593-b90e-49af21f8fc5d +2024-09-11 09:06:48.830694 2024-09-11 09:06:48.830699 mef 6352 R rec a5534167-7c2b-4b1b-abd7-ab7a10e504fd +2024-09-11 09:06:49.014162 2024-09-11 09:06:49.014167 mef 6353 R rec ff51c031-789c-4112-81b9-306ef2a6730f +2024-09-11 09:06:49.066708 2024-09-11 09:06:49.066715 mef 6354 R rec 9a928dfd-b23a-4ac8-91e4-60311bfaaa9b +2024-09-11 09:06:49.180873 2024-09-11 09:06:49.180879 mef 6355 R rec 87f90494-bc9d-47da-8787-edc94d4e500b +2024-09-11 09:06:49.325796 2024-09-11 09:06:49.325801 mef 6356 R rec 15471c5d-ac1c-4839-896d-edbb4bebdedf +2024-09-11 09:06:49.387521 2024-09-11 09:06:49.387526 mef 6357 R rec c1fed4a2-a662-448a-861e-7d1d3f72e485 +2024-09-11 09:06:49.451592 2024-09-11 09:06:49.451598 mef 6358 R rec 3a3f2b54-1c69-48f5-a884-4cab41d66ba7 +2024-09-11 09:06:49.7079 2024-09-11 09:06:49.707905 mef 6359 R rec 25262d7a-105d-476a-8297-af0c4c4e522a +2024-09-11 09:06:49.824534 2024-09-11 09:06:49.824539 mef 6360 R rec df11421b-f563-4573-bc24-b3c094ec106d +2024-09-11 09:06:49.876071 2024-09-11 09:06:49.876076 mef 6361 R rec 919b9ea2-fb07-4e72-a903-8166602a1b55 +2024-09-11 09:06:49.932631 2024-09-11 09:06:49.932636 mef 6362 R rec d8cf201f-70c1-48a1-abc3-8d2f7914e1e5 +2024-09-11 09:06:49.985073 2024-09-11 09:06:49.985078 mef 6363 R rec 5ea106a6-04e4-4a9c-9bb7-072a56fe764a +2024-09-11 09:06:50.039851 2024-09-11 09:06:50.039856 mef 6364 R rec 5f05df2a-3105-456c-bd98-ddfaafac527d +2024-09-11 09:06:50.153158 2024-09-11 09:06:50.153164 mef 6365 R rec e0961efb-8ddc-4653-9765-3d42f99a52ff +2024-09-11 09:06:50.209101 2024-09-11 09:06:50.209106 mef 6366 R rec 12b06273-0a61-4fbd-ad0e-93407c563de1 +2024-09-11 09:06:50.26074 2024-09-11 09:06:50.260745 mef 6367 R rec 5a110aee-bb0f-4931-9c0e-ca3d752c3605 +2024-09-11 09:06:50.316464 2024-09-11 09:06:50.31647 mef 6368 R rec 70dd3af3-9885-4eb6-b043-79a01807790c +2024-09-11 09:06:50.373251 2024-09-11 09:06:50.373256 mef 6369 R rec 63724dfa-89ab-47e1-8ff3-893cbfa5b6ee +2024-09-11 09:06:50.425789 2024-09-11 09:06:50.425794 mef 6370 R rec 35471374-9896-474e-98a5-92b5dec9bdee +2024-09-11 09:06:50.480375 2024-09-11 09:06:50.480381 mef 6371 R rec de3f7166-db28-479d-b241-23e6509de964 +2024-09-11 09:06:50.556909 2024-09-11 09:06:50.556915 mef 6372 R rec 67feecbf-bdfd-43fa-aaf1-1371069a1fca +2024-09-11 09:06:50.613786 2024-09-11 09:06:50.613791 mef 6373 R rec a5c1304c-5b96-4291-a6b4-7b4496dad5c5 +2024-09-11 09:06:50.66586 2024-09-11 09:06:50.665865 mef 6374 R rec a255298f-9d76-402a-b773-f029fd2ba0d8 +2024-09-11 09:06:50.720851 2024-09-11 09:06:50.720855 mef 6375 R rec 1ea0a290-a542-44cc-a194-df6fec17c39d +2024-09-11 09:06:50.772282 2024-09-11 09:06:50.772287 mef 6376 R rec a50dd129-bb48-441a-be69-d6ef71d31d37 +2024-09-11 09:06:50.825239 2024-09-11 09:06:50.825244 mef 6377 R rec 9afdb9f0-da2c-4deb-a998-3cc8954af8cd +2024-09-11 09:06:50.885198 2024-09-11 09:06:50.885204 mef 6378 R rec 3ac435d3-fcf4-45b5-abf7-cb156703b050 +2024-09-11 09:06:50.936531 2024-09-11 09:06:50.936537 mef 6379 R rec 4ab57aa3-dd55-44fa-9380-7681040000ae +2024-09-11 09:06:50.990412 2024-09-11 09:06:50.990417 mef 6380 R rec ef290004-9526-4523-bd68-ff18d95aecc9 +2024-09-11 09:06:51.046451 2024-09-11 09:06:51.046458 mef 6381 R rec e30816fa-a6ce-4ef1-bd14-0d4bfa0d6c64 +2024-09-11 09:06:51.103131 2024-09-11 09:06:51.103139 mef 6382 R rec e8cfb276-0015-4286-972d-f0277ca30c96 +2024-09-11 09:06:51.156199 2024-09-11 09:06:51.156204 mef 6383 R rec 2aa7314e-ff08-4066-8438-2f204e1dbcb9 +2024-09-11 09:06:51.210993 2024-09-11 09:06:51.210998 mef 6384 R rec fe527757-08a4-4a86-914a-32662efcc800 +2024-09-11 09:06:51.26628 2024-09-11 09:06:51.266285 mef 6385 R rec 54658457-13b2-445b-ac9c-c8b7616652a5 +2024-09-11 09:06:51.324645 2024-09-11 09:06:51.324651 mef 6386 R rec e01eb13a-9177-4950-97be-6daefc2a8526 +2024-09-11 09:06:51.384671 2024-09-11 09:06:51.384677 mef 6387 R rec b19a78ff-06e5-4e36-89c0-fe2ae8bcb654 +2024-09-11 09:06:51.43772 2024-09-11 09:06:51.437724 mef 6388 R rec 8fa10d77-301f-46fb-a276-1f9add5f6820 +2024-09-11 09:06:51.490909 2024-09-11 09:06:51.490915 mef 6389 R rec 61b3fd3f-d829-49c9-97ea-a9c18f1d8b2e +2024-09-11 09:06:51.548933 2024-09-11 09:06:51.548938 mef 6390 R rec a72774cc-8b3f-46f0-8916-2b9eac006456 +2024-09-11 09:06:51.606959 2024-09-11 09:06:51.606964 mef 6391 R rec 45b9382b-0497-42a4-a096-aa0cdd64019f +2024-09-11 09:06:51.663908 2024-09-11 09:06:51.663913 mef 6392 R rec 09c0b12f-ef9c-4deb-9ea7-e0593cb355c3 +2024-09-11 09:06:51.71606 2024-09-11 09:06:51.716066 mef 6393 R rec 1cf7a169-68fe-4a06-9b59-f25470d00ac2 +2024-09-11 09:06:51.832111 2024-09-11 09:06:51.832116 mef 6394 R rec c4b4ed86-0f93-4d6f-bbc6-db1b2d526061 +2024-09-11 09:06:51.913383 2024-09-11 09:06:51.913389 mef 6395 R rec 7239703a-7b5f-46be-930f-21c273ea468a +2024-09-11 09:06:51.969806 2024-09-11 09:06:51.969811 mef 6396 R rec 13e0fa7b-439a-4f1d-9643-c291f7dcc573 +2024-09-11 09:06:52.030667 2024-09-11 09:06:52.030673 mef 6397 R rec 0d09cbf9-4d5f-49ee-8376-b3d243a3d47a +2024-09-11 09:06:52.083758 2024-09-11 09:06:52.083764 mef 6398 R rec 5c4faa73-2083-47ee-984f-597b50f2fefa +2024-09-11 09:06:52.139665 2024-09-11 09:06:52.13967 mef 6399 R rec 494fc60b-a8d6-415a-99d6-02621903f1e6 +2024-09-11 09:06:52.194436 2024-09-11 09:06:52.194441 mef 6400 R rec 46a4e713-f6ab-44b3-bc71-72d2e4ed1093 +2024-09-11 09:06:52.247783 2024-09-11 09:06:52.247788 mef 6401 R rec 5edb6673-2df9-41b0-ab3e-93ee69bf64c4 +2024-09-11 09:06:52.30603 2024-09-11 09:06:52.306035 mef 6402 R rec 0fdefbfe-939f-4dfe-b5dc-c9a0f7d6a53b +2024-09-11 09:06:52.36256 2024-09-11 09:06:52.362565 mef 6403 R rec 91abe8fa-7458-42f0-9d72-99a3c9a8fbbe +2024-09-11 09:06:52.414445 2024-09-11 09:06:52.414449 mef 6404 R rec b9c9e89a-75a1-44bc-8d36-638c4e0a5c60 +2024-09-11 09:06:52.478545 2024-09-11 09:06:52.47855 mef 6405 R rec 62ad5003-a8a8-41ff-95a1-27b08636b708 +2024-09-11 09:06:52.534779 2024-09-11 09:06:52.534788 mef 6406 R rec 87083759-4036-4b0f-a35b-b81daf473174 +2024-09-11 09:06:52.588742 2024-09-11 09:06:52.588747 mef 6407 R rec 30e451de-0a06-4796-8464-f4e6c0f052b4 +2024-09-11 09:06:52.643771 2024-09-11 09:06:52.643775 mef 6408 R rec 52cd9cdf-ef17-4bc2-a1d3-340ac6608758 +2024-09-11 09:06:52.701847 2024-09-11 09:06:52.701853 mef 6409 R rec bd87a15b-bc34-46ec-891b-10e27692e7bc +2024-09-11 09:06:52.757802 2024-09-11 09:06:52.757807 mef 6410 R rec b499524d-4cd4-4ca7-94e5-b885c6c34b3c +2024-09-11 09:06:52.81085 2024-09-11 09:06:52.810881 mef 6411 R rec 0437addd-4a98-4969-87ed-63e1bf79db37 +2024-09-11 09:06:52.875832 2024-09-11 09:06:52.875837 mef 6412 R rec ae0de1fb-67ae-4474-8521-7a73119f240f +2024-09-11 09:06:52.929789 2024-09-11 09:06:52.929794 mef 6413 R rec c9107689-c611-4c71-ab91-de5e8cb0129b +2024-09-11 09:06:52.982962 2024-09-11 09:06:52.982967 mef 6414 R rec 0bcf2d06-8fb2-4deb-b2e7-c09c84aadaa8 +2024-09-11 09:06:53.034906 2024-09-11 09:06:53.034913 mef 6415 R rec ea55e66b-844e-4bd7-91b2-59171beca330 +2024-09-11 09:06:53.093606 2024-09-11 09:06:53.093611 mef 6416 R rec 624405f3-c3d7-41ef-8b5a-94ebf1d3e260 +2024-09-11 09:06:53.146688 2024-09-11 09:06:53.146693 mef 6417 R rec dce20a5a-d510-401a-8d8b-e61384f6b5a9 +2024-09-11 09:06:53.275339 2024-09-11 09:06:53.275345 mef 6418 R rec 70d87e38-f52c-4701-b45d-7df0aa26f00a +2024-09-11 09:06:53.394105 2024-09-11 09:06:53.394109 mef 6419 R rec 94994071-14fc-4580-ad99-0275a843631d +2024-09-11 09:06:53.446363 2024-09-11 09:06:53.446369 mef 6420 R rec 0e2e0e19-2e31-43c2-b048-891221b926e3 +2024-09-11 09:06:53.502846 2024-09-11 09:06:53.502851 mef 6421 R rec 73f39e88-f329-400e-8607-362769e62e1a +2024-09-11 09:06:53.554709 2024-09-11 09:06:53.554714 mef 6422 R rec 6c34540c-5edd-48c5-a6ca-e307435ecf0c +2024-09-11 09:06:53.607528 2024-09-11 09:06:53.607533 mef 6423 R rec b49b0cf8-f513-4033-8fb1-c1b544c3e78b +2024-09-11 09:06:53.661882 2024-09-11 09:06:53.661887 mef 6424 R rec a953f8f2-5096-4bbd-82bf-62da2b8997e8 +2024-09-11 09:06:53.722172 2024-09-11 09:06:53.722177 mef 6425 R rec d4ac7a5b-0348-4b1a-9206-c80db580ca30 +2024-09-11 09:06:53.780035 2024-09-11 09:06:53.78004 mef 6426 R rec a5e8d1a0-d3c1-4327-8d29-24eefe3cdca3 +2024-09-11 09:06:53.850884 2024-09-11 09:06:53.850894 mef 6427 R rec 35d3b91f-8893-43e6-983d-88aabf6da9fd +2024-09-11 09:06:53.911107 2024-09-11 09:06:53.911112 mef 6428 R rec a6a79194-4623-43b9-bcb7-dce34524ee3c +2024-09-11 09:06:53.976145 2024-09-11 09:06:53.97615 mef 6429 R rec 14eef598-79c6-4224-a77a-49b3fc26413b +2024-09-11 09:06:54.029217 2024-09-11 09:06:54.029222 mef 6430 R rec df0f6d69-57e6-4369-b53b-bf5166ea9b23 +2024-09-11 09:06:54.087937 2024-09-11 09:06:54.087943 mef 6431 R rec e8d1faf5-12d1-4640-a824-97d6c60ad35a +2024-09-11 09:06:54.147316 2024-09-11 09:06:54.147321 mef 6432 R rec 83d4feb1-35df-44d6-969c-458530cdbb2d +2024-09-11 09:06:54.211645 2024-09-11 09:06:54.21165 mef 6433 R rec e35e05d2-3556-481a-bc20-fd052a04075c +2024-09-11 09:06:54.279054 2024-09-11 09:06:54.279059 mef 6434 R rec 8b95ec44-d2db-4816-8757-054f5140b741 +2024-09-11 09:06:54.333449 2024-09-11 09:06:54.333455 mef 6435 R rec 9020afa8-0136-4b57-82f4-2e4aaf816f64 +2024-09-11 09:06:54.387429 2024-09-11 09:06:54.387434 mef 6436 R rec 48e50a20-0cde-4a29-9a47-faf62b45fd63 +2024-09-11 09:06:54.440097 2024-09-11 09:06:54.440101 mef 6437 R rec cb308cfb-4fbe-485d-aa0b-07b8e26f61f9 +2024-09-11 09:06:54.49566 2024-09-11 09:06:54.495665 mef 6438 R rec 3e577360-1c6b-452d-bbc4-e1557ad665ca +2024-09-11 09:06:54.548668 2024-09-11 09:06:54.548672 mef 6439 R rec 446c2de2-d309-48ee-91e2-b2d27027a0bf +2024-09-11 09:06:54.600829 2024-09-11 09:06:54.600834 mef 6440 R rec 9e800d7f-8f23-45a5-b9eb-37ee47dd8aaa +2024-09-11 09:06:54.655 2024-09-11 09:06:54.655005 mef 6441 R rec 1a2f6202-9a42-43d0-909e-7b8ee8797b23 +2024-09-11 09:06:54.709361 2024-09-11 09:06:54.709366 mef 6442 R rec c0f95d4e-e206-45f1-a704-e8ac356b15ad +2024-09-11 09:06:54.82763 2024-09-11 09:06:54.827635 mef 6443 R rec 22429db7-e52e-4b43-a096-cd00553a357c +2024-09-11 09:06:54.886837 2024-09-11 09:06:54.886842 mef 6444 R rec d2ed111f-d430-47c6-ab59-779bfdc2dbee +2024-09-11 09:06:54.944123 2024-09-11 09:06:54.944127 mef 6445 R rec 73d1fb0e-8af8-4d4d-9d82-1cdb248cff50 +2024-09-11 09:06:55.069983 2024-09-11 09:06:55.069989 mef 6446 R rec ec5a578e-168b-4b84-b0e7-0cde7cb529a2 +2024-09-11 09:06:55.128109 2024-09-11 09:06:55.128116 mef 6447 R rec 0c7a16aa-3490-4823-9f65-a83502b478d4 +2024-09-11 09:06:55.185644 2024-09-11 09:06:55.18565 mef 6448 R rec 0e85188c-8f6c-4978-984f-f5a64798865e +2024-09-11 09:06:55.240193 2024-09-11 09:06:55.240198 mef 6449 R rec 1b2d0cbd-9e5b-4009-ba13-fcff76d347b0 +2024-09-11 09:06:55.299706 2024-09-11 09:06:55.29971 mef 6450 R rec 237177a7-354f-42b0-9eac-22540ef3eac8 +2024-09-11 09:06:55.350142 2024-09-11 09:06:55.350148 mef 6451 R rec 2b9bbb1a-e3e3-4336-977d-2fedff44576b +2024-09-11 09:06:55.400658 2024-09-11 09:06:55.400663 mef 6452 R rec 10e5d9f2-7cbc-454b-9f12-676d92c8f063 +2024-09-11 09:06:55.451602 2024-09-11 09:06:55.451607 mef 6453 R rec eb4e3385-1585-4bd1-ac6b-cdbed530ec31 +2024-09-11 09:06:55.504179 2024-09-11 09:06:55.504187 mef 6454 R rec abdc52e6-73a8-4e07-9304-f8262c28109c +2024-09-11 09:06:55.557405 2024-09-11 09:06:55.557411 mef 6455 R rec 2f0bea6b-681a-409a-9f63-08fd7438a6b3 +2024-09-11 09:06:55.608153 2024-09-11 09:06:55.608158 mef 6456 R rec 33ebd999-9193-46e0-b77c-1c73a8e4b3bb +2024-09-11 09:06:55.665587 2024-09-11 09:06:55.665624 mef 6457 R rec 6ebff628-fb43-4462-a450-fdcb654d8fc3 +2024-09-11 09:06:55.772449 2024-09-11 09:06:55.772453 mef 6458 R rec 69fc4d57-fe9e-41e5-8315-451ce29e12f9 +2024-09-11 09:06:55.826511 2024-09-11 09:06:55.826515 mef 6459 R rec 36ff18fd-0d0b-4410-899a-d44cf614a1cc +2024-09-11 09:06:55.886991 2024-09-11 09:06:55.886995 mef 6460 R rec 5df867b4-10a7-4dd0-bebc-1bc7ec18ae5d +2024-09-11 09:06:55.939229 2024-09-11 09:06:55.939234 mef 6461 R rec 36f54bcd-7e7b-4368-9108-252ddfe12363 +2024-09-11 09:06:55.9903 2024-09-11 09:06:55.990305 mef 6462 R rec 619bed27-a073-45eb-ac05-5fc98262e65b +2024-09-11 09:06:56.044713 2024-09-11 09:06:56.044719 mef 6463 R rec 2b0b737c-4d66-4308-b3da-f5d764635e92 +2024-09-11 09:06:56.104123 2024-09-11 09:06:56.104128 mef 6464 R rec 843a9115-5527-45a4-99ce-eba1f1062da3 +2024-09-11 09:06:56.159771 2024-09-11 09:06:56.159777 mef 6465 R rec b2ce27e8-cee7-4984-9c46-bd654b196e16 +2024-09-11 09:06:56.214997 2024-09-11 09:06:56.215003 mef 6466 R rec 2366bb0f-9ea7-445f-938a-1cfb22894449 +2024-09-11 09:06:56.274035 2024-09-11 09:06:56.274041 mef 6467 R rec c68d94b0-facf-4579-bd85-c41e4689649e +2024-09-11 09:06:56.330437 2024-09-11 09:06:56.330442 mef 6468 R rec 8c7c2b3d-2792-4943-9032-f6b4ad6070d1 +2024-09-11 09:06:56.384081 2024-09-11 09:06:56.384087 mef 6469 R rec f58c86b2-304b-4f82-b722-8fe3e44de17c +2024-09-11 09:06:56.435479 2024-09-11 09:06:56.435483 mef 6470 R rec 0557d0c4-d02f-4d7c-a664-5508bd1d9550 +2024-09-11 09:06:56.494969 2024-09-11 09:06:56.494974 mef 6471 R rec 8e3948a0-64d0-409a-bf0f-a2a294093431 +2024-09-11 09:06:56.609543 2024-09-11 09:06:56.609548 mef 6472 R rec 1bfcfae9-3094-45ad-9f6b-2eb0062628ce +2024-09-11 09:06:56.665111 2024-09-11 09:06:56.665115 mef 6473 R rec 61612a08-39ee-482b-ae5c-36b790cd91a5 +2024-09-11 09:06:56.723314 2024-09-11 09:06:56.723318 mef 6474 R rec f99d8b76-ddaf-4221-a810-2f2f665b5b13 +2024-09-11 09:06:56.776294 2024-09-11 09:06:56.776298 mef 6475 R rec 53531d9d-6394-40fe-8cdd-4f5e688e081c +2024-09-11 09:06:56.827275 2024-09-11 09:06:56.82728 mef 6476 R rec 58ef9090-f4dc-4bec-a9e4-293e092e5b97 +2024-09-11 09:06:56.881113 2024-09-11 09:06:56.881118 mef 6477 R rec 118b30a6-757e-41d8-b7bf-f037df7e9acb +2024-09-11 09:06:56.93272 2024-09-11 09:06:56.932725 mef 6478 R rec e7d26e14-3416-40a4-9e13-7e7e7972e757 +2024-09-11 09:06:56.9855 2024-09-11 09:06:56.985506 mef 6479 R rec 095756db-3e9d-4ba8-b243-7c1807120ab5 +2024-09-11 09:06:57.042279 2024-09-11 09:06:57.042285 mef 6480 R rec b3f7a769-5003-4fa1-ae82-bad985031343 +2024-09-11 09:06:57.095118 2024-09-11 09:06:57.095123 mef 6481 R rec b7fdf5a3-3cd6-4426-91a8-2e052185aeee +2024-09-11 09:06:57.225957 2024-09-11 09:06:57.225963 mef 6482 R rec 0af3bb18-9b26-4442-b39e-3b834a4b780e +2024-09-11 09:06:57.281662 2024-09-11 09:06:57.281666 mef 6483 R rec f6fac7b4-b1d7-42d0-b00e-5e3fd8e756dc +2024-09-11 09:06:57.33962 2024-09-11 09:06:57.339626 mef 6484 R rec d54448b4-54e7-49ab-80df-1fbf0d82887c +2024-09-11 09:06:57.462229 2024-09-11 09:06:57.462234 mef 6485 R rec 3d7c9f14-1593-4e9d-8176-0e598bc576b7 +2024-09-11 09:06:57.516164 2024-09-11 09:06:57.516169 mef 6486 R rec a5c88d55-b653-4904-af71-eee60383e897 +2024-09-11 09:06:57.571243 2024-09-11 09:06:57.571248 mef 6487 R rec c54f4e6d-39a1-41d8-bd62-5e6e79cb8a38 +2024-09-11 09:06:57.623114 2024-09-11 09:06:57.623119 mef 6488 R rec b5e30640-ec14-469d-9549-6dc0ecae545b +2024-09-11 09:06:57.679657 2024-09-11 09:06:57.679662 mef 6489 R rec 23338459-4f18-4bd0-9951-0e67a1b82863 +2024-09-11 09:06:57.797344 2024-09-11 09:06:57.797349 mef 6490 R rec c010b59e-7925-4bb5-937a-4d83bef29d0a +2024-09-11 09:06:57.855245 2024-09-11 09:06:57.85525 mef 6491 R rec 9ee5a666-c01a-49ba-83c8-65accf9689f1 +2024-09-11 09:06:57.917476 2024-09-11 09:06:57.917482 mef 6492 R rec 1398c56e-de16-489d-a1ab-64b52e44678d +2024-09-11 09:06:57.980609 2024-09-11 09:06:57.980615 mef 6493 R rec bcb15579-b697-4968-a787-74257851ceb5 +2024-09-11 09:06:58.033778 2024-09-11 09:06:58.033783 mef 6494 R rec 3a6c463a-f163-450b-9136-369cc8dba22a +2024-09-11 09:06:58.16172 2024-09-11 09:06:58.161726 mef 6495 R rec e0a6adad-3ed7-4afe-8511-0c4ab1540673 +2024-09-11 09:06:58.229485 2024-09-11 09:06:58.22949 mef 6496 R rec 2b64434e-b3d6-4223-9fbc-323791761ce5 +2024-09-11 09:06:58.284339 2024-09-11 09:06:58.284344 mef 6497 R rec 4e6f10b6-0032-4aeb-9a48-231a96d8dac5 +2024-09-11 09:06:58.33797 2024-09-11 09:06:58.337975 mef 6498 R rec c9da3e9e-9700-4ada-86a1-512956e3611b +2024-09-11 09:06:58.394278 2024-09-11 09:06:58.394284 mef 6499 R rec e11af3c7-941d-4b3f-802c-693c772a3645 +2024-09-11 09:06:58.448209 2024-09-11 09:06:58.448215 mef 6500 R rec 28d13576-9a8f-4474-b7f4-c5d6d81e4528 +2024-09-11 09:06:58.501332 2024-09-11 09:06:58.501337 mef 6501 R rec 43e663a2-d6aa-494c-8492-01a28828ab17 +2024-09-11 09:06:58.552203 2024-09-11 09:06:58.552208 mef 6502 R rec 8f95e72e-fead-4afd-8f85-8f5ace23de1c +2024-09-11 09:06:58.607873 2024-09-11 09:06:58.607878 mef 6503 R rec 6876f946-80d7-4f8d-bb58-c92014de7f9f +2024-09-11 09:06:58.660076 2024-09-11 09:06:58.660081 mef 6504 R rec 71286cb1-0bdb-45f8-9def-82f96cb60aa8 +2024-09-11 09:06:58.776104 2024-09-11 09:06:58.776109 mef 6505 R rec eb8cbc48-1e58-4bf5-863a-dee4ff6ab754 +2024-09-11 09:06:58.831479 2024-09-11 09:06:58.831484 mef 6506 R rec 7ece2021-67ac-4290-b710-8e39812f52fd +2024-09-11 09:06:58.946488 2024-09-11 09:06:58.946492 mef 6507 R rec a4c67c3a-2ec7-4474-85a4-b8787ccdeb3d +2024-09-11 09:06:59.00491 2024-09-11 09:06:59.004917 mef 6508 R rec fc36e41a-b2ef-4400-b70b-1e530d560e96 +2024-09-11 09:06:59.061432 2024-09-11 09:06:59.061437 mef 6509 R rec da81e8e6-07d3-4203-81bc-c61addf2fca0 +2024-09-11 09:06:59.114354 2024-09-11 09:06:59.114359 mef 6510 R rec e2ec6c76-3f1a-4d62-a8e8-80924f1715ff +2024-09-11 09:06:59.172475 2024-09-11 09:06:59.17248 mef 6511 R rec 721a8937-068b-42d2-b2d4-a1e2ce9ad9ed +2024-09-11 09:06:59.231708 2024-09-11 09:06:59.231712 mef 6512 R rec 56fb6850-58a5-4359-b1a4-3e8401dfce67 +2024-09-11 09:06:59.283739 2024-09-11 09:06:59.283744 mef 6513 R rec 83bce7d5-c4de-40cc-a548-426d279461bb +2024-09-11 09:06:59.337212 2024-09-11 09:06:59.337217 mef 6514 R rec b72c421f-2338-4a6f-be10-13dfdb7e34a0 +2024-09-11 09:06:59.399396 2024-09-11 09:06:59.3994 mef 6515 R rec 2d1db1bb-2758-4032-bf97-f6030f403982 +2024-09-11 09:06:59.455777 2024-09-11 09:06:59.455782 mef 6516 R rec bc76a760-a1b7-416d-98ae-c28f33bfe41e +2024-09-11 09:06:59.511222 2024-09-11 09:06:59.511227 mef 6517 R rec 840049b8-39eb-4cbc-b98a-1e20e7835d74 +2024-09-11 09:06:59.566263 2024-09-11 09:06:59.566267 mef 6518 R rec dba1060c-89aa-41f8-9361-99bba4d0aa5d +2024-09-11 09:06:59.623549 2024-09-11 09:06:59.623553 mef 6519 R rec 6ac114a9-769c-4801-b0ab-96b327c34ef7 +2024-09-11 09:06:59.675371 2024-09-11 09:06:59.675375 mef 6520 R rec dfa63815-9cfc-4ec7-b48d-9f139178007a +2024-09-11 09:06:59.728749 2024-09-11 09:06:59.728754 mef 6521 R rec d35b71c2-aefa-41bf-b495-de9a90a9603a +2024-09-11 09:06:59.779748 2024-09-11 09:06:59.779753 mef 6522 R rec 9a793e25-90ed-4a48-a965-2959a1e8d125 +2024-09-11 09:06:59.831658 2024-09-11 09:06:59.831663 mef 6523 R rec 56eb728d-e316-4e57-9041-55f2e25a78df +2024-09-11 09:06:59.887133 2024-09-11 09:06:59.887139 mef 6524 R rec d5b3770a-d012-4623-95ac-56e762f99477 +2024-09-11 09:06:59.940376 2024-09-11 09:06:59.940385 mef 6525 R rec 0b14b52b-d85c-4c51-9bfd-b81b9966e71e +2024-09-11 09:06:59.995148 2024-09-11 09:06:59.995153 mef 6526 R rec 9d8da7f9-3e73-4e50-ad52-300e51d26b94 +2024-09-11 09:07:00.054305 2024-09-11 09:07:00.05431 mef 6527 R rec 62d2de1d-e85b-413e-8280-3c46d0106fd4 +2024-09-11 09:07:00.110965 2024-09-11 09:07:00.11097 mef 6528 R rec b82ad9fd-c2f4-49c4-b508-90c7a7117203 +2024-09-11 09:07:00.162833 2024-09-11 09:07:00.162837 mef 6529 R rec 4a0ad2d6-59e8-416f-8347-ee195fa52dbe +2024-09-11 09:07:00.220988 2024-09-11 09:07:00.220993 mef 6530 R rec 2bb6bbb7-f23f-42b4-b4ed-92ba67e7ac58 +2024-09-11 09:07:00.285267 2024-09-11 09:07:00.285272 mef 6531 R rec 03461ea2-f37f-4984-8c1e-73f59ed36c40 +2024-09-11 09:07:00.407015 2024-09-11 09:07:00.40702 mef 6532 R rec 2bfae786-9c2a-4a8f-8eea-381deb8270f6 +2024-09-11 09:07:00.458078 2024-09-11 09:07:00.458082 mef 6533 R rec 515b6216-e8a6-4e41-81db-3b58658ed941 +2024-09-11 09:07:00.513797 2024-09-11 09:07:00.513803 mef 6534 R rec 1b1137b0-9716-467c-aa57-91d82c401554 +2024-09-11 09:07:00.57255 2024-09-11 09:07:00.572556 mef 6535 R rec 0c7a5794-5bad-4000-bffc-29a45abb7687 +2024-09-11 09:07:00.707698 2024-09-11 09:07:00.707703 mef 6536 R rec c3506169-aae6-49ac-a21a-acb2a03f5bfd +2024-09-11 09:07:00.823639 2024-09-11 09:07:00.823643 mef 6537 R rec 73d6130d-382d-4ba3-9f71-2e9ad20952fe +2024-09-11 09:07:00.876462 2024-09-11 09:07:00.876467 mef 6538 R rec 44b21106-9c7e-461d-9a85-7552e4cec981 +2024-09-11 09:07:00.99088 2024-09-11 09:07:00.990886 mef 6539 R rec b97c69c5-242f-4e4c-b7fc-042d14c985cc +2024-09-11 09:07:01.045895 2024-09-11 09:07:01.0459 mef 6540 R rec 26b100fd-bbf7-414c-b642-a48db3878a3a +2024-09-11 09:07:01.098075 2024-09-11 09:07:01.098079 mef 6541 R rec de6db941-7afc-4969-a26d-1950e0f49919 +2024-09-11 09:07:01.150429 2024-09-11 09:07:01.150434 mef 6542 R rec 1a06646e-f1e0-4271-a2d1-b944a2c58500 +2024-09-11 09:07:01.213606 2024-09-11 09:07:01.213611 mef 6543 R rec 4227ebb0-89aa-4a34-97d8-bc774adf2f95 +2024-09-11 09:07:01.271458 2024-09-11 09:07:01.271462 mef 6544 R rec 99ae21c6-5403-4163-ac62-439e370be654 +2024-09-11 09:07:01.323606 2024-09-11 09:07:01.32361 mef 6545 R rec 73eea6b1-49a6-4b36-b529-8f5248ef8e3d +2024-09-11 09:07:01.373165 2024-09-11 09:07:01.37317 mef 6546 R rec 894cbc3d-8ace-496d-a2f8-a4b4476ccb1a +2024-09-11 09:07:01.425132 2024-09-11 09:07:01.425137 mef 6547 R rec 3a944391-b234-4b71-881a-1372230bf76d +2024-09-11 09:07:01.484371 2024-09-11 09:07:01.484376 mef 6548 R rec 6f4619c1-0655-4018-a05e-72f3ae9bcd25 +2024-09-11 09:07:01.537765 2024-09-11 09:07:01.537769 mef 6549 R rec 13c6128a-e1bc-47ee-9b48-9e330ef7281a +2024-09-11 09:07:01.592021 2024-09-11 09:07:01.592026 mef 6550 R rec 92d96301-025c-4e4f-b8f5-39419111b395 +2024-09-11 09:07:01.769835 2024-09-11 09:07:01.769847 mef 6551 R rec f2667002-d4f6-453e-96fa-4fb8d34161cd +2024-09-11 09:07:01.819956 2024-09-11 09:07:01.819962 mef 6552 R rec 76932096-52cb-4c2d-b5f2-1c3acb3a2987 +2024-09-11 09:07:01.880519 2024-09-11 09:07:01.880525 mef 6553 R rec 501f6daa-9a76-4bf8-b0e7-b9e599a7630b +2024-09-11 09:07:02.005561 2024-09-11 09:07:02.005565 mef 6554 R rec 608712d1-1b4f-4d21-b54c-de4f36dbf8e6 +2024-09-11 09:07:02.06177 2024-09-11 09:07:02.061775 mef 6555 R rec 95d48b0a-368e-400c-a1c0-64c8642c4b5a +2024-09-11 09:07:02.115755 2024-09-11 09:07:02.115761 mef 6556 R rec eed8e668-7bc9-4fc2-8b58-c0364e161bd8 +2024-09-11 09:07:02.234395 2024-09-11 09:07:02.234401 mef 6557 R rec 65aa1eea-16ed-4778-b334-6b64ef901233 +2024-09-11 09:07:02.292406 2024-09-11 09:07:02.292412 mef 6558 R rec dbad0d79-2d33-4284-b282-298376b57041 +2024-09-11 09:07:02.344845 2024-09-11 09:07:02.344851 mef 6559 R rec ad2b7dc4-1d54-421a-af3e-9fe1543075d3 +2024-09-11 09:07:02.399796 2024-09-11 09:07:02.399801 mef 6560 R rec 922f229d-1a0e-4761-a3b6-25efe938d83d +2024-09-11 09:07:02.528431 2024-09-11 09:07:02.528436 mef 6561 R rec e199a8d6-5ba2-46a9-8701-b5e4c0b31a60 +2024-09-11 09:07:02.580803 2024-09-11 09:07:02.580808 mef 6562 R rec 2c4bd98d-8555-4be8-bbeb-03ddc4bda3da +2024-09-11 09:07:02.634016 2024-09-11 09:07:02.634021 mef 6563 R rec d89ea861-ddb6-40c5-9209-95dc15e54797 +2024-09-11 09:07:02.687354 2024-09-11 09:07:02.687359 mef 6564 R rec 4debd9d2-8c44-4f9c-a802-ab55054a9898 +2024-09-11 09:07:02.813157 2024-09-11 09:07:02.813163 mef 6565 R rec 28e3a9af-3ee9-456a-a16a-1f7bac8c7385 +2024-09-11 09:07:02.86737 2024-09-11 09:07:02.867375 mef 6566 R rec a797d4a0-e3b8-4221-a016-39c10427c686 +2024-09-11 09:07:02.929234 2024-09-11 09:07:02.929238 mef 6567 R rec e97dd833-4d3a-41e6-8f0e-4ffa9820d60c +2024-09-11 09:07:02.982589 2024-09-11 09:07:02.982595 mef 6568 R rec 160c6b9f-fa80-4939-a481-48bed93a67fc +2024-09-11 09:07:03.049206 2024-09-11 09:07:03.049212 mef 6569 R rec c665ad0b-1994-4094-9d0f-d3f5ecc75991 +2024-09-11 09:07:03.109916 2024-09-11 09:07:03.109921 mef 6570 R rec 55638925-262e-4149-93ad-512b5f75f47c +2024-09-11 09:07:03.165439 2024-09-11 09:07:03.165444 mef 6571 R rec 3b0a658f-c670-41e7-a0df-79120473c1f7 +2024-09-11 09:07:03.21839 2024-09-11 09:07:03.218396 mef 6572 R rec 66000fce-2b46-4a7a-9098-8ad333fa7fad +2024-09-11 09:07:03.269382 2024-09-11 09:07:03.269387 mef 6573 R rec 9c29254f-bbd8-4a98-a825-27ecf0010e39 +2024-09-11 09:07:03.330202 2024-09-11 09:07:03.330206 mef 6574 R rec c84dc655-8662-4f40-8782-4d0a5be88a5b +2024-09-11 09:07:03.382371 2024-09-11 09:07:03.382376 mef 6575 R rec 735fcc1a-a4e8-4043-8abb-657092e018d8 +2024-09-11 09:07:03.440084 2024-09-11 09:07:03.440089 mef 6576 R rec 897fb0da-2fe1-4b6f-84b3-a78dc52e8685 +2024-09-11 09:07:03.503948 2024-09-11 09:07:03.503954 mef 6577 R rec 115fb525-094f-4f63-b658-02422c313142 +2024-09-11 09:07:03.554464 2024-09-11 09:07:03.554469 mef 6578 R rec 14a25e3a-9814-4b4f-8a17-e4011ab1a00e +2024-09-11 09:07:03.608278 2024-09-11 09:07:03.608285 mef 6579 R rec 0fb55a3d-d5c9-4fa6-a30e-fac5e37a6e65 +2024-09-11 09:07:03.663065 2024-09-11 09:07:03.663069 mef 6580 R rec cb28ad43-11b3-4501-86c6-fb623dba058e +2024-09-11 09:07:03.718011 2024-09-11 09:07:03.718017 mef 6581 R rec ebe224ee-6d8b-47ab-9bc6-948a3af71024 +2024-09-11 09:07:03.768301 2024-09-11 09:07:03.768306 mef 6582 R rec 4768f8db-4d2e-4a27-b697-086cd57183fa +2024-09-11 09:07:03.822649 2024-09-11 09:07:03.822654 mef 6583 R rec cc609b4a-efc3-4ecb-9596-ce487ffc70af +2024-09-11 09:07:03.877791 2024-09-11 09:07:03.877796 mef 6584 R rec 05a078f4-4c50-4492-95f8-6c9ee5b9e379 +2024-09-11 09:07:03.937972 2024-09-11 09:07:03.93798 mef 6585 R rec fe9f4322-0186-4965-a38d-e013bd892d6f +2024-09-11 09:07:03.994365 2024-09-11 09:07:03.99437 mef 6586 R rec 0adbaf0e-0104-4089-81b9-54f0e8c00ea4 +2024-09-11 09:07:04.049014 2024-09-11 09:07:04.049019 mef 6587 R rec ccd66324-363c-45b0-9983-45333e578caf +2024-09-11 09:07:04.110445 2024-09-11 09:07:04.110449 mef 6588 R rec 74d6021e-1e05-4756-979e-85d329b71e28 +2024-09-11 09:07:04.167414 2024-09-11 09:07:04.16742 mef 6589 R rec 03426bb5-5dcb-45c2-a4c0-f4209817a6f4 +2024-09-11 09:07:04.218892 2024-09-11 09:07:04.218897 mef 6590 R rec f1c91ffc-4152-49e8-a304-4cc0c5997903 +2024-09-11 09:07:04.276175 2024-09-11 09:07:04.276181 mef 6591 R rec 3788c384-aa45-4bd6-8431-701d48a9d64d +2024-09-11 09:07:04.351632 2024-09-11 09:07:04.351637 mef 6592 R rec 3337b8fe-361f-4266-aafb-92e08defa51a +2024-09-11 09:07:04.410923 2024-09-11 09:07:04.410928 mef 6593 R rec 44074efe-151e-47c0-9676-e426bcb36ce0 +2024-09-11 09:07:04.470717 2024-09-11 09:07:04.470723 mef 6594 R rec f2792e16-b4be-4e99-9458-227cd0b93ed4 +2024-09-11 09:07:04.528217 2024-09-11 09:07:04.528221 mef 6595 R rec 6dc2bd79-1096-4f01-8625-84b813219d7e +2024-09-11 09:07:04.584816 2024-09-11 09:07:04.584821 mef 6596 R rec 4cf84457-457f-4b22-9389-7b4e3f6a5587 +2024-09-11 09:07:04.704273 2024-09-11 09:07:04.704277 mef 6597 R rec 40b0aa0d-d302-4a3d-a00f-e590afc144b0 +2024-09-11 09:07:04.761723 2024-09-11 09:07:04.761728 mef 6598 R rec b6550df1-d5c2-45a5-a903-318ea29a1ddc +2024-09-11 09:07:04.820364 2024-09-11 09:07:04.820368 mef 6599 R rec 3482c7f3-56a8-4908-902e-3f820247ff13 +2024-09-11 09:07:04.874225 2024-09-11 09:07:04.87423 mef 6600 R rec cab9bb7f-1b8d-419d-9a7a-891639ba0688 +2024-09-11 09:07:04.928625 2024-09-11 09:07:04.92863 mef 6601 R rec 8601f84c-e8d2-4418-8350-6f7c2e9d9add +2024-09-11 09:07:04.987269 2024-09-11 09:07:04.987274 mef 6602 R rec f494fb49-4273-4280-913a-1aabf12135e5 +2024-09-11 09:07:05.047002 2024-09-11 09:07:05.047007 mef 6603 R rec 9fb9e48d-da4a-420c-8310-cae1bd9971d3 +2024-09-11 09:07:05.106539 2024-09-11 09:07:05.106544 mef 6604 R rec 67358025-1a95-415c-8c85-52503caeee22 +2024-09-11 09:07:05.162884 2024-09-11 09:07:05.162888 mef 6605 R rec f27abdf3-b9a2-4dbb-be08-8168e17e49fd +2024-09-11 09:07:05.217011 2024-09-11 09:07:05.217017 mef 6606 R rec 46e29f50-4064-487d-b32f-a3976d1c114d +2024-09-11 09:07:05.271815 2024-09-11 09:07:05.27182 mef 6607 R rec 41ae03c1-f5c6-4db2-9664-a038648f3894 +2024-09-11 09:07:05.330146 2024-09-11 09:07:05.330151 mef 6608 R rec 3af4aa64-274f-4f4a-893f-1483f0a21ea9 +2024-09-11 09:07:05.401267 2024-09-11 09:07:05.401272 mef 6609 R rec 4f701ba6-9a06-4a69-837f-a5a0f633ab4f +2024-09-11 09:07:05.471045 2024-09-11 09:07:05.471051 mef 6610 R rec 5ef4e24d-902a-4055-b7a5-19e7070003e1 +2024-09-11 09:07:05.529667 2024-09-11 09:07:05.529673 mef 6611 R rec 6b5483ba-267a-4c4a-adfe-7d44dc3835d6 +2024-09-11 09:07:05.590288 2024-09-11 09:07:05.590293 mef 6612 R rec 2ee36f27-63e5-4dbf-b940-8cc0cf535d21 +2024-09-11 09:07:05.668132 2024-09-11 09:07:05.668138 mef 6613 R rec ba8f57ba-afad-41d2-907e-67235e3f0a01 +2024-09-11 09:07:05.732359 2024-09-11 09:07:05.732363 mef 6614 R rec 6f64a5af-484b-4eb4-a80a-428d61b56ac3 +2024-09-11 09:07:05.793853 2024-09-11 09:07:05.793859 mef 6615 R rec f4553d39-f0cf-4c84-b566-8b369facda83 +2024-09-11 09:07:05.853324 2024-09-11 09:07:05.85333 mef 6616 R rec 45b9018c-7e1e-4c55-8d07-726c7caf4ca1 +2024-09-11 09:07:05.921383 2024-09-11 09:07:05.921389 mef 6617 R rec cc1a529b-ed3b-4433-9114-a05492627894 +2024-09-11 09:07:05.985971 2024-09-11 09:07:05.985976 mef 6618 R rec a9717e97-912b-4d17-99d6-308ce3876534 +2024-09-11 09:07:06.060624 2024-09-11 09:07:06.06063 mef 6619 R rec d88f009a-a1d9-4783-a61b-143f699a2b27 +2024-09-11 09:07:06.128847 2024-09-11 09:07:06.128851 mef 6620 R rec ff5a6e03-2d7b-4097-9539-91968e2e9707 +2024-09-11 09:07:06.193566 2024-09-11 09:07:06.193572 mef 6621 R rec 9dea8560-90a0-4321-bed5-3a5fdaf013d4 +2024-09-11 09:07:06.249841 2024-09-11 09:07:06.249846 mef 6622 R rec c14a28b8-ebcf-43f9-aadf-eeda3fca463a +2024-09-11 09:07:06.319648 2024-09-11 09:07:06.319654 mef 6623 R rec 012e8b02-57d5-43e5-8098-ac0d3fc97672 +2024-09-11 09:07:06.391997 2024-09-11 09:07:06.392002 mef 6624 R rec 1b54c4da-2728-447c-897c-a7a6e8be4c5a +2024-09-11 09:07:06.461035 2024-09-11 09:07:06.461039 mef 6625 R rec 05254338-204b-49fe-8bed-efe23fe62633 +2024-09-11 09:07:06.527914 2024-09-11 09:07:06.527919 mef 6626 R rec 8cd85dac-a866-4c21-9de3-731d2aa1dc33 +2024-09-11 09:07:06.592922 2024-09-11 09:07:06.592927 mef 6627 R rec c8edfc58-4d84-4709-ac80-8f37c73ac4a9 +2024-09-11 09:07:06.651413 2024-09-11 09:07:06.65142 mef 6628 R rec d3bd88f3-d982-4574-b1a4-c6faba4b1554 +2024-09-11 09:07:06.713299 2024-09-11 09:07:06.713305 mef 6629 R rec f1be1214-8d34-4cee-b28e-57bf73469cbe +2024-09-11 09:07:06.773654 2024-09-11 09:07:06.773659 mef 6630 R rec 8cb54346-56eb-4a0c-90f4-4ab5c9a18282 +2024-09-11 09:07:06.841525 2024-09-11 09:07:06.84153 mef 6631 R rec 2b5cd187-3dd3-482c-8da5-f9cc03bcf91d +2024-09-11 09:07:06.912548 2024-09-11 09:07:06.912553 mef 6632 R rec 2cdc90f3-7189-4818-8119-42d4cd202618 +2024-09-11 09:07:06.983873 2024-09-11 09:07:06.983879 mef 6633 R rec 6156a781-3147-4dd3-8ec0-13c88c8693a8 +2024-09-11 09:07:07.049052 2024-09-11 09:07:07.049057 mef 6634 R rec bb995a75-0c55-4073-91f5-b403903a7ee3 +2024-09-11 09:07:07.1032 2024-09-11 09:07:07.10321 mef 6635 R rec 0bb9c058-c1fb-4eef-a94a-df50c3bfa4e7 +2024-09-11 09:07:07.157411 2024-09-11 09:07:07.157416 mef 6636 R rec 7985e9a7-93a5-4e8d-b14d-2df92381c0b0 +2024-09-11 09:07:07.208669 2024-09-11 09:07:07.208674 mef 6637 R rec ba664e73-289b-4ff1-8d14-916b68b0e182 +2024-09-11 09:07:07.26686 2024-09-11 09:07:07.266865 mef 6638 R rec 916bbee0-afda-42c1-a061-4a659810e0a4 +2024-09-11 09:07:07.321452 2024-09-11 09:07:07.321457 mef 6639 R rec 1d5fb826-a92e-4273-9434-da84a4546989 +2024-09-11 09:07:07.373176 2024-09-11 09:07:07.373181 mef 6640 R rec 3dfe64b4-515a-46ac-aa5f-a8af0fd74fb9 +2024-09-11 09:07:07.423498 2024-09-11 09:07:07.423503 mef 6641 R rec a74725b2-680e-446f-b2e4-54b5eeb06ac0 +2024-09-11 09:07:07.477933 2024-09-11 09:07:07.477938 mef 6642 R rec 0c25c87b-d79e-4e1b-bb4f-27255e1a8dc5 +2024-09-11 09:07:07.533473 2024-09-11 09:07:07.533478 mef 6643 R rec 14871253-afc9-46fb-ad77-6a5ad9d2886d +2024-09-11 09:07:07.585603 2024-09-11 09:07:07.585608 mef 6644 R rec 595a2cea-c7df-4310-ba7b-1579bb921149 +2024-09-11 09:07:07.644217 2024-09-11 09:07:07.644221 mef 6645 R rec b9a2b10a-5530-4247-8064-7e56f4b88b0a +2024-09-11 09:07:07.700009 2024-09-11 09:07:07.700015 mef 6646 R rec d9e165fb-de1a-4970-ab45-49c55d46a50a +2024-09-11 09:07:07.757936 2024-09-11 09:07:07.757941 mef 6647 R rec 4adbc165-5b9b-48e1-8f36-fb7a70471ff3 +2024-09-11 09:07:07.813825 2024-09-11 09:07:07.81383 mef 6648 R rec 906cbdc8-0d3c-496c-a491-bf4e8597ced7 +2024-09-11 09:07:07.870216 2024-09-11 09:07:07.870222 mef 6649 R rec ad14fc3a-0737-4a58-88fc-0e5b2045766a +2024-09-11 09:07:07.938397 2024-09-11 09:07:07.938401 mef 6650 R rec fabe38d5-f052-4fe2-acab-80becfda357b +2024-09-11 09:07:07.996692 2024-09-11 09:07:07.996697 mef 6651 R rec f9a0bdec-242b-403f-958a-d3a2423fa151 +2024-09-11 09:07:08.054569 2024-09-11 09:07:08.054575 mef 6652 R rec d1b81f49-bb09-4a09-96cd-4f8c590de2ca +2024-09-11 09:07:08.105997 2024-09-11 09:07:08.106001 mef 6653 R rec d4cb1f09-0894-481f-99da-840d167abce6 +2024-09-11 09:07:08.161574 2024-09-11 09:07:08.161579 mef 6654 R rec 37c133f7-604a-48dc-85a3-94726d7904c8 +2024-09-11 09:07:08.216564 2024-09-11 09:07:08.216569 mef 6655 R rec adffad84-2df1-4fb7-8fe5-02c2ae79707d +2024-09-11 09:07:08.269349 2024-09-11 09:07:08.269356 mef 6656 R rec 6fce49e5-ab53-4f99-8ed3-a00edaa2006b +2024-09-11 09:07:08.321934 2024-09-11 09:07:08.321939 mef 6657 R rec 0414997a-d2a2-49dd-927e-05f952484d75 +2024-09-11 09:07:08.374236 2024-09-11 09:07:08.374241 mef 6658 R rec 658798ad-655a-4a74-a141-f317bd90f754 +2024-09-11 09:07:08.458177 2024-09-11 09:07:08.458182 mef 6659 R rec 252872cd-3c69-4a29-83b2-bd5f810dff16 +2024-09-11 09:07:08.517807 2024-09-11 09:07:08.517813 mef 6660 R rec 4a0bc538-453b-4618-a028-e617b3da7cd5 +2024-09-11 09:07:08.577647 2024-09-11 09:07:08.577652 mef 6661 R rec c11c917b-c3f5-428e-b320-db90043e0773 +2024-09-11 09:07:08.631422 2024-09-11 09:07:08.631426 mef 6662 R rec c7cac4d4-0318-429a-9929-e1ab1607ae2f +2024-09-11 09:07:08.685358 2024-09-11 09:07:08.685363 mef 6663 R rec 1b88ce58-7bfd-46d7-b802-b56290a9dfd7 +2024-09-11 09:07:08.738037 2024-09-11 09:07:08.738042 mef 6664 R rec 461a1dcb-21b5-400e-a6e8-5aac181ab622 +2024-09-11 09:07:08.794189 2024-09-11 09:07:08.794194 mef 6665 R rec 57e6c0d9-f460-40a9-ade9-3ca2fcdc7ab5 +2024-09-11 09:07:08.854216 2024-09-11 09:07:08.854221 mef 6666 R rec 2dabe236-1722-466e-ad03-ef6fecf6cda4 +2024-09-11 09:07:08.90558 2024-09-11 09:07:08.905585 mef 6667 R rec 8dc99b30-5b0e-43c6-a4cd-7b7bc8166f4f +2024-09-11 09:07:08.962841 2024-09-11 09:07:08.962845 mef 6668 R rec 068d467b-428f-4ba8-8632-8110315f45f9 +2024-09-11 09:07:09.02898 2024-09-11 09:07:09.028985 mef 6669 R rec 1e5c9573-cef0-4117-b2fa-471395740d23 +2024-09-11 09:07:09.08501 2024-09-11 09:07:09.085016 mef 6670 R rec fa63b8d1-5b49-460c-81e3-451d82e09b0a +2024-09-11 09:07:09.140211 2024-09-11 09:07:09.140215 mef 6671 R rec 5acbf758-4f63-47f9-b9a9-0d7f2ded16cb +2024-09-11 09:07:09.19591 2024-09-11 09:07:09.195915 mef 6672 R rec ec00b49b-fcfd-4c66-9edf-90191f15697f +2024-09-11 09:07:09.246148 2024-09-11 09:07:09.246152 mef 6673 R rec 3455409d-f0ca-4b9f-be85-2baa89377d3c +2024-09-11 09:07:09.302251 2024-09-11 09:07:09.302257 mef 6674 R rec 78fc329c-ced3-45c2-b0c1-33471d07b65f +2024-09-11 09:07:09.358224 2024-09-11 09:07:09.358229 mef 6675 R rec 44fcda2e-5394-4c1b-bc6c-8a903b189c82 +2024-09-11 09:07:09.410186 2024-09-11 09:07:09.410191 mef 6676 R rec 9501e49c-053c-4123-87ab-15e91163df63 +2024-09-11 09:07:09.519878 2024-09-11 09:07:09.519884 mef 6677 R rec 6358c6d0-0b4b-4531-91ad-44ebb44e46cb +2024-09-11 09:07:09.579214 2024-09-11 09:07:09.57922 mef 6678 R rec 2c23717b-7d65-41b0-97f0-89789703fade +2024-09-11 09:07:09.643871 2024-09-11 09:07:09.643876 mef 6679 R rec 93a4993e-c843-4dd9-a215-5b17b094aa16 +2024-09-11 09:07:09.703129 2024-09-11 09:07:09.703133 mef 6680 R rec ee77190b-2aaf-4f68-92f5-ee65bd1d6126 +2024-09-11 09:07:09.758998 2024-09-11 09:07:09.759003 mef 6681 R rec 0245fa31-7c5b-4f5b-af25-d70ddbe94203 +2024-09-11 09:07:09.8122 2024-09-11 09:07:09.812204 mef 6682 R rec f9bc8761-6109-45eb-9b28-323e141b3e28 +2024-09-11 09:07:09.863562 2024-09-11 09:07:09.863567 mef 6683 R rec 37dba392-3af4-4d2c-80cf-81478923b85f +2024-09-11 09:07:09.919091 2024-09-11 09:07:09.919096 mef 6684 R rec 5d271f41-ac66-414b-8293-03f989d6fe09 +2024-09-11 09:07:09.975879 2024-09-11 09:07:09.975885 mef 6685 R rec 7d65fa4f-596d-49f0-a253-909821336942 +2024-09-11 09:07:10.106393 2024-09-11 09:07:10.106402 mef 6686 R rec de55ff23-7bac-48e5-a3f4-c53e6dca3dfc +2024-09-11 09:07:10.164126 2024-09-11 09:07:10.164131 mef 6687 R rec e795a7a9-4468-4619-8cc8-c0b28ed8a9b6 +2024-09-11 09:07:10.264367 2024-09-11 09:07:10.264371 mef 6688 R rec 44719355-67bf-44ed-b8ce-15b0f502ecf9 +2024-09-11 09:07:10.320409 2024-09-11 09:07:10.320414 mef 6689 R rec 18e3e5b4-4761-4850-80a6-03b57d0c589a +2024-09-11 09:07:10.371274 2024-09-11 09:07:10.371278 mef 6690 R rec 866ddbf2-775d-4adb-a1e6-b6b5f1b705b2 +2024-09-11 09:07:10.420958 2024-09-11 09:07:10.420963 mef 6691 R rec ac346332-d430-4609-b40a-5b8c6d7bf73b +2024-09-11 09:07:10.473971 2024-09-11 09:07:10.473976 mef 6692 R rec 2d481741-e468-40d6-9d84-26c8204114b1 +2024-09-11 09:07:10.527219 2024-09-11 09:07:10.527224 mef 6693 R rec 6aa394a1-0109-48cc-b453-b853e8dd7e60 +2024-09-11 09:07:10.582421 2024-09-11 09:07:10.582428 mef 6694 R rec 2dbece47-420c-4073-b741-e56df39170f0 +2024-09-11 09:07:10.63589 2024-09-11 09:07:10.63592 mef 6695 R rec caf605e6-41e0-4c06-aaa6-10a0ac059563 +2024-09-11 09:07:10.687375 2024-09-11 09:07:10.687379 mef 6696 R rec 534bf6aa-0b5f-43ca-b8e3-2f3fe079f66f +2024-09-11 09:07:10.742256 2024-09-11 09:07:10.742261 mef 6697 R rec 1f73271a-69e3-47a3-9a08-43ac4e97fa52 +2024-09-11 09:07:10.799238 2024-09-11 09:07:10.799243 mef 6698 R rec 50a20a0b-a42c-4566-99bc-795cee3f3a11 +2024-09-11 09:07:10.859263 2024-09-11 09:07:10.85927 mef 6699 R rec f19606bd-cd81-41e9-a651-0b9688e886dc +2024-09-11 09:07:10.920151 2024-09-11 09:07:10.920156 mef 6700 R rec d4f45661-89eb-4e1b-bce7-570daa74a672 +2024-09-11 09:07:10.973841 2024-09-11 09:07:10.973846 mef 6701 R rec b83a9c33-c6be-43e8-8c14-ee596c2e3f79 +2024-09-11 09:07:11.030042 2024-09-11 09:07:11.030047 mef 6702 R rec a916a20a-299d-478a-ac5c-e176babba9d0 +2024-09-11 09:07:11.087405 2024-09-11 09:07:11.087409 mef 6703 R rec 8067620c-3986-4e1e-8bc5-4a53897c9979 +2024-09-11 09:07:11.1429 2024-09-11 09:07:11.142905 mef 6704 R rec 36eed4fa-5e6b-4f52-8d34-5733d8552ce0 +2024-09-11 09:07:11.193048 2024-09-11 09:07:11.193056 mef 6705 R rec d379a08a-0882-4b15-b26d-efe2f784e7f2 +2024-09-11 09:07:11.246381 2024-09-11 09:07:11.246386 mef 6706 R rec 28908098-bd03-455c-b780-f6b7e367aee1 +2024-09-11 09:07:11.303578 2024-09-11 09:07:11.303584 mef 6707 R rec 09d5e4f3-1cf6-41aa-99a0-9ae306948566 +2024-09-11 09:07:11.355389 2024-09-11 09:07:11.355392 mef 6708 R rec 28c27437-a64c-4152-8460-e9dc31f4a393 +2024-09-11 09:07:11.40928 2024-09-11 09:07:11.409284 mef 6709 R rec beec26a0-2b3e-4cf8-8144-32f1f2596204 +2024-09-11 09:07:11.461142 2024-09-11 09:07:11.461151 mef 6710 R rec 70d26b87-df49-4ea6-94eb-41984b2db69d +2024-09-11 09:07:11.521836 2024-09-11 09:07:11.521841 mef 6711 R rec b424f246-d25f-4a93-a2e9-1446d0e7a95f +2024-09-11 09:07:11.57812 2024-09-11 09:07:11.578124 mef 6712 R rec e3d758f5-861a-4190-8a20-282575d5a73a +2024-09-11 09:07:11.635677 2024-09-11 09:07:11.635687 mef 6713 R rec 9476559b-4e14-4009-b08a-c29b331a5952 +2024-09-11 09:07:11.749304 2024-09-11 09:07:11.749309 mef 6714 R rec fbc919f3-c0e2-4eaf-8514-929db34dc733 +2024-09-11 09:07:11.803209 2024-09-11 09:07:11.803216 mef 6715 R rec 11feaa1e-8cb0-47f6-bbcd-8f322c65bfc4 +2024-09-11 09:07:11.856427 2024-09-11 09:07:11.856432 mef 6716 R rec 31e65403-c3db-49ae-b616-d9e336349508 +2024-09-11 09:07:11.911437 2024-09-11 09:07:11.911441 mef 6717 R rec c147cf97-561c-4e03-8e78-5d5b659192ea +2024-09-11 09:07:11.96991 2024-09-11 09:07:11.969916 mef 6718 R rec 1974bbbb-a400-4964-bae7-56d25eafd9f0 +2024-09-11 09:07:12.034514 2024-09-11 09:07:12.034519 mef 6719 R rec 04391e8c-8d69-4921-b9ea-da748a08b31e +2024-09-11 09:07:12.083837 2024-09-11 09:07:12.083843 mef 6720 R rec 5c940db8-c25e-43a7-a998-515fb9b97dfe +2024-09-11 09:07:12.143725 2024-09-11 09:07:12.14373 mef 6721 R rec 9718a416-329d-4cc1-a605-cdf1b911f174 +2024-09-11 09:07:12.220437 2024-09-11 09:07:12.220442 mef 6722 R rec 892a51ff-6110-418c-845d-589cc0ef2a20 +2024-09-11 09:07:12.274533 2024-09-11 09:07:12.274537 mef 6723 R rec 537d559c-aea1-400c-b09b-d2ee65c0b3a0 +2024-09-11 09:07:12.328436 2024-09-11 09:07:12.328441 mef 6724 R rec 5cba924f-d67f-47ca-aa44-bec7be7ad54d +2024-09-11 09:07:12.377751 2024-09-11 09:07:12.377756 mef 6725 R rec 2ade0919-510e-416a-af94-0f740bea925a +2024-09-11 09:07:12.433403 2024-09-11 09:07:12.433408 mef 6726 R rec 6ed1962a-1e17-49a9-8e85-963bf6dbbb9a +2024-09-11 09:07:12.489189 2024-09-11 09:07:12.489193 mef 6727 R rec e0fff7fd-67aa-4aa2-b5e2-74b516dbcb2d +2024-09-11 09:07:12.542676 2024-09-11 09:07:12.542681 mef 6728 R rec cc49b973-948c-44a2-bb81-799c6710ba51 +2024-09-11 09:07:12.659522 2024-09-11 09:07:12.659527 mef 6729 R rec caaf1d94-8e1f-451a-a106-9a24f5156104 +2024-09-11 09:07:12.71212 2024-09-11 09:07:12.712126 mef 6730 R rec 941eaf1d-3f91-4d80-8056-b69a72060228 +2024-09-11 09:07:12.764756 2024-09-11 09:07:12.764761 mef 6731 R rec 99edfbe6-3ba3-4e91-bacb-f676146e6f66 +2024-09-11 09:07:12.816718 2024-09-11 09:07:12.816723 mef 6732 R rec 0c539af8-15f7-4909-b63f-87558f24baf5 +2024-09-11 09:07:12.870928 2024-09-11 09:07:12.870934 mef 6733 R rec f36ed867-dd03-4090-b97d-95eac98382f9 +2024-09-11 09:07:12.924714 2024-09-11 09:07:12.924719 mef 6734 R rec 7220264a-3d46-4754-818a-0c9dc806d5a6 +2024-09-11 09:07:12.982442 2024-09-11 09:07:12.982448 mef 6735 R rec bcf2864a-6268-494c-b4d8-7f6d720b47dd +2024-09-11 09:07:13.034671 2024-09-11 09:07:13.034677 mef 6736 R rec 2eabd449-c113-41b7-ba2d-e80b38ea308e +2024-09-11 09:07:13.091181 2024-09-11 09:07:13.091186 mef 6737 R rec b4dfa966-5aa4-4d2e-ba0d-0e0e89c604a4 +2024-09-11 09:07:13.14514 2024-09-11 09:07:13.145144 mef 6738 R rec 5ba4fd74-eede-479a-8458-7b4412ef2d11 +2024-09-11 09:07:13.198483 2024-09-11 09:07:13.198487 mef 6739 R rec 1afe884e-dec3-47a9-9002-781405d7e0b4 +2024-09-11 09:07:13.249639 2024-09-11 09:07:13.249644 mef 6740 R rec 3dc2a6a2-c48f-422f-b2ea-b21948f6d767 +2024-09-11 09:07:13.301178 2024-09-11 09:07:13.301183 mef 6741 R rec 0d3398c3-a243-4272-8e2a-602d6435c38a +2024-09-11 09:07:13.353516 2024-09-11 09:07:13.353521 mef 6742 R rec 5a54cd9a-9624-4f40-87df-d2a07d0603e9 +2024-09-11 09:07:13.405392 2024-09-11 09:07:13.405397 mef 6743 R rec 638ed420-2ce7-4b70-aa9f-c8653ca68d15 +2024-09-11 09:07:13.460229 2024-09-11 09:07:13.460234 mef 6744 R rec 78c68f9b-68a9-4b7f-a5d9-eab71cd09366 +2024-09-11 09:07:13.525343 2024-09-11 09:07:13.525349 mef 6745 R rec 9e82d224-9172-4a8c-8845-971a833dbdb0 +2024-09-11 09:07:13.587255 2024-09-11 09:07:13.587259 mef 6746 R rec a57d4d9e-8b12-4015-b9b6-e6836b13ba73 +2024-09-11 09:07:13.639942 2024-09-11 09:07:13.639947 mef 6747 R rec 83573569-37ce-45cb-b656-e7f087d2afee +2024-09-11 09:07:13.754974 2024-09-11 09:07:13.754978 mef 6748 R rec 8a096e42-56bb-4a5a-bfe7-39e7700a245b +2024-09-11 09:07:13.808257 2024-09-11 09:07:13.808262 mef 6749 R rec 69f97390-0028-403b-881b-ea0e090e1ed4 +2024-09-11 09:07:13.864131 2024-09-11 09:07:13.864136 mef 6750 R rec 74f95c3e-72c4-417c-95b2-313143340845 +2024-09-11 09:07:13.916477 2024-09-11 09:07:13.916483 mef 6751 R rec db7606c1-495e-4c67-b180-8690aa6f96a2 +2024-09-11 09:07:13.970626 2024-09-11 09:07:13.970632 mef 6752 R rec df8ae8a7-b3de-4b94-9e64-4037efaabe75 +2024-09-11 09:07:14.027122 2024-09-11 09:07:14.027126 mef 6753 R rec 40abb1c2-d462-4983-a957-8e012e9c2870 +2024-09-11 09:07:14.079821 2024-09-11 09:07:14.079826 mef 6754 R rec 517e7b37-7dd4-4bc5-899a-1f7b921a83e3 +2024-09-11 09:07:14.13482 2024-09-11 09:07:14.134827 mef 6755 R rec 225f0c51-fdf7-4030-afe6-b280b35c2a6c +2024-09-11 09:07:14.192526 2024-09-11 09:07:14.19253 mef 6756 R rec 4cae03d2-bb54-4816-9240-2426665349dd +2024-09-11 09:07:14.252562 2024-09-11 09:07:14.252568 mef 6757 R rec 85dffd08-5d13-494f-8a10-377086ace427 +2024-09-11 09:07:14.311478 2024-09-11 09:07:14.311482 mef 6758 R rec 0f8a9dbd-6176-4217-98fc-cbb4d1b0baca +2024-09-11 09:07:14.369396 2024-09-11 09:07:14.369402 mef 6759 R rec ea341880-422c-49d3-b59f-736e3ed474a2 +2024-09-11 09:07:14.423171 2024-09-11 09:07:14.423176 mef 6760 R rec 3eaafb3b-9b22-49a8-88a0-4e0f7c7d1762 +2024-09-11 09:07:14.484477 2024-09-11 09:07:14.484482 mef 6761 R rec 050b381f-777a-43a4-bce9-ca8ab56c19f4 +2024-09-11 09:07:14.541896 2024-09-11 09:07:14.541901 mef 6762 R rec 5e8fa81e-1b28-4a50-beae-9835141e0627 +2024-09-11 09:07:14.608805 2024-09-11 09:07:14.60881 mef 6763 R rec ac6a9dff-37f5-49cc-887b-60e507323556 +2024-09-11 09:07:14.742527 2024-09-11 09:07:14.742533 mef 6764 R rec 6a9f880e-2b5f-40f5-9e98-a1acf6ae6edd +2024-09-11 09:07:14.802144 2024-09-11 09:07:14.802151 mef 6765 R rec b8f65b7f-5c24-49af-a738-323c024174ca +2024-09-11 09:07:14.853993 2024-09-11 09:07:14.853999 mef 6766 R rec 55a8b9b4-f38c-4c8b-8707-c962f4696ca5 +2024-09-11 09:07:14.913851 2024-09-11 09:07:14.913856 mef 6767 R rec b3d93e15-4114-4eb0-9d1a-23b6e848762f +2024-09-11 09:07:14.979103 2024-09-11 09:07:14.979109 mef 6768 R rec 9467f5e8-8b38-49b2-b07e-6a7aff8284f3 +2024-09-11 09:07:15.034535 2024-09-11 09:07:15.03454 mef 6769 R rec 32f7f828-8ac5-44b2-83ad-b5e0df523516 +2024-09-11 09:07:15.151173 2024-09-11 09:07:15.151179 mef 6770 R rec a17d771a-1f7c-4cc0-8f9e-12719d5eb510 +2024-09-11 09:07:15.204948 2024-09-11 09:07:15.204953 mef 6771 R rec 536ede99-5359-4a9d-9570-9c2e679aa8ea +2024-09-11 09:07:15.261978 2024-09-11 09:07:15.261983 mef 6772 R rec 1a0047ab-4d69-4f62-8150-1acfa5082550 +2024-09-11 09:07:15.320827 2024-09-11 09:07:15.320832 mef 6773 R rec 09c6e45e-0f79-4b17-8405-ea5a92305951 +2024-09-11 09:07:15.439136 2024-09-11 09:07:15.43914 mef 6774 R rec eb255817-b9e3-483a-970f-17dc2f885fa8 +2024-09-11 09:07:15.491771 2024-09-11 09:07:15.491776 mef 6775 R rec 8c2cc96f-58eb-4ab4-b9ed-eab112fb408a +2024-09-11 09:07:15.550827 2024-09-11 09:07:15.550833 mef 6776 R rec 3db532e0-857d-4eee-874c-9cb10ee8cc77 +2024-09-11 09:07:15.613414 2024-09-11 09:07:15.613419 mef 6777 R rec 665a2402-9712-449b-af25-9453b7cf2488 +2024-09-11 09:07:15.676401 2024-09-11 09:07:15.676406 mef 6778 R rec 0510ea6d-43fa-4c16-bc7e-7e2b1c8efcab +2024-09-11 09:07:15.742837 2024-09-11 09:07:15.742841 mef 6779 R rec 73df25b1-aa00-4653-8197-d831a1005e97 +2024-09-11 09:07:15.801944 2024-09-11 09:07:15.801954 mef 6780 R rec 72a108b6-f75f-43b9-b256-a555e34bf50c +2024-09-11 09:07:15.864292 2024-09-11 09:07:15.864298 mef 6781 R rec b5b3f626-db28-4b97-b51c-a183ffede234 +2024-09-11 09:07:15.932046 2024-09-11 09:07:15.932052 mef 6782 R rec 5c167608-bf3a-43d6-8e42-b038a99e5075 +2024-09-11 09:07:16.011857 2024-09-11 09:07:16.011863 mef 6783 R rec 94438d9f-dcdb-49a0-b387-8a094550e067 +2024-09-11 09:07:16.162491 2024-09-11 09:07:16.162497 mef 6784 R rec af67eea6-762a-4051-87e3-62a9e2ac6603 +2024-09-11 09:07:16.30053 2024-09-11 09:07:16.300535 mef 6785 R rec 2b58f96f-fa6e-4361-a156-0e3ce251aaca +2024-09-11 09:07:16.355053 2024-09-11 09:07:16.355058 mef 6786 R rec b4472e16-fce1-43bb-ac95-007fcfcbcb83 +2024-09-11 09:07:16.411184 2024-09-11 09:07:16.411189 mef 6787 R rec b7108b49-03b7-4b2e-a634-0303eb83eda7 +2024-09-11 09:07:16.535871 2024-09-11 09:07:16.535876 mef 6788 R rec 03837461-304f-4d28-bede-6952f9f6ca4a +2024-09-11 09:07:16.599388 2024-09-11 09:07:16.599393 mef 6789 R rec 9ef7b27d-fe68-4f88-b8c7-a691830e1bf3 +2024-09-11 09:07:16.65928 2024-09-11 09:07:16.659285 mef 6790 R rec eba86edc-2d6b-4c18-996e-ef7662736234 +2024-09-11 09:07:16.786312 2024-09-11 09:07:16.786317 mef 6791 R rec cb66692c-7814-4bfc-bc0c-2239e0968743 +2024-09-11 09:07:16.841264 2024-09-11 09:07:16.841269 mef 6792 R rec 31ebead2-c890-4795-b37a-7a93ac0b197c +2024-09-11 09:07:16.95588 2024-09-11 09:07:16.955885 mef 6793 R rec 5b56ec25-3e24-4e90-b9a1-6ac4351e67d6 +2024-09-11 09:07:17.078519 2024-09-11 09:07:17.078524 mef 6794 R rec 3ee70af4-822a-4663-8902-ebf7138e5afd +2024-09-11 09:07:17.139751 2024-09-11 09:07:17.139756 mef 6795 R rec 802f3717-3842-456d-a2f0-c86bc27323f9 +2024-09-11 09:07:17.191555 2024-09-11 09:07:17.19156 mef 6796 R rec fa8253fb-66a5-40eb-bde0-602b687b422f +2024-09-11 09:07:17.247112 2024-09-11 09:07:17.247117 mef 6797 R rec b7369bf6-4acd-4db8-9e00-0dc18ea5ad73 +2024-09-11 09:07:17.302559 2024-09-11 09:07:17.302566 mef 6798 R rec 53600fdf-f171-42fb-b31c-33882141f1bc +2024-09-11 09:07:17.356741 2024-09-11 09:07:17.356746 mef 6799 R rec 59ece816-b32d-4300-9944-049fc7aff4d0 +2024-09-11 09:07:17.417339 2024-09-11 09:07:17.417345 mef 6800 R rec 0e5259ca-7396-4309-8512-b639620fe9cd +2024-09-11 09:07:17.487369 2024-09-11 09:07:17.487375 mef 6801 R rec f4ac5b61-b0c8-45b5-85ee-4ec84bd3b488 +2024-09-11 09:07:17.548922 2024-09-11 09:07:17.548927 mef 6802 R rec 42d72078-5fe6-49f2-9707-e7e858830f6d +2024-09-11 09:07:17.606628 2024-09-11 09:07:17.606633 mef 6803 R rec 71e84dd9-6531-4396-9604-d974d499c66d +2024-09-11 09:07:17.660913 2024-09-11 09:07:17.660918 mef 6804 R rec b9ace9f8-2b45-4c71-965a-8339adee6759 +2024-09-11 09:07:17.722206 2024-09-11 09:07:17.722211 mef 6805 R rec 3c4123cb-4195-4d64-9bee-3b15bf2991e1 +2024-09-11 09:07:17.779001 2024-09-11 09:07:17.779007 mef 6806 R rec df7ebbbb-ba07-40a1-9e67-f7c28f1331b3 +2024-09-11 09:07:17.844322 2024-09-11 09:07:17.844326 mef 6807 R rec 59e7a979-9e74-4b28-bbcc-5ae5fc86159c +2024-09-11 09:07:17.911955 2024-09-11 09:07:17.911961 mef 6808 R rec 54d02fc1-8bbb-4c2e-8ccb-c1e7fdd03564 +2024-09-11 09:07:18.034909 2024-09-11 09:07:18.034915 mef 6809 R rec 94c8f594-6ed7-4c84-a0f4-fd9dee5b92f1 +2024-09-11 09:07:18.090012 2024-09-11 09:07:18.090017 mef 6810 R rec e4de29f7-6d97-44af-aab6-9389f3ac67d9 +2024-09-11 09:07:18.148013 2024-09-11 09:07:18.148018 mef 6811 R rec fca7773c-fc85-4b25-b976-41ffc58107e3 +2024-09-11 09:07:18.201503 2024-09-11 09:07:18.201509 mef 6812 R rec dc0475da-6a8e-430c-8332-1feb22edd691 +2024-09-11 09:07:18.257074 2024-09-11 09:07:18.257079 mef 6813 R rec 9f275e7b-b18b-4bff-9f2a-aaa9e1881a57 +2024-09-11 09:07:18.312294 2024-09-11 09:07:18.3123 mef 6814 R rec 60f0be6a-f9dc-4994-abd4-625611f07149 +2024-09-11 09:07:18.363707 2024-09-11 09:07:18.363712 mef 6815 R rec 943afd0e-01d0-4210-a81b-7a636a595310 +2024-09-11 09:07:18.418096 2024-09-11 09:07:18.418102 mef 6816 R rec 1431e3de-4144-4db2-aa89-d47eb2a6384e +2024-09-11 09:07:18.479469 2024-09-11 09:07:18.479475 mef 6817 R rec a846eb39-be79-4b89-86fc-d495b9b59efd +2024-09-11 09:07:18.545212 2024-09-11 09:07:18.545217 mef 6818 R rec 45aefc68-da76-4232-a878-f61ba86c421d +2024-09-11 09:07:18.611372 2024-09-11 09:07:18.611376 mef 6819 R rec 668dab6a-3e28-4824-a99a-e5dbee3cf243 +2024-09-11 09:07:18.666757 2024-09-11 09:07:18.666761 mef 6820 R rec c0f2d47a-1fe0-4898-b9dc-2444d57a43d5 +2024-09-11 09:07:18.722583 2024-09-11 09:07:18.722589 mef 6821 R rec f1fb5e30-d3f2-484e-89ac-5994a46c4551 +2024-09-11 09:07:18.779269 2024-09-11 09:07:18.779274 mef 6822 R rec d2c9376b-dd6b-44ed-8dac-a52b34bfb8c4 +2024-09-11 09:07:18.89381 2024-09-11 09:07:18.893814 mef 6823 R rec 241294a7-d414-4f1a-81fd-027ddd80e1df +2024-09-11 09:07:18.946434 2024-09-11 09:07:18.946439 mef 6824 R rec 6beb55ec-dad3-412d-86ed-a4c9c5d7df3f +2024-09-11 09:07:19.000716 2024-09-11 09:07:19.000721 mef 6825 R rec 90457315-2ba8-4334-a7d6-fd58dba25aa3 +2024-09-11 09:07:19.054525 2024-09-11 09:07:19.05453 mef 6826 R rec d798848f-3716-493d-ac33-9c1fd8428007 +2024-09-11 09:07:19.108674 2024-09-11 09:07:19.108679 mef 6827 R rec 3df4c719-4fdc-4466-a301-26d6d206c60c +2024-09-11 09:07:19.161393 2024-09-11 09:07:19.161398 mef 6828 R rec 8d320a22-7e61-4f43-888a-05cfbfefe3ec +2024-09-11 09:07:19.221316 2024-09-11 09:07:19.221321 mef 6829 R rec d9245abf-ec65-4000-97da-23fc19645e25 +2024-09-11 09:07:19.27302 2024-09-11 09:07:19.273025 mef 6830 R rec 5bd3ba7a-8e6c-4769-9227-ec50e34958f0 +2024-09-11 09:07:19.325125 2024-09-11 09:07:19.32513 mef 6831 R rec 585d6bd1-a0b0-4b4e-a3dc-2ff8709e5983 +2024-09-11 09:07:19.444203 2024-09-11 09:07:19.444208 mef 6832 R rec e4e9f3f3-ad82-4f1e-9d6a-0c94f5b951b4 +2024-09-11 09:07:19.501808 2024-09-11 09:07:19.501813 mef 6833 R rec fa38e050-6e47-4c19-81f6-1bf4d1476896 +2024-09-11 09:07:19.555645 2024-09-11 09:07:19.555649 mef 6834 R rec a039ed7b-944b-4569-9000-af05b24df223 +2024-09-11 09:07:19.609851 2024-09-11 09:07:19.609856 mef 6835 R rec ae8e0c64-316c-4ef8-9ff5-14fb325b4214 +2024-09-11 09:07:19.670644 2024-09-11 09:07:19.67065 mef 6836 R rec 36cbd8fd-7276-4009-881d-cc6ba6910b78 +2024-09-11 09:07:19.730417 2024-09-11 09:07:19.730422 mef 6837 R rec dedba895-0fc1-48f8-a440-f05b21d415b5 +2024-09-11 09:07:19.799691 2024-09-11 09:07:19.799697 mef 6838 R rec eef216b4-b609-44bb-8c05-e12564737450 +2024-09-11 09:07:19.885754 2024-09-11 09:07:19.885759 mef 6839 R rec f9b73415-044e-4b96-afde-2a489c8640bc +2024-09-11 09:07:19.937217 2024-09-11 09:07:19.937222 mef 6840 R rec 5190c4b1-8913-4d4f-8c57-66466d75122c +2024-09-11 09:07:19.991746 2024-09-11 09:07:19.99175 mef 6841 R rec 99d3f80d-472c-4ba3-a071-3de29f49e11c +2024-09-11 09:07:20.045433 2024-09-11 09:07:20.045439 mef 6842 R rec 5c82ebdc-5b3c-4002-8f19-0c744d16b930 +2024-09-11 09:07:20.107076 2024-09-11 09:07:20.107081 mef 6843 R rec 9801d085-a1c8-4286-9b8f-cf8d9bc13736 +2024-09-11 09:07:20.16387 2024-09-11 09:07:20.163875 mef 6844 R rec d6d70a05-b939-4afb-8104-8d9ada0bc091 +2024-09-11 09:07:20.224441 2024-09-11 09:07:20.224446 mef 6845 R rec 12674a67-deef-49f8-9a51-0fc5d62989af +2024-09-11 09:07:20.288648 2024-09-11 09:07:20.288652 mef 6846 R rec 140171ee-6dd4-42dc-8756-f8a157634b3e +2024-09-11 09:07:20.345666 2024-09-11 09:07:20.345671 mef 6847 R rec 2221c58d-9315-43e6-a246-441e5b55ab29 +2024-09-11 09:07:20.476129 2024-09-11 09:07:20.476134 mef 6848 R rec 48df2dd6-3897-4694-96a7-23e6d253d2bc +2024-09-11 09:07:20.538063 2024-09-11 09:07:20.538068 mef 6849 R rec 000d5d78-2f33-4251-ad5a-72058600c51d +2024-09-11 09:07:20.597985 2024-09-11 09:07:20.59799 mef 6850 R rec ee2700c2-115d-40fb-b620-86e731ccbc0a +2024-09-11 09:07:20.656361 2024-09-11 09:07:20.656367 mef 6851 R rec e9c983f7-a3cb-486f-972b-31642f9d9cd5 +2024-09-11 09:07:20.710041 2024-09-11 09:07:20.710046 mef 6852 R rec 8d4b86e0-c495-440d-8869-1dce6dc2fad2 +2024-09-11 09:07:20.770909 2024-09-11 09:07:20.770914 mef 6853 R rec 2d8d881c-3595-4cf1-ab8b-d4693a7c009d +2024-09-11 09:07:20.827753 2024-09-11 09:07:20.827758 mef 6854 R rec e3fb1dfe-cbb7-4592-ab78-c358fb21678a +2024-09-11 09:07:20.890034 2024-09-11 09:07:20.890039 mef 6855 R rec 4a6794c2-38b7-43fd-8563-369d543c5502 +2024-09-11 09:07:20.951859 2024-09-11 09:07:20.951864 mef 6856 R rec 7f32dd4a-ef8a-4b82-9632-e199192c68e8 +2024-09-11 09:07:21.00894 2024-09-11 09:07:21.008945 mef 6857 R rec 66b9116c-ca52-4c71-905b-658eb1101f81 +2024-09-11 09:07:21.068163 2024-09-11 09:07:21.06817 mef 6858 R rec cb11be01-b647-4b6e-bd9d-b760118db5c4 +2024-09-11 09:07:21.206099 2024-09-11 09:07:21.206104 mef 6859 R rec 2dfa5b57-6ec7-49e7-acb4-17e3c7161ec0 +2024-09-11 09:07:21.263359 2024-09-11 09:07:21.263366 mef 6860 R rec 4beed189-b168-4a51-b03f-bea69d9926ac +2024-09-11 09:07:21.384185 2024-09-11 09:07:21.38419 mef 6861 R rec 76b0cf98-c0e0-46c7-b683-497db56f215f +2024-09-11 09:07:21.435087 2024-09-11 09:07:21.435093 mef 6862 R rec 534dd101-b6ac-43bc-acf6-2042177a03d1 +2024-09-11 09:07:21.488478 2024-09-11 09:07:21.488483 mef 6863 R rec 762eb86b-8d57-4074-ab6c-cfcbfb733bb3 +2024-09-11 09:07:21.541308 2024-09-11 09:07:21.541313 mef 6864 R rec 41b8e162-e07d-4674-a543-a22771eab9b6 +2024-09-11 09:07:21.598188 2024-09-11 09:07:21.598193 mef 6865 R rec ded7c2a1-7c04-4c81-9367-2e4d574e8e8c +2024-09-11 09:07:21.649899 2024-09-11 09:07:21.649905 mef 6866 R rec 4b6e5eb6-9472-4c68-8a84-8c7be5607860 +2024-09-11 09:07:21.709255 2024-09-11 09:07:21.709261 mef 6867 R rec 603dcada-45aa-4aef-9608-38f35732b7f9 +2024-09-11 09:07:21.764311 2024-09-11 09:07:21.764316 mef 6868 R rec d83bb354-af06-4fae-b36e-3d6fca060aae +2024-09-11 09:07:21.81908 2024-09-11 09:07:21.819085 mef 6869 R rec 0c3f6ec9-6e5b-42d2-95a6-3d60cd38c119 +2024-09-11 09:07:21.872006 2024-09-11 09:07:21.872012 mef 6870 R rec 136a2298-5389-428c-9120-6b9958aa4976 +2024-09-11 09:07:21.923693 2024-09-11 09:07:21.923698 mef 6871 R rec 129c967b-9f6e-4530-9def-4ae96e134cb1 +2024-09-11 09:07:21.980759 2024-09-11 09:07:21.980765 mef 6872 R rec 34c22dcf-feb3-41df-b3a3-a6bfec875470 +2024-09-11 09:07:22.040856 2024-09-11 09:07:22.04086 mef 6873 R rec b7713068-194c-4dac-9abb-952bfd47e97e +2024-09-11 09:07:22.101784 2024-09-11 09:07:22.101791 mef 6874 R rec 9e35155c-0130-43d1-9649-16e502cf5e8e +2024-09-11 09:07:22.161136 2024-09-11 09:07:22.161141 mef 6875 R rec b9f082be-1eed-4fb4-a72d-9cedcf61b87e +2024-09-11 09:07:22.21195 2024-09-11 09:07:22.211956 mef 6876 R rec b47e5a42-806b-4bf8-b1bc-75b683b08813 +2024-09-11 09:07:22.266812 2024-09-11 09:07:22.266817 mef 6877 R rec 9fdb73bc-4341-4ff9-b2ad-172f89881470 +2024-09-11 09:07:22.319126 2024-09-11 09:07:22.319131 mef 6878 R rec 93825227-b2f4-48ec-b71e-30064883c180 +2024-09-11 09:07:22.482759 2024-09-11 09:07:22.482764 mef 6879 R rec d0cf3a76-400e-403b-b312-34cc25e98b2c +2024-09-11 09:07:22.618693 2024-09-11 09:07:22.618699 mef 6880 R rec 0469b94f-5a70-4977-9d54-6f866b3d1511 +2024-09-11 09:07:22.672873 2024-09-11 09:07:22.672878 mef 6881 R rec fdf91553-a16a-4932-9436-05ac1fc0517b +2024-09-11 09:07:22.787951 2024-09-11 09:07:22.787956 mef 6882 R rec 315ddfd3-3d24-4b75-bf76-b94fcdca5ebd +2024-09-11 09:07:22.841202 2024-09-11 09:07:22.841208 mef 6883 R rec ca247b3d-7ee8-47da-985a-e476a99f4533 +2024-09-11 09:07:22.966104 2024-09-11 09:07:22.966108 mef 6884 R rec 56067def-0ea9-472d-b8d0-fda70d560a30 +2024-09-11 09:07:23.020853 2024-09-11 09:07:23.020858 mef 6885 R rec 5f5eff04-a956-4f6e-b3c7-0d9f32bf93ef +2024-09-11 09:07:23.14719 2024-09-11 09:07:23.147195 mef 6886 R rec 38a7f62e-54a1-4d8a-a1bc-145d7ac847e4 +2024-09-11 09:07:23.203852 2024-09-11 09:07:23.203858 mef 6887 R rec 2b8213f9-fe69-47fe-a8e9-e96152ee6afd +2024-09-11 09:07:23.257848 2024-09-11 09:07:23.257852 mef 6888 R rec 9bfb03b3-5055-4270-a62c-a2991fc6dce4 +2024-09-11 09:07:23.315878 2024-09-11 09:07:23.315884 mef 6889 R rec f6f77d2d-79d0-4251-88f0-dd0c913a5e28 +2024-09-11 09:07:23.366044 2024-09-11 09:07:23.366048 mef 6890 R rec caf78109-cd25-4774-92d6-43097bd21ebf +2024-09-11 09:07:23.415965 2024-09-11 09:07:23.415971 mef 6891 R rec 58653b6e-e3ca-46ca-be30-f874b6b7a057 +2024-09-11 09:07:23.468129 2024-09-11 09:07:23.468134 mef 6892 R rec 2adb1fcc-9e55-4589-ad69-19561fa32620 +2024-09-11 09:07:23.522252 2024-09-11 09:07:23.522256 mef 6893 R rec 736a8211-8525-49af-aff3-a8d8b0e5cb76 +2024-09-11 09:07:23.605661 2024-09-11 09:07:23.605666 mef 6894 R rec a7caff77-9c69-4600-a737-eca465f1c1d3 +2024-09-11 09:07:23.666865 2024-09-11 09:07:23.66687 mef 6895 R rec 8b5de8ea-4a55-4694-aa7a-0e1c1b5b2a14 +2024-09-11 09:07:23.7232 2024-09-11 09:07:23.723204 mef 6896 R rec 83e59cd2-0434-4a30-b0d0-ae477c5f85be +2024-09-11 09:07:23.840239 2024-09-11 09:07:23.840244 mef 6897 R rec 3a2b1db5-1c1d-4275-b8b4-002e2c67e0ab +2024-09-11 09:07:23.895783 2024-09-11 09:07:23.895788 mef 6898 R rec 2506b3d1-d7ec-4682-87ea-ce167b533ce0 +2024-09-11 09:07:23.947563 2024-09-11 09:07:23.947568 mef 6899 R rec ba8c93cf-6cd0-4a79-b089-cf8218abab63 +2024-09-11 09:07:24.002418 2024-09-11 09:07:24.002426 mef 6900 R rec 12b704e6-2ffb-4059-9eb3-23c44ea92090 +2024-09-11 09:07:24.065264 2024-09-11 09:07:24.065269 mef 6901 R rec 9707d586-aa8a-4aa2-a92e-6dbcd8866d5e +2024-09-11 09:07:24.121169 2024-09-11 09:07:24.121174 mef 6902 R rec 2d986d72-bb48-44db-a2cb-c51e1bc7f34d +2024-09-11 09:07:24.172788 2024-09-11 09:07:24.172797 mef 6903 R rec 43c60582-db0c-4651-bea5-ab3e00b665e2 +2024-09-11 09:07:24.29071 2024-09-11 09:07:24.290715 mef 6904 R rec 89878ac9-01a5-4686-9e37-decc970306b6 +2024-09-11 09:07:24.342355 2024-09-11 09:07:24.342361 mef 6905 R rec abd8d814-54da-4133-88e3-b1cda2375d13 +2024-09-11 09:07:24.396264 2024-09-11 09:07:24.396269 mef 6906 R rec 57d55e84-7cab-443a-9ae3-b32f35102bcb +2024-09-11 09:07:24.448895 2024-09-11 09:07:24.448899 mef 6907 R rec adfeb06c-2086-4a5c-8c5c-44cdfd501d98 +2024-09-11 09:07:24.503848 2024-09-11 09:07:24.503852 mef 6908 R rec 575bf70f-465a-46b6-8efc-544bd4a6fd0d +2024-09-11 09:07:24.564057 2024-09-11 09:07:24.564061 mef 6909 R rec c7173955-8dd9-4b5f-b35f-fe77ec8bcdb2 +2024-09-11 09:07:24.622197 2024-09-11 09:07:24.622202 mef 6910 R rec e93c06bf-7a47-4b29-92c9-6290da0681ff +2024-09-11 09:07:24.675939 2024-09-11 09:07:24.675944 mef 6911 R rec 707e0c47-4890-4e3e-9831-3b7a20a27b48 +2024-09-11 09:07:24.728763 2024-09-11 09:07:24.728768 mef 6912 R rec dccc8a10-49db-471c-8911-d464aec83844 +2024-09-11 09:07:24.781926 2024-09-11 09:07:24.781931 mef 6913 R rec 7596444a-3d71-4235-bbb0-07455ce4f4aa +2024-09-11 09:07:24.841414 2024-09-11 09:07:24.841419 mef 6914 R rec 6e9df6ea-e257-4624-bdd0-c2682a92e1af +2024-09-11 09:07:24.919385 2024-09-11 09:07:24.919391 mef 6915 R rec 2a19acba-6957-41ad-8170-423088c2a008 +2024-09-11 09:07:24.984553 2024-09-11 09:07:24.984559 mef 6916 R rec 306d114d-d3f3-44b1-afbf-ff695e65745f +2024-09-11 09:07:25.111213 2024-09-11 09:07:25.111217 mef 6917 R rec b9af09cf-018f-4b26-8cbb-0e1e9bd65c24 +2024-09-11 09:07:25.231935 2024-09-11 09:07:25.23194 mef 6918 R rec 6ffb85d1-f375-4d39-96dd-679b2fe4c240 +2024-09-11 09:07:25.288442 2024-09-11 09:07:25.288447 mef 6919 R rec d573c660-6f04-499e-bbb0-99d01c99f106 +2024-09-11 09:07:25.342298 2024-09-11 09:07:25.342303 mef 6920 R rec c9fbc88e-1d45-4845-a549-65133c945db4 +2024-09-11 09:07:25.395731 2024-09-11 09:07:25.395736 mef 6921 R rec 9a7b429e-055d-46ef-844b-f91ea03ff8a2 +2024-09-11 09:07:25.453368 2024-09-11 09:07:25.453374 mef 6922 R rec aa04aae4-bb5a-47ff-a54c-b0361522a252 +2024-09-11 09:07:25.519334 2024-09-11 09:07:25.519339 mef 6923 R rec b5e8e23c-0c7e-4c86-958e-23e9483226fb +2024-09-11 09:07:25.570978 2024-09-11 09:07:25.570987 mef 6924 R rec 8416647a-de00-4c82-9b46-299f2e9a170b +2024-09-11 09:07:25.62305 2024-09-11 09:07:25.623055 mef 6925 R rec d3c40f15-a67d-4f17-b4cf-d0557abdaef0 +2024-09-11 09:07:25.676973 2024-09-11 09:07:25.676978 mef 6926 R rec 7acc1dfa-a031-4a4f-9049-a8d60ca9a062 +2024-09-11 09:07:25.735467 2024-09-11 09:07:25.735472 mef 6927 R rec 83f78983-3c90-4956-9b58-9b5e7bcf5fea +2024-09-11 09:07:25.79311 2024-09-11 09:07:25.793115 mef 6928 R rec 4bb56bb9-f7e0-44e0-ac35-80d33235b5bb +2024-09-11 09:07:25.846043 2024-09-11 09:07:25.846049 mef 6929 R rec 20628e66-acfe-4430-acdb-8d281a109dac +2024-09-11 09:07:25.89855 2024-09-11 09:07:25.898555 mef 6930 R rec 41b1e0c5-37d0-4e54-aacd-42bf0d928155 +2024-09-11 09:07:25.951533 2024-09-11 09:07:25.951539 mef 6931 R rec c56ce0e0-a97a-45a7-89ed-43d41baa516a +2024-09-11 09:07:26.004007 2024-09-11 09:07:26.004012 mef 6932 R rec efba35dd-e528-473d-a4d0-3f615c2056bc +2024-09-11 09:07:26.060303 2024-09-11 09:07:26.060308 mef 6933 R rec 547cd1aa-7e76-4d30-9793-1325d27fd23a +2024-09-11 09:07:26.148661 2024-09-11 09:07:26.148667 mef 6934 R rec 1c7e41fa-7283-4bea-8e51-a2acd08402d8 +2024-09-11 09:07:26.20734 2024-09-11 09:07:26.207344 mef 6935 R rec 05d36ae6-4f3b-426c-a89b-aee04517be94 +2024-09-11 09:07:26.264577 2024-09-11 09:07:26.264582 mef 6936 R rec 4c10182f-282c-4585-aedd-690516323fdc +2024-09-11 09:07:26.323564 2024-09-11 09:07:26.323569 mef 6937 R rec 2c624de7-054c-4da1-b477-f1712fde0b22 +2024-09-11 09:07:26.374909 2024-09-11 09:07:26.374915 mef 6938 R rec 8b98d921-d8bb-4421-b426-3ea00a71cc35 +2024-09-11 09:07:26.503108 2024-09-11 09:07:26.503113 mef 6939 R rec bd4326f1-f73c-48f9-aaa8-324248b4d1ac +2024-09-11 09:07:26.567038 2024-09-11 09:07:26.567044 mef 6940 R rec 2b9ff0d3-73f8-45e4-addf-8f4f08149d02 +2024-09-11 09:07:26.620973 2024-09-11 09:07:26.620978 mef 6941 R rec f11cd9f2-8479-4038-bc3d-db553713533c +2024-09-11 09:07:26.67433 2024-09-11 09:07:26.674336 mef 6942 R rec 41823960-b910-4ada-8876-b8259631067a +2024-09-11 09:07:26.732075 2024-09-11 09:07:26.732079 mef 6943 R rec 8c342ccf-820c-485d-986a-78f1be546e31 +2024-09-11 09:07:26.788069 2024-09-11 09:07:26.788073 mef 6944 R rec 2eefc976-c4c7-4d90-813b-bf65252283f5 +2024-09-11 09:07:26.841168 2024-09-11 09:07:26.841174 mef 6945 R rec ff58015c-a8e9-40a1-a8b0-7a075b1644fb +2024-09-11 09:07:26.892457 2024-09-11 09:07:26.892462 mef 6946 R rec 7a0fb2cc-c933-4b88-8e06-615a92bed2b5 +2024-09-11 09:07:26.950718 2024-09-11 09:07:26.950724 mef 6947 R rec 620f434d-9469-4fa3-84d3-3d22fa76cfc1 +2024-09-11 09:07:27.003906 2024-09-11 09:07:27.00391 mef 6948 R rec c706a046-416a-4de5-abc8-3df6ba1773d5 +2024-09-11 09:07:27.127238 2024-09-11 09:07:27.127243 mef 6949 R rec 8e4d1022-96cd-4546-aa8d-df1b7547d925 +2024-09-11 09:07:27.178844 2024-09-11 09:07:27.17885 mef 6950 R rec da45f848-d266-4da7-b865-469d20f3d08d +2024-09-11 09:07:27.380758 2024-09-11 09:07:27.380764 mef 6951 R rec f12f99e4-b9cc-461c-8209-d6a3b33736ad +2024-09-11 09:07:27.431955 2024-09-11 09:07:27.431961 mef 6952 R rec 84882c14-0bdd-41a4-9332-fd96fbcbf142 +2024-09-11 09:07:27.490387 2024-09-11 09:07:27.490393 mef 6953 R rec 8b75c1c6-30b6-4e21-8159-183875ace547 +2024-09-11 09:07:27.550821 2024-09-11 09:07:27.550826 mef 6954 R rec 134f4ac5-edaf-4abc-9c54-5bfed58da817 +2024-09-11 09:07:27.605201 2024-09-11 09:07:27.605206 mef 6955 R rec 68b80905-cacc-4846-9133-f9bd33de0305 +2024-09-11 09:07:27.661232 2024-09-11 09:07:27.661237 mef 6956 R rec 1c8c2f1b-a5c2-4ae0-bdaf-5992c82675cb +2024-09-11 09:07:27.714083 2024-09-11 09:07:27.714088 mef 6957 R rec 91d40b25-cb19-4d61-b7d6-c2baccec9517 +2024-09-11 09:07:27.768 2024-09-11 09:07:27.768006 mef 6958 R rec 167c90b1-b929-423b-856a-0b6adb9262d0 +2024-09-11 09:07:27.839607 2024-09-11 09:07:27.839612 mef 6959 R rec 33d67cd9-ee06-4627-b62b-290806a984ad +2024-09-11 09:07:27.892713 2024-09-11 09:07:27.892719 mef 6960 R rec de897ece-c052-4ce3-a288-bc1f083d8adb +2024-09-11 09:07:27.948456 2024-09-11 09:07:27.948461 mef 6961 R rec b373a2b9-71f1-44ba-9d7c-d6e6e58f2b39 +2024-09-11 09:07:28.150437 2024-09-11 09:07:28.150443 mef 6962 R rec fe5ede71-94fe-4ec0-8259-98bc39cc7965 +2024-09-11 09:07:28.269391 2024-09-11 09:07:28.269396 mef 6963 R rec 2696c80a-0d8b-4851-85a1-7a274be55e45 +2024-09-11 09:07:28.327159 2024-09-11 09:07:28.327164 mef 6964 R rec 2452b223-a96b-45a1-ba1b-08864019f290 +2024-09-11 09:07:28.383249 2024-09-11 09:07:28.383255 mef 6965 R rec 2608c55d-08b6-49c9-bec0-f000a6662d32 +2024-09-11 09:07:28.439089 2024-09-11 09:07:28.439094 mef 6966 R rec aed2da58-6ce4-4936-bcb1-3030cb34a512 +2024-09-11 09:07:28.497839 2024-09-11 09:07:28.497843 mef 6967 R rec 3e527d18-c46e-4b0a-ac60-1f91df865847 +2024-09-11 09:07:28.551025 2024-09-11 09:07:28.551031 mef 6968 R rec a4e27957-74b0-486f-9e4f-605ed1f6c8f6 +2024-09-11 09:07:28.61539 2024-09-11 09:07:28.615396 mef 6969 R rec 71454548-6fe5-4c1c-8629-70cafdc81c3c +2024-09-11 09:07:28.695429 2024-09-11 09:07:28.695434 mef 6970 R rec 2255083f-2486-40d5-a13d-34d4d233d4f7 +2024-09-11 09:07:28.751146 2024-09-11 09:07:28.751152 mef 6971 R rec 21f2197e-d864-423a-af32-e8469b07a90b +2024-09-11 09:07:28.800812 2024-09-11 09:07:28.800817 mef 6972 R rec b087b2fd-39a3-44b6-8c96-7d7e003c7ddf +2024-09-11 09:07:28.859091 2024-09-11 09:07:28.859097 mef 6973 R rec b47ea679-9847-42fc-b154-8fbd9d0f4565 +2024-09-11 09:07:28.910088 2024-09-11 09:07:28.910093 mef 6974 R rec 9c289ff7-13bc-460f-92ff-64ff27157dbc +2024-09-11 09:07:28.967391 2024-09-11 09:07:28.967397 mef 6975 R rec 87693cd1-13b1-4088-91cb-1b88c15f16a7 +2024-09-11 09:07:29.030155 2024-09-11 09:07:29.03016 mef 6976 R rec 15f8f278-3d18-4e8a-8a40-f689808d41b2 +2024-09-11 09:07:29.088045 2024-09-11 09:07:29.088051 mef 6977 R rec 5c4d85a9-c9c3-420d-b15e-6a3693f21b78 +2024-09-11 09:07:29.14516 2024-09-11 09:07:29.145165 mef 6978 R rec fa821d1c-7849-4372-a6bf-eb5bfcf7b957 +2024-09-11 09:07:29.197256 2024-09-11 09:07:29.19726 mef 6979 R rec 76be7bc7-7eed-4c6c-aff1-28f46c52d040 +2024-09-11 09:07:29.251371 2024-09-11 09:07:29.251376 mef 6980 R rec 2c44e5ad-d695-4417-920e-7f6e463c8953 +2024-09-11 09:07:29.302393 2024-09-11 09:07:29.302399 mef 6981 R rec 67de7204-96ce-42bf-858c-6c4064b0be5f +2024-09-11 09:07:29.363359 2024-09-11 09:07:29.363364 mef 6982 R rec c2722001-ebf0-431c-b445-83561f266f4b +2024-09-11 09:07:29.413503 2024-09-11 09:07:29.413508 mef 6983 R rec 690b65c2-941c-451d-a8c4-7cbffb81dd8f +2024-09-11 09:07:29.469377 2024-09-11 09:07:29.469382 mef 6984 R rec 4c4db74e-36e1-45f8-a126-7ae870ea99ae +2024-09-11 09:07:29.530975 2024-09-11 09:07:29.53098 mef 6985 R rec 5a8fc59e-ac30-48be-8020-fa2c14b8dee9 +2024-09-11 09:07:29.583866 2024-09-11 09:07:29.583872 mef 6986 R rec e18bbb56-d949-4c8a-b6e6-de5868791772 +2024-09-11 09:07:29.637259 2024-09-11 09:07:29.637265 mef 6987 R rec 6b07f136-5590-4f02-b927-82f661851950 +2024-09-11 09:07:29.689912 2024-09-11 09:07:29.689917 mef 6988 R rec 2e2080d1-88dc-4394-8920-18e2d96ae43b +2024-09-11 09:07:29.743793 2024-09-11 09:07:29.743798 mef 6989 R rec e3b819c3-2b61-4e2d-9eb0-67a447822429 +2024-09-11 09:07:29.798902 2024-09-11 09:07:29.798906 mef 6990 R rec 99bd7c35-4561-4a94-b85f-970fc6056a0f +2024-09-11 09:07:29.856834 2024-09-11 09:07:29.856839 mef 6991 R rec 9aa4aa6e-3330-43ec-b3cc-59540715270c +2024-09-11 09:07:29.985137 2024-09-11 09:07:29.985142 mef 6992 R rec 81df700e-bd2e-4485-988f-4f48da33240d +2024-09-11 09:07:30.041807 2024-09-11 09:07:30.041814 mef 6993 R rec 67402b5b-c100-40c8-9a28-6c11106c97b9 +2024-09-11 09:07:30.093221 2024-09-11 09:07:30.093226 mef 6994 R rec 4e909257-d513-403c-9738-c7a3990e7705 +2024-09-11 09:07:30.147267 2024-09-11 09:07:30.147271 mef 6995 R rec 0a3d2928-9131-4814-b407-4e4d0828bbb7 +2024-09-11 09:07:30.203946 2024-09-11 09:07:30.20395 mef 6996 R rec 57b18613-0b29-4b6d-a175-ed50421afc2d +2024-09-11 09:07:30.261914 2024-09-11 09:07:30.26192 mef 6997 R rec 6d67df0b-59e9-45b5-8fb3-83f5812921b0 +2024-09-11 09:07:30.314941 2024-09-11 09:07:30.314946 mef 6998 R rec 84b7a630-e875-4329-b126-2be85c21d10d +2024-09-11 09:07:30.368616 2024-09-11 09:07:30.368622 mef 6999 R rec 7d549f91-0993-4935-ad14-8ead043179ba +2024-09-11 09:07:30.425982 2024-09-11 09:07:30.425987 mef 7000 R rec 6f9e64f3-bbea-4ca3-bc17-1616e8aef608 +2024-09-11 09:07:30.484335 2024-09-11 09:07:30.484344 mef 7001 R rec a309a206-fc72-44e5-a31e-6e18df594e65 +2024-09-11 09:07:30.544349 2024-09-11 09:07:30.544354 mef 7002 R rec 74b4bd4b-492e-4d58-a90d-84fe4656213d +2024-09-11 09:07:30.596001 2024-09-11 09:07:30.596006 mef 7003 R rec 56082a28-353c-4903-8b71-62a1c662b441 +2024-09-11 09:07:30.650318 2024-09-11 09:07:30.650324 mef 7004 R rec 9a47f208-8bec-476a-ab8d-1bba769a10e7 +2024-09-11 09:07:30.704226 2024-09-11 09:07:30.704233 mef 7005 R rec 46076903-f740-4749-bdf7-82948b933dff +2024-09-11 09:07:30.759736 2024-09-11 09:07:30.759742 mef 7006 R rec 4e4bdb03-f30a-4031-9d37-9794e04be6b1 +2024-09-11 09:07:30.819194 2024-09-11 09:07:30.819199 mef 7007 R rec 2e4eda15-7038-4e03-821a-26a4d9ebc001 +2024-09-11 09:07:30.879868 2024-09-11 09:07:30.879874 mef 7008 R rec ff82d6a4-97b6-42c8-8ae3-0841397e1382 +2024-09-11 09:07:30.93196 2024-09-11 09:07:30.931966 mef 7009 R rec 413c24c3-4274-408b-8380-a306174d611b +2024-09-11 09:07:30.984948 2024-09-11 09:07:30.984954 mef 7010 R rec b404c293-5488-4460-a362-6105b5b4c575 +2024-09-11 09:07:31.043094 2024-09-11 09:07:31.0431 mef 7011 R rec 1233fe92-6a7e-46b5-bd7c-e7268dd33dbe +2024-09-11 09:07:31.10099 2024-09-11 09:07:31.100996 mef 7012 R rec 914d3d91-5612-4486-8add-67b5d800a23b +2024-09-11 09:07:31.158778 2024-09-11 09:07:31.158784 mef 7013 R rec 1b2b4758-ebce-4978-8960-3e306ca92825 +2024-09-11 09:07:31.219571 2024-09-11 09:07:31.219575 mef 7014 R rec 71bba58b-e780-4e30-9d3f-7ba17c985c52 +2024-09-11 09:07:31.279222 2024-09-11 09:07:31.279228 mef 7015 R rec 6c06c31b-6737-4f04-84fc-3854dc56f199 +2024-09-11 09:07:31.330551 2024-09-11 09:07:31.330555 mef 7016 R rec e6900045-7e42-4904-9e65-0ada5ba6f870 +2024-09-11 09:07:31.386174 2024-09-11 09:07:31.386179 mef 7017 R rec a8df4481-73cd-47b0-8a0b-48ba794bccb6 +2024-09-11 09:07:31.440428 2024-09-11 09:07:31.440433 mef 7018 R rec 976a78d2-c9cc-43f3-b86c-18028946292a +2024-09-11 09:07:31.493448 2024-09-11 09:07:31.493453 mef 7019 R rec 8ccf824e-fab6-4bda-8d32-f8d43a08fbb6 +2024-09-11 09:07:31.553804 2024-09-11 09:07:31.553809 mef 7020 R rec b26368ac-a8d0-45ab-acdd-6c6e50680ce6 +2024-09-11 09:07:31.607189 2024-09-11 09:07:31.607194 mef 7021 R rec d95961db-ec27-4021-9100-e2abd3ca5b00 +2024-09-11 09:07:31.664845 2024-09-11 09:07:31.664851 mef 7022 R rec 9816184b-a5ac-4e4b-b12c-8ed44a7faf0a +2024-09-11 09:07:31.720188 2024-09-11 09:07:31.720193 mef 7023 R rec 8c0f6b22-65e8-4b9b-a860-9fbecb1a1163 +2024-09-11 09:07:31.771958 2024-09-11 09:07:31.771965 mef 7024 R rec c9943b91-7ff2-432e-b271-fe7828cba62f +2024-09-11 09:07:31.824075 2024-09-11 09:07:31.82408 mef 7025 R rec 053278fc-a766-41ea-b2db-e9a9b7fc494a +2024-09-11 09:07:31.880973 2024-09-11 09:07:31.880978 mef 7026 R rec ba8c18c1-f78c-4af7-bd8c-7b0d0c4a84fb +2024-09-11 09:07:31.938586 2024-09-11 09:07:31.938593 mef 7027 R rec aa6c7e12-191f-431f-8c72-870fd83bee4a +2024-09-11 09:07:32.066643 2024-09-11 09:07:32.066648 mef 7028 R rec 87275310-96ff-450f-915e-5d93f85f03e0 +2024-09-11 09:07:32.116923 2024-09-11 09:07:32.116929 mef 7029 R rec d01cc7a6-bb5f-4946-af27-0c1c7cf36756 +2024-09-11 09:07:32.166058 2024-09-11 09:07:32.166062 mef 7030 R rec 0abd4b0f-f183-456e-abcc-dfaaf449babc +2024-09-11 09:07:32.222037 2024-09-11 09:07:32.222041 mef 7031 R rec 036869dc-181a-4b2b-a453-9df7eee29f3a +2024-09-11 09:07:32.280658 2024-09-11 09:07:32.280663 mef 7032 R rec f856f3ba-a5b5-4e51-8089-bbd88cfea1ce +2024-09-11 09:07:32.334886 2024-09-11 09:07:32.334892 mef 7033 R rec df34c1e4-cb12-4365-98a6-e83c8b0e192c +2024-09-11 09:07:32.392022 2024-09-11 09:07:32.392028 mef 7034 R rec fbcfe23b-45dd-489b-aea4-f1180e110405 +2024-09-11 09:07:32.463735 2024-09-11 09:07:32.463739 mef 7035 R rec 57442ca1-3c80-478d-8388-5d46c7e4a3d1 +2024-09-11 09:07:32.519736 2024-09-11 09:07:32.519741 mef 7036 R rec 9cd27281-2db2-48b8-bf6f-3def2d4bbadd +2024-09-11 09:07:32.574231 2024-09-11 09:07:32.574236 mef 7037 R rec b126ef3a-07b6-4f0c-86a3-0c52d8f60d6c +2024-09-11 09:07:32.629142 2024-09-11 09:07:32.629147 mef 7038 R rec fa8f0e3f-e190-4b10-b927-0c929037bb2d +2024-09-11 09:07:32.684066 2024-09-11 09:07:32.684071 mef 7039 R rec f8d01918-ba36-4031-a673-775162595247 +2024-09-11 09:07:32.734461 2024-09-11 09:07:32.734465 mef 7040 R rec c2931845-fec8-45d2-a2b5-9bd1a4211924 +2024-09-11 09:07:32.790443 2024-09-11 09:07:32.790448 mef 7041 R rec d3933831-732c-4214-9274-97ccb5c4da05 +2024-09-11 09:07:32.849149 2024-09-11 09:07:32.849155 mef 7042 R rec ab5e390c-a9a1-42ee-a4f4-691b15d57a66 +2024-09-11 09:07:32.902482 2024-09-11 09:07:32.902488 mef 7043 R rec cb5b25fe-7309-46db-8b59-f021860cbf0a +2024-09-11 09:07:32.954027 2024-09-11 09:07:32.954032 mef 7044 R rec d346e0c5-cf55-48de-8e40-1a4ebe1d5c85 +2024-09-11 09:07:33.008278 2024-09-11 09:07:33.008284 mef 7045 R rec 631467a3-d8a0-4f76-85c9-55f91f82d06a +2024-09-11 09:07:33.06486 2024-09-11 09:07:33.064865 mef 7046 R rec addb4897-e1e3-4ebe-b611-e7829b8c9dab +2024-09-11 09:07:33.121771 2024-09-11 09:07:33.121776 mef 7047 R rec 8856e4eb-5e93-4699-a920-8ebe69909c72 +2024-09-11 09:07:33.189139 2024-09-11 09:07:33.189143 mef 7048 R rec b23a4113-2eab-49bf-b779-0c72b3d29410 +2024-09-11 09:07:33.24222 2024-09-11 09:07:33.242225 mef 7049 R rec bd4615de-3e54-4573-ae76-da78ce9553f2 +2024-09-11 09:07:33.299488 2024-09-11 09:07:33.299493 mef 7050 R rec 661799b9-f2e8-4f5f-91a3-b23c118250f1 +2024-09-11 09:07:33.353062 2024-09-11 09:07:33.353068 mef 7051 R rec 6d3fea24-dc65-4159-9e77-405e4ec75e6f +2024-09-11 09:07:33.411274 2024-09-11 09:07:33.41128 mef 7052 R rec 04741869-b702-417b-9b84-161c5e09f4e4 +2024-09-11 09:07:33.471666 2024-09-11 09:07:33.471672 mef 7053 R rec 0048d1ea-4797-4e17-9f5a-b879af5c352c +2024-09-11 09:07:33.526187 2024-09-11 09:07:33.526191 mef 7054 R rec 9bad5cf3-8b56-496b-9174-2b08b000cfe5 +2024-09-11 09:07:33.650716 2024-09-11 09:07:33.650722 mef 7055 R rec 426de414-14ab-494a-a61b-17ca94872985 +2024-09-11 09:07:33.782959 2024-09-11 09:07:33.782965 mef 7056 R rec 6ead9b04-a75e-4d46-83ee-737ad5355255 +2024-09-11 09:07:33.84409 2024-09-11 09:07:33.844095 mef 7057 R rec 486ef428-db0a-4cb8-8465-9021e2d8db71 +2024-09-11 09:07:33.897866 2024-09-11 09:07:33.89787 mef 7058 R rec 910c62bc-3a09-453d-909f-18b65eaf8670 +2024-09-11 09:07:33.960738 2024-09-11 09:07:33.960743 mef 7059 R rec 797711dd-4450-4b2e-b10f-79585de8f7d5 +2024-09-11 09:07:34.02117 2024-09-11 09:07:34.021175 mef 7060 R rec b411e1f0-d852-4652-ab59-0e483ed2de86 +2024-09-11 09:07:34.08185 2024-09-11 09:07:34.081855 mef 7061 R rec eaabe0a0-826e-4446-acd9-9094a755dc68 +2024-09-11 09:07:34.143349 2024-09-11 09:07:34.143354 mef 7062 R rec 9e6dfbc4-0c7d-460d-8cb4-51ae3d0e7af3 +2024-09-11 09:07:34.215038 2024-09-11 09:07:34.215043 mef 7063 R rec 94bdf032-70c7-46cc-8fce-cd526852cc7b +2024-09-11 09:07:34.272425 2024-09-11 09:07:34.27243 mef 7064 R rec 94c10bb8-0135-4f9c-aa9c-dc5aaf7e3af5 +2024-09-11 09:07:34.33082 2024-09-11 09:07:34.330824 mef 7065 R rec f3c2c2cb-1b14-4523-816c-f9da91ce1acb +2024-09-11 09:07:34.385007 2024-09-11 09:07:34.385012 mef 7066 R rec 05d1d2d1-cba0-4628-bc5d-83c38aaa8f42 +2024-09-11 09:07:34.443272 2024-09-11 09:07:34.443277 mef 7067 R rec cd827093-aa2c-4d8f-a636-a8ed478b668c +2024-09-11 09:07:34.498512 2024-09-11 09:07:34.498517 mef 7068 R rec d92dc95d-317c-4b82-8e9e-884642564a19 +2024-09-11 09:07:34.552804 2024-09-11 09:07:34.552809 mef 7069 R rec f2615740-86f0-493a-b7d5-7e0f41946f87 +2024-09-11 09:07:34.60768 2024-09-11 09:07:34.607686 mef 7070 R rec b68359cb-8c6d-400d-afe8-28ff3aec04b4 +2024-09-11 09:07:34.665332 2024-09-11 09:07:34.665337 mef 7071 R rec eb91b2be-8cb3-4a2f-9a31-f9f3c271c901 +2024-09-11 09:07:34.83483 2024-09-11 09:07:34.834836 mef 7072 R rec 3a425643-91aa-418d-841a-4c8aaf0bf0c1 +2024-09-11 09:07:34.900819 2024-09-11 09:07:34.900826 mef 7073 R rec 1c059fc1-4953-4302-9a52-0c823f7723db +2024-09-11 09:07:34.963995 2024-09-11 09:07:34.964 mef 7074 R rec 5dc5a449-a209-4094-9946-2edf8475f8bc +2024-09-11 09:07:35.03132 2024-09-11 09:07:35.031325 mef 7075 R rec 9d90566b-751f-40ce-94c0-0edabe9566ad +2024-09-11 09:07:35.085326 2024-09-11 09:07:35.085331 mef 7076 R rec 42bf3bc8-a4dc-4f47-b297-89b69627d077 +2024-09-11 09:07:35.140022 2024-09-11 09:07:35.140027 mef 7077 R rec 560f78e7-f001-47e3-97ac-80844ea92853 +2024-09-11 09:07:35.200108 2024-09-11 09:07:35.200112 mef 7078 R rec d1fbc47f-9273-4105-b2f5-db4bea19d22a +2024-09-11 09:07:35.25385 2024-09-11 09:07:35.253856 mef 7079 R rec d1c5818c-e476-49fe-a877-58e77635b078 +2024-09-11 09:07:35.310381 2024-09-11 09:07:35.310387 mef 7080 R rec 8dfd96c1-f4aa-454a-9f5f-f84b7c23d15b +2024-09-11 09:07:35.363553 2024-09-11 09:07:35.363558 mef 7081 R rec 76b3be54-fedf-491c-b04e-3be86dfaae33 +2024-09-11 09:07:35.423996 2024-09-11 09:07:35.424001 mef 7082 R rec fa660e0a-6ea1-4c9f-8aa9-399f23e14257 +2024-09-11 09:07:35.481143 2024-09-11 09:07:35.481148 mef 7083 R rec 01152a88-4ce3-4438-8940-17ffe42d4caa +2024-09-11 09:07:35.545122 2024-09-11 09:07:35.545127 mef 7084 R rec 63beaeb5-fd84-4fe5-b91b-30f9c2b6c8aa +2024-09-11 09:07:35.599427 2024-09-11 09:07:35.599431 mef 7085 R rec 72aeb1ba-fa64-4333-9230-f8ca9d9260d1 +2024-09-11 09:07:35.652928 2024-09-11 09:07:35.652934 mef 7086 R rec c04445a7-8296-48de-8cda-ce92821afa56 +2024-09-11 09:07:35.718951 2024-09-11 09:07:35.718957 mef 7087 R rec e5380077-541f-4898-ba76-06bc97e07535 +2024-09-11 09:07:35.777941 2024-09-11 09:07:35.777946 mef 7088 R rec 4a5af8b7-c3ef-4599-800d-a2521679eac9 +2024-09-11 09:07:35.902043 2024-09-11 09:07:35.902048 mef 7089 R rec 52a99b9a-9895-4cd2-97f4-82894fbf242b +2024-09-11 09:07:35.958213 2024-09-11 09:07:35.958218 mef 7090 R rec a7cf85f5-d915-4e4f-8a20-ba21effb72b6 +2024-09-11 09:07:36.019534 2024-09-11 09:07:36.01954 mef 7091 R rec caeb05ff-db4a-45b0-b626-3e686c5c528d +2024-09-11 09:07:36.079772 2024-09-11 09:07:36.079778 mef 7092 R rec 9af81737-7916-4073-a6f2-e0d7cb6b32e1 +2024-09-11 09:07:36.142612 2024-09-11 09:07:36.142617 mef 7093 R rec 6fbb6f41-4de2-4cd0-82aa-205fc1f656a6 +2024-09-11 09:07:36.198277 2024-09-11 09:07:36.198282 mef 7094 R rec 86d3eb63-86a1-4637-9a62-bb3fafe8a0cd +2024-09-11 09:07:36.25529 2024-09-11 09:07:36.255295 mef 7095 R rec b6e0158e-941f-448b-81c4-4648be735c57 +2024-09-11 09:07:36.311109 2024-09-11 09:07:36.311113 mef 7096 R rec e731824f-6176-470a-8d5d-7d5273e2b894 +2024-09-11 09:07:36.372845 2024-09-11 09:07:36.372849 mef 7097 R rec 350b9c2f-c092-4830-8d2f-23b43c81e52e +2024-09-11 09:07:36.430332 2024-09-11 09:07:36.430337 mef 7098 R rec af78da17-e4e1-40ec-acfe-092c7053c5ce +2024-09-11 09:07:36.50673 2024-09-11 09:07:36.506735 mef 7099 R rec bd51e5c6-b85b-4d01-a02b-4e05d00a79c3 +2024-09-11 09:07:36.568911 2024-09-11 09:07:36.568915 mef 7100 R rec a91fc2b1-ae48-4af7-ac04-47f4b995a80b +2024-09-11 09:07:36.635061 2024-09-11 09:07:36.635066 mef 7101 R rec e5ca285c-7c16-471a-a630-35c2d14fea59 +2024-09-11 09:07:36.688577 2024-09-11 09:07:36.688581 mef 7102 R rec 6969c620-0661-4e15-91fc-a5f755f3bd7b +2024-09-11 09:07:36.737277 2024-09-11 09:07:36.737285 mef 7103 R rec c24832a0-9484-45bc-965f-83f626eb0c72 +2024-09-11 09:07:36.795461 2024-09-11 09:07:36.795493 mef 7104 R rec 02a5587b-caac-49cf-9907-968b798d0435 +2024-09-11 09:07:36.85406 2024-09-11 09:07:36.854064 mef 7105 R rec 7800c124-8320-4fc3-87f7-22ef6aa8a561 +2024-09-11 09:07:36.91523 2024-09-11 09:07:36.915234 mef 7106 R rec 256c63d5-25ad-41b4-869f-552d93be2eb2 +2024-09-11 09:07:36.974524 2024-09-11 09:07:36.974528 mef 7107 R rec d9eff271-4816-438d-a249-d0d7933f416d +2024-09-11 09:07:37.031563 2024-09-11 09:07:37.031568 mef 7108 R rec c6e8a7db-b31b-47a1-80cd-1546a0d33d95 +2024-09-11 09:07:37.086454 2024-09-11 09:07:37.086459 mef 7109 R rec 92a67a41-6d0b-43ce-b6ca-a642bb942163 +2024-09-11 09:07:37.141477 2024-09-11 09:07:37.141482 mef 7110 R rec e807442f-3cd7-453e-9f8a-0230d2b413a9 +2024-09-11 09:07:37.211305 2024-09-11 09:07:37.21131 mef 7111 R rec 0db218cd-7eb9-4532-b887-9d9a30eb0f49 +2024-09-11 09:07:37.270754 2024-09-11 09:07:37.270759 mef 7112 R rec a4e2cb8f-14d5-44cc-8351-0a3fcdec1451 +2024-09-11 09:07:37.325169 2024-09-11 09:07:37.325175 mef 7113 R rec 4423d851-5721-4d85-955b-04b0063e1e08 +2024-09-11 09:07:37.378011 2024-09-11 09:07:37.378015 mef 7114 R rec c764d214-ebb2-42ca-8372-a31b2431588a +2024-09-11 09:07:37.441972 2024-09-11 09:07:37.441977 mef 7115 R rec f7a4f707-9da1-4236-883b-778c33cc859c +2024-09-11 09:07:37.508251 2024-09-11 09:07:37.508256 mef 7116 R rec 374a6650-41a3-4048-9d20-ce31b42dce8e +2024-09-11 09:07:37.56605 2024-09-11 09:07:37.566056 mef 7117 R rec ce54c9e7-4d5d-4e14-a67e-860a07203886 +2024-09-11 09:07:37.621394 2024-09-11 09:07:37.621399 mef 7118 R rec 07942209-eaa5-465d-97a0-4d657a310d5f +2024-09-11 09:07:37.680859 2024-09-11 09:07:37.680865 mef 7119 R rec b5da264c-0e23-4c32-bce0-70cc200a6fee +2024-09-11 09:07:37.734473 2024-09-11 09:07:37.73448 mef 7120 R rec 2fc07cf6-169e-4ad5-8dad-28b4995436e6 +2024-09-11 09:07:37.786997 2024-09-11 09:07:37.787003 mef 7121 R rec 06fd6754-eb39-4a1f-9417-9e17a738c72e +2024-09-11 09:07:37.844569 2024-09-11 09:07:37.844574 mef 7122 R rec 4ad6a56e-526e-4630-b2eb-a2dade608d0a +2024-09-11 09:07:37.905709 2024-09-11 09:07:37.905714 mef 7123 R rec 7dd428d5-93c7-4b34-aa88-7bc0fc017979 +2024-09-11 09:07:37.971775 2024-09-11 09:07:37.971781 mef 7124 R rec 608a4a5d-b150-4537-99e2-c1b0cb401220 +2024-09-11 09:07:38.026463 2024-09-11 09:07:38.026468 mef 7125 R rec 93e10307-a158-463b-80db-fb4da0937fa1 +2024-09-11 09:07:38.140712 2024-09-11 09:07:38.140718 mef 7126 R rec 267d7702-1950-474d-87a4-b0c0ecdb1014 +2024-09-11 09:07:38.201293 2024-09-11 09:07:38.201297 mef 7127 R rec df64119d-a172-4f42-9a1a-8ae909da3278 +2024-09-11 09:07:38.259325 2024-09-11 09:07:38.25933 mef 7128 R rec 2e25acb2-906a-446f-822c-97ec9350dad4 +2024-09-11 09:07:38.308691 2024-09-11 09:07:38.308696 mef 7129 R rec ce3b830a-0a1f-4818-870d-4f061ed7b07d +2024-09-11 09:07:38.359976 2024-09-11 09:07:38.359981 mef 7130 R rec 46a01ccf-e233-4f6d-a3c2-6e5ccf3a3af6 +2024-09-11 09:07:38.476695 2024-09-11 09:07:38.476699 mef 7131 R rec 3c363be9-2f5d-4d65-bed9-61e602e18a6a +2024-09-11 09:07:38.537427 2024-09-11 09:07:38.537435 mef 7132 R rec 1e78c127-d990-4ee9-9119-f9103ae39526 +2024-09-11 09:07:38.594115 2024-09-11 09:07:38.59412 mef 7133 R rec 85d89735-677f-4091-98fe-04e41da1c550 +2024-09-11 09:07:38.650229 2024-09-11 09:07:38.650235 mef 7134 R rec 29da400a-76a6-4885-9922-0a0430f9ca56 +2024-09-11 09:07:38.766022 2024-09-11 09:07:38.766027 mef 7135 R rec eb8b7879-cf2f-4f35-afec-13f34af13cb4 +2024-09-11 09:07:38.83734 2024-09-11 09:07:38.837345 mef 7136 R rec 4d731973-6690-4ef0-873f-e6172f6232c8 +2024-09-11 09:07:38.891144 2024-09-11 09:07:38.891149 mef 7137 R rec 3e9beb64-0711-4b2c-af0b-2618e341aa43 +2024-09-11 09:07:38.950092 2024-09-11 09:07:38.950098 mef 7138 R rec 4e01e9a1-deca-46bb-8160-f4d862f13e74 +2024-09-11 09:07:39.01026 2024-09-11 09:07:39.010265 mef 7139 R rec 2bb9e33c-7d23-452d-b6b3-a7e3b514bc38 +2024-09-11 09:07:39.067996 2024-09-11 09:07:39.068001 mef 7140 R rec 388f7dd0-0cbe-4675-871a-0cc416769621 +2024-09-11 09:07:39.124865 2024-09-11 09:07:39.12487 mef 7141 R rec 322896b8-43c5-4194-b7f6-7ca315bffed4 +2024-09-11 09:07:39.186106 2024-09-11 09:07:39.186111 mef 7142 R rec b9694019-74ac-49d8-a027-a2b31e148024 +2024-09-11 09:07:39.241867 2024-09-11 09:07:39.241873 mef 7143 R rec 2992b255-aaa6-4325-af08-d4f5cd336b5b +2024-09-11 09:07:39.300058 2024-09-11 09:07:39.300063 mef 7144 R rec 0ac91052-eef5-48f3-8d62-0c9f9012db4f +2024-09-11 09:07:39.3587 2024-09-11 09:07:39.358705 mef 7145 R rec e4561bb0-ab16-4b71-889d-6ce7dc461873 +2024-09-11 09:07:39.413597 2024-09-11 09:07:39.413604 mef 7146 R rec 310fafa6-3811-4b75-abe9-06db21fa42a7 +2024-09-11 09:07:39.4698 2024-09-11 09:07:39.469805 mef 7147 R rec 8d84372c-3679-49e9-9c6a-06e11de1fa7f +2024-09-11 09:07:39.525628 2024-09-11 09:07:39.525633 mef 7148 R rec f483bdb3-7977-433a-8ac3-1baa9b611e04 +2024-09-11 09:07:39.579903 2024-09-11 09:07:39.579908 mef 7149 R rec 6a09caac-d732-4a41-983c-dd9ff635445e +2024-09-11 09:07:39.641618 2024-09-11 09:07:39.641624 mef 7150 R rec 98ae22fb-33ac-48b1-9e41-53020a230665 +2024-09-11 09:07:39.703239 2024-09-11 09:07:39.703244 mef 7151 R rec 1a7e8510-03b5-4640-afcc-46afab2a76f3 +2024-09-11 09:07:39.758496 2024-09-11 09:07:39.7585 mef 7152 R rec 5ebc9463-eed0-4236-afb5-3d7b51d81b08 +2024-09-11 09:07:39.822395 2024-09-11 09:07:39.8224 mef 7153 R rec 72264b3d-3b8c-4659-9af8-fb6aa23f31d1 +2024-09-11 09:07:39.878598 2024-09-11 09:07:39.878603 mef 7154 R rec e4ed9898-08b5-4f6a-8c0a-9d06a4f03d28 +2024-09-11 09:07:40.002062 2024-09-11 09:07:40.002073 mef 7155 R rec 0a42e89f-814b-49dc-a97b-e3fd22e00b5b +2024-09-11 09:07:40.057791 2024-09-11 09:07:40.057795 mef 7156 R rec a87a1c2a-e81a-43fc-b5f8-77fc4b875b89 +2024-09-11 09:07:40.113331 2024-09-11 09:07:40.113337 mef 7157 R rec c0ddf68a-5f71-442c-a8a7-5f6b7d479319 +2024-09-11 09:07:40.185492 2024-09-11 09:07:40.185499 mef 7158 R rec d98db413-42f7-4728-a086-ad769aa67d86 +2024-09-11 09:07:40.266959 2024-09-11 09:07:40.266965 mef 7159 R rec 72863dc6-2c0d-4741-8700-ae2a5ed2d251 +2024-09-11 09:07:40.328329 2024-09-11 09:07:40.328334 mef 7160 R rec a37df0ee-8845-4cfd-916a-c9cbfc116909 +2024-09-11 09:07:40.381543 2024-09-11 09:07:40.381548 mef 7161 R rec 76bc408e-2596-44fc-b4a1-6aacc0faa114 +2024-09-11 09:07:40.43681 2024-09-11 09:07:40.436817 mef 7162 R rec 69a677bd-32c6-4eea-a39d-9bccfd734110 +2024-09-11 09:07:40.493151 2024-09-11 09:07:40.493156 mef 7163 R rec 52bb0899-c231-4ec0-9c2f-e4f23234e858 +2024-09-11 09:07:40.559157 2024-09-11 09:07:40.559164 mef 7164 R rec 3c9ac0c7-bb9e-4fc2-8d66-9b779f67baef +2024-09-11 09:07:40.614379 2024-09-11 09:07:40.614383 mef 7165 R rec 715483e2-42e2-4859-86ce-9f7931cbfc0a +2024-09-11 09:07:40.666811 2024-09-11 09:07:40.666816 mef 7166 R rec 120925e8-f7a3-4df4-9a19-f8bd0b253cb2 +2024-09-11 09:07:40.722059 2024-09-11 09:07:40.722063 mef 7167 R rec 7f7a73a4-4ffd-4244-8918-e0e41552d567 +2024-09-11 09:07:40.773154 2024-09-11 09:07:40.773159 mef 7168 R rec cacdaa37-7c54-4d63-a872-5f14c5d21b43 +2024-09-11 09:07:40.835417 2024-09-11 09:07:40.835423 mef 7169 R rec 779f1421-31c4-4911-9c83-756a2ead1ef7 +2024-09-11 09:07:40.896468 2024-09-11 09:07:40.896473 mef 7170 R rec 6ea4508d-b27d-4d9d-a7f8-db84d1dac8ba +2024-09-11 09:07:40.95943 2024-09-11 09:07:40.959436 mef 7171 R rec f579bae2-31cf-442c-95b1-e57338ab20dc +2024-09-11 09:07:41.018535 2024-09-11 09:07:41.018543 mef 7172 R rec f52d1238-1344-469b-acd1-92ba5964a721 +2024-09-11 09:07:41.09291 2024-09-11 09:07:41.092916 mef 7173 R rec e4b52891-a01a-4907-a8bc-a3b0569c79ad +2024-09-11 09:07:41.154592 2024-09-11 09:07:41.154597 mef 7174 R rec cdd15407-98f1-4cb7-bd77-5ad7cb07d2a6 +2024-09-11 09:07:41.2194 2024-09-11 09:07:41.219406 mef 7175 R rec 83d34cc8-a73d-49bc-a9a4-8019ab2ed5e4 +2024-09-11 09:07:41.283399 2024-09-11 09:07:41.283406 mef 7176 R rec f4ea664d-b5bf-4260-9391-7b3e8f9de075 +2024-09-11 09:07:41.448068 2024-09-11 09:07:41.448073 mef 7177 R rec 5ca2e498-d2a7-42d4-9cc7-4a0a140d0c33 +2024-09-11 09:07:41.516016 2024-09-11 09:07:41.516022 mef 7178 R rec cfa6a017-aa38-455f-93b4-b21d11646612 +2024-09-11 09:07:41.592956 2024-09-11 09:07:41.592962 mef 7179 R rec d2af15f4-80d7-4576-b0f3-fb6fcbd1926c +2024-09-11 09:07:41.669863 2024-09-11 09:07:41.669869 mef 7180 R rec d4bbee4e-1f88-4625-808f-16d075f7ea5b +2024-09-11 09:07:41.816451 2024-09-11 09:07:41.816459 mef 7181 R rec a99e2fca-cbcc-4312-9495-50cfd418b302 +2024-09-11 09:07:41.877947 2024-09-11 09:07:41.877952 mef 7182 R rec fd7539e1-9201-4766-8e9b-6af2493d64be +2024-09-11 09:07:41.945123 2024-09-11 09:07:41.945128 mef 7183 R rec f3ec719a-adac-4cbb-be00-7830250fbf3d +2024-09-11 09:07:42.002987 2024-09-11 09:07:42.002993 mef 7184 R rec 31ebabf2-1014-4d6c-949b-71eaf68eeab1 +2024-09-11 09:07:42.060835 2024-09-11 09:07:42.06084 mef 7185 R rec c3ed65d3-b8cb-442b-856c-d5721b2ff0d3 +2024-09-11 09:07:42.124112 2024-09-11 09:07:42.124118 mef 7186 R rec 2a41e156-a5a2-4fa0-b706-788263fd4f7b +2024-09-11 09:07:42.181834 2024-09-11 09:07:42.181839 mef 7187 R rec 6d34079f-8bac-433e-b5c4-2c2ab47a81c9 +2024-09-11 09:07:42.243139 2024-09-11 09:07:42.243144 mef 7188 R rec 7c40c898-5ef5-41c0-8922-b8727fa1ad5f +2024-09-11 09:07:42.30346 2024-09-11 09:07:42.303465 mef 7189 R rec b6a00363-665a-4796-8859-51905740250f +2024-09-11 09:07:42.362522 2024-09-11 09:07:42.362526 mef 7190 R rec b026759d-58b7-48ed-8d20-bf920d13d263 +2024-09-11 09:07:42.428784 2024-09-11 09:07:42.42879 mef 7191 R rec 51362aba-e814-4d68-805b-aedd4d2b2301 +2024-09-11 09:07:42.48584 2024-09-11 09:07:42.485846 mef 7192 R rec 97ef56f1-0221-48b2-857a-f7a5ea6d4686 +2024-09-11 09:07:42.542732 2024-09-11 09:07:42.542738 mef 7193 R rec c22efb65-161c-4c4f-bcd9-2e91d488b78e +2024-09-11 09:07:42.598761 2024-09-11 09:07:42.598767 mef 7194 R rec 38056e3f-794d-4990-a4ee-7a6e12adb336 +2024-09-11 09:07:42.661483 2024-09-11 09:07:42.661488 mef 7195 R rec 28bbd808-dcc2-4ef4-8a77-9933332e90ec +2024-09-11 09:07:42.743358 2024-09-11 09:07:42.743365 mef 7196 R rec f317ac86-63dd-4f51-a25c-d9fc1343bb3d +2024-09-11 09:07:42.81926 2024-09-11 09:07:42.819265 mef 7197 R rec 4ee67bd5-5c1f-4016-86f6-08eebe904b18 +2024-09-11 09:07:42.881631 2024-09-11 09:07:42.881638 mef 7198 R rec 3f3d9d41-18ee-41eb-8709-1b869cae0c32 +2024-09-11 09:07:42.944852 2024-09-11 09:07:42.944857 mef 7199 R rec 97ddc5d0-40bf-4680-a946-9ab18a8f919f +2024-09-11 09:07:42.997394 2024-09-11 09:07:42.997399 mef 7200 R rec 94482afb-f10f-4f34-8d24-945ca7acc86b +2024-09-11 09:07:43.057696 2024-09-11 09:07:43.057701 mef 7201 R rec a3874dcb-2920-4c6d-96a6-babbf55cb3a4 +2024-09-11 09:07:43.137852 2024-09-11 09:07:43.137857 mef 7202 R rec 16945fb7-f9dd-4a6f-9805-8b67fa1b540b +2024-09-11 09:07:43.225393 2024-09-11 09:07:43.225398 mef 7203 R rec 01e22dda-dbb3-444b-b505-2669d0cdc1d2 +2024-09-11 09:07:43.353989 2024-09-11 09:07:43.353994 mef 7204 R rec 5c03bce7-2b9f-4060-bf6e-683be2640f0c +2024-09-11 09:07:43.416207 2024-09-11 09:07:43.416212 mef 7205 R rec 0126f691-a969-4647-a665-93fdf16285cd +2024-09-11 09:07:43.475157 2024-09-11 09:07:43.475161 mef 7206 R rec 68f89621-9844-428c-a0c4-ae4bb4896f21 +2024-09-11 09:07:43.603032 2024-09-11 09:07:43.603037 mef 7207 R rec 4fd14d0c-3239-4f8f-b70d-f6174bac4d26 +2024-09-11 09:07:43.737504 2024-09-11 09:07:43.737509 mef 7208 R rec 7cb4cc2e-45f0-4744-b5ee-9bfbe488d5d4 +2024-09-11 09:07:43.793014 2024-09-11 09:07:43.79302 mef 7209 R rec 07c26c72-1d31-42b1-8b4c-c4a3092b30ac +2024-09-11 09:07:43.847681 2024-09-11 09:07:43.847686 mef 7210 R rec 0d38f0f4-fe71-40f8-9cd9-038b2633ff2c +2024-09-11 09:07:43.903845 2024-09-11 09:07:43.90385 mef 7211 R rec 6ce746e6-0306-4141-9779-104d59e12462 +2024-09-11 09:07:43.961851 2024-09-11 09:07:43.961856 mef 7212 R rec 6e1d701b-20b8-4f08-95b4-9e823b9502f0 +2024-09-11 09:07:44.024071 2024-09-11 09:07:44.024076 mef 7213 R rec 642772c2-d98b-4dab-8813-5efa72ad0a47 +2024-09-11 09:07:44.079722 2024-09-11 09:07:44.079727 mef 7214 R rec 10da04d3-436b-44f9-8843-5573f55846bd +2024-09-11 09:07:44.132611 2024-09-11 09:07:44.132615 mef 7215 R rec 0834e13f-eaa0-47d2-a295-10ff65c7268b +2024-09-11 09:07:44.19047 2024-09-11 09:07:44.190474 mef 7216 R rec 490893e0-be75-4f09-8a61-e2e9237a5054 +2024-09-11 09:07:44.247856 2024-09-11 09:07:44.247862 mef 7217 R rec 5d4316be-77e9-49cd-966f-b8c30b41ab40 +2024-09-11 09:07:44.308514 2024-09-11 09:07:44.308519 mef 7218 R rec 97af0489-4203-48d8-8e7e-c6ceeb604d2a +2024-09-11 09:07:44.362781 2024-09-11 09:07:44.362786 mef 7219 R rec d834a3fb-c65e-483c-b9a9-c7f3569f66b9 +2024-09-11 09:07:44.428774 2024-09-11 09:07:44.428779 mef 7220 R rec 28529394-14d9-44cd-8442-cdfe12c1059e +2024-09-11 09:07:44.494668 2024-09-11 09:07:44.494673 mef 7221 R rec 4c2dbd26-fc42-44a1-b93b-a7914d104a56 +2024-09-11 09:07:44.558539 2024-09-11 09:07:44.558544 mef 7222 R rec 7b9bc804-d37f-450e-af2b-d8794aae3518 +2024-09-11 09:07:44.613891 2024-09-11 09:07:44.613896 mef 7223 R rec 5ee9d3d2-1d77-45f7-8aeb-2c51e010eb16 +2024-09-11 09:07:44.671259 2024-09-11 09:07:44.671265 mef 7224 R rec a1392d0b-625e-4f8f-9273-533d7cb1f652 +2024-09-11 09:07:44.724285 2024-09-11 09:07:44.72429 mef 7225 R rec 6f8456fe-3fa9-449c-9c92-58de839c949f +2024-09-11 09:07:44.786735 2024-09-11 09:07:44.786741 mef 7226 R rec 8a53a611-e406-48d0-b730-f2b19477439a +2024-09-11 09:07:44.844453 2024-09-11 09:07:44.844458 mef 7227 R rec 9309c3ac-5ee8-447d-b65d-cc9761051a29 +2024-09-11 09:07:44.902153 2024-09-11 09:07:44.902159 mef 7228 R rec 5fb47ff5-e0b5-4db4-9cbd-1d9c13300017 +2024-09-11 09:07:45.020939 2024-09-11 09:07:45.020944 mef 7229 R rec 72fb8c81-002b-459d-9651-193ccb370f6b +2024-09-11 09:07:45.078636 2024-09-11 09:07:45.078642 mef 7230 R rec f183b763-3d51-4f3d-9aac-ef2ce3d77fd8 +2024-09-11 09:07:45.141945 2024-09-11 09:07:45.141949 mef 7231 R rec 0ff4f548-0773-4a6f-924a-ee88d594ceb6 +2024-09-11 09:07:45.207391 2024-09-11 09:07:45.207396 mef 7232 R rec 97c95c2c-0adb-49c4-ba1c-037352cd73c8 +2024-09-11 09:07:45.268685 2024-09-11 09:07:45.26869 mef 7233 R rec e42c6ef9-b9d9-4983-b91e-5dcad1aba64a +2024-09-11 09:07:45.337791 2024-09-11 09:07:45.337796 mef 7234 R rec 437afc42-cacb-4e34-8258-99ea0c25f5fe +2024-09-11 09:07:45.399484 2024-09-11 09:07:45.399488 mef 7235 R rec f1f80a7c-3c9b-4d11-b913-1f5d05351909 +2024-09-11 09:07:45.454867 2024-09-11 09:07:45.454872 mef 7236 R rec 2f8a0a62-dcfa-4b2f-a28c-2cf85784cf0e +2024-09-11 09:07:45.507558 2024-09-11 09:07:45.507564 mef 7237 R rec d6ce8237-8257-43d3-9449-4a28c0eb4acd +2024-09-11 09:07:45.567596 2024-09-11 09:07:45.567601 mef 7238 R rec 2de35c9a-b8f6-45f7-b68d-04a61319348f +2024-09-11 09:07:45.631278 2024-09-11 09:07:45.631283 mef 7239 R rec 3d6ec665-981f-4aad-8e9a-70171582e286 +2024-09-11 09:07:45.686793 2024-09-11 09:07:45.686799 mef 7240 R rec 0c7f0aa5-bb35-4463-858f-c60488918984 +2024-09-11 09:07:45.741199 2024-09-11 09:07:45.741205 mef 7241 R rec 6189bca4-a855-4bfa-bac5-a1360a93dd57 +2024-09-11 09:07:45.796623 2024-09-11 09:07:45.796628 mef 7242 R rec b1c943a9-2e1c-4025-9037-662ce3a09705 +2024-09-11 09:07:45.857966 2024-09-11 09:07:45.857971 mef 7243 R rec c422dd12-030b-4dae-9921-2733de74631f +2024-09-11 09:07:45.992091 2024-09-11 09:07:45.992095 mef 7244 R rec 5701e4a2-b101-4fe8-b463-fb071927e531 +2024-09-11 09:07:46.059676 2024-09-11 09:07:46.059682 mef 7245 R rec 67f5b7e6-4af2-4f91-a9f8-2e67e8ee5d0a +2024-09-11 09:07:46.120251 2024-09-11 09:07:46.120255 mef 7246 R rec b406347d-8042-4a70-89fd-eca4dc09b9f9 +2024-09-11 09:07:46.173151 2024-09-11 09:07:46.173155 mef 7247 R rec 98ba1410-a95c-4ab1-b56a-c5288798ae87 +2024-09-11 09:07:46.224586 2024-09-11 09:07:46.224591 mef 7248 R rec 83d3696f-7331-47dd-91b4-e2c7142577cf +2024-09-11 09:07:46.289561 2024-09-11 09:07:46.289567 mef 7249 R rec fa6b2787-6518-4b0b-b61d-72a45e564fee +2024-09-11 09:07:46.345346 2024-09-11 09:07:46.345351 mef 7250 R rec b733d744-1d7b-445a-bfa7-f010a178222f +2024-09-11 09:07:46.400069 2024-09-11 09:07:46.400076 mef 7251 R rec e7bc3959-6f7b-4c13-ab4b-66399cadcaa6 +2024-09-11 09:07:46.460139 2024-09-11 09:07:46.460144 mef 7252 R rec ceb36077-a75c-4328-9057-940027d919dc +2024-09-11 09:07:46.513515 2024-09-11 09:07:46.513524 mef 7253 R rec 40556780-78d2-40e9-a064-605a9ae0620a +2024-09-11 09:07:46.571802 2024-09-11 09:07:46.571808 mef 7254 R rec 5ededbcd-abeb-4bd2-af33-628181f00b24 +2024-09-11 09:07:46.635643 2024-09-11 09:07:46.635649 mef 7255 R rec a439bbbc-8be2-4c2c-bb61-628168eaea77 +2024-09-11 09:07:46.697092 2024-09-11 09:07:46.697096 mef 7256 R rec 8a663eb0-f392-40f4-9c65-c7e6cb69ef28 +2024-09-11 09:07:46.760046 2024-09-11 09:07:46.76005 mef 7257 R rec cc2491b9-256b-4bb0-9a17-55f9fb597393 +2024-09-11 09:07:46.817049 2024-09-11 09:07:46.817055 mef 7258 R rec db620188-1fa9-4fa4-9ac2-d0a98474df4a +2024-09-11 09:07:46.885368 2024-09-11 09:07:46.885374 mef 7259 R rec 2bcfd7a7-6179-4393-8436-5daaa9037def +2024-09-11 09:07:46.939678 2024-09-11 09:07:46.939684 mef 7260 R rec 0665a54f-d622-4cf3-a2c7-01700ac9a5dc +2024-09-11 09:07:47.000074 2024-09-11 09:07:47.00008 mef 7261 R rec d3980c65-09fe-4a90-9d55-d375b428db2a +2024-09-11 09:07:47.053057 2024-09-11 09:07:47.053062 mef 7262 R rec 830c7679-d97b-4fe1-95ae-a02736199de5 +2024-09-11 09:07:47.106487 2024-09-11 09:07:47.106493 mef 7263 R rec bae05e75-ac14-4534-8a23-e884a7fe46ae +2024-09-11 09:07:47.15823 2024-09-11 09:07:47.158235 mef 7264 R rec 6b47036b-7ab6-428a-864e-ad4dc005f2c3 +2024-09-11 09:07:47.217376 2024-09-11 09:07:47.217381 mef 7265 R rec 650ee3dc-c292-48cd-98b4-039e6d1bef17 +2024-09-11 09:07:47.272166 2024-09-11 09:07:47.272171 mef 7266 R rec 75cf1928-e3f5-4ecb-b8f5-889b7336bcfa +2024-09-11 09:07:47.325446 2024-09-11 09:07:47.325451 mef 7267 R rec 6cc001ca-ab03-4cf4-893f-11f3374486eb +2024-09-11 09:07:47.379339 2024-09-11 09:07:47.379345 mef 7268 R rec d8f31436-e8d7-48a1-8b30-9099d7596b84 +2024-09-11 09:07:47.433467 2024-09-11 09:07:47.433471 mef 7269 R rec f762d83d-2979-4780-a0ba-e16520dc0958 +2024-09-11 09:07:47.491185 2024-09-11 09:07:47.49119 mef 7270 R rec a138f8b9-12ab-4d34-bd9c-e3b9e5703d1b +2024-09-11 09:07:47.553565 2024-09-11 09:07:47.55357 mef 7271 R rec c2e5e5ec-ecc7-47f6-820a-59c91fc53446 +2024-09-11 09:07:47.613589 2024-09-11 09:07:47.613594 mef 7272 R rec bfa6d169-1a03-40d6-94bb-113948694771 +2024-09-11 09:07:47.671984 2024-09-11 09:07:47.671989 mef 7273 R rec ddab038f-22bd-4ed8-9608-4ec43c7705fb +2024-09-11 09:07:47.733815 2024-09-11 09:07:47.733819 mef 7274 R rec 90ff5f42-50f1-4f3f-b091-6b99e6020ba9 +2024-09-11 09:07:47.789852 2024-09-11 09:07:47.789857 mef 7275 R rec 5f892cc3-8e65-4303-b2f6-f9228e3b542d +2024-09-11 09:07:47.844594 2024-09-11 09:07:47.844598 mef 7276 R rec 07c9cc19-7ea2-40c9-87d4-5a86709a1c4d +2024-09-11 09:07:47.902816 2024-09-11 09:07:47.902822 mef 7277 R rec 04bfa306-fedd-4111-823a-32999de65eda +2024-09-11 09:07:47.958719 2024-09-11 09:07:47.958724 mef 7278 R rec c34f8727-4d38-4c4d-bd7a-32529e226a52 +2024-09-11 09:07:48.015017 2024-09-11 09:07:48.015023 mef 7279 R rec ac9d0b7c-b8a9-46ec-810f-494e51ea4bbf +2024-09-11 09:07:48.075726 2024-09-11 09:07:48.075731 mef 7280 R rec 13ce9963-bb91-438e-b90e-ab23ac662a36 +2024-09-11 09:07:48.131802 2024-09-11 09:07:48.131807 mef 7281 R rec 6166071e-00f0-47b1-9dee-e9e095e31df9 +2024-09-11 09:07:48.194412 2024-09-11 09:07:48.194417 mef 7282 R rec 60c164f7-cbf9-4e59-9880-868753214270 +2024-09-11 09:07:48.259149 2024-09-11 09:07:48.259155 mef 7283 R rec 82388056-2954-499e-bafb-96526242eb24 +2024-09-11 09:07:48.313948 2024-09-11 09:07:48.313953 mef 7284 R rec 5528b46b-2b23-4f2e-88be-f81b2cbfdd11 +2024-09-11 09:07:48.374586 2024-09-11 09:07:48.374592 mef 7285 R rec 678854d5-c7d3-448a-805a-6bf1075fa1fc +2024-09-11 09:07:48.432064 2024-09-11 09:07:48.43207 mef 7286 R rec c12fa1a7-c9b0-44b9-944a-e9cf8c2b2c3b +2024-09-11 09:07:48.49161 2024-09-11 09:07:48.491614 mef 7287 R rec 9f1da867-077a-4ae0-b043-b332ba68609b +2024-09-11 09:07:48.550509 2024-09-11 09:07:48.550515 mef 7288 R rec ce9be1fe-b58f-4360-a396-1f2772bf4b04 +2024-09-11 09:07:48.606467 2024-09-11 09:07:48.606472 mef 7289 R rec 7b8f3e6f-39d1-4f08-a959-729f441f2c29 +2024-09-11 09:07:48.66203 2024-09-11 09:07:48.662035 mef 7290 R rec 07624795-18cf-4c39-bbad-2f5151bb12d5 +2024-09-11 09:07:48.715679 2024-09-11 09:07:48.715684 mef 7291 R rec 85a9dddd-d3ae-410e-9110-28cc6b11d5c7 +2024-09-11 09:07:48.769518 2024-09-11 09:07:48.769524 mef 7292 R rec e499e548-b7c2-4eb1-b51d-9864e90e0d38 +2024-09-11 09:07:48.825048 2024-09-11 09:07:48.825053 mef 7293 R rec fccc97e4-a124-4b34-8ed6-c3949f1dd259 +2024-09-11 09:07:48.882853 2024-09-11 09:07:48.882859 mef 7294 R rec 3997f39d-09f7-4ba1-bec1-a6cc4e2019ac +2024-09-11 09:07:48.995054 2024-09-11 09:07:48.995059 mef 7295 R rec ba0d289f-eff7-46e6-bc3a-fa87e7efcc9b +2024-09-11 09:07:49.05238 2024-09-11 09:07:49.052385 mef 7296 R rec 2f661e36-9af6-458a-9735-ec866d1dca22 +2024-09-11 09:07:49.10507 2024-09-11 09:07:49.105075 mef 7297 R rec 8e1d92dc-39a3-439d-bf8e-a934167105e8 +2024-09-11 09:07:49.16292 2024-09-11 09:07:49.162925 mef 7298 R rec 276a8a9d-4437-4de7-93a0-5efc3efbb8af +2024-09-11 09:07:49.22173 2024-09-11 09:07:49.221735 mef 7299 R rec a08a6eea-1cde-4550-8716-d8741e26e48f +2024-09-11 09:07:49.27884 2024-09-11 09:07:49.278845 mef 7300 R rec 4dad11fc-65ac-4aef-adf3-e4eb9e346056 +2024-09-11 09:07:49.334363 2024-09-11 09:07:49.334369 mef 7301 R rec 2c0d091f-131c-46a4-bb3a-0b77b0bd0cb8 +2024-09-11 09:07:49.389688 2024-09-11 09:07:49.389692 mef 7302 R rec a30181e7-feff-476a-a605-aaf50ab923f7 +2024-09-11 09:07:49.448484 2024-09-11 09:07:49.448488 mef 7303 R rec 6b6ce068-bc74-4559-84bb-df08e1fcbc98 +2024-09-11 09:07:49.509016 2024-09-11 09:07:49.509021 mef 7304 R rec faa8463a-b430-4d89-b192-9aad75112d22 +2024-09-11 09:07:49.567899 2024-09-11 09:07:49.567904 mef 7305 R rec c183faa4-381c-45f0-b4ea-b822f57cba5f +2024-09-11 09:07:49.623248 2024-09-11 09:07:49.623253 mef 7306 R rec 8460956a-d731-486d-82ca-58df6f69089d +2024-09-11 09:07:49.688112 2024-09-11 09:07:49.688118 mef 7307 R rec ff326c79-a73e-490a-8de6-652067b9af45 +2024-09-11 09:07:49.751301 2024-09-11 09:07:49.751307 mef 7308 R rec f30b848e-8483-447f-93e4-04f495b7f214 +2024-09-11 09:07:49.892669 2024-09-11 09:07:49.892674 mef 7309 R rec 7b1acf01-7068-4a45-86a3-59a16728999d +2024-09-11 09:07:50.030479 2024-09-11 09:07:50.030484 mef 7310 R rec d1d44568-1d0d-40b7-8de4-2dee9cbbc1cc +2024-09-11 09:07:50.089904 2024-09-11 09:07:50.089909 mef 7311 R rec 71c6402a-941a-4619-be32-fb44a0e0d385 +2024-09-11 09:07:50.149165 2024-09-11 09:07:50.14917 mef 7312 R rec 861e1e41-c159-400f-8819-017bfe3b055e +2024-09-11 09:07:50.211362 2024-09-11 09:07:50.211367 mef 7313 R rec f9f1e7d9-fc30-483d-aaf5-433666c8212a +2024-09-11 09:07:50.270242 2024-09-11 09:07:50.270248 mef 7314 R rec f174d58f-c1ff-475a-bf69-f7b85bb48692 +2024-09-11 09:07:50.326529 2024-09-11 09:07:50.326534 mef 7315 R rec 53692735-7c35-48b5-98bf-207adb2dd289 +2024-09-11 09:07:50.388694 2024-09-11 09:07:50.388699 mef 7316 R rec a3e70f15-b4cf-40db-9f0b-53eb26743c29 +2024-09-11 09:07:50.445811 2024-09-11 09:07:50.445815 mef 7317 R rec c7c343f8-7483-4830-9b37-9d4dda5792a2 +2024-09-11 09:07:50.507709 2024-09-11 09:07:50.507713 mef 7318 R rec dd3650ba-9d7d-49d5-8fa6-937d097f4391 +2024-09-11 09:07:50.567757 2024-09-11 09:07:50.567766 mef 7319 R rec 19b7c803-3e1e-428e-a657-9e59895a7f17 +2024-09-11 09:07:50.627014 2024-09-11 09:07:50.627019 mef 7320 R rec 52acf8a7-599e-491f-b745-e2fb757eeeda +2024-09-11 09:07:50.687365 2024-09-11 09:07:50.68737 mef 7321 R rec 03569cef-104c-4e8e-99ac-6670a25482c1 +2024-09-11 09:07:50.751615 2024-09-11 09:07:50.751622 mef 7322 R rec bc6a1c29-57de-424a-bfc3-bc454df7b978 +2024-09-11 09:07:50.817456 2024-09-11 09:07:50.817466 mef 7323 R rec fdb366ba-e64f-47d2-91b0-b23fdd896ad8 +2024-09-11 09:07:50.950286 2024-09-11 09:07:50.950292 mef 7324 R rec be733430-a566-4730-a811-8ec77f23f9ca +2024-09-11 09:07:51.071206 2024-09-11 09:07:51.071211 mef 7325 R rec 6f9021d5-ad17-4147-873c-c17c1729b1db +2024-09-11 09:07:51.133135 2024-09-11 09:07:51.133141 mef 7326 R rec 2eb8257a-99f5-483b-8324-709aa2c61c67 +2024-09-11 09:07:51.192806 2024-09-11 09:07:51.192812 mef 7327 R rec 88e1af09-20e0-488a-89b9-7b3871cc27aa +2024-09-11 09:07:51.25418 2024-09-11 09:07:51.254185 mef 7328 R rec 8b54c09f-99c5-48b2-b720-2bc16bf96272 +2024-09-11 09:07:51.315647 2024-09-11 09:07:51.315652 mef 7329 R rec eb4966a2-87ee-4911-bb75-329cec0becb6 +2024-09-11 09:07:51.372535 2024-09-11 09:07:51.37254 mef 7330 R rec 34a0b200-b18a-44b5-a356-07d0b7a4e173 +2024-09-11 09:07:51.430522 2024-09-11 09:07:51.430527 mef 7331 R rec 18ecac2d-7c4d-47c5-9a97-c5cfa791dd93 +2024-09-11 09:07:51.483774 2024-09-11 09:07:51.48378 mef 7332 R rec c90c2077-4186-47f7-aa3e-443cc07efa71 +2024-09-11 09:07:51.539181 2024-09-11 09:07:51.539185 mef 7333 R rec 003c3108-13af-4470-ac3d-1f91f2a11817 +2024-09-11 09:07:51.597768 2024-09-11 09:07:51.597774 mef 7334 R rec 98187e4e-21b5-47cb-a623-e98a25265a96 +2024-09-11 09:07:51.656593 2024-09-11 09:07:51.656598 mef 7335 R rec 6740a0e5-e9ac-4420-9eb3-7394ba96c4e5 +2024-09-11 09:07:51.710438 2024-09-11 09:07:51.710443 mef 7336 R rec 1bf5ca9e-9f1e-4890-96ec-255471edddb0 +2024-09-11 09:07:51.763422 2024-09-11 09:07:51.763427 mef 7337 R rec b75b020f-ad2f-4baf-bb8a-3aaef8c65265 +2024-09-11 09:07:51.816676 2024-09-11 09:07:51.81668 mef 7338 R rec 6f21e2f7-861b-4392-bf69-eb17d392e009 +2024-09-11 09:07:51.873712 2024-09-11 09:07:51.873716 mef 7339 R rec c4a58d09-c038-465a-90fc-49f352421b05 +2024-09-11 09:07:51.931566 2024-09-11 09:07:51.931574 mef 7340 R rec e6cf145d-01d2-4ad4-b22a-05c55a3ab785 +2024-09-11 09:07:51.993932 2024-09-11 09:07:51.993938 mef 7341 R rec b67dafa7-d326-4d2e-96c6-3f783c7b05d4 +2024-09-11 09:07:52.063245 2024-09-11 09:07:52.063251 mef 7342 R rec e8dbc8a0-a442-4e49-8519-49fa00fee383 +2024-09-11 09:07:52.116843 2024-09-11 09:07:52.116849 mef 7343 R rec 987e14f5-4f80-4b55-b1d3-4eb7600fd539 +2024-09-11 09:07:52.174994 2024-09-11 09:07:52.174999 mef 7344 R rec 65e3fad6-29d6-4af9-884b-42155bc54659 +2024-09-11 09:07:52.232918 2024-09-11 09:07:52.232923 mef 7345 R rec ba0102b1-9d80-464c-b07f-ffc8ad47b5e0 +2024-09-11 09:07:52.285216 2024-09-11 09:07:52.285222 mef 7346 R rec 8343474c-56e5-4e91-b853-f74dedee5457 +2024-09-11 09:07:52.338439 2024-09-11 09:07:52.338443 mef 7347 R rec b305f169-ed91-41f7-ad84-b06cb732191a +2024-09-11 09:07:52.457813 2024-09-11 09:07:52.457817 mef 7348 R rec 49918a9d-92ef-439f-9ae8-f95cbc0a7024 +2024-09-11 09:07:52.510088 2024-09-11 09:07:52.510093 mef 7349 R rec ef47bc4b-fb31-4a2a-889b-3ca0b390bc9c +2024-09-11 09:07:52.573877 2024-09-11 09:07:52.573882 mef 7350 R rec bb45567e-d7c3-4016-ab42-7567bbe54432 +2024-09-11 09:07:52.633957 2024-09-11 09:07:52.633961 mef 7351 R rec 0edc3d4e-71d1-48ea-9050-0e52d710b82b +2024-09-11 09:07:52.692626 2024-09-11 09:07:52.692631 mef 7352 R rec 6b596a02-f63b-4ff7-a67b-3d86dd2eb488 +2024-09-11 09:07:52.753013 2024-09-11 09:07:52.753021 mef 7353 R rec ca874ce8-17ef-4046-b2af-5006d816da6a +2024-09-11 09:07:52.814139 2024-09-11 09:07:52.814145 mef 7354 R rec 836a8713-bbb7-42f6-bf27-d6374af4084c +2024-09-11 09:07:52.867066 2024-09-11 09:07:52.86707 mef 7355 R rec 85413956-4243-4c3e-8fe3-0172dbcf4840 +2024-09-11 09:07:52.998885 2024-09-11 09:07:52.99889 mef 7356 R rec ece91251-9f01-41ea-a2a2-14dc01dff420 +2024-09-11 09:07:53.069719 2024-09-11 09:07:53.069724 mef 7357 R rec 323779b6-4414-4ce2-a377-379a78587050 +2024-09-11 09:07:53.123753 2024-09-11 09:07:53.123758 mef 7358 R rec 429454c9-9f41-4a26-987f-cc66a58d62f4 +2024-09-11 09:07:53.179085 2024-09-11 09:07:53.17909 mef 7359 R rec 10020e62-e523-4494-8f6e-1eac5e4a547d +2024-09-11 09:07:53.234181 2024-09-11 09:07:53.234185 mef 7360 R rec 25b753f9-7f0b-4cdc-89d9-6b49f33b886c +2024-09-11 09:07:53.284946 2024-09-11 09:07:53.28495 mef 7361 R rec b5a34fad-2513-4078-bc47-7204c12e4012 +2024-09-11 09:07:53.336102 2024-09-11 09:07:53.336107 mef 7362 R rec 27bc0535-6b1d-4d08-8f0a-a166d73db2fc +2024-09-11 09:07:53.389481 2024-09-11 09:07:53.389486 mef 7363 R rec 0823610e-0b6c-42e6-ac31-2f997e1180a1 +2024-09-11 09:07:53.443974 2024-09-11 09:07:53.443978 mef 7364 R rec f8318701-6705-4c02-bea6-1b4d0ebf8477 +2024-09-11 09:07:53.500252 2024-09-11 09:07:53.500257 mef 7365 R rec 628df882-d85a-4ff3-939d-4a70744b69d7 +2024-09-11 09:07:53.554836 2024-09-11 09:07:53.554845 mef 7366 R rec a112c996-a462-4e0c-918f-4e3879507e5e +2024-09-11 09:07:53.611572 2024-09-11 09:07:53.611577 mef 7367 R rec 855b457a-e38a-4349-b988-b9a4efa79881 +2024-09-11 09:07:53.669148 2024-09-11 09:07:53.669152 mef 7368 R rec 0c33a338-032a-4fc3-b67b-e43edd699ca3 +2024-09-11 09:07:53.796462 2024-09-11 09:07:53.796467 mef 7369 R rec 3bd2303a-d7ff-4c7f-93cc-9642d407e356 +2024-09-11 09:07:53.855917 2024-09-11 09:07:53.855923 mef 7370 R rec 70dabd01-263f-4a7e-a0d9-3e835ca86c71 +2024-09-11 09:07:53.910986 2024-09-11 09:07:53.91099 mef 7371 R rec 02771bf5-5f62-43ee-b518-4df8cf0c3bcb +2024-09-11 09:07:53.969339 2024-09-11 09:07:53.969343 mef 7372 R rec 25d25c58-0b8d-473b-93a2-9cf4088ea1ae +2024-09-11 09:07:54.026982 2024-09-11 09:07:54.026987 mef 7373 R rec b8d255ae-c132-464a-9416-48574ded816e +2024-09-11 09:07:54.082769 2024-09-11 09:07:54.082773 mef 7374 R rec 28baf04d-711e-44b1-8d07-8a2ac9578bc1 +2024-09-11 09:07:54.13542 2024-09-11 09:07:54.135425 mef 7375 R rec e9da2998-0e80-4b1f-a655-9c8cb8141240 +2024-09-11 09:07:54.189221 2024-09-11 09:07:54.189226 mef 7376 R rec 403a6ea3-0427-40a8-b53c-3ca378bbe184 +2024-09-11 09:07:54.242764 2024-09-11 09:07:54.242769 mef 7377 R rec 0b42cdde-0619-4590-84ae-bb18cf6ce5ba +2024-09-11 09:07:54.360578 2024-09-11 09:07:54.360584 mef 7378 R rec 6f880033-66bc-410c-a746-85173026ff8d +2024-09-11 09:07:54.420934 2024-09-11 09:07:54.420939 mef 7379 R rec 5baa4fba-565f-496e-b8c4-9d330bbb8349 +2024-09-11 09:07:54.502563 2024-09-11 09:07:54.502567 mef 7380 R rec 90c0c1b6-352a-4f19-b496-6eed391465a8 +2024-09-11 09:07:54.563778 2024-09-11 09:07:54.563784 mef 7381 R rec 60007e9b-7b2f-43c8-b0ba-ccb0dc63fbcb +2024-09-11 09:07:54.625406 2024-09-11 09:07:54.625411 mef 7382 R rec 162eaaf0-abfc-4bea-9e4c-eba8e316c9f7 +2024-09-11 09:07:54.684856 2024-09-11 09:07:54.684861 mef 7383 R rec c2f43cd3-d6b3-4de6-8300-af2804698da9 +2024-09-11 09:07:54.740358 2024-09-11 09:07:54.740362 mef 7384 R rec bbf526c0-c85f-40bb-8d5d-adb92e585548 +2024-09-11 09:07:54.796388 2024-09-11 09:07:54.796393 mef 7385 R rec e7fdf32d-84a4-4407-9061-7684d75ca45a +2024-09-11 09:07:54.855822 2024-09-11 09:07:54.855837 mef 7386 R rec b685c4bc-961b-40c9-b455-360a663bdede +2024-09-11 09:07:54.909117 2024-09-11 09:07:54.909122 mef 7387 R rec 25f5948b-5fd3-4e58-94b2-e20ec7b7a9ac +2024-09-11 09:07:54.966934 2024-09-11 09:07:54.966939 mef 7388 R rec eb548608-9a90-442b-8e4f-415e8f010169 +2024-09-11 09:07:55.030478 2024-09-11 09:07:55.030483 mef 7389 R rec d19a0ac5-c930-45f0-b260-6cfb77a1eea7 +2024-09-11 09:07:55.089786 2024-09-11 09:07:55.089791 mef 7390 R rec 541c12bf-576e-439f-8db7-fb07e48ee8a0 +2024-09-11 09:07:55.143445 2024-09-11 09:07:55.14345 mef 7391 R rec c2e571b0-050d-494f-bdd1-95ff2cd3ebfe +2024-09-11 09:07:55.19766 2024-09-11 09:07:55.197665 mef 7392 R rec 090bb612-f140-413f-92ea-427141b12d38 +2024-09-11 09:07:55.30721 2024-09-11 09:07:55.307215 mef 7393 R rec 3b1377ad-7dde-4fa2-ac5c-3cec5cbdda37 +2024-09-11 09:07:55.362402 2024-09-11 09:07:55.362406 mef 7394 R rec 9fb96da5-e11f-423b-92ea-5293483ff5a2 +2024-09-11 09:07:55.414401 2024-09-11 09:07:55.414406 mef 7395 R rec 5b21a366-8d7c-42f6-9ca9-06912404c759 +2024-09-11 09:07:55.467445 2024-09-11 09:07:55.467449 mef 7396 R rec 7d9ff069-53b1-4893-8f9f-3a4d2cd4278e +2024-09-11 09:07:55.526285 2024-09-11 09:07:55.526289 mef 7397 R rec 3131b4bc-ef3c-4b25-a347-75de4defd34b +2024-09-11 09:07:55.582468 2024-09-11 09:07:55.582473 mef 7398 R rec f097dc39-bcb5-4791-90d1-f441be120f91 +2024-09-11 09:07:55.646934 2024-09-11 09:07:55.646938 mef 7399 R rec 697277cb-f228-4e73-a40f-87094825c68e +2024-09-11 09:07:55.702615 2024-09-11 09:07:55.70262 mef 7400 R rec fbe5fc23-7297-4d9a-a0fe-84517c13de8c +2024-09-11 09:07:55.763244 2024-09-11 09:07:55.763249 mef 7401 R rec fb149e56-937b-4454-a677-02511a38e84b +2024-09-11 09:07:55.816747 2024-09-11 09:07:55.816751 mef 7402 R rec d4f45a16-e510-40c8-8a3e-e5b18d9251e5 +2024-09-11 09:07:55.872657 2024-09-11 09:07:55.872663 mef 7403 R rec ca0564a5-501e-47b7-bf87-666625174170 +2024-09-11 09:07:55.925868 2024-09-11 09:07:55.925874 mef 7404 R rec 4cb93b9d-78a7-4652-b103-727534a30eca +2024-09-11 09:07:55.981494 2024-09-11 09:07:55.981499 mef 7405 R rec b2276233-d833-4251-b7c4-c882f8aadddc +2024-09-11 09:07:56.039495 2024-09-11 09:07:56.0395 mef 7406 R rec dff88ee9-ac8a-4aa8-a170-4a7395e0ae28 +2024-09-11 09:07:56.090232 2024-09-11 09:07:56.090237 mef 7407 R rec 5538f7ef-c298-4ce9-a87c-7b3cbdcf6c10 +2024-09-11 09:07:56.143021 2024-09-11 09:07:56.143026 mef 7408 R rec 8665aba0-0b39-4cde-b4a7-4c525dd88ebe +2024-09-11 09:07:56.196849 2024-09-11 09:07:56.196855 mef 7409 R rec 96a6a98a-e541-412f-8e99-c23fd2e67e29 +2024-09-11 09:07:56.254524 2024-09-11 09:07:56.254529 mef 7410 R rec 4a93e584-b884-48ed-a303-caac2127c150 +2024-09-11 09:07:56.306978 2024-09-11 09:07:56.306983 mef 7411 R rec 0a08d6e7-35b0-4e98-8e9a-3bb79a346be8 +2024-09-11 09:07:56.359737 2024-09-11 09:07:56.359743 mef 7412 R rec 2d8fd49f-d4cd-4729-ac6a-6ff454522677 +2024-09-11 09:07:56.41705 2024-09-11 09:07:56.417055 mef 7413 R rec f423f51b-f96f-4682-8e52-344eeac33758 +2024-09-11 09:07:56.474116 2024-09-11 09:07:56.474121 mef 7414 R rec b8c04fec-8b45-483a-ac47-e4b3c8ac28cd +2024-09-11 09:07:56.535245 2024-09-11 09:07:56.535251 mef 7415 R rec 8e34dd29-0a93-4f93-a8be-fcdeebe9a81e +2024-09-11 09:07:56.588885 2024-09-11 09:07:56.588889 mef 7416 R rec abe71c1e-22de-4e1f-98dc-e24a982b99ba +2024-09-11 09:07:56.644481 2024-09-11 09:07:56.644485 mef 7417 R rec bac6f3b8-d030-4150-b4d0-afc1228ed274 +2024-09-11 09:07:56.699065 2024-09-11 09:07:56.69907 mef 7418 R rec cc722f7d-bdbe-45bf-a75c-9855e30aeb1a +2024-09-11 09:07:56.753227 2024-09-11 09:07:56.753233 mef 7419 R rec 2a685342-d777-468a-b891-0a8bf350e395 +2024-09-11 09:07:56.809316 2024-09-11 09:07:56.809321 mef 7420 R rec f878f2b1-daf9-4f7e-b9d7-147ce9928626 +2024-09-11 09:07:56.863889 2024-09-11 09:07:56.863895 mef 7421 R rec 5ba6c263-bbc3-4b6e-8858-299d8d1441e3 +2024-09-11 09:07:56.914986 2024-09-11 09:07:56.914991 mef 7422 R rec 99c0aec9-a205-440f-ad51-9ab8dceacc3d +2024-09-11 09:07:56.965807 2024-09-11 09:07:56.965812 mef 7423 R rec e8d811b3-6b03-4e56-be84-da0c1c99fb1b +2024-09-11 09:07:57.019903 2024-09-11 09:07:57.019908 mef 7424 R rec 0fca2881-c6e3-4c92-a272-fb016b3ef0e0 +2024-09-11 09:07:57.102132 2024-09-11 09:07:57.102137 mef 7425 R rec e2ec750d-e667-4bf4-bb5e-6d4385c368e0 +2024-09-11 09:07:57.162528 2024-09-11 09:07:57.162533 mef 7426 R rec 262c87e4-dc08-4284-8972-4b8fbd939c31 +2024-09-11 09:07:57.291122 2024-09-11 09:07:57.291126 mef 7427 R rec b3fccc31-aea2-45d0-aabe-4f6cc00998a3 +2024-09-11 09:07:57.344583 2024-09-11 09:07:57.344588 mef 7428 R rec 7086fc35-7514-457a-aa66-ce35a438930d +2024-09-11 09:07:57.397755 2024-09-11 09:07:57.397761 mef 7429 R rec f58be375-adec-4d40-8c93-2bdbfec68413 +2024-09-11 09:07:57.452592 2024-09-11 09:07:57.452598 mef 7430 R rec 1d60194d-3020-4dba-8afc-49a879454605 +2024-09-11 09:07:57.506153 2024-09-11 09:07:57.506158 mef 7431 R rec 648d9312-9749-47ae-917c-f63daee94fde +2024-09-11 09:07:57.560488 2024-09-11 09:07:57.560493 mef 7432 R rec b7c88cdc-7a3c-4693-bf0b-e1ebb1ec2041 +2024-09-11 09:07:57.619067 2024-09-11 09:07:57.619072 mef 7433 R rec 1da3bfc4-0ada-47e0-a1a4-6983c28590e8 +2024-09-11 09:07:57.679781 2024-09-11 09:07:57.679785 mef 7434 R rec 8e227a3e-b62c-441c-a42d-1690a5b28f6b +2024-09-11 09:07:57.739779 2024-09-11 09:07:57.739783 mef 7435 R rec c965fe3a-5ddf-42d7-9acb-fdff82afea47 +2024-09-11 09:07:57.795536 2024-09-11 09:07:57.795542 mef 7436 R rec 1aebe5f2-8794-45ce-aee9-afb4e58db4f4 +2024-09-11 09:07:57.851431 2024-09-11 09:07:57.851435 mef 7437 R rec da1f1955-4a6a-4877-b87e-dbbbde439aeb +2024-09-11 09:07:57.909847 2024-09-11 09:07:57.909852 mef 7438 R rec 40a8cdbb-780e-41d0-b74a-c9ea508d88ce +2024-09-11 09:07:57.970116 2024-09-11 09:07:57.97012 mef 7439 R rec 3dca2209-c896-4436-bb73-fd09a75fffc9 +2024-09-11 09:07:58.031872 2024-09-11 09:07:58.031878 mef 7440 R rec 44ea6f6e-bec7-4aa7-8791-affa386e1e5b +2024-09-11 09:07:58.094732 2024-09-11 09:07:58.094737 mef 7441 R rec ac548464-bbb5-497d-a80a-d4b01c8988fb +2024-09-11 09:07:58.218082 2024-09-11 09:07:58.218089 mef 7442 R rec 9cdb36b4-0281-42a1-ae08-c60af293fadc +2024-09-11 09:07:58.272333 2024-09-11 09:07:58.272338 mef 7443 R rec feccf341-137c-4502-b9eb-1f78c4a6f032 +2024-09-11 09:07:58.326006 2024-09-11 09:07:58.326011 mef 7444 R rec e13eeed0-a897-4207-ae32-87f2c48ce185 +2024-09-11 09:07:58.393933 2024-09-11 09:07:58.393938 mef 7445 R rec e5ac3d29-be4c-4184-b49e-e145c900e9cd +2024-09-11 09:07:58.456471 2024-09-11 09:07:58.456476 mef 7446 R rec 68938e74-c86e-41b9-9d84-ab8ebcc0e20b +2024-09-11 09:07:58.51451 2024-09-11 09:07:58.514516 mef 7447 R rec 6f84dff6-5a97-4545-b8d9-eff2437bbe4e +2024-09-11 09:07:58.571584 2024-09-11 09:07:58.571588 mef 7448 R rec 30909bb9-6ecc-4489-b57b-d435a35d8b0c +2024-09-11 09:07:58.628312 2024-09-11 09:07:58.628317 mef 7449 R rec 7908ebcc-c53f-4496-9383-fe67b7536b76 +2024-09-11 09:07:58.691328 2024-09-11 09:07:58.691333 mef 7450 R rec 87469a06-6162-42bf-b5e5-7919789cc3f5 +2024-09-11 09:07:58.754877 2024-09-11 09:07:58.754882 mef 7451 R rec aef7b064-7cd0-490c-aef6-41429d9c9d40 +2024-09-11 09:07:58.811103 2024-09-11 09:07:58.811109 mef 7452 R rec 0d38f55a-aa99-4fb9-8cf3-5cdbf49c4cf7 +2024-09-11 09:07:58.870178 2024-09-11 09:07:58.870182 mef 7453 R rec 4f620965-306a-4375-8aec-79788bbeefa2 +2024-09-11 09:07:58.926646 2024-09-11 09:07:58.926652 mef 7454 R rec aab20a1a-688a-43ce-83c3-575437dc88d9 +2024-09-11 09:07:58.983554 2024-09-11 09:07:58.983558 mef 7455 R rec 22c255b9-031e-482d-829a-25e55224d8b9 +2024-09-11 09:07:59.039618 2024-09-11 09:07:59.039623 mef 7456 R rec 663a295a-afcd-446c-b6dc-c42cda4a04ed +2024-09-11 09:07:59.094167 2024-09-11 09:07:59.094172 mef 7457 R rec 6c59abd7-3cb1-4a96-a912-5ee7201c168c +2024-09-11 09:07:59.148129 2024-09-11 09:07:59.148134 mef 7458 R rec dc1cfc68-22d7-4411-bee8-1549abcae165 +2024-09-11 09:07:59.202388 2024-09-11 09:07:59.202393 mef 7459 R rec d8f7760e-c47f-4198-80a5-bbf2ca2ec597 +2024-09-11 09:07:59.256291 2024-09-11 09:07:59.256295 mef 7460 R rec 8abaf850-2d93-4ae4-a356-4a5d513645fb +2024-09-11 09:07:59.312091 2024-09-11 09:07:59.312097 mef 7461 R rec 66f293ed-dff7-45ac-96b4-bec3f3536e05 +2024-09-11 09:07:59.371473 2024-09-11 09:07:59.371478 mef 7462 R rec 4d63e647-8375-4b7f-b68f-f9886a1d989a +2024-09-11 09:07:59.432889 2024-09-11 09:07:59.432894 mef 7463 R rec 8f1ebafc-b71a-4940-b605-bcad472d0bf3 +2024-09-11 09:07:59.488634 2024-09-11 09:07:59.488661 mef 7464 R rec 927d2ca6-6768-4ec9-87b4-30ed9b7c1403 +2024-09-11 09:07:59.552215 2024-09-11 09:07:59.552222 mef 7465 R rec 0263e094-79cf-460c-af44-f0feb0ff0431 +2024-09-11 09:07:59.61034 2024-09-11 09:07:59.610345 mef 7466 R rec 34d9ae8c-c820-4022-992a-dfb031536fe5 +2024-09-11 09:07:59.668651 2024-09-11 09:07:59.668657 mef 7467 R rec 2bf8a50e-5eac-4f41-8fb5-842bf83d5c20 +2024-09-11 09:07:59.783705 2024-09-11 09:07:59.783709 mef 7468 R rec 2d07eab2-a8aa-408b-bba6-fe499e5573ea +2024-09-11 09:07:59.839269 2024-09-11 09:07:59.839274 mef 7469 R rec f07bd84c-fcb8-4929-8889-3f74ff836e8b +2024-09-11 09:07:59.891904 2024-09-11 09:07:59.891909 mef 7470 R rec ff234e61-1d4d-4161-9c6d-902b491178a3 +2024-09-11 09:07:59.947538 2024-09-11 09:07:59.947543 mef 7471 R rec d300504a-171f-4d6a-909f-aea6a8a43012 +2024-09-11 09:08:00.000541 2024-09-11 09:08:00.000546 mef 7472 R rec c2a836b3-1bce-441d-a6df-6b892ae7f987 +2024-09-11 09:08:00.057255 2024-09-11 09:08:00.05726 mef 7473 R rec a5644ce1-3b86-4db3-b771-2d16ba55b34e +2024-09-11 09:08:00.11309 2024-09-11 09:08:00.113095 mef 7474 R rec b68b6f50-2a8f-4b8d-859a-8da82ca51e5b +2024-09-11 09:08:00.169994 2024-09-11 09:08:00.169999 mef 7475 R rec 005a6088-f633-4fe0-80b7-04c2eec9cb31 +2024-09-11 09:08:00.232075 2024-09-11 09:08:00.232081 mef 7476 R rec 216c756d-fa62-4951-a2e8-541080c4436b +2024-09-11 09:08:00.28296 2024-09-11 09:08:00.282965 mef 7477 R rec 8c5281eb-198b-4aab-a9b8-5323b8ff6a65 +2024-09-11 09:08:00.337284 2024-09-11 09:08:00.33729 mef 7478 R rec ebada200-fb68-4164-adc3-75e2cb678366 +2024-09-11 09:08:00.396849 2024-09-11 09:08:00.396854 mef 7479 R rec aaac0879-0255-409e-be10-f221db5b4543 +2024-09-11 09:08:00.468506 2024-09-11 09:08:00.468512 mef 7480 R rec 04da0012-eec9-4977-824d-b3d8cbcf8af1 +2024-09-11 09:08:00.523442 2024-09-11 09:08:00.523446 mef 7481 R rec 8ac237a4-6de4-4384-9eb7-bbeea30f439e +2024-09-11 09:08:00.578039 2024-09-11 09:08:00.578044 mef 7482 R rec bfc25d5b-9ce0-4210-9085-87a167f7f203 +2024-09-11 09:08:00.638146 2024-09-11 09:08:00.638151 mef 7483 R rec 6883000f-e615-4e0c-8e8a-54e061ef3313 +2024-09-11 09:08:00.698542 2024-09-11 09:08:00.698548 mef 7484 R rec 202e9304-03fb-44b3-bf47-3aa4ef7c6e40 +2024-09-11 09:08:00.767542 2024-09-11 09:08:00.767547 mef 7485 R rec 96630cb3-0b4a-44d4-9bd2-536577b230a8 +2024-09-11 09:08:00.821795 2024-09-11 09:08:00.821799 mef 7486 R rec 4180f120-2545-4ad7-89b3-3b09bfbd0efd +2024-09-11 09:08:00.936049 2024-09-11 09:08:00.936053 mef 7487 R rec 2c7eaa32-05f6-4ccc-abdc-72ede9fb02f8 +2024-09-11 09:08:00.991823 2024-09-11 09:08:00.991827 mef 7488 R rec 859913a1-6a99-4c2c-abc1-386209cc10c8 +2024-09-11 09:08:01.052627 2024-09-11 09:08:01.052632 mef 7489 R rec c695df60-44c8-4cef-bf4e-0ddb39f1bf13 +2024-09-11 09:08:01.115215 2024-09-11 09:08:01.11522 mef 7490 R rec 82746e7e-cab0-4bd7-8cf2-a196b4b1ab8d +2024-09-11 09:08:01.170359 2024-09-11 09:08:01.170364 mef 7491 R rec 5011a399-2282-42e2-8b3c-0eb7f07eaa30 +2024-09-11 09:08:01.286317 2024-09-11 09:08:01.286325 mef 7492 R rec 3329b24d-e02e-4a7f-b59b-a8f27c8eca82 +2024-09-11 09:08:01.338118 2024-09-11 09:08:01.338123 mef 7493 R rec 02911907-fa35-4dd2-986b-3514082aace8 +2024-09-11 09:08:01.393589 2024-09-11 09:08:01.393595 mef 7494 R rec b6b46af0-9d94-40cd-9ad7-ada4d204c9f0 +2024-09-11 09:08:01.456007 2024-09-11 09:08:01.456012 mef 7495 R rec 4945dec3-36b8-4562-8d18-484f44453d38 +2024-09-11 09:08:01.509532 2024-09-11 09:08:01.509537 mef 7496 R rec d60d7347-8b3f-4213-aec9-23ca69aceb3a +2024-09-11 09:08:01.565243 2024-09-11 09:08:01.565248 mef 7497 R rec a280bc10-3ce0-40fb-9c36-bdac1258cf60 +2024-09-11 09:08:01.623641 2024-09-11 09:08:01.623646 mef 7498 R rec d91cdf96-2db4-4ac8-9b36-3807f8b3d255 +2024-09-11 09:08:01.684492 2024-09-11 09:08:01.684498 mef 7499 R rec 5b74d343-d1a1-4760-88a5-c7cc40614fcb +2024-09-11 09:08:01.833552 2024-09-11 09:08:01.833556 mef 7500 R rec 3d1a4d59-7873-4420-b930-18d49a7cc711 +2024-09-11 09:08:01.890213 2024-09-11 09:08:01.890218 mef 7501 R rec 53483552-afee-4279-bdea-4e1405862573 +2024-09-11 09:08:01.945323 2024-09-11 09:08:01.945329 mef 7502 R rec 79a82de9-c65a-4cc0-848e-bf9a72fb39b8 +2024-09-11 09:08:01.99912 2024-09-11 09:08:01.999125 mef 7503 R rec a802ffa2-fcfc-40fe-a4d3-4f981b0d6a32 +2024-09-11 09:08:02.175302 2024-09-11 09:08:02.175306 mef 7504 R rec 9126eb03-78df-42d6-9d94-2e0ef4acd2a8 +2024-09-11 09:08:02.22892 2024-09-11 09:08:02.228925 mef 7505 R rec 14a3b309-334b-4314-8991-e6ce8cee2c4f +2024-09-11 09:08:02.280463 2024-09-11 09:08:02.280468 mef 7506 R rec c77eedce-f8cd-484a-9b09-665be0f5956b +2024-09-11 09:08:02.338564 2024-09-11 09:08:02.338569 mef 7507 R rec a1039998-3fb5-41ed-9c27-43755fa15cc2 +2024-09-11 09:08:02.391354 2024-09-11 09:08:02.391359 mef 7508 R rec 0bd847b1-4ad4-46c2-8e04-54c2a44bbc62 +2024-09-11 09:08:02.442606 2024-09-11 09:08:02.442612 mef 7509 R rec 37b30450-1e0d-478d-8527-6484df682126 +2024-09-11 09:08:02.511829 2024-09-11 09:08:02.511835 mef 7510 R rec 4e77ef69-44d6-47a5-88fc-70defb75b59a +2024-09-11 09:08:02.568655 2024-09-11 09:08:02.568659 mef 7511 R rec 739c2434-1771-4214-8cd3-1fc6f2bcb7a3 +2024-09-11 09:08:02.622877 2024-09-11 09:08:02.622882 mef 7512 R rec 18c19fba-0935-458d-8574-2c06532de679 +2024-09-11 09:08:02.67708 2024-09-11 09:08:02.677085 mef 7513 R rec 66f509e0-ae52-4930-8f1a-f4634470a2fc +2024-09-11 09:08:02.733962 2024-09-11 09:08:02.733967 mef 7514 R rec 55ef8766-9a48-47d6-9cb7-1647460c3eda +2024-09-11 09:08:02.795766 2024-09-11 09:08:02.795771 mef 7515 R rec b1f88f51-6539-4229-9be3-9809bd35e79f +2024-09-11 09:08:02.847886 2024-09-11 09:08:02.84789 mef 7516 R rec 814a7d72-6c0c-4edd-949b-2f15226f7c2a +2024-09-11 09:08:02.903337 2024-09-11 09:08:02.903342 mef 7517 R rec 2454b5c8-9135-4ef4-b8f7-21b97aefe535 +2024-09-11 09:08:02.957792 2024-09-11 09:08:02.957797 mef 7518 R rec c7caf972-f665-4aca-9605-a6ce07262dc1 +2024-09-11 09:08:03.216813 2024-09-11 09:08:03.216818 mef 7519 R rec 9fcfd9d8-40fd-44ad-83c2-c9531fdc902d +2024-09-11 09:08:03.341025 2024-09-11 09:08:03.341031 mef 7520 R rec ed204385-90ef-4973-9bd2-9dbd8a69515c +2024-09-11 09:08:03.399131 2024-09-11 09:08:03.399136 mef 7521 R rec c80372ca-1a94-48ea-8c58-647bd64d37a4 +2024-09-11 09:08:03.453342 2024-09-11 09:08:03.45335 mef 7522 R rec 03dac4a3-9bd2-43c5-9d56-a469b7d94987 +2024-09-11 09:08:05.685458 2024-09-11 09:08:05.685464 comef 7523 R rec 60c90fa0-ca00-4129-997a-8f80285a6a41 +2024-09-11 09:08:05.75557 2024-09-11 09:08:05.755575 comef 7524 R rec 68fb8bb7-cd92-47fc-b468-a1aa511b72ec +2024-09-11 09:08:05.80942 2024-09-11 09:08:05.809426 comef 7525 R rec 2bb8934f-4f04-48fa-9c55-12e3ee9a2ba2 +2024-09-11 09:08:05.864032 2024-09-11 09:08:05.864039 comef 7526 R rec c5a8076f-ab0a-4886-b6c5-26987ddf5847 +2024-09-11 09:08:05.917281 2024-09-11 09:08:05.917288 comef 7527 R rec 1a1c7389-7604-49c1-9632-f54f8b37d975 +2024-09-11 09:08:05.969197 2024-09-11 09:08:05.969202 comef 7528 R rec 9d35fa7d-9043-4498-817c-a8715ff2b510 +2024-09-11 09:08:06.023183 2024-09-11 09:08:06.023189 comef 7529 R rec 262d8153-6369-44b6-838e-f211feb40858 +2024-09-11 09:08:06.079449 2024-09-11 09:08:06.079455 comef 7530 R rec 54f4e316-5154-475a-a162-b5233b40fcd3 +2024-09-11 09:08:06.131353 2024-09-11 09:08:06.131359 comef 7531 R rec 55044a1d-4d80-43b3-8e53-a85177f88b10 +2024-09-11 09:08:06.181047 2024-09-11 09:08:06.181052 comef 7532 R rec a40f3726-ce43-4f09-b219-8883e03fdb4d +2024-09-11 09:08:06.226482 2024-09-11 09:08:06.226487 comef 7533 R rec e07423fa-381a-47d5-ab1c-8767a416305e +2024-09-11 09:08:06.275217 2024-09-11 09:08:06.275223 comef 7534 R rec 662f134b-8680-4463-8775-7b8bfa3804b2 +2024-09-11 09:08:06.323594 2024-09-11 09:08:06.323599 comef 7535 R rec efe35257-bdb6-4fb2-91dd-0853e70addd5 +2024-09-11 09:08:06.37075 2024-09-11 09:08:06.370756 comef 7536 R rec aeaaebe0-d823-495e-aefd-a5c56c960c5b +2024-09-11 09:08:06.4217 2024-09-11 09:08:06.421705 comef 7537 R rec 1da1d468-42eb-4808-8404-d473fd89b285 +2024-09-11 09:08:06.470726 2024-09-11 09:08:06.470732 comef 7538 R rec 5ede6751-8cf7-489d-beac-91c5bd69f64a +2024-09-11 09:08:06.523847 2024-09-11 09:08:06.523853 comef 7539 R rec 15019c5f-cbe4-44c3-bdc9-f68c658a9dd6 +2024-09-11 09:08:06.574209 2024-09-11 09:08:06.574215 comef 7540 R rec 767ac92b-9678-4510-a74b-1f56ce5e53e7 +2024-09-11 09:08:06.635465 2024-09-11 09:08:06.635471 comef 7541 R rec 390e8b08-138e-4109-b8a4-e321de6de7a7 +2024-09-11 09:08:06.687248 2024-09-11 09:08:06.687255 comef 7542 R rec f0582a61-9b41-4282-8507-be1434980f0c +2024-09-11 09:08:08.580881 2024-09-11 09:08:08.580886 comef 7543 R rec e7bf15e8-3711-4e71-a37b-c08c9f70837c +2024-09-11 09:08:08.65503 2024-09-11 09:08:08.655035 comef 7544 R rec 58ed918e-ffab-4769-8e7e-066778bc47db +2024-09-11 09:08:08.726544 2024-09-11 09:08:08.72655 comef 7545 R rec a6f27df7-0d4b-48c8-8dec-56ed6d708192 +2024-09-11 09:08:08.797878 2024-09-11 09:08:08.797884 comef 7546 R rec eb02a2cc-5505-4965-b01d-259d1638ad5e +2024-09-11 09:08:08.852432 2024-09-11 09:08:08.852439 comef 7547 R rec 597bcb16-4945-417a-9d22-6b48bf7dc7e3 +2024-09-11 09:08:08.907298 2024-09-11 09:08:08.907303 comef 7548 R rec 8057f0af-3949-4a84-b6c1-87ec889ef846 +2024-09-11 09:08:08.966783 2024-09-11 09:08:08.966788 comef 7549 R rec 258999cb-9084-407d-98d9-582adc655b1c +2024-09-11 09:08:09.022443 2024-09-11 09:08:09.022448 comef 7550 R rec 8126f6ed-ea25-4de6-b7ae-542eb1c262d5 +2024-09-11 09:08:09.075759 2024-09-11 09:08:09.075764 comef 7551 R rec bde06283-3b75-4fbd-a159-7a9c1136fadb +2024-09-11 09:08:09.129994 2024-09-11 09:08:09.129999 comef 7552 R rec c0994b6f-f11e-4fd7-9e22-061a9af2249b +2024-09-11 09:08:09.186523 2024-09-11 09:08:09.186528 comef 7553 R rec fa8df2d5-b120-49da-91ec-71871a12aa3b +2024-09-11 09:08:09.239793 2024-09-11 09:08:09.239797 comef 7554 R rec 8d8aa11e-2388-49a5-a121-276c4f3cd52e +2024-09-11 09:08:09.296286 2024-09-11 09:08:09.296291 comef 7555 R rec 240a40a5-e589-4505-be9c-ec89cf5224d5 +2024-09-11 09:08:09.346904 2024-09-11 09:08:09.346909 comef 7556 R rec 15c2fac6-82e3-411f-9aa1-481b1ece8d88 +2024-09-11 09:08:09.40353 2024-09-11 09:08:09.403534 comef 7557 R rec e01ad29a-9181-4189-b7e4-9f04478c08cc +2024-09-11 09:08:09.457662 2024-09-11 09:08:09.457668 comef 7558 R rec 99c6ab62-477f-4f65-8154-b928d7b1b774 +2024-09-11 09:08:09.552772 2024-09-11 09:08:09.552778 comef 7559 R rec c890f4a5-7a0a-423d-8b75-3c78f7a0f07f +2024-09-11 09:08:09.607261 2024-09-11 09:08:09.607266 comef 7560 R rec 47fb59bb-000e-46ff-b42e-4c2dd15a5ed9 +2024-09-11 09:08:09.659392 2024-09-11 09:08:09.659398 comef 7561 R rec 8e32a2cd-7bb1-461a-9300-0fb5195fbbe6 +2024-09-11 09:08:09.715808 2024-09-11 09:08:09.715812 comef 7562 R rec 64e5dba3-ca7a-43d8-b1d9-ca0236941f16 +2024-09-11 09:08:09.768551 2024-09-11 09:08:09.768556 comef 7563 R rec ebfbcf18-bbe8-424c-b8c4-eaf8f23fee2d +2024-09-11 09:08:09.827653 2024-09-11 09:08:09.827658 comef 7564 R rec eac29314-94e5-4a28-8a52-f3aeb71a1eee +2024-09-11 09:08:09.882356 2024-09-11 09:08:09.882361 comef 7565 R rec 4d9c1208-fa20-4aeb-946d-61a2be017eab +2024-09-11 09:08:09.938242 2024-09-11 09:08:09.938247 comef 7566 R rec 84aebe81-0b3c-45d1-a551-afb987e9ae20 +2024-09-11 09:08:09.995204 2024-09-11 09:08:09.995209 comef 7567 R rec 83e5481b-9156-4534-aa1b-3a906620ccc3 +2024-09-11 09:08:10.052687 2024-09-11 09:08:10.052698 comef 7568 R rec 9a8767a0-acf1-46c0-9824-511b64c63264 +2024-09-11 09:08:10.114158 2024-09-11 09:08:10.114164 comef 7569 R rec 8c6f4f60-d25a-4832-87bf-56913bef6bb6 +2024-09-11 09:08:10.165911 2024-09-11 09:08:10.165916 comef 7570 R rec d1d86296-a758-4d97-b5dc-205b7761e2fd +2024-09-11 09:08:10.223189 2024-09-11 09:08:10.223193 comef 7571 R rec fc8bd79a-586d-435b-9443-b3ac47408b98 +2024-09-11 09:08:10.276966 2024-09-11 09:08:10.276971 comef 7572 R rec 93b1ac02-afab-46d3-b4f1-0473046afaa8 +2024-09-11 09:08:10.332107 2024-09-11 09:08:10.332111 comef 7573 R rec 075e3eee-bcdc-46e1-b711-de63677bd701 +2024-09-11 09:08:10.391086 2024-09-11 09:08:10.391092 comef 7574 R rec d940e038-b680-455d-9960-1d8e58c3711e +2024-09-11 09:08:10.448455 2024-09-11 09:08:10.44846 comef 7575 R rec 130a9b46-95a7-4636-af48-dbd6e8a5b826 +2024-09-11 09:08:10.505368 2024-09-11 09:08:10.505373 comef 7576 R rec 3cb85bf3-d73e-47c4-9649-6a10d335b7ce +2024-09-11 09:08:10.561421 2024-09-11 09:08:10.561426 comef 7577 R rec 9776e847-a72e-44db-a9fb-96ca51ef8ba0 +2024-09-11 09:08:10.631082 2024-09-11 09:08:10.631087 comef 7578 R rec 23f82ba9-d93f-4e4e-8ea8-87aba09f4ad2 +2024-09-11 09:08:10.684793 2024-09-11 09:08:10.684799 comef 7579 R rec 55549e85-551d-4657-b329-325da201e516 +2024-09-11 09:08:10.738419 2024-09-11 09:08:10.738424 comef 7580 R rec 01900a18-84cd-4cef-99a2-a422d4f46a04 +2024-09-11 09:08:10.798168 2024-09-11 09:08:10.798173 comef 7581 R rec 04d366f9-da10-43d5-b984-45f643320547 +2024-09-11 09:08:10.852433 2024-09-11 09:08:10.852437 comef 7582 R rec a0c79fe0-af04-44f6-8502-fa1ccbfb3c16 +2024-09-11 09:08:10.908426 2024-09-11 09:08:10.908431 comef 7583 R rec c10e390b-1cf3-4eb3-b8b7-122acf619aae +2024-09-11 09:08:10.961976 2024-09-11 09:08:10.961982 comef 7584 R rec 03e1002f-a359-444a-8bf2-018847c8bd34 +2024-09-11 09:08:11.014227 2024-09-11 09:08:11.014233 comef 7585 R rec 9cede3f8-31af-48df-9d18-1a08178c054b +2024-09-11 09:08:11.070589 2024-09-11 09:08:11.070594 comef 7586 R rec f77a92ca-1332-49a7-8d10-ca98ea017690 +2024-09-11 09:08:11.130773 2024-09-11 09:08:11.130779 comef 7587 R rec 9eeb170a-6cec-4fe5-bed7-8251e5dd28a7 +2024-09-11 09:08:11.187832 2024-09-11 09:08:11.187837 comef 7588 R rec 41820b0b-4e34-4be6-9840-47d8d360b8a9 +2024-09-11 09:08:11.240299 2024-09-11 09:08:11.240303 comef 7589 R rec ae89feb1-bf69-40b3-9246-49399fe2a6bd +2024-09-11 09:08:11.298179 2024-09-11 09:08:11.298184 comef 7590 R rec e272de1e-337a-4b7e-b163-3ad5be70640b +2024-09-11 09:08:11.355251 2024-09-11 09:08:11.355256 comef 7591 R rec d035732b-ead7-4449-9a5b-dfd3ab0df4bf +2024-09-11 09:08:11.415876 2024-09-11 09:08:11.415881 comef 7592 R rec e9eb0805-0b1b-443e-b8e2-f8ee9145d72f +2024-09-11 09:08:11.472566 2024-09-11 09:08:11.472571 comef 7593 R rec 0ee85ce4-d33b-4d64-a692-9035545d1895 +2024-09-11 09:08:11.531215 2024-09-11 09:08:11.53122 comef 7594 R rec 822f421b-2b42-4315-b416-5433a729692a +2024-09-11 09:08:11.589804 2024-09-11 09:08:11.589808 comef 7595 R rec a159e475-45a5-4658-8fd9-89ee51d62055 +2024-09-11 09:08:11.660089 2024-09-11 09:08:11.660094 comef 7596 R rec 8ebf73f3-479f-4484-bddc-7de61ea0e26a +2024-09-11 09:08:11.717148 2024-09-11 09:08:11.717154 comef 7597 R rec 7952685c-ebc1-47e2-b96d-d7d43b8dea73 +2024-09-11 09:08:11.774687 2024-09-11 09:08:11.774693 comef 7598 R rec d003c195-0055-4d43-acbb-9af5c1ef6e2b +2024-09-11 09:08:11.836924 2024-09-11 09:08:11.836929 comef 7599 R rec 0bee8006-4de5-4601-871c-2fc0cf5d0a7a +2024-09-11 09:08:11.89149 2024-09-11 09:08:11.891495 comef 7600 R rec cb424196-2003-465d-b711-ea44a741adc2 +2024-09-11 09:08:11.942354 2024-09-11 09:08:11.942384 comef 7601 R rec d697e602-97bd-48c3-9f8e-ca9b14e663b4 +2024-09-11 09:08:12.000593 2024-09-11 09:08:12.000599 comef 7602 R rec 0b869c3c-3217-41bc-84a8-010f951fa489 +2024-09-11 09:08:12.063659 2024-09-11 09:08:12.063664 comef 7603 R rec 0ce374e5-a058-48c9-8355-3d647321b918 +2024-09-11 09:08:12.119486 2024-09-11 09:08:12.119491 comef 7604 R rec 5d2263ee-063b-445b-92f7-8498b5088bea +2024-09-11 09:08:12.17254 2024-09-11 09:08:12.172544 comef 7605 R rec 697c5072-deb2-4e56-a410-7203f64f3403 +2024-09-11 09:08:12.231619 2024-09-11 09:08:12.231625 comef 7606 R rec bb36c15c-69c6-4eac-bbf2-334337bc8f0b +2024-09-11 09:08:12.294716 2024-09-11 09:08:12.294721 comef 7607 R rec aefd2e24-bab0-4f96-9cb4-73b9e0908c25 +2024-09-11 09:08:12.351401 2024-09-11 09:08:12.351407 comef 7608 R rec 8ee936b4-4833-43fc-8efa-c52dd1b3e56a +2024-09-11 09:08:12.420217 2024-09-11 09:08:12.420223 comef 7609 R rec 9930cba9-a72f-440b-8652-113fe083bf0a +2024-09-11 09:08:12.503796 2024-09-11 09:08:12.5038 comef 7610 R rec 15c6a287-cee8-48d3-8f40-cbc144db557d +2024-09-11 09:08:12.563235 2024-09-11 09:08:12.563241 comef 7611 R rec 3561cbc0-affb-4f73-b17d-632ff771b2d2 +2024-09-11 09:08:12.623386 2024-09-11 09:08:12.623391 comef 7612 R rec 97879e2d-3348-4f78-a0a6-81593bb83feb +2024-09-11 09:08:12.679566 2024-09-11 09:08:12.679572 comef 7613 R rec 38e54d2b-24b4-42f8-8f55-30d08dee2d99 +2024-09-11 09:08:12.73339 2024-09-11 09:08:12.733395 comef 7614 R rec ffb0d518-8384-40df-a926-30b06c54e4a3 +2024-09-11 09:08:12.788533 2024-09-11 09:08:12.788538 comef 7615 R rec 72b7f346-9383-4f19-80dc-48a72ab038a5 +2024-09-11 09:08:12.842851 2024-09-11 09:08:12.842856 comef 7616 R rec eb03e5d4-2ca0-4e7c-a3a4-06baca5f406b +2024-09-11 09:08:12.899099 2024-09-11 09:08:12.899104 comef 7617 R rec 324a302e-8261-43a1-995d-972cc3de6bf7 +2024-09-11 09:08:12.949784 2024-09-11 09:08:12.949788 comef 7618 R rec bd62bfb4-dfa9-44f6-988c-e6bf301a57f6 +2024-09-11 09:08:13.013171 2024-09-11 09:08:13.013176 comef 7619 R rec dd58c0b2-ab14-409f-a688-c8fa4e37975a +2024-09-11 09:08:13.072902 2024-09-11 09:08:13.072907 comef 7620 R rec e8887791-0c61-4f6e-bf2b-037f9f905f11 +2024-09-11 09:08:13.130926 2024-09-11 09:08:13.130932 comef 7621 R rec 88fa9cf1-507d-4b67-8f7a-ddcd6bf7c5dc +2024-09-11 09:08:13.18985 2024-09-11 09:08:13.189855 comef 7622 R rec af8f26f9-ff11-4614-b366-ce84e7670335 +2024-09-11 09:08:13.253077 2024-09-11 09:08:13.253083 comef 7623 R rec 2897e530-09b3-417b-b33a-e091bf32f058 +2024-09-11 09:08:13.307384 2024-09-11 09:08:13.30739 comef 7624 R rec 544b37ad-8908-43ad-a542-b6b707b9261f +2024-09-11 09:08:13.357513 2024-09-11 09:08:13.357518 comef 7625 R rec e242373d-b9ff-4bdd-9f6b-fbb49927c441 +2024-09-11 09:08:13.422222 2024-09-11 09:08:13.422228 comef 7626 R rec 3fa66f91-427e-49d2-811e-efdb57c8fe84 +2024-09-11 09:08:13.486717 2024-09-11 09:08:13.486725 comef 7627 R rec 8c5554d9-3afe-4aaa-b4db-1b0d6f2f05e5 +2024-09-11 09:08:13.542287 2024-09-11 09:08:13.542292 comef 7628 R rec 0a20f7ae-f1c6-41ce-b264-27df8379b081 +2024-09-11 09:08:13.598028 2024-09-11 09:08:13.598034 comef 7629 R rec 46f6c733-e5af-4533-adda-3d34006136a7 +2024-09-11 09:08:13.655857 2024-09-11 09:08:13.655862 comef 7630 R rec d60f395e-0b32-4e02-bb56-c38f5527fc59 +2024-09-11 09:08:13.719111 2024-09-11 09:08:13.719117 comef 7631 R rec 30752f86-9a3e-42ae-867b-fde87efaedc0 +2024-09-11 09:08:13.779172 2024-09-11 09:08:13.779177 comef 7632 R rec e189639a-cf24-4a36-88d7-7a3246bc12bf +2024-09-11 09:08:13.834058 2024-09-11 09:08:13.834063 comef 7633 R rec 0e131dff-8981-4a4c-bb11-d2aa4e41fa8c +2024-09-11 09:08:13.897226 2024-09-11 09:08:13.897232 comef 7634 R rec 239f9920-6533-462e-a8e7-873dffc9579a +2024-09-11 09:08:13.956823 2024-09-11 09:08:13.956828 comef 7635 R rec be159dd6-d42e-42ad-90ae-991180dc8c25 +2024-09-11 09:08:14.009606 2024-09-11 09:08:14.009612 comef 7636 R rec 313aabb6-d1b3-46db-ae46-17d421d118f0 +2024-09-11 09:08:14.06675 2024-09-11 09:08:14.066754 comef 7637 R rec 22a6cd1e-33fa-469e-80c1-8ebbf2147009 +2024-09-11 09:08:14.121138 2024-09-11 09:08:14.121145 comef 7638 R rec 6413247f-274f-4846-b6c2-0e4018715229 +2024-09-11 09:08:14.182158 2024-09-11 09:08:14.182163 comef 7639 R rec 3e6faa32-b9a0-477c-a0e5-93acfd9fa5b5 +2024-09-11 09:08:14.237334 2024-09-11 09:08:14.237339 comef 7640 R rec bb471ea0-d660-4661-9c01-03ea49982735 +2024-09-11 09:08:14.307228 2024-09-11 09:08:14.307233 comef 7641 R rec ad258b45-e832-45f5-9ff9-30b4d375b10e +2024-09-11 09:08:14.371424 2024-09-11 09:08:14.371429 comef 7642 R rec 49742550-7d07-41ef-a2fe-9b4469c58d59 +2024-09-11 09:08:14.428706 2024-09-11 09:08:14.428711 comef 7643 R rec be0a839f-46a6-47bd-9e53-ded4c7bb9ffd +2024-09-11 09:08:14.483837 2024-09-11 09:08:14.483844 comef 7644 R rec 4586e733-9506-45d2-b283-4d3a87d8886c +2024-09-11 09:08:14.537646 2024-09-11 09:08:14.537651 comef 7645 R rec 35288f86-bd34-45ed-81e6-595e05986dce +2024-09-11 09:08:14.602094 2024-09-11 09:08:14.602099 comef 7646 R rec 397e69c9-7ad9-4e0b-aaf1-a66392bc91a5 +2024-09-11 09:08:14.667171 2024-09-11 09:08:14.667176 comef 7647 R rec 1e3b0848-77c9-4cd0-96b2-6b78983b498b +2024-09-11 09:08:14.730814 2024-09-11 09:08:14.73082 comef 7648 R rec 96aadc67-d725-4c29-bfad-5af96fb2a0df +2024-09-11 09:08:14.791046 2024-09-11 09:08:14.791051 comef 7649 R rec aeaba265-1bcb-42d8-ac51-3edb22c6b949 +2024-09-11 09:08:14.846533 2024-09-11 09:08:14.846539 comef 7650 R rec cd120802-be83-45f6-b030-8e1aa2113d2d +2024-09-11 09:08:14.900744 2024-09-11 09:08:14.900749 comef 7651 R rec cd24de49-cb6e-4c08-9cfd-9e6129740272 +2024-09-11 09:08:14.955819 2024-09-11 09:08:14.955824 comef 7652 R rec 0ffd6d84-f92e-48d7-b8ed-b8a1725d3f33 +2024-09-11 09:08:15.012727 2024-09-11 09:08:15.012732 comef 7653 R rec ed5a02d2-1cd2-49f4-9f89-3bccf88014cf +2024-09-11 09:08:15.070072 2024-09-11 09:08:15.070078 comef 7654 R rec 9dc5182d-ef94-47cf-a4e8-3b38b7516822 +2024-09-11 09:08:15.129043 2024-09-11 09:08:15.129049 comef 7655 R rec b32a24d0-eb2a-47f5-8904-feefeffa2cb4 +2024-09-11 09:08:15.190107 2024-09-11 09:08:15.190111 comef 7656 R rec 4974cc23-f10b-481f-b7f4-ae9a4cb61371 +2024-09-11 09:08:15.258584 2024-09-11 09:08:15.258591 comef 7657 R rec c944de77-f3e6-47f1-a553-51dbb182b725 +2024-09-11 09:08:15.318878 2024-09-11 09:08:15.318883 comef 7658 R rec fc44a013-6171-4758-8896-051508274fb2 +2024-09-11 09:08:15.373543 2024-09-11 09:08:15.373548 comef 7659 R rec 75372b95-0069-4e04-9517-c326a7990a26 +2024-09-11 09:08:15.431487 2024-09-11 09:08:15.431493 comef 7660 R rec 493eba84-4a83-437d-a379-d95ffdc434c0 +2024-09-11 09:08:15.487975 2024-09-11 09:08:15.48798 comef 7661 R rec 7b998a78-52c0-4dc4-a75f-bf5246843a6f +2024-09-11 09:08:15.548134 2024-09-11 09:08:15.548139 comef 7662 R rec 01f56ea0-5cbc-40f8-abe6-0b57d4ee4c82 +2024-09-11 09:08:15.611104 2024-09-11 09:08:15.611109 comef 7663 R rec e08e6252-98bc-4b33-99dc-899dbd1bf766 +2024-09-11 09:08:15.670323 2024-09-11 09:08:15.670328 comef 7664 R rec b7c8d154-9a28-42a4-ac09-e00f558cd151 +2024-09-11 09:08:15.722299 2024-09-11 09:08:15.722304 comef 7665 R rec f99e07e4-602b-48a0-b123-141b34c89342 +2024-09-11 09:08:15.780133 2024-09-11 09:08:15.780138 comef 7666 R rec 01d81717-b7fc-4e3b-974c-0713b79337bc +2024-09-11 09:08:15.840699 2024-09-11 09:08:15.840704 comef 7667 R rec aedd1d7b-54f5-4248-9f69-ef590d76c207 +2024-09-11 09:08:15.896803 2024-09-11 09:08:15.896808 comef 7668 R rec 051c1942-2628-4984-94c5-440d70865921 +2024-09-11 09:08:15.955274 2024-09-11 09:08:15.955279 comef 7669 R rec c155c592-9ee0-471e-b18f-69811f81e25b +2024-09-11 09:08:16.008897 2024-09-11 09:08:16.008902 comef 7670 R rec eec43f90-1e5f-4814-b69d-15357458f20f +2024-09-11 09:08:16.076418 2024-09-11 09:08:16.076423 comef 7671 R rec d842b170-e4b9-4a1b-b199-d9d598bc4951 +2024-09-11 09:08:16.144362 2024-09-11 09:08:16.144366 comef 7672 R rec 6f33ebf2-9940-49e2-b89d-66d4a6ac1a1e +2024-09-11 09:08:16.210662 2024-09-11 09:08:16.210667 comef 7673 R rec 2c3116d1-b5a7-471a-bb49-56f81b638e69 +2024-09-11 09:08:16.27279 2024-09-11 09:08:16.272794 comef 7674 R rec 1048773c-3c69-4dd2-8306-5c26d2b6a4b6 +2024-09-11 09:08:16.329425 2024-09-11 09:08:16.32943 comef 7675 R rec cd017d50-e577-4aeb-81da-1064b92fa0e5 +2024-09-11 09:08:16.383798 2024-09-11 09:08:16.383802 comef 7676 R rec e95b10ec-6b84-490a-88e3-2c34c98101fa +2024-09-11 09:08:16.447508 2024-09-11 09:08:16.447514 comef 7677 R rec 4ca36ea5-8050-4fc5-b602-e1fcb8f747da +2024-09-11 09:08:16.511759 2024-09-11 09:08:16.511764 comef 7678 R rec 468a65cd-43f9-4eeb-8460-9ea16fb1087f +2024-09-11 09:08:16.567339 2024-09-11 09:08:16.567344 comef 7679 R rec a691fd40-8fa2-4e17-a19f-6d894695bef3 +2024-09-11 09:08:16.629495 2024-09-11 09:08:16.629501 comef 7680 R rec a4c5987c-e249-421e-aef6-f051cb57d7a5 +2024-09-11 09:08:16.684066 2024-09-11 09:08:16.684071 comef 7681 R rec f4ee349f-70da-489b-8af9-7cdb10d01097 +2024-09-11 09:08:16.743331 2024-09-11 09:08:16.743336 comef 7682 R rec 74adbcf9-94db-450b-8a2e-446b897d4dc5 +2024-09-11 09:08:16.804045 2024-09-11 09:08:16.804049 comef 7683 R rec 886e6836-3699-4061-b863-77c908c06e9a +2024-09-11 09:08:16.862561 2024-09-11 09:08:16.862566 comef 7684 R rec 879e1a8b-be35-43d8-b5c6-a6e6f7d58886 +2024-09-11 09:08:16.918634 2024-09-11 09:08:16.918639 comef 7685 R rec a6e42643-53e7-433f-9e22-9b0cc072d5fe +2024-09-11 09:08:16.973151 2024-09-11 09:08:16.973157 comef 7686 R rec 20e68db4-ab1e-48db-8cd9-5448462584e5 +2024-09-11 09:08:17.035662 2024-09-11 09:08:17.035668 comef 7687 R rec d16e8f66-4685-48cb-81f4-1c39454f3dde +2024-09-11 09:08:17.092908 2024-09-11 09:08:17.092913 comef 7688 R rec 483aaf74-38a9-4b55-a188-0eb38c16be35 +2024-09-11 09:08:17.152784 2024-09-11 09:08:17.152794 comef 7689 R rec 9dc33eeb-b3c1-46c7-a863-516d1a4b64ef +2024-09-11 09:08:17.211637 2024-09-11 09:08:17.211643 comef 7690 R rec 38203505-2fec-407b-a5cc-9d6b042d203f +2024-09-11 09:08:17.266098 2024-09-11 09:08:17.266103 comef 7691 R rec 382b38d8-7313-4044-be3d-175e6b2effc6 +2024-09-11 09:08:17.32428 2024-09-11 09:08:17.324286 comef 7692 R rec 67854d94-4071-4731-bb21-d4a064556aaf +2024-09-11 09:08:17.384385 2024-09-11 09:08:17.38439 comef 7693 R rec f7bec825-d51b-41f3-9a72-6ce076046e21 +2024-09-11 09:08:17.440391 2024-09-11 09:08:17.440396 comef 7694 R rec 3c8eeb51-d4ec-4926-9d90-9b441ea3ac48 +2024-09-11 09:08:17.49698 2024-09-11 09:08:17.496986 comef 7695 R rec 541f89b4-f178-4eac-b1a0-f6caf306bb16 +2024-09-11 09:08:17.564411 2024-09-11 09:08:17.564418 comef 7696 R rec 6543185e-37bf-4d4d-874f-6e374f06ac46 +2024-09-11 09:08:17.61964 2024-09-11 09:08:17.619644 comef 7697 R rec d5989516-8133-4cdd-b741-99dcfbe0c65e +2024-09-11 09:08:17.67661 2024-09-11 09:08:17.676615 comef 7698 R rec 8a5d3924-bda2-4036-a651-54216f9d667c +2024-09-11 09:08:17.733003 2024-09-11 09:08:17.733007 comef 7699 R rec 6b20c1d8-b06c-4dce-8c4d-cdf90737c3e5 +2024-09-11 09:08:17.790647 2024-09-11 09:08:17.790651 comef 7700 R rec 20c15b8c-e2ff-47af-ace3-521f4e531a48 +2024-09-11 09:08:17.855543 2024-09-11 09:08:17.855548 comef 7701 R rec 953499f6-41b7-40e1-9f07-156f239a0930 +2024-09-11 09:08:17.917725 2024-09-11 09:08:17.917731 comef 7702 R rec 441773f0-5df3-4576-b124-842bdc6c67c3 +2024-09-11 09:08:17.974137 2024-09-11 09:08:17.974142 comef 7703 R rec 852cd0d9-8507-43f6-8a72-074921b6ae9e +2024-09-11 09:08:18.036822 2024-09-11 09:08:18.036826 comef 7704 R rec d4422d84-e0b5-447e-9332-2924efff6b2b +2024-09-11 09:08:18.095888 2024-09-11 09:08:18.095892 comef 7705 R rec d860000d-8d75-4863-90ce-5ccbd37a39b3 +2024-09-11 09:08:18.157161 2024-09-11 09:08:18.157167 comef 7706 R rec ecd6f523-4df5-4854-876e-4c519b81daf9 +2024-09-11 09:08:18.22192 2024-09-11 09:08:18.221927 comef 7707 R rec 629381fa-c543-477e-b146-d0269ccadbd5 +2024-09-11 09:08:18.282874 2024-09-11 09:08:18.28288 comef 7708 R rec 74fea9b4-a9f7-4bdb-ab34-a97997793c2f +2024-09-11 09:08:18.35071 2024-09-11 09:08:18.350716 comef 7709 R rec bea3a6b5-6bdd-4935-a395-b68c6176d32a +2024-09-11 09:08:18.421064 2024-09-11 09:08:18.421069 comef 7710 R rec 7024bb61-a121-422e-bbae-45a83f7d0ac8 +2024-09-11 09:08:18.483002 2024-09-11 09:08:18.483009 comef 7711 R rec 2cc33c96-f9bd-4e64-b2f9-3f11190439c0 +2024-09-11 09:08:18.542898 2024-09-11 09:08:18.542903 comef 7712 R rec c0b2aedd-cb04-4e76-97ee-6a9cdf8f668e +2024-09-11 09:08:18.601955 2024-09-11 09:08:18.601961 comef 7713 R rec 2a9285d5-4f2f-41e0-85e2-3a21eab0e045 +2024-09-11 09:08:18.681405 2024-09-11 09:08:18.681411 comef 7714 R rec fad4f17e-8d54-41b7-80fe-ac840f8f7fed +2024-09-11 09:08:18.746579 2024-09-11 09:08:18.746584 comef 7715 R rec 95903e07-068f-437f-83be-b45b0f14ccc7 +2024-09-11 09:08:18.810396 2024-09-11 09:08:18.810401 comef 7716 R rec c16cdc30-da49-4b73-9ea3-4c73cccd88b3 +2024-09-11 09:08:18.877729 2024-09-11 09:08:18.877734 comef 7717 R rec 9175f01c-8bec-405f-bc85-d2c856d09322 +2024-09-11 09:08:18.948227 2024-09-11 09:08:18.948232 comef 7718 R rec 2040cd76-0c74-45d2-aff5-56ba4212e8f4 +2024-09-11 09:08:19.012317 2024-09-11 09:08:19.012324 comef 7719 R rec 6e2b236f-3b10-4853-9928-b2d2021c8abd +2024-09-11 09:08:19.074232 2024-09-11 09:08:19.074237 comef 7720 R rec 812f68f9-5028-4973-8857-3a8c6c5e3401 +2024-09-11 09:08:19.139309 2024-09-11 09:08:19.139314 comef 7721 R rec 0bf8c061-0f87-487c-adad-79285fe27f8d +2024-09-11 09:08:19.209514 2024-09-11 09:08:19.20952 comef 7722 R rec 598401aa-e637-41fc-b173-550b9b97b512 +2024-09-11 09:08:19.271264 2024-09-11 09:08:19.27127 comef 7723 R rec 1295baaa-1728-4545-9ca6-d585383af9f3 +2024-09-11 09:08:19.329464 2024-09-11 09:08:19.32947 comef 7724 R rec e87aad76-6299-4643-a205-413c32fe51aa +2024-09-11 09:08:19.386954 2024-09-11 09:08:19.38696 comef 7725 R rec fb835cdb-1bc6-4599-9679-4c9f9fabfeb8 +2024-09-11 09:08:19.443605 2024-09-11 09:08:19.443609 comef 7726 R rec bc813c6a-7f57-4840-b1a8-f6769f2fca1f +2024-09-11 09:08:19.502434 2024-09-11 09:08:19.502441 comef 7727 R rec b37432eb-2808-48c8-8b14-a363dccd6781 +2024-09-11 09:08:19.564549 2024-09-11 09:08:19.564553 comef 7728 R rec aab9b7cf-9504-4fdd-9ea6-0fef80667eb4 +2024-09-11 09:08:19.629584 2024-09-11 09:08:19.629589 comef 7729 R rec a454acd5-2cf6-464e-9945-7f9bb1795f32 +2024-09-11 09:08:19.699068 2024-09-11 09:08:19.699074 comef 7730 R rec c60cad63-067b-4301-813b-100f4ff8cd33 +2024-09-11 09:08:19.765358 2024-09-11 09:08:19.765363 comef 7731 R rec 5d26df17-8a98-40df-9094-d623d2c17176 +2024-09-11 09:08:19.827551 2024-09-11 09:08:19.827556 comef 7732 R rec 84d3efc0-ef21-443d-8717-70f9739f0781 +2024-09-11 09:08:19.88791 2024-09-11 09:08:19.887937 comef 7733 R rec 4f708c9a-66ef-4290-8465-82d5f9626f31 +2024-09-11 09:08:19.948085 2024-09-11 09:08:19.948091 comef 7734 R rec a9c5673c-faac-4712-a84d-353e0f3d327a +2024-09-11 09:08:20.00799 2024-09-11 09:08:20.007995 comef 7735 R rec 5add4eab-8bd2-4929-8fd4-424ab7fe1b5e +2024-09-11 09:08:20.070717 2024-09-11 09:08:20.070722 comef 7736 R rec 3426e50b-5fed-463b-8895-4d713142d75c +2024-09-11 09:08:20.127917 2024-09-11 09:08:20.127922 comef 7737 R rec 99ef88a2-fde3-46cf-a94d-4efffe661c1c +2024-09-11 09:08:20.193356 2024-09-11 09:08:20.193361 comef 7738 R rec a7bfd65d-eead-4418-a186-ed04f8f1945d +2024-09-11 09:08:20.251731 2024-09-11 09:08:20.251736 comef 7739 R rec 388ad2d0-1cc1-46d7-ab6c-ec6b70d13e69 +2024-09-11 09:08:20.31204 2024-09-11 09:08:20.312046 comef 7740 R rec 4e91a50b-43ab-4391-852a-5455feabf8a3 +2024-09-11 09:08:20.380353 2024-09-11 09:08:20.380359 comef 7741 R rec aa03c677-5bb1-4cce-a566-6126de38eb7c +2024-09-11 09:08:20.442476 2024-09-11 09:08:20.442481 comef 7742 R rec 39b4bb8e-d705-4bd9-8fbe-e2ece2fe4bba +2024-09-11 09:08:20.505469 2024-09-11 09:08:20.505474 comef 7743 R rec 29472fdc-ad10-44bd-af5c-5760d62b60fc +2024-09-11 09:08:20.56872 2024-09-11 09:08:20.568731 comef 7744 R rec 229f8a0c-a191-43e5-9579-9f6cf65bdf43 +2024-09-11 09:08:20.638151 2024-09-11 09:08:20.63816 comef 7745 R rec 40d59f97-d8f2-491b-a101-c9377dde8e8b +2024-09-11 09:08:20.705859 2024-09-11 09:08:20.705863 comef 7746 R rec 0852ab0a-e7e4-4871-8726-53bd09262728 +2024-09-11 09:08:20.759395 2024-09-11 09:08:20.7594 comef 7747 R rec 5274068f-3473-458c-828f-d2f141a077b5 +2024-09-11 09:08:20.816007 2024-09-11 09:08:20.816014 comef 7748 R rec a29be910-4013-496b-b0e5-80103eff7ea5 +2024-09-11 09:08:20.877191 2024-09-11 09:08:20.877197 comef 7749 R rec 8d976fa5-8b2e-4ece-82dd-d892dd74bbb9 +2024-09-11 09:08:20.933547 2024-09-11 09:08:20.933552 comef 7750 R rec 4a4a1275-b69f-444c-8bc8-34c8c3db4c73 +2024-09-11 09:08:20.992088 2024-09-11 09:08:20.992094 comef 7751 R rec c4090b37-f3f9-4966-8773-bb607ac32f61 +2024-09-11 09:08:21.059811 2024-09-11 09:08:21.059816 comef 7752 R rec 7c50bb91-1fa6-4da5-a6d6-4dc31c085197 +2024-09-11 09:08:21.118946 2024-09-11 09:08:21.118951 comef 7753 R rec 1f875285-1e63-4593-8d5b-130d4a0da500 +2024-09-11 09:08:21.174015 2024-09-11 09:08:21.174021 comef 7754 R rec 3161f2b5-843e-4834-b2cb-c983a4fcd7f3 +2024-09-11 09:08:21.23212 2024-09-11 09:08:21.232125 comef 7755 R rec d4287ba9-bc07-4246-98dd-670bed66b3b0 +2024-09-11 09:08:21.288674 2024-09-11 09:08:21.288678 comef 7756 R rec d765eeca-7867-49de-9762-082c485163cc +2024-09-11 09:08:21.347922 2024-09-11 09:08:21.347926 comef 7757 R rec 2eee7895-8161-4174-b9b2-ec0fbc55dd70 +2024-09-11 09:08:21.40596 2024-09-11 09:08:21.405965 comef 7758 R rec 9006b27b-60d6-459c-95c2-b0795fb9e70c +2024-09-11 09:08:21.468076 2024-09-11 09:08:21.468082 comef 7759 R rec 41a84157-0f48-4ce7-9bec-036758c7d517 +2024-09-11 09:08:21.526852 2024-09-11 09:08:21.526857 comef 7760 R rec a86ecdf9-07c2-4d21-99b9-e08acd2c8301 +2024-09-11 09:08:21.584921 2024-09-11 09:08:21.584927 comef 7761 R rec e88903d1-17f8-4a68-86a2-10ca821087f8 +2024-09-11 09:08:21.659455 2024-09-11 09:08:21.659461 comef 7762 R rec 62302b1f-e58e-4cd0-aae2-438d31d393ef +2024-09-11 09:08:21.718329 2024-09-11 09:08:21.718333 comef 7763 R rec d41040ba-3ee9-4226-9d8e-60f49e37a95a +2024-09-11 09:08:21.777604 2024-09-11 09:08:21.77761 comef 7764 R rec 968447bf-2fa1-4400-863c-369eec040d20 +2024-09-11 09:08:21.83834 2024-09-11 09:08:21.838345 comef 7765 R rec 35768127-a0a7-4fe8-9747-526fe073b0b1 +2024-09-11 09:08:21.897565 2024-09-11 09:08:21.89757 comef 7766 R rec 71c7d16f-31ff-45b1-b183-3c74a8876a3c +2024-09-11 09:08:21.960509 2024-09-11 09:08:21.960515 comef 7767 R rec 787e014f-6739-45bf-bdeb-daffce524f1c +2024-09-11 09:08:22.024452 2024-09-11 09:08:22.024457 comef 7768 R rec 64cdd54e-d613-4ff8-ba72-129bdd9084c5 +2024-09-11 09:08:22.089281 2024-09-11 09:08:22.089286 comef 7769 R rec 0daacef5-f333-493e-97c6-c293fef43280 +2024-09-11 09:08:22.151296 2024-09-11 09:08:22.151302 comef 7770 R rec 4913f69a-6375-4e06-9b78-ca3204c233fd +2024-09-11 09:08:22.211355 2024-09-11 09:08:22.211361 comef 7771 R rec 3b377da8-d2bf-4d97-9459-49c13b993cf8 +2024-09-11 09:08:22.27119 2024-09-11 09:08:22.271195 comef 7772 R rec 6ab753a1-9048-499a-9f05-e5e5d277eac4 +2024-09-11 09:08:22.329456 2024-09-11 09:08:22.329462 comef 7773 R rec 6f49698e-b04c-4274-8072-701123bdcfeb +2024-09-11 09:08:22.389899 2024-09-11 09:08:22.389904 comef 7774 R rec 206f0d94-abbb-4c9a-bc3d-f5ff6ee0a84d +2024-09-11 09:08:22.454184 2024-09-11 09:08:22.454189 comef 7775 R rec 4e1d659d-3019-46ec-816a-9331a648b2d5 +2024-09-11 09:08:22.512907 2024-09-11 09:08:22.512912 comef 7776 R rec e8e99cb5-38a8-422b-b0be-076902f061c0 +2024-09-11 09:08:22.574876 2024-09-11 09:08:22.574881 comef 7777 R rec dd9d8ddc-c689-41cd-981b-437b5b2f2d9e +2024-09-11 09:08:22.631492 2024-09-11 09:08:22.631496 comef 7778 R rec 9f35da52-9604-4efe-a62b-c6d22b784e3a +2024-09-11 09:08:22.706451 2024-09-11 09:08:22.706456 comef 7779 R rec a5d48aa2-588c-4ae9-b42a-c7d6f88641e3 +2024-09-11 09:08:22.76686 2024-09-11 09:08:22.766865 comef 7780 R rec c4f80b52-10d1-4ceb-94a6-d8332a101868 +2024-09-11 09:08:22.823977 2024-09-11 09:08:22.823982 comef 7781 R rec 8f1422ee-5b87-48a8-afff-aa248f271699 +2024-09-11 09:08:22.889588 2024-09-11 09:08:22.889592 comef 7782 R rec 08ed1f7c-531b-4e7a-9230-5a6cd0b2e5a3 +2024-09-11 09:08:22.950367 2024-09-11 09:08:22.950372 comef 7783 R rec d2f00b98-2da0-4209-9fad-3ff694a09910 +2024-09-11 09:08:23.010359 2024-09-11 09:08:23.010364 comef 7784 R rec 85ff64f2-1b33-407e-88c6-76612237ea8a +2024-09-11 09:08:23.07605 2024-09-11 09:08:23.076055 comef 7785 R rec 2c062981-a0f0-49e1-8669-9acb550a37bc +2024-09-11 09:08:23.13854 2024-09-11 09:08:23.138545 comef 7786 R rec 7e68e06e-93f9-4a76-b4b9-a21a720e8fdb +2024-09-11 09:08:23.191425 2024-09-11 09:08:23.191431 comef 7787 R rec 88cfd49a-56b2-401c-b752-236da74cee9f +2024-09-11 09:08:23.254036 2024-09-11 09:08:23.254041 comef 7788 R rec fc45e51f-6b3e-470a-8f3d-6debb7783aa1 +2024-09-11 09:08:23.309377 2024-09-11 09:08:23.309382 comef 7789 R rec d2445b25-b39e-4828-a7e5-461d7f7d7f8c +2024-09-11 09:08:23.370872 2024-09-11 09:08:23.370879 comef 7790 R rec 1733b78c-06d4-4465-92fd-ae1c2890a548 +2024-09-11 09:08:23.430032 2024-09-11 09:08:23.430036 comef 7791 R rec bf005b44-ef9b-4730-8f33-87da5e13c593 +2024-09-11 09:08:23.486946 2024-09-11 09:08:23.486949 comef 7792 R rec 2cf00afd-dd46-4bf1-9948-3db3cc280ea4 +2024-09-11 09:08:23.546386 2024-09-11 09:08:23.54639 comef 7793 R rec 215652de-9b0a-4f0c-96d0-825da8ea1a28 +2024-09-11 09:08:23.622823 2024-09-11 09:08:23.622829 comef 7794 R rec 829ec786-3317-4c86-8633-e40b2ccc3c54 +2024-09-11 09:08:23.681763 2024-09-11 09:08:23.681768 comef 7795 R rec 2eab52ec-c76a-4380-aeb8-93d33f8b99ea +2024-09-11 09:08:23.734728 2024-09-11 09:08:23.734734 comef 7796 R rec 33725dea-ab9f-4493-8dd3-f2e8333883b5 +2024-09-11 09:08:23.791648 2024-09-11 09:08:23.791653 comef 7797 R rec 74433b0d-d7e7-447c-ac67-7a7ceee33c05 +2024-09-11 09:08:23.850688 2024-09-11 09:08:23.850692 comef 7798 R rec ade075fd-7e6d-4ab1-a34b-be0636cd1cdd +2024-09-11 09:08:23.909285 2024-09-11 09:08:23.909291 comef 7799 R rec f8d0e58f-1f61-4088-97af-785fdd1150be +2024-09-11 09:08:23.966292 2024-09-11 09:08:23.966297 comef 7800 R rec 1db06404-8bba-42df-a351-ef1cbfc023b3 +2024-09-11 09:08:24.034324 2024-09-11 09:08:24.034331 comef 7801 R rec 7d1daf3d-df1b-4ba5-a626-43b46b4a3327 +2024-09-11 09:08:24.089599 2024-09-11 09:08:24.089604 comef 7802 R rec 196890e1-a3e5-466a-b3af-1996beb7b5dd +2024-09-11 09:08:24.152012 2024-09-11 09:08:24.152017 comef 7803 R rec 6528e820-228c-482c-9d80-adcd96f1d8d2 +2024-09-11 09:08:24.212792 2024-09-11 09:08:24.212797 comef 7804 R rec 4769f095-73f1-4048-a17f-25789784bc79 +2024-09-11 09:08:24.273741 2024-09-11 09:08:24.273746 comef 7805 R rec 6f57375e-3025-461a-bb2f-2d9a67809513 +2024-09-11 09:08:24.339073 2024-09-11 09:08:24.339078 comef 7806 R rec 4b13c696-2076-4175-b53d-cfa08ce2b11c +2024-09-11 09:08:24.395751 2024-09-11 09:08:24.395756 comef 7807 R rec 9aacccfc-8972-464b-be6f-51d1b367597e +2024-09-11 09:08:24.454986 2024-09-11 09:08:24.454991 comef 7808 R rec c9f9855e-a684-4df3-a528-02725896f893 +2024-09-11 09:08:24.512508 2024-09-11 09:08:24.512513 comef 7809 R rec b0a660e9-2572-49cf-90c6-b6720b30a864 +2024-09-11 09:08:24.570985 2024-09-11 09:08:24.57099 comef 7810 R rec 13fc2ebf-98eb-416f-849c-649c6da2687c +2024-09-11 09:08:24.658119 2024-09-11 09:08:24.658124 comef 7811 R rec e7bc534b-7a07-4179-b2cc-7a1ceff1fbf4 +2024-09-11 09:08:24.726524 2024-09-11 09:08:24.726529 comef 7812 R rec 36bf6d0f-983a-4fe3-81c0-cc6e50866a4a +2024-09-11 09:08:24.784747 2024-09-11 09:08:24.784752 comef 7813 R rec ebed4c7d-794a-4430-ac8b-f67c8609662d +2024-09-11 09:08:24.849673 2024-09-11 09:08:24.84968 comef 7814 R rec 0c228fec-3078-484b-8860-8a2db101423e +2024-09-11 09:08:24.908611 2024-09-11 09:08:24.908616 comef 7815 R rec 85a35c45-4662-43a5-89f4-8fec3f0c7aa6 +2024-09-11 09:08:24.974722 2024-09-11 09:08:24.974727 comef 7816 R rec 2635a4d9-4ac6-4714-bf66-efc4595fc819 +2024-09-11 09:08:25.035228 2024-09-11 09:08:25.035234 comef 7817 R rec 1ab35dea-a21e-4167-8281-62c5f157c90b +2024-09-11 09:08:25.092279 2024-09-11 09:08:25.092284 comef 7818 R rec d8f6aa0b-9f01-411d-84ca-9f8662349bce +2024-09-11 09:08:25.15408 2024-09-11 09:08:25.154084 comef 7819 R rec 2274bc36-9485-4429-9c23-1884928243aa +2024-09-11 09:08:25.215524 2024-09-11 09:08:25.215529 comef 7820 R rec 9c8ad8c8-86b6-4d07-b14d-1e46a0916ffe +2024-09-11 09:08:25.282305 2024-09-11 09:08:25.28231 comef 7821 R rec 65a382d9-9865-4ae9-9574-0c915aa2dd8d +2024-09-11 09:08:25.366708 2024-09-11 09:08:25.366712 comef 7822 R rec ca8ed834-5784-4725-b9c3-063fe66cd42a +2024-09-11 09:08:25.424367 2024-09-11 09:08:25.424372 comef 7823 R rec 1e7ee1dd-2e2c-4c1b-a226-0b3666417369 +2024-09-11 09:08:25.48129 2024-09-11 09:08:25.481295 comef 7824 R rec 96c5025a-00e9-48ad-9ac8-55f8d0c30d83 +2024-09-11 09:08:25.54072 2024-09-11 09:08:25.540725 comef 7825 R rec 473c550b-621a-448d-afec-f985d5434436 +2024-09-11 09:08:25.599041 2024-09-11 09:08:25.599046 comef 7826 R rec fdfb2655-1ff5-4fdf-8d13-4ed1f914cd09 +2024-09-11 09:08:25.667093 2024-09-11 09:08:25.667099 comef 7827 R rec 9e557238-a68a-42ab-996f-0f2b5df4839d +2024-09-11 09:08:25.734999 2024-09-11 09:08:25.735003 comef 7828 R rec dbfa805c-9dba-4a56-86dc-9801c63e57b9 +2024-09-11 09:08:25.792892 2024-09-11 09:08:25.792896 comef 7829 R rec e4615c6f-9724-4c3f-89f1-c2649c8d2f0b +2024-09-11 09:08:25.854002 2024-09-11 09:08:25.854007 comef 7830 R rec a7e882f4-c399-408d-91d4-a28ab1af9a20 +2024-09-11 09:08:25.920759 2024-09-11 09:08:25.920764 comef 7831 R rec ccf1db81-9f8b-482e-bc32-538fa5edc276 +2024-09-11 09:08:25.978168 2024-09-11 09:08:25.978173 comef 7832 R rec f940a302-8734-4856-b5a1-693036b1c22b +2024-09-11 09:08:26.040007 2024-09-11 09:08:26.040012 comef 7833 R rec 1f2ad8b3-8b7a-4446-8114-341431b4fb66 +2024-09-11 09:08:26.097354 2024-09-11 09:08:26.097359 comef 7834 R rec 2892b30e-663f-4179-a042-f701ec425c59 +2024-09-11 09:08:26.160681 2024-09-11 09:08:26.160687 comef 7835 R rec 7712e753-9ace-447f-a222-73e49237c2f8 +2024-09-11 09:08:26.218625 2024-09-11 09:08:26.218631 comef 7836 R rec 2be4e4cd-e909-4cf4-900a-fa976fefd9a8 +2024-09-11 09:08:26.272142 2024-09-11 09:08:26.272148 comef 7837 R rec 9862e579-be57-4fa3-ae3a-0c14578eb248 +2024-09-11 09:08:26.332411 2024-09-11 09:08:26.332416 comef 7838 R rec e9aa91b0-d300-42c7-89dc-c3388858d481 +2024-09-11 09:08:26.38706 2024-09-11 09:08:26.387065 comef 7839 R rec 4fd1999b-d82c-4e85-9013-0e04ea4546b9 +2024-09-11 09:08:26.44665 2024-09-11 09:08:26.446655 comef 7840 R rec 9ef28656-1076-4308-9874-03d261a2e938 +2024-09-11 09:08:26.50727 2024-09-11 09:08:26.507276 comef 7841 R rec bcaf964b-351a-4349-96fa-2e7790f94361 +2024-09-11 09:08:26.573657 2024-09-11 09:08:26.573662 comef 7842 R rec a8ecf56f-214f-4678-ad47-5321b2b27c5b +2024-09-11 09:08:26.639826 2024-09-11 09:08:26.639833 comef 7843 R rec 9ddd46e3-15a6-4777-b79e-2a846b0c7ad7 +2024-09-11 09:08:26.712581 2024-09-11 09:08:26.712585 comef 7844 R rec 3325c2dc-7c7c-4c1b-9f6a-ea192c62ac61 +2024-09-11 09:08:26.771131 2024-09-11 09:08:26.771136 comef 7845 R rec 67815eca-66af-4434-80e8-4a3134c9b746 +2024-09-11 09:08:26.833697 2024-09-11 09:08:26.833702 comef 7846 R rec 8f785980-f4c1-4b43-9848-04bbcf1f6755 +2024-09-11 09:08:26.891688 2024-09-11 09:08:26.891692 comef 7847 R rec 8168f82b-6f7d-48ee-bc35-f2e2a416bb29 +2024-09-11 09:08:26.949594 2024-09-11 09:08:26.949598 comef 7848 R rec e1d3c542-7762-4a78-ae9e-c9192639ca0d +2024-09-11 09:08:27.013318 2024-09-11 09:08:27.013322 comef 7849 R rec 10168191-fe0b-43d5-b27b-59dacb10fb21 +2024-09-11 09:08:27.072351 2024-09-11 09:08:27.072355 comef 7850 R rec 8f4b15e3-e0a5-4517-8819-b4be8d3d5d59 +2024-09-11 09:08:27.129458 2024-09-11 09:08:27.129463 comef 7851 R rec 61b04520-8834-4ade-a817-aa8294820d5e +2024-09-11 09:08:27.187965 2024-09-11 09:08:27.187969 comef 7852 R rec e3d369ed-3d93-4152-83f3-e1db7843774a +2024-09-11 09:08:27.253035 2024-09-11 09:08:27.25304 comef 7853 R rec f4ced338-ddac-4a8b-b2f8-81da2128e5c4 +2024-09-11 09:08:27.307792 2024-09-11 09:08:27.307798 comef 7854 R rec e1eda898-6304-4bc0-a92f-c28a83c41d99 +2024-09-11 09:08:27.366094 2024-09-11 09:08:27.366099 comef 7855 R rec 3a2d29ff-dce9-4ee7-9554-5537ef1c23fb +2024-09-11 09:08:27.424846 2024-09-11 09:08:27.42485 comef 7856 R rec 5cf1eba9-6a73-4274-b228-0881e5cae866 +2024-09-11 09:08:27.485509 2024-09-11 09:08:27.485514 comef 7857 R rec 9a9d456d-a0e4-4304-9a9c-4f072fabf50c +2024-09-11 09:08:27.563591 2024-09-11 09:08:27.563596 comef 7858 R rec 86616797-4c2a-44aa-85e4-89ad02fdf921 +2024-09-11 09:08:27.624628 2024-09-11 09:08:27.624633 comef 7859 R rec 471402dd-72d0-47d5-b4c9-016aacc5fdeb +2024-09-11 09:08:27.681756 2024-09-11 09:08:27.681761 comef 7860 R rec e288f299-871e-4002-93b4-db5bbd50c745 +2024-09-11 09:08:27.738657 2024-09-11 09:08:27.738662 comef 7861 R rec da0273f7-d3db-4955-9121-60061cc166bf +2024-09-11 09:08:27.797673 2024-09-11 09:08:27.797678 comef 7862 R rec bc39d15c-4e1b-4047-98a0-acc41e747eb6 +2024-09-11 09:08:27.861876 2024-09-11 09:08:27.86188 comef 7863 R rec 3787001f-6464-43dc-99a6-4921499e1697 +2024-09-11 09:08:27.928565 2024-09-11 09:08:27.928571 comef 7864 R rec b2a35244-f49b-4b53-87df-b4ff26d39d03 +2024-09-11 09:08:27.991077 2024-09-11 09:08:27.991082 comef 7865 R rec b6cadb43-98a1-45d7-bb32-235fd6e6b4b5 +2024-09-11 09:08:28.058763 2024-09-11 09:08:28.058768 comef 7866 R rec d36548f3-feb7-4dcd-82de-2cb0f3d0f7df +2024-09-11 09:08:28.118867 2024-09-11 09:08:28.118872 comef 7867 R rec 518bea16-d9ca-4860-8ce0-00f5fcf3a547 +2024-09-11 09:08:28.177113 2024-09-11 09:08:28.177119 comef 7868 R rec ec2be3c0-4451-4f19-9346-196b7a0c318c +2024-09-11 09:08:28.235819 2024-09-11 09:08:28.235824 comef 7869 R rec a200e3e5-5ce1-4c17-9c83-42c42c3cd7a9 +2024-09-11 09:08:28.295474 2024-09-11 09:08:28.295501 comef 7870 R rec d8706a1a-c1cb-4b54-a94a-ae5e216f7c78 +2024-09-11 09:08:28.355617 2024-09-11 09:08:28.355622 comef 7871 R rec a3cff396-3f80-4a80-95b8-c60832b3df78 +2024-09-11 09:08:28.412002 2024-09-11 09:08:28.412007 comef 7872 R rec 5eae82a2-eee9-4050-805f-625ffd445a89 +2024-09-11 09:08:28.475771 2024-09-11 09:08:28.475776 comef 7873 R rec 25bf17b5-65f1-496e-9ae0-c6baa1b94466 +2024-09-11 09:08:28.547323 2024-09-11 09:08:28.547328 comef 7874 R rec f664ccfd-1d54-4e09-a148-74c7d5cba25c +2024-09-11 09:08:28.608443 2024-09-11 09:08:28.608449 comef 7875 R rec 29ec0015-ff58-41f2-8df7-d830c101085f +2024-09-11 09:08:28.669274 2024-09-11 09:08:28.66928 comef 7876 R rec b511963d-fcd6-4abb-9bb0-99e8f36ecf51 +2024-09-11 09:08:28.733561 2024-09-11 09:08:28.733565 comef 7877 R rec 64b58f65-4047-4d90-a512-2c010b159c27 +2024-09-11 09:08:28.792343 2024-09-11 09:08:28.792348 comef 7878 R rec 17c55edd-0cec-4e2a-a3af-f52df5dee8da +2024-09-11 09:08:28.852132 2024-09-11 09:08:28.852138 comef 7879 R rec 088a2178-0f51-452f-9fd1-8890ca5093af +2024-09-11 09:08:28.912089 2024-09-11 09:08:28.912094 comef 7880 R rec 7be90e7e-7eac-4c6c-8290-d68b5abe1b26 +2024-09-11 09:08:28.967535 2024-09-11 09:08:28.96754 comef 7881 R rec 1229b1ce-6959-4c20-ac65-aac420054b73 +2024-09-11 09:08:29.027706 2024-09-11 09:08:29.027711 comef 7882 R rec 29910fb5-36a6-4dc6-b415-4648a8ebef5a +2024-09-11 09:08:29.092096 2024-09-11 09:08:29.092101 comef 7883 R rec 2a3fd35f-4731-4777-ae6c-f95970ea8241 +2024-09-11 09:08:29.150758 2024-09-11 09:08:29.150764 comef 7884 R rec 25ece9d8-01a3-4b96-b899-cba59dc150c2 +2024-09-11 09:08:29.207273 2024-09-11 09:08:29.207278 comef 7885 R rec 5788a1b1-c7c7-43ab-8ccf-9e8b53451f48 +2024-09-11 09:08:29.2708 2024-09-11 09:08:29.270805 comef 7886 R rec d8ba2d37-08b3-4446-9e91-6b65447d349d +2024-09-11 09:08:29.332906 2024-09-11 09:08:29.332911 comef 7887 R rec 1d7e35e3-d6be-43d1-9f20-b974c3ccdb45 +2024-09-11 09:08:29.392065 2024-09-11 09:08:29.39207 comef 7888 R rec b0db3cd8-0827-41d3-856b-71acc1308662 +2024-09-11 09:08:29.450107 2024-09-11 09:08:29.450112 comef 7889 R rec dae3f365-e772-457a-be6e-9b49bf128478 +2024-09-11 09:08:29.513866 2024-09-11 09:08:29.513872 comef 7890 R rec 24aa6915-5a71-415e-bac8-9a648cf2d9c2 +2024-09-11 09:08:29.579277 2024-09-11 09:08:29.579283 comef 7891 R rec dfb64b13-7170-4689-8fd7-00281c709ef9 +2024-09-11 09:08:29.64479 2024-09-11 09:08:29.644795 comef 7892 R rec 1bca1458-07bd-4d2d-aa64-142a0a808d44 +2024-09-11 09:08:29.701731 2024-09-11 09:08:29.701736 comef 7893 R rec 9c27d4f2-e645-468a-846e-18973815e7bf +2024-09-11 09:08:29.762016 2024-09-11 09:08:29.76202 comef 7894 R rec b2cd5a51-e91d-44ee-8232-5a1e352eaa67 +2024-09-11 09:08:29.829943 2024-09-11 09:08:29.829948 comef 7895 R rec 146b5406-2df7-4990-afa8-0f642854c32e +2024-09-11 09:08:29.889652 2024-09-11 09:08:29.889658 comef 7896 R rec 9cdd416c-6fd1-4bb9-a4d2-54bfe0ba08d2 +2024-09-11 09:08:29.949936 2024-09-11 09:08:29.949941 comef 7897 R rec f4eaf2f2-ac30-4130-a1a5-6c8dcef3ba8b +2024-09-11 09:08:30.007447 2024-09-11 09:08:30.007453 comef 7898 R rec 4e10996b-795e-44eb-b8da-c0fa0d5e0321 +2024-09-11 09:08:30.075632 2024-09-11 09:08:30.075636 comef 7899 R rec a97d9396-3c48-4a25-b73f-8e3d7223208f +2024-09-11 09:08:30.13352 2024-09-11 09:08:30.133526 comef 7900 R rec 1867b0b1-1977-4822-8486-3c1505364897 +2024-09-11 09:08:30.192394 2024-09-11 09:08:30.192399 comef 7901 R rec 4f449dc1-595f-499d-9c29-6dbde526f6a7 +2024-09-11 09:08:30.251791 2024-09-11 09:08:30.251796 comef 7902 R rec 8bdea4c1-a994-4ff7-9d92-6fd7f3cf169a +2024-09-11 09:08:30.313086 2024-09-11 09:08:30.313091 comef 7903 R rec 9905fbb5-fa52-4890-a287-a97bc259f914 +2024-09-11 09:08:30.377059 2024-09-11 09:08:30.377065 comef 7904 R rec 9e10bd9c-af9d-483d-a4dc-532abc76c196 +2024-09-11 09:08:30.435965 2024-09-11 09:08:30.435974 comef 7905 R rec dbf65995-c6b2-419a-9384-46542617c844 +2024-09-11 09:08:30.494954 2024-09-11 09:08:30.494959 comef 7906 R rec 6d196dcd-3be3-4b6a-af31-835f126f2047 +2024-09-11 09:08:30.57014 2024-09-11 09:08:30.570146 comef 7907 R rec 300cf4b7-a78b-4684-9a57-bc1fde9e9274 +2024-09-11 09:08:30.636714 2024-09-11 09:08:30.636719 comef 7908 R rec 9a80f8a1-99d4-4780-bfb8-f1b92ccf8049 +2024-09-11 09:08:30.69642 2024-09-11 09:08:30.696424 comef 7909 R rec 1e77f5f8-d3f6-4c3f-8f0a-ab4829966e6f +2024-09-11 09:08:30.760326 2024-09-11 09:08:30.760332 comef 7910 R rec 4a0998e9-14b9-4745-a722-1e5b5bf0d88e +2024-09-11 09:08:30.815954 2024-09-11 09:08:30.815961 comef 7911 R rec 9204a626-bad6-49d6-8911-9fddf5b48e66 +2024-09-11 09:08:30.87703 2024-09-11 09:08:30.877035 comef 7912 R rec ee789fcc-1907-4fce-8fa7-5e26543860ca +2024-09-11 09:08:30.934725 2024-09-11 09:08:30.934731 comef 7913 R rec e7d84323-c21b-4b90-a7d6-3cfe9c9266dd +2024-09-11 09:08:30.998193 2024-09-11 09:08:30.998198 comef 7914 R rec ab186327-78ca-4677-a194-d5f8deb9ecf8 +2024-09-11 09:08:31.062775 2024-09-11 09:08:31.062782 comef 7915 R rec 8058e5f5-7982-4310-a4c2-7c39fd26581a +2024-09-11 09:08:31.123222 2024-09-11 09:08:31.123227 comef 7916 R rec 9eafa2e6-4691-4c70-b660-907fd60ff8b4 +2024-09-11 09:08:31.177428 2024-09-11 09:08:31.177434 comef 7917 R rec 6cd35b84-5af8-4ccb-a6a3-b6a98fd03c3e +2024-09-11 09:08:31.235096 2024-09-11 09:08:31.235101 comef 7918 R rec f856fe45-4ae3-4f6b-a8f5-ca420aa759ba +2024-09-11 09:08:31.299079 2024-09-11 09:08:31.299083 comef 7919 R rec 20c16a27-3c6d-4351-b0e9-1a87769d7e61 +2024-09-11 09:08:31.359091 2024-09-11 09:08:31.359096 comef 7920 R rec d00285ac-564c-4165-9f8b-495fd432e695 +2024-09-11 09:08:31.435094 2024-09-11 09:08:31.4351 comef 7921 R rec a3456686-206c-4852-aaa9-d30d00f53434 +2024-09-11 09:08:31.504036 2024-09-11 09:08:31.504041 comef 7922 R rec ed9caf0e-bce3-4335-b35f-2aeec9a15dce +2024-09-11 09:08:31.559865 2024-09-11 09:08:31.559871 comef 7923 R rec 820ea248-ff28-43f6-b032-c78d0cf6f6cf +2024-09-11 09:08:31.617741 2024-09-11 09:08:31.617747 comef 7924 R rec e3f09caf-0739-481f-bb59-c657acf4b76a +2024-09-11 09:08:31.678526 2024-09-11 09:08:31.678531 comef 7925 R rec 8e9341ff-902e-4243-9783-65fb9e390534 +2024-09-11 09:08:31.743871 2024-09-11 09:08:31.743877 comef 7926 R rec ff287530-4253-4b42-862b-a45a6c87487f +2024-09-11 09:08:31.801007 2024-09-11 09:08:31.801012 comef 7927 R rec d9d91156-46e1-4d6e-9846-dde66d4b2b4e +2024-09-11 09:08:31.869656 2024-09-11 09:08:31.869663 comef 7928 R rec dad6ee31-1f6c-408a-b84d-d7359592f99e +2024-09-11 09:08:31.92777 2024-09-11 09:08:31.927775 comef 7929 R rec 7d968f29-6187-4d1e-95f7-54f7b01450ca +2024-09-11 09:08:31.985794 2024-09-11 09:08:31.985799 comef 7930 R rec 32abe329-de98-451f-a556-6abb2366dcfd +2024-09-11 09:08:32.050637 2024-09-11 09:08:32.050643 comef 7931 R rec caacae0f-4a9e-4e05-9bcd-d409d7d0a25c +2024-09-11 09:08:32.110201 2024-09-11 09:08:32.110206 comef 7932 R rec 05121198-2933-46b0-9f9f-896966abf811 +2024-09-11 09:08:32.170075 2024-09-11 09:08:32.17008 comef 7933 R rec fb4c7773-3a00-4431-8139-8840b1eca46a +2024-09-11 09:08:32.227347 2024-09-11 09:08:32.227352 comef 7934 R rec c544e395-5d8e-491a-a438-7a15a57467e5 +2024-09-11 09:08:32.282647 2024-09-11 09:08:32.282654 comef 7935 R rec 2063c4fa-d344-4632-a433-0d0c5e0fc0a5 +2024-09-11 09:08:32.335525 2024-09-11 09:08:32.335529 comef 7936 R rec 85d33c6d-8647-457c-867e-7e8fa01a95a8 +2024-09-11 09:08:32.406046 2024-09-11 09:08:32.406051 comef 7937 R rec 52802833-aa22-41cb-9ab4-2baddd5af280 +2024-09-11 09:08:32.46547 2024-09-11 09:08:32.465474 comef 7938 R rec c69b37ef-0b45-4fb2-ad40-49e63b5a36c4 +2024-09-11 09:08:32.524553 2024-09-11 09:08:32.524558 comef 7939 R rec 7aaf6d78-e3e9-4990-925d-888eb484ba61 +2024-09-11 09:08:32.584285 2024-09-11 09:08:32.584291 comef 7940 R rec e9f8eb60-26e0-4520-b8c4-31294594bf72 +2024-09-11 09:08:32.642793 2024-09-11 09:08:32.642799 comef 7941 R rec 85165943-f364-4bfa-92e4-a6e5b083dec0 +2024-09-11 09:08:32.701294 2024-09-11 09:08:32.701298 comef 7942 R rec 370fa86a-1089-4aef-9022-d9167d57ceaa +2024-09-11 09:08:32.763104 2024-09-11 09:08:32.763109 comef 7943 R rec b0cfa4db-57d1-4f93-b27b-c180b0c704eb +2024-09-11 09:08:32.822646 2024-09-11 09:08:32.822651 comef 7944 R rec db558182-c37c-4afa-ab07-ae9d223d09f3 +2024-09-11 09:08:32.888811 2024-09-11 09:08:32.888816 comef 7945 R rec 95582d00-8bd8-400c-b750-1a3310c14915 +2024-09-11 09:08:32.952848 2024-09-11 09:08:32.952853 comef 7946 R rec 57464e78-5adc-4b3f-8309-78289d292fd2 +2024-09-11 09:08:33.012052 2024-09-11 09:08:33.012057 comef 7947 R rec 22c2882e-4ad1-4540-9ec7-8c3126b6d737 +2024-09-11 09:08:33.073416 2024-09-11 09:08:33.073421 comef 7948 R rec 1da71ad2-46e3-49af-a3e4-5e23dafb57be +2024-09-11 09:08:33.138604 2024-09-11 09:08:33.138609 comef 7949 R rec 2962705d-76db-4fc3-8a07-c1c2a0717ed2 +2024-09-11 09:08:33.204995 2024-09-11 09:08:33.205 comef 7950 R rec 51171c0a-6d2b-4ebb-84ea-fe8c1bdd4e54 +2024-09-11 09:08:33.260941 2024-09-11 09:08:33.260946 comef 7951 R rec 53599f97-7d71-4a7f-9849-147925b8f557 +2024-09-11 09:08:33.32032 2024-09-11 09:08:33.320324 comef 7952 R rec 94cc8453-f75a-4d90-9aed-2ad48d2b3955 +2024-09-11 09:08:33.396331 2024-09-11 09:08:33.396336 comef 7953 R rec a9526292-0aab-4a8c-8487-3de8d4a31e5d +2024-09-11 09:08:33.45814 2024-09-11 09:08:33.458145 comef 7954 R rec c284cf75-a471-4802-ad5e-13f7167030bc +2024-09-11 09:08:33.517926 2024-09-11 09:08:33.517932 comef 7955 R rec c04d88e4-2c02-4afa-97eb-1b0382a52feb +2024-09-11 09:08:33.573825 2024-09-11 09:08:33.57383 comef 7956 R rec 00c31455-a5e5-44cc-abc3-fab7f53cf865 +2024-09-11 09:08:33.633812 2024-09-11 09:08:33.63382 comef 7957 R rec 8fe8ac5c-a311-434c-ae96-d8864fd01ea9 +2024-09-11 09:08:33.691967 2024-09-11 09:08:33.691973 comef 7958 R rec 4ce171a0-f7fc-4ba7-9b39-7608a8678bc6 +2024-09-11 09:08:33.755278 2024-09-11 09:08:33.755283 comef 7959 R rec 01bf6ba1-9164-44e1-a375-1048d391d2a6 +2024-09-11 09:08:33.812313 2024-09-11 09:08:33.812319 comef 7960 R rec e9c0ff3a-b902-470e-8ed3-ef00173ea8a1 +2024-09-11 09:08:33.869478 2024-09-11 09:08:33.869483 comef 7961 R rec 1176d762-698d-4499-b67b-e052eb8ceebe +2024-09-11 09:08:33.92602 2024-09-11 09:08:33.926025 comef 7962 R rec 9d9b57df-71e7-4471-9316-c5a7a15ed12b +2024-09-11 09:08:33.985879 2024-09-11 09:08:33.985884 comef 7963 R rec 92e3bc7d-d33b-493c-aadf-28d2812c3991 +2024-09-11 09:08:34.047894 2024-09-11 09:08:34.0479 comef 7964 R rec 6cd5adfe-3c8a-4d69-a4be-1059372bdbd7 +2024-09-11 09:08:34.110116 2024-09-11 09:08:34.110122 comef 7965 R rec 40c1f558-60ea-45a5-ab5e-4f486f805daf +2024-09-11 09:08:34.185916 2024-09-11 09:08:34.185922 comef 7966 R rec 4e36e3a9-7cfd-4aba-b429-25b4c16f3b62 +2024-09-11 09:08:34.265663 2024-09-11 09:08:34.265668 comef 7967 R rec 6f9e0f2a-b105-4179-8947-c8e080f3e310 +2024-09-11 09:08:34.322628 2024-09-11 09:08:34.322632 comef 7968 R rec b4f173c1-3fdd-4e5f-8fbe-9c0fe32b5e05 +2024-09-11 09:08:34.381319 2024-09-11 09:08:34.381324 comef 7969 R rec 4d0375ac-9e86-4160-9c08-cfe988b16d43 +2024-09-11 09:08:34.437275 2024-09-11 09:08:34.437281 comef 7970 R rec 23c62cdb-a1ad-4ef7-a774-1acebc0edcd7 +2024-09-11 09:08:34.499083 2024-09-11 09:08:34.499087 comef 7971 R rec 5f305ab2-aff7-4ae5-80aa-20a3cd83e60f +2024-09-11 09:08:34.553305 2024-09-11 09:08:34.55331 comef 7972 R rec ef6b19e3-561a-48a3-826f-5dec94db434c +2024-09-11 09:08:34.607427 2024-09-11 09:08:34.607432 comef 7973 R rec dd5292f6-a495-4a1a-a5c9-06ec81874045 +2024-09-11 09:08:34.665843 2024-09-11 09:08:34.665848 comef 7974 R rec bc39080e-ce66-4f2c-ad3f-854e3f425cbd +2024-09-11 09:08:34.729467 2024-09-11 09:08:34.729472 comef 7975 R rec d0a9a89d-959f-4b78-aafd-bac4bcd4dcff +2024-09-11 09:08:34.794117 2024-09-11 09:08:34.794122 comef 7976 R rec 9d84f2f4-9d87-4d4f-9cb3-50aaf9dab5c6 +2024-09-11 09:08:34.856119 2024-09-11 09:08:34.856124 comef 7977 R rec 770129cd-1416-4157-a790-4751b8612771 +2024-09-11 09:08:34.936871 2024-09-11 09:08:34.936876 comef 7978 R rec 37f49886-df39-4c68-b156-315878061f61 +2024-09-11 09:08:34.995436 2024-09-11 09:08:34.995442 comef 7979 R rec 7685db14-267c-41fe-94ad-d7ad1a9eae13 +2024-09-11 09:08:35.05659 2024-09-11 09:08:35.056595 comef 7980 R rec a61351e6-3af6-4a8a-a0c9-4bdf6ec3d0ce +2024-09-11 09:08:35.118365 2024-09-11 09:08:35.118371 comef 7981 R rec b8163c87-f605-4e9b-ac05-c51815bc2f2c +2024-09-11 09:08:35.18812 2024-09-11 09:08:35.188125 comef 7982 R rec 44dad344-f72e-4620-9530-f7e3009902bc +2024-09-11 09:08:35.247903 2024-09-11 09:08:35.247911 comef 7983 R rec 721f334a-e46d-4563-9c94-eb9a5062d50e +2024-09-11 09:08:35.308137 2024-09-11 09:08:35.308143 comef 7984 R rec 156490a6-b0b4-4fc4-bcc8-47cb4a59c263 +2024-09-11 09:08:35.375879 2024-09-11 09:08:35.375884 comef 7985 R rec a4feea09-b634-408f-9721-16d80b891a07 +2024-09-11 09:08:35.437305 2024-09-11 09:08:35.43731 comef 7986 R rec 751636f1-fae4-4007-99c7-1e6ad85492ba +2024-09-11 09:08:35.497064 2024-09-11 09:08:35.497069 comef 7987 R rec fe7dcd0d-731b-4b1a-abe9-ff021a985d36 +2024-09-11 09:08:35.55897 2024-09-11 09:08:35.558975 comef 7988 R rec 3eddda6e-a623-48e5-969c-ad42e082544b +2024-09-11 09:08:35.622683 2024-09-11 09:08:35.622688 comef 7989 R rec f6e9f6a9-75d0-43f9-a50d-03eb4b2c6f48 +2024-09-11 09:08:35.687757 2024-09-11 09:08:35.687762 comef 7990 R rec e8641381-d7f8-435e-bb3d-1ce7f88f5684 +2024-09-11 09:08:35.746842 2024-09-11 09:08:35.746847 comef 7991 R rec c93688fa-8fbf-452e-9488-301a4384fbe7 +2024-09-11 09:08:35.807923 2024-09-11 09:08:35.807929 comef 7992 R rec 19437f13-5f56-487b-a486-41593f898755 +2024-09-11 09:08:35.868541 2024-09-11 09:08:35.868547 comef 7993 R rec 9e94dd72-46e5-46eb-8d66-7d7d81300c4c +2024-09-11 09:08:35.932813 2024-09-11 09:08:35.932819 comef 7994 R rec 939aa95c-508b-471d-8a50-c826b1e3e6f9 +2024-09-11 09:08:35.986208 2024-09-11 09:08:35.986215 comef 7995 R rec 0734bc58-641f-43a0-808a-9a0e8df952ec +2024-09-11 09:08:36.04925 2024-09-11 09:08:36.049256 comef 7996 R rec dd6dc992-21b2-4cfb-8246-3741e97999d1 +2024-09-11 09:08:36.118096 2024-09-11 09:08:36.118102 comef 7997 R rec 2b030111-d8b0-4618-a466-6b52939270d9 +2024-09-11 09:08:36.18178 2024-09-11 09:08:36.181785 comef 7998 R rec 29cac78f-01c3-4a54-836f-6887fceda5e8 +2024-09-11 09:08:36.243535 2024-09-11 09:08:36.24354 comef 7999 R rec acead1f7-02ad-46b5-9b93-37c4b5f9e788 +2024-09-11 09:08:36.306809 2024-09-11 09:08:36.306813 comef 8000 R rec 4791b986-5e2a-4db3-9bc5-b544b9d5e278 +2024-09-11 09:08:36.368295 2024-09-11 09:08:36.3683 comef 8001 R rec a85e12dd-916d-48bf-afec-28881f390bba +2024-09-11 09:08:36.432741 2024-09-11 09:08:36.432746 comef 8002 R rec fa3d41d2-2cbf-4410-821f-fa1780941baf +2024-09-11 09:08:36.489009 2024-09-11 09:08:36.489014 comef 8003 R rec 45d37919-535b-465b-8418-ed1566ebca91 +2024-09-11 09:08:36.551709 2024-09-11 09:08:36.551714 comef 8004 R rec f8a8a7ef-1ab5-4771-92d0-b317ab8425e3 +2024-09-11 09:08:36.607722 2024-09-11 09:08:36.607727 comef 8005 R rec b826eb4e-bef4-471b-beaa-ae4a33c951c9 +2024-09-11 09:08:36.666187 2024-09-11 09:08:36.666192 comef 8006 R rec 7dd45acb-2c04-40bb-91fc-572baf273d05 +2024-09-11 09:08:36.724691 2024-09-11 09:08:36.724696 comef 8007 R rec 9690dedc-dfd0-47ad-aa3b-1fdbb3299c01 +2024-09-11 09:08:36.784608 2024-09-11 09:08:36.784612 comef 8008 R rec f84fe3ed-c8b3-4aa0-b7d7-d792307c2a35 +2024-09-11 09:08:36.847733 2024-09-11 09:08:36.847738 comef 8009 R rec a417ac6b-83f8-4058-8167-bf2e6e685acb +2024-09-11 09:08:36.916974 2024-09-11 09:08:36.91698 comef 8010 R rec b747c812-ac62-4dff-ab54-74fffeec3bce +2024-09-11 09:08:36.976791 2024-09-11 09:08:36.976796 comef 8011 R rec 7b9759f2-9393-48c5-a0af-a16fea624a4f +2024-09-11 09:08:37.035596 2024-09-11 09:08:37.035601 comef 8012 R rec 302877af-f71a-401a-850d-9706e8295648 +2024-09-11 09:08:37.094891 2024-09-11 09:08:37.094896 comef 8013 R rec 75b6371e-39b1-4ef5-afe9-8af2b3fa96c4 +2024-09-11 09:08:37.160619 2024-09-11 09:08:37.160623 comef 8014 R rec a4ac6933-1b47-40c2-9a86-515b8ab4bc2b +2024-09-11 09:08:37.227833 2024-09-11 09:08:37.227839 comef 8015 R rec cb4ef189-16a1-449d-8258-b0b98be7909f +2024-09-11 09:08:37.29156 2024-09-11 09:08:37.291565 comef 8016 R rec c744bbf1-072a-4d30-a374-9ed98d6568d6 +2024-09-11 09:08:37.355536 2024-09-11 09:08:37.355541 comef 8017 R rec 542db0d6-d909-47c6-9d02-2e5ba7fb3133 +2024-09-11 09:08:37.419327 2024-09-11 09:08:37.419332 comef 8018 R rec a99b3123-1168-4867-a891-e8c9d8a52e81 +2024-09-11 09:08:37.475765 2024-09-11 09:08:37.475769 comef 8019 R rec 2faf5a0b-c48a-49d3-9b1a-5fee119a8047 +2024-09-11 09:08:37.539576 2024-09-11 09:08:37.539581 comef 8020 R rec f179ad9f-cf9f-4109-aae8-c6f16d44e692 +2024-09-11 09:08:37.599023 2024-09-11 09:08:37.599028 comef 8021 R rec f1d12b9d-e4bf-4f09-a60e-4040dcaaab09 +2024-09-11 09:08:37.655569 2024-09-11 09:08:37.655574 comef 8022 R rec 78ee5278-9ba8-42a9-aee4-59e1613bb41e +2024-09-11 09:08:37.717015 2024-09-11 09:08:37.717021 comef 8023 R rec 4d147631-a753-4b85-875c-b610290dd502 +2024-09-11 09:08:37.782408 2024-09-11 09:08:37.782414 comef 8024 R rec e0f62a32-a1cf-4e3e-b83c-84a892311e1d +2024-09-11 09:08:37.839808 2024-09-11 09:08:37.839813 comef 8025 R rec 38b543a9-8663-410e-966c-ddd1fbc3ddd6 +2024-09-11 09:08:37.898026 2024-09-11 09:08:37.898031 comef 8026 R rec b3b53ef1-59d0-4e17-a326-0a4e60286cfb +2024-09-11 09:08:37.954979 2024-09-11 09:08:37.954983 comef 8027 R rec 6ca89511-31d0-40ed-ba35-0c3110ddb6b9 +2024-09-11 09:08:38.014042 2024-09-11 09:08:38.014046 comef 8028 R rec 4a3a3580-bdb1-46f1-af10-b0d4d9da5f8c +2024-09-11 09:08:38.071898 2024-09-11 09:08:38.071903 comef 8029 R rec 91c55f12-44e0-41a3-9b9a-688a6fd3cbee +2024-09-11 09:08:38.130062 2024-09-11 09:08:38.130066 comef 8030 R rec 6103372a-fb10-489b-8ad5-f2a1746911ab +2024-09-11 09:08:38.193362 2024-09-11 09:08:38.193367 comef 8031 R rec b1ab1c4d-9913-494b-be95-7603870811d5 +2024-09-11 09:08:38.254747 2024-09-11 09:08:38.254751 comef 8032 R rec f04f5589-ae2b-4c78-bfba-7155d01d3a5c +2024-09-11 09:08:38.314293 2024-09-11 09:08:38.314298 comef 8033 R rec e0222e6d-ffe2-4bb2-8c92-9ef9581f5572 +2024-09-11 09:08:38.36682 2024-09-11 09:08:38.366825 comef 8034 R rec 3bf02a1e-936c-4bff-b8b3-4f05b4649926 +2024-09-11 09:08:38.423116 2024-09-11 09:08:38.423121 comef 8035 R rec 1cd730ca-3c22-4c31-ae8f-9a84be95f9fc +2024-09-11 09:08:38.475267 2024-09-11 09:08:38.475272 comef 8036 R rec 1118e91d-07b0-4874-a95b-9a5482b05055 +2024-09-11 09:08:38.530769 2024-09-11 09:08:38.530773 comef 8037 R rec 537f8b52-8884-4600-95d3-e307856433a5 +2024-09-11 09:08:38.589702 2024-09-11 09:08:38.589707 comef 8038 R rec 162cfc01-26fc-4a56-b214-264fb4f8f69b +2024-09-11 09:08:38.65521 2024-09-11 09:08:38.655214 comef 8039 R rec eb842338-a60f-460d-8f30-9574d52a8370 +2024-09-11 09:08:38.722779 2024-09-11 09:08:38.722783 comef 8040 R rec 65e6db2e-c92d-4c50-860f-cdca328ce195 +2024-09-11 09:08:38.779623 2024-09-11 09:08:38.779629 comef 8041 R rec 512266e7-2a2e-483c-9b81-9dd9e7606da7 +2024-09-11 09:08:38.841325 2024-09-11 09:08:38.841331 comef 8042 R rec a5b28ae3-393d-4315-8828-f0da45628f59 +2024-09-11 09:08:38.898289 2024-09-11 09:08:38.898294 comef 8043 R rec bd3963ea-506d-4c1e-a9fc-86089ecb7972 +2024-09-11 09:08:38.959525 2024-09-11 09:08:38.959531 comef 8044 R rec 1d965063-44d4-4706-a882-4f58871b12c8 +2024-09-11 09:08:39.022958 2024-09-11 09:08:39.022962 comef 8045 R rec 76924892-17dc-42c5-a10a-c02f493e7c36 +2024-09-11 09:08:39.081839 2024-09-11 09:08:39.081843 comef 8046 R rec 42d620d1-e6b2-4a31-a04d-b1152cecc703 +2024-09-11 09:08:39.140469 2024-09-11 09:08:39.140474 comef 8047 R rec 469d375f-ed16-4822-878f-66e351a72616 +2024-09-11 09:08:39.198078 2024-09-11 09:08:39.198083 comef 8048 R rec 35174538-9c05-47a1-b105-79b40cb48b03 +2024-09-11 09:08:39.260482 2024-09-11 09:08:39.260487 comef 8049 R rec f6e249fa-8da6-4f24-a847-4cec3e6500fc +2024-09-11 09:08:39.316017 2024-09-11 09:08:39.316022 comef 8050 R rec 7dbde98d-92c3-4f47-b21e-12d85e0a70e7 +2024-09-11 09:08:39.374013 2024-09-11 09:08:39.374018 comef 8051 R rec c32e5812-a7f2-495f-a2db-2484b0111268 +2024-09-11 09:08:39.435933 2024-09-11 09:08:39.435964 comef 8052 R rec 9a55d833-a9da-476f-a0fa-ccaafc796c95 +2024-09-11 09:08:39.501981 2024-09-11 09:08:39.501987 comef 8053 R rec 19baa9ad-d6cb-467e-87b1-aaa524fc076e +2024-09-11 09:08:39.559818 2024-09-11 09:08:39.559824 comef 8054 R rec 1f8cb497-61a9-4963-9eae-4c71d4dc50e4 +2024-09-11 09:08:39.61886 2024-09-11 09:08:39.618865 comef 8055 R rec 4610c930-620c-4cb8-89cb-48d8ff6d3dd7 +2024-09-11 09:08:39.675869 2024-09-11 09:08:39.675875 comef 8056 R rec dbd68415-ae75-4cd4-b0dd-7d7c49a0363e +2024-09-11 09:08:39.741408 2024-09-11 09:08:39.741414 comef 8057 R rec dce3638e-b07f-4499-8a47-011b0aed0703 +2024-09-11 09:08:39.814166 2024-09-11 09:08:39.814171 comef 8058 R rec f5517235-13bf-4a2a-a706-634e2bf11908 +2024-09-11 09:08:39.876976 2024-09-11 09:08:39.876982 comef 8059 R rec c197e8db-e956-4dcd-81e5-784b5c5379b2 +2024-09-11 09:08:39.933258 2024-09-11 09:08:39.933263 comef 8060 R rec 061a7431-e0cf-4a1e-a386-81651ab82d96 +2024-09-11 09:08:40.047179 2024-09-11 09:08:40.047182 comef 8061 R rec de89461f-0bed-4f82-96a1-06bf07793ec3 +2024-09-11 09:08:40.106622 2024-09-11 09:08:40.106627 comef 8062 R rec 32e7ad3f-1672-4224-8a9a-0e48aa19dba5 +2024-09-11 09:08:40.162671 2024-09-11 09:08:40.162676 comef 8063 R rec bee38286-dee4-48fe-9135-e7ed3c42b28e +2024-09-11 09:08:40.221796 2024-09-11 09:08:40.2218 comef 8064 R rec ca7696e2-ab86-4844-833c-cfa734c13d7c +2024-09-11 09:08:40.280972 2024-09-11 09:08:40.280977 comef 8065 R rec 2e9d005f-1694-4d67-829e-8a5d7111882f +2024-09-11 09:08:40.344179 2024-09-11 09:08:40.344184 comef 8066 R rec 3938f1e5-4e38-40e1-9409-645b36963d45 +2024-09-11 09:08:40.404306 2024-09-11 09:08:40.404311 comef 8067 R rec 69fd6e9c-6b00-4fed-bb65-5cc1cd0ff7b5 +2024-09-11 09:08:40.461428 2024-09-11 09:08:40.461434 comef 8068 R rec b73ef90f-da53-43f2-a3b1-2a5ce247f07c +2024-09-11 09:08:40.52195 2024-09-11 09:08:40.521955 comef 8069 R rec a581230d-55bc-4073-9783-b50ad5b29c7a +2024-09-11 09:08:40.579977 2024-09-11 09:08:40.579981 comef 8070 R rec 6e33e550-1d9d-43ab-8082-881ca02ff79d +2024-09-11 09:08:40.64492 2024-09-11 09:08:40.644925 comef 8071 R rec 405beb1a-cb67-4f1a-99c3-ea83b6383222 +2024-09-11 09:08:40.70727 2024-09-11 09:08:40.707275 comef 8072 R rec 07da1e59-64e9-4eaa-9bb7-f1ce2d5837f1 +2024-09-11 09:08:40.777117 2024-09-11 09:08:40.777123 comef 8073 R rec 0e887b1d-47cf-4858-aedf-45aa0c71e252 +2024-09-11 09:08:40.848768 2024-09-11 09:08:40.848775 comef 8074 R rec 650f558c-3ed5-489d-98c3-cc067991af79 +2024-09-11 09:08:40.909651 2024-09-11 09:08:40.909656 comef 8075 R rec 306b2639-00d2-4fdc-bb3a-e5f2c7fdd8ae +2024-09-11 09:08:40.969155 2024-09-11 09:08:40.969163 comef 8076 R rec d6bac467-88f0-46b0-943c-9af2c79381a0 +2024-09-11 09:08:41.039425 2024-09-11 09:08:41.03943 comef 8077 R rec 505f3be3-4840-4849-bfd8-fd5f3e5a7c4e +2024-09-11 09:08:41.095469 2024-09-11 09:08:41.095474 comef 8078 R rec fd03a327-ddce-4c23-996e-e2e0bb553c03 +2024-09-11 09:08:41.154511 2024-09-11 09:08:41.154516 comef 8079 R rec b0d8ae1b-6e3f-42f0-beb8-67c3360db4ea +2024-09-11 09:08:41.219254 2024-09-11 09:08:41.219259 comef 8080 R rec 1ce22dd9-d2d1-439f-98b9-0a2a064e2699 +2024-09-11 09:08:41.281055 2024-09-11 09:08:41.28106 comef 8081 R rec 59311b40-e6ad-4daf-812a-2629765e5169 +2024-09-11 09:08:41.338046 2024-09-11 09:08:41.338051 comef 8082 R rec 2b88fcd1-089f-471e-8b63-65bb39879095 +2024-09-11 09:08:41.393479 2024-09-11 09:08:41.393484 comef 8083 R rec 0eeb1924-c139-4b3e-9696-8ca0c3779876 +2024-09-11 09:08:41.454584 2024-09-11 09:08:41.454589 comef 8084 R rec 3aa910fb-d004-4ee9-a227-be77ead5ab20 +2024-09-11 09:08:41.548199 2024-09-11 09:08:41.548204 comef 8085 R rec 72f3f2da-2801-4dd5-a96e-a1983281b26a +2024-09-11 09:08:41.610525 2024-09-11 09:08:41.610529 comef 8086 R rec 0137ccbc-3e3e-4daa-8bc1-242cba16c71f +2024-09-11 09:08:41.673469 2024-09-11 09:08:41.673473 comef 8087 R rec 41eb3fac-793c-4302-bfac-abb8268549ec +2024-09-11 09:08:41.742592 2024-09-11 09:08:41.742597 comef 8088 R rec e90a2d28-8e75-4344-9822-58aa9a7e1b96 +2024-09-11 09:08:41.810132 2024-09-11 09:08:41.810137 comef 8089 R rec e8e07261-6a35-4a40-b449-91f448387398 +2024-09-11 09:08:41.873798 2024-09-11 09:08:41.873803 comef 8090 R rec 33b99077-a3d6-4654-b506-e93c1b2e162c +2024-09-11 09:08:41.932909 2024-09-11 09:08:41.932914 comef 8091 R rec 24636522-4bd6-46e7-9ef8-fdd92c03bbf2 +2024-09-11 09:08:41.997467 2024-09-11 09:08:41.997471 comef 8092 R rec a4f131c8-f68f-4983-ba46-3976bc70bb70 +2024-09-11 09:08:42.054848 2024-09-11 09:08:42.054854 comef 8093 R rec e146a576-c555-4c41-9d49-ebcdff8978e6 +2024-09-11 09:08:43.960097 2024-09-11 09:08:43.960102 comef 8094 R rec d10425ac-7454-4c6c-907f-19baf4f83379 +2024-09-11 09:08:44.034634 2024-09-11 09:08:44.034642 comef 8095 R rec 4faa2e68-6fa9-41d6-8efe-dde292a07d16 +2024-09-11 09:08:44.087761 2024-09-11 09:08:44.087766 comef 8096 R rec 446571b8-1c5a-4da2-b007-56ff86b8ab91 +2024-09-11 09:08:44.144919 2024-09-11 09:08:44.144924 comef 8097 R rec da8ee197-df49-4d7b-b78f-09aa14534122 +2024-09-11 09:08:44.199424 2024-09-11 09:08:44.199429 comef 8098 R rec dfff5b98-35fb-4c57-9a82-1355d8f1a807 +2024-09-11 09:08:44.258592 2024-09-11 09:08:44.258597 comef 8099 R rec 60a760f6-7ca5-4c9a-b219-0e573aae4fe8 +2024-09-11 09:08:44.310939 2024-09-11 09:08:44.310944 comef 8100 R rec aaf01e37-d975-483d-8483-246c4cb62a47 +2024-09-11 09:08:44.362705 2024-09-11 09:08:44.362709 comef 8101 R rec d4332a38-90af-4aea-babb-ac4c85f82f08 +2024-09-11 09:08:44.41554 2024-09-11 09:08:44.415546 comef 8102 R rec af7a5b54-9455-4bc2-8581-31c6c6ef4e38 +2024-09-11 09:08:44.467251 2024-09-11 09:08:44.467255 comef 8103 R rec 57e918e5-2b5c-455b-b511-7ec0c69eb99c +2024-09-11 09:08:44.520201 2024-09-11 09:08:44.520206 comef 8104 R rec c6502658-c395-46d3-9dbc-2d9833ce09c6 +2024-09-11 09:08:44.570637 2024-09-11 09:08:44.570643 comef 8105 R rec 2d1d0489-153d-41f1-b2a0-9771bd2061f4 +2024-09-11 09:08:44.624206 2024-09-11 09:08:44.62421 comef 8106 R rec 7096b333-eba2-4a84-a239-5da4b87dd4cd +2024-09-11 09:08:44.679963 2024-09-11 09:08:44.679968 comef 8107 R rec 106fbaa2-95b5-4715-9452-8d4d0e5a2279 +2024-09-11 09:08:44.738013 2024-09-11 09:08:44.738018 comef 8108 R rec bcc13b8d-cde6-44ed-babf-357ab69ce56d +2024-09-11 09:08:44.79794 2024-09-11 09:08:44.797945 comef 8109 R rec 6c4a1846-9aa1-49c8-b87c-9dfbec61caef +2024-09-11 09:08:44.847359 2024-09-11 09:08:44.847365 comef 8110 R rec be56b150-3641-4243-84d0-184bc7b4ee96 +2024-09-11 09:08:44.901209 2024-09-11 09:08:44.901213 comef 8111 R rec af40cc61-0f40-43c1-987b-ff6389c4d462 +2024-09-11 09:08:44.980467 2024-09-11 09:08:44.980472 comef 8112 R rec 671d985a-4f83-4bc8-93bd-c35db9b9350e +2024-09-11 09:08:45.034567 2024-09-11 09:08:45.034572 comef 8113 R rec 40358686-21c0-4928-a292-39dc29d109a5 +2024-09-11 09:08:45.085624 2024-09-11 09:08:45.085629 comef 8114 R rec d8732b02-2086-450b-8885-c23e5047d799 +2024-09-11 09:08:45.137091 2024-09-11 09:08:45.137098 comef 8115 R rec 82b0764e-767a-4a1a-871e-5e0b0430b6e1 +2024-09-11 09:08:45.18917 2024-09-11 09:08:45.189175 comef 8116 R rec 6afe42e2-6e62-4c33-a9d1-b8cd3650b838 +2024-09-11 09:08:45.240421 2024-09-11 09:08:45.240426 comef 8117 R rec 877de846-29e4-409e-8d8c-63b1947ab940 +2024-09-11 09:08:45.292763 2024-09-11 09:08:45.292768 comef 8118 R rec d36ef08f-e340-49c5-b133-e56b7e0507f2 +2024-09-11 09:08:45.343171 2024-09-11 09:08:45.343176 comef 8119 R rec 619a6a29-1295-47c5-9df7-c24ceba3aab4 +2024-09-11 09:08:45.441205 2024-09-11 09:08:45.44121 comef 8120 R rec e364e1b8-b7f0-4a8e-81da-c1816758eceb +2024-09-11 09:08:45.496156 2024-09-11 09:08:45.496161 comef 8121 R rec 83c812da-0ea6-4e85-be45-5bee1169b241 +2024-09-11 09:08:45.550208 2024-09-11 09:08:45.550214 comef 8122 R rec 48bce065-3d03-40ea-9705-df22f1e7bdd1 +2024-09-11 09:08:45.600901 2024-09-11 09:08:45.600905 comef 8123 R rec 50758d2d-d208-4fad-9798-1d39c4e24504 +2024-09-11 09:08:45.654024 2024-09-11 09:08:45.654028 comef 8124 R rec 4825f50b-8a24-4716-b812-a70e737a4d1f +2024-09-11 09:08:45.70481 2024-09-11 09:08:45.704815 comef 8125 R rec c07cf68d-09ec-4382-a7e9-9732989839d6 +2024-09-11 09:08:45.75716 2024-09-11 09:08:45.757164 comef 8126 R rec 2b32c6b0-e50b-4c6c-b43f-8a6e14ca9e19 +2024-09-11 09:08:45.811142 2024-09-11 09:08:45.811146 comef 8127 R rec b8e916f2-904c-4936-afc0-dfe8104e5749 +2024-09-11 09:08:45.860898 2024-09-11 09:08:45.860903 comef 8128 R rec 67f55fc2-bd47-476d-af2e-f87502b7ac5a +2024-09-11 09:08:45.911678 2024-09-11 09:08:45.911683 comef 8129 R rec 4ed6df4c-1cbc-4fca-91dd-f4f1efe2af9b +2024-09-11 09:08:45.961363 2024-09-11 09:08:45.961368 comef 8130 R rec fc96b1d0-d347-4432-b487-4c87c523391f +2024-09-11 09:08:46.014459 2024-09-11 09:08:46.014464 comef 8131 R rec f0ed98e3-042e-49dd-9ad8-fd9ecca04fde +2024-09-11 09:08:46.074551 2024-09-11 09:08:46.074557 comef 8132 R rec 041d6505-e990-4f5b-97c4-733bba03531c +2024-09-11 09:08:46.1357 2024-09-11 09:08:46.135705 comef 8133 R rec bacecb28-ad9b-4c88-b487-0c3215ccaffd +2024-09-11 09:08:46.200127 2024-09-11 09:08:46.200132 comef 8134 R rec 65dbdc7e-628e-4eff-bb25-e2dca1bc5654 +2024-09-11 09:08:46.271245 2024-09-11 09:08:46.271251 comef 8135 R rec 56167e5f-d456-4a91-b3a2-160bc4ad90e2 +2024-09-11 09:08:46.326938 2024-09-11 09:08:46.326943 comef 8136 R rec 64aef07b-97da-45da-af0c-0be8274b2b25 +2024-09-11 09:08:46.375122 2024-09-11 09:08:46.375128 comef 8137 R rec bc9af770-4dde-460d-beff-2fd8f44628fe +2024-09-11 09:08:46.423255 2024-09-11 09:08:46.423259 comef 8138 R rec cc952789-f2f1-4af9-83a3-d77f33d9d117 +2024-09-11 09:08:46.472926 2024-09-11 09:08:46.472931 comef 8139 R rec 3c932e6f-b26c-4a0c-b3ee-9ec9d6280baf +2024-09-11 09:08:46.521033 2024-09-11 09:08:46.521038 comef 8140 R rec a37fa583-58b3-473e-afa8-2f4a04f1baf2 +2024-09-11 09:08:46.571441 2024-09-11 09:08:46.571446 comef 8141 R rec bc960a1f-10f5-4d1e-a1e6-2ba5d2db2c4c +2024-09-11 09:08:46.624388 2024-09-11 09:08:46.624392 comef 8142 R rec 99167645-ba8b-47ee-8170-7bc9f3375ad1 +2024-09-11 09:08:46.676807 2024-09-11 09:08:46.676811 comef 8143 R rec 76d4a336-66d7-413c-866f-dddefb392c5a +2024-09-11 09:08:46.72813 2024-09-11 09:08:46.728135 comef 8144 R rec 4ff53093-14be-47ae-bb0a-7fa92302af08 +2024-09-11 09:08:46.780434 2024-09-11 09:08:46.78044 comef 8145 R rec a789eaf6-cb22-4ade-bbe4-8c43c9952ffa +2024-09-11 09:08:46.837855 2024-09-11 09:08:46.83786 comef 8146 R rec 35fa0fae-f07e-4a37-9ab8-438d3e83600a +2024-09-11 09:08:46.889663 2024-09-11 09:08:46.889668 comef 8147 R rec 9e32991b-1d20-4516-b55a-2cb26118cbf1 +2024-09-11 09:08:46.949057 2024-09-11 09:08:46.949064 comef 8148 R rec 6b4f1151-06d1-4212-9131-b2674bb5c0a7 +2024-09-11 09:08:47.001379 2024-09-11 09:08:47.001384 comef 8149 R rec 6b035e31-d405-47a9-b7eb-39967243473c +2024-09-11 09:08:47.053676 2024-09-11 09:08:47.053682 comef 8150 R rec 64bcd8fb-06ab-4645-b2b2-a0a87c2ffc0c +2024-09-11 09:08:47.106057 2024-09-11 09:08:47.106062 comef 8151 R rec 9d20c3d2-33c0-4207-8336-dc3f3a0f883e +2024-09-11 09:08:47.15906 2024-09-11 09:08:47.159065 comef 8152 R rec a3db7a1a-2bb4-4df1-b373-70753718d035 +2024-09-11 09:08:47.218531 2024-09-11 09:08:47.218537 comef 8153 R rec 509e98c5-32f6-4162-b345-1d0ba0c3340d +2024-09-11 09:08:47.268557 2024-09-11 09:08:47.268564 comef 8154 R rec 22db0990-a20b-47df-bb82-1ad5e5ae7f00 +2024-09-11 09:08:47.323928 2024-09-11 09:08:47.323933 comef 8155 R rec 548499ae-f8cc-4b1c-b2fd-00973c3a45fc +2024-09-11 09:08:47.380378 2024-09-11 09:08:47.380384 comef 8156 R rec 3f7bb910-c41f-4e7b-8f95-548e26c7c5ac +2024-09-11 09:08:47.43847 2024-09-11 09:08:47.438476 comef 8157 R rec 4bfa4792-180c-4a6f-ae44-731767d7475d +2024-09-11 09:08:47.499121 2024-09-11 09:08:47.499126 comef 8158 R rec cb25e36f-cbe7-4357-a20a-a8998330b444 +2024-09-11 09:08:47.547423 2024-09-11 09:08:47.547428 comef 8159 R rec d6a9bca8-fcf1-4853-8e71-e3e0755b878c +2024-09-11 09:08:47.602954 2024-09-11 09:08:47.60296 comef 8160 R rec 759c0155-d6e1-4fb0-b13b-af73cfabf364 +2024-09-11 09:08:47.657848 2024-09-11 09:08:47.657853 comef 8161 R rec 93f162ea-861a-46df-81cc-efaec7b16aec +2024-09-11 09:08:47.708349 2024-09-11 09:08:47.708354 comef 8162 R rec 78a042db-b459-4285-aefa-d1b3d2bc8a75 +2024-09-11 09:08:47.762016 2024-09-11 09:08:47.762021 comef 8163 R rec c4108445-4957-49b8-aee1-1c5f7666f1a3 +2024-09-11 09:08:47.814222 2024-09-11 09:08:47.814227 comef 8164 R rec d2afbe69-6d1c-4cc2-8628-08a57b4036dc +2024-09-11 09:08:47.870502 2024-09-11 09:08:47.870507 comef 8165 R rec 7b1982ac-be69-406d-b2b6-d79f1311af81 +2024-09-11 09:08:47.919531 2024-09-11 09:08:47.919536 comef 8166 R rec 40492d38-419e-4dff-b79f-639868f755f7 +2024-09-11 09:08:47.96652 2024-09-11 09:08:47.966525 comef 8167 R rec 558508cc-31ef-4eac-b555-396ebf372cce +2024-09-11 09:08:48.01957 2024-09-11 09:08:48.019576 comef 8168 R rec 81611f07-42ec-4081-99e4-bf12ae789eec +2024-09-11 09:08:48.073587 2024-09-11 09:08:48.073593 comef 8169 R rec 33d13c39-b126-474a-a97f-58d15407cd88 +2024-09-11 09:08:48.12924 2024-09-11 09:08:48.129246 comef 8170 R rec 564fee23-c438-47f7-a719-f91825171668 +2024-09-11 09:08:48.180964 2024-09-11 09:08:48.180969 comef 8171 R rec 67790500-b791-47e3-a19d-0e5c64abb754 +2024-09-11 09:08:48.234438 2024-09-11 09:08:48.234442 comef 8172 R rec 9b3bf4d6-b14d-4e20-8802-24ae3d50ea2c +2024-09-11 09:08:48.289503 2024-09-11 09:08:48.289509 comef 8173 R rec 24c4b680-7e4d-462d-88a2-495820d5825f +2024-09-11 09:08:48.341014 2024-09-11 09:08:48.341019 comef 8174 R rec 04b5063a-64b0-4085-a3d2-ed5e8c8c5da9 +2024-09-11 09:08:48.395837 2024-09-11 09:08:48.395842 comef 8175 R rec 5d69aa2a-f617-4ed5-a0d5-5d09a5cdc50e +2024-09-11 09:08:48.444571 2024-09-11 09:08:48.444576 comef 8176 R rec b9c9bb74-039b-4dce-b58d-09fca9daccae +2024-09-11 09:08:48.500819 2024-09-11 09:08:48.500823 comef 8177 R rec 03c30212-8bd9-43df-bae1-625f73d97cb2 +2024-09-11 09:08:48.554142 2024-09-11 09:08:48.554147 comef 8178 R rec 9df4c7bb-458f-447b-82bf-91dbe7ce2952 +2024-09-11 09:08:48.607561 2024-09-11 09:08:48.607566 comef 8179 R rec b054e210-a693-438e-ba39-779a4745c500 +2024-09-11 09:08:48.659616 2024-09-11 09:08:48.65962 comef 8180 R rec a2362f09-4704-4128-b999-36fb675de766 +2024-09-11 09:08:48.722713 2024-09-11 09:08:48.722718 comef 8181 R rec bfa351e7-78e2-497d-8569-d179517ba65f +2024-09-11 09:08:48.790146 2024-09-11 09:08:48.790151 comef 8182 R rec 3d805579-2afc-415d-a640-7dc16a5e864e +2024-09-11 09:08:48.844381 2024-09-11 09:08:48.844386 comef 8183 R rec 46abfcc5-8cee-46a6-ab8b-f9acdea882de +2024-09-11 09:08:48.9005 2024-09-11 09:08:48.900505 comef 8184 R rec 05ca5d4e-b067-45bb-b2ca-cf7e91f485bb +2024-09-11 09:08:48.954925 2024-09-11 09:08:48.954929 comef 8185 R rec 35c70fde-afdf-41cc-9304-b50cd677d957 +2024-09-11 09:08:49.00658 2024-09-11 09:08:49.006585 comef 8186 R rec c6463c3d-a1fb-4116-a5eb-49966157eac5 +2024-09-11 09:08:49.05833 2024-09-11 09:08:49.058335 comef 8187 R rec 74af14e8-e01a-4a07-b878-6f50222acb83 +2024-09-11 09:08:49.111736 2024-09-11 09:08:49.111741 comef 8188 R rec 8dc68807-a138-4906-8df4-fa6569e1acfb +2024-09-11 09:08:49.165797 2024-09-11 09:08:49.165801 comef 8189 R rec 9f50a182-4fdf-49be-9117-22368d41d705 +2024-09-11 09:08:49.23004 2024-09-11 09:08:49.230044 comef 8190 R rec 83c6990a-bffe-40e9-ab5a-795b5534a033 +2024-09-11 09:08:49.289997 2024-09-11 09:08:49.290002 comef 8191 R rec 0fe455be-f7c0-4b60-ba56-e4ae71122f70 +2024-09-11 09:08:49.344597 2024-09-11 09:08:49.344602 comef 8192 R rec c0d791de-3a20-4320-a20c-b4e50fdba657 +2024-09-11 09:08:49.398106 2024-09-11 09:08:49.398111 comef 8193 R rec 167b087f-8ce2-440a-9566-cb041bce0238 +2024-09-11 09:08:49.455664 2024-09-11 09:08:49.455669 comef 8194 R rec 80c96ea2-5bc4-4993-980b-e5688b6c8ee3 +2024-09-11 09:08:49.508979 2024-09-11 09:08:49.508984 comef 8195 R rec 7b076c24-23fd-4a6f-85ab-0434445c2d13 +2024-09-11 09:08:49.563501 2024-09-11 09:08:49.563506 comef 8196 R rec 3ba6f3bc-cc84-4d3a-8a84-d343bd2888a5 +2024-09-11 09:08:49.623197 2024-09-11 09:08:49.623202 comef 8197 R rec a0bdf3d1-75ec-4594-9f91-29110484dd54 +2024-09-11 09:08:49.676849 2024-09-11 09:08:49.676853 comef 8198 R rec 2c379b53-5c3e-4475-a374-4b6e170861f4 +2024-09-11 09:08:49.730565 2024-09-11 09:08:49.73057 comef 8199 R rec 8492095b-e29b-450b-ba55-adcd47a4a0b6 +2024-09-11 09:08:49.786716 2024-09-11 09:08:49.786721 comef 8200 R rec 71bc665d-af59-4528-bd28-6791da28272b +2024-09-11 09:08:49.857557 2024-09-11 09:08:49.857562 comef 8201 R rec b35f659f-94d4-4511-a8c6-df2e0480961e +2024-09-11 09:08:49.91298 2024-09-11 09:08:49.912985 comef 8202 R rec 727510f8-3734-4dc7-93c9-3d875c9968d6 +2024-09-11 09:08:49.9671 2024-09-11 09:08:49.967106 comef 8203 R rec 4472049b-f503-443b-ba25-698aefe645e9 +2024-09-11 09:08:50.028653 2024-09-11 09:08:50.028658 comef 8204 R rec d670d9cc-01da-4fcd-a51e-2b803bd5263a +2024-09-11 09:08:50.085282 2024-09-11 09:08:50.085288 comef 8205 R rec 83f0c461-42ad-4484-9e28-2f3512e33ee7 +2024-09-11 09:08:50.136695 2024-09-11 09:08:50.1367 comef 8206 R rec 369dfa01-ed3c-4209-86cb-8f2e441d8045 +2024-09-11 09:08:50.189065 2024-09-11 09:08:50.189069 comef 8207 R rec 23db87a9-0981-4fd0-8aa8-4b7f66ec841b +2024-09-11 09:08:50.249047 2024-09-11 09:08:50.249052 comef 8208 R rec f1fc0b07-3ce0-4194-9a6b-9b580e2c1dd1 +2024-09-11 09:08:50.309244 2024-09-11 09:08:50.309249 comef 8209 R rec 15c71fdb-1ad5-41f9-af69-0281ed673952 +2024-09-11 09:08:50.36474 2024-09-11 09:08:50.364746 comef 8210 R rec 195df9a6-1de8-40f5-be60-a85ad052d70e +2024-09-11 09:08:50.419384 2024-09-11 09:08:50.419389 comef 8211 R rec 680ca2d1-1ca3-41aa-b431-4f245c346975 +2024-09-11 09:08:50.470938 2024-09-11 09:08:50.470943 comef 8212 R rec 75d7fbb9-7e31-4b50-8166-7a8f1f420c65 +2024-09-11 09:08:50.528683 2024-09-11 09:08:50.528687 comef 8213 R rec b1688a2d-767e-470d-9ff3-3135ef9e63bf +2024-09-11 09:08:50.582319 2024-09-11 09:08:50.582324 comef 8214 R rec 0ebc0b68-bcd8-4d1c-9058-d00690189318 +2024-09-11 09:08:50.639684 2024-09-11 09:08:50.639689 comef 8215 R rec 5536f4f6-c200-4a82-bad8-93b8524bf868 +2024-09-11 09:08:50.691556 2024-09-11 09:08:50.691561 comef 8216 R rec bb46cbe2-71a6-4387-a3d5-93b341d58ab2 +2024-09-11 09:08:50.744252 2024-09-11 09:08:50.744258 comef 8217 R rec e0344993-2cbd-45fa-bb44-e066c8e5f31e +2024-09-11 09:08:50.799107 2024-09-11 09:08:50.799111 comef 8218 R rec b9427ce9-9943-4d6a-85fd-f2ea99d31097 +2024-09-11 09:08:50.850291 2024-09-11 09:08:50.850295 comef 8219 R rec 873d03c4-e2d6-4d1e-a405-ee8e38d697bd +2024-09-11 09:08:50.905811 2024-09-11 09:08:50.905815 comef 8220 R rec 78dbc407-c3ec-48f6-9184-2be413041c10 +2024-09-11 09:08:50.962104 2024-09-11 09:08:50.962109 comef 8221 R rec 70973f6a-839b-446b-89b4-cd5375715a1f +2024-09-11 09:08:51.022393 2024-09-11 09:08:51.022398 comef 8222 R rec 9514b0ae-7dd1-40bf-bfac-e458d9961c04 +2024-09-11 09:08:51.080753 2024-09-11 09:08:51.080758 comef 8223 R rec d71070f4-73f9-426d-ae57-b375a25b7fdb +2024-09-11 09:08:51.133529 2024-09-11 09:08:51.133534 comef 8224 R rec efeff1de-4c10-4136-beac-12428fd67e11 +2024-09-11 09:08:51.200762 2024-09-11 09:08:51.200767 comef 8225 R rec 5f2b4b48-aa4f-4878-b995-af968311c33b +2024-09-11 09:08:51.259976 2024-09-11 09:08:51.259981 comef 8226 R rec 7cb2509c-156a-412a-bde7-7fac738e68b2 +2024-09-11 09:08:51.31157 2024-09-11 09:08:51.311575 comef 8227 R rec e9bb1017-1a02-4876-a8a3-9b117a0ef7de +2024-09-11 09:08:51.361253 2024-09-11 09:08:51.361258 comef 8228 R rec 9c9b6349-410a-43bb-93df-2d2d68e01f34 +2024-09-11 09:08:51.417311 2024-09-11 09:08:51.417316 comef 8229 R rec 33af17ab-9af4-4a72-82c2-7256b3984d27 +2024-09-11 09:08:51.469451 2024-09-11 09:08:51.469456 comef 8230 R rec 69805ccf-c64e-4531-9fc4-7bdfdc91c5da +2024-09-11 09:08:51.521822 2024-09-11 09:08:51.521826 comef 8231 R rec 7577143d-cc9a-4c8f-a904-b43cd9c821fb +2024-09-11 09:08:51.57519 2024-09-11 09:08:51.575195 comef 8232 R rec 5f6e1f35-73de-439d-addb-efb1d40d66d9 +2024-09-11 09:08:51.630144 2024-09-11 09:08:51.630148 comef 8233 R rec 17dffd88-3e6f-4f83-918e-41deb7624ba7 +2024-09-11 09:08:51.681162 2024-09-11 09:08:51.681167 comef 8234 R rec f4850d94-83c6-456b-8c57-6b4e26184e2d +2024-09-11 09:08:51.737355 2024-09-11 09:08:51.737361 comef 8235 R rec c2a79950-84fa-420b-906e-262eff10a1b2 +2024-09-11 09:08:51.796961 2024-09-11 09:08:51.796966 comef 8236 R rec d72578be-cc59-458b-919f-9b73b010b83f +2024-09-11 09:08:51.855218 2024-09-11 09:08:51.855223 comef 8237 R rec 31bbc7e5-1a54-482f-b703-a23322973c23 +2024-09-11 09:08:51.908254 2024-09-11 09:08:51.90826 comef 8238 R rec 72730daa-ba69-4a9b-b90c-3d61533d177d +2024-09-11 09:08:51.963753 2024-09-11 09:08:51.963758 comef 8239 R rec 4cfb075e-ea1a-46e0-8121-a70bf4e3ef00 +2024-09-11 09:08:52.021914 2024-09-11 09:08:52.021919 comef 8240 R rec 94287ebe-fe43-42bf-9d62-70baf8203a3a +2024-09-11 09:08:52.076988 2024-09-11 09:08:52.076994 comef 8241 R rec 3bb259c3-b447-4572-b905-7184b78cfa62 +2024-09-11 09:08:52.132402 2024-09-11 09:08:52.132406 comef 8242 R rec a3a3ec56-a851-4405-8f30-20b910a73f37 +2024-09-11 09:08:52.186759 2024-09-11 09:08:52.186764 comef 8243 R rec df6ef305-0622-42a6-85f0-661c2c08ce3c +2024-09-11 09:08:52.24042 2024-09-11 09:08:52.240425 comef 8244 R rec 964e13ca-27b7-4ab4-a2f7-c5dabd90299c +2024-09-11 09:08:52.295611 2024-09-11 09:08:52.295616 comef 8245 R rec d33d62c3-cce9-4ecf-8976-d675ae9ef551 +2024-09-11 09:08:52.348553 2024-09-11 09:08:52.348557 comef 8246 R rec dd80b8b9-a795-4e47-83a5-63d6686076bf +2024-09-11 09:08:52.404452 2024-09-11 09:08:52.404457 comef 8247 R rec 81fb0382-3a1a-4ec9-9ffb-b6acd3bcd836 +2024-09-11 09:08:52.469055 2024-09-11 09:08:52.46906 comef 8248 R rec 75b89fc5-879a-4f28-841c-466109c00ee8 +2024-09-11 09:08:52.529749 2024-09-11 09:08:52.529754 comef 8249 R rec abbc3251-dae5-4f3e-87d3-09f081fb2f93 +2024-09-11 09:08:52.58395 2024-09-11 09:08:52.583956 comef 8250 R rec e7089972-1d18-4b24-b47a-e685fe71365c +2024-09-11 09:08:52.64118 2024-09-11 09:08:52.641185 comef 8251 R rec 2c5421f8-f963-4f67-80c4-eba9b233e042 +2024-09-11 09:08:52.709547 2024-09-11 09:08:52.709553 comef 8252 R rec d560d133-db85-40c5-b726-2262498de7b0 +2024-09-11 09:08:52.768303 2024-09-11 09:08:52.76831 comef 8253 R rec f4422a86-95b2-4dff-923b-3711e0e80065 +2024-09-11 09:08:52.821459 2024-09-11 09:08:52.821464 comef 8254 R rec bbb039f4-48ed-466b-9140-274c1a040738 +2024-09-11 09:08:52.872089 2024-09-11 09:08:52.872094 comef 8255 R rec edd7bbc9-febf-46e3-8026-92c59cdb0eab +2024-09-11 09:08:52.925752 2024-09-11 09:08:52.925756 comef 8256 R rec 58b0b476-4ab2-4705-8c21-42964112ae23 +2024-09-11 09:08:52.984699 2024-09-11 09:08:52.984703 comef 8257 R rec f88e54bf-be6b-42c2-a245-e289a2b521db +2024-09-11 09:08:53.039596 2024-09-11 09:08:53.039601 comef 8258 R rec 87e3eb5b-1999-40ee-bb61-9626ecff24fe +2024-09-11 09:08:53.095126 2024-09-11 09:08:53.095131 comef 8259 R rec 5edecaa6-4168-4b00-be22-a6afe03a2d8d +2024-09-11 09:08:53.149591 2024-09-11 09:08:53.149596 comef 8260 R rec e23fcfd9-d0b2-4332-99af-b16a5dee3061 +2024-09-11 09:08:53.205058 2024-09-11 09:08:53.205062 comef 8261 R rec 643ce590-bf15-4925-a089-4fe74ae90591 +2024-09-11 09:08:53.256865 2024-09-11 09:08:53.25687 comef 8262 R rec 86f2306b-8dec-4b28-8534-df3b3ad908c4 +2024-09-11 09:08:53.311308 2024-09-11 09:08:53.311313 comef 8263 R rec 065c8ecc-5e01-4dbf-b8d9-675cbf83bcd8 +2024-09-11 09:08:53.36391 2024-09-11 09:08:53.363915 comef 8264 R rec 53a744a5-685f-4010-a991-7ea92c458028 +2024-09-11 09:08:53.422765 2024-09-11 09:08:53.42277 comef 8265 R rec d3fc2b06-5f4c-46fd-aba6-40c2fef5cd66 +2024-09-11 09:08:53.478456 2024-09-11 09:08:53.478461 comef 8266 R rec 913cb3ad-a470-4739-8d22-867d7e21be69 +2024-09-11 09:08:53.533409 2024-09-11 09:08:53.533414 comef 8267 R rec 8442003d-68b4-4b9e-b39f-23df79c931e4 +2024-09-11 09:08:53.600762 2024-09-11 09:08:53.600768 comef 8268 R rec 6356d037-5599-43d9-b06e-0076b4033e0f +2024-09-11 09:08:53.658591 2024-09-11 09:08:53.658596 comef 8269 R rec da118a1e-c2fc-40cd-86ec-b16f83c307f4 +2024-09-11 09:08:53.714031 2024-09-11 09:08:53.714035 comef 8270 R rec 204f1db4-ff14-4f1d-8f76-c29e31e52b9d +2024-09-11 09:08:53.768403 2024-09-11 09:08:53.768412 comef 8271 R rec b871c8f9-cb10-41f4-8089-820dc7d74adc +2024-09-11 09:08:53.823284 2024-09-11 09:08:53.823289 comef 8272 R rec a5d7500a-53d5-4f03-b7eb-413d00c6b23f +2024-09-11 09:08:53.875435 2024-09-11 09:08:53.87544 comef 8273 R rec e31e1489-d150-4406-aa13-97d7507c55f5 +2024-09-11 09:08:53.930472 2024-09-11 09:08:53.930478 comef 8274 R rec 8738a5b4-567c-47a8-9000-002696283c06 +2024-09-11 09:08:53.989065 2024-09-11 09:08:53.989069 comef 8275 R rec 5952f024-36b4-4c36-b0b1-bff2c47f69f2 +2024-09-11 09:08:54.047933 2024-09-11 09:08:54.047939 comef 8276 R rec e755f942-2d87-4a7f-b730-ce5ea7ac82e8 +2024-09-11 09:08:54.105818 2024-09-11 09:08:54.105823 comef 8277 R rec 100b8347-6f7e-4d33-aee8-5c760a289b16 +2024-09-11 09:08:54.160626 2024-09-11 09:08:54.16063 comef 8278 R rec b582ae7e-f3ac-42f5-b4ae-d2675bb853a4 +2024-09-11 09:08:54.223822 2024-09-11 09:08:54.223828 comef 8279 R rec be79a697-8c92-4f1e-8d8d-fef580dab7bb +2024-09-11 09:08:54.284476 2024-09-11 09:08:54.284482 comef 8280 R rec 91195108-b898-47f7-84bd-a2694d4b4bbf +2024-09-11 09:08:54.340781 2024-09-11 09:08:54.340786 comef 8281 R rec d3ef7a77-16b8-40a7-a457-119b7582adfe +2024-09-11 09:08:54.402916 2024-09-11 09:08:54.402921 comef 8282 R rec 0b655a57-e7ad-4320-ad57-dbd7363136e8 +2024-09-11 09:08:54.463422 2024-09-11 09:08:54.463427 comef 8283 R rec 6f3154c5-37ac-495c-bc47-67b1a66a2283 +2024-09-11 09:08:54.51808 2024-09-11 09:08:54.518085 comef 8284 R rec e23d5ca6-80f7-43f2-a5c8-61bd9d0e81a4 +2024-09-11 09:08:54.573875 2024-09-11 09:08:54.573879 comef 8285 R rec cf9faa5a-ab18-4fcf-b46d-19326191cdd0 +2024-09-11 09:08:54.632953 2024-09-11 09:08:54.632957 comef 8286 R rec 84b0369c-e0d6-4a1c-87b0-ff56e085cea5 +2024-09-11 09:08:54.695266 2024-09-11 09:08:54.695271 comef 8287 R rec 01d023ec-958d-429f-abe9-a357758788b8 +2024-09-11 09:08:54.765558 2024-09-11 09:08:54.765562 comef 8288 R rec 8e62c4cf-58e6-4555-9506-8a5c060c6de6 +2024-09-11 09:08:54.8232 2024-09-11 09:08:54.823205 comef 8289 R rec 4b56cbb2-acc2-490d-a34b-54800ac5ce89 +2024-09-11 09:08:54.877761 2024-09-11 09:08:54.877766 comef 8290 R rec b9dd1749-8a29-4b79-bdb4-b0ecc5fcfa25 +2024-09-11 09:08:54.932692 2024-09-11 09:08:54.932697 comef 8291 R rec cc9e6072-f0cd-4eab-bafe-fead4875cbe8 +2024-09-11 09:08:54.987436 2024-09-11 09:08:54.987441 comef 8292 R rec 808db494-8535-450e-ba5b-52a360e5ba4b +2024-09-11 09:08:55.045716 2024-09-11 09:08:55.045721 comef 8293 R rec b628f1f6-90f0-4770-81b2-3f0761764987 +2024-09-11 09:08:55.100582 2024-09-11 09:08:55.100586 comef 8294 R rec eb692926-439a-4b36-bddb-f252968c1ccb +2024-09-11 09:08:55.159024 2024-09-11 09:08:55.15903 comef 8295 R rec 2c1dbccd-dfa5-4603-9125-2e3a652ec825 +2024-09-11 09:08:55.220618 2024-09-11 09:08:55.220623 comef 8296 R rec 53203182-9086-4fe8-881d-d94b0eb1f72f +2024-09-11 09:08:55.295429 2024-09-11 09:08:55.295435 comef 8297 R rec 338cfc4a-b19f-4347-b29a-26c78f76029a +2024-09-11 09:08:55.351492 2024-09-11 09:08:55.351498 comef 8298 R rec 5a4a8ea5-4c3a-4770-b279-3f795156617a +2024-09-11 09:08:55.403666 2024-09-11 09:08:55.40367 comef 8299 R rec 154b6657-d41b-4548-8cee-da66fc8332be +2024-09-11 09:08:55.457532 2024-09-11 09:08:55.457537 comef 8300 R rec cf5788ef-9855-41ae-8a80-3dbf076739f7 +2024-09-11 09:08:55.519887 2024-09-11 09:08:55.519891 comef 8301 R rec 9d0441da-7dfb-4ca9-993b-d6a260538c68 +2024-09-11 09:08:55.620532 2024-09-11 09:08:55.620536 comef 8302 R rec 441f4ae6-3501-46c2-8946-cb5d7407cc45 +2024-09-11 09:08:55.674493 2024-09-11 09:08:55.674498 comef 8303 R rec ab37b96b-1734-4409-bfc4-81546a7e00fb +2024-09-11 09:08:55.732089 2024-09-11 09:08:55.732093 comef 8304 R rec 927be1a2-8f51-4dd2-ab2b-2bfcee53616f +2024-09-11 09:08:55.790502 2024-09-11 09:08:55.790507 comef 8305 R rec c1e07b51-dd75-4807-9470-2b8e812a3474 +2024-09-11 09:08:55.854704 2024-09-11 09:08:55.854708 comef 8306 R rec 870f7fa7-ed8d-4bc5-be99-8f6eb5def22f +2024-09-11 09:08:55.913237 2024-09-11 09:08:55.913242 comef 8307 R rec 9e70a815-31f4-48b5-bc80-cb564441cd4a +2024-09-11 09:08:55.96897 2024-09-11 09:08:55.968975 comef 8308 R rec 15d197ef-3564-408c-8650-7f94138fb9f7 +2024-09-11 09:08:56.031214 2024-09-11 09:08:56.031219 comef 8309 R rec e3ed219c-024f-48f9-9f08-9ab78ab5ca6f +2024-09-11 09:08:56.084127 2024-09-11 09:08:56.084133 comef 8310 R rec effe939a-207c-4509-8eaa-93a7bef685ba +2024-09-11 09:08:56.140279 2024-09-11 09:08:56.140284 comef 8311 R rec 024f3cf9-22cb-4b19-a335-9d9ca332388d +2024-09-11 09:08:56.195832 2024-09-11 09:08:56.195837 comef 8312 R rec 5d9d1f13-7cd1-458f-b86d-b14fa86fff1e +2024-09-11 09:08:56.25269 2024-09-11 09:08:56.252694 comef 8313 R rec 5cc8cb73-5b32-4470-9520-b749fd26bf9d +2024-09-11 09:08:56.308746 2024-09-11 09:08:56.308751 comef 8314 R rec 37d58990-26fa-4bb3-880e-09716bfaa1da +2024-09-11 09:08:56.365246 2024-09-11 09:08:56.36525 comef 8315 R rec 145f3e67-400c-4a80-a418-e1c671e73142 +2024-09-11 09:08:56.425058 2024-09-11 09:08:56.425064 comef 8316 R rec fb8ac5c8-904a-437e-9bd9-063b2b921ee9 +2024-09-11 09:08:56.483415 2024-09-11 09:08:56.483421 comef 8317 R rec 10fc4ffc-44b6-44a6-ba08-4bbd4b481923 +2024-09-11 09:08:56.541898 2024-09-11 09:08:56.541902 comef 8318 R rec 197dd5a1-6062-4814-bfd6-a2477b6d50ff +2024-09-11 09:08:56.598831 2024-09-11 09:08:56.598836 comef 8319 R rec 7939cdfd-5cb9-4251-b6cc-70c7f1c46edc +2024-09-11 09:08:56.653685 2024-09-11 09:08:56.65369 comef 8320 R rec 03ad4262-0797-4625-96b9-265da4aa66e1 +2024-09-11 09:08:56.714601 2024-09-11 09:08:56.714606 comef 8321 R rec be0ebe57-8e2f-4dd9-afc5-15c0ac03b3e7 +2024-09-11 09:08:56.767676 2024-09-11 09:08:56.767681 comef 8322 R rec 4d467020-8c7c-4ad1-b858-61100e7fd28d +2024-09-11 09:08:56.824495 2024-09-11 09:08:56.8245 comef 8323 R rec 14576877-17f9-4b1d-9a70-9ffc3cbcac70 +2024-09-11 09:08:56.87999 2024-09-11 09:08:56.879994 comef 8324 R rec 71e2f3b2-a8db-4ff8-9011-7b20e6fe09ed +2024-09-11 09:08:56.935634 2024-09-11 09:08:56.935638 comef 8325 R rec b79fd861-f5c6-47ce-a8ea-90b62acbc84c +2024-09-11 09:08:56.998297 2024-09-11 09:08:56.998301 comef 8326 R rec 470f2f2f-273a-47ef-b4a6-ca243578712a +2024-09-11 09:08:57.053165 2024-09-11 09:08:57.053169 comef 8327 R rec 73b0b581-982c-48d9-a4e8-ec00284c7272 +2024-09-11 09:08:57.120147 2024-09-11 09:08:57.120158 comef 8328 R rec 3d1bbaae-dea9-4d34-910b-ba02441d7d51 +2024-09-11 09:08:57.174837 2024-09-11 09:08:57.174842 comef 8329 R rec fc916a8c-058a-48e4-ac95-ea7784457648 +2024-09-11 09:08:57.231333 2024-09-11 09:08:57.231338 comef 8330 R rec 94575f28-caff-41f9-940b-8258528cd99d +2024-09-11 09:08:57.286169 2024-09-11 09:08:57.286174 comef 8331 R rec 0acbc63c-da96-467a-8e6c-14b28f409d26 +2024-09-11 09:08:57.347775 2024-09-11 09:08:57.34778 comef 8332 R rec 8d2eefb9-2f00-4845-8b3b-535335803d65 +2024-09-11 09:08:57.405774 2024-09-11 09:08:57.405779 comef 8333 R rec 7a1be4a8-98ba-4896-b84b-64b9b44e0c34 +2024-09-11 09:08:57.466261 2024-09-11 09:08:57.466265 comef 8334 R rec 664f3855-202c-477b-bb00-73569640926c +2024-09-11 09:08:57.52233 2024-09-11 09:08:57.522336 comef 8335 R rec ba73b06a-eeb2-4349-9ab6-826214b53f9c +2024-09-11 09:08:57.57784 2024-09-11 09:08:57.577845 comef 8336 R rec 6888edcc-d98c-4daa-908a-859b1caedfa7 +2024-09-11 09:08:57.645624 2024-09-11 09:08:57.64563 comef 8337 R rec 0a329aff-d606-43b5-bff0-cea8fd395ca9 +2024-09-11 09:08:57.702854 2024-09-11 09:08:57.702864 comef 8338 R rec a97cd512-0a5f-4655-bb06-a52b6b19f8af +2024-09-11 09:08:57.75667 2024-09-11 09:08:57.756676 comef 8339 R rec 8daaa28a-7371-4cfe-be7e-ba43a5484fc3 +2024-09-11 09:08:57.808241 2024-09-11 09:08:57.808245 comef 8340 R rec e11c59a3-5e16-49da-8ee7-a1f72b1429e9 +2024-09-11 09:08:57.863096 2024-09-11 09:08:57.863101 comef 8341 R rec d6c5a240-2d4e-409b-adb7-ef9542b6e6b4 +2024-09-11 09:08:57.918146 2024-09-11 09:08:57.918151 comef 8342 R rec e0078423-81a4-46a9-9b07-7174f5f03fb1 +2024-09-11 09:08:57.968872 2024-09-11 09:08:57.968879 comef 8343 R rec 6afa5e0f-b640-43e2-8fe8-751252f8cf9c +2024-09-11 09:08:58.02585 2024-09-11 09:08:58.025856 comef 8344 R rec 2f450073-7d4c-4d16-87bb-517d3ca97c4c +2024-09-11 09:08:58.090351 2024-09-11 09:08:58.090357 comef 8345 R rec 1435150c-8189-4480-b205-b15bf346c468 +2024-09-11 09:08:58.153225 2024-09-11 09:08:58.15323 comef 8346 R rec 1dfae54d-1311-4afe-ab76-aa685784829b +2024-09-11 09:08:58.20733 2024-09-11 09:08:58.207336 comef 8347 R rec 3db6b1e2-06c1-4f03-b7d8-ceeeb004f5fd +2024-09-11 09:08:58.262974 2024-09-11 09:08:58.262978 comef 8348 R rec 0ed6e07a-1e84-4533-90d0-891d8a2cb8b5 +2024-09-11 09:08:58.320262 2024-09-11 09:08:58.320266 comef 8349 R rec 7621d8cf-b51a-4b9d-926d-0003ed55d775 +2024-09-11 09:08:58.379052 2024-09-11 09:08:58.379057 comef 8350 R rec 29125a67-219c-46ac-8fe5-adad9df22006 +2024-09-11 09:08:58.446156 2024-09-11 09:08:58.446161 comef 8351 R rec e2a717ee-1faa-4611-a746-a8f8f385167d +2024-09-11 09:08:58.502058 2024-09-11 09:08:58.502062 comef 8352 R rec a9ed1d0b-71ac-48ee-acb6-73df2301805c +2024-09-11 09:08:58.5561 2024-09-11 09:08:58.556104 comef 8353 R rec 3b214fac-6487-4ba9-86db-97a22ebb032d +2024-09-11 09:08:58.614548 2024-09-11 09:08:58.614553 comef 8354 R rec d4146124-d3f1-4b84-963c-0b9d20fe5d9c +2024-09-11 09:08:58.668113 2024-09-11 09:08:58.668119 comef 8355 R rec 5acad3b3-cb72-43ad-a880-eed9e6f18a5e +2024-09-11 09:08:58.722065 2024-09-11 09:08:58.722069 comef 8356 R rec 69816e9c-6aa2-42fa-8c1b-d113c5b3711d +2024-09-11 09:08:58.778258 2024-09-11 09:08:58.778264 comef 8357 R rec 81e39a44-c3ad-458c-8b00-ebe2c73fa49d +2024-09-11 09:08:58.833142 2024-09-11 09:08:58.833147 comef 8358 R rec 6303d849-9357-4e67-90cf-7923386da3a1 +2024-09-11 09:08:58.889309 2024-09-11 09:08:58.889314 comef 8359 R rec ebd75482-8cd7-4559-99ba-2c4aa49f1653 +2024-09-11 09:08:58.943528 2024-09-11 09:08:58.943533 comef 8360 R rec 39f03613-afdd-4d41-b21b-84f9e8009d4d +2024-09-11 09:08:58.999141 2024-09-11 09:08:58.999146 comef 8361 R rec a9cf522a-e6d1-4db5-95fa-9215e882f892 +2024-09-11 09:08:59.060506 2024-09-11 09:08:59.060511 comef 8362 R rec 8ee8698e-87c7-4042-9ccc-516cfbda428b +2024-09-11 09:08:59.118439 2024-09-11 09:08:59.118445 comef 8363 R rec a0fb5d9d-3cb9-4740-ad8e-cd312c4bbd32 +2024-09-11 09:08:59.176886 2024-09-11 09:08:59.176891 comef 8364 R rec 02560090-4cd5-40c8-b37b-950f4bd87698 +2024-09-11 09:08:59.239439 2024-09-11 09:08:59.239444 comef 8365 R rec 9ac53631-bf02-44a3-a88f-b9bac7ab01d0 +2024-09-11 09:08:59.308017 2024-09-11 09:08:59.308023 comef 8366 R rec 3b253550-f2f8-4648-99f5-1acfa7cc98fb +2024-09-11 09:08:59.36042 2024-09-11 09:08:59.360425 comef 8367 R rec aaa0825c-68c7-4410-966c-79edcc09b22d +2024-09-11 09:08:59.411651 2024-09-11 09:08:59.411656 comef 8368 R rec 167a7a6f-bfe9-4221-8810-6226d9f2ed18 +2024-09-11 09:08:59.464589 2024-09-11 09:08:59.464594 comef 8369 R rec a88d4447-a7b8-430b-a588-94ffce75a751 +2024-09-11 09:08:59.519818 2024-09-11 09:08:59.519823 comef 8370 R rec 84b151e7-5a74-442f-96f0-8924471ee55c +2024-09-11 09:08:59.580515 2024-09-11 09:08:59.58052 comef 8371 R rec 62901358-afa7-4963-aa58-d7c881924429 +2024-09-11 09:08:59.63459 2024-09-11 09:08:59.634598 comef 8372 R rec 0da16089-7dee-4526-9bdc-06b5089633ef +2024-09-11 09:08:59.688009 2024-09-11 09:08:59.688014 comef 8373 R rec cfc07ffb-d48a-4435-b77c-203af4fa7e99 +2024-09-11 09:08:59.743692 2024-09-11 09:08:59.743697 comef 8374 R rec 4a8e1474-af91-41ce-85c2-b7841a9919f0 +2024-09-11 09:08:59.801468 2024-09-11 09:08:59.801475 comef 8375 R rec 2e70a099-d75c-4f43-a4bb-1733bc1ef11e +2024-09-11 09:08:59.858486 2024-09-11 09:08:59.858491 comef 8376 R rec ad19a04e-a884-4626-b582-b2e3c75a35cd +2024-09-11 09:08:59.914929 2024-09-11 09:08:59.914934 comef 8377 R rec dabff3e0-6610-44f5-8700-143935f7396e +2024-09-11 09:08:59.969052 2024-09-11 09:08:59.969057 comef 8378 R rec 3a6f21b3-582a-4b6c-84dd-1aadf9ca6139 +2024-09-11 09:09:00.02398 2024-09-11 09:09:00.023985 comef 8379 R rec fd46865f-0400-44b3-89ce-783b2eb07e6d +2024-09-11 09:09:00.075751 2024-09-11 09:09:00.075755 comef 8380 R rec 62de2013-a5e5-442f-9bc7-ff6ef0d67af2 +2024-09-11 09:09:00.132438 2024-09-11 09:09:00.132443 comef 8381 R rec 6010f2d5-b780-490a-9aec-bc58d1e63d5c +2024-09-11 09:09:00.193155 2024-09-11 09:09:00.193161 comef 8382 R rec 8a716385-6bb1-4e4a-8920-45a8fa52ce48 +2024-09-11 09:09:00.248614 2024-09-11 09:09:00.248618 comef 8383 R rec 298837a0-2527-4f8a-99ea-b851e5da18fa +2024-09-11 09:09:00.301926 2024-09-11 09:09:00.301933 comef 8384 R rec d662c3e3-dda9-40a1-970e-4b20eca5707c +2024-09-11 09:09:00.354562 2024-09-11 09:09:00.354567 comef 8385 R rec f8e6f6d3-2835-4018-9226-542a16449ad5 +2024-09-11 09:09:00.410635 2024-09-11 09:09:00.410639 comef 8386 R rec 303dbb40-67f2-4eb5-b64b-261fa5c5b2d0 +2024-09-11 09:09:00.467287 2024-09-11 09:09:00.467292 comef 8387 R rec aa94f405-f632-4687-a61f-4ce59ce69b23 +2024-09-11 09:09:00.522024 2024-09-11 09:09:00.522031 comef 8388 R rec 92ec02f5-01fd-4629-876a-0cf3094f5aed +2024-09-11 09:09:00.575981 2024-09-11 09:09:00.575986 comef 8389 R rec 69ec5411-93a9-4323-abba-4c7dc4783b3a +2024-09-11 09:09:00.63877 2024-09-11 09:09:00.638775 comef 8390 R rec fa931fc8-cabd-441d-8b64-f9c61fd81727 +2024-09-11 09:09:00.719608 2024-09-11 09:09:00.719613 comef 8391 R rec a7f6a9f5-2697-4527-84ff-27612452f784 +2024-09-11 09:09:00.784256 2024-09-11 09:09:00.784262 comef 8392 R rec 7d4e352a-e58e-4cb8-977b-44698d12a543 +2024-09-11 09:09:00.855826 2024-09-11 09:09:00.855832 comef 8393 R rec e34faee4-9837-4c70-b8ca-b4644871abdb +2024-09-11 09:09:00.926214 2024-09-11 09:09:00.92622 comef 8394 R rec fd95751e-cb0e-41f0-837d-8f3f69a35891 +2024-09-11 09:09:00.989383 2024-09-11 09:09:00.989388 comef 8395 R rec bf5f92e5-8d25-438c-82f2-79faef684c3d +2024-09-11 09:09:01.066826 2024-09-11 09:09:01.066833 comef 8396 R rec 32c552fa-b866-41d7-9f30-bb24b5634986 +2024-09-11 09:09:01.134719 2024-09-11 09:09:01.134728 comef 8397 R rec d5368694-62fa-4d02-86d8-eb416b18e397 +2024-09-11 09:09:01.198156 2024-09-11 09:09:01.198162 comef 8398 R rec 8ac19977-ca8e-4106-bb7d-ca3efd5feab8 +2024-09-11 09:09:01.258655 2024-09-11 09:09:01.25866 comef 8399 R rec 52adbe10-3fe0-4efe-bdf0-6598cec403f6 +2024-09-11 09:09:01.328443 2024-09-11 09:09:01.328448 comef 8400 R rec fcb96ec4-b2e3-4390-b463-5a3827e6bbbb +2024-09-11 09:09:01.385483 2024-09-11 09:09:01.38549 comef 8401 R rec c6e63295-794e-49b7-b21d-e3b9132d53d6 +2024-09-11 09:09:01.44162 2024-09-11 09:09:01.441624 comef 8402 R rec 7c91cf6a-f9bd-421d-a45d-767d280c8087 +2024-09-11 09:09:01.503791 2024-09-11 09:09:01.503796 comef 8403 R rec c3b9d78f-850b-4908-bb05-11ab893d4ec4 +2024-09-11 09:09:01.562126 2024-09-11 09:09:01.56213 comef 8404 R rec 4fecf265-9048-4d79-811f-36aaccd833f5 +2024-09-11 09:09:01.621878 2024-09-11 09:09:01.621883 comef 8405 R rec 2f34c97c-36f3-4c01-a8ea-73abd70d6ea9 +2024-09-11 09:09:01.678421 2024-09-11 09:09:01.678426 comef 8406 R rec e0057648-c72a-405a-a27a-602295dfc29b +2024-09-11 09:09:01.734077 2024-09-11 09:09:01.734083 comef 8407 R rec 1fd76a80-df1b-4e62-9150-13d57f5cf7d2 +2024-09-11 09:09:01.790735 2024-09-11 09:09:01.790739 comef 8408 R rec 2d6190b1-98d8-4806-8327-2da3d54cbd3c +2024-09-11 09:09:01.846114 2024-09-11 09:09:01.846119 comef 8409 R rec 04e09a71-9b16-4af6-a67a-e2109cafb3d4 +2024-09-11 09:09:01.902112 2024-09-11 09:09:01.902117 comef 8410 R rec 7ec88d9c-3921-468b-a69d-7d18f49a16d2 +2024-09-11 09:09:01.957614 2024-09-11 09:09:01.957618 comef 8411 R rec 83c316d1-c121-4ae4-88a4-874ebb0a1c53 +2024-09-11 09:09:02.014867 2024-09-11 09:09:02.014872 comef 8412 R rec 7ce461f0-87bd-4130-a397-26d82d126d94 +2024-09-11 09:09:02.073181 2024-09-11 09:09:02.073186 comef 8413 R rec 22271c7f-713a-4673-adee-0e8a3d454f45 +2024-09-11 09:09:02.137498 2024-09-11 09:09:02.137504 comef 8414 R rec f3d03d45-6ab9-4f8f-887c-f5b6b5a5f43d +2024-09-11 09:09:02.199059 2024-09-11 09:09:02.199065 comef 8415 R rec a6cced13-1655-4da7-a51f-c202fcdc8e28 +2024-09-11 09:09:02.252434 2024-09-11 09:09:02.25244 comef 8416 R rec 375d1dca-44f6-4782-ad37-855c45f63513 +2024-09-11 09:09:02.307926 2024-09-11 09:09:02.307932 comef 8417 R rec b29458b6-30fc-4be3-8f29-0666266bd82f +2024-09-11 09:09:02.363756 2024-09-11 09:09:02.363762 comef 8418 R rec 2d3cacd1-82cc-4a4b-81f8-06ea3493299e +2024-09-11 09:09:02.421399 2024-09-11 09:09:02.421403 comef 8419 R rec 74a5da78-6b35-44b0-a541-c9e265fdd5c1 +2024-09-11 09:09:02.476027 2024-09-11 09:09:02.476032 comef 8420 R rec ae1bcf8f-cf4c-4357-b704-b4d72dca31c6 +2024-09-11 09:09:02.528848 2024-09-11 09:09:02.528853 comef 8421 R rec 187c7d9f-6309-4f22-92ca-16a441242427 +2024-09-11 09:09:02.589279 2024-09-11 09:09:02.589284 comef 8422 R rec cde46517-4e1a-4a41-bb6c-cad9b032f04a +2024-09-11 09:09:02.641735 2024-09-11 09:09:02.641739 comef 8423 R rec 53c9180b-af25-48e3-a3a8-65e724d2d658 +2024-09-11 09:09:02.697607 2024-09-11 09:09:02.697613 comef 8424 R rec 69fcfdb1-0d6d-4a38-a781-255d285015fe +2024-09-11 09:09:02.753713 2024-09-11 09:09:02.753718 comef 8425 R rec 44be44ed-484b-4e19-8b20-e7bf956deb8d +2024-09-11 09:09:02.808727 2024-09-11 09:09:02.808732 comef 8426 R rec 2eff6f12-b6de-46a7-a419-f3efda29847b +2024-09-11 09:09:02.863453 2024-09-11 09:09:02.863457 comef 8427 R rec d13b267f-88b0-4591-9a86-0c11d66fc774 +2024-09-11 09:09:02.915322 2024-09-11 09:09:02.915326 comef 8428 R rec c20e237f-1286-4c9b-b832-8a2382017d78 +2024-09-11 09:09:02.971669 2024-09-11 09:09:02.971673 comef 8429 R rec cf87a1c6-a168-4675-9b67-bfe5f7669dbe +2024-09-11 09:09:03.028485 2024-09-11 09:09:03.02849 comef 8430 R rec 71a4e03b-c350-4fd2-9ab3-5abffb7ade7f +2024-09-11 09:09:03.088132 2024-09-11 09:09:03.08814 comef 8431 R rec 62a06362-28aa-410a-a9b1-d15b721da024 +2024-09-11 09:09:03.14053 2024-09-11 09:09:03.140535 comef 8432 R rec c242b11b-35f8-479b-b894-c7dc5e93947e +2024-09-11 09:09:03.19375 2024-09-11 09:09:03.193755 comef 8433 R rec 4453565f-a40a-417e-bef5-9c2434eaa545 +2024-09-11 09:09:03.261924 2024-09-11 09:09:03.26193 comef 8434 R rec ac60ed9c-de59-417f-9a5a-5129288e1c55 +2024-09-11 09:09:03.325381 2024-09-11 09:09:03.325388 comef 8435 R rec ce950700-ed6a-46b3-bae7-0eefe19008b2 +2024-09-11 09:09:03.383264 2024-09-11 09:09:03.383269 comef 8436 R rec 02c38177-ea13-485c-836f-e1813286e4fe +2024-09-11 09:09:03.44298 2024-09-11 09:09:03.442985 comef 8437 R rec f05206a6-2463-42f6-8950-1a1c95386ecc +2024-09-11 09:09:03.505794 2024-09-11 09:09:03.505799 comef 8438 R rec 1a733363-7c28-45f4-ae5c-c5ff9c397f28 +2024-09-11 09:09:03.562786 2024-09-11 09:09:03.562792 comef 8439 R rec 4d4ba2ab-8fad-4e7d-b330-5c8de460d978 +2024-09-11 09:09:03.623159 2024-09-11 09:09:03.623164 comef 8440 R rec 7101c6bd-9e84-4f36-bb68-dc2dac29c6d1 +2024-09-11 09:09:03.68197 2024-09-11 09:09:03.681975 comef 8441 R rec b1a47461-d857-43ed-9fff-bcea8e917001 +2024-09-11 09:09:03.740875 2024-09-11 09:09:03.74088 comef 8442 R rec a215e39f-106c-4f8a-8de7-a61a072e0623 +2024-09-11 09:09:03.799401 2024-09-11 09:09:03.799405 comef 8443 R rec 72ad4836-9e60-44b2-88c5-ebef8d0e2325 +2024-09-11 09:09:03.854532 2024-09-11 09:09:03.854537 comef 8444 R rec 369bb12d-3a08-4176-b59e-d7e43a2af5b2 +2024-09-11 09:09:03.912076 2024-09-11 09:09:03.912081 comef 8445 R rec 1aa2367d-a2b6-4697-bccf-ce5b19291cd1 +2024-09-11 09:09:03.972625 2024-09-11 09:09:03.97263 comef 8446 R rec 538d62e5-b870-40df-8ec9-c4e686380b8f +2024-09-11 09:09:04.034513 2024-09-11 09:09:04.034517 comef 8447 R rec 85475fe7-9164-4774-92b5-da114d156303 +2024-09-11 09:09:04.094349 2024-09-11 09:09:04.094354 comef 8448 R rec 1f87f354-c337-4af2-843b-c1944bbbf1ce +2024-09-11 09:09:04.14836 2024-09-11 09:09:04.148365 comef 8449 R rec bbd1a37e-70b9-48bc-9973-671840abeb1d +2024-09-11 09:09:04.205271 2024-09-11 09:09:04.205276 comef 8450 R rec b5b076c9-388e-41be-b4fe-749d95097486 +2024-09-11 09:09:04.269998 2024-09-11 09:09:04.270002 comef 8451 R rec ef981523-3945-43a6-bbd2-b45f4cd4b9a1 +2024-09-11 09:09:04.324439 2024-09-11 09:09:04.324445 comef 8452 R rec bece6af0-72b8-4376-b7dd-5eba88553b44 +2024-09-11 09:09:04.379079 2024-09-11 09:09:04.379084 comef 8453 R rec 2005c0d0-cc16-46f7-8886-d89286e5f2f0 +2024-09-11 09:09:04.439898 2024-09-11 09:09:04.439902 comef 8454 R rec cdeba99c-6e96-423f-8003-cd2054d6059b +2024-09-11 09:09:04.496455 2024-09-11 09:09:04.49646 comef 8455 R rec f0bba441-076b-4071-b432-7435aed59afd +2024-09-11 09:09:04.551314 2024-09-11 09:09:04.55132 comef 8456 R rec b7e2cb4e-8c74-4d3f-873d-c5a7f19f8139 +2024-09-11 09:09:04.60459 2024-09-11 09:09:04.604595 comef 8457 R rec 809965da-7efa-444f-b164-0d0d2ccb67cc +2024-09-11 09:09:04.656107 2024-09-11 09:09:04.656111 comef 8458 R rec 96dd772a-0a06-43d1-92c6-d0d4ed45aad7 +2024-09-11 09:09:04.710663 2024-09-11 09:09:04.710669 comef 8459 R rec db9e5a9a-5e5c-4af1-81ab-f6b977294bc4 +2024-09-11 09:09:04.76301 2024-09-11 09:09:04.763015 comef 8460 R rec 635c9893-2440-4ed8-87a4-b1f99cada4f3 +2024-09-11 09:09:04.825728 2024-09-11 09:09:04.825732 comef 8461 R rec 458c13dd-fbc0-4b9b-846f-32f7a0bfb2f8 +2024-09-11 09:09:04.88513 2024-09-11 09:09:04.885134 comef 8462 R rec bbdc289e-38a2-4785-8331-60f442d0a453 +2024-09-11 09:09:05.006189 2024-09-11 09:09:05.006194 comef 8463 R rec 225654c9-01c6-4d1e-a12c-9c8a35343ad8 +2024-09-11 09:09:05.064027 2024-09-11 09:09:05.064031 comef 8464 R rec 351731ea-b9d0-4665-a8ed-e807dcea6f3f +2024-09-11 09:09:05.124936 2024-09-11 09:09:05.12494 comef 8465 R rec f36d43fd-000a-4a41-9566-b60d6428d716 +2024-09-11 09:09:05.178342 2024-09-11 09:09:05.178347 comef 8466 R rec d50455b1-0f7d-41c3-9f22-4f8ebd6e5e5f +2024-09-11 09:09:05.235011 2024-09-11 09:09:05.235016 comef 8467 R rec 7296ba49-7b3b-41c2-a6f4-af85b539e657 +2024-09-11 09:09:05.290569 2024-09-11 09:09:05.290574 comef 8468 R rec da1b18a6-5807-4bbf-a382-695fc192e22f +2024-09-11 09:09:05.348494 2024-09-11 09:09:05.348499 comef 8469 R rec c931d5cd-cb82-402b-830e-ab27de8ec730 +2024-09-11 09:09:05.401947 2024-09-11 09:09:05.401952 comef 8470 R rec 95b6ea0a-7324-49cb-a508-e1964c3c7031 +2024-09-11 09:09:05.458312 2024-09-11 09:09:05.458317 comef 8471 R rec 330dff3e-a6c4-4953-b7cd-e59f51216300 +2024-09-11 09:09:05.529231 2024-09-11 09:09:05.529236 comef 8472 R rec d2e726f9-aabe-4e25-9aab-3ab9d4ca042e +2024-09-11 09:09:05.594059 2024-09-11 09:09:05.594064 comef 8473 R rec 08497322-c32d-4799-92b5-da8d690eb474 +2024-09-11 09:09:05.651477 2024-09-11 09:09:05.651484 comef 8474 R rec 0b44f340-f67b-4359-93da-96811235d4fb +2024-09-11 09:09:05.706767 2024-09-11 09:09:05.706771 comef 8475 R rec afad0eff-eaf1-4f4c-aaad-ab6870c90286 +2024-09-11 09:09:05.765536 2024-09-11 09:09:05.765542 comef 8476 R rec 8a855338-5426-48a8-a42c-f38e678ee50a +2024-09-11 09:09:05.824573 2024-09-11 09:09:05.824578 comef 8477 R rec cd865085-c4f3-4568-98ed-716da33fed0e +2024-09-11 09:09:05.880995 2024-09-11 09:09:05.881 comef 8478 R rec bc7f5b73-850c-4734-bae9-2d296763aa30 +2024-09-11 09:09:05.943933 2024-09-11 09:09:05.943939 comef 8479 R rec 287ad6a9-a294-4180-95f0-6a68efa547e6 +2024-09-11 09:09:06.008065 2024-09-11 09:09:06.008071 comef 8480 R rec 51a024e6-6903-475e-b63d-4b2d8a0a05f3 +2024-09-11 09:09:06.071012 2024-09-11 09:09:06.071017 comef 8481 R rec 1ce30042-c510-49d7-bfd8-b29926e9d5de +2024-09-11 09:09:06.136984 2024-09-11 09:09:06.13699 comef 8482 R rec c9a65ee5-f7e3-4efa-82bf-2acdac70f70c +2024-09-11 09:09:06.203262 2024-09-11 09:09:06.203268 comef 8483 R rec 8903d2a4-bdcd-40ef-b9fa-7dc998dfc662 +2024-09-11 09:09:06.260618 2024-09-11 09:09:06.260623 comef 8484 R rec 455256e6-aa7f-4b11-8ebc-bacaba4df3ac +2024-09-11 09:09:06.322229 2024-09-11 09:09:06.322235 comef 8485 R rec 2f43903d-a8cc-4b0e-95e7-459360d4571e +2024-09-11 09:09:06.379785 2024-09-11 09:09:06.37979 comef 8486 R rec 74f2284f-e2d4-422d-a80f-8f7dcb6933cb +2024-09-11 09:09:06.438311 2024-09-11 09:09:06.438315 comef 8487 R rec cbc81aa8-61b3-4bef-a876-b34fdd38194c +2024-09-11 09:09:06.496218 2024-09-11 09:09:06.496224 comef 8488 R rec 9672a0ef-03bc-4211-a181-760b8bc0c202 +2024-09-11 09:09:06.553182 2024-09-11 09:09:06.553188 comef 8489 R rec f88b5937-f15c-41d4-bf32-eec6bd4ddfee +2024-09-11 09:09:06.611968 2024-09-11 09:09:06.611974 comef 8490 R rec f0cb5df0-b0af-4504-8110-e74ceefc87f9 +2024-09-11 09:09:06.669039 2024-09-11 09:09:06.669044 comef 8491 R rec 17ad52a3-c41b-457e-9cc8-badb4ffe493f +2024-09-11 09:09:06.723803 2024-09-11 09:09:06.723808 comef 8492 R rec 1f6a84a5-fc12-44d7-ab96-48dc422ba5fe +2024-09-11 09:09:06.782074 2024-09-11 09:09:06.782079 comef 8493 R rec 906f0bfb-b528-4625-bc36-3ac02c4548c6 +2024-09-11 09:09:06.84727 2024-09-11 09:09:06.847274 comef 8494 R rec a6e696a7-111d-43f3-a067-784c70cfa6b8 +2024-09-11 09:09:06.914779 2024-09-11 09:09:06.914784 comef 8495 R rec 8b386e66-f6e8-4449-ad81-d0425554509a +2024-09-11 09:09:06.979648 2024-09-11 09:09:06.979652 comef 8496 R rec 18a6689e-5212-4c06-8dac-9d88214a7e56 +2024-09-11 09:09:07.041777 2024-09-11 09:09:07.04178 comef 8497 R rec d868962d-a758-426c-97cb-8444201c10c0 +2024-09-11 09:09:07.103982 2024-09-11 09:09:07.103986 comef 8498 R rec 63a613ee-c70a-4259-ba58-c4fccc74de77 +2024-09-11 09:09:07.160029 2024-09-11 09:09:07.160034 comef 8499 R rec 275e5f36-f311-4e8d-9ae0-76075a4254a2 +2024-09-11 09:09:07.216452 2024-09-11 09:09:07.216457 comef 8500 R rec b83c708d-ced7-449d-8c74-083b5b4a77a2 +2024-09-11 09:09:07.272527 2024-09-11 09:09:07.272532 comef 8501 R rec 10d8d084-9062-4b2c-80f2-ee79cf5887ed +2024-09-11 09:09:07.324526 2024-09-11 09:09:07.324531 comef 8502 R rec bfc52e2f-1562-4daa-a621-6726d209fae1 +2024-09-11 09:09:07.382633 2024-09-11 09:09:07.382637 comef 8503 R rec a8ac3256-d26d-489b-ae74-9ee6ed1832c3 +2024-09-11 09:09:07.440058 2024-09-11 09:09:07.440063 comef 8504 R rec 095292f3-dca5-4bb4-930d-a41e27d39c41 +2024-09-11 09:09:07.503948 2024-09-11 09:09:07.503953 comef 8505 R rec a6c2f356-e5fa-4a79-bc72-cdd0c6c9c085 +2024-09-11 09:09:07.567883 2024-09-11 09:09:07.567888 comef 8506 R rec 45aee367-687d-4849-b32e-5b7a62aa6916 +2024-09-11 09:09:07.625843 2024-09-11 09:09:07.625849 comef 8507 R rec 14141ad0-9492-4f14-9587-b077c759d4e6 +2024-09-11 09:09:07.679466 2024-09-11 09:09:07.67947 comef 8508 R rec 0fb50ef8-8a99-4566-8ff0-80739e971fd3 +2024-09-11 09:09:07.729568 2024-09-11 09:09:07.729574 comef 8509 R rec 610cb18f-e6bd-43f9-b186-046c4c866308 +2024-09-11 09:09:07.784016 2024-09-11 09:09:07.784021 comef 8510 R rec ef9b7578-58b1-42e7-94fc-4bf75d5229a5 +2024-09-11 09:09:07.839506 2024-09-11 09:09:07.839511 comef 8511 R rec 6e1dc348-8a7c-4154-b8e1-ed6c4bfcc875 +2024-09-11 09:09:07.901892 2024-09-11 09:09:07.901898 comef 8512 R rec b6287f80-89e1-4521-b029-6c5f4f32f194 +2024-09-11 09:09:07.971559 2024-09-11 09:09:07.971563 comef 8513 R rec 7bc4a5db-26bd-4d06-a486-6a2ffaf3a590 +2024-09-11 09:09:08.032806 2024-09-11 09:09:08.032811 comef 8514 R rec b4667688-e60c-441d-8384-b71185882c50 +2024-09-11 09:09:08.092827 2024-09-11 09:09:08.092832 comef 8515 R rec d1b0fa66-bd28-4413-8103-037d9c7412f1 +2024-09-11 09:09:08.145023 2024-09-11 09:09:08.145027 comef 8516 R rec f1a686d7-398a-420c-90de-ee685654a4a0 +2024-09-11 09:09:08.202234 2024-09-11 09:09:08.202239 comef 8517 R rec b475b242-e694-4086-b5b5-33fcf531efcf +2024-09-11 09:09:08.261398 2024-09-11 09:09:08.261402 comef 8518 R rec 645492f4-f958-48b8-8db4-7d80586b010e +2024-09-11 09:09:08.314906 2024-09-11 09:09:08.314911 comef 8519 R rec d744ca03-0a23-4524-acb0-71f36b663899 +2024-09-11 09:09:08.368037 2024-09-11 09:09:08.368042 comef 8520 R rec 13c3b525-e7e6-4ef1-a784-ec6e26583683 +2024-09-11 09:09:08.428786 2024-09-11 09:09:08.428791 comef 8521 R rec a0e2c6fc-ea5f-42ef-b622-590c6dc9535c +2024-09-11 09:09:08.488499 2024-09-11 09:09:08.488505 comef 8522 R rec 17465708-2b0e-407a-b6cc-8b42174c0caf +2024-09-11 09:09:08.539994 2024-09-11 09:09:08.539999 comef 8523 R rec 38c15871-eb7e-4d29-8e0a-e6f417d03f5e +2024-09-11 09:09:08.593826 2024-09-11 09:09:08.59383 comef 8524 R rec 9c41d9e9-45bd-482a-ba19-6ade69945070 +2024-09-11 09:09:08.646125 2024-09-11 09:09:08.646129 comef 8525 R rec 3c884f3e-39e4-4b46-a015-cbcd337b0519 +2024-09-11 09:09:08.702858 2024-09-11 09:09:08.702864 comef 8526 R rec cfd883e4-8ab5-4531-be22-f80fb2e60da4 +2024-09-11 09:09:08.756796 2024-09-11 09:09:08.756801 comef 8527 R rec a60c1f6b-8bfe-43eb-b4cc-7355871876d6 +2024-09-11 09:09:08.811967 2024-09-11 09:09:08.811972 comef 8528 R rec d617d5e6-bded-435c-9c17-0c640d4f67d2 +2024-09-11 09:09:08.867065 2024-09-11 09:09:08.867071 comef 8529 R rec 7c22cbc0-4647-406f-9426-1bdf68111342 +2024-09-11 09:09:08.920183 2024-09-11 09:09:08.920188 comef 8530 R rec 1e4f4c43-bbcb-46d0-a8dd-708b20eeaa2b +2024-09-11 09:09:08.977631 2024-09-11 09:09:08.977636 comef 8531 R rec f14c2505-f91b-49ac-a8b9-2e0dca60bec5 +2024-09-11 09:09:09.054378 2024-09-11 09:09:09.054383 comef 8532 R rec 230617b8-57a4-4f39-b165-5e3b1d85dfb8 +2024-09-11 09:09:09.123419 2024-09-11 09:09:09.123424 comef 8533 R rec 4bcb2607-9d43-4d38-8933-1963450f7147 +2024-09-11 09:09:09.17965 2024-09-11 09:09:09.179655 comef 8534 R rec 44367a92-26c1-4694-a798-758872f7e43e +2024-09-11 09:09:09.235274 2024-09-11 09:09:09.235279 comef 8535 R rec e896a20a-c752-4fef-9a40-8890698863a4 +2024-09-11 09:09:09.29074 2024-09-11 09:09:09.290745 comef 8536 R rec 536a3552-dd89-42af-88e1-8aaf94f0f0ec +2024-09-11 09:09:09.352255 2024-09-11 09:09:09.35226 comef 8537 R rec fce0ae8f-0f65-4b19-8ed9-92b42527573c +2024-09-11 09:09:09.408067 2024-09-11 09:09:09.408074 comef 8538 R rec 185dc1d4-284a-47e1-9d87-0095eafd36fc +2024-09-11 09:09:09.464001 2024-09-11 09:09:09.464007 comef 8539 R rec 17e8763c-434b-42b7-a89d-3cf5b27cf192 +2024-09-11 09:09:09.516334 2024-09-11 09:09:09.516339 comef 8540 R rec 8cc1ac69-6a17-49b0-b9a7-a34a62764062 +2024-09-11 09:09:09.578315 2024-09-11 09:09:09.578322 comef 8541 R rec 22753b73-c3f6-488f-8ac5-ebadbd6dcd95 +2024-09-11 09:09:09.634681 2024-09-11 09:09:09.634686 comef 8542 R rec 04118938-0d37-44a5-8d2d-b841377ab7a9 +2024-09-11 09:09:09.69305 2024-09-11 09:09:09.693055 comef 8543 R rec cf5c02bc-0296-44f5-9285-b5ec48d9c816 +2024-09-11 09:09:09.746674 2024-09-11 09:09:09.746679 comef 8544 R rec d7ab7b09-9151-46bf-b57e-8ff00aad4e48 +2024-09-11 09:09:09.800314 2024-09-11 09:09:09.80032 comef 8545 R rec 6d189b70-5f76-4e01-a7fa-18bb69e151b0 +2024-09-11 09:09:09.858508 2024-09-11 09:09:09.858513 comef 8546 R rec 7e270139-9bc8-4fba-8e84-07da18df8f14 +2024-09-11 09:09:09.914471 2024-09-11 09:09:09.914475 comef 8547 R rec b40b4d00-0187-45e0-8362-68452fcaf5e6 +2024-09-11 09:09:09.967163 2024-09-11 09:09:09.967168 comef 8548 R rec 2bf90ad6-4faa-4c7f-a676-d06fd2598e6d +2024-09-11 09:09:10.020884 2024-09-11 09:09:10.020892 comef 8549 R rec 58e06762-e02b-4fdf-988b-d8d778cc3365 +2024-09-11 09:09:10.079693 2024-09-11 09:09:10.079697 comef 8550 R rec 8d544460-0e14-4868-96f1-4d7f3844a407 +2024-09-11 09:09:10.150925 2024-09-11 09:09:10.150931 comef 8551 R rec 72972377-c1d9-469a-bc48-924a8de99a0f +2024-09-11 09:09:10.213182 2024-09-11 09:09:10.213186 comef 8552 R rec 39db219e-de7b-4ff6-b236-75b6ba50d6e3 +2024-09-11 09:09:10.270692 2024-09-11 09:09:10.270697 comef 8553 R rec f977526f-d36d-473b-871e-5e2332932b50 +2024-09-11 09:09:10.32853 2024-09-11 09:09:10.328535 comef 8554 R rec ef38b692-9817-4aaa-9ac5-019acde18e3a +2024-09-11 09:09:10.382559 2024-09-11 09:09:10.382564 comef 8555 R rec 7b7c79a2-631a-4647-a11a-bd9966000b7b +2024-09-11 09:09:10.440013 2024-09-11 09:09:10.440017 comef 8556 R rec 754c201b-00b9-4584-8c2d-938455956c3f +2024-09-11 09:09:10.500508 2024-09-11 09:09:10.500514 comef 8557 R rec 2eab82ca-8384-4329-bd26-d9a10b30a5e8 +2024-09-11 09:09:10.560291 2024-09-11 09:09:10.560297 comef 8558 R rec 7a4e19e1-9a6d-4552-b9db-e59f6d7a02d9 +2024-09-11 09:09:10.61805 2024-09-11 09:09:10.618054 comef 8559 R rec 910773ba-aa92-4383-88e8-d6e205b755a0 +2024-09-11 09:09:10.680011 2024-09-11 09:09:10.680015 comef 8560 R rec 0d427339-05e8-4ed9-98aa-9fdf9b8b5412 +2024-09-11 09:09:10.73615 2024-09-11 09:09:10.736156 comef 8561 R rec ffb47921-b2d5-4a0a-8291-b48724cc4ac1 +2024-09-11 09:09:10.795322 2024-09-11 09:09:10.795327 comef 8562 R rec 1077622d-8cc3-4aa3-8f8d-79e03171655a +2024-09-11 09:09:10.850499 2024-09-11 09:09:10.850504 comef 8563 R rec a65aacf5-0888-4a22-967b-fa73912e8a85 +2024-09-11 09:09:10.910473 2024-09-11 09:09:10.910477 comef 8564 R rec 7a9f7f03-72a8-4f43-bf63-bc94857e9774 +2024-09-11 09:09:10.965929 2024-09-11 09:09:10.965934 comef 8565 R rec 5cfca7f4-de6e-40ce-8f64-4d090a82f953 +2024-09-11 09:09:11.022468 2024-09-11 09:09:11.022473 comef 8566 R rec dd1286b7-ac0c-48dd-a177-27fa502dffdd +2024-09-11 09:09:11.089721 2024-09-11 09:09:11.089726 comef 8567 R rec 2352f523-2365-4cf5-8475-daac59ddf985 +2024-09-11 09:09:11.158979 2024-09-11 09:09:11.158985 comef 8568 R rec beb1ed4b-c27c-4281-921b-e699b804a540 +2024-09-11 09:09:11.218245 2024-09-11 09:09:11.21825 comef 8569 R rec ff7d7a0c-99f7-4eff-9100-eca9cdd762fe +2024-09-11 09:09:11.27239 2024-09-11 09:09:11.272395 comef 8570 R rec 00b06b9e-133c-443a-b6c5-a14bc20aa1d7 +2024-09-11 09:09:11.330043 2024-09-11 09:09:11.330049 comef 8571 R rec 0fb74bd0-c0fc-4bdb-8969-9e4316339643 +2024-09-11 09:09:11.381592 2024-09-11 09:09:11.381597 comef 8572 R rec 8cf92490-70b9-41d3-9201-fee43f519a45 +2024-09-11 09:09:11.440199 2024-09-11 09:09:11.440204 comef 8573 R rec 9273ddfc-f3d1-48b6-a73c-f3f6abf50144 +2024-09-11 09:09:11.497231 2024-09-11 09:09:11.497236 comef 8574 R rec 7b6d5994-855a-4646-96a8-d5414ca47a74 +2024-09-11 09:09:11.550132 2024-09-11 09:09:11.550137 comef 8575 R rec b1d2bedf-a2e4-4288-a7fc-4c1bdc4b5474 +2024-09-11 09:09:11.609579 2024-09-11 09:09:11.609585 comef 8576 R rec 7a2d19e3-0a8d-4b40-a24a-a080f72034a4 +2024-09-11 09:09:11.663451 2024-09-11 09:09:11.663456 comef 8577 R rec 5c165569-3533-41de-8618-4f14375b9213 +2024-09-11 09:09:11.717952 2024-09-11 09:09:11.717958 comef 8578 R rec 427dfedf-de5e-435e-a046-7ac3ffc45cc4 +2024-09-11 09:09:11.77693 2024-09-11 09:09:11.776935 comef 8579 R rec e7237910-0225-46e4-9fd4-f15c998a42b4 +2024-09-11 09:09:11.834076 2024-09-11 09:09:11.834082 comef 8580 R rec e517d99c-0b6b-458a-a995-8a721d1c700e +2024-09-11 09:09:11.895784 2024-09-11 09:09:11.895789 comef 8581 R rec 97275777-54a3-4359-923b-816cc12f83dc +2024-09-11 09:09:11.956955 2024-09-11 09:09:11.95696 comef 8582 R rec 1bdcd7a8-646b-4061-ad64-3562537f4230 +2024-09-11 09:09:12.018207 2024-09-11 09:09:12.018213 comef 8583 R rec 60666425-326c-4c4b-bd26-7ada8cebb204 +2024-09-11 09:09:12.073351 2024-09-11 09:09:12.073356 comef 8584 R rec affbf64a-0c7d-48cd-836a-04abe125ac1b +2024-09-11 09:09:12.125556 2024-09-11 09:09:12.12556 comef 8585 R rec 47d5f110-0921-4708-99f0-e92ee70014a4 +2024-09-11 09:09:12.18189 2024-09-11 09:09:12.181895 comef 8586 R rec cec466bc-e5c7-40bc-b378-5ebf0c761482 +2024-09-11 09:09:12.237215 2024-09-11 09:09:12.237219 comef 8587 R rec 57033dee-6ba5-4ef7-b4e6-f04d28bfa845 +2024-09-11 09:09:12.294769 2024-09-11 09:09:12.294774 comef 8588 R rec ebb6585b-c044-4184-ad2b-dc38bec8d60b +2024-09-11 09:09:12.356359 2024-09-11 09:09:12.356364 comef 8589 R rec ff756764-32b5-4b45-b3d2-3de76323f6b9 +2024-09-11 09:09:12.428747 2024-09-11 09:09:12.428753 comef 8590 R rec b02f8ef0-e1c3-4159-9a9f-429c9e132403 +2024-09-11 09:09:12.494702 2024-09-11 09:09:12.494707 comef 8591 R rec 1a999462-3e87-40a1-8391-bf73c02e9458 +2024-09-11 09:09:12.563996 2024-09-11 09:09:12.564001 comef 8592 R rec 6ed2297c-c86e-4659-8b8b-a29a0cf29de3 +2024-09-11 09:09:12.639813 2024-09-11 09:09:12.639819 comef 8593 R rec fc6654e2-1e69-4017-98d2-887a7c56a50e +2024-09-11 09:09:12.715656 2024-09-11 09:09:12.71566 comef 8594 R rec b2aa9d8d-fc10-4e0a-bdae-b79699bffc76 +2024-09-11 09:09:12.775282 2024-09-11 09:09:12.775287 comef 8595 R rec ef40fea6-0a0e-4c5e-808b-fa9e8006c8ac +2024-09-11 09:09:12.843169 2024-09-11 09:09:12.843174 comef 8596 R rec 1731d766-dfe7-4bd9-9144-a76c3ad70780 +2024-09-11 09:09:12.915496 2024-09-11 09:09:12.915501 comef 8597 R rec 0df5ead9-9c6e-44ab-95aa-943e93425060 +2024-09-11 09:09:12.986853 2024-09-11 09:09:12.986867 comef 8598 R rec 934866d6-14e6-414d-93c3-4d165c9e272d +2024-09-11 09:09:13.058853 2024-09-11 09:09:13.058865 comef 8599 R rec 32a72f43-fb99-4beb-a5de-855c26021ff2 +2024-09-11 09:09:13.143896 2024-09-11 09:09:13.143901 comef 8600 R rec ddd96a65-afab-495e-ba2b-8ea31ce11630 +2024-09-11 09:09:13.195933 2024-09-11 09:09:13.195939 comef 8601 R rec 13d64763-632d-4d9f-89cc-002020b53b9f +2024-09-11 09:09:13.251358 2024-09-11 09:09:13.251363 comef 8602 R rec 24df3653-5e23-499e-be21-981f6a1f8383 +2024-09-11 09:09:13.306926 2024-09-11 09:09:13.306931 comef 8603 R rec 1e0be0c2-4109-482b-9277-018fa855a9fd +2024-09-11 09:09:13.36774 2024-09-11 09:09:13.367745 comef 8604 R rec 8dec8e0c-296b-4e19-b1f9-3d0490f6f627 +2024-09-11 09:09:13.43369 2024-09-11 09:09:13.433695 comef 8605 R rec fc456dd0-bf90-4354-bf8d-b054aa3bf176 +2024-09-11 09:09:13.485391 2024-09-11 09:09:13.485398 comef 8606 R rec b267896b-4382-4f04-8341-b12c3fc05bbd +2024-09-11 09:09:13.540459 2024-09-11 09:09:13.540464 comef 8607 R rec fefc536e-b970-4e1a-b238-fae8fc75ca87 +2024-09-11 09:09:13.600572 2024-09-11 09:09:13.600578 comef 8608 R rec e197dd70-8e43-4001-a7e4-d078f4ea5a2e +2024-09-11 09:09:13.66269 2024-09-11 09:09:13.662695 comef 8609 R rec 3106ca9e-8b9d-4528-811d-d0b6806d023c +2024-09-11 09:09:13.719494 2024-09-11 09:09:13.719499 comef 8610 R rec 27e92aea-93f7-41d1-a841-8a2dbae8c404 +2024-09-11 09:09:13.780173 2024-09-11 09:09:13.780178 comef 8611 R rec fe001d7d-e712-4d05-8038-5e78ce6dd0b1 +2024-09-11 09:09:13.833555 2024-09-11 09:09:13.83356 comef 8612 R rec 4bef1d29-0dab-4881-8f9c-422eb20131a1 +2024-09-11 09:09:13.894905 2024-09-11 09:09:13.89491 comef 8613 R rec 27bec4eb-f75f-46ba-b393-8ed355dd105d +2024-09-11 09:09:13.960073 2024-09-11 09:09:13.960078 comef 8614 R rec 3221dffe-014c-4b07-9830-91caa7b95ba1 +2024-09-11 09:09:14.026088 2024-09-11 09:09:14.026092 comef 8615 R rec c8c6a730-b360-41ca-a6ea-c83c326818e0 +2024-09-11 09:09:14.084801 2024-09-11 09:09:14.084806 comef 8616 R rec f6b8cac4-f5d1-4e58-88a9-fdbe2c5b0058 +2024-09-11 09:09:14.144558 2024-09-11 09:09:14.144563 comef 8617 R rec 49dd1b3a-7524-44e0-94bd-2bb9c2e2dba9 +2024-09-11 09:09:14.207251 2024-09-11 09:09:14.207256 comef 8618 R rec ab745cf0-a86a-41c3-881d-1dc3f98caea3 +2024-09-11 09:09:14.273873 2024-09-11 09:09:14.273879 comef 8619 R rec a0de4048-5217-48c5-a303-12f8ed08264f +2024-09-11 09:09:14.331046 2024-09-11 09:09:14.331051 comef 8620 R rec 4d2c4ded-3a3c-41f8-9684-46c44cec35b3 +2024-09-11 09:09:14.385738 2024-09-11 09:09:14.385744 comef 8621 R rec d54aed10-d772-4425-8127-d49fd21d2dba +2024-09-11 09:09:14.44057 2024-09-11 09:09:14.440575 comef 8622 R rec d302e8cf-57e6-4b01-a786-12a59053b7b4 +2024-09-11 09:09:14.493007 2024-09-11 09:09:14.493013 comef 8623 R rec cc547ff2-15d7-4245-aee3-01b06978b5ec +2024-09-11 09:09:14.552858 2024-09-11 09:09:14.552866 comef 8624 R rec e3e8413f-2149-46b6-b95c-94747c020a46 +2024-09-11 09:09:14.609835 2024-09-11 09:09:14.609839 comef 8625 R rec d512687a-cdec-4a95-b579-61791a7c508d +2024-09-11 09:09:14.662934 2024-09-11 09:09:14.662939 comef 8626 R rec b9b0f951-6120-4c51-81c6-eeb752c76e30 +2024-09-11 09:09:14.720867 2024-09-11 09:09:14.720871 comef 8627 R rec 8a3ffc4e-5fd8-42fe-8616-de702eb8d10a +2024-09-11 09:09:14.77562 2024-09-11 09:09:14.775625 comef 8628 R rec 97ba3d6a-052c-477a-93e1-2c14ddb8fb47 +2024-09-11 09:09:14.830829 2024-09-11 09:09:14.830832 comef 8629 R rec 28634618-de87-448d-96d0-09fd9c40a2f1 +2024-09-11 09:09:14.887357 2024-09-11 09:09:14.887362 comef 8630 R rec 1df73f33-2abd-4d63-a1d6-2243a9b6fe24 +2024-09-11 09:09:14.94745 2024-09-11 09:09:14.947455 comef 8631 R rec b9f1bc0f-762a-4f75-91ac-bcd25b093b93 +2024-09-11 09:09:15.003139 2024-09-11 09:09:15.003145 comef 8632 R rec c67410e7-feb7-49bb-b2df-a9f38dd218cc +2024-09-11 09:09:15.057661 2024-09-11 09:09:15.057665 comef 8633 R rec dd6fcb5d-d2e7-424a-8a29-f9b025775612 +2024-09-11 09:09:15.112745 2024-09-11 09:09:15.11275 comef 8634 R rec da6f8214-5a66-4946-ad64-671b9eb77415 +2024-09-11 09:09:15.168022 2024-09-11 09:09:15.168027 comef 8635 R rec ebff5086-2de2-43c0-9b80-791533e05a27 +2024-09-11 09:09:15.220348 2024-09-11 09:09:15.220354 comef 8636 R rec 05a89d1c-63d7-4061-a3dc-998f4d6d6524 +2024-09-11 09:09:15.274105 2024-09-11 09:09:15.27411 comef 8637 R rec e92cd48d-0004-41a3-9825-8275ccc6d20d +2024-09-11 09:09:15.329329 2024-09-11 09:09:15.329335 comef 8638 R rec 0086334b-7ec5-4c14-b502-f7ed3e8274bb +2024-09-11 09:09:15.387891 2024-09-11 09:09:15.387896 comef 8639 R rec c0a6bce1-a470-4e12-8d6c-4efc9bf20563 +2024-09-11 09:09:15.444773 2024-09-11 09:09:15.444778 comef 8640 R rec 5f97804b-5117-453a-9f27-94b4d09a4fd4 +2024-09-11 09:09:15.508283 2024-09-11 09:09:15.508289 comef 8641 R rec b1893b47-5943-46aa-b40d-b3638be0bfb2 +2024-09-11 09:09:15.57744 2024-09-11 09:09:15.577445 comef 8642 R rec cb17caf9-af77-46fd-930b-2c22c3747bff +2024-09-11 09:09:15.630703 2024-09-11 09:09:15.630709 comef 8643 R rec 764097b2-067d-4597-8fd5-b52bd847a226 +2024-09-11 09:09:15.687516 2024-09-11 09:09:15.68752 comef 8644 R rec 74c8d018-7e4e-4e94-84bf-1531f7816115 +2024-09-11 09:09:15.741182 2024-09-11 09:09:15.741188 comef 8645 R rec 0d938f66-02ea-41b7-ac0d-7a720c432939 +2024-09-11 09:09:15.800363 2024-09-11 09:09:15.800368 comef 8646 R rec f3e523fb-30be-4793-8360-6b9596a450ea +2024-09-11 09:09:15.853382 2024-09-11 09:09:15.853388 comef 8647 R rec 79a9563e-87da-4fb4-9959-8df284d0b9cf +2024-09-11 09:09:15.907597 2024-09-11 09:09:15.907602 comef 8648 R rec 6a443efb-d916-4465-ac5c-b8829a7b4ac5 +2024-09-11 09:09:15.964131 2024-09-11 09:09:15.964136 comef 8649 R rec 25dcd9db-3b72-4977-a37c-074afe85fb1d +2024-09-11 09:09:16.018499 2024-09-11 09:09:16.018505 comef 8650 R rec 6fee3dbf-3a9d-46f3-ae67-ca56f26ebf77 +2024-09-11 09:09:16.081079 2024-09-11 09:09:16.081084 comef 8651 R rec 2a688e98-a2b7-4592-93b3-35e7657b4aff +2024-09-11 09:09:16.142072 2024-09-11 09:09:16.142077 comef 8652 R rec 8aa439b2-bb01-4988-9f31-c59f10c5c4c2 +2024-09-11 09:09:16.21689 2024-09-11 09:09:16.216894 comef 8653 R rec 5d31f7a2-e955-402a-b448-35a75c78ec22 +2024-09-11 09:09:16.271231 2024-09-11 09:09:16.271235 comef 8654 R rec 1989f09e-e501-4fdd-9130-c671cf0a19b0 +2024-09-11 09:09:16.331066 2024-09-11 09:09:16.331072 comef 8655 R rec ecda58e4-67cb-4bbb-8c50-6ef61634d140 +2024-09-11 09:09:16.386243 2024-09-11 09:09:16.386249 comef 8656 R rec 624733b0-725d-456b-b30f-f87759650ae8 +2024-09-11 09:09:16.447587 2024-09-11 09:09:16.447593 comef 8657 R rec d582ba04-7796-4fe3-b62f-f9541137817b +2024-09-11 09:09:16.512725 2024-09-11 09:09:16.512729 comef 8658 R rec bd7db5fb-f6b4-4e16-8ea1-3b5b8111b47d +2024-09-11 09:09:16.5662 2024-09-11 09:09:16.566204 comef 8659 R rec abc6e472-08fd-4a4c-9551-68a058aaf5a9 +2024-09-11 09:09:16.633878 2024-09-11 09:09:16.633883 comef 8660 R rec a6cbc4c8-0b93-4956-b900-ac3e5122a3c4 +2024-09-11 09:09:16.703124 2024-09-11 09:09:16.703128 comef 8661 R rec 275b9ba9-b8ce-422d-836b-4cc40db5d17b +2024-09-11 09:09:16.767144 2024-09-11 09:09:16.76715 comef 8662 R rec 536e803c-bc6b-443c-87a1-61270a8cf578 +2024-09-11 09:09:16.830376 2024-09-11 09:09:16.830381 comef 8663 R rec 14ddc452-0148-4e45-b5d3-b8835e870527 +2024-09-11 09:09:16.883995 2024-09-11 09:09:16.884 comef 8664 R rec 067205f2-3a78-4200-b513-c5fc26c6af7d +2024-09-11 09:09:16.937724 2024-09-11 09:09:16.937728 comef 8665 R rec a8c0de87-3372-464b-b934-38b0bd8a85b6 +2024-09-11 09:09:16.996405 2024-09-11 09:09:16.99641 comef 8666 R rec 8dac129e-62d1-4115-a66e-64e406098675 +2024-09-11 09:09:17.060364 2024-09-11 09:09:17.060369 comef 8667 R rec 32477a91-89a2-4af8-a084-badecac384c9 +2024-09-11 09:09:17.122345 2024-09-11 09:09:17.122351 comef 8668 R rec 6775f7d4-9d32-4e64-9a8c-2346402c20be +2024-09-11 09:09:17.182781 2024-09-11 09:09:17.182786 comef 8669 R rec 9c3b414f-ae8b-45b6-bd7a-94b6f216aff2 +2024-09-11 09:09:17.239691 2024-09-11 09:09:17.239697 comef 8670 R rec 56478dc5-bb39-4070-8833-f71ece2dd741 +2024-09-11 09:09:17.301308 2024-09-11 09:09:17.301313 comef 8671 R rec 7089156e-0b64-4e3a-b02c-6fc8fbac4da8 +2024-09-11 09:09:17.363257 2024-09-11 09:09:17.363261 comef 8672 R rec 54c0f1af-83b3-48be-9ea7-4f109ad4dad9 +2024-09-11 09:09:17.418721 2024-09-11 09:09:17.418726 comef 8673 R rec 284de485-960d-46f5-be3b-89f0cef416a0 +2024-09-11 09:09:17.472235 2024-09-11 09:09:17.47224 comef 8674 R rec 86c75e15-627c-4c79-978c-6fe96ab765d2 +2024-09-11 09:09:17.537992 2024-09-11 09:09:17.537997 comef 8675 R rec 014b416e-e4fe-4255-8a38-f2c2241fe68f +2024-09-11 09:09:17.603063 2024-09-11 09:09:17.603067 comef 8676 R rec bd753ea3-a233-4bec-a90f-5bf43a65c889 +2024-09-11 09:09:17.65949 2024-09-11 09:09:17.659496 comef 8677 R rec 766c11dd-bcd7-4ef3-93a1-4fd13b3aabd3 +2024-09-11 09:09:17.713388 2024-09-11 09:09:17.713393 comef 8678 R rec fa7762ab-c821-47fe-9e45-ffab05c7e8ac +2024-09-11 09:09:17.764052 2024-09-11 09:09:17.764058 comef 8679 R rec 341b9211-145d-41e2-9f3e-759ded5c3210 +2024-09-11 09:09:17.819041 2024-09-11 09:09:17.819054 comef 8680 R rec c4082676-b57c-4007-8d74-5f4c4169487a +2024-09-11 09:09:17.873416 2024-09-11 09:09:17.873421 comef 8681 R rec b0d4a917-5184-4724-9f0a-98648987acdc +2024-09-11 09:09:17.930795 2024-09-11 09:09:17.9308 comef 8682 R rec db2d1159-bd39-49a4-ae2b-76e12486751c +2024-09-11 09:09:17.991512 2024-09-11 09:09:17.991516 comef 8683 R rec dae56b62-ce71-4bb1-81c3-084b09bc612e +2024-09-11 09:09:18.052525 2024-09-11 09:09:18.052531 comef 8684 R rec cd3bdea4-cda6-43e6-9cc5-72d836fc5572 +2024-09-11 09:09:18.105428 2024-09-11 09:09:18.105431 comef 8685 R rec 9ace0a25-d9c7-4068-839d-47980402ddf2 +2024-09-11 09:09:18.166542 2024-09-11 09:09:18.166548 comef 8686 R rec 311838b3-e78e-48e8-8789-487cdcb17317 +2024-09-11 09:09:18.230408 2024-09-11 09:09:18.230414 comef 8687 R rec 1bd38c8f-84b0-416e-8ebb-521016738288 +2024-09-11 09:09:18.294068 2024-09-11 09:09:18.294073 comef 8688 R rec 103cb7d6-5501-4c93-afa8-c70170a5da7d +2024-09-11 09:09:18.349819 2024-09-11 09:09:18.349824 comef 8689 R rec a9735441-dc84-448a-949c-40e6b47c2b24 +2024-09-11 09:09:18.405763 2024-09-11 09:09:18.405769 comef 8690 R rec af0638d3-f1d2-4b47-b5d3-7f821b7c38f2 +2024-09-11 09:09:18.460203 2024-09-11 09:09:18.460208 comef 8691 R rec 938ff8f9-face-4192-b2c6-48060338fa77 +2024-09-11 09:09:18.514112 2024-09-11 09:09:18.514116 comef 8692 R rec c99d5140-69e0-4c7f-8748-816c46d2597b +2024-09-11 09:09:18.570331 2024-09-11 09:09:18.570336 comef 8693 R rec 92c0dfc1-986c-4535-ac76-383682121e00 +2024-09-11 09:09:18.625964 2024-09-11 09:09:18.625969 comef 8694 R rec bdb251cd-756e-4179-9bff-5d994b163a31 +2024-09-11 09:09:18.682409 2024-09-11 09:09:18.682415 comef 8695 R rec 1687c709-ed9e-4b84-9e83-ae3b9496da64 +2024-09-11 09:09:18.749275 2024-09-11 09:09:18.74928 comef 8696 R rec 9fc903b2-72cf-4e46-8599-a7e5490d90a3 +2024-09-11 09:09:18.813656 2024-09-11 09:09:18.813661 comef 8697 R rec 72e652ed-9d98-482f-996b-498c880aab79 +2024-09-11 09:09:18.868265 2024-09-11 09:09:18.86827 comef 8698 R rec 771fee85-a4f9-483e-bd49-5cbf550274e9 +2024-09-11 09:09:18.928889 2024-09-11 09:09:18.928893 comef 8699 R rec af5dd1a1-9d29-4086-a0b7-fb51e03a6307 +2024-09-11 09:09:18.982754 2024-09-11 09:09:18.982759 comef 8700 R rec 4e94a5f0-54af-4c24-917d-feb69cb991c1 +2024-09-11 09:09:19.038899 2024-09-11 09:09:19.038904 comef 8701 R rec 8ec84829-4524-45e7-8f2d-d547fd2c6caa +2024-09-11 09:09:19.096353 2024-09-11 09:09:19.096358 comef 8702 R rec fe9d7fd6-02be-4d40-955a-bf5760350434 +2024-09-11 09:09:19.149486 2024-09-11 09:09:19.14949 comef 8703 R rec 2baccbe5-429a-469e-999f-451e3703fb2c +2024-09-11 09:09:19.207065 2024-09-11 09:09:19.20707 comef 8704 R rec 0f40f27f-a131-4850-9f5e-42a65415be1c +2024-09-11 09:09:19.262676 2024-09-11 09:09:19.26268 comef 8705 R rec b791c3bb-ee01-4d1f-b868-bb03aa590288 +2024-09-11 09:09:19.322876 2024-09-11 09:09:19.322881 comef 8706 R rec 211fbd74-27de-46f2-9ab0-b6cb459de0f1 +2024-09-11 09:09:19.386402 2024-09-11 09:09:19.386407 comef 8707 R rec 9659beac-49fe-453e-8e6a-7d3dfdaf14ab +2024-09-11 09:09:19.443062 2024-09-11 09:09:19.443067 comef 8708 R rec 56ee2de6-0ef4-4bd8-9a3a-a0f09359019b +2024-09-11 09:09:19.500327 2024-09-11 09:09:19.500333 comef 8709 R rec 6e55e462-a4e6-4119-92c6-d04861edd8b5 +2024-09-11 09:09:19.553286 2024-09-11 09:09:19.553291 comef 8710 R rec fb21a86f-f59e-4978-93d2-484077be4813 +2024-09-11 09:09:19.608789 2024-09-11 09:09:19.608794 comef 8711 R rec 4166d5bf-3a39-4081-8378-36a86335fefb +2024-09-11 09:09:19.666561 2024-09-11 09:09:19.666566 comef 8712 R rec dedc15de-066b-405e-9d32-065ee40d9c4a +2024-09-11 09:09:19.717391 2024-09-11 09:09:19.717395 comef 8713 R rec 6b2e7b6a-752a-4404-8712-7598d7d094c5 +2024-09-11 09:09:19.770343 2024-09-11 09:09:19.770348 comef 8714 R rec 46e00a47-7d66-4a8b-9491-76097c6922a5 +2024-09-11 09:09:19.826347 2024-09-11 09:09:19.826353 comef 8715 R rec fd9ab2cf-d71a-4a38-abcc-1a7c05db1c1a +2024-09-11 09:09:19.882689 2024-09-11 09:09:19.882694 comef 8716 R rec ed2b7774-ac2b-4114-9397-72efa34a7da8 +2024-09-11 09:09:19.9484 2024-09-11 09:09:19.948405 comef 8717 R rec cd29d0e3-2e43-4169-9ea4-bd29cbb5de0a +2024-09-11 09:09:20.005758 2024-09-11 09:09:20.005762 comef 8718 R rec 5c909e9b-847c-49c8-8d98-ddbca9bd4fac +2024-09-11 09:09:20.061448 2024-09-11 09:09:20.061453 comef 8719 R rec 27ee7a73-03fd-4345-a00d-9daed2985d30 +2024-09-11 09:09:20.11825 2024-09-11 09:09:20.118254 comef 8720 R rec 64393269-dce2-417a-8952-c564b1999d68 +2024-09-11 09:09:20.182512 2024-09-11 09:09:20.182516 comef 8721 R rec 6e4a47b2-d873-425d-b175-ae247b4d629d +2024-09-11 09:09:20.239597 2024-09-11 09:09:20.239602 comef 8722 R rec edc8e959-d9cf-4e0f-9695-7eccf9b9c813 +2024-09-11 09:09:20.295962 2024-09-11 09:09:20.295966 comef 8723 R rec 032cc9ca-5379-4406-8353-0eb654fb9a96 +2024-09-11 09:09:20.35191 2024-09-11 09:09:20.351915 comef 8724 R rec 56a4b120-0377-4d5c-b7a6-725bfb8b325f +2024-09-11 09:09:20.417012 2024-09-11 09:09:20.417017 comef 8725 R rec d01a049f-e3b6-4c7c-aba2-3252e7ee9152 +2024-09-11 09:09:20.48372 2024-09-11 09:09:20.483724 comef 8726 R rec 7f022b23-c2d4-4302-9d8f-7ceb41ff8fa3 +2024-09-11 09:09:20.54532 2024-09-11 09:09:20.545325 comef 8727 R rec 2074f944-83dc-4755-9a43-3dae1b6e716f +2024-09-11 09:09:20.601341 2024-09-11 09:09:20.601347 comef 8728 R rec 7ce5765c-3595-4e0c-887e-916d62e427f8 +2024-09-11 09:09:20.661427 2024-09-11 09:09:20.661432 comef 8729 R rec 31822132-ba7c-40c8-b515-8623c274c908 +2024-09-11 09:09:20.728828 2024-09-11 09:09:20.728834 comef 8730 R rec ef33a851-ae3f-43d6-91fb-f5e19c08d5de +2024-09-11 09:09:20.790888 2024-09-11 09:09:20.790893 comef 8731 R rec fa18e3e8-1abb-4971-a4e9-ec474e3cde60 +2024-09-11 09:09:20.846894 2024-09-11 09:09:20.846899 comef 8732 R rec 1ead4bda-ee66-441f-8ce7-f7e5bd640ee4 +2024-09-11 09:09:20.907119 2024-09-11 09:09:20.907125 comef 8733 R rec 4e5c3d90-b3b7-4fb0-bf9e-b773e0fb86b8 +2024-09-11 09:09:20.971564 2024-09-11 09:09:20.971569 comef 8734 R rec a8c305d6-b1b8-48f8-be32-a62f615ae852 +2024-09-11 09:09:21.030276 2024-09-11 09:09:21.030282 comef 8735 R rec 763a32d9-8cc8-487f-9bd4-0c026e6dd56a +2024-09-11 09:09:21.086347 2024-09-11 09:09:21.086352 comef 8736 R rec 527035ea-03d4-4e87-ae75-bc45bcfcf906 +2024-09-11 09:09:21.142964 2024-09-11 09:09:21.142969 comef 8737 R rec 88fb33dc-4bf4-4f22-9276-e86428cc57cc +2024-09-11 09:09:21.197043 2024-09-11 09:09:21.197049 comef 8738 R rec 086dc2ae-8ca9-438c-86e3-5b79e7ccfb32 +2024-09-11 09:09:21.254021 2024-09-11 09:09:21.254026 comef 8739 R rec 0e3c8d2c-58a3-43fe-b486-123d83770c07 +2024-09-11 09:09:21.312267 2024-09-11 09:09:21.312271 comef 8740 R rec b690784f-9587-4c0a-be54-59a6921f0ed4 +2024-09-11 09:09:21.374512 2024-09-11 09:09:21.374517 comef 8741 R rec 40a639bb-99fd-4d5b-95de-22f7eb6c4101 +2024-09-11 09:09:21.440532 2024-09-11 09:09:21.440537 comef 8742 R rec 1be881f3-7565-41f3-8c25-d44af88b81a4 +2024-09-11 09:09:21.497611 2024-09-11 09:09:21.497617 comef 8743 R rec 00e0a8bd-f181-4fbd-a877-12046f4b535a +2024-09-11 09:09:21.557073 2024-09-11 09:09:21.557078 comef 8744 R rec 737a9126-6454-4144-9497-6f6922216ce6 +2024-09-11 09:09:21.6155 2024-09-11 09:09:21.615506 comef 8745 R rec 97de2911-5d9b-4213-aece-b75729bb4731 +2024-09-11 09:09:21.669652 2024-09-11 09:09:21.669657 comef 8746 R rec 4133c525-1335-491b-abfd-77a1e418236b +2024-09-11 09:09:21.727107 2024-09-11 09:09:21.727112 comef 8747 R rec 8d6e50d2-ca06-4991-aa1b-5108c7c2232b +2024-09-11 09:09:21.783173 2024-09-11 09:09:21.783179 comef 8748 R rec 26f56b59-f3c3-4349-9445-75cc480f09da +2024-09-11 09:09:21.838666 2024-09-11 09:09:21.838672 comef 8749 R rec 31c18016-867f-4adc-9d86-f2834138a8d5 +2024-09-11 09:09:21.893251 2024-09-11 09:09:21.893256 comef 8750 R rec 4ad7c2f6-d8b4-4046-8abf-e30c28cfce90 +2024-09-11 09:09:21.949819 2024-09-11 09:09:21.949824 comef 8751 R rec 1606e775-5903-4aaf-8a14-3896819b488e +2024-09-11 09:09:22.019231 2024-09-11 09:09:22.019237 comef 8752 R rec fae167b5-abc0-4b34-ac67-d460e9405a0e +2024-09-11 09:09:22.072835 2024-09-11 09:09:22.07284 comef 8753 R rec 1e224950-ebc5-4bfa-bccd-d25a14cc4312 +2024-09-11 09:09:22.121612 2024-09-11 09:09:22.121618 comef 8754 R rec 5fd39ead-35f1-44e1-8de2-cb0cdbf69536 +2024-09-11 09:09:22.176971 2024-09-11 09:09:22.176976 comef 8755 R rec abacde40-b862-48f9-93a6-56171cc5e88e +2024-09-11 09:09:22.233435 2024-09-11 09:09:22.233441 comef 8756 R rec e8a4b1d0-89c8-4779-b595-5a43dec48484 +2024-09-11 09:09:22.288618 2024-09-11 09:09:22.288623 comef 8757 R rec 760d4ada-1aa9-4e78-8f72-edabfbff2621 +2024-09-11 09:09:22.342948 2024-09-11 09:09:22.342952 comef 8758 R rec 087b15ee-69be-41d9-b90c-0bea65fd369b +2024-09-11 09:09:22.391454 2024-09-11 09:09:22.391459 comef 8759 R rec 0f976004-dbfc-4508-8cdf-8687741b75b5 +2024-09-11 09:09:22.440126 2024-09-11 09:09:22.440131 comef 8760 R rec 0bf5f566-bfc4-4e4f-8e8c-27ecee0927a7 +2024-09-11 09:09:22.495802 2024-09-11 09:09:22.495807 comef 8761 R rec 494937c7-0a58-4be4-a478-125a029b1776 +2024-09-11 09:09:22.549827 2024-09-11 09:09:22.549832 comef 8762 R rec 13dcf171-5939-4fdf-a5e2-e8626dcfe387 +2024-09-11 09:09:22.604049 2024-09-11 09:09:22.604054 comef 8763 R rec 53faa60c-3e31-4d55-b9c1-e26bd5ea2394 +2024-09-11 09:09:22.664536 2024-09-11 09:09:22.664541 comef 8764 R rec 1f01a7e2-360c-4b00-b092-fef8eaec52ee +2024-09-11 09:09:22.721043 2024-09-11 09:09:22.721049 comef 8765 R rec ed94166c-a8b4-46fb-a3bb-ad8a790554e7 +2024-09-11 09:09:22.778518 2024-09-11 09:09:22.778522 comef 8766 R rec 1c458168-2f46-45bb-9af5-6ae8ebae3174 +2024-09-11 09:09:22.845119 2024-09-11 09:09:22.845124 comef 8767 R rec f985fd63-b4c8-44df-b25a-50bd41b0b972 +2024-09-11 09:09:22.900015 2024-09-11 09:09:22.900021 comef 8768 R rec a538a1d5-89e3-4631-8f0a-296d140bfce3 +2024-09-11 09:09:22.955738 2024-09-11 09:09:22.955743 comef 8769 R rec d92b8ac5-0d16-4501-af8f-c1c4df3b88ef +2024-09-11 09:09:23.012263 2024-09-11 09:09:23.012268 comef 8770 R rec fe43effa-cb87-47a4-9e3d-4854478ac950 +2024-09-11 09:09:23.071995 2024-09-11 09:09:23.072 comef 8771 R rec 460bf2ba-f682-4136-8f35-585cd5a95dbc +2024-09-11 09:09:23.138524 2024-09-11 09:09:23.138529 comef 8772 R rec 493e0c39-c46b-480f-a658-089f03ab0720 +2024-09-11 09:09:23.201103 2024-09-11 09:09:23.201108 comef 8773 R rec fb5adc73-f33e-409c-b334-349e6957d3a5 +2024-09-11 09:09:23.265126 2024-09-11 09:09:23.265131 comef 8774 R rec c34e49b5-274c-4b58-bac3-71ce5ef11551 +2024-09-11 09:09:23.316771 2024-09-11 09:09:23.316776 comef 8775 R rec fe9cf596-a07e-4e8f-83ce-d03d3b2add6d +2024-09-11 09:09:23.370864 2024-09-11 09:09:23.370869 comef 8776 R rec 558c7fc6-9768-47bb-a850-c172b510747f +2024-09-11 09:09:23.425855 2024-09-11 09:09:23.425861 comef 8777 R rec 217a4270-329f-498c-8edd-d2bb6a815494 +2024-09-11 09:09:23.486015 2024-09-11 09:09:23.486021 comef 8778 R rec 6d891fc7-be93-437d-b44d-f503e9e017cc +2024-09-11 09:09:23.545263 2024-09-11 09:09:23.545268 comef 8779 R rec dd8ded26-c224-4333-8cf2-12ef12f7ae29 +2024-09-11 09:09:23.599835 2024-09-11 09:09:23.599841 comef 8780 R rec b31a136a-9cd2-4510-87a4-527ac0405a1d +2024-09-11 09:09:23.655476 2024-09-11 09:09:23.655481 comef 8781 R rec 12a59baf-8771-44ec-9562-44faad163d17 +2024-09-11 09:09:23.710214 2024-09-11 09:09:23.710219 comef 8782 R rec ed5fa1ee-b2d0-4279-b9f6-236ffb6ccc4b +2024-09-11 09:09:23.76891 2024-09-11 09:09:23.768915 comef 8783 R rec 63f018af-6a56-4a57-9e64-e29a4a50a626 +2024-09-11 09:09:23.829797 2024-09-11 09:09:23.829802 comef 8784 R rec a8548bc1-c32a-4da8-83f4-2de55c7cccc7 +2024-09-11 09:09:23.882603 2024-09-11 09:09:23.882607 comef 8785 R rec c8797e72-e2d1-4687-9b46-6f1c66493a34 +2024-09-11 09:09:23.93826 2024-09-11 09:09:23.938265 comef 8786 R rec aa95e859-c41b-4dfa-9eee-8857a428691a +2024-09-11 09:09:23.991361 2024-09-11 09:09:23.991366 comef 8787 R rec 5f7ccdb0-d26d-491d-9345-997bb466ada6 +2024-09-11 09:09:24.067971 2024-09-11 09:09:24.067977 comef 8788 R rec 9184511a-b81a-4b1d-b2e0-0050e563dc98 +2024-09-11 09:09:24.129269 2024-09-11 09:09:24.129275 comef 8789 R rec 220c270f-c7b4-46bd-b3d1-aa7e1fb1df6f +2024-09-11 09:09:24.182314 2024-09-11 09:09:24.182319 comef 8790 R rec 55032080-a247-4d66-b50c-46b6751ae983 +2024-09-11 09:09:24.237928 2024-09-11 09:09:24.237934 comef 8791 R rec f018bf72-3fae-440b-8303-2f13a555ddf4 +2024-09-11 09:09:24.29484 2024-09-11 09:09:24.294845 comef 8792 R rec f53293b0-de0d-42b5-a0af-61cda0c52146 +2024-09-11 09:09:24.349119 2024-09-11 09:09:24.349124 comef 8793 R rec 9282ba8c-1822-4936-9416-030d8da7e1a3 +2024-09-11 09:09:24.401838 2024-09-11 09:09:24.401843 comef 8794 R rec 29b6f055-14e8-41fc-a28b-f110ba3adf8c +2024-09-11 09:09:24.456032 2024-09-11 09:09:24.456037 comef 8795 R rec aff59424-f6a9-4228-9a10-f505c66601ba +2024-09-11 09:09:24.510519 2024-09-11 09:09:24.510524 comef 8796 R rec 2701d234-4d74-415a-a4fa-03bcce138250 +2024-09-11 09:09:24.570672 2024-09-11 09:09:24.570676 comef 8797 R rec 635293c9-ae4c-499c-bdc4-43d91858124b +2024-09-11 09:09:24.631742 2024-09-11 09:09:24.631748 comef 8798 R rec 665c95f5-fd42-432b-93df-ec76849750c0 +2024-09-11 09:09:24.688641 2024-09-11 09:09:24.688646 comef 8799 R rec f9dff874-08cc-4816-a11f-a850bcc5c308 +2024-09-11 09:09:24.740896 2024-09-11 09:09:24.7409 comef 8800 R rec 3829e202-7156-40ca-ae68-b010d53272e6 +2024-09-11 09:09:24.799874 2024-09-11 09:09:24.79988 comef 8801 R rec 6279c620-306b-493c-b059-d669196bd75f +2024-09-11 09:09:24.860645 2024-09-11 09:09:24.86065 comef 8802 R rec 7cec07dd-1e4f-4a0f-a50b-23cedc6c0af8 +2024-09-11 09:09:24.914556 2024-09-11 09:09:24.914561 comef 8803 R rec 93c35aaa-0086-409d-8323-60af85fe49ba +2024-09-11 09:09:24.969262 2024-09-11 09:09:24.969268 comef 8804 R rec 9f91cabc-bcce-4d73-8bb4-9e1c10973a93 +2024-09-11 09:09:25.029423 2024-09-11 09:09:25.029428 comef 8805 R rec e41bd5b9-6132-4731-bb39-d30261a611da +2024-09-11 09:09:25.088221 2024-09-11 09:09:25.088227 comef 8806 R rec 7935e65d-c836-4f89-b02b-602efc7af2c3 +2024-09-11 09:09:25.14985 2024-09-11 09:09:25.149855 comef 8807 R rec eca5e918-907c-4650-992f-f55353e5f28a +2024-09-11 09:09:25.203693 2024-09-11 09:09:25.203698 comef 8808 R rec 3cb3bd2f-5120-4eb7-9246-9f8ff7f13dd5 +2024-09-11 09:09:25.264944 2024-09-11 09:09:25.264948 comef 8809 R rec b802f99d-2f20-4e04-96e1-31db440a9396 +2024-09-11 09:09:25.319416 2024-09-11 09:09:25.319421 comef 8810 R rec 7e348c11-3b19-413a-8dff-57fa48693e06 +2024-09-11 09:09:25.372264 2024-09-11 09:09:25.37227 comef 8811 R rec 5b9e7609-6acb-497b-9c4f-baee3f993c1f +2024-09-11 09:09:25.426624 2024-09-11 09:09:25.426628 comef 8812 R rec f166acbf-60d4-4c26-94b4-9d47e2ae0f6f +2024-09-11 09:09:25.480218 2024-09-11 09:09:25.480223 comef 8813 R rec 60385593-032d-4af4-998f-9002e0c7eeea +2024-09-11 09:09:25.540725 2024-09-11 09:09:25.54073 comef 8814 R rec 6542a206-a60e-447a-8bea-cbbf4eb67049 +2024-09-11 09:09:25.595743 2024-09-11 09:09:25.595748 comef 8815 R rec 13f6c180-0e82-4fa0-9091-22581dc88ce3 +2024-09-11 09:09:25.648849 2024-09-11 09:09:25.648854 comef 8816 R rec f1375ebc-2a5e-4a39-8b7d-7959df3c8294 +2024-09-11 09:09:25.704692 2024-09-11 09:09:25.704697 comef 8817 R rec 3000788d-e74c-410c-b6f8-9360ee66b947 +2024-09-11 09:09:25.767638 2024-09-11 09:09:25.767645 comef 8818 R rec 893c1b64-eaef-4003-a147-bea5b9aba328 +2024-09-11 09:09:25.823809 2024-09-11 09:09:25.823814 comef 8819 R rec 4428efbd-d65e-4566-9017-0afa6c150299 +2024-09-11 09:09:25.878172 2024-09-11 09:09:25.878176 comef 8820 R rec 140cb72b-525a-45ed-8413-f323a75f8dca +2024-09-11 09:09:25.935708 2024-09-11 09:09:25.935714 comef 8821 R rec 05681d85-075d-4448-94e7-374606018d30 +2024-09-11 09:09:25.985821 2024-09-11 09:09:25.985827 comef 8822 R rec d6e2166f-fa6c-4e83-aa1e-eabdfdbe65d5 +2024-09-11 09:09:26.038756 2024-09-11 09:09:26.038761 comef 8823 R rec eef03fbd-4dd9-4e70-8746-bcab688a182c +2024-09-11 09:09:26.099805 2024-09-11 09:09:26.09981 comef 8824 R rec 40547b9f-d260-4cad-ab29-ed40a7d552ea +2024-09-11 09:09:26.162264 2024-09-11 09:09:26.162269 comef 8825 R rec 285032b4-bed7-49cd-9ff7-9ce8471b4bbc +2024-09-11 09:09:26.220092 2024-09-11 09:09:26.220097 comef 8826 R rec 5ccbc1cc-917d-4437-92b2-0bf7b9280edc +2024-09-11 09:09:26.273644 2024-09-11 09:09:26.273649 comef 8827 R rec 7d686f2d-ee0b-4fa4-866c-352c40e0aa07 +2024-09-11 09:09:26.340258 2024-09-11 09:09:26.340263 comef 8828 R rec 4b5694c9-ee3f-4ce6-8bd5-51dc626ffa81 +2024-09-11 09:09:26.40632 2024-09-11 09:09:26.406324 comef 8829 R rec ef1d7d84-1ecf-468e-a0ab-f872cdbad903 +2024-09-11 09:09:26.467652 2024-09-11 09:09:26.467658 comef 8830 R rec 5c9b4b7d-81c0-4c60-9269-86a56582bd03 +2024-09-11 09:09:26.52507 2024-09-11 09:09:26.525076 comef 8831 R rec de3d66c0-42e4-4feb-acac-aa4e466c1e06 +2024-09-11 09:09:26.581 2024-09-11 09:09:26.581005 comef 8832 R rec 4c5ce0ae-923e-439a-987a-7e3ba7aec77c +2024-09-11 09:09:26.636821 2024-09-11 09:09:26.636826 comef 8833 R rec 60b979b5-7e08-41e9-9857-a7a02b0100a5 +2024-09-11 09:09:26.694289 2024-09-11 09:09:26.694293 comef 8834 R rec 89894064-b4e0-449d-9943-33f0f4fd9344 +2024-09-11 09:09:26.752063 2024-09-11 09:09:26.752068 comef 8835 R rec ed9463b3-9b31-440b-8282-03229a155944 +2024-09-11 09:09:26.806801 2024-09-11 09:09:26.806806 comef 8836 R rec 17113d81-9992-4297-a52a-7aea0499eda9 +2024-09-11 09:09:26.874257 2024-09-11 09:09:26.874262 comef 8837 R rec cf550a00-e338-4cb0-957b-9d157abb971c +2024-09-11 09:09:26.93091 2024-09-11 09:09:26.930914 comef 8838 R rec 5f991e38-e776-499b-ab82-bd60272531eb +2024-09-11 09:09:26.996022 2024-09-11 09:09:26.996027 comef 8839 R rec 5083ec92-9644-4cbf-a3cd-657971fdbbeb +2024-09-11 09:09:27.053688 2024-09-11 09:09:27.053693 comef 8840 R rec e1ecf1b2-a033-4324-b780-5817fa377cf3 +2024-09-11 09:09:27.111642 2024-09-11 09:09:27.111646 comef 8841 R rec 7a985f13-ef75-4d0d-8dfe-8d6553e86824 +2024-09-11 09:09:27.181473 2024-09-11 09:09:27.181478 comef 8842 R rec bac92ec1-7b3f-4dd8-a582-b9ed850f627c +2024-09-11 09:09:27.24608 2024-09-11 09:09:27.246084 comef 8843 R rec 63650190-0fa7-448a-b8c6-d6d221f39c01 +2024-09-11 09:09:27.327417 2024-09-11 09:09:27.327422 comef 8844 R rec a743774c-c944-44e3-a225-4a1b67071a08 +2024-09-11 09:09:27.407161 2024-09-11 09:09:27.407166 comef 8845 R rec c9388fdb-1042-4f6d-bce2-1ec2e77a25c4 +2024-09-11 09:09:27.467661 2024-09-11 09:09:27.467666 comef 8846 R rec 767bec3f-2634-49e2-a175-9cbf836b3771 +2024-09-11 09:09:27.525458 2024-09-11 09:09:27.525463 comef 8847 R rec 8edd1096-cc64-442b-b76b-a97293d9aedf +2024-09-11 09:09:27.578349 2024-09-11 09:09:27.578353 comef 8848 R rec 33be358d-bea3-4f9f-af73-2c663078c4f3 +2024-09-11 09:09:27.631338 2024-09-11 09:09:27.631343 comef 8849 R rec c109626c-b627-477d-bd88-d6407d6fdc87 +2024-09-11 09:09:27.69002 2024-09-11 09:09:27.690026 comef 8850 R rec 2e5cc511-ed4a-42d2-9018-c9eb8cb8f874 +2024-09-11 09:09:27.746061 2024-09-11 09:09:27.746065 comef 8851 R rec 7f16bba3-a50a-421b-8e4f-04a79a7aba17 +2024-09-11 09:09:27.806045 2024-09-11 09:09:27.806049 comef 8852 R rec 12e35a66-d6ee-4ad8-adb7-afe878d50743 +2024-09-11 09:09:27.860331 2024-09-11 09:09:27.860335 comef 8853 R rec 9fb04513-596d-429f-b08f-fda32e7c7cd4 +2024-09-11 09:09:27.917492 2024-09-11 09:09:27.917497 comef 8854 R rec 6a1d3934-da78-40cc-ba23-a4f487444805 +2024-09-11 09:09:27.970654 2024-09-11 09:09:27.970659 comef 8855 R rec a9ac04f2-b5cf-4501-a9f3-a95debf93b5c +2024-09-11 09:09:28.024878 2024-09-11 09:09:28.024883 comef 8856 R rec f73c8de8-0ec7-4857-b755-4c1bfd697e8e +2024-09-11 09:09:28.077829 2024-09-11 09:09:28.077834 comef 8857 R rec 9f7e1c9d-39d8-4328-9cb3-daf3e3ea6382 +2024-09-11 09:09:28.136841 2024-09-11 09:09:28.136845 comef 8858 R rec 4aceabb2-56e2-4dee-bc7b-256e363c3b01 +2024-09-11 09:09:28.192504 2024-09-11 09:09:28.192509 comef 8859 R rec 5a274cdd-cee4-41c0-a7cd-18e044d32509 +2024-09-11 09:09:28.24718 2024-09-11 09:09:28.247186 comef 8860 R rec 153ab9ec-2bd2-4a4d-9e0b-b78bc2835c90 +2024-09-11 09:09:28.30183 2024-09-11 09:09:28.301835 comef 8861 R rec 800a9a5a-f5bd-4edd-b69f-d55f3e835d92 +2024-09-11 09:09:28.357592 2024-09-11 09:09:28.357598 comef 8862 R rec 071ef287-9577-4d48-bade-d622f0efeebf +2024-09-11 09:09:28.419414 2024-09-11 09:09:28.41942 comef 8863 R rec 8885017f-3a80-49dd-89bc-4fdccfa3ca46 +2024-09-11 09:09:28.487003 2024-09-11 09:09:28.487008 comef 8864 R rec 237ea976-0cb7-4a79-96e3-3b45b5991b68 +2024-09-11 09:09:28.5456 2024-09-11 09:09:28.545604 comef 8865 R rec d48fe458-84e8-470c-bfdc-02ab7ce3a284 +2024-09-11 09:09:28.599312 2024-09-11 09:09:28.599317 comef 8866 R rec bc51c02e-75c9-4409-8828-eba7a1d3ca90 +2024-09-11 09:09:28.65424 2024-09-11 09:09:28.654245 comef 8867 R rec b96591b5-34f1-4652-8bc5-b1e79d1387f3 +2024-09-11 09:09:28.711688 2024-09-11 09:09:28.711693 comef 8868 R rec cc3335f2-c856-4cab-9b78-23f11a9540f7 +2024-09-11 09:09:28.767301 2024-09-11 09:09:28.767306 comef 8869 R rec f40e534c-2eed-4049-9418-3be70098bff8 +2024-09-11 09:09:28.822885 2024-09-11 09:09:28.82289 comef 8870 R rec 80d4ba5d-cdad-4e0b-8fcc-fb25d7d261cb +2024-09-11 09:09:28.876429 2024-09-11 09:09:28.876436 comef 8871 R rec aa5f9248-5fe4-4c32-857b-fd9df1cb3770 +2024-09-11 09:09:28.93567 2024-09-11 09:09:28.935675 comef 8872 R rec 87002448-bab2-4cd3-89d2-7771bdd5ae47 +2024-09-11 09:09:28.996093 2024-09-11 09:09:28.996098 comef 8873 R rec 54b4c163-1b2e-4806-8492-efa272e7da83 +2024-09-11 09:09:29.056394 2024-09-11 09:09:29.056399 comef 8874 R rec bade3402-5d7d-4f40-a3eb-bdcc4af61551 +2024-09-11 09:09:29.114127 2024-09-11 09:09:29.114132 comef 8875 R rec e768d529-95d4-4272-b9ee-cc32748f738b +2024-09-11 09:09:29.165359 2024-09-11 09:09:29.165366 comef 8876 R rec 89e6a391-c4b3-44cd-b10b-5200572485eb +2024-09-11 09:09:29.218522 2024-09-11 09:09:29.218526 comef 8877 R rec 7d6873a4-f8b4-4f35-a7ca-4c754eb4994e +2024-09-11 09:09:29.276225 2024-09-11 09:09:29.276231 comef 8878 R rec 057cb19e-368f-45d7-99ff-27db454e07b7 +2024-09-11 09:09:29.333876 2024-09-11 09:09:29.333881 comef 8879 R rec 9c71fc40-2161-4e41-967b-8436da3caa7b +2024-09-11 09:09:29.387909 2024-09-11 09:09:29.387913 comef 8880 R rec a8d53949-43a3-498f-9736-74a612abd585 +2024-09-11 09:09:29.437245 2024-09-11 09:09:29.43725 comef 8881 R rec e0d639b3-3e74-495a-875c-2bf687b8cea0 +2024-09-11 09:09:29.498053 2024-09-11 09:09:29.498058 comef 8882 R rec 46e5656d-d774-4677-9d87-8f09c752ed14 +2024-09-11 09:09:29.562371 2024-09-11 09:09:29.562377 comef 8883 R rec 10ca0f9b-3706-45d1-b5f9-b813aee391bb +2024-09-11 09:09:29.619345 2024-09-11 09:09:29.619352 comef 8884 R rec 425182ad-6422-4ab5-923c-4b304171bb0e +2024-09-11 09:09:29.677654 2024-09-11 09:09:29.677659 comef 8885 R rec c517472d-45f2-415c-acc5-61caaf7b3c36 +2024-09-11 09:09:29.734218 2024-09-11 09:09:29.734224 comef 8886 R rec c974559d-3faa-4f66-b3e4-7427e239f245 +2024-09-11 09:09:29.789748 2024-09-11 09:09:29.789752 comef 8887 R rec 528b3980-5861-462b-a1e3-f94f67d3d380 +2024-09-11 09:09:29.844744 2024-09-11 09:09:29.844749 comef 8888 R rec fd65a7a8-3d09-4951-bf35-188ef6ce3778 +2024-09-11 09:09:29.903312 2024-09-11 09:09:29.903317 comef 8889 R rec 6ac85efd-41ae-45fc-b1a1-fde099f15620 +2024-09-11 09:09:29.964956 2024-09-11 09:09:29.96496 comef 8890 R rec 15d945fc-e5bf-4051-a200-e73f180efa9f +2024-09-11 09:09:30.01963 2024-09-11 09:09:30.019635 comef 8891 R rec 650d4ff8-d8ac-4f7b-a540-71500be00a02 +2024-09-11 09:09:30.079324 2024-09-11 09:09:30.079329 comef 8892 R rec 3c74df22-a8d2-4051-9707-5536e810c13f +2024-09-11 09:09:30.135402 2024-09-11 09:09:30.135408 comef 8893 R rec 3fb25019-d2b2-426b-acf3-52df5e9af7d1 +2024-09-11 09:09:30.198122 2024-09-11 09:09:30.198127 comef 8894 R rec 83b0a142-a075-4373-a0c1-6bbc9bafba4d +2024-09-11 09:09:30.256911 2024-09-11 09:09:30.256916 comef 8895 R rec 3832be39-be10-47ed-a447-a648064a5225 +2024-09-11 09:09:30.312746 2024-09-11 09:09:30.31275 comef 8896 R rec 12845563-9a9b-44cc-a559-290cac07d990 +2024-09-11 09:09:30.366013 2024-09-11 09:09:30.366018 comef 8897 R rec ac27e23a-f638-49fd-8f27-c772d556cdaf +2024-09-11 09:09:30.419037 2024-09-11 09:09:30.419042 comef 8898 R rec 32a1b5e2-ed4f-45d0-8257-b11178fcb73b +2024-09-11 09:09:30.482323 2024-09-11 09:09:30.482328 comef 8899 R rec 410e328d-13e2-4c11-a696-e2f0125443ad +2024-09-11 09:09:30.553048 2024-09-11 09:09:30.553054 comef 8900 R rec c150cb3b-79a1-4f36-a2e1-67fb326faedf +2024-09-11 09:09:30.610953 2024-09-11 09:09:30.610958 comef 8901 R rec 4c1e5918-e739-478d-b6b8-a95459ea02d0 +2024-09-11 09:09:30.670364 2024-09-11 09:09:30.670368 comef 8902 R rec ca298c84-c32b-4554-b4d3-e0c066d7a35a +2024-09-11 09:09:30.727638 2024-09-11 09:09:30.727643 comef 8903 R rec ae163912-c16c-4a69-9539-0937a8d84f11 +2024-09-11 09:09:30.781675 2024-09-11 09:09:30.781679 comef 8904 R rec 940508c9-4f91-4fa9-82e5-60865f322242 +2024-09-11 09:09:30.835318 2024-09-11 09:09:30.835323 comef 8905 R rec 7ef9e0fb-63a4-4ab2-9759-a6c906f50370 +2024-09-11 09:09:30.889399 2024-09-11 09:09:30.889404 comef 8906 R rec fafbd5fa-0a19-4e03-ab54-18553376381c +2024-09-11 09:09:30.945741 2024-09-11 09:09:30.945746 comef 8907 R rec 03176d2b-eeec-4a09-ae88-700fc5aa961e +2024-09-11 09:09:31.007473 2024-09-11 09:09:31.007478 comef 8908 R rec 0171d794-28f9-4bba-b37f-ef8edf8b9c1c +2024-09-11 09:09:31.064007 2024-09-11 09:09:31.064012 comef 8909 R rec 5bf1dd58-5bb4-4a1f-b981-5aa83e8f5e75 +2024-09-11 09:09:31.120869 2024-09-11 09:09:31.120875 comef 8910 R rec af42de70-c45f-49ed-ae9c-eeb54cb694ec +2024-09-11 09:09:31.173424 2024-09-11 09:09:31.173429 comef 8911 R rec ed97886a-cab4-47fd-864a-b9538bbadbf6 +2024-09-11 09:09:31.230015 2024-09-11 09:09:31.23002 comef 8912 R rec b405d6c7-28aa-46f3-9d15-74cab1248b6b +2024-09-11 09:09:31.287938 2024-09-11 09:09:31.287943 comef 8913 R rec fa17dda9-c5bc-4fb7-a8f2-ede79ca6f043 +2024-09-11 09:09:31.342167 2024-09-11 09:09:31.342171 comef 8914 R rec abebf9ba-a220-4254-b948-442a07586227 +2024-09-11 09:09:31.397305 2024-09-11 09:09:31.39731 comef 8915 R rec 71fc388e-e342-4ca1-8423-d465c0445e6d +2024-09-11 09:09:31.452551 2024-09-11 09:09:31.452557 comef 8916 R rec de050b27-e4c4-47b4-a1e7-df50be54aa29 +2024-09-11 09:09:31.509013 2024-09-11 09:09:31.509019 comef 8917 R rec 071ab5fb-af20-45a9-a43e-a0b114703d87 +2024-09-11 09:09:31.594489 2024-09-11 09:09:31.594494 comef 8918 R rec 9328e545-f168-4946-9b76-02852b9d1b19 +2024-09-11 09:09:31.685508 2024-09-11 09:09:31.685513 comef 8919 R rec ff0685a6-87c2-4bfd-912c-0e6f17bea7bf +2024-09-11 09:09:31.743418 2024-09-11 09:09:31.743423 comef 8920 R rec 2c8c437a-5aac-433f-967b-d933d131c356 +2024-09-11 09:09:31.797201 2024-09-11 09:09:31.797206 comef 8921 R rec a89fb2a0-9db6-47f0-9ce1-f99d05833124 +2024-09-11 09:09:31.853442 2024-09-11 09:09:31.853447 comef 8922 R rec 99d184ce-df6b-4330-a7b3-52fe0729707e +2024-09-11 09:09:31.911398 2024-09-11 09:09:31.911403 comef 8923 R rec 528a23e2-4115-4756-9638-09dc101a5a7e +2024-09-11 09:09:31.964973 2024-09-11 09:09:31.964979 comef 8924 R rec 1733828a-0de0-4e2c-a346-3ee1204a70db +2024-09-11 09:09:32.024555 2024-09-11 09:09:32.024561 comef 8925 R rec 9fe7153b-cd49-42af-8553-f6d4707a04eb +2024-09-11 09:09:32.078284 2024-09-11 09:09:32.078289 comef 8926 R rec 2dc240b8-67ba-4e72-8f9a-c8a98137cb1a +2024-09-11 09:09:32.13505 2024-09-11 09:09:32.135055 comef 8927 R rec c7f5080c-7772-422f-94ab-34983a293301 +2024-09-11 09:09:32.194552 2024-09-11 09:09:32.194557 comef 8928 R rec a0a0e5f8-1ee3-45e7-8867-bbc814ead04c +2024-09-11 09:09:32.26033 2024-09-11 09:09:32.260336 comef 8929 R rec 3bd95775-fe2e-420c-8f57-86069a6e4590 +2024-09-11 09:09:32.326159 2024-09-11 09:09:32.326163 comef 8930 R rec 50d298e0-9adf-4a6f-af65-42fd7195905d +2024-09-11 09:09:32.393775 2024-09-11 09:09:32.39378 comef 8931 R rec 28c7c98d-5a85-49c7-946a-59ce75ee504b +2024-09-11 09:09:32.446152 2024-09-11 09:09:32.446157 comef 8932 R rec 20f63597-4969-4abe-b424-31a7f4f09059 +2024-09-11 09:09:32.498571 2024-09-11 09:09:32.498575 comef 8933 R rec 2c233ab7-2ba5-42ac-ae72-4e4673118b16 +2024-09-11 09:09:32.557574 2024-09-11 09:09:32.557579 comef 8934 R rec f22f37a1-8e6e-4148-ae77-9886e158040b +2024-09-11 09:09:32.629517 2024-09-11 09:09:32.629523 comef 8935 R rec 8d0de924-c667-422c-b6f0-ad12f92eb322 +2024-09-11 09:09:32.686647 2024-09-11 09:09:32.686653 comef 8936 R rec fcf4c705-37ce-405e-843e-3de8ecd657a3 +2024-09-11 09:09:32.741766 2024-09-11 09:09:32.741771 comef 8937 R rec 7e9d1a41-be1e-415f-bc1d-60f1ebab88e4 +2024-09-11 09:09:32.797225 2024-09-11 09:09:32.79723 comef 8938 R rec 10a35084-8f35-4a46-86cd-0cf4fbc11d94 +2024-09-11 09:09:32.852573 2024-09-11 09:09:32.852582 comef 8939 R rec 21545558-da92-48b8-bede-e06fff4b5eee +2024-09-11 09:09:32.91362 2024-09-11 09:09:32.913624 comef 8940 R rec bbda010b-3bef-49d1-a730-ac790cf11726 +2024-09-11 09:09:32.975171 2024-09-11 09:09:32.975175 comef 8941 R rec 4cb15f8b-9d0c-458e-9155-1379ad557407 +2024-09-11 09:09:33.033214 2024-09-11 09:09:33.03322 comef 8942 R rec 547b1b07-f02e-47d5-ac85-53bb3055cc57 +2024-09-11 09:09:33.089093 2024-09-11 09:09:33.089097 comef 8943 R rec c0e1954f-1dc1-45c0-a421-929a673b7d6a +2024-09-11 09:09:33.144397 2024-09-11 09:09:33.144401 comef 8944 R rec 8ed83af3-3f98-4e9e-84a0-6b605098856d +2024-09-11 09:09:33.19769 2024-09-11 09:09:33.197695 comef 8945 R rec 4c0b7330-7939-4b5b-b12a-f8d6877e3fee +2024-09-11 09:09:33.252903 2024-09-11 09:09:33.252908 comef 8946 R rec 07ce3b94-26f0-437f-a24a-20e89f515538 +2024-09-11 09:09:33.311496 2024-09-11 09:09:33.311501 comef 8947 R rec c4d0c42d-b02c-47ee-9860-cf14640816fc +2024-09-11 09:09:33.366448 2024-09-11 09:09:33.366453 comef 8948 R rec 498979c3-2956-41b4-b325-302d15569b90 +2024-09-11 09:09:33.419778 2024-09-11 09:09:33.419784 comef 8949 R rec f39b999e-b2ab-4319-add8-6318a677bfc7 +2024-09-11 09:09:33.472854 2024-09-11 09:09:33.472858 comef 8950 R rec 48f52a36-ab8e-4492-b6e0-7f5948833921 +2024-09-11 09:09:33.529548 2024-09-11 09:09:33.529553 comef 8951 R rec 9e7f85f8-dcce-43af-b252-22fdc60a8ada +2024-09-11 09:09:33.588508 2024-09-11 09:09:33.588513 comef 8952 R rec 3d8b9594-bd2d-4955-836a-826f54426994 +2024-09-11 09:09:33.648288 2024-09-11 09:09:33.648292 comef 8953 R rec 7415ffce-acc8-491c-9b72-d9e62f02b2e2 +2024-09-11 09:09:33.709618 2024-09-11 09:09:33.709623 comef 8954 R rec d55871a7-2746-4551-ae71-b0d1e62481af +2024-09-11 09:09:33.775756 2024-09-11 09:09:33.775762 comef 8955 R rec 2dd6e7af-d9d8-4335-be45-330a2100ce36 +2024-09-11 09:09:33.831468 2024-09-11 09:09:33.831472 comef 8956 R rec eb91822c-4952-4c91-98e8-13f1be40cde7 +2024-09-11 09:09:33.957077 2024-09-11 09:09:33.957082 comef 8957 R rec 187abeaf-7d64-44f5-aec6-aa52afb001ec +2024-09-11 09:09:34.011028 2024-09-11 09:09:34.011033 comef 8958 R rec 6256a94a-d0e0-4e5f-99d9-046927548e4e +2024-09-11 09:09:34.071527 2024-09-11 09:09:34.071532 comef 8959 R rec 58c37b21-c93b-4f4c-b430-37e2d198a044 +2024-09-11 09:09:34.123387 2024-09-11 09:09:34.123392 comef 8960 R rec 8a78fb80-04c1-4d08-969b-214128e20306 +2024-09-11 09:09:34.180126 2024-09-11 09:09:34.180131 comef 8961 R rec 8637fcd7-207f-4d5b-9cff-780fe9a9ed3c +2024-09-11 09:09:34.243064 2024-09-11 09:09:34.24307 comef 8962 R rec 456cbb99-cc2d-43ad-9847-882813153408 +2024-09-11 09:09:34.29691 2024-09-11 09:09:34.296916 comef 8963 R rec f7e6dc4e-5222-420a-93ee-89f885b484ed +2024-09-11 09:09:34.358225 2024-09-11 09:09:34.358231 comef 8964 R rec d80521d6-4b8d-4b0f-ac16-4596df6621ca +2024-09-11 09:09:34.416493 2024-09-11 09:09:34.416497 comef 8965 R rec f5fbdb70-b1ea-43de-9ca3-2bb4af37ca6e +2024-09-11 09:09:34.47493 2024-09-11 09:09:34.474936 comef 8966 R rec 0c156ce0-65d1-4946-8063-7e7e4addcd61 +2024-09-11 09:09:34.533693 2024-09-11 09:09:34.533698 comef 8967 R rec 03bb7838-f866-40d1-b769-c2741e9da6d6 +2024-09-11 09:09:34.592848 2024-09-11 09:09:34.592853 comef 8968 R rec 2b8c2468-a71b-44a1-b72d-74a8c99eda1e +2024-09-11 09:09:34.660068 2024-09-11 09:09:34.660073 comef 8969 R rec d2fcecb5-4a13-43cc-b5ee-bde5d1917aa6 +2024-09-11 09:09:34.73002 2024-09-11 09:09:34.730024 comef 8970 R rec bec2ef2f-f3d2-4bdc-b863-a8935f19c3d0 +2024-09-11 09:09:34.785994 2024-09-11 09:09:34.785999 comef 8971 R rec 083b17b8-8a29-4bd3-a0fc-87447198c6b0 +2024-09-11 09:09:34.845415 2024-09-11 09:09:34.84542 comef 8972 R rec ee010d41-e9c5-4cb6-872a-b4d8014dcbeb +2024-09-11 09:09:34.902937 2024-09-11 09:09:34.902941 comef 8973 R rec ff0cd0a1-9e43-4c1e-8f64-dc1d38758b4d +2024-09-11 09:09:34.955685 2024-09-11 09:09:34.95569 comef 8974 R rec c3cd4cc2-fe1b-4594-a472-70c27c513ce9 +2024-09-11 09:09:35.03369 2024-09-11 09:09:35.033696 comef 8975 R rec 1e88884b-4732-4e0d-be3a-f73db01e4677 +2024-09-11 09:09:35.101244 2024-09-11 09:09:35.10125 comef 8976 R rec f3e334c6-7129-410c-aba6-59e668683732 +2024-09-11 09:09:35.162747 2024-09-11 09:09:35.162752 comef 8977 R rec c9d6e170-99c8-4b14-a45b-4468647bebff +2024-09-11 09:09:35.224119 2024-09-11 09:09:35.224124 comef 8978 R rec 4e77110f-260e-47cc-b2e6-c658e402b52c +2024-09-11 09:09:35.278295 2024-09-11 09:09:35.278299 comef 8979 R rec a8051675-55d7-4e08-90d0-f198c3b641eb +2024-09-11 09:09:35.340468 2024-09-11 09:09:35.340473 comef 8980 R rec be5a6b1f-0d28-4033-93eb-80a205de8da0 +2024-09-11 09:09:35.39489 2024-09-11 09:09:35.394895 comef 8981 R rec 657e96bd-9874-42a6-8696-8671a0016798 +2024-09-11 09:09:35.452196 2024-09-11 09:09:35.452201 comef 8982 R rec 8f807ca3-b260-4add-981c-ae748038a7cd +2024-09-11 09:09:35.513762 2024-09-11 09:09:35.513767 comef 8983 R rec e318e57a-5ce4-4391-919d-13ec68742b2e +2024-09-11 09:09:35.570839 2024-09-11 09:09:35.570844 comef 8984 R rec 63962a42-17f5-4467-8b0d-e1827436be51 +2024-09-11 09:09:35.630784 2024-09-11 09:09:35.630789 comef 8985 R rec e13e87fb-2dea-4ab3-a68e-1c9a877f15d2 +2024-09-11 09:09:35.692812 2024-09-11 09:09:35.692817 comef 8986 R rec afdc9a1b-8fd3-4045-85b6-00615527b6c0 +2024-09-11 09:09:35.754745 2024-09-11 09:09:35.754749 comef 8987 R rec 78d15de0-81d5-4967-a377-2413cf6992bf +2024-09-11 09:09:35.821914 2024-09-11 09:09:35.82192 comef 8988 R rec a6559cf3-47a4-4e38-bbdf-d4dee8998ea8 +2024-09-11 09:09:35.879614 2024-09-11 09:09:35.879619 comef 8989 R rec b159a58b-f918-400e-9788-9fbfd98f5d00 +2024-09-11 09:09:35.931443 2024-09-11 09:09:35.931449 comef 8990 R rec 7049d4d4-46da-4975-b4ed-10e09b825b74 +2024-09-11 09:09:35.98865 2024-09-11 09:09:35.988655 comef 8991 R rec b7819c38-3c23-4459-819c-a3db3fb6c858 +2024-09-11 09:09:36.045895 2024-09-11 09:09:36.045899 comef 8992 R rec 2cd70f25-4b8c-4cd2-95c3-362b9fafbbcc +2024-09-11 09:09:36.100921 2024-09-11 09:09:36.100926 comef 8993 R rec 52503f14-790a-4fdd-9ce1-9690923f4300 +2024-09-11 09:09:36.157409 2024-09-11 09:09:36.157414 comef 8994 R rec 42c5c115-b14e-425f-b2f2-95f6d8469fc8 +2024-09-11 09:09:36.211141 2024-09-11 09:09:36.211146 comef 8995 R rec e36b3278-58d7-40ad-b548-800afb10641e +2024-09-11 09:09:36.267457 2024-09-11 09:09:36.267463 comef 8996 R rec 794e76bd-dab9-4a56-a9a7-bc49cbc65932 +2024-09-11 09:09:36.322318 2024-09-11 09:09:36.322323 comef 8997 R rec 024ddd8b-429b-4243-afc2-a208fdda5e0d +2024-09-11 09:09:36.388853 2024-09-11 09:09:36.388858 comef 8998 R rec fa788657-b9cb-4551-8751-5656aa2b7fc3 +2024-09-11 09:09:36.444412 2024-09-11 09:09:36.444417 comef 8999 R rec ca81b9f4-cd87-49a6-a597-738d80f90923 +2024-09-11 09:09:36.499414 2024-09-11 09:09:36.49942 comef 9000 R rec d2b6202c-7212-48dc-8dc8-3384f9649338 +2024-09-11 09:09:36.565299 2024-09-11 09:09:36.565305 comef 9001 R rec 8a4c6d94-b5f8-4647-b0b1-7149225ea3d7 +2024-09-11 09:09:36.620096 2024-09-11 09:09:36.620103 comef 9002 R rec 32d42b7e-6455-49f4-ac74-cc5a145434c6 +2024-09-11 09:09:36.679854 2024-09-11 09:09:36.679859 comef 9003 R rec 53271314-f8e6-4b30-88b2-763111d82ba4 +2024-09-11 09:09:36.736575 2024-09-11 09:09:36.73658 comef 9004 R rec f1df23d6-bcf6-4f7d-80a8-814091766d9c +2024-09-11 09:09:36.803609 2024-09-11 09:09:36.803613 comef 9005 R rec 6e80e932-da93-46b8-94f8-eb9949f36f73 +2024-09-11 09:09:36.873393 2024-09-11 09:09:36.873398 comef 9006 R rec 3b728d02-f5f6-4073-bfbf-3bebdaa9cf1b +2024-09-11 09:09:36.931109 2024-09-11 09:09:36.931115 comef 9007 R rec f224042f-e88b-42d2-92c4-36cf529c7316 +2024-09-11 09:09:36.983743 2024-09-11 09:09:36.983747 comef 9008 R rec 779368b2-33cc-48ab-92e5-0d4876b64ee0 +2024-09-11 09:09:37.03692 2024-09-11 09:09:37.036924 comef 9009 R rec 9590983d-d3e1-44a2-92d9-0e7fc263dbfc +2024-09-11 09:09:37.094646 2024-09-11 09:09:37.094651 comef 9010 R rec 2a73b8e2-c790-4cfa-a9c1-bd1f35b77738 +2024-09-11 09:09:37.156346 2024-09-11 09:09:37.156351 comef 9011 R rec c48a3b66-6e53-48e1-8fc3-beeef4073f00 +2024-09-11 09:09:37.212821 2024-09-11 09:09:37.212826 comef 9012 R rec 2996fdef-f911-43cf-b7c9-e50ef97709e5 +2024-09-11 09:09:37.275313 2024-09-11 09:09:37.275318 comef 9013 R rec ba24181c-f3fa-41ac-96e2-b482e01967ee +2024-09-11 09:09:37.336022 2024-09-11 09:09:37.336028 comef 9014 R rec dd215fa7-318a-4fda-9060-7d1435049a1a +2024-09-11 09:09:37.396272 2024-09-11 09:09:37.396277 comef 9015 R rec 8ed50b3b-b48f-4f63-809b-a7b616c29675 +2024-09-11 09:09:37.4544 2024-09-11 09:09:37.454404 comef 9016 R rec b456c21f-0fb0-4449-9d8b-4e406acf2750 +2024-09-11 09:09:37.515078 2024-09-11 09:09:37.515084 comef 9017 R rec 47251998-cb63-4e1a-bf54-61eebdc492c8 +2024-09-11 09:09:37.57996 2024-09-11 09:09:37.579965 comef 9018 R rec 9b43df2e-bf04-475f-9b18-80e7c13bf8f4 +2024-09-11 09:09:37.643137 2024-09-11 09:09:37.643143 comef 9019 R rec e9d6b91e-d170-4011-8759-12d73f045e80 +2024-09-11 09:09:37.699806 2024-09-11 09:09:37.699812 comef 9020 R rec 1e9ba4cc-4114-48ec-8feb-4c89e0f63e22 +2024-09-11 09:09:37.755955 2024-09-11 09:09:37.75596 comef 9021 R rec bf68b172-25df-4f5f-984c-1129cce938d4 +2024-09-11 09:09:37.819739 2024-09-11 09:09:37.819745 comef 9022 R rec d63fb60b-fb6e-4141-8456-8f5f0c5fe626 +2024-09-11 09:09:37.893412 2024-09-11 09:09:37.893417 comef 9023 R rec 39f3b8f6-6b65-45d2-89f9-336c1a3db485 +2024-09-11 09:09:37.951769 2024-09-11 09:09:37.951775 comef 9024 R rec e72082bc-66a0-4c57-956f-c450fd4910cd +2024-09-11 09:09:38.005051 2024-09-11 09:09:38.005055 comef 9025 R rec 7d924b03-95a6-4e89-ac3a-f4700c8305ac +2024-09-11 09:09:38.06382 2024-09-11 09:09:38.063825 comef 9026 R rec 8282ffe8-710a-4ad0-9564-8de357b39f10 +2024-09-11 09:09:38.120371 2024-09-11 09:09:38.120396 comef 9027 R rec 24a23997-7dab-4788-ab6f-b2860b04e48a +2024-09-11 09:09:38.173492 2024-09-11 09:09:38.173497 comef 9028 R rec 5dfebefa-68ec-49e3-a75a-1d8e0c9254a9 +2024-09-11 09:09:38.227468 2024-09-11 09:09:38.227472 comef 9029 R rec f650eaa3-d174-4954-a43f-5f9e1657f983 +2024-09-11 09:09:38.283853 2024-09-11 09:09:38.283859 comef 9030 R rec 46f80736-00a2-40a4-bd51-6f30648d7252 +2024-09-11 09:09:38.341141 2024-09-11 09:09:38.341179 comef 9031 R rec f796cedd-819c-410e-8e41-fad82ecee5c1 +2024-09-11 09:09:38.404638 2024-09-11 09:09:38.404643 comef 9032 R rec 79c41503-f29a-42aa-84b2-b3a0277f2a43 +2024-09-11 09:09:38.458774 2024-09-11 09:09:38.458779 comef 9033 R rec cdc4fe93-516d-41ff-93b5-a5c1cc39b9cb +2024-09-11 09:09:38.515576 2024-09-11 09:09:38.515581 comef 9034 R rec fb008cd0-d6bd-42c4-b4d0-9a2a3d135230 +2024-09-11 09:09:38.570456 2024-09-11 09:09:38.57046 comef 9035 R rec bbd0c7c3-d00c-4556-b272-bf391eaaa898 +2024-09-11 09:09:38.629194 2024-09-11 09:09:38.629198 comef 9036 R rec 51cbeb2c-957e-443c-8630-c4cb7a17cc21 +2024-09-11 09:09:38.687995 2024-09-11 09:09:38.688002 comef 9037 R rec 73a61487-2f9e-42b1-8699-e5d883dbb995 +2024-09-11 09:09:38.740621 2024-09-11 09:09:38.740626 comef 9038 R rec 50d6bc46-f887-4232-b5a0-61eb456c6e92 +2024-09-11 09:09:38.794183 2024-09-11 09:09:38.794188 comef 9039 R rec 87b3cecd-930e-4a08-828a-906d260c40c8 +2024-09-11 09:09:38.849048 2024-09-11 09:09:38.849053 comef 9040 R rec de19d87f-0a55-4dc5-a799-e3548c379075 +2024-09-11 09:09:38.90581 2024-09-11 09:09:38.905815 comef 9041 R rec 759c877e-d48c-4ddc-86de-d2b778568167 +2024-09-11 09:09:38.960021 2024-09-11 09:09:38.960026 comef 9042 R rec 922fe68c-3cbb-44c4-9161-9d53f6f26367 +2024-09-11 09:09:39.035714 2024-09-11 09:09:39.035719 comef 9043 R rec b6c3ce77-73a1-49c0-a0dd-e4b8f3adcf5f +2024-09-11 09:09:39.094862 2024-09-11 09:09:39.094867 comef 9044 R rec 521d9aa8-2f63-4c7d-acb0-dc3afe818534 +2024-09-11 09:09:39.148479 2024-09-11 09:09:39.148484 comef 9045 R rec 8297a0db-55eb-4f73-9bea-908ae7bd6f51 +2024-09-11 09:09:39.203538 2024-09-11 09:09:39.203542 comef 9046 R rec 179b921b-06a0-4913-aa1b-a3b422a37a27 +2024-09-11 09:09:39.257651 2024-09-11 09:09:39.257655 comef 9047 R rec 03847d12-0f40-4b63-9724-111965f35cd3 +2024-09-11 09:09:39.311921 2024-09-11 09:09:39.311925 comef 9048 R rec 5b319fbc-3636-4368-8657-8627f7980df4 +2024-09-11 09:09:39.369971 2024-09-11 09:09:39.369976 comef 9049 R rec a903ab20-c6fd-4984-b9d8-a8adca354659 +2024-09-11 09:09:39.427634 2024-09-11 09:09:39.427639 comef 9050 R rec ad9df3c2-367d-4a7e-9632-73302352dd7b +2024-09-11 09:09:39.479314 2024-09-11 09:09:39.479319 comef 9051 R rec 740beac4-87b8-45ed-a2b7-a9378a779e83 +2024-09-11 09:09:39.530404 2024-09-11 09:09:39.53041 comef 9052 R rec d19b41fb-fbc1-4238-901a-e62c0fa92140 +2024-09-11 09:09:39.589128 2024-09-11 09:09:39.589133 comef 9053 R rec ace2ab2b-d43f-48b7-ba6a-265432696dac +2024-09-11 09:09:39.641566 2024-09-11 09:09:39.641571 comef 9054 R rec d49ab404-d769-4f38-852b-6ffe66983ff6 +2024-09-11 09:09:39.699565 2024-09-11 09:09:39.699571 comef 9055 R rec 68802bad-f975-460d-86b3-0a97f199b062 +2024-09-11 09:09:39.763384 2024-09-11 09:09:39.76339 comef 9056 R rec 9507ea9b-5adc-479f-a32c-a491b6ab3568 +2024-09-11 09:09:39.820548 2024-09-11 09:09:39.820561 comef 9057 R rec 87eadb51-a0db-4f61-8726-b1b4de329120 +2024-09-11 09:09:39.883033 2024-09-11 09:09:39.883039 comef 9058 R rec 46be9f3d-1e57-49f5-a66c-1f80baaa5ac3 +2024-09-11 09:09:39.937843 2024-09-11 09:09:39.937847 comef 9059 R rec ab82c552-4750-409a-a740-58afa30a4de4 +2024-09-11 09:09:39.992009 2024-09-11 09:09:39.992014 comef 9060 R rec b11474a6-441e-4bd4-a741-77531ae9a02c +2024-09-11 09:09:40.06308 2024-09-11 09:09:40.063085 comef 9061 R rec 76a74de7-7b00-4b36-8a55-53f8b55948bc +2024-09-11 09:09:40.123882 2024-09-11 09:09:40.123887 comef 9062 R rec 6fec1b55-fad3-442e-b8d8-dc5c1c7426c5 +2024-09-11 09:09:40.18176 2024-09-11 09:09:40.181764 comef 9063 R rec 448e0257-b58f-4a47-8f1b-2f005efdf977 +2024-09-11 09:09:40.237099 2024-09-11 09:09:40.237104 comef 9064 R rec 714039a2-c782-4ab2-a545-befc9a842047 +2024-09-11 09:09:40.309329 2024-09-11 09:09:40.309334 comef 9065 R rec 1c9f46c5-5e6b-4f63-8a13-52e2054abf33 +2024-09-11 09:09:40.364973 2024-09-11 09:09:40.364978 comef 9066 R rec 36c20f53-f0f6-4522-b4ff-654d6bad81d4 +2024-09-11 09:09:40.42209 2024-09-11 09:09:40.422095 comef 9067 R rec 6c8a8791-2503-4b05-aefa-27685ef3467b +2024-09-11 09:09:40.475757 2024-09-11 09:09:40.475762 comef 9068 R rec d6c9aa0a-b588-46f0-94a6-d3c668855a8e +2024-09-11 09:09:40.533054 2024-09-11 09:09:40.53306 comef 9069 R rec 1d2bf822-eece-4cd4-81ff-4074389ef356 +2024-09-11 09:09:40.597163 2024-09-11 09:09:40.597168 comef 9070 R rec 529ccdc1-30d3-4e9d-b4cc-087fb9adbf43 +2024-09-11 09:09:40.659016 2024-09-11 09:09:40.659021 comef 9071 R rec 48781dc9-4a4b-4180-87f2-8016717dfef5 +2024-09-11 09:09:40.713589 2024-09-11 09:09:40.713593 comef 9072 R rec 2010b526-b46a-4395-b853-20aedaea9e35 +2024-09-11 09:09:40.768206 2024-09-11 09:09:40.768212 comef 9073 R rec ec89fd1a-9502-49cb-9563-e0d88ec4db99 +2024-09-11 09:09:40.821861 2024-09-11 09:09:40.821866 comef 9074 R rec a3f849bf-6db9-4d71-b960-228396c58cd3 +2024-09-11 09:09:40.878833 2024-09-11 09:09:40.878838 comef 9075 R rec a83726ac-61d6-4373-82f3-fea9999f15c5 +2024-09-11 09:09:40.934256 2024-09-11 09:09:40.934262 comef 9076 R rec 03068c5e-6bb7-4a2d-aef6-9c08e44ccd24 +2024-09-11 09:09:40.986978 2024-09-11 09:09:40.986984 comef 9077 R rec f3b6d43d-5593-4671-9aa4-4d731694e0fe +2024-09-11 09:09:41.044739 2024-09-11 09:09:41.044743 comef 9078 R rec d1788957-b44f-4926-a155-e278ac5ece8c +2024-09-11 09:09:41.110036 2024-09-11 09:09:41.110041 comef 9079 R rec bf8c42fa-4982-453f-979f-7ac7113798b8 +2024-09-11 09:09:41.178231 2024-09-11 09:09:41.178236 comef 9080 R rec 4ed078fe-dfaf-49b3-bd53-aa4e05da6a03 +2024-09-11 09:09:41.239135 2024-09-11 09:09:41.239139 comef 9081 R rec a0780d48-8091-45bd-9ea1-ddbb017b0aba +2024-09-11 09:09:41.29699 2024-09-11 09:09:41.296995 comef 9082 R rec 74faa1e6-51a8-4c25-83b6-05c9c835728d +2024-09-11 09:09:41.357883 2024-09-11 09:09:41.357888 comef 9083 R rec d4c871f7-ecd9-4bf7-9504-0d93df6546b6 +2024-09-11 09:09:41.413037 2024-09-11 09:09:41.413042 comef 9084 R rec f47dc02b-6a5e-45be-9bc0-f1c7b3cf3f77 +2024-09-11 09:09:41.468727 2024-09-11 09:09:41.468732 comef 9085 R rec 3c2895ac-d93c-42a7-935f-b8e08584b51d +2024-09-11 09:09:41.522172 2024-09-11 09:09:41.522177 comef 9086 R rec d3e7b875-d15f-487c-b2a0-d751eac24a8d +2024-09-11 09:09:41.578632 2024-09-11 09:09:41.578637 comef 9087 R rec e07eae20-d043-4577-9809-e77dfe3e8ad9 +2024-09-11 09:09:41.634123 2024-09-11 09:09:41.634128 comef 9088 R rec 6431e7a6-f6d5-4a0d-a0be-6fe5139d7a11 +2024-09-11 09:09:41.696998 2024-09-11 09:09:41.697003 comef 9089 R rec b5f9330e-85a9-4ee3-8d13-dbd12a49414f +2024-09-11 09:09:41.764007 2024-09-11 09:09:41.764012 comef 9090 R rec 6d230fd8-b250-485f-aee4-df645cec14aa +2024-09-11 09:09:41.820213 2024-09-11 09:09:41.820218 comef 9091 R rec c3a2f28e-543b-4433-aa66-5cbd0214cbe8 +2024-09-11 09:09:41.875746 2024-09-11 09:09:41.875751 comef 9092 R rec a46b98bd-b3e1-4f78-974b-05ceb40f972a +2024-09-11 09:09:41.93419 2024-09-11 09:09:41.934195 comef 9093 R rec 98e76d7c-9518-4923-90f6-4f2b13697494 +2024-09-11 09:09:41.992885 2024-09-11 09:09:41.99289 comef 9094 R rec b4c99fdc-f2b7-40ff-8fd8-56a0b53113d3 +2024-09-11 09:09:42.048723 2024-09-11 09:09:42.048728 comef 9095 R rec 6fa3e00d-4916-4df1-9c8b-ab973d2bfa9f +2024-09-11 09:09:42.113591 2024-09-11 09:09:42.113596 comef 9096 R rec df6a19ef-00d3-4ce4-b297-0ec7c1bd1bcc +2024-09-11 09:09:42.176279 2024-09-11 09:09:42.176285 comef 9097 R rec 09165e39-a222-4456-ab86-154201855c9e +2024-09-11 09:09:42.242902 2024-09-11 09:09:42.242907 comef 9098 R rec 3b6427d1-bc2b-47d1-8692-7f29302edd18 +2024-09-11 09:09:42.30215 2024-09-11 09:09:42.302156 comef 9099 R rec 5b3a2af1-e4ec-4dbd-8502-90e8f14f6fd2 +2024-09-11 09:09:42.356001 2024-09-11 09:09:42.356006 comef 9100 R rec 9cff1ab9-ffbe-4f1d-90dc-08d7b0f4c15c +2024-09-11 09:09:42.411506 2024-09-11 09:09:42.411511 comef 9101 R rec 8a7a0aa6-506b-40e2-a79e-67afb361209b +2024-09-11 09:09:42.466347 2024-09-11 09:09:42.466353 comef 9102 R rec bfd4fc0f-d7c9-4779-b4d2-874df1acacaf +2024-09-11 09:09:42.523528 2024-09-11 09:09:42.523533 comef 9103 R rec 106a632b-e19f-4a17-b253-f2e2dc77128d +2024-09-11 09:09:42.583072 2024-09-11 09:09:42.583077 comef 9104 R rec 255de9d2-9f33-4a9f-81e9-b8c2b8e84669 +2024-09-11 09:09:42.636989 2024-09-11 09:09:42.636994 comef 9105 R rec 5bde9697-2260-486c-accd-94ec43c9d1f0 +2024-09-11 09:09:42.701415 2024-09-11 09:09:42.70142 comef 9106 R rec 7fb02eb8-76c9-4b2c-8fd0-74f622c3bf82 +2024-09-11 09:09:42.756403 2024-09-11 09:09:42.756409 comef 9107 R rec 0c3a7d7b-71dd-4326-bee4-551c6f1fd3c5 +2024-09-11 09:09:42.818042 2024-09-11 09:09:42.818048 comef 9108 R rec ee677878-55e2-4873-95e2-74c9d3eab21a +2024-09-11 09:09:42.881867 2024-09-11 09:09:42.881872 comef 9109 R rec ed871209-2707-4f8e-98a0-7801fe94953b +2024-09-11 09:09:42.945111 2024-09-11 09:09:42.945115 comef 9110 R rec 5a1cc9c8-fb49-49b8-bb67-3c7abf9108a5 +2024-09-11 09:09:43.000028 2024-09-11 09:09:43.000034 comef 9111 R rec a8425855-3aad-485e-b23a-67b92224a59e +2024-09-11 09:09:43.05795 2024-09-11 09:09:43.057955 comef 9112 R rec ebb58f8b-bcd8-4ba3-b8fb-27d547ca6e60 +2024-09-11 09:09:43.119114 2024-09-11 09:09:43.11912 comef 9113 R rec a509dd24-e978-4105-a3b2-b99122a76245 +2024-09-11 09:09:43.190937 2024-09-11 09:09:43.190942 comef 9114 R rec 3a52c3c8-69ab-4f55-919d-c36d0b1c2af7 +2024-09-11 09:09:43.250112 2024-09-11 09:09:43.250116 comef 9115 R rec bb65ebb1-bec9-4a4d-9f49-e4aebb5dbc30 +2024-09-11 09:09:43.308449 2024-09-11 09:09:43.308455 comef 9116 R rec 734c9073-6b39-41be-899f-0f8faaedfc25 +2024-09-11 09:09:43.363945 2024-09-11 09:09:43.363951 comef 9117 R rec f721fe8c-e0cb-4d09-bcac-c6c25c65ec3c +2024-09-11 09:09:43.419449 2024-09-11 09:09:43.419455 comef 9118 R rec 261fe550-a6ba-42c7-a26d-2f68071d79c2 +2024-09-11 09:09:43.47243 2024-09-11 09:09:43.472434 comef 9119 R rec 7127aa25-e46e-47b2-b278-868cbb1c26cd +2024-09-11 09:09:43.526685 2024-09-11 09:09:43.52669 comef 9120 R rec d75bab55-b697-4e51-b440-db9b6eb0076f +2024-09-11 09:09:43.579873 2024-09-11 09:09:43.579877 comef 9121 R rec 52cd63e7-e21c-45bd-89f9-258b0d55d69e +2024-09-11 09:09:43.631519 2024-09-11 09:09:43.631523 comef 9122 R rec 3cd255c6-f714-4c19-ab05-c7957f7bea59 +2024-09-11 09:09:43.683805 2024-09-11 09:09:43.683809 comef 9123 R rec b5d01a22-8835-4014-aa69-162588d94684 +2024-09-11 09:09:43.735936 2024-09-11 09:09:43.735942 comef 9124 R rec c1e03ef3-2b5a-4b55-b5bd-ccd3d78c6e66 +2024-09-11 09:09:43.789137 2024-09-11 09:09:43.789143 comef 9125 R rec 57a7d75d-b224-489c-8bfb-13e8c225b81b +2024-09-11 09:09:43.849896 2024-09-11 09:09:43.849901 comef 9126 R rec cf13878c-3fa0-4f96-ae1e-4c4066cdf81f +2024-09-11 09:09:43.905753 2024-09-11 09:09:43.905757 comef 9127 R rec bade6f52-3d4a-45a3-a1ef-6d920c0174c6 +2024-09-11 09:09:43.961826 2024-09-11 09:09:43.961832 comef 9128 R rec bac34917-20c8-41d8-a456-91134d662abf +2024-09-11 09:09:44.024252 2024-09-11 09:09:44.024257 comef 9129 R rec 1e436006-23b2-488e-a53a-7312a68978a3 +2024-09-11 09:09:44.081089 2024-09-11 09:09:44.081094 comef 9130 R rec 26a54880-fc07-4e55-974f-804e342f4815 +2024-09-11 09:09:44.133791 2024-09-11 09:09:44.133796 comef 9131 R rec 9f22bdb1-fa89-4cb7-836d-5a1c0946a3bd +2024-09-11 09:09:44.194149 2024-09-11 09:09:44.194154 comef 9132 R rec 9d33962d-c7ea-4dc6-9017-e8035766001a +2024-09-11 09:09:44.26032 2024-09-11 09:09:44.260325 comef 9133 R rec 1d20e400-60f5-4923-b48c-3c9a1f79994b +2024-09-11 09:09:44.315181 2024-09-11 09:09:44.315186 comef 9134 R rec 43e3f0bf-2e3f-48a2-bfc0-6f2ae92417ba +2024-09-11 09:09:44.372937 2024-09-11 09:09:44.372942 comef 9135 R rec ad1c8f61-69d2-4038-853a-843b24c6828d +2024-09-11 09:09:44.428309 2024-09-11 09:09:44.428314 comef 9136 R rec c94fd32d-592c-4a6d-b3bb-e931c83fc312 +2024-09-11 09:09:44.486662 2024-09-11 09:09:44.486667 comef 9137 R rec 29f78e01-e0d7-4810-866a-bce0042726bb +2024-09-11 09:09:44.546249 2024-09-11 09:09:44.546253 comef 9138 R rec 3dd76003-a41d-4fa1-a6c9-65349aade34a +2024-09-11 09:09:44.609231 2024-09-11 09:09:44.609236 comef 9139 R rec 3723af50-f685-489c-ae2a-d28e856b3c12 +2024-09-11 09:09:44.664974 2024-09-11 09:09:44.664979 comef 9140 R rec 9ef158d7-cff2-4ca4-a176-56a67966c5a6 +2024-09-11 09:09:44.720029 2024-09-11 09:09:44.720034 comef 9141 R rec 15bda328-3dbe-4365-a7c8-9621b09e685f +2024-09-11 09:09:44.773234 2024-09-11 09:09:44.77324 comef 9142 R rec a2158ce7-1b94-4dda-9502-ac748ae2bf64 +2024-09-11 09:09:44.831939 2024-09-11 09:09:44.831943 comef 9143 R rec 0d4fd253-40d0-4e1c-ad34-470450939962 +2024-09-11 09:09:44.888308 2024-09-11 09:09:44.888313 comef 9144 R rec 3d5251b1-5f21-4431-8109-398a18ab845c +2024-09-11 09:09:44.953971 2024-09-11 09:09:44.953976 comef 9145 R rec 16cd3245-a80d-4c53-ab43-218538a79688 +2024-09-11 09:09:45.019941 2024-09-11 09:09:45.019946 comef 9146 R rec 73ea60ef-87fe-4939-b2bf-92ca8eb99def +2024-09-11 09:09:45.080175 2024-09-11 09:09:45.080179 comef 9147 R rec 4d3a856a-38ea-439b-bef7-42f45e6b732a +2024-09-11 09:09:45.136396 2024-09-11 09:09:45.136403 comef 9148 R rec 5277db82-e82e-4fca-8923-49bf65446fa1 +2024-09-11 09:09:45.193995 2024-09-11 09:09:45.193999 comef 9149 R rec 6f4c6832-4633-4307-95ad-9aea2180228b +2024-09-11 09:09:45.249019 2024-09-11 09:09:45.249023 comef 9150 R rec e72fc32b-a665-4538-8fdd-bd24cc4a8c93 +2024-09-11 09:09:45.316835 2024-09-11 09:09:45.31684 comef 9151 R rec 7aadee06-444f-4c09-8da8-1fd94581d7f5 +2024-09-11 09:09:45.382857 2024-09-11 09:09:45.382863 comef 9152 R rec d1d4eb7b-191b-4696-952f-74eb85639e47 +2024-09-11 09:09:45.443471 2024-09-11 09:09:45.443476 comef 9153 R rec 7e46f87f-56d0-402f-b435-93ee77e5bae3 +2024-09-11 09:09:45.501951 2024-09-11 09:09:45.501956 comef 9154 R rec 3d2afe47-53c8-425f-a804-8280b20b7e75 +2024-09-11 09:09:45.565539 2024-09-11 09:09:45.565545 comef 9155 R rec f3fc1111-f52f-4c3c-a2ff-2368a90877f2 +2024-09-11 09:09:45.634946 2024-09-11 09:09:45.63496 comef 9156 R rec 1028b10d-d28e-47ec-9afd-c9a74589af4a +2024-09-11 09:09:45.695178 2024-09-11 09:09:45.695183 comef 9157 R rec 9a257009-ecac-4582-a710-8a5041899e66 +2024-09-11 09:09:45.759839 2024-09-11 09:09:45.759844 comef 9158 R rec 9fa6559f-939a-48c7-8a03-bc84e96f241f +2024-09-11 09:09:45.817041 2024-09-11 09:09:45.817047 comef 9159 R rec 2e80ab86-bf8f-47b5-a2ac-bb50b404fa4f +2024-09-11 09:09:45.876674 2024-09-11 09:09:45.876679 comef 9160 R rec fcbbe956-0237-439b-87e6-c716c45fa728 +2024-09-11 09:09:45.937406 2024-09-11 09:09:45.93741 comef 9161 R rec e965da74-cf4d-4e99-afeb-aa639cdac1b8 +2024-09-11 09:09:45.992525 2024-09-11 09:09:45.99253 comef 9162 R rec 80c0f8b0-178b-4a32-b99e-f22a009e8433 +2024-09-11 09:09:46.050602 2024-09-11 09:09:46.050608 comef 9163 R rec 573dfc00-73a1-4c81-99a3-8dd4eca64291 +2024-09-11 09:09:46.110654 2024-09-11 09:09:46.11066 comef 9164 R rec 63927245-9117-4738-86a2-d18df0e47e41 +2024-09-11 09:09:46.17147 2024-09-11 09:09:46.171475 comef 9165 R rec 1937d2ee-623d-4381-86f5-cb28bd604910 +2024-09-11 09:09:46.267189 2024-09-11 09:09:46.267195 comef 9166 R rec e7ac3719-ac68-4743-a9ac-107e450bd89d +2024-09-11 09:09:46.322199 2024-09-11 09:09:46.322204 comef 9167 R rec 191e9b55-1561-447d-9297-2f290afa8cc1 +2024-09-11 09:09:46.376408 2024-09-11 09:09:46.376413 comef 9168 R rec f2ce9d7a-0dd4-460d-a360-15f60ee669f6 +2024-09-11 09:09:46.428475 2024-09-11 09:09:46.42848 comef 9169 R rec 4348dadb-f041-4f97-ab14-e395876d2b02 +2024-09-11 09:09:46.483698 2024-09-11 09:09:46.483704 comef 9170 R rec 2b860485-5c41-46af-8f64-2e37c6c7ce6f +2024-09-11 09:09:46.54394 2024-09-11 09:09:46.543945 comef 9171 R rec 4fa137f5-d173-49af-bbb2-a556deae0c24 +2024-09-11 09:09:46.598426 2024-09-11 09:09:46.59843 comef 9172 R rec 6c47dc9a-26d1-40e4-a023-5f76f1325341 +2024-09-11 09:09:46.654915 2024-09-11 09:09:46.654922 comef 9173 R rec d623315e-3817-4480-920c-fbb081e755af +2024-09-11 09:09:46.707644 2024-09-11 09:09:46.707649 comef 9174 R rec 06038dee-9904-423b-8377-a50645d0b0eb +2024-09-11 09:09:46.761048 2024-09-11 09:09:46.761053 comef 9175 R rec 015b01a3-3f4b-4466-815c-e523aacc385c +2024-09-11 09:09:46.821328 2024-09-11 09:09:46.821334 comef 9176 R rec d8feca77-5d98-4287-a57b-cf32a0a15b5b +2024-09-11 09:09:46.881286 2024-09-11 09:09:46.88129 comef 9177 R rec 491e0183-c690-47ca-903c-746667d76f63 +2024-09-11 09:09:46.947686 2024-09-11 09:09:46.947691 comef 9178 R rec ff3920a1-23c5-4719-9ba0-29454b13b27f +2024-09-11 09:09:47.004043 2024-09-11 09:09:47.004048 comef 9179 R rec 18a9e770-b606-46a8-8d11-555f64c254f3 +2024-09-11 09:09:47.066976 2024-09-11 09:09:47.066981 comef 9180 R rec e1dbbf4b-e210-4580-8b1d-6c7158b8e5e2 +2024-09-11 09:09:47.122599 2024-09-11 09:09:47.122605 comef 9181 R rec d6fd321f-923a-4861-a874-901be300d1c2 +2024-09-11 09:09:47.177955 2024-09-11 09:09:47.177959 comef 9182 R rec b2d3613e-1521-4bf8-b879-1c79254c84ae +2024-09-11 09:09:47.234472 2024-09-11 09:09:47.234478 comef 9183 R rec 084eccf4-6fb9-443e-b204-ad19129321a3 +2024-09-11 09:09:47.307131 2024-09-11 09:09:47.307137 comef 9184 R rec dc738cc1-c0c6-4326-a69e-e27b040dd33a +2024-09-11 09:09:47.366879 2024-09-11 09:09:47.366885 comef 9185 R rec 3bed5ff9-4f36-42ea-a61c-7f625d624dec +2024-09-11 09:09:47.424888 2024-09-11 09:09:47.424893 comef 9186 R rec 146e7d60-b04c-4d7d-a3da-fd04a4786573 +2024-09-11 09:09:47.48081 2024-09-11 09:09:47.480814 comef 9187 R rec ed55d1af-773d-4b1f-93ea-86588a63f7f9 +2024-09-11 09:09:47.540707 2024-09-11 09:09:47.540713 comef 9188 R rec d68d9961-e66c-4883-8ea4-0e296cd7353d +2024-09-11 09:09:47.597979 2024-09-11 09:09:47.597983 comef 9189 R rec 5fc4377c-f1b1-4daa-a49d-47e89bc03368 +2024-09-11 09:09:47.655333 2024-09-11 09:09:47.655338 comef 9190 R rec 0dbc289d-2c63-4ab3-b15d-96bdf710795a +2024-09-11 09:09:47.711521 2024-09-11 09:09:47.711526 comef 9191 R rec 79760c08-41ba-453d-a7e9-de51f324d0a9 +2024-09-11 09:09:47.774584 2024-09-11 09:09:47.774588 comef 9192 R rec 2e846238-cccc-4b40-b8e9-450d6b4e1ac6 +2024-09-11 09:09:47.83542 2024-09-11 09:09:47.835425 comef 9193 R rec baa9cb15-90a6-4b0f-98f4-8d963137b73b +2024-09-11 09:09:47.893584 2024-09-11 09:09:47.893589 comef 9194 R rec 8dbbd42b-8cb8-4d6d-9650-d541d61d4b6a +2024-09-11 09:09:47.953871 2024-09-11 09:09:47.953876 comef 9195 R rec 37664d47-36ec-421c-8120-46a29db30562 +2024-09-11 09:09:48.008052 2024-09-11 09:09:48.008058 comef 9196 R rec ef1f4365-3a6a-4c55-bdba-809189dec9ae +2024-09-11 09:09:48.066837 2024-09-11 09:09:48.066843 comef 9197 R rec 5961137e-092d-47a1-9383-6803f9d034d4 +2024-09-11 09:09:48.128169 2024-09-11 09:09:48.128174 comef 9198 R rec 3bf9634e-6bfa-4fd4-a16e-f51b77126bc2 +2024-09-11 09:09:48.18847 2024-09-11 09:09:48.188474 comef 9199 R rec c8e9eb98-562e-4035-a932-8234d89f3c8b +2024-09-11 09:09:48.250582 2024-09-11 09:09:48.250589 comef 9200 R rec 03cf57fb-7075-4452-a46e-25116c78422d +2024-09-11 09:09:48.315636 2024-09-11 09:09:48.315641 comef 9201 R rec 2bf9e549-59fe-41f9-a971-9e2af588458c +2024-09-11 09:09:48.371348 2024-09-11 09:09:48.371353 comef 9202 R rec 80920801-f041-4fc0-afca-814d4d61fa5c +2024-09-11 09:09:48.424707 2024-09-11 09:09:48.424712 comef 9203 R rec ea59a122-7d95-4760-a2dd-da5b2e721e53 +2024-09-11 09:09:48.479516 2024-09-11 09:09:48.479521 comef 9204 R rec ad3858de-5ecf-4866-bec6-1460f7eb571e +2024-09-11 09:09:48.535468 2024-09-11 09:09:48.535473 comef 9205 R rec bed230e3-38f3-4c31-8e90-8a7310d4573c +2024-09-11 09:09:48.592097 2024-09-11 09:09:48.592102 comef 9206 R rec c019cca5-5067-4f97-be38-536a03e3e887 +2024-09-11 09:09:48.646048 2024-09-11 09:09:48.646053 comef 9207 R rec d3fe4031-1972-4ea7-ad9d-aaa39132123b +2024-09-11 09:09:48.703989 2024-09-11 09:09:48.703994 comef 9208 R rec 264eb538-62c0-40cc-8d9e-c759bb36cb36 +2024-09-11 09:09:48.759443 2024-09-11 09:09:48.759448 comef 9209 R rec 339f85a9-9de9-4876-9d4d-fc7cfbf9f141 +2024-09-11 09:09:48.820587 2024-09-11 09:09:48.820595 comef 9210 R rec bf6aae2c-6e60-4330-a14f-671aad1af150 +2024-09-11 09:09:48.873667 2024-09-11 09:09:48.873672 comef 9211 R rec 9825e623-39cc-4972-8840-fe5be7d2a681 +2024-09-11 09:09:48.930359 2024-09-11 09:09:48.930364 comef 9212 R rec 9a8d8c70-e0a0-454d-a79f-6000adaf0d8f +2024-09-11 09:09:48.993948 2024-09-11 09:09:48.993952 comef 9213 R rec 6d0d227f-e39d-47c3-b028-594848482bde +2024-09-11 09:09:49.048882 2024-09-11 09:09:49.048887 comef 9214 R rec b8ec5c10-182c-4c1e-b1ff-ee7c2bac3167 +2024-09-11 09:09:49.108988 2024-09-11 09:09:49.108993 comef 9215 R rec 613400df-070f-47e6-87f6-5639eceb35d2 +2024-09-11 09:09:49.167001 2024-09-11 09:09:49.167007 comef 9216 R rec c51773f1-72a8-4c0c-8256-487c83f691fd +2024-09-11 09:09:49.227105 2024-09-11 09:09:49.227112 comef 9217 R rec 980523c8-1b2b-489a-b53e-9b7d3b457a88 +2024-09-11 09:09:49.294741 2024-09-11 09:09:49.294747 comef 9218 R rec 45de8edb-6ae2-41dc-b8c3-92d65582f48b +2024-09-11 09:09:49.348496 2024-09-11 09:09:49.348501 comef 9219 R rec c9482b00-fd69-40df-88c7-bf51ea590277 +2024-09-11 09:09:49.409805 2024-09-11 09:09:49.40981 comef 9220 R rec 664c2567-9676-4379-8dab-4d4d6f926bac +2024-09-11 09:09:49.465699 2024-09-11 09:09:49.465705 comef 9221 R rec 7a2e2221-c2e6-4ba9-a374-77d826da177b +2024-09-11 09:09:49.526172 2024-09-11 09:09:49.526177 comef 9222 R rec b3e70c69-a4c8-4827-b671-10d03b6603e9 +2024-09-11 09:09:49.58183 2024-09-11 09:09:49.581835 comef 9223 R rec 047d931a-47c8-4042-9de1-d95273a711c4 +2024-09-11 09:09:49.63929 2024-09-11 09:09:49.639295 comef 9224 R rec 29357b27-a18c-4a7c-afa3-9fed79f072e9 +2024-09-11 09:09:49.69975 2024-09-11 09:09:49.699755 comef 9225 R rec c2678d3a-428d-49d3-b0e5-e0842d6eddfa +2024-09-11 09:09:49.753635 2024-09-11 09:09:49.753645 comef 9226 R rec 761a9314-e5e5-49ac-b5af-630577c509bf +2024-09-11 09:09:49.807638 2024-09-11 09:09:49.807643 comef 9227 R rec adfc08a1-ec29-4222-a255-dd593d060073 +2024-09-11 09:09:49.860925 2024-09-11 09:09:49.860929 comef 9228 R rec 11ad5603-90b9-4124-ab67-6aec36b6b561 +2024-09-11 09:09:49.918825 2024-09-11 09:09:49.918832 comef 9229 R rec 19b7c12e-a194-4861-a928-af6c003613b7 +2024-09-11 09:09:49.974743 2024-09-11 09:09:49.974748 comef 9230 R rec bbdc4a23-b54e-4b58-a7fa-81501189a0e9 +2024-09-11 09:09:50.030985 2024-09-11 09:09:50.03099 comef 9231 R rec e0393e9b-e841-4bfa-8890-f7d87e1d7377 +2024-09-11 09:09:50.089766 2024-09-11 09:09:50.089772 comef 9232 R rec a8de90fa-0c4f-4264-bfdf-366037f4aaff +2024-09-11 09:09:50.14732 2024-09-11 09:09:50.147325 comef 9233 R rec 0faa3650-94a0-4789-85e0-ea426254f27a +2024-09-11 09:09:50.206998 2024-09-11 09:09:50.207002 comef 9234 R rec e85161af-1f04-4c89-aff6-1ece675d5dd0 +2024-09-11 09:09:50.271364 2024-09-11 09:09:50.271369 comef 9235 R rec 3caa1b72-4782-47ac-a3fa-44cab793d815 +2024-09-11 09:09:50.344213 2024-09-11 09:09:50.344218 comef 9236 R rec 3cd69eaa-8ec5-4537-ac34-35308fcdb0c3 +2024-09-11 09:09:50.401677 2024-09-11 09:09:50.401682 comef 9237 R rec 2110adce-ab64-4a50-82f1-a33676052ce2 +2024-09-11 09:09:50.46559 2024-09-11 09:09:50.465596 comef 9238 R rec 777a8485-0ecc-41e2-96fe-8321c0c2cc49 +2024-09-11 09:09:50.518599 2024-09-11 09:09:50.518604 comef 9239 R rec 3c34f63e-d16e-4536-b32c-5b67641819da +2024-09-11 09:09:50.577826 2024-09-11 09:09:50.577831 comef 9240 R rec 3a570469-c109-480e-b8e3-33651521fd21 +2024-09-11 09:09:50.629311 2024-09-11 09:09:50.629318 comef 9241 R rec 98b3ef91-9153-4bf0-8443-54ea6c2d3941 +2024-09-11 09:09:50.681218 2024-09-11 09:09:50.681222 comef 9242 R rec 1fd05e8e-2c8a-4baf-81c8-eb78388455fb +2024-09-11 09:09:50.74122 2024-09-11 09:09:50.741225 comef 9243 R rec 27e0c6dd-140a-48d1-ad35-948cba7571bf +2024-09-11 09:09:50.795219 2024-09-11 09:09:50.795224 comef 9244 R rec 1916aec4-c4d4-4707-ba1f-784844270d19 +2024-09-11 09:09:50.851939 2024-09-11 09:09:50.851944 comef 9245 R rec b6171fce-cfbf-441e-afed-5ee62b58df1c +2024-09-11 09:09:50.911439 2024-09-11 09:09:50.911444 comef 9246 R rec 2412c3bc-cd6d-4c13-a645-49e123ec366f +2024-09-11 09:09:50.970767 2024-09-11 09:09:50.970771 comef 9247 R rec 00decd3c-efdc-42bc-b604-0286fa9d0a91 +2024-09-11 09:09:51.030093 2024-09-11 09:09:51.030098 comef 9248 R rec a2c7d790-a517-4ef9-b849-a0c931ef8fd7 +2024-09-11 09:09:51.08991 2024-09-11 09:09:51.089915 comef 9249 R rec 62d9b17a-c91c-408d-8629-7de1392d5c25 +2024-09-11 09:09:51.169383 2024-09-11 09:09:51.169388 comef 9250 R rec 70c45960-0ab3-48f8-9f65-492655a96df0 +2024-09-11 09:09:51.243682 2024-09-11 09:09:51.243687 comef 9251 R rec c770450d-f625-484f-b1aa-9285f9f59867 +2024-09-11 09:09:51.310586 2024-09-11 09:09:51.310591 comef 9252 R rec 357f26b9-7100-4427-bb70-d77763a08d64 +2024-09-11 09:09:51.368678 2024-09-11 09:09:51.368684 comef 9253 R rec abf46b69-01c9-4a56-b48e-bc1dae5e8c3b +2024-09-11 09:09:51.421308 2024-09-11 09:09:51.421312 comef 9254 R rec 853bb5ec-5ff3-4646-8898-5c65b4e74221 +2024-09-11 09:09:51.475681 2024-09-11 09:09:51.475687 comef 9255 R rec 41a7e1af-6fca-4dba-82e2-0a3c63ecc9a7 +2024-09-11 09:09:51.536491 2024-09-11 09:09:51.536496 comef 9256 R rec 0ac1a415-2be7-4368-83f7-1576681bdda9 +2024-09-11 09:09:51.59108 2024-09-11 09:09:51.591084 comef 9257 R rec 5c54e675-ac74-4048-b5e9-de43c93516e8 +2024-09-11 09:09:51.649626 2024-09-11 09:09:51.64963 comef 9258 R rec 04fb4dae-2d1c-437a-940a-8fd762e18c6a +2024-09-11 09:09:51.707251 2024-09-11 09:09:51.707257 comef 9259 R rec 96d97daf-afda-4974-9f88-4ef4d4ba1bb4 +2024-09-11 09:09:51.765275 2024-09-11 09:09:51.765281 comef 9260 R rec d5c62608-6932-4d18-a407-8d036ccc8e9a +2024-09-11 09:09:51.825728 2024-09-11 09:09:51.825733 comef 9261 R rec 54530c8a-d2f5-4ce8-bc55-e164bd653b8a +2024-09-11 09:09:51.883667 2024-09-11 09:09:51.883673 comef 9262 R rec c7c7bcfa-114d-4157-8f0e-4f069254d0c5 +2024-09-11 09:09:51.941691 2024-09-11 09:09:51.941697 comef 9263 R rec a4996dc4-3adb-4e59-8415-355b62f9922f +2024-09-11 09:09:51.9952 2024-09-11 09:09:51.995204 comef 9264 R rec de75e7a6-6ee6-4bc4-af1b-7e9b61799c33 +2024-09-11 09:09:52.050204 2024-09-11 09:09:52.050209 comef 9265 R rec 0f0a80d8-91f7-4f07-b8f9-5089146ab2a8 +2024-09-11 09:09:52.108796 2024-09-11 09:09:52.108802 comef 9266 R rec 4fbd822a-c8b2-4a48-bb8d-d162a911be62 +2024-09-11 09:09:52.176103 2024-09-11 09:09:52.176108 comef 9267 R rec 60304184-7a19-48d7-968e-da4024782047 +2024-09-11 09:09:52.239716 2024-09-11 09:09:52.239721 comef 9268 R rec fc842cbb-7b37-446c-8be3-a3ee14c41fb6 +2024-09-11 09:09:52.296467 2024-09-11 09:09:52.296473 comef 9269 R rec fb1eb544-bf90-4b7b-bb78-60d55f60aac4 +2024-09-11 09:09:52.357287 2024-09-11 09:09:52.357292 comef 9270 R rec 15d720b4-a3c2-4b9d-a3f9-dcf64bd438a5 +2024-09-11 09:09:52.411365 2024-09-11 09:09:52.411369 comef 9271 R rec adf162ad-d966-47e1-82f9-384270263b29 +2024-09-11 09:09:52.464218 2024-09-11 09:09:52.464224 comef 9272 R rec b330fb06-3d03-4158-9637-adc5e30aa885 +2024-09-11 09:09:52.527162 2024-09-11 09:09:52.527167 comef 9273 R rec 86c5b2f0-d884-45f4-b2d4-3ad2798dadac +2024-09-11 09:09:52.5855 2024-09-11 09:09:52.585506 comef 9274 R rec b60872d8-53a4-4dfa-a6dc-c094c42f1afa +2024-09-11 09:09:52.643874 2024-09-11 09:09:52.643878 comef 9275 R rec f8ac8c71-3cc9-4e66-b18d-d65bf47b2e75 +2024-09-11 09:09:52.700377 2024-09-11 09:09:52.700383 comef 9276 R rec 58e5cfa8-a8f8-4230-b2fd-202a2f19b20c +2024-09-11 09:09:52.754885 2024-09-11 09:09:52.75489 comef 9277 R rec a9d9bdfd-e4c4-4891-b6de-8dd2f5cc8531 +2024-09-11 09:09:52.810203 2024-09-11 09:09:52.810208 comef 9278 R rec 641dd338-e193-4f05-9e09-46a4dad723f7 +2024-09-11 09:09:52.865092 2024-09-11 09:09:52.865096 comef 9279 R rec 1e863518-374f-436b-a447-0c0590b193b4 +2024-09-11 09:09:52.924886 2024-09-11 09:09:52.924891 comef 9280 R rec 943de9c0-f4b6-4c75-84a6-0def2dba3396 +2024-09-11 09:09:52.977585 2024-09-11 09:09:52.97759 comef 9281 R rec 7fa6d022-0d97-4dd5-ab20-455bc1835814 +2024-09-11 09:09:53.042065 2024-09-11 09:09:53.04207 comef 9282 R rec c37c7989-9416-48b7-9ee1-902c1cc88cbb +2024-09-11 09:09:53.108404 2024-09-11 09:09:53.10841 comef 9283 R rec 81ab0a1d-9d33-4346-99c2-edfee77b8973 +2024-09-11 09:09:53.173084 2024-09-11 09:09:53.173089 comef 9284 R rec b3848310-2303-46bb-9225-31f2ff4a9adb +2024-09-11 09:09:53.226298 2024-09-11 09:09:53.226303 comef 9285 R rec 084a37e1-dcf3-4696-a8b3-ca5c36ea8361 +2024-09-11 09:09:53.276337 2024-09-11 09:09:53.276343 comef 9286 R rec 376a7d1b-917a-47aa-b499-5534d9165db6 +2024-09-11 09:09:53.334087 2024-09-11 09:09:53.334092 comef 9287 R rec ca963278-012a-4f04-9b07-a75e7402352c +2024-09-11 09:09:53.397843 2024-09-11 09:09:53.397847 comef 9288 R rec 0af4c45c-2a42-41ae-a418-847167ff23ca +2024-09-11 09:09:53.460378 2024-09-11 09:09:53.460382 comef 9289 R rec bb92d80d-d3b0-419c-96fe-bc6944b9d3d8 +2024-09-11 09:09:53.527627 2024-09-11 09:09:53.527632 comef 9290 R rec 75d1408a-dd10-4f6b-b06f-d0f872ada00c +2024-09-11 09:09:53.59162 2024-09-11 09:09:53.591625 comef 9291 R rec bf10cdd3-910b-4ce5-9898-41dfec7352f8 +2024-09-11 09:09:53.642034 2024-09-11 09:09:53.642039 comef 9292 R rec 98c61205-88fe-4f66-b63a-431e8a67dd86 +2024-09-11 09:09:53.697739 2024-09-11 09:09:53.697745 comef 9293 R rec 5eb367eb-cd2f-41b9-acac-afb913fea36a +2024-09-11 09:09:53.751888 2024-09-11 09:09:53.751893 comef 9294 R rec 735fc588-a168-48dd-960b-a06f92c552aa +2024-09-11 09:09:53.807863 2024-09-11 09:09:53.807869 comef 9295 R rec 7abda38a-35c2-4c0e-ae34-7c082f45c912 +2024-09-11 09:09:53.872403 2024-09-11 09:09:53.872407 comef 9296 R rec a57014da-36c1-46bc-b2b5-57907630de4a +2024-09-11 09:09:53.949791 2024-09-11 09:09:53.949796 comef 9297 R rec e96a5b3f-7d65-497d-ac47-8841bf00aae2 +2024-09-11 09:09:54.002497 2024-09-11 09:09:54.002503 comef 9298 R rec f4181a11-a1fb-4df7-9c4c-a5c3a96e2a3f +2024-09-11 09:09:54.051454 2024-09-11 09:09:54.051459 comef 9299 R rec f83d1728-f7da-4731-8e6d-5f55b5391d59 +2024-09-11 09:09:54.108185 2024-09-11 09:09:54.10819 comef 9300 R rec 2c500d41-437c-4c73-8665-293de2d4186e +2024-09-11 09:09:54.161322 2024-09-11 09:09:54.161327 comef 9301 R rec be11ab9b-2c0f-4d22-b6f3-2347caf9f1f2 +2024-09-11 09:09:54.215559 2024-09-11 09:09:54.215563 comef 9302 R rec a1a585e4-b21a-4084-b2b3-c3e79c05e6c0 +2024-09-11 09:09:54.272525 2024-09-11 09:09:54.27253 comef 9303 R rec f08ffbaf-5c25-48d4-861c-82b7c1afca88 +2024-09-11 09:09:54.327027 2024-09-11 09:09:54.327032 comef 9304 R rec a0b81a6d-ed37-4524-b556-0f6a5cd8b991 +2024-09-11 09:09:54.385934 2024-09-11 09:09:54.385939 comef 9305 R rec 1c2f0fe0-ee57-44ae-a50e-4ee8dbc5d0f0 +2024-09-11 09:09:54.442831 2024-09-11 09:09:54.442836 comef 9306 R rec ea30953a-8550-4398-b179-937998fa5a7d +2024-09-11 09:09:54.507055 2024-09-11 09:09:54.507061 comef 9307 R rec 75fd5963-6882-497e-bc64-ee8032da50fd +2024-09-11 09:09:54.566036 2024-09-11 09:09:54.566042 comef 9308 R rec fe88f7c3-7275-4137-9619-350d94ccb64f +2024-09-11 09:09:54.620675 2024-09-11 09:09:54.620682 comef 9309 R rec e00f2380-7d0a-4a22-ad1c-9bc2b11bf68e +2024-09-11 09:09:54.673345 2024-09-11 09:09:54.673349 comef 9310 R rec 44282db5-1a4e-42e9-9623-8d464266b91a +2024-09-11 09:09:54.724242 2024-09-11 09:09:54.724247 comef 9311 R rec 1ba78181-c9bc-4d26-9c63-64e441d51a0f +2024-09-11 09:09:54.780675 2024-09-11 09:09:54.78068 comef 9312 R rec 4b2f6e58-f3b6-4a30-b9f7-2eda4f7cca6d +2024-09-11 09:09:54.83783 2024-09-11 09:09:54.837835 comef 9313 R rec 4b9b04ad-1cda-471a-bf8a-89f27243a221 +2024-09-11 09:09:54.893498 2024-09-11 09:09:54.893502 comef 9314 R rec 204bfa21-e1ed-43af-83b4-af92f8b6ddd6 +2024-09-11 09:09:54.963447 2024-09-11 09:09:54.963453 comef 9315 R rec 83b738a5-0bb8-4116-8f3a-c9c9ed1fb5bc +2024-09-11 09:09:55.029682 2024-09-11 09:09:55.029687 comef 9316 R rec 18d85141-87f0-47a3-98c6-0337ca95e9d3 +2024-09-11 09:09:55.088552 2024-09-11 09:09:55.088557 comef 9317 R rec bea94dcb-bd36-4a18-8f01-5ea959c22d3f +2024-09-11 09:09:55.14366 2024-09-11 09:09:55.143665 comef 9318 R rec 68c176ea-4445-4ef4-8619-4c72dee25a22 +2024-09-11 09:09:55.201398 2024-09-11 09:09:55.201403 comef 9319 R rec 591fd7eb-a947-4333-abea-83bf9f603378 +2024-09-11 09:09:55.25548 2024-09-11 09:09:55.255484 comef 9320 R rec 11b90f2a-2e7b-4e02-97fa-875161932e7b +2024-09-11 09:09:55.310943 2024-09-11 09:09:55.310949 comef 9321 R rec 6e5f6573-2ba7-4ddc-86b6-6ad3ebf6909b +2024-09-11 09:09:55.369651 2024-09-11 09:09:55.369655 comef 9322 R rec 285dd78d-8ef8-4f58-88c3-412229479133 +2024-09-11 09:09:55.432406 2024-09-11 09:09:55.432412 comef 9323 R rec b5d77dbe-476f-48f6-811f-a0a47d8d4198 +2024-09-11 09:09:55.490593 2024-09-11 09:09:55.490598 comef 9324 R rec cb10264a-4efd-4fe2-9764-a5f62cbf468f +2024-09-11 09:09:55.552713 2024-09-11 09:09:55.552719 comef 9325 R rec 576f962d-190a-4a00-ad88-c86617b08f99 +2024-09-11 09:09:55.609515 2024-09-11 09:09:55.609521 comef 9326 R rec 2d5570c2-911e-4e86-936f-bdb19282cf73 +2024-09-11 09:09:55.663192 2024-09-11 09:09:55.663197 comef 9327 R rec 780b750d-1e8b-4f6c-9738-49fd8664d6c6 +2024-09-11 09:09:55.719547 2024-09-11 09:09:55.719553 comef 9328 R rec 5bd57b5f-7385-41d3-beb1-fd3b2b88e5de +2024-09-11 09:09:55.771474 2024-09-11 09:09:55.771479 comef 9329 R rec 5b72703d-f788-4a57-93cd-f8c8a03a4445 +2024-09-11 09:09:55.829099 2024-09-11 09:09:55.829105 comef 9330 R rec 26246da0-6f38-4546-8a7f-4de22926fd28 +2024-09-11 09:09:55.897433 2024-09-11 09:09:55.897438 comef 9331 R rec eb0de264-ce14-4ccf-a0c3-9833c3e4eb34 +2024-09-11 09:09:55.956323 2024-09-11 09:09:55.956327 comef 9332 R rec b9cf9265-fbe0-4a3b-a177-74bd1e5916a9 +2024-09-11 09:09:56.014178 2024-09-11 09:09:56.014183 comef 9333 R rec b43f0a40-7bcd-4bf9-afbe-9da09ac06686 +2024-09-11 09:09:56.069984 2024-09-11 09:09:56.069989 comef 9334 R rec 8732a9c5-4a2d-41da-8045-c043b331411b +2024-09-11 09:09:56.127609 2024-09-11 09:09:56.127614 comef 9335 R rec 53050f1b-17c6-4944-9137-09d025a0be91 +2024-09-11 09:09:56.181112 2024-09-11 09:09:56.181117 comef 9336 R rec 3ef95c1d-bbd3-4e5e-951d-346e024cde1f +2024-09-11 09:09:56.236277 2024-09-11 09:09:56.236282 comef 9337 R rec fa78d306-2eaf-4647-a7f1-2d894bd0c2d9 +2024-09-11 09:09:56.295434 2024-09-11 09:09:56.295441 comef 9338 R rec 4153ab61-7ea9-4b0e-9614-f7497dd732d0 +2024-09-11 09:09:56.351437 2024-09-11 09:09:56.351442 comef 9339 R rec b0598e6a-ec95-4cf9-a7d4-5415ca7896bd +2024-09-11 09:09:56.410966 2024-09-11 09:09:56.410971 comef 9340 R rec 2d1af7f7-442a-48e4-ae60-c0456934b38d +2024-09-11 09:09:56.465168 2024-09-11 09:09:56.465173 comef 9341 R rec c07d61a4-5523-4626-a1ac-16f1cd3ac753 +2024-09-11 09:09:56.522166 2024-09-11 09:09:56.522172 comef 9342 R rec 0ad37a72-0f17-4f8d-b27a-0a5bbff3d19d +2024-09-11 09:09:56.577573 2024-09-11 09:09:56.577579 comef 9343 R rec ffb5de24-97be-45eb-a3f4-d3c6cc7f0115 +2024-09-11 09:09:56.635409 2024-09-11 09:09:56.635414 comef 9344 R rec b1711f0f-046d-4944-a82a-f5c8bedd515d +2024-09-11 09:09:56.692445 2024-09-11 09:09:56.69245 comef 9345 R rec 7949c76a-1bdc-435f-9ab7-b5a6827109d2 +2024-09-11 09:09:56.7486 2024-09-11 09:09:56.748605 comef 9346 R rec c1be121f-d48f-4074-8401-d13b6f1d1dcf +2024-09-11 09:09:56.813648 2024-09-11 09:09:56.813653 comef 9347 R rec 5841ee0e-48df-440b-ae61-4dae3f9434a0 +2024-09-11 09:09:56.870315 2024-09-11 09:09:56.870319 comef 9348 R rec 910a8c60-33c8-4141-850d-72e44f76b6bf +2024-09-11 09:09:56.928148 2024-09-11 09:09:56.928154 comef 9349 R rec b8948fe5-7ce7-4015-89b2-11d83c880786 +2024-09-11 09:09:56.992867 2024-09-11 09:09:56.992872 comef 9350 R rec fec63e19-f5d2-4a1c-9c2f-919abefd8f8d +2024-09-11 09:09:57.051563 2024-09-11 09:09:57.051568 comef 9351 R rec 73e526f3-e515-4add-ae31-1820e2852d1f +2024-09-11 09:09:57.109944 2024-09-11 09:09:57.109948 comef 9352 R rec 13248dd4-b7ac-4dd2-89a3-bebaae22b62c +2024-09-11 09:09:57.170837 2024-09-11 09:09:57.170841 comef 9353 R rec b30d4f7f-6d99-4cc2-b78f-1bbb41ac6153 +2024-09-11 09:09:57.22928 2024-09-11 09:09:57.229285 comef 9354 R rec cc360bc9-065f-47e6-abb0-ce215f17f24f +2024-09-11 09:09:57.286185 2024-09-11 09:09:57.286189 comef 9355 R rec f876fb41-8aa6-43a9-a659-b6035d80ed10 +2024-09-11 09:09:57.340561 2024-09-11 09:09:57.340565 comef 9356 R rec de79e57f-142f-45f8-bec4-5bc5639d20e3 +2024-09-11 09:09:57.390744 2024-09-11 09:09:57.390749 comef 9357 R rec 8b36268e-e1ba-4ac3-9e57-7082d102d938 +2024-09-11 09:09:57.443778 2024-09-11 09:09:57.443785 comef 9358 R rec 26c4d80d-7ccf-4148-a27f-b6a9a40d042a +2024-09-11 09:09:57.507681 2024-09-11 09:09:57.507686 comef 9359 R rec d320cb9f-29b3-48a8-aa37-ce6278fd195b +2024-09-11 09:09:57.570072 2024-09-11 09:09:57.570077 comef 9360 R rec 18c10658-cb49-4af3-93b9-dcd3eace11a7 +2024-09-11 09:09:57.623947 2024-09-11 09:09:57.623952 comef 9361 R rec b1dc6169-d57a-4f66-8f1c-eb08a70cf6ef +2024-09-11 09:09:57.676314 2024-09-11 09:09:57.676319 comef 9362 R rec 0fcf5516-3368-4b3e-a240-745f3f2ac04e +2024-09-11 09:09:57.732709 2024-09-11 09:09:57.732715 comef 9363 R rec 6893f129-dad6-46e9-9c87-93651d65d761 +2024-09-11 09:09:57.787694 2024-09-11 09:09:57.787699 comef 9364 R rec 21f7626b-9452-4001-a294-b6a8804cfb99 +2024-09-11 09:09:57.845409 2024-09-11 09:09:57.845414 comef 9365 R rec b02c1105-8b3b-4549-8421-edaead98df0e +2024-09-11 09:09:57.904745 2024-09-11 09:09:57.904749 comef 9366 R rec 97232201-be23-4959-9a5e-3eff14d1b510 +2024-09-11 09:09:57.959426 2024-09-11 09:09:57.959432 comef 9367 R rec 7a3802e9-f9d6-4bec-bf29-6168bc554dad +2024-09-11 09:09:58.021229 2024-09-11 09:09:58.021234 comef 9368 R rec e0c21140-12b1-42da-94e0-a34e144273df +2024-09-11 09:09:58.091649 2024-09-11 09:09:58.091654 comef 9369 R rec a2c6eb04-e719-4e68-b5dd-413ad1dbb620 +2024-09-11 09:09:58.149036 2024-09-11 09:09:58.14904 comef 9370 R rec 0f35cf56-e252-46ea-a080-ec09f7523992 +2024-09-11 09:09:58.208936 2024-09-11 09:09:58.208941 comef 9371 R rec 1b324914-a8fa-4fa9-bbf4-b82c7ffe29e2 +2024-09-11 09:09:58.269568 2024-09-11 09:09:58.269573 comef 9372 R rec 318c38fe-de27-436c-8178-6e3272e5f815 +2024-09-11 09:09:58.323275 2024-09-11 09:09:58.32328 comef 9373 R rec 044084be-8b44-41d9-b627-723d954d1ec8 +2024-09-11 09:09:58.378387 2024-09-11 09:09:58.378392 comef 9374 R rec 0ce8367e-bdb6-4d57-b5b2-a0146ad7254f +2024-09-11 09:09:58.4315 2024-09-11 09:09:58.431505 comef 9375 R rec 7b202af1-bf75-4163-b3ca-11eb971ccea5 +2024-09-11 09:09:58.48165 2024-09-11 09:09:58.481654 comef 9376 R rec c207922a-9bd4-47d0-88c2-84cc0471eaa7 +2024-09-11 09:09:58.536496 2024-09-11 09:09:58.5365 comef 9377 R rec 0c98675e-f6c5-438d-987a-db7946889b38 +2024-09-11 09:09:58.596196 2024-09-11 09:09:58.596201 comef 9378 R rec 7316604c-fdcf-45fb-b231-38146a5983a3 +2024-09-11 09:09:58.656357 2024-09-11 09:09:58.656362 comef 9379 R rec d0e128d9-28d7-4250-9c4c-1a2bcc0cab31 +2024-09-11 09:09:58.715797 2024-09-11 09:09:58.715801 comef 9380 R rec 7cfd4ce8-5d4f-4f4b-b484-e8b717603a21 +2024-09-11 09:09:58.769251 2024-09-11 09:09:58.769256 comef 9381 R rec 053233bc-96b3-4aab-83dd-2982fbc95870 +2024-09-11 09:09:58.823551 2024-09-11 09:09:58.823556 comef 9382 R rec 35d12937-ccb8-4076-8d44-b708dec2ffe0 +2024-09-11 09:09:58.877602 2024-09-11 09:09:58.877606 comef 9383 R rec 3a2da583-e193-4582-8665-1424cb5db53a +2024-09-11 09:09:58.932872 2024-09-11 09:09:58.932877 comef 9384 R rec ba67565d-e1ad-4278-b4d7-bc8e5a865cba +2024-09-11 09:09:58.987043 2024-09-11 09:09:58.987048 comef 9385 R rec b8fd97e0-13fc-4631-8e16-5e67239e86aa +2024-09-11 09:09:59.043823 2024-09-11 09:09:59.043828 comef 9386 R rec b2dc7e2a-a5e5-4cb3-8b61-cd2d4afdfb1d +2024-09-11 09:09:59.179249 2024-09-11 09:09:59.179254 comef 9387 R rec 3bcca28a-385a-4ca0-b2ba-7152c232e47a +2024-09-11 09:09:59.234014 2024-09-11 09:09:59.23402 comef 9388 R rec ed89277f-464c-4c2c-b9f1-084b3f8e202c +2024-09-11 09:09:59.287745 2024-09-11 09:09:59.287752 comef 9389 R rec 9d07311a-310e-4b9d-987d-bc261e17a7c8 +2024-09-11 09:09:59.346579 2024-09-11 09:09:59.346583 comef 9390 R rec c5ca3e24-7a8a-40a0-a7e6-dd8036d7d9db +2024-09-11 09:09:59.398349 2024-09-11 09:09:59.398353 comef 9391 R rec 7f754975-6d9c-4f62-ad6e-cd58e28204d6 +2024-09-11 09:09:59.453119 2024-09-11 09:09:59.453127 comef 9392 R rec 41cfd718-212b-46ed-bd51-3226614182f8 +2024-09-11 09:09:59.508139 2024-09-11 09:09:59.508144 comef 9393 R rec c738303e-71a7-4106-978b-d65ec3fbad96 +2024-09-11 09:09:59.565755 2024-09-11 09:09:59.565761 comef 9394 R rec 85f6ec92-7292-4bc8-a837-78277dc9ffff +2024-09-11 09:09:59.622629 2024-09-11 09:09:59.622634 comef 9395 R rec c27135a5-2c9c-4be2-a4ad-709f00264f33 +2024-09-11 09:09:59.678628 2024-09-11 09:09:59.678633 comef 9396 R rec ab3dfe3c-8d61-48fa-8c2e-45321d9003b3 +2024-09-11 09:09:59.736715 2024-09-11 09:09:59.736719 comef 9397 R rec 200ab0c8-2487-45c8-982b-f91064ab501c +2024-09-11 09:09:59.79353 2024-09-11 09:09:59.793535 comef 9398 R rec a7a3c61e-b385-4e6b-a9ee-fd7b98622db7 +2024-09-11 09:09:59.848431 2024-09-11 09:09:59.848435 comef 9399 R rec 234406ea-5457-43a7-bcc3-f39cb4087df7 +2024-09-11 09:09:59.90579 2024-09-11 09:09:59.905795 comef 9400 R rec c053c2f2-8c90-4761-81c3-294e55a51210 +2024-09-11 09:09:59.959465 2024-09-11 09:09:59.95947 comef 9401 R rec 7e6f5787-3016-449d-b12f-4fbec0e30001 +2024-09-11 09:10:00.01516 2024-09-11 09:10:00.015165 comef 9402 R rec 2e3e4ea6-4416-4f31-8a50-1dfafafee87a +2024-09-11 09:10:00.071293 2024-09-11 09:10:00.071298 comef 9403 R rec 8721d986-dd72-454e-b61d-aedfdcec7b4f +2024-09-11 09:10:00.127904 2024-09-11 09:10:00.127909 comef 9404 R rec c9475bfd-3a42-46db-a753-dd05e76b6822 +2024-09-11 09:10:00.20423 2024-09-11 09:10:00.204235 comef 9405 R rec 6c5135a0-198c-4f85-9c2a-381932116b41 +2024-09-11 09:10:00.268592 2024-09-11 09:10:00.268597 comef 9406 R rec f9c80528-7775-4111-b6c5-49f4db319f06 +2024-09-11 09:10:00.326176 2024-09-11 09:10:00.326181 comef 9407 R rec a49c8803-6a0b-40ba-a7de-52097975c977 +2024-09-11 09:10:00.380836 2024-09-11 09:10:00.380841 comef 9408 R rec 7b2e4371-bcc4-481e-94ed-13a49f110daa +2024-09-11 09:10:00.435112 2024-09-11 09:10:00.435118 comef 9409 R rec 0270ee22-0041-4d09-9970-253e1592423a +2024-09-11 09:10:00.493271 2024-09-11 09:10:00.493276 comef 9410 R rec 90b077cb-9b06-418f-87b4-8dad24dfddac +2024-09-11 09:10:00.548792 2024-09-11 09:10:00.548796 comef 9411 R rec 562ed388-467b-46f4-9cb0-21e1ae74319c +2024-09-11 09:10:00.605213 2024-09-11 09:10:00.605218 comef 9412 R rec 99377734-605f-49bd-87e0-34578593b6a7 +2024-09-11 09:10:00.662792 2024-09-11 09:10:00.662797 comef 9413 R rec afecdfab-dda1-4e19-832c-edb4921c23b1 +2024-09-11 09:10:00.720667 2024-09-11 09:10:00.720673 comef 9414 R rec 089702ee-9f45-4e26-928c-c8ba2b53cf57 +2024-09-11 09:10:00.776759 2024-09-11 09:10:00.776764 comef 9415 R rec 4069dfd2-f4da-47ed-9475-c22044e8bd44 +2024-09-11 09:10:00.831443 2024-09-11 09:10:00.831449 comef 9416 R rec b758e854-0120-4599-9d98-66e3561dbdc0 +2024-09-11 09:10:00.886948 2024-09-11 09:10:00.886954 comef 9417 R rec a95fcb93-051f-407c-a0b1-59c3397661e7 +2024-09-11 09:10:00.941846 2024-09-11 09:10:00.941851 comef 9418 R rec 77d8d22e-8361-4fdc-ac82-794fb108a4e4 +2024-09-11 09:10:00.999307 2024-09-11 09:10:00.999312 comef 9419 R rec 98adf2ec-6f3d-4e4f-b485-e095adbc8dce +2024-09-11 09:10:01.053697 2024-09-11 09:10:01.053702 comef 9420 R rec 98456316-36af-4719-8ad2-cf77c3e8439f +2024-09-11 09:10:01.108147 2024-09-11 09:10:01.108153 comef 9421 R rec 8af0ded9-9b91-4f3b-b10f-cec02d3aab83 +2024-09-11 09:10:01.166507 2024-09-11 09:10:01.166513 comef 9422 R rec 41bf3e16-7a0c-4f82-a159-fc194534b7d1 +2024-09-11 09:10:01.222449 2024-09-11 09:10:01.222454 comef 9423 R rec ad4ffc9c-11ea-438f-bd46-636c087ff8cd +2024-09-11 09:10:01.287046 2024-09-11 09:10:01.287051 comef 9424 R rec aec4f9b3-e60c-47d0-b3c5-289aee7b7c8a +2024-09-11 09:10:01.364661 2024-09-11 09:10:01.364665 comef 9425 R rec 4b038ed2-8c11-4c72-b1b6-dd3830fdbf2f +2024-09-11 09:10:01.421603 2024-09-11 09:10:01.421608 comef 9426 R rec a1c1f065-0e76-4f1a-b550-bbeb0a775279 +2024-09-11 09:10:01.476539 2024-09-11 09:10:01.476544 comef 9427 R rec 3dcf943f-2018-4d2e-b3d3-38392dc26bf8 +2024-09-11 09:10:01.532442 2024-09-11 09:10:01.532447 comef 9428 R rec d0ec0cf0-65c6-43e0-82f9-27bf66e35fc3 +2024-09-11 09:10:01.597532 2024-09-11 09:10:01.597536 comef 9429 R rec fee6e346-33ef-4ff3-b036-91cb9033fbe2 +2024-09-11 09:10:01.652939 2024-09-11 09:10:01.652945 comef 9430 R rec 6ee51b1d-a7ec-4db5-9531-be61db3d57bb +2024-09-11 09:10:01.71151 2024-09-11 09:10:01.711515 comef 9431 R rec 38990035-53ed-4c7b-84a7-4e6c3a24d38c +2024-09-11 09:10:01.769517 2024-09-11 09:10:01.769522 comef 9432 R rec 4677a43a-a032-4213-8a54-6a6b919a345c +2024-09-11 09:10:01.831057 2024-09-11 09:10:01.831061 comef 9433 R rec 9aa3b659-eba6-4e79-92e3-0414eeaa2cd8 +2024-09-11 09:10:01.885403 2024-09-11 09:10:01.885408 comef 9434 R rec bbdb1a23-d7ad-4fdf-99ca-dcd4fe6967be +2024-09-11 09:10:01.940736 2024-09-11 09:10:01.94074 comef 9435 R rec f53fb3c8-5bb4-466a-8fc0-5f925c4ba86b +2024-09-11 09:10:01.99437 2024-09-11 09:10:01.994375 comef 9436 R rec 56c6c545-fd34-4226-bb8a-0cce783b1610 +2024-09-11 09:10:02.049495 2024-09-11 09:10:02.0495 comef 9437 R rec 70b3ffcb-2d29-40a2-9ff0-6743c0cb4b8d +2024-09-11 09:10:02.106466 2024-09-11 09:10:02.10647 comef 9438 R rec cde276bd-6599-4125-98cd-e6365acee456 +2024-09-11 09:10:02.160372 2024-09-11 09:10:02.160377 comef 9439 R rec bdfbd550-1ad5-45bf-809e-dff8bb1d381b +2024-09-11 09:10:02.218678 2024-09-11 09:10:02.218683 comef 9440 R rec e04b9193-ae83-4431-b541-fc4bfa0aed36 +2024-09-11 09:10:02.273176 2024-09-11 09:10:02.27318 comef 9441 R rec deededc6-bdd8-47e2-97e4-66f139275450 +2024-09-11 09:10:02.326667 2024-09-11 09:10:02.326672 comef 9442 R rec 2b0f2423-a592-4b4a-8100-eee64e6ad7e5 +2024-09-11 09:10:02.381638 2024-09-11 09:10:02.381643 comef 9443 R rec 94d11409-7a33-4939-9f1d-c360e6bda574 +2024-09-11 09:10:02.437884 2024-09-11 09:10:02.43789 comef 9444 R rec eb9ab460-beb0-4427-bc24-5c847479172e +2024-09-11 09:10:02.501521 2024-09-11 09:10:02.501526 comef 9445 R rec fd20319b-5778-45c0-b033-76d6df357dd3 +2024-09-11 09:10:02.564455 2024-09-11 09:10:02.564461 comef 9446 R rec 94c0360c-cbfe-4d21-8d2f-91cd31c0af83 +2024-09-11 09:10:02.616672 2024-09-11 09:10:02.616676 comef 9447 R rec fb29c6f8-59d9-4977-afe2-70a0cd679fdb +2024-09-11 09:10:02.672298 2024-09-11 09:10:02.672303 comef 9448 R rec 1d240152-d145-442f-a74c-63eeecaf09ed +2024-09-11 09:10:02.73064 2024-09-11 09:10:02.730645 comef 9449 R rec e46e97c9-b2df-4176-96d6-7474f12aa51c +2024-09-11 09:10:02.789323 2024-09-11 09:10:02.789328 comef 9450 R rec ec1fb7af-dde1-4739-8597-34302680083a +2024-09-11 09:10:02.845884 2024-09-11 09:10:02.845889 comef 9451 R rec 03df0de2-4570-4359-a82b-82aaab17977e +2024-09-11 09:10:02.901498 2024-09-11 09:10:02.901504 comef 9452 R rec cf138b71-b3f4-4c56-a4d5-e6f39dd49e41 +2024-09-11 09:10:02.96212 2024-09-11 09:10:02.962124 comef 9453 R rec 753ccae1-9855-4206-a7a2-d901aa390019 +2024-09-11 09:10:03.024861 2024-09-11 09:10:03.024867 comef 9454 R rec 419715f7-f4b1-4721-b78e-a0529eee8b13 +2024-09-11 09:10:03.082194 2024-09-11 09:10:03.082199 comef 9455 R rec cb9ea76f-5251-404b-84f6-8b4e4ab66a7b +2024-09-11 09:10:03.146751 2024-09-11 09:10:03.146756 comef 9456 R rec 8e7e31cb-64bc-409c-b3a5-295406c59ffb +2024-09-11 09:10:03.205426 2024-09-11 09:10:03.205432 comef 9457 R rec cbfbded7-2dde-491c-bf1c-7d324b61f599 +2024-09-11 09:10:03.259675 2024-09-11 09:10:03.25968 comef 9458 R rec 58462c85-9300-4817-820c-2f146942242c +2024-09-11 09:10:03.32165 2024-09-11 09:10:03.321654 comef 9459 R rec cbefa0fa-7226-4fb3-a79d-3230d650547b +2024-09-11 09:10:03.383633 2024-09-11 09:10:03.383639 comef 9460 R rec 34ab6b4f-cc9c-442b-9375-74a3c15ad253 +2024-09-11 09:10:03.448781 2024-09-11 09:10:03.448786 comef 9461 R rec 4955b6a4-5f33-4039-9c16-b3bba84b658f +2024-09-11 09:10:03.50006 2024-09-11 09:10:03.500066 comef 9462 R rec 8bdc6336-8692-4dc7-b1d8-70854de8b6e3 +2024-09-11 09:10:03.556308 2024-09-11 09:10:03.556313 comef 9463 R rec 287dd19f-ae7d-4b81-b27d-078faccd30bd +2024-09-11 09:10:03.615545 2024-09-11 09:10:03.61555 comef 9464 R rec aa8f58b1-3387-40cd-8f99-03b9ea7477d5 +2024-09-11 09:10:03.671211 2024-09-11 09:10:03.671216 comef 9465 R rec 5fd96ab9-528c-459f-a204-3222dd028464 +2024-09-11 09:10:03.724902 2024-09-11 09:10:03.724907 comef 9466 R rec 96a5a562-4bc5-49b5-a502-33c581064712 +2024-09-11 09:10:03.779384 2024-09-11 09:10:03.779389 comef 9467 R rec 88770a51-289c-47ac-9f25-66e0cb9230b5 +2024-09-11 09:10:03.841665 2024-09-11 09:10:03.841671 comef 9468 R rec ffcd3521-b1a3-4de7-86e8-a94253789657 +2024-09-11 09:10:03.897004 2024-09-11 09:10:03.89701 comef 9469 R rec 26736117-42d6-4037-afa3-5f6f74db98ff +2024-09-11 09:10:03.955759 2024-09-11 09:10:03.955763 comef 9470 R rec d710aa1a-f547-4163-82af-daa24b605882 +2024-09-11 09:10:04.020612 2024-09-11 09:10:04.020618 comef 9471 R rec 63454c3d-a810-4f49-9848-7009d9bddfe4 +2024-09-11 09:10:04.084933 2024-09-11 09:10:04.084939 comef 9472 R rec a9673264-9af3-4633-a872-b76d17a27514 +2024-09-11 09:10:04.148251 2024-09-11 09:10:04.148256 comef 9473 R rec 53d82f0a-64da-49ee-be66-e27d6306aded +2024-09-11 09:10:04.197427 2024-09-11 09:10:04.197432 comef 9474 R rec 7d83c167-fbca-427d-a22c-aa6b95d8dd9a +2024-09-11 09:10:04.255117 2024-09-11 09:10:04.255122 comef 9475 R rec a1c151bb-7711-4a8e-a65d-96e3daa23a62 +2024-09-11 09:10:04.310714 2024-09-11 09:10:04.310719 comef 9476 R rec 5e1552d3-55ca-434b-ab4c-dc15e2cdd34c +2024-09-11 09:10:04.363671 2024-09-11 09:10:04.363676 comef 9477 R rec 2cfd07e9-f1f8-4e30-baec-86a5b8abf141 +2024-09-11 09:10:04.41924 2024-09-11 09:10:04.419246 comef 9478 R rec 224f502c-88d3-42ad-b8b3-e802f2d73a48 +2024-09-11 09:10:04.479419 2024-09-11 09:10:04.479424 comef 9479 R rec 9d302d2d-63b6-4b51-b103-36e3d856b78f +2024-09-11 09:10:04.543463 2024-09-11 09:10:04.543469 comef 9480 R rec bbafb5eb-e18a-447a-b545-b0156c16a081 +2024-09-11 09:10:04.596024 2024-09-11 09:10:04.596029 comef 9481 R rec 039de00e-f042-4c31-a5b5-c0fbace681c1 +2024-09-11 09:10:04.65529 2024-09-11 09:10:04.655294 comef 9482 R rec 1f5b6681-68fc-4d8d-b302-77b45a73ce62 +2024-09-11 09:10:04.712308 2024-09-11 09:10:04.712313 comef 9483 R rec 8a1a4989-69fb-48f7-9b37-e4a63a4cfb7d +2024-09-11 09:10:04.765983 2024-09-11 09:10:04.765988 comef 9484 R rec 632aadb4-16e3-4691-991e-4ec59e77ce8f +2024-09-11 09:10:04.821606 2024-09-11 09:10:04.821611 comef 9485 R rec a546d3bc-a53d-4619-be7b-7813a5fd52a6 +2024-09-11 09:10:04.875594 2024-09-11 09:10:04.875599 comef 9486 R rec c4c3cec8-1c48-475d-9119-8f52943954ef +2024-09-11 09:10:04.931857 2024-09-11 09:10:04.931861 comef 9487 R rec 418c1569-bc41-43b3-95be-efb85d606b82 +2024-09-11 09:10:04.984525 2024-09-11 09:10:04.984532 comef 9488 R rec e6060ecb-dafc-4360-bc78-03469ad54523 +2024-09-11 09:10:05.04071 2024-09-11 09:10:05.040716 comef 9489 R rec 573fe3cf-bc7f-4d8d-997d-397b31846773 +2024-09-11 09:10:05.111011 2024-09-11 09:10:05.111016 comef 9490 R rec 66ec4f82-7a13-4aa5-b504-de96dfc9f54e +2024-09-11 09:10:05.193508 2024-09-11 09:10:05.193512 comef 9491 R rec 6ff6fe3d-08e4-4b4b-b637-2f77ce5cfcb1 +2024-09-11 09:10:05.248463 2024-09-11 09:10:05.248467 comef 9492 R rec 56bfe7b7-6e8a-4515-a504-3072f1beb059 +2024-09-11 09:10:05.307857 2024-09-11 09:10:05.307862 comef 9493 R rec df79d783-7e3a-47ad-b341-4e1318aac7b6 +2024-09-11 09:10:05.363132 2024-09-11 09:10:05.363138 comef 9494 R rec 479a101a-a595-4b94-a313-1e5de44af7f7 +2024-09-11 09:10:05.419632 2024-09-11 09:10:05.41964 comef 9495 R rec 0e432f38-62c8-42ee-9640-3f9f961ca32f +2024-09-11 09:10:05.476991 2024-09-11 09:10:05.476996 comef 9496 R rec 29e77aa8-aa3a-4b42-a600-8d57197367e9 +2024-09-11 09:10:05.536096 2024-09-11 09:10:05.536101 comef 9497 R rec 88dfebac-5fcc-4616-85f7-f2f8344da4ae +2024-09-11 09:10:05.60528 2024-09-11 09:10:05.605293 comef 9498 R rec b88f6880-eafc-4635-a404-f8da1d8257f8 +2024-09-11 09:10:05.673678 2024-09-11 09:10:05.673683 comef 9499 R rec 398754f4-546f-4b8e-9007-ee5a051b0349 +2024-09-11 09:10:05.744495 2024-09-11 09:10:05.7445 comef 9500 R rec 2476e9de-888d-4129-9f4f-3b463f7c62dc +2024-09-11 09:10:05.811676 2024-09-11 09:10:05.811681 comef 9501 R rec 04ba4d05-8241-442c-a296-820ca1ba98a8 +2024-09-11 09:10:05.869675 2024-09-11 09:10:05.86968 comef 9502 R rec 8ebbe15c-7316-415e-a09e-8237be09a001 +2024-09-11 09:10:05.923022 2024-09-11 09:10:05.923027 comef 9503 R rec 5d288e7d-6797-41e3-aabb-a77b68317d3d +2024-09-11 09:10:05.980735 2024-09-11 09:10:05.98074 comef 9504 R rec 66847bd0-3602-4fdb-99a4-2719f79bfdb5 +2024-09-11 09:10:06.041098 2024-09-11 09:10:06.041104 comef 9505 R rec d8ce4eb6-8b9b-40ba-b3bc-8ce4afbef0dd +2024-09-11 09:10:06.098463 2024-09-11 09:10:06.098468 comef 9506 R rec d1de9e8d-855d-4310-bc6f-5e78fac38e8d +2024-09-11 09:10:06.159496 2024-09-11 09:10:06.159501 comef 9507 R rec a369c4a1-b590-4edc-8423-a1a09176b91a +2024-09-11 09:10:06.216916 2024-09-11 09:10:06.21692 comef 9508 R rec 70113bd8-57f3-44ab-9b9f-1598267d4b3d +2024-09-11 09:10:06.277088 2024-09-11 09:10:06.277093 comef 9509 R rec 386e4a09-2ff7-4330-be12-954253928d63 +2024-09-11 09:10:06.339357 2024-09-11 09:10:06.339362 comef 9510 R rec 743d91ec-ff2f-4deb-a3b0-1a9f13dc4722 +2024-09-11 09:10:06.401973 2024-09-11 09:10:06.401979 comef 9511 R rec 6f7f3ca9-91dd-4a17-b088-f7d947a6a01e +2024-09-11 09:10:06.465286 2024-09-11 09:10:06.465293 comef 9512 R rec 618ea1c5-0c1d-4260-8f71-3ef571fbe63f +2024-09-11 09:10:06.524975 2024-09-11 09:10:06.52498 comef 9513 R rec 8745db41-aae7-464f-b37d-32a80a6d13b2 +2024-09-11 09:10:06.586748 2024-09-11 09:10:06.586753 comef 9514 R rec ed895179-04cf-421d-af29-4c367fb094f0 +2024-09-11 09:10:06.645971 2024-09-11 09:10:06.645977 comef 9515 R rec aed1e1d4-e11f-435e-a6aa-ca0d3a83802b +2024-09-11 09:10:06.703364 2024-09-11 09:10:06.703369 comef 9516 R rec cb21d3e7-fd57-4f42-beb4-c49a8edc6508 +2024-09-11 09:10:06.772008 2024-09-11 09:10:06.772013 comef 9517 R rec 4d7413b9-6e8e-4b19-8574-354c3254e43e +2024-09-11 09:10:06.831954 2024-09-11 09:10:06.83196 comef 9518 R rec a1fef7dd-3396-48e4-a5c2-235fede1863d +2024-09-11 09:10:06.884139 2024-09-11 09:10:06.884144 comef 9519 R rec 4c81e709-b94d-4fc2-b977-e2a2e0f92ed5 +2024-09-11 09:10:06.946477 2024-09-11 09:10:06.946482 comef 9520 R rec 45c9a5ff-224d-4999-82a7-5ad2ecee9870 +2024-09-11 09:10:07.005547 2024-09-11 09:10:07.005552 comef 9521 R rec bfd864d1-c4f4-493d-9bb1-32f019d5b2af +2024-09-11 09:10:07.062945 2024-09-11 09:10:07.062951 comef 9522 R rec e297c053-5d02-4ff5-baa4-9bde10fbbf21 +2024-09-11 09:10:07.123339 2024-09-11 09:10:07.123344 comef 9523 R rec 2d9df96d-5266-4ba2-a586-defe222da74a +2024-09-11 09:10:07.186011 2024-09-11 09:10:07.186017 comef 9524 R rec 3e2b0aa0-cf9b-4a45-9b9c-210e2fffe875 +2024-09-11 09:10:07.249882 2024-09-11 09:10:07.249887 comef 9525 R rec 75200210-3a21-43d5-89ca-dfcfa5a66b1b +2024-09-11 09:10:07.306449 2024-09-11 09:10:07.306454 comef 9526 R rec 2aa3b34a-b77c-4560-a57a-f6836c147cba +2024-09-11 09:10:07.370319 2024-09-11 09:10:07.370324 comef 9527 R rec e49c44cf-85aa-42cf-b57c-f5773b147fde +2024-09-11 09:10:07.428946 2024-09-11 09:10:07.428951 comef 9528 R rec 4daf9123-8fe0-409c-93f8-224e2ff4b270 +2024-09-11 09:10:07.484403 2024-09-11 09:10:07.484409 comef 9529 R rec 9092ffe7-78c4-435e-bf83-d16c1801f586 +2024-09-11 09:10:07.541627 2024-09-11 09:10:07.541632 comef 9530 R rec a0276b3c-f4f8-446a-abed-dd708176a094 +2024-09-11 09:10:07.602289 2024-09-11 09:10:07.602294 comef 9531 R rec 192bc497-50a8-4f60-a862-1648f2604cd4 +2024-09-11 09:10:07.660749 2024-09-11 09:10:07.660754 comef 9532 R rec e6e6ea35-27e9-45a5-89ae-8524db99eef3 +2024-09-11 09:10:07.715243 2024-09-11 09:10:07.715248 comef 9533 R rec 94acfb0f-0361-408c-845d-65578b674b49 +2024-09-11 09:10:07.768527 2024-09-11 09:10:07.768532 comef 9534 R rec 2858dbac-81a8-49c8-8689-2eb7e618456e +2024-09-11 09:10:07.821401 2024-09-11 09:10:07.821407 comef 9535 R rec 20c312f7-1fa2-49ca-92f5-656d95feaffa +2024-09-11 09:10:07.879344 2024-09-11 09:10:07.87935 comef 9536 R rec 5fe17a1a-2dc0-4120-9e46-015ecdb5013f +2024-09-11 09:10:07.941162 2024-09-11 09:10:07.941168 comef 9537 R rec daa1976d-4028-4970-8d68-b4c0b9fef131 +2024-09-11 09:10:07.998117 2024-09-11 09:10:07.998122 comef 9538 R rec 461b9f36-b8a8-453a-96c7-f9fdcf61411b +2024-09-11 09:10:08.049859 2024-09-11 09:10:08.049864 comef 9539 R rec 68bf6ae8-7d98-4338-9194-2dd5631fef23 +2024-09-11 09:10:08.103562 2024-09-11 09:10:08.103567 comef 9540 R rec a28ec2a2-12d2-4c62-a82b-ef31ebc5ae58 +2024-09-11 09:10:08.158272 2024-09-11 09:10:08.158276 comef 9541 R rec 9725040e-d5b1-4436-a739-5072d770b40d +2024-09-11 09:10:08.213396 2024-09-11 09:10:08.213401 comef 9542 R rec 201f605e-2207-4584-9fc4-76afa6441832 +2024-09-11 09:10:08.269515 2024-09-11 09:10:08.26952 comef 9543 R rec 60d3be79-4542-4425-ac28-d44e558fe12a +2024-09-11 09:10:08.322781 2024-09-11 09:10:08.322786 comef 9544 R rec 501fc728-2d1f-4f5a-8b7b-abfdb6809e1b +2024-09-11 09:10:08.375883 2024-09-11 09:10:08.375889 comef 9545 R rec c9f5a771-82c4-4700-93e2-11f737f3501e +2024-09-11 09:10:08.43314 2024-09-11 09:10:08.433145 comef 9546 R rec 1027ae62-9c2b-4fd9-b1c3-e2ec67006e77 +2024-09-11 09:10:08.486799 2024-09-11 09:10:08.486806 comef 9547 R rec 588cca93-96e1-4721-9925-c0617d99ae6b +2024-09-11 09:10:08.551134 2024-09-11 09:10:08.551139 comef 9548 R rec ff85965a-b16a-4714-b413-2b22e6e469a2 +2024-09-11 09:10:08.61748 2024-09-11 09:10:08.617485 comef 9549 R rec 8f0f83da-06b9-4763-9153-617641e86e1e +2024-09-11 09:10:08.673901 2024-09-11 09:10:08.673906 comef 9550 R rec fe099bf6-3ebe-4dec-a4e0-45fb6472581d +2024-09-11 09:10:08.730047 2024-09-11 09:10:08.730053 comef 9551 R rec 5653679c-4d7d-4063-91ab-0f47d2d79292 +2024-09-11 09:10:08.790353 2024-09-11 09:10:08.790357 comef 9552 R rec 99205f1b-e611-40f3-9f4c-ef5287837d9f +2024-09-11 09:10:08.846793 2024-09-11 09:10:08.846797 comef 9553 R rec a18f7088-b06f-4ecd-8b0f-f63621676b60 +2024-09-11 09:10:08.901754 2024-09-11 09:10:08.90176 comef 9554 R rec 2507ccf5-0de6-4bd7-a36b-742d2aedb7c0 +2024-09-11 09:10:08.963955 2024-09-11 09:10:08.96396 comef 9555 R rec 0e465e15-0d00-43a3-8364-079a4068586f +2024-09-11 09:10:09.022707 2024-09-11 09:10:09.022711 comef 9556 R rec 6fea667b-fcd2-47ec-bd41-9caca8371976 +2024-09-11 09:10:09.099309 2024-09-11 09:10:09.099316 comef 9557 R rec ed42a263-a3b8-496e-9e01-bf7d1adc1ae4 +2024-09-11 09:10:09.163131 2024-09-11 09:10:09.163136 comef 9558 R rec 7d6f10f3-0e85-41ef-869a-d4c94a8b8b5d +2024-09-11 09:10:09.223241 2024-09-11 09:10:09.223246 comef 9559 R rec 4cb92234-63eb-4ed5-aa4a-b710eb73b2d9 +2024-09-11 09:10:09.284929 2024-09-11 09:10:09.284934 comef 9560 R rec cd8191ad-cbc5-4a47-8fa0-e2a6f94a8313 +2024-09-11 09:10:09.338909 2024-09-11 09:10:09.338914 comef 9561 R rec 1ca19807-75ec-47ee-89be-0b880ea013e2 +2024-09-11 09:10:09.388133 2024-09-11 09:10:09.388138 comef 9562 R rec da07f0fa-f09f-4a01-b7dd-b7ed3bb30baf +2024-09-11 09:10:09.439033 2024-09-11 09:10:09.439038 comef 9563 R rec 4d4a1134-c5d1-44c5-a106-443579f5aebf +2024-09-11 09:10:09.494282 2024-09-11 09:10:09.494287 comef 9564 R rec eb8df7e7-2601-4b1e-9069-fd47f09b9ca0 +2024-09-11 09:10:09.550655 2024-09-11 09:10:09.55066 comef 9565 R rec e77b63a2-f3bb-410d-8466-08bff61c9e59 +2024-09-11 09:10:09.608362 2024-09-11 09:10:09.608366 comef 9566 R rec ee0cb196-759a-49c5-adcc-45782d7685ec +2024-09-11 09:10:09.665137 2024-09-11 09:10:09.665142 comef 9567 R rec 518b8570-e2c5-4fd2-87e3-2de19fad9538 +2024-09-11 09:10:09.72345 2024-09-11 09:10:09.723455 comef 9568 R rec 6819522a-eaf9-49d0-8815-0f1a39a16100 +2024-09-11 09:10:09.781338 2024-09-11 09:10:09.781343 comef 9569 R rec 5dd7ce0e-9404-412b-9ded-36e1491c96cf +2024-09-11 09:10:09.836766 2024-09-11 09:10:09.836771 comef 9570 R rec b0b5186c-89d4-43c4-b2ad-42f26721c562 +2024-09-11 09:10:09.897261 2024-09-11 09:10:09.897266 comef 9571 R rec 22dfefae-8433-43d5-924a-bb017b64cffb +2024-09-11 09:10:09.953753 2024-09-11 09:10:09.953758 comef 9572 R rec 435b0c7a-b7b3-48aa-a81d-528b2def5e85 +2024-09-11 09:10:10.016026 2024-09-11 09:10:10.01603 comef 9573 R rec ae5435a0-f563-4000-a2b2-b943210963b8 +2024-09-11 09:10:10.073417 2024-09-11 09:10:10.073422 comef 9574 R rec 9aae67b9-2f60-46fb-90da-856ea58f31a1 +2024-09-11 09:10:10.134079 2024-09-11 09:10:10.134084 comef 9575 R rec e1a31000-bb1e-46e3-a024-6e055be5cb06 +2024-09-11 09:10:10.201797 2024-09-11 09:10:10.201802 comef 9576 R rec fb7ec539-51e3-445c-b03e-698f6a935c98 +2024-09-11 09:10:10.260172 2024-09-11 09:10:10.260178 comef 9577 R rec 282078e6-743b-4173-8952-11016565b0c8 +2024-09-11 09:10:10.31624 2024-09-11 09:10:10.316244 comef 9578 R rec 05f5026c-d4e8-46ee-871e-9bd6dbaeb977 +2024-09-11 09:10:10.370067 2024-09-11 09:10:10.370072 comef 9579 R rec 2e213629-af66-40d7-bc9d-b81724230986 +2024-09-11 09:10:10.426817 2024-09-11 09:10:10.426822 comef 9580 R rec 815d2a76-2586-4662-9961-9722d68b4aa1 +2024-09-11 09:10:10.481271 2024-09-11 09:10:10.481276 comef 9581 R rec e8d68e42-ea62-4951-91d1-f7427236a90e +2024-09-11 09:10:10.53669 2024-09-11 09:10:10.536695 comef 9582 R rec 7a961a3d-de05-4c04-992d-1f93ea6fb3ad +2024-09-11 09:10:10.590706 2024-09-11 09:10:10.590711 comef 9583 R rec 1bf3bd13-1041-4176-bfef-7fbf8ec31d30 +2024-09-11 09:10:10.646663 2024-09-11 09:10:10.646668 comef 9584 R rec f1d5f136-d366-41d5-9acb-0cf1514aafb8 +2024-09-11 09:10:10.708062 2024-09-11 09:10:10.708068 comef 9585 R rec cef556c4-3a92-46d3-8c57-8973147a4c85 +2024-09-11 09:10:10.764363 2024-09-11 09:10:10.764369 comef 9586 R rec 7679dc74-8a2f-4220-bfeb-bb2b132310ee +2024-09-11 09:10:10.825665 2024-09-11 09:10:10.825671 comef 9587 R rec 805931f8-06d7-4b78-b3d5-cd0ba2904f6c +2024-09-11 09:10:10.882895 2024-09-11 09:10:10.8829 comef 9588 R rec acb5fefd-4179-4086-8a9a-4f38ab732287 +2024-09-11 09:10:10.950156 2024-09-11 09:10:10.950162 comef 9589 R rec 24eebe7d-e88f-44d3-8b26-86a0be1c13cb +2024-09-11 09:10:11.006046 2024-09-11 09:10:11.006051 comef 9590 R rec f5ffc95f-0422-47f8-899f-245fcc2296ca +2024-09-11 09:10:11.062852 2024-09-11 09:10:11.062864 comef 9591 R rec e7427fc5-b90c-4c1e-8558-857488c45ee0 +2024-09-11 09:10:11.117801 2024-09-11 09:10:11.117808 comef 9592 R rec 00a22ee7-e7de-4667-a6f5-10a0af3d13bb +2024-09-11 09:10:11.174755 2024-09-11 09:10:11.17476 comef 9593 R rec bd4bcc57-361f-4f27-a5f7-cfd12d731a30 +2024-09-11 09:10:11.241881 2024-09-11 09:10:11.241886 comef 9594 R rec e4b4a76f-7b1d-40fe-9702-30f9fe4fa018 +2024-09-11 09:10:11.303504 2024-09-11 09:10:11.303508 comef 9595 R rec 1282bb7e-c19b-4c1a-90c1-165a7e8634e7 +2024-09-11 09:10:11.360336 2024-09-11 09:10:11.360341 comef 9596 R rec 6a1e1f47-80f2-4b99-9f08-f80edb1df986 +2024-09-11 09:10:11.415171 2024-09-11 09:10:11.415176 comef 9597 R rec 6d944d73-c510-450c-ae06-60a6913bbda5 +2024-09-11 09:10:11.471081 2024-09-11 09:10:11.471085 comef 9598 R rec bf09083b-95cb-4d4a-a720-46c0477fcec2 +2024-09-11 09:10:11.526061 2024-09-11 09:10:11.526067 comef 9599 R rec 46da9e1d-5b21-475f-a52f-6a3bad50c220 +2024-09-11 09:10:11.581456 2024-09-11 09:10:11.581461 comef 9600 R rec 623fd2f7-0aa3-4017-8972-69d588954f16 +2024-09-11 09:10:11.639102 2024-09-11 09:10:11.639107 comef 9601 R rec 7f2de4f2-2f45-4987-ae51-a630870c73dd +2024-09-11 09:10:11.702299 2024-09-11 09:10:11.702305 comef 9602 R rec 6eece37f-acce-4d18-a1db-60c4ea46e238 +2024-09-11 09:10:11.76151 2024-09-11 09:10:11.761515 comef 9603 R rec 5ad1ba80-786e-4000-af70-bdd1b41f1af6 +2024-09-11 09:10:11.818737 2024-09-11 09:10:11.818744 comef 9604 R rec 79f0d102-572c-43e2-b6d2-0dec880759de +2024-09-11 09:10:11.875261 2024-09-11 09:10:11.875267 comef 9605 R rec e224011e-8d7c-4f81-ab1d-3774031450d4 +2024-09-11 09:10:11.935568 2024-09-11 09:10:11.935573 comef 9606 R rec 9f98758d-ec61-44ea-8d92-254dd104be00 +2024-09-11 09:10:11.991464 2024-09-11 09:10:11.991469 comef 9607 R rec 9d614139-8ed4-406c-8c67-34691ecfa4f1 +2024-09-11 09:10:12.048515 2024-09-11 09:10:12.04852 comef 9608 R rec 1f5ea515-046b-41a9-a2e3-17b376268858 +2024-09-11 09:10:12.103353 2024-09-11 09:10:12.103358 comef 9609 R rec ba44db09-8f0c-4d76-96de-b0b2220172d8 +2024-09-11 09:10:12.161831 2024-09-11 09:10:12.161836 comef 9610 R rec 15b2e739-4fa7-4418-8896-9d3b83f3f180 +2024-09-11 09:10:12.212261 2024-09-11 09:10:12.212265 comef 9611 R rec 1b7e6e56-a908-467a-8631-1955601a6936 +2024-09-11 09:10:12.266163 2024-09-11 09:10:12.26617 comef 9612 R rec 2bb5d781-0f14-4e9c-bca0-d6d6ab56dddf +2024-09-11 09:10:12.320451 2024-09-11 09:10:12.320457 comef 9613 R rec 038a8106-cdc6-4ad7-bdca-5583752f9c82 +2024-09-11 09:10:12.381071 2024-09-11 09:10:12.381076 comef 9614 R rec 449bb539-5354-43f4-afda-5fce02060949 +2024-09-11 09:10:12.448745 2024-09-11 09:10:12.448749 comef 9615 R rec 1de81edc-2fc4-415e-9543-3c131f7f859c +2024-09-11 09:10:12.506005 2024-09-11 09:10:12.50601 comef 9616 R rec 630c3238-e58c-44e5-b88b-b617e0f3675f +2024-09-11 09:10:12.565793 2024-09-11 09:10:12.565799 comef 9617 R rec 762b4100-1ef1-4405-b405-f3f6e0f31ca1 +2024-09-11 09:10:12.618722 2024-09-11 09:10:12.618727 comef 9618 R rec c2923855-49e4-40a8-90a1-8568a77c5837 +2024-09-11 09:10:12.674759 2024-09-11 09:10:12.674764 comef 9619 R rec 83e8e7fd-bf1d-40bf-b557-5c71b5dd1183 +2024-09-11 09:10:12.728256 2024-09-11 09:10:12.728261 comef 9620 R rec 248ec03b-f09e-4a30-ba98-4b396c5670d2 +2024-09-11 09:10:12.781267 2024-09-11 09:10:12.781271 comef 9621 R rec e5e7d334-4557-4fd4-90de-836a1a4ee879 +2024-09-11 09:10:12.840162 2024-09-11 09:10:12.840166 comef 9622 R rec 964a71cd-2110-4c25-b4d8-b1d978e5576d +2024-09-11 09:10:12.899589 2024-09-11 09:10:12.899595 comef 9623 R rec 8c2a1767-82d7-4f72-8d85-2c92803c15f9 +2024-09-11 09:10:12.959354 2024-09-11 09:10:12.95936 comef 9624 R rec 9319341e-1d49-425e-b51e-64724641d6f1 +2024-09-11 09:10:13.022464 2024-09-11 09:10:13.02247 comef 9625 R rec 6dfafd41-5005-49f1-a610-c83726deebd9 +2024-09-11 09:10:13.079665 2024-09-11 09:10:13.07967 comef 9626 R rec 02543956-b9da-41dd-85a0-4e6ff311bba9 +2024-09-11 09:10:13.135516 2024-09-11 09:10:13.13552 comef 9627 R rec 6e4a9468-c68c-46a2-aff6-d7b0fd201f64 +2024-09-11 09:10:13.191886 2024-09-11 09:10:13.191891 comef 9628 R rec b6b895dd-b7ac-4711-b24f-995fc42347f2 +2024-09-11 09:10:13.252174 2024-09-11 09:10:13.252179 comef 9629 R rec 6046b193-37af-4fec-9458-38c7af95380f +2024-09-11 09:10:13.30568 2024-09-11 09:10:13.305685 comef 9630 R rec 0c7990fa-4eb5-4a87-8332-f2775b43ff30 +2024-09-11 09:10:13.368265 2024-09-11 09:10:13.368271 comef 9631 R rec 2eddc415-63b1-42d4-b694-c3e616ba1e35 +2024-09-11 09:10:13.430824 2024-09-11 09:10:13.430829 comef 9632 R rec b75ddffd-ac48-493b-8ff6-517a2f6d5ba4 +2024-09-11 09:10:13.496344 2024-09-11 09:10:13.496349 comef 9633 R rec 329e0b59-eb73-416e-8325-cd4563b02502 +2024-09-11 09:10:13.550239 2024-09-11 09:10:13.550244 comef 9634 R rec 728a86c1-5e32-46a6-b497-539ff3c85ee9 +2024-09-11 09:10:13.608972 2024-09-11 09:10:13.608978 comef 9635 R rec f551d7fd-d6fb-4456-ba82-2c3f5df06d62 +2024-09-11 09:10:13.666148 2024-09-11 09:10:13.666154 comef 9636 R rec 71871823-92bd-482d-adb9-ab158daaaa05 +2024-09-11 09:10:13.719214 2024-09-11 09:10:13.71922 comef 9637 R rec bf6ee8b7-0582-4bd0-92fe-7bc58d4efd56 +2024-09-11 09:10:13.774883 2024-09-11 09:10:13.774888 comef 9638 R rec d4748a9d-211c-409a-a2e9-f91897eefb98 +2024-09-11 09:10:13.828213 2024-09-11 09:10:13.828218 comef 9639 R rec c0e2d2e8-dc67-4a1a-a79b-5b8d2bb7d271 +2024-09-11 09:10:13.885336 2024-09-11 09:10:13.885345 comef 9640 R rec fa841f3e-0694-48f8-a355-f5d94d8cfadb +2024-09-11 09:10:13.941921 2024-09-11 09:10:13.941926 comef 9641 R rec cf7cbde6-c2c6-439f-9309-b7f55df2f2f2 +2024-09-11 09:10:13.996214 2024-09-11 09:10:13.996219 comef 9642 R rec beb8714e-484e-4975-8f18-64daf3139c71 +2024-09-11 09:10:14.057148 2024-09-11 09:10:14.057154 comef 9643 R rec 87385cf8-c940-4930-a923-2595669ce5d3 +2024-09-11 09:10:14.109987 2024-09-11 09:10:14.109992 comef 9644 R rec f64082bf-5e8b-4244-bdb5-9c8f0a1c6e5d +2024-09-11 09:10:14.16346 2024-09-11 09:10:14.163465 comef 9645 R rec 8b9a1685-a33b-4aae-ae04-3bf5e9314132 +2024-09-11 09:10:14.21672 2024-09-11 09:10:14.216726 comef 9646 R rec 5a7e283e-2c92-4115-a99e-1684ef37cf5b +2024-09-11 09:10:14.275158 2024-09-11 09:10:14.275164 comef 9647 R rec 4b2bcae9-54ff-4efc-a176-9c58351e4f9c +2024-09-11 09:10:14.336607 2024-09-11 09:10:14.336611 comef 9648 R rec d34f6dd9-ed0b-43f3-86bf-ed847f398af8 +2024-09-11 09:10:14.393976 2024-09-11 09:10:14.39398 comef 9649 R rec d8c311b3-4166-4bb9-b20d-92cfb204a08c +2024-09-11 09:10:14.451601 2024-09-11 09:10:14.451609 comef 9650 R rec 6c37f267-72a2-4eaf-b6f2-089b8c16bcf2 +2024-09-11 09:10:14.512457 2024-09-11 09:10:14.512462 comef 9651 R rec da208fee-3815-4674-b51f-966bec7150e6 +2024-09-11 09:10:14.573743 2024-09-11 09:10:14.573748 comef 9652 R rec 1e470e1f-ecb0-42b7-ada9-375fa8aaafc7 +2024-09-11 09:10:14.631783 2024-09-11 09:10:14.631789 comef 9653 R rec 64d7e45d-bfd9-4a22-a32b-959ab728f7d1 +2024-09-11 09:10:14.696697 2024-09-11 09:10:14.696703 comef 9654 R rec 543471a5-4689-44c8-80b7-1f01cb1038f2 +2024-09-11 09:10:14.749543 2024-09-11 09:10:14.749548 comef 9655 R rec 56d9b791-72c7-40c6-a85f-eebf8b359444 +2024-09-11 09:10:14.797971 2024-09-11 09:10:14.797976 comef 9656 R rec 742afc16-60c4-4dd2-b03c-2cc443473f68 +2024-09-11 09:10:14.853946 2024-09-11 09:10:14.85395 comef 9657 R rec 763556f9-fe95-4039-b4a8-fa7b558445fe +2024-09-11 09:10:14.909101 2024-09-11 09:10:14.909107 comef 9658 R rec 98993945-4432-4c0c-b33e-5a2fba1d8b04 +2024-09-11 09:10:14.959369 2024-09-11 09:10:14.959374 comef 9659 R rec 73dd6be9-8cf9-4275-962e-19adfc553ff7 +2024-09-11 09:10:15.015539 2024-09-11 09:10:15.015544 comef 9660 R rec 88eaff2d-5754-420e-8f8f-68c765eef547 +2024-09-11 09:10:15.079203 2024-09-11 09:10:15.079208 comef 9661 R rec 88751ffe-359b-480c-b80c-8eab3822ab9e +2024-09-11 09:10:15.137468 2024-09-11 09:10:15.137473 comef 9662 R rec 8c370508-69f8-4d3f-9796-09db6bbba22c +2024-09-11 09:10:15.19218 2024-09-11 09:10:15.192185 comef 9663 R rec 58c4acd9-804b-472e-b123-faabdbc6d1ef +2024-09-11 09:10:15.256645 2024-09-11 09:10:15.25665 comef 9664 R rec 9b2b02ba-16be-40f5-9358-867d7524d1b5 +2024-09-11 09:10:15.312074 2024-09-11 09:10:15.31208 comef 9665 R rec feb68e7a-baf2-4cd5-abdc-3304a43a978a +2024-09-11 09:10:15.36689 2024-09-11 09:10:15.366895 comef 9666 R rec c9ba7172-1b81-4a05-99c1-54ab333ea787 +2024-09-11 09:10:15.418073 2024-09-11 09:10:15.418077 comef 9667 R rec 77076650-b65e-4fd5-ac64-4b79be0c7e70 +2024-09-11 09:10:15.473222 2024-09-11 09:10:15.473226 comef 9668 R rec 57d41147-2883-44b3-91ea-1c7409c5359f +2024-09-11 09:10:15.529302 2024-09-11 09:10:15.529307 comef 9669 R rec 31586c73-69df-4ff7-bcfa-329a281a95d3 +2024-09-11 09:10:15.59539 2024-09-11 09:10:15.595396 comef 9670 R rec 58a178d8-366a-4194-87dd-58ce20f1e6df +2024-09-11 09:10:15.649394 2024-09-11 09:10:15.649399 comef 9671 R rec d8fc9f24-4f82-4fd2-9109-2219f96f9fe9 +2024-09-11 09:10:15.708252 2024-09-11 09:10:15.708258 comef 9672 R rec a12100a9-0dfa-4e71-9bc3-f0cf32b68240 +2024-09-11 09:10:15.794871 2024-09-11 09:10:15.794877 comef 9673 R rec ab5cff5b-838b-4614-9f2b-93d1978e6039 +2024-09-11 09:10:15.865511 2024-09-11 09:10:15.865517 comef 9674 R rec 55aaf2c9-6d1a-4cca-bcdc-cc6da1310083 +2024-09-11 09:10:15.918553 2024-09-11 09:10:15.918558 comef 9675 R rec 136cb7db-d322-473c-8478-edf2e60adebe +2024-09-11 09:10:15.972769 2024-09-11 09:10:15.972773 comef 9676 R rec f6f1d17e-ba97-4090-b75b-437e77fbdedb +2024-09-11 09:10:16.033447 2024-09-11 09:10:16.033453 comef 9677 R rec eff42ec9-3bdd-43aa-9d83-001dd07bf15c +2024-09-11 09:10:16.093705 2024-09-11 09:10:16.09371 comef 9678 R rec cd53fba1-1477-4cbd-abfe-4296955ae2a2 +2024-09-11 09:10:16.156199 2024-09-11 09:10:16.156205 comef 9679 R rec c0576be8-0239-474c-9124-e2c5c5d53937 +2024-09-11 09:10:16.252882 2024-09-11 09:10:16.252887 comef 9680 R rec 23c0cf3c-eedf-4bb6-8789-a9c45cc692ee +2024-09-11 09:10:16.311563 2024-09-11 09:10:16.311567 comef 9681 R rec e9175d13-5fd2-4faf-a4a6-f9e1402fa9e7 +2024-09-11 09:10:16.364823 2024-09-11 09:10:16.364827 comef 9682 R rec ac0ee77d-173d-4ce3-a742-43e6e97b54bb +2024-09-11 09:10:16.422558 2024-09-11 09:10:16.422563 comef 9683 R rec 46e8eea9-fce2-44cd-8211-40f483b0a4e5 +2024-09-11 09:10:16.476154 2024-09-11 09:10:16.476159 comef 9684 R rec 55ef02ca-16b4-419a-a6d7-c0a016e74696 +2024-09-11 09:10:16.532058 2024-09-11 09:10:16.532064 comef 9685 R rec da4a32e4-f16d-4551-982b-82fce102a6c0 +2024-09-11 09:10:16.585488 2024-09-11 09:10:16.585495 comef 9686 R rec 87681ec6-8ce3-449d-a097-41250f3246c3 +2024-09-11 09:10:16.641326 2024-09-11 09:10:16.641332 comef 9687 R rec c389c3a2-bb3a-4fbc-a063-202a012e4058 +2024-09-11 09:10:16.707271 2024-09-11 09:10:16.707275 comef 9688 R rec d074a10b-1c23-4eb7-9c3e-657bfdfc259d +2024-09-11 09:10:16.759181 2024-09-11 09:10:16.759187 comef 9689 R rec 74c35649-d958-4ea4-a1af-141cb6bffb54 +2024-09-11 09:10:16.812006 2024-09-11 09:10:16.81201 comef 9690 R rec 11a1c8d8-6d64-4781-ad56-080e9f8cc356 +2024-09-11 09:10:16.862464 2024-09-11 09:10:16.862469 comef 9691 R rec 882f6182-9fae-4205-b892-91f001ae8ae7 +2024-09-11 09:10:16.914256 2024-09-11 09:10:16.91426 comef 9692 R rec 1e25581d-d78d-4831-8863-f4af8961e344 +2024-09-11 09:10:16.964532 2024-09-11 09:10:16.964538 comef 9693 R rec 51314fe5-d383-40f9-8538-ddb2324a44be +2024-09-11 09:10:17.017991 2024-09-11 09:10:17.017995 comef 9694 R rec e4d04900-9c9f-4895-9086-59c047ee7acc +2024-09-11 09:10:17.076229 2024-09-11 09:10:17.076234 comef 9695 R rec f94b03cb-9ff8-497f-a369-3dfe872a5c27 +2024-09-11 09:10:17.129926 2024-09-11 09:10:17.129931 comef 9696 R rec fc16076a-c4e9-45f9-b5d2-070d3f4981bc +2024-09-11 09:10:17.182955 2024-09-11 09:10:17.18296 comef 9697 R rec 8f195c28-3bad-4ca8-a7d1-a467594090d4 +2024-09-11 09:10:17.247107 2024-09-11 09:10:17.247112 comef 9698 R rec e254a69d-0c27-4dcd-a46c-84c4449d69a0 +2024-09-11 09:10:17.309446 2024-09-11 09:10:17.309452 comef 9699 R rec 76d88d4b-4f80-4139-aeea-8dfb0fdbaa8e +2024-09-11 09:10:17.366587 2024-09-11 09:10:17.366593 comef 9700 R rec 9dfcea42-de62-44fc-9a3a-50bbcd9dd35f +2024-09-11 09:10:17.421962 2024-09-11 09:10:17.421967 comef 9701 R rec e232e11a-28cd-4882-9295-ff9813526dbd +2024-09-11 09:10:17.474911 2024-09-11 09:10:17.474916 comef 9702 R rec 4882f453-fb0e-4dfd-8be2-25f0a7775349 +2024-09-11 09:10:17.530913 2024-09-11 09:10:17.530918 comef 9703 R rec 2cf2573d-1034-40b6-87a7-e437c48bbe86 +2024-09-11 09:10:17.58533 2024-09-11 09:10:17.585336 comef 9704 R rec 156e0bb1-294e-4433-a133-63e945ede950 +2024-09-11 09:10:17.63578 2024-09-11 09:10:17.635785 comef 9705 R rec c9c5d3a5-c186-4356-ba8f-af7d526e4b24 +2024-09-11 09:10:17.699354 2024-09-11 09:10:17.69936 comef 9706 R rec faea1d60-d7dc-45ec-8ffc-94f7fbf97962 +2024-09-11 09:10:17.775997 2024-09-11 09:10:17.776003 comef 9707 R rec 77c463dd-b421-4428-a295-674edfb6355b +2024-09-11 09:10:17.838119 2024-09-11 09:10:17.838128 comef 9708 R rec 3ac5bfd9-7308-47e9-b0fc-32b1629f4dfd +2024-09-11 09:10:17.897265 2024-09-11 09:10:17.89727 comef 9709 R rec 1f989142-b548-45ba-92e6-1ed59b8aae22 +2024-09-11 09:10:17.958842 2024-09-11 09:10:17.958847 comef 9710 R rec defc2d06-3b4e-4495-8637-b26049ce5553 +2024-09-11 09:10:18.017986 2024-09-11 09:10:18.017992 comef 9711 R rec b1fb5863-62c2-40be-9419-5c6dfae6516f +2024-09-11 09:10:18.082033 2024-09-11 09:10:18.082039 comef 9712 R rec 5e821231-cd9a-4302-abc1-548ac97fb4be +2024-09-11 09:10:18.142831 2024-09-11 09:10:18.142836 comef 9713 R rec 0cd343c5-c824-4083-80f3-4f9ee31bd1b6 +2024-09-11 09:10:18.203462 2024-09-11 09:10:18.203466 comef 9714 R rec b0a3f781-3f96-4cf5-b2da-d6d0cec0d12b +2024-09-11 09:10:18.265189 2024-09-11 09:10:18.265194 comef 9715 R rec efec49b6-9c39-406a-91c9-6b80b6d55f46 +2024-09-11 09:10:18.325409 2024-09-11 09:10:18.325413 comef 9716 R rec c235e038-e06e-407d-81de-11985d40d4e9 +2024-09-11 09:10:18.383877 2024-09-11 09:10:18.383882 comef 9717 R rec 7485dd54-15c2-4830-a297-038f559329fa +2024-09-11 09:10:18.440439 2024-09-11 09:10:18.440444 comef 9718 R rec 53b61c0b-63b2-4f06-8b7c-9929f410f9ae +2024-09-11 09:10:18.502048 2024-09-11 09:10:18.502054 comef 9719 R rec 057661cb-70a5-418d-a963-060a46483deb +2024-09-11 09:10:18.559546 2024-09-11 09:10:18.559552 comef 9720 R rec 1c484484-92fa-48dd-b789-caaa5d6448d3 +2024-09-11 09:10:18.618414 2024-09-11 09:10:18.61842 comef 9721 R rec e956d5bd-dbee-4011-b8de-8deb2a529bfe +2024-09-11 09:10:18.674054 2024-09-11 09:10:18.674059 comef 9722 R rec 01ccc8b2-67df-4cb7-9b35-f36fcccb3d06 +2024-09-11 09:10:18.735242 2024-09-11 09:10:18.735249 comef 9723 R rec 679a328b-5bf8-411a-9666-ae60ead671ea +2024-09-11 09:10:18.790582 2024-09-11 09:10:18.790587 comef 9724 R rec 4467303f-13e0-412e-81aa-4ed16dea3de3 +2024-09-11 09:10:18.845093 2024-09-11 09:10:18.845098 comef 9725 R rec 660c8a4e-b717-4c7d-8c17-d7d3bbba85ca +2024-09-11 09:10:18.900081 2024-09-11 09:10:18.900086 comef 9726 R rec 521425a8-c2ee-40fd-bc4e-9395b22d8ab2 +2024-09-11 09:10:18.964459 2024-09-11 09:10:18.964465 comef 9727 R rec c49a7a85-337f-4094-8581-3149e7e96690 +2024-09-11 09:10:19.040324 2024-09-11 09:10:19.040329 comef 9728 R rec 9b4a3204-0362-45df-bc70-95365e1307ec +2024-09-11 09:10:19.103885 2024-09-11 09:10:19.103889 comef 9729 R rec 443c130c-f5c9-4afe-b662-66a9dce98e34 +2024-09-11 09:10:19.168894 2024-09-11 09:10:19.1689 comef 9730 R rec 9ec0cf11-e605-4653-8bed-4f3d6e42b090 +2024-09-11 09:10:19.225223 2024-09-11 09:10:19.225227 comef 9731 R rec 0b9742ba-5a9d-48f7-873b-eabcd09bbfef +2024-09-11 09:10:19.283075 2024-09-11 09:10:19.283081 comef 9732 R rec 93e1c350-5a4a-404b-b514-1c9be02b0da1 +2024-09-11 09:10:19.34214 2024-09-11 09:10:19.342145 comef 9733 R rec 621b6818-d466-45c4-ac9e-a3e1c918706e +2024-09-11 09:10:19.398792 2024-09-11 09:10:19.398799 comef 9734 R rec 39458480-cc56-4ba7-a5dc-4ad462ff29d8 +2024-09-11 09:10:19.454713 2024-09-11 09:10:19.454718 comef 9735 R rec bfbac2a3-d707-47c0-91ab-42a8d069f24e +2024-09-11 09:10:19.517162 2024-09-11 09:10:19.517168 comef 9736 R rec c7da8f8b-0ab6-4f17-b759-867ca029deb5 +2024-09-11 09:10:19.588491 2024-09-11 09:10:19.588497 comef 9737 R rec 157d2f8d-ddd7-490d-8e78-cc9c14305015 +2024-09-11 09:10:19.652127 2024-09-11 09:10:19.652133 comef 9738 R rec cb01e32d-a644-401d-ab4b-962e7c23c4bb +2024-09-11 09:10:19.71099 2024-09-11 09:10:19.710996 comef 9739 R rec b3268fd2-db55-47fb-b9f7-1d88cccee955 +2024-09-11 09:10:19.777566 2024-09-11 09:10:19.777571 comef 9740 R rec 8cb0df3b-ab37-48eb-a627-c12eca5761fe +2024-09-11 09:10:19.841122 2024-09-11 09:10:19.841126 comef 9741 R rec d1405700-6744-419c-af70-f48e79787550 +2024-09-11 09:10:19.89738 2024-09-11 09:10:19.897385 comef 9742 R rec 69afc101-8474-49ef-b61c-49326e5a243c +2024-09-11 09:10:19.954844 2024-09-11 09:10:19.954849 comef 9743 R rec 75d83936-1ce9-49a4-a982-f3d0275ab38a +2024-09-11 09:10:20.012863 2024-09-11 09:10:20.012868 comef 9744 R rec b183477f-6e3e-4661-8e20-f66f041a5221 +2024-09-11 09:10:20.071484 2024-09-11 09:10:20.071488 comef 9745 R rec 330b6a4b-4609-4164-b4fa-4a5cfba8a018 +2024-09-11 09:10:20.132631 2024-09-11 09:10:20.132636 comef 9746 R rec f72b9c31-5f82-4b28-b637-c5e1b0853231 +2024-09-11 09:10:20.19413 2024-09-11 09:10:20.194135 comef 9747 R rec d29f7f7d-6932-48d1-a39a-8c65a8586232 +2024-09-11 09:10:20.257395 2024-09-11 09:10:20.2574 comef 9748 R rec 7f846fe5-f401-4c6a-b1ee-efb81523c45e +2024-09-11 09:10:20.348636 2024-09-11 09:10:20.348641 comef 9749 R rec 5e4481a6-4dde-4bb5-9700-318b781fa90b +2024-09-11 09:10:20.408372 2024-09-11 09:10:20.408378 comef 9750 R rec 34300352-921d-4db4-97e2-1251c38795bc +2024-09-11 09:10:20.470984 2024-09-11 09:10:20.470989 comef 9751 R rec 8d1f7ece-9a18-4b65-ac31-7fbcecc207e3 +2024-09-11 09:10:20.528564 2024-09-11 09:10:20.528569 comef 9752 R rec 0c50a2bd-8f4e-4b75-b62e-517c99656c82 +2024-09-11 09:10:20.587058 2024-09-11 09:10:20.587063 comef 9753 R rec b37876ee-864e-4148-9d48-91833c226ab2 +2024-09-11 09:10:20.647918 2024-09-11 09:10:20.647923 comef 9754 R rec 550923ba-b043-4c91-bd6b-4bdbd0100d07 +2024-09-11 09:10:20.715007 2024-09-11 09:10:20.715012 comef 9755 R rec 2446b67b-d7b3-4263-8470-61bc93bcbf52 +2024-09-11 09:10:20.774727 2024-09-11 09:10:20.774732 comef 9756 R rec 7651e564-d0b4-4b82-88d6-ad6e5cf86d9e +2024-09-11 09:10:20.828125 2024-09-11 09:10:20.828131 comef 9757 R rec 9f493a00-b0d4-4a32-b1df-458ca74c39ac +2024-09-11 09:10:20.893012 2024-09-11 09:10:20.893016 comef 9758 R rec cc56ce80-222b-49be-afed-74daf233a2a5 +2024-09-11 09:10:20.951788 2024-09-11 09:10:20.951796 comef 9759 R rec e34f4a7d-75d5-4287-a1ba-da2d70278f1a +2024-09-11 09:10:21.010487 2024-09-11 09:10:21.010492 comef 9760 R rec 9afae2c3-a715-49ff-8b8b-e8580c415ed9 +2024-09-11 09:10:21.067121 2024-09-11 09:10:21.067125 comef 9761 R rec 2739116d-c832-4db5-a6c2-53de022a9959 +2024-09-11 09:10:21.124459 2024-09-11 09:10:21.124464 comef 9762 R rec f292697c-2ba3-4989-864a-22d3f74940e9 +2024-09-11 09:10:21.178888 2024-09-11 09:10:21.178892 comef 9763 R rec d8837169-12c5-4027-9330-ecb0f490bca5 +2024-09-11 09:10:21.245894 2024-09-11 09:10:21.245899 comef 9764 R rec 691704b5-7dd9-4fe1-9de2-8a39936793bd +2024-09-11 09:10:21.307396 2024-09-11 09:10:21.307401 comef 9765 R rec eb429d02-5717-4111-a825-d08cc21323f3 +2024-09-11 09:10:21.362964 2024-09-11 09:10:21.36297 comef 9766 R rec f4a54884-f2e4-48f8-aa81-03ddc73408e5 +2024-09-11 09:10:21.417092 2024-09-11 09:10:21.417096 comef 9767 R rec 36d61a4e-7204-4c59-9f3e-9814d2eef6ba +2024-09-11 09:10:21.471756 2024-09-11 09:10:21.471761 comef 9768 R rec c07a2812-46f4-4f30-90e2-13bcd58053af +2024-09-11 09:10:21.528676 2024-09-11 09:10:21.528681 comef 9769 R rec dd823a39-4064-45e5-8cd8-3ae8da867fea +2024-09-11 09:10:21.584798 2024-09-11 09:10:21.584804 comef 9770 R rec 12eed074-a47b-477a-b02f-489b3cf88419 +2024-09-11 09:10:21.638036 2024-09-11 09:10:21.638042 comef 9771 R rec fa27b5ce-a1a1-454d-a980-4b6d4da8aac0 +2024-09-11 09:10:21.699152 2024-09-11 09:10:21.699158 comef 9772 R rec 30310bd3-f052-4d9b-97d5-e1071f5c4ef0 +2024-09-11 09:10:21.758083 2024-09-11 09:10:21.758088 comef 9773 R rec 251ab67c-f8b5-4cdb-bd1e-826b2bce5afc +2024-09-11 09:10:21.814067 2024-09-11 09:10:21.814074 comef 9774 R rec 267c65ab-275d-49d8-8474-0b22aa480e70 +2024-09-11 09:10:21.868401 2024-09-11 09:10:21.868406 comef 9775 R rec ccead147-3ada-41cc-94bb-446575db6c61 +2024-09-11 09:10:21.927835 2024-09-11 09:10:21.927839 comef 9776 R rec 2ea8391c-4a4c-4d67-9b27-38e5e78545f3 +2024-09-11 09:10:21.984742 2024-09-11 09:10:21.984749 comef 9777 R rec 2937942c-40d5-4e9a-ab61-bf70965a9d40 +2024-09-11 09:10:22.043064 2024-09-11 09:10:22.043069 comef 9778 R rec 44e42efa-3180-4127-a1fd-f76dd041e81a +2024-09-11 09:10:22.096792 2024-09-11 09:10:22.096797 comef 9779 R rec fa0fc13a-0b3e-47d0-9010-9910d288fc47 +2024-09-11 09:10:22.152862 2024-09-11 09:10:22.152867 comef 9780 R rec fea619f5-71c7-4bbd-bf97-895ada22c2b1 +2024-09-11 09:10:22.303613 2024-09-11 09:10:22.303618 comef 9781 R rec 261cdff5-c648-4eee-a19c-481ecb0bb903 +2024-09-11 09:10:22.370228 2024-09-11 09:10:22.370233 comef 9782 R rec e6eda2dd-39d2-4636-a104-1f651fc31ee5 +2024-09-11 09:10:22.42038 2024-09-11 09:10:22.420384 comef 9783 R rec b1093456-627f-4aeb-ae91-c4721e6519df +2024-09-11 09:10:22.470803 2024-09-11 09:10:22.470808 comef 9784 R rec 68328a02-8bee-4857-8119-4c1d4f8ce771 +2024-09-11 09:10:22.522064 2024-09-11 09:10:22.522068 comef 9785 R rec a50766fe-c4bc-4d08-9122-59639c4e1a65 +2024-09-11 09:10:22.575521 2024-09-11 09:10:22.575526 comef 9786 R rec ac309787-5451-4622-a6ab-1a2bd2acb2c8 +2024-09-11 09:10:22.627866 2024-09-11 09:10:22.627871 comef 9787 R rec 9be3921a-5528-4028-bf29-319563e557ef +2024-09-11 09:10:22.679824 2024-09-11 09:10:22.679829 comef 9788 R rec 5a7fdaa2-dada-4c39-bb87-40dc23126860 +2024-09-11 09:10:22.737043 2024-09-11 09:10:22.737047 comef 9789 R rec a3e92a51-0b1c-4e9b-b046-baf478525a39 +2024-09-11 09:10:22.80737 2024-09-11 09:10:22.807376 comef 9790 R rec fdcfa83f-c386-4fbf-8c4b-8145837d5db2 +2024-09-11 09:10:22.86774 2024-09-11 09:10:22.867745 comef 9791 R rec f4eb8035-91e1-44a8-aa4a-840db4d76ef5 +2024-09-11 09:10:22.924261 2024-09-11 09:10:22.924266 comef 9792 R rec 3cb6e150-08c6-45c8-9c7d-c65d8444d9bd +2024-09-11 09:10:22.983983 2024-09-11 09:10:22.983987 comef 9793 R rec eebc5a91-f8c5-4f5c-88cf-88f9135ad826 +2024-09-11 09:10:23.041229 2024-09-11 09:10:23.041234 comef 9794 R rec 01c38f28-2ac4-481b-9634-76953bfadc45 +2024-09-11 09:10:23.100222 2024-09-11 09:10:23.100226 comef 9795 R rec e88f184d-e9f9-4487-b74f-92ed9fa3672d +2024-09-11 09:10:23.152189 2024-09-11 09:10:23.152194 comef 9796 R rec d7816e66-3153-43e6-aee4-678c21f04d79 +2024-09-11 09:10:23.20166 2024-09-11 09:10:23.201665 comef 9797 R rec 9282df5b-894b-4f1a-af90-790162d0fcbb +2024-09-11 09:10:23.251744 2024-09-11 09:10:23.251748 comef 9798 R rec c43236c3-7050-430c-b9d4-8a68d6364199 +2024-09-11 09:10:23.307685 2024-09-11 09:10:23.30769 comef 9799 R rec 229823c5-d90a-4017-8d4b-0080a7bd2342 +2024-09-11 09:10:23.36323 2024-09-11 09:10:23.363235 comef 9800 R rec ec319ffd-d39f-4dc4-8f2b-b1091cb1ba33 +2024-09-11 09:10:23.459744 2024-09-11 09:10:23.459749 comef 9801 R rec c9400588-9b11-4d09-9aa7-53160915e38a +2024-09-11 09:10:23.511562 2024-09-11 09:10:23.511566 comef 9802 R rec 7b02fefe-17aa-4608-b046-78e9b04b12dd +2024-09-11 09:10:23.560392 2024-09-11 09:10:23.560396 comef 9803 R rec 419f035d-80d8-431a-a0ed-640b1e61672d +2024-09-11 09:10:23.6148 2024-09-11 09:10:23.614804 comef 9804 R rec d409c19a-7881-499b-9047-fb91c56aa297 +2024-09-11 09:10:23.667748 2024-09-11 09:10:23.667752 comef 9805 R rec 9868c109-c837-4bbc-8871-13caea414108 +2024-09-11 09:10:23.715704 2024-09-11 09:10:23.715709 comef 9806 R rec 80dffcb0-45e9-41c4-9072-44ae4c3f5b2a +2024-09-11 09:10:23.764994 2024-09-11 09:10:23.764999 comef 9807 R rec 8150d121-cfdc-4e0f-a174-67ad38e2ff5a +2024-09-11 09:10:23.814406 2024-09-11 09:10:23.814412 comef 9808 R rec 1ee3d5b9-191a-42cf-a78f-5c481487f61d +2024-09-11 09:10:23.865395 2024-09-11 09:10:23.8654 comef 9809 R rec 3a24d473-a47d-4d1e-87b0-f9fe7178f94a +2024-09-11 09:10:23.916631 2024-09-11 09:10:23.916636 comef 9810 R rec 4b7ddd04-2618-48c2-92d7-d82b43959974 +2024-09-11 09:10:23.96498 2024-09-11 09:10:23.964986 comef 9811 R rec 7e3bf9ed-32a6-4341-8463-2472b8264931 +2024-09-11 09:10:24.016373 2024-09-11 09:10:24.016378 comef 9812 R rec f04d6ca7-af24-42ce-b182-b90c851b201e +2024-09-11 09:10:24.066218 2024-09-11 09:10:24.066223 comef 9813 R rec a7519624-9986-4107-b906-29bc339be464 +2024-09-11 09:10:24.117039 2024-09-11 09:10:24.117043 comef 9814 R rec a0ae0668-8efa-487f-b651-fbdd8a99f381 +2024-09-11 09:10:24.174284 2024-09-11 09:10:24.174289 comef 9815 R rec 58d867b3-15c6-4f80-a055-27c7410d290a +2024-09-11 09:10:24.227812 2024-09-11 09:10:24.227816 comef 9816 R rec 3a7bc0e6-ea43-45bf-8476-afa17fd1774d +2024-09-11 09:10:24.280241 2024-09-11 09:10:24.280245 comef 9817 R rec 95d3a5ed-9c55-4e13-9ea4-a1975d762fc8 +2024-09-11 09:10:24.32923 2024-09-11 09:10:24.329234 comef 9818 R rec a5946731-2e86-4ec5-999f-ff374abd0219 +2024-09-11 09:10:24.37663 2024-09-11 09:10:24.376636 comef 9819 R rec c0559303-b6f6-4660-acf0-11d9a134e3a1 +2024-09-11 09:10:24.43849 2024-09-11 09:10:24.438495 comef 9820 R rec 59c41165-8c77-4dcc-b786-5f51fc1f8c56 +2024-09-11 09:10:24.490046 2024-09-11 09:10:24.49005 comef 9821 R rec 421938f3-192c-4d12-ba8b-1f862194d698 +2024-09-11 09:10:24.543647 2024-09-11 09:10:24.543652 comef 9822 R rec 0a6a4415-7359-46eb-93cd-bf5bb3d07999 +2024-09-11 09:10:24.598947 2024-09-11 09:10:24.598952 comef 9823 R rec 7acd09f5-355c-485f-bc4e-5d67a0aa213e +2024-09-11 09:10:24.648413 2024-09-11 09:10:24.648417 comef 9824 R rec b0363666-2df9-4254-ba3f-cd014f07b528 +2024-09-11 09:10:24.700332 2024-09-11 09:10:24.700337 comef 9825 R rec ca7103cf-59b2-4f19-b175-d0e50507a262 +2024-09-11 09:10:24.749997 2024-09-11 09:10:24.750001 comef 9826 R rec c5540f63-ebf4-4a56-8153-ecd718fdc7a6 +2024-09-11 09:10:24.803109 2024-09-11 09:10:24.803114 comef 9827 R rec 27567fdf-b87b-49a5-b53a-5d05312477e6 +2024-09-11 09:10:24.852564 2024-09-11 09:10:24.852569 comef 9828 R rec 4b5a2de8-1bff-4f17-a390-4f8b81c2b07c +2024-09-11 09:10:24.904914 2024-09-11 09:10:24.904918 comef 9829 R rec 87fa25ff-4879-40c9-8718-da151dde6865 +2024-09-11 09:10:24.956629 2024-09-11 09:10:24.956634 comef 9830 R rec 98d7c601-a806-43d5-af07-896b5feecfbb +2024-09-11 09:10:25.007326 2024-09-11 09:10:25.007331 comef 9831 R rec eba25d65-c404-4cf0-a85e-4ac8f703e94e +2024-09-11 09:10:25.068072 2024-09-11 09:10:25.068077 comef 9832 R rec 82da71bb-b70a-44eb-9b63-ed138244ce5c +2024-09-11 09:10:25.124688 2024-09-11 09:10:25.124693 comef 9833 R rec 58e77d35-7660-4922-ac95-52f90b49ad54 +2024-09-11 09:10:25.174579 2024-09-11 09:10:25.174584 comef 9834 R rec 28c9add1-f6ae-456c-9887-2be6ea685f35 +2024-09-11 09:10:25.22437 2024-09-11 09:10:25.224375 comef 9835 R rec 8c514fe8-2af2-4b50-bd0b-996dd11d4833 +2024-09-11 09:10:25.326636 2024-09-11 09:10:25.326641 comef 9836 R rec ea9a6eb5-eea3-46c5-864f-092df8dad540 +2024-09-11 09:10:25.380307 2024-09-11 09:10:25.380312 comef 9837 R rec 0ee7b325-3b6d-4ae3-b5a5-125c59ffe2a5 +2024-09-11 09:10:25.431228 2024-09-11 09:10:25.431232 comef 9838 R rec b9f0dd6a-8aef-4a4f-a1ea-58bc1001d0d0 +2024-09-11 09:10:25.496964 2024-09-11 09:10:25.49697 comef 9839 R rec 034a2766-ece0-4d49-ac08-3db09814156c +2024-09-11 09:10:25.554992 2024-09-11 09:10:25.554998 comef 9840 R rec efed102f-8c68-4fa1-8d11-ff2301c3bd93 +2024-09-11 09:10:25.613418 2024-09-11 09:10:25.613423 comef 9841 R rec 8b6018bd-25dd-4b02-b3f2-094880625f9a +2024-09-11 09:10:25.661566 2024-09-11 09:10:25.661571 comef 9842 R rec 7630d4f7-397c-48eb-b8e3-07825de929fc +2024-09-11 09:10:25.716249 2024-09-11 09:10:25.716254 comef 9843 R rec d53e0d64-be73-4157-ad71-1c94e84ce180 +2024-09-11 09:10:25.77206 2024-09-11 09:10:25.772065 comef 9844 R rec 71b4d943-e4e6-4f73-9c5f-65d034121300 +2024-09-11 09:10:25.857942 2024-09-11 09:10:25.857947 comef 9845 R rec 2e716984-067d-4877-910f-69a714bded55 +2024-09-11 09:10:25.90694 2024-09-11 09:10:25.906945 comef 9846 R rec d97de8d2-8dce-4aee-92f3-e389d9c6cdba +2024-09-11 09:10:25.960385 2024-09-11 09:10:25.960389 comef 9847 R rec bf5dceb8-b6d9-402e-8cd0-a44640c5bb7e +2024-09-11 09:10:26.014014 2024-09-11 09:10:26.014019 comef 9848 R rec 5d324b4f-09d7-42a1-93b0-2d9a0505a25b +2024-09-11 09:10:26.064117 2024-09-11 09:10:26.064122 comef 9849 R rec 051544ff-0ff4-4f3a-ab3d-df257da67be1 +2024-09-11 09:10:26.117935 2024-09-11 09:10:26.117941 comef 9850 R rec 89016dd6-6751-46f4-8164-94d45001a600 +2024-09-11 09:10:26.175493 2024-09-11 09:10:26.175499 comef 9851 R rec 39e23b70-8e99-45cb-baf9-aec0ce4c5ea4 +2024-09-11 09:10:26.235969 2024-09-11 09:10:26.235974 comef 9852 R rec 40a8437c-bc49-450e-8b54-a15e8a7c9991 +2024-09-11 09:10:26.293248 2024-09-11 09:10:26.293255 comef 9853 R rec 1de9fff2-7ad2-40fe-b605-9c7507772ab4 +2024-09-11 09:10:26.362903 2024-09-11 09:10:26.362908 comef 9854 R rec 97fda130-242a-4f27-9cce-f1f7c45d6b1c +2024-09-11 09:10:26.426084 2024-09-11 09:10:26.426088 comef 9855 R rec 5d450dac-1e14-46a3-9639-16cbfbe6a278 +2024-09-11 09:10:26.481474 2024-09-11 09:10:26.481479 comef 9856 R rec 45f8fdc8-5eaf-450b-ba4d-8685d74a51f0 +2024-09-11 09:10:26.538843 2024-09-11 09:10:26.538847 comef 9857 R rec 4b1e315f-ba56-4020-bf6c-5335a904a34b +2024-09-11 09:10:26.585945 2024-09-11 09:10:26.585949 comef 9858 R rec e4703f54-ddc1-4241-bbb4-469696fccd23 +2024-09-11 09:10:26.63444 2024-09-11 09:10:26.634445 comef 9859 R rec 5a9f8cb1-0984-474e-8343-7670eb26ec3a +2024-09-11 09:10:26.681917 2024-09-11 09:10:26.681921 comef 9860 R rec 564e19b3-b1c2-428c-8990-9e399cd6e2b7 +2024-09-11 09:10:26.731668 2024-09-11 09:10:26.731673 comef 9861 R rec 43b5bbda-f8a9-4fe8-b8e7-5dd68c5cb770 +2024-09-11 09:10:26.789178 2024-09-11 09:10:26.789183 comef 9862 R rec 4de5d7ad-2807-4a38-8178-4ce4224e01f9 +2024-09-11 09:10:26.841883 2024-09-11 09:10:26.841895 comef 9863 R rec f9f6e0fe-7bdd-4260-a67c-8cfed2404245 +2024-09-11 09:10:26.89583 2024-09-11 09:10:26.895835 comef 9864 R rec 0e159190-f605-4b9b-8d93-791417fac113 +2024-09-11 09:10:26.952435 2024-09-11 09:10:26.95244 comef 9865 R rec 89718388-703f-481a-9fdf-f7c91ba111b1 +2024-09-11 09:10:27.006996 2024-09-11 09:10:27.007001 comef 9866 R rec c39ba7d0-2385-4146-b0e3-b9d4f51aed5d +2024-09-11 09:10:27.063437 2024-09-11 09:10:27.063442 comef 9867 R rec e07c6a3b-0d1c-4ed0-bd88-df177b111d21 +2024-09-11 09:10:27.115224 2024-09-11 09:10:27.115229 comef 9868 R rec f3030591-e5f1-43e1-ac29-85242f323fe6 +2024-09-11 09:10:27.165592 2024-09-11 09:10:27.165597 comef 9869 R rec f765cfd7-b6a1-4fb0-879d-1a2ddf392ab8 +2024-09-11 09:10:27.218061 2024-09-11 09:10:27.218066 comef 9870 R rec df7f937e-ccdb-4cbd-8987-38433b1a067d +2024-09-11 09:10:27.266658 2024-09-11 09:10:27.266662 comef 9871 R rec 763cbbe8-8d89-4f55-b6b8-e673fa54cf93 +2024-09-11 09:10:27.321576 2024-09-11 09:10:27.321581 comef 9872 R rec e3cb12c1-b0fa-4a65-ba30-5ce145bf89c9 +2024-09-11 09:10:27.373371 2024-09-11 09:10:27.373376 comef 9873 R rec 471e4483-8c1a-4ae8-90fd-1ceb585bde30 +2024-09-11 09:10:27.424309 2024-09-11 09:10:27.424314 comef 9874 R rec 7b2cecae-50eb-4ea6-a8a6-6e037866351c +2024-09-11 09:10:27.478902 2024-09-11 09:10:27.478907 comef 9875 R rec c1ca1ca6-6dd7-4db9-bb74-06d286bea3d0 +2024-09-11 09:10:27.537399 2024-09-11 09:10:27.537404 comef 9876 R rec 6a518da0-0ab9-456e-a916-f1f341c692a7 +2024-09-11 09:10:27.587377 2024-09-11 09:10:27.587381 comef 9877 R rec edb96850-0b99-4bc6-a241-eb22f814a182 +2024-09-11 09:10:27.636355 2024-09-11 09:10:27.63636 comef 9878 R rec 1ebfc55b-abf6-42c2-8b45-314174e553bb +2024-09-11 09:10:27.689818 2024-09-11 09:10:27.689823 comef 9879 R rec fabfceca-d6e1-482d-93b9-4082a768fe8f +2024-09-11 09:10:27.739867 2024-09-11 09:10:27.739871 comef 9880 R rec 9297e599-c84b-486b-94a3-70579ed0fa37 +2024-09-11 09:10:27.793722 2024-09-11 09:10:27.793729 comef 9881 R rec c3444e39-6074-45e8-b43f-179a8b890f13 +2024-09-11 09:10:27.855841 2024-09-11 09:10:27.855847 comef 9882 R rec 6817e08a-9c89-4199-963e-a93a31716c3a +2024-09-11 09:10:27.918078 2024-09-11 09:10:27.918083 comef 9883 R rec baf59def-3c1e-45fb-ac07-2fcf60a66d39 +2024-09-11 09:10:27.974851 2024-09-11 09:10:27.974855 comef 9884 R rec 5bc20755-c25b-4bbb-9569-a8bb45001e1a +2024-09-11 09:10:28.026719 2024-09-11 09:10:28.026725 comef 9885 R rec 80317cce-1324-49f4-9e1e-304ecc28d141 +2024-09-11 09:10:28.08134 2024-09-11 09:10:28.081345 comef 9886 R rec 1e75a068-8782-43e9-a0d6-45702947b29b +2024-09-11 09:10:28.135996 2024-09-11 09:10:28.136 comef 9887 R rec fa690ab4-9891-47f6-b0d4-2a6deb1ac009 +2024-09-11 09:10:28.187849 2024-09-11 09:10:28.187852 comef 9888 R rec 02ca368d-9dc2-4e11-a268-a9ff20315bcb +2024-09-11 09:10:28.239342 2024-09-11 09:10:28.239347 comef 9889 R rec c3afb78e-2128-4d63-af4d-e7ca5b7b4fec +2024-09-11 09:10:28.288405 2024-09-11 09:10:28.28841 comef 9890 R rec 78853374-872f-447b-a1f4-5afd3ed664d5 +2024-09-11 09:10:28.34045 2024-09-11 09:10:28.340455 comef 9891 R rec 385f120b-5652-4c0f-a234-18ed5ec77093 +2024-09-11 09:10:28.39142 2024-09-11 09:10:28.391425 comef 9892 R rec 7b093247-deb6-4a80-9616-10bfd607be10 +2024-09-11 09:10:28.440448 2024-09-11 09:10:28.440453 comef 9893 R rec 2d2b0c7c-0257-4b09-872f-9f6696a4d87e +2024-09-11 09:10:28.488814 2024-09-11 09:10:28.488818 comef 9894 R rec 74b2dde8-2555-408d-9909-4d04aeb53b33 +2024-09-11 09:10:28.544619 2024-09-11 09:10:28.544623 comef 9895 R rec 9c327098-6289-4726-823b-5d3db9ea4073 +2024-09-11 09:10:28.602099 2024-09-11 09:10:28.602104 comef 9896 R rec 918a0912-fcf7-4fa7-a34a-1389b424c031 +2024-09-11 09:10:28.666996 2024-09-11 09:10:28.667001 comef 9897 R rec 74945778-a3a0-4f21-9b12-a0defbde2296 +2024-09-11 09:10:28.726524 2024-09-11 09:10:28.726529 comef 9898 R rec 92212517-ea9d-4cc6-a2c0-f3a7f72484cc +2024-09-11 09:10:28.775837 2024-09-11 09:10:28.775841 comef 9899 R rec 287bbf36-f1bb-4ef7-8e0f-ffd5ea95554e +2024-09-11 09:10:28.825127 2024-09-11 09:10:28.825132 comef 9900 R rec c70abf3a-69b9-49dd-be8d-343b84580497 +2024-09-11 09:10:28.875427 2024-09-11 09:10:28.875432 comef 9901 R rec b0f7efe3-aa4d-44cf-bf6c-6cc5aff99371 +2024-09-11 09:10:28.925017 2024-09-11 09:10:28.925021 comef 9902 R rec b2f13b3d-85ba-4b60-aced-0a057f533ba1 +2024-09-11 09:10:28.971136 2024-09-11 09:10:28.97114 comef 9903 R rec 2d16a376-707d-43b0-b035-06d7de183468 +2024-09-11 09:10:29.018043 2024-09-11 09:10:29.018047 comef 9904 R rec 441d2766-50b6-4940-a34a-b228c686e3cf +2024-09-11 09:10:29.066688 2024-09-11 09:10:29.066694 comef 9905 R rec 1c9d1f7c-8a09-462d-b715-aae6321e42df +2024-09-11 09:10:29.12524 2024-09-11 09:10:29.125245 comef 9906 R rec 4362d93e-25a0-496f-b832-170895c25872 +2024-09-11 09:10:29.175877 2024-09-11 09:10:29.175882 comef 9907 R rec 1f04e390-9658-4f4f-b575-69df41e12619 +2024-09-11 09:10:29.22716 2024-09-11 09:10:29.227164 comef 9908 R rec 2d5abe61-bddd-46c6-abd5-178e35d268d8 +2024-09-11 09:10:29.272589 2024-09-11 09:10:29.272594 comef 9909 R rec f2d24009-5397-4223-89ac-d07b262a2da8 +2024-09-11 09:10:29.319813 2024-09-11 09:10:29.319817 comef 9910 R rec 557dc823-cfd9-4c4e-ab35-eae861925cf6 +2024-09-11 09:10:29.384267 2024-09-11 09:10:29.384277 comef 9911 R rec 33c08e7b-fca4-44e3-b3a0-6942d552aff6 +2024-09-11 09:10:29.447469 2024-09-11 09:10:29.447479 comef 9912 R rec 6fa4c88f-013c-45d7-ad60-a7cb50d4d26f +2024-09-11 09:10:29.521353 2024-09-11 09:10:29.521358 comef 9913 R rec 10995d2d-ce85-4891-8f2e-f043c52fa819 +2024-09-11 09:10:29.58987 2024-09-11 09:10:29.589879 comef 9914 R rec d99076da-442a-4f10-94e9-f456d45ad91d +2024-09-11 09:10:29.664995 2024-09-11 09:10:29.665006 comef 9915 R rec c5ec0378-55fc-47be-a556-ca91d98c0e76 +2024-09-11 09:10:29.713397 2024-09-11 09:10:29.713402 comef 9916 R rec 3820fd41-c3f3-41b9-abaa-321e50a04969 +2024-09-11 09:10:29.775067 2024-09-11 09:10:29.775078 comef 9917 R rec 7870ee30-d6a5-4945-887d-adcf8c8c5e15 +2024-09-11 09:10:29.855906 2024-09-11 09:10:29.855916 comef 9918 R rec c79cea1e-37a5-43c7-874f-2a9a533dd1b0 +2024-09-11 09:10:29.926028 2024-09-11 09:10:29.926038 comef 9919 R rec 78f8bbf1-b108-462f-a5cc-1ccd47ef958f +2024-09-11 09:10:29.988946 2024-09-11 09:10:29.988951 comef 9920 R rec 41dc70ef-2d32-4f0e-a147-e35b180f1f1d +2024-09-11 09:10:30.056594 2024-09-11 09:10:30.056598 comef 9921 R rec b3f5a0f3-fc94-4de1-aad5-f1341e121bdc +2024-09-11 09:10:30.12613 2024-09-11 09:10:30.12614 comef 9922 R rec c08ce93a-9445-404e-8f13-8c02dc4533de +2024-09-11 09:10:30.192663 2024-09-11 09:10:30.192668 comef 9923 R rec 4f3badd7-7e98-49f1-a931-522b68986aae +2024-09-11 09:10:30.257094 2024-09-11 09:10:30.257104 comef 9924 R rec 7fc1eecc-b973-4f1f-b557-1b23d7df3ab8 +2024-09-11 09:10:30.340458 2024-09-11 09:10:30.340463 comef 9925 R rec ef32c9b3-3482-4734-83b6-7acd5599f12a +2024-09-11 09:10:30.408609 2024-09-11 09:10:30.408619 comef 9926 R rec 4ea5178e-3f13-4383-a68c-9c894ae66a71 +2024-09-11 09:10:30.477335 2024-09-11 09:10:30.477339 comef 9927 R rec b1a723b7-967e-41ad-abc2-b6cd158fdd18 +2024-09-11 09:10:30.534456 2024-09-11 09:10:30.534461 comef 9928 R rec e69000b9-0685-4c44-8fbf-32dac900dfb3 +2024-09-11 09:10:30.593523 2024-09-11 09:10:30.593527 comef 9929 R rec e625567b-6093-4248-9601-cbbc4fa47044 +2024-09-11 09:10:30.659723 2024-09-11 09:10:30.659734 comef 9930 R rec ab9d41aa-8209-4f73-8926-f5e52360578f +2024-09-11 09:10:30.715861 2024-09-11 09:10:30.715865 comef 9931 R rec f446369a-3fcb-4e51-ab34-f463c13b5630 +2024-09-11 09:10:30.772476 2024-09-11 09:10:30.772481 comef 9932 R rec 249f3fb9-a1e1-43c2-8fe0-c1c04f803551 +2024-09-11 09:10:30.84483 2024-09-11 09:10:30.844841 comef 9933 R rec a3af3d2e-9545-4389-b797-f7f64961484f +2024-09-11 09:10:30.933064 2024-09-11 09:10:30.933075 comef 9934 R rec f5675a84-e5ce-4a22-b692-f680934af295 +2024-09-11 09:10:31.012128 2024-09-11 09:10:31.012133 comef 9935 R rec 51fcb4bc-d471-45ab-8674-2048c40b622a +2024-09-11 09:10:31.065628 2024-09-11 09:10:31.065638 comef 9936 R rec 66d71226-500b-4435-9d99-4048b9a97fb8 +2024-09-11 09:10:31.132173 2024-09-11 09:10:31.132177 comef 9937 R rec a7a54c3f-fb65-40b1-873c-eba293fdcf3c +2024-09-11 09:10:31.19032 2024-09-11 09:10:31.190325 comef 9938 R rec 77449f4f-0bc5-45a0-8cb1-699eb56db5d1 +2024-09-11 09:10:31.248863 2024-09-11 09:10:31.248868 comef 9939 R rec 9beb8dc4-48a3-47b0-b4d2-38e38905dc4c +2024-09-11 09:10:31.321681 2024-09-11 09:10:31.321696 comef 9940 R rec 3d7b61b6-781a-468d-82fa-5bc3c86799ce +2024-09-11 09:10:31.410581 2024-09-11 09:10:31.410591 comef 9941 R rec 742cdd07-eed6-4bfa-8cc3-188fdb40b92d +2024-09-11 09:10:31.485816 2024-09-11 09:10:31.485821 comef 9942 R rec b56716e7-5e37-4fbd-94c4-153f7085f8ba +2024-09-11 09:10:31.557435 2024-09-11 09:10:31.557445 comef 9943 R rec 70e84e5f-5ec6-4c9b-bb62-e74e90a5324a +2024-09-11 09:10:31.630044 2024-09-11 09:10:31.630049 comef 9944 R rec 7053e34d-27e4-41e0-b59d-0991f13ba051 +2024-09-11 09:10:31.6961 2024-09-11 09:10:31.696104 comef 9945 R rec 0264692b-e3f9-4bee-b74e-6faf13fe54f6 +2024-09-11 09:10:31.751169 2024-09-11 09:10:31.751178 comef 9946 R rec 95bb88ae-4236-418e-90fa-2a998381bda4 +2024-09-11 09:10:31.816143 2024-09-11 09:10:31.816153 comef 9947 R rec 0e32a747-83d7-4513-8234-81e918cf7c8c +2024-09-11 09:10:31.896364 2024-09-11 09:10:31.896374 comef 9948 R rec 60a2753f-2a87-4148-9a25-c8a57df183c6 +2024-09-11 09:10:31.973103 2024-09-11 09:10:31.973112 comef 9949 R rec 0229616d-00de-4ebb-b6c5-7758843571a6 +2024-09-11 09:10:32.036876 2024-09-11 09:10:32.03688 comef 9950 R rec 12e8c085-f14d-49ed-8646-9c5358b2384d +2024-09-11 09:10:32.100774 2024-09-11 09:10:32.1008 comef 9951 R rec 1ec03d02-c3ea-4808-b564-b0223c2796fe +2024-09-11 09:10:32.195307 2024-09-11 09:10:32.195312 comef 9952 R rec 3aa6bc7e-60dc-4a25-9c0b-a36fdf7c9440 +2024-09-11 09:10:32.278481 2024-09-11 09:10:32.278492 comef 9953 R rec f3ea1e94-5a37-497e-a54a-8d7bb9b159d8 +2024-09-11 09:10:32.351806 2024-09-11 09:10:32.351811 comef 9954 R rec e04f6434-c469-4584-a8f7-a704c03dc56e +2024-09-11 09:10:32.426832 2024-09-11 09:10:32.426837 comef 9955 R rec d9a062b2-6bc9-405a-8d2f-f949cb2415c2 +2024-09-11 09:10:32.494368 2024-09-11 09:10:32.494384 comef 9956 R rec e2508d40-f8ad-4c9d-958b-5e5b17936669 +2024-09-11 09:10:32.579138 2024-09-11 09:10:32.579144 comef 9957 R rec 4041407f-16c0-46b9-8c41-e850212ec975 +2024-09-11 09:10:32.652205 2024-09-11 09:10:32.652215 comef 9958 R rec 11247733-d2a6-49ae-a76f-98bf542faaa5 +2024-09-11 09:10:32.710977 2024-09-11 09:10:32.710982 comef 9959 R rec a25f9a40-8bc9-45ac-a979-9cc6654d7d1b +2024-09-11 09:10:32.775077 2024-09-11 09:10:32.775082 comef 9960 R rec 511bd004-80c9-4425-ac41-6ffc1b2169c7 +2024-09-11 09:10:32.837731 2024-09-11 09:10:32.837735 comef 9961 R rec 4e353c77-9b42-48be-9aed-1b81ec9b0e2e +2024-09-11 09:10:32.897809 2024-09-11 09:10:32.897813 comef 9962 R rec 0b4b9dc1-71bf-4537-8d4d-320644278235 +2024-09-11 09:10:32.951133 2024-09-11 09:10:32.951138 comef 9963 R rec 8715583f-3b8f-4fbc-b8b4-f4633d97c790 +2024-09-11 09:10:33.003973 2024-09-11 09:10:33.003977 comef 9964 R rec 5b93968a-edf7-4825-bdbf-06fca05a989a +2024-09-11 09:10:33.057494 2024-09-11 09:10:33.057499 comef 9965 R rec 947e58b8-109c-451b-b8d0-cca9bc823546 +2024-09-11 09:10:33.109027 2024-09-11 09:10:33.109031 comef 9966 R rec b5eeb0fb-ed23-4b77-a2a1-8030fd1904d4 +2024-09-11 09:10:33.166311 2024-09-11 09:10:33.166316 comef 9967 R rec 4ec5b35a-dc83-4e31-8840-2028de1dcbe6 +2024-09-11 09:10:33.221402 2024-09-11 09:10:33.221407 comef 9968 R rec 6bda811b-ffe5-466b-9436-aba424e26633 +2024-09-11 09:10:33.283613 2024-09-11 09:10:33.283618 comef 9969 R rec 5acd425f-759a-4602-b8d3-cf5ef956eaf6 +2024-09-11 09:10:33.34631 2024-09-11 09:10:33.346315 comef 9970 R rec 7abf2534-27df-4609-ae64-c6bc121a502c +2024-09-11 09:10:33.412454 2024-09-11 09:10:33.41246 comef 9971 R rec b321cdc9-b70c-4b4e-be93-de6ae0a99181 +2024-09-11 09:10:33.480196 2024-09-11 09:10:33.480202 comef 9972 R rec ad8895c7-9cc5-4828-8676-6b2409a07645 +2024-09-11 09:10:33.538053 2024-09-11 09:10:33.538057 comef 9973 R rec fb038d8d-0286-44ea-822f-e620a8c69559 +2024-09-11 09:10:33.593733 2024-09-11 09:10:33.593738 comef 9974 R rec 820fd281-c7d3-41b5-92f3-e2763477ee82 +2024-09-11 09:10:33.64431 2024-09-11 09:10:33.644314 comef 9975 R rec 139caf44-becd-43af-ba1a-0b22e7a577a8 +2024-09-11 09:10:33.696713 2024-09-11 09:10:33.696718 comef 9976 R rec 0ffa3cf1-427e-4dc8-b6e9-3ed3c90667bf +2024-09-11 09:10:33.747751 2024-09-11 09:10:33.747756 comef 9977 R rec e119ae40-cd86-4ac6-99ad-ee99ffb6961b +2024-09-11 09:10:33.79637 2024-09-11 09:10:33.796374 comef 9978 R rec d9380f75-1b98-4a0c-be6f-fb198d0e7209 +2024-09-11 09:10:33.846653 2024-09-11 09:10:33.846658 comef 9979 R rec 143152c9-fb16-4cbe-8009-2d1600216397 +2024-09-11 09:10:33.909485 2024-09-11 09:10:33.90949 comef 9980 R rec 015c7ec9-9a7f-4920-b790-8b495517a477 +2024-09-11 09:10:33.960498 2024-09-11 09:10:33.960503 comef 9981 R rec 5d523fd4-ea70-449f-aaf1-ee1df3be1070 +2024-09-11 09:10:34.013 2024-09-11 09:10:34.013006 comef 9982 R rec c9cbe12a-b2ce-4080-a386-cc0148e95b92 +2024-09-11 09:10:34.068118 2024-09-11 09:10:34.068123 comef 9983 R rec 480ffd8d-0f04-4f26-ad0e-019c87946104 +2024-09-11 09:10:34.120766 2024-09-11 09:10:34.12077 comef 9984 R rec 43220e88-7ad1-45f7-9799-08bf167d18af +2024-09-11 09:10:34.173687 2024-09-11 09:10:34.173692 comef 9985 R rec 5a03e07a-db03-4fc9-8069-236ef2f38513 +2024-09-11 09:10:34.236463 2024-09-11 09:10:34.236467 comef 9986 R rec 177469a6-59c6-40c4-8bb1-6daf0a96474b +2024-09-11 09:10:34.298874 2024-09-11 09:10:34.298879 comef 9987 R rec d0702c05-4c22-4a79-8a95-c03c3d5ee9ce +2024-09-11 09:10:34.356588 2024-09-11 09:10:34.356592 comef 9988 R rec 43d969f1-f2c2-4364-afe1-66facf7bcd99 +2024-09-11 09:10:34.417695 2024-09-11 09:10:34.417699 comef 9989 R rec cfeb743a-c354-4583-b21d-50a866334e11 +2024-09-11 09:10:34.479446 2024-09-11 09:10:34.479453 comef 9990 R rec 89973ed9-5c43-43b8-bbc5-0dd6297586db +2024-09-11 09:10:34.537917 2024-09-11 09:10:34.537921 comef 9991 R rec 0442d5c2-282d-4be0-ab3f-ab6215d1912e +2024-09-11 09:10:34.590772 2024-09-11 09:10:34.590777 comef 9992 R rec cfdc1ac4-1510-4eb6-9ec1-13fce36739ef +2024-09-11 09:10:34.639861 2024-09-11 09:10:34.639865 comef 9993 R rec 2f542a7d-f4a1-4b5f-8747-34db96c515bc +2024-09-11 09:10:34.693145 2024-09-11 09:10:34.693149 comef 9994 R rec 3b5c3f0b-7680-4432-9223-8d8dbc6776b9 +2024-09-11 09:10:34.740571 2024-09-11 09:10:34.740576 comef 9995 R rec c83d0917-b087-4a34-9240-ffb3c267e7d9 +2024-09-11 09:10:34.7923 2024-09-11 09:10:34.792305 comef 9996 R rec c7e3de40-acf7-4a48-8f82-7d3d308f385d +2024-09-11 09:10:34.838318 2024-09-11 09:10:34.838322 comef 9997 R rec 903a6ba3-bdb6-42e3-87a4-dd349d8734dc +2024-09-11 09:10:34.884926 2024-09-11 09:10:34.884931 comef 9998 R rec f07001e4-d8a2-446c-9368-f3dcc604982d +2024-09-11 09:10:34.935395 2024-09-11 09:10:34.935399 comef 9999 R rec de089443-9dc9-4609-8e79-16df167bb4c6 +2024-09-11 09:10:34.983994 2024-09-11 09:10:34.983999 comef 10000 R rec e81a1cd1-63d7-4564-8c22-3c841cc914ef +2024-09-11 09:10:35.034151 2024-09-11 09:10:35.034155 comef 10001 R rec 3343d94e-6bcf-4a10-8b2f-a36f41704a4f +2024-09-11 09:10:35.080718 2024-09-11 09:10:35.080723 comef 10002 R rec 0879d076-590c-493a-aaab-94f72de16ed0 +2024-09-11 09:10:35.129556 2024-09-11 09:10:35.12956 comef 10003 R rec 76b88948-37e1-4372-a198-48ab84aa4e30 +2024-09-11 09:10:35.175924 2024-09-11 09:10:35.175928 comef 10004 R rec 29178016-a984-43f6-b4cf-c1a271b066ec +2024-09-11 09:10:35.262298 2024-09-11 09:10:35.262306 comef 10005 R rec 97330800-834c-4be9-89e9-a41fbb803711 +2024-09-11 09:10:35.318643 2024-09-11 09:10:35.318653 comef 10006 R rec 6e4a9df7-2222-4368-936d-ca580070def8 +2024-09-11 09:10:35.387251 2024-09-11 09:10:35.387255 comef 10007 R rec 26035a48-8e8f-4f52-9aeb-53ed00fead1f +2024-09-11 09:10:35.469186 2024-09-11 09:10:35.469191 comef 10008 R rec 89fbc37f-695c-4e2b-8aea-c3a1c5dbe025 +2024-09-11 09:10:35.533599 2024-09-11 09:10:35.533608 comef 10009 R rec 20107ddd-16bf-4e63-bdc1-602841fef534 +2024-09-11 09:10:35.589691 2024-09-11 09:10:35.589696 comef 10010 R rec f4a13c09-1980-4db4-8e51-5e78893190cd +2024-09-11 09:10:35.653569 2024-09-11 09:10:35.653573 comef 10011 R rec 40d808e9-e055-49c2-adf9-eadc96a2ff49 +2024-09-11 09:10:35.722779 2024-09-11 09:10:35.722785 comef 10012 R rec 0dcef3d6-7424-4105-99af-7f883a33d3f4 +2024-09-11 09:10:35.778467 2024-09-11 09:10:35.778472 comef 10013 R rec 1611fefe-4743-42e7-91fe-3c9b6e6c59db +2024-09-11 09:10:35.836118 2024-09-11 09:10:35.836123 comef 10014 R rec ffd2f5af-f115-46d3-952c-51a55e7c51d5 +2024-09-11 09:10:35.888859 2024-09-11 09:10:35.888863 comef 10015 R rec a035e265-0244-4e2e-ba7c-b26cccf033a9 +2024-09-11 09:10:35.942315 2024-09-11 09:10:35.94232 comef 10016 R rec a73bd768-a3a7-4c99-9e65-4aeaeae382f7 +2024-09-11 09:10:35.992185 2024-09-11 09:10:35.99219 comef 10017 R rec 8d472c29-f19c-41de-a581-7dcd9417acab +2024-09-11 09:10:36.04405 2024-09-11 09:10:36.044055 comef 10018 R rec f2db5e22-9a2f-4d8f-8ee3-543cc4e7ae22 +2024-09-11 09:10:36.096089 2024-09-11 09:10:36.096094 comef 10019 R rec 41f2b702-ee9f-48a8-be4a-c163cdeca462 +2024-09-11 09:10:36.143845 2024-09-11 09:10:36.143849 comef 10020 R rec 18ee8c77-45ec-415b-9297-029d983edf85 +2024-09-11 09:10:36.206592 2024-09-11 09:10:36.206603 comef 10021 R rec eee59d46-83c1-441b-98da-18969ab47fd1 +2024-09-11 09:10:36.264704 2024-09-11 09:10:36.264709 comef 10022 R rec 2f25fa69-4f84-4529-a776-000088a681ef +2024-09-11 09:10:36.321993 2024-09-11 09:10:36.322003 comef 10023 R rec 22ba72a8-1816-4cbc-a331-2250ac491352 +2024-09-11 09:10:36.385002 2024-09-11 09:10:36.385012 comef 10024 R rec 3e5084c3-cf8a-4b23-a34b-b58d996ad31e +2024-09-11 09:10:36.45263 2024-09-11 09:10:36.452635 comef 10025 R rec c82d00ec-bf6c-46b3-9007-cee3e6e61088 +2024-09-11 09:10:36.511107 2024-09-11 09:10:36.511112 comef 10026 R rec f9b96712-c495-46c0-9436-8b61f80176cd +2024-09-11 09:10:36.568401 2024-09-11 09:10:36.568405 comef 10027 R rec c12dfd7e-17f0-4473-bc14-a0508d233f34 +2024-09-11 09:10:36.620308 2024-09-11 09:10:36.620313 comef 10028 R rec 296af9c8-a247-47c5-8b8c-5fb707c0c88a +2024-09-11 09:10:36.667277 2024-09-11 09:10:36.667282 comef 10029 R rec cd151433-2739-45dd-b794-d711d5cbc79f +2024-09-11 09:10:36.717916 2024-09-11 09:10:36.71792 comef 10030 R rec 475e5467-b712-41bc-834e-63a5cd65ffa9 +2024-09-11 09:10:36.779206 2024-09-11 09:10:36.779212 comef 10031 R rec d8bb26db-e67a-48b3-b9e8-99dba49557a0 +2024-09-11 09:10:36.835645 2024-09-11 09:10:36.83565 comef 10032 R rec 5df23681-76b0-4f11-8fdb-7b7d77ab5369 +2024-09-11 09:10:36.88706 2024-09-11 09:10:36.887064 comef 10033 R rec 2da17a68-8a95-44cd-814e-e7175489a701 +2024-09-11 09:10:36.937131 2024-09-11 09:10:36.937135 comef 10034 R rec 748eb7a7-8032-4a3a-85c2-ef527a80a3da +2024-09-11 09:10:36.983229 2024-09-11 09:10:36.983233 comef 10035 R rec 659927b6-2524-45e5-9e79-d05bab0a6cdb +2024-09-11 09:10:37.033189 2024-09-11 09:10:37.033194 comef 10036 R rec 1d34638c-71b8-480b-a9b4-3a320d99f48a +2024-09-11 09:10:37.089237 2024-09-11 09:10:37.089241 comef 10037 R rec f993b263-bcbf-4d22-bd18-0db32ff9c0f9 +2024-09-11 09:10:37.152921 2024-09-11 09:10:37.152925 comef 10038 R rec e14e4101-79b1-447c-888e-85b1d4df4243 +2024-09-11 09:10:37.217327 2024-09-11 09:10:37.217332 comef 10039 R rec e99f52e0-f033-406d-b566-8e3ab7f455d7 +2024-09-11 09:10:37.273871 2024-09-11 09:10:37.273877 comef 10040 R rec 6914d264-8cae-4d98-8d59-b64731d6fdc5 +2024-09-11 09:10:37.335355 2024-09-11 09:10:37.335361 comef 10041 R rec 4dba88a3-6da1-45e6-9324-3b33d81a695e +2024-09-11 09:10:37.39495 2024-09-11 09:10:37.394954 comef 10042 R rec 7f2d0a22-e0ed-420f-a300-cbfb698664e9 +2024-09-11 09:10:37.4583 2024-09-11 09:10:37.458306 comef 10043 R rec 76b7813d-d652-41a9-af1e-3e1d65d01f93 +2024-09-11 09:10:37.523538 2024-09-11 09:10:37.523544 comef 10044 R rec a39183d4-7c98-4802-974e-1b4c703446c0 +2024-09-11 09:10:37.582638 2024-09-11 09:10:37.582645 comef 10045 R rec f4df255c-206d-4b96-ad6c-37408a425f0a +2024-09-11 09:10:37.65204 2024-09-11 09:10:37.652044 comef 10046 R rec 330a6548-8282-4031-8dec-ee78a8c3de2c +2024-09-11 09:10:37.706991 2024-09-11 09:10:37.706995 comef 10047 R rec 9205167d-9da6-4b1e-b7da-981bf1a49c55 +2024-09-11 09:10:37.755518 2024-09-11 09:10:37.755522 comef 10048 R rec daf08cee-42dc-47c4-a203-bf7a5ca5c12f +2024-09-11 09:10:37.802385 2024-09-11 09:10:37.80239 comef 10049 R rec ad4af4d7-cf04-4be7-9403-da9154559679 +2024-09-11 09:10:37.848197 2024-09-11 09:10:37.848202 comef 10050 R rec 72da9b13-4694-4f49-83d0-36be3316fc9c +2024-09-11 09:10:37.894129 2024-09-11 09:10:37.894134 comef 10051 R rec 991e939f-0086-48b4-b2d0-ba32c055254a +2024-09-11 09:10:37.944025 2024-09-11 09:10:37.94403 comef 10052 R rec a8f4094c-7289-45c2-993c-49d503a248db +2024-09-11 09:10:37.992335 2024-09-11 09:10:37.99234 comef 10053 R rec 677a8b45-7ec4-4dbb-a004-a099bcea9e36 +2024-09-11 09:10:38.045058 2024-09-11 09:10:38.045063 comef 10054 R rec c6220ed0-4a75-4bb8-adf2-59517a2f9a06 +2024-09-11 09:10:38.109989 2024-09-11 09:10:38.109994 comef 10055 R rec 1d04b006-f005-4646-95dc-2dcbf339dbe4 +2024-09-11 09:10:38.167725 2024-09-11 09:10:38.16773 comef 10056 R rec c46df014-9b98-4a90-8521-4113d608d1f9 +2024-09-11 09:10:38.243123 2024-09-11 09:10:38.24313 comef 10057 R rec 0802188a-405b-4bf8-98a8-aa113d816cea +2024-09-11 09:10:38.299462 2024-09-11 09:10:38.299467 comef 10058 R rec 154e675d-5779-42c6-b6ac-4faeda984d3f +2024-09-11 09:10:38.350284 2024-09-11 09:10:38.350289 comef 10059 R rec b8f6911d-d50d-4e2f-a1cd-5173a1df5330 +2024-09-11 09:10:38.40348 2024-09-11 09:10:38.403485 comef 10060 R rec 03a0aa93-57ed-4682-aaa9-de3c7c098d12 +2024-09-11 09:10:38.465956 2024-09-11 09:10:38.465961 comef 10061 R rec 39f685f4-2244-4156-baf3-a4e43d403388 +2024-09-11 09:10:38.520872 2024-09-11 09:10:38.520877 comef 10062 R rec 92943da8-f62c-4c98-b01d-436d6a3ea7b8 +2024-09-11 09:10:38.582002 2024-09-11 09:10:38.582008 comef 10063 R rec 12558b3b-6e87-4697-bd1a-34dbe257af4d +2024-09-11 09:10:38.630896 2024-09-11 09:10:38.630901 comef 10064 R rec 882ed891-6410-4788-a40a-eb025d9aba99 +2024-09-11 09:10:38.681308 2024-09-11 09:10:38.681313 comef 10065 R rec 7c08faaf-e915-495b-ac3a-34f56a6c533a +2024-09-11 09:10:38.729366 2024-09-11 09:10:38.729371 comef 10066 R rec 80098a91-7226-416f-b6a8-e3e6f2049924 +2024-09-11 09:10:38.777945 2024-09-11 09:10:38.777949 comef 10067 R rec 8d637499-6760-4914-baec-92ccb2e21989 +2024-09-11 09:10:38.827648 2024-09-11 09:10:38.827653 comef 10068 R rec 4a89a760-58c4-4617-abdd-39044edfb596 +2024-09-11 09:10:38.874156 2024-09-11 09:10:38.874161 comef 10069 R rec 85d82fad-4bae-4372-b0ef-3417e749701d +2024-09-11 09:10:38.924078 2024-09-11 09:10:38.924083 comef 10070 R rec 7a5078e6-ed29-4f9c-8623-40c5b136f643 +2024-09-11 09:10:38.978237 2024-09-11 09:10:38.978242 comef 10071 R rec 8102a4e0-fada-49f9-bff0-201f89fe1a04 +2024-09-11 09:10:39.032551 2024-09-11 09:10:39.032556 comef 10072 R rec 737f8a53-5a41-4b84-bbc6-5f27147e04b0 +2024-09-11 09:10:39.080234 2024-09-11 09:10:39.080239 comef 10073 R rec da8ac4b7-0e90-44ed-8d86-0112f6dbf767 +2024-09-11 09:10:39.128373 2024-09-11 09:10:39.128377 comef 10074 R rec 7a9f69ed-d1c2-407b-810e-0ffbcf8065fa +2024-09-11 09:10:39.177869 2024-09-11 09:10:39.177874 comef 10075 R rec 035dc6ca-adf4-47ea-8fb1-33fab8b7001e +2024-09-11 09:10:39.24572 2024-09-11 09:10:39.24573 comef 10076 R rec 847ece18-2ad5-4c0a-af7e-8f3cb73c8682 +2024-09-11 09:10:39.322187 2024-09-11 09:10:39.322197 comef 10077 R rec ea2bddb8-6567-4d30-a5d8-4fc94122f535 +2024-09-11 09:10:39.39449 2024-09-11 09:10:39.394503 comef 10078 R rec a5d33a0a-8af9-4345-909e-5c3ae6fefda6 +2024-09-11 09:10:39.46015 2024-09-11 09:10:39.460155 comef 10079 R rec cead7570-ccdb-42fb-9c5a-30ff4765e1d7 +2024-09-11 09:10:39.508842 2024-09-11 09:10:39.508847 comef 10080 R rec 21169a87-f32a-4e23-9f64-f9a116989323 +2024-09-11 09:10:39.567844 2024-09-11 09:10:39.567849 comef 10081 R rec 6b1872db-407f-4d94-bcd8-09f63c2aca8e +2024-09-11 09:10:39.647288 2024-09-11 09:10:39.647299 comef 10082 R rec 439e6753-7d22-4860-9f23-bb6d8d183608 +2024-09-11 09:10:39.724311 2024-09-11 09:10:39.724315 comef 10083 R rec a065d4de-2a89-4e21-98f4-d2f01cfe4c19 +2024-09-11 09:10:39.799031 2024-09-11 09:10:39.799041 comef 10084 R rec 72a06e1a-cf21-4830-8a58-04c61fff66c1 +2024-09-11 09:10:39.880882 2024-09-11 09:10:39.880892 comef 10085 R rec 168cdd07-9cea-4f55-b0be-307f13caa29d +2024-09-11 09:10:39.949756 2024-09-11 09:10:39.949766 comef 10086 R rec 0b27d077-3b05-4785-a2b7-832374212687 +2024-09-11 09:10:40.021987 2024-09-11 09:10:40.021991 comef 10087 R rec d7bc4780-44bb-437f-8063-247d647ce01c +2024-09-11 09:10:40.069426 2024-09-11 09:10:40.06943 comef 10088 R rec 3214af39-9677-4b36-b61c-844f4db71cd2 +2024-09-11 09:10:40.126341 2024-09-11 09:10:40.126351 comef 10089 R rec 71072e23-0b71-49c6-9a03-af4340cc9b75 +2024-09-11 09:10:40.18867 2024-09-11 09:10:40.188675 comef 10090 R rec 320b1c65-41e9-4fd6-b1e2-f6b1f06022e5 +2024-09-11 09:10:40.241136 2024-09-11 09:10:40.241141 comef 10091 R rec cc1ebdbb-adb4-4725-b575-e30e7baec479 +2024-09-11 09:10:40.301221 2024-09-11 09:10:40.301225 comef 10092 R rec 3c4a8ebb-1ef3-4e58-93c0-e0e45505229f +2024-09-11 09:10:40.366938 2024-09-11 09:10:40.366948 comef 10093 R rec 4c4e3465-e3fb-4905-abf2-8a8da739c410 +2024-09-11 09:10:40.435218 2024-09-11 09:10:40.435228 comef 10094 R rec e37316b1-2a83-4d6d-9811-09c9204c6f62 +2024-09-11 09:10:40.502345 2024-09-11 09:10:40.502349 comef 10095 R rec 162fd4d1-1431-4e5d-b6af-021098d3a213 +2024-09-11 09:10:40.554736 2024-09-11 09:10:40.55474 comef 10096 R rec e61bb0ee-f437-401b-ae94-bd5d1655abc1 +2024-09-11 09:10:40.612715 2024-09-11 09:10:40.612726 comef 10097 R rec 69c5781d-32db-4a6d-bd7c-9ad5513598a8 +2024-09-11 09:10:40.685065 2024-09-11 09:10:40.685074 comef 10098 R rec 697e7a34-89d7-4690-a9a3-e9deff0eb6e6 +2024-09-11 09:10:40.756928 2024-09-11 09:10:40.756938 comef 10099 R rec 15376f91-9284-4af9-a1b6-d3cc56e9041b +2024-09-11 09:10:40.828616 2024-09-11 09:10:40.828626 comef 10100 R rec 351ae02d-1819-4dc5-b492-dfab6aae5caf +2024-09-11 09:10:40.899032 2024-09-11 09:10:40.899037 comef 10101 R rec 31895d7a-8910-450d-90fa-32cad2e6d4a7 +2024-09-11 09:10:40.960326 2024-09-11 09:10:40.96033 comef 10102 R rec 9e274dc1-4d63-4e81-bb2b-b7d8297d0b3b +2024-09-11 09:10:41.030277 2024-09-11 09:10:41.030282 comef 10103 R rec d7c9c272-0489-436c-b1e2-81cfb5cf3320 +2024-09-11 09:10:41.101991 2024-09-11 09:10:41.101995 comef 10104 R rec 4cf1833b-342c-4501-b28a-f965cbcfb913 +2024-09-11 09:10:41.167967 2024-09-11 09:10:41.167976 comef 10105 R rec b813f01e-f64f-4ecf-a1d4-1bda619c71b4 +2024-09-11 09:10:41.228681 2024-09-11 09:10:41.228686 comef 10106 R rec 0104f826-cc37-4d67-8939-0a7b55b21c69 +2024-09-11 09:10:41.286982 2024-09-11 09:10:41.286994 comef 10107 R rec 576f2c05-0d14-4df0-b209-01fb668b8e4c +2024-09-11 09:10:41.349329 2024-09-11 09:10:41.349339 comef 10108 R rec c814df1f-5548-47e9-a317-3a61e46974bd +2024-09-11 09:10:41.412447 2024-09-11 09:10:41.412458 comef 10109 R rec 3197d739-f1fa-483b-9da8-4c0a9ea22f79 +2024-09-11 09:10:41.473336 2024-09-11 09:10:41.473342 comef 10110 R rec ff64c934-3aa4-446a-87d1-5e119519a938 +2024-09-11 09:10:41.537911 2024-09-11 09:10:41.537914 comef 10111 R rec d68514a9-d35f-4f2b-b5da-3d184672b1d6 +2024-09-11 09:10:41.588742 2024-09-11 09:10:41.588746 comef 10112 R rec edae39a7-c5c1-449d-93e6-82faf263db12 +2024-09-11 09:10:41.649595 2024-09-11 09:10:41.649599 comef 10113 R rec c5d4ece6-3eab-4617-b98d-27c52311b68f +2024-09-11 09:10:41.716546 2024-09-11 09:10:41.716556 comef 10114 R rec 1af49447-6cc5-4e47-8e91-4741c3805f7e +2024-09-11 09:10:41.782028 2024-09-11 09:10:41.782039 comef 10115 R rec 91591d49-98ea-42df-8c73-351c9cff46f0 +2024-09-11 09:10:41.856235 2024-09-11 09:10:41.856245 comef 10116 R rec ae3f97e0-647d-4f57-8c87-d5bf11aa70fa +2024-09-11 09:10:41.91763 2024-09-11 09:10:41.917634 comef 10117 R rec 47bd6d49-55ae-441a-8721-c909488acb97 +2024-09-11 09:10:41.996818 2024-09-11 09:10:41.996829 comef 10118 R rec 960a6334-bfa5-415a-8e23-00288a2f1442 +2024-09-11 09:10:42.063666 2024-09-11 09:10:42.06367 comef 10119 R rec 13bbb600-9fa3-45c7-bcb7-37d86793e8ba +2024-09-11 09:10:42.129985 2024-09-11 09:10:42.129994 comef 10120 R rec 15eb480a-726b-4c6f-b09b-c94947417251 +2024-09-11 09:10:42.192628 2024-09-11 09:10:42.192632 comef 10121 R rec dc3f81e4-dead-45cf-8921-59637b35e46f +2024-09-11 09:10:42.239718 2024-09-11 09:10:42.239722 comef 10122 R rec 363cb2d4-d617-4142-b474-90fe5badb71f +2024-09-11 09:10:42.296053 2024-09-11 09:10:42.296063 comef 10123 R rec 29b32588-f340-40af-bb57-c8647bc9ae74 +2024-09-11 09:10:42.360877 2024-09-11 09:10:42.360883 comef 10124 R rec 64d23206-4981-485c-8857-02daf181f0c0 +2024-09-11 09:10:42.41026 2024-09-11 09:10:42.410265 comef 10125 R rec 88723f0b-67f0-4aac-a2f2-7afb5ed4c926 +2024-09-11 09:10:42.465596 2024-09-11 09:10:42.4656 comef 10126 R rec 2cf93bda-b2f3-4ef5-a70a-061d8d27808c +2024-09-11 09:10:42.518806 2024-09-11 09:10:42.51881 comef 10127 R rec b393a2e1-8660-427c-84fe-136dc5adceb2 +2024-09-11 09:10:42.570932 2024-09-11 09:10:42.570937 comef 10128 R rec 44e07104-1f11-4c77-aebc-c10251ab1398 +2024-09-11 09:10:42.635677 2024-09-11 09:10:42.635687 comef 10129 R rec 098e16bb-27d1-43da-9052-65b8d08bfd5b +2024-09-11 09:10:42.703346 2024-09-11 09:10:42.703351 comef 10130 R rec 2dbb9d19-5421-4375-a559-6a0a348835a3 +2024-09-11 09:10:42.761202 2024-09-11 09:10:42.761212 comef 10131 R rec beaede31-6530-43df-99a5-cf7cb59a1064 +2024-09-11 09:10:42.822411 2024-09-11 09:10:42.822416 comef 10132 R rec 3db613e9-899d-4c81-a7ac-a8fe79279dd8 +2024-09-11 09:10:42.887289 2024-09-11 09:10:42.887298 comef 10133 R rec ee2b6de8-db91-4a38-b93e-8d786beb55be +2024-09-11 09:10:42.955963 2024-09-11 09:10:42.955973 comef 10134 R rec 78d22531-4a1a-4970-84f1-d2535c5e21b5 +2024-09-11 09:10:43.034981 2024-09-11 09:10:43.034991 comef 10135 R rec fbca593a-0e68-4b1b-b098-7e46bfcd1d7f +2024-09-11 09:10:43.084551 2024-09-11 09:10:43.084556 comef 10136 R rec 3f7853fb-a8c5-4b9c-83fc-cd72f4c04281 +2024-09-11 09:10:43.144807 2024-09-11 09:10:43.144817 comef 10137 R rec dcea1dd4-ddc9-4786-b2f0-244e0e8a8529 +2024-09-11 09:10:43.217557 2024-09-11 09:10:43.217561 comef 10138 R rec d40bf4b7-8859-4501-85ed-7733446db67b +2024-09-11 09:10:43.28264 2024-09-11 09:10:43.282652 comef 10139 R rec 7c3716cd-338d-4c81-b87e-f6bcba940e4a +2024-09-11 09:10:43.362445 2024-09-11 09:10:43.362456 comef 10140 R rec 72f382a0-a2be-4db4-958e-3084aaa1a1d6 +2024-09-11 09:10:43.432732 2024-09-11 09:10:43.432737 comef 10141 R rec 7b2f04cd-f683-4a04-a58b-d2b87f4dc925 +2024-09-11 09:10:43.500738 2024-09-11 09:10:43.500743 comef 10142 R rec bcd23461-5ba6-4e8a-968b-9a07732dbbc4 +2024-09-11 09:10:43.559426 2024-09-11 09:10:43.559431 comef 10143 R rec 79957613-2412-41cc-9e07-16daf507d653 +2024-09-11 09:10:43.620417 2024-09-11 09:10:43.620427 comef 10144 R rec 09cafa15-ac34-44b9-a3a0-48172759e345 +2024-09-11 09:10:43.69339 2024-09-11 09:10:43.693401 comef 10145 R rec b56d9ac3-f3ae-4a57-b990-c6ccf3855c78 +2024-09-11 09:10:43.758041 2024-09-11 09:10:43.758051 comef 10146 R rec d2eeaf44-e579-4645-adb7-ac012b0c97ca +2024-09-11 09:10:43.828384 2024-09-11 09:10:43.828394 comef 10147 R rec 3d717162-ce57-4085-977c-5b98d93fa9d3 +2024-09-11 09:10:43.903353 2024-09-11 09:10:43.903358 comef 10148 R rec 7e4bc9fe-8378-461a-834b-2db3f93b03d1 +2024-09-11 09:10:43.976628 2024-09-11 09:10:43.976639 comef 10149 R rec 40af0a54-39d4-4291-b4fb-0bc656d457c1 +2024-09-11 09:10:44.045927 2024-09-11 09:10:44.045933 comef 10150 R rec 0749e277-b885-495d-b77e-cd287b1dc65c +2024-09-11 09:10:44.094037 2024-09-11 09:10:44.094041 comef 10151 R rec d9196bbc-8228-4e53-8500-f7fbde5f82d3 +2024-09-11 09:10:44.148505 2024-09-11 09:10:44.148516 comef 10152 R rec 4341425e-4d48-479a-b695-04d0b7a0f6b3 +2024-09-11 09:10:44.216544 2024-09-11 09:10:44.216548 comef 10153 R rec 9109b67b-1e2c-4436-9309-87b3c13384e3 +2024-09-11 09:10:44.286593 2024-09-11 09:10:44.286603 comef 10154 R rec e218a465-cbc1-4ef4-9678-46bb3f0d64c4 +2024-09-11 09:10:44.368018 2024-09-11 09:10:44.368028 comef 10155 R rec 14e34c2d-4bc2-41f5-829f-27846b424c7b +2024-09-11 09:10:44.436312 2024-09-11 09:10:44.436321 comef 10156 R rec 160c9c56-35e0-4178-a27a-d3385ccbba80 +2024-09-11 09:10:44.516616 2024-09-11 09:10:44.516621 comef 10157 R rec db12ea61-9e7e-4c4d-978f-a61605ed696b +2024-09-11 09:10:44.57812 2024-09-11 09:10:44.578124 comef 10158 R rec 7800aa6a-aca6-4fc4-a33d-40fc0c542101 +2024-09-11 09:10:44.654557 2024-09-11 09:10:44.654567 comef 10159 R rec ce917f66-2962-4ac6-bbe1-0bf7c9d03d7d +2024-09-11 09:10:44.719402 2024-09-11 09:10:44.719406 comef 10160 R rec 1cf97328-a975-4a9b-af70-f3ed055c3086 +2024-09-11 09:10:44.777404 2024-09-11 09:10:44.777414 comef 10161 R rec 00bc063e-b5b1-4977-a502-43d1b311a4ae +2024-09-11 09:10:44.850621 2024-09-11 09:10:44.850631 comef 10162 R rec b69bfdac-5873-4c8b-951b-ac5b87dab3de +2024-09-11 09:10:44.920253 2024-09-11 09:10:44.920263 comef 10163 R rec 541a4d68-7a02-4ec4-bdb8-64094385dcd2 +2024-09-11 09:10:44.989172 2024-09-11 09:10:44.989176 comef 10164 R rec 80828b2a-ba7c-4197-91c7-d1631f53ee7a +2024-09-11 09:10:45.053034 2024-09-11 09:10:45.053038 comef 10165 R rec e8710945-3a4b-42ed-9b53-8ee76ac6844e +2024-09-11 09:10:45.108479 2024-09-11 09:10:45.108484 comef 10166 R rec 3d803da3-ecc3-40a1-b62e-f5f113fe99f4 +2024-09-11 09:10:45.163094 2024-09-11 09:10:45.163098 comef 10167 R rec d81e175c-b32c-4097-8028-3aa6171866c4 +2024-09-11 09:10:45.221091 2024-09-11 09:10:45.221095 comef 10168 R rec b7f02078-bcc9-4e49-a5db-af6647ac454e +2024-09-11 09:10:45.289612 2024-09-11 09:10:45.289617 comef 10169 R rec 823387a9-5697-4ed7-8571-85dcf244d0d0 +2024-09-11 09:10:45.366685 2024-09-11 09:10:45.36669 comef 10170 R rec 7aafa5af-2759-46fd-9830-5cb8627337e9 +2024-09-11 09:10:45.436767 2024-09-11 09:10:45.436772 comef 10171 R rec d1d03aeb-90bf-4d53-aa3b-931e431e80b9 +2024-09-11 09:10:45.495626 2024-09-11 09:10:45.49563 comef 10172 R rec 89e71d8e-03d3-4dcd-a663-0dbe3c12b546 +2024-09-11 09:10:45.554973 2024-09-11 09:10:45.554977 comef 10173 R rec 0588c83e-45c3-4e1f-841f-583a675a91c2 +2024-09-11 09:10:45.603202 2024-09-11 09:10:45.603206 comef 10174 R rec 189d3bde-623b-4f70-8827-d63b26779256 +2024-09-11 09:10:45.669012 2024-09-11 09:10:45.669023 comef 10175 R rec d7768d17-e986-4884-8391-b74ba1665c12 +2024-09-11 09:10:45.727804 2024-09-11 09:10:45.727809 comef 10176 R rec 7972a0db-597e-4e2d-8fa8-13ba1bac5bf2 +2024-09-11 09:10:45.787491 2024-09-11 09:10:45.7875 comef 10177 R rec 7b4c0833-6be7-4f92-b922-e035c37baa0a +2024-09-11 09:10:45.863369 2024-09-11 09:10:45.863373 comef 10178 R rec b75d7210-c99c-4208-b4ac-9de67770e8b5 +2024-09-11 09:10:45.924627 2024-09-11 09:10:45.924632 comef 10179 R rec e56acbf1-b755-4360-b8c1-af5658366e44 +2024-09-11 09:10:45.993032 2024-09-11 09:10:45.993037 comef 10180 R rec c376960f-d30d-4c89-bd4a-10e360924d9f +2024-09-11 09:10:46.042552 2024-09-11 09:10:46.042558 comef 10181 R rec 382dae94-39fc-4e53-a3e1-eff90153cb86 +2024-09-11 09:10:46.092182 2024-09-11 09:10:46.092187 comef 10182 R rec bb7a7680-b6be-4060-9f26-420d0855a9ed +2024-09-11 09:10:46.142733 2024-09-11 09:10:46.142737 comef 10183 R rec dd7da58b-a28a-4f99-a058-415e8269a52c +2024-09-11 09:10:46.238633 2024-09-11 09:10:46.238643 comef 10184 R rec 4b78b4e7-64bf-47b6-8db6-eff0ea739ba2 +2024-09-11 09:10:46.311683 2024-09-11 09:10:46.311689 comef 10185 R rec f97edccb-668a-49f5-b21d-45dd65149eb0 +2024-09-11 09:10:46.378118 2024-09-11 09:10:46.378129 comef 10186 R rec 94811b97-ed79-4092-a81e-06971a4c5fb5 +2024-09-11 09:10:46.450249 2024-09-11 09:10:46.450259 comef 10187 R rec bbfe669f-2100-46fa-8e5b-376fd1f68f6b +2024-09-11 09:10:46.526296 2024-09-11 09:10:46.526308 comef 10188 R rec 5f1664de-6923-46f6-b1d4-d5728a38e591 +2024-09-11 09:10:46.583166 2024-09-11 09:10:46.58317 comef 10189 R rec 6cf211d8-ddf8-4824-aa39-7ed91520e878 +2024-09-11 09:10:46.646114 2024-09-11 09:10:46.646121 comef 10190 R rec d9699754-6402-4663-8a8b-66ff3d29d3c3 +2024-09-11 09:10:46.698465 2024-09-11 09:10:46.698469 comef 10191 R rec c6d601ba-1117-4c85-8fc4-40d483c50000 +2024-09-11 09:10:46.74724 2024-09-11 09:10:46.747245 comef 10192 R rec 08cbef68-88e0-4366-8262-cc3f1f64d4b0 +2024-09-11 09:10:46.794902 2024-09-11 09:10:46.794907 comef 10193 R rec e6c53969-d344-454e-bec1-60339d71406c +2024-09-11 09:10:46.844083 2024-09-11 09:10:46.844087 comef 10194 R rec 9cba4243-18fc-4e8e-ba02-d17b6295894f +2024-09-11 09:10:46.899635 2024-09-11 09:10:46.89964 comef 10195 R rec 03847d43-a171-4b81-a2e2-40c89d0e4987 +2024-09-11 09:10:46.950371 2024-09-11 09:10:46.950375 comef 10196 R rec 31b6deb2-dac5-4ecb-9a07-64a274334bb4 +2024-09-11 09:10:46.999136 2024-09-11 09:10:46.999141 comef 10197 R rec b4e1450f-6923-4c1b-8071-a66026a530f8 +2024-09-11 09:10:47.052128 2024-09-11 09:10:47.052132 comef 10198 R rec efa9ab24-98bd-457f-9035-ec335291c9b2 +2024-09-11 09:10:47.104041 2024-09-11 09:10:47.104045 comef 10199 R rec 31a03ce4-db72-432e-9e76-0e5d73b1d3f8 +2024-09-11 09:10:47.154996 2024-09-11 09:10:47.155 comef 10200 R rec 82b20169-8d89-4700-93d1-2e10805320f3 +2024-09-11 09:10:47.214195 2024-09-11 09:10:47.214201 comef 10201 R rec d5058f45-b1d7-474b-bf98-09018ff2622b +2024-09-11 09:10:47.2694 2024-09-11 09:10:47.269404 comef 10202 R rec 1176c806-35f6-4cb5-a21b-4c0ef0978edc +2024-09-11 09:10:47.32386 2024-09-11 09:10:47.323864 comef 10203 R rec a418e3ec-6623-42e8-b35e-279ea7ae58b5 +2024-09-11 09:10:47.389778 2024-09-11 09:10:47.38979 comef 10204 R rec e2958162-6a85-4880-adfa-8a0b8178985f +2024-09-11 09:10:47.472197 2024-09-11 09:10:47.472207 comef 10205 R rec abe6620a-7bee-4284-9da4-7c4e5daf987c +2024-09-11 09:10:47.538494 2024-09-11 09:10:47.5385 comef 10206 R rec 27d61335-9b03-4561-823c-0dac8e0d09fc +2024-09-11 09:10:47.600132 2024-09-11 09:10:47.600142 comef 10207 R rec 48659afa-d79c-4054-8a06-808f64e7ed04 +2024-09-11 09:10:47.671934 2024-09-11 09:10:47.671945 comef 10208 R rec 8d9d4463-c36a-4697-8e20-f14452aa9faf +2024-09-11 09:10:47.741068 2024-09-11 09:10:47.741073 comef 10209 R rec 1d9f905d-de38-4a5f-8c91-a7ebcca0e91a +2024-09-11 09:10:47.809598 2024-09-11 09:10:47.809609 comef 10210 R rec 1645f5eb-5b2c-4322-af32-20722a4a2e1d +2024-09-11 09:10:47.874448 2024-09-11 09:10:47.874453 comef 10211 R rec b8c0ad1c-560d-4bbb-a7f4-e93912f509ff +2024-09-11 09:10:47.943925 2024-09-11 09:10:47.943935 comef 10212 R rec 37a16c04-cfc3-4b70-8611-fa0ee5c69a61 +2024-09-11 09:10:48.020159 2024-09-11 09:10:48.020165 comef 10213 R rec 0f7d3bfb-c226-414e-91ba-982277437c0e +2024-09-11 09:10:48.075399 2024-09-11 09:10:48.075405 comef 10214 R rec ab3992c1-0d27-408d-a6c3-bcdbe02cbd9b +2024-09-11 09:10:48.139827 2024-09-11 09:10:48.139836 comef 10215 R rec 18ededfa-b1c2-4f17-af4d-37acce3acd38 +2024-09-11 09:10:48.214751 2024-09-11 09:10:48.214758 comef 10216 R rec 4d9acf18-8bdc-4163-ad60-0d1eea2841a3 +2024-09-11 09:10:50.320395 2024-09-11 09:10:50.3204 plmef 10217 R rec f0fa866e-e2fe-43d8-8b10-d211f393fcc6 +2024-09-11 09:10:50.383114 2024-09-11 09:10:50.383119 plmef 10218 R rec ac077780-9d60-4139-8283-29f7a1d4b4b2 +2024-09-11 09:10:50.427555 2024-09-11 09:10:50.42756 plmef 10219 R rec db1f8eaa-c3a3-44e1-b6a9-3cd2bc853dad +2024-09-11 09:10:50.469658 2024-09-11 09:10:50.469663 plmef 10220 R rec 461642f6-e288-4ac4-9611-77d875200b3f +2024-09-11 09:10:50.523775 2024-09-11 09:10:50.52378 plmef 10221 R rec 406dbc5c-ae49-403f-bdca-3fc8ac0e38b7 +2024-09-11 09:10:50.571721 2024-09-11 09:10:50.571726 plmef 10222 R rec 666b0fce-e96d-450f-8b35-140b3d493114 +2024-09-11 09:10:50.626818 2024-09-11 09:10:50.626824 plmef 10223 R rec c846fc0c-7b7b-419e-ab89-3711999c2492 +2024-09-11 09:10:50.66813 2024-09-11 09:10:50.668135 plmef 10224 R rec d1961e4d-b55e-4eb7-8218-7b46b1ef2521 +2024-09-11 09:10:50.71065 2024-09-11 09:10:50.710655 plmef 10225 R rec c59dfa39-9de3-4221-9dcf-d5937d64ae22 +2024-09-11 09:10:50.752959 2024-09-11 09:10:50.752964 plmef 10226 R rec 712c2143-e309-488a-86b6-1b08ec2cab12 +2024-09-11 09:10:50.794843 2024-09-11 09:10:50.794849 plmef 10227 R rec 78fd6349-e5b4-4024-a688-9981cf6e2a54 +2024-09-11 09:10:50.851803 2024-09-11 09:10:50.851808 plmef 10228 R rec 9252d3a4-8ac3-4e47-bc89-116dce61413d +2024-09-11 09:10:50.908568 2024-09-11 09:10:50.908579 plmef 10229 R rec 12638eae-e101-4fe9-a6ce-3ce2d3554bed +2024-09-11 09:10:50.969109 2024-09-11 09:10:50.969118 plmef 10230 R rec 4ae5e057-2a1a-4f85-ba45-9582c008df8d +2024-09-11 09:10:51.033441 2024-09-11 09:10:51.03345 plmef 10231 R rec 2ddfcbb0-8a23-4569-bbd5-89961446185e +2024-09-11 09:10:51.08472 2024-09-11 09:10:51.084725 plmef 10232 R rec 24216b06-0ee9-43a4-9c90-71faee3e9c05 +2024-09-11 09:10:51.135134 2024-09-11 09:10:51.135143 plmef 10233 R rec e1431980-c680-4ad4-a22e-5e4224b203ca +2024-09-11 09:10:51.201279 2024-09-11 09:10:51.20129 plmef 10234 R rec 609cffdd-2b6e-4a81-a493-a162507df70e +2024-09-11 09:10:51.257755 2024-09-11 09:10:51.257761 plmef 10235 R rec 4b4863b7-b09f-4287-a6d8-b6395142764d +2024-09-11 09:10:51.317706 2024-09-11 09:10:51.317715 plmef 10236 R rec b9e57404-70af-4634-8e87-2ff9d594edf1 +2024-09-11 09:10:51.377117 2024-09-11 09:10:51.377127 plmef 10237 R rec 55fd4d98-d716-4e86-aa70-5241ffc19832 +2024-09-11 09:10:51.452329 2024-09-11 09:10:51.452339 plmef 10238 R rec 5cd75fbf-fa48-45f4-9142-b9a3d8499c32 +2024-09-11 09:10:51.522837 2024-09-11 09:10:51.522843 plmef 10239 R rec ed34bfe1-15f0-473b-8f5a-9d1a477d9562 +2024-09-11 09:10:51.566822 2024-09-11 09:10:51.566827 plmef 10240 R rec 010b77f0-2b5a-4c6c-a364-c4757dd9b931 +2024-09-11 09:10:51.613016 2024-09-11 09:10:51.613022 plmef 10241 R rec 2362def3-87c3-45de-94fd-541c5c0f5215 +2024-09-11 09:10:51.672377 2024-09-11 09:10:51.672387 plmef 10242 R rec 61c7fa89-5849-404f-99ba-29256ed87cdf +2024-09-11 09:10:51.73203 2024-09-11 09:10:51.732041 plmef 10243 R rec 1a14f1b9-dc4d-4000-bda0-9c0afd582add +2024-09-11 09:10:51.78119 2024-09-11 09:10:51.781196 plmef 10244 R rec a53cf922-544f-4902-aa93-8116d95c51c3 +2024-09-11 09:10:51.856901 2024-09-11 09:10:51.856907 plmef 10245 R rec 47d9d338-ce7c-4c98-b230-82bdf4a42873 +2024-09-11 09:10:51.919426 2024-09-11 09:10:51.919436 plmef 10246 R rec 383fba6d-16f1-4b0b-bd06-07b50ebd2583 +2024-09-11 09:10:51.982725 2024-09-11 09:10:51.982736 plmef 10247 R rec 3907c869-a355-4fe3-9436-7b2e8cca6a2c +2024-09-11 09:10:52.055287 2024-09-11 09:10:52.055294 plmef 10248 R rec 4b39c52f-5d3f-4348-9ef2-b29f62245439 +2024-09-11 09:10:52.123514 2024-09-11 09:10:52.123523 plmef 10249 R rec dc5094f1-63ec-4a5c-9f11-178e0d8d10f2 +2024-09-11 09:10:52.182234 2024-09-11 09:10:52.182244 plmef 10250 R rec a9f694c0-179a-4666-856a-ff44faa2fd90 +2024-09-11 09:10:52.237263 2024-09-11 09:10:52.237268 plmef 10251 R rec d36987c4-365e-4421-a1be-f02d0f355857 +2024-09-11 09:10:52.29756 2024-09-11 09:10:52.29757 plmef 10252 R rec ee05f35e-06e8-4a67-8abe-53a4f041e515 +2024-09-11 09:10:52.367468 2024-09-11 09:10:52.367479 plmef 10253 R rec 630129d4-3878-45cd-b87e-67ff1841c645 +2024-09-11 09:10:52.42912 2024-09-11 09:10:52.429131 plmef 10254 R rec 9fa81e45-d69a-4fa4-afb4-95275a829277 +2024-09-11 09:10:52.50096 2024-09-11 09:10:52.500965 plmef 10255 R rec 43757ced-76de-4b46-9395-300053d5d2c0 +2024-09-11 09:10:52.564222 2024-09-11 09:10:52.564227 plmef 10256 R rec 61d7ff3c-55da-423a-b2e3-18b51f821345 +2024-09-11 09:10:52.614353 2024-09-11 09:10:52.614363 plmef 10257 R rec 40e6f0a9-7ff3-40aa-a383-9be551814ab2 +2024-09-11 09:10:52.682762 2024-09-11 09:10:52.682773 plmef 10258 R rec 80790f49-e7ce-4e3a-8de0-9124d4769020 +2024-09-11 09:10:52.737194 2024-09-11 09:10:52.737199 plmef 10259 R rec 21357f7e-f06b-4faf-95fa-f5e85423f8e3 +2024-09-11 09:10:52.788201 2024-09-11 09:10:52.788205 plmef 10260 R rec 74eb9b27-16f2-41b1-b457-ca483eed246b +2024-09-11 09:10:52.841378 2024-09-11 09:10:52.841383 plmef 10261 R rec 8eadf9f2-8bb1-41e7-9a82-4f39a75d5d5b +2024-09-11 09:10:52.900848 2024-09-11 09:10:52.900857 plmef 10262 R rec 72642019-ca40-41b1-be86-3231a7728d7c +2024-09-11 09:10:52.960966 2024-09-11 09:10:52.960975 plmef 10263 R rec 48a2680f-0c32-4180-866b-55c393d4539d +2024-09-11 09:10:53.02542 2024-09-11 09:10:53.025431 plmef 10264 R rec a24a5dd5-0de3-4226-9b2c-b5714603450e +2024-09-11 09:10:53.081476 2024-09-11 09:10:53.081482 plmef 10265 R rec 95dea0dd-e5f7-4b2f-aebc-63ccdf3d1d55 +2024-09-11 09:10:53.134179 2024-09-11 09:10:53.134188 plmef 10266 R rec 0c543b99-123d-455a-a0e8-3544758ff8b4 +2024-09-11 09:10:53.20814 2024-09-11 09:10:53.20815 plmef 10267 R rec fa6a52df-3edc-4a5b-a8cc-724cb0123978 +2024-09-11 09:10:53.283899 2024-09-11 09:10:53.283909 plmef 10268 R rec d915470e-f600-4413-af55-2dacb60f7307 +2024-09-11 09:10:53.345791 2024-09-11 09:10:53.345802 plmef 10269 R rec 303f2893-57d3-46ef-baec-241e31083a6d +2024-09-11 09:10:53.398778 2024-09-11 09:10:53.398783 plmef 10270 R rec ecdfbe45-0ad9-4d98-babb-0d81910384a6 +2024-09-11 09:10:53.453639 2024-09-11 09:10:53.453645 plmef 10271 R rec 450c8cb0-de4d-4219-92b3-de27eca44551 +2024-09-11 09:10:53.514148 2024-09-11 09:10:53.514158 plmef 10272 R rec beb80507-03b7-4621-aa96-ccf8cc73aa7e +2024-09-11 09:10:53.577005 2024-09-11 09:10:53.577011 plmef 10273 R rec faa3b989-8b9b-4976-8081-8a9f21f39ce8 +2024-09-11 09:10:53.635654 2024-09-11 09:10:53.635664 plmef 10274 R rec ce322ca9-5919-4e8b-890b-639848355ef8 +2024-09-11 09:10:53.721489 2024-09-11 09:10:53.721494 plmef 10275 R rec 78c0febb-6e61-4993-b7e6-76cf697b9f83 +2024-09-11 09:10:53.778317 2024-09-11 09:10:53.778324 plmef 10276 R rec 93bb1d0d-ce77-4141-959a-64469ca6cf59 +2024-09-11 09:10:53.835249 2024-09-11 09:10:53.835254 plmef 10277 R rec 34eb82dc-73eb-468e-98da-fcdc57e467ff +2024-09-11 09:10:53.890634 2024-09-11 09:10:53.890644 plmef 10278 R rec 3903ac41-7788-40d4-9ae9-9e173ea64ebb +2024-09-11 09:10:53.951592 2024-09-11 09:10:53.951602 plmef 10279 R rec a36e3178-f7fd-412d-8154-7189745fc0f1 +2024-09-11 09:10:54.013165 2024-09-11 09:10:54.01317 plmef 10280 R rec 4c05ee96-82a9-48af-af58-52787eef0d54 +2024-09-11 09:10:54.073259 2024-09-11 09:10:54.073264 plmef 10281 R rec 7ca9b055-a73c-4288-a299-ec0cbff2ce77 +2024-09-11 09:10:54.133254 2024-09-11 09:10:54.133263 plmef 10282 R rec 68632e21-e242-4f93-8b43-168db3409f0e +2024-09-11 09:10:54.193786 2024-09-11 09:10:54.193796 plmef 10283 R rec a809230f-df2c-4be6-b6cb-75686b5bef63 +2024-09-11 09:10:54.249322 2024-09-11 09:10:54.249332 plmef 10284 R rec 87c1524b-cd0f-43bc-ab87-9f7485339416 +2024-09-11 09:10:54.316698 2024-09-11 09:10:54.316708 plmef 10285 R rec 82c30df4-08b4-4d4d-b381-dbcaf0b44c9c +2024-09-11 09:10:54.397193 2024-09-11 09:10:54.397203 plmef 10286 R rec db201a3f-ae16-4ba6-aa85-c8994a3f0357 +2024-09-11 09:10:54.46072 2024-09-11 09:10:54.46073 plmef 10287 R rec 73879717-6a30-463a-95da-f2afa898cbfe +2024-09-11 09:10:54.540413 2024-09-11 09:10:54.540424 plmef 10288 R rec 7ca5cde4-9073-4cd7-bc92-cf3461b57824 +2024-09-11 09:10:54.592476 2024-09-11 09:10:54.592482 plmef 10289 R rec 5636e1c2-8197-4122-9752-8bb0d9a6f689 +2024-09-11 09:10:54.650992 2024-09-11 09:10:54.650998 plmef 10290 R rec 743e6c4a-2908-44c9-83a8-636162416502 +2024-09-11 09:10:54.709474 2024-09-11 09:10:54.70948 plmef 10291 R rec 89265bc4-6f19-4ebd-9fdf-c0c76d22d628 +2024-09-11 09:10:54.772471 2024-09-11 09:10:54.772481 plmef 10292 R rec e7807a62-5dd5-4313-bca4-bb4e23ce497d +2024-09-11 09:10:54.836543 2024-09-11 09:10:54.836554 plmef 10293 R rec 37b6c3ac-3974-4169-85fb-75ed0a919b74 +2024-09-11 09:10:54.901524 2024-09-11 09:10:54.901536 plmef 10294 R rec 12112441-7793-4e59-816a-f817ee7666ea +2024-09-11 09:10:54.973349 2024-09-11 09:10:54.973355 plmef 10295 R rec 83a942ac-ff4d-47a3-b349-ccf7e6d3f1ec +2024-09-11 09:10:55.034183 2024-09-11 09:10:55.034194 plmef 10296 R rec 7bc6cf20-392d-4b3c-8288-23aeb473e3d2 +2024-09-11 09:10:55.100809 2024-09-11 09:10:55.10082 plmef 10297 R rec ee8a432e-3c60-4d01-b7cf-e9e9d49ce55a +2024-09-11 09:10:55.155398 2024-09-11 09:10:55.155402 plmef 10298 R rec b0eb177c-d704-47a7-ba2f-733e13106147 +2024-09-11 09:10:55.226168 2024-09-11 09:10:55.226174 plmef 10299 R rec d1b31f7a-cd71-48ee-994a-dc525e8c88dd +2024-09-11 09:10:55.287865 2024-09-11 09:10:55.287876 plmef 10300 R rec d3b47cff-9c70-443d-b541-9190d5039a2e +2024-09-11 09:10:55.363511 2024-09-11 09:10:55.363517 plmef 10301 R rec eef67fa7-9ace-45c7-9225-5d34b5d549f2 +2024-09-11 09:10:55.42996 2024-09-11 09:10:55.429971 plmef 10302 R rec 466c497c-1b36-4d34-95ff-c9ce796a4dc4 +2024-09-11 09:10:55.510553 2024-09-11 09:10:55.510563 plmef 10303 R rec 026830f5-4d88-4399-b438-eab7535612bf +2024-09-11 09:10:55.5673 2024-09-11 09:10:55.567306 plmef 10304 R rec d202517b-9dfb-46d7-9d8a-89f0ac19ce87 +2024-09-11 09:10:55.620735 2024-09-11 09:10:55.620746 plmef 10305 R rec e6125468-39da-45ec-9e47-4aef0a746dcb +2024-09-11 09:10:55.701163 2024-09-11 09:10:55.701174 plmef 10306 R rec cc04857b-e9a4-4dc4-a879-09b04c075f01 +2024-09-11 09:10:55.759975 2024-09-11 09:10:55.75999 plmef 10307 R rec a305e188-276c-4962-ad3e-14980ed2b28e +2024-09-11 09:10:55.831215 2024-09-11 09:10:55.831226 plmef 10308 R rec e9eec8fd-d045-4791-8921-2c114044ed56 +2024-09-11 09:10:55.895545 2024-09-11 09:10:55.895555 plmef 10309 R rec 466a05b7-ed1c-4dff-beb7-a3a32aea0e27 +2024-09-11 09:10:55.956805 2024-09-11 09:10:55.956818 plmef 10310 R rec bd4d6c88-bfe4-4ef0-bc7e-54984429c35b +2024-09-11 09:10:56.037167 2024-09-11 09:10:56.037172 plmef 10311 R rec e9cb2312-ab1b-49a8-acaf-edca9a3b186c +2024-09-11 09:10:56.093473 2024-09-11 09:10:56.093479 plmef 10312 R rec 8eccd719-7150-484a-890f-f7c4463ed037 +2024-09-11 09:10:56.15882 2024-09-11 09:10:56.158833 plmef 10313 R rec f52067ac-ba0b-4f70-b1a5-531097a446d2 +2024-09-11 09:10:56.227426 2024-09-11 09:10:56.227433 plmef 10314 R rec ff417e25-beec-4636-8b24-e7ace09639bd +2024-09-11 09:10:56.291264 2024-09-11 09:10:56.29127 plmef 10315 R rec 0cdf3201-2057-4191-925c-4e1633ed8cb1 +2024-09-11 09:10:56.356366 2024-09-11 09:10:56.356393 plmef 10316 R rec c372bdaf-433e-4992-b237-1b5c0e64a7a3 +2024-09-11 09:10:56.430464 2024-09-11 09:10:56.430476 plmef 10317 R rec 911c06ba-d6d5-4129-8994-67062038083d +2024-09-11 09:10:56.488365 2024-09-11 09:10:56.488378 plmef 10318 R rec 0716cbde-ffdc-46a3-b03f-c24c664109b0 +2024-09-11 09:10:56.551947 2024-09-11 09:10:56.551958 plmef 10319 R rec e04a097e-931c-4d1d-9a02-61b0fd996a4a +2024-09-11 09:10:56.612314 2024-09-11 09:10:56.612325 plmef 10320 R rec bb0eaa15-e229-41a8-b13e-d5d10cb61c68 +2024-09-11 09:10:56.680513 2024-09-11 09:10:56.680519 plmef 10321 R rec 5d739b16-bb18-4ee5-bb52-a0f22abffb7e +2024-09-11 09:10:56.745964 2024-09-11 09:10:56.74597 plmef 10322 R rec 5dba4f43-eb7b-48e8-9761-465707858fd1 +2024-09-11 09:10:56.810304 2024-09-11 09:10:56.810314 plmef 10323 R rec 09f3b488-58cb-40dd-9b3b-186b1b4968e4 +2024-09-11 09:10:56.883664 2024-09-11 09:10:56.883675 plmef 10324 R rec 749e3209-c759-4e3e-b894-3633768e10a8 +2024-09-11 09:10:56.951922 2024-09-11 09:10:56.951937 plmef 10325 R rec 402510d7-e740-4b8b-937c-2bd266850268 +2024-09-11 09:10:57.032416 2024-09-11 09:10:57.032427 plmef 10326 R rec 8d07c557-26f5-4b4e-a150-ce8087597217 +2024-09-11 09:10:57.0873 2024-09-11 09:10:57.087305 plmef 10327 R rec 4e44e63d-4428-434f-b33d-e91fd829542b +2024-09-11 09:10:57.145858 2024-09-11 09:10:57.145869 plmef 10328 R rec ce7676cc-6633-4fd5-af13-eee6a6eecbac +2024-09-11 09:10:57.215397 2024-09-11 09:10:57.215401 plmef 10329 R rec c299b186-d109-42cc-a4c0-1cea294ffea0 +2024-09-11 09:10:57.263369 2024-09-11 09:10:57.263374 plmef 10330 R rec 28c9a811-6dcf-4b4a-becd-356f25b5a9f7 +2024-09-11 09:10:57.329494 2024-09-11 09:10:57.329505 plmef 10331 R rec 2184f39d-f58c-43d8-9645-d91805e199e8 +2024-09-11 09:10:57.390173 2024-09-11 09:10:57.390183 plmef 10332 R rec 92944bef-9488-4d7b-884a-bdc368254fce +2024-09-11 09:10:57.456439 2024-09-11 09:10:57.456445 plmef 10333 R rec dfbe6494-32d7-44bf-8254-d027a01c4326 +2024-09-11 09:10:57.539132 2024-09-11 09:10:57.539142 plmef 10334 R rec e22fb5c7-e2a4-48fd-bd82-a3041bf14125 +2024-09-11 09:10:57.595535 2024-09-11 09:10:57.59554 plmef 10335 R rec 6575475d-1b4b-4460-8155-f84369e6f61a +2024-09-11 09:10:57.670456 2024-09-11 09:10:57.670483 plmef 10336 R rec a0818db9-cebd-4b61-85f7-5f2c76d98b02 +2024-09-11 09:10:57.732686 2024-09-11 09:10:57.732691 plmef 10337 R rec 40287aa8-b40a-43c1-8507-601e1750a3dd +2024-09-11 09:10:57.799459 2024-09-11 09:10:57.799468 plmef 10338 R rec 9c26b746-90d7-42b6-8f95-045e09d3005f +2024-09-11 09:10:57.858648 2024-09-11 09:10:57.858658 plmef 10339 R rec af36803b-6dac-41a9-8311-69c79ee7449e +2024-09-11 09:10:57.926342 2024-09-11 09:10:57.926351 plmef 10340 R rec 78a5b1ef-7b32-4d7d-ae34-9d3938af9ce4 +2024-09-11 09:10:57.988062 2024-09-11 09:10:57.988073 plmef 10341 R rec 117e7c5e-5eb5-4e14-a6e5-2f57e2144192 +2024-09-11 09:10:58.058087 2024-09-11 09:10:58.058093 plmef 10342 R rec eb54b5b2-7186-4ca2-8d0c-17a150468082 +2024-09-11 09:10:58.113859 2024-09-11 09:10:58.113871 plmef 10343 R rec df0fc2b1-63b1-49a8-afcc-214c4a15d6ae +2024-09-11 09:10:58.179579 2024-09-11 09:10:58.17959 plmef 10344 R rec 0a767375-be85-46d1-9617-e86f51b7e181 +2024-09-11 09:10:58.23854 2024-09-11 09:10:58.238545 plmef 10345 R rec cf519bd5-e623-4e6a-9e22-98726a5c41b3 +2024-09-11 09:10:58.312427 2024-09-11 09:10:58.312437 plmef 10346 R rec d66e53e2-0a1e-4c72-894f-9b52061f6ffb +2024-09-11 09:10:58.391436 2024-09-11 09:10:58.391448 plmef 10347 R rec 49c46e70-492b-45b3-9cfb-1fad4cdf306e +2024-09-11 09:10:58.456213 2024-09-11 09:10:58.456224 plmef 10348 R rec df582dc8-5c7f-499d-ac2b-9f4fdc1a88e1 +2024-09-11 09:10:58.523316 2024-09-11 09:10:58.523328 plmef 10349 R rec 9cc572e9-50b4-4f80-8590-28900d2550cf +2024-09-11 09:10:58.589185 2024-09-11 09:10:58.58919 plmef 10350 R rec 43e45e58-98fb-48c4-ac37-c30f08eb0065 +2024-09-11 09:10:58.657391 2024-09-11 09:10:58.657402 plmef 10351 R rec 5b19eb47-fd00-4144-b144-95caf16830a3 +2024-09-11 09:10:58.717092 2024-09-11 09:10:58.717097 plmef 10352 R rec d0ceb97a-c0dd-4bf2-beed-0235cb44f237 +2024-09-11 09:10:58.778294 2024-09-11 09:10:58.778305 plmef 10353 R rec 4c7bb73d-8512-4d8a-a51f-78d0a2ea73da +2024-09-11 09:10:58.868906 2024-09-11 09:10:58.868911 plmef 10354 R rec 0c7bc22d-c0ef-4030-b069-1a6d235f8dbd +2024-09-11 09:10:58.930801 2024-09-11 09:10:58.93081 plmef 10355 R rec 3f6ff911-57a2-46f1-972f-73a3bd46b199 +2024-09-11 09:10:59.013754 2024-09-11 09:10:59.01376 plmef 10356 R rec e5c1a1b0-8791-4715-9d5e-d0e85ca1c38b +2024-09-11 09:10:59.066758 2024-09-11 09:10:59.066764 plmef 10357 R rec 27f91903-c452-4321-b694-44db6b30c4b6 +2024-09-11 09:10:59.124004 2024-09-11 09:10:59.124015 plmef 10358 R rec 97a7e9b0-3bc2-4379-9246-0ef97f14d531 +2024-09-11 09:10:59.180021 2024-09-11 09:10:59.180031 plmef 10359 R rec 9948133a-e539-476f-a55f-ad9bd1398c19 +2024-09-11 09:10:59.234606 2024-09-11 09:10:59.234611 plmef 10360 R rec 2c42cb38-b3ed-4f38-bc74-f0474a925f6c +2024-09-11 09:10:59.298108 2024-09-11 09:10:59.298118 plmef 10361 R rec 64b984e9-254f-4cc9-87c8-888a1de8083a +2024-09-11 09:10:59.370209 2024-09-11 09:10:59.37022 plmef 10362 R rec 7934fa09-5066-4c97-b985-6e2e081dbae0 +2024-09-11 09:10:59.433364 2024-09-11 09:10:59.433376 plmef 10363 R rec e43927a0-3b0b-4460-ad59-bcb93fd64f25 +2024-09-11 09:10:59.496564 2024-09-11 09:10:59.496575 plmef 10364 R rec ff100ecc-9b5f-4b4b-898e-c8ff63b6a68f +2024-09-11 09:10:59.578418 2024-09-11 09:10:59.578424 plmef 10365 R rec 044b8508-168a-4bff-8d34-02cf3d434146 +2024-09-11 09:10:59.637172 2024-09-11 09:10:59.637182 plmef 10366 R rec 58e391b8-e56b-464f-979e-d7ee4d3d64e5 +2024-09-11 09:10:59.712325 2024-09-11 09:10:59.712331 plmef 10367 R rec ab712ab5-5032-4999-86cd-06d44d40b25f +2024-09-11 09:10:59.760039 2024-09-11 09:10:59.760045 plmef 10368 R rec 3db215c0-f5ec-4c8f-98cb-a5d61948a110 +2024-09-11 09:10:59.81827 2024-09-11 09:10:59.818274 plmef 10369 R rec 7f643bd8-606b-4c4e-992d-3eb72d1c6070 +2024-09-11 09:10:59.87863 2024-09-11 09:10:59.878636 plmef 10370 R rec 5718ca7a-9293-47b2-9e7a-f0ac9af73c65 +2024-09-11 09:10:59.942226 2024-09-11 09:10:59.942237 plmef 10371 R rec 74dd9d24-511f-4051-b532-16d416ad50cc +2024-09-11 09:11:00.015779 2024-09-11 09:11:00.015784 plmef 10372 R rec 9bb81914-759f-4cc8-a760-29ede9c9577d +2024-09-11 09:11:00.062478 2024-09-11 09:11:00.062488 plmef 10373 R rec 1c3ff62d-add8-47f0-b1e3-d07f816d0ef9 +2024-09-11 09:11:00.134424 2024-09-11 09:11:00.134434 plmef 10374 R rec 80073c9f-3ab9-4e9b-837c-b5c7b2a099dc +2024-09-11 09:11:00.205773 2024-09-11 09:11:00.205778 plmef 10375 R rec 5e5fed16-50c8-4d57-a1a3-cbebc48855eb +2024-09-11 09:11:00.25997 2024-09-11 09:11:00.259979 plmef 10376 R rec a550d065-7083-4543-9994-eabbde3eeb3b +2024-09-11 09:11:00.316645 2024-09-11 09:11:00.31665 plmef 10377 R rec 3fb3e658-a85a-49f0-b6c8-36fa118d49de +2024-09-11 09:11:00.364661 2024-09-11 09:11:00.364666 plmef 10378 R rec 8d3f9cf3-5e2c-4055-8ede-91627ad56fc4 +2024-09-11 09:11:00.409847 2024-09-11 09:11:00.409852 plmef 10379 R rec 4ec6597b-e477-4535-9f7d-628b460f595f +2024-09-11 09:11:00.454332 2024-09-11 09:11:00.454337 plmef 10380 R rec 0a0826e6-ada1-48a7-9aae-0f423b0298ce +2024-09-11 09:11:00.501007 2024-09-11 09:11:00.501016 plmef 10381 R rec 670b0ce8-f97f-47ab-8a85-d77ad6478ace +2024-09-11 09:11:00.56262 2024-09-11 09:11:00.562631 plmef 10382 R rec 1a5740ef-e2d9-4b68-b7da-ce1bf81ff12b +2024-09-11 09:11:00.621181 2024-09-11 09:11:00.621186 plmef 10383 R rec 06574fb6-ad30-48cb-a7bb-3943bf970592 +2024-09-11 09:11:00.698833 2024-09-11 09:11:00.698844 plmef 10384 R rec a2e4ea96-d09c-4151-8f4f-356fd92c2bea +2024-09-11 09:11:00.761281 2024-09-11 09:11:00.761286 plmef 10385 R rec e8fbfb9b-6b26-4a2a-bb5a-325920d80c7b +2024-09-11 09:11:00.821985 2024-09-11 09:11:00.821991 plmef 10386 R rec 1dd62dc8-205d-423e-85a4-e281937c750d +2024-09-11 09:11:00.879368 2024-09-11 09:11:00.879391 plmef 10387 R rec fbdd2826-18d4-452b-bd44-7916816e0bbb +2024-09-11 09:11:00.941426 2024-09-11 09:11:00.941432 plmef 10388 R rec 3506587c-2ea8-4d14-9947-101d99acda57 +2024-09-11 09:11:00.996761 2024-09-11 09:11:00.996772 plmef 10389 R rec 232d93ba-c1c0-4ab2-ad51-28524906eafb +2024-09-11 09:11:01.06355 2024-09-11 09:11:01.06356 plmef 10390 R rec aac28ae9-d3ed-4217-9d51-1be78278ac8e +2024-09-11 09:11:01.115817 2024-09-11 09:11:01.115828 plmef 10391 R rec b7b54b7d-af3b-4d09-9004-5a7cad307745 +2024-09-11 09:11:01.182641 2024-09-11 09:11:01.182651 plmef 10392 R rec 247b72be-4b10-4d47-8217-bcbc19c085b3 +2024-09-11 09:11:01.250075 2024-09-11 09:11:01.250085 plmef 10393 R rec bd0f61bb-5876-4152-bf78-e504366e202e +2024-09-11 09:11:01.315545 2024-09-11 09:11:01.315555 plmef 10394 R rec ba1c8fa4-7021-4928-ad2f-e29eb30e9c04 +2024-09-11 09:11:01.375439 2024-09-11 09:11:01.37545 plmef 10395 R rec 26997ae7-57cc-4b4c-ac14-aa56c897853b +2024-09-11 09:11:01.443314 2024-09-11 09:11:01.443325 plmef 10396 R rec a5e57323-3998-4476-96a6-202cbe710338 +2024-09-11 09:11:01.512018 2024-09-11 09:11:01.512151 plmef 10397 R rec ab061461-e280-4b35-bf02-c20ab0958e70 +2024-09-11 09:11:01.581024 2024-09-11 09:11:01.581029 plmef 10398 R rec e99803cd-f71e-454c-9654-91d91fb36de6 +2024-09-11 09:11:01.628209 2024-09-11 09:11:01.628214 plmef 10399 R rec 9afd037a-ddcc-433c-a357-0d9ea4297390 +2024-09-11 09:11:01.694995 2024-09-11 09:11:01.695006 plmef 10400 R rec c9bc95b6-4992-4f04-9ea7-94873cbf3a65 +2024-09-11 09:11:01.768331 2024-09-11 09:11:01.768341 plmef 10401 R rec ca521492-d960-404d-9eec-d184ed6239c6 +2024-09-11 09:11:01.841232 2024-09-11 09:11:01.841242 plmef 10402 R rec 2e5eebe5-b776-4941-920c-9640033bed79 +2024-09-11 09:11:01.919603 2024-09-11 09:11:01.919613 plmef 10403 R rec 60dc203f-1122-4a57-8f28-65d377c42288 +2024-09-11 09:11:01.996339 2024-09-11 09:11:01.99635 plmef 10404 R rec 1fd55023-b459-4850-b360-3bc637846364 +2024-09-11 09:11:02.071819 2024-09-11 09:11:02.071825 plmef 10405 R rec cfea5173-970c-4a04-8c80-f60d2b0cd0f2 +2024-09-11 09:11:02.135123 2024-09-11 09:11:02.135129 plmef 10406 R rec dbf01dee-7a34-486b-aedc-bea11a06fddf +2024-09-11 09:11:02.200063 2024-09-11 09:11:02.200072 plmef 10407 R rec efd51b48-d92d-4ed5-bfbf-191e61a2d812 +2024-09-11 09:11:02.260396 2024-09-11 09:11:02.260406 plmef 10408 R rec 8b74d121-f635-4154-91ae-8ddc58f0a6c9 +2024-09-11 09:11:02.321436 2024-09-11 09:11:02.321446 plmef 10409 R rec fc826bd6-0eaf-4c96-9724-39e1deb64914 +2024-09-11 09:11:02.387088 2024-09-11 09:11:02.387093 plmef 10410 R rec 8ea1e609-070f-49d3-9021-33a176d38f98 +2024-09-11 09:11:02.451772 2024-09-11 09:11:02.451778 plmef 10411 R rec 73f8faf1-ec0e-4146-9b3f-166e31b189dc +2024-09-11 09:11:02.52403 2024-09-11 09:11:02.52404 plmef 10412 R rec e70af394-4f68-48a9-a6f9-e07f65af9d9e +2024-09-11 09:11:02.586316 2024-09-11 09:11:02.58632 plmef 10413 R rec 317d338a-42af-4e46-b25e-b54e69545628 +2024-09-11 09:11:02.645625 2024-09-11 09:11:02.64563 plmef 10414 R rec 8a27f5d9-708e-451e-af72-af4b249e082c +2024-09-11 09:11:02.705154 2024-09-11 09:11:02.705165 plmef 10415 R rec 12897292-ea33-4b24-9e6e-99776d4609d7 +2024-09-11 09:11:02.762615 2024-09-11 09:11:02.762625 plmef 10416 R rec 345f4bc8-e1a3-4344-9ea0-e32e43baf0c2 +2024-09-11 09:11:02.832458 2024-09-11 09:11:02.832467 plmef 10417 R rec 70202833-cfc1-4364-9502-fcda9496ba5c +2024-09-11 09:11:02.903672 2024-09-11 09:11:02.903677 plmef 10418 R rec 7f23305c-9b0c-44d9-9c3f-3896c64a7ed7 +2024-09-11 09:11:02.964644 2024-09-11 09:11:02.964655 plmef 10419 R rec 5cfa974d-8eec-4677-8a3b-90b4d34b3c09 +2024-09-11 09:11:03.045361 2024-09-11 09:11:03.045372 plmef 10420 R rec f3617ab3-6645-4728-9756-0d4d256757b5 +2024-09-11 09:11:03.099697 2024-09-11 09:11:03.099701 plmef 10421 R rec 8c66bfff-16d4-4659-9e8b-695eefccdfc3 +2024-09-11 09:11:03.158473 2024-09-11 09:11:03.158484 plmef 10422 R rec a51e1ddb-1fca-46fd-a9c8-e7f4be97372b +2024-09-11 09:11:03.233966 2024-09-11 09:11:03.233976 plmef 10423 R rec ae32935b-72c1-41c2-b3e9-fa2d600a4412 +2024-09-11 09:11:03.294673 2024-09-11 09:11:03.294684 plmef 10424 R rec 809c9b8d-e9ec-48a9-b27e-4bd84bab3a57 +2024-09-11 09:11:03.351588 2024-09-11 09:11:03.351598 plmef 10425 R rec 847f9bd2-89d3-4929-a0b9-b277d7febb25 +2024-09-11 09:11:03.418117 2024-09-11 09:11:03.418127 plmef 10426 R rec 80fc791f-19a8-448a-b79c-373b9561b172 +2024-09-11 09:11:03.483321 2024-09-11 09:11:03.483331 plmef 10427 R rec 9c6f7bf5-cb0d-4fa5-ae77-c75374c9c165 +2024-09-11 09:11:03.548063 2024-09-11 09:11:03.548069 plmef 10428 R rec 08136d5f-3a28-4ffa-a492-7e658553bdc6 +2024-09-11 09:11:03.600699 2024-09-11 09:11:03.600703 plmef 10429 R rec dd1d1b51-542f-4f91-ac35-9de2c45efda8 +2024-09-11 09:11:03.649878 2024-09-11 09:11:03.649883 plmef 10430 R rec 3b222d54-8e43-481a-96b6-0baee921d5e5 +2024-09-11 09:11:03.706043 2024-09-11 09:11:03.706048 plmef 10431 R rec b40d4ca8-6db6-46a6-8bb3-8b1a26f53305 +2024-09-11 09:11:03.75399 2024-09-11 09:11:03.753994 plmef 10432 R rec 42c34dde-5653-474b-8b7c-ceaa015412ae +2024-09-11 09:11:03.808688 2024-09-11 09:11:03.808697 plmef 10433 R rec 9915cbf6-e017-42fc-ad5c-30c8347ed3b4 +2024-09-11 09:11:03.875739 2024-09-11 09:11:03.87575 plmef 10434 R rec 82bbedbb-0ebf-4823-ad6d-cac32c01a4e9 +2024-09-11 09:11:03.940966 2024-09-11 09:11:03.940976 plmef 10435 R rec 9a2e9d3b-42f1-479b-a020-54f1af190cc2 +2024-09-11 09:11:04.008276 2024-09-11 09:11:04.008281 plmef 10436 R rec dae03935-cdfc-4c7d-a16f-ada66f6e58ba +2024-09-11 09:11:04.077851 2024-09-11 09:11:04.077857 plmef 10437 R rec ad491ea7-e72e-4707-88ce-e5cd9e132a1b +2024-09-11 09:11:04.128834 2024-09-11 09:11:04.128839 plmef 10438 R rec bf03ef41-6d39-4a1d-99ce-3a7d395eb368 +2024-09-11 09:11:04.18967 2024-09-11 09:11:04.189683 plmef 10439 R rec 71ad593e-b570-409e-9672-bf7522803436 +2024-09-11 09:11:04.250071 2024-09-11 09:11:04.250076 plmef 10440 R rec 3a0a3833-5778-4cb5-a2a4-ad6c370ada48 +2024-09-11 09:11:04.317978 2024-09-11 09:11:04.317989 plmef 10441 R rec 7b6930cc-c9ca-4ea3-a469-eb5caab5655f +2024-09-11 09:11:04.395265 2024-09-11 09:11:04.395275 plmef 10442 R rec 99a1e66c-bd33-4805-9dde-21f8d94fd744 +2024-09-11 09:11:04.455792 2024-09-11 09:11:04.455798 plmef 10443 R rec 03118099-7cf7-4ac0-ad17-61f2a02bb5e7 +2024-09-11 09:11:04.515592 2024-09-11 09:11:04.515603 plmef 10444 R rec 39338484-f475-4ab8-b007-e395e03b3ecb +2024-09-11 09:11:04.580261 2024-09-11 09:11:04.580267 plmef 10445 R rec 2407021c-bfa2-4a51-b451-4d28acbb0f50 +2024-09-11 09:11:04.634083 2024-09-11 09:11:04.634094 plmef 10446 R rec 1db1fec5-84e7-463d-a6d2-7f6bf8aa6632 +2024-09-11 09:11:04.698018 2024-09-11 09:11:04.698028 plmef 10447 R rec 9e6a71a5-2d4a-4636-9581-ed39ace553ab +2024-09-11 09:11:04.749752 2024-09-11 09:11:04.749757 plmef 10448 R rec e4749638-1a80-4531-a740-96342b75b293 +2024-09-11 09:11:04.815269 2024-09-11 09:11:04.815279 plmef 10449 R rec 024cb0b6-7eb4-4271-bc26-d5c55e685fda +2024-09-11 09:11:04.87256 2024-09-11 09:11:04.872565 plmef 10450 R rec 18f25a31-271e-4e4e-a02d-d7188772b7ec +2024-09-11 09:11:04.931908 2024-09-11 09:11:04.931917 plmef 10451 R rec c1d468ed-bb96-4aac-9b79-976a05f5340f +2024-09-11 09:11:05.0051 2024-09-11 09:11:05.00511 plmef 10452 R rec 3aae10f9-42f2-4374-9bee-5457a6651f19 +2024-09-11 09:11:05.080748 2024-09-11 09:11:05.080753 plmef 10453 R rec f27f6299-6618-4625-bcd0-ee578468ef9a +2024-09-11 09:11:05.132968 2024-09-11 09:11:05.132976 plmef 10454 R rec c21006d5-f423-480d-b232-298258c73522 +2024-09-11 09:11:05.198235 2024-09-11 09:11:05.198246 plmef 10455 R rec 92fbb4cb-ad62-4327-849b-4f625c7d8db3 +2024-09-11 09:11:05.249968 2024-09-11 09:11:05.249973 plmef 10456 R rec 9bb4cf40-86ac-4741-92b4-1fe8846187be +2024-09-11 09:11:05.30792 2024-09-11 09:11:05.307931 plmef 10457 R rec 3c93ffdc-f39e-4621-bf4d-6d680f8c7b41 +2024-09-11 09:11:05.368258 2024-09-11 09:11:05.368266 plmef 10458 R rec d3f02c48-af1e-4516-a854-d8031ad98989 +2024-09-11 09:11:05.427338 2024-09-11 09:11:05.427348 plmef 10459 R rec 6bf1cfba-a019-4716-91c7-b9e5d95a48d0 +2024-09-11 09:11:05.495242 2024-09-11 09:11:05.495252 plmef 10460 R rec 27f29f42-9174-4dc0-8cd8-3af5c63107bf +2024-09-11 09:11:05.565682 2024-09-11 09:11:05.565688 plmef 10461 R rec cf631cd8-c916-4533-bbf3-462f1563320c +2024-09-11 09:11:05.649273 2024-09-11 09:11:05.649284 plmef 10462 R rec 5217eb2a-b635-4228-87f3-d312ba6bec68 +2024-09-11 09:11:05.725549 2024-09-11 09:11:05.725558 plmef 10463 R rec 50edbfa0-17ac-405c-bcca-a626f3a7ead2 +2024-09-11 09:11:05.801312 2024-09-11 09:11:05.801323 plmef 10464 R rec 22ea057f-88be-45de-8c96-c11663726739 +2024-09-11 09:11:05.878776 2024-09-11 09:11:05.878786 plmef 10465 R rec 8460e1d4-eea1-44a9-bf1d-5a5248c6d5a7 +2024-09-11 09:11:05.957827 2024-09-11 09:11:05.957831 plmef 10466 R rec 58be8c30-9212-49aa-8219-50079d09b166 +2024-09-11 09:11:06.021915 2024-09-11 09:11:06.02192 plmef 10467 R rec fcd06f40-4b7d-4a99-a352-4e84157d92ca +2024-09-11 09:11:06.082644 2024-09-11 09:11:06.082649 plmef 10468 R rec 5635a1bc-b511-40ea-8a20-27130edd0fd6 +2024-09-11 09:11:06.156981 2024-09-11 09:11:06.156991 plmef 10469 R rec d45f56c8-98b9-4f18-b6c1-87cdb66739d4 +2024-09-11 09:11:06.231464 2024-09-11 09:11:06.231469 plmef 10470 R rec 30a0cd4c-38e6-4df7-894f-7e007816336e +2024-09-11 09:11:06.289973 2024-09-11 09:11:06.289979 plmef 10471 R rec 4e7453b0-4d60-4b23-957f-1c1605d4b710 +2024-09-11 09:11:06.352351 2024-09-11 09:11:06.352362 plmef 10472 R rec 65ce0b44-c5b2-4579-bae3-02ed4a1bcc75 +2024-09-11 09:11:06.417139 2024-09-11 09:11:06.417149 plmef 10473 R rec 73335d00-1c91-49d9-b16a-f21b7215fbb8 +2024-09-11 09:11:06.481918 2024-09-11 09:11:06.481928 plmef 10474 R rec d9d030f2-dc28-4773-8dad-a3bb93236c7c +2024-09-11 09:11:06.539521 2024-09-11 09:11:06.539529 plmef 10475 R rec 5261ad2d-aac6-44a3-aa60-175dc6df6ebf +2024-09-11 09:11:06.599401 2024-09-11 09:11:06.599406 plmef 10476 R rec 42e38ad0-8d56-4c2b-a52f-04b630aa769d +2024-09-11 09:11:06.661553 2024-09-11 09:11:06.661564 plmef 10477 R rec f4e9d22b-e436-4724-83b9-ea39bd158c6b +2024-09-11 09:11:06.733289 2024-09-11 09:11:06.733299 plmef 10478 R rec 6fafe15f-7b9e-4551-9358-16126710204e +2024-09-11 09:11:06.792413 2024-09-11 09:11:06.792424 plmef 10479 R rec 2e45555c-d9a7-4a28-9717-e5a2d3658fdf +2024-09-11 09:11:06.858179 2024-09-11 09:11:06.858189 plmef 10480 R rec 5c264512-f119-4887-b1b4-6fc9a5c473ef +2024-09-11 09:11:06.937733 2024-09-11 09:11:06.937743 plmef 10481 R rec 4f77d5a9-0eec-4b96-b404-0f2e4f235d91 +2024-09-11 09:11:07.01113 2024-09-11 09:11:07.011141 plmef 10482 R rec aa600bdf-7cdc-4f46-909a-2871203682e9 +2024-09-11 09:11:07.07678 2024-09-11 09:11:07.076786 plmef 10483 R rec cd930b2c-17ae-43dc-a7b0-30515323fd42 +2024-09-11 09:11:07.125467 2024-09-11 09:11:07.125473 plmef 10484 R rec bef7f825-8e37-49d0-9913-810f098afd7b +2024-09-11 09:11:07.180072 2024-09-11 09:11:07.180084 plmef 10485 R rec 7781e132-4de7-4ba6-8fca-033eae1028e9 +2024-09-11 09:11:07.241134 2024-09-11 09:11:07.241145 plmef 10486 R rec 7249f834-318d-40ac-a7b6-1801619d3ec5 +2024-09-11 09:11:07.302021 2024-09-11 09:11:07.30203 plmef 10487 R rec d0872a35-8967-45ce-9872-24f0a291ec5b +2024-09-11 09:11:07.369209 2024-09-11 09:11:07.369219 plmef 10488 R rec ea4c4bb4-1cf3-4fd1-903e-5b47537128f4 +2024-09-11 09:11:07.432189 2024-09-11 09:11:07.432205 plmef 10489 R rec e4da48aa-e8dc-44b7-ae8c-155452f906e9 +2024-09-11 09:11:07.493512 2024-09-11 09:11:07.493523 plmef 10490 R rec de340018-8c4b-4945-80ed-e6a0e11fecbc +2024-09-11 09:11:07.550522 2024-09-11 09:11:07.550526 plmef 10491 R rec d3c370a5-94b7-4c6f-9f86-5f39977e33c0 +2024-09-11 09:11:07.601599 2024-09-11 09:11:07.601604 plmef 10492 R rec 0c82d192-f566-464d-8f93-475042731a8d +2024-09-11 09:11:07.647954 2024-09-11 09:11:07.64796 plmef 10493 R rec 73b09e12-6714-4d10-9bed-7336f7bd8fd5 +2024-09-11 09:11:07.754487 2024-09-11 09:11:07.754492 plmef 10494 R rec fce795fa-1b85-48bb-b24c-0677421cfa7e +2024-09-11 09:11:07.830567 2024-09-11 09:11:07.830577 plmef 10495 R rec b2b15435-308e-45b3-bd31-e0c2db33b09f +2024-09-11 09:11:07.892163 2024-09-11 09:11:07.892174 plmef 10496 R rec 4c002b40-d1cb-451d-b666-5be33f7c73b3 +2024-09-11 09:11:07.95113 2024-09-11 09:11:07.95114 plmef 10497 R rec 516c89fa-a32c-459b-ad98-b13d2615f25b +2024-09-11 09:11:08.023583 2024-09-11 09:11:08.023594 plmef 10498 R rec 2d74a62e-e5fe-4c2e-916c-b172489c89f7 +2024-09-11 09:11:08.085142 2024-09-11 09:11:08.085148 plmef 10499 R rec d7179ba4-65ca-4f52-b438-ff7ad0e545e6 +2024-09-11 09:11:08.138321 2024-09-11 09:11:08.138332 plmef 10500 R rec 41fb73e1-96e2-4228-a9d3-2fcc01474afa +2024-09-11 09:11:08.211307 2024-09-11 09:11:08.211313 plmef 10501 R rec 894bfa81-02ca-49be-a94c-1ab5709e4422 +2024-09-11 09:11:08.273001 2024-09-11 09:11:08.273011 plmef 10502 R rec 049bfd9c-2379-44cd-bfdc-768252a91234 +2024-09-11 09:11:08.343425 2024-09-11 09:11:08.343435 plmef 10503 R rec ab00d2af-a8b2-4f19-a1ba-b12df34d5d33 +2024-09-11 09:11:08.40733 2024-09-11 09:11:08.40734 plmef 10504 R rec 4a146cc2-8cd3-4c9a-bd4a-8c2ab132478a +2024-09-11 09:11:08.480732 2024-09-11 09:11:08.480741 plmef 10505 R rec 40dc15e6-1394-45c8-b661-a9b806a40e09 +2024-09-11 09:11:08.55053 2024-09-11 09:11:08.55054 plmef 10506 R rec 07f90397-0407-49cf-973d-bfbf2d2b6dd7 +2024-09-11 09:11:08.606686 2024-09-11 09:11:08.606692 plmef 10507 R rec 3399638b-f477-4b28-b999-ac6c2a860221 +2024-09-11 09:11:08.660015 2024-09-11 09:11:08.660025 plmef 10508 R rec 70d68f5e-9ea5-4b58-80fb-c900953307ad +2024-09-11 09:11:08.720786 2024-09-11 09:11:08.720791 plmef 10509 R rec eec915f4-9577-4ee7-bbc8-b68b904a2299 +2024-09-11 09:11:08.780134 2024-09-11 09:11:08.780138 plmef 10510 R rec 397ba708-7236-4397-b1a1-16b03a79d5c5 +2024-09-11 09:11:08.839539 2024-09-11 09:11:08.839545 plmef 10511 R rec 20e3aa36-3b3a-4d5d-b427-2151da6494c0 +2024-09-11 09:11:08.904984 2024-09-11 09:11:08.904989 plmef 10512 R rec 7bb49d54-187e-4717-a315-03d4872512fb +2024-09-11 09:11:08.963185 2024-09-11 09:11:08.963195 plmef 10513 R rec 74ea6ae4-a6fa-4427-960b-020a4564d5aa +2024-09-11 09:11:09.03156 2024-09-11 09:11:09.031569 plmef 10514 R rec f71d2766-57b3-4f22-af7e-1afb267474c9 +2024-09-11 09:11:09.089591 2024-09-11 09:11:09.089596 plmef 10515 R rec 23607ea1-a45c-4f8b-b03a-ddfc065ae357 +2024-09-11 09:11:09.137848 2024-09-11 09:11:09.137852 plmef 10516 R rec 617bbc5e-599c-4faf-b8b8-ae25a628c338 +2024-09-11 09:11:09.191033 2024-09-11 09:11:09.191043 plmef 10517 R rec 5b81b754-6be5-446f-bc05-3e28a9a90eb9 +2024-09-11 09:11:09.244909 2024-09-11 09:11:09.244915 plmef 10518 R rec 8502abea-40ef-4d00-afe9-852640f59883 +2024-09-11 09:11:09.299641 2024-09-11 09:11:09.299651 plmef 10519 R rec 427d6613-f70b-4802-88f4-ef4cc180e4b5 +2024-09-11 09:11:09.363889 2024-09-11 09:11:09.363899 plmef 10520 R rec fa66f4a3-e8e9-429a-93d3-ccf4f982e4f5 +2024-09-11 09:11:09.433277 2024-09-11 09:11:09.433288 plmef 10521 R rec d27688ac-b48d-40e9-a525-daf512d12984 +2024-09-11 09:11:09.504459 2024-09-11 09:11:09.504471 plmef 10522 R rec 133a8c8c-d959-4743-a1da-15b7373fdeaa +2024-09-11 09:11:09.580064 2024-09-11 09:11:09.580076 plmef 10523 R rec 8316fcd3-926c-415f-94e7-78d85d937d23 +2024-09-11 09:11:09.629983 2024-09-11 09:11:09.629989 plmef 10524 R rec b1a84e32-9c55-478b-bff4-41dfdeb0992e +2024-09-11 09:11:09.690606 2024-09-11 09:11:09.690617 plmef 10525 R rec fdc9dac1-0acb-4a62-8a35-dbe807bc8c86 +2024-09-11 09:11:09.752532 2024-09-11 09:11:09.752544 plmef 10526 R rec a41c45b0-040e-46b3-8dbb-92bdd43c846d +2024-09-11 09:11:09.82015 2024-09-11 09:11:09.82016 plmef 10527 R rec 86d90c58-dfe2-4614-a11d-c684bc02c58a +2024-09-11 09:11:09.889889 2024-09-11 09:11:09.889899 plmef 10528 R rec 48580d2f-9fba-4403-8246-957ef3ae70a1 +2024-09-11 09:11:09.94953 2024-09-11 09:11:09.949541 plmef 10529 R rec fb3b09fc-ea05-4fd7-8cee-7f4ec697ba4f +2024-09-11 09:11:10.022116 2024-09-11 09:11:10.022126 plmef 10530 R rec 5d3d6c56-0869-4fde-a0d6-6782e63e2b8d +2024-09-11 09:11:10.081106 2024-09-11 09:11:10.081112 plmef 10531 R rec b50598b1-89d0-4309-b2a9-7ba929fc7f81 +2024-09-11 09:11:10.138634 2024-09-11 09:11:10.138643 plmef 10532 R rec 6aab830f-8a4d-4ece-b5fb-e51904ebfdf0 +2024-09-11 09:11:10.212793 2024-09-11 09:11:10.212798 plmef 10533 R rec bed0b085-fa5f-4266-808c-a45f16f259d9 +2024-09-11 09:11:10.2689 2024-09-11 09:11:10.268909 plmef 10534 R rec 0208b43a-8f1b-42b9-8646-1f99891f5965 +2024-09-11 09:11:10.330132 2024-09-11 09:11:10.330138 plmef 10535 R rec 28056564-1679-4157-a294-f8a22d56d736 +2024-09-11 09:11:10.39237 2024-09-11 09:11:10.39238 plmef 10536 R rec ff984a8c-e35a-4850-8f32-9b35a460628d +2024-09-11 09:11:10.45981 2024-09-11 09:11:10.459821 plmef 10537 R rec ac15382e-7b31-4184-83e2-c8b91ac48e73 +2024-09-11 09:11:10.518369 2024-09-11 09:11:10.518373 plmef 10538 R rec 208627d9-ec87-4baa-8fe7-d829e0a8cf5c +2024-09-11 09:11:10.582809 2024-09-11 09:11:10.582815 plmef 10539 R rec 2c1491cd-08d6-4b19-94dc-e5c8c89e0263 +2024-09-11 09:11:10.643578 2024-09-11 09:11:10.643583 plmef 10540 R rec 5af93d0c-13c3-49f0-b35d-5722f60e56bd +2024-09-11 09:11:10.716919 2024-09-11 09:11:10.716924 plmef 10541 R rec 452c9453-5705-4478-bb38-4232ee7d6791 +2024-09-11 09:11:10.776799 2024-09-11 09:11:10.77681 plmef 10542 R rec ebce28d5-e068-43a7-9b92-500f4332ec76 +2024-09-11 09:11:10.844031 2024-09-11 09:11:10.844042 plmef 10543 R rec 1a090bb6-f56a-41c4-93cd-60db455d1f87 +2024-09-11 09:11:10.906524 2024-09-11 09:11:10.906533 plmef 10544 R rec 7999415e-4e7b-4fd8-bd8b-48fbcf5d7b58 +2024-09-11 09:11:10.967186 2024-09-11 09:11:10.967196 plmef 10545 R rec 36503a28-7e0a-40c6-b5ca-8091abc7d47e +2024-09-11 09:11:11.029905 2024-09-11 09:11:11.029911 plmef 10546 R rec 1641bb33-820e-4490-8b1a-d782b8d701c8 +2024-09-11 09:11:11.086513 2024-09-11 09:11:11.086519 plmef 10547 R rec 3dd7f1b0-b15d-4a25-933d-7c2aac2033bd +2024-09-11 09:11:11.143102 2024-09-11 09:11:11.143106 plmef 10548 R rec 9ef07a44-4a20-41c4-975d-8f45b85ccecf +2024-09-11 09:11:11.200899 2024-09-11 09:11:11.20091 plmef 10549 R rec 8c6f19d0-4bb7-45f0-96e1-248e19d25e61 +2024-09-11 09:11:11.257127 2024-09-11 09:11:11.257133 plmef 10550 R rec 134913be-97c0-4066-a259-ffdccaf79b23 +2024-09-11 09:11:11.310576 2024-09-11 09:11:11.310586 plmef 10551 R rec a30a35fb-f099-4617-af6f-fb66917af760 +2024-09-11 09:11:11.380917 2024-09-11 09:11:11.380923 plmef 10552 R rec 617bf330-9138-4c2b-98fa-70ec1e46caef +2024-09-11 09:11:11.435925 2024-09-11 09:11:11.435935 plmef 10553 R rec 4011b138-5d8d-4dc0-9c68-8e3c94e4d57c +2024-09-11 09:11:11.508636 2024-09-11 09:11:11.508646 plmef 10554 R rec 0ad893e8-2150-403c-8d3b-53202015801b +2024-09-11 09:11:11.593812 2024-09-11 09:11:11.593817 plmef 10555 R rec ffe3b6fa-42b1-4923-9d96-663ba207e8fe +2024-09-11 09:11:11.650924 2024-09-11 09:11:11.650936 plmef 10556 R rec 2db5ec8b-f8f1-49ce-b17b-a6445b6bb404 +2024-09-11 09:11:11.719917 2024-09-11 09:11:11.719921 plmef 10557 R rec 8f58c085-b60c-4c9a-a1a1-267ea859eead +2024-09-11 09:11:11.789481 2024-09-11 09:11:11.789487 plmef 10558 R rec 149a95c7-95f4-4cb6-868d-64a933e54873 +2024-09-11 09:11:11.855088 2024-09-11 09:11:11.855094 plmef 10559 R rec 1487104d-5cd5-4479-a78c-217de7f27efc +2024-09-11 09:11:11.92257 2024-09-11 09:11:11.922582 plmef 10560 R rec 60d63f6a-4548-45c6-977c-07fd2706ace1 +2024-09-11 09:11:11.989478 2024-09-11 09:11:11.989484 plmef 10561 R rec 2843613c-094b-4b9d-b887-3ff3715e309a +2024-09-11 09:11:12.042601 2024-09-11 09:11:12.042607 plmef 10562 R rec 08a6b7b6-354f-40d8-91fe-0d501650cb5d +2024-09-11 09:11:12.098602 2024-09-11 09:11:12.098607 plmef 10563 R rec 6017a803-0364-4c1c-a782-e06a6086c163 +2024-09-11 09:11:12.149058 2024-09-11 09:11:12.149063 plmef 10564 R rec 8d5c469c-d05d-4489-9792-896ff1da4d71 +2024-09-11 09:11:12.215323 2024-09-11 09:11:12.215328 plmef 10565 R rec effe6328-7f6c-466a-9584-ff35ffafef18 +2024-09-11 09:11:12.27688 2024-09-11 09:11:12.27689 plmef 10566 R rec c3629af2-18f3-411f-be96-b15da454ad08 +2024-09-11 09:11:12.339861 2024-09-11 09:11:12.339871 plmef 10567 R rec e3344210-36d5-47b6-a128-97c1b52f0529 +2024-09-11 09:11:12.403631 2024-09-11 09:11:12.403641 plmef 10568 R rec 4886cd8a-388f-4297-a2ed-722f342a57ab +2024-09-11 09:11:12.471236 2024-09-11 09:11:12.471245 plmef 10569 R rec 30b7e238-b1c0-4586-807b-0aaa7c6c3517 +2024-09-11 09:11:12.534176 2024-09-11 09:11:12.534181 plmef 10570 R rec 356a5419-b907-4d42-bfbb-2be49a489b6b +2024-09-11 09:11:12.594491 2024-09-11 09:11:12.594496 plmef 10571 R rec c686ef50-182e-407c-8e32-85f7d0ca4ede +2024-09-11 09:11:12.638017 2024-09-11 09:11:12.638022 plmef 10572 R rec ebf3aa7b-7b2c-4a5d-83b4-29bf2a4a2b93 +2024-09-11 09:11:12.700057 2024-09-11 09:11:12.700061 plmef 10573 R rec 44afd709-180f-4dc1-a073-4bf058d70cf9 +2024-09-11 09:11:12.745925 2024-09-11 09:11:12.745931 plmef 10574 R rec 247b0dcc-e6d1-4dda-b59d-ab2d4a764d1c +2024-09-11 09:11:12.803148 2024-09-11 09:11:12.803157 plmef 10575 R rec 53d946b2-51e8-432c-9815-2bbc8d8ef802 +2024-09-11 09:11:12.867585 2024-09-11 09:11:12.867594 plmef 10576 R rec 2256c865-47a6-4e28-9681-5eb2d2b50921 +2024-09-11 09:11:12.929822 2024-09-11 09:11:12.929831 plmef 10577 R rec 53d11dfa-03b9-4866-972f-4b3151eac755 +2024-09-11 09:11:12.994333 2024-09-11 09:11:12.994344 plmef 10578 R rec a12c1eab-43db-4ef1-a570-d8a284f00b98 +2024-09-11 09:11:13.056735 2024-09-11 09:11:13.05674 plmef 10579 R rec 95a4d0d6-6eda-4709-8550-ca08218e62ca +2024-09-11 09:11:13.11886 2024-09-11 09:11:13.11887 plmef 10580 R rec 22107fe3-6918-4d41-a390-fdaf6286a53d +2024-09-11 09:11:13.18491 2024-09-11 09:11:13.18492 plmef 10581 R rec 5066167d-0a32-4106-ad44-5c6a94e0c7b6 +2024-09-11 09:11:13.249089 2024-09-11 09:11:13.249099 plmef 10582 R rec d8338cac-e1d2-4cef-926a-45eab06e4346 +2024-09-11 09:11:13.318594 2024-09-11 09:11:13.318599 plmef 10583 R rec 0a812931-8c18-4b79-a8b8-62b39bbc3b4b +2024-09-11 09:11:13.375191 2024-09-11 09:11:13.375201 plmef 10584 R rec 85ad193c-b97b-453a-b3f4-c2ceb1d40423 +2024-09-11 09:11:13.430584 2024-09-11 09:11:13.430594 plmef 10585 R rec ff75b499-8958-423e-806f-1066062cd467 +2024-09-11 09:11:13.499876 2024-09-11 09:11:13.499886 plmef 10586 R rec 35908288-513a-4dfe-baf0-55de8724cdb5 +2024-09-11 09:11:13.555864 2024-09-11 09:11:13.555869 plmef 10587 R rec 796ac8c8-6dee-4c68-8f8e-8382dba949a9 +2024-09-11 09:11:13.606018 2024-09-11 09:11:13.606022 plmef 10588 R rec 3a5a22c3-e6bc-4377-b690-64a7700cf890 +2024-09-11 09:11:13.663108 2024-09-11 09:11:13.663118 plmef 10589 R rec 65696fe3-ae31-4679-9c08-069ba89407de +2024-09-11 09:11:13.720013 2024-09-11 09:11:13.720017 plmef 10590 R rec 425c030d-4b9b-4d4d-9cd7-f15d8d35dc8f +2024-09-11 09:11:13.769806 2024-09-11 09:11:13.769811 plmef 10591 R rec 79b2b5de-228f-40f6-a9e7-8ccccc0cbd15 +2024-09-11 09:11:13.832431 2024-09-11 09:11:13.832441 plmef 10592 R rec a085c527-730a-4c1a-ab33-0a1fd7bb0c7c +2024-09-11 09:11:13.902581 2024-09-11 09:11:13.902586 plmef 10593 R rec a282e356-c055-4bb7-8e96-2bb6092853c9 +2024-09-11 09:11:13.954121 2024-09-11 09:11:13.954127 plmef 10594 R rec 0b015bd1-b4c5-4087-b98a-917e891bae30 +2024-09-11 09:11:14.013878 2024-09-11 09:11:14.013884 plmef 10595 R rec b6891813-905a-4d98-8da8-aadae091de9f +2024-09-11 09:11:14.071993 2024-09-11 09:11:14.072001 plmef 10596 R rec 2c2375a5-6011-4083-9296-f4053639132b +2024-09-11 09:11:14.124075 2024-09-11 09:11:14.124081 plmef 10597 R rec 1502c05a-e085-4895-9202-47d19b65237e +2024-09-11 09:11:14.179152 2024-09-11 09:11:14.179164 plmef 10598 R rec 9953b126-b7a5-4254-9af3-f34d875829eb +2024-09-11 09:11:14.238586 2024-09-11 09:11:14.238595 plmef 10599 R rec d9308ace-c124-468a-a414-3b830e759fa5 +2024-09-11 09:11:14.298293 2024-09-11 09:11:14.298304 plmef 10600 R rec 6d4d48ce-7cd2-4538-a280-2246c6908286 +2024-09-11 09:11:14.363754 2024-09-11 09:11:14.363763 plmef 10601 R rec 599772af-feaf-4f74-bec3-ebe763a9f028 +2024-09-11 09:11:14.420324 2024-09-11 09:11:14.420336 plmef 10602 R rec 45905f3b-c5a6-49ec-85f3-e69e9fd3d262 +2024-09-11 09:11:14.492886 2024-09-11 09:11:14.492897 plmef 10603 R rec 6e6e0efa-e81a-4f6a-b4f2-5c5e22eb2c9e +2024-09-11 09:11:14.559679 2024-09-11 09:11:14.55969 plmef 10604 R rec 643266d2-b814-4637-a012-f657f6aba7a6 +2024-09-11 09:11:14.61257 2024-09-11 09:11:14.612575 plmef 10605 R rec bb5614b9-8db8-4dfc-b4c9-018aa77ce1f7 +2024-09-11 09:11:14.668839 2024-09-11 09:11:14.668848 plmef 10606 R rec 70314d09-d2e3-449e-ac51-ff8688a77f11 +2024-09-11 09:11:14.733506 2024-09-11 09:11:14.733515 plmef 10607 R rec a961a990-1764-4f96-9cb9-1efe846316ae +2024-09-11 09:11:14.79896 2024-09-11 09:11:14.798971 plmef 10608 R rec 510386d7-2d64-479f-b1ef-4f315c86ed58 +2024-09-11 09:11:14.859785 2024-09-11 09:11:14.859791 plmef 10609 R rec ef9c1de0-3dc9-426d-b3da-d3f9c407cf1d +2024-09-11 09:11:14.92124 2024-09-11 09:11:14.921253 plmef 10610 R rec 64dc391a-76ed-4590-a4d0-fbba9bff78ba +2024-09-11 09:11:14.998273 2024-09-11 09:11:14.998284 plmef 10611 R rec 9bc957e3-8091-4cfb-9044-e78723e475a1 +2024-09-11 09:11:15.069869 2024-09-11 09:11:15.069874 plmef 10612 R rec 6bb8a777-221b-442b-a044-d3e6939e0db5 +2024-09-11 09:11:15.115336 2024-09-11 09:11:15.115342 plmef 10613 R rec 194696a5-a6e4-4310-9662-4b1d7d057050 +2024-09-11 09:11:15.177627 2024-09-11 09:11:15.177638 plmef 10614 R rec bc93df23-254a-41c1-9c75-af637d048a01 +2024-09-11 09:11:15.243555 2024-09-11 09:11:15.243566 plmef 10615 R rec dde02d0f-4e86-4433-a3f7-4acca1a06e86 +2024-09-11 09:11:15.320369 2024-09-11 09:11:15.320374 plmef 10616 R rec f2de7df2-e530-464b-9ed1-3d4735e2d018 +2024-09-11 09:11:15.390455 2024-09-11 09:11:15.390465 plmef 10617 R rec ad40e3e5-9131-4ec1-ba97-de1c901b6c3d +2024-09-11 09:11:15.461176 2024-09-11 09:11:15.461187 plmef 10618 R rec 2b378ff2-90f8-449a-a764-53f365738204 +2024-09-11 09:11:15.526513 2024-09-11 09:11:15.526523 plmef 10619 R rec b65f1511-e9b5-4587-b91d-38543c1883a4 +2024-09-11 09:11:15.591109 2024-09-11 09:11:15.591115 plmef 10620 R rec a726a796-a68b-46a7-b467-2db128f7b863 +2024-09-11 09:11:15.663274 2024-09-11 09:11:15.663285 plmef 10621 R rec c6ddbd37-13ae-45a8-b552-96438a942056 +2024-09-11 09:11:15.726969 2024-09-11 09:11:15.726975 plmef 10622 R rec 3b05c83e-06c8-479c-89f2-484a49f4158b +2024-09-11 09:11:15.775781 2024-09-11 09:11:15.77579 plmef 10623 R rec b0e674bb-1f9f-4499-a939-efe0b7bc44ae +2024-09-11 09:11:15.833107 2024-09-11 09:11:15.833118 plmef 10624 R rec eff4c96e-1724-42d9-8cf0-33ad21941856 +2024-09-11 09:11:15.89834 2024-09-11 09:11:15.898345 plmef 10625 R rec db707ccd-32d0-49e5-9ee4-9314c1daaa72 +2024-09-11 09:11:15.959724 2024-09-11 09:11:15.959735 plmef 10626 R rec 1c907e9e-3a8d-4274-a3aa-35b29766f4f9 +2024-09-11 09:11:16.024843 2024-09-11 09:11:16.024848 plmef 10627 R rec e1ef7748-bcd8-4a5a-b628-fcf622c6ef3e +2024-09-11 09:11:16.093873 2024-09-11 09:11:16.093878 plmef 10628 R rec e81f069e-c5fa-4aae-a3d1-c0a3fb7fa66f +2024-09-11 09:11:16.150222 2024-09-11 09:11:16.150227 plmef 10629 R rec ef893f53-28e9-4667-bf01-15ebb5602481 +2024-09-11 09:11:16.208353 2024-09-11 09:11:16.208358 plmef 10630 R rec 81617474-b1ef-446c-9239-bf4328625f9c +2024-09-11 09:11:16.273284 2024-09-11 09:11:16.273289 plmef 10631 R rec 9f0f2cf2-faa3-485b-88c3-6d21a26bb80f +2024-09-11 09:11:16.3489 2024-09-11 09:11:16.34891 plmef 10632 R rec 0604e608-c05b-4dd1-84f7-b960e3034b8e +2024-09-11 09:11:16.415994 2024-09-11 09:11:16.416005 plmef 10633 R rec 584a16ba-d77a-4934-9a7a-796e3da85a7b +2024-09-11 09:11:16.480765 2024-09-11 09:11:16.480776 plmef 10634 R rec 9bff45b2-6286-4edd-9f09-7f4764a8e69c +2024-09-11 09:11:16.544309 2024-09-11 09:11:16.544314 plmef 10635 R rec 730853b2-0f76-45e4-bf63-bf65e34a24b4 +2024-09-11 09:11:16.599972 2024-09-11 09:11:16.599977 plmef 10636 R rec 131d614b-181c-4d0f-bef8-4d9376855686 +2024-09-11 09:11:16.644061 2024-09-11 09:11:16.644066 plmef 10637 R rec ced53a5f-f299-4340-989d-dc3cb2181dca +2024-09-11 09:11:16.693178 2024-09-11 09:11:16.693188 plmef 10638 R rec 30c6201d-4e21-457f-a3ef-375ead8849b9 +2024-09-11 09:11:16.740831 2024-09-11 09:11:16.740836 plmef 10639 R rec 920e8b09-9a8d-4bf5-bb0c-9cd534d82c04 +2024-09-11 09:11:16.797828 2024-09-11 09:11:16.797839 plmef 10640 R rec e7c75c78-d06f-4a68-ab79-4b830fd6183b +2024-09-11 09:11:16.875788 2024-09-11 09:11:16.875798 plmef 10641 R rec d3c5f873-0867-4b40-af3d-5bc9a08412af +2024-09-11 09:11:16.941063 2024-09-11 09:11:16.941074 plmef 10642 R rec db9919c4-0022-48c6-9079-b3c0e44a7650 +2024-09-11 09:11:17.005483 2024-09-11 09:11:17.005493 plmef 10643 R rec 648a42a4-910f-4864-96d0-02769ed0f0a5 +2024-09-11 09:11:17.065031 2024-09-11 09:11:17.065036 plmef 10644 R rec da970211-612f-4183-b314-89cf6c644e4d +2024-09-11 09:11:17.115339 2024-09-11 09:11:17.11535 plmef 10645 R rec ca19549b-77a7-4816-923f-5b2f322858e5 +2024-09-11 09:11:17.177927 2024-09-11 09:11:17.177938 plmef 10646 R rec 45735a91-8b02-4d2c-ab4d-56253df4a602 +2024-09-11 09:11:17.233661 2024-09-11 09:11:17.233667 plmef 10647 R rec 403f28d1-df47-4955-96ff-920b9bd2e6de +2024-09-11 09:11:17.283448 2024-09-11 09:11:17.283454 plmef 10648 R rec 9ef0eab9-b4a6-4b49-9397-c3551f10d669 +2024-09-11 09:11:17.344537 2024-09-11 09:11:17.344547 plmef 10649 R rec abc82637-2094-47e1-a995-fc8d96238eba +2024-09-11 09:11:17.40885 2024-09-11 09:11:17.408861 plmef 10650 R rec df4bf886-1369-4ac6-b121-bcfc0b07d3ab +2024-09-11 09:11:17.481234 2024-09-11 09:11:17.481245 plmef 10651 R rec 02e0b8d4-654e-416e-8a56-138ff32dd3ac +2024-09-11 09:11:17.543724 2024-09-11 09:11:17.543729 plmef 10652 R rec 36c33d5b-0c64-4f6c-b9b7-86af5ed599c6 +2024-09-11 09:11:17.597168 2024-09-11 09:11:17.597173 plmef 10653 R rec 5ddfb432-1ba9-4190-8fc4-f71f36f7b204 +2024-09-11 09:11:17.650768 2024-09-11 09:11:17.650778 plmef 10654 R rec 0d09b2f1-7301-4e62-ba48-5df6ebee4763 +2024-09-11 09:11:17.711953 2024-09-11 09:11:17.711958 plmef 10655 R rec beefedd8-ed7b-40fe-b229-e2d6f5a04be0 +2024-09-11 09:11:17.783598 2024-09-11 09:11:17.783608 plmef 10656 R rec c1477ffc-b3ee-4b7b-b68a-b31623bc9cf3 +2024-09-11 09:11:17.86725 2024-09-11 09:11:17.86726 plmef 10657 R rec b062f8fe-45fd-41de-8308-ff004ee90868 +2024-09-11 09:11:17.935485 2024-09-11 09:11:17.935496 plmef 10658 R rec 07a8ec00-0f04-4018-93d5-d4f184d4f76b +2024-09-11 09:11:18.003986 2024-09-11 09:11:18.003996 plmef 10659 R rec e3ee13c1-0593-472d-859c-38f43e9fb3eb +2024-09-11 09:11:18.077098 2024-09-11 09:11:18.077109 plmef 10660 R rec 38cee599-78e4-4568-a641-1abc5c89edeb +2024-09-11 09:11:18.135223 2024-09-11 09:11:18.135228 plmef 10661 R rec 732cd4e0-f80e-4aa6-a29b-6ac8e0f08e60 +2024-09-11 09:11:18.197278 2024-09-11 09:11:18.197288 plmef 10662 R rec 73af37ab-adcb-4153-b4b8-f5c8b32f3ffd +2024-09-11 09:11:18.254994 2024-09-11 09:11:18.254999 plmef 10663 R rec 51cf7695-5ca4-4aa2-9a50-e96266779b88 +2024-09-11 09:11:18.320568 2024-09-11 09:11:18.320578 plmef 10664 R rec 8326623d-e33a-499a-ba73-14c97606ad92 +2024-09-11 09:11:18.383488 2024-09-11 09:11:18.383497 plmef 10665 R rec 55bc751b-8aea-421c-92dd-e9a4c96a0b87 +2024-09-11 09:11:18.451771 2024-09-11 09:11:18.451781 plmef 10666 R rec 81466028-2b41-45f2-8909-032ad5978fbb +2024-09-11 09:11:18.519588 2024-09-11 09:11:18.519593 plmef 10667 R rec 56200498-9a1e-457a-a8a8-f59101d1c13b +2024-09-11 09:11:18.584731 2024-09-11 09:11:18.584742 plmef 10668 R rec 3cb8e264-c0e6-4872-b02f-5acb51b71ccf +2024-09-11 09:11:18.64324 2024-09-11 09:11:18.643248 plmef 10669 R rec b7919add-18aa-48ff-b850-df77929e8852 +2024-09-11 09:11:18.716437 2024-09-11 09:11:18.716442 plmef 10670 R rec 5d37c4df-d938-426c-bacc-1e48579330dd +2024-09-11 09:11:18.781194 2024-09-11 09:11:18.781206 plmef 10671 R rec befa0b1b-80c8-4a81-9ccf-0d02ccb0281a +2024-09-11 09:11:18.854245 2024-09-11 09:11:18.854256 plmef 10672 R rec d0003165-5e3a-4072-bb8a-e072b012013c +2024-09-11 09:11:18.918477 2024-09-11 09:11:18.918482 plmef 10673 R rec 4d7075ba-9f42-4aa8-a7a1-1bea1f246ecf +2024-09-11 09:11:18.978493 2024-09-11 09:11:18.978504 plmef 10674 R rec a7773f10-3dfb-406e-babc-8bba81d3e4b0 +2024-09-11 09:11:19.047898 2024-09-11 09:11:19.047907 plmef 10675 R rec 438db7f3-0726-4970-a09b-b20a62c5f3bb +2024-09-11 09:11:19.108022 2024-09-11 09:11:19.108028 plmef 10676 R rec cbb1bacc-3a68-4d70-b7cc-009ca029e434 +2024-09-11 09:11:19.169918 2024-09-11 09:11:19.169923 plmef 10677 R rec 9fb2fa1a-75c9-4591-a5d9-a6ac2ec7f089 +2024-09-11 09:11:19.24074 2024-09-11 09:11:19.240746 plmef 10678 R rec 99c1e048-09f2-4aee-a201-1405e501b2d9 +2024-09-11 09:11:19.310562 2024-09-11 09:11:19.310572 plmef 10679 R rec 585e45ed-ad40-4736-a6cb-67c46d482336 +2024-09-11 09:11:19.37906 2024-09-11 09:11:19.37907 plmef 10680 R rec 48487913-cce1-4c4e-9f12-ec960e6a1c1f +2024-09-11 09:11:19.44453 2024-09-11 09:11:19.444535 plmef 10681 R rec cdaf963d-c621-41cb-9e11-cb1e5ee4ce5a +2024-09-11 09:11:19.503019 2024-09-11 09:11:19.503028 plmef 10682 R rec 9b35afbe-3dc2-4e67-a76d-4f776cc64e14 +2024-09-11 09:11:19.563662 2024-09-11 09:11:19.563677 plmef 10683 R rec 545aaf5e-7218-4949-9df8-0ed1bad375ee +2024-09-11 09:11:19.624525 2024-09-11 09:11:19.624534 plmef 10684 R rec 52282caf-ad55-4e36-bf92-86867766c679 +2024-09-11 09:11:19.686732 2024-09-11 09:11:19.686743 plmef 10685 R rec c4a0ea5f-4333-49f5-8b90-4413a15dfa9d +2024-09-11 09:11:19.739057 2024-09-11 09:11:19.739062 plmef 10686 R rec 1a4bde8c-dd1b-428c-8252-64d0f4d72fdd +2024-09-11 09:11:19.789236 2024-09-11 09:11:19.789246 plmef 10687 R rec 788841ff-4c89-46cb-9168-5306ee4f7063 +2024-09-11 09:11:19.853158 2024-09-11 09:11:19.853168 plmef 10688 R rec ed7ed04a-4ea9-423f-b0b7-ebbcec78e6c5 +2024-09-11 09:11:19.922575 2024-09-11 09:11:19.922586 plmef 10689 R rec f42f8157-38c2-4225-944e-c5ee83bea7b0 +2024-09-11 09:11:19.9904 2024-09-11 09:11:19.990411 plmef 10690 R rec bc3cc58d-c667-4ac3-9722-dfb5c7713590 +2024-09-11 09:11:20.057234 2024-09-11 09:11:20.057243 plmef 10691 R rec 0b62dd9c-f045-4e8e-b4ef-c21e237bb770 +2024-09-11 09:11:20.124677 2024-09-11 09:11:20.124687 plmef 10692 R rec 7eebf466-4e3c-4e34-81d8-d9853b45cce9 +2024-09-11 09:11:20.193509 2024-09-11 09:11:20.193519 plmef 10693 R rec 4bcb9fa8-5bf2-44f5-ac49-6ef3776dc3d2 +2024-09-11 09:11:20.257813 2024-09-11 09:11:20.257823 plmef 10694 R rec edfa7b30-4ddd-49ea-b4a2-f9fcdd00d73a +2024-09-11 09:11:20.327501 2024-09-11 09:11:20.32751 plmef 10695 R rec 55f21f16-fd20-4888-a081-b617cf751542 +2024-09-11 09:11:20.389259 2024-09-11 09:11:20.389269 plmef 10696 R rec 59084d0d-ba81-4b48-a77c-1d3f72cdbd6d +2024-09-11 09:11:20.448866 2024-09-11 09:11:20.448876 plmef 10697 R rec 2d9d3a46-d11d-4b3e-bd59-55fa06f54da6 +2024-09-11 09:11:20.514617 2024-09-11 09:11:20.514627 plmef 10698 R rec 43d5e427-6b5b-4237-b399-eaadb3b6b3ac +2024-09-11 09:11:20.57498 2024-09-11 09:11:20.574991 plmef 10699 R rec a87466b5-58f5-4fa1-a0d1-44b8bee182ac +2024-09-11 09:11:20.647123 2024-09-11 09:11:20.647134 plmef 10700 R rec 9ce0fbbd-b191-43f0-ae6e-42acb78f3e7a +2024-09-11 09:11:20.716518 2024-09-11 09:11:20.716522 plmef 10701 R rec 9912f4c0-5e8e-42d2-a9e3-855066cedb9f +2024-09-11 09:11:20.764919 2024-09-11 09:11:20.764924 plmef 10702 R rec 779ef70c-b76c-4f15-85c9-66c244e52d69 +2024-09-11 09:11:20.822098 2024-09-11 09:11:20.822109 plmef 10703 R rec 1e9ac811-ea38-43db-b572-e64d1e2abf3b +2024-09-11 09:11:20.892065 2024-09-11 09:11:20.892071 plmef 10704 R rec 8eb4fc93-a1c8-4983-92a0-6764b668ee20 +2024-09-11 09:11:20.959855 2024-09-11 09:11:20.959866 plmef 10705 R rec ba0bd921-648a-4767-98fb-43e1971fedab +2024-09-11 09:11:21.029223 2024-09-11 09:11:21.029229 plmef 10706 R rec 8fec6c71-6347-4b1a-9443-8e9061b336cb +2024-09-11 09:11:21.0834 2024-09-11 09:11:21.083409 plmef 10707 R rec 48e18976-88c8-4a2e-9fd7-5599342c6cf6 +2024-09-11 09:11:21.13223 2024-09-11 09:11:21.132235 plmef 10708 R rec 7996317b-e229-4c96-9725-803d720765bf +2024-09-11 09:11:21.189334 2024-09-11 09:11:21.189343 plmef 10709 R rec fffa7840-1dca-43a6-b391-4a7dde8c7fa3 +2024-09-11 09:11:21.252599 2024-09-11 09:11:21.252604 plmef 10710 R rec 86871738-e0b2-4bef-b7af-ba83ff566cb0 +2024-09-11 09:11:21.307717 2024-09-11 09:11:21.307722 plmef 10711 R rec 3f19add1-92af-4a05-9769-a0554c111f6d +2024-09-11 09:11:21.372025 2024-09-11 09:11:21.372031 plmef 10712 R rec 50b65420-cacf-48af-834a-ab984332a9c5 +2024-09-11 09:11:21.428249 2024-09-11 09:11:21.428254 plmef 10713 R rec 665bc2b0-f2cf-41e7-98cc-7c4b103cc83c +2024-09-11 09:11:21.485058 2024-09-11 09:11:21.485068 plmef 10714 R rec b0d81dfc-604b-4d8a-b421-9e51902dd4eb +2024-09-11 09:11:21.556858 2024-09-11 09:11:21.556873 plmef 10715 R rec cd5abd1c-fefc-4042-90e7-df53b8e662a4 +2024-09-11 09:11:21.632815 2024-09-11 09:11:21.632821 plmef 10716 R rec 6e704772-359a-4908-a5a3-fa3df6102f8b +2024-09-11 09:11:21.6982 2024-09-11 09:11:21.698211 plmef 10717 R rec f0246f6c-fea6-4b53-93ed-edd55ea4f7c9 +2024-09-11 09:11:21.774384 2024-09-11 09:11:21.774389 plmef 10718 R rec a8ab571b-ace1-42b1-9dd7-04b4c7ee2e73 +2024-09-11 09:11:21.831106 2024-09-11 09:11:21.831111 plmef 10719 R rec 20b51d1d-1dde-46a2-83b0-dfd5ff4bffaf +2024-09-11 09:11:21.887607 2024-09-11 09:11:21.887612 plmef 10720 R rec 49ddef95-9e2b-425c-8204-41e137951b5c +2024-09-11 09:11:21.942991 2024-09-11 09:11:21.942997 plmef 10721 R rec 1ed5f920-d523-4815-82fb-2f1a52338dff +2024-09-11 09:11:22.011904 2024-09-11 09:11:22.011914 plmef 10722 R rec e0cce608-b438-4465-821c-a8cbd3ff3598 +2024-09-11 09:11:22.080664 2024-09-11 09:11:22.080674 plmef 10723 R rec 2a7f67c4-ec88-42fe-b6b9-8f4d9c017c25 +2024-09-11 09:11:22.137426 2024-09-11 09:11:22.137438 plmef 10724 R rec bceda418-0773-420e-b613-1e47d2f36f73 +2024-09-11 09:11:22.20293 2024-09-11 09:11:22.20294 plmef 10725 R rec 95b7dc54-8a43-41c3-b81d-3f1194e8b5d7 +2024-09-11 09:11:22.267901 2024-09-11 09:11:22.267911 plmef 10726 R rec 25007cac-88be-4f64-a6ea-e1b20a6f6021 +2024-09-11 09:11:22.34034 2024-09-11 09:11:22.340351 plmef 10727 R rec 4afe315d-1f9d-4574-af32-007da7c34780 +2024-09-11 09:11:22.419757 2024-09-11 09:11:22.419768 plmef 10728 R rec de1d3725-aa11-4881-b664-3bba8c786a63 +2024-09-11 09:11:22.493975 2024-09-11 09:11:22.49398 plmef 10729 R rec a41846f2-e1f8-4039-bdd4-8f2bf249e12d +2024-09-11 09:11:22.555773 2024-09-11 09:11:22.555784 plmef 10730 R rec 9c954d0c-2881-4cf1-9433-681cca35e31e +2024-09-11 09:11:22.611729 2024-09-11 09:11:22.611736 plmef 10731 R rec f0cce585-8642-422f-a640-780046d83d11 +2024-09-11 09:11:22.671006 2024-09-11 09:11:22.671015 plmef 10732 R rec 73666cc8-88e2-496a-b025-e6d83efc85fa +2024-09-11 09:11:22.725188 2024-09-11 09:11:22.725193 plmef 10733 R rec 3a0e23cf-2aa0-4458-a5ee-8e8094b6b19f +2024-09-11 09:11:22.789596 2024-09-11 09:11:22.789601 plmef 10734 R rec f3d4e96d-4fd0-4814-ae93-b9859bf1416b +2024-09-11 09:11:22.853703 2024-09-11 09:11:22.853713 plmef 10735 R rec 8cb60b63-1c4a-4968-b0b4-1ccc148191d3 +2024-09-11 09:11:22.919296 2024-09-11 09:11:22.919307 plmef 10736 R rec c4955930-3129-4fd9-92d9-4e8819866edb +2024-09-11 09:11:22.983927 2024-09-11 09:11:22.98394 plmef 10737 R rec ebd228a6-73cf-4f2c-bc41-d14da53cf8c5 +2024-09-11 09:11:23.057014 2024-09-11 09:11:23.05702 plmef 10738 R rec 6099b848-cd15-412f-82db-5ab537778dc7 +2024-09-11 09:11:23.123374 2024-09-11 09:11:23.123456 plmef 10739 R rec 4e317a7b-90a0-48ff-b1cd-f12043673be8 +2024-09-11 09:11:23.19799 2024-09-11 09:11:23.198006 plmef 10740 R rec d690dc6c-8dbd-4eae-a579-7f35954b2f1c +2024-09-11 09:11:23.269963 2024-09-11 09:11:23.269973 plmef 10741 R rec 5b63df47-5202-40e8-8e0e-641a7284b0ef +2024-09-11 09:11:23.341928 2024-09-11 09:11:23.341933 plmef 10742 R rec ec84a2e6-6c14-4f63-b3f5-e6b0f2171aa7 +2024-09-11 09:11:23.456858 2024-09-11 09:11:23.456863 plmef 10743 R rec a2b357ee-3eee-4b01-9219-e35b651e997f +2024-09-11 09:11:23.50505 2024-09-11 09:11:23.505055 plmef 10744 R rec 3ba89d33-b265-45c1-9420-ac7e80a75814 +2024-09-11 09:11:23.552291 2024-09-11 09:11:23.552296 plmef 10745 R rec 278df14f-acf3-4fb6-96da-915aff30d29a +2024-09-11 09:11:23.596871 2024-09-11 09:11:23.596877 plmef 10746 R rec 8e361ad6-cfde-40a3-a285-0ba4909b257a +2024-09-11 09:11:23.64352 2024-09-11 09:11:23.643525 plmef 10747 R rec 8ddf45a9-98b0-4482-b568-5e70333507f3 +2024-09-11 09:11:23.690804 2024-09-11 09:11:23.690809 plmef 10748 R rec 3dea2100-f384-4909-8496-9425c1a6a26b +2024-09-11 09:11:23.744878 2024-09-11 09:11:23.744884 plmef 10749 R rec 7a57a103-b0cb-4414-b67e-881efe168c7a +2024-09-11 09:11:23.796179 2024-09-11 09:11:23.796184 plmef 10750 R rec 722915cc-40e8-49c8-ad18-2acf65d7dabd +2024-09-11 09:11:23.844073 2024-09-11 09:11:23.844078 plmef 10751 R rec 26d25983-5652-4410-9131-a37b7985f44f +2024-09-11 09:11:23.90816 2024-09-11 09:11:23.90817 plmef 10752 R rec 991e7a54-32bb-460b-abed-fd26c1e26d80 +2024-09-11 09:11:23.971065 2024-09-11 09:11:23.97107 plmef 10753 R rec a92b4cbb-f714-42ee-b941-4371ae3cd8a7 +2024-09-11 09:11:24.049167 2024-09-11 09:11:24.049177 plmef 10754 R rec 705a260f-cb9a-4baa-a44a-a7e20f23defa +2024-09-11 09:11:24.119624 2024-09-11 09:11:24.119629 plmef 10755 R rec f158121a-f0a2-44d0-bb3b-631d79cefdee +2024-09-11 09:11:24.182527 2024-09-11 09:11:24.182537 plmef 10756 R rec 11181c30-a020-46d6-a85a-65d9d8d5a9a0 +2024-09-11 09:11:24.258208 2024-09-11 09:11:24.258219 plmef 10757 R rec 22660ff2-391b-4eb0-9de7-34b2cb47acef +2024-09-11 09:11:24.33582 2024-09-11 09:11:24.335831 plmef 10758 R rec d0313ba5-6893-4ceb-8038-3f4c987d01c2 +2024-09-11 09:11:24.400096 2024-09-11 09:11:24.400106 plmef 10759 R rec 285df75a-d793-4c77-be69-b5dd11afcae2 +2024-09-11 09:11:24.464204 2024-09-11 09:11:24.464215 plmef 10760 R rec 61529533-4b0c-4af4-bde5-6c09bf69a9b8 +2024-09-11 09:11:24.52516 2024-09-11 09:11:24.525172 plmef 10761 R rec 3410c998-98f1-493e-a74e-e4c05615935d +2024-09-11 09:11:24.592032 2024-09-11 09:11:24.592042 plmef 10762 R rec 637f8fdd-d387-4846-ada6-36e89e0f10cf +2024-09-11 09:11:24.658397 2024-09-11 09:11:24.658408 plmef 10763 R rec f29ee91f-b566-4bbe-87a2-38355c0a24d4 +2024-09-11 09:11:24.71611 2024-09-11 09:11:24.716116 plmef 10764 R rec 2f79201c-ce0e-4075-939e-f08ec8b928b1 +2024-09-11 09:11:24.76356 2024-09-11 09:11:24.76357 plmef 10765 R rec 337f234d-0af7-4ef0-a925-717fbae25e14 +2024-09-11 09:11:24.827569 2024-09-11 09:11:24.827574 plmef 10766 R rec b8155a0c-64e7-4d17-a889-5bd88b508cea +2024-09-11 09:11:24.886588 2024-09-11 09:11:24.886593 plmef 10767 R rec 49690870-f190-49f3-b51c-244057951e45 +2024-09-11 09:11:24.946229 2024-09-11 09:11:24.94624 plmef 10768 R rec 89c1a78a-e4f7-4d0b-95c1-2d7dd95ad04e +2024-09-11 09:11:25.013272 2024-09-11 09:11:25.013278 plmef 10769 R rec 8d15d103-7b53-4da1-bbd9-dc6f5a605a18 +2024-09-11 09:11:25.07287 2024-09-11 09:11:25.072876 plmef 10770 R rec b3fe3e47-c9da-4e85-8ccc-14545f05b37f +2024-09-11 09:11:25.124568 2024-09-11 09:11:25.124573 plmef 10771 R rec 52259f5c-8c3c-4703-87e7-126ba59398ea +2024-09-11 09:11:25.174874 2024-09-11 09:11:25.17488 plmef 10772 R rec 0b255404-e70c-4177-9490-fcb3940fc9cc +2024-09-11 09:11:25.232326 2024-09-11 09:11:25.232332 plmef 10773 R rec 6dcd6ac5-7da6-4d39-8233-a1c4f6deb6fa +2024-09-11 09:11:25.342874 2024-09-11 09:11:25.342884 plmef 10774 R rec 51b66b15-9d37-4b98-9ecb-24c35bc3daec +2024-09-11 09:11:25.404522 2024-09-11 09:11:25.404533 plmef 10775 R rec 106c6bcd-1df7-4174-ba4e-5daf957be160 +2024-09-11 09:11:25.472815 2024-09-11 09:11:25.472825 plmef 10776 R rec be45a13a-821f-470d-8d9c-d29dee012e81 +2024-09-11 09:11:25.528882 2024-09-11 09:11:25.528887 plmef 10777 R rec b1a80f05-f81d-4d91-906c-dd9f11fd66f8 +2024-09-11 09:11:25.591375 2024-09-11 09:11:25.591386 plmef 10778 R rec b59ef0be-e522-49bd-b6c1-3e386b913b07 +2024-09-11 09:11:25.668922 2024-09-11 09:11:25.668933 plmef 10779 R rec 1f14d59d-5d6b-4ab2-8d6a-17ed0f8b9230 +2024-09-11 09:11:25.733763 2024-09-11 09:11:25.733772 plmef 10780 R rec 5f1f1189-8e39-4f8f-afaa-8ab794100333 +2024-09-11 09:11:25.794015 2024-09-11 09:11:25.794026 plmef 10781 R rec 7a84166f-ef2a-4128-8659-b52a61ceda67 +2024-09-11 09:11:25.862363 2024-09-11 09:11:25.862373 plmef 10782 R rec f2b44240-c4cf-4413-9cba-456b12793c5f +2024-09-11 09:11:25.927815 2024-09-11 09:11:25.927826 plmef 10783 R rec 42a3fe7d-cf13-4b73-a9a3-60a3b7af8c13 +2024-09-11 09:11:25.995322 2024-09-11 09:11:25.995331 plmef 10784 R rec 0f0e3a7c-7b7c-4df9-8065-1547b516f108 +2024-09-11 09:11:26.070535 2024-09-11 09:11:26.070545 plmef 10785 R rec aeed0d20-2e85-43e3-a008-f95a4cf5de68 +2024-09-11 09:11:26.126904 2024-09-11 09:11:26.126909 plmef 10786 R rec ede7b13b-92c0-4637-81fe-71776a739113 +2024-09-11 09:11:26.181367 2024-09-11 09:11:26.181377 plmef 10787 R rec b05856dc-79be-42c3-9830-f62c3ee37b8b +2024-09-11 09:11:26.239833 2024-09-11 09:11:26.239838 plmef 10788 R rec 457ca0fe-2b98-43f6-83cb-ccc44411a39e +2024-09-11 09:11:26.310085 2024-09-11 09:11:26.310096 plmef 10789 R rec 5038b7ad-a587-4928-b76e-0dc07208f802 +2024-09-11 09:11:26.384505 2024-09-11 09:11:26.384516 plmef 10790 R rec 1df7f036-06bb-471f-b792-b69674894a24 +2024-09-11 09:11:26.452948 2024-09-11 09:11:26.452958 plmef 10791 R rec e6cf1173-9a18-4bd2-8e3e-e48ddb9b64a9 +2024-09-11 09:11:26.513712 2024-09-11 09:11:26.513722 plmef 10792 R rec 532d8186-6d83-40a2-ab5a-debae82eb93b +2024-09-11 09:11:26.587893 2024-09-11 09:11:26.587903 plmef 10793 R rec 011ac6b6-6109-44e7-8008-4fb8b6c60499 +2024-09-11 09:11:26.636088 2024-09-11 09:11:26.636093 plmef 10794 R rec 797e7194-6339-4c17-abb9-bfb5c78024bd +2024-09-11 09:11:26.692393 2024-09-11 09:11:26.692399 plmef 10795 R rec 6774ebfe-2212-439d-bd30-7c52d31a279c +2024-09-11 09:11:26.739565 2024-09-11 09:11:26.73957 plmef 10796 R rec 90f4648f-d6c0-464f-8b62-acf885439b9d +2024-09-11 09:11:26.803201 2024-09-11 09:11:26.803212 plmef 10797 R rec 9add34ae-5110-4e1c-b3d8-db87be237456 +2024-09-11 09:11:26.865113 2024-09-11 09:11:26.865118 plmef 10798 R rec ddf7c1a9-0af3-41e6-81a8-f1f783aeb2eb +2024-09-11 09:11:26.924433 2024-09-11 09:11:26.924443 plmef 10799 R rec f32ac322-6db4-48f9-afdc-29d999c26e58 +2024-09-11 09:11:26.994498 2024-09-11 09:11:26.994509 plmef 10800 R rec 70fe41ef-e287-432d-8312-31cdbf85407b +2024-09-11 09:11:27.071974 2024-09-11 09:11:27.071978 plmef 10801 R rec a1282001-760b-4314-9435-8d943d197c8e +2024-09-11 09:11:27.141811 2024-09-11 09:11:27.141816 plmef 10802 R rec f73de455-289b-4d41-b8eb-56a6d28314c0 +2024-09-11 09:11:27.203926 2024-09-11 09:11:27.203936 plmef 10803 R rec 5b9475e0-c89c-44f1-8adf-0a8e48ad47dc +2024-09-11 09:11:27.27125 2024-09-11 09:11:27.27126 plmef 10804 R rec 9d842832-6804-4160-95f5-ed47c27b35d8 +2024-09-11 09:11:27.339578 2024-09-11 09:11:27.339589 plmef 10805 R rec a4ec25a0-9c0a-44fd-9bd4-664241a7aeee +2024-09-11 09:11:27.418573 2024-09-11 09:11:27.418588 plmef 10806 R rec ad25cdd9-818d-4d9d-a151-542376210d1e +2024-09-11 09:11:27.483637 2024-09-11 09:11:27.483647 plmef 10807 R rec 850aa821-1def-43fd-90aa-a1d0795a83c1 +2024-09-11 09:11:27.558075 2024-09-11 09:11:27.55808 plmef 10808 R rec 05217ecc-aa49-4403-8e24-631f8951c1b0 +2024-09-11 09:11:27.614041 2024-09-11 09:11:27.614046 plmef 10809 R rec 2146cc01-0449-4eea-b0cf-0d88ca6d614e +2024-09-11 09:11:27.673753 2024-09-11 09:11:27.673759 plmef 10810 R rec 66dc8e49-aadc-4671-b551-ac6a282f6042 +2024-09-11 09:11:27.731776 2024-09-11 09:11:27.731781 plmef 10811 R rec 239044c0-5e55-43d9-b277-9a02bf03efde +2024-09-11 09:11:27.79487 2024-09-11 09:11:27.794876 plmef 10812 R rec cdf54f4e-fd94-4317-a22d-56af6b4561ce +2024-09-11 09:11:27.851719 2024-09-11 09:11:27.851724 plmef 10813 R rec 50a029b1-8c14-4dd8-8e4e-42163fed06f9 +2024-09-11 09:11:27.916783 2024-09-11 09:11:27.916794 plmef 10814 R rec ef7377b0-cb01-4a80-986d-1edbaf339357 +2024-09-11 09:11:27.971699 2024-09-11 09:11:27.971704 plmef 10815 R rec 1f44cc17-5b83-491e-8535-1d97dbcb5b47 +2024-09-11 09:11:28.029421 2024-09-11 09:11:28.029432 plmef 10816 R rec 8e440093-bc76-4239-8d4e-9e13cf1ad034 +2024-09-11 09:11:28.108946 2024-09-11 09:11:28.108951 plmef 10817 R rec 29a6e9cf-a403-4e76-a495-acb304803c93 +2024-09-11 09:11:28.174186 2024-09-11 09:11:28.174197 plmef 10818 R rec e9120284-2ebb-47e6-a323-4370b302442f +2024-09-11 09:11:28.239145 2024-09-11 09:11:28.23915 plmef 10819 R rec 80d14a5a-98f0-499a-a897-48689b135f9c +2024-09-11 09:11:28.303075 2024-09-11 09:11:28.303086 plmef 10820 R rec 1036d84a-b125-4aa0-a531-59bf03fe2522 +2024-09-11 09:11:28.377385 2024-09-11 09:11:28.377391 plmef 10821 R rec 5fe0b2d6-beff-4d35-97e4-74b5c6165116 +2024-09-11 09:11:28.443515 2024-09-11 09:11:28.443525 plmef 10822 R rec d4b3c3b3-e0b2-4b57-bc57-efca80de4cc3 +2024-09-11 09:11:28.51876 2024-09-11 09:11:28.518764 plmef 10823 R rec ba701e1c-c9e6-4ba9-8bcf-af23ab653d54 +2024-09-11 09:11:28.58398 2024-09-11 09:11:28.583989 plmef 10824 R rec 8995cac0-c1f5-4a22-bb59-e3a1b013f580 +2024-09-11 09:11:28.634724 2024-09-11 09:11:28.634728 plmef 10825 R rec d84357a4-f975-4329-9cbc-6d25cbf982ac +2024-09-11 09:11:28.692557 2024-09-11 09:11:28.692566 plmef 10826 R rec c2fb1bfc-a14c-422c-ba4e-c54c6aadfd38 +2024-09-11 09:11:28.750593 2024-09-11 09:11:28.750598 plmef 10827 R rec 072a5334-f370-4497-815d-2d28313fe7b0 +2024-09-11 09:11:28.815883 2024-09-11 09:11:28.815893 plmef 10828 R rec 59e72dff-8e23-463b-8afb-5ad2396594a0 +2024-09-11 09:11:28.879695 2024-09-11 09:11:28.879706 plmef 10829 R rec 551a1730-69c7-4115-bdda-821780c94e38 +2024-09-11 09:11:28.942042 2024-09-11 09:11:28.942051 plmef 10830 R rec a05389d8-7278-48e6-a40b-7359e8342af5 +2024-09-11 09:11:29.002493 2024-09-11 09:11:29.002503 plmef 10831 R rec f0f97639-0d31-41d6-8cec-9cc587f7b05e +2024-09-11 09:11:29.064176 2024-09-11 09:11:29.064187 plmef 10832 R rec ca98a968-bf15-4c62-b157-69db197d5fd6 +2024-09-11 09:11:29.125666 2024-09-11 09:11:29.125672 plmef 10833 R rec 21a21037-a8f9-4ddd-b858-4838711e4dbb +2024-09-11 09:11:29.180697 2024-09-11 09:11:29.180702 plmef 10834 R rec 031b1d41-58e1-4f3b-a56c-84493f7f21f7 +2024-09-11 09:11:29.242599 2024-09-11 09:11:29.242605 plmef 10835 R rec b2e07c0e-9d0d-46a9-a342-e16ddb69f5b7 +2024-09-11 09:11:29.309888 2024-09-11 09:11:29.309894 plmef 10836 R rec 5b405c10-b123-49b4-a148-794c15c37f83 +2024-09-11 09:11:29.373578 2024-09-11 09:11:29.37359 plmef 10837 R rec ce82fa16-3d73-4d1a-b772-b953dea23c84 +2024-09-11 09:11:29.440507 2024-09-11 09:11:29.440512 plmef 10838 R rec 4d62154d-3f80-4e3d-bc3c-5487fecad967 +2024-09-11 09:11:29.497562 2024-09-11 09:11:29.497573 plmef 10839 R rec f513dd0f-a9e5-4cf5-a798-6cf574efb41b +2024-09-11 09:11:29.555469 2024-09-11 09:11:29.55548 plmef 10840 R rec 2e9e727e-f77f-4ac3-8cc7-aae59889fe79 +2024-09-11 09:11:29.62434 2024-09-11 09:11:29.62435 plmef 10841 R rec 101400b3-1411-4c63-9acd-4c96e3f99cb5 +2024-09-11 09:11:29.683169 2024-09-11 09:11:29.683179 plmef 10842 R rec ab94091b-f2a4-4d2f-9f30-2d4d00ed31da +2024-09-11 09:11:29.752723 2024-09-11 09:11:29.752728 plmef 10843 R rec 6a37a3ee-daa4-45db-8e98-48fd1c3e9b29 +2024-09-11 09:11:29.813082 2024-09-11 09:11:29.813093 plmef 10844 R rec 758f8d96-0ec5-48cd-9e75-e1beba37c68d +2024-09-11 09:11:29.885205 2024-09-11 09:11:29.885215 plmef 10845 R rec 85eb1afb-5e85-4c13-820d-d015475788e0 +2024-09-11 09:11:29.947754 2024-09-11 09:11:29.947763 plmef 10846 R rec 829a138c-e4e8-4588-b5ed-f359d7db0788 +2024-09-11 09:11:30.008033 2024-09-11 09:11:30.008038 plmef 10847 R rec 4ef26ade-c96b-4fe2-9b90-cc069f431798 +2024-09-11 09:11:30.067028 2024-09-11 09:11:30.067038 plmef 10848 R rec 3d1e5c28-8434-4d4f-bd3e-b2b82efd5640 +2024-09-11 09:11:30.125974 2024-09-11 09:11:30.12598 plmef 10849 R rec 85775746-2652-4379-b38c-f360626d9685 +2024-09-11 09:11:30.180945 2024-09-11 09:11:30.180955 plmef 10850 R rec 84527b80-8776-44e8-bbcc-706238d72894 +2024-09-11 09:11:30.239013 2024-09-11 09:11:30.239023 plmef 10851 R rec 7e5de204-73f1-4ee6-8f21-0f9ad97b145b +2024-09-11 09:11:30.29681 2024-09-11 09:11:30.296819 plmef 10852 R rec c0f52652-621d-4d0d-8a47-5ad513b158cf +2024-09-11 09:11:30.362396 2024-09-11 09:11:30.362406 plmef 10853 R rec bce2523e-c92a-4818-a6d5-9246ff800650 +2024-09-11 09:11:30.426033 2024-09-11 09:11:30.426043 plmef 10854 R rec bbae7e39-e157-4f5a-85c5-a3fc9c67df28 +2024-09-11 09:11:30.490978 2024-09-11 09:11:30.490988 plmef 10855 R rec 443ec164-39f3-4ad9-870a-da19c86ae7c6 +2024-09-11 09:11:30.567521 2024-09-11 09:11:30.567532 plmef 10856 R rec 53a8a242-b510-472e-9d03-c00ab243b4c5 +2024-09-11 09:11:30.624355 2024-09-11 09:11:30.62436 plmef 10857 R rec 34e34932-1faf-4e59-9664-c4bd40f0556b +2024-09-11 09:11:30.689859 2024-09-11 09:11:30.689869 plmef 10858 R rec 54973035-9fa9-441b-a144-c1aec29ba67d +2024-09-11 09:11:30.741982 2024-09-11 09:11:30.741989 plmef 10859 R rec 57a6d645-12e7-49f6-b0ff-3f194c0f6925 +2024-09-11 09:11:30.799116 2024-09-11 09:11:30.799129 plmef 10860 R rec dddf2e47-5a28-4cfe-9238-b958eaeb2f82 +2024-09-11 09:11:30.866793 2024-09-11 09:11:30.866804 plmef 10861 R rec d5617264-c38a-4aea-b517-7b939f53e2e1 +2024-09-11 09:11:30.930636 2024-09-11 09:11:30.930646 plmef 10862 R rec d8655a01-0830-4bb1-99bc-83218a3f13df +2024-09-11 09:11:30.991039 2024-09-11 09:11:30.991049 plmef 10863 R rec 2ccf3094-b338-4787-84aa-817b37824fd0 +2024-09-11 09:11:31.058814 2024-09-11 09:11:31.058825 plmef 10864 R rec 3c2abe07-a696-46c4-86a0-a2d4c6896c03 +2024-09-11 09:11:31.124659 2024-09-11 09:11:31.124664 plmef 10865 R rec 7e93d549-fee8-4127-96f0-8ca7ac0d3cab +2024-09-11 09:11:31.175554 2024-09-11 09:11:31.17556 plmef 10866 R rec 99091044-15f8-4096-8810-2de217d374c9 +2024-09-11 09:11:31.233798 2024-09-11 09:11:31.233803 plmef 10867 R rec 8c279659-4e58-4642-b133-7fd03d555d00 +2024-09-11 09:11:31.2951 2024-09-11 09:11:31.29511 plmef 10868 R rec ea5ce810-1781-4b7b-bf4a-05fa6501e2b3 +2024-09-11 09:11:31.355713 2024-09-11 09:11:31.355724 plmef 10869 R rec 3494aaa9-c5fc-475f-a810-dd77781ddc5b +2024-09-11 09:11:31.418999 2024-09-11 09:11:31.419009 plmef 10870 R rec feac9eb5-7617-4127-acc7-09fac2d551d2 +2024-09-11 09:11:31.478669 2024-09-11 09:11:31.47868 plmef 10871 R rec 31a4f0d1-ef5b-4836-8238-8b61dace783c +2024-09-11 09:11:31.541474 2024-09-11 09:11:31.541483 plmef 10872 R rec c81e0169-d08b-42ac-bee4-efcd72503d23 +2024-09-11 09:11:31.599517 2024-09-11 09:11:31.599521 plmef 10873 R rec a5b3b09b-1516-4e76-ab62-69da178f83ed +2024-09-11 09:11:31.656977 2024-09-11 09:11:31.656987 plmef 10874 R rec 0a665a9e-4f36-4388-aca4-71a2c5e62cb9 +2024-09-11 09:11:31.718702 2024-09-11 09:11:31.718707 plmef 10875 R rec 2fecf5d4-e2a1-450c-96f6-56c6202dbd4b +2024-09-11 09:11:31.77309 2024-09-11 09:11:31.773099 plmef 10876 R rec da172b34-5108-4ad1-bed2-11b446f77d7e +2024-09-11 09:11:31.852624 2024-09-11 09:11:31.852633 plmef 10877 R rec 3aff3b23-5bfc-41ca-a321-ac884cb228e0 +2024-09-11 09:11:31.919043 2024-09-11 09:11:31.919053 plmef 10878 R rec 2aa93a39-9658-4dcd-8fc7-2487abc17f64 +2024-09-11 09:11:31.987131 2024-09-11 09:11:31.987141 plmef 10879 R rec 71b76b99-482c-41bc-9c1d-c0cea369c7e4 +2024-09-11 09:11:32.053434 2024-09-11 09:11:32.053444 plmef 10880 R rec b4aa7647-9311-4024-9b4b-a129ba9bd594 +2024-09-11 09:11:32.111116 2024-09-11 09:11:32.111122 plmef 10881 R rec cfe0b79e-9124-44e1-bd0a-2f04c543e046 +2024-09-11 09:11:32.162099 2024-09-11 09:11:32.16211 plmef 10882 R rec 0d3db2f7-50f1-42b3-9739-66ede560cbbf +2024-09-11 09:11:32.219183 2024-09-11 09:11:32.219188 plmef 10883 R rec 3eb41fb4-a9cd-4cf7-acc3-596e73c4d02a +2024-09-11 09:11:32.27747 2024-09-11 09:11:32.277481 plmef 10884 R rec 4bca43e3-edc4-4840-b463-eb5b91205e86 +2024-09-11 09:11:32.343815 2024-09-11 09:11:32.343825 plmef 10885 R rec b3b35476-045a-4fbc-b963-1d6d939393fa +2024-09-11 09:11:32.419659 2024-09-11 09:11:32.41967 plmef 10886 R rec 71dfe890-de12-4736-aab8-91ad86f3e1dc +2024-09-11 09:11:32.482253 2024-09-11 09:11:32.482264 plmef 10887 R rec aceb5b6d-7a3f-47b9-99bc-c0266bc13378 +2024-09-11 09:11:32.539937 2024-09-11 09:11:32.539948 plmef 10888 R rec c03956f2-78b9-45be-ba2a-1b10091c665a +2024-09-11 09:11:32.601528 2024-09-11 09:11:32.601539 plmef 10889 R rec a19675b7-4371-4c58-95a3-23b3d91491c2 +2024-09-11 09:11:32.651098 2024-09-11 09:11:32.651104 plmef 10890 R rec 475287ee-c9ab-4949-95af-f1a7c6b3d498 +2024-09-11 09:11:32.705041 2024-09-11 09:11:32.705052 plmef 10891 R rec 635f6786-cb52-4a27-a9ee-a9c343d6422c +2024-09-11 09:11:32.761843 2024-09-11 09:11:32.761849 plmef 10892 R rec 1ab90310-8561-4f5a-84d6-7c27c4b3145c +2024-09-11 09:11:32.810085 2024-09-11 09:11:32.810091 plmef 10893 R rec 669bc59c-a571-4370-93e0-116a72d5fabc +2024-09-11 09:11:32.861021 2024-09-11 09:11:32.861032 plmef 10894 R rec 2eecedbf-9a0f-4334-ac42-2ec5ee2cc27c +2024-09-11 09:11:32.928667 2024-09-11 09:11:32.928672 plmef 10895 R rec 4c0700ee-7aa0-4b51-a1b6-beb12d4735bf +2024-09-11 09:11:32.995849 2024-09-11 09:11:32.995854 plmef 10896 R rec 2718aac2-e19b-42a6-931d-40b5a9651afd +2024-09-11 09:11:33.071529 2024-09-11 09:11:33.07154 plmef 10897 R rec 8b96e0ca-ae14-4136-9461-115471493426 +2024-09-11 09:11:33.133545 2024-09-11 09:11:33.13355 plmef 10898 R rec 62c7166e-64e2-4713-8390-e2ab80aab785 +2024-09-11 09:11:33.193607 2024-09-11 09:11:33.193618 plmef 10899 R rec 12a3b992-2008-42e6-b5c9-d05dc62c2ed4 +2024-09-11 09:11:33.248486 2024-09-11 09:11:33.248497 plmef 10900 R rec 22a7bda5-4d79-411c-b460-607290e94f0c +2024-09-11 09:11:33.314192 2024-09-11 09:11:33.314203 plmef 10901 R rec bbbd1b2f-4801-4b11-819a-207ff0a9b4d6 +2024-09-11 09:11:33.381782 2024-09-11 09:11:33.381793 plmef 10902 R rec 6b496851-e57f-4dd5-bd78-1f7a3162c05a +2024-09-11 09:11:33.446999 2024-09-11 09:11:33.447011 plmef 10903 R rec 70df4d82-3afc-495f-bd46-fc33c6d31422 +2024-09-11 09:11:33.51654 2024-09-11 09:11:33.516551 plmef 10904 R rec d60a401e-07ea-44af-9401-e81949d4b005 +2024-09-11 09:11:33.592406 2024-09-11 09:11:33.592422 plmef 10905 R rec 21584dbf-ef30-46aa-b22d-45f27479dc07 +2024-09-11 09:11:33.653395 2024-09-11 09:11:33.653401 plmef 10906 R rec d7b3cb88-95c5-40f6-ade1-2c98b4975824 +2024-09-11 09:11:33.720584 2024-09-11 09:11:33.720589 plmef 10907 R rec 1c29d77b-63ca-4f20-94d7-32e369e5eeae +2024-09-11 09:11:33.778726 2024-09-11 09:11:33.778736 plmef 10908 R rec 5c3f056b-8d4f-4dff-80f5-2e8fa7cfebce +2024-09-11 09:11:33.849165 2024-09-11 09:11:33.849176 plmef 10909 R rec 5368d935-b905-45dc-8a3b-b835d30e9d8f +2024-09-11 09:11:33.90406 2024-09-11 09:11:33.90407 plmef 10910 R rec d645f28b-7cb6-4b27-a761-c8a61693ceef +2024-09-11 09:11:33.963639 2024-09-11 09:11:33.96365 plmef 10911 R rec 248504c5-6a4b-4b4d-a27d-67c728e4031a +2024-09-11 09:11:34.024083 2024-09-11 09:11:34.024093 plmef 10912 R rec ea35aa51-c5cf-4228-ba76-f8de6674f25c +2024-09-11 09:11:34.099731 2024-09-11 09:11:34.099741 plmef 10913 R rec f62655f6-00bc-4b58-b987-cf8a3649ead5 +2024-09-11 09:11:34.178677 2024-09-11 09:11:34.178687 plmef 10914 R rec 19396c8d-6e58-49f0-8643-ad173602a99b +2024-09-11 09:11:34.245864 2024-09-11 09:11:34.245873 plmef 10915 R rec ce93e640-be80-404d-af7f-f46e61dcc652 +2024-09-11 09:11:34.310386 2024-09-11 09:11:34.310392 plmef 10916 R rec 26c38917-df15-404d-90c9-2e2df612411c +2024-09-11 09:11:34.374588 2024-09-11 09:11:34.374599 plmef 10917 R rec 650b84d2-4c34-4b39-aa9b-fc919cee4346 +2024-09-11 09:11:34.441351 2024-09-11 09:11:34.441362 plmef 10918 R rec e3e271ee-5840-4c95-9b3c-4f86b0667c6e +2024-09-11 09:11:34.516979 2024-09-11 09:11:34.516988 plmef 10919 R rec ff60966d-825d-469a-b91a-c95bcb31706f +2024-09-11 09:11:34.587036 2024-09-11 09:11:34.587047 plmef 10920 R rec 19c523e1-3752-4108-bfbc-71d6b4631e3d +2024-09-11 09:11:34.63878 2024-09-11 09:11:34.638785 plmef 10921 R rec ce687e6e-117e-4102-b0db-67081536889f +2024-09-11 09:11:34.694649 2024-09-11 09:11:34.69466 plmef 10922 R rec f3a9f61d-aa51-4505-b501-c998bc835481 +2024-09-11 09:11:34.76031 2024-09-11 09:11:34.760316 plmef 10923 R rec 594a2e07-3af0-4cc5-9f6d-ea841cc76c6f +2024-09-11 09:11:34.827741 2024-09-11 09:11:34.827746 plmef 10924 R rec d61b4dd2-5308-4f88-9286-2dbc0a8f17ce +2024-09-11 09:11:34.886595 2024-09-11 09:11:34.886639 plmef 10925 R rec c1c0f381-3d98-4f06-a3c6-c3a10477833f +2024-09-11 09:11:34.950547 2024-09-11 09:11:34.950557 plmef 10926 R rec da3d4314-83ab-430d-b344-5a727e387dfc +2024-09-11 09:11:35.017954 2024-09-11 09:11:35.017966 plmef 10927 R rec 9c6805de-4720-456f-a90e-2847276345ad +2024-09-11 09:11:35.076814 2024-09-11 09:11:35.076819 plmef 10928 R rec e8aa8881-13c6-4a0e-ab5a-45674ef50107 +2024-09-11 09:11:35.130632 2024-09-11 09:11:35.130637 plmef 10929 R rec 2ab01dd1-2fc2-4dff-adce-45279b6b907f +2024-09-11 09:11:35.189041 2024-09-11 09:11:35.189053 plmef 10930 R rec c8fc3873-e86f-456e-a754-a9a9887ff89f +2024-09-11 09:11:35.241906 2024-09-11 09:11:35.241912 plmef 10931 R rec 26a33ca1-5c67-49e1-aa6f-99b08cd9cf1f +2024-09-11 09:11:35.290686 2024-09-11 09:11:35.290698 plmef 10932 R rec fb98bcc9-164a-4ef0-8824-fb139815d9b9 +2024-09-11 09:11:35.352849 2024-09-11 09:11:35.35286 plmef 10933 R rec 3522f74c-2740-4df8-9f1d-9e795830ff8d +2024-09-11 09:11:35.417263 2024-09-11 09:11:35.417274 plmef 10934 R rec ef50bec9-e9d4-4fe9-bfca-67e18eab46cf +2024-09-11 09:11:35.487959 2024-09-11 09:11:35.487971 plmef 10935 R rec f81e1875-2c9c-42a1-8d3c-c5aeb1e3e7dc +2024-09-11 09:11:35.542824 2024-09-11 09:11:35.54283 plmef 10936 R rec 38304dfb-2f41-4189-85c8-f32ebe5a7316 +2024-09-11 09:11:35.62197 2024-09-11 09:11:35.621974 plmef 10937 R rec ec333b05-14b6-48ed-bf31-2d71f4b31f29 +2024-09-11 09:11:35.669628 2024-09-11 09:11:35.669633 plmef 10938 R rec b610274c-9c72-4f24-b57b-55148cecf85b +2024-09-11 09:11:35.71855 2024-09-11 09:11:35.718555 plmef 10939 R rec b392b2c1-2fcd-4337-89ad-f285b9d49b47 +2024-09-11 09:11:35.770321 2024-09-11 09:11:35.770332 plmef 10940 R rec f8bf197f-a178-4965-9dd5-d2778bc920a7 +2024-09-11 09:11:35.843693 2024-09-11 09:11:35.843704 plmef 10941 R rec 21bcbb55-f847-4bbe-aee2-9a8d0fa64de6 +2024-09-11 09:11:35.903888 2024-09-11 09:11:35.903898 plmef 10942 R rec 194b8577-7713-4e39-99f2-ef06cecb0fc5 +2024-09-11 09:11:35.964074 2024-09-11 09:11:35.96408 plmef 10943 R rec 3a37ea65-cdc5-4ba7-ac7f-e62070c2a9b0 +2024-09-11 09:11:36.019352 2024-09-11 09:11:36.019358 plmef 10944 R rec 7f992ccf-c9f2-4722-9072-1869b13d95f1 +2024-09-11 09:11:36.072544 2024-09-11 09:11:36.072554 plmef 10945 R rec 9898dcb9-4e73-4bcb-8e90-2d14f8a173f7 +2024-09-11 09:11:36.127736 2024-09-11 09:11:36.127741 plmef 10946 R rec 3a4c233f-b071-4c99-bace-ba2936a04f2e +2024-09-11 09:11:36.177695 2024-09-11 09:11:36.177706 plmef 10947 R rec fba273f7-830e-4950-bbb9-a4245a3ea56a +2024-09-11 09:11:36.231159 2024-09-11 09:11:36.231164 plmef 10948 R rec 40a28b06-c0e8-4d9c-a4cd-cbc2d9f9597c +2024-09-11 09:11:36.291413 2024-09-11 09:11:36.291418 plmef 10949 R rec 63f51219-630d-44df-ae68-14358b9dc566 +2024-09-11 09:11:36.338788 2024-09-11 09:11:36.338793 plmef 10950 R rec dd52d368-a75a-403b-8f50-023fc860261d +2024-09-11 09:11:36.400138 2024-09-11 09:11:36.400147 plmef 10951 R rec ac70b04a-cf85-4a04-92ad-9a8269b37e17 +2024-09-11 09:11:36.463505 2024-09-11 09:11:36.463516 plmef 10952 R rec 56a37684-2c5d-46e3-9671-68147dd28cbb +2024-09-11 09:11:36.525855 2024-09-11 09:11:36.525864 plmef 10953 R rec 63155858-a518-495d-8e10-495ffd31eb2a +2024-09-11 09:11:36.590702 2024-09-11 09:11:36.590712 plmef 10954 R rec 72ff62ef-95de-4e5c-bc4f-09e7a465c284 +2024-09-11 09:11:36.644952 2024-09-11 09:11:36.644957 plmef 10955 R rec 4661d5d2-9b79-42cf-95b4-ae9e2dabdff9 +2024-09-11 09:11:36.702848 2024-09-11 09:11:36.702858 plmef 10956 R rec 9340d224-6cb0-497a-8644-d2b8754f0e15 +2024-09-11 09:11:36.760678 2024-09-11 09:11:36.760684 plmef 10957 R rec 9255ebc2-2fed-423f-a6ba-695dff794c80 +2024-09-11 09:11:36.813236 2024-09-11 09:11:36.813246 plmef 10958 R rec 74d51c13-de84-459c-a942-c72d01c3b0c7 +2024-09-11 09:11:36.873383 2024-09-11 09:11:36.873404 plmef 10959 R rec fdc9f861-2b99-4277-bb2c-26698eb2c41d +2024-09-11 09:11:36.938755 2024-09-11 09:11:36.93876 plmef 10960 R rec eb1edb44-ab49-4df3-ba33-0725999d1eb4 +2024-09-11 09:11:37.000527 2024-09-11 09:11:37.000533 plmef 10961 R rec ba3bdca3-016a-4bb9-8250-d71da03eb7b0 +2024-09-11 09:11:37.060502 2024-09-11 09:11:37.060513 plmef 10962 R rec 4d3f180d-41e6-470c-9f82-bfe45b2a4f22 +2024-09-11 09:11:37.12423 2024-09-11 09:11:37.124235 plmef 10963 R rec eb7f4372-5be6-4acb-a4ce-4359770ffc7a +2024-09-11 09:11:37.17329 2024-09-11 09:11:37.173301 plmef 10964 R rec ff198dda-4ec1-4b8f-b271-ba223610fd19 +2024-09-11 09:11:37.235129 2024-09-11 09:11:37.235138 plmef 10965 R rec 3869f5bb-4ea4-4ac5-877d-1f7c6fcece7f +2024-09-11 09:11:37.291969 2024-09-11 09:11:37.291979 plmef 10966 R rec 21035758-ede3-4b97-97a5-996c259bf64d +2024-09-11 09:11:37.345837 2024-09-11 09:11:37.345846 plmef 10967 R rec f4331d53-1b74-4d42-8bc3-0e9e90e0880b +2024-09-11 09:11:37.404292 2024-09-11 09:11:37.404302 plmef 10968 R rec aed453d7-6e90-4849-8d06-addecf4b57ad +2024-09-11 09:11:37.458582 2024-09-11 09:11:37.458591 plmef 10969 R rec 5fd86f9b-4d8a-4d8f-a63a-172db3e6b537 +2024-09-11 09:11:37.529267 2024-09-11 09:11:37.529278 plmef 10970 R rec 83e3cc76-825c-40cf-9922-0e19597512c7 +2024-09-11 09:11:37.5898 2024-09-11 09:11:37.589809 plmef 10971 R rec c3eff399-83ad-44b1-844c-60717c367a02 +2024-09-11 09:11:37.65373 2024-09-11 09:11:37.653735 plmef 10972 R rec 30502589-c232-49cd-8ec4-4254cb12e1e3 +2024-09-11 09:11:37.714885 2024-09-11 09:11:37.71489 plmef 10973 R rec cecf0aff-076d-4b4a-a2dd-cc42885bb96c +2024-09-11 09:11:37.770542 2024-09-11 09:11:37.770547 plmef 10974 R rec 795cb231-239c-4997-a294-66d776804ade +2024-09-11 09:11:37.848766 2024-09-11 09:11:37.848777 plmef 10975 R rec 651ca5c0-6776-4d62-a63b-00c39e8460bb +2024-09-11 09:11:37.9064 2024-09-11 09:11:37.90641 plmef 10976 R rec 1633822e-2ea4-47aa-87ed-b6bbd49f5956 +2024-09-11 09:11:37.971999 2024-09-11 09:11:37.972009 plmef 10977 R rec f2976a49-022d-425a-a650-57ef8ac451c4 +2024-09-11 09:11:38.032098 2024-09-11 09:11:38.032108 plmef 10978 R rec bdbd2730-9ae1-40fb-8714-6536bff5b00d +2024-09-11 09:11:38.097274 2024-09-11 09:11:38.097279 plmef 10979 R rec faeddcc1-e640-4e65-ad03-bbb23cdb1ffc +2024-09-11 09:11:38.145921 2024-09-11 09:11:38.145931 plmef 10980 R rec 6c2fdc01-a399-4098-9932-643986d1fa61 +2024-09-11 09:11:38.205276 2024-09-11 09:11:38.205285 plmef 10981 R rec 2dc555e7-ef4e-4bdc-a5bb-b0312c8060fb +2024-09-11 09:11:38.25917 2024-09-11 09:11:38.259176 plmef 10982 R rec 0584516d-f8f0-48af-8c36-0f23b8a1115b +2024-09-11 09:11:38.321081 2024-09-11 09:11:38.321091 plmef 10983 R rec 9e990b67-6928-4da4-879f-94975ae4d90b +2024-09-11 09:11:38.383297 2024-09-11 09:11:38.38331 plmef 10984 R rec 351d982d-4627-418b-87ba-a731ea92c3ab +2024-09-11 09:11:38.446988 2024-09-11 09:11:38.446999 plmef 10985 R rec 8d924e92-3228-44e4-aa55-aa76ef8bcee5 +2024-09-11 09:11:38.507566 2024-09-11 09:11:38.507577 plmef 10986 R rec af342fd1-eb01-4b77-b803-cbf2d53f12dc +2024-09-11 09:11:38.567238 2024-09-11 09:11:38.56725 plmef 10987 R rec 6f355f47-0b96-4255-b885-bdb5c7df9e73 +2024-09-11 09:11:38.626056 2024-09-11 09:11:38.626062 plmef 10988 R rec 6520cee8-8969-4777-8b70-f681b17ff054 +2024-09-11 09:11:38.673737 2024-09-11 09:11:38.673748 plmef 10989 R rec eec0d95b-cb9f-4fdc-a935-fc250b88ac00 +2024-09-11 09:11:38.742714 2024-09-11 09:11:38.742724 plmef 10990 R rec 1f624018-672f-4cc9-bad4-4074412b4195 +2024-09-11 09:11:38.813991 2024-09-11 09:11:38.814001 plmef 10991 R rec c6b3507c-acc9-4b5a-ac94-339bbe0420d1 +2024-09-11 09:11:38.896717 2024-09-11 09:11:38.896722 plmef 10992 R rec 4c1e9301-6907-4037-bfc2-4c0293229905 +2024-09-11 09:11:38.966357 2024-09-11 09:11:38.966367 plmef 10993 R rec 50c3fd35-7b17-4d9a-97d2-4ca2ac0c419f +2024-09-11 09:11:39.037251 2024-09-11 09:11:39.037257 plmef 10994 R rec d42f231a-8cbe-4f3b-b8df-da57bd67cfd8 +2024-09-11 09:11:39.096557 2024-09-11 09:11:39.096568 plmef 10995 R rec 15547554-1e27-4006-9275-9463f900f30c +2024-09-11 09:11:39.147673 2024-09-11 09:11:39.147678 plmef 10996 R rec ffb368ce-3a36-4065-8e42-2961d530ca9e +2024-09-11 09:11:39.200975 2024-09-11 09:11:39.20098 plmef 10997 R rec 4adb2494-5f12-4c12-8c30-2034e65763a0 +2024-09-11 09:11:39.255723 2024-09-11 09:11:39.255734 plmef 10998 R rec 034f5ad6-18b3-4c89-a943-45152400ae9b +2024-09-11 09:11:39.320557 2024-09-11 09:11:39.320568 plmef 10999 R rec 4208b487-217a-4246-a9af-46555eb43bc9 +2024-09-11 09:11:39.379362 2024-09-11 09:11:39.379373 plmef 11000 R rec 36b14143-9d2c-4f17-93a9-62711c39ad83 +2024-09-11 09:11:39.444836 2024-09-11 09:11:39.444848 plmef 11001 R rec 6388dfa3-0e65-4205-b9c6-084880049823 +2024-09-11 09:11:39.503692 2024-09-11 09:11:39.503702 plmef 11002 R rec 09e50b74-f9da-4112-84a9-f8bd83aa3b64 +2024-09-11 09:11:39.56728 2024-09-11 09:11:39.567291 plmef 11003 R rec 24d2e7f8-b505-4acb-97ad-f62872dddeed +2024-09-11 09:11:39.628922 2024-09-11 09:11:39.628927 plmef 11004 R rec 480669fa-538c-4346-a4b8-900563e61eb9 +2024-09-11 09:11:39.677616 2024-09-11 09:11:39.677621 plmef 11005 R rec 9bf1a5cb-4ed9-4b8b-8779-c39a12f15789 +2024-09-11 09:11:39.733833 2024-09-11 09:11:39.733838 plmef 11006 R rec f7d348bd-5928-4897-ae67-000cb0b85294 +2024-09-11 09:11:39.806311 2024-09-11 09:11:39.806321 plmef 11007 R rec 1b9bd6d6-d695-4910-8147-12878a8d7dbf +2024-09-11 09:11:39.868826 2024-09-11 09:11:39.868837 plmef 11008 R rec 5b82d532-957d-413f-8c61-8aa797ed3a68 +2024-09-11 09:11:39.931769 2024-09-11 09:11:39.931774 plmef 11009 R rec babd8e48-c78a-4d05-a831-4e458ed3dbd1 +2024-09-11 09:11:39.988924 2024-09-11 09:11:39.988935 plmef 11010 R rec b7bc356e-416a-4f35-9fcd-8fdea0fa5552 +2024-09-11 09:11:40.054107 2024-09-11 09:11:40.054117 plmef 11011 R rec fe229389-5228-4482-a4f2-2f80d063a8f2 +2024-09-11 09:11:40.114929 2024-09-11 09:11:40.11494 plmef 11012 R rec 1e6b6979-1dab-47a3-bfaf-1515e80affae +2024-09-11 09:11:40.176477 2024-09-11 09:11:40.176489 plmef 11013 R rec 78bc1f4f-0719-4789-abd8-0f8e36a191eb +2024-09-11 09:11:40.245408 2024-09-11 09:11:40.245419 plmef 11014 R rec ada12808-71af-4f74-8e1d-a23200fe2261 +2024-09-11 09:11:40.310836 2024-09-11 09:11:40.310846 plmef 11015 R rec b3fcd533-8f53-498a-8f2e-2f64bb877f7b +2024-09-11 09:11:40.370303 2024-09-11 09:11:40.370312 plmef 11016 R rec 22d87602-6738-40e8-bb5a-78d2ede8ffe2 +2024-09-11 09:11:40.432689 2024-09-11 09:11:40.432729 plmef 11017 R rec a12a13bf-b0d9-44da-a022-e252df4215d3 +2024-09-11 09:11:40.493523 2024-09-11 09:11:40.493529 plmef 11018 R rec 562419ad-9dab-4e0f-888a-9bff5af26421 +2024-09-11 09:11:40.555081 2024-09-11 09:11:40.555092 plmef 11019 R rec e64a2436-03b0-401f-96ed-97d01b281fdc +2024-09-11 09:11:40.61948 2024-09-11 09:11:40.61949 plmef 11020 R rec 7fc0ce6c-0149-4459-bfda-e38958b77796 +2024-09-11 09:11:40.670545 2024-09-11 09:11:40.67055 plmef 11021 R rec c06c5df8-916b-4cd9-a082-4182cdf901b2 +2024-09-11 09:11:40.722713 2024-09-11 09:11:40.722718 plmef 11022 R rec 92be960f-3187-4cad-8e91-33303296fa08 +2024-09-11 09:11:40.77568 2024-09-11 09:11:40.77569 plmef 11023 R rec 198ca550-7f00-4160-b650-6ab00ce2851d +2024-09-11 09:11:40.844212 2024-09-11 09:11:40.844223 plmef 11024 R rec f004f66c-22db-4a7e-a8da-d4307203eed1 +2024-09-11 09:11:40.900323 2024-09-11 09:11:40.900328 plmef 11025 R rec c425cb4a-f53e-4415-a5bc-e268f6eba0d8 +2024-09-11 09:11:40.956518 2024-09-11 09:11:40.956522 plmef 11026 R rec 73bfcaf9-76d3-405b-902b-ead268d9e732 +2024-09-11 09:11:41.020645 2024-09-11 09:11:41.020655 plmef 11027 R rec 6bd763c7-d408-424a-bb0b-7a04de799689 +2024-09-11 09:11:41.082808 2024-09-11 09:11:41.082819 plmef 11028 R rec f3d4ae14-138c-4721-89f0-ab972430a349 +2024-09-11 09:11:41.138826 2024-09-11 09:11:41.138831 plmef 11029 R rec 4abaf084-6ee0-4736-94f1-5911b91a29d0 +2024-09-11 09:11:41.192273 2024-09-11 09:11:41.192283 plmef 11030 R rec f771dc19-60dd-464e-88e9-00dc9b9266a1 +2024-09-11 09:11:41.246921 2024-09-11 09:11:41.246932 plmef 11031 R rec fb1bafad-caa6-4659-81f2-9b9d483d6432 +2024-09-11 09:11:41.305434 2024-09-11 09:11:41.305444 plmef 11032 R rec f269d246-b97d-4ddd-b21e-6c5188166259 +2024-09-11 09:11:41.367843 2024-09-11 09:11:41.367854 plmef 11033 R rec 75adcf93-a3c1-43c8-953a-ec8345d744e9 +2024-09-11 09:11:41.429586 2024-09-11 09:11:41.429597 plmef 11034 R rec 11e22522-ae21-4364-9add-8c1402764275 +2024-09-11 09:11:41.4991 2024-09-11 09:11:41.499111 plmef 11035 R rec d3afcab8-700d-4aad-b98c-fda30b7eb06d +2024-09-11 09:11:41.562915 2024-09-11 09:11:41.562924 plmef 11036 R rec 6139d475-33c6-47f5-b9ab-2a9d6c5608e5 +2024-09-11 09:11:41.626999 2024-09-11 09:11:41.627005 plmef 11037 R rec ab28c9ba-7d82-45f4-87c1-4fa291acde64 +2024-09-11 09:11:41.678836 2024-09-11 09:11:41.678847 plmef 11038 R rec 404ccdac-d699-4c02-b372-7787191f6948 +2024-09-11 09:11:41.734681 2024-09-11 09:11:41.734686 plmef 11039 R rec 85c5442a-9ee1-48ab-856f-a293585bbe2c +2024-09-11 09:11:41.790148 2024-09-11 09:11:41.79016 plmef 11040 R rec 7aba10a3-4cfc-4b52-b242-a25675d2cdec +2024-09-11 09:11:41.850739 2024-09-11 09:11:41.85075 plmef 11041 R rec 5938d277-b54e-4aa7-a44d-9c2437f47ef9 +2024-09-11 09:11:41.915906 2024-09-11 09:11:41.915911 plmef 11042 R rec 33d8063b-bffa-4f9d-9cbb-6b4f86985260 +2024-09-11 09:11:41.977335 2024-09-11 09:11:41.97734 plmef 11043 R rec 26b76743-60df-4899-8cf3-c2d67df27563 +2024-09-11 09:11:42.03958 2024-09-11 09:11:42.039602 plmef 11044 R rec 4585ca5c-c6f0-43b6-9a47-a176d7db1a65 +2024-09-11 09:11:42.106188 2024-09-11 09:11:42.106198 plmef 11045 R rec 2457643f-3e4b-4044-a671-606c36a943aa +2024-09-11 09:11:42.171727 2024-09-11 09:11:42.171737 plmef 11046 R rec 742415dd-c1bc-4c82-a93e-36ea0cd98b81 +2024-09-11 09:11:42.233624 2024-09-11 09:11:42.233634 plmef 11047 R rec 20e06094-5bcf-4a9d-abc9-fec66c488a0c +2024-09-11 09:11:42.296552 2024-09-11 09:11:42.296563 plmef 11048 R rec a02c08af-ffbf-4540-8498-c2a854c673b4 +2024-09-11 09:11:42.357829 2024-09-11 09:11:42.35784 plmef 11049 R rec 724647eb-d323-42fa-a684-172afd862727 +2024-09-11 09:11:42.41821 2024-09-11 09:11:42.41822 plmef 11050 R rec 6af16d5d-cbe1-49b2-a02f-1c3e380c0202 +2024-09-11 09:11:42.48536 2024-09-11 09:11:42.485376 plmef 11051 R rec bd30f2fc-af71-4fe6-9acf-1eaf58b14244 +2024-09-11 09:11:42.546803 2024-09-11 09:11:42.546813 plmef 11052 R rec 467017eb-1416-42ed-94be-67e50cb903b2 +2024-09-11 09:11:42.621164 2024-09-11 09:11:42.621176 plmef 11053 R rec 378936df-6cb4-4eee-8209-e19315ba2535 +2024-09-11 09:11:42.685974 2024-09-11 09:11:42.685984 plmef 11054 R rec e0a6bd79-fb6b-40b7-b191-7189e4ce23cc +2024-09-11 09:11:42.744623 2024-09-11 09:11:42.744628 plmef 11055 R rec 2c96fee0-7bf2-4ea3-8f63-8f8eebd4135a +2024-09-11 09:11:42.817072 2024-09-11 09:11:42.817091 plmef 11056 R rec 892c6e82-b7a6-4eb7-a18b-10b072bf2d7b +2024-09-11 09:11:42.873916 2024-09-11 09:11:42.873921 plmef 11057 R rec bb8b2f04-8fed-4a49-9c6a-306baee3ddac +2024-09-11 09:11:42.933421 2024-09-11 09:11:42.933426 plmef 11058 R rec 8e49409a-c5d4-492b-840c-95e4f365290a +2024-09-11 09:11:42.988501 2024-09-11 09:11:42.988511 plmef 11059 R rec 188f65f7-5346-4544-9f9b-1e68566a10db +2024-09-11 09:11:43.050893 2024-09-11 09:11:43.050904 plmef 11060 R rec 90ae8b9d-9b29-4185-9f0d-11a6fac26b3d +2024-09-11 09:11:43.111242 2024-09-11 09:11:43.111252 plmef 11061 R rec ae5965c4-6e22-4ef0-a542-d4c67afc677e +2024-09-11 09:11:43.164144 2024-09-11 09:11:43.164149 plmef 11062 R rec c3e0a3e5-3cf3-4455-ae32-f5d83d16ec06 +2024-09-11 09:11:43.209513 2024-09-11 09:11:43.209518 plmef 11063 R rec 7b697a61-0132-49ae-a439-0f6d4da9ac94 +2024-09-11 09:11:43.257167 2024-09-11 09:11:43.257173 plmef 11064 R rec 71273ce7-68ee-4685-927f-649d0beb79ea +2024-09-11 09:11:43.314739 2024-09-11 09:11:43.314745 plmef 11065 R rec 9912419e-6035-4569-8c47-c6e42d328259 +2024-09-11 09:11:43.38681 2024-09-11 09:11:43.386821 plmef 11066 R rec 91bfcc7d-e3d5-44de-8d9e-0b93b7dfc53b +2024-09-11 09:11:43.445232 2024-09-11 09:11:43.445243 plmef 11067 R rec c0aa5b70-d9f7-4d91-9f14-0bb37df1c8bd +2024-09-11 09:11:43.49685 2024-09-11 09:11:43.496856 plmef 11068 R rec 417522cb-ffb3-4e73-8c4e-fe6f463009da +2024-09-11 09:11:43.545849 2024-09-11 09:11:43.545854 plmef 11069 R rec f32df3c9-3294-4023-8312-5d60236f1185 +2024-09-11 09:11:43.604343 2024-09-11 09:11:43.604348 plmef 11070 R rec 51d3fe36-9ada-493c-8fd2-561630588b08 +2024-09-11 09:11:43.654392 2024-09-11 09:11:43.654398 plmef 11071 R rec 22f73e89-ec9d-4878-93bd-dbe192ab1b4b +2024-09-11 09:11:43.708897 2024-09-11 09:11:43.708903 plmef 11072 R rec f4fa9339-d2e1-4c12-9694-3dd09fafbb34 +2024-09-11 09:11:43.768937 2024-09-11 09:11:43.768949 plmef 11073 R rec 1c4ec3b5-49fe-43f4-a94f-8d1b82f50371 +2024-09-11 09:11:43.835073 2024-09-11 09:11:43.835078 plmef 11074 R rec fd0b5afb-447b-4c62-9372-9b53d13df680 +2024-09-11 09:11:43.90343 2024-09-11 09:11:43.903439 plmef 11075 R rec 7f3c457e-2dbd-45e7-8104-b83922a05b16 +2024-09-11 09:11:43.966388 2024-09-11 09:11:43.966393 plmef 11076 R rec 64941d4e-a070-4253-a715-82e56b95c170 +2024-09-11 09:11:44.021543 2024-09-11 09:11:44.021547 plmef 11077 R rec 5f1373e0-dd80-48a8-bb7d-7f673a14af69 +2024-09-11 09:11:45.792301 2024-09-11 09:11:45.792307 plmef 11078 R rec 5b7a27c5-8e92-4273-b876-d0e857610b80 +2024-09-11 09:11:45.852638 2024-09-11 09:11:45.852643 plmef 11079 R rec 6551ee34-ccae-4fab-86cb-d0ba1cdf11a5 +2024-09-11 09:11:45.909183 2024-09-11 09:11:45.909189 plmef 11080 R rec 48953dd0-b283-4dce-87c0-e88c354a7d6c +2024-09-11 09:11:45.955152 2024-09-11 09:11:45.955158 plmef 11081 R rec 9568c45c-7bae-4bc1-a7a4-46b3b3bf7d91 +2024-09-11 09:11:46.000015 2024-09-11 09:11:46.00002 plmef 11082 R rec 2df4eecc-069b-495a-bf54-64bb615094d1 +2024-09-11 09:11:46.049909 2024-09-11 09:11:46.049915 plmef 11083 R rec 38f4deca-78ce-4324-8011-5f10bd459208 +2024-09-11 09:11:46.101236 2024-09-11 09:11:46.101241 plmef 11084 R rec 54b96e3d-effa-4030-80eb-344ab8e9f49e +2024-09-11 09:11:46.188708 2024-09-11 09:11:46.188717 plmef 11085 R rec 99231be8-41e8-4357-9e62-4ae4c534a970 +2024-09-11 09:11:46.249278 2024-09-11 09:11:46.249288 plmef 11086 R rec 5bb01a31-01a8-419f-aa28-cb9a719d8462 +2024-09-11 09:11:46.320703 2024-09-11 09:11:46.320714 plmef 11087 R rec b57371eb-abc2-4285-b700-7b3158e3055e +2024-09-11 09:11:46.396401 2024-09-11 09:11:46.396411 plmef 11088 R rec 3bcb019b-20c3-4746-89ad-2e4ffc3df623 +2024-09-11 09:11:46.465542 2024-09-11 09:11:46.465551 plmef 11089 R rec d39a9849-31d3-40b5-bcb6-8ec6617fcc98 +2024-09-11 09:11:46.532614 2024-09-11 09:11:46.53262 plmef 11090 R rec fcfe432e-a0cc-4a23-9dca-f1421d47602d +2024-09-11 09:11:46.598701 2024-09-11 09:11:46.59871 plmef 11091 R rec 95c5316a-43cc-4228-9e2e-4629807bc5cb +2024-09-11 09:11:46.663189 2024-09-11 09:11:46.6632 plmef 11092 R rec de4fa2a4-9586-445e-ae75-9d6283c4e708 +2024-09-11 09:11:46.734994 2024-09-11 09:11:46.735005 plmef 11093 R rec a337b1ad-0ce7-4d17-9163-9679a8bdc3e0 +2024-09-11 09:11:46.803092 2024-09-11 09:11:46.803103 plmef 11094 R rec 71ccf432-96a6-4b3f-be11-9c296ecbc390 +2024-09-11 09:11:46.866869 2024-09-11 09:11:46.866891 plmef 11095 R rec 9104756e-c8b0-426f-be41-1b2d476728c6 +2024-09-11 09:11:46.921175 2024-09-11 09:11:46.92118 plmef 11096 R rec d6a9c0b6-cc5b-42e4-8532-a83175ec7a79 +2024-09-11 09:11:46.980135 2024-09-11 09:11:46.980148 plmef 11097 R rec b7c877cd-0441-4b4e-bce3-f4e5c42512a2 +2024-09-11 09:11:47.061496 2024-09-11 09:11:47.061501 plmef 11098 R rec 6d5115bc-6966-4a7a-bc03-d7737c7e6fda +2024-09-11 09:11:47.116558 2024-09-11 09:11:47.116562 plmef 11099 R rec 89e13f79-4ef2-4443-acd2-cb5240d26f7a +2024-09-11 09:11:47.165074 2024-09-11 09:11:47.165084 plmef 11100 R rec b4b041e7-8072-4c9c-b68a-412b22ad9eb1 +2024-09-11 09:11:47.223857 2024-09-11 09:11:47.223863 plmef 11101 R rec b67bd2c5-873e-453e-8224-8b45b3becb7d +2024-09-11 09:11:47.275536 2024-09-11 09:11:47.275541 plmef 11102 R rec 69682510-1c8f-4840-ba9b-6098e058dea8 +2024-09-11 09:11:47.34102 2024-09-11 09:11:47.341032 plmef 11103 R rec e08fa7ae-7035-4710-9cc2-1475bdf3fd7f +2024-09-11 09:11:47.402194 2024-09-11 09:11:47.402199 plmef 11104 R rec ce89406e-7d18-47cc-aeab-5cfc18480c4c +2024-09-11 09:11:47.465203 2024-09-11 09:11:47.465213 plmef 11105 R rec e92d55da-ed8a-43cf-9500-b207f469e576 +2024-09-11 09:11:47.529277 2024-09-11 09:11:47.529288 plmef 11106 R rec 363ae616-4550-4d22-87c2-e86f644a8ec9 +2024-09-11 09:11:47.588479 2024-09-11 09:11:47.588484 plmef 11107 R rec c708f55f-e46c-405c-bce6-49d4888b0a05 +2024-09-11 09:11:47.638471 2024-09-11 09:11:47.638476 plmef 11108 R rec eec536c4-5618-4cc1-b42d-37b092eac507 +2024-09-11 09:11:47.695725 2024-09-11 09:11:47.695737 plmef 11109 R rec 7cee7298-8d2f-4038-9cda-a9b5a5e203fd +2024-09-11 09:11:47.742317 2024-09-11 09:11:47.742322 plmef 11110 R rec 7de8a3e9-31b8-48ff-919c-1fb8d8b175c8 +2024-09-11 09:11:47.789971 2024-09-11 09:11:47.789976 plmef 11111 R rec c6ef0de7-e511-4b4d-8471-b43bbe0e2f9a +2024-09-11 09:11:47.870753 2024-09-11 09:11:47.870759 plmef 11112 R rec b3f7fc16-1956-4830-8d54-f560f98934a9 +2024-09-11 09:11:48.073844 2024-09-11 09:11:48.073854 plmef 11113 R rec f2be1c02-1ddc-4c3f-85ea-34e39bf8fa6f +2024-09-11 09:11:48.137403 2024-09-11 09:11:48.137409 plmef 11114 R rec dec92430-7528-480f-abeb-e99b2812be5a +2024-09-11 09:11:48.191515 2024-09-11 09:11:48.191526 plmef 11115 R rec 1e56c06c-6041-4ff7-b8a8-4eee7b43278d +2024-09-11 09:11:48.249987 2024-09-11 09:11:48.249993 plmef 11116 R rec 35978273-6611-40c0-83c5-958c009972fc +2024-09-11 09:11:48.317934 2024-09-11 09:11:48.317945 plmef 11117 R rec f362723b-3ec8-466d-971c-62ee225fe3cc +2024-09-11 09:11:48.387451 2024-09-11 09:11:48.387464 plmef 11118 R rec 2384d750-ddd5-41c0-9961-9a13ca797e6f +2024-09-11 09:11:48.440076 2024-09-11 09:11:48.440081 plmef 11119 R rec 5a087033-c080-43e9-ad1c-0a4078f05cfd +2024-09-11 09:11:48.492041 2024-09-11 09:11:48.492046 plmef 11120 R rec 49a8a5d7-82dd-458c-bf55-c141b1dd05a9 +2024-09-11 09:11:48.556239 2024-09-11 09:11:48.556244 plmef 11121 R rec 031051d4-8a44-4476-a13c-38fceb5f29cf +2024-09-11 09:11:48.609593 2024-09-11 09:11:48.609598 plmef 11122 R rec 41b30214-7b72-462b-82d7-894cfb57a585 +2024-09-11 09:11:48.661506 2024-09-11 09:11:48.661511 plmef 11123 R rec 5222cad9-5717-49f9-8486-fce1705ab7c1 +2024-09-11 09:11:48.719658 2024-09-11 09:11:48.719662 plmef 11124 R rec 62c192d7-1a08-498f-931b-aff29de9d381 +2024-09-11 09:11:48.78838 2024-09-11 09:11:48.788384 plmef 11125 R rec 11d5277b-7d44-4b6b-9500-40f146a8d5a2 +2024-09-11 09:11:48.85474 2024-09-11 09:11:48.85475 plmef 11126 R rec 41624f0d-0c97-4df0-93fb-573286c28708 +2024-09-11 09:11:48.918829 2024-09-11 09:11:48.918839 plmef 11127 R rec 95937b0a-a339-4bfd-90e9-969d6b5ce29e +2024-09-11 09:11:48.984868 2024-09-11 09:11:48.984877 plmef 11128 R rec 67415291-4286-45e7-b79f-3b8c49386efb +2024-09-11 09:11:49.042379 2024-09-11 09:11:49.042389 plmef 11129 R rec ddc54e5b-31b4-444e-9029-0643c34a5b67 +2024-09-11 09:11:49.104753 2024-09-11 09:11:49.104764 plmef 11130 R rec c5fd4b76-758f-4b5b-968f-f265be5efc3d +2024-09-11 09:11:49.158706 2024-09-11 09:11:49.158712 plmef 11131 R rec afed1697-5a06-4f40-9223-60f1b12ff527 +2024-09-11 09:11:49.217238 2024-09-11 09:11:49.217243 plmef 11132 R rec ae907014-157a-43e9-92f6-7a4197365228 +2024-09-11 09:11:49.275985 2024-09-11 09:11:49.275989 plmef 11133 R rec 4dae8f7b-6316-4b09-9fb8-26dabc157fb7 +2024-09-11 09:11:49.354207 2024-09-11 09:11:49.354217 plmef 11134 R rec 527a9680-32bb-4ae2-a4f1-af1671f809a3 +2024-09-11 09:11:49.459419 2024-09-11 09:11:49.45943 plmef 11135 R rec 79a61e8e-efa4-4c0e-9ab2-7247711db137 +2024-09-11 09:11:49.532762 2024-09-11 09:11:49.532774 plmef 11136 R rec 5c456c57-7482-4787-aa6c-d89d47f0808c +2024-09-11 09:11:49.58832 2024-09-11 09:11:49.588326 plmef 11137 R rec 0e25f441-0431-4e68-8a41-f24c752220e3 +2024-09-11 09:11:49.642402 2024-09-11 09:11:49.642408 plmef 11138 R rec cf0deae2-bbe0-4a69-bbdd-58ef1505be52 +2024-09-11 09:11:49.700766 2024-09-11 09:11:49.70077 plmef 11139 R rec 63749a13-985e-4d39-8d00-8544f217209f +2024-09-11 09:11:49.771218 2024-09-11 09:11:49.771227 plmef 11140 R rec a371590d-092d-49d5-a657-49249746b78f +2024-09-11 09:11:49.83686 2024-09-11 09:11:49.836865 plmef 11141 R rec cf1ae5eb-d404-42eb-b566-263153194361 +2024-09-11 09:11:49.895987 2024-09-11 09:11:49.895997 plmef 11142 R rec 95fc5c52-cbe7-4764-a280-12e1f27d5e3f +2024-09-11 09:11:49.967445 2024-09-11 09:11:49.967456 plmef 11143 R rec 134c4cca-bcf0-4a32-868b-75f37572be42 +2024-09-11 09:11:50.054432 2024-09-11 09:11:50.054437 plmef 11144 R rec f9b0719e-651c-4229-b3f9-66d81ac55f97 +2024-09-11 09:11:50.117669 2024-09-11 09:11:50.117679 plmef 11145 R rec 17a886bf-8162-4f73-8e03-1674e208c81d +2024-09-11 09:11:50.169194 2024-09-11 09:11:50.169199 plmef 11146 R rec 4e6b6e17-3074-4153-9157-e343a8e635e8 +2024-09-11 09:11:50.229875 2024-09-11 09:11:50.22988 plmef 11147 R rec 0c83cecd-8d6b-4e8f-b622-d5f3af2da822 +2024-09-11 09:11:50.289808 2024-09-11 09:11:50.289823 plmef 11148 R rec 64569335-c1bd-4ec8-aef6-e3d64188b1a8 +2024-09-11 09:11:50.362245 2024-09-11 09:11:50.36225 plmef 11149 R rec 0af36ad0-e8f4-4140-a01f-204711682c67 +2024-09-11 09:11:50.421368 2024-09-11 09:11:50.421378 plmef 11150 R rec 71e8feb3-127e-4f65-8208-5887c9ad92c2 +2024-09-11 09:11:50.495804 2024-09-11 09:11:50.495816 plmef 11151 R rec d3a29ecb-6cd2-4aec-8969-16200481a9c9 +2024-09-11 09:11:50.564233 2024-09-11 09:11:50.564237 plmef 11152 R rec c387de46-dd1d-4cf6-be25-98be3bbf8518 +2024-09-11 09:11:50.637505 2024-09-11 09:11:50.637511 plmef 11153 R rec e216bb8c-90a3-4520-a7e9-54744929d319 +2024-09-11 09:11:50.714042 2024-09-11 09:11:50.714054 plmef 11154 R rec 5a45b6be-72f4-437a-a9e6-0ec509f534de +2024-09-11 09:11:50.796064 2024-09-11 09:11:50.796077 plmef 11155 R rec 6d2d6ab1-bbc4-4a69-a961-664b45f5ef66 +2024-09-11 09:11:50.868556 2024-09-11 09:11:50.868561 plmef 11156 R rec dba8f29b-f41b-4f38-8946-2fae8ff88f18 +2024-09-11 09:11:50.936485 2024-09-11 09:11:50.936496 plmef 11157 R rec 9fd71b4d-c8fc-47f2-8554-2f017afcb17b +2024-09-11 09:11:51.007498 2024-09-11 09:11:51.007503 plmef 11158 R rec c4d01c77-c534-4f72-98d3-248b24f4eedc +2024-09-11 09:11:51.069777 2024-09-11 09:11:51.069787 plmef 11159 R rec 91adef4c-29e0-493a-a8e4-7ba1f2db6d5d +2024-09-11 09:11:51.128765 2024-09-11 09:11:51.128774 plmef 11160 R rec b189e307-db31-4ec9-bedd-84eef1c0198c +2024-09-11 09:11:51.184979 2024-09-11 09:11:51.184983 plmef 11161 R rec d909b8f4-94b1-4dc8-ac4c-0e04e7431835 +2024-09-11 09:11:51.238724 2024-09-11 09:11:51.238729 plmef 11162 R rec 63c1acdd-9332-459b-ae12-d2998f6f56fb +2024-09-11 09:11:51.305196 2024-09-11 09:11:51.305201 plmef 11163 R rec 6b3d8a1b-8772-47e6-b7cb-64aea94d8a00 +2024-09-11 09:11:51.36919 2024-09-11 09:11:51.369203 plmef 11164 R rec 5e80b45a-de7b-42d9-8ac2-7d00de2b3f13 +2024-09-11 09:11:51.441239 2024-09-11 09:11:51.441249 plmef 11165 R rec 52d3a187-0306-48cc-9388-7964953f02a2 +2024-09-11 09:11:51.503026 2024-09-11 09:11:51.503036 plmef 11166 R rec 655c9671-58fc-415d-88a5-c6ca504bc866 +2024-09-11 09:11:51.575845 2024-09-11 09:11:51.57585 plmef 11167 R rec 6b84afce-3f96-4dd9-a9b1-b72b8469c452 +2024-09-11 09:11:51.639864 2024-09-11 09:11:51.639869 plmef 11168 R rec 75819564-41c3-483e-96a5-bb717d470640 +2024-09-11 09:11:51.699008 2024-09-11 09:11:51.699019 plmef 11169 R rec 49226770-485e-455b-add9-40fad7685979 +2024-09-11 09:11:51.785292 2024-09-11 09:11:51.785303 plmef 11170 R rec 17c0f7d9-8129-41b2-a7ed-45ed0a58dc1b +2024-09-11 09:11:51.868967 2024-09-11 09:11:51.868971 plmef 11171 R rec 484df67c-7c23-42bb-bde9-5410362b33f0 +2024-09-11 09:11:51.928514 2024-09-11 09:11:51.928524 plmef 11172 R rec 2f43d895-4e90-4807-8e16-4ffc8d0dd78c +2024-09-11 09:11:52.000577 2024-09-11 09:11:52.000583 plmef 11173 R rec f6a44a1c-f3b5-48a6-b6e9-2491e920900d +2024-09-11 09:11:52.069068 2024-09-11 09:11:52.069073 plmef 11174 R rec 83a5d5b9-d684-483e-9ce3-a2d8f315087b +2024-09-11 09:11:52.137453 2024-09-11 09:11:52.137458 plmef 11175 R rec 4d66db23-d05c-4ecf-8131-6f39cc4de82a +2024-09-11 09:11:52.192573 2024-09-11 09:11:52.192583 plmef 11176 R rec b1e87a2a-d7cc-4efc-bc96-44b3c9d4dd32 +2024-09-11 09:11:52.261772 2024-09-11 09:11:52.261783 plmef 11177 R rec e34caecd-57b9-44d4-9203-f9813854cec8 +2024-09-11 09:11:52.326515 2024-09-11 09:11:52.326526 plmef 11178 R rec 580e13d0-652b-4174-8c5d-ed3359faa928 +2024-09-11 09:11:52.392726 2024-09-11 09:11:52.392737 plmef 11179 R rec 3ef13f59-b8f0-4e95-bec5-5be4f66838d4 +2024-09-11 09:11:52.46451 2024-09-11 09:11:52.46452 plmef 11180 R rec 373bce35-f1ef-4172-94c5-6d14855fd8eb +2024-09-11 09:11:52.531422 2024-09-11 09:11:52.531433 plmef 11181 R rec 7d33e70e-1553-4f84-b0dd-3e2d5aea4cd2 +2024-09-11 09:11:52.591692 2024-09-11 09:11:52.591703 plmef 11182 R rec 9512a62d-b242-46e3-8bf4-423e741fa20b +2024-09-11 09:11:52.650938 2024-09-11 09:11:52.650943 plmef 11183 R rec fccfa3c4-49a7-4dd2-8358-c230f0e9a2fe +2024-09-11 09:11:52.69985 2024-09-11 09:11:52.699855 plmef 11184 R rec e278f7ad-d361-46bb-a942-54b9f8456673 +2024-09-11 09:11:52.751197 2024-09-11 09:11:52.751202 plmef 11185 R rec d693af00-bdf6-47f2-9104-4696f85f7442 +2024-09-11 09:11:52.81405 2024-09-11 09:11:52.814055 plmef 11186 R rec a100843b-3b72-40ee-8cd6-7689a5699c05 +2024-09-11 09:11:52.875653 2024-09-11 09:11:52.875663 plmef 11187 R rec 1a0f9022-ba97-4960-9ac0-982bf7ca8cca +2024-09-11 09:11:52.94592 2024-09-11 09:11:52.945925 plmef 11188 R rec 997411d2-a72e-493b-80b2-3e03f9d4a2a3 +2024-09-11 09:11:53.010704 2024-09-11 09:11:53.010709 plmef 11189 R rec 897e608d-4ec6-48ec-86d2-a9455582bef2 +2024-09-11 09:11:53.101553 2024-09-11 09:11:53.101562 plmef 11190 R rec e87d9fe8-0cca-47f2-803f-24f2baa83e17 +2024-09-11 09:11:53.210783 2024-09-11 09:11:53.210794 plmef 11191 R rec 1bca6bc8-d383-401e-8dd4-c32e8cc64b68 +2024-09-11 09:11:53.305055 2024-09-11 09:11:53.30506 plmef 11192 R rec 23b6eb9e-6575-419a-a9c0-a8b1f11f9fde +2024-09-11 09:11:53.361806 2024-09-11 09:11:53.361811 plmef 11193 R rec 51d9a3be-b034-4ef2-b428-f6e631dff736 +2024-09-11 09:11:53.421932 2024-09-11 09:11:53.421941 plmef 11194 R rec 20169ddc-fb7c-479a-be02-fe83e9aa7ecf +2024-09-11 09:11:53.488521 2024-09-11 09:11:53.488531 plmef 11195 R rec 6a0241de-fb68-4958-bb1d-d971b9e1cf9c +2024-09-11 09:11:53.553149 2024-09-11 09:11:53.553154 plmef 11196 R rec d1f61e79-eb47-4f6f-973c-57d1fad838ad +2024-09-11 09:11:53.619927 2024-09-11 09:11:53.61994 plmef 11197 R rec e95a9b8e-e26b-415e-803c-124c59bb6da2 +2024-09-11 09:11:53.668335 2024-09-11 09:11:53.66834 plmef 11198 R rec f0a7f2ea-6a90-4883-854a-75206ca956e9 +2024-09-11 09:11:53.724108 2024-09-11 09:11:53.724114 plmef 11199 R rec 8cb41390-c1d0-4622-b334-c6e064bbe5c5 +2024-09-11 09:11:53.78773 2024-09-11 09:11:53.787745 plmef 11200 R rec 45295563-9adc-4e78-8292-cbcdaf490082 +2024-09-11 09:11:53.858407 2024-09-11 09:11:53.858418 plmef 11201 R rec ee547594-5917-4a45-9712-43418fa7b4c3 +2024-09-11 09:11:53.93672 2024-09-11 09:11:53.936731 plmef 11202 R rec 1aaad1aa-873b-4d17-85a4-f014a393d2e6 +2024-09-11 09:11:54.004547 2024-09-11 09:11:54.004557 plmef 11203 R rec 5fc48a1e-9141-45e9-96e1-125189ae9e85 +2024-09-11 09:11:54.071788 2024-09-11 09:11:54.071798 plmef 11204 R rec ac274642-24ee-4514-a4d5-b81a89358cc4 +2024-09-11 09:11:54.128776 2024-09-11 09:11:54.12878 plmef 11205 R rec e70b40c8-3c7b-4ba9-aad2-59d8291d7747 +2024-09-11 09:11:54.183798 2024-09-11 09:11:54.183803 plmef 11206 R rec 5db9447b-fef6-4f06-9219-0579e6e76a51 +2024-09-11 09:11:54.240427 2024-09-11 09:11:54.240432 plmef 11207 R rec bf154bbe-0ced-484a-8ed4-5904eb9a8a30 +2024-09-11 09:11:54.323705 2024-09-11 09:11:54.323716 plmef 11208 R rec ade76a8f-5e0c-4975-9c95-4ce4a4d45877 +2024-09-11 09:11:54.393942 2024-09-11 09:11:54.393953 plmef 11209 R rec ca62e1a1-7d04-468d-93ce-882464c42f2a +2024-09-11 09:11:54.459999 2024-09-11 09:11:54.460011 plmef 11210 R rec 41043394-d100-41d6-97a1-f0be84dbf391 +2024-09-11 09:11:54.519414 2024-09-11 09:11:54.519424 plmef 11211 R rec 4b5e130b-0091-4514-991a-f4a5d914c115 +2024-09-11 09:11:54.591397 2024-09-11 09:11:54.591407 plmef 11212 R rec 85239c5d-7eb1-4020-b220-7ecdccc555f5 +2024-09-11 09:11:54.666738 2024-09-11 09:11:54.666742 plmef 11213 R rec 1a753f01-5c05-4049-a8ff-6d66b00260f6 +2024-09-11 09:11:54.720738 2024-09-11 09:11:54.720743 plmef 11214 R rec bd1a7fab-8b97-4386-9e21-66f76bb66f6a +2024-09-11 09:11:54.796838 2024-09-11 09:11:54.796848 plmef 11215 R rec 152ca6c5-1f97-47b6-a39f-cef82b28deb0 +2024-09-11 09:11:54.876459 2024-09-11 09:11:54.876465 plmef 11216 R rec c3237425-ba2d-47d6-8ea1-901aecff250a +2024-09-11 09:11:54.953221 2024-09-11 09:11:54.953231 plmef 11217 R rec 57120299-ff19-49cb-9dec-cc12c47c42aa +2024-09-11 09:11:55.021087 2024-09-11 09:11:55.021092 plmef 11218 R rec fff07bf2-719f-4cd9-b457-679e53e2eb4a +2024-09-11 09:11:55.085768 2024-09-11 09:11:55.085778 plmef 11219 R rec 3d12c34e-eddb-4fd8-8145-fff9a45accf6 +2024-09-11 09:11:55.14849 2024-09-11 09:11:55.148495 plmef 11220 R rec f4503e29-bdf0-420f-9319-caa8cde3c7b4 +2024-09-11 09:11:55.201696 2024-09-11 09:11:55.201707 plmef 11221 R rec 479cfc16-28c3-413e-b564-cf375cec5998 +2024-09-11 09:11:55.258897 2024-09-11 09:11:55.258907 plmef 11222 R rec b2733899-85ad-4806-9868-4daa61f668f8 +2024-09-11 09:11:55.312883 2024-09-11 09:11:55.312888 plmef 11223 R rec bdc433c5-1af5-4a7b-bbdc-47805cc249e4 +2024-09-11 09:11:55.373829 2024-09-11 09:11:55.373839 plmef 11224 R rec 198ec97e-0c7d-4ba3-8680-f30890094932 +2024-09-11 09:11:55.434636 2024-09-11 09:11:55.434646 plmef 11225 R rec 25f202fe-d604-4230-b523-120c22b9504d +2024-09-11 09:11:55.505566 2024-09-11 09:11:55.505577 plmef 11226 R rec 2493f48b-8b00-4c10-a6c2-a098228777e6 +2024-09-11 09:11:55.571883 2024-09-11 09:11:55.571893 plmef 11227 R rec c751cde7-6288-456c-968a-69e113db8fce +2024-09-11 09:11:55.648826 2024-09-11 09:11:55.64883 plmef 11228 R rec f08f4331-5b1a-4bb1-9018-297864bea199 +2024-09-11 09:11:55.701432 2024-09-11 09:11:55.701436 plmef 11229 R rec 461528cb-de2c-4e96-a4f8-9424522be15c +2024-09-11 09:11:55.756587 2024-09-11 09:11:55.756597 plmef 11230 R rec 9a2ee180-0a52-42ce-b0e8-fe18e706a17b +2024-09-11 09:11:55.826961 2024-09-11 09:11:55.826971 plmef 11231 R rec 1e4010e5-16e8-40d6-955d-a5d1ba268b4c +2024-09-11 09:11:55.890625 2024-09-11 09:11:55.890636 plmef 11232 R rec e1ab19d4-1dc5-4820-b710-dea66e3ec837 +2024-09-11 09:11:55.964761 2024-09-11 09:11:55.964771 plmef 11233 R rec 2e98a6dc-0380-45d9-9d93-152b27a48045 +2024-09-11 09:11:56.031214 2024-09-11 09:11:56.031224 plmef 11234 R rec 129f5ea2-b613-43a3-acd0-b1b4841907cd +2024-09-11 09:11:56.098166 2024-09-11 09:11:56.098176 plmef 11235 R rec c5714d40-5aca-48e0-95a7-13bfc6f31ae6 +2024-09-11 09:11:56.159933 2024-09-11 09:11:56.159937 plmef 11236 R rec f1264930-8454-4ff8-9ee9-362c5215d122 +2024-09-11 09:11:56.217487 2024-09-11 09:11:56.217491 plmef 11237 R rec ce93fd78-b45f-46f2-81ed-2361db036f38 +2024-09-11 09:11:56.280205 2024-09-11 09:11:56.280215 plmef 11238 R rec 6c48bb83-218e-4aa4-b059-12ba3367d9b8 +2024-09-11 09:11:56.350374 2024-09-11 09:11:56.350385 plmef 11239 R rec 77693185-a03d-4878-b668-b7144042593a +2024-09-11 09:11:56.422719 2024-09-11 09:11:56.422729 plmef 11240 R rec 3992596a-524d-40c9-bb9b-6183d47bde56 +2024-09-11 09:11:56.487915 2024-09-11 09:11:56.487925 plmef 11241 R rec 3820fa49-fdc5-497c-8448-9c8e886c7845 +2024-09-11 09:11:56.555207 2024-09-11 09:11:56.555217 plmef 11242 R rec 72be7c20-58e4-4da7-bb55-7f1f44aa883f +2024-09-11 09:11:56.638311 2024-09-11 09:11:56.638322 plmef 11243 R rec 4860a7dd-3950-4a16-8190-61ddade592dc +2024-09-11 09:11:56.696534 2024-09-11 09:11:56.696544 plmef 11244 R rec 22f3bc46-1c0e-4890-9a07-2afe1b815e8f +2024-09-11 09:11:56.759751 2024-09-11 09:11:56.759761 plmef 11245 R rec dec649b9-750e-4207-893c-107338d31062 +2024-09-11 09:11:56.849288 2024-09-11 09:11:56.849298 plmef 11246 R rec e2d95025-d3c5-4ce3-aa05-487a412f6808 +2024-09-11 09:11:56.918815 2024-09-11 09:11:56.91882 plmef 11247 R rec f008d80e-eb71-4049-8bff-bcf576aab526 +2024-09-11 09:11:56.98692 2024-09-11 09:11:56.986931 plmef 11248 R rec 35c4dbb4-1429-42c7-b3b9-5dec3690bc6d +2024-09-11 09:11:57.053258 2024-09-11 09:11:57.053269 plmef 11249 R rec 153df41b-ada2-4b4e-8457-f2c1de438ca9 +2024-09-11 09:11:57.118765 2024-09-11 09:11:57.118775 plmef 11250 R rec bba8d29c-42c1-478f-bea9-c7bbdae2650c +2024-09-11 09:11:57.17286 2024-09-11 09:11:57.172865 plmef 11251 R rec 67f0a076-faf1-4056-8f42-43368277ffbd +2024-09-11 09:11:57.223064 2024-09-11 09:11:57.223068 plmef 11252 R rec 45c7adb0-d8d3-4f9f-946b-97ac0fe6d41c +2024-09-11 09:11:57.279476 2024-09-11 09:11:57.279486 plmef 11253 R rec c6dbfa59-2be7-4f11-b0e4-fb40a46025ed +2024-09-11 09:11:57.34069 2024-09-11 09:11:57.3407 plmef 11254 R rec a56475a6-902d-4833-805e-a9baf68398da +2024-09-11 09:11:57.4093 2024-09-11 09:11:57.40931 plmef 11255 R rec d18dce00-8395-431b-b0c4-2e80aa928dc6 +2024-09-11 09:11:57.472001 2024-09-11 09:11:57.472014 plmef 11256 R rec 7cac44be-fd72-4eb4-b080-ae60b1c3e5f5 +2024-09-11 09:11:57.541256 2024-09-11 09:11:57.541261 plmef 11257 R rec ea361e16-5824-45fc-9df1-b1947d53252a +2024-09-11 09:11:57.609962 2024-09-11 09:11:57.609973 plmef 11258 R rec 6f15f83b-c42e-4eb1-b114-a0aafbb3fef3 +2024-09-11 09:11:57.670027 2024-09-11 09:11:57.670032 plmef 11259 R rec 19116c69-d48e-4052-8cae-9a07068ba7b8 +2024-09-11 09:11:57.728852 2024-09-11 09:11:57.728863 plmef 11260 R rec 5cdc242f-ca00-4877-b4b2-e1a2a6448464 +2024-09-11 09:11:57.812256 2024-09-11 09:11:57.812262 plmef 11261 R rec ffba917a-7a73-4732-8def-5ecda454a42f +2024-09-11 09:11:57.860182 2024-09-11 09:11:57.860187 plmef 11262 R rec e77dd639-4f3d-4be8-a02e-987ea0feb84d +2024-09-11 09:11:57.94837 2024-09-11 09:11:57.948381 plmef 11263 R rec 3e0e144c-3391-4e3b-aff9-97ccb0f2e1bb +2024-09-11 09:11:58.035018 2024-09-11 09:11:58.035023 plmef 11264 R rec ff109097-cada-498d-998a-68061a73d207 +2024-09-11 09:11:58.103815 2024-09-11 09:11:58.103826 plmef 11265 R rec 7a22b914-eed9-4562-b1ad-c1d5bcc1997b +2024-09-11 09:11:58.163819 2024-09-11 09:11:58.163824 plmef 11266 R rec 25e31c29-ebaa-4da1-bbce-f001464dede2 +2024-09-11 09:11:58.215222 2024-09-11 09:11:58.215226 plmef 11267 R rec 176bb1f9-c949-4e4b-a49d-8452a53ff31b +2024-09-11 09:11:58.274049 2024-09-11 09:11:58.274059 plmef 11268 R rec 57e2cdfb-3834-43f1-9d3a-fe24bbf54393 +2024-09-11 09:11:58.350483 2024-09-11 09:11:58.350494 plmef 11269 R rec 1615465f-6dfd-452d-a003-1775b556443d +2024-09-11 09:11:58.420314 2024-09-11 09:11:58.420325 plmef 11270 R rec e769f56c-fe96-4b3a-a1d7-5f9ee923357b +2024-09-11 09:11:58.486167 2024-09-11 09:11:58.486177 plmef 11271 R rec b5c18a42-e2fb-48b8-9e97-655db0a113f2 +2024-09-11 09:11:58.550972 2024-09-11 09:11:58.550982 plmef 11272 R rec 4d5897e0-8aba-4e0a-b326-8c2febf0202f +2024-09-11 09:11:58.610965 2024-09-11 09:11:58.610975 plmef 11273 R rec e484998e-5f26-4de4-aa10-fd160eaa657b +2024-09-11 09:11:58.674019 2024-09-11 09:11:58.674024 plmef 11274 R rec 4e3d565a-6910-4356-8075-1585647bce25 +2024-09-11 09:11:58.731243 2024-09-11 09:11:58.731248 plmef 11275 R rec 4d9d093b-8d70-4f26-93aa-e439a608c28e +2024-09-11 09:11:58.794166 2024-09-11 09:11:58.794176 plmef 11276 R rec 11bf3fd0-cb2f-4e4a-805d-bab2e760168f +2024-09-11 09:11:58.856735 2024-09-11 09:11:58.85674 plmef 11277 R rec d087157c-d771-457c-904a-bb62c7e55c02 +2024-09-11 09:11:58.92097 2024-09-11 09:11:58.920981 plmef 11278 R rec e0054086-2f7f-4ac8-bb05-4e50d886c37a +2024-09-11 09:11:59.050888 2024-09-11 09:11:59.050893 plmef 11279 R rec dfed1dd7-acf9-490e-a78e-6e5d7e80e478 +2024-09-11 09:11:59.148752 2024-09-11 09:11:59.148757 plmef 11280 R rec afc220e1-818c-4fa0-ad7b-2b167658b46f +2024-09-11 09:11:59.223421 2024-09-11 09:11:59.223426 plmef 11281 R rec 110e868a-8de5-43ef-8c05-1b52834048b7 +2024-09-11 09:11:59.300542 2024-09-11 09:11:59.300547 plmef 11282 R rec 83698548-76b4-4857-b2d7-602fed5347a7 +2024-09-11 09:11:59.390357 2024-09-11 09:11:59.390362 plmef 11283 R rec 68c5750e-441e-449d-a83c-7481baaf77f9 +2024-09-11 09:11:59.460201 2024-09-11 09:11:59.46021 plmef 11284 R rec 6f57c9cd-d41c-4548-aee1-34c2310477da +2024-09-11 09:11:59.533439 2024-09-11 09:11:59.533443 plmef 11285 R rec adfcf5a8-4d15-4597-ac19-dbaea119f82b +2024-09-11 09:11:59.595503 2024-09-11 09:11:59.595513 plmef 11286 R rec e1d59311-8c6b-41e3-8935-3b2c53cce605 +2024-09-11 09:11:59.655457 2024-09-11 09:11:59.655462 plmef 11287 R rec 8b97fdf6-ae95-48cf-81be-7c6d164520e1 +2024-09-11 09:11:59.716717 2024-09-11 09:11:59.716722 plmef 11288 R rec 18a3d30f-4c17-4727-b053-6072a90b6ff9 +2024-09-11 09:11:59.791678 2024-09-11 09:11:59.791683 plmef 11289 R rec e339ed31-1d0a-4ecc-8bca-cd4aa6230748 +2024-09-11 09:11:59.858462 2024-09-11 09:11:59.858467 plmef 11290 R rec a982ffd2-cb14-412c-94eb-7be677db0ba2 +2024-09-11 09:11:59.926695 2024-09-11 09:11:59.926705 plmef 11291 R rec dbf290d1-b7d7-45b0-84eb-2396f769938b +2024-09-11 09:12:00.034912 2024-09-11 09:12:00.034917 plmef 11292 R rec 1f392195-9fdd-4419-a709-0a0e3b9dcdaa +2024-09-11 09:12:00.142188 2024-09-11 09:12:00.142192 plmef 11293 R rec c8984dba-9437-443f-9957-c40ff51a9680 +2024-09-11 09:12:00.225627 2024-09-11 09:12:00.225633 plmef 11294 R rec 619b1ea1-a994-44e8-b130-137dbe783259 +2024-09-11 09:12:00.300919 2024-09-11 09:12:00.300923 plmef 11295 R rec f173ee5d-b413-40c3-b5a4-5748ecbd850b +2024-09-11 09:12:00.372045 2024-09-11 09:12:00.372055 plmef 11296 R rec f7353d81-32b4-4100-821d-ef40da5b7e93 +2024-09-11 09:12:00.517702 2024-09-11 09:12:00.517707 plmef 11297 R rec c295043d-d106-48a1-80b3-a618b22385e1 +2024-09-11 09:12:00.563945 2024-09-11 09:12:00.56395 plmef 11298 R rec 127754ba-5675-4474-8a2d-596f1abf3075 +2024-09-11 09:12:00.641279 2024-09-11 09:12:00.641285 plmef 11299 R rec 0348b2d9-5bc4-420c-bb5d-af5b6770632a +2024-09-11 09:12:00.741158 2024-09-11 09:12:00.741166 plmef 11300 R rec 9f8a8175-ade1-4b99-9d29-5b0d4a880fb2 +2024-09-11 09:12:00.816737 2024-09-11 09:12:00.816742 plmef 11301 R rec 69b90da5-8f2e-4843-8dc7-0595604cdf61 +2024-09-11 09:12:00.897836 2024-09-11 09:12:00.897845 plmef 11302 R rec bee73108-a03c-4054-94a8-b6bc334f5293 +2024-09-11 09:12:00.972535 2024-09-11 09:12:00.972545 plmef 11303 R rec ff32ccd7-6a7e-40bf-908d-f60296ddac13 +2024-09-11 09:12:01.116648 2024-09-11 09:12:01.116653 plmef 11304 R rec 2880084e-76b1-4274-bc4c-cba1e3467078 +2024-09-11 09:12:01.198483 2024-09-11 09:12:01.198488 plmef 11305 R rec 50c67f65-76fc-4730-8a5c-20fb70c8fbdf +2024-09-11 09:12:01.248272 2024-09-11 09:12:01.248277 plmef 11306 R rec 2c1bf34a-6c45-4830-81b5-a79903304512 +2024-09-11 09:12:01.382854 2024-09-11 09:12:01.382859 plmef 11307 R rec 7c859687-04b4-4c7b-ba6b-245ca1f8866d +2024-09-11 09:12:01.456975 2024-09-11 09:12:01.456979 plmef 11308 R rec 2740c0e3-a99d-4b3e-969d-13dea26cb1b6 +2024-09-11 09:12:01.52339 2024-09-11 09:12:01.523394 plmef 11309 R rec e04a9fb4-b9d0-4dba-b394-67eff9882d57 +2024-09-11 09:12:01.600801 2024-09-11 09:12:01.600806 plmef 11310 R rec ad394640-3c6e-42b8-9fd9-0f3d396fd612 +2024-09-11 09:12:01.663352 2024-09-11 09:12:01.663358 plmef 11311 R rec c317bc48-82e8-4dc7-afb7-1b59bcece6d7 +2024-09-11 09:12:01.721469 2024-09-11 09:12:01.721474 plmef 11312 R rec d5fea72e-4736-4951-8e72-c7a2b98095bf +2024-09-11 09:12:01.788501 2024-09-11 09:12:01.788506 plmef 11313 R rec c749af2e-e2c4-4367-bb67-de806f750172 +2024-09-11 09:12:01.869448 2024-09-11 09:12:01.869458 plmef 11314 R rec d98511d6-00ae-480c-9bd3-fc3e0af2a597 +2024-09-11 09:12:01.931104 2024-09-11 09:12:01.931109 plmef 11315 R rec 8ab70359-1e6c-470a-9644-315a314bc3d2 +2024-09-11 09:12:02.000163 2024-09-11 09:12:02.000174 plmef 11316 R rec 2aa11f7e-3eed-4d1c-99b1-5e166c592a4d +2024-09-11 09:12:02.120737 2024-09-11 09:12:02.120742 plmef 11317 R rec aa782310-4213-42a0-9c22-076ec38e96c6 +2024-09-11 09:12:02.179663 2024-09-11 09:12:02.179669 plmef 11318 R rec 4df22c47-8a4c-49dd-814f-7bf2c596fab3 +2024-09-11 09:12:02.315258 2024-09-11 09:12:02.315263 plmef 11319 R rec 93b915c3-dd53-48f6-a870-d9159155782e +2024-09-11 09:12:02.382897 2024-09-11 09:12:02.382907 plmef 11320 R rec 2993250b-6e26-4e23-9644-2e79b4383e40 +2024-09-11 09:12:02.49524 2024-09-11 09:12:02.495245 plmef 11321 R rec 8024509e-127e-49cb-9e53-8deee197d623 +2024-09-11 09:12:02.541919 2024-09-11 09:12:02.541925 plmef 11322 R rec bd3e34bc-c7bb-4c4c-8950-a3e51bf95871 +2024-09-11 09:12:02.61677 2024-09-11 09:12:02.616774 plmef 11323 R rec a665ace5-50e8-4081-b086-c110b8d32866 +2024-09-11 09:12:02.677709 2024-09-11 09:12:02.677715 plmef 11324 R rec f3ff81ab-8436-4b80-82be-636c7fe3a2e5 +2024-09-11 09:12:02.733814 2024-09-11 09:12:02.733819 plmef 11325 R rec ae0ba717-204d-438d-93d0-ed6fc78d9f33 +2024-09-11 09:12:02.804711 2024-09-11 09:12:02.804716 plmef 11326 R rec 5c6c1625-be52-424b-b091-e8941e9fc081 +2024-09-11 09:12:02.860297 2024-09-11 09:12:02.860302 plmef 11327 R rec aaebf146-ee23-4ecb-89f6-ab54efdad33e +2024-09-11 09:12:02.924702 2024-09-11 09:12:02.924708 plmef 11328 R rec 829e73da-af7f-401f-b537-77fc8661de7f +2024-09-11 09:12:02.990929 2024-09-11 09:12:02.990934 plmef 11329 R rec a23112bd-0e9b-47aa-945c-a9b62dbb40b9 +2024-09-11 09:12:03.125988 2024-09-11 09:12:03.125994 plmef 11330 R rec 5fbafe69-b2f8-4b4e-89d1-f4833803b3df +2024-09-11 09:12:03.196584 2024-09-11 09:12:03.196589 plmef 11331 R rec 9192baec-476e-479b-9f67-70db94c060c6 +2024-09-11 09:12:03.270388 2024-09-11 09:12:03.270392 plmef 11332 R rec 5adb214c-1f04-49b4-9d57-9e71882cf16c +2024-09-11 09:12:03.355079 2024-09-11 09:12:03.355083 plmef 11333 R rec 80e783b8-642e-4a4b-bcd7-6ed89a1f8272 +2024-09-11 09:12:03.417638 2024-09-11 09:12:03.417648 plmef 11334 R rec c2b4c19a-d438-4c7a-a177-801f8db99670 +2024-09-11 09:12:03.492858 2024-09-11 09:12:03.492868 plmef 11335 R rec 217a045b-d08e-4c14-be7d-6193cb8f87eb +2024-09-11 09:12:03.571087 2024-09-11 09:12:03.571091 plmef 11336 R rec 55bae613-418d-4ca1-9074-80d6f2d6778e +2024-09-11 09:12:03.641941 2024-09-11 09:12:03.641953 plmef 11337 R rec 11a6e88d-5d2b-4140-aad6-503a7bf8c470 +2024-09-11 09:12:03.709758 2024-09-11 09:12:03.709763 plmef 11338 R rec 8b423f2c-808b-4ca7-b6c1-a6dd3aa26a9e +2024-09-11 09:12:03.778532 2024-09-11 09:12:03.778542 plmef 11339 R rec 266fa899-745a-418e-8ca1-768b9dc6c2b3 +2024-09-11 09:12:03.842654 2024-09-11 09:12:03.842659 plmef 11340 R rec 43840f0e-c8f9-4fa2-b6fc-708b5293c38d +2024-09-11 09:12:03.90716 2024-09-11 09:12:03.90717 plmef 11341 R rec 33363192-eb69-4096-8e85-eaa33a8fbb7d +2024-09-11 09:12:03.977842 2024-09-11 09:12:03.977853 plmef 11342 R rec aff4c56b-ac08-45fe-9e11-da32113ca91e +2024-09-11 09:12:04.190829 2024-09-11 09:12:04.190834 plmef 11343 R rec d81a6026-c835-40ef-bd32-a74d3e4306d1 +2024-09-11 09:12:04.256114 2024-09-11 09:12:04.256118 plmef 11344 R rec 99e2f59f-bd61-47d2-a9cb-187fd71683a9 +2024-09-11 09:12:04.347706 2024-09-11 09:12:04.347711 plmef 11345 R rec f08b9f3e-04ec-42d1-9ebc-e2fd7964fc18 +2024-09-11 09:12:04.396841 2024-09-11 09:12:04.396846 plmef 11346 R rec 5b40b68c-5cba-4a37-8bb8-629832a43dd6 +2024-09-11 09:12:04.474864 2024-09-11 09:12:04.474873 plmef 11347 R rec 4df66c3c-0d35-4096-ac24-1e5040964f96 +2024-09-11 09:12:04.548452 2024-09-11 09:12:04.548462 plmef 11348 R rec 201db19e-e5e0-40d6-be54-c58661d7a3a4 +2024-09-11 09:12:04.620354 2024-09-11 09:12:04.620364 plmef 11349 R rec 34137c1a-55b5-4880-aa59-b3854d80bed9 +2024-09-11 09:12:04.681785 2024-09-11 09:12:04.681795 plmef 11350 R rec 7c27264b-6dce-4ebb-aa92-18e0574fa1ee +2024-09-11 09:12:04.755388 2024-09-11 09:12:04.755399 plmef 11351 R rec 5f427e16-6020-428c-8010-bd6fb15496e2 +2024-09-11 09:12:04.828993 2024-09-11 09:12:04.828997 plmef 11352 R rec c6238778-72f3-46ca-a0e5-69739cb229ce +2024-09-11 09:12:04.899105 2024-09-11 09:12:04.899116 plmef 11353 R rec 1428bb79-6dcb-454c-a21e-08488803d7ab +2024-09-11 09:12:04.975938 2024-09-11 09:12:04.97595 plmef 11354 R rec 210da01c-f8fd-450d-9960-1e4b1ea97b64 +2024-09-11 09:12:05.075662 2024-09-11 09:12:05.075674 plmef 11355 R rec f813b82e-e1b1-4881-829d-7d428c3c24ea +2024-09-11 09:12:05.136399 2024-09-11 09:12:05.136404 plmef 11356 R rec c9dfcdf0-e3e6-4202-b9b7-5166b241a164 +2024-09-11 09:12:05.190009 2024-09-11 09:12:05.190015 plmef 11357 R rec b29e6e48-dc62-4667-88cc-b55635d8544c +2024-09-11 09:12:05.241766 2024-09-11 09:12:05.241771 plmef 11358 R rec 1c06e97b-03bc-4f34-8731-306cda97a9f7 +2024-09-11 09:12:05.312124 2024-09-11 09:12:05.312132 plmef 11359 R rec 80ff0c15-73b6-4722-9eea-f794efc8aab2 +2024-09-11 09:12:05.38599 2024-09-11 09:12:05.386 plmef 11360 R rec 80e25973-dd56-43c9-962c-ef2a6fd51094 +2024-09-11 09:12:05.451757 2024-09-11 09:12:05.451767 plmef 11361 R rec 8cb44a90-812e-47fe-9a4f-53772a8770f9 +2024-09-11 09:12:05.532472 2024-09-11 09:12:05.532483 plmef 11362 R rec 8f6fd9a2-0298-4481-bd70-c114bb3fc7e2 +2024-09-11 09:12:05.638164 2024-09-11 09:12:05.638169 plmef 11363 R rec 766f4f96-38ac-4ca4-935f-5464feaa38d5 +2024-09-11 09:12:05.70978 2024-09-11 09:12:05.709792 plmef 11364 R rec 4b65c8a2-76ea-44ef-9407-45de4e82a154 +2024-09-11 09:12:05.804225 2024-09-11 09:12:05.80423 plmef 11365 R rec a50172de-2a43-4908-be0c-510b01813997 +2024-09-11 09:12:05.882416 2024-09-11 09:12:05.882425 plmef 11366 R rec 760739d2-ac42-480a-b19b-06c23c9a849e +2024-09-11 09:12:05.951885 2024-09-11 09:12:05.951895 plmef 11367 R rec 8a80de3d-d168-4c52-baaa-bfdcf2b59e2f +2024-09-11 09:12:06.025151 2024-09-11 09:12:06.025162 plmef 11368 R rec 5908cdf8-9c28-488a-b425-ad22f76e7140 +2024-09-11 09:12:06.089732 2024-09-11 09:12:06.089737 plmef 11369 R rec 17ea5e50-272f-4ca5-9e0f-3aef1710323e +2024-09-11 09:12:06.149852 2024-09-11 09:12:06.149862 plmef 11370 R rec 558ec718-a0d0-42e8-8ae9-b257af8f9898 +2024-09-11 09:12:06.209587 2024-09-11 09:12:06.209592 plmef 11371 R rec 15c099bb-0c9c-4eff-b193-870eda2a78f6 +2024-09-11 09:12:06.285104 2024-09-11 09:12:06.285115 plmef 11372 R rec cb963149-4adb-4049-afe4-85e7b26efffd +2024-09-11 09:12:06.382838 2024-09-11 09:12:06.382849 plmef 11373 R rec 0ed87b6c-c2d7-4f2e-bb83-8bf2a92017c4 +2024-09-11 09:12:06.468763 2024-09-11 09:12:06.468769 plmef 11374 R rec bd804894-c0e4-41f4-98ad-623b4c4f50b7 +2024-09-11 09:12:06.557661 2024-09-11 09:12:06.557671 plmef 11375 R rec dbb55cbc-1737-4627-90a4-813fa2427454 +2024-09-11 09:12:06.649517 2024-09-11 09:12:06.649523 plmef 11376 R rec 8bdbb9a8-1785-41a5-8ae7-3afcaa6f2640 +2024-09-11 09:12:06.721168 2024-09-11 09:12:06.721178 plmef 11377 R rec 8d15ab81-fa46-4a36-a7b8-c67c2bba9bad +2024-09-11 09:12:06.804937 2024-09-11 09:12:06.804946 plmef 11378 R rec f4975139-87d9-4e76-a25f-5ee79f731b5c +2024-09-11 09:12:06.881976 2024-09-11 09:12:06.881987 plmef 11379 R rec 7016168f-6213-43a6-8616-651242b46cd5 +2024-09-11 09:12:06.960144 2024-09-11 09:12:06.960155 plmef 11380 R rec 460a0e9a-3b0a-42da-a946-8a6cbf483142 +2024-09-11 09:12:07.031976 2024-09-11 09:12:07.031987 plmef 11381 R rec eab2954f-e598-426a-bdb9-4276dcdfaed8 +2024-09-11 09:12:07.105305 2024-09-11 09:12:07.105317 plmef 11382 R rec 2a330a01-3981-4d00-8d2f-6b723a2b9400 +2024-09-11 09:12:07.169062 2024-09-11 09:12:07.169068 plmef 11383 R rec d587b0a1-e9ef-4061-8ca2-38e8dae4fa41 +2024-09-11 09:12:07.221418 2024-09-11 09:12:07.221422 plmef 11384 R rec ef93528c-c10d-4dd6-aadd-a1841b96f927 +2024-09-11 09:12:07.29733 2024-09-11 09:12:07.297335 plmef 11385 R rec e650dea6-55c3-4d17-8ad5-51bdd8cf9bbd +2024-09-11 09:12:07.369101 2024-09-11 09:12:07.36911 plmef 11386 R rec bfb219f0-6f09-4cac-b925-4b2b3728721b +2024-09-11 09:12:07.436104 2024-09-11 09:12:07.436109 plmef 11387 R rec 25e01377-f23c-4982-ab1a-93f5b217d1fb +2024-09-11 09:12:07.502126 2024-09-11 09:12:07.502137 plmef 11388 R rec 0ab1ce52-c6f6-4dba-873b-1b6f613cd00a +2024-09-11 09:12:07.559087 2024-09-11 09:12:07.559092 plmef 11389 R rec d6a0b504-031a-4255-ad84-70f4626826ec +2024-09-11 09:12:07.627029 2024-09-11 09:12:07.627039 plmef 11390 R rec 54fb28c2-cd07-4acd-9351-d37bcd27a5bd +2024-09-11 09:12:07.687805 2024-09-11 09:12:07.68781 plmef 11391 R rec cd31aa47-1e8a-40e7-ac89-a5aaa7c112b3 +2024-09-11 09:12:07.751401 2024-09-11 09:12:07.751412 plmef 11392 R rec f32ffb0d-9758-4aa9-b693-ffe1d930a9c4 +2024-09-11 09:12:07.827945 2024-09-11 09:12:07.82795 plmef 11393 R rec b96b1405-f1de-417a-9c1e-be08a39c86db +2024-09-11 09:12:07.89007 2024-09-11 09:12:07.890082 plmef 11394 R rec 91cf2e06-52d2-48dc-b906-908d6ef5ce54 +2024-09-11 09:12:07.959962 2024-09-11 09:12:07.959971 plmef 11395 R rec 117684cd-8145-4b84-a850-a7bcb0f29252 +2024-09-11 09:12:08.037746 2024-09-11 09:12:08.037751 plmef 11396 R rec 986fdfcd-f078-4295-9d74-46333d0c1e64 +2024-09-11 09:12:08.121799 2024-09-11 09:12:08.121809 plmef 11397 R rec 2e0a40ec-7e48-483b-a477-5d459aa44a94 +2024-09-11 09:12:08.181254 2024-09-11 09:12:08.18126 plmef 11398 R rec bfa2db85-e460-44fe-8fe7-6a33fd1b03f7 +2024-09-11 09:12:08.231597 2024-09-11 09:12:08.231602 plmef 11399 R rec 81b24901-e6bc-419a-bf85-5212411fdd83 +2024-09-11 09:12:08.288205 2024-09-11 09:12:08.288217 plmef 11400 R rec b20faa59-b2b0-4331-884a-5a9846cb6d88 +2024-09-11 09:12:08.35537 2024-09-11 09:12:08.355383 plmef 11401 R rec 8a40b055-f723-44d9-ac75-836b59b6a48c +2024-09-11 09:12:08.43847 2024-09-11 09:12:08.43848 plmef 11402 R rec 8960e1e8-7e9a-41ef-ab60-9cde1d35d69f +2024-09-11 09:12:08.510732 2024-09-11 09:12:08.510737 plmef 11403 R rec 631a673e-46e9-4e9f-be8e-f909f6b3e07b +2024-09-11 09:12:08.579484 2024-09-11 09:12:08.579495 plmef 11404 R rec f5309193-332f-4d57-9ddb-42552e3463ab +2024-09-11 09:12:08.645593 2024-09-11 09:12:08.645611 plmef 11405 R rec 085cbec1-85e4-4d38-ba0e-3376f3a63c9f +2024-09-11 09:12:08.721843 2024-09-11 09:12:08.721848 plmef 11406 R rec 182decda-c25f-4090-bf26-0c572887c806 +2024-09-11 09:12:08.796346 2024-09-11 09:12:08.79635 plmef 11407 R rec d4027cdf-3647-49c0-8c6e-ecf249f97654 +2024-09-11 09:12:08.859218 2024-09-11 09:12:08.859229 plmef 11408 R rec e914fdae-c0c2-40ca-bcae-a8f50480d5c2 +2024-09-11 09:12:08.920398 2024-09-11 09:12:08.920403 plmef 11409 R rec 2a38b2df-3495-4f1d-a777-cf8a17a28e2f +2024-09-11 09:12:08.992508 2024-09-11 09:12:08.992519 plmef 11410 R rec 52a006f8-3ac0-40b0-ad13-fd65246bcd5e +2024-09-11 09:12:09.064484 2024-09-11 09:12:09.064489 plmef 11411 R rec e7a58db9-01a6-4146-9a1d-6160fd50ae76 +2024-09-11 09:12:09.137768 2024-09-11 09:12:09.137784 plmef 11412 R rec 0a588698-581d-4be4-a810-34f0b269b7fe +2024-09-11 09:12:09.203493 2024-09-11 09:12:09.203497 plmef 11413 R rec 3deb4aa6-afef-4d89-8c58-4befab5145ff +2024-09-11 09:12:09.258665 2024-09-11 09:12:09.258671 plmef 11414 R rec d80d473a-d121-4642-a3a9-616ab24f9b2b +2024-09-11 09:12:09.311258 2024-09-11 09:12:09.311264 plmef 11415 R rec 8cf5a885-54e3-4e09-98d6-76d9d69ae2f4 +2024-09-11 09:12:09.37579 2024-09-11 09:12:09.375795 plmef 11416 R rec 12e79df6-6919-45cf-a67f-61ac1ad9c8f9 +2024-09-11 09:12:09.439393 2024-09-11 09:12:09.439398 plmef 11417 R rec 6d443c77-c997-46b7-a5b5-52fb47a6a3c4 +2024-09-11 09:12:09.521224 2024-09-11 09:12:09.521234 plmef 11418 R rec 98b76f43-2cf5-4505-ab6b-d51f6adf6da2 +2024-09-11 09:12:09.601352 2024-09-11 09:12:09.601358 plmef 11419 R rec d596f82b-bc23-4c58-a1d3-7b98e3b4380b +2024-09-11 09:12:09.667138 2024-09-11 09:12:09.667143 plmef 11420 R rec f9d0d19c-847f-4fae-93f3-f5dbaad48d55 +2024-09-11 09:12:09.71777 2024-09-11 09:12:09.717775 plmef 11421 R rec b1ad9704-4576-4808-9758-83be1e130553 +2024-09-11 09:12:09.781737 2024-09-11 09:12:09.781747 plmef 11422 R rec 70c6db33-b296-41ad-853a-c06f94c700f9 +2024-09-11 09:12:09.844673 2024-09-11 09:12:09.844678 plmef 11423 R rec c8507510-a3db-4fa9-9e5b-db54740107ac +2024-09-11 09:12:09.919955 2024-09-11 09:12:09.91996 plmef 11424 R rec 272a27cd-c4da-4a08-b64e-6cb91f521c0c +2024-09-11 09:12:09.984276 2024-09-11 09:12:09.984281 plmef 11425 R rec a0ae823f-e14a-4315-87d3-ae60c44127cf +2024-09-11 09:12:10.051017 2024-09-11 09:12:10.051027 plmef 11426 R rec 393be4ae-669e-4430-b31a-7a5af6510567 +2024-09-11 09:12:10.124729 2024-09-11 09:12:10.124734 plmef 11427 R rec 9d250107-bacb-44a2-94e0-28ab2ec72174 +2024-09-11 09:12:10.208227 2024-09-11 09:12:10.208237 plmef 11428 R rec 58c1d5cd-0014-44bf-b579-c7fd600792f9 +2024-09-11 09:12:10.278211 2024-09-11 09:12:10.278218 plmef 11429 R rec e2b33a95-06e0-4b4e-b6c4-bfd62b58e46b +2024-09-11 09:12:10.349339 2024-09-11 09:12:10.349349 plmef 11430 R rec bb2e3f39-74b0-4023-9fb4-d85762fc404d +2024-09-11 09:12:10.408246 2024-09-11 09:12:10.408251 plmef 11431 R rec 6ed875ce-46e7-4525-85f3-b354233cbb8d +2024-09-11 09:12:10.471885 2024-09-11 09:12:10.47189 plmef 11432 R rec 5920a644-b527-4044-bf49-df48436ffee7 +2024-09-11 09:12:10.535895 2024-09-11 09:12:10.5359 plmef 11433 R rec e9647d9e-4a52-486e-88bd-8e71dab82c76 +2024-09-11 09:12:10.595808 2024-09-11 09:12:10.595813 plmef 11434 R rec dde77d96-6c8a-40d9-b74d-c54d0997a29a +2024-09-11 09:12:10.660153 2024-09-11 09:12:10.660159 plmef 11435 R rec 2c879f4c-1e35-49ce-95af-63e873bb7c8b +2024-09-11 09:12:10.717033 2024-09-11 09:12:10.717038 plmef 11436 R rec 5fcfe091-5e00-4420-8f0a-be1f1e10b7ec +2024-09-11 09:12:10.77581 2024-09-11 09:12:10.775815 plmef 11437 R rec 83c46296-6b5a-46cd-80a0-ce613419a4bb +2024-09-11 09:12:10.839912 2024-09-11 09:12:10.839917 plmef 11438 R rec cc47a3cc-ed27-4b9d-801f-e3231bcc589c +2024-09-11 09:12:10.906309 2024-09-11 09:12:10.90632 plmef 11439 R rec 0a3343a0-2466-473a-97a4-41d6dfc13349 +2024-09-11 09:12:10.981468 2024-09-11 09:12:10.981478 plmef 11440 R rec 949b1271-eebe-4c3e-8620-c527d548e6c1 +2024-09-11 09:12:11.061285 2024-09-11 09:12:11.061295 plmef 11441 R rec aea95d6e-7c81-4e56-b86e-16b7f1f73794 +2024-09-11 09:12:11.135538 2024-09-11 09:12:11.135548 plmef 11442 R rec 1a61610c-33ac-49d9-89a6-5cccb881c1a9 +2024-09-11 09:12:11.200941 2024-09-11 09:12:11.200945 plmef 11443 R rec c6dbbb39-c45f-43b0-afe8-0680b4f12dab +2024-09-11 09:12:11.271807 2024-09-11 09:12:11.27182 plmef 11444 R rec 3999329a-5aa3-43f9-b3c4-b84f4047122d +2024-09-11 09:12:11.356432 2024-09-11 09:12:11.356442 plmef 11445 R rec 88db27dc-4edd-4123-8af9-48040d228d82 +2024-09-11 09:12:11.437687 2024-09-11 09:12:11.437698 plmef 11446 R rec 88f3bedb-8efa-41c6-ad2e-138155f1c8e2 +2024-09-11 09:12:11.51799 2024-09-11 09:12:11.518001 plmef 11447 R rec 1f328fcd-a0df-4994-843d-06fcab2993c2 +2024-09-11 09:12:11.608218 2024-09-11 09:12:11.608262 plmef 11448 R rec 0b6c82ba-6e76-4559-ab18-f1bc503564bf +2024-09-11 09:12:11.678937 2024-09-11 09:12:11.678943 plmef 11449 R rec 7d9abebb-cbc0-45ef-8f73-b46ac72ca8f6 +2024-09-11 09:12:11.733225 2024-09-11 09:12:11.73323 plmef 11450 R rec eb204811-db7d-478d-9138-b819c9c26795 +2024-09-11 09:12:11.798486 2024-09-11 09:12:11.798491 plmef 11451 R rec e37ead03-70bd-41a6-b90a-e5998453844b +2024-09-11 09:12:11.863494 2024-09-11 09:12:11.863504 plmef 11452 R rec 8e956ed7-01b4-41f5-af05-b9b799d22053 +2024-09-11 09:12:11.933328 2024-09-11 09:12:11.93334 plmef 11453 R rec 3e4c2ec7-0f38-474e-a8fb-bf1791010bfe +2024-09-11 09:12:12.001836 2024-09-11 09:12:12.001847 plmef 11454 R rec a326e3bc-2d28-4a8a-ba7e-4d818bc9d54f +2024-09-11 09:12:12.072454 2024-09-11 09:12:12.072459 plmef 11455 R rec 581605b9-d823-40f7-874c-d5ace1253137 +2024-09-11 09:12:12.150831 2024-09-11 09:12:12.150837 plmef 11456 R rec 2f8fcd48-978c-4fea-b7f9-b43b4c8fb884 +2024-09-11 09:12:12.219161 2024-09-11 09:12:12.219165 plmef 11457 R rec 7724c5a2-de4e-48a7-87dc-d5f95043efb0 +2024-09-11 09:12:12.282937 2024-09-11 09:12:12.282948 plmef 11458 R rec 8cc341d3-2c3d-4a52-b5a5-93d8e0da3764 +2024-09-11 09:12:12.366093 2024-09-11 09:12:12.366103 plmef 11459 R rec 90bfec30-c373-40ff-9bf2-9628a1640ff7 +2024-09-11 09:12:12.434424 2024-09-11 09:12:12.434428 plmef 11460 R rec 9dfd5e46-292e-41c0-b215-1c6cdfd0040d +2024-09-11 09:12:12.500345 2024-09-11 09:12:12.500355 plmef 11461 R rec d1eee347-897a-488d-835a-473c94a667ca +2024-09-11 09:12:12.561456 2024-09-11 09:12:12.56146 plmef 11462 R rec 90e9e9c0-c064-4162-beee-a8e0e56da535 +2024-09-11 09:12:12.627906 2024-09-11 09:12:12.627917 plmef 11463 R rec 0ed8ddbb-da00-4c30-9384-3f78094df445 +2024-09-11 09:12:12.689294 2024-09-11 09:12:12.689299 plmef 11464 R rec d01eddae-6d55-436b-8211-7b20074affef +2024-09-11 09:12:12.75385 2024-09-11 09:12:12.753855 plmef 11465 R rec e451cbd6-2310-464a-ad6b-8b6ee325b417 +2024-09-11 09:12:12.828862 2024-09-11 09:12:12.828874 plmef 11466 R rec c4bb5de0-c6c0-4885-82d9-c3d94facd789 +2024-09-11 09:12:12.894851 2024-09-11 09:12:12.894856 plmef 11467 R rec 313dd608-0b82-4bbe-b09c-d69810c0638d +2024-09-11 09:12:12.962866 2024-09-11 09:12:12.962877 plmef 11468 R rec bd8600aa-818c-4775-a168-6fea87eead1d +2024-09-11 09:12:13.033375 2024-09-11 09:12:13.03338 plmef 11469 R rec a43dea2d-a06b-4ac3-9cbb-29592a68105e +2024-09-11 09:12:13.100766 2024-09-11 09:12:13.100777 plmef 11470 R rec 3701adb0-441a-4098-b8d7-1ffaa16249e9 +2024-09-11 09:12:13.174939 2024-09-11 09:12:13.174944 plmef 11471 R rec 85ab81fd-b13a-4b29-b460-46582585ff8a +2024-09-11 09:12:13.226885 2024-09-11 09:12:13.22689 plmef 11472 R rec a5a654b5-5745-4093-854c-654b01c31b94 +2024-09-11 09:12:13.30148 2024-09-11 09:12:13.301491 plmef 11473 R rec 95b217e0-770f-4bfa-a777-91a5bf22910f +2024-09-11 09:12:13.368998 2024-09-11 09:12:13.369009 plmef 11474 R rec 16d20932-9c58-4af1-96d1-ee7cb78cbaa7 +2024-09-11 09:12:13.434508 2024-09-11 09:12:13.43452 plmef 11475 R rec a549a49a-2006-4d11-87d4-b9ac88d06f7c +2024-09-11 09:12:13.491561 2024-09-11 09:12:13.491567 plmef 11476 R rec 44a8e22a-df2e-48be-9841-4a069d384f04 +2024-09-11 09:12:13.541235 2024-09-11 09:12:13.541241 plmef 11477 R rec 0bf8f0f1-2196-4039-a729-e89a48935bdd +2024-09-11 09:12:13.614292 2024-09-11 09:12:13.614303 plmef 11478 R rec 08c3ae79-54d7-4506-a109-93607f72663a +2024-09-11 09:12:13.681117 2024-09-11 09:12:13.681122 plmef 11479 R rec 69bd6643-80c1-4ea5-b8cb-cb3ba3d360ad +2024-09-11 09:12:13.731891 2024-09-11 09:12:13.731896 plmef 11480 R rec 9967b7d3-ab9a-47e4-b3d3-27b729090626 +2024-09-11 09:12:13.805358 2024-09-11 09:12:13.805363 plmef 11481 R rec af32b8e0-a801-438d-a5a0-9f559d4e8637 +2024-09-11 09:12:13.887569 2024-09-11 09:12:13.887574 plmef 11482 R rec f38f0bc8-d334-40d5-82ee-84ee014d84cd +2024-09-11 09:12:13.958694 2024-09-11 09:12:13.958705 plmef 11483 R rec 0cfce3de-e573-4057-95c7-cc8ed55b8f2a +2024-09-11 09:12:14.026357 2024-09-11 09:12:14.026368 plmef 11484 R rec 54a3341b-b8bd-4bbd-abb4-b77db9bf9913 +2024-09-11 09:12:14.098548 2024-09-11 09:12:14.098557 plmef 11485 R rec 354f830f-bf0b-4acd-8d50-9e5dff9c4703 +2024-09-11 09:12:14.17737 2024-09-11 09:12:14.177375 plmef 11486 R rec 3d3588d0-df36-48b1-b087-7a30b98940c0 +2024-09-11 09:12:14.237008 2024-09-11 09:12:14.237014 plmef 11487 R rec 85d1e129-6a82-4b31-b585-5c34a62a2b8f +2024-09-11 09:12:14.295406 2024-09-11 09:12:14.295416 plmef 11488 R rec a7005726-2921-423a-966d-1fac0835bf2e +2024-09-11 09:12:14.354174 2024-09-11 09:12:14.35418 plmef 11489 R rec b374cb11-577e-4746-9ebe-2d8a8e03aaff +2024-09-11 09:12:14.42014 2024-09-11 09:12:14.420144 plmef 11490 R rec 644c609d-2488-4f62-b076-bbe02a0dd90b +2024-09-11 09:12:14.491015 2024-09-11 09:12:14.491026 plmef 11491 R rec 632c033e-8495-4e52-bfd0-49bcd5fbf302 +2024-09-11 09:12:14.569055 2024-09-11 09:12:14.56906 plmef 11492 R rec ce44b55f-275c-4103-bf3f-876749acd659 +2024-09-11 09:12:14.630622 2024-09-11 09:12:14.630628 plmef 11493 R rec 67492909-4bb9-4631-ad39-3503a50238c6 +2024-09-11 09:12:14.688791 2024-09-11 09:12:14.688796 plmef 11494 R rec 6cb8f4e6-a2e9-40f5-9453-7e460e287365 +2024-09-11 09:12:14.749796 2024-09-11 09:12:14.749806 plmef 11495 R rec f2fc5fb0-0041-467d-ac27-5a27cf91bb1e +2024-09-11 09:12:14.820343 2024-09-11 09:12:14.820355 plmef 11496 R rec a09944c1-e010-4230-88ae-516e3124dd51 +2024-09-11 09:12:14.899224 2024-09-11 09:12:14.899235 plmef 11497 R rec 58dd1fd6-141f-4a2f-a752-1b48a8a15cc0 +2024-09-11 09:12:14.972897 2024-09-11 09:12:14.972902 plmef 11498 R rec 03594381-647d-4def-9075-699999d0531c +2024-09-11 09:12:15.048415 2024-09-11 09:12:15.048426 plmef 11499 R rec 6413f5ab-8dbe-4d6c-975a-c0d2cd12c78d +2024-09-11 09:12:15.122804 2024-09-11 09:12:15.122816 plmef 11500 R rec f223f1ff-9d00-4f91-b1a0-4b2fd5067ac1 +2024-09-11 09:12:15.193973 2024-09-11 09:12:15.193979 plmef 11501 R rec 4c87b350-c601-4f2d-ad91-2f1b40745cfa +2024-09-11 09:12:15.263852 2024-09-11 09:12:15.263862 plmef 11502 R rec 99b2efa2-92fc-412f-a85d-44847542b2a6 +2024-09-11 09:12:15.343074 2024-09-11 09:12:15.343079 plmef 11503 R rec b060daef-895e-4661-a6b7-0fa838a50ce8 +2024-09-11 09:12:15.407791 2024-09-11 09:12:15.407801 plmef 11504 R rec 9d8f4160-5866-4307-af06-8671e54330d8 +2024-09-11 09:12:15.480329 2024-09-11 09:12:15.480339 plmef 11505 R rec 78dda722-6a94-4a08-aa1d-df5c1d35d73d +2024-09-11 09:12:15.562276 2024-09-11 09:12:15.562282 plmef 11506 R rec 79f5712e-53d1-43e4-b5e3-14910b8af8ea +2024-09-11 09:12:15.674058 2024-09-11 09:12:15.674064 plmef 11507 R rec 010dc80e-8900-4c17-a667-31461057d5ff +2024-09-11 09:12:15.725026 2024-09-11 09:12:15.725032 plmef 11508 R rec b6694b87-9f44-4a8d-900c-cbd9b21fbd6e +2024-09-11 09:12:15.790285 2024-09-11 09:12:15.790295 plmef 11509 R rec 37b4cafb-dcb7-4280-bedc-f4d056eb2b0f +2024-09-11 09:12:15.851743 2024-09-11 09:12:15.851754 plmef 11510 R rec a437f433-97ff-4571-bc2a-dc7863a23fd8 +2024-09-11 09:12:15.935846 2024-09-11 09:12:15.935856 plmef 11511 R rec 04ff1793-92d3-431b-88aa-677572d2535e +2024-09-11 09:12:16.023568 2024-09-11 09:12:16.02358 plmef 11512 R rec 21ef60d5-9137-4560-bd4c-5b54f53581c2 +2024-09-11 09:12:16.089573 2024-09-11 09:12:16.089578 plmef 11513 R rec eb14916b-42d3-45d6-b635-9964dea7810a +2024-09-11 09:12:16.151315 2024-09-11 09:12:16.15132 plmef 11514 R rec fd768eb5-74c9-4262-8f68-69123b498517 +2024-09-11 09:12:16.208868 2024-09-11 09:12:16.208874 plmef 11515 R rec deb9e1ca-f2bb-4c6a-a519-1dcaeda6c808 +2024-09-11 09:12:16.271648 2024-09-11 09:12:16.271653 plmef 11516 R rec a3a3b532-44d5-4784-a8c8-bcb114aa5e2e +2024-09-11 09:12:16.342887 2024-09-11 09:12:16.342903 plmef 11517 R rec 9b262520-4098-4468-a64a-e6ac1d60d118 +2024-09-11 09:12:16.415694 2024-09-11 09:12:16.415699 plmef 11518 R rec 0566175f-f13f-4194-b6fe-ee587938dec7 +2024-09-11 09:12:16.479885 2024-09-11 09:12:16.479891 plmef 11519 R rec 0f3b7976-45ce-4115-820c-9af63016ad44 +2024-09-11 09:12:16.533646 2024-09-11 09:12:16.533651 plmef 11520 R rec 341eb4ce-c928-46f7-9154-ae8d01d40f64 +2024-09-11 09:12:16.609048 2024-09-11 09:12:16.609059 plmef 11521 R rec 6af7b52f-5e21-459a-bdac-3fb27701e8dc +2024-09-11 09:12:16.68159 2024-09-11 09:12:16.681596 plmef 11522 R rec 5ccf5bb7-af2d-4c74-871a-261b0394a2bd +2024-09-11 09:12:16.73783 2024-09-11 09:12:16.73784 plmef 11523 R rec 18cf488d-6ffa-47ae-8e30-c8add2152cfd +2024-09-11 09:12:16.823158 2024-09-11 09:12:16.823163 plmef 11524 R rec b3dcc20d-efd7-4993-8d36-615c6f9e4448 +2024-09-11 09:12:16.906495 2024-09-11 09:12:16.9065 plmef 11525 R rec a153e793-bf12-492d-9e67-44509ed82946 +2024-09-11 09:12:16.983341 2024-09-11 09:12:16.983351 plmef 11526 R rec b14dc138-9d71-44c4-8002-79f586bcdd76 +2024-09-11 09:12:17.062362 2024-09-11 09:12:17.062373 plmef 11527 R rec 06df3632-ef82-40a8-8af0-fb6a9045476a +2024-09-11 09:12:17.134168 2024-09-11 09:12:17.134178 plmef 11528 R rec 6857cb70-336d-4633-b81e-6e881db76adf +2024-09-11 09:12:17.198248 2024-09-11 09:12:17.198259 plmef 11529 R rec f00d8ed9-de82-4e07-ad67-bbcb0d845775 +2024-09-11 09:12:17.26098 2024-09-11 09:12:17.260985 plmef 11530 R rec 1784d288-dac5-4f8a-bec2-2a9177ff967e +2024-09-11 09:12:17.333646 2024-09-11 09:12:17.333658 plmef 11531 R rec 4531b227-926a-4352-9a99-9156fc78fc7a +2024-09-11 09:12:17.408744 2024-09-11 09:12:17.408748 plmef 11532 R rec 7f89abb1-4c00-4880-9477-60701dc7c5d0 +2024-09-11 09:12:17.472314 2024-09-11 09:12:17.47232 plmef 11533 R rec d1454115-093b-4fdc-982b-c36c8c98c9fd +2024-09-11 09:12:17.532772 2024-09-11 09:12:17.532776 plmef 11534 R rec cd20789d-5f01-44bf-8363-7f4743cf32dc +2024-09-11 09:12:17.602024 2024-09-11 09:12:17.602033 plmef 11535 R rec 75db51eb-7d2e-4af8-bd2d-e1e7142846e8 +2024-09-11 09:12:17.674526 2024-09-11 09:12:17.674531 plmef 11536 R rec 415e1cbf-3d70-4d60-baaa-cfb550900f07 +2024-09-11 09:12:17.74074 2024-09-11 09:12:17.74075 plmef 11537 R rec cae2dbb0-46e2-47e2-af35-aa7775068f31 +2024-09-11 09:12:17.81633 2024-09-11 09:12:17.816335 plmef 11538 R rec f8aac0df-c66d-494a-ab94-709c89b8ba09 +2024-09-11 09:12:17.89467 2024-09-11 09:12:17.894688 plmef 11539 R rec d25ce602-7ae1-4497-a31b-b1c439e200f8 +2024-09-11 09:12:17.987138 2024-09-11 09:12:17.987149 plmef 11540 R rec d49dc8ce-8903-466f-ad1e-3d81a7f6b245 +2024-09-11 09:12:18.076772 2024-09-11 09:12:18.076784 plmef 11541 R rec f757e3e8-1d5d-4b49-ac8a-0de7f1ad66a2 +2024-09-11 09:12:18.158231 2024-09-11 09:12:18.158247 plmef 11542 R rec 76d05782-0488-46c9-8dd4-4d0e70952a5d +2024-09-11 09:12:18.219552 2024-09-11 09:12:18.219556 plmef 11543 R rec 3094c24e-52ff-4eb0-8e4c-4a6ef7092f99 +2024-09-11 09:12:18.286887 2024-09-11 09:12:18.286892 plmef 11544 R rec 00c7bc9e-90f6-4a99-ba51-04ea1ac030d3 +2024-09-11 09:12:18.343486 2024-09-11 09:12:18.343496 plmef 11545 R rec 237ab93f-1ca1-42a3-85bf-e48315e7cc2a +2024-09-11 09:12:18.423734 2024-09-11 09:12:18.423745 plmef 11546 R rec ff033680-1c15-4841-8baa-b3a26333442b +2024-09-11 09:12:18.497561 2024-09-11 09:12:18.497572 plmef 11547 R rec edad4a8d-c161-4cdd-bce3-c983cedfd97d +2024-09-11 09:12:18.569 2024-09-11 09:12:18.569009 plmef 11548 R rec e01c4ca5-2582-4870-a2d5-0a1f6ca4ed7a +2024-09-11 09:12:18.659654 2024-09-11 09:12:18.659685 plmef 11549 R rec 81f05a57-20b0-417f-a38d-e1413125e0db +2024-09-11 09:12:18.719959 2024-09-11 09:12:18.719963 plmef 11550 R rec bb4032c9-2929-409b-a4ef-92750bc499ec +2024-09-11 09:12:18.797627 2024-09-11 09:12:18.797638 plmef 11551 R rec 51fa75f9-2154-429e-94db-fc32ab43abf4 +2024-09-11 09:12:18.878399 2024-09-11 09:12:18.878405 plmef 11552 R rec 1e3e9dff-6ac8-475f-8653-d5b63294958c +2024-09-11 09:12:18.949044 2024-09-11 09:12:18.949049 plmef 11553 R rec 84d8841b-08bc-4ebd-baf3-619286a72954 +2024-09-11 09:12:19.021004 2024-09-11 09:12:19.021013 plmef 11554 R rec 40ad4887-b2e2-4fff-a064-6255b10e167a +2024-09-11 09:12:19.083393 2024-09-11 09:12:19.083404 plmef 11555 R rec c1c6539b-65a5-46f7-b530-f56301adbb6f +2024-09-11 09:12:19.154515 2024-09-11 09:12:19.15452 plmef 11556 R rec f9e74198-3f8e-4a7c-8439-eec90e2396c7 +2024-09-11 09:12:19.21721 2024-09-11 09:12:19.217215 plmef 11557 R rec 5d56e7b9-05ff-4e7a-a054-36e7ccce8e5e +2024-09-11 09:12:19.28144 2024-09-11 09:12:19.281451 plmef 11558 R rec 37abd8b9-7997-4d27-848a-b8b08924b1ed +2024-09-11 09:12:19.360277 2024-09-11 09:12:19.360294 plmef 11559 R rec 26d82b90-d696-42eb-ae18-da49764e58c4 +2024-09-11 09:12:19.430197 2024-09-11 09:12:19.430208 plmef 11560 R rec 27626816-b30d-476a-b6cf-584dd17c734f +2024-09-11 09:12:19.501511 2024-09-11 09:12:19.501516 plmef 11561 R rec 66726421-0f6a-41be-9683-8ac50518e541 +2024-09-11 09:12:19.568814 2024-09-11 09:12:19.568825 plmef 11562 R rec 89b71780-5080-4aed-a289-ebaeadab92ee +2024-09-11 09:12:19.643004 2024-09-11 09:12:19.643015 plmef 11563 R rec 8f289f01-dc8f-4e90-9b5e-fce3cf2d3288 +2024-09-11 09:12:19.702139 2024-09-11 09:12:19.702143 plmef 11564 R rec b2da201f-1299-4379-8546-ceea5275bef5 +2024-09-11 09:12:19.757168 2024-09-11 09:12:19.757178 plmef 11565 R rec 0001d869-02c3-4f8e-a965-d01fe19d011b +2024-09-11 09:12:19.825018 2024-09-11 09:12:19.825023 plmef 11566 R rec 7dda59a7-12c6-4b98-acfd-88dc684f2609 +2024-09-11 09:12:19.902507 2024-09-11 09:12:19.902519 plmef 11567 R rec 238067dc-893b-4304-a148-066b664ade72 +2024-09-11 09:12:19.970623 2024-09-11 09:12:19.970633 plmef 11568 R rec 1b3637a5-6f59-4583-805f-b8efd89133a2 +2024-09-11 09:12:20.053375 2024-09-11 09:12:20.053385 plmef 11569 R rec 7832692f-ed02-4bc3-8d04-d4fa69dba9c1 +2024-09-11 09:12:20.124732 2024-09-11 09:12:20.124737 plmef 11570 R rec cba511ac-c30e-4587-ac45-e6740692b20f +2024-09-11 09:12:20.188503 2024-09-11 09:12:20.188507 plmef 11571 R rec ec388070-bc9f-460c-aa63-13dd5aae558c +2024-09-11 09:12:20.241874 2024-09-11 09:12:20.24188 plmef 11572 R rec 5c5c92a1-1fad-414b-8485-9480884daf6d +2024-09-11 09:12:20.314224 2024-09-11 09:12:20.314234 plmef 11573 R rec ddfcd3b0-ccd5-4748-804b-42bad8d6b7b4 +2024-09-11 09:12:20.387103 2024-09-11 09:12:20.387112 plmef 11574 R rec 322edc05-3c70-4b51-888a-3a497ad2cbb1 +2024-09-11 09:12:20.478101 2024-09-11 09:12:20.47812 plmef 11575 R rec 65e3418d-db8a-49c3-a0fc-a391a3bef019 +2024-09-11 09:12:20.556254 2024-09-11 09:12:20.556265 plmef 11576 R rec dba307f0-e46e-477b-a327-712d0984da75 +2024-09-11 09:12:20.652113 2024-09-11 09:12:20.652123 plmef 11577 R rec 3fc9d070-b6da-42a1-b38e-78c167e8fcf3 +2024-09-11 09:12:20.705313 2024-09-11 09:12:20.705318 plmef 11578 R rec e4f6392f-4fad-43fa-b84e-745485e5856d +2024-09-11 09:12:20.759244 2024-09-11 09:12:20.759248 plmef 11579 R rec 50ff65de-36b0-44e6-84bc-808c04a40955 +2024-09-11 09:12:20.833741 2024-09-11 09:12:20.833746 plmef 11580 R rec 03ccf299-a2fc-43dd-abc4-41be0309ec8e +2024-09-11 09:12:20.911597 2024-09-11 09:12:20.911608 plmef 11581 R rec 267fa135-82e2-4d6d-8059-a5bf25e094b3 +2024-09-11 09:12:20.99584 2024-09-11 09:12:20.995845 plmef 11582 R rec 1ab1937a-c55a-45c8-9780-25724e54a8b1 +2024-09-11 09:12:21.064898 2024-09-11 09:12:21.064903 plmef 11583 R rec fcfaefde-d0e1-4b71-9194-cee3c23f4bab +2024-09-11 09:12:21.208222 2024-09-11 09:12:21.208227 plmef 11584 R rec 6c4166a8-f115-43b0-af80-b0d4bb8d3bd6 +2024-09-11 09:12:21.295144 2024-09-11 09:12:21.29515 plmef 11585 R rec f335c45b-0f39-4fd6-9436-031fdc93304a +2024-09-11 09:12:21.374326 2024-09-11 09:12:21.374337 plmef 11586 R rec 035fc096-6b5d-4ed1-8dab-2a27f97d7a7c +2024-09-11 09:12:21.451721 2024-09-11 09:12:21.451731 plmef 11587 R rec 0b4b67af-b946-422c-98ef-5b918b0ee352 +2024-09-11 09:12:21.52409 2024-09-11 09:12:21.524101 plmef 11588 R rec 4d40c6b3-920d-47b4-9b38-29be0f8a0230 +2024-09-11 09:12:21.599884 2024-09-11 09:12:21.599889 plmef 11589 R rec 436e0c7e-2611-4ef2-84ef-785747504736 +2024-09-11 09:12:21.667549 2024-09-11 09:12:21.66756 plmef 11590 R rec 8357997b-fe66-4480-961d-2d45d98e4389 +2024-09-11 09:12:21.718636 2024-09-11 09:12:21.718641 plmef 11591 R rec eb5e6f01-03cb-46e7-9462-f25474414f4f +2024-09-11 09:12:21.785989 2024-09-11 09:12:21.785994 plmef 11592 R rec 7a7a9553-839e-4830-82c0-e8952a288270 +2024-09-11 09:12:21.850358 2024-09-11 09:12:21.850369 plmef 11593 R rec 420a0663-2205-4a15-a721-0d5e1f6c67d1 +2024-09-11 09:12:21.921128 2024-09-11 09:12:21.921139 plmef 11594 R rec 4de926e7-fe5e-4e98-a41a-b786e1ae0f42 +2024-09-11 09:12:21.99097 2024-09-11 09:12:21.990976 plmef 11595 R rec f1ded10b-c93e-4991-9821-6bdbdc68e901 +2024-09-11 09:12:22.048376 2024-09-11 09:12:22.048382 plmef 11596 R rec d5f60ad6-c3c4-44fe-bd81-61cc71a174a3 +2024-09-11 09:12:22.113399 2024-09-11 09:12:22.113404 plmef 11597 R rec 77da28f1-e460-437d-a051-ac9869fdaa2b +2024-09-11 09:12:22.180505 2024-09-11 09:12:22.180511 plmef 11598 R rec 8136c071-f298-45e5-901f-bfc909a3036c +2024-09-11 09:12:22.2366 2024-09-11 09:12:22.236605 plmef 11599 R rec 5fe7c8f1-2017-44bb-afb9-03ab11fc1f1c +2024-09-11 09:12:22.31014 2024-09-11 09:12:22.310152 plmef 11600 R rec 78f99e4f-0768-447d-9ecc-108c5ed5851e +2024-09-11 09:12:22.384387 2024-09-11 09:12:22.3844 plmef 11601 R rec 60c06567-55b0-4084-a8aa-7a4babc1d067 +2024-09-11 09:12:22.458716 2024-09-11 09:12:22.458728 plmef 11602 R rec 69badde6-31fc-4f0e-8ca4-ed26d4da9e05 +2024-09-11 09:12:22.537086 2024-09-11 09:12:22.537097 plmef 11603 R rec 901a204b-adbc-4afa-9f03-fae84f484902 +2024-09-11 09:12:22.619368 2024-09-11 09:12:22.61938 plmef 11604 R rec 4c49328a-5913-4c05-ac2b-fc2f93f44593 +2024-09-11 09:12:22.692138 2024-09-11 09:12:22.692143 plmef 11605 R rec d17c3306-f9d4-45ca-a6a8-b3463bda8fa8 +2024-09-11 09:12:22.743654 2024-09-11 09:12:22.743659 plmef 11606 R rec b4173d39-a488-479a-a057-1af0a67fad9a +2024-09-11 09:12:22.813294 2024-09-11 09:12:22.813305 plmef 11607 R rec f72882d2-82d1-466f-81f4-87b78c301358 +2024-09-11 09:12:22.880754 2024-09-11 09:12:22.880767 plmef 11608 R rec 38be45a0-bf75-465c-a8eb-2dc7c9974257 +2024-09-11 09:12:22.952909 2024-09-11 09:12:22.95292 plmef 11609 R rec 1b207196-86f7-4952-ad58-bb0b920720ea +2024-09-11 09:12:23.041902 2024-09-11 09:12:23.041914 plmef 11610 R rec fd4183fe-bbd6-4880-bd82-d97c1c4621ae +2024-09-11 09:12:23.110945 2024-09-11 09:12:23.110958 plmef 11611 R rec 80517025-37e9-4e67-b316-55ef3bcc0b77 +2024-09-11 09:12:23.231117 2024-09-11 09:12:23.231122 plmef 11612 R rec 9c7b6590-36bb-4df4-843a-3337fcb24cd4 +2024-09-11 09:12:23.344183 2024-09-11 09:12:23.344189 plmef 11613 R rec 2b59acb8-9132-4dba-a5d5-54d9e01d3276 +2024-09-11 09:12:23.393121 2024-09-11 09:12:23.393126 plmef 11614 R rec a49c1db5-fe32-485f-b065-3097987dae5b +2024-09-11 09:12:23.439252 2024-09-11 09:12:23.439257 plmef 11615 R rec 3337d41e-6ae1-48e4-a190-4700bb4aa50a +2024-09-11 09:12:23.487426 2024-09-11 09:12:23.487431 plmef 11616 R rec c6b09d47-56ce-48e8-9df6-cf728efd091b +2024-09-11 09:12:23.534866 2024-09-11 09:12:23.534871 plmef 11617 R rec a1b4f1be-7482-4f5d-97d2-410e5552098c +2024-09-11 09:12:23.582426 2024-09-11 09:12:23.582431 plmef 11618 R rec 6fc64584-7ad2-4802-9220-140f7ee44027 +2024-09-11 09:12:23.633787 2024-09-11 09:12:23.633792 plmef 11619 R rec b270aa87-004b-4547-b62f-1508cc10ba39 +2024-09-11 09:12:23.687089 2024-09-11 09:12:23.687095 plmef 11620 R rec d56cdfe4-880a-4ec4-988e-f5dc6e324750 +2024-09-11 09:12:23.734668 2024-09-11 09:12:23.734673 plmef 11621 R rec dbdf3021-3569-4358-a11b-0de0b0eb14f4 +2024-09-11 09:12:23.793864 2024-09-11 09:12:23.793875 plmef 11622 R rec 6d6e1da7-6f1a-4f40-b4e0-cea321df40e3 +2024-09-11 09:12:23.860184 2024-09-11 09:12:23.860195 plmef 11623 R rec 08894df0-ad0f-4091-9304-c4db476174d4 +2024-09-11 09:12:23.938941 2024-09-11 09:12:23.938945 plmef 11624 R rec edeebb8e-d4bf-4649-a4c6-3acca062721e +2024-09-11 09:12:24.005121 2024-09-11 09:12:24.005132 plmef 11625 R rec 00c729ba-b0c3-42b8-8685-79e89a40e2c9 +2024-09-11 09:12:24.080131 2024-09-11 09:12:24.080141 plmef 11626 R rec 1888b8b3-802c-420b-9e1a-da4c74d53057 +2024-09-11 09:12:24.143698 2024-09-11 09:12:24.14371 plmef 11627 R rec a255ed7e-48d7-4bb9-8ed5-fb6e2aa1a5e9 +2024-09-11 09:12:24.203683 2024-09-11 09:12:24.203688 plmef 11628 R rec 160bf1f7-cb84-4509-8184-f3ff4bf2b62b +2024-09-11 09:12:24.252677 2024-09-11 09:12:24.2527 plmef 11629 R rec b46c7ad5-49a6-4659-bd78-168e6fc7e423 +2024-09-11 09:12:24.315732 2024-09-11 09:12:24.315743 plmef 11630 R rec 6447451b-80c0-41cf-ac73-b12cb684edde +2024-09-11 09:12:24.38693 2024-09-11 09:12:24.386936 plmef 11631 R rec ccb6c3ba-ae69-49e4-84e8-5ef41416cf9c +2024-09-11 09:12:24.462747 2024-09-11 09:12:24.462758 plmef 11632 R rec cd2befd5-3813-46e3-b8ce-e0dc134ebc33 +2024-09-11 09:12:24.529923 2024-09-11 09:12:24.529935 plmef 11633 R rec d22f8f7d-aee3-4ffc-b6c3-14c71de18391 +2024-09-11 09:12:24.593023 2024-09-11 09:12:24.593033 plmef 11634 R rec 5d8fcbee-2eea-4ae7-ac62-69b5e180efb4 +2024-09-11 09:12:24.657743 2024-09-11 09:12:24.657748 plmef 11635 R rec 860ace7b-538f-4dbd-b283-9b37fc6b18a9 +2024-09-11 09:12:24.714271 2024-09-11 09:12:24.714276 plmef 11636 R rec 0eacc78f-0dc4-4bf2-9685-11f48a71a7be +2024-09-11 09:12:24.771314 2024-09-11 09:12:24.771324 plmef 11637 R rec 08137610-1166-4374-80c4-59c6290fd1c9 +2024-09-11 09:12:24.832797 2024-09-11 09:12:24.832802 plmef 11638 R rec 1d9716e2-9e27-476a-b8f3-65a07a4be08b +2024-09-11 09:12:24.889334 2024-09-11 09:12:24.88934 plmef 11639 R rec 6476005d-11e2-4f24-a219-0e632b9c7fbc +2024-09-11 09:12:24.954333 2024-09-11 09:12:24.954343 plmef 11640 R rec 7b141c81-cbc8-4bef-a7bb-b8c59b4b742d +2024-09-11 09:12:25.025276 2024-09-11 09:12:25.025286 plmef 11641 R rec 975e58fc-ff8d-4b96-9c61-55483c1ada07 +2024-09-11 09:12:25.09019 2024-09-11 09:12:25.0902 plmef 11642 R rec a106bf64-810d-4c82-a586-600f93905410 +2024-09-11 09:12:25.153389 2024-09-11 09:12:25.153398 plmef 11643 R rec a180028f-8a92-4da7-b76d-effd44680aa2 +2024-09-11 09:12:25.212798 2024-09-11 09:12:25.212803 plmef 11644 R rec 55f41dae-fe5c-414b-b2e7-fa919e1ceca7 +2024-09-11 09:12:25.290829 2024-09-11 09:12:25.29084 plmef 11645 R rec 08f0efb7-d092-4363-80a7-596faafd8ce1 +2024-09-11 09:12:25.36139 2024-09-11 09:12:25.361401 plmef 11646 R rec 988b75a9-21bb-48d7-9cdb-dc15503b5587 +2024-09-11 09:12:25.432036 2024-09-11 09:12:25.432042 plmef 11647 R rec f4d5921d-064c-482d-a4dc-47f87119a157 +2024-09-11 09:12:25.500103 2024-09-11 09:12:25.500113 plmef 11648 R rec d3e79eab-8e1f-4164-b43c-ce747eca6387 +2024-09-11 09:12:25.573993 2024-09-11 09:12:25.574004 plmef 11649 R rec 6443cee5-fa06-4d5f-9a50-484d7c9459e3 +2024-09-11 09:12:25.641018 2024-09-11 09:12:25.641028 plmef 11650 R rec 05dd4758-68ea-4fa7-8727-0d04abaf3635 +2024-09-11 09:12:25.715959 2024-09-11 09:12:25.715965 plmef 11651 R rec 6855091c-a21f-4593-b53c-e0da20905883 +2024-09-11 09:12:25.791647 2024-09-11 09:12:25.791658 plmef 11652 R rec 06b99672-55f0-4187-822e-9f63992a8f1a +2024-09-11 09:12:25.867709 2024-09-11 09:12:25.86772 plmef 11653 R rec 4dbea458-1d7e-4871-90f4-1b10c919895e +2024-09-11 09:12:25.936693 2024-09-11 09:12:25.936711 plmef 11654 R rec f2704721-726c-4b04-8093-bbfc99e6759d +2024-09-11 09:12:26.00645 2024-09-11 09:12:26.006456 plmef 11655 R rec 216f1439-d255-4f4b-ac9b-9fa1ac44c390 +2024-09-11 09:12:26.068331 2024-09-11 09:12:26.068336 plmef 11656 R rec b92bd40e-1bff-4189-9701-39242903b8e5 +2024-09-11 09:12:26.151268 2024-09-11 09:12:26.151278 plmef 11657 R rec 2b94f79d-ec28-4507-88ab-367a41748891 +2024-09-11 09:12:26.210814 2024-09-11 09:12:26.210818 plmef 11658 R rec af224afd-f9d9-48d9-ac0a-32fa7cc40e1f +2024-09-11 09:12:26.264388 2024-09-11 09:12:26.264394 plmef 11659 R rec 9be11aa3-f5d9-4de1-9aad-a66a36e3572b +2024-09-11 09:12:26.331281 2024-09-11 09:12:26.331329 plmef 11660 R rec 2090f93a-38ee-4db7-bfeb-c4fb91ef0130 +2024-09-11 09:12:26.396075 2024-09-11 09:12:26.39608 plmef 11661 R rec 2664d19f-892d-43df-a644-57c95fbc64fb +2024-09-11 09:12:26.463464 2024-09-11 09:12:26.463475 plmef 11662 R rec 0a134830-3707-4424-94e6-a6a87ff5a725 +2024-09-11 09:12:26.539838 2024-09-11 09:12:26.539843 plmef 11663 R rec 7b0660a3-b86c-4012-b0b4-24a832049766 +2024-09-11 09:12:26.620605 2024-09-11 09:12:26.620617 plmef 11664 R rec ea8356e4-3eba-4e07-b0c6-0d0762c7090b +2024-09-11 09:12:26.692206 2024-09-11 09:12:26.692212 plmef 11665 R rec 577445f8-fba6-4d4b-9878-b113d57b0f1e +2024-09-11 09:12:26.751867 2024-09-11 09:12:26.751872 plmef 11666 R rec fa997537-5b88-4ada-90b5-57b114ba9e7e +2024-09-11 09:12:26.820387 2024-09-11 09:12:26.820398 plmef 11667 R rec 637e0739-1f7f-4233-aa01-bba8ea18f22e +2024-09-11 09:12:26.898737 2024-09-11 09:12:26.898747 plmef 11668 R rec fdf2e8a9-9ff3-4789-898f-fcb843094e37 +2024-09-11 09:12:26.991464 2024-09-11 09:12:26.991482 plmef 11669 R rec 2daa23fd-081d-4783-b05c-7ef9a652abc2 +2024-09-11 09:12:27.074103 2024-09-11 09:12:27.074109 plmef 11670 R rec 3aafc089-afe6-4d0a-b198-99904917cf18 +2024-09-11 09:12:27.134524 2024-09-11 09:12:27.134535 plmef 11671 R rec 9b48f74b-2b28-4a67-b0e4-491fea8d17bd +2024-09-11 09:12:27.201393 2024-09-11 09:12:27.201399 plmef 11672 R rec 4bc9bbc4-95e8-4f87-b471-69f57542213c +2024-09-11 09:12:27.252727 2024-09-11 09:12:27.252733 plmef 11673 R rec 858c259f-435d-47c9-a3c2-126455905873 +2024-09-11 09:12:27.315259 2024-09-11 09:12:27.315264 plmef 11674 R rec ce84ee0f-a0ab-40c0-aa3a-1d5ef42f4776 +2024-09-11 09:12:27.381651 2024-09-11 09:12:27.381656 plmef 11675 R rec dd8b3207-66f5-478a-b3cc-1a2850115f26 +2024-09-11 09:12:27.451363 2024-09-11 09:12:27.451373 plmef 11676 R rec 947f79b8-6e0f-4739-b213-d0591a9a8e63 +2024-09-11 09:12:27.527117 2024-09-11 09:12:27.527122 plmef 11677 R rec 2e4f1761-024c-4c54-8ba9-377f84724235 +2024-09-11 09:12:27.602472 2024-09-11 09:12:27.602483 plmef 11678 R rec c6fcaf0e-97f9-4202-b27d-076c2ed2d002 +2024-09-11 09:12:27.685476 2024-09-11 09:12:27.685483 plmef 11679 R rec 2ddd2ed2-608b-4423-a175-078c09545fcd +2024-09-11 09:12:27.737983 2024-09-11 09:12:27.737988 plmef 11680 R rec 9cc1c208-99bb-4919-9caf-89f92c72bcab +2024-09-11 09:12:27.795505 2024-09-11 09:12:27.79551 plmef 11681 R rec e1955e18-9566-4d12-ba63-ccd5bfb85fa4 +2024-09-11 09:12:27.858896 2024-09-11 09:12:27.858908 plmef 11682 R rec 181d8076-23af-4c7c-a344-cd6f85c7e0e8 +2024-09-11 09:12:27.922488 2024-09-11 09:12:27.922493 plmef 11683 R rec e67761b7-d5ab-4375-8c46-cbcc5ad7e729 +2024-09-11 09:12:27.987873 2024-09-11 09:12:27.987885 plmef 11684 R rec 03e78113-5973-4b65-a720-11186f63a55c +2024-09-11 09:12:28.053062 2024-09-11 09:12:28.053067 plmef 11685 R rec 1c05437b-561b-429d-9479-4712b8dca5b5 +2024-09-11 09:12:28.120019 2024-09-11 09:12:28.120031 plmef 11686 R rec b4347a60-3315-476b-9c4b-494e5c4c283f +2024-09-11 09:12:28.192172 2024-09-11 09:12:28.192177 plmef 11687 R rec f915f171-d517-4cce-8cf7-6024184622a1 +2024-09-11 09:12:28.272242 2024-09-11 09:12:28.272246 plmef 11688 R rec 536dea75-1103-4685-857e-bfee0038648c +2024-09-11 09:12:28.34852 2024-09-11 09:12:28.34853 plmef 11689 R rec 3cdca711-1ad0-48c8-b91e-f91ee6bf4a58 +2024-09-11 09:12:28.417455 2024-09-11 09:12:28.417461 plmef 11690 R rec ac21a3b6-26f2-45ff-945b-3ef3b7ddcb25 +2024-09-11 09:12:28.471771 2024-09-11 09:12:28.471781 plmef 11691 R rec 91d6bb20-80b2-4eb4-a235-416ea29e4a8c +2024-09-11 09:12:28.533978 2024-09-11 09:12:28.53399 plmef 11692 R rec 26385370-0982-4e3e-9c5a-8dbd0e21e130 +2024-09-11 09:12:28.597833 2024-09-11 09:12:28.597839 plmef 11693 R rec fd302f14-0f40-4ea8-89c8-4d373146de2a +2024-09-11 09:12:28.661611 2024-09-11 09:12:28.661622 plmef 11694 R rec ef32e3e1-f097-4be7-bc61-f83230896de6 +2024-09-11 09:12:28.71917 2024-09-11 09:12:28.719175 plmef 11695 R rec 8df45a8d-70a2-4f3a-833b-dc50e39d897d +2024-09-11 09:12:28.767129 2024-09-11 09:12:28.767134 plmef 11696 R rec 8afcc7a0-f328-4c67-81ab-257f5bc0e927 +2024-09-11 09:12:28.830523 2024-09-11 09:12:28.830528 plmef 11697 R rec e864ac72-6e17-4851-a048-7c7c223cb9e8 +2024-09-11 09:12:28.904622 2024-09-11 09:12:28.904633 plmef 11698 R rec 02bc52d8-5da0-4fa7-b078-03fb7ca3e4c1 +2024-09-11 09:12:28.96808 2024-09-11 09:12:28.968085 plmef 11699 R rec 25fce0a0-178e-4c17-a448-9458d9dd0410 +2024-09-11 09:12:29.041671 2024-09-11 09:12:29.041682 plmef 11700 R rec 5bb0900c-00e0-478e-ada0-b6f36f2aed26 +2024-09-11 09:12:29.110751 2024-09-11 09:12:29.110756 plmef 11701 R rec cc26c1cb-4859-410b-a74c-2677ccc8f0fa +2024-09-11 09:12:29.180319 2024-09-11 09:12:29.180332 plmef 11702 R rec f669693e-651c-4cd8-8d12-c92c3ca4f5d1 +2024-09-11 09:12:29.251633 2024-09-11 09:12:29.251644 plmef 11703 R rec 17f896c6-5f81-47b6-9565-883032b53171 +2024-09-11 09:12:29.317497 2024-09-11 09:12:29.317501 plmef 11704 R rec f81059bf-5b12-4d23-90de-ea5fc2d3b3e6 +2024-09-11 09:12:29.387271 2024-09-11 09:12:29.387283 plmef 11705 R rec ad4e7508-4346-4375-9f53-152261c8c019 +2024-09-11 09:12:29.452872 2024-09-11 09:12:29.452885 plmef 11706 R rec 38609de7-6f5f-45b8-b60f-40ac0a6b271c +2024-09-11 09:12:29.547187 2024-09-11 09:12:29.547193 plmef 11707 R rec 58a63b1e-a63d-47f3-bea9-1aa864e09b48 +2024-09-11 09:12:29.63296 2024-09-11 09:12:29.632965 plmef 11708 R rec d3a3ab7a-9de6-420d-b01c-15d24088e24f +2024-09-11 09:12:29.709131 2024-09-11 09:12:29.709136 plmef 11709 R rec 0be962d5-a946-4b5a-8466-9a76935adf38 +2024-09-11 09:12:29.762046 2024-09-11 09:12:29.762051 plmef 11710 R rec a3937fa7-0fb8-44b8-a5e1-4b3b79a7189d +2024-09-11 09:12:29.827724 2024-09-11 09:12:29.827736 plmef 11711 R rec c656c67d-207a-4c7b-b0db-3a5548714b1a +2024-09-11 09:12:29.89924 2024-09-11 09:12:29.89925 plmef 11712 R rec 7be002fd-05d8-4e21-a5f7-2456b1839e14 +2024-09-11 09:12:29.971357 2024-09-11 09:12:29.971369 plmef 11713 R rec eca2a12e-df11-4ea9-945c-69c4579612f6 +2024-09-11 09:12:30.04202 2024-09-11 09:12:30.042032 plmef 11714 R rec 61dde51e-add8-43f8-abac-4f1e3fe72c34 +2024-09-11 09:12:30.121449 2024-09-11 09:12:30.121461 plmef 11715 R rec 2cde672f-86b1-4abe-85d6-eb92704011cd +2024-09-11 09:12:30.193896 2024-09-11 09:12:30.1939 plmef 11716 R rec b7a85e29-0ba7-48a1-92fb-1342c67f22c6 +2024-09-11 09:12:30.27283 2024-09-11 09:12:30.272835 plmef 11717 R rec 56a2223a-46d3-4fcd-8d3e-977558f0c097 +2024-09-11 09:12:30.344326 2024-09-11 09:12:30.344339 plmef 11718 R rec bf24bdf3-8e3b-415f-9afc-52c2a9568e09 +2024-09-11 09:12:30.42093 2024-09-11 09:12:30.420942 plmef 11719 R rec 2f47d8ac-9d19-4901-b097-7211d7b90381 +2024-09-11 09:12:30.50031 2024-09-11 09:12:30.500322 plmef 11720 R rec b988ba33-04cb-408d-8546-13f588b1ee53 +2024-09-11 09:12:30.568112 2024-09-11 09:12:30.568123 plmef 11721 R rec 2db73058-fcec-442f-a4c0-42838d9ef63b +2024-09-11 09:12:30.644267 2024-09-11 09:12:30.644279 plmef 11722 R rec 2ac7ae6a-e414-4b16-a9e9-31e4742a85b2 +2024-09-11 09:12:30.711174 2024-09-11 09:12:30.711179 plmef 11723 R rec 31a54150-71d2-40bb-aa18-915d8a8b0ce9 +2024-09-11 09:12:30.7861 2024-09-11 09:12:30.786106 plmef 11724 R rec cb01995d-4b3a-4b4d-9440-5e87107b1c98 +2024-09-11 09:12:30.852399 2024-09-11 09:12:30.85241 plmef 11725 R rec 89e75dc2-1506-4b4f-8726-c848b167a577 +2024-09-11 09:12:30.937793 2024-09-11 09:12:30.937805 plmef 11726 R rec 16917b6e-57c0-4f53-9e24-398c37b2a6ed +2024-09-11 09:12:31.015481 2024-09-11 09:12:31.015486 plmef 11727 R rec 309b43a7-d9e5-47d2-a76a-f4b2f9f379b0 +2024-09-11 09:12:31.090214 2024-09-11 09:12:31.090225 plmef 11728 R rec fb7a9853-b1fa-4176-914f-ec84a27aa065 +2024-09-11 09:12:31.172198 2024-09-11 09:12:31.172209 plmef 11729 R rec 796043ce-9282-4ee3-b632-a37b062c746d +2024-09-11 09:12:31.231824 2024-09-11 09:12:31.231829 plmef 11730 R rec a2374357-3ef8-4eca-91ef-051923a2b3cd +2024-09-11 09:12:31.295635 2024-09-11 09:12:31.295648 plmef 11731 R rec e8d5131a-b4ce-43aa-a8ed-e9b385689841 +2024-09-11 09:12:31.359741 2024-09-11 09:12:31.359747 plmef 11732 R rec 9d7d07ba-b658-4089-b3b8-eb986a236044 +2024-09-11 09:12:31.433071 2024-09-11 09:12:31.433083 plmef 11733 R rec 19910900-a55d-40e5-b046-7b97f5829151 +2024-09-11 09:12:31.499288 2024-09-11 09:12:31.4993 plmef 11734 R rec 7084d28b-3dd7-49cd-a886-56c3f925f879 +2024-09-11 09:12:31.579378 2024-09-11 09:12:31.579383 plmef 11735 R rec f4b9dfe6-c390-44b8-a92f-f8d26de39192 +2024-09-11 09:12:31.646909 2024-09-11 09:12:31.64692 plmef 11736 R rec 3b96db14-5a11-4bc6-b474-b6c5289a7957 +2024-09-11 09:12:31.710005 2024-09-11 09:12:31.71001 plmef 11737 R rec d46cef50-a1f4-4aa2-8591-362dd461cde5 +2024-09-11 09:12:31.760198 2024-09-11 09:12:31.760203 plmef 11738 R rec fc45e594-df12-492e-a3c6-8b1bf1e248a3 +2024-09-11 09:12:31.828182 2024-09-11 09:12:31.828188 plmef 11739 R rec 4b0024cc-e2df-45d3-a6cc-a1149638fdc8 +2024-09-11 09:12:31.900338 2024-09-11 09:12:31.900349 plmef 11740 R rec 2ba89dbe-1594-4fd3-8825-92676dc79ff8 +2024-09-11 09:12:31.970981 2024-09-11 09:12:31.970993 plmef 11741 R rec 3bc3881c-4266-41bc-b2a1-ababeec15147 +2024-09-11 09:12:32.04174 2024-09-11 09:12:32.041746 plmef 11742 R rec e0a6f83f-2b55-4498-bc11-5312641d813e +2024-09-11 09:12:32.107384 2024-09-11 09:12:32.107388 plmef 11743 R rec edc4c5bc-a93c-47e9-b0c6-c3189c0cd6bb +2024-09-11 09:12:32.178467 2024-09-11 09:12:32.17848 plmef 11744 R rec e7095cad-0320-4fc2-94d5-147da7b2c6af +2024-09-11 09:12:32.252713 2024-09-11 09:12:32.252724 plmef 11745 R rec 7a8adcdc-2e0a-43a2-ac0f-7c6f0e173de4 +2024-09-11 09:12:32.319753 2024-09-11 09:12:32.319765 plmef 11746 R rec 6983052e-4b1e-4efd-bb06-c73e17101525 +2024-09-11 09:12:32.392043 2024-09-11 09:12:32.392055 plmef 11747 R rec 60bd72c3-a88a-43f2-9889-fb4a4f8b8175 +2024-09-11 09:12:32.463943 2024-09-11 09:12:32.463955 plmef 11748 R rec 73ab3959-13a6-4476-9d16-746af517a112 +2024-09-11 09:12:32.545547 2024-09-11 09:12:32.545553 plmef 11749 R rec db2e313a-13c6-4050-ae32-02d3f10c11bc +2024-09-11 09:12:32.620386 2024-09-11 09:12:32.620398 plmef 11750 R rec 8d6c64d1-a69d-4242-9c91-ca4ac65bb42f +2024-09-11 09:12:32.698525 2024-09-11 09:12:32.69853 plmef 11751 R rec 372ee807-3cd5-4fe7-8864-d48812995a1e +2024-09-11 09:12:32.756094 2024-09-11 09:12:32.756099 plmef 11752 R rec d367f8c3-0954-4f43-b5de-6bf27d2ffb18 +2024-09-11 09:12:32.817321 2024-09-11 09:12:32.817333 plmef 11753 R rec 9a22661b-658f-4352-b093-cf8dfe713bf8 +2024-09-11 09:12:32.893801 2024-09-11 09:12:32.893813 plmef 11754 R rec 2d2f2884-dca5-42c7-8f86-0af96e61d9eb +2024-09-11 09:12:32.963384 2024-09-11 09:12:32.963395 plmef 11755 R rec 55b66111-4367-4806-8aff-cf5570d6121c +2024-09-11 09:12:33.038511 2024-09-11 09:12:33.038516 plmef 11756 R rec 29d21df2-9bb7-48ee-93e5-06d8e2fc47c3 +2024-09-11 09:12:33.104633 2024-09-11 09:12:33.104645 plmef 11757 R rec ee9455fa-52b9-40c0-bded-20896f42a29a +2024-09-11 09:12:33.176606 2024-09-11 09:12:33.176612 plmef 11758 R rec 3da2f4fa-55d3-46d0-8eda-a0f3e2aa9808 +2024-09-11 09:12:33.343492 2024-09-11 09:12:33.343497 plmef 11759 R rec 79e9a0d7-d457-4340-9812-97b7c67cac9a +2024-09-11 09:12:33.39952 2024-09-11 09:12:33.39953 plmef 11760 R rec d4f37563-78c3-4a2c-afe7-f96b8b7273cb +2024-09-11 09:12:33.475479 2024-09-11 09:12:33.47549 plmef 11761 R rec 52f7a4b4-6e41-48e7-af15-c188ce3814b2 +2024-09-11 09:12:33.543894 2024-09-11 09:12:33.543905 plmef 11762 R rec e705eae2-1ab5-4657-902d-3482826cf742 +2024-09-11 09:12:33.612617 2024-09-11 09:12:33.612629 plmef 11763 R rec b2d9f010-4036-48a7-a2a4-e9de38a30ac6 +2024-09-11 09:12:33.695225 2024-09-11 09:12:33.695231 plmef 11764 R rec 3c2f76f1-3ab5-4ce7-9c43-d766ce8db20b +2024-09-11 09:12:33.748848 2024-09-11 09:12:33.748854 plmef 11765 R rec 822fd9b9-d1a7-4ae1-b1ca-d3e697eecd1b +2024-09-11 09:12:33.80947 2024-09-11 09:12:33.809476 plmef 11766 R rec 36b172b2-c41b-4293-ac64-d1c9f324e9e0 +2024-09-11 09:12:33.885843 2024-09-11 09:12:33.885855 plmef 11767 R rec 6341bbcd-df32-482e-801e-adadcdd3c39c +2024-09-11 09:12:33.961215 2024-09-11 09:12:33.961226 plmef 11768 R rec e53b5c04-5b84-41bd-bfd4-74eefe8b18bb +2024-09-11 09:12:34.070452 2024-09-11 09:12:34.070457 plmef 11769 R rec acce4aee-ed2b-4a92-abbf-65aefda5fa2e +2024-09-11 09:12:34.123898 2024-09-11 09:12:34.123909 plmef 11770 R rec 6d8be7dd-544d-4ffc-a08d-6d705f2de317 +2024-09-11 09:12:34.193924 2024-09-11 09:12:34.193936 plmef 11771 R rec 1b1fe950-ae56-4f5c-bb34-4db0c8ad6dd0 +2024-09-11 09:12:34.252046 2024-09-11 09:12:34.252051 plmef 11772 R rec 26bcdd1c-b3f9-40c8-b142-dfa3e3e59849 +2024-09-11 09:12:34.320195 2024-09-11 09:12:34.3202 plmef 11773 R rec fd64f7b9-ec52-4550-8f63-e62aea00b49d +2024-09-11 09:12:34.388686 2024-09-11 09:12:34.388696 plmef 11774 R rec 7dad377a-2d46-435e-84e5-55835e04afa5 +2024-09-11 09:12:34.459283 2024-09-11 09:12:34.459288 plmef 11775 R rec c12fa3ac-ccae-46dc-8a80-d54c13722aea +2024-09-11 09:12:34.527876 2024-09-11 09:12:34.527887 plmef 11776 R rec 62c57da8-d233-4ed8-91a2-74e716e90e58 +2024-09-11 09:12:34.599891 2024-09-11 09:12:34.599902 plmef 11777 R rec 3fd12587-ddc9-4978-9d0d-25ee6f0e2504 +2024-09-11 09:12:34.670254 2024-09-11 09:12:34.670265 plmef 11778 R rec eb9c1b62-910e-4557-9a35-5c860c6330ad +2024-09-11 09:12:34.73211 2024-09-11 09:12:34.732115 plmef 11779 R rec 6625474f-95f9-4cb5-b536-127b6bc244c8 +2024-09-11 09:12:34.81452 2024-09-11 09:12:34.814525 plmef 11780 R rec 669b1e70-54d6-4b7d-9653-0b4f758b5ece +2024-09-11 09:12:34.884537 2024-09-11 09:12:34.88458 plmef 11781 R rec c8d7abad-694c-4827-8c02-86cd58317d2e +2024-09-11 09:12:34.962549 2024-09-11 09:12:34.96256 plmef 11782 R rec 088c69e7-86b2-4306-ba9b-22a71641bc7a +2024-09-11 09:12:35.031927 2024-09-11 09:12:35.031938 plmef 11783 R rec b2e2a88d-36a7-40d9-bcfb-bf4bdc464a60 +2024-09-11 09:12:35.093741 2024-09-11 09:12:35.093751 plmef 11784 R rec 35036cfc-fc13-47a1-9df1-3c056169161f +2024-09-11 09:12:35.161527 2024-09-11 09:12:35.161538 plmef 11785 R rec 4476a9c3-1111-40ad-9919-bdca8a0e70f7 +2024-09-11 09:12:35.224876 2024-09-11 09:12:35.224882 plmef 11786 R rec c02a5d6b-4248-400a-a693-6dc8f1db5c72 +2024-09-11 09:12:35.282436 2024-09-11 09:12:35.28244 plmef 11787 R rec 8e432c4c-4e1e-4763-bcef-a73ccbd9a0dd +2024-09-11 09:12:35.360644 2024-09-11 09:12:35.360649 plmef 11788 R rec 4706f7e6-0114-4891-9259-556f93d47f9f +2024-09-11 09:12:35.43054 2024-09-11 09:12:35.43055 plmef 11789 R rec bf4be85b-18f9-472d-a7cf-3385dd88ab44 +2024-09-11 09:12:35.503356 2024-09-11 09:12:35.50337 plmef 11790 R rec 3eaaf44f-92f1-4247-b955-c5b70dbc1542 +2024-09-11 09:12:35.573308 2024-09-11 09:12:35.573327 plmef 11791 R rec 5e06a103-c05a-49d6-852e-da0bb04357bd +2024-09-11 09:12:35.642797 2024-09-11 09:12:35.642809 plmef 11792 R rec e899b80c-0b29-431e-b3c9-732a17d3aaa9 +2024-09-11 09:12:35.703661 2024-09-11 09:12:35.703666 plmef 11793 R rec 1e29b33f-0d95-4ed4-a1b9-01844b703006 +2024-09-11 09:12:35.753661 2024-09-11 09:12:35.753666 plmef 11794 R rec f9be637e-5d87-4715-a623-5807bc58ac18 +2024-09-11 09:12:35.820925 2024-09-11 09:12:35.82093 plmef 11795 R rec afa159fa-bba0-4740-a373-1bf1223f1742 diff --git a/data/oaisources.yml b/data/oaisources.yml index c67a6302..7219421a 100644 --- a/data/oaisources.yml +++ b/data/oaisources.yml @@ -7,32 +7,38 @@ # OAI-PMH connection settings agents.idref: - # http://documentation.abes.fr/aideidrefoai/index.html + # https://documentation.abes.fr/aideidrefoai/index.html baseurl: https://www.idref.fr/OAI/oai.jsp metadataprefix: marc-xml comment: 'idref' setspecs: 'a b' agents.gnd: # https://www.dnb.de/EN/Professionell/Metadatendienste/Datenbezug/OAI/oai_node.html - baseurl: http://services.dnb.de/oai/repository + baseurl: https://services.dnb.de/oai/repository metadataprefix: MARC21-xml comment: 'gnd' setspecs: 'authorities:kongress authorities:koerperschaft authorities:person' concepts.idref: - # http://documentation.abes.fr/aideidrefoai/index.html + # https://documentation.abes.fr/aideidrefoai/index.html baseurl: https://www.idref.fr/OAI/oai.jsp metadataprefix: marc-xml comment: 'idref' setspecs: 'j l' +concepts.gnd: + # https://www.dnb.de/EN/Professionell/Metadatendienste/Datenbezug/OAI/oai_node.html + baseurl: https://services.dnb.de/oai/repository + metadataprefix: MARC21-xml + comment: 'gnd' + setspecs: 'authorities:sachbegriff' places.idref: - # http://documentation.abes.fr/aideidrefoai/index.html + # https://documentation.abes.fr/aideidrefoai/index.html baseurl: https://www.idref.fr/OAI/oai.jsp metadataprefix: marc-xml comment: 'idref' setspecs: 'c' places.gnd: # https://www.dnb.de/EN/Professionell/Metadatendienste/Datenbezug/OAI/oai_node.html - baseurl: http://services.dnb.de/oai/repository + baseurl: https://services.dnb.de/oai/repository metadataprefix: MARC21-xml comment: 'gnd' setspecs: 'authorities:geografikum' \ No newline at end of file diff --git a/data/pidref.json b/data/pidref.json index b085df55..4e71f108 100644 --- a/data/pidref.json +++ b/data/pidref.json @@ -1,82 +1,39 @@ [ { - "md5": "ba6ca6d6e83aba4a80c37ce03d34e610", - "pid": "027218546", - "note": [ - { - "label": [ - "GLU" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Voir aussi aux vedettes commen\u00e7ant par Afrique, par ex. : Afrique anglophone ; Afrique australe", - "Voir aussi la subdivision Et l'Afrique aux collectivit\u00e9s (\u00e0 l'exception des types de collectivit\u00e9s) et aux personnes" - ], - "noteType": "seeReference" - } - ], - "type": "bf:Place", + "authorized_access_point": "Afrique centrale", "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Sahel" - }, - { - "authorized_access_point": "Afrique du Nord" - }, - { - "authorized_access_point": "Afrique subsaharienne" - } - ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027218546", + "value": "http://www.idref.fr/027218562", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119308418", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16272632j", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040006956", - "source": "GND" - }, - { - "type": "uri", - "value": "https://d-nb.info/gnd/4000695-5", - "source": "GND" + "value": "(DE-101)040794857" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/123310773", - "source": "VIAF" - }, - { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Afrique", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/169969170" } ], - "authorized_access_point": "Afrique" - }, - { - "md5": "8258a0f3164682b45ff98e6e8724ce30", - "pid": "027218562", "note": [ { + "noteType": "general", "label": [ "Sous cette vedette on trouve les ouvrages qui traitent de la partie de l'Afrique s'\u00e9tendant du nord du Tchad au sud du Zai\u034f\u0308re et du Cameroun au Rwanda et au Burundi" - ], - "noteType": "general" + ] } ], + "pid": "027218562", "type": "bf:Place", - "bnf_type": "sujet Rameau", "narrower": [ { "authorized_access_point": "Burundi" @@ -115,607 +72,521 @@ "authorized_access_point": "Grands lacs africains (r\u00e9gion)" } ], + "variant_access_point": [ + "Afrique (centre)", + "Afrique \u00e9quatoriale", + "Afrique \u00e9quatoriale francophone" + ], + "md5": "97dd76099c66b973536b627a8d9162de" + }, + { + "authorized_access_point": "Allemagne", + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027218562", + "value": "http://www.idref.fr/027218856", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb16272632j", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11930867z", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040794857", - "source": "GND" + "value": "(DE-101)040118827" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/169969170", - "source": "VIAF" + "value": "http://viaf.org/viaf/173418378" } ], - "variant_access_point": [ - "Afrique (centre)", - "Afrique \u00e9quatoriale", - "Afrique \u00e9quatoriale francophone" - ], - "authorized_access_point": "Afrique centrale" - }, - { - "md5": "8565e9a95bd5a93637431392f17ed15c", - "pid": "027218597", "note": [ { + "noteType": "dataSource", "label": [ - "GLU", - "Laval RVM, 1999-01" - ], - "noteType": "dataSource" + "GLU, 1991", + "BN ACO (en ligne), 1997-05-26. Laval RVM, 1997-02. Deutschland ; SWD, 1995-04 ; GKD, 1994-05" + ] }, { + "noteType": "general", "label": [ - "Sous cette vedette, on trouve les documents qui traitent du territoire comprenant le Maroc, la Mauritanie, l'Alg\u00e9rie, la Tunisie et la Libye" - ], - "noteType": "general" + "Sous cette vedette, on trouve les ouvrages qui traitent de l'Allemagne dans son ensemble : pays de langue allemande du Saint-Empire, pays de la Conf\u00e9d\u00e9ration germanique, Empire allemand et R\u00e9publique f\u00e9d\u00e9rale d'Allemagne depuis l'unification du 3 octobre 1990. Les ouvrages sur la RFA de 1949 \u00e0 1990 se trouvent sous la vedette Allemagne (R\u00e9publique f\u00e9d\u00e9rale)", + "Attention : seules les collectivit\u00e9s depuis 1990 sont sous la vedette Allemagne ; les collectivit\u00e9s de la p\u00e9riode 1871 \u00e0 1945 sont sous la vedette Allemagne (1871-1945) ; celles de la p\u00e9riode 1945-1949, sous la vedette Allemagne (Zone sous occupation alli\u00e9e)" + ] }, { + "noteType": "seeReference", "label": [ - "Voir aussi la subdivision Et l'Afrique du Nord aux personnes et collectivit\u00e9s" - ], - "noteType": "seeReference" + "Voir aussi la subdivision Et l'Allemagne aux personnes et collectivit\u00e9s", + "Voir aussi la subdivision R\u00e9clamations contre l'Allemagne aux lieux" + ] } ], + "pid": "027218856", "type": "bf:Place", "broader": [ { - "authorized_access_point": "M\u00e9diterran\u00e9e (r\u00e9gion)" + "authorized_access_point": "Europe centrale" + }, + { + "authorized_access_point": "Pays de l'Union europ\u00e9enne" }, { - "authorized_access_point": "Pays arabes" + "authorized_access_point": "Pays de langue allemande" } ], + "variant_access_point": [ + "BRD", + "Bundesrepublik Deutschland (1990-)", + "Deutsches Reich", + "Deutschland", + "Empire allemand", + "Reich allemand", + "R\u00e9publique f\u00e9d\u00e9rale d'Allemagne (1990-)" + ], + "md5": "c47fd72199b3522d71acec7340de9500" + }, + { + "authorized_access_point": "Angkor (ville ancienne)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027218597", + "value": "http://www.idref.fr/027219224", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119308460", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11930897w", "source": "BNF" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4042482-0", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040424820", - "source": "GND" + "value": "(DE-101)040020347" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/315124797", - "source": "VIAF" + "value": "http://viaf.org/viaf/173744543" }, { + "source": "PACTOLS", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Afrique_du_Nord", - "source": "WIKIPEDIA" + "value": "https://ark.frantiq.fr/ark:/26678/pcrtJ3hUIUrZZ3" } ], + "pid": "027219224", + "type": "bf:Place", "variant_access_point": [ - "Afrique (nord)", - "Afrique blanche", - "Afrique m\u00e9diterran\u00e9enne", - "Afrique septentrionale", - "Barbaresques, \u00c9tats", - "Barbarie (r\u00e9gion)", - "\u00c9tats Barbaresques", - "Maghreb", - "Maghrib", - "Marhrib", - "Moghreb" + "Angkor (Cambodge)" ], - "authorized_access_point": "Afrique du Nord" + "md5": "f4539c26411f374d51c00c353eb9d32b" }, { - "md5": "ed775c568d6c89cd199c94e7cdcd58e7", - "pid": "027218619", - "note": [ - { - "label": [ - "GLU. Pays et capitales du monde / IGN, 1986. SY 2000", - "Laval RVM, 2000-01" - ], - "noteType": "dataSource" - }, - { - "label": [ - "1910 : Union sud-africaine ; 1961 : R\u00e9publique d'Afrique du Sud. En 1994 les 4 provinces historiques (Le Cap, Natal, Orange et Transvaal) ont \u00e9t\u00e9 remplac\u00e9es par 9 nouvelles provinces" - ], - "noteType": "general" - } - ], - "type": "bf:Place", - "broader": [ - { - "authorized_access_point": "Afrique australe" - } - ], + "authorized_access_point": "Arabie saoudite", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027218619", + "value": "http://www.idref.fr/027219631", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb13969835d", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11930929p", "source": "BNF" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4078012-0", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040780120", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/159069376", - "source": "VIAF" + "value": "(DE-101)040517888" }, { + "source": "VIAF", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Afrique_du_Sud", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/164965477" } ], - "variant_access_point": [ - "Azanie", - "South Africa", - "Suid-Afrika", - "Union sud-africaine" - ], - "authorized_access_point": "Afrique du Sud" - }, - { - "md5": "efad1ba39f48169cea18f6dcdce1dbbc", - "pid": "027218767", "note": [ { + "noteType": "dataSource", "label": [ - "Pays et capitales du monde / IGN, 1986. IFLA, Names of states, 1981" - ], - "noteType": "dataSource" + "Names of states / IFLA, 1981. Pays et capitales du monde / IGN, 1985" + ] } ], + "pid": "027219631", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Afrique du Nord" + "authorized_access_point": "Arabie" + }, + { + "authorized_access_point": "Persique, Golfe (r\u00e9gion)" } ], + "variant_access_point": [ + "Arabie s\u00e9oudite", + "Al-Sa' udiya", + "\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629", + "\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629", + "\u0627\u0644\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629", + "\u0627\u0644\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629", + "Saudi Arabia", + "Kingdom of Saudi Arabia" + ], + "md5": "6f8b334f2ea77bdf5494f870139c3848" + }, + { + "authorized_access_point": "Atlantique (oc\u00e9an)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027218767", + "value": "http://www.idref.fr/027220389", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15238304z", + "value": "http://catalogue.bnf.fr/ark:/12148/cb152874072", "source": "BNF" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4001179-3", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040011798", - "source": "GND" + "value": "(DE-101)040033880" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/8536148574370824430009", - "source": "VIAF" + "value": "http://viaf.org/viaf/152295726" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Alg\u00e9rie", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Oc\u00e9an_Atlantique" } ], - "relation_pid": { - "type": "redirect_from", - "value": "256370915" - }, - "variant_access_point": [ - "Alg\u00e9rie (R\u00e9publique)", - "el Djaz\u00e2ir", - "R\u00e9publique alg\u00e9rienne d\u00e9mocratique" - ], - "authorized_access_point": "Alg\u00e9rie" - }, - { - "md5": "50350d093bcfadfc7d72d8b054419a8c", - "pid": "027218856", "note": [ { + "noteType": "dataSource", "label": [ - "GLU, 1991", - "BN ACO (en ligne), 1997-05-26. Laval RVM, 1997-02. Deutschland ; SWD, 1995-04 ; GKD, 1994-05" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette, on trouve les ouvrages qui traitent de l'Allemagne dans son ensemble : pays de langue allemande du Saint-Empire, pays de la Conf\u00e9d\u00e9ration germanique, Empire allemand et R\u00e9publique f\u00e9d\u00e9rale d'Allemagne depuis l'unification du 3 octobre 1990. Les ouvrages sur la RFA de 1949 \u00e0 1990 se trouvent sous la vedette Allemagne (R\u00e9publique f\u00e9d\u00e9rale)", - "Attention : seules les collectivit\u00e9s depuis 1990 sont sous la vedette Allemagne ; les collectivit\u00e9s de la p\u00e9riode 1871 \u00e0 1945 sont sous la vedette Allemagne (1871-1945) ; celles de la p\u00e9riode 1945-1949, sous la vedette Allemagne (Zone sous occupation alli\u00e9e)" - ], - "noteType": "general" + "Atlantique, Oc\u00e9an ; Laval RVM, 1995-02" + ] }, { + "noteType": "seeReference", "label": [ - "Voir aussi la subdivision Et l'Allemagne aux personnes et collectivit\u00e9s", - "Voir aussi la subdivision R\u00e9clamations contre l'Allemagne aux lieux" - ], - "noteType": "seeReference" + "Voir aussi aux diff\u00e9rentes parties de l'Atlantique, par ex. Atlantique (oc\u00e9an ; nord)" + ] } ], + "pid": "027220389", "type": "bf:Place", - "broader": [ + "narrower": [ { - "authorized_access_point": "Europe centrale" + "authorized_access_point": "Atlantique (oc\u00e9an ; sud)" + } + ], + "variant_access_point": [ + "Atlantique", + "Oc\u00e9an Atlantique" + ], + "md5": "07a20cce21e15ac2818fe38e8793467d" + }, + { + "authorized_access_point": "Chartres (Eure-et-Loir, France) - Cath\u00e9drale Notre-Dame", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)" }, { - "authorized_access_point": "Pays de l'Union europ\u00e9enne" + "type": "bf:ClassificationDdc", + "classificationPortion": "720", + "name": "Architecture" }, { - "authorized_access_point": "Pays de langue allemande" + "type": "bf:ClassificationDdc", + "classificationPortion": "912" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Cath\u00e9drale de Chartres", + "source": "LCA", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/names/n50052168", + "source": "LCA" + } + ] } ], - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027218856", + "value": "http://www.idref.fr/027222608", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11930867z", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11931157z", "source": "BNF" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/2008993-4", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)00468687X", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/173418378", - "source": "VIAF" + "value": "(DE-101)040699307" } ], - "variant_access_point": [ - "BRD", - "Bundesrepublik Deutschland (1990-)", - "Deutsches Reich", - "Deutschland", - "Empire allemand", - "Reich allemand", - "R\u00e9publique f\u00e9d\u00e9rale d'Allemagne (1990-)" - ], - "authorized_access_point": "Allemagne" - }, - { - "md5": "8ab6b40f1c868b1ddacebe503add0350", - "pid": "027218961", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL. Laval RVM, 1991-02" - ], - "noteType": "dataSource" + "Guides bleus : France, 1974", + "Patrimoine mondial de l'Unesco - http://whc.unesco.org/fr (2015-08-19)" + ] }, { + "noteType": "general", "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent de l'Am\u00e9rique du Nord, incluant ou non le Mexique" - ], - "noteType": "general" + "Cath\u00e9drale consid\u00e9r\u00e9e comme la plus repr\u00e9sentative de l'art gothique fran\u00e7ais, dont la construction d\u00e9buta en 1145. Inscrite au patrimoine mondial de l'Unesco depuis 1979" + ] } ], + "pid": "027222608", "type": "bf:Place", - "broader": [ + "narrower": [ { - "authorized_access_point": "Am\u00e9rique" + "authorized_access_point": "Chartres (Eure-et-Loir) - Cath\u00e9drale Notre-Dame - Portail nord" + }, + { + "authorized_access_point": "Chartres (Eure-et-Loir) - Cath\u00e9drale Notre-Dame - Portail sud" + }, + { + "authorized_access_point": "Chartres (Eure-et-Loir) - Cath\u00e9drale Notre-Dame - Puits des Saints-Forts" } ], + "variant_access_point": [ + "Cath\u00e9drale de Chartres", + "Cath\u00e9drale Notre-Dame (Chartres, Eure-et-Loire)", + "Notre-Dame, Cath\u00e9drale (Chartres, Eure-et-Loire)" + ], + "md5": "e6339b4cad97918393ed8fc40474383f" + }, + { + "authorized_access_point": "Chili", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027218961", + "value": "http://www.idref.fr/027222950", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15238493p", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15238523s", "source": "BNF" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4042483-2", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040424839", - "source": "GND" + "value": "(DE-101)040099296" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/315126791", - "source": "VIAF" + "value": "http://viaf.org/viaf/233665742" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Am\u00e9rique_du_Nord", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Chili" } ], - "variant_access_point": [ - "Am\u00e9rique (nord)" - ], - "authorized_access_point": "Am\u00e9rique du Nord" - }, - { - "md5": "ca7a4ee839028061404adbaa633d349b", - "pid": "02721897X", "note": [ { + "noteType": "dataSource", "label": [ - "GLU. Laval RVM, 1995-02" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette, on trouve les ouvrages qui traitent de l'ensemble des pays d'Am\u00e9rique qui furent colonis\u00e9s par les Espagnols et par les Portugais" - ], - "noteType": "general" - }, - { - "label": [ - "Voir aussi la subdivision Et l'Am\u00e9rique latine aux personnes et collectivit\u00e9s" - ], - "noteType": "seeReference" + "IFLA, Names of states, 1981" + ] } ], + "pid": "027222950", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Am\u00e9rique" + "authorized_access_point": "Andes (r\u00e9gion)" }, { - "authorized_access_point": "Pays de langue espagnole" + "authorized_access_point": "C\u00f4ne Sud de l'Am\u00e9rique du Sud" } ], + "variant_access_point": [ + "Chile" + ], + "md5": "3d68e927997f2b9c343cd424548adbd9" + }, + { + "authorized_access_point": "Allemagne (R\u00e9publique d\u00e9mocratique)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/02721897X", + "value": "http://www.idref.fr/027223736", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11930876x", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11931234k", "source": "BNF" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4074032-8 ", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040740323", - "source": "GND" + "value": "(DE-101)040118908" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/172711055", - "source": "VIAF" + "value": "http://viaf.org/viaf/268607483" } ], - "variant_access_point": [ - "Am\u00e9rique espagnole" - ], - "authorized_access_point": "Am\u00e9rique latine" - }, - { - "md5": "b4820952728f10d594b7e1a15a6a05b8", - "pid": "027220443", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981. GLU, 1991", - "Laval RVM, 1996-02" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Place", - "broader": [ - { - "authorized_access_point": "Australasie" + "Autorit\u00e9 mati\u00e8re / BPI, 1980. BN ACO" + ] }, { - "authorized_access_point": "Oc\u00e9anie" + "noteType": "general", + "label": [ + "Les ouvrages qui traitent de la partie orientale de l'Allemagne (dans les fronti\u00e8res de la p\u00e9riode consid\u00e9r\u00e9e) avant 1949 ou depuis 1990 se trouvent sous la vedette Allemagne (est)" + ] } ], + "pid": "027223736", + "type": "bf:Place", + "variant_access_point": [ + "Allemagne (RDA)", + "Allemagne de l'Est", + "Allemande, R\u00e9publique d\u00e9mocratique", + "DDR", + "Deutsche Demokratische Republik", + "Deutschland (DDR)", + "RDA", + "R\u00e9publique d\u00e9mocratique allemande" + ], + "md5": "bfbffed842f1489e148acb182f90978f" + }, + { + "authorized_access_point": "Alpes (Autriche)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027220443", + "value": "http://www.idref.fr/027223760", "source": "IDREF" }, { "type": "uri", - "value": "http://d-nb.info/gnd/4003900-6", - "source": "GND" + "value": "http://catalogue.bnf.fr/ark:/12148/cb11931235x", + "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040039005", - "source": "GND" + "value": "(DE-101)040432742" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/9948148574334924430009", - "source": "VIAF" + "value": "http://viaf.org/viaf/484144783099466463271" } ], - "variant_access_point": [ - "Australia", - "Commonwealth d'Australie", - "Commonwealth of Australia" - ], - "authorized_access_point": "Australie" - }, - { - "md5": "b1a0f1cd5bd7661335f72dcfcbab294d", - "pid": "027222950", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981" - ], - "noteType": "dataSource" + "Alps, Austrian (Austria) ; LCSH, 1988-12" + ] } ], + "pid": "027223760", "type": "bf:Place", - "broader": [ + "related": [ { - "authorized_access_point": "Andes (r\u00e9gion)" - }, - { - "authorized_access_point": "C\u00f4ne Sud de l'Am\u00e9rique du Sud" + "authorized_access_point": "Alpes (est)" } ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "narrower": [ { - "type": "uri", - "value": "http://www.idref.fr/027222950", - "source": "IDREF" + "authorized_access_point": "Dachstein (Autriche ; massif)" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15238523s", - "source": "BNF" + "authorized_access_point": "G\u00f6tschenberg (Autriche ; mont)" }, { - "type": "bf:Nbn", - "value": "(DE-101)040099296", - "source": "GND" + "authorized_access_point": "Hohe Tauern (Autriche ; massif)" }, { - "type": "uri", - "value": "http://viaf.org/viaf/233665742", - "source": "VIAF" + "authorized_access_point": "Raxalpe (Autriche ; mont)" }, { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Chili", - "source": "WIKIPEDIA" + "authorized_access_point": "Schneeberg (Autriche ; mont)" + }, + { + "authorized_access_point": "Stub-Alpe (Autriche)" + } + ], + "broader": [ + { + "authorized_access_point": "Alpes" } ], "variant_access_point": [ - "Chile" + "Alpes autrichiennes" ], - "authorized_access_point": "Chili" + "md5": "5f78499278b572dbde2d8caa8bb73fbd" }, { - "md5": "5a5f0ff2dc0d3fbaa5a667067e73b447", - "pid": "027223736", - "note": [ - { - "label": [ - "Autorit\u00e9 mati\u00e8re / BPI, 1980. BN ACO" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Les ouvrages qui traitent de la partie orientale de l'Allemagne (dans les fronti\u00e8res de la p\u00e9riode consid\u00e9r\u00e9e) avant 1949 ou depuis 1990 se trouvent sous la vedette Allemagne (est)" - ], - "noteType": "general" - } - ], - "type": "bf:Place", + "authorized_access_point": "Alpes (France)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027223736", + "value": "http://www.idref.fr/027223779", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11931234k", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119312368", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040118908", - "source": "GND" + "value": "(DE-101)040932052" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/268607483", - "source": "VIAF" + "value": "http://viaf.org/viaf/173145181" } ], - "variant_access_point": [ - "Allemagne (RDA)", - "Allemagne de l'Est", - "Allemande, R\u00e9publique d\u00e9mocratique", - "DDR", - "Deutsche Demokratische Republik", - "Deutschland (DDR)", - "RDA", - "R\u00e9publique d\u00e9mocratique allemande" - ], - "authorized_access_point": "Allemagne (R\u00e9publique d\u00e9mocratique)" - }, - { - "md5": "cc9b74106a6c6c690a96fdbc6e6e7eb3", "pid": "027223779", "type": "bf:Place", - "bnf_type": "sujet Rameau", "narrower": [ { "authorized_access_point": "\u00c9crins, Massif des (France)" @@ -736,1973 +607,1648 @@ "authorized_access_point": "Alpes maritimes (massif)" } ], + "variant_access_point": [ + "Alpes fran\u00e7aises" + ], + "md5": "34c3592a114c585094c642b45bc23d52" + }, + { + "authorized_access_point": "\u00c9thiopie", + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027223779", + "value": "http://www.idref.fr/027224570", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119312368", - "source": "BNF" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040932052", - "source": "GND" + "value": "(DE-101)040006395" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/173145181", - "source": "VIAF" + "value": "http://viaf.org/viaf/172818811" } ], - "variant_access_point": [ - "Alpes fran\u00e7aises" - ], - "authorized_access_point": "Alpes (France)" - }, - { - "md5": "6a1ac1ea5b195a2e89bc9bcf0810e5ec", - "pid": "027224406", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981. GLU, 1991", - "Laval RVM, 1996-02" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Voir aussi la subdivision Et l'Espagne aux personnes et collectivit\u00e9s" - ], - "noteType": "seeReference" + "IFLA, Names of states, 1981" + ] } ], + "pid": "027224570", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Ib\u00e9rique, P\u00e9ninsule" - }, - { - "authorized_access_point": "Pays de l'Union europ\u00e9enne" - }, - { - "authorized_access_point": "Pays de langue espagnole" + "authorized_access_point": "Afrique du Nord-Est" } ], + "variant_access_point": [ + "Abyssinie", + "Ityopya" + ], + "md5": "13d2cf0d6e681c578c6ed3ecc3112f02" + }, + { + "authorized_access_point": "\u00c9quateur", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027224406", + "value": "http://www.idref.fr/027225399", "source": "IDREF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040559645", - "source": "GND" - }, - { - "type": "uri", - "value": "http://d-nb.info/gnd/4055964-6", - "source": "GND" + "value": "(DE-101)041293215" }, { + "source": "VIAF", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Spain_(groupe)", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/150084159" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "http://viaf.org/viaf/147947476", - "source": "VIAF" + "value": "https://fr.wikipedia.org/wiki/\u00c9quateur_(pays)" } ], - "variant_access_point": [ - "Espa\u00f1a" - ], - "authorized_access_point": "Espagne" - }, - { - "md5": "c2cdfacbbc6ce22a31270d262fd50764", - "pid": "027224651", "note": [ { + "noteType": "dataSource", "label": [ - "GLU" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Voir aussi aux diff\u00e9rentes parties de l'Europe, par ex. Europe de l'Ouest" - ], - "noteType": "seeReference" + "IFLA, Names of states, 1981. Laval RVM, 1995-02" + ] } ], + "pid": "027225399", "type": "bf:Place", - "broader": [ + "narrower": [ { - "authorized_access_point": "Eurasie" + "authorized_access_point": "Amazonie (\u00c9quateur)" } ], + "variant_access_point": [ + "Ecuador" + ], + "md5": "b0f5b84003d88411a63f8b2cfb1d603f" + }, + { + "authorized_access_point": "Finlande", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027224651", + "value": "http://www.idref.fr/027225984", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11931301w", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15238532r", "source": "BNF" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4015701-5", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040157016", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/124144648501726049254", - "source": "VIAF" + "value": "(DE-101)040172430" }, { + "source": "VIAF", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Europe", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/2759153532459148820002" } ], - "variant_access_point": [ - "Conseil de l'Europe, Pays du", - "Pays du Conseil de l'Europe" - ], - "authorized_access_point": "Europe" - }, - { - "md5": "0be74c406b2b5e243d0c730dcb7bb680", - "pid": "027224678", "note": [ { + "noteType": "dataSource", "label": [ - "Europe de l'Est ; Laval RVM, 1995-02" - ], - "noteType": "dataSource" + "IFLA, Names of states, 1981. SY 1996-97" + ] }, { + "noteType": "seeReference", "label": [ - "Sous cette vedette, on trouve les ouvrages qui traitent de la partie de l'Europe situ\u00e9e \u00e0 l'est de l'Allemagne et de l'Autriche jusqu'\u00e0 l'Oural, ou des anciennes d\u00e9mocraties populaires de l'Europe orientale (y compris la RDA). Les ouvrages qui traitent de la r\u00e9gion form\u00e9e par les bassins du Rhin, de l'Elbe, de l'Oder et du Danube jusqu'aux Portes de Fer se trouvent sous la vedette Europe centrale" - ], - "noteType": "general" + "Voir aussi la subdivision Et la Finlande aux personnes et collectivit\u00e9s" + ] } ], + "pid": "027225984", "type": "bf:Place", - "related": [ + "broader": [ { - "authorized_access_point": "Pays slaves" + "authorized_access_point": "Pays de l'Union europ\u00e9enne" + }, + { + "authorized_access_point": "Scandinavie" } ], + "variant_access_point": [ + "Finland", + "Suomi" + ], + "md5": "adafb5a6d04c48944b854df82cfa33e4" + }, + { + "authorized_access_point": "France (nord)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027224678", + "value": "http://www.idref.fr/027227472", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11931303k", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119315243", "source": "BNF" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4075739-0", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040757390", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/248539062", - "source": "VIAF" + "value": "(DE-101)041100867" }, { + "source": "VIAF", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Europe_de_l'Est", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/172655931" } ], - "variant_access_point": [ - "Europe (est)", - "Europe centrale et orientale", - "Europe orientale", - "Pays d'Europe centrale et orientale", - "PECO" - ], - "authorized_access_point": "Europe de l'Est" - }, - { - "md5": "12bdf65dfd197b5f7abbbdf48dc68baa", - "pid": "027224694", "note": [ { + "noteType": "dataSource", + "label": [ + "France (Nord) ; Laval RVM, 1996-02" + ] + }, + { + "noteType": "general", "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent de la partie de l'Europe situ\u00e9e \u00e0 l'ouest de la ligne L\u00fcbeck-Trieste, et/ou, pour la p\u00e9riode 1945-1990, de l'ensemble des pays non socialistes d'Europe, de la Finlande \u00e0 la Gr\u00e8ce et \u00e0 la Turquie" - ], - "noteType": "general" + "Sous cette vedette, on trouve les ouvrages qui traitent de la moiti\u00e9 nord de la France" + ] } ], + "pid": "027227472", "type": "bf:Place", - "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Pays de l'Union europ\u00e9enne" - }, - { - "authorized_access_point": "Benelux" - }, - { - "authorized_access_point": "Pays de l'Union europ\u00e9enne (centre)" + "authorized_access_point": "France (nord-est)" } ], + "variant_access_point": [ + "France du nord", + "France septentrionale", + "Nord de la France" + ], + "md5": "84d5f2fae58c2945c4223a855a67d67c" + }, + { + "authorized_access_point": "G\u00eanes (Italie)", + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027224694", + "value": "http://www.idref.fr/027227871", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119313058", - "source": "BNF" - }, - { - "type": "uri", - "value": "http://d-nb.info/gnd/4079215-8", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040792153", - "source": "GND" + "value": "(DE-101)040201856" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/245653394", - "source": "VIAF" - }, - { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Europe_de_l'Ouest", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/125409416" } ], - "variant_access_point": [ - "Europe (ouest)", - "Europe atlantique", - "Europe occidentale" - ], - "authorized_access_point": "Europe de l'Ouest" - }, - { - "md5": "a60b0cb6270e8050729f73551948ee51", - "pid": "027225488", "note": [ { + "noteType": "dataSource", "label": [ - "Names of states / IFLA, 1981. Laval RVM, 1983" - ], - "noteType": "dataSource" + "BN ACO. GDEL" + ] } ], + "pid": "027227871", "type": "bf:Place", - "broader": [ - { - "authorized_access_point": "Am\u00e9rique du Nord" - } + "variant_access_point": [ + "G\u00eanes (R\u00e9publique)", + "Genova (Italie)" ], + "md5": "f46cf81e2dc4acfce4a354d997648870" + }, + { + "authorized_access_point": "Antilles fran\u00e7aises", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027225488", + "value": "http://www.idref.fr/027228878", "source": "IDREF" }, { "type": "uri", - "value": "https://catalogue.bnf.fr/ark:/12148/cb119313712", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11931628r", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)000339784", - "source": "GND" + "value": "(DE-101)041379225" }, { + "source": "VIAF", "type": "uri", - "value": "http://d-nb.info/gnd/33978-7", - "source": "GND" + "value": "http://viaf.org/viaf/172385538" + } + ], + "pid": "027228878", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Antilles" }, { - "type": "uri", - "value": "http://viaf.org/viaf/421148574296124430003", - "source": "VIAF" + "authorized_access_point": "Petites Antilles" } ], - "relation_pid": { - "type": "redirect_from", - "value": "155744879" - }, - "variant_access_point": [ - "\u00c9tats-Unis d'Am\u00e9rique", - "Etats Unis", - "United States", - "United States of America", - "US", - "USA" - ], - "authorized_access_point": "\u00c9tats-Unis" + "md5": "a3a0045a596081b3de7b85758eba29f5" }, { - "md5": "8d535ec4fc50acccbf71b2b651d68fe9", - "pid": "027226042", - "note": [ - { - "label": [ - "GLU" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Place", + "authorized_access_point": "Aube (France)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027226042", + "value": "http://www.idref.fr/027229211", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11931414h", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11931650x", "source": "BNF" }, { - "type": "bf:Nbn", - "value": "(DE-101)040175812", - "source": "GND" - }, - { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/158387156", - "source": "VIAF" + "value": "http://viaf.org/viaf/312788193" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Florence", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Aube_(d\u00e9partement)" } ], - "variant_access_point": [ - "Firenze (Italie)", - "Florence" - ], - "authorized_access_point": "Florence (Italie)" - }, - { - "md5": "d7e13769b5002c0dbc19cfeb1a0647cd", - "pid": "027226794", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981. GLU, 1991", - "Laval RVM, 1997-02" - ], - "noteType": "dataSource" + "GDEL" + ] }, { + "noteType": "general", "label": [ - "Voir aussi la subdivision Et la France aux personnes et collectivit\u00e9s" - ], - "noteType": "seeReference" + "D\u00e9partement fran\u00e7ais (10)" + ] } ], + "pid": "027229211", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Europe francophone" - }, - { - "authorized_access_point": "Pays de l'Union europ\u00e9enne" + "authorized_access_point": "Champagne-Ardenne (France)" } ], + "variant_access_point": [ + "Aube" + ], + "md5": "cdca0e5f8b54cbe64f9cb4095d85f715" + }, + { + "authorized_access_point": "C\u00f4te d'Ivoire", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027226794", + "value": "http://www.idref.fr/027230309", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119314762", - "source": "BNF" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040181456", - "source": "GND" - }, - { - "type": "bf:Nbn", - "value": "040181456", - "source": "GND" + "value": "(DE-101)040144267" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/7487148574366524430008", - "source": "VIAF" + "value": "http://viaf.org/viaf/164154015337309310002" } ], - "relation_pid": { - "type": "redirect_from", - "value": "078010705" - }, - "variant_access_point": [ - "France occidentale" - ], - "authorized_access_point": "France" - }, - { - "md5": "b5ec02204d01ac2897dc3044c9406f8f", - "pid": "027227812", "note": [ { + "noteType": "dataSource", "label": [ - "Atlas universalis. GDEL" - ], - "noteType": "dataSource" + "Names of states / IFLA, 1981. Pays et capitales du monde / IGN, 1985. Manuel de l'Unesco, 1985" + ] } ], + "pid": "027230309", "type": "bf:Place", - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "broader": [ { - "type": "uri", - "value": "http://www.idref.fr/027227812", - "source": "IDREF" - }, + "authorized_access_point": "Afrique occidentale" + } + ], + "related": [ { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11931552b", - "source": "BNF" + "authorized_access_point": "Moronou (Royaume)" } ], "variant_access_point": [ - "Dantzig (Pologne)", - "Gedania", - "Gedani", - "Danzig (Pologne)" + "C\u00f4te-d'Ivoire" ], - "authorized_access_point": "Gda\u0144sk (Pologne)" + "md5": "540f87c3c6d909e48f40b4e5085a9cae" }, { - "md5": "651a35bc68b19d47ff803adec18625eb", - "pid": "027228428", - "note": [ - { - "label": [ - "IFLA, Names of states, 1981. GDEL" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Place", - "broader": [ - { - "authorized_access_point": "Balkans" - }, - { - "authorized_access_point": "M\u00e9diterran\u00e9e (r\u00e9gion ; est)" - }, - { - "authorized_access_point": "Pays de l'Union europ\u00e9enne" - } - ], + "authorized_access_point": "Cologne (Allemagne)", "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Thrace (Gr\u00e8ce)" - } - ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027228428", + "value": "http://www.idref.fr/027230422", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11931600c", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11931745m", "source": "BNF" }, { - "type": "bf:Nbn", - "value": "(DE-101)040220478", - "source": "GND" - }, - { + "source": "VIAF", "type": "uri", - "value": "http://d-nb.info/gnd/4022047-3", - "source": "GND" + "value": "http://viaf.org/viaf/6135148574319424430006" }, { - "type": "uri", - "value": "http://viaf.org/viaf/172224968", - "source": "VIAF" + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040314839" } ], - "variant_access_point": [ - "Ell\u00e1s", - "Hellade", - "Hellas", - "\u0627\u0644\u064a\u0648\u0646\u0627\u0646" - ], - "authorized_access_point": "Gr\u00e8ce" - }, - { - "md5": "43b1daf8f7c51a18b4a119d11ff29e63", - "pid": "027228517", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL. SY 1990/91. Laval RVM, 1990-08" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Canton suisse" - ], - "noteType": "general" + "GDEL. GKD, 1980", + "Colonia Agrippinensis : Festschrift der 43. Versammlung deutscher Philologen und Schulm\u00e4nner, 1895" + ] } ], + "pid": "027230422", "type": "bf:Place", - "broader": [ + "narrower": [ { - "authorized_access_point": "Suisse - Cantons" + "authorized_access_point": "Cologne (Allemagne ; est)" } ], + "variant_access_point": [ + "K\u00f6ln (Allemagne)", + "Koeln (Allemagne)", + "Colonia Agrippinensis (ville ancienne)" + ], + "md5": "27a08a13b2e7c0eb45a849d882b924f4" + }, + { + "authorized_access_point": "Colombie", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027228517", + "value": "http://www.idref.fr/027230430", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb153220844", - "source": "BNF" + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040318125" }, { + "source": "VIAF", "type": "uri", - "value": "http://d-nb.info/gnd/4021881-8 ", - "source": "GND" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)040218813", - "source": "GND" + "value": "http://viaf.org/viaf/127757650" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "http://viaf.org/viaf/170357195", - "source": "VIAF" + "value": "https://fr.wikipedia.org/wiki/Colombie" } ], - "variant_access_point": [ - "Graub\u00fcnden (Suisse)", - "Grigioni (Suisse)", - "Grishun (Suisse)" - ], - "authorized_access_point": "Grisons (Suisse)" - }, - { - "md5": "05632639cd0c7e46e70f928c3a9f1fe4", - "pid": "027228959", "note": [ { + "noteType": "dataSource", "label": [ - "Grand Larousse universel (art. : Arabe)", - "Encycl. universalis : Arabe (Monde) - http://www.universalis-edu.com (2011-11-24)", - "Wikip\u00e9dia : Monde arabe - http://fr.wikipedia.org (2011-11-24)", - "L'\u00e9conomie des pays arabes / A. Martens, 1983" - ], - "noteType": "dataSource" + "IFLA, Names of states, 1981. GLU. BN ACO. Laval RVM, 1995-02" + ] }, { + "noteType": "general", "label": [ - "Voir aussi la subdivision Et les pays arabes [sans subd. g\u00e9ogr.] aux collectivit\u00e9s et aux personnes" - ], - "noteType": "seeReference" + "Apr\u00e8s l'\u00e9clatement de la Grande-Colombie, l'actuelle R\u00e9publique de Colombie a port\u00e9 successivement les noms de \"R\u00e9publique de Nouvelle-Grenade\" (Rep\u00fablica de Nueva Granada) (1830-1858), \"Conf\u00e9d\u00e9ration grenadine\" (Confederaci\u00f3n granadina) (1858-1861), et \"\u00c9tats-Unis de Colombie\" (Estados Unidos de Colombia) (1861-1880)" + ] } ], + "pid": "027230430", "type": "bf:Place", - "related": [ - { - "authorized_access_point": "Moyen-Orient" - }, + "broader": [ { - "authorized_access_point": "Pays arabes - Histoire" + "authorized_access_point": "Andes (r\u00e9gion)" } ], - "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Afrique du Nord" - } + "variant_access_point": [ + "Colombia", + "Confederaci\u00f3n granadina", + "Estados Unidos de Colombia", + "Nouvelle-Grenade", + "Nueva Granada" ], + "md5": "a6ca31bfd8b25bcdaf36c3bb5971196f" + }, + { + "authorized_access_point": "Danemark", + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027228959", + "value": "http://www.idref.fr/027231585", "source": "IDREF" }, { "type": "uri", - "value": "http://d-nb.info/gnd/4068789-2", - "source": "GND" + "value": "http://catalogue.bnf.fr/ark:/12148/cb11931839z", + "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040687899", - "source": "GND" + "value": "(DE-101)040108775" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/172492075", - "source": "VIAF" - } - ], - "relation_pid": { - "type": "redirect_from", - "value": "164701583" - }, - "classification": [ - { - "name": "G\u00e9ographie du reste du monde", - "type": "bf:ClassificationDdc", - "classificationPortion": "915" + "value": "http://viaf.org/viaf/150081023" } ], - "variant_access_point": [ - "Arabes, Pays", - "\u00c9tats arabes", - "Monde arabe", - "Pays de langue arabe" - ], - "authorized_access_point": "Pays arabes" - }, - { - "md5": "618583fb790e3bd6a11c27d22bc9486c", - "pid": "027229246", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981. \u00d6sterreich ; GKD, 1994-05 ; SWD, 1995-04", - "Laval RVM, 1997-02" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette, on trouve les ouvrages qui traitent de l'Autriche, des origines \u00e0 nos jours, quelles qu'aient \u00e9t\u00e9 son \u00e9tendue territoriale et son r\u00e9gime politique. Cependant les ouvrages relatifs \u00e0 l'Autriche-Hongrie (1867-1918) se trouvent sous la vedette Autriche-Hongrie ; et ceux qui, pour la m\u00eame p\u00e9riode, se limitent \u00e0 la partie autrichienne de l'empire (Cisleithanie) se trouvent sous la vedette Autriche, suivie des subdivisions de sujet et chronologiques appropri\u00e9es" - ], - "noteType": "general" - }, - { - "label": [ - "Voir aussi la subdivision Et l'Autriche aux personnes et collectivit\u00e9s", - "Voir aussi la subdivision R\u00e9clamations contre l'Autriche aux lieux" - ], - "noteType": "seeReference" + "IFLA, Names of states, 1981" + ] } ], + "pid": "027231585", "type": "bf:Place", "broader": [ - { - "authorized_access_point": "Europe centrale" - }, { "authorized_access_point": "Pays de l'Union europ\u00e9enne" }, { - "authorized_access_point": "Pays de langue allemande" + "authorized_access_point": "Scandinavie" } ], + "variant_access_point": [ + "Danmark" + ], + "md5": "ff50a790208907beef32b340dcc8abaa" + }, + { + "authorized_access_point": "Ib\u00e9rique, P\u00e9ninsule", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027229246", + "value": "http://www.idref.fr/027234274", "source": "IDREF" }, { "type": "uri", - "value": "http://d-nb.info/gnd/4043271-3", - "source": "GND" + "value": "http://catalogue.bnf.fr/ark:/12148/cb119320646", + "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040432718", - "source": "GND" + "value": "(DE-101)040479129" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/422148574296124430006", - "source": "VIAF" + "value": "http://viaf.org/viaf/172655949" } ], - "variant_access_point": [ - "Cisleithanie", - "Empire d'Autriche", - "Ostmark", - "Zisleithanien", - "Austria" - ], - "authorized_access_point": "Autriche" - }, - { - "md5": "2873168fa16dbe41a9c5203b5fe1cd87", - "pid": "02722953X", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981. SY, 1990/1991" - ], - "noteType": "dataSource" + "GLU. Laval RVM, 1993-02" + ] } ], + "pid": "027234274", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Am\u00e9rique du Sud" + "authorized_access_point": "Europe du Sud" + } + ], + "narrower": [ + { + "authorized_access_point": "Espagne" }, { - "authorized_access_point": "Pays de langue portugaise" + "authorized_access_point": "Portugal" + }, + { + "authorized_access_point": "Hispanie ult\u00e9rieure" + }, + { + "authorized_access_point": "Hispanie cit\u00e9rieure" } ], + "variant_access_point": [ + "Hispanie", + "Ib\u00e9rie", + "P\u00e9ninsule ib\u00e9rique", + "P\u00e9ninsule ib\u00e9rique (Espagne)", + "P\u00e9ninsule ib\u00e9rique (Portugal)" + ], + "md5": "1d7adcbada0041ab627ed5bcbac81104" + }, + { + "authorized_access_point": "Pays islamiques", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/02722953X", + "value": "http://www.idref.fr/027234592", "source": "IDREF" }, { "type": "uri", - "value": "http://d-nb.info/gnd/4008003-1", - "source": "GND" + "value": "http://catalogue.bnf.fr/ark:/12148/cb11932087v", + "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)04008003X", - "source": "GND" + "value": "(DE-101)040731723" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/1732148574301324430003", - "source": "VIAF" + "value": "http://viaf.org/viaf/173581056" } ], - "variant_access_point": [ - "Brasil", - "Brazil" - ], - "authorized_access_point": "Br\u00e9sil" - }, - { - "md5": "6504d4ff2db6728c95ecc3472b973ac5", - "pid": "027230309", "note": [ { + "noteType": "general", "label": [ - "Names of states / IFLA, 1981. Pays et capitales du monde / IGN, 1985. Manuel de l'Unesco, 1985" - ], - "noteType": "dataSource" + "Sous cette vedette on trouve les ouvrages qui traitent des pays o\u00f9 la majorit\u00e9 de la population est musulmane, ou dont l'islam est la religion reconnue" + ] } ], + "pid": "027234592", "type": "bf:Place", - "broader": [ - { - "authorized_access_point": "Afrique occidentale" - } - ], - "related": [ - { - "authorized_access_point": "Moronou (Royaume)" - } + "variant_access_point": [ + "\u00c9tats islamiques", + "Islamiques, Pays", + "Musulmans, Pays", + "Pays musulmans" ], + "md5": "86d55890c6af791ccb38f3f82b5c28ed" + }, + { + "authorized_access_point": "J\u00e9rusalem", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027230309", + "value": "http://www.idref.fr/027235769", "source": "IDREF" }, { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119321723", + "source": "BNF" + }, + { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040144267", - "source": "GND" + "value": "(DE-101)040285863" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/164154015337309310002", - "source": "VIAF" + "value": "http://viaf.org/viaf/23147121724526391653" } ], - "variant_access_point": [ - "C\u00f4te-d'Ivoire" - ], - "authorized_access_point": "C\u00f4te d'Ivoire" - }, - { - "md5": "87b941879ceea47081a257691f25af96", - "pid": "027230430", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981. GLU. BN ACO. Laval RVM, 1995-02" - ], - "noteType": "dataSource" + "GDEL. Atlas universalis. LCSH, 1987" + ] }, { + "noteType": "general", "label": [ - "Apr\u00e8s l'\u00e9clatement de la Grande-Colombie, l'actuelle R\u00e9publique de Colombie a port\u00e9 successivement les noms de \"R\u00e9publique de Nouvelle-Grenade\" (Rep\u00fablica de Nueva Granada) (1830-1858), \"Conf\u00e9d\u00e9ration grenadine\" (Confederaci\u00f3n granadina) (1858-1861), et \"\u00c9tats-Unis de Colombie\" (Estados Unidos de Colombia) (1861-1880)" - ], - "noteType": "general" + "Emploi direct en subdivision : [Sujet] -- J\u00e9rusalem" + ] } ], + "pid": "027235769", "type": "bf:Place", - "broader": [ + "narrower": [ { - "authorized_access_point": "Andes (r\u00e9gion)" + "authorized_access_point": "J\u00e9rusalem - Katamon" + }, + { + "authorized_access_point": "J\u00e9rusalem - Talbiyeh" } ], + "variant_access_point": [ + "al Quds", + "\u0627\u0644\u0642\u062f\u0633", + "al-Quds", + "\u0623\u0648\u0631\u0634\u0644\u064a\u0645", + "\u016ar\u0161al\u012bm", + "Yerushalayim", + "Yr\u1e87\u0161alayim" + ], + "md5": "9591a143c5417612848b26eb172f76c3" + }, + { + "authorized_access_point": "Lot (France)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027230430", + "value": "http://www.idref.fr/027236153", "source": "IDREF" }, { - "type": "bf:Nbn", - "value": "(DE-101)040318125", - "source": "GND" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119322088", + "source": "BNF" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/127757650", - "source": "VIAF" + "value": "http://viaf.org/viaf/125492314" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Colombie", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Lot_(d\u00e9partement)" } ], - "variant_access_point": [ - "Colombia", - "Confederaci\u00f3n granadina", - "Estados Unidos de Colombia", - "Nouvelle-Grenade", - "Nueva Granada" - ], - "authorized_access_point": "Colombie" - }, - { - "md5": "756f37840633fab8d989c9325fa92be2", - "pid": "027234002", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981" - ], - "noteType": "dataSource" + "GDEL" + ] + }, + { + "noteType": "general", + "label": [ + "D\u00e9partement fran\u00e7ais (46)" + ] } ], + "pid": "027236153", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Europe centrale" + "authorized_access_point": "Midi-Pyr\u00e9n\u00e9es (France)" + }, + { + "authorized_access_point": "Quercy (France)" } ], + "variant_access_point": [ + "Lot" + ], + "md5": "882cb04d456bfed64a4294c08df8d8b0" + }, + { + "authorized_access_point": "Lisbonne (Portugal)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027234002", + "value": "http://www.idref.fr/027236668", "source": "IDREF" }, { "type": "uri", - "value": "http://d-nb.info/gnd/4078541-5", - "source": "GND" + "value": "http://catalogue.bnf.fr/ark:/12148/cb11932254f", + "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040785416", - "source": "GND" + "value": "(DE-101)040359190<" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/124321959" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "http://viaf.org/viaf/4031148574352124430001", - "source": "VIAF" + "value": "https://fr.wikipedia.org/wiki/Lisbonne" } ], - "variant_access_point": [ - "Magyarorsz\u00e1g" - ], - "authorized_access_point": "Hongrie" - }, - { - "md5": "abad9fe269ba0e350ec9ac48792c37cd", - "pid": "027234592", "note": [ { + "noteType": "dataSource", "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent des pays o\u00f9 la majorit\u00e9 de la population est musulmane, ou dont l'islam est la religion reconnue" - ], - "noteType": "general" + "GLU" + ] } ], + "pid": "027236668", "type": "bf:Place", + "variant_access_point": [ + "Al-Uchb\u016bna (Portugal)", + "Felicitas Julia (ville ancienne)", + "Lisboa (Portugal)", + "Olisipo (ville ancienne)" + ], + "md5": "fd38bc2e66a93690f0164d5a482d796d" + }, + { + "authorized_access_point": "Louisiane (\u00c9tats-Unis)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027234592", + "value": "http://www.idref.fr/027237257", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11932087v", - "source": "BNF" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040731723", - "source": "GND" + "value": "(DE-101)040363945" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/173581056", - "source": "VIAF" + "value": "http://viaf.org/viaf/172764975" } ], - "variant_access_point": [ - "\u00c9tats islamiques", - "Islamiques, Pays", - "Musulmans, Pays", - "Pays musulmans" - ], - "authorized_access_point": "Pays islamiques" - }, - { - "md5": "956dfc25b132d05af33d8d3b80dabd40", - "pid": "027236536", "note": [ { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + }, + { + "noteType": "general", "label": [ - "IFLA, Names of states, 1981. GLU" - ], - "noteType": "dataSource" + "En pr\u00e9cision de lieu employer La., par ex. Baton Rouge (La.)" + ] } ], + "pid": "027237257", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Proche-Orient" + "authorized_access_point": "\u00c9tats-Unis (Vieux Sud-Ouest)" + }, + { + "authorized_access_point": "\u00c9tats-Unis - \u00c9tats" } ], + "variant_access_point": [ + "Louisiana (\u00c9tats-Unis)" + ], + "md5": "69b88f92b4407d3c8551026852db5952" + }, + { + "authorized_access_point": "Malawi", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027236536", + "value": "http://www.idref.fr/027238423", "source": "IDREF" }, { - "type": "bf:Nbn", - "value": "(DE-101)0403556", - "source": "GND" - }, - { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/4134148574352624430002", - "source": "VIAF" + "value": "http://viaf.org/viaf/8609148574329424430004" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Liban_(chanson)", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Malawi" } ], - "variant_access_point": [ - "Lubn\u0101n" - ], - "authorized_access_point": "Liban" - }, - { - "md5": "b7876c3257c100ec68d4dc1237343654", - "pid": "027236668", "note": [ { + "noteType": "dataSource", "label": [ - "GLU" - ], - "noteType": "dataSource" + "Names of states / IFLA, 1981. LCSH, 1985" + ] } ], + "pid": "027238423", "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Rhod\u00e9sie et du Nyassaland, F\u00e9d\u00e9ration de (1953-1963)" + }, + { + "authorized_access_point": "Afrique australe" + } + ], + "variant_access_point": [ + "Afrique centrale britannique", + "Nyasaland", + "Nyassaland" + ], + "md5": "53d55126cdee771020378a419d8020cb" + }, + { + "authorized_access_point": "M\u00e9sopotamie", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027236668", + "value": "http://www.idref.fr/027239365", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11932254f", - "source": "BNF" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040359190<", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/124321959", - "source": "VIAF" + "value": "(DE-101)040387887" }, { + "source": "VIAF", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Lisbonne", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/173636243" } ], - "variant_access_point": [ - "Al-Uchb\u016bna (Portugal)", - "Felicitas Julia (ville ancienne)", - "Lisboa (Portugal)", - "Olisipo (ville ancienne)" + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } ], - "authorized_access_point": "Lisbonne (Portugal)" + "pid": "027239365", + "type": "bf:Place", + "md5": "3a112ca2e8d9967ab8ae39f42006c2ba" }, { - "md5": "ad8327ffc6a38f6abf9f1c7a907751be", - "pid": "027237249", - "note": [ + "authorized_access_point": "Namibie", + "bnf_type": "sujet Rameau", + "identifiedBy": [ { - "label": [ - "GDEL", - "Encycl. Britannica", - "Paris-Londres, premi\u00e8res m\u00e9tropoles europ\u00e9ennes / INSEE-DRIF, 1991", - "Londres (Angleterre) ; Laval RVM, 1998-07" - ], - "noteType": "dataSource" + "type": "uri", + "value": "http://www.idref.fr/027240525", + "source": "IDREF" }, { - "label": [ - "Sous cette vedette, on trouve les ouvrages qui traitent de la ville de Londres dans ses d\u00e9finitions administratives successives (comt\u00e9 de Londres en 1888, Greater London depuis 1965). Le Grand Londres comprend 33 boroughs, largement autonomes depuis la dissolution du Greater London Council en 1986 : 14 pour les Inner boroughs (dont la Cit\u00e9), 19 pour les Outer boroughs. Les ouvrages qui ne traitent que des Outer boroughs se trouvent sous la vedette Londres (GB ; banlieue)", - "Par convention, les Inner boroughs sont consid\u00e9r\u00e9s comme des \"quartiers\" de Londres, les Outer boroughs comme des villes distinctes (LCNA et Laval RVM les prennent \u00e0 leur nom, localis\u00e9 \u00e0 Londres)" - ], - "noteType": "general" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb122216301", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04075202X" }, { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/2945152988203912790008" + } + ], + "note": [ + { + "noteType": "dataSource", "label": [ - "Voir aussi la subdivision Et Londres aux personnes et collectivit\u00e9s" - ], - "noteType": "seeReference" + "GLU. SWD, 1991" + ] } ], + "pid": "027240525", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Londres (GB ; agglom\u00e9ration)" - }, - { - "authorized_access_point": "Angleterre (GB ; sud-est)" + "authorized_access_point": "Afrique australe" } ], + "variant_access_point": [ + "Deutsch-S\u00fcdwestafrika", + "Namibia", + "South West Africa", + "Sud-Ouest africain", + "S\u00fcdwestafrika" + ], + "md5": "efd0e54384af9c0a497d55861b072d08" + }, + { + "authorized_access_point": "Antarctique", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027237249", + "value": "http://www.idref.fr/027241912", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119323045", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15238492b", "source": "BNF" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4074335-4", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040743357", - "source": "GND" + "value": "(DE-101)040022080" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/172278143", - "source": "VIAF" + "value": "http://viaf.org/viaf/113150032973411180002" } ], - "relation_pid": { - "type": "redirect_from", - "value": "058632123" - }, - "variant_access_point": [ - "Augusta Tribonantum (ville ancienne)", - "Grand Londres (GB)", - "Greater London (GB)", - "Llyn Din (ville ancienne)", - "Londinium (ville ancienne)", - "Londres (GB) - Inner boroughs", - "Londres (GB ; comt\u00e9)", - "Londres (G.B.)", - "Londres (G. B.)" - ], - "authorized_access_point": "Londres (GB)" - }, - { - "md5": "49bd031ced726c54530fdb5dbed8effe", - "pid": "027237664", "note": [ { + "noteType": "dataSource", "label": [ - "M\u00e9diterran\u00e9e, R\u00e9gion de la ; Laval RVM, 1993-02", - "Ecology, biogeography and management of Pinus halepensis and P. brutia forest ecosystems in the Mediterranean Basin ; ISBN9057820552" - ], - "noteType": "dataSource" + "GLU, 1991. Encycl. universalis, 1989", + "Laval RVM, 1996-08" + ] }, { + "noteType": "general", "label": [ - "Sous cette vedette, on trouve les ouvrages qui traitent des \u00eeles et des r\u00e9gions riveraines de la M\u00e9diterran\u00e9e" - ], - "noteType": "general" + "Sous cette vedette on trouve les ouvrages sur le continent antarctique ainsi que sur les terres situ\u00e9es au sud du 60e parall\u00e8le, concern\u00e9es par le Trait\u00e9 sur l'Antarctique (1959)", + "Les lieux situ\u00e9s dans l'Antarctique sont localis\u00e9s \u00e0 Antarctique (sauf le p\u00f4le sud) ; ils s'utilisent en subdivision indirectement, par l'interm\u00e9diaire d'Antarctique" + ] } ], + "pid": "027241912", "type": "bf:Place", - "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Afrique du Nord" - }, - { - "authorized_access_point": "Europe du Sud" - }, + "broader": [ { - "authorized_access_point": "M\u00e9diterran\u00e9e, \u00celes de la" + "authorized_access_point": "R\u00e9gions polaires" } ], + "variant_access_point": [ + "Antarctide", + "Antarctiques, R\u00e9gions", + "Continent antarctique", + "R\u00e9gions antarctiques", + "Terres antarctiques" + ], + "md5": "b8e0e3b1b9aa403a5b2244ef5889a33f" + }, + { + "authorized_access_point": "La R\u00e9union (France ; \u00eele)", + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027237664", + "value": "http://www.idref.fr/027242005", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11932344d", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15326035w", "source": "BNF" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4074900-9", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040749002", - "source": "GND" + "value": "(DE-101)040496392" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/173035680", - "source": "VIAF" - }, - { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Bassin_m\u00e9diterran\u00e9en", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/129722462" } ], - "relation_pid": { - "type": "redirect_from", - "value": "059863188" - }, - "variant_access_point": [ - "Bassin m\u00e9diterran\u00e9en", - "M\u00e9diterran\u00e9e (mer ; r\u00e9gion)", - "M\u00e9diterran\u00e9e, Pays de la", - "M\u00e9diterran\u00e9ens, Pays", - "Pays de la M\u00e9diterran\u00e9e", - "Pays m\u00e9diterran\u00e9ens", - "R\u00e9gions m\u00e9diterran\u00e9ennes", - "R\u00e9gion m\u00e9diterran\u00e9enne" - ], - "authorized_access_point": "M\u00e9diterran\u00e9e (r\u00e9gion)" - }, - { - "md5": "5a2a1d07cfb488a5d52920b47560c160", - "pid": "027238180", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981. GLU" - ], - "noteType": "dataSource" + "IFLA, Names of states, 1981. GLU. BN ACO (en ligne), 1995-07-07. Laval RVM, 1995-02", + "https://www.insee.fr/fr/metadonnees/cog/, 2017-04-28", + "http://www.geonames.org/, 2017-04-28" + ] }, { + "noteType": "general", "label": [ - "De 1958 \u00e0 1976 : R\u00e9publique malgache" - ], - "noteType": "general" + "Emploi direct en subdivision : [Sujet] -- La R\u00e9union", + "D\u00e9partement d'outre-mer de la France" + ] } ], + "pid": "027242005", "type": "bf:Place", "broader": [ { "authorized_access_point": "Indien, \u00celes de l'oc\u00e9an" + }, + { + "authorized_access_point": "Mascareignes (\u00eeles)" + }, + { + "authorized_access_point": "France - D\u00e9partements et r\u00e9gions d'outre-mer" } ], - "deleted": "2024-07-16T19:52:36.233702+00:00", + "relation_pid": { + "value": "089774507", + "type": "redirect_from" + }, + "variant_access_point": [ + "Bonaparte, \u00cele (France)", + "Bourbon, \u00cele (France)", + "\u00cele Bourbon (France)", + "R\u00e9union, \u00cele de la (France)", + "\u00cele de La R\u00e9union (France)", + "R\u00e9union (France ; \u00eele)", + "La R\u00e9union", + "La R\u00e9union (\u00eele)", + "R\u00e9union" + ], + "md5": "fe113a29d7d189b6166354e441406bae" + }, + { + "authorized_access_point": "Rhin, Vall\u00e9e du", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027238180", + "value": "http://www.idref.fr/027242676", "source": "IDREF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040744256", - "source": "GND" + "value": "(DE-101)041240626" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/146036991", - "source": "VIAF" + "value": "http://viaf.org/viaf/172385555" } ], + "pid": "027242676", + "type": "bf:Place", "variant_access_point": [ - "Madagaskar", - "Madagascar (\u00eele)", - "Rep\u00f3blika Malagasy", - "R\u00e9publique malgache", - "Madagascar" + "Vall\u00e9e du Rhin" ], - "authorized_access_point": "Madagascar" + "md5": "c8f8c1ce6e8fa94044078fbcb0e370b5" }, { - "md5": "504f3de5f62d5a2efc9d4eb2a78be0c9", - "pid": "027239365", - "note": [ - { - "label": [ - "GDEL" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Place", + "authorized_access_point": "Polyn\u00e9sie", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027239365", + "value": "http://www.idref.fr/027243265", "source": "IDREF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040387887", - "source": "GND" + "value": "(DE-101)040467090" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/173636243", - "source": "VIAF" - } - ], - "authorized_access_point": "M\u00e9sopotamie" - }, - { - "md5": "3f12e1a0c6da8d8ace6e38ba0ccc3d5c", - "pid": "027239497", - "note": [ - { - "label": [ - "IFLA, Names of states, 1981. GLU, 1991", - "Laval RVM, 1997-02" - ], - "noteType": "dataSource" + "value": "http://viaf.org/viaf/173418425" }, { - "label": [ - "Voir aussi la subdivision Et le Mexique aux personnes et collectivit\u00e9s" - ], - "noteType": "seeReference" + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Polyn\u00e9sie" } ], + "pid": "027243265", "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Oc\u00e9anie" + } + ], + "md5": "e1ae43b1f40f0b3767ad72ef540a0c00" + }, + { + "authorized_access_point": "Pays de langue allemande", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027239497", + "value": "http://www.idref.fr/02724606X", "source": "IDREF" }, { "type": "uri", - "value": "http://d-nb.info/gnd/4039058-5", - "source": "GND" + "value": "http://catalogue.bnf.fr/ark:/12148/cb11933043g", + "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040390586", - "source": "GND" + "value": "(DE-101)040703703" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/173636258", - "source": "VIAF" - } - ], - "variant_access_point": [ - "Estados unidos mexicanos", - "M\u00e9jico", - "M\u00e9xico" - ], - "authorized_access_point": "Mexique" - }, - { - "md5": "5ab83fd2bad768829d255b4b56978332", - "pid": "027241912", - "note": [ - { - "label": [ - "GLU, 1991. Encycl. universalis, 1989", - "Laval RVM, 1996-08" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette on trouve les ouvrages sur le continent antarctique ainsi que sur les terres situ\u00e9es au sud du 60e parall\u00e8le, concern\u00e9es par le Trait\u00e9 sur l'Antarctique (1959)", - "Les lieux situ\u00e9s dans l'Antarctique sont localis\u00e9s \u00e0 Antarctique (sauf le p\u00f4le sud) ; ils s'utilisent en subdivision indirectement, par l'interm\u00e9diaire d'Antarctique" - ], - "noteType": "general" + "value": "http://viaf.org/viaf/173145199" } ], + "pid": "02724606X", "type": "bf:Place", "broader": [ { - "authorized_access_point": "R\u00e9gions polaires" + "authorized_access_point": "Pays de langues germaniques" } ], + "variant_access_point": [ + "Pays germanophones", + "R\u00e9gions de langue allemande", + "Germanophonie", + "Europe germanophone" + ], + "md5": "bf6fb94d428a76fb9f84405461bb1bf6" + }, + { + "authorized_access_point": "Savoie (France ; r\u00e9gion)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027241912", + "value": "http://www.idref.fr/027247740", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15238492b", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11933188q", "source": "BNF" }, { - "type": "bf:Nbn", - "value": "(DE-101)040022080", - "source": "GND" + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/172331909" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "http://viaf.org/viaf/113150032973411180002", - "source": "VIAF" + "value": "https://fr.wikipedia.org/wiki/Savoie" } ], - "variant_access_point": [ - "Antarctide", - "Antarctiques, R\u00e9gions", - "Continent antarctique", - "R\u00e9gions antarctiques", - "Terres antarctiques" - ], - "authorized_access_point": "Antarctique" - }, - { - "md5": "2a34e24a150951537d9edb3213007aed", - "pid": "027242005", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981. GLU. BN ACO (en ligne), 1995-07-07. Laval RVM, 1995-02", - "https://www.insee.fr/fr/metadonnees/cog/, 2017-04-28", - "http://www.geonames.org/, 2017-04-28" - ], - "noteType": "dataSource" + "GLU. Laval RVM, 2000-01" + ] }, { + "noteType": "general", "label": [ - "Emploi direct en subdivision : [Sujet] -- La R\u00e9union", - "D\u00e9partement d'outre-mer de la France" - ], - "noteType": "general" + "Sous cette vedette on trouve les documents sur la r\u00e9gion qui forme aujourd'hui les deux d\u00e9partements fran\u00e7ais de Savoie et de Haute-Savoie. Les documents sur le d\u00e9partement de la Savoie sont sous la vedette Savoie (France). Les documents sur la Savoie historique avant 1860 sont sous la vedette Savoie" + ] } ], + "pid": "027247740", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Indien, \u00celes de l'oc\u00e9an" - }, - { - "authorized_access_point": "Mascareignes (\u00eeles)" - }, - { - "authorized_access_point": "France - D\u00e9partements et r\u00e9gions d'outre-mer" + "authorized_access_point": "Rh\u00f4ne-Alpes (France)" } ], + "md5": "d6189628ad88eae7bf2606599aee884d" + }, + { + "authorized_access_point": "S\u00e9ville (Espagne)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027242005", + "value": "http://www.idref.fr/027248704", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15326035w", - "source": "BNF" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040496392", - "source": "GND" + "value": "(DE-101)04054671" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/129722462", - "source": "VIAF" + "value": "http://viaf.org/viaf/142678783" } ], - "relation_pid": { - "type": "redirect_from", - "value": "089774507" - }, - "variant_access_point": [ - "Bonaparte, \u00cele (France)", - "Bourbon, \u00cele (France)", - "\u00cele Bourbon (France)", - "R\u00e9union, \u00cele de la (France)", - "\u00cele de La R\u00e9union (France)", - "R\u00e9union (France ; \u00eele)", - "La R\u00e9union", - "La R\u00e9union (\u00eele)", - "R\u00e9union" - ], - "authorized_access_point": "La R\u00e9union (France ; \u00eele)" - }, - { - "md5": "4ffc2763dad6b5cd0821e6471d814e55", - "pid": "02724301X", "note": [ { + "noteType": "dataSource", "label": [ - "Rome (Italy) ; LCSH, 1988-12. Laval RVM, 1988-12" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette, on trouve les ouvrages sur la ville de Rome, ancienne et moderne. Les ouvrages sur l'\u00c9tat romain antique se trouvent sous la vedette Rome" - ], - "noteType": "general" + "GDEL" + ] } ], + "pid": "027248704", "type": "bf:Place", + "variant_access_point": [ + "Sevilla (Espagne)" + ], + "md5": "fd80994177f4c18616de134cc9645135" + }, + { + "authorized_access_point": "Pays socialistes", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/02724301X", + "value": "http://www.idref.fr/027248933", "source": "IDREF" }, { "type": "uri", - "value": "https://catalogue.bnf.fr/ark:/12148/cb11932804j", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119332807", "source": "BNF" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4050471-2", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040504719", - "source": "GND" + "value": "(DE-101)040558134" }, { - "type": "bf:Nbn", - "value": "(DE-101)040504719", - "source": "GND" - }, + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/315125192" + } + ], + "pid": "027248933", + "type": "bf:Place", + "related": [ + { + "authorized_access_point": "Anciens pays socialistes" + } + ], + "variant_access_point": [ + "Bloc sovi\u00e9tique", + "Communistes, \u00c9tats", + "D\u00e9mocraties populaires", + "\u00c9tats communistes", + "\u00c9tats socialistes", + "Pays communistes", + "Pays du rideau de fer", + "Pays satellites sovi\u00e9tiques", + "Satellites sovi\u00e9tiques (Pays)", + "Socialistes, \u00c9tats", + "Socialistes, Pays" + ], + "md5": "da2a669fd9fc67cdb59b5fc278a63033" + }, + { + "authorized_access_point": "Bal\u00e9ares (Espagne)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ { "type": "uri", - "value": "https://d-nb.info/gnd/4050471-2", - "source": "GND" + "value": "http://www.idref.fr/027250199", + "source": "IDREF" }, { "type": "uri", - "value": "http://viaf.org/viaf/159835544", - "source": "VIAF" + "value": "http://catalogue.bnf.fr/ark:/12148/cb11933372w", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040690989" }, { + "source": "VIAF", "type": "uri", - "value": "https://ark.frantiq.fr/ark:/26678/pcrtW9ctTWwSAK", - "source": "PACTOLS" + "value": "http://viaf.org/viaf/130205220" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Rome", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/\u00celes_Bal\u00e9ares" } ], - "variant_access_point": [ - "Roma (Italie)" - ], - "authorized_access_point": "Rome (Italie)" - }, - { - "md5": "3d0c030aa8ff22acc8cdf5b6f71b2fb4", - "pid": "027243222", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981. GLU, 1991", - "Laval RVM, 1996-02" - ], - "noteType": "dataSource" + "GLU. SY 1993/94" + ] }, { + "noteType": "general", "label": [ - "Voir aussi la subdivision Et la Pologne aux personnes et collectivit\u00e9s" - ], - "noteType": "seeReference" + "Communaut\u00e9 autonome de l'Espagne depuis 1983" + ] } ], + "pid": "027250199", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Europe centrale" - }, - { - "authorized_access_point": "Pays slaves" - } - ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ - { - "type": "uri", - "value": "http://www.idref.fr/027243222", - "source": "IDREF" - }, - { - "type": "uri", - "value": "http://d-nb.info/gnd/4046496-9 ", - "source": "GND" + "authorized_access_point": "M\u00e9diterran\u00e9e, \u00celes de la" }, { - "type": "bf:Nbn", - "value": "(DE-101)040464962", - "source": "GND" + "authorized_access_point": "Pays catalans" }, { - "type": "uri", - "value": "http://viaf.org/viaf/173581060", - "source": "VIAF" + "authorized_access_point": "Espagne - Communaut\u00e9s autonomes" } ], "variant_access_point": [ - "Polska" + "Balears (Espagne)", + "Illes Balears (Espagne)", + "Islas Baleares (Espagne)" ], - "authorized_access_point": "Pologne" + "md5": "21390f9b24b0a6a61d5b8865b8f16508" }, { - "md5": "0c79969cec313b5063fa3275a09517e4", - "pid": "027244482", - "note": [ - { - "label": [ - "Laval RVM, 1992-02" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette, on trouve les ouvrages qui traitent de la r\u00e9gion du Proche-Orient comprise entre le Liban, la Mer Morte, la M\u00e9diterran\u00e9e et le d\u00e9sert de Syrie, correspondant \u00e0 l'ancien pays de Canaan, puis aux royaumes d'Israe\u034f\u0308l et de Juda et actuellement \u00e0 l'\u00c9tat d'Israe\u034f\u0308l ainsi qu'aux divers territoires \u00e0 juridiction contest\u00e9e. Les ouvrages sur un territoire en particulier se trouvent \u00e0 son nom propre" - ], - "noteType": "general" - } - ], - "type": "bf:Place", - "broader": [ - { - "authorized_access_point": "Proche-Orient" - } - ], + "authorized_access_point": "Barcelone (Espagne)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027244482", + "value": "http://www.idref.fr/027250210", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11932928t", - "source": "BNF" - }, - { - "type": "uri", - "value": "http://d-nb.info/gnd/4044381-4", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040443817", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/138926424", - "source": "VIAF" + "value": "(DE-101)04004503X" }, { + "source": "VIAF", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Palestine_(Arkansas)", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/173418460" } ], - "variant_access_point": [ - "Terre sainte", - "\u0641\u0644\u0633\u0637\u064a\u0646", - "Filas\u1e6d\u012bn" - ], - "authorized_access_point": "Palestine" - }, - { - "md5": "31e634102abcd01b55344db7c7707f35", - "pid": "027244520", "note": [ { + "noteType": "dataSource", "label": [ - "GLU" - ], - "noteType": "dataSource" + "GLU. Guide bleu, Epagne, 1992" + ] } ], + "pid": "027250210", "type": "bf:Place", "broader": [ { - "authorized_access_point": "\u00cele-de-France (France)" + "authorized_access_point": "Barcelone (Espagne ; province)" } ], + "variant_access_point": [ + "Barcelona (Espagne)", + "Barcino (ville ancienne)", + "Barcinona (ville ancienne)" + ], + "md5": "3dc79b1cb80d0a2eca0d936597d5f573" + }, + { + "authorized_access_point": "Bari (Italie)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027244520", + "value": "http://www.idref.fr/027250245", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb152821567", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119333768", "source": "BNF" }, { - "type": "bf:Nbn", - "value": "(DE-101)040446603", - "source": "GND" - }, - { - "type": "uri", - "value": "http://d-nb.info/gnd/4044660-8", - "source": "GND" - }, - { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/260846891", - "source": "VIAF" + "value": "http://viaf.org/viaf/172547104" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Paris-France", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Bari" } ], - "variant_access_point": [ - "Lut\u00e8ce (ville ancienne)", - "Lutetia Parisiorum (ville ancienne)", - "Paris", - "Paname" - ], - "authorized_access_point": "Paris (France)" - }, - { - "md5": "2568896ba3cfb0803dc0a5f599d7f826", - "pid": "02724606X", - "type": "bf:Place", - "broader": [ + "note": [ { - "authorized_access_point": "Pays de langues germaniques" + "noteType": "dataSource", + "label": [ + "Atlas Le Monde" + ] } ], + "pid": "027250245", + "type": "bf:Place", + "md5": "c59d414b92bc18801a9df299e9e2c6bb" + }, + { + "authorized_access_point": "Boh\u00eame (R\u00e9publique tch\u00e8que)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/02724606X", + "value": "http://www.idref.fr/027250393", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11933043g", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11933389m", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040703703", - "source": "GND" + "value": "(DE-101)040074676" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/173145199", - "source": "VIAF" + "value": "http://viaf.org/viaf/172547115" } ], - "variant_access_point": [ - "Pays germanophones", - "R\u00e9gions de langue allemande", - "Germanophonie", - "Europe germanophone" - ], - "authorized_access_point": "Pays de langue allemande" - }, - { - "md5": "3f374de115c2e23964659484009a8e65", - "pid": "027249654", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981. GLU, 1991", - "Laval RVM, 1997-02" - ], - "noteType": "dataSource" + "GLU" + ] }, { + "noteType": "general", "label": [ - "Voir aussi la subdivision Et la Suisse aux personnes et collectivit\u00e9s" - ], - "noteType": "seeReference" + "Sous cette vedette, on trouve les ouvrages qui traitent de la Boh\u00eame au sens strict, ou, pour la p\u00e9riode allant jusqu'\u00e0 1918, de l'ensemble des pays relevant de la couronne de Boh\u00eame, incluant notemment le margraviat de Moravie" + ] } ], + "pid": "027250393", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Europe centrale" + "authorized_access_point": "R\u00e9publique tch\u00e8que" } ], + "variant_access_point": [ + "Boh\u00eame", + "Boh\u00eame (Royaume)", + "B\u00f6hmen (R\u00e9publique tch\u00e8que)", + "\u010cechy (R\u00e9publique tch\u00e8que)", + "Couronne de Boh\u00eame, Pays de la", + "Pays tch\u00e8ques" + ], + "md5": "02c87c356b9d38893f531815817c748c" + }, + { + "authorized_access_point": "Bologne (Italie)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027249654", + "value": "http://www.idref.fr/027250407", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15241146v", - "source": "BNF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11933332n", - "source": "BNF" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040538818", - "source": "GND" + "value": "(DE-101)040076164" }, { + "source": "VIAF", "type": "uri", - "value": "https://d-nb.info/gnd/4053881-3", - "source": "GND" + "value": "http://viaf.org/viaf/242997663" }, { + "source": "PACTOLS", "type": "uri", - "value": "http://viaf.org/viaf/3896148574351624430005", - "source": "VIAF" + "value": "https://ark.frantiq.fr/ark:/26678/pcrtxAvrNy1ySE" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Suisse_(Moselle)", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Bologne" } ], - "variant_access_point": [ - "Conf\u00e9d\u00e9ration helv\u00e9tique", - "Confederazione svizzera", - "Helvetia", - "Helv\u00e9tie", - "Schweiz", - "Schweizerische Eidgenossenschaft", - "Svizra", - "Svizzera" - ], - "authorized_access_point": "Suisse" - }, - { - "md5": "25dfb2efd760f151c22517bd63973b21", - "pid": "02725030X", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981. SY, 1990/1991" - ], - "noteType": "dataSource" + "Atlas Le Monde. GDEL" + ] } ], + "pid": "027250407", "type": "bf:Place", - "broader": [ - { - "authorized_access_point": "Benelux" - }, - { - "authorized_access_point": "Pays de l'Union europ\u00e9enne" - } + "variant_access_point": [ + "Bologna (Italie)" ], + "md5": "b185908b60c2f4a856939d684191b646" + }, + { + "authorized_access_point": "Bruxelles (Belgique)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/02725030X", + "value": "http://www.idref.fr/027250547", "source": "IDREF" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4005406-8", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040054063", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/7718148574367424430004", - "source": "VIAF" + "value": "(DE-101)040084604" }, { + "source": "VIAF", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Belgium_(village_du_Wisconsin)", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/8187154983561567860004" } ], - "variant_access_point": [ - "Belgie\u034f\u0308", - "Belgien", - "Pays-Bas m\u00e9ridionaux", - "Pays-Bas autrichiens", - "Pays-Bas espagnols", - "S\u00fcdliche Niederlande", - "Zuidelijke Nederlanden" - ], - "authorized_access_point": "Belgique" - }, - { - "md5": "c0ace3f9408f195aa3ceb8c5d0d180bc", - "pid": "027250504", "note": [ { + "noteType": "dataSource", "label": [ - "Dict. communes, 1984 - Saint-Sauveur, \u00e9galement appel\u00e9e Saint-Sauveur-de-Givre-en-Mai, est une ancienne commune fran\u00e7aise situ\u00e9e dans le d\u00e9partement des Deux-S\u00e8vres et la r\u00e9gion Poitou-Charentes. Elle est associ\u00e9e \u00e0 la commune de Bressuire depuis 1973." - ], - "noteType": "dataSource" + "GDEL" + ] } ], + "pid": "027250547", "type": "bf:Place", + "variant_access_point": [ + "Bruxelles", + "Brussel (Belgique)" + ], + "md5": "643f45f209a91c058b6f461d92d4e47b" + }, + { + "authorized_access_point": "Californie (\u00c9tats-Unis)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027250504", + "value": "http://www.idref.fr/027250636", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11854138n", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11933409d", "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040293076" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/172438990" } ], - "variant_access_point": [ - "Saint-Sauveur-de-Givre-en-Mai" - ], - "authorized_access_point": "Bressuire (Deux-S\u00e8vres)" - }, - { - "md5": "14ad4d2f53be2abfbfd06f6515cd2389", - "pid": "027250636", "note": [ { + "noteType": "dataSource", "label": [ "GLU" - ], - "noteType": "dataSource" + ] }, { + "noteType": "general", "label": [ "En pr\u00e9cision de lieu, employer Calif., par ex. Los Angeles (Calif.)" - ], - "noteType": "general" + ] } ], + "pid": "027250636", "type": "bf:Place", "broader": [ { @@ -2712,281 +2258,266 @@ "authorized_access_point": "\u00c9tats-Unis - \u00c9tats" } ], + "variant_access_point": [ + "California (\u00c9tats-Unis)", + "Californie" + ], + "md5": "1bc0dbd39772041056e5965c8e5eb6d4" + }, + { + "authorized_access_point": "Canaries", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027250636", + "value": "http://www.idref.fr/027250695", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11933409d", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12263408m", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040293076", - "source": "GND" + "value": "(DE-101)04073188X" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/148386330" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "http://viaf.org/viaf/172438990", - "source": "VIAF" + "value": "https://fr.wikipedia.org/wiki/\u00celes_Canaries" } ], - "variant_access_point": [ - "California (\u00c9tats-Unis)", - "Californie" - ], - "authorized_access_point": "Californie (\u00c9tats-Unis)" - }, - { - "md5": "0fcf9c94ae9f97da0c9bd90bfc5e6744", - "pid": "027250644", "note": [ { + "noteType": "dataSource", + "label": [ + "SY, 1987/1988. GDEL. Laval RVM suppl., 1987" + ] + }, + { + "noteType": "general", "label": [ - "Pays et capitales du monde / IGN, 1986 ; GLU ; Encycl. universalis, 1984, t.4, p.69 sq. Cambodia ; SY, 1992/1993" - ], - "noteType": "dataSource" + "Cette vedette s'emploie directement en subdivision de lieu : [Sujet] -- Canaries. Les lieux situ\u00e9s aux Canaries sont localis\u00e9s \u00e0 (Canaries)", + "Communaut\u00e9 autonome de l'Espagne. La capitale r\u00e9gionale est alternativement Las Palmas et Santa Cruz de Tenerife" + ] } ], + "pid": "027250695", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Indochine" + "authorized_access_point": "Atlantique, \u00celes de l'" + }, + { + "authorized_access_point": "Espagne - Communaut\u00e9s autonomes" } ], + "variant_access_point": [ + "Canaries (\u00eeles)", + "\u00celes Fortun\u00e9es", + "Fortun\u00e9es (\u00eeles)", + "Canarias" + ], + "md5": "111b05da47ae72935113012054dcf3ff" + }, + { + "authorized_access_point": "Cher (France)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027250644", + "value": "http://www.idref.fr/027250857", "source": "IDREF" }, { - "type": "bf:Nbn", - "value": "(DE-101)04029400", - "source": "GND" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11933428p", + "source": "BNF" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/134861112", - "source": "VIAF" + "value": "http://viaf.org/viaf/137228189" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Cambodge", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Cher_(d\u00e9partement)" } ], - "relation_pid": { - "type": "redirect_from", - "value": "094318433" - }, - "variant_access_point": [ - "Kamb\u016bj\u0101", - "Kampuchea", - "Kampuchea d\u00e9mocratique", - "Khm\u00e8re, R\u00e9publique", - "R\u00e9publique khm\u00e8re" - ], - "authorized_access_point": "Cambodge" - }, - { - "md5": "84214c81ce63e5101f07b69a5d37ab0e", - "pid": "027250679", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981. GLU, 1991", - "Laval RVM, 1997-02" - ], - "noteType": "dataSource" + "GLU, 1991" + ] }, { + "noteType": "general", "label": [ - "Bas- et Haut-Canada : 1791-1840 ; Province du Canada ou Canada-Uni (1840-1867) ; Dominion du Canada (depuis le 01-07-1867)" - ], - "noteType": "general" + "D\u00e9partement fran\u00e7ais (18)" + ] } ], + "pid": "027250857", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Am\u00e9rique du Nord" - } - ], - "bnf_type": "sujet Rameau", - "narrower": [ + "authorized_access_point": "Berry (France)" + }, { - "authorized_access_point": "R\u00e9gion frontali\u00e8re canado-am\u00e9ricaine" + "authorized_access_point": "Centre (France)" } ], + "variant_access_point": [ + "Cher", + "Haut Berry (France)" + ], + "md5": "a4fc78ad04f0b6b139456f4beb63f831" + }, + { + "authorized_access_point": "Chypre", + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027250679", + "value": "http://www.idref.fr/027250873", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb120149708", - "source": "BNF" - }, - { - "type": "uri", - "value": "http://d-nb.info/gnd/4029456-0", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040294560", - "source": "GND" + "value": "(DE-101)040795969" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/259064546", - "source": "VIAF" + "value": "http://viaf.org/viaf/174324116" } ], - "variant_access_point": [ - "Am\u00e9rique du Nord britannique", - "British North America", - "Canada (Dominion)", - "Canada (Province)", - "Canada-Uni" - ], - "authorized_access_point": "Canada" - }, - { - "md5": "8eea9641cf3a845b1c8637b928d71410", - "pid": "027250911", "note": [ { + "noteType": "dataSource", "label": [ - "Cor\u00e9e du Sud ; Laval RVM, 1994-08. Han'guk (Min'guk) ; GKD, 1980" - ], - "noteType": "dataSource" + "IFLA, Names of states, 1981. GDEL. SY, 1987/1988. Laval RVM suppl., 1987" + ] }, { + "noteType": "general", "label": [ - "En pr\u00e9cision g\u00e9ographique, employer Cor\u00e9e S., par ex. S\u00e9oul (Cor\u00e9e S.)", - "Le Royaume de Cor\u00e9e fut colonis\u00e9 par le Japon de 1905 \u00e0 la fin de la Seconde guerre mondiale. La partition, en 1945, en 2 zones d'occupation (USA et URSS) aboutit le 15 ao\u00fbt 1948 \u00e0 la proclamation de la R\u00e9publique de Cor\u00e9e. Capitale S\u00e9oul, langue officielle cor\u00e9en" - ], - "noteType": "general" + "Sous cette vedette, on trouve les ouvrages qui traitent de l'\u00eele de Chypre et/ou de la R\u00e9publique de Chypre, au territoire r\u00e9duit \u00e0 la suite de l'intervention turque de 1974. Les ouvrages qui traitent exclusivement de la R\u00e9publique turque de Chypre du Nord se trouvent sous la vedette : Chypre du Nord (R\u00e9publique turque)" + ] } ], + "pid": "027250873", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Cor\u00e9e" + "authorized_access_point": "M\u00e9diterran\u00e9e, \u00celes de la" + }, + { + "authorized_access_point": "Proche-Orient" } ], + "relation_pid": { + "value": "059675527", + "type": "redirect_from" + }, + "variant_access_point": [ + "Cyprus", + "Kibris", + "Kypros" + ], + "md5": "d5925c67171b3d7248fc6d8e911674af" + }, + { + "authorized_access_point": "Copenhague (Danemark)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027250911", + "value": "http://www.idref.fr/02725089X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb152988753", - "source": "BNF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119334338", + "value": "http://catalogue.bnf.fr/ark:/12148/cb152399621", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040780295", - "source": "GND" + "value": "(DE-101)040323994" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/139094665", - "source": "VIAF" - }, - { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Gouvernement_militaire_de_l'arm\u00e9e_des_\u00c9tats-Unis_en_Cor\u00e9e", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/300998144" } ], - "variant_access_point": [ - "Han Kook", - "Cor\u00e9e du Sud", - "R\u00e9publique de Cor\u00e9e", - "Cor\u00e9e, R\u00e9publique de", - "Cor\u00e9e, R\u00e9publique de (1948-....)" - ], - "authorized_access_point": "Cor\u00e9e (R\u00e9publique)" - }, - { - "md5": "65b7ea2f0753df6b4d8216be3205a079", - "pid": "027250938", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL" - ], - "noteType": "dataSource" + "BN ACO" + ] } ], + "pid": "02725089X", "type": "bf:Place", - "broader": [ - { - "authorized_access_point": "M\u00e9diterran\u00e9e, \u00celes de la" - }, + "narrower": [ { - "authorized_access_point": "France - R\u00e9gions" + "authorized_access_point": "Copenhague (Danemark) - Quartier de Frederiksstaden" } ], + "variant_access_point": [ + "K\u00f8benhavn (Danemark)", + "Hauniae (Danemark)", + "Hafniae (Danemark)" + ], + "md5": "8a9eae490542508335708af34c8110ff" + }, + { + "authorized_access_point": "Cuba", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027250938", + "value": "http://www.idref.fr/02725108X", "source": "IDREF" }, { "type": "uri", - "value": "http://d-nb.info/gnd/4032527-1", - "source": "GND" + "value": "http://catalogue.bnf.fr/ark:/12148/cb119334489", + "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)04032527X", - "source": "GND" + "value": "(DE-101)04033340X" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/266664107", - "source": "VIAF" + "value": "http://viaf.org/viaf/162884679" } ], - "variant_access_point": [ - "Corse", - "Corse, \u00eele de (France)", - "Corsica (France)" - ], - "authorized_access_point": "Corse (France)" - }, - { - "md5": "ee6d223a97236cdebbd28fc0b033da7d", - "pid": "02725108X", "note": [ { + "noteType": "dataSource", "label": [ "IFLA, Names of states, 1981" - ], - "noteType": "dataSource" + ] } ], + "pid": "02725108X", "type": "bf:Place", "broader": [ { @@ -2996,405 +2527,428 @@ "authorized_access_point": "Grandes Antilles" } ], + "md5": "53cd15e7b7e46bd7c367be97d5a26a97" + }, + { + "authorized_access_point": "Dauphin\u00e9 (France)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/02725108X", + "value": "http://www.idref.fr/027251160", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119334489", - "source": "BNF" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)04033340X", - "source": "GND" + "value": "(DE-101)040909255" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/162884679", - "source": "VIAF" + "value": "http://viaf.org/viaf/141826527" } ], - "authorized_access_point": "Cuba" - }, - { - "md5": "b1e2591463c0f2fdacba7131c1602289", - "pid": "027251411", "note": [ { + "noteType": "dataSource", "label": [ - "GLU, 1991. Mourre, 1986", - "Laval RVM, 1997-02" - ], - "noteType": "dataSource" + "GDEL" + ] } ], + "pid": "027251160", "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Rh\u00f4ne-Alpes (France)" + } + ], + "variant_access_point": [ + "Dauphin\u00e9 de Viennois" + ], + "md5": "7aef2ff06c738b210a61f7b3d7be98f2" + }, + { + "authorized_access_point": "Soudan", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027251411", + "value": "http://www.idref.fr/027251594", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11933474v", - "source": "BNF" - }, - { - "type": "uri", - "value": "http://d-nb.info/gnd/4062501-1", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)04062501X", - "source": "GND" + "value": "(DE-101)040583783" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/136651400", - "source": "VIAF" + "value": "http://viaf.org/viaf/150756275" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Venise", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Soudan" } ], - "variant_access_point": [ - "Venezia (Italie)", - "Venise (R\u00e9publique)" - ], - "authorized_access_point": "Venise (Italie)" - }, - { - "md5": "8b5f28d47a4a6edfbc29adbd0111b078", - "pid": "027251551", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL" - ], - "noteType": "dataSource" + "IFLA, Names of states, 1981. GDEL" + ] } ], + "pid": "027251594", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Italie (sud)" - }, - { - "authorized_access_point": "M\u00e9diterran\u00e9e, \u00celes de la" + "authorized_access_point": "Afrique du Nord-Est" }, { - "authorized_access_point": "Italie - R\u00e9gions" + "authorized_access_point": "Moyen-Orient" } ], + "variant_access_point": [ + "Soudan anglo-\u00e9gyptien", + "Sudan", + "\u0627\u0644\u0633\u0648\u062f\u0627\u0646", + "Al-S\u016bd\u0101n" + ], + "md5": "d7a15ca0a7c68344826c265e23c2f097" + }, + { + "authorized_access_point": "Tha\u00eflande", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027251551", + "value": "http://www.idref.fr/027251659", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11933486v", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11933494g", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040551938", - "source": "GND" + "value": "(DE-101)04078228X" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/128149106013968490737", - "source": "VIAF" + "value": "http://viaf.org/viaf/138308059" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Sicile", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Tha\u00eflande" } ], - "variant_access_point": [ - "Sicile", - "Sicile (Royaume)", - "Sicilia (Italie)", - "Trinacrie", - "Trinacria" - ], - "authorized_access_point": "Sicile (Italie)" - }, - { - "md5": "1ca8b275185aa0489230935cdb50c420", - "pid": "027251659", "note": [ { + "noteType": "dataSource", "label": [ "Names of states / IFLA, 1981. SY, 1986/1987" - ], - "noteType": "dataSource" + ] } ], + "pid": "027251659", "type": "bf:Place", "broader": [ { "authorized_access_point": "Indochine" } ], + "variant_access_point": [ + "Muang-Thai", + "Prathet Thai", + "Siam" + ], + "md5": "ea19525e9bee11dba7834bb2f050b4e8" + }, + { + "authorized_access_point": "Marrakech (Maroc)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027251659", + "value": "http://www.idref.fr/027251810", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11933494g", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12570735b", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)04078228X", - "source": "GND" + "value": "(DE-101)040376842" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/138308059", - "source": "VIAF" + "value": "http://viaf.org/viaf/138361991" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Tha\u00eflande", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Marrakech" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. BN Service arabe" + ] } ], + "pid": "027251810", + "type": "bf:Place", "variant_access_point": [ - "Muang-Thai", - "Prathet Thai", - "Siam" + "Marr\u0101ku\u0161 (Maroc)" ], - "authorized_access_point": "Tha\u00eflande" + "md5": "0b763791d48d28ee0555a82f72fe1a4f" }, { - "md5": "fc7debc086b369e2fab675cb6b9d5492", - "pid": "027252124", + "authorized_access_point": "M\u00e9diterran\u00e9e (mer)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027251861", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/307211045" + } + ], "note": [ { + "noteType": "dataSource", "label": [ "GDEL" - ], - "noteType": "dataSource" + ] } ], + "pid": "027251861", "type": "bf:Place", - "related": [ + "narrower": [ + { + "authorized_access_point": "M\u00e9diterran\u00e9e (mer ; sud-ouest)" + }, { - "authorized_access_point": "Moscou (Russie) - Histoire" + "authorized_access_point": "M\u00e9diterran\u00e9e (mer ; est)" } ], + "variant_access_point": [ + "M\u00e9diterran\u00e9e" + ], + "md5": "43f950b070d303984e7ab75d9e1d0f63" + }, + { + "authorized_access_point": "Mozambique", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027252124", + "value": "http://www.idref.fr/027252132", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11933531v", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12246813m", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040749878", - "source": "GND" + "value": "(DE-101)040397866" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/142519565", - "source": "VIAF" + "value": "http://viaf.org/viaf/130895295" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Moscou", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/R\u00e9publique_populaire_du_Mozambique" } ], - "variant_access_point": [ - "Moscou", - "Moskva (Russie)" - ], - "authorized_access_point": "Moscou (Russie)" - }, - { - "md5": "e6474f3582d2a2f395d8b32138005d91", - "pid": "027252272", "note": [ { + "noteType": "dataSource", "label": [ - "GLU" - ], - "noteType": "dataSource" + "Names of states / IFLA, 1981. LCSH, 1985" + ] + } + ], + "pid": "027252132", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Inhambane (Mozambique ; province)" }, { - "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent de l'ensemble de l'empire turc osmanli. Les ouvrages sur la R\u00e9publique turque ou sur la seule Anatolie se trouvent sous la vedette Turquie" - ], - "noteType": "general" + "authorized_access_point": "Nampula (Mozambique ; province)" + }, + { + "authorized_access_point": "Zamb\u00e9zie (Mozambique)" } ], - "type": "bf:Place", "broader": [ { - "authorized_access_point": "Orient" + "authorized_access_point": "Afrique australe" } ], + "relation_pid": { + "value": "031209068", + "type": "redirect_from" + }, + "variant_access_point": [ + "Mo\u00e7ambique" + ], + "md5": "bc23ab983c7fcca9e3d97fb641f12d85" + }, + { + "authorized_access_point": "N\u00e9pal", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027252272", + "value": "http://www.idref.fr/027252175", "source": "IDREF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)04075720X", - "source": "GND" + "value": "(DE-101)040416127" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/5493148574275724430005", - "source": "VIAF" + "value": "http://viaf.org/viaf/5689148574317624430000" } ], - "variant_access_point": [ - "Empire turc", - "Ottoman, Empire" - ], - "authorized_access_point": "Empire ottoman" - }, - { - "md5": "00ffe89cc4693f3c847a9d5709cd6f3e", - "pid": "027252361", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981" - ], - "noteType": "dataSource" + "Names of states / IFLA, 1981" + ] } ], + "pid": "027252175", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Benelux" - }, - { - "authorized_access_point": "Pays de l'Union europ\u00e9enne" + "authorized_access_point": "Asie du Sud" } ], + "md5": "a36e26eceef827713f6c876793938d4a" + }, + { + "authorized_access_point": "Empire ottoman", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027252361", + "value": "http://www.idref.fr/027252272", "source": "IDREF" }, { - "type": "uri", - "value": "https://catalogue.bnf.fr/ark:/12148/cb11933554h", - "source": "BNF" - }, - { - "type": "uri", - "value": "http://d-nb.info/gnd/4042203-3", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040422038", - "source": "GND" + "value": "(DE-101)04075720X" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/1557150033026211180005", - "source": "VIAF" + "value": "http://viaf.org/viaf/5493148574275724430005" } ], - "variant_access_point": [ - "Nederland", - "Provinces-Unies" - ], - "authorized_access_point": "Pays-Bas" - }, - { - "md5": "0b49dfaff1531150b0fc3f8bbeb7049d", - "pid": "027252388", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981", - "Laval RVM, 1996-02" - ], - "noteType": "dataSource" + "GLU" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette on trouve les ouvrages qui traitent de l'ensemble de l'empire turc osmanli. Les ouvrages sur la R\u00e9publique turque ou sur la seule Anatolie se trouvent sous la vedette Turquie" + ] } ], + "pid": "027252272", "type": "bf:Place", - "bnf_type": "sujet Rameau", - "narrower": [ + "broader": [ { - "authorized_access_point": "Amazonie (P\u00e9rou)" + "authorized_access_point": "Orient" } ], + "variant_access_point": [ + "Empire turc", + "Ottoman, Empire" + ], + "md5": "5c011c04d54ecd6163551beb7b01b038" + }, + { + "authorized_access_point": "Rh\u00e9nanie du Nord-Westphalie (Allemagne)", + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027252388", + "value": "http://www.idref.fr/027252485", "source": "IDREF" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4045312-1", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)04045312X", - "source": "GND" + "value": "(DE-101)040425703" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/175126463", - "source": "VIAF" + "value": "http://viaf.org/viaf/173527834" } ], - "variant_access_point": [ - "Per\u00fa" - ], - "authorized_access_point": "P\u00e9rou" - }, - { - "md5": "4106fa410577d0648c2c532ff13f53f9", - "pid": "027252620", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL" - ], - "noteType": "dataSource" + "GDEL. Nordrhein-Westfalen ; GKD, 1980 ; BN ACO" + ] } ], + "pid": "027252485", "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Rh\u00e9nanie (Allemagne)" + }, + { + "authorized_access_point": "Allemagne - L\u00e4nder" + } + ], + "variant_access_point": [ + "Nordrhein-Westfalen" + ], + "md5": "8a871296a91273a916f365c245de3f54" + }, + { + "authorized_access_point": "Saint-Jacques-de-Compostelle (Espagne)", "bnf_type": "sujet Rameau", "identifiedBy": [ { @@ -3403,9670 +2957,31612 @@ "source": "IDREF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)04051658X", - "source": "GND" + "value": "(DE-101)04051658X" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/9662148705732037080009", - "source": "VIAF" + "value": "http://viaf.org/viaf/9662148705732037080009" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/122531297", - "source": "VIAF" + "value": "http://viaf.org/viaf/122531297" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] } ], + "pid": "027252620", + "type": "bf:Place", "relation_pid": { - "type": "redirect_from", - "value": "169986365" + "value": "169986365", + "type": "redirect_from" }, "variant_access_point": [ "Santiago de Compostela (Espagne)" ], - "authorized_access_point": "Saint-Jacques-de-Compostelle (Espagne)" + "md5": "05463f04b0a0b2b0c34ac51e3f561397" }, { - "md5": "00e62591406c96c53539dc9d06979082", - "pid": "02725349X", - "note": [ + "authorized_access_point": "Saint-Romain-en-Gal (Rh\u00f4ne)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ { - "label": [ - "IFLA, Names of states, 1981" - ], - "noteType": "dataSource" + "type": "uri", + "value": "http://www.idref.fr/027252728", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119335833", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/236092358" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Saint-Romain-en-Gal" } ], - "type": "bf:Place", - "broader": [ + "note": [ { - "authorized_access_point": "Afrique du Nord" + "noteType": "dataSource", + "label": [ + "Dict. communes, 1992. GDEL. Rachet. Dict. arch\u00e9ol. de France" + ] } ], + "pid": "027252728", + "type": "bf:Place", + "md5": "62a55e5bea0fe8219b24d0b594b64a14" + }, + { + "authorized_access_point": "Vietnam", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/02725349X", + "value": "http://www.idref.fr/027255697", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119336345", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119337871", "source": "BNF" }, { - "type": "bf:Nbn", - "value": "(DE-101)040612066", - "source": "GND" - }, - { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/134783062", - "source": "VIAF" + "value": "http://viaf.org/viaf/155871049" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Tayara.tn", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Vi\u00eat_Nam" } ], - "authorized_access_point": "Tunisie" - }, - { - "md5": "14c72f6bff502f85b9b4986f864b0ef1", - "pid": "027254755", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981. GLU" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette on trouve les documents qui traitent de la Turquie dans ses fronti\u00e8res actuelles, ou de la seule Anatolie (terme qui pour les Turcs d\u00e9signe toute la Turquie d'Asie). Les documents sur l'ensemble de la Turquie avant 1922 sont sous la vedette Empire ottoman ; ceux sur l'Anatolie antique et byzantine sont sous la vedette Asie mineure" - ], - "noteType": "general" - }, - { - "label": [ - "Voir aussi la subdivision Et la Turquie aux collectivit\u00e9s, familles et personnes" - ], - "noteType": "seeReference" + "Viet-Nam : BN ACO ; IFLA, Names of states, 1981. Vi\u00eat Nam : Pays et capitales du monde / IGN, 1992. Vietnam : LCNA, 1977-1986 ; Encycl. universalis, 1984, t.18, p.820 sq. Viet Nam : Manuel de l'Unesco, 1985. Vi\u00eat-nam : GLU ; Laval RVM, 1995-08 ; GKD, 1994-05. Vi\u1ec7t Nam : GKD, 1980" + ] } ], + "pid": "027255697", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Moyen-Orient" + "authorized_access_point": "Indochine" } ], + "variant_access_point": [ + "Viet-Nam", + "Viet-Nam (R\u00e9publique socialiste)" + ], + "md5": "314680915ec3ebdf53d4cf9a1f730ad3" + }, + { + "authorized_access_point": "Vorarlberg (Autriche)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027254755", + "value": "http://www.idref.fr/027256693", "source": "IDREF" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4061163-2", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040611639", - "source": "GND" + "value": "(DE-101)040639444" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/175126574", - "source": "VIAF" + "value": "http://viaf.org/viaf/8161148574369124430000" } ], - "variant_access_point": [ - "Anadolu (Turquie)", - "Anatolie (Turquie)", - "T\u00fcrkiye" - ], - "authorized_access_point": "Turquie" - }, - { - "md5": "c0fd98e83f917a58a5852d1939aa4888", - "pid": "027255123", "note": [ { + "noteType": "dataSource", "label": [ - "Names of states / IFLA, 1981. GDEL. Encicl. italiana. LAVAL RVM, 1989-06" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Cette vedette s'emploie directement en subdivision de lieu", - "Partie de Rome constituant depuis le trait\u00e9 du Latran (11-02-1929) le territoire souverain du Saint-Si\u00e8ge" - ], - "noteType": "general" + "GDEL" + ] } ], + "pid": "027256693", "type": "bf:Place", + "md5": "9d7030933d78115043b2d59968a4fe38" + }, + { + "authorized_access_point": "Pays basque (Pyr\u00e9n\u00e9es-Atlantiques)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027255123", + "value": "http://www.idref.fr/027257525", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119337484", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119339131", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040624048", - "source": "GND" + "value": "(DE-101)040802809" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/136038551", - "source": "VIAF" + "value": "http://viaf.org/viaf/130232465" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Vatican", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Pays_basque_fran\u00e7ais" } ], - "variant_access_point": [ - "Cit\u00e9 du Vatican", - "Rome (Italie) - Cit\u00e9 du Vatican", - "Vaticano", - "Vaticano - Stato della Citt\u00e0 del" - ], - "authorized_access_point": "Vatican" - }, - { - "md5": "058dc7028c5bd75d355ad2e04a8be0e7", - "pid": "027256308", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981. SY 1996-97. Quid, 1989. Le Monde, 13-05-1992", - "Laval RVM, 1997-02" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent de la Yougoslavie de 1918 \u00e0 1992, ou de la R\u00e9publique f\u00e9d\u00e9rale de Yougoslavie r\u00e9duite \u00e0 la Serbie et au Mont\u00e9n\u00e9gro de 1992 \u00e0 2003", - "Le Royaume des Serbes, Croates et des Slov\u00e8nes, constitu\u00e9 le 01-12-1918, prend le nom de Yougoslavie le 03-10-1929 et devient une R\u00e9publique le 29-11-1945. Apr\u00e8s la s\u00e9cession de la Croatie, de la Slov\u00e9nie, de la Bosnie-Herz\u00e9govine et de la Mac\u00e9doine, est proclam\u00e9e le 27-04-1992 la R\u00e9publique f\u00e9d\u00e9rale de Yougoslavie comprenant la Serbie et le Mont\u00e9n\u00e9gro, qui devient le 04-02-2003 la Serbie-et-Mont\u00e9n\u00e9gro" - ], - "noteType": "general" + "GDEL", + "BNF" + ] }, { + "noteType": "general", "label": [ - "Voir aussi la subdivision Et la Yougoslavie aux personnes et collectivit\u00e9s" - ], - "noteType": "seeReference" + "Le Pays basque, du c\u00f4t\u00e9 fran\u00e7ais, se limite aux arrondissements de Bayonne, et pour une faible part, d'Oloron-Sainte-Marie (pays de Soule)" + ] } ], + "pid": "027257525", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Balkans - 20e si\u00e8cle" + "authorized_access_point": "Pays basque" + }, + { + "authorized_access_point": "Pyr\u00e9n\u00e9es-Atlantiques (France)" } ], - "related": [ + "narrower": [ { - "authorized_access_point": "Serbie-et-Mont\u00e9n\u00e9gro" + "authorized_access_point": "Labourd (France)" + }, + { + "authorized_access_point": "Navarre (France)" + }, + { + "authorized_access_point": "Soule, Pays de (France)" } ], + "variant_access_point": [ + "Basque, Pays (Pyr\u00e9n\u00e9es-Atlantiques)", + "Euzkadi (nord)", + "Ipar Euskal Herria", + "Iparraldea", + "Pays basque (France)", + "Pays basque (nord)" + ], + "md5": "7f6d187aab8442bfd52613d71ed1544d" + }, + { + "authorized_access_point": "Argovie (Suisse)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027256308", + "value": "http://www.idref.fr/027259641", "source": "IDREF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040289664", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/138974509", - "source": "VIAF" + "value": "(DE-101)040000222" }, { + "source": "VIAF", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/R\u00e9publique_f\u00e9d\u00e9rative_socialiste_de_Yougoslavie", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/57148570704724312118" } ], - "variant_access_point": [ - "Jugoslavija", - "Royaume des Serbes, Croates et Slov\u00e8nes", - "Serbes, Croates et Slov\u00e8nes, Royaume des", - "Yougoslavie (R\u00e9publique f\u00e9d\u00e9rale)" - ], - "authorized_access_point": "Yougoslavie" - }, - { - "md5": "d7c6d1055abb7b2fe453901904bac72e", - "pid": "027259234", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981. BN ACO (en ligne), 1995-07-06. Deutschland ; GKD, 1993-05 ; SWD, 1994-10" - ], - "noteType": "dataSource" + "GDEL. SY, 1990-91" + ] }, { + "noteType": "general", "label": [ - "Sous cette vedette, on trouve les ouvrages qui traitent de la R\u00e9publique f\u00e9d\u00e9rale d'Allemagne de 1949 \u00e0 1990. Les ouvrages qui se limitent \u00e0 la partie occidentale de l'Allemagne avant 1949 ou depuis 1990 se trouvent sous la vedette Allemagne (ouest) ; ceux qui traitent de l'Allemagne d'avant 1949, ou de l'Allemagne depuis l'unification (3 octobre 1990), dont le nom officiel est R\u00e9publique f\u00e9d\u00e9rale d'Allemagne, se trouvent sous la vedette Allemagne" - ], - "noteType": "general" + "Canton suisse" + ] } ], + "pid": "027259641", "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Suisse - Cantons" + } + ], + "variant_access_point": [ + "Aargau (Suisse)" + ], + "md5": "a4ada79d6c81590a7ac00007dbefb92c" + }, + { + "authorized_access_point": "Pays basque", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027259234", + "value": "http://www.idref.fr/027259811", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11934033d", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11934078c", "source": "BNF" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4011889-7", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040118894", - "source": "GND" + "value": "(DE-101)042569087" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/3765159035196701380009", - "source": "VIAF" + "value": "http://viaf.org/viaf/173145229" } ], - "variant_access_point": [ - "Allemagne (RFA)", - "Allemagne de l'Ouest (1949-1990)", - "Allemagne f\u00e9d\u00e9rale (1949-1990)", - "BRD", - "Bundesrepublik Deutschland (1949-1990)", - "Deutschland (Bundesrepublik ; 1949-1990)", - "R\u00e9publique f\u00e9d\u00e9rale d'Allemagne (1949-1990)", - "RFA" - ], - "authorized_access_point": "Allemagne (R\u00e9publique f\u00e9d\u00e9rale)" - }, - { - "md5": "1d4e35afa607c819d598a7e763213972", - "pid": "027259285", "note": [ { + "noteType": "dataSource", "label": [ - "GLU", - "Laval RVM, 1995-08. Alpen ; SWD, 1995-04" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette, on trouve les ouvrages qui traitent du massif des Alpes ou de l'ensemble de la r\u00e9gion alpine (massif et r\u00e9gions p\u00e9riph\u00e9riques)" - ], - "noteType": "general" + "Basque-English dict. / G. Aulestia, 1989" + ] }, { + "noteType": "general", "label": [ - "Voir aussi aux diff\u00e9rentes parties des Alpes, par ex. Alpes (Autriche), Alpes (ouest)" - ], - "noteType": "seeReference" + "Les termes Euskalerri, Euskal herri, designent le Pays basque dans son ensemble, en tant qu'entit\u00e9 historico-culturelle (litt\u00e9ralement :\"pays de la langue basque\"). Le terme Euzkadi s'applique soit au Pays basque, entit\u00e9 politique autonome espagnole, soit \u00e0 l'ensemble du Pays basque (suppos\u00e9 r\u00e9uni)" + ] } ], + "pid": "027259811", "type": "bf:Place", - "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Alpes (Allemagne)" - }, - { - "authorized_access_point": "Alpes (Autriche)" + "authorized_access_point": "Pays basque (Espagne)" }, { - "authorized_access_point": "Alpes (Italie)" - }, + "authorized_access_point": "Pays basque (Pyr\u00e9n\u00e9es-Atlantiques)" + } + ], + "variant_access_point": [ + "Basque, Pays", + "Euskal herri", + "Euskalerri", + "Euzkadi" + ], + "md5": "6257537d6cbe39abf3eb0cab72bc5b11" + }, + { + "authorized_access_point": "Brandebourg (Allemagne ; \u00c9tat)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ { - "authorized_access_point": "Alpes (France)" + "type": "uri", + "value": "http://www.idref.fr/027260011", + "source": "IDREF" }, { - "authorized_access_point": "Alpes (Slov\u00e9nie)" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119340938", + "source": "BNF" }, { - "authorized_access_point": "Alpes (Suisse)" + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040079554" }, { - "authorized_access_point": "Alpes (Liechtenstein)" - }, + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/246066379" + } + ], + "note": [ { - "authorized_access_point": "Alpes (Monaco)" + "noteType": "dataSource", + "label": [ + "GDEL", + "Brandenburg (Havel, Staat) ; GKD, 1980", + "Brandenburg (Germany and Poland) ; LCSH, 1990-06" + ] }, { - "authorized_access_point": "Alpes (Nord)" - }, + "noteType": "general", + "label": [ + "Margraviat, puis \u00c9lectorat du Saint-Empire, province prussienne \u00e0 partir de 1701, le Brandebourg est aujourd'hui un Land allemand. - Une partie de l'ancien Brandebourg, situ\u00e9e \u00e0 l'est de l'Oder, est aujourd'hui en Pologne" + ] + } + ], + "pid": "027260011", + "type": "bf:Place", + "narrower": [ { - "authorized_access_point": "Alpes (centre)" + "authorized_access_point": "Nowa Marchia (Pologne)" }, { - "authorized_access_point": "Alpes (est)" + "authorized_access_point": "Basse-Lusace (Allemagne)" }, { - "authorized_access_point": "Alpes (ouest)" - }, + "authorized_access_point": "Templin (Allemagne)" + } + ], + "broader": [ { - "authorized_access_point": "Alpes (Sud)" + "authorized_access_point": "Allemagne - L\u00e4nder" } ], + "relation_pid": { + "value": "144260069", + "type": "redirect_from" + }, + "variant_access_point": [ + "Brandebourg (Allemagne ; Land)", + "Brandebourg (Allemagne ; province)", + "Brandebourg (\u00c9lectorat)", + "Brandebourg (Margraviat)", + "Brandenburg (Allemagne ; \u00c9tat)" + ], + "md5": "bbea2b114628b4d372b8d5b1ff6e1505" + }, + { + "authorized_access_point": "Br\u00e9sil (nord-est)", + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027259285", + "value": "http://www.idref.fr/02726002X", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11934036f", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11934094m", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040013286", - "source": "GND" - }, - { - "type": "uri", - "value": "http://d-nb.info/gnd/4001328-5", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/148144928888154441142", - "source": "VIAF" + "value": "(DE-101)040899535" }, { + "source": "VIAF", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Alpes", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/155483347" } ], - "variant_access_point": [ - "Alpen", - "Alpes (cha\u00eene)", - "Alpes (massif)", - "Alpes (r\u00e9gion)", - "Alpi", - "Alpok", - "Alpin, Arc", - "Arc alpin", - "Europe alpine" - ], - "authorized_access_point": "Alpes" - }, - { - "md5": "ffb9fd46ed565d0cac1defbe67d08b0f", - "pid": "027259641", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL. SY, 1990-91" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Canton suisse" - ], - "noteType": "general" + "Nordeste ; GLU", + "Nordeste (Br\u00e9sil) ; Laval RVM, 1996-02" + ] } ], + "pid": "02726002X", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Suisse - Cantons" + "authorized_access_point": "Br\u00e9sil" } ], + "variant_access_point": [ + "Nordeste (Br\u00e9sil)", + "Br\u00e9sil (Nordeste)", + "Nordeste (Brasil)", + "Brasil (Nordeste)" + ], + "md5": "2c7165f6ee3c600d494345a237231757" + }, + { + "authorized_access_point": "Pays de l'Union europ\u00e9enne", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027259641", + "value": "http://www.idref.fr/027260461", "source": "IDREF" }, { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11934129f", + "source": "BNF" + }, + { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040000222", - "source": "GND" + "value": "(DE-101)040583929" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/57148570704724312118", - "source": "VIAF" + "value": "http://viaf.org/viaf/170452307" } ], - "variant_access_point": [ - "Aargau (Suisse)" - ], - "authorized_access_point": "Argovie (Suisse)" - }, - { - "md5": "0d4946993015ef868846a3275ede7411", - "pid": "027259978", "note": [ { + "noteType": "general", "label": [ - "GDEL" - ], - "noteType": "dataSource" + "Sous cette vedette, on trouve les ouvrages sur les pays membres de la Communaut\u00e9 (avant fin 1993) comme de l'Union europ\u00e9enne, consid\u00e9r\u00e9s comme une entit\u00e9 g\u00e9ographique. De ce fait, cette vedette peut \u00eatre employ\u00e9e en subdivision, ou \u00eatre suivie des subdivisions propres aux noms de lieu. Les ouvrages sur l'Union europ\u00e9enne en tant qu'organisation internationale se trouvent sous la vedette Union europ\u00e9enne, ou sous la vedette de collectivit\u00e9 appropri\u00e9e, notamment Communaut\u00e9 europ\u00e9enne pour les ouvrages portant sur la p\u00e9riode ant\u00e9rieure \u00e0 novembre 1993", + "1-1-1958 : Allemagne (RFA), Belgique, France, Italie, Luxembourg, Pays-Bas. 1-1-1973 : Danemark, Grande-Bretagne, Irlande. 1-1-1981 : Gr\u00e8ce. 1-1-1986 : Espagne, Portugal. 1-1-1995 : Autriche, Finlande, Su\u00e8de. 1-5-2004 : Malte, Chypre, Slov\u00e9nie, Estonie, Lettonie, Lituanie, Pologne, R\u00e9publique tch\u00e8que, Slovaquie, Hongrie. 1-1-2007 : Bulgarie, Roumanie. Le Groenland (pays associ\u00e9 au Danemark) s'est retir\u00e9 en 1982 (r\u00e9f\u00e9rendum du 23-02) ; la Norv\u00e8ge a refus\u00e9 son adh\u00e9sion en 1972, puis en 1994 (r\u00e9f\u00e9rendum du 28-11)" + ] } ], + "pid": "027260461", "type": "bf:Place", "broader": [ { - "authorized_access_point": "France (centre)" + "authorized_access_point": "Europe" + }, + { + "authorized_access_point": "Europe de l'Ouest" + } + ], + "variant_access_point": [ + "CEE, Pays de la", + "Communaut\u00e9 europ\u00e9enne, Pays de la", + "\u00c9tats de l'Union europ\u00e9enne", + "Europe de Maastricht", + "Pays de l'UE", + "Pays de la CEE", + "Pays de la Communaut\u00e9 \u00e9conomique europ\u00e9enne", + "Pays de la Communaut\u00e9 europ\u00e9enne", + "Pays des Communaut\u00e9s europ\u00e9ennes", + "Pays du March\u00e9 commun europ\u00e9en", + "Union europ\u00e9enne, Pays de l'" + ], + "md5": "e14eac4f7fa85924712cc46a91532284" + }, + { + "authorized_access_point": "Constance (Allemagne)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027260607", + "source": "IDREF" }, { - "authorized_access_point": "France (centre-est)" + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040322157" }, { - "authorized_access_point": "France (est)" + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/4526148574271724430007" }, { - "authorized_access_point": "France - R\u00e9gions" + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Constance_(Allemagne)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] } ], + "pid": "027260607", + "type": "bf:Place", + "variant_access_point": [ + "Konstanz (Allemagne)" + ], + "md5": "2ff9621678e711f91f7bf79855673925" + }, + { + "authorized_access_point": "\u00c9cosse (GB)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027259978", + "value": "http://www.idref.fr/027261050", "source": "IDREF" }, { "type": "uri", - "value": "http://d-nb.info/gnd/4129468-3", - "source": "GND" + "value": "http://catalogue.bnf.fr/ark:/12148/cb119341659", + "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)041294688", - "source": "GND" + "value": "(DE-101)04053233X" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/149443835", - "source": "VIAF" + "value": "http://viaf.org/viaf/148914377" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Bourgogne_(ancienne_r\u00e9gion_administrative)", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/\u00c9cosse" } ], - "relation_pid": { - "type": "redirect_from", - "value": "110360524" - }, - "variant_access_point": [ - "Bourgogne", - "Bourgogne (duch\u00e9)" - ], - "authorized_access_point": "Bourgogne (France)" - }, - { - "md5": "9381fc04fe5a70e395a12dc8381c35f2", - "pid": "027262162", - "note": [ + "pid": "027261050", + "type": "bf:Place", + "narrower": [ { - "label": [ - "IFLA, Names of states, 1981. GDEL. SY 1990/91" - ], - "noteType": "dataSource" + "authorized_access_point": "Lowlands (GB)" }, { - "label": [ - "Le Japon est divis\u00e9 en 9 r\u00e9gions, dont 5 sont sur Honsh\u016b ; les 4 autres sont Hokkaid\u014d, Shikoku, Ky\u016bsh\u016b et Okinawa" - ], - "noteType": "general" + "authorized_access_point": "Strathclyde (GB ; r\u00e9gion)" } ], - "type": "bf:Place", "broader": [ { - "authorized_access_point": "Asie du Nord-Est" + "authorized_access_point": "Grande-Bretagne" + }, + { + "authorized_access_point": "Pays celtiques" } ], + "variant_access_point": [ + "Scotland", + "\u00c9cosse", + "Grande-Bretagne (nord)" + ], + "md5": "348e646c23a82d32317d564cd8dfc640" + }, + { + "authorized_access_point": "\u00c9tats-Unis (sud)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027262162", + "value": "http://www.idref.fr/027261204", "source": "IDREF" }, { - "type": "bf:Nbn", - "value": "(DE-101)040284956", - "source": "GND" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11934175m", + "source": "BNF" }, { - "type": "uri", - "value": "https://d-nb.info/gnd/4028495-5", - "source": "GND" + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040786749" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/1165148574381824430006", - "source": "VIAF" + "value": "http://viaf.org/viaf/172385572" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Japon_(homonymie)", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Sud_des_\u00c9tats-Unis" } ], - "variant_access_point": [ - "Nihon", - "Nippon", - "\u042f\u043f\u043e\u043d\u0438\u044f" - ], - "authorized_access_point": "Japon" - }, - { - "md5": "7e435b8a780c3364d23832330ff0a1df", - "pid": "027262952", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981" - ], - "noteType": "dataSource" + "\u00c9tats-Unis (Sud) ; Laval RVM, 1994-02" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette on trouve les ouvrages qui traitent des 11 anciens \u00c9tats conf\u00e9d\u00e9r\u00e9s (Alabama, Arkansas, Caroline du N., Caroline du S., Floride, G\u00e9orgie, Louisiane, Mississippi, Tennessee, Texas et Virginie), ou des seuls \u00c9tats situ\u00e9s \u00e0 l'est du Mississippi" + ] } ], + "pid": "027261204", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Balkans" + "authorized_access_point": "\u00c9tats du Sun Belt (\u00c9tats-Unis)" } ], + "variant_access_point": [ + "\u00c9tats du Sud (\u00c9tats-Unis)", + "\u00c9tats-Unis (sud-est)", + "Southern States (\u00c9tats-Unis)", + "Sud, \u00c9tats du (\u00c9tats-Unis)", + "Vieux Sud (\u00c9tats-Unis)" + ], + "md5": "d130faf5472d6091c578b4786a9ac167" + }, + { + "authorized_access_point": "Foix (Comt\u00e9)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027262952", + "value": "http://www.idref.fr/027261336", "source": "IDREF" }, { + "source": "VIAF", "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11934311x", - "source": "BNF" - }, - { - "type": "uri", - "value": "http://d-nb.info/gnd/4050939-4", - "source": "GND" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)040509397", - "source": "GND" + "value": "http://viaf.org/viaf/153634112" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "http://viaf.org/viaf/153149185", - "source": "VIAF" + "value": "https://fr.wikipedia.org/wiki/Comt\u00e9_de_Foix" } ], - "variant_access_point": [ - "Rom\u00e2nia", - "\u0420\u0443\u043c\u044b\u043d\u0438\u044f", - "\u0420\u0443\u043c\u0443\u043d\u0456\u044f" - ], - "authorized_access_point": "Roumanie" - }, - { - "md5": "8678b83bbe152292a185a5f9d09d28f8", - "pid": "027263061", "note": [ { + "noteType": "dataSource", "label": [ - "GLU. Mourre. Brockhaus, 19. Aufl.", - "Laval RVM, 1996-02" - ], - "noteType": "dataSource" + "GDEL" + ] } ], + "pid": "027261336", "type": "bf:Place", + "md5": "e7717359245f2bc055e757b700ac1ce1" + }, + { + "authorized_access_point": "Gabon", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027263061", + "value": "http://www.idref.fr/027261417", "source": "IDREF" }, { "type": "uri", - "value": "http://d-nb.info/gnd/2035457-5", - "source": "GND" + "value": "http://catalogue.bnf.fr/ark:/12148/cb119341957", + "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)004911474", - "source": "GND" + "value": "(DE-101)040190528" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/5228148574274624430002", - "source": "VIAF" + "value": "http://viaf.org/viaf/6762148574322124430000" } ], - "variant_access_point": [ - "Empire romain germanique, Saint", - "Heiliges R\u00f6misches Reich Deutscher Nation", - "Sacrum Romanum Imperium Nationis Germanicae" - ], - "authorized_access_point": "Saint Empire romain germanique" - }, - { - "md5": "0a5471118ebedb167ca1b6979e940270", - "pid": "027263487", "note": [ { + "noteType": "dataSource", "label": [ - "GLU" - ], - "noteType": "dataSource" - }, - { - "label": [ - "L'Amazonie correspond aux bassins moyen et inf\u00e9rieur de l'Amazone" - ], - "noteType": "general" + "Names of states / IFLA, 1981. LCSH, 1985" + ] } ], + "pid": "027261417", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Am\u00e9rique du Sud" + "authorized_access_point": "Afrique centrale" } ], + "md5": "d6d437690d19dd1f01bd9ed59dc226a4" + }, + { + "authorized_access_point": "Grenoble (Is\u00e8re)", "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "912", + "name": "G\u00e9ographie de la France" + } + ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027263487", + "value": "http://www.idref.fr/027261530", "source": "IDREF" }, { - "type": "bf:Nbn", - "value": "(DE-101)040016269", - "source": "GND" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15238650z", + "source": "BNF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119342062", + "source": "BNF" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/173418487", - "source": "VIAF" + "value": "http://viaf.org/viaf/170334907" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Amazonie_(Ngong)", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Grenoble" } ], - "authorized_access_point": "Amazonie" - }, - { - "md5": "4af3da21a61f3529718995ca318d8c43", - "pid": "027263495", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL" - ], - "noteType": "dataSource" + "Dict. communes, 1992. GLU" + ] + }, + { + "noteType": "general", + "label": [ + "Coordonn\u00e9es g\u00e9ographiques : E 5\u00b043' / N 45\u00b011", + "Gentil\u00e9 : Grenoblois" + ] } ], + "pid": "027261530", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Hispanie ult\u00e9rieure" - }, - { - "authorized_access_point": "Espagne - Communaut\u00e9s autonomes" + "authorized_access_point": "Grenoble (Is\u00e8re ; r\u00e9gion)" } ], "related": [ { - "authorized_access_point": "Al-Andalus" + "authorized_access_point": "Grenoble (Is\u00e8re ; agglom\u00e9ration)" } ], + "variant_access_point": [ + "Cularo (ville ancienne, 43 av. JC)", + "Gratianopolis (ville ancienne, 377)", + "Grelibre (1793)", + "Grenoble" + ], + "md5": "ad63eb1a996043dcfa6135742d967e07" + }, + { + "authorized_access_point": "Isra\u00ebl", "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "915", + "name": "G\u00e9ographie du reste du monde" + } + ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027263495", + "value": "http://www.idref.fr/027262111", "source": "IDREF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040019098", - "source": "GND" + "value": "(DE-101)040278085" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/132461455", - "source": "VIAF" + "value": "http://viaf.org/viaf/5668155226761984490000" } ], - "variant_access_point": [ - "Andaluc\u00eda (Espagne)", - "Baetica", - "B\u00e9tique", - "Tarsis" - ], - "authorized_access_point": "Andalousie (Espagne)" - }, - { - "md5": "2716c5701adfcb5763c00877aacdd1a6", - "pid": "02726369X", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981 ; Pays et capitales du monde / IGN, 1986" - ], - "noteType": "dataSource" + "Names of states / IFLA, 1981. LCNA, 1985", + "Grand Larousse universel", + "Robert encyclop\u00e9dique des noms propres 2008", + "Encycl. universalis - http://www.universalis-edu.com (2013-01-11)", + "L'\u00c9tat d'Isra\u00ebl / A. Chouraqui, 1998" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette, on trouve les documents sur l'\u00c9tat d'Isra\u00ebl proclam\u00e9 le 14 mai 1948 et/ou sur Isra\u00ebl et les territoires occup\u00e9s. Les documents sur l'ancien royaume d'Isra\u00ebl se trouvent sous Isra\u00ebl (Royaume)", + "Pour la p\u00e9riode ant\u00e9rieure \u00e0 1948, ne pas employer \"Isra\u00ebl\", mais \"Palestine\", sauf pour la construction indirecte, par ex. : Architecture -- Palestine -- 1900-1945 ; Architecture -- Isra\u00ebl -- Ha\u00effa (Isra\u00ebl) -- 1900-1945" + ] }, { + "noteType": "seeReference", "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent de l'\u00eele d'Irlande et/ou de la R\u00e9publique d'Irlande. Les ouvrages qui traitent de la partie de l'Ulster demeur\u00e9e britannique en 1921 se trouvent sous Irlande du Nord" - ], - "noteType": "general" + "Voir aussi la subdivision Et Isra\u00ebl [sans subd. g\u00e9ogr.] aux collectivit\u00e9s et aux personnes", + "Voir aussi la subdivision Opinion publique isra\u00e9lienne [sans subd. g\u00e9ogr.] aux guerres et aux lieux" + ] } ], + "pid": "027262111", "type": "bf:Place", - "broader": [ + "related": [ { - "authorized_access_point": "Britanniques, \u00celes" + "authorized_access_point": "Proche-Orient" }, { - "authorized_access_point": "Pays de l'Union europ\u00e9enne" - }, - { - "authorized_access_point": "Pays celtiques" + "authorized_access_point": "Palestine" } ], + "variant_access_point": [ + "Yi\u015bra'el" + ], + "md5": "22ef0cbfaef2f8bb371944cbeab62b30" + }, + { + "authorized_access_point": "Saint-P\u00e9tersbourg (Russie)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/02726369X", + "value": "http://www.idref.fr/027262464", "source": "IDREF" }, { "type": "uri", - "value": "http://d-nb.info/gnd/4027667-3", - "source": "GND" + "value": "http://catalogue.bnf.fr/ark:/12148/cb119342736", + "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040276678", - "source": "GND" + "value": "(DE-101)042670268" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/139487820" } ], - "variant_access_point": [ - "\u00c9ire", - "Ireland" - ], - "authorized_access_point": "Irlande" - }, - { - "md5": "1c6b7130b66849b21f1fed106c597327", - "pid": "027263711", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981. GLU, 1991", - "Laval RVM, 1997-02. Marr\u0101ku\u0161 ; GKD, 1994-05" - ], - "noteType": "dataSource" + "GDEL. Le Monde, 8/9 sept. 1991" + ] }, { + "noteType": "general", "label": [ - "Voir aussi la subdivision Et le Maroc aux personnes et collectivit\u00e9s" - ], - "noteType": "seeReference" + "Fond\u00e9e en 1703, Saint-P\u00e9tersbourg devient P\u00e9trograd en 1914, puis L\u00e9ningrad en 1924 et redevient Saint-P\u00e9tersbourg en 1991 (referendum du 12-6, d\u00e9cision du Soviet supr\u00eame de Russie du 6-9)" + ] } ], + "pid": "027262464", "type": "bf:Place", - "broader": [ - { - "authorized_access_point": "Afrique du Nord" - } + "variant_access_point": [ + "Saint P\u00e9tersbourg (Russie)", + "L\u00e9ningrad (URSS)", + "P\u00e9trograd (Russie)", + "Saint Petersburg", + "St Petersburg", + "\u0421\u0430\u043d\u043a\u0442-\u041f\u0435\u0442\u0435\u0440\u0431\u0443\u0301\u0440\u0433" ], + "md5": "b4a0956b358057f3406cf9c8a0ed7370" + }, + { + "authorized_access_point": "Libye", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027263711", + "value": "http://www.idref.fr/027262545", "source": "IDREF" }, { "type": "uri", - "value": "http://d-nb.info/gnd/4037680-1", - "source": "GND" + "value": "http://catalogue.bnf.fr/ark:/12148/cb15323238r", + "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)04037680X", - "source": "GND" + "value": "(DE-101)040355896" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/6606148574280324430001", - "source": "VIAF" - }, - { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Mar\u00f3c", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/2704148574305224430002" } ], - "variant_access_point": [ - "Al-Maghrib al- Aq\u1e63\u0101", - "Al Maghreb Al Aqsa", - "Ch\u00e9rifien, Empire", - "Empire ch\u00e9rifien", - "Marruecos", - "\u041c\u0430\u0440\u043e\u043a\u043a\u043e", - "Marokko" - ], - "authorized_access_point": "Maroc" - }, - { - "md5": "c012d167b01dbb8d24fd910d09e1d6f2", - "pid": "027263762", "note": [ { + "noteType": "dataSource", "label": [ - "GLU. Laval RVM, 2000-01" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Voir aussi la subdivision Et la Norv\u00e8ge aux collectivit\u00e9s et aux personnes" - ], - "noteType": "seeReference" + "IFLA, Names of states, 1981. GDEL" + ] } ], + "pid": "027262545", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Scandinavie" + "authorized_access_point": "Afrique du Nord" } ], + "variant_access_point": [ + "Jamahiriya arabe libyenne", + "L\u012bbiy\u0101" + ], + "md5": "07f72eabe9ea3a484248d7194c152514" + }, + { + "authorized_access_point": "Lorraine (France)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027263762", + "value": "http://www.idref.fr/027262685", "source": "IDREF" }, { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119342914", + "source": "BNF" + }, + { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040754715", - "source": "GND" + "value": "(DE-101)040363775" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/727148574256024430009", - "source": "VIAF" + "value": "http://viaf.org/viaf/144260070" } ], - "variant_access_point": [ - "Norge", - "Noreg" - ], - "authorized_access_point": "Norv\u00e8ge" - }, - { - "md5": "e312048136c7178bd24bd7c2eafd3c02", - "pid": "02726453X", "note": [ { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + }, + { + "noteType": "general", "label": [ - "Laval RVM, 1983. GDEL" - ], - "noteType": "dataSource" + "Sous cette vedette on trouve les ouvrages qui traitent du duch\u00e9 puis province de Lorraine et/ou de l'actuelle r\u00e9gion de Lorraine" + ] } ], + "pid": "027262685", "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "France (est)" + }, + { + "authorized_access_point": "France (nord-est)" + }, + { + "authorized_access_point": "Lotharingie" + }, + { + "authorized_access_point": "France - R\u00e9gions" + } + ], + "variant_access_point": [ + "Lorraine", + "Lorraine (Duch\u00e9)", + "Lothringen (France)" + ], + "md5": "8b4a7d3f6fc2e9440a84c2a55628cdea" + }, + { + "authorized_access_point": "Congo (R\u00e9publique d\u00e9mocratique)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/02726453X", + "value": "http://www.idref.fr/027263053", "source": "IDREF" }, { "type": "uri", - "value": "https://d-nb.info/gnd/4020137-5", - "source": "GND" + "value": "http://catalogue.bnf.fr/ark:/12148/cb11934318b", + "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040201376", - "source": "GND" + "value": "(DE-101)04067357X" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/157214194", - "source": "VIAF" + "value": "http://viaf.org/viaf/5843158188242320260008" } ], - "variant_access_point": [ - "Gen\u00e8ve", - "Genf (Suisse)", - "Ginevra (Suisse)", - "Geneva" - ], - "authorized_access_point": "Gen\u00e8ve (Gen\u00e8ve, Suisse)" - }, - { - "md5": "001207f0e1bd5b6a2ff9e43b853ffeec", - "pid": "027264580", "note": [ { + "noteType": "dataSource", + "label": [ + "GLU, 1991. Mourre, 1986", + "Zai\u034f\u0308re ; Laval RVM, 1997-02" + ] + }, + { + "noteType": "general", "label": [ - "Encycl. universalis, 1989, 19, 154-159", - "Prusse (Allemagne) ; Laval RVM, 1996-02", - "Preussen , puis Preussen , puis Preussen ; SWD, 1995-04" - ], - "noteType": "dataSource" + "La R\u00e9publique d\u00e9mocratique du Congo, ind\u00e9pendante le 30 juin 1960, a pris le nom de Za\u00efre d'octobre 1971 \u00e0 mai 1997" + ] }, { + "noteType": "seeReference", "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent de la Prusse depuis ses origines (les anciens Prussiens ou Borusses) jusqu'\u00e0 sa disparition en tant qu'\u00c9tat en 1947" - ], - "noteType": "general" + "Voir aussi la subdivision Et le Congo (R\u00e9publique d\u00e9mocratique) aux personnes et collectivit\u00e9s" + ] } ], + "pid": "027263053", "type": "bf:Place", - "related": [ + "broader": [ { - "authorized_access_point": "Prusse - Histoire" + "authorized_access_point": "Afrique centrale" } ], - "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Prusse-Occidentale (Pologne)" - }, - { - "authorized_access_point": "Prusse-Orientale" - } + "variant_access_point": [ + "Congo", + "Congo (\u00c9tat ind\u00e9pendant ; 1885-1908)", + "Congo belge", + "Congo-Kinshasa", + "Congo-L\u00e9opoldville", + "\u00c9tat ind\u00e9pendant du Congo (1885-1908)", + "Za\u00efre" ], + "md5": "250068b2fbe31c0efe6542a38522ab47" + }, + { + "authorized_access_point": "Basse-Saxe (Allemagne)", + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027264580", + "value": "http://www.idref.fr/027263118", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119344356", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12031086v", "source": "BNF" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4047194-9", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040471942", - "source": "GND" + "value": "(DE-101)040422267" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/266665986", - "source": "VIAF" + "value": "http://viaf.org/viaf/4086154387419430970003" }, { + "source": "VIAF", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Prusse", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/14144647646568895784" } ], - "variant_access_point": [ - "Preussen", - "Prusse (Duch\u00e9)", - "Prusse (Royaume)" - ], - "authorized_access_point": "Prusse" - }, - { - "md5": "1d04da0252db2de8b1f65027d9f82363", - "pid": "027266060", "note": [ { + "noteType": "dataSource", "label": [ - "Laval RVM, 1983" - ], - "noteType": "dataSource" + "GDEL" + ] } ], + "pid": "027263118", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Arctique" - }, - { - "authorized_access_point": "R\u00e9gions polaires" + "authorized_access_point": "Allemagne - L\u00e4nder" } ], + "relation_pid": { + "value": "028483960", + "type": "redirect_from" + }, + "variant_access_point": [ + "Basse-Saxe", + "Niedersachsen (Allemagne)", + "Saxe, Basse- (Allemagne)" + ], + "md5": "2f54094d63e2e0bfc030327c441d2821" + }, + { + "authorized_access_point": "Serbie", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027266060", + "value": "http://www.idref.fr/027263193", "source": "IDREF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)041179145", - "source": "GND" + "value": "(DE-101)040545989" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/316891260", - "source": "VIAF" + "value": "http://viaf.org/viaf/1427148574258824430000" } ], - "authorized_access_point": "P\u00f4le Nord" - }, - { - "md5": "68ae9405a6c82333df0cce16f7a09c25", - "pid": "027266257", "note": [ { + "noteType": "dataSource", "label": [ - "Moreau", - "Laval RVM, 2001-01" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Ancienne province de France, la Provence historique a form\u00e9 en 1790 les trois d\u00e9partements des Bouches-du-Rh\u00f4ne, du Var et des Basses-Alpes (Alpes-de-Haute-Provence), auxquels s'est rajout\u00e9 le d\u00e9partement du Vaucluse, form\u00e9 en 1793 par Avignon et le Comtat Venaissin. La Provence g\u00e9ographique, plus vaste que l'ancienne province, est une r\u00e9gion naturelle d\u00e9limit\u00e9e par le Rh\u00f4ne, la Dr\u00f4me, la vall\u00e9e de l'Ubaye, les Alpes maritimes et la mer" - ], - "noteType": "general" + "Grand Larousse universel", + "Dict. univ. d'histoire / M. Mourre, 1996", + "Le Monde, 2006-06-15" + ] }, { + "noteType": "general", "label": [ - "Voir aussi la subdivision Et la Provence aux collectivit\u00e9s, familles et personnes" - ], - "noteType": "seeReference" + "Royaume incorpor\u00e9 \u00e0 la Yougoslavie en 1918, la Serbie constitue l'une des r\u00e9publiques f\u00e9d\u00e9r\u00e9es de la Yougoslavie (1946), puis de la Serbie-et-Mont\u00e9n\u00e9gro (2003) ; elle est ind\u00e9pendante depuis le 5 juin 2006" + ] } ], + "pid": "027263193", "type": "bf:Place", - "bnf_type": "sujet Rameau", - "identifiedBy": [ - { - "type": "uri", - "value": "http://www.idref.fr/027266257", - "source": "IDREF" - }, + "narrower": [ { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11934548t", - "source": "BNF" + "authorized_access_point": "Kosovo (Serbie)" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4047564-5", - "source": "GND" + "authorized_access_point": "Sand\u017eak (Serbie, Mont\u00e9n\u00e9gro ; r\u00e9gion)" }, { - "type": "bf:Nbn", - "value": "(DE-101)040475646", - "source": "GND" - }, + "authorized_access_point": "Vo\u00efvodine (Serbie)" + } + ], + "related": [ { - "type": "uri", - "value": "http://viaf.org/viaf/147742069", - "source": "VIAF" - }, + "authorized_access_point": "Serbie-et-Mont\u00e9n\u00e9gro" + } + ], + "broader": [ { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Provence", - "source": "WIKIPEDIA" + "authorized_access_point": "Balkans" } ], "variant_access_point": [ - "Provence", - "Provence (Comt\u00e9)" + "Serbie (Serbie-et-Mont\u00e9n\u00e9gro)", + "\u0421\u0440\u0431\u0438\u0458\u0430", + "Srbija" ], - "authorized_access_point": "Provence (France)" + "md5": "96fd08dcf6c6d4a42945859d84eb246c" }, { - "md5": "35c1089c3e81bf17c11760848dcd59bc", - "pid": "027267830", - "note": [ + "authorized_access_point": "Andalousie (Espagne)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ { - "label": [ - "Names of states / IFLA, 1981. SY, 1986/1987. GDEL" - ], - "noteType": "dataSource" + "type": "uri", + "value": "http://www.idref.fr/027263495", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040019098" }, { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/132461455" + } + ], + "note": [ + { + "noteType": "dataSource", "label": [ - "Cette vedette s'emploie directement en subdivision de lieu", - "R\u00e9gion autonome du Danemark depuis le 1-5-1979" - ], - "noteType": "general" + "GDEL" + ] } ], + "pid": "027263495", "type": "bf:Place", + "related": [ + { + "authorized_access_point": "Al-Andalus" + } + ], "broader": [ { - "authorized_access_point": "Am\u00e9rique du Nord" + "authorized_access_point": "Hispanie ult\u00e9rieure" }, { - "authorized_access_point": "Arctique" + "authorized_access_point": "Espagne - Communaut\u00e9s autonomes" } ], + "variant_access_point": [ + "Andaluc\u00eda (Espagne)", + "Baetica", + "B\u00e9tique", + "Tarsis" + ], + "md5": "6e4323d21536a718f33e24c8d7c8ba17" + }, + { + "authorized_access_point": "Nord (France)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027267830", + "value": "http://www.idref.fr/027263746", "source": "IDREF" }, { - "type": "bf:Nbn", - "value": "(DE-101)04022113X", - "source": "GND" + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/1075148574257424430006" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "http://viaf.org/viaf/4459148574312624430000", - "source": "VIAF" + "value": "https://fr.wikipedia.org/wiki/Nord_(d\u00e9partement_fran\u00e7ais)" } ], - "variant_access_point": [ - "Groenland (Danemark ; \u00eele)", - "Greenland", - "Gr\u00f8nland", - "Kalaallit Nunaat" - ], - "authorized_access_point": "Groenland" - }, - { - "md5": "88e39cf171715175857435682a1c859c", - "pid": "027267873", "note": [ { + "noteType": "dataSource", "label": [ - "BA, 1989" - ], - "noteType": "dataSource" + "GDEL" + ] }, { + "noteType": "general", "label": [ - "Emploi direct en subdivision : [sujet] -- Guyane" - ], - "noteType": "general" + "D\u00e9partement fran\u00e7ais (59)" + ] } ], + "pid": "027263746", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Guyanes" - }, - { - "authorized_access_point": "France - D\u00e9partements et r\u00e9gions d'outre-mer" + "authorized_access_point": "Nord-Pas-de-Calais (France)" } ], + "variant_access_point": [ + "Nord" + ], + "md5": "d8cd136027605adfddc3d7fb54315664" + }, + { + "authorized_access_point": "Norv\u00e8ge", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027267873", + "value": "http://www.idref.fr/027263762", "source": "IDREF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040181847", - "source": "GND" + "value": "(DE-101)040754715" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/173457961", - "source": "VIAF" + "value": "http://viaf.org/viaf/727148574256024430009" } ], - "relation_pid": { - "type": "redirect_from", - "value": "087992019" - }, - "variant_access_point": [ - "Guyane fran\u00e7aise" - ], - "authorized_access_point": "Guyane" - }, - { - "md5": "0c45eacf669606f578e0d0846fa785cb", - "pid": "027275922", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL. SY 1990/91" - ], - "noteType": "dataSource" + "GLU. Laval RVM, 2000-01" + ] }, { + "noteType": "seeReference", "label": [ - "Canton issu de la scission (1833) de l'ancien canton de B\u00e2le en B\u00e2le-Campagne et B\u00e2le-Ville" - ], - "noteType": "general" + "Voir aussi la subdivision Et la Norv\u00e8ge aux collectivit\u00e9s et aux personnes" + ] } ], + "pid": "027263762", "type": "bf:Place", "broader": [ { - "authorized_access_point": "B\u00e2le (Suisse ; canton)" - }, - { - "authorized_access_point": "Suisse - Cantons" + "authorized_access_point": "Scandinavie" } ], + "variant_access_point": [ + "Norge", + "Noreg" + ], + "md5": "5257ae1d9c69743c93466d3fca2a0db3" + }, + { + "authorized_access_point": "La Rioja (Espagne ; Communaut\u00e9 autonome)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027275922", + "value": "http://www.idref.fr/027263789", "source": "IDREF" }, { - "type": "bf:Nbn", - "value": "(DE-101)1077172354", - "source": "GND" - }, - { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/132058475", - "source": "VIAF" + "value": "http://viaf.org/viaf/173199850" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Canton_de_B\u00e2le-Ville", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/La_Rioja" } ], - "relation_pid": { - "type": "redirect_from", - "value": "060557001" - }, - "variant_access_point": [ - "Basel Stadt (Suisse)" - ], - "authorized_access_point": "B\u00e2le-Ville (Suisse)" - }, - { - "md5": "74df160ee8b49d85dd243fd2973b35cd", - "pid": "027283518", "note": [ { + "noteType": "dataSource", "label": [ - "GLU, 1991", - "Laval RVM, 1997-02" - ], - "noteType": "dataSource" + "GDEL. Quid, 1989. SY, 1990/1991" + ] }, { + "noteType": "general", "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent : de la r\u00e9gion qui s'\u00e9tend de la mer Caspienne \u00e0 la Mongolie et la Chine du nord-ouest (inclusivement), et du sud de la Sib\u00e9rie \u00e0 l'Afghanistan et au nord de l'Iran (inclusivement) ; ou bien des seules 5 r\u00e9publiques ex-sovi\u00e9tiques consid\u00e9r\u00e9es collectivement" - ], - "noteType": "general" + "Communaut\u00e9 autonome (statut du 9-6-1982 ; chef-lieu : Logro\u00f1o), comprenant la province de Logro\u00f1o auparavant en Vieille-Castille" + ] } ], + "pid": "027263789", "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Espagne - Communaut\u00e9s autonomes" + } + ], + "variant_access_point": [ + "Logro\u00f1o (Espagne ; province)", + "Rioja, La (Espagne)" + ], + "md5": "10d09e5809a1bb6e24adcb45fa22f28f" + }, + { + "authorized_access_point": "Auvernier (Neuch\u00e2tel, Suisse)", "bnf_type": "sujet Rameau", - "narrower": [ + "identifiedBy": [ { - "authorized_access_point": "Afghanistan" + "type": "uri", + "value": "http://www.idref.fr/027263878", + "source": "IDREF" }, { - "authorized_access_point": "Kazakhstan" + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040798828" }, { - "authorized_access_point": "Kirghizistan" - }, - { - "authorized_access_point": "Mongolie" - }, - { - "authorized_access_point": "Ouzb\u00e9kistan" - }, - { - "authorized_access_point": "Tadjikistan" - }, - { - "authorized_access_point": "Tibet (Chine)" - }, - { - "authorized_access_point": "Turkm\u00e9nistan" - }, + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/17148570434724310085" + } + ], + "note": [ { - "authorized_access_point": "Xinjiang (Chine)" + "noteType": "dataSource", + "label": [ + "Atlas Le Monde" + ] } ], + "pid": "027263878", + "type": "bf:Place", + "md5": "abb9345e627a268d122cd2c282b7026a" + }, + { + "authorized_access_point": "Slov\u00e9nie", + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027283518", + "value": "http://www.idref.fr/027264602", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11935913h", + "type": "bf:Nbn", + "value": "ark:/12148/cb11934437w", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040794873", - "source": "GND" + "value": "(DE-101)040553027" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/170431196", - "source": "VIAF" + "value": "http://viaf.org/viaf/6399148574320624430003" } ], - "variant_access_point": [ - "Asie (centre)", - "Asie centrale (CEI)", - "Asie centrale russe", - "Asie centrale sovi\u00e9tique", - "Turkestan", - "Turkestan occidental", - "Turkestan russe", - "Turkestan chinois", - "Tartarie", - "Grande Tartarie" - ], - "authorized_access_point": "Asie centrale" - }, - { - "md5": "eddb75bcaab01aaa08c99c85b6cedb30", - "pid": "027286703", "note": [ { + "noteType": "dataSource", "label": [ "GDEL" - ], - "noteType": "dataSource" - }, - { - "label": [ - "R\u00e9gion d'Italie centrale comprenant 9 provinces (capitale : Florence)" - ], - "noteType": "general" + ] } ], + "pid": "027264602", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Italie (centre)" - }, - { - "authorized_access_point": "Italie - R\u00e9gions" + "authorized_access_point": "Europe centrale" } ], - "related": [ - { - "authorized_access_point": "\u00c9trurie" - } + "variant_access_point": [ + "Slovenija" ], + "md5": "06cadd88302adc6250a4356e8fd49d82" + }, + { + "authorized_access_point": "\u00c9r\u00e9trie (Gr\u00e8ce)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027286703", + "value": "http://www.idref.fr/027265013", "source": "IDREF" }, { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11934464s", + "source": "BNF" + }, + { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040604853\u200f ", - "source": "GND" + "value": "(DE-101)040855902" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/128956370", - "source": "VIAF" + "value": "http://viaf.org/viaf/171148570526024311115" } ], - "relation_pid": { - "type": "redirect_from", - "value": "123793696" - }, - "variant_access_point": [ - "Toscana (Italie)", - "Toscane (Grand-duch\u00e9)" - ], - "authorized_access_point": "Toscane (Italie)" - }, - { - "md5": "390f864064efe7fc593523d265ad0c08", - "pid": "027290530", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL. Laval RVM, 1989-06." - ], - "noteType": "dataSource" + "GDEL. Rachet", + "Eretria (Ancient city) ; LCSH, 1991-03", + "Internet, www.catalogue.bnf.fr, 20070417" + ] } ], + "pid": "027265013", "type": "bf:Place", + "variant_access_point": [ + "\u00c9r\u00e9tria (ville ancienne)", + "\u00c9r\u00e9tria (Gr\u00e8ce)", + "\u00c9r\u00e9trie (ville ancienne)", + "Nea Psara (Gr\u00e8ce)" + ], + "md5": "52a064cc49b3d8b15857dfa6807b4e12" + }, + { + "authorized_access_point": "P\u00f4le Nord", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027290530", + "value": "http://www.idref.fr/027266060", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11936474k", - "source": "BNF" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)04003366X", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/131280462", - "source": "VIAF" + "value": "(DE-101)041179145" }, { + "source": "VIAF", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Ath\u00e8nes", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/316891260" } ], - "variant_access_point": [ - "Ath\u00e8nes", - "Athinai (Gr\u00e8ce)" - ], - "authorized_access_point": "Ath\u00e8nes (Gr\u00e8ce)" - }, - { - "md5": "380ec045975ff1d84979cb81ac6399ac", - "pid": "027296946", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL" - ], - "noteType": "dataSource" - }, - { - "label": [ - "D\u00e9partement fran\u00e7ais (39)" - ], - "noteType": "general" + "Laval RVM, 1983" + ] } ], + "pid": "027266060", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Franche-Comt\u00e9 (France)" + "authorized_access_point": "Arctique" + }, + { + "authorized_access_point": "R\u00e9gions polaires" } ], + "md5": "cadc7920ac5c4333748580f71c4c07d5" + }, + { + "authorized_access_point": "Guyane", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027296946", + "value": "http://www.idref.fr/027267873", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11936964n", - "source": "BNF" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040932087", - "source": "GND" + "value": "(DE-101)040181847" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/234191213", - "source": "VIAF" + "value": "http://viaf.org/viaf/173457961" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "BA, 1989" + ] }, { - "type": "uri", - "value": "http://viaf.org/viaf/168693353", - "source": "VIAF" + "noteType": "general", + "label": [ + "Emploi direct en subdivision : [sujet] -- Guyane" + ] + } + ], + "pid": "027267873", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Guyanes" }, { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Jura_(d\u00e9partement)", - "source": "WIKIPEDIA" + "authorized_access_point": "France - D\u00e9partements et r\u00e9gions d'outre-mer" } ], "relation_pid": { - "type": "redirect_from", - "value": "127958827" + "value": "087992019", + "type": "redirect_from" }, "variant_access_point": [ - "Jura", - "Jura (d\u00e9partement)", - "Jura, D\u00e9partement du (France)" + "Guyane fran\u00e7aise" ], - "authorized_access_point": "Jura (France)" + "md5": "50d93c51a56deaac0816caacc2acb661" }, { - "md5": "2fe5880f2070a12371d54b09bf406c73", - "pid": "027303063", - "note": [ + "authorized_access_point": "Lombardie (Italie)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ { - "label": [ - "GDEL. SY 1990/91" - ], - "noteType": "dataSource" + "type": "uri", + "value": "http://www.idref.fr/027274241", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040362949" }, { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/134876348" + } + ], + "note": [ + { + "noteType": "dataSource", "label": [ - "Canton suisse" - ], - "noteType": "general" + "GDEL" + ] } ], + "pid": "027274241", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Suisse - Cantons" - } - ], - "bnf_type": "sujet Rameau", - "closeMatch": [ + "authorized_access_point": "Italie (nord)" + }, { - "source": "LCA", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/names/n80104828", - "source": "LCA" - }, - "authorized_access_point": "Valais (Switzerland)" + "authorized_access_point": "Italie - R\u00e9gions" } ], + "variant_access_point": [ + "Lombardia (Italie)", + "Lombardy (Italie)" + ], + "md5": "44d6e7da64fb84f4b8aa958987aec360" + }, + { + "authorized_access_point": "Afrique orientale", + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027303063", + "value": "http://www.idref.fr/027274365", "source": "IDREF" }, { "type": "uri", - "value": "http://d-nb.info/gnd/4064466-2", - "source": "GND" + "value": "http://catalogue.bnf.fr/ark:/12148/cb16272629n", + "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040644669", - "source": "GND" + "value": "(DE-101)040757226" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/316909073", - "source": "VIAF" - } - ], - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "914" + "value": "http://viaf.org/viaf/170530065" } ], - "variant_access_point": [ - "Vallese (Suisse)", - "Wallis (Suisse)" - ], - "authorized_access_point": "Valais (Suisse)" - }, - { - "md5": "16d4783cf7f4683c88ac580df1b1581a", - "pid": "027311430", "note": [ { + "noteType": "dataSource", "label": [ - "Names of states / IFLA, 1981. Pays et capitales du monde / IGN, 1985. Manuel de l'Unesco, 1985. Le Grand atlas de g\u00e9ographie, 1984. GDEL" - ], - "noteType": "dataSource" + "Laval RVM, 1992-02" + ] }, { + "noteType": "general", "label": [ - "Sous cette vedette on trouve les ouvrages sur la R\u00e9publique populaire de Mongolie et/ou sur l'ensemble de la Mongolie" - ], - "noteType": "general" + "Sous cette vedette on trouve les ouvrages qui traitent de la partie de l'Afrique qui s'\u00e9tend du Soudan au Mozambique" + ] } ], + "pid": "027274365", "type": "bf:Place", - "broader": [ + "narrower": [ { - "authorized_access_point": "Asie centrale" + "authorized_access_point": "Afrique du Nord-Est" + }, + { + "authorized_access_point": "Afrique orientale anglophone" + }, + { + "authorized_access_point": "Grands lacs africains (r\u00e9gion)" } ], + "variant_access_point": [ + "Afrique (est)", + "Afrique de l'Est" + ], + "md5": "096992bec7b6dd432753696175a11268" + }, + { + "authorized_access_point": "Pi\u00e9mont (Italie)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027311430", + "value": "http://www.idref.fr/027274985", "source": "IDREF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040400565", - "source": "GND" + "value": "(DE-101)040460398" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/155144648525066137570", - "source": "VIAF" + "value": "http://viaf.org/viaf/132508744" } ], - "variant_access_point": [ - "Mongol Ard Uls", - "Mongolie (R\u00e9publique populaire)", - "Mongolie-ext\u00e9rieure" - ], - "authorized_access_point": "Mongolie" - }, - { - "md5": "06f31bfc233ad2600fc2ddf41549062a", - "pid": "027316211", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL. Le Monde, 9-10-1991" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent de l'ensemble de l'Arm\u00e9nie et/ou de sa seule partie orientale annex\u00e9e par la Russie en 1828, qui constitue aujourd'hui une r\u00e9publique ind\u00e9pendante (r\u00e9f\u00e9rendum du 21-09-1991)" - ], - "noteType": "general" + "GDEL" + ] } ], + "pid": "027274985", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Transcaucasie" + "authorized_access_point": "Italie (nord)" }, { - "authorized_access_point": "Pays de la CEI" + "authorized_access_point": "Italie - R\u00e9gions" } ], + "variant_access_point": [ + "Pi\u00e9mont", + "Piemonte (Italie)" + ], + "md5": "bcfe2b631247b610012f924648ad226b" + }, + { + "authorized_access_point": "Seychelles", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027316211", + "value": "http://www.idref.fr/027275191", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb123844340", - "source": "BNF" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040859312", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/136032216", - "source": "VIAF" + "value": "(DE-101)040546942" }, { + "source": "VIAF", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Arm\u00e9nie", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/31148574294324430007" } ], - "variant_access_point": [ - "Arm\u00e9nie (R\u00e9publique socialiste sovi\u00e9tique)", - "Hai\u034f\u0308k", - "Hayastan" - ], - "authorized_access_point": "Arm\u00e9nie" - }, - { - "md5": "d979077b0b5819460d543162e416f8bf", - "pid": "027316696", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981", - "Cor\u00e9e du Nord ; Laval RVM, 1994-08. Chos\u01d2n ; GKD, 1980" - ], - "noteType": "dataSource" - }, - { - "label": [ - "En pr\u00e9cision g\u00e9ographique, employer Cor\u00e9e N., par ex. Pyongyang (Cor\u00e9e N.)", - "Le Royaume de Cor\u00e9e fut colonis\u00e9 par le Japon de 1905 \u00e0 la fin de la Seconde guerre mondiale. La partition, en 1945, en 2 zones d'occupation (USA et URSS) aboutit le 9 septembre 1948 \u00e0 la proclamation de la R\u00e9publique populaire d\u00e9mocratique de Cor\u00e9e par l'Assembl\u00e9e populaire supr\u00eame. Capitale Pyongyang, langue officielle cor\u00e9en" - ], - "noteType": "general" + "Names of states / IFLA, 1981. LCNA, 1985" + ] } ], + "pid": "027275191", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Cor\u00e9e" + "authorized_access_point": "Indien, \u00celes de l'oc\u00e9an" } ], + "md5": "1da43470a95a0ea7337c2caa173568f2" + }, + { + "authorized_access_point": "Jura souabe (Allemagne ; massif)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027316696", + "value": "http://www.idref.fr/027283496", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11938542q", - "source": "BNF" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040754685", - "source": "GND" + "value": "(DE-101)040536866" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/6097150325542010090000", - "source": "VIAF" + "value": "http://viaf.org/viaf/2083148574385624430003" } ], - "variant_access_point": [ - "Chos\u01d2n", - "Cor\u00e9e du Nord", - "R\u00e9publique populaire d\u00e9mocratique de Cor\u00e9e", - "Cor\u00e9e, R\u00e9publique populaire d\u00e9mocratique de", - "Cor\u00e9e, R\u00e9publique populaire d\u00e9mocratique de (1948-....)" - ], - "authorized_access_point": "Cor\u00e9e (R\u00e9publique populaire d\u00e9mocratique)" - }, - { - "md5": "84ff30a18d2a063afd3b1f34cb10e01c", - "pid": "027318494", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL. SY 1991/92" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Canton suisse" - ], - "noteType": "general" + "Atlas universalis. GDEL" + ] } ], + "pid": "027283496", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Suisse - Cantons" + "authorized_access_point": "Souabe (Allemagne)" } ], + "variant_access_point": [ + "Schw\u00e4bische Alb (Allemagne ; massif)" + ], + "md5": "727837a51f0ca3ba6db4ec8ce12c1507" + }, + { + "authorized_access_point": "Asie centrale", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027318494", + "value": "http://www.idref.fr/027283518", "source": "IDREF" }, { - "type": "bf:Nbn", - "value": "(DE-101)040789829", - "source": "GND" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11935913h", + "source": "BNF" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4078982-2", - "source": "GND" + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040794873" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/172278245", - "source": "VIAF" + "value": "http://viaf.org/viaf/170431196" } ], - "variant_access_point": [ - "L\u00e9man (Suisse)", - "Vaud", - "Waadt (Suisse)" - ], - "authorized_access_point": "Vaud (Suisse)" - }, - { - "md5": "889960ebf20d8883ce5e9134ff37bdd7", - "pid": "027321940", "note": [ { + "noteType": "dataSource", "label": [ - "Laval RVM, 1992-08" - ], - "noteType": "dataSource" + "GLU, 1991", + "Laval RVM, 1997-02" + ] }, { + "noteType": "general", "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent de la partie de l'Afrique situ\u00e9e au sud du Sahara et \u00e0 l'ouest du Tchad et du Cameroun" - ], - "noteType": "general" + "Sous cette vedette on trouve les ouvrages qui traitent : de la r\u00e9gion qui s'\u00e9tend de la mer Caspienne \u00e0 la Mongolie et la Chine du nord-ouest (inclusivement), et du sud de la Sib\u00e9rie \u00e0 l'Afghanistan et au nord de l'Iran (inclusivement) ; ou bien des seules 5 r\u00e9publiques ex-sovi\u00e9tiques consid\u00e9r\u00e9es collectivement" + ] } ], + "pid": "027283518", "type": "bf:Place", - "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Afrique occidentale anglophone" - }, - { - "authorized_access_point": "Afrique occidentale francophone" - }, - { - "authorized_access_point": "B\u00e9nin" - }, - { - "authorized_access_point": "Burkina Faso" - }, - { - "authorized_access_point": "Cap-Vert" - }, - { - "authorized_access_point": "C\u00f4te d'Ivoire" - }, - { - "authorized_access_point": "Gambie" - }, - { - "authorized_access_point": "Ghana" - }, - { - "authorized_access_point": "Guin\u00e9e" - }, - { - "authorized_access_point": "Guin\u00e9e-Bissau" - }, - { - "authorized_access_point": "Liberia" + "authorized_access_point": "Afghanistan" }, { - "authorized_access_point": "Mali" + "authorized_access_point": "Kazakhstan" }, { - "authorized_access_point": "Mauritanie" + "authorized_access_point": "Kirghizistan" }, { - "authorized_access_point": "Niger" + "authorized_access_point": "Mongolie" }, { - "authorized_access_point": "Nigeria" + "authorized_access_point": "Ouzb\u00e9kistan" }, { - "authorized_access_point": "S\u00e9n\u00e9gal" + "authorized_access_point": "Tadjikistan" }, { - "authorized_access_point": "Sierra Leone" + "authorized_access_point": "Tibet (Chine)" }, { - "authorized_access_point": "Togo" + "authorized_access_point": "Turkm\u00e9nistan" }, { - "authorized_access_point": "Guin\u00e9e (r\u00e9gion)" + "authorized_access_point": "Xinjiang (Chine)" } ], + "variant_access_point": [ + "Asie (centre)", + "Asie centrale (CEI)", + "Asie centrale russe", + "Asie centrale sovi\u00e9tique", + "Turkestan", + "Turkestan occidental", + "Turkestan russe", + "Turkestan chinois", + "Tartarie", + "Grande Tartarie" + ], + "md5": "527402c2a4e297773fd18d88e81ac68e" + }, + { + "authorized_access_point": "Toscane (Italie)", + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027321940", + "value": "http://www.idref.fr/027286703", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb162726289", - "source": "BNF" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)04079203X", - "source": "GND" + "value": "(DE-101)040604853\u200f " }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/315124800", - "source": "VIAF" - }, - { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Afrique_de_l'Ouest", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/128956370" } ], - "variant_access_point": [ - "Afrique (ouest)", - "Afrique de l'Ouest" - ], - "authorized_access_point": "Afrique occidentale" - }, - { - "md5": "57b08ae67e61c49ed024539a506baa8e", - "pid": "027322998", "note": [ { + "noteType": "dataSource", "label": [ - "Names of states / IFLA, 1981. LCSH, 1985" - ], - "noteType": "dataSource" + "GDEL" + ] + }, + { + "noteType": "general", + "label": [ + "R\u00e9gion d'Italie centrale comprenant 9 provinces (capitale : Florence)" + ] } ], + "pid": "027286703", "type": "bf:Place", + "related": [ + { + "authorized_access_point": "\u00c9trurie" + } + ], "broader": [ { - "authorized_access_point": "Afrique orientale anglophone" + "authorized_access_point": "Italie (centre)" + }, + { + "authorized_access_point": "Italie - R\u00e9gions" } ], + "relation_pid": { + "value": "123793696", + "type": "redirect_from" + }, + "variant_access_point": [ + "Toscana (Italie)", + "Toscane (Grand-duch\u00e9)" + ], + "md5": "56ad80ab391e89c1783688a7304d41ed" + }, + { + "authorized_access_point": "Le Cap (Afrique du Sud)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027322998", + "value": "http://www.idref.fr/027286835", "source": "IDREF" }, { - "type": "bf:Nbn", - "value": "(DE-101)040302369", - "source": "GND" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119361931", + "source": "BNF" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/869148574256524430002", - "source": "VIAF" + "value": "http://viaf.org/viaf/125475857" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Kenya_(Lubumbashi)", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Le_Cap" } ], - "authorized_access_point": "Kenya" - }, - { - "md5": "2ce7fd3d99962e8bb1aa3808dca5fbd2", - "pid": "027323072", "note": [ { + "noteType": "dataSource", "label": [ - "Names of states / IFLA, 1981. Pays et capitales du monde / IGN, 1985" - ], - "noteType": "dataSource" + "GDEL. Cape Town (South Africa) ; LCNA, 1977-1986" + ] } ], + "pid": "027286835", "type": "bf:Place", - "broader": [ - { - "authorized_access_point": "Australasie" - }, + "variant_access_point": [ + "Cap, Le (Afrique du Sud)", + "Cape Town (Afrique du Sud)", + "Kaapstad (Afrique du Sud)" + ], + "md5": "a210dbf85f21e836bcb3fbf5406c16d1" + }, + { + "authorized_access_point": "Espagne - 1936-1939 (Guerre civile)", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Oc\u00e9anie" + "type": "bf:ClassificationDdc", + "classificationPortion": "940", + "name": "Histoire de l'Europe" } ], - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027323072", + "value": "http://www.idref.fr/027288951", "source": "IDREF" }, { - "type": "bf:Nbn", - "value": "(DE-101)040419150", - "source": "GND" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11936368c", + "source": "BNF" }, { - "type": "uri", - "value": "http://viaf.org/viaf/3232154260428024480001", - "source": "VIAF" + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04055970X" } ], - "variant_access_point": [ - "New Zealand", - "Nouvelle Z\u00e9lande" - ], - "authorized_access_point": "Nouvelle-Z\u00e9lande" - }, - { - "md5": "6e3c3bb57c6a15022b6bf76eeaaf2656", - "pid": "027331180", "note": [ { + "noteType": "dataSource", "label": [ - "Atlas Le Monde", - "Grand Larousse universel", - "Laval RVM (en ligne) et LC Authorities (en ligne), 2006-04-18" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Province du Canada (capitale : Qu\u00e9bec)" - ], - "noteType": "general" + "Grand Larousse universel : Espagne (guerre civile d')", + "Encycl. universalis (art. : Espagne (Le territoire et les hommes) - De l'unit\u00e9 politique \u00e0 la guerre civile) - http://www.universalis-edu.com (2015-03-17)", + "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1996 (art. : Espagne)", + "La guerre d'Espagne / A. Beevor, 2006", + "La Guerre d'Espagne : juillet 1936-mars 1939 / H. Thomas, 1985", + "La r\u00e9volution et la guerre d'Espagne / P. Brou\u00e9, \u00c9. T\u00e9mime, 1979", + "Historical dict. of the Spanish civil war, 1936-1939 / J. W. Cortada, 1982" + ] }, { + "noteType": "general", "label": [ - "Voir aussi la subdivision Et le Qu\u00e9bec aux collectivit\u00e9s (\u00e0 l'exception des types de collectivit\u00e9s) et aux personnes" - ], - "noteType": "seeReference" + "17-18 juillet 1936 : soul\u00e8vement militaire. 30 mars 1939 : entr\u00e9e des troupes nationalistes \u00e0 Valence" + ] } ], + "pid": "027288951", "type": "bf:Place", - "broader": [ + "related": [ + { + "authorized_access_point": "Espagne - 1936-1939 (Guerre civile) - Cin\u00e9ma et guerre" + }, + { + "authorized_access_point": "Espagne - 1936-1939 (Guerre civile) - Litt\u00e9rature et guerre" + }, { - "authorized_access_point": "Canada (est)" + "authorized_access_point": "Espagne - 1936-1939 (Guerre civile) - Origines" }, { - "authorized_access_point": "Canada - Provinces" + "authorized_access_point": "Espagne - 1936-1939 (Guerre civile) - R\u00e9fugi\u00e9s" } ], - "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Mont\u00e9r\u00e9gie (Canada)" + "authorized_access_point": "Andalousie (Espagne) - 1936-1939 (Guerre civile)" }, { - "authorized_access_point": "Abitibi-T\u00e9miscamingue (Canada)" + "authorized_access_point": "Aragon (Espagne) - 1936-1939 (Guerre civile)" }, { - "authorized_access_point": "Beauce (Canada)" + "authorized_access_point": "Asturies (Espagne) - 1936-1939 (Guerre civile)" }, { - "authorized_access_point": "Bois-Francs (Canada)" + "authorized_access_point": "Bal\u00e9ares (Espagne) - 1936-1939 (Guerre civile)" }, { - "authorized_access_point": "Estrie (Canada)" + "authorized_access_point": "Canaries - 1936-1939 (Guerre civile)" }, { - "authorized_access_point": "Etchemin (Canada ; r\u00e9gion)" + "authorized_access_point": "Cantabrie (Espagne) - 1936-1939 (Guerre civile)" }, { - "authorized_access_point": "Gasp\u00e9sie (Canada ; p\u00e9ninsule)" + "authorized_access_point": "Castille-La Manche (Espagne) - 1936-1939 (Guerre civile)" }, { - "authorized_access_point": "Haut-Richelieu (Canada)" + "authorized_access_point": "Castille-Le\u00f3n (Espagne) - 1936-1939 (Guerre civile)" }, { - "authorized_access_point": "James, Baie (Canada ; r\u00e9gion)" + "authorized_access_point": "Catalogne (Espagne) - 1936-1939 (Guerre civile)" }, { - "authorized_access_point": "Lanaudi\u00e8re (Canada)" + "authorized_access_point": "Espagne - 1936-1937 (R\u00e9volution)" }, { - "authorized_access_point": "Laurentides (Canada)" + "authorized_access_point": "Espagne - 1936-1939 (Guerre civile) - Op\u00e9rations militaires" }, { - "authorized_access_point": "Mauricie-Bois-Francs (Canada)" + "authorized_access_point": "Espagne - 1936-1939 (Guerre civile) - Participation \u00e9trang\u00e8re" }, { - "authorized_access_point": "Nord-du-Qu\u00e9bec (Canada)" + "authorized_access_point": "Espagne - 1936 (Soul\u00e8vement du 18 juillet 1936)" }, { - "authorized_access_point": "Outaouais (Canada ; r\u00e9gion administrative)" - } - ], - "identifiedBy": [ - { - "type": "uri", - "value": "http://www.idref.fr/027331180", - "source": "IDREF" + "authorized_access_point": "Estr\u00e9madure (Espagne) - 1936-1939 (Guerre civile)" }, { - "type": "bf:Nbn", - "value": "(DE-101)040480305", - "source": "GND" + "authorized_access_point": "Galice (Espagne) - 1936-1939 (Guerre civile)" }, { - "type": "bf:Nbn", - "value": " https://d-nb.info/gnd/4048030-6", - "source": "GND" + "authorized_access_point": "La Rioja (Espagne) - 1936-1939 (Guerre civile)" }, { - "type": "uri", - "value": "http://viaf.org/viaf/1454149296307780670001", - "source": "VIAF" - } - ], - "relation_pid": { - "type": "redirect_from", - "value": "027241831" - }, - "variant_access_point": [ - "Bas-Canada", - "Canada, Bas-", - "Qu\u00e9bec", - "Qu\u00e9bec (Province)" - ], - "authorized_access_point": "Qu\u00e9bec (Canada ; province)" - }, - { - "md5": "8862cebefa0c1315c6287b4dc79905e3", - "pid": "027333752", - "note": [ + "authorized_access_point": "Pays basque (Espagne) - 1936-1939 (Guerre civile)" + }, { - "label": [ - "GDEL" - ], - "noteType": "dataSource" + "authorized_access_point": "Valence (Espagne ; r\u00e9gion) - 1936-1939 (Guerre civile)" } ], - "type": "bf:Place", "broader": [ { - "authorized_access_point": "Asie du Nord" - }, - { - "authorized_access_point": "Russie" + "authorized_access_point": "Espagne - 1931-1939 (2e R\u00e9publique)" } ], + "md5": "fc01c2134a948fa1d0dda4e977c11730" + }, + { + "authorized_access_point": "Ath\u00e8nes (Gr\u00e8ce)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027333752", + "value": "http://www.idref.fr/027290530", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11939827w", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11936474k", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040547809", - "source": "GND" + "value": "(DE-101)04003366X" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/251794742", - "source": "VIAF" + "value": "http://viaf.org/viaf/131280462" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Sib\u00e9rie", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Ath\u00e8nes" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Laval RVM, 1989-06." + ] } ], + "pid": "027290530", + "type": "bf:Place", "variant_access_point": [ - "Russie d'Asie", - "Sibir (Russie)" + "Ath\u00e8nes", + "Athinai (Gr\u00e8ce)" ], - "authorized_access_point": "Sib\u00e9rie (Russie)" + "md5": "1e6e8ded3b3fa22297628d8037789cf7" }, { - "md5": "9169be1795b476a90d867f8ce3c61603", - "pid": "027342395", - "note": [ + "authorized_access_point": "H\u1ed3 Ch\u00ed Minh-Ville (Viet-Nam ; province)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ { - "label": [ - "GLU. SY 1994-95" - ], - "noteType": "dataSource" + "type": "uri", + "value": "http://www.idref.fr/027291499", + "source": "IDREF" }, { - "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent de la Russie jusqu'en 1917, ou de la R\u00e9publique socialiste f\u00e9d\u00e9rative sovi\u00e9tique de Russie (1918-1991), ou de l'actuelle F\u00e9d\u00e9ration de Russie. Les ouvrages qui traitent de l'ensemble des r\u00e9publiques socialistes sovi\u00e9tiques de 1917 \u00e0 1991 (bien que l'URSS n'ait \u00e9t\u00e9 fond\u00e9e officiellement que le 30-12-1922) se trouvent sous la vedette URSS" - ], - "noteType": "general" + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/164772349" }, { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/H\u00f4_Chi_Minh-Ville" + } + ], + "note": [ + { + "noteType": "dataSource", "label": [ - "Voir aussi la subdivision Et la Russie aux personnes et aux collectivit\u00e9s" - ], - "noteType": "seeReference" + "GLU. BN Service vietnamien" + ] } ], + "pid": "027291499", "type": "bf:Place", - "broader": [ - { - "authorized_access_point": "Pays de la CEI" - }, + "narrower": [ { - "authorized_access_point": "Pays slaves" + "authorized_access_point": "C\u01b0 Chinh (Viet Nam ; r\u00e9gion)" } ], + "variant_access_point": [ + "S\u00e0i g\u00f2n (Viet-Nam)", + "Saigon (Viet-Nam)", + "Th\u00e0nh ph\u1ed1 H\u1ed3 Ch\u00ed Minh (Viet-Nam)" + ], + "md5": "aa3e683188ff8627090c89b0ed383803" + }, + { + "authorized_access_point": "Jura (France)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027342395", + "value": "http://www.idref.fr/027296946", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119405184", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11936964n", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040768996", - "source": "GND" + "value": "(DE-101)040932087" }, { + "source": "VIAF", "type": "uri", - "value": "https://d-nb.info/gnd/4076899-5", - "source": "GND" + "value": "http://viaf.org/viaf/234191213" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/3147270312635700007", - "source": "VIAF" + "value": "http://viaf.org/viaf/168693353" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Empire_russe", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Jura_(d\u00e9partement)" } ], - "variant_access_point": [ - "Empire russe", - "F\u00e9d\u00e9ration de Russie", - "Moscovie", - "Rossia", - "RSFSR", - "Russie (Empire)", - "Russie (F\u00e9d\u00e9ration)", - "Russie (R\u00e9publique socialiste f\u00e9d\u00e9rative sovi\u00e9tique)" - ], - "authorized_access_point": "Russie" - }, - { - "md5": "2026bfc1f21983e82f2749f2f9300e8b", - "pid": "027350789", "note": [ { + "noteType": "dataSource", "label": [ - "GLU. Encycl. universalis, 1989, 20, 642-661", - "Laval RVM, 1997-02" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette, on trouve les ouvrages sur la r\u00e9gion form\u00e9e par le Danemark, la Norv\u00e8ge et la Su\u00e8de, \u00e9ventuellement \u00e9tendue \u00e0 la Finlande et \u00e0 l'Islande" - ], - "noteType": "general" + "GDEL" + ] }, { + "noteType": "general", "label": [ - "Voir aussi la subdivision Et la Scandinavie aux personnes et collectivit\u00e9s" - ], - "noteType": "seeReference" + "D\u00e9partement fran\u00e7ais (39)" + ] } ], + "pid": "027296946", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Europe du Nord" - }, - { - "authorized_access_point": "Pays de langues germaniques" + "authorized_access_point": "Franche-Comt\u00e9 (France)" } ], + "relation_pid": { + "value": "127958827", + "type": "redirect_from" + }, + "variant_access_point": [ + "Jura", + "Jura (d\u00e9partement)", + "Jura, D\u00e9partement du (France)" + ], + "md5": "992d837c8d59562e7a7f51c357eed876" + }, + { + "authorized_access_point": "Gex, Pays de (Ain)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027350789", + "value": "http://www.idref.fr/027296970", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15238529v", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11936967p", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040552098", - "source": "GND" + "value": "(DE-101)953732320" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/172765142", - "source": "VIAF" + "value": "http://viaf.org/viaf/173309018" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Scandinavie", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Pays_de_Gex" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Moreau. GLU" + ] + } + ], + "pid": "027296970", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Ain (France)" } ], "variant_access_point": [ - "Conseil nordique, Pays du", - "\u00c9tats scandinaves", - "Fennoscandie", - "Nordiques, Pays", - "Pays du Conseil nordique", - "Pays nordiques", - "Pays scandinaves", - "Scandinaves, Pays" + "Pays de Gex (Ain)", + "Gex (Ain ; r\u00e9gion)" ], - "authorized_access_point": "Scandinavie" + "md5": "0280d709471fc2cbbe1e93938f13cbff" }, { - "md5": "9bf64b25a5d46f3276162fe2a05281e7", - "pid": "027356302", + "authorized_access_point": "Cr\u00e8te (Gr\u00e8ce)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027297810", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040737918" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/151226384" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Cr\u00e8te" + } + ], "note": [ { + "noteType": "dataSource", "label": [ - "GLU" - ], - "noteType": "dataSource" + "GDEL. SY 1990/91" + ] }, { + "noteType": "general", "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent des pays riverains de la M\u00e9diterran\u00e9e orientale (Chypre, \u00c9gypte, Palestine, Israe\u034f\u0308l, Liban, Syrie) et de la Jordanie. Les ouvrages qui traitent de l'ensemble de l'Asie occidentale, et \u00e9ventuellement de l'\u00c9gypte et du Soudan, se trouvent sous la vedette Moyen-Orient" - ], - "noteType": "general" + "\u00eele et r\u00e9gion de la Gr\u00e8ce" + ] } ], + "pid": "027297810", "type": "bf:Place", "broader": [ { - "authorized_access_point": "M\u00e9diterran\u00e9e (r\u00e9gion ; est)" + "authorized_access_point": "Gr\u00e8ce" }, { - "authorized_access_point": "Moyen-Orient" + "authorized_access_point": "M\u00e9diterran\u00e9e, \u00celes de la" } ], + "variant_access_point": [ + "Candie (Gr\u00e8ce ; \u00eele)", + "Candia (Gr\u00e8ce ; \u00eele)", + "Kr\u00eat\u00ea (Gr\u00e8ce)", + "Kr\u00edti (Gr\u00e8ce)", + "\u00cele de Cr\u00eate" + ], + "md5": "e107c5d64335c683c28cd60b55eec3bc" + }, + { + "authorized_access_point": "Loire, Vall\u00e9e de la (France)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027356302", + "value": "http://www.idref.fr/027298531", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15365915b", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11937097c", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)04068878X", - "source": "GND" + "value": "(DE-101)040997758" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/170319740", - "source": "VIAF" - } - ], - "variant_access_point": [ - "Levant", - "Orient, Proche-" - ], - "authorized_access_point": "Proche-Orient" - }, - { - "md5": "e93db978958b0789659e18b9813a40f1", - "pid": "027356949", - "note": [ - { - "label": [ - "IFLA, Names of states, 1981. BN Service arabe", - "Laval RVM, 1997-02. S\u016br\u012by\u0101 ; GKD, 1994-05" - ], - "noteType": "dataSource" + "value": "http://viaf.org/viaf/172765072" } ], + "pid": "027298531", "type": "bf:Place", - "broader": [ + "narrower": [ { - "authorized_access_point": "Proche-Orient" + "authorized_access_point": "Val de Loire (France)" } ], + "md5": "6cb2cb4e434e71eec2f1ea12df4ad1fc" + }, + { + "authorized_access_point": "Naples (Italie)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027356949", + "value": "http://www.idref.fr/027298728", "source": "IDREF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040587940", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/154701530", - "source": "VIAF" + "value": "(DE-101)040414760" }, { + "source": "VIAF", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Syrie", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/1991155648121518330006" } ], - "variant_access_point": [ - "\u0633\u0648\u0631\u064a\u0627", - "S\u016briy\u0101", - "\u0633\u0648\u0631\u064a\u0629", - "S\u016briya\u1e97", - "\u0633\u0648\u0631\u064a\u0647", - "S\u016br\u012byah" - ], - "authorized_access_point": "Syrie" - }, - { - "md5": "c56919d9f26d355a3f6d312afad0ca28", - "pid": "02735895X", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL" - ], - "noteType": "dataSource" + "GDEL", + "http://ark.bnf.fr/ark:/12148/cb119371144, 2024-07-23" + ] } ], + "pid": "027298728", "type": "bf:Place", - "broader": [ + "related": [ { - "authorized_access_point": "Grande-Bretagne" + "authorized_access_point": "Naples (Italie) - Histoire" } ], + "relation_pid": { + "value": "119626551", + "type": "redirect_from" + }, + "variant_access_point": [ + "Napoli (Italie)", + "Parth\u00e9nope (ville ancienne)", + "Neapolis (ville ancienne)", + "Naples (Campanie, Italie)" + ], + "md5": "2f5b17cad04d9a451c0df41a570783ee" + }, + { + "authorized_access_point": "Saxe (Allemagne)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/02735895X", + "value": "http://www.idref.fr/027308561", "source": "IDREF" }, { "type": "uri", - "value": "http://d-nb.info/gnd/4014770-8", - "source": "GND" + "value": "http://catalogue.bnf.fr/ark:/12148/cb119379010", + "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040147703", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/173636420", - "source": "VIAF" + "value": "(DE-101)040511766" }, { + "source": "VIAF", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Angleterre", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/201974690" } ], - "variant_access_point": [ - "England", - "Angleterre" - ], - "authorized_access_point": "Angleterre (GB)" - }, - { - "md5": "2a528378bce56fd20fe605c4a921c0fd", - "pid": "027360199", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL", - "Balkans ; Laval RVM, 1992-02" - ], - "noteType": "dataSource" + "GLU. Mourre", + "Laval RVM, 1995-08. Sachsen ; SWD, 1994-10" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette on trouve les ouvrages qui traitent de la Saxe : duch\u00e9, puis \u00e9lectorat, puis royaume, puis Land" + ] } ], + "pid": "027308561", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Europe du Sud" + "authorized_access_point": "Allemagne - L\u00e4nder" } ], + "variant_access_point": [ + "Kursachsen (Allemagne)", + "Sachsen", + "Sachsen (Allemagne)", + "Saxe", + "Saxe (Allemagne ; Land)", + "Saxe (Duch\u00e9)", + "Saxe (\u00c9lectorat)", + "Saxe (Royaume)", + "Saxe \u00e9lectorale" + ], + "md5": "5a379e65bc389f41d09ee453377518da" + }, + { + "authorized_access_point": "Benelux", "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Albanie" - }, - { - "authorized_access_point": "Bosnie-Herz\u00e9govine" - }, - { - "authorized_access_point": "Bulgarie" - }, + "identifiedBy": [ { - "authorized_access_point": "Ex-Yougoslavie" + "type": "uri", + "value": "http://www.idref.fr/027311058", + "source": "IDREF" }, { - "authorized_access_point": "Gr\u00e8ce" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15238537g", + "source": "BNF" }, { - "authorized_access_point": "Mac\u00e9doine" + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/171985634" }, { - "authorized_access_point": "Mac\u00e9doine du Nord (R\u00e9publique)" - }, + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Benelux" + } + ], + "note": [ { - "authorized_access_point": "M\u00e9sie" - }, + "noteType": "dataSource", + "label": [ + "GLU. Laval RVM, 1994-08" + ] + } + ], + "pid": "027311058", + "type": "bf:Place", + "broader": [ { - "authorized_access_point": "Mont\u00e9n\u00e9gro" - }, + "authorized_access_point": "Europe de l'Ouest" + } + ], + "related": [ { - "authorized_access_point": "Roumanie" + "authorized_access_point": "Belgique" }, { - "authorized_access_point": "Serbie" + "authorized_access_point": "Pays-Bas" }, { - "authorized_access_point": "Thrace" + "authorized_access_point": "Luxembourg" } ], + "variant_access_point": [ + "Pays du Benelux" + ], + "md5": "72451a2a46e7886b73d08a17b09b145c" + }, + { + "authorized_access_point": "Mongolie", + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027360199", + "value": "http://www.idref.fr/027311430", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11941903f", - "source": "BNF" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040690997", - "source": "GND" + "value": "(DE-101)040400565" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/60144648482279885458", - "source": "VIAF" + "value": "http://viaf.org/viaf/155144648525066137570" } ], - "variant_access_point": [ - "Balkanique, P\u00e9ninsule", - "Europe (sud-est)", - "Europe du Sud-Est", - "Pays balkaniques" - ], - "authorized_access_point": "Balkans" - }, - { - "md5": "939117550222b3d77f28b6f1c9a731f0", - "pid": "027367428", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL" - ], - "noteType": "dataSource" + "Names of states / IFLA, 1981. Pays et capitales du monde / IGN, 1985. Manuel de l'Unesco, 1985. Le Grand atlas de g\u00e9ographie, 1984. GDEL" + ] }, { + "noteType": "general", "label": [ - "Fief constitu\u00e9 au 12e si\u00e8cle par Thierry, de la maison de Bar-le-Duc, le comt\u00e9 passe ensuite \u00e0 celle de Montfaucon puis au Wurtemberg (1397) et devient la principaut\u00e9 de Montb\u00e9liard. Annex\u00e9e par la Convention (10 oct. 1793), elle est d\u00e9finitivement r\u00e9unie \u00e0 la France par le trait\u00e9 de Lun\u00e9ville (1801). On l'appelait usuellement Pays de Montb\u00e9liard, expression qui est toujours en usage" - ], - "noteType": "general" + "Sous cette vedette on trouve les ouvrages sur la R\u00e9publique populaire de Mongolie et/ou sur l'ensemble de la Mongolie" + ] } ], + "pid": "027311430", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Doubs (France)" + "authorized_access_point": "Asie centrale" } ], + "variant_access_point": [ + "Mongol Ard Uls", + "Mongolie (R\u00e9publique populaire)", + "Mongolie-ext\u00e9rieure" + ], + "md5": "0f68c4e63b3b73448820df559bab5ed7" + }, + { + "authorized_access_point": "Toronto (Canada)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027367428", + "value": "http://www.idref.fr/027311694", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11942447x", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119381418", "source": "BNF" }, { - "type": "bf:Nbn", - "value": "(DE-101)040401499", - "source": "GND" - }, - { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/155890847", - "source": "VIAF" + "value": "http://viaf.org/viaf/7267148574365324430001" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Montb\u00e9liard", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Toronto" } ], - "variant_access_point": [ - "Montb\u00e9liard (comt\u00e9)", - "Montb\u00e9liard (Doubs ; r\u00e9gion)", - "Montb\u00e9liard (principaut\u00e9)", - "Pays de Montb\u00e9liard (France)" - ], - "authorized_access_point": "Montb\u00e9liard, Pays de (France)" - }, - { - "md5": "b6e93cecf91107f7889b67c3b2f3f6f9", - "pid": "027369714", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL" - ], - "noteType": "dataSource" + "Atlas Le Monde" + ] } ], + "pid": "027311694", "type": "bf:Place", + "md5": "09a56ff0c38056ef744c2cad494c842d" + }, + { + "authorized_access_point": "R\u00e9gions tropicales", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027369714", + "value": "http://www.idref.fr/027314049", "source": "IDREF" }, { "type": "uri", - "value": "http://d-nb.info/gnd/4005762-8", - "source": "GND" + "value": "http://catalogue.bnf.fr/ark:/12148/cb11938331h", + "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040057623", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/237298336", - "source": "VIAF" + "value": "(DE-101)040609979" }, { + "source": "VIAF", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Berne", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/316897266" } ], - "variant_access_point": [ - "Bern (Suisse)" - ], - "authorized_access_point": "Berne (Suisse)" - }, - { - "md5": "149b850a12a3ca4eea613c54453da991", - "pid": "027375080", "note": [ { + "noteType": "dataSource", "label": [ - "Laval RVM, 1991-02" - ], - "noteType": "dataSource" + "Laval RVM, 1992-08" + ] + }, + { + "noteType": "general", + "label": [ + "S'emploie \u00e9galement en subdivision g\u00e9ographique aux sujets noms communs appropri\u00e9s, par ex. Agriculture -- R\u00e9gions tropicales" + ] + }, + { + "noteType": "seeReference", + "label": [ + "Voir aussi la subdivision Conditions tropicales aux sujets noms communs appropri\u00e9s lorsque l'emploi de la subdivision g\u00e9ographique R\u00e9gions tropicales n'est pas possible, par ex. Livres -- Conservation et restauration -- Conditions tropicales", + "Voir aussi les vedettes du type : Cultures tropicales ; Poissons tropicaux" + ] } ], + "pid": "027314049", "type": "bf:Place", - "broader": [ + "narrower": [ { - "authorized_access_point": "Am\u00e9rique" + "authorized_access_point": "R\u00e9gions tropicales humides" + }, + { + "authorized_access_point": "R\u00e9gions tropicales s\u00e8ches" } ], + "md5": "e1905f10c0950fc805baf9a174818ca5" + }, + { + "authorized_access_point": "Cor\u00e9e (R\u00e9publique populaire d\u00e9mocratique)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027375080", + "value": "http://www.idref.fr/027316696", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15238498d", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11938542q", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040794865", - "source": "GND" + "value": "(DE-101)040754685" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/170225739", - "source": "VIAF" + "value": "http://viaf.org/viaf/6097150325542010090000" } ], - "variant_access_point": [ - "Am\u00e9rique (centre)", - "Guatemala (Royaume)" - ], - "authorized_access_point": "Am\u00e9rique centrale" - }, - { - "md5": "0aa4634bc2b2cbde1f9e52f566e3e693", - "pid": "027375412", "note": [ { + "noteType": "dataSource", "label": [ - "GLU. Laval RVM, 1993-02" - ], - "noteType": "dataSource" + "IFLA, Names of states, 1981", + "Cor\u00e9e du Nord ; Laval RVM, 1994-08. Chos\u01d2n ; GKD, 1980" + ] }, { + "noteType": "general", "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent de l'archipel qui s\u00e9pare l'Atlantique de la mer des Antilles et qui comprend les Bahamas, les Grandes et les Petites Antilles" - ], - "noteType": "general" + "En pr\u00e9cision g\u00e9ographique, employer Cor\u00e9e N., par ex. Pyongyang (Cor\u00e9e N.)", + "Le Royaume de Cor\u00e9e fut colonis\u00e9 par le Japon de 1905 \u00e0 la fin de la Seconde guerre mondiale. La partition, en 1945, en 2 zones d'occupation (USA et URSS) aboutit le 9 septembre 1948 \u00e0 la proclamation de la R\u00e9publique populaire d\u00e9mocratique de Cor\u00e9e par l'Assembl\u00e9e populaire supr\u00eame. Capitale Pyongyang, langue officielle cor\u00e9en" + ] } ], + "pid": "027316696", "type": "bf:Place", "broader": [ { - "authorized_access_point": "R\u00e9gion cara\u00efbe" + "authorized_access_point": "Cor\u00e9e" } ], + "variant_access_point": [ + "Chos\u01d2n", + "Cor\u00e9e du Nord", + "R\u00e9publique populaire d\u00e9mocratique de Cor\u00e9e", + "Cor\u00e9e, R\u00e9publique populaire d\u00e9mocratique de", + "Cor\u00e9e, R\u00e9publique populaire d\u00e9mocratique de (1948-....)" + ], + "md5": "df995129264e2c0e7f4c07c8c7282a38" + }, + { + "authorized_access_point": "\u00c9gypte", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027375412", + "value": "http://www.idref.fr/027316866", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119430639", - "source": "BNF" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040022935", - "source": "GND" + "value": "(DE-101)040005569" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/155553957", - "source": "VIAF" + "value": "http://viaf.org/viaf/128459794" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "IFLA, Names of states, 1981", + "https://fr.wikipedia.org/wiki/%C3%89gypte" + ] }, { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Antilles", - "source": "WIKIPEDIA" + "noteType": "seeReference", + "label": [ + "Voir aussi la subdivision Et l'\u00c9gypte aux personnes et collectivit\u00e9s" + ] } ], - "variant_access_point": [ - "Antillas", - "Antillen", - "Cara\u00efbes (\u00eeles)", - "Indes occidentales", - "West Indies" + "pid": "027316866", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Proche-Orient" + } + ], + "relation_pid": { + "value": "197265855", + "type": "redirect_from" + }, + "variant_access_point": [ + "Mi\u1e63r", + "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0645\u0635\u0631 \u0627\u0644\u0639\u0631\u0628\u064a\u0629", + "\u0645\u0635\u0631", + "Arab Republic of Egypt", + "RAE (R\u00e9publique Arabe d'\u00c9gypte)", + "R\u00e9publique arabe d'\u00c9gypte", + "United Arab Republic", + "R\u00e9publique arabe unie" ], - "authorized_access_point": "Antilles" + "md5": "ed0a531ce25489b9c94cbbf3f1c5a86e" }, { - "md5": "44a5ba54c4c821021d4a203daaaced4b", - "pid": "027377067", + "authorized_access_point": "Afrique occidentale", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027321940", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb162726289", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04079203X" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/315124800" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Afrique_de_l'Ouest" + } + ], "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981. GDEL" - ], - "noteType": "dataSource" + "Laval RVM, 1992-08" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette on trouve les ouvrages qui traitent de la partie de l'Afrique situ\u00e9e au sud du Sahara et \u00e0 l'ouest du Tchad et du Cameroun" + ] } ], + "pid": "027321940", "type": "bf:Place", - "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Amazonie (Bolivie)" + "authorized_access_point": "Afrique occidentale anglophone" }, { - "authorized_access_point": "Beni (Bolivie)" + "authorized_access_point": "Afrique occidentale francophone" }, { - "authorized_access_point": "Cochabamba (Bolivie ; d\u00e9partement)" + "authorized_access_point": "B\u00e9nin" }, { - "authorized_access_point": "La Paz (Bolivie ; d\u00e9partement)" + "authorized_access_point": "Burkina Faso" }, { - "authorized_access_point": "Potos\u00ed (Bolivie ; d\u00e9partement)" + "authorized_access_point": "Cap-Vert" }, { - "authorized_access_point": "Santa Cruz (Bolivie ; d\u00e9partement)" + "authorized_access_point": "C\u00f4te d'Ivoire" }, { - "authorized_access_point": "Chuquisaca (Bolivie ; d\u00e9partement)" + "authorized_access_point": "Gambie" }, { - "authorized_access_point": "Moxos (Bolivie)" + "authorized_access_point": "Ghana" }, { - "authorized_access_point": "Oriente (Bolivie)" - } - ], - "identifiedBy": [ + "authorized_access_point": "Guin\u00e9e" + }, { - "type": "uri", - "value": "http://www.idref.fr/027377067", - "source": "IDREF" + "authorized_access_point": "Guin\u00e9e-Bissau" }, { - "type": "bf:Nbn", - "value": "(DE-101)040076075", - "source": "GND" + "authorized_access_point": "Liberia" }, { - "type": "uri", - "value": "http://viaf.org/viaf/130756130", - "source": "VIAF" + "authorized_access_point": "Mali" }, { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Bolivie", - "source": "WIKIPEDIA" - } - ], - "variant_access_point": [ - "Alto Per\u00fa", - "Bolivia", - "Haut-P\u00e9rou", - "P\u00e9rou, Haut-" - ], - "authorized_access_point": "Bolivie" - }, - { - "md5": "fb702a2ecb8ea17b2821141f32270285", - "pid": "027377768", - "note": [ + "authorized_access_point": "Mauritanie" + }, { - "label": [ - "Names of states / IFLA, 1981. GDEL. SY, 1986/1987" - ], - "noteType": "dataSource" + "authorized_access_point": "Niger" }, { - "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent du territoire qui fut plac\u00e9 sous protectorat allemand, puis sous mandats fran\u00e7ais et britannique, et qui constitue aujourd'hui la R\u00e9publique du Cameroun" - ], - "noteType": "general" - } - ], - "type": "bf:Place", - "broader": [ + "authorized_access_point": "Nigeria" + }, { - "authorized_access_point": "Afrique centrale" - } - ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "authorized_access_point": "S\u00e9n\u00e9gal" + }, { - "type": "uri", - "value": "http://www.idref.fr/027377768", - "source": "IDREF" + "authorized_access_point": "Sierra Leone" }, { - "type": "bf:Nbn", - "value": "(DE-101)040294137", - "source": "GND" + "authorized_access_point": "Togo" }, { - "type": "uri", - "value": "http://viaf.org/viaf/147664051", - "source": "VIAF" + "authorized_access_point": "Guin\u00e9e (r\u00e9gion)" } ], "variant_access_point": [ - "Cameroon", - "Kamerun" + "Afrique (ouest)", + "Afrique de l'Ouest" ], - "authorized_access_point": "Cameroun" + "md5": "2058990252f4d7044a8130a8080cebb0" }, { - "md5": "0c4cafbf21716abfa4638a9fbbe4335f", - "pid": "027401421", - "note": [ - { - "label": [ - "GDEL" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Place", + "authorized_access_point": "Nouvelle-Z\u00e9lande", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027401421", + "value": "http://www.idref.fr/027323072", "source": "IDREF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040753034", - "source": "GND" - }, - { - "type": "uri", - "value": "http://d-nb.info/gnd/4075303-7", - "source": "GND" + "value": "(DE-101)040419150" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/173035857", - "source": "VIAF" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/83148570667224311413", - "source": "VIAF" + "value": "http://viaf.org/viaf/3232154260428024480001" } ], - "relation_pid": { - "type": "redirect_from", - "value": "088761398" - }, - "variant_access_point": [ - "Neuenburg (Suisse)", - "Neocomi Helvetorum", - "Neufch\u00e2tel", - "Neufchastel", - "Novum Castrum", - "Novi Castri", - "Neocomum", - "Neocomi" - ], - "authorized_access_point": "Neuch\u00e2tel (Neuch\u00e2tel, Suisse)" - }, - { - "md5": "c34d8ed6a07ab6449908bc87e50bd02e", - "pid": "027401448", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL. SY 1990/91" - ], - "noteType": "dataSource" + "Names of states / IFLA, 1981. Pays et capitales du monde / IGN, 1985" + ] } ], + "pid": "027323072", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Suisse - Cantons" + "authorized_access_point": "Australasie" + }, + { + "authorized_access_point": "Oc\u00e9anie" } ], + "variant_access_point": [ + "New Zealand", + "Nouvelle Z\u00e9lande" + ], + "md5": "7bca6f17af231bc4fa989655e74b3b96" + }, + { + "authorized_access_point": "Rh\u00e9nanie-Palatinat (Allemagne)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027401448", + "value": "http://www.idref.fr/027326977", "source": "IDREF" }, { - "type": "uri", - "value": "https://d-nb.info/gnd/4041745-1", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)04041745X", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/122584639", - "source": "VIAF" + "value": "(DE-101)04049795X" }, { + "source": "VIAF", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Principaut\u00e9_de_Neuch\u00e2tel", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/173418537" } ], - "variant_access_point": [ - "Neuch\u00e2tel (canton)", - "Neuch\u00e2tel (Principaut\u00e9)" - ], - "authorized_access_point": "Neuch\u00e2tel (Suisse ; canton)" - }, - { - "md5": "62a171741b815ad55ed0c3934ffb3228", - "pid": "027401901", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent du continent oc\u00e9anien, constitu\u00e9 par l'Australie, la Nouvelle-Z\u00e9lande et les archipels de M\u00e9lan\u00e9sie (y compris la Nouvelle-Guin\u00e9e), Micron\u00e9sie et Polyn\u00e9sie. Les ouvrages sur l'ensemble des \u00eeles de l'oc\u00e9an Pacifique se trouvent sous la vedette Pacifique, \u00celes du" - ], - "noteType": "general" + "GDEL. Rheinland-Pfalz ; GKD ; BN ACO" + ] } ], + "pid": "027326977", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Pacifique (r\u00e9gion)" + "authorized_access_point": "Rh\u00e9nanie (Allemagne)" + }, + { + "authorized_access_point": "Allemagne - L\u00e4nder" } ], + "variant_access_point": [ + "Rheinland-Pfalz" + ], + "md5": "22e6f045ec7f2675ee7b6c2d5b129c48" + }, + { + "authorized_access_point": "Sib\u00e9rie (Russie)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027401901", + "value": "http://www.idref.fr/027333752", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15364628m", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11939827w", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040442578", - "source": "GND" + "value": "(DE-101)040547809" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/312565208", - "source": "VIAF" + "value": "http://viaf.org/viaf/251794742" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Oc\u00e9anie", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Sib\u00e9rie" } ], - "authorized_access_point": "Oc\u00e9anie" - }, - { - "md5": "ae5c3e27c2ba9e8462652b53ec7436c6", - "pid": "027405621", "note": [ { + "noteType": "dataSource", "label": [ - "Names of states / IFLA, 1981" - ], - "noteType": "dataSource" + "GDEL" + ] } ], + "pid": "027333752", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Atlantique, \u00celes de l'" + "authorized_access_point": "Asie du Nord" }, { - "authorized_access_point": "Scandinavie" + "authorized_access_point": "Russie" } ], + "variant_access_point": [ + "Russie d'Asie", + "Sibir (Russie)" + ], + "md5": "fff7914395c199a902229a5ee1737406" + }, + { + "authorized_access_point": "Versailles (Yvelines)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027405621", + "value": "http://www.idref.fr/027334279", "source": "IDREF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040277542", - "source": "GND" + "value": "(DE-101)040631427" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/2599148574346024430006", - "source": "VIAF" + "value": "http://viaf.org/viaf/173254969" } ], - "variant_access_point": [ - "\u00cdsland" - ], - "authorized_access_point": "Islande" - }, - { - "md5": "9fe264e567bda6aaa2b3966f771bfe3d", - "pid": "027407012", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL" - ], - "noteType": "dataSource" + "Dict. communes, 1984" + ] } ], + "pid": "027334279", "type": "bf:Place", + "variant_access_point": [ + "Versailles" + ], + "md5": "372a200ba442bae55da04d7c6c258665" + }, + { + "authorized_access_point": "Hong Kong (Chine)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027407012", + "value": "http://www.idref.fr/027340880", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11864772p", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11940411f", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040367339", - "source": "GND" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)040367339", - "source": "GND" + "value": "(DE-101)04025822X" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/140255133", - "source": "VIAF" + "value": "http://viaf.org/viaf/261062131" } ], - "variant_access_point": [ - "Luzern (Suisse)" - ], - "authorized_access_point": "Lucerne (Suisse)" - }, - { - "md5": "caf22148beff6868e64cd0fbb639df93", - "pid": "027407918", "note": [ { + "noteType": "dataSource", "label": [ - "Laval RVM, 1995-08" - ], - "noteType": "dataSource" + "GLU, 1991 (Hongkong ou Hong Kong). Atlas Le Monde, 1993. Monde, 1997-07-02", + "Hong-Kong ; IFLA, Names of states, 1981. Hongkong ; Laval RVM, 1997-02. Hong Kong ; GKD, 1994-05" + ] }, { + "noteType": "general", "label": [ - "Sous cette vedette, on trouve les ouvrages qui traitent des pays dont le revenu par capital est relativement bas comparativement \u00e0 celui des pays nord-am\u00e9ricains et europ\u00e9ens. Cette vedette peut se subdiviser par toutes les subdivisions de sujet applicables aux noms de lieux, par ex. Pays en voie de d\u00e9veloppement -- Conditions \u00e9conomiques. Elle peut aussi \u00eatre utilis\u00e9e comme subdivision g\u00e9ographique sous les vedettes qui peuvent \u00eatre localis\u00e9es, par ex. Technologie -- Pays en voie de d\u00e9veloppement" - ], - "noteType": "general" + "Ville de Chine. Devenue colonie britannique en 1842, agrandie de Kowloon (1860) et des Nouveaux territoires (1898, pour un bail de 99 ans), elle est r\u00e9troc\u00e9d\u00e9e par la Grande-Bretagne \u00e0 la Chine le 01-07-1997" + ] } ], + "pid": "027340880", "type": "bf:Place", - "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Nouveaux pays industrialis\u00e9s" - }, - { - "authorized_access_point": "Pays ACP" - }, - { - "authorized_access_point": "Pays les moins avanc\u00e9s" - }, - { - "authorized_access_point": "Pays insulaires en voie de d\u00e9veloppement" - } + "relation_pid": { + "value": "152490701", + "type": "redirect_from" + }, + "variant_access_point": [ + "Hong Kong (colonie)", + "Hongkong (Chine)", + "Hsiang-kang (Chine)", + "Xianggang (Chine)", + "Hong Kong Special Administrative Region (Chine)", + "Xiang gang", + "Xianggang", + "Xiang gang te bie xing zheng qu (Chine)", + "Chung-hua jen min kung ho kuo Hsiang-kang t\u02bbe pieh hsing cheng ch\u02bb\u00fc", + "Zhonghua Renmin Gongheguo Xianggang Tebie Xingzhengqu", + "Zhong hua Ren min Gong he guo Xianggang Te bie Xing zheng qu", + "HKSAR", + "Hsiang-kang t\u02bbe pieh hsing cheng ch\u02bb\u00fc (Chine)", + "Hongkong S. A. R. (Chine)", + "Hongkong" ], + "md5": "21fda27674aaf6a793263b3a42612523" + }, + { + "authorized_access_point": "Indre (France)", + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027407918", + "value": "http://www.idref.fr/027341046", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119456356", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11940421r", "source": "BNF" }, { + "source": "VIAF", "type": "uri", - "value": "http://d-nb.info/gnd/4014954-7", - "source": "GND" + "value": "http://viaf.org/viaf/167743789" }, { - "type": "bf:Nbn", - "value": "(DE-101)040149544", - "source": "GND" + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Indre_(d\u00e9partement)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU, 1991" + ] }, { - "type": "uri", - "value": "http://viaf.org/viaf/173200037", - "source": "VIAF" + "noteType": "general", + "label": [ + "D\u00e9partement fran\u00e7ais (36)" + ] + } + ], + "pid": "027341046", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Berry (France)" }, { - "type": "uri", - "value": "http://viaf.org/viaf/259366441", - "source": "VIAF" + "authorized_access_point": "Centre (France)" } ], - "relation_pid": { - "type": "redirect_from", - "value": "27352111X" - }, "variant_access_point": [ - "Pays du tiers-monde", - "Sud global", - "Pays du Sud", - "Pays en d\u00e9veloppement", - "Pays sous-d\u00e9velopp\u00e9s", - "PVD", - "R\u00e9gions sous-d\u00e9velopp\u00e9es", - "Tiers-monde" + "Bas Berry (France)", + "Indre" ], - "authorized_access_point": "Pays en voie de d\u00e9veloppement" + "md5": "f1d63e37fa9d33491ddc488d8e2e2fed" }, { - "md5": "238c76ca91fddb9d484106ad2a9ff519", - "pid": "027408647", - "note": [ - { - "label": [ - "GLU" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Place", + "authorized_access_point": "Arctique", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027408647", + "value": "http://www.idref.fr/027341879", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15239961p", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15289876g", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040763102", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/153543031", - "source": "VIAF" + "value": "(DE-101)040029247" }, { + "source": "VIAF", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Prague", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/173636386" } ], - "variant_access_point": [ - "Prague", - "Praha (R\u00e9publique tch\u00e8que)" - ], - "authorized_access_point": "Prague (R\u00e9publique tch\u00e8que)" - }, - { - "md5": "4fd18544f4eb7a726755fa05584b802e", - "pid": "027416925", "note": [ { + "noteType": "dataSource", "label": [ - "GLU. BN ACO" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent de la vall\u00e9e d'Aoste ou de la R\u00e9gion autonome du Val d'Aoste" - ], - "noteType": "general" + "GLU, 1991", + "Laval RVM, 1996-08" + ] } ], + "pid": "027341879", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Italie (nord)" - }, - { - "authorized_access_point": "Italie - R\u00e9gions" + "authorized_access_point": "R\u00e9gions polaires" } ], + "variant_access_point": [ + "Arctique, Oc\u00e9an (r\u00e9gion)", + "Arctiques, R\u00e9gions", + "Grand Nord", + "R\u00e9gions arctiques", + "Terres arctiques" + ], + "md5": "b4835bbc5f5131d4ced69a7099537a6c" + }, + { + "authorized_access_point": "Orne (France)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027416925", + "value": "http://www.idref.fr/027345483", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11946285w", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11940746x", "source": "BNF" }, { + "source": "VIAF", "type": "uri", - "value": "http://d-nb.info/gnd/4002386-2", - "source": "GND" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)040023869", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/172872962", - "source": "VIAF" + "value": "http://viaf.org/viaf/5608148574276124430001" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Vall\u00e9e_d'Aoste_(coalition)", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Orne_(d\u00e9partement)" } ], - "variant_access_point": [ - "Aoste, Val d' (Italie)", - "Aoste, Vall\u00e9e d' (Italie)", - "Val d'Aoste", - "Valle d'Aosta (Italie)" - ], - "authorized_access_point": "Val d'Aoste (Italie)" - }, - { - "md5": "d43fc13934a81dc617d332584a3728a8", - "pid": "027417298", "note": [ { + "noteType": "dataSource", "label": [ - "GLU. Laval RVM, 2000-01" - ], - "noteType": "dataSource" + "GDEL" + ] }, { + "noteType": "general", "label": [ - "Sous cette vedette on trouve les documents sur le d\u00e9partement de la Savoie. Les documents sur la r\u00e9gion historique de la Savoie avant 1860 sont sous la vedette Savoie", - "D\u00e9partement fran\u00e7ais (73) ; chef-lieu : Chamb\u00e9ry" - ], - "noteType": "general" + "D\u00e9partement fran\u00e7ais (61)" + ] } ], + "pid": "027345483", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Rh\u00f4ne-Alpes (France)" - }, - { - "authorized_access_point": "Savoie (France ; r\u00e9gion)" + "authorized_access_point": "Basse-Normandie (France)" } ], + "variant_access_point": [ + "Orne" + ], + "md5": "4038f28cba605ac80f48a6b0bd3edb3e" + }, + { + "authorized_access_point": "Jura (France ; massif)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027417298", + "value": "http://www.idref.fr/027348695", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11946312z", - "source": "BNF" - }, - { - "type": "uri", - "value": "http://d-nb.info/gnd/4051850-4", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040518507", - "source": "GND" + "value": "(DE-101)04071330X" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/139289471", - "source": "VIAF" - } - ], - "variant_access_point": [ - "Savoie (d\u00e9partement)", - "Savoie (France ; d\u00e9partement)" - ], - "authorized_access_point": "Savoie (France)" - }, - { - "md5": "aadc4f6bb0da6d1325e76fb6c0bde95a", - "pid": "027429261", - "note": [ - { - "label": [ - "GDEL" - ], - "noteType": "dataSource" + "value": "http://viaf.org/viaf/980148574339324430007" } ], + "pid": "027348695", "type": "bf:Place", - "related": [ + "broader": [ { - "authorized_access_point": "Saint Point, Lac de (France)" + "authorized_access_point": "Jura (massif)" } ], + "md5": "7e0328ce0ed3c5d398776e33f425315d" + }, + { + "authorized_access_point": "Shanxi (Chine ; province)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027429261", + "value": "http://www.idref.fr/027349004", "source": "IDREF" }, { + "source": "VIAF", "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11947260s", - "source": "BNF" - }, - { - "type": "uri", - "value": "http://d-nb.info/gnd/4091200-0", - "source": "GND" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)040912000", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/3231148574348624430008", - "source": "VIAF" + "value": "http://viaf.org/viaf/172439138" } ], - "authorized_access_point": "Doubs (cours d'eau)" - }, - { - "md5": "c72befb94c45c521892539e15c2ebccc", - "pid": "027434141", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL. SY 1990/91" - ], - "noteType": "dataSource" + "Wikip\u00e9dia : https://fr.wikipedia.org/wiki/Shanxi, 37\u00b0 52\u2032 24\u2033 N, 112\u00b0 33\u2032 52\u2033 E", + "GDEL. Atlas Le Monde", + "\u5c71\u897f\u68ee\u6797 /\u300a\u5c71\u897f\u68ee\u6797\u300b\u7f16\u8f91\u59d4\u5458\u4f1a\u7f16\u8457,\u4e2d\u534e\u4eba\u6c11\u5171\u548c\u56fd\u6797\u4e1a\u90e8\u7ec4\u7ec7\u7f16\u5199, 1992", + "Shanxi sen lin / \"Shanxi sen lin\" bian ji wei yuan hui bian zhu,Zhonghua Renmin Gongheguo lin ye bu zu zhi bian xie,1992" + ] }, { + "noteType": "general", "label": [ - "Canton suisse" - ], - "noteType": "general" + "Province du Nord-Est, situ\u00e9e \u00e0 l'ouest des monts Taihang (\u592a\u884c\u5c71 pinyin : T\u00e0ihangsh\u0101n) et dont le nom signifie \u00ab \u00e0 l'ouest de la montagne \u00bb ; capitale Taiyuan (\u592a\u539f, pinyin : t\u00e0iyu\u00e1n)" + ] } ], + "pid": "027349004", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Suisse - Cantons" + "authorized_access_point": "Chine (nord)" + }, + { + "authorized_access_point": "Chine - Provinces" } ], + "variant_access_point": [ + "Chan-si", + "Shan-hsi", + "Shansi", + "\u5c71\u897f\u7701", + "Shanxi Sheng" + ], + "md5": "8dd2e30fe79a65491cae284d6a24961f" + }, + { + "authorized_access_point": "Navarre (France)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027434141", + "value": "http://www.idref.fr/027350169", "source": "IDREF" }, - { - "type": "bf:Nbn", - "value": "(DE-101)040290433", - "source": "GND" - }, { "type": "uri", - "value": "https://d-nb.info/gnd/4029043-8", - "source": "GND" + "value": "http://catalogue.bnf.fr/ark:/12148/cb11941113j", + "source": "BNF" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/155481782", - "source": "VIAF" + "value": "http://viaf.org/viaf/316733006" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/J\u016bra", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Basse-Navarre" } ], - "variant_access_point": [ - "Jura (canton)" - ], - "authorized_access_point": "Jura (Suisse ; canton)" - }, - { - "md5": "673228933377fd4f5099bebe10fcaebb", - "pid": "027437213", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL. Laval RVM suppl., 1988-03" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Emploi direct en subdivision : [Sujet] -- Suisse al\u00e9manique" - ], - "noteType": "general" + "Navarre fran\u00e7aise (France) ; Laval RVM suppl., 1989-06" + ] } ], + "pid": "027350169", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Pays de langue allemande" + "authorized_access_point": "Pays basque (Pyr\u00e9n\u00e9es-Atlantiques)" }, { - "authorized_access_point": "Suisse" + "authorized_access_point": "Navarre (Royaume)" } ], + "variant_access_point": [ + "Basse-Navarre (France)" + ], + "md5": "c0f80d1322451a7b87c4178b880dde97" + }, + { + "authorized_access_point": "Vienne (Autriche)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027437213", + "value": "http://www.idref.fr/027350843", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11947885s", - "source": "BNF" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040703525", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/315160381", - "source": "VIAF" + "value": "(DE-101)04066009" }, { + "source": "VIAF", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Suisse_al\u00e9manique", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/313001781" } ], - "variant_access_point": [ - "Suisse de langue allemande" - ], - "authorized_access_point": "Suisse al\u00e9manique" - }, - { - "md5": "39362e8dd413050ce08478a90e123fbf", - "pid": "027437221", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL. Laval RVM suppl., 1988-03" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Emploi direct en subdivision : [Sujet] -- Suisse romande" - ], - "noteType": "general" + "GDEL" + ] } ], + "pid": "027350843", "type": "bf:Place", - "broader": [ - { - "authorized_access_point": "Suisse" - }, - { - "authorized_access_point": "Europe francophone" - } + "variant_access_point": [ + "Vindobona (ville ancienne)", + "Vienna" ], + "md5": "a4129e2c325e588ddced8b932c85ba0e" + }, + { + "authorized_access_point": "Papouasie-Nouvelle-Guin\u00e9e", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027437221", + "value": "http://www.idref.fr/027350991", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119478864", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11941180p", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)041940458", - "source": "GND" + "value": "(DE-101)040445690" }, { + "source": "VIAF", "type": "uri", - "value": "http://d-nb.info/gnd/4194045-3", - "source": "GND" + "value": "http://viaf.org/viaf/151781392" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "http://viaf.org/viaf/172982288", - "source": "VIAF" + "value": "https://fr.wikipedia.org/wiki/Papouasie-Nouvelle-Guin\u00e9e" } ], - "variant_access_point": [ - "Suisse de langue francaise", - "Romandie" - ], - "authorized_access_point": "Suisse romande" - }, - { - "md5": "42eb923bc72cf150dc09cd103ef08313", - "pid": "027442128", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981. Pays et capitales du monde / IGN, 1986. Laval RVM, 1995-02" - ], - "noteType": "dataSource" + "IFLA, Names of states, 1981. SY 2000. GLU" + ] }, { + "noteType": "general", "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent du territoire du Rwanda, avant ou depuis son ind\u00e9pendance en 1962. Les ouvrages sur le Ruanda-Urundi, qui comprenait \u00e0 l'\u00e9poque coloniale le territoire des actuels Rwanda et Burundi, se trouvent sous la vedette Ruanda-Urundi" - ], - "noteType": "general" + "La Papouasie-Nouvelle-Guin\u00e9e, ind\u00e9pendante depuis le 16-09-1975, comprend l'ancienne Nouvelle-Guin\u00e9e allemande, plac\u00e9e en 1921 sous mandat australien, et la Papouasie, britannique depuis 1884" + ] } ], + "pid": "027350991", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Afrique centrale" + "authorized_access_point": "M\u00e9lan\u00e9sie" } ], + "variant_access_point": [ + "Papua New Guinea" + ], + "md5": "080c6e7fe826903c33335992f6bf4a70" + }, + { + "authorized_access_point": "Kazakhstan", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027442128", + "value": "http://www.idref.fr/027351076", "source": "IDREF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040769100", - "source": "GND" + "value": "(DE-101)040298396" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/3125148574307124430008", - "source": "VIAF" + "value": "http://viaf.org/viaf/153440315" } ], - "variant_access_point": [ - "Ruanda" - ], - "authorized_access_point": "Rwanda" - }, - { - "md5": "00007ac1b6b514973c6a1b41cb57f5f3", - "pid": "027443876", "note": [ { + "noteType": "dataSource", "label": [ - "GLU. Brockhaus, 19. Aufl.", - "Laval RVM, 2000-01. Bayern ; GKD, 1994-05. SWD, 1995-04" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Duch\u00e9 puis \u00e9lectorat (1623), royaume (1806), et l'un des dix cercles du Saint Empire. L'\u00c9tat libre de Bavi\u00e8re (capitale : Munich) comprend 7 Regierungsbezirke" - ], - "noteType": "general" + "GDEL" + ] } ], + "pid": "027351076", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Allemagne - L\u00e4nder" + "authorized_access_point": "Asie centrale" }, { - "authorized_access_point": "Allemagne (sud)" + "authorized_access_point": "Pays de la CEI" + } + ], + "narrower": [ + { + "authorized_access_point": "Kazakhstan (Sud-Est)" } ], + "variant_access_point": [ + "Kazakhie", + "Kazahstan", + "Qazaqstan" + ], + "md5": "8535b5750466c539e8c43172097073e0" + }, + { + "authorized_access_point": "Fribourg-en-Brisgau (Allemagne) - M\u00fcnster", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027443876", + "value": "http://www.idref.fr/027353990", "source": "IDREF" }, - { - "type": "bf:Nbn", - "value": "(DE-101)040050440", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/125426357", - "source": "VIAF" - }, { "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Bavi\u00e8re", - "source": "WIKIPEDIA" + "value": "http://catalogue.bnf.fr/ark:/12148/cb119414094", + "source": "BNF" } ], - "variant_access_point": [ - "Bavaria", - "Bavi\u00e8re", - "Bavi\u00e8re (Duch\u00e9)", - "Bavi\u00e8re (\u00c9lectorat)", - "Bavi\u00e8re (Royaume)", - "Bayerischer Kreis (Saint Empire romain germanique)", - "Bayern (Allemagne)", - "Freistaat Bayern", - "Bayerischer Reichskreis" - ], - "authorized_access_point": "Bavi\u00e8re (Allemagne)" - }, - { - "md5": "9ffd4d8c13639394b87264e58eab3bab", - "pid": "027465012", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL" - ], - "noteType": "dataSource" + "Freiburger M\u00fcnster ; LCNA, 1977-1986" + ] } ], + "pid": "027353990", "type": "bf:Place", + "relation_pid": { + "value": "11077471X", + "type": "redirect_from" + }, + "md5": "d5e41f55bdd8c18f75422ceddeac318c" + }, + { + "authorized_access_point": "Sardaigne (Italie)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027465012", + "value": "http://www.idref.fr/027356388", "source": "IDREF" }, { - "type": "bf:Nbn", - "value": "(DE-101)04051594X", - "source": "GND" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11941615m", + "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)04051594X", - "source": "GND" + "value": "(DE-101)040516865" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/9591148574375024430008", - "source": "VIAF" + "value": "http://viaf.org/viaf/172601866" } ], - "variant_access_point": [ - "Sankt Gallen (Suisse)", - "St. Gallen (Suisse)", - "St.Gallen (Suisse)", - "St Gall (Suisse)", - "Saint Gall (Suisse)", - "Saint-Gall (Suisse)", - "Sankt-Gallen (Suisse)" + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } ], - "authorized_access_point": "Saint-Gall (Suisse)" - }, - { - "md5": "56fbf8ca890840637cca0e582d2e9e58", - "pid": "027468909", + "pid": "027356388", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Berne (Suisse ; canton)" + "authorized_access_point": "Italie (sud)" + }, + { + "authorized_access_point": "M\u00e9diterran\u00e9e, \u00celes de la" + }, + { + "authorized_access_point": "Italie - R\u00e9gions" } ], + "variant_access_point": [ + "Sardaigne", + "Sardegna (Italie)" + ], + "md5": "0933c61d20a8573007fc8c0bd961d2dd" + }, + { + "authorized_access_point": "Floride (\u00c9tats-Unis)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027468909", + "value": "http://www.idref.fr/027358100", "source": "IDREF" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4005783-5", - "source": "GND" + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040175855" }, { - "type": "bf:Nbn", - "value": "(DE-101)04005783", - "source": "GND" + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/157185686" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "http://viaf.org/viaf/5974148574360224430000", - "source": "VIAF" + "value": "https://fr.wikipedia.org/wiki/Floride" } ], - "authorized_access_point": "Oberland bernois (Suisse)" - }, - { - "md5": "9284327d57ff34837b40a5cc50d64536", - "pid": "027472906", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL. Laval RVM, 1991-02" - ], - "noteType": "dataSource" + "GDEL" + ] }, { + "noteType": "general", "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent de l'empire byzantin, de 395 \u00e0 1453. Les ouvrages qui traitent de la ville de Byzance avant 330 se trouvent sous la vedette Byzance" - ], - "noteType": "general" + "En pr\u00e9cision de lieu, employer Fla., par ex. Tallahassee (Fla.)" + ] } ], + "pid": "027358100", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Orient" + "authorized_access_point": "\u00c9tats du Golfe (\u00c9tats-Unis)" + }, + { + "authorized_access_point": "\u00c9tats du Sud-Atlantique (\u00c9tats-Unis)" + }, + { + "authorized_access_point": "\u00c9tats-Unis - \u00c9tats" } ], + "variant_access_point": [ + "Florida (\u00c9tats-Unis)" + ], + "md5": "55c469c787b153ddc0171245b2e827e6" + }, + { + "authorized_access_point": "Gansu (Chine ; province)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027472906", + "value": "http://www.idref.fr/027358232", "source": "IDREF" }, { - "type": "bf:Nbn", - "value": "(DE-101)040092569", - "source": "GND" + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173309143" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Atlas Le Monde", + "GeoNames (2019-11-28)" + ] }, { - "type": "uri", - "value": "http://viaf.org/viaf/149804778", - "source": "VIAF" + "noteType": "general", + "label": [ + "Le Gansu est une province du nord-ouest de la R\u00e9publique populaire de Chine. Longue province \u00e9troite, coinc\u00e9e entre le plateau de Mongolie au nord et les contreforts du plateau Tib\u00e9tain au sud, \u00e9pousant le trac\u00e9 principal de l'ancienne route de la soie, le Gansu est habit\u00e9 par environ 26 millions d'habitants (en 2004), dont une minorit\u00e9 importante de Hui. La capitale, Lanzhou, est situ\u00e9e dans le sud-est de la province.", + "Coordonn\u00e9es en degr\u00e9s s\u00e9xag\u00e9simaux : N 37\u00b045\u203200\u2033 / E 102\u00b045\u203200\u2033" + ] + } + ], + "pid": "027358232", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Chine (ouest)" }, { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Empire_byzantin", - "source": "WIKIPEDIA" + "authorized_access_point": "Chine - Provinces" } ], "variant_access_point": [ - "Byzantin, Empire", - "Empire d'Orient", - "Empire romain d'Orient", - "Orient, Empire d'" + "\u7518\u8085\u7701", + "Kan-sou (Chine)", + "Kansu (Chine)", + "\u7518\u8083\u7701", + "Gansu Sheng" ], - "authorized_access_point": "Empire byzantin" + "md5": "dbe39253685c78e915da050d923a213c" }, { - "md5": "f8745fdc6e028d1500b72f23ca92dd02", - "pid": "027483304", - "note": [ - { - "label": [ - "GLU" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Place", - "broader": [ - { - "authorized_access_point": "Europe centrale" - } - ], + "authorized_access_point": "Indon\u00e9sie", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027483304", + "value": "http://www.idref.fr/027358305", "source": "IDREF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040738418", - "source": "GND" + "value": "(DE-101)04026761X" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/8072148574327224430003", - "source": "VIAF" + "value": "http://viaf.org/viaf/4708148574313724430000" } ], - "variant_access_point": [ - "Hrvatska", - "\u0425\u0440\u0432\u0430\u0442\u0441\u043a\u0430", - "Hrvatska" - ], - "authorized_access_point": "Croatie" - }, - { - "md5": "fcd039c6ffdcc01d9db55fec393bdda8", - "pid": "027501302", "note": [ { + "noteType": "dataSource", "label": [ - "Names of states / IFLA, 1981", - "wikipedia.org, 2019-07-25" - ], - "noteType": "dataSource" + "IFLA, Names of states, 1981. GDEL" + ] } ], + "pid": "027358305", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Balkans" + "authorized_access_point": "Insulinde" } ], + "variant_access_point": [ + "Indes n\u00e9erlandaises", + "Indes orientales", + "Indonesia" + ], + "md5": "7ddefd735ad3a12fb1fa9c204aa48a0d" + }, + { + "authorized_access_point": "Is\u00e8re (France)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027501302", + "value": "http://www.idref.fr/027358321", "source": "IDREF" }, { "type": "uri", - "value": "https://catalogue.bnf.fr/ark:/12148/cb11952716p", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119417674", "source": "BNF" }, { - "type": "bf:Nbn", - "value": "(DE-101)040010287", - "source": "GND" + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/263181452" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "http://viaf.org/viaf/8663159248210104870006", - "source": "VIAF" + "value": "https://fr.wikipedia.org/wiki/Is\u00e8re_(rivi\u00e8re)" } ], - "variant_access_point": [ - "Shqipe\u034f\u0308ri", - "Shqip\u00ebria", - "Arbri", - "Arb\u00ebria", - "Republika e Shqip\u00ebris\u00eb" - ], - "authorized_access_point": "Albanie" - }, - { - "md5": "7b7f3e6118ee674a00fd17bb3b65dc3d", - "pid": "027501418", "note": [ { + "noteType": "dataSource", "label": [ "GDEL" - ], - "noteType": "dataSource" + ] }, { + "noteType": "general", "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent de la Ciscaucasie (versant nord du Grand Caucase) et de la Transcaucasie (versant sud du Grand Caucase, d\u00e9pression Rion-Koura et Petit Caucase)" - ], - "noteType": "general" + "D\u00e9partement fran\u00e7ais (38)" + ] } ], + "pid": "027358321", "type": "bf:Place", - "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Grand Caucase (monts)" - }, + "broader": [ { - "authorized_access_point": "Petit Caucase (monts)" + "authorized_access_point": "Dauphin\u00e9 (France)" }, { - "authorized_access_point": "Transcaucasie" + "authorized_access_point": "Rh\u00f4ne-Alpes (France)" } ], + "variant_access_point": [ + "Is\u00e8re", + "Is\u00e8re - D\u00e9partement" + ], + "md5": "95bee8b5381f0651fa9f04c2f1701c08" + }, + { + "authorized_access_point": "Mauritanie", + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027501418", + "value": "http://www.idref.fr/027358399", "source": "IDREF" }, { + "type": "uri", + "value": "https://catalogue.bnf.fr/ark:/12148/cb119417732", + "source": "BNF" + }, + { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040300900", - "source": "GND" + "value": "(DE-101)040380513" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/172982363", - "source": "VIAF" + "value": "http://viaf.org/viaf/152430470" } ], - "variant_access_point": [ - "Caucasie", - "Kavkaz" - ], - "authorized_access_point": "Caucase" - }, - { - "md5": "d1877545b0f2135c8669a54206768cfa", - "pid": "027502333", "note": [ { + "noteType": "dataSource", "label": [ - "GLU (art. Extr\u00eame-Orient)", - "Extr\u00eame-Orient ; Laval RVM, 1998-07" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent de la partie de l'Asie comprenant la Chine, la Cor\u00e9e, le Japon, la Sib\u00e9rie orientale, l'Indochine et l'Insulinde" - ], - "noteType": "general" + "Names of states / IFLA, 1981" + ] } ], + "pid": "027358399", "type": "bf:Place", - "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Asie du Nord-Est" - }, - { - "authorized_access_point": "Asie du Sud-Est" - }, + "broader": [ { - "authorized_access_point": "Chine" + "authorized_access_point": "Afrique occidentale" }, { - "authorized_access_point": "Cor\u00e9e" - }, + "authorized_access_point": "Afrique du Nord" + } + ], + "variant_access_point": [ + "Mauritanie (R\u00e9publique)", + "M\u016britan\u012b\u0101" + ], + "md5": "5fffb24bb88c0ea35cd77c15ad53dc32" + }, + { + "authorized_access_point": "France - 1562-1598 (Guerres de religion)", + "bnf_type": "sujet Rameau", + "classification": [ { - "authorized_access_point": "Japon" + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)" }, { - "authorized_access_point": "Pacifique, C\u00f4te du (Asie)" - }, + "type": "bf:ClassificationDdc", + "classificationPortion": "944", + "name": "Histoire de la France (depuis 486)" + } + ], + "closeMatch": [ { - "authorized_access_point": "Sib\u00e9rie (Russie ; est)" + "authorized_access_point": "France--History--Wars of the Huguenots, 1562-1598", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85051298", + "source": "LCSH" + } + ] }, { - "authorized_access_point": "Ta\u00efwan" + "authorized_access_point": "France -- Histoire -- 1562-1598 (Guerres de religion)", + "source": "RVMLaval" } ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027502333", + "value": "http://www.idref.fr/027359336", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119528028", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119418453", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040757277", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/172332114", - "source": "VIAF" + "value": "(DE-101)041607686" } ], - "variant_access_point": [ - "Asie (est)", - "Asie de l'Est", - "Asie-Pacifique, R\u00e9gion", - "Extr\u00eame-Orient", - "Orient, Extr\u00eame-" - ], - "authorized_access_point": "Asie orientale" - }, - { - "md5": "0eddcb032da4278d7bbf6b80a381b719", - "pid": "027502368", "note": [ { + "noteType": "dataSource", "label": [ - "GLU", - "Laval RVM, 2001-01" - ], - "noteType": "dataSource" + "Grand Larousse universel : Religion (guerres de)", + "Robert encyclop\u00e9dique des noms propres 2008 : Religion (guerres de)", + "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1996 : Religion (guerres de)", + "Les guerres de religion / G. Livet, 2002", + "Les guerres de religion / P. Miquel, 1980" + ] }, { + "noteType": "general", "label": [ - "Sous cette vedette on trouve les documents qui traitent de la partie de l'Asie situ\u00e9e \u00e0 l'est de l'Inde et au sud de la Chine, comprenant l'Indochine (Birmanie, Cambodge, Laos, Malaisie, Tha\u00eflande et Viet-Nam) et l'Insulinde (Brun\u00e9i, Indon\u00e9sie, Malaisie orientale, Philippines et Singapour)" - ], - "noteType": "general" + "1er mars 1562 : massacre de Wassy. 13 avril 1598 : \u00e9dit de Nantes ; 2 mai 1598 : trait\u00e9 de Vervins" + ] } ], + "pid": "027359336", "type": "bf:Place", - "broader": [ - { - "authorized_access_point": "Asie orientale" - } - ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "related": [ { - "type": "uri", - "value": "http://www.idref.fr/027502368", - "source": "IDREF" + "authorized_access_point": "France - 1560-1574 (Charles IX)" }, { - "type": "bf:Nbn", - "value": "(DE-101)040584488", - "source": "GND" + "authorized_access_point": "France - 1574-1589 (Henri III)" }, { - "type": "uri", - "value": "http://viaf.org/viaf/255510483", - "source": "VIAF" - }, + "authorized_access_point": "France - 1589-1610 (Henri IV)" + } + ], + "narrower": [ { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Asie_du_Sud-Est", - "source": "WIKIPEDIA" + "authorized_access_point": "France - 1562-1598 (Guerres de religion) - Op\u00e9rations militaires" } ], - "variant_access_point": [ - "ASEAN, Pays de l'", - "Asie (sud-est)", - "Asie sud-orientale", - "Association des nations de l'Asie du Sud-Est, Pays de l'", - "Pays de l'ASEAN", - "Pays de l'Association des nations de l'Asie du Sud-Est", - "Sud-Est asiatique" + "broader": [ + { + "authorized_access_point": "France - 16e si\u00e8cle" + } ], - "authorized_access_point": "Asie du Sud-Est" + "md5": "0b564da424c3ebf4a2987d3bf4d30e68" }, { - "md5": "280155536c821eac8382978909f0ec8b", - "pid": "027524329", - "type": "bf:Place", + "authorized_access_point": "Balkans", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027524329", + "value": "http://www.idref.fr/027360199", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119546266", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11941903f", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040713326", - "source": "GND" + "value": "(DE-101)040690997" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/173309353", - "source": "VIAF" + "value": "http://viaf.org/viaf/60144648482279885458" } ], - "variant_access_point": [ - "Carolingien (empire)" - ], - "authorized_access_point": "Empire carolingien" - }, - { - "md5": "470242430d551967cefc05a735eaf8df", - "pid": "027526836", "note": [ { + "noteType": "dataSource", "label": [ - "BN ACO" - ], - "noteType": "dataSource" + "GDEL", + "Balkans ; Laval RVM, 1992-02" + ] } ], + "pid": "027360199", "type": "bf:Place", - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "narrower": [ { - "type": "uri", - "value": "http://www.idref.fr/027526836", - "source": "IDREF" + "authorized_access_point": "Albanie" }, { - "type": "bf:Nbn", - "value": "(DE-101)040714446", - "source": "GND" + "authorized_access_point": "Bosnie-Herz\u00e9govine" }, { - "type": "bf:Nbn", - "value": " https://d-nb.info/gnd/4071444-5", - "source": "GND" + "authorized_access_point": "Bulgarie" }, { - "type": "uri", - "value": "http://viaf.org/viaf/124901897", - "source": "VIAF" + "authorized_access_point": "Ex-Yougoslavie" }, { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Fribourg_(ville_suisse)", - "source": "WIKIPEDIA" - } - ], - "variant_access_point": [ - "Freiburg im \u00dcchtland (Freiburg, Schweiz)" - ], - "authorized_access_point": "Fribourg (Fribourg, Suisse)" - }, - { - "md5": "f75dd2952d14665687cc9f0c17b830bd", - "pid": "02754785X", - "note": [ + "authorized_access_point": "Gr\u00e8ce" + }, { - "label": [ - "GDEL. SY 1990/91" - ], - "noteType": "dataSource" + "authorized_access_point": "Mac\u00e9doine" }, { - "label": [ - "Canton suisse" - ], - "noteType": "general" + "authorized_access_point": "Mac\u00e9doine du Nord (R\u00e9publique)" + }, + { + "authorized_access_point": "M\u00e9sie" + }, + { + "authorized_access_point": "Mont\u00e9n\u00e9gro" + }, + { + "authorized_access_point": "Roumanie" + }, + { + "authorized_access_point": "Serbie" + }, + { + "authorized_access_point": "Thrace" } ], - "type": "bf:Place", "broader": [ { - "authorized_access_point": "Suisse - Cantons" + "authorized_access_point": "Europe du Sud" } ], + "variant_access_point": [ + "Balkanique, P\u00e9ninsule", + "Europe (sud-est)", + "Europe du Sud-Est", + "Pays balkaniques" + ], + "md5": "42e33009acb406d9cbe45aa5c7605d23" + }, + { + "authorized_access_point": "For\u00eat-Noire (Allemagne ; massif)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/02754785X", + "value": "http://www.idref.fr/027360881", "source": "IDREF" }, { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12363185d", + "source": "BNF" + }, + { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)041196058", - "source": "GND" + "value": "(DE-101)040538079" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/117148570735124312537", - "source": "VIAF" + "value": "http://viaf.org/viaf/248969460" } ], - "variant_access_point": [ - "Thurgau (Suisse)" - ], - "authorized_access_point": "Thurgovie (Suisse)" - }, - { - "md5": "e97c9bca0239ced4b53491e7c92f80fc", - "pid": "027584763", "note": [ { + "noteType": "dataSource", "label": [ - "Laval RVM, 1996-08" - ], - "noteType": "dataSource" + "GDEL" + ] } ], + "pid": "027360881", "type": "bf:Place", - "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Afrique francophone" - }, - { - "authorized_access_point": "Am\u00e9rique francophone" - }, - { - "authorized_access_point": "Europe francophone" - } + "variant_access_point": [ + "Schwarzwald (Allemagne ; massif)", + "For\u00eat Noire" ], + "md5": "300693e3987cf8041e16b058aaee86b2" + }, + { + "authorized_access_point": "Ars-sur-Formans (Ain)", + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027584763", + "value": "http://www.idref.fr/027366456", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11959324w", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11942363w", "source": "BNF" }, { - "type": "bf:Nbn", - "value": "(DE-101)040181413", - "source": "GND" + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/141163407" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "http://viaf.org/viaf/13144647641039724008", - "source": "VIAF" + "value": "https://fr.wikipedia.org/wiki/Ars-sur-Formans" } ], - "variant_access_point": [ - "Pays francophones", - "R\u00e9gions de langue fran\u00e7aise" - ], - "authorized_access_point": "Pays de langue fran\u00e7aise" - }, - { - "md5": "168456b1c3f70d88e62cb7825e56ba8a", - "pid": "027585190", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL" - ], - "noteType": "dataSource" + "Dict. communes, 1984" + ] } ], + "pid": "027366456", "type": "bf:Place", - "related": [ - { - "authorized_access_point": "Pomp\u00e9i (ville ancienne)" - } - ], + "md5": "c01f0e40795bc118e7b2275778284b83" + }, + { + "authorized_access_point": "Asie du Sud", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027585190", + "value": "http://www.idref.fr/027366936", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119593586", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119424039", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040467554", - "source": "GND" + "value": "(DE-101)040584062" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/316884438", - "source": "VIAF" + "value": "http://viaf.org/viaf/254470885" } ], - "authorized_access_point": "Pomp\u00e9i (Italie)" - }, - { - "md5": "1113a5baacbd21bd3be2a559ef57c92f", - "pid": "027597334", + "note": [ + { + "noteType": "general", + "label": [ + "Sous cette vedette on trouve les ouvrages qui traitent de l'Inde et des pays voisins : Pakistan, N\u00e9pal, Bhoutan, Bangladesh, Sri Lanka et Maldives" + ] + } + ], + "pid": "027366936", "type": "bf:Place", - "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Etats du Pacifique (Etats-Unis)" - }, - { - "authorized_access_point": "\u00c9tats-Unis (nord-ouest)" - }, - { - "authorized_access_point": "\u00c9tats-Unis (sud-ouest)" + "authorized_access_point": "Bangladesh" }, { - "authorized_access_point": "Grand Bassin (\u00c9tats-Unis)" + "authorized_access_point": "Bhoutan" }, { - "authorized_access_point": "Grandes Plaines (\u00c9tats-Unis)" - } - ], - "identifiedBy": [ - { - "type": "uri", - "value": "http://www.idref.fr/027597334", - "source": "IDREF" + "authorized_access_point": "Inde" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11960312x", - "source": "BNF" + "authorized_access_point": "Maldives" }, { - "type": "bf:Nbn", - "value": "(DE-101)041355350", - "source": "GND" + "authorized_access_point": "N\u00e9pal" }, { - "type": "uri", - "value": "http://viaf.org/viaf/172385909", - "source": "VIAF" + "authorized_access_point": "Pakistan" }, { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Ouest_am\u00e9ricain", - "source": "WIKIPEDIA" + "authorized_access_point": "Sri Lanka" } ], - "relation_pid": { - "type": "redirect_from", - "value": "027597377" - }, "variant_access_point": [ - "\u00c9tats de l'Ouest (\u00c9tats-Unis)", - "Far West", - "Far Ouest", - "Ouest am\u00e9ricain" + "Asie (sud)", + "Asie m\u00e9ridionale", + "Indien, Sous-continent", + "Sous continent indien" ], - "authorized_access_point": "\u00c9tats-Unis (ouest)" + "md5": "c479073b8f5232cbe2a879c810924010" }, { - "md5": "06ae55c19ac6e366222f9f7677e762ce", - "pid": "027614697", - "note": [ + "authorized_access_point": "Naples (Italie ; Royaume)", + "bnf_type": "sujet Rameau", + "classification": [ { - "label": [ - "Names of states / IFLA, 1981" - ], - "noteType": "dataSource" + "type": "bf:ClassificationDdc", + "classificationPortion": "914" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "940", + "name": "Histoire m\u00e9di\u00e9vale, moderne et contemporaine (sauf la France)" } ], - "type": "bf:Place", - "broader": [ + "closeMatch": [ { - "authorized_access_point": "Proche-Orient" + "authorized_access_point": "Naples (Kingdom)", + "source": "LCA", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/names/n79063272", + "source": "LCA" + } + ] + }, + { + "authorized_access_point": "Naples (Royaume)", + "source": "RVMLaval" } ], - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027614697", + "value": "http://www.idref.fr/02736819X", "source": "IDREF" }, { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11942515k", + "source": "BNF" + }, + { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040287505", - "source": "GND" + "value": "(DE-101)040414787" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/204148574377724430003", - "source": "VIAF" + "value": "http://viaf.org/viaf/9120164963977824300002" } ], - "variant_access_point": [ - "Transjordanie", - "\u0627\u0644\u0623\u0631\u062f\u0646", - "Al-Urdun" - ], - "authorized_access_point": "Jordanie" - }, - { - "md5": "69d69836df8ab4accbab7cf1ce291f9b", - "pid": "027622444", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981", - "Laval RVM, 1996-02. Sverige ; GKD, 1994-05" - ], - "noteType": "dataSource" + "Grand Larousse universel", + "Robert encyclop\u00e9dique des noms propres 2008", + "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1996" + ] }, { + "noteType": "general", "label": [ - "Voir aussi la subdivision Et la Su\u00e8de aux personnes et collectivit\u00e9s" - ], - "noteType": "seeReference" + "Le sud de la p\u00e9ninsule italienne (Pouille, Calabre) uni \u00e0 la Sicile forme le royaume de Sicile en 1130. En 1282 la Sicile devient aragonaise, mais Charles d'Anjou, roi depuis 1266, se maintient dans la partie p\u00e9ninsulaire du royaume, qui devient le royaume de Naples ou de Terre ferme. Royaume de Naples et Sicile sont \u00e0 nouveau unis sous un m\u00eame roi en 1442-1458, sous la domination espagnole (1504-1707), autrichienne (1707-1713, 1720-1734), puis sous les Bourbons de Naples (1734-1799, 1799-1806, 1815-1816). Naples et Sicile forment de 1816 \u00e0 1861 le royaume des Deux-Siciles", + "Sous cette vedette, on trouve les documents sur le royaume de Naples de 1268\u00e0 1816, seul ou uni au royaume de Sicile. Les documents sur le sud de la p\u00e9ninsule italienne avant 1268 se trouvent sous Italie (sud). Les documents sur le royaume de Sicile se trouvent sous Sicile (Italie). Les documents sur le royaume unitaire des Deux-Siciles (1816-1861) se trouvent sous Royaume des Deux-Siciles" + ] } ], + "pid": "02736819X", "type": "bf:Place", - "broader": [ - { - "authorized_access_point": "Scandinavie" - }, - { - "authorized_access_point": "Pays de l'Union europ\u00e9enne" - } + "variant_access_point": [ + "Napoli, Regno di", + "Regno di Napoli", + "Royaume de Naples", + "Royaume de Terre ferme", + "Terre ferme, Royaume de" ], + "md5": "ac666ad9c00bc9c60972db6645be5fe8" + }, + { + "authorized_access_point": "Lyon (Rh\u00f4ne ; agglom\u00e9ration)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027622444", + "value": "http://www.idref.fr/027368343", "source": "IDREF" }, { + "source": "VIAF", "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb13953240p", - "source": "BNF" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)040772586", - "source": "GND" + "value": "http://viaf.org/viaf/173364079" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "http://viaf.org/viaf/178302678", - "source": "VIAF" - } - ], - "variant_access_point": [ - "Sverige" - ], - "authorized_access_point": "Su\u00e8de" - }, - { - "md5": "7c07b2713b88aad30b805feb49909f67", - "pid": "027633179", - "note": [ - { - "label": [ - "IFLA, Names of states, 1981. GLU, 1991", - "Laval RVM, 1996-08" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Voir aussi la subdivision Et la Chine aux personnes et collectivit\u00e9s" - ], - "noteType": "seeReference" + "value": "https://fr.wikipedia.org/wiki/Lyon" } ], + "pid": "027368343", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Asie du Nord-Est" - }, - { - "authorized_access_point": "Asie orientale" + "authorized_access_point": "Lyon (Rh\u00f4ne ; r\u00e9gion)" } ], + "relation_pid": { + "value": "184304202", + "type": "redirect_from" + }, + "variant_access_point": [ + "Lyon, Aire m\u00e9tropolitaine" + ], + "md5": "a76f61150f31a815019a003fc5bc4bbb" + }, + { + "authorized_access_point": "Tr\u00e8ves (Allemagne)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027633179", + "value": "http://www.idref.fr/027368785", "source": "IDREF" }, { - "type": "uri", - "value": "https://catalogue.bnf.fr/ark:/12148/cb11963283w", - "source": "BNF" - }, - { - "type": "uri", - "value": "https://d-nb.info/gnd/4009937-4", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040099377", - "source": "GND" + "value": "(DE-101)040608778" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/5951158188189220260002", - "source": "VIAF" + "value": "http://viaf.org/viaf/8916148574372424430008" } ], - "variant_access_point": [ - "Cathay", - "C\u00e9leste empire", - "Chine (R\u00e9publique populaire)", - "Chine populaire", - "Empire c\u00e9leste", - "Empire du Milieu", - "Milieu, Empire du", - "\u4e2d\u570b", - "\u4e2d\u83ef\u4eba\u6c11\u5171\u548c\u570b", - "Zhonghua Ren min Gong he guo", - "Zhonghua Renmin Gong he guo", - "\u4e2d\u56fd", - "Zhongguo", - "\u4e2d\u534e\u4eba\u6c11\u5171\u548c\u56fd", - "Zhonghua Renmin Gongheguo" - ], - "authorized_access_point": "Chine" - }, - { - "md5": "85db08d809c37be49e2161f50fb65cdc", - "pid": "02763857X", "note": [ { + "noteType": "dataSource", "label": [ "GDEL" - ], - "noteType": "dataSource" + ] } ], + "pid": "027368785", "type": "bf:Place", - "broader": [ - { - "authorized_access_point": "Himalaya" - } + "variant_access_point": [ + "Augusta Treverorum (ville ancienne)", + "Trier (Allemagne)" ], + "md5": "d08fbb412516c82ee37d440be9b88d95" + }, + { + "authorized_access_point": "Le Caire (\u00c9gypte)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/02763857X", + "value": "http://www.idref.fr/027370763", "source": "IDREF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)04040417X", - "source": "GND" + "value": "(DE-101)040292363" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/247168735", - "source": "VIAF" - }, - { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Everest", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/125715126" } ], - "variant_access_point": [ - "Chomolungma (mont)" + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } ], - "authorized_access_point": "Everest, Mont" - }, - { - "md5": "64aea29bb1ee34ad68ec960f56b698dd", - "pid": "027705781", + "pid": "027370763", "type": "bf:Place", - "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Rhodanien, Sillon (France)" + "authorized_access_point": "Fustat (\u00c9gypte ; ville ancienne)" } ], + "variant_access_point": [ + "Caire, Le (\u00c9gypte)", + "Cairo", + "(\u0627\u0644\u0642\u0627\u0647\u0631\u0629 (\u0645\u0635\u0631", + "Al-Q\u0101hira\u1e97 (Mi\u1e63r)" + ], + "md5": "d2917c48b0b57e3d0d3684e51b22928e" + }, + { + "authorized_access_point": "Amazone (cours d'eau)", + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027705781", + "value": "http://www.idref.fr/027372618", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119691089", - "source": "BNF" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)041037766", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)041037766", - "source": "GND" + "value": "(DE-101)040016269" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/173745158", - "source": "VIAF" + "value": "http://viaf.org/viaf/173309158" } ], - "authorized_access_point": "Rh\u00f4ne, Vall\u00e9e du" - }, - { - "md5": "68e6966c7614c941c9c3350997d3c586", - "pid": "02773417X", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL" - ], - "noteType": "dataSource" + "GLU. Atlas Le Monde" + ] + }, + { + "noteType": "general", + "label": [ + "Rio Solim\u00f5es est le nom portugais de l'Amazone en amont de Manaus" + ] } ], + "pid": "027372618", "type": "bf:Place", + "variant_access_point": [ + "Amazonas, R\u00edo", + "Solim\u00f5es, Rio" + ], + "md5": "0116b45a4d2e7ce42e99267fa5afede6" + }, + { + "authorized_access_point": "Afrique australe", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/02773417X", + "value": "http://www.idref.fr/027374750", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15294892q", + "value": "http://catalogue.bnf.fr/ark:/12148/cb162726316", "source": "BNF" }, { "type": "uri", - "value": "http://d-nb.info/gnd/4020144-2", - "source": "GND" + "value": "http://catalogue.bnf.fr/ark:/12148/cb11943016s", + "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040201449", - "source": "GND" + "value": "(DE-101)040583937" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/237685109", - "source": "VIAF" - }, - { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/L\u00e9man", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/152394654" } ], - "variant_access_point": [ - "Gen\u00e8ve, Lac de" - ], - "authorized_access_point": "L\u00e9man, Lac" - }, - { - "md5": "d32fe8280c4844f0ffcb5c67553d3e82", - "pid": "02775751X", "note": [ { + "noteType": "dataSource", "label": [ - "Alps, Italian (Italy) ; LCSH, 1988-12" - ], - "noteType": "dataSource" + "Laval RVM, 1992-02" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette, on trouve les ouvrages qui traitent de la partie de l'Afrique situ\u00e9e au sud du Zai\u034f\u0308re et de la Tanzanie. Les ouvrages sur la R\u00e9publique d'Afrique du Sud se trouvent sous la vedette Afrique du Sud" + ] } ], + "pid": "027374750", "type": "bf:Place", - "bnf_type": "sujet Rameau", "narrower": [ { - "authorized_access_point": "Grappa (Italie ; massif)" + "authorized_access_point": "Afrique du Sud" }, { - "authorized_access_point": "Cadore (Italie)" + "authorized_access_point": "Angola" }, { - "authorized_access_point": "Dolomites (Italie ; massif)" + "authorized_access_point": "Botswana" }, { - "authorized_access_point": "Alpes juliennes" + "authorized_access_point": "Lesotho" }, { - "authorized_access_point": "Alpes cottiennes" + "authorized_access_point": "Malawi" }, { - "authorized_access_point": "Alpes maritimes (massif)" + "authorized_access_point": "Mozambique" }, { - "authorized_access_point": "Adamello (Italie ; massif)" - } - ], - "identifiedBy": [ + "authorized_access_point": "Namibie" + }, { - "type": "uri", - "value": "http://www.idref.fr/02775751X", - "source": "IDREF" + "authorized_access_point": "Swaziland" }, { - "type": "bf:Nbn", - "value": "(DE-101)040278395", - "source": "GND" + "authorized_access_point": "Zambie" }, { - "type": "uri", - "value": "http://viaf.org/viaf/316431852", - "source": "VIAF" + "authorized_access_point": "Zimbabwe" } ], "variant_access_point": [ - "Alpes italiennes" + "Afrique (sud)", + "Afrique m\u00e9ridionale" ], - "authorized_access_point": "Alpes (Italie)" + "md5": "ae4648147c244f19605a0f8be55c9875" }, { - "md5": "86f849fc2b060f97c60510e5d670c11c", - "pid": "027768678", - "note": [ - { - "label": [ - "France (Sud) ; Laval RVM, 1996-02" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Place", + "authorized_access_point": "Ain (France ; cours d'eau)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027768678", + "value": "http://www.idref.fr/027374831", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11974022k", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11943022q", "source": "BNF" }, { - "type": "bf:Nbn", - "value": "(DE-101)040714039", - "source": "GND" - }, - { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/172332341", - "source": "VIAF" - } - ], - "variant_access_point": [ - "France du sud", - "France m\u00e9ridionale", - "Midi (France)", - "Sud de la France" - ], - "authorized_access_point": "France (sud)" - }, - { - "md5": "86390248ebbd80dcef9d19eff6023c68", - "pid": "027801101", - "note": [ - { - "label": [ - "GLU. Laval RVM, 1995-02" - ], - "noteType": "dataSource" + "value": "http://viaf.org/viaf/8281148574369624430004" }, { - "label": [ - "Voir aussi aux diff\u00e9rentes parties de l'Asie, par ex. Asie du Sud-Est", - "Voir aussi la subdivision Et l'Asie aux personnes et collectivit\u00e9s" - ], - "noteType": "seeReference" + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Ain_(rivi\u00e8re)" } ], + "pid": "027374831", "type": "bf:Place", - "broader": [ + "related": [ { - "authorized_access_point": "Eurasie" + "authorized_access_point": "Combe d'Ain, Bassin de la (France)" } ], + "md5": "f45348df1b61a0d3c1dce95db5d298fe" + }, + { + "authorized_access_point": "Am\u00e9rique centrale", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027801101", + "value": "http://www.idref.fr/027375080", "source": "IDREF" }, { "type": "uri", - "value": "http://d-nb.info/gnd/4003217-6", - "source": "GND" + "value": "http://catalogue.bnf.fr/ark:/12148/cb15238498d", + "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040032175", - "source": "GND" + "value": "(DE-101)040794865" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/4444148574353824430005", - "source": "VIAF" + "value": "http://viaf.org/viaf/170225739" } ], - "authorized_access_point": "Asie" - }, - { - "md5": "4fd1594003d219070a026b8a1f7131ed", - "pid": "027804151", "note": [ { + "noteType": "dataSource", "label": [ - "Laval RVM, 1997-02" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette, on trouve les ouvrages sur la partie de l'Europe comprenant les bassins du Danube (jusqu'aux Portes de Fer), de l'Elbe, de l'Oder et du Rhin. Les ouvrages qui traitent de la partie de l'Europe situ\u00e9e \u00e0 l'est de l'Allemagne et de l'Autriche jusqu'\u00e0 l'Oural, ou des anciennes d\u00e9mocraties populaires d'Europe (URSS non comprise), se trouvent sous la vedette Europe de l'Est" - ], - "noteType": "general" - }, - { - "label": [ - "Voir aussi la subdivision Et l'Europe centrale aux personnes et collectivit\u00e9s" - ], - "noteType": "seeReference" + "Laval RVM, 1991-02" + ] } ], + "pid": "027375080", "type": "bf:Place", - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "broader": [ + { + "authorized_access_point": "Am\u00e9rique" + } + ], + "variant_access_point": [ + "Am\u00e9rique (centre)", + "Guatemala (Royaume)" + ], + "md5": "a3c63d90a39224a522b0f8a9042411f2" + }, + { + "authorized_access_point": "Am\u00e9rique du Sud", + "bnf_type": "sujet Rameau", + "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027804151", + "value": "http://www.idref.fr/027375099", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15180937h", - "source": "BNF" + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040780147" }, { + "source": "VIAF", "type": "uri", - "value": "http://d-nb.info/gnd/4039677-0", - "source": "GND" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)040396770", - "source": "GND" + "value": "http://viaf.org/viaf/577145424560886831330" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "http://viaf.org/viaf/171699483", - "source": "VIAF" + "value": "https://fr.wikipedia.org/wiki/Am\u00e9rique_du_Sud" } ], - "variant_access_point": [ - "Europe (centre)", - "Mitteleuropa" - ], - "authorized_access_point": "Europe centrale" - }, - { - "md5": "7ab3ab13cecd468591a1053d06417efd", - "pid": "027810674", "note": [ { + "noteType": "dataSource", "label": [ - "IFLA, Names of states, 1981. Pays et capitales du monde / IGN, 1990. Mourre, 1986", - "Laval RVM, 1996-08. Luxemburg ; SWD, 1995-04" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent de l'ensemble du Luxembourg (comt\u00e9, duch\u00e9 en 1354, grand-duch\u00e9 en 1815) ou du seul grand-duch\u00e9 depuis 1831 (priv\u00e9 de sa partie occidentale, wallonne, annex\u00e9e par la Belgique)" - ], - "noteType": "general" + "Laval RVM, 1994-08" + ] } ], + "pid": "027375099", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Benelux" - }, - { - "authorized_access_point": "Pays de l'Union europ\u00e9enne" + "authorized_access_point": "Am\u00e9rique" } ], + "variant_access_point": [ + "Am\u00e9rique (sud)" + ], + "md5": "239366508f05075f191e49e6bd5fa502" + }, + { + "authorized_access_point": "Amsterdam (Pays-Bas)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027810674", + "value": "http://www.idref.fr/027375188", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119772596", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119430472", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040367282", - "source": "GND" + "value": "(DE-101)040017834" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/14145003656661341083", - "source": "VIAF" + "value": "http://viaf.org/viaf/152912999" }, { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Luxembourg", - "source": "WIKIPEDIA" + "source": "GEOVISTORY", + "type": "bf:Nbn", + "value": "i205236" } ], - "variant_access_point": [ - "Letzeburg", - "Luxembourg (comt\u00e9)", - "Luxembourg (duch\u00e9)", - "Luxembourg (Grand-duch\u00e9)", - "Luxemburg" - ], - "authorized_access_point": "Luxembourg" - }, - { - "md5": "0da090fd03de8b86de24f5da9b4c4e57", - "pid": "027849414", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL. SY 1990/91" - ], - "noteType": "dataSource" + "GDEL" + ] } ], + "pid": "027375188", "type": "bf:Place", - "broader": [ - { - "authorized_access_point": "Suisse - Cantons" - } - ], + "relation_pid": { + "value": "253217083", + "type": "redirect_from" + }, + "md5": "ff33b0f0bccf812e9e97b2b6a97d1fd9" + }, + { + "authorized_access_point": "Antilles", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027849414", + "value": "http://www.idref.fr/027375412", "source": "IDREF" }, { - "type": "bf:Nbn", - "value": "(DE-101)040057658", - "source": "GND" + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119430639", + "source": "BNF" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4005765-3 ", - "source": "GND" + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040022935" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/172118589", - "source": "VIAF" + "value": "http://viaf.org/viaf/155553957" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Canton_de_Berne", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Antilles" } ], - "authorized_access_point": "Berne (Suisse ; canton)" - }, - { - "md5": "4fadf276ff24607f762da7526fb4d0c9", - "pid": "02788743X", "note": [ { + "noteType": "dataSource", "label": [ - "GLU, 1991", - "Laval RVM, 1996-08. Elsass ; SWD, 1995-04" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent de l'Alsace historique, ou de l'actuelle r\u00e9gion d'Alsace qui ne comprend pas le Territoire-de-Belfort" - ], - "noteType": "general" + "GLU. Laval RVM, 1993-02" + ] }, { + "noteType": "general", "label": [ - "Voir aussi la subdivision Et l'Alsace aux personnes et collectivit\u00e9s" - ], - "noteType": "seeReference" + "Sous cette vedette on trouve les ouvrages qui traitent de l'archipel qui s\u00e9pare l'Atlantique de la mer des Antilles et qui comprend les Bahamas, les Grandes et les Petites Antilles" + ] } ], + "pid": "027375412", "type": "bf:Place", "broader": [ { - "authorized_access_point": "France (est)" - }, - { - "authorized_access_point": "France (nord-est)" - }, - { - "authorized_access_point": "Rh\u00e9nans, Pays (sud)" - }, - { - "authorized_access_point": "France - R\u00e9gions" + "authorized_access_point": "R\u00e9gion cara\u00efbe" } ], + "variant_access_point": [ + "Antillas", + "Antillen", + "Cara\u00efbes (\u00eeles)", + "Indes occidentales", + "West Indies" + ], + "md5": "ffed70073f629aad7a66ff5f1ee7b4b6" + }, + { + "authorized_access_point": "Anvers (Belgique)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/02788743X", + "value": "http://www.idref.fr/027375463", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb119832719", - "source": "BNF" - }, - { - "type": "uri", - "value": "http://d-nb.info/gnd/4014500-1", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)04014500X", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/153554472", - "source": "VIAF" + "value": "(DE-101)040023648" }, { + "source": "VIAF", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Alsace", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/135575206" } ], - "variant_access_point": [ - "Alsace", - "Elsass (France)" - ], - "authorized_access_point": "Alsace (France)" - }, - { - "md5": "d1cb8503972c4aca53b75f4578b48205", - "pid": "027945774", "note": [ { + "noteType": "dataSource", "label": [ "GDEL" - ], - "noteType": "dataSource" + ] } ], + "pid": "027375463", "type": "bf:Place", + "variant_access_point": [ + "Antwerpen (Belgique)" + ], + "md5": "2d4b71d160dfc1c1517c46b68938edaa" + }, + { + "authorized_access_point": "Babylone (Iraq ; ville ancienne)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/027945774", + "value": "http://www.idref.fr/02737601X", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11987945n", - "source": "BNF" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040554589", - "source": "GND" + "value": "(DE-101)040041018" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/128144648648649371618", - "source": "VIAF" + "value": "http://viaf.org/viaf/172711277" } ], - "relation_pid": { - "type": "redirect_from", - "value": "276094255" - }, - "variant_access_point": [ - "Solothurn (Suisse)" - ], - "authorized_access_point": "Soleure (Soleure, Suisse)" - }, - { - "md5": "b42dccaef0835a9cf9a9de044f9b6b26", - "pid": "028146239", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL. Atlas universalis" - ], - "noteType": "dataSource" + "GDEL. LCSH, 1989-03" + ] } ], + "pid": "02737601X", "type": "bf:Place", + "md5": "57c598ab3da0070d1f06c61808a776a4" + }, + { + "authorized_access_point": "Bolivie", "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Saint-Pierre (Suisse ; \u00eele)" - } - ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/028146239", + "value": "http://www.idref.fr/027377067", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb120038758", - "source": "BNF" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040065146", - "source": "GND" + "value": "(DE-101)040076075" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/315149407", - "source": "VIAF" + "value": "http://viaf.org/viaf/130756130" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Lac_de_Bienne", - "source": "WIKIPEDIA" + "value": "https://fr.wikipedia.org/wiki/Bolivie" } ], - "variant_access_point": [ - "Biel, Lac de (Suisse)", - "Bielersee (Suisse ; lac)" - ], - "authorized_access_point": "Bienne, Lac de (Suisse)" - }, - { - "md5": "b40f19f491375095c03a6112eed148b5", - "pid": "028179420", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL. SY 1990/91" - ], - "noteType": "dataSource" + "IFLA, Names of states, 1981. GDEL" + ] } ], + "pid": "027377067", "type": "bf:Place", - "broader": [ - { - "authorized_access_point": "Suisse - Cantons" - } - ], - "bnf_type": "sujet Rameau", - "identifiedBy": [ + "narrower": [ { - "type": "uri", - "value": "http://www.idref.fr/028179420", - "source": "IDREF" + "authorized_access_point": "Amazonie (Bolivie)" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb120066503", - "source": "BNF" + "authorized_access_point": "Beni (Bolivie)" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4068041-1", - "source": "GND" + "authorized_access_point": "Cochabamba (Bolivie ; d\u00e9partement)" }, { - "type": "bf:Nbn", - "value": "(DE-101)04068041X", - "source": "GND" + "authorized_access_point": "La Paz (Bolivie ; d\u00e9partement)" }, { - "type": "uri", - "value": "http://viaf.org/viaf/140174177", - "source": "VIAF" - } - ], - "authorized_access_point": "Zurich (Suisse ; canton)" - }, - { - "md5": "1a937806599c65b13cd9d7efec2139b4", - "pid": "02847158X", - "note": [ - { - "label": [ - "Alps, Western ; LCSH, 1988-12. Alpes occidentales ; Laval RVM, 1988-12" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Place", - "bnf_type": "sujet Rameau", - "narrower": [ + "authorized_access_point": "Potos\u00ed (Bolivie ; d\u00e9partement)" + }, { - "authorized_access_point": "Alpes cottiennes" + "authorized_access_point": "Santa Cruz (Bolivie ; d\u00e9partement)" }, { - "authorized_access_point": "Mont Blanc, Massif du" + "authorized_access_point": "Chuquisaca (Bolivie ; d\u00e9partement)" }, { - "authorized_access_point": "Alpes maritimes (massif)" + "authorized_access_point": "Moxos (Bolivie)" }, { - "authorized_access_point": "La Lauzi\u00e8re, massif de (France)" + "authorized_access_point": "Oriente (Bolivie)" } ], + "variant_access_point": [ + "Alto Per\u00fa", + "Bolivia", + "Haut-P\u00e9rou", + "P\u00e9rou, Haut-" + ], + "md5": "d24194be366d118646191ac61d9e7f47" + }, + { + "authorized_access_point": "Calabre (Italie)", + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/02847158X", + "value": "http://www.idref.fr/027377660", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb120300409", + "value": "http://catalogue.bnf.fr/ark:/12148/cb121177322", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040792048", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/315530690", - "source": "VIAF" + "value": "(DE-101)040292789" }, { + "source": "VIAF", "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Alpes_occidentales", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/155870508" } ], - "variant_access_point": [ - "Alpes occidentales" - ], - "authorized_access_point": "Alpes (ouest)" - }, - { - "md5": "9dce3b98f74ebae8f59278dc17a1b8c2", - "pid": "028567005", "note": [ { + "noteType": "dataSource", "label": [ - "DHGE. Mourre, 1996" - ], - "noteType": "dataSource" + "GDEL" + ] + } + ], + "pid": "027377660", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Italie (sud)" }, { - "label": [ - "L'introduction de la R\u00e9forme \u00e0 B\u00e2le en 1529 amena la scission entre la ville r\u00e9form\u00e9e et l'\u00e9v\u00eaque catholique, pr\u00e9figuration de la scission du canton en deux demi-cantons en 1833" - ], - "noteType": "general" + "authorized_access_point": "Italie - R\u00e9gions" } ], - "type": "bf:Place", + "variant_access_point": [ + "Bruttium", + "Calabria (Italie)" + ], + "md5": "3598178b30bbe776a55d716b14796c5f" + }, + { + "authorized_access_point": "Cameroun", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/028567005", + "value": "http://www.idref.fr/027377768", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb120377073", - "source": "BNF" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040802752", - "source": "GND" + "value": "(DE-101)040294137" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/599144783181696879819", - "source": "VIAF" + "value": "http://viaf.org/viaf/147664051" } ], - "variant_access_point": [ - "Ancien \u00e9v\u00each\u00e9 de B\u00e2le (Suisse)" - ], - "authorized_access_point": "B\u00e2le (Principaut\u00e9 eccl\u00e9siastique)" - }, - { - "md5": "7c391f369510f13eadb16bc74dd59390", - "pid": "028706536", "note": [ { + "noteType": "dataSource", "label": [ - "Trirhena : une r\u00e9gion sans fronti\u00e8res ?, 2002" - ], - "noteType": "dataSource" + "Names of states / IFLA, 1981. GDEL. SY, 1986/1987" + ] }, { + "noteType": "general", "label": [ - "Sous cette vedette on trouve les ouvrages qui traitent de la r\u00e9gion b\u00e2loise, s'\u00e9tendant sur le canton de B\u00e2le, le sud-est de l'Alsace et le sud du pays de Bade. Les ouvrages qui traitent des pays rh\u00e9nans depuis B\u00e2le jusqu'\u00e0 Mayence se trouvent sous la vedette Rh\u00e9nans, Pays (sud)" - ], - "noteType": "general" + "Sous cette vedette on trouve les ouvrages qui traitent du territoire qui fut plac\u00e9 sous protectorat allemand, puis sous mandats fran\u00e7ais et britannique, et qui constitue aujourd'hui la R\u00e9publique du Cameroun" + ] } ], + "pid": "027377768", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Rh\u00e9nans, Pays (sud)" + "authorized_access_point": "Afrique centrale" } ], + "variant_access_point": [ + "Cameroon", + "Kamerun" + ], + "md5": "295e3b61e43ab3be2f7557b99b49dc29" + }, + { + "authorized_access_point": "R\u00e9publique dominicaine", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/028706536", + "value": "http://www.idref.fr/027379647", "source": "IDREF" }, { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13162779p", + "source": "BNF" + }, + { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040046206", - "source": "GND" + "value": "(DE-101)040126943" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/158939441", - "source": "VIAF" + "value": "http://viaf.org/viaf/849148574256524430004" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Names of states / IFLA, 1981. Pays et capitales du monde / IGN, 1985. Laval RVM, 1983" + ] + } + ], + "pid": "027379647", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Ha\u00efti (\u00eele)" }, { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Regio_Basiliensis", - "source": "WIKIPEDIA" + "authorized_access_point": "Antilles hispaniques" } ], "variant_access_point": [ - "Basiliensis, Regio", - "Regio Basiliensis", - "TriRhena, Regio" + "Dominicaine (R\u00e9publique)", + "Rep\u00fablica Dominicana" ], - "authorized_access_point": "B\u00e2le (Suisse ; r\u00e9gion)" + "md5": "d799b84e562b1f1b71099460b548dcb3" }, { - "md5": "30d7b3938fed5f84d44126446e016203", - "pid": "028724208", - "type": "bf:Place", + "authorized_access_point": "Pays de Galles (GB)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/028724208", + "value": "http://www.idref.fr/027381323", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12050127s", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11943541c", "source": "BNF" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4118667-9", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)041186672", - "source": "GND" + "value": "(DE-101)040644359" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/316747146", - "source": "VIAF" - }, - { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Tunnel_du_Simplon", - "source": "WIKIPEDIA" + "value": "http://viaf.org/viaf/12144647638200048242" } ], - "authorized_access_point": "Simplon, Tunnel du" - }, - { - "md5": "bc1c76ecaeac3f4d3ebb7b0269278ffe", - "pid": "028931491", + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU, 1991", + "Pays de Galles ; Laval RVM, 1997-02" + ] + } + ], + "pid": "027381323", "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Grande-Bretagne" + }, + { + "authorized_access_point": "Pays celtiques" + } + ], + "variant_access_point": [ + "Cambria", + "Cambrie", + "Cymru (GB)", + "Galles, Pays de (GB)", + "Wales (GB)" + ], + "md5": "642bd20681c4b8ab3fe76077b824761a" + }, + { + "authorized_access_point": "Malaisie", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/028931491", + "value": "http://www.idref.fr/027400212", "source": "IDREF" }, { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11945050f", + "source": "BNF" + }, + { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)949642762", - "source": "GND" + "value": "(DE-101)040372030" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/145332698" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "http://viaf.org/viaf/173637213", - "source": "VIAF" + "value": "https://fr.wikipedia.org/wiki/Malaisie" } ], - "authorized_access_point": "L\u00e9man, Lac (r\u00e9gion)" - }, - { - "md5": "ca5bec865c9e0097d289f0a1f3e31b79", - "pid": "028988310", "note": [ { + "noteType": "dataSource", "label": [ - "Petit Robert des noms propres 2016", - "Grand Larousse universel", - "L'atlas National geographic, 2007 : Schwytz", - "Wikip\u00e9dia : canton de Schwytz [ou Schwyz] - https://fr.wikipedia.org (2017-10-21)", - "Statoids - http://www.statoids.com (2017-10-21)", - "Kanton Schwyz - https://www.sz.ch (2017-10-21)", - "Dict. historique de la Suisse : Schwytz (canton) - http://www.hls-dhs-dss.ch (2017-10-21)" - ], - "noteType": "dataSource" + "Malaisie ; IFLA, Names of states, 1981 ; Pays et capitales du monde / IGN, 1986 ; BN ACO. Malaysia ; GLU ; Laval RVM, 1995-02 ; Atlas Le Monde" + ] }, { + "noteType": "general", "label": [ - "Canton germanophone du centre-est ; capitale : Schwyz. Il est un des 4 cantons historiques ayant donn\u00e9 naissance \u00e0 la Conf\u00e9d\u00e9ration helv\u00e9tique au 19e si\u00e8cle, apr\u00e8s avoir souvent lutt\u00e9 contre les Habsbourg. Son nom a donn\u00e9 naissance \u00e0 celui du pays tout entier - dans sa version allemande 'Schweiz'. Pour la ville comme pour le canton, on peut dire aussi \"Schwytz\", qui est une graphie romande, mais dans sa version fran\u00e7aise, la Constitution suisse emploie le terme \"Schwyz" - ], - "noteType": "general" + "Sous cette vedette on trouve les ouvrages qui traitent de la F\u00e9d\u00e9ration de Malaisie (ou Malaysia), comprenant depuis 1963 la Malaisie p\u00e9ninsulaire, Sabah et Sarawak (et Singapour de 1963 \u00e0 1965). Les ouvrages qui traitent de la Malaisie p\u00e9ninsulaire, avant ou depuis 1963, se trouvent sous la vedette Malaisie occidentale" + ] } ], + "pid": "027400212", "type": "bf:Place", - "broader": [ + "narrower": [ { - "authorized_access_point": "Suisse - Cantons" + "authorized_access_point": "Malaisie occidentale" + }, + { + "authorized_access_point": "Malaisie orientale" } ], + "variant_access_point": [ + "Malaysia" + ], + "md5": "9e0f059c38859e00faa3c9e5d4d7f363" + }, + { + "authorized_access_point": "Ouganda", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/028988310", + "value": "http://www.idref.fr/027402193", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb120709591", - "source": "BNF" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040540197", - "source": "GND" + "value": "(DE-101)040614573" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/134271490", - "source": "VIAF" - }, + "value": "http://viaf.org/viaf/134866435" + } + ], + "note": [ { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Cat\u00e9gorie:Canton_de_Schwytz", - "source": "WIKIPEDIA" + "noteType": "dataSource", + "label": [ + "Names of states / IFLA, 1981" + ] } ], - "classification": [ + "pid": "027402193", + "type": "bf:Place", + "broader": [ { - "name": "G\u00e9ographie de l'Europe", - "type": "bf:ClassificationDdc", - "classificationPortion": "914" + "authorized_access_point": "Afrique orientale anglophone" } ], "variant_access_point": [ - "Kanton Schwyz (Suisse)", - "Pays de Schwyz (Suisse)", - "Schweitz (Suisse ; canton)", - "Schwytz (Suisse ; canton)", - "Svitto (Suisse ; canton)", - "Sviz (Suisse ; canton)" + "Uganda" ], - "authorized_access_point": "Schwyz (Suisse ; canton)" + "md5": "4f46da08803b646737e13f28c4721c38" }, { - "md5": "633d7b2a486c35a64a9868ac8dce10b8", - "pid": "028992318", + "authorized_access_point": "Indien, Oc\u00e9an", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027405478", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040267377" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/145299573" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Oc\u00e9an_Indien" + } + ], "note": [ { + "noteType": "dataSource", "label": [ - "GDEL. SY 1990/91" - ], - "noteType": "dataSource" + "GDEL. Laval RVM, 1991-08" + ] } ], + "pid": "027405478", "type": "bf:Place", - "broader": [ + "narrower": [ { - "authorized_access_point": "Suisse - Cantons" + "authorized_access_point": "Persique, Golfe" + }, + { + "authorized_access_point": "Oman, Mer d'" } ], + "variant_access_point": [ + "\u00c9rythr\u00e9e, Mer", + "Indes, Mer des", + "Indicus, Oceanus", + "Oc\u00e9an Indien" + ], + "md5": "6398204215397ce7c81da045e5c68bf7" + }, + { + "authorized_access_point": "Islande", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/028992318", + "value": "http://www.idref.fr/027405621", "source": "IDREF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040680649", - "source": "GND" + "value": "(DE-101)040277542" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/20144647636134910488", - "source": "VIAF" + "value": "http://viaf.org/viaf/2599148574346024430006" } ], - "authorized_access_point": "Zoug (Suisse ; canton)" - }, - { - "md5": "72ecc8b6a0ad0092ed2068eb45fd53ef", - "pid": "02899275X", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL. SY 1990/91" - ], - "noteType": "dataSource" + "Names of states / IFLA, 1981" + ] } ], + "pid": "027405621", "type": "bf:Place", "broader": [ { - "authorized_access_point": "Suisse - Cantons" + "authorized_access_point": "Atlantique, \u00celes de l'" + }, + { + "authorized_access_point": "Scandinavie" } ], + "variant_access_point": [ + "\u00cdsland" + ], + "md5": "2a7ae383a711d21a5ecefaa547fa0df1" + }, + { + "authorized_access_point": "Jama\u00efque", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/02899275X", + "value": "http://www.idref.fr/027405753", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12071302n", - "source": "BNF" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040519937", - "source": "GND" + "value": "(DE-101)040284565" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/144820199", - "source": "VIAF" - }, + "value": "http://viaf.org/viaf/398148574254724430000" + } + ], + "note": [ { - "type": "uri", - "value": "http://viaf.org/viaf/152454816", - "source": "VIAF" + "noteType": "dataSource", + "label": [ + "Names of states / IFLA, 1981" + ] + } + ], + "pid": "027405753", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Grandes Antilles" }, { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Schaffhouse", - "source": "WIKIPEDIA" + "authorized_access_point": "Antilles anglophones" } ], - "relation_pid": { - "type": "redirect_from", - "value": "197672701" - }, "variant_access_point": [ - "Schaffhausen (Suisse ; canton)" + "Jamaica" ], - "authorized_access_point": "Schaffhouse (Suisse ; canton)" + "md5": "d0b2e4828163dffc551ef46ed3f6d2e1" }, { - "md5": "158ec07faa8a1ffd8801596da865c2a5", - "pid": "029036690", - "type": "bf:Place", + "authorized_access_point": "Labourd (France)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/029036690", + "value": "http://www.idref.fr/027406415", "source": "IDREF" }, { - "type": "bf:Nbn", - "value": "(DE-101)040772756", - "source": "GND" - }, - { + "source": "VIAF", "type": "uri", - "value": "http://d-nb.info/gnd/4077275-5<", - "source": "GND" + "value": "http://viaf.org/viaf/130274539" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "http://viaf.org/viaf/2253148574262324430007", - "source": "VIAF" + "value": "https://fr.wikipedia.org/wiki/Labourd" } ], - "variant_access_point": [ - "Alpes suisses" + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "027406415", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Pays basque (Pyr\u00e9n\u00e9es-Atlantiques)" + } ], - "authorized_access_point": "Alpes (Suisse)" + "md5": "b2a55bc3653d9060ab51876e2d0f4632" }, { - "md5": "573af1b964e87fc62ce0175c823f57ea", - "pid": "029201098", - "note": [ + "authorized_access_point": "Lettonie", + "bnf_type": "sujet Rameau", + "identifiedBy": [ { - "label": [ - "GDEL. Grand-Saint-Bernard (Italie et Suisse) ; Laval RVM, 1990-08", - "GeoNames (2017-07-06)" - ], - "noteType": "dataSource" + "type": "uri", + "value": "http://www.idref.fr/027406733", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040741877" }, { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/4704148574272524430009" + } + ], + "note": [ + { + "noteType": "dataSource", "label": [ - "Le col du Grand-Saint-Bernard, anciennement appel\u00e9 col du Mont-Joux, est un col de montagne routier des Alpes pennines, situ\u00e9 \u00e0 2 469 m\u00e8tres d'altitude en Valais sur la commune de Bourg-Saint-Pierre en Suisse. La fronti\u00e8re avec l'Italie (commune de Saint-Rh\u00e9my-en-Bosses) passe quelques centaines de m\u00e8tres au sud-ouest du col. Il s\u00e9pare la vall\u00e9e du m\u00eame nom, en Vall\u00e9e d'Aoste au sud, du val d'Entremont, situ\u00e9 en Valais au nord et constitue un passage entre le mont Mort et la pointe de Dr\u00f4ne, tous deux situ\u00e9s sur la fronti\u00e8re italio-suisse. C'est le troisi\u00e8me plus haut col routier des Alpes suisses et le septi\u00e8me plus haut d'Italie" - ], - "noteType": "general" + "GLU. Laval RVM, 1994-08" + ] } ], + "pid": "027406733", "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Pays baltes" + } + ], + "variant_access_point": [ + "Latvija" + ], + "md5": "aff9cdf5b59a71d15aa1b24728c32b21" + }, + { + "authorized_access_point": "Lucerne (Suisse)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/029201098", + "value": "http://www.idref.fr/027407012", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12087709t", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11864772p", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040940888", - "source": "GND" + "value": "(DE-101)040367339" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-588)4094088-3", - "source": "GND" + "value": "(DE-101)040367339" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/5670150567623106370006", - "source": "VIAF" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/240823931", - "source": "VIAF" - }, + "value": "http://viaf.org/viaf/140255133" + } + ], + "note": [ { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Col_du_Grand-Saint-Bernard", - "source": "WIKIPEDIA" + "noteType": "dataSource", + "label": [ + "GDEL" + ] } ], - "relation_pid": { - "type": "redirect_from", - "value": "202981762" - }, + "pid": "027407012", + "type": "bf:Place", "variant_access_point": [ - "Saint-Bernard, Grand- (col)", - "Grosser Sankt Bernhard", - "Gran San Bernardo", - "Great Saint Bernard Pass", - "Colle del Gran San Bernardo", - "Grand-Saint-Bernard, Col du (Valais, Suisse)" + "Luzern (Suisse)" ], - "authorized_access_point": "Grand-Saint-Bernard (col)" + "md5": "5b7ddb04767f992b5486849a78933eae" }, { - "md5": "d8b5efb2ae63476558d2ada82880438b", - "pid": "029805287", - "note": [ + "authorized_access_point": "Paris (France) - 1871 (Commune)", + "bnf_type": "sujet Rameau", + "classification": [ { - "label": [ - "Atlas Le Monde", - "https://hls-dhs-dss.ch/fr/articles/002802/2017-11-16/, 2024-02-20", - "Sion et Mayens-de-Sion / Louis Courthion, 1910" - ], - "noteType": "dataSource" + "type": "bf:ClassificationDdc", + "classificationPortion": "320", + "name": "Science politique" }, { - "label": [ - "Ville situ\u00e9e dans le canton du Valais ; chef-lieu du canton" - ], - "noteType": "general" + "type": "bf:ClassificationDdc", + "classificationPortion": "944", + "name": "Histoire de la France" } ], - "type": "bf:Place", - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/029805287", + "value": "http://www.idref.fr/027407632", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12135301m", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119456147", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040774678", - "source": "GND" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)040774678", - "source": "GND" - }, - { - "type": "uri", - "value": "http://d-nb.info/gnd/4077467-3", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/316751302", - "source": "VIAF" + "value": "(DE-101)040446689" } ], - "variant_access_point": [ - "Sitten (Suisse)" - ], - "authorized_access_point": "Sion (Valais, Suisse)" - }, - { - "md5": "f9658358a32810397df757570d432357", - "pid": "030519799", "note": [ { + "noteType": "dataSource", "label": [ - "Wikip\u00e9dia : ch\u00e2teau de Val\u00e8re - https://fr.wikipedia.org (2021-08-10)", - "Wikipedia : Basilica di Val\u00e8re, castello di Val\u00e8re - https:/:it.wikipedia.org (2021-08-10)", - "Wikipedia : Basilique de Val\u00e8re (oder Basilika von Valeria, Schloss Valeria) - https://de.wikipedia.org (2021-08-10)", - "Petit Robert des noms propres, 2015 (art. : Sion) : \u00e9glise Notre-Dame de Val\u00e8re", - "Grand Larousse universel (art. : Sion) : \u00e9glise Notre-Dame de Val\u00e8re", - "Guides Voir : Suisse, 2012", - "Sion Tourisme : ch\u00e2teau de Val\u00e8re (interface en fran\u00e7ais), Schloss Valeria (interface en allemand) - https://siontourisme.ch (2021-08-10)" - ], - "noteType": "dataSource" + "Grand Larousse universel", + "Encycl. universalis - http://www.universalis-edu.com (2014-03-13)", + "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1996", + "La Commune de 1871 / J. Rougerie, 1992", + "Dict. de la Commune / B. No\u00ebl, 1971" + ] }, { + "noteType": "general", "label": [ - "Le \"ch\u00e2teau de Val\u00e8re\", qui couronne la colline du m\u00eame nom dominant Sion, est en r\u00e9alit\u00e9 une \u00e9glise fortifi\u00e9e des 12e-13e si\u00e8cles, \u00e9glise entour\u00e9e de maisons qui furent r\u00e9sidence des chanoines de la cath\u00e9drale de la ville, le tout prot\u00e9g\u00e9 par une enceinte (remparts et tours), le clocher de l'\u00e9glise \u00e9tant en quelque sorte le donjon de ce v\u00e9ritable petit bourg m\u00e9di\u00e9val. L'\u00e9glise Notre-Dame de Val\u00e8re fut \u00e9lev\u00e9e au rang de basilique (mineure) sous le pontificat de Jean-Paul II, en 1987. Ses chapiteaux sont romans, ses fresques, gothiques ; son orgue de la fin du 14e si\u00e8cle est le plus ancien du monde sur lequel on peut encore jouer. Le complexe abrite le Mus\u00e9e d'histoire du Valais" - ], - "noteType": "general" + "Sous cette vedette, on trouve les documents sur la Commune de Paris de 1871. Les documents dont la Commune est l'auteur se trouvent sous Commune de Paris (1871)", + "18 mars-28 mai 1871 : gouvernement insurrectionnel de la Commune \u00e0 Paris, \u00e9cras\u00e9 par le gouvernement d'Adolphe Thiers si\u00e9geant \u00e0 Versailles" + ] } ], + "pid": "027407632", "type": "bf:Place", - "bnf_type": "sujet Rameau", - "closeMatch": [ + "broader": [ { - "source": "LCA", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/names/n91123541", - "source": "LCA" - }, - "authorized_access_point": "Notre-Dame de Val\u00e8re (Church : Sion, Switzerland)" + "authorized_access_point": "France - 1871-1873 (A. Thiers)" } ], + "variant_access_point": [ + "France - 1871 (Commune)" + ], + "md5": "d8f176cd00c880c065a920a201ff4fbb" + }, + { + "authorized_access_point": "P\u00f4le Sud", + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/030519799", + "value": "http://www.idref.fr/027408310", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12191796h", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11945666g", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)042499909", - "source": "GND" + "value": "(DE-101)955497434" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173709059" } ], - "classification": [ - { - "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)", - "type": "bf:ClassificationDdc", - "classificationPortion": "200" - }, + "note": [ { - "name": "Art et science militaires", - "type": "bf:ClassificationDdc", - "classificationPortion": "355" - }, + "noteType": "dataSource", + "label": [ + "Laval RVM, 1983" + ] + } + ], + "pid": "027408310", + "type": "bf:Place", + "broader": [ { - "name": "Architecture", - "type": "bf:ClassificationDdc", - "classificationPortion": "720" + "authorized_access_point": "Antarctique" }, { - "type": "bf:ClassificationDdc", - "classificationPortion": "914" + "authorized_access_point": "R\u00e9gions polaires" } ], - "variant_access_point": [ - "Basilica di Val\u00e8re (Sion, Valais, Suisse)", - "Basilika von Valeria (Sion, Valais, Suisse)", - "Basilique de Val\u00e8re (Sion, Valais, Suisse)", - "Basilique Notre-Dame de Val\u00e8re (Sion, Valais, Suisse)", - "Castello di Val\u00e8re (Sion, Valais, Suisse)", - "Ch\u00e2teau de Val\u00e8re (Sion, Valais, Suisse)", - "\u00c9glise Notre-Dame de Val\u00e8re (Sion, Valais, Suisse)", - "Kirche von Valeria (Sion, Valais, Suisse)", - "Notre-Dame de Val\u00e8re, Basilique (Sion, Valais, Suisse)", - "Schloss Valeria (Sion, Valais, Suisse)", - "Val\u00e8re, Ch\u00e2teau de (Sion, Valais, Suisse)", - "Valeria, Schloss (Sion, Valais, Suisse)" - ], - "authorized_access_point": "Sion (Valais, Suisse) - Ch\u00e2teau de Val\u00e8re" + "md5": "8d22cf32b8f4b3106441462deb75e53a" }, { - "md5": "99ab64574732f58131461a1198b4f22f", - "pid": "030575257", - "note": [ - { - "label": [ - "GDEL. SY 1990/91" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Place", - "broader": [ - { - "authorized_access_point": "Genevois" - }, - { - "authorized_access_point": "Suisse - Cantons" - } - ], + "authorized_access_point": "Polyn\u00e9sie fran\u00e7aise", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/030575257", + "value": "http://www.idref.fr/027408450", "source": "IDREF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040201384", - "source": "GND" + "value": "(DE-101)04018191X" }, { + "source": "VIAF", "type": "uri", - "value": "http://d-nb.info/gnd/4020138-7", - "source": "GND" + "value": "http://viaf.org/viaf/148353190" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU. BN ACO (2 vedettes). Laval RVM, 1994-08" + ] }, { - "type": "uri", - "value": "http://viaf.org/viaf/159388627", - "source": "VIAF" + "noteType": "general", + "label": [ + "Emploi direct en subdivision : [sujet] -- Polyn\u00e9sie fran\u00e7aise", + "Territoire d'outre-mer fran\u00e7ais, comprenant 5 circonscriptions administratives (\u00celes Australes, \u00eeles-du-Vent, \u00celes-Sous-le-Vent, Marquises, Tuamotu) ; Clipperton y est officiellement rattach\u00e9. De 1885 \u00e0 1957 : \u00c9tablissements fran\u00e7ais de l'Oc\u00e9anie" + ] + } + ], + "pid": "027408450", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Polyn\u00e9sie" + }, + { + "authorized_access_point": "France - Collectivit\u00e9s d'outre-mer" } ], - "authorized_access_point": "Gen\u00e8ve (Suisse ; canton)" + "variant_access_point": [ + "\u00c9tablissements fran\u00e7ais de l'Oc\u00e9anie", + "Oc\u00e9anie fran\u00e7aise" + ], + "md5": "62db27f069d5d315f4f335cdce3b1c36" }, { - "md5": "5199e9499e2664255a30c0ae1c672d9a", - "pid": "031211097", - "type": "bf:Place", + "authorized_access_point": "Venezuela", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/031211097", + "value": "http://www.idref.fr/027409317", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12246994q", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119457375", "source": "BNF" }, { - "type": "bf:Nbn", - "value": "(DE-101)040658236", - "source": "GND" + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/1897158188178220260005" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "http://viaf.org/viaf/621144783051845602289", - "source": "VIAF" + "value": "https://fr.wikipedia.org/wiki/Venezuela" } ], - "variant_access_point": [ - "Suisse occidentale" - ], - "authorized_access_point": "Suisse (ouest)" - }, - { - "md5": "4dbf7608bb4207e46fc899dce7473146", - "pid": "031649424", "note": [ { + "noteType": "dataSource", "label": [ - "GeoNames (2018-06-27)" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Aix-la-Chapelle est une ville d'Allemagne situ\u00e9e dans le Land de Rh\u00e9nanie-du-Nord-Westphalie. Elle se situe \u00e0 5 km de la jonction des fronti\u00e8res de l'Allemagne, des Pays-Bas et de la Belgique. C'est la ville la plus \u00e0 l'ouest de l'Allemagne", - "Coordonn\u00e9es en degr\u00e9s s\u00e9xag\u00e9simaux : N 50\u00b046\u203236\u2033 / E 6\u00b005\u203200\u2033" - ], - "noteType": "general" + "Venezuela ; BN Cartes et plans ; BN ACO ; Pays et capitales du monde / IGN, 1986 ; Laval RVM, 1995-02 ; Manuel de l'Unesco, 1985 ; GLU ; Encycl. universalis ; Atlas Le Monde" + ] } ], + "pid": "027409317", "type": "bf:Place", - "broader": [ + "narrower": [ { - "authorized_access_point": "Rh\u00e9nanie du Nord-Westphalie (Allemagne)" + "authorized_access_point": "Amazonie (Venezuela)" } ], + "md5": "5a0946be08cf0ba67c09811fb05d9056" + }, + { + "authorized_access_point": "Winterthour (Suisse)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/031649424", + "value": "http://www.idref.fr/027418499", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12282480h", - "source": "BNF" + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04066337X" }, { - "type": "bf:Nbn", - "value": "(DE-101)040000079", - "source": "GND" + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/676148574297124430002" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "http://viaf.org/viaf/124330404", - "source": "VIAF" + "value": "https://fr.wikipedia.org/wiki/Winterthour" } ], - "relation_pid": { - "type": "redirect_from", - "value": "228265843" - }, - "variant_access_point": [ - "Aachen", - "Aken", - "Akwizgran", - "Aquisgr\u00e1n", - "Aquisgrano" - ], - "authorized_access_point": "Aix-la-Chapelle (Allemagne ; r\u00e9gion)" - }, - { - "md5": "3b235193ed1de3a125dae22d380760e5", - "pid": "032861621", "note": [ { + "noteType": "dataSource", "label": [ - "GLU. \u00d6sterreich-Ungarn ; SWD, 1991" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Sous cette vedette, on trouve les ouvrages qui traitent de l'ensemble de l'Autriche-Hongrie (1867-1918). Les ouvrages qui traitent plus particuli\u00e8rement des parties autrichienne et hongroise de l'empire se trouvent sous les vedettes Autriche et Hongrie (suivies des subdivisions appropri\u00e9es)" - ], - "noteType": "general" + "GDEL" + ] } ], + "pid": "027418499", "type": "bf:Place", - "broader": [ - { - "authorized_access_point": "Europe du Centre-Est" - } + "variant_access_point": [ + "Winterthur (Suisse)", + "Vitudurum (ville ancienne)" ], + "md5": "0a50639a07d2d6dffa3c177e71664aaf" + }, + { + "authorized_access_point": "Beaufort (Savoie)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/032861621", + "value": "http://www.idref.fr/027427374", "source": "IDREF" }, { + "source": "VIAF", "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb123809301", - "source": "BNF" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)040756130", - "source": "GND" + "value": "http://viaf.org/viaf/152886958" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "http://viaf.org/viaf/38146285364515371330", - "source": "VIAF" + "value": "https://fr.wikipedia.org/wiki/Beaufort_(Savoie)" } ], - "variant_access_point": [ - "Austro-hongroise, Monarchie", - "Double Monarchie", - "Empire austro-hongrois", - "Monarchie austro-hongroise", - "\u00f6sterreich-Ungarn", - "Osztr\u00e1k-Magyar Mon\u00e1rchia" - ], - "authorized_access_point": "Autriche-Hongrie" - }, - { - "md5": "67f897d5271f5daa9e5b9446f23c9c0c", - "pid": "033640874", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL" - ], - "noteType": "dataSource" + "Dict. communes, 1971" + ] } ], + "pid": "027427374", "type": "bf:Place", + "variant_access_point": [ + "Beaufort-sur-Doron (Savoie)" + ], + "md5": "f85358eb39c4bbaf60800ddf66040f92" + }, + { + "authorized_access_point": "Antilles, Mer des", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/033640874", + "value": "http://www.idref.fr/027428095", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12448796p", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11947172h", "source": "BNF" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4041747-5", - "source": "GND" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040417476", - "source": "GND" + "value": "(DE-101)040296679" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/304911054", - "source": "VIAF" - }, + "value": "http://viaf.org/viaf/1967148574385124430009" + } + ], + "note": [ { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Lac_de_Neuch\u00e2tel", - "source": "WIKIPEDIA" + "noteType": "dataSource", + "label": [ + "GLU. Laval RVM, 1994-02" + ] + } + ], + "pid": "027428095", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Atlantique (oc\u00e9an ; nord)" } ], "variant_access_point": [ - "Neuch\u00e2tel, Lac (Neuch\u00e2tel, Suisse)", - "Neuenburg, Lac (Neuch\u00e2tel, Suisse)" + "Cara\u00efbe, Mer", + "Cara\u00efbes, Mer des" ], - "authorized_access_point": "Neuch\u00e2tel, Lac de (Neuch\u00e2tel, Suisse)" + "md5": "0ea9274dc223fa88b9c239b38c2b4b21" }, { - "md5": "2fe3d5f7f01ab0d90093ad45bb31c3e4", - "pid": "055302149", - "note": [ - { - "label": [ - "Cervin (mont) ; GLU", - "Cervin (Suisse et Italie) ; Laval RVM, 2000-01" - ], - "noteType": "dataSource" - }, + "authorized_access_point": "Comtat Venaissin (Vaucluse)", + "bnf_type": "sujet Rameau", + "classification": [ { - "label": [ - "Sommet des Alpes Pennines, \u00e0 la fronti\u00e8re italo-suisse (4478 m.)" - ], - "noteType": "general" + "type": "bf:ClassificationDdc", + "classificationPortion": "912", + "name": "G\u00e9ographie de la France" } ], - "type": "bf:Place", - "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/055302149", + "value": "http://www.idref.fr/027428672", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb152909205", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119472180", "source": "BNF" }, { + "source": "VIAF", "type": "uri", - "value": "http://d-nb.info/gnd/4037992-9", - "source": "GND" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)040379922", - "source": "GND" + "value": "http://viaf.org/viaf/133732676" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "http://viaf.org/viaf/170262409", - "source": "VIAF" + "value": "https://fr.wikipedia.org/wiki/Comtat_Venaissin" } ], - "variant_access_point": [ - "Cervino, Monte", - "Matterhorn (mont)" - ], - "authorized_access_point": "Cervin, Mont" - }, - { - "md5": "d7312c3254f0c2d94178edbebd7069f0", - "pid": "071586709", "note": [ { + "noteType": "dataSource", "label": [ "Grand Larousse universel", - "Robert encyclop\u00e9dique des noms propres 2008", - "Encycl. universalis - http://www.universalis-edu.com (2011-10-24)", - "Wikip\u00e9dia - http://fr.wikipedia.org (2011-10-24)" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Capitale de la Lombardie" - ], - "noteType": "general" + "Robert encyclop\u00e9dique des noms propres, 2008", + "Dict. de g\u00e9ographie historique de la Gaule et de la France / J. Moreau, 1972", + "Dict. encyclop\u00e9dique d'histoire / M. Mourre, 1996", + "Tr\u00e9sor des r\u00e9gions de France - http://tresordesregions.mgm.fr (2008-12-19)", + "Robert encyclop\u00e9dique des noms propres, 2008" + ] }, { + "noteType": "general", "label": [ - "Voir aussi la subdivision Et Milan [sans subd. g\u00e9ogr.] aux collectivit\u00e9s et aux personnes" - ], - "noteType": "seeReference" + "Comt\u00e9 qui appartint \u00e0 la Papaut\u00e9 (1274-1790), couvrant l'actuel Vaucluse (sauf la partie sud-orientale de celui-ci). Capitale : Carpentras" + ] } ], + "pid": "027428672", "type": "bf:Place", + "related": [ + { + "authorized_access_point": "Mur de la peste (France)" + } + ], + "broader": [ + { + "authorized_access_point": "Vaucluse (France)" + } + ], + "variant_access_point": [ + "Comtat Venaissin", + "Comtat-Venaissin", + "Venaissin (comtat)", + "Comtat (Vaucluse)", + "Coumtat (Vaucluse)", + "Venaissin, Comtat (Vaucluse)" + ], + "md5": "e02280189fec02cb019190bd88a55153" + }, + { + "authorized_access_point": "Estonie", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/071586709", + "value": "http://www.idref.fr/027429393", "source": "IDREF" }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11936471j", - "source": "BNF" - }, - { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)04037100X", - "source": "GND" + "value": "(DE-101)040155870" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/112144814525470906849", - "source": "VIAF" - }, + "value": "http://viaf.org/viaf/2916148574347324430000" + } + ], + "note": [ { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Mediolanum", - "source": "WIKIPEDIA" + "noteType": "dataSource", + "label": [ + "GLU. Berthelot (Ehstonie ou Esthonie)", + "Laval RVM, 1994-08" + ] } ], - "relation_pid": { - "type": "redirect_from", - "value": "181631121" - }, - "classification": [ + "pid": "027429393", + "type": "bf:Place", + "broader": [ { - "name": "G\u00e9ographie de l'Europe", - "type": "bf:ClassificationDdc", - "classificationPortion": "914" + "authorized_access_point": "Pays baltes" } ], "variant_access_point": [ - "Mediolanum (ville ancienne)", - "Milan", - "Milano (Italie)" + "Eesti", + "Ehstonie", + "Esthonie" ], - "authorized_access_point": "Milan (Italie)" + "md5": "877b3c46c4e3ccf8a06c1d8481ed2d79" }, { - "md5": "2eb5d1f6dfc499429a1f2c6822c6bc02", - "pid": "085560839", - "note": [ - { - "label": [ - "GDEL" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Place", + "authorized_access_point": "Jura (massif)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/085560839", + "value": "http://www.idref.fr/027434125", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb121645931", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119476392", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040804003", - "source": "GND" + "value": "(DE-101)040731294" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/30144647638547014341", - "source": "VIAF" + "value": "http://viaf.org/viaf/198144782989882286451" } ], - "variant_access_point": [ - "Biel (Suisse)" - ], - "authorized_access_point": "Bienne (Suisse)" - }, - { - "md5": "9aded22e21b9e41baf1174e7610eeca2", - "pid": "085703419", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL" - ], - "noteType": "dataSource" + "GDEL. Jura Mountains (France and Switzerland) ; LCSH, 1989-09. Jura ; Laval RVM, 1989-06" + ] } ], + "pid": "027434125", "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Jura (France ; massif)" + }, + { + "authorized_access_point": "Jura (Suisse ; massif)" + } + ], + "variant_access_point": [ + "Jura", + "Jura (cha\u00eene)" + ], + "md5": "c1ed917ae263868572f954376df019f2" + }, + { + "authorized_access_point": "Lituanie", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/085703419", + "value": "http://www.idref.fr/027434648", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb14475513s", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11947680h", "source": "BNF" }, { + "source": "GND", "type": "bf:Nbn", - "value": "(DE-101)040201392", - "source": "GND" + "value": "(DE-101)040742660" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/55144647634843459675", - "source": "VIAF" + "value": "http://viaf.org/viaf/888148574256624430002" } ], - "classification": [ + "note": [ { - "name": "G\u00e9ographie de l'Europe", - "type": "bf:ClassificationDdc", - "classificationPortion": "914" + "noteType": "dataSource", + "label": [ + "GLU. Laval RVM, 1994-08" + ] + } + ], + "pid": "027434648", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Pays baltes" } ], - "authorized_access_point": "Gen\u00e8ve (Suisse ; r\u00e9gion)" + "variant_access_point": [ + "Lietuva", + "Lithuanie" + ], + "md5": "79998087f8a11ca93fc5f508c7b281b1" }, { - "md5": "4d85ab7f707fb93cd4009f8108496b13", - "pid": "097857300", - "note": [ + "authorized_access_point": "Singapour", + "bnf_type": "sujet Rameau", + "identifiedBy": [ { - "label": [ - "Grand Larousse universel", - "Dict. de g\u00e9opolitique / dir. Y. Lacoste, 1993", - "Laval RVM (en ligne), 2006-01-23" - ], - "noteType": "dataSource" + "type": "uri", + "value": "http://www.idref.fr/027436810", + "source": "IDREF" }, { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040550893" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/15145376341283720567" + } + ], + "note": [ + { + "noteType": "dataSource", "label": [ - "Sous cette vedette on trouve les documents qui traitent de l'Occident selon les diff\u00e9rents sens du mot au cours de l'histoire, par opposition \u00e0 diff\u00e9rents Orients : par ex. Occident latin / Orient grec, Occident catholique / Orient orthodoxe, Chr\u00e9tient\u00e9 / Islam et Asie, pays occidentaux / pays socialistes, etc" - ], - "noteType": "general" + "Names of states / IFLA, 1981" + ] }, { + "noteType": "general", "label": [ - "Voir aussi la subdivision Et l'Occident aux collectivit\u00e9s (\u00e0 l'exception des types de collectivit\u00e9s) et aux personnes" - ], - "noteType": "seeReference" + "Vedette commune \u00e0 la ville et \u00e0 l'\u00c9tat" + ] } ], + "pid": "027436810", "type": "bf:Place", + "variant_access_point": [ + "Singapore", + "Singapura" + ], + "md5": "59b5758965dd6641788fc5a53479fe7c" + }, + { + "authorized_access_point": "Slovaquie", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/097857300", + "value": "http://www.idref.fr/027436837", "source": "IDREF" }, { "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb150357447", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11947852t", "source": "BNF" }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4079237-7", - "source": "GND" + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040552977" }, { - "type": "bf:Nbn", - "value": "(DE-101)040792374", - "source": "GND" + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/154427228" }, { + "source": "WIKIPEDIA", "type": "uri", - "value": "http://viaf.org/viaf/66145602566901361640", - "source": "VIAF" + "value": "https://fr.wikipedia.org/wiki/Slovaquie" } ], - "classification": [ + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU. Le Monde, 1-1-1993", + "SY, 1987-88, 1993-94" + ] + }, + { + "noteType": "general", + "label": [ + "R\u00e9publique f\u00e9d\u00e9r\u00e9e de Tch\u00e9coslovaquie de 1968 \u00e0 1992, Etat ind\u00e9pendant depuis le 1er janvier 1993 ; capitale Bratislava" + ] + } + ], + "pid": "027436837", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Europe centrale" + } + ], + "relation_pid": { + "value": "066869196", + "type": "redirect_from" + }, + "variant_access_point": [ + "R\u00e9publique socialiste slovaque", + "Slovensko", + "Szlov\u00e1kia", + "R\u00e9publique slovaque", + "Slovensk\u00e1 Republika" + ], + "md5": "3b015b938916bd4ff4ed15023376fc15" + }, + { + "authorized_access_point": "G\u00e9orgie", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027439658", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb116643727", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040224066" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/316601102" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU" + ] + } + ], + "pid": "027439658", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Pays de la CEI" + }, + { + "authorized_access_point": "Transcaucasie" + } + ], + "variant_access_point": [ + "G\u00e9orgie (R\u00e9publique)", + "G\u00e9orgie (Transcaucasie)", + "Grouzia", + "Sakartv\u00e9lo", + "Gruzja", + "\u0413\u0440\u0443\u0437\u0438\u044f", + "Gruzi\u00e2", + "\u0413\u0440\u0443\u0437\u0438\u043d\u0441\u043a\u0430\u044f \u0421\u043e\u0432\u0435\u0442\u0441\u043a\u0430\u044f \u0421\u043e\u0446\u0438\u0430\u043b\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430", + "Gruzinska\u00e2 Sovetska\u00e2 Socialisti\u010deska\u00e2 Respublika", + "\u0413\u0440\u0443\u0437\u0438\u043d\u0441\u043a\u0430\u044f \u0421\u0421\u0420", + "Gruzinska\u00e2 SSR" + ], + "md5": "77dbaaf2d3d94c011f0d86627c3b2b8e" + }, + { + "authorized_access_point": "Rwanda", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027442128", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040769100" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/3125148574307124430008" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "IFLA, Names of states, 1981. Pays et capitales du monde / IGN, 1986. Laval RVM, 1995-02" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette on trouve les ouvrages qui traitent du territoire du Rwanda, avant ou depuis son ind\u00e9pendance en 1962. Les ouvrages sur le Ruanda-Urundi, qui comprenait \u00e0 l'\u00e9poque coloniale le territoire des actuels Rwanda et Burundi, se trouvent sous la vedette Ruanda-Urundi" + ] + } + ], + "pid": "027442128", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Afrique centrale" + } + ], + "variant_access_point": [ + "Ruanda" + ], + "md5": "388c80fa7229f04a8883159e39e95556" + }, + { + "authorized_access_point": "Tanzanie", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027442381", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11948282b", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040781496" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/1972148574302324430007" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "IFLA, Names of states, 1981. SY, 1990/19991" + ] + }, + { + "noteType": "general", + "label": [ + "Protectorat allemand en 1891, territoire sous mandat britannique en 1920, \u00c9tat ind\u00e9pendant le 09-12-1961, le Tanganyika s'unit \u00e0 Zanzibar et Pemba le 26-4-1964 pour former la R\u00e9publique unie du Tanganyika et de Zanzibar qui prend le nom de Tanzanie le 29-10-1964. Capitale Dodoma" + ] + } + ], + "pid": "027442381", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Afrique orientale anglophone" + } + ], + "variant_access_point": [ + "R\u00e9publique-Unie de Tanzanie", + "Tanganyika", + "Tanzania", + "Tanzanie continentale" + ], + "md5": "f3b15aa4d9dc848b97a053be2eb2d477" + }, + { + "authorized_access_point": "Tchad", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027442454", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040610748" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/2941148574389024430003" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "IFLA, Names of states, 1981" + ] + } + ], + "pid": "027442454", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Afrique centrale" + } + ], + "md5": "ddfc8b2a4998a523dbbe68a746b9bfb0" + }, + { + "authorized_access_point": "Tch\u00e9coslovaquie", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027442462", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11948289r", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040784355" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173418642" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "IFLA, Names of states, 1981. Monde, 1-1-1993. Laval RVM, 1995-02" + ] + }, + { + "noteType": "general", + "label": [ + "Fond\u00e9e le 14 novembre 1918, la Tch\u00e9coslovaquie se scinde le 1er janvier 1993 en R\u00e9publique tch\u00e8que et Slovaquie" + ] + }, + { + "noteType": "seeReference", + "label": [ + "Voir aussi la subdivision Et la Tch\u00e9coslovaquie aux personnes et collectivit\u00e9s" + ] + } + ], + "pid": "027442462", + "type": "bf:Place", + "variant_access_point": [ + "\u010ceskoslovensko" + ], + "md5": "dbc4fc88fc4e4254cadefad512cd1093" + }, + { + "authorized_access_point": "Bavi\u00e8re (Allemagne)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027443876", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040050440" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/125426357" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Bavi\u00e8re" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU. Brockhaus, 19. Aufl.", + "Laval RVM, 2000-01. Bayern ; GKD, 1994-05. SWD, 1995-04" + ] + }, + { + "noteType": "general", + "label": [ + "Duch\u00e9 puis \u00e9lectorat (1623), royaume (1806), et l'un des dix cercles du Saint Empire. L'\u00c9tat libre de Bavi\u00e8re (capitale : Munich) comprend 7 Regierungsbezirke" + ] + } + ], + "pid": "027443876", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Allemagne - L\u00e4nder" + }, + { + "authorized_access_point": "Allemagne (sud)" + } + ], + "variant_access_point": [ + "Bavaria", + "Bavi\u00e8re", + "Bavi\u00e8re (Duch\u00e9)", + "Bavi\u00e8re (\u00c9lectorat)", + "Bavi\u00e8re (Royaume)", + "Bayerischer Kreis (Saint Empire romain germanique)", + "Bayern (Allemagne)", + "Freistaat Bayern", + "Bayerischer Reichskreis" + ], + "md5": "e971545eccdfecc5648af5d4a6a6fd6c" + }, + { + "authorized_access_point": "Haguenau (Bas-Rhin)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02744628X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://ark.bnf.fr/ark:/12148/cb11948590s", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/8409148574328624430005" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1992. GDEL" + ] + } + ], + "pid": "02744628X", + "type": "bf:Place", + "md5": "952658a9c0aec444340350f2d50596a6" + }, + { + "authorized_access_point": "Versailles (Yvelines) - Ch\u00e2teau", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "720", + "name": "Architecture" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "912", + "name": "G\u00e9ographie de la France" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027448177", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119487267", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041944313" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Grand Larousse universel", + "Robert encyclop\u00e9dique des noms propres 2008", + "Wikip\u00e9dia - http://fr.wikipedia.org (2011-10-19)", + "Encycl. universalis - http://www.universalis.fr (2011-10-19)", + "Versailles : ch\u00e2teau de la France et orgueil des rois / C. Constans, 1989", + "Ch\u00e2teau de Versailles - http://www.chateauversailles.fr (2011-10-19)" + ] + }, + { + "noteType": "general", + "label": [ + "Ch\u00e2teau construit pour Louis XIII, puis agrandi \u00e0 partir de 1661 par Louis Le Vau puis Jules-Hardouin Mansart. Le roi et la cour y r\u00e9sid\u00e8rent de 1682 \u00e0 1789" + ] + } + ], + "pid": "027448177", + "type": "bf:Place", + "related": [ + { + "authorized_access_point": "France - Journ\u00e9es des 5 et 6 octobre 1789" + } + ], + "narrower": [ + { + "authorized_access_point": "Versailles (Yvelines) - Ch\u00e2teau - Aile du Midi" + }, + { + "authorized_access_point": "Versailles (Yvelines) - Ch\u00e2teau - Aile du Nord" + }, + { + "authorized_access_point": "Versailles (Yvelines) - Ch\u00e2teau - Ailes des Ministres" + }, + { + "authorized_access_point": "Versailles (Yvelines) - Ch\u00e2teau - Corps central" + }, + { + "authorized_access_point": "Versailles (Yvelines) - Ch\u00e2teau - \u00c9curies royales" + }, + { + "authorized_access_point": "Versailles (Yvelines) - Ch\u00e2teau - Galerie des Glaces" + }, + { + "authorized_access_point": "Versailles (Yvelines) - Ch\u00e2teau - R\u00e9servoirs" + }, + { + "authorized_access_point": "Versailles (Yvelines) - Ch\u00e2teau - Salle du Conseil priv\u00e9" + }, + { + "authorized_access_point": "Versailles (Yvelines) - Ch\u00e2teau - Salon de Mercure" + } + ], + "variant_access_point": [ + "Ch\u00e2teau de Versailles (Versailles, Yvelines)" + ], + "md5": "e57531b7bcc236787fd3ae4705be90be" + }, + { + "authorized_access_point": "\u00c9g\u00e9e, Mer", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02745228X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11949030s", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040684253" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/255146259" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Mer_\u00c9g\u00e9e" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU. Laval RVM, 1995-02" + ] + } + ], + "pid": "02745228X", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "M\u00e9diterran\u00e9e (mer ; est)" + } + ], + "variant_access_point": [ + "Aigaion Pelagos", + "Aiyaion Pelagos", + "Ege Denizi" + ], + "md5": "aba7a79a200fe2da5fb91e78086af08d" + }, + { + "authorized_access_point": "Rhin (cours d'eau)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027452816", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11949068g", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040497399" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/259663544" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Rhin" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU" + ] + } + ], + "pid": "027452816", + "type": "bf:Place", + "variant_access_point": [ + "Rhein (cours d'eau)", + "Rhenus (cours d'eau)", + "Rhin", + "Rijn (cours d'eau)" + ], + "md5": "8d441cc3c2aa2c2d8a45d8e16d14c50a" + }, + { + "authorized_access_point": "Ta\u00efwan", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027463613", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/207148632961830630000" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Taiwan ; LCSH, 1987-09 et LCSCM : H 925 ; Laval RVM suppl., 1987-09 ; Pays et capitales du Monde / IGN, 1986 ; GDEL ; Encycl. universalis, t.17 p.650 ; Atlas Le Monde ; BN Cartes et plans. Chine (R\u00e9publique) ; BN ACO ; China (Republic, 1949- ) ; LCNA, 1985" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette on trouve les ouvrages qui traitent de l'\u00eele de Taiwan et/ou de la R\u00e9publique de Chine ; en pr\u00e9cision g\u00e9ographique, employer la forme (Taiwan), par ex. Gaoxiong (Taiwan). Les ouvrages sur les organismes administratifs centraux de la R\u00e9publique et du Gouvernement provincial se trouvent respectivement sous les vedettes Chine (R\u00e9publique) et Taiwan (Province) suivies de la sous-vedette appropri\u00e9e, par ex. Chine (R\u00e9publique). Overseas Chinese Affairs Commission ; Taiwan (Province). Department of Information" + ] + } + ], + "pid": "027463613", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Asie orientale" + } + ], + "variant_access_point": [ + "Chine (R\u00e9publique)", + "Chine nationaliste", + "Formose", + "T'aiwan", + "\u53f0\u6e7e", + "\u53f0\u7063", + "\u81fa\u7063", + "Taiwan" + ], + "md5": "e104ae04968b9a160410996295bf4b05" + }, + { + "authorized_access_point": "\u00cele-de-France (France)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027464180", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11949941x", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040265382" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/150105086" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette, on trouve les ouvrages qui traitent de l'ancienne province et/ou de l'actuelle r\u00e9gion d'\u00cele-de-France" + ] + } + ], + "pid": "027464180", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "France (centre)" + }, + { + "authorized_access_point": "France - R\u00e9gions" + } + ], + "related": [ + { + "authorized_access_point": "Seine, Vall\u00e9e moyenne de la (France)" + } + ], + "variant_access_point": [ + "\u00cele-de-France", + "\u00cele de France", + "Paris (France ; r\u00e9gion)", + "Parisienne, R\u00e9gion (France)", + "R\u00e9gion parisienne (France)" + ], + "md5": "79e7eb61e64f6fc222d94dbcf581caa5" + }, + { + "authorized_access_point": "Italie (nord)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027464512", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11949964k", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "Italie (nord)" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173636567" + } + ], + "pid": "027464512", + "type": "bf:Place", + "variant_access_point": [ + "Italie du Nord" + ], + "md5": "43390788ca85252e4046411737e44aa1" + }, + { + "authorized_access_point": "Saint-Gall (Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027465012", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04051594X" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04051594X" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/9591148574375024430008" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "027465012", + "type": "bf:Place", + "variant_access_point": [ + "Sankt Gallen (Suisse)", + "St. Gallen (Suisse)", + "St.Gallen (Suisse)", + "St Gall (Suisse)", + "Saint Gall (Suisse)", + "Saint-Gall (Suisse)", + "Sankt-Gallen (Suisse)" + ], + "md5": "cc4bfa2fb7d8e7653927ce19dbe160a1" + }, + { + "authorized_access_point": "Empire byzantin", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027472906", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040092569" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/149804778" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Empire_byzantin" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Laval RVM, 1991-02" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette on trouve les ouvrages qui traitent de l'empire byzantin, de 395 \u00e0 1453. Les ouvrages qui traitent de la ville de Byzance avant 330 se trouvent sous la vedette Byzance" + ] + } + ], + "pid": "027472906", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Orient" + } + ], + "variant_access_point": [ + "Byzantin, Empire", + "Empire d'Orient", + "Empire romain d'Orient", + "Orient, Empire d'" + ], + "md5": "46bf3626d7e4962daa31bb002f1f8172" + }, + { + "authorized_access_point": "Pays industrialis\u00e9s", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "330", + "name": "\u00c9conomie politique" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "910", + "name": "G\u00e9ographie" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027479056", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119510302", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04026840" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/172385834" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Eurovoc thesaurus, 1987", + "Lexique d'\u00e9conomie Dalloz, 2002" + ] + }, + { + "noteType": "general", + "label": [ + "Cette expression d\u00e9signe les pays particuli\u00e8rement avanc\u00e9s dans les domaines des capacit\u00e9s industrielles, de la productivit\u00e9 \u00e9conomique et de la sophistication technologique" + ] + } + ], + "pid": "027479056", + "type": "bf:Place", + "related": [ + { + "authorized_access_point": "Occident" + } + ], + "narrower": [ + { + "authorized_access_point": "Nouveaux pays industrialis\u00e9s" + }, + { + "authorized_access_point": "Pays de l'OCDE" + } + ], + "variant_access_point": [ + "Pays d\u00e9velopp\u00e9s", + "Pays \u00e9conomiquement d\u00e9velopp\u00e9s", + "Pays industriels", + "Pays riches" + ], + "md5": "ea56b712faa702fdd72ffa5619000428" + }, + { + "authorized_access_point": "Cisjordanie", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027482928", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040657418" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/155352830" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. West Bank ; LCSH, 1985" + ] + }, + { + "noteType": "general", + "label": [ + "Cette vedette s'emploie directement en subdivision de lieu. Les localit\u00e9s de Cisjordanie sont localis\u00e9es \u00e0 (Cisjordanie), et en subdivision suivent la construction indirecte : -- Cisjordanie -- Nom de lieu", + "Partie de la Palestine annex\u00e9e par la Jordanie (24-04-1950) et occup\u00e9e par Israe\u034f\u0308l depuis juin 1967" + ] + } + ], + "pid": "027482928", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Palestine" + } + ], + "variant_access_point": [ + "Jud\u00e9e et Samarie" + ], + "md5": "c60f301f36962e6a23bde50498857a74" + }, + { + "authorized_access_point": "Constance, Lac de", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027483169", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb152986119", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04007403X" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/8145602486301362470" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Lac_de_Constance" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "027483169", + "type": "bf:Place", + "variant_access_point": [ + "Bodensee (lac)", + "Lac de Constance" + ], + "md5": "8041beddaf8fe3ef62b16052b0336370" + }, + { + "authorized_access_point": "Croatie", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027483304", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040738418" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/8072148574327224430003" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU" + ] + } + ], + "pid": "027483304", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Europe centrale" + } + ], + "variant_access_point": [ + "Hrvatska", + "\u0425\u0440\u0432\u0430\u0442\u0441\u043a\u0430", + "Hrvatska" + ], + "md5": "6a8eecd5ef17607cd502e17636bcc731" + }, + { + "authorized_access_point": "Dombes (France ; sud)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02748355X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12503056n", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/109144648552106101862" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Dombes" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "02748355X", + "type": "bf:Place", + "variant_access_point": [ + "C\u00f4ti\u00e8re de Dombes" + ], + "md5": "af927d2307827772303c55f71888690d" + }, + { + "authorized_access_point": "Ha\u00efti", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027484319", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040229742" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/462154387165030970008" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Names of states / IFLA, 1981" + ] + } + ], + "pid": "027484319", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Ha\u00efti (\u00eele)" + } + ], + "md5": "55bf00e18a3e1db4ccf0c07edbd79916" + }, + { + "authorized_access_point": "Ligurie (Italie ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02748498X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb14643876r", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040357198" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/164861616" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "02748498X", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Italie (nord)" + }, + { + "authorized_access_point": "Italie - R\u00e9gions" + } + ], + "variant_access_point": [ + "Liguria (Italie)" + ], + "md5": "8a30413000f2d5981824b7c01eb1faf2" + }, + { + "authorized_access_point": "Ombrie (Italie)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027485552", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040615812" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/154755801" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "027485552", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Italie (centre)" + }, + { + "authorized_access_point": "Italie - R\u00e9gions" + } + ], + "variant_access_point": [ + "Umbria (Italie)" + ], + "md5": "74848f02327e6f13f31d38f50024c2bb" + }, + { + "authorized_access_point": "Ad\u00e9lie, Terre (Antarctique)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027486354", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11951563d", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042596270" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/2863147270504335700004" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Terre_Ad\u00e9lie" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU, 1991", + "Laval RVM, 1996-08" + ] + } + ], + "pid": "027486354", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Antarctique" + }, + { + "authorized_access_point": "Terres australes et antarctiques fran\u00e7aises" + } + ], + "variant_access_point": [ + "Terre Ad\u00e9lie (Antarctique)" + ], + "md5": "59f0c292a65754a04fe2efa5037bd8b3" + }, + { + "authorized_access_point": "Nouvelle-Cal\u00e9donie", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027491099", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041024982" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/2506148574304424430002" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU", + "\"Le bois anc\u00eatre\" : arbres, for\u00eats et occupation kanak pr\u00e9coloniale sur la Grande Terre de Nouvelle-Cal\u00e9donie : \u00e9tude de cas et approche anthracologique dans la vall\u00e9e de la Tiwaka (Nord Est) / \u00c9milie Dotte-Sarout, 2010", + "Les rapports des 9 ateliers du diagnostic : Nouvelle-Cal\u00e9donie 2025, sch\u00e9ma d'am\u00e9nagement et de d\u00e9veloppement de la Nouvelle-Cal\u00e9donie / Haut-commissariat de la R\u00e9publique en Nouvelle-Cal\u00e9donie ; Gouvernement de la Nouvelle-Cal\u00e9donie. - Noum\u00e9a : Gouvernement de la Nouvelle-Cal\u00e9donie, 2009" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette on trouve les ouvrages qui traitent de l'archipel de la Nouvelle-Cal\u00e9donie (Grande Terre, Loyaut\u00e9, Belep, \u00cele des Pins, etc) ou de la seule Grande-Terre", + "Emploi direct en subdivision : [Sujet] -- Nouvelle-Cal\u00e9donie" + ] + } + ], + "pid": "027491099", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "France - Collectivit\u00e9s d'outre-mer" + }, + { + "authorized_access_point": "M\u00e9lan\u00e9sie" + }, + { + "authorized_access_point": "Pacifique, \u00celes du" + } + ], + "relation_pid": { + "value": "163936250", + "type": "redirect_from" + }, + "variant_access_point": [ + "Grande-Terre (Nouvelle-Cal\u00e9donie)", + "Kanaky", + "Nouvelle-Cal\u00e9donie et D\u00e9pendances" + ], + "md5": "cdda416d62d20ce4ef93a621634d0d36" + }, + { + "authorized_access_point": "Gibraltar", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027492753", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb14011467j", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/125501644" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Gibraltar" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. LCSH, 1985" + ] + }, + { + "noteType": "general", + "label": [ + "Cette vedette s'emploie directement en subdivision de lieu" + ] + } + ], + "pid": "027492753", + "type": "bf:Place", + "md5": "b38be6f7e0ec587194976b9c8e6d799b" + }, + { + "authorized_access_point": "Albanie", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027501302", + "source": "IDREF" + }, + { + "type": "uri", + "value": "https://catalogue.bnf.fr/ark:/12148/cb11952716p", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040010287" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/8663159248210104870006" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Names of states / IFLA, 1981", + "wikipedia.org, 2019-07-25" + ] + } + ], + "pid": "027501302", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Balkans" + } + ], + "variant_access_point": [ + "Shqipe\u034f\u0308ri", + "Shqip\u00ebria", + "Arbri", + "Arb\u00ebria", + "Republika e Shqip\u00ebris\u00eb" + ], + "md5": "65ed7e698d80e0d6d24c8ffc755ce852" + }, + { + "authorized_access_point": "Caucase", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027501418", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040300900" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/172982363" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette on trouve les ouvrages qui traitent de la Ciscaucasie (versant nord du Grand Caucase) et de la Transcaucasie (versant sud du Grand Caucase, d\u00e9pression Rion-Koura et Petit Caucase)" + ] + } + ], + "pid": "027501418", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Grand Caucase (monts)" + }, + { + "authorized_access_point": "Petit Caucase (monts)" + }, + { + "authorized_access_point": "Transcaucasie" + } + ], + "variant_access_point": [ + "Caucasie", + "Kavkaz" + ], + "md5": "1ab065708601c70d2bc7833f4073823b" + }, + { + "authorized_access_point": "Asie orientale", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027502333", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119528028", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040757277" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/172332114" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU (art. Extr\u00eame-Orient)", + "Extr\u00eame-Orient ; Laval RVM, 1998-07" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette on trouve les ouvrages qui traitent de la partie de l'Asie comprenant la Chine, la Cor\u00e9e, le Japon, la Sib\u00e9rie orientale, l'Indochine et l'Insulinde" + ] + } + ], + "pid": "027502333", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Asie du Nord-Est" + }, + { + "authorized_access_point": "Asie du Sud-Est" + }, + { + "authorized_access_point": "Chine" + }, + { + "authorized_access_point": "Cor\u00e9e" + }, + { + "authorized_access_point": "Japon" + }, + { + "authorized_access_point": "Pacifique, C\u00f4te du (Asie)" + }, + { + "authorized_access_point": "Sib\u00e9rie (Russie ; est)" + }, + { + "authorized_access_point": "Ta\u00efwan" + } + ], + "variant_access_point": [ + "Asie (est)", + "Asie de l'Est", + "Asie-Pacifique, R\u00e9gion", + "Extr\u00eame-Orient", + "Orient, Extr\u00eame-" + ], + "md5": "ca87cd42cd4cf474996fc049877519ee" + }, + { + "authorized_access_point": "Asie du Sud-Est", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027502368", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040584488" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/255510483" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Asie_du_Sud-Est" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU", + "Laval RVM, 2001-01" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette on trouve les documents qui traitent de la partie de l'Asie situ\u00e9e \u00e0 l'est de l'Inde et au sud de la Chine, comprenant l'Indochine (Birmanie, Cambodge, Laos, Malaisie, Tha\u00eflande et Viet-Nam) et l'Insulinde (Brun\u00e9i, Indon\u00e9sie, Malaisie orientale, Philippines et Singapour)" + ] + } + ], + "pid": "027502368", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Asie orientale" + } + ], + "variant_access_point": [ + "ASEAN, Pays de l'", + "Asie (sud-est)", + "Asie sud-orientale", + "Association des nations de l'Asie du Sud-Est, Pays de l'", + "Pays de l'ASEAN", + "Pays de l'Association des nations de l'Asie du Sud-Est", + "Sud-Est asiatique" + ], + "md5": "7a91398a69ff88bb591e36e20002dbb1" + }, + { + "authorized_access_point": "Pacifique (oc\u00e9an)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027502775", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15287406q", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040449815" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/170040002" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Pacifique, Oc\u00e9an ; Laval RVM, 1995-02" + ] + }, + { + "noteType": "seeReference", + "label": [ + "Voir aussi aux diff\u00e9rentes parties du Pacifique, par ex. Pacifique (oc\u00e9an ; sud)" + ] + } + ], + "pid": "027502775", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Chine, Mer de" + }, + { + "authorized_access_point": "Japon, Mer du" + } + ], + "variant_access_point": [ + "Oc\u00e9an Pacifique", + "Pacifique" + ], + "md5": "f455d6b2f2a7605b32e0d080015415ae" + }, + { + "authorized_access_point": "Sichuan (Chine ; province)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027504271", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/134813396" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Atlas Le Monde" + ] + }, + { + "noteType": "general", + "label": [ + "Province chinoise" + ] + } + ], + "pid": "027504271", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Chine (sud)" + }, + { + "authorized_access_point": "Chine - Provinces" + } + ], + "variant_access_point": [ + "Sseu-tch'ouan", + "Szechwan", + "\u56db\u5ddd\u7701", + "Sichuan Sheng" + ], + "md5": "25538ee9a0a6d93e6c9fd5f7b60a53fe" + }, + { + "authorized_access_point": "Somalie", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027504379", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040775097" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/5310148574275024430005" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Names of states / IFLA, 1981" + ] + } + ], + "pid": "027504379", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Afrique du Nord-Est" + } + ], + "variant_access_point": [ + "Somalia" + ], + "md5": "4d4377360babe693f1b2464391b82760" + }, + { + "authorized_access_point": "Mac\u00e9doine", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027522296", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041149378" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/135978180" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Mac\u00e9doine_(r\u00e9gion)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU", + "Laval RVM, 1996-02" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette on trouve les ouvrages qui traitent de la Mac\u00e9doine historique, partag\u00e9e en 1913 entre la Bulgarie, la Gr\u00e8ce et la Serbie. Les ouvrages sur la Mac\u00e9doine serbe, puis yougoslave, qui est devenue une R\u00e9publique ind\u00e9pendante le 20-11-1992, se trouvent sous la vedette Mac\u00e9doine (R\u00e9publique) et Mac\u00e9doine du Nord" + ] + } + ], + "pid": "027522296", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Mac\u00e9doine (Gr\u00e8ce)" + }, + { + "authorized_access_point": "Balkans" + } + ], + "related": [ + { + "authorized_access_point": "Mac\u00e9doine du Nord (R\u00e9publique)" + } + ], + "variant_access_point": [ + "Makedonija", + "\u039c\u03b1\u03ba\u03b5\u03b4\u03bf\u03bd\u03af\u03b1", + "Makhedonia" + ], + "md5": "370b78fc8775fcfe684f7b1884d375dd" + }, + { + "authorized_access_point": "Laponie", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027528359", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040345815" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173744995" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "027528359", + "type": "bf:Place", + "md5": "de35fc735059a0ab5d7d64d3d0b217b7" + }, + { + "authorized_access_point": "Congo (R\u00e9publique)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027544931", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119562586", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040320979" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173167475" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/R\u00e9publique_du_Congo" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "SY 1994-95", + "Congo ; Laval RVM, 1997-02" + ] + } + ], + "pid": "027544931", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Afrique centrale" + } + ], + "variant_access_point": [ + "Congo", + "Congo (Brazzaville)", + "Congo (R\u00e9publique populaire)", + "Congo-Brazzaville", + "Congo fran\u00e7ais" + ], + "md5": "75c0cc10b6fe7bb834fe9f409bc97383" + }, + { + "authorized_access_point": "Thurgovie (Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02754785X", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041196058" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/117148570735124312537" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. SY 1990/91" + ] + }, + { + "noteType": "general", + "label": [ + "Canton suisse" + ] + } + ], + "pid": "02754785X", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Suisse - Cantons" + } + ], + "variant_access_point": [ + "Thurgau (Suisse)" + ], + "md5": "af5e20e03fdd66cd7f292695816cba46" + }, + { + "authorized_access_point": "Berz\u00e9-la-Ville (Sa\u00f4ne-et-Loire)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027552543", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11956863f", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/237008510" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Berz\u00e9-la-Ville" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1984" + ] + } + ], + "pid": "027552543", + "type": "bf:Place", + "md5": "35f272eb34c315afe3d15cf4fb732c4d" + }, + { + "authorized_access_point": "P\u00e9kin (Chine)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027557758", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15238685m", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040759717" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/312565158" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/P\u00e9kin" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Laval RVM, 1991-08. BN Service chinois", + "wikipedia.org, 2018-04-04" + ] + } + ], + "pid": "027557758", + "type": "bf:Place", + "variant_access_point": [ + "Bei-jing (Chine)", + "Bei-ping (Chine)", + "Beijing (Chine)", + "Beiping (Chine)", + "Pei-ching (Chine)", + "Pei-king (Chine)", + "Pei-p'ing (Chine)", + "Pei-ping (Chine)", + "Peiping (Chine)", + "Peking (Chine)", + "\u5317\u4eac", + "\u5317\u4eac\u5e02", + "\u5317\u5e73", + "B\u011bip\u00edng", + "\u5927\u90fd", + "D\u00e0d\u016b", + "\u6c57\u516b\u91cc", + "H\u00e0nb\u0101l\u01d0", + "Khanbalik", + "Cambaluc" + ], + "md5": "c3b9e0f0d90e198d1e988d643f84bf2b" + }, + { + "authorized_access_point": "Shaanxi (Chine ; province)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027563278", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119576874", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173472735" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Atlas Le Monde" + ] + }, + { + "noteType": "general", + "label": [ + "Province chinoise" + ] + } + ], + "pid": "027563278", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Chine (nord)" + }, + { + "authorized_access_point": "Chine - Provinces" + } + ], + "variant_access_point": [ + "\u965d\u897f", + "Chen-si", + "Shen-hsi", + "Shensi", + "\u9655\u897f\u7701", + "Shaanxi Sheng" + ], + "md5": "0eb875bbf602a140dbfcc5300e76bc27" + }, + { + "authorized_access_point": "Villars-les-Dombes (Ain)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027564053", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13121289j", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/246262792" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Villars-les-Dombes" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1984" + ] + } + ], + "pid": "027564053", + "type": "bf:Place", + "md5": "24c2211d691cb09ce18f6a450b02e302" + }, + { + "authorized_access_point": "Zhejiang (Chine ; province)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027564223", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/123524226" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Atlas Le Monde", + "Wikip\u00e9dia, https://fr.wikipedia.org/wiki/Zhejiang, 2020-11-05" + ] + }, + { + "noteType": "general", + "label": [ + "Province chinoise" + ] + } + ], + "pid": "027564223", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Chine (sud)" + }, + { + "authorized_access_point": "Chine - Provinces" + } + ], + "variant_access_point": [ + "Che-kiang", + "Chekiang", + "Ch\u00f6-kiang", + "Tch\u00f6-kiang", + "Tch\u00e9-Kiang", + "\u6d59\u6c5f\u7701", + "Zhejiang Sheng" + ], + "md5": "37effa31260d123f4da997388a77151f" + }, + { + "authorized_access_point": "Montricher-Albanne (Savoie)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027579425", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/241581656" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Montricher-Albanne" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Dict. communes, 1984" + ] + } + ], + "pid": "027579425", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Les Karellis (Savoie)" + } + ], + "variant_access_point": [ + "Albanne (Savoie)" + ], + "md5": "4287f889553136466a9f714b63b0de0b" + }, + { + "authorized_access_point": "Pays de langue fran\u00e7aise", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027584763", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11959324w", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040181413" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/13144647641039724008" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Laval RVM, 1996-08" + ] + } + ], + "pid": "027584763", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Afrique francophone" + }, + { + "authorized_access_point": "Am\u00e9rique francophone" + }, + { + "authorized_access_point": "Europe francophone" + } + ], + "variant_access_point": [ + "Pays francophones", + "R\u00e9gions de langue fran\u00e7aise" + ], + "md5": "f59ed97d201174417c1ff9800d481982" + }, + { + "authorized_access_point": "Pomp\u00e9i (Italie)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027585190", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119593586", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040467554" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/316884438" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "027585190", + "type": "bf:Place", + "related": [ + { + "authorized_access_point": "Pomp\u00e9i (ville ancienne)" + } + ], + "md5": "5f31abf1fba20ed87670b53eac62573f" + }, + { + "authorized_access_point": "Guin\u00e9e", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027596591", + "source": "IDREF" + }, + { + "type": "uri", + "value": "https://catalogue.bnf.fr/ark:/12148/cb11960248n", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040225208" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/3649148574267924430008" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Names of states / IFLA, 1981" + ] + } + ], + "pid": "027596591", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Afrique occidentale" + } + ], + "variant_access_point": [ + "Guin\u00e9e fran\u00e7aise" + ], + "md5": "79247b0d1de9e9effd206e33fb88c848" + }, + { + "authorized_access_point": "Allevard (Is\u00e8re ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027603504", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11960787x", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/147280021" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Allevard" + } + ], + "pid": "027603504", + "type": "bf:Place", + "variant_access_point": [ + "Br\u00e9da (France ; cours d'eau ; vall\u00e9e haute)", + "Pays d'Allevard (France)" + ], + "md5": "2782553070dd774c82d6588253e1cfa6" + }, + { + "authorized_access_point": "Anhui (Chine ; province)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027603784", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11960807q", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/316144783067243628506" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Atlas Le Monde" + ] + }, + { + "noteType": "general", + "label": [ + "Province chinoise" + ] + } + ], + "pid": "027603784", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Chine (sud)" + }, + { + "authorized_access_point": "Chine - Provinces" + } + ], + "variant_access_point": [ + "Anhwei (Chine)", + "Ngan-houei (Chine)", + "\u5b89\u5fbd\u7701", + "Anhui Sheng" + ], + "md5": "6da5c13e3f07f0901ff877f3e531a1b1" + }, + { + "authorized_access_point": "Transsib\u00e9rien, Chemin de fer (Russie)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027606996", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11961068z", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04060702X" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/304926548" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "027606996", + "type": "bf:Place", + "variant_access_point": [ + "Moscou-Vladivostok, Chemin de fer (Russie)", + "Vladivostok-Moscou, Chemin de fer (Russie)" + ], + "md5": "0c80b548d7d0fedbd88cd3b8ad88ebe9" + }, + { + "authorized_access_point": "Luanda (Angola)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02761803X", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/1544158188257920260000" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Luanda" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + }, + { + "noteType": "general", + "label": [ + "Capitale de pays" + ] + } + ], + "pid": "02761803X", + "type": "bf:Place", + "variant_access_point": [ + "S\u00e3o Paulo de Loanda (Angola)" + ], + "md5": "dc237affec7cb18ef7934e219688eea6" + }, + { + "authorized_access_point": "Sil\u00e9sie (Pologne)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027621952", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11962295n", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04052678X" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/137152383" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "027621952", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Sil\u00e9sie" + }, + { + "authorized_access_point": "Pologne (sud)" + }, + { + "authorized_access_point": "Pologne (ouest)" + }, + { + "authorized_access_point": "Territoires anciennement allemands de l'est" + } + ], + "md5": "dc8a8486d29f57fa59f30a223c7f2f10" + }, + { + "authorized_access_point": "Su\u00e8de", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027622444", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13953240p", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040772586" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/178302678" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "IFLA, Names of states, 1981", + "Laval RVM, 1996-02. Sverige ; GKD, 1994-05" + ] + }, + { + "noteType": "seeReference", + "label": [ + "Voir aussi la subdivision Et la Su\u00e8de aux personnes et collectivit\u00e9s" + ] + } + ], + "pid": "027622444", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Scandinavie" + }, + { + "authorized_access_point": "Pays de l'Union europ\u00e9enne" + } + ], + "variant_access_point": [ + "Sverige" + ], + "md5": "6a626aaeae6f11349168be562d90d90d" + }, + { + "authorized_access_point": "Y\u00e9men", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02763065X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11963045s", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040730093" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/158182311" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Y\u00e9men" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Le Monde, 1990-05-23", + "Y\u00e9men ; Pays et capitales du monde / IGN, 1986. Y\u00e9men (R\u00e9publique arabe) ; IFLA, Names of states, 1981 ; BN ACO ; GDEL. Laval RVM, 1991-08 distingue les vedettes Y\u00e9men et Y\u00e9men du Nord" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette on trouve les ouvrages qui traitent du Y\u00e9men jusqu'en 1962 et/ou de la R\u00e9publique arabe du Y\u00e9men (1962-1990) et/ou du Y\u00e9men unifi\u00e9 depuis 1990", + "Le 26-09-1962, l'imam Mansour est d\u00e9pos\u00e9, et le Y\u00e9men devient la R\u00e9publique arabe du Y\u00e9men. Le 22-05-1990, proclamation de la R\u00e9publique du Y\u00e9men, r\u00e9sultant de la fusion entre le Nord et le Sud-Y\u00e9men (Capitale : \u1e62an \u0326\u0101)" + ] + } + ], + "pid": "02763065X", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Arabie" + }, + { + "authorized_access_point": "Arabie (sud)" + } + ], + "variant_access_point": [ + "Nord-Y\u00e9men", + "Y\u00e9men (R\u00e9publique arabe)", + "Y\u00e9men du Nord", + "\u0627\u0644\u064a\u0645\u0646", + "Al-Yaman", + "\u064a\u0645\u0646", + "Yaman" + ], + "md5": "b5fcaeee23313ea7ffc6d65060b364a3" + }, + { + "authorized_access_point": "Mont-Cenis, Col du (France)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027632571", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119632320", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173636676" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Col_du_Mont-Cenis" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "027632571", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Mont-Cenis (France ; massif)" + } + ], + "variant_access_point": [ + "Cenis, Col du Mont- (France)", + "Mont Cenis, Col du (France)" + ], + "md5": "ba18131f63e2e025a23f89dbcd61e2f3" + }, + { + "authorized_access_point": "Everest, Mont", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02763857X", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04040417X" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/247168735" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Everest" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "02763857X", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Himalaya" + } + ], + "variant_access_point": [ + "Chomolungma (mont)" + ], + "md5": "cd5ffd90c570edfa3e753e63430b1365" + }, + { + "authorized_access_point": "Pacifique (r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027645649", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119643079", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040449823" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/172439456" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Pacific Area ; LCSH, 1988-06. Pacifique, R\u00e9gion du ; Laval RVM suppl., 1988-03" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette on trouve les ouvrages qui traitent de l'ensemble form\u00e9 par les \u00eeles et les pays riverains du Pacifique" + ] + } + ], + "pid": "027645649", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Pacifique, \u00celes du" + }, + { + "authorized_access_point": "Oc\u00e9anie" + } + ], + "variant_access_point": [ + "Pacifique (oc\u00e9an ; r\u00e9gion)" + ], + "md5": "7c270e7faae634a68d753f797640acf5" + }, + { + "authorized_access_point": "Russie - 1917 (R\u00e9volution)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "940", + "name": "Histoire de l'Europe" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027656438", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11965185s", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04043429X" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Grand Larousse universel (art. : R\u00e9volution russe de 1917)", + "Dict. encyclop\u00e9dique d'histoire / M. Mourre (art. : Russie)" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette, on trouve les documents qui traitent des \u00e9v\u00e9nements survenus du 12 au 15 mars 1917 (27 f\u00e9vrier-2 mars du calendrier julien), jusqu'aux 6 et 7 novembre 1917 (24-25 octobre du calendrier julien). Les documents sur l'ensemble de la p\u00e9riode r\u00e9volutionnaire de 1917 \u00e0 1921 sont sous la vedette : URSS -- 1917-1921 (R\u00e9volution)" + ] + } + ], + "pid": "027656438", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "URSS - 1917-1921 (R\u00e9volution)" + } + ], + "variant_access_point": [ + "URSS - 1917 (R\u00e9volution)" + ], + "md5": "14846c12b155c9e48299865d090d6f23" + }, + { + "authorized_access_point": "Ch\u00e2teauneuf-de-Galaure (Dr\u00f4me)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027668479", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/3155148574307224430007" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Ch\u00e2teauneuf-de-Galaure" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1984" + ] + } + ], + "pid": "027668479", + "type": "bf:Place", + "md5": "89b1f91462e271f042508e079c400469" + }, + { + "authorized_access_point": "Anglo-Normandes, \u00celes (GB)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027680231", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119671393", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040731863" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/316732616" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/\u00celes_Anglo-Normandes" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. SY 1990/91. \u00celes Anglo-Normandes ; Laval RVM, 1990-08" + ] + } + ], + "pid": "027680231", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Grande-Bretagne" + }, + { + "authorized_access_point": "Manche, \u00celes de la" + } + ], + "variant_access_point": [ + "Channel Islands (GB)", + "\u00celes Anglo-Normandes (GB)" + ], + "md5": "1aaf18f233393879a66f0cac5c25e16e" + }, + { + "authorized_access_point": "Gen\u00e8ve (Suisse) - Cath\u00e9drale Saint-Pierre", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "690", + "name": "Construction" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "720", + "name": "Architecture" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914", + "name": "G\u00e9ographie de l'Europe" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027693007", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11968062k", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042384516" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Petit Robert des noms propres 2013 (art. : Gen\u00e8ve)", + "Grand Larousse universel (art. : Gen\u00e8ve)", + "Wikip\u00e9dia : Cath\u00e9drale Saint-Pierre de Gen\u00e8ve - https://fr.wikip\u00e9dia.org (2016-01-22)", + "Guides Voir : Suisse, 2012", + "Cath\u00e9drale Saint-Pierre - Ville de Gen\u00e8ve - http://www.ville-geneve.ch (2016-01-22)", + "Cath\u00e9drale Saint-Pierre - Gen\u00e8ve - http://www.cathedrale-geneve.ch (2016-01-22)" + ] + }, + { + "noteType": "general", + "label": [ + "Cath\u00e9drale sise dans la cour du m\u00eame nom, construite de 1160 \u00e0 1230, avec une fl\u00e8che entre ses deux tours ; un portail n\u00e9oclassique \u00e0 colonnes est ajout\u00e9 au 18e si\u00e8cle. A l'endroit de plusieurs \u00e9difices cultuels ant\u00e9rieurs - un temple romain, un palais \u00e9piscopal (en t\u00e9moigne son pavement mosa\u00efqu\u00e9), une \u00e9glise romane (on trouve des chapiteaux romans et gothiques) - la cath\u00e9drale est d'abord vou\u00e9e au culte catholique, avant de devenir cath\u00e9drale protestante \u00e0 partir de la R\u00e9forme (1535), avec les pr\u00eaches de Guillaume Farel et surtout de Jean Calvin" + ] + } + ], + "pid": "027693007", + "type": "bf:Place", + "variant_access_point": [ + "Cath\u00e9drale Saint-Pierre (Gen\u00e8ve, Suisse)", + "Saint-Pierre, Cath\u00e9drale (Gen\u00e8ve, Suisse)" + ], + "md5": "da4b3f8e72594a127b20f210eb9356a9" + }, + { + "authorized_access_point": "Guangdong (Chine ; province)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027693805", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/123100736" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Atlas Le Monde" + ] + }, + { + "noteType": "general", + "label": [ + "Province de Chine" + ] + } + ], + "pid": "027693805", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Chine (sud)" + }, + { + "authorized_access_point": "Chine - Provinces" + } + ], + "variant_access_point": [ + "\u5ee3\u6771\u7701", + "Canton (Chine ; province)", + "Kouang-tong (Chine)", + "Kuang-tung (Chine)", + "Kwangtung (Chine)", + "\u5e7f\u4e1c\u7701", + "Guangdong Sheng" + ], + "md5": "bf52e7bd5eef5a9024459fc77e2cd3ed" + }, + { + "authorized_access_point": "Guangxi (Chine ; province)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027693821", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb153562085", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/263760018" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Atlas Le Monde" + ] + }, + { + "noteType": "general", + "label": [ + "R\u00e9gion autonome en partie peupl\u00e9e de Zhuang, Chine" + ] + } + ], + "pid": "027693821", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Chine - Provinces" + }, + { + "authorized_access_point": "Chine (sud)" + } + ], + "variant_access_point": [ + "Kouang-si (Chine)", + "Kuang-hsi (Chine)", + "Kwangsi (Chine)", + "\u5ee3\u897f\u7701", + "\u5e7f\u897f\u58ee\u65cf\u81ea\u6cbb\u533a", + "\u5ee3\u897f\u58ef\u65cf\u81ea\u6cbb\u5340", + "gu\u01cengx\u012b zhu\u00e0ngz\u00fa z\u00eczh\u00ecq\u016b", + "\u5e7f\u897f\u7701", + "Guangxi Sheng" + ], + "md5": "15d43252c3c4f162be7f96d5e57c370e" + }, + { + "authorized_access_point": "Kowe\u00eft (Kowe\u00eft)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027694658", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/127853965" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Kowe\u00eft_(ville)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + }, + { + "noteType": "general", + "label": [ + "Capitale du Kowe\u00eft" + ] + } + ], + "pid": "027694658", + "type": "bf:Place", + "md5": "edd18dc318fd56b186ab1949754ab2f7" + }, + { + "authorized_access_point": "Rh\u00f4ne, Vall\u00e9e du", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027705781", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119691089", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041037766" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041037766" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173745158" + } + ], + "pid": "027705781", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Rhodanien, Sillon (France)" + } + ], + "md5": "d573c5bf79b2612914c166c0fd56aaf3" + }, + { + "authorized_access_point": "Claix (Is\u00e8re)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027722996", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119704817", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/295782321" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Claix_(Is\u00e8re)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1984" + ] + } + ], + "pid": "027722996", + "type": "bf:Place", + "md5": "3b20eae7ddc70089c7a06b87837226ab" + }, + { + "authorized_access_point": "Rh\u00e9nanie (Allemagne)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027744795", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119721889", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040497887" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173036235" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Mourre, 1986. GLU, 1991", + "Laval RVM, 1996-02. Rheinland ; Rheinprovinz ; SWD, 1995-04" + ] + }, + { + "noteType": "general", + "label": [ + "Partie de l'Allemagne situ\u00e9e de part et d'autre du Rhin, de la fronti\u00e8re fran\u00e7aise \u00e0 la fronti\u00e8re n\u00e9erlandaise" + ] + } + ], + "pid": "027744795", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Allemagne (ouest)" + }, + { + "authorized_access_point": "Rhin, Bassin du" + } + ], + "variant_access_point": [ + "Prusse rh\u00e9nane", + "Rheinland (Allemagne)", + "Rheinprovinz" + ], + "md5": "e64318facf37ac85767be3326f602c4a" + }, + { + "authorized_access_point": "Alpes (Italie)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02775751X", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040278395" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/316431852" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Alps, Italian (Italy) ; LCSH, 1988-12" + ] + } + ], + "pid": "02775751X", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Grappa (Italie ; massif)" + }, + { + "authorized_access_point": "Cadore (Italie)" + }, + { + "authorized_access_point": "Dolomites (Italie ; massif)" + }, + { + "authorized_access_point": "Alpes juliennes" + }, + { + "authorized_access_point": "Alpes cottiennes" + }, + { + "authorized_access_point": "Alpes maritimes (massif)" + }, + { + "authorized_access_point": "Adamello (Italie ; massif)" + } + ], + "variant_access_point": [ + "Alpes italiennes" + ], + "md5": "27a1700c28a39fe81f0c084bc3b6d824" + }, + { + "authorized_access_point": "Hangzhou (Chine)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027764842", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/172602288" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Hangzhou" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU. Atlas universalis, 1984. LCNA (CD), 1995-09" + ] + }, + { + "noteType": "general", + "label": [ + "Ville de Chine, capitale de la province de Zhejiang" + ] + } + ], + "pid": "027764842", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Zhejiang (Chine ; province)" + } + ], + "relation_pid": { + "value": "075553589", + "type": "redirect_from" + }, + "variant_access_point": [ + "Hang-tcheou (Chine)", + "Hangchow (Chine)", + "Hang-chou Shih (Chine)", + "\u676d\u5dde\u5e02", + "Hangzhou Shi" + ], + "md5": "47e55bec6a4ab81f93f8542e47dee6b2" + }, + { + "authorized_access_point": "France (est)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027768627", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119740170", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04044063X" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173255369" + } + ], + "pid": "027768627", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Alsace (France)" + }, + { + "authorized_access_point": "Bourgogne (France)" + }, + { + "authorized_access_point": "Champagne-Ardenne (France)" + }, + { + "authorized_access_point": "Franche-Comt\u00e9 (France)" + }, + { + "authorized_access_point": "Lorraine (France)" + }, + { + "authorized_access_point": "Rh\u00f4ne-Alpes (France)" + } + ], + "md5": "61d6df6f1e38b7d3b0f94c2b0f6df85e" + }, + { + "authorized_access_point": "France (ouest)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02776866X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119740217", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042449510" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/172492580" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "France (Ouest) ; Laval RVM, 1994-02" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette on trouve les ouvrages qui traitent de la partie de la France situ\u00e9e entre l'estuaire de la Seine et la Gironde" + ] + } + ], + "pid": "02776866X", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Armoricain, Massif (France)" + }, + { + "authorized_access_point": "Basse-Normandie (France)" + }, + { + "authorized_access_point": "Bretagne (France)" + }, + { + "authorized_access_point": "Pays de la Loire (France)" + }, + { + "authorized_access_point": "Poitou-Charentes (France)" + }, + { + "authorized_access_point": "Longueville (Calvados, Basse-Normandie)" + } + ], + "md5": "2d8349fabb5f614221360c6eef11d6ac" + }, + { + "authorized_access_point": "France (sud)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027768678", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11974022k", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040714039" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/172332341" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "France (Sud) ; Laval RVM, 1996-02" + ] + } + ], + "pid": "027768678", + "type": "bf:Place", + "variant_access_point": [ + "France du sud", + "France m\u00e9ridionale", + "Midi (France)", + "Sud de la France" + ], + "md5": "2868da55aeffeab25470878698e3f344" + }, + { + "authorized_access_point": "France (sud-est)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027768686", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11974023x", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041330986" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/315160421" + } + ], + "pid": "027768686", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Languedoc-Roussillon (France)" + }, + { + "authorized_access_point": "Provence-Alpes-C\u00f4te d'Azur (France)" + }, + { + "authorized_access_point": "Rh\u00f4ne-Alpes (France)" + }, + { + "authorized_access_point": "Alpes maritimes (province romaine)" + }, + { + "authorized_access_point": "Viennoise (province romaine)" + } + ], + "variant_access_point": [ + "M\u00e9diterran\u00e9e (r\u00e9gion ; France)" + ], + "md5": "bfd19b3a8781b33fee3281a4b08e170f" + }, + { + "authorized_access_point": "France (sud-ouest)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027768694", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119740248", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040584755" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/315160386" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "France (Sud-Ouest) ; Laval RVM, 1996-02" + ] + } + ], + "pid": "027768694", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Aquitaine (France)" + }, + { + "authorized_access_point": "Aquitaine, Bassin (France)" + }, + { + "authorized_access_point": "Gascogne (France)" + }, + { + "authorized_access_point": "Guyenne (France)" + }, + { + "authorized_access_point": "Limousin (France)" + }, + { + "authorized_access_point": "Midi-Pyr\u00e9n\u00e9es (France)" + }, + { + "authorized_access_point": "Poitou-Charentes (France)" + }, + { + "authorized_access_point": "Septimanie" + } + ], + "variant_access_point": [ + "Sud-Ouest (France)" + ], + "md5": "1a9aea5dd5efa32287945729f1a15601" + }, + { + "authorized_access_point": "Bordelais (Gironde)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027775348", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11974560h", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040804690" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173418908" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "027775348", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Gironde (France)" + } + ], + "variant_access_point": [ + "Bordeaux (Gironde ; r\u00e9gion)" + ], + "md5": "e825928795e34d0324ad2fded6e1eaae" + }, + { + "authorized_access_point": "La Roche-Vineuse (Sa\u00f4ne-et-Loire)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027777456", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/242735625" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/La_Roche-Vineuse" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1984" + ] + } + ], + "pid": "027777456", + "type": "bf:Place", + "variant_access_point": [ + "Roche-Vineuse, La (Sa\u00f4ne-et-Loire)" + ], + "md5": "b302f722830ebe9607de12e60315d341" + }, + { + "authorized_access_point": "Suisse italienne", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027785718", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11975348b", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041972147" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/171144783017780015328" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Laval RVM suppl., 1988-03" + ] + }, + { + "noteType": "general", + "label": [ + "Emploi direct en subdivision : [Sujet] -- Suisse italienne" + ] + } + ], + "pid": "027785718", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Suisse" + } + ], + "variant_access_point": [ + "Suisse de langue italienne" + ], + "md5": "1a3b560d0395cc78ccf3136a2b078d47" + }, + { + "authorized_access_point": "Allemagne (nord)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027806626", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11976943h", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040754863" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040754545" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173036261" + } + ], + "pid": "027806626", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Allemagne (nord-est)" + }, + { + "authorized_access_point": "Allemagne (nord-ouest)" + } + ], + "broader": [ + { + "authorized_access_point": "Allemagne" + } + ], + "md5": "f8f29ff4fc55b60d655cde16e8e5b1b0" + }, + { + "authorized_access_point": "Bordeaux (Gironde)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027812723", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040880729" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173309588" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1984. GDEL" + ] + } + ], + "pid": "027812723", + "type": "bf:Place", + "variant_access_point": [ + "Bordeaux", + "Bordelh (Gironde, France)", + "Bord\u00e8u (Gironde, France)", + "Burdigala (ville ancienne)" + ], + "md5": "08cd75080060ddd809c4c61566d7e0e0" + }, + { + "authorized_access_point": "Lyonnais, Monts du (France)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027825558", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/242739698" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Monts_du_Lyonnais" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU, 1991", + "Laval RVM, 1996-08" + ] + } + ], + "pid": "027825558", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Massif central (France)" + } + ], + "md5": "7644115adbe54c1839a5ba8f499e1e4c" + }, + { + "authorized_access_point": "\u00c9mirats arabes unis", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027838935", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119794070", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04062742X" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/3379148574308124430003" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Names of states / IFLA, 1981. Pays et capitales du monde / IGN, 1985" + ] + } + ], + "pid": "027838935", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Pays du golfe Persique" + } + ], + "variant_access_point": [ + "Al-Im\u0101r\u0101t", + "United Arab Emirates", + "UAE" + ], + "md5": "ae6031724a7a17a4958fffe2a78f5025" + }, + { + "authorized_access_point": "Kirghizistan", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027840883", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13507963h", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040308480" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/148476223" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Kirghizistan" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU. Mourre, 1996", + "Laval RVM, 1999-01" + ] + } + ], + "pid": "027840883", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Asie centrale" + }, + { + "authorized_access_point": "Pays de la CEI" + } + ], + "variant_access_point": [ + "Kirghizie", + "Kirghizstan", + "Kyrgyzstan" + ], + "md5": "b2e90262316c455ee32b07ddb14c5d1a" + }, + { + "authorized_access_point": "R\u00e9publique tch\u00e8que", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027842959", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04303381" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/953148574339124430001" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "BN ACO. Le Monde, 1-1-1993" + ] + }, + { + "noteType": "general", + "label": [ + "La R\u00e9publique socialiste tch\u00e8que, cr\u00e9\u00e9e le 1-1-1969, comprenait la partie tch\u00e8que de la Tch\u00e9coslovaquie (Boh\u00eame, Moravie et Sil\u00e9sie, cette derni\u00e8re \u00e9tant rattach\u00e9e \u00e0 la Moravie-Septentrionale) ; elle devient la R\u00e9publique tch\u00e8que en 1990 et acc\u00e8de \u00e0 l'ind\u00e9pendance le 1-1-1993" + ] + } + ], + "pid": "027842959", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Europe centrale" + } + ], + "variant_access_point": [ + "Boh\u00eame-Moravie", + "\u010cesk\u00e1 republika", + "\u010cesk\u00e1 socialistick\u00e1 republika", + "R\u00e9publique socialiste tch\u00e8que", + "Tch\u00e8que, R\u00e9publique", + "Tch\u00e9quie" + ], + "md5": "be14343c73e0ba924b0847cd1377ef1a" + }, + { + "authorized_access_point": "Brun\u00e9i", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027848213", + "source": "IDREF" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Brunei" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Names of states / IFLA, 1981. Pays et capitales du monde / IGN, 1985" + ] + } + ], + "pid": "027848213", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Born\u00e9o" + } + ], + "md5": "c5700e2056e00d6ac2ba88bbab43a8ac" + }, + { + "authorized_access_point": "Alpes (centre)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027853128", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040676110" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173364430" + } + ], + "pid": "027853128", + "type": "bf:Place", + "variant_access_point": [ + "Alpes centrales" + ], + "md5": "7c0ec46a82f23143482aa8314070dd2f" + }, + { + "authorized_access_point": "Suisse (est)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027853136", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040441067" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/1391148574382824430000" + } + ], + "pid": "027853136", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Rh\u00e9tie (province romaine)" + } + ], + "variant_access_point": [ + "Suisse orientale" + ], + "md5": "0f0226e9895eba8616c97f4209014afb" + }, + { + "authorized_access_point": "Saint-Gall (Suisse ; canton)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027860787", + "source": "IDREF" + }, + { + "type": "uri", + "value": "https://catalogue.bnf.fr/ark:/12148/cb11981215b", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040515958" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/5207153126238624750006" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/124913894" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. SY 1990/91", + "DNB - https://d-nb.info/gnd/4051594-1, 2023-12-01", + "DHS - https://hls-dhs-dss.ch/de/articles/007390/2017-05-11/, 2023-12-01" + ] + } + ], + "pid": "027860787", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Suisse - Cantons" + } + ], + "relation_pid": { + "value": "227521803", + "type": "redirect_from" + }, + "variant_access_point": [ + "Sankt Gallen (Suisse ; canton)", + "St. Gallen (Suisse ; canton)" + ], + "md5": "541e494f4f46baea18d937dd566ef0a4" + }, + { + "authorized_access_point": "Heilongjiang (Chine; province)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027875695", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173036300" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Atlas Le Monde" + ] + }, + { + "noteType": "general", + "label": [ + "Province chinoise" + ] + } + ], + "pid": "027875695", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Mandchourie (Chine)" + }, + { + "authorized_access_point": "Chine (nord)" + }, + { + "authorized_access_point": "Chine - Provinces" + } + ], + "variant_access_point": [ + "Hei-long-kiang (Chine)", + "Heilungkiang (Chine)", + "\u9ed1\u9f8d\u6c5f\u7701", + "\u9ed1\u9f99\u6c5f\u7701", + "Heilongjiang Sheng" + ], + "md5": "fdf3a241b34f803c18da9ce76c47b9df" + }, + { + "authorized_access_point": "Jilin (Chine ; province)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027875717", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/147752871" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Atlas Le Monde" + ] + }, + { + "noteType": "general", + "label": [ + "Province chinoise" + ] + } + ], + "pid": "027875717", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Mandchourie (Chine)" + }, + { + "authorized_access_point": "Chine (nord)" + }, + { + "authorized_access_point": "Chine - Provinces" + } + ], + "variant_access_point": [ + "Chi-lin", + "Ki-lin", + "Kirin", + "\u5409\u6797\u7701", + "Jilin Sheng" + ], + "md5": "94b6e84bce6875a7d360b774b075a343" + }, + { + "authorized_access_point": "Liaoning (Chine ; province)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027875725", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/8421148574328624430007" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Atlas Le Monde. BN Service chinois" + ] + }, + { + "noteType": "general", + "label": [ + "Province chinoise form\u00e9e par la r\u00e9union du Liaodong et du Liaoxi en 1954" + ] + } + ], + "pid": "027875725", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Mandchourie (Chine)" + }, + { + "authorized_access_point": "Chine (nord)" + }, + { + "authorized_access_point": "Chine - Provinces" + } + ], + "variant_access_point": [ + "Leao-ning", + "Liao-ning", + "\u907c\u5be7\u7701", + "\u8fbd\u5b81\u7701", + "Liaoning Sheng" + ], + "md5": "d5ee7629cdf556075aa394d538f07fb9" + }, + { + "authorized_access_point": "Jura (Suisse ; massif)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027883000", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040538885" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/9759148574375724430007" + } + ], + "pid": "027883000", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Jura (massif)" + } + ], + "md5": "18040075ca1ed50994e82a90e2c3a362" + }, + { + "authorized_access_point": "Faucigny (France)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027935280", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11987107w", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/151274210" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Faucigny_(Haute-Savoie)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "027935280", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Haute-Savoie (France)" + }, + { + "authorized_access_point": "Pr\u00e9alpes (France)" + }, + { + "authorized_access_point": "Savoie" + } + ], + "variant_access_point": [ + "Bonneville (Haute-Savoie ; r\u00e9gion)" + ], + "md5": "25b99e23bcb506aa0bf603cc763f628f" + }, + { + "authorized_access_point": "Soleure (Soleure, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027945774", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11987945n", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040554589" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/128144648648649371618" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "027945774", + "type": "bf:Place", + "relation_pid": { + "value": "276094255", + "type": "redirect_from" + }, + "variant_access_point": [ + "Solothurn (Suisse)" + ], + "md5": "72b4a0484eed713037416abf9618b882" + }, + { + "authorized_access_point": "Paris (France ; agglom\u00e9ration)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027949117", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11988194w", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04044662X" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/315153457" + } + ], + "pid": "027949117", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "\u00cele-de-France (France)" + } + ], + "variant_access_point": [ + "Paris (France ; r\u00e9gion)", + "Grand Paris (France)" + ], + "md5": "2433c15f621c53e21ee8d0db15bfd962" + }, + { + "authorized_access_point": "Soleure (Suisse ; canton)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/027952800", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119884863", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040554597" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/132527094" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. SY 1990/91" + ] + }, + { + "noteType": "general", + "label": [ + "Canton suisse" + ] + } + ], + "pid": "027952800", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Suisse - Cantons" + } + ], + "variant_access_point": [ + "Solothurn (Suisse ; canton)" + ], + "md5": "b5c554a3d903ac06c64e38eb9313b195" + }, + { + "authorized_access_point": "Fianarantsoa (Madagascar ; province)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028036336", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/123282613" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. SY, 1990/1991" + ] + } + ], + "pid": "028036336", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Madagascar" + } + ], + "md5": "e219eeaf31975d9f6b0bc25ff014a86b" + }, + { + "authorized_access_point": "Afrique lusophone", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028097505", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043270158" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/172982699" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Sous cette vedette on touve les ouvrages qui traitent des \u00c9tats africains dont la langue officielle est le portugais (Angola, Cap-Vert, Guin\u00e9e-Bissau, Mozambique, S\u00e3o Tom\u00e9-et-Principe) depuis leur accession \u00e0 l'ind\u00e9pendance. Les ouvrages qui traitent de ces territoires durant la p\u00e9riode coloniale se trouvent sous la vedette : Portugal -- Colonies -- Afrique" + ] + } + ], + "pid": "028097505", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Pays de langue portugaise" + } + ], + "variant_access_point": [ + "Afrique d'expression portugaise" + ], + "md5": "ca503662f9b4af1a8f43c7b3fc1a17d9" + }, + { + "authorized_access_point": "Suisse - 1798-1803 (R\u00e9publique helv\u00e9tique)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028135903", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)954767330" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Laval RVM, 1992-08" + ] + } + ], + "pid": "028135903", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "France - 1789-1799 (R\u00e9volution) - R\u00e9publiques soeurs" + } + ], + "variant_access_point": [ + "Helv\u00e9tique, R\u00e9publique (1798-1803)", + "R\u00e9publique helv\u00e9tique (1798-1803)" + ], + "md5": "a0a4e469a334c6eed8ff23d3179ba129" + }, + { + "authorized_access_point": "Lausanne (Suisse) - Cath\u00e9drale Notre-Dame", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028141814", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12003515k", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040740528" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Guide bleu Suisse, 1977" + ] + } + ], + "pid": "028141814", + "type": "bf:Place", + "md5": "51bd9b7526f3ed89483e6af7bb50744e" + }, + { + "authorized_access_point": "Saint-Pierre (Suisse ; \u00eele)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028146212", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12003873k", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040516385" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/878144783180710992014" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Guide bleu, Suisse, 1977" + ] + } + ], + "pid": "028146212", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Bienne, Lac de (Suisse)" + } + ], + "md5": "50c034be4e670ec37edc187ce01ef0d6" + }, + { + "authorized_access_point": "L\u0101rist\u0101n (Iran)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028172825", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/81148570732224312626" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Atlas Le Monde. BN service Asie" + ] + } + ], + "pid": "028172825", + "type": "bf:Place", + "variant_access_point": [ + "Larestan (Iran)" + ], + "md5": "6112633e143e92cadb682ac948374e7f" + }, + { + "authorized_access_point": "Divonne-les-Bains (Ain)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02817450X", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/134507635" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Divonne-les-Bains" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1984" + ] + } + ], + "pid": "02817450X", + "type": "bf:Place", + "md5": "569af49b1c0af4703262bfd75e09c8f7" + }, + { + "authorized_access_point": "Areuse, Gorges de l' (Neuch\u00e2tel, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028180135", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120067197", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)964919958" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/240551570" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Gorges_de_l'Areuse" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Atlas Le Monde. GLE" + ] + } + ], + "pid": "028180135", + "type": "bf:Place", + "md5": "d65669b857c1092e801c1ea5ff166aff" + }, + { + "authorized_access_point": "Alsace-Lorraine", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028201922", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040145026" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/137798315" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Alsace-Lorraine (Allemagne) ; Laval RVM, 1997-02", + "GLU, 1991. Mourre, 1996" + ] + }, + { + "noteType": "general", + "label": [ + "Par convention cette vedette, qui peut s'utiliser pour la p\u00e9riode allemande comme la p\u00e9riode fran\u00e7aise, s'emploie directement en subdivision : [sujet] -- Alsace-Lorraine", + "Partie de l'Alsace et de la Lorraine annex\u00e9e par l'Allemagne (1871-1918 et 1940-1944), comprenant les d\u00e9partements actuels du Bas-Rhin, du Haut-Rhin et de la Moselle" + ] + } + ], + "pid": "028201922", + "type": "bf:Place", + "variant_access_point": [ + "Alsace-Moselle", + "Elsass-Lothringen" + ], + "md5": "5718205b7289a391522535764adab328" + }, + { + "authorized_access_point": "Hunan (Chine ; province)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028212967", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12009405f", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/124144928850254441195" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Atlas Le Monde" + ] + }, + { + "noteType": "general", + "label": [ + "Province chinoise" + ] + } + ], + "pid": "028212967", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Chine (sud)" + }, + { + "authorized_access_point": "Chine - Provinces" + } + ], + "variant_access_point": [ + "Hou-nan", + "\u6e56\u5357\u7701", + "Hunan Sheng" + ], + "md5": "7bc06da873fc50adef2226f66c1a5d00" + }, + { + "authorized_access_point": "Qinghai (Chine)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028212991", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173581638" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Atlas Le Monde" + ] + }, + { + "noteType": "general", + "label": [ + "Province du nord-ouest de la Chine qui tire son nom du lac du m\u00eame nom et correspond \u00e0 peu pr\u00e8s \u00e0 l'ancienne r\u00e9gion tib\u00e9taine de l'Amdo" + ] + } + ], + "pid": "028212991", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Chine (ouest)" + }, + { + "authorized_access_point": "Chine - Provinces" + } + ], + "variant_access_point": [ + "Ts'ing-hai (Chine)", + "Tsinghai (Chine)", + "\u9752\u6d77\u7701", + "Qinghai Sheng", + "\u0f58\u0f5a\u0f7c\u0f0b\u0f66\u0f94\u0f7c\u0f53\u0f0b", + "mTsho sngon" + ], + "md5": "25bbf22903f9e438f57f98115c130fb2" + }, + { + "authorized_access_point": "Hubei (Chine ; province)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028213017", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/172172257" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Atlas Le Monde. Laval RVM, 1990-02" + ] + }, + { + "noteType": "general", + "label": [ + "Province chinoise" + ] + } + ], + "pid": "028213017", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Chine (sud)" + }, + { + "authorized_access_point": "Chine - Provinces" + } + ], + "variant_access_point": [ + "Hou-pei", + "Hupeh", + "\u6e56\u5317\u7701", + "Hubei Sheng" + ], + "md5": "16492f4efe12c37106e97be2c307b2a7" + }, + { + "authorized_access_point": "Inde (nord)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028215346", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040727688" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/172765671" + } + ], + "pid": "028215346", + "type": "bf:Place", + "md5": "c38fb5ad0dc0312f73bb7fd3d0618a10" + }, + { + "authorized_access_point": "Rougemont (Doubs)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028217160", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/147742263" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Rougemont_(Doubs)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Dict. communes, 1984" + ] + } + ], + "pid": "028217160", + "type": "bf:Place", + "md5": "67212c563eff2f3d38091d7f0aa11848" + }, + { + "authorized_access_point": "Inde (sud)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028245431", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040267547" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/172928236" + } + ], + "pid": "028245431", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Andhra Pradesh (Inde)" + }, + { + "authorized_access_point": "Karn\u0101taka (Inde)" + }, + { + "authorized_access_point": "Kerala (Inde)" + }, + { + "authorized_access_point": "Tamil Nadu (Inde)" + } + ], + "variant_access_point": [ + "Inde du sud", + "Inde m\u00e9ridionale" + ], + "md5": "3ea2b467f55a5b9d3768b47913b1d11f" + }, + { + "authorized_access_point": "Ch\u00e2tillon-sur-Chalaronne (Ain ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028289129", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12015519n", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/133532530" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Ch\u00e2tillon-sur-Chalaronne" + } + ], + "pid": "028289129", + "type": "bf:Place", + "md5": "d1c0775962ddbdbf05821e39044781e7" + }, + { + "authorized_access_point": "Allemagne (est)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028355431", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12020781m", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042252997" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Allemagne (Est) ; Laval RVM, 2001-01", + "SWD, 1995-04 distingue : Ostdeutschland ; Deutschland <\u00d6stliche L\u00e4nder>" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette on trouve les documents qui traitent de la partie orientale de l'Allemagne (\u00e0 l'est de l'Elbe et dans les limites orientales de la p\u00e9riode consid\u00e9r\u00e9e) jusqu'en 1949 ou depuis 1990. Les documents sur la RDA de 1949 \u00e0 1990 sont sous la vedette Allemagne (R\u00e9publique d\u00e9mocratique). Les documents sur les territoires autrefois allemands situ\u00e9s \u00e0 l'est de la ligne Oder-Neisse sont sous la vedette : Territoires anciennement allemands de l'est" + ] + } + ], + "pid": "028355431", + "type": "bf:Place", + "variant_access_point": [ + "Allemagne - L\u00e4nder orientaux", + "Allemagne - Nouveaux L\u00e4nder", + "Allemagne (Nouveaux L\u00e4nder)", + "Allemagne de l'Est", + "Allemagne orientale", + "Deutschland (\u00d6stliche L\u00e4nder)", + "Deutschland (Ost)", + "L\u00e4nder orientaux (Allemagne)", + "Neue Bundesl\u00e4nder", + "Nouveaux L\u00e4nder (Allemagne)", + "\u00d6stliche Bundesl\u00e4nder", + "Ostdeutschland" + ], + "md5": "b6ab22c969671cea9ac5109b204b4053" + }, + { + "authorized_access_point": "Allemagne (sud)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028366360", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040780228" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/172711766" + } + ], + "pid": "028366360", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Bavi\u00e8re (Allemagne)" + }, + { + "authorized_access_point": "Souabe (Allemagne)" + }, + { + "authorized_access_point": "Bade-Wurtemberg (Allemagne)" + } + ], + "md5": "a2f0f80a8b30215166ec5ef7116f8b37" + }, + { + "authorized_access_point": "Allemagne (sud-ouest)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028388569", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12023403q", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040780538" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/18144647635337368856" + } + ], + "pid": "028388569", + "type": "bf:Place", + "md5": "c81752c88ef3b52cc1b6f53f7cf9acdc" + }, + { + "authorized_access_point": "Colorado (cours d'eau)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028411773", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120251877", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/14144647634406825410" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Atlas Le Monde", + "http://www.geonames.org/, 2020-06-22" + ] + } + ], + "pid": "028411773", + "type": "bf:Place", + "variant_access_point": [ + "Rio Colorado", + "Colorado River", + "Grand River (cours d'eau)" + ], + "md5": "09b859c2b6fe8389fd36bc10a078b68c" + }, + { + "authorized_access_point": "B\u00e2le-Campagne (Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028554108", + "source": "IDREF" + }, + { + "source": "DNB", + "type": "bf:Nbn", + "value": "(DE-101)040046192" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/2975148574389124430005" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. SY 1990/91" + ] + }, + { + "noteType": "general", + "label": [ + "Demi-canton issu de la scission du canton de B\u00e2le en B\u00e2le-Ville et B\u00e2le-Campagne (1833)" + ] + } + ], + "pid": "028554108", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Suisse - Cantons" + } + ], + "variant_access_point": [ + "Basel-Landschaft (Suisse)" + ], + "md5": "232673803a6ede7a1fd7d423a6937451" + }, + { + "authorized_access_point": "Pouilles (Italie)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028565924", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12037604s", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04002508X" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/151256943" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Pouilles ; Atlas Le Monde" + ] + } + ], + "pid": "028565924", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Italie (sud)" + }, + { + "authorized_access_point": "Italie - R\u00e9gions" + }, + { + "authorized_access_point": "Daunie" + } + ], + "relation_pid": { + "value": "255615825", + "type": "redirect_from" + }, + "variant_access_point": [ + "Apulia", + "Apulie", + "Pouille (Italie)", + "Pouilles", + "Puglia (Italie)" + ], + "md5": "1cb5790b6e2891d582f1e75b03d56c20" + }, + { + "authorized_access_point": "B\u00e2le (Principaut\u00e9 eccl\u00e9siastique)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028567005", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120377073", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040802752" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/599144783181696879819" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "DHGE. Mourre, 1996" + ] + }, + { + "noteType": "general", + "label": [ + "L'introduction de la R\u00e9forme \u00e0 B\u00e2le en 1529 amena la scission entre la ville r\u00e9form\u00e9e et l'\u00e9v\u00eaque catholique, pr\u00e9figuration de la scission du canton en deux demi-cantons en 1833" + ] + } + ], + "pid": "028567005", + "type": "bf:Place", + "variant_access_point": [ + "Ancien \u00e9v\u00each\u00e9 de B\u00e2le (Suisse)" + ], + "md5": "844ca011d556d3a0e75d32193b195bca" + }, + { + "authorized_access_point": "Alpes (France ; sud)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028601475", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040932079" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/172656768" + } + ], + "pid": "028601475", + "type": "bf:Place", + "variant_access_point": [ + "Alpes du Sud (France)" + ], + "md5": "0dbbddcf3a217e05bb6a76b4cc8cf8af" + }, + { + "authorized_access_point": "Guizhou (Chine ; province)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028654706", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120445389", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/172172578" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. BN Service Asie" + ] + }, + { + "noteType": "general", + "label": [ + "Province de Chine" + ] + } + ], + "pid": "028654706", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Chine (sud)" + }, + { + "authorized_access_point": "Chine - Provinces" + } + ], + "variant_access_point": [ + "Kouei-tcheou (Chine)", + "Koueitcheou (Chine)", + "Kui-chou (Chine)", + "Kweichow (Chine)", + "\u8cb4\u5dde\u7701", + "\u8d35\u5dde\u7701", + "Guizhou Sheng" + ], + "md5": "68fd93fe317d43ab0548009dbd7d9f24" + }, + { + "authorized_access_point": "B\u00e9arn (France ; sud)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028695984", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/136075732" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/B\u00e9arn" + } + ], + "pid": "028695984", + "type": "bf:Place", + "md5": "36819aaff74dc479378fc2c6aaabc3bf" + }, + { + "authorized_access_point": "Suisse (nord-ouest)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028700570", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042142016" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173148574253724430006" + } + ], + "pid": "028700570", + "type": "bf:Place", + "md5": "3db0be0ef9d8ee6814d4ce74b20a5364" + }, + { + "authorized_access_point": "Turin (Italie ; province)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02870097X", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/123794615" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Ville_m\u00e9tropolitaine_de_Turin" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "02870097X", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Pi\u00e9mont (Italie)" + } + ], + "variant_access_point": [ + "Turin (Italie ; r\u00e9gion)", + "Torino (Italie ; province)" + ], + "md5": "d6ada17142f2329fc949a5f5b616b612" + }, + { + "authorized_access_point": "Saint-Symphorien-de-Lay (Loire ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028706137", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/684148574379924430005" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Saint-Symphorien-de-Lay" + } + ], + "pid": "028706137", + "type": "bf:Place", + "md5": "1ad607ddd21d266842e14c33c79a7d8e" + }, + { + "authorized_access_point": "Saint-Gothard, Tunnel ferroviaire du (Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028727444", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040216934" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/1458148574258924430003" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "028727444", + "type": "bf:Place", + "md5": "46c7b2158740e66ca893f73785afef53" + }, + { + "authorized_access_point": "Aar (Suisse ; cours d'eau)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028877764", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12062211c", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04000019" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/21144647635437368856" + } + ], + "pid": "028877764", + "type": "bf:Place", + "md5": "cf45aa58d56ee438810f5a18bd5d8289" + }, + { + "authorized_access_point": "Mont Blanc, Tunnel du", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028889460", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/148577329" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Tunnel_du_Mont-Blanc" + } + ], + "pid": "028889460", + "type": "bf:Place", + "variant_access_point": [ + "Tunnel du Mont Blanc" + ], + "md5": "d4a652fe2ff83d76e437420b591f8f17" + }, + { + "authorized_access_point": "Ajoie (Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028913663", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120651067", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040008657" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/25144647637959901293" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU" + ] + }, + { + "noteType": "general", + "label": [ + "Partie jurassienne de la Suisse frontali\u00e8re, autour de Porrentruy" + ] + } + ], + "pid": "028913663", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Porrentruy (Suisse ; r\u00e9gion)" + } + ], + "md5": "2b00b5b02622f8cb464578beebd0fece" + }, + { + "authorized_access_point": "Jiangxi (Chine ; province)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028928709", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12066284j", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/172332872" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Atlas Le Monde. BN Service Asie" + ] + }, + { + "noteType": "general", + "label": [ + "Province chinoise" + ] + } + ], + "pid": "028928709", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Chine (sud)" + }, + { + "authorized_access_point": "Chine - Provinces" + } + ], + "variant_access_point": [ + "Chiang-hsi (Chine)", + "Kiang-si (Chine)", + "Kiangsi (Chine)", + "\u6c5f\u897f\u7701", + "Jiangxi Sheng" + ], + "md5": "6a7f11bd9b87e3af976ab27f1fb58692" + }, + { + "authorized_access_point": "L\u00e9man, Lac (r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028931491", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)949642762" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173637213" + } + ], + "pid": "028931491", + "type": "bf:Place", + "md5": "8e8a0b78ef7d480a5fb4daad9316c9ef" + }, + { + "authorized_access_point": "Saint-Bonnet-le-Courreau (Loire)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028979885", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12070283z", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/245870249" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Saint-Bonnet-le-Courreau" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1984" + ] + } + ], + "pid": "028979885", + "type": "bf:Place", + "md5": "eb03c816740d15e65d5ee14ebf4b20f5" + }, + { + "authorized_access_point": "Schwyz (Suisse ; canton)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914", + "name": "G\u00e9ographie de l'Europe" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028988310", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120709591", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040540197" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/134271490" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Cat\u00e9gorie:Canton_de_Schwytz" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Petit Robert des noms propres 2016", + "Grand Larousse universel", + "L'atlas National geographic, 2007 : Schwytz", + "Wikip\u00e9dia : canton de Schwytz [ou Schwyz] - https://fr.wikipedia.org (2017-10-21)", + "Statoids - http://www.statoids.com (2017-10-21)", + "Kanton Schwyz - https://www.sz.ch (2017-10-21)", + "Dict. historique de la Suisse : Schwytz (canton) - http://www.hls-dhs-dss.ch (2017-10-21)" + ] + }, + { + "noteType": "general", + "label": [ + "Canton germanophone du centre-est ; capitale : Schwyz. Il est un des 4 cantons historiques ayant donn\u00e9 naissance \u00e0 la Conf\u00e9d\u00e9ration helv\u00e9tique au 19e si\u00e8cle, apr\u00e8s avoir souvent lutt\u00e9 contre les Habsbourg. Son nom a donn\u00e9 naissance \u00e0 celui du pays tout entier - dans sa version allemande 'Schweiz'. Pour la ville comme pour le canton, on peut dire aussi \"Schwytz\", qui est une graphie romande, mais dans sa version fran\u00e7aise, la Constitution suisse emploie le terme \"Schwyz" + ] + } + ], + "pid": "028988310", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Suisse - Cantons" + } + ], + "variant_access_point": [ + "Kanton Schwyz (Suisse)", + "Pays de Schwyz (Suisse)", + "Schweitz (Suisse ; canton)", + "Schwytz (Suisse ; canton)", + "Svitto (Suisse ; canton)", + "Sviz (Suisse ; canton)" + ], + "md5": "0eca779636984d825bfd223ae95010c1" + }, + { + "authorized_access_point": "Appenzell (Suisse ; canton)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028991575", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120712100", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040024873" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/127860862" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + }, + { + "noteType": "general", + "label": [ + "Ancien canton suisse qui s'est scind\u00e9 en 1597 en 2 demi-cantons : Appenzell Rhodes-Ext\u00e9rieures et Appenzell Rhodes-Int\u00e9rieures ; chef-lieu : Appenzell" + ] + } + ], + "pid": "028991575", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Appenzell Rhodes-Ext\u00e9rieures (Suisse)" + }, + { + "authorized_access_point": "Appenzell Rhodes-Int\u00e9rieures (Suisse)" + } + ], + "md5": "666b248aedca84d0baa599fad41379fb" + }, + { + "authorized_access_point": "Glaris (Suisse ; canton)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028992105", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12071251k", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/152492599" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/170356636" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Cat\u00e9gorie:Canton_de_Glaris" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgen\u00f6ssische Stabsb\u00fcreau unter der direktion von Oberst Siegfried ver\u00f6ffentlicht", + "GDEL. SY 1990/91" + ] + }, + { + "noteType": "general", + "label": [ + "Canton suisse" + ] + } + ], + "pid": "028992105", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Suisse - Cantons" + } + ], + "relation_pid": { + "value": "157134822", + "type": "redirect_from" + }, + "variant_access_point": [ + "Glarus (Suisse ; canton)" + ], + "md5": "4714f1a00b893106ceab521e62188526" + }, + { + "authorized_access_point": "Zoug (Suisse ; canton)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028992318", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040680649" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/20144647636134910488" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. SY 1990/91" + ] + } + ], + "pid": "028992318", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Suisse - Cantons" + } + ], + "md5": "942731cc102d3d9bdb5b452559c37297" + }, + { + "authorized_access_point": "Shandong (Chine ; province)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028996593", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12071578f", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/142766112" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Atlas Le Monde. BN Service chinois" + ] + }, + { + "noteType": "general", + "label": [ + "Province chinoise" + ] + } + ], + "pid": "028996593", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Chine (nord)" + }, + { + "authorized_access_point": "Chine - Provinces" + } + ], + "variant_access_point": [ + "Chan-tong", + "Chan-toung", + "Shan-tung", + "Shangdong", + "Shantung", + "\u5c71\u6771\u7701", + "\u5c71\u4e1c\u7701", + "Shandong Sheng" + ], + "md5": "bb9edda7349c3fe5072983ff5654d50f" + }, + { + "authorized_access_point": "Hebei (Chine ; province)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/028996690", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12071585q", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/172144783025014766925" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. BN Service chinois" + ] + }, + { + "noteType": "general", + "label": [ + "Province chinoise" + ] + } + ], + "pid": "028996690", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Chine (nord)" + }, + { + "authorized_access_point": "Chine - Provinces" + } + ], + "variant_access_point": [ + "H\u00ea-pei (Chine)", + "Ho-pei (Chine)", + "Hopeh (Chine)", + "\u6cb3\u5317\u7701", + "Hebei Sheng" + ], + "md5": "5bdb578e267f81ef05796c7319a7dad9" + }, + { + "authorized_access_point": "Suisse - 1845-1847 (Sonderbund)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029152887", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12083794x", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)950025607" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Laval RVM, 1992-08" + ] + } + ], + "pid": "029152887", + "type": "bf:Place", + "md5": "232ba439f76a51f3faa3cfcbe51e3f8a" + }, + { + "authorized_access_point": "Avenches (Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029183340", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb120863320", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040040070" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/131328802" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Avenches" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "029183340", + "type": "bf:Place", + "variant_access_point": [ + "Aventicum (ville ancienne)" + ], + "md5": "556da92030ff491b0e95663e2d8f503e" + }, + { + "authorized_access_point": "If, Ch\u00e2teau d' (Bouches-du-Rh\u00f4ne)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029216540", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12088946t", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/249396875" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Ch\u00e2teau_d'If" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "029216540", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "If (France ; \u00eele)" + } + ], + "variant_access_point": [ + "Marseille (Bouches-du-Rh\u00f4ne) - Ch\u00e2teau d'If" + ], + "md5": "46986a42fa65df645e7320486d6b5c05" + }, + { + "authorized_access_point": "La Motte-Servolex (Savoie)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029220661", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12089241d", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/132623678" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/La_Motte-Servolex" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1984" + ] + } + ], + "pid": "029220661", + "type": "bf:Place", + "variant_access_point": [ + "Motte-Servolex, La (Savoie)" + ], + "md5": "b108336a7f71ae237fecd106559c1825" + }, + { + "authorized_access_point": "Yunnan (Chine ; province)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029345529", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/172766187" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Atlas Le Monde" + ] + }, + { + "noteType": "general", + "label": [ + "Province chinoise" + ] + } + ], + "pid": "029345529", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Chine (sud)" + }, + { + "authorized_access_point": "Chine - Provinces" + } + ], + "variant_access_point": [ + "Yun-nan", + "\u96f2\u5357\u7701", + "\u4e91\u5357\u7701", + "Yunnan Sheng" + ], + "md5": "2ddee88e26ee7648d4a4d54580e95fc6" + }, + { + "authorized_access_point": "R\u00edobamba (\u00c9quateur)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029368707", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12101014j", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/127968369" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Riobamba" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Atlas universalis" + ] + }, + { + "noteType": "general", + "label": [ + "Capitale de la province du Chimborazo" + ] + } + ], + "pid": "029368707", + "type": "bf:Place", + "md5": "1bd71ff92067630fba0d407783b0003f" + }, + { + "authorized_access_point": "Uri (Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029453208", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12107734j", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040621294" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/486145858125123022135" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/124361741" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. SY 1990/91" + ] + }, + { + "noteType": "general", + "label": [ + "Canton suisse" + ] + } + ], + "pid": "029453208", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Suisse - Cantons" + } + ], + "relation_pid": { + "value": "225674920", + "type": "redirect_from" + }, + "md5": "f0dd4a7dabe2e454f983c5b7bd914b9e" + }, + { + "authorized_access_point": "Saint-Maurice (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029459060", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04118257X" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/249012358" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du Valais" + ] + } + ], + "pid": "029459060", + "type": "bf:Place", + "variant_access_point": [ + "Acaunum (ville ancienne)", + "Agaunum (ville ancienne)", + "Saint-Maurice d'Agaune (Valais, Suisse)" + ], + "md5": "2eef14f668f40bd254303cdad0b73ace" + }, + { + "authorized_access_point": "Alpes (est)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029502764", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12111693j", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040757242" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173146304" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Alps, Eastern ; LCSH, 1988-12. Alpes orientales ; Laval RVM, 1988-12" + ] + } + ], + "pid": "029502764", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Alpes dinariques" + }, + { + "authorized_access_point": "Alpes juliennes" + }, + { + "authorized_access_point": "Dolomites (Italie ; massif)" + }, + { + "authorized_access_point": "Alpes carniques" + } + ], + "variant_access_point": [ + "Alpes orientales" + ], + "md5": "7b34ae2e00240623c28645b855b0e2a7" + }, + { + "authorized_access_point": "La Turbie (Alpes-Maritimes)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029508347", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12112125x", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/170363823" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/La_Turbie" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Dict. communes, 1984" + ] + } + ], + "pid": "029508347", + "type": "bf:Place", + "variant_access_point": [ + "Turbie, La (Alpes-Maritimes)" + ], + "md5": "0454e7cdffedb81ace7899de33a51a4e" + }, + { + "authorized_access_point": "Charolles (Sa\u00f4ne-et-Loire ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029571219", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11956257v", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/357144783127363163101" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Charolais_(pays)" + } + ], + "pid": "029571219", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Charolais (France)" + } + ], + "md5": "34cdda9131bed78cb147ee9d0d4c9c1b" + }, + { + "authorized_access_point": "Pont-d'Ain (Ain)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029592259", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb121185395", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/143067429" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Pont-d'Ain" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1984" + ] + } + ], + "pid": "029592259", + "type": "bf:Place", + "md5": "1e5c41e1b450f3310769223cd529f1ec" + }, + { + "authorized_access_point": "Aoste (Is\u00e8re)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029680344", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/245116875" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Aoste_(Is\u00e8re)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1984" + ] + } + ], + "pid": "029680344", + "type": "bf:Place", + "md5": "2746b80c386b3a1e3f63f3b6d47c9a34" + }, + { + "authorized_access_point": "Valangin (Neuch\u00e2tel, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029693756", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041193458" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/42148570488424310649" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Atlas Le Monde" + ] + } + ], + "pid": "029693756", + "type": "bf:Place", + "md5": "0948ab5c7dd5252555249c0875bb3e45" + }, + { + "authorized_access_point": "Valangin (Neuch\u00e2tel, Suisse) - Ch\u00e2teau", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029693772", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb121262977", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)946532389" + } + ], + "pid": "029693772", + "type": "bf:Place", + "variant_access_point": [ + "Valangin (Neuch\u00e2tel, Suisse) - Ch\u00e2teau de Valangin" + ], + "md5": "9686febc13709c1a1f285996cce3faed" + }, + { + "authorized_access_point": "Aquitaine (France)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02976436X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12131785m", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04002525X" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/127778483" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Aquitaine_(ancienne_r\u00e9gion_administrative)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette on trouve les ouvrages qui traitent de l'Aquitaine historique et/ou de l'actuelle r\u00e9gion d'Aquitaine" + ] + } + ], + "pid": "02976436X", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "France (sud-ouest)" + }, + { + "authorized_access_point": "France - R\u00e9gions" + } + ], + "variant_access_point": [ + "Aquitaine" + ], + "md5": "1ae1eb3a664809e6b84b52069448574f" + }, + { + "authorized_access_point": "Sion (Valais, Suisse) - Site arch\u00e9ologique du Petit-Chasseur", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914", + "name": "G\u00e9ographie de l'Europe" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "930", + "name": "Arch\u00e9ologie. Histoire ancienne" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029805279", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb121353008", + "source": "BNF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "La pr\u00e9histoire / D. Vialou, 2004 : Petit-Chasseur", + "Dict. historique de la Suisse (art. : Sion) - http://www.hls-dhs-dss.ch (2015-06-25)", + "Le n\u00e9olithique en Europe, 2007 : Sion (Petit-Chasseur)", + "Dict. de la pr\u00e9histoire / A. Leroi-Gourhan, 2005 : Sion-Petit-Chasseur" + ] + }, + { + "noteType": "general", + "label": [ + "Site pr\u00e9historique (n\u00e9olithique et \u00e2ge du bronze) du quartier de Saint-Gu\u00e9rin \u00e0 Sion (Valais), autour de l'avenue du Petit-Chasseur et des rues adjacentes (habitats cortaillod et n\u00e9cropole m\u00e9galithique (dolmens) avec st\u00e8les anthropomorphes)" + ] + } + ], + "pid": "029805279", + "type": "bf:Place", + "variant_access_point": [ + "Petit-Chasseur (Suisse ; site arch\u00e9ologique)", + "Sion-Petit-Chasseur (Suisse ; site arch\u00e9ologique)" + ], + "md5": "d924369aa280d61f2732d0a4ef098162" + }, + { + "authorized_access_point": "Fujian (Chine ; province)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/029857678", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12139611q", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173310302" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Atlas Le Monde" + ] + }, + { + "noteType": "general", + "label": [ + "Province chinoise" + ] + } + ], + "pid": "029857678", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Chine (sud)" + }, + { + "authorized_access_point": "Chine - Provinces" + } + ], + "variant_access_point": [ + "Fou-kien (Chine)", + "Fukien (Chine)", + "\u798f\u5efa\u7701", + "Fujian Sheng" + ], + "md5": "dd04c38d5bbcf450af315d578f946016" + }, + { + "authorized_access_point": "Virieu-le-Grand (Ain)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/02985850X", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/148067721" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Virieu-le-Grand" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Dict. communes, 1984" + ] + } + ], + "pid": "02985850X", + "type": "bf:Place", + "md5": "12d91eb7bf636046bc40517535ef5189" + }, + { + "authorized_access_point": "Aar, Massif de l' (Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/030398614", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12182069q", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040000206" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/30144647639575548307" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL. Laval RVM, 1990-08" + ] + } + ], + "pid": "030398614", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Jungfrau (Suisse ; mont)" + } + ], + "variant_access_point": [ + "Aar-Gothard, Massif de l' (Suisse)", + "Gothard, Massif du (Suisse)", + "Jungfrau, Massif de la (Suisse)", + "Saint-Gothard, Massif du (Suisse)" + ], + "md5": "2855be5ab8016bf697e48b61bb40b666" + }, + { + "authorized_access_point": "Beaujeu (Rh\u00f4ne)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/030512425", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb133247112", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/168033061" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Beaujeu_(Rh\u00f4ne)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1984" + ] + } + ], + "pid": "030512425", + "type": "bf:Place", + "md5": "2b911897820e1a9f0272f7dd18a0d4b6" + }, + { + "authorized_access_point": "Sion (Valais, Suisse) - Ch\u00e2teau de Val\u00e8re", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "355", + "name": "Art et science militaires" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "720", + "name": "Architecture" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Notre-Dame de Val\u00e8re (Church : Sion, Switzerland)", + "source": "LCA", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/names/n91123541", + "source": "LCA" + } + ] + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/030519799", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12191796h", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042499909" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia : ch\u00e2teau de Val\u00e8re - https://fr.wikipedia.org (2021-08-10)", + "Wikipedia : Basilica di Val\u00e8re, castello di Val\u00e8re - https:/:it.wikipedia.org (2021-08-10)", + "Wikipedia : Basilique de Val\u00e8re (oder Basilika von Valeria, Schloss Valeria) - https://de.wikipedia.org (2021-08-10)", + "Petit Robert des noms propres, 2015 (art. : Sion) : \u00e9glise Notre-Dame de Val\u00e8re", + "Grand Larousse universel (art. : Sion) : \u00e9glise Notre-Dame de Val\u00e8re", + "Guides Voir : Suisse, 2012", + "Sion Tourisme : ch\u00e2teau de Val\u00e8re (interface en fran\u00e7ais), Schloss Valeria (interface en allemand) - https://siontourisme.ch (2021-08-10)" + ] + }, + { + "noteType": "general", + "label": [ + "Le \"ch\u00e2teau de Val\u00e8re\", qui couronne la colline du m\u00eame nom dominant Sion, est en r\u00e9alit\u00e9 une \u00e9glise fortifi\u00e9e des 12e-13e si\u00e8cles, \u00e9glise entour\u00e9e de maisons qui furent r\u00e9sidence des chanoines de la cath\u00e9drale de la ville, le tout prot\u00e9g\u00e9 par une enceinte (remparts et tours), le clocher de l'\u00e9glise \u00e9tant en quelque sorte le donjon de ce v\u00e9ritable petit bourg m\u00e9di\u00e9val. L'\u00e9glise Notre-Dame de Val\u00e8re fut \u00e9lev\u00e9e au rang de basilique (mineure) sous le pontificat de Jean-Paul II, en 1987. Ses chapiteaux sont romans, ses fresques, gothiques ; son orgue de la fin du 14e si\u00e8cle est le plus ancien du monde sur lequel on peut encore jouer. Le complexe abrite le Mus\u00e9e d'histoire du Valais" + ] + } + ], + "pid": "030519799", + "type": "bf:Place", + "variant_access_point": [ + "Basilica di Val\u00e8re (Sion, Valais, Suisse)", + "Basilika von Valeria (Sion, Valais, Suisse)", + "Basilique de Val\u00e8re (Sion, Valais, Suisse)", + "Basilique Notre-Dame de Val\u00e8re (Sion, Valais, Suisse)", + "Castello di Val\u00e8re (Sion, Valais, Suisse)", + "Ch\u00e2teau de Val\u00e8re (Sion, Valais, Suisse)", + "\u00c9glise Notre-Dame de Val\u00e8re (Sion, Valais, Suisse)", + "Kirche von Valeria (Sion, Valais, Suisse)", + "Notre-Dame de Val\u00e8re, Basilique (Sion, Valais, Suisse)", + "Schloss Valeria (Sion, Valais, Suisse)", + "Val\u00e8re, Ch\u00e2teau de (Sion, Valais, Suisse)", + "Valeria, Schloss (Sion, Valais, Suisse)" + ], + "md5": "23999c3d90343b8ab0e4ce60d7c3e24f" + }, + { + "authorized_access_point": "Valteline (Italie)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/03055537X", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041081757" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/8711148574329824430003" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU" + ] + } + ], + "pid": "03055537X", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Sondrio (Italie ; province)" + } + ], + "variant_access_point": [ + "Valtellina (Italie)" + ], + "md5": "b0e3798a2a9b803b4c9375717db034eb" + }, + { + "authorized_access_point": "Alpes (Allemagne)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/030628156", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12200597c", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040050114" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/639144783049465966845" + } + ], + "pid": "030628156", + "type": "bf:Place", + "variant_access_point": [ + "Alpes bavaroises" + ], + "md5": "b64e148d0593ac4861c9322daf6c3d38" + }, + { + "authorized_access_point": "Alpes (France ; nord)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/030640091", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12201582k", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040932060" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/172820298" + } + ], + "pid": "030640091", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Aravis, Cha\u00eene des (France)" + } + ], + "variant_access_point": [ + "Alpes du Nord (France)" + ], + "md5": "aa2e6b954fa641fd282a261ed62dd813" + }, + { + "authorized_access_point": "Morat (Fribourg, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/031139876", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040751058" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/124377145" + }, + { + "source": "DHS", + "type": "uri", + "value": "http://hls-dhs-dss.ch/articles/001014/" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton de Fribourg (Suisse), chef-lieu du district du Lac. Elle est officiellement bilingue fran\u00e7ais-allemand. Nom allemand : Murten" + ] + } + ], + "pid": "031139876", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Fribourg (Suisse ; canton)" + } + ], + "md5": "87e179b3fdde9c47509d94af8581f6e6" + }, + { + "authorized_access_point": "Suisse (ouest)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/031211097", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12246994q", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040658236" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/621144783051845602289" + } + ], + "pid": "031211097", + "type": "bf:Place", + "variant_access_point": [ + "Suisse occidentale" + ], + "md5": "02b2062410b47cd35f6fa634f29ae508" + }, + { + "authorized_access_point": "Aix-la-Chapelle (Allemagne ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/031649424", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12282480h", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040000079" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/124330404" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GeoNames (2018-06-27)" + ] + }, + { + "noteType": "general", + "label": [ + "Aix-la-Chapelle est une ville d'Allemagne situ\u00e9e dans le Land de Rh\u00e9nanie-du-Nord-Westphalie. Elle se situe \u00e0 5 km de la jonction des fronti\u00e8res de l'Allemagne, des Pays-Bas et de la Belgique. C'est la ville la plus \u00e0 l'ouest de l'Allemagne", + "Coordonn\u00e9es en degr\u00e9s s\u00e9xag\u00e9simaux : N 50\u00b046\u203236\u2033 / E 6\u00b005\u203200\u2033" + ] + } + ], + "pid": "031649424", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Rh\u00e9nanie du Nord-Westphalie (Allemagne)" + } + ], + "relation_pid": { + "value": "228265843", + "type": "redirect_from" + }, + "variant_access_point": [ + "Aachen", + "Aken", + "Akwizgran", + "Aquisgr\u00e1n", + "Aquisgrano" + ], + "md5": "06cd698c8d9609680315aa9042c6015e" + }, + { + "authorized_access_point": "Meillonnas (Ain)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/03168520X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12285327h", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/135027706" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Meillonnas" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1992" + ] + } + ], + "pid": "03168520X", + "type": "bf:Place", + "md5": "0c4da5774060196625afc9592bfa7e37" + }, + { + "authorized_access_point": "Mahajanga (Madagascar)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/031702473", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb122867940", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/131443013" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Mahajanga" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "031702473", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Betsiboka (Madagascar ; r\u00e9gion)" + } + ], + "broader": [ + { + "authorized_access_point": "Madagascar" + } + ], + "variant_access_point": [ + "Majunga (Madagascar)", + "Massali" + ], + "md5": "bdb8e962cf151f40f03a03aa4c4c0a7b" + }, + { + "authorized_access_point": "Bourg-Saint-Maurice (Savoie ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/031977561", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb123094336", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/233850704" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Bourg-Saint-Maurice" + } + ], + "pid": "031977561", + "type": "bf:Place", + "md5": "f7f6143258c4536cb70030f51284c530" + }, + { + "authorized_access_point": "Alpes (Sud)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/032028555", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12313654g", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040583988" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/430144783136365031650" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "032028555", + "type": "bf:Place", + "variant_access_point": [ + "Alpes du Sud", + "Alpes m\u00e9ridionales" + ], + "md5": "b667d21c75fae791bc83d961f4609c1c" + }, + { + "authorized_access_point": "Virieu-le-Petit (Ain)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/032029667", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12313753d", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/142064160" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Virieu-le-Petit" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1992" + ] + } + ], + "pid": "032029667", + "type": "bf:Place", + "md5": "b097ce355394c0423a87d4d0edfb4fa0" + }, + { + "authorized_access_point": "Champr\u00e9veyres (Suisse ; site arch\u00e9ologique)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/03210572X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12320021b", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043212646" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/1147309939037850707" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Hauterive-Champr\u00e9veyres, les plantes de l'\u00e2ge du Bronze / C. Jacquat, 1988" + ] + } + ], + "pid": "03210572X", + "type": "bf:Place", + "variant_access_point": [ + "Hauterive-Champr\u00e9veyres (Suisse ; site arch\u00e9ologique)" + ], + "md5": "a4c9669f44acf1811f19aa023cb52b7e" + }, + { + "authorized_access_point": "Rh\u00e9nan, Foss\u00e9", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/03261991X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb123615286", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040755614" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/39144647639299173338" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. g\u00e9ol., 1988" + ] + } + ], + "pid": "03261991X", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Rhin, Vall\u00e9e moyenne du" + }, + { + "authorized_access_point": "Rh\u00e9nans, Pays (sud)" + } + ], + "variant_access_point": [ + "Foss\u00e9 Rh\u00e9nan" + ], + "md5": "82532410c9764db60bfb9475e4b096cb" + }, + { + "authorized_access_point": "Autriche-Hongrie", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/032861621", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb123809301", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040756130" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/38146285364515371330" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU. \u00d6sterreich-Ungarn ; SWD, 1991" + ] + }, + { + "noteType": "general", + "label": [ + "Sous cette vedette, on trouve les ouvrages qui traitent de l'ensemble de l'Autriche-Hongrie (1867-1918). Les ouvrages qui traitent plus particuli\u00e8rement des parties autrichienne et hongroise de l'empire se trouvent sous les vedettes Autriche et Hongrie (suivies des subdivisions appropri\u00e9es)" + ] + } + ], + "pid": "032861621", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Europe du Centre-Est" + } + ], + "variant_access_point": [ + "Austro-hongroise, Monarchie", + "Double Monarchie", + "Empire austro-hongrois", + "Monarchie austro-hongroise", + "\u00f6sterreich-Ungarn", + "Osztr\u00e1k-Magyar Mon\u00e1rchia" + ], + "md5": "93f0ca86ffb79a7153de34db970e090d" + }, + { + "authorized_access_point": "Fribourg (Fribourg, Suisse) - Cath\u00e9drale Saint-Nicolas", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/032972997", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12389271v", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)945514727" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://fr.wikipedia.org/wiki/Cath%C3%A9drale_Saint-Nicolas_de_Fribourg" + ] + }, + { + "noteType": "general", + "label": [ + "Cath\u00e9drale depuis 1924" + ] + } + ], + "pid": "032972997", + "type": "bf:Place", + "relation_pid": { + "value": "060550279", + "type": "redirect_from" + }, + "variant_access_point": [ + "Eglise Saint-Nicolas (Fribourg, Fribourg, Suisse)" + ], + "md5": "4bb6094d9ae6ef1ffcb8a1b76f53392e" + }, + { + "authorized_access_point": "Saint-Bonnet-les-Oules (Loire)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/033023808", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb123932781", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/1144648107425911473" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Saint-Bonnet-les-Oules" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. des communes, 1992" + ] + } + ], + "pid": "033023808", + "type": "bf:Place", + "md5": "5dc96f29158c4182bf91415f2f66aa82" + }, + { + "authorized_access_point": "Tokelau", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/033459118", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12432262b", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/156083443" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Tokelau" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "LAVAL RVM, 1994-08", + "GDEL. Atlas \"Le Monde\"" + ] + }, + { + "noteType": "general", + "label": [ + "Petit archipel polyn\u00e9sien compos\u00e9 de trois atolls (Atafu, Nukunonu, Fakaofo)" + ] + } + ], + "pid": "033459118", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Polyn\u00e9sie" + }, + { + "authorized_access_point": "Pacifique, \u00celes du" + } + ], + "variant_access_point": [ + "Union, \u00celes de l'", + "Tokelau Islands", + "Tokelau, \u00celes de" + ], + "md5": "a595d3de4dcc964734d59061c165ea6b" + }, + { + "authorized_access_point": "F\u00e9lines (Ard\u00e8che)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/034580506", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12532193h", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/244300953" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/F\u00e9lines_(Ard\u00e8che)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1992" + ] + } + ], + "pid": "034580506", + "type": "bf:Place", + "md5": "071049d15e0a0575b4f17ba35ee81826" + }, + { + "authorized_access_point": "Doubs, Vall\u00e9e du", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/034800964", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12551685f", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)963626132" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/236125833" + } + ], + "pid": "034800964", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Doubs, Vall\u00e9e basse du" + }, + { + "authorized_access_point": "Doubs, Vall\u00e9e haute du" + } + ], + "md5": "699123a007643be6840c612b249b13ff" + }, + { + "authorized_access_point": "Thamusida (ville ancienne)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/034910190", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb125612110", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/46144647641939898059" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Thamusida : fouilles du Service des Antiquit\u00e9s du Maroc.1, Texte / Jean-Pierre Callu, Jean-Paul Morel, Ren\u00e9 Rebuffat... [et al.], 1965", + "Rachet. Brockhaus, 19. Aufl." + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9e sur la rive de l'oued Sebou, pr\u00e8s de Kenitra, Thamusida \u00e9tait une ancienne colonie berb\u00e8re, conquise par les Romains au 1er si\u00e8cle avant J.C. Sous l'Empire, elle devint essentiellement une ville de garnison, reconstruite et agrandie au II\u00e8me si\u00e8cle apr\u00e8s J.C. apr\u00e8s une inondation. Semble avoir \u00e9t\u00e9 abandonn\u00e9e entre 274 et 280. Ruines d'un grand camp militaire du temps de Marc Aur\u00e8le, d'un temple, d'un praetorium et de grandes thermes, situ\u00e9es \u00e0 l'emplacement de l'actuel marabout de Sidi Ali ben Ahmed" + ] + } + ], + "pid": "034910190", + "type": "bf:Place", + "variant_access_point": [ + "Tamusida (ville ancienne)" + ], + "md5": "6408664a1c1cacc353927bb89367570f" + }, + { + "authorized_access_point": "France - 1789-1799 (R\u00e9volution) - R\u00e9publiques soeurs", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "940", + "name": "Histoire de l'Europe" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/03512802X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13169029w", + "source": "BNF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Les R\u00e9publiques soeurs / J.-L. Harouel" + ] + }, + { + "noteType": "dataNotFound", + "label": [ + "LCSH, 1996-09" + ] + }, + { + "noteType": "general", + "label": [ + "\u00c9tats satellites mis en place par la R\u00e9publique fran\u00e7aise d\u00e8s 1792 (R\u00e9publique rauracienne), puis surtout \u00e0 partir de 1795 (R. batave). Ces r\u00e9publiques furent renvers\u00e9es en 1799 (R. parth\u00e9nop\u00e9enne, R. romaine), annex\u00e9es \u00e0 la France (R. ligurienne, 1805), ou transform\u00e9es en royaumes (Italie, 1805 ; Hollande, 1806), tandis que la R\u00e9publique helv\u00e9tique redevenait Conf\u00e9d\u00e9ration helv\u00e9tique en 1803" + ] + } + ], + "pid": "03512802X", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "R\u00e9publique cispadane (1796-1797)" + }, + { + "authorized_access_point": "G\u00eanes (Italie) - 1789-1815" + }, + { + "authorized_access_point": "Naples (Royaume) - 1799 (R\u00e9volution)" + }, + { + "authorized_access_point": "Pays-Bas - 1795-1806 (R\u00e9publique batave)" + }, + { + "authorized_access_point": "R\u00e9publique cisalpine" + }, + { + "authorized_access_point": "Rome (Italie) - 1798-1799 (R\u00e9publique romaine)" + }, + { + "authorized_access_point": "Suisse - 1798-1803 (R\u00e9publique helv\u00e9tique)" + } + ], + "variant_access_point": [ + "R\u00e9publiques soeurs (1792-1806)" + ], + "md5": "9cde0e150cda8fea95bd4b04b9638b75" + }, + { + "authorized_access_point": "Alpes maritimes (massif)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/035220287", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13174970t", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040746798" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/70146462766027772779" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Atlas universalis, 1984", + "Alpes Maritimes (France et Italie) ; Laval RVM, 1997-02" + ] + } + ], + "pid": "035220287", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Alpes (France)" + }, + { + "authorized_access_point": "Alpes (Italie)" + }, + { + "authorized_access_point": "Alpes (ouest)" + } + ], + "variant_access_point": [ + "Alpi Marittime", + "Maritimes, Alpes (massif)" + ], + "md5": "591a2e90dbda232c0f0419d288949344" + }, + { + "authorized_access_point": "Saint-Georges-des-Hurti\u00e8res (Savoie)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/03530183X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13180196j", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/244298214" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Saint-Georges-d'Hurti\u00e8res" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1992" + ] + } + ], + "pid": "03530183X", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Hurti\u00e8res, Pays des (France)" + } + ], + "md5": "9f80069ec0e89f9c172700f8a4fb7343" + }, + { + "authorized_access_point": "Saint-Pierre-de-Belleville (Savoie)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/035301872", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13180199k", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/5144648144682560894" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Saint-Pierre-de-Belleville" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1992" + ] + } + ], + "pid": "035301872", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Hurti\u00e8res, Pays des (France)" + } + ], + "md5": "f1f5d637bb26ae0da138cdfff73d8b87" + }, + { + "authorized_access_point": "Le Caire (\u00c9gypte ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/035321318", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13181517r", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/268148574378024430004" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Le_Caire" + } + ], + "pid": "035321318", + "type": "bf:Place", + "md5": "eecde9a362e6d3921b12f4e54dd093f0" + }, + { + "authorized_access_point": "Quatre-Cantons, Lac des (Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/035444193", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13189770p", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040635112" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/243437017" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Lac_des_Quatre-Cantons" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU, 1991" + ] + } + ], + "pid": "035444193", + "type": "bf:Place", + "variant_access_point": [ + "Lucerne, Lac de (Suisse)", + "Lac des Quatre-Cantons (Suisse)", + "Vierwaldst\u00e4tter See (Suisse)" + ], + "md5": "36c215b035b5c456ba4bd82523d05277" + }, + { + "authorized_access_point": "Revermont (France)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050211250", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/315125754" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Val-Revermont" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU. Guide bleu Franche-Comt\u00e9, Monts du Jura, 1955", + "Laval RVM, 1998-07" + ] + }, + { + "noteType": "general", + "label": [ + "Rebord occidental du Jura \u00e0 l'ouest de l'Ain, le Revermont comporte deux cha\u00eenons, de part et d'autre du Suran" + ] + } + ], + "pid": "050211250", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Jura (France ; massif)" + } + ], + "md5": "ca951aeba3129fe5337eb2fbf9338545" + }, + { + "authorized_access_point": "Cogne (Italie)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/05021778X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb135067940", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/127919056" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Cogne" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Robert 2", + "Operai alla Cogne / Stefano Peirano, 1997" + ] + } + ], + "pid": "05021778X", + "type": "bf:Place", + "md5": "ca6a481fb06750fa354c55d881d8b0c9" + }, + { + "authorized_access_point": "Abkhazie (G\u00e9orgie)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050300334", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/137166785" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU. SY 1996-97", + "Laval RVM, 1999-01" + ] + }, + { + "noteType": "general", + "label": [ + "R\u00e9publique sovi\u00e9tique en 1921, R\u00e9publique autonome de la G\u00e9orgie en 1930" + ] + } + ], + "pid": "050300334", + "type": "bf:Place", + "md5": "68b8520a179acb8dd09901106f0eca17" + }, + { + "authorized_access_point": "Chasse-sur-Rh\u00f4ne (Is\u00e8re)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050311530", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13114324r", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/159424557" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Chasse-sur-Rh\u00f4ne" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1997" + ] + } + ], + "pid": "050311530", + "type": "bf:Place", + "md5": "3d24c7a9e3e4fcc7994b92df70cd1756" + }, + { + "authorized_access_point": "Moras-en-Valloire (Dr\u00f4me)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050438417", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13513437t", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173306971" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Moras-en-Valloire" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1992" + ] + } + ], + "pid": "050438417", + "type": "bf:Place", + "md5": "114913b389f9cd7d6aa3cb3d421262cb" + }, + { + "authorized_access_point": "Nouvelle-Guin\u00e9e (\u00eele)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050556789", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb126484470", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040753190" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/316924037" + } + ], + "pid": "050556789", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "M\u00e9lan\u00e9sie" + }, + { + "authorized_access_point": "Australasie" + }, + { + "authorized_access_point": "Pacifique, \u00celes du" + } + ], + "variant_access_point": [ + "Irian", + "Nouvelle Guin\u00e9e (\u00eele)" + ], + "md5": "b14790b8022f23e9fc3d0fba716167e2" + }, + { + "authorized_access_point": "Assyrie", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050557556", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04003285X" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/172875652" + } + ], + "pid": "050557556", + "type": "bf:Place", + "relation_pid": { + "value": "027491870", + "type": "redirect_from" + }, + "md5": "d295e5b8b6c7bd4c65effa9c73eeca43" + }, + { + "authorized_access_point": "Samnaun (suisse) (val)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/050578480", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12650280j", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/124351558" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Samnaun" + } + ], + "pid": "050578480", + "type": "bf:Place", + "variant_access_point": [ + "Val samnaun (suisse)" + ], + "md5": "47a4dbe6c722ec6e0f3285a58fbb0ab1" + }, + { + "authorized_access_point": "Baden (Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/052490157", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13557976w", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040041646" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/49144647636482974054" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Internet (en ligne), 2000-05-23 : www.baden.ch/" + ] + }, + { + "noteType": "general", + "label": [ + "Ville et station thermale du canton d'Argovie" + ] + } + ], + "pid": "052490157", + "type": "bf:Place", + "variant_access_point": [ + "Aquae Helveticae (ville ancienne)" + ], + "md5": "bbad35163ee3b6ed8a57f3459a3a7ab6" + }, + { + "authorized_access_point": "L\u00e9man (d\u00e9partement)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/053443586", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/7503148574325124430009" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/L\u00e9man_(d\u00e9partement)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU. Mirot" + ] + }, + { + "noteType": "general", + "label": [ + "Emploi direct en subdivision : [sujet] -- L\u00e9man (d\u00e9partement)", + "Le d\u00e9partement du L\u00e9man a \u00e9t\u00e9 cr\u00e9\u00e9 le 26-04-1798 (chef-lieu : Gen\u00e8ve ; sous-pr\u00e9fectures : Bonneville, Thonon) ; il s'\u00e9tendait sur Gen\u00e8ve, le nord de la Savoie et le pays de Gex" + ] + } + ], + "pid": "053443586", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Savoie - 1792-1815 (Occupation fran\u00e7aise)" + } + ], + "md5": "d9b1ed65dd63722eb2c1b4c09727e6bd" + }, + { + "authorized_access_point": "Copponex (Haute-Savoie)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/053500539", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb136008673", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/242304355" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Copponex" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1997" + ] + } + ], + "pid": "053500539", + "type": "bf:Place", + "md5": "fe2b603c1f8fa2646f63416ddef9ba32" + }, + { + "authorized_access_point": "Harbin (Chine)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/053504755", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/55144647638065498121" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Ma vie : enfance en Sib\u00e9rie, jeunesse \u00e0 Harbin de 1914 \u00e0 1932 / Nina Mokrinskaia ; trad. du russe par Val\u00e9rie Morichon-Kolesnikov, 2000", + "Cihai, 1999", + "Gd Robert 2. GDEL" + ] + }, + { + "noteType": "general", + "label": [ + "Chef-lieu de la province du Heilongjiang, Chine" + ] + } + ], + "pid": "053504755", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Heilongjiang (Chine)" + } + ], + "variant_access_point": [ + "Haerbin (Chine)", + "Harbin (Chine)", + "Ha-eul-pin (Chine)", + "Kharbin (Chine)", + "\u54c8\u723e\u6ff1\u5e02", + "\u54c8\u5c14\u6ee8\u5e02", + "Ha'erbin Shi" + ], + "md5": "e73b9b7dafd21fdc385d06d9c2434639" + }, + { + "authorized_access_point": "Saint-Cyr-sur-le-Rh\u00f4ne (Rh\u00f4ne)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/055832024", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb136127080", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/245852500" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Saint-Cyr-sur-le-Rh\u00f4ne" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1997" + ] + } + ], + "pid": "055832024", + "type": "bf:Place", + "variant_access_point": [ + "Saint-Cyr-sur-Rh\u00f4ne (Rh\u00f4ne)" + ], + "md5": "707e3179c341dc8f56020a4819cecece" + }, + { + "authorized_access_point": "Multan (Pakistan ; district)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/061566284", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/974158070665608780008" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL", + "Web, http://www.geonames.org/maps/google_29.933_71.386.html (2016-03-18)", + "Internet, http://authorities.loc.gov, 2016-04-06" + ] + }, + { + "noteType": "general", + "label": [ + "E 71\u00b023'10\" - N 29\u00b055'59\"" + ] + } + ], + "pid": "061566284", + "type": "bf:Place", + "variant_access_point": [ + "\u0645\u0644\u062a\u0627\u0646 (Pakistan ; district)" + ], + "md5": "4b6dc9fc8618c5caf09208e4d980f7c4" + }, + { + "authorized_access_point": "Chengdu (Chine)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/066838339", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13745600g", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/265184140" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Chengdu" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Le petit Larousse, 2001", + "\u00c9tude sur la fabrication des arcs et des fl\u00e8ches \u00e0 Chengtu en Chine / T'an Tan-Chiung / 2001" + ] + }, + { + "noteType": "general", + "label": [ + "Capitale de Sichuan" + ] + } + ], + "pid": "066838339", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Sichuan (Chine)" + } + ], + "variant_access_point": [ + "Ch'eng-tu (Chine)", + "Tch'eng-tou (Chine)", + "Chengtu (Chine)", + "\u6210\u90fd" + ], + "md5": "05f74e2f0502e884f7771d320cf4c73b" + }, + { + "authorized_access_point": "Boisset-l\u00e8s-Montrond (Loire)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/068861974", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/4369148574353524430000" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Boisset-l\u00e8s-Montrond" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dictionnaire des communes de France, 1992" + ] + } + ], + "pid": "068861974", + "type": "bf:Place", + "md5": "3537ee775b99cd58ba5bd8aee611947b" + }, + { + "authorized_access_point": "Ch\u00e2tel (Haute-Savoie)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "912", + "name": "G\u00e9ographie de la France" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/068954174", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb167056033", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/308188277" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Ch\u00e2tel" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. des communes, 2001", + "S\u00e9rie bleue 1:250000. 3528 est, Abondance. Ch\u00e2tel, 1986" + ] + } + ], + "pid": "068954174", + "type": "bf:Place", + "md5": "11609df2f4b5942bbc8a887a0557d92b" + }, + { + "authorized_access_point": "Lizerne, Vall\u00e9e de la (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/069367027", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/237457712" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Derborence et la vall\u00e9e de la Lizerne / Th\u00e9odore Kuonen, 2000" + ] + } + ], + "pid": "069367027", + "type": "bf:Place", + "md5": "6c6f4f153ad09d7b7ea18895e851e6aa" + }, + { + "authorized_access_point": "H\u00e9phaistia (Gr\u00e8ce ; site arch\u00e9ologique)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/070388830", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/70148570552324310847" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Efestia : scavi Adriani 1928-1930, 2001" + ] + } + ], + "pid": "070388830", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "\u00c9g\u00e9e, Mer (r\u00e9gion ; nord)" + }, + { + "authorized_access_point": "Lemnos (Gr\u00e8ce ; \u00eele)" + } + ], + "variant_access_point": [ + "Efestia (Gr\u00e8ce ; site arch\u00e9ologique)", + "H\u00e9phaistias (Gr\u00e8ce ; site arch\u00e9ologique)" + ], + "md5": "bd4b9306182a7defeb604d3b17f1cee9" + }, + { + "authorized_access_point": "Tire (Turquie)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/072290455", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/31148570657424311634" + } + ], + "pid": "072290455", + "type": "bf:Place", + "md5": "734682d7c87e929eb53b9c39b55dddcb" + }, + { + "authorized_access_point": "Saillon (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/072616652", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/35148570661324311641" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)956137008" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Saillon / Pascal Thurre, 2002" + ] + } + ], + "pid": "072616652", + "type": "bf:Place", + "md5": "b7f0b753725391b1d179074d03883bff" + }, + { + "authorized_access_point": "Saint-Georges-en-Couzan (Loire)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/073387576", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb146042604", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/1312145424714286830500" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Saint-Georges-en-Couzan" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Bottin des communes, 2001" + ] + } + ], + "pid": "073387576", + "type": "bf:Place", + "variant_access_point": [ + "St Georges-en-Couzan (Loire)" + ], + "md5": "26b75c2feaa60c6395a93e277504a432" + }, + { + "authorized_access_point": "Bo\u00ebn (Loire)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/073444073", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11970308w", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/149197662" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Bo\u00ebn-sur-Lignon" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1984" + ] + } + ], + "pid": "073444073", + "type": "bf:Place", + "md5": "3ee4fa606c156e5a5cbf11403941b9e3" + }, + { + "authorized_access_point": "Serri\u00e8res (Ard\u00e8che)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/074436805", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb14522148r", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/172123723" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Serri\u00e8res_(Ard\u00e8che)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Bottin des communes, 2001" + ] + } + ], + "pid": "074436805", + "type": "bf:Place", + "md5": "b6f33e595f9aa760af7b39ae8c1db596" + }, + { + "authorized_access_point": "Ch\u00e2tillon (Italie)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/074578022", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/144380489" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Ch\u00e2tillon_(Italie)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Le petit Robert : dictionnaire universel des noms propres. - Le Robert, 1995" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du Val d'Aoste" + ] + } + ], + "pid": "074578022", + "type": "bf:Place", + "md5": "2a8add0edeac7b6eb113b5107bdabd23" + }, + { + "authorized_access_point": "Saint-Symphorien-d'Ozon (Rh\u00f4ne)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/077271041", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12374893d", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/234758907" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Saint-Symphorien-d'Ozon" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. des communes, 1992" + ] + } + ], + "pid": "077271041", + "type": "bf:Place", + "md5": "249e642ac49c033fe79885c3b5ef0c30" + }, + { + "authorized_access_point": "Bri\u00e9-et-Angonnes (Is\u00e8re)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "912", + "name": "G\u00e9ographie de la France" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/077437160", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/4748148574355124430004" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Bri\u00e9-et-Angonnes" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1997" + ] + } + ], + "pid": "077437160", + "type": "bf:Place", + "md5": "081578cca7862e4908836e4ed723a4a7" + }, + { + "authorized_access_point": "Salvan (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914", + "name": "G\u00e9ographie de l'Europe" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/078613655", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041980409" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/81148570735924312360" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU", + "Guide bleu Suisse, 1991", + "Repr\u00e9sentations du rique d'avalanches et comportements sociaux dans deux communes valaisannes : Salvan et \u00c9vol\u00e8ne, 1998" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du Valais, dans la vall\u00e9e du Trient" + ] + } + ], + "pid": "078613655", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Les Mar\u00e9cottes (Valais, Suisse)" + } + ], + "md5": "fbec93596453e75ea9a437fae21d390e" + }, + { + "authorized_access_point": "Vonnas (Ain)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/084272996", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12351512m", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/245387195" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Vonnas" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1984" + ] + } + ], + "pid": "084272996", + "type": "bf:Place", + "md5": "db50471fb29b5ac9732c32f3e28f6f6b" + }, + { + "authorized_access_point": "Gen\u00e8ve (Suisse ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914", + "name": "G\u00e9ographie de l'Europe" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/085703419", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb14475513s", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040201392" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/55144647634843459675" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "085703419", + "type": "bf:Place", + "md5": "1f740469443f1a616a8d1e5e5d58ecf6" + }, + { + "authorized_access_point": "Ohio (\u00c9tats-Unis ; cours d'eau)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/092146430", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11968106c", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/24144647633045786856" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GLU", + "https://fr.wikipedia.org/wiki/Ohio_(rivi\u00e8re)" + ] + }, + { + "noteType": "general", + "label": [ + "Rivi\u00e8re des Etats-Unis qui part de Pennsylvanie, forme la fronti\u00e8re entre les \u00c9tats de la Virginie-Occidentale et l'Ohio, et traverse les \u00c9tats du Kentucky, de l'Ohio, de l'Indiana et de l'Illinois, avant de se jeter dans le Mississippi \u00e0 Cairo, dans l'Illinois. 1570 km." + ] + } + ], + "pid": "092146430", + "type": "bf:Place", + "variant_access_point": [ + "Ohio", + "Ohio River (\u00c9tats-Unis ; cours d'eau)" + ], + "md5": "43119b5ad6b09ead1d85ba33cd7117f5" + }, + { + "authorized_access_point": "Rivoli (Italie)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914", + "name": "G\u00e9ographie de l'Europe" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/09445423X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15551512c", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/149005556" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Rivoli" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Guida d'Italia, Torino e valle d'Aosta, Touring club italiano, Milan, 1959" + ] + } + ], + "pid": "09445423X", + "type": "bf:Place", + "md5": "b430553cdd3cbb872a3101b2a5dfc9d4" + }, + { + "authorized_access_point": "Bussi\u00e8res (Loire)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/095140484", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15060567r", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/126846977" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Bussi\u00e8res_(Sa\u00f4ne-et-Loire)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "\"La soie, c'est notre muse\" : le tissage de la soie \u00e0 Bussi\u00e8res, du second Empire au Front populaire / Mireille Grivot ; [publi\u00e9 par l'] Institut des \u00e9tudes r\u00e9gionales et des patrimoines, 2005" + ] + } + ], + "pid": "095140484", + "type": "bf:Place", + "md5": "aa354f71c22e9971708e0a4e3d9fa36b" + }, + { + "authorized_access_point": "La Chapelle-Blanche (Savoie)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "912", + "name": "G\u00e9ographie de la France" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/102120935", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb150472227", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/139948506" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/La_Chapelle-Blanche_(Savoie)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 2001" + ] + } + ], + "pid": "102120935", + "type": "bf:Place", + "variant_access_point": [ + "Chapelle-Blanche, La (Savoie)" + ], + "md5": "fae66a1ba4d25226326f8a632088149f" + }, + { + "authorized_access_point": "Kentucky (\u00c9tats-Unis ; cours d'eau)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/102147817", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/88148570693824312469" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://fr.wikipedia.org/wiki/Kentucky_(rivi\u00e8re)/, 2024-07-18" + ] + }, + { + "noteType": "general", + "label": [ + "La Kentucky est une rivi\u00e8re du Kentucky aux \u00c9tats-Unis, affluent rive gauche de la rivi\u00e8re Ohio, donc un sous-affluent du Mississippi" + ] + } + ], + "pid": "102147817", + "type": "bf:Place", + "variant_access_point": [ + "Kentucky river (Ky. ; cours d'eau)" + ], + "md5": "8e7943fd7ae2b139537d3a23f816ef8e" + }, + { + "authorized_access_point": "Lusaka (Zambie)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/113070926", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb151948916", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/151258315" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Lusaka" + } + ], + "pid": "113070926", + "type": "bf:Place", + "md5": "7761d8141aabfb063456786f2a04ee17" + }, + { + "authorized_access_point": "Bas-Valais (Suisse)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914", + "name": "G\u00e9ographie de l'Europe" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/114526591", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb144160064", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040786528" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/51144647641031129112" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL", + "https://www.vs.ch/web/communes/-/bas-valais, 2022-09-27", + "\u00c0 la d\u00e9couverte de trois r\u00e9gions alpines, une culture : Bas-Valais, vall\u00e9e d'Aoste, Haute-Savoie - Savoie, 2000" + ] + }, + { + "noteType": "general", + "label": [ + "R\u00e9gion du Canton du Valais comprenant les districts de Monthey, St-Maurice, Entremont et Martigny" + ] + } + ], + "pid": "114526591", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Valais (Suisse)" + } + ], + "variant_access_point": [ + "Valais, Bas- (Suisse)" + ], + "md5": "1c5c1f8f2c2040adc6e4e34b05f3062b" + }, + { + "authorized_access_point": "Aletsch, Grand Glacier d' (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/116317825", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15240705p", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040721000" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/170096434" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Le glacier de l'Aletsch et le lac de M\u00e4rjelen / Roland Bonaparte. Paris : 1889." + ] + }, + { + "noteType": "general", + "label": [ + "E 8\u00b04' / N 46\u00b026'" + ] + } + ], + "pid": "116317825", + "type": "bf:Place", + "variant_access_point": [ + "Aletschgletscher (Suisse)", + "Grosser Aletschgletscher (Valais, Suisse)", + "Glacier d'Aletsch (Valais, Suisse)", + "Aletsch, Glacier d' (Valais, Suisse)", + "Grand Glacier d'Aletsch (Valais, Suisse)" + ], + "md5": "f11cd3845ac6f413a7f5407c6f388d44" + }, + { + "authorized_access_point": "Albanie (nord)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/116459425", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/55148570478224310503" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)947297987" + } + ], + "pid": "116459425", + "type": "bf:Place", + "md5": "0a87dfd9b7c84d1802a4714a86973ab1" + }, + { + "authorized_access_point": "Dalian (Chine)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/119411016", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/23145243768374441278" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "\u00c9tude de la transformation des paysages aux limites des agglom\u00e9rations. Les exemples de Caen et Dalian. / Xiao Wang, 2007" + ] + }, + { + "noteType": "general", + "label": [ + "Ville de la province du Liaoning" + ] + } + ], + "pid": "119411016", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Liaoning (Chine)" + } + ], + "variant_access_point": [ + "\u5927\u9023\u5e02", + "\u5927\u8fde\u5e02", + "Dalian Shi" + ], + "md5": "cb1e64e2ce5e3e5f61ba47b546148937" + }, + { + "authorized_access_point": "Chermignon (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/123048338", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/73148570504824310991" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04201459X" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Lutte de clans, lutte de classes : Chermignon, la politique au village / Uli Windisch, 1986.", + "https://www.commune-cransmontana.ch/pages/la-commune-de-crans-montana-3352", + "Internet, http://www.chermignon.ch, 2008-04-09" + ] + }, + { + "noteType": "general", + "label": [ + "Village du canton du Valais. Ancienne commune. Rattach\u00e9 \u00e0 la commune de Crans-Montana en 2017" + ] + } + ], + "pid": "123048338", + "type": "bf:Place", + "md5": "b40166a2b21ed98e1cfd3a089856edd7" + }, + { + "authorized_access_point": "Saint Martin de la Porte (Savoie)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/124441092", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/241869154" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Saint-Martin-de-la-Porte" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://fr.wikipedia.org/wiki/Saint-Martin-de-la-Porte" + ] + } + ], + "pid": "124441092", + "type": "bf:Place", + "md5": "ce97fd22ed441387e8d73e2e341dad6c" + }, + { + "authorized_access_point": "L\u00f6tschberg, Tunnel de base du (Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/127372547", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/139148570539024310972" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)96475455X" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Tunnel de base du L\u00f6tschberg : de la roche au chemin de fer / Felix freank, 2008", + "https://fr.wikipedia.org/wiki/Tunnel_de_base_du_L%C3%B6tschberg, 2022-09-13" + ] + }, + { + "noteType": "general", + "label": [ + "Tunnel ferroviaire qui relie le canton du Valais \u00e0 celui de Berne. Inaugur\u00e9 en 2007." + ] + } + ], + "pid": "127372547", + "type": "bf:Place", + "variant_access_point": [ + "Tunnel de base du L\u00f6tschberg (Suisse)", + "L\u00f6tschberg Basistunnel (Suisse)" + ], + "md5": "c064ed095d71d1f45c58836ae98eb5d3" + }, + { + "authorized_access_point": "Saint-Barth\u00e9lemy-de-Vals (Dr\u00f4me)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/131577166", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb10755012m", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/299563798" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Saint-Barth\u00e9lemy-de-Vals" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dictionnaire des communes, 2002" + ] + } + ], + "pid": "131577166", + "type": "bf:Place", + "md5": "ac5e366bc38a887b751174cb0272378d" + }, + { + "authorized_access_point": "Saint-Martin-le-Vinoux (Is\u00e8re)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/133653951", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12539212n", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/95144648445080947459" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Saint-Martin-le-Vinoux" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "L'appropriation des habitants de Saint-Martin-le-Vinoux aux territoires / M\u00e9moire de master 2\u00e8me ann\u00e9e : Politiques publiques et changement social, sp\u00e9cialit\u00e9 \"Villes, Territoires, Solidarit\u00e9s\" / Grenoble : IEP, 2008" + ] + } + ], + "pid": "133653951", + "type": "bf:Place", + "md5": "f881776c340c16f39b06e429b5b4b977" + }, + { + "authorized_access_point": "Majunga (Madagascar ; province)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/140829520", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/154785947" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Carte de la province de Majunga. 1:1 000 000 / Service g\u00e9ographique de Madagascar, [s.d.]" + ] + } + ], + "pid": "140829520", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Madagascar" + } + ], + "variant_access_point": [ + "Mahajanga (Madagascar ; province)" + ], + "md5": "665ab4306114ff8c5073f31c0af26e95" + }, + { + "authorized_access_point": "Mananjary (Madagascar ; province)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/140834087", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/143237247" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Carte de la province de Mananjary. 1:1 000 000 / Service g\u00e9ographique de Madagascar, 1925" + ] + } + ], + "pid": "140834087", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Madagascar" + } + ], + "md5": "36542c957dd56c80c30bfbd14239df9c" + }, + { + "authorized_access_point": "Mont-Rose, Massif du", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/144820072", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/136148570652124311276" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041152077" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Uebersichstkarte zum Relief der Monterosa-Gruppe / von X. Imfeld, 1880", + "GLU" + ] + }, + { + "noteType": "general", + "label": [ + "Massif des Alpes Pennines partag\u00e9 entre la Suisse (canton du Valais) et l'Italie." + ] + } + ], + "pid": "144820072", + "type": "bf:Place", + "variant_access_point": [ + "Monte Rosa, Massif du" + ], + "md5": "05e9200121abda0129b224452d70f44e" + }, + { + "authorized_access_point": "Chasselas (Sa\u00f4ne-et-Loire)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/145818713", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/49148570720624312579" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Chasselas_(Sa\u00f4ne-et-Loire)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dictionnaire des Communes, 2002" + ] + } + ], + "pid": "145818713", + "type": "bf:Place", + "md5": "b2f9a92bdff59597928ee6a8f42c749d" + }, + { + "authorized_access_point": "Hab\u00e8re-Lullin (Haute-Savoie)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/148119778", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16241764k", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/93144647642602560697" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Hab\u00e8re-Lullin" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dictionnaire des communes, 2002" + ] + } + ], + "pid": "148119778", + "type": "bf:Place", + "md5": "3ce0e673af4048d9025d12c2b1013990" + }, + { + "authorized_access_point": "Val-de-Travers (Neuch\u00e2tel, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/148833829", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173812545" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1038431506" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Un grand r\u00eave d'avenir : [Val-de-Travers, histoire d'une fusion / Kaeslin, Jacques, 19..-2019 (contributeur - collaborateur);Kleiner, Claude-Alain, 1951-.... (contributeur - collaborateur);Charri\u00e8re, Fran\u00e7ois, 19..-...., photographe (contributeur - collaborateur);Lyc\u00e9e Denis de Rougemont (Fleurier) (contributeur - collaborateur), 2013" + ] + }, + { + "noteType": "general", + "label": [ + "Val-de-Travers est une commune suisse du canton de Neuch\u00e2tel, situ\u00e9e dans la r\u00e9gion Val-de-Travers. Val-de-Travers a \u00e9t\u00e9 cr\u00e9\u00e9e le 1er janvier 2009 \u00e0 la suite de la fusion de neuf anciennes communes : Boveresse, Buttes, Couvet, Fleurier, Les Bayards, M\u00f4tiers, Noiraigue, Saint-Sulpice et Travers." + ] + } + ], + "pid": "148833829", + "type": "bf:Place", + "md5": "7bead4365a13357b1cbb6408930c3109" + }, + { + "authorized_access_point": "Gemmi, Col de la (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/150220200", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/118148570517524310836" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040717003" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040717003" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://catalogue.bnf.fr/ark:/12148/cb152923816/UNIMARC 2011-02-21", + "20 Jahre Furggent\u00e4lti: Permafrostuntersuchungen auf der Gemmi / Bernhard Krummenacher .... - Bern : Geogr. Inst. d. Univ., 2008" + ] + }, + { + "noteType": "general", + "label": [ + "Coordonn\u00e9es g\u00e9ographiques : E 7\u00b037' / N 46\u00b024'" + ] + } + ], + "pid": "150220200", + "type": "bf:Place", + "md5": "df46870a3793950da2008f7f0b90fcf2" + }, + { + "authorized_access_point": "Treffort-Cuisiat (Ain)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/151572429", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/225148570700124311979" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Treffort_(Ain)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Richesses touristiques et arch\u00e9ologiques du canton de Treffort : Treffort, Cuisiat, Chavannes-sur-Suran, Corveissiat, Arnans, Courmangoux, Germagnat, Meillonnas, Pouillas, Pressit, Saint-Etienne-du-Bois / D\u00e9partement de l'Ain, Pr\u00e9-inventaire, impr. 1982" + ] + } + ], + "pid": "151572429", + "type": "bf:Place", + "variant_access_point": [ + "Treffort (Ain)" + ], + "md5": "1aa83ff306c3eca2f16282f528303db3" + }, + { + "authorized_access_point": "Qasr al-Buleida (Jordanie ; site arch\u00e9ologique)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/152219005", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb166008514", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/243233070" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Qasr r al-Buleida : a late Roman-Byzantine fortified settlement on the Dead Sea Plain, Jordan / Alexandra Ariotti, 2009" + ] + }, + { + "noteType": "general", + "label": [ + "Hameau situ\u00e9 \u00e0 6 km du village Ghor al-Mazra'a" + ] + } + ], + "pid": "152219005", + "type": "bf:Place", + "md5": "03059a8080ec055aedba45f8e186285c" + }, + { + "authorized_access_point": "Auschwitz (Pologne)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/153092815", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/37148570468224310076" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040689794" + } + ], + "pid": "153092815", + "type": "bf:Place", + "md5": "7914a133190a1710d45cf2b73f08d478" + }, + { + "authorized_access_point": "Gorner, Glacier de (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "550", + "name": "Sciences de la Terre" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914", + "name": "G\u00e9ographie de l'Europe" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/153807989", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16679045m", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/300148461" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)961576073" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Zur Geschichte des Gornergletschers: ein Puzzle aus historischen Dokumenten und fossilen H\u00f6lzern aus dem Gletschervorfeld / Hanspeter Holzhauser. - Bern : Geographisches Institut der Universit\u00e4t Bern, 2010" + ] + } + ], + "pid": "153807989", + "type": "bf:Place", + "variant_access_point": [ + "Gorner Gletscher (Valais, Suisse)", + "Gornergletscher (Valais, Suisse)", + "Glacier de Gorner (Valais, Suisse)", + "Zermatt, Glacier de (Valais, Suisse)", + "Glacier de Zermatt (Valais, Suisse)", + "G\u00f6rnergletscher (Valais, Suisse)", + "N\u00f6rdlischer Monte Rosa Gletscher (Valais, Suisse)" + ], + "md5": "5c47603b31dbf3ddc7a0ad723d90b5b4" + }, + { + "authorized_access_point": "Martigny (Valais, Suisse) - \u00c9glise Notre-Dame de la Visitation", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "720", + "name": "Architecture" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914", + "name": "G\u00e9ographie de l'Europe" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/154297550", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16530054d", + "source": "BNF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "\u00c9glise paroissiale de Martigny-Ville - http://www.paroissemartigny.ch (2011-08-10)", + "Ville de Martigny - http://www.martigny.ch (2011-08-10)", + "Dict. historique de la Suisse : \u00e9glise Notre-Dame des champs - http://www.hls-dhs-dss.ch (2011-08-10)" + ] + }, + { + "noteType": "dataNotFound", + "label": [ + "Guides Voir : Suisse, 2006" + ] + }, + { + "noteType": "general", + "label": [ + "\u00c9glise paroissiale de Martigny, qui a succ\u00e9d\u00e9 \u00e0 plusieurs lieux de culte, d'un sanctuaire romain \u00e0 l'\u00e9glise baroque. Longtemps utilis\u00e9, le vocable \"Notre-Dame des Champs\" est aujourd'hui affect\u00e9 au b\u00e2timent paroissial voisin" + ] + } + ], + "pid": "154297550", + "type": "bf:Place", + "variant_access_point": [ + "\u00c9glise Notre-Dame de la Visitation (Martigny, Valais, Suisse)", + "\u00c9glise Notre-Dame des Champs (Martigny, Valais, Suisse)", + "Notre-Dame de la Visitation, \u00c9glise (Martigny, Valais, Suisse)", + "Notre-Dame des Champs, \u00c9glise (Martigny, Valais, Suisse)" + ], + "md5": "341de3e4a1bf1952a0ad716d1eed4947" + }, + { + "authorized_access_point": "Leukerbad (Valais, Suisse) - Camp d'internement", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/154762393", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "BDIC Nanterre. Archives des Collectivit\u00e9s. La Guerre 1914-1918 dans le ressort de l'Acad\u00e9mie de Lille. Cote : F delta 1126//01a/A1.212" + ] + }, + { + "noteType": "general", + "label": [ + "Camp d'internement pendant la guerre de 1914-1918. Situ\u00e9 au canton Valais. Ony trouvait notamment des intern\u00e9s militaires fran\u00e7ais." + ] + } + ], + "pid": "154762393", + "type": "bf:Place", + "variant_access_point": [ + "Lo\u00e8che-les-Bains (Valais, Suisse) - Camp d'internement" + ], + "md5": "c2aaf4c76689a1d16719e0b5987efeb3" + }, + { + "authorized_access_point": "Berne (Suisse ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/156994151", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/53148570484424310365" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04005764X" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgen\u00f6ssische Stabsb\u00fcreau unter der direktion von Oberst Siegfried ver\u00f6ffentlicht" + ] + } + ], + "pid": "156994151", + "type": "bf:Place", + "variant_access_point": [ + "Bern (Suisse)" + ], + "md5": "66b853bb2cbc44346ddfcc26c23242d6" + }, + { + "authorized_access_point": "Cheseaux (Suisse ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/157032469", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16200295d", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/239656292" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Cheseaux-sur-Lausanne" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgen\u00f6ssische Stabsb\u00fcreau unter der direktion von Oberst Siegfried ver\u00f6ffentlicht" + ] + } + ], + "pid": "157032469", + "type": "bf:Place", + "md5": "ed3b2d5693d7e2451508f40b95691ddf" + }, + { + "authorized_access_point": "Belfaux (Fribourg, Suisse ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/157043819", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/137148570485524310256" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgen\u00f6ssische Stabsb\u00fcreau unter der direktion von Oberst Siegfried ver\u00f6ffentlicht" + ] + } + ], + "pid": "157043819", + "type": "bf:Place", + "md5": "d3f7ec6b494e6822cb70d9cc9b410085" + }, + { + "authorized_access_point": "Fribourg (Fribourg, Suisse ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/157043908", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/136148570491024310547" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041965299" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgen\u00f6ssische Stabsb\u00fcreau unter der direktion von Oberst Siegfried ver\u00f6ffentlicht" + ] + } + ], + "pid": "157043908", + "type": "bf:Place", + "md5": "7898cf6c323dd5468f89675ffd1f99cd" + }, + { + "authorized_access_point": "Saint-Blaise (Neuch\u00e2tel, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/157046125", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb155788903", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/27144648222762151333" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)949680915" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Saint-Blaise_(Neuch\u00e2tel)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgen\u00f6ssische Stabsb\u00fcreau unter der direktion von Oberst Siegfried ver\u00f6ffentlicht" + ] + } + ], + "pid": "157046125", + "type": "bf:Place", + "variant_access_point": [ + "St-Blaise (Suisse)" + ], + "md5": "027cc35179b2aa96b33c757744a43c54" + }, + { + "authorized_access_point": "Bienne (Suisse ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/157046486", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/8605148574371124430002" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040804003" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgen\u00f6ssische Stabsb\u00fcreau unter der direktion von Oberst Siegfried ver\u00f6ffentlicht" + ] + } + ], + "pid": "157046486", + "type": "bf:Place", + "variant_access_point": [ + "Biel (Suisse)" + ], + "md5": "3bdd7db74d7e188a46a15da629662dce" + }, + { + "authorized_access_point": "Sion (Valais, Suisse ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/157070093", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/6822148574363524430000" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)953273733" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)953273733" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgen\u00f6ssische Stabsb\u00fcreau unter der direktion von Oberst Siegfried ver\u00f6ffentlicht" + ] + } + ], + "pid": "157070093", + "type": "bf:Place", + "md5": "3dafcd42f4379c0648bf06a5dc88da17" + }, + { + "authorized_access_point": "Villmergen (Suisse ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/157075109", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13332495t", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/157272680" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Villmergen" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgen\u00f6ssische Stabsb\u00fcreau unter der direktion von Oberst Siegfried ver\u00f6ffentlicht" + ] + } + ], + "pid": "157075109", + "type": "bf:Place", + "md5": "cb6b3a07b03ecaac5e392396826e103f" + }, + { + "authorized_access_point": "C\u00f4te aux f\u00e9es (Suisse ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/157110184", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/237444110" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/La_C\u00f4te-aux-F\u00e9es" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgen\u00f6ssische Stabsb\u00fcreau unter der direktion von Oberst Siegfried ver\u00f6ffentlicht" + ] + } + ], + "pid": "157110184", + "type": "bf:Place", + "md5": "5005de9d980db1098d88cb674e3fb0cc" + }, + { + "authorized_access_point": "Finhaut (Valais, Suisse ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/157135675", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/121148570787624312975" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgen\u00f6ssische Stabsb\u00fcreau unter der direktion von Oberst Siegfried ver\u00f6ffentlicht" + ] + } + ], + "pid": "157135675", + "type": "bf:Place", + "md5": "205aa27319b268f8af092efca53d92c7" + }, + { + "authorized_access_point": "Martigny (Valais, Suisse ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/157135756", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/7324148574283224430000" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)953387615" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgen\u00f6ssische Stabsb\u00fcreau unter der direktion von Oberst Siegfried ver\u00f6ffentlicht" + ] + } + ], + "pid": "157135756", + "type": "bf:Place", + "md5": "a143f5a97b788df28c7a987bbb0e4598" + }, + { + "authorized_access_point": "Colombier (Neuch\u00e2tel, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/157143791", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/86148570501924310556" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)959239235" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgen\u00f6ssische Stabsb\u00fcreau unter der direktion von Oberst Siegfried ver\u00f6ffentlicht" + ] + }, + { + "noteType": "general", + "label": [ + "Ne pas confondre avec: Colombier (Vaud, Suisse)" + ] + } + ], + "pid": "157143791", + "type": "bf:Place", + "md5": "af34cad6efda5b005faa9dcaa764a792" + }, + { + "authorized_access_point": "Neuch\u00e2tel (Neuch\u00e2tel, Suisse ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/157164764", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/97148570783424312980" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)953427730" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgen\u00f6ssische Stabsb\u00fcreau unter der direktion von Oberst Siegfried ver\u00f6ffentlicht" + ] + } + ], + "pid": "157164764", + "type": "bf:Place", + "variant_access_point": [ + "Neuenburg (Neuch\u00e2tel, Suisse)" + ], + "md5": "283cba437dcf10760bd2b645d4761656" + }, + { + "authorized_access_point": "Saint-Maurice (Valais, Suisse ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/157165892", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/102148570725424312417" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)959192743" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgen\u00f6ssische Stabsb\u00fcreau unter der direktion von Oberst Siegfried ver\u00f6ffentlicht" + ] + } + ], + "pid": "157165892", + "type": "bf:Place", + "md5": "8956c75142456313af70443097d2ee23" + }, + { + "authorized_access_point": "Vouvry (Valais, Suisse ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/157260275", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/144290317" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Vouvry" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgen\u00f6ssische Stabsb\u00fcreau unter der direktion von Oberst Siegfried ver\u00f6ffentlicht" + ] + } + ], + "pid": "157260275", + "type": "bf:Place", + "md5": "0b99ea5f49e2ed08010842db2259d86b" + }, + { + "authorized_access_point": "Gryon (Vaud, Suisse ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/157265927", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/105148570725524312416" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgen\u00f6ssische Stabsb\u00fcreau unter der direktion von Oberst Siegfried ver\u00f6ffentlicht" + ] + } + ], + "pid": "157265927", + "type": "bf:Place", + "md5": "eef272cbdb9e3a47dd15396941a11ede" + }, + { + "authorized_access_point": "Saint-Fons (France)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/158185102", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/173407949" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Saint-Fons" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Kommunalpolitik in Penzberg und Saint-Fons / Gilbert Casasus, 1985" + ] + } + ], + "pid": "158185102", + "type": "bf:Place", + "md5": "b0c19af31dc1ed2288f1411a1280ed55" + }, + { + "authorized_access_point": "L\u00f6tschental (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/158634624", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/2769148574264424430001" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040361640" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Eine katholische Glaubenswelt : das L\u00f6tschental des 19. Jahrhunderts / herausgegeben vom L\u00f6tschentaler Museum in Kippel anl\u00e4sslich der Ausstellung \"Katholische Bildwelten\" vom 29. Mai 2010 bis zum 31. M\u00e4rz 2011 ; [Herausgeber, Thomas Antonietti und Rita Kalbermatten-Ebener ; Texte, Thomas Antonietti], cop. 2010" + ] + } + ], + "pid": "158634624", + "type": "bf:Place", + "variant_access_point": [ + "L\u00f6tschen, Vall\u00e9e de (Valais, Suisse)", + "L\u00f6tschen, Vall\u00e9e du (Valais, Suisse)", + "Loetschen, Vall\u00e9e de (Valais, Suisse)", + "Loetschen, Vall\u00e9e du (Valais, Suisse)" + ], + "md5": "0ec00735e29e66e496ea52657481e878" + }, + { + "authorized_access_point": "Gruy\u00e8res (Fribourg, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/15903194X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12002988n", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040220419" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/88148570483324310216" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL", + "Brockhaus, 17e ed" + ] + } + ], + "pid": "15903194X", + "type": "bf:Place", + "variant_access_point": [ + "Greyerz (Freiburg, Schweiz)" + ], + "md5": "ef86ffd194e86c63949fd8443e00388d" + }, + { + "authorized_access_point": "Soule (Pyr\u00e9n\u00e9es-Atlantiques)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/159667518", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11987681p", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/166144783024238212729" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Soule_(province)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Robert encyclop\u00e9dique des noms propres, 2008" + ] + }, + { + "noteType": "general", + "label": [ + "L'une des sept provinces historiques du Pays basque, comprise entre la Navarre et le B\u00e9arn" + ] + } + ], + "pid": "159667518", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Pays basque (Pyr\u00e9n\u00e9es-Atlantiques)" + }, + { + "authorized_access_point": "Pyr\u00e9n\u00e9es-Atlantiques (France)" + } + ], + "variant_access_point": [ + "Soule, Pays de (Pyr\u00e9n\u00e9es-Atlantiques)" + ], + "md5": "1b5fcca1a30fa22696c2670cc6024246" + }, + { + "authorized_access_point": "H\u00e9r\u00e9mence (Valais, Suisse) - \u00c9glise Saint-Nicolas", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/16152270X", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "\"Gebilde von hoher Zwecklosigkeit\" : Walter Maria F\u00f6rderers Gratwanderung zwischen Architektur und Skulptur am Beispiel St-Nicolas in H\u00e9r\u00e9mence / Zara Reckermann, cop. 2009", + "Internet, http://d-nb.info/gnd/7672770-1, 2012-06-06" + ] + }, + { + "noteType": "general", + "label": [ + "Eglise n\u00e9o-expressionniste construite par Walter Maria F\u00f6rderer (1928-2006) en 1971" + ] + } + ], + "pid": "16152270X", + "type": "bf:Place", + "variant_access_point": [ + "H\u00e9r\u00e9mence (Valais, Suisse) - St-Nicolas", + "H\u00e9r\u00e9mence (Valais, Suisse) - Katholische Pfarrkirche", + "H\u00e9r\u00e9mence (Valais, Suisse) - Sankt Nicolas" + ], + "md5": "f086529ebb2a45b5af26d2733af91f64" + }, + { + "authorized_access_point": "H\u00e9r\u00e9mence (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/161522718", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043082572" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/112144647650953000031" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "\"Gebilde von hoher Zwecklosigkeit\" : Walter Maria F\u00f6rderers Gratwanderung zwischen Architektur und Skulptur am Beispiel St-Nicolas in H\u00e9r\u00e9mence / Zara Reckermann, cop. 2009" + ] + } + ], + "pid": "161522718", + "type": "bf:Place", + "variant_access_point": [ + "Armensi (Valais, Suisse)", + "Ermenz (Valais, Suisse)" + ], + "md5": "fceec4f791eacc2e3c6655f0193f49b3" + }, + { + "authorized_access_point": "Veyrier-du-Lac (Haute-Savoie)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/161930069", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb131958679", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/159189091" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Veyrier-du-Lac" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dictionnaire des communes, 2002" + ] + } + ], + "pid": "161930069", + "type": "bf:Place", + "md5": "378662f2f52de413fd085d39a0b22aa4" + }, + { + "authorized_access_point": "Monthey (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/162029667", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/40148570706524311869" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041021746" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Site officiel de la commune" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton du Valais" + ] + } + ], + "pid": "162029667", + "type": "bf:Place", + "md5": "e3709feacd7b1dcc74e0db0cb30d5f20" + }, + { + "authorized_access_point": "Saint-Jean-d'Arves (Savoie)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/162144342", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15591531g", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/14144648150835336147" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Saint-Jean-d'Arves" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 2002" + ] + } + ], + "pid": "162144342", + "type": "bf:Place", + "md5": "06ae1ea5dc5d04fbe893dd93e73074e7" + }, + { + "authorized_access_point": "Chippis (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/163687536", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/66148570719924312145" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1004355866" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "BDIC Nanterre, Archives. Bureau d'\u00e9tudes de la presse \u00e9trang\u00e8re.- Suisse 1915-1922 (cote F delta 788/22)", + "Dictionnaire Historique de la Suisse (URL: http://www.hls-dhs-dss.ch/textes/f/F2782.php)" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton Valais. On y trouve depuis 1905 une usine de Aluminium Industrie AG (depuis Alusuisse), th\u00e9\u00e2tre d'une gr\u00e8ve insurrectionnelle en mai-juin 1917." + ] + } + ], + "pid": "163687536", + "type": "bf:Place", + "md5": "d4f3d6907f336c0925e09a147e5e992a" + }, + { + "authorized_access_point": "Thielle (Suisse ; cours d'eau)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/165827157", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/91148570456824310233" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1025748506" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Am\u00e9nagements fluviaux de la Thielle au Moyen Age : p\u00eacherie et moulin de Pr\u00e9 de la Mottaz / Nicole Plumettaz, Daniel Pillonel et Nigel Thew; avec des contributions de St\u00e9phane B\u00f6hringer, Patrick Gassmann, Philippe Hadorn...[et al.]; avec un texte orginal d'Hanni Schwab; et un document de Bernard Vauthier, 2011" + ] + } + ], + "pid": "165827157", + "type": "bf:Place", + "variant_access_point": [ + "Thielle (Neuch\u00e2tel, Suisse ; cours d'eau)", + "Thielle (Berne, Suisse ; cours d'eau)" + ], + "md5": "e855b6a2a8eb65715e91908d2fc2b5bc" + }, + { + "authorized_access_point": "Bah\u0101walpur (Pakistan)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/169621820", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16026376x", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/123164765" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "The history of Bahawalpur / Shahamet Ali, 2012", + "Internet, http://wikipedia.org, 2013-05-29", + "Bernard Desnous. BULAC. T\u00e9l. 01 81 69 18 24. Courriel : bernard.desnouesbulac.fr" + ] + }, + { + "noteType": "general", + "label": [ + "Ville situ\u00e9e dans le district de Bahawalpur dans la Province du Pendjab au Pakistan" + ] + } + ], + "pid": "169621820", + "type": "bf:Place", + "variant_access_point": [ + "Bah\u0101valp\u016br (Pakistan)", + "\u0628\u06be\u0627\u0648\u0644\u067e\u0648\u0631 (Pakistan)" + ], + "md5": "4d9b442c9d4378fe9dc7dec3f0e9e3a9" + }, + { + "authorized_access_point": "Nonglard (Haute-Savoie)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/171128362", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16529740m", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/254854254" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Nonglard" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dictionnaire des communes, 2002" + ] + } + ], + "pid": "171128362", + "type": "bf:Place", + "md5": "a8fff6186c8d8a909607a28a8b9e4287" + }, + { + "authorized_access_point": "Zhanjiang (Chine)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "915", + "name": "G\u00e9ographie du reste du monde" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/175270147", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb167267480", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/113144647643872637671" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/4147150749007416420001" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Ci hai, 1999" + ] + }, + { + "noteType": "general", + "label": [ + "Ville situ\u00e9e \u00e0 l'extr\u00e9mit\u00e9 occidentale de la province du Guangdong. Concession fran\u00e7aise sous le nom de Fort-Bayard de 1899 \u00e0 1945", + "N 21\u00b016\u203253\u2033 / E 110\u00b020\u203234\u2033" + ] + } + ], + "pid": "175270147", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Guangdong (Chine ; province)" + } + ], + "relation_pid": { + "value": "203905040", + "type": "redirect_from" + }, + "variant_access_point": [ + "Chan kiang (Chine)", + "Fort Bayard (Chine)", + "Kwang chou wan (Chine)", + "Tsan kiang (Chine)", + "Zhan jiang (Chine)", + "Zhan jiang shi (Chine)", + "Kwangchowwan", + "\u6e5b\u6c5f\u5e02", + "Zhanjiang shi" + ], + "md5": "1e9890221a1a2502acffe369309f75c5" + }, + { + "authorized_access_point": "Bah\u0101walpur (Pakistan ; Division)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/176470875", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/156004112" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Bah\u0101valp\u016br : \u1e35\u1e96vush\u1e25\u0101l riy\u0101sat se pasm\u0101ndah \u1e0div\u012bzhan tak / Muj\u0101hid \u1e24usain, 2011", + "Bernard Desnous. BULAC. T\u00e9l. 01 81 69 18 24. Courriel : bernard.desnouesbulac.fr" + ] + }, + { + "noteType": "general", + "label": [ + "Chef-lieu de l'administration territoriale du m\u00eame nom" + ] + } + ], + "pid": "176470875", + "type": "bf:Place", + "variant_access_point": [ + "Bah\u0101valp\u016br (Pakistan ; Division)", + "\u0628\u06be\u0627\u0648\u0644\u067e\u0648\u0631 (Pakistan ; Division)" + ], + "md5": "9178416ab70790efbed8a36f3fb5cda5" + }, + { + "authorized_access_point": "Arolla (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/177159855", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15284200c", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/169947327" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)962615161" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Carte nationale de la Suisse 1:50 000. feuille 283. Arolla. Grand Combin - Lac des Dix - Matterhorn [Document cartographique] / Office f\u00e9d\u00e9ral de topographie swisstopo, 2013" + ] + }, + { + "noteType": "general", + "label": [ + "Village de montagne du canton du Valais", + "Coordonn\u00e9es g\u00e9ographiques : E 7\u00b029' / N 46\u00b01'31\"" + ] + } + ], + "pid": "177159855", + "type": "bf:Place", + "md5": "47b7f16f5882c0b0211b44b9f5aaf8ac" + }, + { + "authorized_access_point": "Machilly (Haute-Savoie)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/177517506", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/316739960" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Machilly" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "R\u00e9sistance entre Voirons et fronti\u00e8re : Machilly 1938-1947 / Simone et Robert Amoudruz, impr. 2013" + ] + } + ], + "pid": "177517506", + "type": "bf:Place", + "md5": "ab7ab609c44d06795a0cb7542c4b608e" + }, + { + "authorized_access_point": "Sanc\u00e9 (Sa\u00f4ne-et-Loire)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/177835893", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb13167493m", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/238768969" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Sanc\u00e9_(Sa\u00f4ne-et-Loire)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1992" + ] + } + ], + "pid": "177835893", + "type": "bf:Place", + "md5": "ceab94a213a808349a0e8e25af4cd92c" + }, + { + "authorized_access_point": "Al-Daw\u1e25a (Qatar)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "915", + "name": "G\u00e9ographie du reste du monde" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/178091219", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11962996x", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/136649381" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Doha" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Grand Larousse universel : Daw\u1e25a (al-) ou Doha (al-)", + "Atlas Le Monde : Ad Daw\u1e25a" + ] + }, + { + "noteType": "general", + "label": [ + "Capitale du Qatar" + ] + } + ], + "pid": "178091219", + "type": "bf:Place", + "variant_access_point": [ + "Ad Daw\u1e25a (Qatar)", + "Al-Doha (Qatar)", + "Daw\u1e25a, Al (Qatar)", + "Doha (Qatar)" + ], + "md5": "e75c42e040e52d51f1782d925c4425dc" + }, + { + "authorized_access_point": "Vaux-en-Bugey (Ain)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/178635863", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/146557727" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Vaux-en-Bugey" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Dictionnaire des communes, 2002" + ] + } + ], + "pid": "178635863", + "type": "bf:Place", + "md5": "a2013eb1788971339f54c8d41d246806" + }, + { + "authorized_access_point": "Pully (Suisse)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914", + "name": "G\u00e9ographie de l'Europe" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/18055686X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15858450v", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/157246276" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Pully" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Atlas universel Le Monde, 1989" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton de Vaud, sur la rive nord du lac L\u00e9man, toute proche de Lausanne" + ] + } + ], + "pid": "18055686X", + "type": "bf:Place", + "md5": "295397123acd7681eae57a685a4c6d12" + }, + { + "authorized_access_point": "La Roche-sur-Foron (Haute-Savoie)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/183926943", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15868881f", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/133728351" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/La_Roche-sur-Foron" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Notice n\u00b0 : FRBNF15274480. Adresse:http://catalogue.bnf.fr/ark:/12148/cb152744806/PUBLIC", + "La Roche-sur-Foron: 74800: voies de communication / [r\u00e9alis\u00e9 et publi\u00e9 par]Editions P.P.P., 1982" + ] + }, + { + "noteType": "general", + "label": [ + "Coordonn\u00e9es g\u00e9ographiques : E 6\u00b018'40\" / N 46\u00b03'56\"" + ] + } + ], + "pid": "183926943", + "type": "bf:Place", + "md5": "884443aedc90820fc685e845a455b8ab" + }, + { + "authorized_access_point": "Podgorica (Mont\u00e9n\u00e9gro)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/184504872", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15205350s", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/127589542" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Podgorica" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia (2015-03-24)" + ] + }, + { + "noteType": "general", + "label": [ + "Podgorica est la capitale du Mont\u00e9n\u00e9gro ainsi que sa plus grande ville", + "N 42\u00b0 26\u2032 28\u2033 / E 19\u00b0 15\u2032 49\u2033" + ] + } + ], + "pid": "184504872", + "type": "bf:Place", + "variant_access_point": [ + "\u041f\u043e\u0434\u0433\u043e\u0440\u0438\u0446\u0430", + "Titograd" + ], + "md5": "035eb50c9bb35386f9e1235a1146be11" + }, + { + "authorized_access_point": "Neuville-les-Dames (Ain)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "912", + "name": "G\u00e9ographie de la France" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/185130348", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15049047h", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/236148481" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Neuville-les-Dames" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 2001" + ] + } + ], + "pid": "185130348", + "type": "bf:Place", + "md5": "3807ec0aacfcd90de97a7d839dc2e30f" + }, + { + "authorized_access_point": "R\u00e9gny (Loire)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/185838235", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12016494c", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/244320617" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/R\u00e9gny" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1984" + ] + } + ], + "pid": "185838235", + "type": "bf:Place", + "md5": "9b5ad74290f2ef02a85bf26f2e01aa64" + }, + { + "authorized_access_point": "Nassau (Bahamas)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/186257287", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/148911449" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Nassau_(Bahamas)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Historic Nassau / Gail Saunders and Donald Cartwright, 1979" + ] + }, + { + "noteType": "general", + "label": [ + "Capitale des Bahamas" + ] + } + ], + "pid": "186257287", + "type": "bf:Place", + "md5": "e9f989ddcb1921ac43288c77596cbc32" + }, + { + "authorized_access_point": "Jiangsu (Chine ; province)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/188234837", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/3997148574310724430001" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GeoNames (2015-09-15)" + ] + }, + { + "noteType": "general", + "label": [ + "Province chinoise", + "N 33\u00b000\u203200\u2033 / E 119\u00b050\u203200\u2033" + ] + } + ], + "pid": "188234837", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Chine - Provinces" + } + ], + "variant_access_point": [ + "\u6c5f\u8607\u7701", + "\u6c5f\u82cf\u7701", + "Jiangsu Sheng" + ], + "md5": "84059c39b22a9bd927556548dddabf8f" + }, + { + "authorized_access_point": "Tarentaise (Savoie)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "912", + "name": "G\u00e9ographie de la France" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/190533889", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119334934", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/278144783073895221354" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Vall\u00e9e_de_la_Tarentaise" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Grand Larousse universel", + "Robert encyclop\u00e9dique des noms propres, 2008", + "Dict. de g\u00e9ographie historique de la Gaule et de la France / J. Moreau, 1972", + "Tr\u00e9sor des r\u00e9gions - http://tresordesregions.mgm.fr (2008-12-16)" + ] + }, + { + "noteType": "general", + "label": [ + "Vall\u00e9e haute de l'Is\u00e8re (en amont d'Albertville), et r\u00e9gion de Savoie autour de cette vall\u00e9e, qui a constitu\u00e9 une province de l'ancienne Savoie" + ] + } + ], + "pid": "190533889", + "type": "bf:Place", + "variant_access_point": [ + "Is\u00e8re, Vall\u00e9e haute de l' (Savoie)" + ], + "md5": "fdcf6ed2dc347afb06394a84bf288f39" + }, + { + "authorized_access_point": "Rome (Italie) - Chiesa di Santa Caterina", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "720", + "name": "Architecture" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914", + "name": "G\u00e9ographie de l'Europe" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/192765531", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "S. Bernardo alle Terme e le distrutte chiese di S. Ciriaco e S. Caterina in Thermis / Sergio Ortolani, vers 1923" + ] + }, + { + "noteType": "general", + "label": [ + "Adresse : Via Giulia. L'\u00e9difice appartient \u00e0 l'archiconfr\u00e9rie de Sienne depuis sa fondation en 1526. L'\u00e9difice fut enti\u00e8rement reconstruit entre 1766 et 1775" + ] + } + ], + "pid": "192765531", + "type": "bf:Place", + "variant_access_point": [ + "Chiesa di Santa Caterina (Rome, Italie)", + "Chiesa di Santa Caterina in Thermis (Rome, Italie)", + "Rome (Italie) - \u00c9glise Sainte-Catherine", + "\u00c9glise Sainte-Catherine (Rome, Italie)", + "Santa Caterina (Rome, Italie)" + ], + "md5": "b2f09f62b8218510d853ad9b370eb372" + }, + { + "authorized_access_point": "Vall\u00e9e des Rois (\u00c9gypte ; site arch\u00e9ologique) - Tombe de Toutankhamon", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "720", + "name": "Architecture" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "915" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "930", + "name": "Pr\u00e9histoire et histoire ancienne" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/193304767", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb17046157n", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1165082802" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "LC online cat., 2023-10-05 : Tutankhamen, King of Egypt -- Tomb", + "Guides bleus : \u00c9gypte, 1990", + "Chronique de l'\u00c9gypte ancienne / M. Dessoudeix, 2008", + "Encycl. of the archaeology of ancient Egypt / K. A. Bard, 1999 (art. : Thebes, Valley of the Kings)", + "The complete Valley of the Kings / N. Reeves, R. H. Wilkinson, 1997", + "Antikforever : les n\u00e9cropoles : la vall\u00e9e des Rois - http://antikforever.com/Egypte/Tombes/vallees_rois.htm (2016-05-13)", + "Topographical bibliography of ancient Egyptian hieroglyphic texts, reliefs, and paintings, 1.2 The Theban necropolis : Royal tombs and smaller cemeteries / B. Porter, R. L. B. Moss, 1964 (p. 569-586) : Tut\u02bfankham\u016bn' - http://www.griffith.ox.ac.uk/topbib/pdf/pm1-2.pdf (2016-05-13)" + ] + }, + { + "noteType": "general", + "label": [ + "Tombeau d\u00e9couvert le 4 novembre 1922 par Howard Carter, contenant, inviol\u00e9s, le tr\u00e9sor et la momie du pharaon" + ] + } + ], + "pid": "193304767", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Vall\u00e9e des Rois (\u00c9gypte ; site arch\u00e9ologique)" + } + ], + "variant_access_point": [ + "Th\u00e8bes (ville ancienne) - Tombe KV62", + "Tombe de Toutankhamon (Vall\u00e9e des Rois, \u00c9gypte)", + "Tombe KV62 (Vall\u00e9e des Rois, \u00c9gypte)", + "Tombeau de Toutankhamon (Vall\u00e9e des Rois, \u00c9gypte)", + "Vall\u00e9e des Rois (\u00c9gypte ; site arch\u00e9ologique) - Tombe KV62" + ], + "md5": "601912494d1b291508ff4be49d669855" + }, + { + "authorized_access_point": "Saint-Just-la-Pendue (Loire)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/193589370", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11987537x", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/141509173" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Saint-Just-la-Pendue" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Web, https://fr.wikipedia.org/wiki/Saint-Just-la-Pendue (2016-06-07)" + ] + }, + { + "noteType": "general", + "label": [ + "E 4\u00b014'38\" / N 45\u00b053'42\"" + ] + } + ], + "pid": "193589370", + "type": "bf:Place", + "md5": "aea64a4507801855ba1d3a05a69bf17b" + }, + { + "authorized_access_point": "Saint-Sorlin-en-Bugey (Ain)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/194382206", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb161556451", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/25144648229821282355" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Saint-Sorlin-en-Bugey" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.insee.fr/fr/methodes/nomenclatures/cog/, 2016-07-19", + "http://www.geonames.org/, 2016-07-19" + ] + } + ], + "pid": "194382206", + "type": "bf:Place", + "md5": "34a498307c7c5e968457f81445ecf5be" + }, + { + "authorized_access_point": "Strasbourg (Bas-Rhin ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/196449103", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/3060148574347924430005" + } + ], + "pid": "196449103", + "type": "bf:Place", + "variant_access_point": [ + "Argentoratum (ville ancienne ; r\u00e9gion)", + "Strasbourg", + "Strassburg (Bas-Rhin ; r\u00e9gion)" + ], + "md5": "25f9da156eb6a23614d3d93acdd1fc87" + }, + { + "authorized_access_point": "Saint-Gothard, massif du (Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/197647235", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/287148570783524312836" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040938174" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Das St. Gotthardgebirge mit einer geologischen Karte und 4 tafeln / von Karl von Fritsch, J. Dalp, 1873", + "https://fr.wikipedia.org/wiki/Massif_du_Saint-Gothard, 2024-06-27", + "http://www.geonames.org/search.html?q=Gotthard&country=CH, 2017-01-16" + ] + }, + { + "noteType": "general", + "label": [ + "Le massif du Saint-Gothard est une r\u00e9gion montagneuse situ\u00e9e dans la cha\u00eene des Alpes, en Suisse, \u00e0 la fronti\u00e8re de quatre cantons suisses : le Valais, le Tessin, Uri et les Grisons" + ] + } + ], + "pid": "197647235", + "type": "bf:Place", + "variant_access_point": [ + "Sankt Gotthardgebirge (Suisse)", + "Gotthardmassiv (Suisse)", + "San Gottardo, massiccio del (Suisse)" + ], + "md5": "3360e0e59425a4fe6cfac0879873f4ed" + }, + { + "authorized_access_point": "Chablais (Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/197699855", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/124148570784924312981" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)950051233" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Description g\u00e9ologique des pr\u00e9alpes du canton de Vaud et du Chablais jusqu'\u00e0 la Dranse et de la cha\u00eene des dents du Midi / par Ernest Favre et Hans Schardt, 1887", + "https://fr.wikipedia.org/wiki/Chablais,2017-01-18" + ] + }, + { + "noteType": "general", + "label": [ + "R\u00e9gion situ\u00e9e \u00e0 l\u2019extr\u00e9mit\u00e9 vaudoise et valaisanne du L\u00e9man, en aval de la haute vall\u00e9e du Rh\u00f4ne" + ] + } + ], + "pid": "197699855", + "type": "bf:Place", + "md5": "0335a8570872b7f7cc3a81adf927fa5d" + }, + { + "authorized_access_point": "Soucieu-en-Jarrest (Rh\u00f4ne)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/19787133X", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11933489w", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/134869146" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Soucieu-en-Jarrest" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1984" + ] + } + ], + "pid": "19787133X", + "type": "bf:Place", + "variant_access_point": [ + "Soucieu-en-Jarez (Rh\u00f4ne)" + ], + "md5": "622a0acad5f687deb6f449e663d42702" + }, + { + "authorized_access_point": "Auvergne-Rh\u00f4ne-Alpes (France)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "912", + "name": "G\u00e9ographie de la France" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/198026072", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb17023163f", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/729145857886323020755" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Auvergne-Rh\u00f4ne-Alpes" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "La R\u00e9gion Auvergne-Rh\u00f4ne-Alpes - http://www.auvergnerhonealpes.fr (2016-11-14)", + "D\u00e9cret n\u00b0 2016-1266 du 28 septembre 2016 portant fixation du nom et du chef-lieu de la r\u00e9gion Auvergne-Rh\u00f4ne-Alpes (JO du 29) - https://www.legifrance.gouv.fr (2016-11-14)" + ] + }, + { + "noteType": "general", + "label": [ + "R\u00e9gion administrative de la France comprenant 12 d\u00e9partements : Ain, Allier, Ard\u00e8che, Cantal, Dr\u00f4me, Haute-Loire, Haute-Savoie, Is\u00e8re, Loire, Puy-de-D\u00f4me, Rh\u00f4ne et Savoie (chef-lieu : Lyon), cr\u00e9\u00e9e le 1er janvier 2016 par la fusion des r\u00e9gions Auvergne et Rh\u00f4ne-Alpes (le nom est adopt\u00e9 par le Conseil r\u00e9gional le 23 juin 2016)" + ] + } + ], + "pid": "198026072", + "type": "bf:Place", + "variant_access_point": [ + "Auvergne-Rh\u00f4ne-Alpes", + "R\u00e9gion Auvergne-Rh\u00f4ne-Alpes (France)" + ], + "md5": "6598e7e90556b7c92fe758e5fe36538f" + }, + { + "authorized_access_point": "Lo\u00e8che-les-Bains (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/198231288", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040995623" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/144250507" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Lo\u00e8che-les-Bains" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Note sur la G\u00e9ologie des environs de Lou\u00e8che-les-Bains / par le Dr Phil. de La Harpe, 1877" + ] + } + ], + "pid": "198231288", + "type": "bf:Place", + "variant_access_point": [ + "Lou\u00e8che-les-Bains (Valais, Suisse)", + "Leukerbad (Valais, Suisse)" + ], + "md5": "7131417f6d704874413934fd32825307" + }, + { + "authorized_access_point": "Berlin (Allemagne) - Mur de Berlin", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "690", + "name": "Construction" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "940", + "name": "Histoire de l'Europe" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/198239386", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb119380937", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040948374" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Mourre", + "Brockhaus, 19. Aufl", + "Berliner Mauer ; SWD, 1995-04", + "Mur de Berlin ; Laval RVM, 2001-07" + ] + }, + { + "noteType": "general", + "label": [ + "Mur de 45 km s\u00e9parant Berlin-Ouest du territoire de la RDA, \u00e9rig\u00e9 par les autorit\u00e9s est-allemandes dans la nuit du 13 ao\u00fbt 1961. - Son ouverture le 9 novembre 1989 pr\u00e9luda \u00e0 l'unification des deux Allemagne" + ] + } + ], + "pid": "198239386", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Berlin (Allemagne) - 1989 (Chute du Mur)" + } + ], + "broader": [ + { + "authorized_access_point": "Rideau de fer (fronti\u00e8re)" + }, + { + "authorized_access_point": "Berlin (Allemagne) - 1945-1990" + } + ], + "relation_pid": { + "value": "084361409", + "type": "redirect_from" + }, + "variant_access_point": [ + "Berlin (Allemagne) - Mauer", + "Berlin (Allemagne) - Berliner Mauer", + "Berlin, Mur de (1961-1989)", + "Berliner Mauer (1961-1989)", + "Mur de Berlin" + ], + "md5": "119c55c1578d2cdc7351505d8cc1e81b" + }, + { + "authorized_access_point": "Finhaut (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/201852845", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/219150565656806251127" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)942312023" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Tourisme, mobilit\u00e9 et d\u00e9veloppement r\u00e9gional dans les Alpes suisses / Delphine Gueux. 2016", + "wikipedia.org, 2017-06-17" + ] + } + ], + "pid": "201852845", + "type": "bf:Place", + "md5": "942750209221e0cb92d5c79d8fd3fbf1" + }, + { + "authorized_access_point": "Montrond-les-Bains (Loire)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/203060571", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb131210592", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/304890312" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Montrond-les-Bains" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dictionnaire des communes, 2002" + ] + } + ], + "pid": "203060571", + "type": "bf:Place", + "md5": "ed05ef6cf83c7075a9dff44a1665af97" + }, + { + "authorized_access_point": "Les Houches (Haute-Savoie ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/203376552", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12509599r", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/147176499" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Les_Houches" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GeoNames (2017-07-26)" + ] + }, + { + "noteType": "general", + "label": [ + "Les Houches sont une commune fran\u00e7aise situ\u00e9e dans le d\u00e9partement de la Haute-Savoie, en r\u00e9gion Auvergne-Rh\u00f4ne-Alpes. La commune des Houches est situ\u00e9e dans la vall\u00e9e de l'Arve, non loin de la commune de Chamonix, au pied du mont Blanc. \u00c9tendue sur pr\u00e8s de 5 000 hectares, de 850 m \u00e0 4 304 m (sommet du d\u00f4me du Go\u00fbter), la commune comprend de nombreux hameaux.", + "N 45\u00b053\u203224\u2033 / E 6\u00b047\u203246\u2033" + ] + } + ], + "pid": "203376552", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Haute-Savoie (France)" + } + ], + "variant_access_point": [ + "Houches" + ], + "md5": "3661e9cb16e1069e51179aec0483b4b3" + }, + { + "authorized_access_point": "H\u00e9r\u00e9mence (Valais, Suisse) - Pyramides d'Euseigne", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914", + "name": "G\u00e9ographie de l'Europe" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/204299276", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb17150260r", + "source": "BNF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Atlas universel / \"Le Monde\", S\u00e9lection du \"Reader's digest\", 1989", + "Dict. historique de la Suisse - http://www.hls-dhs-hss.ch (2014-02-20)", + "Heremence.ch - http://www.heremence.ch (2014-02-20)", + "Office national suisse du tourisme - https://www.myswitzerland.com/fr-fr/pyramides-d-euseigne.html (2017-09-13)" + ] + }, + { + "noteType": "general", + "label": [ + "Curiosit\u00e9 g\u00e9ologique, dite aussi hoodoo, demoiselles coiff\u00e9es, colonne de roche friable surmont\u00e9e, coiff\u00e9e d'un socle en roche r\u00e9sistant, situ\u00e9e \u00e0 l'entr\u00e9e du village d'Euseigne situ\u00e9e sur la commune d'H\u00e9r\u00e9mence, Canton du Valais" + ] + } + ], + "pid": "204299276", + "type": "bf:Place", + "variant_access_point": [ + "Chemin\u00e9es de f\u00e9es (H\u00e9r\u00e9mence, Valais, Suisse)", + "Pyramides d'Euseigne (H\u00e9r\u00e9mence, Valais, Suisse)" + ], + "md5": "80f631dbbf7dd4d74709f2004a1f05a4" + }, + { + "authorized_access_point": "Betsiboka (Madagascar, r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/219922608", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/2245152865647904940008" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia (2011-11-03)" + ] + }, + { + "noteType": "general", + "label": [ + "Betsiboka est l'une des vingt-deux r\u00e9gions de Madagascar. Elle est situ\u00e9e dans la province de Majunga, dans l'ouest de l'\u00eele", + "S 16\u00b057\u203200\u2033 / E 46\u00b049\u203248\u2033" + ] + } + ], + "pid": "219922608", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Madagascar" + } + ], + "md5": "556f1075a1c84f09cced3a060957c046" + }, + { + "authorized_access_point": "Boeny (Madagascar)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/219924074", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb171412498", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/5150202060003111021" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia (2011-11-03)" + ] + }, + { + "noteType": "general", + "label": [ + "Boeny est l'une des vingt-deux r\u00e9gions de Madagascar. Elle est situ\u00e9e dans la province de Mahajanga, dans l'ouest de l'\u00eele.", + "S 15\u00b043\u203212\u2033 / E 46\u00b019\u203212\u2033" + ] + } + ], + "pid": "219924074", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Madagascar" + } + ], + "md5": "9fa3627c10af7c26e9c09d55e10ac1ab" + }, + { + "authorized_access_point": "Sava (Madagascar, r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/219925283", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/6233151304668549460009" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia (2011-11-03)" + ] + }, + { + "noteType": "general", + "label": [ + "La Sava est l'une des vingt-deux r\u00e9gions de Madagascar, dont le nom est un acronyme form\u00e9 \u00e0 partir de ceux de ses quatre districts : Sambava, Antalaha, Vohemar et Andapa. Situ\u00e9e dans la partie du nord-est de l'\u00eele, elle appartient \u00e0 la province de Diego-Suarez. Sa capitale est Sambava", + "S 14\u00b016\u203212\u2033 / E 50\u00b010\u203212\u2033" + ] + } + ], + "pid": "219925283", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Madagascar" + } + ], + "md5": "c017c22eb1fa177b552fe6f249d83882" + }, + { + "authorized_access_point": "Analamanga (Madagascar ; r\u00e9gion administrative)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/22395294X", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/905152080581907230007" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GeoNames (2018-02-01)" + ] + }, + { + "noteType": "general", + "label": [ + "Analamanga est l'une des vingt-deux r\u00e9gions de Madagascar. Elle est situ\u00e9e dans la Province d'Antananarivo, dans le centre de l'\u00eele.", + "S 18\u00b056\u203224\u2033 / E 47\u00b031\u203212\u2033" + ] + } + ], + "pid": "22395294X", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Madagascar" + } + ], + "md5": "ffc58164362384296da7671c0bfc997a" + }, + { + "authorized_access_point": "Diana (Madagascar ; r\u00e9gion administrative)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/223976369", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/345149196398874790984" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GeoNames (2018-02-01)" + ] + }, + { + "noteType": "general", + "label": [ + "Diana (de Diego I & II - Ambilobe - Nosy Be - Ambanja qui sont les districts constituant la r\u00e9gion) est l'une des vingt-deux r\u00e9gions de Madagascar, situ\u00e9e dans la province de Diego-Suarez, dans le nord de l'\u00eele.", + "S 13\u00b030\u203200\u2033 / E 49\u00b000\u203200\u2033" + ] + } + ], + "pid": "223976369", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Madagascar" + } + ], + "variant_access_point": [ + "R\u00e9gion Diana" + ], + "md5": "1ab8cbf61e396f2514d448f37a9b6563" + }, + { + "authorized_access_point": "Atsinanana (Madagascar ; r\u00e9gion administrative)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/223979171", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/6215152080604607230004" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GeoNames (2018-02-02)" + ] + }, + { + "noteType": "general", + "label": [ + "L'Atsinanana (Est) est une des vingt-deux r\u00e9gions de Madagascar. Elle est situ\u00e9e dans la province de Tamatave, dans l'Est de l'\u00eele", + "S 19\u00b000\u203200\u2033 / E 48\u00b054\u203200\u2033" + ] + } + ], + "pid": "223979171", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Madagascar" + } + ], + "md5": "8e97b0d14cc29bfd55b969ed302c4b0d" + }, + { + "authorized_access_point": "Sofia (Madagascar ; r\u00e9gion administrative)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/224235893", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/3351152080592507230005" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GeoNames (2018-02-13)" + ] + }, + { + "noteType": "general", + "label": [ + "Sofia est l'une des vingt-deux r\u00e9gions de Madagascar, nomm\u00e9e d'apr\u00e8s le nom d'un fleuve. Elle est situ\u00e9e dans la province de Majunga (ou Mahajanga) et son chef-lieu est Antsohihy", + "S 14\u00b052\u203247\u2033 / E 47\u00b059\u203215\u2033" + ] + } + ], + "pid": "224235893", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Madagascar" + } + ], + "variant_access_point": [ + "Sofia (r\u00e9gion)" + ], + "md5": "5e3737c813f0e7ec9036c319107c5622" + }, + { + "authorized_access_point": "Moundou (Tchad )", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/225651289", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/126787513" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Moundou" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GeoNames (2018-03-13)", + "wikipedia.org, 2018-04-04" + ] + }, + { + "noteType": "general", + "label": [ + "Moundou est la seconde ville du Tchad et la capitale \u00e9conomique du sud tchadien. Chef-lieu de la r\u00e9gion du Logone Occidental et du d\u00e9partement du Lac Wey" + ] + } + ], + "pid": "225651289", + "type": "bf:Place", + "variant_access_point": [ + "Mundu" + ], + "md5": "cd22324daf49b9c92b2cd190ccea7470" + }, + { + "authorized_access_point": "Fort Branch (Ind.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/226539962", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/148991886" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2018-05-02" + ] + } + ], + "pid": "226539962", + "type": "bf:Place", + "variant_access_point": [ + "Ft Branch" + ], + "md5": "5135ade3ee5903608a2ab829156c3938" + }, + { + "authorized_access_point": "Kansas River (Kan. ; cours d'eau)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/226556425", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/69152864114304821008" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://fr.wikipedia.org/wiki/Kansas_(rivi\u00e8re)/, 2024-07-10" + ] + }, + { + "noteType": "general", + "label": [ + "La rivi\u00e8re Kansas (connue localement sous le nom de Kaw), ou Kansas River, est une rivi\u00e8re du nord-est de l'\u00c9tat du Kansas, aux \u00c9tats-Unis" + ] + } + ], + "pid": "226556425", + "type": "bf:Place", + "md5": "9625ff0cc2cfb745ed8456522ab63d51" + }, + { + "authorized_access_point": "Garland (Kan.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/226664414", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/99152864133904821583" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2018-05-03" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Bourbon" + ] + } + ], + "pid": "226664414", + "type": "bf:Place", + "md5": "b7973488828bff5c99047dd00ca984ae" + }, + { + "authorized_access_point": "Neosho River (\u00c9tats-Unis. ; cours d'eau)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/226835391", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/126152864098304820720" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2018-05-09" + ] + }, + { + "noteType": "general", + "label": [ + "La Neosho est un cours d'eau et affluent de la rivi\u00e8re Arkansas dans les \u00c9tats am\u00e9ricains du Kansas et de l'Oklahoma" + ] + } + ], + "pid": "226835391", + "type": "bf:Place", + "md5": "5fcb18e8f3805022f3bef99b48f4b707" + }, + { + "authorized_access_point": "Cimarron River (\u00c9tats-Unis ; cours d'eau)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/226964558", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/145152864188104822007" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://en.wikipedia.org/wiki/Cimarron_River_(Arkansas_River_tributary)/, 2018-05-16" + ] + }, + { + "noteType": "general", + "label": [ + "La rivi\u00e8re Cimarron est un affluent de l'Arkansas dans le sud-ouest des \u00c9tats-Unis, donc un sous-affluent du Mississippi. Long de 1 123 km, elle coule \u00e0 travers quatre \u00c9tats : le Nouveau-Mexique, l'Oklahoma, le Colorado, et le Kansas" + ] + } + ], + "pid": "226964558", + "type": "bf:Place", + "md5": "0ee0ebae8761ddf29301ea02cd62631e" + }, + { + "authorized_access_point": "S\u00e9rilhac (Corr\u00e8ze)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/230294707", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/89153953219005560177" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1984" + ] + } + ], + "pid": "230294707", + "type": "bf:Place", + "md5": "01a8dcc56fbc6b182150feb9099ae297" + }, + { + "authorized_access_point": "Alexandrie (\u00c9gypte)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/231217161", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/1371151172692439210005" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040011380" + } + ], + "pid": "231217161", + "type": "bf:Place", + "md5": "06464119ea5037b9111d405e97751d9b" + }, + { + "authorized_access_point": "Pommiers (Loire)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/231498829", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/278471593" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Pommiers-en-Forez" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Pommiers-en-Forez / Denys Buenner, 1947" + ] + } + ], + "pid": "231498829", + "type": "bf:Place", + "variant_access_point": [ + "Pommiers-en-Forez" + ], + "md5": "7eb6c59dae29268611e965eafa1fa563" + }, + { + "authorized_access_point": "Chalain-le-Comtal (Loire)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/233055045", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/1106154983527467860006" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Chalain-le-Comtal" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Chalain-le-Comtal : un village de la Plaine, il y a 100 ans / d'apr\u00e8s les notes de l'abb\u00e9 No\u00ebl Valendru ; pr\u00e9sentation et notes: Marie Grange, Joseph Barou, 1995" + ] + } + ], + "pid": "233055045", + "type": "bf:Place", + "md5": "191e3fcaafb056751405a41b12fe913d" + }, + { + "authorized_access_point": "Pont-de-Veyle (Ain)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/237826763", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb121238030", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/243846589" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Pont-de-Veyle" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1984" + ] + } + ], + "pid": "237826763", + "type": "bf:Place", + "md5": "5c1ded802540b15ca4734fc0c8cfd77f" + }, + { + "authorized_access_point": "Saint-Jean-de-Sixt (Haute-Savoie)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/242868851", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/4735159248350804870000" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Saint-Jean-de-Sixt" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1984" + ] + } + ], + "pid": "242868851", + "type": "bf:Place", + "md5": "0c0d0bce5d44d258683d1c6d7efcb9ec" + }, + { + "authorized_access_point": "Zhejiang", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/250173565", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15040156k", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/239458535" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://fr.wikipedia.org/wiki/Zhejiang, 2020-11-05" + ] + }, + { + "noteType": "general", + "label": [ + "Province sud de Shanghai (Chine)" + ] + } + ], + "pid": "250173565", + "type": "bf:Place", + "variant_access_point": [ + "Tch\u00e9-Kiang", + "\u6d59", + "\u6d59\u6c5f", + "Tch\u00e9kiang" + ], + "md5": "afdd1add6d0f0a017cb33d40f93751e4" + }, + { + "authorized_access_point": "Suisse (centre)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/250748533", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/131160789752202681728" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040794903" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Karton : Architektur im Alltag der Zentralschweiz / Redaktion Gerold Kunz, 2004-" + ] + }, + { + "noteType": "general", + "label": [ + "Correspond aux cantons de Lucerne, Nidwald, Obwald, Schwytz, Uri et Zoug" + ] + } + ], + "pid": "250748533", + "type": "bf:Place", + "variant_access_point": [ + "Zentralschweiz", + "Suisse centrale" + ], + "md5": "04db2c2363c7162f3bbc176b6fc8c5e0" + }, + { + "authorized_access_point": "Conches, Vall\u00e9e de (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/253709520", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/82161511999070560407" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04021592X" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Proc\u00e8s de sorcellerie dans la vall\u00e9e de Conches (1466-1467) et chasses aux sorciers et sorci\u00e8res en Valais au XVe si\u00e8cle = Hexenprozesse im Goms (166-1467) und Hexenverfolgungen im Wallis im 15 Jahrhundert : Kurzfassung / Chantal Amman-Doubliez ; \u00fcbersetzt von Curdin Ebneter ; mit einer \u00dcbersetzung der lateinischen Hexenprozessakten von Biel VS (1466-167) von Hans-Robert Ammann und Josef Sarbach, 2020.", + "https://fr.wikipedia.org/wiki/Vall%C3%A9e_de_Conches, 2021-02-22" + ] + }, + { + "noteType": "general", + "label": [ + "La vall\u00e9e de Conches (Goms ou Gommertal en allemand) est une vall\u00e9e suisse situ\u00e9e \u00e0 cheval sur le demi-district de Rarogne oriental et le district de Conches en Valais." + ] + } + ], + "pid": "253709520", + "type": "bf:Place", + "variant_access_point": [ + "Goms, Vall\u00e9e de (Valais, Suisse)", + "Gommertal (Valais, Suisse)" + ], + "md5": "5a10ab48f9d9b49fe45d691d87f508e0" + }, + { + "authorized_access_point": "Guin (Fribourg, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/253865727", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/141295369" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Guin" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dachziegel der freiburgischen Ziegeleien D\u00fcdingen, Le Mouret und Corbi\u00e8res : chemische, geologische und historische Aspekte / Marino Maggetti und Giulio Galetti. In: Bulletin de la Soci\u00e9t\u00e9 fribourgeoise des sciences naturelles = Bulletin der Naturforschenden Gesellschaft Freiburg, 2020", + "Conf\u00e9d\u00e9ration suisse, Office f\u00e9d\u00e9ral de la statistiques, page 'Noms de communes dont la traduction est usuelle', https://www.bfs.admin.ch/bfs/fr/home/bases-statistiques/repertoire-officiel-communes-suisse/noms-communes-traduction-usuelle.html, 2024-03-06", + "https://hls-dhs-dss.ch/fr/articles/046549, 2021-03-01" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton de Fribourg (Suisse). Nom allemand : D\u00fcdingen" + ] + } + ], + "pid": "253865727", + "type": "bf:Place", + "md5": "f686915fcd64b1c01102ed1df1471a2d" + }, + { + "authorized_access_point": "La Balme-de-Sillingy (Haute-Savoie)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/254939422", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12125106k", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/131548127" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/La_Balme-de-Sillingy" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 1984" + ] + } + ], + "pid": "254939422", + "type": "bf:Place", + "variant_access_point": [ + "Balme-de-Sillingy, La (Haute-Savoie)" + ], + "md5": "f734484734464a9b442e7b0c811e0cb9" + }, + { + "authorized_access_point": "Bardonnex (Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/255076592", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/234694698" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Bardonnex" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dictionnaire historique de la Suisse (DHS) - https://hls-dhs-dss.ch/fr/articles/002887/2014-06-24/, 2021-04-29", + "Compesi\u00e8res, Landecy, Charrot, Bardonnex, Croix-de-Rozon : histoire et v\u00e9cu d'une commune : Commune de Bardonnex / Eric Golay, Dominique Zumkeller ; Commune de Bardonnex, 2007" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton de Gen\u00e8ve issue de la division, en 1851, de la commune de Compesi\u00e8res en deux entit\u00e9s, Bardonnex et Plan-les-Ouates" + ] + } + ], + "pid": "255076592", + "type": "bf:Place", + "md5": "874ab0c509222b8eb8705c79dfec809c" + }, + { + "authorized_access_point": "Ch\u00eane-Bougeries (Suisse) - Grange-Canal", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/25527999X", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Grange-Canal et Jean Jacques Rousseau / Louis Thomas, 1901", + "Commune de Ch\u00eane-Bougeries - https://chene-bougeries.ch/, 2021-05-11", + "DHS - https://hls-dhs-dss.ch/fr/articles/002894/2005-07-14/, 2021-05-10" + ] + } + ], + "pid": "25527999X", + "type": "bf:Place", + "md5": "52d4b49a92e09d88b5f8228f6b006a41" + }, + { + "authorized_access_point": "Les Brenets (Neuch\u00e2tel, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/256800375", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/133675509" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)959239103" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Les Brenets et sa vieille Eglise : \"500 ans d'une histoire commune\" / [r\u00e9d., conception David Favre, Pierre Del\u00e9glise], 2011", + "http://viaf.org/processed/SZ%7C959239103, 2021-08-09", + "https://hls-dhs-dss.ch/fr/articles/002840/2004-10-14, 2021-08-09", + "https://www.lelocle.ch/accueil-les-brenets, 2021-08-09" + ] + }, + { + "noteType": "general", + "label": [ + "Village de la commune du Locle dans le canton de Neuch\u00e2tel. Sur les bord du Doubs. Fusion de l'ancienne commune avec celle du Locle en janvier 2021." + ] + } + ], + "pid": "256800375", + "type": "bf:Place", + "md5": "0787eced143168e9ce8373f79855d251" + }, + { + "authorized_access_point": "Vernayaz (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/257056378", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb17879678q", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)94231199X" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/9159697710603312385" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. historique de la Suisse - http://www.hls-dhs-dss.ch (2020-07-03)", + "SCD de Poitiers, Fonds ancien, Manuscrits isol\u00e9s, MS 86, Herbier peint \u00e0 la gouache par Marie Corneille Saint-Marc, Calames http://www.calames.abes.fr/pub/ms/Calames-202171516757929351" + ] + }, + { + "noteType": "general", + "label": [ + "Ville du canton du Valais" + ] + } + ], + "pid": "257056378", + "type": "bf:Place", + "md5": "42ee7d35fc3b2ae2a0c8eacae5b75b9e" + }, + { + "authorized_access_point": "Parc national suisse (Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/257143025", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/148583304" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040539164" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Parc national suisse, sauvage et fascinant / Hans Lozza, 2021", + "https://www.nationalpark.ch/fr/about/a-propos-de-nous/particularites/, 2021-09-07" + ] + }, + { + "noteType": "general", + "label": [ + "Parc national de 170 km2 situ\u00e9 dans le canton des Grisons (Engadine et val M\u00fcstair) ; fond\u00e9 en 1914 ; unique parc national de Suisse" + ] + } + ], + "pid": "257143025", + "type": "bf:Place", + "variant_access_point": [ + "Parc natiunal svizzer (Suisse)", + "Parco nazionale svizzero (Suisse)", + "Schweizerische Nationalpark (Suisse)" + ], + "md5": "9bb637f36d0dad8cfa4b3c349e4d3988" + }, + { + "authorized_access_point": "M\u00f4tiers (Neuch\u00e2tel, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/257162895", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/109163408932100091569" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)941396754" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "M\u00f4tiers 2021 : art en plein air, 2021" + ] + }, + { + "noteType": "general", + "label": [ + "Localit\u00e9 suisse de la commune de Val-de-Travers. - Ancienne commune suisse du canton de Neuch\u00e2tel, situ\u00e9e dans la r\u00e9gion Val-de-Travers, qui a fusionn\u00e9 le 1er janvier 2009" + ] + } + ], + "pid": "257162895", + "type": "bf:Place", + "md5": "f91b19a42fc80355ce540b96c5901de0" + }, + { + "authorized_access_point": "Champex (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/257475117", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/179163408660000090306" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)960746404" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Stage de biog\u00e9ographie alpine, \u00e0 Champex, du 15 au 19 juillet 2000 / Beth Zaniewski, Cyrille Faure, [2000]" + ] + } + ], + "pid": "257475117", + "type": "bf:Place", + "variant_access_point": [ + "Champex-Lac (Valais, Suisse)" + ], + "md5": "a150675b1d742d86a92f10c6cde8698b" + }, + { + "authorized_access_point": "Fully (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/258360976", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/1377159474070127660711" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)942463633" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "La question sociale \u00e0 Fully / perception, d\u00e9finition et analyse de l'action sociale fuill\u00e9raine / Dominique Rast, 1995", + "DHS - https://hls-dhs-dss.ch/fr/articles/002729/2007-06-14/, 2021-11-09" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton du Valais" + ] + } + ], + "pid": "258360976", + "type": "bf:Place", + "md5": "30ce38b8f0f62dd63f3693979745ed81" + }, + { + "authorized_access_point": "Franches-Montagnes (Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/25887421X", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04259634" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://fr.wikipedia.org/wiki/District_des_Franches-Montagnes" + ] + }, + { + "noteType": "general", + "label": [ + "Suisse, canton de Jura" + ] + } + ], + "pid": "25887421X", + "type": "bf:Place", + "md5": "12510e656ac15b380b0ba55b4c329375" + }, + { + "authorized_access_point": "Vuisternens-devant-Romont (Fribourg, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/260281395", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/305971955" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Vuisternens-devant-Romont" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Un patrimoine religieux (d)\u00e9tonnant : les \"mortiers\" de la paroisse de Vuisternens-devant-Romont / par Aloys Lauper. In : Annales fribourgeoises, vol. 83 (2021)", + "Dictionnaire historique de la Suisse, https://hls-dhs-dss.ch/fr/articles/000890/2016-09-27, 2022-02-10" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton de Fribourg (Suisse), ayant fusionn\u00e9 en 2003 avec Est\u00e9venens, La Joux, La Magne, Les Ecasseys, Lieffrens, Sommentier et Villariaz, ainsi qu'avec La Neirigue en 2004" + ] + } + ], + "pid": "260281395", + "type": "bf:Place", + "md5": "6016f218ce8307e70daed5896b0ccf1f" + }, + { + "authorized_access_point": "Savi\u00e8se (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/260555088", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/1325159233919803370377" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041184556" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Savi\u00e8se / Delphine Debons ; avec des contributions de Emmanuel Reynard [et 5 autres], 2021", + "https://www.saviese.ch/fr/villages-hameaux-1644.html, 2022-02-23" + ] + }, + { + "noteType": "general", + "label": [ + "Commune situ\u00e9e dans le canton du Valais ; compos\u00e9e de 6 villages et de nombreux hameaux." + ] + } + ], + "pid": "260555088", + "type": "bf:Place", + "md5": "cb1e38d6699a3f08bad0b01bfa893442" + }, + { + "authorized_access_point": "Chasseral (Berne, Suisse ; mont)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/260905585", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/167164959833424021618" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040903435" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Skieuses et skieurs pr\u00e8s de Chasseral / Amez-Droz, Arthur, 1883-1962 (cr\u00e9ateur), 14 janvier 1917", + "Visualisation sur SITN- G\u00e9oportail du syst\u00e8me d'information du territoire neuch\u00e2telois https://sitn.ne.ch, 2022-03-10" + ] + } + ], + "pid": "260905585", + "type": "bf:Place", + "md5": "d27a9d24255b5076249a5e2cdc38993e" + }, + { + "authorized_access_point": "La Sagne (Neuch\u00e2tel, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/260966401", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/93164959497624020651" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)964991500" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "L'int\u00e9rieur du temple de La Sagne apr\u00e8s r\u00e9novation / Galley, Christian,, photographe (cr\u00e9ateur), 2001", + "Visualisation sur SITN- G\u00e9oportail du syst\u00e8me d'information du territoire neuch\u00e2telois https://sitn.ne.ch, 2022-03-14" + ] + } + ], + "pid": "260966401", + "type": "bf:Place", + "relation_pid": { + "value": "261065416", + "type": "redirect_from" + }, + "md5": "23fec1c5f491ec6cbe11cc06bdb3a79d" + }, + { + "authorized_access_point": "Saint-Imier (Berne, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/260996440", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/48144647641235584390" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": " (DE-101)949296880" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Georges Schneider lors de l'inauguration de son \"Imier labourant\" \u00e0 Saint-Imier / Buhler, Jean, 1919-2017 (cr\u00e9ateur), 1959" + ] + } + ], + "pid": "260996440", + "type": "bf:Place", + "md5": "aa18cf35371968d840faec5870a7c05e" + }, + { + "authorized_access_point": "Saint-L\u00e9onard (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/261121162", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/102164959931224022033" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)954696867" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Saint-L\u00e9onard de jadis et de nagu\u00e8re / Barth\u00e9l\u00e9my Gillioz, 2021", + "https://www.st-leonard.ch/index.php/en-bref, 2022-03-22" + ] + }, + { + "noteType": "general", + "label": [ + "Commune situ\u00e9e dans le canton du Valais" + ] + } + ], + "pid": "261121162", + "type": "bf:Place", + "md5": "52c89b35706e1d98b3ae5550621b272f" + }, + { + "authorized_access_point": "Le Locle (Neuch\u00e2tel, Suisse) - Grande-Rue", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/26138449X", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "La Grand-Rue au Locle / Amez-Droz, Arthur, 1883-1962 (cr\u00e9ateur), 1920", + "Visualisation sur SITN- G\u00e9oportail du syst\u00e8me d'information du territoire neuch\u00e2telois https://sitn.ne.ch, 2022-03-29" + ] + } + ], + "pid": "26138449X", + "type": "bf:Place", + "variant_access_point": [ + "Le Locle (Neuch\u00e2tel, Suisse) - Grand-Rue" + ], + "md5": "4760346bfea72964355aaa6072a566d9" + }, + { + "authorized_access_point": "Mund (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/26144722X", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/340164960096024022192" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)941147797" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "L'or de Mund / Rolf Jeitziner, Barbara Seiler, 2021", + "https://fr.wikipedia.org/wiki/Mund_(Valais), 2022-03-31" + ] + }, + { + "noteType": "general", + "label": [ + "Village situ\u00e9 dans le Haut-Valais" + ] + } + ], + "pid": "26144722X", + "type": "bf:Place", + "md5": "176ed92fffbad5edbc3ae9b0b0dc1d25" + }, + { + "authorized_access_point": "Combe des Enfers (Neuch\u00e2tel, Suisse ; combe)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/261527452", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Hameau du Verger et Combe des Enfers \u00e0 l'extr\u00e9mit\u00e9 est du Locle / Amez-Droz, Arthur, 1883-1962 (cr\u00e9ateur), Entre 1916 et 1919", + "Visualisation sur SITN- G\u00e9oportail du syst\u00e8me d'information du territoire neuch\u00e2telois https://sitn.ne.ch, 2022-04-01" + ] + } + ], + "pid": "261527452", + "type": "bf:Place", + "md5": "704d93e59004fda8b9e6c14148e04a9b" + }, + { + "authorized_access_point": "Sahiwal (Pakistan ; district)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/261762311", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/839165264609810191507" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Gazetteer of the Montgomery District (Sahiwal) 1883-84, 2012", + "Internet, https://authorities.loc.gov, 2022-04-12", + "Internet, https://wikipedia.org, 2022-04-12", + "Marine Defosse. BULAC. TEL. 01.81.69.18.81 M\u00e8l. marine.defossebulac.fr" + ] + }, + { + "noteType": "general", + "label": [ + "Le district de Sahiwal est une subdivision administrative de la province du Pendjab au Pakistan" + ] + } + ], + "pid": "261762311", + "type": "bf:Place", + "variant_access_point": [ + "\u0633\u0627\u06be\u06cc\u0648\u0627\u0644 (Pakistan ; district)", + "Sah\u012bv\u0101l (Pakistan ; district)", + "Montgomery (Pakistan ; district)" + ], + "md5": "6ef3ea73b6a2e254b577c414e1b7fa9a" + }, + { + "authorized_access_point": "Bourg-Saint-Pierre (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/261933841", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/158595722" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)958192014" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Bourg-Saint-Pierre" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Bourg-Saint-Pierre : souvenirs d'autrefois et images d'aujourd'hui / Louis Moret-Rausis, 1996", + "https://www.bourg-saint-pierre.ch/, 2022-04-21" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton du Valais et localit\u00e9 la plus \u00e9lev\u00e9e du district de l\u2019Entremont." + ] + } + ], + "pid": "261933841", + "type": "bf:Place", + "variant_access_point": [ + "Sankt Petersburg (Valais, Suisse)" + ], + "md5": "d0f7d9b7add5dd08bf3ef5b9ff16bc08" + }, + { + "authorized_access_point": "W\u00fcnnewil-Flamatt (Fribourg, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/262216744", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/93166001566975020277" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "W\u00fcnnewil-Flamatt - zwei D\u00f6rfer, eine Gemeinde : ein Portr\u00e4t, 2014", + "Dictionnaire historique de la Suisse, https://hls-dhs-dss.ch/fr/articles/001040/2013-11-26, 2022-05-05" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton de Fribourg (Suisse), district de la Singine, comprenant les villages de W\u00fcnnewil et Flamatt, ainsi que de nombreux hameaux" + ] + } + ], + "pid": "262216744", + "type": "bf:Place", + "md5": "2fd5db96c4165ebf0ea4d307a0ba7afc" + }, + { + "authorized_access_point": "Fleurier (Neuch\u00e2tel, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/262555697", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)941214095" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Vue panoramique de Fleurier et du Val-de-Travers / Chiffelle, Max-F., 19..-.... (cr\u00e9ateur), 1949", + "Visualisation sur SITN- G\u00e9oportail du syst\u00e8me d'information du territoire neuch\u00e2telois https://sitn.ne.ch, 2022-05-23" + ] + } + ], + "pid": "262555697", + "type": "bf:Place", + "md5": "f33239d88cfb4573b57af687ef65d57b" + }, + { + "authorized_access_point": "Fleurier (Neuch\u00e2tel, Suisse) - Rue du Temple", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/262557215", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Temple et maison rue du Temple 1 \u00e0 Fleurier / Charr\u00e8re, Jean-Jacques,, 1951 (cr\u00e9ateur), 1984", + "Visualisation sur SITN- G\u00e9oportail du syst\u00e8me d'information du territoire neuch\u00e2telois https://sitn.ne.ch, 2022-05-23" + ] + } + ], + "pid": "262557215", + "type": "bf:Place", + "md5": "acc72c2a91b21893cdbac8f94741ec5f" + }, + { + "authorized_access_point": "Cressier (Neuch\u00e2tel, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/262767619", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/64165747035353931293" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)954064593" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://hls-dhs-dss.ch/fr/articles/002848/2017-12-18/" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton de Neuch\u00e2tel (Suisse)" + ] + } + ], + "pid": "262767619", + "type": "bf:Place", + "md5": "2537444e49f98fe63abda2f5e5a75181" + }, + { + "authorized_access_point": "Chapelle (Gl\u00e2ne, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/262834162", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/6626155286653687180005" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Chapelle_(Gl\u00e2ne)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Le p'tit Chapelois, no 1(d\u00e9c. 1998)", + "Dictionnaire historique de la Suisse, https://hls-dhs-dss.ch/fr/articles/000850/2003-11-11, 2022-06-08" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton de Fribourg (Suisse), district de la Gl\u00e2ne. \u00c0 ne pas confondre avec l'ancienne commune fribourgeoise homonyme, dans le district de la Broye, partie de la commune de Cheiry de 2005 \u00e0 2020, puis de celle de Surpierre d\u00e8s 2021" + ] + } + ], + "pid": "262834162", + "type": "bf:Place", + "md5": "9edee3d222f8d2ef4c6b65672439f8cc" + }, + { + "authorized_access_point": "M\u00f4tiers (Neuch\u00e2tel, Suisse) - Temple", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/26298606X", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://fr.wikipedia.org/wiki/Temple_de_M%C3%B4tiers, 2022-06-15", + "Le temple de M\u00f4tiers-Boveresse : historique \u00e9dit\u00e9 \u00e0 l'occasion de la restauration / Courvoisier, Jean, 1922-2010 (cr\u00e9ateur);Bovet, Jacques,, 1921 (contributeur - collaborateur), 1961" + ] + }, + { + "noteType": "general", + "label": [ + "Instaur\u00e9e \u00e0 Neuch\u00e2tel en 1530, la R\u00e9forme va conduire \u00e0 la s\u00e9cularisation du prieur\u00e9 en 1537 et \u00e0 la transformation de l\u2019\u00e9glise Notre-Dame en temple protestant." + ] + } + ], + "pid": "26298606X", + "type": "bf:Place", + "variant_access_point": [ + "M\u00f4tiers (Neuch\u00e2tel, Suisse) - Temple de M\u00f4tiers", + "Notre-Dame (M\u00f4tiers, Neuch\u00e2tel, Suisse)" + ], + "md5": "657691dbc79fbf3dac4bf2d68a9f5b73" + }, + { + "authorized_access_point": "Corcelles-Cormondr\u00e8che (Neuch\u00e2tel, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/263043231", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/766170011248884810003" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)973555181" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Vignes et village de Corcelles-Cormondr\u00e8che / Perret, Henri,, pharmacien (cr\u00e9ateur), Entre 1890 et 1900", + "Canton de Neuch\u00e2tel, Suisse. Visualisation sur SITN- G\u00e9oportail du syst\u00e8me d'information du territoire neuch\u00e2telois https://sitn.ne.ch, 2022-06-18" + ] + } + ], + "pid": "263043231", + "type": "bf:Place", + "md5": "b6ef9a165518accf055b7dd7dfa9e2f6" + }, + { + "authorized_access_point": "Boudry (Neuch\u00e2tel, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/26304324X", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/64165746780053930276" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)945475136" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Viaduc ferroviaire enjambant l'Areuse \u00e0 Boudry / Amez-Droz, Arthur, 1883-1962 (cr\u00e9ateur), Mai 1916", + "Visualisation sur SITN- G\u00e9oportail du syst\u00e8me d'information du territoire neuch\u00e2telois https://sitn.ne.ch, 2022-06-18" + ] + } + ], + "pid": "26304324X", + "type": "bf:Place", + "md5": "2d59a180192ef2dd2eed7fc6fa6ef400" + }, + { + "authorized_access_point": "Valangin (Neuch\u00e2tel, Suisse ; seigneurie)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/26304338X", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/1788159234878203372988" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)987073028" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://hls-dhs-dss.ch/fr/articles/007624/2014-03-05, 2022-06-18", + "D\u00e9claration des droits et des revenus de la Seigneurie de Valangin : 1531, janvier / Scheurer, R\u00e9my, 1934-.... (contributeur - collaborateur), 1988" + ] + }, + { + "noteType": "general", + "label": [ + "La seigneurie de Valangin est une seigneurie du Canton de Neuch\u00e2tel en Suisse. En 1707, elle devient un comt\u00e9." + ] + } + ], + "pid": "26304338X", + "type": "bf:Place", + "md5": "0e2346153e16813dfac731c41bb3b08a" + }, + { + "authorized_access_point": "W\u00fcnnewil-Flamatt (Fribourg, Suisse ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/263197794", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/130165746668753930715" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Schwarzenburg : Schmitten - Flamatt - R\u00fceggisberg, 2022", + "Dictionnaire historique de la Suisse, https://hls-dhs-dss.ch/fr/articles/001040/2013-11-26, 2022-06-27" + ] + } + ], + "pid": "263197794", + "type": "bf:Place", + "md5": "f7c1603286e3fb788c2e1c1d09917e5f" + }, + { + "authorized_access_point": "\u00c9cublens (Fribourg, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/263222985", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/128440319" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/\u00c9cublens_(Fribourg)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "\u00c9cublens, une commune qui veut garder son \u00e2me et sa physionomie / G\u00e9rard Bourquenoud. In : Fribourg illustr\u00e9, no 19 (1988)", + "Dictionnaire historique de la Suisse, https://hls-dhs-dss.ch/fr/articles/000856/2006-03-06, 2022-06-28" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton de Fribourg (Suisse), district de la Gl\u00e2ne, comprenant le village-rue d'\u00c9cublens, les hameaux d'Eschiens et de Villangeaux" + ] + } + ], + "pid": "263222985", + "type": "bf:Place", + "md5": "3fbcf2b2518506e2cd08457aebdf2cc0" + }, + { + "authorized_access_point": "Gr\u00f4ne (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/263256790", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/237165747430953932437" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)949921300" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "L'histoire de Gr\u00f4ne et des communes environnantes / Michel M\u00e9tral" + ] + } + ], + "pid": "263256790", + "type": "bf:Place", + "md5": "a804b94e5e5f1aeed17b14ad12d5c76c" + }, + { + "authorized_access_point": "Nendaz (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/26369514X", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/3234166063377880560006" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041178068" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Arboueytoeu dij'oratou\u00e9 de Ninde / Germaine du Blanc, 2021", + "https://www.nendaz.org/" + ] + }, + { + "noteType": "general", + "label": [ + "Commune situ\u00e9e dans le canton du Valais. Compos\u00e9e d'une quinzaine de villages et de hameaux" + ] + } + ], + "pid": "26369514X", + "type": "bf:Place", + "md5": "8c193bee01fd5652c21dabb4d7ac5444" + }, + { + "authorized_access_point": "Les Mayens-de-Sion (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/263838250", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/236561087" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)958901333" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Les Mayens de Sion : la montagne des S\u00e9dunois / sous la dir. de Pierre Dall\u00e8ves, Ga\u00ebtan Cassina, Fran\u00e7oise Vannotti ; photogr. Alain de Kalbermatten, 2009", + "https://sd-mayensdesion.ch/, 2022-08-10" + ] + }, + { + "noteType": "general", + "label": [ + "Lieu de vill\u00e9giature situ\u00e9 en Valais, \u00e0 cheval entre les communes de Vex et de Sion." + ] + } + ], + "pid": "263838250", + "type": "bf:Place", + "md5": "16420b7809c0b1ee4505918244ed51ce" + }, + { + "authorized_access_point": "Stalden (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/264073258", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/241211327" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)95731910X" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Famille dans un pr\u00e9, Stalden, 1880-1900", + "https://www.valais4you.ch/fr/le-valais-en-quelques-mots/habitat/abecedaire-des-communes/viege/stalden-94, 2022-08-30" + ] + }, + { + "noteType": "general", + "label": [ + "Commune situ\u00e9e dans le district de Vi\u00e8ge dans le Haut-Valais" + ] + } + ], + "pid": "264073258", + "type": "bf:Place", + "md5": "72f203384a8cfab218e668ca6bbb22f4" + }, + { + "authorized_access_point": "Grimisuat (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/264087313", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/46166596464417590876" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)106040219X" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "R\u00e9p\u00e9tition musicale, Grimisuat / Tibor Varga, 1973", + "https://www.grimisuat.ch/commune/situation-acces-3759.html, 2022-08-30" + ] + }, + { + "noteType": "general", + "label": [ + "Commune situ\u00e9e en Valais" + ] + } + ], + "pid": "264087313", + "type": "bf:Place", + "md5": "cc48ede9388948c758b2f7d4e275e807" + }, + { + "authorized_access_point": "La Grande B\u00e9roche (Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/264145046", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/34153288315232652105" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/La_Grande_B\u00e9roche" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Milvignes et r\u00e9gion : La Grande B\u00e9roche : plan de r\u00e9gion / Brandmark Services (Bichwil) (cartographe), 2019" + ] + }, + { + "noteType": "general", + "label": [ + "Canton de Neuch\u00e2tel, Suisse. Visualisation sur SITN- G\u00e9oportail du syst\u00e8me d'information du territoire neuch\u00e2telois https://sitn.ne.ch, 2022-09-01" + ] + } + ], + "pid": "264145046", + "type": "bf:Place", + "md5": "4b07adf22b9ead6852b6660c4960709b" + }, + { + "authorized_access_point": "Sion (Valais, Suisse) - Ch\u00e2teau de Tourbillon", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/264271831", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)958593663" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Vue sur les ch\u00e2teaux de Val\u00e8re et Tourbillon, Sion, 1880-1910", + "https://siontourisme.ch/fr/tourbillon, 2022-09-08" + ] + }, + { + "noteType": "general", + "label": [ + "Ch\u00e2teau situ\u00e9 sur la colline de Tourbillon, \u00e0 Sion dans le canton du Valais" + ] + } + ], + "pid": "264271831", + "type": "bf:Place", + "variant_access_point": [ + "Ch\u00e2teau de Tourbillon (Valais, Sion, Suisse)", + "Tourbillon, Ch\u00e2teau de (Valais, Sion, Suisse)" + ], + "md5": "2224c31fce194083e408842feea9b7ef" + }, + { + "authorized_access_point": "Trient, Vall\u00e9e du (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/264406095", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/247827636" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)955884152" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Vall\u00e9e_du_Trient" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Passage de la T\u00eate Noire, Vall\u00e9e du Trient, 1863", + "https://fr.wikipedia.org/wiki/Vall%C3%A9e_du_Trient, 2022-09-15" + ] + }, + { + "noteType": "general", + "label": [ + "Vall\u00e9e situ\u00e9e dans le Bas-Valais" + ] + } + ], + "pid": "264406095", + "type": "bf:Place", + "variant_access_point": [ + "Vall\u00e9e du Trient (Valais, Suisse)" + ], + "md5": "56dff563c80eadb0b34f15cda0713ce4" + }, + { + "authorized_access_point": "Kentucky Lake (Etats-Unis. ; lac)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/264435583", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/55166597435217592956" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://fr.wikipedia.org/wiki/Lac_Kentucky/, 2022-09-16" + ] + }, + { + "noteType": "general", + "label": [ + "Le lac Kentucky est un important lac de barrage navigable le long de la rivi\u00e8re Tennessee au Kentucky et au Tennessee" + ] + } + ], + "pid": "264435583", + "type": "bf:Place", + "md5": "16555bcd5ee0a7db8dfeb6dd99eccd71" + }, + { + "authorized_access_point": "Crans-sur-Sierre (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/264538943", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/5522166600446918000000" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041974352" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Histoire du golf de Crans, 1906-2006 / Pierre Ducrey ; avec le collab. de Delphine Rivier et Sylvie Fournier ; [publ. par le Golf-Club Crans-sur-Sierre \u00e0 l'occasion du 100e anniversaire de l'ouverture du premier parcours de golf \u00e0 Crans], 2006", + "https://hls-dhs-dss.ch/fr/articles/008215/2017-01-12/, 2022-09-22" + ] + }, + { + "noteType": "general", + "label": [ + "Station touristique du canton du Valais" + ] + } + ], + "pid": "264538943", + "type": "bf:Place", + "md5": "be4b020c108bc70a0b5ef54aef2ae42c" + }, + { + "authorized_access_point": "Lens (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/264540670", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/1277159474348527662803" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042072816" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Alpages du Grand Lens : [L\u00e0 haut sur la montagne: la vie sur nos alpages hier et aujourd'hui] / [par Joseph Lamon] ; [\u00e9d. Les amis du patrimoine de Lens], 2015", + "https://hls-dhs-dss.ch/fr/articles/002786/2017-03-13/, 2022-09-22 ; https://de.wikipedia.org/wiki/Lens_VS, 2024-07-03" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton du Valais, district de Sierre" + ] + } + ], + "pid": "264540670", + "type": "bf:Place", + "variant_access_point": [ + "Leis (Valais, Suisse)" + ], + "md5": "8fd5a0663a33a8a31e9681f14559a817" + }, + { + "authorized_access_point": "Granges (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/264600886", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/58166597389417592658" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042816688" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Ch\u00e2tellenie de Granges, Lens, Gr\u00f4ne, St-L\u00e9onard avec Chalais-Chippis / Jean-Emile Tamini, Lucien Quaglia ; choix et pr\u00e9sentation Joseph Lamon, 2009", + "https://hls-dhs-dss.ch/fr/articles/003303/2007-07-17/, 2022-09-23" + ] + }, + { + "noteType": "general", + "label": [ + "Localit\u00e9 du canton du Valais. Ancienne commune, r\u00e9unie \u00e0 Sierre en 1972" + ] + } + ], + "pid": "264600886", + "type": "bf:Place", + "md5": "d81f2456d8d193b576b7563b7b1a4faa" + }, + { + "authorized_access_point": "Valais central (Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/264644093", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/2685166600430118000000" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)952816407" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Agrisculptures / Maximilien Urfer ; essais : Rapha\u00ebl Brunner et Eric Felley ; direction de publication : St\u00e9phane Fretz, 2019", + "https://www.vs.ch/web/communes/-/valais-central, 2022-09-27" + ] + }, + { + "noteType": "general", + "label": [ + "R\u00e9gion du Canton du Valais comprenant les districts de Conthey, Sion, Sierre et d'H\u00e9rens" + ] + } + ], + "pid": "264644093", + "type": "bf:Place", + "md5": "5fd78a8f1d728be50624d31ec8d4a334" + }, + { + "authorized_access_point": "Valais romand (Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/264645081", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/75166600409218000002" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)993248810" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "Valais romand" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Les sobriquets des localit\u00e9s du Valais romand ; Articles historiques sur le Valais ; Histoire du Vieux Chablais / Raphy Rappaz, 1976", + "https://www.valais4you.ch/fr/le-valais-en-quelques-mots/habitat, 2022-09-27" + ] + }, + { + "noteType": "general", + "label": [ + "Partie francophone du canton du Valais" + ] + } + ], + "pid": "264645081", + "type": "bf:Place", + "variant_access_point": [ + "Valais francophone (Suisse)" + ], + "md5": "9129b201be0658f3f70e8377f0ac6866" + }, + { + "authorized_access_point": "Wolf River ( Tenn. ; cours d'eau)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/264836251", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/74166835480035941126" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://en.wikipedia.org/wiki/Wolf_River_Tennessee/, 2022-10-07" + ] + }, + { + "noteType": "general", + "label": [ + "La rivi\u00e8re Wolf est un cours d'eau qui coule dans l'\u00c9tat du Tennessee aux \u00c9tats-Unis et qui se jette dans le Mississippi, rive gauche, \u00e0 la hauteur de la ville de Memphis" + ] + } + ], + "pid": "264836251", + "type": "bf:Place", + "md5": "21dcc3e4c814572df12310515e17b16c" + }, + { + "authorized_access_point": "Lausanne (Vaud, Suisse) - Gare", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/265364957", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "La r\u00e9ponse des CFF \u00e0 la suite du retard dans les travaux de la gare de Lausanne : interview de Vincent Ducrot / journaliste Mehmet Gultas. \u00c9mission Forum de la Radio t\u00e9l\u00e9vision suisse, 2022-10-12", + "https://fr.wikipedia.org/wiki/Gare_de_Lausanne, 2022-11-02" + ] + } + ], + "pid": "265364957", + "type": "bf:Place", + "variant_access_point": [ + "Vaud, Suisse - Gare de Lausanne" + ], + "md5": "b4449fb354054456f111fdcda898a570" + }, + { + "authorized_access_point": "Villaz (Fribourg, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/26588912X", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/6760159400300219620005" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Villaz_(Fribourg)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Bulletin communal / commune de Villaz, no 1 (juin 2020)", + "Dictionnaire historique de la Suisse, https://hls-dhs-dss.ch/fr/articles/059026/2020-04-21, 2022-11-28" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton de Fribourg (Suisse), district de la Gl\u00e2ne, n\u00e9e en 2020 de la fusion de Villaz-Saint-Pierre et La Folliaz (issue en 2005 de la fusion de Lussy et Villarimboud)" + ] + } + ], + "pid": "26588912X", + "type": "bf:Place", + "md5": "3403671a4b087a590621114fd6400197" + }, + { + "authorized_access_point": "Th\u00f4nex (Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/266633668", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12217770s", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/155967389" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Th\u00f4nex" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Histoire de Th\u00f4nex, 1989" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton de Gen\u00e8ve" + ] + } + ], + "pid": "266633668", + "type": "bf:Place", + "md5": "02aae57b6ff46e46f424d0d642e1f354" + }, + { + "authorized_access_point": "Naters (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/26663415X", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/380167864514022742683" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041023838" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "100 Jahre Wasserversorgung Naters AG, 1920-2020. Naters : Wasserversorgung Naters AG, [2020]" + ] + }, + { + "noteType": "general", + "label": [ + "Ville situ\u00e9e dans le Haut-Valais" + ] + } + ], + "pid": "26663415X", + "type": "bf:Place", + "md5": "eb2f5fff21ec01055b3e922aea69d9a5" + }, + { + "authorized_access_point": "Petit-Lancy (Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/266656595", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/38167622079903341253" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Pasodoble, 1213 Petit-Lancy (GE), paru dans AS. Krafft ; 223/27", + "DHS - https://hls-dhs-dss.ch/fr/articles/002910/2009-03-10/, 2024-06-17" + ] + }, + { + "noteType": "general", + "label": [ + "Localit\u00e9 de la commune de Lancy (canton de Gen\u00e8ve)" + ] + } + ], + "pid": "266656595", + "type": "bf:Place", + "variant_access_point": [ + "Lancy (Suisse) - Petit-Lancy" + ], + "md5": "59b3d2ebfd47afd11809d8c8186c6641" + }, + { + "authorized_access_point": "Ayent (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/26665715X", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/1375159233947303370245" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)958198667" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Ayent / Argnou / Les Frisses : un plateau o\u00f9 il fait bon vivre / Office cantonal d'arch\u00e9ologie, 2021", + "https://www.ayent.ch/commune/situation-villages.html, 2022-12-29" + ] + }, + { + "noteType": "general", + "label": [ + "Commune situ\u00e9e dans le canton du Valais. Elle est compos\u00e9e de 12 villages dont aucun ne porte le nom d'Ayent" + ] + } + ], + "pid": "26665715X", + "type": "bf:Place", + "md5": "1b19babdc1a7e3bd32ad81d5a974d260" + }, + { + "authorized_access_point": "Salgesch (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/267209568", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/3577169829219637320009" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Salgesch in Bildern / Burgergemeinde Salgesch, 2016", + "https://hls-dhs-dss.ch/fr/articles/002723/2012-06-20/, 2023-01-23" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du Haut-Valais, dans le district de Lo\u00e8che, en fran\u00e7ais \"Salquenen\"." + ] + } + ], + "pid": "267209568", + "type": "bf:Place", + "variant_access_point": [ + "Salquenen (Valais, Suisse)" + ], + "md5": "22a73f9a40973e73eae6f5b2fa591f58" + }, + { + "authorized_access_point": "Fenin (Neuch\u00e2tel, Suisse) - Ch\u00e2teau", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/26722138X", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Ch\u00e2teau de Fenin / Adequa (photographe), 1971", + "Visualisation sur SITN- G\u00e9oportail du syst\u00e8me d'information du territoire neuch\u00e2telois https://sitn.ne.ch, 2023-01-24" + ] + } + ], + "pid": "26722138X", + "type": "bf:Place", + "variant_access_point": [ + "Fenin (Neuch\u00e2tel, Suisse) - Ch\u00e2teau de Fenin" + ], + "md5": "42ca93964a686d47c171c291b9077e51" + }, + { + "authorized_access_point": "Nax (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/267421214", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/49167867534523060006" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)964988283" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Nax, vers 1910 [photographie]", + "https://hls-dhs-dss.ch/fr/articles/002707/2016-12-23, 2023-02-01" + ] + }, + { + "noteType": "general", + "label": [ + "Ancienne commune du canton du Valais, district d'H\u00e9rens, ayant fusionn\u00e9 en 2011 avec Mase et Vernami\u00e8ge pour former la commune de Mont-Noble" + ] + } + ], + "pid": "267421214", + "type": "bf:Place", + "md5": "4ad403f19070234220f60e6f740f45af" + }, + { + "authorized_access_point": "Mont-Noble (Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/267446713", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/1701155286584187180009" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Mont-Noble en fusion : commune de Mont-Noble : Nax, Vernami\u00e8ge, Mase / Interface (Sion), Mont-Noble (commune), 2010", + "https://hls-dhs-dss.ch/fr/articles/049539/2016-09-28/, 2023-02-02" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton du Valais, district d'H\u00e9rens, n\u00e9e en 2011 de la fusion de Mase, Nax et Vernami\u00e8ge." + ] + } + ], + "pid": "267446713", + "type": "bf:Place", + "md5": "6ed5b29f2f1577a180568a13f34276cb" + }, + { + "authorized_access_point": "Gujrat (Pakistan ; district)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/267488092", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/110167864550222742932" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Gazetteer of the Gujrat district, 1892-93, 1893", + "Internet, https://authorities.loc.gov, 2023-02-03" + ] + }, + { + "noteType": "general", + "label": [ + "Le district de Gujrat est une subdivision administrative du nord de la province du Pendjab au Pakistan. Coordonn\u00e9es g\u00e9ographiques : E 74\u00b0 3' 16'' / N 32\u00b0 42' 1''" + ] + } + ], + "pid": "267488092", + "type": "bf:Place", + "variant_access_point": [ + "\u06af\u062c\u0631\u0627\u062a (Pakistan ; district)" + ], + "md5": "2836a761c7c29754cc2be4f46493ae59" + }, + { + "authorized_access_point": "Lahore (Pakistan ; district)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/267506589", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/136739196" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Gazetteer of the Lahore district, 1893-94 / by G. C. Walker ; compiled and published under the authority of the Punjab Government, 1894", + "Internet, https://authorities.loc.gov, 2023-02-06" + ] + }, + { + "noteType": "general", + "label": [ + "Le district de Lahore est une subdivision administrative de la province du Pendjab au Pakistan. Coordonn\u00e9es g\u00e9ographiques : E 74\u00b0 23' 52'' / N 31\u00b0 29' 10''" + ] + } + ], + "pid": "267506589", + "type": "bf:Place", + "variant_access_point": [ + "\u0644\u0627\u06be\u0648\u0631 (Pakistan ; district)", + "L\u0101haur (Pakistan ; district)" + ], + "md5": "a68e724edd1c709a14d08a2ab168be67" + }, + { + "authorized_access_point": "Flamatt (Fribourg, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/267678584", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/113167864081422741509" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Als Flamatt \u00fcberfahren wurde : 50 Jahre Autobahn N12 / von Imelda Ruffieux. In : Freiburger Volkskalender, 114. Jahrgang, 2023, pages 47-50", + "Dictionnaire historique de la Suisse, https://hls-dhs-dss.ch/fr/articles/011357/2015-07-23, 2023-02-14" + ] + }, + { + "noteType": "general", + "label": [ + "Village de la commune de W\u00fcnnewil-Flamatt dans le canton de Fribourg (Suisse), district de la Singine" + ] + } + ], + "pid": "267678584", + "type": "bf:Place", + "md5": "e491f96d295ad15c4cfdb4ecb3638b55" + }, + { + "authorized_access_point": "Evionnaz (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/267860048", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/151289873" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)961803010" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Comptes de la bourgeoisie d'Evionnaz. - Evionnaz : administration communale, 2013" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton du Valais (Suisse)" + ] + } + ], + "pid": "267860048", + "type": "bf:Place", + "md5": "1c5e528ae861359b8cec60d9393d60e8" + }, + { + "authorized_access_point": "Ardon (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/26792237X", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/1272167867538823060002" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)959192603" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Accident entre une fourgonnette et une voiture, Ardon / Philippe Schmid, 1962 [photographie]", + "https://fr.wikipedia.org/wiki/Ardon_(Valais) /,2023-02-22" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton du Valais, situ\u00e9e dans le district de Conthey." + ] + } + ], + "pid": "26792237X", + "type": "bf:Place", + "md5": "f5ccdb8c7fc3a5fc81cd3cd3b6e256a9" + }, + { + "authorized_access_point": "Aproz (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/267928262", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/285167863719022740515" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1046852981" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Avant d\u00e9truit d'un bus VW de l'Usine des Eaux min\u00e9rales, Aproz / Philippe Schmid, 1962 [photographie]", + "https://www.nendaz.ch/fr/P75016/aproz/, 2023-02-22," + ] + }, + { + "noteType": "general", + "label": [ + "Village du canton du Valais faisant partie de la commune de Nendaz" + ] + } + ], + "pid": "267928262", + "type": "bf:Place", + "md5": "fd9147e636847f5c2df84cc07c8e07ae" + }, + { + "authorized_access_point": "Riddes (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/268500460", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/1278159474198227661307" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)956715753" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Sortie de route d'un camion / Philippe Schmid, 1971 [photographies]", + "https://hls-dhs-dss.ch/fr/articles/002734/2012-05-11/, 2023-03-15" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton du Valais, district de Martigny" + ] + } + ], + "pid": "268500460", + "type": "bf:Place", + "md5": "f2bb74da6c244c228cef8c0e11f4b774" + }, + { + "authorized_access_point": "Ernen (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/268649472", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/126168169046348042654" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042350964" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Fastent\u00fccher im Untergoms / Alex Agten. - In: Walliser Jahrbuch. - Visp. - [92. Jahrgang] (2023), Seiten 24-27" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton du Valais (Suisse)" + ] + } + ], + "pid": "268649472", + "type": "bf:Place", + "md5": "faaa0db30f281b87aeef8d5b939f0615" + }, + { + "authorized_access_point": "Liddes (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/268664110", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/5153168172581848620008" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042072344" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Fanfare la Fraternit\u00e9, Liddes [photographie]", + "https://www.liddes.ch/decouvrir/presentation, 2023-03-23" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton du Valais, district d'Entremont. Elle se compose de 13 villages et hameaux r\u00e9partis sur les deux versants de la Dranse d\u2019Entremont qui s\u2019\u00e9coule au fond de la vall\u00e9e : Liddes, Chandonne, Fontaine-Dessus, Rive-Haute, Fontaine-Dessous, Pallazuit et Combe se situent sur la rive droite; Dranse, Chez-Petit, Fornex, Les Moulins, Montatuay et Vich\u00e8res sur la rive gauche." + ] + } + ], + "pid": "268664110", + "type": "bf:Place", + "md5": "5eb87289859a76f40e842eec14266d04" + }, + { + "authorized_access_point": "Orsi\u00e8res (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/268664447", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/5405168172582848620007" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Clocher, Orsi\u00e8res [photographie]", + "https://fr.wikipedia.org/wiki/Orsi\u00e8res, 2023-03-23" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton du Valais, district d'Entremont. Elle se compose principalement de deux grandes vall\u00e9es, le val Ferret et la vall\u00e9e de Champex, le bourg d'Orsi\u00e8res, situ\u00e9 sur la Drance d'Entremont, et douze villages, dont Champex, Ferret, Issert, La Fouly et Praz-de-Fort" + ] + } + ], + "pid": "268664447", + "type": "bf:Place", + "md5": "9caffdb4e45e2a8e90ec54049682d63a" + }, + { + "authorized_access_point": "Chamoson (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/268666938", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/170378445" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)959192352" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)959192352" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Usine \u00e9lectrique, Chamoson [photographie]", + "https://fr.wikipedia.org/wiki/Chamoson, 2023-03-23" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton du Valais, situ\u00e9e dans le district de Conthey." + ] + } + ], + "pid": "268666938", + "type": "bf:Place", + "relation_pid": { + "value": "268729328", + "type": "redirect_from" + }, + "md5": "dce5048d23ebe30f5b443d02f456599c" + }, + { + "authorized_access_point": "Turtmann (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/268735190", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/166168168491948041084" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042975735" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Medizinische Versorgung vor 75 Jahren im Raum Turtmann / Josef J\u00e4ger . - In: Walliser Jahrbuch. - Visp. - [92. Jahrgang] (2023), Seiten 55-56" + ] + }, + { + "noteType": "general", + "label": [ + "Village et commune situ\u00e9e dans le Haut-Valais" + ] + } + ], + "pid": "268735190", + "type": "bf:Place", + "variant_access_point": [ + "Tourtemagne (Valais, Suisse)" + ], + "md5": "1c4433eb6c38e40090f8eba03955063d" + }, + { + "authorized_access_point": "Sion (Valais, Suisse) - Ch\u00e2teauneuf", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/268791694", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)95887638X" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Camion happ\u00e9 par un train, Ch\u00e2teauneuf / Philippe Schmid, 1962 [photographie]", + "https://www.chateauneufsion.ch/, 2023-03-29" + ] + }, + { + "noteType": "general", + "label": [ + "Quartier de la ville de Sion dans le canton du Valais" + ] + } + ], + "pid": "268791694", + "type": "bf:Place", + "md5": "0fae09bd483e3043e62b1d334d65517b" + }, + { + "authorized_access_point": "Bramois (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/268793948", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/5167621890903341945" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)956042651" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Voiture tomb\u00e9e dans la Borgne, Bramois / Philippe Schmid, 1964 [photographie]", + "https://fr.wikipedia.org/wiki/Bramois, 2023-03-29" + ] + }, + { + "noteType": "general", + "label": [ + "Village situ\u00e9 dans le canton du Valais. Ancienne commune suisse et localit\u00e9 de la commune de Sion" + ] + } + ], + "pid": "268793948", + "type": "bf:Place", + "variant_access_point": [ + "Br\u00e4mis (Valais, Suisse)" + ], + "md5": "d00f95502a66e2c1b71e3d2a5993fffc" + }, + { + "authorized_access_point": "Gen\u00e8ve (Suisse) - Conf\u00e9d\u00e9ration Centre", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/269784136", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://www.confederationcentre.ch/en/le-centre, 2023-05-09", + "Conf\u00e9d\u00e9ration Centre \u00e0 Gen\u00e8ve : un souffle de modernit\u00e9 rajeunit le Palais des Glaces, 2022" + ] + } + ], + "pid": "269784136", + "type": "bf:Place", + "md5": "d170bf685ccce52de78250ab848090be" + }, + { + "authorized_access_point": "Silverado (Calif.) - Saint Michael's Abbey", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/270059482", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Saint Michael's Abbey : Silverado Orange County, California / Jean-Louis Pag\u00e8s, 2020" + ] + } + ], + "pid": "270059482", + "type": "bf:Place", + "variant_access_point": [ + "Saint Michael's Abbey (Silverado, Calif.)", + "St. Michael's Abbey (Silverado, Calif.)" + ], + "md5": "71c21655cd5644668f4c3851994fb6e5" + }, + { + "authorized_access_point": "Leytron (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/270977848", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/2029159474075927660481" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)959192387" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Union Instrumentale, Leytron / Michel Darbellay, 18 avril 1976 [photographie]", + "https://hls-dhs-dss.ch/fr/articles/002731/2008-01-24/, 2023-07-07" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton du Valais, situ\u00e9e dans le district de Martigny." + ] + } + ], + "pid": "270977848", + "type": "bf:Place", + "md5": "1418b02ca0e02f302bfac309d68c4249" + }, + { + "authorized_access_point": "T\u00f6rbel (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/271120738", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/3850169261908109510008" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)041196392" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Radiometrische Anomalien in der Umgebung von T\u00f6rbel, nahe Visp im Wallis / Ruedi Stucki. - In: Mitteilungen der Naturforschenden Gesellschaft in Bern. - Bern. - N.F., Bd 80(2023), Seiten 40-63", + "https://de.wikipedia.org/wiki/T%C3%B6rbel (2023-07-18)" + ] + }, + { + "noteType": "general", + "label": [ + "T\u00f6rbel est une commune suisse du canton du Valais, situ\u00e9e dans le district de Vi\u00e8ge" + ] + } + ], + "pid": "271120738", + "type": "bf:Place", + "md5": "6fc95e0712fbad69d2a0b8f144dd687f" + }, + { + "authorized_access_point": "V\u00e9troz (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/271160926", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/97169253683692700516" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)947204954" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Collision entre un camion semi-remorque et un train, V\u00e9troz / Philippe Schmid, 1982 [photographie]", + "https://fr.wikipedia.org/wiki/V%C3%A9troz7, 2023-07-19" + ] + }, + { + "noteType": "general", + "label": [ + "Commune de canton du Valais, situ\u00e9e dans le district de Conthey" + ] + } + ], + "pid": "271160926", + "type": "bf:Place", + "md5": "b9660b38e6ad82f584db436662b4dbd7" + }, + { + "authorized_access_point": "Vex (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/271161957", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/81169254481492702368" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)956137954" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Voiture d\u00e9valant de 50 m\u00e8tres sur un talus, Vex / Philippe Schmid, 1962 [photographie]", + "https://fr.wikipedia.org/wiki/Vex/, 2023-07-19" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton du Valais, chef-lieu du district d'H\u00e9rens. Le village est situ\u00e9 \u00e0 l'entr\u00e9e du Val d'H\u00e9rens. La commune comprend les hameaux des Prasses, d'Ypresse et de l'Argilly ainsi que Les Collons et Thyon 2000" + ] + } + ], + "pid": "271161957", + "type": "bf:Place", + "md5": "6114e1be6e9bb6820c2332b49862fec5" + }, + { + "authorized_access_point": "Anz\u00e8re (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/271166118", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/108169253837092700807" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1019951494" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Inauguration du t\u00e9l\u00e9ski, Anz\u00e8re / Philippe Schmid, 1961", + "https://www.myswitzerland.com/fr-ch/destinations/anzere/, 2023-07-24" + ] + }, + { + "noteType": "general", + "label": [ + "Station touristique sur la commune d'Ayent en Valais" + ] + } + ], + "pid": "271166118", + "type": "bf:Place", + "md5": "c315151fd43c8acfc682a946df707971" + }, + { + "authorized_access_point": "Collombey-Muraz (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/271323485", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12131962h", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)042424003" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/1992159474343127662579" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GDEL" + ] + } + ], + "pid": "271323485", + "type": "bf:Place", + "md5": "87c94aa4f5a1ec67ed1b2b3073180a2a" + }, + { + "authorized_access_point": "Le Bouveret (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Bouveret (Switzerland)", + "source": "LCA", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/names/n83224886", + "source": "LCA" + } + ] + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/271323515", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb169627006", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": " (DE-101)959682708" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/113144647637759345491" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia - http://fr.wikipedia.org (2015-04-30)", + "Dict. historique de la Suisse (art. : Port-Valais) - http://www.hls-dhs-dss.ch (2015-05-18)" + ] + }, + { + "noteType": "general", + "label": [ + "Localit\u00e9 de la commune de Port-Valais dans le canton du Valais, situ\u00e9e au sud du lac L\u00e9man et proche de la fronti\u00e8re fran\u00e7aise" + ] + } + ], + "pid": "271323515", + "type": "bf:Place", + "variant_access_point": [ + "Bouveret, Le (Valais, Suisse)", + "Bouveret (Valais, Suisse)", + "Port-Valais (Valais, Suisse) - Village du Bouveret" + ], + "md5": "a279fb34c3336bfc2758cee4d7830ed7" + }, + { + "authorized_access_point": "B\u00e2le (B\u00e2le-Ville, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/271323590", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb152399861", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040046176" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/3925169442785525340002" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Coordonn\u00e9es g\u00e9ographiques : E 7\u00b036' / N 47\u00b033'" + ] + } + ], + "pid": "271323590", + "type": "bf:Place", + "variant_access_point": [ + "B\u00e2le-Ville (Suisse)", + "Basel-Stadt (Suisse)", + "Basilea Citta (Suisse)", + "Basilea", + "Basilia", + "Basilea Rauracorum", + "Colonia Munatiana", + "Athenae Rauracae", + "Bazela", + "Baesula", + "Basula", + "Baille", + "Baalle", + "Basle" + ], + "md5": "20daa5f54affbc451eda52347c9d1d4c" + }, + { + "authorized_access_point": "Vouvry (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Vouvry (Switzerland)", + "source": "LCA", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/names/n83239447", + "source": "LCA" + } + ] + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/271323663", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16909821w", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)976443899" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/110144647635667511245" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Geonames - http://www.geonames.org (2014-09-12)", + "Atlas universel / \"Le Monde\", S\u00e9lection du \"Reader's digest\", 1993" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton du Valais" + ] + } + ], + "pid": "271323663", + "type": "bf:Place", + "md5": "8cddeb50e69ec4a1f294f21c6765c773" + }, + { + "authorized_access_point": "Saint Nicolas (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/271323698", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15301322r", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)952907682" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/5819169442791125340000" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Coordonn\u00e9es g\u00e9ographiques : E 7\u00b048' / N 46\u00b011'" + ] + } + ], + "pid": "271323698", + "type": "bf:Place", + "variant_access_point": [ + "Zaniglas", + "Saniglaas" + ], + "md5": "de8cb21c22b6fb422e5be4a6c552b9e2" + }, + { + "authorized_access_point": "Blatten (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/271323752", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15171340s", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040884422" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/170502802" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dictionnaire historique de la Suisse - http://www.hls-dhs-dss.ch/textes/f/F2757.php (2010-07-16)" + ] + }, + { + "noteType": "general", + "label": [ + "Coordonn\u00e9es g\u00e9ographiques : E 7\u00b049' / N 46\u00b025'" + ] + } + ], + "pid": "271323752", + "type": "bf:Place", + "variant_access_point": [ + "Uffen der Blattun (Valais, Suisse)", + "Uf der Blattun (Valais, Suiss)", + "Eisten (Valais, Suisse)", + "Ried (Valais, Suisse)", + "Weissenried (Valais, Suisse)", + "Fafleralp (Valais, Suisse)", + "K\u00fchmatt (Valais, Suisse)" + ], + "md5": "d4798d17647ed3f2555eac3fb7810c6e" + }, + { + "authorized_access_point": "Gressoney, Val de (Italie)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Gressoney Valley (Italy)", + "source": "LCSH", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85057315", + "source": "LCSH" + } + ] + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/271326441", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb12725205j", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040787249" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/4151594428405352226" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Atlas universalis (Val di Gressoney)", + "Valle d'Aosta-Vall\u00e9e d'Aoste - http://www.regione.vda.it (2006-04-20)" + ] + }, + { + "noteType": "general", + "label": [ + "Vall\u00e9e du nord-est du Val d'Aoste au pied du Mont Rose, drain\u00e9e par le Lys. Elle est habit\u00e9e depuis le 13e si\u00e8cle par des Valaisiens (Walser) germanophones" + ] + } + ], + "pid": "271326441", + "type": "bf:Place", + "variant_access_point": [ + "Gressoney, Val di (Italie)", + "Gressoney, Valle di (Italie)", + "Gressoneytal (Italie)", + "Lys, Vall\u00e9e du (Italie)", + "Val de Gressoney (Italie)" + ], + "md5": "377a421c23e28385417e1c79e2fbb493" + }, + { + "authorized_access_point": "Anatolie (Turquie ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/271326840", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb162621083", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040856852" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/170339943" + } + ], + "pid": "271326840", + "type": "bf:Place", + "md5": "ee7bcd874bb7b2b710db7bfecfdba249" + }, + { + "authorized_access_point": "Saint-Gingolph (Haute-Savoie, France)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "912" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Saint-Gingolph (France)", + "source": "LCA", + "identifiedBy": [ + { + "type": "uri", + "value": "http://id.loc.gov/authorities/names/no2011036870", + "source": "LCA" + } + ] + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/271328762", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb162289872", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/80144647643792852617" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Saint-Gingolph_(Haute-Savoie)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. des communes, 2001" + ] + } + ], + "pid": "271328762", + "type": "bf:Place", + "md5": "6b4004dc8a96ddaef07bacedc48e6c2d" + }, + { + "authorized_access_point": "Alpes (nord)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/271342889", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb178332023", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)973450509" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/1189169442776925340005" + } + ], + "pid": "271342889", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Alpes (Allemagne)" + } + ], + "variant_access_point": [ + "Alpes du Nord", + "Alpes septentrionales" + ], + "md5": "17f01af8ef464d799f66b443a65b05ac" + }, + { + "authorized_access_point": "Ollon (Vaud, Suisse)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/271347821", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb161099642", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/9402165326398616290004" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Ollon" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Atlas universel Le Monde, 1989", + "https://fr.wikipedia.org/wiki/Ollon, 2024-06-26" + ] + }, + { + "noteType": "general", + "label": [ + "Commune du canton de Vaud, district d'Aigle" + ] + } + ], + "pid": "271347821", + "type": "bf:Place", + "md5": "123932e029b0576ccf98c6c52db4254f" + }, + { + "authorized_access_point": "Grand Muveran (Suisse ; mont)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/271377445", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb17014374p", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/41169436117514272671" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://fr.wikipedia.org/wiki/Grand_Muveran, 2024-06-25" + ] + }, + { + "noteType": "general", + "label": [ + "Coordonn\u00e9es g\u00e9ographiques : E 7\u00b08'29\" / N 46\u00b014'17\"", + "Sommet situ\u00e9 entre les cantons du Valais et de Vaud" + ] + } + ], + "pid": "271377445", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Alpes vaudoises (Suisse)" + }, + { + "authorized_access_point": "Muverans, Massif des (Suisse)" + } + ], + "md5": "9e5b5abfdff143b4dac986710866bf6d" + }, + { + "authorized_access_point": "Zinal (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/271529172", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/86169435151714270533" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043141668" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Zinal : parcours historique / Adriana Tenda Claude, 2016", + "https://fr.wikipedia.org/wiki/Zinal, 2023-08-25" + ] + }, + { + "noteType": "general", + "label": [ + "Village et station touristique situ\u00e9 dans sur la commune d'Anniviers" + ] + } + ], + "pid": "271529172", + "type": "bf:Place", + "md5": "6cd5b9ae08641d665b283ed7fea7b66d" + }, + { + "authorized_access_point": "Com\u00e9die des Champs-Elys\u00e9es", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/271733764", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Bernard Marrey, La Naissance du th\u00e9\u00e2tre des Champs-Elys\u00e9es 1910-1922, \u00e9d. Picard, 2007." + ] + }, + { + "noteType": "general", + "label": [ + "Le Th\u00e9\u00e2tre, la Com\u00e9die et le Studio des Champs-Elys\u00e9es font partie du m\u00eame ensemble architectural. Inaugur\u00e9e en 1913 sous la direction de L\u00e9on Poirier, la Com\u00e9die L\u00e9on-Poirier prend en 1919 le nom de Com\u00e9die-Montaigne. Louis Jouvet en prend la direction de 1923 \u00e0 1934. La Com\u00e9die devient un th\u00e9\u00e2tre d'art et d'essai en 1937, et abrite de nombreuses troupes. A partir de 1944, elle est dirig\u00e9e par C. Sainval et R. Pietri, puis par Sainval seul.", + "Paris (France)" + ] + } + ], + "pid": "271733764", + "type": "bf:Place", + "variant_access_point": [ + "Com\u00e9die L\u00e9on-Poirier (Paris)", + "Th\u00e9\u00e2tre Louis Jouvet (Paris)", + "Com\u00e9die-Montaigne (Paris)" + ], + "md5": "f29b7f2e53550c6eaea990ca40fc1aaa" + }, + { + "authorized_access_point": "Th\u00e9\u00e2tre des Champs-\u00c9lys\u00e9es, Paris", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/271786574", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Bernard Marrey, La Naissance du th\u00e9\u00e2tre des Champs-Elys\u00e9es 1910-1922, \u00e9d. Picard, 2007." + ] + }, + { + "noteType": "general", + "label": [ + "Paris, France" + ] + } + ], + "pid": "271786574", + "type": "bf:Place", + "variant_access_point": [ + "Th\u00e9\u00e2tre des Champs \u00c9lys\u00e9es, Paris" + ], + "md5": "bcd9bd9ec9693f0da06cf17627b40b8a" + }, + { + "authorized_access_point": "Buner (Pakistan ; district)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/272053430", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Mer\u0101 \u1e34\u1e96addo\u1e35\u1e96el : 326 Q\u0101f. M\u012bm. t\u0101 2000 : \u02bfal\u0101qah \u1e34\u1e96addo\u1e35\u1e96el k\u0101 mu\u1e35\u1e96ta\u1e63r t\u0101r\u012b\u1e35\u1e96\u012b, tah\u1e95\u012bb\u012b va s\u0331aq\u0101fat\u012b mut\u0324\u0101la\u02bfah / Shir\u012bnz\u0101dah \u1e34\u1e96ado\u1e35\u1e96el, 2000", + "Internet, https://authorities.loc.gov, 2023-09-18" + ] + }, + { + "noteType": "general", + "label": [ + "Le district de Buner est une subdivision administrative de la province Khyber Pakhtunkhwa au Pakistan. Coordonn\u00e9es g\u00e9ographiques : E 72\u00b0 29\u2032 02'' / N 34\u00b0 30\u2032 41''" + ] + } + ], + "pid": "272053430", + "type": "bf:Place", + "variant_access_point": [ + "\u0628\u0648\u0646\u06cc\u0631 (Pakistan ; district)" + ], + "md5": "112e65688651d2c1fd181a4437e5c93b" + }, + { + "authorized_access_point": "Studio des Champs-Elys\u00e9es, Paris", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/272179213", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Louis-Fran\u00e7ois Delisle de la Dreveti\u00e8re, Le th\u00e9\u00e2tre des Champs-\u00c9lys\u00e9es, 1912." + ] + }, + { + "noteType": "general", + "label": [ + "De 1960 \u00e0 1965, Antoine Bourseiller assure la direction artistique. Depuis 1966, la direction est assur\u00e9e par les directeurs de la Com\u00e9die des Champs-\u00c9lys\u00e9es : Claude Sainval, Guy Descaux, Jacqueline Cormier, Michel Fagadau (assist\u00e9 par Viviane Elbaz de 1997 \u00e0 2005) et St\u00e9phanie Fagadau-Mercier.", + "Paris, France" + ] + } + ], + "pid": "272179213", + "type": "bf:Place", + "md5": "a4d0ec641759ac05193c8b3396c4bdf8" + }, + { + "authorized_access_point": "Th\u00e9\u00e2tre du Pr\u00e9 Catelan, Bois de Boulogne, Paris", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/272823627", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://fr.wikipedia.org/wiki/Jardin_du_Pr%C3%A9-Catelan, 2023-10-25" + ] + }, + { + "noteType": "general", + "label": [ + "Parc botanique du bois de Boulogne \u00e0 Paris qui se trouve dans la zone du Pr\u00e9 Catelan. En 1911, un nouvel espace consacr\u00e9 au spectacle vivant est inaugur\u00e9 dans le parc, \u00e0 proximit\u00e9 de La Villa Bengali, le th\u00e9\u00e2tre de Verdure du Pr\u00e9-Catelan, un th\u00e9\u00e2tre d'\u00e9t\u00e9, en plein air, dirig\u00e9 par Francis Robin9, ancien directeur du th\u00e9\u00e2tre de la Tour Eiffel et fondateur du th\u00e9\u00e2tre Le Tr\u00e9teau Royal, et o\u00f9 sont notamment pr\u00e9sent\u00e9es les premi\u00e8res pi\u00e8ces de Louis Delluc. En 1953 est inaugur\u00e9 le Th\u00e9\u00e2tre de verdure du jardin Shakespeare, \u00e0 la place de l'ancien Th\u00e9\u00e2tre des fleurs. Il est constitu\u00e9 de petits jardins th\u00e9matiques faisant r\u00e9f\u00e9rence \u00e0 cinq pi\u00e8ces du dramaturge anglais, notamment via un choix de v\u00e9g\u00e9taux li\u00e9s \u00e0 son \u0153uvre (roses, ifs, etc.). Chaque \u00e9t\u00e9, des pi\u00e8ces y sont jou\u00e9es en plein air." + ] + } + ], + "pid": "272823627", + "type": "bf:Place", + "variant_access_point": [ + "Th\u00e9\u00e2tre de verdure du Jardin Shakespeare" + ], + "md5": "9a8cf9bd2a0eaf4fd7f80826e577b34a" + }, + { + "authorized_access_point": "Ovronnaz (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/273580728", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/53170520280403302918" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)960113355" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Ovronnaz \u00e0 pied / Soci\u00e9t\u00e9 de d\u00e9veloppement (Ovronnaz), 1973", + "https://www.ovronnaz.ch/ovronnaz-ses-alentours/, 2023-12-01" + ] + }, + { + "noteType": "general", + "label": [ + "Station touristique de montagne, sur le territoire de la commune de Leytron" + ] + } + ], + "pid": "273580728", + "type": "bf:Place", + "md5": "067de4fe1620fc0f05ec2a0e6fa43de5" + }, + { + "authorized_access_point": "Finges, Bois de (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/275775569", + "source": "IDREF" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Bois_de_Finges" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)043187048" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Tr\u00e9sors naturels du bois de Finges / Ren\u00e9-Pierre Bille, Philippe Werner, 1986", + "https://www.pfyn-finges.ch/fr/experience/carte-du-parc/offer-detail/site-protege-du-bois-de-finges-1991, 2024-02-14", + "https://hls-dhs-dss.ch/fr/articles/008553/2010-09-28/, 2024-02-14" + ] + }, + { + "noteType": "general", + "label": [ + "R\u00e9serve naturelle" + ] + } + ], + "pid": "275775569", + "type": "bf:Place", + "variant_access_point": [ + "Bois de Finges (Valais, Suisse)", + "Pfynwald (Valais, Suisse)", + "For\u00eat de Finges (Valais, Suisse)" + ], + "md5": "57f9b6d3fc52badb650c550cb7a9dc85" + }, + { + "authorized_access_point": "Biel-Benken (B\u00e2le-Campagne, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/276090829", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Arlesheim : Biel-Benken - Reinach - Pratteln, 2023. (Landeskarte der Schweiz; 1067)" + ] + } + ], + "pid": "276090829", + "type": "bf:Place", + "md5": "0499032fffced6b1725401bcfe1d0a37" + }, + { + "authorized_access_point": "Reinach (B\u00e2le-Campagne, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/27609266X", + "source": "IDREF" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/Reinach_(B\u00e2le-Campagne)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Arlesheim : Biel-Benken - Reinach - Pratteln, 2023. (Landeskarte der Schweiz; 1067)" + ] + } + ], + "pid": "27609266X", + "type": "bf:Place", + "md5": "d089675c5c64e5a3dd823d83ff610a92" + }, + { + "authorized_access_point": "Pratteln (B\u00e2le-Campagne, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/276092945", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Arlesheim : Biel-Benken - Reinach - Pratteln, 2023. (Landeskarte der Schweiz; 1067)" + ] + } + ], + "pid": "276092945", + "type": "bf:Place", + "md5": "f99477416f48275a57d532a493459fab" + }, + { + "authorized_access_point": "Eckartsburg, Ch\u00e2teau d\u2019 (Allemagne)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/276180232", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Die Eckartsburg / Reinhard Schmitt. - M\u00fcnchen ; Berlin : Deutscher Kunstverlag, 1993." + ] + } + ], + "pid": "276180232", + "type": "bf:Place", + "variant_access_point": [ + "Eckartsberga (Saxe-Anhalt) - Ch\u00e2teau d\u2019Eckartsburg" + ], + "md5": "8f0fc41d9c343c4dbd84e2c32e24c690" + }, + { + "authorized_access_point": "Diegten (B\u00e2le-Campagne, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/276183762", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Hauenstein : Oberdorf - Diegten - Olten, 2023 (Landeskarte der Schweiz; 1088)" + ] + } + ], + "pid": "276183762", + "type": "bf:Place", + "md5": "c4058a8d8911b283bb2b2857806fdab3" + }, + { + "authorized_access_point": "Schnellenberg, Ch\u00e2teau de (Allemagne)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/276185986", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Burg Schnellenberg / Karl E. Mummenhoff. - M\u00fcnchen ; Berlin : Deutscher Kunstverlag, 1987." + ] + } + ], + "pid": "276185986", + "type": "bf:Place", + "variant_access_point": [ + "Burg Schnellenberg", + "Attendorn, Rh\u00e9nanie du Nord-Westphalie (Allemagne)) - Ch\u00e2teau de Schnellenberg" + ], + "md5": "f082fb24f561ed5f5cb1d535cbccf397" + }, + { + "authorized_access_point": "Neuenburg, Ch\u00e2teau de (Allemagne)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/276213939", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Schloss Neuenburg / Kristine Glatzel und Reinhard Schmitt. - M\u00fcnchen ; Berlin : Deutscher Kunstverlag, 1993." + ] + } + ], + "pid": "276213939", + "type": "bf:Place", + "variant_access_point": [ + "Schloss Neuenburg", + "Freyburg (Unstrut) - Ch\u00e2teau de Neuenburg" + ], + "md5": "b01ab9de6d7e37a2322fb7f3eaf76643" + }, + { + "authorized_access_point": "Passwang (Soleure, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/276214129", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Passwang : Laufen - Scheltenpass - Reigoldswil, 2023. (Landeskarte der Schweiz; 1087)" + ] + } + ], + "pid": "276214129", + "type": "bf:Place", + "md5": "7f1dbefca1614ed24ffec5b8b0356124" + }, + { + "authorized_access_point": "Reigoldswil (B\u00e2le-Campagne, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/276214463", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Passwang : Laufen - Scheltenpass - Reigoldswil, 2023. (Landeskarte der Schweiz; 1087)" + ] + } + ], + "pid": "276214463", + "type": "bf:Place", + "md5": "9982179e88b8aebb7fe76c27713df555" + }, + { + "authorized_access_point": "Sissach (B\u00e2le-Campagne, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/27621675X", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Liestal : Rheinfelden - Sissach - Fricktal, 2023. (Landeskarte der Schweiz ; 214)" + ] + } + ], + "pid": "27621675X", + "type": "bf:Place", + "md5": "b6b16f3a705c164f2c37d60a2d111137" + }, + { + "authorized_access_point": "Kyffhausen, Ch\u00e2teau de (Allemagne)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/276271890", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Die Baugeschichte der Burg Kyffhausen / Hermann W\u00e4scher. - Halle (Saale) : Kreuz Verlag (VOB), 1959." + ] + } + ], + "pid": "276271890", + "type": "bf:Place", + "variant_access_point": [ + "Burg Kyffhausen", + "Kyffh\u00e4userland, Land de Thuringe (Allemagne) - Ch\u00e2teau de Kyffhausen" + ], + "md5": "44f578d93b8807e6e18521b3af9d9f8b" + }, + { + "authorized_access_point": "Gemen, Ch\u00e2teau de (Allemagne)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/276300882", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Burg Gemen / Eberhard G. Neumann. - 4. Auflage. - M\u00fcnchen ; Berlin : Deutscher Kunstverlag, 1987." + ] + } + ], + "pid": "276300882", + "type": "bf:Place", + "variant_access_point": [ + "Burg Gemen", + "Borken (Westphalie) - Ch\u00e2teau de Gemen" + ], + "md5": "4e5c3185658829957c5c9eff1b2aa40a" + }, + { + "authorized_access_point": "Otzberg, Ch\u00e2teau d\u2019 (Allemagne)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/276306651", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Otzberg : Burg - Festung \u2013 Kaserne / Dr. Axel Gleue. - Otzberg : A.W.Gleue, \u00a9 2003" + ] + } + ], + "pid": "276306651", + "type": "bf:Place", + "variant_access_point": [ + "Veste Otzberg", + "Otzberg (Hesse, Allemagne) - Ch\u00e2teau d\u2019Otzberg" + ], + "md5": "172f1169269699d3303288b29c346a88" + }, + { + "authorized_access_point": "Alpes Bernoises (Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/276398157", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15331629m", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)04005781X" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Alpes bernoises : s\u00e9lection d'itin\u00e9raires / Maurice Brandt, 1982", + "Guide des Alpes bernoises : du Sanetsch au Grimsel : s\u00e9lection d'itin\u00e9raires / Ueli Mosimann, 2002", + "https://fr.wikipedia.org/wiki/Subdivision_orographique_internationale_unifi%C3%A9e_du_syst%C3%A8me_alpin, 2024-03-20" + ] + }, + { + "noteType": "general", + "label": [ + "Les Alpes bernoises couvrent un territoire allant du col du Sanetsch au col du Grimsel, sur les cantons de Berne (Oberland bernois) et du Valais (rive droite du Rh\u00f4ne). Dans un sens plus large, elles touchent \u00e9galement les cantons de Vaud, d'Uri et d'Obwald" + ] + } + ], + "pid": "276398157", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Jungfrau-Alestch, Site Unesco (Berne / Valais, Suisse)" + }, + { + "authorized_access_point": "Aletsch, Grand Glacier d' (Valais, Suisse)" + }, + { + "authorized_access_point": "Jungfrau (Berne, Suisse ; Mont)" + } + ], + "broader": [ + { + "authorized_access_point": "Alpes, Cha\u00eene des" + } + ], + "variant_access_point": [ + "Alpi Bernesi (Suisse)", + "Berner Alpen (Suisse)" + ], + "md5": "1f4f840a731b7a28763ad29394298e84" + }, + { + "authorized_access_point": "Alpes vaudoises (Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/276510216", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)944449360" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "111 lieux des Alpes vaudoises \u00e0 ne pas manquer / Benjamin Amiguet, Marc Voltenauer, 2022", + "https://fr.wikipedia.org/wiki/Alpes_vaudoises, 2024-03-20", + "https://search.ortsnamen.ch/fr/record/803319560/, 2024-03-20" + ] + }, + { + "noteType": "general", + "label": [ + "Les Alpes vaudoises sont un ensemble montagneux des Alpes suisses situ\u00e9 principalement dans les cantons de Vaud et du Valais" + ] + } + ], + "pid": "276510216", + "type": "bf:Place", + "narrower": [ + { + "authorized_access_point": "Grand Muveran (Suisse ; mont)" + }, + { + "authorized_access_point": "Les Diablerets (Suisse ; massif)" + } + ], + "variant_access_point": [ + "Waadtl\u00e4nder Alpen (Suisse)", + "Alpi Valdesi (Suisse)" + ], + "md5": "8d178bc04c6fbb630ce249b2ba547e5a" + }, + { + "authorized_access_point": "Madagascar", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/276534921", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb15325769w", + "source": "BNF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)040744256" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/146036991" + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Coordonn\u00e9es g\u00e9ographiques : E 43\u00b020' - E 50\u00b015' / S 12\u00b0 - S 25\u00b030'" + ] + } + ], + "pid": "276534921", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Afrique" + } + ], + "relation_pid": { + "value": "027238180", + "type": "redirect_from" + }, + "variant_access_point": [ + "R\u00e9publique Malgache (1960-)", + "Malgache, R\u00e9publique (1960-)", + "Madagascar (1960-)" + ], + "md5": "fc3b9c5f18410bed41ee3c387965a4b3" + }, + { + "authorized_access_point": "Anholt, Ch\u00e2teau de (Allemagne)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/276626370", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wasserburg Anholt / Eberhard G. Neumann. - M\u00fcnchen ; Berlin : Deutscher Kunstverlag, 1976" + ] + } + ], + "pid": "276626370", + "type": "bf:Place", + "variant_access_point": [ + "Wasserburg Anholt", + "Isselburg (Westphalie) - Ch\u00e2teau d\u2019Anholt" + ], + "md5": "a1481849e03c971258dbedd0f2f6a53f" + }, + { + "authorized_access_point": "Gelnhausen (Hesse, Allemagne) - Kaiserpfalz", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/276637674", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Gelnhausen : Kaiserpfalz : amtlicher F\u00fchrer / Wolfgang Einsingbach. - Bad Homburg vor der H\u00f6he : Verwaltung der Staatlichen Schl\u00f6sser und G\u00e4rten Hessen, 1980" + ] + } + ], + "pid": "276637674", + "type": "bf:Place", + "variant_access_point": [ + "Ch\u00e2teau de Gelnhausen (Gelnhausen, Allemagne)", + "Kaiserpfalz Gelnhausen (Gelnhausen, Allemagne)", + "Pfalz Gelnhausen (Gelnhausen, Allemagne)", + "Barbarossaburg (Gelnhausen, Allemagne)" + ], + "md5": "d06a3188cb11c9ba19d2f5bfe3b6f2e3" + }, + { + "authorized_access_point": "Roccantica (Italie) - Chiesa Santa Caterina d'Alessandria", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "720", + "name": "Architecture" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914", + "name": "G\u00e9ographie de l'Europe" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/276708083", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Pietro Coleberti e il ciclo pittorico di Santa Caterina a Roccantica / Giuseppe Cassio, 2023" + ] + }, + { + "noteType": "general", + "label": [ + "Via della Torre, 25, 02040 Roccantica RI, Italie" + ] + } + ], + "pid": "276708083", + "type": "bf:Place", + "variant_access_point": [ + "Chiesa Santa Caterina d'Alessandria (Roccantica, Italie)", + "Roccantica (Italie) - \u00c9glise Sainte Catherine d'Alexandrie", + "\u00c9glise Sainte Catherine d'Alexandrie (Roccantica, Italie)", + "Sainte Catherine (Roccantica, Italie)" + ], + "md5": "e20aabf09441c1655d23745c9962338e" + }, + { + "authorized_access_point": "Eltz, Ch\u00e2teau d\u2019(Allemagne)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/276783743", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Burg Eltz / Dieter Ritzenhofen. - 17. Auflage. - M\u00fcnchen ; Berlin : Deutscher Kunstverlag, 1989" + ] + } + ], + "pid": "276783743", + "type": "bf:Place", + "variant_access_point": [ + "Burg Eltz", + "Wierschem, Rh\u00e9nanie-Palatinat (Allemagne) - Ch\u00e2teau d\u2019Eltz" + ], + "md5": "8e204e2168e1d8bad82c47c7da1bc748" + }, + { + "authorized_access_point": "Desenberg, Ch\u00e2teau de (Allemagne)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/27678832X", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Der Desenberg bei Warburg, Kreis H\u00f6xter / [Cornelia Kneppe, Hans-Werner Peine]. - M\u00fcnster : Altertumskommission f\u00fcr Westfalen, 2000" + ] + } + ], + "pid": "27678832X", + "type": "bf:Place", + "variant_access_point": [ + "Der Desenberg", + "Der Daseburg", + "Warburg, Westphalie (Allemagne) - Ch\u00e2teau de Desenberg" + ], + "md5": "a3d428436ec1ad04d7192accb4ac6d5e" + }, + { + "authorized_access_point": "Leukerbad (Valais, Suisse) - Campus Studiengang Physiotherapie HES-SO", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/276828984", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Campus, HES-SO Studiengang Physiotherapie Leukerbad : Umbau : Schulgeb\u00e4ude = HES-SO, Campus \u00c9tudes de physioth\u00e9rapie Lo\u00e8che-les-Bains : transformation : b\u00e2timent scolaire / D\u00e9partement des finances et de l\u2019\u00e9nergie. Service immobilier et patrimoine. Section Investissement. - Canton du Valais, 2023" + ] + }, + { + "noteType": "general", + "label": [ + "Campus HES-SO des Etudes de physioth\u00e9rapie situ\u00e9 au Rathausstrasse 25 \u00e0 Lo\u00e8che-les-Bains. Ancienne clinique/h\u00f4pital pour la r\u00e9adaptation neurologique r\u00e9adapt\u00e9e en 2018 par l'Etat du Valais pour les besoins de la HES-SO" + ] + } + ], + "pid": "276828984", + "type": "bf:Place", + "variant_access_point": [ + "Lo\u00e8che-les-Bains (Valais, Suisse) - Campus Etudes de physioth\u00e9rapie HES-SO" + ], + "md5": "cd0b6be4baa4f9b59074b0218d23ea56" + }, + { + "authorized_access_point": "Lavaux-Saint-Anne (Belgique) - Ch\u00e2teau", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/276944135", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Erfgoed op de vlucht. Duitse bezetters, Vlaamse meesterwerken, een Waals kasteel / Bert Govaerts, 2024", + "2024/04/09 https://fr.wikipedia.org/wiki/Ch%C3%A2teau_de_Lavaux-Sainte-Anne" + ] + }, + { + "noteType": "general", + "label": [ + "Le ch\u00e2teau de Lavaux-Sainte-Anne est situ\u00e9 en Wallonie \u00e0 Lavaux-Sainte-Anne (5580) en Belgique pr\u00e8s de Rochefort, dans la province de Namur. Ne doit pas \u00eatre confondu avec Lavault-Sainte-Anne. La construction ayant commenc\u00e9 au 15e si\u00e8cle et termin\u00e9e au 16e si\u00e8cle, il s'agit d'une forteresse m\u00e9di\u00e9vale transform\u00e9e par des influences Renaissance. Lavaux-Sainte-Anne (en wallon Li V\u00e5-Sinte-Ane) est une section de la ville belge de Rochefort. C'\u00e9tait une commune \u00e0 part enti\u00e8re avant la fusion des communes de 1977." + ] + } + ], + "pid": "276944135", + "type": "bf:Place", + "md5": "a7c4236ba1d97c6c374a135be20423ab" + }, + { + "authorized_access_point": "Honstein, Ch\u00e2teau de (Allemagne)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/276970950", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Gehn wir mal auf den Honstein / Hansjoachim Stenzhorn. - 3. Aufflage. - Nordhausen : Eigenverlag, 2001" + ] + } + ], + "pid": "276970950", + "type": "bf:Place", + "variant_access_point": [ + "Burg Honstein", + "Burg Hohnstein", + "Burg Hohenstein", + "Nordhausen, Thuringe (Allemagne) - Ch\u00e2teau de Honstein" + ], + "md5": "3a494c6beac84926efd23e94f709773b" + }, + { + "authorized_access_point": "Meyrin (Gen\u00e8ve, Suisse) - Les Vergers", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/277221307", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Die institutionelle F\u00f6rderung des nachbarschaftlichen Miteinanders im Genfer \u00d6koviertel \u00abLes Vergers\u00bb : eine Untersuchung \u00fcber ihre Gestaltung und ihre Resonanz bei den \u00f6rtlichen Bewohner:innen / von Marc-Aur\u00e8le Dubois-Pelerin, 2023" + ] + }, + { + "noteType": "general", + "label": [ + "L'\u00e9coquartier Les Vergers comprend 1350 logements r\u00e9partis dans 30 b\u00e2timents. B\u00e2ti sur un terrain d'une superficie d'environ 16 hectares, il accueille environ 3'000 habitants et 10'000 m2 de surfaces commerciales. Ce quartier exemplaire est bas\u00e9 sur les trois piliers du d\u00e9veloppement durable : solidarit\u00e9 sociale, responsabilit\u00e9 environnementale et efficience \u00e9conomique. Il a \u00e9t\u00e9 finalis\u00e9 en 2023" + ] + } + ], + "pid": "277221307", + "type": "bf:Place", + "md5": "c467b4ba36c6b50cf6c181e1c8aecad6" + }, + { + "authorized_access_point": "Flossenb\u00fcrg (Allemagne) - Burgruine", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/27727382X", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Die Ruine Flossenb\u00fcrg : Auferstehung einer Burg des hohen und sp\u00e4ten Mittelalters / von Andreas Boos. - Flossenb\u00fcrg : Gemeinde Flossenb\u00fcrg, 1993." + ] + } + ], + "pid": "27727382X", + "type": "bf:Place", + "variant_access_point": [ + "ch\u00e2teau de Flossenb\u00fcrg (Flossenb\u00fcrg, Allemagne)", + "Burgruine Flossenb\u00fcrg (Flossenb\u00fcrg, Allemagne)", + "Ruine Flossenb\u00fcrg (Flossenb\u00fcrg, Allemagne)" + ], + "md5": "a0c1cf24fafc7aa35fa5fb329ab734ed" + }, + { + "authorized_access_point": "R\u00e9chy, Val de (Valais, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/277473284", + "source": "IDREF" + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1019952792" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Les richesses naturelles du Vallon de R\u00e9chy : en vue de sa mise sous protection / Ren\u00e9-Pierre Bille... et al., 1986", + "https://www.vs.ch/web/sites-naturels-proteges/val-de-rechy, 2024-05-01" + ] + }, + { + "noteType": "general", + "label": [ + "Vallon situ\u00e9 entre le val d'H\u00e9rens et le val d'Anniviers" + ] + } + ], + "pid": "277473284", + "type": "bf:Place", + "variant_access_point": [ + "R\u00e9chy, Vallon de (Valais, Suisse)" + ], + "md5": "0ac58f0d9375e4e039de3367246ddfda" + }, + { + "authorized_access_point": "Kasur (Pakistan)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/278628117", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Historical archives of Kasur / Amjad Zafar Ali, 2023", + "Internet, https://authorities.loc.gov, 2024-06-04" + ] + }, + { + "noteType": "general", + "label": [ + "Kasur est une ville pakistanaise, et capitale du district de Kasur, dans la province du Pendjab. Coordonn\u00e9es g\u00e9ographiques : E 74\u00b0 26'' 48'' / N 31\u00b0 6' 56''" + ] + } + ], + "pid": "278628117", + "type": "bf:Place", + "variant_access_point": [ + "\u0642\u0635\u0648\u0631 (Pakistan)", + "Qas\u016br (Pakistan)" + ], + "md5": "56a7bb93c479080375061ece59ef19e9" + }, + { + "authorized_access_point": "Forrest (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/278728596", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-06-10" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Livingston" + ] + } + ], + "pid": "278728596", + "type": "bf:Place", + "md5": "b79cabc651f8493c8c827e3105ceaff9" + }, + { + "authorized_access_point": "Azarori (Niger)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/278738230", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://fr.wikipedia.org/wiki/Azarori" + ] + }, + { + "noteType": "general", + "label": [ + "Azarori est une localit\u00e9 et une commune rurale du Niger, du d\u00e9partement de Madaoua, r\u00e9gion de Tahoua. Elle s'\u00e9tend sur 166 localit\u00e9s." + ] + } + ], + "pid": "278738230", + "type": "bf:Place", + "variant_access_point": [ + "Az\u00e9rori (Niger)", + "Arzerori (Niger)" + ], + "md5": "343fb36e44c238fc673bf70760a31195" + }, + { + "authorized_access_point": "Berlin (Allemagne) - Dorotheenst\u00e4dtischer Friedhof", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "390", + "name": "Ethnologie, anthropologie, folklore" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "710", + "name": "Urbanisme" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914" + } + ], + "closeMatch": [ + { + "authorized_access_point": "Dorotheenst\u00e4dtischer Friedhof (Berlin, Germany)", + "source": "LCSH" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/278747310", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18150875k", + "source": "BNF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Endzeiten : Wie G.W.F. Hegel, Dietrich Bonhoeffer, Heinrich Mann, Bertolt Brecht, Herbert Marcuse, Heiner M\u00fcller und Christa Wolf ihr nahes Ende lebten : Was der Tod mit ihrem Werk machte und wie er mit der Geschichte zusammenhing / Karl Heinz G\u00f6tze, 2023", + "Biblioth\u00e8que nationale, autorit\u00e9s, Allemagne : Dorotheenst\u00e4dtischer Friedhof (Berlin) - https://d-nb.info/gnd/4333021-6 (2024-06-05)" + ] + } + ], + "pid": "278747310", + "type": "bf:Place", + "variant_access_point": [ + "Dorotheenst\u00e4dtischer Friedhof (Berlin, Allemagne)" + ], + "md5": "6afa8b6092cb11dc39912d62df7786eb" + }, + { + "authorized_access_point": "Temple d'Hadrien (Rome, Italie)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/278850650", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Hadrianeum : il progetto architettonico e le fasi costruttive / Claudio Parisi Presicce, Massimo Baldi, [2024]", + "https://fr.wikipedia.org/wiki/Temple_d%27Hadrien, 2024-06-13" + ] + }, + { + "noteType": "general", + "label": [ + "Ancien temple romain situ\u00e9 sur la piazza di Pietra, au Champ de Mars, \u00e0 Rome, \u00e9rig\u00e9 en l'honneur de l'empereur Hadrien par son successeur Antonin le Pieux, en 145 apr. J.-C." + ] + } + ], + "pid": "278850650", + "type": "bf:Place", + "variant_access_point": [ + "Hadrianeum (Rome, Italie)", + "Hadrien, temple d' (Rome, Italie)", + "Rome (Italie) - Hadrianeum" + ], + "md5": "dcf9f768bea5fdf5ee47c8d2b9e289e4" + }, + { + "authorized_access_point": "Dalkey (Comt\u00e9 de Dublin, Irlande) - Monte Alverno", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/278893899", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Monte Alverno : an Irish private collection : auction in London, 16 May 2022 / Sotheby's, 2022" + ] + }, + { + "noteType": "general", + "label": [ + "Manoir construit vers 1835, agrandi et restaur\u00e9 en 1895" + ] + } + ], + "pid": "278893899", + "type": "bf:Place", + "variant_access_point": [ + "Monte Alverno (Dalkey, Comt\u00e9 de Dublin, Irlande)" + ], + "md5": "aad49f31f40bde0547e3d238f0155596" + }, + { + "authorized_access_point": "Ferrare (Italie) - Palazzo dei Diamanti", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/278918964", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Palazzo dei Diamanti : contributi per il restauro / a cura di Carla Di Francesco, 1991", + "https://www.palazzodiamanti.it/en/about-us/, 2024-06-18", + "https://www.comune.fe.it/it/z/384/view?modelClass=open20%5Cagid%5Corganizationalunit%5Cmodels%5CAgidOrganizationalUnit&view=detailAgidOrgUnit, 2024-05-03", + "https://viaf.org/processed/RERO%7CA006071632, 2024-05-30" + ] + }, + { + "noteType": "general", + "label": [ + "Le palais, con\u00e7u par Biagio Rossetti, fut construit \u00e0 partir de 1493 pour le compte de Sigismondo d\u2019Este, fr\u00e8re du duc Hercule Ier d\u2019Este. Le b\u00e2timent fut achet\u00e9 par la municipalit\u00e9 de Ferrare en 1832. Devenu espace d'exposition, il d\u00e9pendait de la Galleria civica d'arte moderna - comprise d\u00e9sormais dans les Gallerie d'Arte Moderna e Contemporanea - et d\u00e9pend actuellement (2024) de la Fondazione Ferrara Arte." + ] + } + ], + "pid": "278918964", + "type": "bf:Place", + "variant_access_point": [ + "Palazzo dei Diamanti (Ferrare, Italie)", + "Ferrare (Italie) - Palais des diamants", + "Palais des diamants (Ferrare, Italie)" + ], + "md5": "b7e82d8d041adf9c490a474426f19061" + }, + { + "authorized_access_point": "Lardy (Essonne, France) - Parc Boussard", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "710", + "name": "Urbanisme" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "912" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279034989", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18152832s", + "source": "BNF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Ville de Lardy - https://www.ville-lardy.fr/tourisme/parcs-et-jardins/le-parc-boussard (2024-06-14)", + "Le parc Boussard / A-S. Godot, 2024" + ] + }, + { + "noteType": "general", + "label": [ + "Ancien parc priv\u00e9 de style Art d\u00e9co cr\u00e9\u00e9 entre 1927 et 1930 par l'architecte Joseph Marrast pour le n\u00e9gociant Henri Boussard" + ] + } + ], + "pid": "279034989", + "type": "bf:Place", + "relation_pid": { + "value": "27949002X", + "type": "redirect_from" + }, + "variant_access_point": [ + "Boussard, Parc (Lardy, Essonne)", + "Parc Boussard (Lardy, Essonne)" + ], + "md5": "9ed9ccea91d062affa9d0f192eb9760e" + }, + { + "authorized_access_point": "Enewetak (Atoll)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279121369", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/315128069" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Seismic-refraction studies of Eniwetok Atoll / by Russell W. Raitt, 1957." + ] + }, + { + "noteType": "general", + "label": [ + "Atoll des iles Marshall" + ] + } + ], + "pid": "279121369", + "type": "bf:Place", + "variant_access_point": [ + "Eniwetok (Atoll)" + ], + "md5": "9757fb07a0e8870ef0631ff0561b0046" + }, + { + "authorized_access_point": "Strawn (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279128800", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-01" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Livingston" + ] + } + ], + "pid": "279128800", + "type": "bf:Place", + "md5": "b057072c01f90823dbd1a43f8d9957ae" + }, + { + "authorized_access_point": "Sibley (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/27912886X", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-01" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Ford" + ] + } + ], + "pid": "27912886X", + "type": "bf:Place", + "md5": "aeaf29a660adbc283c4f2503fea438a8" + }, + { + "authorized_access_point": "Guthrie (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279128959", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-01" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Ford" + ] + } + ], + "pid": "279128959", + "type": "bf:Place", + "md5": "57ef7ecd555fe58c7b46dd346e498bbf" + }, + { + "authorized_access_point": "Karunki (Finlande)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279129467", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Suomen geologinen kartta Lehti 2542+2524 = =Geological map of Finland : kallioper\u00e4kartta / Geologisen tutkimuslaitoksen julkaisema ; Tehnyt Vesa Perttunen, 1972.", + "http://www.geonames.org/653831/karunki.html , 2024-07-01" + ] + }, + { + "noteType": "general", + "label": [ + "Ville de Finlande, Laponie" + ] + } + ], + "pid": "279129467", + "type": "bf:Place", + "md5": "72b38eb170a5469f62ee7d61ff97afeb" + }, + { + "authorized_access_point": "Polo (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279129912", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-01" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 d'Ogle" + ] + } + ], + "pid": "279129912", + "type": "bf:Place", + "md5": "6424c65d9e66ebee4d47caebd5bc59ff" + }, + { + "authorized_access_point": "Kotka (Finlande)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279129920", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Suomen geologinen kartta Lehti 3041 = =Geological map of Finland : kallioper\u00e4kartta / Geologisen tutkimuslaitoksen julkaisema ; Tehnyt Matti Laitala & Ahti Simonen, 1972." + ] + }, + { + "noteType": "general", + "label": [ + "Commune de Finlande, r\u00e9gion Vall\u00e9e de la Kymi; Absorbe le comt\u00e9 de Haapasaari en 1974" + ] + } + ], + "pid": "279129920", + "type": "bf:Place", + "md5": "ca74cf67685ce489aedd3d25f6266ba9" + }, + { + "authorized_access_point": "Rock Falls (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279130252", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-01" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Whiteside" + ] + } + ], + "pid": "279130252", + "type": "bf:Place", + "md5": "4e766d6cad006f1f3b33694c252e17a0" + }, + { + "authorized_access_point": "Barcena de Cicero (Espagne) - Iglisia San Pelayo de Cicero", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "200", + "name": "Religion (ouvrages g\u00e9n\u00e9raux et comparatifs)" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "690", + "name": "B\u00e2timent" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "720", + "name": "Architecture" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279131321", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "El retablo mayor de Cicero : historia y restauraci\u00f3n / Julio J. Polo S\u00e1nchez, Rocio Espejo-Saavedra, 1996", + "Blog : https://iglesiasdecantabria-blogspot-com.translate.goog/2009/05/cicero.html?_x_tr_sl=es&_x_tr_tl=fr&_x_tr_hl=fr&_x_tr_pto=sc (01-07-2024)" + ] + }, + { + "noteType": "general", + "label": [ + "Eglise du milieu du XVIe si\u00e8cle. Son retable principal est l'un des exemples les plus remarquables de Cantabrie. Dat\u00e9 de 1633, il a \u00e9t\u00e9 assembl\u00e9 par Rodrigo de los Corrales et poss\u00e8de des sculptures de Juan de Palacio" + ] + } + ], + "pid": "279131321", + "type": "bf:Place", + "variant_access_point": [ + "\u00c9glise de San Pelayo de Cicero (Barcena de Cicero, Espagne)", + "Iglesia de San Pelayo de Cicero (Barcena de Cicero, Espagne)" + ], + "md5": "8cbfc3fc64ea8f0e52c33c4897fe7c41" + }, + { + "authorized_access_point": "Windsor (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279131356", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-01" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Shelby" + ] + } + ], + "pid": "279131356", + "type": "bf:Place", + "md5": "3b3d675e5c1487c50b25acdcbc38dbd2" + }, + { + "authorized_access_point": "Strasburg (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/27913150X", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-01" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Shelby" + ] + } + ], + "pid": "27913150X", + "type": "bf:Place", + "md5": "3ec702510fa45cb4812e29f3fbd44996" + }, + { + "authorized_access_point": "Stewardson (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279131593", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-01" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Shelby" + ] + } + ], + "pid": "279131593", + "type": "bf:Place", + "md5": "b8fa23bd85e02dc9a3a6699a832a3a31" + }, + { + "authorized_access_point": "Long Point (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279132409", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-01" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Livingston" + ] + } + ], + "pid": "279132409", + "type": "bf:Place", + "md5": "9772882274157a874b5fa6feb18a070f" + }, + { + "authorized_access_point": "Aydin", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279132581", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://fr.wikipedia.org/wiki/Ayd%C4%B1n" + ] + }, + { + "noteType": "general", + "label": [ + "ville de Turquie" + ] + } + ], + "pid": "279132581", + "type": "bf:Place", + "variant_access_point": [ + "Tralles", + "A\u00efdini" + ], + "md5": "ff6dad013bcc4872077c9386fba86a5d" + }, + { + "authorized_access_point": "Roum\u00e9lie", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279133782", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://fr.wikipedia.org/wiki/Roum%C3%A9lie" + ] + }, + { + "noteType": "general", + "label": [ + "partie de la p\u00e9ninsule balkanique sous domination ottomane" + ] + } + ], + "pid": "279133782", + "type": "bf:Place", + "variant_access_point": [ + "Rumeli", + "Rumelia" + ], + "md5": "2e5d16fce1338e386547eb5f7dfd3004" + }, + { + "authorized_access_point": "Jacona de Plancarte (Mexico)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/27913438X", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "https://viaf.org/viaf/134019187" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Jacona y Zamora : datos hist\u00f3ricos, \u00fatiles y curiosos / Arturo Rodriguez Zetina, 1956", + "Nuestra Se\u00f1ora de la Esperanza, 1997:", + "GEOnet, Dec. 7, 1999" + ] + }, + { + "noteType": "general", + "label": [ + "Ville de Jacona de Plancarte (Jacona), dans l'\u00e9tat de Michoac\u00e1n" + ] + } + ], + "pid": "27913438X", + "type": "bf:Place", + "md5": "ca3e10e5e2bb95615909f70ca7392ea9" + }, + { + "authorized_access_point": "Sumner (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/27913469X", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-01" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Lawrence" + ] + } + ], + "pid": "27913469X", + "type": "bf:Place", + "md5": "ca478dec04f28509575741ba28ad4850" + }, + { + "authorized_access_point": "Maple Park (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279135130", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-01" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Kane" + ] + } + ], + "pid": "279135130", + "type": "bf:Place", + "md5": "5ee7bd8a2871cff66c245f5b18c4fcd2" + }, + { + "authorized_access_point": "Hinckley (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279135289", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-01" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de DeKalb" + ] + } + ], + "pid": "279135289", + "type": "bf:Place", + "md5": "87b84221caf6a866ebf54e5acd7fac89" + }, + { + "authorized_access_point": "Buckhart (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279135777", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-01" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Sangamon" + ] + } + ], + "pid": "279135777", + "type": "bf:Place", + "md5": "593cae1125c3e00cbf28441e83c19ca7" + }, + { + "authorized_access_point": "Edinburg (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279135890", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-01" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Christian" + ] + } + ], + "pid": "279135890", + "type": "bf:Place", + "md5": "7fa919b68373e2afd2869fd921689721" + }, + { + "authorized_access_point": "Bursa", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279136730", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://fr.wikipedia.org/wiki/Bursa" + ] + }, + { + "noteType": "general", + "label": [ + "ville de Turquie" + ] + } + ], + "pid": "279136730", + "type": "bf:Place", + "variant_access_point": [ + "Brousse", + "Prousa", + "\u03a0\u03c1\u03bf\u1fe6\u03c3\u03b1", + "Pruse" + ], + "md5": "01239b3c6f3b03cb972de9ff07ba16d0" + }, + { + "authorized_access_point": "Susurluk", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279136900", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://fr.wikipedia.org/wiki/Susurluk" + ] + }, + { + "noteType": "general", + "label": [ + "Ville de Turquie" + ] + } + ], + "pid": "279136900", + "type": "bf:Place", + "md5": "6e0b7b87236a06bd2a2d02d1441399dc" + }, + { + "authorized_access_point": "Bade-Wurtemberg (Allemagne ; sud)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279146884", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Konstanz / copied in 1951 from Central Europe, 1:250,000, GSGS, sheet L48, 1943 ; prepared by the Army map service (AMS), corps of engineers, U.S. army, Washington D.C. ; main communications revised from intelligence data, 1951, universal transverse Mercator grid added and marginal data revised by AMS ; printed by Army map service, corps of engineers, 10-1951, 1951" + ] + } + ], + "pid": "279146884", + "type": "bf:Place", + "md5": "c2eec8028abd641fdf819c803e955068" + }, + { + "authorized_access_point": "Sigel (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279147546", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-02" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Shelby" + ] + } + ], + "pid": "279147546", + "type": "bf:Place", + "md5": "36f85182961b4d1bd345dc4570a45586" + }, + { + "authorized_access_point": "Teutopolis (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279147708", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-02" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 d'Effingham" + ] + } + ], + "pid": "279147708", + "type": "bf:Place", + "md5": "e0d4b0e002ca839f4fec19de5e1bc0ab" + }, + { + "authorized_access_point": "Wheeler (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/27914783X", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-02" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Jasper" + ] + } + ], + "pid": "27914783X", + "type": "bf:Place", + "md5": "d28710a21ad9a15b9b1960dc3715e021" + }, + { + "authorized_access_point": "Illmo (Mo.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279148232", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-02" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Scott" + ] + } + ], + "pid": "279148232", + "type": "bf:Place", + "md5": "33c800440874e2471747a8fc95adadda" + }, + { + "authorized_access_point": "Thebes (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279148658", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-02" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 d'Alexander" + ] + } + ], + "pid": "279148658", + "type": "bf:Place", + "md5": "fb2550902fd40fd1bde57ea9d7f2ff84" + }, + { + "authorized_access_point": "Miller City (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279148739", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-02" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 d'Alexander" + ] + } + ], + "pid": "279148739", + "type": "bf:Place", + "md5": "c4f185941c75b4949e7a0fc1ab6f5b12" + }, + { + "authorized_access_point": "Isso (Espagne)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279149492", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Isso / Hergestellt im Auftrage Gen St d H Abt f Kr Kart u Verm Wes (II), 1941", + "http://www.geonames.org, 2024-07-02" + ] + }, + { + "noteType": "general", + "label": [ + "N 38\u00b029\u203227\u2033 W 1\u00b044\u203234\u2033" + ] + } + ], + "pid": "279149492", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Castille-La Manche (Espagne)" + } + ], + "md5": "7117e887358386c5ae78986fabee1efe" + }, + { + "authorized_access_point": "Tandil, Sierra del (Argentine)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "915" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279149522", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Atlas geografico de la republica argentina / Instituto geogr\u00e1fico militar, 2001", + "L'Atlas national geographic, 2007" + ] + }, + { + "noteType": "dataNotFound", + "label": [ + "LCSH, 2024-06-27" + ] + } + ], + "pid": "279149522", + "type": "bf:Place", + "md5": "f94a1344b7e39eec0870b92607caead9" + }, + { + "authorized_access_point": "Embarrass river (Ill. ; cours d'eau)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279150350", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-02" + ] + } + ], + "pid": "279150350", + "type": "bf:Place", + "md5": "1e8e1fa8d47d5212113bf81395a178f4" + }, + { + "authorized_access_point": "Toledo (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279150504", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-02" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Cumberland" + ] + } + ], + "pid": "279150504", + "type": "bf:Place", + "md5": "abafb935a61c3fc874f2737bdd93e028" + }, + { + "authorized_access_point": "Atwood (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279150911", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-02" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Douglas et Platt" + ] + } + ], + "pid": "279150911", + "type": "bf:Place", + "md5": "40a8d41b29477a3d6af176bec60a9419" + }, + { + "authorized_access_point": "Tuscola (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279150989", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-02" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Douglas" + ] + } + ], + "pid": "279150989", + "type": "bf:Place", + "md5": "8f0c1690a79f94d030483a9499e54053" + }, + { + "authorized_access_point": "Olvega (Espagne)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279152426", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/238431643" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Mapa geol\u00f3gico de Espa\u00f1a E. 1:50 000 351 / Instituto geol\u00f3gico y minero de Espa\u00f1a ; M. Mart\u00edn Fern\u00e1ndez, J.M. Esnaola G\u00f3mez, 1972, DL 1973.", + "https://www.geonames.org/3115088/olvega.html, 2024-07-02" + ] + }, + { + "noteType": "general", + "label": [ + "Vile, province de Soria" + ] + } + ], + "pid": "279152426", + "type": "bf:Place", + "md5": "200c27f2be53981a2e26f54f2457d1f2" + }, + { + "authorized_access_point": "Vienna (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/27915397X", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-02" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Johnson" + ] + } + ], + "pid": "27915397X", + "type": "bf:Place", + "md5": "ffce17c0debf7487d0a1ff953850204b" + }, + { + "authorized_access_point": "Karnak (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279154097", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-02" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Pulaski" + ] + } + ], + "pid": "279154097", + "type": "bf:Place", + "md5": "8558aea92d60b1b6f64d8746f0e01cb1" + }, + { + "authorized_access_point": "Philo (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279154437", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-02" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Champaign" + ] + } + ], + "pid": "279154437", + "type": "bf:Place", + "md5": "90fa8f60ebd98723518d549b1690aee8" + }, + { + "authorized_access_point": "Villa Grove (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279154488", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-02" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Douglas" + ] + } + ], + "pid": "279154488", + "type": "bf:Place", + "md5": "989e34655e484bd3522b17db285af646" + }, + { + "authorized_access_point": "Kar\u015fiaka", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279154542", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://calames.abes.fr/pub/ms/Calames-202405241694556323" + ] + }, + { + "noteType": "general", + "label": [ + "ville de la province d'\u0130zmir, rquie" + ] + } + ], + "pid": "279154542", + "type": "bf:Place", + "variant_access_point": [ + "Kordeli\u00f3" + ], + "md5": "18057d1859e68c613044140e09dec668" + }, + { + "authorized_access_point": "Hugo (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279154593", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://en.wikipedia.org/wiki/Hugo,_Illinois/, 2024-07-02" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Douglas" + ] + } + ], + "pid": "279154593", + "type": "bf:Place", + "md5": "3437e2496ac1ecfea6767fe20d159182" + }, + { + "authorized_access_point": "Sylvania Tablemount (iles Marshall)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279156766", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/315167742" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Lower Eocene phosphatized Globigerina ooze from Sylvania Guyot / by Edwin L. Hamilton and Robert W. Rex, 1959." + ] + }, + { + "noteType": "general", + "label": [ + "Guyot ou Tablemount, mont sous-marin volcanique" + ] + } + ], + "pid": "279156766", + "type": "bf:Place", + "variant_access_point": [ + "W\u014ddejebato (iles Marshall)" + ], + "md5": "ccb3c584c67322b2364f2efba7069665" + }, + { + "authorized_access_point": "Virginia (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279158475", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-02" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Cass" + ] + } + ], + "pid": "279158475", + "type": "bf:Place", + "md5": "02a8319bf25fafff860481196645362f" + }, + { + "authorized_access_point": "Portuguese Hill (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279158599", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-02" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Morgan" + ] + } + ], + "pid": "279158599", + "type": "bf:Place", + "md5": "edb754410ec97784914b7a2a472ceba1" + }, + { + "authorized_access_point": "Elliottstown (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/27915948X", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-02" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 d'Effingham" + ] + } + ], + "pid": "27915948X", + "type": "bf:Place", + "md5": "c56c9c5b0b867a69fa773296d063f0dd" + }, + { + "authorized_access_point": "G\u00e9rontas", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279166303", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://web.archive.org/web/20240127115300/https://www.slate.fr/story/221376/grecs-empire-ottoman-revolution-independance-guerre" + ] + }, + { + "noteType": "general", + "label": [ + "village grec d'Asie Mineure face \u00e0 l'\u00eele de Farmakonisi" + ] + } + ], + "pid": "279166303", + "type": "bf:Place", + "md5": "79c3beb264cd6fc1d10482c096ec5606" + }, + { + "authorized_access_point": "Kayak\u00f6y", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279167334", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://fr.wikipedia.org/wiki/Kayak%C3%B6y" + ] + }, + { + "noteType": "general", + "label": [ + "quartier du district de Fethiye dans la province de Mu\u011fla - Turquie" + ] + } + ], + "pid": "279167334", + "type": "bf:Place", + "variant_access_point": [ + "\u039b\u03b9\u03b2\u03af\u03c3\u03c3\u03b9", + "Livissi" + ], + "md5": "6de7db978df3664cb09732ed86493b62" + }, + { + "authorized_access_point": "Venta de C\u00e1rdenas (Espagne)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/27918669X", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Venta de C\u00e1rdenas / Hergestellt im Auftrage Gen St d H Abt f Kr Kart u Verm Wes (II), 1941", + "http://www.geonames.org, 2024-07-03" + ] + }, + { + "noteType": "general", + "label": [ + "N 38\u00b025\u203200\u2033 W 3\u00b029\u203249\u2033" + ] + } + ], + "pid": "27918669X", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Castille-La Manche (Espagne)" + } + ], + "md5": "4248ecc50dac11be42f1e281180af156" + }, + { + "authorized_access_point": "Qasr al-Lebia (Lybie ; site arch\u00e9ologique)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279187610", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "From Wilderness to Paradise. A Sixth-Century Mosaic Pavement at Qasr el-Lebia in Cyrenaica, Libya / Jane Chick" + ] + }, + { + "noteType": "general", + "label": [ + "Ville situ\u00e9e \u00e0 66 km au nord-ouest de Bayda. Site arch\u00e9ologique remarquable pour ses mosa\u00efques byzantines" + ] + } + ], + "pid": "279187610", + "type": "bf:Place", + "variant_access_point": [ + "Qasr Libya", + "Qasr Lebia" + ], + "md5": "4dff642b1377be66d0a3e957ed887055" + }, + { + "authorized_access_point": "Harmon (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279188994", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-03" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Lee" + ] + } + ], + "pid": "279188994", + "type": "bf:Place", + "md5": "6ef3acbf90c2880c1a13b8d6f6e453dd" + }, + { + "authorized_access_point": "Walnut (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279189087", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-03" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Bureau" + ] + } + ], + "pid": "279189087", + "type": "bf:Place", + "md5": "aff764d6ec8af84ef224bd07700ca64b" + }, + { + "authorized_access_point": "New Bedford (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279189249", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-03" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Bureau" + ] + } + ], + "pid": "279189249", + "type": "bf:Place", + "md5": "68edd13ff89e9af0eaa16f197ec50a83" + }, + { + "authorized_access_point": "San Pablo Huitzo (Mexique)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279192576", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "https://viaf.org/viaf/157285506" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "El exconvento y templo de San Pablo Huitzo, 1995:", + "BGN gaz. of Mexico", + "Historia del corregimiento de Guaxolotitlan (Huitzo) durante la colonia, siglos XVI al XIX, 2000:", + "GEOnet, Mar. 1, 2004" + ] + } + ], + "pid": "279192576", + "type": "bf:Place", + "variant_access_point": [ + "Huitzo (Mexique)" + ], + "md5": "f7da4bd5b4f4ea76d4717f7c27bc6d94" + }, + { + "authorized_access_point": "Curran (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/27919269X", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-02" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Sangamon" + ] + } + ], + "pid": "27919269X", + "type": "bf:Place", + "md5": "607b3d897515bd0e835ed5637587e79a" + }, + { + "authorized_access_point": "Waverly (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279192800", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-03" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Morgan" + ] + } + ], + "pid": "279192800", + "type": "bf:Place", + "md5": "a8fac4604fa20218fb3260d661188ff9" + }, + { + "authorized_access_point": "Bluford (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/27919305X", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-03" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Jefferson" + ] + } + ], + "pid": "27919305X", + "type": "bf:Place", + "md5": "92c2a26147788191436e4671b7a575a4" + }, + { + "authorized_access_point": "Wayne City (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279193092", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-03" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Wayne" + ] + } + ], + "pid": "279193092", + "type": "bf:Place", + "md5": "35df04de5fc8cbc620a79ec23953dc11" + }, + { + "authorized_access_point": "Sims (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279193181", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-03" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Wayne" + ] + } + ], + "pid": "279193181", + "type": "bf:Place", + "md5": "4dcd63c1f0cf5dc37f98f601e5e8b0af" + }, + { + "authorized_access_point": "Johnson City (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/27919336X", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://fr.wikipedia.org/wiki/Johnston_City/, 2024-07-03" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Williamson" + ] + } + ], + "pid": "27919336X", + "type": "bf:Place", + "md5": "c632b9b7d13fd873c445557afd0e1d40" + }, + { + "authorized_access_point": "Itasca (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279193750", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-03" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de DuPage" + ] + } + ], + "pid": "279193750", + "type": "bf:Place", + "md5": "0b81a7d93bcb3dca04afc98eb6594310" + }, + { + "authorized_access_point": "Shabeellaha Dhexe (Somalie ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279199929", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "GeoNames (2024-07-03)" + ] + }, + { + "noteType": "general", + "label": [ + "Shabeellaha Dhexe est une r\u00e9gion du sud est de la Somalie, avec fa\u00e7ade orientale sur l'Oc\u00e9an Indien, limitrophe des provinces somalies de Galguduud au nord-est, de Hiiraan au nord, et de Shabeellaha Hoose et de Banaadir au sud-ouest.", + "Coordonn\u00e9es en degr\u00e9s s\u00e9xag\u00e9simaux : N 3\u00b000\u203200\u2033 / E 46\u00b000\u203200\u2033" + ] + } + ], + "pid": "279199929", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Somalie" + } + ], + "variant_access_point": [ + "Middle Shebelle" + ], + "md5": "cdd35bf4fb728de12548b448843d2b92" + }, + { + "authorized_access_point": "Beas de Segura (Espagne)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279200471", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Beas de Segura / Hergestellt im Auftrage Gen St d H Abt f Kr Kart u Verm Wes (II), 1941", + "http://www.geonames.org, 2024-07-03" + ] + }, + { + "noteType": "general", + "label": [ + "N 38\u00b015\u203209\u2033 W 2\u00b053\u203220\u2033" + ] + } + ], + "pid": "279200471", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Andalousie (Espagne)" + } + ], + "md5": "88eaa12f0a0987e2998eb5ad78c4104d" + }, + { + "authorized_access_point": "Dauphin\u00e9 (France) - 1349 (Annexion \u00e0 la France)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279207646", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Rattachement du Dauphin\u00e9 \u00e0 la France, 1349-1949 : exposition organis\u00e9e pour le VIe centenaire au Ch\u00e2teau de Versailles, 28 septembre-15 novembre 1949 / [catalogue r\u00e9dig\u00e9 par Mademoiselle Marguerite Jallut] ; [avant-propos de Maurichau-Beaupr\u00e9], 1949" + ] + } + ], + "pid": "279207646", + "type": "bf:Place", + "md5": "1d6414559170c7d5adb2073c05210111" + }, + { + "authorized_access_point": "Jurong Shi (Chine)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279209592", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia, https://zh.wikipedia.org/wiki/%E5%8F%A5%E5%AE%B9%E5%B8%82, 2024-07-04", + "\u8a66\u8fa6\u53e5\u5bb9\u7e23\u4eba\u53e3\u8fb2\u696d\u7e3d\u8abf\u67e5\u5831\u544a : \u6c11\u570b\u4e8c\u5341\u4e09\u5e74 / \u5433\u76f8\u6e58 \u4e3b\u7de8, 1971", + "Shi ban Jurong xian ren kou nong ye zong diao cha bao gao : min guo er shi san nian / Wu Xiangxiang zhu bian, 1971" + ] + }, + { + "noteType": "general", + "label": [ + "Ville-district de la province du Jiangsu" + ] + } + ], + "pid": "279209592", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Jiangsu Sheng (Chine ; province)" + } + ], + "variant_access_point": [ + "\u53e5\u5bb9\u53bf", + "\u53e5\u5bb9\u7e23", + "Jurong Xian", + "\u53e5\u5bb9\u5e02", + "Jurong Shi" + ], + "md5": "9394142ae14379e7b4e0f05d0dac6907" + }, + { + "authorized_access_point": "Wilmington (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279209754", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-04" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Will" + ] + } + ], + "pid": "279209754", + "type": "bf:Place", + "md5": "658a59b8e80bc980096dd365b8544843" + }, + { + "authorized_access_point": "Braidwood (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279209886", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-04" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Will" + ] + } + ], + "pid": "279209886", + "type": "bf:Place", + "md5": "f33a09f456d0269f742019f00ada6446" + }, + { + "authorized_access_point": "Yetas de Abajo (Espagne)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279210809", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Yetas de Abajo / Hergestellt im Auftrage Gen St d H Abt f Kr Kart u Verm Wes (II), 1941", + "http://www.geonames.org, 2024-07-04" + ] + }, + { + "noteType": "general", + "label": [ + "N 38\u00b014\u203207\u2033 W 2\u00b019\u203237\u2033" + ] + } + ], + "pid": "279210809", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Castille-La Manche (Espagne)" + } + ], + "md5": "e1027ccda160f07ee330a64807bf5c3c" + }, + { + "authorized_access_point": "Winchester (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279211066", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-04" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Scott" + ] + } + ], + "pid": "279211066", + "type": "bf:Place", + "md5": "8f85b59dc425916e660374bbb28c7109" + }, + { + "authorized_access_point": "Barrow (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279211147", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-04" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Greene" + ] + } + ], + "pid": "279211147", + "type": "bf:Place", + "md5": "3f57dde4c2ca55880fb04fb71c95200f" + }, + { + "authorized_access_point": "Rio (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279214944", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-04" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Knox" + ] + } + ], + "pid": "279214944", + "type": "bf:Place", + "md5": "bb77e781b3461c0117846a49883543b5" + }, + { + "authorized_access_point": "Wataga (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279214960", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-04" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Knox" + ] + } + ], + "pid": "279214960", + "type": "bf:Place", + "md5": "23a0b54f8538d799309ff993cf4bcef0" + }, + { + "authorized_access_point": "Xenia (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279215142", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-04" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Clay" + ] + } + ], + "pid": "279215142", + "type": "bf:Place", + "md5": "64e75fd6da311718953505b290d3c161" + }, + { + "authorized_access_point": "Johnsonville (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279215258", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-04-07" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Wayne" + ] + } + ], + "pid": "279215258", + "type": "bf:Place", + "md5": "9a02247b775029a4930ef0b8e30cf811" + }, + { + "authorized_access_point": "Orchardville (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279215347", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-04" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Wayne" + ] + } + ], + "pid": "279215347", + "type": "bf:Place", + "md5": "5582904fb702a051eb2d6c1b9e41ec05" + }, + { + "authorized_access_point": "De Gonia Springs (Ind.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279219717", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-04" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Warrick" + ] + } + ], + "pid": "279219717", + "type": "bf:Place", + "variant_access_point": [ + "Degonia Springs" + ], + "md5": "00d0b51bb0e6d428ce20485aaeb5abaf" + }, + { + "authorized_access_point": "Gaoqing Xian (Chine)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279221487", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia, https://zh.wikipedia.org/wiki/%E9%AB%98%E9%9D%92%E5%8E%BF, 2024-07-04", + "\u9ad8\u9752\u53bf\u5fd7 / \u9ad8\u9752\u53bf\u5730\u65b9\u53f2\u5fd7\u7f16\u7e82\u59d4\u5458\u4f1a\u7f16, 1991", + "Gaoqing xian zhi / Gaoqing xian di fang shi zhi bian zuan wei yuan hui bian, 1991" + ] + }, + { + "noteType": "general", + "label": [ + "District de la province du shandong" + ] + } + ], + "pid": "279221487", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Shandong (Chine)" + } + ], + "variant_access_point": [ + "\u9ad8\u9752\u7e23", + "\u9ad8\u9752\u53bf", + "Gaoqing Xian" + ], + "md5": "b77b47f0ae4b9069683f18e289495865" + }, + { + "authorized_access_point": "Villar San Costanzo (Italie) - Chiesa di San Costanzo sul Monte", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279230087", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "L'antica chiesa di San Costanzo sul monte in Villar San Costanzo (Cuneo) / Eugenio Olivero, 1929" + ] + } + ], + "pid": "279230087", + "type": "bf:Place", + "md5": "439f98e6a04077d2e4f8828786549c25" + }, + { + "authorized_access_point": "Big Blue river (Ind.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279231547", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-05", + "https://en.wikipedia.org/wiki/Big_Blue_River_(Indiana), 2024-07-05" + ] + }, + { + "noteType": "general", + "label": [ + "La Big Blue River est un affluent de la Driftwood River d'une longueur dans le centre-est de l'Indiana aux \u00c9tats-Unis. Par l'interm\u00e9diaire des rivi\u00e8res Driftwood, White, Wabash et Ohio, elle fait partie du bassin versant du fleuve Mississippi. La rivi\u00e8re prend sa source dans le nord-est du comt\u00e9 de Henry et s'\u00e9coule g\u00e9n\u00e9ralement vers le sud-ouest \u00e0 travers les comt\u00e9s de Rush, Hancock, Shelby et Johnson, en passant par les villes de New Castle, Knightstown, Carthage, Morristown, Shelbyville et Edinburgh" + ] + } + ], + "pid": "279231547", + "type": "bf:Place", + "variant_access_point": [ + "Blue river" + ], + "md5": "55f9a749176fa518b797765bd2868f8a" + }, + { + "authorized_access_point": "Driftwood river (Ind.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279231679", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-05", + "https://en.wikipedia.org/wiki/Driftwood_River/, 2024-07-05" + ] + }, + { + "noteType": "general", + "label": [ + "La Driftwood River se forme dans le sud-est du comt\u00e9 de Johnson \u00e0 l'ouest d'Edinburgh, au confluent de la Sugar Creek et de la Big Blue River. Elle s'\u00e9coule g\u00e9n\u00e9ralement vers le sud \u00e0 travers le nord-ouest du comt\u00e9 de Bartholomew jusqu'\u00e0 Columbus, o\u00f9 elle rejoint la rivi\u00e8re Flatrock pour former l'East Fork of the White River" + ] + } + ], + "pid": "279231679", + "type": "bf:Place", + "md5": "b783594d699fa5cf1fad407ad80fd83c" + }, + { + "authorized_access_point": "West Union (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279233493", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-05" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Clark" + ] + } + ], + "pid": "279233493", + "type": "bf:Place", + "md5": "f16c91710875c8c0c5e2548b92b65999" + }, + { + "authorized_access_point": "Hutsonville (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279233639", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-04-05" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Crawford" + ] + } + ], + "pid": "279233639", + "type": "bf:Place", + "md5": "34d0fb64d8d21e1927be8fa559ee5dc3" + }, + { + "authorized_access_point": "Robinson (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279233752", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-05" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Crawford" + ] + } + ], + "pid": "279233752", + "type": "bf:Place", + "md5": "db9b9a44821db7c8b92677d9d8a5d529" + }, + { + "authorized_access_point": "Whitewater river (Ohio ; cours d'eau )", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279236417", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-05", + "https://en.wikipedia.org/wiki/Whitewater_River_(Great_Miami_River_tributary)/, 2024-07-05" + ] + }, + { + "noteType": "general", + "label": [ + "La rivi\u00e8re Whitewater est un affluent droit de la rivi\u00e8re Great Miami, qui coule vers le sud, dans le sud-est de l'Indiana et le sud-ouest de l'Ohio, aux \u00c9tats-Unis" + ] + } + ], + "pid": "279236417", + "type": "bf:Place", + "md5": "72c37ebbe9e4af60504a12988caec574" + }, + { + "authorized_access_point": "Elizabethtown (Ohio)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279236611", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-05" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Hamilton" + ] + } + ], + "pid": "279236611", + "type": "bf:Place", + "md5": "fb00933b49c48d3b7c09fac50ab96291" + }, + { + "authorized_access_point": "Petersburg (Ky.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279236697", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-05" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Boone" + ] + } + ], + "pid": "279236697", + "type": "bf:Place", + "md5": "6cdda810a8b8f83a40372d411e4dfc2c" + }, + { + "authorized_access_point": "Somerville (Ind.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279238037", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-04" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Gibson" + ] + } + ], + "pid": "279238037", + "type": "bf:Place", + "md5": "0c109951ac5a8f4b984fe0a156d7aa56" + }, + { + "authorized_access_point": "Banan Qu (Chongqing, Chine)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279245947", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia, https://zh.wikipedia.org/wiki/%E5%B7%B4%E5%8D%97%E5%8C%BA, 2024-07-08", + "\u6e05\u4ee3\u4e0b\u5c42\u5973\u6027\u7814\u7a76 : \u4ee5\u5357\u90e8\u53bf\u3001\u5df4\u53bf\u6863\u6848\u4e3a\u4e2d\u5fc3 / \u6bdb\u7acb\u5e73\u8457, 2023", + "Qing dai xia ceng n\u00fc xing yan jiu : yi Nanbu Xian, Ba Xian dang an wei zhong xin / Mao Liping zhu, 2023" + ] + }, + { + "noteType": "general", + "label": [ + "Quartier de Chongqing depuis 1994, autrefois district Ba" + ] + } + ], + "pid": "279245947", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Chongqing (Chine)" + } + ], + "variant_access_point": [ + "\u5df4\u5357\u533a", + "\u5df4\u53bf", + "\u5df4\u5357\u5340", + "Banan Qu", + "\u5df4\u7e23", + "Ba Xian" + ], + "md5": "29e51d5fcb1d14e8e9f36cc7bd0f4bd1" + }, + { + "authorized_access_point": "Nanbu Xian (Chine)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279246358", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia, https://zh.wikipedia.org/wiki/%E5%8D%97%E9%83%A8%E5%8E%BF, 2024-07-08", + "\u6e05\u4ee3\u4e0b\u5c42\u5973\u6027\u7814\u7a76 : \u4ee5\u5357\u90e8\u53bf\u3001\u5df4\u53bf\u6863\u6848\u4e3a\u4e2d\u5fc3 / \u6bdb\u7acb\u5e73\u8457, 2023", + "Qing dai xia ceng n\u00fc xing yan jiu : yi Nanbu Xian, Ba Xian dang an wei zhong xin / Mao Liping zhu, 2023" + ] + }, + { + "noteType": "general", + "label": [ + "District de la province du Sichuan appartenant \u00e0 la pr\u00e9fecture de Nanchong Shi" + ] + } + ], + "pid": "279246358", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Sichuan (Chine)" + } + ], + "variant_access_point": [ + "\u5357\u90e8\u7e23", + "\u5357\u90e8\u53bf", + "Nanbu Xian" + ], + "md5": "0746afc2e4decc87bbadf2a109e1b163" + }, + { + "authorized_access_point": "White river (Ind. ; cours d'eau)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279247060", + "source": "IDREF" + }, + { + "source": "WIKIPEDIA", + "type": "uri", + "value": "https://fr.wikipedia.org/wiki/White_River_(Indiana)" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-08" + ] + }, + { + "noteType": "general", + "label": [ + "La White River est une rivi\u00e8re au double cours irriguant le centre et le sud de l'Indiana, affluent de la Wabash River, donc un sous-affluent du fleuve le Mississippi, par l'Ohio" + ] + } + ], + "pid": "279247060", + "type": "bf:Place", + "md5": "efb5b35fd1e10af7e7bd26ba33bba24c" + }, + { + "authorized_access_point": "Saint-Pierre-\u00c9glise (Manche) - ch\u00e2teau", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "720", + "name": "Architecture" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279247087", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Regards de peintres en Cotentin : XIXe-XXe si\u00e8cles : [exposition], Ch\u00e2teau de Saint-Pierre-Eglise, 24 juillet-15 ao\u00fbt 1993 / [organis\u00e9 par le festival du Cotentin ; catalogue par Monique Barbier, Brigitte Scart, Jean Fouace], 1993" + ] + } + ], + "pid": "279247087", + "type": "bf:Place", + "md5": "d8a01269d09da2a4e815fa1b33c1239b" + }, + { + "authorized_access_point": "Patoka river (Ind. ; cours d'eau)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279247184", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://en.wikipedia.org/wiki/Patoka_River/, 2024-07-08" + ] + }, + { + "noteType": "general", + "label": [ + "La rivi\u00e8re Patoka est un affluent de la rivi\u00e8re Wabash dans le sud-ouest de l'Indiana aux \u00c9tats-Unis" + ] + } + ], + "pid": "279247184", + "type": "bf:Place", + "md5": "18e074a9edc62f55dc5e213f7f78f1a8" + }, + { + "authorized_access_point": "Whiting (Ind.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279248180", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-08" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Lake" + ] + } + ], + "pid": "279248180", + "type": "bf:Place", + "md5": "4fbcd32a231f7ec8da3524a35114baa6" + }, + { + "authorized_access_point": "East Chicago (Ind.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279248288", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-08" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Lake" + ] + } + ], + "pid": "279248288", + "type": "bf:Place", + "md5": "c86ae70681a9090638eb93d37113bcd8" + }, + { + "authorized_access_point": "Grand Calumet river (Ind. ; cours d'eau)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279248482", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-08" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Lake" + ] + } + ], + "pid": "279248482", + "type": "bf:Place", + "md5": "6c443c983d42172ecb4c2442da149efc" + }, + { + "authorized_access_point": "Toleston (Ind.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279248598", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-08" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Lake" + ] + } + ], + "pid": "279248598", + "type": "bf:Place", + "md5": "b6224f16d2a1f4833f6c623a29261dce" + }, + { + "authorized_access_point": "Griffith (Ind.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279248792", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-08" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Lake" + ] + } + ], + "pid": "279248792", + "type": "bf:Place", + "md5": "a9eeac8d6f6340b6f78a057f50b7fc65" + }, + { + "authorized_access_point": "Lawrenceville (Ill.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279249535", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-08" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Lawrence" + ] + } + ], + "pid": "279249535", + "type": "bf:Place", + "md5": "730ca52cca82f4c1569a86be3c6d5eb0" + }, + { + "authorized_access_point": "Ireland (Ind.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279250002", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-08" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Dubois" + ] + } + ], + "pid": "279250002", + "type": "bf:Place", + "md5": "3d92367c38166d2da05acbd352b6b541" + }, + { + "authorized_access_point": "Pikeville (Ind.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279250142", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-08" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Pike" + ] + } + ], + "pid": "279250142", + "type": "bf:Place", + "md5": "e5a8ff1575735e8264f32a4f6298a265" + }, + { + "authorized_access_point": "Fontgombault (Indre)", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "912" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279253001", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb17851893t", + "source": "BNF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Dict. communes, 2001" + ] + } + ], + "pid": "279253001", + "type": "bf:Place", + "md5": "5646dbc7dd673c79206c288f06834fac" + }, + { + "authorized_access_point": "Little Beaver creek (Kan. ; cours d'eau)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279255381", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-08" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Rawlins" + ] + } + ], + "pid": "279255381", + "type": "bf:Place", + "md5": "0f02cd2d8da5c0b9858778044d88db93" + }, + { + "authorized_access_point": "Atwood lake (Kan. ; lac)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279255519", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-08" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Rawlins" + ] + } + ], + "pid": "279255519", + "type": "bf:Place", + "md5": "9a344c2a64420c8c78cb744765409650" + }, + { + "authorized_access_point": "South Fork Republican river (Etats-Unis. ; cours d'eau)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279256337", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://en.wikipedia.org/wiki/South_Fork_Republican_River/, 2024-07-08" + ] + }, + { + "noteType": "general", + "label": [ + "La South Fork Republican est une rivi\u00e8re qui prend sa source dans le comt\u00e9 de Lincoln, Colorado, \u00c9tats-Unis, et s'\u00e9coule vers l'est-nord-est \u00e0 travers les comt\u00e9s de Kit Carson et de Yuma, Colorado, et le comt\u00e9 de Cheyenne, Kansas, jusqu'\u00e0 un confluent avec la Republican River dans le comt\u00e9 de Dundy, Nebraska" + ] + } + ], + "pid": "279256337", + "type": "bf:Place", + "md5": "0797f338bc411614c6f62f5b156b17b2" + }, + { + "authorized_access_point": "Cole Pond (Kan. ; lac)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279256434", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-08" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Cheyenne" + ] + } + ], + "pid": "279256434", + "type": "bf:Place", + "md5": "edc017af42d99dc15bfafd36c6c4aa12" + }, + { + "authorized_access_point": "Bird City (Kan.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279256574", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-08" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Cheyenne" + ] + } + ], + "pid": "279256574", + "type": "bf:Place", + "md5": "c2d01d03371172286ec7971eded6eef8" + }, + { + "authorized_access_point": "Wheeler (Kan.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279256647", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-08" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Wheeler" + ] + } + ], + "pid": "279256647", + "type": "bf:Place", + "md5": "1fa66c261d04f7b807c5cb145f300848" + }, + { + "authorized_access_point": "Beaver creek (Kan., Neb. ; cours d'eau)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279257120", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://en.wikipedia.org/wiki/Beaver_Creek_(Sappa_Creek_tributary)/, 2024-07-08" + ] + }, + { + "noteType": "general", + "label": [ + "Beaver Creek est une rivi\u00e8re situ\u00e9e dans les \u00c9tats du Kansas et du Nebraska. Elle prend naissance au nord-nord-est de Goodland (Kansas) et se jette dans Sappa Creek \u00e0 l'ouest d'Orleans (Nebraska)" + ] + } + ], + "pid": "279257120", + "type": "bf:Place", + "md5": "fb60b7760940af2532fac936ad918abc" + }, + { + "authorized_access_point": "Huamantla (Mexico)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279263864", + "source": "IDREF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "https://viaf.org/viaf/127845608" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Nava Rodr\u00edguez, L. Hist. de Huamantla, 1974.", + "Lippincott", + "BGN gaz., Mexico, 1992" + ] + } + ], + "pid": "279263864", + "type": "bf:Place", + "md5": "a4dda7ff2c308d12167b8338d8ca47c3" + }, + { + "authorized_access_point": "Ravensburg (Allemagne ; r\u00e9gion)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279264410", + "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Das fr\u00fchmittelalterliche Gr\u00e4berfeld bei Weingarten (Kr. Ravensburg) / Helmut Roth, Claudia Theune, 1995" + ] + } + ], + "pid": "279264410", + "type": "bf:Place", + "md5": "a2e6ab1f3354fcc81d7602edfd21608b" + }, + { + "authorized_access_point": "Adam, Pic d' (Sri Lanka)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279288743", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb16247820p", + "source": "BNF" + }, + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/315529013" + } + ], + "pid": "279288743", + "type": "bf:Place", + "variant_access_point": [ + "Pic d'Adam", + "Adam's Peak (Sri Lanka)", + "Sri Pada", + "Samanala", + "Sivanolipatha Malai", + "Al-Rohun" + ], + "md5": "528839d3d91fef42cca015cb8c6f240d" + }, + { + "authorized_access_point": "Paris (France) - Rue de Madagascar", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "912" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279307500", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18154746p", + "source": "BNF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia - https://fr.wikipedia.org/wiki/Rue_de_Madagascar (2024-06-26)" + ] + } + ], + "pid": "279307500", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Paris (France) - Arrondissement (12e)" + } + ], + "variant_access_point": [ + "Madagascar, Rue de (Paris, France)", + "Rue de Madagascar (Paris, France)" + ], + "md5": "f856c03c4c5a57f1e03f304476bbc314" + }, + { + "authorized_access_point": "Cuma (Italie) - Anfiteatro romano", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "720", + "name": "Architecture" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914" + }, + { + "type": "bf:ClassificationDdc", + "classificationPortion": "930", + "name": "Pr\u00e9histoire et histoire ancienne" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279307772", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb181557040", + "source": "BNF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikipedia : Liste d'amphith\u00e9\u00e2tres romains en Italie - http://it.wikipedia.org (2024-07-02)" + ] + } + ], + "pid": "279307772", + "type": "bf:Place", + "variant_access_point": [ + "Amphith\u00e9\u00e2tre romain (Cuma, Italie)" + ], + "md5": "6b1a294f759b6e7a008af043c81b0124" + }, + { + "authorized_access_point": "Petersberg (Allemagne) - Festung", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "940", + "name": "Histoire m\u00e9di\u00e9vale, moderne et contemporaine (sauf la France)" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279307829", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18155980n", + "source": "BNF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Kloster und Festung - Beitr\u00e4ge zur Geschichte des Erfurter Petersbergs : Vortr\u00e4ge anl\u00e4sslich der Bundesgartenschau 2021 in Erfurt / Stiftung Th\u00fcringer Schl\u00f6sser und Garten, 2022" + ] + } + ], + "pid": "279307829", + "type": "bf:Place", + "variant_access_point": [ + "Festung Petersberg (Petersberg, Allemagne)", + "Festung Petersberg (Erfurt, Allemagne)" + ], + "md5": "8fa622e6f9ed5f10e429584319a82ffe" + }, + { + "authorized_access_point": "Deauville (Calvados, France) - Les Planches", + "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "912" + } + ], + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279307845", + "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18156072s", + "source": "BNF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia - https://fr.wikipedia.org/wiki/Les_Planches_(Deauville) (2024-07-04)", + "Les Planches, Deauville : 100 ans d'histoires / P. Normand, 2024" + ] + }, { - "name": "Histoire", - "type": "bf:ClassificationDdc", - "classificationPortion": "900" + "noteType": "general", + "label": [ + "Promenade longeant la plage de Deauville sur toute sa longueur" + ] } ], + "pid": "279307845", + "type": "bf:Place", "variant_access_point": [ - "Occidentaux, Pays", - "Ouest, Pays de l'", - "Pays de l'Ouest", - "Pays occidentaux" + "Planches, Les (Deauville, Calvados, France)", + "Promenade des Planches (Deauville, Calvados, France)" ], - "authorized_access_point": "Occident" + "md5": "99fe622c839846e16ca2c1be56eb3587" }, { - "md5": "0546f48c4dd787755884de6ea344eae1", - "pid": "110868056", + "authorized_access_point": "Iatan (Mo.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279311044", + "source": "IDREF" + } + ], "note": [ { + "noteType": "dataSource", "label": [ - "Raron : Burg und Kirche / Redaktion: Alfred A. Schmid ; mit einem Vorwort von Nello Celio und Beitr\u00e4gen von Christoph Bernouli, Carl J. Burckhardt, Am\u00e9d\u00e9e Cachin... [et al.]. - Basel : Birkh\u00e4user, cop. 1972" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-10" + ] }, { + "noteType": "general", "label": [ - "Village suisse situ\u00e9 dans le canton du Valais. Tombe du po\u00e8te Rainer Maria Rilke" - ], - "noteType": "general" + "Situ\u00e9 dans le comt\u00e9 de Platte" + ] } ], + "pid": "279311044", "type": "bf:Place", + "md5": "f54076c75f2bacc7af72144e610691c3" + }, + { + "authorized_access_point": "Merriam (Kan.)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/110868056", + "value": "http://www.idref.fr/279311443", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/149281369", - "source": "VIAF" - }, + } + ], + "note": [ { - "type": "bf:Nbn", - "value": "(DE-101)041048989", - "source": "GND" + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-10" + ] }, { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Rarogne", - "source": "WIKIPEDIA" + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Johnson" + ] } ], - "variant_access_point": [ - "Raron (Valais, Suisse)" - ], - "authorized_access_point": "Rarogne (Valais, Suisse)" + "pid": "279311443", + "type": "bf:Place", + "md5": "b7c0cc685ad052526dfa228c77ac5018" }, { - "md5": "d9fc1e611df3488716a376e848a6fd3a", - "pid": "114526591", + "authorized_access_point": "Bruges (Belgique) - Adornesdomein", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279312415", + "source": "IDREF" + } + ], "note": [ { + "noteType": "dataSource", "label": [ - "GDEL", - "https://www.vs.ch/web/communes/-/bas-valais, 2022-09-27", - "\u00c0 la d\u00e9couverte de trois r\u00e9gions alpines, une culture : Bas-Valais, vall\u00e9e d'Aoste, Haute-Savoie - Savoie, 2000" - ], - "noteType": "dataSource" + "Une J\u00e9rusalem c\u00e9leste \u00e0 Bruges : le Domaine Adornes et la chapelle de J\u00e9rusalem / Jan Dumolyn et No\u00ebl Geirnaert (\u00e9d.), 2024" + ] }, { + "noteType": "general", "label": [ - "R\u00e9gion du Canton du Valais comprenant les districts de Monthey, St-Maurice, Entremont et Martigny" - ], - "noteType": "general" + "Domaine familial priv\u00e9 remontant au 15e si\u00e8cle et comprenant essentiellement la chapelle de J\u00e9rusalem, des maisons-dieu et un h\u00f4tel particulier bord\u00e9 d\u2019un vaste jardin" + ] } ], + "pid": "279312415", "type": "bf:Place", - "broader": [ - { - "authorized_access_point": "Valais (Suisse)" - } + "variant_access_point": [ + "Bruges (Belgique) - Domaine Adornes", + "Bruges (Belgique) - Domaine des Adornes" ], + "md5": "8fdff2b77e37470f42bdb73540f7cca2" + }, + { + "authorized_access_point": "Ogden (Kan.)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/114526591", + "value": "http://www.idref.fr/279313543", "source": "IDREF" - }, + } + ], + "note": [ { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb144160064", - "source": "BNF" + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-10" + ] }, { - "type": "bf:Nbn", - "value": "(DE-101)040786528", - "source": "GND" - }, + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Riley" + ] + } + ], + "pid": "279313543", + "type": "bf:Place", + "md5": "a82c1161416149e2fb2f20ad4010ac64" + }, + { + "authorized_access_point": "Mayence (Allemagne) - Pfarrkirche St. Ignaz", + "bnf_type": "sujet Rameau", + "identifiedBy": [ { "type": "uri", - "value": "http://viaf.org/viaf/51144647641031129112", - "source": "VIAF" + "value": "http://www.idref.fr/279313853", + "source": "IDREF" } ], - "classification": [ + "note": [ { - "name": "G\u00e9ographie de l'Europe", - "type": "bf:ClassificationDdc", - "classificationPortion": "914" + "noteType": "dataSource", + "label": [ + "Die Urkunden des Pfarrarchivs von St. Ignaz in Mainz : Regesten / von Elisabeth Darapsky und Richard Dertsch, 1974" + ] } ], + "pid": "279313853", + "type": "bf:Place", "variant_access_point": [ - "Valais, Bas- (Suisse)" + "St. Ignaz zu Mainz", + "Sankt Ignaz zu Mainz" ], - "authorized_access_point": "Bas-Valais (Suisse)" + "md5": "9189b993e784b58e5f9db9f096604479" }, { - "md5": "7ff8a470ffcad120e6ff4e0fda04ae73", - "pid": "116317825", + "authorized_access_point": "McDonald (Kan.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279314833", + "source": "IDREF" + } + ], "note": [ { + "noteType": "dataSource", "label": [ - "Le glacier de l'Aletsch et le lac de M\u00e4rjelen / Roland Bonaparte. Paris : 1889." - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-10" + ] }, { + "noteType": "general", "label": [ - "E 8\u00b04' / N 46\u00b026'" - ], - "noteType": "general" + "Situ\u00e9 dans le comt\u00e9 de Rawlins" + ] } ], + "pid": "279314833", "type": "bf:Place", + "variant_access_point": [ + "Mc Donald" + ], + "md5": "a18be70be16e88589974a7d5bafdd681" + }, + { + "authorized_access_point": "Marienthal (Kan.)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/116317825", + "value": "http://www.idref.fr/279315287", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15240705p", - "source": "BNF" - }, + } + ], + "note": [ { - "type": "bf:Nbn", - "value": "(DE-101)040721000", - "source": "GND" + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-10" + ] }, { - "type": "uri", - "value": "http://viaf.org/viaf/170096434", - "source": "VIAF" + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Wichita" + ] } ], - "variant_access_point": [ - "Aletschgletscher (Suisse)", - "Grosser Aletschgletscher (Valais, Suisse)", - "Glacier d'Aletsch (Valais, Suisse)", - "Aletsch, Glacier d' (Valais, Suisse)", - "Grand Glacier d'Aletsch (Valais, Suisse)" - ], - "authorized_access_point": "Aletsch, Grand Glacier d' (Valais, Suisse)" + "pid": "279315287", + "type": "bf:Place", + "md5": "710cc64b0004469d87217e1cd1dad12c" }, { - "md5": "d4a659f9fee059c7afd1e3af983b147f", - "pid": "116459425", - "type": "bf:Place", + "authorized_access_point": "Whitewoman creek (Kan.)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/116459425", + "value": "http://www.idref.fr/279315368", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/55148570478224310503", - "source": "VIAF" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)947297987", - "source": "GND" } ], - "authorized_access_point": "Albanie (nord)" - }, - { - "md5": "efdab2ef904bf4fa2ec446f9b66e1b2e", - "pid": "127372547", "note": [ { + "noteType": "dataSource", "label": [ - "Tunnel de base du L\u00f6tschberg : de la roche au chemin de fer / Felix freank, 2008", - "https://fr.wikipedia.org/wiki/Tunnel_de_base_du_L%C3%B6tschberg, 2022-09-13" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-10" + ] }, { + "noteType": "general", "label": [ - "Tunnel ferroviaire qui relie le canton du Valais \u00e0 celui de Berne. Inaugur\u00e9 en 2007." - ], - "noteType": "general" + "Situ\u00e9 dans le comt\u00e9 de Scott" + ] } ], + "pid": "279315368", "type": "bf:Place", + "md5": "7f855a58c2f2788e553e3defd90a77ff" + }, + { + "authorized_access_point": "Mound Valley (Kan.)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/127372547", + "value": "http://www.idref.fr/279315597", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/139148570539024310972", - "source": "VIAF" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)96475455X", - "source": "GND" } ], - "variant_access_point": [ - "Tunnel de base du L\u00f6tschberg (Suisse)", - "L\u00f6tschberg Basistunnel (Suisse)" - ], - "authorized_access_point": "L\u00f6tschberg, Tunnel de base du (Suisse)" - }, - { - "md5": "a893e9b2d5dc6c79077b8c9c14300686", - "pid": "144820072", "note": [ { + "noteType": "dataSource", "label": [ - "Uebersichstkarte zum Relief der Monterosa-Gruppe / von X. Imfeld, 1880", - "GLU" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-10" + ] }, { + "noteType": "general", "label": [ - "Massif des Alpes Pennines partag\u00e9 entre la Suisse (canton du Valais) et l'Italie." - ], - "noteType": "general" + "Situ\u00e9 dans le comt\u00e9 de Labette" + ] } ], + "pid": "279315597", "type": "bf:Place", + "md5": "7b4509563382710908486825c7286bbc" + }, + { + "authorized_access_point": "Altamont (Kan.)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/144820072", + "value": "http://www.idref.fr/279315678", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/136148570652124311276", - "source": "VIAF" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)041152077", - "source": "GND" } ], - "variant_access_point": [ - "Monte Rosa, Massif du" - ], - "authorized_access_point": "Mont-Rose, Massif du" - }, - { - "md5": "d8bf58b68f1fa33c75f617d62ba3c26f", - "pid": "14704233X", "note": [ { + "noteType": "dataSource", "label": [ - "Le 5/10/ 2010 : http://fr.wikipedia.org/wiki/Val_de_Bagnes" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-10" + ] }, { + "noteType": "general", "label": [ - "Vall\u00e9e de Suisse dans le district d'Entremont en Valais" - ], - "noteType": "general" + "Situ\u00e9 dans le comt\u00e9 de Labette" + ] } ], + "pid": "279315678", "type": "bf:Place", + "md5": "fd8e229f7caf9ed19eff8a62aa48ee70" + }, + { + "authorized_access_point": "Edna (Kan.)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/14704233X", + "value": "http://www.idref.fr/279315759", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/241474357", - "source": "VIAF" - }, - { - "type": "uri", - "value": "http://d-nb.info/gnd/4107510-9", - "source": "GND" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)041075102", - "source": "GND" - }, - { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Val_de_Bagnes", - "source": "WIKIPEDIA" } ], - "variant_access_point": [ - "Val de Bagnes (Suisse ; vall\u00e9e)", - "Baniental", - "Bangital", - "Vall\u00e9e de Bagnes (Valais, Suisse)" - ], - "authorized_access_point": "Bagnes, Vall\u00e9e de (Valais, Suisse)" - }, - { - "md5": "a3479ba5c5f14e316e29ffe233ebe6e0", - "pid": "150220200", "note": [ { + "noteType": "dataSource", "label": [ - "http://catalogue.bnf.fr/ark:/12148/cb152923816/UNIMARC 2011-02-21", - "20 Jahre Furggent\u00e4lti: Permafrostuntersuchungen auf der Gemmi / Bernhard Krummenacher .... - Bern : Geogr. Inst. d. Univ., 2008" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-10" + ] }, { + "noteType": "general", "label": [ - "Coordonn\u00e9es g\u00e9ographiques : E 7\u00b037' / N 46\u00b024'" - ], - "noteType": "general" + "Situ\u00e9 dans le comt\u00e9 de Labette" + ] } ], + "pid": "279315759", "type": "bf:Place", + "md5": "211139b1b9cc43081708434d2735552c" + }, + { + "authorized_access_point": "Norcatur (Kan.)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/150220200", + "value": "http://www.idref.fr/279316232", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/118148570517524310836", - "source": "VIAF" - }, + } + ], + "note": [ { - "type": "bf:Nbn", - "value": "(DE-101)040717003", - "source": "GND" + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-10" + ] }, { - "type": "bf:Nbn", - "value": "(DE-101)040717003", - "source": "GND" + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Dacartur" + ] } ], - "authorized_access_point": "Gemmi, Col de la (Valais, Suisse)" + "pid": "279316232", + "type": "bf:Place", + "md5": "ccbb9ff265fff02e33360e8ae3df958c" }, { - "md5": "1b37f32cf5e62aafb681f7e333c14080", - "pid": "157143392", + "authorized_access_point": "Dellvale (Kan.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279316291", + "source": "IDREF" + } + ], "note": [ { + "noteType": "dataSource", "label": [ - "Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgen\u00f6ssische Stabsb\u00fcreau unter der direktion von Oberst Siegfried ver\u00f6ffentlicht", - "https://hls-dhs-dss.ch/fr/articles/008388/2012-01-06, 2022-07-27" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-10" + ] }, { + "noteType": "general", "label": [ - "Partie orientale de la vall\u00e9e de Vi\u00e8ge dans le canton du Valais (Suisse) qui, en amont de Stalden, se subdivise en deux vall\u00e9es en direction du sud, celles de Saint-Nicolas et de Saas" - ], - "noteType": "general" + "Situ\u00e9 dans le comt\u00e9 de Norton" + ] } ], + "pid": "279316291", "type": "bf:Place", + "md5": "5eadfd5c1730143ff153ae093a1be1e6" + }, + { + "authorized_access_point": "Saint-Victor-l'Abbaye (Seine-Maritime, France)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/157143392", + "value": "http://www.idref.fr/279333013", "source": "IDREF" }, { "type": "uri", - "value": "http://viaf.org/viaf/125148570562224311120", - "source": "VIAF" - }, - { - "type": "uri", - "value": "http://d-nb.info/gnd/4105151-8", - "source": "GND" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)041051513", - "source": "GND" - }, - { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Vall\u00e9e_de_Saas", - "source": "WIKIPEDIA" + "value": "http://catalogue.bnf.fr/ark:/12148/cb152752410", + "source": "BNF" } ], - "variant_access_point": [ - "Saas (Valais, Suisse ; r\u00e9gion)", - "Saastal (Valais, Suisse)", - "Vall\u00e9e de Saas (Valais, Suisse)" - ], - "authorized_access_point": "Saas, Vall\u00e9e de (Valais, Suisse)" - }, - { - "md5": "52a1cdfd866dcc68baab7b914d5227e8", - "pid": "157143422", "note": [ { + "noteType": "general", "label": [ - "Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgen\u00f6ssische Stabsb\u00fcreau unter der direktion von Oberst Siegfried ver\u00f6ffentlicht" - ], - "noteType": "dataSource" + "Coordonn\u00e9es g\u00e9ographiques : E 1\u00b07'13\" / N 49\u00b040'30\"", + "Coordonn\u00e9es Lambert : 05120 25204 +5121 12201 -1351 55194", + "Feuille IGN 1:50 000 : 2010. Feuille IGN 1:25 000 : W", + "Code INSEE : 76656" + ] } ], + "pid": "279333013", "type": "bf:Place", + "md5": "8ea7a749749a4ff7826083693adcfb8a" + }, + { + "authorized_access_point": "Prairie Dog creek (Kan. ; cours d'eau)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/157143422", + "value": "http://www.idref.fr/279334699", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/8682148574329724430000", - "source": "VIAF" - }, + } + ], + "note": [ { - "type": "uri", - "value": "http://d-nb.info/gnd/4119238-2", - "source": "GND" + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-11" + ] }, { - "type": "bf:Nbn", - "value": "(DE-101)041192389", - "source": "GND" + "noteType": "general", + "label": [ + "Prairie Dog Creek est un cours d'eau situ\u00e9 dans le centre des Grandes Plaines d'Am\u00e9rique du Nord. Affluent de la rivi\u00e8re Republican, il s'\u00e9coule sur 396 km \u00e0 travers les \u00c9tats am\u00e9ricains du Kansas et du Nebraska" + ] } ], - "authorized_access_point": "Zermatt (Valais, Suisse ; r\u00e9gion)" + "pid": "279334699", + "type": "bf:Place", + "md5": "521f2209e21d4bf79e75c86c7c7b46e1" }, { - "md5": "aa412770544a6e7d8576109efb942e4b", - "pid": "161911846", + "authorized_access_point": "Traer (Kan.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279334982", + "source": "IDREF" + } + ], "note": [ { + "noteType": "dataSource", "label": [ - "Aesch. ein fr\u00fchmittelelterliches Gr\u00e4berfeld / Chantal Hartmann ; mit Beitr\u00e4gen von Andreas Cueni und Antoinette Rast-Eicher, 2009" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-11" + ] }, { + "noteType": "general", "label": [ - "Commune du canton de Lucerne au bord du Hallwiler See" - ], - "noteType": "general" + "Situ\u00e9 dans le comt\u00e9 de Decatur" + ] } ], + "pid": "279334982", "type": "bf:Place", + "md5": "4dca7f9d838edcaef0867c73bc4e11d0" + }, + { + "authorized_access_point": "Cedar Bluffs (Kan.)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/161911846", + "value": "http://www.idref.fr/279335156", "source": "IDREF" - }, + } + ], + "note": [ { - "type": "uri", - "value": "http://viaf.org/viaf/238806520", - "source": "VIAF" + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-11" + ] }, { - "type": "bf:Nbn", - "value": "(DE-101)968963935", - "source": "GND" - }, + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Decartur" + ] + } + ], + "pid": "279335156", + "type": "bf:Place", + "md5": "019706f4adf22994655f8897db6714c4" + }, + { + "authorized_access_point": "Labette (Kan.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ { "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Eich_(Lucerne)", - "source": "WIKIPEDIA" + "value": "http://www.idref.fr/279335512", + "source": "IDREF" } ], - "variant_access_point": [ - "Aesch (Canton de Lucerne, Suisse)", - "Aesch (Kanton Luzern, Schweiz)" - ], - "authorized_access_point": "Aesch (Lucerne, Suisse)" - }, - { - "md5": "f176e3296f3dad69c215812dc0844b91", - "pid": "185110363", "note": [ { + "noteType": "dataSource", "label": [ - "Carte nationale de la Suisse 1:50 000. 273 : Montana / Service topographique f\u00e9d\u00e9ral, 1974", - "https://fr.wikipedia.org/, 2020-11-30" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-11" + ] }, { + "noteType": "general", "label": [ - "Ancienne commune du canton du Valais, situ\u00e9e dans le district de Sierre. Elle fusionna le 1er janvier 2017 avec Mollens, Chermignon et Randogne pour former Crans-Montana." - ], - "noteType": "general" + "Situ\u00e9 dans le comt\u00e9 de Labette" + ] } ], + "pid": "279335512", "type": "bf:Place", + "md5": "307343fc3b50bfe44c757250b1b6b4e9" + }, + { + "authorized_access_point": "Oswego (Kan.)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/185110363", + "value": "http://www.idref.fr/27933558X", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb160481737", - "source": "BNF" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/131144648658835357814", - "source": "VIAF" - }, - { - "type": "uri", - "value": "http://d-nb.info/gnd/4275006-4", - "source": "GND" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)042750067", - "source": "GND" - }, - { - "type": "bf:Nbn", - "value": "Q70186", - "source": "WIKIDATA" } ], - "relation_pid": { - "type": "redirect_from", - "value": "250838443" - }, - "authorized_access_point": "Montana (Valais, Suisse)" - }, - { - "md5": "5de5e5b97b3a1877b436203b7f326f56", - "pid": "198231288", "note": [ { + "noteType": "dataSource", "label": [ - "Note sur la G\u00e9ologie des environs de Lou\u00e8che-les-Bains / par le Dr Phil. de La Harpe, 1877" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-11" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Labette" + ] } ], + "pid": "27933558X", "type": "bf:Place", + "md5": "029bf6f6515b85e85fa4b03aec1e87b8" + }, + { + "authorized_access_point": "Thayer (Kan.)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/198231288", + "value": "http://www.idref.fr/279347642", "source": "IDREF" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)040995623", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/144250507", - "source": "VIAF" - }, - { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Lo\u00e8che-les-Bains", - "source": "WIKIPEDIA" } ], - "variant_access_point": [ - "Lou\u00e8che-les-Bains (Valais, Suisse)", - "Leukerbad (Valais, Suisse)" - ], - "authorized_access_point": "Lo\u00e8che-les-Bains (Valais, Suisse)" - }, - { - "md5": "e23cf57c69aa4106febfd3e5a19b6e7f", - "pid": "237279614", "note": [ { + "noteType": "dataSource", "label": [ - "Source manuscrite\u00a0: Journal de voyage / par MM. Regnault et Sauvage, \u00c9l\u00e8ves ing\u00e9nieurs, 1835 (manuscrit conserv\u00e9 \u00e0 la biblioth\u00e8que de l\u2019\u00c9cole des mines de Paris MINES ParisTech sous la cote J 1835 (43) )", - "GeoNames (2019-07-26)" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-11" + ] }, { + "noteType": "general", "label": [ - "Commune du canton du Valais (Suisse).", - "N 46\u00b019\u203202\u2033 / E 7\u00b038\u203203\u2033" - ], - "noteType": "general" + "Situ\u00e9 dans le comt\u00e9 de Neosho" + ] } ], + "pid": "279347642", "type": "bf:Place", + "md5": "66dba25833d064403fef66634f484953" + }, + { + "authorized_access_point": "Mindenmines (Mo.)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/237279614", + "value": "http://www.idref.fr/279348304", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/241846356", - "source": "VIAF" - }, + } + ], + "note": [ { - "type": "uri", - "value": "http://d-nb.info/gnd/4393124-8", - "source": "GND" + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-11" + ] }, { - "type": "bf:Nbn", - "value": "(DE-101)946153248", - "source": "GND" + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Barton" + ] } ], - "variant_access_point": [ - "Leuk (Valais, Suisse)", - "Lou\u00e8che (Valais, Suisse)", - "Lo\u00e8che-Ville (Valais, Suisse)" - ], - "authorized_access_point": "Lo\u00e8che (Valais, Suisse)" + "pid": "279348304", + "type": "bf:Place", + "md5": "ba89673fa8ec80275bf40fe2f0ca7f58" }, { - "md5": "5eef1e9c914c82ba5d0a269b1dbfe737", - "pid": "25887421X", + "authorized_access_point": "Asbury (Mo.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279348363", + "source": "IDREF" + } + ], "note": [ { + "noteType": "dataSource", "label": [ - "https://fr.wikipedia.org/wiki/District_des_Franches-Montagnes" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-11" + ] }, { + "noteType": "general", "label": [ - "Suisse, canton de Jura" - ], - "noteType": "general" + "Situ\u00e9 dans le comt\u00e9 de Jasper" + ] } ], + "pid": "279348363", "type": "bf:Place", + "md5": "c60b6a9fc7f34425709320317b3ad880" + }, + { + "authorized_access_point": "Bouchets, Bois des (Gen\u00e8ve, Suisse)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/25887421X", + "value": "http://www.idref.fr/279349807", "source": "IDREF" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)04259634", - "source": "GND" } ], - "authorized_access_point": "Franches-Montagnes (Suisse)" - }, - { - "md5": "e1e6ca6b5cbb5e7f08632744bf00341b", - "pid": "260966401", "note": [ { + "noteType": "dataSource", "label": [ - "L'int\u00e9rieur du temple de La Sagne apr\u00e8s r\u00e9novation / Galley, Christian,, photographe (cr\u00e9ateur), 2001", - "Visualisation sur SITN- G\u00e9oportail du syst\u00e8me d'information du territoire neuch\u00e2telois https://sitn.ne.ch, 2022-03-14" - ], - "noteType": "dataSource" + "Les balades botaniques de la Soci\u00e9t\u00e9 botanique de Gen\u00e8ve : Le Bois des Bouchets : balade n\u00b0 3 / [texte et photographies:] Catherine Lambelet-Haueter, 2023" + ] } ], + "pid": "279349807", "type": "bf:Place", + "md5": "583355bfae128d10a995c5aa47530e71" + }, + { + "authorized_access_point": "Shallow Water (Kan.)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/260966401", + "value": "http://www.idref.fr/279351747", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/93164959497624020651", - "source": "VIAF" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)964991500", - "source": "GND" } ], - "relation_pid": { - "type": "redirect_from", - "value": "261065416" - }, - "authorized_access_point": "La Sagne (Neuch\u00e2tel, Suisse)" - }, - { - "md5": "edcef52c2207c2ed8c03e812344aee65", - "pid": "261121162", "note": [ { + "noteType": "dataSource", "label": [ - "Saint-L\u00e9onard de jadis et de nagu\u00e8re / Barth\u00e9l\u00e9my Gillioz, 2021", - "https://www.st-leonard.ch/index.php/en-bref, 2022-03-22" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-11" + ] }, { + "noteType": "general", "label": [ - "Commune situ\u00e9e dans le canton du Valais" - ], - "noteType": "general" + "Situ\u00e9 dans le comt\u00e9 de Scott" + ] } ], + "pid": "279351747", "type": "bf:Place", + "md5": "510b936360f3c3546f1b9a83fe936408" + }, + { + "authorized_access_point": "Friend (Kan.)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/261121162", + "value": "http://www.idref.fr/279351879", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/102164959931224022033", - "source": "VIAF" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)954696867", - "source": "GND" } ], - "authorized_access_point": "Saint-L\u00e9onard (Valais, Suisse)" - }, - { - "md5": "7ab33eca31f1736c6447842791142a4d", - "pid": "26144722X", "note": [ { + "noteType": "dataSource", "label": [ - "L'or de Mund / Rolf Jeitziner, Barbara Seiler, 2021", - "https://fr.wikipedia.org/wiki/Mund_(Valais), 2022-03-31" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-11" + ] }, { + "noteType": "general", "label": [ - "Village situ\u00e9 dans le Haut-Valais" - ], - "noteType": "general" + "Situ\u00e9 dans le comt\u00e9 de Finney" + ] } ], + "pid": "279351879", "type": "bf:Place", + "md5": "ec342846e3989b2d818791f92e21dd62" + }, + { + "authorized_access_point": "Bluff creek (Kan. ; cours d'eau)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/26144722X", + "value": "http://www.idref.fr/279353162", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/340164960096024022192", - "source": "VIAF" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)941147797", - "source": "GND" } ], - "authorized_access_point": "Mund (Valais, Suisse)" - }, - { - "md5": "0c834e3106967e9a84fbe5ba0e59e3c9", - "pid": "263259935", "note": [ { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-11" + ] + }, + { + "noteType": "general", "label": [ - "Bettmeralp : das Wimmelbuch / Gabriel Giger, 2022", - "https://hls-dhs-dss.ch/fr/articles/050027/2016-10-27/" - ], - "noteType": "dataSource" + "Situ\u00e9 dans le comt\u00e9 de Comanche" + ] } ], + "pid": "279353162", "type": "bf:Place", + "md5": "23e53149bb34386733015be5a2e2dc70" + }, + { + "authorized_access_point": "Sitka (Kan.)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263259935", + "value": "http://www.idref.fr/279353308", "source": "IDREF" } ], - "authorized_access_point": "Bettmeralp (Suisse)" - }, - { - "md5": "83596dd4aa3a366606041cce503e0593", - "pid": "263837920", "note": [ { + "noteType": "dataSource", "label": [ - "Souvenirs d'un glacier / Corinne Vionnet, 2019", - "https://www.larousse.fr/encyclopedie/divers/glacier_du_Rh%C3%B4ne/140851, 2022-08-10" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-11" + ] }, { + "noteType": "general", "label": [ - "Glacier d'o\u00f9 le Rh\u00f4ne prend sa source ; situ\u00e9 dans le Haut-Valais" - ], - "noteType": "general" + "Situ\u00e9 dans le comt\u00e9 de Clark" + ] } ], + "pid": "279353308", "type": "bf:Place", + "md5": "16360aa4bb19946678c67001fe994963" + }, + { + "authorized_access_point": "Wallace (Kan.)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/263837920", + "value": "http://www.idref.fr/279353928", "source": "IDREF" - }, - { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Glacier_du_Rh\u00f4ne", - "source": "WIKIPEDIA" - }, + } + ], + "note": [ { - "type": "bf:Nbn", - "value": "(DE-101)041170008", - "source": "GND" + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-11" + ] }, { - "type": "uri", - "value": "http://viaf.org/viaf/315125827", - "source": "VIAF" + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Wallace" + ] } ], - "variant_access_point": [ - "Rh\u00f4ne (Suisse ; glacier)", - "Glacier du Rh\u00f4ne (Suisse)", - "Rottengletscher (Suisse)", - "Rhonegletscher (Suisse)" - ], - "authorized_access_point": "Rh\u00f4ne, Glacier du (Suisse)" + "pid": "279353928", + "type": "bf:Place", + "md5": "5e8d9690fe05407e346c89cc12b8a14c" }, { - "md5": "d941b2e21e2253e859999b84ba58ebab", - "pid": "264287010", + "authorized_access_point": "Weskan (Kan.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279354118", + "source": "IDREF" + } + ], "note": [ { + "noteType": "dataSource", "label": [ - "Sierre et la Noble Contr\u00e9e / par Fran\u00e7ois de Preux ; photogr. M.-F. Chiffelle ; [couv. dessin\u00e9e par Andr\u00e9 Rosselet], 1951", - "https://fr.wikipedia.org/wiki/Sierre, 2022-09-09" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-11" + ] }, { + "noteType": "general", "label": [ - "Ville et commune du canton du Valais" - ], - "noteType": "general" + "Situ\u00e9 dans le comt\u00e9 de Wallace" + ] } ], + "pid": "279354118", "type": "bf:Place", + "md5": "c6ab3d7e2c088a4c56b5f68fb59a4486" + }, + { + "authorized_access_point": "Cangnan Xian (Chine)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/264287010", + "value": "http://www.idref.fr/279354223", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb169098180", - "source": "BNF" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)040774244", - "source": "GND" - }, + } + ], + "note": [ { - "type": "bf:Nbn", - "value": "(DE-588)4077424-7", - "source": "GND" + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia, https://zh.wikipedia.org/wiki/%E8%8B%8D%E5%8D%97%E5%8E%BF, 2024-07-11", + "\u4e2d\u56fd\u8bed\u8a00\u6587\u5316\u5178\u85cf . \u82cd\u5357 / \u66f9\u5fd7\u8018, \u738b\u8389\u5b81, \u674e\u9526\u82b3\u4e3b\u7f16, \u5f90\u4e3d\u4e3d\u8457, 2022", + "Zhongguo yu yan wen hua dian cang . Cang'nan / Cao Zhiyun, Wang Lining, Li Jinfang zhu bian, Xu Lili zhu, 2022" + ] }, { - "type": "uri", - "value": "http://d-nb.info/gnd/4077424-7", - "source": "GND" - }, + "noteType": "general", + "label": [ + "District de la province du Zhejiang, Chine" + ] + } + ], + "pid": "279354223", + "type": "bf:Place", + "broader": [ { - "type": "uri", - "value": "http://viaf.org/viaf/612169442775025340005", - "source": "VIAF" + "authorized_access_point": "Zhejiang (Chine)" } ], - "relation_pid": { - "type": "redirect_from", - "value": "271323337" - }, "variant_access_point": [ - "Siders (Valais, Suisse)" + "\u84bc\u5357\u7e23", + "\u82cd\u5357\u53bf", + "Cangnan Xian" ], - "authorized_access_point": "Sierre (Valais, Suisse)" + "md5": "dc06a379e5a44879e4545cf5b4ac1655" }, { - "md5": "92e54d5303cd7fab20b65171186faf5b", - "pid": "264406095", + "authorized_access_point": "Binyang Xian (Chine)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279355173", + "source": "IDREF" + } + ], "note": [ { + "noteType": "dataSource", "label": [ - "Passage de la T\u00eate Noire, Vall\u00e9e du Trient, 1863", - "https://fr.wikipedia.org/wiki/Vall%C3%A9e_du_Trient, 2022-09-15" - ], - "noteType": "dataSource" + "Wikip\u00e9dia, https://zh.wikipedia.org/wiki/%E5%AE%BE%E9%98%B3%E5%8E%BF, 2024-07-11", + "\u4e2d\u56fd\u8bed\u8a00\u6587\u5316\u5178\u85cf . \u5bbe\u9633 / \u535e\u6210\u6797, \u97e6\u94b0\u7487, \u82cf\u4e39\u8457, \u66f9\u5fd7\u8018, \u738b\u8389\u5b81, \u674e\u9526\u82b3\u4e3b\u7f16, 2022", + "Zhongguo yu yan wen hua dian cang . Binyang / Bian Chenglin, Wei Yuxuan, Su Dan zhu, Cao Zhiyun, Wang Lining, Li Jinfang zhu bian, 2022" + ] }, { + "noteType": "general", "label": [ - "Vall\u00e9e situ\u00e9e dans le Bas-Valais" - ], - "noteType": "general" + "District de la province du Guangxi, Chine" + ] } ], + "pid": "279355173", "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Guangxi (Chine ; province)" + } + ], + "variant_access_point": [ + "\u8cd3\u967d\u7e23", + "\u5bbe\u9633\u53bf", + "Binyang Xian" + ], + "md5": "9bad28d91e67a14aaf6506ce368c1261" + }, + { + "authorized_access_point": "Boulogne-sur-Mer (Pas-de-Calais)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/264406095", + "value": "http://www.idref.fr/279357206", "source": "IDREF" }, { "type": "uri", - "value": "http://viaf.org/viaf/247827636", - "source": "VIAF" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)955884152", - "source": "GND" - }, + "value": "http://catalogue.bnf.fr/ark:/12148/cb119424128", + "source": "BNF" + } + ], + "note": [ { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Vall\u00e9e_du_Trient", - "source": "WIKIPEDIA" + "noteType": "dataSource", + "label": [ + "Moreau", + "Dict. communes, 1984", + "GDEL" + ] } ], + "pid": "279357206", + "type": "bf:Place", "variant_access_point": [ - "Vall\u00e9e du Trient (Valais, Suisse)" + "Bononia (ville ancienne)", + "Gesoriacum (ville ancienne)" ], - "authorized_access_point": "Trient, Vall\u00e9e du (Valais, Suisse)" + "md5": "30ad178ea1daae279849a40f8a0021fb" }, { - "md5": "11e76bb19f4aeedecb94fd76a9b2d007", - "pid": "264644093", + "authorized_access_point": "Licking river (Ky. ; cours d'eau)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279368429", + "source": "IDREF" + } + ], "note": [ { + "noteType": "dataSource", "label": [ - "Agrisculptures / Maximilien Urfer ; essais : Rapha\u00ebl Brunner et Eric Felley ; direction de publication : St\u00e9phane Fretz, 2019", - "https://www.vs.ch/web/communes/-/valais-central, 2022-09-27" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-12", + "https://en.wikipedia.org/wiki/Licking_River_%28Kentucky%29/, 2024-07-12" + ] }, { + "noteType": "general", "label": [ - "R\u00e9gion du Canton du Valais comprenant les districts de Conthey, Sion, Sierre et d'H\u00e9rens" - ], - "noteType": "general" + "La Licking est une rivi\u00e8re des \u00c9tats-Unis affluent de la rivi\u00e8re Ohio, donc un sous-affluent du fleuve le Mississippi" + ] } ], + "pid": "279368429", "type": "bf:Place", + "md5": "7ad0dbece1653a2da0416ca5ce31205b" + }, + { + "authorized_access_point": "Trinationaler Eurodistrict Basel", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/264644093", + "value": "http://www.idref.fr/279369867", "source": "IDREF" }, { + "source": "VIAF", "type": "uri", - "value": "http://viaf.org/viaf/2685166600430118000000", - "source": "VIAF" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)952816407", - "source": "GND" + "value": "https://viaf.org/viaf/192145858084323021995" } ], - "authorized_access_point": "Valais central (Suisse)" - }, - { - "md5": "d4b26032294e41b3008f51d0fbd9b688", - "pid": "264645081", "note": [ { + "noteType": "dataSource", "label": [ - "Les sobriquets des localit\u00e9s du Valais romand ; Articles historiques sur le Valais ; Histoire du Vieux Chablais / Raphy Rappaz, 1976", - "https://www.valais4you.ch/fr/le-valais-en-quelques-mots/habitat, 2022-09-27" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Partie francophone du canton du Valais" - ], - "noteType": "general" + "Die Eurodistrikte, eine neue Form der grenz\u00fcberschreitenden Kooperation?, 2014:" + ] } ], + "pid": "279369867", "type": "bf:Place", + "md5": "75f9bc5369d88e1e6dd713141dd68093" + }, + { + "authorized_access_point": "Gutian Xian (Chine)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/264645081", + "value": "http://www.idref.fr/27937027X", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/75166600409218000002", - "source": "VIAF" - }, + } + ], + "note": [ { - "type": "bf:Nbn", - "value": "(DE-101)993248810", - "source": "GND" + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia, https://zh.wikipedia.org/wiki/%E5%8F%A4%E7%94%B0%E5%8E%BF, 2024-07-12", + "\u4e2d\u56fd\u8bed\u8a00\u6587\u5316\u5178\u85cf . \u53e4\u7530 / \u674e\u6ee8 \u8457, \u66f9\u5fd7\u8018, \u738b\u8389\u5b81, \u674e\u9526\u82b3 \u4e3b\u7f16, 2022", + "Zhongguo yu yan wen hua dian cang . Gutian / Li Bin zhu, Cao Zhiyun, Wang Lining, Li Jinfang zhu bian, 2022" + ] }, { - "type": "bf:Nbn", - "value": "Valais romand", - "source": "GND" + "noteType": "general", + "label": [ + "District de la province du Fujian, Chine" + ] + } + ], + "pid": "27937027X", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Fujian (Chine ; province)" } ], "variant_access_point": [ - "Valais francophone (Suisse)" + "\u53e4\u7530\u7e23", + "\u53e4\u7530\u53bf", + "Gutian Xian" ], - "authorized_access_point": "Valais romand (Suisse)" + "md5": "32a7c3a772557166bbc5dd3eaec7eac2" }, { - "md5": "c0b78a6facbce91ddba7bedfe156ccca", - "pid": "271321628", + "authorized_access_point": "Barren river (Ky. ; cours d'eau)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279371322", + "source": "IDREF" + } + ], "note": [ { + "noteType": "dataSource", "label": [ - "Sowjetischer Pavillon : Substanz oder Erscheinung / Peter Zirkel (Hg.) ; [mit Fotografien von] Till Schuster, M Books, 2021", - "https://peterzirkel.de/sowjetischer-pavillon/, 2023-08-02" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-12" + ] }, { + "noteType": "general", "label": [ - "Construit en 1924 comme hall d'exposition par les architectes Oskar Pusch et Carl Kr\u00e4mer. Le b\u00e2timent a servi de pavillon d'exposition pour l'URSS. Depuis le d\u00e9but des ann\u00e9es 1990, il est utilis\u00e9 comme archives municipales" - ], - "noteType": "general" + "La rivi\u00e8re Barren prend sa source pr\u00e8s de la fronti\u00e8re du Tennessee dans le comt\u00e9 de Monroe et se jette dans la rivi\u00e8re Green au nord-est du comt\u00e9 de Warren" + ] } ], + "pid": "279371322", "type": "bf:Place", + "md5": "9c34f433821173a05c64eb2fb32e2b34" + }, + { + "authorized_access_point": "Hongdong Xian (Chine)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271321628", + "value": "http://www.idref.fr/279372280", "source": "IDREF" } ], - "variant_access_point": [ - "Sowjetischer Pavillon (Leipzig, Allemagne)", - "Achilleion (Leipzig, Allemagne)", - "Pavillon sovi\u00e9tique (Leipzig, Allemagne)" - ], - "authorized_access_point": "Leipzig (Allemagne)" - }, - { - "md5": "fb4b44bbfa5c9600c4cca5ed11b72bb0", - "pid": "271323337", "note": [ { + "noteType": "dataSource", "label": [ - "Atlas universel / \"Le Monde\", S\u00e9lection du \"Reader's digest\", 1993", - "Ville de Sierre - http://www.sierre.ch (2014-09-12)" - ], - "noteType": "dataSource" + "Wikip\u00e9dia, https://zh.wikipedia.org/wiki/%E6%B4%AA%E6%B4%9E%E5%8E%BF, 2024-07-12", + "\u4e2d\u56fd\u8bed\u8a00\u6587\u5316\u5178\u85cf . \u6d2a\u6d1e / \u4e54\u5168\u751f, \u738b\u6653\u5a77, \u8d75\u6d77\u82f1 \u8457, \u66f9\u5fd7\u8018, \u738b\u8389\u5b81, \u674e\u9526\u82b3 \u4e3b\u7f16, 2022", + "Zhongguo yu yan wen hua dian cang . Hongdong / Qiao Quansheng, Wang Xiaoting, Zhao Haiying zhu, Cao Zhiyun, Wang Lining, Li Jinfang zhu bian, 2022" + ] }, { + "noteType": "general", "label": [ - "Ville du canton du Valais, district de Sierre" - ], - "noteType": "general" + "District de la province du Shanxi, Chine" + ] } ], + "pid": "279372280", "type": "bf:Place", - "bnf_type": "sujet Rameau", - "closeMatch": [ + "broader": [ { - "source": "LCA", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/names/n85344685", - "source": "LCA" - }, - "authorized_access_point": "Sierre (Switzerland)" + "authorized_access_point": "Shanxi (Chine ; province)" } ], + "variant_access_point": [ + "\u6d2a\u6d1e\u7e23", + "\u6d2a\u6d1e\u53bf", + "Hongdong Xian" + ], + "md5": "d099a62bf3a8a130f1731e85427a39eb" + }, + { + "authorized_access_point": "Middle Fork Kentucky river (Ky. ; cours d'eau)", + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271323337", + "value": "http://www.idref.fr/279372906", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb169098180", - "source": "BNF" } ], - "classification": [ + "note": [ { - "type": "bf:ClassificationDdc", - "classificationPortion": "914" + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-12" + ] } ], - "variant_access_point": [ - "Siders (Suisse)" - ], - "authorized_access_point": "Sierre (Suisse)" + "pid": "279372906", + "type": "bf:Place", + "md5": "d07e1cdc84ab45107142ddedb0260971" }, { - "md5": "90c31e33485c8af3a47b2f88f11d214a", - "pid": "271323353", + "authorized_access_point": "North Fork Kentucky river (Ky. ; cours d'eau)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279373139", + "source": "IDREF" + } + ], "note": [ { + "noteType": "dataSource", "label": [ - "Site officiel de la commune - http://www.kippel.ch (2010-07-16)" - ], - "noteType": "dataSource" + "https://en.wikipedia.org/wiki/North_Fork_Kentucky_River/, 2024-07-12" + ] } ], + "pid": "279373139", "type": "bf:Place", + "md5": "ab839157adb79b44ba90867823a36f30" + }, + { + "authorized_access_point": "Huaiji Xian (Chine)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271323353", + "value": "http://www.idref.fr/279373171", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15189407c", - "source": "BNF" } ], - "variant_access_point": [ - "Kypil (Valais, Suisse)" - ], - "authorized_access_point": "Kippel (Valais, Suisse)" - }, - { - "md5": "528fe09670e33aa44d7d5d95eb48653d", - "pid": "271323426", "note": [ { + "noteType": "dataSource", "label": [ - "Wikip\u00e9dia - http://fr.wikipedia.org (2014-04-24)", - "Guides bleus : Suisse, 1991", - "Dict. historique de la Suisse - http://www.hls-dhs-dss.ch (2014-04-24)" - ], - "noteType": "dataSource" + "Wikip\u00e9dia, https://zh.wikipedia.org/wiki/%E6%80%80%E9%9B%86%E5%8E%BF, 2021-03-03", + "\u4e2d\u56fd\u8bed\u8a00\u6587\u5316\u5178\u85cf . \u6000\u96c6 / \u6768\u74a7\u83c0 \u8457, \u66f9\u5fd7\u8018, \u738b\u8389\u5b81, \u674e\u9526\u82b3 \u4e3b\u7f16, 2022", + "Zhongguo yu yan wen hua dian cang . Huaiji / Yang Biwan zhu, Cao Zhiyun, Wang Lining, Li Jinfang zhu bian, 2022" + ] }, { + "noteType": "general", "label": [ - "Ancienne commune du Valais, qui a fusionn\u00e9 le 1er janvier 2009 avec les 5 autres communes du val d'Anniviers pour former la commune d'Anniviers" - ], - "noteType": "general" + "District de la province du Guangdong, Chine" + ] } ], + "pid": "279373171", "type": "bf:Place", - "bnf_type": "sujet Rameau", - "closeMatch": [ + "broader": [ { - "source": "LCA", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/names/n83221461", - "source": "LCA" - }, - "authorized_access_point": "Grimentz (Switzerland)" + "authorized_access_point": "Guangdong (Chine ; province)" } ], + "variant_access_point": [ + "\u61f7\u96c6\u7e23", + "\u6000\u96c6\u53bf", + "Huaiji Xian" + ], + "md5": "3d2d4dc3faffb112acb88308cbe6d283" + }, + { + "authorized_access_point": "Yerkes (Ky.)", + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271323426", + "value": "http://www.idref.fr/279373198", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12068132h", - "source": "BNF" - } - ], - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "914" } ], - "variant_access_point": [ - "Anniviers (Suisse)" - ], - "authorized_access_point": "Grimentz (Suisse)" - }, - { - "md5": "e6de4217e2eb56fe8a5e953e2e1c6b4b", - "pid": "271323485", "note": [ { + "noteType": "dataSource", "label": [ - "GDEL" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-12" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Perry" + ] } ], + "pid": "279373198", "type": "bf:Place", + "md5": "ba93861c4b28ec524ac7df9a954b77e6" + }, + { + "authorized_access_point": "Shoal (Ky.)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271323485", + "value": "http://www.idref.fr/279373287", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12131962h", - "source": "BNF" } ], - "authorized_access_point": "Collombey-Muraz (Suisse)" - }, - { - "md5": "b8427f972bfa30177dc67087529f6964", - "pid": "271323515", "note": [ { + "noteType": "dataSource", "label": [ - "Wikip\u00e9dia - http://fr.wikipedia.org (2015-04-30)", - "Dict. historique de la Suisse (art. : Port-Valais) - http://www.hls-dhs-dss.ch (2015-05-18)" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-12" + ] }, { + "noteType": "general", "label": [ - "Localit\u00e9 de la commune de Port-Valais dans le canton du Valais, situ\u00e9e au sud du lac L\u00e9man et proche de la fronti\u00e8re fran\u00e7aise" - ], - "noteType": "general" + "Situ\u00e9 dans le comt\u00e9 de Leslie" + ] } ], + "pid": "279373287", "type": "bf:Place", + "md5": "31b9a38be7469c0e5ee485c6eac08f4e" + }, + { + "authorized_access_point": "Slavans (Ky.)", "bnf_type": "sujet Rameau", - "closeMatch": [ - { - "source": "LCA", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/names/n83224886", - "source": "LCA" - }, - "authorized_access_point": "Bouveret (Switzerland)" - } - ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271323515", + "value": "http://www.idref.fr/279375387", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb169627006", - "source": "BNF" - }, - { - "type": "bf:Nbn", - "value": "(DE-588)4697744-2", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/113144647637759345491", - "source": "VIAF" } ], - "classification": [ + "note": [ { - "type": "bf:ClassificationDdc", - "classificationPortion": "914" + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-12" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de McCreary" + ] } ], - "variant_access_point": [ - "Bouveret, Le (Valais, Suisse)", - "Bouveret (Valais, Suisse)", - "Port-Valais (Valais, Suisse) - Village du Bouveret" - ], - "authorized_access_point": "Le Bouveret (Valais, Suisse)" + "pid": "279375387", + "type": "bf:Place", + "md5": "c0469d9836f30a9f2bc538eddd29cfe3" }, { - "md5": "8c7e59deb2c8d41a5e8252a60a75da50", - "pid": "271323523", - "type": "bf:Place", + "authorized_access_point": "Byrdstown (Tenn.)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271323523", + "value": "http://www.idref.fr/279375794", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb17010914h", - "source": "BNF" } ], - "variant_access_point": [ - "Val d'Illiez (Valais, Suisse ; vall\u00e9e)" - ], - "authorized_access_point": "Illiez, Val d' (Valais, Suisse ; vall\u00e9e)" - }, - { - "md5": "2db810daa89f34f9a8a89efbfc700021", - "pid": "271323566", "note": [ { + "noteType": "dataSource", "label": [ - "Wikip\u00e9dia : Pays des Trois-Lacs - https://fr.wikipedia.org (2016-01-15)", - "Wikipedia : Drei-Seen-Land - https://de.wikipedia.org (2016-01-15)", - "Drei-Seen-Land / Pays des Trois-Lacs - http://www.bielersee.ch (2016-01-15)", - "Jura & Trois-Lacs - http://www.paysdestroislacs.ch (2016-01-15)" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-12" + ] }, { + "noteType": "general", "label": [ - "R\u00e9gion (notamment viticole) du nord-ouest de la Suisse, autour des trois lacs de Bienne, Morat et Neuch\u00e2tel (ainsi qu'une partie du bassin moyen de l'Aar), recouvrant pour partie 3 cantons de la Suisse romande (Fribourg, Neuch\u00e2tel, Vaud) et 1 de la Suisse al\u00e9manique (Berne)" - ], - "noteType": "general" + "Situ\u00e9 dans le comt\u00e9 de Pickett" + ] } ], + "pid": "279375794", "type": "bf:Place", + "md5": "bf09491ce501107a3466dd9f4b7c313b" + }, + { + "authorized_access_point": "Obey river (Tenn. ; cours d'eau)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271323566", + "value": "http://www.idref.fr/279375867", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb170172206", - "source": "BNF" - } - ], - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "914" } ], - "variant_access_point": [ - "Drei-Seen-Land (Suisse)", - "Pays des Trois-Lacs (Suisse)", - "R\u00e9gion des Trois-Lacs (Suisse)", - "Trois-Lacs (Suisse ; r\u00e9gion)" - ], - "authorized_access_point": "Trois-Lacs, Pays des (Suisse)" - }, - { - "md5": "ea5330b04fb1837acea41d85b002ba4c", - "pid": "271323590", "note": [ { + "noteType": "dataSource", "label": [ - "Coordonn\u00e9es g\u00e9ographiques : E 7\u00b036' / N 47\u00b033'" - ], - "noteType": "general" + "https://en.wikipedia.org/wiki/Obey_River/, 2024-07-12" + ] + }, + { + "noteType": "general", + "label": [ + "La rivi\u00e8re Obey est un affluent de la rivi\u00e8re Cumberland dans l'\u00c9tat am\u00e9ricain du Tennessee" + ] } ], + "pid": "279375867", "type": "bf:Place", + "md5": "802efe0fe99107bb4e07d9da0a4bd3f9" + }, + { + "authorized_access_point": "Huan Xian (Chine)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271323590", + "value": "http://www.idref.fr/279376405", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb152399861", - "source": "BNF" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)040046176", - "source": "GND" - }, - { - "type": "uri", - "value": "http://viaf.org/viaf/3925169442785525340002", - "source": "VIAF" } ], - "variant_access_point": [ - "B\u00e2le-Ville (Suisse)", - "Basel-Stadt (Suisse)", - "Basilea Citta (Suisse)", - "Basilea", - "Basilia", - "Basilea Rauracorum", - "Colonia Munatiana", - "Athenae Rauracae", - "Bazela", - "Baesula", - "Basula", - "Baille", - "Baalle", - "Basle" - ], - "authorized_access_point": "B\u00e2le (B\u00e2le-Ville, Suisse)" - }, - { - "md5": "10c57f8501c022e40c13a450cb672948", - "pid": "271323663", "note": [ { + "noteType": "dataSource", "label": [ - "Geonames - http://www.geonames.org (2014-09-12)", - "Atlas universel / \"Le Monde\", S\u00e9lection du \"Reader's digest\", 1993" - ], - "noteType": "dataSource" + "Wikip\u00e9dia, https://zh.wikipedia.org/zh-cn/%E7%8E%AF%E5%8E%BF, 2024-07-12", + "\u4e2d\u56fd\u8bed\u8a00\u6587\u5316\u5178\u85cf . \u73af\u53bf / \u8c2d\u6cbb\u742a \u8457, \u66f9\u5fd7\u8018, \u738b\u8389\u5b81, \u674e\u9526\u82b3 \u4e3b\u7f16, 2022", + "Zhongguo yu yan wen hua dian cang . Huan xian / Tan Zhiqi zhu, Cao Zhiyun, Wang Lining, Li Jinfang zhu bian, 2022" + ] }, { + "noteType": "general", "label": [ - "Commune du canton du Valais" - ], - "noteType": "general" + "District de la province du Gansu, Chine" + ] } ], + "pid": "279376405", "type": "bf:Place", - "bnf_type": "sujet Rameau", - "closeMatch": [ + "broader": [ { - "source": "LCA", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/names/n83239447", - "source": "LCA" - }, - "authorized_access_point": "Vouvry (Switzerland)" + "authorized_access_point": "Gansu (Chine ; province)" } ], + "variant_access_point": [ + "\u74b0\u7e23", + "\u73af\u53bf", + "Huan Xian" + ], + "md5": "86ffeebad7664df542464e5883201ece" + }, + { + "authorized_access_point": "Stephensport (Ky.)", + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271323663", + "value": "http://www.idref.fr/27937660X", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb16909821w", - "source": "BNF" } ], - "classification": [ + "note": [ { - "type": "bf:ClassificationDdc", - "classificationPortion": "914" + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-12" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Breckenridge" + ] } ], - "authorized_access_point": "Vouvry (Suisse)" + "pid": "27937660X", + "type": "bf:Place", + "md5": "697e1431dbc556202cd36a0a079257f3" }, { - "md5": "daf5485db2ea0beba624a685a79844b5", - "pid": "27132368X", - "type": "bf:Place", + "authorized_access_point": "Patesville (Ky.)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/27132368X", + "value": "http://www.idref.fr/279376693", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb169778199", - "source": "BNF" } ], - "authorized_access_point": "Gr\u00e4chen (Valais, Suisse)" - }, - { - "md5": "4e4b604b1ec26ac068d307d8ca30964e", - "pid": "271323698", "note": [ { + "noteType": "dataSource", "label": [ - "Coordonn\u00e9es g\u00e9ographiques : E 7\u00b048' / N 46\u00b011'" - ], - "noteType": "general" + "http://www.geonames.org/, 2024-" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Hancock" + ] } ], + "pid": "279376693", "type": "bf:Place", + "md5": "c9a1cfbec8a2039a27d06f5165937e8e" + }, + { + "authorized_access_point": "Jian'ou Shi (Chine)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271323698", + "value": "http://www.idref.fr/279376804", "source": "IDREF" - }, + } + ], + "note": [ { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15301322r", - "source": "BNF" + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia, https://zh.wikipedia.org/wiki/%E5%BB%BA%E7%93%AF%E5%B8%82, 2024-07-12", + "\u4e2d\u56fd\u8bed\u8a00\u6587\u5316\u5178\u85cf . \u5efa\u74ef / \u9093\u4eab\u748b, \u5434\u96ea\u704f, \u5f90\u6587\u4eae \u8457, \u66f9\u5fd7\u8018, \u738b\u8389\u5b81, \u674e\u9526\u82b3 \u4e3b\u7f16, 2022", + "Zhongguo yu yan wen hua dian cang . Jian'ou / Deng Xiangzhang, Wu Xuehao, Xu Wenliang zhu, Cao Zhiyun, Wang Lining, Li Jinfang zhu bian, 2022" + ] }, { - "type": "bf:Nbn", - "value": "(DE-101)952907682", - "source": "GND" - }, + "noteType": "general", + "label": [ + "Ville de la province du Fujian, Chine" + ] + } + ], + "pid": "279376804", + "type": "bf:Place", + "broader": [ { - "type": "uri", - "value": "http://viaf.org/viaf/5819169442791125340000", - "source": "VIAF" + "authorized_access_point": "Fujian (Chine ; province)" } ], "variant_access_point": [ - "Zaniglas", - "Saniglaas" + "\u5efa\u750c\u5e02", + "\u5efa\u750c\u5e02", + "Jianou", + "Jian ou" ], - "authorized_access_point": "Saint Nicolas (Valais, Suisse)" + "md5": "334251b43baf01031901e67553aad445" }, { - "md5": "2646327eb078c75fa4466625a6f24280", - "pid": "271323728", - "type": "bf:Place", + "authorized_access_point": "Cave in Rock (Ill.)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271323728", + "value": "http://www.idref.fr/279377266", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb170109286", - "source": "BNF" } ], - "authorized_access_point": "Troistorrents (Valais, Suisse)" - }, - { - "md5": "ee42f3e7c54b5e6ae44747e3cc551352", - "pid": "271323752", "note": [ { + "noteType": "dataSource", "label": [ - "Dictionnaire historique de la Suisse - http://www.hls-dhs-dss.ch/textes/f/F2757.php (2010-07-16)" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-12" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Hardin" + ] } ], + "pid": "279377266", "type": "bf:Place", + "md5": "829c7bb92f82b2f8b0587a8234942a43" + }, + { + "authorized_access_point": "Jiangshan Shi (Chine)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271323752", + "value": "http://www.idref.fr/279377452", "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia, https://zh.wikipedia.org/wiki/%E6%B1%9F%E5%B1%B1%E5%B8%82, 2024-07-12", + "\u4e2d\u56fd\u8bed\u8a00\u6587\u5316\u5178\u85cf . \u6c5f\u5c71 / \u738b\u6d2a\u949f, \u8d75\u666e\u4e49 \u8457, \u66f9\u5fd7\u8018 \u4e3b\u7f16, 2022", + "Zhongguo yu yan wen hua dian cang . Jiangshan / Wang Hongzhong, Zhao Puyi zhu, Cao Zhiyun zhu bian, 2022" + ] }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15171340s", - "source": "BNF" + "noteType": "general", + "label": [ + "Ville de la province du Zhejiang, Chine" + ] } ], - "variant_access_point": [ - "Uffen der Blattun (Valais, Suisse)", - "Eisten (Valais, Suisse)", - "Ried (Valais, Suisse)", - "Weissenried (Valais, Suisse)", - "Fafleralp (Valais, Suisse)", - "K\u00fchmatt (Valais, Suisse)" + "pid": "279377452", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Zhejiang (Chine ; province)" + } ], - "authorized_access_point": "Blatten (Valais, Suisse)" + "md5": "5c2bb2ee9a896675cad0f7cbf89c8328" }, { - "md5": "0b75ba28e5ecb83e276f6ac529886c46", - "pid": "271323957", - "type": "bf:Place", + "authorized_access_point": "Jiangyong Xian (Chine)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271323957", + "value": "http://www.idref.fr/279378173", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb170137616", - "source": "BNF" } ], - "authorized_access_point": "Leysin (Vaud, Suisse)" - }, - { - "md5": "1e2a3bc8ebc1159a505cf80551927955", - "pid": "271323973", "note": [ { + "noteType": "dataSource", "label": [ - "L'atlas National geographic, 2007", - "Petit Robert des noms propres 2015 (art. : Morat [ville])", - "Grand Larousse universel (art. : Morat [ville])", - "Guides Voir : Suisse, 2006" - ], - "noteType": "dataSource" + "Wikip\u00e9dia, https://zh.wikipedia.org/wiki/%E6%B1%9F%E6%B0%B8%E5%8E%BF, 2024-07-12", + "\u4e2d\u56fd\u8bed\u8a00\u6587\u5316\u5178\u85cf . \u6c5f\u6c38 / \u6768\u6167\u541b \u8457, \u66f9\u5fd7\u8018, \u738b\u8389\u5b81, \u674e\u9526\u82b3 \u4e3b\u7f16, 2022", + "Zhongguo yu yan wen hua dian cang . Jiangyong / Yang Huijun zhu, Cao Zhiyun, Wang Lining, Li Jinfang zhu bian, 2022" + ] }, { + "noteType": "general", "label": [ - "Lac de Suisse romande (canton de Fribourg), proche de celui de Neuch\u00e2tel" - ], - "noteType": "general" + "Ville de la province du Hunan, Chine" + ] } ], + "pid": "279378173", "type": "bf:Place", - "bnf_type": "sujet Rameau", - "closeMatch": [ + "broader": [ { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85087214", - "source": "LCSH" - }, - "authorized_access_point": "Morat, Lake of (Switzerland)" + "authorized_access_point": "Hunan (Chine)" } ], + "variant_access_point": [ + "\u6c5f\u6c38\u7e23" + ], + "md5": "19a02dd54e227c7ec0eaaa985e0fd312" + }, + { + "authorized_access_point": "San Juan Teotihuac\u00e1n (Mexico)", + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271323973", + "value": "http://www.idref.fr/279380925", "source": "IDREF" }, { + "source": "VIAF", "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb170195106", - "source": "BNF" + "value": "https://viaf.org/viaf/140422932" } ], - "classification": [ + "note": [ { - "type": "bf:ClassificationDdc", - "classificationPortion": "914" + "noteType": "dataSource", + "label": [ + "Phone call to BGN 4/27/83", + "Apuntes hist\u00f3ricos del Valle de Teotihuac\u00e1n en la \u00e9poca colonial / por Ignacio B. del Castillo,... ; Secretar\u00eda de Agricultura y Fomento, Direcci\u00f3n de Antropolog\u00eda" + ] } ], - "variant_access_point": [ - "Murtensee (Suisse)" - ], - "authorized_access_point": "Morat, Lac de (Suisse)" + "pid": "279380925", + "type": "bf:Place", + "md5": "3ac9915559163475136a7cbc3f6f6b75" }, { - "md5": "2021cb4a2bf67d4b37d77322b097296d", - "pid": "271324015", - "type": "bf:Place", + "authorized_access_point": "Cornettsville (Ky.)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271324015", + "value": "http://www.idref.fr/279385544", "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-15" + ] }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb153071261", - "source": "BNF" + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Perry" + ] } ], - "authorized_access_point": "Moutier (Berne, Suisse)" + "pid": "279385544", + "type": "bf:Place", + "md5": "01759c90a6b7ecf4c094c0350393813a" }, { - "md5": "51a109a94d96fbdad1b01f4740998ccb", - "pid": "271324031", - "type": "bf:Place", + "authorized_access_point": "Delphia (Ky.)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271324031", + "value": "http://www.idref.fr/279385625", "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-15" + ] }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15170908q", - "source": "BNF" + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Perry" + ] } ], - "authorized_access_point": "Bex (Vaud, Suisse)" + "pid": "279385625", + "type": "bf:Place", + "md5": "70d640aeeee0a5a36bca0d13ab8a3a32" }, { - "md5": "259dcb7e8c9441dd436351a9d0f6602f", - "pid": "271324058", - "type": "bf:Place", + "authorized_access_point": "Nolin river (Ky. ; cours d'eau)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271324058", + "value": "http://www.idref.fr/27938646X", "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-15" + ] }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15292722s", - "source": "BNF" + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 d'Edmonson" + ] } ], - "variant_access_point": [ - "Hauderes, Les (Valais, Suisse)" - ], - "authorized_access_point": "Les Hauderes (Valais, Suisse)" + "pid": "27938646X", + "type": "bf:Place", + "md5": "c3e1f64b4ce0275644f4d61375e166ab" }, { - "md5": "f4e58ef90fee591b3056b8978661938c", - "pid": "271324074", - "type": "bf:Place", + "authorized_access_point": "South Fork Licking river (Ky. ; cours d'eau)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271324074", + "value": "http://www.idref.fr/279387199", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15286338t", - "source": "BNF" } ], - "authorized_access_point": "Saas Grund (Valais, Suisse)" - }, - { - "md5": "be627bc82578b05cb24254460bfc269a", - "pid": "271324562", "note": [ { + "noteType": "dataSource", "label": [ - "L'apothicairerie de l'h\u00f4pital de Dax / Xavier Petitcol, 2023" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-15" + ] } ], + "pid": "279387199", "type": "bf:Place", + "md5": "c2a08f87c2ad5b87ea64e49a0e543911" + }, + { + "authorized_access_point": "Creux, Tunnel du (Neuch\u00e2tel, Suisse)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271324562", + "value": "http://www.idref.fr/279388810", "source": "IDREF" } ], - "authorized_access_point": "Dax (Landes)" - }, - { - "md5": "d43e35c11f9a16ed068d502e3e090c93", - "pid": "271326441", "note": [ { + "noteType": "dataSource", "label": [ - "Atlas universalis (Val di Gressoney)", - "Valle d'Aosta-Vall\u00e9e d'Aoste - http://www.regione.vda.it (2006-04-20)" - ], - "noteType": "dataSource" + "Tunnel du Creux : Action de d\u00e9pollution et petit historique de ce tunnel \u00e9ph\u00e9m\u00e8re (La Chaux-de-Fonds, NE) / Kesselring, Thomas auteur Blant, Denis, 1964-....auteur. Publi\u00e9 dans: Cavernes : bulletin des Sections neuch\u00e2teloises de la Soci\u00e9t\u00e9 suisse de sp\u00e9l\u00e9ologie ; 2023, n\u00ba. 1, p. 16-19" + ] }, { + "noteType": "general", "label": [ - "Vall\u00e9e du nord-est du Val d'Aoste au pied du Mont Rose, drain\u00e9e par le Lys. Elle est habit\u00e9e depuis le 13e si\u00e8cle par des Valaisiens (Walser) germanophones" - ], - "noteType": "general" + "Ancienne ligne ferrovi\u00e8re Les Convers-Renan, 1874-1888." + ] } ], + "pid": "279388810", "type": "bf:Place", + "md5": "e9b0e27e89a80eae8d58b4afeda94f0c" + }, + { + "authorized_access_point": "Brusque (Br\u00e9sil)", "bnf_type": "sujet Rameau", - "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85057315", - "source": "LCSH" - }, - "authorized_access_point": "Gressoney Valley (Italy)" - } - ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271326441", + "value": "http://www.idref.fr/279390351", "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Brusque : subs\u00eddios para a hist\u00f3ria de uma col\u00f4nia nos tempos de Imp\u00e9rio / Oswaldo R. Cabral, 1958", + "https://www.geonames.org, 2024-07-15" + ] }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb12725205j", - "source": "BNF" + "noteType": "general", + "label": [ + "Ville br\u00e9silienne de l'\u00c9tat de Santa Catarina.", + "S 27\u00b005\u203253\u2033 W 48\u00b054\u203246\u2033" + ] } ], - "classification": [ + "pid": "279390351", + "type": "bf:Place", + "broader": [ { - "type": "bf:ClassificationDdc", - "classificationPortion": "914" + "authorized_access_point": "Santa Catarina (Br\u00e9sil, \u00c9tat)" } ], - "variant_access_point": [ - "Gressoney, Val di (Italie)", - "Gressoney, Valle di (Italie)", - "Gressoneytal (Italie)", - "Lys, Vall\u00e9e du (Italie)", - "Val de Gressoney (Italie)" - ], - "authorized_access_point": "Gressoney, Val de (Italie)" + "md5": "6914fc6ed008ee470621ba7a91d8ed97" }, { - "md5": "2f570620f8f7ce96a69e3a52d9f29e75", - "pid": "271326476", - "type": "bf:Place", + "authorized_access_point": "Pinghe Xian (Chine)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271326476", + "value": "http://www.idref.fr/279391544", "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia, https://zh.wikipedia.org/zh-hans/%E5%B9%B3%E5%92%8C%E5%8E%BF, 2024-07-15", + "\u5e73\u548c\u4f20\u7edf\u5efa\u7b51 / \u9ec4\u6c49\u6c11, \u8303\u6587\u6600 \u8457, 2023", + "Pinghe chuan tong jian zhu / Huang Hanmin,Fan Wenyun zhu, 2023" + ] }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15312266j", - "source": "BNF" + "noteType": "general", + "label": [ + "District de la province du Fujian, Chine" + ] + } + ], + "pid": "279391544", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Fujian (Chine ; province)" } ], - "authorized_access_point": "Randa (Valais, Suisse)" + "variant_access_point": [ + "\u5e73\u548c\u7e23", + "\u5e73\u548c\u53bf", + "Pinghe Xian" + ], + "md5": "6852e2f02c5e2230f77132b533249696" }, { - "md5": "038450104d2161ce3dff42a03912a8fe", - "pid": "271326484", - "type": "bf:Place", + "authorized_access_point": "Nanjing Xian (Chine)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271326484", + "value": "http://www.idref.fr/279391609", "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia, https://zh.wikipedia.org/wiki/%E5%8D%97%E9%9D%96%E5%8E%BF, 2024-07-15", + "\u5357\u9756\u4f20\u7edf\u5efa\u7b51 / \u9ec4\u6c49\u6c11, \u8303\u6587\u6600 \u8457, 2022", + "Nanjing chuan tong jian zhu / Huang Hanmin,Fan Wenyun zhu, 2022" + ] }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15288490p", - "source": "BNF" + "noteType": "general", + "label": [ + "District de la province du Fujian, Chine" + ] + } + ], + "pid": "279391609", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Fujian (Chine ; province)" } ], "variant_access_point": [ - "Engadin (Grisons, Suisse ; vall\u00e9e)", - "Caput Oeni" + "\u5357\u9756\u7e23", + "\u5357\u9756\u53bf", + "Nanjing Xian" ], - "authorized_access_point": "Engadine (Grisons, Suisse ; vall\u00e9e)" + "md5": "e98a8d6bbba499bbcf42610e2f7bd8fa" }, { - "md5": "a2f78ce1651db1de4f9d2c2d1c60f3fd", - "pid": "271326506", - "type": "bf:Place", + "authorized_access_point": "Jinhua Xian (Chine)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271326506", + "value": "http://www.idref.fr/279392400", "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "\u4e2d\u56fd\u8bed\u8a00\u6587\u5316\u5178\u85cf . \u91d1\u534e / \u9ec4\u6653\u4e1c, \u66f9\u6587\u8fdb \u8457, \u66f9\u5fd7\u8018 \u4e3b\u7f16, 2017", + "Zhongguo yu yan wen hua dian cang . Jinhua / Huang Xiaodong, Cao Wenjin zhu, Cao Zhiyun zhu bian, 2017" + ] }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb152863395", - "source": "BNF" + "noteType": "general", + "label": [ + "District de la province du Zhejiang, Chine" + ] + } + ], + "pid": "279392400", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Zhejiang (Chine ; province)" } ], - "authorized_access_point": "Saas Almagell (Valais, Suisse)" + "variant_access_point": [ + "\u91d1\u83ef\u7e23", + "\u91d1\u534e\u53bf", + "Jinhua Xian" + ], + "md5": "fddfa6fc05eee88ad49c3b5553e0609a" }, { - "md5": "8b1fb2bc02b04bb0a4d7aa9f9f6b74b4", - "pid": "271326514", - "type": "bf:Place", + "authorized_access_point": "Jingxing Xian (Chine)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271326514", + "value": "http://www.idref.fr/279394381", "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia, https://zh.wikipedia.org/wiki/%E4%BA%95%E9%99%89%E5%8E%BF, 2024-07-15", + "\u4e2d\u56fd\u8bed\u8a00\u6587\u5316\u5178\u85cf . \u4e95\u9649 / \u6851\u5b87\u7ea2, \u8bb8\u6167\u654f, \u5218\u6676 \u8457, \u66f9\u5fd7\u8018 \u4e3b\u7f16, 2017", + "Zhongguo yu yan wen hua dian cang . Jingxing / Sang Yuhong, Xu Huimin, Liu Jing zhu, Cao Zhiyun zhu bian, 2017" + ] }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb170155227", - "source": "BNF" + "noteType": "general", + "label": [ + "District de la province du Hebei, Chine" + ] + } + ], + "pid": "279394381", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Hebei (Chine ; province)" } ], - "authorized_access_point": "Grand Combin (Valais, Suisse ; mont)" + "variant_access_point": [ + "\u4e95\u9649\u7e23", + "\u4e95\u9649\u53bf", + "Jingxing Xian" + ], + "md5": "1a76c4fe6cca5e61cd710882c7ab3a23" }, { - "md5": "6cf76fe72d44f50fdd37bdb86488cd5e", - "pid": "271326522", - "type": "bf:Place", + "authorized_access_point": "Leye Xian (Chine)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271326522", + "value": "http://www.idref.fr/279396155", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb170113472", - "source": "BNF" } ], - "authorized_access_point": "Trient (Valais, Suisse)" - }, - { - "md5": "3e1fc12e6dfe9f39c2be05a512766caa", - "pid": "271326530", "note": [ { + "noteType": "dataSource", + "label": [ + "Wikip\u00e9dia, https://zh.wikipedia.org/wiki/%E4%B9%90%E4%B8%9A%E5%8E%BF, 2024-07-15", + "\u4e2d\u56fd\u8bed\u8a00\u6587\u5316\u5178\u85cf . \u4e50\u4e1a / \u5415\u5d69\u5d27, \u674e\u56fd\u4fca, \u6ed5\u97e7, \u90d1\u656c\u6587 \u8457, \u66f9\u5fd7\u8018, \u738b\u8389\u5b81, \u674e\u9526\u82b3 \u4e3b\u7f16, 2022", + "Zhongguo yu yan wen hua dian cang . Leye / L\u00fc Songsong, Li Guojun, Teng Ren, Zheng Jingwen zhu, Cao Zhiyun, Wang Lining, Li Jinfang zhu bian, 2022" + ] + }, + { + "noteType": "general", "label": [ - "Dictionnaire historique de la Suisse - http://www.hls-dhs-dss.ch/index.php (2010-07-17)" - ], - "noteType": "dataSource" + "District de la province du Guangxi, Chine" + ] } ], + "pid": "279396155", "type": "bf:Place", - "bnf_type": "sujet Rameau", - "identifiedBy": [ - { - "type": "uri", - "value": "http://www.idref.fr/271326530", - "source": "IDREF" - }, + "broader": [ { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15285465r", - "source": "BNF" + "authorized_access_point": "Guangxi (Chine ; province)" } ], "variant_access_point": [ - "Binn (Wallis, Suisse)", - "Buen (Valais, Suisse)", - "Buyn (Valais, Suisse)", - "Bun (Valais, Suisse)", - "Schmidigehischere (Valais, Suisse)", - "Ze Binne (Valais, Suisse)", - "Wilere (Valais, Suisse)", - "Giesse (Valais, Suisse)", - "Heiligkreuz (Valais, Suisse)" + "\u6a02\u696d\u7e23", + "\u4e50\u4e1a\u53bf", + "Leye Xian" ], - "authorized_access_point": "Binn (Valais, Suisse)" + "md5": "8f7d4ca6f30b8a1b625c3e318fcb4b72" }, { - "md5": "17b03f7f2fc10ce546261142583e1bbd", - "pid": "271326557", + "authorized_access_point": "Florence (Italie) - Chiesa di San Gaggio", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279401639", + "source": "IDREF" + } + ], "note": [ { + "noteType": "dataSource", "label": [ - "GeoNames : glacier du Gi\u00e9tro - http://www.geonames.org (2020-06-17)", - "Wikip\u00e9dia : Glacier du Gi\u00e9tro - https://fr.wikipedia.org (2020-06-10)", - "Les risques naturels en montagnes / F. Naaim-Bouvet, D. Richard, 2015 (p. 220", - "Dict. historique de la Suisse (art. : Bagnes, Val de ; B\u00e2traz, La ; Glaciers ; Inondations ; Venetz, Ignace) - https://hls-dhs-dss.ch (2020-06-17)", - "Examen de l'apologie des travaux du glacier du Gi\u00e9troz / J.-J. Blanc, 1825", - "Glacier-Climat.com : glacier du Gi\u00e9tro/Gi\u00e9troz - https://www.glaciers-climat.com (2020-06-17)" - ], - "noteType": "dataSource" + "Il Monastero di San Gaggio a Firenze : la storia, il piano di recupero / Osanna Fantozzi Micali, Franco Lombardi, Piero Roselli ; a cura di Franco Lombardi, 1996", + "Internet : Wikipedia : https://en.wikipedia.org/wiki/San_Gaggio,_Florence (15-07-2024)" + ] }, { + "noteType": "general", "label": [ - "Glacier du sud-ouest des Alpes valaisanes, descendant du Mont Blanc de Cheilon, \u00e0 hauteur du barrage de Mauvoisin. Souvent en mouvement, ses d\u00e9b\u00e2cles caus\u00e8rent des d\u00e9sagr\u00e9ments en aval, notamment en juin 1818, lorsque la digue du barrage c\u00e9da soudainement, provoquant une inondation importante du val de Bagnes en contrebas, causant la mort de 44 personnes. Il porte le nom d'un village de la commune de Finhaut" - ], - "noteType": "general" + "L'\u00e9glise de San Gaggio \u00e9tait autrefois associ\u00e9e \u00e0 un grand couvent. L'int\u00e9rieur abrite une chapelle de Saint- Andr\u00e9 Corsini (1603), d\u00e9cor\u00e9e de fresques par l'atelier de Bernardino Poccetti et abritant une Annonciation avec des saints par l'atelier de Francesco Brina" + ] } ], + "pid": "279401639", "type": "bf:Place", + "md5": "fa400e98fcef329c358cc0b2bc7f47e1" + }, + { + "authorized_access_point": "Kormak\u00edtis (Chypre)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271326557", + "value": "http://www.idref.fr/279403984", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb17873174h", - "source": "BNF" } ], - "classification": [ + "note": [ { - "name": "Sciences de la Terre", - "type": "bf:ClassificationDdc", - "classificationPortion": "550" + "noteType": "dataSource", + "label": [ + "GeoNames (2024-07-16)" + ] }, { - "type": "bf:ClassificationDdc", - "classificationPortion": "914" + "noteType": "general", + "label": [ + "Kormak\u00edtis est un petit village sur la c\u00f4te septentrionale de Chypre - dans la zone occup\u00e9e par l'arm\u00e9e Turque - aussi appel\u00e9e R\u00e9publique turque de Chypre du Nord. Ce village est le centre historique de l'\u00c9glise maronite chypriote.", + "Coordonn\u00e9es en degr\u00e9s s\u00e9xag\u00e9simaux : N 35\u00b020\u203235\u2033 / E 33\u00b000\u203236\u2033" + ] + } + ], + "pid": "279403984", + "type": "bf:Place", + "broader": [ + { + "authorized_access_point": "Chypre" } ], "variant_access_point": [ - "Ghiacciaio del Gi\u00e9troz (Suisse)", - "Gi\u00e9tro, Glacier du (Suisse)", - "Gietrozgletscher (Suisse)", - "Glacier de Gi\u00e9tro (Suisse)", - "Glacier de Gi\u00e9troz (Suisse)", - "Glacier du Gi\u00e9tro (Suisse)", - "Glacier du Gi\u00e9troz (Suisse)" + "\u039a\u03bf\u03c1\u03bc\u03b1\u03ba\u03af\u03c4\u03b7\u03c2", + "Korucam" ], - "authorized_access_point": "Gi\u00e9troz, Glacier de (Suisse)" + "md5": "110b658b4df5889d60f923a450d95380" }, { - "md5": "8eeef5e50103b876b3641b2e3258678c", - "pid": "271326603", + "authorized_access_point": "Daniel Boone (Ky.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279414145", + "source": "IDREF" + } + ], "note": [ { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-16" + ] + }, + { + "noteType": "general", "label": [ - "https://www.beaumontenveron.fr" - ], - "noteType": "dataSource" + "Situ\u00e9 dans le comt\u00e9 de Hopkins" + ] } ], + "pid": "279414145", "type": "bf:Place", + "md5": "85c3725218f881b0a99f1d9543497ecd" + }, + { + "authorized_access_point": "Heinola (Finlande)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271326603", + "value": "http://www.idref.fr/279416679", "source": "IDREF" } ], - "authorized_access_point": "Beaumont-en-V\u00e9ron" - }, - { - "md5": "ae1ab489aa4d93bb05af2b76e6f435f7", - "pid": "271326670", "note": [ { + "noteType": "dataSource", "label": [ - "https://www.saint-germain-sur-vienne.com/" - ], - "noteType": "dataSource" + "Suomen geologinen kartta Lehti 3112 = =Geological map of Finland : kallioper\u00e4kartta / Geologisen tutkimuslaitoksen julkaisema ; Tehnyt by Mauno Lehij\u00e4rvi, 1970.", + "http://www.geonames.org/658288, 2024-07-16" + ] + }, + { + "noteType": "general", + "label": [ + "Ville de Finlande, r\u00e9gion du P\u00e4ij\u00e4t-H\u00e4me" + ] } ], + "pid": "279416679", "type": "bf:Place", + "md5": "9e96881f5d3a7aa33d4c7ce4cd821409" + }, + { + "authorized_access_point": "Montalto di Castro (Italie)", "bnf_type": "sujet Rameau", + "classification": [ + { + "type": "bf:ClassificationDdc", + "classificationPortion": "914" + } + ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271326670", + "value": "http://www.idref.fr/27941806X", "source": "IDREF" + }, + { + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb18133134c", + "source": "BNF" } ], - "authorized_access_point": "Saint-Germain-sur-Vienne (Indre-et-Loire)" - }, - { - "md5": "3008d11c7a98543768496691079e62e2", - "pid": "271326700", "note": [ { + "noteType": "dataSource", + "label": [ + "Regisvilla : scavi e ricerche (1968-1983) / Carlo Regoli, 2021", + "Comuni Italiani - http://www.comuni-italiani.it (2024-02-27)", + "LCNA (en ligne), 2024-02-24 : Montalto di Castro (Italy)" + ] + }, + { + "noteType": "general", "label": [ - "https://www.annuaire-mairie.fr/mairie-pommiers-30.html" - ], - "noteType": "dataSource" + "Commune de la province de Viterbe, dans le Latium" + ] } ], + "pid": "27941806X", "type": "bf:Place", + "md5": "ec2f438143b695337621a55c5974084e" + }, + { + "authorized_access_point": "Earlington (Ky.)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271326700", + "value": "http://www.idref.fr/279418728", "source": "IDREF" } ], - "authorized_access_point": "Pommiers (Gard)" - }, - { - "md5": "72a54d2b0573f85cc2a0ea5df023b5c0", - "pid": "271326727", "note": [ { + "noteType": "dataSource", "label": [ - "https://www.annuaire-mairie.fr/mairie-couziers.html" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-16" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Hopkins" + ] } ], + "pid": "279418728", "type": "bf:Place", + "md5": "7c037de87176afc19f4c3b00dee6d1d1" + }, + { + "authorized_access_point": "Despotik\u00f2 (Gr\u00e8ce ; \u00eele)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271326727", + "value": "http://www.idref.fr/279421427", "source": "IDREF" } ], - "authorized_access_point": "Couziers (Indre-et-Loire)." - }, - { - "md5": "32f0f99c66cb112b827bc1afef4ee28c", - "pid": "271326751", "note": [ { + "noteType": "dataSource", + "label": [ + "Despotiko, the site of Mandra : the \"temple\" complex and its deposits / edited by Alexandra Alexandridou, Yannos Kourayos and Ilia Daifa, 2023", + "DNB - https://d-nb.info/gnd/1043474439, 2024-07-16" + ] + }, + { + "noteType": "general", "label": [ - "https://cizay-la-madeleine.fr" - ], - "noteType": "dataSource" + "Petite \u00eele des Cyclades au sud-ouest d'Antiparos" + ] } ], + "pid": "279421427", "type": "bf:Place", + "md5": "393ae23d7e9041a5f981151da9167578" + }, + { + "authorized_access_point": "Le Locle (Neuch\u00e2tel, Suisse) - Rue de l'Industrie", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271326751", + "value": "http://www.idref.fr/279426739", "source": "IDREF" } ], - "authorized_access_point": "Cizay-la-Madeleine (Maine-et-Loire)" - }, - { - "md5": "09929c4b42d8faeb7238f29ece031bfc", - "pid": "27132676X", "note": [ { + "noteType": "dataSource", + "label": [ + "[Fontaine et carrefour Rue du Raisin / Rue de l'Industrie, Le Locle], [1980-1990 ?] / Adequa (La Chaux-de-Fonds, Neuch\u00e2tel, Suisse) photographe", + "https://bib.rero.ch/global/documents/2239783, 2024-07-17" + ] + }, + { + "noteType": "general", "label": [ - "Les Incas fondent un empire autour de Cuzco, en 1532 Pizzaro s'empare de Cuzco et fait ex\u00e9cuter Atahualpa" - ], - "noteType": "general" + "Visualisation sur SITN- G\u00e9oportail du syst\u00e8me d'information du territoire neuch\u00e2telois https://sitn.ne.ch, 2024-07-17" + ] } ], + "pid": "279426739", "type": "bf:Place", + "md5": "56ed7ac751c39fc3be99077315955b7b" + }, + { + "authorized_access_point": "Egandawal (Niger)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/27132676X", + "value": "http://www.idref.fr/279461429", "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Calames-202406121584443535" + ] }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15366294s", - "source": "BNF" + "noteType": "general", + "label": [ + "VIllage nig\u00e9rien montagnard de l'A\u00efr. Zone de production agricole." + ] } ], - "variant_access_point": [ - "Incas, Empire des" - ], - "authorized_access_point": "P\u00e9rou, Empire Inca du (11..-1532)" + "pid": "279461429", + "type": "bf:Place", + "md5": "6c98dcb0654e7529cd32ef06bc6e2546" }, { - "md5": "953fb1d993f4a1543e446e656769b715", - "pid": "271326778", - "type": "bf:Place", + "authorized_access_point": "Thessalonique (Gr\u00e8ce) - Cath\u00e9drale Saint Gr\u00e9goire Palamas", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271326778", + "value": "http://www.idref.fr/279466293", "source": "IDREF" - }, + } + ], + "note": [ { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb120482807", - "source": "BNF" + "noteType": "dataSource", + "label": [ + "\u03a4\u03bf \u03ba\u03c4\u03b9\u03c1\u03b9\u03b1\u03ba\u03cc \u03c3\u03c5\u03b3\u03ba\u03c1\u03cc\u03c4\u03b7\u03bc\u03b1 \u03c4\u03b7\u03c2 \u03bc\u03b7\u03c4\u03c1\u03cc\u03c0\u03bf\u03bb\u03b7\u03c2 \u0398\u03b5\u03c3\u03c3\u03b1\u03bb\u03bf\u03bd\u03af\u03ba\u03b7\u03c2 / \u0398\u03ac\u03bb\u03b5\u03b9\u03b1 \u03a3. \u039c\u03b1\u03bd\u03c4\u03bf\u03c0\u03bf\u03cd\u03bb\u03bf\u03c5-\u03a0\u03b1\u03bd\u03b1\u03b3\u03b9\u03c9\u03c4\u03bf\u03c0\u03bf\u03cd\u03bb\u03bf\u03c5, 1985" + ] } ], - "authorized_access_point": "Monthey (Suisse ; r\u00e9gion)" + "pid": "279466293", + "type": "bf:Place", + "md5": "92887a74945d3745303ceaa5a7784585" }, { - "md5": "4612fb997297fa1b39941851ac704c6c", - "pid": "271326786", - "type": "bf:Place", + "authorized_access_point": "La Bourgonce", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271326786", + "value": "http://www.idref.fr/279467850", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15291163g", - "source": "BNF" } ], - "authorized_access_point": "Fionnay (Valais, Suisse)" - }, - { - "md5": "1d2c333e6182f4926619966f42fde0df", - "pid": "271326794", "note": [ { + "noteType": "dataSource", "label": [ - "Les sp\u00e9ciales de l'IGN / Europe : Suisse, 1994", - "Dict. historique de la Suisse - http://www.hls-dhs-dss.ch (2016-01-16)", - "Stadtgemeide Brig-Glis - http://www.brig-glis.ch (2016-01-11)" - ], - "noteType": "dataSource" + "Carte de France - 1:25 000 XXXV-17, 7-8 / dessin\u00e9 et publi\u00e9 par l'Institut g\u00e9ographique national, [195.].", + "http://www.geonames.org/6457174" + ] }, { + "noteType": "general", "label": [ - "Village du Valais, dans le Haut-Valais sur le Rh\u00f4ne, juste avant Glis, (ancienne) commune \u00e0 laquelle il \u00e9tait attach\u00e9, aujourd'hui composante de la commune de Brigue-Glis" - ], - "noteType": "general" + "Village des Vosges" + ] } ], + "pid": "279467850", "type": "bf:Place", + "md5": "0e9652778be4006d5cf71827549db49a" + }, + { + "authorized_access_point": "Porciano (Latium, Italie)", "bnf_type": "sujet Rameau", - "closeMatch": [ - { - "source": "LCA", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/names/nb2015012569", - "source": "LCA" - }, - "authorized_access_point": "Gamsen (Switzerland)" - } - ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271326794", + "value": "http://www.idref.fr/279469632", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb170165930", - "source": "BNF" } ], - "classification": [ + "note": [ { - "type": "bf:ClassificationDdc", - "classificationPortion": "914" + "noteType": "dataSource", + "label": [ + "La Panarda di Porciano : una ricerca storico antropologica/ Gioacchino Giammaria, Laura Gatti, 2017", + "https://it.wikipedia.org/wiki/Porciano_(Ferentino), 2024-07-18." + ] } ], - "variant_access_point": [ - "Brigue-Glis (Suisse)" - ], - "authorized_access_point": "Gamsen (Suisse)" + "pid": "279469632", + "type": "bf:Place", + "md5": "5728292e23f81b0d7d7582ffd1683feb" }, { - "md5": "f641e4e732da482d91d70722a46460ea", - "pid": "271326808", - "type": "bf:Place", + "authorized_access_point": "Xing'an (Chine)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271326808", + "value": "http://www.idref.fr/279471467", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb16981690w", - "source": "BNF" } ], - "authorized_access_point": "Martigny (Valais, Suisse). Ch\u00e2teau de la B\u00e2tiaz" - }, - { - "md5": "60f765323a605bacb4a828eb8a76b9cd", - "pid": "271326824", - "type": "bf:Place", - "bnf_type": "sujet Rameau", - "identifiedBy": [ - { - "type": "uri", - "value": "http://www.idref.fr/271326824", - "source": "IDREF" - }, + "note": [ { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15331899b", - "source": "BNF" + "noteType": "dataSource", + "label": [ + "Daxing'anling zhi wu zhi = Flora of the greater Xing'an mountains / Daxing'anling zhi wu zhi bian wei hui bian" + ] } ], - "authorized_access_point": "Issime (Val d'Aoste, Italie)" + "pid": "279471467", + "type": "bf:Place", + "md5": "89f3c2e18178889d308f573e4bf3cc3e" }, { - "md5": "da2a7da38069a326ab6fb6e713c66fdc", - "pid": "271326832", - "type": "bf:Place", + "authorized_access_point": "Montagne de Xang'an (Chine)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271326832", + "value": "http://www.idref.fr/279471734", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb17015586g", - "source": "BNF" } ], - "variant_access_point": [ - "Lac de Champex (Valais, Suisse)" + "note": [ + { + "noteType": "dataSource", + "label": [ + "Daxing'anling zhi wu zhi = Flora of the greater Xing'an mountains / Daxing'anling zhi wu zhi bian wei hui bian" + ] + } ], - "authorized_access_point": "Champex, Lac de (Valais, Suisse)" + "pid": "279471734", + "type": "bf:Place", + "md5": "bb53f13945b5383073e55e7b205123a7" }, { - "md5": "820b141d4c8478d915a1a7b2c1665341", - "pid": "271326840", - "type": "bf:Place", + "authorized_access_point": "Frassinoro (Italie)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271326840", + "value": "http://www.idref.fr/279478208", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb162621083", - "source": "BNF" } ], - "authorized_access_point": "Anatolie (Turquie ; r\u00e9gion)" - }, - { - "md5": "79c0d48764d6ff3ef674e5fe8720205e", - "pid": "271327383", "note": [ { + "noteType": "general", "label": [ - "Le centre aquatique des Bertisettes / Atelier Po&Po, GCC, Opalia / [auteur Karine Dana], Archibooks + Sautereau \u00c9diteur, 2022" - ], - "noteType": "dataSource" + "Commune italienne de la r\u00e9gion Emilie-Romagne" + ] } ], + "pid": "279478208", "type": "bf:Place", + "md5": "9fe4fd5f242203b411c8ce1ca0a5937d" + }, + { + "authorized_access_point": "D\u00edstomo (Gr\u00e8ce)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271327383", + "value": "http://www.idref.fr/279487606", "source": "IDREF" } ], - "variant_access_point": [ - "Centre aquatique des Bertisettes (Viroflay, France)", - "CAB (Viroflay, France)" - ], - "authorized_access_point": "Viroflay (France)" - }, - { - "md5": "77c753c884702436190a883926ebde25", - "pid": "271328762", "note": [ { + "noteType": "dataSource", "label": [ - "Dict. des communes, 2001" - ], - "noteType": "dataSource" + "GeoNames (2024-07-18)" + ] + }, + { + "noteType": "general", + "label": [ + "D\u00edstomo est un village et une ancienne municipalit\u00e9 grecque dans le district r\u00e9gional de B\u00e9otie. Elle comptait 4 368 habitants en 2001", + "Coordonn\u00e9es en degr\u00e9s s\u00e9xag\u00e9simaux : N 38\u00b025\u203244\u2033 / E 22\u00b040\u203202\u2033" + ] } ], + "pid": "279487606", "type": "bf:Place", - "bnf_type": "sujet Rameau", - "closeMatch": [ + "broader": [ { - "source": "LCA", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/names/no2011036870", - "source": "LCA" - }, - "authorized_access_point": "Saint-Gingolph (France)" + "authorized_access_point": "Gr\u00e8ce" } ], + "variant_access_point": [ + "\u0394\u03af\u03c3\u03c4\u03bf\u03bc\u03bf", + "\u0394\u03af\u03c3\u03c4\u03bf\u03bc\u03bf\u03bd" + ], + "md5": "41734b7ef00fd62e2a07282d6325562d" + }, + { + "authorized_access_point": "Rough river (Ky. ; cours d'eau)", + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271328762", + "value": "http://www.idref.fr/279488076", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb162289872", - "source": "BNF" } ], - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "912" - } - ], - "authorized_access_point": "Saint-Gingolph (Haute-Savoie, France)" - }, - { - "md5": "142cae8fef9fb0e4ddf5f712ec3430d7", - "pid": "271329017", "note": [ { + "noteType": "dataSource", "label": [ - "Quand la grotte Cosquer sort de l'eau : la Villa M\u00e9diterran\u00e9e en porte \u00e0 faux / Pierre Fiastre, \u00c9ditions de l'Aube, 2022" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-18" + ] }, { + "noteType": "general", "label": [ - "B\u00e2timent public construit par Stefano Boeri. Abrite le mus\u00e9e Cosquer M\u00e9diterran\u00e9e depuis 2022", - "Adresse : Esplanade du J4, Promenade Robert Laffont, 13002 Marseille" - ], - "noteType": "general" + "La Rough River est un affluent de la Green River dans le centre-ouest du Kentucky aux \u00c9tats-Unis" + ] } ], + "pid": "279488076", "type": "bf:Place", + "md5": "c35caf1cc075b4d9422ff509a5c18dfc" + }, + { + "authorized_access_point": "Paris (France) - H\u00f4tel Moreau", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271329017", + "value": "http://www.idref.fr/279492820", "source": "IDREF" } ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "Souvenir du g\u00e9n\u00e9ral Moreau en son h\u00f4tel de la Chauss\u00e9e-d'Antin / Simone Saint-Girons, 1961" + ] + }, + { + "noteType": "general", + "label": [ + "H\u00f4tel particulier situ\u00e9 au 20 rue de la Chauss\u00e9e-d'Antin, Paris 9e." + ] + } + ], + "pid": "279492820", + "type": "bf:Place", "variant_access_point": [ - "Villa M\u00e9diterran\u00e9e (Marseille, France)" + "H\u00f4tel Lakanal" ], - "authorized_access_point": "Marseille (France)" + "md5": "cc77617f1072fb370e5b4198dabbdc5b" }, { - "md5": "5dbb2dd52a1de892e183643fb665e805", - "pid": "271329335", - "type": "bf:Place", + "authorized_access_point": "Alto da Serra (Br\u00e9sil)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271329335", + "value": "http://www.idref.fr/279493584", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15331888p", - "source": "BNF" } ], - "authorized_access_point": "Ayas (Val d'Aoste, Italie)" - }, - { - "md5": "9de54104659eda780aadee4349bfb736", - "pid": "271329696", - "type": "bf:Place", - "broader": [ + "note": [ { - "authorized_access_point": "Canaries, \u00celes (Espagne)" + "noteType": "dataSource", + "label": [ + "Orquideas do Alto da Serra : Da Mata Atlantica Pluvial do Sudeste do Brasil $$c David Miller, With 40 colour plates by Izabel Moura Miller and Richard Warren" + ] } ], + "pid": "279493584", + "type": "bf:Place", + "md5": "8bf2072de962ff71daf113640f0e6827" + }, + { + "authorized_access_point": "Saulges (Mayenne) - N\u00e9cropole m\u00e9rovingienne", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271329696", + "value": "http://www.idref.fr/279494602", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15292962k", - "source": "BNF" } ], - "variant_access_point": [ - "Teneriffe, \u00cele de (Canaries, Espagne)" - ], - "authorized_access_point": "Tenerife, \u00cele de (Canaries, Espagne)" - }, - { - "md5": "e9114375c51210143aa41c2b6f0b8f41", - "pid": "271329734", "note": [ { + "noteType": "dataSource", "label": [ - "Atlas Le Monde" - ], - "noteType": "dataSource" + "Crania armoricana... Corpus des cr\u00e2nes armoricains et bretons / Pierre-Roland Giot, 1961" + ] } ], + "pid": "279494602", "type": "bf:Place", + "md5": "67e2109e570462b8f1a36ebf40cc2945" + }, + { + "authorized_access_point": "Carnac (Morbihan) - N\u00e9cropole m\u00e9rovingienne", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271329734", + "value": "http://www.idref.fr/279494637", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb11963639h", - "source": "BNF" } ], - "variant_access_point": [ - "Edinburgh (GB)" + "note": [ + { + "noteType": "dataSource", + "label": [ + "Crania armoricana... Corpus des cr\u00e2nes armoricains et bretons / Pierre-Roland Giot, 1961" + ] + } ], - "authorized_access_point": "\u00c9dimbourg (GB)" + "pid": "279494637", + "type": "bf:Place", + "md5": "2114e86c32a87cf44a546d5b51ad831a" }, { - "md5": "4312e979f358970e942f8f3209f8c105", - "pid": "271329831", - "type": "bf:Place", + "authorized_access_point": "Plouy\u00e9 (Finist\u00e8re) - N\u00e9cropole m\u00e9rovingienne", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271329831", + "value": "http://www.idref.fr/279494653", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb152884911", - "source": "BNF" } ], - "authorized_access_point": "Basse-Engadine (Grisons, Suisse ; vall\u00e9e)" - }, - { - "md5": "3277ed358eabd2292845e1ee6093e286", - "pid": "271329912", "note": [ { + "noteType": "dataSource", "label": [ - "Atlas Le Monde" - ], - "noteType": "dataSource" + "Crania armoricana... Corpus des cr\u00e2nes armoricains et bretons / Pierre-Roland Giot, 1961" + ] } ], + "pid": "279494653", "type": "bf:Place", + "md5": "a0eea5e0663bef18c8552e7a94ad1c2f" + }, + { + "authorized_access_point": "Plufur (C\u00f4tes-d'Armor) - N\u00e9cropole m\u00e9rovingienne", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271329912", + "value": "http://www.idref.fr/279494688", "source": "IDREF" - }, + } + ], + "note": [ { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb121679559", - "source": "BNF" + "noteType": "dataSource", + "label": [ + "Crania armoricana... Corpus des cr\u00e2nes armoricains et bretons / Pierre-Roland Giot, 1961" + ] } ], - "authorized_access_point": "Alagna Valsesia (Italie)" + "pid": "279494688", + "type": "bf:Place", + "md5": "ccaf0b90e1597ba9b368bba8ae73f59c" }, { - "md5": "25447334e143de92d877617d80b78b46", - "pid": "271329998", - "type": "bf:Place", + "authorized_access_point": "Le Locle (Neuch\u00e2tel, Suisse) - Place du 29 F\u00e9vrier", "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Tremezzina (Italie)" - } - ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271329998", + "value": "http://www.idref.fr/279501080", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb120937181", - "source": "BNF" } ], - "classification": [ + "note": [ { - "type": "bf:ClassificationDdc", - "classificationPortion": "914" + "noteType": "dataSource", + "label": [ + "Place du 29 F\u00e9vrier, Le Locle / Adequa (La Chaux-de-Fonds, Neuch\u00e2tel, Suisse) photographe, [1980-1990 ?]", + "Visualisation sur SITN- G\u00e9oportail du syst\u00e8me d'information du territoire neuch\u00e2telois https://sitn.ne.ch, 2024-07-19" + ] + }, + { + "noteType": "general", + "label": [ + "Carrefour routier et place situ\u00e9e entre la Grande-Rue et la Rue Marie-Anne-Calame \u00e0 hauteur du temple du Locle." + ] } ], - "authorized_access_point": "C\u00f4me, Lac de (Italie ; r\u00e9gion)" + "pid": "279501080", + "type": "bf:Place", + "md5": "e7fe3ce86f2e1d98ebfa2cca98c67f5b" }, { - "md5": "de2d02ceffb7fdf00951b1f34db2dcfb", - "pid": "271330031", + "authorized_access_point": "Long Point (Colo.)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/27950277X", + "source": "IDREF" + } + ], "note": [ { + "noteType": "dataSource", "label": [ - "Wikipedia - http://de.wikipedia.org (2015-06-05)", - "Les sp\u00e9ciales de l'IGN / Europe : Suisse, 1994", - "Dict. historique de la Suisse - http://www.hls-dhs-dss.ch (2015-06-05)", - "Kaiseraugst - http://www.kaiseraugst.ch (2015-06-05)" - ], - "noteType": "dataSource" + "http://www.geonames.org/, 2024-07-19" + ] }, { + "noteType": "general", "label": [ - "Commune d'Argovie (district de Rheinfelden), \u00e0 la fronti\u00e8re germano-suisse sur le Rhin, face \u00e0 Augst (canton de B\u00e2le-Campagne). Elle est fond\u00e9e par l'arm\u00e9e romaine comme 'castrum' dans un secteur de la ville basse d'Augusta Raurica (vestiges). Apr\u00e8s avoir fait partie d'Augst (sous le premier nom d'Augst-im-Dorf, avant son appellation actuelle), elle s'en d\u00e9tache en 1442" - ], - "noteType": "general" + "Situ\u00e9 dans le comt\u00e9 de Garfield. Ne pas confondre avec d'autres montagnes du m\u00eame nom dans le m\u00eame comt\u00e9. Se r\u00e9f\u00e9rer aux coordonn\u00e9es" + ] } ], + "pid": "27950277X", "type": "bf:Place", + "md5": "93102ee73fc519e626b599f0eedfb008" + }, + { + "authorized_access_point": "Sens (Yonne) - Cath\u00e9drale Saint-\u00c9tienne - Tr\u00e9sor", "bnf_type": "sujet Rameau", - "closeMatch": [ - { - "source": "LCA", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/names/n85279520", - "source": "LCA" - }, - "authorized_access_point": "Kaiseraugst (Switzerland)" - } - ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271330031", + "value": "http://www.idref.fr/279503288", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb121618876", - "source": "BNF" - } - ], - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "914" } ], - "variant_access_point": [ - "Augst-im-Dorf (Suisse)", - "Augusta Raurica (Suisse ; ville ancienne)", - "Castrum Rauracense (Suisse ; ville ancienne)" - ], - "authorized_access_point": "Kaiseraugst (Suisse)" - }, - { - "md5": "d448ddbf5885fd7d8d9e7cb350031c18", - "pid": "271330163", "note": [ { + "noteType": "dataSource", "label": [ - "Port-Valais - http://www.port-valais.ch (2015-05-18)", - "Dict. historique de la Suisse - http://www.hls-dhs-dss.ch (2015-05-18)" - ], - "noteType": "dataSource" - }, - { - "label": [ - "Commune du canton du Valais, district de Monthey, comprenant les villages du Bouveret et des Evouettes" - ], - "noteType": "general" + "aLes Tissus anciens du tr\u00e9sor de la cath\u00e9drale de Sens / Chanoine Eug\u00e8ne Chartraire, 1911" + ] } ], + "pid": "279503288", "type": "bf:Place", + "md5": "8ad4449a094f2cefd3afb0875f897b0b" + }, + { + "authorized_access_point": "Twin Peaks (Colo. ; mont)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271330163", + "value": "http://www.idref.fr/279505264", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb16965305j", - "source": "BNF" } ], - "classification": [ + "note": [ { - "type": "bf:ClassificationDdc", - "classificationPortion": "914" + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-19" + ] + }, + { + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de Mesa" + ] } ], - "authorized_access_point": "Port-Valais (Suisse)" + "pid": "279505264", + "type": "bf:Place", + "md5": "1593fd9a381262e0d5ad71a15a230ef1" }, { - "md5": "d6b4979bc25ce4b11c55c651f3ff8027", - "pid": "271331658", - "type": "bf:Place", + "authorized_access_point": "Grenadier range (Colo. ; mont)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271331658", + "value": "http://www.idref.fr/279507097", "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "http://www.geonames.org/, 2024-07-19" + ] }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb152915042", - "source": "BNF" + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de San Juan" + ] } ], - "authorized_access_point": "Mauvoisin (Valais, Suisse)" + "pid": "279507097", + "type": "bf:Place", + "md5": "c00dfbb08c2dd00c555dad517c23dd39" }, { - "md5": "a572340ecc2df763bc1452e09d648602", - "pid": "271331712", - "type": "bf:Place", + "authorized_access_point": "Needle mountains (Colo. ; mont)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271331712", + "value": "http://www.idref.fr/279507208", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15218260r", - "source": "BNF" } ], - "variant_access_point": [ - "Trient, Glacier du (Valais, Suisse)", - "Trient, Plateau du (Valais, Suisse)" - ], - "authorized_access_point": "Trient, Glacier plateau du (Valais, Suisse)" - }, - { - "md5": "698e19088dda25364160dadee9b9e871", - "pid": "27133181X", "note": [ { + "noteType": "dataSource", "label": [ - "Dictionnaire historique de la Suisse - http://www.hls-dhs-dss.ch/index.php (2010-07-17)" - ], - "noteType": "dataSource" - } - ], - "type": "bf:Place", - "broader": [ + "http://www.geonames.org/, 2024-07-19" + ] + }, { - "authorized_access_point": "Alpes L\u00e9pontines, Massif des" + "noteType": "general", + "label": [ + "Situ\u00e9 dans le comt\u00e9 de San Juan et La Plata" + ] } ], + "pid": "279507208", + "type": "bf:Place", + "md5": "4543fb2b345b9d86877391f5e7c0bbb5" + }, + { + "authorized_access_point": "Le Locle (Neuch\u00e2tel, Suisse) - Piscine du Communal", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/27133181X", + "value": "http://www.idref.fr/279516932", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15201346k", - "source": "BNF" } ], - "variant_access_point": [ - "Col de Nufenen (Valais / Tessin, Suisse)", - "Nufenenpass, Col de (Wallis / Tessin, Suisse)", - "Novena, passo della (Vallese / Ticino, Suisse ; Col)", - "Passo della Novena (Vallese / Ticino, Suisse ; Col)" - ], - "authorized_access_point": "Nufenen, Col de (Valais / Tessin, Suisse)" - }, - { - "md5": "49efe810d008874b3f3005a2d72a231c", - "pid": "271332352", "note": [ { + "noteType": "dataSource", "label": [ - "GeoNames - http://www.geonames.org (2018-10-10)", - "Wikipedia - https://de.wikipedia.org (2018-10-10)", - "Grand Larousse universel : Kleiner Walsertal", - "Cartes IGN / Pays, d\u00e9couverte du Monde : Autriche, 2016 : Kl. Walsertal", - "\u00d6sterreich Lex., 1966 : Kleines Walsertal" - ], - "noteType": "dataSource" + "[Piscine du Communal, Le Locle] / Adequa (La Chaux-de-Fonds, Neuch\u00e2tel, Suisse) photographe, [1980-1990 ?]", + "Visualisation sur SITN- G\u00e9oportail du syst\u00e8me d'information du territoire neuch\u00e2telois https://sitn.ne.ch, 2024-07-22", + "Site de la ville du Locle - Piscine du Communal : https://www.lelocle.ch/loisirs-manifestations/loisirs-et-sports/piscine-du-communal/, 2024-07-22" + ] }, { + "noteType": "general", "label": [ - "Vall\u00e9e des Alpes autrichiennes (Vorarlberg, district de Bregenz), contig\u00fce \u00e0 la Bavi\u00e8re (Allemagne). Elle englobe le territoire communal de Mittelberg et doit son nom aux Walser, peuple germanophone du Moyen \u00e2ge venu du Valais (Suisse)" - ], - "noteType": "general" + "Piscine en plein air situ\u00e9e dans le quartier du Communal au sud de la ville du Locle." + ] } ], + "pid": "279516932", "type": "bf:Place", + "md5": "cbc9156246a7957b5a0ee563a0f7a355" + }, + { + "authorized_access_point": "Morat (Fribourg, Suisse) - Ch\u00e2teau", "bnf_type": "sujet Rameau", - "closeMatch": [ - { - "source": "LCSH", - "identifiedBy": { - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh92003686", - "source": "LCSH" - }, - "authorized_access_point": "Kleinwalsertal (Austria)" - } - ], "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271332352", + "value": "http://www.idref.fr/279522053", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb17764284z", - "source": "BNF" } ], - "classification": [ + "note": [ { - "type": "bf:ClassificationDdc", - "classificationPortion": "914" + "noteType": "dataSource", + "label": [ + "Das Schloss Murten : vom Schultheissen zum Oberamtmann = Le ch\u00e2teau de Morat : de l'avoyer au pr\u00e9fet , 2023" + ] } ], + "pid": "279522053", + "type": "bf:Place", "variant_access_point": [ - "Kleiner Walsertal (Autriche)", - "Kleines Walsertal (Autriche)" + "Fribourg, Suisse - Ch\u00e2teau de Morat", + "Schloss Murten (Freiburg, Schweiz)" ], - "authorized_access_point": "Kleinwalsertal (Autriche)" + "md5": "90c4c79722484d33112eabaf4e3302ba" }, { - "md5": "31d31894cc19716f0ac3f512237ea5c0", - "pid": "271332778", - "type": "bf:Place", + "authorized_access_point": "Kamrup (district, Indes)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271332778", + "value": "http://www.idref.fr/279523505", "source": "IDREF" - }, + } + ], + "note": [ { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15766361s", - "source": "BNF" + "noteType": "dataSource", + "label": [ + "Fern flora of Madan Kamdev Hill Region : Kamrup District of Assam, India / Paresh Ch. Kalita and Dipak Konwar" + ] } ], - "authorized_access_point": "Arpille, Mont de l' (Valais, Suisse)" + "pid": "279523505", + "type": "bf:Place", + "md5": "beb7d409f287ed463526a70e013a72c8" }, { - "md5": "6bed3d2cfbd6d16bd036f4eb819a0e84", - "pid": "271332824", - "type": "bf:Place", + "authorized_access_point": "Maison de la Chimie, Paris", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271332824", + "value": "http://www.idref.fr/279523858", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15288492c", - "source": "BNF" } ], - "authorized_access_point": "Haute-Engadine (Grisons, Suisse ; vall\u00e9e)" - }, - { - "md5": "bd9f6814578cf76d4ebecf36172bedab", - "pid": "271333081", "note": [ { + "noteType": "dataSource", + "label": [ + "Danielle Fauque, \u00ab Introduction : Aux origines de la Maison de la Chimie \u00bb, Revue d'histoire des sciences,\u200e 2016, p. 8-10" + ] + }, + { + "noteType": "general", "label": [ - "https://culture.gouv.fr/Espace-documentation/Repertoire-des-ressources-documentaires/Monuments-nationaux/Monastere-de-Saorge" - ], - "noteType": "dataSource" + "La maison de la Chimie est un centre de congr\u00e8s et de conf\u00e9rences." + ] } ], + "pid": "279523858", "type": "bf:Place", + "md5": "d089e42d8de89c290b07129739c2015c" + }, + { + "authorized_access_point": "Le Puy-en-Velay (Haute-Loire) - \u00c9glise Saint-Laurent", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271333081", + "value": "http://www.idref.fr/279524072", "source": "IDREF" } ], - "authorized_access_point": "Saorge (Alpes-Maritimes) -- Monast\u00e8re" + "note": [ + { + "noteType": "dataSource", + "label": [ + "Application de la Photogramm\u00e9trie \u00e0 la restauration de l'\u00e9glise Saint-Laurent du Puy-en-Velay (Haute-Loire) / Minist\u00e8re des Travaux Publics et des Transports, Institut G\u00e9ographique National, 1963" + ] + }, + { + "noteType": "general", + "label": [ + "\u00c9glise class\u00e9e en 1906, contenant les entrailles du conn\u00e9table Bertrand du Guesclin" + ] + } + ], + "pid": "279524072", + "type": "bf:Place", + "md5": "3007111d95b18b7ad9fdc10f0fdd77b2" }, { - "md5": "108e51f237bc1cdeac314cb4fef20162", - "pid": "271333197", - "type": "bf:Place", + "authorized_access_point": "Festival dei Due Mondi, Spolete", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271333197", + "value": "http://www.idref.fr/279524080", "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "A.C. Manni - R. Mencarelli (a cura di), Spoleto 1958, alle radici della storia. Il primo Festival dei Due Mondi, Spoleto 2017." + ] }, { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb170154986", - "source": "BNF" + "noteType": "general", + "label": [ + "Festival de musique classique et pluri-disciplinaire fond\u00e9 en 1958 par le compositeur Gian Carlo Menotti." + ] } ], - "authorized_access_point": "Orsieres (Valais, Suisse). Praz-de-Fort" + "pid": "279524080", + "type": "bf:Place", + "md5": "9eee25a586d46868530a57aed7b718f4" }, { - "md5": "fd94496f6f297bdbcf95da48e06a5d70", - "pid": "271333243", - "type": "bf:Place", + "authorized_access_point": "Kouvola (Finlande)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271333243", + "value": "http://www.idref.fr/279532881", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb152817737", - "source": "BNF" } ], - "variant_access_point": [ - "Urserental, Vall\u00e9e (Uri, Suisse ; Vall\u00e9e)", - "Ursernthal, Vall\u00e9e (Uri, Suisse ; Vall\u00e9e)" - ], - "authorized_access_point": "Urseren, Vall\u00e9e d' (Uri, Suisse)" - }, - { - "md5": "cf6b32604ac5a558fc78a95726b0b060", - "pid": "271337214", "note": [ { + "noteType": "dataSource", "label": [ - "Bridge Orange : Issy-les-Moulineaux : VIGUIER architecture urbanisme paysage / texte de Christine Desmoulins, Archibooks + Sautereau \u00c9diteur, 2023", - "https://www.archistorm.com/realisation-bridge-orange-viguier/, 2023-08-04" - ], - "noteType": "dataSource" + "Suomen geologinen kartta 3113 = = Geological map of Finland : Maaper\u00e4kartta / Geologian tutkimuskeskus ; Laatinut Risto Tynni, 1970.", + "http://www.geonames.org/650861 2024-07-23" + ] }, { + "noteType": "general", "label": [ - "Si\u00e8ge social de l'entreprise Orange construit en 2021 par l'agence \"Viguier architecture urbanisme paysage\"" - ], - "noteType": "general" + "Ville finlandaise, r\u00e9gion de la Kymenlaakso (vall\u00e9e de la Kymi)" + ] } ], + "pid": "279532881", "type": "bf:Place", + "md5": "c4cbb3dcccdc8d349c65392892c1dba4" + }, + { + "authorized_access_point": "Le Locle (Neuch\u00e2tel, Suisse) - Patinoire du Communal", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271337214", + "value": "http://www.idref.fr/279533497", "source": "IDREF" } ], - "variant_access_point": [ - "Bridge Orange (Issy-les-Moulineaux, France)", - "Si\u00e8ge social Orange (Issy-les-Moulineaux, France)" - ], - "authorized_access_point": "Issy-les-Moulineaux (France)" - }, - { - "md5": "60eef5d9179b256e1c265e31a3cd41b8", - "pid": "271438436", "note": [ { + "noteType": "dataSource", "label": [ - "Les vitraux de la cath\u00e9drale de Sion : une cat\u00e9ch\u00e8se en couleurs / Chapitre de la Cath\u00e9drale de Sion, [2020]", - "https://fr.wikipedia.org/wiki/Cath%C3%A9drale_Notre-Dame_de_Sion, 2023-08-21" - ], - "noteType": "dataSource" + "[Patinoire du Communal, Le Locle] / Adequa (La Chaux-de-Fonds, Neuch\u00e2tel, Suisse) photographe, [1980-1990 ?]", + "Site NotreHistoire.ch : https://notrehistoire.ch/entries/LJYMJJPVB5R, 2024-07-23", + "Site de la Ville du Locle - Patinoire du Communal : https://www.lelocle.ch/loisirs-manifestations/loisirs-et-sports/patinoire-du-communal/, 2024-07-23" + ] }, { + "noteType": "general", "label": [ - "La cath\u00e9drale Notre-Dame de Sion (parfois appel\u00e9e Notre-Dame du Glarier) est l\u2019\u00e9glise principale du dioc\u00e8se de Sion" - ], - "noteType": "general" + "Patinoire situ\u00e9e dans le quartier du Communal au sud de la ville du Locle. En plein air jusqu'en 2004, date de sa couverture." + ] } ], + "pid": "279533497", "type": "bf:Place", + "md5": "e7dfd3363d7976055c67394ff552d47d" + }, + { + "authorized_access_point": "Mont Chemin", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/271438436", + "value": "http://www.idref.fr/279535783", "source": "IDREF" - }, - { - "type": "bf:Nbn", - "value": "(DE-101)042499909", - "source": "GND" } ], - "variant_access_point": [ - "Cath\u00e9drale Notre-Dame du Glarier (Sion, Valais, Suisse)", - "Cath\u00e9drale de Sion (Sion, Valais, Suisse)", - "Liebfrauenkathedrale (Sion, Valais, Suisse)", - "Cath\u00e9drale Notre-Dame de Sion (Sion, Valais, Suisse)" - ], - "authorized_access_point": "Sion (Valais, Suisse) - Cath\u00e9drale Notre-Dame du Glarier" - }, - { - "md5": "e89cc872e9b97e80d99e49464ca4fe74", - "pid": "275775569", "note": [ { + "noteType": "dataSource", "label": [ - "Tr\u00e9sors naturels du bois de Finges / Ren\u00e9-Pierre Bille, Philippe Werner, 1986", - "https://www.pfyn-finges.ch/fr/experience/carte-du-parc/offer-detail/site-protege-du-bois-de-finges-1991, 2024-02-14", - "https://hls-dhs-dss.ch/fr/articles/008553/2010-09-28/, 2024-02-14" - ], - "noteType": "dataSource" + "https://fr.wikipedia.org/wiki/Mont_Chemin, 2024-07-23" + ] }, { + "noteType": "general", "label": [ - "R\u00e9serve naturelle" - ], - "noteType": "general" + "Le mont Chemin est une montagne situ\u00e9e dans le canton du Valais en Suisse." + ] } ], + "pid": "279535783", "type": "bf:Place", + "md5": "648ff965dcf0d524ab3435074e769da6" + }, + { + "authorized_access_point": "Nice (Alpes-Maritimes) - Quartier Carabacel", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/275775569", + "value": "http://www.idref.fr/279536011", "source": "IDREF" - }, - { - "type": "uri", - "value": "https://fr.wikipedia.org/wiki/Bois_de_Finges", - "source": "WIKIPEDIA" - }, + } + ], + "note": [ { - "type": "bf:Nbn", - "value": "(DE-101)043187048", - "source": "GND" + "noteType": "dataSource", + "label": [ + "L'architecture dans le quartier Carabacel / Michel Steve, 2001 ?" + ] } ], + "pid": "279536011", + "type": "bf:Place", "variant_access_point": [ - "Bois de Finges (Valais, Suisse)", - "Pfynwald (Valais, Suisse)", - "For\u00eat de Finges (Valais, Suisse)" + "Quartier Carabacel" ], - "authorized_access_point": "Finges, Bois de (Valais, Suisse)" + "md5": "5ea86f265e19a9a55c3108feba36fce9" }, { - "md5": "863166d01c2ec93663e377eefb07e6aa", - "pid": "276510216", + "authorized_access_point": "Sutz-Lattrigen (Berne, Suisse)", + "bnf_type": "sujet Rameau", + "identifiedBy": [ + { + "type": "uri", + "value": "http://www.idref.fr/279537719", + "source": "IDREF" + } + ], "note": [ { + "noteType": "dataSource", "label": [ - "111 lieux des Alpes vaudoises \u00e0 ne pas manquer / Benjamin Amiguet, Marc Voltenauer, 2022", - "https://fr.wikipedia.org/wiki/Alpes_vaudoises, 2024-03-20", - "https://search.ortsnamen.ch/fr/record/803319560/, 2024-03-20" - ], - "noteType": "dataSource" + "D'un lac \u00e0 l'autre : architecture compar\u00e9e de deux villages lacustres du milieu du IVe mill\u00e9naire avant J.-C. dans la r\u00e9gion des Trois-Lacs (Suisse) / Michel Mauvilly, Fabien Langenegger. In : Habitations et habitat du N\u00e9olithique \u00e0 l'\u00c2ge du bronze en France et ses marges, 2018, pages 261-267", + "Dictionnaire historique de la Suisse, https://hls-dhs-dss.ch/fr/articles/000453/2019-04-03, 2024-07-23" + ] }, { + "noteType": "general", "label": [ - "Les Alpes vaudoises sont un ensemble montagneux des Alpes suisses situ\u00e9 principalement dans les cantons de Vaud et du Valais" - ], - "noteType": "general" + "Commune du canton de Berne, arrondissement administratif de Bienne, sur la rive sud du lac de Bienne, comprenant les villages de Sutz et de Lattrigen" + ] } ], + "pid": "279537719", "type": "bf:Place", + "md5": "2d5def5828b332a5ea3296ea679965c6" + }, + { + "authorized_access_point": "Cerro Colorado (Argentine ; parc naturel)", "bnf_type": "sujet Rameau", - "narrower": [ - { - "authorized_access_point": "Grand Muveran (Suisse ; mont)" - }, + "identifiedBy": [ { - "authorized_access_point": "Les Diablerets (Suisse ; massif)" + "type": "uri", + "value": "http://www.idref.fr/279539363", + "source": "IDREF" } ], + "pid": "279539363", + "type": "bf:Place", + "md5": "2a5dfb34f3d5963418d6c81fc5ed3002" + }, + { + "authorized_access_point": "Quartier du Panier (Marseille)", + "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/276510216", + "value": "http://www.idref.fr/279562098", "source": "IDREF" + } + ], + "note": [ + { + "noteType": "dataSource", + "label": [ + "https://fr.wikipedia.org/wiki/Le_Panier" + ] }, { - "type": "bf:Nbn", - "value": "(DE-101)944449360", - "source": "GND" + "noteType": "general", + "label": [ + "2e Arrondissement" + ] } ], + "pid": "279562098", + "type": "bf:Place", "variant_access_point": [ - "Waadtl\u00e4nder Alpen (Suisse)", - "Alpi Valdesi (Suisse)" + "Le Panier (2e arrondissement de Marseille)" ], - "authorized_access_point": "Alpes vaudoises (Suisse)" + "md5": "edbb4044063c3042ac908b563208b1f2" }, { - "md5": "dfc583a3a820e4874eaf2e436aab62b5", - "pid": "276534921", - "note": [ + "authorized_access_point": "Le Locle (Neuch\u00e2tel, Suisse) - Rue Jehan-Droz", + "bnf_type": "sujet Rameau", + "identifiedBy": [ { - "label": [ - "Coordonn\u00e9es g\u00e9ographiques : E 43\u00b020' - E 50\u00b015' / S 12\u00b0 - S 25\u00b030'" - ], - "noteType": "general" + "type": "uri", + "value": "http://www.idref.fr/279571550", + "source": "IDREF" } ], - "type": "bf:Place", - "broader": [ + "note": [ { - "authorized_access_point": "Afrique" + "noteType": "dataSource", + "label": [ + "[Ancienne usine \u00e9lectrique, Le Locle] / Adequa (La Chaux-de-Fonds, Neuch\u00e2tel, Suisse) photographe, [1980-1990 ?]", + "Visualisation sur SITN- G\u00e9oportail du syst\u00e8me d'information du territoire neuch\u00e2telois https://sitn.ne.ch, 2024-07-24" + ] + }, + { + "noteType": "general", + "label": [ + "1\u00e8re rue orient\u00e9e nord-sud \u00e0 l'ouest de l'H\u00f4tel-de-Ville du Locle." + ] } ], + "pid": "279571550", + "type": "bf:Place", + "md5": "7538ca3d41ab610fa8905ba5ecdf0cb6" + }, + { + "authorized_access_point": "Le Locle (Neuch\u00e2tel, Suisse)", "bnf_type": "sujet Rameau", "identifiedBy": [ { "type": "uri", - "value": "http://www.idref.fr/276534921", + "value": "http://www.idref.fr/279571658", "source": "IDREF" - }, - { - "type": "uri", - "value": "http://catalogue.bnf.fr/ark:/12148/cb15325769w", - "source": "BNF" - }, + } + ], + "note": [ { - "type": "bf:Nbn", - "value": "(DE-101)040744256", - "source": "GND" + "noteType": "dataSource", + "label": [ + "[Ancienne usine \u00e9lectrique, Le Locle] / Adequa (La Chaux-de-Fonds, Neuch\u00e2tel, Suisse) photographe, [1980-1990 ?]", + "Visualisation sur SITN- G\u00e9oportail du syst\u00e8me d'information du territoire neuch\u00e2telois https://sitn.ne.ch, 2024-07-24" + ] }, { - "type": "uri", - "value": "http://viaf.org/viaf/146036991", - "source": "VIAF" + "noteType": "general", + "label": [ + "Rue des Jeanneret" + ] } ], - "relation_pid": { - "type": "redirect_from", - "value": "027238180" - }, - "variant_access_point": [ - "R\u00e9publique Malgache (1960-)", - "Malgache, R\u00e9publique (1960-)", - "Madagascar (1960-)" - ], - "authorized_access_point": "Madagascar" + "pid": "279571658", + "type": "bf:Place", + "md5": "c5be134fb333acfc4f354be6825adba8" } -] \ No newline at end of file +] diff --git a/data/pidref_metadata.csv b/data/pidref_metadata.csv index 68237c2a..1a87c155 100644 --- a/data/pidref_metadata.csv +++ b/data/pidref_metadata.csv @@ -1,268 +1,861 @@ -2024-07-16 19:07:13.114461 2024-07-16 19:07:13.11447 c6442462-17ed-42ff-aa7d-283c154f1eff {"md5": "b5ec02204d01ac2897dc3044c9406f8f", "pid": "027227812", "note": [{"label": ["Atlas universalis. GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027227812", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11931552b", "source": "BNF"}], "variant_access_point": ["Dantzig (Pologne)", "Gedania", "Gedani", "Danzig (Pologne)"], "authorized_access_point": "Gdańsk (Pologne)"} 1 -2024-07-16 19:07:13.224633 2024-07-16 19:07:13.224636 49096416-cf21-43ac-a77b-325402f05b43 {"md5": "c0ace3f9408f195aa3ceb8c5d0d180bc", "pid": "027250504", "note": [{"label": ["Dict. communes, 1984 - Saint-Sauveur, également appelée Saint-Sauveur-de-Givre-en-Mai, est une ancienne commune française située dans le département des Deux-Sèvres et la région Poitou-Charentes. Elle est associée à la commune de Bressuire depuis 1973."], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027250504", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11854138n", "source": "BNF"}], "variant_access_point": ["Saint-Sauveur-de-Givre-en-Mai"], "authorized_access_point": "Bressuire (Deux-Sèvres)"} 1 -2024-07-16 19:07:13.273119 2024-07-16 19:07:13.273123 c22fd9c5-c6a7-4939-817a-f053a11fd3ae {"md5": "0c834e3106967e9a84fbe5ba0e59e3c9", "pid": "263259935", "note": [{"label": ["Bettmeralp : das Wimmelbuch / Gabriel Giger, 2022", "https://hls-dhs-dss.ch/fr/articles/050027/2016-10-27/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263259935", "source": "IDREF"}], "authorized_access_point": "Bettmeralp (Suisse)"} 1 -2024-07-16 19:07:13.318598 2024-07-16 19:07:13.318601 567c537f-8448-4148-b556-7c6f02bd717d {"md5": "c0b78a6facbce91ddba7bedfe156ccca", "pid": "271321628", "note": [{"label": ["Sowjetischer Pavillon : Substanz oder Erscheinung / Peter Zirkel (Hg.) ; [mit Fotografien von] Till Schuster, M Books, 2021", "https://peterzirkel.de/sowjetischer-pavillon/, 2023-08-02"], "noteType": "dataSource"}, {"label": ["Construit en 1924 comme hall d'exposition par les architectes Oskar Pusch et Carl Krämer. Le bâtiment a servi de pavillon d'exposition pour l'URSS. Depuis le début des années 1990, il est utilisé comme archives municipales"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271321628", "source": "IDREF"}], "variant_access_point": ["Sowjetischer Pavillon (Leipzig, Allemagne)", "Achilleion (Leipzig, Allemagne)", "Pavillon soviétique (Leipzig, Allemagne)"], "authorized_access_point": "Leipzig (Allemagne)"} 1 -2024-07-16 19:07:13.365432 2024-07-16 19:07:13.365435 d7e1a9a8-9cda-4426-a419-8bd02954bc35 {"md5": "fb4b44bbfa5c9600c4cca5ed11b72bb0", "pid": "271323337", "note": [{"label": ["Atlas universel / \\"Le Monde\\", Sélection du \\"Reader's digest\\", 1993", "Ville de Sierre - http://www.sierre.ch (2014-09-12)"], "noteType": "dataSource"}, {"label": ["Ville du canton du Valais, district de Sierre"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCA", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/names/n85344685", "source": "LCA"}, "authorized_access_point": "Sierre (Switzerland)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271323337", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb169098180", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Siders (Suisse)"], "authorized_access_point": "Sierre (Suisse)"} 1 -2024-07-16 19:07:13.450165 2024-07-16 19:07:13.450177 b31c595a-d2b2-488c-b272-342e37ec7d9b {"md5": "90c31e33485c8af3a47b2f88f11d214a", "pid": "271323353", "note": [{"label": ["Site officiel de la commune - http://www.kippel.ch (2010-07-16)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271323353", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15189407c", "source": "BNF"}], "variant_access_point": ["Kypil (Valais, Suisse)"], "authorized_access_point": "Kippel (Valais, Suisse)"} 1 -2024-07-16 19:07:13.528189 2024-07-16 19:07:13.528204 65d6b2de-654f-4531-a681-85b99d144d4c {"md5": "528fe09670e33aa44d7d5d95eb48653d", "pid": "271323426", "note": [{"label": ["Wikipédia - http://fr.wikipedia.org (2014-04-24)", "Guides bleus : Suisse, 1991", "Dict. historique de la Suisse - http://www.hls-dhs-dss.ch (2014-04-24)"], "noteType": "dataSource"}, {"label": ["Ancienne commune du Valais, qui a fusionné le 1er janvier 2009 avec les 5 autres communes du val d'Anniviers pour former la commune d'Anniviers"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCA", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/names/n83221461", "source": "LCA"}, "authorized_access_point": "Grimentz (Switzerland)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271323426", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12068132h", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Anniviers (Suisse)"], "authorized_access_point": "Grimentz (Suisse)"} 1 -2024-07-16 19:07:13.607293 2024-07-16 19:07:13.607307 d99915f8-08d9-4013-a07b-325b33eec46a {"md5": "e6de4217e2eb56fe8a5e953e2e1c6b4b", "pid": "271323485", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271323485", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12131962h", "source": "BNF"}], "authorized_access_point": "Collombey-Muraz (Suisse)"} 1 -2024-07-16 19:07:14.328011 2024-07-16 19:07:14.328025 d4c68518-7984-4b7c-bf4f-ab5517254407 {"md5": "0b75ba28e5ecb83e276f6ac529886c46", "pid": "271323957", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271323957", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb170137616", "source": "BNF"}], "authorized_access_point": "Leysin (Vaud, Suisse)"} 1 -2024-07-16 19:07:13.780607 2024-07-16 19:07:13.780619 97960b8f-bbea-4353-8d90-4d1c6735f660 {"md5": "8c7e59deb2c8d41a5e8252a60a75da50", "pid": "271323523", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271323523", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17010914h", "source": "BNF"}], "variant_access_point": ["Val d'Illiez (Valais, Suisse ; vallée)"], "authorized_access_point": "Illiez, Val d' (Valais, Suisse ; vallée)"} 1 -2024-07-16 19:07:13.866205 2024-07-16 19:07:13.866225 a2008dd5-a197-4174-bd22-80740243fb8f {"md5": "2db810daa89f34f9a8a89efbfc700021", "pid": "271323566", "note": [{"label": ["Wikipédia : Pays des Trois-Lacs - https://fr.wikipedia.org (2016-01-15)", "Wikipedia : Drei-Seen-Land - https://de.wikipedia.org (2016-01-15)", "Drei-Seen-Land / Pays des Trois-Lacs - http://www.bielersee.ch (2016-01-15)", "Jura & Trois-Lacs - http://www.paysdestroislacs.ch (2016-01-15)"], "noteType": "dataSource"}, {"label": ["Région (notamment viticole) du nord-ouest de la Suisse, autour des trois lacs de Bienne, Morat et Neuchâtel (ainsi qu'une partie du bassin moyen de l'Aar), recouvrant pour partie 3 cantons de la Suisse romande (Fribourg, Neuchâtel, Vaud) et 1 de la Suisse alémanique (Berne)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271323566", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb170172206", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Drei-Seen-Land (Suisse)", "Pays des Trois-Lacs (Suisse)", "Région des Trois-Lacs (Suisse)", "Trois-Lacs (Suisse ; région)"], "authorized_access_point": "Trois-Lacs, Pays des (Suisse)"} 1 -2024-07-16 19:07:14.018754 2024-07-16 19:07:14.018769 260f80c3-cde7-4203-9b79-a38d9c3d0792 {"md5": "10c57f8501c022e40c13a450cb672948", "pid": "271323663", "note": [{"label": ["Geonames - http://www.geonames.org (2014-09-12)", "Atlas universel / \\"Le Monde\\", Sélection du \\"Reader's digest\\", 1993"], "noteType": "dataSource"}, {"label": ["Commune du canton du Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCA", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/names/n83239447", "source": "LCA"}, "authorized_access_point": "Vouvry (Switzerland)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271323663", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16909821w", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "authorized_access_point": "Vouvry (Suisse)"} 1 -2024-07-16 19:07:14.073101 2024-07-16 19:07:14.073103 8f81982d-b7e3-45bb-9bdd-f4eedd974a40 {"md5": "daf5485db2ea0beba624a685a79844b5", "pid": "27132368X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27132368X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb169778199", "source": "BNF"}], "authorized_access_point": "Grächen (Valais, Suisse)"} 1 -2024-07-16 19:07:14.176176 2024-07-16 19:07:14.176188 8f6e1c98-024e-4143-b5ec-2c3dceb68f72 {"md5": "2646327eb078c75fa4466625a6f24280", "pid": "271323728", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271323728", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb170109286", "source": "BNF"}], "authorized_access_point": "Troistorrents (Valais, Suisse)"} 1 -2024-07-16 19:07:14.251785 2024-07-16 19:07:14.251794 66b73efd-194e-4935-8a6e-d3b99ab6bda1 {"md5": "ee42f3e7c54b5e6ae44747e3cc551352", "pid": "271323752", "note": [{"label": ["Dictionnaire historique de la Suisse - http://www.hls-dhs-dss.ch/textes/f/F2757.php (2010-07-16)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271323752", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15171340s", "source": "BNF"}], "variant_access_point": ["Uffen der Blattun (Valais, Suisse)", "Eisten (Valais, Suisse)", "Ried (Valais, Suisse)", "Weissenried (Valais, Suisse)", "Fafleralp (Valais, Suisse)", "Kühmatt (Valais, Suisse)"], "authorized_access_point": "Blatten (Valais, Suisse)"} 1 -2024-07-16 19:07:14.118144 2024-07-16 19:52:14.094964 bf17885b-aa8c-4e43-8e52-bb56e1dcfd3d {"md5": "4e4b604b1ec26ac068d307d8ca30964e", "pid": "271323698", "note": [{"label": ["Coordonnées géographiques : E 7°48' / N 46°11'"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271323698", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15301322r", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)952907682", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/5819169442791125340000", "source": "VIAF"}], "variant_access_point": ["Zaniglas", "Saniglaas"], "authorized_access_point": "Saint Nicolas (Valais, Suisse)"} 2 -2024-07-16 19:07:14.419728 2024-07-16 19:07:14.419741 45fb2325-cdc1-48b7-838a-764734799844 {"md5": "1e2a3bc8ebc1159a505cf80551927955", "pid": "271323973", "note": [{"label": ["L'atlas National geographic, 2007", "Petit Robert des noms propres 2015 (art. : Morat [ville])", "Grand Larousse universel (art. : Morat [ville])", "Guides Voir : Suisse, 2006"], "noteType": "dataSource"}, {"label": ["Lac de Suisse romande (canton de Fribourg), proche de celui de Neuchâtel"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85087214", "source": "LCSH"}, "authorized_access_point": "Morat, Lake of (Switzerland)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271323973", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb170195106", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Murtensee (Suisse)"], "authorized_access_point": "Morat, Lac de (Suisse)"} 1 -2024-07-16 19:07:14.490674 2024-07-16 19:07:14.490683 b6910b2c-383e-4cab-86dc-6438657a1fb5 {"md5": "2021cb4a2bf67d4b37d77322b097296d", "pid": "271324015", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271324015", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb153071261", "source": "BNF"}], "authorized_access_point": "Moutier (Berne, Suisse)"} 1 -2024-07-16 19:07:14.569993 2024-07-16 19:07:14.570001 de5b0b53-70a4-45f1-bbbf-32266e01b856 {"md5": "51a109a94d96fbdad1b01f4740998ccb", "pid": "271324031", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271324031", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15170908q", "source": "BNF"}], "authorized_access_point": "Bex (Vaud, Suisse)"} 1 -2024-07-16 19:07:14.657505 2024-07-16 19:07:14.657516 0e2777bb-1e1c-47d8-81c5-e8bace0ee77e {"md5": "259dcb7e8c9441dd436351a9d0f6602f", "pid": "271324058", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271324058", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15292722s", "source": "BNF"}], "variant_access_point": ["Hauderes, Les (Valais, Suisse)"], "authorized_access_point": "Les Hauderes (Valais, Suisse)"} 1 -2024-07-16 19:07:14.733272 2024-07-16 19:07:14.733281 44ff028b-8c98-493a-b5c2-a8eb75fa24e5 {"md5": "f4e58ef90fee591b3056b8978661938c", "pid": "271324074", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271324074", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15286338t", "source": "BNF"}], "authorized_access_point": "Saas Grund (Valais, Suisse)"} 1 -2024-07-16 19:07:14.812282 2024-07-16 19:07:14.812298 a7f25165-f11e-4b5d-8cf4-c782161771cf {"md5": "be627bc82578b05cb24254460bfc269a", "pid": "271324562", "note": [{"label": ["L'apothicairerie de l'hôpital de Dax / Xavier Petitcol, 2023"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271324562", "source": "IDREF"}], "authorized_access_point": "Dax (Landes)"} 1 -2024-07-16 19:07:14.899815 2024-07-16 19:07:14.899827 2d430cbd-5f14-4d32-ae76-1bf6086b572c {"md5": "d43e35c11f9a16ed068d502e3e090c93", "pid": "271326441", "note": [{"label": ["Atlas universalis (Val di Gressoney)", "Valle d'Aosta-Vallée d'Aoste - http://www.regione.vda.it (2006-04-20)"], "noteType": "dataSource"}, {"label": ["Vallée du nord-est du Val d'Aoste au pied du Mont Rose, drainée par le Lys. Elle est habitée depuis le 13e siècle par des Valaisiens (Walser) germanophones"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85057315", "source": "LCSH"}, "authorized_access_point": "Gressoney Valley (Italy)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271326441", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12725205j", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Gressoney, Val di (Italie)", "Gressoney, Valle di (Italie)", "Gressoneytal (Italie)", "Lys, Vallée du (Italie)", "Val de Gressoney (Italie)"], "authorized_access_point": "Gressoney, Val de (Italie)"} 1 -2024-07-16 19:07:14.99392 2024-07-16 19:07:14.99393 6b5447cb-8db4-437f-93a9-52c98d19e5b6 {"md5": "2f570620f8f7ce96a69e3a52d9f29e75", "pid": "271326476", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271326476", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15312266j", "source": "BNF"}], "authorized_access_point": "Randa (Valais, Suisse)"} 1 -2024-07-16 19:07:15.079435 2024-07-16 19:07:15.079444 ff1c3a27-75a3-47d8-9416-a7659715a08f {"md5": "038450104d2161ce3dff42a03912a8fe", "pid": "271326484", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271326484", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15288490p", "source": "BNF"}], "variant_access_point": ["Engadin (Grisons, Suisse ; vallée)", "Caput Oeni"], "authorized_access_point": "Engadine (Grisons, Suisse ; vallée)"} 1 -2024-07-16 19:07:15.130343 2024-07-16 19:07:15.130347 535b307a-bdff-4e3d-bc6d-26d30f664bc2 {"md5": "a2f78ce1651db1de4f9d2c2d1c60f3fd", "pid": "271326506", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271326506", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb152863395", "source": "BNF"}], "authorized_access_point": "Saas Almagell (Valais, Suisse)"} 1 -2024-07-16 19:07:15.173962 2024-07-16 19:07:15.173966 cdf07be2-b578-4b3a-95d1-1f76972be4ff {"md5": "8b1fb2bc02b04bb0a4d7aa9f9f6b74b4", "pid": "271326514", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271326514", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb170155227", "source": "BNF"}], "authorized_access_point": "Grand Combin (Valais, Suisse ; mont)"} 1 -2024-07-16 19:07:15.239582 2024-07-16 19:07:15.239595 fdf264ee-be7f-4eb0-af6b-f0ecbb498d3c {"md5": "6cf76fe72d44f50fdd37bdb86488cd5e", "pid": "271326522", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271326522", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb170113472", "source": "BNF"}], "authorized_access_point": "Trient (Valais, Suisse)"} 1 -2024-07-16 19:07:15.322051 2024-07-16 19:07:15.322063 0fcea29f-08b5-469e-a2a9-4dde023155fa {"md5": "3e1fc12e6dfe9f39c2be05a512766caa", "pid": "271326530", "note": [{"label": ["Dictionnaire historique de la Suisse - http://www.hls-dhs-dss.ch/index.php (2010-07-17)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271326530", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15285465r", "source": "BNF"}], "variant_access_point": ["Binn (Wallis, Suisse)", "Buen (Valais, Suisse)", "Buyn (Valais, Suisse)", "Bun (Valais, Suisse)", "Schmidigehischere (Valais, Suisse)", "Ze Binne (Valais, Suisse)", "Wilere (Valais, Suisse)", "Giesse (Valais, Suisse)", "Heiligkreuz (Valais, Suisse)"], "authorized_access_point": "Binn (Valais, Suisse)"} 1 -2024-07-16 19:07:15.395979 2024-07-16 19:07:15.395994 36cac329-b31b-4476-bd24-36ca93898d0c {"md5": "17b03f7f2fc10ce546261142583e1bbd", "pid": "271326557", "note": [{"label": ["GeoNames : glacier du Giétro - http://www.geonames.org (2020-06-17)", "Wikipédia : Glacier du Giétro - https://fr.wikipedia.org (2020-06-10)", "Les risques naturels en montagnes / F. Naaim-Bouvet, D. Richard, 2015 (p. 220", "Dict. historique de la Suisse (art. : Bagnes, Val de ; Bâtraz, La ; Glaciers ; Inondations ; Venetz, Ignace) - https://hls-dhs-dss.ch (2020-06-17)", "Examen de l'apologie des travaux du glacier du Giétroz / J.-J. Blanc, 1825", "Glacier-Climat.com : glacier du Giétro/Giétroz - https://www.glaciers-climat.com (2020-06-17)"], "noteType": "dataSource"}, {"label": ["Glacier du sud-ouest des Alpes valaisanes, descendant du Mont Blanc de Cheilon, à hauteur du barrage de Mauvoisin. Souvent en mouvement, ses débâcles causèrent des désagréments en aval, notamment en juin 1818, lorsque la digue du barrage céda soudainement, provoquant une inondation importante du val de Bagnes en contrebas, causant la mort de 44 personnes. Il porte le nom d'un village de la commune de Finhaut"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271326557", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17873174h", "source": "BNF"}], "classification": [{"name": "Sciences de la Terre", "type": "bf:ClassificationDdc", "classificationPortion": "550"}, {"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Ghiacciaio del Giétroz (Suisse)", "Giétro, Glacier du (Suisse)", "Gietrozgletscher (Suisse)", "Glacier de Giétro (Suisse)", "Glacier de Giétroz (Suisse)", "Glacier du Giétro (Suisse)", "Glacier du Giétroz (Suisse)"], "authorized_access_point": "Giétroz, Glacier de (Suisse)"} 1 -2024-07-16 19:07:15.488345 2024-07-16 19:07:15.488354 da5dfc6f-0190-43ae-afdf-f4a15087f640 {"md5": "8eeef5e50103b876b3641b2e3258678c", "pid": "271326603", "note": [{"label": ["https://www.beaumontenveron.fr"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271326603", "source": "IDREF"}], "authorized_access_point": "Beaumont-en-Véron"} 1 -2024-07-16 19:07:15.565144 2024-07-16 19:07:15.565151 6a441b34-d15b-43d7-bd23-817c9527af10 {"md5": "ae1ab489aa4d93bb05af2b76e6f435f7", "pid": "271326670", "note": [{"label": ["https://www.saint-germain-sur-vienne.com/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271326670", "source": "IDREF"}], "authorized_access_point": "Saint-Germain-sur-Vienne (Indre-et-Loire)"} 1 -2024-07-16 19:07:15.64833 2024-07-16 19:07:15.648344 ddba7d1e-46d5-4daa-a5c1-f79067857f87 {"md5": "3008d11c7a98543768496691079e62e2", "pid": "271326700", "note": [{"label": ["https://www.annuaire-mairie.fr/mairie-pommiers-30.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271326700", "source": "IDREF"}], "authorized_access_point": "Pommiers (Gard)"} 1 -2024-07-16 19:07:15.73033 2024-07-16 19:07:15.730345 603c305d-aaf7-4e58-af8e-70f0404a22e7 {"md5": "72a54d2b0573f85cc2a0ea5df023b5c0", "pid": "271326727", "note": [{"label": ["https://www.annuaire-mairie.fr/mairie-couziers.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271326727", "source": "IDREF"}], "authorized_access_point": "Couziers (Indre-et-Loire)."} 1 -2024-07-16 19:07:15.807606 2024-07-16 19:07:15.807619 c3cd0227-5267-42c5-9e6e-8e081170447e {"md5": "32f0f99c66cb112b827bc1afef4ee28c", "pid": "271326751", "note": [{"label": ["https://cizay-la-madeleine.fr"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271326751", "source": "IDREF"}], "authorized_access_point": "Cizay-la-Madeleine (Maine-et-Loire)"} 1 -2024-07-16 19:07:15.881157 2024-07-16 19:07:15.881165 65b312bf-bea0-4764-a551-b9222cbc0e10 {"md5": "09929c4b42d8faeb7238f29ece031bfc", "pid": "27132676X", "note": [{"label": ["Les Incas fondent un empire autour de Cuzco, en 1532 Pizzaro s'empare de Cuzco et fait exécuter Atahualpa"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27132676X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15366294s", "source": "BNF"}], "variant_access_point": ["Incas, Empire des"], "authorized_access_point": "Pérou, Empire Inca du (11..-1532)"} 1 -2024-07-16 19:07:15.95287 2024-07-16 19:07:15.952882 3f6cdd5b-c891-4816-891c-09a6b15a49d2 {"md5": "953fb1d993f4a1543e446e656769b715", "pid": "271326778", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271326778", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120482807", "source": "BNF"}], "authorized_access_point": "Monthey (Suisse ; région)"} 1 -2024-07-16 19:07:16.032021 2024-07-16 19:07:16.032033 6c6e13f7-a048-4b6d-a6e1-5055cbcc41cf {"md5": "4612fb997297fa1b39941851ac704c6c", "pid": "271326786", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271326786", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15291163g", "source": "BNF"}], "authorized_access_point": "Fionnay (Valais, Suisse)"} 1 -2024-07-16 19:07:16.1115 2024-07-16 19:07:16.111511 a470a2f1-0d97-49dc-a0a1-165b6a8df8f0 {"md5": "1d2c333e6182f4926619966f42fde0df", "pid": "271326794", "note": [{"label": ["Les spéciales de l'IGN / Europe : Suisse, 1994", "Dict. historique de la Suisse - http://www.hls-dhs-dss.ch (2016-01-16)", "Stadtgemeide Brig-Glis - http://www.brig-glis.ch (2016-01-11)"], "noteType": "dataSource"}, {"label": ["Village du Valais, dans le Haut-Valais sur le Rhône, juste avant Glis, (ancienne) commune à laquelle il était attaché, aujourd'hui composante de la commune de Brigue-Glis"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCA", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/names/nb2015012569", "source": "LCA"}, "authorized_access_point": "Gamsen (Switzerland)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271326794", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb170165930", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Brigue-Glis (Suisse)"], "authorized_access_point": "Gamsen (Suisse)"} 1 -2024-07-16 19:07:16.166887 2024-07-16 19:07:16.16689 20b8743f-2d30-439c-9729-411455590c46 {"md5": "f641e4e732da482d91d70722a46460ea", "pid": "271326808", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271326808", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16981690w", "source": "BNF"}], "authorized_access_point": "Martigny (Valais, Suisse). Château de la Bâtiaz"} 1 -2024-07-16 19:07:16.215381 2024-07-16 19:07:16.215384 f58a2048-5c78-4d3f-8e7a-ac99e0db0a7c {"md5": "60f765323a605bacb4a828eb8a76b9cd", "pid": "271326824", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271326824", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15331899b", "source": "BNF"}], "authorized_access_point": "Issime (Val d'Aoste, Italie)"} 1 -2024-07-16 19:07:16.272506 2024-07-16 19:07:16.272516 2836ca5e-f1d1-4568-a630-e833df5d9587 {"md5": "da2a7da38069a326ab6fb6e713c66fdc", "pid": "271326832", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271326832", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17015586g", "source": "BNF"}], "variant_access_point": ["Lac de Champex (Valais, Suisse)"], "authorized_access_point": "Champex, Lac de (Valais, Suisse)"} 1 -2024-07-16 19:07:16.351467 2024-07-16 19:07:16.351479 31cad28d-ba8d-4482-b255-040fa2e01891 {"md5": "820b141d4c8478d915a1a7b2c1665341", "pid": "271326840", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271326840", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb162621083", "source": "BNF"}], "authorized_access_point": "Anatolie (Turquie ; région)"} 1 -2024-07-16 19:07:16.425641 2024-07-16 19:07:16.425648 bec461c9-25b3-4d04-91a8-9a51ab53e24a {"md5": "79c0d48764d6ff3ef674e5fe8720205e", "pid": "271327383", "note": [{"label": ["Le centre aquatique des Bertisettes / Atelier Po&Po, GCC, Opalia / [auteur Karine Dana], Archibooks + Sautereau Éditeur, 2022"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271327383", "source": "IDREF"}], "variant_access_point": ["Centre aquatique des Bertisettes (Viroflay, France)", "CAB (Viroflay, France)"], "authorized_access_point": "Viroflay (France)"} 1 -2024-07-16 19:07:16.50658 2024-07-16 19:07:16.506593 640db1a7-ed1e-45cd-8599-47ec8cf79cce {"md5": "77c753c884702436190a883926ebde25", "pid": "271328762", "note": [{"label": ["Dict. des communes, 2001"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCA", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/names/no2011036870", "source": "LCA"}, "authorized_access_point": "Saint-Gingolph (France)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271328762", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb162289872", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "912"}], "authorized_access_point": "Saint-Gingolph (Haute-Savoie, France)"} 1 -2024-07-16 19:07:16.59152 2024-07-16 19:07:16.59153 48b15594-89bd-4e61-b8cb-226b3923fd59 {"md5": "142cae8fef9fb0e4ddf5f712ec3430d7", "pid": "271329017", "note": [{"label": ["Quand la grotte Cosquer sort de l'eau : la Villa Méditerranée en porte à faux / Pierre Fiastre, Éditions de l'Aube, 2022"], "noteType": "dataSource"}, {"label": ["Bâtiment public construit par Stefano Boeri. Abrite le musée Cosquer Méditerranée depuis 2022", "Adresse : Esplanade du J4, Promenade Robert Laffont, 13002 Marseille"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271329017", "source": "IDREF"}], "variant_access_point": ["Villa Méditerranée (Marseille, France)"], "authorized_access_point": "Marseille (France)"} 1 -2024-07-16 19:07:16.674004 2024-07-16 19:07:16.674015 4263505f-5529-4e90-9b93-abe323570586 {"md5": "5dbb2dd52a1de892e183643fb665e805", "pid": "271329335", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271329335", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15331888p", "source": "BNF"}], "authorized_access_point": "Ayas (Val d'Aoste, Italie)"} 1 -2024-07-16 19:07:16.74821 2024-07-16 19:07:16.748224 650fa7ff-20d9-4673-a12e-1ae185050408 {"md5": "9de54104659eda780aadee4349bfb736", "pid": "271329696", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Canaries, Îles (Espagne)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271329696", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15292962k", "source": "BNF"}], "variant_access_point": ["Teneriffe, Île de (Canaries, Espagne)"], "authorized_access_point": "Tenerife, Île de (Canaries, Espagne)"} 1 -2024-07-16 19:07:16.830128 2024-07-16 19:07:16.830141 47233e7b-dcec-4ad0-b1e1-928c5be63e45 {"md5": "e9114375c51210143aa41c2b6f0b8f41", "pid": "271329734", "note": [{"label": ["Atlas Le Monde"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271329734", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11963639h", "source": "BNF"}], "variant_access_point": ["Edinburgh (GB)"], "authorized_access_point": "Édimbourg (GB)"} 1 -2024-07-16 19:07:16.912843 2024-07-16 19:07:16.912856 ba267968-9d21-43a9-98b8-6396f3b262f3 {"md5": "4312e979f358970e942f8f3209f8c105", "pid": "271329831", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271329831", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb152884911", "source": "BNF"}], "authorized_access_point": "Basse-Engadine (Grisons, Suisse ; vallée)"} 1 -2024-07-16 19:07:17.008047 2024-07-16 19:07:17.008058 7b0e5d93-a410-457a-b798-747dace160e4 {"md5": "3277ed358eabd2292845e1ee6093e286", "pid": "271329912", "note": [{"label": ["Atlas Le Monde"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271329912", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb121679559", "source": "BNF"}], "authorized_access_point": "Alagna Valsesia (Italie)"} 1 -2024-07-16 19:07:17.09627 2024-07-16 19:07:17.096285 bda14ccd-d286-4bae-a186-2f61cad1c324 {"md5": "25447334e143de92d877617d80b78b46", "pid": "271329998", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Tremezzina (Italie)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271329998", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120937181", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "authorized_access_point": "Côme, Lac de (Italie ; région)"} 1 -2024-07-16 19:07:17.177769 2024-07-16 19:07:17.177775 0d367724-cce8-4e80-97e3-c7f76d782d31 {"md5": "de2d02ceffb7fdf00951b1f34db2dcfb", "pid": "271330031", "note": [{"label": ["Wikipedia - http://de.wikipedia.org (2015-06-05)", "Les spéciales de l'IGN / Europe : Suisse, 1994", "Dict. historique de la Suisse - http://www.hls-dhs-dss.ch (2015-06-05)", "Kaiseraugst - http://www.kaiseraugst.ch (2015-06-05)"], "noteType": "dataSource"}, {"label": ["Commune d'Argovie (district de Rheinfelden), à la frontière germano-suisse sur le Rhin, face à Augst (canton de Bâle-Campagne). Elle est fondée par l'armée romaine comme 'castrum' dans un secteur de la ville basse d'Augusta Raurica (vestiges). Après avoir fait partie d'Augst (sous le premier nom d'Augst-im-Dorf, avant son appellation actuelle), elle s'en détache en 1442"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCA", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/names/n85279520", "source": "LCA"}, "authorized_access_point": "Kaiseraugst (Switzerland)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271330031", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb121618876", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Augst-im-Dorf (Suisse)", "Augusta Raurica (Suisse ; ville ancienne)", "Castrum Rauracense (Suisse ; ville ancienne)"], "authorized_access_point": "Kaiseraugst (Suisse)"} 1 -2024-07-16 19:07:17.224901 2024-07-16 19:07:17.224904 d8077455-a705-4f7d-828b-ece47aaf8356 {"md5": "d448ddbf5885fd7d8d9e7cb350031c18", "pid": "271330163", "note": [{"label": ["Port-Valais - http://www.port-valais.ch (2015-05-18)", "Dict. historique de la Suisse - http://www.hls-dhs-dss.ch (2015-05-18)"], "noteType": "dataSource"}, {"label": ["Commune du canton du Valais, district de Monthey, comprenant les villages du Bouveret et des Evouettes"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271330163", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16965305j", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "authorized_access_point": "Port-Valais (Suisse)"} 1 -2024-07-16 19:07:17.285622 2024-07-16 19:07:17.28564 32a60077-36ae-486a-919a-e5f6375bf481 {"md5": "d6b4979bc25ce4b11c55c651f3ff8027", "pid": "271331658", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271331658", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb152915042", "source": "BNF"}], "authorized_access_point": "Mauvoisin (Valais, Suisse)"} 1 -2024-07-16 19:07:17.366581 2024-07-16 19:07:17.366594 4f546dfd-d947-49f4-ac99-05004a09c315 {"md5": "a572340ecc2df763bc1452e09d648602", "pid": "271331712", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271331712", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15218260r", "source": "BNF"}], "variant_access_point": ["Trient, Glacier du (Valais, Suisse)", "Trient, Plateau du (Valais, Suisse)"], "authorized_access_point": "Trient, Glacier plateau du (Valais, Suisse)"} 1 -2024-07-16 19:07:17.447705 2024-07-16 19:07:17.447721 68ce01e2-b29b-49e5-aa19-3b968eae3fe0 {"md5": "698e19088dda25364160dadee9b9e871", "pid": "27133181X", "note": [{"label": ["Dictionnaire historique de la Suisse - http://www.hls-dhs-dss.ch/index.php (2010-07-17)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Alpes Lépontines, Massif des"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27133181X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15201346k", "source": "BNF"}], "variant_access_point": ["Col de Nufenen (Valais / Tessin, Suisse)", "Nufenenpass, Col de (Wallis / Tessin, Suisse)", "Novena, passo della (Vallese / Ticino, Suisse ; Col)", "Passo della Novena (Vallese / Ticino, Suisse ; Col)"], "authorized_access_point": "Nufenen, Col de (Valais / Tessin, Suisse)"} 1 -2024-07-16 19:44:37.611562 2024-07-16 19:50:11.719668 79686cae-9b97-456a-90c5-6fa9821905d5 {"md5": "651a35bc68b19d47ff803adec18625eb", "pid": "027228428", "note": [{"label": ["IFLA, Names of states, 1981. GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Balkans"}, {"authorized_access_point": "Méditerranée (région ; est)"}, {"authorized_access_point": "Pays de l'Union européenne"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Thrace (Grèce)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027228428", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11931600c", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040220478", "source": "GND"}, {"type": "uri", "value": "http://d-nb.info/gnd/4022047-3", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172224968", "source": "VIAF"}], "variant_access_point": ["Ellás", "Hellade", "Hellas", "اليونان"], "authorized_access_point": "Grèce"} 2 -2024-07-16 19:07:17.528662 2024-07-16 19:07:17.528672 35315db2-5be9-4f5a-9ee7-ef66af20e329 {"md5": "49efe810d008874b3f3005a2d72a231c", "pid": "271332352", "note": [{"label": ["GeoNames - http://www.geonames.org (2018-10-10)", "Wikipedia - https://de.wikipedia.org (2018-10-10)", "Grand Larousse universel : Kleiner Walsertal", "Cartes IGN / Pays, découverte du Monde : Autriche, 2016 : Kl. Walsertal", "Österreich Lex., 1966 : Kleines Walsertal"], "noteType": "dataSource"}, {"label": ["Vallée des Alpes autrichiennes (Vorarlberg, district de Bregenz), contigüe à la Bavière (Allemagne). Elle englobe le territoire communal de Mittelberg et doit son nom aux Walser, peuple germanophone du Moyen âge venu du Valais (Suisse)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh92003686", "source": "LCSH"}, "authorized_access_point": "Kleinwalsertal (Austria)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271332352", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17764284z", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Kleiner Walsertal (Autriche)", "Kleines Walsertal (Autriche)"], "authorized_access_point": "Kleinwalsertal (Autriche)"} 1 -2024-07-16 19:07:17.606509 2024-07-16 19:07:17.606525 e505c82a-3b57-43f3-ad30-0f9e60eaa4bd {"md5": "31d31894cc19716f0ac3f512237ea5c0", "pid": "271332778", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271332778", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15766361s", "source": "BNF"}], "authorized_access_point": "Arpille, Mont de l' (Valais, Suisse)"} 1 -2024-07-16 19:07:17.688314 2024-07-16 19:07:17.688329 0af44eda-4ba2-4398-b132-546f7ed7dbb2 {"md5": "6bed3d2cfbd6d16bd036f4eb819a0e84", "pid": "271332824", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271332824", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15288492c", "source": "BNF"}], "authorized_access_point": "Haute-Engadine (Grisons, Suisse ; vallée)"} 1 -2024-07-16 19:07:17.769547 2024-07-16 19:07:17.769554 91ae9500-e748-4796-8857-b29c0a9551e1 {"md5": "bd9f6814578cf76d4ebecf36172bedab", "pid": "271333081", "note": [{"label": ["https://culture.gouv.fr/Espace-documentation/Repertoire-des-ressources-documentaires/Monuments-nationaux/Monastere-de-Saorge"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271333081", "source": "IDREF"}], "authorized_access_point": "Saorge (Alpes-Maritimes) -- Monastère"} 1 -2024-07-16 19:07:17.852892 2024-07-16 19:07:17.852905 778098a0-4a5d-4668-8b46-83caf35ee9b3 {"md5": "108e51f237bc1cdeac314cb4fef20162", "pid": "271333197", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271333197", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb170154986", "source": "BNF"}], "authorized_access_point": "Orsieres (Valais, Suisse). Praz-de-Fort"} 1 -2024-07-16 19:07:17.942676 2024-07-16 19:07:17.942687 9e694b23-873b-4f6f-8e18-32f54da0cb43 {"md5": "fd94496f6f297bdbcf95da48e06a5d70", "pid": "271333243", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271333243", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb152817737", "source": "BNF"}], "variant_access_point": ["Urserental, Vallée (Uri, Suisse ; Vallée)", "Ursernthal, Vallée (Uri, Suisse ; Vallée)"], "authorized_access_point": "Urseren, Vallée d' (Uri, Suisse)"} 1 -2024-07-16 19:07:18.028097 2024-07-16 19:07:18.028107 3384149b-9026-4432-99cf-9af2319bedd9 {"md5": "cf6b32604ac5a558fc78a95726b0b060", "pid": "271337214", "note": [{"label": ["Bridge Orange : Issy-les-Moulineaux : VIGUIER architecture urbanisme paysage / texte de Christine Desmoulins, Archibooks + Sautereau Éditeur, 2023", "https://www.archistorm.com/realisation-bridge-orange-viguier/, 2023-08-04"], "noteType": "dataSource"}, {"label": ["Siège social de l'entreprise Orange construit en 2021 par l'agence \\"Viguier architecture urbanisme paysage\\""], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271337214", "source": "IDREF"}], "variant_access_point": ["Bridge Orange (Issy-les-Moulineaux, France)", "Siège social Orange (Issy-les-Moulineaux, France)"], "authorized_access_point": "Issy-les-Moulineaux (France)"} 1 -2024-07-16 19:42:05.575428 2024-07-16 19:42:05.575437 e901c324-6d28-49b6-be4d-4d51972af28b {"md5": "651a35bc68b19d47ff803adec18625eb", "pid": "027228428", "note": [{"label": ["IFLA, Names of states, 1981. GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Balkans"}, {"authorized_access_point": "Méditerranée (région ; est)"}, {"authorized_access_point": "Pays de l'Union européenne"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Thrace (Grèce)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027228428", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11931600c", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040220478", "source": "GND"}, {"type": "uri", "value": "http://d-nb.info/gnd/4022047-3", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172224968", "source": "VIAF"}], "variant_access_point": ["Ellás", "Hellade", "Hellas", "اليونان"], "authorized_access_point": "Grèce"} 1 -2024-07-16 19:50:12.041718 2024-07-16 19:50:12.041745 fde86a53-f276-4b27-b2e9-86bf8eb9b8c5 {"md5": "05632639cd0c7e46e70f928c3a9f1fe4", "pid": "027228959", "note": [{"label": ["Grand Larousse universel (art. : Arabe)", "Encycl. universalis : Arabe (Monde) - http://www.universalis-edu.com (2011-11-24)", "Wikipédia : Monde arabe - http://fr.wikipedia.org (2011-11-24)", "L'économie des pays arabes / A. Martens, 1983"], "noteType": "dataSource"}, {"label": ["Voir aussi la subdivision Et les pays arabes [sans subd. géogr.] aux collectivités et aux personnes"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "related": [{"authorized_access_point": "Moyen-Orient"}, {"authorized_access_point": "Pays arabes - Histoire"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Afrique du Nord"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027228959", "source": "IDREF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4068789-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040687899", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172492075", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "164701583"}, "classification": [{"name": "Géographie du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "915"}], "variant_access_point": ["Arabes, Pays", "États arabes", "Monde arabe", "Pays de langue arabe"], "authorized_access_point": "Pays arabes"} 1 -2024-07-16 19:50:12.383571 2024-07-16 19:50:12.383603 df7470a3-4a4c-4764-a736-13ff99ec85bb {"md5": "4d85ab7f707fb93cd4009f8108496b13", "pid": "097857300", "note": [{"label": ["Grand Larousse universel", "Dict. de géopolitique / dir. Y. Lacoste, 1993", "Laval RVM (en ligne), 2006-01-23"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les documents qui traitent de l'Occident selon les différents sens du mot au cours de l'histoire, par opposition à différents Orients : par ex. Occident latin / Orient grec, Occident catholique / Orient orthodoxe, Chrétienté / Islam et Asie, pays occidentaux / pays socialistes, etc"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Et l'Occident aux collectivités (à l'exception des types de collectivités) et aux personnes"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/097857300", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb150357447", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4079237-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040792374", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/66145602566901361640", "source": "VIAF"}], "classification": [{"name": "Histoire", "type": "bf:ClassificationDdc", "classificationPortion": "900"}], "variant_access_point": ["Occidentaux, Pays", "Ouest, Pays de l'", "Pays de l'Ouest", "Pays occidentaux"], "authorized_access_point": "Occident"} 1 -2024-07-16 19:50:13.711804 2024-07-16 19:50:13.711824 c61651bf-fe1d-489f-914d-2ed5a5b41356 {"md5": "9381fc04fe5a70e395a12dc8381c35f2", "pid": "027262162", "note": [{"label": ["IFLA, Names of states, 1981. GDEL. SY 1990/91"], "noteType": "dataSource"}, {"label": ["Le Japon est divisé en 9 régions, dont 5 sont sur Honshū ; les 4 autres sont Hokkaidō, Shikoku, Kyūshū et Okinawa"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Asie du Nord-Est"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027262162", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040284956", "source": "GND"}, {"type": "uri", "value": "https://d-nb.info/gnd/4028495-5", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/1165148574381824430006", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Japon_(homonymie)", "source": "WIKIPEDIA"}], "variant_access_point": ["Nihon", "Nippon", "Япония"], "authorized_access_point": "Japon"} 1 -2024-07-16 19:50:14.000159 2024-07-16 19:50:14.000194 cfc173ce-a487-4c48-8037-fba41401180b {"md5": "31e634102abcd01b55344db7c7707f35", "pid": "027244520", "note": [{"label": ["GLU"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Île-de-France (France)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027244520", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb152821567", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040446603", "source": "GND"}, {"type": "uri", "value": "http://d-nb.info/gnd/4044660-8", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/260846891", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Paris-France", "source": "WIKIPEDIA"}], "variant_access_point": ["Lutèce (ville ancienne)", "Lutetia Parisiorum (ville ancienne)", "Paris", "Paname"], "authorized_access_point": "Paris (France)"} 1 -2024-07-16 19:50:14.306655 2024-07-16 19:50:14.306661 fc5d899d-21a0-49e9-9917-8a231d9ae24c {"md5": "158ec07faa8a1ffd8801596da865c2a5", "pid": "029036690", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029036690", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040772756", "source": "GND"}, {"type": "uri", "value": "http://d-nb.info/gnd/4077275-5<", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/2253148574262324430007", "source": "VIAF"}], "variant_access_point": ["Alpes suisses"], "authorized_access_point": "Alpes (Suisse)"} 1 -2024-07-16 19:50:14.551989 2024-07-16 19:50:14.552008 22ccf69f-23ae-49e3-8f7b-1af6b5dba4f1 {"md5": "2a34e24a150951537d9edb3213007aed", "pid": "027242005", "note": [{"label": ["IFLA, Names of states, 1981. GLU. BN ACO (en ligne), 1995-07-07. Laval RVM, 1995-02", "https://www.insee.fr/fr/metadonnees/cog/, 2017-04-28", "http://www.geonames.org/, 2017-04-28"], "noteType": "dataSource"}, {"label": ["Emploi direct en subdivision : [Sujet] -- La Réunion", "Département d'outre-mer de la France"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Indien, Îles de l'océan"}, {"authorized_access_point": "Mascareignes (îles)"}, {"authorized_access_point": "France - Départements et régions d'outre-mer"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027242005", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15326035w", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040496392", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/129722462", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "089774507"}, "variant_access_point": ["Bonaparte, Île (France)", "Bourbon, Île (France)", "Île Bourbon (France)", "Réunion, Île de la (France)", "Île de La Réunion (France)", "Réunion (France ; île)", "La Réunion", "La Réunion (île)", "Réunion"], "authorized_access_point": "La Réunion (France ; île)"} 1 -2024-07-16 19:50:14.848271 2024-07-16 19:50:14.848289 62cc25eb-6078-4a3e-9bf2-88a050c3fab2 {"md5": "eddb75bcaab01aaa08c99c85b6cedb30", "pid": "027286703", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["Région d'Italie centrale comprenant 9 provinces (capitale : Florence)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Italie (centre)"}, {"authorized_access_point": "Italie - Régions"}], "related": [{"authorized_access_point": "Étrurie"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027286703", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040604853‏ ", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/128956370", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "123793696"}, "variant_access_point": ["Toscana (Italie)", "Toscane (Grand-duché)"], "authorized_access_point": "Toscane (Italie)"} 1 -2024-07-16 19:50:15.132058 2024-07-16 19:50:15.132084 900dc97f-e1ee-41db-8896-cef2ef1e45e8 {"md5": "87b941879ceea47081a257691f25af96", "pid": "027230430", "note": [{"label": ["IFLA, Names of states, 1981. GLU. BN ACO. Laval RVM, 1995-02"], "noteType": "dataSource"}, {"label": ["Après l'éclatement de la Grande-Colombie, l'actuelle République de Colombie a porté successivement les noms de \\"République de Nouvelle-Grenade\\" (República de Nueva Granada) (1830-1858), \\"Confédération grenadine\\" (Confederación granadina) (1858-1861), et \\"États-Unis de Colombie\\" (Estados Unidos de Colombia) (1861-1880)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Andes (région)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027230430", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040318125", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/127757650", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Colombie", "source": "WIKIPEDIA"}], "variant_access_point": ["Colombia", "Confederación granadina", "Estados Unidos de Colombia", "Nouvelle-Grenade", "Nueva Granada"], "authorized_access_point": "Colombie"} 1 -2024-07-16 19:50:18.44047 2024-07-16 19:50:18.440497 2e97864c-1e45-4a73-827b-db52b480a462 {"md5": "d43fc13934a81dc617d332584a3728a8", "pid": "027417298", "note": [{"label": ["GLU. Laval RVM, 2000-01"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les documents sur le département de la Savoie. Les documents sur la région historique de la Savoie avant 1860 sont sous la vedette Savoie", "Département français (73) ; chef-lieu : Chambéry"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rhône-Alpes (France)"}, {"authorized_access_point": "Savoie (France ; région)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027417298", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11946312z", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4051850-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040518507", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/139289471", "source": "VIAF"}], "variant_access_point": ["Savoie (département)", "Savoie (France ; département)"], "authorized_access_point": "Savoie (France)"} 1 -2024-07-16 19:50:18.689061 2024-07-16 19:50:18.689075 eafa5534-e77a-45a6-8096-b2ffbc35f340 {"md5": "b42dccaef0835a9cf9a9de044f9b6b26", "pid": "028146239", "note": [{"label": ["GDEL. Atlas universalis"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Saint-Pierre (Suisse ; île)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028146239", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120038758", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040065146", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/315149407", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Lac_de_Bienne", "source": "WIKIPEDIA"}], "variant_access_point": ["Biel, Lac de (Suisse)", "Bielersee (Suisse ; lac)"], "authorized_access_point": "Bienne, Lac de (Suisse)"} 1 -2024-07-16 19:50:18.977279 2024-07-16 19:50:18.977304 37da39bd-fa32-4dea-bf05-192501b77fa7 {"md5": "756f37840633fab8d989c9325fa92be2", "pid": "027234002", "note": [{"label": ["IFLA, Names of states, 1981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europe centrale"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027234002", "source": "IDREF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4078541-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040785416", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/4031148574352124430001", "source": "VIAF"}], "variant_access_point": ["Magyarország"], "authorized_access_point": "Hongrie"} 1 -2024-07-16 19:50:19.262467 2024-07-16 19:50:19.262486 9cb5002f-6530-4a15-9e9c-591f87efce54 {"md5": "633d7b2a486c35a64a9868ac8dce10b8", "pid": "028992318", "note": [{"label": ["GDEL. SY 1990/91"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028992318", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040680649", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/20144647636134910488", "source": "VIAF"}], "authorized_access_point": "Zoug (Suisse ; canton)"} 1 -2024-07-16 19:50:20.548744 2024-07-16 19:50:20.548774 9236b8a0-0021-4158-9e42-01e0b9e473e9 {"md5": "1d04da0252db2de8b1f65027d9f82363", "pid": "027266060", "note": [{"label": ["Laval RVM, 1983"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Arctique"}, {"authorized_access_point": "Régions polaires"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027266060", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)041179145", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/316891260", "source": "VIAF"}], "authorized_access_point": "Pôle Nord"} 1 -2024-07-16 19:50:21.801476 2024-07-16 19:50:21.801484 892906af-dfc5-4cf0-b1a5-1fb750814498 {"md5": "504f3de5f62d5a2efc9d4eb2a78be0c9", "pid": "027239365", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027239365", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040387887", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173636243", "source": "VIAF"}], "authorized_access_point": "Mésopotamie"} 1 -2024-07-16 19:50:22.056381 2024-07-16 19:50:22.056531 d6beffb6-b9bd-47cf-b272-8251670d80dc {"md5": "a893e9b2d5dc6c79077b8c9c14300686", "pid": "144820072", "note": [{"label": ["Uebersichstkarte zum Relief der Monterosa-Gruppe / von X. Imfeld, 1880", "GLU"], "noteType": "dataSource"}, {"label": ["Massif des Alpes Pennines partagé entre la Suisse (canton du Valais) et l'Italie."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/144820072", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/136148570652124311276", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)041152077", "source": "GND"}], "variant_access_point": ["Monte Rosa, Massif du"], "authorized_access_point": "Mont-Rose, Massif du"} 1 -2024-07-16 19:50:23.368314 2024-07-16 19:50:23.368342 8d852b11-8e77-4f27-9415-9d77dfd03250 {"md5": "5199e9499e2664255a30c0ae1c672d9a", "pid": "031211097", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031211097", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12246994q", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040658236", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/621144783051845602289", "source": "VIAF"}], "variant_access_point": ["Suisse occidentale"], "authorized_access_point": "Suisse (ouest)"} 1 -2024-07-16 19:50:24.705546 2024-07-16 19:50:24.705577 19e3fd61-0131-461a-bc41-61fb7f8e5e7e {"md5": "7c07b2713b88aad30b805feb49909f67", "pid": "027633179", "note": [{"label": ["IFLA, Names of states, 1981. GLU, 1991", "Laval RVM, 1996-08"], "noteType": "dataSource"}, {"label": ["Voir aussi la subdivision Et la Chine aux personnes et collectivités"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Asie du Nord-Est"}, {"authorized_access_point": "Asie orientale"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027633179", "source": "IDREF"}, {"type": "uri", "value": "https://catalogue.bnf.fr/ark:/12148/cb11963283w", "source": "BNF"}, {"type": "uri", "value": "https://d-nb.info/gnd/4009937-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040099377", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/5951158188189220260002", "source": "VIAF"}], "variant_access_point": ["Cathay", "Céleste empire", "Chine (République populaire)", "Chine populaire", "Empire céleste", "Empire du Milieu", "Milieu, Empire du", "中國", "中華人民共和國", "Zhonghua Ren min Gong he guo", "Zhonghua Renmin Gong he guo", "中国", "Zhongguo", "中华人民共和国", "Zhonghua Renmin Gongheguo"], "authorized_access_point": "Chine"} 1 -2024-07-16 19:50:24.956173 2024-07-16 19:50:24.956179 7a973b44-b9a4-4254-80f7-33d486477530 {"md5": "12bdf65dfd197b5f7abbbdf48dc68baa", "pid": "027224694", "note": [{"label": ["Sous cette vedette on trouve les ouvrages qui traitent de la partie de l'Europe située à l'ouest de la ligne Lübeck-Trieste, et/ou, pour la période 1945-1990, de l'ensemble des pays non socialistes d'Europe, de la Finlande à la Grèce et à la Turquie"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Pays de l'Union européenne"}, {"authorized_access_point": "Benelux"}, {"authorized_access_point": "Pays de l'Union européenne (centre)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027224694", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119313058", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4079215-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040792153", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/245653394", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Europe_de_l'Ouest", "source": "WIKIPEDIA"}], "variant_access_point": ["Europe (ouest)", "Europe atlantique", "Europe occidentale"], "authorized_access_point": "Europe de l'Ouest"} 1 -2024-07-16 19:50:25.220482 2024-07-16 19:50:25.220496 eaea8879-3f3c-4586-b789-b6fd3155f77d {"md5": "8258a0f3164682b45ff98e6e8724ce30", "pid": "027218562", "note": [{"label": ["Sous cette vedette on trouve les ouvrages qui traitent de la partie de l'Afrique s'étendant du nord du Tchad au sud du Zai͏̈re et du Cameroun au Rwanda et au Burundi"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Burundi"}, {"authorized_access_point": "Cameroun"}, {"authorized_access_point": "Congo (République)"}, {"authorized_access_point": "Gabon"}, {"authorized_access_point": "Guinée équatoriale"}, {"authorized_access_point": "République centrafricaine"}, {"authorized_access_point": "Rwanda"}, {"authorized_access_point": "Sao Tomé-et-Principe"}, {"authorized_access_point": "Tchad"}, {"authorized_access_point": "Congo (République démocratique)"}, {"authorized_access_point": "Guinée (région)"}, {"authorized_access_point": "Grands lacs africains (région)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027218562", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16272632j", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040794857", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/169969170", "source": "VIAF"}], "variant_access_point": ["Afrique (centre)", "Afrique équatoriale", "Afrique équatoriale francophone"], "authorized_access_point": "Afrique centrale"} 1 -2024-07-16 19:50:25.492255 2024-07-16 19:50:25.492285 3188f865-a454-4fcd-8e61-394e7171335b {"md5": "ca7a4ee839028061404adbaa633d349b", "pid": "02721897X", "note": [{"label": ["GLU. Laval RVM, 1995-02"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les ouvrages qui traitent de l'ensemble des pays d'Amérique qui furent colonisés par les Espagnols et par les Portugais"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Et l'Amérique latine aux personnes et collectivités"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Amérique"}, {"authorized_access_point": "Pays de langue espagnole"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02721897X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11930876x", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4074032-8 ", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040740323", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172711055", "source": "VIAF"}], "variant_access_point": ["Amérique espagnole"], "authorized_access_point": "Amérique latine"} 1 -2024-07-16 19:50:25.777672 2024-07-16 19:50:25.777697 bdf87b10-4dc2-4151-a156-4a818200a7a1 {"md5": "4fd18544f4eb7a726755fa05584b802e", "pid": "027416925", "note": [{"label": ["GLU. BN ACO"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de la vallée d'Aoste ou de la Région autonome du Val d'Aoste"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Italie (nord)"}, {"authorized_access_point": "Italie - Régions"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027416925", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11946285w", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4002386-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040023869", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172872962", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Vallée_d'Aoste_(coalition)", "source": "WIKIPEDIA"}], "variant_access_point": ["Aoste, Val d' (Italie)", "Aoste, Vallée d' (Italie)", "Val d'Aoste", "Valle d'Aosta (Italie)"], "authorized_access_point": "Val d'Aoste (Italie)"} 1 -2024-07-16 19:50:26.031981 2024-07-16 19:50:26.031989 98020e4e-4083-4cca-ae49-e3d43100866b {"md5": "c56919d9f26d355a3f6d312afad0ca28", "pid": "02735895X", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Grande-Bretagne"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02735895X", "source": "IDREF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4014770-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040147703", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173636420", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Angleterre", "source": "WIKIPEDIA"}], "variant_access_point": ["England", "Angleterre"], "authorized_access_point": "Angleterre (GB)"} 1 -2024-07-16 19:50:29.402224 2024-07-16 19:50:29.402257 056d0e08-3369-4ee4-9c4e-c53de7806e70 {"md5": "52a1cdfd866dcc68baab7b914d5227e8", "pid": "157143422", "note": [{"label": ["Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgenössische Stabsbüreau unter der direktion von Oberst Siegfried veröffentlicht"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157143422", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/8682148574329724430000", "source": "VIAF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4119238-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041192389", "source": "GND"}], "authorized_access_point": "Zermatt (Valais, Suisse ; région)"} 1 -2024-07-16 19:50:29.681928 2024-07-16 19:50:29.681964 176e63e8-91a5-4641-a07f-664b47731d94 {"md5": "8eea9641cf3a845b1c8637b928d71410", "pid": "027250911", "note": [{"label": ["Corée du Sud ; Laval RVM, 1994-08. Han'guk (Min'guk) ; GKD, 1980"], "noteType": "dataSource"}, {"label": ["En précision géographique, employer Corée S., par ex. Séoul (Corée S.)", "Le Royaume de Corée fut colonisé par le Japon de 1905 à la fin de la Seconde guerre mondiale. La partition, en 1945, en 2 zones d'occupation (USA et URSS) aboutit le 15 août 1948 à la proclamation de la République de Corée. Capitale Séoul, langue officielle coréen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Corée"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027250911", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb152988753", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119334338", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040780295", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/139094665", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Gouvernement_militaire_de_l'armée_des_États-Unis_en_Corée", "source": "WIKIPEDIA"}], "variant_access_point": ["Han Kook", "Corée du Sud", "République de Corée", "Corée, République de", "Corée, République de (1948-....)"], "authorized_access_point": "Corée (République)"} 1 -2024-07-16 19:50:29.942227 2024-07-16 19:50:29.94226 ad5e07bc-f0ab-479b-8a1b-956a24fa705a {"md5": "d979077b0b5819460d543162e416f8bf", "pid": "027316696", "note": [{"label": ["IFLA, Names of states, 1981", "Corée du Nord ; Laval RVM, 1994-08. Chosǒn ; GKD, 1980"], "noteType": "dataSource"}, {"label": ["En précision géographique, employer Corée N., par ex. Pyongyang (Corée N.)", "Le Royaume de Corée fut colonisé par le Japon de 1905 à la fin de la Seconde guerre mondiale. La partition, en 1945, en 2 zones d'occupation (USA et URSS) aboutit le 9 septembre 1948 à la proclamation de la République populaire démocratique de Corée par l'Assemblée populaire suprême. Capitale Pyongyang, langue officielle coréen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Corée"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027316696", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11938542q", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040754685", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/6097150325542010090000", "source": "VIAF"}], "variant_access_point": ["Chosǒn", "Corée du Nord", "République populaire démocratique de Corée", "Corée, République populaire démocratique de", "Corée, République populaire démocratique de (1948-....)"], "authorized_access_point": "Corée (République populaire démocratique)"} 1 -2024-07-16 19:50:30.192415 2024-07-16 19:50:30.192421 4717ac1b-c664-4252-8666-c50af420d500 {"md5": "889960ebf20d8883ce5e9134ff37bdd7", "pid": "027321940", "note": [{"label": ["Laval RVM, 1992-08"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de la partie de l'Afrique située au sud du Sahara et à l'ouest du Tchad et du Cameroun"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Afrique occidentale anglophone"}, {"authorized_access_point": "Afrique occidentale francophone"}, {"authorized_access_point": "Bénin"}, {"authorized_access_point": "Burkina Faso"}, {"authorized_access_point": "Cap-Vert"}, {"authorized_access_point": "Côte d'Ivoire"}, {"authorized_access_point": "Gambie"}, {"authorized_access_point": "Ghana"}, {"authorized_access_point": "Guinée"}, {"authorized_access_point": "Guinée-Bissau"}, {"authorized_access_point": "Liberia"}, {"authorized_access_point": "Mali"}, {"authorized_access_point": "Mauritanie"}, {"authorized_access_point": "Niger"}, {"authorized_access_point": "Nigeria"}, {"authorized_access_point": "Sénégal"}, {"authorized_access_point": "Sierra Leone"}, {"authorized_access_point": "Togo"}, {"authorized_access_point": "Guinée (région)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027321940", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb162726289", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04079203X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/315124800", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Afrique_de_l'Ouest", "source": "WIKIPEDIA"}], "variant_access_point": ["Afrique (ouest)", "Afrique de l'Ouest"], "authorized_access_point": "Afrique occidentale"} 1 -2024-07-16 19:50:30.433713 2024-07-16 19:50:30.433739 4bbedbc5-733a-44e8-a6c2-24950982ab65 {"md5": "00007ac1b6b514973c6a1b41cb57f5f3", "pid": "027443876", "note": [{"label": ["GLU. Brockhaus, 19. Aufl.", "Laval RVM, 2000-01. Bayern ; GKD, 1994-05. SWD, 1995-04"], "noteType": "dataSource"}, {"label": ["Duché puis électorat (1623), royaume (1806), et l'un des dix cercles du Saint Empire. L'État libre de Bavière (capitale : Munich) comprend 7 Regierungsbezirke"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Allemagne - Länder"}, {"authorized_access_point": "Allemagne (sud)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027443876", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040050440", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/125426357", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Bavière", "source": "WIKIPEDIA"}], "variant_access_point": ["Bavaria", "Bavière", "Bavière (Duché)", "Bavière (Électorat)", "Bavière (Royaume)", "Bayerischer Kreis (Saint Empire romain germanique)", "Bayern (Allemagne)", "Freistaat Bayern", "Bayerischer Reichskreis"], "authorized_access_point": "Bavière (Allemagne)"} 1 -2024-07-16 19:50:30.696478 2024-07-16 19:50:30.696511 69075d9a-5881-4bce-9a69-6455da15db1c {"md5": "0aa4634bc2b2cbde1f9e52f566e3e693", "pid": "027375412", "note": [{"label": ["GLU. Laval RVM, 1993-02"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de l'archipel qui sépare l'Atlantique de la mer des Antilles et qui comprend les Bahamas, les Grandes et les Petites Antilles"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Région caraïbe"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027375412", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119430639", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040022935", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/155553957", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Antilles", "source": "WIKIPEDIA"}], "variant_access_point": ["Antillas", "Antillen", "Caraïbes (îles)", "Indes occidentales", "West Indies"], "authorized_access_point": "Antilles"} 1 -2024-07-16 19:50:38.135382 2024-07-16 19:50:38.135396 13eb69f4-8734-4be7-8c97-6125372ea0f0 {"md5": "b4820952728f10d594b7e1a15a6a05b8", "pid": "027220443", "note": [{"label": ["IFLA, Names of states, 1981. GLU, 1991", "Laval RVM, 1996-02"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Australasie"}, {"authorized_access_point": "Océanie"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027220443", "source": "IDREF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4003900-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040039005", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/9948148574334924430009", "source": "VIAF"}], "variant_access_point": ["Australia", "Commonwealth d'Australie", "Commonwealth of Australia"], "authorized_access_point": "Australie"} 1 -2024-07-16 19:50:39.457401 2024-07-16 19:50:39.457411 c4631823-b376-458d-80c2-65b167fe2ff2 {"md5": "ffb9fd46ed565d0cac1defbe67d08b0f", "pid": "027259641", "note": [{"label": ["GDEL. SY, 1990-91"], "noteType": "dataSource"}, {"label": ["Canton suisse"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027259641", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040000222", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/57148570704724312118", "source": "VIAF"}], "variant_access_point": ["Aargau (Suisse)"], "authorized_access_point": "Argovie (Suisse)"} 1 -2024-07-16 19:50:39.685306 2024-07-16 19:50:39.685332 baf1cc3e-d892-44db-a685-6dc82603716b {"md5": "9fe264e567bda6aaa2b3966f771bfe3d", "pid": "027407012", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027407012", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11864772p", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040367339", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040367339", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/140255133", "source": "VIAF"}], "variant_access_point": ["Luzern (Suisse)"], "authorized_access_point": "Lucerne (Suisse)"} 1 -2024-07-16 19:50:39.916258 2024-07-16 19:50:39.916483 45228aa8-75bb-4b82-9051-d8b746da55b4 {"md5": "4fd1594003d219070a026b8a1f7131ed", "pid": "027804151", "note": [{"label": ["Laval RVM, 1997-02"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les ouvrages sur la partie de l'Europe comprenant les bassins du Danube (jusqu'aux Portes de Fer), de l'Elbe, de l'Oder et du Rhin. Les ouvrages qui traitent de la partie de l'Europe située à l'est de l'Allemagne et de l'Autriche jusqu'à l'Oural, ou des anciennes démocraties populaires d'Europe (URSS non comprise), se trouvent sous la vedette Europe de l'Est"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Et l'Europe centrale aux personnes et collectivités"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027804151", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15180937h", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4039677-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040396770", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/171699483", "source": "VIAF"}], "variant_access_point": ["Europe (centre)", "Mitteleuropa"], "authorized_access_point": "Europe centrale"} 1 -2024-07-16 19:50:57.304304 2024-07-16 19:50:57.304321 d9f269e5-a9ad-4f8e-a2bd-1f05930a5313 {"md5": "fb702a2ecb8ea17b2821141f32270285", "pid": "027377768", "note": [{"label": ["Names of states / IFLA, 1981. GDEL. SY, 1986/1987"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent du territoire qui fut placé sous protectorat allemand, puis sous mandats français et britannique, et qui constitue aujourd'hui la République du Cameroun"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique centrale"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027377768", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040294137", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/147664051", "source": "VIAF"}], "variant_access_point": ["Cameroon", "Kamerun"], "authorized_access_point": "Cameroun"} 1 -2024-07-16 19:50:40.206155 2024-07-16 19:50:40.206185 45551c4e-df0b-482f-a3bc-c11a596bb8c1 {"md5": "1a937806599c65b13cd9d7efec2139b4", "pid": "02847158X", "note": [{"label": ["Alps, Western ; LCSH, 1988-12. Alpes occidentales ; Laval RVM, 1988-12"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Alpes cottiennes"}, {"authorized_access_point": "Mont Blanc, Massif du"}, {"authorized_access_point": "Alpes maritimes (massif)"}, {"authorized_access_point": "La Lauzière, massif de (France)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02847158X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120300409", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040792048", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/315530690", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Alpes_occidentales", "source": "WIKIPEDIA"}], "variant_access_point": ["Alpes occidentales"], "authorized_access_point": "Alpes (ouest)"} 1 -2024-07-16 19:50:40.534438 2024-07-16 19:50:40.534473 65f6f39b-724f-44eb-9b66-64fcfdc164ba {"md5": "60eef5d9179b256e1c265e31a3cd41b8", "pid": "271438436", "note": [{"label": ["Les vitraux de la cathédrale de Sion : une catéchèse en couleurs / Chapitre de la Cathédrale de Sion, [2020]", "https://fr.wikipedia.org/wiki/Cath%C3%A9drale_Notre-Dame_de_Sion, 2023-08-21"], "noteType": "dataSource"}, {"label": ["La cathédrale Notre-Dame de Sion (parfois appelée Notre-Dame du Glarier) est l’église principale du diocèse de Sion"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271438436", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)042499909", "source": "GND"}], "variant_access_point": ["Cathédrale Notre-Dame du Glarier (Sion, Valais, Suisse)", "Cathédrale de Sion (Sion, Valais, Suisse)", "Liebfrauenkathedrale (Sion, Valais, Suisse)", "Cathédrale Notre-Dame de Sion (Sion, Valais, Suisse)"], "authorized_access_point": "Sion (Valais, Suisse) - Cathédrale Notre-Dame du Glarier"} 1 -2024-07-16 19:50:48.112724 2024-07-16 19:50:48.112731 580fffec-7dc8-4339-9bb0-c61526207827 {"md5": "d8bf58b68f1fa33c75f617d62ba3c26f", "pid": "14704233X", "note": [{"label": ["Le 5/10/ 2010 : http://fr.wikipedia.org/wiki/Val_de_Bagnes"], "noteType": "dataSource"}, {"label": ["Vallée de Suisse dans le district d'Entremont en Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/14704233X", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/241474357", "source": "VIAF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4107510-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041075102", "source": "GND"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Val_de_Bagnes", "source": "WIKIPEDIA"}], "variant_access_point": ["Val de Bagnes (Suisse ; vallée)", "Baniental", "Bangital", "Vallée de Bagnes (Valais, Suisse)"], "authorized_access_point": "Bagnes, Vallée de (Valais, Suisse)"} 1 -2024-07-16 19:50:49.329541 2024-07-16 19:50:49.329547 9788cf24-132d-4f7c-9565-7ec9dd469a37 {"md5": "5de5e5b97b3a1877b436203b7f326f56", "pid": "198231288", "note": [{"label": ["Note sur la Géologie des environs de Louèche-les-Bains / par le Dr Phil. de La Harpe, 1877"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/198231288", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040995623", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/144250507", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Loèche-les-Bains", "source": "WIKIPEDIA"}], "variant_access_point": ["Louèche-les-Bains (Valais, Suisse)", "Leukerbad (Valais, Suisse)"], "authorized_access_point": "Loèche-les-Bains (Valais, Suisse)"} 1 -2024-07-16 19:50:49.569182 2024-07-16 19:50:49.5692 4b0a8ff2-70c4-414b-af29-bbf35c5c4173 {"md5": "bc1c76ecaeac3f4d3ebb7b0269278ffe", "pid": "028931491", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028931491", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)949642762", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173637213", "source": "VIAF"}], "authorized_access_point": "Léman, Lac (région)"} 1 -2024-07-16 19:50:52.956103 2024-07-16 19:50:52.956143 cdb320db-6adc-4102-8d41-6249b41b76dc {"md5": "573af1b964e87fc62ce0175c823f57ea", "pid": "029201098", "note": [{"label": ["GDEL. Grand-Saint-Bernard (Italie et Suisse) ; Laval RVM, 1990-08", "GeoNames (2017-07-06)"], "noteType": "dataSource"}, {"label": ["Le col du Grand-Saint-Bernard, anciennement appelé col du Mont-Joux, est un col de montagne routier des Alpes pennines, situé à 2 469 mètres d'altitude en Valais sur la commune de Bourg-Saint-Pierre en Suisse. La frontière avec l'Italie (commune de Saint-Rhémy-en-Bosses) passe quelques centaines de mètres au sud-ouest du col. Il sépare la vallée du même nom, en Vallée d'Aoste au sud, du val d'Entremont, situé en Valais au nord et constitue un passage entre le mont Mort et la pointe de Drône, tous deux situés sur la frontière italio-suisse. C'est le troisième plus haut col routier des Alpes suisses et le septième plus haut d'Italie"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029201098", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12087709t", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040940888", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4094088-3", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/5670150567623106370006", "source": "VIAF"}, {"type": "uri", "value": "http://viaf.org/viaf/240823931", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Col_du_Grand-Saint-Bernard", "source": "WIKIPEDIA"}], "relation_pid": {"type": "redirect_from", "value": "202981762"}, "variant_access_point": ["Saint-Bernard, Grand- (col)", "Grosser Sankt Bernhard", "Gran San Bernardo", "Great Saint Bernard Pass", "Colle del Gran San Bernardo", "Grand-Saint-Bernard, Col du (Valais, Suisse)"], "authorized_access_point": "Grand-Saint-Bernard (col)"} 1 -2024-07-16 19:50:57.050384 2024-07-16 19:50:57.050401 9cb546ec-227f-4699-81c4-327cb57ecb3c {"md5": "673228933377fd4f5099bebe10fcaebb", "pid": "027437213", "note": [{"label": ["GDEL. Laval RVM suppl., 1988-03"], "noteType": "dataSource"}, {"label": ["Emploi direct en subdivision : [Sujet] -- Suisse alémanique"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pays de langue allemande"}, {"authorized_access_point": "Suisse"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027437213", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11947885s", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040703525", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/315160381", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Suisse_alémanique", "source": "WIKIPEDIA"}], "variant_access_point": ["Suisse de langue allemande"], "authorized_access_point": "Suisse alémanique"} 1 -2024-07-16 19:50:53.226153 2024-07-16 19:50:53.226183 e225850d-7f87-4923-be1b-395afcfd9417 {"md5": "ed775c568d6c89cd199c94e7cdcd58e7", "pid": "027218619", "note": [{"label": ["GLU. Pays et capitales du monde / IGN, 1986. SY 2000", "Laval RVM, 2000-01"], "noteType": "dataSource"}, {"label": ["1910 : Union sud-africaine ; 1961 : République d'Afrique du Sud. En 1994 les 4 provinces historiques (Le Cap, Natal, Orange et Transvaal) ont été remplacées par 9 nouvelles provinces"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique australe"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027218619", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13969835d", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4078012-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040780120", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/159069376", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Afrique_du_Sud", "source": "WIKIPEDIA"}], "variant_access_point": ["Azanie", "South Africa", "Suid-Afrika", "Union sud-africaine"], "authorized_access_point": "Afrique du Sud"} 1 -2024-07-16 19:50:53.463132 2024-07-16 19:50:53.463136 29209b51-4c32-4fd0-841f-e01401e025c5 {"md5": "43b1daf8f7c51a18b4a119d11ff29e63", "pid": "027228517", "note": [{"label": ["GDEL. SY 1990/91. Laval RVM, 1990-08"], "noteType": "dataSource"}, {"label": ["Canton suisse"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027228517", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb153220844", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4021881-8 ", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040218813", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/170357195", "source": "VIAF"}], "variant_access_point": ["Graubünden (Suisse)", "Grigioni (Suisse)", "Grishun (Suisse)"], "authorized_access_point": "Grisons (Suisse)"} 1 -2024-07-16 19:50:54.720265 2024-07-16 19:50:54.720283 98811de7-6a02-4c01-8457-a8b7f932b93e {"md5": "c34d8ed6a07ab6449908bc87e50bd02e", "pid": "027401448", "note": [{"label": ["GDEL. SY 1990/91"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027401448", "source": "IDREF"}, {"type": "uri", "value": "https://d-nb.info/gnd/4041745-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04041745X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/122584639", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Principauté_de_Neuchâtel", "source": "WIKIPEDIA"}], "variant_access_point": ["Neuchâtel (canton)", "Neuchâtel (Principauté)"], "authorized_access_point": "Neuchâtel (Suisse ; canton)"} 1 -2024-07-16 19:50:54.980082 2024-07-16 19:50:54.980118 b4395e3b-33c6-45eb-826e-8cd684b899ef {"md5": "65b7ea2f0753df6b4d8216be3205a079", "pid": "027250938", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Méditerranée, Îles de la"}, {"authorized_access_point": "France - Régions"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027250938", "source": "IDREF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4032527-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04032527X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/266664107", "source": "VIAF"}], "variant_access_point": ["Corse", "Corse, île de (France)", "Corsica (France)"], "authorized_access_point": "Corse (France)"} 1 -2024-07-16 19:50:55.251504 2024-07-16 19:50:55.251524 12d7b06b-baff-4339-814a-c1d34c0ac191 {"md5": "0da090fd03de8b86de24f5da9b4c4e57", "pid": "027849414", "note": [{"label": ["GDEL. SY 1990/91"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027849414", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040057658", "source": "GND"}, {"type": "uri", "value": "http://d-nb.info/gnd/4005765-3 ", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172118589", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Canton_de_Berne", "source": "WIKIPEDIA"}], "authorized_access_point": "Berne (Suisse ; canton)"} 1 -2024-07-16 19:50:55.50052 2024-07-16 19:50:55.500529 0af8f324-b21d-4727-99d5-9d68162bfec1 {"md5": "8d535ec4fc50acccbf71b2b651d68fe9", "pid": "027226042", "note": [{"label": ["GLU"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027226042", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11931414h", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040175812", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/158387156", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Florence", "source": "WIKIPEDIA"}], "variant_access_point": ["Firenze (Italie)", "Florence"], "authorized_access_point": "Florence (Italie)"} 1 -2024-07-16 19:50:55.726988 2024-07-16 19:50:55.72702 93a26f6d-2cb8-41eb-8d02-43d8ff4a317b {"md5": "001207f0e1bd5b6a2ff9e43b853ffeec", "pid": "027264580", "note": [{"label": ["Encycl. universalis, 1989, 19, 154-159", "Prusse (Allemagne) ; Laval RVM, 1996-02", "Preussen , puis Preussen , puis Preussen ; SWD, 1995-04"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de la Prusse depuis ses origines (les anciens Prussiens ou Borusses) jusqu'à sa disparition en tant qu'État en 1947"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "related": [{"authorized_access_point": "Prusse - Histoire"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Prusse-Occidentale (Pologne)"}, {"authorized_access_point": "Prusse-Orientale"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027264580", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119344356", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4047194-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040471942", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/266665986", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Prusse", "source": "WIKIPEDIA"}], "variant_access_point": ["Preussen", "Prusse (Duché)", "Prusse (Royaume)"], "authorized_access_point": "Prusse"} 1 -2024-07-16 19:50:57.57745 2024-07-16 19:50:57.577481 1cf18ee8-bbe2-45ed-b643-05ce92c43e0a {"md5": "69d69836df8ab4accbab7cf1ce291f9b", "pid": "027622444", "note": [{"label": ["IFLA, Names of states, 1981", "Laval RVM, 1996-02. Sverige ; GKD, 1994-05"], "noteType": "dataSource"}, {"label": ["Voir aussi la subdivision Et la Suède aux personnes et collectivités"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Scandinavie"}, {"authorized_access_point": "Pays de l'Union européenne"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027622444", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13953240p", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040772586", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/178302678", "source": "VIAF"}], "variant_access_point": ["Sverige"], "authorized_access_point": "Suède"} 1 -2024-07-16 19:50:58.893084 2024-07-16 19:50:58.8931 20900220-747e-4f3b-b98f-6654b45756d7 {"md5": "e6474f3582d2a2f395d8b32138005d91", "pid": "027252272", "note": [{"label": ["GLU"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de l'ensemble de l'empire turc osmanli. Les ouvrages sur la République turque ou sur la seule Anatolie se trouvent sous la vedette Turquie"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Orient"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027252272", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04075720X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/5493148574275724430005", "source": "VIAF"}], "variant_access_point": ["Empire turc", "Ottoman, Empire"], "authorized_access_point": "Empire ottoman"} 1 -2024-07-16 19:50:59.17417 2024-07-16 19:50:59.174205 10afd762-5896-43e0-ab35-a41bf5217c41 {"md5": "4af3da21a61f3529718995ca318d8c43", "pid": "027263495", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Hispanie ultérieure"}, {"authorized_access_point": "Espagne - Communautés autonomes"}], "related": [{"authorized_access_point": "Al-Andalus"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027263495", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040019098", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/132461455", "source": "VIAF"}], "variant_access_point": ["Andalucía (Espagne)", "Baetica", "Bétique", "Tarsis"], "authorized_access_point": "Andalousie (Espagne)"} 1 -2024-07-16 19:51:00.493967 2024-07-16 19:51:00.49397 6bc99c0f-4168-4f70-92bf-dd3db889d696 {"md5": "f75dd2952d14665687cc9f0c17b830bd", "pid": "02754785X", "note": [{"label": ["GDEL. SY 1990/91"], "noteType": "dataSource"}, {"label": ["Canton suisse"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02754785X", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)041196058", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/117148570735124312537", "source": "VIAF"}], "variant_access_point": ["Thurgau (Suisse)"], "authorized_access_point": "Thurgovie (Suisse)"} 1 -2024-07-16 19:51:00.677454 2024-07-16 19:51:00.677457 99863177-b77d-4b12-93c2-5edf466071e4 {"md5": "06ae55c19ac6e366222f9f7677e762ce", "pid": "027614697", "note": [{"label": ["Names of states / IFLA, 1981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Proche-Orient"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027614697", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040287505", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/204148574377724430003", "source": "VIAF"}], "variant_access_point": ["Transjordanie", "الأردن", "Al-Urdun"], "authorized_access_point": "Jordanie"} 1 -2024-07-16 19:51:00.861649 2024-07-16 19:51:00.861652 fd179e5d-9721-4945-aa09-720ed13802e6 {"md5": "b6e93cecf91107f7889b67c3b2f3f6f9", "pid": "027369714", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027369714", "source": "IDREF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4005762-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040057623", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/237298336", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Berne", "source": "WIKIPEDIA"}], "variant_access_point": ["Bern (Suisse)"], "authorized_access_point": "Berne (Suisse)"} 1 -2024-07-16 19:51:01.055189 2024-07-16 19:51:01.055194 ec1fc548-f70f-4bf5-a04d-0f83dcef879c {"md5": "f9658358a32810397df757570d432357", "pid": "030519799", "note": [{"label": ["Wikipédia : château de Valère - https://fr.wikipedia.org (2021-08-10)", "Wikipedia : Basilica di Valère, castello di Valère - https:/:it.wikipedia.org (2021-08-10)", "Wikipedia : Basilique de Valère (oder Basilika von Valeria, Schloss Valeria) - https://de.wikipedia.org (2021-08-10)", "Petit Robert des noms propres, 2015 (art. : Sion) : église Notre-Dame de Valère", "Grand Larousse universel (art. : Sion) : église Notre-Dame de Valère", "Guides Voir : Suisse, 2012", "Sion Tourisme : château de Valère (interface en français), Schloss Valeria (interface en allemand) - https://siontourisme.ch (2021-08-10)"], "noteType": "dataSource"}, {"label": ["Le \\"château de Valère\\", qui couronne la colline du même nom dominant Sion, est en réalité une église fortifiée des 12e-13e siècles, église entourée de maisons qui furent résidence des chanoines de la cathédrale de la ville, le tout protégé par une enceinte (remparts et tours), le clocher de l'église étant en quelque sorte le donjon de ce véritable petit bourg médiéval. L'église Notre-Dame de Valère fut élevée au rang de basilique (mineure) sous le pontificat de Jean-Paul II, en 1987. Ses chapiteaux sont romans, ses fresques, gothiques ; son orgue de la fin du 14e siècle est le plus ancien du monde sur lequel on peut encore jouer. Le complexe abrite le Musée d'histoire du Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCA", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/names/n91123541", "source": "LCA"}, "authorized_access_point": "Notre-Dame de Valère (Church : Sion, Switzerland)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030519799", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12191796h", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)042499909", "source": "GND"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Art et science militaires", "type": "bf:ClassificationDdc", "classificationPortion": "355"}, {"name": "Architecture", "type": "bf:ClassificationDdc", "classificationPortion": "720"}, {"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Basilica di Valère (Sion, Valais, Suisse)", "Basilika von Valeria (Sion, Valais, Suisse)", "Basilique de Valère (Sion, Valais, Suisse)", "Basilique Notre-Dame de Valère (Sion, Valais, Suisse)", "Castello di Valère (Sion, Valais, Suisse)", "Château de Valère (Sion, Valais, Suisse)", "Église Notre-Dame de Valère (Sion, Valais, Suisse)", "Kirche von Valeria (Sion, Valais, Suisse)", "Notre-Dame de Valère, Basilique (Sion, Valais, Suisse)", "Schloss Valeria (Sion, Valais, Suisse)", "Valère, Château de (Sion, Valais, Suisse)", "Valeria, Schloss (Sion, Valais, Suisse)"], "authorized_access_point": "Sion (Valais, Suisse) - Château de Valère"} 1 -2024-07-16 19:51:01.240027 2024-07-16 19:51:01.240031 a4390555-79f6-408a-8b74-7f4f3c5d82c7 {"md5": "d7312c3254f0c2d94178edbebd7069f0", "pid": "071586709", "note": [{"label": ["Grand Larousse universel", "Robert encyclopédique des noms propres 2008", "Encycl. universalis - http://www.universalis-edu.com (2011-10-24)", "Wikipédia - http://fr.wikipedia.org (2011-10-24)"], "noteType": "dataSource"}, {"label": ["Capitale de la Lombardie"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Et Milan [sans subd. géogr.] aux collectivités et aux personnes"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/071586709", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11936471j", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04037100X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/112144814525470906849", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Mediolanum", "source": "WIKIPEDIA"}], "relation_pid": {"type": "redirect_from", "value": "181631121"}, "classification": [{"name": "Géographie de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Mediolanum (ville ancienne)", "Milan", "Milano (Italie)"], "authorized_access_point": "Milan (Italie)"} 1 -2024-07-16 19:51:01.428082 2024-07-16 19:51:01.428086 76f5971c-a4ee-459f-a399-96c710bd0948 {"md5": "4fadf276ff24607f762da7526fb4d0c9", "pid": "02788743X", "note": [{"label": ["GLU, 1991", "Laval RVM, 1996-08. Elsass ; SWD, 1995-04"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de l'Alsace historique, ou de l'actuelle région d'Alsace qui ne comprend pas le Territoire-de-Belfort"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Et l'Alsace aux personnes et collectivités"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "France (est)"}, {"authorized_access_point": "France (nord-est)"}, {"authorized_access_point": "Rhénans, Pays (sud)"}, {"authorized_access_point": "France - Régions"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02788743X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119832719", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4014500-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04014500X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/153554472", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Alsace", "source": "WIKIPEDIA"}], "variant_access_point": ["Alsace", "Elsass (France)"], "authorized_access_point": "Alsace (France)"} 1 -2024-07-16 19:51:01.610488 2024-07-16 19:51:01.610492 ca12913a-b36d-443d-8bf5-99cda1da80f0 {"md5": "d8b5efb2ae63476558d2ada82880438b", "pid": "029805287", "note": [{"label": ["Atlas Le Monde", "https://hls-dhs-dss.ch/fr/articles/002802/2017-11-16/, 2024-02-20", "Sion et Mayens-de-Sion / Louis Courthion, 1910"], "noteType": "dataSource"}, {"label": ["Ville située dans le canton du Valais ; chef-lieu du canton"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029805287", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12135301m", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040774678", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040774678", "source": "GND"}, {"type": "uri", "value": "http://d-nb.info/gnd/4077467-3", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/316751302", "source": "VIAF"}], "variant_access_point": ["Sitten (Suisse)"], "authorized_access_point": "Sion (Valais, Suisse)"} 1 -2024-07-16 19:51:02.825645 2024-07-16 19:51:02.825651 c1c3ffe7-43b2-4e0e-84d5-57af26a4a4e8 {"md5": "aa412770544a6e7d8576109efb942e4b", "pid": "161911846", "note": [{"label": ["Aesch. ein frühmittelelterliches Gräberfeld / Chantal Hartmann ; mit Beiträgen von Andreas Cueni und Antoinette Rast-Eicher, 2009"], "noteType": "dataSource"}, {"label": ["Commune du canton de Lucerne au bord du Hallwiler See"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/161911846", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/238806520", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)968963935", "source": "GND"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Eich_(Lucerne)", "source": "WIKIPEDIA"}], "variant_access_point": ["Aesch (Canton de Lucerne, Suisse)", "Aesch (Kanton Luzern, Schweiz)"], "authorized_access_point": "Aesch (Lucerne, Suisse)"} 1 -2024-07-16 19:51:03.05262 2024-07-16 19:51:03.052641 b7384880-d017-4d0f-b70b-54cddf1b3f6f {"md5": "d32fe8280c4844f0ffcb5c67553d3e82", "pid": "02775751X", "note": [{"label": ["Alps, Italian (Italy) ; LCSH, 1988-12"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Grappa (Italie ; massif)"}, {"authorized_access_point": "Cadore (Italie)"}, {"authorized_access_point": "Dolomites (Italie ; massif)"}, {"authorized_access_point": "Alpes juliennes"}, {"authorized_access_point": "Alpes cottiennes"}, {"authorized_access_point": "Alpes maritimes (massif)"}, {"authorized_access_point": "Adamello (Italie ; massif)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02775751X", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040278395", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/316431852", "source": "VIAF"}], "variant_access_point": ["Alpes italiennes"], "authorized_access_point": "Alpes (Italie)"} 1 -2024-07-16 19:51:03.327851 2024-07-16 19:51:03.327886 6bf18d02-ed41-4944-a43c-ba7edc149521 {"md5": "30d7b3938fed5f84d44126446e016203", "pid": "028724208", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028724208", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12050127s", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4118667-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041186672", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/316747146", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Tunnel_du_Simplon", "source": "WIKIPEDIA"}], "authorized_access_point": "Simplon, Tunnel du"} 1 -2024-07-16 19:51:04.614482 2024-07-16 19:51:04.614517 d824fd89-0f08-474d-bd96-431b379529eb {"md5": "e1e6ca6b5cbb5e7f08632744bf00341b", "pid": "260966401", "note": [{"label": ["L'intérieur du temple de La Sagne après rénovation / Galley, Christian,, photographe (créateur), 2001", "Visualisation sur SITN- Géoportail du système d'information du territoire neuchâtelois https://sitn.ne.ch, 2022-03-14"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260966401", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/93164959497624020651", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)964991500", "source": "GND"}], "relation_pid": {"type": "redirect_from", "value": "261065416"}, "authorized_access_point": "La Sagne (Neuchâtel, Suisse)"} 1 -2024-07-16 19:51:04.882125 2024-07-16 19:51:04.882161 b51fdd1f-cd67-4ef2-a700-2d00909f4944 {"md5": "7ab33eca31f1736c6447842791142a4d", "pid": "26144722X", "note": [{"label": ["L'or de Mund / Rolf Jeitziner, Barbara Seiler, 2021", "https://fr.wikipedia.org/wiki/Mund_(Valais), 2022-03-31"], "noteType": "dataSource"}, {"label": ["Village situé dans le Haut-Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26144722X", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/340164960096024022192", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)941147797", "source": "GND"}], "authorized_access_point": "Mund (Valais, Suisse)"} 1 -2024-07-16 19:51:05.111283 2024-07-16 19:51:05.111321 4b75d431-f9ec-4301-80f2-e38718dc2f4c {"md5": "ba6ca6d6e83aba4a80c37ce03d34e610", "pid": "027218546", "note": [{"label": ["GLU"], "noteType": "dataSource"}, {"label": ["Voir aussi aux vedettes commençant par Afrique, par ex. : Afrique anglophone ; Afrique australe", "Voir aussi la subdivision Et l'Afrique aux collectivités (à l'exception des types de collectivités) et aux personnes"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Sahel"}, {"authorized_access_point": "Afrique du Nord"}, {"authorized_access_point": "Afrique subsaharienne"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027218546", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119308418", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040006956", "source": "GND"}, {"type": "uri", "value": "https://d-nb.info/gnd/4000695-5", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/123310773", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Afrique", "source": "WIKIPEDIA"}], "authorized_access_point": "Afrique"} 1 -2024-07-16 19:51:05.351636 2024-07-16 19:51:05.35167 369512dc-5322-4ff9-a374-6fc1cfd9aa32 {"md5": "618583fb790e3bd6a11c27d22bc9486c", "pid": "027229246", "note": [{"label": ["IFLA, Names of states, 1981. Österreich ; GKD, 1994-05 ; SWD, 1995-04", "Laval RVM, 1997-02"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les ouvrages qui traitent de l'Autriche, des origines à nos jours, quelles qu'aient été son étendue territoriale et son régime politique. Cependant les ouvrages relatifs à l'Autriche-Hongrie (1867-1918) se trouvent sous la vedette Autriche-Hongrie ; et ceux qui, pour la même période, se limitent à la partie autrichienne de l'empire (Cisleithanie) se trouvent sous la vedette Autriche, suivie des subdivisions de sujet et chronologiques appropriées"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Et l'Autriche aux personnes et collectivités", "Voir aussi la subdivision Réclamations contre l'Autriche aux lieux"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europe centrale"}, {"authorized_access_point": "Pays de l'Union européenne"}, {"authorized_access_point": "Pays de langue allemande"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027229246", "source": "IDREF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4043271-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040432718", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/422148574296124430006", "source": "VIAF"}], "variant_access_point": ["Cisleithanie", "Empire d'Autriche", "Ostmark", "Zisleithanien", "Austria"], "authorized_access_point": "Autriche"} 1 -2024-07-16 19:51:05.611277 2024-07-16 19:51:05.611289 9bf8d02f-e84b-4b91-9f30-9d99d9242a6b {"md5": "0c4cafbf21716abfa4638a9fbbe4335f", "pid": "027401421", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027401421", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040753034", "source": "GND"}, {"type": "uri", "value": "http://d-nb.info/gnd/4075303-7", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173035857", "source": "VIAF"}, {"type": "uri", "value": "http://viaf.org/viaf/83148570667224311413", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "088761398"}, "variant_access_point": ["Neuenburg (Suisse)", "Neocomi Helvetorum", "Neufchâtel", "Neufchastel", "Novum Castrum", "Novi Castri", "Neocomum", "Neocomi"], "authorized_access_point": "Neuchâtel (Neuchâtel, Suisse)"} 1 -2024-07-16 19:51:06.883537 2024-07-16 19:51:06.883571 d4df63b1-6205-4fbc-bb51-6e4300336121 {"md5": "9bf64b25a5d46f3276162fe2a05281e7", "pid": "027356302", "note": [{"label": ["GLU"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent des pays riverains de la Méditerranée orientale (Chypre, Égypte, Palestine, Israe͏̈l, Liban, Syrie) et de la Jordanie. Les ouvrages qui traitent de l'ensemble de l'Asie occidentale, et éventuellement de l'Égypte et du Soudan, se trouvent sous la vedette Moyen-Orient"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Méditerranée (région ; est)"}, {"authorized_access_point": "Moyen-Orient"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027356302", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15365915b", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04068878X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/170319740", "source": "VIAF"}], "variant_access_point": ["Levant", "Orient, Proche-"], "authorized_access_point": "Proche-Orient"} 1 -2024-07-16 19:51:10.235766 2024-07-16 19:51:10.235773 c9830725-e60d-4c83-a558-6d6536c932de {"md5": "3d0c030aa8ff22acc8cdf5b6f71b2fb4", "pid": "027243222", "note": [{"label": ["IFLA, Names of states, 1981. GLU, 1991", "Laval RVM, 1996-02"], "noteType": "dataSource"}, {"label": ["Voir aussi la subdivision Et la Pologne aux personnes et collectivités"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europe centrale"}, {"authorized_access_point": "Pays slaves"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027243222", "source": "IDREF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4046496-9 ", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040464962", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173581060", "source": "VIAF"}], "variant_access_point": ["Polska"], "authorized_access_point": "Pologne"} 1 -2024-07-16 19:51:11.510849 2024-07-16 19:51:11.510882 2c562227-1bb9-466d-b93c-f659ce3021ad {"md5": "b1a0f1cd5bd7661335f72dcfcbab294d", "pid": "027222950", "note": [{"label": ["IFLA, Names of states, 1981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Andes (région)"}, {"authorized_access_point": "Cône Sud de l'Amérique du Sud"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027222950", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15238523s", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040099296", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/233665742", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Chili", "source": "WIKIPEDIA"}], "variant_access_point": ["Chile"], "authorized_access_point": "Chili"} 1 -2024-07-16 19:51:12.803544 2024-07-16 19:51:12.803561 549f5233-c741-4091-a150-2419531acba2 {"md5": "b1e2591463c0f2fdacba7131c1602289", "pid": "027251411", "note": [{"label": ["GLU, 1991. Mourre, 1986", "Laval RVM, 1997-02"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027251411", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11933474v", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4062501-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04062501X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/136651400", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Venise", "source": "WIKIPEDIA"}], "variant_access_point": ["Venezia (Italie)", "Venise (République)"], "authorized_access_point": "Venise (Italie)"} 1 -2024-07-16 19:51:13.078626 2024-07-16 19:51:13.078663 4ecb0303-0852-4182-85ad-f1b3b65d19a8 {"md5": "84ff30a18d2a063afd3b1f34cb10e01c", "pid": "027318494", "note": [{"label": ["GDEL. SY 1991/92"], "noteType": "dataSource"}, {"label": ["Canton suisse"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027318494", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040789829", "source": "GND"}, {"type": "uri", "value": "http://d-nb.info/gnd/4078982-2", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172278245", "source": "VIAF"}], "variant_access_point": ["Léman (Suisse)", "Vaud", "Waadt (Suisse)"], "authorized_access_point": "Vaud (Suisse)"} 1 -2024-07-16 19:51:16.390751 2024-07-16 19:51:16.390771 40cceb15-26c6-438a-85bf-34c86fdf1061 {"md5": "2fe5880f2070a12371d54b09bf406c73", "pid": "027303063", "note": [{"label": ["GDEL. SY 1990/91"], "noteType": "dataSource"}, {"label": ["Canton suisse"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCA", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/names/n80104828", "source": "LCA"}, "authorized_access_point": "Valais (Switzerland)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027303063", "source": "IDREF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4064466-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040644669", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/316909073", "source": "VIAF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Vallese (Suisse)", "Wallis (Suisse)"], "authorized_access_point": "Valais (Suisse)"} 1 -2024-07-16 19:51:17.635265 2024-07-16 19:51:17.635269 68b2f0a1-8422-4d1c-9f56-87c68ea8d82d {"md5": "380ec045975ff1d84979cb81ac6399ac", "pid": "027296946", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["Département français (39)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Franche-Comté (France)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027296946", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11936964n", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040932087", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/234191213", "source": "VIAF"}, {"type": "uri", "value": "http://viaf.org/viaf/168693353", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Jura_(département)", "source": "WIKIPEDIA"}], "relation_pid": {"type": "redirect_from", "value": "127958827"}, "variant_access_point": ["Jura", "Jura (département)", "Jura, Département du (France)"], "authorized_access_point": "Jura (France)"} 1 -2024-07-16 19:51:17.830116 2024-07-16 19:51:17.830119 89ca059f-fba1-4bca-90fe-e51bf740fc3e {"md5": "0fcf9c94ae9f97da0c9bd90bfc5e6744", "pid": "027250644", "note": [{"label": ["Pays et capitales du monde / IGN, 1986 ; GLU ; Encycl. universalis, 1984, t.4, p.69 sq. Cambodia ; SY, 1992/1993"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Indochine"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027250644", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04029400", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/134861112", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Cambodge", "source": "WIKIPEDIA"}], "relation_pid": {"type": "redirect_from", "value": "094318433"}, "variant_access_point": ["Kambūjā", "Kampuchea", "Kampuchea démocratique", "Khmère, République", "République khmère"], "authorized_access_point": "Cambodge"} 1 -2024-07-16 19:51:18.01304 2024-07-16 19:51:18.013044 cda59b99-d01f-4662-a928-f4856958375a {"md5": "88e39cf171715175857435682a1c859c", "pid": "027267873", "note": [{"label": ["BA, 1989"], "noteType": "dataSource"}, {"label": ["Emploi direct en subdivision : [sujet] -- Guyane"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Guyanes"}, {"authorized_access_point": "France - Départements et régions d'outre-mer"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027267873", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040181847", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173457961", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "087992019"}, "variant_access_point": ["Guyane française"], "authorized_access_point": "Guyane"} 1 -2024-07-16 19:51:18.198246 2024-07-16 19:51:18.198249 7f4f8505-7534-46e9-a7a6-bb341aa7fe1a {"md5": "4106fa410577d0648c2c532ff13f53f9", "pid": "027252620", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027252620", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04051658X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/9662148705732037080009", "source": "VIAF"}, {"type": "uri", "value": "http://viaf.org/viaf/122531297", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "169986365"}, "variant_access_point": ["Santiago de Compostela (Espagne)"], "authorized_access_point": "Saint-Jacques-de-Compostelle (Espagne)"} 1 -2024-07-16 19:51:18.390761 2024-07-16 19:51:18.390767 a7e0e5bb-ff9c-4290-bc7d-82076edf052e {"md5": "c012d167b01dbb8d24fd910d09e1d6f2", "pid": "027263762", "note": [{"label": ["GLU. Laval RVM, 2000-01"], "noteType": "dataSource"}, {"label": ["Voir aussi la subdivision Et la Norvège aux collectivités et aux personnes"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Scandinavie"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027263762", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040754715", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/727148574256024430009", "source": "VIAF"}], "variant_access_point": ["Norge", "Noreg"], "authorized_access_point": "Norvège"} 1 -2024-07-16 19:51:18.569982 2024-07-16 19:51:18.569985 1b0440b4-9b65-48de-874f-c99c54121c9a {"md5": "3f12e1a0c6da8d8ace6e38ba0ccc3d5c", "pid": "027239497", "note": [{"label": ["IFLA, Names of states, 1981. GLU, 1991", "Laval RVM, 1997-02"], "noteType": "dataSource"}, {"label": ["Voir aussi la subdivision Et le Mexique aux personnes et collectivités"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027239497", "source": "IDREF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4039058-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040390586", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173636258", "source": "VIAF"}], "variant_access_point": ["Estados unidos mexicanos", "Méjico", "México"], "authorized_access_point": "Mexique"} 1 -2024-07-16 19:51:19.876585 2024-07-16 19:51:19.876601 0b8d5e40-1535-4883-a9c2-b30b56c87f42 {"md5": "00e62591406c96c53539dc9d06979082", "pid": "02725349X", "note": [{"label": ["IFLA, Names of states, 1981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique du Nord"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02725349X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119336345", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040612066", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/134783062", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Tayara.tn", "source": "WIKIPEDIA"}], "authorized_access_point": "Tunisie"} 1 -2024-07-16 19:51:20.172896 2024-07-16 19:51:20.172923 d1d4dbdb-f1b3-4e43-b727-d33e787ac735 {"md5": "390f864064efe7fc593523d265ad0c08", "pid": "027290530", "note": [{"label": ["GDEL. Laval RVM, 1989-06."], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027290530", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11936474k", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04003366X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/131280462", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Athènes", "source": "WIKIPEDIA"}], "variant_access_point": ["Athènes", "Athinai (Grèce)"], "authorized_access_point": "Athènes (Grèce)"} 1 -2024-07-16 19:51:23.459023 2024-07-16 19:51:23.459048 6f3946fb-83dd-4781-b711-131f67355d43 {"md5": "ee6d223a97236cdebbd28fc0b033da7d", "pid": "02725108X", "note": [{"label": ["IFLA, Names of states, 1981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Antilles hispaniques"}, {"authorized_access_point": "Grandes Antilles"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02725108X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119334489", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04033340X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/162884679", "source": "VIAF"}], "authorized_access_point": "Cuba"} 1 -2024-07-16 19:51:23.698125 2024-07-16 19:51:23.698166 7a4067ca-3c4e-4d24-861a-1d6083b46f5a {"md5": "d1cb8503972c4aca53b75f4578b48205", "pid": "027945774", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027945774", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11987945n", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040554589", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/128144648648649371618", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "276094255"}, "variant_access_point": ["Solothurn (Suisse)"], "authorized_access_point": "Soleure (Soleure, Suisse)"} 1 -2024-07-16 19:51:23.956173 2024-07-16 19:51:23.9562 d85da3af-257e-4a82-ae3f-26370f30f05c {"md5": "16d4783cf7f4683c88ac580df1b1581a", "pid": "027311430", "note": [{"label": ["Names of states / IFLA, 1981. Pays et capitales du monde / IGN, 1985. Manuel de l'Unesco, 1985. Le Grand atlas de géographie, 1984. GDEL"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages sur la République populaire de Mongolie et/ou sur l'ensemble de la Mongolie"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Asie centrale"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027311430", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040400565", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/155144648525066137570", "source": "VIAF"}], "variant_access_point": ["Mongol Ard Uls", "Mongolie (République populaire)", "Mongolie-extérieure"], "authorized_access_point": "Mongolie"} 1 -2024-07-16 19:51:24.221767 2024-07-16 19:51:24.221839 ee529ba3-168e-4b46-b5e1-96252bff3f4f {"md5": "ae5c3e27c2ba9e8462652b53ec7436c6", "pid": "027405621", "note": [{"label": ["Names of states / IFLA, 1981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Atlantique, Îles de l'"}, {"authorized_access_point": "Scandinavie"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027405621", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040277542", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/2599148574346024430006", "source": "VIAF"}], "variant_access_point": ["Ísland"], "authorized_access_point": "Islande"} 1 -2024-07-16 19:51:24.48524 2024-07-16 19:51:24.485273 46e857b9-6498-48c5-9145-c6c7a4a04baa {"md5": "86f849fc2b060f97c60510e5d670c11c", "pid": "027768678", "note": [{"label": ["France (Sud) ; Laval RVM, 1996-02"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027768678", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11974022k", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040714039", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172332341", "source": "VIAF"}], "variant_access_point": ["France du sud", "France méridionale", "Midi (France)", "Sud de la France"], "authorized_access_point": "France (sud)"} 1 -2024-07-16 19:51:24.742957 2024-07-16 19:51:24.74299 ec9819bf-c9b7-4567-8918-b6f46e6e8027 {"md5": "edcef52c2207c2ed8c03e812344aee65", "pid": "261121162", "note": [{"label": ["Saint-Léonard de jadis et de naguère / Barthélémy Gillioz, 2021", "https://www.st-leonard.ch/index.php/en-bref, 2022-03-22"], "noteType": "dataSource"}, {"label": ["Commune située dans le canton du Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261121162", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/102164959931224022033", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)954696867", "source": "GND"}], "authorized_access_point": "Saint-Léonard (Valais, Suisse)"} 1 -2024-07-16 19:51:28.04759 2024-07-16 19:51:28.047598 468f7afb-0feb-4ea0-8cf5-eb8cd89f2052 {"md5": "5eef1e9c914c82ba5d0a269b1dbfe737", "pid": "25887421X", "note": [{"label": ["https://fr.wikipedia.org/wiki/District_des_Franches-Montagnes"], "noteType": "dataSource"}, {"label": ["Suisse, canton de Jura"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25887421X", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04259634", "source": "GND"}], "authorized_access_point": "Franches-Montagnes (Suisse)"} 1 -2024-07-16 19:51:28.292719 2024-07-16 19:51:28.292746 875fc8bf-9e05-4591-871a-bcc5e2dcfc12 {"md5": "64aea29bb1ee34ad68ec960f56b698dd", "pid": "027705781", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Rhodanien, Sillon (France)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027705781", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119691089", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)041037766", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041037766", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173745158", "source": "VIAF"}], "authorized_access_point": "Rhône, Vallée du"} 1 -2024-07-16 19:51:29.623794 2024-07-16 19:51:29.623819 f9475d7e-bdad-417a-a1eb-1eb77cfe7bcb {"md5": "280155536c821eac8382978909f0ec8b", "pid": "027524329", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027524329", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119546266", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040713326", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173309353", "source": "VIAF"}], "variant_access_point": ["Carolingien (empire)"], "authorized_access_point": "Empire carolingien"} 1 -2024-07-16 19:51:29.884625 2024-07-16 19:51:29.884649 d5c66526-b63e-4868-90c7-2754d678d425 {"md5": "83596dd4aa3a366606041cce503e0593", "pid": "263837920", "note": [{"label": ["Souvenirs d'un glacier / Corinne Vionnet, 2019", "https://www.larousse.fr/encyclopedie/divers/glacier_du_Rh%C3%B4ne/140851, 2022-08-10"], "noteType": "dataSource"}, {"label": ["Glacier d'où le Rhône prend sa source ; situé dans le Haut-Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263837920", "source": "IDREF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Glacier_du_Rhône", "source": "WIKIPEDIA"}, {"type": "bf:Nbn", "value": "(DE-101)041170008", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/315125827", "source": "VIAF"}], "variant_access_point": ["Rhône (Suisse ; glacier)", "Glacier du Rhône (Suisse)", "Rottengletscher (Suisse)", "Rhonegletscher (Suisse)"], "authorized_access_point": "Rhône, Glacier du (Suisse)"} 1 -2024-07-16 19:51:30.12176 2024-07-16 19:51:30.121767 a13d527f-f870-429b-8a12-1b7aed3ce198 {"md5": "92e54d5303cd7fab20b65171186faf5b", "pid": "264406095", "note": [{"label": ["Passage de la Tête Noire, Vallée du Trient, 1863", "https://fr.wikipedia.org/wiki/Vall%C3%A9e_du_Trient, 2022-09-15"], "noteType": "dataSource"}, {"label": ["Vallée située dans le Bas-Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264406095", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/247827636", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)955884152", "source": "GND"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Vallée_du_Trient", "source": "WIKIPEDIA"}], "variant_access_point": ["Vallée du Trient (Valais, Suisse)"], "authorized_access_point": "Trient, Vallée du (Valais, Suisse)"} 1 -2024-07-16 19:51:31.669409 2024-07-16 19:51:31.669433 fcb3810f-64a7-4ec9-acc0-f8d4cd0d06f3 {"md5": "6a1ac1ea5b195a2e89bc9bcf0810e5ec", "pid": "027224406", "note": [{"label": ["IFLA, Names of states, 1981. GLU, 1991", "Laval RVM, 1996-02"], "noteType": "dataSource"}, {"label": ["Voir aussi la subdivision Et l'Espagne aux personnes et collectivités"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Ibérique, Péninsule"}, {"authorized_access_point": "Pays de l'Union européenne"}, {"authorized_access_point": "Pays de langue espagnole"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027224406", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040559645", "source": "GND"}, {"type": "uri", "value": "http://d-nb.info/gnd/4055964-6", "source": "GND"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Spain_(groupe)", "source": "WIKIPEDIA"}, {"type": "uri", "value": "http://viaf.org/viaf/147947476", "source": "VIAF"}], "variant_access_point": ["España"], "authorized_access_point": "Espagne"} 1 -2024-07-16 19:51:30.383163 2024-07-16 19:51:30.38319 cb40b83e-3f9f-4742-abce-7493715353f9 {"md5": "49bd031ced726c54530fdb5dbed8effe", "pid": "027237664", "note": [{"label": ["Méditerranée, Région de la ; Laval RVM, 1993-02", "Ecology, biogeography and management of Pinus halepensis and P. brutia forest ecosystems in the Mediterranean Basin ; ISBN9057820552"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les ouvrages qui traitent des îles et des régions riveraines de la Méditerranée"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Afrique du Nord"}, {"authorized_access_point": "Europe du Sud"}, {"authorized_access_point": "Méditerranée, Îles de la"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027237664", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11932344d", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4074900-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040749002", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173035680", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Bassin_méditerranéen", "source": "WIKIPEDIA"}], "relation_pid": {"type": "redirect_from", "value": "059863188"}, "variant_access_point": ["Bassin méditerranéen", "Méditerranée (mer ; région)", "Méditerranée, Pays de la", "Méditerranéens, Pays", "Pays de la Méditerranée", "Pays méditerranéens", "Régions méditerranéennes", "Région méditerranéenne"], "authorized_access_point": "Méditerranée (région)"} 1 -2024-07-16 19:51:30.63052 2024-07-16 19:51:30.630559 d38ffdbc-3f1f-4056-8afd-75403bf3ecb5 {"md5": "a60b0cb6270e8050729f73551948ee51", "pid": "027225488", "note": [{"label": ["Names of states / IFLA, 1981. Laval RVM, 1983"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Amérique du Nord"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027225488", "source": "IDREF"}, {"type": "uri", "value": "https://catalogue.bnf.fr/ark:/12148/cb119313712", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)000339784", "source": "GND"}, {"type": "uri", "value": "http://d-nb.info/gnd/33978-7", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/421148574296124430003", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "155744879"}, "variant_access_point": ["États-Unis d'Amérique", "Etats Unis", "United States", "United States of America", "US", "USA"], "authorized_access_point": "États-Unis"} 1 -2024-07-16 19:51:30.891419 2024-07-16 19:51:30.891435 0f4c6a08-e636-48ae-b5e9-df9faa161a00 {"md5": "0be74c406b2b5e243d0c730dcb7bb680", "pid": "027224678", "note": [{"label": ["Europe de l'Est ; Laval RVM, 1995-02"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les ouvrages qui traitent de la partie de l'Europe située à l'est de l'Allemagne et de l'Autriche jusqu'à l'Oural, ou des anciennes démocraties populaires de l'Europe orientale (y compris la RDA). Les ouvrages qui traitent de la région formée par les bassins du Rhin, de l'Elbe, de l'Oder et du Danube jusqu'aux Portes de Fer se trouvent sous la vedette Europe centrale"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "related": [{"authorized_access_point": "Pays slaves"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027224678", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11931303k", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4075739-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040757390", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/248539062", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Europe_de_l'Est", "source": "WIKIPEDIA"}], "variant_access_point": ["Europe (est)", "Europe centrale et orientale", "Europe orientale", "Pays d'Europe centrale et orientale", "PECO"], "authorized_access_point": "Europe de l'Est"} 1 -2024-07-16 19:51:31.120597 2024-07-16 19:51:31.120602 5b5eb7d6-9db3-437a-a7e6-12cf321b8b28 {"md5": "14c72f6bff502f85b9b4986f864b0ef1", "pid": "027254755", "note": [{"label": ["IFLA, Names of states, 1981. GLU"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les documents qui traitent de la Turquie dans ses frontières actuelles, ou de la seule Anatolie (terme qui pour les Turcs désigne toute la Turquie d'Asie). Les documents sur l'ensemble de la Turquie avant 1922 sont sous la vedette Empire ottoman ; ceux sur l'Anatolie antique et byzantine sont sous la vedette Asie mineure"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Et la Turquie aux collectivités, familles et personnes"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Moyen-Orient"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027254755", "source": "IDREF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4061163-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040611639", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/175126574", "source": "VIAF"}], "variant_access_point": ["Anadolu (Turquie)", "Anatolie (Turquie)", "Türkiye"], "authorized_access_point": "Turquie"} 1 -2024-07-16 19:51:31.378106 2024-07-16 19:51:31.378143 370958b0-7e2f-4c16-901d-ff2fde15039e {"md5": "1c6b7130b66849b21f1fed106c597327", "pid": "027263711", "note": [{"label": ["IFLA, Names of states, 1981. GLU, 1991", "Laval RVM, 1997-02. Marrākuš ; GKD, 1994-05"], "noteType": "dataSource"}, {"label": ["Voir aussi la subdivision Et le Maroc aux personnes et collectivités"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique du Nord"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027263711", "source": "IDREF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4037680-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04037680X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/6606148574280324430001", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Maróc", "source": "WIKIPEDIA"}], "variant_access_point": ["Al-Maghrib al- Aqṣā", "Al Maghreb Al Aqsa", "Chérifien, Empire", "Empire chérifien", "Marruecos", "Марокко", "Marokko"], "authorized_access_point": "Maroc"} 1 -2024-07-16 19:51:35.058878 2024-07-16 19:51:35.058898 1f2ad8bb-eeaf-4a0b-85cc-c3327f3ece4f {"md5": "25dfb2efd760f151c22517bd63973b21", "pid": "02725030X", "note": [{"label": ["IFLA, Names of states, 1981. SY, 1990/1991"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Benelux"}, {"authorized_access_point": "Pays de l'Union européenne"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02725030X", "source": "IDREF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4005406-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040054063", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/7718148574367424430004", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Belgium_(village_du_Wisconsin)", "source": "WIKIPEDIA"}], "variant_access_point": ["Belgie͏̈", "Belgien", "Pays-Bas méridionaux", "Pays-Bas autrichiens", "Pays-Bas espagnols", "Südliche Niederlande", "Zuidelijke Nederlanden"], "authorized_access_point": "Belgique"} 1 -2024-07-16 19:51:42.578297 2024-07-16 19:51:42.578308 ce94e997-c47a-4173-ba64-ea91114f5c85 {"md5": "aadc4f6bb0da6d1325e76fb6c0bde95a", "pid": "027429261", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "related": [{"authorized_access_point": "Saint Point, Lac de (France)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027429261", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11947260s", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4091200-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040912000", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/3231148574348624430008", "source": "VIAF"}], "authorized_access_point": "Doubs (cours d'eau)"} 1 -2024-07-16 19:51:42.850361 2024-07-16 19:51:42.850378 2b90f5ee-e626-4663-b048-cb41e1f2ffa2 {"md5": "5a5f0ff2dc0d3fbaa5a667067e73b447", "pid": "027223736", "note": [{"label": ["Autorité matière / BPI, 1980. BN ACO"], "noteType": "dataSource"}, {"label": ["Les ouvrages qui traitent de la partie orientale de l'Allemagne (dans les frontières de la période considérée) avant 1949 ou depuis 1990 se trouvent sous la vedette Allemagne (est)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027223736", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11931234k", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040118908", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/268607483", "source": "VIAF"}], "variant_access_point": ["Allemagne (RDA)", "Allemagne de l'Est", "Allemande, République démocratique", "DDR", "Deutsche Demokratische Republik", "Deutschland (DDR)", "RDA", "République démocratique allemande"], "authorized_access_point": "Allemagne (République démocratique)"} 1 -2024-07-16 19:51:43.061002 2024-07-16 19:51:43.061014 3c63e695-531b-44ab-b12f-a6a00e857d07 {"md5": "8b5f28d47a4a6edfbc29adbd0111b078", "pid": "027251551", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Italie (sud)"}, {"authorized_access_point": "Méditerranée, Îles de la"}, {"authorized_access_point": "Italie - Régions"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027251551", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11933486v", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040551938", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/128149106013968490737", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Sicile", "source": "WIKIPEDIA"}], "variant_access_point": ["Sicile", "Sicile (Royaume)", "Sicilia (Italie)", "Trinacrie", "Trinacria"], "authorized_access_point": "Sicile (Italie)"} 1 -2024-07-16 19:51:43.280714 2024-07-16 19:51:43.280725 3e5040f1-d4eb-4a28-805e-b7d2b6bcd032 {"md5": "6504d4ff2db6728c95ecc3472b973ac5", "pid": "027230309", "note": [{"label": ["Names of states / IFLA, 1981. Pays et capitales du monde / IGN, 1985. Manuel de l'Unesco, 1985"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique occidentale"}], "related": [{"authorized_access_point": "Moronou (Royaume)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027230309", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040144267", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/164154015337309310002", "source": "VIAF"}], "variant_access_point": ["Côte-d'Ivoire"], "authorized_access_point": "Côte d'Ivoire"} 1 -2024-07-16 19:51:43.494758 2024-07-16 19:51:43.494772 bd4bddca-b223-498b-a4e4-96241d6edbf0 {"md5": "b7876c3257c100ec68d4dc1237343654", "pid": "027236668", "note": [{"label": ["GLU"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027236668", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11932254f", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040359190<", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/124321959", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Lisbonne", "source": "WIKIPEDIA"}], "variant_access_point": ["Al-Uchbūna (Portugal)", "Felicitas Julia (ville ancienne)", "Lisboa (Portugal)", "Olisipo (ville ancienne)"], "authorized_access_point": "Lisbonne (Portugal)"} 1 -2024-07-16 19:51:43.69129 2024-07-16 19:51:43.691295 04fa09c5-aaeb-4f20-86aa-8b8c7556eaa6 {"md5": "b40f19f491375095c03a6112eed148b5", "pid": "028179420", "note": [{"label": ["GDEL. SY 1990/91"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028179420", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120066503", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4068041-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04068041X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/140174177", "source": "VIAF"}], "authorized_access_point": "Zurich (Suisse ; canton)"} 1 -2024-07-16 19:51:43.892063 2024-07-16 19:51:43.892073 bc4d09b0-ecb2-4827-9716-8bdeb88159ca {"md5": "1d4e35afa607c819d598a7e763213972", "pid": "027259285", "note": [{"label": ["GLU", "Laval RVM, 1995-08. Alpen ; SWD, 1995-04"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les ouvrages qui traitent du massif des Alpes ou de l'ensemble de la région alpine (massif et régions périphériques)"], "noteType": "general"}, {"label": ["Voir aussi aux différentes parties des Alpes, par ex. Alpes (Autriche), Alpes (ouest)"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Alpes (Allemagne)"}, {"authorized_access_point": "Alpes (Autriche)"}, {"authorized_access_point": "Alpes (Italie)"}, {"authorized_access_point": "Alpes (France)"}, {"authorized_access_point": "Alpes (Slovénie)"}, {"authorized_access_point": "Alpes (Suisse)"}, {"authorized_access_point": "Alpes (Liechtenstein)"}, {"authorized_access_point": "Alpes (Monaco)"}, {"authorized_access_point": "Alpes (Nord)"}, {"authorized_access_point": "Alpes (centre)"}, {"authorized_access_point": "Alpes (est)"}, {"authorized_access_point": "Alpes (ouest)"}, {"authorized_access_point": "Alpes (Sud)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027259285", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11934036f", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040013286", "source": "GND"}, {"type": "uri", "value": "http://d-nb.info/gnd/4001328-5", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/148144928888154441142", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Alpes", "source": "WIKIPEDIA"}], "variant_access_point": ["Alpen", "Alpes (chaîne)", "Alpes (massif)", "Alpes (région)", "Alpi", "Alpok", "Alpin, Arc", "Arc alpin", "Europe alpine"], "authorized_access_point": "Alpes"} 1 -2024-07-16 19:51:45.185805 2024-07-16 19:51:45.18583 4826e8d6-a14f-467d-a743-d9fa67f54597 {"md5": "68ae9405a6c82333df0cce16f7a09c25", "pid": "027266257", "note": [{"label": ["Moreau", "Laval RVM, 2001-01"], "noteType": "dataSource"}, {"label": ["Ancienne province de France, la Provence historique a formé en 1790 les trois départements des Bouches-du-Rhône, du Var et des Basses-Alpes (Alpes-de-Haute-Provence), auxquels s'est rajouté le département du Vaucluse, formé en 1793 par Avignon et le Comtat Venaissin. La Provence géographique, plus vaste que l'ancienne province, est une région naturelle délimitée par le Rhône, la Drôme, la vallée de l'Ubaye, les Alpes maritimes et la mer"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Et la Provence aux collectivités, familles et personnes"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027266257", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11934548t", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4047564-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040475646", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/147742069", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Provence", "source": "WIKIPEDIA"}], "variant_access_point": ["Provence", "Provence (Comté)"], "authorized_access_point": "Provence (France)"} 1 -2024-07-16 19:51:45.468967 2024-07-16 19:51:45.468985 6df48dc4-0816-4e55-84d8-49b1244e0a4e {"md5": "2026bfc1f21983e82f2749f2f9300e8b", "pid": "027350789", "note": [{"label": ["GLU. Encycl. universalis, 1989, 20, 642-661", "Laval RVM, 1997-02"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les ouvrages sur la région formée par le Danemark, la Norvège et la Suède, éventuellement étendue à la Finlande et à l'Islande"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Et la Scandinavie aux personnes et collectivités"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europe du Nord"}, {"authorized_access_point": "Pays de langues germaniques"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027350789", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15238529v", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040552098", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172765142", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Scandinavie", "source": "WIKIPEDIA"}], "variant_access_point": ["Conseil nordique, Pays du", "États scandinaves", "Fennoscandie", "Nordiques, Pays", "Pays du Conseil nordique", "Pays nordiques", "Pays scandinaves", "Scandinaves, Pays"], "authorized_access_point": "Scandinavie"} 1 -2024-07-16 19:51:45.709121 2024-07-16 19:51:45.70913 e37de233-0fcd-41e4-9dbb-96fdc6fdea60 {"md5": "62a171741b815ad55ed0c3934ffb3228", "pid": "027401901", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent du continent océanien, constitué par l'Australie, la Nouvelle-Zélande et les archipels de Mélanésie (y compris la Nouvelle-Guinée), Micronésie et Polynésie. Les ouvrages sur l'ensemble des îles de l'océan Pacifique se trouvent sous la vedette Pacifique, Îles du"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pacifique (région)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027401901", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15364628m", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040442578", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/312565208", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Océanie", "source": "WIKIPEDIA"}], "authorized_access_point": "Océanie"} 1 -2024-07-16 19:51:53.068792 2024-07-16 19:51:53.068802 3d4658b3-6037-4e43-b52a-7db7bf25c943 {"md5": "2716c5701adfcb5763c00877aacdd1a6", "pid": "02726369X", "note": [{"label": ["IFLA, Names of states, 1981 ; Pays et capitales du monde / IGN, 1986"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de l'île d'Irlande et/ou de la République d'Irlande. Les ouvrages qui traitent de la partie de l'Ulster demeurée britannique en 1921 se trouvent sous Irlande du Nord"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Britanniques, Îles"}, {"authorized_access_point": "Pays de l'Union européenne"}, {"authorized_access_point": "Pays celtiques"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02726369X", "source": "IDREF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4027667-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040276678", "source": "GND"}], "variant_access_point": ["Éire", "Ireland"], "authorized_access_point": "Irlande"} 1 -2024-07-16 19:52:37.230993 2024-07-16 19:52:37.231003 734dff6e-f0d6-4117-bd7d-0c4e10f5e7cf {"md5": "99ab64574732f58131461a1198b4f22f", "pid": "030575257", "note": [{"label": ["GDEL. SY 1990/91"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Genevois"}, {"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030575257", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040201384", "source": "GND"}, {"type": "uri", "value": "http://d-nb.info/gnd/4020138-7", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/159388627", "source": "VIAF"}], "authorized_access_point": "Genève (Suisse ; canton)"} 1 -2024-07-16 19:51:53.307969 2024-07-16 19:51:53.307989 8aad575f-ed2b-4045-8d0d-cdf4e6c7f32c {"md5": "e93db978958b0789659e18b9813a40f1", "pid": "027356949", "note": [{"label": ["IFLA, Names of states, 1981. BN Service arabe", "Laval RVM, 1997-02. Sūrīyā ; GKD, 1994-05"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Proche-Orient"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027356949", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040587940", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/154701530", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Syrie", "source": "WIKIPEDIA"}], "variant_access_point": ["سوريا", "Sūriyā", "سورية", "Sūriyaẗ", "سوريه", "Sūrīyah"], "authorized_access_point": "Syrie"} 1 -2024-07-16 19:51:54.548651 2024-07-16 19:51:54.548663 6e1f48f6-d601-4229-86b4-609f67e82edb {"md5": "0a5471118ebedb167ca1b6979e940270", "pid": "027263487", "note": [{"label": ["GLU"], "noteType": "dataSource"}, {"label": ["L'Amazonie correspond aux bassins moyen et inférieur de l'Amazone"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Amérique du Sud"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027263487", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040016269", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173418487", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Amazonie_(Ngong)", "source": "WIKIPEDIA"}], "authorized_access_point": "Amazonie"} 1 -2024-07-16 19:51:54.799248 2024-07-16 19:51:54.799268 7dd5c95c-945f-4e96-a52c-4f9ffdffe737 {"md5": "238c76ca91fddb9d484106ad2a9ff519", "pid": "027408647", "note": [{"label": ["GLU"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027408647", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15239961p", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040763102", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/153543031", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Prague", "source": "WIKIPEDIA"}], "variant_access_point": ["Prague", "Praha (République tchèque)"], "authorized_access_point": "Prague (République tchèque)"} 1 -2024-07-16 19:51:55.096452 2024-07-16 19:51:55.096473 33e92444-c036-48ac-8555-78b027a103a0 {"md5": "57b08ae67e61c49ed024539a506baa8e", "pid": "027322998", "note": [{"label": ["Names of states / IFLA, 1981. LCSH, 1985"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique orientale anglophone"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027322998", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040302369", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/869148574256524430002", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Kenya_(Lubumbashi)", "source": "WIKIPEDIA"}], "authorized_access_point": "Kenya"} 1 -2024-07-16 19:51:55.367124 2024-07-16 19:51:55.367134 343baec4-e452-4a2a-a60c-7aadfcb29876 {"md5": "4dbf7608bb4207e46fc899dce7473146", "pid": "031649424", "note": [{"label": ["GeoNames (2018-06-27)"], "noteType": "dataSource"}, {"label": ["Aix-la-Chapelle est une ville d'Allemagne située dans le Land de Rhénanie-du-Nord-Westphalie. Elle se situe à 5 km de la jonction des frontières de l'Allemagne, des Pays-Bas et de la Belgique. C'est la ville la plus à l'ouest de l'Allemagne", "Coordonnées en degrés séxagésimaux : N 50°46′36″ / E 6°05′00″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rhénanie du Nord-Westphalie (Allemagne)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031649424", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12282480h", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040000079", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/124330404", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "228265843"}, "variant_access_point": ["Aachen", "Aken", "Akwizgran", "Aquisgrán", "Aquisgrano"], "authorized_access_point": "Aix-la-Chapelle (Allemagne ; région)"} 1 -2024-07-16 19:51:55.590559 2024-07-16 19:51:55.590573 22a9a59c-1b85-435d-a976-ce4cc0884705 {"md5": "f176e3296f3dad69c215812dc0844b91", "pid": "185110363", "note": [{"label": ["Carte nationale de la Suisse 1:50 000. 273 : Montana / Service topographique fédéral, 1974", "https://fr.wikipedia.org/, 2020-11-30"], "noteType": "dataSource"}, {"label": ["Ancienne commune du canton du Valais, située dans le district de Sierre. Elle fusionna le 1er janvier 2017 avec Mollens, Chermignon et Randogne pour former Crans-Montana."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/185110363", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb160481737", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/131144648658835357814", "source": "VIAF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4275006-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042750067", "source": "GND"}, {"type": "bf:Nbn", "value": "Q70186", "source": "WIKIDATA"}], "relation_pid": {"type": "redirect_from", "value": "250838443"}, "authorized_access_point": "Montana (Valais, Suisse)"} 1 -2024-07-16 19:51:56.892571 2024-07-16 19:51:56.892582 049f5003-95a1-429f-ace2-ac448b07cff7 {"md5": "0eddcb032da4278d7bbf6b80a381b719", "pid": "027502368", "note": [{"label": ["GLU", "Laval RVM, 2001-01"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les documents qui traitent de la partie de l'Asie située à l'est de l'Inde et au sud de la Chine, comprenant l'Indochine (Birmanie, Cambodge, Laos, Malaisie, Thaïlande et Viet-Nam) et l'Insulinde (Brunéi, Indonésie, Malaisie orientale, Philippines et Singapour)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Asie orientale"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027502368", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040584488", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/255510483", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Asie_du_Sud-Est", "source": "WIKIPEDIA"}], "variant_access_point": ["ASEAN, Pays de l'", "Asie (sud-est)", "Asie sud-orientale", "Association des nations de l'Asie du Sud-Est, Pays de l'", "Pays de l'ASEAN", "Pays de l'Association des nations de l'Asie du Sud-Est", "Sud-Est asiatique"], "authorized_access_point": "Asie du Sud-Est"} 1 -2024-07-16 19:51:57.102829 2024-07-16 19:51:57.10284 a53354b0-12d2-4227-ab5c-5c4e93123e56 {"md5": "3b235193ed1de3a125dae22d380760e5", "pid": "032861621", "note": [{"label": ["GLU. Österreich-Ungarn ; SWD, 1991"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les ouvrages qui traitent de l'ensemble de l'Autriche-Hongrie (1867-1918). Les ouvrages qui traitent plus particulièrement des parties autrichienne et hongroise de l'empire se trouvent sous les vedettes Autriche et Hongrie (suivies des subdivisions appropriées)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europe du Centre-Est"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032861621", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb123809301", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040756130", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/38146285364515371330", "source": "VIAF"}], "variant_access_point": ["Austro-hongroise, Monarchie", "Double Monarchie", "Empire austro-hongrois", "Monarchie austro-hongroise", "österreich-Ungarn", "Osztrák-Magyar Monárchia"], "authorized_access_point": "Autriche-Hongrie"} 1 -2024-07-16 19:51:57.365152 2024-07-16 19:51:57.365166 16461aec-6e61-4fa7-8633-be273097592d {"md5": "42eb923bc72cf150dc09cd103ef08313", "pid": "027442128", "note": [{"label": ["IFLA, Names of states, 1981. Pays et capitales du monde / IGN, 1986. Laval RVM, 1995-02"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent du territoire du Rwanda, avant ou depuis son indépendance en 1962. Les ouvrages sur le Ruanda-Urundi, qui comprenait à l'époque coloniale le territoire des actuels Rwanda et Burundi, se trouvent sous la vedette Ruanda-Urundi"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique centrale"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027442128", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040769100", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/3125148574307124430008", "source": "VIAF"}], "variant_access_point": ["Ruanda"], "authorized_access_point": "Rwanda"} 1 -2024-07-16 19:51:57.574716 2024-07-16 19:51:57.57473 79a8978a-e516-425a-9c69-982516131576 {"md5": "9284327d57ff34837b40a5cc50d64536", "pid": "027472906", "note": [{"label": ["GDEL. Laval RVM, 1991-02"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de l'empire byzantin, de 395 à 1453. Les ouvrages qui traitent de la ville de Byzance avant 330 se trouvent sous la vedette Byzance"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Orient"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027472906", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040092569", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/149804778", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Empire_byzantin", "source": "WIKIPEDIA"}], "variant_access_point": ["Byzantin, Empire", "Empire d'Orient", "Empire romain d'Orient", "Orient, Empire d'"], "authorized_access_point": "Empire byzantin"} 1 -2024-07-16 19:52:13.348431 2024-07-16 19:52:13.348439 68f52192-43e4-4914-a484-1218e12b3927 {"md5": "168456b1c3f70d88e62cb7825e56ba8a", "pid": "027585190", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "related": [{"authorized_access_point": "Pompéi (ville ancienne)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027585190", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119593586", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040467554", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/316884438", "source": "VIAF"}], "authorized_access_point": "Pompéi (Italie)"} 1 -2024-07-16 19:52:13.564246 2024-07-16 19:52:13.564253 996df500-f99d-4da4-ade6-17f5c4d1ccf1 {"md5": "e23cf57c69aa4106febfd3e5a19b6e7f", "pid": "237279614", "note": [{"label": ["Source manuscrite : Journal de voyage / par MM. Regnault et Sauvage, Élèves ingénieurs, 1835 (manuscrit conservé à la bibliothèque de l’École des mines de Paris MINES ParisTech sous la cote J 1835 (43) )", "GeoNames (2019-07-26)"], "noteType": "dataSource"}, {"label": ["Commune du canton du Valais (Suisse).", "N 46°19′02″ / E 7°38′03″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/237279614", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/241846356", "source": "VIAF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4393124-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)946153248", "source": "GND"}], "variant_access_point": ["Leuk (Valais, Suisse)", "Louèche (Valais, Suisse)", "Loèche-Ville (Valais, Suisse)"], "authorized_access_point": "Loèche (Valais, Suisse)"} 1 -2024-07-16 19:07:13.940804 2024-07-16 19:52:13.801164 a4d7b873-414f-4945-b059-36604815955b {"md5": "ea5330b04fb1837acea41d85b002ba4c", "pid": "271323590", "note": [{"label": ["Coordonnées géographiques : E 7°36' / N 47°33'"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271323590", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb152399861", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040046176", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/3925169442785525340002", "source": "VIAF"}], "variant_access_point": ["Bâle-Ville (Suisse)", "Basel-Stadt (Suisse)", "Basilea Citta (Suisse)", "Basilea", "Basilia", "Basilea Rauracorum", "Colonia Munatiana", "Athenae Rauracae", "Bazela", "Baesula", "Basula", "Baille", "Baalle", "Basle"], "authorized_access_point": "Bâle (Bâle-Ville, Suisse)"} 2 -2024-07-16 19:52:15.383367 2024-07-16 19:52:15.383382 176166c6-3938-4fbd-a8c4-0614a3ee0556 {"md5": "dfc583a3a820e4874eaf2e436aab62b5", "pid": "276534921", "note": [{"label": ["Coordonnées géographiques : E 43°20' - E 50°15' / S 12° - S 25°30'"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276534921", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15325769w", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040744256", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/146036991", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "027238180"}, "variant_access_point": ["République Malgache (1960-)", "Malgache, République (1960-)", "Madagascar (1960-)"], "authorized_access_point": "Madagascar"} 1 -2024-07-16 19:52:15.631305 2024-07-16 19:52:15.631326 2e234a90-8297-4dac-b8bf-7829c0281965 {"md5": "9169be1795b476a90d867f8ce3c61603", "pid": "027342395", "note": [{"label": ["GLU. SY 1994-95"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de la Russie jusqu'en 1917, ou de la République socialiste fédérative soviétique de Russie (1918-1991), ou de l'actuelle Fédération de Russie. Les ouvrages qui traitent de l'ensemble des républiques socialistes soviétiques de 1917 à 1991 (bien que l'URSS n'ait été fondée officiellement que le 30-12-1922) se trouvent sous la vedette URSS"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Et la Russie aux personnes et aux collectivités"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pays de la CEI"}, {"authorized_access_point": "Pays slaves"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027342395", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119405184", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040768996", "source": "GND"}, {"type": "uri", "value": "https://d-nb.info/gnd/4076899-5", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/3147270312635700007", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Empire_russe", "source": "WIKIPEDIA"}], "variant_access_point": ["Empire russe", "Fédération de Russie", "Moscovie", "Rossia", "RSFSR", "Russie (Empire)", "Russie (Fédération)", "Russie (République socialiste fédérative soviétique)"], "authorized_access_point": "Russie"} 1 -2024-07-16 19:52:15.922752 2024-07-16 19:52:15.922773 3d4f273c-7477-4993-b73e-5ffe8d743f98 {"md5": "0c79969cec313b5063fa3275a09517e4", "pid": "027244482", "note": [{"label": ["Laval RVM, 1992-02"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les ouvrages qui traitent de la région du Proche-Orient comprise entre le Liban, la Mer Morte, la Méditerranée et le désert de Syrie, correspondant à l'ancien pays de Canaan, puis aux royaumes d'Israe͏̈l et de Juda et actuellement à l'État d'Israe͏̈l ainsi qu'aux divers territoires à juridiction contestée. Les ouvrages sur un territoire en particulier se trouvent à son nom propre"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Proche-Orient"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027244482", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11932928t", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4044381-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040443817", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/138926424", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Palestine_(Arkansas)", "source": "WIKIPEDIA"}], "variant_access_point": ["Terre sainte", "فلسطين", "Filasṭīn"], "authorized_access_point": "Palestine"} 1 -2024-07-16 19:52:16.170454 2024-07-16 19:52:16.170476 9b15923f-a207-4731-b40c-6a9264059299 {"md5": "3f374de115c2e23964659484009a8e65", "pid": "027249654", "note": [{"label": ["IFLA, Names of states, 1981. GLU, 1991", "Laval RVM, 1997-02"], "noteType": "dataSource"}, {"label": ["Voir aussi la subdivision Et la Suisse aux personnes et collectivités"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europe centrale"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027249654", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15241146v", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11933332n", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040538818", "source": "GND"}, {"type": "uri", "value": "https://d-nb.info/gnd/4053881-3", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/3896148574351624430005", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Suisse_(Moselle)", "source": "WIKIPEDIA"}], "variant_access_point": ["Confédération helvétique", "Confederazione svizzera", "Helvetia", "Helvétie", "Schweiz", "Schweizerische Eidgenossenschaft", "Svizra", "Svizzera"], "authorized_access_point": "Suisse"} 1 -2024-07-16 19:52:16.399905 2024-07-16 19:52:16.399914 47764638-d38e-480e-a6f3-699a96d0c6c2 {"md5": "84214c81ce63e5101f07b69a5d37ab0e", "pid": "027250679", "note": [{"label": ["IFLA, Names of states, 1981. GLU, 1991", "Laval RVM, 1997-02"], "noteType": "dataSource"}, {"label": ["Bas- et Haut-Canada : 1791-1840 ; Province du Canada ou Canada-Uni (1840-1867) ; Dominion du Canada (depuis le 01-07-1867)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Amérique du Nord"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Région frontalière canado-américaine"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027250679", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120149708", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4029456-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040294560", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/259064546", "source": "VIAF"}], "variant_access_point": ["Amérique du Nord britannique", "British North America", "Canada (Dominion)", "Canada (Province)", "Canada-Uni"], "authorized_access_point": "Canada"} 1 -2024-07-16 19:52:16.644736 2024-07-16 19:52:16.644773 3e4d05d5-dffe-4f0e-87c7-c7c8d9a2bb90 {"md5": "39362e8dd413050ce08478a90e123fbf", "pid": "027437221", "note": [{"label": ["GDEL. Laval RVM suppl., 1988-03"], "noteType": "dataSource"}, {"label": ["Emploi direct en subdivision : [Sujet] -- Suisse romande"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse"}, {"authorized_access_point": "Europe francophone"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027437221", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119478864", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)041940458", "source": "GND"}, {"type": "uri", "value": "http://d-nb.info/gnd/4194045-3", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172982288", "source": "VIAF"}], "variant_access_point": ["Suisse de langue francaise", "Romandie"], "authorized_access_point": "Suisse romande"} 1 -2024-07-16 19:52:17.952314 2024-07-16 19:52:17.952331 59ffe23d-b35f-4c9e-9985-70996dda152d {"md5": "c72befb94c45c521892539e15c2ebccc", "pid": "027434141", "note": [{"label": ["GDEL. SY 1990/91"], "noteType": "dataSource"}, {"label": ["Canton suisse"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027434141", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040290433", "source": "GND"}, {"type": "uri", "value": "https://d-nb.info/gnd/4029043-8", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/155481782", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Jūra", "source": "WIKIPEDIA"}], "variant_access_point": ["Jura (canton)"], "authorized_access_point": "Jura (Suisse ; canton)"} 1 -2024-07-16 19:52:19.265138 2024-07-16 19:52:19.265145 7841dc91-397e-4586-95b6-a44f83b58421 {"md5": "86390248ebbd80dcef9d19eff6023c68", "pid": "027801101", "note": [{"label": ["GLU. Laval RVM, 1995-02"], "noteType": "dataSource"}, {"label": ["Voir aussi aux différentes parties de l'Asie, par ex. Asie du Sud-Est", "Voir aussi la subdivision Et l'Asie aux personnes et collectivités"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Eurasie"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027801101", "source": "IDREF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4003217-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040032175", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/4444148574353824430005", "source": "VIAF"}], "authorized_access_point": "Asie"} 1 -2024-07-16 19:52:19.490761 2024-07-16 19:52:19.490771 84646520-0d09-42b3-9d81-1587f59da556 {"md5": "058dc7028c5bd75d355ad2e04a8be0e7", "pid": "027256308", "note": [{"label": ["IFLA, Names of states, 1981. SY 1996-97. Quid, 1989. Le Monde, 13-05-1992", "Laval RVM, 1997-02"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de la Yougoslavie de 1918 à 1992, ou de la République fédérale de Yougoslavie réduite à la Serbie et au Monténégro de 1992 à 2003", "Le Royaume des Serbes, Croates et des Slovènes, constitué le 01-12-1918, prend le nom de Yougoslavie le 03-10-1929 et devient une République le 29-11-1945. Après la sécession de la Croatie, de la Slovénie, de la Bosnie-Herzégovine et de la Macédoine, est proclamée le 27-04-1992 la République fédérale de Yougoslavie comprenant la Serbie et le Monténégro, qui devient le 04-02-2003 la Serbie-et-Monténégro"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Et la Yougoslavie aux personnes et collectivités"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Balkans - 20e siècle"}], "related": [{"authorized_access_point": "Serbie-et-Monténégro"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027256308", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040289664", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/138974509", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/République_fédérative_socialiste_de_Yougoslavie", "source": "WIKIPEDIA"}], "variant_access_point": ["Jugoslavija", "Royaume des Serbes, Croates et Slovènes", "Serbes, Croates et Slovènes, Royaume des", "Yougoslavie (République fédérale)"], "authorized_access_point": "Yougoslavie"} 1 -2024-07-16 19:52:20.740582 2024-07-16 19:52:20.740598 a815e30a-be70-4d08-b64d-c45777ed0f96 {"md5": "74df160ee8b49d85dd243fd2973b35cd", "pid": "027283518", "note": [{"label": ["GLU, 1991", "Laval RVM, 1997-02"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent : de la région qui s'étend de la mer Caspienne à la Mongolie et la Chine du nord-ouest (inclusivement), et du sud de la Sibérie à l'Afghanistan et au nord de l'Iran (inclusivement) ; ou bien des seules 5 républiques ex-soviétiques considérées collectivement"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Afghanistan"}, {"authorized_access_point": "Kazakhstan"}, {"authorized_access_point": "Kirghizistan"}, {"authorized_access_point": "Mongolie"}, {"authorized_access_point": "Ouzbékistan"}, {"authorized_access_point": "Tadjikistan"}, {"authorized_access_point": "Tibet (Chine)"}, {"authorized_access_point": "Turkménistan"}, {"authorized_access_point": "Xinjiang (Chine)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027283518", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11935913h", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040794873", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/170431196", "source": "VIAF"}], "variant_access_point": ["Asie (centre)", "Asie centrale (CEI)", "Asie centrale russe", "Asie centrale soviétique", "Turkestan", "Turkestan occidental", "Turkestan russe", "Turkestan chinois", "Tartarie", "Grande Tartarie"], "authorized_access_point": "Asie centrale"} 1 -2024-07-16 19:52:21.006756 2024-07-16 19:52:21.006785 3bb903e3-2daa-482c-b5a5-138ba1d152c7 {"md5": "06f31bfc233ad2600fc2ddf41549062a", "pid": "027316211", "note": [{"label": ["GDEL. Le Monde, 9-10-1991"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de l'ensemble de l'Arménie et/ou de sa seule partie orientale annexée par la Russie en 1828, qui constitue aujourd'hui une république indépendante (référendum du 21-09-1991)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Transcaucasie"}, {"authorized_access_point": "Pays de la CEI"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027316211", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb123844340", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040859312", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/136032216", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Arménie", "source": "WIKIPEDIA"}], "variant_access_point": ["Arménie (République socialiste soviétique)", "Hai͏̈k", "Hayastan"], "authorized_access_point": "Arménie"} 1 -2024-07-16 19:52:22.353142 2024-07-16 19:52:22.353149 94303d1e-b64b-4b7d-ab70-01a6317fcfa6 {"md5": "35c1089c3e81bf17c11760848dcd59bc", "pid": "027267830", "note": [{"label": ["Names of states / IFLA, 1981. SY, 1986/1987. GDEL"], "noteType": "dataSource"}, {"label": ["Cette vedette s'emploie directement en subdivision de lieu", "Région autonome du Danemark depuis le 1-5-1979"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Amérique du Nord"}, {"authorized_access_point": "Arctique"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027267830", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04022113X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/4459148574312624430000", "source": "VIAF"}], "variant_access_point": ["Groenland (Danemark ; île)", "Greenland", "Grønland", "Kalaallit Nunaat"], "authorized_access_point": "Groenland"} 1 -2024-07-16 19:52:22.597387 2024-07-16 19:52:22.597405 e9d708b5-fee3-4477-8f50-6452949e2878 {"md5": "d4b26032294e41b3008f51d0fbd9b688", "pid": "264645081", "note": [{"label": ["Les sobriquets des localités du Valais romand ; Articles historiques sur le Valais ; Histoire du Vieux Chablais / Raphy Rappaz, 1976", "https://www.valais4you.ch/fr/le-valais-en-quelques-mots/habitat, 2022-09-27"], "noteType": "dataSource"}, {"label": ["Partie francophone du canton du Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264645081", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/75166600409218000002", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)993248810", "source": "GND"}, {"type": "bf:Nbn", "value": "Valais romand", "source": "GND"}], "variant_access_point": ["Valais francophone (Suisse)"], "authorized_access_point": "Valais romand (Suisse)"} 1 -2024-07-16 19:52:22.878327 2024-07-16 19:52:22.878345 724be9c9-9019-4c46-a752-9f4352e30364 {"md5": "956dfc25b132d05af33d8d3b80dabd40", "pid": "027236536", "note": [{"label": ["IFLA, Names of states, 1981. GLU"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Proche-Orient"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027236536", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)0403556", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/4134148574352624430002", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Liban_(chanson)", "source": "WIKIPEDIA"}], "variant_access_point": ["Lubnān"], "authorized_access_point": "Liban"} 1 -2024-07-16 19:52:23.138314 2024-07-16 19:52:23.138338 6733dc8e-b802-4235-b0e1-9075f6ed0526 {"md5": "0b49dfaff1531150b0fc3f8bbeb7049d", "pid": "027252388", "note": [{"label": ["IFLA, Names of states, 1981", "Laval RVM, 1996-02"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Amazonie (Pérou)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027252388", "source": "IDREF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4045312-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04045312X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/175126463", "source": "VIAF"}], "variant_access_point": ["Perú"], "authorized_access_point": "Pérou"} 1 -2024-07-16 19:52:26.454299 2024-07-16 19:52:26.454311 7a10349e-fe87-42c0-a966-edde3ff23357 {"md5": "2568896ba3cfb0803dc0a5f599d7f826", "pid": "02724606X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pays de langues germaniques"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02724606X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11933043g", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040703703", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173145199", "source": "VIAF"}], "variant_access_point": ["Pays germanophones", "Régions de langue allemande", "Germanophonie", "Europe germanophone"], "authorized_access_point": "Pays de langue allemande"} 1 -2024-07-16 19:52:26.689471 2024-07-16 19:52:26.689478 0a360d10-628d-4f89-be6f-155cea5da51c {"md5": "d9fc1e611df3488716a376e848a6fd3a", "pid": "114526591", "note": [{"label": ["GDEL", "https://www.vs.ch/web/communes/-/bas-valais, 2022-09-27", "À la découverte de trois régions alpines, une culture : Bas-Valais, vallée d'Aoste, Haute-Savoie - Savoie, 2000"], "noteType": "dataSource"}, {"label": ["Région du Canton du Valais comprenant les districts de Monthey, St-Maurice, Entremont et Martigny"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Valais (Suisse)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/114526591", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb144160064", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040786528", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/51144647641031129112", "source": "VIAF"}], "classification": [{"name": "Géographie de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Valais, Bas- (Suisse)"], "authorized_access_point": "Bas-Valais (Suisse)"} 1 -2024-07-16 19:52:26.949275 2024-07-16 19:52:26.949296 73bd362d-d096-4428-8d8e-bf41daf21c6d {"md5": "72ecc8b6a0ad0092ed2068eb45fd53ef", "pid": "02899275X", "note": [{"label": ["GDEL. SY 1990/91"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02899275X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12071302n", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040519937", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/144820199", "source": "VIAF"}, {"type": "uri", "value": "http://viaf.org/viaf/152454816", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Schaffhouse", "source": "WIKIPEDIA"}], "relation_pid": {"type": "redirect_from", "value": "197672701"}, "variant_access_point": ["Schaffhausen (Suisse ; canton)"], "authorized_access_point": "Schaffhouse (Suisse ; canton)"} 1 -2024-07-16 19:52:27.210348 2024-07-16 19:52:27.210363 88b6c326-69de-4ad1-b855-057de368bfa9 {"md5": "939117550222b3d77f28b6f1c9a731f0", "pid": "027367428", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["Fief constitué au 12e siècle par Thierry, de la maison de Bar-le-Duc, le comté passe ensuite à celle de Montfaucon puis au Wurtemberg (1397) et devient la principauté de Montbéliard. Annexée par la Convention (10 oct. 1793), elle est définitivement réunie à la France par le traité de Lunéville (1801). On l'appelait usuellement Pays de Montbéliard, expression qui est toujours en usage"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Doubs (France)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027367428", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11942447x", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040401499", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/155890847", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Montbéliard", "source": "WIKIPEDIA"}], "variant_access_point": ["Montbéliard (comté)", "Montbéliard (Doubs ; région)", "Montbéliard (principauté)", "Pays de Montbéliard (France)"], "authorized_access_point": "Montbéliard, Pays de (France)"} 1 -2024-07-16 19:52:28.489659 2024-07-16 19:52:28.489663 c3e24077-580c-4bce-be99-b2c0ccb3b05e {"md5": "1113a5baacbd21bd3be2a559ef57c92f", "pid": "027597334", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Etats du Pacifique (Etats-Unis)"}, {"authorized_access_point": "États-Unis (nord-ouest)"}, {"authorized_access_point": "États-Unis (sud-ouest)"}, {"authorized_access_point": "Grand Bassin (États-Unis)"}, {"authorized_access_point": "Grandes Plaines (États-Unis)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027597334", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11960312x", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)041355350", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172385909", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Ouest_américain", "source": "WIKIPEDIA"}], "relation_pid": {"type": "redirect_from", "value": "027597377"}, "variant_access_point": ["États de l'Ouest (États-Unis)", "Far West", "Far Ouest", "Ouest américain"], "authorized_access_point": "États-Unis (ouest)"} 1 -2024-07-16 19:52:28.720668 2024-07-16 19:52:28.720672 2daea254-8acc-43b5-8f96-cf35f6af501e {"md5": "50350d093bcfadfc7d72d8b054419a8c", "pid": "027218856", "note": [{"label": ["GLU, 1991", "BN ACO (en ligne), 1997-05-26. Laval RVM, 1997-02. Deutschland ; SWD, 1995-04 ; GKD, 1994-05"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les ouvrages qui traitent de l'Allemagne dans son ensemble : pays de langue allemande du Saint-Empire, pays de la Confédération germanique, Empire allemand et République fédérale d'Allemagne depuis l'unification du 3 octobre 1990. Les ouvrages sur la RFA de 1949 à 1990 se trouvent sous la vedette Allemagne (République fédérale)", "Attention : seules les collectivités depuis 1990 sont sous la vedette Allemagne ; les collectivités de la période 1871 à 1945 sont sous la vedette Allemagne (1871-1945) ; celles de la période 1945-1949, sous la vedette Allemagne (Zone sous occupation alliée)"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Et l'Allemagne aux personnes et collectivités", "Voir aussi la subdivision Réclamations contre l'Allemagne aux lieux"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europe centrale"}, {"authorized_access_point": "Pays de l'Union européenne"}, {"authorized_access_point": "Pays de langue allemande"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027218856", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11930867z", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/2008993-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)00468687X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173418378", "source": "VIAF"}], "variant_access_point": ["BRD", "Bundesrepublik Deutschland (1990-)", "Deutsches Reich", "Deutschland", "Empire allemand", "Reich allemand", "République fédérale d'Allemagne (1990-)"], "authorized_access_point": "Allemagne"} 1 -2024-07-16 19:52:28.943549 2024-07-16 19:52:28.943562 417af791-ab9a-4626-8449-de300f73bcbe {"md5": "1b37f32cf5e62aafb681f7e333c14080", "pid": "157143392", "note": [{"label": ["Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgenössische Stabsbüreau unter der direktion von Oberst Siegfried veröffentlicht", "https://hls-dhs-dss.ch/fr/articles/008388/2012-01-06, 2022-07-27"], "noteType": "dataSource"}, {"label": ["Partie orientale de la vallée de Viège dans le canton du Valais (Suisse) qui, en amont de Stalden, se subdivise en deux vallées en direction du sud, celles de Saint-Nicolas et de Saas"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157143392", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/125148570562224311120", "source": "VIAF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4105151-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041051513", "source": "GND"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Vallée_de_Saas", "source": "WIKIPEDIA"}], "variant_access_point": ["Saas (Valais, Suisse ; région)", "Saastal (Valais, Suisse)", "Vallée de Saas (Valais, Suisse)"], "authorized_access_point": "Saas, Vallée de (Valais, Suisse)"} 1 -2024-07-16 19:52:29.184372 2024-07-16 19:52:29.184392 aa866d00-dd5f-4ca5-bfbd-967f7dd63dbc {"md5": "d7e13769b5002c0dbc19cfeb1a0647cd", "pid": "027226794", "note": [{"label": ["IFLA, Names of states, 1981. GLU, 1991", "Laval RVM, 1997-02"], "noteType": "dataSource"}, {"label": ["Voir aussi la subdivision Et la France aux personnes et collectivités"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europe francophone"}, {"authorized_access_point": "Pays de l'Union européenne"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027226794", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119314762", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040181456", "source": "GND"}, {"type": "bf:Nbn", "value": "040181456", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/7487148574366524430008", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "078010705"}, "variant_access_point": ["France occidentale"], "authorized_access_point": "France"} 1 -2024-07-16 19:52:29.472813 2024-07-16 19:52:29.472842 916fc359-854b-4dbb-a575-3cf986461b17 {"md5": "9aded22e21b9e41baf1174e7610eeca2", "pid": "085703419", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/085703419", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb14475513s", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040201392", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/55144647634843459675", "source": "VIAF"}], "classification": [{"name": "Géographie de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "914"}], "authorized_access_point": "Genève (Suisse ; région)"} 1 -2024-07-16 19:52:30.828399 2024-07-16 19:52:30.828405 c52100c3-8266-4b39-a814-91226ce70f55 {"md5": "efad1ba39f48169cea18f6dcdce1dbbc", "pid": "027218767", "note": [{"label": ["Pays et capitales du monde / IGN, 1986. IFLA, Names of states, 1981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique du Nord"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027218767", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15238304z", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4001179-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040011798", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/8536148574370824430009", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Algérie", "source": "WIKIPEDIA"}], "relation_pid": {"type": "redirect_from", "value": "256370915"}, "variant_access_point": ["Algérie (République)", "el Djazâir", "République algérienne démocratique"], "authorized_access_point": "Algérie"} 1 -2024-07-16 19:52:32.114405 2024-07-16 19:52:32.114419 c50d7635-6fc6-4b59-8165-a389ac369a43 {"md5": "9dce3b98f74ebae8f59278dc17a1b8c2", "pid": "028567005", "note": [{"label": ["DHGE. Mourre, 1996"], "noteType": "dataSource"}, {"label": ["L'introduction de la Réforme à Bâle en 1529 amena la scission entre la ville réformée et l'évêque catholique, préfiguration de la scission du canton en deux demi-cantons en 1833"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028567005", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120377073", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040802752", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/599144783181696879819", "source": "VIAF"}], "variant_access_point": ["Ancien évêché de Bâle (Suisse)"], "authorized_access_point": "Bâle (Principauté ecclésiastique)"} 1 -2024-07-16 19:52:33.372818 2024-07-16 19:52:33.372845 864a3656-d82d-49ff-9a0a-3d5a68e3e000 {"md5": "e97c9bca0239ced4b53491e7c92f80fc", "pid": "027584763", "note": [{"label": ["Laval RVM, 1996-08"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Afrique francophone"}, {"authorized_access_point": "Amérique francophone"}, {"authorized_access_point": "Europe francophone"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027584763", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11959324w", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040181413", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/13144647641039724008", "source": "VIAF"}], "variant_access_point": ["Pays francophones", "Régions de langue française"], "authorized_access_point": "Pays de langue française"} 1 -2024-07-16 19:52:33.646786 2024-07-16 19:52:33.646806 3f203b54-7879-41bc-8d4e-b2b3f974f107 {"md5": "56fbf8ca890840637cca0e582d2e9e58", "pid": "027468909", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Berne (Suisse ; canton)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027468909", "source": "IDREF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4005783-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04005783", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/5974148574360224430000", "source": "VIAF"}], "authorized_access_point": "Oberland bernois (Suisse)"} 1 -2024-07-16 19:52:33.900292 2024-07-16 19:52:33.9003 fcd5ebca-3740-43d2-bd6a-cc1e38a2638b {"md5": "8ab6b40f1c868b1ddacebe503add0350", "pid": "027218961", "note": [{"label": ["GDEL. Laval RVM, 1991-02"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de l'Amérique du Nord, incluant ou non le Mexique"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Amérique"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027218961", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15238493p", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4042483-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040424839", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/315126791", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Amérique_du_Nord", "source": "WIKIPEDIA"}], "variant_access_point": ["Amérique (nord)"], "authorized_access_point": "Amérique du Nord"} 1 -2024-07-16 19:52:34.135623 2024-07-16 19:52:34.13564 370dd453-897b-488a-ad3d-9474f124c83e {"md5": "11e76bb19f4aeedecb94fd76a9b2d007", "pid": "264644093", "note": [{"label": ["Agrisculptures / Maximilien Urfer ; essais : Raphaël Brunner et Eric Felley ; direction de publication : Stéphane Fretz, 2019", "https://www.vs.ch/web/communes/-/valais-central, 2022-09-27"], "noteType": "dataSource"}, {"label": ["Région du Canton du Valais comprenant les districts de Conthey, Sion, Sierre et d'Hérens"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264644093", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/2685166600430118000000", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)952816407", "source": "GND"}], "authorized_access_point": "Valais central (Suisse)"} 1 -2024-07-16 19:52:34.401184 2024-07-16 19:52:34.401198 ba680d93-932e-4832-852f-60c416a50de9 {"md5": "ad8327ffc6a38f6abf9f1c7a907751be", "pid": "027237249", "note": [{"label": ["GDEL", "Encycl. Britannica", "Paris-Londres, premières métropoles européennes / INSEE-DRIF, 1991", "Londres (Angleterre) ; Laval RVM, 1998-07"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les ouvrages qui traitent de la ville de Londres dans ses définitions administratives successives (comté de Londres en 1888, Greater London depuis 1965). Le Grand Londres comprend 33 boroughs, largement autonomes depuis la dissolution du Greater London Council en 1986 : 14 pour les Inner boroughs (dont la Cité), 19 pour les Outer boroughs. Les ouvrages qui ne traitent que des Outer boroughs se trouvent sous la vedette Londres (GB ; banlieue)", "Par convention, les Inner boroughs sont considérés comme des \\"quartiers\\" de Londres, les Outer boroughs comme des villes distinctes (LCNA et Laval RVM les prennent à leur nom, localisé à Londres)"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Et Londres aux personnes et collectivités"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Londres (GB ; agglomération)"}, {"authorized_access_point": "Angleterre (GB ; sud-est)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027237249", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119323045", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4074335-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040743357", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172278143", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "058632123"}, "variant_access_point": ["Augusta Tribonantum (ville ancienne)", "Grand Londres (GB)", "Greater London (GB)", "Llyn Din (ville ancienne)", "Londinium (ville ancienne)", "Londres (GB) - Inner boroughs", "Londres (GB ; comté)", "Londres (G.B.)", "Londres (G. B.)"], "authorized_access_point": "Londres (GB)"} 1 -2024-07-16 19:52:35.769104 2024-07-16 19:52:35.769126 13e78910-fd64-4e6d-a34f-a5249f3f3c42 {"md5": "caf22148beff6868e64cd0fbb639df93", "pid": "027407918", "note": [{"label": ["Laval RVM, 1995-08"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les ouvrages qui traitent des pays dont le revenu par capital est relativement bas comparativement à celui des pays nord-américains et européens. Cette vedette peut se subdiviser par toutes les subdivisions de sujet applicables aux noms de lieux, par ex. Pays en voie de développement -- Conditions économiques. Elle peut aussi être utilisée comme subdivision géographique sous les vedettes qui peuvent être localisées, par ex. Technologie -- Pays en voie de développement"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Nouveaux pays industrialisés"}, {"authorized_access_point": "Pays ACP"}, {"authorized_access_point": "Pays les moins avancés"}, {"authorized_access_point": "Pays insulaires en voie de développement"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027407918", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119456356", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4014954-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040149544", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173200037", "source": "VIAF"}, {"type": "uri", "value": "http://viaf.org/viaf/259366441", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "27352111X"}, "variant_access_point": ["Pays du tiers-monde", "Sud global", "Pays du Sud", "Pays en développement", "Pays sous-développés", "PVD", "Régions sous-développées", "Tiers-monde"], "authorized_access_point": "Pays en voie de développement"} 1 -2024-07-16 19:52:36.022722 2024-07-16 19:52:36.022729 48d5cf11-714e-4c1c-bd46-e364b8c69da1 {"md5": "8565e9a95bd5a93637431392f17ed15c", "pid": "027218597", "note": [{"label": ["GLU", "Laval RVM, 1999-01"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les documents qui traitent du territoire comprenant le Maroc, la Mauritanie, l'Algérie, la Tunisie et la Libye"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Et l'Afrique du Nord aux personnes et collectivités"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Méditerranée (région)"}, {"authorized_access_point": "Pays arabes"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027218597", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119308460", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4042482-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040424820", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/315124797", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Afrique_du_Nord", "source": "WIKIPEDIA"}], "variant_access_point": ["Afrique (nord)", "Afrique blanche", "Afrique méditerranéenne", "Afrique septentrionale", "Barbaresques, États", "Barbarie (région)", "États Barbaresques", "Maghreb", "Maghrib", "Marhrib", "Moghreb"], "authorized_access_point": "Afrique du Nord"} 1 -2024-07-16 19:52:36.250218 2024-07-16 19:52:36.250226 9d40f415-7a1a-4579-a19e-6ed148794b76 {"md5": "5a2a1d07cfb488a5d52920b47560c160", "pid": "027238180", "note": [{"label": ["IFLA, Names of states, 1981. GLU"], "noteType": "dataSource"}, {"label": ["De 1958 à 1976 : République malgache"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Indien, Îles de l'océan"}], "deleted": "2024-07-16T19:52:36.233702+00:00", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027238180", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040744256", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/146036991", "source": "VIAF"}], "variant_access_point": ["Madagaskar", "Madagascar (île)", "Repóblika Malagasy", "République malgache", "Madagascar"], "authorized_access_point": "Madagascar"} 1 -2024-07-16 19:52:36.529907 2024-07-16 19:52:36.529937 20afeb77-12f9-418f-a227-38ef91ca5605 {"md5": "c2cdfacbbc6ce22a31270d262fd50764", "pid": "027224651", "note": [{"label": ["GLU"], "noteType": "dataSource"}, {"label": ["Voir aussi aux différentes parties de l'Europe, par ex. Europe de l'Ouest"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Eurasie"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027224651", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11931301w", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4015701-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040157016", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/124144648501726049254", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Europe", "source": "WIKIPEDIA"}], "variant_access_point": ["Conseil de l'Europe, Pays du", "Pays du Conseil de l'Europe"], "authorized_access_point": "Europe"} 1 -2024-07-16 19:52:36.768265 2024-07-16 19:52:36.768282 d4c3c98c-8cb1-43ff-8bee-5d18ab9bef8c {"md5": "14ad4d2f53be2abfbfd06f6515cd2389", "pid": "027250636", "note": [{"label": ["GLU"], "noteType": "dataSource"}, {"label": ["En précision de lieu, employer Calif., par ex. Los Angeles (Calif.)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "États-Unis (Nouveau Sud-Ouest)"}, {"authorized_access_point": "États-Unis - États"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027250636", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11933409d", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040293076", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172438990", "source": "VIAF"}], "variant_access_point": ["California (États-Unis)", "Californie"], "authorized_access_point": "Californie (États-Unis)"} 1 -2024-07-16 19:52:36.996876 2024-07-16 19:52:36.9969 b016b38c-f1aa-476a-adaf-72caaf60d12c {"md5": "2fe3d5f7f01ab0d90093ad45bb31c3e4", "pid": "055302149", "note": [{"label": ["Cervin (mont) ; GLU", "Cervin (Suisse et Italie) ; Laval RVM, 2000-01"], "noteType": "dataSource"}, {"label": ["Sommet des Alpes Pennines, à la frontière italo-suisse (4478 m.)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/055302149", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb152909205", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4037992-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040379922", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/170262409", "source": "VIAF"}], "variant_access_point": ["Cervino, Monte", "Matterhorn (mont)"], "authorized_access_point": "Cervin, Mont"} 1 -2024-07-16 19:52:38.51364 2024-07-16 19:52:38.513654 82b045c1-2f60-4a0d-8261-2758d1ac3626 {"md5": "0c45eacf669606f578e0d0846fa785cb", "pid": "027275922", "note": [{"label": ["GDEL. SY 1990/91"], "noteType": "dataSource"}, {"label": ["Canton issu de la scission (1833) de l'ancien canton de Bâle en Bâle-Campagne et Bâle-Ville"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bâle (Suisse ; canton)"}, {"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027275922", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)1077172354", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/132058475", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Canton_de_Bâle-Ville", "source": "WIKIPEDIA"}], "relation_pid": {"type": "redirect_from", "value": "060557001"}, "variant_access_point": ["Basel Stadt (Suisse)"], "authorized_access_point": "Bâle-Ville (Suisse)"} 1 -2024-07-16 19:52:41.766354 2024-07-16 19:52:41.766357 1eac1f76-2822-4d2c-9b36-cd7e019dfd06 {"md5": "2a528378bce56fd20fe605c4a921c0fd", "pid": "027360199", "note": [{"label": ["GDEL", "Balkans ; Laval RVM, 1992-02"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europe du Sud"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Albanie"}, {"authorized_access_point": "Bosnie-Herzégovine"}, {"authorized_access_point": "Bulgarie"}, {"authorized_access_point": "Ex-Yougoslavie"}, {"authorized_access_point": "Grèce"}, {"authorized_access_point": "Macédoine"}, {"authorized_access_point": "Macédoine du Nord (République)"}, {"authorized_access_point": "Mésie"}, {"authorized_access_point": "Monténégro"}, {"authorized_access_point": "Roumanie"}, {"authorized_access_point": "Serbie"}, {"authorized_access_point": "Thrace"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027360199", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11941903f", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040690997", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/60144648482279885458", "source": "VIAF"}], "variant_access_point": ["Balkanique, Péninsule", "Europe (sud-est)", "Europe du Sud-Est", "Pays balkaniques"], "authorized_access_point": "Balkans"} 1 -2024-07-16 19:52:41.959172 2024-07-16 19:52:41.959178 e091fb1d-0340-45bf-a1ab-fcdf790c138d {"md5": "44a5ba54c4c821021d4a203daaaced4b", "pid": "027377067", "note": [{"label": ["IFLA, Names of states, 1981. GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Amazonie (Bolivie)"}, {"authorized_access_point": "Beni (Bolivie)"}, {"authorized_access_point": "Cochabamba (Bolivie ; département)"}, {"authorized_access_point": "La Paz (Bolivie ; département)"}, {"authorized_access_point": "Potosí (Bolivie ; département)"}, {"authorized_access_point": "Santa Cruz (Bolivie ; département)"}, {"authorized_access_point": "Chuquisaca (Bolivie ; département)"}, {"authorized_access_point": "Moxos (Bolivie)"}, {"authorized_access_point": "Oriente (Bolivie)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027377067", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040076075", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/130756130", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Bolivie", "source": "WIKIPEDIA"}], "variant_access_point": ["Alto Perú", "Bolivia", "Haut-Pérou", "Pérou, Haut-"], "authorized_access_point": "Bolivie"} 1 -2024-07-16 19:52:42.148412 2024-07-16 19:52:42.148414 03aac9cd-04c1-4018-a474-6e82f9024181 {"md5": "7b7f3e6118ee674a00fd17bb3b65dc3d", "pid": "027501418", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de la Ciscaucasie (versant nord du Grand Caucase) et de la Transcaucasie (versant sud du Grand Caucase, dépression Rion-Koura et Petit Caucase)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Grand Caucase (monts)"}, {"authorized_access_point": "Petit Caucase (monts)"}, {"authorized_access_point": "Transcaucasie"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027501418", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040300900", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172982363", "source": "VIAF"}], "variant_access_point": ["Caucasie", "Kavkaz"], "authorized_access_point": "Caucase"} 1 -2024-07-16 19:52:42.337806 2024-07-16 19:52:42.337808 7e9f2040-ac84-45d7-94b4-88b40786702b {"md5": "00ffe89cc4693f3c847a9d5709cd6f3e", "pid": "027252361", "note": [{"label": ["IFLA, Names of states, 1981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Benelux"}, {"authorized_access_point": "Pays de l'Union européenne"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027252361", "source": "IDREF"}, {"type": "uri", "value": "https://catalogue.bnf.fr/ark:/12148/cb11933554h", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4042203-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040422038", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/1557150033026211180005", "source": "VIAF"}], "variant_access_point": ["Nederland", "Provinces-Unies"], "authorized_access_point": "Pays-Bas"} 1 -2024-07-16 19:52:42.524895 2024-07-16 19:52:42.524897 fa8cf78a-e57e-4148-b3d4-ba3284961c33 {"md5": "1ca8b275185aa0489230935cdb50c420", "pid": "027251659", "note": [{"label": ["Names of states / IFLA, 1981. SY, 1986/1987"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Indochine"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027251659", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11933494g", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04078228X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/138308059", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Thaïlande", "source": "WIKIPEDIA"}], "variant_access_point": ["Muang-Thai", "Prathet Thai", "Siam"], "authorized_access_point": "Thaïlande"} 1 -2024-07-16 19:52:42.716997 2024-07-16 19:52:42.717 ddab4828-8a62-468a-95e5-8c8368f6c437 {"md5": "fc7debc086b369e2fab675cb6b9d5492", "pid": "027252124", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "related": [{"authorized_access_point": "Moscou (Russie) - Histoire"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027252124", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11933531v", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040749878", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/142519565", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Moscou", "source": "WIKIPEDIA"}], "variant_access_point": ["Moscou", "Moskva (Russie)"], "authorized_access_point": "Moscou (Russie)"} 1 -2024-07-16 19:52:42.91027 2024-07-16 19:52:42.910282 05e8d4d9-2568-4962-a3b6-dca5f9ba90ff {"md5": "149b850a12a3ca4eea613c54453da991", "pid": "027375080", "note": [{"label": ["Laval RVM, 1991-02"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Amérique"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027375080", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15238498d", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040794865", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/170225739", "source": "VIAF"}], "variant_access_point": ["Amérique (centre)", "Guatemala (Royaume)"], "authorized_access_point": "Amérique centrale"} 1 -2024-07-16 19:52:43.130278 2024-07-16 19:52:43.130293 f3797483-51ee-4d1e-a455-e903de2f8340 {"md5": "470242430d551967cefc05a735eaf8df", "pid": "027526836", "note": [{"label": ["BN ACO"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027526836", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040714446", "source": "GND"}, {"type": "bf:Nbn", "value": " https://d-nb.info/gnd/4071444-5", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/124901897", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Fribourg_(ville_suisse)", "source": "WIKIPEDIA"}], "variant_access_point": ["Freiburg im Üchtland (Freiburg, Schweiz)"], "authorized_access_point": "Fribourg (Fribourg, Suisse)"} 1 -2024-07-16 19:52:43.338304 2024-07-16 19:52:43.338312 bb622110-06f1-4d3f-b554-175b45595aac {"md5": "ca5bec865c9e0097d289f0a1f3e31b79", "pid": "028988310", "note": [{"label": ["Petit Robert des noms propres 2016", "Grand Larousse universel", "L'atlas National geographic, 2007 : Schwytz", "Wikipédia : canton de Schwytz [ou Schwyz] - https://fr.wikipedia.org (2017-10-21)", "Statoids - http://www.statoids.com (2017-10-21)", "Kanton Schwyz - https://www.sz.ch (2017-10-21)", "Dict. historique de la Suisse : Schwytz (canton) - http://www.hls-dhs-dss.ch (2017-10-21)"], "noteType": "dataSource"}, {"label": ["Canton germanophone du centre-est ; capitale : Schwyz. Il est un des 4 cantons historiques ayant donné naissance à la Confédération helvétique au 19e siècle, après avoir souvent lutté contre les Habsbourg. Son nom a donné naissance à celui du pays tout entier - dans sa version allemande 'Schweiz'. Pour la ville comme pour le canton, on peut dire aussi \\"Schwytz\\", qui est une graphie romande, mais dans sa version française, la Constitution suisse emploie le terme \\"Schwyz"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028988310", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120709591", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040540197", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/134271490", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Catégorie:Canton_de_Schwytz", "source": "WIKIPEDIA"}], "classification": [{"name": "Géographie de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Kanton Schwyz (Suisse)", "Pays de Schwyz (Suisse)", "Schweitz (Suisse ; canton)", "Schwytz (Suisse ; canton)", "Svitto (Suisse ; canton)", "Sviz (Suisse ; canton)"], "authorized_access_point": "Schwyz (Suisse ; canton)"} 1 -2024-07-16 19:52:46.62295 2024-07-16 19:52:46.622967 49199b87-60fc-42e1-9739-b05d7a730dd8 {"md5": "863166d01c2ec93663e377eefb07e6aa", "pid": "276510216", "note": [{"label": ["111 lieux des Alpes vaudoises à ne pas manquer / Benjamin Amiguet, Marc Voltenauer, 2022", "https://fr.wikipedia.org/wiki/Alpes_vaudoises, 2024-03-20", "https://search.ortsnamen.ch/fr/record/803319560/, 2024-03-20"], "noteType": "dataSource"}, {"label": ["Les Alpes vaudoises sont un ensemble montagneux des Alpes suisses situé principalement dans les cantons de Vaud et du Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Grand Muveran (Suisse ; mont)"}, {"authorized_access_point": "Les Diablerets (Suisse ; massif)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276510216", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)944449360", "source": "GND"}], "variant_access_point": ["Waadtländer Alpen (Suisse)", "Alpi Valdesi (Suisse)"], "authorized_access_point": "Alpes vaudoises (Suisse)"} 1 -2024-07-16 19:52:46.839236 2024-07-16 19:52:46.839241 deea4ba8-c68a-486e-bcc6-4a77208812de {"md5": "2873168fa16dbe41a9c5203b5fe1cd87", "pid": "02722953X", "note": [{"label": ["IFLA, Names of states, 1981. SY, 1990/1991"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Amérique du Sud"}, {"authorized_access_point": "Pays de langue portugaise"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02722953X", "source": "IDREF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4008003-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04008003X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/1732148574301324430003", "source": "VIAF"}], "variant_access_point": ["Brasil", "Brazil"], "authorized_access_point": "Brésil"} 1 -2024-07-16 19:52:47.106534 2024-07-16 19:52:47.106567 6efe17bf-fc69-42c8-ad32-137f11c91be0 {"md5": "6e3c3bb57c6a15022b6bf76eeaaf2656", "pid": "027331180", "note": [{"label": ["Atlas Le Monde", "Grand Larousse universel", "Laval RVM (en ligne) et LC Authorities (en ligne), 2006-04-18"], "noteType": "dataSource"}, {"label": ["Province du Canada (capitale : Québec)"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Et le Québec aux collectivités (à l'exception des types de collectivités) et aux personnes"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Canada (est)"}, {"authorized_access_point": "Canada - Provinces"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Montérégie (Canada)"}, {"authorized_access_point": "Abitibi-Témiscamingue (Canada)"}, {"authorized_access_point": "Beauce (Canada)"}, {"authorized_access_point": "Bois-Francs (Canada)"}, {"authorized_access_point": "Estrie (Canada)"}, {"authorized_access_point": "Etchemin (Canada ; région)"}, {"authorized_access_point": "Gaspésie (Canada ; péninsule)"}, {"authorized_access_point": "Haut-Richelieu (Canada)"}, {"authorized_access_point": "James, Baie (Canada ; région)"}, {"authorized_access_point": "Lanaudière (Canada)"}, {"authorized_access_point": "Laurentides (Canada)"}, {"authorized_access_point": "Mauricie-Bois-Francs (Canada)"}, {"authorized_access_point": "Nord-du-Québec (Canada)"}, {"authorized_access_point": "Outaouais (Canada ; région administrative)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027331180", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040480305", "source": "GND"}, {"type": "bf:Nbn", "value": " https://d-nb.info/gnd/4048030-6", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/1454149296307780670001", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "027241831"}, "variant_access_point": ["Bas-Canada", "Canada, Bas-", "Québec", "Québec (Province)"], "authorized_access_point": "Québec (Canada ; province)"} 1 -2024-07-16 19:52:48.462429 2024-07-16 19:52:48.462444 54f8b542-2fa5-433e-9657-a8e5b189bb69 {"md5": "d7c6d1055abb7b2fe453901904bac72e", "pid": "027259234", "note": [{"label": ["IFLA, Names of states, 1981. BN ACO (en ligne), 1995-07-06. Deutschland ; GKD, 1993-05 ; SWD, 1994-10"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les ouvrages qui traitent de la République fédérale d'Allemagne de 1949 à 1990. Les ouvrages qui se limitent à la partie occidentale de l'Allemagne avant 1949 ou depuis 1990 se trouvent sous la vedette Allemagne (ouest) ; ceux qui traitent de l'Allemagne d'avant 1949, ou de l'Allemagne depuis l'unification (3 octobre 1990), dont le nom officiel est République fédérale d'Allemagne, se trouvent sous la vedette Allemagne"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027259234", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11934033d", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4011889-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040118894", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/3765159035196701380009", "source": "VIAF"}], "variant_access_point": ["Allemagne (RFA)", "Allemagne de l'Ouest (1949-1990)", "Allemagne fédérale (1949-1990)", "BRD", "Bundesrepublik Deutschland (1949-1990)", "Deutschland (Bundesrepublik ; 1949-1990)", "République fédérale d'Allemagne (1949-1990)", "RFA"], "authorized_access_point": "Allemagne (République fédérale)"} 1 -2024-07-16 19:52:48.685929 2024-07-16 19:52:48.685939 cc572724-77bf-4852-a397-8cc99f4f40b5 {"md5": "4ffc2763dad6b5cd0821e6471d814e55", "pid": "02724301X", "note": [{"label": ["Rome (Italy) ; LCSH, 1988-12. Laval RVM, 1988-12"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les ouvrages sur la ville de Rome, ancienne et moderne. Les ouvrages sur l'État romain antique se trouvent sous la vedette Rome"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02724301X", "source": "IDREF"}, {"type": "uri", "value": "https://catalogue.bnf.fr/ark:/12148/cb11932804j", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4050471-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040504719", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040504719", "source": "GND"}, {"type": "uri", "value": "https://d-nb.info/gnd/4050471-2", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/159835544", "source": "VIAF"}, {"type": "uri", "value": "https://ark.frantiq.fr/ark:/26678/pcrtW9ctTWwSAK", "source": "PACTOLS"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Rome", "source": "WIKIPEDIA"}], "variant_access_point": ["Roma (Italie)"], "authorized_access_point": "Rome (Italie)"} 1 -2024-07-16 19:52:48.904183 2024-07-16 19:52:48.904187 6f941ab5-77c6-4d69-beaa-aa747fed2c70 {"md5": "abad9fe269ba0e350ec9ac48792c37cd", "pid": "027234592", "note": [{"label": ["Sous cette vedette on trouve les ouvrages qui traitent des pays où la majorité de la population est musulmane, ou dont l'islam est la religion reconnue"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027234592", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11932087v", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040731723", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173581056", "source": "VIAF"}], "variant_access_point": ["États islamiques", "Islamiques, Pays", "Musulmans, Pays", "Pays musulmans"], "authorized_access_point": "Pays islamiques"} 1 -2024-07-16 19:52:49.123531 2024-07-16 19:52:49.123544 9da3d4c5-b09c-4a6b-888b-c36eaa252043 {"md5": "e312048136c7178bd24bd7c2eafd3c02", "pid": "02726453X", "note": [{"label": ["Laval RVM, 1983. GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02726453X", "source": "IDREF"}, {"type": "uri", "value": "https://d-nb.info/gnd/4020137-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040201376", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/157214194", "source": "VIAF"}], "variant_access_point": ["Genève", "Genf (Suisse)", "Ginevra (Suisse)", "Geneva"], "authorized_access_point": "Genève (Genève, Suisse)"} 1 -2024-07-16 19:52:49.402869 2024-07-16 19:52:49.402887 ab37e8a0-b297-4698-a829-778f51583f91 {"md5": "cc9b74106a6c6c690a96fdbc6e6e7eb3", "pid": "027223779", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Écrins, Massif des (France)"}, {"authorized_access_point": "Préalpes (France)"}, {"authorized_access_point": "Vanoise, Massif de la (France)"}, {"authorized_access_point": "Vercors (France ; massif)"}, {"authorized_access_point": "Alpes cottiennes"}, {"authorized_access_point": "Alpes maritimes (massif)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027223779", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119312368", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040932052", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173145181", "source": "VIAF"}], "variant_access_point": ["Alpes françaises"], "authorized_access_point": "Alpes (France)"} 1 -2024-07-16 19:52:49.674371 2024-07-16 19:52:49.674384 31357796-3334-49a9-a92c-875d022d44b4 {"md5": "0d4946993015ef868846a3275ede7411", "pid": "027259978", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "France (centre)"}, {"authorized_access_point": "France (centre-est)"}, {"authorized_access_point": "France (est)"}, {"authorized_access_point": "France - Régions"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027259978", "source": "IDREF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4129468-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041294688", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/149443835", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Bourgogne_(ancienne_région_administrative)", "source": "WIKIPEDIA"}], "relation_pid": {"type": "redirect_from", "value": "110360524"}, "variant_access_point": ["Bourgogne", "Bourgogne (duché)"], "authorized_access_point": "Bourgogne (France)"} 1 -2024-07-16 19:52:51.011198 2024-07-16 19:52:51.011213 0dc36102-238a-4572-b0a4-9b72aa3d5efc {"md5": "5ab83fd2bad768829d255b4b56978332", "pid": "027241912", "note": [{"label": ["GLU, 1991. Encycl. universalis, 1989", "Laval RVM, 1996-08"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages sur le continent antarctique ainsi que sur les terres situées au sud du 60e parallèle, concernées par le Traité sur l'Antarctique (1959)", "Les lieux situés dans l'Antarctique sont localisés à Antarctique (sauf le pôle sud) ; ils s'utilisent en subdivision indirectement, par l'intermédiaire d'Antarctique"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Régions polaires"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027241912", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15238492b", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040022080", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/113150032973411180002", "source": "VIAF"}], "variant_access_point": ["Antarctide", "Antarctiques, Régions", "Continent antarctique", "Régions antarctiques", "Terres antarctiques"], "authorized_access_point": "Antarctique"} 1 -2024-07-16 19:52:51.245836 2024-07-16 19:52:51.245861 9efd2e17-fc5f-4444-8469-fedd41accd1e {"md5": "c0fd98e83f917a58a5852d1939aa4888", "pid": "027255123", "note": [{"label": ["Names of states / IFLA, 1981. GDEL. Encicl. italiana. LAVAL RVM, 1989-06"], "noteType": "dataSource"}, {"label": ["Cette vedette s'emploie directement en subdivision de lieu", "Partie de Rome constituant depuis le traité du Latran (11-02-1929) le territoire souverain du Saint-Siège"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027255123", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119337484", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040624048", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/136038551", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Vatican", "source": "WIKIPEDIA"}], "variant_access_point": ["Cité du Vatican", "Rome (Italie) - Cité du Vatican", "Vaticano", "Vaticano - Stato della Città del"], "authorized_access_point": "Vatican"} 1 -2024-07-16 19:52:51.514812 2024-07-16 19:52:51.514838 31040aee-4ef1-4f81-a327-2677eed0652c {"md5": "8862cebefa0c1315c6287b4dc79905e3", "pid": "027333752", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Asie du Nord"}, {"authorized_access_point": "Russie"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027333752", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11939827w", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040547809", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/251794742", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Sibérie", "source": "WIKIPEDIA"}], "variant_access_point": ["Russie d'Asie", "Sibir (Russie)"], "authorized_access_point": "Sibérie (Russie)"} 1 -2024-07-16 19:52:51.77249 2024-07-16 19:52:51.772504 0905c478-1047-4914-931b-4af7b0f82cb7 {"md5": "7e435b8a780c3364d23832330ff0a1df", "pid": "027262952", "note": [{"label": ["IFLA, Names of states, 1981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Balkans"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027262952", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11934311x", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4050939-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040509397", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/153149185", "source": "VIAF"}], "variant_access_point": ["România", "Румыния", "Румунія"], "authorized_access_point": "Roumanie"} 1 -2024-07-16 19:52:52.010228 2024-07-16 19:52:52.010263 fe9922c3-2755-477e-8d6a-dd0818bb93ba {"md5": "8678b83bbe152292a185a5f9d09d28f8", "pid": "027263061", "note": [{"label": ["GLU. Mourre. Brockhaus, 19. Aufl.", "Laval RVM, 1996-02"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027263061", "source": "IDREF"}, {"type": "uri", "value": "http://d-nb.info/gnd/2035457-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)004911474", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/5228148574274624430002", "source": "VIAF"}], "variant_access_point": ["Empire romain germanique, Saint", "Heiliges Römisches Reich Deutscher Nation", "Sacrum Romanum Imperium Nationis Germanicae"], "authorized_access_point": "Saint Empire romain germanique"} 1 -2024-07-16 19:52:53.278619 2024-07-16 19:52:53.278648 3360e2fb-074a-42db-980f-7ee9a2d34072 {"md5": "2ce7fd3d99962e8bb1aa3808dca5fbd2", "pid": "027323072", "note": [{"label": ["Names of states / IFLA, 1981. Pays et capitales du monde / IGN, 1985"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Australasie"}, {"authorized_access_point": "Océanie"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027323072", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040419150", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/3232154260428024480001", "source": "VIAF"}], "variant_access_point": ["New Zealand", "Nouvelle Zélande"], "authorized_access_point": "Nouvelle-Zélande"} 1 -2024-07-16 19:52:53.537683 2024-07-16 19:52:53.537696 24b49249-da59-4433-ac69-2280870fbdc1 {"md5": "9ffd4d8c13639394b87264e58eab3bab", "pid": "027465012", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027465012", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04051594X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04051594X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/9591148574375024430008", "source": "VIAF"}], "variant_access_point": ["Sankt Gallen (Suisse)", "St. Gallen (Suisse)", "St.Gallen (Suisse)", "St Gall (Suisse)", "Saint Gall (Suisse)", "Saint-Gall (Suisse)", "Sankt-Gallen (Suisse)"], "authorized_access_point": "Saint-Gall (Suisse)"} 1 -2024-07-16 19:52:53.803895 2024-07-16 19:52:53.803913 749d3a8c-261a-4816-b60d-b2535fa68890 {"md5": "7ab3ab13cecd468591a1053d06417efd", "pid": "027810674", "note": [{"label": ["IFLA, Names of states, 1981. Pays et capitales du monde / IGN, 1990. Mourre, 1986", "Laval RVM, 1996-08. Luxemburg ; SWD, 1995-04"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de l'ensemble du Luxembourg (comté, duché en 1354, grand-duché en 1815) ou du seul grand-duché depuis 1831 (privé de sa partie occidentale, wallonne, annexée par la Belgique)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Benelux"}, {"authorized_access_point": "Pays de l'Union européenne"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027810674", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119772596", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040367282", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/14145003656661341083", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Luxembourg", "source": "WIKIPEDIA"}], "variant_access_point": ["Letzeburg", "Luxembourg (comté)", "Luxembourg (duché)", "Luxembourg (Grand-duché)", "Luxemburg"], "authorized_access_point": "Luxembourg"} 1 -2024-07-16 19:52:54.072973 2024-07-16 19:52:54.072996 45bff10e-be4a-45b9-b8c4-bd367f83acda {"md5": "d1877545b0f2135c8669a54206768cfa", "pid": "027502333", "note": [{"label": ["GLU (art. Extrême-Orient)", "Extrême-Orient ; Laval RVM, 1998-07"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de la partie de l'Asie comprenant la Chine, la Corée, le Japon, la Sibérie orientale, l'Indochine et l'Insulinde"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Asie du Nord-Est"}, {"authorized_access_point": "Asie du Sud-Est"}, {"authorized_access_point": "Chine"}, {"authorized_access_point": "Corée"}, {"authorized_access_point": "Japon"}, {"authorized_access_point": "Pacifique, Côte du (Asie)"}, {"authorized_access_point": "Sibérie (Russie ; est)"}, {"authorized_access_point": "Taïwan"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027502333", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119528028", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040757277", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172332114", "source": "VIAF"}], "variant_access_point": ["Asie (est)", "Asie de l'Est", "Asie-Pacifique, Région", "Extrême-Orient", "Orient, Extrême-"], "authorized_access_point": "Asie orientale"} 1 -2024-07-16 19:52:54.34723 2024-07-16 19:52:54.347267 0cf0c17f-5961-4182-9489-be8a85c9d264 {"md5": "7c391f369510f13eadb16bc74dd59390", "pid": "028706536", "note": [{"label": ["Trirhena : une région sans frontières ?, 2002"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de la région bâloise, s'étendant sur le canton de Bâle, le sud-est de l'Alsace et le sud du pays de Bade. Les ouvrages qui traitent des pays rhénans depuis Bâle jusqu'à Mayence se trouvent sous la vedette Rhénans, Pays (sud)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rhénans, Pays (sud)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028706536", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040046206", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/158939441", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Regio_Basiliensis", "source": "WIKIPEDIA"}], "variant_access_point": ["Basiliensis, Regio", "Regio Basiliensis", "TriRhena, Regio"], "authorized_access_point": "Bâle (Suisse ; région)"} 1 -2024-07-16 19:52:54.622642 2024-07-16 19:52:54.622666 ffc8896e-2119-454f-b4a7-fab00fa773cb {"md5": "fcd039c6ffdcc01d9db55fec393bdda8", "pid": "027501302", "note": [{"label": ["Names of states / IFLA, 1981", "wikipedia.org, 2019-07-25"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Balkans"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027501302", "source": "IDREF"}, {"type": "uri", "value": "https://catalogue.bnf.fr/ark:/12148/cb11952716p", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040010287", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/8663159248210104870006", "source": "VIAF"}], "variant_access_point": ["Shqipe͏̈ri", "Shqipëria", "Arbri", "Arbëria", "Republika e Shqipërisë"], "authorized_access_point": "Albanie"} 1 -2024-07-16 19:52:54.883608 2024-07-16 19:52:54.883623 0508a40d-4225-4b75-9af0-5759d4dd9d46 {"md5": "67f897d5271f5daa9e5b9446f23c9c0c", "pid": "033640874", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033640874", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12448796p", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4041747-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040417476", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/304911054", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Lac_de_Neuchâtel", "source": "WIKIPEDIA"}], "variant_access_point": ["Neuchâtel, Lac (Neuchâtel, Suisse)", "Neuenburg, Lac (Neuchâtel, Suisse)"], "authorized_access_point": "Neuchâtel, Lac de (Neuchâtel, Suisse)"} 1 -2024-07-16 19:52:55.130581 2024-07-16 19:52:55.13061 5b07b128-f993-4894-b86c-de5b5a230658 {"md5": "85db08d809c37be49e2161f50fb65cdc", "pid": "02763857X", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Himalaya"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02763857X", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04040417X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/247168735", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Everest", "source": "WIKIPEDIA"}], "variant_access_point": ["Chomolungma (mont)"], "authorized_access_point": "Everest, Mont"} 1 -2024-07-16 19:52:55.405841 2024-07-16 19:52:55.405866 8f6907e3-0d41-4ddf-bebc-30d573017f01 {"md5": "68e6966c7614c941c9c3350997d3c586", "pid": "02773417X", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02773417X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15294892q", "source": "BNF"}, {"type": "uri", "value": "http://d-nb.info/gnd/4020144-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040201449", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/237685109", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Léman", "source": "WIKIPEDIA"}], "variant_access_point": ["Genève, Lac de"], "authorized_access_point": "Léman, Lac"} 1 -2024-07-16 19:52:55.688854 2024-07-16 19:52:55.688878 c6d1416a-dfe3-474b-9edb-a61414a76d7b {"md5": "f8745fdc6e028d1500b72f23ca92dd02", "pid": "027483304", "note": [{"label": ["GLU"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europe centrale"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027483304", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040738418", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/8072148574327224430003", "source": "VIAF"}], "variant_access_point": ["Hrvatska", "Хрватска", "Hrvatska"], "authorized_access_point": "Croatie"} 1 -2024-07-16 19:52:56.948464 2024-07-16 19:52:56.948474 a13bbee0-9525-481c-95c5-1af156cfcf1f {"md5": "2eb5d1f6dfc499429a1f2c6822c6bc02", "pid": "085560839", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/085560839", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb121645931", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040804003", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/30144647638547014341", "source": "VIAF"}], "variant_access_point": ["Biel (Suisse)"], "authorized_access_point": "Bienne (Suisse)"} 1 -2024-07-16 19:07:13.690141 2024-07-16 19:52:57.180333 5502917f-4fac-4245-8ebf-aeed6e844cb2 {"md5": "b8427f972bfa30177dc67087529f6964", "pid": "271323515", "note": [{"label": ["Wikipédia - http://fr.wikipedia.org (2015-04-30)", "Dict. historique de la Suisse (art. : Port-Valais) - http://www.hls-dhs-dss.ch (2015-05-18)"], "noteType": "dataSource"}, {"label": ["Localité de la commune de Port-Valais dans le canton du Valais, située au sud du lac Léman et proche de la frontière française"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCA", "identifiedBy": {"type": "uri", "value": "http://id.loc.gov/authorities/names/n83224886", "source": "LCA"}, "authorized_access_point": "Bouveret (Switzerland)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271323515", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb169627006", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-588)4697744-2", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/113144647637759345491", "source": "VIAF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Bouveret, Le (Valais, Suisse)", "Bouveret (Valais, Suisse)", "Port-Valais (Valais, Suisse) - Village du Bouveret"], "authorized_access_point": "Le Bouveret (Valais, Suisse)"} 2 -2024-07-16 19:52:57.453844 2024-07-16 19:52:57.453854 b799a179-6616-4e58-88fc-d68ff5b03897 {"md5": "d941b2e21e2253e859999b84ba58ebab", "pid": "264287010", "note": [{"label": ["Sierre et la Noble Contrée / par François de Preux ; photogr. M.-F. Chiffelle ; [couv. dessinée par André Rosselet], 1951", "https://fr.wikipedia.org/wiki/Sierre, 2022-09-09"], "noteType": "dataSource"}, {"label": ["Ville et commune du canton du Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264287010", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb169098180", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040774244", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4077424-7", "source": "GND"}, {"type": "uri", "value": "http://d-nb.info/gnd/4077424-7", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/612169442775025340005", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "271323337"}, "variant_access_point": ["Siders (Valais, Suisse)"], "authorized_access_point": "Sierre (Valais, Suisse)"} 1 -2024-07-16 19:52:57.68122 2024-07-16 19:52:57.68123 3f571b32-6b4d-47ab-9ecb-01dc5f4a4d26 {"md5": "0546f48c4dd787755884de6ea344eae1", "pid": "110868056", "note": [{"label": ["Raron : Burg und Kirche / Redaktion: Alfred A. Schmid ; mit einem Vorwort von Nello Celio und Beiträgen von Christoph Bernouli, Carl J. Burckhardt, Amédée Cachin... [et al.]. - Basel : Birkhäuser, cop. 1972"], "noteType": "dataSource"}, {"label": ["Village suisse situé dans le canton du Valais. Tombe du poète Rainer Maria Rilke"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/110868056", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/149281369", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)041048989", "source": "GND"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Rarogne", "source": "WIKIPEDIA"}], "variant_access_point": ["Raron (Valais, Suisse)"], "authorized_access_point": "Rarogne (Valais, Suisse)"} 1 -2024-07-16 19:52:57.926541 2024-07-16 19:52:57.926573 1c163d59-d641-449f-87f8-f6cca41b4dfa {"md5": "e89cc872e9b97e80d99e49464ca4fe74", "pid": "275775569", "note": [{"label": ["Trésors naturels du bois de Finges / René-Pierre Bille, Philippe Werner, 1986", "https://www.pfyn-finges.ch/fr/experience/carte-du-parc/offer-detail/site-protege-du-bois-de-finges-1991, 2024-02-14", "https://hls-dhs-dss.ch/fr/articles/008553/2010-09-28/, 2024-02-14"], "noteType": "dataSource"}, {"label": ["Réserve naturelle"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/275775569", "source": "IDREF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Bois_de_Finges", "source": "WIKIPEDIA"}, {"type": "bf:Nbn", "value": "(DE-101)043187048", "source": "GND"}], "variant_access_point": ["Bois de Finges (Valais, Suisse)", "Pfynwald (Valais, Suisse)", "Forêt de Finges (Valais, Suisse)"], "authorized_access_point": "Finges, Bois de (Valais, Suisse)"} 1 -2024-07-16 19:52:58.192655 2024-07-16 19:52:58.192665 25d467d4-29b8-4910-b61c-74cacd2fdabc {"md5": "efdab2ef904bf4fa2ec446f9b66e1b2e", "pid": "127372547", "note": [{"label": ["Tunnel de base du Lötschberg : de la roche au chemin de fer / Felix freank, 2008", "https://fr.wikipedia.org/wiki/Tunnel_de_base_du_L%C3%B6tschberg, 2022-09-13"], "noteType": "dataSource"}, {"label": ["Tunnel ferroviaire qui relie le canton du Valais à celui de Berne. Inauguré en 2007."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/127372547", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/139148570539024310972", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)96475455X", "source": "GND"}], "variant_access_point": ["Tunnel de base du Lötschberg (Suisse)", "Lötschberg Basistunnel (Suisse)"], "authorized_access_point": "Lötschberg, Tunnel de base du (Suisse)"} 1 -2024-07-16 19:52:58.461174 2024-07-16 19:52:58.461207 25f6c7d4-fae7-461e-b16e-c72be43a19ca {"md5": "7ff8a470ffcad120e6ff4e0fda04ae73", "pid": "116317825", "note": [{"label": ["Le glacier de l'Aletsch et le lac de Märjelen / Roland Bonaparte. Paris : 1889."], "noteType": "dataSource"}, {"label": ["E 8°4' / N 46°26'"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/116317825", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15240705p", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040721000", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/170096434", "source": "VIAF"}], "variant_access_point": ["Aletschgletscher (Suisse)", "Grosser Aletschgletscher (Valais, Suisse)", "Glacier d'Aletsch (Valais, Suisse)", "Aletsch, Glacier d' (Valais, Suisse)", "Grand Glacier d'Aletsch (Valais, Suisse)"], "authorized_access_point": "Aletsch, Grand Glacier d' (Valais, Suisse)"} 1 -2024-07-16 19:52:58.729851 2024-07-16 19:52:58.729888 bd9cb1b0-258b-4222-95bb-943949f787f1 {"md5": "a3479ba5c5f14e316e29ffe233ebe6e0", "pid": "150220200", "note": [{"label": ["http://catalogue.bnf.fr/ark:/12148/cb152923816/UNIMARC 2011-02-21", "20 Jahre Furggentälti: Permafrostuntersuchungen auf der Gemmi / Bernhard Krummenacher .... - Bern : Geogr. Inst. d. Univ., 2008"], "noteType": "dataSource"}, {"label": ["Coordonnées géographiques : E 7°37' / N 46°24'"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/150220200", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/118148570517524310836", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)040717003", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040717003", "source": "GND"}], "authorized_access_point": "Gemmi, Col de la (Valais, Suisse)"} 1 -2024-07-16 19:52:58.976182 2024-07-16 19:52:58.976195 cc5d3479-1c43-4ddc-8137-1471dd0b55ad {"md5": "d4a659f9fee059c7afd1e3af983b147f", "pid": "116459425", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/116459425", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/55148570478224310503", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)947297987", "source": "GND"}], "authorized_access_point": "Albanie (nord)"} 1 +2024-09-11 09:10:50.290411 2024-09-11 09:10:50.290415 9433a12f-5635-409a-a2b4-89d27e3dd74f {"md5": "8258a0f3164682b45ff98e6e8724ce30", "pid": "027218562", "note": [{"label": ["Sous cette vedette on trouve les ouvrages qui traitent de la partie de l'Afrique s'étendant du nord du Tchad au sud du Zai͏̈re et du Cameroun au Rwanda et au Burundi"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Burundi"}, {"authorized_access_point": "Cameroun"}, {"authorized_access_point": "Congo (République)"}, {"authorized_access_point": "Gabon"}, {"authorized_access_point": "Guinée équatoriale"}, {"authorized_access_point": "République centrafricaine"}, {"authorized_access_point": "Rwanda"}, {"authorized_access_point": "Sao Tomé-et-Principe"}, {"authorized_access_point": "Tchad"}, {"authorized_access_point": "Congo (République démocratique)"}, {"authorized_access_point": "Guinée (région)"}, {"authorized_access_point": "Grands lacs africains (région)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027218562", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16272632j", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040794857", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/169969170", "source": "VIAF"}], "variant_access_point": ["Afrique (centre)", "Afrique équatoriale", "Afrique équatoriale francophone"], "authorized_access_point": "Afrique centrale"} 1 +2024-09-11 09:10:50.360148 2024-09-11 09:10:50.360152 68ab7791-4966-4903-9f4d-e01d6e6d7070 {"md5": "3ae3c73ec8b7e8147e64159c39e951e4", "pid": "027218856", "note": [{"label": ["GLU, 1991", "BN ACO (en ligne), 1997-05-26. Laval RVM, 1997-02. Deutschland ; SWD, 1995-04 ; GKD, 1994-05"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les ouvrages qui traitent de l'Allemagne dans son ensemble : pays de langue allemande du Saint-Empire, pays de la Confédération germanique, Empire allemand et République fédérale d'Allemagne depuis l'unification du 3 octobre 1990. Les ouvrages sur la RFA de 1949 à 1990 se trouvent sous la vedette Allemagne (République fédérale)", "Attention : seules les collectivités depuis 1990 sont sous la vedette Allemagne ; les collectivités de la période 1871 à 1945 sont sous la vedette Allemagne (1871-1945) ; celles de la période 1945-1949, sous la vedette Allemagne (Zone sous occupation alliée)"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Et l'Allemagne aux personnes et collectivités", "Voir aussi la subdivision Réclamations contre l'Allemagne aux lieux"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europe centrale"}, {"authorized_access_point": "Pays de l'Union européenne"}, {"authorized_access_point": "Pays de langue allemande"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027218856", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11930867z", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040118827", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173418378", "source": "VIAF"}], "variant_access_point": ["BRD", "Bundesrepublik Deutschland (1990-)", "Deutsches Reich", "Deutschland", "Empire allemand", "Reich allemand", "République fédérale d'Allemagne (1990-)"], "authorized_access_point": "Allemagne"} 1 +2024-09-11 09:10:50.40494 2024-09-11 09:10:50.404943 94e7f2ee-ff7c-46a2-b27d-79cde2809932 {"md5": "2ccb93379a4d9b1fa2d3c31c08cf7e5a", "pid": "027219224", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027219224", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11930897w", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040020347", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173744543", "source": "VIAF"}, {"type": "uri", "value": "https://ark.frantiq.fr/ark:/26678/pcrtJ3hUIUrZZ3", "source": "PACTOLS"}], "variant_access_point": ["Angkor (Cambodge)"], "authorized_access_point": "Angkor (ville ancienne)"} 1 +2024-09-11 09:10:50.448356 2024-09-11 09:10:50.448361 08bab9cf-0a47-421b-9d1a-842f1e805a92 {"md5": "52972946d402bfbf20d6af2276346a66", "pid": "027219631", "note": [{"label": ["Names of states / IFLA, 1981. Pays et capitales du monde / IGN, 1985"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Arabie"}, {"authorized_access_point": "Persique, Golfe (région)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027219631", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11930929p", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040517888", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/164965477", "source": "VIAF"}], "variant_access_point": ["Arabie séoudite", "Al-Sa' udiya", "السعودية", "السعودية", "المملكة العربية السعودية", "المملكة العربية السعودية", "Saudi Arabia", "Kingdom of Saudi Arabia"], "authorized_access_point": "Arabie saoudite"} 1 +2024-09-11 09:10:50.49569 2024-09-11 09:10:50.495693 09c73370-612a-41fa-b1b5-fb0027e69d4d {"md5": "935b0df2b7d5681ca11926c646e7e9ae", "pid": "027220389", "note": [{"label": ["Atlantique, Océan ; Laval RVM, 1995-02"], "noteType": "dataSource"}, {"label": ["Voir aussi aux différentes parties de l'Atlantique, par ex. Atlantique (océan ; nord)"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Atlantique (océan ; sud)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027220389", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb152874072", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040033880", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/152295726", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Océan_Atlantique", "source": "WIKIPEDIA"}], "variant_access_point": ["Atlantique", "Océan Atlantique"], "authorized_access_point": "Atlantique (océan)"} 1 +2024-09-11 09:10:50.547022 2024-09-11 09:10:50.547026 373d6ae4-2117-47c8-9bde-4ed1f1d772f7 {"md5": "a42db48c19fb82d2419d4c1e04cca505", "pid": "027222608", "note": [{"label": ["Guides bleus : France, 1974", "Patrimoine mondial de l'Unesco - http://whc.unesco.org/fr (2015-08-19)"], "noteType": "dataSource"}, {"label": ["Cathédrale considérée comme la plus représentative de l'art gothique français, dont la construction débuta en 1145. Inscrite au patrimoine mondial de l'Unesco depuis 1979"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Chartres (Eure-et-Loir) - Cathédrale Notre-Dame - Portail nord"}, {"authorized_access_point": "Chartres (Eure-et-Loir) - Cathédrale Notre-Dame - Portail sud"}, {"authorized_access_point": "Chartres (Eure-et-Loir) - Cathédrale Notre-Dame - Puits des Saints-Forts"}], "closeMatch": [{"source": "LCA", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/names/n50052168", "source": "LCA"}], "authorized_access_point": "Cathédrale de Chartres"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027222608", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11931157z", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040699307", "source": "GND"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Architecture", "type": "bf:ClassificationDdc", "classificationPortion": "720"}, {"type": "bf:ClassificationDdc", "classificationPortion": "912"}], "variant_access_point": ["Cathédrale de Chartres", "Cathédrale Notre-Dame (Chartres, Eure-et-Loire)", "Notre-Dame, Cathédrale (Chartres, Eure-et-Loire)"], "authorized_access_point": "Chartres (Eure-et-Loir, France) - Cathédrale Notre-Dame"} 1 +2024-09-11 09:10:50.604577 2024-09-11 09:10:50.60458 14144098-16e3-4325-a4b9-d4e8714051f8 {"md5": "b1a0f1cd5bd7661335f72dcfcbab294d", "pid": "027222950", "note": [{"label": ["IFLA, Names of states, 1981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Andes (région)"}, {"authorized_access_point": "Cône Sud de l'Amérique du Sud"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027222950", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15238523s", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040099296", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/233665742", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Chili", "source": "WIKIPEDIA"}], "variant_access_point": ["Chile"], "authorized_access_point": "Chili"} 1 +2024-09-11 09:10:50.647213 2024-09-11 09:10:50.647216 4468e236-e2e0-40e0-8a8b-5e37a4f6999e {"md5": "5a5f0ff2dc0d3fbaa5a667067e73b447", "pid": "027223736", "note": [{"label": ["Autorité matière / BPI, 1980. BN ACO"], "noteType": "dataSource"}, {"label": ["Les ouvrages qui traitent de la partie orientale de l'Allemagne (dans les frontières de la période considérée) avant 1949 ou depuis 1990 se trouvent sous la vedette Allemagne (est)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027223736", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11931234k", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040118908", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/268607483", "source": "VIAF"}], "variant_access_point": ["Allemagne (RDA)", "Allemagne de l'Est", "Allemande, République démocratique", "DDR", "Deutsche Demokratische Republik", "Deutschland (DDR)", "RDA", "République démocratique allemande"], "authorized_access_point": "Allemagne (République démocratique)"} 1 +2024-09-11 09:10:50.688658 2024-09-11 09:10:50.68866 0f28e281-9a01-4e39-b5be-378aa78dd73b {"md5": "40afe6bad5b460b49d5ba96acdfa470a", "pid": "027223760", "note": [{"label": ["Alps, Austrian (Austria) ; LCSH, 1988-12"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Alpes"}], "related": [{"authorized_access_point": "Alpes (est)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Dachstein (Autriche ; massif)"}, {"authorized_access_point": "Götschenberg (Autriche ; mont)"}, {"authorized_access_point": "Hohe Tauern (Autriche ; massif)"}, {"authorized_access_point": "Raxalpe (Autriche ; mont)"}, {"authorized_access_point": "Schneeberg (Autriche ; mont)"}, {"authorized_access_point": "Stub-Alpe (Autriche)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027223760", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11931235x", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040432742", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/484144783099466463271", "source": "VIAF"}], "variant_access_point": ["Alpes autrichiennes"], "authorized_access_point": "Alpes (Autriche)"} 1 +2024-09-11 09:10:50.731915 2024-09-11 09:10:50.731917 86cd8a86-d1be-49db-bf68-f05dfc1a72f1 {"md5": "cc9b74106a6c6c690a96fdbc6e6e7eb3", "pid": "027223779", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Écrins, Massif des (France)"}, {"authorized_access_point": "Préalpes (France)"}, {"authorized_access_point": "Vanoise, Massif de la (France)"}, {"authorized_access_point": "Vercors (France ; massif)"}, {"authorized_access_point": "Alpes cottiennes"}, {"authorized_access_point": "Alpes maritimes (massif)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027223779", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119312368", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040932052", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173145181", "source": "VIAF"}], "variant_access_point": ["Alpes françaises"], "authorized_access_point": "Alpes (France)"} 1 +2024-09-11 09:10:50.77304 2024-09-11 09:10:50.773042 88da1546-cc1e-4c58-9fbd-8523901a994a {"md5": "3ec14ac35b31b906139c4e42666ea5a6", "pid": "027224570", "note": [{"label": ["IFLA, Names of states, 1981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique du Nord-Est"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027224570", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040006395", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172818811", "source": "VIAF"}], "variant_access_point": ["Abyssinie", "Ityopya"], "authorized_access_point": "Éthiopie"} 1 +2024-09-11 09:10:50.815698 2024-09-11 09:10:50.815707 169e260c-1c0e-4575-b948-f91c8c929ae8 {"md5": "dd2fb0805e58a6b36a77038753edbcec", "pid": "027225399", "note": [{"label": ["IFLA, Names of states, 1981. Laval RVM, 1995-02"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Amazonie (Équateur)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027225399", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)041293215", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/150084159", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Équateur_(pays)", "source": "WIKIPEDIA"}], "variant_access_point": ["Ecuador"], "authorized_access_point": "Équateur"} 1 +2024-09-11 09:10:50.876207 2024-09-11 09:10:50.876211 1a4984b0-321a-4f08-bd7c-2137735edd9b {"md5": "e539609612cf0bf75957ea65e67e0e4e", "pid": "027225984", "note": [{"label": ["IFLA, Names of states, 1981. SY 1996-97"], "noteType": "dataSource"}, {"label": ["Voir aussi la subdivision Et la Finlande aux personnes et collectivités"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pays de l'Union européenne"}, {"authorized_access_point": "Scandinavie"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027225984", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15238532r", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040172430", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/2759153532459148820002", "source": "VIAF"}], "variant_access_point": ["Finland", "Suomi"], "authorized_access_point": "Finlande"} 1 +2024-09-11 09:10:50.938511 2024-09-11 09:10:50.938516 b3064ae4-783a-4b9a-a87e-5b90cb1493b7 {"md5": "9dec2bef3d27ac72095212ef8c2300c2", "pid": "027227472", "note": [{"label": ["France (Nord) ; Laval RVM, 1996-02"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les ouvrages qui traitent de la moitié nord de la France"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "France (nord-est)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027227472", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119315243", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)041100867", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172655931", "source": "VIAF"}], "variant_access_point": ["France du nord", "France septentrionale", "Nord de la France"], "authorized_access_point": "France (nord)"} 1 +2024-09-11 09:10:51.000517 2024-09-11 09:10:51.000521 37572c65-3150-42ed-a994-b9cb5fffb7e6 {"md5": "dbbf0b52830b8cbbc5aa6b36be225a2b", "pid": "027227871", "note": [{"label": ["BN ACO. GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027227871", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040201856", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/125409416", "source": "VIAF"}], "variant_access_point": ["Gênes (République)", "Genova (Italie)"], "authorized_access_point": "Gênes (Italie)"} 1 +2024-09-11 09:10:51.058923 2024-09-11 09:10:51.058927 d6196985-5fd3-4bc6-9206-8b5ffc8294be {"md5": "da105008a469a089fe8f95b124127c6f", "pid": "027228878", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Antilles"}, {"authorized_access_point": "Petites Antilles"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027228878", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11931628r", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)041379225", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172385538", "source": "VIAF"}], "authorized_access_point": "Antilles françaises"} 1 +2024-09-11 09:10:51.10812 2024-09-11 09:10:51.108125 b52d4a88-fdc0-4462-8e78-970a748b5bde {"md5": "b609741408081c2bef76e136460ad515", "pid": "027229211", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["Département français (10)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Champagne-Ardenne (France)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027229211", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11931650x", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/312788193", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Aube_(département)", "source": "WIKIPEDIA"}], "variant_access_point": ["Aube"], "authorized_access_point": "Aube (France)"} 1 +2024-09-11 09:10:51.167736 2024-09-11 09:10:51.16774 9768e48b-d21f-4b8f-bfb2-e899abf6ceef {"md5": "6504d4ff2db6728c95ecc3472b973ac5", "pid": "027230309", "note": [{"label": ["Names of states / IFLA, 1981. Pays et capitales du monde / IGN, 1985. Manuel de l'Unesco, 1985"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique occidentale"}], "related": [{"authorized_access_point": "Moronou (Royaume)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027230309", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040144267", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/164154015337309310002", "source": "VIAF"}], "variant_access_point": ["Côte-d'Ivoire"], "authorized_access_point": "Côte d'Ivoire"} 1 +2024-09-11 09:10:51.226822 2024-09-11 09:10:51.226826 8f794184-a1d2-4ec0-9471-70f0f779f07c {"md5": "e653a12f6d4de463bdc82ac33fa4d5e6", "pid": "027230422", "note": [{"label": ["GDEL. GKD, 1980", "Colonia Agrippinensis : Festschrift der 43. Versammlung deutscher Philologen und Schulmänner, 1895"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Cologne (Allemagne ; est)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027230422", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11931745m", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/6135148574319424430006", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)040314839", "source": "GND"}], "variant_access_point": ["Köln (Allemagne)", "Koeln (Allemagne)", "Colonia Agrippinensis (ville ancienne)"], "authorized_access_point": "Cologne (Allemagne)"} 1 +2024-09-11 09:10:51.286058 2024-09-11 09:10:51.286066 9c02f1b8-7893-4714-890b-f69eb54c6291 {"md5": "87b941879ceea47081a257691f25af96", "pid": "027230430", "note": [{"label": ["IFLA, Names of states, 1981. GLU. BN ACO. Laval RVM, 1995-02"], "noteType": "dataSource"}, {"label": ["Après l'éclatement de la Grande-Colombie, l'actuelle République de Colombie a porté successivement les noms de \\"République de Nouvelle-Grenade\\" (República de Nueva Granada) (1830-1858), \\"Confédération grenadine\\" (Confederación granadina) (1858-1861), et \\"États-Unis de Colombie\\" (Estados Unidos de Colombia) (1861-1880)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Andes (région)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027230430", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040318125", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/127757650", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Colombie", "source": "WIKIPEDIA"}], "variant_access_point": ["Colombia", "Confederación granadina", "Estados Unidos de Colombia", "Nouvelle-Grenade", "Nueva Granada"], "authorized_access_point": "Colombie"} 1 +2024-09-11 09:10:51.34555 2024-09-11 09:10:51.345554 56c2aa5f-1922-44c4-818a-e4e2945e1d2e {"md5": "0e9403d1fd4c168886e545e149a48608", "pid": "027231585", "note": [{"label": ["IFLA, Names of states, 1981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pays de l'Union européenne"}, {"authorized_access_point": "Scandinavie"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027231585", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11931839z", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040108775", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/150081023", "source": "VIAF"}], "variant_access_point": ["Danmark"], "authorized_access_point": "Danemark"} 1 +2024-09-11 09:10:51.416458 2024-09-11 09:10:51.416468 8da12427-eda0-45aa-9dd4-e2090f627635 {"md5": "de30fbb0f4208404f12eb9b9bd388de2", "pid": "027234274", "note": [{"label": ["GLU. Laval RVM, 1993-02"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europe du Sud"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Espagne"}, {"authorized_access_point": "Portugal"}, {"authorized_access_point": "Hispanie ultérieure"}, {"authorized_access_point": "Hispanie citérieure"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027234274", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119320646", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040479129", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172655949", "source": "VIAF"}], "variant_access_point": ["Hispanie", "Ibérie", "Péninsule ibérique", "Péninsule ibérique (Espagne)", "Péninsule ibérique (Portugal)"], "authorized_access_point": "Ibérique, Péninsule"} 1 +2024-09-11 09:10:51.490857 2024-09-11 09:10:51.490865 5ed6beaa-3296-4e98-9335-c0b8ef208a1b {"md5": "abad9fe269ba0e350ec9ac48792c37cd", "pid": "027234592", "note": [{"label": ["Sous cette vedette on trouve les ouvrages qui traitent des pays où la majorité de la population est musulmane, ou dont l'islam est la religion reconnue"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027234592", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11932087v", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040731723", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173581056", "source": "VIAF"}], "variant_access_point": ["États islamiques", "Islamiques, Pays", "Musulmans, Pays", "Pays musulmans"], "authorized_access_point": "Pays islamiques"} 1 +2024-09-11 09:10:51.544542 2024-09-11 09:10:51.544545 b7abae76-4e27-4db6-85f2-2ecec731c7b9 {"md5": "ee7d37cd0ad27624fb074b59693a846d", "pid": "027235769", "note": [{"label": ["GDEL. Atlas universalis. LCSH, 1987"], "noteType": "dataSource"}, {"label": ["Emploi direct en subdivision : [Sujet] -- Jérusalem"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Jérusalem - Katamon"}, {"authorized_access_point": "Jérusalem - Talbiyeh"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027235769", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119321723", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040285863", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/23147121724526391653", "source": "VIAF"}], "variant_access_point": ["al Quds", "القدس", "al-Quds", "أورشليم", "Ūršalīm", "Yerushalayim", "Yrẇšalayim"], "authorized_access_point": "Jérusalem"} 1 +2024-09-11 09:10:51.58871 2024-09-11 09:10:51.588713 0764fbf8-dd88-4ca5-a0ff-0f55df405a48 {"md5": "19e8a91ec30ed3f5b8442712c13b0608", "pid": "027236153", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["Département français (46)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Midi-Pyrénées (France)"}, {"authorized_access_point": "Quercy (France)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027236153", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119322088", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/125492314", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Lot_(département)", "source": "WIKIPEDIA"}], "variant_access_point": ["Lot"], "authorized_access_point": "Lot (France)"} 1 +2024-09-11 09:10:51.639506 2024-09-11 09:10:51.63951 4af5945d-d61d-4762-bda9-e0d7e0b2b69e {"md5": "b7876c3257c100ec68d4dc1237343654", "pid": "027236668", "note": [{"label": ["GLU"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027236668", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11932254f", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040359190<", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/124321959", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Lisbonne", "source": "WIKIPEDIA"}], "variant_access_point": ["Al-Uchbūna (Portugal)", "Felicitas Julia (ville ancienne)", "Lisboa (Portugal)", "Olisipo (ville ancienne)"], "authorized_access_point": "Lisbonne (Portugal)"} 1 +2024-09-11 09:10:51.703649 2024-09-11 09:10:51.703652 e83f03c4-0eaf-4b2f-a12f-2c88d6d54de5 {"md5": "d1b8f33919913b1752d6972e5d6c4d70", "pid": "027237257", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["En précision de lieu employer La., par ex. Baton Rouge (La.)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "États-Unis (Vieux Sud-Ouest)"}, {"authorized_access_point": "États-Unis - États"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027237257", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040363945", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172764975", "source": "VIAF"}], "variant_access_point": ["Louisiana (États-Unis)"], "authorized_access_point": "Louisiane (États-Unis)"} 1 +2024-09-11 09:10:51.760419 2024-09-11 09:10:51.760424 658faced-e343-4169-8ffc-6e547cdd296f {"md5": "99efb6a32d50baeb5791e6f60c36e0c0", "pid": "027238423", "note": [{"label": ["Names of states / IFLA, 1981. LCSH, 1985"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rhodésie et du Nyassaland, Fédération de (1953-1963)"}, {"authorized_access_point": "Afrique australe"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027238423", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/8609148574329424430004", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Malawi", "source": "WIKIPEDIA"}], "variant_access_point": ["Afrique centrale britannique", "Nyasaland", "Nyassaland"], "authorized_access_point": "Malawi"} 1 +2024-09-11 09:10:51.815497 2024-09-11 09:10:51.815571 a28e5f8f-35e3-47d6-8dcd-3f813dd9921f {"md5": "504f3de5f62d5a2efc9d4eb2a78be0c9", "pid": "027239365", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027239365", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040387887", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173636243", "source": "VIAF"}], "authorized_access_point": "Mésopotamie"} 1 +2024-09-11 09:10:51.88713 2024-09-11 09:10:51.887135 096f4bab-c52f-4a0a-9189-18f2e318ba3c {"md5": "6c37d04a419d4df7a35a83f76fc6b886", "pid": "027240525", "note": [{"label": ["GLU. SWD, 1991"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique australe"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027240525", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb122216301", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04075202X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/2945152988203912790008", "source": "VIAF"}], "variant_access_point": ["Deutsch-Südwestafrika", "Namibia", "South West Africa", "Sud-Ouest africain", "Südwestafrika"], "authorized_access_point": "Namibie"} 1 +2024-09-11 09:10:51.952537 2024-09-11 09:10:51.952541 d928f686-50d8-4cb0-8e80-5e077b454b8c {"md5": "5ab83fd2bad768829d255b4b56978332", "pid": "027241912", "note": [{"label": ["GLU, 1991. Encycl. universalis, 1989", "Laval RVM, 1996-08"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages sur le continent antarctique ainsi que sur les terres situées au sud du 60e parallèle, concernées par le Traité sur l'Antarctique (1959)", "Les lieux situés dans l'Antarctique sont localisés à Antarctique (sauf le pôle sud) ; ils s'utilisent en subdivision indirectement, par l'intermédiaire d'Antarctique"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Régions polaires"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027241912", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15238492b", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040022080", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/113150032973411180002", "source": "VIAF"}], "variant_access_point": ["Antarctide", "Antarctiques, Régions", "Continent antarctique", "Régions antarctiques", "Terres antarctiques"], "authorized_access_point": "Antarctique"} 1 +2024-09-11 09:10:52.007397 2024-09-11 09:10:52.007401 7a6b26d1-1a3a-4f0b-a5d0-c5dd801f4c6f {"md5": "2a34e24a150951537d9edb3213007aed", "pid": "027242005", "note": [{"label": ["IFLA, Names of states, 1981. GLU. BN ACO (en ligne), 1995-07-07. Laval RVM, 1995-02", "https://www.insee.fr/fr/metadonnees/cog/, 2017-04-28", "http://www.geonames.org/, 2017-04-28"], "noteType": "dataSource"}, {"label": ["Emploi direct en subdivision : [Sujet] -- La Réunion", "Département d'outre-mer de la France"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Indien, Îles de l'océan"}, {"authorized_access_point": "Mascareignes (îles)"}, {"authorized_access_point": "France - Départements et régions d'outre-mer"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027242005", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15326035w", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040496392", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/129722462", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "089774507"}, "variant_access_point": ["Bonaparte, Île (France)", "Bourbon, Île (France)", "Île Bourbon (France)", "Réunion, Île de la (France)", "Île de La Réunion (France)", "Réunion (France ; île)", "La Réunion", "La Réunion (île)", "Réunion"], "authorized_access_point": "La Réunion (France ; île)"} 1 +2024-09-11 09:10:52.095329 2024-09-11 09:10:52.095336 91465cf6-f1f5-494a-90c3-029a681afb38 {"md5": "2faf703daf0793527e36063aaff90312", "pid": "027242676", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027242676", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)041240626", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172385555", "source": "VIAF"}], "variant_access_point": ["Vallée du Rhin"], "authorized_access_point": "Rhin, Vallée du"} 1 +2024-09-11 09:10:52.151842 2024-09-11 09:10:52.151846 9c29c2e1-3311-41a6-b06d-19d4d582d9ff {"md5": "ce93a6528c4712864329730cdddef988", "pid": "027243265", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Océanie"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027243265", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040467090", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173418425", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Polynésie", "source": "WIKIPEDIA"}], "authorized_access_point": "Polynésie"} 1 +2024-09-11 09:10:52.213489 2024-09-11 09:10:52.213494 6a8cb339-eb12-43c8-b197-abb2f888aa74 {"md5": "2568896ba3cfb0803dc0a5f599d7f826", "pid": "02724606X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pays de langues germaniques"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02724606X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11933043g", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040703703", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173145199", "source": "VIAF"}], "variant_access_point": ["Pays germanophones", "Régions de langue allemande", "Germanophonie", "Europe germanophone"], "authorized_access_point": "Pays de langue allemande"} 1 +2024-09-11 09:10:52.265964 2024-09-11 09:10:52.265971 2e194688-c63f-419e-88d7-8ee783acc264 {"md5": "17907b57022587e8a2a37d61100ebb50", "pid": "027247740", "note": [{"label": ["GLU. Laval RVM, 2000-01"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les documents sur la région qui forme aujourd'hui les deux départements français de Savoie et de Haute-Savoie. Les documents sur le département de la Savoie sont sous la vedette Savoie (France). Les documents sur la Savoie historique avant 1860 sont sous la vedette Savoie"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rhône-Alpes (France)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027247740", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11933188q", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/172331909", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Savoie", "source": "WIKIPEDIA"}], "authorized_access_point": "Savoie (France ; région)"} 1 +2024-09-11 09:10:52.332964 2024-09-11 09:10:52.332972 18665cf0-e1ea-4654-a121-a3f83d5343d2 {"md5": "8c45cc5366a8119c9371acbb8ca9d771", "pid": "027248704", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027248704", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04054671", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/142678783", "source": "VIAF"}], "variant_access_point": ["Sevilla (Espagne)"], "authorized_access_point": "Séville (Espagne)"} 1 +2024-09-11 09:10:52.397952 2024-09-11 09:10:52.397961 44dbdb93-794d-476c-8015-3581bb59aa41 {"md5": "7c02eb099ad720647a417bd1663fa1cb", "pid": "027248933", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "related": [{"authorized_access_point": "Anciens pays socialistes"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027248933", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119332807", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040558134", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/315125192", "source": "VIAF"}], "variant_access_point": ["Bloc soviétique", "Communistes, États", "Démocraties populaires", "États communistes", "États socialistes", "Pays communistes", "Pays du rideau de fer", "Pays satellites soviétiques", "Satellites soviétiques (Pays)", "Socialistes, États", "Socialistes, Pays"], "authorized_access_point": "Pays socialistes"} 1 +2024-09-11 09:10:52.466148 2024-09-11 09:10:52.466152 120fcaf6-76ed-4afa-b305-e16d6c9166c3 {"md5": "6f2988787de7075fb855bd7f01eedf3c", "pid": "027250199", "note": [{"label": ["GLU. SY 1993/94"], "noteType": "dataSource"}, {"label": ["Communauté autonome de l'Espagne depuis 1983"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Méditerranée, Îles de la"}, {"authorized_access_point": "Pays catalans"}, {"authorized_access_point": "Espagne - Communautés autonomes"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027250199", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11933372w", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040690989", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/130205220", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Îles_Baléares", "source": "WIKIPEDIA"}], "variant_access_point": ["Balears (Espagne)", "Illes Balears (Espagne)", "Islas Baleares (Espagne)"], "authorized_access_point": "Baléares (Espagne)"} 1 +2024-09-11 09:10:52.528847 2024-09-11 09:10:52.528855 07fec235-ce77-4bc7-a74b-20d4c7cebed5 {"md5": "dd51dd0cbb4644edb545a1009d90bee2", "pid": "027250210", "note": [{"label": ["GLU. Guide bleu, Epagne, 1992"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Barcelone (Espagne ; province)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027250210", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04004503X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173418460", "source": "VIAF"}], "variant_access_point": ["Barcelona (Espagne)", "Barcino (ville ancienne)", "Barcinona (ville ancienne)"], "authorized_access_point": "Barcelone (Espagne)"} 1 +2024-09-11 09:10:52.58793 2024-09-11 09:10:52.587932 ad766e84-9086-41d9-af7b-38d10fa078ab {"md5": "6b0b42523d440903d2dff98f7825202a", "pid": "027250245", "note": [{"label": ["Atlas Le Monde"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027250245", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119333768", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/172547104", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Bari", "source": "WIKIPEDIA"}], "authorized_access_point": "Bari (Italie)"} 1 +2024-09-11 09:10:52.648692 2024-09-11 09:10:52.648699 f653bfc8-a1b7-4cc4-9393-b8f2a18c9345 {"md5": "5b105a343ec15d7e33888509cb2d6aa6", "pid": "027250393", "note": [{"label": ["GLU"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les ouvrages qui traitent de la Bohême au sens strict, ou, pour la période allant jusqu'à 1918, de l'ensemble des pays relevant de la couronne de Bohême, incluant notemment le margraviat de Moravie"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "République tchèque"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027250393", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11933389m", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040074676", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172547115", "source": "VIAF"}], "variant_access_point": ["Bohême", "Bohême (Royaume)", "Böhmen (République tchèque)", "Čechy (République tchèque)", "Couronne de Bohême, Pays de la", "Pays tchèques"], "authorized_access_point": "Bohême (République tchèque)"} 1 +2024-09-11 09:10:52.715762 2024-09-11 09:10:52.715765 835c3b66-dea9-44e7-97f6-88980f3ff5c8 {"md5": "9618ffd3558d154ce99a767fe8d3ff1d", "pid": "027250407", "note": [{"label": ["Atlas Le Monde. GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027250407", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040076164", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/242997663", "source": "VIAF"}, {"type": "uri", "value": "https://ark.frantiq.fr/ark:/26678/pcrtxAvrNy1ySE", "source": "PACTOLS"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Bologne", "source": "WIKIPEDIA"}], "variant_access_point": ["Bologna (Italie)"], "authorized_access_point": "Bologne (Italie)"} 1 +2024-09-11 09:10:52.76313 2024-09-11 09:10:52.763133 b5dac474-b54d-457a-81c5-e64e14a583f2 {"md5": "d02c5a01cc2675903f1c1e773c847d8b", "pid": "027250547", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027250547", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040084604", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/8187154983561567860004", "source": "VIAF"}], "variant_access_point": ["Bruxelles", "Brussel (Belgique)"], "authorized_access_point": "Bruxelles (Belgique)"} 1 +2024-09-11 09:10:52.815604 2024-09-11 09:10:52.815608 7de16cb7-a95c-47c8-8911-b81c4d95ceb4 {"md5": "14ad4d2f53be2abfbfd06f6515cd2389", "pid": "027250636", "note": [{"label": ["GLU"], "noteType": "dataSource"}, {"label": ["En précision de lieu, employer Calif., par ex. Los Angeles (Calif.)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "États-Unis (Nouveau Sud-Ouest)"}, {"authorized_access_point": "États-Unis - États"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027250636", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11933409d", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040293076", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172438990", "source": "VIAF"}], "variant_access_point": ["California (États-Unis)", "Californie"], "authorized_access_point": "Californie (États-Unis)"} 1 +2024-09-11 09:10:52.871578 2024-09-11 09:10:52.871581 b2595eda-ec80-4213-be06-ee7b35754fc1 {"md5": "f93d16ba1f59c4f934d763fd1223c5c1", "pid": "027250695", "note": [{"label": ["SY, 1987/1988. GDEL. Laval RVM suppl., 1987"], "noteType": "dataSource"}, {"label": ["Cette vedette s'emploie directement en subdivision de lieu : [Sujet] -- Canaries. Les lieux situés aux Canaries sont localisés à (Canaries)", "Communauté autonome de l'Espagne. La capitale régionale est alternativement Las Palmas et Santa Cruz de Tenerife"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Atlantique, Îles de l'"}, {"authorized_access_point": "Espagne - Communautés autonomes"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027250695", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12263408m", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04073188X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/148386330", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Îles_Canaries", "source": "WIKIPEDIA"}], "variant_access_point": ["Canaries (îles)", "Îles Fortunées", "Fortunées (îles)", "Canarias"], "authorized_access_point": "Canaries"} 1 +2024-09-11 09:10:52.933668 2024-09-11 09:10:52.933677 3f3779c5-5790-47ff-871d-3050cd2451cf {"md5": "8b1a2a4a87620b2ee785c4ed460a4c04", "pid": "027250857", "note": [{"label": ["GLU, 1991"], "noteType": "dataSource"}, {"label": ["Département français (18)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Berry (France)"}, {"authorized_access_point": "Centre (France)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027250857", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11933428p", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/137228189", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Cher_(département)", "source": "WIKIPEDIA"}], "variant_access_point": ["Cher", "Haut Berry (France)"], "authorized_access_point": "Cher (France)"} 1 +2024-09-11 09:10:52.992263 2024-09-11 09:10:52.992267 40cb13c8-bf4d-4460-be7a-7931b6eb1853 {"md5": "e6ea5a3c11331d5643e3e8b5722f994a", "pid": "027250873", "note": [{"label": ["IFLA, Names of states, 1981. GDEL. SY, 1987/1988. Laval RVM suppl., 1987"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les ouvrages qui traitent de l'île de Chypre et/ou de la République de Chypre, au territoire réduit à la suite de l'intervention turque de 1974. Les ouvrages qui traitent exclusivement de la République turque de Chypre du Nord se trouvent sous la vedette : Chypre du Nord (République turque)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Méditerranée, Îles de la"}, {"authorized_access_point": "Proche-Orient"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027250873", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040795969", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/174324116", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "059675527"}, "variant_access_point": ["Cyprus", "Kibris", "Kypros"], "authorized_access_point": "Chypre"} 1 +2024-09-11 09:10:53.057917 2024-09-11 09:10:53.057921 c4ed599d-1629-4ed7-bfb0-1a7bc1aac9fa {"md5": "2002e4196ee74618b54d1efd5e4c7c26", "pid": "02725089X", "note": [{"label": ["BN ACO"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Copenhague (Danemark) - Quartier de Frederiksstaden"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02725089X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb152399621", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040323994", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/300998144", "source": "VIAF"}], "variant_access_point": ["København (Danemark)", "Hauniae (Danemark)", "Hafniae (Danemark)"], "authorized_access_point": "Copenhague (Danemark)"} 1 +2024-09-11 09:10:53.10276 2024-09-11 09:10:53.102763 51243a7c-eb88-4288-b47f-b7a8803891c4 {"md5": "ee6d223a97236cdebbd28fc0b033da7d", "pid": "02725108X", "note": [{"label": ["IFLA, Names of states, 1981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Antilles hispaniques"}, {"authorized_access_point": "Grandes Antilles"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02725108X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119334489", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04033340X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/162884679", "source": "VIAF"}], "authorized_access_point": "Cuba"} 1 +2024-09-11 09:10:53.166512 2024-09-11 09:10:53.166515 adb3d047-de81-4392-8a64-990cf94c3934 {"md5": "6884411d8ff9c7eb899242d665cf22c8", "pid": "027251160", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rhône-Alpes (France)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027251160", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040909255", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/141826527", "source": "VIAF"}], "variant_access_point": ["Dauphiné de Viennois"], "authorized_access_point": "Dauphiné (France)"} 1 +2024-09-11 09:10:53.249283 2024-09-11 09:10:53.249292 c4bd3dc7-0203-4cae-8463-dde83090cd83 {"md5": "89a0fa2d4e21519e999bf4894a206eb2", "pid": "027251594", "note": [{"label": ["IFLA, Names of states, 1981. GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique du Nord-Est"}, {"authorized_access_point": "Moyen-Orient"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027251594", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040583783", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/150756275", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Soudan", "source": "WIKIPEDIA"}], "variant_access_point": ["Soudan anglo-égyptien", "Sudan", "السودان", "Al-Sūdān"], "authorized_access_point": "Soudan"} 1 +2024-09-11 09:10:53.312464 2024-09-11 09:10:53.312469 0ae25660-7830-4c18-aefc-bb31171270e3 {"md5": "1ca8b275185aa0489230935cdb50c420", "pid": "027251659", "note": [{"label": ["Names of states / IFLA, 1981. SY, 1986/1987"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Indochine"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027251659", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11933494g", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04078228X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/138308059", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Thaïlande", "source": "WIKIPEDIA"}], "variant_access_point": ["Muang-Thai", "Prathet Thai", "Siam"], "authorized_access_point": "Thaïlande"} 1 +2024-09-11 09:10:53.375317 2024-09-11 09:10:53.375321 72d1fd79-f4b2-475a-a1c0-9238ae3485d7 {"md5": "17986f6fd03838d24992026d1288d578", "pid": "027251810", "note": [{"label": ["GDEL. BN Service arabe"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027251810", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12570735b", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040376842", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/138361991", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Marrakech", "source": "WIKIPEDIA"}], "variant_access_point": ["Marrākuš (Maroc)"], "authorized_access_point": "Marrakech (Maroc)"} 1 +2024-09-11 09:10:53.42606 2024-09-11 09:10:53.426065 c39eded0-1e38-41d7-8983-e68c111dc0cd {"md5": "3646c77852722137a0f0a8c6fbe459a2", "pid": "027251861", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Méditerranée (mer ; sud-ouest)"}, {"authorized_access_point": "Méditerranée (mer ; est)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027251861", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/307211045", "source": "VIAF"}], "variant_access_point": ["Méditerranée"], "authorized_access_point": "Méditerranée (mer)"} 1 +2024-09-11 09:10:53.482054 2024-09-11 09:10:53.482058 8098c027-7400-4f37-8a5b-9c1879851a10 {"md5": "a81d111a2d5e8fd5c8a4ffebaad82fe2", "pid": "027252132", "note": [{"label": ["Names of states / IFLA, 1981. LCSH, 1985"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique australe"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Inhambane (Mozambique ; province)"}, {"authorized_access_point": "Nampula (Mozambique ; province)"}, {"authorized_access_point": "Zambézie (Mozambique)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027252132", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12246813m", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040397866", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/130895295", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/République_populaire_du_Mozambique", "source": "WIKIPEDIA"}], "relation_pid": {"type": "redirect_from", "value": "031209068"}, "variant_access_point": ["Moçambique"], "authorized_access_point": "Mozambique"} 1 +2024-09-11 09:10:53.552921 2024-09-11 09:10:53.552925 d5a87fc7-4424-4da6-bb42-1f5d403ce554 {"md5": "ff1c399a11e73c7b18599aa41bcf399b", "pid": "027252175", "note": [{"label": ["Names of states / IFLA, 1981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Asie du Sud"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027252175", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040416127", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/5689148574317624430000", "source": "VIAF"}], "authorized_access_point": "Népal"} 1 +2024-09-11 09:10:53.601909 2024-09-11 09:10:53.601912 507e1feb-fee9-438b-bbd0-60cbc63dcfe0 {"md5": "e6474f3582d2a2f395d8b32138005d91", "pid": "027252272", "note": [{"label": ["GLU"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de l'ensemble de l'empire turc osmanli. Les ouvrages sur la République turque ou sur la seule Anatolie se trouvent sous la vedette Turquie"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Orient"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027252272", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04075720X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/5493148574275724430005", "source": "VIAF"}], "variant_access_point": ["Empire turc", "Ottoman, Empire"], "authorized_access_point": "Empire ottoman"} 1 +2024-09-11 09:10:53.671681 2024-09-11 09:10:53.671685 fb10e53d-236f-4008-9976-e11fd47ce12a {"md5": "6f0629c6e192b4746b8d4f85662439e7", "pid": "027252485", "note": [{"label": ["GDEL. Nordrhein-Westfalen ; GKD, 1980 ; BN ACO"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rhénanie (Allemagne)"}, {"authorized_access_point": "Allemagne - Länder"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027252485", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040425703", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173527834", "source": "VIAF"}], "variant_access_point": ["Nordrhein-Westfalen"], "authorized_access_point": "Rhénanie du Nord-Westphalie (Allemagne)"} 1 +2024-09-11 09:10:53.743531 2024-09-11 09:10:53.743534 36ebcce8-e2bd-49b5-8965-4df49d4388a1 {"md5": "4106fa410577d0648c2c532ff13f53f9", "pid": "027252620", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027252620", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04051658X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/9662148705732037080009", "source": "VIAF"}, {"type": "uri", "value": "http://viaf.org/viaf/122531297", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "169986365"}, "variant_access_point": ["Santiago de Compostela (Espagne)"], "authorized_access_point": "Saint-Jacques-de-Compostelle (Espagne)"} 1 +2024-09-11 09:10:53.808877 2024-09-11 09:10:53.808881 15cfc4b3-3a76-4b47-99a1-c39cc1a20b13 {"md5": "03cdb7cdb1c1eaa48101a6d4b0c35a3c", "pid": "027252728", "note": [{"label": ["Dict. communes, 1992. GDEL. Rachet. Dict. archéol. de France"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027252728", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119335833", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/236092358", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Saint-Romain-en-Gal", "source": "WIKIPEDIA"}], "authorized_access_point": "Saint-Romain-en-Gal (Rhône)"} 1 +2024-09-11 09:10:53.863695 2024-09-11 09:10:53.863699 c79fd107-9887-4cc6-aec3-80ffad422ba0 {"md5": "c018dcc10da790957fab9e21d4d323b3", "pid": "027255697", "note": [{"label": ["Viet-Nam : BN ACO ; IFLA, Names of states, 1981. Viêt Nam : Pays et capitales du monde / IGN, 1992. Vietnam : LCNA, 1977-1986 ; Encycl. universalis, 1984, t.18, p.820 sq. Viet Nam : Manuel de l'Unesco, 1985. Viêt-nam : GLU ; Laval RVM, 1995-08 ; GKD, 1994-05. Việt Nam : GKD, 1980"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Indochine"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027255697", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119337871", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/155871049", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Viêt_Nam", "source": "WIKIPEDIA"}], "variant_access_point": ["Viet-Nam", "Viet-Nam (République socialiste)"], "authorized_access_point": "Vietnam"} 1 +2024-09-11 09:10:53.920753 2024-09-11 09:10:53.920757 e7caccd4-9222-4fa2-a0e7-7749223092e6 {"md5": "05886d7837a8ca7134a0848379342919", "pid": "027256693", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027256693", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040639444", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/8161148574369124430000", "source": "VIAF"}], "authorized_access_point": "Vorarlberg (Autriche)"} 1 +2024-09-11 09:10:53.982435 2024-09-11 09:10:53.982439 91dd8b01-9f58-4120-8f68-c112baf20fb5 {"md5": "99264183420d9ab5526ba1ce33d594a9", "pid": "027257525", "note": [{"label": ["GDEL", "BNF"], "noteType": "dataSource"}, {"label": ["Le Pays basque, du côté français, se limite aux arrondissements de Bayonne, et pour une faible part, d'Oloron-Sainte-Marie (pays de Soule)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pays basque"}, {"authorized_access_point": "Pyrénées-Atlantiques (France)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Labourd (France)"}, {"authorized_access_point": "Navarre (France)"}, {"authorized_access_point": "Soule, Pays de (France)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027257525", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119339131", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040802809", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/130232465", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Pays_basque_français", "source": "WIKIPEDIA"}], "variant_access_point": ["Basque, Pays (Pyrénées-Atlantiques)", "Euzkadi (nord)", "Ipar Euskal Herria", "Iparraldea", "Pays basque (France)", "Pays basque (nord)"], "authorized_access_point": "Pays basque (Pyrénées-Atlantiques)"} 1 +2024-09-11 09:10:54.047076 2024-09-11 09:10:54.047085 01efa89f-f016-4a5c-89e2-7f7437e5b50b {"md5": "ffb9fd46ed565d0cac1defbe67d08b0f", "pid": "027259641", "note": [{"label": ["GDEL. SY, 1990-91"], "noteType": "dataSource"}, {"label": ["Canton suisse"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027259641", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040000222", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/57148570704724312118", "source": "VIAF"}], "variant_access_point": ["Aargau (Suisse)"], "authorized_access_point": "Argovie (Suisse)"} 1 +2024-09-11 09:10:54.101911 2024-09-11 09:10:54.101919 93b50744-25d6-4636-a2e8-1ade11fb8b56 {"md5": "6e4ab7fb33229807ade349b88c33e1f1", "pid": "027259811", "note": [{"label": ["Basque-English dict. / G. Aulestia, 1989"], "noteType": "dataSource"}, {"label": ["Les termes Euskalerri, Euskal herri, designent le Pays basque dans son ensemble, en tant qu'entité historico-culturelle (littéralement :\\"pays de la langue basque\\"). Le terme Euzkadi s'applique soit au Pays basque, entité politique autonome espagnole, soit à l'ensemble du Pays basque (supposé réuni)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Pays basque (Espagne)"}, {"authorized_access_point": "Pays basque (Pyrénées-Atlantiques)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027259811", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11934078c", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)042569087", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173145229", "source": "VIAF"}], "variant_access_point": ["Basque, Pays", "Euskal herri", "Euskalerri", "Euzkadi"], "authorized_access_point": "Pays basque"} 1 +2024-09-11 09:10:54.159527 2024-09-11 09:10:54.159532 3fac2f26-eee5-4a37-86ed-4949de961f59 {"md5": "1ebae3dd63a89877000b174a8c5f1257", "pid": "027260011", "note": [{"label": ["GDEL", "Brandenburg (Havel, Staat) ; GKD, 1980", "Brandenburg (Germany and Poland) ; LCSH, 1990-06"], "noteType": "dataSource"}, {"label": ["Margraviat, puis Électorat du Saint-Empire, province prussienne à partir de 1701, le Brandebourg est aujourd'hui un Land allemand. - Une partie de l'ancien Brandebourg, située à l'est de l'Oder, est aujourd'hui en Pologne"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Allemagne - Länder"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Nowa Marchia (Pologne)"}, {"authorized_access_point": "Basse-Lusace (Allemagne)"}, {"authorized_access_point": "Templin (Allemagne)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027260011", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119340938", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040079554", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/246066379", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "144260069"}, "variant_access_point": ["Brandebourg (Allemagne ; Land)", "Brandebourg (Allemagne ; province)", "Brandebourg (Électorat)", "Brandebourg (Margraviat)", "Brandenburg (Allemagne ; État)"], "authorized_access_point": "Brandebourg (Allemagne ; État)"} 1 +2024-09-11 09:10:54.219695 2024-09-11 09:10:54.219699 9bdf3eed-f27f-45dc-ae69-ca84f5fe5185 {"md5": "6a4d6da27903883bec926f19db154e5a", "pid": "02726002X", "note": [{"label": ["Nordeste ; GLU", "Nordeste (Brésil) ; Laval RVM, 1996-02"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Brésil"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02726002X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11934094m", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040899535", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/155483347", "source": "VIAF"}], "variant_access_point": ["Nordeste (Brésil)", "Brésil (Nordeste)", "Nordeste (Brasil)", "Brasil (Nordeste)"], "authorized_access_point": "Brésil (nord-est)"} 1 +2024-09-11 09:10:54.280375 2024-09-11 09:10:54.280385 22b0c8fa-b635-44dd-8e67-285954a7f3ff {"md5": "60fd407c7da3221750deaa5410c8fc76", "pid": "027260461", "note": [{"label": ["Sous cette vedette, on trouve les ouvrages sur les pays membres de la Communauté (avant fin 1993) comme de l'Union européenne, considérés comme une entité géographique. De ce fait, cette vedette peut être employée en subdivision, ou être suivie des subdivisions propres aux noms de lieu. Les ouvrages sur l'Union européenne en tant qu'organisation internationale se trouvent sous la vedette Union européenne, ou sous la vedette de collectivité appropriée, notamment Communauté européenne pour les ouvrages portant sur la période antérieure à novembre 1993", "1-1-1958 : Allemagne (RFA), Belgique, France, Italie, Luxembourg, Pays-Bas. 1-1-1973 : Danemark, Grande-Bretagne, Irlande. 1-1-1981 : Grèce. 1-1-1986 : Espagne, Portugal. 1-1-1995 : Autriche, Finlande, Suède. 1-5-2004 : Malte, Chypre, Slovénie, Estonie, Lettonie, Lituanie, Pologne, République tchèque, Slovaquie, Hongrie. 1-1-2007 : Bulgarie, Roumanie. Le Groenland (pays associé au Danemark) s'est retiré en 1982 (référendum du 23-02) ; la Norvège a refusé son adhésion en 1972, puis en 1994 (référendum du 28-11)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europe"}, {"authorized_access_point": "Europe de l'Ouest"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027260461", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11934129f", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040583929", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/170452307", "source": "VIAF"}], "variant_access_point": ["CEE, Pays de la", "Communauté européenne, Pays de la", "États de l'Union européenne", "Europe de Maastricht", "Pays de l'UE", "Pays de la CEE", "Pays de la Communauté économique européenne", "Pays de la Communauté européenne", "Pays des Communautés européennes", "Pays du Marché commun européen", "Union européenne, Pays de l'"], "authorized_access_point": "Pays de l'Union européenne"} 1 +2024-09-11 09:10:54.35323 2024-09-11 09:10:54.353238 eca6624f-89c3-45ce-af56-f829700ceb30 {"md5": "f8ef57c4893e417eef6d70ea85a7a132", "pid": "027260607", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027260607", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040322157", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/4526148574271724430007", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Constance_(Allemagne)", "source": "WIKIPEDIA"}], "variant_access_point": ["Konstanz (Allemagne)"], "authorized_access_point": "Constance (Allemagne)"} 1 +2024-09-11 09:10:54.427354 2024-09-11 09:10:54.427359 02da0f4e-a8ba-42bb-9261-6d262d2d89fd {"md5": "39fe3c131bf3763f470a79e6bdea3d0a", "pid": "027261050", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Grande-Bretagne"}, {"authorized_access_point": "Pays celtiques"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Lowlands (GB)"}, {"authorized_access_point": "Strathclyde (GB ; région)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027261050", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119341659", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04053233X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/148914377", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Écosse", "source": "WIKIPEDIA"}], "variant_access_point": ["Scotland", "Écosse", "Grande-Bretagne (nord)"], "authorized_access_point": "Écosse (GB)"} 1 +2024-09-11 09:10:54.494909 2024-09-11 09:10:54.494914 eb7b1554-ee82-4b3c-8682-aed522b99d2a {"md5": "402d1d77fca7862e01acb9e04e10dbf6", "pid": "027261204", "note": [{"label": ["États-Unis (Sud) ; Laval RVM, 1994-02"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent des 11 anciens États confédérés (Alabama, Arkansas, Caroline du N., Caroline du S., Floride, Géorgie, Louisiane, Mississippi, Tennessee, Texas et Virginie), ou des seuls États situés à l'est du Mississippi"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "États du Sun Belt (États-Unis)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027261204", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11934175m", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040786749", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172385572", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Sud_des_États-Unis", "source": "WIKIPEDIA"}], "variant_access_point": ["États du Sud (États-Unis)", "États-Unis (sud-est)", "Southern States (États-Unis)", "Sud, États du (États-Unis)", "Vieux Sud (États-Unis)"], "authorized_access_point": "États-Unis (sud)"} 1 +2024-09-11 09:10:54.571965 2024-09-11 09:10:54.571968 0aadab2f-3765-4256-8d76-5ad9fe114624 {"md5": "1766d617cf2fc52d262f988f9ba1955a", "pid": "027261336", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027261336", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/153634112", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Comté_de_Foix", "source": "WIKIPEDIA"}], "authorized_access_point": "Foix (Comté)"} 1 +2024-09-11 09:10:54.621545 2024-09-11 09:10:54.621549 aaf3b927-ef20-4d3a-a257-b67b3b80c640 {"md5": "02f0955855b1bf82aa5d45cf97fe3ecc", "pid": "027261417", "note": [{"label": ["Names of states / IFLA, 1981. LCSH, 1985"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique centrale"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027261417", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119341957", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040190528", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/6762148574322124430000", "source": "VIAF"}], "authorized_access_point": "Gabon"} 1 +2024-09-11 09:10:54.680848 2024-09-11 09:10:54.680852 88000370-7a4c-4837-8a38-7eb85c65bed2 {"md5": "595ca4d2bc9c3ae44b0ba8c359412227", "pid": "027261530", "note": [{"label": ["Dict. communes, 1992. GLU"], "noteType": "dataSource"}, {"label": ["Coordonnées géographiques : E 5°43' / N 45°11", "Gentilé : Grenoblois"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Grenoble (Isère ; région)"}], "related": [{"authorized_access_point": "Grenoble (Isère ; agglomération)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027261530", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15238650z", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119342062", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/170334907", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Grenoble", "source": "WIKIPEDIA"}], "classification": [{"name": "Géographie de la France", "type": "bf:ClassificationDdc", "classificationPortion": "912"}], "variant_access_point": ["Cularo (ville ancienne, 43 av. JC)", "Gratianopolis (ville ancienne, 377)", "Grelibre (1793)", "Grenoble"], "authorized_access_point": "Grenoble (Isère)"} 1 +2024-09-11 09:10:54.734909 2024-09-11 09:10:54.734912 95455b7b-1ba4-430f-8aac-1e95697b5dd5 {"md5": "e56cffa8a40a5fad2056d238b310a93f", "pid": "027262111", "note": [{"label": ["Names of states / IFLA, 1981. LCNA, 1985", "Grand Larousse universel", "Robert encyclopédique des noms propres 2008", "Encycl. universalis - http://www.universalis-edu.com (2013-01-11)", "L'État d'Israël / A. Chouraqui, 1998"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les documents sur l'État d'Israël proclamé le 14 mai 1948 et/ou sur Israël et les territoires occupés. Les documents sur l'ancien royaume d'Israël se trouvent sous Israël (Royaume)", "Pour la période antérieure à 1948, ne pas employer \\"Israël\\", mais \\"Palestine\\", sauf pour la construction indirecte, par ex. : Architecture -- Palestine -- 1900-1945 ; Architecture -- Israël -- Haïfa (Israël) -- 1900-1945"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Et Israël [sans subd. géogr.] aux collectivités et aux personnes", "Voir aussi la subdivision Opinion publique israélienne [sans subd. géogr.] aux guerres et aux lieux"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "related": [{"authorized_access_point": "Proche-Orient"}, {"authorized_access_point": "Palestine"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027262111", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040278085", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/5668155226761984490000", "source": "VIAF"}], "classification": [{"name": "Géographie du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "915"}], "variant_access_point": ["Yiśra'el"], "authorized_access_point": "Israël"} 1 +2024-09-11 09:10:54.804417 2024-09-11 09:10:54.804422 2694964a-97b7-401c-bc99-8fc38f97122d {"md5": "467068ec6e4fd26f9c0eccdfa84c243c", "pid": "027262464", "note": [{"label": ["GDEL. Le Monde, 8/9 sept. 1991"], "noteType": "dataSource"}, {"label": ["Fondée en 1703, Saint-Pétersbourg devient Pétrograd en 1914, puis Léningrad en 1924 et redevient Saint-Pétersbourg en 1991 (referendum du 12-6, décision du Soviet suprême de Russie du 6-9)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027262464", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119342736", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)042670268", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/139487820", "source": "VIAF"}], "variant_access_point": ["Saint Pétersbourg (Russie)", "Léningrad (URSS)", "Pétrograd (Russie)", "Saint Petersburg", "St Petersburg", "Санкт-Петербу́рг"], "authorized_access_point": "Saint-Pétersbourg (Russie)"} 1 +2024-09-11 09:10:54.869576 2024-09-11 09:10:54.869581 de5799c9-91f4-4fd1-bd3d-e02b1b20f4fc {"md5": "5dc41fcc7f9dd17626180e0e4473a12c", "pid": "027262545", "note": [{"label": ["IFLA, Names of states, 1981. GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique du Nord"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027262545", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15323238r", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040355896", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/2704148574305224430002", "source": "VIAF"}], "variant_access_point": ["Jamahiriya arabe libyenne", "Lībiyā"], "authorized_access_point": "Libye"} 1 +2024-09-11 09:10:55.323221 2024-09-11 09:10:55.32323 ea081e27-1349-486c-9c04-9166880ff848 {"md5": "c012d167b01dbb8d24fd910d09e1d6f2", "pid": "027263762", "note": [{"label": ["GLU. Laval RVM, 2000-01"], "noteType": "dataSource"}, {"label": ["Voir aussi la subdivision Et la Norvège aux collectivités et aux personnes"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Scandinavie"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027263762", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040754715", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/727148574256024430009", "source": "VIAF"}], "variant_access_point": ["Norge", "Noreg"], "authorized_access_point": "Norvège"} 1 +2024-09-11 09:10:54.935186 2024-09-11 09:10:54.93519 0905c41c-947d-49c7-99db-4185d0ca6271 {"md5": "0500ca965faca1650c36770a6acd2dc5", "pid": "027262685", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent du duché puis province de Lorraine et/ou de l'actuelle région de Lorraine"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "France (est)"}, {"authorized_access_point": "France (nord-est)"}, {"authorized_access_point": "Lotharingie"}, {"authorized_access_point": "France - Régions"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027262685", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119342914", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040363775", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/144260070", "source": "VIAF"}], "variant_access_point": ["Lorraine", "Lorraine (Duché)", "Lothringen (France)"], "authorized_access_point": "Lorraine (France)"} 1 +2024-09-11 09:10:55.001505 2024-09-11 09:10:55.001508 fd4f1507-f2a2-48d4-9945-f4b226b5c6d6 {"md5": "93a0a8abcc7b94f34ef4050494651e31", "pid": "027263053", "note": [{"label": ["GLU, 1991. Mourre, 1986", "Zai͏̈re ; Laval RVM, 1997-02"], "noteType": "dataSource"}, {"label": ["La République démocratique du Congo, indépendante le 30 juin 1960, a pris le nom de Zaïre d'octobre 1971 à mai 1997"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Et le Congo (République démocratique) aux personnes et collectivités"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique centrale"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027263053", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11934318b", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04067357X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/5843158188242320260008", "source": "VIAF"}], "variant_access_point": ["Congo", "Congo (État indépendant ; 1885-1908)", "Congo belge", "Congo-Kinshasa", "Congo-Léopoldville", "État indépendant du Congo (1885-1908)", "Zaïre"], "authorized_access_point": "Congo (République démocratique)"} 1 +2024-09-11 09:10:55.062386 2024-09-11 09:10:55.062389 4532355e-9492-4b4d-aed9-c346419282f8 {"md5": "738e8651cbee4d0061f2e79fa59cb34f", "pid": "027263118", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Allemagne - Länder"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027263118", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12031086v", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040422267", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/4086154387419430970003", "source": "VIAF"}, {"type": "uri", "value": "http://viaf.org/viaf/14144647646568895784", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "028483960"}, "variant_access_point": ["Basse-Saxe", "Niedersachsen (Allemagne)", "Saxe, Basse- (Allemagne)"], "authorized_access_point": "Basse-Saxe (Allemagne)"} 1 +2024-09-11 09:10:55.132537 2024-09-11 09:10:55.13254 60f870af-bcf9-412f-9281-8f8f9e927eb9 {"md5": "8649cfe09fd8c5350df590bbb59eca77", "pid": "027263193", "note": [{"label": ["Grand Larousse universel", "Dict. univ. d'histoire / M. Mourre, 1996", "Le Monde, 2006-06-15"], "noteType": "dataSource"}, {"label": ["Royaume incorporé à la Yougoslavie en 1918, la Serbie constitue l'une des républiques fédérées de la Yougoslavie (1946), puis de la Serbie-et-Monténégro (2003) ; elle est indépendante depuis le 5 juin 2006"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Balkans"}], "related": [{"authorized_access_point": "Serbie-et-Monténégro"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Kosovo (Serbie)"}, {"authorized_access_point": "Sandžak (Serbie, Monténégro ; région)"}, {"authorized_access_point": "Voïvodine (Serbie)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027263193", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040545989", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/1427148574258824430000", "source": "VIAF"}], "variant_access_point": ["Serbie (Serbie-et-Monténégro)", "Србија", "Srbija"], "authorized_access_point": "Serbie"} 1 +2024-09-11 09:10:55.197306 2024-09-11 09:10:55.197308 1727e16c-9ffe-40ed-ace5-c4351bb66700 {"md5": "4af3da21a61f3529718995ca318d8c43", "pid": "027263495", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Hispanie ultérieure"}, {"authorized_access_point": "Espagne - Communautés autonomes"}], "related": [{"authorized_access_point": "Al-Andalus"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027263495", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040019098", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/132461455", "source": "VIAF"}], "variant_access_point": ["Andalucía (Espagne)", "Baetica", "Bétique", "Tarsis"], "authorized_access_point": "Andalousie (Espagne)"} 1 +2024-09-11 09:10:55.25606 2024-09-11 09:10:55.256067 d4c190d5-4b9b-44e7-97de-b540792976da {"md5": "735bb467af6383af9bcc8c0a7d3fcf1d", "pid": "027263746", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["Département français (59)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Nord-Pas-de-Calais (France)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027263746", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/1075148574257424430006", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Nord_(département_français)", "source": "WIKIPEDIA"}], "variant_access_point": ["Nord"], "authorized_access_point": "Nord (France)"} 1 +2024-09-11 09:10:55.924997 2024-09-11 09:10:55.925001 c9f6589d-0435-497c-9b6e-d949b5237176 {"md5": "66bb40212f1ef012c56660c8ad575a14", "pid": "027274985", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Italie (nord)"}, {"authorized_access_point": "Italie - Régions"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027274985", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040460398", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/132508744", "source": "VIAF"}], "variant_access_point": ["Piémont", "Piemonte (Italie)"], "authorized_access_point": "Piémont (Italie)"} 1 +2024-09-11 09:10:55.399708 2024-09-11 09:10:55.399715 1fb41a66-5823-4113-93e2-622811045775 {"md5": "784e5080968e0ed865e704ceaf0eebaa", "pid": "027263789", "note": [{"label": ["GDEL. Quid, 1989. SY, 1990/1991"], "noteType": "dataSource"}, {"label": ["Communauté autonome (statut du 9-6-1982 ; chef-lieu : Logroño), comprenant la province de Logroño auparavant en Vieille-Castille"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Espagne - Communautés autonomes"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027263789", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/173199850", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/La_Rioja", "source": "WIKIPEDIA"}], "variant_access_point": ["Logroño (Espagne ; province)", "Rioja, La (Espagne)"], "authorized_access_point": "La Rioja (Espagne ; Communauté autonome)"} 1 +2024-09-11 09:10:55.470635 2024-09-11 09:10:55.470643 a8df8b8d-c811-488a-b3a8-ca0888d2b55b {"md5": "dc29b21108853083120d8f733c5bec79", "pid": "027263878", "note": [{"label": ["Atlas Le Monde"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027263878", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040798828", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/17148570434724310085", "source": "VIAF"}], "authorized_access_point": "Auvernier (Neuchâtel, Suisse)"} 1 +2024-09-11 09:10:55.54248 2024-09-11 09:10:55.542484 1c4dcaa6-27f3-4152-ae49-e76712d52686 {"md5": "cc7405309b66f34c62b72bbdab5c68e4", "pid": "027264602", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europe centrale"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027264602", "source": "IDREF"}, {"type": "bf:Nbn", "value": "ark:/12148/cb11934437w", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040553027", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/6399148574320624430003", "source": "VIAF"}], "variant_access_point": ["Slovenija"], "authorized_access_point": "Slovénie"} 1 +2024-09-11 09:10:55.588636 2024-09-11 09:10:55.588639 dc9da061-16c3-4c18-bd7f-11f5b1dd4bbd {"md5": "f64424ba31eca72b3c6f6d6ba5f076f8", "pid": "027265013", "note": [{"label": ["GDEL. Rachet", "Eretria (Ancient city) ; LCSH, 1991-03", "Internet, www.catalogue.bnf.fr, 20070417"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027265013", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11934464s", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040855902", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/171148570526024311115", "source": "VIAF"}], "variant_access_point": ["Érétria (ville ancienne)", "Érétria (Grèce)", "Érétrie (ville ancienne)", "Nea Psara (Grèce)"], "authorized_access_point": "Érétrie (Grèce)"} 1 +2024-09-11 09:10:55.663002 2024-09-11 09:10:55.663007 1f4fadac-6be6-4fbe-a38b-e23190d4d776 {"md5": "1d04da0252db2de8b1f65027d9f82363", "pid": "027266060", "note": [{"label": ["Laval RVM, 1983"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Arctique"}, {"authorized_access_point": "Régions polaires"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027266060", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)041179145", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/316891260", "source": "VIAF"}], "authorized_access_point": "Pôle Nord"} 1 +2024-09-11 09:10:55.728515 2024-09-11 09:10:55.728518 50f90b90-09ec-4006-856f-e3cbec3f49d6 {"md5": "88e39cf171715175857435682a1c859c", "pid": "027267873", "note": [{"label": ["BA, 1989"], "noteType": "dataSource"}, {"label": ["Emploi direct en subdivision : [sujet] -- Guyane"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Guyanes"}, {"authorized_access_point": "France - Départements et régions d'outre-mer"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027267873", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040181847", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173457961", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "087992019"}, "variant_access_point": ["Guyane française"], "authorized_access_point": "Guyane"} 1 +2024-09-11 09:10:55.794863 2024-09-11 09:10:55.794869 4a269781-fd92-40fe-8bd4-9e83486c0e90 {"md5": "658142f761b16e82619dc8ca946eee64", "pid": "027274241", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Italie (nord)"}, {"authorized_access_point": "Italie - Régions"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027274241", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040362949", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/134876348", "source": "VIAF"}], "variant_access_point": ["Lombardia (Italie)", "Lombardy (Italie)"], "authorized_access_point": "Lombardie (Italie)"} 1 +2024-09-11 09:10:55.866822 2024-09-11 09:10:55.866826 be135f66-a121-43e7-8ea9-093ebf5581e2 {"md5": "f05898eabb393c8fbd577cc030404103", "pid": "027274365", "note": [{"label": ["Laval RVM, 1992-02"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de la partie de l'Afrique qui s'étend du Soudan au Mozambique"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Afrique du Nord-Est"}, {"authorized_access_point": "Afrique orientale anglophone"}, {"authorized_access_point": "Grands lacs africains (région)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027274365", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16272629n", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040757226", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/170530065", "source": "VIAF"}], "variant_access_point": ["Afrique (est)", "Afrique de l'Est"], "authorized_access_point": "Afrique orientale"} 1 +2024-09-11 09:10:55.99649 2024-09-11 09:10:55.996494 e7ee7b50-b7ab-4fa4-88c8-a3d2a82c76df {"md5": "44d94e043e55e7908767e04775fb914b", "pid": "027275191", "note": [{"label": ["Names of states / IFLA, 1981. LCNA, 1985"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Indien, Îles de l'océan"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027275191", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040546942", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/31148574294324430007", "source": "VIAF"}], "authorized_access_point": "Seychelles"} 1 +2024-09-11 09:10:56.061509 2024-09-11 09:10:56.061513 9537fec0-63d1-49fc-a3f3-f1801115fe3c {"md5": "efa42ed2fe6713a8cc496721cea8cf70", "pid": "027283496", "note": [{"label": ["Atlas universalis. GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Souabe (Allemagne)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027283496", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040536866", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/2083148574385624430003", "source": "VIAF"}], "variant_access_point": ["Schwäbische Alb (Allemagne ; massif)"], "authorized_access_point": "Jura souabe (Allemagne ; massif)"} 1 +2024-09-11 09:10:56.125757 2024-09-11 09:10:56.125765 f6f3f3bb-ab9f-4165-957d-1fd4ed770063 {"md5": "74df160ee8b49d85dd243fd2973b35cd", "pid": "027283518", "note": [{"label": ["GLU, 1991", "Laval RVM, 1997-02"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent : de la région qui s'étend de la mer Caspienne à la Mongolie et la Chine du nord-ouest (inclusivement), et du sud de la Sibérie à l'Afghanistan et au nord de l'Iran (inclusivement) ; ou bien des seules 5 républiques ex-soviétiques considérées collectivement"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Afghanistan"}, {"authorized_access_point": "Kazakhstan"}, {"authorized_access_point": "Kirghizistan"}, {"authorized_access_point": "Mongolie"}, {"authorized_access_point": "Ouzbékistan"}, {"authorized_access_point": "Tadjikistan"}, {"authorized_access_point": "Tibet (Chine)"}, {"authorized_access_point": "Turkménistan"}, {"authorized_access_point": "Xinjiang (Chine)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027283518", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11935913h", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040794873", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/170431196", "source": "VIAF"}], "variant_access_point": ["Asie (centre)", "Asie centrale (CEI)", "Asie centrale russe", "Asie centrale soviétique", "Turkestan", "Turkestan occidental", "Turkestan russe", "Turkestan chinois", "Tartarie", "Grande Tartarie"], "authorized_access_point": "Asie centrale"} 1 +2024-09-11 09:10:56.199369 2024-09-11 09:10:56.199376 d10e12ee-aaf1-4f64-9683-48c22b71329f {"md5": "eddb75bcaab01aaa08c99c85b6cedb30", "pid": "027286703", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["Région d'Italie centrale comprenant 9 provinces (capitale : Florence)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Italie (centre)"}, {"authorized_access_point": "Italie - Régions"}], "related": [{"authorized_access_point": "Étrurie"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027286703", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040604853‏ ", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/128956370", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "123793696"}, "variant_access_point": ["Toscana (Italie)", "Toscane (Grand-duché)"], "authorized_access_point": "Toscane (Italie)"} 1 +2024-09-11 09:10:56.264211 2024-09-11 09:10:56.264215 df513c22-8685-49ff-9f7d-64ba53e23a29 {"md5": "07dc8c1dd1007222507cbe2d86382781", "pid": "027286835", "note": [{"label": ["GDEL. Cape Town (South Africa) ; LCNA, 1977-1986"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027286835", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119361931", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/125475857", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Le_Cap", "source": "WIKIPEDIA"}], "variant_access_point": ["Cap, Le (Afrique du Sud)", "Cape Town (Afrique du Sud)", "Kaapstad (Afrique du Sud)"], "authorized_access_point": "Le Cap (Afrique du Sud)"} 1 +2024-09-11 09:10:56.323342 2024-09-11 09:10:56.323346 f35b8f5e-c224-4643-9906-e2e4e2f70bee {"md5": "03ecd861e447fabc5101d0f56fc743d3", "pid": "027288951", "note": [{"label": ["Grand Larousse universel : Espagne (guerre civile d')", "Encycl. universalis (art. : Espagne (Le territoire et les hommes) - De l'unité politique à la guerre civile) - http://www.universalis-edu.com (2015-03-17)", "Dict. encyclopédique d'histoire / M. Mourre, 1996 (art. : Espagne)", "La guerre d'Espagne / A. Beevor, 2006", "La Guerre d'Espagne : juillet 1936-mars 1939 / H. Thomas, 1985", "La révolution et la guerre d'Espagne / P. Broué, É. Témime, 1979", "Historical dict. of the Spanish civil war, 1936-1939 / J. W. Cortada, 1982"], "noteType": "dataSource"}, {"label": ["17-18 juillet 1936 : soulèvement militaire. 30 mars 1939 : entrée des troupes nationalistes à Valence"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Espagne - 1931-1939 (2e République)"}], "related": [{"authorized_access_point": "Espagne - 1936-1939 (Guerre civile) - Cinéma et guerre"}, {"authorized_access_point": "Espagne - 1936-1939 (Guerre civile) - Littérature et guerre"}, {"authorized_access_point": "Espagne - 1936-1939 (Guerre civile) - Origines"}, {"authorized_access_point": "Espagne - 1936-1939 (Guerre civile) - Réfugiés"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Andalousie (Espagne) - 1936-1939 (Guerre civile)"}, {"authorized_access_point": "Aragon (Espagne) - 1936-1939 (Guerre civile)"}, {"authorized_access_point": "Asturies (Espagne) - 1936-1939 (Guerre civile)"}, {"authorized_access_point": "Baléares (Espagne) - 1936-1939 (Guerre civile)"}, {"authorized_access_point": "Canaries - 1936-1939 (Guerre civile)"}, {"authorized_access_point": "Cantabrie (Espagne) - 1936-1939 (Guerre civile)"}, {"authorized_access_point": "Castille-La Manche (Espagne) - 1936-1939 (Guerre civile)"}, {"authorized_access_point": "Castille-León (Espagne) - 1936-1939 (Guerre civile)"}, {"authorized_access_point": "Catalogne (Espagne) - 1936-1939 (Guerre civile)"}, {"authorized_access_point": "Espagne - 1936-1937 (Révolution)"}, {"authorized_access_point": "Espagne - 1936-1939 (Guerre civile) - Opérations militaires"}, {"authorized_access_point": "Espagne - 1936-1939 (Guerre civile) - Participation étrangère"}, {"authorized_access_point": "Espagne - 1936 (Soulèvement du 18 juillet 1936)"}, {"authorized_access_point": "Estrémadure (Espagne) - 1936-1939 (Guerre civile)"}, {"authorized_access_point": "Galice (Espagne) - 1936-1939 (Guerre civile)"}, {"authorized_access_point": "La Rioja (Espagne) - 1936-1939 (Guerre civile)"}, {"authorized_access_point": "Pays basque (Espagne) - 1936-1939 (Guerre civile)"}, {"authorized_access_point": "Valence (Espagne ; région) - 1936-1939 (Guerre civile)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027288951", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11936368c", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04055970X", "source": "GND"}], "classification": [{"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "authorized_access_point": "Espagne - 1936-1939 (Guerre civile)"} 1 +2024-09-11 09:11:09.468395 2024-09-11 09:11:09.468404 e8d14b2e-f677-49de-a8ca-8a9056f2fdb9 {"md5": "f4b36db2de70f971a488afbeca9feaea", "pid": "028889460", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028889460", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/148577329", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Tunnel_du_Mont-Blanc", "source": "WIKIPEDIA"}], "variant_access_point": ["Tunnel du Mont Blanc"], "authorized_access_point": "Mont Blanc, Tunnel du"} 1 +2024-09-11 09:10:56.394594 2024-09-11 09:10:56.394602 7531b39e-f574-4e81-a818-7c3eb2d832a4 {"md5": "390f864064efe7fc593523d265ad0c08", "pid": "027290530", "note": [{"label": ["GDEL. Laval RVM, 1989-06."], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027290530", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11936474k", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04003366X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/131280462", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Athènes", "source": "WIKIPEDIA"}], "variant_access_point": ["Athènes", "Athinai (Grèce)"], "authorized_access_point": "Athènes (Grèce)"} 1 +2024-09-11 09:10:56.46036 2024-09-11 09:10:56.460364 58766a73-d943-4fc0-b156-10247bf0147b {"md5": "1ed6fb1a5ead1d4d3e6e6859c8903425", "pid": "027291499", "note": [{"label": ["GLU. BN Service vietnamien"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Cư Chinh (Viet Nam ; région)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027291499", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/164772349", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Hô_Chi_Minh-Ville", "source": "WIKIPEDIA"}], "variant_access_point": ["Sài gòn (Viet-Nam)", "Saigon (Viet-Nam)", "Thành phố Hồ Chí Minh (Viet-Nam)"], "authorized_access_point": "Hồ Chí Minh-Ville (Viet-Nam ; province)"} 1 +2024-09-11 09:10:56.51746 2024-09-11 09:10:56.517464 ed0518b2-cf9d-4e97-921f-764efa362997 {"md5": "380ec045975ff1d84979cb81ac6399ac", "pid": "027296946", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["Département français (39)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Franche-Comté (France)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027296946", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11936964n", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040932087", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/234191213", "source": "VIAF"}, {"type": "uri", "value": "http://viaf.org/viaf/168693353", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Jura_(département)", "source": "WIKIPEDIA"}], "relation_pid": {"type": "redirect_from", "value": "127958827"}, "variant_access_point": ["Jura", "Jura (département)", "Jura, Département du (France)"], "authorized_access_point": "Jura (France)"} 1 +2024-09-11 09:10:56.57931 2024-09-11 09:10:56.579313 3e9b903e-4b46-493c-90ae-7d50ecea59f5 {"md5": "717a9b007fea902b6bd269db727bf5f0", "pid": "027296970", "note": [{"label": ["Moreau. GLU"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Ain (France)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027296970", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11936967p", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)953732320", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173309018", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Pays_de_Gex", "source": "WIKIPEDIA"}], "variant_access_point": ["Pays de Gex (Ain)", "Gex (Ain ; région)"], "authorized_access_point": "Gex, Pays de (Ain)"} 1 +2024-09-11 09:10:56.640639 2024-09-11 09:10:56.640642 328f3fcb-274a-4cbe-a5e1-39823babe20a {"md5": "128cc867017b2c95287da0c62ebfad4b", "pid": "027297810", "note": [{"label": ["GDEL. SY 1990/91"], "noteType": "dataSource"}, {"label": ["île et région de la Grèce"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Grèce"}, {"authorized_access_point": "Méditerranée, Îles de la"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027297810", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040737918", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/151226384", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Crète", "source": "WIKIPEDIA"}], "variant_access_point": ["Candie (Grèce ; île)", "Candia (Grèce ; île)", "Krêtê (Grèce)", "Kríti (Grèce)", "Île de Crête"], "authorized_access_point": "Crète (Grèce)"} 1 +2024-09-11 09:10:56.71774 2024-09-11 09:10:56.717744 ad8d0fbf-39c2-470d-b7ae-37bfc6c2d780 {"md5": "f18acbe449431c070e022ee0bf09f774", "pid": "027298531", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Val de Loire (France)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027298531", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11937097c", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040997758", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172765072", "source": "VIAF"}], "authorized_access_point": "Loire, Vallée de la (France)"} 1 +2024-09-11 09:10:56.777874 2024-09-11 09:10:56.777878 de19b917-c1ca-4612-8436-96515dcbeba9 {"md5": "08727a943269aacbbbe0020717708fee", "pid": "027298728", "note": [{"label": ["GDEL", "http://ark.bnf.fr/ark:/12148/cb119371144, 2024-07-23"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "related": [{"authorized_access_point": "Naples (Italie) - Histoire"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027298728", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040414760", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/1991155648121518330006", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "119626551"}, "variant_access_point": ["Napoli (Italie)", "Parthénope (ville ancienne)", "Neapolis (ville ancienne)", "Naples (Campanie, Italie)"], "authorized_access_point": "Naples (Italie)"} 1 +2024-09-11 09:10:58.687009 2024-09-11 09:10:58.687013 a86f9956-a057-4543-83eb-f8d3d48d62e3 {"md5": "d7f00035ce958bc3d81049bde90d6861", "pid": "027358399", "note": [{"label": ["Names of states / IFLA, 1981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique occidentale"}, {"authorized_access_point": "Afrique du Nord"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027358399", "source": "IDREF"}, {"type": "uri", "value": "https://catalogue.bnf.fr/ark:/12148/cb119417732", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040380513", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/152430470", "source": "VIAF"}], "variant_access_point": ["Mauritanie (République)", "Mūritanīā"], "authorized_access_point": "Mauritanie"} 1 +2024-09-11 09:10:56.854033 2024-09-11 09:10:56.85404 362765e0-82db-4ba8-8f54-245b323b9056 {"md5": "49f7174c17f3107a8536d6fa8a484e18", "pid": "027308561", "note": [{"label": ["GLU. Mourre", "Laval RVM, 1995-08. Sachsen ; SWD, 1994-10"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de la Saxe : duché, puis électorat, puis royaume, puis Land"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Allemagne - Länder"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027308561", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119379010", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040511766", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/201974690", "source": "VIAF"}], "variant_access_point": ["Kursachsen (Allemagne)", "Sachsen", "Sachsen (Allemagne)", "Saxe", "Saxe (Allemagne ; Land)", "Saxe (Duché)", "Saxe (Électorat)", "Saxe (Royaume)", "Saxe électorale"], "authorized_access_point": "Saxe (Allemagne)"} 1 +2024-09-11 09:10:56.915391 2024-09-11 09:10:56.9154 867ed87a-7f0e-4693-a6dd-1b2c86a0ce87 {"md5": "5ed1958f3c45c0a8118a5d060727362f", "pid": "027311058", "note": [{"label": ["GLU. Laval RVM, 1994-08"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europe de l'Ouest"}], "related": [{"authorized_access_point": "Belgique"}, {"authorized_access_point": "Pays-Bas"}, {"authorized_access_point": "Luxembourg"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027311058", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15238537g", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/171985634", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Benelux", "source": "WIKIPEDIA"}], "variant_access_point": ["Pays du Benelux"], "authorized_access_point": "Benelux"} 1 +2024-09-11 09:10:56.993541 2024-09-11 09:10:56.99355 de3fe250-43ac-48ba-a59e-4fe9f0c5e9b0 {"md5": "16d4783cf7f4683c88ac580df1b1581a", "pid": "027311430", "note": [{"label": ["Names of states / IFLA, 1981. Pays et capitales du monde / IGN, 1985. Manuel de l'Unesco, 1985. Le Grand atlas de géographie, 1984. GDEL"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages sur la République populaire de Mongolie et/ou sur l'ensemble de la Mongolie"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Asie centrale"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027311430", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040400565", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/155144648525066137570", "source": "VIAF"}], "variant_access_point": ["Mongol Ard Uls", "Mongolie (République populaire)", "Mongolie-extérieure"], "authorized_access_point": "Mongolie"} 1 +2024-09-11 09:10:57.064658 2024-09-11 09:10:57.064663 10d4f833-0fe2-4cd1-a8d8-f228f05ab87a {"md5": "5c8a3c05716f6b4c04de99257b528412", "pid": "027311694", "note": [{"label": ["Atlas Le Monde"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027311694", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119381418", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/7267148574365324430001", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Toronto", "source": "WIKIPEDIA"}], "authorized_access_point": "Toronto (Canada)"} 1 +2024-09-11 09:10:57.115877 2024-09-11 09:10:57.115881 47ecd8a6-5029-44d7-b935-3089a4184952 {"md5": "b340ebf31ee3e0051fb32742b5b4443d", "pid": "027314049", "note": [{"label": ["Laval RVM, 1992-08"], "noteType": "dataSource"}, {"label": ["S'emploie également en subdivision géographique aux sujets noms communs appropriés, par ex. Agriculture -- Régions tropicales"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Conditions tropicales aux sujets noms communs appropriés lorsque l'emploi de la subdivision géographique Régions tropicales n'est pas possible, par ex. Livres -- Conservation et restauration -- Conditions tropicales", "Voir aussi les vedettes du type : Cultures tropicales ; Poissons tropicaux"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Régions tropicales humides"}, {"authorized_access_point": "Régions tropicales sèches"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027314049", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11938331h", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040609979", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/316897266", "source": "VIAF"}], "authorized_access_point": "Régions tropicales"} 1 +2024-09-11 09:10:57.182538 2024-09-11 09:10:57.182546 a9e54242-88e0-49af-ad48-c41599d3b620 {"md5": "d979077b0b5819460d543162e416f8bf", "pid": "027316696", "note": [{"label": ["IFLA, Names of states, 1981", "Corée du Nord ; Laval RVM, 1994-08. Chosǒn ; GKD, 1980"], "noteType": "dataSource"}, {"label": ["En précision géographique, employer Corée N., par ex. Pyongyang (Corée N.)", "Le Royaume de Corée fut colonisé par le Japon de 1905 à la fin de la Seconde guerre mondiale. La partition, en 1945, en 2 zones d'occupation (USA et URSS) aboutit le 9 septembre 1948 à la proclamation de la République populaire démocratique de Corée par l'Assemblée populaire suprême. Capitale Pyongyang, langue officielle coréen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Corée"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027316696", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11938542q", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040754685", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/6097150325542010090000", "source": "VIAF"}], "variant_access_point": ["Chosǒn", "Corée du Nord", "République populaire démocratique de Corée", "Corée, République populaire démocratique de", "Corée, République populaire démocratique de (1948-....)"], "authorized_access_point": "Corée (République populaire démocratique)"} 1 +2024-09-11 09:11:32.194755 2024-09-11 09:11:32.194764 4b743be4-63cd-44fb-ab5e-2810f3a13b1b {"md5": "d152da575b18df834fb250dfb3cebea5", "pid": "279148739", "note": [{"label": ["http://www.geonames.org/, 2024-07-02"], "noteType": "dataSource"}, {"label": ["Situé dans le comté d'Alexander"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279148739", "source": "IDREF"}], "authorized_access_point": "Miller City (Ill.)"} 1 +2024-09-11 09:10:57.237864 2024-09-11 09:10:57.237868 09a91ba4-7000-432a-974d-32d8165444a6 {"md5": "442dd5605c774869b1fccd1546f656da", "pid": "027316866", "note": [{"label": ["IFLA, Names of states, 1981", "https://fr.wikipedia.org/wiki/%C3%89gypte"], "noteType": "dataSource"}, {"label": ["Voir aussi la subdivision Et l'Égypte aux personnes et collectivités"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Proche-Orient"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027316866", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040005569", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/128459794", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "197265855"}, "variant_access_point": ["Miṣr", "جمهورية مصر العربية", "مصر", "Arab Republic of Egypt", "RAE (République Arabe d'Égypte)", "République arabe d'Égypte", "United Arab Republic", "République arabe unie"], "authorized_access_point": "Égypte"} 1 +2024-09-11 09:10:57.293111 2024-09-11 09:10:57.293115 1b70ea5c-a426-47c2-9afa-e901ffc4b70d {"md5": "889960ebf20d8883ce5e9134ff37bdd7", "pid": "027321940", "note": [{"label": ["Laval RVM, 1992-08"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de la partie de l'Afrique située au sud du Sahara et à l'ouest du Tchad et du Cameroun"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Afrique occidentale anglophone"}, {"authorized_access_point": "Afrique occidentale francophone"}, {"authorized_access_point": "Bénin"}, {"authorized_access_point": "Burkina Faso"}, {"authorized_access_point": "Cap-Vert"}, {"authorized_access_point": "Côte d'Ivoire"}, {"authorized_access_point": "Gambie"}, {"authorized_access_point": "Ghana"}, {"authorized_access_point": "Guinée"}, {"authorized_access_point": "Guinée-Bissau"}, {"authorized_access_point": "Liberia"}, {"authorized_access_point": "Mali"}, {"authorized_access_point": "Mauritanie"}, {"authorized_access_point": "Niger"}, {"authorized_access_point": "Nigeria"}, {"authorized_access_point": "Sénégal"}, {"authorized_access_point": "Sierra Leone"}, {"authorized_access_point": "Togo"}, {"authorized_access_point": "Guinée (région)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027321940", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb162726289", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04079203X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/315124800", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Afrique_de_l'Ouest", "source": "WIKIPEDIA"}], "variant_access_point": ["Afrique (ouest)", "Afrique de l'Ouest"], "authorized_access_point": "Afrique occidentale"} 1 +2024-09-11 09:10:57.360801 2024-09-11 09:10:57.360805 f668af20-d2ba-41de-8e2c-4977e0f9b67d {"md5": "2ce7fd3d99962e8bb1aa3808dca5fbd2", "pid": "027323072", "note": [{"label": ["Names of states / IFLA, 1981. Pays et capitales du monde / IGN, 1985"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Australasie"}, {"authorized_access_point": "Océanie"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027323072", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040419150", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/3232154260428024480001", "source": "VIAF"}], "variant_access_point": ["New Zealand", "Nouvelle Zélande"], "authorized_access_point": "Nouvelle-Zélande"} 1 +2024-09-11 09:10:57.41936 2024-09-11 09:10:57.419362 50c9a586-61be-4d0d-91f0-fe0d867dca83 {"md5": "f643eda82708b637a4fd33656a5c0238", "pid": "027326977", "note": [{"label": ["GDEL. Rheinland-Pfalz ; GKD ; BN ACO"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rhénanie (Allemagne)"}, {"authorized_access_point": "Allemagne - Länder"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027326977", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04049795X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173418537", "source": "VIAF"}], "variant_access_point": ["Rheinland-Pfalz"], "authorized_access_point": "Rhénanie-Palatinat (Allemagne)"} 1 +2024-09-11 09:10:57.504953 2024-09-11 09:10:57.504958 52240a42-b094-4146-9ffd-2905f7a34106 {"md5": "8862cebefa0c1315c6287b4dc79905e3", "pid": "027333752", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Asie du Nord"}, {"authorized_access_point": "Russie"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027333752", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11939827w", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040547809", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/251794742", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Sibérie", "source": "WIKIPEDIA"}], "variant_access_point": ["Russie d'Asie", "Sibir (Russie)"], "authorized_access_point": "Sibérie (Russie)"} 1 +2024-09-11 09:10:57.569241 2024-09-11 09:10:57.569244 1d12189d-b6bb-4258-b4b5-df857513b7a5 {"md5": "4245f5e89290f4f0f3ac626a76bdeaf4", "pid": "027334279", "note": [{"label": ["Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027334279", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040631427", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173254969", "source": "VIAF"}], "variant_access_point": ["Versailles"], "authorized_access_point": "Versailles (Yvelines)"} 1 +2024-09-11 09:10:57.626677 2024-09-11 09:10:57.626685 a580de99-b2c9-4a85-a26d-af96f0f3517a {"md5": "4ec004f0bda18b42d4456bf931313195", "pid": "027340880", "note": [{"label": ["GLU, 1991 (Hongkong ou Hong Kong). Atlas Le Monde, 1993. Monde, 1997-07-02", "Hong-Kong ; IFLA, Names of states, 1981. Hongkong ; Laval RVM, 1997-02. Hong Kong ; GKD, 1994-05"], "noteType": "dataSource"}, {"label": ["Ville de Chine. Devenue colonie britannique en 1842, agrandie de Kowloon (1860) et des Nouveaux territoires (1898, pour un bail de 99 ans), elle est rétrocédée par la Grande-Bretagne à la Chine le 01-07-1997"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027340880", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11940411f", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04025822X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/261062131", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "152490701"}, "variant_access_point": ["Hong Kong (colonie)", "Hongkong (Chine)", "Hsiang-kang (Chine)", "Xianggang (Chine)", "Hong Kong Special Administrative Region (Chine)", "Xiang gang", "Xianggang", "Xiang gang te bie xing zheng qu (Chine)", "Chung-hua jen min kung ho kuo Hsiang-kang tʻe pieh hsing cheng chʻü", "Zhonghua Renmin Gongheguo Xianggang Tebie Xingzhengqu", "Zhong hua Ren min Gong he guo Xianggang Te bie Xing zheng qu", "HKSAR", "Hsiang-kang tʻe pieh hsing cheng chʻü (Chine)", "Hongkong S. A. R. (Chine)", "Hongkong"], "authorized_access_point": "Hong Kong (Chine)"} 1 +2024-09-11 09:10:57.710882 2024-09-11 09:10:57.710886 d18e1ebd-e953-4894-a32a-e368dd6c0a83 {"md5": "14768696bd86c3b18eea00b5a1974a1d", "pid": "027341046", "note": [{"label": ["GLU, 1991"], "noteType": "dataSource"}, {"label": ["Département français (36)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Berry (France)"}, {"authorized_access_point": "Centre (France)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027341046", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11940421r", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/167743789", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Indre_(département)", "source": "WIKIPEDIA"}], "variant_access_point": ["Bas Berry (France)", "Indre"], "authorized_access_point": "Indre (France)"} 1 +2024-09-11 09:10:57.764243 2024-09-11 09:10:57.764251 7be3752d-10f2-4420-923f-20b3b9ba1b0f {"md5": "ad561b861682ebe1fa012e012b76a13f", "pid": "027341879", "note": [{"label": ["GLU, 1991", "Laval RVM, 1996-08"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Régions polaires"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027341879", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15289876g", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040029247", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173636386", "source": "VIAF"}], "variant_access_point": ["Arctique, Océan (région)", "Arctiques, Régions", "Grand Nord", "Régions arctiques", "Terres arctiques"], "authorized_access_point": "Arctique"} 1 +2024-09-11 09:10:57.831265 2024-09-11 09:10:57.831272 ac7b615c-0fee-47a0-a133-b1b768f89387 {"md5": "85d78e3c330ebaf33c1c329bbaadde40", "pid": "027345483", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["Département français (61)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Basse-Normandie (France)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027345483", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11940746x", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/5608148574276124430001", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Orne_(département)", "source": "WIKIPEDIA"}], "variant_access_point": ["Orne"], "authorized_access_point": "Orne (France)"} 1 +2024-09-11 09:10:57.89165 2024-09-11 09:10:57.891654 15d9ec1c-6483-4ab6-9fe4-678c4c3a5ce6 {"md5": "1bf2975a5358b97619f8c779d20cf34c", "pid": "027348695", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Jura (massif)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027348695", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04071330X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/980148574339324430007", "source": "VIAF"}], "authorized_access_point": "Jura (France ; massif)"} 1 +2024-09-11 09:10:57.96023 2024-09-11 09:10:57.960235 4707948e-5740-4f4c-82a7-d8043dc2fec1 {"md5": "3159b983fadb6bd135659e9195176f0d", "pid": "027349004", "note": [{"label": ["Wikipédia : https://fr.wikipedia.org/wiki/Shanxi, 37° 52′ 24″ N, 112° 33′ 52″ E", "GDEL. Atlas Le Monde", "山西森林 /《山西森林》编辑委员会编著,中华人民共和国林业部组织编写, 1992", "Shanxi sen lin / \\"Shanxi sen lin\\" bian ji wei yuan hui bian zhu,Zhonghua Renmin Gongheguo lin ye bu zu zhi bian xie,1992"], "noteType": "dataSource"}, {"label": ["Province du Nord-Est, située à l'ouest des monts Taihang (太行山 pinyin : Tàihangshān) et dont le nom signifie « à l'ouest de la montagne » ; capitale Taiyuan (太原, pinyin : tàiyuán)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chine (nord)"}, {"authorized_access_point": "Chine - Provinces"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027349004", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/172439138", "source": "VIAF"}], "variant_access_point": ["Chan-si", "Shan-hsi", "Shansi", "山西省", "Shanxi Sheng"], "authorized_access_point": "Shanxi (Chine ; province)"} 1 +2024-09-11 09:10:58.021932 2024-09-11 09:10:58.021937 f6c66811-b1c3-4f66-9939-94501db0faf8 {"md5": "cf80a93af45073d1d82c0a3a51ea78c0", "pid": "027350169", "note": [{"label": ["Navarre française (France) ; Laval RVM suppl., 1989-06"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pays basque (Pyrénées-Atlantiques)"}, {"authorized_access_point": "Navarre (Royaume)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027350169", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11941113j", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/316733006", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Basse-Navarre", "source": "WIKIPEDIA"}], "variant_access_point": ["Basse-Navarre (France)"], "authorized_access_point": "Navarre (France)"} 1 +2024-09-11 09:10:58.080936 2024-09-11 09:10:58.08094 2af0a77b-d199-4fd8-8f5e-1e0cfb2ec405 {"md5": "71362720e98fdcbaadf3e6b1a6d07caf", "pid": "027350843", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027350843", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04066009", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/313001781", "source": "VIAF"}], "variant_access_point": ["Vindobona (ville ancienne)", "Vienna"], "authorized_access_point": "Vienne (Autriche)"} 1 +2024-09-11 09:10:58.627504 2024-09-11 09:10:58.627509 860e9a6e-1b92-461d-a35b-e9100b06cece {"md5": "25168b20e88b533fad55dd7cf2a585a4", "pid": "027358321", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["Département français (38)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Dauphiné (France)"}, {"authorized_access_point": "Rhône-Alpes (France)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027358321", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119417674", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/263181452", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Isère_(rivière)", "source": "WIKIPEDIA"}], "variant_access_point": ["Isère", "Isère - Département"], "authorized_access_point": "Isère (France)"} 1 +2024-09-11 09:10:58.146185 2024-09-11 09:10:58.146189 f690921e-c3d5-4977-b979-81bdf7f7ef95 {"md5": "e862b4c2d42c09b1958711c8cfefcb7d", "pid": "027350991", "note": [{"label": ["IFLA, Names of states, 1981. SY 2000. GLU"], "noteType": "dataSource"}, {"label": ["La Papouasie-Nouvelle-Guinée, indépendante depuis le 16-09-1975, comprend l'ancienne Nouvelle-Guinée allemande, placée en 1921 sous mandat australien, et la Papouasie, britannique depuis 1884"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Mélanésie"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027350991", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11941180p", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040445690", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/151781392", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Papouasie-Nouvelle-Guinée", "source": "WIKIPEDIA"}], "variant_access_point": ["Papua New Guinea"], "authorized_access_point": "Papouasie-Nouvelle-Guinée"} 1 +2024-09-11 09:10:58.214877 2024-09-11 09:10:58.214879 9a03af40-6626-4d9c-b0cf-818a69ee770d {"md5": "33ac31704107cd0396616e85fc4231ae", "pid": "027351076", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Asie centrale"}, {"authorized_access_point": "Pays de la CEI"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Kazakhstan (Sud-Est)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027351076", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040298396", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/153440315", "source": "VIAF"}], "variant_access_point": ["Kazakhie", "Kazahstan", "Qazaqstan"], "authorized_access_point": "Kazakhstan"} 1 +2024-09-11 09:10:58.273413 2024-09-11 09:10:58.273418 9233e5c7-bf87-45c6-8534-580a521a24a1 {"md5": "47032510e1e31b4931a0062589351721", "pid": "027353990", "note": [{"label": ["Freiburger Münster ; LCNA, 1977-1986"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027353990", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119414094", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "11077471X"}, "authorized_access_point": "Fribourg-en-Brisgau (Allemagne) - Münster"} 1 +2024-09-11 09:10:58.35328 2024-09-11 09:10:58.353283 b5f651cc-0bcf-4158-972f-fb086d3095b1 {"md5": "07c6da8851aa2d8307872789ca825bd6", "pid": "027356388", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Italie (sud)"}, {"authorized_access_point": "Méditerranée, Îles de la"}, {"authorized_access_point": "Italie - Régions"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027356388", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11941615m", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040516865", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172601866", "source": "VIAF"}], "variant_access_point": ["Sardaigne", "Sardegna (Italie)"], "authorized_access_point": "Sardaigne (Italie)"} 1 +2024-09-11 09:10:58.422528 2024-09-11 09:10:58.422532 3ebdc574-b808-4992-bcd1-1e109342070e {"md5": "8566c949dfdf45620eab2de917919756", "pid": "027358100", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["En précision de lieu, employer Fla., par ex. Tallahassee (Fla.)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "États du Golfe (États-Unis)"}, {"authorized_access_point": "États du Sud-Atlantique (États-Unis)"}, {"authorized_access_point": "États-Unis - États"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027358100", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040175855", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/157185686", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Floride", "source": "WIKIPEDIA"}], "variant_access_point": ["Florida (États-Unis)"], "authorized_access_point": "Floride (États-Unis)"} 1 +2024-09-11 09:10:58.493225 2024-09-11 09:10:58.493229 31ea9086-568c-4bb0-a557-cfc60a79ffe4 {"md5": "b8481beb76b06b3c5eae133e383d290b", "pid": "027358232", "note": [{"label": ["GDEL. Atlas Le Monde", "GeoNames (2019-11-28)"], "noteType": "dataSource"}, {"label": ["Le Gansu est une province du nord-ouest de la République populaire de Chine. Longue province étroite, coincée entre le plateau de Mongolie au nord et les contreforts du plateau Tibétain au sud, épousant le tracé principal de l'ancienne route de la soie, le Gansu est habité par environ 26 millions d'habitants (en 2004), dont une minorité importante de Hui. La capitale, Lanzhou, est située dans le sud-est de la province.", "Coordonnées en degrés séxagésimaux : N 37°45′00″ / E 102°45′00″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chine (ouest)"}, {"authorized_access_point": "Chine - Provinces"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027358232", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/173309143", "source": "VIAF"}], "variant_access_point": ["甘肅省", "Kan-sou (Chine)", "Kansu (Chine)", "甘肃省", "Gansu Sheng"], "authorized_access_point": "Gansu (Chine ; province)"} 1 +2024-09-11 09:10:58.563332 2024-09-11 09:10:58.563339 86013d7c-103a-4c92-bd20-b985fed308cf {"md5": "2e4dc4b0e29ab9939cbd088f3d4377d3", "pid": "027358305", "note": [{"label": ["IFLA, Names of states, 1981. GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Insulinde"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027358305", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04026761X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/4708148574313724430000", "source": "VIAF"}], "variant_access_point": ["Indes néerlandaises", "Indes orientales", "Indonesia"], "authorized_access_point": "Indonésie"} 1 +2024-09-11 09:11:28.974017 2024-09-11 09:11:28.97402 e4061e68-442a-4259-ae4d-e9665a8117e5 {"md5": "be85a716163fcc5b2d7e0d65d74c6fdc", "pid": "276306651", "note": [{"label": ["Otzberg : Burg - Festung – Kaserne / Dr. Axel Gleue. - Otzberg : A.W.Gleue, © 2003"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276306651", "source": "IDREF"}], "variant_access_point": ["Veste Otzberg", "Otzberg (Hesse, Allemagne) - Château d’Otzberg"], "authorized_access_point": "Otzberg, Château d’ (Allemagne)"} 1 +2024-09-11 09:10:58.742859 2024-09-11 09:10:58.742864 b1bf008e-df99-4d01-9a0c-6dd929960943 {"md5": "081b13559abd8d47986cf2b678974fa2", "pid": "027359336", "note": [{"label": ["Grand Larousse universel : Religion (guerres de)", "Robert encyclopédique des noms propres 2008 : Religion (guerres de)", "Dict. encyclopédique d'histoire / M. Mourre, 1996 : Religion (guerres de)", "Les guerres de religion / G. Livet, 2002", "Les guerres de religion / P. Miquel, 1980"], "noteType": "dataSource"}, {"label": ["1er mars 1562 : massacre de Wassy. 13 avril 1598 : édit de Nantes ; 2 mai 1598 : traité de Vervins"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "France - 16e siècle"}], "related": [{"authorized_access_point": "France - 1560-1574 (Charles IX)"}, {"authorized_access_point": "France - 1574-1589 (Henri III)"}, {"authorized_access_point": "France - 1589-1610 (Henri IV)"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "France - 1562-1598 (Guerres de religion) - Opérations militaires"}], "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85051298", "source": "LCSH"}], "authorized_access_point": "France--History--Wars of the Huguenots, 1562-1598"}, {"source": "RVMLaval", "authorized_access_point": "France -- Histoire -- 1562-1598 (Guerres de religion)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027359336", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119418453", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)041607686", "source": "GND"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Histoire de la France (depuis 486)", "type": "bf:ClassificationDdc", "classificationPortion": "944"}], "authorized_access_point": "France - 1562-1598 (Guerres de religion)"} 1 +2024-09-11 09:10:58.822759 2024-09-11 09:10:58.822763 3ffee38c-238c-421b-a7cb-b21181d711e6 {"md5": "2a528378bce56fd20fe605c4a921c0fd", "pid": "027360199", "note": [{"label": ["GDEL", "Balkans ; Laval RVM, 1992-02"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europe du Sud"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Albanie"}, {"authorized_access_point": "Bosnie-Herzégovine"}, {"authorized_access_point": "Bulgarie"}, {"authorized_access_point": "Ex-Yougoslavie"}, {"authorized_access_point": "Grèce"}, {"authorized_access_point": "Macédoine"}, {"authorized_access_point": "Macédoine du Nord (République)"}, {"authorized_access_point": "Mésie"}, {"authorized_access_point": "Monténégro"}, {"authorized_access_point": "Roumanie"}, {"authorized_access_point": "Serbie"}, {"authorized_access_point": "Thrace"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027360199", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11941903f", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040690997", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/60144648482279885458", "source": "VIAF"}], "variant_access_point": ["Balkanique, Péninsule", "Europe (sud-est)", "Europe du Sud-Est", "Pays balkaniques"], "authorized_access_point": "Balkans"} 1 +2024-09-11 09:10:58.892711 2024-09-11 09:10:58.892715 ecbf87b7-9069-474a-8056-c0ee3073de6a {"md5": "4fc61262cb4273ae4963e49d2f2a7903", "pid": "027360881", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027360881", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12363185d", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040538079", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/248969460", "source": "VIAF"}], "variant_access_point": ["Schwarzwald (Allemagne ; massif)", "Forêt Noire"], "authorized_access_point": "Forêt-Noire (Allemagne ; massif)"} 1 +2024-09-11 09:10:58.965315 2024-09-11 09:10:58.965319 7c9e8a6b-6788-4109-bccb-c5dfd2c157b8 {"md5": "8094295e0df8a0162367349dc802ba37", "pid": "027366456", "note": [{"label": ["Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027366456", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11942363w", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/141163407", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Ars-sur-Formans", "source": "WIKIPEDIA"}], "authorized_access_point": "Ars-sur-Formans (Ain)"} 1 +2024-09-11 09:10:59.037278 2024-09-11 09:10:59.03728 f59170c2-0bbf-4acd-94a1-cdedead76d85 {"md5": "bf9bb2c82f73449efdae491103ff6360", "pid": "027366936", "note": [{"label": ["Sous cette vedette on trouve les ouvrages qui traitent de l'Inde et des pays voisins : Pakistan, Népal, Bhoutan, Bangladesh, Sri Lanka et Maldives"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Bangladesh"}, {"authorized_access_point": "Bhoutan"}, {"authorized_access_point": "Inde"}, {"authorized_access_point": "Maldives"}, {"authorized_access_point": "Népal"}, {"authorized_access_point": "Pakistan"}, {"authorized_access_point": "Sri Lanka"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027366936", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119424039", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040584062", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/254470885", "source": "VIAF"}], "variant_access_point": ["Asie (sud)", "Asie méridionale", "Indien, Sous-continent", "Sous continent indien"], "authorized_access_point": "Asie du Sud"} 1 +2024-09-11 09:10:59.091963 2024-09-11 09:10:59.091968 d11b6982-33a0-4260-9476-b6a55912a624 {"md5": "f7b13be63cc0b17f1e523ec4d1d05d42", "pid": "02736819X", "note": [{"label": ["Grand Larousse universel", "Robert encyclopédique des noms propres 2008", "Dict. encyclopédique d'histoire / M. Mourre, 1996"], "noteType": "dataSource"}, {"label": ["Le sud de la péninsule italienne (Pouille, Calabre) uni à la Sicile forme le royaume de Sicile en 1130. En 1282 la Sicile devient aragonaise, mais Charles d'Anjou, roi depuis 1266, se maintient dans la partie péninsulaire du royaume, qui devient le royaume de Naples ou de Terre ferme. Royaume de Naples et Sicile sont à nouveau unis sous un même roi en 1442-1458, sous la domination espagnole (1504-1707), autrichienne (1707-1713, 1720-1734), puis sous les Bourbons de Naples (1734-1799, 1799-1806, 1815-1816). Naples et Sicile forment de 1816 à 1861 le royaume des Deux-Siciles", "Sous cette vedette, on trouve les documents sur le royaume de Naples de 1268à 1816, seul ou uni au royaume de Sicile. Les documents sur le sud de la péninsule italienne avant 1268 se trouvent sous Italie (sud). Les documents sur le royaume de Sicile se trouvent sous Sicile (Italie). Les documents sur le royaume unitaire des Deux-Siciles (1816-1861) se trouvent sous Royaume des Deux-Siciles"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCA", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/names/n79063272", "source": "LCA"}], "authorized_access_point": "Naples (Kingdom)"}, {"source": "RVMLaval", "authorized_access_point": "Naples (Royaume)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02736819X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11942515k", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040414787", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/9120164963977824300002", "source": "VIAF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "914"}, {"name": "Histoire médiévale, moderne et contemporaine (sauf la France)", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Napoli, Regno di", "Regno di Napoli", "Royaume de Naples", "Royaume de Terre ferme", "Terre ferme, Royaume de"], "authorized_access_point": "Naples (Italie ; Royaume)"} 1 +2024-09-11 09:10:59.152801 2024-09-11 09:10:59.152805 2111e23c-7646-4668-abd8-c72857517ecf {"md5": "7c497d36a9bf366e8653f7177f375308", "pid": "027368343", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Lyon (Rhône ; région)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027368343", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/173364079", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Lyon", "source": "WIKIPEDIA"}], "relation_pid": {"type": "redirect_from", "value": "184304202"}, "variant_access_point": ["Lyon, Aire métropolitaine"], "authorized_access_point": "Lyon (Rhône ; agglomération)"} 1 +2024-09-11 09:10:59.212885 2024-09-11 09:10:59.212889 c0a1bf4d-b427-46d3-b664-7cb04d19c2fa {"md5": "100ddd1afd13ef0419591b0eeaba6a4e", "pid": "027368785", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027368785", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040608778", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/8916148574372424430008", "source": "VIAF"}], "variant_access_point": ["Augusta Treverorum (ville ancienne)", "Trier (Allemagne)"], "authorized_access_point": "Trèves (Allemagne)"} 1 +2024-09-11 09:10:59.264201 2024-09-11 09:10:59.264205 4c6a5e51-eb19-4f72-971b-d58b361ad18c {"md5": "7db70dd157192f4b02e372b595e10477", "pid": "027370763", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Fustat (Égypte ; ville ancienne)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027370763", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040292363", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/125715126", "source": "VIAF"}], "variant_access_point": ["Caire, Le (Égypte)", "Cairo", "(القاهرة (مصر", "Al-Qāhiraẗ (Miṣr)"], "authorized_access_point": "Le Caire (Égypte)"} 1 +2024-09-11 09:10:59.334262 2024-09-11 09:10:59.334268 6c3d0244-45be-4992-82a7-2a90e54e6633 {"md5": "004ea74f548700e0c58c592e22ecdb11", "pid": "027372618", "note": [{"label": ["GLU. Atlas Le Monde"], "noteType": "dataSource"}, {"label": ["Rio Solimões est le nom portugais de l'Amazone en amont de Manaus"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027372618", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040016269", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173309158", "source": "VIAF"}], "variant_access_point": ["Amazonas, Río", "Solimões, Rio"], "authorized_access_point": "Amazone (cours d'eau)"} 1 +2024-09-11 09:10:59.401791 2024-09-11 09:10:59.401795 9836989d-624f-43ed-8883-75454eb9bd4f {"md5": "f39f0701a2b036c0c46c0517e55d7bb4", "pid": "027374750", "note": [{"label": ["Laval RVM, 1992-02"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les ouvrages qui traitent de la partie de l'Afrique située au sud du Zai͏̈re et de la Tanzanie. Les ouvrages sur la République d'Afrique du Sud se trouvent sous la vedette Afrique du Sud"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Afrique du Sud"}, {"authorized_access_point": "Angola"}, {"authorized_access_point": "Botswana"}, {"authorized_access_point": "Lesotho"}, {"authorized_access_point": "Malawi"}, {"authorized_access_point": "Mozambique"}, {"authorized_access_point": "Namibie"}, {"authorized_access_point": "Swaziland"}, {"authorized_access_point": "Zambie"}, {"authorized_access_point": "Zimbabwe"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027374750", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb162726316", "source": "BNF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11943016s", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040583937", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/152394654", "source": "VIAF"}], "variant_access_point": ["Afrique (sud)", "Afrique méridionale"], "authorized_access_point": "Afrique australe"} 1 +2024-09-11 09:10:59.465297 2024-09-11 09:10:59.465304 92c820b7-bb1b-4ced-a45c-d377b13c5277 {"md5": "4b80f6a4e15e4bdd3736ee809de60091", "pid": "027374831", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "related": [{"authorized_access_point": "Combe d'Ain, Bassin de la (France)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027374831", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11943022q", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/8281148574369624430004", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Ain_(rivière)", "source": "WIKIPEDIA"}], "authorized_access_point": "Ain (France ; cours d'eau)"} 1 +2024-09-11 09:10:59.551676 2024-09-11 09:10:59.55168 aad5e4a3-6584-4b3d-bce7-20567c941112 {"md5": "149b850a12a3ca4eea613c54453da991", "pid": "027375080", "note": [{"label": ["Laval RVM, 1991-02"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Amérique"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027375080", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15238498d", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040794865", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/170225739", "source": "VIAF"}], "variant_access_point": ["Amérique (centre)", "Guatemala (Royaume)"], "authorized_access_point": "Amérique centrale"} 1 +2024-09-11 09:10:59.606774 2024-09-11 09:10:59.606778 ae0384ec-3063-4be9-9f9a-70861ab3b0ec {"md5": "2c7b1f8f286783c2191795a1ca37e853", "pid": "027375099", "note": [{"label": ["Laval RVM, 1994-08"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Amérique"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027375099", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040780147", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/577145424560886831330", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Amérique_du_Sud", "source": "WIKIPEDIA"}], "variant_access_point": ["Amérique (sud)"], "authorized_access_point": "Amérique du Sud"} 1 +2024-09-11 09:10:59.666958 2024-09-11 09:10:59.666973 5dee588a-187b-45b7-8308-616625198d97 {"md5": "0d06c19215e6f42281f5d1ca7bb41cea", "pid": "027375188", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027375188", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119430472", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040017834", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/152912999", "source": "VIAF"}, {"type": "bf:Nbn", "value": "i205236", "source": "GEOVISTORY"}], "relation_pid": {"type": "redirect_from", "value": "253217083"}, "authorized_access_point": "Amsterdam (Pays-Bas)"} 1 +2024-09-11 09:10:59.736065 2024-09-11 09:10:59.736067 2528ee84-f176-444c-a87a-be878c0b5e14 {"md5": "0aa4634bc2b2cbde1f9e52f566e3e693", "pid": "027375412", "note": [{"label": ["GLU. Laval RVM, 1993-02"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de l'archipel qui sépare l'Atlantique de la mer des Antilles et qui comprend les Bahamas, les Grandes et les Petites Antilles"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Région caraïbe"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027375412", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119430639", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040022935", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/155553957", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Antilles", "source": "WIKIPEDIA"}], "variant_access_point": ["Antillas", "Antillen", "Caraïbes (îles)", "Indes occidentales", "West Indies"], "authorized_access_point": "Antilles"} 1 +2024-09-11 09:10:59.788904 2024-09-11 09:10:59.788907 812cbcc7-883d-4b3a-8e4f-f92b4672de1b {"md5": "f9bc47b6780caf24ab83bcca3547a17c", "pid": "027375463", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027375463", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040023648", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/135575206", "source": "VIAF"}], "variant_access_point": ["Antwerpen (Belgique)"], "authorized_access_point": "Anvers (Belgique)"} 1 +2024-09-11 09:10:59.844244 2024-09-11 09:10:59.844248 6bf3a326-a1e9-47ab-aaeb-3597e87683ac {"md5": "5f10f9f920ed37daa4c230f1eff6b118", "pid": "02737601X", "note": [{"label": ["GDEL. LCSH, 1989-03"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02737601X", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040041018", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172711277", "source": "VIAF"}], "authorized_access_point": "Babylone (Iraq ; ville ancienne)"} 1 +2024-09-11 09:10:59.907293 2024-09-11 09:10:59.907298 a364af66-4408-4c2c-ae87-206f34df98a1 {"md5": "44a5ba54c4c821021d4a203daaaced4b", "pid": "027377067", "note": [{"label": ["IFLA, Names of states, 1981. GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Amazonie (Bolivie)"}, {"authorized_access_point": "Beni (Bolivie)"}, {"authorized_access_point": "Cochabamba (Bolivie ; département)"}, {"authorized_access_point": "La Paz (Bolivie ; département)"}, {"authorized_access_point": "Potosí (Bolivie ; département)"}, {"authorized_access_point": "Santa Cruz (Bolivie ; département)"}, {"authorized_access_point": "Chuquisaca (Bolivie ; département)"}, {"authorized_access_point": "Moxos (Bolivie)"}, {"authorized_access_point": "Oriente (Bolivie)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027377067", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040076075", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/130756130", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Bolivie", "source": "WIKIPEDIA"}], "variant_access_point": ["Alto Perú", "Bolivia", "Haut-Pérou", "Pérou, Haut-"], "authorized_access_point": "Bolivie"} 1 +2024-09-11 09:10:59.977112 2024-09-11 09:10:59.977121 431fa0f8-57d5-4813-893e-992c9fd0c7ff {"md5": "70ff3391a3868aa115ed3d74ebd63cb7", "pid": "027377660", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Italie (sud)"}, {"authorized_access_point": "Italie - Régions"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027377660", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb121177322", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040292789", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/155870508", "source": "VIAF"}], "variant_access_point": ["Bruttium", "Calabria (Italie)"], "authorized_access_point": "Calabre (Italie)"} 1 +2024-09-11 09:11:00.038799 2024-09-11 09:11:00.038801 5553c0cb-3cb0-4ffa-810e-c794bf61f503 {"md5": "fb702a2ecb8ea17b2821141f32270285", "pid": "027377768", "note": [{"label": ["Names of states / IFLA, 1981. GDEL. SY, 1986/1987"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent du territoire qui fut placé sous protectorat allemand, puis sous mandats français et britannique, et qui constitue aujourd'hui la République du Cameroun"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique centrale"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027377768", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040294137", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/147664051", "source": "VIAF"}], "variant_access_point": ["Cameroon", "Kamerun"], "authorized_access_point": "Cameroun"} 1 +2024-09-11 09:11:00.529536 2024-09-11 09:11:00.52954 425b22af-7b2a-4a5c-8e7c-044b858e5a3f {"md5": "64b253d90480c55ae86dd812772d9c74", "pid": "027406733", "note": [{"label": ["GLU. Laval RVM, 1994-08"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pays baltes"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027406733", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040741877", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/4704148574272524430009", "source": "VIAF"}], "variant_access_point": ["Latvija"], "authorized_access_point": "Lettonie"} 1 +2024-09-11 09:11:00.099421 2024-09-11 09:11:00.099429 00e8b048-085d-49e5-a116-0ef421f87bd7 {"md5": "01b0ebf351709ab23cb62f7fe3d7c3e2", "pid": "027379647", "note": [{"label": ["Names of states / IFLA, 1981. Pays et capitales du monde / IGN, 1985. Laval RVM, 1983"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Haïti (île)"}, {"authorized_access_point": "Antilles hispaniques"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027379647", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13162779p", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040126943", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/849148574256524430004", "source": "VIAF"}], "variant_access_point": ["Dominicaine (République)", "República Dominicana"], "authorized_access_point": "République dominicaine"} 1 +2024-09-11 09:11:00.170457 2024-09-11 09:11:00.170466 c5ace2d1-6e9c-4cc0-b6cb-e5aa52b9f47d {"md5": "8fa40f3f013727b96c920ff2b1daeb0b", "pid": "027381323", "note": [{"label": ["GLU, 1991", "Pays de Galles ; Laval RVM, 1997-02"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Grande-Bretagne"}, {"authorized_access_point": "Pays celtiques"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027381323", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11943541c", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040644359", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/12144647638200048242", "source": "VIAF"}], "variant_access_point": ["Cambria", "Cambrie", "Cymru (GB)", "Galles, Pays de (GB)", "Wales (GB)"], "authorized_access_point": "Pays de Galles (GB)"} 1 +2024-09-11 09:11:00.231783 2024-09-11 09:11:00.231785 e293e709-fe7d-499d-a36b-9769fac14788 {"md5": "1c1423025611255c988b7ba497184d3b", "pid": "027400212", "note": [{"label": ["Malaisie ; IFLA, Names of states, 1981 ; Pays et capitales du monde / IGN, 1986 ; BN ACO. Malaysia ; GLU ; Laval RVM, 1995-02 ; Atlas Le Monde"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de la Fédération de Malaisie (ou Malaysia), comprenant depuis 1963 la Malaisie péninsulaire, Sabah et Sarawak (et Singapour de 1963 à 1965). Les ouvrages qui traitent de la Malaisie péninsulaire, avant ou depuis 1963, se trouvent sous la vedette Malaisie occidentale"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Malaisie occidentale"}, {"authorized_access_point": "Malaisie orientale"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027400212", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11945050f", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040372030", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/145332698", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Malaisie", "source": "WIKIPEDIA"}], "variant_access_point": ["Malaysia"], "authorized_access_point": "Malaisie"} 1 +2024-09-11 09:11:00.291952 2024-09-11 09:11:00.291957 7d922798-902b-48a8-ae84-5372b6077c99 {"md5": "f4cdf8484ce1081af01e4c8421bc2769", "pid": "027402193", "note": [{"label": ["Names of states / IFLA, 1981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique orientale anglophone"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027402193", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040614573", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/134866435", "source": "VIAF"}], "variant_access_point": ["Uganda"], "authorized_access_point": "Ouganda"} 1 +2024-09-11 09:11:00.339737 2024-09-11 09:11:00.339742 85549c16-863f-4c74-9f08-97bdf81c8ac4 {"md5": "1ea09eff418a64a363540e956922a549", "pid": "027405478", "note": [{"label": ["GDEL. Laval RVM, 1991-08"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Persique, Golfe"}, {"authorized_access_point": "Oman, Mer d'"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027405478", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040267377", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/145299573", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Océan_Indien", "source": "WIKIPEDIA"}], "variant_access_point": ["Érythrée, Mer", "Indes, Mer des", "Indicus, Oceanus", "Océan Indien"], "authorized_access_point": "Indien, Océan"} 1 +2024-09-11 09:11:00.387242 2024-09-11 09:11:00.387244 88425961-f435-4dd2-a4d7-e7d3b8ce4d17 {"md5": "ae5c3e27c2ba9e8462652b53ec7436c6", "pid": "027405621", "note": [{"label": ["Names of states / IFLA, 1981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Atlantique, Îles de l'"}, {"authorized_access_point": "Scandinavie"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027405621", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040277542", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/2599148574346024430006", "source": "VIAF"}], "variant_access_point": ["Ísland"], "authorized_access_point": "Islande"} 1 +2024-09-11 09:11:00.431867 2024-09-11 09:11:00.43187 d9c2879d-f610-42f6-b17d-615c83a3dde9 {"md5": "601cbda6dea8ceca12397a3f9d72aa64", "pid": "027405753", "note": [{"label": ["Names of states / IFLA, 1981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Grandes Antilles"}, {"authorized_access_point": "Antilles anglophones"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027405753", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040284565", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/398148574254724430000", "source": "VIAF"}], "variant_access_point": ["Jamaica"], "authorized_access_point": "Jamaïque"} 1 +2024-09-11 09:11:00.474998 2024-09-11 09:11:00.475001 24ae1e1b-844f-4f46-941b-2d900e0ec7ae {"md5": "253c555d4818406160b749899c7ccb9c", "pid": "027406415", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pays basque (Pyrénées-Atlantiques)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027406415", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/130274539", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Labourd", "source": "WIKIPEDIA"}], "authorized_access_point": "Labourd (France)"} 1 +2024-09-11 09:11:00.592553 2024-09-11 09:11:00.592557 a780e5fa-55bf-4649-97d4-37587d0cea74 {"md5": "9fe264e567bda6aaa2b3966f771bfe3d", "pid": "027407012", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027407012", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11864772p", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040367339", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040367339", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/140255133", "source": "VIAF"}], "variant_access_point": ["Luzern (Suisse)"], "authorized_access_point": "Lucerne (Suisse)"} 1 +2024-09-11 09:11:00.655086 2024-09-11 09:11:00.655095 e8d496f8-372a-48b4-aa29-cb035502bdb4 {"md5": "f2fb7c135b33bab30b3a1c4572081bf5", "pid": "027407632", "note": [{"label": ["Grand Larousse universel", "Encycl. universalis - http://www.universalis-edu.com (2014-03-13)", "Dict. encyclopédique d'histoire / M. Mourre, 1996", "La Commune de 1871 / J. Rougerie, 1992", "Dict. de la Commune / B. Noël, 1971"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les documents sur la Commune de Paris de 1871. Les documents dont la Commune est l'auteur se trouvent sous Commune de Paris (1871)", "18 mars-28 mai 1871 : gouvernement insurrectionnel de la Commune à Paris, écrasé par le gouvernement d'Adolphe Thiers siégeant à Versailles"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "France - 1871-1873 (A. Thiers)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027407632", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119456147", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040446689", "source": "GND"}], "classification": [{"name": "Science politique", "type": "bf:ClassificationDdc", "classificationPortion": "320"}, {"name": "Histoire de la France", "type": "bf:ClassificationDdc", "classificationPortion": "944"}], "variant_access_point": ["France - 1871 (Commune)"], "authorized_access_point": "Paris (France) - 1871 (Commune)"} 1 +2024-09-11 09:11:00.733624 2024-09-11 09:11:00.733628 666ce931-a676-4f25-8779-fad7c26854b2 {"md5": "4dfe8bbe0351d17f33a9581d63483cde", "pid": "027408310", "note": [{"label": ["Laval RVM, 1983"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Antarctique"}, {"authorized_access_point": "Régions polaires"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027408310", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11945666g", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)955497434", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173709059", "source": "VIAF"}], "authorized_access_point": "Pôle Sud"} 1 +2024-09-11 09:11:00.789702 2024-09-11 09:11:00.789706 f32b2259-a0fb-4954-b4bf-4973cf52d889 {"md5": "c13c4c82c7480f522154408188db6737", "pid": "027408450", "note": [{"label": ["GLU. BN ACO (2 vedettes). Laval RVM, 1994-08"], "noteType": "dataSource"}, {"label": ["Emploi direct en subdivision : [sujet] -- Polynésie française", "Territoire d'outre-mer français, comprenant 5 circonscriptions administratives (Îles Australes, îles-du-Vent, Îles-Sous-le-Vent, Marquises, Tuamotu) ; Clipperton y est officiellement rattaché. De 1885 à 1957 : Établissements français de l'Océanie"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Polynésie"}, {"authorized_access_point": "France - Collectivités d'outre-mer"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027408450", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04018191X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/148353190", "source": "VIAF"}], "variant_access_point": ["Établissements français de l'Océanie", "Océanie française"], "authorized_access_point": "Polynésie française"} 1 +2024-09-11 09:11:00.850331 2024-09-11 09:11:00.850335 af403c02-1e96-4c6d-ab8b-ecefb5c74d42 {"md5": "0102edd36fc3a361a4daed2299eae86e", "pid": "027409317", "note": [{"label": ["Venezuela ; BN Cartes et plans ; BN ACO ; Pays et capitales du monde / IGN, 1986 ; Laval RVM, 1995-02 ; Manuel de l'Unesco, 1985 ; GLU ; Encycl. universalis ; Atlas Le Monde"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Amazonie (Venezuela)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027409317", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119457375", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/1897158188178220260005", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Venezuela", "source": "WIKIPEDIA"}], "authorized_access_point": "Venezuela"} 1 +2024-09-11 09:11:00.911238 2024-09-11 09:11:00.911242 4c1454d4-c485-4c3a-a204-658bfb1ebaac {"md5": "b2e939f1f21ee34d7844177fc459395b", "pid": "027418499", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027418499", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04066337X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/676148574297124430002", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Winterthour", "source": "WIKIPEDIA"}], "variant_access_point": ["Winterthur (Suisse)", "Vitudurum (ville ancienne)"], "authorized_access_point": "Winterthour (Suisse)"} 1 +2024-09-11 09:11:00.967809 2024-09-11 09:11:00.967813 3ddd132e-f684-4913-b23d-1491bc6e1df1 {"md5": "726a355b5def61838f16c232c89f9c39", "pid": "027427374", "note": [{"label": ["Dict. communes, 1971"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027427374", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/152886958", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Beaufort_(Savoie)", "source": "WIKIPEDIA"}], "variant_access_point": ["Beaufort-sur-Doron (Savoie)"], "authorized_access_point": "Beaufort (Savoie)"} 1 +2024-09-11 09:11:29.978573 2024-09-11 09:11:29.978577 8371a5ba-7098-403f-86fc-4184c80a8f27 {"md5": "35f78056320448d6d2516a5960301d7c", "pid": "278728596", "note": [{"label": ["http://www.geonames.org/, 2024-06-10"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Livingston"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278728596", "source": "IDREF"}], "authorized_access_point": "Forrest (Ill.)"} 1 +2024-09-11 09:11:01.027267 2024-09-11 09:11:01.027277 fbacb01d-03b9-441d-b0b1-410d806f3c7a {"md5": "a3532210a1523782aaf2d70c2caaef30", "pid": "027428095", "note": [{"label": ["GLU. Laval RVM, 1994-02"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Atlantique (océan ; nord)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027428095", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11947172h", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040296679", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/1967148574385124430009", "source": "VIAF"}], "variant_access_point": ["Caraïbe, Mer", "Caraïbes, Mer des"], "authorized_access_point": "Antilles, Mer des"} 1 +2024-09-11 09:11:01.087746 2024-09-11 09:11:01.087749 8af38207-eea5-4807-acca-dcef56d4f96c {"md5": "1f465cfc532ea61efe36a957aa801d03", "pid": "027428672", "note": [{"label": ["Grand Larousse universel", "Robert encyclopédique des noms propres, 2008", "Dict. de géographie historique de la Gaule et de la France / J. Moreau, 1972", "Dict. encyclopédique d'histoire / M. Mourre, 1996", "Trésor des régions de France - http://tresordesregions.mgm.fr (2008-12-19)", "Robert encyclopédique des noms propres, 2008"], "noteType": "dataSource"}, {"label": ["Comté qui appartint à la Papauté (1274-1790), couvrant l'actuel Vaucluse (sauf la partie sud-orientale de celui-ci). Capitale : Carpentras"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Vaucluse (France)"}], "related": [{"authorized_access_point": "Mur de la peste (France)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027428672", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119472180", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/133732676", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Comtat_Venaissin", "source": "WIKIPEDIA"}], "classification": [{"name": "Géographie de la France", "type": "bf:ClassificationDdc", "classificationPortion": "912"}], "variant_access_point": ["Comtat Venaissin", "Comtat-Venaissin", "Venaissin (comtat)", "Comtat (Vaucluse)", "Coumtat (Vaucluse)", "Venaissin, Comtat (Vaucluse)"], "authorized_access_point": "Comtat Venaissin (Vaucluse)"} 1 +2024-09-11 09:11:01.146698 2024-09-11 09:11:01.146707 4fbaa8e9-60c7-49c3-9911-e028be342d65 {"md5": "f57b2a7cf03f41b0aa0aa5a6783a46a6", "pid": "027429393", "note": [{"label": ["GLU. Berthelot (Ehstonie ou Esthonie)", "Laval RVM, 1994-08"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pays baltes"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027429393", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040155870", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/2916148574347324430000", "source": "VIAF"}], "variant_access_point": ["Eesti", "Ehstonie", "Esthonie"], "authorized_access_point": "Estonie"} 1 +2024-09-11 09:11:01.21526 2024-09-11 09:11:01.215264 6b0a220e-8abb-4ae6-962e-b51815709516 {"md5": "9fac92617c466fff723429ddfa7634eb", "pid": "027434125", "note": [{"label": ["GDEL. Jura Mountains (France and Switzerland) ; LCSH, 1989-09. Jura ; Laval RVM, 1989-06"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Jura (France ; massif)"}, {"authorized_access_point": "Jura (Suisse ; massif)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027434125", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119476392", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040731294", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/198144782989882286451", "source": "VIAF"}], "variant_access_point": ["Jura", "Jura (chaîne)"], "authorized_access_point": "Jura (massif)"} 1 +2024-09-11 09:11:01.282933 2024-09-11 09:11:01.282937 b8047ead-a138-453c-9386-e8ba5465b4d9 {"md5": "86b2861ce67311fb4f721cf616594f46", "pid": "027434648", "note": [{"label": ["GLU. Laval RVM, 1994-08"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pays baltes"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027434648", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11947680h", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040742660", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/888148574256624430002", "source": "VIAF"}], "variant_access_point": ["Lietuva", "Lithuanie"], "authorized_access_point": "Lituanie"} 1 +2024-09-11 09:11:01.344317 2024-09-11 09:11:01.344321 6dff5ce5-09e9-4f4a-97c3-d771fa25aa3f {"md5": "e5e714170cad712a228bace13ee02a4d", "pid": "027436810", "note": [{"label": ["Names of states / IFLA, 1981"], "noteType": "dataSource"}, {"label": ["Vedette commune à la ville et à l'État"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027436810", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040550893", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/15145376341283720567", "source": "VIAF"}], "variant_access_point": ["Singapore", "Singapura"], "authorized_access_point": "Singapour"} 1 +2024-09-11 09:11:01.412811 2024-09-11 09:11:01.412816 f4b092cd-71d0-42c8-a72e-c8af09e084f5 {"md5": "f16482724f554b8b9d8f768f7b746657", "pid": "027436837", "note": [{"label": ["GLU. Le Monde, 1-1-1993", "SY, 1987-88, 1993-94"], "noteType": "dataSource"}, {"label": ["République fédérée de Tchécoslovaquie de 1968 à 1992, Etat indépendant depuis le 1er janvier 1993 ; capitale Bratislava"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europe centrale"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027436837", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11947852t", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040552977", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/154427228", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Slovaquie", "source": "WIKIPEDIA"}], "relation_pid": {"type": "redirect_from", "value": "066869196"}, "variant_access_point": ["République socialiste slovaque", "Slovensko", "Szlovákia", "République slovaque", "Slovenská Republika"], "authorized_access_point": "Slovaquie"} 1 +2024-09-11 09:11:01.477809 2024-09-11 09:11:01.477814 14a0f248-5f92-42c9-9e48-0a891feaa680 {"md5": "01674cd05640942f95e3c0a78f8fe912", "pid": "027439658", "note": [{"label": ["GLU"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pays de la CEI"}, {"authorized_access_point": "Transcaucasie"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027439658", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb116643727", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040224066", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/316601102", "source": "VIAF"}], "variant_access_point": ["Géorgie (République)", "Géorgie (Transcaucasie)", "Grouzia", "Sakartvélo", "Gruzja", "Грузия", "Gruziâ", "Грузинская Советская Социалистическая Республика", "Gruzinskaâ Sovetskaâ Socialističeskaâ Respublika", "Грузинская ССР", "Gruzinskaâ SSR"], "authorized_access_point": "Géorgie"} 1 +2024-09-11 09:11:01.546448 2024-09-11 09:11:01.546453 89237a9a-4dbc-4d7e-b993-ab4db361c941 {"md5": "42eb923bc72cf150dc09cd103ef08313", "pid": "027442128", "note": [{"label": ["IFLA, Names of states, 1981. Pays et capitales du monde / IGN, 1986. Laval RVM, 1995-02"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent du territoire du Rwanda, avant ou depuis son indépendance en 1962. Les ouvrages sur le Ruanda-Urundi, qui comprenait à l'époque coloniale le territoire des actuels Rwanda et Burundi, se trouvent sous la vedette Ruanda-Urundi"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique centrale"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027442128", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040769100", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/3125148574307124430008", "source": "VIAF"}], "variant_access_point": ["Ruanda"], "authorized_access_point": "Rwanda"} 1 +2024-09-11 09:11:01.604418 2024-09-11 09:11:01.604421 7b6073bb-6c63-4283-a31b-7fc5a6d874ed {"md5": "a240016ed6529dfc5bd9778d0cb51277", "pid": "027442381", "note": [{"label": ["IFLA, Names of states, 1981. SY, 1990/19991"], "noteType": "dataSource"}, {"label": ["Protectorat allemand en 1891, territoire sous mandat britannique en 1920, État indépendant le 09-12-1961, le Tanganyika s'unit à Zanzibar et Pemba le 26-4-1964 pour former la République unie du Tanganyika et de Zanzibar qui prend le nom de Tanzanie le 29-10-1964. Capitale Dodoma"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique orientale anglophone"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027442381", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11948282b", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040781496", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/1972148574302324430007", "source": "VIAF"}], "variant_access_point": ["République-Unie de Tanzanie", "Tanganyika", "Tanzania", "Tanzanie continentale"], "authorized_access_point": "Tanzanie"} 1 +2024-09-11 09:11:01.657564 2024-09-11 09:11:01.657569 d553012e-bfce-482b-836f-9ec1456b39f9 {"md5": "8f96ac61926c2927c7cebac32bc90bc7", "pid": "027442454", "note": [{"label": ["IFLA, Names of states, 1981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique centrale"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027442454", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040610748", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/2941148574389024430003", "source": "VIAF"}], "authorized_access_point": "Tchad"} 1 +2024-09-11 09:11:01.732076 2024-09-11 09:11:01.73208 4a9d3cc9-f437-4dcf-a0bb-a751fbbb6cc9 {"md5": "237ca5a052cfd506ab3448be80601fac", "pid": "027442462", "note": [{"label": ["IFLA, Names of states, 1981. Monde, 1-1-1993. Laval RVM, 1995-02"], "noteType": "dataSource"}, {"label": ["Fondée le 14 novembre 1918, la Tchécoslovaquie se scinde le 1er janvier 1993 en République tchèque et Slovaquie"], "noteType": "general"}, {"label": ["Voir aussi la subdivision Et la Tchécoslovaquie aux personnes et collectivités"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027442462", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11948289r", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040784355", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173418642", "source": "VIAF"}], "variant_access_point": ["Československo"], "authorized_access_point": "Tchécoslovaquie"} 1 +2024-09-11 09:11:01.814151 2024-09-11 09:11:01.814155 8b48c565-70cb-44d9-81b1-9148ace3bcb7 {"md5": "00007ac1b6b514973c6a1b41cb57f5f3", "pid": "027443876", "note": [{"label": ["GLU. Brockhaus, 19. Aufl.", "Laval RVM, 2000-01. Bayern ; GKD, 1994-05. SWD, 1995-04"], "noteType": "dataSource"}, {"label": ["Duché puis électorat (1623), royaume (1806), et l'un des dix cercles du Saint Empire. L'État libre de Bavière (capitale : Munich) comprend 7 Regierungsbezirke"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Allemagne - Länder"}, {"authorized_access_point": "Allemagne (sud)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027443876", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040050440", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/125426357", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Bavière", "source": "WIKIPEDIA"}], "variant_access_point": ["Bavaria", "Bavière", "Bavière (Duché)", "Bavière (Électorat)", "Bavière (Royaume)", "Bayerischer Kreis (Saint Empire romain germanique)", "Bayern (Allemagne)", "Freistaat Bayern", "Bayerischer Reichskreis"], "authorized_access_point": "Bavière (Allemagne)"} 1 +2024-09-11 09:11:01.877206 2024-09-11 09:11:01.877216 38ea9e2d-bca7-4341-9254-11bbea93f54c {"md5": "1a3be67b766e27fd95b99d6c6934a368", "pid": "02744628X", "note": [{"label": ["Dict. communes, 1992. GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02744628X", "source": "IDREF"}, {"type": "uri", "value": "http://ark.bnf.fr/ark:/12148/cb11948590s", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/8409148574328624430005", "source": "VIAF"}], "authorized_access_point": "Haguenau (Bas-Rhin)"} 1 +2024-09-11 09:11:01.9587 2024-09-11 09:11:01.958705 238a5046-54a0-4b92-9c8f-f73b2c584677 {"md5": "6854b3064eee7e5f7b4ebb9efe006f29", "pid": "027448177", "note": [{"label": ["Grand Larousse universel", "Robert encyclopédique des noms propres 2008", "Wikipédia - http://fr.wikipedia.org (2011-10-19)", "Encycl. universalis - http://www.universalis.fr (2011-10-19)", "Versailles : château de la France et orgueil des rois / C. Constans, 1989", "Château de Versailles - http://www.chateauversailles.fr (2011-10-19)"], "noteType": "dataSource"}, {"label": ["Château construit pour Louis XIII, puis agrandi à partir de 1661 par Louis Le Vau puis Jules-Hardouin Mansart. Le roi et la cour y résidèrent de 1682 à 1789"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "related": [{"authorized_access_point": "France - Journées des 5 et 6 octobre 1789"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Versailles (Yvelines) - Château - Aile du Midi"}, {"authorized_access_point": "Versailles (Yvelines) - Château - Aile du Nord"}, {"authorized_access_point": "Versailles (Yvelines) - Château - Ailes des Ministres"}, {"authorized_access_point": "Versailles (Yvelines) - Château - Corps central"}, {"authorized_access_point": "Versailles (Yvelines) - Château - Écuries royales"}, {"authorized_access_point": "Versailles (Yvelines) - Château - Galerie des Glaces"}, {"authorized_access_point": "Versailles (Yvelines) - Château - Réservoirs"}, {"authorized_access_point": "Versailles (Yvelines) - Château - Salle du Conseil privé"}, {"authorized_access_point": "Versailles (Yvelines) - Château - Salon de Mercure"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027448177", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119487267", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)041944313", "source": "GND"}], "classification": [{"name": "Architecture", "type": "bf:ClassificationDdc", "classificationPortion": "720"}, {"name": "Géographie de la France", "type": "bf:ClassificationDdc", "classificationPortion": "912"}], "variant_access_point": ["Château de Versailles (Versailles, Yvelines)"], "authorized_access_point": "Versailles (Yvelines) - Château"} 1 +2024-09-11 09:11:02.037867 2024-09-11 09:11:02.037875 41479128-9232-4a78-a7cf-5d77d17c071b {"md5": "279c39a2867b613fa0dae69e2156655e", "pid": "02745228X", "note": [{"label": ["GLU. Laval RVM, 1995-02"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Méditerranée (mer ; est)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02745228X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11949030s", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040684253", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/255146259", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Mer_Égée", "source": "WIKIPEDIA"}], "variant_access_point": ["Aigaion Pelagos", "Aiyaion Pelagos", "Ege Denizi"], "authorized_access_point": "Égée, Mer"} 1 +2024-09-11 09:11:02.100463 2024-09-11 09:11:02.100465 f2bf0aa2-7e87-4c7e-a391-723f42cc8cad {"md5": "5578dcdd7b9064186035ea9d078019b3", "pid": "027452816", "note": [{"label": ["GLU"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027452816", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11949068g", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040497399", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/259663544", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Rhin", "source": "WIKIPEDIA"}], "variant_access_point": ["Rhein (cours d'eau)", "Rhenus (cours d'eau)", "Rhin", "Rijn (cours d'eau)"], "authorized_access_point": "Rhin (cours d'eau)"} 1 +2024-09-11 09:11:02.170091 2024-09-11 09:11:02.170095 ba9a6633-e734-466e-96b8-58da194ea2b7 {"md5": "e4e36933856c1c0a2470a9f4667992ca", "pid": "027463613", "note": [{"label": ["Taiwan ; LCSH, 1987-09 et LCSCM : H 925 ; Laval RVM suppl., 1987-09 ; Pays et capitales du Monde / IGN, 1986 ; GDEL ; Encycl. universalis, t.17 p.650 ; Atlas Le Monde ; BN Cartes et plans. Chine (République) ; BN ACO ; China (Republic, 1949- ) ; LCNA, 1985"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de l'île de Taiwan et/ou de la République de Chine ; en précision géographique, employer la forme (Taiwan), par ex. Gaoxiong (Taiwan). Les ouvrages sur les organismes administratifs centraux de la République et du Gouvernement provincial se trouvent respectivement sous les vedettes Chine (République) et Taiwan (Province) suivies de la sous-vedette appropriée, par ex. Chine (République). Overseas Chinese Affairs Commission ; Taiwan (Province). Department of Information"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Asie orientale"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027463613", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/207148632961830630000", "source": "VIAF"}], "variant_access_point": ["Chine (République)", "Chine nationaliste", "Formose", "T'aiwan", "台湾", "台灣", "臺灣", "Taiwan"], "authorized_access_point": "Taïwan"} 1 +2024-09-11 09:11:02.229599 2024-09-11 09:11:02.229602 dce41823-1dd2-4f35-98b5-e0e0b2aff2ac {"md5": "94f53ab8e82e96414a5eeae7496fec20", "pid": "027464180", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les ouvrages qui traitent de l'ancienne province et/ou de l'actuelle région d'Île-de-France"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "France (centre)"}, {"authorized_access_point": "France - Régions"}], "related": [{"authorized_access_point": "Seine, Vallée moyenne de la (France)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027464180", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11949941x", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040265382", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/150105086", "source": "VIAF"}], "variant_access_point": ["Île-de-France", "Île de France", "Paris (France ; région)", "Parisienne, Région (France)", "Région parisienne (France)"], "authorized_access_point": "Île-de-France (France)"} 1 +2024-09-11 09:11:02.29194 2024-09-11 09:11:02.291945 00e8aa9e-c51b-426e-9cae-5ddf5dc44488 {"md5": "ea6b28e6e36449b47497d75e36c6eb26", "pid": "027464512", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027464512", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11949964k", "source": "BNF"}, {"type": "bf:Nbn", "value": "Italie (nord)", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173636567", "source": "VIAF"}], "variant_access_point": ["Italie du Nord"], "authorized_access_point": "Italie (nord)"} 1 +2024-09-11 09:11:02.354826 2024-09-11 09:11:02.354834 cbe994b8-108c-47a1-96d4-48bf5b2d63b4 {"md5": "9ffd4d8c13639394b87264e58eab3bab", "pid": "027465012", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027465012", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04051594X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04051594X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/9591148574375024430008", "source": "VIAF"}], "variant_access_point": ["Sankt Gallen (Suisse)", "St. Gallen (Suisse)", "St.Gallen (Suisse)", "St Gall (Suisse)", "Saint Gall (Suisse)", "Saint-Gall (Suisse)", "Sankt-Gallen (Suisse)"], "authorized_access_point": "Saint-Gall (Suisse)"} 1 +2024-09-11 09:11:02.415724 2024-09-11 09:11:02.415729 9cfa0dd4-5a54-4b0d-a96a-1c0261824dd1 {"md5": "9284327d57ff34837b40a5cc50d64536", "pid": "027472906", "note": [{"label": ["GDEL. Laval RVM, 1991-02"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de l'empire byzantin, de 395 à 1453. Les ouvrages qui traitent de la ville de Byzance avant 330 se trouvent sous la vedette Byzance"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Orient"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027472906", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040092569", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/149804778", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Empire_byzantin", "source": "WIKIPEDIA"}], "variant_access_point": ["Byzantin, Empire", "Empire d'Orient", "Empire romain d'Orient", "Orient, Empire d'"], "authorized_access_point": "Empire byzantin"} 1 +2024-09-11 09:11:02.485808 2024-09-11 09:11:02.485811 0670c3e3-12e2-42bd-bf61-eff0ff7d6102 {"md5": "e968fb8ff51f40a5147f32f7cf955145", "pid": "027479056", "note": [{"label": ["Eurovoc thesaurus, 1987", "Lexique d'économie Dalloz, 2002"], "noteType": "dataSource"}, {"label": ["Cette expression désigne les pays particulièrement avancés dans les domaines des capacités industrielles, de la productivité économique et de la sophistication technologique"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "related": [{"authorized_access_point": "Occident"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Nouveaux pays industrialisés"}, {"authorized_access_point": "Pays de l'OCDE"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027479056", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119510302", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04026840", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172385834", "source": "VIAF"}], "classification": [{"name": "Économie politique", "type": "bf:ClassificationDdc", "classificationPortion": "330"}, {"name": "Géographie", "type": "bf:ClassificationDdc", "classificationPortion": "910"}], "variant_access_point": ["Pays développés", "Pays économiquement développés", "Pays industriels", "Pays riches"], "authorized_access_point": "Pays industrialisés"} 1 +2024-09-11 09:11:02.558683 2024-09-11 09:11:02.558692 f6d93cf7-7430-4366-beef-f3ba00499e62 {"md5": "0a56cf0df493d469ed015a341f963eac", "pid": "027482928", "note": [{"label": ["GDEL. West Bank ; LCSH, 1985"], "noteType": "dataSource"}, {"label": ["Cette vedette s'emploie directement en subdivision de lieu. Les localités de Cisjordanie sont localisées à (Cisjordanie), et en subdivision suivent la construction indirecte : -- Cisjordanie -- Nom de lieu", "Partie de la Palestine annexée par la Jordanie (24-04-1950) et occupée par Israe͏̈l depuis juin 1967"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Palestine"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027482928", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040657418", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/155352830", "source": "VIAF"}], "variant_access_point": ["Judée et Samarie"], "authorized_access_point": "Cisjordanie"} 1 +2024-09-11 09:11:02.614417 2024-09-11 09:11:02.614422 d4b3d3de-6e53-4fbd-88b7-58e8a098c103 {"md5": "2c63684f57292072aa15be5769ffb877", "pid": "027483169", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027483169", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb152986119", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04007403X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/8145602486301362470", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Lac_de_Constance", "source": "WIKIPEDIA"}], "variant_access_point": ["Bodensee (lac)", "Lac de Constance"], "authorized_access_point": "Constance, Lac de"} 1 +2024-09-11 09:11:02.673949 2024-09-11 09:11:02.673957 51c7d7c9-310f-4448-b5ca-52e5b7392d0d {"md5": "f8745fdc6e028d1500b72f23ca92dd02", "pid": "027483304", "note": [{"label": ["GLU"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europe centrale"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027483304", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040738418", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/8072148574327224430003", "source": "VIAF"}], "variant_access_point": ["Hrvatska", "Хрватска", "Hrvatska"], "authorized_access_point": "Croatie"} 1 +2024-09-11 09:11:02.733896 2024-09-11 09:11:02.7339 594e79c8-7563-41c9-a7e2-458af1079a7b {"md5": "cee220c24a86108b0a8d44e184b2d72e", "pid": "02748355X", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02748355X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12503056n", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/109144648552106101862", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Dombes", "source": "WIKIPEDIA"}], "variant_access_point": ["Côtière de Dombes"], "authorized_access_point": "Dombes (France ; sud)"} 1 +2024-09-11 09:11:02.797275 2024-09-11 09:11:02.797282 bff1337e-2e61-44a2-8982-7ae1b10b11e4 {"md5": "7f45d179dd808f972dddee0ca74ddbc2", "pid": "027484319", "note": [{"label": ["Names of states / IFLA, 1981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Haïti (île)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027484319", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040229742", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/462154387165030970008", "source": "VIAF"}], "authorized_access_point": "Haïti"} 1 +2024-09-11 09:11:05.104684 2024-09-11 09:11:05.104686 df722e91-745e-401d-9bf7-b42065233a51 {"md5": "c825f7c938d02149792c6cd9cd5fa268", "pid": "027668479", "note": [{"label": ["Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027668479", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/3155148574307224430007", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Châteauneuf-de-Galaure", "source": "WIKIPEDIA"}], "authorized_access_point": "Châteauneuf-de-Galaure (Drôme)"} 1 +2024-09-11 09:11:02.870731 2024-09-11 09:11:02.870734 d4bb1838-81c3-4eb2-8f05-bd22496412c3 {"md5": "26d26ae43cd394b9fb826e925d15a91e", "pid": "02748498X", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Italie (nord)"}, {"authorized_access_point": "Italie - Régions"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02748498X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb14643876r", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040357198", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/164861616", "source": "VIAF"}], "variant_access_point": ["Liguria (Italie)"], "authorized_access_point": "Ligurie (Italie ; région)"} 1 +2024-09-11 09:11:02.93215 2024-09-11 09:11:02.932153 6c2a6c5e-fc3f-4d65-bf84-56cd0063716e {"md5": "ee558fb7e74fa643baca282a3e73b16b", "pid": "027485552", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Italie (centre)"}, {"authorized_access_point": "Italie - Régions"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027485552", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040615812", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/154755801", "source": "VIAF"}], "variant_access_point": ["Umbria (Italie)"], "authorized_access_point": "Ombrie (Italie)"} 1 +2024-09-11 09:11:02.997885 2024-09-11 09:11:02.997889 88e429f1-a233-4fcd-a163-15a073c302fe {"md5": "893ff4727e539679795b99e73e266fb5", "pid": "027486354", "note": [{"label": ["GLU, 1991", "Laval RVM, 1996-08"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Antarctique"}, {"authorized_access_point": "Terres australes et antarctiques françaises"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027486354", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11951563d", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)042596270", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/2863147270504335700004", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Terre_Adélie", "source": "WIKIPEDIA"}], "variant_access_point": ["Terre Adélie (Antarctique)"], "authorized_access_point": "Adélie, Terre (Antarctique)"} 1 +2024-09-11 09:11:03.074756 2024-09-11 09:11:03.07476 173355ff-5f10-4157-a416-c6e62535cfc4 {"md5": "4a6ea63a1625f8c9a7d5e3fc80ccff61", "pid": "027491099", "note": [{"label": ["GLU", "\\"Le bois ancêtre\\" : arbres, forêts et occupation kanak précoloniale sur la Grande Terre de Nouvelle-Calédonie : étude de cas et approche anthracologique dans la vallée de la Tiwaka (Nord Est) / Émilie Dotte-Sarout, 2010", "Les rapports des 9 ateliers du diagnostic : Nouvelle-Calédonie 2025, schéma d'aménagement et de développement de la Nouvelle-Calédonie / Haut-commissariat de la République en Nouvelle-Calédonie ; Gouvernement de la Nouvelle-Calédonie. - Nouméa : Gouvernement de la Nouvelle-Calédonie, 2009"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de l'archipel de la Nouvelle-Calédonie (Grande Terre, Loyauté, Belep, Île des Pins, etc) ou de la seule Grande-Terre", "Emploi direct en subdivision : [Sujet] -- Nouvelle-Calédonie"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "France - Collectivités d'outre-mer"}, {"authorized_access_point": "Mélanésie"}, {"authorized_access_point": "Pacifique, Îles du"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027491099", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)041024982", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/2506148574304424430002", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "163936250"}, "variant_access_point": ["Grande-Terre (Nouvelle-Calédonie)", "Kanaky", "Nouvelle-Calédonie et Dépendances"], "authorized_access_point": "Nouvelle-Calédonie"} 1 +2024-09-11 09:11:03.124581 2024-09-11 09:11:03.12459 5423f769-c254-4ecb-9c70-fea4f6f21a6b {"md5": "a120e93d2ea9f8ea754141ee1e8fe56b", "pid": "027492753", "note": [{"label": ["GDEL. LCSH, 1985"], "noteType": "dataSource"}, {"label": ["Cette vedette s'emploie directement en subdivision de lieu"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027492753", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb14011467j", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/125501644", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Gibraltar", "source": "WIKIPEDIA"}], "authorized_access_point": "Gibraltar"} 1 +2024-09-11 09:11:03.199168 2024-09-11 09:11:03.199172 0390ba27-6aa8-40fa-9b14-87f220d07b52 {"md5": "fcd039c6ffdcc01d9db55fec393bdda8", "pid": "027501302", "note": [{"label": ["Names of states / IFLA, 1981", "wikipedia.org, 2019-07-25"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Balkans"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027501302", "source": "IDREF"}, {"type": "uri", "value": "https://catalogue.bnf.fr/ark:/12148/cb11952716p", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040010287", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/8663159248210104870006", "source": "VIAF"}], "variant_access_point": ["Shqipe͏̈ri", "Shqipëria", "Arbri", "Arbëria", "Republika e Shqipërisë"], "authorized_access_point": "Albanie"} 1 +2024-09-11 09:11:03.262552 2024-09-11 09:11:03.262556 d6886165-e79f-4bc7-9e62-a5f644bdf66c {"md5": "7b7f3e6118ee674a00fd17bb3b65dc3d", "pid": "027501418", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de la Ciscaucasie (versant nord du Grand Caucase) et de la Transcaucasie (versant sud du Grand Caucase, dépression Rion-Koura et Petit Caucase)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Grand Caucase (monts)"}, {"authorized_access_point": "Petit Caucase (monts)"}, {"authorized_access_point": "Transcaucasie"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027501418", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040300900", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172982363", "source": "VIAF"}], "variant_access_point": ["Caucasie", "Kavkaz"], "authorized_access_point": "Caucase"} 1 +2024-09-11 09:11:03.320704 2024-09-11 09:11:03.320706 11631164-8029-427e-b32f-2d704d7e5fcd {"md5": "d1877545b0f2135c8669a54206768cfa", "pid": "027502333", "note": [{"label": ["GLU (art. Extrême-Orient)", "Extrême-Orient ; Laval RVM, 1998-07"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de la partie de l'Asie comprenant la Chine, la Corée, le Japon, la Sibérie orientale, l'Indochine et l'Insulinde"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Asie du Nord-Est"}, {"authorized_access_point": "Asie du Sud-Est"}, {"authorized_access_point": "Chine"}, {"authorized_access_point": "Corée"}, {"authorized_access_point": "Japon"}, {"authorized_access_point": "Pacifique, Côte du (Asie)"}, {"authorized_access_point": "Sibérie (Russie ; est)"}, {"authorized_access_point": "Taïwan"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027502333", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119528028", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040757277", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172332114", "source": "VIAF"}], "variant_access_point": ["Asie (est)", "Asie de l'Est", "Asie-Pacifique, Région", "Extrême-Orient", "Orient, Extrême-"], "authorized_access_point": "Asie orientale"} 1 +2024-09-11 09:11:03.383327 2024-09-11 09:11:03.383337 f84037af-827f-4c73-8f5d-dd33834faae4 {"md5": "0eddcb032da4278d7bbf6b80a381b719", "pid": "027502368", "note": [{"label": ["GLU", "Laval RVM, 2001-01"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les documents qui traitent de la partie de l'Asie située à l'est de l'Inde et au sud de la Chine, comprenant l'Indochine (Birmanie, Cambodge, Laos, Malaisie, Thaïlande et Viet-Nam) et l'Insulinde (Brunéi, Indonésie, Malaisie orientale, Philippines et Singapour)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Asie orientale"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027502368", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040584488", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/255510483", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Asie_du_Sud-Est", "source": "WIKIPEDIA"}], "variant_access_point": ["ASEAN, Pays de l'", "Asie (sud-est)", "Asie sud-orientale", "Association des nations de l'Asie du Sud-Est, Pays de l'", "Pays de l'ASEAN", "Pays de l'Association des nations de l'Asie du Sud-Est", "Sud-Est asiatique"], "authorized_access_point": "Asie du Sud-Est"} 1 +2024-09-11 09:11:03.452895 2024-09-11 09:11:03.452899 27d43b4f-54dc-4662-805b-26558e1da33e {"md5": "b59e3e0b7a1c5df5ef2148f0ef0fad8b", "pid": "027502775", "note": [{"label": ["Pacifique, Océan ; Laval RVM, 1995-02"], "noteType": "dataSource"}, {"label": ["Voir aussi aux différentes parties du Pacifique, par ex. Pacifique (océan ; sud)"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Chine, Mer de"}, {"authorized_access_point": "Japon, Mer du"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027502775", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15287406q", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040449815", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/170040002", "source": "VIAF"}], "variant_access_point": ["Océan Pacifique", "Pacifique"], "authorized_access_point": "Pacifique (océan)"} 1 +2024-09-11 09:11:03.519122 2024-09-11 09:11:03.51913 bb862c6c-78df-433b-8b87-a82dd940570f {"md5": "9d3b3402b9148e4eeaca84525fa4b4b3", "pid": "027504271", "note": [{"label": ["GDEL. Atlas Le Monde"], "noteType": "dataSource"}, {"label": ["Province chinoise"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chine (sud)"}, {"authorized_access_point": "Chine - Provinces"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027504271", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/134813396", "source": "VIAF"}], "variant_access_point": ["Sseu-tch'ouan", "Szechwan", "四川省", "Sichuan Sheng"], "authorized_access_point": "Sichuan (Chine ; province)"} 1 +2024-09-11 09:11:03.575307 2024-09-11 09:11:03.575312 4f196f56-71bd-4e9a-8484-c7271076f4b5 {"md5": "3fa112977d48d7d7ea2a503a50d6c90c", "pid": "027504379", "note": [{"label": ["Names of states / IFLA, 1981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique du Nord-Est"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027504379", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040775097", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/5310148574275024430005", "source": "VIAF"}], "variant_access_point": ["Somalia"], "authorized_access_point": "Somalie"} 1 +2024-09-11 09:11:03.62591 2024-09-11 09:11:03.625913 e8cde61e-a672-42c7-8d44-96ca7771808d {"md5": "1977c8bde595950cf1d150998709efdc", "pid": "027522296", "note": [{"label": ["GLU", "Laval RVM, 1996-02"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de la Macédoine historique, partagée en 1913 entre la Bulgarie, la Grèce et la Serbie. Les ouvrages sur la Macédoine serbe, puis yougoslave, qui est devenue une République indépendante le 20-11-1992, se trouvent sous la vedette Macédoine (République) et Macédoine du Nord"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Macédoine (Grèce)"}, {"authorized_access_point": "Balkans"}], "related": [{"authorized_access_point": "Macédoine du Nord (République)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027522296", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)041149378", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/135978180", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Macédoine_(région)", "source": "WIKIPEDIA"}], "variant_access_point": ["Makedonija", "Μακεδονία", "Makhedonia"], "authorized_access_point": "Macédoine"} 1 +2024-09-11 09:11:03.676882 2024-09-11 09:11:03.676886 2ec20db9-f482-44e2-8e00-f8fdda4e5880 {"md5": "1f26aa3e60476b171fe68a0ae1b5467b", "pid": "027528359", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027528359", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040345815", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173744995", "source": "VIAF"}], "authorized_access_point": "Laponie"} 1 +2024-09-11 09:11:03.729747 2024-09-11 09:11:03.72975 207e9412-ba11-497f-bf06-ad702a0111a0 {"md5": "fe8423e42f66247f109437c2b48eea45", "pid": "027544931", "note": [{"label": ["SY 1994-95", "Congo ; Laval RVM, 1997-02"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique centrale"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027544931", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119562586", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040320979", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173167475", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/République_du_Congo", "source": "WIKIPEDIA"}], "variant_access_point": ["Congo", "Congo (Brazzaville)", "Congo (République populaire)", "Congo-Brazzaville", "Congo français"], "authorized_access_point": "Congo (République)"} 1 +2024-09-11 09:11:03.776772 2024-09-11 09:11:03.776776 23bd11e3-e2c1-444d-8e10-54497adeb827 {"md5": "f75dd2952d14665687cc9f0c17b830bd", "pid": "02754785X", "note": [{"label": ["GDEL. SY 1990/91"], "noteType": "dataSource"}, {"label": ["Canton suisse"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02754785X", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)041196058", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/117148570735124312537", "source": "VIAF"}], "variant_access_point": ["Thurgau (Suisse)"], "authorized_access_point": "Thurgovie (Suisse)"} 1 +2024-09-11 09:11:03.846187 2024-09-11 09:11:03.846195 921e864a-28a3-4115-928b-482af0f574a7 {"md5": "6dfd6b575fc29be70a64e59d57d9746f", "pid": "027552543", "note": [{"label": ["Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027552543", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11956863f", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/237008510", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Berzé-la-Ville", "source": "WIKIPEDIA"}], "authorized_access_point": "Berzé-la-Ville (Saône-et-Loire)"} 1 +2024-09-11 09:11:03.906568 2024-09-11 09:11:03.906571 2aeed468-2300-4bc0-8a0b-7feda9f37f06 {"md5": "1fb422479bcad6ebf8e99b19a953d83f", "pid": "027557758", "note": [{"label": ["GDEL. Laval RVM, 1991-08. BN Service chinois", "wikipedia.org, 2018-04-04"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027557758", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15238685m", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040759717", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/312565158", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Pékin", "source": "WIKIPEDIA"}], "variant_access_point": ["Bei-jing (Chine)", "Bei-ping (Chine)", "Beijing (Chine)", "Beiping (Chine)", "Pei-ching (Chine)", "Pei-king (Chine)", "Pei-p'ing (Chine)", "Pei-ping (Chine)", "Peiping (Chine)", "Peking (Chine)", "北京", "北京市", "北平", "Běipíng", "大都", "Dàdū", "汗八里", "Hànbālǐ", "Khanbalik", "Cambaluc"], "authorized_access_point": "Pékin (Chine)"} 1 +2024-09-11 09:11:03.979011 2024-09-11 09:11:03.979021 c5b28db4-8f67-492a-8e5e-0c6461828b72 {"md5": "674bbae2e7ed6a28faf738106f023d3f", "pid": "027563278", "note": [{"label": ["GDEL. Atlas Le Monde"], "noteType": "dataSource"}, {"label": ["Province chinoise"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chine (nord)"}, {"authorized_access_point": "Chine - Provinces"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027563278", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119576874", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/173472735", "source": "VIAF"}], "variant_access_point": ["陝西", "Chen-si", "Shen-hsi", "Shensi", "陕西省", "Shaanxi Sheng"], "authorized_access_point": "Shaanxi (Chine ; province)"} 1 +2024-09-11 09:11:04.048213 2024-09-11 09:11:04.048218 ab6c8934-92ca-4ec3-996d-caedc9e1c40f {"md5": "22a4f74396355272fbca3bea9cfe64c7", "pid": "027564053", "note": [{"label": ["Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027564053", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13121289j", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/246262792", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Villars-les-Dombes", "source": "WIKIPEDIA"}], "authorized_access_point": "Villars-les-Dombes (Ain)"} 1 +2024-09-11 09:11:04.104742 2024-09-11 09:11:04.104745 aaa8df4a-98eb-4798-9eda-bd974bcc377f {"md5": "9b1111897d0e6555bdab160d90a9c9ea", "pid": "027564223", "note": [{"label": ["GDEL. Atlas Le Monde", "Wikipédia, https://fr.wikipedia.org/wiki/Zhejiang, 2020-11-05"], "noteType": "dataSource"}, {"label": ["Province chinoise"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chine (sud)"}, {"authorized_access_point": "Chine - Provinces"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027564223", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/123524226", "source": "VIAF"}], "variant_access_point": ["Che-kiang", "Chekiang", "Chö-kiang", "Tchö-kiang", "Tché-Kiang", "浙江省", "Zhejiang Sheng"], "authorized_access_point": "Zhejiang (Chine ; province)"} 1 +2024-09-11 09:11:04.156213 2024-09-11 09:11:04.156215 94993587-640f-49e0-a0c0-827d828ac9e5 {"md5": "55aba68df77db9c138f978899b8331cd", "pid": "027579425", "note": [{"label": ["GDEL. Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Les Karellis (Savoie)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027579425", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/241581656", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Montricher-Albanne", "source": "WIKIPEDIA"}], "variant_access_point": ["Albanne (Savoie)"], "authorized_access_point": "Montricher-Albanne (Savoie)"} 1 +2024-09-11 09:11:04.216445 2024-09-11 09:11:04.216448 e2386b7a-9977-4620-8603-8d9c2846a26d {"md5": "e97c9bca0239ced4b53491e7c92f80fc", "pid": "027584763", "note": [{"label": ["Laval RVM, 1996-08"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Afrique francophone"}, {"authorized_access_point": "Amérique francophone"}, {"authorized_access_point": "Europe francophone"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027584763", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11959324w", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040181413", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/13144647641039724008", "source": "VIAF"}], "variant_access_point": ["Pays francophones", "Régions de langue française"], "authorized_access_point": "Pays de langue française"} 1 +2024-09-11 09:11:04.277881 2024-09-11 09:11:04.277885 2b050026-9af4-408e-8127-cf7d1c64b702 {"md5": "168456b1c3f70d88e62cb7825e56ba8a", "pid": "027585190", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "related": [{"authorized_access_point": "Pompéi (ville ancienne)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027585190", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119593586", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040467554", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/316884438", "source": "VIAF"}], "authorized_access_point": "Pompéi (Italie)"} 1 +2024-09-11 09:11:04.357188 2024-09-11 09:11:04.357198 86dc7671-3266-4999-baf6-636565a635c2 {"md5": "1b96db4510d304ec99472a15561dfb96", "pid": "027596591", "note": [{"label": ["Names of states / IFLA, 1981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique occidentale"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027596591", "source": "IDREF"}, {"type": "uri", "value": "https://catalogue.bnf.fr/ark:/12148/cb11960248n", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040225208", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/3649148574267924430008", "source": "VIAF"}], "variant_access_point": ["Guinée française"], "authorized_access_point": "Guinée"} 1 +2024-09-11 09:11:04.425321 2024-09-11 09:11:04.425329 d6187db3-68cb-49d8-8d73-4a3f9b8cfdf4 {"md5": "a90156c5bfae005e4bedad6328f1f4cf", "pid": "027603504", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027603504", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11960787x", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/147280021", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Allevard", "source": "WIKIPEDIA"}], "variant_access_point": ["Bréda (France ; cours d'eau ; vallée haute)", "Pays d'Allevard (France)"], "authorized_access_point": "Allevard (Isère ; région)"} 1 +2024-09-11 09:11:04.484379 2024-09-11 09:11:04.484388 949e7c45-3a3a-4b27-9737-1ff98264800d {"md5": "507abc19615534b059a0d56a0b47beef", "pid": "027603784", "note": [{"label": ["GDEL. Atlas Le Monde"], "noteType": "dataSource"}, {"label": ["Province chinoise"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chine (sud)"}, {"authorized_access_point": "Chine - Provinces"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027603784", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11960807q", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/316144783067243628506", "source": "VIAF"}], "variant_access_point": ["Anhwei (Chine)", "Ngan-houei (Chine)", "安徽省", "Anhui Sheng"], "authorized_access_point": "Anhui (Chine ; province)"} 1 +2024-09-11 09:11:04.549785 2024-09-11 09:11:04.549788 89d12182-c30c-4581-b3dd-f9a783945aeb {"md5": "8fde19a05836564f2bb404a5cebecf72", "pid": "027606996", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027606996", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11961068z", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04060702X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/304926548", "source": "VIAF"}], "variant_access_point": ["Moscou-Vladivostok, Chemin de fer (Russie)", "Vladivostok-Moscou, Chemin de fer (Russie)"], "authorized_access_point": "Transsibérien, Chemin de fer (Russie)"} 1 +2024-09-11 09:11:04.607805 2024-09-11 09:11:04.607809 13a99e83-da6c-4aec-b04b-b77d51450d1f {"md5": "2bf85ebba76d2ef2695afc5cc010e204", "pid": "02761803X", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["Capitale de pays"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02761803X", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/1544158188257920260000", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Luanda", "source": "WIKIPEDIA"}], "variant_access_point": ["São Paulo de Loanda (Angola)"], "authorized_access_point": "Luanda (Angola)"} 1 +2024-09-11 09:11:04.663014 2024-09-11 09:11:04.663018 2d6a9369-fc4d-4436-b714-2e6cbcb3e8cb {"md5": "748d143b8257a5e269e218aa8913c728", "pid": "027621952", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Silésie"}, {"authorized_access_point": "Pologne (sud)"}, {"authorized_access_point": "Pologne (ouest)"}, {"authorized_access_point": "Territoires anciennement allemands de l'est"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027621952", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11962295n", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04052678X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/137152383", "source": "VIAF"}], "authorized_access_point": "Silésie (Pologne)"} 1 +2024-09-11 09:11:30.459679 2024-09-11 09:11:30.459688 f2874641-aee0-4691-a4c9-9aacf39ffdb8 {"md5": "cba7543382a146dffd4a966846dbb07e", "pid": "279128800", "note": [{"label": ["http://www.geonames.org/, 2024-07-01"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Livingston"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279128800", "source": "IDREF"}], "authorized_access_point": "Strawn (Ill.)"} 1 +2024-09-11 09:11:04.723986 2024-09-11 09:11:04.72399 f1b9dfe6-5d7c-41f3-a775-3b5f1ee645b1 {"md5": "69d69836df8ab4accbab7cf1ce291f9b", "pid": "027622444", "note": [{"label": ["IFLA, Names of states, 1981", "Laval RVM, 1996-02. Sverige ; GKD, 1994-05"], "noteType": "dataSource"}, {"label": ["Voir aussi la subdivision Et la Suède aux personnes et collectivités"], "noteType": "seeReference"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Scandinavie"}, {"authorized_access_point": "Pays de l'Union européenne"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027622444", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13953240p", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040772586", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/178302678", "source": "VIAF"}], "variant_access_point": ["Sverige"], "authorized_access_point": "Suède"} 1 +2024-09-11 09:11:04.778998 2024-09-11 09:11:04.779003 29bc9f9f-cdc2-4723-ba9a-20913d22d47c {"md5": "42283c310256b94b38e49c754f9ad433", "pid": "02763065X", "note": [{"label": ["Le Monde, 1990-05-23", "Yémen ; Pays et capitales du monde / IGN, 1986. Yémen (République arabe) ; IFLA, Names of states, 1981 ; BN ACO ; GDEL. Laval RVM, 1991-08 distingue les vedettes Yémen et Yémen du Nord"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent du Yémen jusqu'en 1962 et/ou de la République arabe du Yémen (1962-1990) et/ou du Yémen unifié depuis 1990", "Le 26-09-1962, l'imam Mansour est déposé, et le Yémen devient la République arabe du Yémen. Le 22-05-1990, proclamation de la République du Yémen, résultant de la fusion entre le Nord et le Sud-Yémen (Capitale : Ṣan ̦ā)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Arabie"}, {"authorized_access_point": "Arabie (sud)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02763065X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11963045s", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040730093", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/158182311", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Yémen", "source": "WIKIPEDIA"}], "variant_access_point": ["Nord-Yémen", "Yémen (République arabe)", "Yémen du Nord", "اليمن", "Al-Yaman", "يمن", "Yaman"], "authorized_access_point": "Yémen"} 1 +2024-09-11 09:11:04.846999 2024-09-11 09:11:04.847009 0a856bcf-b9cc-4079-9615-e49ee48f1828 {"md5": "e602c2d63a7b4c4ce4337605bc8a5a62", "pid": "027632571", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Mont-Cenis (France ; massif)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027632571", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119632320", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/173636676", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Col_du_Mont-Cenis", "source": "WIKIPEDIA"}], "variant_access_point": ["Cenis, Col du Mont- (France)", "Mont Cenis, Col du (France)"], "authorized_access_point": "Mont-Cenis, Col du (France)"} 1 +2024-09-11 09:11:04.901021 2024-09-11 09:11:04.901025 7c30fcdd-6f3a-4fad-ae06-ffec57e53530 {"md5": "85db08d809c37be49e2161f50fb65cdc", "pid": "02763857X", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Himalaya"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02763857X", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04040417X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/247168735", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Everest", "source": "WIKIPEDIA"}], "variant_access_point": ["Chomolungma (mont)"], "authorized_access_point": "Everest, Mont"} 1 +2024-09-11 09:11:04.9721 2024-09-11 09:11:04.972104 5c69f2bb-410a-41f6-912e-bb00c18c0c21 {"md5": "1a915e96f3e88fca6ecc12a067cace09", "pid": "027645649", "note": [{"label": ["Pacific Area ; LCSH, 1988-06. Pacifique, Région du ; Laval RVM suppl., 1988-03"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de l'ensemble formé par les îles et les pays riverains du Pacifique"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Pacifique, Îles du"}, {"authorized_access_point": "Océanie"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027645649", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119643079", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040449823", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172439456", "source": "VIAF"}], "variant_access_point": ["Pacifique (océan ; région)"], "authorized_access_point": "Pacifique (région)"} 1 +2024-09-11 09:11:05.043991 2024-09-11 09:11:05.044 b27b0cfd-586c-4359-80b2-659d2108f9ed {"md5": "4164ffa98059d84cabe09560677993ab", "pid": "027656438", "note": [{"label": ["Grand Larousse universel (art. : Révolution russe de 1917)", "Dict. encyclopédique d'histoire / M. Mourre (art. : Russie)"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les documents qui traitent des événements survenus du 12 au 15 mars 1917 (27 février-2 mars du calendrier julien), jusqu'aux 6 et 7 novembre 1917 (24-25 octobre du calendrier julien). Les documents sur l'ensemble de la période révolutionnaire de 1917 à 1921 sont sous la vedette : URSS -- 1917-1921 (Révolution)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "URSS - 1917-1921 (Révolution)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027656438", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11965185s", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04043429X", "source": "GND"}], "classification": [{"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["URSS - 1917 (Révolution)"], "authorized_access_point": "Russie - 1917 (Révolution)"} 1 +2024-09-11 09:11:30.52973 2024-09-11 09:11:30.52974 b32c75a0-312d-4d4e-9e3c-e36f02125802 {"md5": "9ac7d6654a1bdfa59f7064910c8e7fa0", "pid": "27912886X", "note": [{"label": ["http://www.geonames.org/, 2024-07-01"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Ford"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27912886X", "source": "IDREF"}], "authorized_access_point": "Sibley (Ill.)"} 1 +2024-09-11 09:11:05.163131 2024-09-11 09:11:05.163139 b70be34d-2527-41d3-993e-2e0b3b376806 {"md5": "cabe4040c75d9fc9c01e6cac29c84525", "pid": "027680231", "note": [{"label": ["GDEL. SY 1990/91. Îles Anglo-Normandes ; Laval RVM, 1990-08"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Grande-Bretagne"}, {"authorized_access_point": "Manche, Îles de la"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027680231", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119671393", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040731863", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/316732616", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Îles_Anglo-Normandes", "source": "WIKIPEDIA"}], "variant_access_point": ["Channel Islands (GB)", "Îles Anglo-Normandes (GB)"], "authorized_access_point": "Anglo-Normandes, Îles (GB)"} 1 +2024-09-11 09:11:05.225379 2024-09-11 09:11:05.225383 707c4f19-98b4-4dc3-83b7-820bf34b8c75 {"md5": "9e4d5003fe63f3567073ef1ab6ab1951", "pid": "027693007", "note": [{"label": ["Petit Robert des noms propres 2013 (art. : Genève)", "Grand Larousse universel (art. : Genève)", "Wikipédia : Cathédrale Saint-Pierre de Genève - https://fr.wikipédia.org (2016-01-22)", "Guides Voir : Suisse, 2012", "Cathédrale Saint-Pierre - Ville de Genève - http://www.ville-geneve.ch (2016-01-22)", "Cathédrale Saint-Pierre - Genève - http://www.cathedrale-geneve.ch (2016-01-22)"], "noteType": "dataSource"}, {"label": ["Cathédrale sise dans la cour du même nom, construite de 1160 à 1230, avec une flèche entre ses deux tours ; un portail néoclassique à colonnes est ajouté au 18e siècle. A l'endroit de plusieurs édifices cultuels antérieurs - un temple romain, un palais épiscopal (en témoigne son pavement mosaïqué), une église romane (on trouve des chapiteaux romans et gothiques) - la cathédrale est d'abord vouée au culte catholique, avant de devenir cathédrale protestante à partir de la Réforme (1535), avec les prêches de Guillaume Farel et surtout de Jean Calvin"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027693007", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11968062k", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)042384516", "source": "GND"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Construction", "type": "bf:ClassificationDdc", "classificationPortion": "690"}, {"name": "Architecture", "type": "bf:ClassificationDdc", "classificationPortion": "720"}, {"name": "Géographie de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Cathédrale Saint-Pierre (Genève, Suisse)", "Saint-Pierre, Cathédrale (Genève, Suisse)"], "authorized_access_point": "Genève (Suisse) - Cathédrale Saint-Pierre"} 1 +2024-09-11 09:11:05.279975 2024-09-11 09:11:05.27998 50610f7e-0af0-47c5-b771-f3a78e6b7063 {"md5": "fd1423054703ae3e3589f88ec7ad5b2e", "pid": "027693805", "note": [{"label": ["GDEL. Atlas Le Monde"], "noteType": "dataSource"}, {"label": ["Province de Chine"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chine (sud)"}, {"authorized_access_point": "Chine - Provinces"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027693805", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/123100736", "source": "VIAF"}], "variant_access_point": ["廣東省", "Canton (Chine ; province)", "Kouang-tong (Chine)", "Kuang-tung (Chine)", "Kwangtung (Chine)", "广东省", "Guangdong Sheng"], "authorized_access_point": "Guangdong (Chine ; province)"} 1 +2024-09-11 09:11:05.338882 2024-09-11 09:11:05.338886 78e95d5b-7453-427f-9cdb-16647ff533d0 {"md5": "1ccbd5b4afb415f296eec39122dacd77", "pid": "027693821", "note": [{"label": ["GDEL. Atlas Le Monde"], "noteType": "dataSource"}, {"label": ["Région autonome en partie peuplée de Zhuang, Chine"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chine - Provinces"}, {"authorized_access_point": "Chine (sud)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027693821", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb153562085", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/263760018", "source": "VIAF"}], "variant_access_point": ["Kouang-si (Chine)", "Kuang-hsi (Chine)", "Kwangsi (Chine)", "廣西省", "广西壮族自治区", "廣西壯族自治區", "guǎngxī zhuàngzú zìzhìqū", "广西省", "Guangxi Sheng"], "authorized_access_point": "Guangxi (Chine ; province)"} 1 +2024-09-11 09:11:05.399026 2024-09-11 09:11:05.39903 f3fd224c-73fa-416c-afab-71e843fcfe4c {"md5": "abc7a7c9147d5ceb8b3757174c18a00a", "pid": "027694658", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["Capitale du Koweït"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027694658", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/127853965", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Koweït_(ville)", "source": "WIKIPEDIA"}], "authorized_access_point": "Koweït (Koweït)"} 1 +2024-09-11 09:11:05.464161 2024-09-11 09:11:05.464169 e6fe50d5-77b9-45d3-a213-2a22d3994d48 {"md5": "64aea29bb1ee34ad68ec960f56b698dd", "pid": "027705781", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Rhodanien, Sillon (France)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027705781", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119691089", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)041037766", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041037766", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173745158", "source": "VIAF"}], "authorized_access_point": "Rhône, Vallée du"} 1 +2024-09-11 09:11:05.532051 2024-09-11 09:11:05.532059 be62888d-24bc-4452-b2e9-9454b02efa86 {"md5": "9af8f09acdce09aa60e2ccff0c9d024b", "pid": "027722996", "note": [{"label": ["Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027722996", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119704817", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/295782321", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Claix_(Isère)", "source": "WIKIPEDIA"}], "authorized_access_point": "Claix (Isère)"} 1 +2024-09-11 09:11:09.329025 2024-09-11 09:11:09.329032 12e6f7e3-1583-4a38-8bc9-98c677e57143 {"md5": "e7cc6d041b60ce416031173613b03128", "pid": "028727444", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028727444", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040216934", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/1458148574258924430003", "source": "VIAF"}], "authorized_access_point": "Saint-Gothard, Tunnel ferroviaire du (Suisse)"} 1 +2024-09-11 09:11:05.603788 2024-09-11 09:11:05.603793 3f77b463-c0dd-4103-8517-3bbfbe853f41 {"md5": "a0ff4f523a77dfc30b4d72152880169f", "pid": "027744795", "note": [{"label": ["Mourre, 1986. GLU, 1991", "Laval RVM, 1996-02. Rheinland ; Rheinprovinz ; SWD, 1995-04"], "noteType": "dataSource"}, {"label": ["Partie de l'Allemagne située de part et d'autre du Rhin, de la frontière française à la frontière néerlandaise"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Allemagne (ouest)"}, {"authorized_access_point": "Rhin, Bassin du"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027744795", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119721889", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040497887", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173036235", "source": "VIAF"}], "variant_access_point": ["Prusse rhénane", "Rheinland (Allemagne)", "Rheinprovinz"], "authorized_access_point": "Rhénanie (Allemagne)"} 1 +2024-09-11 09:11:05.688467 2024-09-11 09:11:05.688471 47070620-e1f7-4a70-a240-fb9b671b8a08 {"md5": "d32fe8280c4844f0ffcb5c67553d3e82", "pid": "02775751X", "note": [{"label": ["Alps, Italian (Italy) ; LCSH, 1988-12"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Grappa (Italie ; massif)"}, {"authorized_access_point": "Cadore (Italie)"}, {"authorized_access_point": "Dolomites (Italie ; massif)"}, {"authorized_access_point": "Alpes juliennes"}, {"authorized_access_point": "Alpes cottiennes"}, {"authorized_access_point": "Alpes maritimes (massif)"}, {"authorized_access_point": "Adamello (Italie ; massif)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02775751X", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040278395", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/316431852", "source": "VIAF"}], "variant_access_point": ["Alpes italiennes"], "authorized_access_point": "Alpes (Italie)"} 1 +2024-09-11 09:11:05.766495 2024-09-11 09:11:05.766503 0f7c9091-2b70-4e2a-9b26-b781b6ff60df {"md5": "1af72c48aa94fcaf5dbf1112e58d5fc4", "pid": "027764842", "note": [{"label": ["GLU. Atlas universalis, 1984. LCNA (CD), 1995-09"], "noteType": "dataSource"}, {"label": ["Ville de Chine, capitale de la province de Zhejiang"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Zhejiang (Chine ; province)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027764842", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/172602288", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Hangzhou", "source": "WIKIPEDIA"}], "relation_pid": {"type": "redirect_from", "value": "075553589"}, "variant_access_point": ["Hang-tcheou (Chine)", "Hangchow (Chine)", "Hang-chou Shih (Chine)", "杭州市", "Hangzhou Shi"], "authorized_access_point": "Hangzhou (Chine)"} 1 +2024-09-11 09:11:05.836861 2024-09-11 09:11:05.836869 55b3208b-de8c-49b8-af61-1197de85eea9 {"md5": "93ac5a33405c9858056278e0884e0a30", "pid": "027768627", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Alsace (France)"}, {"authorized_access_point": "Bourgogne (France)"}, {"authorized_access_point": "Champagne-Ardenne (France)"}, {"authorized_access_point": "Franche-Comté (France)"}, {"authorized_access_point": "Lorraine (France)"}, {"authorized_access_point": "Rhône-Alpes (France)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027768627", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119740170", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04044063X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173255369", "source": "VIAF"}], "authorized_access_point": "France (est)"} 1 +2024-09-11 09:11:05.919332 2024-09-11 09:11:05.919341 a94bf2f8-027b-412a-a14d-6671f3a4ba02 {"md5": "8a99286737c11d5df3c7dd4bf706b552", "pid": "02776866X", "note": [{"label": ["France (Ouest) ; Laval RVM, 1994-02"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de la partie de la France située entre l'estuaire de la Seine et la Gironde"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Armoricain, Massif (France)"}, {"authorized_access_point": "Basse-Normandie (France)"}, {"authorized_access_point": "Bretagne (France)"}, {"authorized_access_point": "Pays de la Loire (France)"}, {"authorized_access_point": "Poitou-Charentes (France)"}, {"authorized_access_point": "Longueville (Calvados, Basse-Normandie)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02776866X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119740217", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)042449510", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172492580", "source": "VIAF"}], "authorized_access_point": "France (ouest)"} 1 +2024-09-11 09:11:05.987535 2024-09-11 09:11:05.987538 33eefb31-8c71-45b2-8104-fac1a7250cb7 {"md5": "86f849fc2b060f97c60510e5d670c11c", "pid": "027768678", "note": [{"label": ["France (Sud) ; Laval RVM, 1996-02"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027768678", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11974022k", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040714039", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172332341", "source": "VIAF"}], "variant_access_point": ["France du sud", "France méridionale", "Midi (France)", "Sud de la France"], "authorized_access_point": "France (sud)"} 1 +2024-09-11 09:11:06.049834 2024-09-11 09:11:06.049838 a019c507-43b7-48d3-a73a-c78e13ef30d5 {"md5": "fdd7170a4fa051dcbe62de4d6c27b9b7", "pid": "027768686", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Languedoc-Roussillon (France)"}, {"authorized_access_point": "Provence-Alpes-Côte d'Azur (France)"}, {"authorized_access_point": "Rhône-Alpes (France)"}, {"authorized_access_point": "Alpes maritimes (province romaine)"}, {"authorized_access_point": "Viennoise (province romaine)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027768686", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11974023x", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)041330986", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/315160421", "source": "VIAF"}], "variant_access_point": ["Méditerranée (région ; France)"], "authorized_access_point": "France (sud-est)"} 1 +2024-09-11 09:11:06.117834 2024-09-11 09:11:06.11784 96f9b892-bfad-4a8a-af72-fb64be86e9c6 {"md5": "dc0eaf87938b2b4b884a23a376b0c674", "pid": "027768694", "note": [{"label": ["France (Sud-Ouest) ; Laval RVM, 1996-02"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Aquitaine (France)"}, {"authorized_access_point": "Aquitaine, Bassin (France)"}, {"authorized_access_point": "Gascogne (France)"}, {"authorized_access_point": "Guyenne (France)"}, {"authorized_access_point": "Limousin (France)"}, {"authorized_access_point": "Midi-Pyrénées (France)"}, {"authorized_access_point": "Poitou-Charentes (France)"}, {"authorized_access_point": "Septimanie"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027768694", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119740248", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040584755", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/315160386", "source": "VIAF"}], "variant_access_point": ["Sud-Ouest (France)"], "authorized_access_point": "France (sud-ouest)"} 1 +2024-09-11 09:11:06.202656 2024-09-11 09:11:06.20266 7563ada5-8a9c-434e-88a5-3527d76c5c54 {"md5": "6cfbc4a11885bdc4a3ec5b40006b86a4", "pid": "027775348", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Gironde (France)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027775348", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11974560h", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040804690", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173418908", "source": "VIAF"}], "variant_access_point": ["Bordeaux (Gironde ; région)"], "authorized_access_point": "Bordelais (Gironde)"} 1 +2024-09-11 09:11:06.263044 2024-09-11 09:11:06.263048 2cc60ed2-a0e5-467e-ad1f-193247627c6b {"md5": "c37e50fb7272d69c233600c503c2d05a", "pid": "027777456", "note": [{"label": ["Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027777456", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/242735625", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/La_Roche-Vineuse", "source": "WIKIPEDIA"}], "variant_access_point": ["Roche-Vineuse, La (Saône-et-Loire)"], "authorized_access_point": "La Roche-Vineuse (Saône-et-Loire)"} 1 +2024-09-11 09:11:06.319219 2024-09-11 09:11:06.319227 250b8ec6-ac74-4543-93cd-89c1e1abb0bd {"md5": "49f1d4b3b48baaf8e7893ae6984b8ae9", "pid": "027785718", "note": [{"label": ["GDEL. Laval RVM suppl., 1988-03"], "noteType": "dataSource"}, {"label": ["Emploi direct en subdivision : [Sujet] -- Suisse italienne"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027785718", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11975348b", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)041972147", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/171144783017780015328", "source": "VIAF"}], "variant_access_point": ["Suisse de langue italienne"], "authorized_access_point": "Suisse italienne"} 1 +2024-09-11 09:11:06.385761 2024-09-11 09:11:06.385769 e811883f-51ba-4660-a85e-38037ab1c6ff {"md5": "9b408ce07f45a387ed52866919ab31b4", "pid": "027806626", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Allemagne"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Allemagne (nord-est)"}, {"authorized_access_point": "Allemagne (nord-ouest)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027806626", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11976943h", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040754863", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040754545", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173036261", "source": "VIAF"}], "authorized_access_point": "Allemagne (nord)"} 1 +2024-09-11 09:11:06.448903 2024-09-11 09:11:06.448907 27042514-d328-454d-a3cf-9d7f7b7a1477 {"md5": "e81860e82a9f8aea19fbee0fd68477dd", "pid": "027812723", "note": [{"label": ["Dict. communes, 1984. GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027812723", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040880729", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173309588", "source": "VIAF"}], "variant_access_point": ["Bordeaux", "Bordelh (Gironde, France)", "Bordèu (Gironde, France)", "Burdigala (ville ancienne)"], "authorized_access_point": "Bordeaux (Gironde)"} 1 +2024-09-11 09:11:06.513312 2024-09-11 09:11:06.513317 23fca87c-64a3-45fc-9e17-4d787dbafdd7 {"md5": "0dff70d1eb919668d6726fbd0c08cfcd", "pid": "027825558", "note": [{"label": ["GLU, 1991", "Laval RVM, 1996-08"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Massif central (France)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027825558", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/242739698", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Monts_du_Lyonnais", "source": "WIKIPEDIA"}], "authorized_access_point": "Lyonnais, Monts du (France)"} 1 +2024-09-11 09:11:06.572835 2024-09-11 09:11:06.572838 e9881993-6167-4a0e-976f-875bd0abd6f4 {"md5": "07b370e1f0eeed688dbed706937a0d1d", "pid": "027838935", "note": [{"label": ["Names of states / IFLA, 1981. Pays et capitales du monde / IGN, 1985"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pays du golfe Persique"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027838935", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119794070", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04062742X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/3379148574308124430003", "source": "VIAF"}], "variant_access_point": ["Al-Imārāt", "United Arab Emirates", "UAE"], "authorized_access_point": "Émirats arabes unis"} 1 +2024-09-11 09:11:06.627008 2024-09-11 09:11:06.627012 92d88c5f-664b-4523-ba55-b5da99897fd8 {"md5": "e855f8ba16e216fa2ccd7247e434eb6f", "pid": "027840883", "note": [{"label": ["GLU. Mourre, 1996", "Laval RVM, 1999-01"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Asie centrale"}, {"authorized_access_point": "Pays de la CEI"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027840883", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13507963h", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040308480", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/148476223", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Kirghizistan", "source": "WIKIPEDIA"}], "variant_access_point": ["Kirghizie", "Kirghizstan", "Kyrgyzstan"], "authorized_access_point": "Kirghizistan"} 1 +2024-09-11 09:11:06.698279 2024-09-11 09:11:06.698287 53df4917-b55f-4c15-a3d2-6f7d86f83725 {"md5": "bf229c39a42455b8fdd74947cd3f92d9", "pid": "027842959", "note": [{"label": ["BN ACO. Le Monde, 1-1-1993"], "noteType": "dataSource"}, {"label": ["La République socialiste tchèque, créée le 1-1-1969, comprenait la partie tchèque de la Tchécoslovaquie (Bohême, Moravie et Silésie, cette dernière étant rattachée à la Moravie-Septentrionale) ; elle devient la République tchèque en 1990 et accède à l'indépendance le 1-1-1993"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europe centrale"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027842959", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04303381", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/953148574339124430001", "source": "VIAF"}], "variant_access_point": ["Bohême-Moravie", "Česká republika", "Česká socialistická republika", "République socialiste tchèque", "Tchèque, République", "Tchéquie"], "authorized_access_point": "République tchèque"} 1 +2024-09-11 09:11:06.76477 2024-09-11 09:11:06.764773 9a93b5cb-2bd7-43f4-a550-a432d59494dc {"md5": "374932cebd2fc8369f748fe89c511fcd", "pid": "027848213", "note": [{"label": ["Names of states / IFLA, 1981. Pays et capitales du monde / IGN, 1985"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bornéo"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027848213", "source": "IDREF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Brunei", "source": "WIKIPEDIA"}], "authorized_access_point": "Brunéi"} 1 +2024-09-11 09:11:06.821596 2024-09-11 09:11:06.821604 7ccee860-bb49-4691-8f5b-0c1f2117d670 {"md5": "a510189d0eded61a112b21ff38efe57d", "pid": "027853128", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027853128", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040676110", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173364430", "source": "VIAF"}], "variant_access_point": ["Alpes centrales"], "authorized_access_point": "Alpes (centre)"} 1 +2024-09-11 09:11:06.895442 2024-09-11 09:11:06.895453 4953b76b-0926-467b-8ec0-747569fa8c1f {"md5": "d91c02b37b8c054ac2bc2a06ced38936", "pid": "027853136", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Rhétie (province romaine)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027853136", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040441067", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/1391148574382824430000", "source": "VIAF"}], "variant_access_point": ["Suisse orientale"], "authorized_access_point": "Suisse (est)"} 1 +2024-09-11 09:11:06.97446 2024-09-11 09:11:06.974469 f2634976-3b16-4104-9368-65d751d2107a {"md5": "7cac272f88eb6e18a10e23c383e24c97", "pid": "027860787", "note": [{"label": ["GDEL. SY 1990/91", "DNB - https://d-nb.info/gnd/4051594-1, 2023-12-01", "DHS - https://hls-dhs-dss.ch/de/articles/007390/2017-05-11/, 2023-12-01"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027860787", "source": "IDREF"}, {"type": "uri", "value": "https://catalogue.bnf.fr/ark:/12148/cb11981215b", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040515958", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/5207153126238624750006", "source": "VIAF"}, {"type": "uri", "value": "http://viaf.org/viaf/124913894", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "227521803"}, "variant_access_point": ["Sankt Gallen (Suisse ; canton)", "St. Gallen (Suisse ; canton)"], "authorized_access_point": "Saint-Gall (Suisse ; canton)"} 1 +2024-09-11 09:11:07.046184 2024-09-11 09:11:07.046194 56ef7f2a-12b3-49aa-a736-1a8b9361d7d2 {"md5": "9d89711be66caee7318da4fdbb061030", "pid": "027875695", "note": [{"label": ["GDEL. Atlas Le Monde"], "noteType": "dataSource"}, {"label": ["Province chinoise"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Mandchourie (Chine)"}, {"authorized_access_point": "Chine (nord)"}, {"authorized_access_point": "Chine - Provinces"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027875695", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/173036300", "source": "VIAF"}], "variant_access_point": ["Hei-long-kiang (Chine)", "Heilungkiang (Chine)", "黑龍江省", "黑龙江省", "Heilongjiang Sheng"], "authorized_access_point": "Heilongjiang (Chine; province)"} 1 +2024-09-11 09:11:07.101117 2024-09-11 09:11:07.101119 aac22870-8476-42d4-a072-a7d6d9d0e026 {"md5": "c479a487a4295d89009e15b8a8ea799e", "pid": "027875717", "note": [{"label": ["GDEL. Atlas Le Monde"], "noteType": "dataSource"}, {"label": ["Province chinoise"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Mandchourie (Chine)"}, {"authorized_access_point": "Chine (nord)"}, {"authorized_access_point": "Chine - Provinces"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027875717", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/147752871", "source": "VIAF"}], "variant_access_point": ["Chi-lin", "Ki-lin", "Kirin", "吉林省", "Jilin Sheng"], "authorized_access_point": "Jilin (Chine ; province)"} 1 +2024-09-11 09:11:07.153587 2024-09-11 09:11:07.153589 af997add-f63f-44be-850a-415bf926ea4d {"md5": "6a0c8089ea22ed7c1692fca6db1cd06e", "pid": "027875725", "note": [{"label": ["GDEL. Atlas Le Monde. BN Service chinois"], "noteType": "dataSource"}, {"label": ["Province chinoise formée par la réunion du Liaodong et du Liaoxi en 1954"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Mandchourie (Chine)"}, {"authorized_access_point": "Chine (nord)"}, {"authorized_access_point": "Chine - Provinces"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027875725", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/8421148574328624430007", "source": "VIAF"}], "variant_access_point": ["Leao-ning", "Liao-ning", "遼寧省", "辽宁省", "Liaoning Sheng"], "authorized_access_point": "Liaoning (Chine ; province)"} 1 +2024-09-11 09:11:07.212829 2024-09-11 09:11:07.212833 7e60d9da-59ee-4d28-a918-adb6510b63a6 {"md5": "3eacc25c3f98239434a5d0923fea1ae1", "pid": "027883000", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Jura (massif)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027883000", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040538885", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/9759148574375724430007", "source": "VIAF"}], "authorized_access_point": "Jura (Suisse ; massif)"} 1 +2024-09-11 09:11:07.275095 2024-09-11 09:11:07.275099 7fda643f-f682-4cca-b8a0-82477bc81af3 {"md5": "5ed252fffbf20a5a56683e1febb1302d", "pid": "027935280", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Haute-Savoie (France)"}, {"authorized_access_point": "Préalpes (France)"}, {"authorized_access_point": "Savoie"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027935280", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11987107w", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/151274210", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Faucigny_(Haute-Savoie)", "source": "WIKIPEDIA"}], "variant_access_point": ["Bonneville (Haute-Savoie ; région)"], "authorized_access_point": "Faucigny (France)"} 1 +2024-09-11 09:11:07.334112 2024-09-11 09:11:07.334116 a8d09e4d-4580-4bc5-8bed-e8ea17a7d3df {"md5": "d1cb8503972c4aca53b75f4578b48205", "pid": "027945774", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027945774", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11987945n", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040554589", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/128144648648649371618", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "276094255"}, "variant_access_point": ["Solothurn (Suisse)"], "authorized_access_point": "Soleure (Soleure, Suisse)"} 1 +2024-09-11 09:11:07.399445 2024-09-11 09:11:07.399449 b8105d1c-5854-480b-8373-51c382cedd9c {"md5": "de8f508dcb47d576d245dfd7746b671d", "pid": "027949117", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Île-de-France (France)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027949117", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11988194w", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04044662X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/315153457", "source": "VIAF"}], "variant_access_point": ["Paris (France ; région)", "Grand Paris (France)"], "authorized_access_point": "Paris (France ; agglomération)"} 1 +2024-09-11 09:11:07.464157 2024-09-11 09:11:07.464162 0a68d2b5-dd92-4557-9bce-a20755463ecc {"md5": "db2e22afcc5103a00a6fbcc9d66a4794", "pid": "027952800", "note": [{"label": ["GDEL. SY 1990/91"], "noteType": "dataSource"}, {"label": ["Canton suisse"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/027952800", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119884863", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040554597", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/132527094", "source": "VIAF"}], "variant_access_point": ["Solothurn (Suisse ; canton)"], "authorized_access_point": "Soleure (Suisse ; canton)"} 1 +2024-09-11 09:11:07.523243 2024-09-11 09:11:07.523245 ffbe9e71-1ee9-42c1-8eaa-daead39825bd {"md5": "be75f816497f2487364888629c28ec8d", "pid": "028036336", "note": [{"label": ["GDEL. SY, 1990/1991"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Madagascar"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028036336", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/123282613", "source": "VIAF"}], "authorized_access_point": "Fianarantsoa (Madagascar ; province)"} 1 +2024-09-11 09:11:07.572838 2024-09-11 09:11:07.572841 c76dea66-f415-470d-8a77-ac68726b16f4 {"md5": "474d392224877f281c3d0413f0f3d79a", "pid": "028097505", "note": [{"label": ["Sous cette vedette on touve les ouvrages qui traitent des États africains dont la langue officielle est le portugais (Angola, Cap-Vert, Guinée-Bissau, Mozambique, São Tomé-et-Principe) depuis leur accession à l'indépendance. Les ouvrages qui traitent de ces territoires durant la période coloniale se trouvent sous la vedette : Portugal -- Colonies -- Afrique"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pays de langue portugaise"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028097505", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)043270158", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172982699", "source": "VIAF"}], "variant_access_point": ["Afrique d'expression portugaise"], "authorized_access_point": "Afrique lusophone"} 1 +2024-09-11 09:11:09.399211 2024-09-11 09:11:09.399217 2ce95ef0-6907-47d1-bf0b-a1280a2e0209 {"md5": "ea4b19e88a1f239bc98bec37748a9a8d", "pid": "028877764", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028877764", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12062211c", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04000019", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/21144647635437368856", "source": "VIAF"}], "authorized_access_point": "Aar (Suisse ; cours d'eau)"} 1 +2024-09-11 09:11:07.624619 2024-09-11 09:11:07.624623 2a4397e6-3858-472a-9e97-6e2681aa468b {"md5": "f275d07e3512ecb38258c2050c8b6197", "pid": "028135903", "note": [{"label": ["Laval RVM, 1992-08"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "France - 1789-1799 (Révolution) - Républiques soeurs"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028135903", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)954767330", "source": "GND"}], "variant_access_point": ["Helvétique, République (1798-1803)", "République helvétique (1798-1803)"], "authorized_access_point": "Suisse - 1798-1803 (République helvétique)"} 1 +2024-09-11 09:11:07.669624 2024-09-11 09:11:07.669627 1f2e3465-90d3-4d97-a7cb-6dc6755c3e07 {"md5": "f83a07a82eb34c9b43ba2db8c018882c", "pid": "028141814", "note": [{"label": ["Guide bleu Suisse, 1977"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028141814", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12003515k", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040740528", "source": "GND"}], "authorized_access_point": "Lausanne (Suisse) - Cathédrale Notre-Dame"} 1 +2024-09-11 09:11:07.785285 2024-09-11 09:11:07.785305 9d24106f-51cc-49af-aa04-f7ccb27aeccd {"md5": "6f9a4bf46868909b09214a05876e91d1", "pid": "028146212", "note": [{"label": ["Guide bleu, Suisse, 1977"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bienne, Lac de (Suisse)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028146212", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12003873k", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040516385", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/878144783180710992014", "source": "VIAF"}], "authorized_access_point": "Saint-Pierre (Suisse ; île)"} 1 +2024-09-11 09:11:07.863 2024-09-11 09:11:07.863004 f34085fd-3967-4d25-9489-ef9fa716ae14 {"md5": "e09c41023c08caced4ad64a0f5cb07f7", "pid": "028172825", "note": [{"label": ["Atlas Le Monde. BN service Asie"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028172825", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/81148570732224312626", "source": "VIAF"}], "variant_access_point": ["Larestan (Iran)"], "authorized_access_point": "Lāristān (Iran)"} 1 +2024-09-11 09:11:07.922654 2024-09-11 09:11:07.922658 6ea1142d-edc7-44d0-8549-6913d1124baa {"md5": "7e2c80e102c3bebabe766809e6c45ab1", "pid": "02817450X", "note": [{"label": ["Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02817450X", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/134507635", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Divonne-les-Bains", "source": "WIKIPEDIA"}], "authorized_access_point": "Divonne-les-Bains (Ain)"} 1 +2024-09-11 09:11:07.986662 2024-09-11 09:11:07.986667 1afaf128-0016-46a5-baf7-a3778956c7fd {"md5": "cd3e4723260d7c73ed3151c64a4806bb", "pid": "028180135", "note": [{"label": ["Atlas Le Monde. GLE"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028180135", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120067197", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)964919958", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/240551570", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Gorges_de_l'Areuse", "source": "WIKIPEDIA"}], "authorized_access_point": "Areuse, Gorges de l' (Neuchâtel, Suisse)"} 1 +2024-09-11 09:11:08.059445 2024-09-11 09:11:08.059452 f69fe93c-4c54-456e-88d3-719ff8c72dc4 {"md5": "4fa1f41d50d62bc6457e311abedc30cc", "pid": "028201922", "note": [{"label": ["Alsace-Lorraine (Allemagne) ; Laval RVM, 1997-02", "GLU, 1991. Mourre, 1996"], "noteType": "dataSource"}, {"label": ["Par convention cette vedette, qui peut s'utiliser pour la période allemande comme la période française, s'emploie directement en subdivision : [sujet] -- Alsace-Lorraine", "Partie de l'Alsace et de la Lorraine annexée par l'Allemagne (1871-1918 et 1940-1944), comprenant les départements actuels du Bas-Rhin, du Haut-Rhin et de la Moselle"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028201922", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040145026", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/137798315", "source": "VIAF"}], "variant_access_point": ["Alsace-Moselle", "Elsass-Lothringen"], "authorized_access_point": "Alsace-Lorraine"} 1 +2024-09-11 09:11:08.108677 2024-09-11 09:11:08.108681 6516093a-6386-4a8e-a222-9aed30cc720c {"md5": "5bf5a1fb34bdec871ac999739958fc40", "pid": "028212967", "note": [{"label": ["GDEL. Atlas Le Monde"], "noteType": "dataSource"}, {"label": ["Province chinoise"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chine (sud)"}, {"authorized_access_point": "Chine - Provinces"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028212967", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12009405f", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/124144928850254441195", "source": "VIAF"}], "variant_access_point": ["Hou-nan", "湖南省", "Hunan Sheng"], "authorized_access_point": "Hunan (Chine ; province)"} 1 +2024-09-11 09:11:08.171107 2024-09-11 09:11:08.171115 ec3057b3-f099-4ddd-9d2f-ca2c43d76b8e {"md5": "6fc26772dfcadfc619e20940bc28b667", "pid": "028212991", "note": [{"label": ["GDEL. Atlas Le Monde"], "noteType": "dataSource"}, {"label": ["Province du nord-ouest de la Chine qui tire son nom du lac du même nom et correspond à peu près à l'ancienne région tibétaine de l'Amdo"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chine (ouest)"}, {"authorized_access_point": "Chine - Provinces"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028212991", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/173581638", "source": "VIAF"}], "variant_access_point": ["Ts'ing-hai (Chine)", "Tsinghai (Chine)", "青海省", "Qinghai Sheng", "མཚོ་སྔོན་", "mTsho sngon"], "authorized_access_point": "Qinghai (Chine)"} 1 +2024-09-11 09:11:08.244272 2024-09-11 09:11:08.244276 2b3148f7-96b1-4324-b241-c291244f3927 {"md5": "e1dfb1d352566c5eb440a7def1bb9a45", "pid": "028213017", "note": [{"label": ["GDEL. Atlas Le Monde. Laval RVM, 1990-02"], "noteType": "dataSource"}, {"label": ["Province chinoise"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chine (sud)"}, {"authorized_access_point": "Chine - Provinces"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028213017", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/172172257", "source": "VIAF"}], "variant_access_point": ["Hou-pei", "Hupeh", "湖北省", "Hubei Sheng"], "authorized_access_point": "Hubei (Chine ; province)"} 1 +2024-09-11 09:11:08.306292 2024-09-11 09:11:08.306296 9f0fd42d-86eb-479b-b0e2-be3166826ef1 {"md5": "834dff0ed8d3dabdeefa5de99e2ff5e7", "pid": "028215346", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028215346", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040727688", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172765671", "source": "VIAF"}], "authorized_access_point": "Inde (nord)"} 1 +2024-09-11 09:11:08.371883 2024-09-11 09:11:08.371887 40bfb065-609e-4b60-901f-0801eda2cf67 {"md5": "e5c4630282e8484fcea4e46a5c2f13ca", "pid": "028217160", "note": [{"label": ["GDEL. Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028217160", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/147742263", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Rougemont_(Doubs)", "source": "WIKIPEDIA"}], "authorized_access_point": "Rougemont (Doubs)"} 1 +2024-09-11 09:11:08.44017 2024-09-11 09:11:08.440172 3136ba86-3bc8-40a0-b7e5-f1c19ea01ba9 {"md5": "6e37370f6edab001d0b02956f96a1f00", "pid": "028245431", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Andhra Pradesh (Inde)"}, {"authorized_access_point": "Karnātaka (Inde)"}, {"authorized_access_point": "Kerala (Inde)"}, {"authorized_access_point": "Tamil Nadu (Inde)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028245431", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040267547", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172928236", "source": "VIAF"}], "variant_access_point": ["Inde du sud", "Inde méridionale"], "authorized_access_point": "Inde (sud)"} 1 +2024-09-11 09:11:08.510331 2024-09-11 09:11:08.510335 8f3c3dc2-8bc4-4509-b2d9-23bc61aaa0ab {"md5": "8a10d2ece1aae2f51efbee867ecb35ed", "pid": "028289129", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028289129", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12015519n", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/133532530", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Châtillon-sur-Chalaronne", "source": "WIKIPEDIA"}], "authorized_access_point": "Châtillon-sur-Chalaronne (Ain ; région)"} 1 +2024-09-11 09:11:08.578843 2024-09-11 09:11:08.578847 742fb8eb-83be-48da-abc3-1efd65a605cb {"md5": "bd8959c09d450b369507a2172bbcab35", "pid": "028355431", "note": [{"label": ["Allemagne (Est) ; Laval RVM, 2001-01", "SWD, 1995-04 distingue : Ostdeutschland ; Deutschland <Östliche Länder>"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les documents qui traitent de la partie orientale de l'Allemagne (à l'est de l'Elbe et dans les limites orientales de la période considérée) jusqu'en 1949 ou depuis 1990. Les documents sur la RDA de 1949 à 1990 sont sous la vedette Allemagne (République démocratique). Les documents sur les territoires autrefois allemands situés à l'est de la ligne Oder-Neisse sont sous la vedette : Territoires anciennement allemands de l'est"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028355431", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12020781m", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)042252997", "source": "GND"}], "variant_access_point": ["Allemagne - Länder orientaux", "Allemagne - Nouveaux Länder", "Allemagne (Nouveaux Länder)", "Allemagne de l'Est", "Allemagne orientale", "Deutschland (Östliche Länder)", "Deutschland (Ost)", "Länder orientaux (Allemagne)", "Neue Bundesländer", "Nouveaux Länder (Allemagne)", "Östliche Bundesländer", "Ostdeutschland"], "authorized_access_point": "Allemagne (est)"} 1 +2024-09-11 09:11:08.628771 2024-09-11 09:11:08.628773 2a44f608-8623-4f35-915c-4d3a1bb2ba0a {"md5": "dbf49c6d6904f864cc69448d546e269f", "pid": "028366360", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Bavière (Allemagne)"}, {"authorized_access_point": "Souabe (Allemagne)"}, {"authorized_access_point": "Bade-Wurtemberg (Allemagne)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028366360", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040780228", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172711766", "source": "VIAF"}], "authorized_access_point": "Allemagne (sud)"} 1 +2024-09-11 09:11:08.690462 2024-09-11 09:11:08.690465 5002a867-7528-4894-beb4-9bf9afdcd1ff {"md5": "aca2f14d84fb02bf7a1857de20c148f0", "pid": "028388569", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028388569", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12023403q", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040780538", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/18144647635337368856", "source": "VIAF"}], "authorized_access_point": "Allemagne (sud-ouest)"} 1 +2024-09-11 09:11:08.751043 2024-09-11 09:11:08.751047 895024cc-1ff7-40ad-a322-347f9df5a820 {"md5": "3321fb3a01d1e69b95c15d1aa805436c", "pid": "028411773", "note": [{"label": ["GDEL. Atlas Le Monde", "http://www.geonames.org/, 2020-06-22"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028411773", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120251877", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/14144647634406825410", "source": "VIAF"}], "variant_access_point": ["Rio Colorado", "Colorado River", "Grand River (cours d'eau)"], "authorized_access_point": "Colorado (cours d'eau)"} 1 +2024-09-11 09:11:08.811017 2024-09-11 09:11:08.81102 2849c237-85ae-48e4-955d-832de2f6da95 {"md5": "dd5e2c8e7480eb0511e31be3f83b3a5c", "pid": "028554108", "note": [{"label": ["GDEL. SY 1990/91"], "noteType": "dataSource"}, {"label": ["Demi-canton issu de la scission du canton de Bâle en Bâle-Ville et Bâle-Campagne (1833)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028554108", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040046192", "source": "DNB"}, {"type": "uri", "value": "http://viaf.org/viaf/2975148574389124430005", "source": "VIAF"}], "variant_access_point": ["Basel-Landschaft (Suisse)"], "authorized_access_point": "Bâle-Campagne (Suisse)"} 1 +2024-09-11 09:11:08.872743 2024-09-11 09:11:08.872747 4b430070-76ac-4c69-9769-3f882590728b {"md5": "5c4214064e72cfca6083b2f448e81fb2", "pid": "028565924", "note": [{"label": ["GDEL. Pouilles ; Atlas Le Monde"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Italie (sud)"}, {"authorized_access_point": "Italie - Régions"}, {"authorized_access_point": "Daunie"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028565924", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12037604s", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04002508X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/151256943", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "255615825"}, "variant_access_point": ["Apulia", "Apulie", "Pouille (Italie)", "Pouilles", "Puglia (Italie)"], "authorized_access_point": "Pouilles (Italie)"} 1 +2024-09-11 09:11:08.933238 2024-09-11 09:11:08.933242 e3a41634-1bd2-4d3b-b560-73d6184b73f4 {"md5": "9dce3b98f74ebae8f59278dc17a1b8c2", "pid": "028567005", "note": [{"label": ["DHGE. Mourre, 1996"], "noteType": "dataSource"}, {"label": ["L'introduction de la Réforme à Bâle en 1529 amena la scission entre la ville réformée et l'évêque catholique, préfiguration de la scission du canton en deux demi-cantons en 1833"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028567005", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120377073", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040802752", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/599144783181696879819", "source": "VIAF"}], "variant_access_point": ["Ancien évêché de Bâle (Suisse)"], "authorized_access_point": "Bâle (Principauté ecclésiastique)"} 1 +2024-09-11 09:11:08.99881 2024-09-11 09:11:08.998814 19846dbb-59fb-4a9a-b983-a0f5ac3277aa {"md5": "cb5e73e61d57c70dd4c7fc8c99b3213e", "pid": "028601475", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028601475", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040932079", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172656768", "source": "VIAF"}], "variant_access_point": ["Alpes du Sud (France)"], "authorized_access_point": "Alpes (France ; sud)"} 1 +2024-09-11 09:11:09.065905 2024-09-11 09:11:09.065913 d419c6f3-9fb9-4e95-ae85-186bf9147e85 {"md5": "e24af2247106c78b4b742eb79ff2101a", "pid": "028654706", "note": [{"label": ["GDEL. BN Service Asie"], "noteType": "dataSource"}, {"label": ["Province de Chine"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chine (sud)"}, {"authorized_access_point": "Chine - Provinces"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028654706", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120445389", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/172172578", "source": "VIAF"}], "variant_access_point": ["Kouei-tcheou (Chine)", "Koueitcheou (Chine)", "Kui-chou (Chine)", "Kweichow (Chine)", "貴州省", "贵州省", "Guizhou Sheng"], "authorized_access_point": "Guizhou (Chine ; province)"} 1 +2024-09-11 09:11:09.112305 2024-09-11 09:11:09.112309 cd2d3f30-ef2d-4d19-9fd4-c17a9f468fab {"md5": "31490aa2fa792354b46e631246f81a25", "pid": "028695984", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028695984", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/136075732", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Béarn", "source": "WIKIPEDIA"}], "authorized_access_point": "Béarn (France ; sud)"} 1 +2024-09-11 09:11:09.161071 2024-09-11 09:11:09.161074 8ecdb213-994b-43d7-a600-dc1ac320c786 {"md5": "06f8a2f161528c29144bb4f0f105874e", "pid": "028700570", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028700570", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)042142016", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173148574253724430006", "source": "VIAF"}], "authorized_access_point": "Suisse (nord-ouest)"} 1 +2024-09-11 09:11:09.219847 2024-09-11 09:11:09.219849 0f1f0628-e033-44ae-b81e-7a4b0e69b8e9 {"md5": "c55601cd8cfe4cb20af0dad6c3175b76", "pid": "02870097X", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Piémont (Italie)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02870097X", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/123794615", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Ville_métropolitaine_de_Turin", "source": "WIKIPEDIA"}], "variant_access_point": ["Turin (Italie ; région)", "Torino (Italie ; province)"], "authorized_access_point": "Turin (Italie ; province)"} 1 +2024-09-11 09:11:09.272194 2024-09-11 09:11:09.272198 c213ab0b-ed9b-487c-8088-8963c4c93de2 {"md5": "7931baf7a1e819a6c01d7cb002334364", "pid": "028706137", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028706137", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/684148574379924430005", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Saint-Symphorien-de-Lay", "source": "WIKIPEDIA"}], "authorized_access_point": "Saint-Symphorien-de-Lay (Loire ; région)"} 1 +2024-09-11 09:11:09.547436 2024-09-11 09:11:09.54744 e548579f-a792-4171-9064-3833c4af4805 {"md5": "9db5215c90cf01d4253ccfca476d0843", "pid": "028913663", "note": [{"label": ["GLU"], "noteType": "dataSource"}, {"label": ["Partie jurassienne de la Suisse frontalière, autour de Porrentruy"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Porrentruy (Suisse ; région)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028913663", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120651067", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040008657", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/25144647637959901293", "source": "VIAF"}], "authorized_access_point": "Ajoie (Suisse)"} 1 +2024-09-11 09:11:09.602675 2024-09-11 09:11:09.602678 181f2ada-b5e8-4deb-8590-f7cd63700cea {"md5": "aa96d9feb1d7d5ac993991209bdc846a", "pid": "028928709", "note": [{"label": ["GDEL. Atlas Le Monde. BN Service Asie"], "noteType": "dataSource"}, {"label": ["Province chinoise"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chine (sud)"}, {"authorized_access_point": "Chine - Provinces"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028928709", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12066284j", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/172332872", "source": "VIAF"}], "variant_access_point": ["Chiang-hsi (Chine)", "Kiang-si (Chine)", "Kiangsi (Chine)", "江西省", "Jiangxi Sheng"], "authorized_access_point": "Jiangxi (Chine ; province)"} 1 +2024-09-11 09:11:09.658412 2024-09-11 09:11:09.658417 77c8d2b7-bbe6-42a6-a1bc-ebe9f33ef6a6 {"md5": "bc1c76ecaeac3f4d3ebb7b0269278ffe", "pid": "028931491", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028931491", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)949642762", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173637213", "source": "VIAF"}], "authorized_access_point": "Léman, Lac (région)"} 1 +2024-09-11 09:11:09.725569 2024-09-11 09:11:09.725573 516333e2-2e92-4519-b583-99b9ccc32617 {"md5": "f977eb2faaa7d1cf6cbc1edce9319e4d", "pid": "028979885", "note": [{"label": ["Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028979885", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12070283z", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/245870249", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Saint-Bonnet-le-Courreau", "source": "WIKIPEDIA"}], "authorized_access_point": "Saint-Bonnet-le-Courreau (Loire)"} 1 +2024-09-11 09:11:09.784451 2024-09-11 09:11:09.784459 32eaaa84-9354-45bb-9ee4-d2c4c56e0ee2 {"md5": "ca5bec865c9e0097d289f0a1f3e31b79", "pid": "028988310", "note": [{"label": ["Petit Robert des noms propres 2016", "Grand Larousse universel", "L'atlas National geographic, 2007 : Schwytz", "Wikipédia : canton de Schwytz [ou Schwyz] - https://fr.wikipedia.org (2017-10-21)", "Statoids - http://www.statoids.com (2017-10-21)", "Kanton Schwyz - https://www.sz.ch (2017-10-21)", "Dict. historique de la Suisse : Schwytz (canton) - http://www.hls-dhs-dss.ch (2017-10-21)"], "noteType": "dataSource"}, {"label": ["Canton germanophone du centre-est ; capitale : Schwyz. Il est un des 4 cantons historiques ayant donné naissance à la Confédération helvétique au 19e siècle, après avoir souvent lutté contre les Habsbourg. Son nom a donné naissance à celui du pays tout entier - dans sa version allemande 'Schweiz'. Pour la ville comme pour le canton, on peut dire aussi \\"Schwytz\\", qui est une graphie romande, mais dans sa version française, la Constitution suisse emploie le terme \\"Schwyz"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028988310", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120709591", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040540197", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/134271490", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Catégorie:Canton_de_Schwytz", "source": "WIKIPEDIA"}], "classification": [{"name": "Géographie de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Kanton Schwyz (Suisse)", "Pays de Schwyz (Suisse)", "Schweitz (Suisse ; canton)", "Schwytz (Suisse ; canton)", "Svitto (Suisse ; canton)", "Sviz (Suisse ; canton)"], "authorized_access_point": "Schwyz (Suisse ; canton)"} 1 +2024-09-11 09:11:09.857003 2024-09-11 09:11:09.857007 0fc5c42f-bc28-4480-9a09-44edbf2766be {"md5": "382cdd0a184d992cfa6ed6bb1ba885df", "pid": "028991575", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["Ancien canton suisse qui s'est scindé en 1597 en 2 demi-cantons : Appenzell Rhodes-Extérieures et Appenzell Rhodes-Intérieures ; chef-lieu : Appenzell"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Appenzell Rhodes-Extérieures (Suisse)"}, {"authorized_access_point": "Appenzell Rhodes-Intérieures (Suisse)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028991575", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120712100", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040024873", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/127860862", "source": "VIAF"}], "authorized_access_point": "Appenzell (Suisse ; canton)"} 1 +2024-09-11 09:11:09.920622 2024-09-11 09:11:09.920626 6514fb9d-6461-4173-8cff-6cb2b30e9b3a {"md5": "751d3586b5edd829bbf6feaa07dc6f60", "pid": "028992105", "note": [{"label": ["Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgenössische Stabsbüreau unter der direktion von Oberst Siegfried veröffentlicht", "GDEL. SY 1990/91"], "noteType": "dataSource"}, {"label": ["Canton suisse"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028992105", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12071251k", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/152492599", "source": "VIAF"}, {"type": "uri", "value": "http://viaf.org/viaf/170356636", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Catégorie:Canton_de_Glaris", "source": "WIKIPEDIA"}], "relation_pid": {"type": "redirect_from", "value": "157134822"}, "variant_access_point": ["Glarus (Suisse ; canton)"], "authorized_access_point": "Glaris (Suisse ; canton)"} 1 +2024-09-11 09:11:09.985209 2024-09-11 09:11:09.985217 e9c9efa4-571d-44ad-a82a-e40cbd0302e0 {"md5": "633d7b2a486c35a64a9868ac8dce10b8", "pid": "028992318", "note": [{"label": ["GDEL. SY 1990/91"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028992318", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040680649", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/20144647636134910488", "source": "VIAF"}], "authorized_access_point": "Zoug (Suisse ; canton)"} 1 +2024-09-11 09:11:10.052611 2024-09-11 09:11:10.052615 a5949111-49de-4202-88cd-552831c79791 {"md5": "0fc3e81ae483d86548655df0f4dad891", "pid": "028996593", "note": [{"label": ["GDEL. Atlas Le Monde. BN Service chinois"], "noteType": "dataSource"}, {"label": ["Province chinoise"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chine (nord)"}, {"authorized_access_point": "Chine - Provinces"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028996593", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12071578f", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/142766112", "source": "VIAF"}], "variant_access_point": ["Chan-tong", "Chan-toung", "Shan-tung", "Shangdong", "Shantung", "山東省", "山东省", "Shandong Sheng"], "authorized_access_point": "Shandong (Chine ; province)"} 1 +2024-09-11 09:11:10.108581 2024-09-11 09:11:10.108585 d3c248f7-c02a-49c3-a02b-0b38b0022657 {"md5": "97ed1dabc0d07afe219410cf1d13dd12", "pid": "028996690", "note": [{"label": ["GDEL. BN Service chinois"], "noteType": "dataSource"}, {"label": ["Province chinoise"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chine (nord)"}, {"authorized_access_point": "Chine - Provinces"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/028996690", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12071585q", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/172144783025014766925", "source": "VIAF"}], "variant_access_point": ["Hê-pei (Chine)", "Ho-pei (Chine)", "Hopeh (Chine)", "河北省", "Hebei Sheng"], "authorized_access_point": "Hebei (Chine ; province)"} 1 +2024-09-11 09:11:10.175347 2024-09-11 09:11:10.175353 0e6e6930-ca75-4cab-bbba-b8b06f61f3f9 {"md5": "93212197d3bdd9c9f688083079167778", "pid": "029152887", "note": [{"label": ["Laval RVM, 1992-08"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029152887", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12083794x", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)950025607", "source": "GND"}], "authorized_access_point": "Suisse - 1845-1847 (Sonderbund)"} 1 +2024-09-11 09:11:10.236681 2024-09-11 09:11:10.236683 3544a8aa-5aa6-40b5-bf86-d6b01f8b5ae0 {"md5": "47948b06c2ba350624ea59f80f49a4b3", "pid": "029183340", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029183340", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb120863320", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040040070", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/131328802", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Avenches", "source": "WIKIPEDIA"}], "variant_access_point": ["Aventicum (ville ancienne)"], "authorized_access_point": "Avenches (Suisse)"} 1 +2024-09-11 09:11:10.301411 2024-09-11 09:11:10.301415 082d7502-0cf3-4b18-a018-275b5bd371e5 {"md5": "bddb8b687c45a649ddaca9ffdf6dc70f", "pid": "029216540", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "If (France ; île)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029216540", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12088946t", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/249396875", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Château_d'If", "source": "WIKIPEDIA"}], "variant_access_point": ["Marseille (Bouches-du-Rhône) - Château d'If"], "authorized_access_point": "If, Château d' (Bouches-du-Rhône)"} 1 +2024-09-11 09:11:10.362229 2024-09-11 09:11:10.362232 0c1e8ca5-58ee-44b4-b6fc-87307e79fd9c {"md5": "72b2fa2f8eddfff5bdf9bfa5c89942a1", "pid": "029220661", "note": [{"label": ["Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029220661", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12089241d", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/132623678", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/La_Motte-Servolex", "source": "WIKIPEDIA"}], "variant_access_point": ["Motte-Servolex, La (Savoie)"], "authorized_access_point": "La Motte-Servolex (Savoie)"} 1 +2024-09-11 09:11:10.428285 2024-09-11 09:11:10.428289 8b111a3c-2336-4259-ae3a-67de220e720c {"md5": "f342bac36e5e8ad8397ee8b7a752b01f", "pid": "029345529", "note": [{"label": ["GDEL. Atlas Le Monde"], "noteType": "dataSource"}, {"label": ["Province chinoise"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chine (sud)"}, {"authorized_access_point": "Chine - Provinces"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029345529", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/172766187", "source": "VIAF"}], "variant_access_point": ["Yun-nan", "雲南省", "云南省", "Yunnan Sheng"], "authorized_access_point": "Yunnan (Chine ; province)"} 1 +2024-09-11 09:11:10.48979 2024-09-11 09:11:10.489792 6f1cce32-64d9-443f-a328-27ac2f290575 {"md5": "54c024fb87d11bb6e8bad5b7a060d269", "pid": "029368707", "note": [{"label": ["Atlas universalis"], "noteType": "dataSource"}, {"label": ["Capitale de la province du Chimborazo"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029368707", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12101014j", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/127968369", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Riobamba", "source": "WIKIPEDIA"}], "authorized_access_point": "Ríobamba (Équateur)"} 1 +2024-09-11 09:11:10.549822 2024-09-11 09:11:10.549827 de0ea4d8-82d6-4fd1-bec5-160fa24d61e3 {"md5": "91e5794d705af7e277d238928da267be", "pid": "029453208", "note": [{"label": ["GDEL. SY 1990/91"], "noteType": "dataSource"}, {"label": ["Canton suisse"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Suisse - Cantons"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029453208", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12107734j", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040621294", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/486145858125123022135", "source": "VIAF"}, {"type": "uri", "value": "http://viaf.org/viaf/124361741", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "225674920"}, "authorized_access_point": "Uri (Suisse)"} 1 +2024-09-11 09:11:10.613228 2024-09-11 09:11:10.613233 3381732f-008a-4352-b55b-7b014635ab54 {"md5": "e6956c62bbd7d2a242c3f6d91f5ecfd0", "pid": "029459060", "note": [{"label": ["GLU"], "noteType": "dataSource"}, {"label": ["Commune du Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029459060", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04118257X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/249012358", "source": "VIAF"}], "variant_access_point": ["Acaunum (ville ancienne)", "Agaunum (ville ancienne)", "Saint-Maurice d'Agaune (Valais, Suisse)"], "authorized_access_point": "Saint-Maurice (Valais, Suisse)"} 1 +2024-09-11 09:11:10.678742 2024-09-11 09:11:10.678745 76456dc5-f9f8-495b-a464-531c50f3361e {"md5": "a89fc05ba64a54908c7ecfb491d1321f", "pid": "029502764", "note": [{"label": ["Alps, Eastern ; LCSH, 1988-12. Alpes orientales ; Laval RVM, 1988-12"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Alpes dinariques"}, {"authorized_access_point": "Alpes juliennes"}, {"authorized_access_point": "Dolomites (Italie ; massif)"}, {"authorized_access_point": "Alpes carniques"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029502764", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12111693j", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040757242", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/173146304", "source": "VIAF"}], "variant_access_point": ["Alpes orientales"], "authorized_access_point": "Alpes (est)"} 1 +2024-09-11 09:11:10.746741 2024-09-11 09:11:10.746746 487f0fe2-4247-4b0a-b177-e2a955051dff {"md5": "18eebb150b828c2f2f87f5fc41bea595", "pid": "029508347", "note": [{"label": ["GDEL. Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029508347", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12112125x", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/170363823", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/La_Turbie", "source": "WIKIPEDIA"}], "variant_access_point": ["Turbie, La (Alpes-Maritimes)"], "authorized_access_point": "La Turbie (Alpes-Maritimes)"} 1 +2024-09-11 09:11:10.809982 2024-09-11 09:11:10.80999 067c285f-22fb-4b2d-8c97-0e7c1290cb6b {"md5": "24d0934dca9e788c13553f4c4f1e5281", "pid": "029571219", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Charolais (France)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029571219", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11956257v", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/357144783127363163101", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Charolais_(pays)", "source": "WIKIPEDIA"}], "authorized_access_point": "Charolles (Saône-et-Loire ; région)"} 1 +2024-09-11 09:11:10.877877 2024-09-11 09:11:10.877882 752d2dd9-92ac-469b-b705-87b5fdb2c35d {"md5": "4cf8c027e32cbc25a05ab81f0d53f485", "pid": "029592259", "note": [{"label": ["Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029592259", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb121185395", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/143067429", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Pont-d'Ain", "source": "WIKIPEDIA"}], "authorized_access_point": "Pont-d'Ain (Ain)"} 1 +2024-09-11 09:11:10.939558 2024-09-11 09:11:10.939562 d7102df5-c082-42e4-b409-4b8231bda92d {"md5": "ca0714f93adc8a1b7fba0a93569173e1", "pid": "029680344", "note": [{"label": ["Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029680344", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/245116875", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Aoste_(Isère)", "source": "WIKIPEDIA"}], "authorized_access_point": "Aoste (Isère)"} 1 +2024-09-11 09:11:10.999826 2024-09-11 09:11:10.999829 eff5fb64-b57a-4105-b983-eb07dd0ed136 {"md5": "6c41f76a6cfe2d6912b08f882b887ac3", "pid": "029693756", "note": [{"label": ["Atlas Le Monde"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029693756", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)041193458", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/42148570488424310649", "source": "VIAF"}], "authorized_access_point": "Valangin (Neuchâtel, Suisse)"} 1 +2024-09-11 09:11:11.057724 2024-09-11 09:11:11.057727 c5e6328d-ef1a-46ee-8fa5-e46450322c36 {"md5": "04cf3db4984c82a6efed30c5fb7615f8", "pid": "029693772", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029693772", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb121262977", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)946532389", "source": "GND"}], "variant_access_point": ["Valangin (Neuchâtel, Suisse) - Château de Valangin"], "authorized_access_point": "Valangin (Neuchâtel, Suisse) - Château"} 1 +2024-09-11 09:11:11.109012 2024-09-11 09:11:11.109016 f7a92f64-3c71-49e0-89f7-fc33b04f22fc {"md5": "13c559efbf103a300e542c5f8926cb4b", "pid": "02976436X", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["Sous cette vedette on trouve les ouvrages qui traitent de l'Aquitaine historique et/ou de l'actuelle région d'Aquitaine"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "France (sud-ouest)"}, {"authorized_access_point": "France - Régions"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02976436X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12131785m", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04002525X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/127778483", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Aquitaine_(ancienne_région_administrative)", "source": "WIKIPEDIA"}], "variant_access_point": ["Aquitaine"], "authorized_access_point": "Aquitaine (France)"} 1 +2024-09-11 09:11:11.17229 2024-09-11 09:11:11.172298 b28b2642-84d1-49ca-9712-f9e1ea015613 {"md5": "8c27b28b4680b41c99dc1c4c2d2dfbd0", "pid": "029805279", "note": [{"label": ["La préhistoire / D. Vialou, 2004 : Petit-Chasseur", "Dict. historique de la Suisse (art. : Sion) - http://www.hls-dhs-dss.ch (2015-06-25)", "Le néolithique en Europe, 2007 : Sion (Petit-Chasseur)", "Dict. de la préhistoire / A. Leroi-Gourhan, 2005 : Sion-Petit-Chasseur"], "noteType": "dataSource"}, {"label": ["Site préhistorique (néolithique et âge du bronze) du quartier de Saint-Guérin à Sion (Valais), autour de l'avenue du Petit-Chasseur et des rues adjacentes (habitats cortaillod et nécropole mégalithique (dolmens) avec stèles anthropomorphes)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029805279", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb121353008", "source": "BNF"}], "classification": [{"name": "Géographie de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "914"}, {"name": "Archéologie. Histoire ancienne", "type": "bf:ClassificationDdc", "classificationPortion": "930"}], "variant_access_point": ["Petit-Chasseur (Suisse ; site archéologique)", "Sion-Petit-Chasseur (Suisse ; site archéologique)"], "authorized_access_point": "Sion (Valais, Suisse) - Site archéologique du Petit-Chasseur"} 1 +2024-09-11 09:11:11.23013 2024-09-11 09:11:11.230132 06700999-0c17-4329-b3e7-713b3cac9a4d {"md5": "f603b86c355e724be8f22142a1d06556", "pid": "029857678", "note": [{"label": ["GDEL. Atlas Le Monde"], "noteType": "dataSource"}, {"label": ["Province chinoise"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chine (sud)"}, {"authorized_access_point": "Chine - Provinces"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/029857678", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12139611q", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/173310302", "source": "VIAF"}], "variant_access_point": ["Fou-kien (Chine)", "Fukien (Chine)", "福建省", "Fujian Sheng"], "authorized_access_point": "Fujian (Chine ; province)"} 1 +2024-09-11 09:11:11.282583 2024-09-11 09:11:11.282586 78fd82aa-7ac8-4a81-a85e-8bf1bdaba661 {"md5": "c76d69b7760cd509f80c0bc643be3960", "pid": "02985850X", "note": [{"label": ["GDEL. Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/02985850X", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/148067721", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Virieu-le-Grand", "source": "WIKIPEDIA"}], "authorized_access_point": "Virieu-le-Grand (Ain)"} 1 +2024-09-11 09:11:11.349865 2024-09-11 09:11:11.34987 ce544188-bbd9-4694-8fba-c5125369614e {"md5": "518f7e6ff54703c1b1a12e6bcd0ec2cc", "pid": "030398614", "note": [{"label": ["GDEL. Laval RVM, 1990-08"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Jungfrau (Suisse ; mont)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030398614", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12182069q", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040000206", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/30144647639575548307", "source": "VIAF"}], "variant_access_point": ["Aar-Gothard, Massif de l' (Suisse)", "Gothard, Massif du (Suisse)", "Jungfrau, Massif de la (Suisse)", "Saint-Gothard, Massif du (Suisse)"], "authorized_access_point": "Aar, Massif de l' (Suisse)"} 1 +2024-09-11 09:11:11.408924 2024-09-11 09:11:11.408929 6bf7c1b5-0d8d-4243-ba57-f09306219f05 {"md5": "1726c32b45ccf2bfb5165adf2bde91b4", "pid": "030512425", "note": [{"label": ["Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030512425", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb133247112", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/168033061", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Beaujeu_(Rhône)", "source": "WIKIPEDIA"}], "authorized_access_point": "Beaujeu (Rhône)"} 1 +2024-09-11 09:11:11.468725 2024-09-11 09:11:11.468733 f4de28bf-6acd-4687-b805-9fdd3cea23bd {"md5": "64591902e72faf2867bf7a51d7aed3f2", "pid": "030519799", "note": [{"label": ["Wikipédia : château de Valère - https://fr.wikipedia.org (2021-08-10)", "Wikipedia : Basilica di Valère, castello di Valère - https:/:it.wikipedia.org (2021-08-10)", "Wikipedia : Basilique de Valère (oder Basilika von Valeria, Schloss Valeria) - https://de.wikipedia.org (2021-08-10)", "Petit Robert des noms propres, 2015 (art. : Sion) : église Notre-Dame de Valère", "Grand Larousse universel (art. : Sion) : église Notre-Dame de Valère", "Guides Voir : Suisse, 2012", "Sion Tourisme : château de Valère (interface en français), Schloss Valeria (interface en allemand) - https://siontourisme.ch (2021-08-10)"], "noteType": "dataSource"}, {"label": ["Le \\"château de Valère\\", qui couronne la colline du même nom dominant Sion, est en réalité une église fortifiée des 12e-13e siècles, église entourée de maisons qui furent résidence des chanoines de la cathédrale de la ville, le tout protégé par une enceinte (remparts et tours), le clocher de l'église étant en quelque sorte le donjon de ce véritable petit bourg médiéval. L'église Notre-Dame de Valère fut élevée au rang de basilique (mineure) sous le pontificat de Jean-Paul II, en 1987. Ses chapiteaux sont romans, ses fresques, gothiques ; son orgue de la fin du 14e siècle est le plus ancien du monde sur lequel on peut encore jouer. Le complexe abrite le Musée d'histoire du Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCA", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/names/n91123541", "source": "LCA"}], "authorized_access_point": "Notre-Dame de Valère (Church : Sion, Switzerland)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030519799", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12191796h", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)042499909", "source": "GND"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Art et science militaires", "type": "bf:ClassificationDdc", "classificationPortion": "355"}, {"name": "Architecture", "type": "bf:ClassificationDdc", "classificationPortion": "720"}, {"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Basilica di Valère (Sion, Valais, Suisse)", "Basilika von Valeria (Sion, Valais, Suisse)", "Basilique de Valère (Sion, Valais, Suisse)", "Basilique Notre-Dame de Valère (Sion, Valais, Suisse)", "Castello di Valère (Sion, Valais, Suisse)", "Château de Valère (Sion, Valais, Suisse)", "Église Notre-Dame de Valère (Sion, Valais, Suisse)", "Kirche von Valeria (Sion, Valais, Suisse)", "Notre-Dame de Valère, Basilique (Sion, Valais, Suisse)", "Schloss Valeria (Sion, Valais, Suisse)", "Valère, Château de (Sion, Valais, Suisse)", "Valeria, Schloss (Sion, Valais, Suisse)"], "authorized_access_point": "Sion (Valais, Suisse) - Château de Valère"} 1 +2024-09-11 09:11:11.54352 2024-09-11 09:11:11.543522 bd767d63-1aba-4427-a6fa-fc72e76fefe4 {"md5": "20896ffea5a6e9a2a5f40efa03530c5b", "pid": "03055537X", "note": [{"label": ["GLU"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Sondrio (Italie ; province)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03055537X", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)041081757", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/8711148574329824430003", "source": "VIAF"}], "variant_access_point": ["Valtellina (Italie)"], "authorized_access_point": "Valteline (Italie)"} 1 +2024-09-11 09:11:11.61746 2024-09-11 09:11:11.617462 696492dd-de67-4e06-8ad3-e42f4517a80c {"md5": "05bc00c5e5d398536b4c4d75d5291bc5", "pid": "030628156", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030628156", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12200597c", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040050114", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/639144783049465966845", "source": "VIAF"}], "variant_access_point": ["Alpes bavaroises"], "authorized_access_point": "Alpes (Allemagne)"} 1 +2024-09-11 09:11:11.686198 2024-09-11 09:11:11.686202 076e37fb-9c96-4aa8-b4fa-041825ccc253 {"md5": "39ab4d886f6d1ba4a34a2fddc4248853", "pid": "030640091", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Aravis, Chaîne des (France)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/030640091", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12201582k", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040932060", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172820298", "source": "VIAF"}], "variant_access_point": ["Alpes du Nord (France)"], "authorized_access_point": "Alpes (France ; nord)"} 1 +2024-09-11 09:11:11.752435 2024-09-11 09:11:11.752439 34b72442-340f-435f-b7cf-92f860beb542 {"md5": "45643ef83230c9038c6a4e6ae8407946", "pid": "031139876", "note": [{"label": ["GDEL"], "noteType": "dataSource"}, {"label": ["Commune du canton de Fribourg (Suisse), chef-lieu du district du Lac. Elle est officiellement bilingue français-allemand. Nom allemand : Murten"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Fribourg (Suisse ; canton)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031139876", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040751058", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/124377145", "source": "VIAF"}, {"type": "uri", "value": "http://hls-dhs-dss.ch/articles/001014/", "source": "DHS"}], "authorized_access_point": "Morat (Fribourg, Suisse)"} 1 +2024-09-11 09:11:11.821572 2024-09-11 09:11:11.821576 af2c4735-cf28-4295-b942-2ffe741d95fa {"md5": "5199e9499e2664255a30c0ae1c672d9a", "pid": "031211097", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031211097", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12246994q", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040658236", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/621144783051845602289", "source": "VIAF"}], "variant_access_point": ["Suisse occidentale"], "authorized_access_point": "Suisse (ouest)"} 1 +2024-09-11 09:11:11.885157 2024-09-11 09:11:11.885161 49a6048f-bb96-4e9f-923c-d648bd911f69 {"md5": "4dbf7608bb4207e46fc899dce7473146", "pid": "031649424", "note": [{"label": ["GeoNames (2018-06-27)"], "noteType": "dataSource"}, {"label": ["Aix-la-Chapelle est une ville d'Allemagne située dans le Land de Rhénanie-du-Nord-Westphalie. Elle se situe à 5 km de la jonction des frontières de l'Allemagne, des Pays-Bas et de la Belgique. C'est la ville la plus à l'ouest de l'Allemagne", "Coordonnées en degrés séxagésimaux : N 50°46′36″ / E 6°05′00″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rhénanie du Nord-Westphalie (Allemagne)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031649424", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12282480h", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040000079", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/124330404", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "228265843"}, "variant_access_point": ["Aachen", "Aken", "Akwizgran", "Aquisgrán", "Aquisgrano"], "authorized_access_point": "Aix-la-Chapelle (Allemagne ; région)"} 1 +2024-09-11 09:11:11.962294 2024-09-11 09:11:11.9623 4b47ad98-a75d-4d49-a574-20ef1c2924a4 {"md5": "093cdf1baf8674bf09e952d9bfba18b5", "pid": "03168520X", "note": [{"label": ["Dict. communes, 1992"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03168520X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12285327h", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/135027706", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Meillonnas", "source": "WIKIPEDIA"}], "authorized_access_point": "Meillonnas (Ain)"} 1 +2024-09-11 09:11:12.015509 2024-09-11 09:11:12.015512 00f844ad-e556-4759-bbbb-098a8f090bdd {"md5": "efe7a944a84c537bd0b15e54f91f8f1e", "pid": "031702473", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Madagascar"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Betsiboka (Madagascar ; région)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031702473", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb122867940", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/131443013", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Mahajanga", "source": "WIKIPEDIA"}], "variant_access_point": ["Majunga (Madagascar)", "Massali"], "authorized_access_point": "Mahajanga (Madagascar)"} 1 +2024-09-11 09:11:12.073775 2024-09-11 09:11:12.073784 c5d256d6-474a-413c-ab8c-0a926355500e {"md5": "eddaf773a0f4e4c978e9961d7222be5b", "pid": "031977561", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/031977561", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb123094336", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/233850704", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Bourg-Saint-Maurice", "source": "WIKIPEDIA"}], "authorized_access_point": "Bourg-Saint-Maurice (Savoie ; région)"} 1 +2024-09-11 09:11:12.123337 2024-09-11 09:11:12.12334 a76ece7c-53c2-48e1-8ab0-26312496f7a0 {"md5": "68aa959b5611e085658a9ef11081f07f", "pid": "032028555", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032028555", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12313654g", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040583988", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/430144783136365031650", "source": "VIAF"}], "variant_access_point": ["Alpes du Sud", "Alpes méridionales"], "authorized_access_point": "Alpes (Sud)"} 1 +2024-09-11 09:11:30.601413 2024-09-11 09:11:30.601417 dd7aec85-555f-41e3-8093-661144ae4156 {"md5": "2eadeed5b4b960e723939f1593443744", "pid": "279128959", "note": [{"label": ["http://www.geonames.org/, 2024-07-01"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Ford"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279128959", "source": "IDREF"}], "authorized_access_point": "Guthrie (Ill.)"} 1 +2024-09-11 09:11:12.177445 2024-09-11 09:11:12.177453 250c3835-226f-4e73-9303-b0143e8ccb30 {"md5": "adfec2960012ddc7c4cce64faa1114f3", "pid": "032029667", "note": [{"label": ["Dict. communes, 1992"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032029667", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12313753d", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/142064160", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Virieu-le-Petit", "source": "WIKIPEDIA"}], "authorized_access_point": "Virieu-le-Petit (Ain)"} 1 +2024-09-11 09:11:12.245635 2024-09-11 09:11:12.24564 831af8e8-0ec0-424d-9f4c-d5d6b07207cc {"md5": "3305879f27f88d44a5b4d80d3461940a", "pid": "03210572X", "note": [{"label": ["Hauterive-Champréveyres, les plantes de l'âge du Bronze / C. Jacquat, 1988"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03210572X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12320021b", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)043212646", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/1147309939037850707", "source": "VIAF"}], "variant_access_point": ["Hauterive-Champréveyres (Suisse ; site archéologique)"], "authorized_access_point": "Champréveyres (Suisse ; site archéologique)"} 1 +2024-09-11 09:11:12.310455 2024-09-11 09:11:12.310459 9fd18f9d-b52b-4ffe-917e-4fd236fa974e {"md5": "6ff10e600bcb6621210884faa704bb1b", "pid": "03261991X", "note": [{"label": ["Dict. géol., 1988"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rhin, Vallée moyenne du"}, {"authorized_access_point": "Rhénans, Pays (sud)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03261991X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb123615286", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040755614", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/39144647639299173338", "source": "VIAF"}], "variant_access_point": ["Fossé Rhénan"], "authorized_access_point": "Rhénan, Fossé"} 1 +2024-09-11 09:11:12.371064 2024-09-11 09:11:12.371068 b42d53b9-f221-4f53-9d43-dac7a45b6cbf {"md5": "3b235193ed1de3a125dae22d380760e5", "pid": "032861621", "note": [{"label": ["GLU. Österreich-Ungarn ; SWD, 1991"], "noteType": "dataSource"}, {"label": ["Sous cette vedette, on trouve les ouvrages qui traitent de l'ensemble de l'Autriche-Hongrie (1867-1918). Les ouvrages qui traitent plus particulièrement des parties autrichienne et hongroise de l'empire se trouvent sous les vedettes Autriche et Hongrie (suivies des subdivisions appropriées)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europe du Centre-Est"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032861621", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb123809301", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040756130", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/38146285364515371330", "source": "VIAF"}], "variant_access_point": ["Austro-hongroise, Monarchie", "Double Monarchie", "Empire austro-hongrois", "Monarchie austro-hongroise", "österreich-Ungarn", "Osztrák-Magyar Monárchia"], "authorized_access_point": "Autriche-Hongrie"} 1 +2024-09-11 09:11:12.439265 2024-09-11 09:11:12.439304 ff9a48f2-9131-4919-8122-ce9908dcb95c {"md5": "79f24f3e678f5badc2e96b25c4de9ec0", "pid": "032972997", "note": [{"label": ["https://fr.wikipedia.org/wiki/Cath%C3%A9drale_Saint-Nicolas_de_Fribourg"], "noteType": "dataSource"}, {"label": ["Cathédrale depuis 1924"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/032972997", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12389271v", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)945514727", "source": "GND"}], "relation_pid": {"type": "redirect_from", "value": "060550279"}, "variant_access_point": ["Eglise Saint-Nicolas (Fribourg, Fribourg, Suisse)"], "authorized_access_point": "Fribourg (Fribourg, Suisse) - Cathédrale Saint-Nicolas"} 1 +2024-09-11 09:11:12.503486 2024-09-11 09:11:12.503491 f6bfa300-bc62-46f2-af5d-81bf393bd4b3 {"md5": "995310cf3b13ae24dec7544e36869892", "pid": "033023808", "note": [{"label": ["Dict. des communes, 1992"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033023808", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb123932781", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/1144648107425911473", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Saint-Bonnet-les-Oules", "source": "WIKIPEDIA"}], "authorized_access_point": "Saint-Bonnet-les-Oules (Loire)"} 1 +2024-09-11 09:11:12.570196 2024-09-11 09:11:12.5702 6a07ddc6-f6da-43ef-bc50-6387e3e29bc3 {"md5": "0854a168c2f9569c1442ba912616ad68", "pid": "033459118", "note": [{"label": ["LAVAL RVM, 1994-08", "GDEL. Atlas \\"Le Monde\\""], "noteType": "dataSource"}, {"label": ["Petit archipel polynésien composé de trois atolls (Atafu, Nukunonu, Fakaofo)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Polynésie"}, {"authorized_access_point": "Pacifique, Îles du"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/033459118", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12432262b", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/156083443", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Tokelau", "source": "WIKIPEDIA"}], "variant_access_point": ["Union, Îles de l'", "Tokelau Islands", "Tokelau, Îles de"], "authorized_access_point": "Tokelau"} 1 +2024-09-11 09:11:12.617699 2024-09-11 09:11:12.617702 be7dd1cb-44b2-495c-a673-e5a0ee53a9f8 {"md5": "4ead896a60c28b83574fc2b21669c394", "pid": "034580506", "note": [{"label": ["Dict. communes, 1992"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034580506", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12532193h", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/244300953", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Félines_(Ardèche)", "source": "WIKIPEDIA"}], "authorized_access_point": "Félines (Ardèche)"} 1 +2024-09-11 09:11:12.665527 2024-09-11 09:11:12.665534 715b7119-506e-4e93-b7f4-06e0a2592074 {"md5": "b03391708bc13834dad1a319931df2fb", "pid": "034800964", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Doubs, Vallée basse du"}, {"authorized_access_point": "Doubs, Vallée haute du"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034800964", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12551685f", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)963626132", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/236125833", "source": "VIAF"}], "authorized_access_point": "Doubs, Vallée du"} 1 +2024-09-11 09:11:12.72438 2024-09-11 09:11:12.724383 20de3427-d334-4b6a-a3be-4e19541800bf {"md5": "8c60318a02a5fde512722f83db178f98", "pid": "034910190", "note": [{"label": ["Thamusida : fouilles du Service des Antiquités du Maroc.1, Texte / Jean-Pierre Callu, Jean-Paul Morel, René Rebuffat... [et al.], 1965", "Rachet. Brockhaus, 19. Aufl."], "noteType": "dataSource"}, {"label": ["Située sur la rive de l'oued Sebou, près de Kenitra, Thamusida était une ancienne colonie berbère, conquise par les Romains au 1er siècle avant J.C. Sous l'Empire, elle devint essentiellement une ville de garnison, reconstruite et agrandie au IIème siècle après J.C. après une inondation. Semble avoir été abandonnée entre 274 et 280. Ruines d'un grand camp militaire du temps de Marc Aurèle, d'un temple, d'un praetorium et de grandes thermes, situées à l'emplacement de l'actuel marabout de Sidi Ali ben Ahmed"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/034910190", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb125612110", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/46144647641939898059", "source": "VIAF"}], "variant_access_point": ["Tamusida (ville ancienne)"], "authorized_access_point": "Thamusida (ville ancienne)"} 1 +2024-09-11 09:11:12.775006 2024-09-11 09:11:12.77501 33f78208-4db7-4b7a-8796-5aeb815e0a6c {"md5": "2c6ce9cb16ee364eb4e73c4047c24962", "pid": "03512802X", "note": [{"label": ["Les Républiques soeurs / J.-L. Harouel"], "noteType": "dataSource"}, {"label": ["LCSH, 1996-09"], "noteType": "dataNotFound"}, {"label": ["États satellites mis en place par la République française dès 1792 (République rauracienne), puis surtout à partir de 1795 (R. batave). Ces républiques furent renversées en 1799 (R. parthénopéenne, R. romaine), annexées à la France (R. ligurienne, 1805), ou transformées en royaumes (Italie, 1805 ; Hollande, 1806), tandis que la République helvétique redevenait Confédération helvétique en 1803"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "République cispadane (1796-1797)"}, {"authorized_access_point": "Gênes (Italie) - 1789-1815"}, {"authorized_access_point": "Naples (Royaume) - 1799 (Révolution)"}, {"authorized_access_point": "Pays-Bas - 1795-1806 (République batave)"}, {"authorized_access_point": "République cisalpine"}, {"authorized_access_point": "Rome (Italie) - 1798-1799 (République romaine)"}, {"authorized_access_point": "Suisse - 1798-1803 (République helvétique)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03512802X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13169029w", "source": "BNF"}], "classification": [{"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Républiques soeurs (1792-1806)"], "authorized_access_point": "France - 1789-1799 (Révolution) - Républiques soeurs"} 1 +2024-09-11 09:11:12.833915 2024-09-11 09:11:12.833919 c3011fbc-944b-40dc-8697-f9711089b811 {"md5": "1374cfe29ed384791b7beff707fe7e58", "pid": "035220287", "note": [{"label": ["Atlas universalis, 1984", "Alpes Maritimes (France et Italie) ; Laval RVM, 1997-02"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Alpes (France)"}, {"authorized_access_point": "Alpes (Italie)"}, {"authorized_access_point": "Alpes (ouest)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035220287", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13174970t", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040746798", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/70146462766027772779", "source": "VIAF"}], "variant_access_point": ["Alpi Marittime", "Maritimes, Alpes (massif)"], "authorized_access_point": "Alpes maritimes (massif)"} 1 +2024-09-11 09:11:12.899505 2024-09-11 09:11:12.899509 8cb6db38-378e-4aae-a298-dfdd2341f660 {"md5": "45877fa245c5912d62bbed19a3aeda1f", "pid": "03530183X", "note": [{"label": ["Dict. communes, 1992"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Hurtières, Pays des (France)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/03530183X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13180196j", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/244298214", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Saint-Georges-d'Hurtières", "source": "WIKIPEDIA"}], "authorized_access_point": "Saint-Georges-des-Hurtières (Savoie)"} 1 +2024-09-11 09:11:12.96663 2024-09-11 09:11:12.966634 2c9227b4-4596-4bf7-8cb6-082a0b1223ef {"md5": "85bcd93de91e5bd76845f18ad831c821", "pid": "035301872", "note": [{"label": ["Dict. communes, 1992"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Hurtières, Pays des (France)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035301872", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13180199k", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/5144648144682560894", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Saint-Pierre-de-Belleville", "source": "WIKIPEDIA"}], "authorized_access_point": "Saint-Pierre-de-Belleville (Savoie)"} 1 +2024-09-11 09:11:13.031251 2024-09-11 09:11:13.031255 9ffee463-5e8c-4488-bb06-09f1b1be5d0c {"md5": "0a072e10a2217d8cf00bc1f0d808e824", "pid": "035321318", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035321318", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13181517r", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/268148574378024430004", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Le_Caire", "source": "WIKIPEDIA"}], "authorized_access_point": "Le Caire (Égypte ; région)"} 1 +2024-09-11 09:11:13.088076 2024-09-11 09:11:13.08808 3b48d76d-2e18-4992-b242-455669f3af8e {"md5": "2f32766a1c2e3d3247f654fe8d27b5ea", "pid": "035444193", "note": [{"label": ["GLU, 1991"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/035444193", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13189770p", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040635112", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/243437017", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Lac_des_Quatre-Cantons", "source": "WIKIPEDIA"}], "variant_access_point": ["Lucerne, Lac de (Suisse)", "Lac des Quatre-Cantons (Suisse)", "Vierwaldstätter See (Suisse)"], "authorized_access_point": "Quatre-Cantons, Lac des (Suisse)"} 1 +2024-09-11 09:11:13.150724 2024-09-11 09:11:13.150729 0dc38ca5-2321-4c8a-9d04-286c072c8aa5 {"md5": "3a013cec1aaa91d7c2f2a577459955b4", "pid": "050211250", "note": [{"label": ["GLU. Guide bleu Franche-Comté, Monts du Jura, 1955", "Laval RVM, 1998-07"], "noteType": "dataSource"}, {"label": ["Rebord occidental du Jura à l'ouest de l'Ain, le Revermont comporte deux chaînons, de part et d'autre du Suran"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Jura (France ; massif)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050211250", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/315125754", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Val-Revermont", "source": "WIKIPEDIA"}], "authorized_access_point": "Revermont (France)"} 1 +2024-09-11 09:11:13.217729 2024-09-11 09:11:13.217739 6df78a52-d786-46fd-91b0-f498a4a3980e {"md5": "d14e90317a3283d53a2bcb408db9bd77", "pid": "05021778X", "note": [{"label": ["Robert 2", "Operai alla Cogne / Stefano Peirano, 1997"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/05021778X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb135067940", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/127919056", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Cogne", "source": "WIKIPEDIA"}], "authorized_access_point": "Cogne (Italie)"} 1 +2024-09-11 09:11:13.285655 2024-09-11 09:11:13.285663 96e85956-d072-4608-8ac2-39aca8846717 {"md5": "5b8d56c3c0e7a6dd8db960a57ce63583", "pid": "050300334", "note": [{"label": ["GLU. SY 1996-97", "Laval RVM, 1999-01"], "noteType": "dataSource"}, {"label": ["République soviétique en 1921, République autonome de la Géorgie en 1930"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050300334", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/137166785", "source": "VIAF"}], "authorized_access_point": "Abkhazie (Géorgie)"} 1 +2024-09-11 09:11:13.348074 2024-09-11 09:11:13.348077 b66a9a32-5456-41e1-9852-ada5ab4eb08d {"md5": "41a3d094f6df604f3dd9b7d721cf44f1", "pid": "050311530", "note": [{"label": ["Dict. communes, 1997"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050311530", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13114324r", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/159424557", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Chasse-sur-Rhône", "source": "WIKIPEDIA"}], "authorized_access_point": "Chasse-sur-Rhône (Isère)"} 1 +2024-09-11 09:11:13.402653 2024-09-11 09:11:13.402656 0324c0bd-eb42-455e-9d43-3ff77fc36819 {"md5": "ce3391c937c42abf5be62a8a8cd6c614", "pid": "050438417", "note": [{"label": ["Dict. communes, 1992"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050438417", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13513437t", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/173306971", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Moras-en-Valloire", "source": "WIKIPEDIA"}], "authorized_access_point": "Moras-en-Valloire (Drôme)"} 1 +2024-09-11 09:11:13.464976 2024-09-11 09:11:13.464983 0b6b04b9-5997-4f87-ad70-5749dce80b9c {"md5": "6ebe5f226bb3f4a49123d9df602d69fc", "pid": "050556789", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Mélanésie"}, {"authorized_access_point": "Australasie"}, {"authorized_access_point": "Pacifique, Îles du"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050556789", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb126484470", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040753190", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/316924037", "source": "VIAF"}], "variant_access_point": ["Irian", "Nouvelle Guinée (île)"], "authorized_access_point": "Nouvelle-Guinée (île)"} 1 +2024-09-11 09:11:13.530289 2024-09-11 09:11:13.530293 b4699306-2a8e-40ba-860d-0ce087d8485c {"md5": "63c3d85a1d22a5cb84bfdcdedc37660a", "pid": "050557556", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050557556", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04003285X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/172875652", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "027491870"}, "authorized_access_point": "Assyrie"} 1 +2024-09-11 09:11:13.578947 2024-09-11 09:11:13.578951 29e2f17f-89cd-4b90-aa42-6a002cf6eacf {"md5": "649e880260fbdf1cb8a843341aaaffd0", "pid": "050578480", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/050578480", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12650280j", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/124351558", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Samnaun", "source": "WIKIPEDIA"}], "variant_access_point": ["Val samnaun (suisse)"], "authorized_access_point": "Samnaun (suisse) (val)"} 1 +2024-09-11 09:11:13.632165 2024-09-11 09:11:13.632168 902e484c-5c0c-4ff2-81e7-edce3b53106e {"md5": "e559c73ab34216a0b32a92978110b069", "pid": "052490157", "note": [{"label": ["Internet (en ligne), 2000-05-23 : www.baden.ch/"], "noteType": "dataSource"}, {"label": ["Ville et station thermale du canton d'Argovie"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/052490157", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13557976w", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040041646", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/49144647636482974054", "source": "VIAF"}], "variant_access_point": ["Aquae Helveticae (ville ancienne)"], "authorized_access_point": "Baden (Suisse)"} 1 +2024-09-11 09:11:13.696373 2024-09-11 09:11:13.696377 4f43a317-268f-4a6b-a858-b05fb0d68b46 {"md5": "10a52ff77eff506a1c92cca711edf972", "pid": "053443586", "note": [{"label": ["GLU. Mirot"], "noteType": "dataSource"}, {"label": ["Emploi direct en subdivision : [sujet] -- Léman (département)", "Le département du Léman a été créé le 26-04-1798 (chef-lieu : Genève ; sous-préfectures : Bonneville, Thonon) ; il s'étendait sur Genève, le nord de la Savoie et le pays de Gex"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Savoie - 1792-1815 (Occupation française)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/053443586", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/7503148574325124430009", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Léman_(département)", "source": "WIKIPEDIA"}], "authorized_access_point": "Léman (département)"} 1 +2024-09-11 09:11:13.74397 2024-09-11 09:11:13.743973 a9d6c5f4-33ec-4db2-8660-5eeadf4b4d0f {"md5": "8bce7cbff791af8c0ab7a7ab312c8519", "pid": "053500539", "note": [{"label": ["Dict. communes, 1997"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/053500539", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb136008673", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/242304355", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Copponex", "source": "WIKIPEDIA"}], "authorized_access_point": "Copponex (Haute-Savoie)"} 1 +2024-09-11 09:11:13.803136 2024-09-11 09:11:13.803139 4d58cf53-1049-4db7-a9ab-0c5985805c2e {"md5": "2fe099894b85c9faca4f3be9225c9ce1", "pid": "053504755", "note": [{"label": ["Ma vie : enfance en Sibérie, jeunesse à Harbin de 1914 à 1932 / Nina Mokrinskaia ; trad. du russe par Valérie Morichon-Kolesnikov, 2000", "Cihai, 1999", "Gd Robert 2. GDEL"], "noteType": "dataSource"}, {"label": ["Chef-lieu de la province du Heilongjiang, Chine"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Heilongjiang (Chine)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/053504755", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/55144647638065498121", "source": "VIAF"}], "variant_access_point": ["Haerbin (Chine)", "Harbin (Chine)", "Ha-eul-pin (Chine)", "Kharbin (Chine)", "哈爾濱市", "哈尔滨市", "Ha'erbin Shi"], "authorized_access_point": "Harbin (Chine)"} 1 +2024-09-11 09:11:13.872354 2024-09-11 09:11:13.872358 41716b44-7d0b-482f-910f-0a7e83e05a35 {"md5": "4fa23df57fad09c5f4beaa947ac2994d", "pid": "055832024", "note": [{"label": ["Dict. communes, 1997"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/055832024", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb136127080", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/245852500", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Saint-Cyr-sur-le-Rhône", "source": "WIKIPEDIA"}], "variant_access_point": ["Saint-Cyr-sur-Rhône (Rhône)"], "authorized_access_point": "Saint-Cyr-sur-le-Rhône (Rhône)"} 1 +2024-09-11 09:11:13.929712 2024-09-11 09:11:13.929715 bb134e73-ee91-4bc5-a131-7180404f2d17 {"md5": "8edcf0d5e3c3b4716426461f2eead6bb", "pid": "061566284", "note": [{"label": ["GDEL", "Web, http://www.geonames.org/maps/google_29.933_71.386.html (2016-03-18)", "Internet, http://authorities.loc.gov, 2016-04-06"], "noteType": "dataSource"}, {"label": ["E 71°23'10\\" - N 29°55'59\\""], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/061566284", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/974158070665608780008", "source": "VIAF"}], "variant_access_point": ["ملتان (Pakistan ; district)"], "authorized_access_point": "Multan (Pakistan ; district)"} 1 +2024-09-11 09:11:13.981062 2024-09-11 09:11:13.981066 51aea024-3b5c-4717-b176-27818572b9fc {"md5": "40501f7f841dc05b9c0ebe32c1df903b", "pid": "066838339", "note": [{"label": ["Le petit Larousse, 2001", "Étude sur la fabrication des arcs et des flèches à Chengtu en Chine / T'an Tan-Chiung / 2001"], "noteType": "dataSource"}, {"label": ["Capitale de Sichuan"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Sichuan (Chine)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/066838339", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13745600g", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/265184140", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Chengdu", "source": "WIKIPEDIA"}], "variant_access_point": ["Ch'eng-tu (Chine)", "Tch'eng-tou (Chine)", "Chengtu (Chine)", "成都"], "authorized_access_point": "Chengdu (Chine)"} 1 +2024-09-11 09:11:14.042771 2024-09-11 09:11:14.042775 b7109430-a7b4-45de-8034-ab2ecd2b6a4f {"md5": "02d77fa048186d40845ded4d278aeae8", "pid": "068861974", "note": [{"label": ["Dictionnaire des communes de France, 1992"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/068861974", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/4369148574353524430000", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Boisset-lès-Montrond", "source": "WIKIPEDIA"}], "authorized_access_point": "Boisset-lès-Montrond (Loire)"} 1 +2024-09-11 09:11:14.096916 2024-09-11 09:11:14.096919 df88d6d6-c34d-40c3-9565-fccbcb0947b8 {"md5": "d755cee5b37e63bed86fad336592d9cf", "pid": "068954174", "note": [{"label": ["Dict. des communes, 2001", "Série bleue 1:250000. 3528 est, Abondance. Châtel, 1986"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/068954174", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb167056033", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/308188277", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Châtel", "source": "WIKIPEDIA"}], "classification": [{"name": "Géographie de la France", "type": "bf:ClassificationDdc", "classificationPortion": "912"}], "authorized_access_point": "Châtel (Haute-Savoie)"} 1 +2024-09-11 09:11:14.152212 2024-09-11 09:11:14.152216 80bd347c-6e6c-4820-b3b8-b0e4ea226965 {"md5": "2d175fdda96bec512529b0704016d1e6", "pid": "069367027", "note": [{"label": ["Derborence et la vallée de la Lizerne / Théodore Kuonen, 2000"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/069367027", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/237457712", "source": "VIAF"}], "authorized_access_point": "Lizerne, Vallée de la (Valais, Suisse)"} 1 +2024-09-11 09:11:14.208933 2024-09-11 09:11:14.208937 9e8df548-3f7b-4bc4-8b07-141fbe2fc310 {"md5": "1e660f4ac07752dfeff01f3a678be43d", "pid": "070388830", "note": [{"label": ["Efestia : scavi Adriani 1928-1930, 2001"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Égée, Mer (région ; nord)"}, {"authorized_access_point": "Lemnos (Grèce ; île)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/070388830", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/70148570552324310847", "source": "VIAF"}], "variant_access_point": ["Efestia (Grèce ; site archéologique)", "Héphaistias (Grèce ; site archéologique)"], "authorized_access_point": "Héphaistia (Grèce ; site archéologique)"} 1 +2024-09-11 09:11:14.269502 2024-09-11 09:11:14.269506 1b0afa11-6a31-4f05-b754-cc45ef7b0a30 {"md5": "8f4f922164558b8ff56e67f244cf827a", "pid": "072290455", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/072290455", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/31148570657424311634", "source": "VIAF"}], "authorized_access_point": "Tire (Turquie)"} 1 +2024-09-11 09:11:14.328328 2024-09-11 09:11:14.328336 ea236f7f-4eb8-4a91-8445-5d726a44f682 {"md5": "5e6415ff550c2f337bf0cd2ab0160a94", "pid": "072616652", "note": [{"label": ["Saillon / Pascal Thurre, 2002"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/072616652", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/35148570661324311641", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)956137008", "source": "GND"}], "authorized_access_point": "Saillon (Valais, Suisse)"} 1 +2024-09-11 09:11:14.393917 2024-09-11 09:11:14.393921 f6a97e0e-fdd7-4d0c-86eb-6d0bac55f699 {"md5": "e71aa39654059047a1047e4a7218e245", "pid": "073387576", "note": [{"label": ["Bottin des communes, 2001"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/073387576", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb146042604", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/1312145424714286830500", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Saint-Georges-en-Couzan", "source": "WIKIPEDIA"}], "variant_access_point": ["St Georges-en-Couzan (Loire)"], "authorized_access_point": "Saint-Georges-en-Couzan (Loire)"} 1 +2024-09-11 09:11:14.45508 2024-09-11 09:11:14.45509 990ccbd6-5dc1-495b-9d1f-c78c376cccb8 {"md5": "4a7da6f772bf51dabf036d5eb140e43b", "pid": "073444073", "note": [{"label": ["Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/073444073", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11970308w", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/149197662", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Boën-sur-Lignon", "source": "WIKIPEDIA"}], "authorized_access_point": "Boën (Loire)"} 1 +2024-09-11 09:11:14.530108 2024-09-11 09:11:14.530117 62e05b56-e214-4af3-8eea-a25ba8f44516 {"md5": "7727257ec2a04db01e46e1be8bc47655", "pid": "074436805", "note": [{"label": ["Bottin des communes, 2001"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/074436805", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb14522148r", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/172123723", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Serrières_(Ardèche)", "source": "WIKIPEDIA"}], "authorized_access_point": "Serrières (Ardèche)"} 1 +2024-09-11 09:11:14.589423 2024-09-11 09:11:14.589426 618e0bd9-b161-44bd-a23d-191f1e26db00 {"md5": "d907bf1c3671890b55ba7fbce43654b3", "pid": "074578022", "note": [{"label": ["Le petit Robert : dictionnaire universel des noms propres. - Le Robert, 1995"], "noteType": "dataSource"}, {"label": ["Commune du Val d'Aoste"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/074578022", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/144380489", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Châtillon_(Italie)", "source": "WIKIPEDIA"}], "authorized_access_point": "Châtillon (Italie)"} 1 +2024-09-11 09:11:14.639586 2024-09-11 09:11:14.63959 e97caccb-0d77-4568-bfa4-34013d1e8a44 {"md5": "c7c94d4404199ff79d4758d6d2c07419", "pid": "077271041", "note": [{"label": ["Dict. des communes, 1992"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077271041", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12374893d", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/234758907", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Saint-Symphorien-d'Ozon", "source": "WIKIPEDIA"}], "authorized_access_point": "Saint-Symphorien-d'Ozon (Rhône)"} 1 +2024-09-11 09:11:14.702352 2024-09-11 09:11:14.702355 9a05fcb5-8e2e-460c-aec4-5b236062a3a1 {"md5": "d6fb301bda4cc33125ebedb1b30e5ddd", "pid": "077437160", "note": [{"label": ["Dict. communes, 1997"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/077437160", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/4748148574355124430004", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Brié-et-Angonnes", "source": "WIKIPEDIA"}], "classification": [{"name": "Géographie de la France", "type": "bf:ClassificationDdc", "classificationPortion": "912"}], "authorized_access_point": "Brié-et-Angonnes (Isère)"} 1 +2024-09-11 09:11:14.761979 2024-09-11 09:11:14.761982 6528169f-bce9-437e-8656-f0af3f3d6729 {"md5": "eb204c423d1a8ca107f9ee3e057ff3e1", "pid": "078613655", "note": [{"label": ["GLU", "Guide bleu Suisse, 1991", "Représentations du rique d'avalanches et comportements sociaux dans deux communes valaisannes : Salvan et Évolène, 1998"], "noteType": "dataSource"}, {"label": ["Commune du Valais, dans la vallée du Trient"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Les Marécottes (Valais, Suisse)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/078613655", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)041980409", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/81148570735924312360", "source": "VIAF"}], "classification": [{"name": "Géographie de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "914"}], "authorized_access_point": "Salvan (Valais, Suisse)"} 1 +2024-09-11 09:11:14.82893 2024-09-11 09:11:14.828933 a7d16782-09eb-4d88-9fc3-9b3f3e95baf2 {"md5": "0e65324b1fbc6c4d66b7abc10bcaada6", "pid": "084272996", "note": [{"label": ["Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/084272996", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12351512m", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/245387195", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Vonnas", "source": "WIKIPEDIA"}], "authorized_access_point": "Vonnas (Ain)"} 1 +2024-09-11 09:11:14.884682 2024-09-11 09:11:14.884685 d04f68bf-f9d5-43d8-884c-c63257022611 {"md5": "9aded22e21b9e41baf1174e7610eeca2", "pid": "085703419", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/085703419", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb14475513s", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040201392", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/55144647634843459675", "source": "VIAF"}], "classification": [{"name": "Géographie de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "914"}], "authorized_access_point": "Genève (Suisse ; région)"} 1 +2024-09-11 09:11:14.964938 2024-09-11 09:11:14.964947 1a4f7995-c386-4f89-8017-866c83712afa {"md5": "0ace4d4d7510db6a4588f8cab5bbdd11", "pid": "092146430", "note": [{"label": ["GLU", "https://fr.wikipedia.org/wiki/Ohio_(rivière)"], "noteType": "dataSource"}, {"label": ["Rivière des Etats-Unis qui part de Pennsylvanie, forme la frontière entre les États de la Virginie-Occidentale et l'Ohio, et traverse les États du Kentucky, de l'Ohio, de l'Indiana et de l'Illinois, avant de se jeter dans le Mississippi à Cairo, dans l'Illinois. 1570 km."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/092146430", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11968106c", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/24144647633045786856", "source": "VIAF"}], "variant_access_point": ["Ohio", "Ohio River (États-Unis ; cours d'eau)"], "authorized_access_point": "Ohio (États-Unis ; cours d'eau)"} 1 +2024-09-11 09:11:15.036992 2024-09-11 09:11:15.036996 c7148f5f-b206-42a0-afea-fb9dd1d4d63a {"md5": "bdb50a297a00a6e844eaea17d5ec3501", "pid": "09445423X", "note": [{"label": ["Guida d'Italia, Torino e valle d'Aosta, Touring club italiano, Milan, 1959"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/09445423X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15551512c", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/149005556", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Rivoli", "source": "WIKIPEDIA"}], "classification": [{"name": "Géographie de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "914"}], "authorized_access_point": "Rivoli (Italie)"} 1 +2024-09-11 09:11:15.094361 2024-09-11 09:11:15.094364 855f3cad-b92a-40be-b03a-c94c94a840d0 {"md5": "6f4396261384eb8b2ccf937e3b78cad0", "pid": "095140484", "note": [{"label": ["\\"La soie, c'est notre muse\\" : le tissage de la soie à Bussières, du second Empire au Front populaire / Mireille Grivot ; [publié par l'] Institut des études régionales et des patrimoines, 2005"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/095140484", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15060567r", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/126846977", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Bussières_(Saône-et-Loire)", "source": "WIKIPEDIA"}], "authorized_access_point": "Bussières (Loire)"} 1 +2024-09-11 09:11:15.146498 2024-09-11 09:11:15.146507 c5d57155-6511-4d9f-b565-b7a21151a677 {"md5": "34af786bd94569c89b960f72af627698", "pid": "102120935", "note": [{"label": ["Dict. communes, 2001"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/102120935", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb150472227", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/139948506", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/La_Chapelle-Blanche_(Savoie)", "source": "WIKIPEDIA"}], "classification": [{"name": "Géographie de la France", "type": "bf:ClassificationDdc", "classificationPortion": "912"}], "variant_access_point": ["Chapelle-Blanche, La (Savoie)"], "authorized_access_point": "La Chapelle-Blanche (Savoie)"} 1 +2024-09-11 09:11:15.213292 2024-09-11 09:11:15.213297 cebb1b0b-6226-4702-bbbf-477ba3cdd457 {"md5": "94406fa79e89cb765db0e2486a99ca14", "pid": "102147817", "note": [{"label": ["https://fr.wikipedia.org/wiki/Kentucky_(rivière)/, 2024-07-18"], "noteType": "dataSource"}, {"label": ["La Kentucky est une rivière du Kentucky aux États-Unis, affluent rive gauche de la rivière Ohio, donc un sous-affluent du Mississippi"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/102147817", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/88148570693824312469", "source": "VIAF"}], "variant_access_point": ["Kentucky river (Ky. ; cours d'eau)"], "authorized_access_point": "Kentucky (États-Unis ; cours d'eau)"} 1 +2024-09-11 09:11:15.27793 2024-09-11 09:11:15.277937 d8bbb179-56e5-4bf7-ac85-a3c8344dbb98 {"md5": "97a2acdde30d889aeb8d2e39d8f3305a", "pid": "113070926", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/113070926", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb151948916", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/151258315", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Lusaka", "source": "WIKIPEDIA"}], "authorized_access_point": "Lusaka (Zambie)"} 1 +2024-09-11 09:11:15.352957 2024-09-11 09:11:15.352961 816190f7-9252-4627-b763-03056a2325ce {"md5": "d9fc1e611df3488716a376e848a6fd3a", "pid": "114526591", "note": [{"label": ["GDEL", "https://www.vs.ch/web/communes/-/bas-valais, 2022-09-27", "À la découverte de trois régions alpines, une culture : Bas-Valais, vallée d'Aoste, Haute-Savoie - Savoie, 2000"], "noteType": "dataSource"}, {"label": ["Région du Canton du Valais comprenant les districts de Monthey, St-Maurice, Entremont et Martigny"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Valais (Suisse)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/114526591", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb144160064", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040786528", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/51144647641031129112", "source": "VIAF"}], "classification": [{"name": "Géographie de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Valais, Bas- (Suisse)"], "authorized_access_point": "Bas-Valais (Suisse)"} 1 +2024-09-11 09:11:15.427549 2024-09-11 09:11:15.427554 9c518f03-3aa0-4f86-8e49-92f235859356 {"md5": "7ff8a470ffcad120e6ff4e0fda04ae73", "pid": "116317825", "note": [{"label": ["Le glacier de l'Aletsch et le lac de Märjelen / Roland Bonaparte. Paris : 1889."], "noteType": "dataSource"}, {"label": ["E 8°4' / N 46°26'"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/116317825", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15240705p", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040721000", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/170096434", "source": "VIAF"}], "variant_access_point": ["Aletschgletscher (Suisse)", "Grosser Aletschgletscher (Valais, Suisse)", "Glacier d'Aletsch (Valais, Suisse)", "Aletsch, Glacier d' (Valais, Suisse)", "Grand Glacier d'Aletsch (Valais, Suisse)"], "authorized_access_point": "Aletsch, Grand Glacier d' (Valais, Suisse)"} 1 +2024-09-11 09:11:15.494171 2024-09-11 09:11:15.494175 8b2340de-2ce0-485f-b987-51091a034b48 {"md5": "d4a659f9fee059c7afd1e3af983b147f", "pid": "116459425", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/116459425", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/55148570478224310503", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)947297987", "source": "GND"}], "authorized_access_point": "Albanie (nord)"} 1 +2024-09-11 09:11:15.564247 2024-09-11 09:11:15.564251 2d5369b9-1549-47f9-bc36-0a899256f847 {"md5": "bf6035799c6bd64b634b377276fa7898", "pid": "119411016", "note": [{"label": ["Étude de la transformation des paysages aux limites des agglomérations. Les exemples de Caen et Dalian. / Xiao Wang, 2007"], "noteType": "dataSource"}, {"label": ["Ville de la province du Liaoning"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Liaoning (Chine)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/119411016", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/23145243768374441278", "source": "VIAF"}], "variant_access_point": ["大連市", "大连市", "Dalian Shi"], "authorized_access_point": "Dalian (Chine)"} 1 +2024-09-11 09:11:15.622709 2024-09-11 09:11:15.622717 4e7f167c-fce6-4a72-abb5-19ad96086603 {"md5": "802be42c1326cea1f9dc33b55b3f4869", "pid": "123048338", "note": [{"label": ["Lutte de clans, lutte de classes : Chermignon, la politique au village / Uli Windisch, 1986.", "https://www.commune-cransmontana.ch/pages/la-commune-de-crans-montana-3352", "Internet, http://www.chermignon.ch, 2008-04-09"], "noteType": "dataSource"}, {"label": ["Village du canton du Valais. Ancienne commune. Rattaché à la commune de Crans-Montana en 2017"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/123048338", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/73148570504824310991", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)04201459X", "source": "GND"}], "authorized_access_point": "Chermignon (Valais, Suisse)"} 1 +2024-09-11 09:11:15.704159 2024-09-11 09:11:15.704164 5329b473-3234-48db-bfae-c158306874e4 {"md5": "f917af9b16e06d518486123003075c97", "pid": "124441092", "note": [{"label": ["http://fr.wikipedia.org/wiki/Saint-Martin-de-la-Porte"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/124441092", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/241869154", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Saint-Martin-de-la-Porte", "source": "WIKIPEDIA"}], "authorized_access_point": "Saint Martin de la Porte (Savoie)"} 1 +2024-09-11 09:11:15.750929 2024-09-11 09:11:15.750931 f23e7f85-a7ea-44f4-afd3-bf6a11a52ea7 {"md5": "efdab2ef904bf4fa2ec446f9b66e1b2e", "pid": "127372547", "note": [{"label": ["Tunnel de base du Lötschberg : de la roche au chemin de fer / Felix freank, 2008", "https://fr.wikipedia.org/wiki/Tunnel_de_base_du_L%C3%B6tschberg, 2022-09-13"], "noteType": "dataSource"}, {"label": ["Tunnel ferroviaire qui relie le canton du Valais à celui de Berne. Inauguré en 2007."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/127372547", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/139148570539024310972", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)96475455X", "source": "GND"}], "variant_access_point": ["Tunnel de base du Lötschberg (Suisse)", "Lötschberg Basistunnel (Suisse)"], "authorized_access_point": "Lötschberg, Tunnel de base du (Suisse)"} 1 +2024-09-11 09:11:15.805109 2024-09-11 09:11:15.805113 174d40f0-b584-475e-ac27-ecc06fa1e099 {"md5": "de22d1ca753f7028c7adf93674a48b62", "pid": "131577166", "note": [{"label": ["Dictionnaire des communes, 2002"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/131577166", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb10755012m", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/299563798", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Saint-Barthélemy-de-Vals", "source": "WIKIPEDIA"}], "authorized_access_point": "Saint-Barthélemy-de-Vals (Drôme)"} 1 +2024-09-11 09:11:15.864795 2024-09-11 09:11:15.864802 d81f8392-3976-4896-bd0d-f4efa1abaeca {"md5": "3ef9bbb4118f37aaf5492e8cc42b124f", "pid": "133653951", "note": [{"label": ["L'appropriation des habitants de Saint-Martin-le-Vinoux aux territoires / Mémoire de master 2ème année : Politiques publiques et changement social, spécialité \\"Villes, Territoires, Solidarités\\" / Grenoble : IEP, 2008"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/133653951", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12539212n", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/95144648445080947459", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Saint-Martin-le-Vinoux", "source": "WIKIPEDIA"}], "authorized_access_point": "Saint-Martin-le-Vinoux (Isère)"} 1 +2024-09-11 09:11:15.928312 2024-09-11 09:11:15.92832 c13ee9f5-4038-4625-ad7a-99901e2fe602 {"md5": "f43aa0e4f10786e1a102e73c3cb5d82e", "pid": "140829520", "note": [{"label": ["Carte de la province de Majunga. 1:1 000 000 / Service géographique de Madagascar, [s.d.]"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Madagascar"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/140829520", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/154785947", "source": "VIAF"}], "variant_access_point": ["Mahajanga (Madagascar ; province)"], "authorized_access_point": "Majunga (Madagascar ; province)"} 1 +2024-09-11 09:11:15.993296 2024-09-11 09:11:15.993305 6067e188-6114-43c6-a346-1e119d2825f7 {"md5": "f4d85c64eec1194fce5c4ffd46e1b69b", "pid": "140834087", "note": [{"label": ["Carte de la province de Mananjary. 1:1 000 000 / Service géographique de Madagascar, 1925"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Madagascar"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/140834087", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/143237247", "source": "VIAF"}], "authorized_access_point": "Mananjary (Madagascar ; province)"} 1 +2024-09-11 09:11:16.055571 2024-09-11 09:11:16.055573 2131b4b6-8fbe-4a9c-b795-f5d1fbcb1962 {"md5": "a893e9b2d5dc6c79077b8c9c14300686", "pid": "144820072", "note": [{"label": ["Uebersichstkarte zum Relief der Monterosa-Gruppe / von X. Imfeld, 1880", "GLU"], "noteType": "dataSource"}, {"label": ["Massif des Alpes Pennines partagé entre la Suisse (canton du Valais) et l'Italie."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/144820072", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/136148570652124311276", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)041152077", "source": "GND"}], "variant_access_point": ["Monte Rosa, Massif du"], "authorized_access_point": "Mont-Rose, Massif du"} 1 +2024-09-11 09:11:16.117909 2024-09-11 09:11:16.117912 9eceeac0-d5a8-432b-a7aa-6d454c2d9617 {"md5": "d68917e97e9fd16e34a5c1422d05f835", "pid": "145818713", "note": [{"label": ["Dictionnaire des Communes, 2002"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/145818713", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/49148570720624312579", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Chasselas_(Saône-et-Loire)", "source": "WIKIPEDIA"}], "authorized_access_point": "Chasselas (Saône-et-Loire)"} 1 +2024-09-11 09:11:16.177773 2024-09-11 09:11:16.177776 c2ce6721-1287-4bc3-aaff-63dd3667e51b {"md5": "3a90cf318f35d08a10912f97fbfb3e79", "pid": "148119778", "note": [{"label": ["Dictionnaire des communes, 2002"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148119778", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16241764k", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/93144647642602560697", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Habère-Lullin", "source": "WIKIPEDIA"}], "authorized_access_point": "Habère-Lullin (Haute-Savoie)"} 1 +2024-09-11 09:11:17.033606 2024-09-11 09:11:17.033609 1bbfd7f6-40e3-49da-a6c9-4693c7707688 {"md5": "e834a0266664738cfe92d65b6eba142f", "pid": "157046486", "note": [{"label": ["Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgenössische Stabsbüreau unter der direktion von Oberst Siegfried veröffentlicht"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157046486", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/8605148574371124430002", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)040804003", "source": "GND"}], "variant_access_point": ["Biel (Suisse)"], "authorized_access_point": "Bienne (Suisse ; région)"} 1 +2024-09-11 09:11:16.247804 2024-09-11 09:11:16.247809 b9d192df-da1b-4fc9-97cb-6928cc61bb1c {"md5": "cc3e2e84c71defb89256825ca27b7f23", "pid": "148833829", "note": [{"label": ["Un grand rêve d'avenir : [Val-de-Travers, histoire d'une fusion / Kaeslin, Jacques, 19..-2019 (contributeur - collaborateur);Kleiner, Claude-Alain, 1951-.... (contributeur - collaborateur);Charrière, François, 19..-...., photographe (contributeur - collaborateur);Lycée Denis de Rougemont (Fleurier) (contributeur - collaborateur), 2013"], "noteType": "dataSource"}, {"label": ["Val-de-Travers est une commune suisse du canton de Neuchâtel, située dans la région Val-de-Travers. Val-de-Travers a été créée le 1er janvier 2009 à la suite de la fusion de neuf anciennes communes : Boveresse, Buttes, Couvet, Fleurier, Les Bayards, Môtiers, Noiraigue, Saint-Sulpice et Travers."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/148833829", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/173812545", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)1038431506", "source": "GND"}], "authorized_access_point": "Val-de-Travers (Neuchâtel, Suisse)"} 1 +2024-09-11 09:11:16.318634 2024-09-11 09:11:16.318638 49197017-7a76-4453-946b-6603c2923fab {"md5": "a3479ba5c5f14e316e29ffe233ebe6e0", "pid": "150220200", "note": [{"label": ["http://catalogue.bnf.fr/ark:/12148/cb152923816/UNIMARC 2011-02-21", "20 Jahre Furggentälti: Permafrostuntersuchungen auf der Gemmi / Bernhard Krummenacher .... - Bern : Geogr. Inst. d. Univ., 2008"], "noteType": "dataSource"}, {"label": ["Coordonnées géographiques : E 7°37' / N 46°24'"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/150220200", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/118148570517524310836", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)040717003", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040717003", "source": "GND"}], "authorized_access_point": "Gemmi, Col de la (Valais, Suisse)"} 1 +2024-09-11 09:11:16.387623 2024-09-11 09:11:16.387626 8049407d-04af-459c-b6b8-a11272c150ae {"md5": "a65ae25424a334b12ddd35cdb11b4aa3", "pid": "151572429", "note": [{"label": ["Richesses touristiques et archéologiques du canton de Treffort : Treffort, Cuisiat, Chavannes-sur-Suran, Corveissiat, Arnans, Courmangoux, Germagnat, Meillonnas, Pouillas, Pressit, Saint-Etienne-du-Bois / Département de l'Ain, Pré-inventaire, impr. 1982"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/151572429", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/225148570700124311979", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Treffort_(Ain)", "source": "WIKIPEDIA"}], "variant_access_point": ["Treffort (Ain)"], "authorized_access_point": "Treffort-Cuisiat (Ain)"} 1 +2024-09-11 09:11:16.450294 2024-09-11 09:11:16.450301 db2b89e2-8c7a-47b0-99bf-cf544b7521a8 {"md5": "a4ba8df01e71b3ccee2dee8ea53b63d9", "pid": "152219005", "note": [{"label": ["Qasr r al-Buleida : a late Roman-Byzantine fortified settlement on the Dead Sea Plain, Jordan / Alexandra Ariotti, 2009"], "noteType": "dataSource"}, {"label": ["Hameau situé à 6 km du village Ghor al-Mazra'a"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/152219005", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb166008514", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/243233070", "source": "VIAF"}], "authorized_access_point": "Qasr al-Buleida (Jordanie ; site archéologique)"} 1 +2024-09-11 09:11:16.518351 2024-09-11 09:11:16.518355 ff6eed28-0c97-4672-a2f1-fcd1105c2a33 {"md5": "07177bb6c831160e5f96006347036bf4", "pid": "153092815", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/153092815", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/37148570468224310076", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)040689794", "source": "GND"}], "authorized_access_point": "Auschwitz (Pologne)"} 1 +2024-09-11 09:11:16.573711 2024-09-11 09:11:16.573716 13a2ebd3-6b05-4f53-8e25-6adf4bdfce01 {"md5": "d3db8af161effb885752216a39a2d78b", "pid": "153807989", "note": [{"label": ["Zur Geschichte des Gornergletschers: ein Puzzle aus historischen Dokumenten und fossilen Hölzern aus dem Gletschervorfeld / Hanspeter Holzhauser. - Bern : Geographisches Institut der Universität Bern, 2010"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/153807989", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16679045m", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/300148461", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)961576073", "source": "GND"}], "classification": [{"name": "Sciences de la Terre", "type": "bf:ClassificationDdc", "classificationPortion": "550"}, {"name": "Géographie de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Gorner Gletscher (Valais, Suisse)", "Gornergletscher (Valais, Suisse)", "Glacier de Gorner (Valais, Suisse)", "Zermatt, Glacier de (Valais, Suisse)", "Glacier de Zermatt (Valais, Suisse)", "Görnergletscher (Valais, Suisse)", "Nördlischer Monte Rosa Gletscher (Valais, Suisse)"], "authorized_access_point": "Gorner, Glacier de (Valais, Suisse)"} 1 +2024-09-11 09:11:17.092774 2024-09-11 09:11:17.09278 47bf90c4-3e57-4b05-86f4-31a09ab35394 {"md5": "ba0c730b78f045602dc1d4753b0c661b", "pid": "157070093", "note": [{"label": ["Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgenössische Stabsbüreau unter der direktion von Oberst Siegfried veröffentlicht"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157070093", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/6822148574363524430000", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)953273733", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)953273733", "source": "GND"}], "authorized_access_point": "Sion (Valais, Suisse ; région)"} 1 +2024-09-11 09:11:32.972923 2024-09-11 09:11:32.972926 f8602230-8625-46ef-bbd9-9c6be08026a1 {"md5": "ae4a46548080caa4d83119def07eb9c9", "pid": "279154593", "note": [{"label": ["https://en.wikipedia.org/wiki/Hugo,_Illinois/, 2024-07-02"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Douglas"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279154593", "source": "IDREF"}], "authorized_access_point": "Hugo (Ill.)"} 1 +2024-09-11 09:11:16.623232 2024-09-11 09:11:16.623235 7a4bf1d4-96ce-4246-a1c2-6d56de204217 {"md5": "646eabb0a68ce25d586b14ce0936f95a", "pid": "154297550", "note": [{"label": ["Église paroissiale de Martigny-Ville - http://www.paroissemartigny.ch (2011-08-10)", "Ville de Martigny - http://www.martigny.ch (2011-08-10)", "Dict. historique de la Suisse : église Notre-Dame des champs - http://www.hls-dhs-dss.ch (2011-08-10)"], "noteType": "dataSource"}, {"label": ["Guides Voir : Suisse, 2006"], "noteType": "dataNotFound"}, {"label": ["Église paroissiale de Martigny, qui a succédé à plusieurs lieux de culte, d'un sanctuaire romain à l'église baroque. Longtemps utilisé, le vocable \\"Notre-Dame des Champs\\" est aujourd'hui affecté au bâtiment paroissial voisin"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/154297550", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16530054d", "source": "BNF"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Architecture", "type": "bf:ClassificationDdc", "classificationPortion": "720"}, {"name": "Géographie de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Église Notre-Dame de la Visitation (Martigny, Valais, Suisse)", "Église Notre-Dame des Champs (Martigny, Valais, Suisse)", "Notre-Dame de la Visitation, Église (Martigny, Valais, Suisse)", "Notre-Dame des Champs, Église (Martigny, Valais, Suisse)"], "authorized_access_point": "Martigny (Valais, Suisse) - Église Notre-Dame de la Visitation"} 1 +2024-09-11 09:11:16.666523 2024-09-11 09:11:16.666525 210b22dc-c973-4b37-8b49-2adcda1764b1 {"md5": "f09867a8dbf5af006af3906a5fa439bf", "pid": "154762393", "note": [{"label": ["BDIC Nanterre. Archives des Collectivités. La Guerre 1914-1918 dans le ressort de l'Académie de Lille. Cote : F delta 1126//01a/A1.212"], "noteType": "dataSource"}, {"label": ["Camp d'internement pendant la guerre de 1914-1918. Situé au canton Valais. Ony trouvait notamment des internés militaires français."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/154762393", "source": "IDREF"}], "variant_access_point": ["Loèche-les-Bains (Valais, Suisse) - Camp d'internement"], "authorized_access_point": "Leukerbad (Valais, Suisse) - Camp d'internement"} 1 +2024-09-11 09:11:16.717432 2024-09-11 09:11:16.717436 e32909cd-8206-4201-849b-a84c0a743c7c {"md5": "b5959fa1522696c4a7db6f7919c44897", "pid": "156994151", "note": [{"label": ["Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgenössische Stabsbüreau unter der direktion von Oberst Siegfried veröffentlicht"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/156994151", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/53148570484424310365", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)04005764X", "source": "GND"}], "variant_access_point": ["Bern (Suisse)"], "authorized_access_point": "Berne (Suisse ; région)"} 1 +2024-09-11 09:11:16.770054 2024-09-11 09:11:16.770057 650c8550-bad9-44c4-ab75-399a520734cf {"md5": "2ef2a3dd1ff7291e273f4b77b5377d71", "pid": "157032469", "note": [{"label": ["Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgenössische Stabsbüreau unter der direktion von Oberst Siegfried veröffentlicht"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157032469", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16200295d", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/239656292", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Cheseaux-sur-Lausanne", "source": "WIKIPEDIA"}], "authorized_access_point": "Cheseaux (Suisse ; région)"} 1 +2024-09-11 09:11:16.837006 2024-09-11 09:11:16.837015 1a21a67a-3167-4366-adcd-f55358af236a {"md5": "0ce425da15acc1b42855845b5e2a77bf", "pid": "157043819", "note": [{"label": ["Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgenössische Stabsbüreau unter der direktion von Oberst Siegfried veröffentlicht"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157043819", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/137148570485524310256", "source": "VIAF"}], "authorized_access_point": "Belfaux (Fribourg, Suisse ; région)"} 1 +2024-09-11 09:11:16.91235 2024-09-11 09:11:16.912355 dc89d235-34cb-40b1-96be-658f1148b53a {"md5": "3b94da646d76d2390874e2b0c8d65f4b", "pid": "157043908", "note": [{"label": ["Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgenössische Stabsbüreau unter der direktion von Oberst Siegfried veröffentlicht"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157043908", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/136148570491024310547", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)041965299", "source": "GND"}], "authorized_access_point": "Fribourg (Fribourg, Suisse ; région)"} 1 +2024-09-11 09:11:16.97274 2024-09-11 09:11:16.972744 fef7458c-9567-4b05-92e0-6dfbc4ec4b99 {"md5": "35a4fae09b538d2c5ed71cc7af7af7d1", "pid": "157046125", "note": [{"label": ["Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgenössische Stabsbüreau unter der direktion von Oberst Siegfried veröffentlicht"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157046125", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb155788903", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/27144648222762151333", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)949680915", "source": "GND"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Saint-Blaise_(Neuchâtel)", "source": "WIKIPEDIA"}], "variant_access_point": ["St-Blaise (Suisse)"], "authorized_access_point": "Saint-Blaise (Neuchâtel, Suisse)"} 1 +2024-09-11 09:11:17.148608 2024-09-11 09:11:17.148611 6297b82b-ed4a-419e-a175-d893ef399681 {"md5": "6d1acd3e0e2f57ec11b6464dafa9b61a", "pid": "157075109", "note": [{"label": ["Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgenössische Stabsbüreau unter der direktion von Oberst Siegfried veröffentlicht"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157075109", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13332495t", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/157272680", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Villmergen", "source": "WIKIPEDIA"}], "authorized_access_point": "Villmergen (Suisse ; région)"} 1 +2024-09-11 09:11:17.211069 2024-09-11 09:11:17.211073 2f866b88-2193-4f63-96ef-432a0cb34d22 {"md5": "cb9e4944f59a9def41b5793a55fe2aa6", "pid": "157110184", "note": [{"label": ["Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgenössische Stabsbüreau unter der direktion von Oberst Siegfried veröffentlicht"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157110184", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/237444110", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/La_Côte-aux-Fées", "source": "WIKIPEDIA"}], "authorized_access_point": "Côte aux fées (Suisse ; région)"} 1 +2024-09-11 09:11:17.255198 2024-09-11 09:11:17.255201 c95768c8-cb56-457f-9539-4c23b3be74e4 {"md5": "13afc93ebc7056226d730f02214a6b15", "pid": "157135675", "note": [{"label": ["Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgenössische Stabsbüreau unter der direktion von Oberst Siegfried veröffentlicht"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157135675", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/121148570787624312975", "source": "VIAF"}], "authorized_access_point": "Finhaut (Valais, Suisse ; région)"} 1 +2024-09-11 09:11:17.311288 2024-09-11 09:11:17.311293 ff416d98-b820-4422-86f0-23e6502226a6 {"md5": "c75910d72c1be7754e88f6b199312d9d", "pid": "157135756", "note": [{"label": ["Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgenössische Stabsbüreau unter der direktion von Oberst Siegfried veröffentlicht"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157135756", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/7324148574283224430000", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)953387615", "source": "GND"}], "authorized_access_point": "Martigny (Valais, Suisse ; région)"} 1 +2024-09-11 09:11:17.378248 2024-09-11 09:11:17.378252 2deee3ec-9ef7-4e81-8841-d379ccbd4a5a {"md5": "ffdab0c1e05e631eaa73f1cb4b92ca37", "pid": "157143791", "note": [{"label": ["Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgenössische Stabsbüreau unter der direktion von Oberst Siegfried veröffentlicht"], "noteType": "dataSource"}, {"label": ["Ne pas confondre avec: Colombier (Vaud, Suisse)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157143791", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/86148570501924310556", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)959239235", "source": "GND"}], "authorized_access_point": "Colombier (Neuchâtel, Suisse)"} 1 +2024-09-11 09:11:17.443938 2024-09-11 09:11:17.443946 d31637ab-62ca-4188-997c-e4b845df8aa7 {"md5": "2d51e8bb3b457dfd5739d3270006253e", "pid": "157164764", "note": [{"label": ["Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgenössische Stabsbüreau unter der direktion von Oberst Siegfried veröffentlicht"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157164764", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/97148570783424312980", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)953427730", "source": "GND"}], "variant_access_point": ["Neuenburg (Neuchâtel, Suisse)"], "authorized_access_point": "Neuchâtel (Neuchâtel, Suisse ; région)"} 1 +2024-09-11 09:11:17.516055 2024-09-11 09:11:17.516058 436ac3d9-cd59-4271-afbd-6b710d4881c3 {"md5": "e9e3d227d3f332ea614ff33310c23ad1", "pid": "157165892", "note": [{"label": ["Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgenössische Stabsbüreau unter der direktion von Oberst Siegfried veröffentlicht"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157165892", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/102148570725424312417", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)959192743", "source": "GND"}], "authorized_access_point": "Saint-Maurice (Valais, Suisse ; région)"} 1 +2024-09-11 09:11:17.57216 2024-09-11 09:11:17.572164 74bcc8aa-d37b-4dc4-a113-05b57099a4ac {"md5": "8d8c3ded1ccf8070010a113c67303d75", "pid": "157260275", "note": [{"label": ["Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgenössische Stabsbüreau unter der direktion von Oberst Siegfried veröffentlicht"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157260275", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/144290317", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Vouvry", "source": "WIKIPEDIA"}], "authorized_access_point": "Vouvry (Valais, Suisse ; région)"} 1 +2024-09-11 09:11:31.266551 2024-09-11 09:11:31.266555 dc83d684-c41c-4d1a-9604-e62572eaab6e {"md5": "8204787e7eb04acbf6a0829c5e9d2d3e", "pid": "279133782", "note": [{"label": ["https://fr.wikipedia.org/wiki/Roum%C3%A9lie"], "noteType": "dataSource"}, {"label": ["partie de la péninsule balkanique sous domination ottomane"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279133782", "source": "IDREF"}], "variant_access_point": ["Rumeli", "Rumelia"], "authorized_access_point": "Roumélie"} 1 +2024-09-11 09:11:17.618723 2024-09-11 09:11:17.618726 5d0526ac-54e1-482d-a20f-494871c7b68d {"md5": "ff39c9c2c9ccde20a6643aaa29beea4c", "pid": "157265927", "note": [{"label": ["Topographischer atlas der Schweiz : im masstab der original aufnahmen / nach dem Bundesgesetze vom 18. Dezember 1868 durch das eidgenössische Stabsbüreau unter der direktion von Oberst Siegfried veröffentlicht"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/157265927", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/105148570725524312416", "source": "VIAF"}], "authorized_access_point": "Gryon (Vaud, Suisse ; région)"} 1 +2024-09-11 09:11:17.684229 2024-09-11 09:11:17.684232 b3b46e29-f36d-4fc0-a5aa-9a77f3a7dd86 {"md5": "39ee4a720ef68215536e372950e2b47a", "pid": "158185102", "note": [{"label": ["Kommunalpolitik in Penzberg und Saint-Fons / Gilbert Casasus, 1985"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/158185102", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/173407949", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Saint-Fons", "source": "WIKIPEDIA"}], "authorized_access_point": "Saint-Fons (France)"} 1 +2024-09-11 09:11:17.741458 2024-09-11 09:11:17.741463 5d351a8f-872f-4617-a152-5d8bc58c11aa {"md5": "fa4319ee154b14c1e471a86b850d8e49", "pid": "158634624", "note": [{"label": ["Eine katholische Glaubenswelt : das Lötschental des 19. Jahrhunderts / herausgegeben vom Lötschentaler Museum in Kippel anlässlich der Ausstellung \\"Katholische Bildwelten\\" vom 29. Mai 2010 bis zum 31. März 2011 ; [Herausgeber, Thomas Antonietti und Rita Kalbermatten-Ebener ; Texte, Thomas Antonietti], cop. 2010"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/158634624", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/2769148574264424430001", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)040361640", "source": "GND"}], "variant_access_point": ["Lötschen, Vallée de (Valais, Suisse)", "Lötschen, Vallée du (Valais, Suisse)", "Loetschen, Vallée de (Valais, Suisse)", "Loetschen, Vallée du (Valais, Suisse)"], "authorized_access_point": "Lötschental (Valais, Suisse)"} 1 +2024-09-11 09:11:17.826474 2024-09-11 09:11:17.826482 6b6ecd56-720b-4f58-baf1-c244a88c0f4a {"md5": "05012c91ddaa534c59963a92ce2b9c00", "pid": "15903194X", "note": [{"label": ["GDEL", "Brockhaus, 17e ed"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/15903194X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12002988n", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040220419", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/88148570483324310216", "source": "VIAF"}], "variant_access_point": ["Greyerz (Freiburg, Schweiz)"], "authorized_access_point": "Gruyères (Fribourg, Suisse)"} 1 +2024-09-11 09:11:17.906733 2024-09-11 09:11:17.906738 f09b2ec0-01ff-4f9c-9dc6-cf1e06287f5d {"md5": "0a45cdffe7b0966aaebdd697e2064787", "pid": "159667518", "note": [{"label": ["Robert encyclopédique des noms propres, 2008"], "noteType": "dataSource"}, {"label": ["L'une des sept provinces historiques du Pays basque, comprise entre la Navarre et le Béarn"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pays basque (Pyrénées-Atlantiques)"}, {"authorized_access_point": "Pyrénées-Atlantiques (France)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/159667518", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11987681p", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/166144783024238212729", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Soule_(province)", "source": "WIKIPEDIA"}], "variant_access_point": ["Soule, Pays de (Pyrénées-Atlantiques)"], "authorized_access_point": "Soule (Pyrénées-Atlantiques)"} 1 +2024-09-11 09:11:17.973601 2024-09-11 09:11:17.973605 17841d88-59e4-4a7c-bcc5-7995eaadfff4 {"md5": "9b918e82a77c878ef3328b826b8fdc0a", "pid": "16152270X", "note": [{"label": ["\\"Gebilde von hoher Zwecklosigkeit\\" : Walter Maria Förderers Gratwanderung zwischen Architektur und Skulptur am Beispiel St-Nicolas in Hérémence / Zara Reckermann, cop. 2009", "Internet, http://d-nb.info/gnd/7672770-1, 2012-06-06"], "noteType": "dataSource"}, {"label": ["Eglise néo-expressionniste construite par Walter Maria Förderer (1928-2006) en 1971"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/16152270X", "source": "IDREF"}], "variant_access_point": ["Hérémence (Valais, Suisse) - St-Nicolas", "Hérémence (Valais, Suisse) - Katholische Pfarrkirche", "Hérémence (Valais, Suisse) - Sankt Nicolas"], "authorized_access_point": "Hérémence (Valais, Suisse) - Église Saint-Nicolas"} 1 +2024-09-11 09:11:18.038973 2024-09-11 09:11:18.038977 57c3f157-824d-485d-bffc-5ff5ed2abff8 {"md5": "3d7b9131a012bac43bbd781d2b402a7e", "pid": "161522718", "note": [{"label": ["\\"Gebilde von hoher Zwecklosigkeit\\" : Walter Maria Förderers Gratwanderung zwischen Architektur und Skulptur am Beispiel St-Nicolas in Hérémence / Zara Reckermann, cop. 2009"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/161522718", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)043082572", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/112144647650953000031", "source": "VIAF"}], "variant_access_point": ["Armensi (Valais, Suisse)", "Ermenz (Valais, Suisse)"], "authorized_access_point": "Hérémence (Valais, Suisse)"} 1 +2024-09-11 09:11:18.112718 2024-09-11 09:11:18.112722 019a6988-febe-4d13-95b3-85ae2c6c77dd {"md5": "628e8d72b9239e1cd9f3930ef081dee0", "pid": "161930069", "note": [{"label": ["Dictionnaire des communes, 2002"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/161930069", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb131958679", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/159189091", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Veyrier-du-Lac", "source": "WIKIPEDIA"}], "authorized_access_point": "Veyrier-du-Lac (Haute-Savoie)"} 1 +2024-09-11 09:11:18.1634 2024-09-11 09:11:18.163404 a7032dbf-81b8-41bd-9347-de95e659712f {"md5": "900eae5de07151d539b9b19c525bed7d", "pid": "162029667", "note": [{"label": ["Site officiel de la commune"], "noteType": "dataSource"}, {"label": ["Commune du canton du Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/162029667", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/40148570706524311869", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)041021746", "source": "GND"}], "authorized_access_point": "Monthey (Valais, Suisse)"} 1 +2024-09-11 09:11:18.22756 2024-09-11 09:11:18.227564 9c8cabc3-b840-4094-a362-6872e1c30f90 {"md5": "e0c71d8e557748e125fd7986d3229b1f", "pid": "162144342", "note": [{"label": ["Dict. communes, 2002"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/162144342", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15591531g", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/14144648150835336147", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Saint-Jean-d'Arves", "source": "WIKIPEDIA"}], "authorized_access_point": "Saint-Jean-d'Arves (Savoie)"} 1 +2024-09-11 09:11:18.286429 2024-09-11 09:11:18.286434 e358d013-10c2-4522-ade0-f6bf2a31ee68 {"md5": "b05cc34140eb7ac792536f8e3fcd51c9", "pid": "163687536", "note": [{"label": ["BDIC Nanterre, Archives. Bureau d'études de la presse étrangère.- Suisse 1915-1922 (cote F delta 788/22)", "Dictionnaire Historique de la Suisse (URL: http://www.hls-dhs-dss.ch/textes/f/F2782.php)"], "noteType": "dataSource"}, {"label": ["Commune du canton Valais. On y trouve depuis 1905 une usine de Aluminium Industrie AG (depuis Alusuisse), théâtre d'une grève insurrectionnelle en mai-juin 1917."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/163687536", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/66148570719924312145", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)1004355866", "source": "GND"}], "authorized_access_point": "Chippis (Valais, Suisse)"} 1 +2024-09-11 09:11:18.353871 2024-09-11 09:11:18.353874 26c869d8-c497-4274-bd45-a7c6e28d030e {"md5": "ee69779466f3201ca08912192285dff2", "pid": "165827157", "note": [{"label": ["Aménagements fluviaux de la Thielle au Moyen Age : pêcherie et moulin de Pré de la Mottaz / Nicole Plumettaz, Daniel Pillonel et Nigel Thew; avec des contributions de Stéphane Böhringer, Patrick Gassmann, Philippe Hadorn...[et al.]; avec un texte orginal d'Hanni Schwab; et un document de Bernard Vauthier, 2011"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/165827157", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/91148570456824310233", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)1025748506", "source": "GND"}], "variant_access_point": ["Thielle (Neuchâtel, Suisse ; cours d'eau)", "Thielle (Berne, Suisse ; cours d'eau)"], "authorized_access_point": "Thielle (Suisse ; cours d'eau)"} 1 +2024-09-11 09:11:18.418561 2024-09-11 09:11:18.418569 bdb0bcae-c494-48d6-b4fa-39e41a3a7d78 {"md5": "8463abf10ced776f1ee68d7bff76ef90", "pid": "169621820", "note": [{"label": ["The history of Bahawalpur / Shahamet Ali, 2012", "Internet, http://wikipedia.org, 2013-05-29", "Bernard Desnous. BULAC. Tél. 01 81 69 18 24. Courriel : bernard.desnouesbulac.fr"], "noteType": "dataSource"}, {"label": ["Ville située dans le district de Bahawalpur dans la Province du Pendjab au Pakistan"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/169621820", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16026376x", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/123164765", "source": "VIAF"}], "variant_access_point": ["Bahāvalpūr (Pakistan)", "بھاولپور (Pakistan)"], "authorized_access_point": "Bahāwalpur (Pakistan)"} 1 +2024-09-11 09:11:18.484847 2024-09-11 09:11:18.484856 43b0a2e9-2f8b-46d9-b2f0-5c6fccf85635 {"md5": "72d18f4614613a5a0937253c83b566a0", "pid": "171128362", "note": [{"label": ["Dictionnaire des communes, 2002"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/171128362", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16529740m", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/254854254", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Nonglard", "source": "WIKIPEDIA"}], "authorized_access_point": "Nonglard (Haute-Savoie)"} 1 +2024-09-11 09:11:18.55569 2024-09-11 09:11:18.555694 0c980d1f-8045-475b-bb28-283de6ba9714 {"md5": "ef80bf8ed1e8cff44fd23e6ad47def3d", "pid": "175270147", "note": [{"label": ["Ci hai, 1999"], "noteType": "dataSource"}, {"label": ["Ville située à l'extrémité occidentale de la province du Guangdong. Concession française sous le nom de Fort-Bayard de 1899 à 1945", "N 21°16′53″ / E 110°20′34″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Guangdong (Chine ; province)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/175270147", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb167267480", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/113144647643872637671", "source": "VIAF"}, {"type": "uri", "value": "http://viaf.org/viaf/4147150749007416420001", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "203905040"}, "classification": [{"name": "Géographie du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "915"}], "variant_access_point": ["Chan kiang (Chine)", "Fort Bayard (Chine)", "Kwang chou wan (Chine)", "Tsan kiang (Chine)", "Zhan jiang (Chine)", "Zhan jiang shi (Chine)", "Kwangchowwan", "湛江市", "Zhanjiang shi"], "authorized_access_point": "Zhanjiang (Chine)"} 1 +2024-09-11 09:11:22.951069 2024-09-11 09:11:22.951076 5adea384-bdce-4501-bc6e-1e056b14589e {"md5": "94ae5275b0c13d76c178b150359d7ee9", "pid": "26138449X", "note": [{"label": ["La Grand-Rue au Locle / Amez-Droz, Arthur, 1883-1962 (créateur), 1920", "Visualisation sur SITN- Géoportail du système d'information du territoire neuchâtelois https://sitn.ne.ch, 2022-03-29"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26138449X", "source": "IDREF"}], "variant_access_point": ["Le Locle (Neuchâtel, Suisse) - Grand-Rue"], "authorized_access_point": "Le Locle (Neuchâtel, Suisse) - Grande-Rue"} 1 +2024-09-11 09:11:18.610379 2024-09-11 09:11:18.610383 3666b4e7-203e-4614-b61c-acf6c10dfcf9 {"md5": "defb8fa641ba32171ec557d22b22e6db", "pid": "176470875", "note": [{"label": ["Bahāvalpūr : ḵẖvushḥāl riyāsat se pasmāndah ḍivīzhan tak / Mujāhid Ḥusain, 2011", "Bernard Desnous. BULAC. Tél. 01 81 69 18 24. Courriel : bernard.desnouesbulac.fr"], "noteType": "dataSource"}, {"label": ["Chef-lieu de l'administration territoriale du même nom"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/176470875", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/156004112", "source": "VIAF"}], "variant_access_point": ["Bahāvalpūr (Pakistan ; Division)", "بھاولپور (Pakistan ; Division)"], "authorized_access_point": "Bahāwalpur (Pakistan ; Division)"} 1 +2024-09-11 09:11:18.677972 2024-09-11 09:11:18.677976 282ab73f-0352-4e6c-b324-13003a6e72b8 {"md5": "6c22c3aca80ed786ceeffa669ea4ded1", "pid": "177159855", "note": [{"label": ["Carte nationale de la Suisse 1:50 000. feuille 283. Arolla. Grand Combin - Lac des Dix - Matterhorn [Document cartographique] / Office fédéral de topographie swisstopo, 2013"], "noteType": "dataSource"}, {"label": ["Village de montagne du canton du Valais", "Coordonnées géographiques : E 7°29' / N 46°1'31\\""], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/177159855", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15284200c", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/169947327", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)962615161", "source": "GND"}], "authorized_access_point": "Arolla (Valais, Suisse)"} 1 +2024-09-11 09:11:18.746508 2024-09-11 09:11:18.746512 c73b42b0-b057-46d9-a51d-1fd852f83ab5 {"md5": "dd36009e5c146c5bd35d62b70cd18d08", "pid": "177517506", "note": [{"label": ["Résistance entre Voirons et frontière : Machilly 1938-1947 / Simone et Robert Amoudruz, impr. 2013"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/177517506", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/316739960", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Machilly", "source": "WIKIPEDIA"}], "authorized_access_point": "Machilly (Haute-Savoie)"} 1 +2024-09-11 09:11:18.821144 2024-09-11 09:11:18.821148 83763327-bea9-48ca-8cb5-2adc8a59b339 {"md5": "2b5f46ce4e4862e383809e5e4b584cc0", "pid": "177835893", "note": [{"label": ["Dict. communes, 1992"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/177835893", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb13167493m", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/238768969", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Sancé_(Saône-et-Loire)", "source": "WIKIPEDIA"}], "authorized_access_point": "Sancé (Saône-et-Loire)"} 1 +2024-09-11 09:11:18.888482 2024-09-11 09:11:18.888489 94dc9dfd-51f5-4982-967a-9020b3942c2a {"md5": "800692956e7898e36a0b8eb96e7b4c8a", "pid": "178091219", "note": [{"label": ["Grand Larousse universel : Dawḥa (al-) ou Doha (al-)", "Atlas Le Monde : Ad Dawḥa"], "noteType": "dataSource"}, {"label": ["Capitale du Qatar"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/178091219", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11962996x", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/136649381", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Doha", "source": "WIKIPEDIA"}], "classification": [{"name": "Géographie du reste du monde", "type": "bf:ClassificationDdc", "classificationPortion": "915"}], "variant_access_point": ["Ad Dawḥa (Qatar)", "Al-Doha (Qatar)", "Dawḥa, Al (Qatar)", "Doha (Qatar)"], "authorized_access_point": "Al-Dawḥa (Qatar)"} 1 +2024-09-11 09:11:18.947073 2024-09-11 09:11:18.94708 e692acfb-9278-43ef-98b9-9b119f8958ad {"md5": "e66e572eae09dac49e480b0305dd3cf4", "pid": "178635863", "note": [{"label": ["Dictionnaire des communes, 2002"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/178635863", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/146557727", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Vaux-en-Bugey", "source": "WIKIPEDIA"}], "authorized_access_point": "Vaux-en-Bugey (Ain)"} 1 +2024-09-11 09:11:19.017935 2024-09-11 09:11:19.017939 fd47115c-325f-4f72-8f96-887e294694e3 {"md5": "7bece7cfc1229a865bf3af7406e94e8d", "pid": "18055686X", "note": [{"label": ["Atlas universel Le Monde, 1989"], "noteType": "dataSource"}, {"label": ["Commune du canton de Vaud, sur la rive nord du lac Léman, toute proche de Lausanne"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/18055686X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15858450v", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/157246276", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Pully", "source": "WIKIPEDIA"}], "classification": [{"name": "Géographie de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "914"}], "authorized_access_point": "Pully (Suisse)"} 1 +2024-09-11 09:11:19.083125 2024-09-11 09:11:19.083129 f4c83801-2dac-49ec-acc6-6b92fef9f765 {"md5": "292812884696fd34f3d2bc60c5196e6b", "pid": "183926943", "note": [{"label": ["Notice n° : FRBNF15274480. Adresse:http://catalogue.bnf.fr/ark:/12148/cb152744806/PUBLIC", "La Roche-sur-Foron: 74800: voies de communication / [réalisé et publié par]Editions P.P.P., 1982"], "noteType": "dataSource"}, {"label": ["Coordonnées géographiques : E 6°18'40\\" / N 46°3'56\\""], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/183926943", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15868881f", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/133728351", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/La_Roche-sur-Foron", "source": "WIKIPEDIA"}], "authorized_access_point": "La Roche-sur-Foron (Haute-Savoie)"} 1 +2024-09-11 09:11:19.135974 2024-09-11 09:11:19.135978 1e8d9912-cfab-42ee-a56e-d9f70c4b4453 {"md5": "a0036a5be21f8bb2c8a6c6ab2723eec7", "pid": "184504872", "note": [{"label": ["Wikipedia (2015-03-24)"], "noteType": "dataSource"}, {"label": ["Podgorica est la capitale du Monténégro ainsi que sa plus grande ville", "N 42° 26′ 28″ / E 19° 15′ 49″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/184504872", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15205350s", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/127589542", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Podgorica", "source": "WIKIPEDIA"}], "variant_access_point": ["Подгорица", "Titograd"], "authorized_access_point": "Podgorica (Monténégro)"} 1 +2024-09-11 09:11:19.211226 2024-09-11 09:11:19.21123 92e2ec8f-e0e0-4d60-a2a9-f77e841e5b6b {"md5": "c3d352c0d1a3e1453bbec253e26bc17c", "pid": "185130348", "note": [{"label": ["Dict. communes, 2001"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/185130348", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15049047h", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/236148481", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Neuville-les-Dames", "source": "WIKIPEDIA"}], "classification": [{"name": "Géographie de la France", "type": "bf:ClassificationDdc", "classificationPortion": "912"}], "authorized_access_point": "Neuville-les-Dames (Ain)"} 1 +2024-09-11 09:11:19.284192 2024-09-11 09:11:19.284196 32ae706d-7b24-4984-9d9f-c9a2c2c665bc {"md5": "0cf73908c8f0711eede2dee55f9d52ee", "pid": "185838235", "note": [{"label": ["Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/185838235", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12016494c", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/244320617", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Régny", "source": "WIKIPEDIA"}], "authorized_access_point": "Régny (Loire)"} 1 +2024-09-11 09:11:19.346954 2024-09-11 09:11:19.346959 180ab4c8-dabc-4233-af2a-57ea3342193d {"md5": "0249b46420c12da2e93610fb78f05dd9", "pid": "186257287", "note": [{"label": ["Historic Nassau / Gail Saunders and Donald Cartwright, 1979"], "noteType": "dataSource"}, {"label": ["Capitale des Bahamas"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/186257287", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/148911449", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Nassau_(Bahamas)", "source": "WIKIPEDIA"}], "authorized_access_point": "Nassau (Bahamas)"} 1 +2024-09-11 09:11:19.416052 2024-09-11 09:11:19.416056 15ba4357-59db-4835-8a7e-448214de1139 {"md5": "c6ac2ccc974c35111707cf252e3f74fc", "pid": "188234837", "note": [{"label": ["GeoNames (2015-09-15)"], "noteType": "dataSource"}, {"label": ["Province chinoise", "N 33°00′00″ / E 119°50′00″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chine - Provinces"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/188234837", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/3997148574310724430001", "source": "VIAF"}], "variant_access_point": ["江蘇省", "江苏省", "Jiangsu Sheng"], "authorized_access_point": "Jiangsu (Chine ; province)"} 1 +2024-09-11 09:11:19.472801 2024-09-11 09:11:19.472806 c3a9df9e-4092-4a31-bfb0-26064aa67f45 {"md5": "91c5cd2a9bf978753d8d4d1e34121087", "pid": "190533889", "note": [{"label": ["Grand Larousse universel", "Robert encyclopédique des noms propres, 2008", "Dict. de géographie historique de la Gaule et de la France / J. Moreau, 1972", "Trésor des régions - http://tresordesregions.mgm.fr (2008-12-16)"], "noteType": "dataSource"}, {"label": ["Vallée haute de l'Isère (en amont d'Albertville), et région de Savoie autour de cette vallée, qui a constitué une province de l'ancienne Savoie"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/190533889", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119334934", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/278144783073895221354", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Vallée_de_la_Tarentaise", "source": "WIKIPEDIA"}], "classification": [{"name": "Géographie de la France", "type": "bf:ClassificationDdc", "classificationPortion": "912"}], "variant_access_point": ["Isère, Vallée haute de l' (Savoie)"], "authorized_access_point": "Tarentaise (Savoie)"} 1 +2024-09-11 09:11:19.535486 2024-09-11 09:11:19.535488 aeabd2ba-7a22-4757-864d-47565ea478ab {"md5": "06b2381ffa70c4ebf1219bb83d22040f", "pid": "192765531", "note": [{"label": ["S. Bernardo alle Terme e le distrutte chiese di S. Ciriaco e S. Caterina in Thermis / Sergio Ortolani, vers 1923"], "noteType": "dataSource"}, {"label": ["Adresse : Via Giulia. L'édifice appartient à l'archiconfrérie de Sienne depuis sa fondation en 1526. L'édifice fut entièrement reconstruit entre 1766 et 1775"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/192765531", "source": "IDREF"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Architecture", "type": "bf:ClassificationDdc", "classificationPortion": "720"}, {"name": "Géographie de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Chiesa di Santa Caterina (Rome, Italie)", "Chiesa di Santa Caterina in Thermis (Rome, Italie)", "Rome (Italie) - Église Sainte-Catherine", "Église Sainte-Catherine (Rome, Italie)", "Santa Caterina (Rome, Italie)"], "authorized_access_point": "Rome (Italie) - Chiesa di Santa Caterina"} 1 +2024-09-11 09:11:28.848581 2024-09-11 09:11:28.848591 88be1c38-f72d-4d76-a9d5-6ed8c7244db5 {"md5": "d789d3735fb7e3fcb0927eb7a284c8dd", "pid": "276271890", "note": [{"label": ["Die Baugeschichte der Burg Kyffhausen / Hermann Wäscher. - Halle (Saale) : Kreuz Verlag (VOB), 1959."], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276271890", "source": "IDREF"}], "variant_access_point": ["Burg Kyffhausen", "Kyffhäuserland, Land de Thuringe (Allemagne) - Château de Kyffhausen"], "authorized_access_point": "Kyffhausen, Château de (Allemagne)"} 1 +2024-09-11 09:11:19.598322 2024-09-11 09:11:19.598325 ed865952-4fb5-4bb3-931c-c0be7af5d3ce {"md5": "0499eaf6b74a6b489fcaad92d8d6430f", "pid": "193304767", "note": [{"label": ["LC online cat., 2023-10-05 : Tutankhamen, King of Egypt -- Tomb", "Guides bleus : Égypte, 1990", "Chronique de l'Égypte ancienne / M. Dessoudeix, 2008", "Encycl. of the archaeology of ancient Egypt / K. A. Bard, 1999 (art. : Thebes, Valley of the Kings)", "The complete Valley of the Kings / N. Reeves, R. H. Wilkinson, 1997", "Antikforever : les nécropoles : la vallée des Rois - http://antikforever.com/Egypte/Tombes/vallees_rois.htm (2016-05-13)", "Topographical bibliography of ancient Egyptian hieroglyphic texts, reliefs, and paintings, 1.2 The Theban necropolis : Royal tombs and smaller cemeteries / B. Porter, R. L. B. Moss, 1964 (p. 569-586) : Tutʿankhamūn' - http://www.griffith.ox.ac.uk/topbib/pdf/pm1-2.pdf (2016-05-13)"], "noteType": "dataSource"}, {"label": ["Tombeau découvert le 4 novembre 1922 par Howard Carter, contenant, inviolés, le trésor et la momie du pharaon"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Vallée des Rois (Égypte ; site archéologique)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/193304767", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17046157n", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)1165082802", "source": "GND"}], "classification": [{"name": "Architecture", "type": "bf:ClassificationDdc", "classificationPortion": "720"}, {"type": "bf:ClassificationDdc", "classificationPortion": "915"}, {"name": "Préhistoire et histoire ancienne", "type": "bf:ClassificationDdc", "classificationPortion": "930"}], "variant_access_point": ["Thèbes (ville ancienne) - Tombe KV62", "Tombe de Toutankhamon (Vallée des Rois, Égypte)", "Tombe KV62 (Vallée des Rois, Égypte)", "Tombeau de Toutankhamon (Vallée des Rois, Égypte)", "Vallée des Rois (Égypte ; site archéologique) - Tombe KV62"], "authorized_access_point": "Vallée des Rois (Égypte ; site archéologique) - Tombe de Toutankhamon"} 1 +2024-09-11 09:11:19.659831 2024-09-11 09:11:19.659835 a21c3765-38ba-4cf7-b240-8e6c674d5908 {"md5": "371c22e82b16f0a78d418577d05a8ab3", "pid": "193589370", "note": [{"label": ["Web, https://fr.wikipedia.org/wiki/Saint-Just-la-Pendue (2016-06-07)"], "noteType": "dataSource"}, {"label": ["E 4°14'38\\" / N 45°53'42\\""], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/193589370", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11987537x", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/141509173", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Saint-Just-la-Pendue", "source": "WIKIPEDIA"}], "authorized_access_point": "Saint-Just-la-Pendue (Loire)"} 1 +2024-09-11 09:11:19.717804 2024-09-11 09:11:19.717808 5e48d483-8d84-4261-9f01-3d958eed09ad {"md5": "61f0e23c3f477cefa414e008cf583985", "pid": "194382206", "note": [{"label": ["http://www.insee.fr/fr/methodes/nomenclatures/cog/, 2016-07-19", "http://www.geonames.org/, 2016-07-19"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/194382206", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb161556451", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/25144648229821282355", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Saint-Sorlin-en-Bugey", "source": "WIKIPEDIA"}], "authorized_access_point": "Saint-Sorlin-en-Bugey (Ain)"} 1 +2024-09-11 09:11:19.763782 2024-09-11 09:11:19.763785 23a81b62-2b46-43d7-bd70-9076e86f856e {"md5": "98a16d23f08309ce9ead5115d5b80f36", "pid": "196449103", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/196449103", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/3060148574347924430005", "source": "VIAF"}], "variant_access_point": ["Argentoratum (ville ancienne ; région)", "Strasbourg", "Strassburg (Bas-Rhin ; région)"], "authorized_access_point": "Strasbourg (Bas-Rhin ; région)"} 1 +2024-09-11 09:11:19.820716 2024-09-11 09:11:19.820718 af4e4d70-29db-4504-a8b3-698da0d646bd {"md5": "bf211954914745608d5f0cda1cae0ebe", "pid": "197647235", "note": [{"label": ["Das St. Gotthardgebirge mit einer geologischen Karte und 4 tafeln / von Karl von Fritsch, J. Dalp, 1873", "https://fr.wikipedia.org/wiki/Massif_du_Saint-Gothard, 2024-06-27", "http://www.geonames.org/search.html?q=Gotthard&country=CH, 2017-01-16"], "noteType": "dataSource"}, {"label": ["Le massif du Saint-Gothard est une région montagneuse située dans la chaîne des Alpes, en Suisse, à la frontière de quatre cantons suisses : le Valais, le Tessin, Uri et les Grisons"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/197647235", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/287148570783524312836", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)040938174", "source": "GND"}], "variant_access_point": ["Sankt Gotthardgebirge (Suisse)", "Gotthardmassiv (Suisse)", "San Gottardo, massiccio del (Suisse)"], "authorized_access_point": "Saint-Gothard, massif du (Suisse)"} 1 +2024-09-11 09:11:19.885394 2024-09-11 09:11:19.885401 f6d5b8a3-394a-4905-977e-1b1732746c60 {"md5": "c3b67ae5103332809c8956b67e9efff3", "pid": "197699855", "note": [{"label": ["Description géologique des préalpes du canton de Vaud et du Chablais jusqu'à la Dranse et de la chaîne des dents du Midi / par Ernest Favre et Hans Schardt, 1887", "https://fr.wikipedia.org/wiki/Chablais,2017-01-18"], "noteType": "dataSource"}, {"label": ["Région située à l’extrémité vaudoise et valaisanne du Léman, en aval de la haute vallée du Rhône"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/197699855", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/124148570784924312981", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)950051233", "source": "GND"}], "authorized_access_point": "Chablais (Suisse)"} 1 +2024-09-11 09:11:19.963527 2024-09-11 09:11:19.963535 be0fe78b-74fe-4deb-ace1-d834d7803a6e {"md5": "8f61d8cae23cfd37cec5c58b80c92858", "pid": "19787133X", "note": [{"label": ["Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/19787133X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb11933489w", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/134869146", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Soucieu-en-Jarrest", "source": "WIKIPEDIA"}], "variant_access_point": ["Soucieu-en-Jarez (Rhône)"], "authorized_access_point": "Soucieu-en-Jarrest (Rhône)"} 1 +2024-09-11 09:11:28.91062 2024-09-11 09:11:28.910629 af7d1de5-0784-4dfe-ab25-8b088e907440 {"md5": "e7609497f9f877e4e2b0f27a10051b87", "pid": "276300882", "note": [{"label": ["Burg Gemen / Eberhard G. Neumann. - 4. Auflage. - München ; Berlin : Deutscher Kunstverlag, 1987."], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276300882", "source": "IDREF"}], "variant_access_point": ["Burg Gemen", "Borken (Westphalie) - Château de Gemen"], "authorized_access_point": "Gemen, Château de (Allemagne)"} 1 +2024-09-11 09:11:20.029698 2024-09-11 09:11:20.029702 3f0b0d32-4e0e-400b-bfd0-2835e0232414 {"md5": "501054a27fca934ab2dbc0f290a3fcc1", "pid": "198026072", "note": [{"label": ["La Région Auvergne-Rhône-Alpes - http://www.auvergnerhonealpes.fr (2016-11-14)", "Décret n° 2016-1266 du 28 septembre 2016 portant fixation du nom et du chef-lieu de la région Auvergne-Rhône-Alpes (JO du 29) - https://www.legifrance.gouv.fr (2016-11-14)"], "noteType": "dataSource"}, {"label": ["Région administrative de la France comprenant 12 départements : Ain, Allier, Ardèche, Cantal, Drôme, Haute-Loire, Haute-Savoie, Isère, Loire, Puy-de-Dôme, Rhône et Savoie (chef-lieu : Lyon), créée le 1er janvier 2016 par la fusion des régions Auvergne et Rhône-Alpes (le nom est adopté par le Conseil régional le 23 juin 2016)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/198026072", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17023163f", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/729145857886323020755", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Auvergne-Rhône-Alpes", "source": "WIKIPEDIA"}], "classification": [{"name": "Géographie de la France", "type": "bf:ClassificationDdc", "classificationPortion": "912"}], "variant_access_point": ["Auvergne-Rhône-Alpes", "Région Auvergne-Rhône-Alpes (France)"], "authorized_access_point": "Auvergne-Rhône-Alpes (France)"} 1 +2024-09-11 09:11:20.093449 2024-09-11 09:11:20.09346 6fe0b4f1-62c7-4b41-8551-5bb9942a024a {"md5": "5de5e5b97b3a1877b436203b7f326f56", "pid": "198231288", "note": [{"label": ["Note sur la Géologie des environs de Louèche-les-Bains / par le Dr Phil. de La Harpe, 1877"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/198231288", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)040995623", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/144250507", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Loèche-les-Bains", "source": "WIKIPEDIA"}], "variant_access_point": ["Louèche-les-Bains (Valais, Suisse)", "Leukerbad (Valais, Suisse)"], "authorized_access_point": "Loèche-les-Bains (Valais, Suisse)"} 1 +2024-09-11 09:11:20.158994 2024-09-11 09:11:20.158999 54b66e4d-7513-46a6-b124-ab9c7cbf3361 {"md5": "1e84ed02d62a0288ad9780b347c9a230", "pid": "198239386", "note": [{"label": ["Mourre", "Brockhaus, 19. Aufl", "Berliner Mauer ; SWD, 1995-04", "Mur de Berlin ; Laval RVM, 2001-07"], "noteType": "dataSource"}, {"label": ["Mur de 45 km séparant Berlin-Ouest du territoire de la RDA, érigé par les autorités est-allemandes dans la nuit du 13 août 1961. - Son ouverture le 9 novembre 1989 préluda à l'unification des deux Allemagne"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rideau de fer (frontière)"}, {"authorized_access_point": "Berlin (Allemagne) - 1945-1990"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Berlin (Allemagne) - 1989 (Chute du Mur)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/198239386", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119380937", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040948374", "source": "GND"}], "relation_pid": {"type": "redirect_from", "value": "084361409"}, "classification": [{"name": "Construction", "type": "bf:ClassificationDdc", "classificationPortion": "690"}, {"name": "Histoire de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Berlin (Allemagne) - Mauer", "Berlin (Allemagne) - Berliner Mauer", "Berlin, Mur de (1961-1989)", "Berliner Mauer (1961-1989)", "Mur de Berlin"], "authorized_access_point": "Berlin (Allemagne) - Mur de Berlin"} 1 +2024-09-11 09:11:20.225806 2024-09-11 09:11:20.225809 54eb43e5-e7cc-42de-944d-d4d60c035af0 {"md5": "f55714b754163e19f460d42f8d818169", "pid": "201852845", "note": [{"label": ["Tourisme, mobilité et développement régional dans les Alpes suisses / Delphine Gueux. 2016", "wikipedia.org, 2017-06-17"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/201852845", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/219150565656806251127", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)942312023", "source": "GND"}], "authorized_access_point": "Finhaut (Valais, Suisse)"} 1 +2024-09-11 09:11:20.294951 2024-09-11 09:11:20.294958 8565560a-aaef-452a-a034-b70c6950477b {"md5": "71135f45c78938039959e39c1c546811", "pid": "203060571", "note": [{"label": ["Dictionnaire des communes, 2002"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/203060571", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb131210592", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/304890312", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Montrond-les-Bains", "source": "WIKIPEDIA"}], "authorized_access_point": "Montrond-les-Bains (Loire)"} 1 +2024-09-11 09:11:20.359796 2024-09-11 09:11:20.3598 ed20ab86-6dfb-4c3d-843b-8ff6ffb86ac7 {"md5": "aadf5e3ebfa287745d6fea9c28c950a9", "pid": "203376552", "note": [{"label": ["GeoNames (2017-07-26)"], "noteType": "dataSource"}, {"label": ["Les Houches sont une commune française située dans le département de la Haute-Savoie, en région Auvergne-Rhône-Alpes. La commune des Houches est située dans la vallée de l'Arve, non loin de la commune de Chamonix, au pied du mont Blanc. Étendue sur près de 5 000 hectares, de 850 m à 4 304 m (sommet du dôme du Goûter), la commune comprend de nombreux hameaux.", "N 45°53′24″ / E 6°47′46″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Haute-Savoie (France)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/203376552", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12509599r", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/147176499", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Les_Houches", "source": "WIKIPEDIA"}], "variant_access_point": ["Houches"], "authorized_access_point": "Les Houches (Haute-Savoie ; région)"} 1 +2024-09-11 09:11:20.419812 2024-09-11 09:11:20.41982 f4e12144-946e-4197-a10c-f4f9529931e4 {"md5": "ef55af08f124fb44eed333486bc4d519", "pid": "204299276", "note": [{"label": ["Atlas universel / \\"Le Monde\\", Sélection du \\"Reader's digest\\", 1989", "Dict. historique de la Suisse - http://www.hls-dhs-hss.ch (2014-02-20)", "Heremence.ch - http://www.heremence.ch (2014-02-20)", "Office national suisse du tourisme - https://www.myswitzerland.com/fr-fr/pyramides-d-euseigne.html (2017-09-13)"], "noteType": "dataSource"}, {"label": ["Curiosité géologique, dite aussi hoodoo, demoiselles coiffées, colonne de roche friable surmontée, coiffée d'un socle en roche résistant, située à l'entrée du village d'Euseigne située sur la commune d'Hérémence, Canton du Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/204299276", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17150260r", "source": "BNF"}], "classification": [{"name": "Géographie de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Cheminées de fées (Hérémence, Valais, Suisse)", "Pyramides d'Euseigne (Hérémence, Valais, Suisse)"], "authorized_access_point": "Hérémence (Valais, Suisse) - Pyramides d'Euseigne"} 1 +2024-09-11 09:11:20.485689 2024-09-11 09:11:20.485692 51acd48a-12e3-4762-9571-62e445e07030 {"md5": "21201ad92197939fd3a569e5568a4f07", "pid": "219922608", "note": [{"label": ["Wikipedia (2011-11-03)"], "noteType": "dataSource"}, {"label": ["Betsiboka est l'une des vingt-deux régions de Madagascar. Elle est située dans la province de Majunga, dans l'ouest de l'île", "S 16°57′00″ / E 46°49′48″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Madagascar"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/219922608", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/2245152865647904940008", "source": "VIAF"}], "authorized_access_point": "Betsiboka (Madagascar, région)"} 1 +2024-09-11 09:11:20.546801 2024-09-11 09:11:20.546806 e47fab25-6d3f-4a41-a14e-acf7aeb433f7 {"md5": "702ce5c073b93622098507dd8fbc88e8", "pid": "219924074", "note": [{"label": ["Wikipedia (2011-11-03)"], "noteType": "dataSource"}, {"label": ["Boeny est l'une des vingt-deux régions de Madagascar. Elle est située dans la province de Mahajanga, dans l'ouest de l'île.", "S 15°43′12″ / E 46°19′12″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Madagascar"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/219924074", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb171412498", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/5150202060003111021", "source": "VIAF"}], "authorized_access_point": "Boeny (Madagascar)"} 1 +2024-09-11 09:11:20.611233 2024-09-11 09:11:20.611236 520c7978-5dab-4cd6-b0d8-eb1498e67376 {"md5": "fe9c300ebfda3ee68638155a3c09f85b", "pid": "219925283", "note": [{"label": ["Wikipedia (2011-11-03)"], "noteType": "dataSource"}, {"label": ["La Sava est l'une des vingt-deux régions de Madagascar, dont le nom est un acronyme formé à partir de ceux de ses quatre districts : Sambava, Antalaha, Vohemar et Andapa. Située dans la partie du nord-est de l'île, elle appartient à la province de Diego-Suarez. Sa capitale est Sambava", "S 14°16′12″ / E 50°10′12″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Madagascar"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/219925283", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/6233151304668549460009", "source": "VIAF"}], "authorized_access_point": "Sava (Madagascar, région)"} 1 +2024-09-11 09:11:20.687191 2024-09-11 09:11:20.687195 ebac3337-5298-421a-9549-4cbee9673d30 {"md5": "2135f8ceb789ea1cdc1992187fe94e61", "pid": "22395294X", "note": [{"label": ["GeoNames (2018-02-01)"], "noteType": "dataSource"}, {"label": ["Analamanga est l'une des vingt-deux régions de Madagascar. Elle est située dans la Province d'Antananarivo, dans le centre de l'île.", "S 18°56′24″ / E 47°31′12″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Madagascar"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/22395294X", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/905152080581907230007", "source": "VIAF"}], "authorized_access_point": "Analamanga (Madagascar ; région administrative)"} 1 +2024-09-11 09:11:20.739145 2024-09-11 09:11:20.739147 cd19d1fa-ee0a-4553-9064-e8f0dbb7fbf7 {"md5": "2dcb4457563f533f3326920e75e8d7dc", "pid": "223976369", "note": [{"label": ["GeoNames (2018-02-01)"], "noteType": "dataSource"}, {"label": ["Diana (de Diego I & II - Ambilobe - Nosy Be - Ambanja qui sont les districts constituant la région) est l'une des vingt-deux régions de Madagascar, située dans la province de Diego-Suarez, dans le nord de l'île.", "S 13°30′00″ / E 49°00′00″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Madagascar"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/223976369", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/345149196398874790984", "source": "VIAF"}], "variant_access_point": ["Région Diana"], "authorized_access_point": "Diana (Madagascar ; région administrative)"} 1 +2024-09-11 09:11:20.792978 2024-09-11 09:11:20.792982 d28dc6f2-82e5-4067-bfa9-1bcc795a9579 {"md5": "18f00f747b6d97c09daf21308fa3eb33", "pid": "223979171", "note": [{"label": ["GeoNames (2018-02-02)"], "noteType": "dataSource"}, {"label": ["L'Atsinanana (Est) est une des vingt-deux régions de Madagascar. Elle est située dans la province de Tamatave, dans l'Est de l'île", "S 19°00′00″ / E 48°54′00″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Madagascar"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/223979171", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/6215152080604607230004", "source": "VIAF"}], "authorized_access_point": "Atsinanana (Madagascar ; région administrative)"} 1 +2024-09-11 09:11:32.084797 2024-09-11 09:11:32.084801 660a8a37-2a54-4938-ac5f-df338e0775fa {"md5": "7361ba1005a219feba5ad19d7d037a79", "pid": "279148232", "note": [{"label": ["http://www.geonames.org/, 2024-07-02"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Scott"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279148232", "source": "IDREF"}], "authorized_access_point": "Illmo (Mo.)"} 1 +2024-09-11 09:11:20.858471 2024-09-11 09:11:20.858476 a96be497-2fda-4014-a70e-0bc82c8e96a5 {"md5": "ee15ffcb77b92f52372e0000fb490968", "pid": "224235893", "note": [{"label": ["GeoNames (2018-02-13)"], "noteType": "dataSource"}, {"label": ["Sofia est l'une des vingt-deux régions de Madagascar, nommée d'après le nom d'un fleuve. Elle est située dans la province de Majunga (ou Mahajanga) et son chef-lieu est Antsohihy", "S 14°52′47″ / E 47°59′15″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Madagascar"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/224235893", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/3351152080592507230005", "source": "VIAF"}], "variant_access_point": ["Sofia (région)"], "authorized_access_point": "Sofia (Madagascar ; région administrative)"} 1 +2024-09-11 09:11:20.929795 2024-09-11 09:11:20.929803 200bad5e-6926-4d83-9f14-fae9611ce3ea {"md5": "89b02d5acdde7697962b3dac3e44564a", "pid": "225651289", "note": [{"label": ["GeoNames (2018-03-13)", "wikipedia.org, 2018-04-04"], "noteType": "dataSource"}, {"label": ["Moundou est la seconde ville du Tchad et la capitale économique du sud tchadien. Chef-lieu de la région du Logone Occidental et du département du Lac Wey"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/225651289", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/126787513", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Moundou", "source": "WIKIPEDIA"}], "variant_access_point": ["Mundu"], "authorized_access_point": "Moundou (Tchad )"} 1 +2024-09-11 09:11:20.995755 2024-09-11 09:11:20.995759 483d7e05-06c0-4583-be0a-9f7ce381f1d4 {"md5": "9e4c7cc9b80239e6ca31c0a74f018348", "pid": "226539962", "note": [{"label": ["http://www.geonames.org/, 2018-05-02"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/226539962", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/148991886", "source": "VIAF"}], "variant_access_point": ["Ft Branch"], "authorized_access_point": "Fort Branch (Ind.)"} 1 +2024-09-11 09:11:21.053674 2024-09-11 09:11:21.053676 d5396ad1-3383-456b-b755-3a64065a89ea {"md5": "dc5a857e968c2968493d7b112373f014", "pid": "226556425", "note": [{"label": ["https://fr.wikipedia.org/wiki/Kansas_(rivière)/, 2024-07-10"], "noteType": "dataSource"}, {"label": ["La rivière Kansas (connue localement sous le nom de Kaw), ou Kansas River, est une rivière du nord-est de l'État du Kansas, aux États-Unis"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/226556425", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/69152864114304821008", "source": "VIAF"}], "authorized_access_point": "Kansas River (Kan. ; cours d'eau)"} 1 +2024-09-11 09:11:21.110431 2024-09-11 09:11:21.110434 4dd06cc8-bffc-45ba-96d4-7a5db89d02b6 {"md5": "7588666a0a4dff7b0c199bf47b71331f", "pid": "226664414", "note": [{"label": ["http://www.geonames.org/, 2018-05-03"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Bourbon"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/226664414", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/99152864133904821583", "source": "VIAF"}], "authorized_access_point": "Garland (Kan.)"} 1 +2024-09-11 09:11:21.160179 2024-09-11 09:11:21.160183 4410582e-5eb0-45e2-9a62-f2a986f56205 {"md5": "81c9a6f1894cd151d697feefe9f0f806", "pid": "226835391", "note": [{"label": ["http://www.geonames.org/, 2018-05-09"], "noteType": "dataSource"}, {"label": ["La Neosho est un cours d'eau et affluent de la rivière Arkansas dans les États américains du Kansas et de l'Oklahoma"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/226835391", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/126152864098304820720", "source": "VIAF"}], "authorized_access_point": "Neosho River (États-Unis. ; cours d'eau)"} 1 +2024-09-11 09:11:21.221857 2024-09-11 09:11:21.221859 c314edbb-bdb0-4730-b191-4f42a9c251db {"md5": "6921c6337477800d5d0f95f0c90b7435", "pid": "226964558", "note": [{"label": ["https://en.wikipedia.org/wiki/Cimarron_River_(Arkansas_River_tributary)/, 2018-05-16"], "noteType": "dataSource"}, {"label": ["La rivière Cimarron est un affluent de l'Arkansas dans le sud-ouest des États-Unis, donc un sous-affluent du Mississippi. Long de 1 123 km, elle coule à travers quatre États : le Nouveau-Mexique, l'Oklahoma, le Colorado, et le Kansas"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/226964558", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/145152864188104822007", "source": "VIAF"}], "authorized_access_point": "Cimarron River (États-Unis ; cours d'eau)"} 1 +2024-09-11 09:11:21.282586 2024-09-11 09:11:21.282588 add04c6a-b6c9-4dfe-ae92-cbd0d5400ac4 {"md5": "7bf6b276b460a5e34eee9faedcb45ed2", "pid": "230294707", "note": [{"label": ["Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/230294707", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/89153953219005560177", "source": "VIAF"}], "authorized_access_point": "Sérilhac (Corrèze)"} 1 +2024-09-11 09:11:21.338285 2024-09-11 09:11:21.33829 3c1a3d9c-ea58-48cf-976a-96a61fa0e3fb {"md5": "9e6e6b222917238538c582418a922279", "pid": "231217161", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/231217161", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/1371151172692439210005", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)040011380", "source": "GND"}], "authorized_access_point": "Alexandrie (Égypte)"} 1 +2024-09-11 09:11:21.401393 2024-09-11 09:11:21.401397 6ceaf4b7-fc51-4f05-8b99-caaef634b45c {"md5": "db2e2632b6f28fc3253c7043f093488f", "pid": "231498829", "note": [{"label": ["Pommiers-en-Forez / Denys Buenner, 1947"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/231498829", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/278471593", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Pommiers-en-Forez", "source": "WIKIPEDIA"}], "variant_access_point": ["Pommiers-en-Forez"], "authorized_access_point": "Pommiers (Loire)"} 1 +2024-09-11 09:11:21.454772 2024-09-11 09:11:21.454774 9cf13b3f-bca5-439c-a7f5-2350d3c5b44c {"md5": "6979b2800663a17141095429b53f5cd4", "pid": "233055045", "note": [{"label": ["Chalain-le-Comtal : un village de la Plaine, il y a 100 ans / d'après les notes de l'abbé Noël Valendru ; présentation et notes: Marie Grange, Joseph Barou, 1995"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/233055045", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/1106154983527467860006", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Chalain-le-Comtal", "source": "WIKIPEDIA"}], "authorized_access_point": "Chalain-le-Comtal (Loire)"} 1 +2024-09-11 09:11:21.519472 2024-09-11 09:11:21.519476 9b463627-70fb-4218-861b-f198d9923a5f {"md5": "42188caafc83fe04bcc91139be6ba374", "pid": "237826763", "note": [{"label": ["Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/237826763", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb121238030", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/243846589", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Pont-de-Veyle", "source": "WIKIPEDIA"}], "authorized_access_point": "Pont-de-Veyle (Ain)"} 1 +2024-09-11 09:11:21.597553 2024-09-11 09:11:21.597556 6f3f6ea8-e04d-4740-a2dd-0b85f7bab274 {"md5": "d5a13cc14dda64a24d3f221a4a3e14fb", "pid": "242868851", "note": [{"label": ["Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/242868851", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/4735159248350804870000", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Saint-Jean-de-Sixt", "source": "WIKIPEDIA"}], "authorized_access_point": "Saint-Jean-de-Sixt (Haute-Savoie)"} 1 +2024-09-11 09:11:21.665536 2024-09-11 09:11:21.66554 53ecf349-74ca-49a2-a98f-45452de3a43e {"md5": "f52ccb53c2ba9a72034a05eb28ebf316", "pid": "250173565", "note": [{"label": ["https://fr.wikipedia.org/wiki/Zhejiang, 2020-11-05"], "noteType": "dataSource"}, {"label": ["Province sud de Shanghai (Chine)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/250173565", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15040156k", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/239458535", "source": "VIAF"}], "variant_access_point": ["Tché-Kiang", "浙", "浙江", "Tchékiang"], "authorized_access_point": "Zhejiang"} 1 +2024-09-11 09:11:21.728104 2024-09-11 09:11:21.728108 16548455-2101-4fac-9578-4266a203a9bd {"md5": "e85ec560535fb2bd996609c9117bb05d", "pid": "250748533", "note": [{"label": ["Karton : Architektur im Alltag der Zentralschweiz / Redaktion Gerold Kunz, 2004-"], "noteType": "dataSource"}, {"label": ["Correspond aux cantons de Lucerne, Nidwald, Obwald, Schwytz, Uri et Zoug"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/250748533", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/131160789752202681728", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)040794903", "source": "GND"}], "variant_access_point": ["Zentralschweiz", "Suisse centrale"], "authorized_access_point": "Suisse (centre)"} 1 +2024-09-11 09:11:21.803213 2024-09-11 09:11:21.803216 99203a78-af04-49ae-9836-c49002229e2e {"md5": "92e996d88ef9a4638e0418579c07d5e9", "pid": "253709520", "note": [{"label": ["Procès de sorcellerie dans la vallée de Conches (1466-1467) et chasses aux sorciers et sorcières en Valais au XVe siècle = Hexenprozesse im Goms (166-1467) und Hexenverfolgungen im Wallis im 15 Jahrhundert : Kurzfassung / Chantal Amman-Doubliez ; übersetzt von Curdin Ebneter ; mit einer Übersetzung der lateinischen Hexenprozessakten von Biel VS (1466-167) von Hans-Robert Ammann und Josef Sarbach, 2020.", "https://fr.wikipedia.org/wiki/Vall%C3%A9e_de_Conches, 2021-02-22"], "noteType": "dataSource"}, {"label": ["La vallée de Conches (Goms ou Gommertal en allemand) est une vallée suisse située à cheval sur le demi-district de Rarogne oriental et le district de Conches en Valais."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/253709520", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/82161511999070560407", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)04021592X", "source": "GND"}], "variant_access_point": ["Goms, Vallée de (Valais, Suisse)", "Gommertal (Valais, Suisse)"], "authorized_access_point": "Conches, Vallée de (Valais, Suisse)"} 1 +2024-09-11 09:11:21.859144 2024-09-11 09:11:21.859148 fd8c9118-2947-4106-814a-0c9305629fa1 {"md5": "90205fabfca3647cb3924c820fc66b94", "pid": "253865727", "note": [{"label": ["Dachziegel der freiburgischen Ziegeleien Düdingen, Le Mouret und Corbières : chemische, geologische und historische Aspekte / Marino Maggetti und Giulio Galetti. In: Bulletin de la Société fribourgeoise des sciences naturelles = Bulletin der Naturforschenden Gesellschaft Freiburg, 2020", "Confédération suisse, Office fédéral de la statistiques, page 'Noms de communes dont la traduction est usuelle', https://www.bfs.admin.ch/bfs/fr/home/bases-statistiques/repertoire-officiel-communes-suisse/noms-communes-traduction-usuelle.html, 2024-03-06", "https://hls-dhs-dss.ch/fr/articles/046549, 2021-03-01"], "noteType": "dataSource"}, {"label": ["Commune du canton de Fribourg (Suisse). Nom allemand : Düdingen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/253865727", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/141295369", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Guin", "source": "WIKIPEDIA"}], "authorized_access_point": "Guin (Fribourg, Suisse)"} 1 +2024-09-11 09:11:21.913773 2024-09-11 09:11:21.913777 c582ade6-a172-4d2d-a4c5-1b34c9c19845 {"md5": "dce663d4db743013ab76db5b5fb9749c", "pid": "254939422", "note": [{"label": ["Dict. communes, 1984"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/254939422", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12125106k", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/131548127", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/La_Balme-de-Sillingy", "source": "WIKIPEDIA"}], "variant_access_point": ["Balme-de-Sillingy, La (Haute-Savoie)"], "authorized_access_point": "La Balme-de-Sillingy (Haute-Savoie)"} 1 +2024-09-11 09:11:21.979083 2024-09-11 09:11:21.979088 e13f8792-9662-48c9-881b-08eab796b060 {"md5": "e3ba472e0cc171bb058cb5e020466070", "pid": "255076592", "note": [{"label": ["Dictionnaire historique de la Suisse (DHS) - https://hls-dhs-dss.ch/fr/articles/002887/2014-06-24/, 2021-04-29", "Compesières, Landecy, Charrot, Bardonnex, Croix-de-Rozon : histoire et vécu d'une commune : Commune de Bardonnex / Eric Golay, Dominique Zumkeller ; Commune de Bardonnex, 2007"], "noteType": "dataSource"}, {"label": ["Commune du canton de Genève issue de la division, en 1851, de la commune de Compesières en deux entités, Bardonnex et Plan-les-Ouates"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/255076592", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/234694698", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Bardonnex", "source": "WIKIPEDIA"}], "authorized_access_point": "Bardonnex (Suisse)"} 1 +2024-09-11 09:11:22.049401 2024-09-11 09:11:22.04941 f826d283-59aa-4d51-b8a2-e6e2c2c8b56d {"md5": "ac074ad978819691b70f187cf88720e5", "pid": "25527999X", "note": [{"label": ["Grange-Canal et Jean Jacques Rousseau / Louis Thomas, 1901", "Commune de Chêne-Bougeries - https://chene-bougeries.ch/, 2021-05-11", "DHS - https://hls-dhs-dss.ch/fr/articles/002894/2005-07-14/, 2021-05-10"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25527999X", "source": "IDREF"}], "authorized_access_point": "Chêne-Bougeries (Suisse) - Grange-Canal"} 1 +2024-09-11 09:11:22.108228 2024-09-11 09:11:22.108232 f48f30a2-f137-44f4-8a05-c7871b3d86d9 {"md5": "7d1dd40b5f7b5a024262fe770006081d", "pid": "256800375", "note": [{"label": ["Les Brenets et sa vieille Eglise : \\"500 ans d'une histoire commune\\" / [réd., conception David Favre, Pierre Deléglise], 2011", "http://viaf.org/processed/SZ%7C959239103, 2021-08-09", "https://hls-dhs-dss.ch/fr/articles/002840/2004-10-14, 2021-08-09", "https://www.lelocle.ch/accueil-les-brenets, 2021-08-09"], "noteType": "dataSource"}, {"label": ["Village de la commune du Locle dans le canton de Neuchâtel. Sur les bord du Doubs. Fusion de l'ancienne commune avec celle du Locle en janvier 2021."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/256800375", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/133675509", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)959239103", "source": "GND"}], "authorized_access_point": "Les Brenets (Neuchâtel, Suisse)"} 1 +2024-09-11 09:11:22.169671 2024-09-11 09:11:22.169675 ad2c9b3f-9686-4c84-8e2f-d4955ac99fbb {"md5": "ab75d129c699dab9596d3f6e5398ab49", "pid": "257056378", "note": [{"label": ["Dict. historique de la Suisse - http://www.hls-dhs-dss.ch (2020-07-03)", "SCD de Poitiers, Fonds ancien, Manuscrits isolés, MS 86, Herbier peint à la gouache par Marie Corneille Saint-Marc, Calames http://www.calames.abes.fr/pub/ms/Calames-202171516757929351"], "noteType": "dataSource"}, {"label": ["Ville du canton du Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257056378", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17879678q", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)94231199X", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/9159697710603312385", "source": "VIAF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "authorized_access_point": "Vernayaz (Valais, Suisse)"} 1 +2024-09-11 09:11:22.230164 2024-09-11 09:11:22.230168 8120b3db-1fe1-4e67-af7f-9c80d397b37d {"md5": "55d5e520b6ccba3a52ba82762848059a", "pid": "257143025", "note": [{"label": ["Parc national suisse, sauvage et fascinant / Hans Lozza, 2021", "https://www.nationalpark.ch/fr/about/a-propos-de-nous/particularites/, 2021-09-07"], "noteType": "dataSource"}, {"label": ["Parc national de 170 km2 situé dans le canton des Grisons (Engadine et val Müstair) ; fondé en 1914 ; unique parc national de Suisse"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257143025", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/148583304", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)040539164", "source": "GND"}], "variant_access_point": ["Parc natiunal svizzer (Suisse)", "Parco nazionale svizzero (Suisse)", "Schweizerische Nationalpark (Suisse)"], "authorized_access_point": "Parc national suisse (Suisse)"} 1 +2024-09-11 09:11:22.305176 2024-09-11 09:11:22.305183 668f455d-bbb6-44d7-ac12-51fe802dcb70 {"md5": "eaba275a8ebe06e86cd5763c969ff73b", "pid": "257162895", "note": [{"label": ["Môtiers 2021 : art en plein air, 2021"], "noteType": "dataSource"}, {"label": ["Localité suisse de la commune de Val-de-Travers. - Ancienne commune suisse du canton de Neuchâtel, située dans la région Val-de-Travers, qui a fusionné le 1er janvier 2009"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257162895", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/109163408932100091569", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)941396754", "source": "GND"}], "authorized_access_point": "Môtiers (Neuchâtel, Suisse)"} 1 +2024-09-11 09:11:22.378853 2024-09-11 09:11:22.37886 f1d82feb-19ab-436f-aac0-43a62838b7e0 {"md5": "82b52a991ecb5602a2238768ada2be57", "pid": "257475117", "note": [{"label": ["Stage de biogéographie alpine, à Champex, du 15 au 19 juillet 2000 / Beth Zaniewski, Cyrille Faure, [2000]"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/257475117", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/179163408660000090306", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)960746404", "source": "GND"}], "variant_access_point": ["Champex-Lac (Valais, Suisse)"], "authorized_access_point": "Champex (Valais, Suisse)"} 1 +2024-09-11 09:11:23.016775 2024-09-11 09:11:23.016778 3cdab8bf-3d98-4faf-bfe0-0390640f29ca {"md5": "7ab33eca31f1736c6447842791142a4d", "pid": "26144722X", "note": [{"label": ["L'or de Mund / Rolf Jeitziner, Barbara Seiler, 2021", "https://fr.wikipedia.org/wiki/Mund_(Valais), 2022-03-31"], "noteType": "dataSource"}, {"label": ["Village situé dans le Haut-Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26144722X", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/340164960096024022192", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)941147797", "source": "GND"}], "authorized_access_point": "Mund (Valais, Suisse)"} 1 +2024-09-11 09:11:22.455144 2024-09-11 09:11:22.455149 dc69a92a-701f-4003-b77c-15c2de2c5144 {"md5": "c00f9b87699a7b2f2a2bde3adb8bb8e4", "pid": "258360976", "note": [{"label": ["La question sociale à Fully / perception, définition et analyse de l'action sociale fuilléraine / Dominique Rast, 1995", "DHS - https://hls-dhs-dss.ch/fr/articles/002729/2007-06-14/, 2021-11-09"], "noteType": "dataSource"}, {"label": ["Commune du canton du Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/258360976", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/1377159474070127660711", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)942463633", "source": "GND"}], "authorized_access_point": "Fully (Valais, Suisse)"} 1 +2024-09-11 09:11:22.521163 2024-09-11 09:11:22.521171 f15c0a4f-2d54-48a3-b22c-4ab16ce38ab4 {"md5": "5eef1e9c914c82ba5d0a269b1dbfe737", "pid": "25887421X", "note": [{"label": ["https://fr.wikipedia.org/wiki/District_des_Franches-Montagnes"], "noteType": "dataSource"}, {"label": ["Suisse, canton de Jura"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/25887421X", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)04259634", "source": "GND"}], "authorized_access_point": "Franches-Montagnes (Suisse)"} 1 +2024-09-11 09:11:22.588945 2024-09-11 09:11:22.588948 3593ba89-a0ff-42fd-a970-aa87c7fac9f8 {"md5": "f4d11bd56d821e672bc325201100beb0", "pid": "260281395", "note": [{"label": ["Un patrimoine religieux (d)étonnant : les \\"mortiers\\" de la paroisse de Vuisternens-devant-Romont / par Aloys Lauper. In : Annales fribourgeoises, vol. 83 (2021)", "Dictionnaire historique de la Suisse, https://hls-dhs-dss.ch/fr/articles/000890/2016-09-27, 2022-02-10"], "noteType": "dataSource"}, {"label": ["Commune du canton de Fribourg (Suisse), ayant fusionné en 2003 avec Estévenens, La Joux, La Magne, Les Ecasseys, Lieffrens, Sommentier et Villariaz, ainsi qu'avec La Neirigue en 2004"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260281395", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/305971955", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Vuisternens-devant-Romont", "source": "WIKIPEDIA"}], "authorized_access_point": "Vuisternens-devant-Romont (Fribourg, Suisse)"} 1 +2024-09-11 09:11:22.639795 2024-09-11 09:11:22.639798 9c6273e4-e68a-4582-8646-64dc242d1330 {"md5": "3515e5b340ead9cd6d986264890b64c9", "pid": "260555088", "note": [{"label": ["Savièse / Delphine Debons ; avec des contributions de Emmanuel Reynard [et 5 autres], 2021", "https://www.saviese.ch/fr/villages-hameaux-1644.html, 2022-02-23"], "noteType": "dataSource"}, {"label": ["Commune située dans le canton du Valais ; composée de 6 villages et de nombreux hameaux."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260555088", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/1325159233919803370377", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)041184556", "source": "GND"}], "authorized_access_point": "Savièse (Valais, Suisse)"} 1 +2024-09-11 09:11:22.701644 2024-09-11 09:11:22.701647 764929e4-72b5-47cb-bf87-ce777def9411 {"md5": "4a0c6ce8b28499d00f33e3ff71391823", "pid": "260905585", "note": [{"label": ["Skieuses et skieurs près de Chasseral / Amez-Droz, Arthur, 1883-1962 (créateur), 14 janvier 1917", "Visualisation sur SITN- Géoportail du système d'information du territoire neuchâtelois https://sitn.ne.ch, 2022-03-10"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260905585", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/167164959833424021618", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)040903435", "source": "GND"}], "authorized_access_point": "Chasseral (Berne, Suisse ; mont)"} 1 +2024-09-11 09:11:22.755382 2024-09-11 09:11:22.755389 fb5437c4-11d9-48f0-87fd-31fb657d2727 {"md5": "e1e6ca6b5cbb5e7f08632744bf00341b", "pid": "260966401", "note": [{"label": ["L'intérieur du temple de La Sagne après rénovation / Galley, Christian,, photographe (créateur), 2001", "Visualisation sur SITN- Géoportail du système d'information du territoire neuchâtelois https://sitn.ne.ch, 2022-03-14"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260966401", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/93164959497624020651", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)964991500", "source": "GND"}], "relation_pid": {"type": "redirect_from", "value": "261065416"}, "authorized_access_point": "La Sagne (Neuchâtel, Suisse)"} 1 +2024-09-11 09:11:22.825823 2024-09-11 09:11:22.825831 903749a7-1617-40df-bb73-39d6011bcb20 {"md5": "1a67f158ecef58f7d6a62c6f5a88421b", "pid": "260996440", "note": [{"label": ["Georges Schneider lors de l'inauguration de son \\"Imier labourant\\" à Saint-Imier / Buhler, Jean, 1919-2017 (créateur), 1959"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/260996440", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/48144647641235584390", "source": "VIAF"}, {"type": "bf:Nbn", "value": " (DE-101)949296880", "source": "GND"}], "authorized_access_point": "Saint-Imier (Berne, Suisse)"} 1 +2024-09-11 09:11:22.885934 2024-09-11 09:11:22.885938 9f497149-1e35-4afe-8e5b-020432bae011 {"md5": "edcef52c2207c2ed8c03e812344aee65", "pid": "261121162", "note": [{"label": ["Saint-Léonard de jadis et de naguère / Barthélémy Gillioz, 2021", "https://www.st-leonard.ch/index.php/en-bref, 2022-03-22"], "noteType": "dataSource"}, {"label": ["Commune située dans le canton du Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261121162", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/102164959931224022033", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)954696867", "source": "GND"}], "authorized_access_point": "Saint-Léonard (Valais, Suisse)"} 1 +2024-09-11 09:11:32.133657 2024-09-11 09:11:32.13366 63264a83-8150-47d6-bd69-ead9b8839b71 {"md5": "d83c9d67b5d387a34f38e887af638ee6", "pid": "279148658", "note": [{"label": ["http://www.geonames.org/, 2024-07-02"], "noteType": "dataSource"}, {"label": ["Situé dans le comté d'Alexander"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279148658", "source": "IDREF"}], "authorized_access_point": "Thebes (Ill.)"} 1 +2024-09-11 09:11:23.089335 2024-09-11 09:11:23.089343 4d77c80f-eddf-4c5e-9419-84c46a0947bf {"md5": "cac131a4f2e1324ede29e8cd20e5a9a6", "pid": "261527452", "note": [{"label": ["Hameau du Verger et Combe des Enfers à l'extrémité est du Locle / Amez-Droz, Arthur, 1883-1962 (créateur), Entre 1916 et 1919", "Visualisation sur SITN- Géoportail du système d'information du territoire neuchâtelois https://sitn.ne.ch, 2022-04-01"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261527452", "source": "IDREF"}], "authorized_access_point": "Combe des Enfers (Neuchâtel, Suisse ; combe)"} 1 +2024-09-11 09:11:23.16052 2024-09-11 09:11:23.160527 e39b7036-916a-4f7c-b95a-f063ebc4b86a {"md5": "3d599565e3f7bab8f3fd8291e9445a25", "pid": "261762311", "note": [{"label": ["Gazetteer of the Montgomery District (Sahiwal) 1883-84, 2012", "Internet, https://authorities.loc.gov, 2022-04-12", "Internet, https://wikipedia.org, 2022-04-12", "Marine Defosse. BULAC. TEL. 01.81.69.18.81 Mèl. marine.defossebulac.fr"], "noteType": "dataSource"}, {"label": ["Le district de Sahiwal est une subdivision administrative de la province du Pendjab au Pakistan"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261762311", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/839165264609810191507", "source": "VIAF"}], "variant_access_point": ["ساھیوال (Pakistan ; district)", "Sahīvāl (Pakistan ; district)", "Montgomery (Pakistan ; district)"], "authorized_access_point": "Sahiwal (Pakistan ; district)"} 1 +2024-09-11 09:11:23.23085 2024-09-11 09:11:23.230853 853db577-a717-43a8-a8cf-10073ccf458b {"md5": "8f2c519bca06ea9da17abfb503dc01f5", "pid": "261933841", "note": [{"label": ["Bourg-Saint-Pierre : souvenirs d'autrefois et images d'aujourd'hui / Louis Moret-Rausis, 1996", "https://www.bourg-saint-pierre.ch/, 2022-04-21"], "noteType": "dataSource"}, {"label": ["Commune du canton du Valais et localité la plus élevée du district de l’Entremont."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/261933841", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/158595722", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)958192014", "source": "GND"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Bourg-Saint-Pierre", "source": "WIKIPEDIA"}], "variant_access_point": ["Sankt Petersburg (Valais, Suisse)"], "authorized_access_point": "Bourg-Saint-Pierre (Valais, Suisse)"} 1 +2024-09-11 09:11:23.319399 2024-09-11 09:11:23.319403 d3b62bc1-7ded-413b-bd31-a0864d6baa09 {"md5": "7288b0f72ec2de84e1557339d97ab512", "pid": "262216744", "note": [{"label": ["Wünnewil-Flamatt - zwei Dörfer, eine Gemeinde : ein Porträt, 2014", "Dictionnaire historique de la Suisse, https://hls-dhs-dss.ch/fr/articles/001040/2013-11-26, 2022-05-05"], "noteType": "dataSource"}, {"label": ["Commune du canton de Fribourg (Suisse), district de la Singine, comprenant les villages de Wünnewil et Flamatt, ainsi que de nombreux hameaux"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262216744", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/93166001566975020277", "source": "VIAF"}], "authorized_access_point": "Wünnewil-Flamatt (Fribourg, Suisse)"} 1 +2024-09-11 09:11:23.36852 2024-09-11 09:11:23.368529 6578d766-ca1e-44e5-b316-e31e901dd7ae {"md5": "d7cd45f9c996ca566ba57041fc5f2a18", "pid": "262555697", "note": [{"label": ["Vue panoramique de Fleurier et du Val-de-Travers / Chiffelle, Max-F., 19..-.... (créateur), 1949", "Visualisation sur SITN- Géoportail du système d'information du territoire neuchâtelois https://sitn.ne.ch, 2022-05-23"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262555697", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)941214095", "source": "GND"}], "authorized_access_point": "Fleurier (Neuchâtel, Suisse)"} 1 +2024-09-11 09:11:23.481076 2024-09-11 09:11:23.481079 9b6b1abb-be45-4796-b733-cd341d699f19 {"md5": "2e43a6cffac76cb2d180571666279a38", "pid": "262557215", "note": [{"label": ["Temple et maison rue du Temple 1 à Fleurier / Charrère, Jean-Jacques,, 1951 (créateur), 1984", "Visualisation sur SITN- Géoportail du système d'information du territoire neuchâtelois https://sitn.ne.ch, 2022-05-23"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262557215", "source": "IDREF"}], "authorized_access_point": "Fleurier (Neuchâtel, Suisse) - Rue du Temple"} 1 +2024-09-11 09:11:23.528762 2024-09-11 09:11:23.528765 684948ab-3528-4947-baf9-b49e4146d47e {"md5": "b6f0667f809c430031b6caae008a3781", "pid": "262767619", "note": [{"label": ["https://hls-dhs-dss.ch/fr/articles/002848/2017-12-18/"], "noteType": "dataSource"}, {"label": ["Commune du canton de Neuchâtel (Suisse)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262767619", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/64165747035353931293", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)954064593", "source": "GND"}], "authorized_access_point": "Cressier (Neuchâtel, Suisse)"} 1 +2024-09-11 09:11:23.575067 2024-09-11 09:11:23.575071 3925b39c-3bce-4634-9e40-9a6917c27ec8 {"md5": "fb8c0407ab0a9f35376bc990118ee84d", "pid": "262834162", "note": [{"label": ["Le p'tit Chapelois, no 1(déc. 1998)", "Dictionnaire historique de la Suisse, https://hls-dhs-dss.ch/fr/articles/000850/2003-11-11, 2022-06-08"], "noteType": "dataSource"}, {"label": ["Commune du canton de Fribourg (Suisse), district de la Glâne. À ne pas confondre avec l'ancienne commune fribourgeoise homonyme, dans le district de la Broye, partie de la commune de Cheiry de 2005 à 2020, puis de celle de Surpierre dès 2021"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/262834162", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/6626155286653687180005", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Chapelle_(Glâne)", "source": "WIKIPEDIA"}], "authorized_access_point": "Chapelle (Glâne, Suisse)"} 1 +2024-09-11 09:11:23.620879 2024-09-11 09:11:23.620881 4d59e843-b022-4f76-ba20-3c8620dcdc29 {"md5": "436f146b5d2e4cf5fe6f6edc831d5525", "pid": "26298606X", "note": [{"label": ["https://fr.wikipedia.org/wiki/Temple_de_M%C3%B4tiers, 2022-06-15", "Le temple de Môtiers-Boveresse : historique édité à l'occasion de la restauration / Courvoisier, Jean, 1922-2010 (créateur);Bovet, Jacques,, 1921 (contributeur - collaborateur), 1961"], "noteType": "dataSource"}, {"label": ["Instaurée à Neuchâtel en 1530, la Réforme va conduire à la sécularisation du prieuré en 1537 et à la transformation de l’église Notre-Dame en temple protestant."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26298606X", "source": "IDREF"}], "variant_access_point": ["Môtiers (Neuchâtel, Suisse) - Temple de Môtiers", "Notre-Dame (Môtiers, Neuchâtel, Suisse)"], "authorized_access_point": "Môtiers (Neuchâtel, Suisse) - Temple"} 1 +2024-09-11 09:11:23.668377 2024-09-11 09:11:23.66838 57190b84-0344-49ff-a1ed-d6f7daba69a6 {"md5": "e1d2d6bd4e9f3ed122dfce3feea8c484", "pid": "263043231", "note": [{"label": ["Vignes et village de Corcelles-Cormondrèche / Perret, Henri,, pharmacien (créateur), Entre 1890 et 1900", "Canton de Neuchâtel, Suisse. Visualisation sur SITN- Géoportail du système d'information du territoire neuchâtelois https://sitn.ne.ch, 2022-06-18"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263043231", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/766170011248884810003", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)973555181", "source": "GND"}], "authorized_access_point": "Corcelles-Cormondrèche (Neuchâtel, Suisse)"} 1 +2024-09-11 09:11:23.714709 2024-09-11 09:11:23.714714 26037639-010e-477b-aa9f-13c2c9dc33a8 {"md5": "a0d13ec73772f1a816f2fd6c634276c4", "pid": "26304324X", "note": [{"label": ["Viaduc ferroviaire enjambant l'Areuse à Boudry / Amez-Droz, Arthur, 1883-1962 (créateur), Mai 1916", "Visualisation sur SITN- Géoportail du système d'information du territoire neuchâtelois https://sitn.ne.ch, 2022-06-18"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26304324X", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/64165746780053930276", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)945475136", "source": "GND"}], "authorized_access_point": "Boudry (Neuchâtel, Suisse)"} 1 +2024-09-11 09:11:23.769032 2024-09-11 09:11:23.769037 32279c33-de33-4c91-bcc5-f8b2272332d4 {"md5": "d16529a4e35f0833fa4822859063afd2", "pid": "26304338X", "note": [{"label": ["https://hls-dhs-dss.ch/fr/articles/007624/2014-03-05, 2022-06-18", "Déclaration des droits et des revenus de la Seigneurie de Valangin : 1531, janvier / Scheurer, Rémy, 1934-.... (contributeur - collaborateur), 1988"], "noteType": "dataSource"}, {"label": ["La seigneurie de Valangin est une seigneurie du Canton de Neuchâtel en Suisse. En 1707, elle devient un comté."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26304338X", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/1788159234878203372988", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)987073028", "source": "GND"}], "authorized_access_point": "Valangin (Neuchâtel, Suisse ; seigneurie)"} 1 +2024-09-11 09:11:23.820915 2024-09-11 09:11:23.820918 8b5a5a5f-9cf3-470a-8c99-386247ec215f {"md5": "687a0c2bb6f5e722940692435f68551a", "pid": "263197794", "note": [{"label": ["Schwarzenburg : Schmitten - Flamatt - Rüeggisberg, 2022", "Dictionnaire historique de la Suisse, https://hls-dhs-dss.ch/fr/articles/001040/2013-11-26, 2022-06-27"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263197794", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/130165746668753930715", "source": "VIAF"}], "authorized_access_point": "Wünnewil-Flamatt (Fribourg, Suisse ; région)"} 1 +2024-09-11 09:11:23.874926 2024-09-11 09:11:23.874931 75ec2cd3-c291-41ef-8ab3-f95812edc357 {"md5": "387002244291ab2e51d9c301c86916ca", "pid": "263222985", "note": [{"label": ["Écublens, une commune qui veut garder son âme et sa physionomie / Gérard Bourquenoud. In : Fribourg illustré, no 19 (1988)", "Dictionnaire historique de la Suisse, https://hls-dhs-dss.ch/fr/articles/000856/2006-03-06, 2022-06-28"], "noteType": "dataSource"}, {"label": ["Commune du canton de Fribourg (Suisse), district de la Glâne, comprenant le village-rue d'Écublens, les hameaux d'Eschiens et de Villangeaux"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263222985", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/128440319", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Écublens_(Fribourg)", "source": "WIKIPEDIA"}], "authorized_access_point": "Écublens (Fribourg, Suisse)"} 1 +2024-09-11 09:11:23.938837 2024-09-11 09:11:23.938841 647fbf0f-ad8d-46bf-8627-1b4635e4f2ed {"md5": "29c15ef06de5b72c6bd72d9bf6e6ccaa", "pid": "263256790", "note": [{"label": ["L'histoire de Grône et des communes environnantes / Michel Métral"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263256790", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/237165747430953932437", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)949921300", "source": "GND"}], "authorized_access_point": "Grône (Valais, Suisse)"} 1 +2024-09-11 09:11:24.000289 2024-09-11 09:11:24.000295 fa228136-04ed-4fd1-ace7-17b169deb0fe {"md5": "1f9e6afb85845e8f72771a3def327e1d", "pid": "26369514X", "note": [{"label": ["Arboueytoeu dij'oratoué de Ninde / Germaine du Blanc, 2021", "https://www.nendaz.org/"], "noteType": "dataSource"}, {"label": ["Commune située dans le canton du Valais. Composée d'une quinzaine de villages et de hameaux"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26369514X", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/3234166063377880560006", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)041178068", "source": "GND"}], "authorized_access_point": "Nendaz (Valais, Suisse)"} 1 +2024-09-11 09:11:24.091644 2024-09-11 09:11:24.091648 352954ae-5b71-4d38-8eb4-3e21dfa32247 {"md5": "70ac6dfa7349e0e21bf98560ffd19338", "pid": "263838250", "note": [{"label": ["Les Mayens de Sion : la montagne des Sédunois / sous la dir. de Pierre Dallèves, Gaëtan Cassina, Françoise Vannotti ; photogr. Alain de Kalbermatten, 2009", "https://sd-mayensdesion.ch/, 2022-08-10"], "noteType": "dataSource"}, {"label": ["Lieu de villégiature situé en Valais, à cheval entre les communes de Vex et de Sion."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/263838250", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/236561087", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)958901333", "source": "GND"}], "authorized_access_point": "Les Mayens-de-Sion (Valais, Suisse)"} 1 +2024-09-11 09:11:24.149938 2024-09-11 09:11:24.149942 f2ddeb69-45b1-4ff0-9b23-bc6b543ceb3f {"md5": "d8804220054c7520b8d1d676ae958c7c", "pid": "264073258", "note": [{"label": ["Famille dans un pré, Stalden, 1880-1900", "https://www.valais4you.ch/fr/le-valais-en-quelques-mots/habitat/abecedaire-des-communes/viege/stalden-94, 2022-08-30"], "noteType": "dataSource"}, {"label": ["Commune située dans le district de Viège dans le Haut-Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264073258", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/241211327", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)95731910X", "source": "GND"}], "authorized_access_point": "Stalden (Valais, Suisse)"} 1 +2024-09-11 09:11:24.215831 2024-09-11 09:11:24.215835 07f2f8a0-2f07-4e32-abf1-1d8969396056 {"md5": "2ebbd77a20c55e65ad680074951035ba", "pid": "264087313", "note": [{"label": ["Répétition musicale, Grimisuat / Tibor Varga, 1973", "https://www.grimisuat.ch/commune/situation-acces-3759.html, 2022-08-30"], "noteType": "dataSource"}, {"label": ["Commune située en Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264087313", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/46166596464417590876", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)106040219X", "source": "GND"}], "authorized_access_point": "Grimisuat (Valais, Suisse)"} 1 +2024-09-11 09:11:24.299245 2024-09-11 09:11:24.29925 bfd8b113-6890-4fe9-a930-e58440be2602 {"md5": "d2478a154e9d4f44d5e4dcf8b4f64d9d", "pid": "264145046", "note": [{"label": ["Milvignes et région : La Grande Béroche : plan de région / Brandmark Services (Bichwil) (cartographe), 2019"], "noteType": "dataSource"}, {"label": ["Canton de Neuchâtel, Suisse. Visualisation sur SITN- Géoportail du système d'information du territoire neuchâtelois https://sitn.ne.ch, 2022-09-01"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264145046", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/34153288315232652105", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/La_Grande_Béroche", "source": "WIKIPEDIA"}], "authorized_access_point": "La Grande Béroche (Suisse)"} 1 +2024-09-11 09:11:24.365407 2024-09-11 09:11:24.365415 a7aa4e4f-887d-4bc4-bd45-f7e53da050f8 {"md5": "2f23cebd25504b5ba5198af686ab95bf", "pid": "264271831", "note": [{"label": ["Vue sur les châteaux de Valère et Tourbillon, Sion, 1880-1910", "https://siontourisme.ch/fr/tourbillon, 2022-09-08"], "noteType": "dataSource"}, {"label": ["Château situé sur la colline de Tourbillon, à Sion dans le canton du Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264271831", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)958593663", "source": "GND"}], "variant_access_point": ["Château de Tourbillon (Valais, Sion, Suisse)", "Tourbillon, Château de (Valais, Sion, Suisse)"], "authorized_access_point": "Sion (Valais, Suisse) - Château de Tourbillon"} 1 +2024-09-11 09:11:24.433208 2024-09-11 09:11:24.433211 da3de3c4-d9a9-4157-bb4e-785c839e6dc7 {"md5": "92e54d5303cd7fab20b65171186faf5b", "pid": "264406095", "note": [{"label": ["Passage de la Tête Noire, Vallée du Trient, 1863", "https://fr.wikipedia.org/wiki/Vall%C3%A9e_du_Trient, 2022-09-15"], "noteType": "dataSource"}, {"label": ["Vallée située dans le Bas-Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264406095", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/247827636", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)955884152", "source": "GND"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Vallée_du_Trient", "source": "WIKIPEDIA"}], "variant_access_point": ["Vallée du Trient (Valais, Suisse)"], "authorized_access_point": "Trient, Vallée du (Valais, Suisse)"} 1 +2024-09-11 09:11:24.49372 2024-09-11 09:11:24.493735 900e58f8-96d6-4b5b-9bbc-499c445ef46f {"md5": "0d963e0b5f37fb6e084b3b753d9b87ce", "pid": "264435583", "note": [{"label": ["https://fr.wikipedia.org/wiki/Lac_Kentucky/, 2022-09-16"], "noteType": "dataSource"}, {"label": ["Le lac Kentucky est un important lac de barrage navigable le long de la rivière Tennessee au Kentucky et au Tennessee"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264435583", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/55166597435217592956", "source": "VIAF"}], "authorized_access_point": "Kentucky Lake (Etats-Unis. ; lac)"} 1 +2024-09-11 09:11:24.556264 2024-09-11 09:11:24.556267 c071c3cf-450a-4914-bb94-b9f9ab19d722 {"md5": "7528adc2758dd690a33beddd2b47f4c7", "pid": "264538943", "note": [{"label": ["Histoire du golf de Crans, 1906-2006 / Pierre Ducrey ; avec le collab. de Delphine Rivier et Sylvie Fournier ; [publ. par le Golf-Club Crans-sur-Sierre à l'occasion du 100e anniversaire de l'ouverture du premier parcours de golf à Crans], 2006", "https://hls-dhs-dss.ch/fr/articles/008215/2017-01-12/, 2022-09-22"], "noteType": "dataSource"}, {"label": ["Station touristique du canton du Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264538943", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/5522166600446918000000", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)041974352", "source": "GND"}], "authorized_access_point": "Crans-sur-Sierre (Valais, Suisse)"} 1 +2024-09-11 09:11:24.624095 2024-09-11 09:11:24.624099 6e504a63-101f-4a02-984d-f0c97d9b8353 {"md5": "5662fb73128617e46b3f02df20bd1fe6", "pid": "264540670", "note": [{"label": ["Alpages du Grand Lens : [Là haut sur la montagne: la vie sur nos alpages hier et aujourd'hui] / [par Joseph Lamon] ; [éd. Les amis du patrimoine de Lens], 2015", "https://hls-dhs-dss.ch/fr/articles/002786/2017-03-13/, 2022-09-22 ; https://de.wikipedia.org/wiki/Lens_VS, 2024-07-03"], "noteType": "dataSource"}, {"label": ["Commune du canton du Valais, district de Sierre"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264540670", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/1277159474348527662803", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)042072816", "source": "GND"}], "variant_access_point": ["Leis (Valais, Suisse)"], "authorized_access_point": "Lens (Valais, Suisse)"} 1 +2024-09-11 09:11:24.692389 2024-09-11 09:11:24.692393 7457c4cf-c61c-4b88-954c-bdcfd3f4ed16 {"md5": "8b38e3e70a80039501c57f2b1c382cd6", "pid": "264600886", "note": [{"label": ["Châtellenie de Granges, Lens, Grône, St-Léonard avec Chalais-Chippis / Jean-Emile Tamini, Lucien Quaglia ; choix et présentation Joseph Lamon, 2009", "https://hls-dhs-dss.ch/fr/articles/003303/2007-07-17/, 2022-09-23"], "noteType": "dataSource"}, {"label": ["Localité du canton du Valais. Ancienne commune, réunie à Sierre en 1972"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264600886", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/58166597389417592658", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)042816688", "source": "GND"}], "authorized_access_point": "Granges (Valais, Suisse)"} 1 +2024-09-11 09:11:24.738507 2024-09-11 09:11:24.738511 81c075b4-1714-47cc-bd09-09cd5aac7cec {"md5": "11e76bb19f4aeedecb94fd76a9b2d007", "pid": "264644093", "note": [{"label": ["Agrisculptures / Maximilien Urfer ; essais : Raphaël Brunner et Eric Felley ; direction de publication : Stéphane Fretz, 2019", "https://www.vs.ch/web/communes/-/valais-central, 2022-09-27"], "noteType": "dataSource"}, {"label": ["Région du Canton du Valais comprenant les districts de Conthey, Sion, Sierre et d'Hérens"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264644093", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/2685166600430118000000", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)952816407", "source": "GND"}], "authorized_access_point": "Valais central (Suisse)"} 1 +2024-09-11 09:11:24.797881 2024-09-11 09:11:24.797889 1450b5e7-6383-4314-9f46-b74bdd4d5358 {"md5": "d4b26032294e41b3008f51d0fbd9b688", "pid": "264645081", "note": [{"label": ["Les sobriquets des localités du Valais romand ; Articles historiques sur le Valais ; Histoire du Vieux Chablais / Raphy Rappaz, 1976", "https://www.valais4you.ch/fr/le-valais-en-quelques-mots/habitat, 2022-09-27"], "noteType": "dataSource"}, {"label": ["Partie francophone du canton du Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264645081", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/75166600409218000002", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)993248810", "source": "GND"}, {"type": "bf:Nbn", "value": "Valais romand", "source": "GND"}], "variant_access_point": ["Valais francophone (Suisse)"], "authorized_access_point": "Valais romand (Suisse)"} 1 +2024-09-11 09:11:24.854784 2024-09-11 09:11:24.854788 551e0b30-60c5-4b0c-9f54-61b9f35e8f3d {"md5": "51a312a193223a82c583b52fb192e943", "pid": "264836251", "note": [{"label": ["https://en.wikipedia.org/wiki/Wolf_River_Tennessee/, 2022-10-07"], "noteType": "dataSource"}, {"label": ["La rivière Wolf est un cours d'eau qui coule dans l'État du Tennessee aux États-Unis et qui se jette dans le Mississippi, rive gauche, à la hauteur de la ville de Memphis"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/264836251", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/74166835480035941126", "source": "VIAF"}], "authorized_access_point": "Wolf River ( Tenn. ; cours d'eau)"} 1 +2024-09-11 09:11:24.91342 2024-09-11 09:11:24.913425 4e42ccae-5eb3-4df7-82e8-13b0e86a3995 {"md5": "540db44ff4b9f335642120e9633b9df6", "pid": "265364957", "note": [{"label": ["La réponse des CFF à la suite du retard dans les travaux de la gare de Lausanne : interview de Vincent Ducrot / journaliste Mehmet Gultas. Émission Forum de la Radio télévision suisse, 2022-10-12", "https://fr.wikipedia.org/wiki/Gare_de_Lausanne, 2022-11-02"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/265364957", "source": "IDREF"}], "variant_access_point": ["Vaud, Suisse - Gare de Lausanne"], "authorized_access_point": "Lausanne (Vaud, Suisse) - Gare"} 1 +2024-09-11 09:11:24.980925 2024-09-11 09:11:24.980933 95066c5a-644c-47dc-84ef-d9c57ccc3142 {"md5": "fde1e85595667c9efc5f152547857613", "pid": "26588912X", "note": [{"label": ["Bulletin communal / commune de Villaz, no 1 (juin 2020)", "Dictionnaire historique de la Suisse, https://hls-dhs-dss.ch/fr/articles/059026/2020-04-21, 2022-11-28"], "noteType": "dataSource"}, {"label": ["Commune du canton de Fribourg (Suisse), district de la Glâne, née en 2020 de la fusion de Villaz-Saint-Pierre et La Folliaz (issue en 2005 de la fusion de Lussy et Villarimboud)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26588912X", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/6760159400300219620005", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Villaz_(Fribourg)", "source": "WIKIPEDIA"}], "authorized_access_point": "Villaz (Fribourg, Suisse)"} 1 +2024-09-11 09:11:25.043569 2024-09-11 09:11:25.043574 bb82ecea-7c32-4125-9e90-aff3d037b31f {"md5": "3d17527c15dfe1fa9fc648af725d18db", "pid": "266633668", "note": [{"label": ["Histoire de Thônex, 1989"], "noteType": "dataSource"}, {"label": ["Commune du canton de Genève"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/266633668", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12217770s", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/155967389", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Thônex", "source": "WIKIPEDIA"}], "authorized_access_point": "Thônex (Suisse)"} 1 +2024-09-11 09:11:25.101154 2024-09-11 09:11:25.101158 34129179-07bf-443f-832a-90c314337c0e {"md5": "5a68d70c72eb2a1d40bc8db53dba62e6", "pid": "26663415X", "note": [{"label": ["100 Jahre Wasserversorgung Naters AG, 1920-2020. Naters : Wasserversorgung Naters AG, [2020]"], "noteType": "dataSource"}, {"label": ["Ville située dans le Haut-Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26663415X", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/380167864514022742683", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)041023838", "source": "GND"}], "authorized_access_point": "Naters (Valais, Suisse)"} 1 +2024-09-11 09:11:25.150686 2024-09-11 09:11:25.150689 ca22a624-5daa-4446-abde-ed59cb57d44b {"md5": "fd62f384e34b726dc64827cd2579d441", "pid": "266656595", "note": [{"label": ["Pasodoble, 1213 Petit-Lancy (GE), paru dans AS. Krafft ; 223/27", "DHS - https://hls-dhs-dss.ch/fr/articles/002910/2009-03-10/, 2024-06-17"], "noteType": "dataSource"}, {"label": ["Localité de la commune de Lancy (canton de Genève)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/266656595", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/38167622079903341253", "source": "VIAF"}], "variant_access_point": ["Lancy (Suisse) - Petit-Lancy"], "authorized_access_point": "Petit-Lancy (Suisse)"} 1 +2024-09-11 09:11:25.205021 2024-09-11 09:11:25.205029 948c58d7-9c75-4e79-8bb9-34664ed5239d {"md5": "1da72017a799411053ecd95a50e71bc0", "pid": "26665715X", "note": [{"label": ["Ayent / Argnou / Les Frisses : un plateau où il fait bon vivre / Office cantonal d'archéologie, 2021", "https://www.ayent.ch/commune/situation-villages.html, 2022-12-29"], "noteType": "dataSource"}, {"label": ["Commune située dans le canton du Valais. Elle est composée de 12 villages dont aucun ne porte le nom d'Ayent"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26665715X", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/1375159233947303370245", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)958198667", "source": "GND"}], "authorized_access_point": "Ayent (Valais, Suisse)"} 1 +2024-09-11 09:11:25.314152 2024-09-11 09:11:25.314161 347430e8-bbd9-4241-913f-d23f371086da {"md5": "5ff168c9bb0e0eb7b197a1e14ea9362f", "pid": "267209568", "note": [{"label": ["Salgesch in Bildern / Burgergemeinde Salgesch, 2016", "https://hls-dhs-dss.ch/fr/articles/002723/2012-06-20/, 2023-01-23"], "noteType": "dataSource"}, {"label": ["Commune du Haut-Valais, dans le district de Loèche, en français \\"Salquenen\\"."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/267209568", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/3577169829219637320009", "source": "VIAF"}], "variant_access_point": ["Salquenen (Valais, Suisse)"], "authorized_access_point": "Salgesch (Valais, Suisse)"} 1 +2024-09-11 09:11:25.376167 2024-09-11 09:11:25.376171 6640a51f-f738-4b26-b858-8e7a4ad3fcce {"md5": "2c0cd3c9232dfec2f2cc2a2d8a9222d5", "pid": "26722138X", "note": [{"label": ["Château de Fenin / Adequa (photographe), 1971", "Visualisation sur SITN- Géoportail du système d'information du territoire neuchâtelois https://sitn.ne.ch, 2023-01-24"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26722138X", "source": "IDREF"}], "variant_access_point": ["Fenin (Neuchâtel, Suisse) - Château de Fenin"], "authorized_access_point": "Fenin (Neuchâtel, Suisse) - Château"} 1 +2024-09-11 09:11:25.441149 2024-09-11 09:11:25.441153 540b9c3c-7c44-474f-85d5-4a7385ed3bb8 {"md5": "508a1c9a7e89de4f7340cee5e8dcea5c", "pid": "267421214", "note": [{"label": ["Nax, vers 1910 [photographie]", "https://hls-dhs-dss.ch/fr/articles/002707/2016-12-23, 2023-02-01"], "noteType": "dataSource"}, {"label": ["Ancienne commune du canton du Valais, district d'Hérens, ayant fusionné en 2011 avec Mase et Vernamiège pour former la commune de Mont-Noble"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/267421214", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/49167867534523060006", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)964988283", "source": "GND"}], "authorized_access_point": "Nax (Valais, Suisse)"} 1 +2024-09-11 09:11:25.502128 2024-09-11 09:11:25.502131 b8cbf186-d9f1-4222-9ef8-526772176ae5 {"md5": "9bf4302a7a1be1b7c67fc494759c1781", "pid": "267446713", "note": [{"label": ["Mont-Noble en fusion : commune de Mont-Noble : Nax, Vernamiège, Mase / Interface (Sion), Mont-Noble (commune), 2010", "https://hls-dhs-dss.ch/fr/articles/049539/2016-09-28/, 2023-02-02"], "noteType": "dataSource"}, {"label": ["Commune du canton du Valais, district d'Hérens, née en 2011 de la fusion de Mase, Nax et Vernamiège."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/267446713", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/1701155286584187180009", "source": "VIAF"}], "authorized_access_point": "Mont-Noble (Suisse)"} 1 +2024-09-11 09:11:25.558377 2024-09-11 09:11:25.558381 d82a7aa8-0fad-4fe5-9cae-f2620ddb47a0 {"md5": "137bc771f068b7074f3b46235c071291", "pid": "267488092", "note": [{"label": ["Gazetteer of the Gujrat district, 1892-93, 1893", "Internet, https://authorities.loc.gov, 2023-02-03"], "noteType": "dataSource"}, {"label": ["Le district de Gujrat est une subdivision administrative du nord de la province du Pendjab au Pakistan. Coordonnées géographiques : E 74° 3' 16'' / N 32° 42' 1''"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/267488092", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/110167864550222742932", "source": "VIAF"}], "variant_access_point": ["گجرات (Pakistan ; district)"], "authorized_access_point": "Gujrat (Pakistan ; district)"} 1 +2024-09-11 09:11:28.612748 2024-09-11 09:11:28.612753 f3228eb6-a7b1-4771-8b8b-d0e68ec97bfb {"md5": "520891766f2d23afb4a9be953355cb8b", "pid": "276213939", "note": [{"label": ["Schloss Neuenburg / Kristine Glatzel und Reinhard Schmitt. - München ; Berlin : Deutscher Kunstverlag, 1993."], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276213939", "source": "IDREF"}], "variant_access_point": ["Schloss Neuenburg", "Freyburg (Unstrut) - Château de Neuenburg"], "authorized_access_point": "Neuenburg, Château de (Allemagne)"} 1 +2024-09-11 09:11:25.636897 2024-09-11 09:11:25.636901 05bf9b49-b35b-4121-928b-a99ca146da05 {"md5": "096672758a0f108dc1a5737922126549", "pid": "267506589", "note": [{"label": ["Gazetteer of the Lahore district, 1893-94 / by G. C. Walker ; compiled and published under the authority of the Punjab Government, 1894", "Internet, https://authorities.loc.gov, 2023-02-06"], "noteType": "dataSource"}, {"label": ["Le district de Lahore est une subdivision administrative de la province du Pendjab au Pakistan. Coordonnées géographiques : E 74° 23' 52'' / N 31° 29' 10''"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/267506589", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/136739196", "source": "VIAF"}], "variant_access_point": ["لاھور (Pakistan ; district)", "Lāhaur (Pakistan ; district)"], "authorized_access_point": "Lahore (Pakistan ; district)"} 1 +2024-09-11 09:11:25.705547 2024-09-11 09:11:25.705551 22c40b1c-9bff-467f-b1a4-c4cf93209ee1 {"md5": "eff225a2c4ba3d97cb5c410dc87b0c52", "pid": "267678584", "note": [{"label": ["Als Flamatt überfahren wurde : 50 Jahre Autobahn N12 / von Imelda Ruffieux. In : Freiburger Volkskalender, 114. Jahrgang, 2023, pages 47-50", "Dictionnaire historique de la Suisse, https://hls-dhs-dss.ch/fr/articles/011357/2015-07-23, 2023-02-14"], "noteType": "dataSource"}, {"label": ["Village de la commune de Wünnewil-Flamatt dans le canton de Fribourg (Suisse), district de la Singine"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/267678584", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/113167864081422741509", "source": "VIAF"}], "authorized_access_point": "Flamatt (Fribourg, Suisse)"} 1 +2024-09-11 09:11:25.763961 2024-09-11 09:11:25.763965 c619af83-13b6-4253-b1ae-5e835ad2731b {"md5": "e0d2582eaed090bc2ab8191389d8f898", "pid": "267860048", "note": [{"label": ["Comptes de la bourgeoisie d'Evionnaz. - Evionnaz : administration communale, 2013"], "noteType": "dataSource"}, {"label": ["Commune du canton du Valais (Suisse)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/267860048", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/151289873", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)961803010", "source": "GND"}], "authorized_access_point": "Evionnaz (Valais, Suisse)"} 1 +2024-09-11 09:11:25.825205 2024-09-11 09:11:25.825214 146c92b1-96fe-47e4-84c5-f29f040fd028 {"md5": "9b3761541f8a6098c7ddcf2ef97669c0", "pid": "26792237X", "note": [{"label": ["Accident entre une fourgonnette et une voiture, Ardon / Philippe Schmid, 1962 [photographie]", "https://fr.wikipedia.org/wiki/Ardon_(Valais) /,2023-02-22"], "noteType": "dataSource"}, {"label": ["Commune du canton du Valais, située dans le district de Conthey."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/26792237X", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/1272167867538823060002", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)959192603", "source": "GND"}], "authorized_access_point": "Ardon (Valais, Suisse)"} 1 +2024-09-11 09:11:25.898222 2024-09-11 09:11:25.898227 1dc22854-b1e8-42bd-8eb0-2d6cfb2c2d2b {"md5": "4059f66290fc12a7ad785944ae2f873e", "pid": "267928262", "note": [{"label": ["Avant détruit d'un bus VW de l'Usine des Eaux minérales, Aproz / Philippe Schmid, 1962 [photographie]", "https://www.nendaz.ch/fr/P75016/aproz/, 2023-02-22,"], "noteType": "dataSource"}, {"label": ["Village du canton du Valais faisant partie de la commune de Nendaz"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/267928262", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/285167863719022740515", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)1046852981", "source": "GND"}], "authorized_access_point": "Aproz (Valais, Suisse)"} 1 +2024-09-11 09:11:25.958814 2024-09-11 09:11:25.958822 b1eae887-6208-4209-a24c-fd64b7cf5c40 {"md5": "a8ee1e4e30e8b67830a0667f74dedae8", "pid": "268500460", "note": [{"label": ["Sortie de route d'un camion / Philippe Schmid, 1971 [photographies]", "https://hls-dhs-dss.ch/fr/articles/002734/2012-05-11/, 2023-03-15"], "noteType": "dataSource"}, {"label": ["Commune du canton du Valais, district de Martigny"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/268500460", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/1278159474198227661307", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)956715753", "source": "GND"}], "authorized_access_point": "Riddes (Valais, Suisse)"} 1 +2024-09-11 09:11:26.033945 2024-09-11 09:11:26.033949 d933dab7-acf4-4158-a5bb-6a4541e314ea {"md5": "6792b90da774ff85c6a604fae5d28673", "pid": "268649472", "note": [{"label": ["Fastentücher im Untergoms / Alex Agten. - In: Walliser Jahrbuch. - Visp. - [92. Jahrgang] (2023), Seiten 24-27"], "noteType": "dataSource"}, {"label": ["Commune du canton du Valais (Suisse)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/268649472", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/126168169046348042654", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)042350964", "source": "GND"}], "authorized_access_point": "Ernen (Valais, Suisse)"} 1 +2024-09-11 09:11:26.101554 2024-09-11 09:11:26.101561 09059ce1-dc4c-4a25-a00e-8fc014964949 {"md5": "14fca06768f1f2d9d6bee9d0ee39a9c2", "pid": "268664110", "note": [{"label": ["Fanfare la Fraternité, Liddes [photographie]", "https://www.liddes.ch/decouvrir/presentation, 2023-03-23"], "noteType": "dataSource"}, {"label": ["Commune du canton du Valais, district d'Entremont. Elle se compose de 13 villages et hameaux répartis sur les deux versants de la Dranse d’Entremont qui s’écoule au fond de la vallée : Liddes, Chandonne, Fontaine-Dessus, Rive-Haute, Fontaine-Dessous, Pallazuit et Combe se situent sur la rive droite; Dranse, Chez-Petit, Fornex, Les Moulins, Montatuay et Vichères sur la rive gauche."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/268664110", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/5153168172581848620008", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)042072344", "source": "GND"}], "authorized_access_point": "Liddes (Valais, Suisse)"} 1 +2024-09-11 09:11:26.153716 2024-09-11 09:11:26.15372 751ee785-8594-49d0-b1a1-06bd80ba4046 {"md5": "acc559c2bdc47043240016b3571d808b", "pid": "268664447", "note": [{"label": ["Clocher, Orsières [photographie]", "https://fr.wikipedia.org/wiki/Orsières, 2023-03-23"], "noteType": "dataSource"}, {"label": ["Commune du canton du Valais, district d'Entremont. Elle se compose principalement de deux grandes vallées, le val Ferret et la vallée de Champex, le bourg d'Orsières, situé sur la Drance d'Entremont, et douze villages, dont Champex, Ferret, Issert, La Fouly et Praz-de-Fort"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/268664447", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/5405168172582848620007", "source": "VIAF"}], "authorized_access_point": "Orsières (Valais, Suisse)"} 1 +2024-09-11 09:11:26.211579 2024-09-11 09:11:26.211584 3b3f897c-72ee-4b8b-8d72-474d9a7a91ec {"md5": "238d03853615916e56ba2ec4fd35f559", "pid": "268666938", "note": [{"label": ["Usine électrique, Chamoson [photographie]", "https://fr.wikipedia.org/wiki/Chamoson, 2023-03-23"], "noteType": "dataSource"}, {"label": ["Commune du canton du Valais, située dans le district de Conthey."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/268666938", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/170378445", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)959192352", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959192352", "source": "GND"}], "relation_pid": {"type": "redirect_from", "value": "268729328"}, "authorized_access_point": "Chamoson (Valais, Suisse)"} 1 +2024-09-11 09:11:26.273165 2024-09-11 09:11:26.27317 3c406268-c5cc-46b8-bb43-a27a19ea9166 {"md5": "21825f504727534334d0814f26521631", "pid": "268735190", "note": [{"label": ["Medizinische Versorgung vor 75 Jahren im Raum Turtmann / Josef Jäger . - In: Walliser Jahrbuch. - Visp. - [92. Jahrgang] (2023), Seiten 55-56"], "noteType": "dataSource"}, {"label": ["Village et commune située dans le Haut-Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/268735190", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/166168168491948041084", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)042975735", "source": "GND"}], "variant_access_point": ["Tourtemagne (Valais, Suisse)"], "authorized_access_point": "Turtmann (Valais, Suisse)"} 1 +2024-09-11 09:11:26.348922 2024-09-11 09:11:26.34893 037db6b7-2fe9-4819-9004-ffb251d0ab4e {"md5": "45a685319cf0f118e40d181f5c8a9167", "pid": "268791694", "note": [{"label": ["Camion happé par un train, Châteauneuf / Philippe Schmid, 1962 [photographie]", "https://www.chateauneufsion.ch/, 2023-03-29"], "noteType": "dataSource"}, {"label": ["Quartier de la ville de Sion dans le canton du Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/268791694", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)95887638X", "source": "GND"}], "authorized_access_point": "Sion (Valais, Suisse) - Châteauneuf"} 1 +2024-09-11 09:11:26.417307 2024-09-11 09:11:26.417315 e1afb941-f89b-499f-8f2b-be5b92441a8f {"md5": "2a32673a5715c9f6477d9c5c16c6a26e", "pid": "268793948", "note": [{"label": ["Voiture tombée dans la Borgne, Bramois / Philippe Schmid, 1964 [photographie]", "https://fr.wikipedia.org/wiki/Bramois, 2023-03-29"], "noteType": "dataSource"}, {"label": ["Village situé dans le canton du Valais. Ancienne commune suisse et localité de la commune de Sion"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/268793948", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/5167621890903341945", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)956042651", "source": "GND"}], "variant_access_point": ["Brämis (Valais, Suisse)"], "authorized_access_point": "Bramois (Valais, Suisse)"} 1 +2024-09-11 09:11:26.484991 2024-09-11 09:11:26.484995 7b9e32b8-03ba-40c3-82af-c0b3db2c7d4e {"md5": "c6c94094e190080b2546b0da3d7fdb5e", "pid": "269784136", "note": [{"label": ["https://www.confederationcentre.ch/en/le-centre, 2023-05-09", "Confédération Centre à Genève : un souffle de modernité rajeunit le Palais des Glaces, 2022"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/269784136", "source": "IDREF"}], "authorized_access_point": "Genève (Suisse) - Confédération Centre"} 1 +2024-09-11 09:11:26.549575 2024-09-11 09:11:26.549584 b284aacb-54d9-4e59-89e7-4c5993d49c60 {"md5": "07338d84d06b3fa7abb05307e86ad187", "pid": "270059482", "note": [{"label": ["Saint Michael's Abbey : Silverado Orange County, California / Jean-Louis Pagès, 2020"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/270059482", "source": "IDREF"}], "variant_access_point": ["Saint Michael's Abbey (Silverado, Calif.)", "St. Michael's Abbey (Silverado, Calif.)"], "authorized_access_point": "Silverado (Calif.) - Saint Michael's Abbey"} 1 +2024-09-11 09:11:26.61181 2024-09-11 09:11:26.611814 3ddfd6bd-817c-44f9-8292-4d36f678b15a {"md5": "4e042f4d9313c6d2ba375c34dcc6611a", "pid": "270977848", "note": [{"label": ["Union Instrumentale, Leytron / Michel Darbellay, 18 avril 1976 [photographie]", "https://hls-dhs-dss.ch/fr/articles/002731/2008-01-24/, 2023-07-07"], "noteType": "dataSource"}, {"label": ["Commune du canton du Valais, située dans le district de Martigny."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/270977848", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/2029159474075927660481", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)959192387", "source": "GND"}], "authorized_access_point": "Leytron (Valais, Suisse)"} 1 +2024-09-11 09:11:28.66268 2024-09-11 09:11:28.662687 ba1da505-b81d-4649-9157-3cddceb38f16 {"md5": "5412f4b97b19573d2dd7df4c4ee24b32", "pid": "276214129", "note": [{"label": ["Passwang : Laufen - Scheltenpass - Reigoldswil, 2023. (Landeskarte der Schweiz; 1087)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276214129", "source": "IDREF"}], "authorized_access_point": "Passwang (Soleure, Suisse)"} 1 +2024-09-11 09:11:26.664036 2024-09-11 09:11:26.66404 f3981060-18ed-46d0-932f-5737417b7117 {"md5": "1ec827a09a23b27de53d1219029500ea", "pid": "271120738", "note": [{"label": ["Radiometrische Anomalien in der Umgebung von Törbel, nahe Visp im Wallis / Ruedi Stucki. - In: Mitteilungen der Naturforschenden Gesellschaft in Bern. - Bern. - N.F., Bd 80(2023), Seiten 40-63", "https://de.wikipedia.org/wiki/T%C3%B6rbel (2023-07-18)"], "noteType": "dataSource"}, {"label": ["Törbel est une commune suisse du canton du Valais, située dans le district de Viège"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271120738", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/3850169261908109510008", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)041196392", "source": "GND"}], "authorized_access_point": "Törbel (Valais, Suisse)"} 1 +2024-09-11 09:11:26.716582 2024-09-11 09:11:26.716585 c4ef1589-8e0f-4646-b07e-ab1f9127682f {"md5": "348bafa7c0a1a2ded48f14bb74d265f6", "pid": "271160926", "note": [{"label": ["Collision entre un camion semi-remorque et un train, Vétroz / Philippe Schmid, 1982 [photographie]", "https://fr.wikipedia.org/wiki/V%C3%A9troz7, 2023-07-19"], "noteType": "dataSource"}, {"label": ["Commune de canton du Valais, située dans le district de Conthey"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271160926", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/97169253683692700516", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)947204954", "source": "GND"}], "authorized_access_point": "Vétroz (Valais, Suisse)"} 1 +2024-09-11 09:11:26.770163 2024-09-11 09:11:26.770168 b5a53d1d-11b1-415d-9a9c-611cc00d2f8d {"md5": "617dd9bb569e05f17d8159751ed058b9", "pid": "271161957", "note": [{"label": ["Voiture dévalant de 50 mètres sur un talus, Vex / Philippe Schmid, 1962 [photographie]", "https://fr.wikipedia.org/wiki/Vex/, 2023-07-19"], "noteType": "dataSource"}, {"label": ["Commune du canton du Valais, chef-lieu du district d'Hérens. Le village est situé à l'entrée du Val d'Hérens. La commune comprend les hameaux des Prasses, d'Ypresse et de l'Argilly ainsi que Les Collons et Thyon 2000"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271161957", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/81169254481492702368", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)956137954", "source": "GND"}], "authorized_access_point": "Vex (Valais, Suisse)"} 1 +2024-09-11 09:11:26.834211 2024-09-11 09:11:26.834214 47850457-20af-4822-96ab-1651aff9929c {"md5": "39d1b359e71eb78823a2f811f0f9e7c3", "pid": "271166118", "note": [{"label": ["Inauguration du téléski, Anzère / Philippe Schmid, 1961", "https://www.myswitzerland.com/fr-ch/destinations/anzere/, 2023-07-24"], "noteType": "dataSource"}, {"label": ["Station touristique sur la commune d'Ayent en Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271166118", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/108169253837092700807", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)1019951494", "source": "GND"}], "authorized_access_point": "Anzère (Valais, Suisse)"} 1 +2024-09-11 09:11:26.893292 2024-09-11 09:11:26.893297 b0b40c82-c6d8-44a9-b4f0-d02f54c18ec8 {"md5": "559927fd9a6b68615115406492416062", "pid": "271323485", "note": [{"label": ["GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271323485", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12131962h", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)042424003", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/1992159474343127662579", "source": "VIAF"}], "authorized_access_point": "Collombey-Muraz (Valais, Suisse)"} 1 +2024-09-11 09:11:26.962287 2024-09-11 09:11:26.96229 29efbdfd-5c4f-4efe-9380-9b4d3decbeb9 {"md5": "9f21334b5821d720653525d9a7c951a7", "pid": "271323515", "note": [{"label": ["Wikipédia - http://fr.wikipedia.org (2015-04-30)", "Dict. historique de la Suisse (art. : Port-Valais) - http://www.hls-dhs-dss.ch (2015-05-18)"], "noteType": "dataSource"}, {"label": ["Localité de la commune de Port-Valais dans le canton du Valais, située au sud du lac Léman et proche de la frontière française"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCA", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/names/n83224886", "source": "LCA"}], "authorized_access_point": "Bouveret (Switzerland)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271323515", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb169627006", "source": "BNF"}, {"type": "bf:Nbn", "value": " (DE-101)959682708", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/113144647637759345491", "source": "VIAF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Bouveret, Le (Valais, Suisse)", "Bouveret (Valais, Suisse)", "Port-Valais (Valais, Suisse) - Village du Bouveret"], "authorized_access_point": "Le Bouveret (Valais, Suisse)"} 1 +2024-09-11 09:11:27.039201 2024-09-11 09:11:27.039205 e4a5ac80-d7fd-4b73-ba4d-8409b497f210 {"md5": "ea5330b04fb1837acea41d85b002ba4c", "pid": "271323590", "note": [{"label": ["Coordonnées géographiques : E 7°36' / N 47°33'"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271323590", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb152399861", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040046176", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/3925169442785525340002", "source": "VIAF"}], "variant_access_point": ["Bâle-Ville (Suisse)", "Basel-Stadt (Suisse)", "Basilea Citta (Suisse)", "Basilea", "Basilia", "Basilea Rauracorum", "Colonia Munatiana", "Athenae Rauracae", "Bazela", "Baesula", "Basula", "Baille", "Baalle", "Basle"], "authorized_access_point": "Bâle (Bâle-Ville, Suisse)"} 1 +2024-09-11 09:11:28.725354 2024-09-11 09:11:28.725358 43eb64d2-5582-4936-be2c-ac39e3415112 {"md5": "c2976b4bf9ccbd3c93a98f1328fc05d0", "pid": "276214463", "note": [{"label": ["Passwang : Laufen - Scheltenpass - Reigoldswil, 2023. (Landeskarte der Schweiz; 1087)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276214463", "source": "IDREF"}], "authorized_access_point": "Reigoldswil (Bâle-Campagne, Suisse)"} 1 +2024-09-11 09:11:27.11059 2024-09-11 09:11:27.110594 99b90a11-9c0f-4117-a065-13c72c725681 {"md5": "0714e855d10f1ee4a08c2ee4ec4f0464", "pid": "271323663", "note": [{"label": ["Geonames - http://www.geonames.org (2014-09-12)", "Atlas universel / \\"Le Monde\\", Sélection du \\"Reader's digest\\", 1993"], "noteType": "dataSource"}, {"label": ["Commune du canton du Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCA", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/names/n83239447", "source": "LCA"}], "authorized_access_point": "Vouvry (Switzerland)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271323663", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16909821w", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)976443899", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/110144647635667511245", "source": "VIAF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "authorized_access_point": "Vouvry (Valais, Suisse)"} 1 +2024-09-11 09:11:27.171968 2024-09-11 09:11:27.171971 46d3bdba-a7bc-48e7-8c30-2d9f05f57702 {"md5": "4e4b604b1ec26ac068d307d8ca30964e", "pid": "271323698", "note": [{"label": ["Coordonnées géographiques : E 7°48' / N 46°11'"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271323698", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15301322r", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)952907682", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/5819169442791125340000", "source": "VIAF"}], "variant_access_point": ["Zaniglas", "Saniglaas"], "authorized_access_point": "Saint Nicolas (Valais, Suisse)"} 1 +2024-09-11 09:11:27.233345 2024-09-11 09:11:27.233348 445cb433-7420-48f5-bb0f-2b43f9934c18 {"md5": "792c57d8e03dec0f2cfe4355d8ebbe03", "pid": "271323752", "note": [{"label": ["Dictionnaire historique de la Suisse - http://www.hls-dhs-dss.ch/textes/f/F2757.php (2010-07-16)"], "noteType": "dataSource"}, {"label": ["Coordonnées géographiques : E 7°49' / N 46°25'"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271323752", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15171340s", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040884422", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/170502802", "source": "VIAF"}], "variant_access_point": ["Uffen der Blattun (Valais, Suisse)", "Uf der Blattun (Valais, Suiss)", "Eisten (Valais, Suisse)", "Ried (Valais, Suisse)", "Weissenried (Valais, Suisse)", "Fafleralp (Valais, Suisse)", "Kühmatt (Valais, Suisse)"], "authorized_access_point": "Blatten (Valais, Suisse)"} 1 +2024-09-11 09:11:27.30467 2024-09-11 09:11:27.304673 599edceb-ddff-4770-8481-b3a69f2b1326 {"md5": "c3c060a7d67d8fcda43925d200482523", "pid": "271326441", "note": [{"label": ["Atlas universalis (Val di Gressoney)", "Valle d'Aosta-Vallée d'Aoste - http://www.regione.vda.it (2006-04-20)"], "noteType": "dataSource"}, {"label": ["Vallée du nord-est du Val d'Aoste au pied du Mont Rose, drainée par le Lys. Elle est habitée depuis le 13e siècle par des Valaisiens (Walser) germanophones"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/subjects/sh85057315", "source": "LCSH"}], "authorized_access_point": "Gressoney Valley (Italy)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271326441", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb12725205j", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040787249", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/4151594428405352226", "source": "VIAF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Gressoney, Val di (Italie)", "Gressoney, Valle di (Italie)", "Gressoneytal (Italie)", "Lys, Vallée du (Italie)", "Val de Gressoney (Italie)"], "authorized_access_point": "Gressoney, Val de (Italie)"} 1 +2024-09-11 09:11:27.378103 2024-09-11 09:11:27.37811 5ca9d725-f266-4f04-baef-28e481906a25 {"md5": "101a27d14c6d73be5dbd5e9c42add633", "pid": "271326840", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271326840", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb162621083", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040856852", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/170339943", "source": "VIAF"}], "authorized_access_point": "Anatolie (Turquie ; région)"} 1 +2024-09-11 09:11:27.453805 2024-09-11 09:11:27.453809 3ec78717-04d7-4eaa-aadc-a8534ce69074 {"md5": "9c17b830bf35c713eafd3b63447da5f3", "pid": "271328762", "note": [{"label": ["Dict. des communes, 2001"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCA", "identifiedBy": [{"type": "uri", "value": "http://id.loc.gov/authorities/names/no2011036870", "source": "LCA"}], "authorized_access_point": "Saint-Gingolph (France)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271328762", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb162289872", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/80144647643792852617", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Saint-Gingolph_(Haute-Savoie)", "source": "WIKIPEDIA"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "912"}], "authorized_access_point": "Saint-Gingolph (Haute-Savoie, France)"} 1 +2024-09-11 09:11:27.525425 2024-09-11 09:11:27.525429 9f1817bd-5d50-4371-97bd-bb3bc8dcf969 {"md5": "07d60f18fb833a059e299d58f8f91f86", "pid": "271342889", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Alpes (Allemagne)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271342889", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb178332023", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)973450509", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/1189169442776925340005", "source": "VIAF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Alpes du Nord", "Alpes septentrionales"], "authorized_access_point": "Alpes (nord)"} 1 +2024-09-11 09:11:27.591602 2024-09-11 09:11:27.591607 4fca6de5-5ead-466b-868d-7466c3241491 {"md5": "05221232d3a2b49227c38df3670b7f35", "pid": "271347821", "note": [{"label": ["Atlas universel Le Monde, 1989", "https://fr.wikipedia.org/wiki/Ollon, 2024-06-26"], "noteType": "dataSource"}, {"label": ["Commune du canton de Vaud, district d'Aigle"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271347821", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb161099642", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/9402165326398616290004", "source": "VIAF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Ollon", "source": "WIKIPEDIA"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "authorized_access_point": "Ollon (Vaud, Suisse)"} 1 +2024-09-11 09:11:27.644941 2024-09-11 09:11:27.644946 cc2604a2-6b10-4cff-a5a4-d103a1af7bd8 {"md5": "cd2b9ebdc1e7e6cfe56e2f13480aed47", "pid": "271377445", "note": [{"label": ["https://fr.wikipedia.org/wiki/Grand_Muveran, 2024-06-25"], "noteType": "dataSource"}, {"label": ["Coordonnées géographiques : E 7°8'29\\" / N 46°14'17\\"", "Sommet situé entre les cantons du Valais et de Vaud"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Alpes vaudoises (Suisse)"}, {"authorized_access_point": "Muverans, Massif des (Suisse)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271377445", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17014374p", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/41169436117514272671", "source": "VIAF"}], "authorized_access_point": "Grand Muveran (Suisse ; mont)"} 1 +2024-09-11 09:11:27.705793 2024-09-11 09:11:27.705796 62c08004-7f69-4516-8f88-90462aefa462 {"md5": "d023a856bf5c142d2bbbf30e9bdfb068", "pid": "271529172", "note": [{"label": ["Zinal : parcours historique / Adriana Tenda Claude, 2016", "https://fr.wikipedia.org/wiki/Zinal, 2023-08-25"], "noteType": "dataSource"}, {"label": ["Village et station touristique situé dans sur la commune d'Anniviers"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271529172", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/86169435151714270533", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)043141668", "source": "GND"}], "authorized_access_point": "Zinal (Valais, Suisse)"} 1 +2024-09-11 09:11:27.764929 2024-09-11 09:11:27.764933 b251008a-d4e7-42dc-937c-651a6102b1dc {"md5": "b772b59761fbc3f32ed1cae23a3fe899", "pid": "271733764", "note": [{"label": ["Bernard Marrey, La Naissance du théâtre des Champs-Elysées 1910-1922, éd. Picard, 2007."], "noteType": "dataSource"}, {"label": ["Le Théâtre, la Comédie et le Studio des Champs-Elysées font partie du même ensemble architectural. Inaugurée en 1913 sous la direction de Léon Poirier, la Comédie Léon-Poirier prend en 1919 le nom de Comédie-Montaigne. Louis Jouvet en prend la direction de 1923 à 1934. La Comédie devient un théâtre d'art et d'essai en 1937, et abrite de nombreuses troupes. A partir de 1944, elle est dirigée par C. Sainval et R. Pietri, puis par Sainval seul.", "Paris (France)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271733764", "source": "IDREF"}], "variant_access_point": ["Comédie Léon-Poirier (Paris)", "Théâtre Louis Jouvet (Paris)", "Comédie-Montaigne (Paris)"], "authorized_access_point": "Comédie des Champs-Elysées"} 1 +2024-09-11 09:11:27.823934 2024-09-11 09:11:27.823939 3454a976-cef5-452a-9ebd-a0922b59ea71 {"md5": "bebe17213c3dac018062839adcd2cc84", "pid": "271786574", "note": [{"label": ["Bernard Marrey, La Naissance du théâtre des Champs-Elysées 1910-1922, éd. Picard, 2007."], "noteType": "dataSource"}, {"label": ["Paris, France"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/271786574", "source": "IDREF"}], "variant_access_point": ["Théâtre des Champs Élysées, Paris"], "authorized_access_point": "Théâtre des Champs-Élysées, Paris"} 1 +2024-09-11 09:11:27.882453 2024-09-11 09:11:27.882458 ff07e3b0-9884-46ed-b80a-561a071131bd {"md5": "0e7db8356b0f045fbd96574d0cf34ee2", "pid": "272053430", "note": [{"label": ["Merā Ḵẖaddoḵẖel : 326 Qāf. Mīm. tā 2000 : ʿalāqah Ḵẖaddoḵẖel kā muḵẖtaṣr tārīḵẖī, tahẕībī va s̱aqāfatī mut̤ālaʿah / Shirīnzādah Ḵẖadoḵẖel, 2000", "Internet, https://authorities.loc.gov, 2023-09-18"], "noteType": "dataSource"}, {"label": ["Le district de Buner est une subdivision administrative de la province Khyber Pakhtunkhwa au Pakistan. Coordonnées géographiques : E 72° 29′ 02'' / N 34° 30′ 41''"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/272053430", "source": "IDREF"}], "variant_access_point": ["بونیر (Pakistan ; district)"], "authorized_access_point": "Buner (Pakistan ; district)"} 1 +2024-09-11 09:11:27.946454 2024-09-11 09:11:27.946459 2d94cd3e-af3e-4a6c-8ed8-bd33ccfd7a76 {"md5": "77c8e6c1e073ac1e2c866654459e0da3", "pid": "272179213", "note": [{"label": ["Louis-François Delisle de la Drevetière, Le théâtre des Champs-Élysées, 1912."], "noteType": "dataSource"}, {"label": ["De 1960 à 1965, Antoine Bourseiller assure la direction artistique. Depuis 1966, la direction est assurée par les directeurs de la Comédie des Champs-Élysées : Claude Sainval, Guy Descaux, Jacqueline Cormier, Michel Fagadau (assisté par Viviane Elbaz de 1997 à 2005) et Stéphanie Fagadau-Mercier.", "Paris, France"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/272179213", "source": "IDREF"}], "authorized_access_point": "Studio des Champs-Elysées, Paris"} 1 +2024-09-11 09:11:28.783925 2024-09-11 09:11:28.783933 e4970d24-93a5-4607-bb5b-0b49dffa8828 {"md5": "8a0743a71cec059641c796c926aefb6b", "pid": "27621675X", "note": [{"label": ["Liestal : Rheinfelden - Sissach - Fricktal, 2023. (Landeskarte der Schweiz ; 214)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27621675X", "source": "IDREF"}], "authorized_access_point": "Sissach (Bâle-Campagne, Suisse)"} 1 +2024-09-11 09:11:27.997768 2024-09-11 09:11:27.997771 968df511-677c-478f-984d-09aa64c67f4f {"md5": "7c8e96489dbce647bbe0b6b79b0f5478", "pid": "272823627", "note": [{"label": ["https://fr.wikipedia.org/wiki/Jardin_du_Pr%C3%A9-Catelan, 2023-10-25"], "noteType": "dataSource"}, {"label": ["Parc botanique du bois de Boulogne à Paris qui se trouve dans la zone du Pré Catelan. En 1911, un nouvel espace consacré au spectacle vivant est inauguré dans le parc, à proximité de La Villa Bengali, le théâtre de Verdure du Pré-Catelan, un théâtre d'été, en plein air, dirigé par Francis Robin9, ancien directeur du théâtre de la Tour Eiffel et fondateur du théâtre Le Tréteau Royal, et où sont notamment présentées les premières pièces de Louis Delluc. En 1953 est inauguré le Théâtre de verdure du jardin Shakespeare, à la place de l'ancien Théâtre des fleurs. Il est constitué de petits jardins thématiques faisant référence à cinq pièces du dramaturge anglais, notamment via un choix de végétaux liés à son œuvre (roses, ifs, etc.). Chaque été, des pièces y sont jouées en plein air."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/272823627", "source": "IDREF"}], "variant_access_point": ["Théâtre de verdure du Jardin Shakespeare"], "authorized_access_point": "Théâtre du Pré Catelan, Bois de Boulogne, Paris"} 1 +2024-09-11 09:11:28.071249 2024-09-11 09:11:28.071257 af140566-58ac-4c8f-bbb7-318469e27ac6 {"md5": "961f8265b4a441fd581319c279141b00", "pid": "273580728", "note": [{"label": ["Ovronnaz à pied / Société de développement (Ovronnaz), 1973", "https://www.ovronnaz.ch/ovronnaz-ses-alentours/, 2023-12-01"], "noteType": "dataSource"}, {"label": ["Station touristique de montagne, sur le territoire de la commune de Leytron"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/273580728", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/53170520280403302918", "source": "VIAF"}, {"type": "bf:Nbn", "value": "(DE-101)960113355", "source": "GND"}], "authorized_access_point": "Ovronnaz (Valais, Suisse)"} 1 +2024-09-11 09:11:28.137664 2024-09-11 09:11:28.137667 6d752174-0a05-4d1a-94ae-612cc042a004 {"md5": "e89cc872e9b97e80d99e49464ca4fe74", "pid": "275775569", "note": [{"label": ["Trésors naturels du bois de Finges / René-Pierre Bille, Philippe Werner, 1986", "https://www.pfyn-finges.ch/fr/experience/carte-du-parc/offer-detail/site-protege-du-bois-de-finges-1991, 2024-02-14", "https://hls-dhs-dss.ch/fr/articles/008553/2010-09-28/, 2024-02-14"], "noteType": "dataSource"}, {"label": ["Réserve naturelle"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/275775569", "source": "IDREF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Bois_de_Finges", "source": "WIKIPEDIA"}, {"type": "bf:Nbn", "value": "(DE-101)043187048", "source": "GND"}], "variant_access_point": ["Bois de Finges (Valais, Suisse)", "Pfynwald (Valais, Suisse)", "Forêt de Finges (Valais, Suisse)"], "authorized_access_point": "Finges, Bois de (Valais, Suisse)"} 1 +2024-09-11 09:11:28.213072 2024-09-11 09:11:28.213078 4a0b19bc-6e01-46fa-b047-2ce476c3c5a7 {"md5": "11693843ee4ada1c0b987898e4d651fa", "pid": "276090829", "note": [{"label": ["Arlesheim : Biel-Benken - Reinach - Pratteln, 2023. (Landeskarte der Schweiz; 1067)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276090829", "source": "IDREF"}], "authorized_access_point": "Biel-Benken (Bâle-Campagne, Suisse)"} 1 +2024-09-11 09:11:28.271414 2024-09-11 09:11:28.271417 4fca43ed-8ef9-44ba-b393-a9243a075505 {"md5": "1129eaca0fc1fafa201781235d901788", "pid": "27609266X", "note": [{"label": ["Arlesheim : Biel-Benken - Reinach - Pratteln, 2023. (Landeskarte der Schweiz; 1067)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27609266X", "source": "IDREF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/Reinach_(Bâle-Campagne)", "source": "WIKIPEDIA"}], "authorized_access_point": "Reinach (Bâle-Campagne, Suisse)"} 1 +2024-09-11 09:11:28.33836 2024-09-11 09:11:28.338362 861f7e71-7caf-4cf4-a5c9-0a560672af53 {"md5": "664e2c92aa13ce92e3b98279e9a06e7e", "pid": "276092945", "note": [{"label": ["Arlesheim : Biel-Benken - Reinach - Pratteln, 2023. (Landeskarte der Schweiz; 1067)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276092945", "source": "IDREF"}], "authorized_access_point": "Pratteln (Bâle-Campagne, Suisse)"} 1 +2024-09-11 09:11:28.407736 2024-09-11 09:11:28.40774 412aa830-13c4-42f3-9c0b-059f2c02a153 {"md5": "99d60acd8902247f6145b9a3a2457138", "pid": "276180232", "note": [{"label": ["Die Eckartsburg / Reinhard Schmitt. - München ; Berlin : Deutscher Kunstverlag, 1993."], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276180232", "source": "IDREF"}], "variant_access_point": ["Eckartsberga (Saxe-Anhalt) - Château d’Eckartsburg"], "authorized_access_point": "Eckartsburg, Château d’ (Allemagne)"} 1 +2024-09-11 09:11:28.496096 2024-09-11 09:11:28.496098 8894df95-984d-4dd5-8ecc-b286200d7ed7 {"md5": "c0c8f3913106a44f74ee1dc3b9ce09bc", "pid": "276183762", "note": [{"label": ["Hauenstein : Oberdorf - Diegten - Olten, 2023 (Landeskarte der Schweiz; 1088)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276183762", "source": "IDREF"}], "authorized_access_point": "Diegten (Bâle-Campagne, Suisse)"} 1 +2024-09-11 09:11:28.55043 2024-09-11 09:11:28.550434 541fabf2-6b3f-4a20-9edc-8a76a936e9fe {"md5": "a49911c4f32d7f5f074be96aa1c4409d", "pid": "276185986", "note": [{"label": ["Burg Schnellenberg / Karl E. Mummenhoff. - München ; Berlin : Deutscher Kunstverlag, 1987."], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276185986", "source": "IDREF"}], "variant_access_point": ["Burg Schnellenberg", "Attendorn, Rhénanie du Nord-Westphalie (Allemagne)) - Château de Schnellenberg"], "authorized_access_point": "Schnellenberg, Château de (Allemagne)"} 1 +2024-09-11 09:11:29.032814 2024-09-11 09:11:29.032816 1c210c61-bab8-4e31-9816-adaf65bc5380 {"md5": "ff2df4deb353418d23c9d3d1cd0aade3", "pid": "276398157", "note": [{"label": ["Alpes bernoises : sélection d'itinéraires / Maurice Brandt, 1982", "Guide des Alpes bernoises : du Sanetsch au Grimsel : sélection d'itinéraires / Ueli Mosimann, 2002", "https://fr.wikipedia.org/wiki/Subdivision_orographique_internationale_unifi%C3%A9e_du_syst%C3%A8me_alpin, 2024-03-20"], "noteType": "dataSource"}, {"label": ["Les Alpes bernoises couvrent un territoire allant du col du Sanetsch au col du Grimsel, sur les cantons de Berne (Oberland bernois) et du Valais (rive droite du Rhône). Dans un sens plus large, elles touchent également les cantons de Vaud, d'Uri et d'Obwald"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Alpes, Chaîne des"}], "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Jungfrau-Alestch, Site Unesco (Berne / Valais, Suisse)"}, {"authorized_access_point": "Aletsch, Grand Glacier d' (Valais, Suisse)"}, {"authorized_access_point": "Jungfrau (Berne, Suisse ; Mont)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276398157", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15331629m", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)04005781X", "source": "GND"}], "variant_access_point": ["Alpi Bernesi (Suisse)", "Berner Alpen (Suisse)"], "authorized_access_point": "Alpes Bernoises (Suisse)"} 1 +2024-09-11 09:11:29.099239 2024-09-11 09:11:29.099243 026a4eff-27ad-44f4-bdb2-d12aef1a7c6a {"md5": "863166d01c2ec93663e377eefb07e6aa", "pid": "276510216", "note": [{"label": ["111 lieux des Alpes vaudoises à ne pas manquer / Benjamin Amiguet, Marc Voltenauer, 2022", "https://fr.wikipedia.org/wiki/Alpes_vaudoises, 2024-03-20", "https://search.ortsnamen.ch/fr/record/803319560/, 2024-03-20"], "noteType": "dataSource"}, {"label": ["Les Alpes vaudoises sont un ensemble montagneux des Alpes suisses situé principalement dans les cantons de Vaud et du Valais"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "narrower": [{"authorized_access_point": "Grand Muveran (Suisse ; mont)"}, {"authorized_access_point": "Les Diablerets (Suisse ; massif)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276510216", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)944449360", "source": "GND"}], "variant_access_point": ["Waadtländer Alpen (Suisse)", "Alpi Valdesi (Suisse)"], "authorized_access_point": "Alpes vaudoises (Suisse)"} 1 +2024-09-11 09:11:29.150473 2024-09-11 09:11:29.150475 9a0f53ed-8f80-45e1-8268-12dcd88a0426 {"md5": "dfc583a3a820e4874eaf2e436aab62b5", "pid": "276534921", "note": [{"label": ["Coordonnées géographiques : E 43°20' - E 50°15' / S 12° - S 25°30'"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrique"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276534921", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb15325769w", "source": "BNF"}, {"type": "bf:Nbn", "value": "(DE-101)040744256", "source": "GND"}, {"type": "uri", "value": "http://viaf.org/viaf/146036991", "source": "VIAF"}], "relation_pid": {"type": "redirect_from", "value": "027238180"}, "variant_access_point": ["République Malgache (1960-)", "Malgache, République (1960-)", "Madagascar (1960-)"], "authorized_access_point": "Madagascar"} 1 +2024-09-11 09:11:29.213472 2024-09-11 09:11:29.213476 cd92fc87-da66-424a-898c-b3e5d08287ac {"md5": "bbdc4596b514d45fb1e8b46121a7f8e5", "pid": "276626370", "note": [{"label": ["Wasserburg Anholt / Eberhard G. Neumann. - München ; Berlin : Deutscher Kunstverlag, 1976"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276626370", "source": "IDREF"}], "variant_access_point": ["Wasserburg Anholt", "Isselburg (Westphalie) - Château d’Anholt"], "authorized_access_point": "Anholt, Château de (Allemagne)"} 1 +2024-09-11 09:11:29.27497 2024-09-11 09:11:29.274977 57788265-4bbc-4d1c-bea1-f560a9c2b5fd {"md5": "ed6700708483aa27af56b54ab42bb69b", "pid": "276637674", "note": [{"label": ["Gelnhausen : Kaiserpfalz : amtlicher Führer / Wolfgang Einsingbach. - Bad Homburg vor der Höhe : Verwaltung der Staatlichen Schlösser und Gärten Hessen, 1980"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276637674", "source": "IDREF"}], "variant_access_point": ["Château de Gelnhausen (Gelnhausen, Allemagne)", "Kaiserpfalz Gelnhausen (Gelnhausen, Allemagne)", "Pfalz Gelnhausen (Gelnhausen, Allemagne)", "Barbarossaburg (Gelnhausen, Allemagne)"], "authorized_access_point": "Gelnhausen (Hesse, Allemagne) - Kaiserpfalz"} 1 +2024-09-11 09:11:29.343583 2024-09-11 09:11:29.343588 6aa65c7e-8a0f-43ed-bf96-68e4169ac569 {"md5": "1ce975809874ad29468b2995966b0307", "pid": "276708083", "note": [{"label": ["Pietro Coleberti e il ciclo pittorico di Santa Caterina a Roccantica / Giuseppe Cassio, 2023"], "noteType": "dataSource"}, {"label": ["Via della Torre, 25, 02040 Roccantica RI, Italie"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276708083", "source": "IDREF"}], "classification": [{"name": "Religion", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Architecture", "type": "bf:ClassificationDdc", "classificationPortion": "720"}, {"name": "Géographie de l'Europe", "type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Chiesa Santa Caterina d'Alessandria (Roccantica, Italie)", "Roccantica (Italie) - Église Sainte Catherine d'Alexandrie", "Église Sainte Catherine d'Alexandrie (Roccantica, Italie)", "Sainte Catherine (Roccantica, Italie)"], "authorized_access_point": "Roccantica (Italie) - Chiesa Santa Caterina d'Alessandria"} 1 +2024-09-11 09:11:29.411248 2024-09-11 09:11:29.411252 d9823037-f22d-4f4b-b82e-a6166209ad58 {"md5": "28402935c085d024dc0268e3bf9c00e2", "pid": "276783743", "note": [{"label": ["Burg Eltz / Dieter Ritzenhofen. - 17. Auflage. - München ; Berlin : Deutscher Kunstverlag, 1989"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276783743", "source": "IDREF"}], "variant_access_point": ["Burg Eltz", "Wierschem, Rhénanie-Palatinat (Allemagne) - Château d’Eltz"], "authorized_access_point": "Eltz, Château d’(Allemagne)"} 1 +2024-09-11 09:11:29.470575 2024-09-11 09:11:29.470579 fab47269-e4a1-476e-b8ea-f7acc43df6bb {"md5": "e1049eb5ccb9c5c92282cc3f19972117", "pid": "27678832X", "note": [{"label": ["Der Desenberg bei Warburg, Kreis Höxter / [Cornelia Kneppe, Hans-Werner Peine]. - Münster : Altertumskommission für Westfalen, 2000"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27678832X", "source": "IDREF"}], "variant_access_point": ["Der Desenberg", "Der Daseburg", "Warburg, Westphalie (Allemagne) - Château de Desenberg"], "authorized_access_point": "Desenberg, Château de (Allemagne)"} 1 +2024-09-11 09:11:29.52564 2024-09-11 09:11:29.525644 712fe060-6ba6-43a4-87ac-285ed81b26cb {"md5": "70f2696eb5d79c7867566614fc366071", "pid": "276828984", "note": [{"label": ["Campus, HES-SO Studiengang Physiotherapie Leukerbad : Umbau : Schulgebäude = HES-SO, Campus Études de physiothérapie Loèche-les-Bains : transformation : bâtiment scolaire / Département des finances et de l’énergie. Service immobilier et patrimoine. Section Investissement. - Canton du Valais, 2023"], "noteType": "dataSource"}, {"label": ["Campus HES-SO des Etudes de physiothérapie situé au Rathausstrasse 25 à Loèche-les-Bains. Ancienne clinique/hôpital pour la réadaptation neurologique réadaptée en 2018 par l'Etat du Valais pour les besoins de la HES-SO"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276828984", "source": "IDREF"}], "variant_access_point": ["Loèche-les-Bains (Valais, Suisse) - Campus Etudes de physiothérapie HES-SO"], "authorized_access_point": "Leukerbad (Valais, Suisse) - Campus Studiengang Physiotherapie HES-SO"} 1 +2024-09-11 09:11:29.597056 2024-09-11 09:11:29.597059 201a86b1-53dd-4139-b393-984abed393ea {"md5": "1921af84661e323da46805afef75250f", "pid": "276944135", "note": [{"label": ["Erfgoed op de vlucht. Duitse bezetters, Vlaamse meesterwerken, een Waals kasteel / Bert Govaerts, 2024", "2024/04/09 https://fr.wikipedia.org/wiki/Ch%C3%A2teau_de_Lavaux-Sainte-Anne"], "noteType": "dataSource"}, {"label": ["Le château de Lavaux-Sainte-Anne est situé en Wallonie à Lavaux-Sainte-Anne (5580) en Belgique près de Rochefort, dans la province de Namur. Ne doit pas être confondu avec Lavault-Sainte-Anne. La construction ayant commencé au 15e siècle et terminée au 16e siècle, il s'agit d'une forteresse médiévale transformée par des influences Renaissance. Lavaux-Sainte-Anne (en wallon Li Vå-Sinte-Ane) est une section de la ville belge de Rochefort. C'était une commune à part entière avant la fusion des communes de 1977."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276944135", "source": "IDREF"}], "authorized_access_point": "Lavaux-Saint-Anne (Belgique) - Château"} 1 +2024-09-11 09:11:29.653729 2024-09-11 09:11:29.653737 6e294e82-00ec-4e7f-af1d-af9b79f16eb9 {"md5": "a21654d21a5f974cff36483fcf8f70c1", "pid": "276970950", "note": [{"label": ["Gehn wir mal auf den Honstein / Hansjoachim Stenzhorn. - 3. Aufflage. - Nordhausen : Eigenverlag, 2001"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/276970950", "source": "IDREF"}], "variant_access_point": ["Burg Honstein", "Burg Hohnstein", "Burg Hohenstein", "Nordhausen, Thuringe (Allemagne) - Château de Honstein"], "authorized_access_point": "Honstein, Château de (Allemagne)"} 1 +2024-09-11 09:11:29.717102 2024-09-11 09:11:29.717104 2bc641fe-1c3f-45fb-9ac5-884f92e399c9 {"md5": "7a6da14460a4ac55977ddb3a5314ec00", "pid": "277221307", "note": [{"label": ["Die institutionelle Förderung des nachbarschaftlichen Miteinanders im Genfer Ökoviertel «Les Vergers» : eine Untersuchung über ihre Gestaltung und ihre Resonanz bei den örtlichen Bewohner:innen / von Marc-Aurèle Dubois-Pelerin, 2023"], "noteType": "dataSource"}, {"label": ["L'écoquartier Les Vergers comprend 1350 logements répartis dans 30 bâtiments. Bâti sur un terrain d'une superficie d'environ 16 hectares, il accueille environ 3'000 habitants et 10'000 m2 de surfaces commerciales. Ce quartier exemplaire est basé sur les trois piliers du développement durable : solidarité sociale, responsabilité environnementale et efficience économique. Il a été finalisé en 2023"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/277221307", "source": "IDREF"}], "authorized_access_point": "Meyrin (Genève, Suisse) - Les Vergers"} 1 +2024-09-11 09:11:29.785217 2024-09-11 09:11:29.785222 cac73230-8829-4c8e-b81d-7547f61ea2b4 {"md5": "a9594593a9f8382db4a11105bea70da5", "pid": "27727382X", "note": [{"label": ["Die Ruine Flossenbürg : Auferstehung einer Burg des hohen und späten Mittelalters / von Andreas Boos. - Flossenbürg : Gemeinde Flossenbürg, 1993."], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27727382X", "source": "IDREF"}], "variant_access_point": ["château de Flossenbürg (Flossenbürg, Allemagne)", "Burgruine Flossenbürg (Flossenbürg, Allemagne)", "Ruine Flossenbürg (Flossenbürg, Allemagne)"], "authorized_access_point": "Flossenbürg (Allemagne) - Burgruine"} 1 +2024-09-11 09:11:29.846898 2024-09-11 09:11:29.846907 b684bf01-9e24-4b58-8dbe-461ddf55fb28 {"md5": "dcba76d2c5f1ed0cd09d23055bcef233", "pid": "277473284", "note": [{"label": ["Les richesses naturelles du Vallon de Réchy : en vue de sa mise sous protection / René-Pierre Bille... et al., 1986", "https://www.vs.ch/web/sites-naturels-proteges/val-de-rechy, 2024-05-01"], "noteType": "dataSource"}, {"label": ["Vallon situé entre le val d'Hérens et le val d'Anniviers"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/277473284", "source": "IDREF"}, {"type": "bf:Nbn", "value": "(DE-101)1019952792", "source": "GND"}], "variant_access_point": ["Réchy, Vallon de (Valais, Suisse)"], "authorized_access_point": "Réchy, Val de (Valais, Suisse)"} 1 +2024-09-11 09:11:29.916946 2024-09-11 09:11:29.916954 fbce0a4e-2ce2-469e-bc7e-7fff8d47f294 {"md5": "b0907708b3f8abeeddfb4348702c1193", "pid": "278628117", "note": [{"label": ["Historical archives of Kasur / Amjad Zafar Ali, 2023", "Internet, https://authorities.loc.gov, 2024-06-04"], "noteType": "dataSource"}, {"label": ["Kasur est une ville pakistanaise, et capitale du district de Kasur, dans la province du Pendjab. Coordonnées géographiques : E 74° 26'' 48'' / N 31° 6' 56''"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278628117", "source": "IDREF"}], "variant_access_point": ["قصور (Pakistan)", "Qasūr (Pakistan)"], "authorized_access_point": "Kasur (Pakistan)"} 1 +2024-09-11 09:11:30.037694 2024-09-11 09:11:30.037697 9c1b6266-d127-4a79-9901-85935d51e8aa {"md5": "e159f8da257d6c8dcfa07b3a33acbd9f", "pid": "278738230", "note": [{"label": ["https://fr.wikipedia.org/wiki/Azarori"], "noteType": "dataSource"}, {"label": ["Azarori est une localité et une commune rurale du Niger, du département de Madaoua, région de Tahoua. Elle s'étend sur 166 localités."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278738230", "source": "IDREF"}], "variant_access_point": ["Azérori (Niger)", "Arzerori (Niger)"], "authorized_access_point": "Azarori (Niger)"} 1 +2024-09-11 09:11:30.100743 2024-09-11 09:11:30.100752 1df993ee-a54b-45c4-8b40-e3e462fded38 {"md5": "d6dbacbcf962246bf10ac5dbcf57d706", "pid": "278747310", "note": [{"label": ["Endzeiten : Wie G.W.F. Hegel, Dietrich Bonhoeffer, Heinrich Mann, Bertolt Brecht, Herbert Marcuse, Heiner Müller und Christa Wolf ihr nahes Ende lebten : Was der Tod mit ihrem Werk machte und wie er mit der Geschichte zusammenhing / Karl Heinz Götze, 2023", "Bibliothèque nationale, autorités, Allemagne : Dorotheenstädtischer Friedhof (Berlin) - https://d-nb.info/gnd/4333021-6 (2024-06-05)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "closeMatch": [{"source": "LCSH", "authorized_access_point": "Dorotheenstädtischer Friedhof (Berlin, Germany)"}], "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278747310", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18150875k", "source": "BNF"}], "classification": [{"name": "Ethnologie, anthropologie, folklore", "type": "bf:ClassificationDdc", "classificationPortion": "390"}, {"name": "Urbanisme", "type": "bf:ClassificationDdc", "classificationPortion": "710"}, {"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Dorotheenstädtischer Friedhof (Berlin, Allemagne)"], "authorized_access_point": "Berlin (Allemagne) - Dorotheenstädtischer Friedhof"} 1 +2024-09-11 09:11:30.153731 2024-09-11 09:11:30.153735 820a1cdf-409f-4415-9267-1a77dec238d1 {"md5": "acf6e594d8c1fa3bb9c2a9c68c0f5cec", "pid": "278850650", "note": [{"label": ["Hadrianeum : il progetto architettonico e le fasi costruttive / Claudio Parisi Presicce, Massimo Baldi, [2024]", "https://fr.wikipedia.org/wiki/Temple_d%27Hadrien, 2024-06-13"], "noteType": "dataSource"}, {"label": ["Ancien temple romain situé sur la piazza di Pietra, au Champ de Mars, à Rome, érigé en l'honneur de l'empereur Hadrien par son successeur Antonin le Pieux, en 145 apr. J.-C."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278850650", "source": "IDREF"}], "variant_access_point": ["Hadrianeum (Rome, Italie)", "Hadrien, temple d' (Rome, Italie)", "Rome (Italie) - Hadrianeum"], "authorized_access_point": "Temple d'Hadrien (Rome, Italie)"} 1 +2024-09-11 09:11:30.216031 2024-09-11 09:11:30.216034 375f5631-1141-4f06-9682-d1a2786762fa {"md5": "b788548da4a37b46bb3effbe8e7515f1", "pid": "278893899", "note": [{"label": ["Monte Alverno : an Irish private collection : auction in London, 16 May 2022 / Sotheby's, 2022"], "noteType": "dataSource"}, {"label": ["Manoir construit vers 1835, agrandi et restauré en 1895"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278893899", "source": "IDREF"}], "variant_access_point": ["Monte Alverno (Dalkey, Comté de Dublin, Irlande)"], "authorized_access_point": "Dalkey (Comté de Dublin, Irlande) - Monte Alverno"} 1 +2024-09-11 09:11:30.26621 2024-09-11 09:11:30.266214 a779a984-bb3a-4292-b177-4230d05eae27 {"md5": "cb143a92819c62ec560537debb245385", "pid": "278918964", "note": [{"label": ["Palazzo dei Diamanti : contributi per il restauro / a cura di Carla Di Francesco, 1991", "https://www.palazzodiamanti.it/en/about-us/, 2024-06-18", "https://www.comune.fe.it/it/z/384/view?modelClass=open20%5Cagid%5Corganizationalunit%5Cmodels%5CAgidOrganizationalUnit&view=detailAgidOrgUnit, 2024-05-03", "https://viaf.org/processed/RERO%7CA006071632, 2024-05-30"], "noteType": "dataSource"}, {"label": ["Le palais, conçu par Biagio Rossetti, fut construit à partir de 1493 pour le compte de Sigismondo d’Este, frère du duc Hercule Ier d’Este. Le bâtiment fut acheté par la municipalité de Ferrare en 1832. Devenu espace d'exposition, il dépendait de la Galleria civica d'arte moderna - comprise désormais dans les Gallerie d'Arte Moderna e Contemporanea - et dépend actuellement (2024) de la Fondazione Ferrara Arte."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/278918964", "source": "IDREF"}], "variant_access_point": ["Palazzo dei Diamanti (Ferrare, Italie)", "Ferrare (Italie) - Palais des diamants", "Palais des diamants (Ferrare, Italie)"], "authorized_access_point": "Ferrare (Italie) - Palazzo dei Diamanti"} 1 +2024-09-11 09:11:30.329158 2024-09-11 09:11:30.329162 a0da0c2f-8151-4a61-a5a6-6db30650a014 {"md5": "008a6e552b580604baecac8718285d19", "pid": "279034989", "note": [{"label": ["Ville de Lardy - https://www.ville-lardy.fr/tourisme/parcs-et-jardins/le-parc-boussard (2024-06-14)", "Le parc Boussard / A-S. Godot, 2024"], "noteType": "dataSource"}, {"label": ["Ancien parc privé de style Art déco créé entre 1927 et 1930 par l'architecte Joseph Marrast pour le négociant Henri Boussard"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279034989", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18152832s", "source": "BNF"}], "relation_pid": {"type": "redirect_from", "value": "27949002X"}, "classification": [{"name": "Urbanisme", "type": "bf:ClassificationDdc", "classificationPortion": "710"}, {"type": "bf:ClassificationDdc", "classificationPortion": "912"}], "variant_access_point": ["Boussard, Parc (Lardy, Essonne)", "Parc Boussard (Lardy, Essonne)"], "authorized_access_point": "Lardy (Essonne, France) - Parc Boussard"} 1 +2024-09-11 09:11:30.398567 2024-09-11 09:11:30.398571 3eb9aa76-8cde-4e86-a2e6-fb51f59d1da2 {"md5": "f8ab3c611f305608a3a87fc319f122cf", "pid": "279121369", "note": [{"label": ["Seismic-refraction studies of Eniwetok Atoll / by Russell W. Raitt, 1957."], "noteType": "dataSource"}, {"label": ["Atoll des iles Marshall"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279121369", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/315128069", "source": "VIAF"}], "variant_access_point": ["Eniwetok (Atoll)"], "authorized_access_point": "Enewetak (Atoll)"} 1 +2024-09-11 09:11:30.65954 2024-09-11 09:11:30.659545 d70d58e6-a7df-4675-9d68-fca53d9802fc {"md5": "61edc5461c7e0433a385bf971903b9f3", "pid": "279129467", "note": [{"label": ["Suomen geologinen kartta Lehti 2542+2524 = =Geological map of Finland : kallioperäkartta / Geologisen tutkimuslaitoksen julkaisema ; Tehnyt Vesa Perttunen, 1972.", "http://www.geonames.org/653831/karunki.html , 2024-07-01"], "noteType": "dataSource"}, {"label": ["Ville de Finlande, Laponie"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279129467", "source": "IDREF"}], "authorized_access_point": "Karunki (Finlande)"} 1 +2024-09-11 09:11:30.719222 2024-09-11 09:11:30.719225 5e32a10b-1d2b-4a14-957d-1107c911f58a {"md5": "78b5016efda71dba97a6ee21574c9c78", "pid": "279129912", "note": [{"label": ["http://www.geonames.org/, 2024-07-01"], "noteType": "dataSource"}, {"label": ["Situé dans le comté d'Ogle"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279129912", "source": "IDREF"}], "authorized_access_point": "Polo (Ill.)"} 1 +2024-09-11 09:11:30.768843 2024-09-11 09:11:30.768847 4044b088-0617-48d7-8ab1-e106fd46df15 {"md5": "be872483a03bc8b48ca25d3d46bfb173", "pid": "279129920", "note": [{"label": ["Suomen geologinen kartta Lehti 3041 = =Geological map of Finland : kallioperäkartta / Geologisen tutkimuslaitoksen julkaisema ; Tehnyt Matti Laitala & Ahti Simonen, 1972."], "noteType": "dataSource"}, {"label": ["Commune de Finlande, région Vallée de la Kymi; Absorbe le comté de Haapasaari en 1974"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279129920", "source": "IDREF"}], "authorized_access_point": "Kotka (Finlande)"} 1 +2024-09-11 09:11:30.834289 2024-09-11 09:11:30.834293 558d0d6a-0b93-4cca-beab-42140502a160 {"md5": "1928822303a36b5f763ee12d77218e15", "pid": "279130252", "note": [{"label": ["http://www.geonames.org/, 2024-07-01"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Whiteside"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279130252", "source": "IDREF"}], "authorized_access_point": "Rock Falls (Ill.)"} 1 +2024-09-11 09:11:30.903067 2024-09-11 09:11:30.903072 4fc9575d-556a-4718-915f-bed68ccdf3dd {"md5": "0a6d67a68679e501c50d83d38814fab6", "pid": "279131321", "note": [{"label": ["El retablo mayor de Cicero : historia y restauración / Julio J. Polo Sánchez, Rocio Espejo-Saavedra, 1996", "Blog : https://iglesiasdecantabria-blogspot-com.translate.goog/2009/05/cicero.html?_x_tr_sl=es&_x_tr_tl=fr&_x_tr_hl=fr&_x_tr_pto=sc (01-07-2024)"], "noteType": "dataSource"}, {"label": ["Eglise du milieu du XVIe siècle. Son retable principal est l'un des exemples les plus remarquables de Cantabrie. Daté de 1633, il a été assemblé par Rodrigo de los Corrales et possède des sculptures de Juan de Palacio"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279131321", "source": "IDREF"}], "classification": [{"name": "Religion (ouvrages généraux et comparatifs)", "type": "bf:ClassificationDdc", "classificationPortion": "200"}, {"name": "Bâtiment", "type": "bf:ClassificationDdc", "classificationPortion": "690"}, {"name": "Architecture", "type": "bf:ClassificationDdc", "classificationPortion": "720"}, {"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "variant_access_point": ["Église de San Pelayo de Cicero (Barcena de Cicero, Espagne)", "Iglesia de San Pelayo de Cicero (Barcena de Cicero, Espagne)"], "authorized_access_point": "Barcena de Cicero (Espagne) - Iglisia San Pelayo de Cicero"} 1 +2024-09-11 09:11:30.962083 2024-09-11 09:11:30.962087 f900ddf0-18e0-4dd7-abe8-7e1795b606ed {"md5": "19cbea41c920148eaf1a78982fc40f6f", "pid": "279131356", "note": [{"label": ["http://www.geonames.org/, 2024-07-01"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Shelby"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279131356", "source": "IDREF"}], "authorized_access_point": "Windsor (Ill.)"} 1 +2024-09-11 09:11:31.026834 2024-09-11 09:11:31.026843 9784add1-bca6-48e2-aafa-316b75c51124 {"md5": "cce30a1510412ad6b3bae87027a2ab50", "pid": "27913150X", "note": [{"label": ["http://www.geonames.org/, 2024-07-01"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Shelby"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27913150X", "source": "IDREF"}], "authorized_access_point": "Strasburg (Ill.)"} 1 +2024-09-11 09:11:31.095335 2024-09-11 09:11:31.09534 d46081f7-3449-45bf-8178-5be1f1700dec {"md5": "ee33c8706fab9be24f723413f56fad75", "pid": "279131593", "note": [{"label": ["http://www.geonames.org/, 2024-07-01"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Shelby"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279131593", "source": "IDREF"}], "authorized_access_point": "Stewardson (Ill.)"} 1 +2024-09-11 09:11:31.147344 2024-09-11 09:11:31.147348 c0ad3c32-bb89-40a9-9f63-9289a987bd27 {"md5": "872d5e53e5f60fb7c18bc8efa606b9f6", "pid": "279132409", "note": [{"label": ["http://www.geonames.org/, 2024-07-01"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Livingston"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279132409", "source": "IDREF"}], "authorized_access_point": "Long Point (Ill.)"} 1 +2024-09-11 09:11:31.205712 2024-09-11 09:11:31.205716 ab87dd49-351d-463f-9716-f52fa8f57090 {"md5": "9a6be8cf1cfac51772435dfb9e30fe32", "pid": "279132581", "note": [{"label": ["https://fr.wikipedia.org/wiki/Ayd%C4%B1n"], "noteType": "dataSource"}, {"label": ["ville de Turquie"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279132581", "source": "IDREF"}], "variant_access_point": ["Tralles", "Aïdini"], "authorized_access_point": "Aydin"} 1 +2024-09-11 09:11:31.325219 2024-09-11 09:11:31.325228 051e58aa-ee73-41fa-8745-a10d23191aa6 {"md5": "926ee7b28e67342cfa040cf9b37edb18", "pid": "27913438X", "note": [{"label": ["Jacona y Zamora : datos históricos, útiles y curiosos / Arturo Rodriguez Zetina, 1956", "Nuestra Señora de la Esperanza, 1997:", "GEOnet, Dec. 7, 1999"], "noteType": "dataSource"}, {"label": ["Ville de Jacona de Plancarte (Jacona), dans l'état de Michoacán"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27913438X", "source": "IDREF"}, {"type": "uri", "value": "https://viaf.org/viaf/134019187", "source": "VIAF"}], "authorized_access_point": "Jacona de Plancarte (Mexico)"} 1 +2024-09-11 09:11:31.391064 2024-09-11 09:11:31.391068 1343fa2f-16dd-4376-ab96-a0dec98b75b6 {"md5": "2341e884105a487ac4710f0bde39ee85", "pid": "27913469X", "note": [{"label": ["http://www.geonames.org/, 2024-07-01"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Lawrence"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27913469X", "source": "IDREF"}], "authorized_access_point": "Sumner (Ill.)"} 1 +2024-09-11 09:11:31.451441 2024-09-11 09:11:31.451445 5a3ff07d-e9e8-441d-9db8-b7f4271895e0 {"md5": "66681102052eabfe2ebf230136892083", "pid": "279135130", "note": [{"label": ["http://www.geonames.org/, 2024-07-01"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Kane"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279135130", "source": "IDREF"}], "authorized_access_point": "Maple Park (Ill.)"} 1 +2024-09-11 09:11:31.51225 2024-09-11 09:11:31.512255 62cf1627-e379-485f-b131-0bf1d3918c87 {"md5": "670ed43c66a03799976f2bcfd8904bab", "pid": "279135289", "note": [{"label": ["http://www.geonames.org/, 2024-07-01"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de DeKalb"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279135289", "source": "IDREF"}], "authorized_access_point": "Hinckley (Ill.)"} 1 +2024-09-11 09:11:31.576489 2024-09-11 09:11:31.576493 187bf11b-51a6-4ef1-a132-5dcbb5130c3b {"md5": "e107cd491fdc6200f43434cef84e62d9", "pid": "279135777", "note": [{"label": ["http://www.geonames.org/, 2024-07-01"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Sangamon"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279135777", "source": "IDREF"}], "authorized_access_point": "Buckhart (Ill.)"} 1 +2024-09-11 09:11:31.630298 2024-09-11 09:11:31.630303 3ed8653d-f4ba-447e-b877-1a7f30ccd6c2 {"md5": "302289af57a7d4cfab1b1c4223fe77c9", "pid": "279135890", "note": [{"label": ["http://www.geonames.org/, 2024-07-01"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Christian"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279135890", "source": "IDREF"}], "authorized_access_point": "Edinburg (Ill.)"} 1 +2024-09-11 09:11:31.690533 2024-09-11 09:11:31.690542 09ad875a-d8c2-4e15-adce-5ac649934e81 {"md5": "0eb560daac678cef278f9d3db42d6859", "pid": "279136730", "note": [{"label": ["https://fr.wikipedia.org/wiki/Bursa"], "noteType": "dataSource"}, {"label": ["ville de Turquie"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279136730", "source": "IDREF"}], "variant_access_point": ["Brousse", "Prousa", "Προῦσα", "Pruse"], "authorized_access_point": "Bursa"} 1 +2024-09-11 09:11:31.741181 2024-09-11 09:11:31.741185 2a30bfef-2790-45b2-8f09-0c0ee7b966c8 {"md5": "66e76483fbb0e38ce438eb04518a4f41", "pid": "279136900", "note": [{"label": ["https://fr.wikipedia.org/wiki/Susurluk"], "noteType": "dataSource"}, {"label": ["Ville de Turquie"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279136900", "source": "IDREF"}], "authorized_access_point": "Susurluk"} 1 +2024-09-11 09:11:31.814329 2024-09-11 09:11:31.814338 498bf2ba-515a-42ee-9199-c9cfc7d576e7 {"md5": "c323dde0fb34c089f46b0c498aa161ee", "pid": "279146884", "note": [{"label": ["Konstanz / copied in 1951 from Central Europe, 1:250,000, GSGS, sheet L48, 1943 ; prepared by the Army map service (AMS), corps of engineers, U.S. army, Washington D.C. ; main communications revised from intelligence data, 1951, universal transverse Mercator grid added and marginal data revised by AMS ; printed by Army map service, corps of engineers, 10-1951, 1951"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279146884", "source": "IDREF"}], "authorized_access_point": "Bade-Wurtemberg (Allemagne ; sud)"} 1 +2024-09-11 09:11:31.889806 2024-09-11 09:11:31.88981 4bbcd30b-c2de-4c03-9f1e-1d4f1db80e77 {"md5": "2bdf3c0d55c0c10f3304f980e8555ef9", "pid": "279147546", "note": [{"label": ["http://www.geonames.org/, 2024-07-02"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Shelby"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279147546", "source": "IDREF"}], "authorized_access_point": "Sigel (Ill.)"} 1 +2024-09-11 09:11:31.953407 2024-09-11 09:11:31.953414 abe206f7-643a-40c8-b6f6-899c9f9104cf {"md5": "a753b7049436c123ec1914b1f355539e", "pid": "279147708", "note": [{"label": ["http://www.geonames.org/, 2024-07-02"], "noteType": "dataSource"}, {"label": ["Situé dans le comté d'Effingham"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279147708", "source": "IDREF"}], "authorized_access_point": "Teutopolis (Ill.)"} 1 +2024-09-11 09:11:32.023661 2024-09-11 09:11:32.023665 eaacf487-bcf9-416e-9f3b-a53141528460 {"md5": "554ff2c45764eb13e2940e278f9dfbfd", "pid": "27914783X", "note": [{"label": ["http://www.geonames.org/, 2024-07-02"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Jasper"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27914783X", "source": "IDREF"}], "authorized_access_point": "Wheeler (Ill.)"} 1 +2024-09-11 09:11:32.247884 2024-09-11 09:11:32.247894 93860e4c-1d05-471c-bf02-99da55e4de82 {"md5": "802cdc968f16ba4114991b141f20e1a0", "pid": "279149492", "note": [{"label": ["Isso / Hergestellt im Auftrage Gen St d H Abt f Kr Kart u Verm Wes (II), 1941", "http://www.geonames.org, 2024-07-02"], "noteType": "dataSource"}, {"label": ["N 38°29′27″ W 1°44′34″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Castille-La Manche (Espagne)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279149492", "source": "IDREF"}], "authorized_access_point": "Isso (Espagne)"} 1 +2024-09-11 09:11:32.311019 2024-09-11 09:11:32.311027 5c12ccfd-eb72-4158-b9c3-d47a1bea27b4 {"md5": "a76c2bbf2fec8174e24fefd0b50c7026", "pid": "279149522", "note": [{"label": ["Atlas geografico de la republica argentina / Instituto geográfico militar, 2001", "L'Atlas national geographic, 2007"], "noteType": "dataSource"}, {"label": ["LCSH, 2024-06-27"], "noteType": "dataNotFound"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279149522", "source": "IDREF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "915"}], "authorized_access_point": "Tandil, Sierra del (Argentine)"} 1 +2024-09-11 09:11:32.385572 2024-09-11 09:11:32.385582 84c28eec-7a5a-4754-a805-b04e24a196e6 {"md5": "c4bbbc48dac8acc60e50c4dab661a2f1", "pid": "279150350", "note": [{"label": ["http://www.geonames.org/, 2024-07-02"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279150350", "source": "IDREF"}], "authorized_access_point": "Embarrass river (Ill. ; cours d'eau)"} 1 +2024-09-11 09:11:32.453524 2024-09-11 09:11:32.453528 ab46d200-0e1d-4135-be09-3d666fcdb511 {"md5": "4de2958f6e6b7ef5f5452f3608c66b81", "pid": "279150504", "note": [{"label": ["http://www.geonames.org/, 2024-07-02"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Cumberland"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279150504", "source": "IDREF"}], "authorized_access_point": "Toledo (Ill.)"} 1 +2024-09-11 09:11:32.511003 2024-09-11 09:11:32.511007 1f0d63d1-297e-4094-8c7c-f0511b516efc {"md5": "6b92dc3af83f7c1a00674640495d7fde", "pid": "279150911", "note": [{"label": ["http://www.geonames.org/, 2024-07-02"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Douglas et Platt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279150911", "source": "IDREF"}], "authorized_access_point": "Atwood (Ill.)"} 1 +2024-09-11 09:11:32.571912 2024-09-11 09:11:32.571915 3dbce565-e500-4766-b441-81bad3590569 {"md5": "6c8855eceed826858041c60df9abe44d", "pid": "279150989", "note": [{"label": ["http://www.geonames.org/, 2024-07-02"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Douglas"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279150989", "source": "IDREF"}], "authorized_access_point": "Tuscola (Ill.)"} 1 +2024-09-11 09:11:32.626383 2024-09-11 09:11:32.626387 fdff24b8-1cd0-4ef9-980d-0b10a8e0f2ec {"md5": "9268328bb89cd87eddde5f660fec7e75", "pid": "279152426", "note": [{"label": ["Mapa geológico de España E. 1:50 000 351 / Instituto geológico y minero de España ; M. Martín Fernández, J.M. Esnaola Gómez, 1972, DL 1973.", "https://www.geonames.org/3115088/olvega.html, 2024-07-02"], "noteType": "dataSource"}, {"label": ["Vile, province de Soria"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279152426", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/238431643", "source": "VIAF"}], "authorized_access_point": "Olvega (Espagne)"} 1 +2024-09-11 09:11:32.677614 2024-09-11 09:11:32.677618 3cfd3c4f-f467-4e96-a757-95c959fe2bee {"md5": "582ee9f10c1336ca4dd77b142e0ee1ba", "pid": "27915397X", "note": [{"label": ["http://www.geonames.org/, 2024-07-02"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Johnson"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27915397X", "source": "IDREF"}], "authorized_access_point": "Vienna (Ill.)"} 1 +2024-09-11 09:11:32.73538 2024-09-11 09:11:32.735384 7afa4e64-73b7-4c4b-b4d9-b54d8557c477 {"md5": "1290c0325148f195a1a66513e1dc1e82", "pid": "279154097", "note": [{"label": ["http://www.geonames.org/, 2024-07-02"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Pulaski"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279154097", "source": "IDREF"}], "authorized_access_point": "Karnak (Ill.)"} 1 +2024-09-11 09:11:32.785514 2024-09-11 09:11:32.785516 cc25c9cb-e4f1-43a5-8546-1cf1cbe7c703 {"md5": "cce0288148b5be73878fff3665823731", "pid": "279154437", "note": [{"label": ["http://www.geonames.org/, 2024-07-02"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Champaign"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279154437", "source": "IDREF"}], "authorized_access_point": "Philo (Ill.)"} 1 +2024-09-11 09:11:32.832146 2024-09-11 09:11:32.832148 057361a8-fa73-4e4f-9c86-8726daed60ba {"md5": "14841190f9b4334fc78e70758c6c84b7", "pid": "279154488", "note": [{"label": ["http://www.geonames.org/, 2024-07-02"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Douglas"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279154488", "source": "IDREF"}], "authorized_access_point": "Villa Grove (Ill.)"} 1 +2024-09-11 09:11:32.890975 2024-09-11 09:11:32.890979 7f7d83fe-b9e6-4b8e-9a97-c2672d02cde5 {"md5": "c26f82d48a8e6cc2ba52a6139044bb82", "pid": "279154542", "note": [{"label": ["http://calames.abes.fr/pub/ms/Calames-202405241694556323"], "noteType": "dataSource"}, {"label": ["ville de la province d'İzmir, rquie"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279154542", "source": "IDREF"}], "variant_access_point": ["Kordelió"], "authorized_access_point": "Karşiaka"} 1 +2024-09-11 09:11:33.032083 2024-09-11 09:11:33.032092 ca80c52f-ce77-43af-99ee-7ffef01f777a {"md5": "ebc4ad05adbfc039609b7b8a4761afc6", "pid": "279156766", "note": [{"label": ["Lower Eocene phosphatized Globigerina ooze from Sylvania Guyot / by Edwin L. Hamilton and Robert W. Rex, 1959."], "noteType": "dataSource"}, {"label": ["Guyot ou Tablemount, mont sous-marin volcanique"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279156766", "source": "IDREF"}, {"type": "uri", "value": "http://viaf.org/viaf/315167742", "source": "VIAF"}], "variant_access_point": ["Wōdejebato (iles Marshall)"], "authorized_access_point": "Sylvania Tablemount (iles Marshall)"} 1 +2024-09-11 09:11:33.111108 2024-09-11 09:11:33.111113 047b73ed-b8ce-4a0c-a7f5-058b5c065d67 {"md5": "bf90ff12ce3bf4b0d9811595d863fc4d", "pid": "279158475", "note": [{"label": ["http://www.geonames.org/, 2024-07-02"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Cass"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279158475", "source": "IDREF"}], "authorized_access_point": "Virginia (Ill.)"} 1 +2024-09-11 09:11:33.163779 2024-09-11 09:11:33.163783 149408b9-c29c-4ee8-aa3b-103c7305ac87 {"md5": "df45373b9f990324a04d70b20dc9b88f", "pid": "279158599", "note": [{"label": ["http://www.geonames.org/, 2024-07-02"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Morgan"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279158599", "source": "IDREF"}], "authorized_access_point": "Portuguese Hill (Ill.)"} 1 +2024-09-11 09:11:33.221969 2024-09-11 09:11:33.221971 123b0070-e71c-43a9-8dfa-93474628ebde {"md5": "09abc78eba21dcb2e4e47821317be8ce", "pid": "27915948X", "note": [{"label": ["http://www.geonames.org/, 2024-07-02"], "noteType": "dataSource"}, {"label": ["Situé dans le comté d'Effingham"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27915948X", "source": "IDREF"}], "authorized_access_point": "Elliottstown (Ill.)"} 1 +2024-09-11 09:11:33.282094 2024-09-11 09:11:33.282102 9300a347-f0f5-4f28-a68f-5390d16c992c {"md5": "a40414ceda088b458cf64448cfe81b5a", "pid": "279166303", "note": [{"label": ["https://web.archive.org/web/20240127115300/https://www.slate.fr/story/221376/grecs-empire-ottoman-revolution-independance-guerre"], "noteType": "dataSource"}, {"label": ["village grec d'Asie Mineure face à l'île de Farmakonisi"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279166303", "source": "IDREF"}], "authorized_access_point": "Gérontas"} 1 +2024-09-11 09:11:33.346215 2024-09-11 09:11:33.34622 50d78321-c7dd-45e5-8556-2f2d1c296d16 {"md5": "32cd4f61749032f6182ddd340fb1ee5b", "pid": "279167334", "note": [{"label": ["https://fr.wikipedia.org/wiki/Kayak%C3%B6y"], "noteType": "dataSource"}, {"label": ["quartier du district de Fethiye dans la province de Muğla - Turquie"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279167334", "source": "IDREF"}], "variant_access_point": ["Λιβίσσι", "Livissi"], "authorized_access_point": "Kayaköy"} 1 +2024-09-11 09:11:33.416994 2024-09-11 09:11:33.416998 ed9c4e57-e3fb-4c17-9a6f-ff8e5f4f291e {"md5": "3f16bb3bc9bc40b415a0b404b83c0491", "pid": "27918669X", "note": [{"label": ["Venta de Cárdenas / Hergestellt im Auftrage Gen St d H Abt f Kr Kart u Verm Wes (II), 1941", "http://www.geonames.org, 2024-07-03"], "noteType": "dataSource"}, {"label": ["N 38°25′00″ W 3°29′49″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Castille-La Manche (Espagne)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27918669X", "source": "IDREF"}], "authorized_access_point": "Venta de Cárdenas (Espagne)"} 1 +2024-09-11 09:11:33.485847 2024-09-11 09:11:33.485851 0f53e095-43d6-4a12-b025-6ad1c4ac7a23 {"md5": "ab23f4af0790135df73bf820be155e00", "pid": "279187610", "note": [{"label": ["From Wilderness to Paradise. A Sixth-Century Mosaic Pavement at Qasr el-Lebia in Cyrenaica, Libya / Jane Chick"], "noteType": "dataSource"}, {"label": ["Ville située à 66 km au nord-ouest de Bayda. Site archéologique remarquable pour ses mosaïques byzantines"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279187610", "source": "IDREF"}], "variant_access_point": ["Qasr Libya", "Qasr Lebia"], "authorized_access_point": "Qasr al-Lebia (Lybie ; site archéologique)"} 1 +2024-09-11 09:11:33.557782 2024-09-11 09:11:33.55779 bbaa117a-925b-44df-b20f-9edee0933872 {"md5": "5471491cdf724785a97dd2b03d45e332", "pid": "279188994", "note": [{"label": ["http://www.geonames.org/, 2024-07-03"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Lee"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279188994", "source": "IDREF"}], "authorized_access_point": "Harmon (Ill.)"} 1 +2024-09-11 09:11:33.627387 2024-09-11 09:11:33.627391 9f2a2cf1-fa5a-43c1-9f30-ccb3e73afa8d {"md5": "5b55a4e1687eb37f3733d99e26032f48", "pid": "279189087", "note": [{"label": ["http://www.geonames.org/, 2024-07-03"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Bureau"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279189087", "source": "IDREF"}], "authorized_access_point": "Walnut (Ill.)"} 1 +2024-09-11 09:11:33.681548 2024-09-11 09:11:33.681552 f2438348-c51a-49ff-8d41-cf13c26f36b7 {"md5": "55fe93d4baa4f0b3f560d837094a71a4", "pid": "279189249", "note": [{"label": ["http://www.geonames.org/, 2024-07-03"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Bureau"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279189249", "source": "IDREF"}], "authorized_access_point": "New Bedford (Ill.)"} 1 +2024-09-11 09:11:33.746426 2024-09-11 09:11:33.74643 0c3c2728-526f-4af3-9cd9-8b33b75a7323 {"md5": "5103c904c1cccdeaf1a6c9d98bb7a437", "pid": "279192576", "note": [{"label": ["El exconvento y templo de San Pablo Huitzo, 1995:", "BGN gaz. of Mexico", "Historia del corregimiento de Guaxolotitlan (Huitzo) durante la colonia, siglos XVI al XIX, 2000:", "GEOnet, Mar. 1, 2004"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279192576", "source": "IDREF"}, {"type": "uri", "value": "https://viaf.org/viaf/157285506", "source": "VIAF"}], "variant_access_point": ["Huitzo (Mexique)"], "authorized_access_point": "San Pablo Huitzo (Mexique)"} 1 +2024-09-11 09:11:33.814717 2024-09-11 09:11:33.814722 2d37602d-921b-4f88-83cd-f9fbe87a7ca7 {"md5": "5e494999379768c4c8910ce5aea82fc1", "pid": "27919269X", "note": [{"label": ["http://www.geonames.org/, 2024-07-02"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Sangamon"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27919269X", "source": "IDREF"}], "authorized_access_point": "Curran (Ill.)"} 1 +2024-09-11 09:11:33.875858 2024-09-11 09:11:33.875861 addb65e7-f025-405e-abbf-320a84e7c811 {"md5": "2c14fc8e0825a25913adfe4b157dd8f2", "pid": "279192800", "note": [{"label": ["http://www.geonames.org/, 2024-07-03"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Morgan"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279192800", "source": "IDREF"}], "authorized_access_point": "Waverly (Ill.)"} 1 +2024-09-11 09:11:33.935354 2024-09-11 09:11:33.935358 cb99e306-05d6-46d0-be6f-e3e3459c7c6f {"md5": "cbc235a3ae1656935ed78fdb88bbcc6b", "pid": "27919305X", "note": [{"label": ["http://www.geonames.org/, 2024-07-03"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Jefferson"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27919305X", "source": "IDREF"}], "authorized_access_point": "Bluford (Ill.)"} 1 +2024-09-11 09:11:33.994755 2024-09-11 09:11:33.994759 74713df3-caaf-4fd5-95f6-f272897e2847 {"md5": "68ebd5f8a8548d0331b3bc582492265c", "pid": "279193092", "note": [{"label": ["http://www.geonames.org/, 2024-07-03"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Wayne"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279193092", "source": "IDREF"}], "authorized_access_point": "Wayne City (Ill.)"} 1 +2024-09-11 09:11:34.062585 2024-09-11 09:11:34.06259 c1a9f5f1-1cca-4aa3-8bd8-2a6930c083a4 {"md5": "635163159ee9fbe173b15a86ac4ec77b", "pid": "279193181", "note": [{"label": ["http://www.geonames.org/, 2024-07-03"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Wayne"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279193181", "source": "IDREF"}], "authorized_access_point": "Sims (Ill.)"} 1 +2024-09-11 09:11:34.148115 2024-09-11 09:11:34.14812 dca6d57b-2102-4b32-bcf5-7c974ba2db6d {"md5": "e9defb548bcc974d90610a56ae6bf4cb", "pid": "27919336X", "note": [{"label": ["https://fr.wikipedia.org/wiki/Johnston_City/, 2024-07-03"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Williamson"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27919336X", "source": "IDREF"}], "authorized_access_point": "Johnson City (Ill.)"} 1 +2024-09-11 09:11:34.214413 2024-09-11 09:11:34.214418 441a05ab-68d9-4156-8487-fecbeb04e557 {"md5": "fc086365d1f2e565d803acf14d85908d", "pid": "279193750", "note": [{"label": ["http://www.geonames.org/, 2024-07-03"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de DuPage"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279193750", "source": "IDREF"}], "authorized_access_point": "Itasca (Ill.)"} 1 +2024-09-11 09:11:34.275092 2024-09-11 09:11:34.275097 494ee3f3-1551-48bf-904b-c2533b0e037d {"md5": "5dd332817eb037db5398e86797f7e329", "pid": "279199929", "note": [{"label": ["GeoNames (2024-07-03)"], "noteType": "dataSource"}, {"label": ["Shabeellaha Dhexe est une région du sud est de la Somalie, avec façade orientale sur l'Océan Indien, limitrophe des provinces somalies de Galguduud au nord-est, de Hiiraan au nord, et de Shabeellaha Hoose et de Banaadir au sud-ouest.", "Coordonnées en degrés séxagésimaux : N 3°00′00″ / E 46°00′00″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Somalie"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279199929", "source": "IDREF"}], "variant_access_point": ["Middle Shebelle"], "authorized_access_point": "Shabeellaha Dhexe (Somalie ; région)"} 1 +2024-09-11 09:11:34.341823 2024-09-11 09:11:34.341831 b899d6cd-2fcd-4cbd-9c42-d93f707df3c3 {"md5": "813128eb15bb1ee62a7615e5ec570202", "pid": "279200471", "note": [{"label": ["Beas de Segura / Hergestellt im Auftrage Gen St d H Abt f Kr Kart u Verm Wes (II), 1941", "http://www.geonames.org, 2024-07-03"], "noteType": "dataSource"}, {"label": ["N 38°15′09″ W 2°53′20″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Andalousie (Espagne)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279200471", "source": "IDREF"}], "authorized_access_point": "Beas de Segura (Espagne)"} 1 +2024-09-11 09:11:34.41091 2024-09-11 09:11:34.410919 0f4e60f9-697e-49b8-a66f-6427e6eca172 {"md5": "f06e37d84a500086178efac0cfd3b476", "pid": "279207646", "note": [{"label": ["Rattachement du Dauphiné à la France, 1349-1949 : exposition organisée pour le VIe centenaire au Château de Versailles, 28 septembre-15 novembre 1949 / [catalogue rédigé par Mademoiselle Marguerite Jallut] ; [avant-propos de Maurichau-Beaupré], 1949"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279207646", "source": "IDREF"}], "authorized_access_point": "Dauphiné (France) - 1349 (Annexion à la France)"} 1 +2024-09-11 09:11:34.482281 2024-09-11 09:11:34.482285 2d02fc41-0387-443a-8f6d-ce0c11766c5f {"md5": "07adf5e08c886fd4da67e2e168f9ff85", "pid": "279209592", "note": [{"label": ["Wikipédia, https://zh.wikipedia.org/wiki/%E5%8F%A5%E5%AE%B9%E5%B8%82, 2024-07-04", "試辦句容縣人口農業總調查報告 : 民國二十三年 / 吳相湘 主編, 1971", "Shi ban Jurong xian ren kou nong ye zong diao cha bao gao : min guo er shi san nian / Wu Xiangxiang zhu bian, 1971"], "noteType": "dataSource"}, {"label": ["Ville-district de la province du Jiangsu"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Jiangsu Sheng (Chine ; province)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279209592", "source": "IDREF"}], "variant_access_point": ["句容县", "句容縣", "Jurong Xian", "句容市", "Jurong Shi"], "authorized_access_point": "Jurong Shi (Chine)"} 1 +2024-09-11 09:11:34.553635 2024-09-11 09:11:34.553642 385929f1-42ed-4d40-b6ab-a09810af8e15 {"md5": "1b0e647da792b9e6b7473e7e0f2b098f", "pid": "279209754", "note": [{"label": ["http://www.geonames.org/, 2024-07-04"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Will"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279209754", "source": "IDREF"}], "authorized_access_point": "Wilmington (Ill.)"} 1 +2024-09-11 09:11:34.616576 2024-09-11 09:11:34.616579 6e774913-c8dd-47bd-9f21-806b95a54140 {"md5": "f2b5c560b977f7d62b9bc51798f99e25", "pid": "279209886", "note": [{"label": ["http://www.geonames.org/, 2024-07-04"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Will"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279209886", "source": "IDREF"}], "authorized_access_point": "Braidwood (Ill.)"} 1 +2024-09-11 09:11:34.666989 2024-09-11 09:11:34.666993 b6f2dcef-a8d0-418f-a18d-4b550ab82ecd {"md5": "9f1ba4ab22b54e49c84ed9398a6a7e10", "pid": "279210809", "note": [{"label": ["Yetas de Abajo / Hergestellt im Auftrage Gen St d H Abt f Kr Kart u Verm Wes (II), 1941", "http://www.geonames.org, 2024-07-04"], "noteType": "dataSource"}, {"label": ["N 38°14′07″ W 2°19′37″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Castille-La Manche (Espagne)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279210809", "source": "IDREF"}], "authorized_access_point": "Yetas de Abajo (Espagne)"} 1 +2024-09-11 09:11:34.724343 2024-09-11 09:11:34.724346 2911eccb-2e45-42af-98b7-7e3565a62764 {"md5": "74dfa55bd03e1db8e46bade33e95023f", "pid": "279211066", "note": [{"label": ["http://www.geonames.org/, 2024-07-04"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Scott"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279211066", "source": "IDREF"}], "authorized_access_point": "Winchester (Ill.)"} 1 +2024-09-11 09:11:34.78562 2024-09-11 09:11:34.785623 079883e2-1b4e-4a6d-b66c-722d3bbcc64a {"md5": "d36c90993d40cd9fb28e0e39e9a5dba2", "pid": "279211147", "note": [{"label": ["http://www.geonames.org/, 2024-07-04"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Greene"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279211147", "source": "IDREF"}], "authorized_access_point": "Barrow (Ill.)"} 1 +2024-09-11 09:11:34.857835 2024-09-11 09:11:34.857839 b4ad433a-0936-462c-9f6c-c8e37e730335 {"md5": "c9070c19cc246f6ec63a9f07face3fe9", "pid": "279214944", "note": [{"label": ["http://www.geonames.org/, 2024-07-04"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Knox"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279214944", "source": "IDREF"}], "authorized_access_point": "Rio (Ill.)"} 1 +2024-09-11 09:11:34.916909 2024-09-11 09:11:34.916917 771e365d-eb24-48e2-a487-b9f73a4d0e22 {"md5": "a952f0551233a8f86a9a0ddc2dfcfd1e", "pid": "279214960", "note": [{"label": ["http://www.geonames.org/, 2024-07-04"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Knox"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279214960", "source": "IDREF"}], "authorized_access_point": "Wataga (Ill.)"} 1 +2024-09-11 09:11:34.987003 2024-09-11 09:11:34.987008 636b39a0-6035-4775-910b-de75e60e4fb3 {"md5": "4f80e77f75e9c07002aa4285d8770f7a", "pid": "279215142", "note": [{"label": ["http://www.geonames.org/, 2024-07-04"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Clay"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279215142", "source": "IDREF"}], "authorized_access_point": "Xenia (Ill.)"} 1 +2024-09-11 09:11:35.050828 2024-09-11 09:11:35.050831 0df6908f-c00e-4be7-a36c-329dc7736a79 {"md5": "10bf39182974263479851ee3b6e0553c", "pid": "279215258", "note": [{"label": ["http://www.geonames.org/, 2024-04-07"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Wayne"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279215258", "source": "IDREF"}], "authorized_access_point": "Johnsonville (Ill.)"} 1 +2024-09-11 09:11:35.107267 2024-09-11 09:11:35.107271 f3e980c4-2f18-4ef2-b4cf-6cdeb51edf03 {"md5": "e6635901d33e56ab882299a2b5fdcd75", "pid": "279215347", "note": [{"label": ["http://www.geonames.org/, 2024-07-04"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Wayne"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279215347", "source": "IDREF"}], "authorized_access_point": "Orchardville (Ill.)"} 1 +2024-09-11 09:11:35.160283 2024-09-11 09:11:35.160287 9277d8f6-5506-40d4-9710-6bba4f46bf08 {"md5": "a44580e6198a84191640b02d071af201", "pid": "279219717", "note": [{"label": ["http://www.geonames.org/, 2024-07-04"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Warrick"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279219717", "source": "IDREF"}], "variant_access_point": ["Degonia Springs"], "authorized_access_point": "De Gonia Springs (Ind.)"} 1 +2024-09-11 09:11:35.220173 2024-09-11 09:11:35.220177 d49bd565-dcf3-4068-830e-61a70c8b6a0f {"md5": "9001b179ac40558b094d3ea600790d29", "pid": "279221487", "note": [{"label": ["Wikipédia, https://zh.wikipedia.org/wiki/%E9%AB%98%E9%9D%92%E5%8E%BF, 2024-07-04", "高青县志 / 高青县地方史志编纂委员会编, 1991", "Gaoqing xian zhi / Gaoqing xian di fang shi zhi bian zuan wei yuan hui bian, 1991"], "noteType": "dataSource"}, {"label": ["District de la province du shandong"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Shandong (Chine)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279221487", "source": "IDREF"}], "variant_access_point": ["高青縣", "高青县", "Gaoqing Xian"], "authorized_access_point": "Gaoqing Xian (Chine)"} 1 +2024-09-11 09:11:35.263661 2024-09-11 09:11:35.263664 60523199-3b3a-4b34-ab12-d123a1d6912d {"md5": "e14aeafcb9b16b1bbfb2603ec47414ff", "pid": "279230087", "note": [{"label": ["L'antica chiesa di San Costanzo sul monte in Villar San Costanzo (Cuneo) / Eugenio Olivero, 1929"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279230087", "source": "IDREF"}], "authorized_access_point": "Villar San Costanzo (Italie) - Chiesa di San Costanzo sul Monte"} 1 +2024-09-11 09:11:35.321637 2024-09-11 09:11:35.321641 fb714a3c-ffae-4abb-98e5-633df524b88c {"md5": "55dae77699bb6dbb2341d68b0b82ce8a", "pid": "279231547", "note": [{"label": ["http://www.geonames.org/, 2024-07-05", "https://en.wikipedia.org/wiki/Big_Blue_River_(Indiana), 2024-07-05"], "noteType": "dataSource"}, {"label": ["La Big Blue River est un affluent de la Driftwood River d'une longueur dans le centre-est de l'Indiana aux États-Unis. Par l'intermédiaire des rivières Driftwood, White, Wabash et Ohio, elle fait partie du bassin versant du fleuve Mississippi. La rivière prend sa source dans le nord-est du comté de Henry et s'écoule généralement vers le sud-ouest à travers les comtés de Rush, Hancock, Shelby et Johnson, en passant par les villes de New Castle, Knightstown, Carthage, Morristown, Shelbyville et Edinburgh"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279231547", "source": "IDREF"}], "variant_access_point": ["Blue river"], "authorized_access_point": "Big Blue river (Ind.)"} 1 +2024-09-11 09:11:35.386384 2024-09-11 09:11:35.386388 5bb5441e-2475-462c-8b3f-dad4bf4a9ae7 {"md5": "8ebc25e4323bda2ea03096d62d511e17", "pid": "279231679", "note": [{"label": ["http://www.geonames.org/, 2024-07-05", "https://en.wikipedia.org/wiki/Driftwood_River/, 2024-07-05"], "noteType": "dataSource"}, {"label": ["La Driftwood River se forme dans le sud-est du comté de Johnson à l'ouest d'Edinburgh, au confluent de la Sugar Creek et de la Big Blue River. Elle s'écoule généralement vers le sud à travers le nord-ouest du comté de Bartholomew jusqu'à Columbus, où elle rejoint la rivière Flatrock pour former l'East Fork of the White River"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279231679", "source": "IDREF"}], "authorized_access_point": "Driftwood river (Ind.)"} 1 +2024-09-11 09:11:35.45505 2024-09-11 09:11:35.455058 0de753a4-f6b8-427b-a0a5-b4bf469cfc7d {"md5": "81e3d922d73c6093e7b515af8aad39df", "pid": "279233493", "note": [{"label": ["http://www.geonames.org/, 2024-07-05"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Clark"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279233493", "source": "IDREF"}], "authorized_access_point": "West Union (Ill.)"} 1 +2024-09-11 09:11:35.516837 2024-09-11 09:11:35.51684 72aebb7a-60cd-4d72-b541-8b6e51faff02 {"md5": "077bb6ea61d19b1cf08efa3c8a771ef8", "pid": "279233639", "note": [{"label": ["http://www.geonames.org/, 2024-04-05"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Crawford"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279233639", "source": "IDREF"}], "authorized_access_point": "Hutsonville (Ill.)"} 1 +2024-09-11 09:11:35.583724 2024-09-11 09:11:35.583727 fccad654-196d-41bc-aead-fba48647c538 {"md5": "6395cd4770b858a29d0f718eabdde98b", "pid": "279233752", "note": [{"label": ["http://www.geonames.org/, 2024-07-05"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Crawford"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279233752", "source": "IDREF"}], "authorized_access_point": "Robinson (Ill.)"} 1 +2024-09-11 09:11:35.646446 2024-09-11 09:11:35.646451 92e95716-4cd3-4d80-9493-5a0062268ea4 {"md5": "83d63996d7b61156bf65fb4023d46a40", "pid": "279236417", "note": [{"label": ["http://www.geonames.org/, 2024-07-05", "https://en.wikipedia.org/wiki/Whitewater_River_(Great_Miami_River_tributary)/, 2024-07-05"], "noteType": "dataSource"}, {"label": ["La rivière Whitewater est un affluent droit de la rivière Great Miami, qui coule vers le sud, dans le sud-est de l'Indiana et le sud-ouest de l'Ohio, aux États-Unis"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279236417", "source": "IDREF"}], "authorized_access_point": "Whitewater river (Ohio ; cours d'eau )"} 1 +2024-09-11 09:11:35.694038 2024-09-11 09:11:35.694043 0d44fef9-7e6d-4328-9e19-3a6f4851875c {"md5": "4a23fd8efa63018d5b6cccceef52d7a0", "pid": "279236611", "note": [{"label": ["http://www.geonames.org/, 2024-07-05"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Hamilton"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279236611", "source": "IDREF"}], "authorized_access_point": "Elizabethtown (Ohio)"} 1 +2024-09-11 09:11:35.740802 2024-09-11 09:11:35.740806 54558d5d-b8cc-4780-b413-747adaa79cc7 {"md5": "c6f4b20f4f113d26338e67e3fe460f8e", "pid": "279236697", "note": [{"label": ["http://www.geonames.org/, 2024-07-05"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Boone"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279236697", "source": "IDREF"}], "authorized_access_point": "Petersburg (Ky.)"} 1 +2024-09-11 09:11:35.812181 2024-09-11 09:11:35.812186 e11c8bbd-2614-413b-80ad-08c7b8c083dc {"md5": "01bbe4815655ae68dcb38e8b1b719332", "pid": "279238037", "note": [{"label": ["http://www.geonames.org/, 2024-07-04"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Gibson"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279238037", "source": "IDREF"}], "authorized_access_point": "Somerville (Ind.)"} 1 +2024-09-11 09:11:35.874637 2024-09-11 09:11:35.874641 98c7bcfe-5a94-4e21-981e-dc40dfd0814b {"md5": "7e520e4f80a7cb5ba707413ecaa51e8f", "pid": "279245947", "note": [{"label": ["Wikipédia, https://zh.wikipedia.org/wiki/%E5%B7%B4%E5%8D%97%E5%8C%BA, 2024-07-08", "清代下层女性研究 : 以南部县、巴县档案为中心 / 毛立平著, 2023", "Qing dai xia ceng nü xing yan jiu : yi Nanbu Xian, Ba Xian dang an wei zhong xin / Mao Liping zhu, 2023"], "noteType": "dataSource"}, {"label": ["Quartier de Chongqing depuis 1994, autrefois district Ba"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chongqing (Chine)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279245947", "source": "IDREF"}], "variant_access_point": ["巴南区", "巴县", "巴南區", "Banan Qu", "巴縣", "Ba Xian"], "authorized_access_point": "Banan Qu (Chongqing, Chine)"} 1 +2024-09-11 09:11:35.932046 2024-09-11 09:11:35.932054 a0493aee-fbb3-4ffe-9e7f-7e6b9b388863 {"md5": "a5fb32a47b8688c4e24bb664c3222138", "pid": "279246358", "note": [{"label": ["Wikipédia, https://zh.wikipedia.org/wiki/%E5%8D%97%E9%83%A8%E5%8E%BF, 2024-07-08", "清代下层女性研究 : 以南部县、巴县档案为中心 / 毛立平著, 2023", "Qing dai xia ceng nü xing yan jiu : yi Nanbu Xian, Ba Xian dang an wei zhong xin / Mao Liping zhu, 2023"], "noteType": "dataSource"}, {"label": ["District de la province du Sichuan appartenant à la préfecture de Nanchong Shi"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Sichuan (Chine)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279246358", "source": "IDREF"}], "variant_access_point": ["南部縣", "南部县", "Nanbu Xian"], "authorized_access_point": "Nanbu Xian (Chine)"} 1 +2024-09-11 09:11:35.988671 2024-09-11 09:11:35.988673 dabb954b-6294-448f-9a3f-990466a34901 {"md5": "7b17460558fea8a9c57002dcfccde46e", "pid": "279247060", "note": [{"label": ["http://www.geonames.org/, 2024-07-08"], "noteType": "dataSource"}, {"label": ["La White River est une rivière au double cours irriguant le centre et le sud de l'Indiana, affluent de la Wabash River, donc un sous-affluent du fleuve le Mississippi, par l'Ohio"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279247060", "source": "IDREF"}, {"type": "uri", "value": "https://fr.wikipedia.org/wiki/White_River_(Indiana)", "source": "WIKIPEDIA"}], "authorized_access_point": "White river (Ind. ; cours d'eau)"} 1 +2024-09-11 09:11:36.04541 2024-09-11 09:11:36.045413 d059e5a6-37a1-4a06-9439-3bb58607807b {"md5": "b0f053360894a0fccbbf6aff7246aeef", "pid": "279247087", "note": [{"label": ["Regards de peintres en Cotentin : XIXe-XXe siècles : [exposition], Château de Saint-Pierre-Eglise, 24 juillet-15 août 1993 / [organisé par le festival du Cotentin ; catalogue par Monique Barbier, Brigitte Scart, Jean Fouace], 1993"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279247087", "source": "IDREF"}], "classification": [{"name": "Architecture", "type": "bf:ClassificationDdc", "classificationPortion": "720"}], "authorized_access_point": "Saint-Pierre-Église (Manche) - château"} 1 +2024-09-11 09:11:36.102697 2024-09-11 09:11:36.1027 0245b2d9-5d5a-4a37-ac86-bd213d1fce9b {"md5": "1dbfbc8f55c64979079c5f57be1cdbfa", "pid": "279247184", "note": [{"label": ["https://en.wikipedia.org/wiki/Patoka_River/, 2024-07-08"], "noteType": "dataSource"}, {"label": ["La rivière Patoka est un affluent de la rivière Wabash dans le sud-ouest de l'Indiana aux États-Unis"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279247184", "source": "IDREF"}], "authorized_access_point": "Patoka river (Ind. ; cours d'eau)"} 1 +2024-09-11 09:11:36.149533 2024-09-11 09:11:36.149536 92f4c54f-0cf2-425f-ad74-1a63b8c88bd2 {"md5": "0fec0fe9adff26cee7a289a4e67d5223", "pid": "279248180", "note": [{"label": ["http://www.geonames.org/, 2024-07-08"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Lake"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279248180", "source": "IDREF"}], "authorized_access_point": "Whiting (Ind.)"} 1 +2024-09-11 09:11:36.209715 2024-09-11 09:11:36.209719 7641e86e-0a2d-4427-9a37-f128cd9b74a9 {"md5": "dc2fca5cf11f994b5f6449d8b05d1dd4", "pid": "279248288", "note": [{"label": ["http://www.geonames.org/, 2024-07-08"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Lake"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279248288", "source": "IDREF"}], "authorized_access_point": "East Chicago (Ind.)"} 1 +2024-09-11 09:11:36.261116 2024-09-11 09:11:36.26112 9787938b-63e0-48ef-ad22-4a5e9bc2d4c0 {"md5": "dc13b757cf431e82456f2499598b53de", "pid": "279248482", "note": [{"label": ["http://www.geonames.org/, 2024-07-08"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Lake"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279248482", "source": "IDREF"}], "authorized_access_point": "Grand Calumet river (Ind. ; cours d'eau)"} 1 +2024-09-11 09:11:36.314259 2024-09-11 09:11:36.314264 cc2af027-71c3-4f34-bdd7-494e25f96ff0 {"md5": "e08a105dc440014593c2f438ab98fd6a", "pid": "279248598", "note": [{"label": ["http://www.geonames.org/, 2024-07-08"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Lake"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279248598", "source": "IDREF"}], "authorized_access_point": "Toleston (Ind.)"} 1 +2024-09-11 09:11:36.369388 2024-09-11 09:11:36.369392 5fe20a17-f338-4dd6-aee6-8ba4a6ecbdbd {"md5": "3c3d1171900921bdaac76a04ba41e240", "pid": "279248792", "note": [{"label": ["http://www.geonames.org/, 2024-07-08"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Lake"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279248792", "source": "IDREF"}], "authorized_access_point": "Griffith (Ind.)"} 1 +2024-09-11 09:11:36.430973 2024-09-11 09:11:36.430977 e0ac16ab-673a-4997-bb92-5dba1ef75bb0 {"md5": "e8bce202955071deaa98f414dbe8896b", "pid": "279249535", "note": [{"label": ["http://www.geonames.org/, 2024-07-08"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Lawrence"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279249535", "source": "IDREF"}], "authorized_access_point": "Lawrenceville (Ill.)"} 1 +2024-09-11 09:11:36.495398 2024-09-11 09:11:36.495407 a84eb956-c7a5-47aa-880d-bbe833af3bde {"md5": "8dfc2be49c2ef3fd6a0fdeeb49dce94f", "pid": "279250002", "note": [{"label": ["http://www.geonames.org/, 2024-07-08"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Dubois"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279250002", "source": "IDREF"}], "authorized_access_point": "Ireland (Ind.)"} 1 +2024-09-11 09:11:36.558905 2024-09-11 09:11:36.558909 8229ebb9-b064-4b0c-a413-bf390e2ade59 {"md5": "206061dcd4ea542d85f799e9fb0e7d66", "pid": "279250142", "note": [{"label": ["http://www.geonames.org/, 2024-07-08"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Pike"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279250142", "source": "IDREF"}], "authorized_access_point": "Pikeville (Ind.)"} 1 +2024-09-11 09:11:36.62131 2024-09-11 09:11:36.621313 e8bd06e5-2f13-42d1-81f0-4a350c87e8a2 {"md5": "20c5f12cdc8e3f2b0464dc1b1ad71fcb", "pid": "279253001", "note": [{"label": ["Dict. communes, 2001"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279253001", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb17851893t", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "912"}], "authorized_access_point": "Fontgombault (Indre)"} 1 +2024-09-11 09:11:36.668196 2024-09-11 09:11:36.668199 c113fda3-4c71-4d44-8c64-e5e7b86648e4 {"md5": "92f5bae5e97f57a909404d78462b98f4", "pid": "279255381", "note": [{"label": ["http://www.geonames.org/, 2024-07-08"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Rawlins"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279255381", "source": "IDREF"}], "authorized_access_point": "Little Beaver creek (Kan. ; cours d'eau)"} 1 +2024-09-11 09:11:36.73618 2024-09-11 09:11:36.736183 22ccb92f-1dd8-4131-a3bf-37f415c2e54c {"md5": "a06a630aab3b7d5766605551333b3bb4", "pid": "279255519", "note": [{"label": ["http://www.geonames.org/, 2024-07-08"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Rawlins"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279255519", "source": "IDREF"}], "authorized_access_point": "Atwood lake (Kan. ; lac)"} 1 +2024-09-11 09:11:36.786642 2024-09-11 09:11:36.786646 a41ff0c4-30a5-4726-ac11-21bde0c30c27 {"md5": "4ecfb3ef0a6c56e41b984c52107f755f", "pid": "279256337", "note": [{"label": ["https://en.wikipedia.org/wiki/South_Fork_Republican_River/, 2024-07-08"], "noteType": "dataSource"}, {"label": ["La South Fork Republican est une rivière qui prend sa source dans le comté de Lincoln, Colorado, États-Unis, et s'écoule vers l'est-nord-est à travers les comtés de Kit Carson et de Yuma, Colorado, et le comté de Cheyenne, Kansas, jusqu'à un confluent avec la Republican River dans le comté de Dundy, Nebraska"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279256337", "source": "IDREF"}], "authorized_access_point": "South Fork Republican river (Etats-Unis. ; cours d'eau)"} 1 +2024-09-11 09:11:36.845758 2024-09-11 09:11:36.845763 d60e9bb8-cd2f-4791-bbbf-dc8bd68343af {"md5": "3f34b8e3cf4d5c087e422d8fe3db8a49", "pid": "279256434", "note": [{"label": ["http://www.geonames.org/, 2024-07-08"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Cheyenne"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279256434", "source": "IDREF"}], "authorized_access_point": "Cole Pond (Kan. ; lac)"} 1 +2024-09-11 09:11:36.91057 2024-09-11 09:11:36.910575 7f0b5a36-e4b9-48ed-9339-455a802f3058 {"md5": "a9bad74b7df5d73719ad9ed323a889e0", "pid": "279256574", "note": [{"label": ["http://www.geonames.org/, 2024-07-08"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Cheyenne"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279256574", "source": "IDREF"}], "authorized_access_point": "Bird City (Kan.)"} 1 +2024-09-11 09:11:36.972278 2024-09-11 09:11:36.972286 9288f48c-f5cf-4466-9640-b137a1c12359 {"md5": "a81baf510d933dabc10daaafed6f79f1", "pid": "279256647", "note": [{"label": ["http://www.geonames.org/, 2024-07-08"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Wheeler"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279256647", "source": "IDREF"}], "authorized_access_point": "Wheeler (Kan.)"} 1 +2024-09-11 09:11:37.560617 2024-09-11 09:11:37.560623 35c7a66d-3af6-4a6f-911a-e89d53ba497f {"md5": "309f0463a995fb9513957617e29b6b3a", "pid": "279311443", "note": [{"label": ["http://www.geonames.org/, 2024-07-10"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Johnson"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279311443", "source": "IDREF"}], "authorized_access_point": "Merriam (Kan.)"} 1 +2024-09-11 09:11:37.031058 2024-09-11 09:11:37.031062 0c68e169-ea21-4f7d-af3a-dd25f4bc987c {"md5": "9ad2e082cb3f7fa7ddbeb91f41959a19", "pid": "279257120", "note": [{"label": ["https://en.wikipedia.org/wiki/Beaver_Creek_(Sappa_Creek_tributary)/, 2024-07-08"], "noteType": "dataSource"}, {"label": ["Beaver Creek est une rivière située dans les États du Kansas et du Nebraska. Elle prend naissance au nord-nord-est de Goodland (Kansas) et se jette dans Sappa Creek à l'ouest d'Orleans (Nebraska)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279257120", "source": "IDREF"}], "authorized_access_point": "Beaver creek (Kan., Neb. ; cours d'eau)"} 1 +2024-09-11 09:11:37.099692 2024-09-11 09:11:37.099696 50421239-460e-4e82-a7b2-b0b235fc81a8 {"md5": "b4bddd3e28461ea4f734accfb21363bc", "pid": "279263864", "note": [{"label": ["Nava Rodríguez, L. Hist. de Huamantla, 1974.", "Lippincott", "BGN gaz., Mexico, 1992"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279263864", "source": "IDREF"}, {"type": "uri", "value": "https://viaf.org/viaf/127845608", "source": "VIAF"}], "authorized_access_point": "Huamantla (Mexico)"} 1 +2024-09-11 09:11:37.147293 2024-09-11 09:11:37.147296 febadda7-01da-4f29-8b6e-8f6822e9d6b0 {"md5": "920e521493aeaa7f1087d801b0664e66", "pid": "279264410", "note": [{"label": ["Das frühmittelalterliche Gräberfeld bei Weingarten (Kr. Ravensburg) / Helmut Roth, Claudia Theune, 1995"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279264410", "source": "IDREF"}], "authorized_access_point": "Ravensburg (Allemagne ; région)"} 1 +2024-09-11 09:11:37.207815 2024-09-11 09:11:37.207819 1a075145-bd2e-474e-b3e1-351df21731ce {"md5": "e7086efff95f82adea2067b025fc202d", "pid": "279288743", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279288743", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb16247820p", "source": "BNF"}, {"type": "uri", "value": "http://viaf.org/viaf/315529013", "source": "VIAF"}], "variant_access_point": ["Pic d'Adam", "Adam's Peak (Sri Lanka)", "Sri Pada", "Samanala", "Sivanolipatha Malai", "Al-Rohun"], "authorized_access_point": "Adam, Pic d' (Sri Lanka)"} 1 +2024-09-11 09:11:37.265148 2024-09-11 09:11:37.265152 9f21f99e-b35f-4994-a122-4f7a545569ef {"md5": "ce2efea870dd9bacfce9a39a4da6dfe7", "pid": "279307500", "note": [{"label": ["Wikipédia - https://fr.wikipedia.org/wiki/Rue_de_Madagascar (2024-06-26)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Paris (France) - Arrondissement (12e)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307500", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18154746p", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "912"}], "variant_access_point": ["Madagascar, Rue de (Paris, France)", "Rue de Madagascar (Paris, France)"], "authorized_access_point": "Paris (France) - Rue de Madagascar"} 1 +2024-09-11 09:11:37.319872 2024-09-11 09:11:37.319876 6ab7c017-e857-497f-b3f2-6862b7b2ad9c {"md5": "c1b3666516bc3ef1568d43e3dbcde85b", "pid": "279307772", "note": [{"label": ["Wikipedia : Liste d'amphithéâtres romains en Italie - http://it.wikipedia.org (2024-07-02)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307772", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb181557040", "source": "BNF"}], "classification": [{"name": "Architecture", "type": "bf:ClassificationDdc", "classificationPortion": "720"}, {"type": "bf:ClassificationDdc", "classificationPortion": "914"}, {"name": "Préhistoire et histoire ancienne", "type": "bf:ClassificationDdc", "classificationPortion": "930"}], "variant_access_point": ["Amphithéâtre romain (Cuma, Italie)"], "authorized_access_point": "Cuma (Italie) - Anfiteatro romano"} 1 +2024-09-11 09:11:37.373824 2024-09-11 09:11:37.373829 cabd04d6-6363-49c5-95f9-aa4d06942303 {"md5": "29e51e8afc2914bb9a5c8207bc39bb18", "pid": "279307829", "note": [{"label": ["Kloster und Festung - Beiträge zur Geschichte des Erfurter Petersbergs : Vorträge anlässlich der Bundesgartenschau 2021 in Erfurt / Stiftung Thüringer Schlösser und Garten, 2022"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307829", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18155980n", "source": "BNF"}], "classification": [{"name": "Histoire médiévale, moderne et contemporaine (sauf la France)", "type": "bf:ClassificationDdc", "classificationPortion": "940"}], "variant_access_point": ["Festung Petersberg (Petersberg, Allemagne)", "Festung Petersberg (Erfurt, Allemagne)"], "authorized_access_point": "Petersberg (Allemagne) - Festung"} 1 +2024-09-11 09:11:37.430958 2024-09-11 09:11:37.430961 117361e1-6f12-414b-9fcd-5a8bdd204cb4 {"md5": "0e386486e249b101cfb12f636d9a6722", "pid": "279307845", "note": [{"label": ["Wikipédia - https://fr.wikipedia.org/wiki/Les_Planches_(Deauville) (2024-07-04)", "Les Planches, Deauville : 100 ans d'histoires / P. Normand, 2024"], "noteType": "dataSource"}, {"label": ["Promenade longeant la plage de Deauville sur toute sa longueur"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279307845", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18156072s", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "912"}], "variant_access_point": ["Planches, Les (Deauville, Calvados, France)", "Promenade des Planches (Deauville, Calvados, France)"], "authorized_access_point": "Deauville (Calvados, France) - Les Planches"} 1 +2024-09-11 09:11:37.495998 2024-09-11 09:11:37.496006 4ae78857-3b9d-42c1-b042-20988dc24ae1 {"md5": "fd0bf99c79e647fe390f665d51fce26a", "pid": "279311044", "note": [{"label": ["http://www.geonames.org/, 2024-07-10"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Platte"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279311044", "source": "IDREF"}], "authorized_access_point": "Iatan (Mo.)"} 1 +2024-09-11 09:11:37.621289 2024-09-11 09:11:37.621292 45360b91-ff02-403b-b4f5-7e6f838b411e {"md5": "98bf71210551507ff3e8a80c2cf563a9", "pid": "279312415", "note": [{"label": ["Une Jérusalem céleste à Bruges : le Domaine Adornes et la chapelle de Jérusalem / Jan Dumolyn et Noël Geirnaert (éd.), 2024"], "noteType": "dataSource"}, {"label": ["Domaine familial privé remontant au 15e siècle et comprenant essentiellement la chapelle de Jérusalem, des maisons-dieu et un hôtel particulier bordé d’un vaste jardin"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279312415", "source": "IDREF"}], "variant_access_point": ["Bruges (Belgique) - Domaine Adornes", "Bruges (Belgique) - Domaine des Adornes"], "authorized_access_point": "Bruges (Belgique) - Adornesdomein"} 1 +2024-09-11 09:11:37.682372 2024-09-11 09:11:37.68238 1a6a25a0-4116-468e-bd47-3463a87a9de0 {"md5": "664e8215e183732a0047af37786d6804", "pid": "279313543", "note": [{"label": ["http://www.geonames.org/, 2024-07-10"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Riley"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279313543", "source": "IDREF"}], "authorized_access_point": "Ogden (Kan.)"} 1 +2024-09-11 09:11:37.738007 2024-09-11 09:11:37.73801 7fc7eaee-668e-4c32-830f-a245fdda1782 {"md5": "b1e45e94f0db4a7d1af2efd75b7da922", "pid": "279313853", "note": [{"label": ["Die Urkunden des Pfarrarchivs von St. Ignaz in Mainz : Regesten / von Elisabeth Darapsky und Richard Dertsch, 1974"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279313853", "source": "IDREF"}], "variant_access_point": ["St. Ignaz zu Mainz", "Sankt Ignaz zu Mainz"], "authorized_access_point": "Mayence (Allemagne) - Pfarrkirche St. Ignaz"} 1 +2024-09-11 09:11:37.815346 2024-09-11 09:11:37.815356 603f87a0-66b7-433c-9a8c-89f9b5af3eb6 {"md5": "9cdf3132eb3b04dfaaabb92802143985", "pid": "279314833", "note": [{"label": ["http://www.geonames.org/, 2024-07-10"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Rawlins"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279314833", "source": "IDREF"}], "variant_access_point": ["Mc Donald"], "authorized_access_point": "McDonald (Kan.)"} 1 +2024-09-11 09:11:37.879075 2024-09-11 09:11:37.87908 5a8128e9-f088-4c6b-9b1a-36137768f0f7 {"md5": "e4eb5dc7fb5b06cdc1346ac91d4475c2", "pid": "279315287", "note": [{"label": ["http://www.geonames.org/, 2024-07-10"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Wichita"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279315287", "source": "IDREF"}], "authorized_access_point": "Marienthal (Kan.)"} 1 +2024-09-11 09:11:37.941284 2024-09-11 09:11:37.941292 e96bd2c8-0ab8-477d-b2d5-d946c9c9643f {"md5": "35a60746982744597382b820c7658217", "pid": "279315368", "note": [{"label": ["http://www.geonames.org/, 2024-07-10"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Scott"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279315368", "source": "IDREF"}], "authorized_access_point": "Whitewoman creek (Kan.)"} 1 +2024-09-11 09:11:38.002656 2024-09-11 09:11:38.002659 4b3e4cf4-fc9c-40f2-b23e-49cb2369edfd {"md5": "30305d097020a0114f7afcb1471268f6", "pid": "279315597", "note": [{"label": ["http://www.geonames.org/, 2024-07-10"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Labette"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279315597", "source": "IDREF"}], "authorized_access_point": "Mound Valley (Kan.)"} 1 +2024-09-11 09:11:38.066953 2024-09-11 09:11:38.066958 df9c100f-202b-466d-b08d-a3f89e2e5c8f {"md5": "d2d26e3ccfea69a39ca0e34de0d54e9c", "pid": "279315678", "note": [{"label": ["http://www.geonames.org/, 2024-07-10"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Labette"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279315678", "source": "IDREF"}], "authorized_access_point": "Altamont (Kan.)"} 1 +2024-09-11 09:11:38.122459 2024-09-11 09:11:38.122462 a79cc8e5-6d48-4923-a1cd-87bb47971aa8 {"md5": "9b827f1579d3f19510974dad2cf5f8dc", "pid": "279315759", "note": [{"label": ["http://www.geonames.org/, 2024-07-10"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Labette"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279315759", "source": "IDREF"}], "authorized_access_point": "Edna (Kan.)"} 1 +2024-09-11 09:11:38.176416 2024-09-11 09:11:38.17642 29946428-253a-4f12-86e2-cd9c39560a50 {"md5": "40deb9ca018def2f38f196f72a51b53c", "pid": "279316232", "note": [{"label": ["http://www.geonames.org/, 2024-07-10"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Dacartur"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279316232", "source": "IDREF"}], "authorized_access_point": "Norcatur (Kan.)"} 1 +2024-09-11 09:11:38.232762 2024-09-11 09:11:38.232764 6ffd17b4-f55a-4d47-b92c-d32d50f36b3f {"md5": "270e29165669037f71773f0912683df9", "pid": "279316291", "note": [{"label": ["http://www.geonames.org/, 2024-07-10"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Norton"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279316291", "source": "IDREF"}], "authorized_access_point": "Dellvale (Kan.)"} 1 +2024-09-11 09:11:39.066953 2024-09-11 09:11:39.066962 37830a38-cf10-4bb9-8dd9-9d23d8eaf7c3 {"md5": "cda269a2126aac63bf12bb78c84f4499", "pid": "279353162", "note": [{"label": ["http://www.geonames.org/, 2024-07-11"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Comanche"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279353162", "source": "IDREF"}], "authorized_access_point": "Bluff creek (Kan. ; cours d'eau)"} 1 +2024-09-11 09:11:38.290183 2024-09-11 09:11:38.290188 0c855974-692c-475a-8424-c881ff936a5f {"md5": "31d8dab42cae5d4be4a7c706c873e070", "pid": "279333013", "note": [{"label": ["Coordonnées géographiques : E 1°7'13\\" / N 49°40'30\\"", "Coordonnées Lambert : 05120 25204 +5121 12201 -1351 55194", "Feuille IGN 1:50 000 : 2010. Feuille IGN 1:25 000 : W", "Code INSEE : 76656"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279333013", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb152752410", "source": "BNF"}], "authorized_access_point": "Saint-Victor-l'Abbaye (Seine-Maritime, France)"} 1 +2024-09-11 09:11:38.353417 2024-09-11 09:11:38.353421 ef00e6be-fbc4-49d8-bdfd-b15731ab5ba3 {"md5": "5e93e9fe6786c756e3fb4ec7efb014b4", "pid": "279334699", "note": [{"label": ["http://www.geonames.org/, 2024-07-11"], "noteType": "dataSource"}, {"label": ["Prairie Dog Creek est un cours d'eau situé dans le centre des Grandes Plaines d'Amérique du Nord. Affluent de la rivière Republican, il s'écoule sur 396 km à travers les États américains du Kansas et du Nebraska"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279334699", "source": "IDREF"}], "authorized_access_point": "Prairie Dog creek (Kan. ; cours d'eau)"} 1 +2024-09-11 09:11:38.417019 2024-09-11 09:11:38.417026 c192d7ff-dc23-4e83-88fd-99c2aaebfea3 {"md5": "5bc9657be5525433c4bdc3d2dc22b9ec", "pid": "279334982", "note": [{"label": ["http://www.geonames.org/, 2024-07-11"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Decatur"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279334982", "source": "IDREF"}], "authorized_access_point": "Traer (Kan.)"} 1 +2024-09-11 09:11:38.480753 2024-09-11 09:11:38.48076 c3a98091-879f-4e2c-b722-f250463fdf47 {"md5": "72d15834bbe7ff7cb15a844eb5c684bd", "pid": "279335156", "note": [{"label": ["http://www.geonames.org/, 2024-07-11"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Decartur"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279335156", "source": "IDREF"}], "authorized_access_point": "Cedar Bluffs (Kan.)"} 1 +2024-09-11 09:11:38.537119 2024-09-11 09:11:38.537122 f41860bc-72b1-4988-897a-aa3e8dc9e798 {"md5": "3596708cc914f79c3f6bc95b99afd4b5", "pid": "279335512", "note": [{"label": ["http://www.geonames.org/, 2024-07-11"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Labette"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279335512", "source": "IDREF"}], "authorized_access_point": "Labette (Kan.)"} 1 +2024-09-11 09:11:38.597006 2024-09-11 09:11:38.59701 5a2bd8a7-ddfe-42e5-9580-6095a43d1f86 {"md5": "37c3598ad64426dc13d3c3f60e687da3", "pid": "27933558X", "note": [{"label": ["http://www.geonames.org/, 2024-07-11"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Labette"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27933558X", "source": "IDREF"}], "authorized_access_point": "Oswego (Kan.)"} 1 +2024-09-11 09:11:38.647384 2024-09-11 09:11:38.647388 948ba68b-73ba-462c-afcc-80131b138239 {"md5": "0b3b07984e7a3285919334f61d0e5772", "pid": "279347642", "note": [{"label": ["http://www.geonames.org/, 2024-07-11"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Neosho"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279347642", "source": "IDREF"}], "authorized_access_point": "Thayer (Kan.)"} 1 +2024-09-11 09:11:38.71339 2024-09-11 09:11:38.713394 0fa93e9c-1aad-4314-8405-d3295bb60e42 {"md5": "64571afa8886ed4b1cace9f5f9ed9695", "pid": "279348304", "note": [{"label": ["http://www.geonames.org/, 2024-07-11"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Barton"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279348304", "source": "IDREF"}], "authorized_access_point": "Mindenmines (Mo.)"} 1 +2024-09-11 09:11:38.780123 2024-09-11 09:11:38.780131 fcbc2e37-3322-4b32-801e-463551347d0f {"md5": "fb8b64de066722e33cb93022f8c54acc", "pid": "279348363", "note": [{"label": ["http://www.geonames.org/, 2024-07-11"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Jasper"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279348363", "source": "IDREF"}], "authorized_access_point": "Asbury (Mo.)"} 1 +2024-09-11 09:11:38.854714 2024-09-11 09:11:38.854719 4468fce1-174f-4489-b669-67c9ee972338 {"md5": "26234be7662584b4859f3c4060b7a316", "pid": "279349807", "note": [{"label": ["Les balades botaniques de la Société botanique de Genève : Le Bois des Bouchets : balade n° 3 / [texte et photographies:] Catherine Lambelet-Haueter, 2023"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279349807", "source": "IDREF"}], "authorized_access_point": "Bouchets, Bois des (Genève, Suisse)"} 1 +2024-09-11 09:11:38.936444 2024-09-11 09:11:38.936448 5f7de5c1-f8bc-424a-8679-f0778416d60f {"md5": "bbf7ee502d51003b993f15264b9fdb53", "pid": "279351747", "note": [{"label": ["http://www.geonames.org/, 2024-07-11"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Scott"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279351747", "source": "IDREF"}], "authorized_access_point": "Shallow Water (Kan.)"} 1 +2024-09-11 09:11:39.003153 2024-09-11 09:11:39.003161 c476e489-1fde-43c5-90d9-41f0d0c0ba49 {"md5": "d7ef356bcb37d234c40c6164b176f158", "pid": "279351879", "note": [{"label": ["http://www.geonames.org/, 2024-07-11"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Finney"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279351879", "source": "IDREF"}], "authorized_access_point": "Friend (Kan.)"} 1 +2024-09-11 09:11:39.126601 2024-09-11 09:11:39.126605 623e9206-9dd2-40f4-aaa1-8a38fb8d7060 {"md5": "4f40f7e5d723730f1d25c106b8edb119", "pid": "279353308", "note": [{"label": ["http://www.geonames.org/, 2024-07-11"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Clark"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279353308", "source": "IDREF"}], "authorized_access_point": "Sitka (Kan.)"} 1 +2024-09-11 09:11:39.17376 2024-09-11 09:11:39.173764 fd2a788e-9978-46a9-83d1-ef5a5f570d4d {"md5": "59d6d5a2a6cc85b0d9f5c7469529aca5", "pid": "279353928", "note": [{"label": ["http://www.geonames.org/, 2024-07-11"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Wallace"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279353928", "source": "IDREF"}], "authorized_access_point": "Wallace (Kan.)"} 1 +2024-09-11 09:11:39.226938 2024-09-11 09:11:39.226942 3a2f103f-40c8-4e53-855a-8ab63fdb4f8d {"md5": "1fa5d0711a494440ec55cb287f72f70e", "pid": "279354118", "note": [{"label": ["http://www.geonames.org/, 2024-07-11"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Wallace"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279354118", "source": "IDREF"}], "authorized_access_point": "Weskan (Kan.)"} 1 +2024-09-11 09:11:39.28762 2024-09-11 09:11:39.287627 3b7ea54a-2431-4d72-8a36-8a753d62fb80 {"md5": "e52ee383c6061e40c7c0a50fa9170042", "pid": "279354223", "note": [{"label": ["Wikipédia, https://zh.wikipedia.org/wiki/%E8%8B%8D%E5%8D%97%E5%8E%BF, 2024-07-11", "中国语言文化典藏 . 苍南 / 曹志耘, 王莉宁, 李锦芳主编, 徐丽丽著, 2022", "Zhongguo yu yan wen hua dian cang . Cang'nan / Cao Zhiyun, Wang Lining, Li Jinfang zhu bian, Xu Lili zhu, 2022"], "noteType": "dataSource"}, {"label": ["District de la province du Zhejiang, Chine"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Zhejiang (Chine)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279354223", "source": "IDREF"}], "variant_access_point": ["蒼南縣", "苍南县", "Cangnan Xian"], "authorized_access_point": "Cangnan Xian (Chine)"} 1 +2024-09-11 09:11:39.351493 2024-09-11 09:11:39.351497 13020c73-e4ec-41f2-85bd-b4e57022c374 {"md5": "74e75fe69794894c67762ebc2fd79166", "pid": "279355173", "note": [{"label": ["Wikipédia, https://zh.wikipedia.org/wiki/%E5%AE%BE%E9%98%B3%E5%8E%BF, 2024-07-11", "中国语言文化典藏 . 宾阳 / 卞成林, 韦钰璇, 苏丹著, 曹志耘, 王莉宁, 李锦芳主编, 2022", "Zhongguo yu yan wen hua dian cang . Binyang / Bian Chenglin, Wei Yuxuan, Su Dan zhu, Cao Zhiyun, Wang Lining, Li Jinfang zhu bian, 2022"], "noteType": "dataSource"}, {"label": ["District de la province du Guangxi, Chine"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Guangxi (Chine ; province)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279355173", "source": "IDREF"}], "variant_access_point": ["賓陽縣", "宾阳县", "Binyang Xian"], "authorized_access_point": "Binyang Xian (Chine)"} 1 +2024-09-11 09:11:39.413982 2024-09-11 09:11:39.413995 a99cfc0f-84c4-4ba0-9ee6-4712f85dd17a {"md5": "7546fc410586a967ca78934688b93f90", "pid": "279357206", "note": [{"label": ["Moreau", "Dict. communes, 1984", "GDEL"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279357206", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb119424128", "source": "BNF"}], "variant_access_point": ["Bononia (ville ancienne)", "Gesoriacum (ville ancienne)"], "authorized_access_point": "Boulogne-sur-Mer (Pas-de-Calais)"} 1 +2024-09-11 09:11:39.476552 2024-09-11 09:11:39.476557 50f120ac-03c7-4b50-8945-6e7f372cf701 {"md5": "3527f0114089fbe2a293ddaa4c1c7df2", "pid": "279368429", "note": [{"label": ["http://www.geonames.org/, 2024-07-12", "https://en.wikipedia.org/wiki/Licking_River_%28Kentucky%29/, 2024-07-12"], "noteType": "dataSource"}, {"label": ["La Licking est une rivière des États-Unis affluent de la rivière Ohio, donc un sous-affluent du fleuve le Mississippi"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279368429", "source": "IDREF"}], "authorized_access_point": "Licking river (Ky. ; cours d'eau)"} 1 +2024-09-11 09:11:39.535529 2024-09-11 09:11:39.535533 b124f286-b93d-4f9b-9824-055cc07cb6d5 {"md5": "1396b797c05b513f690a55f42e84c966", "pid": "279369867", "note": [{"label": ["Die Eurodistrikte, eine neue Form der grenzüberschreitenden Kooperation?, 2014:"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279369867", "source": "IDREF"}, {"type": "uri", "value": "https://viaf.org/viaf/192145858084323021995", "source": "VIAF"}], "authorized_access_point": "Trinationaler Eurodistrict Basel"} 1 +2024-09-11 09:11:39.601116 2024-09-11 09:11:39.601123 bb65f595-c309-44ba-8524-ed9aa4d0a19e {"md5": "3272a5c2c553f86251ea8138a724fd86", "pid": "27937027X", "note": [{"label": ["Wikipédia, https://zh.wikipedia.org/wiki/%E5%8F%A4%E7%94%B0%E5%8E%BF, 2024-07-12", "中国语言文化典藏 . 古田 / 李滨 著, 曹志耘, 王莉宁, 李锦芳 主编, 2022", "Zhongguo yu yan wen hua dian cang . Gutian / Li Bin zhu, Cao Zhiyun, Wang Lining, Li Jinfang zhu bian, 2022"], "noteType": "dataSource"}, {"label": ["District de la province du Fujian, Chine"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Fujian (Chine ; province)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27937027X", "source": "IDREF"}], "variant_access_point": ["古田縣", "古田县", "Gutian Xian"], "authorized_access_point": "Gutian Xian (Chine)"} 1 +2024-09-11 09:11:39.650713 2024-09-11 09:11:39.650716 a66efcdb-9fd4-4d95-b885-52336b3ffce6 {"md5": "f9628965666cc701c5e775678505e325", "pid": "279371322", "note": [{"label": ["http://www.geonames.org/, 2024-07-12"], "noteType": "dataSource"}, {"label": ["La rivière Barren prend sa source près de la frontière du Tennessee dans le comté de Monroe et se jette dans la rivière Green au nord-est du comté de Warren"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279371322", "source": "IDREF"}], "authorized_access_point": "Barren river (Ky. ; cours d'eau)"} 1 +2024-09-11 09:11:39.707689 2024-09-11 09:11:39.707693 e8355294-5296-49a4-b7e5-699c55681394 {"md5": "881ccd2b2c684a40a8e5d01e1d6775b3", "pid": "279372280", "note": [{"label": ["Wikipédia, https://zh.wikipedia.org/wiki/%E6%B4%AA%E6%B4%9E%E5%8E%BF, 2024-07-12", "中国语言文化典藏 . 洪洞 / 乔全生, 王晓婷, 赵海英 著, 曹志耘, 王莉宁, 李锦芳 主编, 2022", "Zhongguo yu yan wen hua dian cang . Hongdong / Qiao Quansheng, Wang Xiaoting, Zhao Haiying zhu, Cao Zhiyun, Wang Lining, Li Jinfang zhu bian, 2022"], "noteType": "dataSource"}, {"label": ["District de la province du Shanxi, Chine"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Shanxi (Chine ; province)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279372280", "source": "IDREF"}], "variant_access_point": ["洪洞縣", "洪洞县", "Hongdong Xian"], "authorized_access_point": "Hongdong Xian (Chine)"} 1 +2024-09-11 09:11:39.769443 2024-09-11 09:11:39.769448 5a975bc6-05b8-4fe6-9b0d-b3d1eb564a49 {"md5": "3aed8d4e38d6d004b257fa33490ec7bb", "pid": "279372906", "note": [{"label": ["http://www.geonames.org/, 2024-07-12"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279372906", "source": "IDREF"}], "authorized_access_point": "Middle Fork Kentucky river (Ky. ; cours d'eau)"} 1 +2024-09-11 09:11:39.839051 2024-09-11 09:11:39.839054 1408ad31-e988-4802-aab3-6b2aaba33158 {"md5": "dc33403423d8291859e0c5e85dcee7b5", "pid": "279373139", "note": [{"label": ["https://en.wikipedia.org/wiki/North_Fork_Kentucky_River/, 2024-07-12"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279373139", "source": "IDREF"}], "authorized_access_point": "North Fork Kentucky river (Ky. ; cours d'eau)"} 1 +2024-09-11 09:11:39.904102 2024-09-11 09:11:39.904106 692cad84-24ff-4a65-b434-b737886ee55d {"md5": "e0dd5b610fac5c7a415ddbd6d7ad7937", "pid": "279373171", "note": [{"label": ["Wikipédia, https://zh.wikipedia.org/wiki/%E6%80%80%E9%9B%86%E5%8E%BF, 2021-03-03", "中国语言文化典藏 . 怀集 / 杨璧菀 著, 曹志耘, 王莉宁, 李锦芳 主编, 2022", "Zhongguo yu yan wen hua dian cang . Huaiji / Yang Biwan zhu, Cao Zhiyun, Wang Lining, Li Jinfang zhu bian, 2022"], "noteType": "dataSource"}, {"label": ["District de la province du Guangdong, Chine"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Guangdong (Chine ; province)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279373171", "source": "IDREF"}], "variant_access_point": ["懷集縣", "怀集县", "Huaiji Xian"], "authorized_access_point": "Huaiji Xian (Chine)"} 1 +2024-09-11 09:11:39.958995 2024-09-11 09:11:39.959 6f945ee7-6622-499b-ae6a-6330f8098f9b {"md5": "a789301933dad82dd75ca3e1e96348f2", "pid": "279373198", "note": [{"label": ["http://www.geonames.org/, 2024-07-12"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Perry"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279373198", "source": "IDREF"}], "authorized_access_point": "Yerkes (Ky.)"} 1 +2024-09-11 09:11:40.022149 2024-09-11 09:11:40.022157 71a65e87-6165-4bdf-b04a-dc710b28f097 {"md5": "eeea7dc8e49884114155358e77255c02", "pid": "279373287", "note": [{"label": ["http://www.geonames.org/, 2024-07-12"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Leslie"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279373287", "source": "IDREF"}], "authorized_access_point": "Shoal (Ky.)"} 1 +2024-09-11 09:11:40.086808 2024-09-11 09:11:40.086812 49d41868-01df-45d5-a365-d223f82264d0 {"md5": "45550aacecee97bfb3abea6eb4138ba4", "pid": "279375387", "note": [{"label": ["http://www.geonames.org/, 2024-07-12"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de McCreary"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279375387", "source": "IDREF"}], "authorized_access_point": "Slavans (Ky.)"} 1 +2024-09-11 09:11:40.140878 2024-09-11 09:11:40.140881 42721494-1a7b-4e6c-9a50-a61242bddc89 {"md5": "b4e535393a747eb07d70898ccaf4cf4e", "pid": "279375794", "note": [{"label": ["http://www.geonames.org/, 2024-07-12"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Pickett"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279375794", "source": "IDREF"}], "authorized_access_point": "Byrdstown (Tenn.)"} 1 +2024-09-11 09:11:40.21454 2024-09-11 09:11:40.214544 da876a93-7b8f-454f-b53b-6811d8f0d79a {"md5": "c1df429a089f78bba51e2c07940bbd32", "pid": "279375867", "note": [{"label": ["https://en.wikipedia.org/wiki/Obey_River/, 2024-07-12"], "noteType": "dataSource"}, {"label": ["La rivière Obey est un affluent de la rivière Cumberland dans l'État américain du Tennessee"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279375867", "source": "IDREF"}], "authorized_access_point": "Obey river (Tenn. ; cours d'eau)"} 1 +2024-09-11 09:11:40.27991 2024-09-11 09:11:40.279915 fdf3ed84-8fb5-4c63-9238-4dc4429b094e {"md5": "4db87d1535fa756b4a063173f95c9163", "pid": "279376405", "note": [{"label": ["Wikipédia, https://zh.wikipedia.org/zh-cn/%E7%8E%AF%E5%8E%BF, 2024-07-12", "中国语言文化典藏 . 环县 / 谭治琪 著, 曹志耘, 王莉宁, 李锦芳 主编, 2022", "Zhongguo yu yan wen hua dian cang . Huan xian / Tan Zhiqi zhu, Cao Zhiyun, Wang Lining, Li Jinfang zhu bian, 2022"], "noteType": "dataSource"}, {"label": ["District de la province du Gansu, Chine"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Gansu (Chine ; province)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279376405", "source": "IDREF"}], "variant_access_point": ["環縣", "环县", "Huan Xian"], "authorized_access_point": "Huan Xian (Chine)"} 1 +2024-09-11 09:11:40.928556 2024-09-11 09:11:40.928564 22e2765e-a675-4e90-b5e8-d611dd7557cd {"md5": "411fc9a00263a9b93923641460329633", "pid": "279387199", "note": [{"label": ["http://www.geonames.org/, 2024-07-15"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279387199", "source": "IDREF"}], "authorized_access_point": "South Fork Licking river (Ky. ; cours d'eau)"} 1 +2024-09-11 09:11:40.342258 2024-09-11 09:11:40.342262 d1814c12-8a3e-4e72-8d47-4f9dda1db46c {"md5": "0e3f3747fd8c6f3ba187d055f439ec04", "pid": "27937660X", "note": [{"label": ["http://www.geonames.org/, 2024-07-12"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Breckenridge"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27937660X", "source": "IDREF"}], "authorized_access_point": "Stephensport (Ky.)"} 1 +2024-09-11 09:11:40.40427 2024-09-11 09:11:40.404275 773b8c04-e5da-42cb-b32e-aa285131e3fe {"md5": "7e3c6dfc1094564e28fbbd8865522c13", "pid": "279376693", "note": [{"label": ["http://www.geonames.org/, 2024-"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Hancock"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279376693", "source": "IDREF"}], "authorized_access_point": "Patesville (Ky.)"} 1 +2024-09-11 09:11:40.464759 2024-09-11 09:11:40.464763 215666d9-59a1-4dd7-920c-721420eb89b0 {"md5": "b324235922424b06e6f7e168f9e39fc6", "pid": "279376804", "note": [{"label": ["Wikipédia, https://zh.wikipedia.org/wiki/%E5%BB%BA%E7%93%AF%E5%B8%82, 2024-07-12", "中国语言文化典藏 . 建瓯 / 邓享璋, 吴雪灏, 徐文亮 著, 曹志耘, 王莉宁, 李锦芳 主编, 2022", "Zhongguo yu yan wen hua dian cang . Jian'ou / Deng Xiangzhang, Wu Xuehao, Xu Wenliang zhu, Cao Zhiyun, Wang Lining, Li Jinfang zhu bian, 2022"], "noteType": "dataSource"}, {"label": ["Ville de la province du Fujian, Chine"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Fujian (Chine ; province)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279376804", "source": "IDREF"}], "variant_access_point": ["建甌市", "建甌市", "Jianou", "Jian ou"], "authorized_access_point": "Jian'ou Shi (Chine)"} 1 +2024-09-11 09:11:40.522821 2024-09-11 09:11:40.522829 2f249654-fa60-4e4e-b1c8-319cf7d2a5b3 {"md5": "4717d788e3661f7c614ee667ac2a69e6", "pid": "279377266", "note": [{"label": ["http://www.geonames.org/, 2024-07-12"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Hardin"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279377266", "source": "IDREF"}], "authorized_access_point": "Cave in Rock (Ill.)"} 1 +2024-09-11 09:11:40.589482 2024-09-11 09:11:40.58949 2122f824-b0de-404a-a438-cc7a8fdaccf9 {"md5": "650d40cfd0d9b510c8b1176c75761f1d", "pid": "279377452", "note": [{"label": ["Wikipédia, https://zh.wikipedia.org/wiki/%E6%B1%9F%E5%B1%B1%E5%B8%82, 2024-07-12", "中国语言文化典藏 . 江山 / 王洪钟, 赵普义 著, 曹志耘 主编, 2022", "Zhongguo yu yan wen hua dian cang . Jiangshan / Wang Hongzhong, Zhao Puyi zhu, Cao Zhiyun zhu bian, 2022"], "noteType": "dataSource"}, {"label": ["Ville de la province du Zhejiang, Chine"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Zhejiang (Chine ; province)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279377452", "source": "IDREF"}], "authorized_access_point": "Jiangshan Shi (Chine)"} 1 +2024-09-11 09:11:40.642705 2024-09-11 09:11:40.642709 425a6257-768d-400d-b600-5243c4f34a33 {"md5": "d2bddc7268778d1312acbc92416ed1f0", "pid": "279378173", "note": [{"label": ["Wikipédia, https://zh.wikipedia.org/wiki/%E6%B1%9F%E6%B0%B8%E5%8E%BF, 2024-07-12", "中国语言文化典藏 . 江永 / 杨慧君 著, 曹志耘, 王莉宁, 李锦芳 主编, 2022", "Zhongguo yu yan wen hua dian cang . Jiangyong / Yang Huijun zhu, Cao Zhiyun, Wang Lining, Li Jinfang zhu bian, 2022"], "noteType": "dataSource"}, {"label": ["Ville de la province du Hunan, Chine"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Hunan (Chine)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279378173", "source": "IDREF"}], "variant_access_point": ["江永縣"], "authorized_access_point": "Jiangyong Xian (Chine)"} 1 +2024-09-11 09:11:40.699833 2024-09-11 09:11:40.69984 7fff089c-2698-4902-a841-44aea4005793 {"md5": "5eb96aaad7ba19f3b55d5e1a4bde9e5a", "pid": "279380925", "note": [{"label": ["Phone call to BGN 4/27/83", "Apuntes históricos del Valle de Teotihuacán en la época colonial / por Ignacio B. del Castillo,... ; Secretaría de Agricultura y Fomento, Dirección de Antropología"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279380925", "source": "IDREF"}, {"type": "uri", "value": "https://viaf.org/viaf/140422932", "source": "VIAF"}], "authorized_access_point": "San Juan Teotihuacán (Mexico)"} 1 +2024-09-11 09:11:40.748604 2024-09-11 09:11:40.748607 feb66584-8a90-4955-b252-3259e4ad6c9b {"md5": "0b09241519f1850e9c1c9c473ecbbced", "pid": "279385544", "note": [{"label": ["http://www.geonames.org/, 2024-07-15"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Perry"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279385544", "source": "IDREF"}], "authorized_access_point": "Cornettsville (Ky.)"} 1 +2024-09-11 09:11:40.814386 2024-09-11 09:11:40.814395 8f014623-9e06-42e1-8892-839821831a24 {"md5": "49c0c74395afbd4d35c107e156e5d22b", "pid": "279385625", "note": [{"label": ["http://www.geonames.org/, 2024-07-15"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Perry"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279385625", "source": "IDREF"}], "authorized_access_point": "Delphia (Ky.)"} 1 +2024-09-11 09:11:40.873281 2024-09-11 09:11:40.873285 2d5dee34-a79b-4ecb-8924-bf9511c6cf1c {"md5": "acaefe2e7f74fb1ae9150188cc62352d", "pid": "27938646X", "note": [{"label": ["http://www.geonames.org/, 2024-07-15"], "noteType": "dataSource"}, {"label": ["Situé dans le comté d'Edmonson"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27938646X", "source": "IDREF"}], "authorized_access_point": "Nolin river (Ky. ; cours d'eau)"} 1 +2024-09-11 09:11:40.988072 2024-09-11 09:11:40.988077 d298e091-b74f-4b31-b920-44956e44b93e {"md5": "3dff711407620a07f62e62edc43c1450", "pid": "279388810", "note": [{"label": ["Tunnel du Creux : Action de dépollution et petit historique de ce tunnel éphémère (La Chaux-de-Fonds, NE) / Kesselring, Thomas auteur Blant, Denis, 1964-....auteur. Publié dans: Cavernes : bulletin des Sections neuchâteloises de la Société suisse de spéléologie ; 2023, nº. 1, p. 16-19"], "noteType": "dataSource"}, {"label": ["Ancienne ligne ferrovière Les Convers-Renan, 1874-1888."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279388810", "source": "IDREF"}], "authorized_access_point": "Creux, Tunnel du (Neuchâtel, Suisse)"} 1 +2024-09-11 09:11:41.051138 2024-09-11 09:11:41.051145 75186be9-3b3b-42ae-81ea-53a769bf6f1a {"md5": "4e299ef79768cc9ee045b971f2db000e", "pid": "279390351", "note": [{"label": ["Brusque : subsídios para a história de uma colônia nos tempos de Império / Oswaldo R. Cabral, 1958", "https://www.geonames.org, 2024-07-15"], "noteType": "dataSource"}, {"label": ["Ville brésilienne de l'État de Santa Catarina.", "S 27°05′53″ W 48°54′46″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Santa Catarina (Brésil, État)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279390351", "source": "IDREF"}], "authorized_access_point": "Brusque (Brésil)"} 1 +2024-09-11 09:11:41.1127 2024-09-11 09:11:41.112708 7e1ccd2c-657b-493c-8f8f-489006fb8bca {"md5": "1cf2099a2f33069d26a05059ad5bd9ca", "pid": "279391544", "note": [{"label": ["Wikipédia, https://zh.wikipedia.org/zh-hans/%E5%B9%B3%E5%92%8C%E5%8E%BF, 2024-07-15", "平和传统建筑 / 黄汉民, 范文昀 著, 2023", "Pinghe chuan tong jian zhu / Huang Hanmin,Fan Wenyun zhu, 2023"], "noteType": "dataSource"}, {"label": ["District de la province du Fujian, Chine"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Fujian (Chine ; province)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279391544", "source": "IDREF"}], "variant_access_point": ["平和縣", "平和县", "Pinghe Xian"], "authorized_access_point": "Pinghe Xian (Chine)"} 1 +2024-09-11 09:11:41.164077 2024-09-11 09:11:41.16408 150d6866-bdb7-4857-bc49-8fce471a1b52 {"md5": "5bc4b530a0f1eb6876c18c5d7d82d4d8", "pid": "279391609", "note": [{"label": ["Wikipédia, https://zh.wikipedia.org/wiki/%E5%8D%97%E9%9D%96%E5%8E%BF, 2024-07-15", "南靖传统建筑 / 黄汉民, 范文昀 著, 2022", "Nanjing chuan tong jian zhu / Huang Hanmin,Fan Wenyun zhu, 2022"], "noteType": "dataSource"}, {"label": ["District de la province du Fujian, Chine"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Fujian (Chine ; province)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279391609", "source": "IDREF"}], "variant_access_point": ["南靖縣", "南靖县", "Nanjing Xian"], "authorized_access_point": "Nanjing Xian (Chine)"} 1 +2024-09-11 09:11:41.221376 2024-09-11 09:11:41.221378 97409697-bff3-4642-aec4-ae14043f1509 {"md5": "62e616098e7e12af939d0cce515fafbe", "pid": "279392400", "note": [{"label": ["中国语言文化典藏 . 金华 / 黄晓东, 曹文进 著, 曹志耘 主编, 2017", "Zhongguo yu yan wen hua dian cang . Jinhua / Huang Xiaodong, Cao Wenjin zhu, Cao Zhiyun zhu bian, 2017"], "noteType": "dataSource"}, {"label": ["District de la province du Zhejiang, Chine"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Zhejiang (Chine ; province)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279392400", "source": "IDREF"}], "variant_access_point": ["金華縣", "金华县", "Jinhua Xian"], "authorized_access_point": "Jinhua Xian (Chine)"} 1 +2024-09-11 09:11:41.278979 2024-09-11 09:11:41.278985 7a138990-3863-4d6d-a8bd-404ab34c1254 {"md5": "5ed1d5b6950f57c043e23af4592e902f", "pid": "279394381", "note": [{"label": ["Wikipédia, https://zh.wikipedia.org/wiki/%E4%BA%95%E9%99%89%E5%8E%BF, 2024-07-15", "中国语言文化典藏 . 井陉 / 桑宇红, 许慧敏, 刘晶 著, 曹志耘 主编, 2017", "Zhongguo yu yan wen hua dian cang . Jingxing / Sang Yuhong, Xu Huimin, Liu Jing zhu, Cao Zhiyun zhu bian, 2017"], "noteType": "dataSource"}, {"label": ["District de la province du Hebei, Chine"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Hebei (Chine ; province)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279394381", "source": "IDREF"}], "variant_access_point": ["井陉縣", "井陉县", "Jingxing Xian"], "authorized_access_point": "Jingxing Xian (Chine)"} 1 +2024-09-11 09:11:41.339935 2024-09-11 09:11:41.33994 d7d932e1-cbe7-4654-8a87-dd84aa4f3524 {"md5": "44cbc0ac49da69d9f85f31693428f865", "pid": "279396155", "note": [{"label": ["Wikipédia, https://zh.wikipedia.org/wiki/%E4%B9%90%E4%B8%9A%E5%8E%BF, 2024-07-15", "中国语言文化典藏 . 乐业 / 吕嵩崧, 李国俊, 滕韧, 郑敬文 著, 曹志耘, 王莉宁, 李锦芳 主编, 2022", "Zhongguo yu yan wen hua dian cang . Leye / Lü Songsong, Li Guojun, Teng Ren, Zheng Jingwen zhu, Cao Zhiyun, Wang Lining, Li Jinfang zhu bian, 2022"], "noteType": "dataSource"}, {"label": ["District de la province du Guangxi, Chine"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Guangxi (Chine ; province)"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279396155", "source": "IDREF"}], "variant_access_point": ["樂業縣", "乐业县", "Leye Xian"], "authorized_access_point": "Leye Xian (Chine)"} 1 +2024-09-11 09:11:41.398421 2024-09-11 09:11:41.398426 6ca61727-12af-49a8-b563-20a30e251511 {"md5": "6fd7cc8d9f92647ddd564d2ed7d91815", "pid": "279401639", "note": [{"label": ["Il Monastero di San Gaggio a Firenze : la storia, il piano di recupero / Osanna Fantozzi Micali, Franco Lombardi, Piero Roselli ; a cura di Franco Lombardi, 1996", "Internet : Wikipedia : https://en.wikipedia.org/wiki/San_Gaggio,_Florence (15-07-2024)"], "noteType": "dataSource"}, {"label": ["L'église de San Gaggio était autrefois associée à un grand couvent. L'intérieur abrite une chapelle de Saint- André Corsini (1603), décorée de fresques par l'atelier de Bernardino Poccetti et abritant une Annonciation avec des saints par l'atelier de Francesco Brina"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279401639", "source": "IDREF"}], "authorized_access_point": "Florence (Italie) - Chiesa di San Gaggio"} 1 +2024-09-11 09:11:41.467943 2024-09-11 09:11:41.467954 265bb93d-8a89-4f20-8ced-9cfdf943e178 {"md5": "bb3695f771bede14dbb6f612d7154dc8", "pid": "279403984", "note": [{"label": ["GeoNames (2024-07-16)"], "noteType": "dataSource"}, {"label": ["Kormakítis est un petit village sur la côte septentrionale de Chypre - dans la zone occupée par l'armée Turque - aussi appelée République turque de Chypre du Nord. Ce village est le centre historique de l'Église maronite chypriote.", "Coordonnées en degrés séxagésimaux : N 35°20′35″ / E 33°00′36″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chypre"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279403984", "source": "IDREF"}], "variant_access_point": ["Κορμακίτης", "Korucam"], "authorized_access_point": "Kormakítis (Chypre)"} 1 +2024-09-11 09:11:41.533992 2024-09-11 09:11:41.534 72b80c3a-72f7-4ec9-af2d-3f40cf7b823a {"md5": "dd228af313bfcea96d25e6918632831a", "pid": "279414145", "note": [{"label": ["http://www.geonames.org/, 2024-07-16"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Hopkins"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279414145", "source": "IDREF"}], "authorized_access_point": "Daniel Boone (Ky.)"} 1 +2024-09-11 09:11:41.599015 2024-09-11 09:11:41.599019 e22d3175-8b6e-4ba8-9c79-b416ab5b0f06 {"md5": "253766228c93747ce5f8f563bba55543", "pid": "279416679", "note": [{"label": ["Suomen geologinen kartta Lehti 3112 = =Geological map of Finland : kallioperäkartta / Geologisen tutkimuslaitoksen julkaisema ; Tehnyt by Mauno Lehijärvi, 1970.", "http://www.geonames.org/658288, 2024-07-16"], "noteType": "dataSource"}, {"label": ["Ville de Finlande, région du Päijät-Häme"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279416679", "source": "IDREF"}], "authorized_access_point": "Heinola (Finlande)"} 1 +2024-09-11 09:11:41.649861 2024-09-11 09:11:41.649864 c396cffd-085d-415f-a585-6286a9b3aac8 {"md5": "71f059bb90867637d3a67f19f19f22b2", "pid": "27941806X", "note": [{"label": ["Regisvilla : scavi e ricerche (1968-1983) / Carlo Regoli, 2021", "Comuni Italiani - http://www.comuni-italiani.it (2024-02-27)", "LCNA (en ligne), 2024-02-24 : Montalto di Castro (Italy)"], "noteType": "dataSource"}, {"label": ["Commune de la province de Viterbe, dans le Latium"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27941806X", "source": "IDREF"}, {"type": "uri", "value": "http://catalogue.bnf.fr/ark:/12148/cb18133134c", "source": "BNF"}], "classification": [{"type": "bf:ClassificationDdc", "classificationPortion": "914"}], "authorized_access_point": "Montalto di Castro (Italie)"} 1 +2024-09-11 09:11:41.711043 2024-09-11 09:11:41.711048 14abcd79-a7cc-4a81-a63c-a3aa48ac1cfe {"md5": "13e1ae7446f273cd3726470c66d81fa4", "pid": "279418728", "note": [{"label": ["http://www.geonames.org/, 2024-07-16"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Hopkins"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279418728", "source": "IDREF"}], "authorized_access_point": "Earlington (Ky.)"} 1 +2024-09-11 09:11:41.764393 2024-09-11 09:11:41.764397 fb5dada4-4bb9-43dd-b9c0-21d0881934e7 {"md5": "3a4c1a130365090fe6e13ec8b1b3e964", "pid": "279421427", "note": [{"label": ["Despotiko, the site of Mandra : the \\"temple\\" complex and its deposits / edited by Alexandra Alexandridou, Yannos Kourayos and Ilia Daifa, 2023", "DNB - https://d-nb.info/gnd/1043474439, 2024-07-16"], "noteType": "dataSource"}, {"label": ["Petite île des Cyclades au sud-ouest d'Antiparos"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279421427", "source": "IDREF"}], "authorized_access_point": "Despotikò (Grèce ; île)"} 1 +2024-09-11 09:11:41.821456 2024-09-11 09:11:41.821459 730b0add-c600-4ca9-8fd7-bb0ee2f263c7 {"md5": "f5786e323cb6a4d2f046983405fe5c58", "pid": "279426739", "note": [{"label": ["[Fontaine et carrefour Rue du Raisin / Rue de l'Industrie, Le Locle], [1980-1990 ?] / Adequa (La Chaux-de-Fonds, Neuchâtel, Suisse) photographe", "https://bib.rero.ch/global/documents/2239783, 2024-07-17"], "noteType": "dataSource"}, {"label": ["Visualisation sur SITN- Géoportail du système d'information du territoire neuchâtelois https://sitn.ne.ch, 2024-07-17"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279426739", "source": "IDREF"}], "authorized_access_point": "Le Locle (Neuchâtel, Suisse) - Rue de l'Industrie"} 1 +2024-09-11 09:11:41.884295 2024-09-11 09:11:41.884297 9c7804d8-3e3a-42eb-a859-599b0f418b50 {"md5": "a50c7169f9ae091ed8ca53aba731ef3a", "pid": "279461429", "note": [{"label": ["Calames-202406121584443535"], "noteType": "dataSource"}, {"label": ["VIllage nigérien montagnard de l'Aïr. Zone de production agricole."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279461429", "source": "IDREF"}], "authorized_access_point": "Egandawal (Niger)"} 1 +2024-09-11 09:11:41.946355 2024-09-11 09:11:41.94636 4141d7b5-1370-4498-a0e3-46c77ae1de85 {"md5": "e61b080ba1307a625f0361352923812b", "pid": "279466293", "note": [{"label": ["Το κτιριακό συγκρότημα της μητρόπολης Θεσσαλονίκης / Θάλεια Σ. Μαντοπούλου-Παναγιωτοπούλου, 1985"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279466293", "source": "IDREF"}], "authorized_access_point": "Thessalonique (Grèce) - Cathédrale Saint Grégoire Palamas"} 1 +2024-09-11 09:11:42.01038 2024-09-11 09:11:42.010385 a3eb3327-f7d8-4aca-ac52-2f7a1f89cf7c {"md5": "8bc2302f725e1a9bb3876ec730ede8f5", "pid": "279467850", "note": [{"label": ["Carte de France - 1:25 000 XXXV-17, 7-8 / dessiné et publié par l'Institut géographique national, [195.].", "http://www.geonames.org/6457174"], "noteType": "dataSource"}, {"label": ["Village des Vosges"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279467850", "source": "IDREF"}], "authorized_access_point": "La Bourgonce"} 1 +2024-09-11 09:11:42.075652 2024-09-11 09:11:42.07566 f73dd361-be02-455d-bedd-ae686705d5d0 {"md5": "23bc3538b7f8076c0a6ceb211d4df607", "pid": "279469632", "note": [{"label": ["La Panarda di Porciano : una ricerca storico antropologica/ Gioacchino Giammaria, Laura Gatti, 2017", "https://it.wikipedia.org/wiki/Porciano_(Ferentino), 2024-07-18."], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279469632", "source": "IDREF"}], "authorized_access_point": "Porciano (Latium, Italie)"} 1 +2024-09-11 09:11:42.141565 2024-09-11 09:11:42.141568 5f1d8169-099f-438a-814d-69461914307c {"md5": "74e59df3bf474210d5ed4c5a46603011", "pid": "279471467", "note": [{"label": ["Daxing'anling zhi wu zhi = Flora of the greater Xing'an mountains / Daxing'anling zhi wu zhi bian wei hui bian"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279471467", "source": "IDREF"}], "authorized_access_point": "Xing'an (Chine)"} 1 +2024-09-11 09:11:42.208723 2024-09-11 09:11:42.20873 91c8fdbd-5b52-4124-823f-2a9eca33b30d {"md5": "ff5d040d33a4d0b44e5397f5c1a322c5", "pid": "279471734", "note": [{"label": ["Daxing'anling zhi wu zhi = Flora of the greater Xing'an mountains / Daxing'anling zhi wu zhi bian wei hui bian"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279471734", "source": "IDREF"}], "authorized_access_point": "Montagne de Xang'an (Chine)"} 1 +2024-09-11 09:11:42.266317 2024-09-11 09:11:42.266321 e4a53234-e010-47f6-8100-536f169f6803 {"md5": "079143f8304afcd612c70a77a9e27def", "pid": "279478208", "note": [{"label": ["Commune italienne de la région Emilie-Romagne"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279478208", "source": "IDREF"}], "authorized_access_point": "Frassinoro (Italie)"} 1 +2024-09-11 09:11:42.326516 2024-09-11 09:11:42.326523 cdc7dce3-3e6e-40e3-a5eb-09a5cd399fc9 {"md5": "ff2276d8fa080242626d91ba89c72d23", "pid": "279487606", "note": [{"label": ["GeoNames (2024-07-18)"], "noteType": "dataSource"}, {"label": ["Dístomo est un village et une ancienne municipalité grecque dans le district régional de Béotie. Elle comptait 4 368 habitants en 2001", "Coordonnées en degrés séxagésimaux : N 38°25′44″ / E 22°40′02″"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "broader": [{"authorized_access_point": "Grèce"}], "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279487606", "source": "IDREF"}], "variant_access_point": ["Δίστομο", "Δίστομον"], "authorized_access_point": "Dístomo (Grèce)"} 1 +2024-09-11 09:11:42.390306 2024-09-11 09:11:42.39031 54b1d02d-ab9c-4a53-9e7a-2fdd647b8dd7 {"md5": "8213b790a3357e720d5e1f674cb22674", "pid": "279488076", "note": [{"label": ["http://www.geonames.org/, 2024-07-18"], "noteType": "dataSource"}, {"label": ["La Rough River est un affluent de la Green River dans le centre-ouest du Kentucky aux États-Unis"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279488076", "source": "IDREF"}], "authorized_access_point": "Rough river (Ky. ; cours d'eau)"} 1 +2024-09-11 09:11:42.450023 2024-09-11 09:11:42.450032 4962c30a-4292-4f54-a2f8-8113d401fa95 {"md5": "dca33137d0f3228af19149689068e45b", "pid": "279492820", "note": [{"label": ["Souvenir du général Moreau en son hôtel de la Chaussée-d'Antin / Simone Saint-Girons, 1961"], "noteType": "dataSource"}, {"label": ["Hôtel particulier situé au 20 rue de la Chaussée-d'Antin, Paris 9e."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279492820", "source": "IDREF"}], "variant_access_point": ["Hôtel Lakanal"], "authorized_access_point": "Paris (France) - Hôtel Moreau"} 1 +2024-09-11 09:11:42.519622 2024-09-11 09:11:42.519626 28e9e1b7-f6d8-4d0d-947e-9ef46b66ea7d {"md5": "726f8610f42118b656a7fed610706dd3", "pid": "279493584", "note": [{"label": ["Orquideas do Alto da Serra : Da Mata Atlantica Pluvial do Sudeste do Brasil $$c David Miller, With 40 colour plates by Izabel Moura Miller and Richard Warren"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279493584", "source": "IDREF"}], "authorized_access_point": "Alto da Serra (Brésil)"} 1 +2024-09-11 09:11:42.588385 2024-09-11 09:11:42.58839 6ae23c42-4791-4237-91fd-14cb670a6c5b {"md5": "1c1315c04167eedc568f243d29b08921", "pid": "279494602", "note": [{"label": ["Crania armoricana... Corpus des crânes armoricains et bretons / Pierre-Roland Giot, 1961"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279494602", "source": "IDREF"}], "authorized_access_point": "Saulges (Mayenne) - Nécropole mérovingienne"} 1 +2024-09-11 09:11:42.651956 2024-09-11 09:11:42.65196 18cd543e-9c61-4950-9ba6-705b19a75bbc {"md5": "64fe82f9c03efbc74facb8eb0aee7066", "pid": "279494637", "note": [{"label": ["Crania armoricana... Corpus des crânes armoricains et bretons / Pierre-Roland Giot, 1961"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279494637", "source": "IDREF"}], "authorized_access_point": "Carnac (Morbihan) - Nécropole mérovingienne"} 1 +2024-09-11 09:11:42.720691 2024-09-11 09:11:42.720695 c17c9da9-7ac2-4cc6-9a5d-4304fdc48fc8 {"md5": "305d96f466133561c3be5cc6ab1874d0", "pid": "279494653", "note": [{"label": ["Crania armoricana... Corpus des crânes armoricains et bretons / Pierre-Roland Giot, 1961"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279494653", "source": "IDREF"}], "authorized_access_point": "Plouyé (Finistère) - Nécropole mérovingienne"} 1 +2024-09-11 09:11:42.780779 2024-09-11 09:11:42.780784 0c66e8c2-9892-4cac-bc73-e8221802aec0 {"md5": "394c393a0b45a7f20a115d0ab835ce47", "pid": "279494688", "note": [{"label": ["Crania armoricana... Corpus des crânes armoricains et bretons / Pierre-Roland Giot, 1961"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279494688", "source": "IDREF"}], "authorized_access_point": "Plufur (Côtes-d'Armor) - Nécropole mérovingienne"} 1 +2024-09-11 09:11:42.847385 2024-09-11 09:11:42.847389 7cae9d96-bbd4-4ecc-b18b-fdd007fd352f {"md5": "baa3b0dd238b38b8bd9f831dcfeb29f5", "pid": "279501080", "note": [{"label": ["Place du 29 Février, Le Locle / Adequa (La Chaux-de-Fonds, Neuchâtel, Suisse) photographe, [1980-1990 ?]", "Visualisation sur SITN- Géoportail du système d'information du territoire neuchâtelois https://sitn.ne.ch, 2024-07-19"], "noteType": "dataSource"}, {"label": ["Carrefour routier et place située entre la Grande-Rue et la Rue Marie-Anne-Calame à hauteur du temple du Locle."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279501080", "source": "IDREF"}], "authorized_access_point": "Le Locle (Neuchâtel, Suisse) - Place du 29 Février"} 1 +2024-09-11 09:11:42.906133 2024-09-11 09:11:42.906137 5211dffb-4445-4d06-bee9-fe67936dea03 {"md5": "b5b179fccf0f9663f482f2d5314bab87", "pid": "27950277X", "note": [{"label": ["http://www.geonames.org/, 2024-07-19"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Garfield. Ne pas confondre avec d'autres montagnes du même nom dans le même comté. Se référer aux coordonnées"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/27950277X", "source": "IDREF"}], "authorized_access_point": "Long Point (Colo.)"} 1 +2024-09-11 09:11:42.960229 2024-09-11 09:11:42.960233 f2d28bcb-0419-4719-a9ce-f57f1dcefe90 {"md5": "513c5b5593af2e1e90d3bdb3c3e0bbae", "pid": "279503288", "note": [{"label": ["aLes Tissus anciens du trésor de la cathédrale de Sens / Chanoine Eugène Chartraire, 1911"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279503288", "source": "IDREF"}], "authorized_access_point": "Sens (Yonne) - Cathédrale Saint-Étienne - Trésor"} 1 +2024-09-11 09:11:43.023503 2024-09-11 09:11:43.023507 ad95172b-1fd4-4f80-bf8c-8a03984266cc {"md5": "bf0c1b690b1e7638b40782a8f4cfc91e", "pid": "279505264", "note": [{"label": ["http://www.geonames.org/, 2024-07-19"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de Mesa"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279505264", "source": "IDREF"}], "authorized_access_point": "Twin Peaks (Colo. ; mont)"} 1 +2024-09-11 09:11:43.082013 2024-09-11 09:11:43.082022 5321fd4c-ed83-4717-9a46-24b9d7d14b52 {"md5": "31de8372d4de3f5351e3b3bce989b614", "pid": "279507097", "note": [{"label": ["http://www.geonames.org/, 2024-07-19"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de San Juan"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279507097", "source": "IDREF"}], "authorized_access_point": "Grenadier range (Colo. ; mont)"} 1 +2024-09-11 09:11:43.139647 2024-09-11 09:11:43.13965 099605b6-9fc4-487d-98d2-3bc61a3f1c88 {"md5": "9cfad0d926d3f614bc393128ab9f1e1b", "pid": "279507208", "note": [{"label": ["http://www.geonames.org/, 2024-07-19"], "noteType": "dataSource"}, {"label": ["Situé dans le comté de San Juan et La Plata"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279507208", "source": "IDREF"}], "authorized_access_point": "Needle mountains (Colo. ; mont)"} 1 +2024-09-11 09:11:43.187608 2024-09-11 09:11:43.187611 ebac9647-8942-4c62-b05f-8fb1b6f27e04 {"md5": "dce10e013b4c1f8f13210ac0a7e7918a", "pid": "279516932", "note": [{"label": ["[Piscine du Communal, Le Locle] / Adequa (La Chaux-de-Fonds, Neuchâtel, Suisse) photographe, [1980-1990 ?]", "Visualisation sur SITN- Géoportail du système d'information du territoire neuchâtelois https://sitn.ne.ch, 2024-07-22", "Site de la ville du Locle - Piscine du Communal : https://www.lelocle.ch/loisirs-manifestations/loisirs-et-sports/piscine-du-communal/, 2024-07-22"], "noteType": "dataSource"}, {"label": ["Piscine en plein air située dans le quartier du Communal au sud de la ville du Locle."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279516932", "source": "IDREF"}], "authorized_access_point": "Le Locle (Neuchâtel, Suisse) - Piscine du Communal"} 1 +2024-09-11 09:11:43.232526 2024-09-11 09:11:43.232529 d6a7851e-7a90-44d7-b82b-0003d3a0182d {"md5": "20852f0dc48e44ae506024d558065fc3", "pid": "279522053", "note": [{"label": ["Das Schloss Murten : vom Schultheissen zum Oberamtmann = Le château de Morat : de l'avoyer au préfet , 2023"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279522053", "source": "IDREF"}], "variant_access_point": ["Fribourg, Suisse - Château de Morat", "Schloss Murten (Freiburg, Schweiz)"], "authorized_access_point": "Morat (Fribourg, Suisse) - Château"} 1 +2024-09-11 09:11:43.283952 2024-09-11 09:11:43.283956 1e057c9e-fcf1-4ca6-914c-c116f62c2cd8 {"md5": "658ce8ebfceeeaef4ba5a089b2968ba0", "pid": "279523505", "note": [{"label": ["Fern flora of Madan Kamdev Hill Region : Kamrup District of Assam, India / Paresh Ch. Kalita and Dipak Konwar"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279523505", "source": "IDREF"}], "authorized_access_point": "Kamrup (district, Indes)"} 1 +2024-09-11 09:11:43.348877 2024-09-11 09:11:43.348881 7a0ebeb5-ae35-462b-af08-cdbeaee2d206 {"md5": "5d48f4a151f83559c2881bbecf53a50d", "pid": "279523858", "note": [{"label": ["Danielle Fauque, « Introduction : Aux origines de la Maison de la Chimie », Revue d'histoire des sciences,‎ 2016, p. 8-10"], "noteType": "dataSource"}, {"label": ["La maison de la Chimie est un centre de congrès et de conférences."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279523858", "source": "IDREF"}], "authorized_access_point": "Maison de la Chimie, Paris"} 1 +2024-09-11 09:11:43.4218 2024-09-11 09:11:43.421803 2ec134dc-be89-4b5c-8e92-6fefc9dd971e {"md5": "3ef20d734a77c5218062358f33111975", "pid": "279524072", "note": [{"label": ["Application de la Photogrammétrie à la restauration de l'église Saint-Laurent du Puy-en-Velay (Haute-Loire) / Ministère des Travaux Publics et des Transports, Institut Géographique National, 1963"], "noteType": "dataSource"}, {"label": ["Église classée en 1906, contenant les entrailles du connétable Bertrand du Guesclin"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279524072", "source": "IDREF"}], "authorized_access_point": "Le Puy-en-Velay (Haute-Loire) - Église Saint-Laurent"} 1 +2024-09-11 09:11:43.467498 2024-09-11 09:11:43.4675 191e0dc7-ac68-4c3f-b7f7-25afc694be02 {"md5": "3ca9910332a8ca8e863442b252af3256", "pid": "279524080", "note": [{"label": ["A.C. Manni - R. Mencarelli (a cura di), Spoleto 1958, alle radici della storia. Il primo Festival dei Due Mondi, Spoleto 2017."], "noteType": "dataSource"}, {"label": ["Festival de musique classique et pluri-disciplinaire fondé en 1958 par le compositeur Gian Carlo Menotti."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279524080", "source": "IDREF"}], "authorized_access_point": "Festival dei Due Mondi, Spolete"} 1 +2024-09-11 09:11:43.521569 2024-09-11 09:11:43.521572 b0842e55-8c19-48a7-93a8-9dfb52e67a56 {"md5": "e7b2dd7d3a1304db20b16196676c0356", "pid": "279532881", "note": [{"label": ["Suomen geologinen kartta 3113 = = Geological map of Finland : Maaperäkartta / Geologian tutkimuskeskus ; Laatinut Risto Tynni, 1970.", "http://www.geonames.org/650861 2024-07-23"], "noteType": "dataSource"}, {"label": ["Ville finlandaise, région de la Kymenlaakso (vallée de la Kymi)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279532881", "source": "IDREF"}], "authorized_access_point": "Kouvola (Finlande)"} 1 +2024-09-11 09:11:43.582305 2024-09-11 09:11:43.582309 01c6aa40-5275-4e06-99ac-ede1af0531b9 {"md5": "da31023913cd6368d9f51c4fce7b37f9", "pid": "279533497", "note": [{"label": ["[Patinoire du Communal, Le Locle] / Adequa (La Chaux-de-Fonds, Neuchâtel, Suisse) photographe, [1980-1990 ?]", "Site NotreHistoire.ch : https://notrehistoire.ch/entries/LJYMJJPVB5R, 2024-07-23", "Site de la Ville du Locle - Patinoire du Communal : https://www.lelocle.ch/loisirs-manifestations/loisirs-et-sports/patinoire-du-communal/, 2024-07-23"], "noteType": "dataSource"}, {"label": ["Patinoire située dans le quartier du Communal au sud de la ville du Locle. En plein air jusqu'en 2004, date de sa couverture."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279533497", "source": "IDREF"}], "authorized_access_point": "Le Locle (Neuchâtel, Suisse) - Patinoire du Communal"} 1 +2024-09-11 09:11:43.627484 2024-09-11 09:11:43.627488 74fb4a89-9122-40e3-b631-6a389865f62a {"md5": "e0194457cab0dac61562d9c29d748267", "pid": "279535783", "note": [{"label": ["https://fr.wikipedia.org/wiki/Mont_Chemin, 2024-07-23"], "noteType": "dataSource"}, {"label": ["Le mont Chemin est une montagne située dans le canton du Valais en Suisse."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279535783", "source": "IDREF"}], "authorized_access_point": "Mont Chemin"} 1 +2024-09-11 09:11:43.680302 2024-09-11 09:11:43.680306 e4fc681f-2677-4b2a-b2cf-085b0837c125 {"md5": "5c0790215438476f6338820e7a263082", "pid": "279536011", "note": [{"label": ["L'architecture dans le quartier Carabacel / Michel Steve, 2001 ?"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279536011", "source": "IDREF"}], "variant_access_point": ["Quartier Carabacel"], "authorized_access_point": "Nice (Alpes-Maritimes) - Quartier Carabacel"} 1 +2024-09-11 09:11:43.735151 2024-09-11 09:11:43.735154 2186a44c-84dc-45c5-b841-ee226fa28186 {"md5": "03a4a76b5746d58f9df55b67076fe8e3", "pid": "279537719", "note": [{"label": ["D'un lac à l'autre : architecture comparée de deux villages lacustres du milieu du IVe millénaire avant J.-C. dans la région des Trois-Lacs (Suisse) / Michel Mauvilly, Fabien Langenegger. In : Habitations et habitat du Néolithique à l'Âge du bronze en France et ses marges, 2018, pages 261-267", "Dictionnaire historique de la Suisse, https://hls-dhs-dss.ch/fr/articles/000453/2019-04-03, 2024-07-23"], "noteType": "dataSource"}, {"label": ["Commune du canton de Berne, arrondissement administratif de Bienne, sur la rive sud du lac de Bienne, comprenant les villages de Sutz et de Lattrigen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279537719", "source": "IDREF"}], "authorized_access_point": "Sutz-Lattrigen (Berne, Suisse)"} 1 +2024-09-11 09:11:43.803071 2024-09-11 09:11:43.803076 4d9d153c-fe85-426f-ac6c-8eff01f78dfd {"md5": "ba8f5e70c829b050de33c6bd8fa3b301", "pid": "279539363", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279539363", "source": "IDREF"}], "authorized_access_point": "Cerro Colorado (Argentine ; parc naturel)"} 1 +2024-09-11 09:11:43.87435 2024-09-11 09:11:43.874353 bd9e83c8-b9d4-462a-aff5-3c8486a168fc {"md5": "9e408d6641fb58d570001d3b655b925b", "pid": "279562098", "note": [{"label": ["https://fr.wikipedia.org/wiki/Le_Panier"], "noteType": "dataSource"}, {"label": ["2e Arrondissement"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279562098", "source": "IDREF"}], "variant_access_point": ["Le Panier (2e arrondissement de Marseille)"], "authorized_access_point": "Quartier du Panier (Marseille)"} 1 +2024-09-11 09:11:43.936118 2024-09-11 09:11:43.936121 f43e44cb-cb11-47b7-954d-ad44a799fa2c {"md5": "bcdfa8bd2690a8205b91d201d3ca5342", "pid": "279571550", "note": [{"label": ["[Ancienne usine électrique, Le Locle] / Adequa (La Chaux-de-Fonds, Neuchâtel, Suisse) photographe, [1980-1990 ?]", "Visualisation sur SITN- Géoportail du système d'information du territoire neuchâtelois https://sitn.ne.ch, 2024-07-24"], "noteType": "dataSource"}, {"label": ["1ère rue orientée nord-sud à l'ouest de l'Hôtel-de-Ville du Locle."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279571550", "source": "IDREF"}], "authorized_access_point": "Le Locle (Neuchâtel, Suisse) - Rue Jehan-Droz"} 1 +2024-09-11 09:11:43.998625 2024-09-11 09:11:43.998628 77f880de-1ce5-41db-a787-76c5143395e1 {"md5": "6a8c8da69a750bc6055b31c0705755c1", "pid": "279571658", "note": [{"label": ["[Ancienne usine électrique, Le Locle] / Adequa (La Chaux-de-Fonds, Neuchâtel, Suisse) photographe, [1980-1990 ?]", "Visualisation sur SITN- Géoportail du système d'information du territoire neuchâtelois https://sitn.ne.ch, 2024-07-24"], "noteType": "dataSource"}, {"label": ["Rue des Jeanneret"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_idref/idref-place-v0.0.1.json", "bnf_type": "sujet Rameau", "identifiedBy": [{"type": "uri", "value": "http://www.idref.fr/279571658", "source": "IDREF"}], "authorized_access_point": "Le Locle (Neuchâtel, Suisse)"} 1 diff --git a/data/pidref_pidstore.csv b/data/pidref_pidstore.csv index 1c3e2ea9..6cae6f80 100644 --- a/data/pidref_pidstore.csv +++ b/data/pidref_pidstore.csv @@ -1,267 +1,861 @@ -2024-07-16 19:07:13.103964 2024-07-16 19:07:13.10397 pidref 027227812 R rec c6442462-17ed-42ff-aa7d-283c154f1eff -2024-07-16 19:07:13.222134 2024-07-16 19:07:13.222138 pidref 027250504 R rec 49096416-cf21-43ac-a77b-325402f05b43 -2024-07-16 19:07:13.270614 2024-07-16 19:07:13.270619 pidref 263259935 R rec c22fd9c5-c6a7-4939-817a-f053a11fd3ae -2024-07-16 19:07:13.316247 2024-07-16 19:07:13.316256 pidref 271321628 R rec 567c537f-8448-4148-b556-7c6f02bd717d -2024-07-16 19:07:13.363028 2024-07-16 19:07:13.363034 pidref 271323337 R rec d7e1a9a8-9cda-4426-a419-8bd02954bc35 -2024-07-16 19:07:13.43768 2024-07-16 19:07:13.437692 pidref 271323353 R rec b31c595a-d2b2-488c-b272-342e37ec7d9b -2024-07-16 19:07:13.518828 2024-07-16 19:07:13.518843 pidref 271323426 R rec 65d6b2de-654f-4531-a681-85b99d144d4c -2024-07-16 19:07:13.599246 2024-07-16 19:07:13.599262 pidref 271323485 R rec d99915f8-08d9-4013-a07b-325b33eec46a -2024-07-16 19:07:13.682615 2024-07-16 19:07:13.682626 pidref 271323515 R rec 5502917f-4fac-4245-8ebf-aeed6e844cb2 -2024-07-16 19:07:13.774474 2024-07-16 19:07:13.774487 pidref 271323523 R rec 97960b8f-bbea-4353-8d90-4d1c6735f660 -2024-07-16 19:07:13.855717 2024-07-16 19:07:13.855732 pidref 271323566 R rec a2008dd5-a197-4174-bd22-80740243fb8f -2024-07-16 19:07:13.936378 2024-07-16 19:07:13.936388 pidref 271323590 R rec a4d7b873-414f-4945-b059-36604815955b -2024-07-16 19:07:14.012336 2024-07-16 19:07:14.012352 pidref 271323663 R rec 260f80c3-cde7-4203-9b79-a38d9c3d0792 -2024-07-16 19:07:14.070419 2024-07-16 19:07:14.070424 pidref 27132368X R rec 8f81982d-b7e3-45bb-9bdd-f4eedd974a40 -2024-07-16 19:07:14.115683 2024-07-16 19:07:14.115695 pidref 271323698 R rec bf17885b-aa8c-4e43-8e52-bb56e1dcfd3d -2024-07-16 19:07:14.169669 2024-07-16 19:07:14.169681 pidref 271323728 R rec 8f6e1c98-024e-4143-b5ec-2c3dceb68f72 -2024-07-16 19:07:14.246206 2024-07-16 19:07:14.246221 pidref 271323752 R rec 66b73efd-194e-4935-8a6e-d3b99ab6bda1 -2024-07-16 19:07:14.322139 2024-07-16 19:07:14.322155 pidref 271323957 R rec d4c68518-7984-4b7c-bf4f-ab5517254407 -2024-07-16 19:07:14.411356 2024-07-16 19:07:14.411373 pidref 271323973 R rec 45fb2325-cdc1-48b7-838a-764734799844 -2024-07-16 19:07:14.485957 2024-07-16 19:07:14.485967 pidref 271324015 R rec b6910b2c-383e-4cab-86dc-6438657a1fb5 -2024-07-16 19:07:14.563445 2024-07-16 19:07:14.563463 pidref 271324031 R rec de5b0b53-70a4-45f1-bbbf-32266e01b856 -2024-07-16 19:07:14.648335 2024-07-16 19:07:14.648349 pidref 271324058 R rec 0e2777bb-1e1c-47d8-81c5-e8bace0ee77e -2024-07-16 19:07:14.728565 2024-07-16 19:07:14.728581 pidref 271324074 R rec 44ff028b-8c98-493a-b5c2-a8eb75fa24e5 -2024-07-16 19:07:14.804443 2024-07-16 19:07:14.804453 pidref 271324562 R rec a7f25165-f11e-4b5d-8cf4-c782161771cf -2024-07-16 19:07:14.888361 2024-07-16 19:07:14.888376 pidref 271326441 R rec 2d430cbd-5f14-4d32-ae76-1bf6086b572c -2024-07-16 19:07:14.986633 2024-07-16 19:07:14.986648 pidref 271326476 R rec 6b5447cb-8db4-437f-93a9-52c98d19e5b6 -2024-07-16 19:07:15.073833 2024-07-16 19:07:15.073845 pidref 271326484 R rec ff1c3a27-75a3-47d8-9416-a7659715a08f -2024-07-16 19:07:15.128158 2024-07-16 19:07:15.128163 pidref 271326506 R rec 535b307a-bdff-4e3d-bc6d-26d30f664bc2 -2024-07-16 19:07:15.171506 2024-07-16 19:07:15.171515 pidref 271326514 R rec cdf07be2-b578-4b3a-95d1-1f76972be4ff -2024-07-16 19:07:15.234255 2024-07-16 19:07:15.234266 pidref 271326522 R rec fdf264ee-be7f-4eb0-af6b-f0ecbb498d3c -2024-07-16 19:07:15.315816 2024-07-16 19:07:15.315831 pidref 271326530 R rec 0fcea29f-08b5-469e-a2a9-4dde023155fa -2024-07-16 19:07:15.388982 2024-07-16 19:07:15.388994 pidref 271326557 R rec 36cac329-b31b-4476-bd24-36ca93898d0c -2024-07-16 19:07:15.480658 2024-07-16 19:07:15.480669 pidref 271326603 R rec da5dfc6f-0190-43ae-afdf-f4a15087f640 -2024-07-16 19:07:15.559161 2024-07-16 19:07:15.559172 pidref 271326670 R rec 6a441b34-d15b-43d7-bd23-817c9527af10 -2024-07-16 19:07:15.64077 2024-07-16 19:07:15.640786 pidref 271326700 R rec ddba7d1e-46d5-4daa-a5c1-f79067857f87 -2024-07-16 19:07:15.722321 2024-07-16 19:07:15.722336 pidref 271326727 R rec 603c305d-aaf7-4e58-af8e-70f0404a22e7 -2024-07-16 19:07:15.798895 2024-07-16 19:07:15.798905 pidref 271326751 R rec c3cd0227-5267-42c5-9e6e-8e081170447e -2024-07-16 19:07:15.874331 2024-07-16 19:07:15.874341 pidref 27132676X R rec 65b312bf-bea0-4764-a551-b9222cbc0e10 -2024-07-16 19:07:15.945708 2024-07-16 19:07:15.945724 pidref 271326778 R rec 3f6cdd5b-c891-4816-891c-09a6b15a49d2 -2024-07-16 19:07:16.027482 2024-07-16 19:07:16.027495 pidref 271326786 R rec 6c6e13f7-a048-4b6d-a6e1-5055cbcc41cf -2024-07-16 19:07:16.105407 2024-07-16 19:07:16.105421 pidref 271326794 R rec a470a2f1-0d97-49dc-a0a1-165b6a8df8f0 -2024-07-16 19:07:16.164573 2024-07-16 19:07:16.164578 pidref 271326808 R rec 20b8743f-2d30-439c-9729-411455590c46 -2024-07-16 19:07:16.212658 2024-07-16 19:07:16.212667 pidref 271326824 R rec f58a2048-5c78-4d3f-8e7a-ac99e0db0a7c -2024-07-16 19:07:16.267678 2024-07-16 19:07:16.26769 pidref 271326832 R rec 2836ca5e-f1d1-4568-a630-e833df5d9587 -2024-07-16 19:07:16.346969 2024-07-16 19:07:16.346979 pidref 271326840 R rec 31cad28d-ba8d-4482-b255-040fa2e01891 -2024-07-16 19:07:16.421139 2024-07-16 19:07:16.421157 pidref 271327383 R rec bec461c9-25b3-4d04-91a8-9a51ab53e24a -2024-07-16 19:07:16.498848 2024-07-16 19:07:16.498863 pidref 271328762 R rec 640db1a7-ed1e-45cd-8599-47ec8cf79cce -2024-07-16 19:07:16.583815 2024-07-16 19:07:16.58383 pidref 271329017 R rec 48b15594-89bd-4e61-b8cb-226b3923fd59 -2024-07-16 19:07:16.668692 2024-07-16 19:07:16.668702 pidref 271329335 R rec 4263505f-5529-4e90-9b93-abe323570586 -2024-07-16 19:07:16.740981 2024-07-16 19:07:16.740994 pidref 271329696 R rec 650fa7ff-20d9-4673-a12e-1ae185050408 -2024-07-16 19:07:16.824067 2024-07-16 19:07:16.824083 pidref 271329734 R rec 47233e7b-dcec-4ad0-b1e1-928c5be63e45 -2024-07-16 19:07:16.905513 2024-07-16 19:07:16.905525 pidref 271329831 R rec ba267968-9d21-43a9-98b8-6396f3b262f3 -2024-07-16 19:07:17.0025 2024-07-16 19:07:17.002517 pidref 271329912 R rec 7b0e5d93-a410-457a-b798-747dace160e4 -2024-07-16 19:07:17.088949 2024-07-16 19:07:17.08896 pidref 271329998 R rec bda14ccd-d286-4bae-a186-2f61cad1c324 -2024-07-16 19:07:17.175193 2024-07-16 19:07:17.175199 pidref 271330031 R rec 0d367724-cce8-4e80-97e3-c7f76d782d31 -2024-07-16 19:07:17.222497 2024-07-16 19:07:17.222502 pidref 271330163 R rec d8077455-a705-4f7d-828b-ece47aaf8356 -2024-07-16 19:07:17.280373 2024-07-16 19:07:17.280385 pidref 271331658 R rec 32a60077-36ae-486a-919a-e5f6375bf481 -2024-07-16 19:07:17.357933 2024-07-16 19:07:17.357949 pidref 271331712 R rec 4f546dfd-d947-49f4-ac99-05004a09c315 -2024-07-16 19:07:17.442187 2024-07-16 19:07:17.4422 pidref 27133181X R rec 68ce01e2-b29b-49e5-aa19-3b968eae3fe0 -2024-07-16 19:07:17.522082 2024-07-16 19:07:17.522097 pidref 271332352 R rec 35315db2-5be9-4f5a-9ee7-ef66af20e329 -2024-07-16 19:07:17.599812 2024-07-16 19:07:17.599828 pidref 271332778 R rec e505c82a-3b57-43f3-ad30-0f9e60eaa4bd -2024-07-16 19:07:17.681614 2024-07-16 19:07:17.681629 pidref 271332824 R rec 0af44eda-4ba2-4398-b132-546f7ed7dbb2 -2024-07-16 19:07:17.76258 2024-07-16 19:07:17.762596 pidref 271333081 R rec 91ae9500-e748-4796-8857-b29c0a9551e1 -2024-07-16 19:07:17.847946 2024-07-16 19:07:17.847956 pidref 271333197 R rec 778098a0-4a5d-4668-8b46-83caf35ee9b3 -2024-07-16 19:07:17.937613 2024-07-16 19:07:17.937623 pidref 271333243 R rec 9e694b23-873b-4f6f-8e18-32f54da0cb43 -2024-07-16 19:07:18.02187 2024-07-16 19:07:18.021884 pidref 271337214 R rec 3384149b-9026-4432-99cf-9af2319bedd9 -2024-07-16 19:44:37.60224 2024-07-16 19:44:37.602291 pidref 027228428 R rec 79686cae-9b97-456a-90c5-6fa9821905d5 -2024-07-16 19:50:12.027823 2024-07-16 19:50:12.027849 pidref 027228959 R rec fde86a53-f276-4b27-b2e9-86bf8eb9b8c5 -2024-07-16 19:50:12.372974 2024-07-16 19:50:12.373078 pidref 097857300 R rec df7470a3-4a4c-4764-a736-13ff99ec85bb -2024-07-16 19:50:13.696167 2024-07-16 19:50:13.696204 pidref 027262162 R rec c61651bf-fe1d-489f-914d-2ed5a5b41356 -2024-07-16 19:50:13.986943 2024-07-16 19:50:13.986965 pidref 027244520 R rec cfc173ce-a487-4c48-8037-fba41401180b -2024-07-16 19:50:14.301128 2024-07-16 19:50:14.301133 pidref 029036690 R rec fc5d899d-21a0-49e9-9917-8a231d9ae24c -2024-07-16 19:50:14.539169 2024-07-16 19:50:14.539187 pidref 027242005 R rec 22ccf69f-23ae-49e3-8f7b-1af6b5dba4f1 -2024-07-16 19:50:14.828423 2024-07-16 19:50:14.828454 pidref 027286703 R rec 62cc25eb-6078-4a3e-9bf2-88a050c3fab2 -2024-07-16 19:50:15.111679 2024-07-16 19:50:15.111706 pidref 027230430 R rec 900dc97f-e1ee-41db-8896-cef2ef1e45e8 -2024-07-16 19:50:18.428724 2024-07-16 19:50:18.428755 pidref 027417298 R rec 2e97864c-1e45-4a73-827b-db52b480a462 -2024-07-16 19:50:18.682219 2024-07-16 19:50:18.682231 pidref 028146239 R rec eafa5534-e77a-45a6-8096-b2ffbc35f340 -2024-07-16 19:50:18.963137 2024-07-16 19:50:18.963158 pidref 027234002 R rec 37da39bd-fa32-4dea-bf05-192501b77fa7 -2024-07-16 19:50:19.251951 2024-07-16 19:50:19.25198 pidref 028992318 R rec 9cb5002f-6530-4a15-9e9c-591f87efce54 -2024-07-16 19:50:20.535467 2024-07-16 19:50:20.535493 pidref 027266060 R rec 9236b8a0-0021-4158-9e42-01e0b9e473e9 -2024-07-16 19:50:21.795222 2024-07-16 19:50:21.795232 pidref 027239365 R rec 892906af-dfc5-4cf0-b1a5-1fb750814498 -2024-07-16 19:50:22.042808 2024-07-16 19:50:22.042843 pidref 144820072 R rec d6beffb6-b9bd-47cf-b272-8251670d80dc -2024-07-16 19:50:23.346915 2024-07-16 19:50:23.346944 pidref 031211097 R rec 8d852b11-8e77-4f27-9415-9d77dfd03250 -2024-07-16 19:50:24.695232 2024-07-16 19:50:24.695265 pidref 027633179 R rec 19e3fd61-0131-461a-bc41-61fb7f8e5e7e -2024-07-16 19:50:24.950318 2024-07-16 19:50:24.950328 pidref 027224694 R rec 7a973b44-b9a4-4254-80f7-33d486477530 -2024-07-16 19:50:25.2007 2024-07-16 19:50:25.200719 pidref 027218562 R rec eaea8879-3f3c-4586-b789-b6fd3155f77d -2024-07-16 19:50:25.482595 2024-07-16 19:50:25.48262 pidref 02721897X R rec 3188f865-a454-4fcd-8e61-394e7171335b -2024-07-16 19:50:25.760285 2024-07-16 19:50:25.760309 pidref 027416925 R rec bdf87b10-4dc2-4151-a156-4a818200a7a1 -2024-07-16 19:50:26.02508 2024-07-16 19:50:26.025091 pidref 02735895X R rec 98020e4e-4083-4cca-ae49-e3d43100866b -2024-07-16 19:50:29.388994 2024-07-16 19:50:29.389027 pidref 157143422 R rec 056d0e08-3369-4ee4-9c4e-c53de7806e70 -2024-07-16 19:50:29.6646 2024-07-16 19:50:29.664618 pidref 027250911 R rec 176e63e8-91a5-4641-a07f-664b47731d94 -2024-07-16 19:50:29.928131 2024-07-16 19:50:29.928151 pidref 027316696 R rec ad5e07bc-f0ab-479b-8a1b-956a24fa705a -2024-07-16 19:50:30.18722 2024-07-16 19:50:30.187227 pidref 027321940 R rec 4717ac1b-c664-4252-8666-c50af420d500 -2024-07-16 19:50:30.420149 2024-07-16 19:50:30.420177 pidref 027443876 R rec 4bbedbc5-733a-44e8-a6c2-24950982ab65 -2024-07-16 19:50:30.679506 2024-07-16 19:50:30.679528 pidref 027375412 R rec 69075d9a-5881-4bce-9a69-6455da15db1c -2024-07-16 19:50:38.101599 2024-07-16 19:50:38.101621 pidref 027220443 R rec 13eb69f4-8734-4be7-8c97-6125372ea0f0 -2024-07-16 19:50:39.451187 2024-07-16 19:50:39.4512 pidref 027259641 R rec c4631823-b376-458d-80c2-65b167fe2ff2 -2024-07-16 19:50:39.680882 2024-07-16 19:50:39.68089 pidref 027407012 R rec baf1cc3e-d892-44db-a685-6dc82603716b -2024-07-16 19:50:39.906785 2024-07-16 19:50:39.906798 pidref 027804151 R rec 45228aa8-75bb-4b82-9051-d8b746da55b4 -2024-07-16 19:50:40.178502 2024-07-16 19:50:40.178529 pidref 02847158X R rec 45551c4e-df0b-482f-a3bc-c11a596bb8c1 -2024-07-16 19:50:40.511632 2024-07-16 19:50:40.511669 pidref 271438436 R rec 65f6f39b-724f-44eb-9b66-64fcfdc164ba -2024-07-16 19:50:48.106108 2024-07-16 19:50:48.106121 pidref 14704233X R rec 580fffec-7dc8-4339-9bb0-c61526207827 -2024-07-16 19:50:49.323966 2024-07-16 19:50:49.323984 pidref 198231288 R rec 9788cf24-132d-4f7c-9565-7ec9dd469a37 -2024-07-16 19:50:49.554741 2024-07-16 19:50:49.554772 pidref 028931491 R rec 4b0a8ff2-70c4-414b-af29-bbf35c5c4173 -2024-07-16 19:50:52.942435 2024-07-16 19:50:52.942469 pidref 029201098 R rec cdb320db-6adc-4102-8d41-6249b41b76dc -2024-07-16 19:50:53.206028 2024-07-16 19:50:53.20605 pidref 027218619 R rec e225850d-7f87-4923-be1b-395afcfd9417 -2024-07-16 19:50:53.459702 2024-07-16 19:50:53.459708 pidref 027228517 R rec 29209b51-4c32-4fd0-841f-e01401e025c5 -2024-07-16 19:50:54.70879 2024-07-16 19:50:54.708825 pidref 027401448 R rec 98811de7-6a02-4c01-8457-a8b7f932b93e -2024-07-16 19:50:54.965051 2024-07-16 19:50:54.965089 pidref 027250938 R rec b4395e3b-33c6-45eb-826e-8cd684b899ef -2024-07-16 19:50:55.238717 2024-07-16 19:50:55.23874 pidref 027849414 R rec 12d7b06b-baff-4339-814a-c1d34c0ac191 -2024-07-16 19:50:55.49383 2024-07-16 19:50:55.493844 pidref 027226042 R rec 0af8f324-b21d-4727-99d5-9d68162bfec1 -2024-07-16 19:50:55.712896 2024-07-16 19:50:55.712934 pidref 027264580 R rec 93a26f6d-2cb8-41eb-8d02-43d8ff4a317b -2024-07-16 19:50:57.039773 2024-07-16 19:50:57.039866 pidref 027437213 R rec 9cb546ec-227f-4699-81c4-327cb57ecb3c -2024-07-16 19:50:57.294228 2024-07-16 19:50:57.294245 pidref 027377768 R rec d9f269e5-a9ad-4f8e-a2bd-1f05930a5313 -2024-07-16 19:50:57.566662 2024-07-16 19:50:57.566719 pidref 027622444 R rec 1cf18ee8-bbe2-45ed-b643-05ce92c43e0a -2024-07-16 19:50:58.879155 2024-07-16 19:50:58.87918 pidref 027252272 R rec 20900220-747e-4f3b-b98f-6654b45756d7 -2024-07-16 19:50:59.159127 2024-07-16 19:50:59.159165 pidref 027263495 R rec 10afd762-5896-43e0-ab35-a41bf5217c41 -2024-07-16 19:51:00.490775 2024-07-16 19:51:00.490781 pidref 02754785X R rec 6bc99c0f-4168-4f70-92bf-dd3db889d696 -2024-07-16 19:51:00.673731 2024-07-16 19:51:00.673736 pidref 027614697 R rec 99863177-b77d-4b12-93c2-5edf466071e4 -2024-07-16 19:51:00.858496 2024-07-16 19:51:00.8585 pidref 027369714 R rec fd179e5d-9721-4945-aa09-720ed13802e6 -2024-07-16 19:51:01.051299 2024-07-16 19:51:01.051302 pidref 030519799 R rec ec1fc548-f70f-4bf5-a04d-0f83dcef879c -2024-07-16 19:51:01.2371 2024-07-16 19:51:01.237106 pidref 071586709 R rec a4390555-79f6-408a-8b74-7f4f3c5d82c7 -2024-07-16 19:51:01.423853 2024-07-16 19:51:01.423858 pidref 02788743X R rec 76f5971c-a4ee-459f-a399-96c710bd0948 -2024-07-16 19:51:01.607763 2024-07-16 19:51:01.607767 pidref 029805287 R rec ca12913a-b36d-443d-8bf5-99cda1da80f0 -2024-07-16 19:51:02.821372 2024-07-16 19:51:02.82138 pidref 161911846 R rec c1c3ffe7-43b2-4e0e-84d5-57af26a4a4e8 -2024-07-16 19:51:03.040837 2024-07-16 19:51:03.040858 pidref 02775751X R rec b7384880-d017-4d0f-b70b-54cddf1b3f6f -2024-07-16 19:51:03.311833 2024-07-16 19:51:03.311867 pidref 028724208 R rec 6bf18d02-ed41-4944-a43c-ba7edc149521 -2024-07-16 19:51:04.59806 2024-07-16 19:51:04.598082 pidref 260966401 R rec d824fd89-0f08-474d-bd96-431b379529eb -2024-07-16 19:51:04.861055 2024-07-16 19:51:04.861087 pidref 26144722X R rec b51fdd1f-cd67-4ef2-a700-2d00909f4944 -2024-07-16 19:51:05.097965 2024-07-16 19:51:05.097997 pidref 027218546 R rec 4b75d431-f9ec-4301-80f2-e38718dc2f4c -2024-07-16 19:51:05.336349 2024-07-16 19:51:05.336375 pidref 027229246 R rec 369512dc-5322-4ff9-a374-6fc1cfd9aa32 -2024-07-16 19:51:05.602839 2024-07-16 19:51:05.602851 pidref 027401421 R rec 9bf8d02f-e84b-4b91-9f30-9d99d9242a6b -2024-07-16 19:51:06.870793 2024-07-16 19:51:06.870811 pidref 027356302 R rec d4df63b1-6205-4fbc-bb51-6e4300336121 -2024-07-16 19:51:10.228852 2024-07-16 19:51:10.22886 pidref 027243222 R rec c9830725-e60d-4c83-a558-6d6536c932de -2024-07-16 19:51:11.491742 2024-07-16 19:51:11.49177 pidref 027222950 R rec 2c562227-1bb9-466d-b93c-f659ce3021ad -2024-07-16 19:51:12.791067 2024-07-16 19:51:12.791103 pidref 027251411 R rec 549f5233-c741-4091-a150-2419531acba2 -2024-07-16 19:51:13.063598 2024-07-16 19:51:13.063622 pidref 027318494 R rec 4ecb0303-0852-4182-85ad-f1b3b65d19a8 -2024-07-16 19:51:16.379232 2024-07-16 19:51:16.379265 pidref 027303063 R rec 40cceb15-26c6-438a-85bf-34c86fdf1061 -2024-07-16 19:51:17.630986 2024-07-16 19:51:17.630991 pidref 027296946 R rec 68b2f0a1-8422-4d1c-9f56-87c68ea8d82d -2024-07-16 19:51:17.826968 2024-07-16 19:51:17.82698 pidref 027250644 R rec 89ca059f-fba1-4bca-90fe-e51bf740fc3e -2024-07-16 19:51:18.009315 2024-07-16 19:51:18.009321 pidref 027267873 R rec cda59b99-d01f-4662-a928-f4856958375a -2024-07-16 19:51:18.194439 2024-07-16 19:51:18.194444 pidref 027252620 R rec 7f4f8505-7534-46e9-a7a6-bb341aa7fe1a -2024-07-16 19:51:18.382139 2024-07-16 19:51:18.382144 pidref 027263762 R rec a7e0e5bb-ff9c-4290-bc7d-82076edf052e -2024-07-16 19:51:18.566821 2024-07-16 19:51:18.566828 pidref 027239497 R rec 1b0440b4-9b65-48de-874f-c99c54121c9a -2024-07-16 19:51:19.866664 2024-07-16 19:51:19.866679 pidref 02725349X R rec 0b8d5e40-1535-4883-a9c2-b30b56c87f42 -2024-07-16 19:51:20.152307 2024-07-16 19:51:20.152334 pidref 027290530 R rec d1d4dbdb-f1b3-4e43-b727-d33e787ac735 -2024-07-16 19:51:23.446859 2024-07-16 19:51:23.448699 pidref 02725108X R rec 6f3946fb-83dd-4781-b711-131f67355d43 -2024-07-16 19:51:23.682758 2024-07-16 19:51:23.682795 pidref 027945774 R rec 7a4067ca-3c4e-4d24-861a-1d6083b46f5a -2024-07-16 19:51:23.944557 2024-07-16 19:51:23.944591 pidref 027311430 R rec d85da3af-257e-4a82-ae3f-26370f30f05c -2024-07-16 19:51:24.209043 2024-07-16 19:51:24.209063 pidref 027405621 R rec ee529ba3-168e-4b46-b5e1-96252bff3f4f -2024-07-16 19:51:24.470888 2024-07-16 19:51:24.470919 pidref 027768678 R rec 46e857b9-6498-48c5-9145-c6c7a4a04baa -2024-07-16 19:51:24.730089 2024-07-16 19:51:24.730122 pidref 261121162 R rec ec9819bf-c9b7-4567-8918-b6f46e6e8027 -2024-07-16 19:51:28.040213 2024-07-16 19:51:28.040231 pidref 25887421X R rec 468f7afb-0feb-4ea0-8cf5-eb8cd89f2052 -2024-07-16 19:51:28.281395 2024-07-16 19:51:28.281426 pidref 027705781 R rec 875fc8bf-9e05-4591-871a-bcc5e2dcfc12 -2024-07-16 19:51:29.605444 2024-07-16 19:51:29.605475 pidref 027524329 R rec f9475d7e-bdad-417a-a1eb-1eb77cfe7bcb -2024-07-16 19:51:29.871272 2024-07-16 19:51:29.871293 pidref 263837920 R rec d5c66526-b63e-4868-90c7-2754d678d425 -2024-07-16 19:51:30.117353 2024-07-16 19:51:30.117361 pidref 264406095 R rec a13d527f-f870-429b-8a12-1b7aed3ce198 -2024-07-16 19:51:30.367736 2024-07-16 19:51:30.367761 pidref 027237664 R rec cb40b83e-3f9f-4742-abce-7493715353f9 -2024-07-16 19:51:30.618426 2024-07-16 19:51:30.618452 pidref 027225488 R rec d38ffdbc-3f1f-4056-8afd-75403bf3ecb5 -2024-07-16 19:51:30.881646 2024-07-16 19:51:30.881672 pidref 027224678 R rec 0f4c6a08-e636-48ae-b5e9-df9faa161a00 -2024-07-16 19:51:31.11726 2024-07-16 19:51:31.117266 pidref 027254755 R rec 5b5eb7d6-9db3-437a-a7e6-12cf321b8b28 -2024-07-16 19:51:31.363069 2024-07-16 19:51:31.363088 pidref 027263711 R rec 370958b0-7e2f-4c16-901d-ff2fde15039e -2024-07-16 19:51:31.655391 2024-07-16 19:51:31.655439 pidref 027224406 R rec fcb3810f-64a7-4ec9-acc0-f8d4cd0d06f3 -2024-07-16 19:51:35.037838 2024-07-16 19:51:35.037866 pidref 02725030X R rec 1f2ad8bb-eeaf-4a0b-85cc-c3327f3ece4f -2024-07-16 19:51:42.558793 2024-07-16 19:51:42.558812 pidref 027429261 R rec ce94e997-c47a-4173-ba64-ea91114f5c85 -2024-07-16 19:51:42.839868 2024-07-16 19:51:42.839879 pidref 027223736 R rec 2b90f5ee-e626-4663-b048-cb41e1f2ffa2 -2024-07-16 19:51:43.054717 2024-07-16 19:51:43.054728 pidref 027251551 R rec 3c63e695-531b-44ab-b12f-a6a00e857d07 -2024-07-16 19:51:43.273536 2024-07-16 19:51:43.273548 pidref 027230309 R rec 3e5040f1-d4eb-4a28-805e-b7d2b6bcd032 -2024-07-16 19:51:43.485119 2024-07-16 19:51:43.485131 pidref 027236668 R rec bd4bddca-b223-498b-a4e4-96241d6edbf0 -2024-07-16 19:51:43.688542 2024-07-16 19:51:43.688549 pidref 028179420 R rec 04fa09c5-aaeb-4f20-86aa-8b8c7556eaa6 -2024-07-16 19:51:43.885179 2024-07-16 19:51:43.885196 pidref 027259285 R rec bc4d09b0-ecb2-4827-9716-8bdeb88159ca -2024-07-16 19:51:45.17317 2024-07-16 19:51:45.17319 pidref 027266257 R rec 4826e8d6-a14f-467d-a743-d9fa67f54597 -2024-07-16 19:51:45.454117 2024-07-16 19:51:45.454141 pidref 027350789 R rec 6df48dc4-0816-4e55-84d8-49b1244e0a4e -2024-07-16 19:51:45.703708 2024-07-16 19:51:45.703721 pidref 027401901 R rec e37de233-0fcd-41e4-9dbb-96fdc6fdea60 -2024-07-16 19:51:53.062434 2024-07-16 19:51:53.062449 pidref 02726369X R rec 3d4658b3-6037-4e43-b52a-7db7bf25c943 -2024-07-16 19:51:53.299341 2024-07-16 19:51:53.299352 pidref 027356949 R rec 8aad575f-ed2b-4045-8d0d-cdf4e6c7f32c -2024-07-16 19:51:54.537029 2024-07-16 19:51:54.53704 pidref 027263487 R rec 6e1f48f6-d601-4229-86b4-609f67e82edb -2024-07-16 19:51:54.786025 2024-07-16 19:51:54.786052 pidref 027408647 R rec 7dd5c95c-945f-4e96-a52c-4f9ffdffe737 -2024-07-16 19:51:55.081838 2024-07-16 19:51:55.081871 pidref 027322998 R rec 33e92444-c036-48ac-8555-78b027a103a0 -2024-07-16 19:51:55.35909 2024-07-16 19:51:55.359105 pidref 031649424 R rec 343baec4-e452-4a2a-a60c-7aadfcb29876 -2024-07-16 19:51:55.581436 2024-07-16 19:51:55.581451 pidref 185110363 R rec 22a9a59c-1b85-435d-a976-ce4cc0884705 -2024-07-16 19:51:56.883833 2024-07-16 19:51:56.883847 pidref 027502368 R rec 049f5003-95a1-429f-ace2-ac448b07cff7 -2024-07-16 19:51:57.097717 2024-07-16 19:51:57.097729 pidref 032861621 R rec a53354b0-12d2-4227-ab5c-5c4e93123e56 -2024-07-16 19:51:57.358562 2024-07-16 19:51:57.358572 pidref 027442128 R rec 16461aec-6e61-4fa7-8633-be273097592d -2024-07-16 19:51:57.567478 2024-07-16 19:51:57.567497 pidref 027472906 R rec 79a8978a-e516-425a-9c69-982516131576 -2024-07-16 19:52:13.342101 2024-07-16 19:52:13.342116 pidref 027585190 R rec 68f52192-43e4-4914-a484-1218e12b3927 -2024-07-16 19:52:13.559214 2024-07-16 19:52:13.559235 pidref 237279614 R rec 996df500-f99d-4da4-ade6-17f5c4d1ccf1 -2024-07-16 19:52:15.367191 2024-07-16 19:52:15.367207 pidref 276534921 R rec 176166c6-3938-4fbd-a8c4-0614a3ee0556 -2024-07-16 19:52:15.61701 2024-07-16 19:52:15.617037 pidref 027342395 R rec 2e234a90-8297-4dac-b8bf-7829c0281965 -2024-07-16 19:52:15.904615 2024-07-16 19:52:15.904635 pidref 027244482 R rec 3d4f273c-7477-4993-b73e-5ffe8d743f98 -2024-07-16 19:52:16.16138 2024-07-16 19:52:16.161394 pidref 027249654 R rec 9b15923f-a207-4731-b40c-6a9264059299 -2024-07-16 19:52:16.394081 2024-07-16 19:52:16.394092 pidref 027250679 R rec 47764638-d38e-480e-a6f3-699a96d0c6c2 -2024-07-16 19:52:16.627261 2024-07-16 19:52:16.62729 pidref 027437221 R rec 3e4d05d5-dffe-4f0e-87c7-c7c8d9a2bb90 -2024-07-16 19:52:17.941231 2024-07-16 19:52:17.94126 pidref 027434141 R rec 59ffe23d-b35f-4c9e-9985-70996dda152d -2024-07-16 19:52:19.259957 2024-07-16 19:52:19.259961 pidref 027801101 R rec 7841dc91-397e-4586-95b6-a44f83b58421 -2024-07-16 19:52:19.485653 2024-07-16 19:52:19.485664 pidref 027256308 R rec 84646520-0d09-42b3-9d81-1587f59da556 -2024-07-16 19:52:20.72878 2024-07-16 19:52:20.728813 pidref 027283518 R rec a815e30a-be70-4d08-b64d-c45777ed0f96 -2024-07-16 19:52:20.991747 2024-07-16 19:52:20.991777 pidref 027316211 R rec 3bb903e3-2daa-482c-b5a5-138ba1d152c7 -2024-07-16 19:52:22.346013 2024-07-16 19:52:22.346021 pidref 027267830 R rec 94303d1e-b64b-4b7d-ab70-01a6317fcfa6 -2024-07-16 19:52:22.585423 2024-07-16 19:52:22.585446 pidref 264645081 R rec e9d708b5-fee3-4477-8f50-6452949e2878 -2024-07-16 19:52:22.864992 2024-07-16 19:52:22.86502 pidref 027236536 R rec 724be9c9-9019-4c46-a752-9f4352e30364 -2024-07-16 19:52:23.125317 2024-07-16 19:52:23.125337 pidref 027252388 R rec 6733dc8e-b802-4235-b0e1-9075f6ed0526 -2024-07-16 19:52:26.435753 2024-07-16 19:52:26.435785 pidref 02724606X R rec 7a10349e-fe87-42c0-a966-edde3ff23357 -2024-07-16 19:52:26.684914 2024-07-16 19:52:26.684931 pidref 114526591 R rec 0a360d10-628d-4f89-be6f-155cea5da51c -2024-07-16 19:52:26.936151 2024-07-16 19:52:26.936193 pidref 02899275X R rec 73bd362d-d096-4428-8d8e-bf41daf21c6d -2024-07-16 19:52:27.200363 2024-07-16 19:52:27.20038 pidref 027367428 R rec 88b6c326-69de-4ad1-b855-057de368bfa9 -2024-07-16 19:52:28.484853 2024-07-16 19:52:28.484864 pidref 027597334 R rec c3e24077-580c-4bce-be99-b2c0ccb3b05e -2024-07-16 19:52:28.717224 2024-07-16 19:52:28.717231 pidref 027218856 R rec 2daea254-8acc-43b5-8f96-cf35f6af501e -2024-07-16 19:52:28.933713 2024-07-16 19:52:28.933735 pidref 157143392 R rec 417af791-ab9a-4626-8449-de300f73bcbe -2024-07-16 19:52:29.173695 2024-07-16 19:52:29.173715 pidref 027226794 R rec aa866d00-dd5f-4ca5-bfbd-967f7dd63dbc -2024-07-16 19:52:29.458688 2024-07-16 19:52:29.45871 pidref 085703419 R rec 916fc359-854b-4dbb-a575-3cf986461b17 -2024-07-16 19:52:30.82027 2024-07-16 19:52:30.82028 pidref 027218767 R rec c52100c3-8266-4b39-a814-91226ce70f55 -2024-07-16 19:52:32.106516 2024-07-16 19:52:32.106533 pidref 028567005 R rec c50d7635-6fc6-4b59-8165-a389ac369a43 -2024-07-16 19:52:33.361161 2024-07-16 19:52:33.361187 pidref 027584763 R rec 864a3656-d82d-49ff-9a0a-3d5a68e3e000 -2024-07-16 19:52:33.633454 2024-07-16 19:52:33.633476 pidref 027468909 R rec 3f203b54-7879-41bc-8d4e-b2b3f974f107 -2024-07-16 19:52:33.892938 2024-07-16 19:52:33.892952 pidref 027218961 R rec fcd5ebca-3740-43d2-bd6a-cc1e38a2638b -2024-07-16 19:52:34.124783 2024-07-16 19:52:34.124816 pidref 264644093 R rec 370dd453-897b-488a-ad3d-9474f124c83e -2024-07-16 19:52:34.391324 2024-07-16 19:52:34.391358 pidref 027237249 R rec ba680d93-932e-4832-852f-60c416a50de9 -2024-07-16 19:52:35.754877 2024-07-16 19:52:35.754897 pidref 027407918 R rec 13e78910-fd64-4e6d-a34f-a5249f3f3c42 -2024-07-16 19:52:36.017931 2024-07-16 19:52:36.017938 pidref 027218597 R rec 48d5cf11-714e-4c1c-bd46-e364b8c69da1 -2024-07-16 19:52:36.244133 2024-07-16 19:52:36.244143 pidref 027238180 R rec 9d40f415-7a1a-4579-a19e-6ed148794b76 -2024-07-16 19:52:36.51361 2024-07-16 19:52:36.513634 pidref 027224651 R rec 20afeb77-12f9-418f-a227-38ef91ca5605 -2024-07-16 19:52:36.759906 2024-07-16 19:52:36.759919 pidref 027250636 R rec d4c3c98c-8cb1-43ff-8bee-5d18ab9bef8c -2024-07-16 19:52:36.984399 2024-07-16 19:52:36.984418 pidref 055302149 R rec b016b38c-f1aa-476a-adaf-72caaf60d12c -2024-07-16 19:52:37.225999 2024-07-16 19:52:37.226018 pidref 030575257 R rec 734dff6e-f0d6-4117-bd7d-0c4e10f5e7cf -2024-07-16 19:52:38.5056 2024-07-16 19:52:38.505638 pidref 027275922 R rec 82b045c1-2f60-4a0d-8261-2758d1ac3626 -2024-07-16 19:52:41.762747 2024-07-16 19:52:41.762752 pidref 027360199 R rec 1eac1f76-2822-4d2c-9b36-cd7e019dfd06 -2024-07-16 19:52:41.95569 2024-07-16 19:52:41.955697 pidref 027377067 R rec e091fb1d-0340-45bf-a1ab-fcdf790c138d -2024-07-16 19:52:42.145412 2024-07-16 19:52:42.145417 pidref 027501418 R rec 03aac9cd-04c1-4018-a474-6e82f9024181 -2024-07-16 19:52:42.33458 2024-07-16 19:52:42.334589 pidref 027252361 R rec 7e9f2040-ac84-45d7-94b4-88b40786702b -2024-07-16 19:52:42.521805 2024-07-16 19:52:42.521811 pidref 027251659 R rec fa8cf78a-e57e-4148-b3d4-ba3284961c33 -2024-07-16 19:52:42.713151 2024-07-16 19:52:42.713158 pidref 027252124 R rec ddab4828-8a62-468a-95e5-8c8368f6c437 -2024-07-16 19:52:42.901855 2024-07-16 19:52:42.90187 pidref 027375080 R rec 05e8d4d9-2568-4962-a3b6-dca5f9ba90ff -2024-07-16 19:52:43.123308 2024-07-16 19:52:43.123319 pidref 027526836 R rec f3797483-51ee-4d1e-a455-e903de2f8340 -2024-07-16 19:52:43.333336 2024-07-16 19:52:43.333348 pidref 028988310 R rec bb622110-06f1-4d3f-b554-175b45595aac -2024-07-16 19:52:46.609621 2024-07-16 19:52:46.609643 pidref 276510216 R rec 49199b87-60fc-42e1-9739-b05d7a730dd8 -2024-07-16 19:52:46.834606 2024-07-16 19:52:46.834614 pidref 02722953X R rec deea4ba8-c68a-486e-bcc6-4a77208812de -2024-07-16 19:52:47.087862 2024-07-16 19:52:47.087882 pidref 027331180 R rec 6efe17bf-fc69-42c8-ad32-137f11c91be0 -2024-07-16 19:52:48.454435 2024-07-16 19:52:48.454447 pidref 027259234 R rec 54f8b542-2fa5-433e-9657-a8e5b189bb69 -2024-07-16 19:52:48.674404 2024-07-16 19:52:48.674422 pidref 02724301X R rec cc572724-77bf-4852-a397-8cc99f4f40b5 -2024-07-16 19:52:48.900365 2024-07-16 19:52:48.900375 pidref 027234592 R rec 6f941ab5-77c6-4d69-beaa-aa747fed2c70 -2024-07-16 19:52:49.112366 2024-07-16 19:52:49.112391 pidref 02726453X R rec 9da3d4c5-b09c-4a6b-888b-c36eaa252043 -2024-07-16 19:52:49.390331 2024-07-16 19:52:49.390369 pidref 027223779 R rec ab37e8a0-b297-4698-a829-778f51583f91 -2024-07-16 19:52:49.662936 2024-07-16 19:52:49.66295 pidref 027259978 R rec 31357796-3334-49a9-a92c-875d022d44b4 -2024-07-16 19:52:51.002544 2024-07-16 19:52:51.002556 pidref 027241912 R rec 0dc36102-238a-4572-b0a4-9b72aa3d5efc -2024-07-16 19:52:51.234492 2024-07-16 19:52:51.234514 pidref 027255123 R rec 9efd2e17-fc5f-4444-8469-fedd41accd1e -2024-07-16 19:52:51.501444 2024-07-16 19:52:51.501468 pidref 027333752 R rec 31040aee-4ef1-4f81-a327-2677eed0652c -2024-07-16 19:52:51.765547 2024-07-16 19:52:51.765568 pidref 027262952 R rec 0905c478-1047-4914-931b-4af7b0f82cb7 -2024-07-16 19:52:51.994269 2024-07-16 19:52:51.994296 pidref 027263061 R rec fe9922c3-2755-477e-8d6a-dd0818bb93ba -2024-07-16 19:52:53.264836 2024-07-16 19:52:53.264866 pidref 027323072 R rec 3360e2fb-074a-42db-980f-7ee9a2d34072 -2024-07-16 19:52:53.529016 2024-07-16 19:52:53.529051 pidref 027465012 R rec 24b49249-da59-4433-ac69-2280870fbdc1 -2024-07-16 19:52:53.790855 2024-07-16 19:52:53.790873 pidref 027810674 R rec 749d3a8c-261a-4816-b60d-b2535fa68890 -2024-07-16 19:52:54.058867 2024-07-16 19:52:54.058902 pidref 027502333 R rec 45bff10e-be4a-45b9-b8c4-bd367f83acda -2024-07-16 19:52:54.333148 2024-07-16 19:52:54.333183 pidref 028706536 R rec 0cf0c17f-5961-4182-9489-be8a85c9d264 -2024-07-16 19:52:54.605906 2024-07-16 19:52:54.60594 pidref 027501302 R rec ffc8896e-2119-454f-b4a7-fab00fa773cb -2024-07-16 19:52:54.873329 2024-07-16 19:52:54.873354 pidref 033640874 R rec 0508a40d-4225-4b75-9af0-5759d4dd9d46 -2024-07-16 19:52:55.116585 2024-07-16 19:52:55.116613 pidref 02763857X R rec 5b07b128-f993-4894-b86c-de5b5a230658 -2024-07-16 19:52:55.390747 2024-07-16 19:52:55.390777 pidref 02773417X R rec 8f6907e3-0d41-4ddf-bebc-30d573017f01 -2024-07-16 19:52:55.674254 2024-07-16 19:52:55.674281 pidref 027483304 R rec c6d1416a-dfe3-474b-9edb-a61414a76d7b -2024-07-16 19:52:56.942152 2024-07-16 19:52:56.942166 pidref 085560839 R rec a13bbee0-9525-481c-95c5-1af156cfcf1f -2024-07-16 19:52:57.444955 2024-07-16 19:52:57.444967 pidref 264287010 R rec b799a179-6616-4e58-88fc-d68ff5b03897 -2024-07-16 19:52:57.673175 2024-07-16 19:52:57.673187 pidref 110868056 R rec 3f571b32-6b4d-47ab-9ecb-01dc5f4a4d26 -2024-07-16 19:52:57.914366 2024-07-16 19:52:57.914392 pidref 275775569 R rec 1c163d59-d641-449f-87f8-f6cca41b4dfa -2024-07-16 19:52:58.185379 2024-07-16 19:52:58.185394 pidref 127372547 R rec 25d467d4-29b8-4910-b61c-74cacd2fdabc -2024-07-16 19:52:58.449713 2024-07-16 19:52:58.449744 pidref 116317825 R rec 25f6c7d4-fae7-461e-b16e-c72be43a19ca -2024-07-16 19:52:58.71336 2024-07-16 19:52:58.713389 pidref 150220200 R rec bd9cb1b0-258b-4222-95bb-943949f787f1 -2024-07-16 19:52:58.968508 2024-07-16 19:52:58.968522 pidref 116459425 R rec cc5d3479-1c43-4ddc-8137-1471dd0b55ad +2024-09-11 09:10:50.282686 2024-09-11 09:10:50.282691 pidref 027218562 R rec 9433a12f-5635-409a-a2b4-89d27e3dd74f +2024-09-11 09:10:50.357674 2024-09-11 09:10:50.357679 pidref 027218856 R rec 68ab7791-4966-4903-9f4d-e01d6e6d7070 +2024-09-11 09:10:50.402837 2024-09-11 09:10:50.402842 pidref 027219224 R rec 94e7f2ee-ff7c-46a2-b27d-79cde2809932 +2024-09-11 09:10:50.445953 2024-09-11 09:10:50.445957 pidref 027219631 R rec 08bab9cf-0a47-421b-9d1a-842f1e805a92 +2024-09-11 09:10:50.492902 2024-09-11 09:10:50.492908 pidref 027220389 R rec 09c73370-612a-41fa-b1b5-fb0027e69d4d +2024-09-11 09:10:50.544312 2024-09-11 09:10:50.544317 pidref 027222608 R rec 373d6ae4-2117-47c8-9bde-4ed1f1d772f7 +2024-09-11 09:10:50.602434 2024-09-11 09:10:50.602439 pidref 027222950 R rec 14144098-16e3-4325-a4b9-d4e8714051f8 +2024-09-11 09:10:50.64483 2024-09-11 09:10:50.644836 pidref 027223736 R rec 4468e236-e2e0-40e0-8a8b-5e37a4f6999e +2024-09-11 09:10:50.686504 2024-09-11 09:10:50.686509 pidref 027223760 R rec 0f28e281-9a01-4e39-b5be-378aa78dd73b +2024-09-11 09:10:50.729692 2024-09-11 09:10:50.729698 pidref 027223779 R rec 86cd8a86-d1be-49db-bf68-f05dfc1a72f1 +2024-09-11 09:10:50.770913 2024-09-11 09:10:50.770918 pidref 027224570 R rec 88da1546-cc1e-4c58-9fbd-8523901a994a +2024-09-11 09:10:50.812739 2024-09-11 09:10:50.812744 pidref 027225399 R rec 169e260c-1c0e-4575-b948-f91c8c929ae8 +2024-09-11 09:10:50.87392 2024-09-11 09:10:50.873926 pidref 027225984 R rec 1a4984b0-321a-4f08-bd7c-2137735edd9b +2024-09-11 09:10:50.933955 2024-09-11 09:10:50.933966 pidref 027227472 R rec b3064ae4-783a-4b9a-a87e-5b90cb1493b7 +2024-09-11 09:10:50.996865 2024-09-11 09:10:50.996875 pidref 027227871 R rec 37572c65-3150-42ed-a994-b9cb5fffb7e6 +2024-09-11 09:10:51.056799 2024-09-11 09:10:51.056803 pidref 027228878 R rec d6196985-5fd3-4bc6-9206-8b5ffc8294be +2024-09-11 09:10:51.105515 2024-09-11 09:10:51.105525 pidref 027229211 R rec b52d4a88-fdc0-4462-8e78-970a748b5bde +2024-09-11 09:10:51.163959 2024-09-11 09:10:51.163968 pidref 027230309 R rec 9768e48b-d21f-4b8f-bfb2-e899abf6ceef +2024-09-11 09:10:51.224455 2024-09-11 09:10:51.22446 pidref 027230422 R rec 8f794184-a1d2-4ec0-9471-70f0f779f07c +2024-09-11 09:10:51.280952 2024-09-11 09:10:51.280963 pidref 027230430 R rec 9c02f1b8-7893-4714-890b-f69eb54c6291 +2024-09-11 09:10:51.34175 2024-09-11 09:10:51.341761 pidref 027231585 R rec 56c2aa5f-1922-44c4-818a-e4e2945e1d2e +2024-09-11 09:10:51.410149 2024-09-11 09:10:51.410158 pidref 027234274 R rec 8da12427-eda0-45aa-9dd4-e2090f627635 +2024-09-11 09:10:51.484476 2024-09-11 09:10:51.484486 pidref 027234592 R rec 5ed6beaa-3296-4e98-9335-c0b8ef208a1b +2024-09-11 09:10:51.542343 2024-09-11 09:10:51.542349 pidref 027235769 R rec b7abae76-4e27-4db6-85f2-2ecec731c7b9 +2024-09-11 09:10:51.586537 2024-09-11 09:10:51.586541 pidref 027236153 R rec 0764fbf8-dd88-4ca5-a0ff-0f55df405a48 +2024-09-11 09:10:51.636492 2024-09-11 09:10:51.636501 pidref 027236668 R rec 4af5945d-d61d-4762-bda9-e0d7e0b2b69e +2024-09-11 09:10:51.701438 2024-09-11 09:10:51.701443 pidref 027237257 R rec e83f03c4-0eaf-4b2f-a12f-2c88d6d54de5 +2024-09-11 09:10:51.757241 2024-09-11 09:10:51.757252 pidref 027238423 R rec 658faced-e343-4169-8ffc-6e547cdd296f +2024-09-11 09:10:51.809854 2024-09-11 09:10:51.809866 pidref 027239365 R rec a28e5f8f-35e3-47d6-8dcd-3f813dd9921f +2024-09-11 09:10:51.881984 2024-09-11 09:10:51.881995 pidref 027240525 R rec 096f4bab-c52f-4a0a-9189-18f2e318ba3c +2024-09-11 09:10:51.948116 2024-09-11 09:10:51.948125 pidref 027241912 R rec d928f686-50d8-4cb0-8e80-5e077b454b8c +2024-09-11 09:10:52.005114 2024-09-11 09:10:52.005119 pidref 027242005 R rec 7a6b26d1-1a3a-4f0b-a5d0-c5dd801f4c6f +2024-09-11 09:10:52.090542 2024-09-11 09:10:52.090553 pidref 027242676 R rec 91465cf6-f1f5-494a-90c3-029a681afb38 +2024-09-11 09:10:52.148281 2024-09-11 09:10:52.148292 pidref 027243265 R rec 9c29c2e1-3311-41a6-b06d-19d4d582d9ff +2024-09-11 09:10:52.2099 2024-09-11 09:10:52.20991 pidref 02724606X R rec 6a8cb339-eb12-43c8-b197-abb2f888aa74 +2024-09-11 09:10:52.261019 2024-09-11 09:10:52.261029 pidref 027247740 R rec 2e194688-c63f-419e-88d7-8ee783acc264 +2024-09-11 09:10:52.328089 2024-09-11 09:10:52.328099 pidref 027248704 R rec 18665cf0-e1ea-4654-a121-a3f83d5343d2 +2024-09-11 09:10:52.392906 2024-09-11 09:10:52.392916 pidref 027248933 R rec 44dbdb93-794d-476c-8015-3581bb59aa41 +2024-09-11 09:10:52.460469 2024-09-11 09:10:52.460479 pidref 027250199 R rec 120fcaf6-76ed-4afa-b305-e16d6c9166c3 +2024-09-11 09:10:52.523836 2024-09-11 09:10:52.523845 pidref 027250210 R rec 07fec235-ce77-4bc7-a74b-20d4c7cebed5 +2024-09-11 09:10:52.58587 2024-09-11 09:10:52.585875 pidref 027250245 R rec ad766e84-9086-41d9-af7b-38d10fa078ab +2024-09-11 09:10:52.643299 2024-09-11 09:10:52.64331 pidref 027250393 R rec f653bfc8-a1b7-4cc4-9393-b8f2a18c9345 +2024-09-11 09:10:52.713453 2024-09-11 09:10:52.713459 pidref 027250407 R rec 835c3b66-dea9-44e7-97f6-88980f3ff5c8 +2024-09-11 09:10:52.760879 2024-09-11 09:10:52.760884 pidref 027250547 R rec b5dac474-b54d-457a-81c5-e64e14a583f2 +2024-09-11 09:10:52.811501 2024-09-11 09:10:52.811511 pidref 027250636 R rec 7de16cb7-a95c-47c8-8911-b81c4d95ceb4 +2024-09-11 09:10:52.869294 2024-09-11 09:10:52.869298 pidref 027250695 R rec b2595eda-ec80-4213-be06-ee7b35754fc1 +2024-09-11 09:10:52.928719 2024-09-11 09:10:52.928729 pidref 027250857 R rec 3f3779c5-5790-47ff-871d-3050cd2451cf +2024-09-11 09:10:52.98848 2024-09-11 09:10:52.98849 pidref 027250873 R rec 40cb13c8-bf4d-4460-be7a-7931b6eb1853 +2024-09-11 09:10:53.055487 2024-09-11 09:10:53.055493 pidref 02725089X R rec c4ed599d-1629-4ed7-bfb0-1a7bc1aac9fa +2024-09-11 09:10:53.10068 2024-09-11 09:10:53.100685 pidref 02725108X R rec 51243a7c-eb88-4288-b47f-b7a8803891c4 +2024-09-11 09:10:53.161656 2024-09-11 09:10:53.161666 pidref 027251160 R rec adb3d047-de81-4392-8a64-990cf94c3934 +2024-09-11 09:10:53.243401 2024-09-11 09:10:53.243413 pidref 027251594 R rec c4bd3dc7-0203-4cae-8463-dde83090cd83 +2024-09-11 09:10:53.309822 2024-09-11 09:10:53.309827 pidref 027251659 R rec 0ae25660-7830-4c18-aefc-bb31171270e3 +2024-09-11 09:10:53.372799 2024-09-11 09:10:53.372805 pidref 027251810 R rec 72d1fd79-f4b2-475a-a1c0-9238ae3485d7 +2024-09-11 09:10:53.420858 2024-09-11 09:10:53.420868 pidref 027251861 R rec c39eded0-1e38-41d7-8983-e68c111dc0cd +2024-09-11 09:10:53.478054 2024-09-11 09:10:53.478065 pidref 027252132 R rec 8098c027-7400-4f37-8a5b-9c1879851a10 +2024-09-11 09:10:53.548243 2024-09-11 09:10:53.548253 pidref 027252175 R rec d5a87fc7-4424-4da6-bb42-1f5d403ce554 +2024-09-11 09:10:53.599771 2024-09-11 09:10:53.599776 pidref 027252272 R rec 507e1feb-fee9-438b-bbd0-60cbc63dcfe0 +2024-09-11 09:10:53.666195 2024-09-11 09:10:53.666205 pidref 027252485 R rec fb10e53d-236f-4008-9976-e11fd47ce12a +2024-09-11 09:10:53.741385 2024-09-11 09:10:53.741391 pidref 027252620 R rec 36ebcce8-e2bd-49b5-8965-4df49d4388a1 +2024-09-11 09:10:53.805588 2024-09-11 09:10:53.805599 pidref 027252728 R rec 15cfc4b3-3a76-4b47-99a1-c39cc1a20b13 +2024-09-11 09:10:53.858279 2024-09-11 09:10:53.85829 pidref 027255697 R rec c79fd107-9887-4cc6-aec3-80ffad422ba0 +2024-09-11 09:10:53.916261 2024-09-11 09:10:53.916272 pidref 027256693 R rec e7caccd4-9222-4fa2-a0e7-7749223092e6 +2024-09-11 09:10:53.977794 2024-09-11 09:10:53.977804 pidref 027257525 R rec 91dd8b01-9f58-4120-8f68-c112baf20fb5 +2024-09-11 09:10:54.037042 2024-09-11 09:10:54.037053 pidref 027259641 R rec 01efa89f-f016-4a5c-89e2-7f7437e5b50b +2024-09-11 09:10:54.096605 2024-09-11 09:10:54.096614 pidref 027259811 R rec 93b50744-25d6-4636-a2e8-1ade11fb8b56 +2024-09-11 09:10:54.156771 2024-09-11 09:10:54.156782 pidref 027260011 R rec 3fac2f26-eee5-4a37-86ed-4949de961f59 +2024-09-11 09:10:54.217462 2024-09-11 09:10:54.217467 pidref 02726002X R rec 9bdf3eed-f27f-45dc-ae69-ca84f5fe5185 +2024-09-11 09:10:54.275453 2024-09-11 09:10:54.275464 pidref 027260461 R rec 22b0c8fa-b635-44dd-8e67-285954a7f3ff +2024-09-11 09:10:54.348541 2024-09-11 09:10:54.348551 pidref 027260607 R rec eca6624f-89c3-45ce-af56-f829700ceb30 +2024-09-11 09:10:54.422973 2024-09-11 09:10:54.422983 pidref 027261050 R rec 02da0f4e-a8ba-42bb-9261-6d262d2d89fd +2024-09-11 09:10:54.490465 2024-09-11 09:10:54.490475 pidref 027261204 R rec eb7b1554-ee82-4b3c-8682-aed522b99d2a +2024-09-11 09:10:54.569907 2024-09-11 09:10:54.569912 pidref 027261336 R rec 0aadab2f-3765-4256-8d76-5ad9fe114624 +2024-09-11 09:10:54.61655 2024-09-11 09:10:54.61656 pidref 027261417 R rec aaf3b927-ef20-4d3a-a257-b67b3b80c640 +2024-09-11 09:10:54.675535 2024-09-11 09:10:54.675546 pidref 027261530 R rec 88000370-7a4c-4837-8a38-7eb85c65bed2 +2024-09-11 09:10:54.732675 2024-09-11 09:10:54.732681 pidref 027262111 R rec 95455b7b-1ba4-430f-8aac-1e95697b5dd5 +2024-09-11 09:10:54.801811 2024-09-11 09:10:54.801822 pidref 027262464 R rec 2694964a-97b7-401c-bc99-8fc38f97122d +2024-09-11 09:10:54.86725 2024-09-11 09:10:54.867256 pidref 027262545 R rec de5799c9-91f4-4fd1-bd3d-e02b1b20f4fc +2024-09-11 09:10:54.930701 2024-09-11 09:10:54.930712 pidref 027262685 R rec 0905c41c-947d-49c7-99db-4185d0ca6271 +2024-09-11 09:10:54.996648 2024-09-11 09:10:54.996659 pidref 027263053 R rec fd4f1507-f2a2-48d4-9945-f4b226b5c6d6 +2024-09-11 09:10:55.060058 2024-09-11 09:10:55.060063 pidref 027263118 R rec 4532355e-9492-4b4d-aed9-c346419282f8 +2024-09-11 09:10:55.130376 2024-09-11 09:10:55.130382 pidref 027263193 R rec 60f870af-bcf9-412f-9281-8f8f9e927eb9 +2024-09-11 09:10:55.194772 2024-09-11 09:10:55.194777 pidref 027263495 R rec 1727e16c-9ffe-40ed-ace5-c4351bb66700 +2024-09-11 09:10:55.250832 2024-09-11 09:10:55.250842 pidref 027263746 R rec d4c190d5-4b9b-44e7-97de-b540792976da +2024-09-11 09:10:55.317899 2024-09-11 09:10:55.317911 pidref 027263762 R rec ea081e27-1349-486c-9c04-9166880ff848 +2024-09-11 09:10:55.393823 2024-09-11 09:10:55.393836 pidref 027263789 R rec 1fb41a66-5823-4113-93e2-622811045775 +2024-09-11 09:10:55.463196 2024-09-11 09:10:55.463211 pidref 027263878 R rec a8df8b8d-c811-488a-b3a8-ca0888d2b55b +2024-09-11 09:10:55.538351 2024-09-11 09:10:55.538361 pidref 027264602 R rec 1c4dcaa6-27f3-4152-ae49-e76712d52686 +2024-09-11 09:10:55.586515 2024-09-11 09:10:55.58652 pidref 027265013 R rec dc9da061-16c3-4c18-bd7f-11f5b1dd4bbd +2024-09-11 09:10:55.652579 2024-09-11 09:10:55.652594 pidref 027266060 R rec 1f4fadac-6be6-4fbe-a38b-e23190d4d776 +2024-09-11 09:10:55.726247 2024-09-11 09:10:55.726252 pidref 027267873 R rec 50f90b90-09ec-4006-856f-e3cbec3f49d6 +2024-09-11 09:10:55.790463 2024-09-11 09:10:55.790474 pidref 027274241 R rec 4a269781-fd92-40fe-8bd4-9e83486c0e90 +2024-09-11 09:10:55.86281 2024-09-11 09:10:55.862821 pidref 027274365 R rec be135f66-a121-43e7-8ea9-093ebf5581e2 +2024-09-11 09:10:55.92056 2024-09-11 09:10:55.920572 pidref 027274985 R rec c9f6589d-0435-497c-9b6e-d949b5237176 +2024-09-11 09:10:55.990012 2024-09-11 09:10:55.990017 pidref 027275191 R rec e7ee7b50-b7ab-4fa4-88c8-a3d2a82c76df +2024-09-11 09:10:56.058881 2024-09-11 09:10:56.058887 pidref 027283496 R rec 9537fec0-63d1-49fc-a3f3-f1801115fe3c +2024-09-11 09:10:56.120569 2024-09-11 09:10:56.120578 pidref 027283518 R rec f6f3f3bb-ab9f-4165-957d-1fd4ed770063 +2024-09-11 09:10:56.192875 2024-09-11 09:10:56.19289 pidref 027286703 R rec d10e12ee-aaf1-4f64-9683-48c22b71329f +2024-09-11 09:10:56.259436 2024-09-11 09:10:56.259447 pidref 027286835 R rec df513c22-8685-49ff-9f7d-64ba53e23a29 +2024-09-11 09:10:56.31757 2024-09-11 09:10:56.31758 pidref 027288951 R rec f35b8f5e-c224-4643-9906-e2e4e2f70bee +2024-09-11 09:10:56.389966 2024-09-11 09:10:56.389977 pidref 027290530 R rec 7531b39e-f574-4e81-a818-7c3eb2d832a4 +2024-09-11 09:10:56.455673 2024-09-11 09:10:56.455684 pidref 027291499 R rec 58766a73-d943-4fc0-b156-10247bf0147b +2024-09-11 09:10:56.513783 2024-09-11 09:10:56.513794 pidref 027296946 R rec ed0518b2-cf9d-4e97-921f-764efa362997 +2024-09-11 09:10:56.577064 2024-09-11 09:10:56.577069 pidref 027296970 R rec 3e9b903e-4b46-493c-90ae-7d50ecea59f5 +2024-09-11 09:10:56.638465 2024-09-11 09:10:56.63847 pidref 027297810 R rec 328f3fcb-274a-4cbe-a5e1-39823babe20a +2024-09-11 09:10:56.7148 2024-09-11 09:10:56.714806 pidref 027298531 R rec ad8d0fbf-39c2-470d-b7ae-37bfc6c2d780 +2024-09-11 09:10:56.772339 2024-09-11 09:10:56.772348 pidref 027298728 R rec de19b917-c1ca-4612-8436-96515dcbeba9 +2024-09-11 09:10:56.848193 2024-09-11 09:10:56.848203 pidref 027308561 R rec 362765e0-82db-4ba8-8f54-245b323b9056 +2024-09-11 09:10:56.90953 2024-09-11 09:10:56.909541 pidref 027311058 R rec 867ed87a-7f0e-4693-a6dd-1b2c86a0ce87 +2024-09-11 09:10:56.988461 2024-09-11 09:10:56.988472 pidref 027311430 R rec de3fe250-43ac-48ba-a59e-4fe9f0c5e9b0 +2024-09-11 09:10:57.062389 2024-09-11 09:10:57.062395 pidref 027311694 R rec 10d4f833-0fe2-4cd1-a8d8-f228f05ab87a +2024-09-11 09:10:57.1098 2024-09-11 09:10:57.109813 pidref 027314049 R rec 47ecd8a6-5029-44d7-b935-3089a4184952 +2024-09-11 09:10:57.174765 2024-09-11 09:10:57.17478 pidref 027316696 R rec a9e54242-88e0-49af-ad48-c41599d3b620 +2024-09-11 09:10:57.23557 2024-09-11 09:10:57.235577 pidref 027316866 R rec 09a91ba4-7000-432a-974d-32d8165444a6 +2024-09-11 09:10:57.287602 2024-09-11 09:10:57.287613 pidref 027321940 R rec 1b70ea5c-a426-47c2-9afa-e901ffc4b70d +2024-09-11 09:10:57.358502 2024-09-11 09:10:57.358507 pidref 027323072 R rec f668af20-d2ba-41de-8e2c-4977e0f9b67d +2024-09-11 09:10:57.417368 2024-09-11 09:10:57.417373 pidref 027326977 R rec 50c9a586-61be-4d0d-91f0-fe0d867dca83 +2024-09-11 09:10:57.499841 2024-09-11 09:10:57.49985 pidref 027333752 R rec 52240a42-b094-4146-9ffd-2905f7a34106 +2024-09-11 09:10:57.56705 2024-09-11 09:10:57.567055 pidref 027334279 R rec 1d12189d-b6bb-4258-b4b5-df857513b7a5 +2024-09-11 09:10:57.621636 2024-09-11 09:10:57.621645 pidref 027340880 R rec a580de99-b2c9-4a85-a26d-af96f0f3517a +2024-09-11 09:10:57.70822 2024-09-11 09:10:57.708225 pidref 027341046 R rec d18e1ebd-e953-4894-a32a-e368dd6c0a83 +2024-09-11 09:10:57.759193 2024-09-11 09:10:57.759202 pidref 027341879 R rec 7be3752d-10f2-4420-923f-20b3b9ba1b0f +2024-09-11 09:10:57.826318 2024-09-11 09:10:57.826328 pidref 027345483 R rec ac7b615c-0fee-47a0-a133-b1b768f89387 +2024-09-11 09:10:57.887088 2024-09-11 09:10:57.887097 pidref 027348695 R rec 15d9ec1c-6483-4ab6-9fe4-678c4c3a5ce6 +2024-09-11 09:10:57.955591 2024-09-11 09:10:57.9556 pidref 027349004 R rec 4707948e-5740-4f4c-82a7-d8043dc2fec1 +2024-09-11 09:10:58.019265 2024-09-11 09:10:58.019276 pidref 027350169 R rec f6c66811-b1c3-4f66-9939-94501db0faf8 +2024-09-11 09:10:58.078671 2024-09-11 09:10:58.078676 pidref 027350843 R rec 2af0a77b-d199-4fd8-8f5e-1e0cfb2ec405 +2024-09-11 09:10:58.143702 2024-09-11 09:10:58.143708 pidref 027350991 R rec f690921e-c3d5-4977-b979-81bdf7f7ef95 +2024-09-11 09:10:58.212165 2024-09-11 09:10:58.21217 pidref 027351076 R rec 9a03af40-6626-4d9c-b0cf-818a69ee770d +2024-09-11 09:10:58.270727 2024-09-11 09:10:58.270732 pidref 027353990 R rec 9233e5c7-bf87-45c6-8534-580a521a24a1 +2024-09-11 09:10:58.35122 2024-09-11 09:10:58.351224 pidref 027356388 R rec b5f651cc-0bcf-4158-972f-fb086d3095b1 +2024-09-11 09:10:58.418017 2024-09-11 09:10:58.418027 pidref 027358100 R rec 3ebdc574-b808-4992-bcd1-1e109342070e +2024-09-11 09:10:58.487822 2024-09-11 09:10:58.487834 pidref 027358232 R rec 31ea9086-568c-4bb0-a557-cfc60a79ffe4 +2024-09-11 09:10:58.558455 2024-09-11 09:10:58.55847 pidref 027358305 R rec 86013d7c-103a-4c92-bd20-b985fed308cf +2024-09-11 09:10:58.622472 2024-09-11 09:10:58.622483 pidref 027358321 R rec 860e9a6e-1b92-461d-a35b-e9100b06cece +2024-09-11 09:10:58.682879 2024-09-11 09:10:58.68289 pidref 027358399 R rec a86f9956-a057-4543-83eb-f8d3d48d62e3 +2024-09-11 09:10:58.740085 2024-09-11 09:10:58.740097 pidref 027359336 R rec b1bf008e-df99-4d01-9a0c-6dd929960943 +2024-09-11 09:10:58.820084 2024-09-11 09:10:58.82009 pidref 027360199 R rec 3ffee38c-238c-421b-a7cb-b21181d711e6 +2024-09-11 09:10:58.890295 2024-09-11 09:10:58.8903 pidref 027360881 R rec ecbf87b7-9069-474a-8056-c0ee3073de6a +2024-09-11 09:10:58.960818 2024-09-11 09:10:58.960828 pidref 027366456 R rec 7c9e8a6b-6788-4109-bccb-c5dfd2c157b8 +2024-09-11 09:10:59.03516 2024-09-11 09:10:59.035165 pidref 027366936 R rec f59170c2-0bbf-4acd-94a1-cdedead76d85 +2024-09-11 09:10:59.088246 2024-09-11 09:10:59.088256 pidref 02736819X R rec d11b6982-33a0-4260-9476-b6a55912a624 +2024-09-11 09:10:59.14953 2024-09-11 09:10:59.14954 pidref 027368343 R rec 2111e23c-7646-4668-abd8-c72857517ecf +2024-09-11 09:10:59.210172 2024-09-11 09:10:59.210178 pidref 027368785 R rec c0a1bf4d-b427-46d3-b664-7cb04d19c2fa +2024-09-11 09:10:59.259095 2024-09-11 09:10:59.259106 pidref 027370763 R rec 4c6a5e51-eb19-4f72-971b-d58b361ad18c +2024-09-11 09:10:59.328826 2024-09-11 09:10:59.328839 pidref 027372618 R rec 6c3d0244-45be-4992-82a7-2a90e54e6633 +2024-09-11 09:10:59.398146 2024-09-11 09:10:59.398156 pidref 027374750 R rec 9836989d-624f-43ed-8883-75454eb9bd4f +2024-09-11 09:10:59.460036 2024-09-11 09:10:59.460048 pidref 027374831 R rec 92c820b7-bb1b-4ced-a45c-d377b13c5277 +2024-09-11 09:10:59.548949 2024-09-11 09:10:59.548955 pidref 027375080 R rec aad5e4a3-6584-4b3d-bce7-20567c941112 +2024-09-11 09:10:59.603871 2024-09-11 09:10:59.603881 pidref 027375099 R rec ae0384ec-3063-4be9-9f9a-70861ab3b0ec +2024-09-11 09:10:59.661861 2024-09-11 09:10:59.66187 pidref 027375188 R rec 5dee588a-187b-45b7-8308-616625198d97 +2024-09-11 09:10:59.733404 2024-09-11 09:10:59.73341 pidref 027375412 R rec 2528ee84-f176-444c-a87a-be878c0b5e14 +2024-09-11 09:10:59.785476 2024-09-11 09:10:59.785485 pidref 027375463 R rec 812cbcc7-883d-4b3a-8e4f-f92b4672de1b +2024-09-11 09:10:59.841705 2024-09-11 09:10:59.841711 pidref 02737601X R rec 6bf3a326-a1e9-47ab-aaeb-3597e87683ac +2024-09-11 09:10:59.902586 2024-09-11 09:10:59.902595 pidref 027377067 R rec a364af66-4408-4c2c-ae87-206f34df98a1 +2024-09-11 09:10:59.972204 2024-09-11 09:10:59.972214 pidref 027377660 R rec 431fa0f8-57d5-4813-893e-992c9fd0c7ff +2024-09-11 09:11:00.036818 2024-09-11 09:11:00.036823 pidref 027377768 R rec 5553c0cb-3cb0-4ffa-810e-c794bf61f503 +2024-09-11 09:11:00.093312 2024-09-11 09:11:00.093324 pidref 027379647 R rec 00e8b048-085d-49e5-a116-0ef421f87bd7 +2024-09-11 09:11:00.165737 2024-09-11 09:11:00.165746 pidref 027381323 R rec c5ace2d1-6e9c-4cc0-b6cb-e5aa52b9f47d +2024-09-11 09:11:00.229719 2024-09-11 09:11:00.229724 pidref 027400212 R rec e293e709-fe7d-499d-a36b-9769fac14788 +2024-09-11 09:11:00.289224 2024-09-11 09:11:00.289229 pidref 027402193 R rec 7d922798-902b-48a8-ae84-5372b6077c99 +2024-09-11 09:11:00.337233 2024-09-11 09:11:00.337236 pidref 027405478 R rec 85549c16-863f-4c74-9f08-97bdf81c8ac4 +2024-09-11 09:11:00.385215 2024-09-11 09:11:00.38522 pidref 027405621 R rec 88425961-f435-4dd2-a4d7-e7d3b8ce4d17 +2024-09-11 09:11:00.429916 2024-09-11 09:11:00.429921 pidref 027405753 R rec d9c2879d-f610-42f6-b17d-615c83a3dde9 +2024-09-11 09:11:00.472931 2024-09-11 09:11:00.472936 pidref 027406415 R rec 24ae1e1b-844f-4f46-941b-2d900e0ec7ae +2024-09-11 09:11:00.527264 2024-09-11 09:11:00.527274 pidref 027406733 R rec 425b22af-7b2a-4a5c-8e7c-044b858e5a3f +2024-09-11 09:11:00.588894 2024-09-11 09:11:00.588904 pidref 027407012 R rec a780e5fa-55bf-4649-97d4-37587d0cea74 +2024-09-11 09:11:00.650204 2024-09-11 09:11:00.650214 pidref 027407632 R rec e8d496f8-372a-48b4-aa29-cb035502bdb4 +2024-09-11 09:11:00.731612 2024-09-11 09:11:00.731617 pidref 027408310 R rec 666ce931-a676-4f25-8779-fad7c26854b2 +2024-09-11 09:11:00.786165 2024-09-11 09:11:00.786175 pidref 027408450 R rec f32b2259-a0fb-4954-b4bf-4973cf52d889 +2024-09-11 09:11:00.846123 2024-09-11 09:11:00.846134 pidref 027409317 R rec af403c02-1e96-4c6d-ab8b-ecefb5c74d42 +2024-09-11 09:11:00.906816 2024-09-11 09:11:00.906827 pidref 027418499 R rec 4c1454d4-c485-4c3a-a204-658bfb1ebaac +2024-09-11 09:11:00.96559 2024-09-11 09:11:00.9656 pidref 027427374 R rec 3ddd132e-f684-4913-b23d-1491bc6e1df1 +2024-09-11 09:11:01.022213 2024-09-11 09:11:01.022223 pidref 027428095 R rec fbacb01d-03b9-441d-b0b1-410d806f3c7a +2024-09-11 09:11:01.08563 2024-09-11 09:11:01.085635 pidref 027428672 R rec 8af38207-eea5-4807-acca-dcef56d4f96c +2024-09-11 09:11:01.142017 2024-09-11 09:11:01.142026 pidref 027429393 R rec 4fbaa8e9-60c7-49c3-9911-e028be342d65 +2024-09-11 09:11:01.212749 2024-09-11 09:11:01.212756 pidref 027434125 R rec 6b0a220e-8abb-4ae6-962e-b51815709516 +2024-09-11 09:11:01.277928 2024-09-11 09:11:01.277938 pidref 027434648 R rec b8047ead-a138-453c-9386-e8ba5465b4d9 +2024-09-11 09:11:01.340621 2024-09-11 09:11:01.340631 pidref 027436810 R rec 6dff5ce5-09e9-4f4a-97c3-d771fa25aa3f +2024-09-11 09:11:01.407796 2024-09-11 09:11:01.407807 pidref 027436837 R rec f4b092cd-71d0-42c8-a72e-c8af09e084f5 +2024-09-11 09:11:01.473468 2024-09-11 09:11:01.473478 pidref 027439658 R rec 14a0f248-5f92-42c9-9e48-0a891feaa680 +2024-09-11 09:11:01.543444 2024-09-11 09:11:01.543453 pidref 027442128 R rec 89237a9a-4dbc-4d7e-b993-ab4db361c941 +2024-09-11 09:11:01.602344 2024-09-11 09:11:01.602349 pidref 027442381 R rec 7b6073bb-6c63-4283-a31b-7fc5a6d874ed +2024-09-11 09:11:01.651552 2024-09-11 09:11:01.65156 pidref 027442454 R rec d553012e-bfce-482b-836f-9ec1456b39f9 +2024-09-11 09:11:01.727869 2024-09-11 09:11:01.727881 pidref 027442462 R rec 4a9d3cc9-f437-4dcf-a0bb-a751fbbb6cc9 +2024-09-11 09:11:01.811324 2024-09-11 09:11:01.811329 pidref 027443876 R rec 8b48c565-70cb-44d9-81b1-9148ace3bcb7 +2024-09-11 09:11:01.872546 2024-09-11 09:11:01.872555 pidref 02744628X R rec 38ea9e2d-bca7-4341-9254-11bbea93f54c +2024-09-11 09:11:01.955839 2024-09-11 09:11:01.95585 pidref 027448177 R rec 238a5046-54a0-4b92-9c8f-f73b2c584677 +2024-09-11 09:11:02.033117 2024-09-11 09:11:02.033127 pidref 02745228X R rec 41479128-9232-4a78-a7cf-5d77d17c071b +2024-09-11 09:11:02.09837 2024-09-11 09:11:02.098375 pidref 027452816 R rec f2bf0aa2-7e87-4c7e-a391-723f42cc8cad +2024-09-11 09:11:02.165791 2024-09-11 09:11:02.165802 pidref 027463613 R rec ba9a6633-e734-466e-96b8-58da194ea2b7 +2024-09-11 09:11:02.227258 2024-09-11 09:11:02.227263 pidref 027464180 R rec dce41823-1dd2-4f35-98b5-e0e0b2aff2ac +2024-09-11 09:11:02.287115 2024-09-11 09:11:02.287196 pidref 027464512 R rec 00e8aa9e-c51b-426e-9cae-5ddf5dc44488 +2024-09-11 09:11:02.35015 2024-09-11 09:11:02.350159 pidref 027465012 R rec cbe994b8-108c-47a1-96d4-48bf5b2d63b4 +2024-09-11 09:11:02.410512 2024-09-11 09:11:02.410523 pidref 027472906 R rec 9cfa0dd4-5a54-4b0d-a96a-1c0261824dd1 +2024-09-11 09:11:02.483561 2024-09-11 09:11:02.483566 pidref 027479056 R rec 0670c3e3-12e2-42bd-bf61-eff0ff7d6102 +2024-09-11 09:11:02.553856 2024-09-11 09:11:02.553865 pidref 027482928 R rec f6d93cf7-7430-4366-beef-f3ba00499e62 +2024-09-11 09:11:02.609765 2024-09-11 09:11:02.609776 pidref 027483169 R rec d4b3d3de-6e53-4fbd-88b7-58e8a098c103 +2024-09-11 09:11:02.669157 2024-09-11 09:11:02.669167 pidref 027483304 R rec 51c7d7c9-310f-4448-b5ca-52e5b7392d0d +2024-09-11 09:11:02.729902 2024-09-11 09:11:02.729912 pidref 02748355X R rec 594e79c8-7563-41c9-a7e2-458af1079a7b +2024-09-11 09:11:02.792816 2024-09-11 09:11:02.792827 pidref 027484319 R rec bff1337e-2e61-44a2-8982-7ae1b10b11e4 +2024-09-11 09:11:02.868493 2024-09-11 09:11:02.868499 pidref 02748498X R rec d4bb1838-81c3-4eb2-8f05-bd22496412c3 +2024-09-11 09:11:02.92972 2024-09-11 09:11:02.929726 pidref 027485552 R rec 6c2a6c5e-fc3f-4d65-bf84-56cd0063716e +2024-09-11 09:11:02.995533 2024-09-11 09:11:02.995544 pidref 027486354 R rec 88e429f1-a233-4fcd-a163-15a073c302fe +2024-09-11 09:11:03.072354 2024-09-11 09:11:03.07236 pidref 027491099 R rec 173355ff-5f10-4157-a416-c6e62535cfc4 +2024-09-11 09:11:03.12213 2024-09-11 09:11:03.122134 pidref 027492753 R rec 5423f769-c254-4ecb-9c70-fea4f6f21a6b +2024-09-11 09:11:03.194047 2024-09-11 09:11:03.194056 pidref 027501302 R rec 0390ba27-6aa8-40fa-9b14-87f220d07b52 +2024-09-11 09:11:03.258697 2024-09-11 09:11:03.258708 pidref 027501418 R rec d6886165-e79f-4bc7-9e62-a5f644bdf66c +2024-09-11 09:11:03.318581 2024-09-11 09:11:03.318586 pidref 027502333 R rec 11631164-8029-427e-b32f-2d704d7e5fcd +2024-09-11 09:11:03.377813 2024-09-11 09:11:03.377823 pidref 027502368 R rec f84037af-827f-4c73-8f5d-dd33834faae4 +2024-09-11 09:11:03.447972 2024-09-11 09:11:03.447984 pidref 027502775 R rec 27d43b4f-54dc-4662-805b-26558e1da33e +2024-09-11 09:11:03.514057 2024-09-11 09:11:03.514067 pidref 027504271 R rec bb862c6c-78df-433b-8b87-a82dd940570f +2024-09-11 09:11:03.572722 2024-09-11 09:11:03.572728 pidref 027504379 R rec 4f196f56-71bd-4e9a-8484-c7271076f4b5 +2024-09-11 09:11:03.623582 2024-09-11 09:11:03.623587 pidref 027522296 R rec e8cde61e-a672-42c7-8d44-96ca7771808d +2024-09-11 09:11:03.673524 2024-09-11 09:11:03.673529 pidref 027528359 R rec 2ec20db9-f482-44e2-8e00-f8fdda4e5880 +2024-09-11 09:11:03.727451 2024-09-11 09:11:03.727456 pidref 027544931 R rec 207e9412-ba11-497f-bf06-ad702a0111a0 +2024-09-11 09:11:03.774368 2024-09-11 09:11:03.774374 pidref 02754785X R rec 23bd11e3-e2c1-444d-8e10-54497adeb827 +2024-09-11 09:11:03.841335 2024-09-11 09:11:03.841345 pidref 027552543 R rec 921e864a-28a3-4115-928b-482af0f574a7 +2024-09-11 09:11:03.904343 2024-09-11 09:11:03.904349 pidref 027557758 R rec 2aeed468-2300-4bc0-8a0b-7feda9f37f06 +2024-09-11 09:11:03.973943 2024-09-11 09:11:03.973952 pidref 027563278 R rec c5b28db4-8f67-492a-8e5e-0c6461828b72 +2024-09-11 09:11:04.036995 2024-09-11 09:11:04.037005 pidref 027564053 R rec ab6c8934-92ca-4ec3-996d-caedc9e1c40f +2024-09-11 09:11:04.102654 2024-09-11 09:11:04.102658 pidref 027564223 R rec aaa8df4a-98eb-4798-9eda-bd974bcc377f +2024-09-11 09:11:04.154137 2024-09-11 09:11:04.154142 pidref 027579425 R rec 94993587-640f-49e0-a0c0-827d828ac9e5 +2024-09-11 09:11:04.214365 2024-09-11 09:11:04.214371 pidref 027584763 R rec e2386b7a-9977-4620-8603-8d9c2846a26d +2024-09-11 09:11:04.273634 2024-09-11 09:11:04.273645 pidref 027585190 R rec 2b050026-9af4-408e-8127-cf7d1c64b702 +2024-09-11 09:11:04.352212 2024-09-11 09:11:04.352222 pidref 027596591 R rec 86dc7671-3266-4999-baf6-636565a635c2 +2024-09-11 09:11:04.420977 2024-09-11 09:11:04.420987 pidref 027603504 R rec d6187db3-68cb-49d8-8d73-4a3f9b8cfdf4 +2024-09-11 09:11:04.479283 2024-09-11 09:11:04.479293 pidref 027603784 R rec 949e7c45-3a3a-4b27-9737-1ff98264800d +2024-09-11 09:11:04.547524 2024-09-11 09:11:04.54753 pidref 027606996 R rec 89d12182-c30c-4581-b3dd-f9a783945aeb +2024-09-11 09:11:04.605586 2024-09-11 09:11:04.605591 pidref 02761803X R rec 13a99e83-da6c-4aec-b04b-b77d51450d1f +2024-09-11 09:11:04.658758 2024-09-11 09:11:04.658769 pidref 027621952 R rec 2d6a9369-fc4d-4436-b714-2e6cbcb3e8cb +2024-09-11 09:11:04.721854 2024-09-11 09:11:04.721859 pidref 027622444 R rec f1b9dfe6-5d7c-41f3-a775-3b5f1ee645b1 +2024-09-11 09:11:04.77417 2024-09-11 09:11:04.77418 pidref 02763065X R rec 29bc9f9f-cdc2-4723-ba9a-20913d22d47c +2024-09-11 09:11:04.842228 2024-09-11 09:11:04.842239 pidref 027632571 R rec 0a856bcf-b9cc-4079-9615-e49ee48f1828 +2024-09-11 09:11:04.897083 2024-09-11 09:11:04.897093 pidref 02763857X R rec 7c30fcdd-6f3a-4fad-ae06-ffec57e53530 +2024-09-11 09:11:04.96819 2024-09-11 09:11:04.9682 pidref 027645649 R rec 5c69f2bb-410a-41f6-912e-bb00c18c0c21 +2024-09-11 09:11:05.038637 2024-09-11 09:11:05.03867 pidref 027656438 R rec b27b0cfd-586c-4359-80b2-659d2108f9ed +2024-09-11 09:11:05.102656 2024-09-11 09:11:05.10266 pidref 027668479 R rec df722e91-745e-401d-9bf7-b42065233a51 +2024-09-11 09:11:05.158097 2024-09-11 09:11:05.158107 pidref 027680231 R rec b70be34d-2527-41d3-993e-2e0b3b376806 +2024-09-11 09:11:05.223005 2024-09-11 09:11:05.223009 pidref 027693007 R rec 707c4f19-98b4-4dc3-83b7-820bf34b8c75 +2024-09-11 09:11:05.275551 2024-09-11 09:11:05.275561 pidref 027693805 R rec 50610f7e-0af0-47c5-b771-f3a78e6b7063 +2024-09-11 09:11:05.334499 2024-09-11 09:11:05.33451 pidref 027693821 R rec 78e95d5b-7453-427f-9cdb-16647ff533d0 +2024-09-11 09:11:05.394182 2024-09-11 09:11:05.394192 pidref 027694658 R rec f3fd224c-73fa-416c-afab-71e843fcfe4c +2024-09-11 09:11:05.459735 2024-09-11 09:11:05.459746 pidref 027705781 R rec e6fe50d5-77b9-45d3-a213-2a22d3994d48 +2024-09-11 09:11:05.527409 2024-09-11 09:11:05.52742 pidref 027722996 R rec be62888d-24bc-4452-b2e9-9454b02efa86 +2024-09-11 09:11:05.599392 2024-09-11 09:11:05.599402 pidref 027744795 R rec 3f77b463-c0dd-4103-8517-3bbfbe853f41 +2024-09-11 09:11:05.684104 2024-09-11 09:11:05.684114 pidref 02775751X R rec 47070620-e1f7-4a70-a240-fb9b671b8a08 +2024-09-11 09:11:05.761523 2024-09-11 09:11:05.761535 pidref 027764842 R rec 0f7c9091-2b70-4e2a-9b26-b781b6ff60df +2024-09-11 09:11:05.832103 2024-09-11 09:11:05.832112 pidref 027768627 R rec 55b3208b-de8c-49b8-af61-1197de85eea9 +2024-09-11 09:11:05.91333 2024-09-11 09:11:05.91334 pidref 02776866X R rec a94bf2f8-027b-412a-a14d-6671f3a4ba02 +2024-09-11 09:11:05.985178 2024-09-11 09:11:05.985184 pidref 027768678 R rec 33eefb31-8c71-45b2-8104-fac1a7250cb7 +2024-09-11 09:11:06.047269 2024-09-11 09:11:06.047275 pidref 027768686 R rec a019c507-43b7-48d3-a73a-c78e13ef30d5 +2024-09-11 09:11:06.111776 2024-09-11 09:11:06.111787 pidref 027768694 R rec 96f9b892-bfad-4a8a-af72-fb64be86e9c6 +2024-09-11 09:11:06.198078 2024-09-11 09:11:06.198088 pidref 027775348 R rec 7563ada5-8a9c-434e-88a5-3527d76c5c54 +2024-09-11 09:11:06.258419 2024-09-11 09:11:06.25843 pidref 027777456 R rec 2cc60ed2-a0e5-467e-ad1f-193247627c6b +2024-09-11 09:11:06.314474 2024-09-11 09:11:06.314483 pidref 027785718 R rec 250b8ec6-ac74-4543-93cd-89c1e1abb0bd +2024-09-11 09:11:06.381436 2024-09-11 09:11:06.381447 pidref 027806626 R rec e811883f-51ba-4660-a85e-38037ab1c6ff +2024-09-11 09:11:06.445089 2024-09-11 09:11:06.445099 pidref 027812723 R rec 27042514-d328-454d-a3cf-9d7f7b7a1477 +2024-09-11 09:11:06.508337 2024-09-11 09:11:06.508346 pidref 027825558 R rec 23fca87c-64a3-45fc-9e17-4d787dbafdd7 +2024-09-11 09:11:06.570515 2024-09-11 09:11:06.570519 pidref 027838935 R rec e9881993-6167-4a0e-976f-875bd0abd6f4 +2024-09-11 09:11:06.624288 2024-09-11 09:11:06.624299 pidref 027840883 R rec 92d88c5f-664b-4523-ba55-b5da99897fd8 +2024-09-11 09:11:06.693685 2024-09-11 09:11:06.693695 pidref 027842959 R rec 53df4917-b55f-4c15-a3d2-6f7d86f83725 +2024-09-11 09:11:06.762501 2024-09-11 09:11:06.762507 pidref 027848213 R rec 9a93b5cb-2bd7-43f4-a550-a432d59494dc +2024-09-11 09:11:06.816589 2024-09-11 09:11:06.8166 pidref 027853128 R rec 7ccee860-bb49-4691-8f5b-0c1f2117d670 +2024-09-11 09:11:06.889766 2024-09-11 09:11:06.889786 pidref 027853136 R rec 4953b76b-0926-467b-8ec0-747569fa8c1f +2024-09-11 09:11:06.969534 2024-09-11 09:11:06.969544 pidref 027860787 R rec f2634976-3b16-4104-9368-65d751d2107a +2024-09-11 09:11:07.042412 2024-09-11 09:11:07.042421 pidref 027875695 R rec 56ef7f2a-12b3-49aa-a736-1a8b9361d7d2 +2024-09-11 09:11:07.099122 2024-09-11 09:11:07.099127 pidref 027875717 R rec aac22870-8476-42d4-a072-a7d6d9d0e026 +2024-09-11 09:11:07.151418 2024-09-11 09:11:07.151423 pidref 027875725 R rec af997add-f63f-44be-850a-415bf926ea4d +2024-09-11 09:11:07.20865 2024-09-11 09:11:07.20866 pidref 027883000 R rec 7e60d9da-59ee-4d28-a918-adb6510b63a6 +2024-09-11 09:11:07.269726 2024-09-11 09:11:07.269737 pidref 027935280 R rec 7fda643f-f682-4cca-b8a0-82477bc81af3 +2024-09-11 09:11:07.330107 2024-09-11 09:11:07.330116 pidref 027945774 R rec a8d09e4d-4580-4bc5-8bed-e8ea17a7d3df +2024-09-11 09:11:07.395777 2024-09-11 09:11:07.395788 pidref 027949117 R rec b8105d1c-5854-480b-8373-51c382cedd9c +2024-09-11 09:11:07.459982 2024-09-11 09:11:07.459993 pidref 027952800 R rec 0a68d2b5-dd92-4557-9bce-a20755463ecc +2024-09-11 09:11:07.521312 2024-09-11 09:11:07.521318 pidref 028036336 R rec ffbe9e71-1ee9-42c1-8eaa-daead39825bd +2024-09-11 09:11:07.570557 2024-09-11 09:11:07.570562 pidref 028097505 R rec c76dea66-f415-470d-8a77-ac68726b16f4 +2024-09-11 09:11:07.622337 2024-09-11 09:11:07.622343 pidref 028135903 R rec 2a4397e6-3858-472a-9e97-6e2681aa468b +2024-09-11 09:11:07.667742 2024-09-11 09:11:07.667747 pidref 028141814 R rec 1f2e3465-90d3-4d97-a7cb-6dc6755c3e07 +2024-09-11 09:11:07.779467 2024-09-11 09:11:07.779478 pidref 028146212 R rec 9d24106f-51cc-49af-aa04-f7ccb27aeccd +2024-09-11 09:11:07.85867 2024-09-11 09:11:07.858681 pidref 028172825 R rec f34085fd-3967-4d25-9489-ef9fa716ae14 +2024-09-11 09:11:07.919685 2024-09-11 09:11:07.919694 pidref 02817450X R rec 6ea1142d-edc7-44d0-8549-6913d1124baa +2024-09-11 09:11:07.980417 2024-09-11 09:11:07.980433 pidref 028180135 R rec 1afaf128-0016-46a5-baf7-a3778956c7fd +2024-09-11 09:11:08.054556 2024-09-11 09:11:08.054566 pidref 028201922 R rec f69fe93c-4c54-456e-88d3-719ff8c72dc4 +2024-09-11 09:11:08.10635 2024-09-11 09:11:08.106355 pidref 028212967 R rec 6516093a-6386-4a8e-a222-9aed30cc720c +2024-09-11 09:11:08.168122 2024-09-11 09:11:08.168289 pidref 028212991 R rec ec3057b3-f099-4ddd-9d2f-ca2c43d76b8e +2024-09-11 09:11:08.241874 2024-09-11 09:11:08.241879 pidref 028213017 R rec 2b3148f7-96b1-4324-b241-c291244f3927 +2024-09-11 09:11:08.303809 2024-09-11 09:11:08.30382 pidref 028215346 R rec 9f0fd42d-86eb-479b-b0e2-be3166826ef1 +2024-09-11 09:11:08.367589 2024-09-11 09:11:08.367599 pidref 028217160 R rec 40bfb065-609e-4b60-901f-0801eda2cf67 +2024-09-11 09:11:08.438133 2024-09-11 09:11:08.438138 pidref 028245431 R rec 3136ba86-3bc8-40a0-b7e5-f1c19ea01ba9 +2024-09-11 09:11:08.504878 2024-09-11 09:11:08.504889 pidref 028289129 R rec 8f3c3dc2-8bc4-4509-b2d9-23bc61aaa0ab +2024-09-11 09:11:08.57615 2024-09-11 09:11:08.576155 pidref 028355431 R rec 742fb8eb-83be-48da-abc3-1efd65a605cb +2024-09-11 09:11:08.626779 2024-09-11 09:11:08.626786 pidref 028366360 R rec 2a44f608-8623-4f35-915c-4d3a1bb2ba0a +2024-09-11 09:11:08.688313 2024-09-11 09:11:08.688318 pidref 028388569 R rec 5002a867-7528-4894-beb4-9bf9afdcd1ff +2024-09-11 09:11:08.746034 2024-09-11 09:11:08.746044 pidref 028411773 R rec 895024cc-1ff7-40ad-a322-347f9df5a820 +2024-09-11 09:11:08.808884 2024-09-11 09:11:08.80889 pidref 028554108 R rec 2849c237-85ae-48e4-955d-832de2f6da95 +2024-09-11 09:11:08.868193 2024-09-11 09:11:08.868203 pidref 028565924 R rec 4b430070-76ac-4c69-9769-3f882590728b +2024-09-11 09:11:08.928325 2024-09-11 09:11:08.928336 pidref 028567005 R rec e3a41634-1bd2-4d3b-b560-73d6184b73f4 +2024-09-11 09:11:08.994235 2024-09-11 09:11:08.994246 pidref 028601475 R rec 19846dbb-59fb-4a9a-b983-a0f5ac3277aa +2024-09-11 09:11:09.060938 2024-09-11 09:11:09.060948 pidref 028654706 R rec d419c6f3-9fb9-4e95-ae85-186bf9147e85 +2024-09-11 09:11:09.110108 2024-09-11 09:11:09.110113 pidref 028695984 R rec cd2d3f30-ef2d-4d19-9fd4-c17a9f468fab +2024-09-11 09:11:09.15899 2024-09-11 09:11:09.158996 pidref 028700570 R rec 8ecdb213-994b-43d7-a600-dc1ac320c786 +2024-09-11 09:11:09.217777 2024-09-11 09:11:09.217782 pidref 02870097X R rec 0f1f0628-e033-44ae-b81e-7a4b0e69b8e9 +2024-09-11 09:11:09.268784 2024-09-11 09:11:09.268794 pidref 028706137 R rec c213ab0b-ed9b-487c-8088-8963c4c93de2 +2024-09-11 09:11:09.324634 2024-09-11 09:11:09.324645 pidref 028727444 R rec 12e6f7e3-1583-4a38-8bc9-98c677e57143 +2024-09-11 09:11:09.394873 2024-09-11 09:11:09.394884 pidref 028877764 R rec 2ce95ef0-6907-47d1-bf0b-a1280a2e0209 +2024-09-11 09:11:09.463744 2024-09-11 09:11:09.463755 pidref 028889460 R rec e8d14b2e-f677-49de-a8ca-8a9056f2fdb9 +2024-09-11 09:11:09.542684 2024-09-11 09:11:09.542703 pidref 028913663 R rec e548579f-a792-4171-9064-3833c4af4805 +2024-09-11 09:11:09.600661 2024-09-11 09:11:09.600665 pidref 028928709 R rec 181f2ada-b5e8-4deb-8590-f7cd63700cea +2024-09-11 09:11:09.654509 2024-09-11 09:11:09.654519 pidref 028931491 R rec 77c8d2b7-bbe6-42a6-a1bc-ebe9f33ef6a6 +2024-09-11 09:11:09.723181 2024-09-11 09:11:09.723186 pidref 028979885 R rec 516333e2-2e92-4519-b583-99b9ccc32617 +2024-09-11 09:11:09.77945 2024-09-11 09:11:09.779462 pidref 028988310 R rec 32eaaa84-9354-45bb-9ee4-d2c4c56e0ee2 +2024-09-11 09:11:09.852017 2024-09-11 09:11:09.852028 pidref 028991575 R rec 0fc5c42f-bc28-4480-9a09-44edbf2766be +2024-09-11 09:11:09.918263 2024-09-11 09:11:09.918273 pidref 028992105 R rec 6514fb9d-6461-4173-8cff-6cb2b30e9b3a +2024-09-11 09:11:09.980333 2024-09-11 09:11:09.980344 pidref 028992318 R rec e9c9efa4-571d-44ad-a82a-e40cbd0302e0 +2024-09-11 09:11:10.0503 2024-09-11 09:11:10.05031 pidref 028996593 R rec a5949111-49de-4202-88cd-552831c79791 +2024-09-11 09:11:10.106307 2024-09-11 09:11:10.106313 pidref 028996690 R rec d3c248f7-c02a-49c3-a02b-0b38b0022657 +2024-09-11 09:11:10.171087 2024-09-11 09:11:10.171097 pidref 029152887 R rec 0e6e6930-ca75-4cab-bbba-b8b06f61f3f9 +2024-09-11 09:11:10.234698 2024-09-11 09:11:10.234703 pidref 029183340 R rec 3544a8aa-5aa6-40b5-bf86-d6b01f8b5ae0 +2024-09-11 09:11:10.297038 2024-09-11 09:11:10.297048 pidref 029216540 R rec 082d7502-0cf3-4b18-a018-275b5bd371e5 +2024-09-11 09:11:10.359821 2024-09-11 09:11:10.359827 pidref 029220661 R rec 0c1e8ca5-58ee-44b4-b6fc-87307e79fd9c +2024-09-11 09:11:10.423144 2024-09-11 09:11:10.423154 pidref 029345529 R rec 8b111a3c-2336-4259-ae3a-67de220e720c +2024-09-11 09:11:10.487702 2024-09-11 09:11:10.487707 pidref 029368707 R rec 6f1cce32-64d9-443f-a328-27ac2f290575 +2024-09-11 09:11:10.54456 2024-09-11 09:11:10.54457 pidref 029453208 R rec de0ea4d8-82d6-4fd1-bec5-160fa24d61e3 +2024-09-11 09:11:10.609087 2024-09-11 09:11:10.609097 pidref 029459060 R rec 3381732f-008a-4352-b55b-7b014635ab54 +2024-09-11 09:11:10.676256 2024-09-11 09:11:10.676261 pidref 029502764 R rec 76456dc5-f9f8-495b-a464-531c50f3361e +2024-09-11 09:11:10.742437 2024-09-11 09:11:10.742447 pidref 029508347 R rec 487f0fe2-4247-4b0a-b177-e2a955051dff +2024-09-11 09:11:10.805469 2024-09-11 09:11:10.80548 pidref 029571219 R rec 067c285f-22fb-4b2d-8c97-0e7c1290cb6b +2024-09-11 09:11:10.875558 2024-09-11 09:11:10.875563 pidref 029592259 R rec 752d2dd9-92ac-469b-b705-87b5fdb2c35d +2024-09-11 09:11:10.936515 2024-09-11 09:11:10.936524 pidref 029680344 R rec d7102df5-c082-42e4-b409-4b8231bda92d +2024-09-11 09:11:10.99755 2024-09-11 09:11:10.997558 pidref 029693756 R rec eff5fb64-b57a-4105-b983-eb07dd0ed136 +2024-09-11 09:11:11.054132 2024-09-11 09:11:11.054142 pidref 029693772 R rec c5e6328d-ef1a-46ee-8fa5-e46450322c36 +2024-09-11 09:11:11.106658 2024-09-11 09:11:11.106664 pidref 02976436X R rec f7a92f64-3c71-49e0-89f7-fc33b04f22fc +2024-09-11 09:11:11.167701 2024-09-11 09:11:11.167712 pidref 029805279 R rec b28b2642-84d1-49ca-9712-f9e1ea015613 +2024-09-11 09:11:11.227894 2024-09-11 09:11:11.227899 pidref 029857678 R rec 06700999-0c17-4329-b3e7-713b3cac9a4d +2024-09-11 09:11:11.280449 2024-09-11 09:11:11.280454 pidref 02985850X R rec 78fd82aa-7ac8-4a81-a85e-8bf1bdaba661 +2024-09-11 09:11:11.344611 2024-09-11 09:11:11.344622 pidref 030398614 R rec ce544188-bbd9-4694-8fba-c5125369614e +2024-09-11 09:11:11.404844 2024-09-11 09:11:11.404854 pidref 030512425 R rec 6bf7c1b5-0d8d-4243-ba57-f09306219f05 +2024-09-11 09:11:11.462689 2024-09-11 09:11:11.4627 pidref 030519799 R rec f4de28bf-6acd-4687-b805-9fdd3cea23bd +2024-09-11 09:11:11.541394 2024-09-11 09:11:11.5414 pidref 03055537X R rec bd767d63-1aba-4427-a6fa-fc72e76fefe4 +2024-09-11 09:11:11.615373 2024-09-11 09:11:11.615378 pidref 030628156 R rec 696492dd-de67-4e06-8ad3-e42f4517a80c +2024-09-11 09:11:11.68303 2024-09-11 09:11:11.68304 pidref 030640091 R rec 076e37fb-9c96-4aa8-b4fa-041825ccc253 +2024-09-11 09:11:11.747217 2024-09-11 09:11:11.747227 pidref 031139876 R rec 34b72442-340f-435f-b7cf-92f860beb542 +2024-09-11 09:11:11.81805 2024-09-11 09:11:11.818061 pidref 031211097 R rec af2c4735-cf28-4295-b942-2ffe741d95fa +2024-09-11 09:11:11.882345 2024-09-11 09:11:11.882355 pidref 031649424 R rec 49a6048f-bb96-4e9f-923c-d648bd911f69 +2024-09-11 09:11:11.957512 2024-09-11 09:11:11.957523 pidref 03168520X R rec 4b47ad98-a75d-4d49-a574-20ef1c2924a4 +2024-09-11 09:11:12.013166 2024-09-11 09:11:12.013172 pidref 031702473 R rec 00f844ad-e556-4759-bbbb-098a8f090bdd +2024-09-11 09:11:12.069635 2024-09-11 09:11:12.069645 pidref 031977561 R rec c5d256d6-474a-413c-ab8c-0a926355500e +2024-09-11 09:11:12.121236 2024-09-11 09:11:12.121241 pidref 032028555 R rec a76ece7c-53c2-48e1-8ab0-26312496f7a0 +2024-09-11 09:11:12.172848 2024-09-11 09:11:12.172858 pidref 032029667 R rec 250c3835-226f-4e73-9303-b0143e8ccb30 +2024-09-11 09:11:12.241108 2024-09-11 09:11:12.241118 pidref 03210572X R rec 831af8e8-0ec0-424d-9f4c-d5d6b07207cc +2024-09-11 09:11:12.307698 2024-09-11 09:11:12.307708 pidref 03261991X R rec 9fd18f9d-b52b-4ffe-917e-4fd236fa974e +2024-09-11 09:11:12.366879 2024-09-11 09:11:12.366889 pidref 032861621 R rec b42d53b9-f221-4f53-9d43-dac7a45b6cbf +2024-09-11 09:11:12.434682 2024-09-11 09:11:12.434692 pidref 032972997 R rec ff9a48f2-9131-4919-8122-ce9908dcb95c +2024-09-11 09:11:12.499985 2024-09-11 09:11:12.499995 pidref 033023808 R rec f6bfa300-bc62-46f2-af5d-81bf393bd4b3 +2024-09-11 09:11:12.565429 2024-09-11 09:11:12.565439 pidref 033459118 R rec 6a07ddc6-f6da-43ef-bc50-6387e3e29bc3 +2024-09-11 09:11:12.615685 2024-09-11 09:11:12.61569 pidref 034580506 R rec be7dd1cb-44b2-495c-a673-e5a0ee53a9f8 +2024-09-11 09:11:12.661098 2024-09-11 09:11:12.661109 pidref 034800964 R rec 715b7119-506e-4e93-b7f4-06e0a2592074 +2024-09-11 09:11:12.722129 2024-09-11 09:11:12.722134 pidref 034910190 R rec 20de3427-d334-4b6a-a3be-4e19541800bf +2024-09-11 09:11:12.770389 2024-09-11 09:11:12.770399 pidref 03512802X R rec 33f78208-4db7-4b7a-8796-5aeb815e0a6c +2024-09-11 09:11:12.828977 2024-09-11 09:11:12.828986 pidref 035220287 R rec c3011fbc-944b-40dc-8697-f9711089b811 +2024-09-11 09:11:12.895278 2024-09-11 09:11:12.895288 pidref 03530183X R rec 8cb6db38-378e-4aae-a298-dfdd2341f660 +2024-09-11 09:11:12.961527 2024-09-11 09:11:12.961538 pidref 035301872 R rec 2c9227b4-4596-4bf7-8cb6-082a0b1223ef +2024-09-11 09:11:13.026438 2024-09-11 09:11:13.026449 pidref 035321318 R rec 9ffee463-5e8c-4488-bb06-09f1b1be5d0c +2024-09-11 09:11:13.085759 2024-09-11 09:11:13.085764 pidref 035444193 R rec 3b48d76d-2e18-4992-b242-455669f3af8e +2024-09-11 09:11:13.148153 2024-09-11 09:11:13.148158 pidref 050211250 R rec 0dc38ca5-2321-4c8a-9d04-286c072c8aa5 +2024-09-11 09:11:13.211838 2024-09-11 09:11:13.21185 pidref 05021778X R rec 6df78a52-d786-46fd-91b0-f498a4a3980e +2024-09-11 09:11:13.280713 2024-09-11 09:11:13.280724 pidref 050300334 R rec 96e85956-d072-4608-8ac2-39aca8846717 +2024-09-11 09:11:13.345723 2024-09-11 09:11:13.345729 pidref 050311530 R rec b66a9a32-5456-41e1-9852-ada5ab4eb08d +2024-09-11 09:11:13.400564 2024-09-11 09:11:13.40057 pidref 050438417 R rec 0324c0bd-eb42-455e-9d43-3ff77fc36819 +2024-09-11 09:11:13.460323 2024-09-11 09:11:13.460334 pidref 050556789 R rec 0b6b04b9-5997-4f87-ad70-5749dce80b9c +2024-09-11 09:11:13.525859 2024-09-11 09:11:13.52587 pidref 050557556 R rec b4699306-2a8e-40ba-860d-0ce087d8485c +2024-09-11 09:11:13.576704 2024-09-11 09:11:13.576709 pidref 050578480 R rec 29e2f17f-89cd-4b90-aa42-6a002cf6eacf +2024-09-11 09:11:13.629961 2024-09-11 09:11:13.629966 pidref 052490157 R rec 902e484c-5c0c-4ff2-81e7-edce3b53106e +2024-09-11 09:11:13.691508 2024-09-11 09:11:13.691518 pidref 053443586 R rec 4f43a317-268f-4a6b-a858-b05fb0d68b46 +2024-09-11 09:11:13.741813 2024-09-11 09:11:13.741819 pidref 053500539 R rec a9d6c5f4-33ec-4db2-8660-5eeadf4b4d0f +2024-09-11 09:11:13.800962 2024-09-11 09:11:13.800968 pidref 053504755 R rec 4d58cf53-1049-4db7-a9ab-0c5985805c2e +2024-09-11 09:11:13.868644 2024-09-11 09:11:13.868655 pidref 055832024 R rec 41716b44-7d0b-482f-910f-0a7e83e05a35 +2024-09-11 09:11:13.925964 2024-09-11 09:11:13.925973 pidref 061566284 R rec bb134e73-ee91-4bc5-a131-7180404f2d17 +2024-09-11 09:11:13.977079 2024-09-11 09:11:13.977089 pidref 066838339 R rec 51aea024-3b5c-4717-b176-27818572b9fc +2024-09-11 09:11:14.040384 2024-09-11 09:11:14.04039 pidref 068861974 R rec b7109430-a7b4-45de-8034-ab2ecd2b6a4f +2024-09-11 09:11:14.094929 2024-09-11 09:11:14.094935 pidref 068954174 R rec df88d6d6-c34d-40c3-9565-fccbcb0947b8 +2024-09-11 09:11:14.148302 2024-09-11 09:11:14.148313 pidref 069367027 R rec 80bd347c-6e6c-4820-b3b8-b0e4ea226965 +2024-09-11 09:11:14.2066 2024-09-11 09:11:14.206606 pidref 070388830 R rec 9e8df548-3f7b-4bc4-8b07-141fbe2fc310 +2024-09-11 09:11:14.264341 2024-09-11 09:11:14.264354 pidref 072290455 R rec 1b0afa11-6a31-4f05-b754-cc45ef7b0a30 +2024-09-11 09:11:14.322955 2024-09-11 09:11:14.322982 pidref 072616652 R rec ea236f7f-4eb8-4a91-8445-5d726a44f682 +2024-09-11 09:11:14.389454 2024-09-11 09:11:14.389464 pidref 073387576 R rec f6a97e0e-fdd7-4d0c-86eb-6d0bac55f699 +2024-09-11 09:11:14.449844 2024-09-11 09:11:14.449855 pidref 073444073 R rec 990ccbd6-5dc1-495b-9d1f-c78c376cccb8 +2024-09-11 09:11:14.525276 2024-09-11 09:11:14.525286 pidref 074436805 R rec 62e05b56-e214-4af3-8eea-a25ba8f44516 +2024-09-11 09:11:14.587345 2024-09-11 09:11:14.587351 pidref 074578022 R rec 618e0bd9-b161-44bd-a23d-191f1e26db00 +2024-09-11 09:11:14.636528 2024-09-11 09:11:14.636538 pidref 077271041 R rec e97caccb-0d77-4568-bfa4-34013d1e8a44 +2024-09-11 09:11:14.700351 2024-09-11 09:11:14.700356 pidref 077437160 R rec 9a05fcb5-8e2e-460c-aec4-5b236062a3a1 +2024-09-11 09:11:14.757474 2024-09-11 09:11:14.757484 pidref 078613655 R rec 6528169f-bce9-437e-8656-f0af3f3d6729 +2024-09-11 09:11:14.826833 2024-09-11 09:11:14.826839 pidref 084272996 R rec a7d16782-09eb-4d88-9fc3-9b3f3e95baf2 +2024-09-11 09:11:14.882494 2024-09-11 09:11:14.882499 pidref 085703419 R rec d04f68bf-f9d5-43d8-884c-c63257022611 +2024-09-11 09:11:14.95834 2024-09-11 09:11:14.958355 pidref 092146430 R rec 1a4f7995-c386-4f89-8017-866c83712afa +2024-09-11 09:11:15.034698 2024-09-11 09:11:15.03471 pidref 09445423X R rec c7148f5f-b206-42a0-afea-fb9dd1d4d63a +2024-09-11 09:11:15.091923 2024-09-11 09:11:15.091929 pidref 095140484 R rec 855f3cad-b92a-40be-b03a-c94c94a840d0 +2024-09-11 09:11:15.141007 2024-09-11 09:11:15.141018 pidref 102120935 R rec c5d57155-6511-4d9f-b565-b7a21151a677 +2024-09-11 09:11:15.20932 2024-09-11 09:11:15.209332 pidref 102147817 R rec cebb1b0b-6226-4702-bbbf-477ba3cdd457 +2024-09-11 09:11:15.272573 2024-09-11 09:11:15.272585 pidref 113070926 R rec d8bbb179-56e5-4bf7-ac85-a3c8344dbb98 +2024-09-11 09:11:15.349108 2024-09-11 09:11:15.349117 pidref 114526591 R rec 816190f7-9252-4627-b763-03056a2325ce +2024-09-11 09:11:15.423313 2024-09-11 09:11:15.423323 pidref 116317825 R rec 9c518f03-3aa0-4f86-8e49-92f235859356 +2024-09-11 09:11:15.489336 2024-09-11 09:11:15.489345 pidref 116459425 R rec 8b2340de-2ce0-485f-b987-51091a034b48 +2024-09-11 09:11:15.558999 2024-09-11 09:11:15.55901 pidref 119411016 R rec 2d5369b9-1549-47f9-bc36-0a899256f847 +2024-09-11 09:11:15.619372 2024-09-11 09:11:15.619378 pidref 123048338 R rec 4e7f167c-fce6-4a72-abb5-19ad96086603 +2024-09-11 09:11:15.701598 2024-09-11 09:11:15.701609 pidref 124441092 R rec 5329b473-3234-48db-bfae-c158306874e4 +2024-09-11 09:11:15.748647 2024-09-11 09:11:15.748653 pidref 127372547 R rec f23e7f85-a7ea-44f4-afd3-bf6a11a52ea7 +2024-09-11 09:11:15.80196 2024-09-11 09:11:15.801976 pidref 131577166 R rec 174d40f0-b584-475e-ac27-ecc06fa1e099 +2024-09-11 09:11:15.860079 2024-09-11 09:11:15.860112 pidref 133653951 R rec d81f8392-3976-4896-bd0d-f4efa1abaeca +2024-09-11 09:11:15.923319 2024-09-11 09:11:15.92333 pidref 140829520 R rec c13ee9f5-4038-4625-ad7a-99901e2fe602 +2024-09-11 09:11:15.987667 2024-09-11 09:11:15.987679 pidref 140834087 R rec 6067e188-6114-43c6-a346-1e119d2825f7 +2024-09-11 09:11:16.053506 2024-09-11 09:11:16.053512 pidref 144820072 R rec 2131b4b6-8fbe-4a9c-b795-f5d1fbcb1962 +2024-09-11 09:11:16.115921 2024-09-11 09:11:16.115926 pidref 145818713 R rec 9eceeac0-d5a8-432b-a7aa-6d454c2d9617 +2024-09-11 09:11:16.175651 2024-09-11 09:11:16.175657 pidref 148119778 R rec c2ce6721-1287-4bc3-aaff-63dd3667e51b +2024-09-11 09:11:16.244873 2024-09-11 09:11:16.244877 pidref 148833829 R rec b9d192df-da1b-4fc9-97cb-6928cc61bb1c +2024-09-11 09:11:16.314823 2024-09-11 09:11:16.314833 pidref 150220200 R rec 49197017-7a76-4453-946b-6603c2923fab +2024-09-11 09:11:16.384393 2024-09-11 09:11:16.384403 pidref 151572429 R rec 8049407d-04af-459c-b6b8-a11272c150ae +2024-09-11 09:11:16.445604 2024-09-11 09:11:16.445615 pidref 152219005 R rec db2b89e2-8c7a-47b0-99bf-cf544b7521a8 +2024-09-11 09:11:16.510988 2024-09-11 09:11:16.510997 pidref 153092815 R rec ff6eed28-0c97-4672-a2f1-fcd1105c2a33 +2024-09-11 09:11:16.571177 2024-09-11 09:11:16.571186 pidref 153807989 R rec 13a2ebd3-6b05-4f53-8e25-6adf4bdfce01 +2024-09-11 09:11:16.621118 2024-09-11 09:11:16.621122 pidref 154297550 R rec 7a4bf1d4-96ce-4246-a1c2-6d56de204217 +2024-09-11 09:11:16.664536 2024-09-11 09:11:16.664541 pidref 154762393 R rec 210b22dc-c973-4b37-8b49-2adcda1764b1 +2024-09-11 09:11:16.715202 2024-09-11 09:11:16.715207 pidref 156994151 R rec e32909cd-8206-4201-849b-a84c0a743c7c +2024-09-11 09:11:16.766391 2024-09-11 09:11:16.766402 pidref 157032469 R rec 650c8550-bad9-44c4-ab75-399a520734cf +2024-09-11 09:11:16.832219 2024-09-11 09:11:16.832228 pidref 157043819 R rec 1a21a67a-3167-4366-adcd-f55358af236a +2024-09-11 09:11:16.908754 2024-09-11 09:11:16.908766 pidref 157043908 R rec dc89d235-34cb-40b1-96be-658f1148b53a +2024-09-11 09:11:16.967414 2024-09-11 09:11:16.967424 pidref 157046125 R rec fef7458c-9567-4b05-92e0-6dfbc4ec4b99 +2024-09-11 09:11:17.03148 2024-09-11 09:11:17.031485 pidref 157046486 R rec 1bbfd7f6-40e3-49da-a6c9-4693c7707688 +2024-09-11 09:11:17.090152 2024-09-11 09:11:17.090157 pidref 157070093 R rec 47bf90c4-3e57-4b05-86f4-31a09ab35394 +2024-09-11 09:11:17.144609 2024-09-11 09:11:17.14462 pidref 157075109 R rec 6297b82b-ed4a-419e-a175-d893ef399681 +2024-09-11 09:11:17.208528 2024-09-11 09:11:17.208534 pidref 157110184 R rec 2f866b88-2193-4f63-96ef-432a0cb34d22 +2024-09-11 09:11:17.253233 2024-09-11 09:11:17.253238 pidref 157135675 R rec c95768c8-cb56-457f-9539-4c23b3be74e4 +2024-09-11 09:11:17.306668 2024-09-11 09:11:17.306679 pidref 157135756 R rec ff416d98-b820-4422-86f0-23e6502226a6 +2024-09-11 09:11:17.373745 2024-09-11 09:11:17.373771 pidref 157143791 R rec 2deee3ec-9ef7-4e81-8841-d379ccbd4a5a +2024-09-11 09:11:17.439324 2024-09-11 09:11:17.439333 pidref 157164764 R rec d31637ab-62ca-4188-997c-e4b845df8aa7 +2024-09-11 09:11:17.51393 2024-09-11 09:11:17.513935 pidref 157165892 R rec 436ac3d9-cd59-4271-afbd-6b710d4881c3 +2024-09-11 09:11:17.568173 2024-09-11 09:11:17.568183 pidref 157260275 R rec 74bcc8aa-d37b-4dc4-a113-05b57099a4ac +2024-09-11 09:11:17.616768 2024-09-11 09:11:17.616773 pidref 157265927 R rec 5d0526ac-54e1-482d-a20f-494871c7b68d +2024-09-11 09:11:17.680584 2024-09-11 09:11:17.680595 pidref 158185102 R rec b3b46e29-f36d-4fc0-a5aa-9a77f3a7dd86 +2024-09-11 09:11:17.737456 2024-09-11 09:11:17.737466 pidref 158634624 R rec 5d351a8f-872f-4617-a152-5d8bc58c11aa +2024-09-11 09:11:17.821812 2024-09-11 09:11:17.821823 pidref 15903194X R rec 6b6ecd56-720b-4f58-baf1-c244a88c0f4a +2024-09-11 09:11:17.901708 2024-09-11 09:11:17.901718 pidref 159667518 R rec f09b2ec0-01ff-4f9c-9dc6-cf1e06287f5d +2024-09-11 09:11:17.969065 2024-09-11 09:11:17.969075 pidref 16152270X R rec 17841d88-59e4-4a7c-bcc5-7995eaadfff4 +2024-09-11 09:11:18.034735 2024-09-11 09:11:18.034745 pidref 161522718 R rec 57c3f157-824d-485d-bffc-5ff5ed2abff8 +2024-09-11 09:11:18.110307 2024-09-11 09:11:18.110313 pidref 161930069 R rec 019a6988-febe-4d13-95b3-85ae2c6c77dd +2024-09-11 09:11:18.159731 2024-09-11 09:11:18.15974 pidref 162029667 R rec a7032dbf-81b8-41bd-9347-de95e659712f +2024-09-11 09:11:18.225137 2024-09-11 09:11:18.225143 pidref 162144342 R rec 9c8cabc3-b840-4094-a362-6872e1c30f90 +2024-09-11 09:11:18.28161 2024-09-11 09:11:18.281619 pidref 163687536 R rec e358d013-10c2-4522-ade0-f6bf2a31ee68 +2024-09-11 09:11:18.349985 2024-09-11 09:11:18.349994 pidref 165827157 R rec 26c869d8-c497-4274-bd45-a7c6e28d030e +2024-09-11 09:11:18.413524 2024-09-11 09:11:18.413534 pidref 169621820 R rec bdb0bcae-c494-48d6-b4fa-39e41a3a7d78 +2024-09-11 09:11:18.480285 2024-09-11 09:11:18.480297 pidref 171128362 R rec 43b0a2e9-2f8b-46d9-b2f0-5c6fccf85635 +2024-09-11 09:11:18.550926 2024-09-11 09:11:18.550936 pidref 175270147 R rec 0c980d1f-8045-475b-bb28-283de6ba9714 +2024-09-11 09:11:18.60809 2024-09-11 09:11:18.608095 pidref 176470875 R rec 3666b4e7-203e-4614-b61c-acf6c10dfcf9 +2024-09-11 09:11:18.673841 2024-09-11 09:11:18.673851 pidref 177159855 R rec 282ab73f-0352-4e6c-b324-13003a6e72b8 +2024-09-11 09:11:18.742074 2024-09-11 09:11:18.742086 pidref 177517506 R rec c73b42b0-b057-46d9-a51d-1fd852f83ab5 +2024-09-11 09:11:18.816328 2024-09-11 09:11:18.816341 pidref 177835893 R rec 83763327-bea9-48ca-8cb5-2adc8a59b339 +2024-09-11 09:11:18.883006 2024-09-11 09:11:18.883016 pidref 178091219 R rec 94dc9dfd-51f5-4982-967a-9020b3942c2a +2024-09-11 09:11:18.942178 2024-09-11 09:11:18.942191 pidref 178635863 R rec e692acfb-9278-43ef-98b9-9b119f8958ad +2024-09-11 09:11:19.013153 2024-09-11 09:11:19.013164 pidref 18055686X R rec fd47115c-325f-4f72-8f96-887e294694e3 +2024-09-11 09:11:19.079073 2024-09-11 09:11:19.079085 pidref 183926943 R rec f4c83801-2dac-49ec-acc6-6b92fef9f765 +2024-09-11 09:11:19.131975 2024-09-11 09:11:19.131985 pidref 184504872 R rec 1e8d9912-cfab-42ee-a56e-d9f70c4b4453 +2024-09-11 09:11:19.208281 2024-09-11 09:11:19.208286 pidref 185130348 R rec 92e2ec8f-e0e0-4d60-a2a9-f77e841e5b6b +2024-09-11 09:11:19.281864 2024-09-11 09:11:19.281869 pidref 185838235 R rec 32ae706d-7b24-4984-9d9f-c9a2c2c665bc +2024-09-11 09:11:19.342931 2024-09-11 09:11:19.342942 pidref 186257287 R rec 180ab4c8-dabc-4233-af2a-57ea3342193d +2024-09-11 09:11:19.411445 2024-09-11 09:11:19.411457 pidref 188234837 R rec 15ba4357-59db-4835-8a7e-448214de1139 +2024-09-11 09:11:19.470326 2024-09-11 09:11:19.470336 pidref 190533889 R rec c3a9df9e-4092-4a31-bfb0-26064aa67f45 +2024-09-11 09:11:19.533231 2024-09-11 09:11:19.533237 pidref 192765531 R rec aeabd2ba-7a22-4757-864d-47565ea478ab +2024-09-11 09:11:19.596104 2024-09-11 09:11:19.596109 pidref 193304767 R rec ed865952-4fb5-4bb3-931c-c0be7af5d3ce +2024-09-11 09:11:19.655827 2024-09-11 09:11:19.655837 pidref 193589370 R rec a21c3765-38ba-4cf7-b240-8e6c674d5908 +2024-09-11 09:11:19.715605 2024-09-11 09:11:19.715609 pidref 194382206 R rec 5e48d483-8d84-4261-9f01-3d958eed09ad +2024-09-11 09:11:19.761551 2024-09-11 09:11:19.761557 pidref 196449103 R rec 23a81b62-2b46-43d7-bd70-9076e86f856e +2024-09-11 09:11:19.81859 2024-09-11 09:11:19.818596 pidref 197647235 R rec af4e4d70-29db-4504-a8b3-698da0d646bd +2024-09-11 09:11:19.880242 2024-09-11 09:11:19.880253 pidref 197699855 R rec f6d5b8a3-394a-4905-977e-1b1732746c60 +2024-09-11 09:11:19.958909 2024-09-11 09:11:19.95892 pidref 19787133X R rec be0fe78b-74fe-4deb-ace1-d834d7803a6e +2024-09-11 09:11:20.025622 2024-09-11 09:11:20.025633 pidref 198026072 R rec 3f0b0d32-4e0e-400b-bfd0-2835e0232414 +2024-09-11 09:11:20.087741 2024-09-11 09:11:20.087751 pidref 198231288 R rec 6fe0b4f1-62c7-4b41-8551-5bb9942a024a +2024-09-11 09:11:20.154072 2024-09-11 09:11:20.154082 pidref 198239386 R rec 54b66e4d-7513-46a6-b124-ab9c7cbf3361 +2024-09-11 09:11:20.22349 2024-09-11 09:11:20.223495 pidref 201852845 R rec 54eb43e5-e7cc-42de-944d-d4d60c035af0 +2024-09-11 09:11:20.290308 2024-09-11 09:11:20.290319 pidref 203060571 R rec 8565560a-aaef-452a-a034-b70c6950477b +2024-09-11 09:11:20.357275 2024-09-11 09:11:20.35728 pidref 203376552 R rec ed20ab86-6dfb-4c3d-843b-8ff6ffb86ac7 +2024-09-11 09:11:20.415109 2024-09-11 09:11:20.415119 pidref 204299276 R rec f4e12144-946e-4197-a10c-f4f9529931e4 +2024-09-11 09:11:20.481156 2024-09-11 09:11:20.481167 pidref 219922608 R rec 51acd48a-12e3-4762-9571-62e445e07030 +2024-09-11 09:11:20.541993 2024-09-11 09:11:20.542002 pidref 219924074 R rec e47fab25-6d3f-4a41-a14e-acf7aeb433f7 +2024-09-11 09:11:20.608565 2024-09-11 09:11:20.60857 pidref 219925283 R rec 520c7978-5dab-4cd6-b0d8-eb1498e67376 +2024-09-11 09:11:20.681768 2024-09-11 09:11:20.681784 pidref 22395294X R rec ebac3337-5298-421a-9549-4cbee9673d30 +2024-09-11 09:11:20.737086 2024-09-11 09:11:20.737091 pidref 223976369 R rec cd19d1fa-ee0a-4553-9064-e8f0dbb7fbf7 +2024-09-11 09:11:20.788759 2024-09-11 09:11:20.788769 pidref 223979171 R rec d28dc6f2-82e5-4067-bfa9-1bcc795a9579 +2024-09-11 09:11:20.854245 2024-09-11 09:11:20.854256 pidref 224235893 R rec a96be497-2fda-4014-a70e-0bc82c8e96a5 +2024-09-11 09:11:20.927257 2024-09-11 09:11:20.927263 pidref 225651289 R rec 200bad5e-6926-4d83-9f14-fae9611ce3ea +2024-09-11 09:11:20.993178 2024-09-11 09:11:20.993187 pidref 226539962 R rec 483d7e05-06c0-4583-be0a-9f7ce381f1d4 +2024-09-11 09:11:21.049124 2024-09-11 09:11:21.049129 pidref 226556425 R rec d5396ad1-3383-456b-b755-3a64065a89ea +2024-09-11 09:11:21.108209 2024-09-11 09:11:21.108216 pidref 226664414 R rec 4dd06cc8-bffc-45ba-96d4-7a5db89d02b6 +2024-09-11 09:11:21.157867 2024-09-11 09:11:21.157874 pidref 226835391 R rec 4410582e-5eb0-45e2-9a62-f2a986f56205 +2024-09-11 09:11:21.219947 2024-09-11 09:11:21.219952 pidref 226964558 R rec c314edbb-bdb0-4730-b191-4f42a9c251db +2024-09-11 09:11:21.280626 2024-09-11 09:11:21.280631 pidref 230294707 R rec add04c6a-b6c9-4dfe-ae92-cbd0d5400ac4 +2024-09-11 09:11:21.334077 2024-09-11 09:11:21.334088 pidref 231217161 R rec 3c1a3d9c-ea58-48cf-976a-96a61fa0e3fb +2024-09-11 09:11:21.399127 2024-09-11 09:11:21.399138 pidref 231498829 R rec 6ceaf4b7-fc51-4f05-8b99-caaef634b45c +2024-09-11 09:11:21.452765 2024-09-11 09:11:21.452771 pidref 233055045 R rec 9cf13b3f-bca5-439c-a7f5-2350d3c5b44c +2024-09-11 09:11:21.51507 2024-09-11 09:11:21.51508 pidref 237826763 R rec 9b463627-70fb-4218-861b-f198d9923a5f +2024-09-11 09:11:21.595451 2024-09-11 09:11:21.595457 pidref 242868851 R rec 6f3f6ea8-e04d-4740-a2dd-0b85f7bab274 +2024-09-11 09:11:21.66173 2024-09-11 09:11:21.661742 pidref 250173565 R rec 53ecf349-74ca-49a2-a98f-45452de3a43e +2024-09-11 09:11:21.725714 2024-09-11 09:11:21.72572 pidref 250748533 R rec 16548455-2101-4fac-9578-4266a203a9bd +2024-09-11 09:11:21.801094 2024-09-11 09:11:21.801099 pidref 253709520 R rec 99203a78-af04-49ae-9836-c49002229e2e +2024-09-11 09:11:21.855445 2024-09-11 09:11:21.855454 pidref 253865727 R rec fd8c9118-2947-4106-814a-0c9305629fa1 +2024-09-11 09:11:21.911201 2024-09-11 09:11:21.911212 pidref 254939422 R rec c582ade6-a172-4d2d-a4c5-1b34c9c19845 +2024-09-11 09:11:21.974557 2024-09-11 09:11:21.974567 pidref 255076592 R rec e13f8792-9662-48c9-881b-08eab796b060 +2024-09-11 09:11:22.044136 2024-09-11 09:11:22.044151 pidref 25527999X R rec f826d283-59aa-4d51-b8a2-e6e2c2c8b56d +2024-09-11 09:11:22.105954 2024-09-11 09:11:22.105958 pidref 256800375 R rec f48f30a2-f137-44f4-8a05-c7871b3d86d9 +2024-09-11 09:11:22.165328 2024-09-11 09:11:22.165339 pidref 257056378 R rec ad2c9b3f-9686-4c84-8e2f-d4955ac99fbb +2024-09-11 09:11:22.227789 2024-09-11 09:11:22.227799 pidref 257143025 R rec 8120b3db-1fe1-4e67-af7f-9c80d397b37d +2024-09-11 09:11:22.300049 2024-09-11 09:11:22.300059 pidref 257162895 R rec 668f455d-bbb6-44d7-ac12-51fe802dcb70 +2024-09-11 09:11:22.373886 2024-09-11 09:11:22.373897 pidref 257475117 R rec f1d82feb-19ab-436f-aac0-43a62838b7e0 +2024-09-11 09:11:22.448556 2024-09-11 09:11:22.448567 pidref 258360976 R rec dc69a92a-701f-4003-b77c-15c2de2c5144 +2024-09-11 09:11:22.51678 2024-09-11 09:11:22.516791 pidref 25887421X R rec f15c0a4f-2d54-48a3-b22c-4ab16ce38ab4 +2024-09-11 09:11:22.58687 2024-09-11 09:11:22.586875 pidref 260281395 R rec 3593ba89-a0ff-42fd-a970-aa87c7fac9f8 +2024-09-11 09:11:22.63561 2024-09-11 09:11:22.635619 pidref 260555088 R rec 9c6273e4-e68a-4582-8646-64dc242d1330 +2024-09-11 09:11:22.697224 2024-09-11 09:11:22.697235 pidref 260905585 R rec 764929e4-72b5-47cb-bf87-ce777def9411 +2024-09-11 09:11:22.750262 2024-09-11 09:11:22.750274 pidref 260966401 R rec fb5437c4-11d9-48f0-87fd-31fb657d2727 +2024-09-11 09:11:22.821485 2024-09-11 09:11:22.821496 pidref 260996440 R rec 903749a7-1617-40df-bb73-39d6011bcb20 +2024-09-11 09:11:22.881699 2024-09-11 09:11:22.881709 pidref 261121162 R rec 9f497149-1e35-4afe-8e5b-020432bae011 +2024-09-11 09:11:22.945179 2024-09-11 09:11:22.945189 pidref 26138449X R rec 5adea384-bdce-4501-bc6e-1e056b14589e +2024-09-11 09:11:23.014632 2024-09-11 09:11:23.014638 pidref 26144722X R rec 3cdab8bf-3d98-4faf-bfe0-0390640f29ca +2024-09-11 09:11:23.084498 2024-09-11 09:11:23.084508 pidref 261527452 R rec 4d77c80f-eddf-4c5e-9419-84c46a0947bf +2024-09-11 09:11:23.155965 2024-09-11 09:11:23.155974 pidref 261762311 R rec e39b7036-916a-4f7c-b95a-f063ebc4b86a +2024-09-11 09:11:23.228623 2024-09-11 09:11:23.228628 pidref 261933841 R rec 853db577-a717-43a8-a8cf-10073ccf458b +2024-09-11 09:11:23.316917 2024-09-11 09:11:23.316922 pidref 262216744 R rec d3b62bc1-7ded-413b-bd31-a0864d6baa09 +2024-09-11 09:11:23.363442 2024-09-11 09:11:23.363448 pidref 262555697 R rec 6578d766-ca1e-44e5-b316-e31e901dd7ae +2024-09-11 09:11:23.478801 2024-09-11 09:11:23.478807 pidref 262557215 R rec 9b6b1abb-be45-4796-b733-cd341d699f19 +2024-09-11 09:11:23.526675 2024-09-11 09:11:23.52668 pidref 262767619 R rec 684948ab-3528-4947-baf9-b49e4146d47e +2024-09-11 09:11:23.572734 2024-09-11 09:11:23.572739 pidref 262834162 R rec 3925b39c-3bce-4634-9e40-9a6917c27ec8 +2024-09-11 09:11:23.618755 2024-09-11 09:11:23.618761 pidref 26298606X R rec 4d59e843-b022-4f76-ba20-3c8620dcdc29 +2024-09-11 09:11:23.666376 2024-09-11 09:11:23.666381 pidref 263043231 R rec 57190b84-0344-49ff-a1ed-d6f7daba69a6 +2024-09-11 09:11:23.712346 2024-09-11 09:11:23.712349 pidref 26304324X R rec 26037639-010e-477b-aa9f-13c2c9dc33a8 +2024-09-11 09:11:23.766852 2024-09-11 09:11:23.766857 pidref 26304338X R rec 32279c33-de33-4c91-bcc5-f8b2272332d4 +2024-09-11 09:11:23.818959 2024-09-11 09:11:23.818965 pidref 263197794 R rec 8b5a5a5f-9cf3-470a-8c99-386247ec215f +2024-09-11 09:11:23.871375 2024-09-11 09:11:23.871386 pidref 263222985 R rec 75ec2cd3-c291-41ef-8ab3-f95812edc357 +2024-09-11 09:11:23.934309 2024-09-11 09:11:23.934319 pidref 263256790 R rec 647fbf0f-ad8d-46bf-8627-1b4635e4f2ed +2024-09-11 09:11:23.995722 2024-09-11 09:11:23.995733 pidref 26369514X R rec fa228136-04ed-4fd1-ace7-17b169deb0fe +2024-09-11 09:11:24.08865 2024-09-11 09:11:24.088655 pidref 263838250 R rec 352954ae-5b71-4d38-8eb4-3e21dfa32247 +2024-09-11 09:11:24.146048 2024-09-11 09:11:24.146059 pidref 264073258 R rec f2ddeb69-45b1-4ff0-9b23-bc6b543ceb3f +2024-09-11 09:11:24.212881 2024-09-11 09:11:24.21289 pidref 264087313 R rec 07f2f8a0-2f07-4e32-abf1-1d8969396056 +2024-09-11 09:11:24.294394 2024-09-11 09:11:24.294404 pidref 264145046 R rec bfd8b113-6890-4fe9-a930-e58440be2602 +2024-09-11 09:11:24.360708 2024-09-11 09:11:24.360719 pidref 264271831 R rec a7aa4e4f-887d-4bc4-bd45-f7e53da050f8 +2024-09-11 09:11:24.429275 2024-09-11 09:11:24.42928 pidref 264406095 R rec da3de3c4-d9a9-4157-bb4e-785c839e6dc7 +2024-09-11 09:11:24.489337 2024-09-11 09:11:24.489348 pidref 264435583 R rec 900e58f8-96d6-4b5b-9bbc-499c445ef46f +2024-09-11 09:11:24.554008 2024-09-11 09:11:24.554013 pidref 264538943 R rec c071c3cf-450a-4914-bb94-b9f9ab19d722 +2024-09-11 09:11:24.620249 2024-09-11 09:11:24.620258 pidref 264540670 R rec 6e504a63-101f-4a02-984d-f0c97d9b8353 +2024-09-11 09:11:24.689735 2024-09-11 09:11:24.689745 pidref 264600886 R rec 7457c4cf-c61c-4b88-954c-bdcfd3f4ed16 +2024-09-11 09:11:24.736423 2024-09-11 09:11:24.736428 pidref 264644093 R rec 81c075b4-1714-47cc-bd09-09cd5aac7cec +2024-09-11 09:11:24.79325 2024-09-11 09:11:24.793259 pidref 264645081 R rec 1450b5e7-6383-4314-9f46-b74bdd4d5358 +2024-09-11 09:11:24.851443 2024-09-11 09:11:24.851454 pidref 264836251 R rec 551e0b30-60c5-4b0c-9f54-61b9f35e8f3d +2024-09-11 09:11:24.909257 2024-09-11 09:11:24.909268 pidref 265364957 R rec 4e42ccae-5eb3-4df7-82e8-13b0e86a3995 +2024-09-11 09:11:24.97603 2024-09-11 09:11:24.97604 pidref 26588912X R rec 95066c5a-644c-47dc-84ef-d9c57ccc3142 +2024-09-11 09:11:25.039338 2024-09-11 09:11:25.039348 pidref 266633668 R rec bb82ecea-7c32-4125-9e90-aff3d037b31f +2024-09-11 09:11:25.098702 2024-09-11 09:11:25.098708 pidref 26663415X R rec 34129179-07bf-443f-832a-90c314337c0e +2024-09-11 09:11:25.148608 2024-09-11 09:11:25.148613 pidref 266656595 R rec ca22a624-5daa-4446-abde-ed59cb57d44b +2024-09-11 09:11:25.200426 2024-09-11 09:11:25.200436 pidref 26665715X R rec 948c58d7-9c75-4e79-8bb9-34664ed5239d +2024-09-11 09:11:25.309072 2024-09-11 09:11:25.309083 pidref 267209568 R rec 347430e8-bbd9-4241-913f-d23f371086da +2024-09-11 09:11:25.372189 2024-09-11 09:11:25.372199 pidref 26722138X R rec 6640a51f-f738-4b26-b858-8e7a4ad3fcce +2024-09-11 09:11:25.436753 2024-09-11 09:11:25.436762 pidref 267421214 R rec 540b9c3c-7c44-474f-85d5-4a7385ed3bb8 +2024-09-11 09:11:25.500175 2024-09-11 09:11:25.50018 pidref 267446713 R rec b8cbf186-d9f1-4222-9ef8-526772176ae5 +2024-09-11 09:11:25.554029 2024-09-11 09:11:25.55404 pidref 267488092 R rec d82a7aa8-0fad-4fe5-9cae-f2620ddb47a0 +2024-09-11 09:11:25.631826 2024-09-11 09:11:25.631835 pidref 267506589 R rec 05bf9b49-b35b-4121-928b-a99ca146da05 +2024-09-11 09:11:25.701674 2024-09-11 09:11:25.701684 pidref 267678584 R rec 22c40b1c-9bff-467f-b1a4-c4cf93209ee1 +2024-09-11 09:11:25.759379 2024-09-11 09:11:25.75939 pidref 267860048 R rec c619af83-13b6-4253-b1ae-5e835ad2731b +2024-09-11 09:11:25.820424 2024-09-11 09:11:25.820434 pidref 26792237X R rec 146c92b1-96fe-47e4-84c5-f29f040fd028 +2024-09-11 09:11:25.893527 2024-09-11 09:11:25.893536 pidref 267928262 R rec 1dc22854-b1e8-42bd-8eb0-2d6cfb2c2d2b +2024-09-11 09:11:25.954466 2024-09-11 09:11:25.954476 pidref 268500460 R rec b1eae887-6208-4209-a24c-fd64b7cf5c40 +2024-09-11 09:11:26.029471 2024-09-11 09:11:26.029482 pidref 268649472 R rec d933dab7-acf4-4158-a5bb-6a4541e314ea +2024-09-11 09:11:26.097355 2024-09-11 09:11:26.097366 pidref 268664110 R rec 09059ce1-dc4c-4a25-a00e-8fc014964949 +2024-09-11 09:11:26.149758 2024-09-11 09:11:26.149769 pidref 268664447 R rec 751ee785-8594-49d0-b1a1-06bd80ba4046 +2024-09-11 09:11:26.208664 2024-09-11 09:11:26.20867 pidref 268666938 R rec 3b3f897c-72ee-4b8b-8d72-474d9a7a91ec +2024-09-11 09:11:26.268345 2024-09-11 09:11:26.268355 pidref 268735190 R rec 3c406268-c5cc-46b8-bb43-a27a19ea9166 +2024-09-11 09:11:26.343928 2024-09-11 09:11:26.343938 pidref 268791694 R rec 037db6b7-2fe9-4819-9004-ffb251d0ab4e +2024-09-11 09:11:26.41202 2024-09-11 09:11:26.41203 pidref 268793948 R rec e1afb941-f89b-499f-8f2b-be5b92441a8f +2024-09-11 09:11:26.481212 2024-09-11 09:11:26.481234 pidref 269784136 R rec 7b9e32b8-03ba-40c3-82af-c0b3db2c7d4e +2024-09-11 09:11:26.544269 2024-09-11 09:11:26.544279 pidref 270059482 R rec b284aacb-54d9-4e59-89e7-4c5993d49c60 +2024-09-11 09:11:26.609598 2024-09-11 09:11:26.609603 pidref 270977848 R rec 3ddfd6bd-817c-44f9-8292-4d36f678b15a +2024-09-11 09:11:26.660743 2024-09-11 09:11:26.660756 pidref 271120738 R rec f3981060-18ed-46d0-932f-5737417b7117 +2024-09-11 09:11:26.714393 2024-09-11 09:11:26.714398 pidref 271160926 R rec c4ef1589-8e0f-4646-b07e-ab1f9127682f +2024-09-11 09:11:26.766583 2024-09-11 09:11:26.766594 pidref 271161957 R rec b5a53d1d-11b1-415d-9a9c-611cc00d2f8d +2024-09-11 09:11:26.829181 2024-09-11 09:11:26.829192 pidref 271166118 R rec 47850457-20af-4822-96ab-1651aff9929c +2024-09-11 09:11:26.889191 2024-09-11 09:11:26.889201 pidref 271323485 R rec b0b40c82-c6d8-44a9-b4f0-d02f54c18ec8 +2024-09-11 09:11:26.959856 2024-09-11 09:11:26.959862 pidref 271323515 R rec 29efbdfd-5c4f-4efe-9380-9b4d3decbeb9 +2024-09-11 09:11:27.035668 2024-09-11 09:11:27.035678 pidref 271323590 R rec e4a5ac80-d7fd-4b73-ba4d-8409b497f210 +2024-09-11 09:11:27.108081 2024-09-11 09:11:27.108086 pidref 271323663 R rec 99b90a11-9c0f-4117-a065-13c72c725681 +2024-09-11 09:11:27.169727 2024-09-11 09:11:27.169733 pidref 271323698 R rec 46d3bdba-a7bc-48e7-8c30-2d9f05f57702 +2024-09-11 09:11:27.231209 2024-09-11 09:11:27.231214 pidref 271323752 R rec 445cb433-7420-48f5-bb0f-2b43f9934c18 +2024-09-11 09:11:27.298883 2024-09-11 09:11:27.298894 pidref 271326441 R rec 599edceb-ddff-4770-8481-b3a69f2b1326 +2024-09-11 09:11:27.372761 2024-09-11 09:11:27.372773 pidref 271326840 R rec 5ca9d725-f266-4f04-baef-28e481906a25 +2024-09-11 09:11:27.448454 2024-09-11 09:11:27.448466 pidref 271328762 R rec 3ec78717-04d7-4eaa-aadc-a8534ce69074 +2024-09-11 09:11:27.520745 2024-09-11 09:11:27.520756 pidref 271342889 R rec 9f1817bd-5d50-4371-97bd-bb3bc8dcf969 +2024-09-11 09:11:27.586321 2024-09-11 09:11:27.586334 pidref 271347821 R rec 4fca6de5-5ead-466b-868d-7466c3241491 +2024-09-11 09:11:27.640639 2024-09-11 09:11:27.640651 pidref 271377445 R rec cc2604a2-6b10-4cff-a5a4-d103a1af7bd8 +2024-09-11 09:11:27.703245 2024-09-11 09:11:27.703252 pidref 271529172 R rec 62c08004-7f69-4516-8f88-90462aefa462 +2024-09-11 09:11:27.759735 2024-09-11 09:11:27.759747 pidref 271733764 R rec b251008a-d4e7-42dc-937c-651a6102b1dc +2024-09-11 09:11:27.821738 2024-09-11 09:11:27.821743 pidref 271786574 R rec 3454a976-cef5-452a-9ebd-a0922b59ea71 +2024-09-11 09:11:27.877636 2024-09-11 09:11:27.877645 pidref 272053430 R rec ff07e3b0-9884-46ed-b80a-561a071131bd +2024-09-11 09:11:27.942617 2024-09-11 09:11:27.942629 pidref 272179213 R rec 2d94cd3e-af3e-4a6c-8ed8-bd33ccfd7a76 +2024-09-11 09:11:27.99565 2024-09-11 09:11:27.995656 pidref 272823627 R rec 968df511-677c-478f-984d-09aa64c67f4f +2024-09-11 09:11:28.066309 2024-09-11 09:11:28.06632 pidref 273580728 R rec af140566-58ac-4c8f-bbb7-318469e27ac6 +2024-09-11 09:11:28.133691 2024-09-11 09:11:28.133701 pidref 275775569 R rec 6d752174-0a05-4d1a-94ae-612cc042a004 +2024-09-11 09:11:28.210525 2024-09-11 09:11:28.210531 pidref 276090829 R rec 4a0b19bc-6e01-46fa-b047-2ce476c3c5a7 +2024-09-11 09:11:28.269005 2024-09-11 09:11:28.26901 pidref 27609266X R rec 4fca43ed-8ef9-44ba-b393-a9243a075505 +2024-09-11 09:11:28.336354 2024-09-11 09:11:28.336359 pidref 276092945 R rec 861f7e71-7caf-4cf4-a5c9-0a560672af53 +2024-09-11 09:11:28.403613 2024-09-11 09:11:28.403622 pidref 276180232 R rec 412aa830-13c4-42f3-9c0b-059f2c02a153 +2024-09-11 09:11:28.493651 2024-09-11 09:11:28.493657 pidref 276183762 R rec 8894df95-984d-4dd5-8ecc-b286200d7ed7 +2024-09-11 09:11:28.545784 2024-09-11 09:11:28.545794 pidref 276185986 R rec 541fabf2-6b3f-4a20-9edc-8a76a936e9fe +2024-09-11 09:11:28.610286 2024-09-11 09:11:28.61029 pidref 276213939 R rec f3228eb6-a7b1-4771-8b8b-d0e68ec97bfb +2024-09-11 09:11:28.658094 2024-09-11 09:11:28.658105 pidref 276214129 R rec ba1da505-b81d-4649-9157-3cddceb38f16 +2024-09-11 09:11:28.723123 2024-09-11 09:11:28.723128 pidref 276214463 R rec 43eb64d2-5582-4936-be2c-ac39e3415112 +2024-09-11 09:11:28.779354 2024-09-11 09:11:28.779365 pidref 27621675X R rec e4970d24-93a5-4607-bb5b-0b49dffa8828 +2024-09-11 09:11:28.843836 2024-09-11 09:11:28.843846 pidref 276271890 R rec 88be1c38-f72d-4d76-a9d5-6ed8c7244db5 +2024-09-11 09:11:28.905879 2024-09-11 09:11:28.90589 pidref 276300882 R rec af7d1de5-0784-4dfe-ab25-8b088e907440 +2024-09-11 09:11:28.971889 2024-09-11 09:11:28.971895 pidref 276306651 R rec e4061e68-442a-4259-ae4d-e9665a8117e5 +2024-09-11 09:11:29.030698 2024-09-11 09:11:29.030704 pidref 276398157 R rec 1c210c61-bab8-4e31-9816-adaf65bc5380 +2024-09-11 09:11:29.094713 2024-09-11 09:11:29.094722 pidref 276510216 R rec 026a4eff-27ad-44f4-bdb2-d12aef1a7c6a +2024-09-11 09:11:29.148247 2024-09-11 09:11:29.148253 pidref 276534921 R rec 9a0f53ed-8f80-45e1-8268-12dcd88a0426 +2024-09-11 09:11:29.210114 2024-09-11 09:11:29.210124 pidref 276626370 R rec cd92fc87-da66-424a-898c-b3e5d08287ac +2024-09-11 09:11:29.269345 2024-09-11 09:11:29.269359 pidref 276637674 R rec 57788265-4bbc-4d1c-bea1-f560a9c2b5fd +2024-09-11 09:11:29.337814 2024-09-11 09:11:29.337824 pidref 276708083 R rec 6aa65c7e-8a0f-43ed-bf96-68e4169ac569 +2024-09-11 09:11:29.407221 2024-09-11 09:11:29.407232 pidref 276783743 R rec d9823037-f22d-4f4b-b82e-a6166209ad58 +2024-09-11 09:11:29.467019 2024-09-11 09:11:29.46703 pidref 27678832X R rec fab47269-e4a1-476e-b8ea-f7acc43df6bb +2024-09-11 09:11:29.523309 2024-09-11 09:11:29.523315 pidref 276828984 R rec 712fe060-6ba6-43a4-87ac-285ed81b26cb +2024-09-11 09:11:29.595074 2024-09-11 09:11:29.595078 pidref 276944135 R rec 201a86b1-53dd-4139-b393-984abed393ea +2024-09-11 09:11:29.648937 2024-09-11 09:11:29.648947 pidref 276970950 R rec 6e294e82-00ec-4e7f-af1d-af9b79f16eb9 +2024-09-11 09:11:29.715082 2024-09-11 09:11:29.715087 pidref 277221307 R rec 2bc641fe-1c3f-45fb-9ac5-884f92e399c9 +2024-09-11 09:11:29.782374 2024-09-11 09:11:29.782385 pidref 27727382X R rec cac73230-8829-4c8e-b81d-7547f61ea2b4 +2024-09-11 09:11:29.84205 2024-09-11 09:11:29.84206 pidref 277473284 R rec b684bf01-9e24-4b58-8dbe-461ddf55fb28 +2024-09-11 09:11:29.912153 2024-09-11 09:11:29.912164 pidref 278628117 R rec fbce0a4e-2ce2-469e-bc7e-7fff8d47f294 +2024-09-11 09:11:29.974081 2024-09-11 09:11:29.974091 pidref 278728596 R rec 8371a5ba-7098-403f-86fc-4184c80a8f27 +2024-09-11 09:11:30.033231 2024-09-11 09:11:30.033241 pidref 278738230 R rec 9c1b6266-d127-4a79-9901-85935d51e8aa +2024-09-11 09:11:30.095867 2024-09-11 09:11:30.095877 pidref 278747310 R rec 1df993ee-a54b-45c4-8b40-e3e462fded38 +2024-09-11 09:11:30.14906 2024-09-11 09:11:30.14907 pidref 278850650 R rec 820a1cdf-409f-4415-9267-1a77dec238d1 +2024-09-11 09:11:30.213768 2024-09-11 09:11:30.213774 pidref 278893899 R rec 375f5631-1141-4f06-9682-d1a2786762fa +2024-09-11 09:11:30.262951 2024-09-11 09:11:30.26296 pidref 278918964 R rec a779a984-bb3a-4292-b177-4230d05eae27 +2024-09-11 09:11:30.325575 2024-09-11 09:11:30.325586 pidref 279034989 R rec a0da0c2f-8151-4a61-a5a6-6db30650a014 +2024-09-11 09:11:30.393934 2024-09-11 09:11:30.393944 pidref 279121369 R rec 3eb9aa76-8cde-4e86-a2e6-fb51f59d1da2 +2024-09-11 09:11:30.454957 2024-09-11 09:11:30.454967 pidref 279128800 R rec f2874641-aee0-4691-a4c9-9aacf39ffdb8 +2024-09-11 09:11:30.524649 2024-09-11 09:11:30.524658 pidref 27912886X R rec b32c75a0-312d-4d4e-9e3c-e36f02125802 +2024-09-11 09:11:30.597082 2024-09-11 09:11:30.597092 pidref 279128959 R rec dd7aec85-555f-41e3-8093-661144ae4156 +2024-09-11 09:11:30.654325 2024-09-11 09:11:30.654335 pidref 279129467 R rec d70d58e6-a7df-4675-9d68-fca53d9802fc +2024-09-11 09:11:30.717311 2024-09-11 09:11:30.717316 pidref 279129912 R rec 5e32a10b-1d2b-4a14-957d-1107c911f58a +2024-09-11 09:11:30.766664 2024-09-11 09:11:30.76667 pidref 279129920 R rec 4044b088-0617-48d7-8ab1-e106fd46df15 +2024-09-11 09:11:30.830038 2024-09-11 09:11:30.830049 pidref 279130252 R rec 558d0d6a-0b93-4cca-beab-42140502a160 +2024-09-11 09:11:30.898921 2024-09-11 09:11:30.89893 pidref 279131321 R rec 4fc9575d-556a-4718-915f-bed68ccdf3dd +2024-09-11 09:11:30.958288 2024-09-11 09:11:30.958299 pidref 279131356 R rec f900ddf0-18e0-4dd7-abe8-7e1795b606ed +2024-09-11 09:11:31.021714 2024-09-11 09:11:31.021725 pidref 27913150X R rec 9784add1-bca6-48e2-aafa-316b75c51124 +2024-09-11 09:11:31.090796 2024-09-11 09:11:31.090805 pidref 279131593 R rec d46081f7-3449-45bf-8178-5be1f1700dec +2024-09-11 09:11:31.145127 2024-09-11 09:11:31.145132 pidref 279132409 R rec c0ad3c32-bb89-40a9-9f63-9289a987bd27 +2024-09-11 09:11:31.201481 2024-09-11 09:11:31.20149 pidref 279132581 R rec ab87dd49-351d-463f-9716-f52fa8f57090 +2024-09-11 09:11:31.262151 2024-09-11 09:11:31.262161 pidref 279133782 R rec dc83d684-c41c-4d1a-9604-e62572eaab6e +2024-09-11 09:11:31.320667 2024-09-11 09:11:31.320678 pidref 27913438X R rec 051e58aa-ee73-41fa-8745-a10d23191aa6 +2024-09-11 09:11:31.386467 2024-09-11 09:11:31.386476 pidref 27913469X R rec 1343fa2f-16dd-4376-ab96-a0dec98b75b6 +2024-09-11 09:11:31.447784 2024-09-11 09:11:31.447793 pidref 279135130 R rec 5a3ff07d-e9e8-441d-9db8-b7f4271895e0 +2024-09-11 09:11:31.507898 2024-09-11 09:11:31.507909 pidref 279135289 R rec 62cf1627-e379-485f-b131-0bf1d3918c87 +2024-09-11 09:11:31.574073 2024-09-11 09:11:31.574079 pidref 279135777 R rec 187bf11b-51a6-4ef1-a132-5dcbb5130c3b +2024-09-11 09:11:31.625834 2024-09-11 09:11:31.625845 pidref 279135890 R rec 3ed8653d-f4ba-447e-b877-1a7f30ccd6c2 +2024-09-11 09:11:31.685912 2024-09-11 09:11:31.685923 pidref 279136730 R rec 09ad875a-d8c2-4e15-adce-5ac649934e81 +2024-09-11 09:11:31.739053 2024-09-11 09:11:31.739057 pidref 279136900 R rec 2a30bfef-2790-45b2-8f09-0c0ee7b966c8 +2024-09-11 09:11:31.809167 2024-09-11 09:11:31.809178 pidref 279146884 R rec 498bf2ba-515a-42ee-9199-c9cfc7d576e7 +2024-09-11 09:11:31.885954 2024-09-11 09:11:31.885963 pidref 279147546 R rec 4bbcd30b-c2de-4c03-9f1e-1d4f1db80e77 +2024-09-11 09:11:31.948548 2024-09-11 09:11:31.948557 pidref 279147708 R rec abe206f7-643a-40c8-b6f6-899c9f9104cf +2024-09-11 09:11:32.019857 2024-09-11 09:11:32.019867 pidref 27914783X R rec eaacf487-bcf9-416e-9f3b-a53141528460 +2024-09-11 09:11:32.080664 2024-09-11 09:11:32.080674 pidref 279148232 R rec 660a8a37-2a54-4938-ac5f-df338e0775fa +2024-09-11 09:11:32.131678 2024-09-11 09:11:32.131683 pidref 279148658 R rec 63264a83-8150-47d6-bd69-ead9b8839b71 +2024-09-11 09:11:32.189689 2024-09-11 09:11:32.189699 pidref 279148739 R rec 4b743be4-63cd-44fb-ab5e-2810f3a13b1b +2024-09-11 09:11:32.243187 2024-09-11 09:11:32.243199 pidref 279149492 R rec 93860e4c-1d05-471c-bf02-99da55e4de82 +2024-09-11 09:11:32.306315 2024-09-11 09:11:32.306323 pidref 279149522 R rec 5c12ccfd-eb72-4158-b9c3-d47a1bea27b4 +2024-09-11 09:11:32.376579 2024-09-11 09:11:32.376591 pidref 279150350 R rec 84c28eec-7a5a-4754-a805-b04e24a196e6 +2024-09-11 09:11:32.447925 2024-09-11 09:11:32.44794 pidref 279150504 R rec ab46d200-0e1d-4135-be09-3d666fcdb511 +2024-09-11 09:11:32.507704 2024-09-11 09:11:32.507715 pidref 279150911 R rec 1f0d63d1-297e-4094-8c7c-f0511b516efc +2024-09-11 09:11:32.569745 2024-09-11 09:11:32.56975 pidref 279150989 R rec 3dbce565-e500-4766-b441-81bad3590569 +2024-09-11 09:11:32.624125 2024-09-11 09:11:32.624131 pidref 279152426 R rec fdff24b8-1cd0-4ef9-980d-0b10a8e0f2ec +2024-09-11 09:11:32.673095 2024-09-11 09:11:32.673107 pidref 27915397X R rec 3cfd3c4f-f467-4e96-a757-95c959fe2bee +2024-09-11 09:11:32.731146 2024-09-11 09:11:32.731156 pidref 279154097 R rec 7afa4e64-73b7-4c4b-b4d9-b54d8557c477 +2024-09-11 09:11:32.783597 2024-09-11 09:11:32.783602 pidref 279154437 R rec cc25c9cb-e4f1-43a5-8546-1cf1cbe7c703 +2024-09-11 09:11:32.830169 2024-09-11 09:11:32.830173 pidref 279154488 R rec 057361a8-fa73-4e4f-9c86-8726daed60ba +2024-09-11 09:11:32.887608 2024-09-11 09:11:32.887619 pidref 279154542 R rec 7f7d83fe-b9e6-4b8e-9a97-c2672d02cde5 +2024-09-11 09:11:32.97089 2024-09-11 09:11:32.970895 pidref 279154593 R rec f8602230-8625-46ef-bbd9-9c6be08026a1 +2024-09-11 09:11:33.026785 2024-09-11 09:11:33.026797 pidref 279156766 R rec ca80c52f-ce77-43af-99ee-7ffef01f777a +2024-09-11 09:11:33.106764 2024-09-11 09:11:33.106775 pidref 279158475 R rec 047b73ed-b8ce-4a0c-a7f5-058b5c065d67 +2024-09-11 09:11:33.158636 2024-09-11 09:11:33.158649 pidref 279158599 R rec 149408b9-c29c-4ee8-aa3b-103c7305ac87 +2024-09-11 09:11:33.219983 2024-09-11 09:11:33.219987 pidref 27915948X R rec 123b0070-e71c-43a9-8dfa-93474628ebde +2024-09-11 09:11:33.276098 2024-09-11 09:11:33.276113 pidref 279166303 R rec 9300a347-f0f5-4f28-a68f-5390d16c992c +2024-09-11 09:11:33.341679 2024-09-11 09:11:33.34169 pidref 279167334 R rec 50d78321-c7dd-45e5-8556-2f2d1c296d16 +2024-09-11 09:11:33.412132 2024-09-11 09:11:33.412143 pidref 27918669X R rec ed9c4e57-e3fb-4c17-9a6f-ff8e5f4f291e +2024-09-11 09:11:33.480032 2024-09-11 09:11:33.480048 pidref 279187610 R rec 0f53e095-43d6-4a12-b025-6ad1c4ac7a23 +2024-09-11 09:11:33.552067 2024-09-11 09:11:33.552082 pidref 279188994 R rec bbaa117a-925b-44df-b20f-9edee0933872 +2024-09-11 09:11:33.625072 2024-09-11 09:11:33.625077 pidref 279189087 R rec 9f2a2cf1-fa5a-43c1-9f30-ccb3e73afa8d +2024-09-11 09:11:33.677634 2024-09-11 09:11:33.677644 pidref 279189249 R rec f2438348-c51a-49ff-8d41-cf13c26f36b7 +2024-09-11 09:11:33.744065 2024-09-11 09:11:33.744069 pidref 279192576 R rec 0c3c2728-526f-4af3-9cd9-8b33b75a7323 +2024-09-11 09:11:33.809886 2024-09-11 09:11:33.809896 pidref 27919269X R rec 2d37602d-921b-4f88-83cd-f9fbe87a7ca7 +2024-09-11 09:11:33.873666 2024-09-11 09:11:33.873672 pidref 279192800 R rec addb65e7-f025-405e-abbf-320a84e7c811 +2024-09-11 09:11:33.931502 2024-09-11 09:11:33.931512 pidref 27919305X R rec cb99e306-05d6-46d0-be6f-e3e3459c7c6f +2024-09-11 09:11:33.990741 2024-09-11 09:11:33.990751 pidref 279193092 R rec 74713df3-caaf-4fd5-95f6-f272897e2847 +2024-09-11 09:11:34.058117 2024-09-11 09:11:34.058128 pidref 279193181 R rec c1a9f5f1-1cca-4aa3-8bd8-2a6930c083a4 +2024-09-11 09:11:34.143386 2024-09-11 09:11:34.143398 pidref 27919336X R rec dca6d57b-2102-4b32-bcf5-7c974ba2db6d +2024-09-11 09:11:34.209321 2024-09-11 09:11:34.20933 pidref 279193750 R rec 441a05ab-68d9-4156-8487-fecbeb04e557 +2024-09-11 09:11:34.272238 2024-09-11 09:11:34.272249 pidref 279199929 R rec 494ee3f3-1551-48bf-904b-c2533b0e037d +2024-09-11 09:11:34.3354 2024-09-11 09:11:34.33541 pidref 279200471 R rec b899d6cd-2fcd-4cbd-9c42-d93f707df3c3 +2024-09-11 09:11:34.404951 2024-09-11 09:11:34.404965 pidref 279207646 R rec 0f4e60f9-697e-49b8-a66f-6427e6eca172 +2024-09-11 09:11:34.4772 2024-09-11 09:11:34.477211 pidref 279209592 R rec 2d02fc41-0387-443a-8f6d-ce0c11766c5f +2024-09-11 09:11:34.54707 2024-09-11 09:11:34.547086 pidref 279209754 R rec 385929f1-42ed-4d40-b6ab-a09810af8e15 +2024-09-11 09:11:34.614477 2024-09-11 09:11:34.614482 pidref 279209886 R rec 6e774913-c8dd-47bd-9f21-806b95a54140 +2024-09-11 09:11:34.664555 2024-09-11 09:11:34.664566 pidref 279210809 R rec b6f2dcef-a8d0-418f-a18d-4b550ab82ecd +2024-09-11 09:11:34.722107 2024-09-11 09:11:34.722113 pidref 279211066 R rec 2911eccb-2e45-42af-98b7-7e3565a62764 +2024-09-11 09:11:34.783599 2024-09-11 09:11:34.783604 pidref 279211147 R rec 079883e2-1b4e-4a6d-b66c-722d3bbcc64a +2024-09-11 09:11:34.855624 2024-09-11 09:11:34.85563 pidref 279214944 R rec b4ad433a-0936-462c-9f6c-c8e37e730335 +2024-09-11 09:11:34.912023 2024-09-11 09:11:34.912034 pidref 279214960 R rec 771e365d-eb24-48e2-a487-b9f73a4d0e22 +2024-09-11 09:11:34.982582 2024-09-11 09:11:34.982592 pidref 279215142 R rec 636b39a0-6035-4775-910b-de75e60e4fb3 +2024-09-11 09:11:35.046623 2024-09-11 09:11:35.046647 pidref 279215258 R rec 0df6908f-c00e-4be7-a36c-329dc7736a79 +2024-09-11 09:11:35.102902 2024-09-11 09:11:35.102914 pidref 279215347 R rec f3e980c4-2f18-4ef2-b4cf-6cdeb51edf03 +2024-09-11 09:11:35.156342 2024-09-11 09:11:35.156352 pidref 279219717 R rec 9277d8f6-5506-40d4-9710-6bba4f46bf08 +2024-09-11 09:11:35.217832 2024-09-11 09:11:35.217836 pidref 279221487 R rec d49bd565-dcf3-4068-830e-61a70c8b6a0f +2024-09-11 09:11:35.261611 2024-09-11 09:11:35.261616 pidref 279230087 R rec 60523199-3b3a-4b34-ab12-d123a1d6912d +2024-09-11 09:11:35.317532 2024-09-11 09:11:35.317543 pidref 279231547 R rec fb714a3c-ffae-4abb-98e5-633df524b88c +2024-09-11 09:11:35.380888 2024-09-11 09:11:35.380904 pidref 279231679 R rec 5bb5441e-2475-462c-8b3f-dad4bf4a9ae7 +2024-09-11 09:11:35.450433 2024-09-11 09:11:35.450444 pidref 279233493 R rec 0de753a4-f6b8-427b-a0a5-b4bf469cfc7d +2024-09-11 09:11:35.514674 2024-09-11 09:11:35.514679 pidref 279233639 R rec 72aebb7a-60cd-4d72-b541-8b6e51faff02 +2024-09-11 09:11:35.581743 2024-09-11 09:11:35.581749 pidref 279233752 R rec fccad654-196d-41bc-aead-fba48647c538 +2024-09-11 09:11:35.64423 2024-09-11 09:11:35.644236 pidref 279236417 R rec 92e95716-4cd3-4d80-9493-5a0062268ea4 +2024-09-11 09:11:35.691561 2024-09-11 09:11:35.691567 pidref 279236611 R rec 0d44fef9-7e6d-4328-9e19-3a6f4851875c +2024-09-11 09:11:35.738606 2024-09-11 09:11:35.738611 pidref 279236697 R rec 54558d5d-b8cc-4780-b413-747adaa79cc7 +2024-09-11 09:11:35.809573 2024-09-11 09:11:35.809579 pidref 279238037 R rec e11c8bbd-2614-413b-80ad-08c7b8c083dc +2024-09-11 09:11:35.86947 2024-09-11 09:11:35.86948 pidref 279245947 R rec 98c7bcfe-5a94-4e21-981e-dc40dfd0814b +2024-09-11 09:11:35.927679 2024-09-11 09:11:35.927689 pidref 279246358 R rec a0493aee-fbb3-4ffe-9e7f-7e6b9b388863 +2024-09-11 09:11:35.986641 2024-09-11 09:11:35.986645 pidref 279247060 R rec dabb954b-6294-448f-9a3f-990466a34901 +2024-09-11 09:11:36.043273 2024-09-11 09:11:36.043279 pidref 279247087 R rec d059e5a6-37a1-4a06-9439-3bb58607807b +2024-09-11 09:11:36.1007 2024-09-11 09:11:36.100705 pidref 279247184 R rec 0245b2d9-5d5a-4a37-ac86-bd213d1fce9b +2024-09-11 09:11:36.147439 2024-09-11 09:11:36.147444 pidref 279248180 R rec 92f4c54f-0cf2-425f-ad74-1a63b8c88bd2 +2024-09-11 09:11:36.204771 2024-09-11 09:11:36.204781 pidref 279248288 R rec 7641e86e-0a2d-4427-9a37-f128cd9b74a9 +2024-09-11 09:11:36.256153 2024-09-11 09:11:36.256161 pidref 279248482 R rec 9787938b-63e0-48ef-ad22-4a5e9bc2d4c0 +2024-09-11 09:11:36.311857 2024-09-11 09:11:36.311863 pidref 279248598 R rec cc2af027-71c3-4f34-bdd7-494e25f96ff0 +2024-09-11 09:11:36.365395 2024-09-11 09:11:36.365405 pidref 279248792 R rec 5fe20a17-f338-4dd6-aee6-8ba4a6ecbdbd +2024-09-11 09:11:36.427318 2024-09-11 09:11:36.427329 pidref 279249535 R rec e0ac16ab-673a-4997-bb92-5dba1ef75bb0 +2024-09-11 09:11:36.490504 2024-09-11 09:11:36.490514 pidref 279250002 R rec a84eb956-c7a5-47aa-880d-bbe833af3bde +2024-09-11 09:11:36.555053 2024-09-11 09:11:36.555062 pidref 279250142 R rec 8229ebb9-b064-4b0c-a413-bf390e2ade59 +2024-09-11 09:11:36.619183 2024-09-11 09:11:36.619188 pidref 279253001 R rec e8bd06e5-2f13-42d1-81f0-4a350c87e8a2 +2024-09-11 09:11:36.666145 2024-09-11 09:11:36.66615 pidref 279255381 R rec c113fda3-4c71-4d44-8c64-e5e7b86648e4 +2024-09-11 09:11:36.734108 2024-09-11 09:11:36.734113 pidref 279255519 R rec 22ccb92f-1dd8-4131-a3bf-37f415c2e54c +2024-09-11 09:11:36.784488 2024-09-11 09:11:36.784494 pidref 279256337 R rec a41ff0c4-30a5-4726-ac11-21bde0c30c27 +2024-09-11 09:11:36.840707 2024-09-11 09:11:36.840718 pidref 279256434 R rec d60e9bb8-cd2f-4791-bbbf-dc8bd68343af +2024-09-11 09:11:36.905459 2024-09-11 09:11:36.90547 pidref 279256574 R rec 7f0b5a36-e4b9-48ed-9339-455a802f3058 +2024-09-11 09:11:36.967425 2024-09-11 09:11:36.967436 pidref 279256647 R rec 9288f48c-f5cf-4466-9640-b137a1c12359 +2024-09-11 09:11:37.027526 2024-09-11 09:11:37.027538 pidref 279257120 R rec 0c68e169-ea21-4f7d-af3a-dd25f4bc987c +2024-09-11 09:11:37.09498 2024-09-11 09:11:37.094991 pidref 279263864 R rec 50421239-460e-4e82-a7b2-b0b235fc81a8 +2024-09-11 09:11:37.14512 2024-09-11 09:11:37.145126 pidref 279264410 R rec febadda7-01da-4f29-8b6e-8f6822e9d6b0 +2024-09-11 09:11:37.203498 2024-09-11 09:11:37.203507 pidref 279288743 R rec 1a075145-bd2e-474e-b3e1-351df21731ce +2024-09-11 09:11:37.261201 2024-09-11 09:11:37.261212 pidref 279307500 R rec 9f21f99e-b35f-4994-a122-4f7a545569ef +2024-09-11 09:11:37.315771 2024-09-11 09:11:37.315782 pidref 279307772 R rec 6ab7c017-e857-497f-b3f2-6862b7b2ad9c +2024-09-11 09:11:37.371168 2024-09-11 09:11:37.371177 pidref 279307829 R rec cabd04d6-6363-49c5-95f9-aa4d06942303 +2024-09-11 09:11:37.428863 2024-09-11 09:11:37.428867 pidref 279307845 R rec 117361e1-6f12-414b-9fcd-5a8bdd204cb4 +2024-09-11 09:11:37.490724 2024-09-11 09:11:37.490734 pidref 279311044 R rec 4ae78857-3b9d-42c1-b042-20988dc24ae1 +2024-09-11 09:11:37.556244 2024-09-11 09:11:37.556254 pidref 279311443 R rec 35c7a66d-3af6-4a6f-911a-e89d53ba497f +2024-09-11 09:11:37.619111 2024-09-11 09:11:37.619117 pidref 279312415 R rec 45360b91-ff02-403b-b4f5-7e6f838b411e +2024-09-11 09:11:37.677799 2024-09-11 09:11:37.67781 pidref 279313543 R rec 1a6a25a0-4116-468e-bd47-3463a87a9de0 +2024-09-11 09:11:37.735975 2024-09-11 09:11:37.735979 pidref 279313853 R rec 7fc7eaee-668e-4c32-830f-a245fdda1782 +2024-09-11 09:11:37.809919 2024-09-11 09:11:37.809928 pidref 279314833 R rec 603f87a0-66b7-433c-9a8c-89f9b5af3eb6 +2024-09-11 09:11:37.874779 2024-09-11 09:11:37.87479 pidref 279315287 R rec 5a8128e9-f088-4c6b-9b1a-36137768f0f7 +2024-09-11 09:11:37.936694 2024-09-11 09:11:37.93674 pidref 279315368 R rec e96bd2c8-0ab8-477d-b2d5-d946c9c9643f +2024-09-11 09:11:38.000577 2024-09-11 09:11:38.000582 pidref 279315597 R rec 4b3e4cf4-fc9c-40f2-b23e-49cb2369edfd +2024-09-11 09:11:38.062228 2024-09-11 09:11:38.062238 pidref 279315678 R rec df9c100f-202b-466d-b08d-a3f89e2e5c8f +2024-09-11 09:11:38.12025 2024-09-11 09:11:38.120257 pidref 279315759 R rec a79cc8e5-6d48-4923-a1cd-87bb47971aa8 +2024-09-11 09:11:38.172059 2024-09-11 09:11:38.17207 pidref 279316232 R rec 29946428-253a-4f12-86e2-cd9c39560a50 +2024-09-11 09:11:38.230793 2024-09-11 09:11:38.230797 pidref 279316291 R rec 6ffd17b4-f55a-4d47-b92c-d32d50f36b3f +2024-09-11 09:11:38.284837 2024-09-11 09:11:38.284847 pidref 279333013 R rec 0c855974-692c-475a-8424-c881ff936a5f +2024-09-11 09:11:38.348849 2024-09-11 09:11:38.348859 pidref 279334699 R rec ef00e6be-fbc4-49d8-bdfd-b15731ab5ba3 +2024-09-11 09:11:38.41266 2024-09-11 09:11:38.41267 pidref 279334982 R rec c192d7ff-dc23-4e83-88fd-99c2aaebfea3 +2024-09-11 09:11:38.475898 2024-09-11 09:11:38.475909 pidref 279335156 R rec c3a98091-879f-4e2c-b722-f250463fdf47 +2024-09-11 09:11:38.534998 2024-09-11 09:11:38.535003 pidref 279335512 R rec f41860bc-72b1-4988-897a-aa3e8dc9e798 +2024-09-11 09:11:38.593713 2024-09-11 09:11:38.593724 pidref 27933558X R rec 5a2bd8a7-ddfe-42e5-9580-6095a43d1f86 +2024-09-11 09:11:38.645177 2024-09-11 09:11:38.645183 pidref 279347642 R rec 948ba68b-73ba-462c-afcc-80131b138239 +2024-09-11 09:11:38.707857 2024-09-11 09:11:38.707873 pidref 279348304 R rec 0fa93e9c-1aad-4314-8405-d3295bb60e42 +2024-09-11 09:11:38.774146 2024-09-11 09:11:38.774162 pidref 279348363 R rec fcbc2e37-3322-4b32-801e-463551347d0f +2024-09-11 09:11:38.850487 2024-09-11 09:11:38.8505 pidref 279349807 R rec 4468fce1-174f-4489-b669-67c9ee972338 +2024-09-11 09:11:38.934033 2024-09-11 09:11:38.934038 pidref 279351747 R rec 5f7de5c1-f8bc-424a-8679-f0778416d60f +2024-09-11 09:11:38.998406 2024-09-11 09:11:38.998416 pidref 279351879 R rec c476e489-1fde-43c5-90d9-41f0d0c0ba49 +2024-09-11 09:11:39.062514 2024-09-11 09:11:39.062524 pidref 279353162 R rec 37830a38-cf10-4bb9-8dd9-9d23d8eaf7c3 +2024-09-11 09:11:39.124241 2024-09-11 09:11:39.124246 pidref 279353308 R rec 623e9206-9dd2-40f4-aaa1-8a38fb8d7060 +2024-09-11 09:11:39.171661 2024-09-11 09:11:39.171666 pidref 279353928 R rec fd2a788e-9978-46a9-83d1-ef5a5f570d4d +2024-09-11 09:11:39.224622 2024-09-11 09:11:39.224627 pidref 279354118 R rec 3a2f103f-40c8-4e53-855a-8ab63fdb4f8d +2024-09-11 09:11:39.282883 2024-09-11 09:11:39.282896 pidref 279354223 R rec 3b7ea54a-2431-4d72-8a36-8a753d62fb80 +2024-09-11 09:11:39.346442 2024-09-11 09:11:39.346452 pidref 279355173 R rec 13020c73-e4ec-41f2-85bd-b4e57022c374 +2024-09-11 09:11:39.407861 2024-09-11 09:11:39.407876 pidref 279357206 R rec a99cfc0f-84c4-4ba0-9ee6-4712f85dd17a +2024-09-11 09:11:39.47391 2024-09-11 09:11:39.47392 pidref 279368429 R rec 50f120ac-03c7-4b50-8945-6e7f372cf701 +2024-09-11 09:11:39.530916 2024-09-11 09:11:39.530929 pidref 279369867 R rec b124f286-b93d-4f9b-9824-055cc07cb6d5 +2024-09-11 09:11:39.596131 2024-09-11 09:11:39.596147 pidref 27937027X R rec bb65f595-c309-44ba-8524-ed9aa4d0a19e +2024-09-11 09:11:39.648639 2024-09-11 09:11:39.648644 pidref 279371322 R rec a66efcdb-9fd4-4d95-b885-52336b3ffce6 +2024-09-11 09:11:39.704593 2024-09-11 09:11:39.704603 pidref 279372280 R rec e8355294-5296-49a4-b7e5-699c55681394 +2024-09-11 09:11:39.766992 2024-09-11 09:11:39.766997 pidref 279372906 R rec 5a975bc6-05b8-4fe6-9b0d-b3d1eb564a49 +2024-09-11 09:11:39.836959 2024-09-11 09:11:39.836963 pidref 279373139 R rec 1408ad31-e988-4802-aab3-6b2aaba33158 +2024-09-11 09:11:39.899931 2024-09-11 09:11:39.899941 pidref 279373171 R rec 692cad84-24ff-4a65-b434-b737886ee55d +2024-09-11 09:11:39.955565 2024-09-11 09:11:39.955598 pidref 279373198 R rec 6f945ee7-6622-499b-ae6a-6330f8098f9b +2024-09-11 09:11:40.016708 2024-09-11 09:11:40.016719 pidref 279373287 R rec 71a65e87-6165-4bdf-b04a-dc710b28f097 +2024-09-11 09:11:40.082661 2024-09-11 09:11:40.08267 pidref 279375387 R rec 49d41868-01df-45d5-a365-d223f82264d0 +2024-09-11 09:11:40.138799 2024-09-11 09:11:40.138803 pidref 279375794 R rec 42721494-1a7b-4e6c-9a50-a61242bddc89 +2024-09-11 09:11:40.211445 2024-09-11 09:11:40.211451 pidref 279375867 R rec da876a93-7b8f-454f-b53b-6811d8f0d79a +2024-09-11 09:11:40.276964 2024-09-11 09:11:40.276974 pidref 279376405 R rec fdf3ed84-8fb5-4c63-9238-4dc4429b094e +2024-09-11 09:11:40.337441 2024-09-11 09:11:40.33745 pidref 27937660X R rec d1814c12-8a3e-4e72-8d47-4f9dda1db46c +2024-09-11 09:11:40.401303 2024-09-11 09:11:40.401313 pidref 279376693 R rec 773b8c04-e5da-42cb-b32e-aa285131e3fe +2024-09-11 09:11:40.46045 2024-09-11 09:11:40.460459 pidref 279376804 R rec 215666d9-59a1-4dd7-920c-721420eb89b0 +2024-09-11 09:11:40.518045 2024-09-11 09:11:40.518054 pidref 279377266 R rec 2f249654-fa60-4e4e-b1c8-319cf7d2a5b3 +2024-09-11 09:11:40.584414 2024-09-11 09:11:40.584423 pidref 279377452 R rec 2122f824-b0de-404a-a438-cc7a8fdaccf9 +2024-09-11 09:11:40.640528 2024-09-11 09:11:40.640533 pidref 279378173 R rec 425a6257-768d-400d-b600-5243c4f34a33 +2024-09-11 09:11:40.694682 2024-09-11 09:11:40.694693 pidref 279380925 R rec 7fff089c-2698-4902-a841-44aea4005793 +2024-09-11 09:11:40.746267 2024-09-11 09:11:40.746274 pidref 279385544 R rec feb66584-8a90-4955-b252-3259e4ad6c9b +2024-09-11 09:11:40.809772 2024-09-11 09:11:40.809782 pidref 279385625 R rec 8f014623-9e06-42e1-8892-839821831a24 +2024-09-11 09:11:40.869315 2024-09-11 09:11:40.869325 pidref 27938646X R rec 2d5dee34-a79b-4ecb-8924-bf9511c6cf1c +2024-09-11 09:11:40.923888 2024-09-11 09:11:40.923899 pidref 279387199 R rec 22e2765e-a675-4e90-b5e8-d611dd7557cd +2024-09-11 09:11:40.984143 2024-09-11 09:11:40.984152 pidref 279388810 R rec d298e091-b74f-4b31-b920-44956e44b93e +2024-09-11 09:11:41.045521 2024-09-11 09:11:41.045533 pidref 279390351 R rec 75186be9-3b3b-42ae-81ea-53a769bf6f1a +2024-09-11 09:11:41.108431 2024-09-11 09:11:41.108442 pidref 279391544 R rec 7e1ccd2c-657b-493c-8f8f-489006fb8bca +2024-09-11 09:11:41.162024 2024-09-11 09:11:41.16203 pidref 279391609 R rec 150d6866-bdb7-4857-bc49-8fce471a1b52 +2024-09-11 09:11:41.219321 2024-09-11 09:11:41.219326 pidref 279392400 R rec 97409697-bff3-4642-aec4-ae14043f1509 +2024-09-11 09:11:41.272773 2024-09-11 09:11:41.272786 pidref 279394381 R rec 7a138990-3863-4d6d-a8bd-404ab34c1254 +2024-09-11 09:11:41.335047 2024-09-11 09:11:41.335057 pidref 279396155 R rec d7d932e1-cbe7-4654-8a87-dd84aa4f3524 +2024-09-11 09:11:41.394586 2024-09-11 09:11:41.394597 pidref 279401639 R rec 6ca61727-12af-49a8-b563-20a30e251511 +2024-09-11 09:11:41.459807 2024-09-11 09:11:41.459818 pidref 279403984 R rec 265bb93d-8a89-4f20-8ced-9cfdf943e178 +2024-09-11 09:11:41.529207 2024-09-11 09:11:41.529216 pidref 279414145 R rec 72b80c3a-72f7-4ec9-af2d-3f40cf7b823a +2024-09-11 09:11:41.595082 2024-09-11 09:11:41.595092 pidref 279416679 R rec e22d3175-8b6e-4ba8-9c79-b416ab5b0f06 +2024-09-11 09:11:41.647754 2024-09-11 09:11:41.64776 pidref 27941806X R rec c396cffd-085d-415f-a585-6286a9b3aac8 +2024-09-11 09:11:41.706287 2024-09-11 09:11:41.706295 pidref 279418728 R rec 14abcd79-a7cc-4a81-a63c-a3aa48ac1cfe +2024-09-11 09:11:41.760033 2024-09-11 09:11:41.760043 pidref 279421427 R rec fb5dada4-4bb9-43dd-b9c0-21d0881934e7 +2024-09-11 09:11:41.817203 2024-09-11 09:11:41.817214 pidref 279426739 R rec 730b0add-c600-4ca9-8fd7-bb0ee2f263c7 +2024-09-11 09:11:41.882203 2024-09-11 09:11:41.882209 pidref 279461429 R rec 9c7804d8-3e3a-42eb-a859-599b0f418b50 +2024-09-11 09:11:41.942637 2024-09-11 09:11:41.942647 pidref 279466293 R rec 4141d7b5-1370-4498-a0e3-46c77ae1de85 +2024-09-11 09:11:42.005217 2024-09-11 09:11:42.005228 pidref 279467850 R rec a3eb3327-f7d8-4aca-ac52-2f7a1f89cf7c +2024-09-11 09:11:42.070948 2024-09-11 09:11:42.070957 pidref 279469632 R rec f73dd361-be02-455d-bedd-ae686705d5d0 +2024-09-11 09:11:42.13935 2024-09-11 09:11:42.139355 pidref 279471467 R rec 5f1d8169-099f-438a-814d-69461914307c +2024-09-11 09:11:42.204378 2024-09-11 09:11:42.204388 pidref 279471734 R rec 91c8fdbd-5b52-4124-823f-2a9eca33b30d +2024-09-11 09:11:42.262603 2024-09-11 09:11:42.262613 pidref 279478208 R rec e4a53234-e010-47f6-8100-536f169f6803 +2024-09-11 09:11:42.321902 2024-09-11 09:11:42.321913 pidref 279487606 R rec cdc7dce3-3e6e-40e3-a5eb-09a5cd399fc9 +2024-09-11 09:11:42.386671 2024-09-11 09:11:42.386682 pidref 279488076 R rec 54b1d02d-ab9c-4a53-9e7a-2fdd647b8dd7 +2024-09-11 09:11:42.443386 2024-09-11 09:11:42.443401 pidref 279492820 R rec 4962c30a-4292-4f54-a2f8-8113d401fa95 +2024-09-11 09:11:42.515159 2024-09-11 09:11:42.515171 pidref 279493584 R rec 28e9e1b7-f6d8-4d0d-947e-9ef46b66ea7d +2024-09-11 09:11:42.582124 2024-09-11 09:11:42.582139 pidref 279494602 R rec 6ae23c42-4791-4237-91fd-14cb670a6c5b +2024-09-11 09:11:42.649644 2024-09-11 09:11:42.649649 pidref 279494637 R rec 18cd543e-9c61-4950-9ba6-705b19a75bbc +2024-09-11 09:11:42.718439 2024-09-11 09:11:42.718444 pidref 279494653 R rec c17c9da9-7ac2-4cc6-9a5d-4304fdc48fc8 +2024-09-11 09:11:42.775421 2024-09-11 09:11:42.775431 pidref 279494688 R rec 0c66e8c2-9892-4cac-bc73-e8221802aec0 +2024-09-11 09:11:42.843002 2024-09-11 09:11:42.843011 pidref 279501080 R rec 7cae9d96-bbd4-4ecc-b18b-fdd007fd352f +2024-09-11 09:11:42.902075 2024-09-11 09:11:42.902085 pidref 27950277X R rec 5211dffb-4445-4d06-bee9-fe67936dea03 +2024-09-11 09:11:42.95672 2024-09-11 09:11:42.95673 pidref 279503288 R rec f2d28bcb-0419-4719-a9ce-f57f1dcefe90 +2024-09-11 09:11:43.019743 2024-09-11 09:11:43.019752 pidref 279505264 R rec ad95172b-1fd4-4f80-bf8c-8a03984266cc +2024-09-11 09:11:43.076242 2024-09-11 09:11:43.076254 pidref 279507097 R rec 5321fd4c-ed83-4717-9a46-24b9d7d14b52 +2024-09-11 09:11:43.137557 2024-09-11 09:11:43.137562 pidref 279507208 R rec 099605b6-9fc4-487d-98d2-3bc61a3f1c88 +2024-09-11 09:11:43.185398 2024-09-11 09:11:43.185403 pidref 279516932 R rec ebac9647-8942-4c62-b05f-8fb1b6f27e04 +2024-09-11 09:11:43.230272 2024-09-11 09:11:43.230277 pidref 279522053 R rec d6a7851e-7a90-44d7-b82b-0003d3a0182d +2024-09-11 09:11:43.281744 2024-09-11 09:11:43.281749 pidref 279523505 R rec 1e057c9e-fcf1-4ca6-914c-c116f62c2cd8 +2024-09-11 09:11:43.343206 2024-09-11 09:11:43.343216 pidref 279523858 R rec 7a0ebeb5-ae35-462b-af08-cdbeaee2d206 +2024-09-11 09:11:43.41977 2024-09-11 09:11:43.419776 pidref 279524072 R rec 2ec134dc-be89-4b5c-8e92-6fefc9dd971e +2024-09-11 09:11:43.465523 2024-09-11 09:11:43.465528 pidref 279524080 R rec 191e0dc7-ac68-4c3f-b7f7-25afc694be02 +2024-09-11 09:11:43.519465 2024-09-11 09:11:43.51947 pidref 279532881 R rec b0842e55-8c19-48a7-93a8-9dfb52e67a56 +2024-09-11 09:11:43.576735 2024-09-11 09:11:43.576745 pidref 279533497 R rec 01c6aa40-5275-4e06-99ac-ede1af0531b9 +2024-09-11 09:11:43.624798 2024-09-11 09:11:43.624803 pidref 279535783 R rec 74fb4a89-9122-40e3-b631-6a389865f62a +2024-09-11 09:11:43.678055 2024-09-11 09:11:43.67806 pidref 279536011 R rec e4fc681f-2677-4b2a-b2cf-085b0837c125 +2024-09-11 09:11:43.733013 2024-09-11 09:11:43.733018 pidref 279537719 R rec 2186a44c-84dc-45c5-b841-ee226fa28186 +2024-09-11 09:11:43.797907 2024-09-11 09:11:43.79792 pidref 279539363 R rec 4d9d153c-fe85-426f-ac6c-8eff01f78dfd +2024-09-11 09:11:43.871978 2024-09-11 09:11:43.871983 pidref 279562098 R rec bd9e83c8-b9d4-462a-aff5-3c8486a168fc +2024-09-11 09:11:43.934113 2024-09-11 09:11:43.934118 pidref 279571550 R rec f43e44cb-cb11-47b7-954d-ad44a799fa2c +2024-09-11 09:11:43.994479 2024-09-11 09:11:43.994488 pidref 279571658 R rec 77f880de-1ce5-41db-a787-76c5143395e1 diff --git a/data/plgnd.json b/data/plgnd.json index 7f265f44..e444c6aa 100644 --- a/data/plgnd.json +++ b/data/plgnd.json @@ -1,13 +1,6 @@ [ { "authorized_access_point": "Burgwall Katovice", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Burgwall" - } - ], "identifiedBy": [ { "source": "GND", @@ -39,7 +32,7 @@ "Katowice", "Katowitz" ], - "md5": "94179a3a9fb9e72053f299534acfbeb8" + "md5": "40205680c9a1f2ca9bacadedfbc96d28" }, { "authorized_access_point": "Katovice", @@ -66,6 +59,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Katovice&oldid=242019016" ] + }, + { + "noteType": "general", + "label": [ + "Minderstadt im Okres Strakonnice" + ] } ], "pid": "1335257101", @@ -73,7 +72,7 @@ "variant_access_point": [ "Katowitz" ], - "md5": "1957d4f38b442be11cb057eaaf7e9880" + "md5": "370e0b93363ce55d7c5166b444b8826d" }, { "authorized_access_point": "Malbork-Wielbark", @@ -104,7 +103,8 @@ { "noteType": "general", "label": [ - "Ort in der Wojewodschaft Pommern, Powiat malborski; der gro\u0308\u00dfere Teil geho\u0308rt zur Stadt Malbork" + "Ort in der Wojewodschaft Pommern, Powiat malborski; der gro\u0308\u00dfere Teil geho\u0308rt zur Stadt Malbork", + "Fu\u0308r die Sacherschlie\u00dfung wird bei Splits nur diese (das ist die neueste/ju\u0308ngste) Namensform verwendet" ] } ], @@ -114,7 +114,7 @@ "Wielbark", "Willenberg" ], - "md5": "87b304ecb151a650c9367d93c40ff32d" + "md5": "d7a86b34d986a931b36805c6f2b7a0a2" }, { "authorized_access_point": "Kwiatko\u0301w", @@ -141,21 +141,21 @@ "label": [ "Wikipedia - https://pl.wikipedia.org/w/index.php?title=Kwiatk%C3%B3w_(powiat_turecki)&oldid=72550113" ] + }, + { + "noteType": "general", + "label": [ + "Ort in der Gmina Brudzew, Powiat turecki, Wojewodschaft Gro\u00dfpolen", + "Fu\u0308r die Sacherschlie\u00dfung wird bei Splits nur diese (das ist die neueste/ju\u0308ngste) Namensform verwendet" + ] } ], "pid": "133525207X", "type": "bf:Place", - "md5": "b1ee337f5077380a09d68066d99f29e1" + "md5": "792b70c854a060c168a8f716217821f1" }, { "authorized_access_point": "Steinburg (Su\u0308derau)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Tiefenburg" - } - ], "identifiedBy": [ { "source": "GND", @@ -179,6 +179,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/wiki/Steinburg_(Holstein)" ] + }, + { + "noteType": "general", + "label": [ + "Abgebrochen ab 1641, seither wu\u0308st" + ] } ], "pid": "1335249966", @@ -188,17 +194,10 @@ "authorized_access_point": "Su\u0308derau" } ], - "md5": "a5325d2bbb62afe52cb7ebbcb815ca5c" + "md5": "acbf23211a125fa05b002dab9f4b41f6" }, { "authorized_access_point": "San Pietro Apostolo (San Basilio, Sardinien)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -216,6 +215,14 @@ "value": "(DE-588)1335243240" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Pfarrkirche, der Kirchenbau stammt aus der Zeit 1593 bis 1723" + ] + } + ], "pid": "1335243240", "type": "bf:Place", "broader": [ @@ -223,17 +230,10 @@ "authorized_access_point": "San Basilio (Sardinien)" } ], - "md5": "937cf0248f6d4da93792064e35dcedd6" + "md5": "b6554a2c351a38ed99774757903595f0" }, { "authorized_access_point": "Klosteranlage des Monastero di Santa Croce alla Giudecca (Venedig)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Klosteranlage" - } - ], "identifiedBy": [ { "source": "GND", @@ -251,6 +251,14 @@ "value": "(DE-588)133523909X" } ], + "note": [ + { + "noteType": "general", + "label": [ + "nach Aufgabe des Klosters 1810 als Arbeitshaus und Gefa\u0308ngnis genutzt" + ] + } + ], "pid": "133523909X", "type": "bf:Place", "broader": [ @@ -258,7 +266,7 @@ "authorized_access_point": "Venedig" } ], - "md5": "1a4877fe79fc01dacd70b37352479599" + "md5": "c64f44f307cf8aa2dfade21dd2b78098" }, { "authorized_access_point": "Gunzenhausen-Bu\u0308chelberg", @@ -289,7 +297,7 @@ "variant_access_point": [ "Bu\u0308chelberg (Gunzenhausen)" ], - "md5": "e00f859c0020ce7c33fda090bc62842f" + "md5": "f4d1fb3b3de96d0db96069655309c771" }, { "authorized_access_point": "Skillman, NJ", @@ -320,7 +328,7 @@ "variant_access_point": [ "Skillman, New Jersey" ], - "md5": "e1c64024aa0576dfe4b4c9df1d6cf3d5" + "md5": "68cfdc6f7144d7eab3c5ec71e23368d7" }, { "authorized_access_point": "Caicara de Maturi\u0301n", @@ -347,21 +355,20 @@ "label": [ "Wikipedia (spanisch) - https://es.wikipedia.org/wiki/Caicara_de_Matur%C3%ADn" ] + }, + { + "noteType": "general", + "label": [ + "Kleinstadt im venezolanischen Bundesstaat Monagas" + ] } ], "pid": "1335141790", "type": "bf:Place", - "md5": "288e6d783cf8aa5fa5a0b42dd891e07c" + "md5": "63ddaee5a91963d705696f335fe48161" }, { "authorized_access_point": "Hokuriku", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Region" - } - ], "identifiedBy": [ { "source": "GND", @@ -379,6 +386,14 @@ "value": "(DE-588)1335107711" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Teilregion der japanischen Region Chu\u0304bu" + ] + } + ], "pid": "1335107711", "type": "bf:Place", "broader": [ @@ -390,7 +405,7 @@ "Hokuriku Chiho\u0304", "\u5317\u9678\u5730\u65b9" ], - "md5": "d80ee3c9ce81f4f91547769bee01fb28" + "md5": "b966251d2bd0fbac2f406bdabb864a81" }, { "authorized_access_point": "Alt-Albenreuth", @@ -417,6 +432,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=M%C3%BDtina&oldid=240251478" ] + }, + { + "noteType": "general", + "label": [ + "In der Sacherschlie\u00dfung nicht zu verwenden; fu\u0308r die Sacherschlie\u00dfung wird bei Splits nur die neueste/ju\u0308ngste Namensform verwendet." + ] } ], "pid": "1335104917", @@ -431,7 +452,7 @@ "Altalbenreuth", "Stary\u0301 Albenreuth" ], - "md5": "83042e35d08f362226a9d447b8c872bf" + "md5": "dd46f92a4e77173e592256002f69ed0b" }, { "authorized_access_point": "Portsmouth (Dominica)", @@ -458,21 +479,20 @@ "label": [ "Wikipedia - https://de.wikipedia.org/wiki/Portsmouth_(Dominica)" ] + }, + { + "noteType": "general", + "label": [ + "Kleinstadt im Norden des Inselstaates Dominica" + ] } ], "pid": "1335098399", "type": "bf:Place", - "md5": "61bb294f92844e87999c8208c6c90d32" + "md5": "d53c277eca6d0f91014e4b8063b35cb9" }, { "authorized_access_point": "Villa Wente\u0301 (Bad Breisig)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Villa" - } - ], "identifiedBy": [ { "source": "GND", @@ -496,6 +516,12 @@ "label": [ "AW-Wiki - https://www.aw-wiki.de/index.php/Villa_Wente_(Niederbreisig)" ] + }, + { + "noteType": "general", + "label": [ + "1970 abgerissen" + ] } ], "pid": "1335092390", @@ -515,7 +541,7 @@ "Villa Wente\u0301 (Bad Niederbreisig)", "Villa Wente\u0301 (Bad Breisig- Niederbreisig)" ], - "md5": "9871042c3dcdb867a88ed1f6e6d37c1a" + "md5": "f9b85c791cca5a5155b9a3140a8863c6" }, { "authorized_access_point": "Mu\u0308nchen-Neufreimann", @@ -542,6 +568,12 @@ "label": [ "Homepage - https://www.neufreimann.de/" ] + }, + { + "noteType": "general", + "label": [ + "Das Areal der fu\u0308heren Bayernkaserne wird zum neuen Wohnquartier" + ] } ], "pid": "1335092196", @@ -554,7 +586,7 @@ "variant_access_point": [ "Neufreimann (Mu\u0308nchen-Neufreimann)" ], - "md5": "92c77e0dc91babe1e42a3d7377974d79" + "md5": "1a2f1ccbe4add5ac9359ddb13b051731" }, { "authorized_access_point": "Podsuliszka", @@ -591,7 +623,7 @@ "authorized_access_point": "Powiat radomski" } ], - "md5": "552b212cb3b66f3c3e640ff921c7604d" + "md5": "b8b63a6efaf40a9082105cd424127b04" }, { "authorized_access_point": "Torre Archirafi", @@ -618,6 +650,12 @@ "label": [ "Wikipedia - https://it.wikipedia.org/w/index.php?title=Torre_Archirafi&oldid=140074551" ] + }, + { + "noteType": "general", + "label": [ + "Ortsteil von Riposto in der Metropolitanstadt Catania, Sizilien" + ] } ], "pid": "1335058036", @@ -630,7 +668,7 @@ "variant_access_point": [ "Riposto- Torre Archirafi" ], - "md5": "5120f843913fcc8a36c9a790cd4ede39" + "md5": "f9363ee409d3172c667e5d15b290317a" }, { "authorized_access_point": "Jusepi\u0301n", @@ -657,21 +695,20 @@ "label": [ "Internet - https://www.mindat.org/feature-3639055.html" ] + }, + { + "noteType": "general", + "label": [ + "Ortschaft im venezolanischen Bundesstaat Monagas" + ] } ], "pid": "1334938016", "type": "bf:Place", - "md5": "1361004eb7b229137163e8783373561d" + "md5": "6e93f4d48abe974c5e70fde7f9e5f246" }, { "authorized_access_point": "Villa Stefaneo (San Vito al Torre)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Landhaus" - } - ], "identifiedBy": [ { "source": "GND", @@ -703,17 +740,10 @@ "Palazzo Steffaneo (San Vito al Torre)", "Palazzo Steffaneo Roncato (San Vito al Torre)" ], - "md5": "6e2a3f8de22c437fd123d907d8ce9835" + "md5": "875e4271a609de9f164dbf9149a1c930" }, { - "authorized_access_point": "Sankt-Veits-Dom (Prag)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Portal" - } - ], + "authorized_access_point": "Sankt-Veits-Dom (Prag) - Goldene Pforte", "identifiedBy": [ { "source": "GND", @@ -731,6 +761,14 @@ "value": "(DE-588)1334916292" } ], + "note": [ + { + "noteType": "general", + "label": [ + "1367 als Festeingang errichtet, das Portal schmu\u0308ckt ein Glasmosaik" + ] + } + ], "pid": "1334916292", "type": "bf:Place", "broader": [ @@ -738,17 +776,10 @@ "authorized_access_point": "Sankt-Veits-Dom (Prag)" } ], - "md5": "2e1a42e7d88632f19de8f66ad6cbc4cf" + "md5": "1df2b6e5b7c5433d9d4a1797377fb03b" }, { "authorized_access_point": "Burg Hohenschelklingen (Schelklingen)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Burg" - } - ], "identifiedBy": [ { "source": "GND", @@ -766,6 +797,14 @@ "value": "(DE-588)1334913498" } ], + "note": [ + { + "noteType": "general", + "label": [ + "errichtet um 1127, zersto\u0308rt 1633, 1650 bis 1653 abgerissen; die Steine zum Bau des Franziskanerklosters in Ehingen verwendet; Reste u\u0308berlie\u00df man dem Verfall" + ] + } + ], "pid": "1334913498", "type": "bf:Place", "broader": [ @@ -777,17 +816,10 @@ "Schloss Hohenschelklingen (Schelklingen)", "Burg Hohen Schelklingen (Schelklingen)" ], - "md5": "c68e98c9801783ba57fcf34eab33ad14" + "md5": "2869c2f49802d1513b3eec655dbeedc3" }, { "authorized_access_point": "Terc\u030cino u\u0301doli\u0301 (Zlate\u0301 Hory, Jeseni\u0301k)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Landschaftspark" - } - ], "identifiedBy": [ { "source": "GND", @@ -828,17 +860,10 @@ "Terezino u\u0301doli\u0301 (Zlate\u0301 Hory, Jeseni\u0301k)", "Theresiental (Zlate\u0301 Hory, Jeseni\u0301k)" ], - "md5": "ef5870f8141de7279b5fa857b56a238a" + "md5": "256828aa629d876a9a3445031fef7304" }, { "authorized_access_point": "SPO\u0308-Parteihaus (Innsbruck)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Bu\u0308rohaus" - } - ], "identifiedBy": [ { "source": "GND", @@ -856,6 +881,14 @@ "value": "(DE-588)1334907048" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Sitz der SPO\u0308 Tirol." + ] + } + ], "pid": "1334907048", "type": "bf:Place", "broader": [ @@ -866,7 +899,7 @@ "variant_access_point": [ "Salurner Stra\u00dfe 2 (Innsbruck)" ], - "md5": "3eecc7ab0092c308a65eea2a04019df8" + "md5": "8b38600b1a3816ba93a6b804234c2c89" }, { "authorized_access_point": "Wyszko\u0301w S\u0301la\u0328ski", @@ -903,17 +936,10 @@ "Wieschke", "Lindendorf O.S." ], - "md5": "8bfb823cdf023d72ec78e5c32f68c312" + "md5": "ca15762fcb1908a377eda1e7fe67a1a9" }, { "authorized_access_point": "Schloss Weissenegg (Fernitz-Mellach)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - } - ], "identifiedBy": [ { "source": "GND", @@ -946,17 +972,10 @@ "authorized_access_point": "Fernitz-Mellach" } ], - "md5": "7c49a6cffedfe0f5095dcb9091d86531" + "md5": "dee3de85ff4163388ab3aa9d418c39ef" }, { "authorized_access_point": "Schloss Grub (Obertraun)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - } - ], "identifiedBy": [ { "source": "GND", @@ -989,17 +1008,10 @@ "authorized_access_point": "Obertraun" } ], - "md5": "fbafd9ee61e7c145304eda646b97d4ab" + "md5": "3b9a70b5e4a6ec88061b6ad674a74fed" }, { "authorized_access_point": "Spiemont", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Berg" - } - ], "identifiedBy": [ { "source": "GND", @@ -1017,24 +1029,20 @@ "value": "(DE-588)133489874X" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Berg zwischen Oberlinxweiler und Niederlinxweiler, beides Ortsteile von St. Wendel im Landkreis St. Wendel, Saarland; auf dem Spiemont sich befand eine vor- oder fru\u0308hgeschichtliche Befestigungsanlage" + ] + } + ], "pid": "133489874X", "type": "bf:Place", - "md5": "52eab6ad38bcb8f425aef41f99c3b4c6" + "md5": "208a0192f6be02993f478a870bca2e49" }, { "authorized_access_point": "Platz der Republik (Hamburg)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Platz" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Park" - } - ], "identifiedBy": [ { "source": "GND", @@ -1073,17 +1081,10 @@ "variant_access_point": [ "Kaiserplatz (Hamburg)" ], - "md5": "e329684aa17692f8b54399a3ff6040fa" + "md5": "7f0af5d7c781216d92066c3435aa7f2b" }, { "authorized_access_point": "Phoenixhof (Hamburg)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gewerbehof" - } - ], "identifiedBy": [ { "source": "GND", @@ -1116,17 +1117,10 @@ "authorized_access_point": "Hamburg-Bahrenfeld" } ], - "md5": "e24b9606efe72a56b20c78623b052fa9" + "md5": "50dc1a7bc395be0b7f7f498c49feecf3" }, { "authorized_access_point": "Neues Amt Altona (Hamburg-Altona)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gewerbegeba\u0308ude" - } - ], "identifiedBy": [ { "source": "GND", @@ -1162,7 +1156,7 @@ "variant_access_point": [ "NAA" ], - "md5": "8fbec11784de7b45207836bb0d9e3f96" + "md5": "aef73bab6c6f6766f0b918e25c201cc8" }, { "authorized_access_point": "Holowaniwsk", @@ -1189,6 +1183,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Holowaniwsk&oldid=246179368" ] + }, + { + "noteType": "general", + "label": [ + "Siedlung sta\u0308dtischen Typs im zentralukrainischen Oblast Kirowohrad" + ] } ], "pid": "1334878234", @@ -1199,7 +1199,7 @@ "\u0413\u043e\u043b\u043e\u0432\u0430\u043d\u0456\u0432\u0441\u044c\u043a", "\u0413\u043e\u043b\u043e\u0432\u0430\u043d\u0435\u0432\u0441\u043a" ], - "md5": "26c49e2e7e19344f0fa00298cbee07b1" + "md5": "8f2362696d29c2819271cb33b1490a6c" }, { "authorized_access_point": "Mattituck, NY", @@ -1231,17 +1231,10 @@ ], "pid": "1334875707", "type": "bf:Place", - "md5": "33429a245bc534bab93abf612d1e1f86" + "md5": "659ba9a627a94f51aaf7eb00a1759f41" }, { "authorized_access_point": "Sankt Georg (Hainersdorf)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -1270,17 +1263,10 @@ "Pfarrkirche Heiliger Georg (Hainersdorf)", "Pfarrkirche Hl. Georg (Hainersdorf)" ], - "md5": "04367a688edcae98b6084ec91eef7490" + "md5": "ee39af0ca9e6a6086e0cfb1b31f74f01" }, { "authorized_access_point": "Sankt Donatus (Altenmarkt bei Fu\u0308rstenfeld)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -1309,17 +1295,10 @@ "Pfarrkirche Heiliger Donatus (Altenmarkt bei Fu\u0308rstenfeld)", "Pfarrkirche Hl. Donatus (Altenmarkt bei Fu\u0308rstenfeld)" ], - "md5": "0c184fb5f3adb9fdfd5abbbadc707307" + "md5": "80bb227beecdf65dd1d21655b8c748e0" }, { "authorized_access_point": "Schloss Birkenstein (Birkfeld)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - } - ], "identifiedBy": [ { "source": "GND", @@ -1344,7 +1323,7 @@ "authorized_access_point": "Birkfeld" } ], - "md5": "13f6279b1b5a731c35538538d28f9b0c" + "md5": "07ef276183a376dd14745bdb411bdd8b" }, { "authorized_access_point": "Comunita\u0300 Montana delle Prealpi Trevigiane", @@ -1383,17 +1362,10 @@ "authorized_access_point": "Venetien" } ], - "md5": "1469c78dcf93b9a18b17248496adcc13" + "md5": "d982f77895d3544ba792229823506300" }, { "authorized_access_point": "Schloss Neudau (Neudau)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - } - ], "identifiedBy": [ { "source": "GND", @@ -1418,17 +1390,10 @@ "authorized_access_point": "Neudau" } ], - "md5": "03fa849ab5ad4b50fd9376d37adb1870" + "md5": "8670e6341fc8c1f294def7b266db14cd" }, { "authorized_access_point": "Kreuzkapelle (Trier)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kapelle" - } - ], "identifiedBy": [ { "source": "GND", @@ -1446,6 +1411,14 @@ "value": "(DE-588)1334804621" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Kapelle auf dem Petrisberg" + ] + } + ], "pid": "1334804621", "type": "bf:Place", "broader": [ @@ -1461,17 +1434,10 @@ "Kreuzchen (Trier)", "Kreuzchen (Trier-Ku\u0308renz)" ], - "md5": "f98852feaa7f1114b7e8fd1bc5fd8994" + "md5": "b364a9f8405583e85f0a1c047a2895ca" }, { "authorized_access_point": "Sankt Cornelius-Kapelle (Trier)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kapelle" - } - ], "identifiedBy": [ { "source": "GND", @@ -1489,6 +1455,14 @@ "value": "(DE-588)1334804141" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Kapelle im Ortsteil Ku\u0308renz; wurde 1960 abgerissen; der Bau wurde fru\u0308her Peter Benz zugeschrieben" + ] + } + ], "pid": "1334804141", "type": "bf:Place", "broader": [ @@ -1505,17 +1479,10 @@ "St. Cornelius-Kapelle (Trier-Ku\u0308renz)", "Ju\u0308ngere Ku\u0308renzer Kapelle (Trier)" ], - "md5": "d86fe5ce9f50b4310ed335acc13ef18b" + "md5": "a54f07a85c55c70292096ef3f82b92f4" }, { "authorized_access_point": "Naturschutzgebiet Gradberg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Naturschutzgebiet" - } - ], "identifiedBy": [ { "source": "GND", @@ -1555,7 +1522,7 @@ "NSG Gradberg", "Gradberg" ], - "md5": "0d61925c469a05b0f6bbedef3065e823" + "md5": "9a9b82a13a655a3c6b93211e27e9904b" }, { "authorized_access_point": "Ostentrop", @@ -1582,6 +1549,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Ostentrop&oldid=243213300" ] + }, + { + "noteType": "general", + "label": [ + "Bis 30.06.1969 selbststa\u0308ndig, dann Ortsteil von Finnentrop (Kreis Olpe)" + ] } ], "pid": "1334789134", @@ -1591,7 +1564,7 @@ "authorized_access_point": "Finnentrop-Ostentrop" } ], - "md5": "2f5b81c86421c2b6ec079cbb0756e485" + "md5": "1c6a3c391c8ae6f4f615b6f725d0a41e" }, { "authorized_access_point": "Egloffstein-Bieberbach", @@ -1625,7 +1598,7 @@ "variant_access_point": [ "Bieberbach (Egloffstein-Bieberbach)" ], - "md5": "571bf23923f46f6a1f58e61e24620639" + "md5": "b8bdaed7880f667d6fea8753cbccbb19" }, { "authorized_access_point": "S\u00f8r-Aurdal", @@ -1652,26 +1625,20 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=S%C3%B8r-Aurdal&oldid=240707152" ] + }, + { + "noteType": "general", + "label": [ + "Kommune im norwegischen Fylke Innlandet" + ] } ], "pid": "1334784493", "type": "bf:Place", - "md5": "d3b8a4aab5f0fd0e22e4194431fd5189" + "md5": "7f779b2c464349ea5d1b84297fbade74" }, { "authorized_access_point": "Gerricusplatz 26-27 (Du\u0308sseldorf)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Ensemble" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fachwerkbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -1695,6 +1662,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_Gerresheim&oldid=242490329" ] + }, + { + "noteType": "general", + "label": [ + "Wurde bereits 1335 in einem Schenkungsvertrag urkundlich erwa\u0308hnt; Teile der urspru\u0308nglichen Holzbalken wurden nach Teilabbruch 1978 in dem Neubau wiedergenutzt" + ] } ], "pid": "1334779015", @@ -1710,7 +1683,7 @@ "variant_access_point": [ "Geba\u0308udeensemble Gerricusplatz 26-27 (Du\u0308sseldorf)" ], - "md5": "ba39b0c9f27122b96d37a20056d3975a" + "md5": "7887fabd2c965d41840654784b1eb079" }, { "authorized_access_point": "Rusdorf (Ostritz)", @@ -1737,6 +1710,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Posada_(Bogatynia)&oldid=244888515" ] + }, + { + "noteType": "general", + "label": [ + "Ortschaft in der Amtshauptmannschaft Zittau; seit 1945 Posada in der polnischen Woiwodschaft Niederschlesien" + ] } ], "pid": "1334766363", @@ -1749,7 +1728,7 @@ "variant_access_point": [ "Ru\u00dfdorf" ], - "md5": "e42bca8c0514775c39fe714827074b4e" + "md5": "8b2ba3835ddaa3383217fb4cca620bd4" }, { "authorized_access_point": "Czerwona Woda", @@ -1776,6 +1755,12 @@ "label": [ "Wikipedia - https://pl.wikipedia.org/w/index.php?title=Czerwona_Woda_(wojew%C3%B3dztwo_dolno%C5%9Bl%C4%85skie)&oldid=72559107" ] + }, + { + "noteType": "general", + "label": [ + "Dorf im Kreis Zgorzelec der polnischen Woiwodschaft Niederschlesien" + ] } ], "pid": "1334756465", @@ -1783,17 +1768,10 @@ "variant_access_point": [ "Rothwasser" ], - "md5": "d3c3b53852795dda707236f6d067b74f" + "md5": "69bc10f7bb2d8fde9c2eeb2d84f16750" }, { "authorized_access_point": "Theaterbau des The\u0301a\u0302tre des Champs-E\u0301lyse\u0301es (Paris)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Theaterbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -1827,7 +1805,7 @@ "authorized_access_point": "Paris" } ], - "md5": "af6e5f96acb06b0a5570b522cb6e8d89" + "md5": "3ab8134bda407e9c03ea6091967ba530" }, { "authorized_access_point": "Stanowitz", @@ -1854,6 +1832,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/wiki/Stanowice_(Strzegom)" ] + }, + { + "noteType": "general", + "label": [ + "1307 wurde der Ort in einem Dokument als \"Stanewicz\" erwa\u0308hnt und geho\u0308rte damals zum Herzogtum Schweidnitz. ... Stonwitz geho\u0308rte bis 1932 zum Landkreis Striegau..." + ] } ], "pid": "1334729824", @@ -1862,17 +1846,10 @@ "Stannowitz", "Stonwitz" ], - "md5": "0b2eb52f3ed0d3188408fac8c11efcea" + "md5": "a8a41fb6edd00861b7025286d0109d88" }, { "authorized_access_point": "Hung Yen", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stadt" - } - ], "identifiedBy": [ { "source": "GND", @@ -1890,6 +1867,14 @@ "value": "(DE-588)1334725756" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Hauptstadt der gleichnamigen Provinz in Nordvietnam" + ] + } + ], "pid": "1334725756", "type": "bf:Place", "broader": [ @@ -1900,17 +1885,10 @@ "variant_access_point": [ "Hu\u031bng Ye\u0302n" ], - "md5": "6f82b88b844ebddf1daa2d89d4f56903" + "md5": "eebee1460a8e212234041ab8da6660a7" }, { "authorized_access_point": "Provinz Hung Yen", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Provinz" - } - ], "identifiedBy": [ { "source": "GND", @@ -1934,6 +1912,12 @@ "label": [ "Homepage - https://hungyen.gov.vn/portal/Pages/default.aspx" ] + }, + { + "noteType": "general", + "label": [ + "Provinz in Nordvietnam" + ] } ], "pid": "1334725691", @@ -1942,22 +1926,10 @@ "Provinz Hu\u031bng Ye\u0302n", "Ti\u0309nh Hu\u031bng Ye\u0302n" ], - "md5": "b25a5e37290a4c37b7bb937325f14b9e" + "md5": "c2d56f9b39dcae925dc616b20989c7a7" }, { "authorized_access_point": "Monumento al marque\u0301s de Campo (Valencia)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Brunnen" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Denkmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -1982,17 +1954,10 @@ "authorized_access_point": "Valencia" } ], - "md5": "eafb7740dffa7cb26ce4d877f09ae82a" + "md5": "1c2691af3376dc62304b085d4b6291ad" }, { "authorized_access_point": "Kornmarkt (Luzern)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Marktplatz" - } - ], "identifiedBy": [ { "source": "GND", @@ -2017,6 +1982,12 @@ "Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://www.geo.lu.ch/map/kulturdenkmal/?FOCUS=2665895:1211586:250&BASEMAP=G", "Search.ch - https://map.search.ch/Luzern,Kornmarkt?pos=665856,211604&zoom=18" ] + }, + { + "noteType": "general", + "label": [ + "6004 Luzern. Platz in der Altstadt, davon abgehend der Rathaussteg (S), Brandga\u0308ssli und Kornmarktgasse (W), Kapellgasse und Furrengasse (O), sowie Werchlaubenga\u0308ssli (NO)" + ] } ], "pid": "1334670560", @@ -2029,7 +2000,7 @@ "authorized_access_point": "Altstadt (Luzern)" } ], - "md5": "01c4f403fd973f0b22b06cf043aa3423" + "md5": "74102840256cd860b107886bbb912ddb" }, { "authorized_access_point": "Friedrichshain (Felixsee)", @@ -2068,17 +2039,10 @@ "variant_access_point": [ "Frycowy Gaj" ], - "md5": "ae69592e422f3577803aa741611fcee5" + "md5": "db663e852b84dabc49802614e6ba3db3" }, { "authorized_access_point": "El pintor Ribera (Valencia)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Denkmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -2096,6 +2060,14 @@ "value": "(DE-588)1334670323" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ehrendenkmal fu\u0308r den Maler Jose\u0301 de Ribera" + ] + } + ], "pid": "1334670323", "type": "bf:Place", "broader": [ @@ -2107,7 +2079,7 @@ "Monument al pintor Josep de Ribera (Valencia)", "Monumento al pintor Jose\u0301 de Ribera (Valencia)" ], - "md5": "e64631a69abeff3d15acfde5b8336639" + "md5": "de719c714679c4cc0112b45733860cf0" }, { "authorized_access_point": "Friedrichshof", @@ -2146,17 +2118,10 @@ "variant_access_point": [ "Frycowy Dwor" ], - "md5": "160bc6f71a1510175ddd36f18d1bd3a7" + "md5": "66c7260a02d0ce5c4b0c3af0444ce94c" }, { "authorized_access_point": "Heiligenha\u0308uschen (Weibern, Landkreis Ahrweiler)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Bildstock" - } - ], "identifiedBy": [ { "source": "GND", @@ -2181,17 +2146,10 @@ "authorized_access_point": "Weibern (Landkreis Ahrweiler)" } ], - "md5": "e3c54fe0e3e9d0674a63087ca082f4a9" + "md5": "8f645c988466d3ceb8a4b55d4211dc56" }, { "authorized_access_point": "Mariensa\u0308ule Weibern (Weibern, Landkreis Ahrweiler)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Mariensa\u0308ule" - } - ], "identifiedBy": [ { "source": "GND", @@ -2216,7 +2174,7 @@ "authorized_access_point": "Weibern (Landkreis Ahrweiler)" } ], - "md5": "a7092cd0b87c3adb701b0d2861563b45" + "md5": "fd0ebd3a60ac1309a0fccc4a055b3ce8" }, { "authorized_access_point": "Neuhausen/Spree", @@ -2250,7 +2208,7 @@ "variant_access_point": [ "Kopan\u0301ce/Sprjewja" ], - "md5": "cd0904041baf17e2761b58e3839ffd73" + "md5": "da808d47d92c3e2d2fcf353fff0e59f9" }, { "authorized_access_point": "Frauendorf (Neuhausen/Spree)", @@ -2289,7 +2247,7 @@ "variant_access_point": [ "Dubrawka" ], - "md5": "94467162754199ed3bb4a36a9f8da992" + "md5": "db712476d13dd5f0a8c05f315652ec0a" }, { "authorized_access_point": "Eichow", @@ -2328,10 +2286,10 @@ "variant_access_point": [ "Dubje" ], - "md5": "a82d17359ed667f4ebd99faecfaf0cd3" + "md5": "e2c64307b07e756fc97ab2b1435f9f06" }, { - "authorized_access_point": "Pontelungo (Bologna)", + "authorized_access_point": "Pontelungo (Bologna) - Sfingi", "identifiedBy": [ { "source": "GND", @@ -2349,6 +2307,14 @@ "value": "(DE-588)1334658196" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Sirenen-Statuen auf der Bru\u0308cke Pontelungo in Bologna" + ] + } + ], "pid": "1334658196", "type": "bf:Place", "broader": [ @@ -2362,7 +2328,7 @@ "variant_access_point": [ "Pontelungo (Bologna)" ], - "md5": "242564ed5cab96feb7187650a6c5399e" + "md5": "242421d6766515190cd79faf38dedae2" }, { "authorized_access_point": "E\u0301causseville", @@ -2390,17 +2356,10 @@ "authorized_access_point": "Departement Manche" } ], - "md5": "a49da34e5198768fa7ded31524b5587f" + "md5": "9c949785120f2a0b518527ba7c5fee86" }, { "authorized_access_point": "Marienkirche (Wardenburg)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -2418,6 +2377,14 @@ "value": "(DE-588)133465641X" } ], + "note": [ + { + "noteType": "general", + "label": [ + "1268 erstmals urkundlich erwa\u0308hnt, heutiger Kirchenbau stammt aus dem Jahr 1578 mit Erga\u0308nzungen im 18. und 19. Jh." + ] + } + ], "pid": "133465641X", "type": "bf:Place", "broader": [ @@ -2425,7 +2392,7 @@ "authorized_access_point": "Wardenburg" } ], - "md5": "31bcecd5402fd7ae25a3abc60197698d" + "md5": "d031807816d791016892d8b7d42c6cbd" }, { "authorized_access_point": "Rieflinghausen", @@ -2452,6 +2419,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Rieflinghausen&oldid=243763184" ] + }, + { + "noteType": "general", + "label": [ + "1317 als \"Rylinchusen\" erstmals erwa\u0308hnt" + ] } ], "pid": "1334632707", @@ -2466,7 +2439,7 @@ "Rifelinchusen", "Burschafft Ryffelinghau\u00dfen" ], - "md5": "1f870dc472a6189cf6e7bbab8a55e0d6" + "md5": "86b8f827ab668ef21093b7a8952ea453" }, { "authorized_access_point": "Helden-Rieflinghausen", @@ -2493,6 +2466,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Rieflinghausen&oldid=243763184" ] + }, + { + "noteType": "general", + "label": [ + "Zum 1. Juli 1969 als Teil der Gemeinde Helden in die Stadt Attendorn eingegliedert" + ] } ], "pid": "133463209X", @@ -2507,17 +2486,10 @@ "authorized_access_point": "Attendorn-Rieflinghausen" } ], - "md5": "624813f800b88098094a5ecc1b7ab133" + "md5": "56a8141246c373c81978c90018e1e092" }, { "authorized_access_point": "Sankt-Karli-Strasse (Luzern)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -2542,6 +2514,12 @@ "Search.ch - https://search.ch/map/6004-Luzern,St.Karli-Str.?pos=664859,212246&zoom=17", "Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://www.geo.lu.ch/map/kulturdenkmal/?FOCUS=2664987:1212278:2000&BASEMAP=G" ] + }, + { + "noteType": "general", + "label": [ + "6004 Luzern. Langgezogene Strasse, teilweise parallel zum rechtsseitigen Reussufer, (gegabelt) von Geissmattstrasse in die Friedentalstrasse fu\u0308hrend. Nicht zu verwechseln mit Fortsetzung von St.-Karlibru\u0308cke zur linken Seite der Reuss (dieser Teil 6003 Luzern: https://map.search.ch/6003-Luzern,St.Karli-Str.?pos=664806,211904&zoom)" + ] } ], "pid": "133456325X", @@ -2555,22 +2533,10 @@ "St.-Karli-Strasse (Luzern)", "St. Karlistrasse (Luzern)" ], - "md5": "91cb2bab6def2cef79804c1d6674bb4c" + "md5": "8a4aaf7d317386721bc177af8c3c2215" }, { "authorized_access_point": "Pfistergasse (Luzern)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gasse" - } - ], "identifiedBy": [ { "source": "GND", @@ -2595,6 +2561,12 @@ "Search.ch - https://map.search.ch/Luzern,Pfistergasse?pos=665610,211417&zoom=17", "Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://www.geo.lu.ch/map/kulturdenkmal/?FOCUS=2665615:1211443:1000&BASEMAP=G" ] + }, + { + "noteType": "general", + "label": [ + "6003 Luzern. Gasse in der Altstadt, Verbindung von Milita\u0308rstrasse zu Philipp-Anton-von-Segesser-Platz (Burgerstrasse)" + ] } ], "pid": "1334560994", @@ -2607,17 +2579,10 @@ "authorized_access_point": "Altstadt (Luzern)" } ], - "md5": "fa83934e09f0acb453f35e059df0f227" + "md5": "a2edea97b2b870ad7ccca3af39fb7e22" }, { "authorized_access_point": "Neustadtstrasse (Luzern)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -2642,6 +2607,12 @@ "Search.ch - https://map.search.ch/Luzern,Neustadtstr.?pos=666097,210474&zoom=16", "Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://www.geo.lu.ch/map/kulturdenkmal/?FOCUS=2665987:1210348:1000&BASEMAP=G" ] + }, + { + "noteType": "general", + "label": [ + "6003 Luzern. Vom Bundesplatz aus in su\u0308d(westliche) Richtung laufende Strasse bis zur Bireggstrasse." + ] } ], "pid": "1334559805", @@ -2651,17 +2622,10 @@ "authorized_access_point": "Luzern" } ], - "md5": "51719a3ebc31845d711e6450e5a250d8" + "md5": "5f87243d6071ff59f9b3ab223760221f" }, { "authorized_access_point": "Murbacherstrasse (Luzern)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -2686,6 +2650,12 @@ "Search.ch - https://map.search.ch/Luzern,Murbacherstr.?pos=666071,211129&zoom=16", "Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://www.geo.lu.ch/map/kulturdenkmal/?FOCUS=2665999:1211098:1000&BASEMAP=G" ] + }, + { + "noteType": "general", + "label": [ + "6003 Luzern. Mit Unterbrechungen von SW (Obergrundstrasse) nach NO (Zentralstrasse) verlaufende Strasse in Luzerns Hirschmattquartier (Neustadt)." + ] } ], "pid": "1334558590", @@ -2698,17 +2668,10 @@ "authorized_access_point": "Luzern" } ], - "md5": "509664709826cad65f2251217f1f9031" + "md5": "00ed93460df4e86c60f599d6d8b65ce5" }, { "authorized_access_point": "Sankt-Leodegar-Strasse (Luzern)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -2733,6 +2696,12 @@ "Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://www.geo.lu.ch/map/kulturdenkmal/?FOCUS=2665615:1211443:1000&BASEMAP=G", "Search.ch - https://map.search.ch/Luzern,St.Leodegar-Str.?pos=666448,211966&zoom=18" ] + }, + { + "noteType": "general", + "label": [ + "6006 Luzern. Kurze West-Ost-Verbindungsstrasse zwischen Lo\u0308wenstrasse (W) und Stiftsstrasse (O), im Hofquartier Luzern" + ] } ], "pid": "1334556687", @@ -2746,17 +2715,10 @@ "St.-Leodegar-Strasse (Luzern)", "St. Leodegar-Str. (Luzern)" ], - "md5": "ffd9df76c568c600a30386f9cd620a65" + "md5": "5ece88944182b63a19dbe34384ec123b" }, { "authorized_access_point": "Santuario della Madonna del Bosco (Ozegna)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -2792,22 +2754,10 @@ "variant_access_point": [ "Madonna del Bosco (Ozegna)" ], - "md5": "745f54d03302ea46ce566641935d8d02" + "md5": "03ded0fe32efbe3174e3d2e1e79c6c95" }, { "authorized_access_point": "Weggisgasse (Luzern)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gasse" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -2831,6 +2781,12 @@ "label": [ "Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://map.search.ch/Luzern,Weggisgasse?pos=665870,211719&zoom=17; https://www.geo.lu.ch/map/kulturdenkmal/?FOCUS=2665900:1211665:1000&BASEMAP=G" ] + }, + { + "noteType": "general", + "label": [ + "6004 Luzern. Vom Hirschenplatz (SW) zum Falkenplatz (NO) fu\u0308hrende Gasse in der Altstadt Luzerns" + ] } ], "pid": "1334554218", @@ -2843,17 +2799,10 @@ "authorized_access_point": "Altstadt (Luzern)" } ], - "md5": "968276153d5a9002b9154c4022b3bd58" + "md5": "8463a807e6fe47a2ddf097238849dca5" }, { "authorized_access_point": "Gewerbegeba\u0308ude (Luzern)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gewerbegeba\u0308ude" - } - ], "identifiedBy": [ { "source": "GND", @@ -2877,6 +2826,12 @@ "label": [ "Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://map.geo.lu.ch/kulturgueter/denkmaeler/?FOCUS=2666644:1210607:560" ] + }, + { + "noteType": "general", + "label": [ + "Adresse: Tribschenstrasse 51, 6005 Luzern" + ] } ], "pid": "1334552940", @@ -2889,7 +2844,7 @@ "variant_access_point": [ "Das Gewerbegeba\u0308ude in Luzern" ], - "md5": "dda3f998b1754dbc808c191b1fa8a1c7" + "md5": "f7be10f6c8f70228c828ae87fc8ee0f4" }, { "authorized_access_point": "Le\u0301signy (Departement Seine-et-Marne)", @@ -2917,17 +2872,10 @@ "authorized_access_point": "Departement Seine-et-Marne" } ], - "md5": "e499638d4dc585343ef4589fceb45b2e" + "md5": "5c8364565c4cab06506002d1e4710074" }, { "authorized_access_point": "Junkerhaus (Weggis)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Herrenhaus" - } - ], "identifiedBy": [ { "source": "GND", @@ -2951,6 +2899,12 @@ "label": [ "Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://map.geo.lu.ch/kulturgueter/denkmaeler/?FOCUS=2674446:1209133:560; https://www.archiv-weggis.ch/2022/03/07/der-gl%C3%BCcksfall-junkerhaus/" ] + }, + { + "noteType": "general", + "label": [ + "Adresse: Hertensteinstrasse 51, 6353 Weggis." + ] } ], "pid": "1334552606", @@ -2960,17 +2914,10 @@ "authorized_access_point": "Weggis" } ], - "md5": "adb6d5feb74a6f69c432a3ad864a9012" + "md5": "1f9f409f9af9076e5453940d6db9d718" }, { "authorized_access_point": "Schloss Stockau (Reichertshofen)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - } - ], "identifiedBy": [ { "source": "GND", @@ -3006,17 +2953,10 @@ "variant_access_point": [ "Hofmarktschloss Stockau (Reichertshofen)" ], - "md5": "17a47547c1c87fb2311654ebd1c16d12" + "md5": "e9c9b3e9d1293c06a67e51fa3343214e" }, { "authorized_access_point": "Marienkirche (Ehningen)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -3040,6 +2980,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Marienkirche_(Ehningen)&oldid=241971385" ] + }, + { + "noteType": "general", + "label": [ + "Anfang des 17. Jhs nach einem Entwurf von Heinrich Schickhardt umgebaut; Glasmalereien im Chor stammen von Rudolf Yelin Anfang des 20. Jh." + ] } ], "pid": "133453666X", @@ -3054,17 +3000,10 @@ "St. Marien (Ehningen)", "Sankt Marien (Ehningen)" ], - "md5": "4192bf31530634fbcfdb67fd668f42c3" + "md5": "851b06084bfb9a800ddfbcc5a4fbdcf3" }, { "authorized_access_point": "Villenkolonie Buchschlag (Dreieich)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Villenviertel" - } - ], "identifiedBy": [ { "source": "GND", @@ -3088,6 +3027,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Villenkolonie_Buchschlag&oldid=235425024" ] + }, + { + "noteType": "general", + "label": [ + "Erbaut von 1905 bis ca. 1910." + ] } ], "pid": "1334531153", @@ -3103,7 +3048,7 @@ "authorized_access_point": "Dreieich" } ], - "md5": "1c78726288afa8ce3b48b039aeb1e088" + "md5": "70c3aa61c6fff91de7c7f539aa219557" }, { "authorized_access_point": "Oakhurst, Calif.", @@ -3130,6 +3075,12 @@ "label": [ "Wikipedia - https://en.wikipedia.org/w/index.php?title=Oakhurst,_California&oldid=1225176061" ] + }, + { + "noteType": "general", + "label": [ + "Fu\u0308r die Sacherschlie\u00dfung wird bei Splits nur diese (das ist die neueste/ju\u0308ngste) Namensform verwendet." + ] } ], "pid": "1334516766", @@ -3137,17 +3088,10 @@ "variant_access_point": [ "Fresno Flats, Calif." ], - "md5": "4bfffe586026b0cf91ea7da807455eb2" + "md5": "27a2696bf72e47244589628949da313f" }, { "authorized_access_point": "Burg Lauenstein (Ludwigsstadt)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Burg" - } - ], "identifiedBy": [ { "source": "GND", @@ -3171,6 +3115,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Burg_Lauenstein_(Frankenwald)&oldid=243193355" ] + }, + { + "noteType": "general", + "label": [ + "Mittelalterliche Ho\u0308henburg in Oberfranken" + ] } ], "pid": "1334502854", @@ -3188,17 +3138,10 @@ "Burg (Lauenstein)", "Burg und Renaissanceschloss Lauenstein (Ludwigsstadt)" ], - "md5": "b8e162acbf1c8b5fa93e54e415d155e9" + "md5": "0cb09945153707a4f82ddb8f97a7ef7a" }, { "authorized_access_point": "Pac\u0327o de Alca\u0301c\u0327ova (Lissabon)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Palast" - } - ], "identifiedBy": [ { "source": "GND", @@ -3226,17 +3169,10 @@ "variant_access_point": [ "Pac\u0327o Real (Lissabon)" ], - "md5": "5794bf79da5477e5e90c4b1f66ef4765" + "md5": "a4bbb1c3da653f3a50f8b04689dadb7d" }, { "authorized_access_point": "Vallesina", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Tal" - } - ], "identifiedBy": [ { "source": "GND", @@ -3264,17 +3200,10 @@ "variant_access_point": [ "Vallesina" ], - "md5": "49ecb3832851a4a6e40b016d407eed60" + "md5": "c84eeecc258edcb7e11232213c1aba7b" }, { "authorized_access_point": "Rathaus Barsbu\u0308ttel (Barsbu\u0308ttel)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Rathaus" - } - ], "identifiedBy": [ { "source": "GND", @@ -3311,7 +3240,7 @@ "variant_access_point": [ "Barsbu\u0308tteler Rathaus (Barsbu\u0308ttel)" ], - "md5": "b1c33956e274ad10d03031c0fef4cd3a" + "md5": "03547272d185738c7b2791a82e7d864a" }, { "authorized_access_point": "Stockhausen (Landkreis Gie\u00dfen)", @@ -3332,6 +3261,14 @@ "value": "(DE-588)1334318492" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ort im Landkreis Gie\u00dfen, Hessen; Ende 1970 nach Gru\u0308nberg eingemeindet" + ] + } + ], "pid": "1334318492", "type": "bf:Place", "broader": [ @@ -3342,17 +3279,10 @@ "authorized_access_point": "Landkreis Gie\u00dfen" } ], - "md5": "f456088145be57f5a9f3ef5ebebc249f" + "md5": "9d40e3ffb7057d8876bd616b5a4e3570" }, { "authorized_access_point": "Rathaus Gro\u00dfhansdorf (Gro\u00dfhansdorf)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Rathaus" - } - ], "identifiedBy": [ { "source": "GND", @@ -3389,7 +3319,7 @@ "variant_access_point": [ "Gro\u00dfhansdorfer Rathaus (Gro\u00dfhansdorf)" ], - "md5": "1fc6cdb81f88d22c13945f22c85ec2bb" + "md5": "1038fb6462bd5e402cbee4ec61c7d6dd" }, { "authorized_access_point": "Queckborn", @@ -3410,6 +3340,14 @@ "value": "(DE-588)1334313776" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ort im Landkreis Gie\u00dfen, Hessen; Ende 1970 nach Gru\u0308nberg eingemeindet" + ] + } + ], "pid": "1334313776", "type": "bf:Place", "broader": [ @@ -3417,17 +3355,10 @@ "authorized_access_point": "Gru\u0308nberg-Queckborn" } ], - "md5": "2585221e53ef5ed91aa9ae5bc639c309" + "md5": "a1cc04598aab19401caca56df9562c90" }, { "authorized_access_point": "Rathaus Glinde (Glinde)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Rathaus" - } - ], "identifiedBy": [ { "source": "GND", @@ -3463,7 +3394,7 @@ "variant_access_point": [ "Glinder Rathaus (Glinde)" ], - "md5": "a451bf470ebab0d98344cfd60c8a43be" + "md5": "2cd0237689c7c6fd37f978f209e70155" }, { "authorized_access_point": "Lumda", @@ -3484,6 +3415,14 @@ "value": "(DE-588)1334310661" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ort im Landkreis Gie\u00dfen, Hessen; Ende 1970 nach Gru\u0308nberg eingemeindet" + ] + } + ], "pid": "1334310661", "type": "bf:Place", "broader": [ @@ -3491,17 +3430,10 @@ "authorized_access_point": "Gru\u0308nberg-Lumda" } ], - "md5": "b53d35fd6514b00c1f48e5ff163274ba" + "md5": "8b3943572ee0faf55237c4e980fae65e" }, { "authorized_access_point": "Rathaus Reinbek (Reinbek)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Rathaus" - } - ], "identifiedBy": [ { "source": "GND", @@ -3538,7 +3470,7 @@ "variant_access_point": [ "Reinbeker Rathaus (Reinbek)" ], - "md5": "281e34304a1fd347ab60c89959c9f398" + "md5": "64d17e088b6c616571b3e412162cc676" }, { "authorized_access_point": "Lehnheim", @@ -3559,6 +3491,14 @@ "value": "(DE-588)1334300054" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ort im Landkreis Gie\u00dfen, Hessen; Ende 1971 nach Gru\u0308nberg eingemeindet" + ] + } + ], "pid": "1334300054", "type": "bf:Place", "broader": [ @@ -3566,17 +3506,10 @@ "authorized_access_point": "Gru\u0308nberg-Lehnheim" } ], - "md5": "fa5d3a9093322a7bb89ba9ea4506833a" + "md5": "2e95fb8400afa24d6cc1d97f40061ad3" }, { "authorized_access_point": "Mo\u0308hnefriedhof (Arnsberg)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Friedhof" - } - ], "identifiedBy": [ { "source": "GND", @@ -3594,6 +3527,14 @@ "value": "(DE-588)133422725X" } ], + "note": [ + { + "noteType": "general", + "label": [ + "1970 Schlie\u00dfung und seitdem allma\u0308hliche Umgestaltung des historischen Friedhofs zu einem naturnah gestalteten Park" + ] + } + ], "pid": "133422725X", "type": "bf:Place", "broader": [ @@ -3604,7 +3545,7 @@ "authorized_access_point": "Arnsberg-Neheim" } ], - "md5": "d71f572971c71627cbcad8ee5b7adbec" + "md5": "d869d013148fb543a64a5d3386ae4e73" }, { "authorized_access_point": "Furth-Arth", @@ -3635,17 +3576,10 @@ "variant_access_point": [ "Arth (Furth-Arth)" ], - "md5": "b52231f72090b105c129345b0e055fc5" + "md5": "e170aa7eb70aef604763d03bf6e2d5ca" }, { "authorized_access_point": "Holy Trinity Church (Schanghai)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -3669,6 +3603,12 @@ "label": [ "Wikipedia - https://en.wikipedia.org/w/index.php?title=Holy_Trinity_Church,_Shanghai&oldid=1177032584" ] + }, + { + "noteType": "general", + "label": [ + "Protestantische Kirche im Stadtteil Huangpu von Schanghai" + ] } ], "pid": "1334198845", @@ -3685,22 +3625,10 @@ "\u4e0a\u6d77\u5723\u4e09\u4e00\u5802", "Sha\u0300ngha\u030ci she\u0300ng sa\u0304nyi\u0304 ta\u0301ng" ], - "md5": "4a3ab3b53def7d72564b816982acdbde" + "md5": "2861f4fa1c7eb2fe991157f101bca4bb" }, { "authorized_access_point": "Stadtgarten Bad Driburg (Bad Driburg)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stadtpark" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Spielplatz" - } - ], "identifiedBy": [ { "source": "GND", @@ -3728,17 +3656,10 @@ "variant_access_point": [ "Mu\u0308hlenpforte (Bad Driburg)" ], - "md5": "1aef493e64f8bc3f7b3c222604abb549" + "md5": "27a3a8d8ca97a28c11f2bfc435051200" }, { "authorized_access_point": "Santuario della Madonna della Neve (Casto)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -3777,7 +3698,7 @@ "variant_access_point": [ "Madonna della Neve (Casto)" ], - "md5": "ce8188f645218d55c19afa9cd9d247ca" + "md5": "7ea2ddde83b20bfafd16c1bd2d380669" }, { "authorized_access_point": "Ostrov (Constant\u0323a)", @@ -3804,6 +3725,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Ostrov&oldid=239139996" ] + }, + { + "noteType": "general", + "label": [ + "Gemeinde im Kreis Constant\u0327a" + ] } ], "pid": "1334086826", @@ -3813,7 +3740,7 @@ "authorized_access_point": "Constant\u0323a" } ], - "md5": "9178fcbe64427c58cea704e4528cc0bc" + "md5": "bb1868951774314cd67cf7a73cf0296f" }, { "authorized_access_point": "S\u0327oimos\u0327", @@ -3840,6 +3767,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=%C8%98oimo%C8%99&oldid=243040757" ] + }, + { + "noteType": "general", + "label": [ + "Ort im Westen Ruma\u0308niens und geho\u0308rt zur Kleinstadt Lipova (Lippa) im Kreis Arad im Banat" + ] } ], "pid": "1334027250", @@ -3849,7 +3782,7 @@ "Schojmosch", "Schoimosch" ], - "md5": "b9b943c5900b8542359b1617e58a7712" + "md5": "7dbe54c06524ffb23fcbf0debb9cd8b3" }, { "authorized_access_point": "Brunnelaite (Donau)", @@ -3877,6 +3810,12 @@ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_von_Pl%C3%A4tzen_und_Alleen_in_der_Altstadt_von_Regensburg&oldid=246052949", "RI II,4 n. 1657, in: Regesta Imperii Online - http://www.regesta-imperii.de/id/1007-11-01_7_0_2_4_1_343_1657" ] + }, + { + "noteType": "general", + "label": [ + "Nachgewiesen bereits 1007, Standort von 2 Geho\u0308ften, beschreibt eine Wasserquelle oder einen Wasserstau-Schwall in der Donau und das zur Donau hin abfallende Gela\u0308nde." + ] } ], "pid": "1334024804", @@ -3889,7 +3828,7 @@ "variant_access_point": [ "Brunnleite (Donau)" ], - "md5": "2649c150792f0dd2ccc82886e2c031f2" + "md5": "481efd70a5717680cd4ea946985f8d45" }, { "authorized_access_point": "Radziejewo", @@ -3910,6 +3849,15 @@ "value": "(DE-588)1334011753" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Dorf in Polen", + "Fu\u0308r die Sacherschlie\u00dfung wird bei Splits nur diese (das ist die neueste/ju\u0308ngste) Namensform verwendet." + ] + } + ], "pid": "1334011753", "type": "bf:Place", "related": [ @@ -3920,7 +3868,7 @@ "variant_access_point": [ "Sonnwalde" ], - "md5": "2ea56fad3356f1d23f9881020374bbea" + "md5": "9fb783272ac0be16cb1e378249155a0c" }, { "authorized_access_point": "Sonnwalde", @@ -3941,6 +3889,15 @@ "value": "(DE-588)1334011079" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ehemalige Gemeinde im Landkreis Braunsberg; seit 1945 zu Polen geho\u0308rend (Radziejewo)", + "In der Sacherschlie\u00dfung nicht zu verwenden; fu\u0308r die Sacherschlie\u00dfung wird bei Splits nur die neueste/ju\u0308ngste Namensform verwendet." + ] + } + ], "pid": "1334011079", "type": "bf:Place", "broader": [ @@ -3948,7 +3905,7 @@ "authorized_access_point": "Radziejewo" } ], - "md5": "c197f39af5ce4e1a800031980242f8cf" + "md5": "ba70f270704d1b733d8d4d1ea1bfacb0" }, { "authorized_access_point": "Reimerswalde", @@ -3975,16 +3932,22 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Ignalin_(Lidzbark_Warmi%C5%84ski)&oldid=203537377" ] - } - ], - "pid": "1334001529", - "type": "bf:Place", + }, + { + "noteType": "general", + "label": [ + "In der Sacherschlie\u00dfung nicht zu verwenden; fu\u0308r die Sacherschlie\u00dfung wird bei Splits nur die neueste/ju\u0308ngste Namensform verwendet." + ] + } + ], + "pid": "1334001529", + "type": "bf:Place", "broader": [ { "authorized_access_point": "Ignalin" } ], - "md5": "53094192c2a133ec03c520cd543e6535" + "md5": "a3227bf3270c14662bb0686acbd9e41b" }, { "authorized_access_point": "Ignalin", @@ -4011,6 +3974,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Ignalin_(Lidzbark_Warmi%C5%84ski)&oldid=203537377" ] + }, + { + "noteType": "general", + "label": [ + "Fu\u0308r die Sacherschlie\u00dfung wird bei Splits nur diese (das ist die neueste/ju\u0308ngste) Namensform verwendet." + ] } ], "pid": "1333989954", @@ -4025,7 +3994,7 @@ "Ignalin (Lidzbark Warmin\u0301ski)", "Reimerswalde" ], - "md5": "22db906d622745022d339a39484414ea" + "md5": "70594e576c877cb7c04e247baf0aa514" }, { "authorized_access_point": "Meschede-Frielinghausen", @@ -4064,7 +4033,7 @@ "variant_access_point": [ "Frielinghausen (Meschede)" ], - "md5": "14ab70c5914175d95a1b9adc8dcc13ca" + "md5": "a7823461786093a073943cba1313a1db" }, { "authorized_access_point": "Tolla", @@ -4091,6 +4060,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Tolla&oldid=239496022" ] + }, + { + "noteType": "general", + "label": [ + "Gemeinde im franzo\u0308sischen De\u0301partement Corse-du-Sud in der Region Korsika" + ] } ], "pid": "1333582501", @@ -4098,7 +4073,7 @@ "variant_access_point": [ "Todda" ], - "md5": "7ab27b6c97d94ede6db740741684cc81" + "md5": "05f1b8df069ec8915b4c82ffdf4e1bc3" }, { "authorized_access_point": "Bystrez", @@ -4126,6 +4101,12 @@ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Bystrez_(Werchowyna)&oldid=223341029", "Geonames - https://www.geonames.org/711003/bystrets.html" ] + }, + { + "noteType": "general", + "label": [ + "Dorf in der ukrainischen Oblast Iwano-Frankiwsk, westlich vom Rajonzentrum Werchowyna" + ] } ], "pid": "1333570511", @@ -4134,17 +4115,10 @@ "Bystrec\u02b9", "Bystrets" ], - "md5": "4d8be98fa1c1d2934e9438bafe46ba16" + "md5": "d0f01d003904c89767b63945c2924483" }, { "authorized_access_point": "Holzheim (Horevun, Wu\u0308stung)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wu\u0308stung" - } - ], "identifiedBy": [ { "source": "GND", @@ -4172,17 +4146,10 @@ "variant_access_point": [ "Wu\u0308stung Holzheim" ], - "md5": "2d2015dca53e90fc08c886fd6ca4cdc7" + "md5": "3ad25accbcee91d0a118a6f98cfb3b16" }, { "authorized_access_point": "Teubnitz", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wu\u0308stung" - } - ], "identifiedBy": [ { "source": "GND", @@ -4208,17 +4175,10 @@ "Wu\u0308stung Teubentz", "Teubnitz (Ahornthal)" ], - "md5": "8fdc58464e622759f96573cf7802e7ac" + "md5": "903b071ea5f2639514479ea450b38bc9" }, { "authorized_access_point": "Siedlung Bornheimer Hang (Frankfurt am Main)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wohnsiedlung" - } - ], "identifiedBy": [ { "source": "GND", @@ -4259,7 +4219,7 @@ "Siedlung Bornheimer Hang (Frankfurt-Bornheim)", "Ernst-May-Siedlung (Frankfurt-Bornheim)" ], - "md5": "1e9aeec4c83824784b8a4cabd8dfc9b4" + "md5": "1abff8e635094c3e5b221c6b3fdd6d23" }, { "authorized_access_point": "Burla\u0306nes\u0327ti", @@ -4287,6 +4247,12 @@ "GeoNames - https://www.geonames.org/618476/burlanesti.html", "Wikipedia - https://ro.wikipedia.org/w/index.php?title=Burl%C4%83ne%C8%99ti,_Edine%C8%9B&oldid=16192546" ] + }, + { + "noteType": "general", + "label": [ + "Dorf, raion Edinet\u0326" + ] } ], "pid": "1333315902", @@ -4295,7 +4261,7 @@ "Burlaneshti", "Burlaneshty" ], - "md5": "b59a49600cf4c5f325d85ef779412518" + "md5": "2ed110e0bc2bb562cc327d0070fb7d11" }, { "authorized_access_point": "Altenkunstadt-Trebitzmu\u0308hle", @@ -4326,7 +4292,7 @@ "variant_access_point": [ "Trebitzmu\u0308hle (Altenkunstadt-Trebitzmu\u0308hle)" ], - "md5": "85424583480f933cc75641a103afe443" + "md5": "2acb7aabed948ddf29f89c166f5a5f7a" }, { "authorized_access_point": "Bravicea", @@ -4353,21 +4319,20 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Bravicea&oldid=242048890" ] + }, + { + "noteType": "general", + "label": [ + "Gemeinde im Rajon Ca\u0306la\u0306ras\u0326i, Republik Moldau" + ] } ], "pid": "1333255853", "type": "bf:Place", - "md5": "090c1c5235babc944fd9ac895c6a05ad" + "md5": "b423de9ab2c560d67fea72766768fe6f" }, { "authorized_access_point": "Evangelische Reformationsgeda\u0308chtniskirche (Egloffstein)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -4409,17 +4374,10 @@ "Reformationsgeda\u0308chtniskirche (Egloffstein)", "Reformationsgeda\u0308chtniskirche (Egloffstein-Bieberbach)" ], - "md5": "853b8afe3a09d4e039f1ba6bef878244" + "md5": "bc0b4168916671bf5a2ec4c71ac51713" }, { "authorized_access_point": "Sankt Georg (Wolfersgru\u0308n)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -4457,7 +4415,7 @@ "Filialkirche Sankt Georg (Wolfersgru\u0308n)", "Katholische Filialkirche Sankt Georg (Wolfersgru\u0308n)" ], - "md5": "2ed191412af8520bb56d89e4b5ba0034" + "md5": "010294df352c30c147213fa8ef688a16" }, { "authorized_access_point": "Thala", @@ -4491,7 +4449,7 @@ "variant_access_point": [ "Talah" ], - "md5": "62c63579ff76d5da0a35e65236f682ac" + "md5": "2f3e11a9e1ceb0757d2ec975b023f81e" }, { "authorized_access_point": "Beaumont (Departement Yonne)", @@ -4527,7 +4485,7 @@ "authorized_access_point": "Departement Yonne" } ], - "md5": "d3e7906d7c4e3577f445d72b51ac234b" + "md5": "3e0958e9f241c6096469361f51f3b9d9" }, { "authorized_access_point": "Krylos", @@ -4555,6 +4513,12 @@ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Krylos&oldid=244798100", "Geonames - http://www.geonames.org/703893/krylos.html" ] + }, + { + "noteType": "general", + "label": [ + "Ort in der Ukraine (Oblast Ivano-Frankivs\u02b9k, Ivano-Frankivs\u02b9kyj rajon)" + ] } ], "pid": "1332769349", @@ -4563,17 +4527,10 @@ "Krilos", "Kry\u0142os" ], - "md5": "6f226e6b7dc429639a6d536b50880ab7" + "md5": "a77095263ac672f8ee983c62184c7b69" }, { "authorized_access_point": "Slierbach (Wu\u0308stung)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wu\u0308stung" - } - ], "identifiedBy": [ { "source": "GND", @@ -4597,6 +4554,12 @@ "label": [ "RIplus Regg. Bamberg n. 39, in: Regesta Imperii Online - http://www.regesta-imperii.de/id/fffc7ec3-2a09-4f7b-a1c6-b0b415fe26b2" ] + }, + { + "noteType": "general", + "label": [ + "Wu\u0308stung bei Forchheim-Burk" + ] } ], "pid": "1332757375", @@ -4609,7 +4572,7 @@ "variant_access_point": [ "Wu\u0308stung Slierbach" ], - "md5": "b92ce5f375562b025697f95ae9840bcf" + "md5": "9c694f114d8b9eaffbdbe04283923d6e" }, { "authorized_access_point": "Durihin", @@ -4636,11 +4599,17 @@ "label": [ "RI II,4 n. 1653, in: Regesta Imperii Online - http://www.regesta-imperii.de/id/1007-11-01_3_0_2_4_1_339_1653" ] + }, + { + "noteType": "general", + "label": [ + "Mittelalterlicher Gau" + ] } ], "pid": "1332755666", "type": "bf:Place", - "md5": "9c09af1d515fe9d79e6afe86701b2496" + "md5": "01d42b3d4a4dcf34012ada9813ab8985" }, { "authorized_access_point": "Su\u0308lchgau", @@ -4667,6 +4636,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=S%C3%BClchgau&oldid=208578053" ] + }, + { + "noteType": "general", + "label": [ + "Mittelalterlicher Gau" + ] } ], "pid": "1332749054", @@ -4677,7 +4652,7 @@ "Sulichkewe", "Su\u0308lichgau" ], - "md5": "a81b60275126d56a112f85fe8becedf2" + "md5": "540ffebfb4588095134435ae3fec3a14" }, { "authorized_access_point": "Nagoldgau", @@ -4704,6 +4679,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Nagoldgau&oldid=215319373" ] + }, + { + "noteType": "general", + "label": [ + "Fru\u0308hmittelalterlicher Gau im Herzogtum Schwaben" + ] } ], "pid": "1332747108", @@ -4712,7 +4693,7 @@ "Nagoldgouw", "Nagaltgouwe" ], - "md5": "0b637672c570fc3e58b9dba5d3489b62" + "md5": "f0a8d5d4a96550033e1f4a1bae8bcf66" }, { "authorized_access_point": "Glehuntra", @@ -4739,11 +4720,17 @@ "label": [ "RIplus Regg. Bamberg n. 51, in: Regesta Imperii Online - http://www.regesta-imperii.de/id/f8a73e64-64db-4c07-8d84-284a227be527" ] + }, + { + "noteType": "general", + "label": [ + "Mittelalterlicher Gau" + ] } ], "pid": "1332742351", "type": "bf:Place", - "md5": "5e5edae349e97fcf8e73ba5e185328d0" + "md5": "dba33238fd4c3fe9da41453b20e3b4f0" }, { "authorized_access_point": "Riesgau", @@ -4770,6 +4757,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Riesgau&oldid=226471032" ] + }, + { + "noteType": "general", + "label": [ + "Gau im Nordosten des mittelalterlichen Stammesherzogtums Schwaben" + ] } ], "pid": "1332735002", @@ -4777,7 +4770,7 @@ "variant_access_point": [ "Rezia" ], - "md5": "186196cc90624949c43ce59d1c7370b5" + "md5": "4134b1e171f80a9624fd729c318f832c" }, { "authorized_access_point": "Salzburggau", @@ -4804,11 +4797,17 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Salzburggau&oldid=225169888" ] + }, + { + "noteType": "general", + "label": [ + "Mittelalterlicher Gau, ab dem 6. Jahrhundert nachgewiesen" + ] } ], "pid": "1332734863", "type": "bf:Place", - "md5": "6bdec602bb6281c152de101f14933b17" + "md5": "3e5f829cb0c83ff9a4f84f33020a8191" }, { "authorized_access_point": "Mattiggau", @@ -4835,11 +4834,17 @@ "label": [ "RI II,4 n. 1841, in: Regesta Imperii Online - http://www.regesta-imperii.de/id/1014-06-21_1_0_2_4_1_622_1841" ] + }, + { + "noteType": "general", + "label": [ + "Mittelalterliches Gau" + ] } ], "pid": "133273457X", "type": "bf:Place", - "md5": "7b72f70a14e2dc30ceff0fdccbd731d3" + "md5": "e591f29ce2f73db16c3720e1a6893198" }, { "authorized_access_point": "Donaugau", @@ -4866,11 +4871,17 @@ "label": [ "RI In. 598, in: Regesta Imperii Online - http://www.regesta-imperii.de/id/0815-12-03_1_0_1_1_0_1483_598" ] + }, + { + "noteType": "general", + "label": [ + "Mittelalterlicher Gau" + ] } ], "pid": "1332733751", "type": "bf:Place", - "md5": "5ccd484acfa55fe5f40f96f64daf042a" + "md5": "37cb6f6ee246866d9a2a4dd998472db5" }, { "authorized_access_point": "Kelsgau", @@ -4897,6 +4908,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Kelsgau&oldid=241651452" ] + }, + { + "noteType": "general", + "label": [ + "Erstmalige Erwa\u0308hnung 844; Gau im Fru\u0308hmittelalter" + ] } ], "pid": "1332732577", @@ -4904,17 +4921,10 @@ "variant_access_point": [ "Chelesgau" ], - "md5": "eb3454ac083a84966b303db7115fe82b" + "md5": "672ffe2cb24c5039146e3f894df36979" }, { "authorized_access_point": "Monte San Primo", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Berg" - } - ], "identifiedBy": [ { "source": "GND", @@ -4938,6 +4948,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Monte_San_Primo&oldid=229134400" ] + }, + { + "noteType": "general", + "label": [ + "Berg in der Lombardei, Provinz Como" + ] } ], "pid": "1332731430", @@ -4950,7 +4966,7 @@ "variant_access_point": [ "San Primo (Berg)" ], - "md5": "cad2266fe4ca451ac816425ca3644bdc" + "md5": "e08f42c759643e65828b5ee532fb3863" }, { "authorized_access_point": "Brackmills", @@ -4989,7 +5005,7 @@ "variant_access_point": [ "Northampton-Brackmills" ], - "md5": "242142aae08ff0c92c14d6cc537c35fe" + "md5": "47d099e5946173825c281db59e2ec620" }, { "authorized_access_point": "Adwick le Street", @@ -5016,6 +5032,12 @@ "label": [ "GeoNames - https://www.geonames.org/2657658/adwick-le-street.html" ] + }, + { + "noteType": "general", + "label": [ + "Dorf in der Metropolitanstadt Doncaster" + ] } ], "pid": "1332669689", @@ -5028,7 +5050,7 @@ "variant_access_point": [ "Doncaster- Adwick le Street" ], - "md5": "6e8b47dfacd661122b4773ab6e60b5ce" + "md5": "abf952bde3c0bd790f7fc9a5256e3d6f" }, { "authorized_access_point": "My\u0301tina", @@ -5055,6 +5077,13 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=M%C3%BDtina&oldid=240251478" ] + }, + { + "noteType": "general", + "label": [ + "Ortsteil von Lipova\u0301 (Lindenhau) im Okres Cheb (Bezirk Eger) in Tschechien.", + "Fu\u0308r die Sacherschlie\u00dfung wird bei Splits nur diese (das ist die neueste/ju\u0308ngste) Namensform verwendet." + ] } ], "pid": "1332451578", @@ -5067,7 +5096,7 @@ "variant_access_point": [ "Alt-Albenreuth" ], - "md5": "cdb1dde18755b13050f3ed648461c565" + "md5": "cd0d053e14974c07f97d3e8bbec1fcd0" }, { "authorized_access_point": "Borrello", @@ -5094,11 +5123,17 @@ "label": [ "GeoNames - https://www.geonames.org/3181856/borello.html" ] + }, + { + "noteType": "general", + "label": [ + "Ort in den Abruzzen, Provinz Chieti" + ] } ], "pid": "1332353436", "type": "bf:Place", - "md5": "5feb7b91cf1dd3213443e1db1a421cb3" + "md5": "14ac4f87aa9469862f43b656c4d8691b" }, { "authorized_access_point": "Olmeda de la Cuesta", @@ -5126,11 +5161,17 @@ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Olmeda_de_la_Cuesta&oldid=226226107", "GeoNames - https://www.geonames.org/6357483/olmeda-de-la-cuesta.html" ] + }, + { + "noteType": "general", + "label": [ + "Ort in der Provinz Cuenca, Kastilien- La Mancha" + ] } ], "pid": "1332057209", "type": "bf:Place", - "md5": "ddfaa5275f4662c24d47fcd1032f96fe" + "md5": "b7820619c6e3d5bb559d305d0aa30c58" }, { "authorized_access_point": "Bluc\u030cina", @@ -5158,17 +5199,10 @@ "Lautschu\u0308tz", "Lanteschitz" ], - "md5": "996a7ff22437aa57a2754b336061cd2a" + "md5": "c6f603253e16545c74d49cad5b3a57ac" }, { "authorized_access_point": "Amt S\u00f8nderjylland", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Amt" - } - ], "identifiedBy": [ { "source": "GND", @@ -5192,6 +5226,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=195150922" ] + }, + { + "noteType": "general", + "label": [ + "S\u00f8nderjyllands Amt war eine da\u0308nische Amtskommune." + ] } ], "pid": "1332031374", @@ -5224,17 +5264,10 @@ "S\u00f8nderjyllands Amtskommune", "Amtskommune S\u00f8nderjylland" ], - "md5": "45b056d7cce11c620c58e200463b0f04" + "md5": "ead4d53eacc793f97d684ea8fc70cd9a" }, { "authorized_access_point": "Europa-Viertel am Waldhu\u0308gel (Rheine)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wohngebiet" - } - ], "identifiedBy": [ { "source": "GND", @@ -5258,6 +5291,12 @@ "label": [ "Homepage - https://europa-viertel-rheine.de/" ] + }, + { + "noteType": "general", + "label": [ + "Wohngebiet auf dem Gela\u0308nde der ehemaligen Damloup-Kaserne in Rheine, dessen Vermarktung 2024 abgeschlossen ist" + ] } ], "pid": "1331729661", @@ -5272,17 +5311,10 @@ "Europaviertel (Rheine)", "EuVie (Rheine)" ], - "md5": "676cfbe467c17e74b951e73946954a6e" + "md5": "bb4fbb1e88083a60c240137b02419e32" }, { "authorized_access_point": "Bas\u030cc\u030cars\u030cija (Sarajevo)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Platz" - } - ], "identifiedBy": [ { "source": "GND", @@ -5318,17 +5350,10 @@ "variant_access_point": [ "Hauptmarkt (Sarajevo)" ], - "md5": "2eeb253d743d2d16bad5b5ade7f6e5ce" + "md5": "a1ff5a6f104b0a075e87fdb59697dd47" }, { "authorized_access_point": "Crkva Svetog Nikole (Borci, Kotor Varos\u030c)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -5356,7 +5381,7 @@ "variant_access_point": [ "Nikolauskirche (Borci, Kotor Varos\u030c)" ], - "md5": "7bb8d6b00d05923fefb5ac90e458401e" + "md5": "2b790a09c09d2ec9249a37d516f911b3" }, { "authorized_access_point": "Borci (Kotor Varos\u030c)", @@ -5392,7 +5417,7 @@ "authorized_access_point": "Kotor Varos\u030c" } ], - "md5": "5e41ecffadf62773f4430525ed15df07" + "md5": "1665952a750df31bebfcebdc0eeb0ccc" }, { "authorized_access_point": "Nowogro\u0301d", @@ -5420,6 +5445,12 @@ "GeoNames - https://www.geonames.org/763600/nowogrod.html", "Wikipedia - https://pl.wikipedia.org/w/index.php?title=Nowogr%C3%B3d&oldid=72647619" ] + }, + { + "noteType": "general", + "label": [ + "Stadt in Polen" + ] } ], "pid": "1331601630", @@ -5429,7 +5460,7 @@ "authorized_access_point": "\u0141omz\u0307a (Powiat)" } ], - "md5": "cdb110e283439e9856ad881100f43af4" + "md5": "ddeb2ba845964f79758205a720d28653" }, { "authorized_access_point": "Attel-Gabersee", @@ -5456,6 +5487,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Gabersee&oldid=202232396" ] + }, + { + "noteType": "general", + "label": [ + "Ehemals selbststa\u0308ndige Gemeinde; durch die Eingemeindung von Attel in die Stadt Wasserburg am 01.05.1978 Ortsteil von Wasserburg" + ] } ], "pid": "1331514282", @@ -5476,7 +5513,7 @@ "variant_access_point": [ "Gabersee (Attel-Gabersee)" ], - "md5": "0b8122d006d2b11fc2ad93bd1bb56eb9" + "md5": "aa77f4673cfbd6d1019f7f42cea4fc2d" }, { "authorized_access_point": "Attel", @@ -5497,6 +5534,14 @@ "value": "(DE-588)1331513952" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ehemals selbststa\u0308ndige Gemeinde; seit 01.05.1978 Ortsteil von Wasserburg" + ] + } + ], "pid": "1331513952", "type": "bf:Place", "broader": [ @@ -5504,7 +5549,7 @@ "authorized_access_point": "Wasserburg-Attel" } ], - "md5": "604b7e054d7728796a242180610065cd" + "md5": "ab9a02ccec1699a87879ba5dfcd3da64" }, { "authorized_access_point": "Trogen-Ullitz", @@ -5535,17 +5580,10 @@ "variant_access_point": [ "Ullitz (Trogen-Ullitz)" ], - "md5": "c46e5b75026014d47025bc529e02f135" + "md5": "0dfdc98352808201332676de11bb85b5" }, { "authorized_access_point": "Fetislam", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Festung" - } - ], "identifiedBy": [ { "source": "GND", @@ -5582,7 +5620,7 @@ "variant_access_point": [ "Tvr\u0111ava Fetislam" ], - "md5": "88836b79e9b936777a83d56a0d16f2f4" + "md5": "2e8202cbccc41e50df09ada0449f5d6a" }, { "authorized_access_point": "Opato\u0301wek", @@ -5621,7 +5659,7 @@ "variant_access_point": [ "Opatowek" ], - "md5": "aabd44e8cbfd9d0a9518ba1f7e37404b" + "md5": "58d7c08a4705d4d291b92987008f9714" }, { "authorized_access_point": "Forstern-Preisendorf", @@ -5652,7 +5690,7 @@ "variant_access_point": [ "Preisendorf (Forstern-Preisendorf)" ], - "md5": "591a410a29ad2ad03e01e8e6292d20af" + "md5": "5694a82b55d6aec8fa795e3399a272e2" }, { "authorized_access_point": "Zinjaki", @@ -5692,7 +5730,7 @@ "variant_access_point": [ "Zinyaki" ], - "md5": "cc845d165f6e83377eaaf7a29441bb2e" + "md5": "aa84149a22aae05f6593037ab09057a5" }, { "authorized_access_point": "Gana (Praszka)", @@ -5732,7 +5770,7 @@ "authorized_access_point": "Woiwodschaft Oppeln" } ], - "md5": "fd2d119be56a826dcd7c22a2f38dc667" + "md5": "8911cd77e9b722d689d9b927a3a88b18" }, { "authorized_access_point": "Helmbrechts-Hampelhof", @@ -5763,17 +5801,10 @@ "variant_access_point": [ "Hampelhof (Helmbrechts-Hampelhof)" ], - "md5": "2b4656440bc36b1c7fe615467fc73877" + "md5": "65a2242d28983dca642f753a618176a1" }, { "authorized_access_point": "Denkmal der Helden des Ghettos (Warschau)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Denkmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -5797,6 +5828,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Warschauer_Ghetto-Ehrenmal&oldid=211224290" ] + }, + { + "noteType": "general", + "label": [ + "Errichtet zum Gedenken des Aufstands im Warschauer Ghetto" + ] } ], "pid": "1330428420", @@ -5810,17 +5847,10 @@ "Warschauer Ghetto-Ehrenmal (Warschau)", "Pomnik Bohatero\u0301w Getta (Warschau)" ], - "md5": "d5490254082cc8cd0c5fff0bb7925b7b" + "md5": "43290b022ac80be47976e43dc18ac0ac" }, { "authorized_access_point": "Wassermu\u0308hle Nu\u0308tschau (Travenbru\u0308ck)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wassermu\u0308hle" - } - ], "identifiedBy": [ { "source": "GND", @@ -5844,6 +5874,12 @@ "label": [ "Kreis Stormarn (Kreisarchiv Stormarn) - https://www.stormarnlexikon.de/wassermuehlenuetschau/" ] + }, + { + "noteType": "general", + "label": [ + "Ehemalige Wassermu\u0308hle in Nu\u0308tschau, einem Ortsteil von Travenbru\u0308ck im Kreis Stornmarn, Schlewsig-Holstein; Kauf und Nutzung durch den Fotografen Matthias Heitmann im Jahre 1992; Restauration und Umbau zum Wohnhaus." + ] } ], "pid": "1330324463", @@ -5859,17 +5895,10 @@ "variant_access_point": [ "Wassermu\u0308hle Nu\u0308tschau (Travenbru\u0308ck-Nu\u0308tschau)" ], - "md5": "e91d4e7a96e470e54624c475b4770e03" + "md5": "5bebbdac5e1ae3a3dcf2f5be4f74b11c" }, { "authorized_access_point": "Drahtmu\u0308hle Gro\u0308nwohld (Gro\u0308nwohld)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Papiermu\u0308hle" - } - ], "identifiedBy": [ { "source": "GND", @@ -5903,22 +5932,10 @@ "authorized_access_point": "Gro\u0308nwohld" } ], - "md5": "dbcf29c8c89fe37754c88ec20391b83e" + "md5": "452d59264d657db6aafb6a0294a7f18d" }, { "authorized_access_point": "Fasanenhof (Jersbek)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gaststa\u0308tte" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Beherbergungsbetrieb" - } - ], "identifiedBy": [ { "source": "GND", @@ -5956,22 +5973,10 @@ "Landgasthaus Zum Fasanenhof (Jersbek)", "Landgasthof Zum Fasanenhof (Jersbek)" ], - "md5": "401502d75c9aef12dfa30c1df0bb4334" + "md5": "f47090749dc79f1da30f4358738257cd" }, { "authorized_access_point": "TOP-Grenzwanderweg Schifflersgrund", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Rundwanderweg" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Grenzwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -5996,6 +6001,12 @@ "Naturparkzentrum und Verwaltung - https://www.naturpark-ehw.de/weg/top-grenzwanderweg-schifflersgrund", "Grenzmuseum Schifflersgrund - https://www.grenzmuseum.de/lernen/bildungsort/grenzwanderweg" ] + }, + { + "noteType": "general", + "label": [ + "Rundwanderweg entlang der innerdeutschen Grenze zwischen Asbach-Sickendorf und Bad Sooden-Allendorf; ca. 10,9 km" + ] } ], "pid": "1330177274", @@ -6012,17 +6023,10 @@ "Grenzwanderweg Schifflersgrund", "Rundwanderweg Schifflersgrund" ], - "md5": "06b748c011c45a523593e168466f68bd" + "md5": "21a700fa395c4339a9b89db32642bb86" }, { "authorized_access_point": "Orchideenbrunnen (Jena)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Brunnen" - } - ], "identifiedBy": [ { "source": "GND", @@ -6046,6 +6050,12 @@ "label": [ "Stadtverwaltung Jena - https://beteiligung.jena.de/sites/default/files/2024-02/Aufarbeitung_Geschichte%20des%20Orchideenbrunnen_B%C3%BCrgerbudget%20Jena_0.pdf" ] + }, + { + "noteType": "general", + "label": [ + "Brunnen und Metallplastik auf dem Eichplatz in Jena; Demontage im Jahr 2000." + ] } ], "pid": "1329890205", @@ -6058,7 +6068,7 @@ "variant_access_point": [ "Jenaer Orchideenbrunnen (Jena)" ], - "md5": "bb755e3e55cfdaf6bc070221f3481421" + "md5": "dfaef0cfbed4d44dce19328a0c2be581" }, { "authorized_access_point": "Merville (Departement Nord)", @@ -6086,6 +6096,12 @@ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Merville_(Nord)&oldid=246093496", "GeoNames - https://www.geonames.org/6438365/merville.html" ] + }, + { + "noteType": "general", + "label": [ + "Gemeinde im De\u0301partement Nord, Frankreich" + ] } ], "pid": "1329430875", @@ -6095,7 +6111,7 @@ "authorized_access_point": "Departement Nord" } ], - "md5": "66eda11c5443a102146a33078dd28a2a" + "md5": "137806da8cba11e4cddfb5fdbaf7057e" }, { "authorized_access_point": "Smolotely", @@ -6121,17 +6137,10 @@ "variant_access_point": [ "Smolotel" ], - "md5": "e01dc1cc1a65433a11e8ca0b1b4a19e9" + "md5": "da2d82da4916f0846d0b892086beb8df" }, { "authorized_access_point": "Oberes Schloss (Mitwitz)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - } - ], "identifiedBy": [ { "source": "GND", @@ -6156,17 +6165,10 @@ "authorized_access_point": "Mitwitz" } ], - "md5": "616f3f9d464e32e89c6b90ceebcdcc59" + "md5": "d64c942967802b1639bb26611da24664" }, { "authorized_access_point": "Straubelstra\u00dfe (Po\u0308\u00dfneck)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -6184,6 +6186,14 @@ "value": "(DE-588)1302571524" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stra\u00dfe in der Innenstadt von Po\u0308\u00dfneck im Saale-Orla-Kreis, Thu\u0308ringen" + ] + } + ], "pid": "1302571524", "type": "bf:Place", "broader": [ @@ -6194,7 +6204,7 @@ "variant_access_point": [ "Schulstra\u00dfe (Po\u0308\u00dfneck)" ], - "md5": "7d4035e63e8a60fb7db46cedc2cfd4e9" + "md5": "e2d1bcb3050a517a7984353c5438b8ff" }, { "authorized_access_point": "Lindow (Kreis Oststernberg)", @@ -6221,6 +6231,12 @@ "label": [ "Heimatkreis Oststernberg e.V. (Hrsg.): Oststernberger Heimatbrief 2/2013 - https://oststernberg.de/wp-content/uploads/2016/02/Heimatbrief-2-2013.pdf" ] + }, + { + "noteType": "general", + "label": [ + "Das Dorf Lindow im ehemaligen Kreis Ost-Sternberg wurde im Jahre 1939 gemeinsam mit den umliegenden Orten Wandern und Gro\u00df Kirschbaum zum Truppenu\u0308bungsplatz bestimmt und sa\u0308mtliche Einwohner*innen umgesiedelt." + ] } ], "pid": "1300397128", @@ -6230,7 +6246,7 @@ "authorized_access_point": "Kreis Oststernberg" } ], - "md5": "f6aec753d4484e8a89b208fd6f092d22" + "md5": "c7688f7a51310b6dc8e7181ab434bbe8" }, { "authorized_access_point": "Leipzig-Mockau-Su\u0308d", @@ -6257,6 +6273,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=230671556" ] + }, + { + "noteType": "general", + "label": [ + "Ortsteil des Leipziger Stadtteils Mockau im Stadtbezirk Nordost" + ] } ], "pid": "1299383890", @@ -6272,7 +6294,7 @@ "variant_access_point": [ "Mockau-Su\u0308d (Leipzig)" ], - "md5": "be5cfb151f26783eeb1cf32dd58b032e" + "md5": "aa90a462fa8013cbe2bd3943944a761f" }, { "authorized_access_point": "Turza Wielka", @@ -6299,6 +6321,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=217307184" ] + }, + { + "noteType": "general", + "label": [ + "Dorf in der polnischen Woiwodschaft Ermland-Masuren" + ] } ], "pid": "129673143X", @@ -6308,17 +6336,10 @@ "authorized_access_point": "Gro\u00df Tauersee" } ], - "md5": "31f5b8017dd770aa865d532c0f1fe86c" + "md5": "fe264bda7119c96dc81587f214e1eab0" }, { "authorized_access_point": "Goethe-Erlebnisweg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -6343,7 +6364,13 @@ "Verbandsbu\u0308ro in Apolda - https://www.weimarer-land.travel/zukunft/goethe-erlebnisweg/", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Goethe-Erlebnisweg&oldid=234912759" ] - } + }, + { + "noteType": "general", + "label": [ + "Wanderweg zwischen Weimar und Gro\u00dfkochberg auf den Spuren Goethes; 29 km lang" + ] + } ], "pid": "1295131781", "type": "bf:Place", @@ -6355,7 +6382,7 @@ "authorized_access_point": "Uhlsta\u0308dt-Kirchhasel- Gro\u00dfkochberg" } ], - "md5": "3a8fe015fa46c04a301ff4ab4a109bda" + "md5": "ba913ca3ea27c7155f6ed7acb00e2a47" }, { "authorized_access_point": "Bollingstedt-Gammellund", @@ -6382,6 +6409,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=229557818" ] + }, + { + "noteType": "general", + "label": [ + "Ehemals selbststa\u0308ndige Gemeinde; seit 1. August 1976 Eingemeindung nach Bollingstedt im Kreis Schleswig-Flensburg, Schleswig-Holstein." + ] } ], "pid": "1287837611", @@ -6394,7 +6427,7 @@ "authorized_access_point": "Gammellund" } ], - "md5": "190249772f56f085481c52864e4543f3" + "md5": "6f70b319b2013ac7b0b7eda5c4e494d8" }, { "authorized_access_point": "Leipzig-Stu\u0308nz", @@ -6441,22 +6474,10 @@ "variant_access_point": [ "Stu\u0308nz (Leipzig)" ], - "md5": "7f7c9a8643dea2c7d2e006a4692ff358" + "md5": "176be9204b3edaa1974b2144bcc7bfdf" }, { "authorized_access_point": "Alte Sust (Horgen)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Museumsbau" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Verkehrsbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -6474,6 +6495,14 @@ "value": "(DE-588)1284341119" } ], + "note": [ + { + "noteType": "general", + "label": [ + "erbaut 1552, Umbau mit steilem Walmdach um 1780; Einrichtung als ortsgeschichtliches Museum 1956-1966" + ] + } + ], "pid": "1284341119", "type": "bf:Place", "broader": [ @@ -6484,7 +6513,7 @@ "variant_access_point": [ "Sust (Horgen)" ], - "md5": "7b4e3172f1c0fba13f4e5f1c42ab4949" + "md5": "d56eac8cbfd11e9623c0e484b973417a" }, { "authorized_access_point": "Fehmarn-Gahlendorf", @@ -6511,6 +6540,12 @@ "label": [ "GOV - http://gov.genealogy.net/item/show/GAHORFJO54PK" ] + }, + { + "noteType": "general", + "label": [ + "Ehemals selbststa\u0308ndiges Dorf; seit 1. Januar 2003 Stadtteil der Stadt Fehmarn im Kreis Ostholstein, Schleswig-Holstein." + ] } ], "pid": "1282328816", @@ -6523,17 +6558,10 @@ "authorized_access_point": "Gahlendorf" } ], - "md5": "713704a0fea2512485777fdb506760bf" + "md5": "0f6c98431fe7ab6ef9142a975375c4a7" }, { "authorized_access_point": "E\u0307glis\u030ckiai-Anduliai", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gra\u0308berfeld" - } - ], "identifiedBy": [ { "source": "GND", @@ -6561,17 +6589,10 @@ "variant_access_point": [ "Anduln" ], - "md5": "506a6a108734be4e534ed05f3653c6ec" + "md5": "c8592061724b1090c5fb4d08819c47d8" }, { "authorized_access_point": "N\u00f8rre Herred (Amt Bornholm)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Bezirk" - } - ], "identifiedBy": [ { "source": "GND", @@ -6595,6 +6616,12 @@ "label": [ "Wikipedia - https://da.wikipedia.org/w/index.php?title=N%C3%B8rre_Herred_(Bornholm)&oldid=9783302" ] + }, + { + "noteType": "general", + "label": [ + "Ehemaliger Verwaltungsbezirk in Amt Bornholm" + ] } ], "pid": "1271173751", @@ -6604,17 +6631,10 @@ "authorized_access_point": "Amt Bornholm" } ], - "md5": "f258957c96b6bca72c9c39bbb294052e" + "md5": "0c08c61d586406910a1904d5aa11c6e9" }, { "authorized_access_point": "Beskid Makowski", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gebirgszug" - } - ], "identifiedBy": [ { "source": "GND", @@ -6639,6 +6659,12 @@ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Beskid_Makowski&oldid=211779153", "Wikipedia - https://www.wikidata.org/wiki/Q6740528" ] + }, + { + "noteType": "general", + "label": [ + "Gebirgszug der Westbeskiden in Polen in der Woiwodschaft Kleinpolen, nach der Stadt Mako\u0301w Podhalan\u0301ski benannt" + ] } ], "pid": "1267606541", @@ -6654,17 +6680,10 @@ "Beskid S\u0301redni", "Mittelbeskiden" ], - "md5": "3b20f436e5d22b18f586fc1513431f20" + "md5": "e6c677b76aaf3aa53121b48366adbdb3" }, { "authorized_access_point": "Altenburg (Stadtlauringen, Berg)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Berg" - } - ], "identifiedBy": [ { "source": "GND", @@ -6682,6 +6701,14 @@ "value": "(DE-588)1262419808" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Bergsporn zwischen Stadtlauringen und Oberlauringen im Landkreis Schweinfurt" + ] + } + ], "pid": "1262419808", "type": "bf:Place", "broader": [ @@ -6689,10 +6716,10 @@ "authorized_access_point": "Stadtlauringen" } ], - "md5": "d3d3b05d6898abb1f4f88c5028fb1d7e" + "md5": "40538812a5c10ef32ae410701c4be73b" }, { - "authorized_access_point": "Wodzis\u0142aw S\u0301la\u0328ski", + "authorized_access_point": "Wodzis\u0142aw S\u0301la\u0328ski - Region", "identifiedBy": [ { "source": "GND", @@ -6718,17 +6745,10 @@ "Wodzis\u0142aw S\u0301la\u0328ski", "Loslau" ], - "md5": "7d1ee5c293bd24814ffafe5dbdfa2fc7" + "md5": "68c3fac03c0abb883afa765347122803" }, { "authorized_access_point": "Mount Ferguson, Nev.", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Berg" - } - ], "identifiedBy": [ { "source": "GND", @@ -6746,24 +6766,20 @@ "value": "(DE-588)1239866968" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Berg im US-Bundesstaat Nevada" + ] + } + ], "pid": "1239866968", "type": "bf:Place", - "md5": "93b7cb909c80abb690bf04357045f357" + "md5": "5e25b5a19d9663cdfda2853559f98273" }, { "authorized_access_point": "Carte de Tendre", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Imagina\u0308rer Schauplatz" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Motiv" - } - ], "identifiedBy": [ { "source": "GND", @@ -6781,16 +6797,25 @@ "value": "(DE-588)1239463502" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Psycholog. Schema u. allegor. Landkarte (1653/54); 1654/60 in M. Scuderys Roman \"Cle\u0301lie, histoire romaine\" vero\u0308ffentlicht", + "Ohne iZ Motiv" + ] + } + ], "pid": "1239463502", "type": "bf:Place", "variant_access_point": [ "Carte du Tendre", "Carte du pays de Tendre" ], - "md5": "197ce59d47c428b1c9d9e737370e815d" + "md5": "bf4eada24f55f310ac7af18ad24dee02" }, { - "authorized_access_point": "Kolbuszowa", + "authorized_access_point": "Kolbuszowa - Region", "identifiedBy": [ { "source": "GND", @@ -6820,7 +6845,7 @@ "Kolbuszowa", "Ziemia kolbuszowska" ], - "md5": "4b19622a359b339b6fd5c3a3e4bb63b8" + "md5": "256b23e0d36ade88ac21cfffd96249d1" }, { "authorized_access_point": "Ziemia Ostrzeszowska", @@ -6855,10 +6880,10 @@ "Schildberger Land", "Schildberg" ], - "md5": "fa4fdc577385bf5553e62b2d239a7876" + "md5": "aa57d75d0aa774447d720a8bf9e1ae8d" }, { - "authorized_access_point": "Szprotawa", + "authorized_access_point": "Szprotawa - Region", "identifiedBy": [ { "source": "GND", @@ -6892,10 +6917,10 @@ "Sprottauer Land", "Sprottau" ], - "md5": "cad35ae81ab080dd6ef6bc04dfde763c" + "md5": "96db321d06a408c7f4d5304bb168747b" }, { - "authorized_access_point": "We\u0328gro\u0301w", + "authorized_access_point": "We\u0328gro\u0301w - Region", "identifiedBy": [ { "source": "GND", @@ -6924,17 +6949,10 @@ "We\u0328gro\u0301w", "Ziemia we\u0328growska" ], - "md5": "712e2174b51ca269adfd6198696e42cd" + "md5": "2a12e00846cd63316c2ca4fd48a1ab5b" }, { "authorized_access_point": "Lublin-Synklinale", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Synklinale" - } - ], "identifiedBy": [ { "source": "GND", @@ -6959,10 +6977,10 @@ "authorized_access_point": "Polen" } ], - "md5": "11ba3c3c783e50706a2d0ed3ad1884e9" + "md5": "e40c9505f3ddcbe1703c330ac9aed97d" }, { - "authorized_access_point": "Zwolen\u0301", + "authorized_access_point": "Zwolen\u0301 - Region", "identifiedBy": [ { "source": "GND", @@ -6999,17 +7017,10 @@ "Zwolen\u0301", "Ziemia zwolen\u0301ska" ], - "md5": "5147f033a05d214b32f0e29cf2c115b5" + "md5": "f8717ec90090c86f356ad0cec916c028" }, { "authorized_access_point": "Croker Island", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Insel" - } - ], "identifiedBy": [ { "source": "GND", @@ -7027,6 +7038,14 @@ "value": "(DE-588)1235360709" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Insel in der Arafurasee vor der Ku\u0308ste des Northern Territory in Australien" + ] + } + ], "pid": "1235360709", "type": "bf:Place", "broader": [ @@ -7034,7 +7053,7 @@ "authorized_access_point": "Arafurasee" } ], - "md5": "8e07b30946443951da1f6ec76db2d7f0" + "md5": "5003aa16512a3646f1f5f397e39249e8" }, { "authorized_access_point": "Dubring", @@ -7061,6 +7080,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Dubring&oldid=197367017" ] + }, + { + "noteType": "general", + "label": [ + "Dubring (sorbisch: Dubrjenk) ist eine ehemals selbsta\u0308ndige Gemeinde; seit 1.1.1994 nach Wittichenau eingemeindet. Im Landkreis Bautzen in Sachsen. 1815-1945 zu Preu\u00dfen (Regierungsbezirk Liegnitz) geho\u0308rend" + ] } ], "pid": "1233310046", @@ -7074,17 +7099,10 @@ "Dubrjenk", "Eichhain" ], - "md5": "976ed55f2d9ba3734df0ec6342aaa85b" + "md5": "4275f601df0b6da7910298b6a41b781c" }, { "authorized_access_point": "Ehrenberg (Berg)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Berg" - } - ], "identifiedBy": [ { "source": "GND", @@ -7117,17 +7135,10 @@ "authorized_access_point": "Ilmenau" } ], - "md5": "ce71c6bc1345c7da1e731559884d0b21" + "md5": "e6828e7f1b62cece4e486baa911bc428" }, { "authorized_access_point": "Schiller-Denkmal (Marbach am Neckar)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Denkmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -7151,6 +7162,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_von_Schillerdenkm%C3%A4lern&oldid=201898785" ] + }, + { + "noteType": "general", + "label": [ + "Schiller-Denkmal in der Parkanlage Schillerho\u0308he, gegenu\u0308ber dem Schiller-Nationalmuseum. - Standbild gestaltet nach Entwu\u0308rfen des Bildhauers Ernst Friedrich Rau, in der Werkstatt Pelargus in Erz gegossen" + ] } ], "pid": "1225876354", @@ -7160,17 +7177,10 @@ "authorized_access_point": "Marbach am Neckar" } ], - "md5": "1631d08665b41dddcdb90b2f1b835898" + "md5": "653a691cda67a439d79874311e1902cf" }, { "authorized_access_point": "Akademietheater Wien (Wien)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Theaterbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -7196,6 +7206,12 @@ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Akademietheater_(Wien)&oldid=204362083", "Homepage - https://www.burgtheater.at/akademietheater" ] + }, + { + "noteType": "general", + "label": [ + "Wird seit 1922 vom Burgtheater Wien als Kammerspielbu\u0308hne genutzt." + ] } ], "pid": "1224278054", @@ -7212,22 +7228,10 @@ "Akademie-Theater Wien (Wien)", "Akademie Theater Wien (Wien)" ], - "md5": "de967b6c062a458c4fd38ecaf273bd23" + "md5": "97afd6efab5a627e7c398a6745c74041" }, { "authorized_access_point": "Turmhu\u0308gelburg Woja (Rehau-Woja)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Burg" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Motte" - } - ], "identifiedBy": [ { "source": "GND", @@ -7264,7 +7268,7 @@ "Turmhu\u0308gel Woja (Rehau-Woja)", "Burg Woja (Rehau-Woja)" ], - "md5": "b73a01e1cc93e22aae01c72564e5a10a" + "md5": "50895ca7e2578242e809138340ffa932" }, { "authorized_access_point": "Balninkai", @@ -7285,6 +7289,14 @@ "value": "(DE-588)122219953X" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadt im Bezirk Utena, Litauen" + ] + } + ], "pid": "122219953X", "type": "bf:Place", "related": [ @@ -7300,7 +7312,7 @@ "Bal\u02b9ninkaj", "\u0411\u0430\u043b\u044c\u043d\u0438\u043d\u043a\u0430\u0438\u0306" ], - "md5": "c0fdf9edc3d55d42e4ce3e2642be4b03" + "md5": "59a2d73960ad8c1e2762e71a4bb0c82b" }, { "authorized_access_point": "Kamajai", @@ -7321,6 +7333,14 @@ "value": "(DE-588)1222199440" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadt in der Gemeinde Rokis\u030ckis in Litauen" + ] + } + ], "pid": "1222199440", "type": "bf:Place", "variant_access_point": [ @@ -7330,22 +7350,10 @@ "Kamajaj", "\u041a\u0430\u043c\u0430\u044f\u0438\u0306" ], - "md5": "f1e86709fa43abd1ed33abd107013380" + "md5": "3352dc92c9313d3564fd2235b48da697" }, { "authorized_access_point": "Braffy (Saint-Ouen-le-Pin)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Landhaus" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Bauernhof" - } - ], "identifiedBy": [ { "source": "GND", @@ -7363,6 +7371,14 @@ "value": "(DE-588)1219234621" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Landhaus des Bauernhofs, welcher urspru\u0308nglich zur Zisterzienserabtei Val-Richer (jetzt Gemeinde Saint-Ouen-le-Pin im De\u0301partement Calvados der Region Normandie) geho\u0308rte. Ende des 19. Jahrhunderts von Conrad de Witt erworben. Nach dessen Tod waren Haus und Pressoir zuna\u0308chst im Besitz des Enkels Jean Schlumberger, der ab 1954 (nach dem Verkauf an Louise Schlumberger) im Pressoir wohnte. Bis 1968 war Braffy dem Postamt La Boissie\u0300re, danach Saint-Ouen-le-Pin zugewiesen." + ] + } + ], "pid": "1219234621", "type": "bf:Place", "broader": [ @@ -7373,7 +7389,7 @@ "authorized_access_point": "La Boissie\u0300re" } ], - "md5": "b845ae7738756612970b2fb3ed316af3" + "md5": "506d98e793120b15cfa18c6e55f50c09" }, { "authorized_access_point": "Kirs\u030cai", @@ -7400,11 +7416,17 @@ "label": [ "GeoNames - http://geotree.geonames.org/11303211/" ] + }, + { + "noteType": "general", + "label": [ + "Dorf in der Gemeinde Alvitas, Rajon Vilkavis\u030ckis, Litauen" + ] } ], "pid": "1215862520", "type": "bf:Place", - "md5": "a31110d2e9ceb302957383ff20aa37ca" + "md5": "ed79140e8c1ff505fa2b6533009b9199" }, { "authorized_access_point": "Dirz\u030ciai (Pakruojis)", @@ -7444,7 +7466,7 @@ "Dirzhyay (Pakruojis)", "Dirz\u030ciu\u0328 (Pakruojis)" ], - "md5": "df8ec0b489e8dbba757e9080623944fd" + "md5": "0e423d6a4c84ae200d9d63ca44d2799e" }, { "authorized_access_point": "Wagram-Gebiet", @@ -7470,7 +7492,7 @@ "variant_access_point": [ "Wagram" ], - "md5": "cf58a6602f92c6d9c5d0a9d4214c908c" + "md5": "69f0141c43474fb9639c1b8c2bde186d" }, { "authorized_access_point": "Is\u030clauz\u030cai", @@ -7497,6 +7519,12 @@ "label": [ "GeoNames - http://geotree.geonames.org/598959/" ] + }, + { + "noteType": "general", + "label": [ + "Dorf in Litauen" + ] } ], "pid": "1203261837", @@ -7506,7 +7534,7 @@ "authorized_access_point": "Kreis Paneve\u0307z\u030cys" } ], - "md5": "84e257911751c505d92d05afa8fe40a3" + "md5": "0422a0444c77e924d8e1fb7ad074bb5b" }, { "authorized_access_point": "Ziemia Jarocinska", @@ -7539,10 +7567,10 @@ "Jarocin", "Jarocin" ], - "md5": "e56885817c63666231464c1e5bcab60a" + "md5": "9b4d5a86ff676af46727f64c3f10496d" }, { - "authorized_access_point": "Rupea", + "authorized_access_point": "Rupea - Region", "identifiedBy": [ { "source": "GND", @@ -7565,27 +7593,10 @@ "variant_access_point": [ "Repser La\u0308ndchen" ], - "md5": "2ae84dd7d7ad9eebb10af329235f4722" + "md5": "10a3da5989b561961dc299cb42ffde6e" }, { "authorized_access_point": "Stadthalle Chemnitz (Chemnitz)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Veranstaltungshalle" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kulturgeba\u0308ude" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Mehrzweckhalle" - } - ], "identifiedBy": [ { "source": "GND", @@ -7613,7 +7624,7 @@ "variant_access_point": [ "Stadthalle (Chemnitz)" ], - "md5": "909098c53c9ae4475505a70c92eb1715" + "md5": "492ab294c3fbee2d134f6eed559cef93" }, { "authorized_access_point": "Kleine-Spree-Gebiet", @@ -7639,17 +7650,10 @@ "variant_access_point": [ "Kleine Spree (Fluss)" ], - "md5": "36d82b2969ce3248fe8eab2d9c872392" + "md5": "9ed604696ba70c4620c4d3f0ee0ddb7d" }, { "authorized_access_point": "Kleine Spree", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -7673,6 +7677,12 @@ "label": [ "Wikipedia:Stand:11.07.2019 - https://de.wikipedia.org/wiki/Kleine_Spree" ] + }, + { + "noteType": "general", + "label": [ + "40 km langer linker Nebenarm der Spree im Landkreis Bautzen in Sachsen" + ] } ], "pid": "1190333082", @@ -7680,17 +7690,10 @@ "variant_access_point": [ "Ma\u0142a Sprjewja" ], - "md5": "6708cb6c741ee709f2d174aaf3b87edf" + "md5": "5cb536f36f9770cb8e801d8bbb457d7e" }, { "authorized_access_point": "Swine", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -7708,16 +7711,24 @@ "value": "(DE-588)1190328259" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Mu\u0308ndungsarm der Oder zwischen den Inseln Usedom und Wollin, 16 km lang, Woiwodschaft Westpommern" + ] + } + ], "pid": "1190328259", "type": "bf:Place", "variant_access_point": [ "S\u0301wina", "Swine (Fluss)" ], - "md5": "c6f363bdcb9e5597110657b894a83486" + "md5": "5c0d1b00df0a7a1390f902c33508f320" }, { - "authorized_access_point": "Wa\u0142cz", + "authorized_access_point": "Wa\u0142cz - Region", "identifiedBy": [ { "source": "GND", @@ -7751,27 +7762,10 @@ "Deutsch Kroner Land", "Deutsch Krone (Land)" ], - "md5": "dc46ff79243be9194cbde2a4dde0e42e" + "md5": "85099b3b30f0f3a762c1364290ead7fe" }, { "authorized_access_point": "Schwedenheim (Cloppenburg)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Mehrzweckbau" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kindergartenbau" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gemeindezentrum" - } - ], "identifiedBy": [ { "source": "GND", @@ -7796,6 +7790,12 @@ "Gemeindebrief der Evangelisch-Lutherischen Kirchengemeinde [Cloppenburg], Nr. 2/08 \u00b7 Juni bis September 2008, S. 4-7 - http://evangelisch-in-cloppenburg.de/wp-content/uploads/2017/04/08-2-ohne-Kasu.pdf", "Homepage - http://evangelisch-in-cloppenburg.de/schwedenheim-2" ] + }, + { + "noteType": "general", + "label": [ + "Vom schwedisches Hilfswerk I.M. (Innereuropa\u0308ische Mission) fu\u0308r karitative Zwecke gestiftetes Haus (u.a. Flu\u0308chtlingshilfe), ca. 1965 in die Tra\u0308gerschaft des Diakonischen Werks Oldenburg u\u0308bergangen; nach Umbauten, Erweiterungen und Renovierungen Nutzung als Gemeindezentrum, Kindergarten und Schule" + ] } ], "pid": "1188738658", @@ -7808,17 +7808,10 @@ "variant_access_point": [ "Gemeindezentrum Schwedenheim (Cloppenburg)" ], - "md5": "6e3f09f530796cf475090a756c4c7a8e" + "md5": "d6c0b6140ff7f5e5593c3ce61ae9107d" }, { "authorized_access_point": "Geopark Bayern-Bo\u0308hmen", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Geopark" - } - ], "identifiedBy": [ { "source": "GND", @@ -7842,6 +7835,12 @@ "label": [ "Homepage - https://www.geopark-bayern.de/de/" ] + }, + { + "noteType": "general", + "label": [ + "Tra\u0308ger ist der Verein GEOPARK Bayern-Bo\u0308hmen e.V." + ] } ], "pid": "1184832803", @@ -7857,17 +7856,10 @@ "variant_access_point": [ "C\u030cesko-Bavorsky\u0301 Geopark" ], - "md5": "bcf4453d0f8b18b914276f84fb4873e9" + "md5": "3678c12a7efffd9f55924a8d124a63b1" }, { "authorized_access_point": "Halbinsel Dwang", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Halbinsel" - } - ], "identifiedBy": [ { "source": "GND", @@ -7885,6 +7877,14 @@ "value": "(DE-588)1184428727" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Im Ostorfer See in Schwerin gelegene Halbinsel, erst im 20. Jh. als Wohnort genutzt" + ] + } + ], "pid": "1184428727", "type": "bf:Place", "broader": [ @@ -7896,7 +7896,7 @@ "Halbinsel Zwang", "Dwang, Halbinsel" ], - "md5": "2a6d2a173baa75b80e987cef2ff9fa11" + "md5": "e4b5c241bb43adcc7a5462e4c5d08948" }, { "authorized_access_point": "Trattendorf", @@ -7923,6 +7923,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/wiki/Trattendorf" ] + }, + { + "noteType": "general", + "label": [ + "Trattendorf (niedersorbisch Dubrawa) ist eine ehemals selbsta\u0308ndige Gemeinde; seit 1.1.1946 nach Spremberg eingemeindet. Im Landkreis Spree-Nei\u00dfe in Brandenburg" + ] } ], "pid": "1182916759", @@ -7935,7 +7941,7 @@ "variant_access_point": [ "Dubrawa" ], - "md5": "93371d31e0ebf99a7d358e7c974af7a2" + "md5": "bfb072e06a8f8ecbc46a7d8bdfb195de" }, { "authorized_access_point": "Neu Sallenthin", @@ -7963,6 +7969,12 @@ "unter - https://de.wikipedia.org/wiki/Heringsdorf", "unter - https://de.wikipedia.org/wiki/Bansin" ] + }, + { + "noteType": "general", + "label": [ + "Ort im Landkreis Usedom; 1818-1945: Kreis Usedom-Wollin), 1818 angelegt, 1826 Kolonie Neu Sallenthin, 1.7.1950 nach Basin eingemeindet, mit diesem 1.1.2005 nach Dreikaiserba\u0308der" + ] } ], "pid": "1182704948", @@ -7972,17 +7984,10 @@ "authorized_access_point": "Heringsdorf-Neu Sallenthin" } ], - "md5": "fd26780c7d5a56e21d1327ced9ecd631" + "md5": "22c0a526e1360e415cf365866722e41f" }, { "authorized_access_point": "Belgier-Kaserne (Graz)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kaserne" - } - ], "identifiedBy": [ { "source": "GND", @@ -8022,7 +8027,7 @@ "Belgierkaserne (Graz)", "SS-Kaserne Wetzelsdorf" ], - "md5": "a19b6580598402d73afc49625bb54bfb" + "md5": "8a03962d114139bfb2d81154687f99b3" }, { "authorized_access_point": "Heringsdorf-Neu Sallenthin", @@ -8050,6 +8055,12 @@ "unter - https://de.wikipedia.org/wiki/Heringsdorf", "unter - https://de.wikipedia.org/wiki/Bansin" ] + }, + { + "noteType": "general", + "label": [ + "Ortsteil von Heringsdorf seit 1.1.2006, 1818 angelegt, 1826 Kolonie Neu Sallenthin, 1.7.1950 nach Basin eingemeindet, mit diesem 1.1.2005 nach Dreikaiserba\u0308der" + ] } ], "pid": "1180620623", @@ -8066,10 +8077,10 @@ "Heringsdorf- Neu Sallenthin", "Neu Sallenthin (Heringsdorf, Seebad)" ], - "md5": "e5447bfb35c33369045359ed9e3b2569" + "md5": "ab90b44045db66576a38e5f9be41b030" }, { - "authorized_access_point": "Krotoszyn", + "authorized_access_point": "Krotoszyn - Region", "identifiedBy": [ { "source": "GND", @@ -8095,17 +8106,10 @@ "Krotoschin", "Ziemia Krotoszyn\u0301ska" ], - "md5": "a2265d9837e0c00f17f2c4503ccb1d98" + "md5": "68f851c203d358e3033350bac891923e" }, { "authorized_access_point": "Ijsselmeer-Radweg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Radwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -8129,6 +8133,12 @@ "label": [ "Internet - https://www.fietsplatform.nl/uploads/folder_NLFL_DE_2017_download.pdf" ] + }, + { + "noteType": "general", + "label": [ + "Ca. 400 km langer Rundkurs um das Ijsselmeer" + ] } ], "pid": "1177183811", @@ -8139,17 +8149,10 @@ "Zuiderzeeroute", "Ijsselmeer Radroute" ], - "md5": "215496db4e2d5b02fc24714ddbbd084d" + "md5": "41f3d2a3d588a4592f2eea1210ae7bfc" }, { "authorized_access_point": "Elsterstausee (Leipzig)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stausee" - } - ], "identifiedBy": [ { "source": "GND", @@ -8173,6 +8176,12 @@ "label": [ "Wikipedia: - https://de.wikipedia.org/wiki/Elsterstausee_B%C3%B6sdorf" ] + }, + { + "noteType": "general", + "label": [ + "1933-1935 angelegt, 2017 wurde der Status des Elsterstausees als Gewa\u0308sser/Stauanlage aufgegeben" + ] } ], "pid": "1177087480", @@ -8182,17 +8191,10 @@ "Elsterstausee Leipzig-Knauthain", "Stausee Bo\u0308sdorf" ], - "md5": "c463af5e3b560fa49ba57b3077904120" + "md5": "c843d005d01dda9a289606c8e4adcb6c" }, { "authorized_access_point": "Ru\u030az\u030covsky\u0301 vrch", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Berg" - } - ], "identifiedBy": [ { "source": "GND", @@ -8216,6 +8218,12 @@ "label": [ "Wikipedia: - https://de.wikipedia.org/wiki/R%C5%AF%C5%BEovsk%C3%BD_vrch" ] + }, + { + "noteType": "general", + "label": [ + "Berg in der rechtselbischen Bo\u0308hmischen Schweiz (619 m) in Tschechien" + ] } ], "pid": "1171383401", @@ -8229,10 +8237,10 @@ "Rosenberg (Bo\u0308hmische Schweiz : Berg)", "Ru\u030az\u030ca\u0301k" ], - "md5": "5a67d78a7e4eaf06ab90572d8bd270b9" + "md5": "b374a88c79f7cf049ed80087eb08d838" }, { - "authorized_access_point": "Kaunas", + "authorized_access_point": "Kaunas - Region, Ost", "identifiedBy": [ { "source": "GND", @@ -8257,10 +8265,10 @@ "authorized_access_point": "Kaunas" } ], - "md5": "436a51acaf7b42b984239df7923cb643" + "md5": "a55ec583f2f4f078f45ed4eb45af66dd" }, { - "authorized_access_point": "Kaunas", + "authorized_access_point": "Kaunas - Region, West", "identifiedBy": [ { "source": "GND", @@ -8285,10 +8293,10 @@ "authorized_access_point": "Kaunas" } ], - "md5": "57a97f81daddd6dbada898d6d59d2499" + "md5": "e80e62340bc712fd894627d230360bb9" }, { - "authorized_access_point": "Dzu\u0304kija", + "authorized_access_point": "Dzu\u0304kija - Ost", "identifiedBy": [ { "source": "GND", @@ -8313,10 +8321,10 @@ "authorized_access_point": "Dzu\u0304kija" } ], - "md5": "808a05460249c6776db618e972d57b31" + "md5": "69e39fedcf9bee91394ebec7b05e0f83" }, { - "authorized_access_point": "Dzu\u0304kija", + "authorized_access_point": "Dzu\u0304kija - West", "identifiedBy": [ { "source": "GND", @@ -8341,7 +8349,7 @@ "authorized_access_point": "Dzu\u0304kija" } ], - "md5": "ddc02461a25d8896dfaa2502269e219d" + "md5": "b39ff23a0b8de041dbdef4a373b399af" }, { "authorized_access_point": "San Basilio (Sardinien)", @@ -8373,18 +8381,11 @@ "Comune di San Basilio (Sardinien)", "Santu 'Asili 'e Monti" ], - "md5": "d02c2deab33831ac505a9371dd33347c" + "md5": "68d147557cef7b62baad7ce328b07ded" }, { "authorized_access_point": "Louisville Seamount Chain", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Tiefseeberg" - } - ], - "identifiedBy": [ + "identifiedBy": [ { "source": "GND", "type": "uri", @@ -8401,6 +8402,14 @@ "value": "(DE-588)1167335767" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Kette von Tiefseebergen von der Su\u0308dpazifischen Querschwelle bis zum Kermadec-Tonga-Ru\u0308cken" + ] + } + ], "pid": "1167335767", "type": "bf:Place", "variant_access_point": [ @@ -8410,7 +8419,7 @@ "Louisville Ridge", "Louisville-Ridge" ], - "md5": "65934d9c42984d59df483ddc96e76749" + "md5": "5c6af9e757744f83e23e403108706b07" }, { "authorized_access_point": "Leipzig-Neuscho\u0308nefeld", @@ -8437,6 +8446,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Neusch%C3%B6nefeld&oldid=178415670" ] + }, + { + "noteType": "general", + "label": [ + "Ortsteil von Leipzig seit 1890" + ] } ], "pid": "1166988325", @@ -8457,7 +8472,7 @@ "variant_access_point": [ "Neuscho\u0308nefeld (Leipzig)" ], - "md5": "93d4d9e217001d9976fd9a7bbf2687b4" + "md5": "cf174fe89f75a14cd8ade5dd29e6b36f" }, { "authorized_access_point": "Leipzig-Neustadt", @@ -8484,6 +8499,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Neustadt_(Leipzig)&oldid=173318045" ] + }, + { + "noteType": "general", + "label": [ + "Ortsteil von Leipzig seit 1890" + ] } ], "pid": "1166988007", @@ -8504,10 +8525,10 @@ "variant_access_point": [ "Neustadt (Leipzig)" ], - "md5": "635f32495a7a8f570b8e01d3fa1dd739" + "md5": "500f214d461aed0b0dc2deac41cc50be" }, { - "authorized_access_point": "Lubawa", + "authorized_access_point": "Lubawa - Region", "identifiedBy": [ { "source": "GND", @@ -8542,10 +8563,10 @@ "Lo\u0308bau (Westpreu\u00dfen)", "Lo\u0308bau (Westpreu\u00dfen)" ], - "md5": "e7ad0b9f082a8b98de17bcde9fd4a842" + "md5": "59a19eb8721fed20e0debd7e6777ef18" }, { - "authorized_access_point": "Radzyn\u0301 Podlaski", + "authorized_access_point": "Radzyn\u0301 Podlaski - Region", "identifiedBy": [ { "source": "GND", @@ -8574,17 +8595,10 @@ "Radzyn\u0301 Podlaski", "Radzyn\u0301 Podlaski" ], - "md5": "b4e60a50bd835aebd7fcd0f53a37095e" + "md5": "2d037a34295328857efcb78b60d491ba" }, { "authorized_access_point": "Sentiero Rusca", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -8608,6 +8622,12 @@ "label": [ "Internet - http://www.comune.sondrio.it/site/home/cosa-devo-fare-per/vivere-arte-e-tempo-libero/articolo1725279.html" ] + }, + { + "noteType": "general", + "label": [ + "32 km langer Bergwanderweg vom Veltlin ins Oberengadin" + ] } ], "pid": "1164527657", @@ -8620,7 +8640,7 @@ "authorized_access_point": "Sondrio" } ], - "md5": "66cfad226e7a3edfffa2c95585fd1a15" + "md5": "a2fc166f42e322a4a5dd2d0346789289" }, { "authorized_access_point": "Heringsdorf-Ahlbeck", @@ -8647,6 +8667,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/wiki/Ahlbeck_(Heringsdorf)" ] + }, + { + "noteType": "general", + "label": [ + "Ortsteil von Heringsdorf (1.1.2005-31.12.2005: Dreikaiserba\u0308der) seit 1.1.2006" + ] } ], "pid": "116355815X", @@ -8662,7 +8688,7 @@ "variant_access_point": [ "Ahlbeck (Heringsdorf, Seebad)" ], - "md5": "1ef82d8eed7bcba6642643d49154e861" + "md5": "f4b02bc8cdf3dd9f74f1cb35cf9beeeb" }, { "authorized_access_point": "Dreikaiserba\u0308der-Ahlbeck", @@ -8689,6 +8715,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/wiki/Ahlbeck_(Heringsdorf)" ] + }, + { + "noteType": "general", + "label": [ + "Ortsteil von Dreikaiserba\u0308der seit 1.1.2005, 1.1.2006 in Heringsdorf umbenannt" + ] } ], "pid": "1163558095", @@ -8709,7 +8741,7 @@ "variant_access_point": [ "Ahlbeck (Dreikaiserba\u0308der)" ], - "md5": "80689850a80c788cc503a3ebfd88eed9" + "md5": "46e0fbd154d472af538f3d4eadddd64f" }, { "authorized_access_point": "Dreikaiserba\u0308der-Bansin", @@ -8730,6 +8762,14 @@ "value": "(DE-588)1163419907" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil von Dreikaiserba\u0308der seit 1.1.2005, 1.1.2005 in Ostseebad Heringsdorf umbenannt" + ] + } + ], "pid": "1163419907", "type": "bf:Place", "related": [ @@ -8748,17 +8788,10 @@ "variant_access_point": [ "Bansin (Dreikaiserba\u0308der)" ], - "md5": "c008d2ce886646d8d6171620481a3bc6" + "md5": "936d975d197bbdc60f1e7ea68548fb95" }, { "authorized_access_point": "Flandern-Route", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Radwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -8782,6 +8815,12 @@ "label": [ "Internet - https://www.esterbauer.com/db_detail.php?buecher_code=TDF" ] + }, + { + "noteType": "general", + "label": [ + "Radwanderweg durch den Norden Belgiens" + ] } ], "pid": "1161830820", @@ -8789,17 +8828,10 @@ "variant_access_point": [ "Vlaanderen Fietsroute" ], - "md5": "40f9169b27956bdb15c4d521ef7f15ff" + "md5": "7d559ccc74a9ca2e6dd694d62b501b09" }, { "authorized_access_point": "Schlossparkradrunde im Allga\u0308u", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Radwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -8837,17 +8869,10 @@ "variant_access_point": [ "Allga\u0308uer Schlossparkradrunde" ], - "md5": "b851e3c235cb82965ee68eb6a577f15c" + "md5": "04c776847a256120924d1935d78a1b87" }, { "authorized_access_point": "Paul-Gerhardt-Weg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fernwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -8871,6 +8896,12 @@ "label": [ "Internet: - https://www.trescher-verlag.de/reisefuehrer/deutschland/paul-gerhardt-weg.html" ] + }, + { + "noteType": "general", + "label": [ + "140 km langer Fernwanderweg von Berlin nach Lu\u0308bben" + ] } ], "pid": "1156658128", @@ -8886,17 +8917,10 @@ "variant_access_point": [ "Paul-Gerhardt-Wanderweg" ], - "md5": "4269169561a74fe1a8b5706dec50494e" + "md5": "883153b91e4962a4034bb95063372e05" }, { "authorized_access_point": "Industriestrasse 9 (Luzern)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Haus" - } - ], "identifiedBy": [ { "source": "GND", @@ -8929,7 +8953,7 @@ "authorized_access_point": "Luzern" } ], - "md5": "7161c3af99cd8d02a63769743ade428c" + "md5": "7f775e6e9777fdc61dd4eaf524ccd4a5" }, { "authorized_access_point": "Hohenhameln-Equord", @@ -8950,6 +8974,14 @@ "value": "(DE-588)1148115242" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Equord ist seit 1.3.1974 ein Ortsteil der Gemeinde Hohenhameln im Landkreis Peine in Niedersachsen." + ] + } + ], "pid": "1148115242", "type": "bf:Place", "related": [ @@ -8960,17 +8992,10 @@ "authorized_access_point": "Equord" } ], - "md5": "f6d67c1de1aab483c1bf84bddd5476b6" + "md5": "088a4ff160352b6a5c529611bc404443" }, { "authorized_access_point": "RheinTerrassenWeg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -8995,6 +9020,12 @@ "Internet - https://www.rheinhessen.de/rheinterrassenweg", "Wikipedia - https://de.wikipedia.org/wiki/Rheinterrassenweg" ] + }, + { + "noteType": "general", + "label": [ + "Circa 60 km langer Wanderweg von Worms nach Mainz" + ] } ], "pid": "1147654123", @@ -9011,10 +9042,10 @@ "Rheinterrassenweg", "Rhein-Terrassen-Weg" ], - "md5": "df50ecd0e121010fcbf43b99f6aff71a" + "md5": "28969f06413ee86f4afbdc0a0b4b39d1" }, { - "authorized_access_point": "Kurpie", + "authorized_access_point": "Kurpie - Region", "identifiedBy": [ { "source": "GND", @@ -9038,6 +9069,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Kurpie&oldid=215616715" ] + }, + { + "noteType": "general", + "label": [ + "Kurpie ist sowohl die Bezeichnung fu\u0308r die Region als auch fu\u0308r die dortige Bevo\u0308lkerung, die Region erstreckt sich in den heutigen Woiwodschaften Masowien, Podlasien und Ermland-Masuren" + ] } ], "pid": "1143714245", @@ -9045,17 +9082,10 @@ "variant_access_point": [ "Kurpengau" ], - "md5": "f00b7bb6142c74cefa2e98e408651242" + "md5": "ccb837dc264c9cfda9898e6705bacbf9" }, { "authorized_access_point": "Continental Divide Trail", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fernwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -9079,6 +9109,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/wiki/Continental_Divide_Trail" ] + }, + { + "noteType": "general", + "label": [ + "rund 5.000 Kilometer langer Fernwanderweg entlang der nordamerikanischen kontinentalen Wasserscheide von der mexikanischen bis zur kanadischen Grenze." + ] } ], "pid": "1143154991", @@ -9086,22 +9122,10 @@ "variant_access_point": [ "CDT (Fernwanderweg)" ], - "md5": "e1be8232aa6a34cc034d5714444e4af0" + "md5": "88d88c106262d578cefa16f2a06420be" }, { "authorized_access_point": "Die Wiese lacht (Mu\u0308nster (Westf))", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Installation" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Metallkonstruktion" - } - ], "identifiedBy": [ { "source": "GND", @@ -9119,6 +9143,14 @@ "value": "(DE-588)1142135993" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Beitrag zur Skulpturenausstellung \"Skulptur-Projekte Mu\u0308nster 1987\"" + ] + } + ], "pid": "1142135993", "type": "bf:Place", "broader": [ @@ -9140,17 +9172,10 @@ "The meadow laughs or the face in the wall (Mu\u0308nster (Westf))", "Tine lawn laughs or the face in the wall (Mu\u0308nster (Westf))" ], - "md5": "9ba219d42bd0250c7e6c5106eabd95db" + "md5": "2cf2c8dfdce54a5e4edf7b581728f760" }, { "authorized_access_point": "Weitwanderweg Nibelungengau", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fernwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -9174,6 +9199,12 @@ "label": [ "Internet - https://www.donau.com/de/donau-niederoesterreich/infos-service/presse-b2b/presse/weitwanderweg-nibelungengau-wandern-am-fluss/b4fcca43e95b082793e09cc66f72d118/?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5Baction%5D=detail" ] + }, + { + "noteType": "general", + "label": [ + "110 km langer Wanderweg beidseits der Donau in Niedero\u0308stereich zwischen Sankt Nikola- Sarmingstein und Emmersdorf an der Donau" + ] } ], "pid": "1139463888", @@ -9186,17 +9217,10 @@ "authorized_access_point": "Emmersdorf an der Donau" } ], - "md5": "23c5b2ab45260986a68a660da8f832af" + "md5": "dcc147e4a82943e2d9de3413eacf50e5" }, { "authorized_access_point": "3-Flu\u0308sse-Tour", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Radwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -9220,6 +9244,12 @@ "label": [ "Internet - http://www.drei-fluesse-tour.de/" ] + }, + { + "noteType": "general", + "label": [ + "300 km langen Rundkurs entlang der drei Flu\u0308sse Rhein, Erft und Ahr" + ] } ], "pid": "113914071X", @@ -9229,17 +9259,10 @@ "Drei-Flu\u0308sse-Radweg", "Drei-Flu\u0308sse-Radwanderweg" ], - "md5": "ba6fe76846367a6b2fa849411f5bf694" + "md5": "6b38feee5b5dc037793141812354a203" }, { "authorized_access_point": "Hansaweg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fernwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -9263,6 +9286,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/wiki/Hansaweg" ] + }, + { + "noteType": "general", + "label": [ + "72 km langer Fernwanderweg zwischen Herford und Hameln. Besteht ungefa\u0308hr seit 1936." + ] } ], "pid": "113698612X", @@ -9280,7 +9309,7 @@ "Hansawanderweg", "Hansa Wanderweg" ], - "md5": "06c4bbc01e8205a54d1ca7d2d3a11e2d" + "md5": "a2ed8b9e7b14883433550e0d32bb5183" }, { "authorized_access_point": "Naarn- Au an der Donau", @@ -9314,10 +9343,10 @@ "variant_access_point": [ "Naarn im Machlande- Au" ], - "md5": "c1fc8dc12a59bcf274b33bc069b1d92a" + "md5": "a3a8ce45f1156887195b01bbee213222" }, { - "authorized_access_point": "Schengen", + "authorized_access_point": "Schengen - Region", "identifiedBy": [ { "source": "GND", @@ -9337,17 +9366,10 @@ ], "pid": "1136092293", "type": "bf:Place", - "md5": "13a3c4169707345ec1dbf828b096fcc1" + "md5": "6960a792b95077247072cdb9e10c4788" }, { "authorized_access_point": "Obere Angertal (Niederbergisches Land)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wu\u0308stung" - } - ], "identifiedBy": [ { "source": "GND", @@ -9371,6 +9393,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/wiki/Oberes_Angertal" ] + }, + { + "noteType": "general", + "label": [ + "Landschaft in Nordrhein-Westfalen zwischen Velbert und Wu\u0308lfrath. Sie wurde in den 1940er-Jahren dem Kalkabbau geopfert, zahlreiche Ho\u0308fe und Kotten wurden devastiert" + ] } ], "pid": "1135805342", @@ -9387,7 +9415,7 @@ "Obere Angerbachtal", "Oberes Angertal" ], - "md5": "c7f1cc2c8431c5eee91f3224dc3a89bf" + "md5": "ed33c2ed6f0676792591581f3c9c19d8" }, { "authorized_access_point": "Jas\u030ciu\u0304nai", @@ -9414,21 +9442,20 @@ "label": [ "GeoNames - http://www.geonames.org/598887/jasiunai.html" ] + }, + { + "noteType": "general", + "label": [ + "Stadt in Litauen" + ] } ], "pid": "1135798842", "type": "bf:Place", - "md5": "a6edd4042118eea5fa1057986a8aafbd" + "md5": "4eac57196664df0da06e76cbb51d2982" }, { "authorized_access_point": "Martinskirche (Isingen)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -9446,6 +9473,14 @@ "value": "(DE-588)1133293247" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ev. Kirche, Turm im unteren Bereich romanisch, gotisches Schiff mit polygonalem Chor, 1947/48 restauriert" + ] + } + ], "pid": "1133293247", "type": "bf:Place", "broader": [ @@ -9453,17 +9488,10 @@ "authorized_access_point": "Isingen" } ], - "md5": "4e28ec05f50469b39995518acaf97a69" + "md5": "76338108b7f0b32a075867b18371e793" }, { "authorized_access_point": "Ignatiusweg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wallfahrtsweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -9487,6 +9515,12 @@ "label": [ "Internet - http://caminoignaciano.org/de/introduccion" ] + }, + { + "noteType": "general", + "label": [ + "Pilgerweg vom Baskenland nach Katalonien, es ist die Strecke die Ignatius von Loy 1522 gegangen ist" + ] } ], "pid": "1132227771", @@ -9504,7 +9538,7 @@ "Camino Ignaciano", "Inaziotar Bidea" ], - "md5": "635db23f5a6c7a4f718f6bc53920b092" + "md5": "5c21508772becfac7de258dd4e0f40fd" }, { "authorized_access_point": "Gampenpass-Gebiet", @@ -9530,10 +9564,10 @@ "variant_access_point": [ "Gampenpass" ], - "md5": "7ffb3d1cb0c31af2d3c8b0353c2a8838" + "md5": "d0a301bda86e9a6a7d379ee3163d50f6" }, { - "authorized_access_point": "Simbabwe", + "authorized_access_point": "Simbabwe - Nordwest", "identifiedBy": [ { "source": "GND", @@ -9561,7 +9595,7 @@ "variant_access_point": [ "Nordwestsimbabwe" ], - "md5": "29335a99b04492cb14957f821ec8bf88" + "md5": "ae1051872eb539bdd88365fd2f505536" }, { "authorized_access_point": "Myanmar (Nordwest)", @@ -9593,22 +9627,10 @@ "Birma", "Nordwestliches Birma" ], - "md5": "912dd55e2900579ba2f0b67182fb5604" + "md5": "ea8cb2986d48e3725a24e17b44f15419" }, { "authorized_access_point": "Sakdrissi", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Archa\u0308ologische Sta\u0308tte" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Bergbaugebiet" - } - ], "identifiedBy": [ { "source": "GND", @@ -9632,6 +9654,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/wiki/Sakdrissi" ] + }, + { + "noteType": "general", + "label": [ + "fru\u0308hbronzezeitlichen Bergbaugebiet in Georgien, das auch das a\u0308lteste bekannte Goldbergwerk der Welt barg." + ] } ], "pid": "112132925X", @@ -9639,17 +9667,10 @@ "variant_access_point": [ "Sakdrisi" ], - "md5": "942877fcae630dccf08a947a9c4d6c77" + "md5": "6bc7fb995254e574006842133a87d2b4" }, { "authorized_access_point": "Himmelsstu\u0308rmer Route", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fernwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -9673,6 +9694,12 @@ "label": [ "Internet - http://www.allgaeu.de/himmelsstuermer-route" ] + }, + { + "noteType": "general", + "label": [ + "ca. 340 km langer Bergwanderweg im Allga\u0308u, Teil der Wandertrilogie Allga\u0308u" + ] } ], "pid": "1107605113", @@ -9693,22 +9720,10 @@ "variant_access_point": [ "Himmelsstu\u0308rmer-Route" ], - "md5": "4f07c8343a61394ce8040dab1bd5e277" + "md5": "9a375095892957ebddb6d58c5904d99d" }, { "authorized_access_point": "Wasserla\u0308ufer Route", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Rundwanderweg" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fernwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -9732,6 +9747,12 @@ "label": [ "Internet - http://www.allgaeu.de/wanderrouten?referralTopic=wandern" ] + }, + { + "noteType": "general", + "label": [ + "ca. 390 km langer Rundwanderweg im Allga\u0308u, Teil der Wandertrilogie Allga\u0308u" + ] } ], "pid": "1105589110", @@ -9744,17 +9765,10 @@ "variant_access_point": [ "Wasserla\u0308ufer-Route" ], - "md5": "ffca4da314ab08b39ea845b7cb811bdf" + "md5": "cf7620392e0c80d572cbce1e27c5d80b" }, { "authorized_access_point": "Yimeng Shan", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gebirge" - } - ], "identifiedBy": [ { "source": "GND", @@ -9778,6 +9792,12 @@ "label": [ "Wikipedia: - https://de.wikipedia.org/wiki/Yimeng_Shan" ] + }, + { + "noteType": "general", + "label": [ + "Gebirge in der Provinz Shandong" + ] } ], "pid": "1101612258", @@ -9787,17 +9807,10 @@ "Yimeng", "Yimeng-Bergland" ], - "md5": "7014efdc10d8e84efd6e8a09cb103a91" + "md5": "15f6635ab58ffe541d746086b610a926" }, { "authorized_access_point": "Nahe-Radweg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Radwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -9821,6 +9834,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/wiki/Nahe-Radweg" ] + }, + { + "noteType": "general", + "label": [ + "Ca. 128 km langer Flu\u00dfradweg entlang der Nahe" + ] } ], "pid": "1100323325", @@ -9833,17 +9852,10 @@ "authorized_access_point": "Bingen am Rhein" } ], - "md5": "162fa01d4b584fade40ff5827d70bd18" + "md5": "46976d0aa6b926d0c2b64a6677e63f0d" }, { "authorized_access_point": "Enns-Radweg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Radwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -9867,6 +9879,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/wiki/Ennsradweg" ] + }, + { + "noteType": "general", + "label": [ + "ca. 260 km langer Radwanderweg entlang der Enns" + ] } ], "pid": "1100201831", @@ -9882,22 +9900,10 @@ "variant_access_point": [ "Ennsradweg" ], - "md5": "08b6d7bc801b5a7e81f1640a2fce86d3" + "md5": "52acd2cab9bcda65ebdbbc3b5d6206bd" }, { "authorized_access_point": "Wandertrilogie Allga\u0308u", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fernwanderweg" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Rundwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -9921,6 +9927,12 @@ "label": [ "Internet - http://www.allgaeu.de/wanderrouten?referralTopic=wandern" ] + }, + { + "noteType": "general", + "label": [ + "Fernwanderweg aus 3 Routen und 53 Etappen bestehend ( Wiesenga\u0308nger, Wasserla\u0308ufer, Himmelsstu\u0308rmer)" + ] } ], "pid": "1099133092", @@ -9928,22 +9940,10 @@ "variant_access_point": [ "Wandertrilogie-Allga\u0308u" ], - "md5": "8739a066649a05f4879019b55ab980c5" + "md5": "2b98c7029b32808a237384d31bbdfccd" }, { "authorized_access_point": "Wiesenga\u0308nger Route", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Rundwanderweg" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fernwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -9967,6 +9967,12 @@ "label": [ "Internet - http://www.allgaeu.de/wiesengaenger-touren?referralTopic=wandern" ] + }, + { + "noteType": "general", + "label": [ + "ca. 400km langer Rundwanderweg im Allga\u0308u, Teil der Wandertrilogie Allga\u0308u" + ] } ], "pid": "1099132061", @@ -9979,7 +9985,7 @@ "variant_access_point": [ "Wiesenga\u0308nger-Route" ], - "md5": "cbd4b918eb3690c311cf83e0b790ab37" + "md5": "f8c9cba79b32805a2bb779548a1a9aac" }, { "authorized_access_point": "Leipzig-Gundorf", @@ -10000,6 +10006,14 @@ "value": "(DE-588)1097213617" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Dorf, Landgemeinde mit Gut Neuscherbitz; 1934 nach Bo\u0308hlitz-Ehrenberg eingemeindet - geho\u0308rte zu den Abteido\u0308rfern, seit 1999 Teil von Leipzig" + ] + } + ], "pid": "1097213617", "type": "bf:Place", "related": [ @@ -10010,7 +10024,7 @@ "variant_access_point": [ "Gundorf (Leipzig)" ], - "md5": "b56db1509c76b7e1a3073e2b926e4970" + "md5": "3c8dd74b4fa508b71c10a25de4d7ec26" }, { "authorized_access_point": "Gomo-Gebiet (Nias)", @@ -10037,6 +10051,12 @@ "label": [ "Google Maps - https://www.google.de/maps/place/Gomo,+South+Nias+Regency,+North+Sumatra,+Indonesien/@0.8834854,97.7321029,12z/data=!3m1!4b1!4m2!3m1!1s0x3026206005f1b8fb:0x4039d80b220dba0" ] + }, + { + "noteType": "general", + "label": [ + "Gebiet im Su\u0308dnias" + ] } ], "pid": "1095576461", @@ -10049,7 +10069,7 @@ "variant_access_point": [ "Gomo-Gebiet (Nias)" ], - "md5": "e356e91c32f3dcc6bdb09e0fa0f9680a" + "md5": "f2ebfcea1d38605ae694dbb1f7a02654" }, { "authorized_access_point": "Leitmeritz", @@ -10070,6 +10090,14 @@ "value": "(DE-588)1085229823" } ], + "note": [ + { + "noteType": "general", + "label": [ + "In der Sacherschlie\u00dfung nicht zu verwenden; fu\u0308r die Sacherschlie\u00dfung wird bei Splits nur die neueste/ju\u0308ngste Namensform verwendet." + ] + } + ], "pid": "1085229823", "type": "bf:Place", "broader": [ @@ -10083,23 +10111,11 @@ "Statt Leu\u0308tmaritz", "Litome\u030cr\u030cice (-XX.05.1945)" ], - "md5": "815832e2d7f7c2e9d323554d4e60c8db" + "md5": "0a140bef1db17d17b5bf10a113c0ab53" }, { "authorized_access_point": "Fernsehturm Stuttgart (Stuttgart)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fernsehturm" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Aussichtsturm" - } - ], - "identifiedBy": [ + "identifiedBy": [ { "source": "GND", "type": "uri", @@ -10139,17 +10155,10 @@ "Stuttgarter Fernsehturm (Stuttgart)", "Stuttgarter Fernsehturm (Stuttgart-Degerloch)" ], - "md5": "4379412f22a4dc675ba20359abd42993" + "md5": "352bece5fd6372b6479dd8133d31e68a" }, { "authorized_access_point": "Idyllische Stra\u00dfe", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fremdenverkehrsstra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -10173,6 +10182,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/wiki/Idyllische_Stra%C3%9Fe" ] + }, + { + "noteType": "general", + "label": [ + "seit 1967 bestehende, 130 km lange Ferienstra\u00dfe im Naturpark Schwa\u0308bisch-Fra\u0308nkischer Wald in Baden Wu\u0308rttemberg. Rundkurs von Welzheim u\u0308ber Gaildorf und Wu\u0308stenrot nach Welzheim." + ] } ], "pid": "1082520101", @@ -10182,17 +10197,10 @@ "authorized_access_point": "Welzheim" } ], - "md5": "50e857a4f051f6087bf31c0d6d19e317" + "md5": "bd93f51d7d336de63e8e02ef2c442342" }, { "authorized_access_point": "Weg der Helden", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fernwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -10216,6 +10224,12 @@ "label": [ "Internet - https://www.pizbube.ch/produkt/BC1E395D0E02F0325F3E329DF5C9EB51#.VrStslJRG70" ] + }, + { + "noteType": "general", + "label": [ + "760 km langes slowakisches Teilstu\u0308ck des Europa\u0308ischen Fernwanderweg 8" + ] } ], "pid": "1082153850", @@ -10233,17 +10247,10 @@ "authorized_access_point": "Duklapass" } ], - "md5": "8f5b9bb73d952314e7f01653e199c681" + "md5": "73d793df7cd504068f75cd58c7bdd16d" }, { "authorized_access_point": "SalzAlpenSteig", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fernwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -10267,6 +10274,12 @@ "label": [ "Internet - http://www.salzalpensteig.com/salzalpensteig.html" ] + }, + { + "noteType": "general", + "label": [ + "2015 ero\u0308ffneter Weitwanderweg (230km), von Chiemsee und Chiemgau, u\u0308ber Bad Reichenhall, Berchtesgaden und den Salzburger Tennengau bis in die Welterberegion Dachstein-Salzkammergut reicht der Premiumwanderweg." + ] } ], "pid": "1082012033", @@ -10283,22 +10296,10 @@ "Salzalpensteig", "Salzalpen-Steig" ], - "md5": "62017e1d04175f673f46e78614aceb69" + "md5": "77f22cd7f24ca8bfc8c0ec2f7e9acfbf" }, { "authorized_access_point": "Ranji Stadium (Kalkutta)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stadion" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kricketplatz" - } - ], "identifiedBy": [ { "source": "GND", @@ -10316,6 +10317,14 @@ "value": "(DE-588)1082001430" } ], + "note": [ + { + "noteType": "general", + "label": [ + "A\u0308ltestes Kricket-Stadion Indiens" + ] + } + ], "pid": "1082001430", "type": "bf:Place", "broader": [ @@ -10328,22 +10337,10 @@ "Ran\u0303ji St\u0323ed\u0323iy\u0307a\u0304ma (Kalkutta)", "I\u0304d\u0323ena Ga\u0304rd\u0323ensa (Kalkutta)" ], - "md5": "2c045522ceba1f3215f55346bf2980e0" + "md5": "ea2212b21459db8375443b5af71d241d" }, { "authorized_access_point": "Burgruine Tellenburg (Frutigen)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Burgruine" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Armenhaus" - } - ], "identifiedBy": [ { "source": "GND", @@ -10361,6 +10358,14 @@ "value": "(DE-588)1081845031" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Armenanstalt seit 1798; abgebrannt 1885" + ] + } + ], "pid": "1081845031", "type": "bf:Place", "broader": [ @@ -10371,22 +10376,10 @@ "variant_access_point": [ "Ehemalige Burg Tellenburg (Frutigen)" ], - "md5": "89834efd07f15f64d33cdd5f06bd5da0" + "md5": "d3368ccbab237171328cdd4404ebb233" }, { "authorized_access_point": "Schloss Erlach (Erlach, Kanton Bern)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Erziehungsheim" - } - ], "identifiedBy": [ { "source": "GND", @@ -10404,6 +10397,14 @@ "value": "(DE-588)1081844973" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Burg erbaut im 12. Jh.; ab 1874 Schulheim" + ] + } + ], "pid": "1081844973", "type": "bf:Place", "broader": [ @@ -10415,17 +10416,10 @@ "Schulheim Schloss Erlach (Erlach, Kanton Bern)", "Burg Erlach (Erlach, Kanton Bern)" ], - "md5": "dca2cc61ec3a16cbfde88797634ab86e" + "md5": "db1082160663b3eb55f5f1d821b7e707" }, { "authorized_access_point": "Burgruine Blauenstein (Kleinlu\u0308tzel)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Burgruine" - } - ], "identifiedBy": [ { "source": "GND", @@ -10443,6 +10437,14 @@ "value": "(DE-588)1081842474" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Burg vermutlich im 13. Jh. durch die Herren von Biederthal gegru\u0308ndet" + ] + } + ], "pid": "1081842474", "type": "bf:Place", "broader": [ @@ -10453,17 +10455,10 @@ "variant_access_point": [ "Burg Blauenstein (Kleinlu\u0308tzel)" ], - "md5": "8bb0ac13e2523a69cb118b4881edf931" + "md5": "3504488c1dd918302e43732f4696ef2b" }, { "authorized_access_point": "Schloss Toffen (Toffen)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - } - ], "identifiedBy": [ { "source": "GND", @@ -10481,6 +10476,14 @@ "value": "(DE-588)1081839082" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Erstellt im 13. Jh. als Burg, schrittweiser Umbau in eine Schlossanlage" + ] + } + ], "pid": "1081839082", "type": "bf:Place", "broader": [ @@ -10491,17 +10494,10 @@ "variant_access_point": [ "Burg Toffen (Toffen)" ], - "md5": "cf9872085a5e5124caefce0f62ee14d9" + "md5": "ed35bb860429bd84c1e672bb0c99ed0d" }, { "authorized_access_point": "Schloss Belp (Belp)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - } - ], "identifiedBy": [ { "source": "GND", @@ -10519,6 +10515,14 @@ "value": "(DE-588)1081838779" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Herrschaftssitz bis 1798" + ] + } + ], "pid": "1081838779", "type": "bf:Place", "broader": [ @@ -10526,17 +10530,10 @@ "authorized_access_point": "Belp" } ], - "md5": "b3665957472256c20949614dfc7167a7" + "md5": "66b4e4dbb3bd3b148dfa33ad74643835" }, { "authorized_access_point": "Schloss Wyl (Schlosswil)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - } - ], "identifiedBy": [ { "source": "GND", @@ -10560,6 +10557,12 @@ "label": [ "Schloss Wyl - http://www.schloss-wyl.ch/weblica/index.html" ] + }, + { + "noteType": "general", + "label": [ + "Nach dem Brand 1546 Ausbau der mittelalterlichen Burg zum Schloss" + ] } ], "pid": "1081838655", @@ -10574,27 +10577,10 @@ "Burg Wyl (Schlosswil)", "Burg Wil (Schlosswil)" ], - "md5": "9738c183d86de8f642ed1952dc25e6a6" + "md5": "e3dea94ccca9fbd2fcfa254dc5eb1c6f" }, { "authorized_access_point": "Schloss Hindelbank (Hindelbank)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Armenhaus" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gefa\u0308ngnisbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -10612,6 +10598,14 @@ "value": "(DE-588)1081838507" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ab 1866 Armenanstalt; seit 1892 Frauen-Justizvollzugsanstalt" + ] + } + ], "pid": "1081838507", "type": "bf:Place", "broader": [ @@ -10623,22 +10617,10 @@ "Geba\u0308ude der Anstalten Hindelbank (Hindelbank)", "Geba\u0308ude der Zwangsanstalt fu\u0308r Weiber (Hindelbank)" ], - "md5": "9d426d00d439348f45e88833f9c94b7d" + "md5": "69181489cb49a3b87f1c9e1db161621b" }, { "authorized_access_point": "Schloss Trachselwald", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Erziehungsheim" - } - ], "identifiedBy": [ { "source": "GND", @@ -10656,6 +10638,14 @@ "value": "(DE-588)1081838396" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Seit 1131 nachgewiesen; 1835-1928 Erziehungsanstalt" + ] + } + ], "pid": "1081838396", "type": "bf:Place", "broader": [ @@ -10663,37 +10653,10 @@ "authorized_access_point": "Trachselwald" } ], - "md5": "42b4d675e9bb7c56c46c1dcceb66f7d6" + "md5": "36ba312da53f879e10cc19313b3537af" }, { "authorized_access_point": "Schloss Thorberg (Krauchthal)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Burg" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gefa\u0308ngnisbau" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kartause" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Armenhaus" - } - ], "identifiedBy": [ { "source": "GND", @@ -10711,6 +10674,14 @@ "value": "(DE-588)1081838310" } ], + "note": [ + { + "noteType": "general", + "label": [ + "1175 erstmals erwa\u0308hnt; Bauten aus mehreren Jahrhunderten u\u0308ber mittelalterlichen Burg- und Klosterfundamenten; seit 1893 ausschliesslich Gefa\u0308ngnis" + ] + } + ], "pid": "1081838310", "type": "bf:Place", "broader": [ @@ -10718,22 +10689,10 @@ "authorized_access_point": "Krauchthal" } ], - "md5": "1da5533e77dd19b863ecb608d1daf4ff" + "md5": "849f665303b677b91d932abce95d5755" }, { "authorized_access_point": "Schloss Utzigen (Utzigen)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Pflegeheim" - } - ], "identifiedBy": [ { "source": "GND", @@ -10751,6 +10710,14 @@ "value": "(DE-588)1081838167" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Bereits 1175 erwa\u0308hnt" + ] + } + ], "pid": "1081838167", "type": "bf:Place", "broader": [ @@ -10758,17 +10725,10 @@ "authorized_access_point": "Utzigen" } ], - "md5": "8908c407fe8e9721dcc9455d9d9d0771" + "md5": "93d780a2ad83441bf25180c9027ffd09" }, { "authorized_access_point": "Schloss Aarwangen (Aarwangen)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - } - ], "identifiedBy": [ { "source": "GND", @@ -10793,22 +10753,10 @@ "authorized_access_point": "Aarwangen" } ], - "md5": "140433275d87a74d9a17371ce5ad3556" + "md5": "da91a2c593bdf3ca31bd9da727bc7cff" }, { "authorized_access_point": "Norbury Park", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Herrenhaus" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Park" - } - ], "identifiedBy": [ { "source": "GND", @@ -10832,6 +10780,12 @@ "label": [ "Wikipedia - https://en.wikipedia.org/wiki/Norbury_Park" ] + }, + { + "noteType": "general", + "label": [ + "Herrenhaus und Park in der Na\u0308he von Leatherhead" + ] } ], "pid": "1081330236", @@ -10847,10 +10801,10 @@ "variant_access_point": [ "Norbury Park (Leatherhead)" ], - "md5": "5e5649cc36bb9cf8f70ff3f8a0337ee2" + "md5": "c46f493c58c8da8af9b329276dbad4f6" }, { - "authorized_access_point": "Kurtschau", + "authorized_access_point": "Kurtschau - Region", "identifiedBy": [ { "source": "GND", @@ -10870,10 +10824,10 @@ ], "pid": "1081212918", "type": "bf:Place", - "md5": "8ea00305f4c2274a81783a140566ea50" + "md5": "45ced5b4652931fcd8680bf6b1d2c572" }, { - "authorized_access_point": "Mockern", + "authorized_access_point": "Mockern - Region", "identifiedBy": [ { "source": "GND", @@ -10893,17 +10847,10 @@ ], "pid": "1081097930", "type": "bf:Place", - "md5": "9da4785023d0b58f3df62c8e1b1b8fcc" + "md5": "adf27ae8bc648c3739a4a1b2c7d6ef91" }, { "authorized_access_point": "Pyramid Harbor", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Bucht" - } - ], "identifiedBy": [ { "source": "GND", @@ -10921,6 +10868,14 @@ "value": "(DE-588)1079692916" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Bucht in der Chilkat Inlet, Alaska" + ] + } + ], "pid": "1079692916", "type": "bf:Place", "broader": [ @@ -10928,17 +10883,10 @@ "authorized_access_point": "Alaska" } ], - "md5": "42d9f440bf9fb2cb31f8556be6ec60ce" + "md5": "cc31e766bec9e7ecae51df09efc3579f" }, { "authorized_access_point": "Laurentiuskirche (Schmitten, Hochtaunuskreis)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -10982,17 +10930,10 @@ "Evangelische Pfarrkirche Sankt Laurentius (Schmitten, Hochtaunuskreis)", "Ev. Pfarrkirche St. Laurentius (Schmitten, Hochtaunuskreis)" ], - "md5": "3065477d854243d928d298357ec42a49" + "md5": "16f5494aa56bf3b19161664f7ca7a2f5" }, { "authorized_access_point": "Alter Friedhof an Oberhofen (Go\u0308ppingen)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Friedhof" - } - ], "identifiedBy": [ { "source": "GND", @@ -11025,22 +10966,10 @@ "authorized_access_point": "Go\u0308ppingen" } ], - "md5": "152a694e1df659d63e6fa8f567d400e2" + "md5": "11bbeeaf6a7e4cd403ab12bb164245b6" }, { "authorized_access_point": "Kocher-Jagst-Trail", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Rundwanderweg" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fernwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -11064,6 +10993,12 @@ "label": [ "Internet - http://kocher-jagst-trail.de/content.php?cont_id=1&src=1&la=de" ] + }, + { + "noteType": "general", + "label": [ + "Fernwanderweg (ca. 200km), der aus den Abschnitten Jagststeig, Bu\u0308hlersteig und Kochersteig besteht" + ] } ], "pid": "1077893450", @@ -11071,7 +11006,7 @@ "variant_access_point": [ "Kocher-Jagst-Wanderweg" ], - "md5": "47a096e06b4b69da162745c13d3375b8" + "md5": "714fb19a63457e2943c736df9c9d64d1" }, { "authorized_access_point": "Weltersbach (Leichlingen (Rheinland))", @@ -11092,6 +11027,14 @@ "value": "(DE-588)1077053320" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Aus einer Hofschaft hervorgegangene Ortschaft in der Bu\u0308rgermeisterei Leichlingen, die 1856 das Stadtrecht erhielt" + ] + } + ], "pid": "1077053320", "type": "bf:Place", "related": [ @@ -11107,7 +11050,7 @@ "variant_access_point": [ "Weltersbach (Leichlingen)" ], - "md5": "e6adc4e648370dd7945dd0fd687d17fe" + "md5": "8db209fbf419acc860c0e8d27b4c926b" }, { "authorized_access_point": "Leichlingen-Weltersbach", @@ -11128,6 +11071,14 @@ "value": "(DE-588)1077053185" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Seit 1856 Stadtteil von Leichlingen" + ] + } + ], "pid": "1077053185", "type": "bf:Place", "related": [ @@ -11138,7 +11089,7 @@ "authorized_access_point": "Weltersbach (Leichlingen (Rheinland))" } ], - "md5": "080d6b895704ab5fd8163e474769ea2e" + "md5": "b48211b1b8ba9e716954d53c25f2e8ea" }, { "authorized_access_point": "Szreniawa-Gebiet", @@ -11159,22 +11110,23 @@ "value": "(DE-588)107699847X" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Gebiet am Fluss Szreniawa" + ] + } + ], "pid": "107699847X", "type": "bf:Place", "variant_access_point": [ "Szreniawa (Fluss)" ], - "md5": "4bf5d1b243da5445f040c528acf386df" + "md5": "8230e07b61ee480c764d6275f140114f" }, { "authorized_access_point": "Heidenho\u0308hlen (Goldbach, U\u0308berlingen)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Ho\u0308hle" - } - ], "identifiedBy": [ { "source": "GND", @@ -11192,6 +11144,14 @@ "value": "(DE-588)1076027032" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ku\u0308nstlich eingehauene Ga\u0308nge und Kammern in einer Felswand" + ] + } + ], "pid": "1076027032", "type": "bf:Place", "broader": [ @@ -11202,7 +11162,7 @@ "variant_access_point": [ "Heidenlo\u0308cher (Goldbach, U\u0308berlingen)" ], - "md5": "c3b14e34fdf118f9f2d278bc0f119e45" + "md5": "9e324149a44b54c78686b05196732613" }, { "authorized_access_point": "Dauje\u0307nai", @@ -11229,21 +11189,20 @@ "label": [ "Wikipedia - https://en.wikipedia.org/w/index.php?title=Dauj%C4%97nai&oldid=1157247700" ] + }, + { + "noteType": "general", + "label": [ + "Kleinstadt im Su\u0308dosten Litauens" + ] } ], "pid": "1075827361", "type": "bf:Place", - "md5": "2c747c0d3dec8b3eff64f08fe11fa202" + "md5": "9f30981107fce59081165a3732f4d855" }, { "authorized_access_point": "Sankt Michael (Furth, Landkreis Landshut)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -11267,6 +11226,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Schatzhofen&oldid=237597866" ] + }, + { + "noteType": "general", + "label": [ + "Saalkirche mit Chorturm, Chor romanisch, 12. Jahrhundert" + ] } ], "pid": "1075220467", @@ -11285,17 +11250,10 @@ "St. Michael (Furth-Schatzhofen)", "Sankt Michael Schatzhofen" ], - "md5": "f79ce1e86cdca7b9b35f6e62b565c00e" + "md5": "7aa644ab888733f037c26ae040a9fc81" }, { "authorized_access_point": "Rumbach (Fluss)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -11319,6 +11277,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/wiki/Rumbach_(Ruhr)" ] + }, + { + "noteType": "general", + "label": [ + "7,4 Kilometer langer, rechter Zufluss der Ruhr in Mu\u0308lheim an der Ruhr" + ] } ], "pid": "1074377397", @@ -11326,17 +11290,10 @@ "variant_access_point": [ "Ruhmbach" ], - "md5": "1cfcf2cdf791658ceef72f94f0975fdd" + "md5": "fb1ca45e004b38f5c6e25f425adb8f9a" }, { "authorized_access_point": "Emscher-Weg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Radwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -11360,6 +11317,12 @@ "label": [ "Internet - http://www.emscher-weg.de/route/emscher-weg/" ] + }, + { + "noteType": "general", + "label": [ + "fu\u0308hrt von der Quelle der Emscher in Holzwickede 101 Kilometer bis zu ihrer Mu\u0308ndung in den Rhein in Dinslaken" + ] } ], "pid": "1074316908", @@ -11376,17 +11339,10 @@ "Emscherweg", "Emscherradweg" ], - "md5": "acde3f512809410984328c8dd11e41a6" + "md5": "bba91d14cea4998687db0b24b44b362c" }, { "authorized_access_point": "Ru\u0308bezahl-Radweg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Radwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -11410,6 +11366,12 @@ "label": [ "Internet - http://www.neisse-nisa-nysa.org/index.php?id=91" ] + }, + { + "noteType": "general", + "label": [ + "250 km langer Radfernweg durch die Sa\u0308chsische und Bo\u0308hmische Schweiz, das Zittauer Gebirge, das Isergebirge und das Riesengebirge" + ] } ], "pid": "107399077X", @@ -11425,17 +11387,10 @@ "variant_access_point": [ "Ru\u0308bezahlradweg" ], - "md5": "ccc814562e5fdc261ea79e12e193ff5d" + "md5": "28f5d421ebf8328779c2a10b536823bc" }, { "authorized_access_point": "Lahntalradweg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Radwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -11459,6 +11414,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/wiki/Lahntalradweg" ] + }, + { + "noteType": "general", + "label": [ + "245 km langer Radfernweg in Nordrhein-Westfalen, Hessen und Rheinland-Pfalz" + ] } ], "pid": "1073950220", @@ -11475,17 +11436,10 @@ "Lahntal-Radweg", "Lahnradwanderweg" ], - "md5": "d91de69202a7d4cc7b63b5aaffcc87eb" + "md5": "d8f99ee9aafedf25c1239bf94b96dd7a" }, { - "authorized_access_point": "Schloss Weilburg (Baden, Niedero\u0308sterreich)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wasserspeier" - } - ], + "authorized_access_point": "Schloss Weilburg (Baden, Niedero\u0308sterreich) - Wasserspeier", "identifiedBy": [ { "source": "GND", @@ -11516,17 +11470,10 @@ "authorized_access_point": "Doblhoffpark (Baden, Niedero\u0308sterreich)" } ], - "md5": "5e7f9d592e2ae049a11501486d2996e7" + "md5": "2d8fe4f2581c4af8eacb18538228d36f" }, { - "authorized_access_point": "Schloss Weilburg (Baden, Niedero\u0308sterreich)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gruppendarstellung" - } - ], + "authorized_access_point": "Schloss Weilburg (Baden, Niedero\u0308sterreich) - Flora und Zephyr mit einem Kinde", "identifiedBy": [ { "source": "GND", @@ -11562,17 +11509,10 @@ "variant_access_point": [ "Schloss Weilburg (Baden, Niedero\u0308sterreich)" ], - "md5": "ef6631d1f9f591da272f49cc2a94e8ec" + "md5": "a2f23944fe7ea272013bc290e8f74928" }, { "authorized_access_point": "Vratne\u0301-Tal", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Tal" - } - ], "identifiedBy": [ { "source": "GND", @@ -11610,17 +11550,10 @@ "Vratne-Tal", "Vra\u0301tna-Tal" ], - "md5": "1d30bdb584cbf6ed97e886ebff09fdec" + "md5": "bc9deaaf747a959e8b164b5af84722f4" }, { "authorized_access_point": "Piz Buin", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Berg" - } - ], "identifiedBy": [ { "source": "GND", @@ -11638,6 +11571,14 @@ "value": "(DE-588)1073267830" } ], + "note": [ + { + "noteType": "general", + "label": [ + "drittho\u0308chster Gipfel der Silvrettagruppe und ho\u0308chster Berg Vorarlbergs" + ] + } + ], "pid": "1073267830", "type": "bf:Place", "broader": [ @@ -11645,22 +11586,10 @@ "authorized_access_point": "Silvrettagruppe" } ], - "md5": "33aab366687cc09b65472bdca515cca8" + "md5": "87af22da1a2820c12fc13fbacbce7b53" }, { "authorized_access_point": "Wasserheilanstalt Albisbrunn (Hausen am Albis)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kurgeba\u0308ude" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Heilbad" - } - ], "identifiedBy": [ { "source": "GND", @@ -11678,6 +11607,14 @@ "value": "(DE-588)107283314X" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Spa\u0308tklassizistisches Geba\u0308ude mit Mittel- und Seitenrisaliten" + ] + } + ], "pid": "107283314X", "type": "bf:Place", "broader": [ @@ -11690,17 +11627,10 @@ "Wasser-Heil-Anstalt Albisbrunn (Hausen am Albis)", "Bad Albisbrunn (Hausen am Albis)" ], - "md5": "b1c8768356723e2571a8dbac244abd63" + "md5": "645b957b46d7eb14f697a4c9334a4592" }, { "authorized_access_point": "Obere-Sann-Tal", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Tal" - } - ], "identifiedBy": [ { "source": "GND", @@ -11729,17 +11659,10 @@ "Oberes Sanntal", "Obere Sann" ], - "md5": "9330b6fb850b7c02ffcc6638f8142c01" + "md5": "ed39a81f00bc3298f72b36841eee63e0" }, { "authorized_access_point": "Eisenbahnlinie Go\u0308rlitz-Wa\u0142brzych", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Eisenbahnlinie" - } - ], "identifiedBy": [ { "source": "GND", @@ -11778,17 +11701,10 @@ "variant_access_point": [ "Bahnstrecke Zgorzelec\u2013Wa\u0142brzych" ], - "md5": "db26afcd59f0123681b75908a822c207" + "md5": "949830a4ebcea7da05678aaa39329c62" }, { "authorized_access_point": "Wa\u0308ngi (Aeugst am Albis)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Weiler" - } - ], "identifiedBy": [ { "source": "GND", @@ -11817,7 +11733,7 @@ "Wengi (Aeugst am Albis)", "Wa\u0308ngibad (Aeugst am Albis)" ], - "md5": "99e68228304def26622b681777d676c7" + "md5": "a3d9b31272aa51d6713bfa1325815150" }, { "authorized_access_point": "Heringsdorf (Kreis Ostholstein)", @@ -11838,6 +11754,14 @@ "value": "(DE-588)1069803782" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ort im Kreis Ostholstein, Amt Oldenburg-Land, slawische Gru\u0308ndung" + ] + } + ], "pid": "1069803782", "type": "bf:Place", "broader": [ @@ -11845,17 +11769,10 @@ "authorized_access_point": "Kreis Ostholstein" } ], - "md5": "115810c590ffff18a06641731466d197" + "md5": "34fb074c23273aebd56183dd6d2e8fad" }, { "authorized_access_point": "Rheinradweg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Radwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -11879,6 +11796,12 @@ "label": [ "Wikipedia - http://de.wikipedia.org/wiki/Rheinradweg" ] + }, + { + "noteType": "general", + "label": [ + "ca. 1.230 km langer Radfernweg, der durch fu\u0308nf Staaten vom Quellgebiet des Rheins in den Schweizer Alpen am Oberalppass bis zur Mu\u0308ndung bei Rotterdam fu\u0308hrt." + ] } ], "pid": "1068118490", @@ -11894,7 +11817,7 @@ "variant_access_point": [ "Rhein-Radweg" ], - "md5": "d00a4185e1c65aa088c24c26027b7434" + "md5": "1d27efe5853e966acbfd4c0d973901d6" }, { "authorized_access_point": "Leipzig-Go\u0308bschelwitz", @@ -11928,17 +11851,10 @@ "variant_access_point": [ "Go\u0308bschelwitz (Leipzig)" ], - "md5": "6251414970800690072c3ff9dab46fc7" + "md5": "ae769c28256cdf6b3ed38db5616a01e6" }, { "authorized_access_point": "Loire-Radweg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Radwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -11962,6 +11878,12 @@ "label": [ "Internet - http://www.loire-radweg.org/" ] + }, + { + "noteType": "general", + "label": [ + "800 km langer Radfernweg durch die Regionen Centre und Pays de la Loire" + ] } ], "pid": "1067878831", @@ -11977,7 +11899,7 @@ "variant_access_point": [ "La Loire a\u0300 Ve\u0301lo" ], - "md5": "7ea864dda6b14d4acfb40d96da7b5dfb" + "md5": "f689e527b44fd4fbb7b118a8dc450f95" }, { "authorized_access_point": "Leipzig-Hirschfeld", @@ -12014,7 +11936,7 @@ "variant_access_point": [ "Hirschfeld (Leipzig)" ], - "md5": "11ac1d0355ee5755cc2752b37d3b21ec" + "md5": "2a56eb71fd1ef52a690c219d9a8a02fb" }, { "authorized_access_point": "Leipzig-Rehbach", @@ -12048,7 +11970,7 @@ "variant_access_point": [ "Rehbach (Leipzig)" ], - "md5": "02d0719b010c855d72df49fd7e886c5b" + "md5": "c2a4b57ed2e9e98c80a4c45e6a7b4a08" }, { "authorized_access_point": "Leipzig-Hartmannsdorf", @@ -12069,6 +11991,14 @@ "value": "(DE-588)1067636757" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil von Leipzig seit 1993" + ] + } + ], "pid": "1067636757", "type": "bf:Place", "related": [ @@ -12082,17 +12012,10 @@ "variant_access_point": [ "Hartmannsdorf (Leipzig)" ], - "md5": "aeb1d334c1d595d6d49a19767fb7c40a" + "md5": "485e0d3cfade00ef96e280cfc0064e67" }, { "authorized_access_point": "Heidschnuckenweg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -12116,6 +12039,12 @@ "label": [ "Internet - http://www.heidschnuckenweg.de/" ] + }, + { + "noteType": "general", + "label": [ + "223 km lang, 2012 eingeweiht" + ] } ], "pid": "1067274006", @@ -12128,17 +12057,10 @@ "authorized_access_point": "Celle" } ], - "md5": "371c53476a6d31df34f1f68fe2bed0b5" + "md5": "c77f0eab0d227f69bc299676ec5ab79d" }, { "authorized_access_point": "Kocher-Jagst-Radweg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Radwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -12166,7 +12088,7 @@ ], "pid": "1067272488", "type": "bf:Place", - "md5": "d3c4984d98dc1cb6d122cc2915e3e3c5" + "md5": "1f74a63009520569905c278139b316db" }, { "authorized_access_point": "Leipzig-Kleinpo\u0308sna", @@ -12200,17 +12122,10 @@ "variant_access_point": [ "Kleinpo\u0308sna (Leipzig)" ], - "md5": "6f79fb583bbb5a0944c0e6069fc301ca" + "md5": "63272bf8955cd7a1a4780ddb9bf60d30" }, { "authorized_access_point": "Amt S\u030cakyna", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Amt" - } - ], "identifiedBy": [ { "source": "GND", @@ -12234,6 +12149,12 @@ "label": [ "Wikipedia - https://en.wikipedia.org/w/index.php?title=%C5%A0akyna&oldid=1226681026" ] + }, + { + "noteType": "general", + "label": [ + "Verwaltungseinheit im Bezirk S\u030ciauliai im Norden Litauens" + ] } ], "pid": "1064714455", @@ -12244,7 +12165,7 @@ "Amt Shakinay", "Amt Szakino\u0301w" ], - "md5": "e43b02c02ca77e5d23570857c1c3719c" + "md5": "4e05819c3322f1b884989d623e256609" }, { "authorized_access_point": "Canal du Midi-Gebiet", @@ -12270,17 +12191,10 @@ "variant_access_point": [ "Canal du Midi" ], - "md5": "e6106f041615fd1a0e17f9fc4f81510f" + "md5": "26a67279d4e425db231aa137ef148a9b" }, { "authorized_access_point": "Anglesey Coastal Path", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Rundwanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -12304,6 +12218,12 @@ "label": [ "Wikipedia - http://de.wikipedia.org/wiki/Anglesey_Coastal_Path" ] + }, + { + "noteType": "general", + "label": [ + "Fernwanderweg (200 km), der rund um die walisische Insel Anglesey fu\u0308hrt und Bestandteil des Wales Coast Path ist" + ] } ], "pid": "1064049419", @@ -12311,7 +12231,7 @@ "variant_access_point": [ "Anglesey Ku\u0308stenweg" ], - "md5": "54745323dc905fe0f72e67853fdec838" + "md5": "91b8b3a3841fd39bc69098cd1dc9d927" }, { "authorized_access_point": "Resende", @@ -12332,22 +12252,23 @@ "value": "(DE-588)1062979583" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadt im Bundesstaat Rio de Janeiro, Brasilien" + ] + } + ], "pid": "1062979583", "type": "bf:Place", "variant_access_point": [ "Rezende" ], - "md5": "110c0fe7e935dcef565c6dfcfd188c87" + "md5": "21864397ad279f50aafcd1c561dffb31" }, { "authorized_access_point": "Helle (Fluss)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12379,17 +12300,10 @@ "variant_access_point": [ "Hill (Fluss)" ], - "md5": "8cdb9bb0820f439f03346471daa1de56" + "md5": "796a0d8515380ec3842f06197c5545bf" }, { "authorized_access_point": "Wilde Wei\u00dfe", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12407,22 +12321,23 @@ "value": "(DE-588)1062891848" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Nebenfluss der Gera im Stadtgebiet von Arnstadt in Thu\u0308ringen" + ] + } + ], "pid": "1062891848", "type": "bf:Place", "variant_access_point": [ "Stadtwei\u00dfe" ], - "md5": "42dac288ea216955bd88a35f8f5caa87" + "md5": "76b194c3242ddf4adb2e3a33fc6dfd07" }, { "authorized_access_point": "Bia\u0142ka", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12454,17 +12369,10 @@ "Oles\u030cnice (Fluss)", "Elsnitz" ], - "md5": "2198ff46a2443f4d876874d8b41a8920" + "md5": "ae9e03e948114f9137dd0089350b3ec5" }, { "authorized_access_point": "Hogsmill River", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12492,17 +12400,10 @@ ], "pid": "1062516109", "type": "bf:Place", - "md5": "cf0b0ff5067d49feeee442526aa50088" + "md5": "236526c8ec47d1aa8962d09618152d8e" }, { "authorized_access_point": "Rudawa (Fluss)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12530,10 +12431,10 @@ ], "pid": "1061004198", "type": "bf:Place", - "md5": "e46edbe9398ad66dfc69eac90bf509a0" + "md5": "c22089f0188f48c76ee65330718dbca4" }, { - "authorized_access_point": "Salami\u0304yah", + "authorized_access_point": "Salami\u0304yah - Region", "identifiedBy": [ { "source": "GND", @@ -12556,17 +12457,10 @@ "variant_access_point": [ "Salamieh area" ], - "md5": "af356d8b96c41965d7b20782d54c23aa" + "md5": "8114ac25505ad3f192775a44d40daf1a" }, { "authorized_access_point": "Kanzelbach", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12594,17 +12488,10 @@ ], "pid": "106081482X", "type": "bf:Place", - "md5": "9a7b65a9ea37f59e8737100913007756" + "md5": "b4a96eee904929b7364061554385a38a" }, { "authorized_access_point": "Grundbach (Verni\u0301r\u030covice, Fluss)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12629,17 +12516,10 @@ "authorized_access_point": "Verni\u0301r\u030covice" } ], - "md5": "0b9d75d7ba390cff2e0efdb8b48ee9e8" + "md5": "311da805ea1c4ce06d9ba6725ac3e5bf" }, { "authorized_access_point": "Gra\u0308nzbach", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12659,17 +12539,10 @@ ], "pid": "1060503166", "type": "bf:Place", - "md5": "63d108bf71364e4a7e15c36ffc89ad59" + "md5": "b080d85d9891e1c6214113a5e36f7e30" }, { "authorized_access_point": "Malschbach (Fluss)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12689,17 +12562,10 @@ ], "pid": "1060502798", "type": "bf:Place", - "md5": "613f678b592fae0a8544d4178309827d" + "md5": "501a3b4f84e65ecdd15b42e000e95926" }, { "authorized_access_point": "Dobrowabach", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12719,17 +12585,10 @@ ], "pid": "1060502682", "type": "bf:Place", - "md5": "12f3ae04456e98c6a903bb986c0980ff" + "md5": "27b9c8ab99c77e2c01d5e23d969c4ce7" }, { "authorized_access_point": "Lauterwasserbach", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12749,17 +12608,10 @@ ], "pid": "1060502585", "type": "bf:Place", - "md5": "e69c273c202017a1b7201943b442ade3" + "md5": "36440d6a5283a010c74bb8ced92f3752" }, { "authorized_access_point": "Go\u0308stritzbach", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12779,17 +12631,10 @@ ], "pid": "1060502372", "type": "bf:Place", - "md5": "6440fafc2271ff803e967a1e80690065" + "md5": "7409ec9f0b3956cd60617b952e185218" }, { "authorized_access_point": "Weinbach (Fluss)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12809,17 +12654,10 @@ ], "pid": "106050216X", "type": "bf:Place", - "md5": "834e0a8f43e89e01ed303bae23dbf1ef" + "md5": "df9981fbb34eafb178d848dbed7536a1" }, { "authorized_access_point": "Gettenbach (Fluss)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12847,17 +12685,10 @@ ], "pid": "1060501902", "type": "bf:Place", - "md5": "b932ee7a5a24821d9b67fd978e00608b" + "md5": "ab69112529302828be59f545b8409d09" }, { "authorized_access_point": "Wesebach (Fluss)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12881,21 +12712,20 @@ "label": [ "Wikipedia - http://de.wikipedia.org/wiki/Ihne_(Fluss)$vhier erwa\u0308hnt" ] + }, + { + "noteType": "general", + "label": [ + "Nebenfluss der Ihne in Nordrhein-Westfalen" + ] } ], "pid": "1060501759", "type": "bf:Place", - "md5": "e4b71568b989943369a62fedc7739d94" + "md5": "e2e97908be75ca5097e08e82a89a2711" }, { "authorized_access_point": "Windener Teich", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12915,17 +12745,10 @@ ], "pid": "1060501457", "type": "bf:Place", - "md5": "675687c82627b5efaa1b31065bd5ffd7" + "md5": "34898e0c989e69a93be548428e19c42a" }, { "authorized_access_point": "Klingendes Fliess", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12956,17 +12779,10 @@ "variant_access_point": [ "Klingendes Flie\u00df" ], - "md5": "0c483c72150f3504a18762224780e4e1" + "md5": "d5dac8d6710690302868a0d501cf6f00" }, { "authorized_access_point": "Konstanzer Ach", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -12994,17 +12810,10 @@ ], "pid": "1060419319", "type": "bf:Place", - "md5": "59ed00160f68f429169e9ce3a0d05602" + "md5": "1f1b13b0269e91488eff3802a1ebeae6" }, { "authorized_access_point": "Babelsberger Park (Potsdam)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Landschaftsgarten" - } - ], "identifiedBy": [ { "source": "GND", @@ -13043,17 +12852,10 @@ "variant_access_point": [ "Park Babelsberg (Potsdam)" ], - "md5": "9e7957bb53d9693d763e0aa9fdb255e9" + "md5": "c084b5e466a8fff0e2e45f6cd5ec17d2" }, { "authorized_access_point": "O\u0308lbach (Vreden, Fluss)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13086,17 +12888,10 @@ "authorized_access_point": "Vreden" } ], - "md5": "61e5a77ae617498168c6a35f34485346" + "md5": "ec1cfffa6447aef3be716b8798eda0c1" }, { "authorized_access_point": "Linteler See", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Baggersee" - } - ], "identifiedBy": [ { "source": "GND", @@ -13120,6 +12915,12 @@ "label": [ "Internet - http://www.anglermap.de/angeln/gewaessersteckbrief_angelkarte.php?id=2546" ] + }, + { + "noteType": "general", + "label": [ + "Baggersee o\u0308stlich von Rheda-Wiedenbru\u0308ck" + ] } ], "pid": "1060132206", @@ -13132,17 +12933,10 @@ "variant_access_point": [ "Lintler See" ], - "md5": "895405dadb7bfaa01c4fd91917b5fb4f" + "md5": "191bcfb30d476692eae3466e21f637a1" }, { "authorized_access_point": "Haus Domnick (Nu\u0308rtingen)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Haus" - } - ], "identifiedBy": [ { "source": "GND", @@ -13167,6 +12961,12 @@ "Internet - http://domnick.de/", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Sammlung_Domnick&oldid=245473631" ] + }, + { + "noteType": "general", + "label": [ + "Privathaus, erbaut fu\u0308r Ottomar Domnick, heute Sitz der Stiftung Domnick, Oberensinger Ho\u0308he 4, Nu\u0308rtingen" + ] } ], "pid": "1060087367", @@ -13176,17 +12976,10 @@ "authorized_access_point": "Nu\u0308rtingen" } ], - "md5": "8891a3869a40b6966b8a32a54b9e86b2" + "md5": "9afcc9761b682c52f67740dc0f576647" }, { "authorized_access_point": "Piwonkerbach", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13206,17 +12999,10 @@ ], "pid": "1059448831", "type": "bf:Place", - "md5": "8b06809d6d950edd9e42e411e519afa5" + "md5": "11196d0ef942510d160708312e17aef0" }, { "authorized_access_point": "Voorstondse Beek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13244,17 +13030,10 @@ ], "pid": "1059378396", "type": "bf:Place", - "md5": "453eef270097c7e2015ad0cfdb439ce9" + "md5": "6083eb676f9ac01856024685b5e432a8" }, { "authorized_access_point": "Gravinnebeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13282,17 +13061,10 @@ ], "pid": "1059376946", "type": "bf:Place", - "md5": "0235c5e16aa39e56da1cec0c94ce99b9" + "md5": "5618b0e290303b7defc568db9a4b068e" }, { "authorized_access_point": "Coldenhovensebeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13320,10 +13092,10 @@ ], "pid": "1059359022", "type": "bf:Place", - "md5": "c689f9d7b1209236011c88cedad63206" + "md5": "2e3d24795f96ca08f779b0e7cff11982" }, { - "authorized_access_point": "Nelson (Neuseeland)", + "authorized_access_point": "Nelson (Neuseeland) - Region", "identifiedBy": [ { "source": "GND", @@ -13343,17 +13115,10 @@ ], "pid": "1059357755", "type": "bf:Place", - "md5": "96d23c53e9a3d06a6f110c2ecfb38ab3" + "md5": "d32c92f24eb66921a6b8dff9712c9e4f" }, { "authorized_access_point": "Molenbeek (Mook, Fluss)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13378,17 +13143,10 @@ "authorized_access_point": "Mook" } ], - "md5": "2793dcca53846b71c03dd476c3bcbabd" + "md5": "2ba1a9fe3484a38a42e3da7f3235be06" }, { "authorized_access_point": "Mosbeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13416,17 +13174,10 @@ ], "pid": "105914249X", "type": "bf:Place", - "md5": "8987a46beeace5e12c94bdbd52e49aae" + "md5": "2fa2d773afeee81c2199900b60549bb7" }, { "authorized_access_point": "Zilverbeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13446,17 +13197,10 @@ ], "pid": "1058994743", "type": "bf:Place", - "md5": "ed542ad54f7f55ad201911ee23bb9be9" + "md5": "7d774b24e92660bfc87ce447bd5d1fdd" }, { "authorized_access_point": "Esvelderbeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13484,17 +13228,10 @@ ], "pid": "1058986333", "type": "bf:Place", - "md5": "e8ab8fe7ce4a33e8123207a69c5952f0" + "md5": "5d307b138a8746f676b976f2182fafd1" }, { "authorized_access_point": "Papiermolenbeekje", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13514,17 +13251,10 @@ ], "pid": "1058985299", "type": "bf:Place", - "md5": "b9f5f821704cd7451188edaba2b7ab20" + "md5": "3d929f4983fb7d54c3d79800ef872b7a" }, { "authorized_access_point": "Barneveldsche Beek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13555,17 +13285,10 @@ "variant_access_point": [ "Grote Barneveldsebeek" ], - "md5": "35158e4504e8e09622671c007c925eea" + "md5": "15640d7d50d52606be03a83d8077ddb5" }, { "authorized_access_point": "Schoonderbeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13585,17 +13308,10 @@ ], "pid": "1058973045", "type": "bf:Place", - "md5": "0793f7aa84293128ba6eb1059522083a" + "md5": "2dba50c52071059d1bcb39cef8fff732" }, { "authorized_access_point": "Hierdensche Beek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13626,17 +13342,10 @@ "variant_access_point": [ "Hierdense beek" ], - "md5": "2c26ad785431640e8744eb88192b9b4f" + "md5": "225d3c34d095c435b727de66340b50c8" }, { "authorized_access_point": "Leuvenumse Beek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13664,17 +13373,10 @@ ], "pid": "105892978X", "type": "bf:Place", - "md5": "32d08f818ad50a0794d60da0e40391c9" + "md5": "71eee8d31a7c92341935fb874bf9abfe" }, { "authorized_access_point": "Staverdense beek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13697,17 +13399,10 @@ "variant_access_point": [ "Staverdensche Beek" ], - "md5": "e1ef867251735b947bc46df6ff6124d8" + "md5": "6a7ad5f88f85350f1d641be33b69feb5" }, { "authorized_access_point": "Papiermolenbeek (Doornspijk, Fluss)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13735,17 +13430,10 @@ "variant_access_point": [ "Papierbeek" ], - "md5": "b2b0592c5e94eb1fcfebe8102adef073" + "md5": "bdb508abd1b6729ed1add850b691344c" }, { "authorized_access_point": "Molecatensebeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13768,17 +13456,10 @@ "variant_access_point": [ "Molecatense Beek" ], - "md5": "1c893002794f3184b63e2303c3703d47" + "md5": "496ac83aaff6f0038ec13e21565f9ae3" }, { "authorized_access_point": "Zuidelijke Horsthoekerbeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13801,17 +13482,10 @@ "variant_access_point": [ "Zuidelijke Horsthoeker beek" ], - "md5": "8683aa75c5109965592b8cc0e13ced53" + "md5": "c79eb6d542ce673c72c74a52a5d9beed" }, { "authorized_access_point": "Noordelijke Horsthoekerbeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13834,17 +13508,10 @@ "variant_access_point": [ "Noordelijke Horsthoeker beek" ], - "md5": "8d45ce50d7a115330178b2def9689920" + "md5": "6dc4da557323af7cd6526deebd073838" }, { "authorized_access_point": "Middelste Heerderbeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13864,17 +13531,10 @@ ], "pid": "1058890611", "type": "bf:Place", - "md5": "cc1d7af11533d5f3fc8309bfc4e09102" + "md5": "4c421c9d5f0391e343a653f1c467e91e" }, { "authorized_access_point": "Heerderbeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13894,17 +13554,10 @@ ], "pid": "1058880373", "type": "bf:Place", - "md5": "02984c516dab5dd84122647d0464be76" + "md5": "3bcd2a031d9e0f2d38e2b85082dc2c35" }, { "authorized_access_point": "Dorpse beek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13928,17 +13581,10 @@ "Dorpse molenbeek", "Dorpermolenbeek" ], - "md5": "7695052cdfe119e5da15c821cf23abb1" + "md5": "60b2860a642602f86235f0f7d3ab8400" }, { "authorized_access_point": "Geelmolensche Beek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -13969,17 +13615,10 @@ "variant_access_point": [ "Geelmolense beek" ], - "md5": "c2a547f837f421e58a5cea5b6474456d" + "md5": "63d764f658c8dc20ca8887f564372cbc" }, { "authorized_access_point": "Nieuwe Beek (Vaassen, Fluss)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14004,17 +13643,10 @@ "authorized_access_point": "Vaassen" } ], - "md5": "50c6113473f0fce95d47937835852fc8" + "md5": "fcbbbcaba60477292880b7147ea63158" }, { "authorized_access_point": "Hartense Molenbeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14037,17 +13669,10 @@ "variant_access_point": [ "Hattemse beek" ], - "md5": "46097f173a31a1f7121d86d59c33225e" + "md5": "55bfc5df6db6b15d333ab358d0008737" }, { "authorized_access_point": "Groevenbeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14067,17 +13692,10 @@ ], "pid": "1058664468", "type": "bf:Place", - "md5": "ee20b9d28546eda0491618a0b8f7fe4a" + "md5": "2e2b2c3219491efd6b1571e89acd8e57" }, { "authorized_access_point": "Nijmolense Beek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14109,17 +13727,10 @@ "Nijmolense beek", "Nijmolenschebeek" ], - "md5": "c08a38f2fbac1a9e4556dff40c1df048" + "md5": "70f41fb6db9ceb2369a275fb07e26175" }, { - "authorized_access_point": "Smallertse Beek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], + "authorized_access_point": "Smallertse Beek", "identifiedBy": [ { "source": "GND", @@ -14150,17 +13761,10 @@ "variant_access_point": [ "Smallertse beek" ], - "md5": "67a582415ef5adc690350b905f13271c" + "md5": "fa2dc698f1393e6933f518b87508ecb8" }, { "authorized_access_point": "Tongerensche Beek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14191,17 +13795,10 @@ "variant_access_point": [ "Tongerensche beek" ], - "md5": "ef09cf2f2b47c6327a7e5a3f16e1a525" + "md5": "a3d98bb53e96b3cdf694eec189445f22" }, { "authorized_access_point": "Paalbeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14229,17 +13826,10 @@ ], "pid": "105863982X", "type": "bf:Place", - "md5": "b802d7043b1dad0f9e5824d444f35c78" + "md5": "972a5555ed63f4eda13cb62d294aac1a" }, { "authorized_access_point": "Wittebeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14259,17 +13849,10 @@ ], "pid": "1058622773", "type": "bf:Place", - "md5": "2287baf933c2298531e3a9934608bf4b" + "md5": "8685be438c5a67296c8227cdc34b84a1" }, { "authorized_access_point": "Strobroeksbeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14289,17 +13872,10 @@ ], "pid": "1058616684", "type": "bf:Place", - "md5": "13e9ab2f60b3fec62c9495588c889f36" + "md5": "026702bcbff22ae92e1d7788fe764350" }, { "authorized_access_point": "Zilvensebeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14319,17 +13895,10 @@ ], "pid": "1058616579", "type": "bf:Place", - "md5": "405d5485e16de0788ea31fcfe7399ac1" + "md5": "32c2f83c851df4bf88821c93315cf4b6" }, { "authorized_access_point": "Loenensche Beek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14360,17 +13929,10 @@ "variant_access_point": [ "Loenensebeek" ], - "md5": "a543b1e1fa43ba36ccc56f6c1c2d96a0" + "md5": "03d79f00edd4a3e27a7e215272c0b521" }, { "authorized_access_point": "Beekbergsche Beek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14401,7 +13963,7 @@ "variant_access_point": [ "Beekbergsebeek" ], - "md5": "cbbf43c885ba98b30b0d3f1f3c21b915" + "md5": "e53d7f8f72d4f2e3db19fa480d1f3663" }, { "authorized_access_point": "Leipzig-Gottscheina", @@ -14422,6 +13984,14 @@ "value": "(DE-588)1058463993" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil von Leipzig seit 1997; seit 1992 zu Seehausen" + ] + } + ], "pid": "1058463993", "type": "bf:Place", "related": [ @@ -14435,7 +14005,7 @@ "variant_access_point": [ "Gottscheina (Leipzig)" ], - "md5": "05bdafd333de06471955f992f831d266" + "md5": "9613f8d179944466b58d110532a6370b" }, { "authorized_access_point": "Leipzig-Hohenheida", @@ -14462,6 +14032,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/wiki/Hohenheida" ] + }, + { + "noteType": "general", + "label": [ + "Stadtteil von Leipzig seit 1997; 1992 zu Seehausen" + ] } ], "pid": "1058463896", @@ -14477,17 +14053,10 @@ "variant_access_point": [ "Hohenheida (Leipzig)" ], - "md5": "4e65375568fa5301755f4baad34a7165" + "md5": "f7bc078dad496540774978120365d714" }, { "authorized_access_point": "Kayersbeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14507,17 +14076,10 @@ ], "pid": "1058460862", "type": "bf:Place", - "md5": "02b72f17e8a5cee3d347bfc8215e99e9" + "md5": "7700661c6b8dec091af2aaa59a0bdb75" }, { "authorized_access_point": "Winkewijert", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14537,17 +14099,10 @@ ], "pid": "1058460293", "type": "bf:Place", - "md5": "d813c55ff918a76e4a98a1ccad029050" + "md5": "aabbf9bbdeee1fd592a02ed1b273c070" }, { "authorized_access_point": "Ugchelsebeek", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14567,17 +14122,10 @@ ], "pid": "1058395726", "type": "bf:Place", - "md5": "cef58e35ef4054abc8ec791227cae9f1" + "md5": "97016531e0030d9e6b7ec5602fdc71b8" }, { "authorized_access_point": "Tranchot-Obelisk (Aachen)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Obelisk" - } - ], "identifiedBy": [ { "source": "GND", @@ -14595,6 +14143,14 @@ "value": "(DE-588)1058041142" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Obelisk auf dem Lousberg bei Aachen, errichtet 1807 zu Ehren des franz. Vermessers Jean Joseph Tranchot. Trigonometrischer Punkt 1. Ordnung des linksrheinischen Dreiecksnetzes 1801/13" + ] + } + ], "pid": "1058041142", "type": "bf:Place", "broader": [ @@ -14605,7 +14161,7 @@ "variant_access_point": [ "Tranchot-Obelisk (Lousberg)" ], - "md5": "bbe981bb7771140d17ba3c6ce90c7120" + "md5": "8d4359dd704bbca0b7561c34f1a9f5d5" }, { "authorized_access_point": "Gru\u0308nberg-Lumda", @@ -14626,6 +14182,14 @@ "value": "(DE-588)1057942928" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadtteil von Gru\u0308nberg im Landkreis Gie\u00dfen, Hessen" + ] + } + ], "pid": "1057942928", "type": "bf:Place", "related": [ @@ -14640,17 +14204,10 @@ "Gru\u0308nberg (Landkreis Gie\u00dfen-Lumda)", "Lumda (Gru\u0308nberg-Lumda)" ], - "md5": "1dbcfaa2ab66e64560befe16584e1258" + "md5": "bf1fa886673e034c2044c27c47b130ab" }, { "authorized_access_point": "Sauberg (Erzgebirge, Berg)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Berg" - } - ], "identifiedBy": [ { "source": "GND", @@ -14683,17 +14240,10 @@ "authorized_access_point": "Erzgebirge" } ], - "md5": "32d3255c5df0211fee86a36479ab6e53" + "md5": "07a2172654853dc3acc535ab0f16a12e" }, { "authorized_access_point": "Kosovy\u0301 potok", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14717,6 +14267,12 @@ "label": [ "Wikipedia - http://de.wikipedia.org/wiki/Kosov%C3%BD_potok" ] + }, + { + "noteType": "general", + "label": [ + "am Oberlauf auch Wonschabach, Wunschelbach, Altbach" + ] } ], "pid": "1055068716", @@ -14725,7 +14281,7 @@ "Kosi\u0301 potok", "Amselbach" ], - "md5": "7a7ae4ef9e6df9e143b720a137911131" + "md5": "42ad55d6940b157255fe46ed76c587ea" }, { "authorized_access_point": "Uhlsta\u0308dt-Kirchhasel- Gro\u00dfkochberg", @@ -14752,6 +14308,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/wiki/Gro\u00dfkochberg" ] + }, + { + "noteType": "general", + "label": [ + "Gro\u00dfkochberg ist eine ehemals selbsta\u0308ndige Gemeinde; seit 1.12.2007 Ortsteil von Uhlsta\u0308dt-Kirchhasel. Im Landkreis Saalfeld-Rudolstadt in Thu\u0308ringen" + ] } ], "pid": "1054961824", @@ -14764,28 +14326,10 @@ "authorized_access_point": "Gro\u00dfkochberg" } ], - "md5": "143dd7e25f3a6bcedcc41482a5b928ef" + "md5": "ccabc3b3dface0faeaf30fa0868f6855" }, { "authorized_access_point": "Bengalen", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "vbal", - "name": "Bengalen" - } - ], - "closeMatch": [ - { - "authorized_access_point": "Bengalen (Region)", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)989943666", - "source": "(DE-101)989943666" - } - } - ], "identifiedBy": [ { "source": "GND", @@ -14803,22 +14347,41 @@ "value": "(DE-588)1054631026" } ], + "exactMatch": [ + { + "authorized_access_point": "Bengalen (Region)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)989943666" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "091420466" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Landschaft im NO des indischen Subkontinents: westl. Teil umfa\u00dft indischen Bundesstaat West Bengal, gro\u0308\u00dfere o\u0308stl. Teil bildet den Staatsraum von Bangladesch" + ] + } + ], "pid": "1054631026", "type": "bf:Place", "variant_access_point": [ "Bengal" ], - "md5": "8ddbc98425cf682decdb9384ae6541e2" + "md5": "a7d14fcf213f002fb4ea7c93ca9d742a" }, { "authorized_access_point": "Giersdorfer Wasser", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14838,17 +14401,10 @@ ], "pid": "1054611041", "type": "bf:Place", - "md5": "d577618063d1bb4aaa4ae2e50fdc868e" + "md5": "98e4ed0892f2aa63bc5b0387a2d1eb83" }, { "authorized_access_point": "Fo\u0308hrenbach (Fluss)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14866,19 +14422,20 @@ "value": "(DE-588)1054442959" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Nebenfluss der Nei\u00dfe" + ] + } + ], "pid": "1054442959", "type": "bf:Place", - "md5": "8a77da2c743fd93153863de450343d2d" + "md5": "c5909c53349ed2ecdff508de76fa0102" }, { "authorized_access_point": "Krauthausener Teich", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fluss" - } - ], "identifiedBy": [ { "source": "GND", @@ -14901,10 +14458,10 @@ "variant_access_point": [ "Krauthausener Mu\u0308hlenteich" ], - "md5": "da71a4e1f705e79dd6b908b9ee19ed2b" + "md5": "997cac04e2bdd590486be18c0285bf71" }, { - "authorized_access_point": "Brunta\u0301l", + "authorized_access_point": "Brunta\u0301l - Region", "identifiedBy": [ { "source": "GND", @@ -14924,10 +14481,10 @@ ], "pid": "1054036489", "type": "bf:Place", - "md5": "caa1a34df225310db8b327a00e0e8700" + "md5": "52cf8799b3af2a07e1154583d7af184c" }, { - "authorized_access_point": "Krnov", + "authorized_access_point": "Krnov - Region", "identifiedBy": [ { "source": "GND", @@ -14952,7 +14509,7 @@ "Ja\u0308gerndorf", "S\u0301la\u0328sk Karniowski" ], - "md5": "c04d9d9a84882eab83aed0a0e60ca46a" + "md5": "a270535dfb91ec9a08c2ca344ea03f69" }, { "authorized_access_point": "Vogtla\u0308ndische Schweiz", @@ -14975,17 +14532,10 @@ ], "pid": "105382467X", "type": "bf:Place", - "md5": "67f227e86cbeb7127f141649a10bcfb0" + "md5": "c0aa50d209b4ab16e91e4c90106a0430" }, { "authorized_access_point": "Neulandhalle (Friedrichskoog)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Mehrzweckbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -15025,17 +14575,10 @@ "Neulandhalle (Dieksanderkoog)", "Neulandhalle (Adolf-Hitler-Koog)" ], - "md5": "61a13b5041cc1a270e7822d4c1503d64" + "md5": "be3d177d45f6f54440c78c28e0a0e812" }, { "authorized_access_point": "Schlossgarten Oldenburg (Oldenburg (Oldenburg))", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Landschaftsgarten" - } - ], "identifiedBy": [ { "source": "GND", @@ -15059,6 +14602,12 @@ "label": [ "Private Seiten - http://www.schlossgarten-oldenburg.de" ] + }, + { + "noteType": "general", + "label": [ + "Englischer Landschaftsgarten fu\u0308r Herzog Peter Friedrich Ludwig von Oldenburg 1814/19 von J. F. W. Bosse angelegt, spa\u0308ter erweitert" + ] } ], "pid": "1053694857", @@ -15071,17 +14620,10 @@ "variant_access_point": [ "Schlosspark Oldenburg (Oldenburg (Oldenburg))" ], - "md5": "e3acfd82d232fd0b3988037cc1faacad" + "md5": "b05658a5bb1b25e424325d1e62135e34" }, { "authorized_access_point": "Kollegiengeba\u0308ude des Collegium Sancti Hieronymi (Dillingen a.d. Donau)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kollegiengeba\u0308ude" - } - ], "identifiedBy": [ { "source": "GND", @@ -15117,22 +14659,10 @@ "variant_access_point": [ "Geba\u0308ude des ehemaligen Jesuitenkollegs (Dillingen a.d. Donau)" ], - "md5": "1ca6e8fded7e4a74ab81ccd894b4711f" + "md5": "47bc739398bbde69296334a72b268c44" }, { "authorized_access_point": "Fleischhauerstra\u00dfe 79 (Lu\u0308beck)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Giebelhaus" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Bu\u0308rgerhaus" - } - ], "identifiedBy": [ { "source": "GND", @@ -15160,22 +14690,10 @@ "variant_access_point": [ "Dielenhaus Fleischhauerstra\u00dfe 79 (Lu\u0308beck)" ], - "md5": "82c87e1a11121e5dbdc9bcb2f8f008d3" + "md5": "b9274b19ae8cabd33ca2f53c8be052c1" }, { - "authorized_access_point": "Fuggerha\u0308user", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kabinett" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Studiolo" - } - ], + "authorized_access_point": "Fuggerha\u0308user - Badstuben", "identifiedBy": [ { "source": "GND", @@ -15209,17 +14727,10 @@ "Fuggerha\u0308user", "Fuggerha\u0308user Augsburg, Badestuben" ], - "md5": "1db1041a4bdfe68e5de5ce75ef20ad61" + "md5": "08b479cbfe64b3cc123f11cea5daecf0" }, { "authorized_access_point": "Museumsbau des Altonaer Museums (Hamburg)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Museumsbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -15259,17 +14770,10 @@ "Museumsbau Museum Altona (Hamburg)", "Museumsgeba\u0308ude des Museums Altona (Hamburg-Altona)" ], - "md5": "0db58bfd3ff1712fb8721bd3201c997b" + "md5": "0cdef41a394e84a0efce4e14bccf72e8" }, { "authorized_access_point": "Thesmophorion (Rhamnus, Attika)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kultsta\u0308tte" - } - ], "identifiedBy": [ { "source": "GND", @@ -15287,6 +14791,14 @@ "value": "(DE-588)1053460856" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Heiligtum der Demeter, Thesmophorien (Fruchtbarkeitsritus)" + ] + } + ], "pid": "1053460856", "type": "bf:Place", "broader": [ @@ -15294,32 +14806,10 @@ "authorized_access_point": "Rhamnus (Attika)" } ], - "md5": "b99f3c32e15e6da8ba5087144b5d68cd" + "md5": "904da8fe69d29da55b7c1fd4a413b0b5" }, { "authorized_access_point": "Alter Seidenhof (Zu\u0308rich)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Seidenindustrie" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fabrikgeba\u0308ude" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Vereinsgeba\u0308ude" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gescha\u0308ftshaus" - } - ], "identifiedBy": [ { "source": "GND", @@ -15341,7 +14831,8 @@ { "noteType": "general", "label": [ - "Kunstdenkma\u0308ler CH" + "Kunstdenkma\u0308ler CH", + "An der Sihlstrasse 20: In den Jahren 1812 und 1874 fanden gro\u0308ssere Umbauarbeiten statt, bis das urspru\u0308ngliche Geba\u0308ude 1892 ga\u0308nzlich verschwand und es zum Vereinshaus des Kaufma\u0308nnischen Vereins Zu\u0308rich ausgebaut wurde" ] } ], @@ -15355,7 +14846,7 @@ "variant_access_point": [ "Alt Seidenhof (Zu\u0308rich)" ], - "md5": "aa31a5f02d0291e09beb57ce923a3960" + "md5": "eccc239ed5b193df4dea0474e9743a07" }, { "authorized_access_point": "Juodupe\u0307", @@ -15376,6 +14867,14 @@ "value": "(DE-588)1044268069" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadt im Landkreis Paneve\u0307z\u030cys in Litauen" + ] + } + ], "pid": "1044268069", "type": "bf:Place", "broader": [ @@ -15387,7 +14886,7 @@ "Juodupe", "Pojedupie" ], - "md5": "94ddda81e4db64ddad6e5542a23d2a4f" + "md5": "cca65d035d90200492fdc54e9949b3d1" }, { "authorized_access_point": "Immichenhain", @@ -15414,6 +14913,12 @@ "label": [ "Wikipedia - http://de.wikipedia.org/wiki/Immichenhain" ] + }, + { + "noteType": "general", + "label": [ + "ehemals selbsta\u0308ndige Gemeinde, seit 1.4.1972 Ortsteil von Ottrau. Im Schwalm-Eder-Kreis in Hessen" + ] } ], "pid": "1038831628", @@ -15426,7 +14931,7 @@ "variant_access_point": [ "Imchenhain" ], - "md5": "cef9d782117ac26a5b3caffee0f66ae3" + "md5": "4d908697b0f984aa469a7dc80d9867d9" }, { "authorized_access_point": "Taima (Saudi-Arabien)", @@ -15447,6 +14952,14 @@ "value": "(DE-588)1036912949" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Oasenstadt in NW-Saudi-Arabien, seit ca. 2. Jt. v.Chr. besiedelt" + ] + } + ], "pid": "1036912949", "type": "bf:Place", "variant_access_point": [ @@ -15455,10 +14968,10 @@ "Teima", "Tayma\u0304\u02be" ], - "md5": "9b7ac1b51f2cf4749a8cc05f0f0a92e8" + "md5": "df672c6b7de5ae0e74492b73e2e85bed" }, { - "authorized_access_point": "Friedrichslohra und Amtlohra", + "authorized_access_point": "Friedrichslohra und Amtlohra - Region", "identifiedBy": [ { "source": "GND", @@ -15478,17 +14991,10 @@ ], "pid": "1036573141", "type": "bf:Place", - "md5": "21a0edcb3851dd1d29b053d30181f3b5" + "md5": "fc7c21d52d0e3e2beb088b476a8820c1" }, { "authorized_access_point": "Maria Himmelfahrt (Waldbreitbach)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Basilika" - } - ], "identifiedBy": [ { "source": "GND", @@ -15512,6 +15018,12 @@ "label": [ "Internet - https://www.salzkoerner.de/?page_id=525" ] + }, + { + "noteType": "general", + "label": [ + "Anfang des 13. Jahrhunderts vom Deutschherrenorden als Ordenskirche errichtet, 1870 niedergelegt blieb nur der alte Westturm beim Neubau 1876-1878 erhalten" + ] } ], "pid": "1035487640", @@ -15528,17 +15040,10 @@ "Kirche Maria Himmelfahrt (Waldbreitbach)", "Maria\u0308 Himmelfahrt (Waldbreitbach)" ], - "md5": "5a56aafcbf8e0b995bd8bfa5d8347169" + "md5": "0bf8268431acd19c12648fc88435e0e1" }, { "authorized_access_point": "Evangelische Kirche Nu\u0308mbrecht (Nu\u0308mbrecht)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -15566,7 +15071,7 @@ "variant_access_point": [ "Ev. Kirche Nu\u0308mbrecht (Nu\u0308mbrecht)" ], - "md5": "4e465c09f06ac6c821e50424269fef0f" + "md5": "85816f49a031ec6a876c7b767266b783" }, { "authorized_access_point": "Gelgaudis\u030ckis", @@ -15593,6 +15098,12 @@ "label": [ "Homepage - http://www.gelgaudiskis.lt/" ] + }, + { + "noteType": "general", + "label": [ + "Stadt in Litauen, im Bezirk Mariampol. Am Flu\u00df Niemen (dt. Memel, pol. Niemen, lit. Nemunas, russ. Neman)." + ] } ], "pid": "1031571922", @@ -15602,7 +15113,7 @@ "Gie\u0142gudyszki", "Gel\u02b9gudis\u030cki" ], - "md5": "e9572c2a4f24d4cef7a7f1677fc15a25" + "md5": "31bb455a69a877e62e33e0479f91a745" }, { "authorized_access_point": "Leipzig-Sellerhausen", @@ -15649,7 +15160,7 @@ "variant_access_point": [ "Sellerhausen (Leipzig)" ], - "md5": "585673ddcee8890a37f99e8433131dec" + "md5": "820aa8ed1cbef16a7af6e2a7347d317c" }, { "authorized_access_point": "Leipzig-Neusellerhausen", @@ -15683,7 +15194,7 @@ "variant_access_point": [ "Neusellerhausen (Leipzig)" ], - "md5": "dfe8ba029aa8694d1813e0ebb8725b18" + "md5": "346f2760c93a259c73be1d9d19a37f68" }, { "authorized_access_point": "Leipzig-Neureudnitz", @@ -15717,17 +15228,10 @@ "variant_access_point": [ "Neureudnitz (Leipzig)" ], - "md5": "f02354a66646a5bfa84787334bfbb149" + "md5": "68cca9876bf66fab2e512787e287f8b5" }, { "authorized_access_point": "Amtsbezirk Upyte\u0307", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Amtsbezirk" - } - ], "identifiedBy": [ { "source": "GND", @@ -15751,6 +15255,12 @@ "label": [ "wikipedia - https://en.wikipedia.org/w/index.php?title=Upyt%C4%97&oldid=1181420912" ] + }, + { + "noteType": "general", + "label": [ + "Verwaltungseinheit im Landkreis Paneve\u0307z\u030cys, Litauen" + ] } ], "pid": "1028231660", @@ -15766,7 +15276,7 @@ "variant_access_point": [ "Upyte\u0307s seniu\u0304nija" ], - "md5": "39b25e757d39b37b479bea5fdb2bb674" + "md5": "5a11caae852250db90e66955fbd8db08" }, { "authorized_access_point": "Gro\u00df Du\u0308ben", @@ -15787,13 +15297,21 @@ "value": "(DE-588)1024812693" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Gemeinde im Landkreis Go\u0308rlitz , Sachsen." + ] + } + ], "pid": "1024812693", "type": "bf:Place", "variant_access_point": [ "Gro\u00df-Du\u0308ben", "Dz\u0301e\u030cwin" ], - "md5": "b08136e0b2f63a94ea3b408fbdfaca89" + "md5": "0c23c658a87bfd9a9ea8731d4341b541" }, { "authorized_access_point": "Kalvarija", @@ -15814,6 +15332,14 @@ "value": "(DE-588)7864312-0" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadt im Su\u0308den Litauens, Bezirk Marijampole\u0307" + ] + } + ], "pid": "1021396656", "type": "bf:Place", "variant_access_point": [ @@ -15825,10 +15351,10 @@ "Kalwaria", "Kalwariya" ], - "md5": "b58270fb5a5e4e099a355bf667595793" + "md5": "33e22984e326dbd72d5ca04aaa2c41c9" }, { - "authorized_access_point": "Alksniupiai", + "authorized_access_point": "Alksniupiai - Region", "identifiedBy": [ { "source": "GND", @@ -15846,12 +15372,20 @@ "value": "(DE-588)7861847-2" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Region im Bezirk S\u030ciauliai, zwischen Rozalimas, Radvilis\u030ckis, Seduva und Smilgiai gelegen" + ] + } + ], "pid": "1021113018", "type": "bf:Place", "variant_access_point": [ "Alksniupiu\u031c kras\u030ctas" ], - "md5": "57ee956d1771d00ddd16d4043d5ffff7" + "md5": "7a67d751030cba3f3788f4bdf43f484e" }, { "authorized_access_point": "Kaltane\u0307nai", @@ -15872,6 +15406,14 @@ "value": "(DE-588)7861838-1" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ort im Osten Litauens, im Bezirk S\u030cvenc\u030cionys" + ] + } + ], "pid": "1021112577", "type": "bf:Place", "variant_access_point": [ @@ -15880,7 +15422,7 @@ "Ko\u0142tyniany", "Koltynyany" ], - "md5": "a818c8285db798c940b085bf885cb658" + "md5": "e87cb7e453185395773e66a2d6664eca" }, { "authorized_access_point": "Karkle\u0307nai", @@ -15901,19 +15443,20 @@ "value": "(DE-588)7861835-6" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadt in Litauen, im Bezirk Kelme\u0307" + ] + } + ], "pid": "1021112518", "type": "bf:Place", - "md5": "10632df39552faf1b9535852170e3b1a" + "md5": "143dbc5d11a79d181cb900e9d90cac87" }, { "authorized_access_point": "Amt Marcinkonys", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Amt" - } - ], "identifiedBy": [ { "source": "GND", @@ -15931,23 +15474,24 @@ "value": "(DE-588)7861831-9" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Amtsbezirk der Rajongemeinde Vare\u0307na im Su\u0308den von Litauen" + ] + } + ], "pid": "1021112216", "type": "bf:Place", "variant_access_point": [ "Marcinkoniu\u031c seniu\u0304nija", "Marcinkonys (Amt)" ], - "md5": "39f0fa4071b9dc00395a25bc11c42bab" + "md5": "37327eefbd5d8b973b650e52d7d4bebd" }, { "authorized_access_point": "Wa\u0304di\u0304 al-\u02bfAqi\u0304q", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Tal" - } - ], "identifiedBy": [ { "source": "GND", @@ -15965,13 +15509,21 @@ "value": "(DE-588)7861291-3" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Tal in Saudiarabien" + ] + } + ], "pid": "1021056154", "type": "bf:Place", "variant_access_point": [ "Wadi Al-Aqiq", "Wadi Al-Aqeeq" ], - "md5": "20d31449a5eec249b674abf6383cc715" + "md5": "b786dee1a2cfb8143c7288c91e682002" }, { "authorized_access_point": "Kurs\u030ciai (Kelme)", @@ -15992,19 +15544,20 @@ "value": "(DE-588)7860875-2" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Dorf im Bezirk Kelme in Litauen" + ] + } + ], "pid": "1020911387", "type": "bf:Place", - "md5": "142f50fa220f2209c6ccb198c6830150" + "md5": "37e5d4b31cc148438cd9afe9705c8970" }, { "authorized_access_point": "Kreis Radvilis\u030ckis", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kreis" - } - ], "identifiedBy": [ { "source": "GND", @@ -16022,13 +15575,21 @@ "value": "(DE-588)7860874-0" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Kreis im Bezirk S\u030ciauliai in Litauen" + ] + } + ], "pid": "1020911344", "type": "bf:Place", "variant_access_point": [ "Radvilis\u030ckio rajonas", "Radvilis\u030ckis (Kreis)" ], - "md5": "27e60a7c75968f7c9d124336ddbc23bd" + "md5": "4c540e441cd452ef0e2d116f53274e23" }, { "authorized_access_point": "Ke\u031cstaic\u030ciai", @@ -16049,19 +15610,20 @@ "value": "(DE-588)7860862-4" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Dorf im Bezirk Tels\u030ciai in Litauen" + ] + } + ], "pid": "1020911026", "type": "bf:Place", - "md5": "bd1e906c23c587d8c62475d35a01c55a" + "md5": "e29241ed17ec4b4b74599be6582c5fb9" }, { "authorized_access_point": "Kreis Jonava", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kreis" - } - ], "identifiedBy": [ { "source": "GND", @@ -16079,23 +15641,24 @@ "value": "(DE-588)7860647-0" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Litauische Rajongemeinde im Bezirk Kaunas" + ] + } + ], "pid": "1020897325", "type": "bf:Place", "variant_access_point": [ "Jonavas rajonas", "Jonava (Kreis)" ], - "md5": "31cc71f45761b9f83b9597831644fab0" + "md5": "8e15953338b80be8ffdeafbfecf02b76" }, { "authorized_access_point": "Kreis Vare\u0307na", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kreis" - } - ], "identifiedBy": [ { "source": "GND", @@ -16113,13 +15676,21 @@ "value": "(DE-588)7860645-7" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Kreis im Su\u0308dosten von Litauen, im Bezirk Alytus" + ] + } + ], "pid": "1020897236", "type": "bf:Place", "variant_access_point": [ "Vare\u0307nos rajonas", "Vare\u0307na (Kreis)" ], - "md5": "08d370233ce4d254e8f9e899634a739d" + "md5": "3785a65b1b8b06e07657281c02570d1c" }, { "authorized_access_point": "Ignalina", @@ -16140,12 +15711,20 @@ "value": "(DE-588)7860430-8" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadt im NO Litauens" + ] + } + ], "pid": "1020865318", "type": "bf:Place", - "md5": "60022fdb51b9b3e0e9c80d18750135a3" + "md5": "b4019664953382cbdafc7402910814a9" }, { - "authorized_access_point": "Ignalina", + "authorized_access_point": "Ignalina - Region", "identifiedBy": [ { "source": "GND", @@ -16163,23 +15742,24 @@ "value": "(DE-588)7860429-1" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Region im NO Litauens" + ] + } + ], "pid": "1020865237", "type": "bf:Place", "variant_access_point": [ "Ignalinos kras\u030ctas", "Ignalinskij kraj" ], - "md5": "2c7fc5daba4ccb983e4f46f228df9628" + "md5": "2846fa7990349e1b3d19911aafdcf25b" }, { "authorized_access_point": "Schloss Werenwag", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - } - ], "identifiedBy": [ { "source": "GND", @@ -16215,10 +15795,10 @@ "variant_access_point": [ "Beuron-Schloss Werenwag" ], - "md5": "5b575e68a220d9a559a2fe8086370f6d" + "md5": "05ca364cc0f3cb7852608cb8a50216d1" }, { - "authorized_access_point": "Henningen (Salzwedel)", + "authorized_access_point": "Henningen (Salzwedel) - Region", "identifiedBy": [ { "source": "GND", @@ -16238,7 +15818,7 @@ ], "pid": "1011060752", "type": "bf:Place", - "md5": "0bf08346bf1809360dae7dc2f38b737d" + "md5": "aa81c86a063b5cfacc490fefca6f5f61" }, { "authorized_access_point": "Eichwege", @@ -16259,6 +15839,14 @@ "value": "(DE-588)7737805-2" } ], + "note": [ + { + "noteType": "general", + "label": [ + "seit 1974 Ortsteil von Do\u0308bern" + ] + } + ], "pid": "1010438603", "type": "bf:Place", "variant_access_point": [ @@ -16266,16 +15854,10 @@ "Dubrawka", "Do\u0308bern-Eichwege" ], - "md5": "7a616dcbbb417028653ccb2cb42be626" + "md5": "b6aecbc223590430a87b84813c3d3fb8" }, { "authorized_access_point": "Diho\u0304k", - "closeMatch": [ - { - "authorized_access_point": "\u062f\u06be\u06c6\u06a9", - "source": "GND" - } - ], "identifiedBy": [ { "source": "GND", @@ -16293,6 +15875,14 @@ "value": "(DE-588)7736522-7" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadt im Irak" + ] + } + ], "pid": "1010249460", "type": "bf:Place", "variant_access_point": [ @@ -16306,7 +15896,7 @@ "Dohuk", "\u062f\u0647\u0648\u0643" ], - "md5": "55de9f91ed6b13ef41581a43f57a5d30" + "md5": "b1c4240e1a2a4c1e253719721df16988" }, { "authorized_access_point": "Hille- Holzhausen II", @@ -16333,6 +15923,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Holzhausen_II&oldid=146144601" ] + }, + { + "noteType": "general", + "label": [ + "Seit 01.01.1973 Ortsteil von Hille (Kreis Minden-Lu\u0308bbecke), vorher selbststa\u0308ndig" + ] } ], "pid": "1009847430", @@ -16345,7 +15941,7 @@ "authorized_access_point": "Holzhausen II" } ], - "md5": "14af0bd095f98c9bad0d7def3f0b1016" + "md5": "48edaf0bf4acd80ba26abcca95ca9c57" }, { "authorized_access_point": "Heringsdorf-Siggen", @@ -16376,7 +15972,7 @@ "variant_access_point": [ "Siggen (Heringsdorf, Kreis Ostholstein)" ], - "md5": "bc91406084d82f45749a373c16166eb9" + "md5": "833f56fe441d7beb72d2b7d71ab9fe05" }, { "authorized_access_point": "Leipzig-Breitenfeld", @@ -16403,6 +15999,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/wiki/Breitenfeld_(Leipzig)" ] + }, + { + "noteType": "general", + "label": [ + "Ortsteil von Leipzig seit 1.1.1999, 1271 Dorf urkundl. erwa\u0308hnt; 1923 nach Lindenthal (Leipzig) eingemeindet" + ] } ], "pid": "1008073997", @@ -16418,7 +16020,7 @@ "variant_access_point": [ "Breitenfeld (Leipzig)" ], - "md5": "2ba5c16576d425cb752535b07a3099cd" + "md5": "925c6120b9cf06a36e850f06da16bd9d" }, { "authorized_access_point": "Leipziger Creis", @@ -16453,7 +16055,7 @@ "Leipziger Kreis", "Forum fu\u0308r Wissenschaft und Kunst" ], - "md5": "caaee3771c9b6f1cd545f92c9835bac3" + "md5": "05f57f41d545e15f7bd35fe6d4056644" }, { "authorized_access_point": "Lagow (Kreis Oststernberg)", @@ -16492,7 +16094,7 @@ "authorized_access_point": "\u0141ago\u0301w (Woiwodschaft Lebus)" } ], - "md5": "38d5592dba0297a2181c6bebe33d1482" + "md5": "909629a8f4b95d9a8d975f9f28cc8cfa" }, { "authorized_access_point": "Leipzig-Bo\u0308hlitz-Ehrenberg", @@ -16513,6 +16115,14 @@ "value": "(DE-588)7672378-1" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadtteil von Leipzig seit 1.1.1999; Gemeinde Bo\u0308hlitz-Ehrenberg bestand seit 1839" + ] + } + ], "pid": "996588051", "type": "bf:Place", "related": [ @@ -16526,7 +16136,7 @@ "variant_access_point": [ "Bo\u0308hlitz-Ehrenberg (Leipzig)" ], - "md5": "656a3d9bc3267e0deba1659c81203b3a" + "md5": "3501458b8030ce425721e3cadd32f3f7" }, { "authorized_access_point": "Kotzenau", @@ -16553,6 +16163,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Chocian%C3%B3w&oldid=245141308" ] + }, + { + "noteType": "general", + "label": [ + "Stadt im preu\u00dfischen Kreis Lu\u0308bben, ab 1945 Chociano\u0301w in der polnischen der Woiwodschaft Niederschlesien" + ] } ], "pid": "996155910", @@ -16562,7 +16178,7 @@ "authorized_access_point": "Chociano\u0301w" } ], - "md5": "82ba8667e908fb3df3e08d5711fb748b" + "md5": "c516dadd4f3f6998c156ce7b51a2a79c" }, { "authorized_access_point": "Gru\u0308nberg-Queckborn", @@ -16583,6 +16199,14 @@ "value": "(DE-588)16014739-6" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadtteil von Gru\u0308nberg im Landkreis Gie\u00dfen, Hessen" + ] + } + ], "pid": "995191506", "type": "bf:Place", "related": [ @@ -16597,7 +16221,7 @@ "Gru\u0308nberg (Landkreis Gie\u00dfen-Queckborn)", "Queckborn (Gru\u0308nberg-Queckborn)" ], - "md5": "2b74334de1abd1fb9f101e69642194d4" + "md5": "6dc721536ac95e440a1233948703b659" }, { "authorized_access_point": "Leipzig-Zuckelhausen", @@ -16624,6 +16248,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Zuckelhausen&oldid=234613791" ] + }, + { + "noteType": "general", + "label": [ + "Stadtteil von Leipzig seit 1.1.1999, davor Ortsteil von Holzhausen " + ] } ], "pid": "994536666", @@ -16639,7 +16269,7 @@ "variant_access_point": [ "Zuckelhausen (Leipzig)" ], - "md5": "44f916c5ccb5f36de416610cdd977b43" + "md5": "61b5ef9ecd78677fd9af65f0cac67c03" }, { "authorized_access_point": "Daubitz", @@ -16660,23 +16290,24 @@ "value": "(DE-588)7642802-3" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil von Rietschen, Landkreis Go\u0308rlitz (1.8.1994-31.7.2008: Niederschlesischer Oberlausitzkreis; 25.7.1952-31.7.1994: (Land-)Kreis Wei\u00dfwasser), 1346, 1366 und 1398 urkundl. erwa\u0308hnt, 15.3.1992 mit Rietschen, Teicha u. Viereichen zu Rietschen zusammengeschlossen" + ] + } + ], "pid": "992346371", "type": "bf:Place", "variant_access_point": [ "Dubc", "Rietschen-Daubitz" ], - "md5": "8513c7521182336433bfc40af6f838bb" + "md5": "ee642680987c1d577dc42de769516cca" }, { "authorized_access_point": "Sankt Maria zu den Stufen (Ko\u0308ln)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Basilika" - } - ], "identifiedBy": [ { "source": "GND", @@ -16700,6 +16331,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=St._Maria_ad_Gradus_(K%C3%B6ln)&oldid=205659895" ] + }, + { + "noteType": "general", + "label": [ + "Romanische Stiftskirche mit eigenem Immunita\u0308tsbezirk; 1059 urkundlich erwa\u0308hnt, 1817 abgerissen" + ] } ], "pid": "989505952", @@ -16717,22 +16354,10 @@ "St. Mariengraden (Ko\u0308ln)", "St. Maria ad gradus (Ko\u0308ln) (Ko\u0308ln)" ], - "md5": "d7038f26d816eec6706d9d6921f067d6" + "md5": "998998460b4a704ac7b3c6f776535ae5" }, { "authorized_access_point": "Kunstpavillon (Heringsdorf, Seebad)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Pavillon" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Ausstellungsbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -16750,6 +16375,14 @@ "value": "(DE-588)7608819-4" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Pavillon 1973 (andersltd.: 1970) erbaut nach Entwurf von Ulrich Mu\u0308ther , bewirtschaftet von einer Ku\u0308nstlervereinigung, seit 1990 Usedomer Kunstverein" + ] + } + ], "pid": "98831326X", "type": "bf:Place", "broader": [ @@ -16757,17 +16390,10 @@ "authorized_access_point": "Heringsdorf (Seebad)" } ], - "md5": "a516f74101379d425c3e289d1fc9c063" + "md5": "e3d613025d71195d6de64978f34bd7cb" }, { "authorized_access_point": "Schloss Sommerswalde (Schwante)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - } - ], "identifiedBy": [ { "source": "GND", @@ -16791,6 +16417,12 @@ "label": [ "Internet - http://www.schwante.de/schloesser.htm" ] + }, + { + "noteType": "general", + "label": [ + "Schlo\u00df 1888/91 von H. Abesser u. J. Kro\u0308ger erbaut; heute von Dharmakaya Schloss Sommerswalde e.V. (Buddhistische Klosterschule und Sozialprojekt) genutzt" + ] } ], "pid": "985253576", @@ -16800,7 +16432,7 @@ "authorized_access_point": "Schwante" } ], - "md5": "3ef4e3eebd0a0c17c53a5458c9a49c4d" + "md5": "3b91f1ba43c2f70c816838efb7abe560" }, { "authorized_access_point": "Leipzig-Su\u0308dost", @@ -16823,17 +16455,10 @@ ], "pid": "984645942", "type": "bf:Place", - "md5": "b93a96e377c2d83cd605f33de9427342" + "md5": "d9470b837b281fff3ad2c902beff6d1c" }, { "authorized_access_point": "Politischer Bezirk Judenburg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Bezirk" - } - ], "identifiedBy": [ { "source": "GND", @@ -16857,7 +16482,7 @@ "Bezirk Judenburg", "Judenburg (Politischer Bezirk)" ], - "md5": "f9c413f48ca1b0aedd91d5e66dcd6839" + "md5": "872ace2786ddd660a031ea1760ee258f" }, { "authorized_access_point": "Echichens", @@ -16878,12 +16503,20 @@ "value": "(DE-588)7522697-2" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Gemeinde im Bezirk Morges, Kanton Waadt" + ] + } + ], "pid": "979131529", "type": "bf:Place", - "md5": "2e601a7363e5cd6f4cdc9b1df7bf177e" + "md5": "a6b06d2ec15513dcff8f33a74e811f77" }, { - "authorized_access_point": "Herzogtum Preu\u00dfen", + "authorized_access_point": "Herzogtum Preu\u00dfen - Ost", "identifiedBy": [ { "source": "GND", @@ -16911,7 +16544,7 @@ "variant_access_point": [ "Preu\u00dfen (Herzogtum)" ], - "md5": "a1e1787aa029c4c3e597b3a9461cc5c0" + "md5": "739704d01e97837375872dc26565ea52" }, { "authorized_access_point": "Leipzig-Knautkleeberg-Knauthain", @@ -16950,7 +16583,7 @@ "variant_access_point": [ "Knautkleeberg-Knauthain" ], - "md5": "188d56c504a7a5d7900c114a48690dc2" + "md5": "6987d60a98383afcb64d3aac29c47d8b" }, { "authorized_access_point": "Ba\u0308riswil (Bern)", @@ -16990,7 +16623,7 @@ "Gemeinde Ba\u0308riswil", "Einwohnergemeinde Ba\u0308riswil" ], - "md5": "07963c19369221e3586fc83f4d2dcbb3" + "md5": "9047e65b88a17b58a4b8af14d8a72cd2" }, { "authorized_access_point": "Dreikaiserba\u0308der", @@ -17017,6 +16650,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/wiki/Heringsdorf" ] + }, + { + "noteType": "general", + "label": [ + "Seebad auf Usedom, Landkreis Ostvorpommern, 1.1.2005 durch Zusammenschlu\u00df von Ahlbeck, Bansin und Heringsdorf gebildet, 1.1.2006 in Ostseebad Heringsdorf umbenannt" + ] } ], "pid": "975328573", @@ -17040,10 +16679,10 @@ "variant_access_point": [ "Gemeinde Dreikaiserba\u0308der" ], - "md5": "87b226aa58c39ae7657f17e3ffe2a9d8" + "md5": "47b672e395e23e8689a7137ae4f16c4a" }, { - "authorized_access_point": "Amt Haderslev", + "authorized_access_point": "Amt Haderslev - West", "identifiedBy": [ { "source": "GND", @@ -17072,10 +16711,10 @@ "Amt Hadersleben", "Hadersleben (Amt)" ], - "md5": "4ea14699ef823b518c8589b14987d9e9" + "md5": "18ecf0abfd1ffffcd008f1708ab35207" }, { - "authorized_access_point": "Amt Haderslev", + "authorized_access_point": "Amt Haderslev - Ost", "identifiedBy": [ { "source": "GND", @@ -17104,10 +16743,10 @@ "Amt Hadersleben", "Hadersleben (Amt)" ], - "md5": "eeb77cf05e336e34186718d8c1122c75" + "md5": "c0da04768701d5ed46358a542474aa1c" }, { - "authorized_access_point": "Rayyis", + "authorized_access_point": "Rayyis - Region", "identifiedBy": [ { "source": "GND", @@ -17127,10 +16766,10 @@ ], "pid": "973071648", "type": "bf:Place", - "md5": "6f386d6d9329612e1718566644dbaf2c" + "md5": "5aa63b493244156b664a1b68c1916cd5" }, { - "authorized_access_point": "Saudi-Arabien", + "authorized_access_point": "Saudi-Arabien - Nordost", "identifiedBy": [ { "source": "GND", @@ -17155,10 +16794,10 @@ "authorized_access_point": "Saudi-Arabien" } ], - "md5": "7bf43d4e23da945dc1e138ca1c867e45" + "md5": "724d28d127383c006795d68d34b82a65" }, { - "authorized_access_point": "Saudi-Arabien", + "authorized_access_point": "Saudi-Arabien - Nord", "identifiedBy": [ { "source": "GND", @@ -17183,10 +16822,10 @@ "authorized_access_point": "Saudi-Arabien" } ], - "md5": "7342145255b4e5c5ebde079a52560b68" + "md5": "53f535d5acb14a5df9bfa7b177d1f9af" }, { - "authorized_access_point": "Riad", + "authorized_access_point": "Riad - Region", "identifiedBy": [ { "source": "GND", @@ -17206,7 +16845,7 @@ ], "pid": "973040149", "type": "bf:Place", - "md5": "0af6dab7252c65b264bb1c67c5d9a177" + "md5": "50b0011b9ff17d275fcedd50d4d48ff6" }, { "authorized_access_point": "Kirchstetten (Neulengbach)", @@ -17233,6 +16872,12 @@ "label": [ "Homepage - http://www.kirchstetten.at" ] + }, + { + "noteType": "general", + "label": [ + "Gleichnamige Katastralgemeinde. - Postleitzahl: 3062, 3061" + ] } ], "pid": "972651438", @@ -17246,7 +16891,7 @@ "Marktgemeinde Kirchstetten", "Dichtergemeinde Kirchstetten" ], - "md5": "e13ce9beccb1e86cbb58c8f5db6dd832" + "md5": "52f0e3748e4b4dd32145b4070a6e2ace" }, { "authorized_access_point": "Berg (Hainburg an der Donau)", @@ -17279,22 +16924,10 @@ "authorized_access_point": "Hainburg an der Donau" } ], - "md5": "41c3e4005a9a84bd133cc142c49a4510" + "md5": "3994d5abf7f7487d4e572011765bbdff" }, { "authorized_access_point": "Melanchthonkirche (Bochum)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Baudenkmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -17333,17 +16966,10 @@ "variant_access_point": [ "Melanchthonkirche (Bochum-Wiemelhausen)" ], - "md5": "08f6593a2cd14ded611afcbd5811ee35" + "md5": "4f06ac12c7b1deea9c0baaa33aacbcff" }, { "authorized_access_point": "Bezirk Bern", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Bezirk" - } - ], "identifiedBy": [ { "source": "GND", @@ -17361,6 +16987,14 @@ "value": "(DE-588)4781902-9" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Bezirk im Kanton Bern" + ] + } + ], "pid": "971359709", "type": "bf:Place", "variant_access_point": [ @@ -17368,10 +17002,10 @@ "Amtsbezirk Bern", "Bern (Bezirk)" ], - "md5": "788094b3dd33d33a9126b236c624f171" + "md5": "e912c627e4ab71389ea632b904781bf5" }, { - "authorized_access_point": "Anjouan (Insel)", + "authorized_access_point": "Anjouan (Insel) - Nord", "identifiedBy": [ { "source": "GND", @@ -17396,7 +17030,7 @@ "authorized_access_point": "Anjouan (Insel)" } ], - "md5": "4441d1df45d5056aba9fa1593ea5523f" + "md5": "8ae40fa0b33b10f4f62df56d57ea1931" }, { "authorized_access_point": "Sakaka", @@ -17417,6 +17051,14 @@ "value": "(DE-588)4764706-1" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadt im Norden Saudi-Arabiens" + ] + } + ], "pid": "969971028", "type": "bf:Place", "variant_access_point": [ @@ -17424,7 +17066,7 @@ "Ska\u0304ka", "Saka\u0304ka" ], - "md5": "5cca7318833960374151fd49506f67fe" + "md5": "ded2d6c18d21039a6d07d438a1a04c7b" }, { "authorized_access_point": "Ushayqir", @@ -17445,12 +17087,20 @@ "value": "(DE-588)4758499-3" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadt in Saudi-Arabien" + ] + } + ], "pid": "969491131", "type": "bf:Place", "variant_access_point": [ "Us\u030caiqir" ], - "md5": "013c2ed04e336f224c6844f2fcac29d3" + "md5": "6e6026077d121defafdedc66953484ba" }, { "authorized_access_point": "Sayha\u0304t", @@ -17471,13 +17121,21 @@ "value": "(DE-588)4734021-6" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadt in der Provinz as\u030c-S\u030carqi\u0304ya in Saudi-Arabien" + ] + } + ], "pid": "967753546", "type": "bf:Place", "variant_access_point": [ "Si\u0304ha\u0304t", "Saiha\u0304t" ], - "md5": "85423fa53ebc7bae0fde3f50b9ede918" + "md5": "8454c5c786c4c0b35c11d40812643321" }, { "authorized_access_point": "O\u0308tigheim", @@ -17505,6 +17163,12 @@ "Homepage - https://www.oetigheim.de/", "Wikipedia - https://de.wikipedia.org/w/index.php?title=%C3%96tigheim&oldid=246016894" ] + }, + { + "noteType": "general", + "label": [ + "Gemeinde im Landkreis Rastatt" + ] } ], "pid": "967681952", @@ -17512,17 +17176,10 @@ "variant_access_point": [ "Gemeinde O\u0308tigheim" ], - "md5": "507e14607c699f2944cfc2d4006baff2" + "md5": "4a2fed0ef08500af94e1e1d134a3a9ad" }, { "authorized_access_point": "Goethewanderweg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wanderweg" - } - ], "identifiedBy": [ { "source": "GND", @@ -17546,6 +17203,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Goethewanderweg_Ilmenau%E2%80%93St%C3%BCtzerbach&oldid=242625559" ] + }, + { + "noteType": "general", + "label": [ + "18,5 km lang, 1970 angelegt" + ] } ], "pid": "967581176", @@ -17561,17 +17224,10 @@ "variant_access_point": [ "Goethe-Wanderweg" ], - "md5": "b4485ccb6e2735211d94937f1cbfdc95" + "md5": "624ba00ab201502fe62b855e394a09a3" }, { "authorized_access_point": "Nationalpark Eifel", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Nationalpark" - } - ], "identifiedBy": [ { "source": "GND", @@ -17595,6 +17251,12 @@ "label": [ "Homepage - https://www.nationalpark-eifel.de" ] + }, + { + "noteType": "general", + "label": [ + "Nationalpark im Gebiet um den Truppenu\u0308bungsplatz Vogelsang mit den Waldgebieten Kermeter und Dedenborn, ero\u0308ffnet am 11.1.2004" + ] } ], "pid": "967180953", @@ -17604,7 +17266,7 @@ "authorized_access_point": "Nordrhein-Westfalen" } ], - "md5": "05086ca35923ecc619fcf472e848606d" + "md5": "57900ebbc2115c164e8a44fcf593e759" }, { "authorized_access_point": "Leipzig-Miltitz", @@ -17625,6 +17287,14 @@ "value": "(DE-588)4725054-9" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadtteil von Leipzig seit 1.1.1999" + ] + } + ], "pid": "967160480", "type": "bf:Place", "related": [ @@ -17638,7 +17308,7 @@ "variant_access_point": [ "Miltitz (Leipzig)" ], - "md5": "1f9f5fb2fe8a0f43e4ed71e742275763" + "md5": "f59240674954c145d83e1f6d694f2552" }, { "authorized_access_point": "Leipzig- Innere Westvorstadt", @@ -17659,6 +17329,14 @@ "value": "(DE-588)4710588-4" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Wohn-, Ku\u0308nstler- und Kneipenviertel an Westrand des Stadtzentrums angrenzend" + ] + } + ], "pid": "96577578X", "type": "bf:Place", "related": [ @@ -17671,7 +17349,7 @@ "Leipzig-Kolonnadenviertel", "Kolonnadenviertel (Leipzig)" ], - "md5": "5be01ab8c4afd9919019b2764b8fa55e" + "md5": "f8e957c50d425a7dd7fff12e91569fdb" }, { "authorized_access_point": "Leipzig-Abtnaundorf", @@ -17692,6 +17370,14 @@ "value": "(DE-588)4710572-0" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadtteil im Nordosten Leipzigs seit 1930" + ] + } + ], "pid": "965775429", "type": "bf:Place", "related": [ @@ -17705,7 +17391,7 @@ "variant_access_point": [ "Abtnaundorf (Leipzig)" ], - "md5": "0d81132e7928698b5ac5852971f2a3d6" + "md5": "d19b4f9fc7de2e4b88d4f04f46c9dfec" }, { "authorized_access_point": "Leipzig-Wahren", @@ -17739,7 +17425,7 @@ "variant_access_point": [ "Wahren (Leipzig)" ], - "md5": "bccb95ce32ab851915ea2c24841d5490" + "md5": "422aacdec32e520f2a465a4050c46f7e" }, { "authorized_access_point": "Leipzig-Neustadt-Neuscho\u0308nefeld", @@ -17760,6 +17446,14 @@ "value": "(DE-588)4710355-3" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteile von Leipzig 18.3.1992 administrativ zusammengelegt" + ] + } + ], "pid": "965759059", "type": "bf:Place", "related": [ @@ -17773,7 +17467,7 @@ "variant_access_point": [ "Neustadt-Neuscho\u0308nefeld (Leipzig)" ], - "md5": "0d6704d15962397a055fb49614a00304" + "md5": "cf4c427b64b0ed10e418db4f5f657a50" }, { "authorized_access_point": "Leipzig-Volkmarsdorf", @@ -17794,6 +17488,14 @@ "value": "(DE-588)4710342-5" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil seit 1890" + ] + } + ], "pid": "96575877X", "type": "bf:Place", "related": [ @@ -17807,7 +17509,7 @@ "variant_access_point": [ "Volkmarsdorf (Leipzig)" ], - "md5": "9b825ad67bf6db7f4637ef0e00c170a1" + "md5": "18c4d13fbaa4735088bd9cf74c6438e5" }, { "authorized_access_point": "Leipzig- A\u0308u\u00dfere Su\u0308dvorstadt", @@ -17828,6 +17530,14 @@ "value": "(DE-588)4708270-7" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Gebiet zwischen Innerer Su\u0308dvorstadt und Connewitz" + ] + } + ], "pid": "96563860X", "type": "bf:Place", "related": [ @@ -17838,7 +17548,7 @@ "variant_access_point": [ "A\u0308u\u00dfere Su\u0308dvorstadt (Leipzig)" ], - "md5": "1ef96084966b91e680fe7828702a0ab4" + "md5": "76f4d71d20e3e33c866242c2064839bf" }, { "authorized_access_point": "Les Ponts-de-Martel", @@ -17859,6 +17569,14 @@ "value": "(DE-588)4696241-4" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Gemeinde im Kt. Neuenburg" + ] + } + ], "pid": "964991608", "type": "bf:Place", "variant_access_point": [ @@ -17866,28 +17584,10 @@ "LesPonts-de-Martel", "Ponts-de-Martel" ], - "md5": "aa5855e051d30f17856469f28a682594" + "md5": "e078518f05d6f55b2e0b34ea194a81f0" }, { "authorized_access_point": "Amt Vejle", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Amt" - } - ], - "closeMatch": [ - { - "authorized_access_point": "Vejle (Amt)", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)997977485", - "source": "(DE-101)997977485" - } - } - ], "identifiedBy": [ { "source": "GND", @@ -17905,6 +17605,32 @@ "value": "(DE-588)4685636-5" } ], + "exactMatch": [ + { + "authorized_access_point": "Vejle (Amt)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)997977485" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "094419019" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Ehemaliges Amt in der Region Su\u0308dda\u0308nemark" + ] + } + ], "pid": "964462427", "type": "bf:Place", "related": [ @@ -17922,7 +17648,7 @@ "Vejle Amt", "Vejle Amtskommune" ], - "md5": "37edbcb66cfd8db91dd3df6731d0bfb5" + "md5": "465be8f8dccc757f156fbfaeec653a25" }, { "authorized_access_point": "Leipzig-Anger-Crottendorf", @@ -17956,10 +17682,10 @@ "variant_access_point": [ "Anger-Crottendorf (Leipzig)" ], - "md5": "786c99e172022f148b657a1e4e6e1d9a" + "md5": "7553b57fcede490fc0bb8e72caa6c587" }, { - "authorized_access_point": "Saudi-Arabien", + "authorized_access_point": "Saudi-Arabien - Nordwest", "identifiedBy": [ { "source": "GND", @@ -17987,7 +17713,7 @@ "variant_access_point": [ "Nordwestliches Saudi-Arabien" ], - "md5": "3d7fdee92f95edfa7797c6c5f381653f" + "md5": "d5715df519e83a66a30307ba80d2fd49" }, { "authorized_access_point": "Aalen-Hofen", @@ -18008,6 +17734,14 @@ "value": "(DE-588)4676373-9" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadtteil von Aalen, bis 1972 selbsta\u0308ndig, 1972 zu Wasseralfingen eingemeindet, 1975 mit diesem nach Aalen" + ] + } + ], "pid": "963957635", "type": "bf:Place", "related": [ @@ -18018,27 +17752,10 @@ "variant_access_point": [ "Hofen (Aalen-Hofen)" ], - "md5": "aae203a3b78f259bc3ce22838b2f7970" + "md5": "f5e72f30f800d7bdb8dd9e9e21569f1a" }, { "authorized_access_point": "Jakobus-Kirche Breckerfeld (Breckerfeld)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Basilika" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Baudenkmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -18062,6 +17779,12 @@ "label": [ "Internet - http://www.ev-kg-breckerfeld.de/j-kg/?page_id=71" ] + }, + { + "noteType": "general", + "label": [ + "Im 14. Jh. entstandene Kirche in Breckerfeld (Ennepe-Ruhr-Kreis, Westfalen), einzige gotische Basilika Westfalens, ehem. kath. Pfarrkirche St. Jakobus" + ] } ], "pid": "963614673", @@ -18077,7 +17800,7 @@ "Evangelische Jakobus-Kirche (Breckerfeld)", "Ev. Kirche (Breckerfeld)" ], - "md5": "f6d453d51f32b1e66905809f80dd4f1b" + "md5": "77ddc04df162f2d62889b0ec157f1bc3" }, { "authorized_access_point": "Scheidegg-Scheffau", @@ -18108,17 +17831,10 @@ "variant_access_point": [ "Scheffau (Scheidegg)" ], - "md5": "a1cf916095e4c7f74b472e733f80a3ac" + "md5": "b44bbc0d5115dce00d5db715c7b3025a" }, { "authorized_access_point": "Schloss Ko\u0308niz (Ko\u0308niz)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - } - ], "identifiedBy": [ { "source": "GND", @@ -18143,22 +17859,10 @@ "authorized_access_point": "Ko\u0308niz" } ], - "md5": "467bc6510b8fcaec3b5e6e3536b1a0e9" + "md5": "b48eb1ffc8cbb970c758e9a5f61501ac" }, { "authorized_access_point": "Manasija", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Klosteranlage" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Befestigung" - } - ], "identifiedBy": [ { "source": "GND", @@ -18182,6 +17886,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=161519644" ] + }, + { + "noteType": "general", + "label": [ + "liegt in den Homolje-Bergen nahe der Sta\u0308dte Jagodina und Despotovac" + ] } ], "pid": "962048879", @@ -18199,7 +17909,7 @@ "Klosteranlage Manasija", "Klosteranlage Resava" ], - "md5": "9a6e166c840fd5e64d2efb6e6e9479ca" + "md5": "b61edcae609827c27e60c235b442d326" }, { "authorized_access_point": "Leipzig-Plau\u00dfig", @@ -18233,7 +17943,7 @@ "variant_access_point": [ "Plau\u00dfig (Leipzig)" ], - "md5": "51403ab1c4d5f6477f6131e0fcf14802" + "md5": "fcceb2d12ad310ca1fd89d2322b47f07" }, { "authorized_access_point": "Leipzig-Lindenthal", @@ -18260,6 +17970,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Lindenthal_(Leipzig)&oldid=225715822" ] + }, + { + "noteType": "general", + "label": [ + "Ortsteil von Leipzig seit 1.1.1999" + ] } ], "pid": "961594497", @@ -18275,7 +17991,7 @@ "variant_access_point": [ "Lindenthal (Leipzig)" ], - "md5": "681ecbfe5d99018e56bcd804b6dfe3bf" + "md5": "5da6fb4069c320ea4b2644cde9c2eede" }, { "authorized_access_point": "Leipzig-Wiederitzsch", @@ -18309,7 +18025,7 @@ "variant_access_point": [ "Wiederitzsch (Leipzig)" ], - "md5": "3135b85e324070babaa15a8bb6681101" + "md5": "9e3fff037b3ea4cc3e0a3d2483ef4a12" }, { "authorized_access_point": "Zawido\u0301w", @@ -18336,6 +18052,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/wiki/Zawid%C3%B3w" ] + }, + { + "noteType": "general", + "label": [ + "Seidenberg liegt seit 1945 im polnischen Teil der Oberlausitz" + ] } ], "pid": "961395923", @@ -18345,7 +18067,7 @@ "Seidenberg O.-L", "Zawidow" ], - "md5": "b7b5d7cb146257ea632803c2e279238f" + "md5": "cd0811a3182bb81c55c80a1a894d9cc7" }, { "authorized_access_point": "Leipzig-Seehausen", @@ -18366,6 +18088,14 @@ "value": "(DE-588)4624158-9" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil seit 1.7.1997" + ] + } + ], "pid": "960863664", "type": "bf:Place", "related": [ @@ -18379,7 +18109,7 @@ "variant_access_point": [ "Seehausen (Leipzig)" ], - "md5": "b03ee9bf840a24176b6c2855c9b8878c" + "md5": "fbd602a726dceb21fd2aa12f9c9780a0" }, { "authorized_access_point": "Leipzig-Marienbrunn", @@ -18410,10 +18140,10 @@ "variant_access_point": [ "Marienbrunn (Leipzig)" ], - "md5": "cb61f9ea388e94aa88fe6921787c17da" + "md5": "55507b1861e7979fe1c03d6cdbaba203" }, { - "authorized_access_point": "Leipzig-Halle-Bitterfeld", + "authorized_access_point": "Leipzig-Halle-Bitterfeld - Region", "identifiedBy": [ { "source": "GND", @@ -18431,6 +18161,14 @@ "value": "(DE-588)4617642-1" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ballungsraum Leipzig-Halle(Saale)-Bitterfeld, ehemals \"Chemiedreieck\" in Mittelsachsen" + ] + } + ], "pid": "960396268", "type": "bf:Place", "variant_access_point": [ @@ -18439,7 +18177,7 @@ "Bitterfeld-Leipzig-Halle-Gebiet", "Chemiedreieck" ], - "md5": "182815cd442767d0b893a7483da9e197" + "md5": "8070af58bfbc15bd1856d5ab0592c4f2" }, { "authorized_access_point": "Leipzig-Burghausen", @@ -18460,6 +18198,14 @@ "value": "(DE-588)4611475-0" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadtteil von Leipzig im Stadtbezirk Alt-West seit 1.1.2000, 1.1.1994-31.12.1999 Ortsteil von Bienitz, fru\u0308her Ort im Kreis Leipzig" + ] + } + ], "pid": "960085726", "type": "bf:Place", "related": [ @@ -18473,7 +18219,7 @@ "variant_access_point": [ "Burghausen (Leipzig)" ], - "md5": "523bf5fc8538a12f15f4660d7de19e47" + "md5": "a3ea8392e8a6c1864df473db5a27e091" }, { "authorized_access_point": "Finnentrop-Ostentrop", @@ -18500,6 +18246,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Ostentrop&oldid=243213300" ] + }, + { + "noteType": "general", + "label": [ + "Seit 01.07.1969 Ortsteil von Finnentrop (Kreis Olpe), vorher selbststa\u0308ndig" + ] } ], "pid": "959934464", @@ -18512,17 +18264,10 @@ "authorized_access_point": "Ostentrop" } ], - "md5": "0e8d2b039230e5c7d7562331a10202f6" + "md5": "1d8683b72eb1bf39215c3bcb3bbe878e" }, { "authorized_access_point": "Kaunas (Gouvernement)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gouvernement" - } - ], "identifiedBy": [ { "source": "GND", @@ -18547,7 +18292,7 @@ "Gouvernement Kovno", "Gouvernement Kaunas" ], - "md5": "379f36e73f856df0785bc3c3352d15a9" + "md5": "3f714ee241a3641566b2bf0e6dbeaae8" }, { "authorized_access_point": "Leipzig-Plau\u00dfig-Portitz", @@ -18568,6 +18313,14 @@ "value": "(DE-588)4605550-2" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteile seit 1995" + ] + } + ], "pid": "959788719", "type": "bf:Place", "related": [ @@ -18584,7 +18337,7 @@ "variant_access_point": [ "Plau\u00dfig-Portitz (Leipzig)" ], - "md5": "8e1f15443b2f14cbbc2660f139d6ff05" + "md5": "9926768b921e2715ae150d7d7d02070b" }, { "authorized_access_point": "Monroe, Wis.", @@ -18615,28 +18368,10 @@ ], "pid": "959747575", "type": "bf:Place", - "md5": "03ffa3371f6cce678363a44b14e1fcd2" + "md5": "c9cab7704aaa2670a3d95a115f7cb61d" }, { "authorized_access_point": "Woiwodschaft Lebus", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Woiwodschaft" - } - ], - "closeMatch": [ - { - "authorized_access_point": "Lubuskie (Woiwodschaft)", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)992104130", - "source": "(DE-101)992104130" - } - } - ], "identifiedBy": [ { "source": "GND", @@ -18654,13 +18389,40 @@ "value": "(DE-588)4596737-4" } ], + "exactMatch": [ + { + "authorized_access_point": "Lubuskie (Woiwodschaft)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992104130" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "094409730" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "seit 1999 gro\u00dfe Teile der ehem. W. Gru\u0308nberg u. Landsberg, sowie einen kleinen Teil der ehem. W. Lissa", + "Ansetzung abweichend von \u00a7 441,1" + ] + } + ], "pid": "959369872", "type": "bf:Place", "variant_access_point": [ "Wojewo\u0301dztwo Lubuskie", "Lebus (Woiwodschaft)" ], - "md5": "d1ee2aea7e324b26bad6190d3eeeb16c" + "md5": "adfd78d080a60ad14fcb8cced9feabe7" }, { "authorized_access_point": "Bedum", @@ -18701,17 +18463,10 @@ "Gemeente Bedum", "Het Hogeland- Bedum" ], - "md5": "cd56412dfcbee836b0f19415e3c7cb43" + "md5": "3453afd5790cde7ebb9a0ed8f59dc544" }, { "authorized_access_point": "Schloss Schwante", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Schloss" - } - ], "identifiedBy": [ { "source": "GND", @@ -18735,6 +18490,12 @@ "label": [ "H hist. Sta\u0308tten; Internet - http://www.schwante.de/schloesser.htm" ] + }, + { + "noteType": "general", + "label": [ + "Erbaut auf einer mittelalterlichen Burganlage zwischen 1741 und 1743." + ] } ], "pid": "958014639", @@ -18744,17 +18505,10 @@ "authorized_access_point": "Schwante" } ], - "md5": "3548878b688326e370789ca34ce0b8d4" + "md5": "3045884bb29ef102d77cb0d0a40301c3" }, { "authorized_access_point": "Anjouan (Insel)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Insel" - } - ], "identifiedBy": [ { "source": "GND", @@ -18772,6 +18526,14 @@ "value": "(DE-588)4566491-2" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Insel der Komoren" + ] + } + ], "pid": "957753551", "type": "bf:Place", "broader": [ @@ -18783,7 +18545,7 @@ "Nwami", "Ndzouani" ], - "md5": "320da56e02e0c900d7295f1980e8bb8b" + "md5": "7322ca1a41b616d182205c91473e7d82" }, { "authorized_access_point": "Wabar", @@ -18804,12 +18566,20 @@ "value": "(DE-588)4562198-6" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Legenda\u0308re versunkene Stadt in d. Rub al-Khali vermutet, in Oman ausgegraben" + ] + } + ], "pid": "957586973", "type": "bf:Place", "variant_access_point": [ "Ubar" ], - "md5": "79fcba2ce339be2a31759e9e83aa43b6" + "md5": "0e7de845bcca32b8de35190ae640547d" }, { "authorized_access_point": "Leipzig-Mockau", @@ -18830,6 +18600,14 @@ "value": "(DE-588)4561624-3" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadtteil im Nordosten Leipzigs seit 1915" + ] + } + ], "pid": "957565445", "type": "bf:Place", "related": [ @@ -18843,7 +18621,7 @@ "variant_access_point": [ "Mockau (Leipzig)" ], - "md5": "23f2de3394c0d58856b0e17593bef545" + "md5": "ae20c8fef875c66c9d1f621b99abb53e" }, { "authorized_access_point": "Drebkau", @@ -18864,6 +18642,14 @@ "value": "(DE-588)4555925-9" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadt im Kreis Spree-Nei\u00dfe, Brandenburg" + ] + } + ], "pid": "957211430", "type": "bf:Place", "variant_access_point": [ @@ -18872,7 +18658,7 @@ "Bz\u0301ezamtowa Gmejna Me\u030csto Drjowk", "Drepkau" ], - "md5": "217e404a9b653db388d311ca5b4c1abd" + "md5": "aa6429a30076d24d68d9c78c5a1d4ed2" }, { "authorized_access_point": "Leipzig-Engelsdorf", @@ -18906,7 +18692,7 @@ "variant_access_point": [ "Engelsdorf (Leipzig)" ], - "md5": "b567c9ca4033c1f96204a4e9eb887efc" + "md5": "94267b9d4d33ff2157466fa82414496d" }, { "authorized_access_point": "Leipzig-Baalsdorf", @@ -18948,7 +18734,7 @@ "variant_access_point": [ "Baalsdorf (Leipzig)" ], - "md5": "e3141961edec8cf1f9acb139bb84eb44" + "md5": "d83a74447b808ed1f894a80f5d98f098" }, { "authorized_access_point": "Leipzig-Liebertwolkwitz", @@ -18969,6 +18755,14 @@ "value": "(DE-588)5312244-6" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadtteil von Leipzig seit 1.1.1999" + ] + } + ], "pid": "956443613", "type": "bf:Place", "related": [ @@ -18982,7 +18776,7 @@ "variant_access_point": [ "Liebertwolkwitz (Leipzig)" ], - "md5": "5b6312b235898c118b46940bd9d0b07a" + "md5": "dd356fc7144b91f0e8c05845806b4956" }, { "authorized_access_point": "Leipzig-Mockau-Ost", @@ -19013,7 +18807,7 @@ "variant_access_point": [ "Mockau-Ost" ], - "md5": "574d49fcd267cf575dec8846263583b8" + "md5": "8fccf470045870d7adf065974cb5198a" }, { "authorized_access_point": "Deiningen", @@ -19041,11 +18835,17 @@ "Homepage - https://www.deiningen.de/", "Wikipedia - https://de.wikipedia.org/wiki/Deiningen" ] + }, + { + "noteType": "general", + "label": [ + "Ort im Landkreis Donau-Ries, Schwaben, seit Urnenfelderkultur (1300-800 v.Chr.) besiedelt, 760 urkundl. erwa\u0308hnt" + ] } ], "pid": "955820049", "type": "bf:Place", - "md5": "96238bd3523140aa55af00cf9af8117e" + "md5": "9c2456d513b33a0f00e1a141757fe3ce" }, { "authorized_access_point": "Leipzig-Althen", @@ -19079,7 +18879,7 @@ "variant_access_point": [ "Althen (Leipzig)" ], - "md5": "a1051065a2b7db3df40250b3278a40d2" + "md5": "f8cfb8f8222f7b9fc9fca2aff3f69dc4" }, { "authorized_access_point": "Leipzig-Thonberg", @@ -19100,6 +18900,14 @@ "value": "(DE-588)4527974-3" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadtteil von Leipzig seit 1890" + ] + } + ], "pid": "955498058", "type": "bf:Place", "related": [ @@ -19113,7 +18921,7 @@ "variant_access_point": [ "Thonberg (Leipzig)" ], - "md5": "b0758a74eaaa88dc211c464b598ffe42" + "md5": "eddf1c5f2c0ce14988b95ae88a467597" }, { "authorized_access_point": "Rabenstein an der Pielach", @@ -19140,6 +18948,12 @@ "label": [ "Homepage - http://www.rabenstein.gv.at" ] + }, + { + "noteType": "general", + "label": [ + "Marktgemeinde im Bezirk Sankt Po\u0308lten-Land, Niedero\u0308sterreich" + ] } ], "pid": "955495768", @@ -19148,7 +18962,7 @@ "Rabenstein (Pielach)", "Marktgemeinde Rabenstein an der Pielach" ], - "md5": "ea61d2e9f6cf30f07f5bad3cf209a678" + "md5": "f27ff59fcf89f80b3c5ccef074c962c8" }, { "authorized_access_point": "Gru\u0308nberg-Lehnheim", @@ -19169,6 +18983,14 @@ "value": "(DE-588)3035028-1" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil von Gru\u0308nberg im Landkreis Gie\u00dfen, Hessen" + ] + } + ], "pid": "955090547", "type": "bf:Place", "related": [ @@ -19183,7 +19005,7 @@ "Gru\u0308nberg (Landkreis Gie\u00dfen-Lehnheim)", "Lehnheim (Gru\u0308nberg-Lehnheim)" ], - "md5": "5e31179f2829c92da20a444b2796a446" + "md5": "d921b1284bacd10d9dffd8f63b3c8b34" }, { "authorized_access_point": "Hochkirch-Pommritz", @@ -19223,7 +19045,7 @@ "Pommritz (Hochkirch-Pommritz)", "Bukecy-Pomorcy" ], - "md5": "ffb8bf12185806674f678af675b5bc4a" + "md5": "8aee686ff4f589a83272de692d43e2ad" }, { "authorized_access_point": "Leipzig-West", @@ -19251,7 +19073,7 @@ "authorized_access_point": "Leipzig" } ], - "md5": "13b1bb7dad0d78c2398367a652d02d43" + "md5": "67d76ce4ac1e21bfc2f0cafeb2ef98bb" }, { "authorized_access_point": "Cressier (Kanton Neuenburg)", @@ -19272,6 +19094,14 @@ "value": "(DE-588)4508222-4" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Politische Gemeinde im Kanton Neuenburg" + ] + } + ], "pid": "954064593", "type": "bf:Place", "broader": [ @@ -19279,17 +19109,10 @@ "authorized_access_point": "Kanton Neuenburg" } ], - "md5": "a76ef4c4feb750fe9ed1881ae5b5a84f" + "md5": "0b50ed55290d7e628bad3af6c0bf1fd5" }, { "authorized_access_point": "Kirche im Walde (Heringsdorf, Seebad)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Saalkirche" - } - ], "identifiedBy": [ { "source": "GND", @@ -19307,6 +19130,14 @@ "value": "(DE-588)4492872-5" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Saalkirche 1848 nach Pla\u0308nen von L. Persius erbaut, ausgefu\u0308hrt von Otto Baensch" + ] + } + ], "pid": "953168697", "type": "bf:Place", "broader": [ @@ -19317,7 +19148,7 @@ "variant_access_point": [ "Evangelische Kirche im Walde (Heringsdorf, Seebad)" ], - "md5": "86b41b6906013dbd5250fbb311ed31b2" + "md5": "baa605ce08c29a0123c6c29f8a17bde3" }, { "authorized_access_point": "Leipzig-Reudnitz", @@ -19351,17 +19182,10 @@ "variant_access_point": [ "Reudnitz (Leipzig)" ], - "md5": "1c785418c4e14d425dd305f3efd00980" + "md5": "68719d54bf7858ed00d3c2230c333293" }, { "authorized_access_point": "Amt Fyn", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Amt" - } - ], "identifiedBy": [ { "source": "GND", @@ -19385,6 +19209,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=228930289" ] + }, + { + "noteType": "general", + "label": [ + "Fyns Amt war eine da\u0308nische Amtskommune." + ] } ], "pid": "952110512", @@ -19410,7 +19240,7 @@ "Fyns Amtskommune", "Fu\u0308nen (Amt)" ], - "md5": "06e969545e95de9295c93457387d512a" + "md5": "7adce53f0f8e8c58a9c91c7ebdb392b4" }, { "authorized_access_point": "Leipzig-Thekla", @@ -19431,6 +19261,14 @@ "value": "(DE-588)4473338-0" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadtteil von Leipzig seit 1930" + ] + } + ], "pid": "951677268", "type": "bf:Place", "related": [ @@ -19444,10 +19282,10 @@ "variant_access_point": [ "Thekla (Leipzig)" ], - "md5": "670b201de7852d5f504e87ffa9428a7f" + "md5": "fc0d268d57410485c4f312b45f8fb757" }, { - "authorized_access_point": "Saudi-Arabien", + "authorized_access_point": "Saudi-Arabien - Su\u0308dwest", "identifiedBy": [ { "source": "GND", @@ -19475,10 +19313,10 @@ "variant_access_point": [ "Su\u0308dwestliches Saudi-Arabien" ], - "md5": "a320fc4473059ecd7f3d961e7f46f4c1" + "md5": "35764173057e81b496d60bf50101be03" }, { - "authorized_access_point": "Saudi-Arabien", + "authorized_access_point": "Saudi-Arabien - West", "identifiedBy": [ { "source": "GND", @@ -19506,10 +19344,10 @@ "variant_access_point": [ "Westliches Saudi-Arabien" ], - "md5": "5130569ae129b569a1793ba0a8dd6c52" + "md5": "e3be0dc272e51d813cf3a62c43da87d6" }, { - "authorized_access_point": "Saudi-Arabien", + "authorized_access_point": "Saudi-Arabien - Su\u0308d", "identifiedBy": [ { "source": "GND", @@ -19537,28 +19375,10 @@ "variant_access_point": [ "Su\u0308dliches Saudi-Arabien" ], - "md5": "22f65ce2a8920e64fb31004f774e77c8" + "md5": "a0792a80662f9f621359af892f2f784c" }, { "authorized_access_point": "Obere-Altmu\u0308hl-Tal", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Tal" - } - ], - "closeMatch": [ - { - "authorized_access_point": "Oberes Altmu\u0308hltal", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)992670160", - "source": "(DE-101)992670160" - } - } - ], "identifiedBy": [ { "source": "GND", @@ -19572,8 +19392,26 @@ }, { "source": "GND", - "type": "bf:Nbn", - "value": "(DE-588)4467681-5" + "type": "bf:Nbn", + "value": "(DE-588)4467681-5" + } + ], + "exactMatch": [ + { + "authorized_access_point": "Oberes Altmu\u0308hltal", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992670160" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "094412634" + } + ] } ], "pid": "95135793X", @@ -19587,7 +19425,7 @@ "Oberes Altmu\u0308hltal", "Obere Altmu\u0308hl" ], - "md5": "cb892bbe68dc5e88b54a07d10b769eb4" + "md5": "e26458c43dc9f8bd677122965323fd1d" }, { "authorized_access_point": "Campos do Jorda\u0303o", @@ -19613,7 +19451,7 @@ "variant_access_point": [ "Campos (Jorda\u0303o)" ], - "md5": "f7c1b273acd824897202bfe7ecb8c043" + "md5": "4f07b00ef709cf9f6f6d47186fa93746" }, { "authorized_access_point": "Leipzig- A\u0308u\u00dfere Su\u0308dostvorstadt", @@ -19634,6 +19472,14 @@ "value": "(DE-588)4456228-7" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Gebiet um Altes Messegela\u0308nde und Bayrischen Bahnhof" + ] + } + ], "pid": "950556149", "type": "bf:Place", "related": [ @@ -19644,7 +19490,7 @@ "variant_access_point": [ "A\u0308u\u00dfere Su\u0308dostvorstadt (Leipzig)" ], - "md5": "0281915eb7f4008de9a8ddb7f35a8a6c" + "md5": "52875ae6872fb8e34461d322bebd7b27" }, { "authorized_access_point": "Leipzig-Scho\u0308nau", @@ -19665,6 +19511,14 @@ "value": "(DE-588)4452671-4" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil von Leipzig seit 1930" + ] + } + ], "pid": "950356190", "type": "bf:Place", "related": [ @@ -19678,7 +19532,7 @@ "variant_access_point": [ "Scho\u0308nau (Leipzig)" ], - "md5": "0d4090de60180bca3e809ced43002740" + "md5": "8f88c04977a1887f7c4c277b003fec3a" }, { "authorized_access_point": "Leipzig-Lausen", @@ -19720,7 +19574,7 @@ "variant_access_point": [ "Lausen (Leipzig)" ], - "md5": "71b8c54cdc458b6783a3672eaef07522" + "md5": "fefe165e28281ce0982a09666fd8b01b" }, { "authorized_access_point": "Leipzig-Gro\u00dfzschocher", @@ -19757,7 +19611,7 @@ "variant_access_point": [ "Gro\u00dfzschocher (Leipzig)" ], - "md5": "3e9a24157d498d879317d60bbe6c894b" + "md5": "b001ef289283a652c5c938e022d88e9c" }, { "authorized_access_point": "Leipzig-Windorf", @@ -19778,6 +19632,14 @@ "value": "(DE-588)4452486-9" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil von Leipzig seit 1922" + ] + } + ], "pid": "950338338", "type": "bf:Place", "related": [ @@ -19794,7 +19656,7 @@ "variant_access_point": [ "Windorf (Leipzig)" ], - "md5": "0d0e44b2fae4be63117d61a1b9e8de06" + "md5": "ebe39659316c99ea420438c681c32703" }, { "authorized_access_point": "Leipzig-Knautkleeberg", @@ -19815,6 +19677,14 @@ "value": "(DE-588)4452484-5" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil von Leipzig seit 1930" + ] + } + ], "pid": "95033829X", "type": "bf:Place", "related": [ @@ -19828,7 +19698,7 @@ "variant_access_point": [ "Knautkleeberg (Leipzig)" ], - "md5": "95814f3fb22983a50e15e6ef22bfbf9c" + "md5": "b55b72204c9c0330d98518a5a9c89940" }, { "authorized_access_point": "Leipzig-Knauthain", @@ -19862,7 +19732,7 @@ "variant_access_point": [ "Knauthain (Leipzig)" ], - "md5": "9910f6e85488c8145ccf0fdea8447e43" + "md5": "ce9d06d67fda5650c5947175c10bdc57" }, { "authorized_access_point": "Leipzig-Meusdorf", @@ -19883,6 +19753,14 @@ "value": "(DE-588)4452479-1" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil von Leipzig seit 1910" + ] + } + ], "pid": "950338184", "type": "bf:Place", "related": [ @@ -19896,7 +19774,7 @@ "variant_access_point": [ "Meusdorf (Leipzig)" ], - "md5": "d780ccb24cb5436c2562c5572ba345e1" + "md5": "385218ba3aab4e982047a90cbb246e55" }, { "authorized_access_point": "Leipzig-Scho\u0308nefeld", @@ -19930,7 +19808,7 @@ "variant_access_point": [ "Scho\u0308nefeld (Leipzig)" ], - "md5": "56d4d59e78b76987b49676768a82ecf7" + "md5": "f18d9daaa2cd9e4030551f228ad1bbc3" }, { "authorized_access_point": "Leipzig-Do\u0308sen", @@ -19951,6 +19829,14 @@ "value": "(DE-588)4452347-6" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil von Leipzig seit 1905" + ] + } + ], "pid": "950332011", "type": "bf:Place", "related": [ @@ -19964,7 +19850,7 @@ "variant_access_point": [ "Do\u0308sen (Leipzig)" ], - "md5": "a2e37d8709056c648394ead8dd6de915" + "md5": "eb64b9c7ec0d8331d6d88a9409893106" }, { "authorized_access_point": "Leipzig-Probstheida", @@ -19998,7 +19884,7 @@ "variant_access_point": [ "Probstheida (Leipzig)" ], - "md5": "8a6d8a6a292da0a5781ae02f18fb2fed" + "md5": "8bff57ad10c19e8e0f5524275d9cf9dc" }, { "authorized_access_point": "Leipzig-Sto\u0308tteritz", @@ -20032,7 +19918,7 @@ "variant_access_point": [ "Sto\u0308tteritz (Leipzig)" ], - "md5": "cef5b66b30993156bc65fd9898d9cca5" + "md5": "4445b44b31dd42ccaf8bf8335a804ed4" }, { "authorized_access_point": "Leipzig-Schleu\u00dfig", @@ -20053,6 +19939,14 @@ "value": "(DE-588)4450192-4" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil von Leipzig" + ] + } + ], "pid": "95020109X", "type": "bf:Place", "related": [ @@ -20067,7 +19961,7 @@ "Schleu\u00dfig (Leipzig)", "Leipzig-Schleussig" ], - "md5": "27c408f7914064749411cf5a8b62519b" + "md5": "550cf51ff2b008e3116a816e217473f3" }, { "authorized_access_point": "Leipzig-Kleinzschocher", @@ -20103,17 +19997,10 @@ "Leipzig-Kl.-Zschocher", "Leipzig-Zschocher" ], - "md5": "9c34b9847e76b38d6f3990f02b457551" + "md5": "3283e391acc6eda22043e5b7919f2933" }, { "authorized_access_point": "Verso\u0308hnungskirche (Dachau)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -20131,6 +20018,14 @@ "value": "(DE-588)4450115-8" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Evangelische Kirche im ehemaligen Konzentrationslager, 1967 erbaut" + ] + } + ], "pid": "950199214", "type": "bf:Place", "broader": [ @@ -20138,16 +20033,10 @@ "authorized_access_point": "Dachau" } ], - "md5": "e347504e06b592b0072970df20074930" + "md5": "06cb5216febe965ae5169208591605ec" }, { "authorized_access_point": "Pjatigorsk", - "closeMatch": [ - { - "authorized_access_point": "\u041f\u044f\u0442\u0438\u0433\u043e\u0440\u0441\u043a", - "source": "GND" - } - ], "identifiedBy": [ { "source": "GND", @@ -20180,7 +20069,7 @@ "Pjatigorsk (Stavropolkreis)", "\u041f\u044f\u0442\u0438\u0433\u043e\u0440\u0441\u043a (\u0421\u0442\u0430\u0432\u0440\u043e\u043f\u043e\u043b\u044c\u0441\u043a\u0438\u0438\u0306 \u043a\u0440\u0430\u0438\u0306)" ], - "md5": "f16266b338f877a6cad3227bb7b12a50" + "md5": "0b5b01c20371e532e28abf9f0fdeca17" }, { "authorized_access_point": "Leipzig-Sellerhausen-Stu\u0308nz", @@ -20225,7 +20114,7 @@ "variant_access_point": [ "Sellerhausen-Stu\u0308nz (Leipzig)" ], - "md5": "31b0f0226caae1452216c2b6adcf8c6c" + "md5": "5f839e3acae75bf19c65f625e967317a" }, { "authorized_access_point": "Bieberbach (Egloffstein)", @@ -20256,7 +20145,7 @@ "authorized_access_point": "Egloffstein-Bieberbach" } ], - "md5": "de19a199fab063da67d5328f59aa5d80" + "md5": "e0edf9d821c27aefa06fd2c84dac5e7c" }, { "authorized_access_point": "Hartenstein (Landkreis Zwickau)", @@ -20277,6 +20166,14 @@ "value": "(DE-588)4440677-0" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Kleinstadt im Lkr. Zwickau" + ] + } + ], "pid": "949641804", "type": "bf:Place", "broader": [ @@ -20290,10 +20187,10 @@ "Hartenstein", "Hartenstein bei Zwickau" ], - "md5": "45c80d942538f6f2a2559e250a75b361" + "md5": "99812f10ee4b84f365ce791daee3d7db" }, { - "authorized_access_point": "Rub al-Khali", + "authorized_access_point": "Rub al-Khali - Su\u0308d", "identifiedBy": [ { "source": "GND", @@ -20321,10 +20218,10 @@ "variant_access_point": [ "Su\u0308dliche Rub al-Khali" ], - "md5": "61891b34db4cd277dc04fd33d32b857c" + "md5": "8466c10d7cb6e117f20539dfa5b64f56" }, { - "authorized_access_point": "Rub al-Khali", + "authorized_access_point": "Rub al-Khali - Nordost", "identifiedBy": [ { "source": "GND", @@ -20352,10 +20249,10 @@ "variant_access_point": [ "Nordo\u0308stliche Rub al-Khali" ], - "md5": "1834a8f378dd2b58731e06600cdf2a89" + "md5": "2df5aae81426b1a841ec6ee59e8461ee" }, { - "authorized_access_point": "Rub al-Khali", + "authorized_access_point": "Rub al-Khali - Ost", "identifiedBy": [ { "source": "GND", @@ -20383,10 +20280,10 @@ "variant_access_point": [ "O\u0308stliche Rub al-Khali" ], - "md5": "30bbb24ed63965dff64ef5b5a355d93b" + "md5": "ad8a25de656f37294dd18ef926c5f9fc" }, { - "authorized_access_point": "Rub al-Khali", + "authorized_access_point": "Rub al-Khali - Su\u0308dost", "identifiedBy": [ { "source": "GND", @@ -20414,10 +20311,10 @@ "variant_access_point": [ "Su\u0308do\u0308stliche Rub al-Khali" ], - "md5": "9b92f1d6e76cec1f9745df9fb70f2453" + "md5": "b689bb00042f5f4eeef2bbdac793fece" }, { - "authorized_access_point": "Rub al-Khali", + "authorized_access_point": "Rub al-Khali - West", "identifiedBy": [ { "source": "GND", @@ -20445,7 +20342,7 @@ "variant_access_point": [ "Westliche Rub al-Khali" ], - "md5": "acf5a8e4cf11ed18a09dd86052ff7d48" + "md5": "a968640f88b6feb8d2d76941d678bc36" }, { "authorized_access_point": "Furth (Landkreis Landshut)", @@ -20466,6 +20363,14 @@ "value": "(DE-588)4439953-4" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Gemeinde im Landkreis Landshut, Niederbayern" + ] + } + ], "pid": "949607266", "type": "bf:Place", "related": [ @@ -20473,7 +20378,7 @@ "authorized_access_point": "Landkreis Landshut" } ], - "md5": "e3b18eea893479ac3a740c9b26287a9a" + "md5": "35caf057fd51f256b2172b681ed6b47b" }, { "authorized_access_point": "Leipzig-Lu\u0308tzschena-Stahmeln", @@ -20494,6 +20399,14 @@ "value": "(DE-588)4439654-5" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Doppelort 1.1.1999 nach Leipzig eingemeindet" + ] + } + ], "pid": "949602310", "type": "bf:Place", "related": [ @@ -20507,7 +20420,7 @@ "variant_access_point": [ "Lu\u0308tzschena-Stahmeln (Leipzig)" ], - "md5": "79513f7d1f8921cc4360d9b20e60a1e4" + "md5": "47f46d4e20778fc5582ac1b99043d3bb" }, { "authorized_access_point": "Leipzig-Holzhausen", @@ -20534,6 +20447,12 @@ "label": [ "Homepage - http://www.holzhausen-sachsen.de" ] + }, + { + "noteType": "general", + "label": [ + "Ortsteil von Leipzig seit 1.1.1999" + ] } ], "pid": "948791659", @@ -20549,7 +20468,7 @@ "variant_access_point": [ "Holzhausen (Leipzig)" ], - "md5": "7393eb65f5baeeefd89aece38e2d482f" + "md5": "9e424fe7aaea6f3b4591c08946673c6b" }, { "authorized_access_point": "Pollnow", @@ -20570,6 +20489,14 @@ "value": "(DE-588)5180619-8" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Kleinstadt an der Grabow im Kreis Schlawe, Regierungsbezirk Ko\u0308slin, Hinterpommern, preu\u00df. Provinz Pommern, Besiedlung durch Wenden, 2. Ha\u0308lfte 13. Jh. dt. Besiedlung, 1307 urkundl. erwa\u0308hnt, 1312 Stadtrecht" + ] + } + ], "pid": "948417226", "type": "bf:Place", "broader": [ @@ -20580,7 +20507,7 @@ "variant_access_point": [ "Pollnow i. Pom." ], - "md5": "19c8466fa0e8ba343f722efabe43ff05" + "md5": "74f04e7c9afd4e1ff109a66ead662b8c" }, { "authorized_access_point": "Leipzig-Lo\u0308\u00dfnig", @@ -20607,6 +20534,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=239090285" ] + }, + { + "noteType": "general", + "label": [ + "Stadtteil im Su\u0308den Leipzigs seit 1.1.1891" + ] } ], "pid": "948322292", @@ -20623,7 +20556,7 @@ "Leipzig-Lo\u0308ssnig", "Lo\u0308\u00dfnig (Leipzig)" ], - "md5": "8bf71b644a77c5dbb6052103e59ca5e6" + "md5": "06a2b8a735caa6e8ee5118da32defd51" }, { "authorized_access_point": "Leipzig-Do\u0308litz", @@ -20657,7 +20590,7 @@ "variant_access_point": [ "Do\u0308litz (Leipzig)" ], - "md5": "2d6021b3e306eb78ae899f8e6c9fb487" + "md5": "baf78b4a56dd2d5f802f5689a1cc78a8" }, { "authorized_access_point": "Leipzig-Mo\u0308lkau", @@ -20678,6 +20611,14 @@ "value": "(DE-588)4415593-1" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil von Leipzig seit 1999" + ] + } + ], "pid": "947976248", "type": "bf:Place", "related": [ @@ -20693,7 +20634,7 @@ "Mo\u0308lkau-Zweinaundorf", "Lleipzig-Mo\u0308lkau-Zweinaundorf" ], - "md5": "845543700bb4e480f11927c095a85a34" + "md5": "fd5eb4028e04e642c557ea4de5b02056" }, { "authorized_access_point": "Juodkrante\u0307", @@ -20721,6 +20662,13 @@ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Juodkrant%C4%97&oldid=178982082", "GeoNames - http://geotree.geonames.org/598706/" ] + }, + { + "noteType": "general", + "label": [ + "Zweitgro\u0308\u00dfte Siedlung auf der Kurischen Nehrung in Litauen", + "Im Jahre 1961 wurden die Hauptortschaften des litauischen Teiles der Kurischen Nehrung- Alksnyne, Juodkrante, Pervalka, Preila, Nida in die Stadt Neringa zusammengeschossen." + ] } ], "pid": "947862730", @@ -20735,7 +20683,7 @@ "authorized_access_point": "Neringa" } ], - "md5": "02da5bb9dae624916416a12199d02afc" + "md5": "c1ed30fd21498cb92680df8499db42eb" }, { "authorized_access_point": "Bansin", @@ -20756,6 +20704,14 @@ "value": "(DE-588)5171491-7" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Seeheilbad auf Usedom, Landkreis Ostvorpommern (25.7.1952-12.6.1994: (Land-)Kreis Wolgast; 1945-1952: Landkreis Usedom; 1818-1945: Kreis Usedom-Wollin), 1256 urkundl. erwa\u0308hnt, 1.1.2005 mit Ahlbeck und Heringsdorf zu Dreikaiserba\u0308der zusammengeschlossen, 1.1.2006 in Ostseebad Heringsdorf umbenannt" + ] + } + ], "pid": "947589341", "type": "bf:Place", "broader": [ @@ -20769,7 +20725,7 @@ "variant_access_point": [ "Seebad Bansin" ], - "md5": "1ec293705cb3b29e2496796a1ba0bf87" + "md5": "771117b8ba461cf243a49b9ad174325f" }, { "authorized_access_point": "Yama\u0304mah", @@ -20790,13 +20746,21 @@ "value": "(DE-588)4409005-5" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Region in Saudi-Arabien" + ] + } + ], "pid": "947454802", "type": "bf:Place", "variant_access_point": [ "Yama\u0304ma", "Jamama" ], - "md5": "b5e04b2a6646c04703630335550cc2f7" + "md5": "7cf57390a1ff587f71a1fbdaf2a15584" }, { "authorized_access_point": "Uh\u0323ud", @@ -20817,21 +20781,23 @@ "value": "(DE-588)4408998-3" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ort in Saudi-Arabien" + ] + } + ], "pid": "947454659", "type": "bf:Place", "variant_access_point": [ "Oh\u0323od" ], - "md5": "002ce1858f617aa649b8cf8617447ce8" + "md5": "fababfd13b6a6923c297b4da622c8e4f" }, { "authorized_access_point": "Ischewsk", - "closeMatch": [ - { - "authorized_access_point": "\u0418\u0436\u0435\u0432\u0441\u043a", - "source": "GND" - } - ], "identifiedBy": [ { "source": "GND", @@ -20855,6 +20821,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=242946023" ] + }, + { + "noteType": "general", + "label": [ + "Hauptstadt von Udmurtien" + ] } ], "pid": "947421238", @@ -20873,7 +20845,7 @@ "\u0418\u0436\u043a\u0430\u0440", "\u0418\u0436" ], - "md5": "f8bcc10e06c70fb4b4536edc144ba721" + "md5": "23028ffb3e940b101d5df92d3290418f" }, { "authorized_access_point": "Barbacena (Minas Gerais)", @@ -20901,7 +20873,7 @@ "authorized_access_point": "Minas Gerais" } ], - "md5": "457b9d150cdbe315524ea54e4f13c5d7" + "md5": "524332ea22877f45e526d30d0cebbe50" }, { "authorized_access_point": "Leipzig-Leutzsch", @@ -20935,17 +20907,10 @@ "variant_access_point": [ "Leutzsch (Leipzig)" ], - "md5": "edd1976aed14d0f136f654efa96018a1" + "md5": "280de53bb4e71a85ab570a9603c718a5" }, { "authorized_access_point": "Kreis Oststernberg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kreis" - } - ], "identifiedBy": [ { "source": "GND", @@ -20979,7 +20944,7 @@ "Kreis Ost-Sternberg", "Landkreis Ost-Sternberg" ], - "md5": "74e49f54d968824c58571ae6c230be75" + "md5": "1c6ee12837a361bdae35a18a1d612516" }, { "authorized_access_point": "Barr (Unterelsass)", @@ -21000,6 +20965,14 @@ "value": "(DE-588)4390811-1" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ort im Ar. Se\u0301lestat-Erstein, Dep. Unterelsass/Bas-Rhin, Region Grand Est (-2015: Elsass), 788 urkundl. erwa\u0308hnt" + ] + } + ], "pid": "945980132", "type": "bf:Place", "broader": [ @@ -21011,23 +20984,10 @@ "Barr (Elsass)", "Barr, Elsa\u00df" ], - "md5": "7a6e8bc54d3063c7cdc264bcbdc08556" + "md5": "992d2c7e8a22566f9fe8696f459d53d8" }, { "authorized_access_point": "Pra\u0308fektur Tochigi", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Pra\u0308fektur" - } - ], - "closeMatch": [ - { - "authorized_access_point": "\u6803\u6728\u770c", - "source": "GND" - } - ], "identifiedBy": [ { "source": "GND", @@ -21054,17 +21014,10 @@ "Shimotsukene", "Shimotsukeno" ], - "md5": "ea4b863d0135b3d77914fc2fe333e8e2" + "md5": "b198be84b19a2254100ec65d406560bf" }, { "authorized_access_point": "Conciergerie (Paris)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gefa\u0308ngnisbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -21092,16 +21045,10 @@ "authorized_access_point": "Palais de la Cite\u0301 (Paris)" } ], - "md5": "8f3af56faae9e07fd9c8598aa0197f6f" + "md5": "b9266ec78201c8004a82d3f25dcd13c8" }, { "authorized_access_point": "Mogiljow", - "closeMatch": [ - { - "authorized_access_point": "\u041c\u0430\u0433i\u043b\u0435\u0308\u0443\u0306", - "source": "GND" - } - ], "identifiedBy": [ { "source": "GND", @@ -21126,6 +21073,12 @@ "Hompage - http://city.mogilev.by/?lang=bel", "Wikipedia - https://ru.wikipedia.org/w/index.php?oldid=138576423" ] + }, + { + "noteType": "general", + "label": [ + "Stadt in Wei\u00dfrussland am Dnjepr" + ] } ], "pid": "945385382", @@ -21148,7 +21101,7 @@ "\u041c\u043e\u0433\u0438\u043b\u0435\u0432", "\u041c\u043e\u0433\u0438\u043b\u0435\u0308\u0432" ], - "md5": "e9782837af02ee32cd39ca4936b3e625" + "md5": "44761ea527269bfe237a665c4727cb06" }, { "authorized_access_point": "Leipzig-Eutritzsch", @@ -21182,7 +21135,7 @@ "variant_access_point": [ "Eutritzsch (Leipzig)" ], - "md5": "d5c74b73e5ebbaf8da1c81bb62b8a64c" + "md5": "be1ea3517e04d182f6c8589b9bc132f2" }, { "authorized_access_point": "Leipzig-Ost", @@ -21210,7 +21163,7 @@ "authorized_access_point": "Leipzig" } ], - "md5": "7f5ec3db66d5e4ca0e492dfa36e6a03a" + "md5": "37433728850bd698cdcdd853e60c5e30" }, { "authorized_access_point": "L'vovskaja Oblast'", @@ -21236,17 +21189,10 @@ "variant_access_point": [ "L'vivs'ka Oblast'" ], - "md5": "97a262fdc4d5943e2a1d6e18cf23294e" + "md5": "813c27a365f1d85f8671cec32265c85e" }, { "authorized_access_point": "Landkreis Leipziger Land", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Landkreis" - } - ], "identifiedBy": [ { "source": "GND", @@ -21264,6 +21210,14 @@ "value": "(DE-588)4370529-7" } ], + "note": [ + { + "noteType": "general", + "label": [ + "1994 aus den Kreisen Leipzig, Borna u. gro\u00dfen Teilen des Kreises Geithain gebildeter Landkreis, 1.8.2008 Eingliederung in den neugebildeten Landkreis Leipzig" + ] + } + ], "pid": "943882346", "type": "bf:Place", "related": [ @@ -21285,7 +21239,7 @@ "variant_access_point": [ "Leipziger Land (Kreis)" ], - "md5": "41b21b4b301bdee5aafffff9a9bfad31" + "md5": "17e2ae0f2ef060679c209e11b41ed343" }, { "authorized_access_point": "\u0141ago\u0301w (Woiwodschaft Lebus)", @@ -21312,6 +21266,12 @@ "label": [ "Wikipedia - http://pl.wikipedia.org/w/index.php?oldid=72530956" ] + }, + { + "noteType": "general", + "label": [ + "Ort nordwestl. von Swiebodzin; bis 1810 Sitz einer Johanniter-Kommende" + ] } ], "pid": "941847934", @@ -21334,7 +21294,7 @@ "\u0141ago\u0301w", "\u0141ago\u0301w Lubuski" ], - "md5": "9f508f26e803155633cc3ae644e86140" + "md5": "c78a11bf72a2a5861cd3a4fc10b836f3" }, { "authorized_access_point": "Lostallo", @@ -21355,9 +21315,17 @@ "value": "(DE-588)2138776-X" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Gemeinde im Kt. Graubu\u0308nden" + ] + } + ], "pid": "941808769", "type": "bf:Place", - "md5": "a9350ee6282a6ab82e63b3925402980b" + "md5": "28fd0a71c25c8ccfd60202cd4076481e" }, { "authorized_access_point": "Zentralarabien", @@ -21396,17 +21364,10 @@ "variant_access_point": [ "Innerarabien" ], - "md5": "bc6a383efec83b5b049db889f4b9d41b" + "md5": "67f381986ff9aabaf1e26daa0e308fe6" }, { "authorized_access_point": "Wadi al-Batin", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Tal" - } - ], "identifiedBy": [ { "source": "GND", @@ -21424,9 +21385,17 @@ "value": "(DE-588)4342217-2" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Tal in Saudiarabien" + ] + } + ], "pid": "941385175", "type": "bf:Place", - "md5": "62ab9ae6fbbdf00fcfd4433cecfd368f" + "md5": "e703e4b15e5bc721d8b5f429072e2d6a" }, { "authorized_access_point": "Leipzig-Plagwitz", @@ -21460,7 +21429,7 @@ "variant_access_point": [ "Plagwitz (Leipzig)" ], - "md5": "5fda193c3f6c86d97ec734049a8cb993" + "md5": "cbdb27a34c906184f5c309b542c6cde5" }, { "authorized_access_point": "Leipzig-Connewitz", @@ -21481,6 +21450,14 @@ "value": "(DE-588)4331601-3" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadtteil von Leipzig seit 1.1.1891" + ] + } + ], "pid": "940396009", "type": "bf:Place", "related": [ @@ -21494,17 +21471,10 @@ "variant_access_point": [ "Connewitz (Leipzig)" ], - "md5": "bced35b7f2a1b7903c9c8fb07de8101e" + "md5": "ef55131a1464dd0076a8707ca8986cd8" }, { "authorized_access_point": "St. Ewaldi Aplerbeck (Dortmund)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -21549,22 +21519,10 @@ "Zweite St.-Ewaldi-Kirche von 1971 (Dortmund)", "Egbertstra\u00dfe 15 (Dortmund)" ], - "md5": "cf6b05df86f26b20c4e1ea11993d784d" + "md5": "53ea485d2f2cd19b489e7129a318c840" }, { "authorized_access_point": "Haus Brincks (Coesfeld)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Backsteinbau" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Bu\u0308rgerhaus" - } - ], "identifiedBy": [ { "source": "GND", @@ -21582,28 +21540,24 @@ "value": "(DE-588)7789992-1" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ca. 1794 fu\u0308r den Leinenweber Hermann Brincks errichtetes Bu\u0308rgerhaus; 1945 durch Luftangriffe vollsta\u0308ndig zersto\u0308rt" + ] + } + ], "pid": "199252149", "type": "bf:Place", "variant_access_point": [ "Bo\u0308nersches Haus (Coesfeld)", "Mu\u0308nsterstra\u00dfe 37 (Coesfeld)" ], - "md5": "a2fb6a47a682d321076a1e287a262562" + "md5": "d312eef2e482828817a185bf271001a6" }, { "authorized_access_point": "Donopbrunnen (Detmold)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Brunnen" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Baudenkmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -21636,22 +21590,10 @@ "authorized_access_point": "Detmold" } ], - "md5": "d353d6e4d7321b6ba3c145fd6db52175" + "md5": "5bded78fd14d78c2cb92b483cfb4fb0f" }, { "authorized_access_point": "Heeper Fichten (Bielefeld)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Arbeitersiedlung" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wohnsiedlung" - } - ], "identifiedBy": [ { "source": "GND", @@ -21688,22 +21630,10 @@ "variant_access_point": [ "Siedlung Heeper Fichten (Bielefeld)" ], - "md5": "062d7d3f741e76ba2817f7bbec63ff9c" + "md5": "d0ab7398a7a25e77658236b7b4a85ba6" }, { "authorized_access_point": "Das gastliche Dorf (Delbru\u0308ck)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fachwerkbau" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Ensemble" - } - ], "identifiedBy": [ { "source": "GND", @@ -21727,6 +21657,12 @@ "label": [ "Homepage - https://www.dasgastlichedorf.com/" ] + }, + { + "noteType": "general", + "label": [ + "Ensemble historischer Fachwerkha\u0308user aus dem 16. und 18. Jahrhundert mit Gastronomiebetrieb" + ] } ], "pid": "199246793", @@ -21740,17 +21676,10 @@ "Gastliches Dorf (Delbru\u0308ck)", "Lippsta\u0308dter Stra\u00dfe 88 (Delbru\u0308ck)" ], - "md5": "003adc838738df0737d8a86ab92bd62d" + "md5": "5acaa51f3323b8c71135d5a17f2964e5" }, { "authorized_access_point": "Galgenlaake (Delbru\u0308ck)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -21783,17 +21712,10 @@ "authorized_access_point": "Delbru\u0308ck" } ], - "md5": "897f7428a992cb47a14dc6d704e3082c" + "md5": "2ff7a2381728817354b621522f8397b8" }, { "authorized_access_point": "Krullsche Haus (Detmold)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Haus" - } - ], "identifiedBy": [ { "source": "GND", @@ -21826,17 +21748,10 @@ "variant_access_point": [ "Richthofenstra\u00dfe 16 (Detmold)" ], - "md5": "eb11f8776c4b86c76802720d80d773a6" + "md5": "0c4d9c6c34f3b9617cc1b3ddf4f0652b" }, { "authorized_access_point": "Richthofenstra\u00dfe (Detmold)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -21869,17 +21784,10 @@ "authorized_access_point": "Detmold" } ], - "md5": "2315675f1a2f1dfe1d7486c645bfceb9" + "md5": "f4ac6c3a730985d99995e9696a6a0963" }, { "authorized_access_point": "Freiligrathstra\u00dfe (Detmold)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -21904,22 +21812,10 @@ "authorized_access_point": "Detmold" } ], - "md5": "a6b290431180973b95d990280e4b507c" + "md5": "db40864895d981532772cd72648e670e" }, { "authorized_access_point": "Nienburg (Bu\u0308nde)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wasserburg" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Rittersitz" - } - ], "identifiedBy": [ { "source": "GND", @@ -21937,6 +21833,14 @@ "value": "(DE-588)7789063-2" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Gelegen am Fluss Else bei Bu\u0308nde (Kreis Herford)" + ] + } + ], "pid": "199244375", "type": "bf:Place", "broader": [ @@ -21948,17 +21852,10 @@ "Castrum Blankena (Bu\u0308nde)", "Haus Wervingen" ], - "md5": "14bab1af144c30720eebc5d56cc69580" + "md5": "5e5f542af1ce2f989a2d7df5900cf4eb" }, { "authorized_access_point": "Glu\u0308ckaufstra\u00dfe (Castrop-Rauxel)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -21991,7 +21888,7 @@ "authorized_access_point": "Castrop-Rauxel" } ], - "md5": "8cc8e8684a5e31997bee41461f7ed319" + "md5": "4b8daceba658e9cf3d51ed3c10d77d95" }, { "authorized_access_point": "Attendorn-Rieflinghausen", @@ -22030,17 +21927,10 @@ "authorized_access_point": "Helden-Rieflinghausen" } ], - "md5": "78874ae247f79a1bc335e45ba3d19ff6" + "md5": "d5c9a0657af1ad39871aaaa5c6eccd32" }, { "authorized_access_point": "St. Rochus Hospital (Castrop-Rauxel)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Krankenhausbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -22074,17 +21964,10 @@ "St. Rochus-Hospital (Castrop-Rauxel)", "Glu\u0308ckaufstra\u00dfe 10 (Castrop-Rauxel)" ], - "md5": "3dfb14383681b0236491b08020e64529" + "md5": "25d5491e7aa7ad2825c024f9e86a857d" }, { "authorized_access_point": "Haus Schanze (Coesfeld)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Haus" - } - ], "identifiedBy": [ { "source": "GND", @@ -22112,17 +21995,10 @@ "variant_access_point": [ "Haus Schanze an der Billerbecker Stra\u00dfe (Coesfeld)" ], - "md5": "b3372a8bea0cdacb6643a723a319cbcc" + "md5": "3ec4db891c1a24cd80bc7b12cb9963cf" }, { "authorized_access_point": "Lortzingstra\u00dfe (Detmold)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -22155,17 +22031,10 @@ "authorized_access_point": "Detmold" } ], - "md5": "e3ea5c6631e8ae9acb88b053b69ebb18" + "md5": "92d66c756295bd6e1d432d98ce3446c1" }, { "authorized_access_point": "Sankt Jakob (Ko\u0308ln- Altstadt Su\u0308d)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -22190,6 +22059,12 @@ "Wikipedia - https://de.wikipedia.org/w/index.php?title=St._Jakob_(K%C3%B6ln)&oldid=205660525", "Homepage Altes Ko\u0308ln - https://altes-koeln.de/wiki/St._Jacob" ] + }, + { + "noteType": "general", + "label": [ + "Ursprungsbau 1071 geweiht; 1534-1548 erheblich umgebaut, 1825 abgebrochen" + ] } ], "pid": "199231516", @@ -22207,17 +22082,10 @@ "Pfarrkirche St. Jakob (Ko\u0308ln- Altstadt Su\u0308d)", "St. Jakob (Ko\u0308ln) (Ko\u0308ln- Altstadt Su\u0308d)" ], - "md5": "751902d10200848ee819b7ca9d8f5a72" + "md5": "ea0ac4d7818e5da46fd05d77d2d3cd0a" }, { "authorized_access_point": "Merkurbrunnen (Bielefeld)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Brunnen" - } - ], "identifiedBy": [ { "source": "GND", @@ -22250,17 +22118,10 @@ "authorized_access_point": "Bielefeld" } ], - "md5": "996aa3ce6c0b5bd315baa3bd80d49a7d" + "md5": "ae92f9cecccd6657587d731a4477e59d" }, { "authorized_access_point": "Verso\u0308hnungskirche Ho\u0308ntrop (Bochum)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -22303,17 +22164,10 @@ "Evangelische Verso\u0308hnungskirche Ho\u0308ntrop (Bochum)", "Preins Feld 8 (Bochum)" ], - "md5": "01dbcab1c8f82689f38bd325fb80b996" + "md5": "79286cc935bd95dd21bb3995792a4438" }, { "authorized_access_point": "Quellenhof (Bielefeld)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Bauernhof" - } - ], "identifiedBy": [ { "source": "GND", @@ -22337,6 +22191,12 @@ "label": [ "Stand: 10.07.2024 - https://www.westfalen-blatt.de/owl/quellenhof-wird-abgerissen-2450879?pid=true&npg" ] + }, + { + "noteType": "general", + "label": [ + "Historischer Bauernhof, Erstwa\u0308hnung um 1550, 1904 von den Von-Bodelschwinghsche Anstalten erworben, 2021 zugunsten eines Hospiz-Neubaus abgerissen." + ] } ], "pid": "199224196", @@ -22354,17 +22214,10 @@ "Go\u0308llnerhof (Bielefeld)", "Hof Go\u0308llner (Bielefeld)" ], - "md5": "2f16a45d8a626e97f2c8d0d0dbfb5a77" + "md5": "4359d3ceece2e1f1961b4273a6652740" }, { "authorized_access_point": "Deponie Coesfeld-Ho\u0308ven", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Deponie" - } - ], "identifiedBy": [ { "source": "GND", @@ -22408,17 +22261,10 @@ "Zentraldeponie Coesfeld-Ho\u0308ven im Kreis Coesfeld", "Zentraldeponie Coesfeld-Ho\u0308ven im Kreis Coesfeld, NRW" ], - "md5": "0bec207d1262fd4296d58543909fad65" + "md5": "accabce3ab48198c8297d4f9893417c7" }, { "authorized_access_point": "Gerricusplatz (Du\u0308sseldorf)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Platz" - } - ], "identifiedBy": [ { "source": "GND", @@ -22454,17 +22300,10 @@ "authorized_access_point": "Du\u0308sseldorf-Gerresheim" } ], - "md5": "e3e3bd5a0c0a28a55e22a8cbd2631473" + "md5": "cbdf0634470564c126a728ca02c24846" }, { "authorized_access_point": "Synagoge Detmold (Detmold)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Synagoge" - } - ], "identifiedBy": [ { "source": "GND", @@ -22488,6 +22327,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Synagoge_Detmold&oldid=245430403" ] + }, + { + "noteType": "general", + "label": [ + "Fiel in der Reichspogromnacht vom 9. auf den 10. November 1938 einem Brandanschlag zum Opfer, 1939 endgu\u0308ltig abgerissen." + ] } ], "pid": "199214700", @@ -22502,17 +22347,10 @@ "authorized_access_point": "Lortzingstra\u00dfe (Detmold)" } ], - "md5": "d35916d752eba1a9fb7dd5a8268fa9cf" + "md5": "c06ba3d161ae0c30cef77d1144bf0d73" }, { "authorized_access_point": "Freiherr-vom-Stein-Kaserne (Coesfeld)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kaserne" - } - ], "identifiedBy": [ { "source": "GND", @@ -22542,17 +22380,10 @@ "Kaserne Coesfeld (Coesfeld)", "Letter Bruch 9 (Coesfeld)" ], - "md5": "2e9b4b72edec965f2aec8924219c262c" + "md5": "37d62bcfee6a3c384fad47082c16e44e" }, { "authorized_access_point": "Verku\u0308ndigungskirche (Gemen, Borken (Westf.))", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -22576,6 +22407,12 @@ "label": [ "Homepage - https://www.christus-koenig-gemen.de/einrichtungen-christus-koenig-gemen/kirchen/verkuendigungskirche/" ] + }, + { + "noteType": "general", + "label": [ + "Kirchengeba\u0308ude des Provinzialats der Scho\u0308nsta\u0308tter Marienschwestern in Gemen" + ] } ], "pid": "199212007", @@ -22588,17 +22425,10 @@ "variant_access_point": [ "Maria\u0308 Verku\u0308ndigung (Gemen, Borken (Westf.))" ], - "md5": "f0616e7bbfab1096b7c9402761c03f6c" + "md5": "95c78a459dd2829bcde5a33c490d2c2b" }, { - "authorized_access_point": "Deininghausen", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "rela", - "name": "Waldgebiet" - } - ], + "authorized_access_point": "Deininghausen - Grutholz", "identifiedBy": [ { "source": "GND", @@ -22616,19 +22446,20 @@ "value": "(DE-588)7785281-3" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Waldgebiet im Castrop-Rauxeler Stadtteil Deininghausen" + ] + } + ], "pid": "199211817", "type": "bf:Place", - "md5": "ad09c6e635fa5329c2a99e5057b89fcc" + "md5": "be45303111d4c7f78f08c52304e8ace9" }, { "authorized_access_point": "Osterhof (Brilon)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Bauernhof" - } - ], "identifiedBy": [ { "source": "GND", @@ -22646,6 +22477,14 @@ "value": "(DE-588)7785159-6" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Bauernhof im Mo\u0308hnetal gelegen" + ] + } + ], "pid": "199210713", "type": "bf:Place", "broader": [ @@ -22656,17 +22495,10 @@ "variant_access_point": [ "Osterhof in der Gemarkung von Brilon (Brilon)" ], - "md5": "efe3357d0deeb1d693fc0441cd2c2dfd" + "md5": "d9bf30731da20663c1e88225b5739cd3" }, { "authorized_access_point": "Werre-Park (Bad Oeynhausen)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Einkaufszentrum" - } - ], "identifiedBy": [ { "source": "GND", @@ -22690,6 +22522,12 @@ "label": [ "Homepage - https://www.werre-park.de/" ] + }, + { + "noteType": "general", + "label": [ + "Ca. 52.000 qm gro\u00dfes Einkaufszentrum am Su\u0308dufer der Werre" + ] } ], "pid": "199209464", @@ -22702,22 +22540,10 @@ "variant_access_point": [ "Werre-Park Bad Oeynhausen (Bad Oeynhausen)" ], - "md5": "3e271725c337972c67b37e06b678ad7d" + "md5": "decbe78674ed8f0801e65e1c4da1daee" }, { "authorized_access_point": "Evangelische Kreuzkirche (Bestwig)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Baudenkmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -22741,6 +22567,12 @@ "label": [ "Liste der Baudenkma\u0308ler in Bestwig - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_Bestwig&oldid=242141515" ] + }, + { + "noteType": "general", + "label": [ + "2020 unter Denkmalschutz gestellt" + ] } ], "pid": "199200955", @@ -22758,22 +22590,10 @@ "Evangelische Kirche (Bestwig)", "Auferstehungskirche (Bestwig)" ], - "md5": "7d2742c6726941c0f4e2736169bb08c4" + "md5": "93085bd0e54965affc8dc5211b298f62" }, { "authorized_access_point": "Benekestra\u00dfe 10 (Detmold)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Haus" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Baudenkmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -22811,22 +22631,10 @@ "authorized_access_point": "Benekestra\u00dfe (Detmold)" } ], - "md5": "4f8862a3a37fac24957ae4db1cd59e5e" + "md5": "2cc62b75640ddd0c54ad272d20f87e5e" }, { "authorized_access_point": "Denkmalstra\u00dfe 1 (Breckerfeld)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Haus" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Baudenkmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -22850,6 +22658,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_Breckerfeld&oldid=227886228" ] + }, + { + "noteType": "general", + "label": [ + "Wohn- und Gescha\u0308ftshaus, heute \"Adler-Apotheke\"" + ] } ], "pid": "199195978", @@ -22864,17 +22678,10 @@ "authorized_access_point": "Denkmalstra\u00dfe (Breckerfeld)" } ], - "md5": "e956ce096d216c42c1ba2540c54dde2c" + "md5": "ffa3975e56002a047b5f0db65bd0d954" }, { "authorized_access_point": "Denkmalstra\u00dfe (Breckerfeld)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -22907,27 +22714,10 @@ "authorized_access_point": "Breckerfeld" } ], - "md5": "5bbfaff2ef4f6809d9f334f864a29680" + "md5": "0e6c5fbe05d878bea1ddabb317acfd40" }, { "authorized_access_point": "Derkere Stra\u00dfe 26 (Brilon)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Bu\u0308rgerhaus" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fachwerkbau" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Baudenkmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -22951,6 +22741,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Denkm%C3%A4ler_in_Brilon&oldid=238201542" ] + }, + { + "noteType": "general", + "label": [ + "Giebelsta\u0308ndiger Fachwerkbau mit Wirtschaftsdiele, dreischiffiges niederdeutsches Hallenhaus, seit 1985 denkmalgeschu\u0308tzt" + ] } ], "pid": "199189870", @@ -22969,22 +22765,10 @@ "Derkere Strasse 26 (Brilon)", "Bu\u0308rgerhaus Derkere Stra\u00dfe 26 (Brilon)" ], - "md5": "7bbdf83489ed7224605298e1c62df65a" + "md5": "18881d9a249f3f1563c3ce524b1c73b9" }, { "authorized_access_point": "Niedere Stra\u00dfe 32 (Brilon)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Bu\u0308rgerhaus" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fachwerkbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -23002,6 +22786,14 @@ "value": "(DE-588)7782866-5" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Fachwerkhaus vom Typ \"niederdeutsches Hallenhaus\", 2001 abgerissen" + ] + } + ], "pid": "199189862", "type": "bf:Place", "broader": [ @@ -23017,17 +22809,10 @@ "variant_access_point": [ "Niedere Strasse 32 (Brilon)" ], - "md5": "2dd57e98417795e1a957cb1c3807976a" + "md5": "8ad3713f9845cd2ddf112f754890a457" }, { "authorized_access_point": "Derkere Stra\u00dfe (Brilon)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -23060,17 +22845,10 @@ "authorized_access_point": "Brilon" } ], - "md5": "21cf8f0445a2ec84fa63a8dce0ef2e63" + "md5": "0d46b68d08ff66f5abeac4e7bfd24b84" }, { "authorized_access_point": "Niedere Stra\u00dfe (Brilon)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -23103,17 +22881,10 @@ "authorized_access_point": "Brilon" } ], - "md5": "d340c1f979d211f199466ffde3aefe59" + "md5": "ad5b51b41e2a03a4f70d713ec6f61148" }, { "authorized_access_point": "Steinha\u0308ger Ha\u0308uschen (Steinhagen, Kreis Gu\u0308tersloh)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fachwerkbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -23161,17 +22932,10 @@ "Bahnhofstra\u00dfe 2 (Steinhagen, Kreis Gu\u0308tersloh)", "Steinha\u0308gerha\u0308uschen (Steinhagen, Kreis Gu\u0308tersloh)" ], - "md5": "5b2556a16d4157b460eb41fb9fbd3b76" + "md5": "ddc7d11f71bdb90184e0bba3d4103953" }, { - "authorized_access_point": "Jakobus-Kirche Breckerfeld (Breckerfeld)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kanzel" - } - ], + "authorized_access_point": "Jakobus-Kirche Breckerfeld (Breckerfeld) - Kanzel", "identifiedBy": [ { "source": "GND", @@ -23189,6 +22953,14 @@ "value": "(DE-588)7782000-9" } ], + "note": [ + { + "noteType": "general", + "label": [ + "1727 gestiftet in Schwelm, 1740 in Breckerfeld aufgestellt" + ] + } + ], "pid": "199181993", "type": "bf:Place", "broader": [ @@ -23202,22 +22974,10 @@ "variant_access_point": [ "Evangelische Pfarrkirche (Breckerfeld)" ], - "md5": "291be42d0c0c519b90d286b664a36b6f" + "md5": "ea8b9521eab830ab438b197897fbfdfd" }, { "authorized_access_point": "Universum Bu\u0308nde (Bu\u0308nde)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kino" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Baudenkmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -23262,27 +23022,10 @@ "Lichtspielhaus Wittekind (Bu\u0308nde)", "Hauptstra\u00dfe 9" ], - "md5": "a912b6baaba120328b905bb0e87de6fa" + "md5": "5f6aae9d1c516563cdc90f510500d3e4" }, { "authorized_access_point": "Dortberghaus (Dortmund)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Verwaltungsbau" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Hotel" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Baudenkmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -23306,6 +23049,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Dortberghaus&oldid=242681457" ] + }, + { + "noteType": "general", + "label": [ + "Erbaut als Verwaltungsgeba\u0308ude der Gelsenkirchener Bergwerks-Aktiengesellschaft, von 1967-2004 Sitz des Bauordnungs- und Katasteramt. Seit 2022 Hotel." + ] } ], "pid": "19917332X", @@ -23318,22 +23067,10 @@ "variant_access_point": [ "Katharinenstra\u00dfe 9 (Dortmund)" ], - "md5": "d463c9a4579cdc6c9d36ec861cea1e44" + "md5": "c81d9bcf0dda10ceb48c0232708f7e49" }, { "authorized_access_point": "Alpincenter Bottrop (Bottrop)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Wintersportanlage" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Skihalle" - } - ], "identifiedBy": [ { "source": "GND", @@ -23371,22 +23108,10 @@ "Alpincenter in Bottrop (Bottrop)", "Prosperstra\u00dfe 299-301 (Bottrop)" ], - "md5": "0a8c0d732e91fc4df0f3ab76c49d91c2" + "md5": "f93a5131e9dd0384e30c54ffecbc5f2b" }, { "authorized_access_point": "Klosteranlage des Ehem. Augustinerchorherren-Klosters Ewig (Attendorn)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Klosteranlage" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Baudenkmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -23404,6 +23129,14 @@ "value": "(DE-588)7780057-6" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Bis 1803 als Kloster genutzt, seit 1983 Baudenkmal; heute (neben diversen Verwaltungs- und Gefa\u0308ngnisbauten) Teil des Anstaltsgela\u0308ndes der JVA Attendorn" + ] + } + ], "pid": "199164347", "type": "bf:Place", "variant_access_point": [ @@ -23419,17 +23152,10 @@ "Biggeweg 5 (Attendorn)", "Gefa\u0308ngnisanlage der Justizvollzugsanstalt Attendorn (Attendorn)" ], - "md5": "ee35f09de044866a610c7c117b34e6d0" + "md5": "0cf16b0e0a37ef50f883c4eb2f40e302" }, { "authorized_access_point": "Elisabethstra\u00dfe (Bochum)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -23468,17 +23194,10 @@ "variant_access_point": [ "Elisabethstra\u00dfe (Bochum-Wattenscheid)" ], - "md5": "24c1b324f28f916271944201528a71ac" + "md5": "4f4ff1ade2bc928d74d4465eb099c980" }, { "authorized_access_point": "Wattenscheider Hellweg (Bochum)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -23511,22 +23230,10 @@ "authorized_access_point": "Bochum" } ], - "md5": "bfaea4e2c4c67702d838c211ee957abb" + "md5": "dc53c0387bdf2b1f7c9111ff25933549" }, { "authorized_access_point": "Florianturm (Dortmund)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Fernsehturm" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Aussichtsturm" - } - ], "identifiedBy": [ { "source": "GND", @@ -23566,27 +23273,10 @@ "Florianturm im Westfalenpark (Dortmund)", "Florianstra\u00dfe 2 (Dortmund)" ], - "md5": "46d0948b90e8ce509d271e2277a4a040" + "md5": "ee6be98fe1295b4479336db9c2d97ffc" }, { "authorized_access_point": "Kotten Bodde (Bochum)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kate" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Viersta\u0308nderbau" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Baudenkmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -23610,6 +23300,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_im_Stadtbezirk_Bochum-Wattenscheid&oldid=246405605" ] + }, + { + "noteType": "general", + "label": [ + "In zwei Bauabschnitten 1619 und 1672 errichteter ehemaliger Bauernkotten, heute Gaststa\u0308ttenbetrieb" + ] } ], "pid": "199159777", @@ -23631,7 +23327,7 @@ "Am Thie 8 (Bochum)", "Wohnhaus (Bochum)" ], - "md5": "36affbbe6f959f60f2c34607a45d5df9" + "md5": "0bb0497a24421a8fa872977f179f696b" }, { "authorized_access_point": "Barntrup-Uhlental", @@ -23662,7 +23358,7 @@ "variant_access_point": [ "Uhlental" ], - "md5": "4dd4cf4a9b3cabb2ef95c37ae86eca75" + "md5": "634afb9f4f9c47883226f54486e15f14" }, { "authorized_access_point": "Ho\u0308fkerstra\u00dfe (Dortmund)", @@ -23698,17 +23394,10 @@ "authorized_access_point": "Dortmund" } ], - "md5": "7ab8d6502832b9f1e8b70ffe1c44b496" + "md5": "4e858aabfd2e204f1783f788441aed47" }, { "authorized_access_point": "Alter Postweg (Bottrop)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -23747,22 +23436,10 @@ "variant_access_point": [ "Alter Postweg (Bottrop-Kirchhellen)" ], - "md5": "e49a03515ecc811eb171504161a297e7" + "md5": "cb22738df8b4801f527410ce88c1f865" }, { "authorized_access_point": "Schwartzstra\u00dfe 7 (Bocholt)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Villa" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Baudenkmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -23786,6 +23463,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_Bocholt&oldid=242141670" ] + }, + { + "noteType": "general", + "label": [ + "Zweigeschossige Backstein-/Putzbauvilla" + ] } ], "pid": "199136637", @@ -23798,22 +23481,10 @@ "variant_access_point": [ "Villa (Bocholt)" ], - "md5": "ae5a090b2e430d142e1b6cee69719f44" + "md5": "56e521a71fe9b033057cc4ca6847a503" }, { "authorized_access_point": "Hitlerstein (Barntrup)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Denkmal" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Ehrenmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -23831,6 +23502,14 @@ "value": "(DE-588)7774950-9" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Im Barntruper Stadtwald zu Ehren Adolf Hitlers (1933 zum Barntruper Ehrenbu\u0308rger ernannt) errichtetes Denkmal, bestehend aus einem auf einem Sockel ruhenden Findling mit eingraviertem Hakenkreuz, eingefasst von Hecke und Zaun. 1945 vermutlich durch Vergraben oder Sprengen beseitigt." + ] + } + ], "pid": "199118167", "type": "bf:Place", "broader": [ @@ -23838,7 +23517,7 @@ "authorized_access_point": "Barntrup" } ], - "md5": "c07e54be36f44bae4a88257b517d8cf2" + "md5": "6483da06d780b5354fb4b1d07d54a3d2" }, { "authorized_access_point": "Balve-Haustadt", @@ -23877,22 +23556,10 @@ "variant_access_point": [ "Haustadt (Balve)" ], - "md5": "4c4a88f7f82817fa42b3868eff3ff675" + "md5": "8ca06bc261eab19cbab98156f9549883" }, { "authorized_access_point": "Totenleuchte (Arnsberg)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Denkmal" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stele" - } - ], "identifiedBy": [ { "source": "GND", @@ -23916,6 +23583,12 @@ "label": [ "Wikipedia - https://de.m.wikipedia.org/wiki/Kunst_im_%C3%B6ffentlichen_Raum_in_Arnsberg" ] + }, + { + "noteType": "general", + "label": [ + "Mahnmal fu\u0308r die Toten der Mo\u0308hnekatastrophe von 1943, steht auf dem Gela\u0308nde der Pfarrkirche St. Johannes in Neheim" + ] } ], "pid": "199077177", @@ -23933,22 +23606,10 @@ "Totenleuchte (Arnsberg-Neheim)", "Totenstele (Arnsberg)" ], - "md5": "b7ef2b21d6a21bc5bafcb0f46b1af7d1" + "md5": "87ac940e824803bf6d5588c53b19155e" }, { "authorized_access_point": "Haus Holtwick (Rosendahl)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Torbau" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Baudenkmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -23993,22 +23654,10 @@ "variant_access_point": [ "Haus Holtwick (Rosendahl-Holtwick)" ], - "md5": "1a42f031b48dd02b6f19c4f7a66440cb" + "md5": "b0af0057f391db10446fb45674a66e39" }, { "authorized_access_point": "Ju\u0308discher Friedhof Bochum (Bochum)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Ju\u0308discher Friedhof" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Baudenkmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -24032,6 +23681,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=J%C3%BCdischer_Friedhof_Bochum&oldid=245831861" ] + }, + { + "noteType": "general", + "label": [ + "Ju\u0308discher Friedhof an der Wasserstr." + ] } ], "pid": "199023360", @@ -24048,17 +23703,10 @@ "Ju\u0308discher Friedhof Bochum (Bochum-Wiemelhausen)", "Ju\u0308discher Friedhof Wiemelhausen (Bochum)" ], - "md5": "0ed97a7e87afec8d8a47498cd3cd79bc" + "md5": "d04cfb7a028e757c875e15601ff3dcdc" }, { "authorized_access_point": "Haus Schlu\u0308nder (Arnsberg)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Haus" - } - ], "identifiedBy": [ { "source": "GND", @@ -24091,17 +23739,10 @@ "Haus Schlu\u0308nder im Luerwald (Arnsberg)", "Haus am Bru\u0308ggestu\u0308ck (Arnsberg)" ], - "md5": "8dc28e94a79c29b108869272d8fb2336" + "md5": "3fa71187372d5a0de8e28badf12063d4" }, { "authorized_access_point": "Benekestra\u00dfe (Detmold)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -24134,17 +23775,10 @@ "authorized_access_point": "Detmold" } ], - "md5": "b980b29c3e9734a0af78cea509b57b15" + "md5": "67c2aa36975806457307f4c07eaa1ea2" }, { "authorized_access_point": "Kortumstra\u00dfe (Bochum)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -24177,17 +23811,10 @@ "authorized_access_point": "Bochum" } ], - "md5": "eae98f26f3f4c2656fa1e05d2ec08f92" + "md5": "12e08c69976738040b2d835b254eae85" }, { "authorized_access_point": "Altsta\u0308dter Nicolaikirche (Bielefeld)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Hallenkirche" - } - ], "identifiedBy": [ { "source": "GND", @@ -24211,6 +23838,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Altst%C3%A4dter_Nicolaikirche&oldid=245915909" ] + }, + { + "noteType": "general", + "label": [ + "A\u0308lteste Kirche auf dem Stadtgebiet Bielefelds. Nach Zersto\u0308rung 1944 unter Verwendung alter Bausubstanz durch die Architekten Bernhard Hopp und Rudolf Ja\u0308ger wieder aufgebaut; der Turm erhielt statt der urspru\u0308nglichen barocken Haube einen steilen Betonaufsatz mit Eckstreben und Helm." + ] } ], "pid": "199011249", @@ -24227,7 +23860,7 @@ "Ev. Altsta\u0308dter Nicolaikirche Bielefeld (Bielefeld)", "Nikolaikirche zu Bielefeld (Bielefeld)" ], - "md5": "f25f1cac93791b9b4952e4988945e5fc" + "md5": "2526fb2b7b013932425d4189157fc752" }, { "authorized_access_point": "Rathaus (Beckum)", @@ -24255,6 +23888,12 @@ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_Beckum&oldid=245713880", "Homepage Beckum - https://www.beckum.de/entdecken-erleben/kultur/stadtmuseum/#accordion-1-5" ] + }, + { + "noteType": "general", + "label": [ + "Verputzter Bruchsteinbau mit seitlichem Durchgang zum Kirchhof, 1983 unter Denkmalschutz gestellt; beherbergt seit 1986 das Stadtmuseum" + ] } ], "pid": "199003645", @@ -24274,17 +23913,10 @@ "Stadtmuseum (Beckum)", "Markt 1 (Beckum)" ], - "md5": "078aea1f2076f6d6ae852ce2c290363f" + "md5": "acf0f7a77f3910ba2627d8088534dcb1" }, { "authorized_access_point": "IHK-Bezirk Detmold", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "IHK-Bezirk" - } - ], "identifiedBy": [ { "source": "GND", @@ -24302,22 +23934,23 @@ "value": "(DE-588)7762049-5" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Umfasst den Kreis Lippe zu Detmold" + ] + } + ], "pid": "199002894", "type": "bf:Place", "variant_access_point": [ "Detmold (IHK-Bezirk)" ], - "md5": "fa6d918bbd5d3b48ba879406e3380a07" + "md5": "f250091ba77c6f7f4cc93b4cefbe5710" }, { "authorized_access_point": "Bahnhofstra\u00dfe (Steinhagen, Kreis Gu\u0308tersloh)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stra\u00dfe" - } - ], "identifiedBy": [ { "source": "GND", @@ -24350,32 +23983,10 @@ "authorized_access_point": "Steinhagen (Kreis Gu\u0308tersloh)" } ], - "md5": "3371ee688a3fc69a93b7194a207a3079" + "md5": "27bb294cdb62a107bb2c1937d845e8a2" }, { "authorized_access_point": "Hoeschpark (Dortmund)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Gru\u0308nanlage" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Park" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Sportsta\u0308tte" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Baudenkmal" - } - ], "identifiedBy": [ { "source": "GND", @@ -24419,10 +24030,10 @@ "Hoesch-Park (Dortmund)", "Brackeler Stra\u00dfe 60 (Dortmund)" ], - "md5": "a63bd5cce8a10e62e52a6a40c979d6af" + "md5": "b15e5c90c4c48f7ada1fa872fe3fd8d7" }, { - "authorized_access_point": "Castrop", + "authorized_access_point": "Castrop - Region", "identifiedBy": [ { "source": "GND", @@ -24442,17 +24053,10 @@ ], "pid": "199000239", "type": "bf:Place", - "md5": "a1b52e46e11de931875d34c0f7bcd275" + "md5": "a2526f09ee901d47716dfd9d96ef267e" }, { "authorized_access_point": "Amt S\u00f8nderborg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Amt" - } - ], "identifiedBy": [ { "source": "GND", @@ -24476,6 +24080,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=195150922" ] + }, + { + "noteType": "general", + "label": [ + "Als Nordschleswig 1920 an Da\u0308nemark abgetreten wurde, entstand aus dem preu\u00dfischen Kreis Sonderburg das S\u00f8nderborg Amt. Von 1920 bis 1932 ein Amtsbezirk in Da\u0308nemark." + ] } ], "pid": "050551604", @@ -24496,7 +24106,7 @@ "S\u00f8nderborg (Amt)", "Sonderburg (Amt)" ], - "md5": "897401cfb65bf73b365888595e745baf" + "md5": "6b63a439b87fc838d3b3cf5ffdd48d21" }, { "authorized_access_point": "Syosset, NY", @@ -24528,7 +24138,7 @@ ], "pid": "050133039", "type": "bf:Place", - "md5": "4308cb84168011b86024ee3217fef890" + "md5": "8bffd3503fb8ed5c8d5da1893adba19a" }, { "authorized_access_point": "Leipzig-Lo\u0308szmig", @@ -24559,7 +24169,7 @@ "variant_access_point": [ "Lo\u0308szmig" ], - "md5": "b341f516cebc47bfbfbfb79c97a2ef19" + "md5": "3f93a610a412229d222982398f71ff0a" }, { "authorized_access_point": "Leipzig-Paunsdorf", @@ -24593,7 +24203,7 @@ "variant_access_point": [ "Paunsdorf (Leipzig)" ], - "md5": "1648e7936be51e98eac061ef4c3b713c" + "md5": "af91c49d9817b24ab58a47fe39e56957" }, { "authorized_access_point": "Hagenow", @@ -24614,12 +24224,20 @@ "value": "(DE-588)4322560-3" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadt im Landkreis Ludwigslust-Parchim (13.6.1994-3.9.2011: Landkreis Ludwigslust; 25.7.1952-12.6.1994: (Land-)Kreis Hagenow), 1194 urkundl. erwa\u0308hnt, 1370 Stadt bezeichnet (1520 auch noch Dorf genannt), 1746 Marktflecken, 1754 Stadtrechte (Landstadt)" + ] + } + ], "pid": "043225608", "type": "bf:Place", "variant_access_point": [ "Stadt Hagenow" ], - "md5": "9ac3d3234b9b5ff943c16eef0db3db2e" + "md5": "c3a7ac13d57dd4532615f334d39366e6" }, { "authorized_access_point": "Workum", @@ -24663,7 +24281,7 @@ "Wo\u0308rkem", "Su\u0301dwest-Frysla\u0302n- Workum" ], - "md5": "3ffbe43d16e6ecb3ef0bbbc27d3eda34" + "md5": "9b6231b4d3da26f17e1596f705b505fa" }, { "authorized_access_point": "Fro\u0308ndenberg-Langschede", @@ -24702,21 +24320,10 @@ "authorized_access_point": "Fro\u0308ndenberg/Ruhr" } ], - "md5": "db7b8b3fba95c148d573d1b68eee3e99" + "md5": "e6970134217c8b5e0cc2010421c423eb" }, { "authorized_access_point": "Nordossetien", - "closeMatch": [ - { - "authorized_access_point": "Nordossetien", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)992404215", - "source": "(DE-101)992404215" - } - } - ], "identifiedBy": [ { "source": "GND", @@ -24734,6 +24341,24 @@ "value": "(DE-588)4297620-0" } ], + "exactMatch": [ + { + "authorized_access_point": "Nordossetien", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992404215" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "091413591" + } + ] + } + ], "pid": "042976200", "type": "bf:Place", "related": [ @@ -24755,7 +24380,7 @@ "North Ossetia", "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u04d5 \u0426\u04d5\u0433\u0430\u0442 \u0418\u0440\u044b\u0441\u0442\u043e\u043d-\u0410\u043b\u0430\u043d\u0438\u0438\u0306\u044b" ], - "md5": "d1791721f46d2277bbe281b86eb0d290" + "md5": "85da605bd63192287abc3de4ccc169d0" }, { "authorized_access_point": "Prag-Smichow", @@ -24776,6 +24401,14 @@ "value": "(DE-588)4293955-0" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadtteil von Prag seit 1.1.1922" + ] + } + ], "pid": "042939550", "type": "bf:Place", "related": [ @@ -24791,7 +24424,7 @@ "Smi\u0301chov (Prag)", "Smichow (Prag)" ], - "md5": "684e03c76e81954f0902a4730fb4afd9" + "md5": "a27d15181c7e3a2c34e3c5f9a0aec0ce" }, { "authorized_access_point": "Smichow (Prag)", @@ -24812,6 +24445,14 @@ "value": "(DE-588)4293952-5" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Vorstadt von Prag, 1828 Vorort, 1903 Stadtrecht, 1.1.1922 nach Prag eingemeindet" + ] + } + ], "pid": "042939526", "type": "bf:Place", "broader": [ @@ -24822,7 +24463,7 @@ "variant_access_point": [ "Smi\u0301chov (Prag)" ], - "md5": "6fce89aa8abf0ca3ec8acff43c620e1b" + "md5": "2ef7eb049f92bb723b020da2bfecbb3a" }, { "authorized_access_point": "Reichenbach im Vogtland", @@ -24849,6 +24490,12 @@ "label": [ "Homepage - https://www.reichenbach-vogtland.de/" ] + }, + { + "noteType": "general", + "label": [ + "Stadt im Vogtlandkreis, Sachsen" + ] } ], "pid": "042788714", @@ -24862,22 +24509,10 @@ "Rechenbach", "Reichenbach" ], - "md5": "7465c87d3543beffc8186c4dd5d1752d" + "md5": "b98a55d2a95742bff181eaf35fc7c9c6" }, { "authorized_access_point": "Karta\u0308userkirche (Ko\u0308ln)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Klosterkirche" - }, - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kirchenbau" - } - ], "identifiedBy": [ { "source": "GND", @@ -24901,6 +24536,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Kart%C3%A4userkirche_(K%C3%B6ln)&oldid=237820855" ] + }, + { + "noteType": "general", + "label": [ + "1393 geweiht, seit 1978 evangelische Kirche" + ] } ], "pid": "042778352", @@ -24915,17 +24556,10 @@ "Evangelische Pfarrkirche St. Barbara (Ko\u0308ln)", "Evangelische Pfarrkirche Sankt Barbara (Ko\u0308ln)" ], - "md5": "722057c896453e0b7484114d56e2ca5a" + "md5": "a4234b5dbf696eeb5dfbdbf186bfd9c6" }, { "authorized_access_point": "Heringsdorf (Seebad)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Seebad" - } - ], "identifiedBy": [ { "source": "GND", @@ -24943,6 +24577,14 @@ "value": "(DE-588)4262749-7" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Seebad auf Usedom, Landkreis Vorpommern-Greifswald (1994-2011: Landkreis Ostvorpommern; 25.7.1952-12.6.1994: (Land-)Kreis Wolgast; 1945-1952: Landkreis Usedom; 1818-1945: Kreis Usedom-Wollin), 1818 Fischersiedlung angelegt, 1.1.2005 mit Ahlbeck und Bansin zu Dreikaiserba\u0308der zusammengeschlossen, 1.1.2006 in Ostseebad Heringsdorf umbenannt" + ] + } + ], "pid": "042627494", "type": "bf:Place", "related": [ @@ -24959,17 +24601,10 @@ "Gemeinde Ostseebad Heringsdorf", "Heringsdorf" ], - "md5": "add47264d74b7d8e874962866d745130" + "md5": "22547bee59b14ee70ff0597cc358b293" }, { "authorized_access_point": "Stiftskirche zum Heiligen Kreuz (Stuttgart)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Stufenhallenkirche" - } - ], "identifiedBy": [ { "source": "GND", @@ -24993,6 +24628,12 @@ "label": [ "Homepage - https://stiftskirche.de/" ] + }, + { + "noteType": "general", + "label": [ + "Pfarrkirche der Altstadt, um 1240 als Basilika spa\u0308troman. neu erbaut anstelle Dorfkirche des 10. oder 11. Jh., 1327/47 Chor angebaut, 1433/81 Langhaus als Stufenhalle von H. Jo\u0308rg u. A. Jo\u0308rg spa\u0308tgot. neu erbaut, W-Turm 1490/1531, 1944 fast vollsta\u0308ndig zersto\u0308rt, 1950/58 teilw. rekonstruierend, teilw. neu wiederaufgebaut" + ] } ], "pid": "042602564", @@ -25009,17 +24650,10 @@ "Stiftskirche (Stuttgart)", "Evangelische Stiftskirche Heilig Kreuz (Stuttgart)" ], - "md5": "c063b787c58f7aa77a3ac2b83b779fc7" + "md5": "417e22075ad042bf0369b8317307d8f7" }, { "authorized_access_point": "Emscher Park", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Landschaftspark" - } - ], "identifiedBy": [ { "source": "GND", @@ -25043,6 +24677,12 @@ "label": [ "Wikipedia - http://de.wikipedia.org/wiki/Emscher_Landschaftspark" ] + }, + { + "noteType": "general", + "label": [ + "Landschaftspark d. Emscher Region" + ] } ], "pid": "042567874", @@ -25058,7 +24698,7 @@ "Emscher-Landschaftspark", "Emscher Landschaftspark" ], - "md5": "472c3c98cd3041c1bfca13bd54b6584a" + "md5": "493e4f3653e0e632141fd0396939b8d7" }, { "authorized_access_point": "Gnotzheim", @@ -25092,17 +24732,10 @@ "variant_access_point": [ "Markt Gnotzheim" ], - "md5": "100a3f74eb4c96c062c69ebd8354ee46" + "md5": "342918dd45f336bf452f7a67e3b323bc" }, { "authorized_access_point": "Verbandsgemeinde Bernkastel-Kues", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Verbandsgemeinde" - } - ], "identifiedBy": [ { "source": "GND", @@ -25120,12 +24753,20 @@ "value": "(DE-588)4249277-4" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Gebietsko\u0308rperschaft im Landkreis Bernkastel-Wittlich" + ] + } + ], "pid": "042492777", "type": "bf:Place", "variant_access_point": [ "Bernkastel-Kues (Verbandsgemeinde)" ], - "md5": "8c02748113adf523a0cec026af2e9014" + "md5": "0985b67aa5190e3819079c5ac91f7f63" }, { "authorized_access_point": "Lesparre-Me\u0301doc", @@ -25146,9 +24787,17 @@ "value": "(DE-588)4249044-3" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ort im Dep. Gironde, Frankreich" + ] + } + ], "pid": "042490448", "type": "bf:Place", - "md5": "4aa9ae0f6c6b25794a20ece6fcedbc94" + "md5": "b86ffec79ff5a5ebaf6afeb0c82c0da5" }, { "authorized_access_point": "Heringsdorf-Bansin", @@ -25169,6 +24818,14 @@ "value": "(DE-588)4247724-4" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil von Heringsdorf (1.1.2005-31.12.2005: Dreikaiserba\u0308der) seit 1.1.2006" + ] + } + ], "pid": "042477247", "type": "bf:Place", "related": [ @@ -25182,17 +24839,10 @@ "variant_access_point": [ "Bansin (Heringsdorf, Seebad)" ], - "md5": "076eede2d04716f7a312d4e8af62c6c1" + "md5": "94e3a0160c3c01289fcd96f99e619024" }, { "authorized_access_point": "Hydra (Insel)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Insel" - } - ], "identifiedBy": [ { "source": "GND", @@ -25210,6 +24860,14 @@ "value": "(DE-588)4240022-3" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Insel vor SO-Ku\u0308ste der Argolis (Peloponnes), Regionalbezirk Inseln (-2010: Pra\u0308fekturbezirk Pira\u0308us), Nomos Attika; manchmal zu den Saronischen Inseln geza\u0308hlt" + ] + } + ], "pid": "042400228", "type": "bf:Place", "variant_access_point": [ @@ -25220,16 +24878,10 @@ "Idhra (Insel)", "U\u0301dra" ], - "md5": "8f868d32784a0d979cb287a4504a0f4b" + "md5": "5a7fb6dc8eeaafabc732b69d029e6f0b" }, { "authorized_access_point": "\u02bfUnayzah", - "closeMatch": [ - { - "authorized_access_point": "\u0639\u0646\u064a\u0632\u0629", - "source": "GND" - } - ], "identifiedBy": [ { "source": "GND", @@ -25247,23 +24899,24 @@ "value": "(DE-588)4238717-6" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadt in Saudi-Arabien" + ] + } + ], "pid": "042387175", "type": "bf:Place", "variant_access_point": [ "\u02bfUnaiza", "\u02bfUnayza" ], - "md5": "928dbb91b1d7e17e2f3ca5c646254d7f" + "md5": "5b8eed0e431889c0efbdf4e4e808617b" }, { "authorized_access_point": "Mount Annie, Nev.", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Berg" - } - ], "identifiedBy": [ { "source": "GND", @@ -25281,23 +24934,20 @@ "value": "(DE-588)4229900-7" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Berg im US-Bundesstaat Nevada" + ] + } + ], "pid": "042299004", "type": "bf:Place", - "md5": "37c3b0f3bc2a954579a8d8058a5d927a" + "md5": "e042ecf3f747cf999a3f0fefb1b8b71e" }, { "authorized_access_point": "Hartford, Conn.", - "closeMatch": [ - { - "authorized_access_point": "Hartford (Conn.)", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)990781569", - "source": "(DE-101)990781569" - } - } - ], "identifiedBy": [ { "source": "GND", @@ -25315,29 +24965,42 @@ "value": "(DE-588)4226021-8" } ], + "exactMatch": [ + { + "authorized_access_point": "Hartford (Conn.)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)990781569" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "091408466" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Hauptstadt des Bundesstaates Connecticut, 1635 als Newtown gegru\u0308ndet, heutiger Name seit 1637" + ] + } + ], "pid": "042260213", "type": "bf:Place", "variant_access_point": [ "Hartford, Connecticut", "Newtown, Conn." ], - "md5": "eb53fdd275ee4cffec3bef852b07a524" + "md5": "24de7249cce064aea383dc5969bbc0f3" }, { "authorized_access_point": "Oblast Amur", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Oblast" - } - ], - "closeMatch": [ - { - "authorized_access_point": "\u0410\u043c\u0443\u0440\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c", - "source": "GND" - } - ], "identifiedBy": [ { "source": "GND", @@ -25371,7 +25034,7 @@ "Amurskaja oblast\u02b9", "Gebiet Amur" ], - "md5": "69e82428a7c4268993d7a4f059f99fc9" + "md5": "c73596b3a296761280070426b39d905d" }, { "authorized_access_point": "Bernkastel-Kues-Andel", @@ -25405,7 +25068,7 @@ "variant_access_point": [ "Andel (Bernkastel-Kues)" ], - "md5": "ce870bd581a822462a6e6b5bbef09805" + "md5": "d45f2ed3a1177ab38ac180ae080b516c" }, { "authorized_access_point": "Kotor Varos\u030c", @@ -25432,6 +25095,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Kotor_Varo%C5%A1&oldid=246161593" ] + }, + { + "noteType": "general", + "label": [ + "Kleinstadt in Bosnien und Herzegowina und Hauptort der gleichnamigen Gemeinde" + ] } ], "pid": "042209927", @@ -25439,10 +25108,10 @@ "variant_access_point": [ "Kotor-Varos\u030c" ], - "md5": "37d88ebf59773172a9c99e7508affb9f" + "md5": "2e119ae21925fd428f2b2b3265b66908" }, { - "authorized_access_point": "Oberrheinisches Tiefland", + "authorized_access_point": "Oberrheinisches Tiefland - Su\u0308d", "identifiedBy": [ { "source": "GND", @@ -25460,6 +25129,14 @@ "value": "(DE-588)4200545-0" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Benutzt fu\u0308r die Region zwischen Basel, Freiburg u. Strassburg" + ] + } + ], "pid": "042005450", "type": "bf:Place", "broader": [ @@ -25470,21 +25147,10 @@ "variant_access_point": [ "Regio, Oberrhein" ], - "md5": "b399999f52a0b4ed6a822b045ec86d8c" + "md5": "9c0a3fa27b86f29443ade8945c34b7fe" }, { "authorized_access_point": "Lyngby-Ta\u030arbaek", - "closeMatch": [ - { - "authorized_access_point": "Lyngby-Tarbaek", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)992133122", - "source": "(DE-101)992133122" - } - } - ], "identifiedBy": [ { "source": "GND", @@ -25502,11 +25168,35 @@ "value": "(DE-588)4140117-7" } ], + "exactMatch": [ + { + "authorized_access_point": "Lyngby-Tarbaek", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992133122" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "094409951" + } + ] + } + ], "note": [ { "noteType": "dataSource", "label": [ - "Homepage - http://www.ltk.dk" + "Homepage - http://www.ltk.dk" + ] + }, + { + "noteType": "general", + "label": [ + "Kommune in der Region Hovedstaden, Seeland" ] } ], @@ -25518,17 +25208,10 @@ "Lyngby", "Lyngby-Taarbaek" ], - "md5": "c4f7acb624af3bc19d9c49c2e2804447" + "md5": "46ad8a1e9070e1377afef65222cde464" }, { "authorized_access_point": "Herzogtum Preu\u00dfen", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Herzogtum" - } - ], "identifiedBy": [ { "source": "GND", @@ -25569,28 +25252,10 @@ "Prusko (vojvodstvo)", "Prusko (ve\u0301vodstvi\u0301)" ], - "md5": "041da4e9d2344bee08de1d1c1fb29f84" + "md5": "1ec28b1a17d4c565937aad7b85790332" }, { "authorized_access_point": "Amt Viborg", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Amt" - } - ], - "closeMatch": [ - { - "authorized_access_point": "Viborg (Amt)", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)997978201", - "source": "(DE-101)997978201" - } - } - ], "identifiedBy": [ { "source": "GND", @@ -25608,12 +25273,36 @@ "value": "(DE-588)4119415-9" } ], + "exactMatch": [ + { + "authorized_access_point": "Viborg (Amt)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)997978201" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "094419132" + } + ] + } + ], "note": [ { "noteType": "dataSource", "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=208608981" ] + }, + { + "noteType": "general", + "label": [ + "Ehemalige Verwaltungseinheit in Da\u0308nemark" + ] } ], "pid": "041194152", @@ -25633,17 +25322,10 @@ "Viborg Amtskommune", "Viborg (Amt)" ], - "md5": "22b2af905708c748a8b0eaca116c3615" + "md5": "fce0f15e8afb67ac6ceb07aaf1bcc836" }, { "authorized_access_point": "Sankt Martin (Zillis)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Saalkirche" - } - ], "identifiedBy": [ { "source": "GND", @@ -25661,6 +25343,14 @@ "value": "(DE-588)4119244-8" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Mutterkirche des Schams, Rheinwald und Avers, erw. um 840, fru\u0308hchristl. Vorga\u0308ngerkirche, karoling. Ersatzbau. Roman. Neubau um 1100 mit Bilderdecke nach 1114, 1509 um spa\u0308tgot. Chor erweitert" + ] + } + ], "pid": "041192443", "type": "bf:Place", "broader": [ @@ -25672,7 +25362,7 @@ "St. Martin (Zillis)", "Reformierte Kirche St. Martin (Zillis)" ], - "md5": "6c17a93b6e952f7ce7d3c3c8c80baf40" + "md5": "b2b3e40f2b2851296b06a12f0e3a776e" }, { "authorized_access_point": "Ochsenhausen", @@ -25700,6 +25390,12 @@ "Homepage - https://www.ochsenhausen.de/", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Ochsenhausen&oldid=246489625" ] + }, + { + "noteType": "general", + "label": [ + "Stadt im Landkreis Biberach, Oberschwaben, an der Oberschwa\u0308bischen Barockstra\u00dfe" + ] } ], "pid": "041167163", @@ -25707,17 +25403,10 @@ "variant_access_point": [ "Stadt Ochsenhausen" ], - "md5": "425774f792fd162a2ae7bd3386ea8644" + "md5": "852eb0fc4495d9fe5393a3ff658bc13d" }, { "authorized_access_point": "Obernil-Becken", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Becken" - } - ], "identifiedBy": [ { "source": "GND", @@ -25737,17 +25426,10 @@ ], "pid": "041154282", "type": "bf:Place", - "md5": "e8738909c8b86b75adba99e986d947f2" + "md5": "c96f48c7ba92cb1b87d97584212c5c00" }, { "authorized_access_point": "Landkreis Leipzig", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Landkreis" - } - ], "identifiedBy": [ { "source": "GND", @@ -25771,6 +25453,12 @@ "label": [ "Homepage - http://www.landkreisleipzig.de" ] + }, + { + "noteType": "general", + "label": [ + "1994 Eingliederung in den Landkreis Leipziger Land, 1.8.2008 Neugru\u0308ndung aus den Kreisen Leipziger Land und Muldentalkreis" + ] } ], "pid": "041112504", @@ -25790,7 +25478,7 @@ "Leipzig (Kreis)", "Leipzig (Landkreis)" ], - "md5": "0522daf634596ef86ee1985b0f4ebaae" + "md5": "752ba3f15f3e5964940c397cb994ecb5" }, { "authorized_access_point": "Wustrow Ostseebad", @@ -25817,6 +25505,12 @@ "label": [ "Wikipedia - http://de.wikipedia.org/wiki/Wustrow_(Fischland)" ] + }, + { + "noteType": "general", + "label": [ + "Ort im Landkreis Vorpommern-Ru\u0308gen" + ] } ], "pid": "041087828", @@ -25828,7 +25522,7 @@ "Wustrow (Fischland)", "Wustrow (Ribnitz-Damgarten)" ], - "md5": "7c284e25723039363d298d28292ed3f4" + "md5": "dfb701814deeed464249f27561ba1546" }, { "authorized_access_point": "Wittmund", @@ -25849,12 +25543,20 @@ "value": "(DE-588)4108467-6" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Kreisstadt des Landkreises Wittmund, NW-Niedersachsen" + ] + } + ], "pid": "041084675", "type": "bf:Place", - "md5": "ef89d2b5de7839d764f6a6a85cb83583" + "md5": "420c0ec4ebdefc05c74206f1852f2d24" }, { - "authorized_access_point": "Tihama", + "authorized_access_point": "Tihama - Nord", "identifiedBy": [ { "source": "GND", @@ -25882,7 +25584,7 @@ "variant_access_point": [ "Nord-Tihama" ], - "md5": "55f0346f9472a7f58d0e976248a53a6d" + "md5": "926d2b4d3c262b1f2c35f34c56636e1f" }, { "authorized_access_point": "Stu\u0308tzerbach", @@ -25909,6 +25611,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=St%C3%BCtzerbach&oldid=244058408" ] + }, + { + "noteType": "general", + "label": [ + "Selbststa\u0308ndige Gemeinde; seit 1. Januar 2019 Ortsteil von Ilmenau im Ilm-Kreis, Thu\u0308ringen." + ] } ], "pid": "04106125X", @@ -25926,7 +25634,7 @@ "authorized_access_point": "Ilmenau-Stu\u0308tzerbach" } ], - "md5": "4e3ac2a605af9f087ba95e0800211b5e" + "md5": "17da4e4309488a98332c1a663d462771" }, { "authorized_access_point": "Scheidegg", @@ -25953,11 +25661,17 @@ "label": [ "Homepage - https://www.scheidegg.de/" ] + }, + { + "noteType": "general", + "label": [ + "Markt im Landkreis Lindau (Bodensee), West-Allga\u0308u, Regierungsbezirk Schwaben, wahrscheinl. im 6./7. Jh. von Alemannen besiedelt, 1255 urkundl. erwa\u0308hnt" + ] } ], "pid": "041058445", "type": "bf:Place", - "md5": "ddab642c227a977d10a4b2702e214755" + "md5": "c2636090884388a873bf05dedea65dd3" }, { "authorized_access_point": "Niebu\u0308ll", @@ -25978,9 +25692,17 @@ "value": "(DE-588)4101184-3" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadt im Kreis Nordfriesland" + ] + } + ], "pid": "041011848", "type": "bf:Place", - "md5": "6b75fe6a916167664bd53d18db77b57b" + "md5": "5a22d325c7601aa48fcd88809052d264" }, { "authorized_access_point": "Leipzig-Gohlis", @@ -26001,6 +25723,14 @@ "value": "(DE-588)4099471-5" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil von Leipzig seit 1.1.1890" + ] + } + ], "pid": "040994716", "type": "bf:Place", "related": [ @@ -26014,17 +25744,10 @@ "variant_access_point": [ "Gohlis (Leipzig)" ], - "md5": "eb30f6ad259467188fa89f550f1b215d" + "md5": "ba6ad722594d8b8b5778c04d0bdc748a" }, { "authorized_access_point": "Amt K\u00f8benhavn", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Amt" - } - ], "identifiedBy": [ { "source": "GND", @@ -26048,6 +25771,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?oldid=208609237" ] + }, + { + "noteType": "general", + "label": [ + "Ehemaliges Amt in Da\u0308nemark, nun Teil der Hauptstadtregion (Region Hovedstaden)" + ] } ], "pid": "040967689", @@ -26064,7 +25793,7 @@ "K\u00f8benhavn (Amt)", "K\u00f8benhavns Amtskommune" ], - "md5": "4eced719883298f39c109083a9c6f1e2" + "md5": "aa007bb2dc58e978bd9ce113d2a86171" }, { "authorized_access_point": "Hummel (Scheidegg, Lindau)", @@ -26090,7 +25819,7 @@ "variant_access_point": [ "Scheidegg-Hummel" ], - "md5": "73f5926edfa865ab34c9072a0d9a5fc6" + "md5": "2ede8f5c6535aaefc82328ac847a7e52" }, { "authorized_access_point": "Nu\u0308mbrecht-Homburg", @@ -26111,6 +25840,14 @@ "value": "(DE-588)4095607-6" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Seit 1969 Ortsteil von Nu\u0308mbrecht" + ] + } + ], "pid": "040956075", "type": "bf:Place", "related": [ @@ -26121,7 +25858,7 @@ "authorized_access_point": "Nu\u0308mbrecht" } ], - "md5": "b83dd7ecdd3bae1d31d9a63d14024910" + "md5": "c116d5283ce4b6d3364181265efdffa9" }, { "authorized_access_point": "Hille", @@ -26142,12 +25879,20 @@ "value": "(DE-588)4095278-2" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Gemeinde im Kreis Minden-Lu\u0308bbecke" + ] + } + ], "pid": "040952789", "type": "bf:Place", "variant_access_point": [ "Gemeinde Hille" ], - "md5": "77f81d829177a6d3c1ecfc2a1048a75b" + "md5": "0d410477ced0f6c5a8841915727f21c5" }, { "authorized_access_point": "Dubrau (Calau)", @@ -26187,7 +25932,7 @@ "Dubrawa", "Dubrau (Vetschau/Spreewald)" ], - "md5": "0b68af4d83e7ba3a1755b94b8878ccc5" + "md5": "880ab11ee09e852750f5214b63621cbc" }, { "authorized_access_point": "Bernkastel", @@ -26214,6 +25959,13 @@ "label": [ "unter - https://de.wikipedia.org/wiki/Bernkastel-Kues" ] + }, + { + "noteType": "general", + "label": [ + "Stadt an der Mosel, Kreis Bernkastel, 1. Ha\u0308lfte 11. Jh. urkundl. erwa\u0308hnt, 1291 Stadtrechte, 1332 erneuert, 1.4.1905 mit Kues zu Bernkastel-Kues zusammengeschlossen", + "Kleinra\u0308umige Geographika und Ko\u0308rperschaften aus dem heutigen Ortsteil werden mit dem Doppelort angesetzt, es sei denn, es handelt sich um die nach \u00a7 209,5 Abs. 3+4 und \u00a7 605,7 Satz 2 als Ausnahme formulierten Fa\u0308lle. Nach der Eingemeindung verwende den Doppelort als Ausstellungs- bzw. Kongressort" + ] } ], "pid": "040873862", @@ -26223,7 +25975,7 @@ "authorized_access_point": "Bernkastel-Kues" } ], - "md5": "826075d65f4ea729630b44cd5053a4c8" + "md5": "80d078f79d00c2599d01f3db1d79fc69" }, { "authorized_access_point": "Fu\u0308rstenfeld", @@ -26251,6 +26003,12 @@ "Homepage - http://www.fuerstenfeld.at", "Homepage - https://fuerstenfeld.gv.at" ] + }, + { + "noteType": "general", + "label": [ + "2015 Altenmarkt bei Fu\u0308rstenfeld und U\u0308bersbach eingemeindet" + ] } ], "pid": "040865622", @@ -26267,7 +26025,7 @@ "Stadtgemeinde Fu\u0308rstenfeld", "Fu\u0308rstenfeld Thermenhauptstadt" ], - "md5": "74fb04c0483981e3ebe7a9b9248c99e4" + "md5": "23739dcdc493d6da067e5418acb5d322" }, { "authorized_access_point": "Forchheim-Burk", @@ -26294,6 +26052,12 @@ "label": [ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Burk_(Forchheim)&oldid=237498787" ] + }, + { + "noteType": "general", + "label": [ + "1978 im Zuge der Gebietsreform in Bayern zusammen mit der ehemaligen Gemeinde Buckenhofen nach Forchheim eingemeindet" + ] } ], "pid": "040805905", @@ -26310,21 +26074,10 @@ "Forchheim (Oberfr.)- Burk", "Burk (Forchheim-Burk)" ], - "md5": "1133369b2536acedf84edb536b860087" + "md5": "50b0d6d1538820e6eed35eb2eb09d92d" }, { "authorized_access_point": "Bandung", - "closeMatch": [ - { - "authorized_access_point": "Bandung", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)989919358", - "source": "(DE-101)989919358" - } - } - ], "identifiedBy": [ { "source": "GND", @@ -26342,6 +26095,32 @@ "value": "(DE-588)4080255-3" } ], + "exactMatch": [ + { + "authorized_access_point": "Bandung", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)989919358" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "091404274" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Provinzhauptstadt von Westjava, 1488 urkundl. erwa\u0308hnt, bis 1972 Bandoeng" + ] + } + ], "pid": "040802558", "type": "bf:Place", "variant_access_point": [ @@ -26349,7 +26128,7 @@ "Bandong", "Kota Kembang" ], - "md5": "d3ce4a7000fc53548e09a2da2347180f" + "md5": "ac0e67be2b1ba6cb27838e1dac433399" }, { "authorized_access_point": "Innerschweiz", @@ -26370,6 +26149,14 @@ "value": "(DE-588)4079490-8" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Umfasst die fu\u0308nf Kt. Luzern, Uri, Schwyz, Unterwalden (Ob- und Nidwalden) und Zug" + ] + } + ], "pid": "040794903", "type": "bf:Place", "broader": [ @@ -26381,34 +26168,10 @@ "Zentralschweiz", "Fu\u0308nf Orte" ], - "md5": "14e02759f12471dded2070063d1aba9f" + "md5": "ee4f2da38622d4f6cecb38460a9b693e" }, { "authorized_access_point": "Russland", - "closeMatch": [ - { - "authorized_access_point": "Russland", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)970009437", - "source": "(DE-101)970009437" - } - }, - { - "authorized_access_point": "Russland", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)970586809", - "source": "(DE-101)970586809" - } - }, - { - "authorized_access_point": "\u0420\u043e\u0441\u0441\u0438\u044f", - "source": "GND" - } - ], "identifiedBy": [ { "source": "GND", @@ -26426,6 +26189,56 @@ "value": "(DE-588)4076899-5" } ], + "exactMatch": [ + { + "authorized_access_point": "Russland", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970009437" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "17534-6" + }, + { + "type": "uri", + "value": "http://zbw.eu/stw/descriptor/17534-6" + } + ] + }, + { + "authorized_access_point": "Russland", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)970586809" + }, + { + "source": "GESIS", + "type": "bf:Nbn", + "value": "10057012" + }, + { + "type": "uri", + "value": "http://lod.gesis.org/thesoz/concept_10057012" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Sacherschlie\u00dfung: Benutzt fu\u0308r das Russische Reich 1547-1917, das Territorium fu\u0308r die Zeit davor, wenn der behandelte Raum gro\u0308sser ist als die fu\u0308r diese Zeit existierenden Fu\u0308rstentu\u0308mer sowie fu\u0308r die Russische Fo\u0308deration ab 1991. Fu\u0308r die Russische SFSR 1917-1991 benutze Russische SFSR." + ] + } + ], "pid": "040768996", "type": "bf:Place", "related": [ @@ -26458,21 +26271,10 @@ "\u0420\u043e\u0441\u0441\u0438\u0438\u0306\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f", "\u0420\u043e\u0441\u0441\u0438\u0438\u0306\u0441\u043a\u0430\u044f \u0418\u043c\u043f\u0435\u0440\u0438\u044f" ], - "md5": "3fd97f94a0979af2620aeb65a5b21206" + "md5": "fdb480dbb23cb18d8fb96520ddee7bbf" }, { "authorized_access_point": "Nordschleswig", - "closeMatch": [ - { - "authorized_access_point": "Nordschleswig", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)992404371", - "source": "(DE-101)992404371" - } - } - ], "identifiedBy": [ { "source": "GND", @@ -26490,6 +26292,24 @@ "value": "(DE-588)4075476-5" } ], + "exactMatch": [ + { + "authorized_access_point": "Nordschleswig", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992404371" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "091413621" + } + ] + } + ], "pid": "040754766", "type": "bf:Place", "broader": [ @@ -26510,7 +26330,7 @@ "Su\u0308dda\u0308nemark", "S\u00f8nderjylland" ], - "md5": "4928526430cc69ce78284fc42389d088" + "md5": "f6f72b31ed7680aaa13659c2e5cc70d4" }, { "authorized_access_point": "Kues", @@ -26531,6 +26351,15 @@ "value": "(DE-588)4073858-9" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Winzerdorf an der Mosel, Kreis Bernkastel, 1.4.1905 mit Bernkastel zu Bernkastel-Kues zusammengeschlossen", + "Kleinra\u0308umige Geographika und Ko\u0308rperschaften aus dem heutigen Ortsteil werden mit dem Doppelort angesetzt, es sei denn, es handelt sich um die nach \u00a7 209,5 Abs. 3+4 und \u00a7 605,7 Satz 2 als Ausnahme formulierten Fa\u0308lle. Nach der Eingemeindung verwende den Doppelort als Ausstellungs- bzw. Kongressort" + ] + } + ], "pid": "040738582", "type": "bf:Place", "broader": [ @@ -26541,7 +26370,7 @@ "variant_access_point": [ "Cues" ], - "md5": "ed3c1a6cbbb2d53a1a9339f35e40e960" + "md5": "3764e5c2d751c14e5e58496d18f78263" }, { "authorized_access_point": "Bernkastel-Kues", @@ -26568,6 +26397,12 @@ "label": [ "Homepage - https://www.bernkastel-kues.de" ] + }, + { + "noteType": "general", + "label": [ + "Stadt an der Mosel, Landkreis Bernkastel-Wittlich (-7-6-1969: (Land-)Kreis Bernkastel), 1.4.1905 durch Zusammenschlu\u00df von Bernkastel und Kues entstanden" + ] } ], "pid": "040693309", @@ -26587,17 +26422,10 @@ "Stadtgemeinde Bernkastel-Kues", "Verbandsgemeinde Bernkastel-Kues" ], - "md5": "35d7edea9b806de759ee05b2f9740b20" + "md5": "27e9e304f8b06cd5634bcfd19af57ec4" }, { "authorized_access_point": "Kreis Zu\u0308llichau-Schwiebus", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Kreis" - } - ], "identifiedBy": [ { "source": "GND", @@ -26615,6 +26443,14 @@ "value": "(DE-588)4068022-8" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Der Kreis Zu\u0308llichau-Schwiebus war ein preu\u00dfischer Landkreis, der von 1816 bis 1945 in der Provinz Brandenburg bestand." + ] + } + ], "pid": "040680223", "type": "bf:Place", "related": [ @@ -26627,17 +26463,10 @@ "Landkreis Zu\u0308llichau-Schwiebus", "Zu\u0308llichau-Schwiebus (Kreis)" ], - "md5": "b65e184868796e42405e78917da973a6" + "md5": "b02e0065122bf66220534602053c7d5a" }, { "authorized_access_point": "Westfa\u0308lische Bucht", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Becken" - } - ], "identifiedBy": [ { "source": "GND", @@ -26663,28 +26492,10 @@ "Mu\u0308nsterla\u0308nder Bucht", "Mu\u0308nsterla\u0308nder Becken" ], - "md5": "920daed676c949a8b31ea3e5f056bb7f" + "md5": "206c8add5931ffe8d87d8cf2fa43723d" }, { "authorized_access_point": "Venedig", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "vbal", - "name": "Venezianer" - } - ], - "closeMatch": [ - { - "authorized_access_point": "Venedig", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)997977663", - "source": "(DE-101)997977663" - } - } - ], "identifiedBy": [ { "source": "GND", @@ -26702,12 +26513,36 @@ "value": "(DE-588)4062501-1" } ], + "exactMatch": [ + { + "authorized_access_point": "Venedig", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)997977663" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "091419204" + } + ] + } + ], "note": [ { "noteType": "dataSource", "label": [ "Homepage - http://www.comune.venezia.it" ] + }, + { + "noteType": "general", + "label": [ + "Hauptstadt der Region Venetien und der Metropolitanstadt Venedig" + ] } ], "pid": "04062501X", @@ -26732,46 +26567,19 @@ "Vinegia", "Comune di Venezia", "Venegia", - "Vinetia", - "Venetia", - "Venetik", - "Wenetik", - "Serenissima (Venezia)", - "Enetiesi", - "Henetiesi", - "Vineggia" - ], - "md5": "1da459c467413095ea460fcfddef8afd" - }, - { - "authorized_access_point": "Toskana", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "vbal", - "name": "Toskaner" - } - ], - "closeMatch": [ - { - "authorized_access_point": "Tursiops", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)1256264652", - "source": "(DE-101)1256264652" - } - }, - { - "authorized_access_point": "Toskana", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)997923210", - "source": "(DE-101)997923210" - } - } + "Vinetia", + "Venetia", + "Venetik", + "Wenetik", + "Serenissima (Venezia)", + "Enetiesi", + "Henetiesi", + "Vineggia" ], + "md5": "381c40211578a0afc81f0e4c42e16bdb" + }, + { + "authorized_access_point": "Toskana", "identifiedBy": [ { "source": "GND", @@ -26789,6 +26597,52 @@ "value": "(DE-588)4060485-8" } ], + "exactMatch": [ + { + "authorized_access_point": "Tursiops", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1256264652" + }, + { + "source": "ITRFAO", + "type": "bf:Nbn", + "value": "8021" + }, + { + "type": "uri", + "value": "http://aims.fao.org/aos/agrovoc/c_8021" + } + ] + }, + { + "authorized_access_point": "Toskana", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)997923210" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "091418437" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Region in Mittelitalien mit den Provinzen Arezzo, Florenz, Grosseto, Livorno, Lucca, Massa-Carrara, Pisa, Pistoia, Prato, Siena. Hauptstadt: Florenz" + ] + } + ], "pid": "040604853", "type": "bf:Place", "related": [ @@ -26805,7 +26659,7 @@ "Granducato Toscana", "Gro\u00dfherzogtum Toskana" ], - "md5": "ec7092e40793250a514b65a46ceb0224" + "md5": "8fd17845f69aa668575dc3a120282f06" }, { "authorized_access_point": "Tihama", @@ -26826,12 +26680,20 @@ "value": "(DE-588)4060151-1" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ku\u0308stentiefland im SW der Arabischen Halbinsel, Saudi-Arabien und Jemen" + ] + } + ], "pid": "04060151X", "type": "bf:Place", "variant_access_point": [ "Tihamah" ], - "md5": "af23556ade20de73e08160f5923c7392" + "md5": "5d9090cc923f34ed2048d19425f87a17" }, { "authorized_access_point": "Teltow", @@ -26852,30 +26714,20 @@ "value": "(DE-588)4059408-7" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadt im Landkreis Potsdam-Mittelmark" + ] + } + ], "pid": "040594084", "type": "bf:Place", - "md5": "ad9c68305d3fbd18c8f2cdb1ec263f03" + "md5": "a4e23f869f4f5bb484d0a4af8eb202a3" }, { "authorized_access_point": "Amt Storstr\u00f8m", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Amt" - } - ], - "closeMatch": [ - { - "authorized_access_point": "Storstrom (Amt)", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)997893702", - "source": "(DE-101)997893702" - } - } - ], "identifiedBy": [ { "source": "GND", @@ -26893,6 +26745,32 @@ "value": "(DE-588)4057749-1" } ], + "exactMatch": [ + { + "authorized_access_point": "Storstrom (Amt)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)997893702" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "091417678" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Da\u0308nische Amtskommune, seit 2007 geho\u0308rt das Gebiet zur Region Sj\u00e6lland" + ] + } + ], "pid": "04057749X", "type": "bf:Place", "related": [ @@ -26917,28 +26795,10 @@ "Storstr\u00f8m (Amt)", "Storstr\u00f8m Amtskommune" ], - "md5": "20e7c0c1563d224437772052b4f2dbbd" + "md5": "be5d4c1a8f9811ca74a3ae0099c04ea4" }, { "authorized_access_point": "Sa\u0303o Paulo (Staat)", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Staat" - } - ], - "closeMatch": [ - { - "authorized_access_point": "Sao Paulo (Staat)", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)997844345", - "source": "(DE-101)997844345" - } - } - ], "identifiedBy": [ { "source": "GND", @@ -26956,12 +26816,36 @@ "value": "(DE-588)4051668-4" } ], + "exactMatch": [ + { + "authorized_access_point": "Sao Paulo (Staat)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)997844345" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "091416604" + } + ] + } + ], "note": [ { "noteType": "dataSource", "label": [ "Homepage - http://www.saopaulo.sp.gov.br" ] + }, + { + "noteType": "general", + "label": [ + "Bundesstaat in Su\u0308dostbrasilien" + ] } ], "pid": "040516687", @@ -26976,7 +26860,7 @@ "S. Paulo (Staat)", "Estado de S. Paulo" ], - "md5": "3cd437276a9d22deab41839b529d9de7" + "md5": "b41dba74c2a8ad57636c31a4e8303a5c" }, { "authorized_access_point": "Norden (Landkreis Aurich)", @@ -26997,6 +26881,14 @@ "value": "(DE-588)4042513-7" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadt im Landkreis Aurich, Ostfriesland, 1255 urkundl. erwa\u0308hnt" + ] + } + ], "pid": "040425134", "type": "bf:Place", "broader": [ @@ -27013,7 +26905,7 @@ "Stadt Norden", "No\u0308rden" ], - "md5": "bf8a6156dd5519ebee932fae0e7048ba" + "md5": "d5a7044a12489ec623ba3f4276d60c95" }, { "authorized_access_point": "Nagold", @@ -27041,6 +26933,12 @@ "Wikipedia - https://de.wikipedia.org/w/index.php?title=Nagold&oldid=218578103", "Homepage - https://www.nagold.de/" ] + }, + { + "noteType": "general", + "label": [ + "Stadt im Kreis Calw, Region Nordschwarzwald, Baden-Wu\u0308rttemberg" + ] } ], "pid": "04041146X", @@ -27049,7 +26947,7 @@ "Stadt Nagold", "Gro\u00dfe Kreisstadt Nagold" ], - "md5": "2d1b373cf31436f789af71db1cbf36bc" + "md5": "59753617a097ded87d78ea75997323ab" }, { "authorized_access_point": "Markkleeberg", @@ -27070,6 +26968,14 @@ "value": "(DE-588)4037604-7" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadt im Landkreis Leipzig (bis 1.8.2008 Landkreis Leipziger Land), 1.1.1934 durch Zusammenschlu\u00df von Oetzsch, Markkleeberg u. Gautzsch gegru\u0308ndet; spa\u0308ter gebra\u0308uchliche Namen Markkleeberg-Mitte (Oetzsch) und Markkleeberg-West (Gautzsch)" + ] + } + ], "pid": "040376044", "type": "bf:Place", "related": [ @@ -27084,21 +26990,10 @@ "Stadt Markkleeberg", "Cleburg" ], - "md5": "f1a215dd0270cf4e2a71c24287bb34a4" + "md5": "857dacddc906ff2ba8561fdbb360d7ad" }, { "authorized_access_point": "Mannheim", - "closeMatch": [ - { - "authorized_access_point": "Mannheim", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)992252873", - "source": "(DE-101)992252873" - } - } - ], "identifiedBy": [ { "source": "GND", @@ -27116,12 +27011,36 @@ "value": "(DE-588)4037372-1" } ], + "exactMatch": [ + { + "authorized_access_point": "Mannheim", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992252873" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "091412013" + } + ] + } + ], "note": [ { "noteType": "dataSource", "label": [ "Homepage - https://www.mannheim.de" ] + }, + { + "noteType": "general", + "label": [ + "Stadt im Regierungsbezirk Karlsruhe, Dorf 766 urkundl. erwa\u0308hnt, Stadt ab 1607 planma\u0308\u00dfig angelegt" + ] } ], "pid": "04037372X", @@ -27141,7 +27060,7 @@ "Mannehemium", "Interamnium" ], - "md5": "fd50ca26d07bb452c2ed7ffee32d2147" + "md5": "4a164766964f842c3fd9cb75b52f0ad9" }, { "authorized_access_point": "Bernkastel-Kues-Machern", @@ -27162,6 +27081,14 @@ "value": "(DE-588)4036811-7" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ortsteil von Bernkastel-Kues" + ] + } + ], "pid": "040368114", "type": "bf:Place", "related": [ @@ -27172,21 +27099,10 @@ "variant_access_point": [ "Machern (Bernkastel-Kues)" ], - "md5": "592384b7d8076b0256e4ce188d9499df" + "md5": "9b801a440d78a6665d4cad4dc40d7d41" }, { "authorized_access_point": "Lima", - "closeMatch": [ - { - "authorized_access_point": "Lima", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)992096243", - "source": "(DE-101)992096243" - } - } - ], "identifiedBy": [ { "source": "GND", @@ -27204,12 +27120,38 @@ "value": "(DE-588)4035742-9" } ], + "exactMatch": [ + { + "authorized_access_point": "Lima", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)992096243" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "091411270" + } + ] + } + ], + "note": [ + { + "noteType": "general", + "label": [ + "Hauptstadt von Peru u. der gleichnamigen Provinz, 6.1.1535 als Ciudad de Los Reyes gegru\u0308ndet" + ] + } + ], "pid": "040357422", "type": "bf:Place", "variant_access_point": [ "Ciudad de Los Reyes" ], - "md5": "2cf0efb7a367b190066a8a4120595f7d" + "md5": "93ba11db5bf6f53f9f47cb24e5f7c695" }, { "authorized_access_point": "Laubach (Landkreis Gie\u00dfen)", @@ -27230,6 +27172,14 @@ "value": "(DE-588)4034691-2" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadt im Naturpark Vogelsberg, Landkreis Gie\u00dfen, 786 urkundl. erwa\u0308hnt, 1405 als Stadt bezeichnet" + ] + } + ], "pid": "040346919", "type": "bf:Place", "broader": [ @@ -27241,21 +27191,10 @@ "Laubach (Oberhessen)", "Laubach in Hessen" ], - "md5": "0f73ade8ccb3524c859efa14d472bc9f" + "md5": "4983f347ec378446fce688b6957202f4" }, { "authorized_access_point": "Kiel", - "closeMatch": [ - { - "authorized_access_point": "Kiel", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)991666976", - "source": "(DE-101)991666976" - } - } - ], "identifiedBy": [ { "source": "GND", @@ -27273,12 +27212,36 @@ "value": "(DE-588)4030481-4" } ], + "exactMatch": [ + { + "authorized_access_point": "Kiel", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)991666976" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "09141024X" + } + ] + } + ], "note": [ { "noteType": "dataSource", "label": [ "Homepage - https://www.kiel.de/" ] + }, + { + "noteType": "general", + "label": [ + "Landeshauptstadt von Schleswig-Holstein seit 23.8.1946, 1233 gegru\u0308ndet, 1242 Stadtrecht" + ] } ], "pid": "040304817", @@ -27296,7 +27259,7 @@ "Kylis", "K\u0327i\u0304le" ], - "md5": "01837ca6cbba5d7b58a7305ddabfcd0b" + "md5": "19f6de4e02aa345041de9a5be078297d" }, { "authorized_access_point": "Karben", @@ -27317,6 +27280,14 @@ "value": "(DE-588)4029637-4" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadt im Wetteraukreis" + ] + } + ], "pid": "040296377", "type": "bf:Place", "related": [ @@ -27339,7 +27310,7 @@ "authorized_access_point": "Petterweil" } ], - "md5": "e25347140da857fd3b455a1c55309752" + "md5": "f4a9cbc3e3dcbc91a6c72609b79f5177" }, { "authorized_access_point": "Judenburg", @@ -27373,7 +27344,7 @@ "variant_access_point": [ "Stadtgemeinde Judenburg" ], - "md5": "d3627f5cff65646c7fb6eedfcf8b6e58" + "md5": "1ea2b9d580f1fac2dd6f8591b0156e16" }, { "authorized_access_point": "Heidenheim", @@ -27400,6 +27371,12 @@ "label": [ "Homepage - https://heidenheim.hahnenkamm.de/" ] + }, + { + "noteType": "general", + "label": [ + "Markt im Landkreis Wei\u00dfenburg-Gunzenhausen, Regierungsbezirk Mittelfranken, Kloster 752 gegru\u0308ndet" + ] } ], "pid": "04024010X", @@ -27412,7 +27389,7 @@ "Heidenheim (Hahnenkamm)", "Heidenheim am Hahnenkamm" ], - "md5": "2bed05f7671b3a86579df2adea38ec36" + "md5": "4492b0cb69c1a69a5be1e04e5c0e2dae" }, { "authorized_access_point": "Freilassing", @@ -27446,21 +27423,10 @@ "variant_access_point": [ "Stadt Freilassing" ], - "md5": "3f462632e9f20b09f25fff76edf7b902" + "md5": "91baba0e0c279c97eb124f3e05e31910" }, { "authorized_access_point": "Calw", - "closeMatch": [ - { - "authorized_access_point": "Calw", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)990001474", - "source": "(DE-101)990001474" - } - } - ], "identifiedBy": [ { "source": "GND", @@ -27478,12 +27444,36 @@ "value": "(DE-588)4009341-4" } ], + "exactMatch": [ + { + "authorized_access_point": "Calw", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)990001474" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "091405505" + } + ] + } + ], "note": [ { "noteType": "dataSource", "label": [ "Homepage - https://www.calw.de" ] + }, + { + "noteType": "general", + "label": [ + "Kreisstadt des Landkreises Calw; 1075 urkundl. erwa\u0308hnt, seit 13. Jh. Stadtrecht" + ] } ], "pid": "040093417", @@ -27498,28 +27488,10 @@ "Gro\u00dfe Kreisstadt Calw", "Kalw" ], - "md5": "95e6df74d5c635dbafa9223ce7b4a6c0" + "md5": "e7657dee80408c1a7a67bff199354ab7" }, { "authorized_access_point": "Departement Cajamarca", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Departement" - } - ], - "closeMatch": [ - { - "authorized_access_point": "Cajamarca (Dep.)", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)989991571", - "source": "(DE-101)989991571" - } - } - ], "identifiedBy": [ { "source": "GND", @@ -27537,6 +27509,24 @@ "value": "(DE-588)4009300-1" } ], + "exactMatch": [ + { + "authorized_access_point": "Cajamarca (Dep.)", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)989991571" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "091405467" + } + ] + } + ], "pid": "04009300X", "type": "bf:Place", "broader": [ @@ -27549,21 +27539,10 @@ "Cajamarca (Dep.)", "Departamento de Cajamarca" ], - "md5": "94f7f531df43a2ef774b2f1193b2b697" + "md5": "c74bfbfcd4348ab76a7b1a29eb0454cc" }, { "authorized_access_point": "Berchtesgaden", - "closeMatch": [ - { - "authorized_access_point": "Berchtesgaden", - "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)989944697", - "source": "(DE-101)989944697" - } - } - ], "identifiedBy": [ { "source": "GND", @@ -27581,6 +27560,24 @@ "value": "(DE-588)4005574-7" } ], + "exactMatch": [ + { + "authorized_access_point": "Berchtesgaden", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)989944697" + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "091404614" + } + ] + } + ], "note": [ { "noteType": "dataSource", @@ -27594,17 +27591,10 @@ "variant_access_point": [ "Markt Berchtesgaden" ], - "md5": "4c7a1f3955a7a8d641ee8fe7d6337c7a" + "md5": "54492ffd53e69ea6e912ecaaafe1d087" }, { "authorized_access_point": "Amt A\u030abenra\u030a", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Amt" - } - ], "identifiedBy": [ { "source": "GND", @@ -27651,7 +27641,7 @@ "Abenraa (Amt)", "Apenrade (Amt)" ], - "md5": "2410d80b52827500fad7955433008640" + "md5": "b2b30b8927368551420a59815529ce7b" }, { "authorized_access_point": "Gru\u0308nberg-Stockhausen", @@ -27672,6 +27662,14 @@ "value": "(DE-588)3014160-6" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadtteil von Gru\u0308nberg im Landkreis Gie\u00dfen, Hessen" + ] + } + ], "pid": "030141605", "type": "bf:Place", "related": [ @@ -27686,7 +27684,7 @@ "Gru\u0308nberg (Landkreis Gie\u00dfen-Stockhausen)", "Stockhausen (Gru\u0308nberg-Stockhausen)" ], - "md5": "b631697d081c965e7b39a5613923fcc9" + "md5": "3b9ed6330e5227ec4f2fd02097ceb8fe" }, { "authorized_access_point": "Rodheim vor der Ho\u0308he", @@ -27726,7 +27724,7 @@ "Rodheim (Ho\u0308he)", "Rottheim" ], - "md5": "f0a45a3dbd510d3700e5b98fcd07e8aa" + "md5": "13b782dc7052893cb23df1434b6d2c6e" }, { "authorized_access_point": "Leipzig-Su\u0308d", @@ -27754,17 +27752,10 @@ "authorized_access_point": "Leipzig" } ], - "md5": "f753520fcadd8c6704638658fdfb46b6" + "md5": "9212789ec77c5fb4e10423dc06dd5d11" }, { "authorized_access_point": "Amt Bornholm", - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Amt" - } - ], "identifiedBy": [ { "source": "GND", @@ -27782,6 +27773,14 @@ "value": "(DE-588)2128029-0" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Ehemaliges Amt, geho\u0308rte seit 2002 zu Bornholms Regionskommune und seit 2007 wie Kopenhagen und Frederiksberg zur Region Hovedstaden und hat seinen Amtstatus verloren" + ] + } + ], "pid": "007749023", "type": "bf:Place", "broader": [ @@ -27796,7 +27795,7 @@ "Bornholms Amt", "Bornholm (Amt)" ], - "md5": "32f039109709bed48581ee826a786152" + "md5": "5b29c568deeca632745c5748d2d85e85" }, { "authorized_access_point": "Deining (Wolfratshausen)", @@ -27824,16 +27823,10 @@ "authorized_access_point": "Egling" } ], - "md5": "11fb7005564dd0b01a75e47807f64786" + "md5": "9a12b11f4c373e66e9ecc0ce018bcfc1" }, { "authorized_access_point": "Russisch-Orthodoxe Dio\u0308zese des Orthodoxen Bischofs von Berlin und Deutschland", - "closeMatch": [ - { - "authorized_access_point": "\u0420\u0443\u0441\u0441\u043a\u0430\u044f \u041f\u0440\u0430\u0432\u043e\u0441\u043b\u0430\u0432\u043d\u0430\u044f \u0417\u0430\u0440\u0443\u0431\u0435\u0436\u043d\u0430\u044f \u0426\u0435\u0440\u043a\u043e\u0432\u044c", - "source": "GND" - } - ], "identifiedBy": [ { "source": "GND", @@ -27870,7 +27863,7 @@ "Russische Orthodoxe Dio\u0308zese von Berlin und Deutschland", "Russische Orthodoxe Kirche im Ausland" ], - "md5": "8a15b4d8b55e6f8d5ea6a677179459ca" + "md5": "4d07af54eb6a119cd60dca0566bb5422" }, { "authorized_access_point": "Bolkenhain", @@ -27898,7 +27891,7 @@ "authorized_access_point": "Bolko\u0301w" } ], - "md5": "79f8e9c4bb6f7efb9a93e313b3c534c9" + "md5": "a0d83e3e52729011e1f310a6c22f3d28" }, { "authorized_access_point": "Melton Mowbray", @@ -27919,9 +27912,17 @@ "value": "(DE-588)110153-5" } ], + "note": [ + { + "noteType": "general", + "label": [ + "Stadt im County Leicestershire, East Midlands, England, 1086 urkundl. erwa\u0308hnt" + ] + } + ], "pid": "001101536", "type": "bf:Place", - "md5": "f7bd767ab147d331439504521187268a" + "md5": "61c7246b52eddcd8a087d68b8c433ee5" }, { "authorized_access_point": "Aalen-Wasseralfingen", @@ -27942,6 +27943,14 @@ "value": "(DE-588)34707-3" } ], + "note": [ + { + "noteType": "general", + "label": [ + "21.6.1975 nach Aalen eingemeindet, im Ostalbkreis, Baden-Wu\u0308rttemberg" + ] + } + ], "pid": "000347078", "type": "bf:Place", "related": [ @@ -27952,6 +27961,6 @@ "authorized_access_point": "Wasseralfingen" } ], - "md5": "e2a78a0aaf1313433bdd5d7594fe980e" + "md5": "1a1cf17310772097fe06965a1269c9e3" } -] \ No newline at end of file +] diff --git a/data/plgnd_metadata.csv b/data/plgnd_metadata.csv index 14c9257b..2ffdbf44 100644 --- a/data/plgnd_metadata.csv +++ b/data/plgnd_metadata.csv @@ -1,913 +1,720 @@ -2024-07-16 19:07:59.230921 2024-07-17 07:01:14.531465 b144f528-02ca-48d8-a04d-a85f72968b43 {"md5": "f6d453d51f32b1e66905809f80dd4f1b", "pid": "963614673", "note": [{"label": ["Internet - http://www.ev-kg-breckerfeld.de/j-kg/?page_id=71"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Breckerfeld"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4668633-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963614673", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4668633-2", "source": "GND"}], "classification": [{"name": "Basilika", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Baudenkmal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Jakobus-Kirche (Breckerfeld)", "Evangelische Pfarrkirche (Breckerfeld)", "Evangelische Jakobus-Kirche (Breckerfeld)", "Ev. Kirche (Breckerfeld)"], "authorized_access_point": "Jakobus-Kirche Breckerfeld (Breckerfeld)"} 3 -2024-07-16 19:07:20.498604 2024-07-17 07:00:22.757435 449dc92b-0ea0-49a6-aa17-8b87f2228d26 {"md5": "1a4877fe79fc01dacd70b37352479599", "pid": "133523909X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Venedig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133523909X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133523909X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133523909X", "source": "GND"}], "classification": [{"name": "Klosteranlage", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Klosteranlage des Monastero di Santa Croce alla Giudecca (Venedig)"} 3 -2024-07-16 19:07:20.449062 2024-07-17 07:00:23.059692 5fdae311-c514-4943-a530-338bc892ee91 {"md5": "937cf0248f6d4da93792064e35dcedd6", "pid": "1335243240", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "San Basilio (Sardinien)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335243240", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335243240", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335243240", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "San Pietro Apostolo (San Basilio, Sardinien)"} 3 -2024-07-16 19:07:20.398202 2024-07-17 07:00:23.353352 59d2c463-5914-4c53-b159-6f7456367489 {"md5": "a5325d2bbb62afe52cb7ebbcb815ca5c", "pid": "1335249966", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Steinburg_(Holstein)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Süderau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335249966", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335249966", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335249966", "source": "GND"}], "classification": [{"name": "Tiefenburg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Steinburg (Süderau)"} 3 -2024-07-16 19:07:20.34816 2024-07-17 07:00:23.596456 a874fcf0-2d52-442c-b013-881a15d02dd1 {"md5": "b1ee337f5077380a09d68066d99f29e1", "pid": "133525207X", "note": [{"label": ["Wikipedia - https://pl.wikipedia.org/w/index.php?title=Kwiatk%C3%B3w_(powiat_turecki)&oldid=72550113"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133525207X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133525207X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133525207X", "source": "GND"}], "authorized_access_point": "Kwiatków"} 3 -2024-07-16 19:07:20.222551 2024-07-17 07:00:24.273233 2e4c32cc-6d76-4184-8533-48a9714ae4bf {"md5": "1957d4f38b442be11cb057eaaf7e9880", "pid": "1335257101", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Katovice&oldid=242019016"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335257101", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335257101", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335257101", "source": "GND"}], "variant_access_point": ["Katowitz"], "authorized_access_point": "Katovice"} 3 -2024-07-16 19:07:20.130747 2024-07-17 07:00:24.598356 4f7faa9c-6c06-4277-88f3-d26fa854ef85 {"md5": "94179a3a9fb9e72053f299534acfbeb8", "pid": "1335257845", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Katovice"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335257845", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335257845", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335257845", "source": "GND"}], "classification": [{"name": "Burgwall", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Burgwall Katowitz", "Kněží hora", "Hradiště na Kněží hoře", "Katowice", "Katowitz"], "authorized_access_point": "Burgwall Katovice"} 3 -2024-07-16 19:07:20.563118 2024-07-17 07:00:22.480686 88d26b8e-f018-49fd-ba96-9ac40b615b3b {"md5": "e00f859c0020ce7c33fda090bc62842f", "pid": "1335217711", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Gunzenhausen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335217711", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335217711", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335217711", "source": "GND"}], "variant_access_point": ["Büchelberg (Gunzenhausen)"], "authorized_access_point": "Gunzenhausen-Büchelberg"} 3 -2024-07-16 19:07:20.29867 2024-07-17 07:00:23.885923 e3ef116b-2488-442b-9f39-354c129fcbd1 {"md5": "87b304ecb151a650c9367d93c40ff32d", "pid": "133525675X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Wielbark_(Malbork)&oldid=236755840"], "noteType": "dataSource"}, {"label": ["Ort in der Wojewodschaft Pommern, Powiat malborski; der größere Teil gehört zur Stadt Malbork"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133525675X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133525675X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133525675X", "source": "GND"}], "variant_access_point": ["Wielbark", "Willenberg"], "authorized_access_point": "Malbork-Wielbark"} 3 -2024-07-16 19:07:21.259761 2024-07-17 07:00:19.686893 725814f4-57de-4448-ab25-e5c8623ea3bc {"md5": "552b212cb3b66f3c3e640ff921c7604d", "pid": "1335086005", "note": [{"label": ["GeoNames - https://www.geonames.org/761744/podsuliszka.html", "Wikipedia - https://en.wikipedia.org/w/index.php?title=Podsuliszka&oldid=1166090601"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Powiat radomski"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335086005", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335086005", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335086005", "source": "GND"}], "authorized_access_point": "Podsuliszka"} 3 -2024-07-16 19:07:21.157319 2024-07-17 07:00:19.98184 71454204-9a62-45ff-b488-889f6bd1c97f {"md5": "92c77e0dc91babe1e42a3d7377974d79", "pid": "1335092196", "note": [{"label": ["Homepage - https://www.neufreimann.de/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "München"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335092196", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335092196", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335092196", "source": "GND"}], "variant_access_point": ["Neufreimann (München-Neufreimann)"], "authorized_access_point": "München-Neufreimann"} 3 -2024-07-16 19:07:21.071815 2024-07-17 07:00:20.276046 1b3c2a53-67ea-44ea-9c9e-149336b7842a {"md5": "9871042c3dcdb867a88ed1f6e6d37c1a", "pid": "1335092390", "note": [{"label": ["AW-Wiki - https://www.aw-wiki.de/index.php/Villa_Wente_(Niederbreisig)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bad Breisig"}, {"authorized_access_point": "Bad Niederbreisig"}, {"authorized_access_point": "Bad Breisig- Niederbreisig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335092390", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335092390", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335092390", "source": "GND"}], "classification": [{"name": "Villa", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Villa Wenté (Bad Niederbreisig)", "Villa Wenté (Bad Breisig- Niederbreisig)"], "authorized_access_point": "Villa Wenté (Bad Breisig)"} 3 -2024-07-16 19:07:20.988211 2024-07-17 07:00:20.566388 3faf1e19-5b8b-4907-90e3-59e17c353cdc {"md5": "61bb294f92844e87999c8208c6c90d32", "pid": "1335098399", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Portsmouth_(Dominica)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335098399", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335098399", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335098399", "source": "GND"}], "authorized_access_point": "Portsmouth (Dominica)"} 3 -2024-07-16 19:07:20.822914 2024-07-17 07:00:21.232968 a38146f3-f0b4-4c45-b710-f30108a5f668 {"md5": "d80ee3c9ce81f4f91547769bee01fb28", "pid": "1335107711", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chūbu"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335107711", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335107711", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335107711", "source": "GND"}], "classification": [{"name": "Region", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Hokuriku Chihō", "北陸地方"], "authorized_access_point": "Hokuriku"} 3 -2024-07-16 19:07:20.738816 2024-07-17 07:00:21.866943 7c3b1c81-4dcd-4ab6-853c-7330828f17bc {"md5": "288e6d783cf8aa5fa5a0b42dd891e07c", "pid": "1335141790", "note": [{"label": ["Wikipedia (spanisch) - https://es.wikipedia.org/wiki/Caicara_de_Matur%C3%ADn"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335141790", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335141790", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335141790", "source": "GND"}], "authorized_access_point": "Caicara de Maturín"} 3 -2024-07-16 19:07:20.648141 2024-07-17 07:00:22.150809 427c684d-d1fd-412b-9387-f0b997b0e0f0 {"md5": "e1c64024aa0576dfe4b4c9df1d6cf3d5", "pid": "1335201653", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Somerset County, NJ"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335201653", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335201653", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335201653", "source": "GND"}], "variant_access_point": ["Skillman, New Jersey"], "authorized_access_point": "Skillman, NJ"} 3 -2024-07-16 19:07:21.910579 2024-07-17 07:00:17.313961 9e3fe4ed-31a8-4e1d-ab8d-a6cb5ee0effd {"md5": "8bfb823cdf023d72ec78e5c32f68c312", "pid": "1334904251", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=214053093"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334904251", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334904251", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334904251", "source": "GND"}], "variant_access_point": ["Wischke", "Wischkau", "Wieschke", "Lindendorf O.S."], "authorized_access_point": "Wyszków Śląski"} 3 -2024-07-16 19:07:21.823014 2024-07-17 07:00:17.5977 39974569-0892-40bd-9c65-5660384f7f29 {"md5": "3eecc7ab0092c308a65eea2a04019df8", "pid": "1334907048", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Innsbruck"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334907048", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334907048", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334907048", "source": "GND"}], "classification": [{"name": "Bürohaus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Salurner Straße 2 (Innsbruck)"], "authorized_access_point": "SPÖ-Parteihaus (Innsbruck)"} 3 -2024-07-16 19:07:21.654744 2024-07-17 07:00:18.323099 71e0bfb7-c4e0-4b3a-a19f-2c36fca5778b {"md5": "c68e98c9801783ba57fcf34eab33ad14", "pid": "1334913498", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Schelklingen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334913498", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334913498", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334913498", "source": "GND"}], "classification": [{"name": "Burg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Schloss Hohenschelklingen (Schelklingen)", "Burg Hohen Schelklingen (Schelklingen)"], "authorized_access_point": "Burg Hohenschelklingen (Schelklingen)"} 3 -2024-07-16 19:07:21.574186 2024-07-17 07:00:18.600742 454e13ce-62a3-4ed6-ae78-5484dfbea9c7 {"md5": "bd94d5770fd6d10c6189235a9e97304c", "pid": "1334916292", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Sankt-Veits-Dom (Prag)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334916292", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334916292", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334916292", "source": "GND"}], "classification": [{"name": "Portal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Sankt-Veits-Dom (Prag) (Goldene Pforte)"} 3 -2024-07-16 19:07:21.490518 2024-07-17 07:00:18.895849 3ddc7186-9427-4842-9aa4-9f3d1ce41c3d {"md5": "6e2a3f8de22c437fd123d907d8ce9835", "pid": "1334917981", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "San Vito al Torre"}, {"authorized_access_point": "San Vito al Torre- Crauglio"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334917981", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334917981", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334917981", "source": "GND"}], "classification": [{"name": "Landhaus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Palazzo Steffaneo (San Vito al Torre)", "Palazzo Steffaneo Roncato (San Vito al Torre)"], "authorized_access_point": "Villa Stefaneo (San Vito al Torre)"} 3 -2024-07-16 19:07:22.512986 2024-07-17 07:00:15.023298 8bdbabe7-35a0-4ddf-9dfc-2ee44fac0107 {"md5": "33429a245bc534bab93abf612d1e1f86", "pid": "1334875707", "note": [{"label": ["GeoNames - http://geotree.geonames.org/5126239/", "Wikipedia - https://en.wikipedia.org/w/index.php?title=Mattituck,_New_York&oldid=1214492095"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334875707", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334875707", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334875707", "source": "GND"}], "authorized_access_point": "Mattituck, NY"} 3 -2024-07-16 19:07:22.437726 2024-07-17 07:00:15.328644 d8785b6c-3acf-47e8-9ae2-73544be421fe {"md5": "26c49e2e7e19344f0fa00298cbee07b1", "pid": "1334878234", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Holowaniwsk&oldid=246179368"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334878234", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334878234", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334878234", "source": "GND"}], "variant_access_point": ["Holovanivsk", "Hołowaniewskie", "Голованівськ", "Голованевск"], "authorized_access_point": "Holowaniwsk"} 3 -2024-07-16 19:07:22.376693 2024-07-17 07:00:15.634022 af2642c8-f873-4be1-9c44-a6716dfa5d62 {"md5": "8fbec11784de7b45207836bb0d9e3f96", "pid": "133489129X", "note": [{"label": ["Homepage - https://neuesamt.org/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Hamburg-Altona"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133489129X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133489129X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133489129X", "source": "GND"}], "classification": [{"name": "Gewerbegebäude", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["NAA"], "authorized_access_point": "Neues Amt Altona (Hamburg-Altona)"} 3 -2024-07-16 19:07:22.329901 2024-07-17 07:00:15.896813 90348e5d-7f95-4a2c-af17-d89595a58445 {"md5": "e24b9606efe72a56b20c78623b052fa9", "pid": "1334893594", "note": [{"label": ["Homepage - https://www.phoenixhof.de/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Hamburg-Bahrenfeld"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334893594", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334893594", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334893594", "source": "GND"}], "classification": [{"name": "Gewerbehof", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Phoenixhof (Hamburg)"} 3 -2024-07-16 19:07:22.248083 2024-07-17 07:00:16.18686 df3d7c35-f6ea-4478-8022-e1f52b6c640d {"md5": "e329684aa17692f8b54399a3ff6040fa", "pid": "1334896755", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Platz_der_Republik_(Hamburg)&oldid=240777547"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Hamburg-Altona"}, {"authorized_access_point": "Hamburg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334896755", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334896755", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334896755", "source": "GND"}], "classification": [{"name": "Platz", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Park", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Kaiserplatz (Hamburg)"], "authorized_access_point": "Platz der Republik (Hamburg)"} 3 -2024-07-16 19:07:22.16989 2024-07-17 07:00:16.492082 48735cf2-ea46-4433-b8db-be4eedddfc28 {"md5": "52eab6ad38bcb8f425aef41f99c3b4c6", "pid": "133489874X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133489874X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133489874X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133489874X", "source": "GND"}], "classification": [{"name": "Berg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Spiemont"} 3 -2024-07-16 19:08:12.43856 2024-07-17 07:00:25.500296 b690bdd6-2854-4e9e-900f-620d29bcb123 {"md5": "3371ee688a3fc69a93b7194a207a3079", "pid": "199001111", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Bahnhofstra%C3%9Fe.Steinhagen.302222.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Steinhagen (Kreis Gütersloh)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7761850-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199001111", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7761850-6", "source": "GND"}], "classification": [{"name": "Straße", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Bahnhofstraße (Steinhagen, Kreis Gütersloh)"} 3 -2024-07-16 19:07:23.105281 2024-07-17 07:00:12.864216 3d0ff695-0765-4516-8f81-96474eb9a4ff {"md5": "d86fe5ce9f50b4310ed335acc13ef18b", "pid": "1334804141", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Trier"}, {"authorized_access_point": "Trier-Kürenz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334804141", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334804141", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334804141", "source": "GND"}], "classification": [{"name": "Kapelle", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["St. Cornelius-Kapelle (Trier)", "Sankt Cornelius-Kapelle (Trier-Kürenz)", "St. Cornelius-Kapelle (Trier-Kürenz)", "Jüngere Kürenzer Kapelle (Trier)"], "authorized_access_point": "Sankt Cornelius-Kapelle (Trier)"} 3 -2024-07-16 19:07:22.942873 2024-07-17 07:00:13.449887 dcb79d85-0289-4c91-a9c8-496496ffb2ee {"md5": "03fa849ab5ad4b50fd9376d37adb1870", "pid": "1334865981", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Neudau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334865981", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334865981", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334865981", "source": "GND"}], "classification": [{"name": "Schloss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Schloss Neudau (Neudau)"} 3 -2024-07-16 19:07:22.849337 2024-07-17 07:00:13.766229 814836e8-21fa-42cf-b110-20350468e4f9 {"md5": "1469c78dcf93b9a18b17248496adcc13", "pid": "1334866082", "note": [{"label": ["OBV - https://permalink.obvsg.at/AC17225353"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Vittorio Veneto"}, {"authorized_access_point": "Venetien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334866082", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334866082", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334866082", "source": "GND"}], "authorized_access_point": "Comunità Montana delle Prealpi Trevigiane"} 3 -2024-07-16 19:07:22.754112 2024-07-17 07:00:14.094669 198ac5f7-8755-48ca-a82e-bed60bcdec18 {"md5": "13f6279b1b5a731c35538538d28f9b0c", "pid": "1334866473", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Birkfeld"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334866473", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334866473", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334866473", "source": "GND"}], "classification": [{"name": "Schloss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Schloss Birkenstein (Birkfeld)"} 3 -2024-07-16 19:08:12.26732 2024-07-17 07:00:26.146553 cbea0fbc-b226-4c61-8a86-fc806a7153d7 {"md5": "078aea1f2076f6d6ae852ce2c290363f", "pid": "199003645", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_Beckum&oldid=245713880", "Homepage Beckum - https://www.beckum.de/entdecken-erleben/kultur/stadtmuseum/#accordion-1-5"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Beckum"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7762132-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199003645", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7762132-3", "source": "GND"}], "variant_access_point": ["Altes Rathaus (Beckum)", "Ehemaliges Rathaus (Beckum)", "Historisches Rathaus (Beckum)", "Rathaus Beckum (Beckum)", "Das ehemalige Rathaus (Beckum)", "Beckumer Rathaus (Beckum)", "Stadtmuseum (Beckum)", "Markt 1 (Beckum)"], "authorized_access_point": "Rathaus (Beckum)"} 3 -2024-07-16 19:08:11.861332 2024-07-17 07:00:27.631338 9241662c-f877-4390-aaaa-782f276dab2a {"md5": "0ed97a7e87afec8d8a47498cd3cd79bc", "pid": "199023360", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=J%C3%BCdischer_Friedhof_Bochum&oldid=245831861"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bochum"}, {"authorized_access_point": "Bochum-Wiemelhausen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7764341-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199023360", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7764341-0", "source": "GND"}], "classification": [{"name": "Jüdischer Friedhof", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Baudenkmal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Jüdischer Friedhof Bochum (Bochum-Wiemelhausen)", "Jüdischer Friedhof Wiemelhausen (Bochum)"], "authorized_access_point": "Jüdischer Friedhof Bochum (Bochum)"} 3 -2024-07-16 19:07:23.887153 2024-07-17 07:00:08.806334 6c1f3870-562a-48b9-ae2e-f989b555f715 {"md5": "6f82b88b844ebddf1daa2d89d4f56903", "pid": "1334725756", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Provinz Hung Yen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334725756", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334725756", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334725756", "source": "GND"}], "classification": [{"name": "Stadt", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Hưng Yên"], "authorized_access_point": "Hung Yen"} 3 -2024-07-16 19:07:23.808414 2024-07-17 07:00:09.124056 e089d1d4-fe1c-4217-a334-608e5e248931 {"md5": "0b2eb52f3ed0d3188408fac8c11efcea", "pid": "1334729824", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Stanowice_(Strzegom)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334729824", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334729824", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334729824", "source": "GND"}], "variant_access_point": ["Stannowitz", "Stonwitz"], "authorized_access_point": "Stanowitz"} 3 -2024-07-16 19:07:23.644703 2024-07-17 07:00:09.688569 672d8c66-560d-4178-b083-969d4bbbaf98 {"md5": "d3c3b53852795dda707236f6d067b74f", "pid": "1334756465", "note": [{"label": ["Wikipedia - https://pl.wikipedia.org/w/index.php?title=Czerwona_Woda_(wojew%C3%B3dztwo_dolno%C5%9Bl%C4%85skie)&oldid=72559107"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334756465", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334756465", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334756465", "source": "GND"}], "variant_access_point": ["Rothwasser"], "authorized_access_point": "Czerwona Woda"} 3 -2024-07-16 19:07:23.560922 2024-07-17 07:00:11.013233 fb901215-70ec-4eee-b340-2c19fa195806 {"md5": "e42bca8c0514775c39fe714827074b4e", "pid": "1334766363", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Posada_(Bogatynia)&oldid=244888515"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Ostritz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334766363", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334766363", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334766363", "source": "GND"}], "variant_access_point": ["Rußdorf"], "authorized_access_point": "Rusdorf (Ostritz)"} 3 -2024-07-16 19:07:23.416535 2024-07-17 07:00:11.648577 7ef4dc5a-b1cd-47ae-8fa7-f2b5ebd55a26 {"md5": "d3b8a4aab5f0fd0e22e4194431fd5189", "pid": "1334784493", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=S%C3%B8r-Aurdal&oldid=240707152"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334784493", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334784493", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334784493", "source": "GND"}], "authorized_access_point": "Sør-Aurdal"} 3 -2024-07-16 19:08:11.337067 2024-07-17 07:00:29.400687 7828cf5c-aecd-4536-94e8-4af6089c76b1 {"md5": "e49a03515ecc811eb171504161a297e7", "pid": "199138834", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Alter+Postweg.Bottrop.5340.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bottrop"}, {"authorized_access_point": "Bottrop-Kirchhellen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7777247-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199138834", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7777247-7", "source": "GND"}], "classification": [{"name": "Straße", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Alter Postweg (Bottrop-Kirchhellen)"], "authorized_access_point": "Alter Postweg (Bottrop)"} 3 -2024-07-16 19:08:11.249606 2024-07-17 07:00:29.691315 77ec72ba-aa9d-431a-bd9c-67c13c4934a5 {"md5": "7ab8d6502832b9f1e8b70ffe1c44b496", "pid": "199147760", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/H%C3%B6fkerstra%C3%9Fe.Dortmund.110510.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Dortmund"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7778231-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199147760", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7778231-8", "source": "GND"}], "authorized_access_point": "Höfkerstraße (Dortmund)"} 3 -2024-07-16 19:08:11.167325 2024-07-17 07:00:30.116383 cc891d33-0bdd-4d08-97bf-516f64b671c3 {"md5": "4dd4cf4a9b3cabb2ef95c37ae86eca75", "pid": "199157642", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Barntrup"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7779320-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199157642", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7779320-1", "source": "GND"}], "variant_access_point": ["Uhlental"], "authorized_access_point": "Barntrup-Uhlental"} 3 -2024-07-16 19:07:24.510971 2024-07-17 07:00:06.483837 d39d6133-88ac-4f61-a7c0-731f8a9c32f4 {"md5": "a7092cd0b87c3adb701b0d2861563b45", "pid": "1334665036", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Weibern (Landkreis Ahrweiler)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334665036", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334665036", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334665036", "source": "GND"}], "classification": [{"name": "Mariensäule", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Mariensäule Weibern (Weibern, Landkreis Ahrweiler)"} 3 -2024-07-16 19:07:24.445195 2024-07-17 07:00:06.755284 258af20d-61f8-4077-828f-71aa35c33b03 {"md5": "e3c54fe0e3e9d0674a63087ca082f4a9", "pid": "1334666474", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Weibern (Landkreis Ahrweiler)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334666474", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334666474", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334666474", "source": "GND"}], "classification": [{"name": "Bildstock", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Heiligenhäuschen (Weibern, Landkreis Ahrweiler)"} 3 -2024-07-16 19:07:24.396609 2024-07-17 07:00:07.014415 40b9c1f0-0c21-4fd7-b045-2d51e5c02bec {"md5": "160bc6f71a1510175ddd36f18d1bd3a7", "pid": "1334670048", "note": [{"label": ["Ortsteil der Gemeinde Rietzneuendorf-Staakow im Landkreis Dahme-Spreewald"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Rietzneuendorf-Staakow"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334670048", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334670048", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334670048", "source": "GND"}], "variant_access_point": ["Frycowy Dwor"], "authorized_access_point": "Friedrichshof"} 3 -2024-07-16 19:07:24.314775 2024-07-17 07:00:07.299911 2247e4f7-75e8-4f5a-9600-df7db9672ee1 {"md5": "e64631a69abeff3d15acfde5b8336639", "pid": "1334670323", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Valencia"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334670323", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334670323", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334670323", "source": "GND"}], "classification": [{"name": "Denkmal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Monument al pintor Josep de Ribera (Valencia)", "Monumento al pintor José de Ribera (Valencia)"], "authorized_access_point": "El pintor Ribera (Valencia)"} 3 -2024-07-16 19:07:24.235789 2024-07-17 07:00:07.58056 e67d37ff-6ada-4538-9bd1-944b2450819c {"md5": "ae69592e422f3577803aa741611fcee5", "pid": "1334670390", "note": [{"label": ["Ortsteil der Gemeinde Felixsee im Landkreis Spree-Neiße"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Felixsee"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334670390", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334670390", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334670390", "source": "GND"}], "variant_access_point": ["Frycowy Gaj"], "authorized_access_point": "Friedrichshain (Felixsee)"} 3 -2024-07-16 19:07:24.058476 2024-07-17 07:00:08.19775 2779c3ad-9e5d-43d7-b9eb-9ede6bbd2cce {"md5": "eafb7740dffa7cb26ce4d877f09ae82a", "pid": "1334671486", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Valencia"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334671486", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334671486", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334671486", "source": "GND"}], "classification": [{"name": "Brunnen", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Denkmal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Monumento al marqués de Campo (Valencia)"} 3 -2024-07-16 19:07:25.109966 2024-07-17 07:00:04.641312 092519d5-d9f6-42dd-a422-c3df9f5e2caa {"md5": "cd4654b54d415a6bb3c287632c2f3e38", "pid": "1334632707", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Rieflinghausen&oldid=243763184"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Helden-Rieflinghausen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334632707", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334632707", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334632707", "source": "GND"}], "variant_access_point": ["Rylinchusen", "Rifelinchusen", "Burschafft Ryffelinghaußen"], "authorized_access_point": "Rieflinghausen"} 3 -2024-07-16 19:07:25.027389 2024-07-17 07:00:04.928506 b7d7affa-099c-4c27-803c-4b7f1a2fedef {"md5": "31bcecd5402fd7ae25a3abc60197698d", "pid": "133465641X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Wardenburg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133465641X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133465641X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133465641X", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Marienkirche (Wardenburg)"} 3 -2024-07-16 19:07:24.945014 2024-07-17 07:00:05.173009 1dd5254e-2e2c-4a8a-83c8-988f16983167 {"md5": "a49da34e5198768fa7ded31524b5587f", "pid": "1334657726", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Departement Manche"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334657726", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334657726", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334657726", "source": "GND"}], "authorized_access_point": "Écausseville"} 3 -2024-07-16 19:07:24.862446 2024-07-17 07:00:05.43852 2228d8c2-3719-4dc8-99d4-24750e51fb57 {"md5": "9c132f9792bc3a8dbabc86f05ee60212", "pid": "1334658196", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bologna"}, {"authorized_access_point": "Pontelungo (Bologna)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334658196", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334658196", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334658196", "source": "GND"}], "variant_access_point": ["Pontelungo (Bologna) (Sirene)"], "authorized_access_point": "Pontelungo (Bologna) (Sfingi)"} 3 -2024-07-16 19:07:24.773852 2024-07-17 07:00:05.709956 db50523a-c451-47bb-831c-e75cb4f0a044 {"md5": "a82d17359ed667f4ebd99faecfaf0cd3", "pid": "1334661073", "note": [{"label": ["Ortsteil der Gemeinde Kolkwitz im Landkreis Spree-Neiße"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Kolkwitz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334661073", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334661073", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334661073", "source": "GND"}], "variant_access_point": ["Dubje"], "authorized_access_point": "Eichow"} 3 -2024-07-16 19:07:24.684287 2024-07-17 07:00:05.972905 90559d8e-4311-4f88-ae28-0231305820ec {"md5": "94467162754199ed3bb4a36a9f8da992", "pid": "1334664242", "note": [{"label": ["Ortsteil der Gemeinde Neuhausen/Spree im Landkreis Spree-Neiße"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Neuhausen/Spree"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334664242", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334664242", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334664242", "source": "GND"}], "variant_access_point": ["Dubrawka"], "authorized_access_point": "Frauendorf (Neuhausen/Spree)"} 3 -2024-07-16 19:08:11.111744 2024-07-17 07:00:30.447077 3946e3bd-765c-4ef8-ba7f-63e839baaecc {"md5": "36affbbe6f959f60f2c34607a45d5df9", "pid": "199159777", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_im_Stadtbezirk_Bochum-Wattenscheid&oldid=246405605"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bochum"}, {"authorized_access_point": "Bochum-Wattenscheid"}, {"authorized_access_point": "Bochum-Eppendorf"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7779553-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199159777", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7779553-2", "source": "GND"}], "classification": [{"name": "Kate", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Vierständerbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Baudenkmal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Kotten Bodde (Bochum-Wattenscheid)", "Kotten Bodde (Bochum-Eppendorf)", "Am Thie 8 (Bochum)", "Wohnhaus (Bochum)"], "authorized_access_point": "Kotten Bodde (Bochum)"} 3 -2024-07-16 19:07:25.489579 2024-07-17 07:00:03.269326 c167706e-3527-4690-804c-6c12d725e69c {"md5": "509664709826cad65f2251217f1f9031", "pid": "1334558590", "note": [{"label": ["Search.ch - https://map.search.ch/Luzern,Murbacherstr.?pos=666071,211129&zoom=16", "Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://www.geo.lu.ch/map/kulturdenkmal/?FOCUS=2665999:1211098:1000&BASEMAP=G"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Luzern-Hirschmatt"}, {"authorized_access_point": "Luzern"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334558590", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334558590", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334558590", "source": "GND"}], "classification": [{"name": "Straße", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Murbacherstrasse (Luzern)"} 3 -2024-07-16 19:07:25.437275 2024-07-17 07:00:03.557098 32a8f719-eca4-4ad0-9af6-902e7c13d028 {"md5": "51719a3ebc31845d711e6450e5a250d8", "pid": "1334559805", "note": [{"label": ["Search.ch - https://map.search.ch/Luzern,Neustadtstr.?pos=666097,210474&zoom=16", "Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://www.geo.lu.ch/map/kulturdenkmal/?FOCUS=2665987:1210348:1000&BASEMAP=G"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Luzern"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334559805", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334559805", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334559805", "source": "GND"}], "classification": [{"name": "Straße", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Neustadtstrasse (Luzern)"} 3 -2024-07-16 19:07:25.365217 2024-07-17 07:00:03.84563 6b9267a4-1f9d-4517-996e-57ac70248f49 {"md5": "fa83934e09f0acb453f35e059df0f227", "pid": "1334560994", "note": [{"label": ["Search.ch - https://map.search.ch/Luzern,Pfistergasse?pos=665610,211417&zoom=17", "Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://www.geo.lu.ch/map/kulturdenkmal/?FOCUS=2665615:1211443:1000&BASEMAP=G"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Luzern"}, {"authorized_access_point": "Altstadt (Luzern)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334560994", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334560994", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334560994", "source": "GND"}], "classification": [{"name": "Straße", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Gasse", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Pfistergasse (Luzern)"} 3 -2024-07-16 19:08:10.52057 2024-07-17 07:00:32.715374 bedc7b69-8efc-4c13-9127-53806f88efec {"md5": "a912b6baaba120328b905bb0e87de6fa", "pid": "199173672", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_B%C3%BCnde&oldid=239542179"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bünde"}, {"authorized_access_point": "Bünde-Ennigloh"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7781086-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199173672", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7781086-7", "source": "GND"}], "classification": [{"name": "Kino", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Baudenkmal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Universum Bünde (Bünde-Ennigloh)", "Lichtspieltheater Universum in Bünde", "Universum in Bünde", "Kino (Bünde)", "Universum-Kino (Bünde)", "Lichtspielhaus Wittekind (Bünde)", "Hauptstraße 9"], "authorized_access_point": "Universum Bünde (Bünde)"} 3 -2024-07-16 19:08:10.107804 2024-07-17 07:00:34.077903 de1199ef-eaa4-4e57-98fb-6b232ebfe8ab {"md5": "2dd57e98417795e1a957cb1c3807976a", "pid": "199189862", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Brilon"}], "related": [{"authorized_access_point": "Niedere Straße (Brilon)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7782866-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199189862", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7782866-5", "source": "GND"}], "classification": [{"name": "Bürgerhaus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Fachwerkbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Niedere Strasse 32 (Brilon)"], "authorized_access_point": "Niedere Straße 32 (Brilon)"} 3 -2024-07-16 19:07:26.199358 2024-07-17 07:00:00.988672 db54e550-56ca-423c-9ff3-fb2167ed8af1 {"md5": "4192bf31530634fbcfdb67fd668f42c3", "pid": "133453666X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Marienkirche_(Ehningen)&oldid=241971385"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Ehningen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133453666X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133453666X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133453666X", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Evangelische Pfarrkirche St. Marien (Ehningen)", "St. Marien (Ehningen)", "Sankt Marien (Ehningen)"], "authorized_access_point": "Marienkirche (Ehningen)"} 3 -2024-07-16 19:07:26.119159 2024-07-17 07:00:01.253297 618f3eb0-d174-45be-b0aa-d30b4f70bb62 {"md5": "17a47547c1c87fb2311654ebd1c16d12", "pid": "1334538085", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Schloss_Stockau_(Reichertshofen)&oldid=235947920"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Reichertshofen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334538085", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334538085", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334538085", "source": "GND"}], "classification": [{"name": "Schloss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Hofmarktschloss Stockau (Reichertshofen)"], "authorized_access_point": "Schloss Stockau (Reichertshofen)"} 3 -2024-07-16 19:07:26.014893 2024-07-17 07:00:01.557595 38a4f7eb-f886-4b73-8668-9901cc1c8dd6 {"md5": "adb6d5feb74a6f69c432a3ad864a9012", "pid": "1334552606", "note": [{"label": ["Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://map.geo.lu.ch/kulturgueter/denkmaeler/?FOCUS=2674446:1209133:560; https://www.archiv-weggis.ch/2022/03/07/der-gl%C3%BCcksfall-junkerhaus/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Weggis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334552606", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334552606", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334552606", "source": "GND"}], "classification": [{"name": "Herrenhaus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Junkerhaus (Weggis)"} 3 -2024-07-16 19:07:25.916268 2024-07-17 07:00:01.848019 275753ba-de03-4eaf-a4fd-3f46259b24bf {"md5": "e499638d4dc585343ef4589fceb45b2e", "pid": "1334552908", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Departement Seine-et-Marne"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334552908", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334552908", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334552908", "source": "GND"}], "authorized_access_point": "Lésigny (Departement Seine-et-Marne)"} 3 -2024-07-16 19:07:25.820826 2024-07-17 07:00:02.154148 2ebae61a-55e5-4fb3-9bc8-6260fd80abd7 {"md5": "dda3f998b1754dbc808c191b1fa8a1c7", "pid": "1334552940", "note": [{"label": ["Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://map.geo.lu.ch/kulturgueter/denkmaeler/?FOCUS=2666644:1210607:560"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Luzern"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334552940", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334552940", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334552940", "source": "GND"}], "classification": [{"name": "Gewerbegebäude", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Das Gewerbegebäude in Luzern"], "authorized_access_point": "Gewerbegebäude (Luzern)"} 3 -2024-07-16 19:08:09.862802 2024-07-17 07:00:34.930878 a9ffeed6-3278-4244-8ef1-53654d4ad03c {"md5": "e956ce096d216c42c1ba2540c54dde2c", "pid": "199195978", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_Breckerfeld&oldid=227886228"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Breckerfeld"}], "related": [{"authorized_access_point": "Denkmalstraße (Breckerfeld)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7783538-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199195978", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7783538-4", "source": "GND"}], "classification": [{"name": "Haus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Baudenkmal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Denkmalstraße 1 (Breckerfeld)"} 3 -2024-07-16 19:07:26.938478 2024-07-17 06:59:58.126527 50d95bc3-dca3-4770-a5e3-4d57131270c4 {"md5": "5d2fa7303d9470662a752b3e5c6e6e59", "pid": "1334313776", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Grünberg-Queckborn"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334313776", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334313776", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334313776", "source": "GND"}], "authorized_access_point": "Queckborn"} 3 -2024-07-16 19:07:26.758428 2024-07-17 06:59:58.737754 5c31bb49-3ab8-4311-998b-48d5b2c3aeac {"md5": "6198918fdc56457f2342b9349cd2d238", "pid": "1334318492", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Landkreis Gießen"}], "related": [{"authorized_access_point": "Grünberg-Stockhausen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334318492", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334318492", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334318492", "source": "GND"}], "authorized_access_point": "Stockhausen (Landkreis Gießen)"} 3 -2024-07-16 19:07:26.664981 2024-07-17 06:59:59.005601 36d3fb40-a297-4cb5-892e-a4b4c8d853a7 {"md5": "b1c33956e274ad10d03031c0fef4cd3a", "pid": "1334319561", "note": [{"label": ["Homepage - https://www.kreisarchiv-stormarn.de/mediadb/238106/", "Homepage - https://ams-architekten.de/projekt-barsbuettel.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Barsbüttel"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334319561", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334319561", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334319561", "source": "GND"}], "classification": [{"name": "Rathaus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Barsbütteler Rathaus (Barsbüttel)"], "authorized_access_point": "Rathaus Barsbüttel (Barsbüttel)"} 3 -2024-07-16 19:07:26.569728 2024-07-17 06:59:59.565218 87520ba7-53c4-4329-977c-00c9809ad9df {"md5": "8e72d2006f9b7a06809f5f01a941189e", "pid": "1334485763", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Jesi"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334485763", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334485763", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334485763", "source": "GND"}], "classification": [{"name": "Tal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Vallesina (Tal)"], "authorized_access_point": "Vallesina"} 3 -2024-07-16 19:07:26.506908 2024-07-17 06:59:59.856529 1208f776-6104-4461-a060-750062aaed04 {"md5": "5794bf79da5477e5e90c4b1f66ef4765", "pid": "1334486573", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Lissabon"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334486573", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334486573", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334486573", "source": "GND"}], "classification": [{"name": "Palast", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Paço Real (Lissabon)"], "authorized_access_point": "Paço de Alcáçova (Lissabon)"} 3 -2024-07-16 19:07:26.457975 2024-07-17 07:00:00.158678 f84c93e7-0565-454d-ae76-1e8a471cf184 {"md5": "b8e162acbf1c8b5fa93e54e415d155e9", "pid": "1334502854", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Burg_Lauenstein_(Frankenwald)&oldid=243193355"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Ludwigsstadt"}, {"authorized_access_point": "Ludwigsstadt-Lauenstein"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334502854", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334502854", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334502854", "source": "GND"}], "classification": [{"name": "Burg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Burg Lauenstein (Ludwigsstadt-Lauenstein)", "Burg (Lauenstein)", "Burg und Renaissanceschloss Lauenstein (Ludwigsstadt)"], "authorized_access_point": "Burg Lauenstein (Ludwigsstadt)"} 3 -2024-07-16 19:08:09.779102 2024-07-17 07:00:35.264332 42f608a2-b17a-46f5-b948-ca376ca885d2 {"md5": "4f8862a3a37fac24957ae4db1cd59e5e", "pid": "199198578", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_Detmold-Kernstadt&oldid=242933521"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Detmold"}], "related": [{"authorized_access_point": "Benekestraße (Detmold)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7783825-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199198578", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7783825-7", "source": "GND"}], "classification": [{"name": "Haus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Baudenkmal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Benekestraße 10 (Detmold)"} 3 -2024-07-16 19:07:27.530239 2024-07-17 06:59:56.137219 4b2ec116-3d86-44d6-b97d-6520ed5f186b {"md5": "4a3ab3b53def7d72564b816982acdbde", "pid": "1334198845", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Holy_Trinity_Church,_Shanghai&oldid=1177032584"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Schanghai"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334198845", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334198845", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334198845", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Dreifaltigkeitskirche (Schanghai)", "Trinity Church (Schanghau)", "Holy Trinity Cathedral (Schanghai)", "上海圣三一堂", "Shànghǎi shèng sānyī táng"], "authorized_access_point": "Holy Trinity Church (Schanghai)"} 3 -2024-07-16 19:07:27.459246 2024-07-17 06:59:56.420838 d83ae0a8-e989-4058-8a8c-11e0d4e98480 {"md5": "b52231f72090b105c129345b0e055fc5", "pid": "1334221979", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Furth (Landkreis Landshut)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334221979", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334221979", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334221979", "source": "GND"}], "variant_access_point": ["Arth (Furth-Arth)"], "authorized_access_point": "Furth-Arth"} 3 -2024-07-16 19:07:27.380391 2024-07-17 06:59:56.698149 88209669-d68e-45f3-9987-ad8a4c382303 {"md5": "d71f572971c71627cbcad8ee5b7adbec", "pid": "133422725X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Arnsberg"}, {"authorized_access_point": "Arnsberg-Neheim"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133422725X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133422725X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133422725X", "source": "GND"}], "classification": [{"name": "Friedhof", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Möhnefriedhof (Arnsberg)"} 3 -2024-07-16 19:07:27.29696 2024-07-17 06:59:56.949348 d0fff42b-3bec-4df9-bc04-82cb5c2171c5 {"md5": "36ff5dcc9d0360333888669d4eea90a3", "pid": "1334300054", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Grünberg-Lehnheim"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334300054", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334300054", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334300054", "source": "GND"}], "authorized_access_point": "Lehnheim"} 3 -2024-07-16 19:08:09.514955 2024-07-17 07:00:36.129748 189139f0-14e0-4f06-b56d-275a56091e05 {"md5": "efe3357d0deeb1d693fc0441cd2c2dfd", "pid": "199210713", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Brilon"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7785159-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199210713", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7785159-6", "source": "GND"}], "classification": [{"name": "Bauernhof", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Osterhof in der Gemarkung von Brilon (Brilon)"], "authorized_access_point": "Osterhof (Brilon)"} 3 -2024-07-16 19:08:09.161284 2024-07-17 07:00:37.20186 1d1afa9e-f79c-410e-a8be-86e28f1cc903 {"md5": "d35916d752eba1a9fb7dd5a8268fa9cf", "pid": "199214700", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Synagoge_Detmold&oldid=245430403"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Detmold"}], "related": [{"authorized_access_point": "Lortzingstraße (Detmold)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7785597-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199214700", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7785597-8", "source": "GND"}], "classification": [{"name": "Synagoge", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Synagoge Detmold (Detmold)"} 3 -2024-07-16 19:07:27.212247 2024-07-17 06:59:57.197652 51a379ed-74db-485b-b1d5-05e8f0381c48 {"md5": "281e34304a1fd347ab60c89959c9f398", "pid": "1334302111", "note": [{"label": ["Homepage - https://www.stormarnlexikon.de/rathausreinbek", "Homepage - https://www.reinbeker-geschichten.de/das-rathaus-reinbek"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Reinbek"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334302111", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334302111", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334302111", "source": "GND"}], "classification": [{"name": "Rathaus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Reinbeker Rathaus (Reinbek)"], "authorized_access_point": "Rathaus Reinbek (Reinbek)"} 3 -2024-07-16 19:07:28.425065 2024-07-17 06:59:53.024792 8a990c84-8ce1-4e7b-8f31-43b929c0fda1 {"md5": "7ab27b6c97d94ede6db740741684cc81", "pid": "1333582501", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Tolla&oldid=239496022"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333582501", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333582501", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333582501", "source": "GND"}], "variant_access_point": ["Todda"], "authorized_access_point": "Tolla"} 3 -2024-07-16 19:07:28.337451 2024-07-17 06:59:53.255838 44b2cd83-2a58-40b6-9489-403e6cc67bef {"md5": "14ab70c5914175d95a1b9adc8dcc13ca", "pid": "1333660758", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Frielinghausen_(Meschede)&oldid=182076348"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Meschede"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333660758", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333660758", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333660758", "source": "GND"}], "variant_access_point": ["Frielinghausen (Meschede)"], "authorized_access_point": "Meschede-Frielinghausen"} 3 -2024-07-16 19:07:28.247286 2024-07-17 06:59:53.550958 114a4d75-a0d1-46ea-9128-1f2ff0d10f50 {"md5": "22db906d622745022d339a39484414ea", "pid": "1333989954", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Ignalin_(Lidzbark_Warmi%C5%84ski)&oldid=203537377"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Reimerswalde"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333989954", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333989954", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333989954", "source": "GND"}], "variant_access_point": ["Lidzbark Warmiński-Ignalin", "Ignalin (Lidzbark Warmiński)", "Reimerswalde"], "authorized_access_point": "Ignalin"} 3 -2024-07-16 19:07:28.154908 2024-07-17 06:59:53.840844 cf1bcb1b-574f-45e0-80ac-7194911c25d3 {"md5": "be2bcff8b1dadbc71be419ac9d1e9f2c", "pid": "1334001529", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Ignalin_(Lidzbark_Warmi%C5%84ski)&oldid=203537377"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Ignalin"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334001529", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334001529", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334001529", "source": "GND"}], "authorized_access_point": "Reimerswalde"} 3 -2024-07-16 19:07:28.080506 2024-07-17 06:59:54.121675 c713bb13-b788-4574-a7fa-aee8e73cd466 {"md5": "a1e762419955a8510a845848591d91b4", "pid": "1334011079", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Radziejewo"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334011079", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334011079", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334011079", "source": "GND"}], "authorized_access_point": "Sonnwalde"} 3 -2024-07-16 19:07:27.916182 2024-07-17 06:59:54.711631 3a7fd3fd-0c53-4de3-8892-ff4e775a2b1d {"md5": "2649c150792f0dd2ccc82886e2c031f2", "pid": "1334024804", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_von_Pl%C3%A4tzen_und_Alleen_in_der_Altstadt_von_Regensburg&oldid=246052949", "RI II,4 n. 1657, in: Regesta Imperii Online - http://www.regesta-imperii.de/id/1007-11-01_7_0_2_4_1_343_1657"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Donau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334024804", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334024804", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334024804", "source": "GND"}], "variant_access_point": ["Brunnleite (Donau)"], "authorized_access_point": "Brunnelaite (Donau)"} 3 -2024-07-16 19:07:27.828225 2024-07-17 06:59:55.011098 c428d14c-64f0-415f-bfb2-befb3aa08f1b {"md5": "b9b943c5900b8542359b1617e58a7712", "pid": "1334027250", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=%C8%98oimo%C8%99&oldid=243040757"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334027250", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334027250", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334027250", "source": "GND"}], "variant_access_point": ["Solymosvár", "Schojmosch", "Schoimosch"], "authorized_access_point": "Şoimoş"} 3 -2024-07-16 19:07:28.002109 2024-07-17 06:59:54.402992 bca0384d-ebe4-47d0-bc90-2cc5b8802415 {"md5": "2ea56fad3356f1d23f9881020374bbea", "pid": "1334011753", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Sonnwalde"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334011753", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334011753", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334011753", "source": "GND"}], "variant_access_point": ["Sonnwalde"], "authorized_access_point": "Radziejewo"} 3 -2024-07-16 19:07:28.89033 2024-07-17 06:59:51.301059 2956c308-3edc-46b8-81a3-b3c4edb56fe5 {"md5": "85424583480f933cc75641a103afe443", "pid": "1333263465", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Altenkunstadt"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333263465", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333263465", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333263465", "source": "GND"}], "variant_access_point": ["Trebitzmühle (Altenkunstadt-Trebitzmühle)"], "authorized_access_point": "Altenkunstadt-Trebitzmühle"} 3 -2024-07-16 19:07:28.806388 2024-07-17 06:59:51.605894 e142a1fb-7380-45a9-8a91-4d079ddbafb3 {"md5": "b59a49600cf4c5f325d85ef779412518", "pid": "1333315902", "note": [{"label": ["GeoNames - https://www.geonames.org/618476/burlanesti.html", "Wikipedia - https://ro.wikipedia.org/w/index.php?title=Burl%C4%83ne%C8%99ti,_Edine%C8%9B&oldid=16192546"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333315902", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333315902", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333315902", "source": "GND"}], "variant_access_point": ["Burlaneshti", "Burlaneshty"], "authorized_access_point": "Burlăneşti"} 3 -2024-07-16 19:07:28.642535 2024-07-17 06:59:52.164132 d674d94a-8ef2-4632-947e-2b563eb7b744 {"md5": "8fdc58464e622759f96573cf7802e7ac", "pid": "1333333668", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333333668", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333333668", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333333668", "source": "GND"}], "classification": [{"name": "Wüstung", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Teubentz", "Wüstung Teubnitz", "Wüstung Teubentz", "Teubnitz (Ahornthal)"], "authorized_access_point": "Teubnitz"} 3 -2024-07-16 19:07:28.580098 2024-07-17 06:59:52.502295 4abb4421-cf6e-43d9-aceb-6edbed3f77d2 {"md5": "2d2015dca53e90fc08c886fd6ca4cdc7", "pid": "133355513X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Horevun"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133355513X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133355513X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133355513X", "source": "GND"}], "classification": [{"name": "Wüstung", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Wüstung Holzheim"], "authorized_access_point": "Holzheim (Horevun, Wüstung)"} 3 -2024-07-16 19:08:08.193554 2024-07-17 07:00:40.642455 078790d7-e328-4882-a09f-69fa5ba37379 {"md5": "8cc8e8684a5e31997bee41461f7ed319", "pid": "199241562", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Gl%C3%BCckaufstra%C3%9Fe.Castrop-Rauxel.84305.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Castrop-Rauxel"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7788729-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199241562", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7788729-3", "source": "GND"}], "classification": [{"name": "Straße", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Glückaufstraße (Castrop-Rauxel)"} 3 -2024-07-16 19:07:29.800666 2024-07-17 06:59:47.924142 3e4c5fe1-331d-4036-8223-1418f562320e {"md5": "5e5edae349e97fcf8e73ba5e185328d0", "pid": "1332742351", "note": [{"label": ["RIplus Regg. Bamberg n. 51, in: Regesta Imperii Online - http://www.regesta-imperii.de/id/f8a73e64-64db-4c07-8d84-284a227be527"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332742351", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332742351", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332742351", "source": "GND"}], "authorized_access_point": "Glehuntra"} 3 -2024-07-16 19:07:29.719538 2024-07-17 06:59:48.237018 9ef2cc37-61c8-46c1-ac04-7eecb8471b07 {"md5": "0b637672c570fc3e58b9dba5d3489b62", "pid": "1332747108", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Nagoldgau&oldid=215319373"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332747108", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332747108", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332747108", "source": "GND"}], "variant_access_point": ["Nagoldgouw", "Nagaltgouwe"], "authorized_access_point": "Nagoldgau"} 3 -2024-07-16 19:07:29.648684 2024-07-17 06:59:48.552601 0db204de-80b3-4d5d-a1b5-5e01d892b7a6 {"md5": "a81b60275126d56a112f85fe8becedf2", "pid": "1332749054", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=S%C3%BClchgau&oldid=208578053"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332749054", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332749054", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332749054", "source": "GND"}], "variant_access_point": ["Sülchengau", "Sulihgeiuua", "Sulichkewe", "Sülichgau"], "authorized_access_point": "Sülchgau"} 3 -2024-07-16 19:07:29.598129 2024-07-17 06:59:48.803333 94fc5740-1d9c-4ed1-8352-4c2dd781da6a {"md5": "9c09af1d515fe9d79e6afe86701b2496", "pid": "1332755666", "note": [{"label": ["RI II,4 n. 1653, in: Regesta Imperii Online - http://www.regesta-imperii.de/id/1007-11-01_3_0_2_4_1_339_1653"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332755666", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332755666", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332755666", "source": "GND"}], "authorized_access_point": "Durihin"} 3 -2024-07-16 19:07:29.421327 2024-07-17 06:59:49.416705 515cb5c9-848d-40cb-9eeb-892716f91a2e {"md5": "6f226e6b7dc429639a6d536b50880ab7", "pid": "1332769349", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Krylos&oldid=244798100", "Geonames - http://www.geonames.org/703893/krylos.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332769349", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332769349", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332769349", "source": "GND"}], "variant_access_point": ["Krilos", "Kryłos"], "authorized_access_point": "Krylos"} 3 -2024-07-16 19:07:29.337051 2024-07-17 06:59:49.710423 fad91eeb-1408-407f-b029-b6b849824f2f {"md5": "d3e7906d7c4e3577f445d72b51ac234b", "pid": "1332858198", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Beaumont_(Yonne)&oldid=190458726"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Departement Yonne"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332858198", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332858198", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332858198", "source": "GND"}], "authorized_access_point": "Beaumont (Departement Yonne)"} 3 -2024-07-16 19:07:29.253898 2024-07-17 06:59:50.014491 9c9c977e-1e94-4498-a8e8-13a2f417b282 {"md5": "62c63579ff76d5da0a35e65236f682ac", "pid": "1332874568", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Thala_(Tunesien)&oldid=244904813"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332874568", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332874568", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332874568", "source": "GND"}], "variant_access_point": ["Talah"], "authorized_access_point": "Thala"} 3 -2024-07-16 19:08:08.049469 2024-07-17 07:00:41.229407 3d872331-39a0-4dac-b859-b68ecb0438b1 {"md5": "a6b290431180973b95d990280e4b507c", "pid": "199244731", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Detmold"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7789108-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199244731", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7789108-9", "source": "GND"}], "classification": [{"name": "Straße", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Freiligrathstraße (Detmold)"} 3 -2024-07-16 19:08:07.535421 2024-07-17 07:00:43.313 4b4bd4be-f0f3-4557-96ef-db2f66911cbe {"md5": "a2fb6a47a682d321076a1e287a262562", "pid": "199252149", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7789992-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199252149", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7789992-1", "source": "GND"}], "classification": [{"name": "Backsteinbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Bürgerhaus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Bönersches Haus (Coesfeld)", "Münsterstraße 37 (Coesfeld)"], "authorized_access_point": "Haus Brincks (Coesfeld)"} 3 -2024-07-16 19:07:30.666171 2024-07-17 06:59:44.75933 fbe99c5d-ef9b-4369-8df9-9220551bde07 {"md5": "5feb7b91cf1dd3213443e1db1a421cb3", "pid": "1332353436", "note": [{"label": ["GeoNames - https://www.geonames.org/3181856/borello.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332353436", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332353436", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332353436", "source": "GND"}], "authorized_access_point": "Borrello"} 3 -2024-07-16 19:07:30.499792 2024-07-17 06:59:45.39704 b50e3c4e-a6b4-47c7-a898-e6fa5250dd48 {"md5": "6e8b47dfacd661122b4773ab6e60b5ce", "pid": "1332669689", "note": [{"label": ["GeoNames - https://www.geonames.org/2657658/adwick-le-street.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Doncaster"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332669689", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332669689", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332669689", "source": "GND"}], "variant_access_point": ["Doncaster- Adwick le Street"], "authorized_access_point": "Adwick le Street"} 3 -2024-07-16 19:07:30.410458 2024-07-17 06:59:45.690155 0f78c541-972e-4c9d-a922-6285634e6e01 {"md5": "242142aae08ff0c92c14d6cc537c35fe", "pid": "1332670482", "note": [{"label": ["GeoNames - https://www.geonames.org/12195581/brackmills.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Northampton"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332670482", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332670482", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332670482", "source": "GND"}], "variant_access_point": ["Northampton-Brackmills"], "authorized_access_point": "Brackmills"} 3 -2024-07-16 19:07:30.320895 2024-07-17 06:59:45.925868 a7528196-fa71-4b84-a6f7-9b1f8da4921a {"md5": "cad2266fe4ca451ac816425ca3644bdc", "pid": "1332731430", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Monte_San_Primo&oldid=229134400"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Tambogruppe"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332731430", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332731430", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332731430", "source": "GND"}], "classification": [{"name": "Berg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["San Primo (Berg)"], "authorized_access_point": "Monte San Primo"} 3 -2024-07-16 19:07:30.234889 2024-07-17 06:59:46.287785 cf9fd9cb-cca6-4e37-8def-a843aa46bc4a {"md5": "eb3454ac083a84966b303db7115fe82b", "pid": "1332732577", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Kelsgau&oldid=241651452"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332732577", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332732577", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332732577", "source": "GND"}], "variant_access_point": ["Chelesgau"], "authorized_access_point": "Kelsgau"} 3 -2024-07-16 19:07:30.13403 2024-07-17 06:59:46.601192 7a2d3954-ca22-42c3-8709-01a9df8194a0 {"md5": "5ccd484acfa55fe5f40f96f64daf042a", "pid": "1332733751", "note": [{"label": ["RI In. 598, in: Regesta Imperii Online - http://www.regesta-imperii.de/id/0815-12-03_1_0_1_1_0_1483_598"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332733751", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332733751", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332733751", "source": "GND"}], "authorized_access_point": "Donaugau"} 3 -2024-07-16 19:07:30.059649 2024-07-17 06:59:46.931729 6a3923ad-9898-49d5-80a5-408d20e8556d {"md5": "7b72f70a14e2dc30ceff0fdccbd731d3", "pid": "133273457X", "note": [{"label": ["RI II,4 n. 1841, in: Regesta Imperii Online - http://www.regesta-imperii.de/id/1014-06-21_1_0_2_4_1_622_1841"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133273457X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133273457X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133273457X", "source": "GND"}], "authorized_access_point": "Mattiggau"} 3 -2024-07-16 19:07:31.242112 2024-07-17 06:59:42.672464 95647070-c5c4-4dd0-b63c-9fd8d7ad9a16 {"md5": "5e41ecffadf62773f4430525ed15df07", "pid": "1331602718", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Kotor_Varo%C5%A1&oldid=246161593"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Kotor Varoš"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331602718", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331602718", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331602718", "source": "GND"}], "authorized_access_point": "Borci (Kotor Varoš)"} 3 -2024-07-16 19:07:31.163283 2024-07-17 06:59:42.949929 84789dd7-5451-48a3-ac2b-5eda91795685 {"md5": "7bb8d6b00d05923fefb5ac90e458401e", "pid": "1331604346", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Borci (Kotor Varoš)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331604346", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331604346", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331604346", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Nikolauskirche (Borci, Kotor Varoš)"], "authorized_access_point": "Crkva Svetog Nikole (Borci, Kotor Varoš)"} 3 -2024-07-16 19:07:31.074757 2024-07-17 06:59:43.228874 7e724438-1b66-4979-9310-418b90a80636 {"md5": "2eeb253d743d2d16bad5b5ade7f6e5ce", "pid": "1331609186", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Ba%C5%A1%C4%8Dar%C5%A1ija&oldid=243745789"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Sarajevo"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331609186", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331609186", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331609186", "source": "GND"}], "classification": [{"name": "Platz", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Hauptmarkt (Sarajevo)"], "authorized_access_point": "Baščaršija (Sarajevo)"} 3 -2024-07-16 19:07:30.977527 2024-07-17 06:59:43.508498 73a96b39-9e13-4e10-9d09-ed8467bceb17 {"md5": "676cfbe467c17e74b951e73946954a6e", "pid": "1331729661", "note": [{"label": ["Homepage - https://europa-viertel-rheine.de/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rheine"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331729661", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331729661", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331729661", "source": "GND"}], "classification": [{"name": "Wohngebiet", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Europa-Viertel (Rheine)", "Europaviertel (Rheine)", "EuVie (Rheine)"], "authorized_access_point": "Europa-Viertel am Waldhügel (Rheine)"} 3 -2024-07-16 19:08:06.815631 2024-07-17 07:00:46.065821 d9d1d6e6-b9d0-4331-913f-e86e732dacec {"md5": "2c4d7958800a3f0edbf18b1f503b6f98", "pid": "943882346", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Landkreis Borna"}, {"authorized_access_point": "Landkreis Geithain"}, {"authorized_access_point": "Landkreis Leipzig"}, {"authorized_access_point": "Landkreis Leipzig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4370529-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)943882346", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4370529-7", "source": "GND"}], "classification": [{"name": "Landkreis", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Leipziger Land (Kreis)"], "authorized_access_point": "Landkreis Leipziger Land"} 3 -2024-07-16 19:07:31.350823 2024-07-17 06:59:42.393313 ef6972db-8e07-46a7-979f-5b440fa203eb {"md5": "cdb110e283439e9856ad881100f43af4", "pid": "1331601630", "note": [{"label": ["GeoNames - https://www.geonames.org/763600/nowogrod.html", "Wikipedia - https://pl.wikipedia.org/w/index.php?title=Nowogr%C3%B3d&oldid=72647619"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Łomża (Powiat)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331601630", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331601630", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331601630", "source": "GND"}], "authorized_access_point": "Nowogród"} 3 -2024-07-16 19:08:06.024397 2024-07-17 07:00:49.394916 45c52c8b-87af-4bb5-98fe-52357670a900 {"md5": "edd1976aed14d0f136f654efa96018a1", "pid": "946723729", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Leutzsch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4400402-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)946723729", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4400402-3", "source": "GND"}], "variant_access_point": ["Leutzsch (Leipzig)"], "authorized_access_point": "Leipzig-Leutzsch"} 3 -2024-07-16 19:07:31.897188 2024-07-17 06:59:40.180519 24cf88c1-56a6-4478-8a5d-f9c8f59bcdab {"md5": "cc845d165f6e83377eaaf7a29441bb2e", "pid": "1330866738", "note": [{"label": ["GeoNames - https://www.geonames.org/462471/zinyaki.html", "Wikipedia - https://ru.wikipedia.org/w/index.php?oldid=133645030"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Oblast Nischni Nowgorod"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330866738", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330866738", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330866738", "source": "GND"}], "variant_access_point": ["Zinyaki"], "authorized_access_point": "Zinjaki"} 3 -2024-07-16 19:07:31.814281 2024-07-17 06:59:40.474147 c400cf45-0eda-4fc6-9028-6d37b5c394c7 {"md5": "591a410a29ad2ad03e01e8e6292d20af", "pid": "1330982746", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Forstern (Erding)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330982746", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330982746", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330982746", "source": "GND"}], "variant_access_point": ["Preisendorf (Forstern-Preisendorf)"], "authorized_access_point": "Forstern-Preisendorf"} 3 -2024-07-16 19:07:31.747404 2024-07-17 06:59:40.748853 77beaefa-76be-468e-8d13-3e216fc7656d {"md5": "aabd44e8cbfd9d0a9518ba1f7e37404b", "pid": "1331089271", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Opat%C3%B3wek&oldid=243033262"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Woiwodschaft Großpolen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331089271", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331089271", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331089271", "source": "GND"}], "variant_access_point": ["Opatowek"], "authorized_access_point": "Opatówek"} 3 -2024-07-16 19:07:31.620806 2024-07-17 06:59:41.405224 198f79ce-0446-4ef7-b875-6602855dd7cd {"md5": "c46e5b75026014d47025bc529e02f135", "pid": "1331379539", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Trogen (Landkreis Hof, Saale)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331379539", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331379539", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331379539", "source": "GND"}], "variant_access_point": ["Ullitz (Trogen-Ullitz)"], "authorized_access_point": "Trogen-Ullitz"} 3 -2024-07-16 19:07:31.533154 2024-07-17 06:59:41.728969 5dc8d006-6f20-4720-b5ca-70b620a79f77 {"md5": "09cd4631ab7696df6a2a9e809cc92fbb", "pid": "1331513952", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Wasserburg-Attel"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331513952", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331513952", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331513952", "source": "GND"}], "authorized_access_point": "Attel"} 3 -2024-07-16 19:08:04.551373 2024-07-17 07:00:55.144216 da502b3e-a608-4826-a053-2b5b9aa0521c {"md5": "3bc75211c1b5ac35773c09ba8427a58c", "pid": "94963218X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rub al-Khali"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4440419-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)94963218X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4440419-0", "source": "GND"}], "variant_access_point": ["Südliche Rub al-Khali"], "authorized_access_point": "Rub al-Khali (Süd)"} 3 -2024-07-16 19:08:05.272753 2024-07-17 07:00:52.426856 d11a5376-8867-43e7-962c-1efa8781d6f2 {"md5": "8bf71b644a77c5dbb6052103e59ca5e6", "pid": "948322292", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=239090285"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Lössnig (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4420041-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948322292", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4420041-9", "source": "GND"}], "variant_access_point": ["Leipzig-Lössnig", "Lößnig (Leipzig)"], "authorized_access_point": "Leipzig-Lößnig"} 3 -2024-07-16 19:08:03.839541 2024-07-17 07:00:57.567557 85bb630f-3bcd-49c4-8694-f45fffa0a820 {"md5": "cef5b66b30993156bc65fd9898d9cca5", "pid": "950315354", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Stötteritz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4452197-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950315354", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4452197-2", "source": "GND"}], "variant_access_point": ["Stötteritz (Leipzig)"], "authorized_access_point": "Leipzig-Stötteritz"} 3 -2024-07-16 19:07:32.42731 2024-07-17 06:59:38.542899 14834b36-c9d5-434c-9c35-264270a50412 {"md5": "401502d75c9aef12dfa30c1df0bb4334", "pid": "1330290887", "note": [{"label": ["Kreis Stornmarn (Kreisarchiv Stormarn) - https://www.stormarnlexikon.de/fasanenhofjersbek/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Jersbek"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330290887", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330290887", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330290887", "source": "GND"}], "classification": [{"name": "Gaststätte", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Beherbergungsbetrieb", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Zum Fasanenhof (Jersbek)", "Landgasthaus Zum Fasanenhof (Jersbek)", "Landgasthof Zum Fasanenhof (Jersbek)"], "authorized_access_point": "Fasanenhof (Jersbek)"} 3 -2024-07-16 19:07:32.336385 2024-07-17 06:59:38.816768 15dd7a06-9dd7-4500-bb94-744f8dd18bae {"md5": "dbcf29c8c89fe37754c88ec20391b83e", "pid": "1330302877", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Gr%C3%B6nwohld&oldid=244402281#Geschichte", "Kreis Stormarn (Kreisarchiv Stormarn) - https://www.stormarnlexikon.de/drahtmuehlegroenwohld/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Grönwohld"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330302877", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330302877", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330302877", "source": "GND"}], "classification": [{"name": "Papiermühle", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Drahtmühle Grönwohld (Grönwohld)"} 3 -2024-07-16 19:07:32.251221 2024-07-17 06:59:39.091397 76e0cd90-8379-4045-a6ee-309d4f27bf60 {"md5": "e91d4e7a96e470e54624c475b4770e03", "pid": "1330324463", "note": [{"label": ["Kreis Stormarn (Kreisarchiv Stormarn) - https://www.stormarnlexikon.de/wassermuehlenuetschau/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Travenbrück"}, {"authorized_access_point": "Travenbrück-Nütschau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330324463", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330324463", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330324463", "source": "GND"}], "classification": [{"name": "Wassermühle", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Wassermühle Nütschau (Travenbrück-Nütschau)"], "authorized_access_point": "Wassermühle Nütschau (Travenbrück)"} 3 -2024-07-16 19:07:32.167031 2024-07-17 06:59:39.394419 7b24f290-d484-4d76-a350-cf41ab059f20 {"md5": "d5490254082cc8cd0c5fff0bb7925b7b", "pid": "1330428420", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Warschauer_Ghetto-Ehrenmal&oldid=211224290"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Warschau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330428420", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330428420", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330428420", "source": "GND"}], "classification": [{"name": "Denkmal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Warschauer Ghetto-Ehrenmal (Warschau)", "Pomnik Bohaterów Getta (Warschau)"], "authorized_access_point": "Denkmal der Helden des Ghettos (Warschau)"} 3 -2024-07-16 19:08:03.128878 2024-07-17 07:00:59.840262 d3d8dca3-622e-4631-8cc0-ff36261e0792 {"md5": "3e9a24157d498d879317d60bbe6c894b", "pid": "950339407", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Großzschocher"}, {"authorized_access_point": "Großzschocher-Windorf"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4452517-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950339407", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4452517-5", "source": "GND"}], "variant_access_point": ["Großzschocher (Leipzig)"], "authorized_access_point": "Leipzig-Großzschocher"} 3 -2024-07-16 19:07:33.058612 2024-07-17 06:59:36.105899 01be8066-a90f-4bbc-954b-fb21007e5fd1 {"md5": "be5cfb151f26783eeb1cf32dd58b032e", "pid": "1299383890", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=230671556"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Neu-Mockau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1299383890", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1299383890", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1299383890", "source": "GND"}], "variant_access_point": ["Mockau-Süd (Leipzig)"], "authorized_access_point": "Leipzig-Mockau-Süd"} 3 -2024-07-16 19:07:32.966964 2024-07-17 06:59:36.405588 4aaaf9f6-e017-47f9-8bd0-f4b598478f83 {"md5": "f6aec753d4484e8a89b208fd6f092d22", "pid": "1300397128", "note": [{"label": ["Heimatkreis Oststernberg e.V. (Hrsg.): Oststernberger Heimatbrief 2/2013 - https://oststernberg.de/wp-content/uploads/2016/02/Heimatbrief-2-2013.pdf"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kreis Oststernberg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1300397128", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1300397128", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1300397128", "source": "GND"}], "authorized_access_point": "Lindow (Kreis Oststernberg)"} 3 -2024-07-16 19:07:32.879183 2024-07-17 06:59:36.684324 c6f451cf-4290-4ccc-82b1-01c13035d10e {"md5": "7d4035e63e8a60fb7db46cedc2cfd4e9", "pid": "1302571524", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pößneck"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1302571524", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1302571524", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1302571524", "source": "GND"}], "classification": [{"name": "Straße", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Schulstraße (Pößneck)"], "authorized_access_point": "Straubelstraße (Pößneck)"} 3 -2024-07-16 19:07:32.807773 2024-07-17 06:59:37.019252 831bbcf8-5014-48d0-9425-c8538e2761be {"md5": "616f3f9d464e32e89c6b90ceebcdcc59", "pid": "1314596373", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Mitwitz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1314596373", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1314596373", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1314596373", "source": "GND"}], "classification": [{"name": "Schloss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Oberes Schloss (Mitwitz)"} 3 -2024-07-16 19:07:32.756154 2024-07-17 06:59:37.327646 3d41b07a-5bdf-4f18-8df0-541c174b6a7c {"md5": "e01dc1cc1a65433a11e8ca0b1b4a19e9", "pid": "1316359042", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1316359042", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1316359042", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1316359042", "source": "GND"}], "variant_access_point": ["Smolotel"], "authorized_access_point": "Smolotely"} 3 -2024-07-16 19:08:02.728241 2024-07-17 07:01:01.310534 f9cfb4e5-b860-4c27-9182-b47d17295bfe {"md5": "9edf4387d75f29aa8906f155a282a420", "pid": "95135793X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Altmühltal"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4467681-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)95135793X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4467681-5", "source": "GND"}], "classification": [{"name": "Tal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Oberes Altmühltal", "Obere Altmühl (Tal)"], "authorized_access_point": "Obere-Altmühl-Tal"} 3 -2024-07-16 19:08:02.392716 2024-07-17 07:01:02.445864 a2217745-473e-4b27-b588-a5b4c5aede42 {"md5": "670b201de7852d5f504e87ffa9428a7f", "pid": "951677268", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Thekla"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4473338-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)951677268", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4473338-0", "source": "GND"}], "variant_access_point": ["Thekla (Leipzig)"], "authorized_access_point": "Leipzig-Thekla"} 3 -2024-07-16 19:07:32.702362 2024-07-17 06:59:37.606165 de837518-8719-497a-a41c-fe3968a46952 {"md5": "66eda11c5443a102146a33078dd28a2a", "pid": "1329430875", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Merville_(Nord)&oldid=246093496", "GeoNames - https://www.geonames.org/6438365/merville.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Departement Nord"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1329430875", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1329430875", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1329430875", "source": "GND"}], "authorized_access_point": "Merville (Departement Nord)"} 3 -2024-07-16 19:08:01.729138 2024-07-17 07:01:05.452088 af84e843-fcb1-4c92-8d98-3de3d281e026 {"md5": "ea61d2e9f6cf30f07f5bad3cf209a678", "pid": "955495768", "note": [{"label": ["Homepage - http://www.rabenstein.gv.at"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4527754-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955495768", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4527754-0", "source": "GND"}], "variant_access_point": ["Rabenstein (Pielach)", "Marktgemeinde Rabenstein an der Pielach"], "authorized_access_point": "Rabenstein an der Pielach"} 3 -2024-07-16 19:07:33.646866 2024-07-17 06:59:33.820748 fc7b8d55-bea2-4bc7-be09-5bb5d5fa1c55 {"md5": "506a6a108734be4e534ed05f3653c6ec", "pid": "1275159915", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kreis Kretinga"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1275159915", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1275159915", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1275159915", "source": "GND"}], "classification": [{"name": "Gräberfeld", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Anduln"], "authorized_access_point": "Ėgliškiai-Anduliai"} 3 -2024-07-16 19:07:33.559036 2024-07-17 06:59:34.345075 11db1d59-8424-41ee-bfce-d20200105c53 {"md5": "713704a0fea2512485777fdb506760bf", "pid": "1282328816", "note": [{"label": ["GOV - http://gov.genealogy.net/item/show/GAHORFJO54PK"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Fehmarn"}, {"authorized_access_point": "Gahlendorf"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1282328816", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1282328816", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1282328816", "source": "GND"}], "authorized_access_point": "Fehmarn-Gahlendorf"} 3 -2024-07-16 19:07:33.383154 2024-07-17 06:59:34.942255 8fa654ce-8c70-4f09-8807-581eb9750dcc {"md5": "2225e4fe711498d30d44d083cf361c81", "pid": "1286132703", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=225307470"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Stünz"}, {"authorized_access_point": "Leipzig-Sellerhausen-Stünz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1286132703", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1286132703", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1286132703", "source": "GND"}], "variant_access_point": ["Stünz (Leipzig)"], "authorized_access_point": "Leipzig-Stünz"} 3 -2024-07-16 19:07:33.300627 2024-07-17 06:59:35.171078 2b78c386-3f90-48c4-83d1-f1251f0340a9 {"md5": "190249772f56f085481c52864e4543f3", "pid": "1287837611", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=229557818"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Bollingstedt"}, {"authorized_access_point": "Gammellund"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1287837611", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1287837611", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1287837611", "source": "GND"}], "authorized_access_point": "Bollingstedt-Gammellund"} 3 -2024-07-16 19:08:00.921645 2024-07-17 07:01:08.314087 fb3d5c1a-a595-433c-88f9-119738c7154b {"md5": "23f2de3394c0d58856b0e17593bef545", "pid": "957565445", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Mockau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4561624-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)957565445", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4561624-3", "source": "GND"}], "variant_access_point": ["Mockau (Leipzig)"], "authorized_access_point": "Leipzig-Mockau"} 3 -2024-07-16 19:08:00.218128 2024-07-17 07:01:10.987348 614cafdf-1b66-4391-af93-b653bb17e786 {"md5": "0e8d2b039230e5c7d7562331a10202f6", "pid": "959934464", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Ostentrop&oldid=243213300"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Finnentrop"}, {"authorized_access_point": "Ostentrop"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4608675-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959934464", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4608675-4", "source": "GND"}], "authorized_access_point": "Finnentrop-Ostentrop"} 3 -2024-07-16 19:07:34.7345 2024-07-17 06:59:29.753247 61a593b7-b48d-423c-87bb-a9d27bf0e904 {"md5": "8e07b30946443951da1f6ec76db2d7f0", "pid": "1235360709", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Arafurasee"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1235360709", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1235360709", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1235360709", "source": "GND"}], "classification": [{"name": "Insel", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Croker Island"} 3 -2024-07-16 19:07:34.646462 2024-07-17 06:59:30.017949 543da3da-8b9a-4d1e-bb1d-efb0be38abf1 {"md5": "c79f20673f8680f4c5a14f5275a392cb", "pid": "123657754X", "note": [{"label": ["Internet - https://muzeum.zwolen.pl/wystawa/zwolen-i-ziemia-zwolenska-na-pocztowce/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Woiwodschaft Masowien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/123657754X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)123657754X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)123657754X", "source": "GND"}], "variant_access_point": ["Zwoleń (ziemia)", "Ziemia zwoleńska"], "authorized_access_point": "Zwoleń (Region)"} 3 -2024-07-16 19:07:34.559204 2024-07-17 06:59:30.279388 4da26aac-4070-4e42-936e-dc51ac9e7596 {"md5": "11ba3c3c783e50706a2d0ed3ad1884e9", "pid": "1236792211", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Polen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1236792211", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1236792211", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1236792211", "source": "GND"}], "classification": [{"name": "Synklinale", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Lublin-Synklinale"} 3 -2024-07-16 19:07:34.479693 2024-07-17 06:59:30.60147 c6faced1-4718-4001-9b14-c5eb12110d04 {"md5": "0ca397c0a83e8f2d49a77fbad6f9fc6b", "pid": "1237279453", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Woiwodschaft Masowien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1237279453", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1237279453", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1237279453", "source": "GND"}], "variant_access_point": ["Węgrów (ziemia)", "Ziemia węgrowska"], "authorized_access_point": "Węgrów (Region)"} 3 -2024-07-16 19:07:34.392128 2024-07-17 06:59:30.866322 028f3fdb-176d-4628-a908-e2775781d469 {"md5": "66b0b090888555f4652536fdf8f3c5cb", "pid": "1237774101", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Woiwodschaft Lebus"}, {"authorized_access_point": "Powiat Żagański"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1237774101", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1237774101", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1237774101", "source": "GND"}], "variant_access_point": ["Szprotawa (ziemia)", "Ziemia szprotawska", "Sprottauer Land", "Sprottau (Land)"], "authorized_access_point": "Szprotawa (Region)"} 3 -2024-07-16 19:07:34.306203 2024-07-17 06:59:31.206521 b7d86ba8-8563-4efc-9953-1850ccb3dbfa {"md5": "7cd6ebddfdc4e4cd75912d8b563bead7", "pid": "1237828171", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Woiwodschaft Großpolen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1237828171", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1237828171", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1237828171", "source": "GND"}], "variant_access_point": ["Ostrzeszów (ziemia)", "Ostrzeszów (Region)", "Ostrzeszower Land", "Schildberger Land", "Schildberg (Region)"], "authorized_access_point": "Ziemia Ostrzeszowska"} 3 -2024-07-16 19:07:34.131666 2024-07-17 06:59:31.827916 098b90f0-ef59-42b5-93b7-7c6d00ed01db {"md5": "197ce59d47c428b1c9d9e737370e815d", "pid": "1239463502", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1239463502", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1239463502", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1239463502", "source": "GND"}], "classification": [{"name": "Imaginärer Schauplatz", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Motiv", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Carte du Tendre", "Carte du pays de Tendre"], "authorized_access_point": "Carte de Tendre"} 3 -2024-07-16 19:07:34.21817 2024-07-17 06:59:31.514104 7fdee1aa-2104-49e9-a8fe-32d34a50f07d {"md5": "ec8f3716e1faccb97f7afd084742fd0b", "pid": "1237860342", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Woiwodschaft Vorkarpaten"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1237860342", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1237860342", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1237860342", "source": "GND"}], "variant_access_point": ["Kolbuszowa (ziemia)", "Kolbuszowa (Land)", "Ziemia kolbuszowska"], "authorized_access_point": "Kolbuszowa (Region)"} 3 -2024-07-16 19:07:59.676803 2024-07-17 07:01:13.052255 4c218f41-54a9-4933-97f5-f0b0bc9d8c76 {"md5": "681ecbfe5d99018e56bcd804b6dfe3bf", "pid": "961594497", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Lindenthal_(Leipzig)&oldid=225715822"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Lindenthal (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10018863-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)961594497", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)10018863-1", "source": "GND"}], "variant_access_point": ["Lindenthal (Leipzig)"], "authorized_access_point": "Leipzig-Lindenthal"} 3 -2024-07-16 19:07:35.205179 2024-07-17 06:59:28.002799 7c613f2f-54a0-49e0-bc81-83f2670942db {"md5": "c0fdf9edc3d55d42e4ce3e2642be4b03", "pid": "122219953X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Molėtai"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/122219953X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)122219953X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)122219953X", "source": "GND"}], "variant_access_point": ["Balinkai", "Balnikų", "Balʹninkay", "Bolʹniki", "Balʹninkaj", "Бальнинкай"], "authorized_access_point": "Balninkai"} 3 -2024-07-16 19:07:35.116791 2024-07-17 06:59:28.281986 827911a1-8334-45bf-944b-153ea1612449 {"md5": "b73a01e1cc93e22aae01c72564e5a10a", "pid": "122413754X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Turmh%C3%BCgelburg_Woja&oldid=206688094"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rehau-Woja"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/122413754X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)122413754X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)122413754X", "source": "GND"}], "classification": [{"name": "Burg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Motte", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Turmhügel Woja (Rehau-Woja)", "Burg Woja (Rehau-Woja)"], "authorized_access_point": "Turmhügelburg Woja (Rehau-Woja)"} 3 -2024-07-16 19:07:34.940991 2024-07-17 06:59:28.903774 c5673565-8267-4708-9c89-a931a3431c8a {"md5": "1631d08665b41dddcdb90b2f1b835898", "pid": "1225876354", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_von_Schillerdenkm%C3%A4lern&oldid=201898785"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Marbach am Neckar"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1225876354", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1225876354", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1225876354", "source": "GND"}], "classification": [{"name": "Denkmal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Schiller-Denkmal (Marbach am Neckar)"} 3 -2024-07-16 19:07:34.861483 2024-07-17 06:59:29.161842 6bc4066b-2d0f-4345-9ab3-ba340487a7ac {"md5": "ce71c6bc1345c7da1e731559884d0b21", "pid": "1232243698", "note": [{"label": ["Geonames - http://www.geonames.org/2932852/ehrenberg.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Ilmenau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1232243698", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1232243698", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1232243698", "source": "GND"}], "classification": [{"name": "Berg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Ehrenberg (Berg)"} 3 -2024-07-16 19:07:59.507113 2024-07-17 07:01:13.650606 e4450366-1ded-40b2-8b59-be88d731bde6 {"md5": "9a6e166c840fd5e64d2efb6e6e9479ca", "pid": "962048879", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=161519644"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Jagodina"}, {"authorized_access_point": "Despotovac"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4644341-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)962048879", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4644341-1", "source": "GND"}], "classification": [{"name": "Klosteranlage", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Befestigung", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Manasiya", "Klosteranlage Manasija", "Klosteranlage Resava"], "authorized_access_point": "Manasija"} 3 -2024-07-16 19:07:58.803171 2024-07-17 07:01:16.481893 873fb2c2-1f46-4a70-b651-36de04c22037 {"md5": "aa5855e051d30f17856469f28a682594", "pid": "964991608", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4696241-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)964991608", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4696241-4", "source": "GND"}], "variant_access_point": ["Ponts-de-Martel, Les", "LesPonts-de-Martel", "Ponts-de-Martel"], "authorized_access_point": "Les Ponts-de-Martel"} 3 -2024-07-16 19:07:58.733254 2024-07-17 07:01:16.739245 ca331ee9-4fc3-468b-8d9d-27087589ad66 {"md5": "1ef96084966b91e680fe7828702a0ab4", "pid": "96563860X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4708270-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)96563860X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4708270-7", "source": "GND"}], "variant_access_point": ["Äußere Südvorstadt (Leipzig)"], "authorized_access_point": "Leipzig- Äußere Südvorstadt"} 3 -2024-07-16 19:07:36.060209 2024-07-17 06:59:24.779491 4b78a516-9f94-4c70-9b69-76ad552e6ed9 {"md5": "6708cb6c741ee709f2d174aaf3b87edf", "pid": "1190333082", "note": [{"label": ["Wikipedia:Stand:11.07.2019 - https://de.wikipedia.org/wiki/Kleine_Spree"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1190333082", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1190333082", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1190333082", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Mała Sprjewja"], "authorized_access_point": "Kleine Spree"} 3 -2024-07-16 19:07:35.971988 2024-07-17 06:59:25.031545 09a525fc-ae3f-4025-85c8-e2550ef67787 {"md5": "aedc18ab9f63ac43d4ee9702621a8e10", "pid": "1190333392", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1190333392", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1190333392", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1190333392", "source": "GND"}], "variant_access_point": ["Kleine Spree (Fluss) (Region)"], "authorized_access_point": "Kleine-Spree-Gebiet"} 3 -2024-07-16 19:07:35.847198 2024-07-17 06:59:25.620664 f3b6b7df-f7b3-4b98-b6bc-fc0559ff4c5f {"md5": "f652cdeac0fdca7bd0fbe86be96ba2f2", "pid": "1192399013", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1192399013", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1192399013", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1192399013", "source": "GND"}], "variant_access_point": ["Repser Ländchen"], "authorized_access_point": "Rupea (Region)"} 3 -2024-07-16 19:07:35.781289 2024-07-17 06:59:25.930559 3a94fd63-b397-4385-8a13-0086d8d1c27e {"md5": "1b71a20eb5c72ee563d918f6b2256d23", "pid": "1197938001", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Woiwodschaft Vorkarpaten"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1197938001", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1197938001", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1197938001", "source": "GND"}], "variant_access_point": ["Jarocin (ziemia)", "Jarocin (okolice)", "Jarocin (Region)"], "authorized_access_point": "Ziemia Jarocinska"} 3 -2024-07-16 19:07:35.700557 2024-07-17 06:59:26.228131 4e5cfa44-2465-4ddb-8b4c-39087ae37707 {"md5": "84e257911751c505d92d05afa8fe40a3", "pid": "1203261837", "note": [{"label": ["GeoNames - http://geotree.geonames.org/598959/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kreis Panevėžys"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1203261837", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1203261837", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1203261837", "source": "GND"}], "authorized_access_point": "Išlaužai"} 3 -2024-07-16 19:07:35.616076 2024-07-17 06:59:26.529682 647edf80-9185-4c20-971a-4aeef7752fc3 {"md5": "8c88e33deed96914599d52ac8da3a47e", "pid": "1206005505", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1206005505", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1206005505", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1206005505", "source": "GND"}], "variant_access_point": ["Wagram (Region)"], "authorized_access_point": "Wagram-Gebiet"} 3 -2024-07-16 19:07:35.535472 2024-07-17 06:59:26.834704 e4eac3af-4ba5-42d4-9f89-f7c53c5a79d5 {"md5": "4bdd3217225cfe98ad3106ed74847e5d", "pid": "1208649175", "note": [{"label": ["GeoNames - https://geotree.geonames.org/599832/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pakruojis (Region)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1208649175", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1208649175", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1208649175", "source": "GND"}], "variant_access_point": ["Dirzhyay (Pakruojis)", "Diržių (Pakruojis)"], "authorized_access_point": "Diržiai (Pakruojis)"} 3 -2024-07-16 19:07:58.674798 2024-07-17 07:01:16.992561 127b00ad-9c74-4631-8386-5cb2181dc858 {"md5": "9b825ad67bf6db7f4637ef0e00c170a1", "pid": "96575877X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Volkmarsdorf"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4710342-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)96575877X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4710342-5", "source": "GND"}], "variant_access_point": ["Volkmarsdorf (Leipzig)"], "authorized_access_point": "Leipzig-Volkmarsdorf"} 3 -2024-07-16 19:07:57.551163 2024-07-17 07:01:21.458405 cb41c511-beba-4164-8903-199ea01e722d {"md5": "08f6593a2cd14ded611afcbd5811ee35", "pid": "972515704", "note": [{"label": ["Homepage - https://www.kirchengemeinde-bochum-wiemelhausen.de/die-melanchthonkirche/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bochum"}, {"authorized_access_point": "Bochum-Wiemelhausen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4799377-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)972515704", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4799377-7", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Baudenkmal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Melanchthonkirche (Bochum-Wiemelhausen)"], "authorized_access_point": "Melanchthonkirche (Bochum)"} 3 -2024-07-16 19:07:36.663375 2024-07-17 06:59:22.867272 ffb8af0e-6bc6-45e6-825c-77910195739e {"md5": "48f07b6b7564b5b52782396898f8a8b0", "pid": "1182704948", "note": [{"label": ["unter - https://de.wikipedia.org/wiki/Heringsdorf", "unter - https://de.wikipedia.org/wiki/Bansin"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Heringsdorf-Neu Sallenthin"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1182704948", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1182704948", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1182704948", "source": "GND"}], "authorized_access_point": "Neu Sallenthin"} 3 -2024-07-16 19:07:36.57388 2024-07-17 06:59:23.172701 00765c04-fc3a-47bb-bba7-1cb8b9350ba8 {"md5": "29f05acdbc3bbe795594b59a04ecfec4", "pid": "1182916759", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Trattendorf"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Spremberg-Trattendorf"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1182916759", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1182916759", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1182916759", "source": "GND"}], "variant_access_point": ["Dubrawa"], "authorized_access_point": "Trattendorf"} 3 -2024-07-16 19:07:36.490011 2024-07-17 06:59:23.439092 aecd8d2b-29c2-4f9b-9c8c-d6d9ddb0e7a6 {"md5": "2a6d2a173baa75b80e987cef2ff9fa11", "pid": "1184428727", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Schwerin"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1184428727", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1184428727", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1184428727", "source": "GND"}], "classification": [{"name": "Halbinsel", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Halbinsel Zwang", "Dwang, Halbinsel"], "authorized_access_point": "Halbinsel Dwang"} 3 -2024-07-16 19:07:36.319826 2024-07-17 06:59:23.94778 40e137e8-3db4-4940-8ed0-6acc165672e8 {"md5": "6e3f09f530796cf475090a756c4c7a8e", "pid": "1188738658", "note": [{"label": ["Gemeindebrief der Evangelisch-Lutherischen Kirchengemeinde [Cloppenburg], Nr. 2/08 · Juni bis September 2008, S. 4-7 - http://evangelisch-in-cloppenburg.de/wp-content/uploads/2017/04/08-2-ohne-Kasu.pdf", "Homepage - http://evangelisch-in-cloppenburg.de/schwedenheim-2"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Cloppenburg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1188738658", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1188738658", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1188738658", "source": "GND"}], "classification": [{"name": "Mehrzweckbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Kindergartenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Gemeindezentrum", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Gemeindezentrum Schwedenheim (Cloppenburg)"], "authorized_access_point": "Schwedenheim (Cloppenburg)"} 3 -2024-07-16 19:07:56.95285 2024-07-17 07:01:23.54825 8fe403b7-6717-437e-8bbc-05eb3ace284c {"md5": "00a3bb3820a872d955e0e616b8571393", "pid": "97424225X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Amt Haderslev"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4821156-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)97424225X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4821156-4", "source": "GND"}], "variant_access_point": ["Amt Hadersleben (Ost)", "Hadersleben (Amt) (Ost)"], "authorized_access_point": "Amt Haderslev (Ost)"} 3 -2024-07-16 19:07:37.492869 2024-07-17 06:59:20.021121 ab771a40-dd44-42dd-a1ff-e358702c8a71 {"md5": "d4eeb324cc932630969654ba98da8e18", "pid": "1169805140", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Dzūkija"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1169805140", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1169805140", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1169805140", "source": "GND"}], "authorized_access_point": "Dzūkija (West)"} 3 -2024-07-16 19:07:37.405756 2024-07-17 06:59:20.315206 417344ba-943b-4292-a03b-ad3add052c04 {"md5": "906c74fec9c3f35e8985d277d5a760a3", "pid": "1169805167", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Dzūkija"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1169805167", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1169805167", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1169805167", "source": "GND"}], "authorized_access_point": "Dzūkija (Ost)"} 3 -2024-07-16 19:07:37.319625 2024-07-17 06:59:20.600454 33848439-79f9-46c0-ad87-73269a5156dd {"md5": "ab9a1d5ed176a1258bb83a5d5b001ff6", "pid": "1169806686", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kaunas (Region)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1169806686", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1169806686", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1169806686", "source": "GND"}], "authorized_access_point": "Kaunas (Region, West)"} 3 -2024-07-16 19:07:37.232341 2024-07-17 06:59:20.878445 f9704d21-b911-41f4-82e2-aa34214c9b0c {"md5": "11e82f5a673233917adfbc085373c4b3", "pid": "1169806708", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kaunas (Region)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1169806708", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1169806708", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1169806708", "source": "GND"}], "authorized_access_point": "Kaunas (Region, Ost)"} 3 -2024-07-16 19:07:37.132535 2024-07-17 06:59:21.173566 f0814748-3870-4a0e-a2c0-9fe520d42e3c {"md5": "5a67d78a7e4eaf06ab90572d8bd270b9", "pid": "1171383401", "note": [{"label": ["Wikipedia: - https://de.wikipedia.org/wiki/R%C5%AF%C5%BEovsk%C3%BD_vrch"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Böhmische Schweiz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1171383401", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1171383401", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1171383401", "source": "GND"}], "classification": [{"name": "Berg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Rosenberg (Böhmische Schweiz : Berg)", "Růžák"], "authorized_access_point": "Růžovský vrch"} 3 -2024-07-16 19:07:37.038206 2024-07-17 06:59:21.450575 51801b64-f684-40b0-85cc-b57edee19001 {"md5": "c463af5e3b560fa49ba57b3077904120", "pid": "1177087480", "note": [{"label": ["Wikipedia: - https://de.wikipedia.org/wiki/Elsterstausee_B%C3%B6sdorf"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1177087480", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1177087480", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1177087480", "source": "GND"}], "classification": [{"name": "Stausee", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Elsterstausee Bösdorf", "Elsterstausee Leipzig-Knauthain", "Stausee Bösdorf"], "authorized_access_point": "Elsterstausee (Leipzig)"} 3 -2024-07-16 19:07:36.962709 2024-07-17 06:59:21.724952 d34ba9c8-d1f5-43b0-9eec-351836059253 {"md5": "215496db4e2d5b02fc24714ddbbd084d", "pid": "1177183811", "note": [{"label": ["Internet - https://www.fietsplatform.nl/uploads/folder_NLFL_DE_2017_download.pdf"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1177183811", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1177183811", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1177183811", "source": "GND"}], "classification": [{"name": "Radwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Zuidersee-Radweg", "Zuiderzee-Radweg", "Zuiderzeeroute", "Ijsselmeer Radroute"], "authorized_access_point": "Ijsselmeer-Radweg"} 3 -2024-07-16 19:07:56.483857 2024-07-17 07:01:25.340025 547dbc09-be7c-4b81-b87c-4733586a0be3 {"md5": "2e601a7363e5cd6f4cdc9b1df7bf177e", "pid": "979131529", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7522697-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)979131529", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7522697-2", "source": "GND"}], "authorized_access_point": "Echichens"} 3 -2024-07-16 19:07:56.219833 2024-07-17 07:01:26.170066 782bc551-7592-4d15-a20e-0fa19451d8b6 {"md5": "3ef4e3eebd0a0c17c53a5458c9a49c4d", "pid": "985253576", "note": [{"label": ["Internet - http://www.schwante.de/schloesser.htm"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Schwante"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7577686-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)985253576", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7577686-8", "source": "GND"}], "classification": [{"name": "Schloss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Schloss Sommerswalde (Schwante)"} 3 -2024-07-16 19:07:38.068265 2024-07-17 06:59:17.970077 868369aa-2453-444a-9e6a-058630f66c16 {"md5": "66cfad226e7a3edfffa2c95585fd1a15", "pid": "1164527657", "note": [{"label": ["Internet - http://www.comune.sondrio.it/site/home/cosa-devo-fare-per/vivere-arte-e-tempo-libero/articolo1725279.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Maloja"}, {"authorized_access_point": "Sondrio"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1164527657", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1164527657", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1164527657", "source": "GND"}], "classification": [{"name": "Wanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Sentiero Rusca"} 3 -2024-07-16 19:07:37.988499 2024-07-17 06:59:18.264471 71148f5f-342b-4be8-a781-5030d6ee57c2 {"md5": "8229b13b140956ef056ca8be172b3f76", "pid": "1165597586", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Woiwodschaft Lublin"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1165597586", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1165597586", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1165597586", "source": "GND"}], "variant_access_point": ["Radzyń Podlaski (ziemia)", "Radzyń Podlaski (Land)"], "authorized_access_point": "Radzyń Podlaski (Region)"} 3 -2024-07-16 19:07:37.829194 2024-07-17 06:59:18.872574 8480c3d0-339e-44cc-9dfb-4d8f494efea3 {"md5": "8b9b7f13bbaede240b58849170280ed5", "pid": "1166988007", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Neustadt_(Leipzig)&oldid=173318045"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Neustadt (Leipzig)"}, {"authorized_access_point": "Leipzig-Neustadt-Neuschönefeld"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1166988007", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1166988007", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1166988007", "source": "GND"}], "variant_access_point": ["Neustadt (Leipzig)"], "authorized_access_point": "Leipzig-Neustadt"} 3 -2024-07-16 19:07:37.742255 2024-07-17 06:59:19.172844 5e9dd9d1-1d31-4e86-a982-807e2ddf8ef5 {"md5": "6ff873845c939543aa34d3e6aa800f9e", "pid": "1166988325", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Neusch%C3%B6nefeld&oldid=178415670"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Neuschönefeld"}, {"authorized_access_point": "Leipzig-Neustadt-Neuschönefeld"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1166988325", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1166988325", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1166988325", "source": "GND"}], "variant_access_point": ["Neuschönefeld (Leipzig)"], "authorized_access_point": "Leipzig-Neuschönefeld"} 3 -2024-07-16 19:07:37.918561 2024-07-17 06:59:18.55479 2b8e150b-60c6-48a2-a6e1-7c6b281048fc {"md5": "0754fb3b8efa4c523ca99362352c97ef", "pid": "1166098877", "note": [{"label": ["Wikipedia - https://pl.wikipedia.org/wiki/Ziemia_lubawska"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1166098877", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1166098877", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1166098877", "source": "GND"}], "variant_access_point": ["Lubawa (ziemia)", "Ziemia lubawska", "Löbauer Land (Westpreußen)", "Löbau (Westpreußen) (Land)", "Löbau (Westpreußen) (Region)"], "authorized_access_point": "Lubawa (Region)"} 3 -2024-07-16 19:07:56.018223 2024-07-17 07:01:26.770251 0276e108-da6a-44ce-b7ab-8d2b4ac1c012 {"md5": "d7038f26d816eec6706d9d6921f067d6", "pid": "989505952", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=St._Maria_ad_Gradus_(K%C3%B6ln)&oldid=205659895"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Köln"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7617898-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)989505952", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7617898-5", "source": "GND"}], "classification": [{"name": "Basilika", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Sankt Maria ad gradus (Köln)", "Stiftskirche Sankt Maria zu den Stufen (Köln)", "Sankt Mariengraden (Köln)", "Maria zu den Stufen (Köln)", "St. Mariengraden (Köln)", "St. Maria ad gradus (Köln) (Köln)"], "authorized_access_point": "Sankt Maria zu den Stufen (Köln)"} 3 -2024-07-16 19:07:38.788881 2024-07-17 06:59:15.841986 f8214cfb-f6ec-4ada-9e95-bc439d73774c {"md5": "f6d67c1de1aab483c1bf84bddd5476b6", "pid": "1148115242", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Hohenhameln"}, {"authorized_access_point": "Equord"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1148115242", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1148115242", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1148115242", "source": "GND"}], "authorized_access_point": "Hohenhameln-Equord"} 3 -2024-07-16 19:07:38.707321 2024-07-17 06:59:16.137357 3265430c-0370-4752-be08-f952505e224a {"md5": "7161c3af99cd8d02a63769743ade428c", "pid": "1156051029", "note": [{"label": ["1903 erbautes Gewerbehaus; 1978 zu Wohnhaus umgenutzt, soll Überbauung weichen."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Luzern"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1156051029", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1156051029", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1156051029", "source": "GND"}], "classification": [{"name": "Haus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Industriestrasse 9 (Luzern)"} 3 -2024-07-16 19:07:38.606147 2024-07-17 06:59:16.385536 14666f81-2e73-4b5d-a2e2-bb6688c89d07 {"md5": "4269169561a74fe1a8b5706dec50494e", "pid": "1156658128", "note": [{"label": ["Internet: - https://www.trescher-verlag.de/reisefuehrer/deutschland/paul-gerhardt-weg.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Berlin"}, {"authorized_access_point": "Lübben (Spreewald)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1156658128", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1156658128", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1156658128", "source": "GND"}], "classification": [{"name": "Fernwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Paul-Gerhardt-Wanderweg"], "authorized_access_point": "Paul-Gerhardt-Weg"} 3 -2024-07-16 19:07:38.430989 2024-07-17 06:59:16.929549 6a8a6b19-faff-4820-b3a5-f3664538657a {"md5": "40f9169b27956bdb15c4d521ef7f15ff", "pid": "1161830820", "note": [{"label": ["Internet - https://www.esterbauer.com/db_detail.php?buecher_code=TDF"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1161830820", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1161830820", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1161830820", "source": "GND"}], "classification": [{"name": "Radwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Vlaanderen Fietsroute"], "authorized_access_point": "Flandern-Route"} 3 -2024-07-16 20:06:48.455927 2024-07-17 06:57:02.37846 8b97e1d7-5eab-4843-b25a-6e0b7dcca375 {"md5": "0cb52dfd101cc320b6af7b2b4f7edf59", "pid": "00468687X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Norddeutscher Bund"}, {"authorized_access_point": "Deutschland (Gebiet unter Alliierter Besatzung)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2008993-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)00468687X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)2008993-4", "source": "GND"}], "variant_access_point": ["Deutschland (Deutsches Reich)", "Deutsche Sozialistische Republik", "Sozialistische Republik (Deutsches Reich)", "Germanija (Deutsches Reich)", "Germany (Deutsches Reich)", "Allemagne (Deutsches Reich)", "Das Deutsche Reich", "Deutschland (Deutscher Bund, 1871)", "Vokietija", "Deutschland (1871-1945)"], "authorized_access_point": "Deutsches Reich"} 3 -2024-07-16 20:07:26.898293 2024-07-17 06:57:07.26281 2592d6c1-552d-4d87-b62d-6e4e592ac1b2 {"md5": "6ff762a959d30acc5dbd3c1a7a5ed3be", "pid": "040019098", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Spanien (Süd)"}, {"authorized_access_point": "al- Andalus"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4001909-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040019098", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4001909-3", "source": "GND"}], "classification": [{"name": "Andalusier", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Baetica", "Andalucía", "Andalousie", "Andalousia"], "authorized_access_point": "Andalusien"} 3 -2024-07-16 20:07:15.975305 2024-07-17 06:57:10.034096 d2a25ebf-65f6-4b99-8ad7-83cd9800de8d {"md5": "9bbeda6a0ffbb7fffd4c303e0963da19", "pid": "040050440", "note": [{"label": ["Homepage - https://www.bayern.de/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Pfalz-Bayern"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4005044-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040050440", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4005044-0", "source": "GND"}], "classification": [{"name": "Bayern", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Herzogtum Bayern", "Königreich Bayern", "Churbayern", "Bavaria", "Kurfürstentum Bayern", "Kurbayern", "Freistaat Bayern", "Stammesherzogtum Bayern", "Bavarian State", "Bayerischer Staat", "Baiern", "Volksstaat Bayern", "Bavière", "Bayrn", "BY"], "authorized_access_point": "Bayern"} 3 -2024-07-16 19:07:39.284743 2024-07-17 06:59:14.103857 3ef73076-817a-46e7-9f33-b13cb4d37517 {"md5": "ba6fe76846367a6b2fa849411f5bf694", "pid": "113914071X", "note": [{"label": ["Internet - http://www.drei-fluesse-tour.de/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/113914071X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)113914071X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)113914071X", "source": "GND"}], "classification": [{"name": "Radwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Drei-Flüsse-Tour", "Drei-Flüsse-Radweg", "Drei-Flüsse-Radwanderweg"], "authorized_access_point": "3-Flüsse-Tour"} 3 -2024-07-16 19:07:39.191032 2024-07-17 06:59:14.352172 5515f44e-2bf7-4b5d-8c8e-d0cec64f0797 {"md5": "23c5b2ab45260986a68a660da8f832af", "pid": "1139463888", "note": [{"label": ["Internet - https://www.donau.com/de/donau-niederoesterreich/infos-service/presse-b2b/presse/weitwanderweg-nibelungengau-wandern-am-fluss/b4fcca43e95b082793e09cc66f72d118/?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5Baction%5D=detail"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Sankt Nikola- Sarmingstein"}, {"authorized_access_point": "Emmersdorf an der Donau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1139463888", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1139463888", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1139463888", "source": "GND"}], "classification": [{"name": "Fernwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Weitwanderweg Nibelungengau"} 3 -2024-07-16 19:07:39.022984 2024-07-17 06:59:14.953364 d9e4947b-9f3c-409e-801d-7c71e043882a {"md5": "e1be8232aa6a34cc034d5714444e4af0", "pid": "1143154991", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Continental_Divide_Trail"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1143154991", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1143154991", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1143154991", "source": "GND"}], "classification": [{"name": "Fernwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["CDT (Fernwanderweg)"], "authorized_access_point": "Continental Divide Trail"} 3 -2024-07-16 19:07:38.948917 2024-07-17 06:59:15.233242 e81a308a-bf60-489a-a348-4574219f8fc8 {"md5": "4f9ffd18afe527ca10101bd4419187eb", "pid": "1143714245", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Kurpie&oldid=215616715"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1143714245", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1143714245", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1143714245", "source": "GND"}], "variant_access_point": ["Kurpengau"], "authorized_access_point": "Kurpie (Region)"} 3 -2024-07-16 20:07:36.98045 2024-07-17 06:57:13.804614 8e6b4eac-bbb5-47fc-b6f5-548024b7cebb {"md5": "3eda97aed5f5daa59c073b4e8e389004", "pid": "040118894", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Deutschland (Gebiet unter Alliierter Besatzung)"}, {"authorized_access_point": "Deutschland (Gebiet unter Alliierter Besatzung, Westzonen)"}, {"authorized_access_point": "Deutschland (Gebiet unter Alliierter Besatzung, Vereinigtes Wirtschaftsgebiet)"}, {"authorized_access_point": "Deutschland"}, {"authorized_access_point": "Deutschland (Westliche Länder)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4011889-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040118894", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4011889-7", "source": "GND"}], "variant_access_point": ["Alemanha (Deutschland, Bundesrepublik)", "Alemania (Deutschland, Bundesrepublik)", "Allemagne (Deutschland, Bundesrepublik)", "Almanija (Deutschland, Bundesrepublik)", "Almāniyā (Deutschland, Bundesrepublik)", "Bondsrepubliek Duitsland (Deutschland, Bundesrepublik)", "BRD", "BRD (1949-1990)", "Bundesrepublik Deutschland (1949-1990)", "Deutschland (1949-1990, Bundesrepublik)", "Deutschland (Bundesrepublik) (1949-1990)", "Federal Republic of Germany (Deutschland, Bundesrepublik)", "Förbundsrepubliken Tyskland (Deutschland, Bundesrepublik)", "Förbundsrepublikken Tyskland (Deutschland, Bundesrepublik)", "FRG", "Germany (Deutschland, Bundesrepublik)", "Németországi Szövetségi Kőztársaság (Deutschland, Bundesrepublik)", "Niemiecka Republika Federalna Niemiecka Republika Federalna", "NRF", "Repubblica Federale di Germania (Deutschland, Bundesrepublik)", "Republic of Germany (Deutschland, Bundesrepublik)", "República Federal da Alemanha (Deutschland, Bundesrepublik)", "República Federal de Alemania (Deutschland, Bundesrepublik)", "Republik Federasi Djerman (Deutschland, Bundesrepublik)", "Republika Federalna Niemiec (Deutschland, Bundesrepublik)", "République Fédérale d'Allemagne (Deutschland, Bundesrepublik)", "RFN", "Saksan Liittotasavalta (Deutschland, Bundesrepublik)", "Westdeutschland (Bundesrepublik, 1949-1990)"], "authorized_access_point": "Deutschland (Bundesrepublik)"} 3 -2024-07-16 20:07:11.231556 2024-07-17 06:57:16.651429 2834cb62-976d-4b13-b3d7-46c9f81c3aaa {"md5": "8a4b4d6b512b0175ea4a765ad3ff47a7", "pid": "040181847", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Überseedepartement"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4018184-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040181847", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4018184-4", "source": "GND"}], "variant_access_point": ["Departement Guayana", "Departement Guyana", "Guayana (Kolonie, Frankreich)", "Französisch-Guyana", "Guyane Française", "Guayana (Französisch-Guayana)", "Département de la Guyane Française", "Guyane-Française", "Département d'Outre-Mer de la Guyane Française", "Guayana (Guyane Française)", "Conseil Régional (Guyane Française)", "Région Guyane", "French Guiana"], "authorized_access_point": "Französisch-Guayana"} 3 -2024-07-16 19:07:40.136872 2024-07-17 06:59:11.378361 9dc0b510-1cc7-45e4-b1e0-c5e583d920e6 {"md5": "356dbba2b7eff8f563a5f1941fadf74a", "pid": "1122668171", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Myanmar"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1122668171", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1122668171", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1122668171", "source": "GND"}], "variant_access_point": ["Birma (Nordwest)", "Nordwestliches Birma"], "authorized_access_point": "Myanmar (Nordwest)"} 3 -2024-07-16 19:07:40.050811 2024-07-17 06:59:11.67184 4f0696ce-035d-4bfe-bcf4-a20824b6b478 {"md5": "28c657b5bd44a21c0942b5fcf7c0b797", "pid": "1122747160", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Simbabwe"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1122747160", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1122747160", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1122747160", "source": "GND"}], "variant_access_point": ["Nordwestsimbabwe"], "authorized_access_point": "Simbabwe (Nordwest)"} 3 -2024-07-16 19:07:39.992866 2024-07-17 06:59:11.922419 a872dbc7-3eec-4ce1-951a-e27261ffd493 {"md5": "8ca65ea9071f2a4e8b02a8ad949e6b82", "pid": "1124279156", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1124279156", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1124279156", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1124279156", "source": "GND"}], "variant_access_point": ["Gampenpass (Region)"], "authorized_access_point": "Gampenpass-Gebiet"} 3 -2024-07-16 19:07:39.817795 2024-07-17 06:59:12.427339 94ed384a-c165-4429-8e73-2c65d42ce4b1 {"md5": "4e28ec05f50469b39995518acaf97a69", "pid": "1133293247", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Isingen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1133293247", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1133293247", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1133293247", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Martinskirche (Isingen)"} 3 -2024-07-16 19:07:39.738404 2024-07-17 06:59:12.705297 a09f0214-4e60-417c-86fa-8155bee2469a {"md5": "a6edd4042118eea5fa1057986a8aafbd", "pid": "1135798842", "note": [{"label": ["GeoNames - http://www.geonames.org/598887/jasiunai.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1135798842", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1135798842", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1135798842", "source": "GND"}], "authorized_access_point": "Jašiūnai"} 3 -2024-07-16 19:07:39.646902 2024-07-17 06:59:13.013349 05cd3db2-e0c0-402b-809a-6bcdaac82fa7 {"md5": "c7f1cc2c8431c5eee91f3224dc3a89bf", "pid": "1135805342", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Oberes_Angertal"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Angerbachtal (Rheinland)"}, {"authorized_access_point": "Niederbergisches Land"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1135805342", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1135805342", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1135805342", "source": "GND"}], "classification": [{"name": "Wüstung", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Obere Angerbachtal", "Oberes Angertal"], "authorized_access_point": "Obere Angertal (Niederbergisches Land)"} 3 -2024-07-16 20:07:31.713732 2024-07-17 06:57:18.187007 7bc01af9-d509-4597-8dc7-a647c3b2c50f {"md5": "745e4423c484a96022606a3c9c6426b7", "pid": "040201449", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4020144-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040201449", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4020144-2", "source": "GND"}], "classification": [{"name": "See", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Genfersee", "Lac Léman", "Lac de Genève", "Le Léman", "Léman"], "authorized_access_point": "Genfer See"} 3 -2024-07-16 19:07:40.664379 2024-07-17 06:59:09.622315 e5311a6a-cf3f-4aac-88a4-2307646c3c97 {"md5": "08b6d7bc801b5a7e81f1640a2fce86d3", "pid": "1100201831", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Ennsradweg"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Flachau-Flachauwinkl"}, {"authorized_access_point": "Enns"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1100201831", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1100201831", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1100201831", "source": "GND"}], "classification": [{"name": "Radwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Ennsradweg"], "authorized_access_point": "Enns-Radweg"} 3 -2024-07-16 19:07:40.574341 2024-07-17 06:59:09.930754 ddf14117-3c0b-45d4-a63c-de10d3ed3990 {"md5": "162fa01d4b584fade40ff5827d70bd18", "pid": "1100323325", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Nahe-Radweg"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Nohfelden-Selbach"}, {"authorized_access_point": "Bingen am Rhein"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1100323325", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1100323325", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1100323325", "source": "GND"}], "classification": [{"name": "Radwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Nahe-Radweg"} 3 -2024-07-16 19:07:40.401756 2024-07-17 06:59:10.50168 0e62c175-e526-4797-a23e-1e05c5bfaa21 {"md5": "ffca4da314ab08b39ea845b7cb811bdf", "pid": "1105589110", "note": [{"label": ["Internet - http://www.allgaeu.de/wanderrouten?referralTopic=wandern"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Wandertrilogie Allgäu"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1105589110", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1105589110", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1105589110", "source": "GND"}], "classification": [{"name": "Rundwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Fernwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Wasserläufer-Route"], "authorized_access_point": "Wasserläufer Route"} 3 -2024-07-16 19:07:40.486589 2024-07-17 06:59:10.197837 ebbe104b-6020-4e48-88cd-9f0b2a6356f2 {"md5": "11e4bb6c9164d62f50c567bf90a84055", "pid": "1101612258", "note": [{"label": ["Wikipedia: - https://de.wikipedia.org/wiki/Yimeng_Shan"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1101612258", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1101612258", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1101612258", "source": "GND"}], "classification": [{"name": "Gebirge", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Yimengshan", "Yimeng (Region)", "Yimeng-Bergland"], "authorized_access_point": "Yimeng Shan"} 3 -2024-07-16 20:06:44.093338 2024-07-17 06:57:18.499839 b74330b2-714c-4a26-bda4-2bbbb1ecefe1 {"md5": "108e1ead2e66b676ca9b4057ccf10670", "pid": "040218813", "note": [{"label": ["Homepage - https://www.gr.ch/DE/Seiten/welcome.aspx"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Drei Bünden"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4021881-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040218813", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4021881-8", "source": "GND"}], "classification": [{"name": "Graubündner", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}, {"name": "Kanton", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Churrätien", "Bünden", "Grigioni", "Cantone dei Grigioni", "Grigione", "Grisons", "Grisons", "Cantun Grischun", "Chantun Grischun", "Eidgenössischer Stand Graubünden", "Grischun", "Kanton Graubünden", "Grigioni", "Ligues Grisonnes", "Grisons", "Freistaat der drei Bünde"], "authorized_access_point": "Graubünden"} 3 -2024-07-16 19:07:41.41541 2024-07-17 06:59:06.953768 f66fcb2a-090f-445a-a9d7-a5e9680834b7 {"md5": "62017e1d04175f673f46e78614aceb69", "pid": "1082012033", "note": [{"label": ["Internet - http://www.salzalpensteig.com/salzalpensteig.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Prien a. Chiemsee"}, {"authorized_access_point": "Obertraun"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1082012033", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1082012033", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1082012033", "source": "GND"}], "classification": [{"name": "Fernwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Salzalpensteig", "Salzalpen-Steig"], "authorized_access_point": "SalzAlpenSteig"} 3 -2024-07-16 19:07:41.232563 2024-07-17 06:59:07.514244 2f93af2e-f48a-4914-a920-50276579659f {"md5": "50e857a4f051f6087bf31c0d6d19e317", "pid": "1082520101", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Idyllische_Stra%C3%9Fe"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Welzheim"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1082520101", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1082520101", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1082520101", "source": "GND"}], "classification": [{"name": "Fremdenverkehrsstraße", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Idyllische Straße"} 3 -2024-07-16 19:07:41.143478 2024-07-17 06:59:07.822003 015b1adb-ed5d-4429-8ed8-b3f8579fc785 {"md5": "4379412f22a4dc675ba20359abd42993", "pid": "1082797251", "note": [{"label": ["archINFORM - http://deu.archinform.net/projekte/1110.htm", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Stuttgarter_Fernsehturm&oldid=151349493"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Stuttgart"}, {"authorized_access_point": "Stuttgart-Degerloch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1082797251", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1082797251", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1082797251", "source": "GND"}], "classification": [{"name": "Fernsehturm", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Aussichtsturm", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Stuttgarter Fernsehturm (Stuttgart)", "Stuttgarter Fernsehturm (Stuttgart-Degerloch)"], "authorized_access_point": "Fernsehturm Stuttgart (Stuttgart)"} 3 -2024-07-16 19:07:41.062344 2024-07-17 06:59:08.128488 afb2cf7a-a754-4a7c-b024-28b0232d75b0 {"md5": "2b3948cb39b748937710061738b29d0f", "pid": "1085229823", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Litoměřice"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1085229823", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1085229823", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1085229823", "source": "GND"}], "variant_access_point": ["Stadt Leitmeritz", "Leütmaritz", "Statt Leütmaritz", "Litoměřice (-XX.05.1945)"], "authorized_access_point": "Leitmeritz"} 3 -2024-07-16 19:07:41.006282 2024-07-17 06:59:08.438361 e2261040-69ab-40f5-b2fa-e2b34cacaaaf {"md5": "9984a1671b7526591a286e41eb7f4055", "pid": "1095576461", "note": [{"label": ["Google Maps - https://www.google.de/maps/place/Gomo,+South+Nias+Regency,+North+Sumatra,+Indonesien/@0.8834854,97.7321029,12z/data=!3m1!4b1!4m2!3m1!1s0x3026206005f1b8fb:0x4039d80b220dba0"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Nias"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1095576461", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1095576461", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1095576461", "source": "GND"}], "variant_access_point": ["Gomo-Gebiet (Nias) (Region)"], "authorized_access_point": "Gomo-Gebiet (Nias)"} 3 -2024-07-16 20:07:33.270599 2024-07-17 06:57:22.014489 6e950296-adf3-4e35-b104-11b7f7481636 {"md5": "bbed2dce980a341659286738bc45e154", "pid": "040289664", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Jugoslawien&oldid=234596448"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "SHS-Staat"}, {"authorized_access_point": "Föderative Republik Jugoslawien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4028966-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040289664", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4028966-7", "source": "GND"}], "classification": [{"name": "Jugoslawen", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Jugoslavija", "FNRJ", "FNR Jugoslavija", "SFRJ", "SFRJU", "SFR Jugoslavija", "Federal People's Republic of Yugoslavia", "FPR Yugoslavia", "FPRY", "Socialist Federal Republic of Yugoslavia", "SFR Yugoslavia", "Föderative Volksrepublik Jugoslawien", "FVRJ", "Yugoslavija", "République Socialiste Fédérative de Yougoslavie", "Socialistična Federativna Republika Jugoslavija", "Socialističeskaja Federativnaja Respublika Jugoslavija", "Yugoslavıya", "Demokratska Federativna Jugoslavija", "Savezna Republika Jugoslavija", "Federal Republic of Yugoslavija", "Sojuznaja Respublika Jugoslavii", "Federativna Narodna Republika Jugoslavija", "Socijalistička Federativna Republika Jugoslavija", "Yugoslavia", "Yougoslavie", "Sozialistische Föderative Republik Jugoslawien", "Kraljevina Jugoslavija", "Königreich Jugoslawien"], "authorized_access_point": "Jugoslawien"} 3 -2024-07-16 19:07:41.94175 2024-07-17 06:59:05.287639 4cb0325d-b80b-4f4d-8324-301a6b6d3950 {"md5": "b3665957472256c20949614dfc7167a7", "pid": "1081838779", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Belp"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081838779", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081838779", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081838779", "source": "GND"}], "classification": [{"name": "Schloss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Schloss Belp (Belp)"} 3 -2024-07-16 19:07:41.859784 2024-07-17 06:59:05.622617 65abf442-25da-4999-9f74-39eaa584a22a {"md5": "cf9872085a5e5124caefce0f62ee14d9", "pid": "1081839082", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Toffen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081839082", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081839082", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081839082", "source": "GND"}], "classification": [{"name": "Schloss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Burg Toffen (Toffen)"], "authorized_access_point": "Schloss Toffen (Toffen)"} 3 -2024-07-16 19:07:41.773808 2024-07-17 06:59:05.89896 3a36e68e-87c2-4ac4-b707-2a5412534a0b {"md5": "8bb0ac13e2523a69cb118b4881edf931", "pid": "1081842474", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kleinlützel"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081842474", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081842474", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081842474", "source": "GND"}], "classification": [{"name": "Burgruine", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Burg Blauenstein (Kleinlützel)"], "authorized_access_point": "Burgruine Blauenstein (Kleinlützel)"} 3 -2024-07-16 19:07:41.673903 2024-07-17 06:59:06.151944 482b02cb-fef9-4887-9c14-095d0fc4a048 {"md5": "dca2cc61ec3a16cbfde88797634ab86e", "pid": "1081844973", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Erlach (Kanton Bern)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081844973", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081844973", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081844973", "source": "GND"}], "classification": [{"name": "Schloss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Erziehungsheim", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Schulheim Schloss Erlach (Erlach, Kanton Bern)", "Burg Erlach (Erlach, Kanton Bern)"], "authorized_access_point": "Schloss Erlach (Erlach, Kanton Bern)"} 3 -2024-07-16 20:06:56.736528 2024-07-17 06:57:27.804411 feaaf40d-436c-4eb5-b546-1baadedd9358 {"md5": "f774205236ec7e69c7f86d51ea34c5f3", "pid": "04037680X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Spanisch-Marokko"}, {"authorized_access_point": "Protektorat Marokko"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4037680-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04037680X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4037680-1", "source": "GND"}], "classification": [{"name": "Marokkaner", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["al- Mamlaka al-Maġribīya", "Marrākuš", "Marrākush", "Marruecos", "Königreich Marokko", "Marraqus", "Empire Chérifien", "Reino de Marruecos", "Maroc", "Morocco", "Royaume du Maroc", "Kingdom of Morocco", "al- Mamlakah al-Maghribīyah"], "authorized_access_point": "Marokko"} 3 -2024-07-16 19:07:42.673069 2024-07-17 06:59:02.729313 8d1148d4-6daa-4d29-b2df-ed06f09ff04f {"md5": "72c48df9172028475084250c23fd4cdb", "pid": "1081097930", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081097930", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081097930", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081097930", "source": "GND"}], "authorized_access_point": "Mockern (Region)"} 3 -2024-07-16 19:07:42.579433 2024-07-17 06:59:02.946988 bb94044d-b05d-462f-9408-e43f1928793a {"md5": "edda4c784d7866f6338f77a896065786", "pid": "1081212918", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081212918", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081212918", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081212918", "source": "GND"}], "authorized_access_point": "Kurtschau (Region)"} 3 -2024-07-16 19:07:42.414476 2024-07-17 06:59:03.58156 2fbba075-5c59-492b-abee-e332edcd036b {"md5": "140433275d87a74d9a17371ce5ad3556", "pid": "1081838051", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Aarwangen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081838051", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081838051", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081838051", "source": "GND"}], "classification": [{"name": "Schloss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Schloss Aarwangen (Aarwangen)"} 3 -2024-07-16 19:07:42.319044 2024-07-17 06:59:03.88096 c24ff18e-a5df-4034-9005-c63b8863b559 {"md5": "8908c407fe8e9721dcc9455d9d9d0771", "pid": "1081838167", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Utzigen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081838167", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081838167", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081838167", "source": "GND"}], "classification": [{"name": "Schloss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Pflegeheim", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Schloss Utzigen (Utzigen)"} 3 -2024-07-16 19:07:42.229553 2024-07-17 06:59:04.175128 b2260630-e9bb-407f-be6f-ac2b3736427a {"md5": "1da5533e77dd19b863ecb608d1daf4ff", "pid": "1081838310", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Krauchthal"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081838310", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081838310", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081838310", "source": "GND"}], "classification": [{"name": "Burg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Schloss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Gefängnisbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Kartause", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Armenhaus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Schloss Thorberg (Krauchthal)"} 3 -2024-07-16 19:07:42.754689 2024-07-17 06:59:02.446396 f4636904-02f0-432f-8a9e-eba51b353833 {"md5": "42d9f440bf9fb2cb31f8556be6ec60ce", "pid": "1079692916", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Alaska"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1079692916", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1079692916", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1079692916", "source": "GND"}], "classification": [{"name": "Bucht", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Pyramid Harbor"} 3 -2024-07-16 20:06:36.800944 2024-07-17 06:57:35.96974 1928f915-9cb6-4669-9aad-d3c913804bd8 {"md5": "5ea276f1c2795bd55cff867578375272", "pid": "040496392", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Maskarenen"}], "related": [{"authorized_access_point": "Überseedepartement"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4049639-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040496392", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4049639-9", "source": "GND"}], "classification": [{"name": "Insel", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["LaRéunion", "Île Bourbon", "La Réunion", "Réunion (Conseil Général)", "Conseil Général, Réunion", "Région Réunion", "Département de la Réunion", "Département d'Outre-Mer de la Réunion", "Conseil Général (Réunion)"], "authorized_access_point": "Réunion"} 3 -2024-07-16 19:07:43.470481 2024-07-17 06:58:59.674704 8ca96343-f8e4-4444-89ce-1dce9d1a8041 {"md5": "2c747c0d3dec8b3eff64f08fe11fa202", "pid": "1075827361", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Dauj%C4%97nai&oldid=1157247700"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1075827361", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1075827361", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1075827361", "source": "GND"}], "authorized_access_point": "Daujėnai"} 3 -2024-07-16 19:07:43.3846 2024-07-17 06:58:59.945481 88db7b88-10b1-4acb-92f0-dcf78fe49838 {"md5": "c3b14e34fdf118f9f2d278bc0f119e45", "pid": "1076027032", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Goldbach (Überlingen)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1076027032", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1076027032", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1076027032", "source": "GND"}], "classification": [{"name": "Höhle", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Heidenlöcher (Goldbach, Überlingen)"], "authorized_access_point": "Heidenhöhlen (Goldbach, Überlingen)"} 3 -2024-07-16 19:07:43.305767 2024-07-17 06:59:00.248566 073d510a-841c-42ab-9a41-f2f2a46fc1db {"md5": "c13999628320d1de924825584f2409e1", "pid": "107699847X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/107699847X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)107699847X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)107699847X", "source": "GND"}], "variant_access_point": ["Szreniawa (Fluss) (Region)"], "authorized_access_point": "Szreniawa-Gebiet"} 3 -2024-07-16 19:07:43.159762 2024-07-17 06:59:00.534886 981d994e-b798-476c-b7ea-324760890f59 {"md5": "080d6b895704ab5fd8163e474769ea2e", "pid": "1077053185", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leichlingen (Rheinland)"}, {"authorized_access_point": "Weltersbach (Leichlingen (Rheinland))"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1077053185", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1077053185", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1077053185", "source": "GND"}], "authorized_access_point": "Leichlingen-Weltersbach"} 3 -2024-07-16 19:07:43.096194 2024-07-17 06:59:00.797635 1089fd3a-1dd2-4905-b7ba-2a1df4c659e4 {"md5": "4177fe8105813261e68f1e8d62082d39", "pid": "1077053320", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leichlingen (Rheinland)"}, {"authorized_access_point": "Leichlingen-Weltersbach"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1077053320", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1077053320", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1077053320", "source": "GND"}], "variant_access_point": ["Weltersbach (Leichlingen)"], "authorized_access_point": "Weltersbach (Leichlingen (Rheinland))"} 3 -2024-07-16 19:07:43.008656 2024-07-17 06:59:01.373305 35b05f4e-8ba0-4844-86c2-d1c63fab8b02 {"md5": "47a096e06b4b69da162745c13d3375b8", "pid": "1077893450", "note": [{"label": ["Internet - http://kocher-jagst-trail.de/content.php?cont_id=1&src=1&la=de"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1077893450", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1077893450", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1077893450", "source": "GND"}], "classification": [{"name": "Rundwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Fernwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Kocher-Jagst-Wanderweg"], "authorized_access_point": "Kocher-Jagst-Trail"} 3 -2024-07-16 19:07:42.918819 2024-07-17 06:59:01.707074 b61451bd-7083-46fe-89a7-c147df2fc4fb {"md5": "152a694e1df659d63e6fa8f567d400e2", "pid": "1078131902", "note": [{"label": ["Internet - http://www.goeppingen.de/,Lde/start/Unsere+Stadt/Alter+Friedhof+an+Oberhofen.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Göppingen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1078131902", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1078131902", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1078131902", "source": "GND"}], "classification": [{"name": "Friedhof", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Alter Friedhof an Oberhofen (Göppingen)"} 3 -2024-07-16 20:07:39.91598 2024-07-17 06:57:36.568897 f63fa269-fd81-49d5-9576-48c2c3beb0d1 {"md5": "c5eb49ad3c200be1e841932b1e893770", "pid": "040509397", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Walachei"}, {"authorized_access_point": "Moldau (Fürstentum)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4050939-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040509397", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4050939-4", "source": "GND"}], "classification": [{"name": "Rumänen", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["România", "République Socialiste de Roumanie", "Socialist Republic Romania", "Sozialistische Republik Rumänien", "Socialističeskaja Respublika Rumynija", "Socialist Republic of Rumania", "Rumänische Volksrepublik", "Rumanian People's Republic", "RPR", "Romînia", "Roumanie", "Román Szocialista Köztársaság", "Rumynija", "Rumynskaja Narodnaja Respublika", "RNR", "République Populaire Roumaine", "Rumunija", "Republică Populară Romînă", "Republica Socialistă Româniă", "Republica Romanîa"], "authorized_access_point": "Rumänien"} 3 -2024-07-16 20:07:36.021686 2024-07-17 06:57:38.52588 76a6a5a1-ceab-45d6-9f16-51747cac7684 {"md5": "e4036dbf3868535fe760dbda04304641", "pid": "040540197", "note": [{"label": ["Homepage - http://www.sz.ch/xml_1/internet/de/intro.cfm"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4054019-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040540197", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4054019-4", "source": "GND"}], "classification": [{"name": "Kanton", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Schwyz (Kanton)", "Kanton Schweiz", "Schweiz (Kanton)", "SZ", "Eidgenössischer Stand Schwyz", "SZ (Schwyz : Kanton)", "Schwytz (Kanton)", "Schweitz (Kanton)", "SZ (Schwyz Kanton)"], "authorized_access_point": "Kanton Schwyz"} 3 -2024-07-16 19:08:17.930246 2024-07-17 06:57:40.185425 01f8e3e9-0fbc-448d-b5ea-ee8f44b589f2 {"md5": "c7119731d57f3b985246e4ba920a80b0", "pid": "04057749X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Nykøbing Falster"}], "related": [{"authorized_access_point": "Amt Præstø"}, {"authorized_access_point": "Amt Maribo"}, {"authorized_access_point": "Region Sjælland"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4057749-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04057749X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4057749-1", "source": "GND"}], "classification": [{"name": "Amt", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Storstrøms (Amt)", "Storstrøms Amt", "Storstrøm (Amt)", "Storstrøm Amtskommune"], "authorized_access_point": "Amt Storstrøm"} 3 -2024-07-16 19:07:43.814176 2024-07-17 06:58:58.465349 dd9dc319-9faa-49ca-af58-a5d2ebee15fd {"md5": "ccc814562e5fdc261ea79e12e193ff5d", "pid": "107399077X", "note": [{"label": ["Internet - http://www.neisse-nisa-nysa.org/index.php?id=91"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Bad Schandau"}, {"authorized_access_point": "Chełmsko Śląskie"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/107399077X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)107399077X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)107399077X", "source": "GND"}], "classification": [{"name": "Radwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Rübezahlradweg"], "authorized_access_point": "Rübezahl-Radweg"} 3 -2024-07-16 19:07:43.730209 2024-07-17 06:58:58.769985 3b632d6f-093f-4d7a-92e0-bfa8b0720fa0 {"md5": "acde3f512809410984328c8dd11e41a6", "pid": "1074316908", "note": [{"label": ["Internet - http://www.emscher-weg.de/route/emscher-weg/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Holzwickede"}, {"authorized_access_point": "Dinslaken"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1074316908", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1074316908", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1074316908", "source": "GND"}], "classification": [{"name": "Radwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Emscherweg", "Emscherradweg"], "authorized_access_point": "Emscher-Weg"} 3 -2024-07-16 19:07:43.640932 2024-07-17 06:58:59.087769 987ee541-4f99-42fe-ad30-d0508e3e5969 {"md5": "1cfcf2cdf791658ceef72f94f0975fdd", "pid": "1074377397", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Rumbach_(Ruhr)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1074377397", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1074377397", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1074377397", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Ruhmbach"], "authorized_access_point": "Rumbach (Fluss)"} 3 -2024-07-16 19:07:44.62871 2024-07-17 06:58:55.628182 44668a65-7a87-4aa7-a969-32d59895d150 {"md5": "115810c590ffff18a06641731466d197", "pid": "1069803782", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kreis Ostholstein"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1069803782", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1069803782", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1069803782", "source": "GND"}], "authorized_access_point": "Heringsdorf (Kreis Ostholstein)"} 3 -2024-07-16 19:07:44.545912 2024-07-17 06:58:55.911006 1aa5f5a9-2a24-4cf8-8a53-e09388c80e0a {"md5": "99e68228304def26622b681777d676c7", "pid": "1070113026", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Aeugst am Albis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1070113026", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1070113026", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1070113026", "source": "GND"}], "classification": [{"name": "Weiler", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Wengi (Aeugst am Albis)", "Wängibad (Aeugst am Albis)"], "authorized_access_point": "Wängi (Aeugst am Albis)"} 3 -2024-07-16 19:07:44.461816 2024-07-17 06:58:56.177782 bbd59c01-bc4b-4b62-bfdb-f3e4c48bcbec {"md5": "db26afcd59f0123681b75908a822c207", "pid": "1071862391", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Bahnstrecke_Zgorzelec%E2%80%93Wa%C5%82brzych"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Görlitz"}, {"authorized_access_point": "Wałbrzych"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1071862391", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1071862391", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1071862391", "source": "GND"}], "classification": [{"name": "Eisenbahnlinie", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Bahnstrecke Zgorzelec–Wałbrzych"], "authorized_access_point": "Eisenbahnlinie Görlitz-Wałbrzych"} 3 -2024-07-16 19:07:44.376404 2024-07-17 06:58:56.452492 b6f780aa-cb8b-4d89-bbfd-56b3a53ef68a {"md5": "7f13d7724011e9e62e66ed283ee8dabe", "pid": "1071872435", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Sanntal"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1071872435", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1071872435", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1071872435", "source": "GND"}], "classification": [{"name": "Tal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Oberes Sanntal", "Obere Sann (Tal)"], "authorized_access_point": "Obere-Sann-Tal"} 3 -2024-07-16 19:07:44.218169 2024-07-17 06:58:57.007144 fdfd264d-0936-42b6-a19c-772b526dd523 {"md5": "33aab366687cc09b65472bdca515cca8", "pid": "1073267830", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Silvrettagruppe"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1073267830", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1073267830", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1073267830", "source": "GND"}], "classification": [{"name": "Berg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Piz Buin"} 3 -2024-07-16 19:07:44.161944 2024-07-17 06:58:57.346538 b6054bba-5cb4-41e3-8ae0-90c0cbd5dddc {"md5": "1d30bdb584cbf6ed97e886ebff09fdec", "pid": "107362062X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Vr%C3%A1tna-Tal"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kleine Fatra"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/107362062X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)107362062X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)107362062X", "source": "GND"}], "classification": [{"name": "Tal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Vratna-Tal", "Vratne-Tal", "Vrátna-Tal"], "authorized_access_point": "Vratné-Tal"} 3 -2024-07-16 20:07:01.566325 2024-07-17 06:57:40.778063 2a8cca1e-950f-4a13-8f9f-84f56b2c3509 {"md5": "06764c0b51ca0e6f0d94d39214c7e10d", "pid": "040587940", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Syrien (Wilāyet)"}, {"authorized_access_point": "al- Iqlīm as-Sūrī"}, {"authorized_access_point": "Vereinigte Arabische Republik"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4058794-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040587940", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4058794-0", "source": "GND"}], "classification": [{"name": "Syrer", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["al- Ǧumhūrīya as-Sūrīya", "al- Ǧumhūrīya al-ʿArabīya as-Sūrīya", "Syrie", "République Syrienne", "Arabskiej Republiki Syryjskiej", "Suriye", "Siria", "Repubblica Araba Siriana", "Sowria", "Sūriyā", "Syrian Arab Republic", "République Arabe Syrienne", "Arabische Republik Syrien", "Daulat Sūriyā", "Province of Syria", "Syrische Arabische Republik", "SAR (Syrian Arab Republic)", "SAR (Syrische Arabische Republik)", "RAS (République Arabe Syrienne)", "Syria (ab 1961)", "al-Ǧumhūrīya as-Sūrīya", "al-Ǧumhūrīya al-ʿArabīya as-Sūrīya", "Syrie (ab 1961)", "Syrien (ab 1961)", "Syria", "Syrien (Syria)", "Syrie (Syria)", "Arabische Republik Syrien (Syria)", "République Arab Syrienne (Syria)", "Syrian Arab Republic (Syria)", "al-Ǧumhūriyya al-ʿArabiyya as-Sūriyya (Syria)", "الجمهورية العربية السورية"], "authorized_access_point": "Syrien"} 3 -2024-07-16 19:07:45.284339 2024-07-17 06:58:53.352378 77563668-8a91-48c8-8cc2-5d98336a2b7e {"md5": "d3c4984d98dc1cb6d122cc2915e3e3c5", "pid": "1067272488", "note": [{"label": ["Internet: - http://www.kocher-jagst.de/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1067272488", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1067272488", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1067272488", "source": "GND"}], "classification": [{"name": "Radwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Kocher-Jagst-Radweg"} 3 -2024-07-16 19:07:45.211151 2024-07-17 06:58:53.608444 8fe286bc-ece9-487c-a308-6219719dcc5e {"md5": "371c53476a6d31df34f1f68fe2bed0b5", "pid": "1067274006", "note": [{"label": ["Internet - http://www.heidschnuckenweg.de/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Hamburg-Fischbek"}, {"authorized_access_point": "Celle"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1067274006", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1067274006", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1067274006", "source": "GND"}], "classification": [{"name": "Wanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Heidschnuckenweg"} 3 -2024-07-16 19:07:45.158536 2024-07-17 06:58:53.876933 cb98f81f-bb1b-46ef-ae81-385541317694 {"md5": "aeb1d334c1d595d6d49a19767fb7c40a", "pid": "1067636757", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Hartmannsdorf (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1067636757", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1067636757", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1067636757", "source": "GND"}], "variant_access_point": ["Hartmannsdorf (Leipzig)"], "authorized_access_point": "Leipzig-Hartmannsdorf"} 3 -2024-07-16 19:07:45.07055 2024-07-17 06:58:54.182971 5bc6e28b-da9b-4dc5-b9e9-3d5e35457fb5 {"md5": "02d0719b010c855d72df49fd7e886c5b", "pid": "1067637184", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Rehbach (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1067637184", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1067637184", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1067637184", "source": "GND"}], "variant_access_point": ["Rehbach (Leipzig)"], "authorized_access_point": "Leipzig-Rehbach"} 3 -2024-07-16 19:07:44.979327 2024-07-17 06:58:54.440539 e420e5b9-8d04-4221-82d5-45ac7720013d {"md5": "11ac1d0355ee5755cc2752b37d3b21ec", "pid": "1067860142", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Hirschfeld (Leipzig)"}, {"authorized_access_point": "Hirschfeld-Kleinpösna"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1067860142", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1067860142", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1067860142", "source": "GND"}], "variant_access_point": ["Hirschfeld (Leipzig)"], "authorized_access_point": "Leipzig-Hirschfeld"} 3 -2024-07-16 19:07:46.299888 2024-07-17 06:58:49.956857 207ddbaf-2454-4749-8877-f7c5e1fb7aa6 {"md5": "9a7b65a9ea37f59e8737100913007756", "pid": "106081482X", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Kanzelbach"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/106081482X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)106081482X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)106081482X", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Kanzelbach"} 3 -2024-07-16 19:07:46.239494 2024-07-17 06:58:50.191398 5b82586d-a418-4b21-910a-1786e8f90613 {"md5": "11c86cfc167a505fd8860d756f10b74a", "pid": "1060849127", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060849127", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060849127", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060849127", "source": "GND"}], "variant_access_point": ["Salamieh area"], "authorized_access_point": "Salamīyah (Region)"} 3 -2024-07-16 19:07:46.165748 2024-07-17 06:58:50.458477 75ce7c4d-d4de-4387-a6f3-bd36babacaa0 {"md5": "e46edbe9398ad66dfc69eac90bf509a0", "pid": "1061004198", "note": [{"label": ["Geonames - http://www.geonames.org/3086792/rudawa.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1061004198", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1061004198", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1061004198", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Rudawa (Fluss)"} 3 -2024-07-16 19:07:46.071596 2024-07-17 06:58:50.745049 6064fffd-11c8-48b2-9194-ed22e174b062 {"md5": "cf0b0ff5067d49feeee442526aa50088", "pid": "1062516109", "note": [{"label": ["Wikipedia - http://en.wikipedia.org/wiki/Hogsmill_River"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1062516109", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1062516109", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1062516109", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Hogsmill River"} 3 -2024-07-16 19:07:45.986087 2024-07-17 06:58:51.10161 c6abe204-af8b-4a54-ba54-756cf09867d4 {"md5": "2198ff46a2443f4d876874d8b41a8920", "pid": "1062531191", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Ole%C5%A1nice_(B%C4%9Bl%C3%A1)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1062531191", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1062531191", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1062531191", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Olešnice (Fluss)", "Elsnitz"], "authorized_access_point": "Białka"} 3 -2024-07-16 19:07:45.893617 2024-07-17 06:58:51.398119 bb0d2a35-4c2c-4e3e-906d-e7b5e65a9822 {"md5": "42dac288ea216955bd88a35f8f5caa87", "pid": "1062891848", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1062891848", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1062891848", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1062891848", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Stadtweiße"], "authorized_access_point": "Wilde Weiße"} 3 -2024-07-16 19:07:45.809126 2024-07-17 06:58:51.697689 669a66b1-1597-44a9-a524-4e47cdfdde4c {"md5": "8cdb9bb0820f439f03346471daa1de56", "pid": "1062970004", "note": [{"label": ["Geonames - http://www.geonames.org/2796123/helle.html", "Wikipedia - http://de.wikipedia.org/wiki/Hill_(Bach)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1062970004", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1062970004", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1062970004", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Hill (Fluss)"], "authorized_access_point": "Helle (Fluss)"} 3 -2024-07-16 19:07:45.728243 2024-07-17 06:58:52.006679 fbc3ce50-a856-4903-85ed-77f72e41022e {"md5": "110c0fe7e935dcef565c6dfcfd188c87", "pid": "1062979583", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1062979583", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1062979583", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1062979583", "source": "GND"}], "variant_access_point": ["Rezende"], "authorized_access_point": "Resende"} 3 -2024-07-16 19:07:45.639235 2024-07-17 06:58:52.314797 534a8fb3-6d5c-42f8-9c7b-59df2c2cc1db {"md5": "54745323dc905fe0f72e67853fdec838", "pid": "1064049419", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Anglesey_Coastal_Path"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1064049419", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1064049419", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1064049419", "source": "GND"}], "classification": [{"name": "Rundwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Anglesey Küstenweg"], "authorized_access_point": "Anglesey Coastal Path"} 3 -2024-07-16 20:07:41.452187 2024-07-17 06:57:47.766405 a7ea2f19-4830-41e3-b931-98a5ce60e0ba {"md5": "cb2cf1b29298a4f11728643f28c3da47", "pid": "040738418", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4073841-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040738418", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4073841-3", "source": "GND"}], "classification": [{"name": "Kroaten", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Kroatien-Slawonien-Dalmatien", "Dalmatien-Kroatien-Slawonien", "Nezavisna Država Hrvatska", "Narodna Republika Hrvatska", "Kraljevina Dalmacija, Hrvatska i Slavonija", "Kr. Hrv., Slav., Dalm.", "Hrv., Slav., Dalm.", "Kr. Hrv., Slav.", "Kraljevina Hrvatska-Slavonija", "Hrvatska-Slavonija", "Königreiche Kroatien-Slavonien", "Königreich Kroatien-Slavonien", "Kroatien-Slavonien", "Croatien-Slawonien", "Königreiche Croatien-Slawonien", "Königreich Croatien-Slawonien", "Vereinigte Königreiche Kroatien Slavonien Dalmatien", "Königreiche Kroatien Slavonien Dalmatien", "Banovina Hrvatska", "Kroatien und Slavonien", "República de Croacia", "HR", "Hrvatska", "Croatia", "SR Hrvatska", "Kraljevina Hrvatska, Slavonija, Dalmacija", "Hrvatska, Slavonija, Dalmacija", "Kraljevina Hrvatska, Slavonija", "Hrvatska i Slavonija", "NR Hrvatska", "Republika Hrvatska", "Socijalistička Republika Hrvatska", "Republic of Croatia", "Kraljevina Dalmacija, Hrvatska, Slavonija", "SR Hrvatska (Socijalistička republika Hrvatska)", "Kraljevina Hrvtska-Slavonija", "Poeple's Republic of Croatia", "Vlade Narodne Republike Hrvatske", "Volksrepublik Kroatien"], "authorized_access_point": "Kroatien"} 3 -2024-07-16 19:07:47.263364 2024-07-17 06:58:46.966949 f35f6dfc-f1e0-4b9d-b9e4-8881fb45eea9 {"md5": "0c483c72150f3504a18762224780e4e1", "pid": "106050104X", "note": [{"label": ["Internet - http://www.openstreetmap.org/way/43125912"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/106050104X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)106050104X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)106050104X", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Klingendes Fließ"], "authorized_access_point": "Klingendes Fliess"} 3 -2024-07-16 19:07:47.182576 2024-07-17 06:58:47.219568 c4311ad1-40c8-47e1-836f-f741ef9dff7a {"md5": "675687c82627b5efaa1b31065bd5ffd7", "pid": "1060501457", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060501457", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060501457", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060501457", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Windener Teich"} 3 -2024-07-16 19:07:47.091944 2024-07-17 06:58:47.533514 b2c03785-1065-4de6-9c91-340f9ae3ca39 {"md5": "e4b71568b989943369a62fedc7739d94", "pid": "1060501759", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Ihne_(Fluss)$vhier erwähnt"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060501759", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060501759", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060501759", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Wesebach (Fluss)"} 3 -2024-07-16 19:07:46.994353 2024-07-17 06:58:47.815738 2be47df5-43ef-4a7d-aa2b-ec0d98b6fc4b {"md5": "b932ee7a5a24821d9b67fd978e00608b", "pid": "1060501902", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Gettenbach$vhier erwähnt, Artikel zum Ort Gettenbach!"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060501902", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060501902", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060501902", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Gettenbach (Fluss)"} 3 -2024-07-16 19:07:46.906827 2024-07-17 06:58:48.081002 8fdb800e-ec19-40cd-8722-eba196ea8356 {"md5": "834e0a8f43e89e01ed303bae23dbf1ef", "pid": "106050216X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/106050216X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)106050216X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)106050216X", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Weinbach (Fluss)"} 3 -2024-07-16 19:07:46.822334 2024-07-17 06:58:48.34024 56424e76-8734-4b3d-9157-71684610a572 {"md5": "6440fafc2271ff803e967a1e80690065", "pid": "1060502372", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060502372", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060502372", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060502372", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Göstritzbach"} 3 -2024-07-16 19:07:46.745504 2024-07-17 06:58:48.629384 f020eb5e-b7a5-497d-ad7e-3c72894d62bb {"md5": "e69c273c202017a1b7201943b442ade3", "pid": "1060502585", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060502585", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060502585", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060502585", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Lauterwasserbach"} 3 -2024-07-16 20:07:12.229586 2024-07-17 06:57:50.046822 b54ef0ea-834b-49e0-8a0d-ab9945ceef46 {"md5": "ee94bdef08329ce88be6281c7f189e14", "pid": "040754685", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Korea"}], "related": [{"authorized_access_point": "Korea"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4075468-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040754685", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4075468-6", "source": "GND"}], "classification": [{"name": "Nordkoreaner", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Korea (Nord)", "Joseon (1945)", "Jo seon min ju ju eui in min gong hwa gug", "Chosŏn-Minjujuŭi-Inmin-Konghwaguk", "Choson̆ Minjujuuĭ In'min Konghwaguk", "Chosŏn (1945)", "Chosŏn-Inmin-Konghwaguk", "Nord-Korea", "Korea (Nordkorea)", "Demokratische Volksrepublik Korea", "Democratic People's Republic of Korea", "DPRK", "Koreanische Volksdemokratische Republik", "Volksdemokratische Republik (Nordkorea)", "Koreanische Demokratische Volksrepublik", "Demokratische Volksrepublik (Nordkorea)", "Koreanskaja Narodno-Demokratičeskaja Respublika", "KNDR", "Chosun Minshu-Chui Inmim Konghwa-Guk", "République populaire démocratique de Corée"], "authorized_access_point": "Nordkorea"} 3 -2024-07-16 19:07:48.297178 2024-07-17 06:58:43.393333 8aca9b92-0aec-4f2e-b341-e2e92dabb9a7 {"md5": "8987a46beeace5e12c94bdbd52e49aae", "pid": "105914249X", "note": [{"label": ["Geonames - http://www.geonames.org/2750597/mosbeek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/105914249X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)105914249X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)105914249X", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Mosbeek"} 3 -2024-07-16 19:07:48.12595 2024-07-17 06:58:44.041357 f009eb4a-2356-46c1-80a6-ea360e048857 {"md5": "d81b79b8de24b619b3525cdf6f5c8611", "pid": "1059357755", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059357755", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059357755", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059357755", "source": "GND"}], "authorized_access_point": "Nelson (Neuseeland) (Region)"} 3 -2024-07-16 19:07:48.034512 2024-07-17 06:58:44.320575 c59edbda-90e7-4f47-a6ef-04d731ebd401 {"md5": "c689f9d7b1209236011c88cedad63206", "pid": "1059359022", "note": [{"label": ["Internet - http://www.sprengenbeken.nl/images/15eerbeeksebeek.jpg"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059359022", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059359022", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059359022", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Coldenhovensebeek"} 3 -2024-07-16 19:07:47.9386 2024-07-17 06:58:44.590709 5d9e0960-69c4-4820-be45-b49f48323065 {"md5": "0235c5e16aa39e56da1cec0c94ce99b9", "pid": "1059376946", "note": [{"label": ["Internet - http://www.sprengenbeken.nl/images/15eerbeeksebeek.jpg"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059376946", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059376946", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059376946", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Gravinnebeek"} 3 -2024-07-16 19:07:47.847363 2024-07-17 06:58:44.907372 0f0154dd-6fbc-4c29-a0a6-d0512fcd232a {"md5": "453eef270097c7e2015ad0cfdb439ce9", "pid": "1059378396", "note": [{"label": ["Internet - http://www.sprengenbeken.nl/images/14voorstondsebeek.jpg"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059378396", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059378396", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059378396", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Voorstondse Beek"} 3 -2024-07-16 19:07:47.761529 2024-07-17 06:58:45.183019 e06a8a1b-aa19-4655-aef2-f9387343d4fa {"md5": "8b06809d6d950edd9e42e411e519afa5", "pid": "1059448831", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059448831", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059448831", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059448831", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Piwonkerbach"} 3 -2024-07-16 19:07:47.591906 2024-07-17 06:58:45.796162 c1ee8f32-cb7c-4967-8790-df180c5e337a {"md5": "895405dadb7bfaa01c4fd91917b5fb4f", "pid": "1060132206", "note": [{"label": ["Internet - http://www.anglermap.de/angeln/gewaessersteckbrief_angelkarte.php?id=2546"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rheda-Wiedenbrück"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060132206", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060132206", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060132206", "source": "GND"}], "classification": [{"name": "Baggersee", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Lintler See"], "authorized_access_point": "Linteler See"} 3 -2024-07-16 19:07:49.128956 2024-07-17 06:58:40.350514 4f0b5066-e3d6-420c-ac87-1852ca552df8 {"md5": "1c893002794f3184b63e2303c3703d47", "pid": "1058918176", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058918176", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058918176", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058918176", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Molecatense Beek"], "authorized_access_point": "Molecatensebeek"} 3 -2024-07-16 19:07:49.039411 2024-07-17 06:58:40.643017 18f2b4cd-6a4d-4f83-ba2a-1b24dfadeb7c {"md5": "b2b0592c5e94eb1fcfebe8102adef073", "pid": "1058919954", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Doornspijk"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058919954", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058919954", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058919954", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Papierbeek"], "authorized_access_point": "Papiermolenbeek (Doornspijk, Fluss)"} 3 -2024-07-16 19:07:48.950329 2024-07-17 06:58:40.925605 45a3e137-18c6-403b-8c2b-abe037d0229a {"md5": "e1ef867251735b947bc46df6ff6124d8", "pid": "1058928732", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058928732", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058928732", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058928732", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Staverdensche Beek"], "authorized_access_point": "Staverdense beek"} 3 -2024-07-16 19:07:48.861775 2024-07-17 06:58:41.182546 51810214-913a-4c24-84bc-19d1c167408f {"md5": "32d08f818ad50a0794d60da0e40391c9", "pid": "105892978X", "note": [{"label": ["Geonames - http://www.geonames.org/2751673/leuvenumse-beek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/105892978X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)105892978X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)105892978X", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Leuvenumse Beek"} 3 -2024-07-16 19:07:48.76308 2024-07-17 06:58:41.443508 eb0017b1-474b-43ef-9951-e6ba004bcbda {"md5": "2c26ad785431640e8744eb88192b9b4f", "pid": "1058939068", "note": [{"label": ["Geonames - http://www.geonames.org/2754096/hierdensche-beek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058939068", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058939068", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058939068", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Hierdense beek"], "authorized_access_point": "Hierdensche Beek"} 3 -2024-07-16 19:07:48.679566 2024-07-17 06:58:41.734097 6a90fd5c-fdc4-4f71-b359-5aec21c998d9 {"md5": "0793f7aa84293128ba6eb1059522083a", "pid": "1058973045", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058973045", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058973045", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058973045", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Schoonderbeek"} 3 -2024-07-16 19:07:48.592359 2024-07-17 06:58:42.00958 67751670-fc98-4509-8ff5-f4096bccb214 {"md5": "35158e4504e8e09622671c007c925eea", "pid": "1058984144", "note": [{"label": ["Geonames - http://www.geonames.org/2759405/barneveldsche-beek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058984144", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058984144", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058984144", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Grote Barneveldsebeek"], "authorized_access_point": "Barneveldsche Beek"} 3 -2024-07-16 19:07:48.502414 2024-07-17 06:58:42.294568 091d15db-50d6-4dd2-8993-7d57efc59701 {"md5": "b9f5f821704cd7451188edaba2b7ab20", "pid": "1058985299", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058985299", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058985299", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058985299", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Papiermolenbeekje"} 3 -2024-07-16 19:07:48.421506 2024-07-17 06:58:42.583941 4c1cae1d-c21a-4cba-9f0b-e5102d3a6753 {"md5": "e8ab8fe7ce4a33e8123207a69c5952f0", "pid": "1058986333", "note": [{"label": ["Geonames - http://www.geonames.org/2756000/esvelderbeek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058986333", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058986333", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058986333", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Esvelderbeek"} 3 -2024-07-16 20:06:47.178942 2024-07-17 06:57:50.873113 321667c2-4609-438c-b03c-4eb0f97f42ee {"md5": "9c61ed81b63d8b915770d64eba6bfd72", "pid": "040756130", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Österreich"}, {"authorized_access_point": "Ungarn"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4075613-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040756130", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4075613-0", "source": "GND"}], "variant_access_point": ["Österreichisch-Ungarische Monarchie", "Donaumonarchie", "Doppelmonarchie", "Habsburgerreich (1867-1918)", "Habsburgisches Reich (1867-1918)", "Habsburgermonarchie (1867-1918)", "Osztrák-Magyar Birodalom", "Monarchie Austro-Hongroise", "Empire Austro-Hongrois", "Austria-Hungary", "Austrian-Hungarian Monarchy", "Austrian-Hungarian Empire", "Austria-Hungría", "Austria-Ungheria", "Monarchia Austro-Ungarica", "Austro-We̜gry", "Österreich-Ungarische Monarchie", "Österreichisch-Ungarisches Reich", "Osztrák-Magyar Monarchia", "Autriche-Hongrie"], "authorized_access_point": "Österreich-Ungarn"} 3 -2024-07-16 19:07:49.837992 2024-07-17 06:58:37.841714 0e1da936-2ad7-424e-9c8c-0dfdf3089961 {"md5": "ee20b9d28546eda0491618a0b8f7fe4a", "pid": "1058664468", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058664468", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058664468", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058664468", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Groevenbeek"} 3 -2024-07-16 19:07:49.751961 2024-07-17 06:58:38.157357 493f99c4-4612-4128-9ecb-4a3257383aee {"md5": "46097f173a31a1f7121d86d59c33225e", "pid": "1058667343", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058667343", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058667343", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058667343", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Hattemse beek"], "authorized_access_point": "Hartense Molenbeek"} 3 -2024-07-16 19:07:49.670406 2024-07-17 06:58:38.435282 de925a33-7199-442b-b5ef-ac69cc9fbeb0 {"md5": "50c6113473f0fce95d47937835852fc8", "pid": "1058838512", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Vaassen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058838512", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058838512", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058838512", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Nieuwe Beek (Vaassen, Fluss)"} 3 -2024-07-16 19:07:49.582688 2024-07-17 06:58:38.696233 944bed2c-b674-4333-acbc-2273c9eb3194 {"md5": "c2a547f837f421e58a5cea5b6474456d", "pid": "1058840819", "note": [{"label": ["Geonames - http://www.geonames.org/2755688/geelmolensche-beek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058840819", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058840819", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058840819", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Geelmolense beek"], "authorized_access_point": "Geelmolensche Beek"} 3 -2024-07-16 19:07:49.495819 2024-07-17 06:58:38.964192 52c34024-7210-4614-b29f-bf1e35624b50 {"md5": "7695052cdfe119e5da15c821cf23abb1", "pid": "1058876872", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058876872", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058876872", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058876872", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Dorpse molenbeek", "Dorpermolenbeek"], "authorized_access_point": "Dorpse beek"} 3 -2024-07-16 19:07:49.419931 2024-07-17 06:58:39.227177 5a56958d-7366-4e7e-9ce2-fccec42d8547 {"md5": "02984c516dab5dd84122647d0464be76", "pid": "1058880373", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058880373", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058880373", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058880373", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Heerderbeek"} 3 -2024-07-16 19:07:49.366706 2024-07-17 06:58:39.49677 fb10d4c2-bd9b-45c5-8fcc-ab939b0f517f {"md5": "cc1d7af11533d5f3fc8309bfc4e09102", "pid": "1058890611", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058890611", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058890611", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058890611", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Middelste Heerderbeek"} 3 -2024-07-16 19:07:49.316187 2024-07-17 06:58:39.781049 3dc1c07d-225e-4d9f-9ece-a33d405c97c4 {"md5": "8d45ce50d7a115330178b2def9689920", "pid": "1058896318", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058896318", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058896318", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058896318", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Noordelijke Horsthoeker beek"], "authorized_access_point": "Noordelijke Horsthoekerbeek"} 3 -2024-07-16 19:08:17.077023 2024-07-17 06:57:52.454201 09c907d5-0495-416c-8a13-c0228e849842 {"md5": "f5475a04c1fcf2095e661f8c8fc93472", "pid": "040768996", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Russische SFSR"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4076899-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040768996", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4076899-5", "source": "GND"}], "variant_access_point": ["Rußland", "Krievija", "Federazione Russa", "RF", "Großrussland", "Großrußland", "Russia (-1917; 1992-)", "Rossijskaja Imperija", "Russie", "Empire de Russie", "Russian Federation", "Federacja Rosyjska", "Rosja", "Rossija", "Rossijskaja Federacija", "Russische Föderation", "RF (Rossija)", "Russia", "Russland (-1917 ; 1992-)", "Russisches Reich", "РФ", "Российская Федерация", "Российская Империя"], "authorized_access_point": "Russland"} 4 -2024-07-16 19:07:50.676983 2024-07-17 06:58:34.951237 7bbedda8-0823-43e3-b19a-912d815de585 {"md5": "05bdafd333de06471955f992f831d266", "pid": "1058463993", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Seehausen-Gottscheina"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058463993", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058463993", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058463993", "source": "GND"}], "variant_access_point": ["Gottscheina (Leipzig)"], "authorized_access_point": "Leipzig-Gottscheina"} 3 -2024-07-16 19:07:50.599491 2024-07-17 06:58:35.206996 1b187d43-c721-411c-b274-7e74b3d97b3a {"md5": "cbbf43c885ba98b30b0d3f1f3c21b915", "pid": "1058579045", "note": [{"label": ["Geonames - http://www.geonames.org/2759341/beekbergsche-beek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058579045", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058579045", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058579045", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Beekbergsebeek"], "authorized_access_point": "Beekbergsche Beek"} 3 -2024-07-16 19:07:50.506766 2024-07-17 06:58:35.475896 172bae23-e0fa-4215-86f7-eca0e16de771 {"md5": "a543b1e1fa43ba36ccc56f6c1c2d96a0", "pid": "1058583018", "note": [{"label": ["Geonames - http://www.geonames.org/2751520/loenensche-beek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058583018", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058583018", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058583018", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Loenensebeek"], "authorized_access_point": "Loenensche Beek"} 3 -2024-07-16 19:07:50.433872 2024-07-17 06:58:35.758197 d0c0ebfa-8713-4db9-9d4f-2ebe2995e167 {"md5": "405d5485e16de0788ea31fcfe7399ac1", "pid": "1058616579", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058616579", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058616579", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058616579", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Zilvensebeek"} 3 -2024-07-16 19:07:50.383929 2024-07-17 06:58:36.105543 4f787d32-1171-4c99-bcbc-d4bb71137133 {"md5": "13e9ab2f60b3fec62c9495588c889f36", "pid": "1058616684", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058616684", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058616684", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058616684", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Strobroeksbeek"} 3 -2024-07-16 19:07:50.302322 2024-07-17 06:58:36.390944 5b29e999-e7c6-4691-9e0b-17ab1f991b41 {"md5": "2287baf933c2298531e3a9934608bf4b", "pid": "1058622773", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058622773", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058622773", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058622773", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Wittebeek"} 3 -2024-07-16 19:07:50.197145 2024-07-17 06:58:36.698144 ff1e9db5-a2fd-44cd-90e0-ce18f62a336e {"md5": "b802d7043b1dad0f9e5824d444f35c78", "pid": "105863982X", "note": [{"label": ["Geonames - http://www.geonames.org/2748799/paalbeek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/105863982X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)105863982X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)105863982X", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Paalbeek"} 3 -2024-07-16 19:07:50.108772 2024-07-17 06:58:36.966354 5c56eda3-f2fc-4298-bcad-f5efdad72055 {"md5": "ef09cf2f2b47c6327a7e5a3f16e1a525", "pid": "1058639919", "note": [{"label": ["Geonames - http://www.geonames.org/2746209/tongerensche-beek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058639919", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058639919", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058639919", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Tongerensche beek"], "authorized_access_point": "Tongerensche Beek"} 3 -2024-07-16 19:08:16.265774 2024-07-17 06:58:02.471654 037dcbbb-b32a-45a1-b9e9-c256120020c7 {"md5": "beb195602f232a21f444cfcf445035f9", "pid": "040967689", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=208609237"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Region Hovedstaden"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4096768-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040967689", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4096768-2", "source": "GND"}], "classification": [{"name": "Amt", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Amt Kopenhagen", "Københavns Amt", "Kopenhagen (Amt)", "København (Amt)", "Københavns Amtskommune"], "authorized_access_point": "Amt København"} 3 -2024-07-16 19:07:51.553094 2024-07-17 06:58:31.833035 c79cda77-c53f-4928-9a37-409886f38113 {"md5": "d577618063d1bb4aaa4ae2e50fdc868e", "pid": "1054611041", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1054611041", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1054611041", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1054611041", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Giersdorfer Wasser"} 3 -2024-07-16 19:07:51.482816 2024-07-17 06:58:32.12228 af0f642c-30ca-4a09-89bb-568d2f1903fe {"md5": "e29f6f43c94fbbd445de2fc7fc749c5b", "pid": "1054631026", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1054631026", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1054631026", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1054631026", "source": "GND"}], "classification": [{"name": "Bengalen", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Bengal"], "authorized_access_point": "Bengalen"} 3 -2024-07-16 19:07:51.36661 2024-07-17 06:58:32.716306 46bafe21-da38-42a7-8ac7-df4d639f762c {"md5": "7a7ae4ef9e6df9e143b720a137911131", "pid": "1055068716", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Kosov%C3%BD_potok"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1055068716", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1055068716", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1055068716", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Kosí potok", "Amselbach"], "authorized_access_point": "Kosový potok"} 3 -2024-07-16 19:07:51.279762 2024-07-17 06:58:33.025556 2249c6b8-00b0-46fb-8bc2-b2c13bf4f7e0 {"md5": "32d3255c5df0211fee86a36479ab6e53", "pid": "1056973714", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Sauberg_(Erzgebirge)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Erzgebirge"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1056973714", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1056973714", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1056973714", "source": "GND"}], "classification": [{"name": "Berg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Sauberg (Erzgebirge, Berg)"} 3 -2024-07-16 19:07:51.185111 2024-07-17 06:58:33.277973 632469b5-b4db-4b70-b222-efdec4097ece {"md5": "1dbcfaa2ab66e64560befe16584e1258", "pid": "1057942928", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Grünberg (Landkreis Gießen)"}, {"authorized_access_point": "Lumda"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1057942928", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1057942928", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1057942928", "source": "GND"}], "variant_access_point": ["Grünberg (Landkreis Gießen-Lumda)", "Lumda (Grünberg-Lumda)"], "authorized_access_point": "Grünberg-Lumda"} 3 -2024-07-16 19:07:51.010949 2024-07-17 06:58:33.863781 611b9eac-7032-4dfd-a782-570ff37503af {"md5": "cef58e35ef4054abc8ec791227cae9f1", "pid": "1058395726", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058395726", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058395726", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058395726", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Ugchelsebeek"} 3 -2024-07-16 19:07:50.931291 2024-07-17 06:58:34.120211 1456c17a-7535-45a6-bbec-11182d5e0a99 {"md5": "d813c55ff918a76e4a98a1ccad029050", "pid": "1058460293", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058460293", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058460293", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058460293", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Winkewijert"} 3 -2024-07-16 19:08:13.667652 2024-07-17 06:58:15.391896 f9f73e07-b23c-4aaf-8782-7a7c7e9d485f {"md5": "722057c896453e0b7484114d56e2ca5a", "pid": "042778352", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Kart%C3%A4userkirche_(K%C3%B6ln)&oldid=237820855"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Köln"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4277835-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042778352", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4277835-9", "source": "GND"}], "classification": [{"name": "Klosterkirche", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Sankt Barbara (Köln)", "Evangelische Pfarrkirche St. Barbara (Köln)", "Evangelische Pfarrkirche Sankt Barbara (Köln)"], "authorized_access_point": "Kartäuserkirche (Köln)"} 3 -2024-07-16 19:07:53.54463 2024-07-17 06:58:24.968557 9b9758d3-20ee-4a43-a86e-f25b13db7276 {"md5": "39b25e757d39b37b479bea5fdb2bb674", "pid": "1028231660", "note": [{"label": ["wikipedia - https://en.wikipedia.org/w/index.php?title=Upyt%C4%97&oldid=1181420912"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kreis Panevėžys"}, {"authorized_access_point": "Upytė"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1028231660", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1028231660", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1028231660", "source": "GND"}], "classification": [{"name": "Amtsbezirk", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Upytės seniūnija"], "authorized_access_point": "Amtsbezirk Upytė"} 3 -2024-07-16 19:07:52.226048 2024-07-17 06:58:29.555951 25c05139-5146-4210-84dd-e08e1ccc5253 {"md5": "1ca6e8fded7e4a74ab81ccd894b4711f", "pid": "105366916X", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Collegium_St._Hieronymi"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Dillingen a.d. Donau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/105366916X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)105366916X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)105366916X", "source": "GND"}], "classification": [{"name": "Kollegiengebäude", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Gebäude des ehemaligen Jesuitenkollegs (Dillingen a.d. Donau)"], "authorized_access_point": "Kollegiengebäude des Collegium Sancti Hieronymi (Dillingen a.d. Donau)"} 3 -2024-07-16 19:07:52.141441 2024-07-17 06:58:29.849782 3850ac18-21ae-4a2f-a053-56d44d617d7d {"md5": "e3acfd82d232fd0b3988037cc1faacad", "pid": "1053694857", "note": [{"label": ["Private Seiten - http://www.schlossgarten-oldenburg.de"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Oldenburg (Oldenburg)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1053694857", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1053694857", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1053694857", "source": "GND"}], "classification": [{"name": "Landschaftsgarten", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Schlosspark Oldenburg (Oldenburg (Oldenburg))"], "authorized_access_point": "Schlossgarten Oldenburg (Oldenburg (Oldenburg))"} 3 -2024-07-16 19:07:51.979128 2024-07-17 06:58:30.512984 16ab6415-1285-40a5-b85e-3ba55a629462 {"md5": "67f227e86cbeb7127f141649a10bcfb0", "pid": "105382467X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/105382467X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)105382467X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)105382467X", "source": "GND"}], "authorized_access_point": "Vogtländische Schweiz"} 3 -2024-07-16 19:07:51.808715 2024-07-17 06:58:31.003118 a9c0387a-3564-432f-ad50-bfad2619cfbc {"md5": "d790beba43cb017b86a98cf1a957fdaa", "pid": "1054036489", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1054036489", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1054036489", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1054036489", "source": "GND"}], "authorized_access_point": "Bruntál (Region)"} 3 -2024-07-16 19:07:51.724302 2024-07-17 06:58:31.293651 a40646f3-c04a-4597-9c65-251a1a5349a4 {"md5": "da71a4e1f705e79dd6b908b9ee19ed2b", "pid": "1054382255", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1054382255", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1054382255", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1054382255", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Krauthausener Mühlenteich"], "authorized_access_point": "Krauthausener Teich"} 3 -2024-07-16 19:07:51.890539 2024-07-17 06:58:30.75486 78463071-c8a7-4aca-94be-fe5d3ea4bf2d {"md5": "40c375b853a99a1edef9fff95e5eab97", "pid": "1054036322", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1054036322", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1054036322", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1054036322", "source": "GND"}], "variant_access_point": ["Krnovsko", "Jägerndorf (Region)", "Śląsk Karniowski"], "authorized_access_point": "Krnov (Region)"} 3 -2024-07-16 19:07:52.980564 2024-07-17 06:58:26.911226 1222ec9e-1c24-4cd3-913e-b2bec42b3bee {"md5": "a19d2abbb4cb82132f830f716e96827f", "pid": "1036573141", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1036573141", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1036573141", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1036573141", "source": "GND"}], "authorized_access_point": "Friedrichslohra und Amtlohra (Region)"} 3 -2024-07-16 19:07:52.815644 2024-07-17 06:58:27.550216 bc943bfe-a0fb-49f7-aa05-5938f6c6c13d {"md5": "87670fe5e3edabecb5a3abe588a24ac4", "pid": "1038831628", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Immichenhain"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Ottrau-Immichenhain"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1038831628", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1038831628", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1038831628", "source": "GND"}], "variant_access_point": ["Imchenhain"], "authorized_access_point": "Immichenhain"} 3 -2024-07-16 19:07:52.641967 2024-07-17 06:58:28.144426 89da5953-5944-4c8a-a627-909187cd34bd {"md5": "aa31a5f02d0291e09beb57ce923a3960", "pid": "1051746663", "note": [{"label": ["Kunstdenkmäler CH"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Zürich"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1051746663", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1051746663", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1051746663", "source": "GND"}], "classification": [{"name": "Seidenindustrie", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Fabrikgebäude", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Vereinsgebäude", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Geschäftshaus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Alt Seidenhof (Zürich)"], "authorized_access_point": "Alter Seidenhof (Zürich)"} 3 -2024-07-16 19:07:52.556096 2024-07-17 06:58:28.392165 2a3ffa5b-e915-4d32-b953-033b4ed0a983 {"md5": "b99f3c32e15e6da8ba5087144b5d68cd", "pid": "1053460856", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rhamnus (Attika)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1053460856", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1053460856", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1053460856", "source": "GND"}], "classification": [{"name": "Kultstätte", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Thesmophorion (Rhamnus, Attika)"} 3 -2024-07-16 19:07:52.472963 2024-07-17 06:58:28.687604 4762aae2-039a-434b-ac0c-fd10dfa7a10e {"md5": "0db58bfd3ff1712fb8721bd3201c997b", "pid": "1053495382", "note": [{"label": ["Wikipedia unter Süssenguth, Georg - http://de.wikipedia.org/wiki/Georg_S%C3%BC%C3%9Fenguth"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Hamburg"}, {"authorized_access_point": "Hamburg-Altona"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1053495382", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1053495382", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1053495382", "source": "GND"}], "classification": [{"name": "Museumsbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Museumsbau Museum Altona (Hamburg)", "Museumsgebäude des Museums Altona (Hamburg-Altona)"], "authorized_access_point": "Museumsbau des Altonaer Museums (Hamburg)"} 3 -2024-07-16 19:07:52.417629 2024-07-17 06:58:28.992288 7023000e-559d-44bb-b83a-bc797cf379e5 {"md5": "65236b022414ae9a09e0e579fce27032", "pid": "1053578571", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Augsburg"}], "related": [{"authorized_access_point": "Fuggerhäuser"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1053578571", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1053578571", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1053578571", "source": "GND"}], "classification": [{"name": "Kabinett", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Studiolo", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Fuggerhäuser (Badezimmer)", "Fuggerhäuser Augsburg, Badestuben"], "authorized_access_point": "Fuggerhäuser (Badstuben)"} 3 -2024-07-16 19:07:52.320829 2024-07-17 06:58:29.272422 90d38804-6c3a-4804-9eb8-9aadbff025f9 {"md5": "82c87e1a11121e5dbdc9bcb2f8f008d3", "pid": "1053585039", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Lübeck"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1053585039", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1053585039", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1053585039", "source": "GND"}], "classification": [{"name": "Giebelhaus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Bürgerhaus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Dielenhaus Fleischhauerstraße 79 (Lübeck)"], "authorized_access_point": "Fleischhauerstraße 79 (Lübeck)"} 3 -2024-07-16 19:07:50.769645 2024-07-17 06:58:34.672829 a3ec97a5-cba9-4629-821a-269e3b314ddd {"md5": "4e65375568fa5301755f4baad34a7165", "pid": "1058463896", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Hohenheida"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Seehausen-Hohenheida"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058463896", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058463896", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058463896", "source": "GND"}], "variant_access_point": ["Hohenheida (Leipzig)"], "authorized_access_point": "Leipzig-Hohenheida"} 3 -2024-07-16 19:07:52.729919 2024-07-17 06:58:27.849726 605be72f-525e-4eb7-9cba-0453a4fd22b8 {"md5": "94ddda81e4db64ddad6e5542a23d2a4f", "pid": "1044268069", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kreis Panevėžys"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1044268069", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1044268069", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1044268069", "source": "GND"}], "variant_access_point": ["Juodupe", "Pojedupie"], "authorized_access_point": "Juodupė"} 3 -2024-07-16 19:07:53.499727 2024-07-17 06:58:25.240555 fd7df2b6-d012-47e5-b9e6-f7393e5a3bfb {"md5": "f02354a66646a5bfa84787334bfbb149", "pid": "1029388334", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Neureudnitz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1029388334", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1029388334", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1029388334", "source": "GND"}], "variant_access_point": ["Neureudnitz (Leipzig)"], "authorized_access_point": "Leipzig-Neureudnitz"} 3 -2024-07-16 19:07:53.436487 2024-07-17 06:58:25.498408 8024be1c-a765-48c7-8bd0-e0ffc4e53562 {"md5": "dfe8ba029aa8694d1813e0ebb8725b18", "pid": "1029389233", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Neusellerhausen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1029389233", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1029389233", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1029389233", "source": "GND"}], "variant_access_point": ["Neusellerhausen (Leipzig)"], "authorized_access_point": "Leipzig-Neusellerhausen"} 3 -2024-07-16 19:07:53.350206 2024-07-17 06:58:25.760427 976cebd1-5b58-479d-a607-e99fccdd236f {"md5": "b02c6f387b41edc657f29d3b7ae09674", "pid": "1029389896", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Sellerhausen&oldid=231774300"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Sellerhausen"}, {"authorized_access_point": "Leipzig-Sellerhausen-Stünz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1029389896", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1029389896", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1029389896", "source": "GND"}], "variant_access_point": ["Sellerhausen (Leipzig)"], "authorized_access_point": "Leipzig-Sellerhausen"} 3 -2024-07-16 19:07:53.243412 2024-07-17 06:58:26.019899 1138a552-22dd-42f0-ab13-105924f36d4c {"md5": "e9572c2a4f24d4cef7a7f1677fc15a25", "pid": "1031571922", "note": [{"label": ["Homepage - http://www.gelgaudiskis.lt/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1031571922", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1031571922", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1031571922", "source": "GND"}], "variant_access_point": ["Gelgaudiskis", "Giełgudyszki", "Gelʹgudiški"], "authorized_access_point": "Gelgaudiškis"} 3 -2024-07-16 19:07:53.152877 2024-07-17 06:58:26.319029 bb13ee95-7f84-4762-b35d-5c222b11cd77 {"md5": "4e465c09f06ac6c821e50424269fef0f", "pid": "1032436034", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Nümbrecht"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1032436034", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1032436034", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1032436034", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Ev. Kirche Nümbrecht (Nümbrecht)"], "authorized_access_point": "Evangelische Kirche Nümbrecht (Nümbrecht)"} 3 -2024-07-16 19:07:53.065348 2024-07-17 06:58:26.630577 a1817c49-e136-4a6c-8bc1-8e5f3a127360 {"md5": "5a56aafcbf8e0b995bd8bfa5d8347169", "pid": "1035487640", "note": [{"label": ["Internet - https://www.salzkoerner.de/?page_id=525"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Waldbreitbach"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1035487640", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1035487640", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1035487640", "source": "GND"}], "classification": [{"name": "Basilika", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Kath. Pfarrkirche Mariä Himmelfahrt (Waldbreitbach)", "Katholische Pfarrkirche Mariä Himmelfahrt (Waldbreitbach)", "Pfarrkirche Maria Himmelfahrt (Waldbreitbach)", "Kirche Maria Himmelfahrt (Waldbreitbach)", "Mariä Himmelfahrt (Waldbreitbach)"], "authorized_access_point": "Maria Himmelfahrt (Waldbreitbach)"} 3 -2024-07-16 19:07:49.918665 2024-07-17 06:58:37.569653 115fcb8f-1ca1-473c-b5c8-838db79a6ac5 {"md5": "c08a38f2fbac1a9e4556dff40c1df048", "pid": "1058661396", "note": [{"label": ["Geonames - http://www.geonames.org/6951330/nijmolense-beek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058661396", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058661396", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058661396", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Nijmolense beek", "Nijmolenschebeek"], "authorized_access_point": "Nijmolense Beek"} 3 -2024-07-16 19:07:47.328511 2024-07-17 06:58:46.633003 be34b22c-f1f6-43bb-b926-0dcae5a577dd {"md5": "59ed00160f68f429169e9ce3a0d05602", "pid": "1060419319", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Konstanzer_Ach#Anker:Gunzesrieder_Ach"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060419319", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060419319", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060419319", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Konstanzer Ach"} 3 -2024-07-16 19:07:46.461757 2024-07-17 06:58:49.43386 bb088e04-dcb0-4e58-8066-60d392bf69fe {"md5": "63d108bf71364e4a7e15c36ffc89ad59", "pid": "1060503166", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060503166", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060503166", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060503166", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Gränzbach"} 3 -2024-07-16 19:07:54.706339 2024-07-17 06:58:21.22992 58162bdc-95fe-4cfe-9743-f39c6404b57f {"md5": "9cf478f42c77237bb955c138a430ae00", "pid": "1020865237", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7860429-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1020865237", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7860429-1", "source": "GND"}], "variant_access_point": ["Ignalinos kraštas", "Ignalinskij kraj"], "authorized_access_point": "Ignalina (Region)"} 3 -2024-07-16 19:07:54.619688 2024-07-17 06:58:21.476667 eedfe271-49c1-41bf-8e2d-58811cdbabe0 {"md5": "60022fdb51b9b3e0e9c80d18750135a3", "pid": "1020865318", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7860430-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1020865318", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7860430-8", "source": "GND"}], "authorized_access_point": "Ignalina"} 3 -2024-07-16 19:07:54.545221 2024-07-17 06:58:21.759587 d162af90-abf5-4415-a940-6388276a27ca {"md5": "08d370233ce4d254e8f9e899634a739d", "pid": "1020897236", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7860645-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1020897236", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7860645-7", "source": "GND"}], "classification": [{"name": "Kreis", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Varėnos rajonas", "Varėna (Kreis)"], "authorized_access_point": "Kreis Varėna"} 3 -2024-07-16 19:07:54.4894 2024-07-17 06:58:22.032547 8d21faa7-02af-47d9-8d96-29402fde1728 {"md5": "31cc71f45761b9f83b9597831644fab0", "pid": "1020897325", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7860647-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1020897325", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7860647-0", "source": "GND"}], "classification": [{"name": "Kreis", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Jonavas rajonas", "Jonava (Kreis)"], "authorized_access_point": "Kreis Jonava"} 3 -2024-07-16 19:07:54.401118 2024-07-17 06:58:22.284386 570aef3f-74ce-446c-bf21-b9c0a01cd049 {"md5": "bd1e906c23c587d8c62475d35a01c55a", "pid": "1020911026", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7860862-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1020911026", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7860862-4", "source": "GND"}], "authorized_access_point": "Ke̜staičiai"} 3 -2024-07-16 19:07:54.313699 2024-07-17 06:58:22.538798 b42a9118-dee1-48f1-8367-2239f0c44f38 {"md5": "27e60a7c75968f7c9d124336ddbc23bd", "pid": "1020911344", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7860874-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1020911344", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7860874-0", "source": "GND"}], "classification": [{"name": "Kreis", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Radviliškio rajonas", "Radviliškis (Kreis)"], "authorized_access_point": "Kreis Radviliškis"} 3 -2024-07-16 19:07:54.230018 2024-07-17 06:58:22.80811 b9090f6a-6c38-4706-8e42-73e742266fa7 {"md5": "142f50fa220f2209c6ccb198c6830150", "pid": "1020911387", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7860875-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1020911387", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7860875-2", "source": "GND"}], "authorized_access_point": "Kuršiai (Kelme)"} 3 -2024-07-16 19:07:54.142072 2024-07-17 06:58:23.071876 a097bf96-0aa3-475b-ab73-873846f3573b {"md5": "20d31449a5eec249b674abf6383cc715", "pid": "1021056154", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7861291-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1021056154", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7861291-3", "source": "GND"}], "classification": [{"name": "Tal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Wadi Al-Aqiq", "Wadi Al-Aqeeq"], "authorized_access_point": "Wādī al-ʿAqīq"} 3 -2024-07-16 19:07:54.056977 2024-07-17 06:58:23.34129 4f73ae18-8681-4cb4-8e66-8e3af7c6a69f {"md5": "39f0fa4071b9dc00395a25bc11c42bab", "pid": "1021112216", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7861831-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1021112216", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7861831-9", "source": "GND"}], "classification": [{"name": "Amt", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Marcinkoniu̜ seniūnija", "Marcinkonys (Amt)"], "authorized_access_point": "Amt Marcinkonys"} 3 -2024-07-16 19:07:53.963391 2024-07-17 06:58:23.61553 e65b472c-2be6-4c04-977a-0b4f04a4c6e4 {"md5": "10632df39552faf1b9535852170e3b1a", "pid": "1021112518", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7861835-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1021112518", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7861835-6", "source": "GND"}], "authorized_access_point": "Karklėnai"} 3 -2024-07-16 19:07:53.883493 2024-07-17 06:58:23.874422 8ca0e3de-ff99-43f3-970b-fce986404f5c {"md5": "a818c8285db798c940b085bf885cb658", "pid": "1021112577", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7861838-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1021112577", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7861838-1", "source": "GND"}], "variant_access_point": ["Kaltanenay", "Kaltinėnai", "Kołtyniany", "Koltynyany"], "authorized_access_point": "Kaltanėnai"} 3 -2024-07-16 19:07:45.375086 2024-07-17 06:58:53.10313 bf9f3ed2-2b67-4819-958a-33b077aba771 {"md5": "6f79fb583bbb5a0944c0e6069fc301ca", "pid": "1064960243", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Hirschfeld-Kleinpösna"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1064960243", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1064960243", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1064960243", "source": "GND"}], "variant_access_point": ["Kleinpösna (Leipzig)"], "authorized_access_point": "Leipzig-Kleinpösna"} 3 -2024-07-16 19:07:55.648014 2024-07-17 07:01:28.207224 7cd47c1d-270c-4bd5-97e7-0a333660c82d {"md5": "dd65ed460b2e069e667983a31ecf2e10", "pid": "996155910", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Chocian%C3%B3w&oldid=245141308"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Chocianów"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16019456-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)996155910", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)16019456-8", "source": "GND"}], "authorized_access_point": "Kotzenau"} 3 -2024-07-16 19:07:55.246269 2024-07-17 06:58:19.610766 0aadb2cb-cb68-4cd3-8e29-502435e26a80 {"md5": "bc91406084d82f45749a373c16166eb9", "pid": "1009707922", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Heringsdorf (Kreis Ostholstein)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16098098-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1009707922", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)16098098-7", "source": "GND"}], "variant_access_point": ["Siggen (Heringsdorf, Kreis Ostholstein)"], "authorized_access_point": "Heringsdorf-Siggen"} 3 -2024-07-16 19:07:55.064329 2024-07-17 06:58:20.117623 ce792a6c-8789-40ed-a481-ba706f4f9b16 {"md5": "58d8a649bb7f2eb3b26d2ef139eecdf2", "pid": "1010249460", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7736522-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1010249460", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7736522-7", "source": "GND"}], "variant_access_point": ["Dihok", "Dahūk", "Duhūk", "Dihuk", "Dahok", "Dahuk", "Duhok", "Dohuk", "دهوك"], "authorized_access_point": "Dihōk"} 3 -2024-07-16 19:07:44.29475 2024-07-17 06:58:56.734169 d9d92dd0-af3a-4064-a36e-effd9c2c770e {"md5": "b1c8768356723e2571a8dbac244abd63", "pid": "107283314X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Hausen am Albis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/107283314X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)107283314X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)107283314X", "source": "GND"}], "classification": [{"name": "Kurgebäude", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Heilbad", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Kaltwasser-Heilanstalt Albisbrunn (Hausen am Albis)", "Wasser-Heil-Anstalt Albisbrunn (Hausen am Albis)", "Bad Albisbrunn (Hausen am Albis)"], "authorized_access_point": "Wasserheilanstalt Albisbrunn (Hausen am Albis)"} 3 -2024-07-16 19:07:56.577459 2024-07-17 07:01:25.031168 de438acf-81bf-4a06-958a-f3923be628a6 {"md5": "d3391cbb9eaf7b094e253bb46c1e8d2f", "pid": "978966228", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Herzogtum Preußen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7521235-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)978966228", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7521235-3", "source": "GND"}], "variant_access_point": ["Preußen (Herzogtum) (Ost)"], "authorized_access_point": "Herzogtum Preußen (Ost)"} 3 -2024-07-16 19:07:55.421897 2024-07-17 06:58:19.042029 a1099e96-ade3-4ba2-a0a0-c4cd57a84a92 {"md5": "62807d461396206ccdd0e2ae3181336e", "pid": "1002427517", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Kreis-Direktion Leipzig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16065257-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1002427517", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)16065257-1", "source": "GND"}], "variant_access_point": ["Leipziger Creyß", "Leipzigischer Creyß", "Leipzigischer Kreis", "Leipziger Kreis", "Forum für Wissenschaft und Kunst"], "authorized_access_point": "Leipziger Creis"} 3 -2024-07-16 19:07:55.152021 2024-07-17 06:58:19.860771 04a77b0f-89c8-4a11-b562-f9da18723cec {"md5": "14af0bd095f98c9bad0d7def3f0b1016", "pid": "1009847430", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Holzhausen_II&oldid=146144601"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Hille"}, {"authorized_access_point": "Holzhausen II"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7733190-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1009847430", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7733190-4", "source": "GND"}], "authorized_access_point": "Hille- Holzhausen II"} 3 -2024-07-16 19:07:55.573944 2024-07-17 07:01:28.502047 3e135bb5-550c-454b-a2ee-ed9e42d6db9e {"md5": "656a3d9bc3267e0deba1659c81203b3a", "pid": "996588051", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Böhlitz-Ehrenberg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7672378-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)996588051", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7672378-1", "source": "GND"}], "variant_access_point": ["Böhlitz-Ehrenberg (Leipzig)"], "authorized_access_point": "Leipzig-Böhlitz-Ehrenberg"} 3 -2024-07-16 19:07:56.393693 2024-07-17 07:01:25.608373 b02705ce-351b-48ce-aee5-3f4709485111 {"md5": "f9c413f48ca1b0aedd91d5e66dcd6839", "pid": "980891248", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10145481-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)980891248", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)10145481-8", "source": "GND"}], "classification": [{"name": "Bezirk", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Bezirk Judenburg", "Judenburg (Politischer Bezirk)"], "authorized_access_point": "Politischer Bezirk Judenburg"} 3 -2024-07-16 19:07:56.308125 2024-07-17 07:01:25.911032 d79ef32f-6801-45cd-b6a4-b21be803c33c {"md5": "b93a96e377c2d83cd605f33de9427342", "pid": "984645942", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10172109-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)984645942", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)10172109-2", "source": "GND"}], "authorized_access_point": "Leipzig-Südost"} 3 -2024-07-16 19:07:56.119081 2024-07-17 07:01:26.46677 20846c84-a01e-40a0-9257-115ea56bab49 {"md5": "a516f74101379d425c3e289d1fc9c063", "pid": "98831326X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Heringsdorf (Seebad)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7608819-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)98831326X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7608819-4", "source": "GND"}], "classification": [{"name": "Pavillon", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Ausstellungsbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Kunstpavillon (Heringsdorf, Seebad)"} 3 -2024-07-16 19:07:55.824005 2024-07-17 07:01:27.642773 90696ea3-bf70-41a0-accd-e1187f3b3ebc {"md5": "44f916c5ccb5f36de416610cdd977b43", "pid": "994536666", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Zuckelhausen&oldid=234613791"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Holzhausen-Zuckelhausen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7660336-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)994536666", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7660336-2", "source": "GND"}], "variant_access_point": ["Zuckelhausen (Leipzig)"], "authorized_access_point": "Leipzig-Zuckelhausen"} 3 -2024-07-16 19:07:55.734963 2024-07-17 07:01:27.942615 bb9a7318-ad01-480d-a198-198dad8d51b8 {"md5": "2b74334de1abd1fb9f101e69642194d4", "pid": "995191506", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Grünberg (Landkreis Gießen)"}, {"authorized_access_point": "Queckborn"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16014739-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)995191506", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)16014739-6", "source": "GND"}], "variant_access_point": ["Grünberg (Landkreis Gießen-Queckborn)", "Queckborn (Grünberg-Queckborn)"], "authorized_access_point": "Grünberg-Queckborn"} 3 -2024-07-16 19:07:55.920532 2024-07-17 07:01:27.070257 101f6b76-7d59-4564-b6c1-42afdb368085 {"md5": "8513c7521182336433bfc40af6f838bb", "pid": "992346371", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7642802-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992346371", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7642802-3", "source": "GND"}], "variant_access_point": ["Dubc", "Rietschen-Daubitz"], "authorized_access_point": "Daubitz"} 3 -2024-07-16 19:07:57.299372 2024-07-17 07:01:22.358542 046ff7e1-00d5-41b9-8ba3-fcfafd2b1b30 {"md5": "43e63aa0e292f04f06f0078500d09cda", "pid": "973040149", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4806060-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)973040149", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4806060-4", "source": "GND"}], "authorized_access_point": "Riad (Region)"} 3 -2024-07-16 19:07:57.215196 2024-07-17 07:01:22.644987 20bc6cdc-cb4f-4595-907c-be0294ce8176 {"md5": "30cd14cff92fa7d9e47570f47c77f436", "pid": "973066245", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Saudi-Arabien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4806334-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)973066245", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4806334-4", "source": "GND"}], "authorized_access_point": "Saudi-Arabien (Nord)"} 3 -2024-07-16 19:07:57.13402 2024-07-17 07:01:22.953321 95a2d795-20e2-4bcf-882a-d4f8c947f7c8 {"md5": "da15375a06a709dd5d5ffe618d1fabce", "pid": "973066261", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Saudi-Arabien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4806336-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)973066261", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4806336-8", "source": "GND"}], "authorized_access_point": "Saudi-Arabien (Nordost)"} 3 -2024-07-16 19:07:57.049517 2024-07-17 07:01:23.249349 8044bad9-89fe-47e3-b994-3c9bac1ceb5f {"md5": "c7db19dd69ee1d26c8adf06cc9441d7a", "pid": "973071648", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4806526-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)973071648", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4806526-2", "source": "GND"}], "authorized_access_point": "Rayyis (Region)"} 3 -2024-07-16 19:07:56.867686 2024-07-17 07:01:23.837314 979030bf-ef46-4421-ae43-a17f59ef9329 {"md5": "3beef116753801a76a5f23f1961ac443", "pid": "974245747", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Amt Haderslev"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4821311-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)974245747", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4821311-1", "source": "GND"}], "variant_access_point": ["Amt Hadersleben (West)", "Hadersleben (Amt) (West)"], "authorized_access_point": "Amt Haderslev (West)"} 3 -2024-07-16 19:07:56.784108 2024-07-17 07:01:24.123965 78cb2e58-7ccf-4221-a8d4-a05d71958421 {"md5": "9d509bc21475c8a34f0e10e6514e6dee", "pid": "975328573", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Heringsdorf"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Ahlbeck (Seebad)"}, {"authorized_access_point": "Bansin"}, {"authorized_access_point": "Heringsdorf (Seebad)"}, {"authorized_access_point": "Heringsdorf (Seebad)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10106723-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)975328573", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)10106723-9", "source": "GND"}], "variant_access_point": ["Gemeinde Dreikaiserbäder"], "authorized_access_point": "Dreikaiserbäder"} 3 -2024-07-16 19:07:56.698836 2024-07-17 07:01:24.40098 301ce552-ea06-47ab-be58-161530b510f8 {"md5": "07963c19369221e3586fc83f4d2dcbb3", "pid": "975958925", "note": [{"label": ["Homepage - http://www.baeriswil.ch"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Bern"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4837436-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)975958925", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4837436-2", "source": "GND"}], "variant_access_point": ["Gemeinde Bäriswil", "Einwohnergemeinde Bäriswil"], "authorized_access_point": "Bäriswil (Bern)"} 3 -2024-07-16 19:07:56.627967 2024-07-17 07:01:24.730011 554212c1-affd-412b-8c0f-567ed3e4a828 {"md5": "188d56c504a7a5d7900c114a48690dc2", "pid": "978923855", "note": [{"label": ["Homepage - http://www.leipzig-lexikon.de/KOMMGLIE/KK_KH.HTM"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10131913-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)978923855", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)10131913-7", "source": "GND"}], "variant_access_point": ["Knautkleeberg-Knauthain"], "authorized_access_point": "Leipzig-Knautkleeberg-Knauthain"} 3 -2024-07-16 19:07:57.984324 2024-07-17 07:01:19.364349 85a4031f-82ce-4c9b-8d50-6c5b7f019d3c {"md5": "507e14607c699f2944cfc2d4006baff2", "pid": "967681952", "note": [{"label": ["Homepage - https://www.oetigheim.de/", "Wikipedia - https://de.wikipedia.org/w/index.php?title=%C3%96tigheim&oldid=246016894"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4732923-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)967681952", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4732923-3", "source": "GND"}], "variant_access_point": ["Gemeinde Ötigheim"], "authorized_access_point": "Ötigheim"} 3 -2024-07-16 19:07:57.904581 2024-07-17 07:01:19.688798 cb204431-5898-4f8a-8f6a-cc00693da70b {"md5": "85423fa53ebc7bae0fde3f50b9ede918", "pid": "967753546", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4734021-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)967753546", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4734021-6", "source": "GND"}], "variant_access_point": ["Sīhāt", "Saihāt"], "authorized_access_point": "Sayhāt"} 3 -2024-07-16 19:07:57.738731 2024-07-17 07:01:20.576929 93a1a702-437b-4601-aba2-e866cbf08c81 {"md5": "5cca7318833960374151fd49506f67fe", "pid": "969971028", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4764706-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)969971028", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4764706-1", "source": "GND"}], "variant_access_point": ["Sākākah", "Skāka", "Sakāka"], "authorized_access_point": "Sakaka"} 3 -2024-07-16 19:07:57.681119 2024-07-17 07:01:20.885055 61ff269a-98c1-4d2b-ae75-cd8b298f29c8 {"md5": "17f9796fc2706622dba225e5d26483a6", "pid": "970139470", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Anjouan (Insel)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4766737-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)970139470", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4766737-0", "source": "GND"}], "authorized_access_point": "Anjouan (Insel) (Nord)"} 3 -2024-07-16 19:07:57.628206 2024-07-17 07:01:21.145614 a8a75258-7de0-4deb-beac-bd7a718838b0 {"md5": "788094b3dd33d33a9126b236c624f171", "pid": "971359709", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4781902-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)971359709", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4781902-9", "source": "GND"}], "classification": [{"name": "Bezirk", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Amt Bern", "Amtsbezirk Bern", "Bern (Bezirk)"], "authorized_access_point": "Bezirk Bern"} 3 -2024-07-16 19:07:57.464969 2024-07-17 07:01:21.76661 f0eb8f20-7583-480c-b774-30f185ff508e {"md5": "41c3e4005a9a84bd133cc142c49a4510", "pid": "972586601", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Hainburg an der Donau"}], "related": [{"authorized_access_point": "Wolfsthal-Berg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4800591-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)972586601", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4800591-5", "source": "GND"}], "authorized_access_point": "Berg (Hainburg an der Donau)"} 3 -2024-07-16 19:07:57.379959 2024-07-17 07:01:22.033556 6da9ded6-339e-408a-8524-8af6e03640ee {"md5": "e13ce9beccb1e86cbb58c8f5db6dd832", "pid": "972651438", "note": [{"label": ["Homepage - http://www.kirchstetten.at"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Neulengbach"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4801892-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)972651438", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4801892-2", "source": "GND"}], "variant_access_point": ["Marktgemeinde Kirchstetten", "Dichtergemeinde Kirchstetten"], "authorized_access_point": "Kirchstetten (Neulengbach)"} 3 -2024-07-16 19:07:57.817645 2024-07-17 07:01:20.29368 592356f2-985c-408e-9e1c-5d7a52433e9f {"md5": "013c2ed04e336f224c6844f2fcac29d3", "pid": "969491131", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4758499-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)969491131", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4758499-3", "source": "GND"}], "variant_access_point": ["Ušaiqir"], "authorized_access_point": "Ushayqir"} 3 -2024-07-16 19:07:58.606426 2024-07-17 07:01:17.267003 707e5972-908d-49a8-aadb-7b51e94a04a7 {"md5": "0d6704d15962397a055fb49614a00304", "pid": "965759059", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Leipzig-Neustadt"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4710355-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)965759059", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4710355-3", "source": "GND"}], "variant_access_point": ["Neustadt-Neuschönefeld (Leipzig)"], "authorized_access_point": "Leipzig-Neustadt-Neuschönefeld"} 3 -2024-07-16 19:07:58.521302 2024-07-17 07:01:17.625651 2e9baa8d-4dcc-4abe-8a82-a2a30a39865d {"md5": "bccb95ce32ab851915ea2c24841d5490", "pid": "965774910", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Wahren (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4710554-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)965774910", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4710554-9", "source": "GND"}], "variant_access_point": ["Wahren (Leipzig)"], "authorized_access_point": "Leipzig-Wahren"} 3 -2024-07-16 19:07:58.430085 2024-07-17 07:01:17.954021 6d887591-05ad-49b8-ae85-862851c9180a {"md5": "0d81132e7928698b5ac5852971f2a3d6", "pid": "965775429", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Abtnaundorf"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4710572-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)965775429", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4710572-0", "source": "GND"}], "variant_access_point": ["Abtnaundorf (Leipzig)"], "authorized_access_point": "Leipzig-Abtnaundorf"} 3 -2024-07-16 19:07:58.259916 2024-07-17 07:01:18.553813 12805350-6a1b-4650-9d82-d9baebdb5e77 {"md5": "1f9f5fb2fe8a0f43e4ed71e742275763", "pid": "967160480", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Miltitz (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4725054-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)967160480", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4725054-9", "source": "GND"}], "variant_access_point": ["Miltitz (Leipzig)"], "authorized_access_point": "Leipzig-Miltitz"} 3 -2024-07-16 19:07:58.1691 2024-07-17 07:01:18.804113 9c61d898-bc2a-42d5-abb2-a7e841709a98 {"md5": "05086ca35923ecc619fcf472e848606d", "pid": "967180953", "note": [{"label": ["Homepage - https://www.nationalpark-eifel.de"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Nordrhein-Westfalen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4725322-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)967180953", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4725322-8", "source": "GND"}], "classification": [{"name": "Nationalpark", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Nationalpark Eifel"} 3 -2024-07-16 19:07:58.076347 2024-07-17 07:01:19.049929 d684df96-a42f-4869-ab31-b346e2bcd8c7 {"md5": "b4485ccb6e2735211d94937f1cbfdc95", "pid": "967581176", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Goethewanderweg_Ilmenau%E2%80%93St%C3%BCtzerbach&oldid=242625559"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Ilmenau"}, {"authorized_access_point": "Ilmenau-Stützerbach"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4731282-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)967581176", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4731282-8", "source": "GND"}], "classification": [{"name": "Wanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Goethe-Wanderweg"], "authorized_access_point": "Goethewanderweg"} 3 -2024-07-16 19:07:58.341234 2024-07-17 07:01:18.256886 4ba79adb-9577-4530-88ad-a545bfc8e5b4 {"md5": "5be01ab8c4afd9919019b2764b8fa55e", "pid": "96577578X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4710588-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)96577578X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4710588-4", "source": "GND"}], "variant_access_point": ["Innere Westvorstadt (Leipzig)", "Leipzig-Kolonnadenviertel", "Kolonnadenviertel (Leipzig)"], "authorized_access_point": "Leipzig- Innere Westvorstadt"} 3 -2024-07-16 19:07:59.414359 2024-07-17 07:01:13.916767 3079086f-9935-4019-8f26-2a981bb9699b {"md5": "467bc6510b8fcaec3b5e6e3536b1a0e9", "pid": "963082132", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Köniz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4659061-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963082132", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4659061-4", "source": "GND"}], "classification": [{"name": "Schloss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Schloss Köniz (Köniz)"} 3 -2024-07-16 19:07:59.326557 2024-07-17 07:01:14.203853 ca343d34-da1e-41e0-8508-c40396f44e60 {"md5": "a1cf916095e4c7f74b472e733f80a3ac", "pid": "963462539", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Scheffau (Lindau, Bodensee)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1246023-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963462539", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1246023-0", "source": "GND"}], "variant_access_point": ["Scheffau (Scheidegg)"], "authorized_access_point": "Scheidegg-Scheffau"} 3 -2024-07-16 19:07:59.143257 2024-07-17 07:01:14.846558 78611672-e2ba-49c8-bd27-d9af903daff0 {"md5": "aae203a3b78f259bc3ce22838b2f7970", "pid": "963957635", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Wasseralfingen-Hofen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4676373-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963957635", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4676373-9", "source": "GND"}], "variant_access_point": ["Hofen (Aalen-Hofen)"], "authorized_access_point": "Aalen-Hofen"} 3 -2024-07-16 19:07:59.060636 2024-07-17 07:01:15.146723 1038b5cc-b2ac-40dc-afdc-20eb5d2e0f9f {"md5": "33fae17333be8f1ae10a0a104b74d037", "pid": "963982559", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Saudi-Arabien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4677123-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963982559", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4677123-2", "source": "GND"}], "variant_access_point": ["Nordwestliches Saudi-Arabien"], "authorized_access_point": "Saudi-Arabien (Nordwest)"} 3 -2024-07-16 19:07:58.978102 2024-07-17 07:01:15.444713 2f3d58d5-7496-4391-9300-5d337cd18d43 {"md5": "786c99e172022f148b657a1e4e6e1d9a", "pid": "96411822X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Anger-Crottendorf"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4679998-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)96411822X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4679998-9", "source": "GND"}], "variant_access_point": ["Anger-Crottendorf (Leipzig)"], "authorized_access_point": "Leipzig-Anger-Crottendorf"} 3 -2024-07-16 19:07:58.886108 2024-07-17 07:01:15.682359 81f947ca-7abe-430b-aa2b-2d45bffb9a96 {"md5": "1f55f0a6f04fc40e40f77d20c0e20471", "pid": "964462427", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Amt Skanderborg"}, {"authorized_access_point": "Region Midtjylland"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4685636-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)964462427", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4685636-5", "source": "GND"}], "classification": [{"name": "Amt", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Vejle (Amt)", "Vejle Amt", "Vejle Amtskommune"], "authorized_access_point": "Amt Vejle"} 3 -2024-07-16 19:08:00.134028 2024-07-17 07:01:11.264732 c908008d-aff9-475b-aac1-c68a2469a076 {"md5": "523bf5fc8538a12f15f4660d7de19e47", "pid": "960085726", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Bienitz-Burghausen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4611475-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)960085726", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4611475-0", "source": "GND"}], "variant_access_point": ["Burghausen (Leipzig)"], "authorized_access_point": "Leipzig-Burghausen"} 3 -2024-07-16 19:08:00.050721 2024-07-17 07:01:11.533889 5facf0d5-c17f-4c3b-9a00-2e80779abd5d {"md5": "0ead640e1c8ca13b33180ffbef2b7ee7", "pid": "960396268", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4617642-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)960396268", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4617642-1", "source": "GND"}], "variant_access_point": ["Halle-Leipzig-Bitterfeld-Gebiet", "Leipzig-Halle-Bitterfeld-Gebiet", "Bitterfeld-Leipzig-Halle-Gebiet", "Chemiedreieck"], "authorized_access_point": "Leipzig-Halle-Bitterfeld (Region)"} 3 -2024-07-16 19:07:59.957272 2024-07-17 07:01:11.814302 6b852148-1b29-4231-8e90-74d2282ce4e7 {"md5": "cb61f9ea388e94aa88fe6921787c17da", "pid": "960833919", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4623386-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)960833919", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4623386-6", "source": "GND"}], "variant_access_point": ["Marienbrunn (Leipzig)"], "authorized_access_point": "Leipzig-Marienbrunn"} 3 -2024-07-16 19:07:59.869063 2024-07-17 07:01:12.107689 b6af42f1-ae65-4cfb-8d68-edb9cdf0ffa1 {"md5": "b03ee9bf840a24176b6c2855c9b8878c", "pid": "960863664", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Seehausen (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4624158-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)960863664", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4624158-9", "source": "GND"}], "variant_access_point": ["Seehausen (Leipzig)"], "authorized_access_point": "Leipzig-Seehausen"} 3 -2024-07-16 19:07:59.727645 2024-07-17 07:01:12.740796 6b009a4f-b34b-43ab-b011-126c5e3961a3 {"md5": "3135b85e324070babaa15a8bb6681101", "pid": "961594454", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Wiederitzsch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10018856-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)961594454", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)10018856-4", "source": "GND"}], "variant_access_point": ["Wiederitzsch (Leipzig)"], "authorized_access_point": "Leipzig-Wiederitzsch"} 3 -2024-07-16 19:07:59.585772 2024-07-17 07:01:13.371139 90ec9d70-3f2e-4614-becb-bfc6c9a1bf15 {"md5": "51403ab1c4d5f6477f6131e0fcf14802", "pid": "961594519", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Plaußig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10018865-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)961594519", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)10018865-5", "source": "GND"}], "variant_access_point": ["Plaußig (Leipzig)"], "authorized_access_point": "Leipzig-Plaußig"} 3 -2024-07-16 19:07:59.786628 2024-07-17 07:01:12.427441 64fc8274-2e5d-485e-8b30-67fdde239795 {"md5": "b7b5d7cb146257ea632803c2e279238f", "pid": "961395923", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Zawid%C3%B3w"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4633601-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)961395923", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4633601-1", "source": "GND"}], "variant_access_point": ["Seidenberg", "Seidenberg O.-L", "Zawidow"], "authorized_access_point": "Zawidów"} 3 -2024-07-16 19:08:00.834328 2024-07-17 07:01:08.555024 bd6724aa-6b22-4923-8e09-632ae5a348d2 {"md5": "79fcba2ce339be2a31759e9e83aa43b6", "pid": "957586973", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4562198-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)957586973", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4562198-6", "source": "GND"}], "variant_access_point": ["Ubar"], "authorized_access_point": "Wabar"} 3 -2024-07-16 19:08:00.774546 2024-07-17 07:01:08.849301 040c078e-f329-4b66-b263-5a6c4f1b67ce {"md5": "320da56e02e0c900d7295f1980e8bb8b", "pid": "957753551", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Komoren (Archipel)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4566491-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)957753551", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4566491-2", "source": "GND"}], "classification": [{"name": "Insel", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Nwami", "Ndzouani"], "authorized_access_point": "Anjouan (Insel)"} 3 -2024-07-16 19:08:00.722997 2024-07-17 07:01:09.363543 0e363652-1c0f-47da-88c0-914a0c343508 {"md5": "3548878b688326e370789ca34ce0b8d4", "pid": "958014639", "note": [{"label": ["H hist. Stätten; Internet - http://www.schwante.de/schloesser.htm"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Schwante"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4570933-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)958014639", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4570933-6", "source": "GND"}], "classification": [{"name": "Schloss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Schloss Schwante"} 3 -2024-07-16 19:08:00.63874 2024-07-17 07:01:09.643106 585b6eb1-b107-478e-8b39-1b12c2de37f0 {"md5": "cd56412dfcbee836b0f19415e3c7cb43", "pid": "958777055", "note": [{"label": ["Ehemalige Gemeinde und heute politisch unselbstständige Ortschaft in der Provinz Groningen. Fusionierte zum 1. Januar 2019 mit De Marne, Winsum und Eemsmond zur neuen Gemeinde \\"Het Hogeland\\""], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Het Hogeland"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4585822-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)958777055", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4585822-6", "source": "GND"}], "variant_access_point": ["Gemeinde Bedum", "Gemeente Bedum", "Het Hogeland- Bedum"], "authorized_access_point": "Bedum"} 3 -2024-07-16 19:08:00.551457 2024-07-17 07:01:09.933338 0c8be9c0-4975-4ab1-a64e-f1960c248627 {"md5": "464d5d6956a21efda83528a1eb1fb207", "pid": "959369872", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4596737-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959369872", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4596737-4", "source": "GND"}], "classification": [{"name": "Woiwodschaft", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Województwo Lubuskie", "Lebus (Woiwodschaft)"], "authorized_access_point": "Woiwodschaft Lebus"} 3 -2024-07-16 19:08:00.388269 2024-07-17 07:01:10.487595 f979196a-18e7-426d-ab5a-659919ee1bc8 {"md5": "8e1f15443b2f14cbbc2660f139d6ff05", "pid": "959788719", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Plaußig"}, {"authorized_access_point": "Portitz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4605550-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959788719", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4605550-2", "source": "GND"}], "variant_access_point": ["Plaußig-Portitz (Leipzig)"], "authorized_access_point": "Leipzig-Plaußig-Portitz"} 3 -2024-07-16 19:08:00.307109 2024-07-17 07:01:10.743341 9e9f9fd8-2e66-4dac-817a-0f4eb0d7597b {"md5": "379f36e73f856df0785bc3c3352d15a9", "pid": "959918612", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4608170-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959918612", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4608170-7", "source": "GND"}], "classification": [{"name": "Gouvernement", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Gouvernement Kowno", "Gouvernement Kovno", "Gouvernement Kaunas"], "authorized_access_point": "Kaunas (Gouvernement)"} 3 -2024-07-16 19:08:00.466554 2024-07-17 07:01:10.196745 10d48503-4bee-4984-9e71-5957be99302c {"md5": "03ffa3371f6cce678363a44b14e1fcd2", "pid": "959747575", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Monroe_(Wisconsin)&oldid=231105462"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10007977-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959747575", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)10007977-5", "source": "GND"}], "authorized_access_point": "Monroe, Wis."} 3 -2024-07-16 19:08:01.639308 2024-07-17 07:01:05.753914 6e8198ca-b0cb-434c-9fa6-c8271d281887 {"md5": "b0758a74eaaa88dc211c464b598ffe42", "pid": "955498058", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Thonberg (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4527974-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955498058", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4527974-3", "source": "GND"}], "variant_access_point": ["Thonberg (Leipzig)"], "authorized_access_point": "Leipzig-Thonberg"} 3 -2024-07-16 19:08:01.547988 2024-07-17 07:01:06.082012 e7a9a1a7-ae9f-47d5-879e-5a96496cfb72 {"md5": "a1051065a2b7db3df40250b3278a40d2", "pid": "955573246", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Engelsdorf-Althen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2174812-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955573246", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)2174812-3", "source": "GND"}], "variant_access_point": ["Althen (Leipzig)"], "authorized_access_point": "Leipzig-Althen"} 3 -2024-07-16 19:08:01.463266 2024-07-17 07:01:06.395933 699b3472-75c0-405a-a599-14fba1b2bc71 {"md5": "96238bd3523140aa55af00cf9af8117e", "pid": "955820049", "note": [{"label": ["Homepage - https://www.deiningen.de/", "Wikipedia - https://de.wikipedia.org/wiki/Deiningen"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4531247-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955820049", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4531247-3", "source": "GND"}], "authorized_access_point": "Deiningen"} 3 -2024-07-16 19:08:01.275241 2024-07-17 07:01:07.260606 6d9a3a9f-6e4b-4614-bc67-1743778d641f {"md5": "5b6312b235898c118b46940bd9d0b07a", "pid": "956443613", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Liebertwolkwitz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5312244-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)956443613", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5312244-6", "source": "GND"}], "variant_access_point": ["Liebertwolkwitz (Leipzig)"], "authorized_access_point": "Leipzig-Liebertwolkwitz"} 3 -2024-07-16 19:08:01.182416 2024-07-17 07:01:07.508119 856a935b-dc08-47b7-828c-ecb7187e6ccc {"md5": "e3141961edec8cf1f9acb139bb84eb44", "pid": "956443842", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Baalsdorf&oldid=193358956"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Engelsdorf-Baalsdorf"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5312267-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)956443842", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5312267-7", "source": "GND"}], "variant_access_point": ["Baalsdorf (Leipzig)"], "authorized_access_point": "Leipzig-Baalsdorf"} 3 -2024-07-16 19:08:01.087546 2024-07-17 07:01:07.759688 2c3bc07f-d05a-4331-96ed-cb2967b2f729 {"md5": "b567c9ca4033c1f96204a4e9eb887efc", "pid": "956443877", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Engelsdorf (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5312270-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)956443877", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5312270-7", "source": "GND"}], "variant_access_point": ["Engelsdorf (Leipzig)"], "authorized_access_point": "Leipzig-Engelsdorf"} 3 -2024-07-16 19:08:01.001915 2024-07-17 07:01:08.053679 16e85fa6-55e1-4603-9b59-bb756a750963 {"md5": "217e404a9b653db388d311ca5b4c1abd", "pid": "957211430", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4555925-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)957211430", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4555925-9", "source": "GND"}], "variant_access_point": ["Drjowk", "Amtsfreie Gemeinde Stadt Drebkau", "Bźezamtowa Gmejna Město Drjowk", "Drepkau"], "authorized_access_point": "Drebkau"} 3 -2024-07-16 19:08:01.367879 2024-07-17 07:01:06.973257 1ff57584-f2db-4091-a580-e1966b3812b6 {"md5": "574d49fcd267cf575dec8846263583b8", "pid": "955960134", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2175760-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955960134", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)2175760-4", "source": "GND"}], "variant_access_point": ["Mockau-Ost"], "authorized_access_point": "Leipzig-Mockau-Ost"} 3 -2024-07-16 19:08:02.032977 2024-07-17 07:01:04.121677 eba43b50-6620-4383-846f-ef9f2a35598e {"md5": "a76ef4c4feb750fe9ed1881ae5b5a84f", "pid": "954064593", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kanton Neuenburg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4508222-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)954064593", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4508222-4", "source": "GND"}], "authorized_access_point": "Cressier (Kanton Neuenburg)"} 3 -2024-07-16 19:08:02.205473 2024-07-17 07:01:03.584884 90237a02-7778-4a94-abb8-9eb49575f5be {"md5": "1c785418c4e14d425dd305f3efd00980", "pid": "953105024", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Reudnitz (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4491767-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)953105024", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4491767-3", "source": "GND"}], "variant_access_point": ["Reudnitz (Leipzig)"], "authorized_access_point": "Leipzig-Reudnitz"} 3 -2024-07-16 19:08:01.93633 2024-07-17 07:01:04.393386 d5ca72c0-93c7-4486-ab82-7c2de29c8229 {"md5": "13b1bb7dad0d78c2398367a652d02d43", "pid": "954071832", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4508419-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)954071832", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4508419-1", "source": "GND"}], "authorized_access_point": "Leipzig-West"} 3 -2024-07-16 19:08:01.857377 2024-07-17 07:01:04.665543 f4487c7a-05d4-4fc6-beac-24a948883b38 {"md5": "ffb8bf12185806674f678af675b5bc4a", "pid": "954472683", "note": [{"label": ["Homepage - http://de.wikipedia.org/wiki/Pommritz"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Pommritz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5289232-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)954472683", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5289232-3", "source": "GND"}], "variant_access_point": ["Pommritz (Hochkirch-Pommritz)", "Bukecy-Pomorcy"], "authorized_access_point": "Hochkirch-Pommritz"} 3 -2024-07-16 19:08:01.800481 2024-07-17 07:01:05.18396 a58fe825-81c8-48e6-b884-f3a457702d5e {"md5": "5e31179f2829c92da20a444b2796a446", "pid": "955090547", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Grünberg (Landkreis Gießen)"}, {"authorized_access_point": "Lehnheim"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3035028-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955090547", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)3035028-1", "source": "GND"}], "variant_access_point": ["Grünberg (Landkreis Gießen-Lehnheim)", "Lehnheim (Grünberg-Lehnheim)"], "authorized_access_point": "Grünberg-Lehnheim"} 3 -2024-07-16 19:08:02.294983 2024-07-17 07:01:02.771243 b4733ece-7fe2-43fb-b281-a44d5fd67b5e {"md5": "7bcfeaa46eee35aaff8b4d36a2055077", "pid": "952110512", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=228930289"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Amt Odense"}, {"authorized_access_point": "Amt Svendborg"}, {"authorized_access_point": "Region Syddanmark"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4477066-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)952110512", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4477066-2", "source": "GND"}], "classification": [{"name": "Amt", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Amt Fünen", "Fyns Amt", "Fyns (Amt)", "Fyn Amtskommune", "Fyns Amtskommune", "Fünen (Amt)"], "authorized_access_point": "Amt Fyn"} 3 -2024-07-16 19:08:02.120061 2024-07-17 07:01:03.868266 817ea93b-a975-476e-93fc-8887667483a3 {"md5": "86b41b6906013dbd5250fbb311ed31b2", "pid": "953168697", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Heringsdorf (Seebad)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4492872-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)953168697", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4492872-5", "source": "GND"}], "classification": [{"name": "Saalkirche", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Evangelische Kirche im Walde (Heringsdorf, Seebad)"], "authorized_access_point": "Kirche im Walde (Heringsdorf, Seebad)"} 3 -2024-07-16 19:08:02.946657 2024-07-17 07:01:00.414655 6241151a-3130-4163-aebe-95c1c58519b6 {"md5": "0d4090de60180bca3e809ced43002740", "pid": "950356190", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Schönau (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4452671-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950356190", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4452671-4", "source": "GND"}], "variant_access_point": ["Schönau (Leipzig)"], "authorized_access_point": "Leipzig-Schönau"} 3 -2024-07-16 19:08:02.640242 2024-07-17 07:01:01.582223 b5720ad3-385b-44a9-81a6-73517452a205 {"md5": "95bd28b9dff604c7345d8bb7e33639d8", "pid": "951510258", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Saudi-Arabien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4470217-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)951510258", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4470217-6", "source": "GND"}], "variant_access_point": ["Südliches Saudi-Arabien"], "authorized_access_point": "Saudi-Arabien (Süd)"} 3 -2024-07-16 19:08:02.561082 2024-07-17 07:01:01.846286 5d9b38cc-9641-41a1-a38c-2c283287db0b {"md5": "e3fe89ff031a7acb42637df32d026a5c", "pid": "951510274", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Saudi-Arabien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4470220-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)951510274", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4470220-6", "source": "GND"}], "variant_access_point": ["Westliches Saudi-Arabien"], "authorized_access_point": "Saudi-Arabien (West)"} 3 -2024-07-16 19:08:02.476924 2024-07-17 07:01:02.147073 42b7577a-bdb5-4d91-860d-ed44b4b5bac4 {"md5": "77589bb3b29de52fb991b6b37d2ee5ae", "pid": "951510282", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Saudi-Arabien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4470221-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)951510282", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4470221-8", "source": "GND"}], "variant_access_point": ["Südwestliches Saudi-Arabien"], "authorized_access_point": "Saudi-Arabien (Südwest)"} 3 -2024-07-16 19:08:03.049185 2024-07-17 07:01:00.139217 90ca37b4-25f1-41a9-a4a1-113688c76e20 {"md5": "71b8c54cdc458b6783a3672eaef07522", "pid": "950339490", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Lausen_(Leipzig)&oldid=206629090"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Lausen (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4452519-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950339490", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4452519-9", "source": "GND"}], "variant_access_point": ["Lausen (Leipzig)"], "authorized_access_point": "Leipzig-Lausen"} 3 -2024-07-16 19:08:02.864671 2024-07-17 07:01:00.72356 74a97b57-2fee-4191-93de-b8ee7ad28571 {"md5": "0281915eb7f4008de9a8ddb7f35a8a6c", "pid": "950556149", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4456228-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950556149", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4456228-7", "source": "GND"}], "variant_access_point": ["Äußere Südostvorstadt (Leipzig)"], "authorized_access_point": "Leipzig- Äußere Südostvorstadt"} 3 -2024-07-16 19:08:02.807188 2024-07-17 07:01:00.982421 f3ae0f0d-29d1-494a-bd39-cdc22285aa06 {"md5": "f7c1b273acd824897202bfe7ecb8c043", "pid": "950649155", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4457908-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950649155", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4457908-1", "source": "GND"}], "variant_access_point": ["Campos (Jordão)"], "authorized_access_point": "Campos do Jordão"} 3 -2024-07-16 19:08:03.66899 2024-07-17 07:00:58.115118 52371b63-15ed-4e49-a707-c5c94dd376fc {"md5": "a2e37d8709056c648394ead8dd6de915", "pid": "950332011", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Dösen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4452347-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950332011", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4452347-6", "source": "GND"}], "variant_access_point": ["Dösen (Leipzig)"], "authorized_access_point": "Leipzig-Dösen"} 3 -2024-07-16 19:08:03.480531 2024-07-17 07:00:58.697674 39332da5-d5d4-40a2-8e14-4c5b20f2df68 {"md5": "d780ccb24cb5436c2562c5572ba345e1", "pid": "950338184", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Meusdorf (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4452479-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950338184", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4452479-1", "source": "GND"}], "variant_access_point": ["Meusdorf (Leipzig)"], "authorized_access_point": "Leipzig-Meusdorf"} 3 -2024-07-16 19:08:03.394124 2024-07-17 07:00:58.997317 22856a89-c9aa-4b21-bf00-405fb6e63171 {"md5": "9910f6e85488c8145ccf0fdea8447e43", "pid": "950338230", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Knauthain"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4452482-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950338230", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4452482-1", "source": "GND"}], "variant_access_point": ["Knauthain (Leipzig)"], "authorized_access_point": "Leipzig-Knauthain"} 3 -2024-07-16 19:08:03.302985 2024-07-17 07:00:59.260635 9fb3dfa8-dbe0-4b1c-a0df-00b381bfb5ae {"md5": "95814f3fb22983a50e15e6ef22bfbf9c", "pid": "95033829X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Knautkleeberg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4452484-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)95033829X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4452484-5", "source": "GND"}], "variant_access_point": ["Knautkleeberg (Leipzig)"], "authorized_access_point": "Leipzig-Knautkleeberg"} 3 -2024-07-16 19:08:03.217357 2024-07-17 07:00:59.546482 f33778f1-4f59-43f3-bd21-fca76c928f82 {"md5": "0d0e44b2fae4be63117d61a1b9e8de06", "pid": "950338338", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Windorf "}, {"authorized_access_point": "Großzschocher-Windorf"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4452486-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950338338", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4452486-9", "source": "GND"}], "variant_access_point": ["Windorf (Leipzig)"], "authorized_access_point": "Leipzig-Windorf"} 3 -2024-07-16 19:08:03.759302 2024-07-17 07:00:57.837146 53574a37-3e47-4b92-8a64-8947711824aa {"md5": "8a6d8a6a292da0a5781ae02f18fb2fed", "pid": "950331821", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Probstheida"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4452343-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950331821", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4452343-9", "source": "GND"}], "variant_access_point": ["Probstheida (Leipzig)"], "authorized_access_point": "Leipzig-Probstheida"} 3 -2024-07-16 19:08:03.576829 2024-07-17 07:00:58.422046 d44d9b64-a013-4e65-b5f1-c37367842432 {"md5": "56d4d59e78b76987b49676768a82ecf7", "pid": "950332429", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Schönefeld (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4452359-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950332429", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4452359-2", "source": "GND"}], "variant_access_point": ["Schönefeld (Leipzig)"], "authorized_access_point": "Leipzig-Schönefeld"} 3 -2024-07-16 19:08:04.380907 2024-07-17 07:00:55.930174 565c6d38-10a4-478e-9afd-1db9c5e34441 {"md5": "9c6c21a6e0aeec73f2e6ed6f4d25badc", "pid": "949647314", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Egloffstein"}], "related": [{"authorized_access_point": "Egloffstein-Bieberbach"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4440857-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949647314", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4440857-2", "source": "GND"}], "authorized_access_point": "Bieberbach (Egloffstein)"} 3 -2024-07-16 19:08:04.165953 2024-07-17 07:00:56.509511 10e2d1d7-3ce6-4ff5-91f7-49a915e2dd60 {"md5": "b08ffe59e022540c0c9ea167cec8e159", "pid": "950168637", "note": [{"label": ["Wikipedia - https://ru.wikipedia.org/w/index.php?oldid=138690191"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4449423-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950168637", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4449423-3", "source": "GND"}], "variant_access_point": ["Pyatigorsk", "Pjatigorsk (Stavropolkreis)", "Пятигорск (Ставропольский край)"], "authorized_access_point": "Pjatigorsk"} 3 -2024-07-16 19:08:04.060332 2024-07-17 07:00:56.767299 7027f3fc-7193-41f6-971e-4400e622b7d9 {"md5": "e347504e06b592b0072970df20074930", "pid": "950199214", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Dachau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4450115-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950199214", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4450115-8", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Versöhnungskirche (Dachau)"} 3 -2024-07-16 19:08:03.89419 2024-07-17 07:00:57.299833 b245473c-3c08-4a7c-9446-e887abd35516 {"md5": "27c408f7914064749411cf5a8b62519b", "pid": "95020109X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Schleußig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4450192-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)95020109X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4450192-4", "source": "GND"}], "variant_access_point": ["Schleußig (Leipzig)", "Leipzig-Schleussig"], "authorized_access_point": "Leipzig-Schleußig"} 3 -2024-07-16 19:08:04.465203 2024-07-17 07:00:55.397806 d1b3c1e0-be9e-40de-aef3-c2fba67c1f2a {"md5": "45c80d942538f6f2a2559e250a75b361", "pid": "949641804", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Landkreis Zwickau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4440677-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949641804", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4440677-0", "source": "GND"}], "variant_access_point": ["Hartenstein (Zwickauer Land)", "Stadt Hartenstein", "Hartenstein", "Hartenstein bei Zwickau"], "authorized_access_point": "Hartenstein (Landkreis Zwickau)"} 3 -2024-07-16 19:08:03.976667 2024-07-17 07:00:57.01155 4dd2548e-69bb-4210-bd3e-4719b54f6b68 {"md5": "9c34b9847e76b38d6f3990f02b457551", "pid": "950199850", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Kleinzschocher"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4450126-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950199850", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4450126-2", "source": "GND"}], "variant_access_point": ["Kleinzschocher (Leipzig)", "Leipzig-Kl.-Zschocher", "Leipzig-Zschocher"], "authorized_access_point": "Leipzig-Kleinzschocher"} 3 -2024-07-16 19:08:05.094468 2024-07-17 07:00:53.065972 f9aab04c-2d1e-48db-b458-2b276f650b8c {"md5": "7393eb65f5baeeefd89aece38e2d482f", "pid": "948791659", "note": [{"label": ["Homepage - http://www.holzhausen-sachsen.de"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Holzhausen (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4426743-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948791659", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4426743-5", "source": "GND"}], "variant_access_point": ["Holzhausen (Leipzig)"], "authorized_access_point": "Leipzig-Holzhausen"} 3 -2024-07-16 19:08:05.012664 2024-07-17 07:00:53.37122 c84f999f-cb20-41ce-8c45-7d1da8650f28 {"md5": "79513f7d1f8921cc4360d9b20e60a1e4", "pid": "949602310", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Lützschena-Stahmeln"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4439654-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949602310", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4439654-5", "source": "GND"}], "variant_access_point": ["Lützschena-Stahmeln (Leipzig)"], "authorized_access_point": "Leipzig-Lützschena-Stahmeln"} 3 -2024-07-16 19:08:04.879126 2024-07-17 07:00:53.933243 727be07b-1fe1-4e6a-96d2-6e4dc8eb8aa5 {"md5": "4e81bd8a2ddc44812a95725de22e79ed", "pid": "949632104", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rub al-Khali"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4440415-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949632104", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4440415-3", "source": "GND"}], "variant_access_point": ["Westliche Rub al-Khali"], "authorized_access_point": "Rub al-Khali (West)"} 3 -2024-07-16 19:08:04.806508 2024-07-17 07:00:54.270623 b810dbaa-474e-4212-a71f-58077507adf9 {"md5": "6c3d6e2e6ddc55f88e520f956bdafe79", "pid": "949632120", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rub al-Khali"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4440416-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949632120", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4440416-5", "source": "GND"}], "variant_access_point": ["Südöstliche Rub al-Khali"], "authorized_access_point": "Rub al-Khali (Südost)"} 3 -2024-07-16 19:08:04.721105 2024-07-17 07:00:54.5894 51e542d8-3d68-4b52-b241-42de2ac49de3 {"md5": "dabca5494dcd4a922ebc883b6b899b84", "pid": "949632147", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rub al-Khali"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4440417-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949632147", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4440417-7", "source": "GND"}], "variant_access_point": ["Östliche Rub al-Khali"], "authorized_access_point": "Rub al-Khali (Ost)"} 3 -2024-07-16 19:08:04.634449 2024-07-17 07:00:54.84196 8101905a-6c3a-4c62-bee4-bf3c9bceca03 {"md5": "e5aa62cd7ab0a786553ce56b8e5d138d", "pid": "949632163", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rub al-Khali"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4440418-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949632163", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4440418-9", "source": "GND"}], "variant_access_point": ["Nordöstliche Rub al-Khali"], "authorized_access_point": "Rub al-Khali (Nordost)"} 3 -2024-07-16 19:08:05.190047 2024-07-17 07:00:52.765188 f8f57a70-8742-478a-a674-e93083f2c9a0 {"md5": "7e91cdab0ab7b820b05f000120e59ca1", "pid": "948417226", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Polanów"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5180619-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948417226", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5180619-8", "source": "GND"}], "variant_access_point": ["Pollnow i. Pom."], "authorized_access_point": "Pollnow"} 3 -2024-07-16 19:08:04.93212 2024-07-17 07:00:53.696636 0048ef7a-4743-44d1-8fa7-1ae3f2e914b8 {"md5": "e3b18eea893479ac3a740c9b26287a9a", "pid": "949607266", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Landkreis Landshut"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4439953-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949607266", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4439953-4", "source": "GND"}], "authorized_access_point": "Furth (Landkreis Landshut)"} 3 -2024-07-16 19:08:05.902279 2024-07-17 07:00:50.243695 8cc09076-b248-46dc-81e9-fdf1bd62e932 {"md5": "988f8e5e0f575f3425e8ec73811636b7", "pid": "947421238", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=242946023"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Ustinov"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4408789-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947421238", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4408789-5", "source": "GND"}], "variant_access_point": ["Iževsk", "Izhevsk", "Iževskij zavod", "Iž", "Ižkar", "Ижкар", "Иж"], "authorized_access_point": "Ischewsk"} 3 -2024-07-16 19:08:05.816708 2024-07-17 07:00:50.53804 dcdfb68a-ca81-4ad5-a790-f6a067ff417e {"md5": "002ce1858f617aa649b8cf8617447ce8", "pid": "947454659", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4408998-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947454659", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4408998-3", "source": "GND"}], "variant_access_point": ["Oḥod"], "authorized_access_point": "Uḥud"} 3 -2024-07-16 19:08:05.638757 2024-07-17 07:00:51.130324 36fad630-5f41-44f6-9e5d-3054b3d22079 {"md5": "8f3113990eea850fb48dcc62ebcf992f", "pid": "947589341", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Dreikaiserbäder-Bansin"}, {"authorized_access_point": "Dreikaiserbäder"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5171491-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947589341", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5171491-7", "source": "GND"}], "variant_access_point": ["Seebad Bansin"], "authorized_access_point": "Bansin"} 3 -2024-07-16 19:08:05.478809 2024-07-17 07:00:51.74591 9c9524bb-4253-4666-808b-f91af5570b52 {"md5": "845543700bb4e480f11927c095a85a34", "pid": "947976248", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Mölkau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4415593-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947976248", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4415593-1", "source": "GND"}], "variant_access_point": ["Mölkau (Leipzig)", "Mölkau-Zweinaundorf", "Lleipzig-Mölkau-Zweinaundorf"], "authorized_access_point": "Leipzig-Mölkau"} 3 -2024-07-16 19:08:05.358558 2024-07-17 07:00:52.042759 d48ed009-fe2e-43e1-b97e-c195f7bbfb13 {"md5": "2d6021b3e306eb78ae899f8e6c9fb487", "pid": "948321156", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Dölitz (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4420038-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948321156", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4420038-9", "source": "GND"}], "variant_access_point": ["Dölitz (Leipzig)"], "authorized_access_point": "Leipzig-Dölitz"} 3 -2024-07-16 19:08:05.956609 2024-07-17 07:00:49.691362 b381a3fb-0864-4443-ae8f-c22b41ec733c {"md5": "457b9d150cdbe315524ea54e4f13c5d7", "pid": "947026088", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Minas Gerais"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4403767-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947026088", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4403767-3", "source": "GND"}], "authorized_access_point": "Barbacena (Minas Gerais)"} 3 -2024-07-16 19:08:05.718165 2024-07-17 07:00:50.807483 93b40dfc-3bd5-4ef9-b02d-70bbd6437d92 {"md5": "b5e04b2a6646c04703630335550cc2f7", "pid": "947454802", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4409005-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947454802", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4409005-5", "source": "GND"}], "variant_access_point": ["Yamāma", "Jamama"], "authorized_access_point": "Yamāmah"} 3 -2024-07-16 19:08:06.643891 2024-07-17 07:00:46.645782 82edb2d3-b280-43f9-be07-3d4894d1fd34 {"md5": "7f5ec3db66d5e4ca0e492dfa36e6a03a", "pid": "944289290", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5127721-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)944289290", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5127721-9", "source": "GND"}], "authorized_access_point": "Leipzig-Ost"} 3 -2024-07-16 19:08:06.555656 2024-07-17 07:00:47.408164 ebcb4857-6715-4258-ab67-cd035209b6f1 {"md5": "d5c74b73e5ebbaf8da1c81bb62b8a64c", "pid": "944766021", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Eutritzsch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4380230-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)944766021", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4380230-8", "source": "GND"}], "variant_access_point": ["Eutritzsch (Leipzig)"], "authorized_access_point": "Leipzig-Eutritzsch"} 3 -2024-07-16 19:08:06.47737 2024-07-17 07:00:47.673271 040b76d8-9271-49ce-b371-833be7cb1885 {"md5": "f4067e4f2fd0632b175c025424f72cc5", "pid": "945385382", "note": [{"label": ["Hompage - http://city.mogilev.by/?lang=bel", "Wikipedia - https://ru.wikipedia.org/w/index.php?oldid=138576423"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4384842-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)945385382", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4384842-4", "source": "GND"}], "variant_access_point": ["Mahileǔ", "Mohilev", "Mahiljou", "Mahilioŭ", "Mahiloŭ", "Mohilew", "Mogilyov", "Mogilev", "Magistrat (Mogilev)", "Mahilëŭ", "Mogilew", "Mahilëŭski Harad", "Mogilevski Gorod", "Mogilev City", "Могилев", "Могилёв"], "authorized_access_point": "Mogiljow"} 3 -2024-07-16 19:08:06.383033 2024-07-17 07:00:47.952831 a8a92d54-5e66-41fd-a92d-648b67a23293 {"md5": "8f3af56faae9e07fd9c8598aa0197f6f", "pid": "945871678", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Paris"}, {"authorized_access_point": "Palais de la Cité (Paris)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4389955-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)945871678", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4389955-9", "source": "GND"}], "classification": [{"name": "Gefängnisbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Conciergerie (Paris)"} 3 -2024-07-16 19:08:06.206702 2024-07-17 07:00:48.594584 b461c5cf-ce2c-414a-b9c1-b2eb893f454f {"md5": "7a6e8bc54d3063c7cdc264bcbdc08556", "pid": "945980132", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Unterelsass"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4390811-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)945980132", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4390811-1", "source": "GND"}], "variant_access_point": ["Barr (Elsass)", "Barr, Elsaß"], "authorized_access_point": "Barr (Unterelsass)"} 3 -2024-07-16 19:08:06.124403 2024-07-17 07:00:49.126339 eb3ebafd-209d-443d-b587-6fdea0f62340 {"md5": "74e49f54d968824c58571ae6c230be75", "pid": "946606161", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=244051604"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4399100-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)946606161", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4399100-2", "source": "GND"}], "classification": [{"name": "Kreis", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Oststernberg (Kreis)", "Ost-Sternberg", "Kreis Ost-Sternberg", "Landkreis Ost-Sternberg"], "authorized_access_point": "Kreis Oststernberg"} 3 -2024-07-16 19:08:06.728453 2024-07-17 07:00:46.348103 1b8f50a2-6b55-4019-b856-0fc60344589c {"md5": "97a262fdc4d5943e2a1d6e18cf23294e", "pid": "94400718X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5123475-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)94400718X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5123475-0", "source": "GND"}], "variant_access_point": ["L'vivs'ka Oblast'"], "authorized_access_point": "L'vovskaja Oblast'"} 3 -2024-07-16 19:08:06.294299 2024-07-17 07:00:48.250371 8fdfee67-7438-45a1-8d82-0b0937192a99 {"md5": "35a5b16c2dd9f6a8d8e66131511de3d7", "pid": "945917201", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4390430-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)945917201", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4390430-0", "source": "GND"}], "classification": [{"name": "Präfektur", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Tochigi-ken", "Shimotsuke", "Yashū", "Shimotsukene", "Shimotsukeno"], "authorized_access_point": "Präfektur Tochigi"} 3 -2024-07-16 19:08:06.978734 2024-07-17 07:00:45.440191 3d09c2c2-666e-4a35-9a8c-26b05362b39c {"md5": "a9350ee6282a6ab82e63b3925402980b", "pid": "941808769", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2138776-X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)941808769", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)2138776-X", "source": "GND"}], "authorized_access_point": "Lostallo"} 3 -2024-07-16 19:08:06.907513 2024-07-17 07:00:45.736132 01e7528b-f79c-4706-aadb-ecd2aa187acb {"md5": "9f508f26e803155633cc3ae644e86140", "pid": "941847934", "note": [{"label": ["Wikipedia - http://pl.wikipedia.org/w/index.php?oldid=72530956"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Woiwodschaft Lebus"}], "related": [{"authorized_access_point": "Lagow (Kreis Oststernberg)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2138914-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)941847934", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)2138914-7", "source": "GND"}], "variant_access_point": ["Lagow (Woiwodschaft Lebus)", "Łagów, Powiat Świebodziński", "Łagów, województwo lubuskie", "Łagów Lubuski", "Łagów", "Łagów Lubuski"], "authorized_access_point": "Łagów (Woiwodschaft Lebus)"} 3 -2024-07-16 19:08:07.34668 2024-07-17 07:00:43.933075 9bf8a372-34cf-4d6b-aa3b-c5ac8fee8e00 {"md5": "bced35b7f2a1b7903c9c8fb07de8101e", "pid": "940396009", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Connewitz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4331601-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)940396009", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4331601-3", "source": "GND"}], "variant_access_point": ["Connewitz (Leipzig)"], "authorized_access_point": "Leipzig-Connewitz"} 3 -2024-07-16 19:08:07.248659 2024-07-17 07:00:44.231457 15ce8596-3dea-4793-9a1f-1f4b15476427 {"md5": "5fda193c3f6c86d97ec734049a8cb993", "pid": "940396068", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Plagwitz (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4331603-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)940396068", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4331603-7", "source": "GND"}], "variant_access_point": ["Plagwitz (Leipzig)"], "authorized_access_point": "Leipzig-Plagwitz"} 3 -2024-07-16 19:08:07.158193 2024-07-17 07:00:44.818927 1e4a7e85-c6a7-422b-931a-35edfe7019f0 {"md5": "62ab9ae6fbbdf00fcfd4433cecfd368f", "pid": "941385175", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4342217-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)941385175", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4342217-2", "source": "GND"}], "classification": [{"name": "Tal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Wadi al-Batin"} 3 -2024-07-16 19:08:07.063572 2024-07-17 07:00:45.13631 6fce8af3-92d7-4d61-92c6-830ad635571d {"md5": "bc6a383efec83b5b049db889f4b9d41b", "pid": "941757471", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Zentralarabien&oldid=191114592"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Arabien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4346479-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)941757471", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4346479-8", "source": "GND"}], "variant_access_point": ["Innerarabien"], "authorized_access_point": "Zentralarabien"} 3 -2024-07-16 19:08:07.931908 2024-07-17 07:00:41.805976 31771831-783c-4201-8bf7-0170905768a4 {"md5": "eb11f8776c4b86c76802720d80d773a6", "pid": "199244766", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Detmold"}], "related": [{"authorized_access_point": "Richthofenstraße (Detmold)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7789111-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199244766", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7789111-9", "source": "GND"}], "classification": [{"name": "Haus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Richthofenstraße 16 (Detmold)"], "authorized_access_point": "Krullsche Haus (Detmold)"} 3 -2024-07-16 19:08:07.869453 2024-07-17 07:00:42.117751 407fbafd-8359-4128-a616-1300a550a7f4 {"md5": "897f7428a992cb47a14dc6d704e3082c", "pid": "199246211", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Galgenlake.Delbr%C3%BCck.1063258.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Delbrück"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7789283-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199246211", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7789283-5", "source": "GND"}], "classification": [{"name": "Straße", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Galgenlaake (Delbrück)"} 3 -2024-07-16 19:08:07.762974 2024-07-17 07:00:42.727915 4695088e-c533-4e98-8fdb-9ecf0e0a027e {"md5": "062d7d3f741e76ba2817f7bbec63ff9c", "pid": "199246815", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Freie_Scholle_(Bielefeld)&oldid=237251749", "Homepage Freie Schulle - https://www.freie-scholle.de/ueber-uns/unsere-wurzeln"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bielefeld"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7789354-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199246815", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7789354-2", "source": "GND"}], "classification": [{"name": "Arbeitersiedlung", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Wohnsiedlung", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Siedlung Heeper Fichten (Bielefeld)"], "authorized_access_point": "Heeper Fichten (Bielefeld)"} 3 -2024-07-16 19:08:07.622364 2024-07-17 07:00:43.024668 f31fd049-e92a-425d-843f-d091cfd4018e {"md5": "d353d6e4d7321b6ba3c145fd6db52175", "pid": "199248974", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_Detmold-Kernstadt&oldid=242933521"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Detmold"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7789613-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199248974", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7789613-0", "source": "GND"}], "classification": [{"name": "Brunnen", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Baudenkmal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Donopbrunnen (Detmold)"} 3 -2024-07-16 19:08:07.996073 2024-07-17 07:00:41.545101 8bdef936-044d-4d47-92d7-26b5d954e9f1 {"md5": "2315675f1a2f1dfe1d7486c645bfceb9", "pid": "19924474X", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Richthofenstra%C3%9Fe.Detmold.183819.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Detmold"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7789109-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)19924474X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7789109-0", "source": "GND"}], "classification": [{"name": "Straße", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Richthofenstraße (Detmold)"} 3 -2024-07-16 19:08:08.367649 2024-07-17 07:00:40.028817 a9a59579-8005-4d26-b445-e27de37ce370 {"md5": "3dfb14383681b0236491b08020e64529", "pid": "199240515", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Castrop-Rauxel"}], "related": [{"authorized_access_point": "Glückaufstraße (Castrop-Rauxel)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7788606-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199240515", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7788606-9", "source": "GND"}], "classification": [{"name": "Krankenhausbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["St. Rochus-Hospital (Castrop-Rauxel)", "Glückaufstraße 10 (Castrop-Rauxel)"], "authorized_access_point": "St. Rochus Hospital (Castrop-Rauxel)"} 3 -2024-07-16 19:08:08.286312 2024-07-17 07:00:40.309973 cfd8471b-4d9a-417b-901f-42fdac61b4e4 {"md5": "78874ae247f79a1bc335e45ba3d19ff6", "pid": "199240590", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Rieflinghausen&oldid=243763184"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Attendorn"}, {"authorized_access_point": "Helden-Rieflinghausen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7788614-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199240590", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7788614-8", "source": "GND"}], "authorized_access_point": "Attendorn-Rieflinghausen"} 3 -2024-07-16 19:08:08.548838 2024-07-17 07:00:39.41626 1633d227-bf24-450d-8c3a-7645f77d38bd {"md5": "e3ea5c6631e8ae9acb88b053b69ebb18", "pid": "19923860X", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Lortzingstra%C3%9Fe.Detmold.146305.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Detmold"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7788374-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)19923860X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7788374-3", "source": "GND"}], "classification": [{"name": "Straße", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Lortzingstraße (Detmold)"} 3 -2024-07-16 19:08:08.456701 2024-07-17 07:00:39.731322 eb1cd43e-2be0-43e6-89ff-dc9260aeacb9 {"md5": "b3372a8bea0cdacb6643a723a319cbcc", "pid": "199239436", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Coesfeld"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7788473-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199239436", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7788473-5", "source": "GND"}], "classification": [{"name": "Haus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Haus Schanze an der Billerbecker Straße (Coesfeld)"], "authorized_access_point": "Haus Schanze (Coesfeld)"} 3 -2024-07-16 19:08:08.109483 2024-07-17 07:00:40.944847 84130de4-b020-40b6-bf74-a2122368b0c3 {"md5": "14bab1af144c30720eebc5d56cc69580", "pid": "199244375", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bünde"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7789063-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199244375", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7789063-2", "source": "GND"}], "classification": [{"name": "Wasserburg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Rittersitz", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Castrum Blankena (Bünde)", "Haus Wervingen"], "authorized_access_point": "Nienburg (Bünde)"} 3 -2024-07-16 19:08:09.015339 2024-07-17 07:00:37.906956 4ae6c6b1-3bcc-4aa1-8528-c51920e82362 {"md5": "0bec207d1262fd4296d58543909fad65", "pid": "199218315", "note": [{"label": ["Homepage - https://wbc-coesfeld.de/deponie-coesfeld-hoeven"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Coesfeld"}, {"authorized_access_point": "Rosendahl"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7785996-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199218315", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7785996-0", "source": "GND"}], "classification": [{"name": "Deponie", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Deponie Coesfeld-Höven (Coesfeld)", "Deponie Coesfeld-Höven (Rosendahl)", "Siedlungsabfalldeponie des Kreises Coesfeld", "Zentraldeponie Coesfeld-Höven", "Zentraldeponie Coesfeld-Höven im Kreis Coesfeld", "Zentraldeponie Coesfeld-Höven im Kreis Coesfeld, NRW"], "authorized_access_point": "Deponie Coesfeld-Höven"} 3 -2024-07-16 19:08:08.913273 2024-07-17 07:00:38.17963 657870ad-8b10-4db9-94d2-6e4a4171650a {"md5": "2f16a45d8a626e97f2c8d0d0dbfb5a77", "pid": "199224196", "note": [{"label": ["Stand: 10.07.2024 - https://www.westfalen-blatt.de/owl/quellenhof-wird-abgerissen-2450879?pid=true&npg"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bielefeld"}, {"authorized_access_point": "Bielefeld-Gadderbaum"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7786666-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199224196", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7786666-6", "source": "GND"}], "classification": [{"name": "Bauernhof", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Quellenhof (Bielefeld-Gadderaum)", "Göllnerhof (Bielefeld)", "Hof Göllner (Bielefeld)"], "authorized_access_point": "Quellenhof (Bielefeld)"} 3 -2024-07-16 19:08:08.730688 2024-07-17 07:00:38.817394 a793ccd3-453f-42fe-b675-0c0a2a84a099 {"md5": "996aa3ce6c0b5bd315baa3bd80d49a7d", "pid": "199230811", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Merkurbrunnen_(Bielefeld)&oldid=243360167"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bielefeld"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7787435-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199230811", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7787435-3", "source": "GND"}], "classification": [{"name": "Brunnen", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Merkurbrunnen (Bielefeld)"} 3 -2024-07-16 19:08:09.073492 2024-07-17 07:00:37.587977 7c856df2-3986-40ae-9fe8-f58c8df236e5 {"md5": "e3e3bd5a0c0a28a55e22a8cbd2631473", "pid": "199215901", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Gerresheim&oldid=244302258#Gerricusplatz"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Düsseldorf"}, {"authorized_access_point": "Düsseldorf-Gerresheim"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7785731-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199215901", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7785731-8", "source": "GND"}], "classification": [{"name": "Platz", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Gerricusplatz (Düsseldorf)"} 3 -2024-07-16 19:08:09.420695 2024-07-17 07:00:36.406523 e38615d0-c0e9-49d6-a8ed-e5a974105e68 {"md5": "d53476c5ce51034fdb2e102223c1a050", "pid": "199211817", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7785281-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199211817", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7785281-3", "source": "GND"}], "classification": [{"name": "Waldgebiet", "type": "bf:ClassificationDdc", "classificationPortion": "rela"}], "authorized_access_point": "Deininghausen (Grutholz)"} 3 -2024-07-16 19:08:09.338141 2024-07-17 07:00:36.691909 2633f9ff-456b-43ab-a425-06959bb5f10a {"md5": "f0616e7bbfab1096b7c9402761c03f6c", "pid": "199212007", "note": [{"label": ["Homepage - https://www.christus-koenig-gemen.de/einrichtungen-christus-koenig-gemen/kirchen/verkuendigungskirche/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Gemen (Borken (Westf.))"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7785301-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199212007", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7785301-5", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Mariä Verkündigung (Gemen, Borken (Westf.))"], "authorized_access_point": "Verkündigungskirche (Gemen, Borken (Westf.))"} 3 -2024-07-16 19:08:09.697117 2024-07-17 07:00:35.561962 0ac6e4fc-f82a-4ffe-84b9-885ff3675be0 {"md5": "7d2742c6726941c0f4e2736169bb08c4", "pid": "199200955", "note": [{"label": ["Liste der Baudenkmäler in Bestwig - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_Bestwig&oldid=242141515"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bestwig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7784086-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199200955", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7784086-0", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Baudenkmal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Kreuzkirche (Bestwig)", "Kreuzkirche Bestwig (Bestwig)", "Ev. Kreuzkirche Bestwig (Bestwig)", "Evang. Kreuzkirche Bestwig (Bestwig)", "Evangelische Kirche (Bestwig)", "Auferstehungskirche (Bestwig)"], "authorized_access_point": "Evangelische Kreuzkirche (Bestwig)"} 3 -2024-07-16 19:08:09.608334 2024-07-17 07:00:35.866637 2da96c3f-0fa1-4d38-a0d3-a017ac7b4728 {"md5": "3e271725c337972c67b37e06b678ad7d", "pid": "199209464", "note": [{"label": ["Homepage - https://www.werre-park.de/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bad Oeynhausen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7785023-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199209464", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7785023-3", "source": "GND"}], "classification": [{"name": "Einkaufszentrum", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Werre-Park Bad Oeynhausen (Bad Oeynhausen)"], "authorized_access_point": "Werre-Park (Bad Oeynhausen)"} 3 -2024-07-16 19:08:09.250272 2024-07-17 07:00:36.921766 f96a1707-b60e-4671-88a4-598b9158ca1d {"md5": "2e9b4b72edec965f2aec8924219c262c", "pid": "19921462X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Coesfeld"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7785589-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)19921462X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7785589-9", "source": "GND"}], "classification": [{"name": "Kaserne", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Freiherr vom Stein Kaserne (Coesfeld)", "Kaserne Coesfeld (Coesfeld)", "Letter Bruch 9 (Coesfeld)"], "authorized_access_point": "Freiherr-vom-Stein-Kaserne (Coesfeld)"} 3 -2024-07-16 19:08:09.950353 2024-07-17 07:00:34.644906 313d888d-3e4a-45f1-9048-0065eb018449 {"md5": "5bbfaff2ef4f6809d9f334f864a29680", "pid": "19919596X", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Denkmalstra%C3%9Fe.Breckerfeld.323395.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Breckerfeld"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7783537-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)19919596X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7783537-2", "source": "GND"}], "classification": [{"name": "Straße", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Denkmalstraße (Breckerfeld)"} 3 -2024-07-16 19:08:10.249726 2024-07-17 07:00:33.56102 793fd48b-e007-48b6-8286-84ec798bcfaa {"md5": "d340c1f979d211f199466ffde3aefe59", "pid": "199189846", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Niedere+Stra%C3%9Fe.Brilon.428144.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Brilon"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7782864-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199189846", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7782864-1", "source": "GND"}], "classification": [{"name": "Straße", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Niedere Straße (Brilon)"} 3 -2024-07-16 19:08:10.165999 2024-07-17 07:00:33.810297 0936636c-cd37-49f8-8ea2-efd05a0f733f {"md5": "21cf8f0445a2ec84fa63a8dce0ef2e63", "pid": "199189854", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Derkere+Stra%C3%9Fe.Brilon.428121.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Brilon"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7782865-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199189854", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7782865-3", "source": "GND"}], "classification": [{"name": "Straße", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Derkere Straße (Brilon)"} 3 -2024-07-16 19:08:10.046317 2024-07-17 07:00:34.392049 9601ad85-3301-4a07-b9bd-1b0940723ca7 {"md5": "7bbdf83489ed7224605298e1c62df65a", "pid": "199189870", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Denkm%C3%A4ler_in_Brilon&oldid=238201542"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Brilon"}], "related": [{"authorized_access_point": "Derkere Straße (Brilon)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7782867-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199189870", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7782867-7", "source": "GND"}], "classification": [{"name": "Bürgerhaus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Fachwerkbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Baudenkmal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Derkere Strasse 26 (Brilon)", "Bürgerhaus Derkere Straße 26 (Brilon)"], "authorized_access_point": "Derkere Straße 26 (Brilon)"} 3 -2024-07-16 19:08:10.435973 2024-07-17 07:00:32.962509 e96fc143-eb3d-44da-82c1-4d25bf2e21be {"md5": "b121a0a1543a16f4100834e18169fe70", "pid": "199181993", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Breckerfeld"}, {"authorized_access_point": "Jakobus-Kirche Breckerfeld"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7782000-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199181993", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7782000-9", "source": "GND"}], "classification": [{"name": "Kanzel", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Evangelische Pfarrkirche (Breckerfeld) (Kanzel)"], "authorized_access_point": "Jakobus-Kirche Breckerfeld (Breckerfeld) (Kanzel)"} 3 -2024-07-16 19:08:10.339869 2024-07-17 07:00:33.251952 6e7e97c6-66b3-434b-99a3-dc5902c03fce {"md5": "5b2556a16d4157b460eb41fb9fbd3b76", "pid": "199187282", "note": [{"label": ["Homepage - https://steinhaegerhaeuschen.de"], "noteType": "dataSource"}, {"label": ["Seit 1894 mit rechtmäßigen Ausschank, 1929 zu einer Gaststätte mit dem Namen „Steinhäger Häuschen“ umgebaut."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Steinhagen (Kreis Gütersloh)"}], "related": [{"authorized_access_point": "Bahnhofstraße (Steinhagen, Kreis Gütersloh)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7782582-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199187282", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7782582-2", "source": "GND"}], "classification": [{"name": "Fachwerkbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Bahnhofstraße 2 (Steinhagen, Kreis Gütersloh)", "Steinhägerhäuschen (Steinhagen, Kreis Gütersloh)"], "authorized_access_point": "Steinhäger Häuschen (Steinhagen, Kreis Gütersloh)"} 3 -2024-07-16 19:08:10.69882 2024-07-17 07:00:32.136657 26d298fc-519a-4e65-8215-5829bdcaa714 {"md5": "0a8c0d732e91fc4df0f3ab76c49d91c2", "pid": "199168512", "note": [{"label": ["Homepage - https://www.alpincenter.com/bottrop/de"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bottrop"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7780518-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199168512", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7780518-5", "source": "GND"}], "classification": [{"name": "Wintersportanlage", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Skihalle", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Veltins Alpincenter (Bottrop)", "Alpincenter in Bottrop (Bottrop)", "Prosperstraße 299-301 (Bottrop)"], "authorized_access_point": "Alpincenter Bottrop (Bottrop)"} 3 -2024-07-16 19:08:10.612325 2024-07-17 07:00:32.434903 838dae41-e07b-407c-a90b-34eab50178e2 {"md5": "d463c9a4579cdc6c9d36ec861cea1e44", "pid": "19917332X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Dortberghaus&oldid=242681457"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Dortmund"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7781046-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)19917332X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7781046-6", "source": "GND"}], "classification": [{"name": "Verwaltungsbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Hotel", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Baudenkmal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Katharinenstraße 9 (Dortmund)"], "authorized_access_point": "Dortberghaus (Dortmund)"} 3 -2024-07-16 19:08:10.865095 2024-07-17 07:00:31.347413 aaa0d634-27d5-4f6c-b2b5-734b732624ee {"md5": "24c1b324f28f916271944201528a71ac", "pid": "19916035X", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Elisabethstra%C3%9Fe.Bochum.59159.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bochum"}, {"authorized_access_point": "Bochum-Wattenscheid"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7779618-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)19916035X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7779618-4", "source": "GND"}], "classification": [{"name": "Straße", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Elisabethstraße (Bochum-Wattenscheid)"], "authorized_access_point": "Elisabethstraße (Bochum)"} 3 -2024-07-16 19:08:10.78811 2024-07-17 07:00:31.59942 70520063-04ba-4265-b3b7-c9927705c229 {"md5": "9afde1fdabeee537e6018a564014152f", "pid": "199164347", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7780057-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199164347", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7780057-6", "source": "GND"}], "classification": [{"name": "Klosteranlage", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Baudenkmal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Klosteranlage des Ehemaligen Augustinerchorherren-Klosters Ewig (Attendorn)", "Ehemaliges Augustinerchorherrenkloster Ewig (Attendorn)", "Ehemaliges Klostergebäude Ewig (Attendorn)", "Ehemalige Klostergebäude des Klosters Ewig (Attendorn)", "Klosteranlage des ehemaligen Klosters Ewig (Attendorn)", "Ehemaliges Augustinerchorherren-Kloster Ewig (Attendorn)", "Ehemaliges Kloster Ewig (Attendorn)", "Gut Ewig (Attendorn)", "Ehem. Augustinerchorherren-Kloster Ewig, jetzt Justizvollzugsanstalt (Attendorn)", "Biggeweg 5 (Attendorn)", "Gefängnisanlage der Justizvollzugsanstalt Attendorn (Attendorn) (Klosteranlage des Ehem. Augustinerchorherren-Klosters Ewig)"], "authorized_access_point": "Klosteranlage des Ehem. Augustinerchorherren-Klosters Ewig (Attendorn)"} 3 -2024-07-16 19:08:11.03724 2024-07-17 07:00:30.725695 1df181ca-2cce-49d6-9f1a-19902a6b7515 {"md5": "46d0948b90e8ce509d271e2277a4a040", "pid": "199159882", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Florianturm&oldid=240093523", "Stadt Dortmund - https://www.dortmund.de/dortmund-erleben/freizeit-und-kultur/westfalenpark/der-park/florianturm/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Dortmund"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7779566-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199159882", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7779566-0", "source": "GND"}], "classification": [{"name": "Fernsehturm", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Aussichtsturm", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Florian (Dortmund)", "Dortmunder Florian (Dortmund)", "Florianturm im Westfalenpark (Dortmund)", "Florianstraße 2 (Dortmund)"], "authorized_access_point": "Florianturm (Dortmund)"} 3 -2024-07-16 19:08:10.95056 2024-07-17 07:00:31.008214 4fbb0c4f-7e13-4f84-8f12-66422887890c {"md5": "bfaea4e2c4c67702d838c211ee957abb", "pid": "199159998", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Wattenscheider+Hellweg.Bochum.229548.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bochum"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7779578-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199159998", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7779578-7", "source": "GND"}], "classification": [{"name": "Straße", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Wattenscheider Hellweg (Bochum)"} 3 -2024-07-16 19:08:11.686891 2024-07-17 07:00:28.202429 fd7f0e55-39e0-46e6-b285-bc285ec2fb75 {"md5": "b7ef2b21d6a21bc5bafcb0f46b1af7d1", "pid": "199077177", "note": [{"label": ["Wikipedia - https://de.m.wikipedia.org/wiki/Kunst_im_%C3%B6ffentlichen_Raum_in_Arnsberg"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Arnsberg"}, {"authorized_access_point": "Arnsberg-Neheim"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7770364-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199077177", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7770364-9", "source": "GND"}], "classification": [{"name": "Denkmal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Stele", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Totenleuchte an der Johanneskirche (Arnsberg)", "Totenleuchte (Arnsberg-Neheim)", "Totenstele (Arnsberg)"], "authorized_access_point": "Totenleuchte (Arnsberg)"} 3 -2024-07-16 19:08:11.600424 2024-07-17 07:00:28.505552 474f3d4a-9e36-484d-9c05-12a4af452efc {"md5": "4c4a88f7f82817fa42b3868eff3ff675", "pid": "199089973", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Balve&oldid=244726901#Stadtgliederung"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Balve"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7771795-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199089973", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7771795-8", "source": "GND"}], "variant_access_point": ["Haustadt (Balve)"], "authorized_access_point": "Balve-Haustadt"} 3 -2024-07-16 19:08:11.510015 2024-07-17 07:00:28.818118 6b1031e2-44b9-452c-809b-e9bb3608840d {"md5": "c07e54be36f44bae4a88257b517d8cf2", "pid": "199118167", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Barntrup"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7774950-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199118167", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7774950-9", "source": "GND"}], "classification": [{"name": "Denkmal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Ehrenmal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Hitlerstein (Barntrup)"} 3 -2024-07-16 19:08:12.048717 2024-07-17 07:00:27.011953 4520d567-297b-40b4-b5a2-e21d3a9f4e97 {"md5": "b980b29c3e9734a0af78cea509b57b15", "pid": "199013594", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Benekestra%C3%9Fe.Detmold.30979.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Detmold"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7763244-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199013594", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7763244-8", "source": "GND"}], "classification": [{"name": "Straße", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Benekestraße (Detmold)"} 3 -2024-07-16 19:08:11.949487 2024-07-17 07:00:27.301814 e8db5cea-9281-46fe-a045-c92331a99ad2 {"md5": "8dc28e94a79c29b108869272d8fb2336", "pid": "199022534", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Arnsberg"}, {"authorized_access_point": "Arnsberg-Holzen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7764246-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199022534", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7764246-6", "source": "GND"}], "classification": [{"name": "Haus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Haus Schlünder (Arnsberg-Holzen)", "Haus Schlünder im Luerwald (Arnsberg)", "Haus am Brüggestück (Arnsberg)"], "authorized_access_point": "Haus Schlünder (Arnsberg)"} 3 -2024-07-16 19:08:12.34821 2024-07-17 07:00:25.771121 a87ae66e-e999-43ad-889f-0e532e9f72a8 {"md5": "fa6d918bbd5d3b48ba879406e3380a07", "pid": "199002894", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7762049-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199002894", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7762049-5", "source": "GND"}], "classification": [{"name": "IHK-Bezirk", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Detmold (IHK-Bezirk)"], "authorized_access_point": "IHK-Bezirk Detmold"} 3 -2024-07-16 19:08:12.194228 2024-07-17 07:00:26.439503 cd64864a-85b9-4a8b-9b57-92608db2e16c {"md5": "f25f1cac93791b9b4952e4988945e5fc", "pid": "199011249", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Altst%C3%A4dter_Nicolaikirche&oldid=245915909"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bielefeld"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7762981-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199011249", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7762981-4", "source": "GND"}], "classification": [{"name": "Hallenkirche", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Ev. Altstädter Nicolaikirche (Bielefeld)", "Evangelische Altstädter Nicolaikirche (Bielefeld)", "Nicolaikirche (Bielefeld)", "Ev. Altstädter Nicolaikirche Bielefeld (Bielefeld)", "Nikolaikirche zu Bielefeld (Bielefeld)"], "authorized_access_point": "Altstädter Nicolaikirche (Bielefeld)"} 3 -2024-07-16 19:08:12.136972 2024-07-17 07:00:26.70953 1774671b-92c3-49cf-b22d-b9bc42e2fb0c {"md5": "eae98f26f3f4c2656fa1e05d2ec08f92", "pid": "199013276", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Kortumstra%C3%9Fe.Bochum.133165.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bochum"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7763208-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199013276", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7763208-4", "source": "GND"}], "classification": [{"name": "Straße", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Kortumstraße (Bochum)"} 3 -2024-07-16 19:08:13.053225 2024-07-17 06:58:17.499674 4fc86281-bb34-44dd-bdce-e87526964e71 {"md5": "9ac3d3234b9b5ff943c16eef0db3db2e", "pid": "043225608", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4322560-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043225608", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4322560-3", "source": "GND"}], "variant_access_point": ["Stadt Hagenow"], "authorized_access_point": "Hagenow"} 3 -2024-07-16 19:08:12.700646 2024-07-17 06:58:18.52266 98343f26-bef8-4d9e-a446-1fccf8dc49fb {"md5": "5c4510b8faeb714f706d40407ff9420a", "pid": "050551604", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=195150922"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Kreis Sonderburg"}, {"authorized_access_point": "Amt Sønderjylland"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5055160-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)050551604", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5055160-7", "source": "GND"}], "classification": [{"name": "Amt", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Amt Sonderburg", "Sønderborg Amt", "Sønderborg (Amt)", "Sonderburg (Amt)"], "authorized_access_point": "Amt Sønderborg"} 3 -2024-07-16 19:07:43.999853 2024-07-17 06:58:57.942585 da277d32-bcc1-4e96-94ac-35cc06420801 {"md5": "8d2604cbe47ab62520278f113c9e1db0", "pid": "107373157X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Baden (Niederösterreich)"}, {"authorized_access_point": "Schloss Weilburg (Baden, Niederösterreich)"}, {"authorized_access_point": "Doblhoffpark (Baden, Niederösterreich)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/107373157X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)107373157X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)107373157X", "source": "GND"}], "classification": [{"name": "Wasserspeier", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Schloss Weilburg (Baden, Niederösterreich) (Wasserspeier)"} 3 -2024-07-16 19:07:43.905742 2024-07-17 06:58:58.187599 794c059e-3838-4c31-a68f-63795c745839 {"md5": "d91de69202a7d4cc7b63b5aaffcc87eb", "pid": "1073950220", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Lahntalradweg"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Netphen"}, {"authorized_access_point": "Lahnstein"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1073950220", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1073950220", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1073950220", "source": "GND"}], "classification": [{"name": "Radwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Lahntal-Radweg", "Lahnradwanderweg"], "authorized_access_point": "Lahntalradweg"} 3 -2024-07-16 19:07:42.838685 2024-07-17 06:59:01.966256 e4a3607c-10d7-4f65-8495-03a62a0543d8 {"md5": "3065477d854243d928d298357ec42a49", "pid": "1079568352", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Laurentiuskirche_(Arnoldshain)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Schmitten (Hochtaunuskreis)"}, {"authorized_access_point": "Arnoldshain"}, {"authorized_access_point": "Schmitten-Arnoldshain"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1079568352", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1079568352", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1079568352", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Laurentiuskirche (Arnoldshain)", "Evangelische Pfarrkirche Sankt Laurentius (Schmitten, Hochtaunuskreis)", "Ev. Pfarrkirche St. Laurentius (Schmitten, Hochtaunuskreis)"], "authorized_access_point": "Laurentiuskirche (Schmitten, Hochtaunuskreis)"} 3 -2024-07-16 19:08:12.61263 2024-07-17 07:00:24.918009 8b4d6584-8ae0-42fb-9ff0-9a8348021dbf {"md5": "1f9e0324b6266d40e1dbe95126f3ce11", "pid": "199000239", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7761750-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199000239", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7761750-2", "source": "GND"}], "authorized_access_point": "Castrop (Region)"} 3 -2024-07-16 19:08:12.963305 2024-07-17 06:58:17.748856 2e9a0028-de06-4341-be2d-5bacbc26f60f {"md5": "1648e7936be51e98eac061ef4c3b713c", "pid": "043244793", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Paunsdorf"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4324479-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043244793", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4324479-8", "source": "GND"}], "variant_access_point": ["Paunsdorf (Leipzig)"], "authorized_access_point": "Leipzig-Paunsdorf"} 3 -2024-07-16 19:08:12.869435 2024-07-17 06:58:17.978581 5d97f972-9675-4b28-ac7b-69fd33fb38f1 {"md5": "b341f516cebc47bfbfbfb79c97a2ef19", "pid": "050039350", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5003935-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)050039350", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5003935-0", "source": "GND"}], "variant_access_point": ["Löszmig"], "authorized_access_point": "Leipzig-Löszmig"} 3 -2024-07-16 19:08:12.785061 2024-07-17 06:58:18.247609 a9d41075-3a01-431c-94a0-acbe7acb96ad {"md5": "4308cb84168011b86024ee3217fef890", "pid": "050133039", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Syosset&oldid=236501513", "GeoNames - https://www.geonames.org/5140402/syosset.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5013303-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)050133039", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5013303-2", "source": "GND"}], "authorized_access_point": "Syosset, NY"} 3 -2024-07-16 19:08:13.763738 2024-07-17 06:58:14.8388 732c45c4-f648-4ff0-a6b4-10840f6302c3 {"md5": "add47264d74b7d8e874962866d745130", "pid": "042627494", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Dreikaiserbäder"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4262749-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042627494", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4262749-7", "source": "GND"}], "classification": [{"name": "Seebad", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Seebad Heringsdorf", "Gemeinde Seebad Heringsdorf", "Ostseebad Heringsdorf", "Heringsdorf (Ostseebad)", "Ostseeheilbad Heringsdorf", "Gemeinde Ostseebad Heringsdorf", "Heringsdorf"], "authorized_access_point": "Heringsdorf (Seebad)"} 3 -2024-07-16 19:08:13.579532 2024-07-17 06:58:15.662314 67cc4cb0-414b-4c50-8016-944d1aab8ffb {"md5": "7465c87d3543beffc8186c4dd5d1752d", "pid": "042788714", "note": [{"label": ["Homepage - https://www.reichenbach-vogtland.de/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4278871-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042788714", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4278871-7", "source": "GND"}], "variant_access_point": ["Reichenbach, Vogtland", "Richenbach", "Richinbach", "Reichennbach", "Reichenboch", "Rechenbach", "Reichenbach"], "authorized_access_point": "Reichenbach im Vogtland"} 3 -2024-07-16 19:08:13.498001 2024-07-17 06:58:15.926157 a99823f5-e6e7-4568-8b08-92022153f911 {"md5": "1d826c3e3075e3e4f9f4e952fbb8a245", "pid": "042939526", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Prag-Smichow"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4293952-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042939526", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4293952-5", "source": "GND"}], "variant_access_point": ["Smíchov (Prag)"], "authorized_access_point": "Smichow (Prag)"} 3 -2024-07-16 19:08:13.413313 2024-07-17 06:58:16.194789 3901a4b7-f016-460e-a30f-299eb7c1d9eb {"md5": "684e03c76e81954f0902a4730fb4afd9", "pid": "042939550", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Prag"}, {"authorized_access_point": "Smichow (Prag)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4293955-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042939550", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4293955-0", "source": "GND"}], "variant_access_point": ["Prag-Smíchov", "Smíchov (Prag)", "Smichow (Prag)"], "authorized_access_point": "Prag-Smichow"} 3 -2024-07-16 19:08:13.216063 2024-07-17 06:58:16.744636 7aa61321-075d-424c-b97f-a76dc200e249 {"md5": "db7b8b3fba95c148d573d1b68eee3e99", "pid": "043138764", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Langschede&oldid=246152514"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Langschede"}, {"authorized_access_point": "Fröndenberg/Ruhr"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4313876-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043138764", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4313876-7", "source": "GND"}], "authorized_access_point": "Fröndenberg-Langschede"} 3 -2024-07-16 19:07:42.500743 2024-07-17 06:59:03.268685 ecb3f8c6-a8e8-40b8-9f25-42c9e59ba50b {"md5": "5e5649cc36bb9cf8f70ff3f8a0337ee2", "pid": "1081330236", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/wiki/Norbury_Park"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Leatherhead"}, {"authorized_access_point": "Dorking"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081330236", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081330236", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081330236", "source": "GND"}], "classification": [{"name": "Herrenhaus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Park", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Norbury Park (Leatherhead)"], "authorized_access_point": "Norbury Park"} 3 -2024-07-16 19:08:13.29882 2024-07-17 06:58:16.498861 40eb7490-c231-4176-9f3d-4585ad1100b9 {"md5": "e2b71ffc7aa01833f079a10dc0e2b0a1", "pid": "042976200", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Severo-Osetinskaja ASSR"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4297620-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042976200", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4297620-0", "source": "GND"}], "variant_access_point": ["Nordossetien-Alanien", "Republik Nordossetien-Alanien", "Respublika Sewernaja Ossetija-Alanija", "Respublika Severnaja Osetija-Alanija", "Severnaja Osetija-Alanija", "Respublikä Cägat Iryston-Alanijy", "Zägat Iryston", "Cägat Iryston", "Alani", "Alania", "North Ossetia", "Республикӕ Цӕгат Ирыстон-Аланийы"], "authorized_access_point": "Nordossetien"} 3 -2024-07-16 19:08:14.523913 2024-07-17 06:58:12.01285 ec9ea054-5c47-4c3c-a0ec-1d641149d9be {"md5": "37c3b0f3bc2a954579a8d8058a5d927a", "pid": "042299004", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4229900-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042299004", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4229900-7", "source": "GND"}], "classification": [{"name": "Berg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Mount Annie, Nev."} 3 -2024-07-16 19:08:14.431291 2024-07-17 06:58:12.322511 9e4634b7-e510-40cb-a3fd-3097daba50de {"md5": "18d09284fe032c60a6048694b37760f3", "pid": "042387175", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4238717-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042387175", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4238717-6", "source": "GND"}], "variant_access_point": ["ʿUnaiza", "ʿUnayza"], "authorized_access_point": "ʿUnayzah"} 3 -2024-07-16 19:08:14.344765 2024-07-17 06:58:12.644433 ce10e691-677f-49a9-acc6-b961438b1ee9 {"md5": "8f868d32784a0d979cb287a4504a0f4b", "pid": "042400228", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4240022-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042400228", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4240022-3", "source": "GND"}], "classification": [{"name": "Insel", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Ydra (Insel)", "Hydrea (Insel)", "Idra (Insel)", "Idrea", "Idhra (Insel)", "Údra"], "authorized_access_point": "Hydra (Insel)"} 3 -2024-07-16 19:08:14.125366 2024-07-17 06:58:13.483324 b7a21388-6468-4247-bad8-d666ab2c1ebc {"md5": "8c02748113adf523a0cec026af2e9014", "pid": "042492777", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4249277-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042492777", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4249277-4", "source": "GND"}], "classification": [{"name": "Verbandsgemeinde", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Bernkastel-Kues (Verbandsgemeinde)"], "authorized_access_point": "Verbandsgemeinde Bernkastel-Kues"} 3 -2024-07-16 19:08:14.034601 2024-07-17 06:58:14.034583 57ec2fe0-150e-42a6-8fba-311001309a91 {"md5": "100a3f74eb4c96c062c69ebd8354ee46", "pid": "042553628", "note": [{"label": ["Homepage - https://www.gnotzheim.de/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4255362-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042553628", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4255362-3", "source": "GND"}], "variant_access_point": ["Markt Gnotzheim"], "authorized_access_point": "Gnotzheim"} 3 -2024-07-16 19:08:13.849057 2024-07-17 06:58:14.58626 ce16bfbe-8840-4ef9-a898-7e9aca5a8235 {"md5": "c063b787c58f7aa77a3ac2b83b779fc7", "pid": "042602564", "note": [{"label": ["Homepage - https://stiftskirche.de/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Stuttgart"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4260256-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042602564", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4260256-7", "source": "GND"}], "classification": [{"name": "Stufenhallenkirche", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Stiftskirche zum Hl. Kreuz (Stuttgart)", "Ev. Stiftskirche Hl. Kreuz (Stuttgart)", "Evangelische Stiftskirche zum Heiligen Kreuz (Stuttgart)", "Stiftskirche (Stuttgart)", "Evangelische Stiftskirche Heilig Kreuz (Stuttgart)"], "authorized_access_point": "Stiftskirche zum Heiligen Kreuz (Stuttgart)"} 3 -2024-07-16 19:07:42.025614 2024-07-17 06:59:05.048196 f45bd557-8690-4660-adee-617bdca95063 {"md5": "9738c183d86de8f642ed1952dc25e6a6", "pid": "1081838655", "note": [{"label": ["Schloss Wyl - http://www.schloss-wyl.ch/weblica/index.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Schlosswil"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081838655", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081838655", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081838655", "source": "GND"}], "classification": [{"name": "Schloss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Schloss Wil (Schlosswil)", "Burg Wyl (Schlosswil)", "Burg Wil (Schlosswil)"], "authorized_access_point": "Schloss Wyl (Schlosswil)"} 3 -2024-07-16 19:07:41.586507 2024-07-17 06:59:06.435253 b5f5084d-d5d5-4dfe-9ad2-114de321d88d {"md5": "89834efd07f15f64d33cdd5f06bd5da0", "pid": "1081845031", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Frutigen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081845031", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081845031", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081845031", "source": "GND"}], "classification": [{"name": "Burgruine", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Armenhaus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Ehemalige Burg Tellenburg (Frutigen)"], "authorized_access_point": "Burgruine Tellenburg (Frutigen)"} 3 -2024-07-16 19:07:41.318603 2024-07-17 06:59:07.213331 90772bb7-eebd-4c65-9876-736e96c7335d {"md5": "8f5b9bb73d952314e7f01653e199c681", "pid": "1082153850", "note": [{"label": ["Internet - https://www.pizbube.ch/produkt/BC1E395D0E02F0325F3E329DF5C9EB51#.VrStslJRG70"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europäischer Fernwanderweg 8"}], "related": [{"authorized_access_point": "Devin (Slowakei)"}, {"authorized_access_point": "Duklapass"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1082153850", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1082153850", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1082153850", "source": "GND"}], "classification": [{"name": "Fernwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Weg der Helden"} 3 -2024-07-16 19:08:14.205607 2024-07-17 06:58:13.175501 8ddc0def-27e9-4dfa-86b2-fadaa782c2cd {"md5": "4aa9ae0f6c6b25794a20ece6fcedbc94", "pid": "042490448", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4249044-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042490448", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4249044-3", "source": "GND"}], "authorized_access_point": "Lesparre-Médoc"} 3 -2024-07-16 19:08:15.29884 2024-07-17 06:58:08.294516 7910563b-5761-4680-9bf0-98bb5c81e844 {"md5": "6c17a93b6e952f7ce7d3c3c8c80baf40", "pid": "041192443", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Zillis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4119244-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041192443", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4119244-8", "source": "GND"}], "classification": [{"name": "Saalkirche", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["St. Martin (Zillis)", "Reformierte Kirche St. Martin (Zillis)"], "authorized_access_point": "Sankt Martin (Zillis)"} 3 -2024-07-16 19:08:15.243032 2024-07-17 06:58:08.571689 120e037a-d681-4f4c-9129-ccfae1fb8c24 {"md5": "da373fcb530a82d36835fd6ac75582f1", "pid": "041194152", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=208608981"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Region Nordjylland"}, {"authorized_access_point": "Region Midtjylland"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4119415-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041194152", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4119415-9", "source": "GND"}], "classification": [{"name": "Amt", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Viborg Amt", "Amtskommune Viborg", "Amtsbezirk Viborg", "Viborg Amtskommune", "Viborg (Amt)"], "authorized_access_point": "Amt Viborg"} 3 -2024-07-16 19:08:15.154945 2024-07-17 06:58:09.691155 fca20264-7654-480a-b56b-5b14543a1469 {"md5": "a31efe0f361db6c81c3acdc516afd49d", "pid": "041370538", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Ostpreußen"}], "related": [{"authorized_access_point": "Preußen (Ordensstaat)"}, {"authorized_access_point": "Preußen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4137053-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041370538", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4137053-3", "source": "GND"}], "classification": [{"name": "Herzogtum", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Preußen (Herzogtum)", "Prūsijos Kunigaikštystė", "Ducal Prussia", "Prusy Książęce", "Prusko (vojvodstvo)", "Prusko (vévodství)"], "authorized_access_point": "Herzogtum Preußen"} 3 -2024-07-16 19:08:15.070475 2024-07-17 06:58:09.963069 f1029fb7-57ef-4765-b202-ddf976d2c98b {"md5": "337069959541cd87a9c4d84844eb1ae2", "pid": "041401174", "note": [{"label": ["Homepage - http://www.ltk.dk"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4140117-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041401174", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4140117-7", "source": "GND"}], "variant_access_point": ["Lyngby (Kopenhagen)", "Tårboek", "Lyngby", "Lyngby-Taarbaek"], "authorized_access_point": "Lyngby-Tårbaek"} 3 -2024-07-16 19:08:14.88013 2024-07-17 06:58:10.795162 76c7639f-a6d8-44a5-a91f-7db36b3714a5 {"md5": "37d88ebf59773172a9c99e7508affb9f", "pid": "042209927", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Kotor_Varo%C5%A1&oldid=246161593"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4220992-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042209927", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4220992-4", "source": "GND"}], "variant_access_point": ["Kotor-Varoš"], "authorized_access_point": "Kotor Varoš"} 3 -2024-07-16 19:08:14.790417 2024-07-17 06:58:11.099601 e78855a6-842e-424e-a202-bc9632627816 {"md5": "ce870bd581a822462a6e6b5bbef09805", "pid": "042236037", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Bernkastel-Kues"}, {"authorized_access_point": "Andel"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4223603-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042236037", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4223603-4", "source": "GND"}], "variant_access_point": ["Andel (Bernkastel-Kues)"], "authorized_access_point": "Bernkastel-Kues-Andel"} 3 -2024-07-16 19:07:40.748862 2024-07-17 06:59:09.326431 500dfca3-f4a5-49ea-8a12-310da9f2dce5 {"md5": "8739a066649a05f4879019b55ab980c5", "pid": "1099133092", "note": [{"label": ["Internet - http://www.allgaeu.de/wanderrouten?referralTopic=wandern"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1099133092", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1099133092", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1099133092", "source": "GND"}], "classification": [{"name": "Fernwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Rundwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Wandertrilogie-Allgäu"], "authorized_access_point": "Wandertrilogie Allgäu"} 3 -2024-07-16 19:07:40.315392 2024-07-17 06:59:10.795872 dd9d9554-aa15-4f01-98e2-daad18f85589 {"md5": "4f07c8343a61394ce8040dab1bd5e277", "pid": "1107605113", "note": [{"label": ["Internet - http://www.allgaeu.de/himmelsstuermer-route"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Wandertrilogie Allgäu"}], "related": [{"authorized_access_point": "Halblech"}, {"authorized_access_point": "Pfronten"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1107605113", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1107605113", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1107605113", "source": "GND"}], "classification": [{"name": "Fernwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Himmelsstürmer-Route"], "authorized_access_point": "Himmelsstürmer Route"} 3 -2024-07-16 19:08:14.971603 2024-07-17 06:58:10.525406 4e5fa35a-3f8a-45e5-8e82-4887e3e3e8a5 {"md5": "0184969d8086f6df67e49310ac4a6e90", "pid": "042005450", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Oberrheinisches Tiefland"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4200545-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042005450", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4200545-0", "source": "GND"}], "variant_access_point": ["Regio, Oberrhein"], "authorized_access_point": "Oberrheinisches Tiefland (Süd)"} 3 -2024-07-16 19:08:16.196118 2024-07-17 06:58:02.726027 631f4604-6f83-4774-8bbd-cf791edb1c74 {"md5": "eb30f6ad259467188fa89f550f1b215d", "pid": "040994716", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Gohlis (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4099471-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040994716", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4099471-5", "source": "GND"}], "variant_access_point": ["Gohlis (Leipzig)"], "authorized_access_point": "Leipzig-Gohlis"} 3 -2024-07-16 19:08:16.108219 2024-07-17 06:58:03.256502 de371e42-14a9-4df7-bd87-9da60463cb9c {"md5": "6b75fe6a916167664bd53d18db77b57b", "pid": "041011848", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4101184-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041011848", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4101184-3", "source": "GND"}], "authorized_access_point": "Niebüll"} 3 -2024-07-16 19:08:15.889696 2024-07-17 06:58:04.698052 7743ee7f-0b74-4ed4-8ac7-ea3240e6c958 {"md5": "028b1ab290f28b753fb82da415a11958", "pid": "04106125X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=St%C3%BCtzerbach&oldid=244058408"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Stützerbach (Kreis Arnstadt)"}, {"authorized_access_point": "Stützerbach (Kreis Schleusingen)"}, {"authorized_access_point": "Ilmenau-Stützerbach"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4106125-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04106125X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4106125-1", "source": "GND"}], "authorized_access_point": "Stützerbach"} 3 -2024-07-16 19:08:15.805327 2024-07-17 06:58:05.00996 4c5435c7-fbb0-4b01-ba53-9055ebc2be8a {"md5": "0f46129a27fca688fb6be511a781a224", "pid": "041063368", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Tihama"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4106336-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041063368", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4106336-3", "source": "GND"}], "variant_access_point": ["Nord-Tihama"], "authorized_access_point": "Tihama (Nord)"} 3 -2024-07-16 19:08:15.719297 2024-07-17 06:58:05.642156 cf448826-d1d2-4efa-a4ec-5145920d07a9 {"md5": "ef89d2b5de7839d764f6a6a85cb83583", "pid": "041084675", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4108467-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041084675", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4108467-6", "source": "GND"}], "authorized_access_point": "Wittmund"} 3 -2024-07-16 19:08:15.633372 2024-07-17 06:58:05.903618 9391f5eb-16e7-4556-84f7-1335dc64c457 {"md5": "7c284e25723039363d298d28292ed3f4", "pid": "041087828", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Wustrow_(Fischland)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4108782-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041087828", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4108782-3", "source": "GND"}], "variant_access_point": ["Wustrow", "Wustrow (Fischland)", "Wustro (Ostseebad)", "Wustrow (Fischland)", "Wustrow (Ribnitz-Damgarten)"], "authorized_access_point": "Wustrow Ostseebad"} 3 -2024-07-16 19:07:40.226796 2024-07-17 06:59:11.067055 c1d33481-a93d-472a-b8e0-daf5ee0d4fdf {"md5": "942877fcae630dccf08a947a9c4d6c77", "pid": "112132925X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Sakdrissi"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/112132925X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)112132925X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)112132925X", "source": "GND"}], "classification": [{"name": "Archäologische Stätte", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Bergbaugebiet", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Sakdrisi"], "authorized_access_point": "Sakdrissi"} 3 -2024-07-16 19:07:39.373418 2024-07-17 06:59:13.83522 6958492e-108a-4756-b6a9-9f69d7874066 {"md5": "06c4bbc01e8205a54d1ca7d2d3a11e2d", "pid": "113698612X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Hansaweg"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Herford"}, {"authorized_access_point": "Hameln"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/113698612X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)113698612X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)113698612X", "source": "GND"}], "classification": [{"name": "Fernwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Hansa Weg", "Hansawanderweg", "Hansa Wanderweg"], "authorized_access_point": "Hansaweg"} 3 -2024-07-16 19:08:16.023872 2024-07-17 06:58:04.394104 31a0dd3e-c334-44ba-835c-2e848e929648 {"md5": "ddab642c227a977d10a4b2702e214755", "pid": "041058445", "note": [{"label": ["Homepage - https://www.scheidegg.de/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4105844-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041058445", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4105844-6", "source": "GND"}], "authorized_access_point": "Scheidegg"} 3 -2024-07-16 20:07:08.791895 2024-07-17 06:57:00.404086 832e288d-9ef0-4b8b-85c8-e2cdabe14c50 {"md5": "09380eec523e6364b0d9f6e7d36de2e9", "pid": "000339784", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "USA"}, {"authorized_access_point": "USA"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/33978-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)000339784", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)33978-7", "source": "GND"}], "variant_access_point": ["CSA", "Confederate States", "Confederate States of America", "CSA (Confederate States of America)", "Verbündete Staaten von Amerika"], "authorized_access_point": "Konföderierte Staaten von Amerika"} 3 -2024-07-16 19:08:16.908276 2024-07-17 06:57:58.133511 16f53296-a17a-4092-b7a4-07948ee9ebe3 {"md5": "99a2af73b4b90a53f7572fec77230ce4", "pid": "040802558", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4080255-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040802558", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4080255-3", "source": "GND"}], "variant_access_point": ["Bandoeng", "Bandong", "Kota Kembang"], "authorized_access_point": "Bandung"} 3 -2024-07-16 19:08:16.729545 2024-07-17 06:57:59.524703 cabf8502-47d0-4b97-9222-72b7ae92bd85 {"md5": "74fb04c0483981e3ebe7a9b9248c99e4", "pid": "040865622", "note": [{"label": ["Homepage - http://www.fuerstenfeld.at", "Homepage - https://fuerstenfeld.gv.at"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Altenmarkt bei Fürstenfeld"}, {"authorized_access_point": "Übersbach"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4086562-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040865622", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4086562-9", "source": "GND"}], "variant_access_point": ["Stadtgemeinde Fürstenfeld", "Fürstenfeld Thermenhauptstadt"], "authorized_access_point": "Fürstenfeld"} 3 -2024-07-16 19:08:16.554681 2024-07-17 06:58:00.460137 b5f17afa-47c0-45bf-b4cf-459b79ddcecf {"md5": "0b68af4d83e7ba3a1755b94b8878ccc5", "pid": "040912833", "note": [{"label": ["Wohnplatz im Ortsteil Koßwig der Stadt Vetschau/Spreewald im Landkreis Oberspreewald-Lausitz"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Vetschau/Spreewald"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4091283-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040912833", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4091283-8", "source": "GND"}], "variant_access_point": ["Dubrawa", "Dubrau (Vetschau/Spreewald)"], "authorized_access_point": "Dubrau (Calau)"} 3 -2024-07-16 19:08:16.471187 2024-07-17 06:58:01.632548 f02fde57-6c03-4fe6-a026-3d423b7173a6 {"md5": "77f81d829177a6d3c1ecfc2a1048a75b", "pid": "040952789", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4095278-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040952789", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4095278-2", "source": "GND"}], "variant_access_point": ["Gemeinde Hille"], "authorized_access_point": "Hille"} 3 -2024-07-16 19:07:38.875587 2024-07-17 06:59:15.534406 15cd28bc-c95a-4324-a0d1-5b3c58fe8c81 {"md5": "df50ecd0e121010fcbf43b99f6aff71a", "pid": "1147654123", "note": [{"label": ["Internet - https://www.rheinhessen.de/rheinterrassenweg", "Wikipedia - https://de.wikipedia.org/wiki/Rheinterrassenweg"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Worms"}, {"authorized_access_point": "Mainz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1147654123", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1147654123", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1147654123", "source": "GND"}], "classification": [{"name": "Wanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Rheinterrassenweg", "Rhein-Terrassen-Weg"], "authorized_access_point": "RheinTerrassenWeg"} 3 -2024-07-16 19:07:38.521338 2024-07-17 06:59:16.646379 2974793e-c88b-405d-88a2-f5c34dc793e4 {"md5": "b851e3c235cb82965ee68eb6a577f15c", "pid": "1161625046", "note": [{"label": ["Internet - https://www.kaufbeuren-tourismus.de/aktiv/schlossparkradrunde.html", "Internet - https://www.schlosspark.de/schlosspark-erleben/schlossparkradrunde.html"], "noteType": "dataSource"}, {"label": ["219 km langer Radrundweg im Ostallgäu, als Ausgangsort wird Füssen genannt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1161625046", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1161625046", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1161625046", "source": "GND"}], "classification": [{"name": "Radwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Allgäuer Schlossparkradrunde"], "authorized_access_point": "Schlossparkradrunde im Allgäu"} 3 -2024-07-16 19:08:16.641142 2024-07-17 06:57:59.846364 29fab7be-4434-4b17-9bf4-ded72e0a669f {"md5": "fc41a210c90a7dfc4ef59de225ebce35", "pid": "040873862", "note": [{"label": ["unter - https://de.wikipedia.org/wiki/Bernkastel-Kues"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Bernkastel-Kues"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4087386-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040873862", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4087386-9", "source": "GND"}], "authorized_access_point": "Bernkastel"} 3 -2024-07-16 19:08:16.386399 2024-07-17 06:58:01.906186 07c90e6a-e857-4bc7-a562-98c1cf8093c2 {"md5": "b83dd7ecdd3bae1d31d9a63d14024910", "pid": "040956075", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Homburg (Nümbrecht)"}, {"authorized_access_point": "Nümbrecht"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4095607-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040956075", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4095607-6", "source": "GND"}], "authorized_access_point": "Nümbrecht-Homburg"} 3 -2024-07-16 19:08:20.166917 2024-07-17 06:57:00.713694 4f892ab2-770b-4727-9a63-f9cf53b00e29 {"md5": "e2a78a0aaf1313433bdd5d7594fe980e", "pid": "000347078", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Aalen"}, {"authorized_access_point": "Wasseralfingen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/34707-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)000347078", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)34707-3", "source": "GND"}], "authorized_access_point": "Aalen-Wasseralfingen"} 3 -2024-07-16 19:08:17.746127 2024-07-17 06:57:41.330468 2ac972b1-50d7-4396-8bed-b4b8b4ce3f2b {"md5": "af23556ade20de73e08160f5923c7392", "pid": "04060151X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4060151-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04060151X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4060151-1", "source": "GND"}], "variant_access_point": ["Tihamah"], "authorized_access_point": "Tihama"} 3 -2024-07-16 19:08:17.475911 2024-07-17 06:57:43.182797 e43a2c10-3cff-4b5f-b6e7-0c7efee7e9de {"md5": "920daed676c949a8b31ea3e5f056bb7f", "pid": "040657752", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4065775-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040657752", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4065775-9", "source": "GND"}], "classification": [{"name": "Becken", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Münstersche Bucht", "Münstersche Kreidebucht", "Münsterländer Bucht", "Münsterländer Becken"], "authorized_access_point": "Westfälische Bucht"} 3 -2024-07-16 19:08:17.386792 2024-07-17 06:57:43.706428 cd328c4c-989b-43b1-bf74-c0ff1f170834 {"md5": "b65e184868796e42405e78917da973a6", "pid": "040680223", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Kreis Schwiebus"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4068022-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040680223", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4068022-8", "source": "GND"}], "classification": [{"name": "Kreis", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Land Schwiebus", "Landkreis Züllichau-Schwiebus", "Züllichau-Schwiebus (Kreis)"], "authorized_access_point": "Kreis Züllichau-Schwiebus"} 3 -2024-07-16 19:08:17.253241 2024-07-17 06:57:48.052439 51a94562-a290-4e24-b508-910f60d0c78e {"md5": "6a66ad04575106567ad9d2253e6f496b", "pid": "040738582", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Bernkastel-Kues"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4073858-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040738582", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4073858-9", "source": "GND"}], "variant_access_point": ["Cues"], "authorized_access_point": "Kues"} 3 -2024-07-16 19:08:17.158578 2024-07-17 06:57:50.553394 6a4f7389-c5ad-4f53-b8eb-3538ca906f2e {"md5": "bec8c08ef53c3071b8b2df12a775af8e", "pid": "040754766", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Herzogtum Schleswig"}, {"authorized_access_point": "Dänemark"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4075476-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040754766", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4075476-5", "source": "GND"}], "variant_access_point": ["Südliches Jütland", "Jütland (Süd)", "Schleswig (Nord)", "Südjütland", "Nordslesvig", "Dänemark (Süd)", "Süddänemark", "Sønderjylland"], "authorized_access_point": "Nordschleswig"} 3 -2024-07-16 19:08:17.65895 2024-07-17 06:57:41.616225 fb75675e-64d0-4e8d-aa4c-72578ba07b5c {"md5": "974d3997179b4ffa4ed35846f8b1bfc2", "pid": "040604853", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Etrurien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4060485-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040604853", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4060485-8", "source": "GND"}], "classification": [{"name": "Toskaner", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Toscana", "Tuscany", "Tuszien", "Tuscien", "Regione Toscana", "Granducato Toscana", "Großherzogtum Toskana"], "authorized_access_point": "Toskana"} 3 -2024-07-16 19:07:38.16449 2024-07-17 06:59:17.706031 86f7c233-f1e8-4902-8264-c770fd04a969 {"md5": "1ef82d8eed7bcba6642643d49154e861", "pid": "116355815X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Ahlbeck_(Heringsdorf)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Heringsdorf (Seebad)"}, {"authorized_access_point": "Dreikaiserbäder-Ahlbeck"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116355815X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)116355815X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)116355815X", "source": "GND"}], "variant_access_point": ["Ahlbeck (Heringsdorf, Seebad)"], "authorized_access_point": "Heringsdorf-Ahlbeck"} 3 -2024-07-16 19:08:18.35985 2024-07-17 06:57:27.254403 756a3b41-e3be-46ff-a607-ab765ec5e34d {"md5": "6f018f19ab7de29089d9048aa367d7d3", "pid": "04037372X", "note": [{"label": ["Homepage - https://www.mannheim.de"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4037372-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04037372X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4037372-1", "source": "GND"}], "variant_access_point": ["Mannem", "Monnem", "Stadtgemeinde Mannheim", "Großherzoglich Badische Hauptstadt Mannheim", "Grh. Badische Hauptstadt Mannheim", "Badische Hauptstadt Mannheim", "Mannheim, Stadt im Quadrat", "Mannheim 2", "Stadt Mannheim", "Mannhemii", "Man(nhemium", "Mannehemium", "Interamnium"], "authorized_access_point": "Mannheim"} 3 -2024-07-16 19:08:18.309496 2024-07-17 06:57:27.524029 e83e6512-5b84-440e-adf9-cdcfd18c522c {"md5": "f1a215dd0270cf4e2a71c24287bb34a4", "pid": "040376044", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Oetzsch"}, {"authorized_access_point": "Gautzsch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4037604-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040376044", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4037604-7", "source": "GND"}], "variant_access_point": ["Stadt Markkleeberg", "Cleburg"], "authorized_access_point": "Markkleeberg"} 3 -2024-07-16 19:08:18.210632 2024-07-17 06:57:31.069401 8eb2a376-6226-4330-b713-3b89df268845 {"md5": "2d1b373cf31436f789af71db1cbf36bc", "pid": "04041146X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Nagold&oldid=218578103", "Homepage - https://www.nagold.de/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4041146-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04041146X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4041146-1", "source": "GND"}], "variant_access_point": ["Stadt Nagold", "Große Kreisstadt Nagold"], "authorized_access_point": "Nagold"} 3 -2024-07-16 19:08:18.116946 2024-07-17 06:57:32.92203 a532d6ed-627b-451f-b0f4-f4a1ef2004a9 {"md5": "bf8a6156dd5519ebee932fae0e7048ba", "pid": "040425134", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Landkreis Aurich"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4042513-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040425134", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4042513-7", "source": "GND"}], "variant_access_point": ["Norden (Ostfriesland)", "Norden (Ostfr.)", "Norden in Ostfriesland", "Norden i. Ostfr.", "Norden (Ostfriesland)", "Stadt Norden", "Nörden"], "authorized_access_point": "Norden (Landkreis Aurich)"} 3 -2024-07-16 19:08:18.02299 2024-07-17 06:57:37.375845 596886c5-a56c-401c-bf54-5cc8b4f62914 {"md5": "a59ccb41e60c1c26e2b65b2e005e8b80", "pid": "040516687", "note": [{"label": ["Homepage - http://www.saopaulo.sp.gov.br"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Provinz São Paulo"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4051668-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040516687", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4051668-4", "source": "GND"}], "classification": [{"name": "Staat", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Estado de São Paulo", "S. Paulo (Staat)", "Estado de S. Paulo"], "authorized_access_point": "São Paulo (Staat)"} 3 -2024-07-16 20:07:19.309174 2024-07-17 06:57:52.146753 aeda72ad-b865-445d-a848-27b00075583c {"md5": "852fe65e2350c8aae6ccd2c286dad2bb", "pid": "040763102", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4076310-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040763102", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4076310-9", "source": "GND"}], "variant_access_point": ["Hlavni Město Praha", "Hauptstadt Prag", "Prag (Kraj)", "Bezirk Prag", "Praha", "Prague", "Praga", "Praag"], "authorized_access_point": "Prag"} 3 -2024-07-16 19:08:19.126589 2024-07-17 06:57:12.932316 f40d2bb6-745f-4548-a4a5-cfd12dfec081 {"md5": "f158d517cbe1e250f0a40b0b79620012", "pid": "040093417", "note": [{"label": ["Homepage - https://www.calw.de"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Calw-Hirsau (1975)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4009341-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040093417", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4009341-4", "source": "GND"}], "variant_access_point": ["Stadt Calw", "Große Kreisstadt Calw", "Kalw"], "authorized_access_point": "Calw"} 3 -2024-07-16 19:08:19.039178 2024-07-17 06:57:16.940238 3765c1fe-fa62-4e3e-8bdf-5ace5e01b42a {"md5": "3f462632e9f20b09f25fff76edf7b902", "pid": "040183408", "note": [{"label": ["Homepage - https://www.freilassing.de/home/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4018340-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040183408", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4018340-3", "source": "GND"}], "variant_access_point": ["Stadt Freilassing"], "authorized_access_point": "Freilassing"} 3 -2024-07-16 19:08:18.952997 2024-07-17 06:57:19.382535 41dcf624-fef2-4a50-9227-0fd6bb815994 {"md5": "2bed05f7671b3a86579df2adea38ec36", "pid": "04024010X", "note": [{"label": ["Homepage - https://heidenheim.hahnenkamm.de/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4024010-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04024010X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4024010-1", "source": "GND"}], "variant_access_point": ["Heidenheim (Landkreis Weißenburg-Gunzenhausen)", "Heidenheim (Mittelfranken)", "Markt Heidenheim", "Heidenheim (am Hahnenkamm)", "Heidenheim (Hahnenkamm)", "Heidenheim am Hahnenkamm"], "authorized_access_point": "Heidenheim"} 3 -2024-07-16 19:08:18.864363 2024-07-17 06:57:21.666702 de030198-2715-4aa8-ba80-ac69d6cfff66 {"md5": "d3627f5cff65646c7fb6eedfcf8b6e58", "pid": "040288099", "note": [{"label": ["Homepage - https://www.judenburg.at"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4028809-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040288099", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4028809-2", "source": "GND"}], "variant_access_point": ["Stadtgemeinde Judenburg"], "authorized_access_point": "Judenburg"} 3 -2024-07-16 19:08:18.771266 2024-07-17 06:57:23.559439 5d4c946a-c85a-48f4-9102-67f7b3984cea {"md5": "e25347140da857fd3b455a1c55309752", "pid": "040296377", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Gross-Karben"}, {"authorized_access_point": "Klein-Karben"}, {"authorized_access_point": "Kloppenheim"}, {"authorized_access_point": "Okarben"}, {"authorized_access_point": "Rendel"}, {"authorized_access_point": "Petterweil"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4029637-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040296377", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4029637-4", "source": "GND"}], "authorized_access_point": "Karben"} 3 -2024-07-16 19:08:18.666305 2024-07-17 06:57:24.424177 a69d5a07-42ef-41b7-b8a8-bfe2fabeaf54 {"md5": "42ddb9881333eb781a00b44fe4af1bd7", "pid": "040304817", "note": [{"label": ["Homepage - https://www.kiel.de/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4030481-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040304817", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4030481-4", "source": "GND"}], "variant_access_point": ["Gross-Kiel", "Chilonium", "Landeshauptstadt Kiel", "Kilia Holsatorum", "Kilonum Holsatorum", "Chilomium", "Kilia", "Kiliae Holsatorum", "Kilonia", "Kylis", "Ķīle"], "authorized_access_point": "Kiel"} 3 -2024-07-16 19:08:18.564801 2024-07-17 06:57:25.586186 b2f7be24-85a4-4e34-b040-0feb89a04488 {"md5": "0f73ade8ccb3524c859efa14d472bc9f", "pid": "040346919", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Landkreis Gießen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4034691-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040346919", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4034691-2", "source": "GND"}], "variant_access_point": ["Laubach (Oberhessen)", "Laubach in Hessen"], "authorized_access_point": "Laubach (Landkreis Gießen)"} 3 -2024-07-16 19:07:37.58009 2024-07-17 06:59:19.731839 cbb93931-def8-4c2c-a402-e90527099f54 {"md5": "d02c2deab33831ac505a9371dd33347c", "pid": "1167694643", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Sardinien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1167694643", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1167694643", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1167694643", "source": "GND"}], "variant_access_point": ["Comune di San Basilio (Sardinien)", "Santu 'Asili 'e Monti"], "authorized_access_point": "San Basilio (Sardinien)"} 3 -2024-07-16 19:07:36.747338 2024-07-17 06:59:22.592247 6303ad0b-27ce-499b-bb3c-d7085b931672 {"md5": "a19b6580598402d73afc49625bb54bfb", "pid": "1180664485", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Belgier-Kaserne&oldid=195855777"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Graz"}, {"authorized_access_point": "Graz-Wetzelsdorf"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1180664485", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1180664485", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1180664485", "source": "GND"}], "classification": [{"name": "Kaserne", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Belgierkaserne (Graz)", "SS-Kaserne Wetzelsdorf"], "authorized_access_point": "Belgier-Kaserne (Graz)"} 3 -2024-07-16 19:08:19.790048 2024-07-17 06:57:02.064024 5fdafdd2-0dff-4d3e-8c16-3d5938113133 {"md5": "328373ba230eaf2dc99251ead71d7ee8", "pid": "004280768", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Egling"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1046115-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)004280768", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1046115-2", "source": "GND"}], "authorized_access_point": "Deining (Wolfratshausen)"} 3 -2024-07-16 19:08:19.69856 2024-07-17 06:57:02.974582 59eff571-17aa-4526-ba6c-da6ce797ea32 {"md5": "90118be60ea60de3f5fab7b10ef199a8", "pid": "007749023", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rønne"}], "related": [{"authorized_access_point": "Bornholms Regionskommune"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2128029-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)007749023", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)2128029-0", "source": "GND"}], "classification": [{"name": "Amt", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Bornholms Amt", "Bornholm (Amt)"], "authorized_access_point": "Amt Bornholm"} 3 -2024-07-16 19:08:19.614942 2024-07-17 06:57:04.376935 a1fa5c71-5473-422d-9d7b-481f84a1df2d {"md5": "f753520fcadd8c6704638658fdfb46b6", "pid": "030089050", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3008905-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)030089050", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)3008905-0", "source": "GND"}], "authorized_access_point": "Leipzig-Süd"} 3 -2024-07-16 19:08:19.439046 2024-07-17 06:57:04.957722 060e7b2e-808e-4e2d-9e81-e2a85dadf4a0 {"md5": "b631697d081c965e7b39a5613923fcc9", "pid": "030141605", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Grünberg (Landkreis Gießen)"}, {"authorized_access_point": "Stockhausen (Landkreis Gießen)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3014160-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)030141605", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)3014160-6", "source": "GND"}], "variant_access_point": ["Grünberg (Landkreis Gießen-Stockhausen)", "Stockhausen (Grünberg-Stockhausen)"], "authorized_access_point": "Grünberg-Stockhausen"} 3 -2024-07-16 19:07:36.406976 2024-07-17 06:59:23.714025 1c78271c-5177-4f53-95f4-dcfdd963b44c {"md5": "bcf4453d0f8b18b914276f84fb4873e9", "pid": "1184832803", "note": [{"label": ["Homepage - https://www.geopark-bayern.de/de/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bayern"}, {"authorized_access_point": "Bayern"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1184832803", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1184832803", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1184832803", "source": "GND"}], "classification": [{"name": "Geopark", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Česko-Bavorský Geopark"], "authorized_access_point": "Geopark Bayern-Böhmen"} 3 -2024-07-16 19:07:36.1466 2024-07-17 06:59:24.487644 a27b6c7d-6483-4d06-96da-a65139e412a0 {"md5": "c6f363bdcb9e5597110657b894a83486", "pid": "1190328259", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1190328259", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1190328259", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1190328259", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Świna", "Swine (Fluss)"], "authorized_access_point": "Swine"} 3 -2024-07-16 19:07:35.899025 2024-07-17 06:59:25.336728 73abcc93-5cb1-42fd-b8d4-8cf76379f15a {"md5": "909098c53c9ae4475505a70c92eb1715", "pid": "1191133729", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chemnitz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1191133729", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1191133729", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1191133729", "source": "GND"}], "classification": [{"name": "Veranstaltungshalle", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Kulturgebäude", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Mehrzweckhalle", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Stadthalle (Chemnitz)"], "authorized_access_point": "Stadthalle Chemnitz (Chemnitz)"} 3 -2024-07-16 19:07:35.300074 2024-07-17 06:59:27.715038 d08dae87-e6fc-4ad5-b751-9338b8c3594c {"md5": "f1e86709fa43abd1ed33abd107013380", "pid": "1222199440", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1222199440", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1222199440", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1222199440", "source": "GND"}], "variant_access_point": ["Kamajys", "Kamayay", "Komaje", "Kamajaj", "Камаяй"], "authorized_access_point": "Kamajai"} 3 -2024-07-16 19:08:19.524675 2024-07-17 06:57:04.672333 a7b06d01-812a-4d11-96b3-5b1c01db2787 {"md5": "ca3f7d9b8e36570dd809920012f07b82", "pid": "030125898", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Rodheim_vor_der_H%C3%B6he"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Rosbach-Rodheim"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3012589-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)030125898", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)3012589-3", "source": "GND"}], "variant_access_point": ["Rodheim (Höhe)", "Rottheim"], "authorized_access_point": "Rodheim vor der Höhe"} 3 -2024-07-16 19:07:33.797725 2024-07-17 06:59:33.258073 3792d034-996d-48fa-8045-116188b50bea {"md5": "3b20f436e5d22b18f586fc1513431f20", "pid": "1267606541", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Beskid_Makowski&oldid=211779153", "Wikipedia - https://www.wikidata.org/wiki/Q6740528"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Beskiden"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1267606541", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1267606541", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1267606541", "source": "GND"}], "classification": [{"name": "Gebirgszug", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Makower Beskiden (Westbeskiden)", "Maków Beskids", "Beskid Średni", "Mittelbeskiden"], "authorized_access_point": "Beskid Makowski"} 3 -2024-07-16 20:06:38.158242 2024-07-17 06:57:13.574955 ecdba4d3-b083-4dd7-93d9-3ab32bdebe80 {"md5": "df2ce409336a04f5ed29fe78c263964d", "pid": "040099377", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Taiwan"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4009937-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040099377", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4009937-4", "source": "GND"}], "classification": [{"name": "Chinesen", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Rotchina", "Zhongguo (Diguo)", "Zhongguo-Diguo", "Kaiserreich Zhongguo", "Zhongguo (Volksrepublik)", "Chung-kuo (Renmin-Gongheguo)", "Zhonghua-minguo (1911-1949)", "Chung-hua-min-kuo (1911-1949)", "China (Renmin-Gongheguo)", "Zhonghua-Renmin-Gongheguo", "Kaiserreich China", "China (Diguo)", "PRC", "Zhongguo (Renmin-Gongheguo)", "Shinkoku", "Chung-hua-jen-min-kung-ho-kuo", "Zhonghua (Renmin-Gongheguo)", "China (Volksrepublik)", "Volksrepublik China", "Zhongguo", "VR China", "China (People's Republic)", "People's Republic of China", "Zhong guo", "PRC (People's Republic of China)", "Zhonghua renmin gongheguo", "République populaire de Chine", "Chung-kuo kuo min cheng fu", "China (Republic : 1912-1949)", "Chine", "KNR (Kytajsʹkaja Narodnaja Respublika)", "Zhongguo (renmin gongheguo)", "Chinese People's Republic", "Kytajsʹkaja Narodnaja Respublika", "Chinese People’s Republic", "Republic of China (1912-1949)", "Chung-hua min kuo (1912-1949)", "Chung-kuo", "中华人民共和国"], "authorized_access_point": "China"} 3 -2024-07-16 20:06:37.174971 2024-07-17 06:57:18.790091 3775ce1e-1acf-490e-9894-4a1148bc3716 {"md5": "b9e39483774570f562d154a1fcef0733", "pid": "040220478", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Griechenland (Altertum)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4022047-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040220478", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4022047-3", "source": "GND"}], "classification": [{"name": "Griechen", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Elliniki Dimokratia", "Basileion tēs Hellados", "Yunanistan", "République Hellénique", "Ellada", "Greece", "Vasilion tis Ellados", "Hellenic Republic", "Grèce", "Royaume de Grèce", "Elli̲niki̲ Di̲mokratia", "Hellēnikē Demokratia", "Elli̱niki̱ Di̱mokratia", "Vasileion ti̲s Ellados", "Hellas", "Ellas", "Ellēnikē Dēmokratia", "Hellēnikē Dēmokratia", "Ἑλλάς", "Ελλάς", "Ελληνική Δημοκρατία", "Ἑλληνική Δημοκρατία"], "authorized_access_point": "Griechenland"} 3 -2024-07-16 20:06:37.810137 2024-07-17 06:57:56.288686 180fb1c4-f9f1-4119-9022-92268fa54d8d {"md5": "3d4ce70d737e068ddd00ae6412b2787e", "pid": "040792048", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Alpen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4079204-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040792048", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4079204-3", "source": "GND"}], "variant_access_point": ["Alpen (West)"], "authorized_access_point": "Westalpen"} 3 -2024-07-16 20:06:37.502951 2024-07-17 06:57:57.077521 29e2f4a8-f932-4dd4-9cb4-5e8323abff37 {"md5": "0c03a81251e19670417f1da6c894b7df", "pid": "040794857", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4079485-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040794857", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4079485-4", "source": "GND"}], "classification": [{"name": "Zentralafrikaner", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Äquatorialafrika", "Mittelafrika"], "authorized_access_point": "Zentralafrika"} 3 -2024-07-16 19:07:33.729219 2024-07-17 06:59:33.535531 020e3fd4-875e-4bb1-b701-0ad11d2d6cc7 {"md5": "f258957c96b6bca72c9c39bbb294052e", "pid": "1271173751", "note": [{"label": ["Wikipedia - https://da.wikipedia.org/w/index.php?title=N%C3%B8rre_Herred_(Bornholm)&oldid=9783302"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Amt Bornholm"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1271173751", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1271173751", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1271173751", "source": "GND"}], "classification": [{"name": "Bezirk", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Nørre Herred (Amt Bornholm)"} 3 -2024-07-16 19:07:33.139756 2024-07-17 06:59:35.819924 88d50644-2f87-45e1-aaed-1814f301a318 {"md5": "31f5b8017dd770aa865d532c0f1fe86c", "pid": "129673143X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=217307184"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Groß Tauersee"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129673143X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)129673143X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)129673143X", "source": "GND"}], "authorized_access_point": "Turza Wielka"} 3 -2024-07-16 20:06:40.250704 2024-07-17 06:57:11.566576 3cbc06ee-d0a2-4a17-9534-60324236a6eb {"md5": "f439e9b17ef9d82a76f21dd839964370", "pid": "040065146", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4006514-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040065146", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4006514-5", "source": "GND"}], "classification": [{"name": "See", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Bielersee", "Lac de Bienne"], "authorized_access_point": "Bieler See"} 3 -2024-07-16 20:06:41.558783 2024-07-17 06:57:20.696412 585f5371-a3e8-4d70-a717-3690a88871e0 {"md5": "ec4d024d4544954c0c31c517ee349ea1", "pid": "040284956", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4028495-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040284956", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4028495-5", "source": "GND"}], "classification": [{"name": "Japaner", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Empire du Japon", "Nihon-koku", "Zen-Nihon", "Zenkoku", "Nippon", "Japon", "Dainihon", "Dainippon", "Nihon (Staat)", "Nippon (Staat)", "Yapan", "Japão", "Nihon"], "authorized_access_point": "Japan"} 3 -2024-07-16 20:06:39.234455 2024-07-17 06:57:52.943672 cdad6617-e423-4a2f-8d0f-0f0631577c07 {"md5": "22c74c325ec885df824e57d03f01b182", "pid": "040772586", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4077258-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040772586", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4077258-5", "source": "GND"}], "variant_access_point": ["Sverigg", "Sweden", "Suède", "Konungariket Sverige", "Švecija", "Königreich Schweden", "Suecia", "Svezia", "Sverige", "Zviedrija", "Zweden", "Szwecja", "Kingdom of Sweden"], "authorized_access_point": "Schweden"} 3 -2024-07-16 20:06:38.900943 2024-07-17 06:57:56.576016 1e0c18a7-7ef6-4e9b-bfae-fcb4ea0a21c4 {"md5": "b6a2d8f5c338b9bb0c105dba4e49240d", "pid": "040792153", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europa"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4079215-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040792153", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4079215-8", "source": "GND"}], "classification": [{"name": "Westeuropäer", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Europa (West)"], "authorized_access_point": "Westeuropa"} 3 -2024-07-16 20:06:40.899028 2024-07-17 06:57:56.820531 453c4d1f-2a2c-447f-91ab-ff07e4fd4059 {"md5": "0dbecff163bc59090f4c0d242783101e", "pid": "040792374", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Kapitalistische Staaten"}, {"authorized_access_point": "Industriestaaten"}, {"authorized_access_point": "Westmächte"}, {"authorized_access_point": "Nichtwestliche Welt"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4079237-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040792374", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4079237-7", "source": "GND"}], "variant_access_point": ["Westliche Staaten", "Westen (Westliche Welt)", "Der Westen (Westliche Welt)"], "authorized_access_point": "Westliche Welt"} 3 -2024-07-16 20:06:40.582077 2024-07-17 06:58:05.303081 d5f5dacc-da71-4812-a723-d57facfe65ff {"md5": "76c0ff49224dae5492fca8f45995ab89", "pid": "041075102", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4107510-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041075102", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4107510-9", "source": "GND"}], "classification": [{"name": "Tal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Bagnes, Val de", "Vallée de Bagnes"], "authorized_access_point": "Val de Bagnes"} 3 -2024-07-16 20:06:39.919803 2024-07-17 06:58:06.445805 07662aca-17d3-44d3-a92f-b2878c2065fe {"md5": "a42a46987134523eaaeb87090b885cc8", "pid": "041152077", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Walliser Alpen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4115207-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041152077", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4115207-4", "source": "GND"}], "classification": [{"name": "Massiv", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Monte-Rosa-Massiv", "Rosa, Monte"], "authorized_access_point": "Monte Rosa"} 3 -2024-07-16 19:07:32.507369 2024-07-17 06:59:38.250898 238f9c28-0183-4446-86a3-d2ccc257cbfc {"md5": "06b748c011c45a523593e168466f68bd", "pid": "1330177274", "note": [{"label": ["Naturparkzentrum und Verwaltung - https://www.naturpark-ehw.de/weg/top-grenzwanderweg-schifflersgrund", "Grenzmuseum Schifflersgrund - https://www.grenzmuseum.de/lernen/bildungsort/grenzwanderweg"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Asbach-Sickenberg"}, {"authorized_access_point": "Bad Sooden- Allendorf"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330177274", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330177274", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330177274", "source": "GND"}], "classification": [{"name": "Rundwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Grenzwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Grenzwanderweg Schifflersgrund", "Rundwanderweg Schifflersgrund"], "authorized_access_point": "TOP-Grenzwanderweg Schifflersgrund"} 3 -2024-07-16 19:07:32.075601 2024-07-17 06:59:39.625274 6bf1b40d-99ad-4d57-ac83-258985a38371 {"md5": "2b4656440bc36b1c7fe615467fc73877", "pid": "1330436237", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Helmbrechts"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330436237", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330436237", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330436237", "source": "GND"}], "variant_access_point": ["Hampelhof (Helmbrechts-Hampelhof)"], "authorized_access_point": "Helmbrechts-Hampelhof"} 3 -2024-07-16 20:06:43.765556 2024-07-17 06:57:15.741035 5ca95318-ad3d-42f6-b466-d9a8fc3c376b {"md5": "bd2033ec30b0f0fd99a6ac2ddd4ff0a0", "pid": "040175812", "note": [{"label": ["Homepage - http://www.comune.fi.it"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4017581-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040175812", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4017581-9", "source": "GND"}], "variant_access_point": ["Comune di Firenze", "Città di Firenze", "Firenze", "Florentia", "Florenzija", "Firenza", "Florence", "Florentiae", "Fiorenza", "Florentina"], "authorized_access_point": "Florenz"} 3 -2024-07-16 20:06:43.446323 2024-07-17 06:57:29.267012 771f203b-cc80-49b2-83ce-cdadfbd80f40 {"md5": "8d4f55cfd3448ed34f2361c49189f564", "pid": "040400565", "note": [{"label": ["Bis ca. 1946 Benutzung von Mongol bichig (mongγol bic̆ig), ab ca. 1946 Benutzung der kyrillischen Schrift, heute Nutzung beider Schriften"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Mongolei (Landschaft)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4040056-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040400565", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4040056-6", "source": "GND"}], "variant_access_point": ["Äußere Mongolei", "BNMAU", "Bügd Najramdah Mongol Ard Uls", "Bügd Najramdakh Mongol Ard Uls", "MNR", "MPR", "Reṕublique Populaire de Mongolie", "Mongolie", "Bug͏̈d Nayramdah Mongol Ard Uls", "Mongol Neṕkoz͏̈taŕsasaǵ", "Ikh Mongol Uls", "Mongol Oron", "Mongolische Volksrepublik", "Mongolʹskaja Narodnaja Respublika", "Mongolian People's Republic", "Mongolia", "Mongol Uls", "Bůgd Nayramdah Mongol Ard Uls", "Bugd Najramdach Mongol Ard Uls", "Bugd Najramdach Mongol Ard Uls", "Монго́лия"], "authorized_access_point": "Mongolei"} 3 -2024-07-16 20:06:42.54447 2024-07-17 06:57:34.009896 1a125cef-d5e1-41b9-8a13-2afb8d069fa2 {"md5": "da7daf689af4d192228e009aab659b17", "pid": "040446603", "note": [{"label": ["Homepage - https://www.paris.fr"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4044660-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040446603", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4044660-8", "source": "GND"}], "variant_access_point": ["Lutetia", "Lutecia", "Lutetia Parisiorum", "Parisia", "Pa-li", "Ville de Paris", "P'ariz", "Paryžius", "Paříž", "Bārīs", "Bali (Paris)", "Pariž", "Parigi", "Parijs", "Lutitia", "Parisius", "Lutèce", "Commune de Paris", "Parisii", "Parrhisius", "Loticia Parisiorum", "Ville de Paris", "Lutetia"], "authorized_access_point": "Paris"} 3 -2024-07-16 20:06:43.131873 2024-07-17 06:57:37.642009 5c3a5791-e092-4960-b29d-89a080afed57 {"md5": "b0365b064aef383bf7f716e96dc05a7d", "pid": "040518507", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4051850-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040518507", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4051850-4", "source": "GND"}], "classification": [{"name": "Savoyarden", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Herzogtum Savoyen", "Sapaudia", "Sabaudia", "Saboia", "Herzogtum Savoyen-Piemont", "Savoie"], "authorized_access_point": "Savoyen"} 3 -2024-07-16 20:06:42.222749 2024-07-17 06:57:43.432687 ca2b7df6-613c-4a91-86a6-8aa149f634f2 {"md5": "a5ecf43156f8e4b5e584237187324a2b", "pid": "040658236", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Schweiz"}], "related": [{"authorized_access_point": "Französische Schweiz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4065823-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040658236", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4065823-5", "source": "GND"}], "variant_access_point": ["Westschweiz"], "authorized_access_point": "Schweiz (West)"} 3 -2024-07-16 20:06:41.887741 2024-07-17 06:58:08.898798 f924f4e6-f5d1-4a18-a1e3-23ea566cd24f {"md5": "346b28aa73996b6c64aaf691aa14f440", "pid": "041196058", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4119605-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041196058", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4119605-3", "source": "GND"}], "classification": [{"name": "Thurgauer", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}, {"name": "Kanton", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Grafschaft Thurgau", "Mostindien", "Thurgovie", "Turgovia", "Kanton Thurgau", "Thurgau (Kanton)"], "authorized_access_point": "Thurgau"} 3 -2024-07-16 20:06:45.731256 2024-07-17 06:57:28.684314 bbca63f9-2f39-4c99-bdad-068128c3efe8 {"md5": "e84f1fb2f52e766f7b63144ac3d76152", "pid": "040390586", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4039058-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040390586", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4039058-5", "source": "GND"}], "classification": [{"name": "Mexikaner", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["México", "Federación Méxicana", "Méxique (Etats-Unis)", "Méxique", "Estados Unidos Mexicanos", "Vereinigte Mexikanische Staaten", "Mexiko (Estados Unidos)", "República Mexicana", "United Mexican States", "Méjico (Estados Unidos)", "México (Estados Unidos)", "Mexique (Etats-Unis)", "Mexiko (Vereinigte Staaten)", "Federación Mexicana", "Mexique (Estados Unidos)", "United States of Mexico"], "authorized_access_point": "Mexiko"} 3 -2024-07-16 20:06:45.316303 2024-07-17 06:57:53.206617 0acb00fa-ec28-416b-b922-ac7985c3e4c9 {"md5": "a6dd511bbc5d7fe93ad0755f14e92aa4", "pid": "040772756", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Alpen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4077275-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040772756", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4077275-5", "source": "GND"}], "variant_access_point": ["Alpen (Schweiz)"], "authorized_access_point": "Schweizer Alpen"} 3 -2024-07-16 20:06:44.734667 2024-07-17 06:57:55.751347 eaa38e9e-31e2-4b17-be69-0acc2fb7aea2 {"md5": "7abe4fe26024644e37b257ce407aef12", "pid": "040789829", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Léman (Canton)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4078982-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040789829", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4078982-2", "source": "GND"}], "classification": [{"name": "Waadtländer", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}, {"name": "Kanton", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Vaud", "Vad", "Canton de Vaud", "Waadtland", "Kanton Waadt", "Waadt (Kanton)", "Etat de Vaud", "Vaud"], "authorized_access_point": "Waadt"} 3 -2024-07-16 20:06:46.031516 2024-07-17 06:58:15.115927 ff3248d4-893d-473a-9823-c3d544ee713d {"md5": "ef567944f38cafa3da7171eb884e48b5", "pid": "042750067", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Wallis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4275006-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042750067", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4275006-4", "source": "GND"}], "authorized_access_point": "Montana (Wallis)"} 3 -2024-07-16 20:06:45.038014 2024-07-17 06:57:55.16723 6a60e923-bb1d-4d4b-9a2c-4cc7dbd5a637 {"md5": "69a9fcf66a6868de03d73e93c2e1f010", "pid": "040785416", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Österreich-Ungarn"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4078541-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040785416", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4078541-5", "source": "GND"}], "classification": [{"name": "Magyaren", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Ungarische Räterepublik", "Königreich Ungarn", "Die Länder der ungarischen Krone", "Transleithanien", "Magyarország", "Magyar Köztársaság", "Magyar Tanácsköztársaság", "Government of the Hungarian Republic", "Zemalja Ugarske Krune", "VNR", "Ungern", "Ungarische Republik", "Republik Ungarn", "Ungarische Volksrepublik", "Volksrepublik Ungarn", "Magyar Népköztársaság", "Hungary", "Hungarian Republic", "Hongrie", "Vengerskaja Narodnaja Respublika", "Hungarian People's Republic", "HPR (Hungarian People's Republic)", "République Populaire Hongroise", "Ungarische VR", "Republic of Hungary", "Vengrija"], "authorized_access_point": "Ungarn"} 3 -2024-07-16 20:07:05.265337 2024-07-17 07:01:03.058449 d309d794-fb8c-46c7-87b4-a2b93895bb9a {"md5": "5fa2127b98ab94b3160bbf9a6589fcef", "pid": "952816407", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Wallis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4486516-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)952816407", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4486516-8", "source": "GND"}], "variant_access_point": ["Mittleres Wallis"], "authorized_access_point": "Mittelwallis"} 3 -2024-07-16 19:08:20.06888 2024-07-17 06:57:01.137486 5f605727-732d-4cdf-9e94-3688bbb61171 {"md5": "f7bd767ab147d331439504521187268a", "pid": "001101536", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/110153-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)001101536", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)110153-5", "source": "GND"}], "authorized_access_point": "Melton Mowbray"} 3 -2024-07-16 19:08:19.97321 2024-07-17 06:57:01.441809 f46528b9-3db7-4d4b-9363-1d8292e3bbfa {"md5": "bfe3e2319a8ab35db4c542971aa8aa00", "pid": "002631628", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Bolków"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/263162-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)002631628", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)263162-3", "source": "GND"}], "authorized_access_point": "Bolkenhain"} 3 -2024-07-16 20:06:47.801771 2024-07-17 06:57:48.903711 daa6735d-9aef-4fb6-8bf7-01fbcc8eafec {"md5": "fbc06d2c785433fb4c744ba126117d17", "pid": "040744256", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Madagaskar (Kolonie)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4074425-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040744256", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4074425-5", "source": "GND"}], "classification": [{"name": "Insel", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Madagassen", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Madagascar", "Repoblikan'i Madagasikara", "République de Madagascar"], "authorized_access_point": "Madagaskar"} 4 -2024-07-16 20:06:48.093355 2024-07-17 06:57:49.198789 7710ca55-fbdf-4bb5-a69e-fdc4a8fcf555 {"md5": "9c3aa11c8ac7852ecdc8790a7b63c79a", "pid": "040749002", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4074900-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040749002", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4074900-9", "source": "GND"}], "variant_access_point": ["Mittelmeerländer", "Mittelmeerstaaten", "Mittelmeer-Gebiet", "Mittelmeer-Region", "Mediterraneis", "Mediterraneum"], "authorized_access_point": "Mittelmeerraum"} 3 -2024-07-16 20:06:46.893315 2024-07-17 06:57:05.250965 c10568c8-004e-41cc-a01b-a11ec159d3db {"md5": "04434297685ba3b2be69e4cd6e894ce0", "pid": "040000079", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4000007-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040000079", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4000007-2", "source": "GND"}], "authorized_access_point": "Aachen (Region)"} 3 -2024-07-16 20:06:47.503503 2024-07-17 06:57:33.731836 10257843-7c9c-4ca5-9eca-d941f26fdb5e {"md5": "1ea1ac6278e544b7ccc6598f1d5aedc7", "pid": "040443817", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Israel (Altertum)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4044381-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040443817", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4044381-4", "source": "GND"}], "classification": [{"name": "Gelobtes Land", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Palestine", "Filasṭīn", "Falasṭīn", "Pālēśtīnā", "Palaestina", "ʾĒrēts Yiśrāʾel", "Eretz Yisrael", "Erez Israel", "Eretz Israel", "Heiliges Land"], "authorized_access_point": "Palästina"} 3 -2024-07-16 20:06:48.780685 2024-07-17 06:58:01.382919 6995f5b0-6bc5-4be5-8fab-be39e732e4b3 {"md5": "4cbd454cd2a819b6017292e53b1980f6", "pid": "040940888", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4094088-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040940888", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4094088-3", "source": "GND"}], "classification": [{"name": "Pass", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Col du Grand Saint Bernard", "Colle del Gran San Bernardo", "Summus Poeninus", "Grand St. Bernhard", "Gd-St-Bernard"], "authorized_access_point": "Großer Sankt Bernhard"} 3 -2024-07-16 20:06:50.031405 2024-07-17 06:57:32.430766 772140b2-b78b-4497-8f5e-8b5c3ed79ac2 {"md5": "ae9e4bb71ee2b809032e6e3ca04392aa", "pid": "040424820", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrika"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4042482-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040424820", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4042482-0", "source": "GND"}], "classification": [{"name": "Nordafrikaner", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Afrika (Nord)", "Kleinafrika"], "authorized_access_point": "Nordafrika"} 3 -2024-07-16 20:06:51.26429 2024-07-17 06:57:40.478355 9ce76635-aa41-44d1-b3b9-35bb9cf9ae61 {"md5": "de35ba741a4b41d47370c98edf66ec3f", "pid": "040584488", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pazifischer Raum"}, {"authorized_access_point": "Ferner Osten"}], "related": [{"authorized_access_point": "Asiatisch-Pazifischer Raum"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4058448-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040584488", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4058448-3", "source": "GND"}], "classification": [{"name": "Südostasiaten", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Asien (Südost)"], "authorized_access_point": "Südostasien"} 3 -2024-07-16 20:06:50.97553 2024-07-17 06:57:55.4842 1ca5c79e-36c8-4299-9af4-1bb277c86b9a {"md5": "54f23bc93d5d8074fc813f147bb109f8", "pid": "040786528", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Wallis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4078652-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040786528", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4078652-3", "source": "GND"}], "variant_access_point": ["Bas-Valais"], "authorized_access_point": "Unterwallis"} 3 -2024-07-16 20:06:50.684816 2024-07-17 06:58:01.085889 c1a4630c-0cb0-430b-ae6e-47cbecc6700a {"md5": "dff92268b9f9089b775708b805d8d3db", "pid": "040932087", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Jura"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4093208-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040932087", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4093208-4", "source": "GND"}], "authorized_access_point": "Französischer Jura"} 3 -2024-07-16 20:06:49.732196 2024-07-17 06:58:09.437448 5b97590e-538e-4427-b350-2e2f24c1ae7c {"md5": "3f9b30c746ffb76e9162a1c31d3f5c44", "pid": "041355350", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4135535-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041355350", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4135535-0", "source": "GND"}], "variant_access_point": ["USA (West)", "Westliche Vereinigte Staaten"], "authorized_access_point": "USA (Weststaaten)"} 3 -2024-07-16 19:07:29.884495 2024-07-17 06:59:47.571162 250d4cd9-9ab0-4d39-b1d9-4ab07320525d {"md5": "186196cc90624949c43ce59d1c7370b5", "pid": "1332735002", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Riesgau&oldid=226471032"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332735002", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332735002", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332735002", "source": "GND"}], "variant_access_point": ["Rezia"], "authorized_access_point": "Riesgau"} 3 -2024-07-16 19:07:29.07469 2024-07-17 06:59:50.655156 a232d6a1-ca83-44be-b569-3ed92937a790 {"md5": "853b8afe3a09d4e039f1ba6bef878244", "pid": "1333228880", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_Egloffstein&oldid=242696526#Bieberbach"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Egloffstein"}, {"authorized_access_point": "Egloffstein-Bieberbach"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333228880", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333228880", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333228880", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Evangelische Reformationsgedächtniskirche (Egloffstein-Bieberbach)", "Evangelische Reformationsgedächtniskirche (Bieberbach)", "Reformationsgedächtniskirche (Egloffstein)", "Reformationsgedächtniskirche (Egloffstein-Bieberbach)"], "authorized_access_point": "Evangelische Reformationsgedächtniskirche (Egloffstein)"} 3 -2024-07-16 19:07:31.445375 2024-07-17 06:59:42.089655 1cf7bb5b-c364-4209-8470-45dabb0711cf {"md5": "77f7cb268b653322e8137fa23d4b864b", "pid": "1331514282", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Gabersee&oldid=202232396"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Gabersee"}, {"authorized_access_point": "Wasserburg-Gabersee"}, {"authorized_access_point": "Attel"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331514282", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331514282", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331514282", "source": "GND"}], "variant_access_point": ["Gabersee (Attel-Gabersee)"], "authorized_access_point": "Attel-Gabersee"} 3 -2024-07-16 19:07:30.884621 2024-07-17 06:59:43.81906 30f9e5d7-cd73-4206-8002-d0e2cdb4dbae {"md5": "94edbfbb2514c1a3cc60c8674c526b1e", "pid": "1332031374", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=195150922"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Apenrade"}], "related": [{"authorized_access_point": "Amt Åbenrå"}, {"authorized_access_point": "Amt Sønderborg"}, {"authorized_access_point": "Amt Haderslev"}, {"authorized_access_point": "Amt Tondern"}, {"authorized_access_point": "Region Syddanmark"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332031374", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332031374", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332031374", "source": "GND"}], "classification": [{"name": "Amt", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Sønderjyllands Amt", "Sønderjyllands (Amt)", "Sønderjyllands Amtskommune", "Amtskommune Sønderjylland"], "authorized_access_point": "Amt Sønderjylland"} 3 -2024-07-16 20:06:53.173558 2024-07-17 06:57:16.345415 dc060e9f-0782-4e8e-8988-006c04e054ab {"md5": "a82b672ba3bde3cba452151a8302c74d", "pid": "040181456", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4018145-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040181456", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4018145-5", "source": "GND"}], "classification": [{"name": "Franzosen", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["France", "La France", "République Française", "France", "Francija", "Französische Republik", "Empire Français", "République Française", "France (Royaume)", "Royaume Français", "Fränkische Republik", "Frankreich (Kaiserreich)", "Frankreich (Königreich)", "Ṣārfat", "Repubblica Francese"], "authorized_access_point": "Frankreich"} 3 -2024-07-16 20:06:51.552824 2024-07-17 06:57:19.697005 6440bbf0-235a-4b5a-8b0e-cb0f7945abe6 {"md5": "4705ef39dea79ab10f2d83a9163ea59a", "pid": "040276678", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4027667-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040276678", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4027667-3", "source": "GND"}], "classification": [{"name": "Insel", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Iren", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Irland (Insel)", "Staat Irland", "Éire", "Republic of Ireland", "Poblacht na h'Eireann", "Republik Irland", "Saorstát Éireann", "Irish Free State", "Ireland", "Eire", "Ireland (Republic)", "Hibernia", "Ivernia"], "authorized_access_point": "Irland"} 3 -2024-07-16 20:06:52.173278 2024-07-17 06:57:30.557567 4c24f01c-1128-4d81-93b0-65d84e1ea370 {"md5": "a3b4be66676e59bdbb7871026688dadd", "pid": "040401499", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4040149-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040401499", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4040149-2", "source": "GND"}], "classification": [{"name": "Grafschaft", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Grafschaft Mömpelgard", "Pays de Montbéliard", "Montbéliard, Pays de", "Montbéliard (Grafschaft)"], "authorized_access_point": "Grafschaft Montbéliard"} 3 -2024-07-16 20:06:52.863864 2024-07-17 06:57:35.345704 d9f6cd0a-4ca3-44eb-9e95-84800da25915 {"md5": "1956dd098c16fb5fe9122a38436ec91b", "pid": "040475646", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Gallia Narbonensis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4047564-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040475646", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4047564-5", "source": "GND"}], "variant_access_point": ["Province de Provence", "Grand Gouvernement de Provence"], "authorized_access_point": "Provence"} 3 -2024-07-16 20:06:54.095644 2024-07-17 06:57:45.096276 27f0b1b6-e947-4015-bb19-b9a023d89d82 {"md5": "380defd33fc1e8c034d2aada41a9d3bb", "pid": "040690997", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4069099-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040690997", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4069099-4", "source": "GND"}], "classification": [{"name": "Faltengebirge", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Mittelgebirge", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Balkan (Gebirge)", "Balkangebirge", "Stara planina", "Haemus"], "authorized_access_point": "Balkan"} 3 -2024-07-16 20:06:51.866492 2024-07-17 06:57:59.261406 2d01cd11-2623-4db7-ba06-8255a61d34fa {"md5": "f898edd3d291a976114908ae6a38847a", "pid": "040859312", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Armenische Sozialistische Sowjetrepublik"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4085931-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040859312", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4085931-9", "source": "GND"}], "variant_access_point": ["Hayastan", "Republik Armenien", "Hayastani Hanrapetut'yun", "Hayastani Hanrapetowt̕iwn", "Armenija (1918 - 1920, 1991)", "Hayastani Hanrapetowt̕yown", "Hayastani Hanrapetowt'yown", "HH", "Republic of Armenia", "RA", "Armenia"], "authorized_access_point": "Armenien"} 3 -2024-07-16 20:06:53.735395 2024-07-17 07:00:48.899033 125f15bd-aee0-49e6-930e-647dec30be6f {"md5": "1b17513fba89281a618c65c791dbe3ba", "pid": "946153248", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4393124-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)946153248", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4393124-8", "source": "GND"}], "variant_access_point": ["Gemeinde Leuk", "Loèche", "Commune de Loèche"], "authorized_access_point": "Leuk"} 3 -2024-07-16 20:06:53.454242 2024-07-17 06:57:09.746577 6dc7af7d-236d-42b6-b5f4-ae3307a7db17 {"md5": "3cf22aa0e42b9e36b961a39652e7b87a", "pid": "040046206", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Schweiz (Nordwest)"}, {"authorized_access_point": "Basel-Landschaft"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4004620-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040046206", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4004620-5", "source": "GND"}], "variant_access_point": ["Regio Basiliensis"], "authorized_access_point": "Basel (Region)"} 3 -2024-07-16 20:06:55.465545 2024-07-17 06:57:33.448741 3e8d1bb0-727b-4462-a994-3d54b1ed9301 {"md5": "c42df9a7d405be12ffec2a204d8e1cf9", "pid": "040442578", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4044257-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040442578", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4044257-3", "source": "GND"}], "classification": [{"name": "Ozeanier", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Pazifische Inseln", "Südpazifik-Länder", "Südsee", "Südseeinseln", "Pazifischer Ozean (Inseln)", "Pazifikinseln"], "authorized_access_point": "Ozeanien"} 3 -2024-07-16 20:06:57.041348 2024-07-17 06:57:37.120267 7049aec3-1e4a-4954-97f1-3e761f3f5a2d {"md5": "b9082f4dbf9e33e3f86f2baaf6bb78aa", "pid": "04051658X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4051658-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04051658X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4051658-1", "source": "GND"}], "variant_access_point": ["Saint-Jacques-de-Compostelle", "Santiago", "Santiago (Compostela)"], "authorized_access_point": "Santiago de Compostela"} 3 -2024-07-16 20:06:54.713937 2024-07-17 06:57:38.258814 5bbb660e-019f-4cde-9f14-1fb35ec47851 {"md5": "b80de26fbd3ac6a2b1e57940e9d389fe", "pid": "040538818", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Helvetische Republik"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4053881-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040538818", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4053881-3", "source": "GND"}], "classification": [{"name": "Schweizer", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Suisse", "Switzerland", "Helvetia", "Helvetien", "Eidgenossenschaft (Schweiz)", "Svizzera", "Confédération Suisse", "Confederazione Helvetica", "Confederazione Federale", "Confédération Helvétique", "Confederaziun Svizra", "Svájci Hozzájárulás", "Svizzra", "Schweizerische Eidgenossenschaft", "Confederazione Svizzera", "Confoederatio Helvetica", "Swiss Confederation", "Svizra", "Suiza", "Confederación helvética", "Confédération helvétique", "Confederazione elvetica", "Confédération suisse", "Confederazione helvetica", "Helvetische Republik", "Schweytzerlandt", "Schweytz", "Schweitz", "Schweizer-Land", "Eydgenoschafft (Schweiz)", "Eydgnosschaft (Schweiz)", "Eydgnossschafft (Schweiz)", "Eydgnoßschafft (Schweiz)", "Eydgenossenschafft (Schweiz)", "Eidgnossschafft (Schweiz)", "Helvetische Eidgenossschaft", "Hélvetie", "Schwiz", "Switz", "Corpus helveticum"], "authorized_access_point": "Schweiz"} 3 -2024-07-16 20:06:55.031401 2024-07-17 06:57:39.406757 af8b07c9-f502-4321-a3af-4f9859e888e9 {"md5": "f27f82bfaacb072026062b6c8a2a6e32", "pid": "040552098", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Nordische Staaten"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4055209-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040552098", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4055209-3", "source": "GND"}], "classification": [{"name": "Skandinavier", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Skandinavische Staaten"], "authorized_access_point": "Skandinavien"} 3 -2024-07-16 20:06:55.762958 2024-07-17 06:58:07.273556 f4afa45c-c31b-401e-ab09-44fe3c9461f8 {"md5": "5b40047fa9392e9c57348390dc390061", "pid": "041170008", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4117000-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041170008", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4117000-3", "source": "GND"}], "classification": [{"name": "Gletscher", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Rhônegletscher"} 3 -2024-07-16 20:06:56.423153 2024-07-17 06:58:10.249526 645bbfee-d94b-4ef2-bd35-4820cbc25e20 {"md5": "0a4cf040f36cb381004a15d1332140a5", "pid": "041940458", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Schweiz"}], "related": [{"authorized_access_point": "Schweiz (West)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4194045-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041940458", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4194045-3", "source": "GND"}], "classification": [{"name": "Welschschweizer", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Schweiz (Französisches Sprachgebiet)", "Französischsprachige Schweiz", "Suisse romande", "Welsche Schweiz", "Romandie", "Welschland", "Welschschweiz"], "authorized_access_point": "Französische Schweiz"} 3 -2024-07-16 19:07:28.985043 2024-07-17 06:59:50.987613 96f0e897-905d-4d91-ac97-792a123d1a6d {"md5": "090c1c5235babc944fd9ac895c6a05ad", "pid": "1333255853", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Bravicea&oldid=242048890"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333255853", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333255853", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333255853", "source": "GND"}], "authorized_access_point": "Bravicea"} 3 -2024-07-16 19:07:28.719819 2024-07-17 06:59:51.88898 9bd08104-c8db-4cbc-9c1d-0e455f310145 {"md5": "1e9aeec4c83824784b8a4cabd8dfc9b4", "pid": "1333321090", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Siedlung_Bornheimer_Hang&oldid=244829487"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Frankfurt am Main"}, {"authorized_access_point": "Frankfurt-Bornheim"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333321090", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333321090", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333321090", "source": "GND"}], "classification": [{"name": "Wohnsiedlung", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Siedlung Bornheimer Hang", "Siedlung Bornheimer Hang (Frankfurt-Bornheim)", "Ernst-May-Siedlung (Frankfurt-Bornheim)"], "authorized_access_point": "Siedlung Bornheimer Hang (Frankfurt am Main)"} 3 -2024-07-16 20:06:57.334091 2024-07-17 06:57:44.769065 c826a1f5-d65d-49b8-8682-578dd9186107 {"md5": "a3c1d32ac1a58bbf5d84486d9b2c6aca", "pid": "04068878X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Asien"}], "related": [{"authorized_access_point": "Levante"}, {"authorized_access_point": "Alter Orient"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4068878-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04068878X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4068878-1", "source": "GND"}], "variant_access_point": ["Naher Orient", "Vorderasien", "Vorderer Orient", "Südwestasien", "Asien (Südwest)", "Nahost", "Middle East (Naher Osten)", "Moyen-Orient (Naher Osten)", "Westasien", "Asien (West)"], "authorized_access_point": "Naher Osten"} 3 -2024-07-16 20:06:58.932423 2024-07-17 07:01:06.710938 46793679-9291-4c35-9a48-5686e1a0ec56 {"md5": "23dacee3b6dfcb609d7c8bf686fb8c4e", "pid": "955884152", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4532554-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955884152", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4532554-6", "source": "GND"}], "classification": [{"name": "Tal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Vallée du Trient", "Trient, Vallée du", "Trient (Fluss) (Tal)"], "authorized_access_point": "Trienttal"} 3 -2024-07-16 20:06:58.032895 2024-07-17 07:01:27.348542 59a972c1-2876-47d4-b0db-ad82e72c345a {"md5": "558d9a2212536fcbee545a4f8d026a2a", "pid": "993248810", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Wallis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7652218-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)993248810", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7652218-0", "source": "GND"}], "variant_access_point": ["Französischsprachiges Wallis", "Valais romand", "Wallis (Französisches Sprachgebiet)"], "authorized_access_point": "Französisches Wallis"} 3 -2024-07-16 20:06:58.340002 2024-07-17 06:57:19.090749 50da11ab-e47e-4b85-a127-ae965c202bb2 {"md5": "ae32c34e750bc2345c3bd705a98a0672", "pid": "04022113X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4022113-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04022113X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4022113-1", "source": "GND"}], "classification": [{"name": "Insel", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Grönländer", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Grønland", "Kalaallit Nunaat", "Greenland"], "authorized_access_point": "Grönland"} 3 -2024-07-16 20:06:59.549191 2024-07-17 06:57:54.846455 02e020e3-9e7b-42b4-9084-00aab31405b1 {"md5": "d7c18fad3d47f7e195938fd85784936e", "pid": "04078228X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Siam"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4078228-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04078228X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4078228-1", "source": "GND"}], "classification": [{"name": "Thailänder", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Pradésa Dai", "Prathet Thai", "Muang Thai", "Thai", "Prathet T'hai", "Muang T'hai", "Pratet Thai", "Pradésa-Daiy", "Praḥ-desa-Daiy", "Rāja-ʾaāṇā-cǎkra-Daiy", "Königreich Thailand", "Kingdom of Thailand"], "authorized_access_point": "Thailand"} 3 -2024-07-16 20:06:57.615755 2024-07-17 06:58:17.255832 b453c247-5347-4fdf-be3a-15d9f40345e5 {"md5": "671955a0a47ecfa0507bf4a07df05a5d", "pid": "043187048", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4318704-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043187048", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4318704-3", "source": "GND"}], "variant_access_point": ["Bois de Finges", "Forêt de Finges"], "authorized_access_point": "Pfynwald"} 3 -2024-07-16 20:07:00.889122 2024-07-17 06:57:16.069267 4494355f-ab58-4d40-96f4-a211d4bb80da {"md5": "56b26e6dd6860b8540fd7856334c24f9", "pid": "040181413", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4018141-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040181413", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4018141-8", "source": "GND"}], "variant_access_point": ["Französischsprachige Welt", "Frankophone Länder", "Frankofone Länder", "Frankophonie (Französisches Sprachgebiet)", "Frankofonie (Französisches Sprachgebiet)", "Französischer Sprachraum"], "authorized_access_point": "Französisches Sprachgebiet"} 3 -2024-07-16 20:07:05.859406 2024-07-17 06:57:17.902906 9624e7b6-2c72-4e77-a5d7-46aa6baf8fe5 {"md5": "01d97a6a638c939b5d3fecbcfdde7189", "pid": "040201392", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4020139-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040201392", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4020139-9", "source": "GND"}], "authorized_access_point": "Genf (Region)"} 3 -2024-07-16 20:07:02.440199 2024-07-17 06:57:34.282886 3869d93e-47c8-4a05-af18-0c66d2d3d688 {"md5": "669e1de28032f4113c541c2ad55996aa", "pid": "04045312X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4045312-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04045312X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4045312-1", "source": "GND"}], "classification": [{"name": "Peruaner", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Perú", "República del Perú", "República de Perú", "Pérou", "República Peruana", "Republik Peru", "Piru"], "authorized_access_point": "Peru"} 3 -2024-07-16 19:08:17.571375 2024-07-17 06:57:42.674986 68b55be2-3bc7-4fca-b89f-c6af8be27fb1 {"md5": "b2a02a2ecff8241a8ad86b95d1b00398", "pid": "04062501X", "note": [{"label": ["Homepage - http://www.comune.venezia.it"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4062501-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04062501X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4062501-1", "source": "GND"}], "classification": [{"name": "Venezianer", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Veneţia", "Venecija", "Benetia", "Venesia", "Staat Venedig", "Republik Venedig", "Città di Venezia", "Kronland Venedig", "Venetische Provinzen", "Province Venete", "Provincie Venete", "Venezia", "Venecia", "Venice", "Venecio", "Venise", "Vinegia", "Comune di Venezia", "Venegia", "Vinetia", "Venetia", "Venetik", "Wenetik", "Serenissima (Venezia)", "Enetiesi", "Henetiesi", "Vineggia"], "authorized_access_point": "Venedig"} 4 -2024-07-16 20:07:01.220237 2024-07-17 06:57:46.429372 5696b314-99e0-4b07-bcd8-6276abc3837c {"md5": "17dadcbae5be2ad8ba083c1be95c26b4", "pid": "040714039", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Frankreich"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4071403-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040714039", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4071403-2", "source": "GND"}], "variant_access_point": ["Okzitanien", "Südfrankreich", "Midi", "Occitanien", "Occitanie", "Midi de la France"], "authorized_access_point": "Frankreich (Süd)"} 3 -2024-07-16 20:07:00.294604 2024-07-17 06:57:58.449108 603dd1ab-db88-4f15-b861-f0ab5817b34b {"md5": "0684f9dfade16b30748475f44266d888", "pid": "040802752", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4080275-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040802752", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4080275-9", "source": "GND"}], "classification": [{"name": "Hochstift", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Fürstbistum Basel", "Évêché de Bâle", "Principauté Episcopale de Bâle", "Basel (Fürstbistum)"], "authorized_access_point": "Hochstift Basel"} 3 -2024-07-16 20:07:01.845276 2024-07-17 06:58:03.578464 27c7f759-24f4-4a6d-843b-4b1094ebce67 {"md5": "abf565abe0adf3604ac2b3a5ad852520", "pid": "041037766", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4103776-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041037766", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4103776-5", "source": "GND"}], "classification": [{"name": "Tal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Rhône (Tal)"], "authorized_access_point": "Rhônetal"} 4 -2024-07-16 19:07:27.59009 2024-07-17 06:59:55.86025 6fd877db-46d3-434d-b2c8-1af2690c9abe {"md5": "1aef493e64f8bc3f7b3c222604abb549", "pid": "1334117918", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bad Driburg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334117918", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334117918", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334117918", "source": "GND"}], "classification": [{"name": "Stadtpark", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Spielplatz", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Mühlenpforte (Bad Driburg)"], "authorized_access_point": "Stadtgarten Bad Driburg (Bad Driburg)"} 3 -2024-07-16 19:07:26.281646 2024-07-17 07:00:00.705042 46dab441-b632-41b6-9de5-2e7cf6fc29cf {"md5": "1c78726288afa8ce3b48b039aeb1e088", "pid": "1334531153", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Villenkolonie_Buchschlag&oldid=235425024"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Buchschlag"}, {"authorized_access_point": "Dreieich-Buchschlag"}, {"authorized_access_point": "Dreieich"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334531153", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334531153", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334531153", "source": "GND"}], "classification": [{"name": "Villenviertel", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Villenkolonie Buchschlag (Dreieich)"} 3 -2024-07-16 20:07:04.313239 2024-07-17 06:57:26.968681 288a4e2a-5564-4e76-858c-a8e9d4a21b44 {"md5": "a7cb41228e01abaaacda302c19bc8f62", "pid": "04037100X", "note": [{"label": ["Homepage - https://www.comune.milano.it"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4037100-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04037100X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4037100-1", "source": "GND"}], "variant_access_point": ["Mediolanum", "Mediolanium", "Milano", "Comune di Milano", "Città di Milano", "Milan", "Mediolani", "Commune di Milano"], "authorized_access_point": "Mailand"} 3 -2024-07-16 20:07:13.489661 2024-07-17 06:57:41.923283 f2433715-bed9-4936-8533-6ba350caaa98 {"md5": "3d2b31ff7808b3542577c0ace5f4364e", "pid": "040611639", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Osmanisches Reich"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4061163-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040611639", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4061163-2", "source": "GND"}], "classification": [{"name": "Türken", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Türkiye", "Türkiye Cumhuriyeti", "TC", "République Turque", "Turkey", "T'owrk'ia", "Republic of Turkey", "Republik Türkei", "Turkish Republic", "Turquie"], "authorized_access_point": "Türkei"} 3 -2024-07-16 20:07:02.770627 2024-07-17 06:57:32.148768 4ef2626e-9a33-4700-aaf0-d6227df71df5 {"md5": "65ef74e4c2c19e1eae6432c98aa38c13", "pid": "040422038", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Holland (Königreich)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4042203-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040422038", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4042203-3", "source": "GND"}], "classification": [{"name": "Niederländer", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Staat Holland", "Vereinigte Niederlande", "Holland (Königreich)", "Batavische Republik", "Republik der Sieben Vereinigten Provinzen", "Holland (Niederlande)", "Koninkrijk der Nederlanden", "Nederland", "Nederlanden", "Netherlands", "Königreich der Niederlande", "Nederland (Gebiet unter Deutscher Besatzung, 1940-1945)", "Besetzte Niederländische Gebiete", "Het Besette Nederlandsche Gebied", "Pays-Bas (Niederlande)", "Royaume des Pays-Bas"], "authorized_access_point": "Niederlande"} 3 -2024-07-16 20:07:04.679448 2024-07-17 06:57:36.830751 a71e1bb2-31f4-4c5c-94f4-2fe7bb820cd1 {"md5": "2443e5a06fe4929305a1ba7cd5c49ace", "pid": "04051594X", "note": [{"label": ["Homepage - https://www.stadt.sg.ch"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4051594-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04051594X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4051594-1", "source": "GND"}], "variant_access_point": ["St.-Gall", "Sangallensis", "SG", "St. Gallen", "Saint-Gall", "San Gallo", "Saint Gall", "St. Gall", "Stadt Sankt Gallen", "Gallus-Stadt", "Sangallense coenobium", "Sancti Galli", "Santgalen", "Sangallum", "Sankt Gallen (Stadt)", "St. Gallen (Stadt)", "Grosser Gemeinderat Sankt Gallen", "Stadt St. Gallen", "Gemeinde Sankt Gallen"], "authorized_access_point": "Sankt Gallen"} 4 -2024-07-16 20:07:04.018851 2024-07-17 06:57:38.811274 f62a8587-8860-49f6-bd05-6798ee151b8c {"md5": "b8c6ddda49ae5a2a79bb4ea35de98d78", "pid": "040547809", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Nordasien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4054780-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040547809", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4054780-2", "source": "GND"}], "classification": [{"name": "Sibirier", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Sibir'", "Сиби́рь", "Sibiras", "Syberia", "Siberia", "Sibiř", "Sibír", "Sibīrija", "Siber"], "authorized_access_point": "Sibirien"} 3 -2024-07-16 20:07:10.895217 2024-07-17 07:01:16.196237 fecc956e-aa69-4d4e-8586-31a2acea8138 {"md5": "93bdaaeceb79c823ab4c41305b34c048", "pid": "964991500", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4696236-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)964991500", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4696236-0", "source": "GND"}], "variant_access_point": ["LaSagne (Neuenburg)", "Sagne, La"], "authorized_access_point": "La Sagne (Neuenburg, Schweiz)"} 3 -2024-07-16 20:07:03.387434 2024-07-17 06:57:50.309789 60ad1706-485f-4b08-bf68-7136910e16a8 {"md5": "e6ab7376ce86293b8f6ad5380c38f7cc", "pid": "040754715", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Norwegen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4075471-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040754715", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4075471-6", "source": "GND"}], "variant_access_point": ["Norwegen (Nord)", "Nördliches Norwegen"], "authorized_access_point": "Nordnorwegen"} 3 -2024-07-16 20:07:06.947236 2024-07-17 06:57:32.678067 050b372d-d077-4963-84eb-cd49ed73007e {"md5": "0462c201a3c71c70e47ac5f97ba942a3", "pid": "040424839", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Amerika"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4042483-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040424839", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4042483-2", "source": "GND"}], "variant_access_point": ["Amerika (Nord)"], "authorized_access_point": "Nordamerika"} 3 -2024-07-16 20:07:07.240605 2024-07-17 06:57:42.939106 59ba87db-9c59-48cb-be15-353ebdcbf79a {"md5": "8fdac395d4a391cd79b9ddf914963dbe", "pid": "040644669", "note": [{"label": ["Homepage - http://www.vs.ch/Navig/navig.asp?MenuID=13427"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4064466-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040644669", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4064466-2", "source": "GND"}], "classification": [{"name": "Walliser", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}, {"name": "Kanton", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Vallese", "Valais", "Kanton Wallis", "Canton du Valais", "Canton Valais", "Staat Wallis", "Etat du Valais", "République et Canton du Valais", "Valais"], "authorized_access_point": "Wallis"} 3 -2024-07-16 20:07:06.63332 2024-07-17 06:57:44.510372 70a97b78-8c47-4d75-80ec-102487c5e066 {"md5": "5edda32559ddea18317f945e3dacab4b", "pid": "040687899", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Islamische Staaten"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4068789-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040687899", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4068789-2", "source": "GND"}], "classification": [{"name": "Araber", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Arabische Länder", "Arabisches Sprachgebiet"], "authorized_access_point": "Arabische Staaten"} 3 -2024-07-16 19:07:25.641887 2024-07-17 07:00:02.706376 241ae07b-25e5-4108-b458-4f6a5a730ab9 {"md5": "745f54d03302ea46ce566641935d8d02", "pid": "1334554471", "note": [{"label": ["Wikipedia - https://it.wikipedia.org/w/index.php?title=Santuario_della_Madonna_del_Bosco_(Ozegna)&oldid=138833812"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Ozegna"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334554471", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334554471", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334554471", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Madonna del Bosco (Ozegna)"], "authorized_access_point": "Santuario della Madonna del Bosco (Ozegna)"} 3 -2024-07-16 20:07:08.198315 2024-07-17 06:57:55.990172 1ca2f2a8-d7b6-4597-b13a-a77de28c616b {"md5": "76021c849bd24d566cfe3d0dd4074249", "pid": "04079203X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Afrika"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4079203-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04079203X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4079203-1", "source": "GND"}], "classification": [{"name": "Westafrikaner", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Afrika (West)"], "authorized_access_point": "Westafrika"} 3 -2024-07-16 19:07:25.731362 2024-07-17 07:00:02.455262 cb534278-9b22-4443-9613-4912da11c75f {"md5": "968276153d5a9002b9154c4022b3bd58", "pid": "1334554218", "note": [{"label": ["Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://map.search.ch/Luzern,Weggisgasse?pos=665870,211719&zoom=17; https://www.geo.lu.ch/map/kulturdenkmal/?FOCUS=2665900:1211665:1000&BASEMAP=G"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Luzern"}, {"authorized_access_point": "Altstadt (Luzern)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334554218", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334554218", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334554218", "source": "GND"}], "classification": [{"name": "Gasse", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Straße", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Weggisgasse (Luzern)"} 3 -2024-07-16 20:07:09.418276 2024-07-17 06:57:14.078476 d8345dd0-3cb0-44c4-ad65-f71235e9988a {"md5": "7fd1be3191c3d1a6f3d0be64f0e42428", "pid": "040118908", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Deutschland (Gebiet unter Alliierter Besatzung)"}, {"authorized_access_point": "Deutschland (Gebiet unter Alliierter Besatzung, Sowjetische Zone)"}, {"authorized_access_point": "Ostdeutschland"}, {"authorized_access_point": "Deutschland"}, {"authorized_access_point": "Deutschland (Östliche Länder)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4011890-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040118908", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4011890-3", "source": "GND"}], "variant_access_point": ["Deutsche Demokratische Republik", "DDR", "Deutschland (1949-1990, DDR)", "German Democratic Republic", "GDR", "République Démocratique Allemande", "RDA", "Germanskaja Demokratičeskaja Respublika", "Demokratičeskaja Respublika (Deutschland, DDR)", "Democratic Republic (Deutschland, DDR)", "Demokratische Republik (Deutschland, DDR)", "Niemiecka Republika Demokratyczna", "NRD", "Ǧumhūrīyat Almāniyā ad-Dīmuqrāṭīya", "República Democrática Alemana", "Saksan Demokraattisen Tasavallan", "Repubblica Democratica Tedesca", "Mitteldeutschland (DDR)", "Ostdeutschland (DDR)", "East Germany (DDR)", "Ostzone"], "authorized_access_point": "Deutschland (DDR)"} 3 -2024-07-16 20:07:10.559987 2024-07-17 06:57:14.652331 9a9a1f02-af1d-47ec-a4b4-b0369d8fc47d {"md5": "e96077ae0ac96b6891b59a2f3425fd25", "pid": "04014500X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4014500-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04014500X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4014500-1", "source": "GND"}], "classification": [{"name": "Elsässer", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Alsace"], "authorized_access_point": "Elsass"} 3 -2024-07-16 20:07:10.275594 2024-07-17 06:57:35.048759 4caf12e8-7e47-4c9a-93f8-53104a0243f6 {"md5": "bea561a765c6fa1dcf771920c950f3b8", "pid": "040471942", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Herzogtum Preußen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4047194-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040471942", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4047194-9", "source": "GND"}], "variant_access_point": ["Brandenburg-Preußen", "Königreich Preußen", "Preußische Staaten", "Preußischer Staat", "Der Preußische Staat", "Königlich Preußische Staaten", "Prusy Królewskie", "Königlich Preußen", "Prussia"], "authorized_access_point": "Preußen"} 3 -2024-07-16 20:07:08.463835 2024-07-17 06:57:51.847136 814e2f8f-cef3-43cb-b89a-a92d878c032c {"md5": "348b73b8f371f66c9336f324be037bf9", "pid": "040757390", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europa"}], "related": [{"authorized_access_point": "Ostblock"}, {"authorized_access_point": "Ostmitteleuropa"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4075739-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040757390", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4075739-0", "source": "GND"}], "classification": [{"name": "Osteuropäer", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Europa (Ost)", "Östliches Europa", "Central Europe (Osteuropa)"], "authorized_access_point": "Osteuropa"} 3 -2024-07-16 20:07:09.111547 2024-07-17 06:57:54.055689 939737e8-21c3-4220-a19f-1ff21d1e670e {"md5": "a1145d79c73c2e4bc6ac69ffccb43630", "pid": "040780120", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Nieuwe Republiek"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4078012-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040780120", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4078012-0", "source": "GND"}], "classification": [{"name": "Südafrikaner", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}, {"name": "Staat", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Südafrikanische Union", "Südafrikanische Republik", "Republik Südafrika", "Azania", "Republic of South Africa", "South Africa", "South African Republic", "Union of South Africa", "Republiek van Suidafrika", "RSA", "Suid-Afrika", "Suidafrika", "Suid Africa", "Republiek van Suid-Afrika", "Unie van Zuid-Africa", "Unie van Suid-Afrika", "Zuid-Africa", "Zuid-Afrikaansche Republiek", "Zuidafrikaansche Republiek", "ZAR (abku)", "Repaboliki ya Aferika Borwa", "Riphabulika ya Afurika Tshipembe", "Union von Südafrika"], "authorized_access_point": "Südafrika"} 3 -2024-07-16 19:07:25.193824 2024-07-17 07:00:04.366286 c489b4a9-11ec-43aa-b976-957588f9f367 {"md5": "83d9cc2d80903f9a512b93919dd5daeb", "pid": "133463209X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Rieflinghausen&oldid=243763184"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Helden (Attendorn)"}, {"authorized_access_point": "Attendorn-Rieflinghausen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133463209X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133463209X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133463209X", "source": "GND"}], "authorized_access_point": "Helden-Rieflinghausen"} 3 -2024-07-16 20:07:12.580737 2024-07-17 06:57:11.855056 13d25ab8-2694-40d7-9644-6eb79368df88 {"md5": "9d28431026ee9086f3b8b151259a6607", "pid": "040076075", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4007607-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040076075", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4007607-6", "source": "GND"}], "variant_access_point": ["República de Bolivia", "Republik Bolivien", "Estado Plurinacional de Bolivia", "Bolivia"], "authorized_access_point": "Bolivien"} 3 -2024-07-16 20:07:11.875442 2024-07-17 06:57:47.507861 8e731b7d-45e0-4606-9f01-87c501b92f71 {"md5": "97f620ed384a6f719a6b9008395f4339", "pid": "040731723", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Arabische Staaten"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4073172-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040731723", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4073172-8", "source": "GND"}], "classification": [{"name": "Islam", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Islamischer Orient", "Islamische Länder", "Islamische Regionen"], "authorized_access_point": "Islamische Staaten"} 3 -2024-07-16 20:07:12.893599 2024-07-17 06:57:49.768981 58775d77-ac49-4993-b513-2721f1776a38 {"md5": "53f0a8efdb7ebe2962cc78205ff83894", "pid": "040753034", "note": [{"label": ["Homepage - https://www.neuchatelville.ch"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Schweiz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4075303-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040753034", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4075303-7", "source": "GND"}], "classification": [{"name": "Neuenburger", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Stadt Neuenburg", "Neuchâtel", "Neuchâtel", "Neufchâtel", "Ville de Neuchâtel"], "authorized_access_point": "Neuenburg (Schweiz)"} 3 -2024-07-16 19:07:23.286286 2024-07-17 07:00:12.240185 90acd255-dd4f-44d5-9165-3b6010fcf492 {"md5": "e8b874582010c0df118e8b1c96c629a4", "pid": "1334789134", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Ostentrop&oldid=243213300"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Finnentrop-Ostentrop"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334789134", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334789134", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334789134", "source": "GND"}], "authorized_access_point": "Ostentrop"} 3 -2024-07-16 19:07:23.196698 2024-07-17 07:00:12.582122 5ad05ac3-1ccb-4aba-92f8-7aca6dccc713 {"md5": "0d61925c469a05b0f6bbedef3065e823", "pid": "1334801304", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Gradberg&oldid=214683168"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bad Driburg"}, {"authorized_access_point": "Nordrhein-Westfalen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334801304", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334801304", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334801304", "source": "GND"}], "classification": [{"name": "Naturschutzgebiet", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["NSG Gradberg", "Gradberg"], "authorized_access_point": "Naturschutzgebiet Gradberg"} 3 -2024-07-16 19:07:22.591113 2024-07-17 07:00:14.712137 8744df06-e8df-40da-abb8-0def692d3c2b {"md5": "04367a688edcae98b6084ec91eef7490", "pid": "1334874387", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Großwilfersdorf-Hainersdorf"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334874387", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334874387", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334874387", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Pfarrkirche Heiliger Georg (Hainersdorf)", "Pfarrkirche Hl. Georg (Hainersdorf)"], "authorized_access_point": "Sankt Georg (Hainersdorf)"} 3 -2024-07-16 19:07:21.997833 2024-07-17 07:00:17.081841 71e3ca6a-c7e4-402f-b17f-eee25034bea0 {"md5": "7c49a6cffedfe0f5095dcb9091d86531", "pid": "133490281X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=244643949"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Fernitz-Mellach"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133490281X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133490281X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133490281X", "source": "GND"}], "classification": [{"name": "Schloss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Schloss Weissenegg (Fernitz-Mellach)"} 3 -2024-07-16 19:07:24.14331 2024-07-17 07:00:07.869632 b2ab453a-1044-4514-bb77-f4c86d0591ac {"md5": "01c4f403fd973f0b22b06cf043aa3423", "pid": "1334670560", "note": [{"label": ["Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://www.geo.lu.ch/map/kulturdenkmal/?FOCUS=2665895:1211586:250&BASEMAP=G", "Search.ch - https://map.search.ch/Luzern,Kornmarkt?pos=665856,211604&zoom=18"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Luzern"}, {"authorized_access_point": "Altstadt (Luzern)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334670560", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334670560", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334670560", "source": "GND"}], "classification": [{"name": "Marktplatz", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Kornmarkt (Luzern)"} 3 -2024-07-16 20:07:14.39431 2024-07-17 06:57:24.139327 8e0bb27d-054d-4fb3-b3db-4344a8c426a3 {"md5": "8c607f94d8682ccd5ed7cb085d52992d", "pid": "040302369", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Kenia (Protectorate)"}, {"authorized_access_point": "Kenya (Colony and Protectorate)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4030236-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040302369", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4030236-2", "source": "GND"}], "variant_access_point": ["Ǧumhūrīyat Kīnyā", "Jamhuri ya Kenya", "Kenya", "Republic of Kenya", "Kīnyā", "Republik Kenia", "Chenia", "Government of Kenya", "GOK (Government of Kenya)", "Keniia"], "authorized_access_point": "Kenia"} 3 -2024-07-16 20:07:14.709604 2024-07-17 06:57:24.739167 a41d9b31-4edd-4b8d-ba72-02ba71a0d678 {"md5": "5c8ff60c249a00d1fb49e595d189dc37", "pid": "040318125", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Neugranada"}, {"authorized_access_point": "Confederación Granadina"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4031812-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040318125", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4031812-6", "source": "GND"}], "classification": [{"name": "Kolumbianer", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Columbien", "Colombia", "Estados Unidos de Colombia", "Gran Colombia", "República de Colombia", "Columbia", "République de Colombie", "Colombie", "Republic of Colombia"], "authorized_access_point": "Kolumbien"} 3 -2024-07-16 20:07:14.083494 2024-07-17 06:57:31.332119 4ffe663a-fe47-4f42-a840-0f32e5163801 {"md5": "f801c1d0814d98856b667b549c4826e7", "pid": "04041745X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4041745-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04041745X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4041745-1", "source": "GND"}], "classification": [{"name": "Kanton", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Fürstentum Neuenburg (Schweiz)", "Fürstentum Neuenburg und Valangin", "Principauté de Neuchâtel et Valangin", "Souveraineté de Neuchâtel et Valangin", "Grafschaft Neuenburg (Schweiz)", "Neuchâtel, Pays de", "Pays de Neuchâtel", "Neuenburg (Schweiz, Kanton)", "Canton de Neuchâtel", "Neuchâtel (Canton)", "Comté de Neufchâtel", "Neufchâtel (Comté)", "Neuenburg (Canton)", "Neuchâtel (République)", "République et Canton de Neuchâtel", "Republik und Kanton Neuenburg", "Etat de Neuchâtel", "République Neuchâteloise", "Canton de Neuchâtel", "Neuenburg (Kanton)"], "authorized_access_point": "Kanton Neuenburg"} 3 -2024-07-16 20:07:13.773801 2024-07-17 06:57:39.660619 3b098bc9-c300-41ee-a2d9-71ef39206606 {"md5": "359dc10711b04d62596b4402d2d3b2d0", "pid": "040554589", "note": [{"label": ["Homepage - https://www.stadt-solothurn.ch/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4055458-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040554589", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4055458-2", "source": "GND"}], "variant_access_point": ["Einwohnergemeinde Stadt Solothurn", "Einwohnergemeinde der Stadt Solothurn", "Soleure", "Soletta", "Soleure", "Solodorum", "Soloturn", "Solodurum", "Stadt Solothurn", "Soletta", "EGS", "Solothurn (Stadt)", "Solodori", "Einwohnergemeinde Solothurn", "Stadtgemeinde Solothurn", "Salodurum"], "authorized_access_point": "Solothurn"} 3 -2024-07-16 20:07:15.333427 2024-07-17 06:57:28.961802 7249c788-b725-4284-b72f-378913095601 {"md5": "39b1f0c9bb8ae95b033aaa1ba7f01181", "pid": "040396770", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europa"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4039677-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040396770", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4039677-0", "source": "GND"}], "variant_access_point": ["Zentraleuropa", "Central Europe (Mitteleuropa)"], "authorized_access_point": "Mitteleuropa"} 3 -2024-07-16 20:07:16.923518 2024-07-17 06:57:20.29774 ebde3225-99e9-434e-a342-c9a9fa2fc42c {"md5": "bb5690e2d08dae01b2469d65bb2a4f7b", "pid": "040278395", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Alpen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4027839-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040278395", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4027839-6", "source": "GND"}], "variant_access_point": ["Italien (Alpen)"], "authorized_access_point": "Italienische Alpen"} 3 -2024-07-16 20:07:17.899181 2024-07-17 06:57:26.175167 61a0e71a-8974-4cd4-9f72-12a78582fe27 {"md5": "81898424fb501e7b3ae8f63d372b32f8", "pid": "040367282", "note": [{"label": ["Homepage - http://www.gouvernement.lu/ministeres/index.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4036728-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040367282", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4036728-9", "source": "GND"}], "classification": [{"name": "Staat", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Luxemburger", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Großherzogtum Luxemburg", "Herzogtum Luxemburg", "Grafschaft Luxemburg", "Luxembourg", "Grand-Duché de Luxembourg", "Ljuksemburg", "Lätzebuerg", "Grand Duchy of Luxembourg", "Lützemburg"], "authorized_access_point": "Luxemburg"} 3 -2024-07-16 20:07:17.297183 2024-07-17 06:57:44.015631 a9f16b28-91af-4c23-bb6e-4ec00b2d96b7 {"md5": "be47bc88dddc53881aa554fee8498529", "pid": "04068041X", "note": [{"label": ["Homepage - https://www.zh.ch"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4068041-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04068041X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4068041-1", "source": "GND"}], "classification": [{"name": "Zürcher", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}, {"name": "Kanton", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Zürich (Kanton)", "Republic Zürich", "Eidgenössischer Stand Zürich", "Zurich (Canton)", "Zurigo (Cantone)", "Canton Zürich", "Zürich (Republic)"], "authorized_access_point": "Kanton Zürich"} 3 -2024-07-16 20:07:17.595979 2024-07-17 06:57:48.343451 f2eae65b-5280-4f54-b54f-6324f67407a4 {"md5": "277459f30ebc0578c2ab2f3c7bde63be", "pid": "040740323", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4074032-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040740323", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4074032-8", "source": "GND"}], "classification": [{"name": "Lateinamerikaner", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Iberoamerika"], "authorized_access_point": "Lateinamerika"} 3 -2024-07-16 20:07:19.000035 2024-07-17 06:57:52.708374 bf46d994-754f-4d08-8dba-3083a3ac3de7 {"md5": "f158764cc3d5db91f9b71d6f215ca326", "pid": "040769100", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Ruanda-Urundi"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4076910-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040769100", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4076910-0", "source": "GND"}], "classification": [{"name": "Ruander", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Republika y' u. Rwanda", "Rwanda", "République Rwandaise", "Republik Ruanda", "Republic of Rwanda"], "authorized_access_point": "Ruanda"} 3 -2024-07-16 20:07:16.284301 2024-07-17 06:57:53.719063 a0c8eaed-85fc-486d-a9cb-fa9b89c63a4b {"md5": "c9d2ce2fb84d8b6904c9b702cc326ff1", "pid": "040774678", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4077467-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040774678", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4077467-3", "source": "GND"}], "variant_access_point": ["Sedunum", "Sedun.", "Ville de Sion", "Municipalité Sion", "Sion", "Sion", "Sion"], "authorized_access_point": "Sitten"} 4 -2024-07-16 20:06:46.594263 2024-07-17 06:58:13.776477 575a5e85-6017-4926-ab1e-c58c10afb87d {"md5": "c3490456837e67dea8bb336677d282b1", "pid": "042499909", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Sitten"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4249990-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042499909", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4249990-2", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Basilique de Valère (Sitten)"], "authorized_access_point": "Notre-Dame-de-Valère (Sitten)"} 4 -2024-07-16 20:07:21.187157 2024-07-17 07:01:19.99838 e84283c4-eeb7-4d6f-8aa4-d7d52ff3fba9 {"md5": "e9866d89383b2966a994200c45f88188", "pid": "968963935", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kanton Luzern"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4751227-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)968963935", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4751227-1", "source": "GND"}], "variant_access_point": ["Gemeindekanzlei Aesch (Luzern)", "Gemeinderat Aesch (Luzern)", "Gemeinde Aesch (Luzern)", "Einwohnergemeinde Aesch (Luzern)"], "authorized_access_point": "Aesch (Kanton Luzern)"} 3 -2024-07-16 20:07:20.308743 2024-07-17 06:57:45.622358 2467e69e-9e72-4226-a249-3723e0614233 {"md5": "1a59206d1d29e4c1c6cc16264cdd2f23", "pid": "040703525", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Schweiz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4070352-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040703525", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4070352-6", "source": "GND"}], "classification": [{"name": "Deutschschweizer", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Deutschsprachige Schweiz", "Deutschschweiz", "Schweiz (Deutsches Sprachgebiet)"], "authorized_access_point": "Deutsche Schweiz"} 3 -2024-07-16 20:07:21.786457 2024-07-17 06:58:03.000563 c531780e-2686-4e53-ae7f-ed817c8d4d91 {"md5": "4f87e695b68320969bfaa92b75d4ee24", "pid": "040995623", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4099562-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040995623", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4099562-8", "source": "GND"}], "variant_access_point": ["Loèche-les-Bains"], "authorized_access_point": "Leukerbad"} 3 -2024-07-16 20:07:20.898587 2024-07-17 06:57:19.982948 8668d6db-a38e-4b7c-a8cd-2a7f92e4f822 {"md5": "a85cd4ec1bc2e6471b90a0bccf313f1f", "pid": "040277542", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4027754-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040277542", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4027754-9", "source": "GND"}], "classification": [{"name": "Insel", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Isländer", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Lyđveldiđ Island", "Ísland", "Iceland", "Republik Island", "Lýðveldið Island", "Lydveldid Island", "Republic of Iceland", "Eisland", "Islandia"], "authorized_access_point": "Island"} 3 -2024-07-16 20:07:20.632793 2024-07-17 06:57:42.170901 531cfd33-07cb-47c6-b44f-e37845bb40a4 {"md5": "fcf44ba832dc5e8f6b4de1fe020828a9", "pid": "040612066", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Tunisie"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4061206-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040612066", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4061206-5", "source": "GND"}], "classification": [{"name": "Staat", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Tunesier", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Tūnis (Daula)", "al- Ǧumhūrīya at-Tūnisīya", "Tunisie (Daula)", "République Tunisienne", "Tunesische Republik", "Tūnus (Daula)", "al- Ǧumhūrīya at-Tūnusīya", "Túnez (Daula)", "Royaume de Tunis", "al- Mamlaka at-Tūnisīya", "Tunisia"], "authorized_access_point": "Tunesien"} 3 -2024-07-16 20:07:19.991623 2024-07-17 07:01:03.30929 66484e38-2451-456d-8852-0cb64952e578 {"md5": "572788a17f3a08e2c244b704eeab3561", "pid": "952907682", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/St._Niklaus_VS"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Wallis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4487880-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)952907682", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4487880-1", "source": "GND"}], "variant_access_point": ["St. Niklaus (Wallis)", "Sankt Niklaus", "St. Niklaus (Grächen)", "St. Niklaus (Visp)", "Gemeinde St. Niklaus", "St. Niklaus"], "authorized_access_point": "Sankt Niklaus (Wallis)"} 3 -2024-07-16 20:07:23.642789 2024-07-17 07:01:04.931134 7b5e9011-88b8-4bc2-83b2-b91d02778d22 {"md5": "c8d093728923f34c2250277da6c12509", "pid": "954696867", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Wallis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4516751-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)954696867", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4516751-5", "source": "GND"}], "authorized_access_point": "Saint-Léonard (Wallis)"} 3 -2024-07-16 20:07:22.421122 2024-07-17 06:57:23.03139 2941963e-caa7-46f9-b209-f1fede879ee3 {"md5": "177b8417f5ea2e180f189a9830a4c170", "pid": "040294137", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Cameroun (Territoire sous Tutelle)"}, {"authorized_access_point": "Cameroons (Territory under Mandate)"}, {"authorized_access_point": "Southern Cameroons"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4029413-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040294137", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4029413-4", "source": "GND"}], "classification": [{"name": "Kameruner", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Cameroon (Etat)", "République Fédérale du Cameroun", "Kamerun (Etat)", "Kamerun (1960)", "République du Cameroun", "Federal Republic of Cameroon", "Republic of Cameroon", "United Republic of Cameroon", "République Unie du Cameroun", "République fédérale du Cameroun", "Cameroon", "République unie du Cameroun", "Vereinigte Republik Kamerun", "West Cameroon"], "authorized_access_point": "Kamerun"} 3 -2024-07-16 20:07:22.722608 2024-07-17 06:58:08.013187 d416c7aa-6e5b-4d7d-9d56-2f0a60c7949b {"md5": "151a4eee4842bfe2381ae8cf4eddfc18", "pid": "041192389", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4119238-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041192389", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4119238-2", "source": "GND"}], "authorized_access_point": "Zermatt (Region)"} 3 -2024-07-16 19:08:12.523607 2024-07-17 07:00:25.216655 0993547f-26bd-4ad6-a421-e9a4a6b51136 {"md5": "a63bd5cce8a10e62e52a6a40c979d6af", "pid": "199000328", "note": [{"label": ["Stadt Dortmund - https://www.dortmund.de/themen/sport/geschaeftsbereich-sport/hoeschpark/", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Hoeschpark&oldid=231477040"], "noteType": "dataSource"}, {"label": ["Grünanlage mit zahlreichen Sportstätten"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Dortmund"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7761761-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199000328", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7761761-7", "source": "GND"}], "classification": [{"name": "Grünanlage", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Park", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Sportstätte", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Baudenkmal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Hoesch-Park (Dortmund)", "Brackeler Straße 60 (Dortmund)"], "authorized_access_point": "Hoeschpark (Dortmund)"} 3 -2024-07-16 20:07:24.988801 2024-07-17 06:57:25.05683 39cb61e9-58a8-4b4e-bff4-3b2950e46904 {"md5": "b611711d1263b611d087b543e1538740", "pid": "04032527X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4032527-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04032527X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4032527-1", "source": "GND"}], "classification": [{"name": "Insel", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Korsen", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Corsica (Korsika)", "Corse"], "authorized_access_point": "Korsika"} 3 -2024-07-16 19:08:11.768947 2024-07-17 07:00:27.893769 b0eafc46-da5a-4165-bef2-7e34047b7487 {"md5": "1a42f031b48dd02b6f19c4f7a66440cb", "pid": "199023786", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Haus_Holtwick&oldid=238799546"], "noteType": "dataSource"}, {"label": ["Das Haus Holtwick ist eine abgegangene mittelalterliche Niederungsburg. Es ist nur das Torhaus erhalten."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rosendahl"}, {"authorized_access_point": "Rosendahl-Holtwick"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7764388-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199023786", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7764388-4", "source": "GND"}], "classification": [{"name": "Torbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Baudenkmal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Haus Holtwick (Rosendahl-Holtwick)"], "authorized_access_point": "Haus Holtwick (Rosendahl)"} 3 -2024-07-16 20:07:28.492898 2024-07-17 07:00:55.700269 e5cc78d9-841f-4f3c-9e5b-af0332484988 {"md5": "604f61714fda4a235bf17a24acccc147", "pid": "949642762", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4440703-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949642762", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4440703-8", "source": "GND"}], "variant_access_point": ["Genfer-See-Gebiet", "Genferseeregion", "Région lémanique", "Arc lémanique"], "authorized_access_point": "Genfer See (Region)"} 3 -2024-07-16 20:07:25.651378 2024-07-17 06:57:44.268775 d200a9e8-56ce-49a9-a1e0-5c5c021e1e29 {"md5": "80b17a87bfecdec7e99c0ce815d7d51d", "pid": "040680649", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4068064-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040680649", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4068064-2", "source": "GND"}], "classification": [{"name": "Kanton", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Zug (Eidgenössischer Stand)", "Eidgenössischer Stand Zug"], "authorized_access_point": "Kanton Zug"} 3 -2024-07-16 20:07:26.272745 2024-07-17 06:57:26.421306 825cef54-53ce-4f09-be58-493380db2c2d {"md5": "5d38dda21f612708e12e779d7b2b02d4", "pid": "040367339", "note": [{"label": ["Homepage - https://www.stadtluzern.ch/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4036733-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040367339", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4036733-2", "source": "GND"}], "variant_access_point": ["Lucerne", "Lucerne", "Luseen", "Lucerna", "Stadt Luzern", "Lucern", "Lucerne", "Luceria", "Lucerna Helvetiorum", "Einwohner- und Korporationsgemeinde (Luzern)", "Einwohnergemeinde Luzern"], "authorized_access_point": "Luzern"} 4 -2024-07-16 20:07:28.138466 2024-07-17 06:57:28.387975 290244f4-691e-45e0-a4c5-5878439c5819 {"md5": "053519be06ed07a2b7e2b9145e4fbffd", "pid": "040387887", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4038788-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040387887", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4038788-4", "source": "GND"}], "variant_access_point": ["Zweistromland", "Zwischenstromland"], "authorized_access_point": "Mesopotamien"} 3 -2024-07-16 20:07:27.778376 2024-07-17 06:58:00.819472 d8d3b6ef-b9e5-4d7b-8ea3-6fc4278ef4db {"md5": "e0b94e2e90a21cc8dd38ba4f3e238c75", "pid": "040932052", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Alpen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4093205-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040932052", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4093205-9", "source": "GND"}], "variant_access_point": ["Frankreich (Alpen)", "Alpes françaises"], "authorized_access_point": "Französische Alpen"} 3 -2024-07-16 20:07:25.980844 2024-07-17 06:58:07.527635 c5d3e13f-f54a-4c76-83e4-d87dd643a702 {"md5": "b167d9e1415680eebbc5842f7cdac314", "pid": "041179145", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Arktis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4117914-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041179145", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4117914-6", "source": "GND"}], "classification": [{"name": "Geografischer Pol", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Nordpol der Erde"], "authorized_access_point": "Nordpol"} 3 -2024-07-16 20:07:27.198779 2024-07-17 07:00:44.524463 66a75508-0dce-4acd-afd0-ca81ab0470c9 {"md5": "265181efa1e7b4cc934fab2259140333", "pid": "941147797", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Wallis"}], "related": [{"authorized_access_point": "Naters"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4339879-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)941147797", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4339879-0", "source": "GND"}], "variant_access_point": ["Naters-Mund"], "authorized_access_point": "Mund (Wallis)"} 3 -2024-07-16 20:07:27.471512 2024-07-17 06:57:11.299084 876b7175-9106-4145-94a0-8ac4e738af13 {"md5": "e5db728f30d8a34dc94750f584318041", "pid": "040057658", "note": [{"label": ["Homepage - https://www.be.ch", "Hist. Lex. Schweiz - https://hls-dhs-dss.ch/de/articles/007383/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Stand Bern"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4005765-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040057658", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4005765-3", "source": "GND"}], "classification": [{"name": "Berner", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}, {"name": "Kanton", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Canton de Berne", "Bernbiet", "Berner Land", "Canton Bern", "Canton de Berne", "Canton Berne"], "authorized_access_point": "Kanton Bern"} 3 -2024-07-16 20:07:25.320322 2024-07-17 06:57:34.79738 191a4738-a922-4e95-bc30-2d885880465e {"md5": "9683a38272133472f9957214f275e56f", "pid": "040467554", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4046755-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040467554", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4046755-7", "source": "GND"}], "classification": [{"name": "Archäologische Stätte", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Pompeii", "Pompei", "Valle di Pompei"], "authorized_access_point": "Pompeji"} 3 -2024-07-16 20:07:32.038154 2024-07-17 06:57:22.702769 9cb1bf2e-7d40-4022-b172-d2d81f0546d3 {"md5": "b1e629e751b8870abc45541089b991c7", "pid": "040293076", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4029307-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040293076", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4029307-5", "source": "GND"}], "variant_access_point": ["Calif.", "CA", "California", "State of California", "Provincia de Californias", "Departamento de Californias"], "authorized_access_point": "Kalifornien"} 3 -2024-07-16 20:07:29.124947 2024-07-17 06:57:46.150687 7cb4d3b8-cba2-41cb-9224-272ede4204d0 {"md5": "4ec424ab18fe93d6880f84591c0b3229", "pid": "040713326", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4071332-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040713326", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4071332-5", "source": "GND"}], "classification": [{"name": "Franken", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Frankenreich", "Regnum Francorum", "Karolingerreich", "Merowingerreich", "Karolingisches Reich"], "authorized_access_point": "Fränkisches Reich"} 3 -2024-07-16 20:07:31.430911 2024-07-17 06:57:48.63277 9eea9ba6-8045-422b-a28c-332749b6ca15 {"md5": "c4695ff2620fa46d456ebb2ae72ca2c3", "pid": "040743357", "note": [{"label": ["Homepage - https://www.london.gov.uk"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4074335-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040743357", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4074335-4", "source": "GND"}], "variant_access_point": ["County of London", "Corporation of London", "Greater London", "Londinium", "Londyn", "Landan", "Lundun", "Augusta Trinobantum", "Londres", "Londra", "Londen", "London (Great Britain)", "Londinum", "Lundonia", "Westminster", "Londinium"], "authorized_access_point": "London"} 3 -2024-07-16 20:07:28.818166 2024-07-17 06:57:57.629306 a2dd90b8-a52a-4d68-813a-65fceb0c80c1 {"md5": "b0cc91a149a1ca55421c0957d1ef0543", "pid": "040794873", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Asien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4079487-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040794873", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4079487-8", "source": "GND"}], "variant_access_point": ["Innerasien", "Asien (Zentral)"], "authorized_access_point": "Zentralasien"} 3 -2024-07-16 20:07:30.81499 2024-07-17 06:58:04.132576 1ecab22e-541b-4790-bf20-09c0cc9bdccd {"md5": "190f94830ed5326d841a253170679a53", "pid": "041051513", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4105151-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041051513", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4105151-8", "source": "GND"}], "variant_access_point": ["Saaser Visptal"], "authorized_access_point": "Saastal"} 3 -2024-07-16 20:07:29.556697 2024-07-17 06:58:07.782034 f65d34c0-d1bc-4620-aecb-ca2c44656d48 {"md5": "a7bb6653b27a0664b48d69132fe1c727", "pid": "041186672", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4118667-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041186672", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4118667-9", "source": "GND"}], "classification": [{"name": "Eisenbahntunnel", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Simplontunnel"} 3 -2024-07-16 20:07:30.518094 2024-07-17 06:57:47.26008 df3882df-2a28-48e6-b1d4-665b7472430e {"md5": "523bfcab0e56999ef9a3cad8cf435221", "pid": "040721000", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4072100-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040721000", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4072100-0", "source": "GND"}], "classification": [{"name": "Gletscher", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Aletschgletscher"], "authorized_access_point": "Großer Aletschgletscher"} 3 -2024-07-16 20:07:31.122244 2024-07-17 07:00:46.932761 c034a3e3-58e1-4a4a-92c0-d9ad7bcf5e15 {"md5": "b4b5fb575150713a1a1ea79c3f7ea461", "pid": "944449360", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Berner Alpen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4376469-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)944449360", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4376469-1", "source": "GND"}], "classification": [{"name": "Gebirgszug", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Alpes Vaudoises", "Alpi Valdesi"], "authorized_access_point": "Waadtländer Alpen"} 3 -2024-07-16 20:07:32.350697 2024-07-17 06:57:07.515705 a954f015-d68f-4cca-8a40-c5a35606a6a1 {"md5": "35b0afabb9764b56759be426c60f3575", "pid": "040022080", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Polargebiete"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4002208-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040022080", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4002208-0", "source": "GND"}], "variant_access_point": ["Südliches Polargebiet", "Polargebiet (Süd)", "Südpolargebiet"], "authorized_access_point": "Antarktis"} 3 -2024-07-16 20:07:33.85528 2024-07-17 06:57:23.298725 27abcf8c-6eb3-4d20-b2c0-db466406c7f3 {"md5": "98199ab89a5093ec813688f2120177d1", "pid": "040294560", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Provinz Kanada"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4029456-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040294560", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4029456-0", "source": "GND"}], "classification": [{"name": "Kanadier", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Canada", "Dominion of Canada", "Puissance du Canada"], "authorized_access_point": "Kanada"} 3 -2024-07-16 20:07:34.490954 2024-07-17 06:57:37.971778 0a62da65-25ab-41c2-a0fd-61418c28ecbc {"md5": "6be53bcb8e827f6b7c2629cf8328bfcc", "pid": "040519937", "note": [{"label": ["Homepage - https://schaffhausen.ch/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4051993-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040519937", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4051993-4", "source": "GND"}], "variant_access_point": ["Schaffhausen, Hochrhein", "Schaffhouse", "Schafhausen", "Scaphusa", "Sciaffusa", "Einwohnergemeinde Schaffhausen", "Stadt Schaffhausen"], "authorized_access_point": "Schaffhausen"} 3 -2024-07-16 20:07:42.331942 2024-07-17 06:58:03.844158 21ce8daf-bc46-4ffc-9c46-e3f88e0d7730 {"md5": "153fca749f1ee3fb31870f202b3d9d07", "pid": "041048989", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4104898-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041048989", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4104898-2", "source": "GND"}], "variant_access_point": ["Gemeinde Raron", "Munizipalgemeinde Raron"], "authorized_access_point": "Raron"} 3 -2024-07-16 20:07:33.566741 2024-07-17 06:59:01.092385 a6bd0410-b784-4d58-9d7b-bf7128184ce5 {"md5": "94b5db5f19df7c2eca8537cd232f7c09", "pid": "1077172354", "note": [{"label": ["Homepage - https://www.bs.ch/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Kanton Basel"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1077172354", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1077172354", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1077172354", "source": "GND"}], "classification": [{"name": "Kanton", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Bâle-Ville", "Basel-Stadttheil", "Kanton Basel-Stadttheil", "Basel-Stadtteil", "Kanton Basel-Stadtteil", "Basilea-Città", "Kanton Basel-Stadt", "Basel (Basel-Stadt)", "Basel-Stadt (Kanton)"], "authorized_access_point": "Basel-Stadt"} 3 -2024-07-16 20:07:32.642624 2024-07-17 06:57:36.235925 24aff614-c86c-4310-a1ba-4a0c06a1d23a {"md5": "d87ac5427ff45d86589fd62fb33a3a0e", "pid": "040504719", "note": [{"label": ["Homepage - http://www.comune.roma.it/pcr/do/jpsite/Site/home"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4050471-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040504719", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4050471-2", "source": "GND"}], "variant_access_point": ["Roma", "Città di Roma", "Comune di Roma", "Rim", "Rym", "Luoma", "Senatus Populusque Romanus", "SPQR", "Roma Capitale", "Rzym", "Rome", "Roma", "Řím", "Città di Roma", "Comune di Roma"], "authorized_access_point": "Rom"} 4 -2024-07-16 20:07:36.635329 2024-07-17 07:01:15.922827 1611920f-1aba-4c64-b7bd-87c34e74cfd8 {"md5": "b49c450d6c8a5c5c5a49855c3d063bd8", "pid": "96475455X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Lötschberg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4690568-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)96475455X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4690568-6", "source": "GND"}], "classification": [{"name": "Eisenbahntunnel", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Eisenbahntunnel Lötschberg"], "authorized_access_point": "Lötschberg-Basistunnel"} 3 -2024-07-16 20:07:35.451 2024-07-17 06:57:30.80956 87725658-5636-47b7-91a4-d772fbdba56c {"md5": "c67e301028b435ce93052922595ad1ac", "pid": "04040417X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4040417-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04040417X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4040417-1", "source": "GND"}], "classification": [{"name": "Berg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Everest, Mount", "Tschomo Lungma", "Jolmo Lungma", "Sagarmatha", "Chomolungma", "Tschomolungma", "Chu-mu-lang-ma-feng"], "authorized_access_point": "Mount Everest"} 3 -2024-07-16 20:07:34.841091 2024-07-17 06:57:46.722208 b2178e95-4a1c-401a-a3fb-133ec2329fd5 {"md5": "7c25784eac79425a0e8b3fed4f39a70b", "pid": "040714446", "note": [{"label": ["Homepage - https://www.ville-fribourg.ch"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4071444-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040714446", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4071444-5", "source": "GND"}], "variant_access_point": ["Freiburg (Üechtland)", "Freiburg im Üchtland", "Freiburg (Üchtland)", "Freiburg (Schweiz)", "Freiburg i. Üe.", "Freiburg i.Üe.", "Freiburg i. Ü.", "Fribourg", "Ville de Fribourg", "Friburgum Nuithonum", "Friburgum Aventicorum", "Friburgum Helvetiorum", "Fribourg en Nuithonie", "Freyburg in Uchtland", "Friburgi Heluetiorum", "Fribourg (Schweiz)", "Freyburg im Üechtland", "Fribourg", "Stadt Freiburg (Schweiz)"], "authorized_access_point": "Freiburg im Üechtland"} 3 -2024-07-16 20:07:36.339687 2024-07-17 06:57:49.489687 19b8f10c-8a51-4a53-a43a-f5eb606d6e45 {"md5": "00643c7b5ac37869f4d6da36d838c30c", "pid": "040749878", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4074987-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040749878", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4074987-3", "source": "GND"}], "variant_access_point": ["Moskva", "Moskwa (Stadt)", "Moscow (Stadt)", "Moscow", "Moskovskij Gorodskoj Sovet Deputatov Trudjaščichsja", "Mosgorsovet", "Gorodskoj Sovet Narodnych Deputatov (Moskau)", "Mossovet", "Mosca", "Moskovskij Sovet Rabočich, Krestʹjanskich i Krasnoarmejskich Deputatov", "Pravitelʹstvo Moskvy", "Moscú", "Moscou", "Gorodskoj Sovet Narodnych Deputatov (Moskva)", "Moscovia"], "authorized_access_point": "Moskau"} 3 -2024-07-16 20:07:35.732938 2024-07-17 06:58:09.173421 f6e56b1a-0e9e-4955-b241-d45ea4f97ddc {"md5": "33be4839930dccc2f63d309da0112358", "pid": "041294688", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Bourgogne-Franche-Comte"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4129468-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041294688", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4129468-3", "source": "GND"}], "variant_access_point": ["Bourgogne", "Arelat"], "authorized_access_point": "Burgund"} 3 -2024-07-16 19:08:11.424745 2024-07-17 07:00:29.110697 cc80a3db-0a02-4ac8-8e3f-091aff290460 {"md5": "ae5a090b2e430d142e1b6cee69719f44", "pid": "199136637", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_Bocholt&oldid=242141670"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bocholt"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7777006-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199136637", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7777006-7", "source": "GND"}], "classification": [{"name": "Villa", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Baudenkmal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Villa (Bocholt)"], "authorized_access_point": "Schwartzstraße 7 (Bocholt)"} 3 -2024-07-16 20:07:35.131631 2024-07-17 06:57:22.361388 3daf5394-e6c5-4ecc-9651-e0bb55509fdc {"md5": "772e9331db83b184992cd170da8222a5", "pid": "040290433", "note": [{"label": ["Homepage - http://www.jura.ch/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4029043-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040290433", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4029043-8", "source": "GND"}], "classification": [{"name": "Kanton", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["République et Canton du Jura", "Canton du Jura - Suisse", "Canton du Jura"], "authorized_access_point": "Kanton Jura"} 3 -2024-07-16 19:08:19.882237 2024-07-17 06:57:01.734809 8022f49c-5f5b-4681-a6ac-7a35bad6cade {"md5": "c17c6cd96d522b78b15f29c9203da54c", "pid": "004205731", "note": [{"label": ["Internet - http://rocor.de/de"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1032392-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)004205731", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1032392-2", "source": "GND"}], "variant_access_point": ["Russian Orthodox Church outside Russia (Russisch-Orthodoxe Diözese des Orthodoxen Bischofs von Berlin und Deutschland)", "Russian Orthodox Church outside Russia (Deutsche Diözese)", "Deutsche Diözese der Russischen Orthodoxen Kirche im Ausland", "Russian Orthodox Church outside Russia (Germanskaja Eparchija)", "Russische Orthodoxe Diözese des Orthodoxen Bischofs von Berlin und Deutschland", "Russische Orthodoxe Diözese von Berlin und Deutschland", "Russische Orthodoxe Kirche im Ausland (Deutsche Diözese)"], "authorized_access_point": "Russisch-Orthodoxe Diözese des Orthodoxen Bischofs von Berlin und Deutschland"} 3 -2024-07-16 20:07:39.30303 2024-07-17 06:57:15.499465 19f14a3b-29a1-449c-99b5-e83d5eafc071 {"md5": "5791394c9b499bbffa206536285940d5", "pid": "040157016", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4015701-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040157016", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4015701-5", "source": "GND"}], "classification": [{"name": "Europäer", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Abendland", "Okzident"], "authorized_access_point": "Europa"} 3 -2024-07-16 20:07:37.296683 2024-07-17 06:57:35.666615 1287579e-4277-4f28-aca5-bc18d162bb63 {"md5": "afb4ffb84105ec5afb407dc6e8791b16", "pid": "040480305", "note": [{"label": ["Homepage - http://www.gouv.qc.ca"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Provinz Kanada"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4048030-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040480305", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4048030-6", "source": "GND"}], "classification": [{"name": "Provinz", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Provinz Québec (1867-)", "Province du Québec", "Que.", "Kupaik"], "authorized_access_point": "Québec (Provinz)"} 3 -2024-07-16 20:07:39.607792 2024-07-17 06:57:45.89237 f8034dec-e02e-4aad-ba04-1f0a4e4b43ff {"md5": "b1e67b0a8bd351878b5dc0c55b588ceb", "pid": "040703703", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4070370-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040703703", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4070370-8", "source": "GND"}], "variant_access_point": ["Deutschsprachige Länder", "Deutschsprachiger Raum", "Deutschsprachiges Gebiet", "Deutscher Sprachraum"], "authorized_access_point": "Deutsches Sprachgebiet"} 3 -2024-07-16 20:07:38.38504 2024-07-17 06:57:46.987728 9cac9877-b287-43e9-8401-1916017ce263 {"md5": "c4eca0504883a38874905baebdc1445f", "pid": "040717003", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Berner Alpen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4071700-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040717003", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4071700-8", "source": "GND"}], "classification": [{"name": "Pass", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Gemmipass"], "authorized_access_point": "Gemmi"} 4 -2024-07-16 19:08:08.825086 2024-07-17 07:00:38.511574 9c6ebd60-224b-4a7b-8e0e-1b34bf8ff366 {"md5": "01dbcab1c8f82689f38bd325fb80b996", "pid": "199230285", "note": [{"label": ["Homepage - https://www.e-ki-wa.de/gemeinde/kirchen", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_von_Sakralbauten_in_Bochum&oldid=244821551"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bochum"}, {"authorized_access_point": "Bochum-Höntrop"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7787372-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199230285", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7787372-5", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Versöhnungskirche (Bochum)", "Versöhnungskirche Höntrop (Bochum-Höntrop)", "Evangelische Versöhnungskirche Höntrop (Bochum)", "Preins Feld 8 (Bochum)"], "authorized_access_point": "Versöhnungskirche Höntrop (Bochum)"} 3 -2024-07-16 20:07:41.148052 2024-07-17 06:57:31.59507 9603780e-3c09-46dc-82ec-4c76a8cfc52f {"md5": "10699b16714ec320506838aba35d1b9e", "pid": "040417476", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4041747-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040417476", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4041747-5", "source": "GND"}], "classification": [{"name": "See", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Lac de Neuchâtel", "Neuenburgersee", "Neuchâtel, Lac de"], "authorized_access_point": "Neuenburger See"} 3 -2024-07-16 20:07:42.065873 2024-07-17 06:57:53.474208 8f6c8ed5-bac5-4071-b634-b90d8d7602de {"md5": "5128b4913afe48f4d89443c61bf3e0f3", "pid": "040774244", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4077424-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040774244", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4077424-7", "source": "GND"}], "variant_access_point": ["Commune de Sierre", "Ville de Sierre", "Sierre", "Sierre"], "authorized_access_point": "Siders"} 3 -2024-07-16 20:07:40.517705 2024-07-17 06:57:57.369981 9153d78e-043d-4a87-9708-2269adbf1e6b {"md5": "d0d369ba58a71d82924166ef043945d2", "pid": "040794865", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Mittelamerika"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4079486-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040794865", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4079486-6", "source": "GND"}], "classification": [{"name": "Zentralamerikaner", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Amerika (Zentral)"], "authorized_access_point": "Zentralamerika"} 3 -2024-07-16 19:08:07.444594 2024-07-17 07:00:43.626793 7b8ec1d8-d58f-42fa-9d04-4e7b780cf02a {"md5": "cf6b05df86f26b20c4e1ea11993d784d", "pid": "199305404", "note": [{"label": ["Homepage - https://st-ewaldi-dortmund.de/st-ewaldi-aplerbeck/", "Wikipedia - https://de.wikipedia.org/w/index.php?title=St._Ewaldi_(Aplerbeck)&oldid=242390332"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Dortmund"}, {"authorized_access_point": "Dortmund-Aplerbeck"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7796155-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199305404", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7796155-9", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Sankt Ewaldi Aplerbeck (Dortmund)", "St. Ewaldi Aplerbeck (Dortmund-Aplerbeck)", "St.-Ewaldi-Kirche (Dortmund)", "St. Ewaldi zu Dortmund-Aplerbeck (Dortmund)", "Zweite St.-Ewaldi-Kirche von 1971 (Dortmund)", "Egbertstraße 15 (Dortmund)"], "authorized_access_point": "St. Ewaldi Aplerbeck (Dortmund)"} 3 -2024-07-16 20:07:40.834864 2024-07-17 07:00:49.990553 fa3476ea-70ea-46b6-8165-8ae55bba7bb0 {"md5": "e114a6a440d6a23eb43288e459c9a57b", "pid": "947297987", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Albanien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4407133-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947297987", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4407133-4", "source": "GND"}], "variant_access_point": ["Nordalbanien"], "authorized_access_point": "Albanien (Nord)"} 3 -2024-07-16 20:07:41.754991 2024-07-17 06:57:58.725794 16229022-b6bc-408d-9cac-bd42bb617143 {"md5": "7f11a84bd9f2e16373821d55f2ad7f3b", "pid": "040804003", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4080400-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040804003", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4080400-8", "source": "GND"}], "authorized_access_point": "Biel (Region)"} 3 -2024-07-16 19:08:08.643852 2024-07-17 07:00:39.102117 745e0804-17eb-4e56-a0db-5ed79aae50bd {"md5": "751902d10200848ee819b7ca9d8f5a72", "pid": "199231516", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=St._Jakob_(K%C3%B6ln)&oldid=205660525", "Homepage Altes Köln - https://altes-koeln.de/wiki/St._Jacob"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Köln- Altstadt Süd"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7787520-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199231516", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7787520-5", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["St. Jakob (Köln- Altstadt Süd)", "St. Jacob (Köln- Altstadt Süd)", "Kirche St. Jacob (Köln- Altstadt Süd)", "Jakobskirche (Köln- Altstadt Süd)", "Pfarrkirche St. Jakob (Köln- Altstadt Süd)", "St. Jakob (Köln) (Köln- Altstadt Süd)"], "authorized_access_point": "Sankt Jakob (Köln- Altstadt Süd)"} 3 -2024-07-16 19:08:07.816109 2024-07-17 07:00:42.411199 b5703ea4-8b95-4399-bcfd-960e5228f92c {"md5": "003adc838738df0737d8a86ab92bd62d", "pid": "199246793", "note": [{"label": ["Homepage - https://www.dasgastlichedorf.com/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Delbrück"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7789352-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199246793", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7789352-9", "source": "GND"}], "classification": [{"name": "Fachwerkbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Ensemble", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Gastliches Dorf (Delbrück)", "Lippstädter Straße 88 (Delbrück)"], "authorized_access_point": "Das gastliche Dorf (Delbrück)"} 3 -2024-07-16 20:07:40.199886 2024-07-17 06:57:02.668811 c7895e6a-6900-40f3-9e0d-835151300d25 {"md5": "a0288e43e31acfc43856c4379f08abc2", "pid": "004911474", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Rheinbund"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2035457-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)004911474", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)2035457-5", "source": "GND"}], "variant_access_point": ["Heiliges Römisches Reich Deutscher Nation", "HRR", "H. R. R.", "Imperium Romanum", "Sacrum Romanum Imperium", "Römisch-Deutsches Reich", "Deutschland (Heiliges Römisches Reich)", "Deutschland (Römisch-Deutsches Reich)", "Deutschland (-1806)", "Altes Reich"], "authorized_access_point": "Heiliges Römisches Reich"} 3 -2024-07-16 20:06:42.827196 2024-07-17 06:57:05.535231 a67677fe-b202-46a5-b366-8aeae9cfbf93 {"md5": "f4c12e9b440da04ef9a4bdd92b027c50", "pid": "040000222", "note": [{"label": ["Homepage - https://www.ag.ch"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4000022-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040000222", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4000022-9", "source": "GND"}], "classification": [{"name": "Aargauer", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}, {"name": "Kanton", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Kanton Aargau", "Argovia", "Argovie", "Eidgenössischer Stand Aargau"], "authorized_access_point": "Aargau"} 3 -2024-07-16 20:06:39.553022 2024-07-17 06:57:05.805732 ef1d8da0-f310-40ae-8a00-841a7bd03587 {"md5": "e9036bb808131a0dcac342af00fdef23", "pid": "040006956", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4000695-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040006956", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4000695-5", "source": "GND"}], "classification": [{"name": "Afrikaner", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "authorized_access_point": "Afrika"} 3 -2024-07-16 20:07:34.175076 2024-07-17 06:57:06.141422 d329016d-df96-4f35-8830-cff5b31ea25c {"md5": "8e1187852c348e4a0b37545059b95b33", "pid": "040010287", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4001028-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040010287", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4001028-4", "source": "GND"}], "classification": [{"name": "Albaner", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Albania", "Albanie", "Albanisches Königreich", "Fürstentum Albanien", "Principata Shqipëri", "Albanskaja Narodnaja Respublika", "Arnavutluk", "Königreich Albanien", "Mbretëria Shqiptare (1928-1939)", "Mbretnija Shqiptare", "NRA", "People's Socialist Republic of Albania", "PSR of Albania", "Regno Albanese", "Republic of Albania", "Republika e Shqipërise", "Republika e Shqipërisë", "Republika Popullore e Shqipërisë", "Republika Popullore Socialiste e Shqipërisë", "RP d'Albanie", "RP të Shqipërisë", "Shqipëria", "Sozialistische Volksrepublik Albanien", "SVR Albanien", "Volksrepublik Albanien"], "authorized_access_point": "Albanien"} 3 -2024-07-16 20:06:49.13354 2024-07-17 06:57:06.440503 6da6f891-44ea-47a1-a7b1-c95140103b7e {"md5": "7dff6d6af594198bae77b889f82f53b2", "pid": "040011798", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4001179-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040011798", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4001179-3", "source": "GND"}], "classification": [{"name": "Staat", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Algerier", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Algérie", "Algeria", "République Algérienne Démocratique et Populaire", "al- Ǧumhūrīya al-Ǧazā'irīya ad-Dīmūqraṭīya aš-Ša'bīya", "Alžirskaja Narodnaja Demokratičeskaja Respublika", "République algérienne démocratique et populaire", "Gouvernement Général de l'Algérie", "Gouvernement Général d'Algérie", "Gouvernement Général Civil de l'Algérie", "Gouvernement de l'Algérie", "Algerien (Gouvernement Général)", "Algérie (Gouvernement Général)", "al- Ǧazā'ir (Daula)"], "authorized_access_point": "Algerien"} 3 -2024-07-16 20:06:52.517838 2024-07-17 06:57:06.682535 ff511a6f-d1fc-4142-9523-7a9c5de90754 {"md5": "d8c5d5046ecacd618ddc3134762b0ae2", "pid": "040013286", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Alpenländer"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4001328-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040013286", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4001328-5", "source": "GND"}], "classification": [{"name": "Hochgebirge", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Alpenraum"], "authorized_access_point": "Alpen"} 3 -2024-07-16 20:07:05.579759 2024-07-17 06:57:06.973448 c62c043a-6ccb-469f-be46-13c809d2609a {"md5": "93f62837499b4cdbe23767fd295283b5", "pid": "040016269", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4001626-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040016269", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4001626-2", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Rio de Orellana"], "authorized_access_point": "Amazonas"} 3 -2024-07-16 20:07:11.549608 2024-07-17 06:57:07.767555 75065f9c-055b-4ef9-a9bb-c1b56d57e68c {"md5": "4ded5f1c35d742a2879c4b7f3fa94d59", "pid": "040022935", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Westindien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4002293-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040022935", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4002293-6", "source": "GND"}], "classification": [{"name": "Archipel", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Antillianer", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "authorized_access_point": "Antillen"} 3 -2024-07-16 20:06:38.491828 2024-07-17 06:57:08.082292 17bc9544-e4b8-4704-a04c-00954dfcdfb2 {"md5": "9eb79bfc08118c82aef089397df455ff", "pid": "040023869", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4002386-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040023869", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4002386-2", "source": "GND"}], "classification": [{"name": "Region", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Tal", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Autonome Region Aostatal", "Région Autonome Vallée d'Aoste", "Regione Valle d'Aosta", "Region Aostatal", "Region Valle d'Aosta", "Région Autonome de La Vallée d'Aoste", "Val d'Aoste", "Valle d'Aosta", "Vallée d'Aoste", "Regione Autonoma Valle d'Aosta", "Région Vallée d'Aoste", "Regione autonoma valle'Aosta", "Région Autonome du Val d'Aoste", "Région autonome vallée d'Aoste", "Regione Autonoma della Valle d'Aosta", "Regione Valdostana"], "authorized_access_point": "Aostatal"} 3 -2024-07-16 19:08:19.378123 2024-07-17 06:57:08.356174 18b2e46c-9d8b-4739-b290-7b2f6e2c1e54 {"md5": "aca5cdb06aba982d27cadeff0a731c9e", "pid": "040024024", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=243938940"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Apenrade"}], "related": [{"authorized_access_point": "Amt Sønderjylland"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4002402-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040024024", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4002402-7", "source": "GND"}], "classification": [{"name": "Amt", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Amt Apenrade", "Amt Abenraa", "Apenrade Amt", "Abenraa Amt", "Amt Abenra", "Åbenrå Amt", "Åbenrå (Amt)", "Abenraa (Amt)", "Apenrade (Amt)"], "authorized_access_point": "Amt Åbenrå"} 3 -2024-07-16 20:07:03.081376 2024-07-17 06:57:08.636339 066c0326-db99-4563-966a-cf6d3ffb0e43 {"md5": "03410cc73f50b9d413fec8db2bd0f69d", "pid": "040032175", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4003217-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040032175", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4003217-6", "source": "GND"}], "classification": [{"name": "Asiaten", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "authorized_access_point": "Asien"} 3 -2024-07-16 20:07:18.712207 2024-07-17 06:57:08.879258 646d2f60-34c7-4f96-8f1d-fd458474e603 {"md5": "777448ad4b948845cf9b11d7735fcdd4", "pid": "04003366X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4003366-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04003366X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4003366-1", "source": "GND"}], "variant_access_point": ["Staat Athen", "Staat Attika", "Athens", "Athenès", "Athenai", "Athinä", "Athina", "Athēna", "Atene", "Āṯīnā", "Atina (Athen)", "Athēnai", "Athenae"], "authorized_access_point": "Athen"} 3 -2024-07-16 20:07:19.599522 2024-07-17 06:57:09.168718 0c0fc1c8-fa36-4ad6-af0d-18dca2a3a1f3 {"md5": "96d7bfe4a8115988d82bbdf181e5afdb", "pid": "040039005", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4003900-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040039005", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4003900-6", "source": "GND"}], "classification": [{"name": "Australier", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}, {"name": "Aborigines", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Neuholland (Australien)", "Australia", "Commonwealth of Australia", "Australischer Bund", "Australie"], "authorized_access_point": "Australien"} 3 -2024-07-16 20:07:37.60519 2024-07-17 06:57:09.46904 fb676974-dc9f-45a4-afc8-6228bca97a97 {"md5": "a476b5f772113a1420ed1bf8bb0e67d6", "pid": "040046176", "note": [{"label": ["Homepage - https://www.bs.ch"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4004617-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040046176", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4004617-5", "source": "GND"}], "variant_access_point": ["Bâle", "Basilea", "Basle", "Stadt Basel", "Augusta Munatianae", "Basilia", "Bassel", "Athenae Helveticorum", "Colonia Munatianae", "Colonia Munatiana", "Basilea Rauracorum", "Augusta Munatiana", "Basilea Helvetiorum", "Augusta Rauracorum", "Colonia Planciana", "Athena Helveticorum", "Athena Rauracorum", "B le"], "authorized_access_point": "Basel"} 3 -2024-07-16 20:06:41.224221 2024-07-17 06:57:10.312751 ec1ad2ff-2fa9-46a4-a943-11d11ddbec02 {"md5": "e3670fb5a5bd143c73f95c1346a13109", "pid": "040054063", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Niederlande (Süd)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4005406-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040054063", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4005406-8", "source": "GND"}], "classification": [{"name": "Belgier", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Besetzte Gebiete Belgiens", "Okkupierte Gebiete Belgiens", "Bezette Streken van België", "Territoire Belge Occupé", "Belgique", "België", "Royaume de Belgique", "Koninkrijk België", "Belgium", "Kingdom of Belgium", "Reino de Belgica", "Belgica"], "authorized_access_point": "Belgien"} 3 -2024-07-16 19:08:19.309941 2024-07-17 06:57:10.591608 0f66c209-0e1d-422e-8731-b1c89c456f9f {"md5": "b14c5f79df1c609a0da98bf2f48289d0", "pid": "040055744", "note": [{"label": ["Homepage - http://www.gemeinde.berchtesgaden.de/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4005574-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040055744", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4005574-7", "source": "GND"}], "variant_access_point": ["Markt Berchtesgaden"], "authorized_access_point": "Berchtesgaden"} 3 -2024-07-16 20:07:23.038206 2024-07-17 06:57:10.884607 a638ec3d-721e-4605-a4dc-01ff080d00d9 {"md5": "e298b516f2368b74e9a98d4905441d20", "pid": "040057623", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4005762-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040057623", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4005762-8", "source": "GND"}], "classification": [{"name": "Berner", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Berne", "Berne", "Berna", "Stadt Bern", "Bärn", "Arctopolis", "Berna Helvetiorum", "Einwohnergemeinde Bern", "Gemeinde Bern", "Berne", "Berna"], "authorized_access_point": "Bern"} 3 -2024-07-16 20:07:38.993016 2024-07-17 06:57:12.133892 5e030694-be39-4fce-8bb3-839f37adcc16 {"md5": "9aa4b4e8d87e52c78a73b7b50c469a5d", "pid": "04008003X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Vereinigtes Königreich von Portugal, Brasilien und den Algarven"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4008003-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04008003X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4008003-1", "source": "GND"}], "classification": [{"name": "Brasilianer", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Brasil", "Brazil", "Imperio do Brazil", "République Fédérative du Brésil", "Federative Republic of Brazil", "República dos Estados Unidos do Brasil", "Estados Unidos do Brasil", "República Federal do Brasil", "Föderative Republik Brasilien", "República Federativa do Brasil", "Brésil", "Imperio do Brasil", "République des Etats-Unis du Brésil", "Brazilia", "Vereinigtes Königreich von Portugal, Brasilien und den Algarven"], "authorized_access_point": "Brasilien"} 3 -2024-07-16 20:06:54.400098 2024-07-17 06:57:12.444909 e979e90d-f92b-4018-b3af-a2922017546a {"md5": "2e2cc32907f417fad93a41b323b5817d", "pid": "040092569", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4009256-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040092569", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4009256-2", "source": "GND"}], "variant_access_point": ["Oströmisches Reich", "Reich Byzanz", "Imperium Byzantium", "Imperium Byzantinum", "Ostrom", "Rhomaioi", "Romäer"], "authorized_access_point": "Byzantinisches Reich"} 3 -2024-07-16 19:08:19.217744 2024-07-17 06:57:12.709225 9eb0748a-d80e-41bc-97ed-528c3c37748e {"md5": "b04801837b60ba8a68a19f36ed54dd68", "pid": "04009300X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Peru"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4009300-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04009300X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4009300-1", "source": "GND"}], "classification": [{"name": "Departement", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Cajamarca (Departamento)", "Cajamarca (Dep.)", "Departamento de Cajamarca"], "authorized_access_point": "Departement Cajamarca"} 3 -2024-07-16 20:07:15.622685 2024-07-17 06:57:13.221659 b8e0431d-73ed-4556-9a59-08758b49fcf5 {"md5": "6f2bf75fe70f42521f77ae7754c3a8ef", "pid": "040099296", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4009929-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040099296", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4009929-5", "source": "GND"}], "classification": [{"name": "Chilenen", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Königreich Chile", "República de Chile", "Republik Chile"], "authorized_access_point": "Chile"} 3 -2024-07-16 20:06:58.647127 2024-07-17 06:57:14.392345 10ca4222-d574-49ab-9ea3-55f51185d3e1 {"md5": "0f0db0445a40a62731a10957201a2e6f", "pid": "040144267", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Côte d'Ivoire (Colonie)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4014426-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040144267", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4014426-4", "source": "GND"}], "classification": [{"name": "Ivorer", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Côte d'Ivoire", "République de Côte d'Ivoire", "Ivory Coast", "République de la Côte d'Ivoire"], "authorized_access_point": "Elfenbeinküste"} 3 -2024-07-16 20:06:44.407771 2024-07-17 06:57:14.938671 e1402819-e558-42a2-b79d-50ab718de46f {"md5": "d927303890ebfb5c23d1812e611d8912", "pid": "040147703", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Großbritannien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4014770-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040147703", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4014770-8", "source": "GND"}], "classification": [{"name": "Engländer", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Angleterre", "Kingdom of England", "Engeland", "Inghilterra", "Inglaterra"], "authorized_access_point": "England"} 3 -2024-07-16 20:06:46.300427 2024-07-17 06:57:15.202554 8b3c63a3-5892-447e-bd0f-1ed628a75953 {"md5": "52941a41a2d06425fd81e8994bb68835", "pid": "040149544", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Low-income Countries"}, {"authorized_access_point": "Blockfreie Staaten"}, {"authorized_access_point": "Schwellenländer"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4014954-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040149544", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4014954-7", "source": "GND"}], "variant_access_point": ["Dritte Welt", "Unterentwickelte Länder", "Entwicklungsland", "Less developed Countries", "LDC", "Global South (Entwicklungsländer)", "Globaler Süden (Entwicklungsländer)"], "authorized_access_point": "Entwicklungsländer"} 3 -2024-07-16 20:07:22.103578 2024-07-17 06:57:17.206732 7d9ce8df-369d-492a-9863-91a65c654356 {"md5": "f38a0cf1978f6fff0f524f35972a62ae", "pid": "040201376", "note": [{"label": ["Homepage - https://www.geneve.ch"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4020137-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040201376", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4020137-5", "source": "GND"}], "variant_access_point": ["Genève", "Genava", "Ginevra", "Geneva", "Genevra", "Ĝenevo", "Ženeva", "Ǧīnīf", "Ginebra", "Aurelia Allobrogum", "Ville de Genève", "Aurelianae Allobrogum", "Gebenna", "Genevensis urbs", "Augusta Allobrogum", "Colonia Allobrogum", "Allobrogum colonia", "Genève", "Geneva", "Ginevra", "Coloniae Allobrogum"], "authorized_access_point": "Genf"} 3 -2024-07-16 20:07:09.975515 2024-07-17 06:57:17.603037 df8a988c-9d4c-407e-89cd-cac5ccbd542e {"md5": "aee2c04b042b483f58a0e1cdf6990df9", "pid": "040201384", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4020138-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040201384", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4020138-7", "source": "GND"}], "classification": [{"name": "Kanton", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Canton de Genève", "Cantone di Ginevra", "Canton of Geneva", "Hochstift Genf", "Genf (Kanton)", "République et Canton de Genève", "Etat de Genève", "Repubblica e Cantone di Ginevra", "Republik und Kanton Genf", "Republic and Canton of Geneva", "Conseil Souverain (Kanton Genf)", "Genève (Canton)", "Genève (République et Canton)"], "authorized_access_point": "Kanton Genf"} 3 -2024-07-16 20:07:21.479656 2024-07-17 06:57:21.376636 abc339e3-5d5a-4081-8449-a4d802a3b188 {"md5": "b4046f97a2e021742bd21a650d097c10", "pid": "040287505", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Jordanien"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Transjordanien (Protektorat)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4028750-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040287505", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4028750-6", "source": "GND"}], "classification": [{"name": "Jordanier", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Haschemitisches Königreich Jordanien", "Hashemite Kingdom of Jordan", "al- Urdunn", "al- Mamlaka al-Urdunnīya al-Hāšimīya", "Al-Urdunn", "Al-Mamlaka al-Urdunnijja al-Haschimijja", "Haschemitisches Königreich Transjordanien", "Hashemite Kingdom of Transjordan"], "authorized_access_point": "Jordanien"} 3 -2024-07-16 20:06:56.098779 2024-07-17 06:57:23.877903 37901c27-423e-4e4e-bba5-bba5a6df226d {"md5": "98949d879689b7ff20fece70acfe28f8", "pid": "040300900", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4030090-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040300900", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4030090-0", "source": "GND"}], "classification": [{"name": "Hochgebirge", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Kavkaz", "Kawkas"], "authorized_access_point": "Kaukasus"} 3 -2024-07-16 20:07:03.707009 2024-07-17 06:57:25.327451 76f12bbe-1037-4924-aa74-5b302ed9acd9 {"md5": "9705df33685d7c831253ae811f2da5db", "pid": "04033340X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4033340-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04033340X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4033340-1", "source": "GND"}], "classification": [{"name": "Insel", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Kubaner", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["República de Cuba", "Republik Kuba", "Respublika Kuba", "Cuba", "Republica de Cuba", "Republik Cuba"], "authorized_access_point": "Kuba"} 3 -2024-07-16 19:08:18.475906 2024-07-17 06:57:25.893589 7d6264d9-54e1-4de0-8db8-2343e26fb751 {"md5": "7ff6d1df80b228a847d210073be54351", "pid": "040357422", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4035742-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040357422", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4035742-9", "source": "GND"}], "variant_access_point": ["Ciudad de Los Reyes"], "authorized_access_point": "Lima"} 3 -2024-07-16 19:08:18.407373 2024-07-17 06:57:26.67037 6aa7e12a-30fc-4abe-b082-e0854a7d468a {"md5": "592384b7d8076b0256e4ce188d9499df", "pid": "040368114", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Bernkastel-Kues"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4036811-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040368114", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4036811-7", "source": "GND"}], "variant_access_point": ["Machern (Bernkastel-Kues)"], "authorized_access_point": "Bernkastel-Kues-Machern"} 3 -2024-07-16 19:07:46.552664 2024-07-17 06:58:49.181179 19870669-78b2-4f68-a4a6-e0e508f46559 {"md5": "613f678b592fae0a8544d4178309827d", "pid": "1060502798", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060502798", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060502798", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060502798", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Malschbach (Fluss)"} 3 -2024-07-16 20:07:07.55818 2024-07-17 06:57:28.087719 9d093795-816d-4ea5-947e-008cbf952b46 {"md5": "7cb4a9cbc887bc3114fdb23f651ad4a2", "pid": "040379922", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Walliser Alpen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4037992-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040379922", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4037992-9", "source": "GND"}], "classification": [{"name": "Berg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Monte Cervino", "Cervin"], "authorized_access_point": "Matterhorn"} 3 -2024-07-16 20:07:29.881769 2024-07-17 06:57:31.869163 792ca86a-46f1-4f36-ad44-0fcd1ca32463 {"md5": "c6bc9d593fdeb74f1d99e4eeaa2e7786", "pid": "040419150", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Kolonie Neuseeland"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4041915-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040419150", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4041915-0", "source": "GND"}], "classification": [{"name": "Maori", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}, {"name": "Neuseeländer", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Aotearoa", "Dominion of New Zealand", "New Zealand (Dominion)", "Nouvelle-Zélande", "Aetearo", "NZ", "New Zealand"], "authorized_access_point": "Neuseeland"} 3 -2024-07-16 20:07:07.889494 2024-07-17 06:57:33.204665 41be12f5-d138-4c88-afc7-e1403ec0882c {"md5": "c6fbc0de943409543d5f09e8b37d5d34", "pid": "040432718", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Österreich (Gebiet unter Alliierter Besatzung, Britische Zone)"}, {"authorized_access_point": "Österreich-Ungarn"}, {"authorized_access_point": "Erzherzogtum Österreich"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4043271-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040432718", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4043271-3", "source": "GND"}], "classification": [{"name": "Österreicher", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Österreich (Zweite Republik)", "Österreich (Erste Republik)", "Deutschösterreich", "Land Österreich", "Die im Reichsrat Vertretenen Königreiche und Länder (Österreich)", "Zisleithanien", "Cisleithanien", "Habsburgermonarchie", "Habsburgerreich", "Ostmark (Österreich)", "Austrya", "Austrja", "Republik Österreich", "Bundesstaat Österreich", "Staat Deutschösterreich", "Kaisertum Österreich", "Kaiserthum Österreich", "Österreichische Monarchie", "Austria", "Autriche", "Ostmark"], "authorized_access_point": "Österreich"} 3 -2024-07-16 20:07:23.323811 2024-07-17 06:57:34.546635 9f263e7f-bdab-427d-9167-b66663d81238 {"md5": "eb7a77c689ff356844feb37357626568", "pid": "040464962", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Polen-Litauen"}, {"authorized_access_point": "Kongresspolen"}, {"authorized_access_point": "Westgalizien"}, {"authorized_access_point": "Staat Krakau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4046496-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040464962", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4046496-9", "source": "GND"}], "variant_access_point": ["Generalgouvernement Polen", "Polska", "Rzeczpospolita Polska", "Polska Rzeczpospolita Ludowa", "Poland", "Pologne", "République Polonaise", "Generalne Gubernatorstwo w Polsce", "Polish People's Republic", "Polska Rzeczpospolita (Polen)", "PRL", "RP", "Polen (Generalgouvernement)", "Polska (Generalgouvernement)", "Besetzte Polnische Gebiete", "Besetztes Gebiet in Polen", "Okupowane Polskie Obszary", "Obszary Okupowane w Polsce", "Volksrepublik Polen", "Polska Rosyjska", "Republic Polen", "Respublika Pol'ša", "Pol'skaja Narodnaja Respublika", "République de Pologne", "Polen Links der Weichsel", "Polska po Lewej Stronie Wisły", "Lenkija", "Polija", "Gubernija Carstva Pol'skago", "Republik Polen"], "authorized_access_point": "Polen"} 3 -2024-07-16 19:08:17.320672 2024-07-17 06:57:45.353932 c73ebcdf-4318-43c5-8bfe-45999358394d {"md5": "35d7edea9b806de759ee05b2f9740b20", "pid": "040693309", "note": [{"label": ["Homepage - https://www.bernkastel-kues.de"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Bernkastel"}, {"authorized_access_point": "Kues"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4069330-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040693309", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4069330-2", "source": "GND"}], "variant_access_point": ["Bernkastel-Cues", "Berncastel-Cues", "Stadt Bernkastel-Kues", "Stadtgemeinde Bernkastel-Kues", "Verbandsgemeinde Bernkastel-Kues"], "authorized_access_point": "Bernkastel-Kues"} 3 -2024-07-16 20:06:59.238669 2024-07-17 06:57:39.115851 02b8d4b8-ee85-426a-908d-74df0ae4d110 {"md5": "fa6f8d32d5ea0c72a7c659007da58496", "pid": "040551938", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Mittelmeer"}], "related": [{"authorized_access_point": "Königreich Sizilien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4055193-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040551938", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4055193-3", "source": "GND"}], "classification": [{"name": "Insel", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Sizilianer", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Autonome Region Sizilien", "Sicilien", "Sizilien (Presidenza)", "Presidenza (Sizilien)", "Sicilia (Estado)", "Sicilia (Stato)", "Staat Sizilien", "Staat Sicilië", "Staat Sicilien", "Reino de las Dos Sicilias", "Königreich beider Sizilien", "Regno delle Due Sicilie", "Koninkrijk der beide Siciliën", "Sicilia", "Regione Siciliana", "Königreich Sizilien", "Sicily", "Presidenza della Regione Siciliana", "Sicilian Regional Gonvernment", "Sicile", "Presidenza (Sicilia)", "Sicilian Region", "Regione Sicilia"], "authorized_access_point": "Sizilien"} 3 -2024-07-16 20:06:49.413218 2024-07-17 06:57:39.931617 d9be1dd3-6cd9-47a2-8949-bc6421e9585f {"md5": "e50b26719726ed24a5e900db861fe581", "pid": "040559645", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Iberische Halbinsel"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4055964-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040559645", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4055964-6", "source": "GND"}], "classification": [{"name": "Spanier", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Isbāniyā", "Spain", "Espagne", "Estado Español", "España", "Espanja", "Hispania"], "authorized_access_point": "Spanien"} 3 -2024-07-16 19:08:17.835357 2024-07-17 06:57:41.072189 8a8267c1-2eab-499a-b82a-cb361a506156 {"md5": "ad9c68305d3fbd18c8f2cdb1ec263f03", "pid": "040594084", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4059408-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040594084", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4059408-7", "source": "GND"}], "authorized_access_point": "Teltow"} 3 -2024-07-16 20:07:15.030589 2024-07-17 06:57:42.413281 bbeb41bf-1d03-4861-9eb9-11e52ef8341a {"md5": "a111faba05ba69d2b136197b304d347f", "pid": "040624048", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Rom"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4062404-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040624048", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4062404-3", "source": "GND"}], "variant_access_point": ["Vatikanstaat", "Rom (Vatikan)", "Vaticanus", "Vatican City", "Cité du Vatican", "Civitas Vaticana", "Governatorato Vaticano", "Governatorato (Città del Vaticano)", "Città del Vaticano (Governo Pontificio)", "Governo Pontificio (Città del Vaticano)", "Città del Vaticano (Zentralkomitee)", "Zentralkomitee (Città del Vaticano)", "Città del Vaticano", "Vatikan", "Vaticano", "Stato della Città del Vaticano", "Vatican", "Vatican City State", "Vatican State", "Etat de la Cité du Vatican", "Staat der Vatikanstadt", "Città del Vaticano (Staat)", "Cité du Vatican (Etat)", "Vatikanstadt (Staat)", "Vatican (Etat)", "Vaticano (Stato)", "Vatikan (Staat)"], "authorized_access_point": "Vatikanstadt"} 3 -2024-07-16 19:08:16.321465 2024-07-17 06:58:02.200186 3477e1c5-f4df-492c-92e2-5c095ce1d9b5 {"md5": "73f5926edfa865ab34c9072a0d9a5fc6", "pid": "040957977", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4095797-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040957977", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4095797-4", "source": "GND"}], "variant_access_point": ["Scheidegg-Hummel"], "authorized_access_point": "Hummel (Scheidegg, Lindau)"} 3 -2024-07-16 20:07:13.20502 2024-07-17 06:57:51.308832 489a76da-2723-4e83-9c22-5806ae0ed47c {"md5": "1728860a58043d9d2b88a27d19fa8b0c", "pid": "04075720X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Türkei"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4075720-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04075720X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4075720-1", "source": "GND"}], "variant_access_point": ["Ottomanisches Reich", "Empire Ottoman", "Daulat-i ʿAlīya-i ʿUṯmānīya", "Devlet-i Aliye Osmaniye", "Hohe Pforte", "Staat Pforte", "Bâb-ı Âlî", "Sublime Porte", "Bâb-ı Âsafî", "Hükumet Kapısı", "Vysokaja Porta", "Blistatelʾnaja Porta", "Paşa Kapısı", "Ottomannische Pforte", "Othōmanikē Autokratoria", "Osmanlı İmperatorluğu"], "authorized_access_point": "Osmanisches Reich"} 3 -2024-07-16 20:07:38.000429 2024-07-17 06:57:51.580961 2bbcd0ec-6a7d-4ef2-ac51-54d591c73295 {"md5": "554b1e1c8f1f5619d222055f96828e31", "pid": "040757277", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pazifischer Raum"}, {"authorized_access_point": "Ferner Osten"}], "related": [{"authorized_access_point": "Asiatisch-Pazifischer Raum"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4075727-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040757277", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4075727-4", "source": "GND"}], "variant_access_point": ["Asien (Ost)"], "authorized_access_point": "Ostasien"} 3 -2024-07-16 20:07:06.330603 2024-07-17 06:57:54.557902 d77c95c4-1d43-4add-942c-cfc092d8d749 {"md5": "a551af5a7b77ad4b2fa8b46a9bbecfa7", "pid": "040780295", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Korea"}], "related": [{"authorized_access_point": "Korea"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4078029-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040780295", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4078029-6", "source": "GND"}], "classification": [{"name": "Südkoreaner", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}, {"name": "Südkoreanerin", "type": "bf:ClassificationDdc", "classificationPortion": "vbal"}], "variant_access_point": ["Korea (Süd)", "Dae han min gug", "Republik Korea", "Taehan-Min'guk", "Daehan-Min'guk", "Han'guk (Südkorea)", "Han-kook", "Republic of Korea", "ROK", "Kankoku", "République de Corée", "South Korea", "República de Corea", "한국", "韓國", "大韓民國", "대한민국"], "authorized_access_point": "Südkorea"} 3 -2024-07-16 19:08:16.993384 2024-07-17 06:57:57.87361 336c5519-a538-40f1-a3c6-585e7578e2d6 {"md5": "14e02759f12471dded2070063d1aba9f", "pid": "040794903", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Schweiz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4079490-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040794903", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4079490-8", "source": "GND"}], "variant_access_point": ["Zentralschweiz", "Fünf Orte"], "authorized_access_point": "Innerschweiz"} 3 -2024-07-16 19:08:16.818105 2024-07-17 06:57:58.98155 4ce171cf-2264-4da0-9540-b5bca5f86339 {"md5": "1133369b2536acedf84edb536b860087", "pid": "040805905", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Burk_(Forchheim)&oldid=237498787"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Forchheim (Oberfr.)"}, {"authorized_access_point": "Burk (Landkreis Forchheim)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4080590-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040805905", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4080590-6", "source": "GND"}], "variant_access_point": ["Forchheim (Oberfr.)- Burk", "Burk (Forchheim-Burk)"], "authorized_access_point": "Forchheim-Burk"} 3 -2024-07-16 20:06:59.83009 2024-07-17 06:58:00.156522 4b57625a-57de-4ea8-9158-92cbdc382690 {"md5": "9f0f00f126489f0b3b0a32bd47442015", "pid": "040912000", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4091200-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040912000", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4091200-0", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["LeDoubs", "Le Doubs", "Doubs, Le"], "authorized_access_point": "Doubs (Fluss)"} 3 -2024-07-16 19:08:15.539956 2024-07-17 06:58:06.166852 ce7b69b5-dc93-4e9d-86cc-a4e44bc8513f {"md5": "0522daf634596ef86ee1985b0f4ebaae", "pid": "041112504", "note": [{"label": ["Homepage - http://www.landkreisleipzig.de"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Kreis Leipzig-Land"}, {"authorized_access_point": "Muldentalkreis"}, {"authorized_access_point": "Landkreis Leipziger Land"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4111250-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041112504", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4111250-7", "source": "GND"}], "classification": [{"name": "Landkreis", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Leipzig (Kreis)", "Leipzig (Landkreis)"], "authorized_access_point": "Landkreis Leipzig"} 3 -2024-07-16 19:08:15.458865 2024-07-17 06:58:06.773564 5a72e5f8-6352-4c6b-bcd1-3bff6b5a7129 {"md5": "e8738909c8b86b75adba99e986d947f2", "pid": "041154282", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4115428-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041154282", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4115428-9", "source": "GND"}], "classification": [{"name": "Becken", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Obernil-Becken"} 3 -2024-07-16 19:08:15.369894 2024-07-17 06:58:07.013219 31970e47-e244-4bc2-a678-dd611cb169d9 {"md5": "425774f792fd162a2ae7bd3386ea8644", "pid": "041167163", "note": [{"label": ["Homepage - https://www.ochsenhausen.de/", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Ochsenhausen&oldid=246489625"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4116716-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041167163", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4116716-8", "source": "GND"}], "variant_access_point": ["Stadt Ochsenhausen"], "authorized_access_point": "Ochsenhausen"} 3 -2024-07-16 19:08:14.708308 2024-07-17 06:58:11.420662 83ad7add-214f-434c-a253-7dcd190a85da {"md5": "066678c3463a0d26c7aa493a7ae17caf", "pid": "042244943", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=236364456"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4224494-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042244943", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4224494-8", "source": "GND"}], "classification": [{"name": "Oblast", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Amur (Oblast)", "Amur-Gebiet (Oblast)", "Amurskaja oblastʹ", "Gebiet Amur"], "authorized_access_point": "Oblast Amur"} 3 -2024-07-16 19:08:14.612682 2024-07-17 06:58:11.702754 07e0c7e7-70c6-4a8f-80f8-9312e5061d3a {"md5": "bf80c55b95181986569006ec82dbf587", "pid": "042260213", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4226021-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042260213", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4226021-8", "source": "GND"}], "variant_access_point": ["Hartford, Connecticut", "Newtown, Conn."], "authorized_access_point": "Hartford, Conn."} 3 -2024-07-16 19:08:14.263681 2024-07-17 06:58:12.920682 d8530b8c-0b52-4876-b54e-6e41f8cb359c {"md5": "076eede2d04716f7a312d4e8af62c6c1", "pid": "042477247", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Heringsdorf (Seebad)"}, {"authorized_access_point": "Dreikaiserbäder-Bansin"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4247724-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042477247", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4247724-4", "source": "GND"}], "variant_access_point": ["Bansin (Heringsdorf, Seebad)"], "authorized_access_point": "Heringsdorf-Bansin"} 3 -2024-07-16 19:08:13.936819 2024-07-17 06:58:14.295814 cca4b647-78fe-41b3-8199-3072030c6c3d {"md5": "472c3c98cd3041c1bfca13bd54b6584a", "pid": "042567874", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Emscher_Landschaftspark"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Emscher-Gebiet"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4256787-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042567874", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4256787-7", "source": "GND"}], "classification": [{"name": "Landschaftspark", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Emscher-Park", "Emscherpark", "Emscher-Landschaftspark", "Emscher Landschaftspark"], "authorized_access_point": "Emscher Park"} 3 -2024-07-16 19:07:53.616078 2024-07-17 06:58:24.695534 548b3110-fdd9-40f8-b468-fd9e1d5d6c49 {"md5": "b08136e0b2f63a94ea3b408fbdfaca89", "pid": "1024812693", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1024812693", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1024812693", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1024812693", "source": "GND"}], "variant_access_point": ["Groß-Düben", "Dźěwin"], "authorized_access_point": "Groß Düben"} 3 -2024-07-16 19:08:13.147758 2024-07-17 06:58:16.981193 083d68a6-b05e-4055-8e1e-a4c7b45f0309 {"md5": "3ffbe43d16e6ecb3ef0bbbc27d3eda34", "pid": "043151019", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Workum&oldid=237963244"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Súdwest-Fryslân"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4315101-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043151019", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4315101-2", "source": "GND"}], "variant_access_point": ["Warkum", "Vorkjum", "Vorkumas", "Woerkem", "Wörkem", "Súdwest-Fryslân- Workum"], "authorized_access_point": "Workum"} 3 -2024-07-16 19:07:55.5051 2024-07-17 06:58:18.802574 0633afeb-d5d0-4ba9-b43a-75c79a2f5b8f {"md5": "3fbeacb2fadce41c7f1a15ad0576ebd5", "pid": "1001762630", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=243074240"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kreis Oststernberg"}], "related": [{"authorized_access_point": "Łagów (Woiwodschaft Lebus)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16063071-X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1001762630", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)16063071-X", "source": "GND"}], "authorized_access_point": "Lagow (Kreis Oststernberg)"} 3 -2024-07-16 19:07:55.330878 2024-07-17 06:58:19.321837 35cc13e7-69b1-4a28-ac9f-7351f065a314 {"md5": "2ba5c16576d425cb752535b07a3099cd", "pid": "1008073997", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Breitenfeld_(Leipzig)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Lindenthal-Breitenfeld"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7723003-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1008073997", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7723003-6", "source": "GND"}], "variant_access_point": ["Breitenfeld (Leipzig)"], "authorized_access_point": "Leipzig-Breitenfeld"} 3 -2024-07-16 19:07:54.972866 2024-07-17 06:58:20.389024 e05aecfa-ec90-488a-8ccb-87915523c4dc {"md5": "7a616dcbbb417028653ccb2cb42be626", "pid": "1010438603", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7737805-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1010438603", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7737805-2", "source": "GND"}], "variant_access_point": ["Dubraucke", "Dubrawka", "Döbern-Eichwege"], "authorized_access_point": "Eichwege"} 3 -2024-07-16 19:07:54.886324 2024-07-17 06:58:20.667927 ed034d4f-bca9-4c94-843b-246ab9f7ef01 {"md5": "e03cba1e440da65afd1775dc46774dd3", "pid": "1011060752", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7742462-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1011060752", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7742462-1", "source": "GND"}], "authorized_access_point": "Henningen (Salzwedel) (Region)"} 3 -2024-07-16 19:07:54.800367 2024-07-17 06:58:20.952209 336c149e-f0b9-4edb-883a-6b1e7f14ca1b {"md5": "5b575e68a220d9a559a2fe8086370f6d", "pid": "1016112106", "note": [{"label": ["Schloss auf einem Felssporn im Oberen Donautal, Wohnplatz historisch"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Landkreis Sigmaringen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7832565-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1016112106", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7832565-1", "source": "GND"}], "classification": [{"name": "Schloss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Beuron-Schloss Werenwag"], "authorized_access_point": "Schloss Werenwag"} 3 -2024-07-16 19:07:53.801373 2024-07-17 06:58:24.141034 1585eae9-9526-425e-adf9-bb09fedfc2e1 {"md5": "5bfdff430ac38607082bce070fc72b56", "pid": "1021113018", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7861847-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1021113018", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7861847-2", "source": "GND"}], "variant_access_point": ["Alksniupiu̜ kraštas"], "authorized_access_point": "Alksniupiai (Region)"} 3 -2024-07-16 19:07:53.713717 2024-07-17 06:58:24.425828 99f5e216-1d30-4d5c-8608-92111a9b1949 {"md5": "b58270fb5a5e4e099a355bf667595793", "pid": "1021396656", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7864312-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1021396656", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7864312-0", "source": "GND"}], "variant_access_point": ["Kalwarja", "Kalvariya", "Kalvarijos", "Calvaria", "Kalvaria", "Kalwaria", "Kalwariya"], "authorized_access_point": "Kalvarija"} 3 -2024-07-16 19:07:52.891357 2024-07-17 06:58:27.2373 c01a19eb-54cf-4054-9ac9-4f9a9ad42445 {"md5": "9b7ac1b51f2cf4749a8cc05f0f0a92e8", "pid": "1036912949", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1036912949", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1036912949", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1036912949", "source": "GND"}], "variant_access_point": ["Tema (Saudi-Arabien)", "Tayma", "Teima", "Taymāʾ"], "authorized_access_point": "Taima (Saudi-Arabien)"} 3 -2024-07-16 19:07:52.060369 2024-07-17 06:58:30.138663 1e81d2fe-a1a5-4537-9767-7a83ed73b43c {"md5": "61a13b5041cc1a270e7822d4c1503d64", "pid": "1053733119", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Neulandhalle"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Friedrichskoog"}, {"authorized_access_point": "Dieksanderkoog"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1053733119", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1053733119", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1053733119", "source": "GND"}], "classification": [{"name": "Mehrzweckbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Neulandhalle (Dieksanderkoog)", "Neulandhalle (Adolf-Hitler-Koog)"], "authorized_access_point": "Neulandhalle (Friedrichskoog)"} 3 -2024-07-16 19:07:51.641963 2024-07-17 06:58:31.554202 3abf6e13-c318-45f8-a64e-52a315661285 {"md5": "8a77da2c743fd93153863de450343d2d", "pid": "1054442959", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1054442959", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1054442959", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1054442959", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Föhrenbach (Fluss)"} 3 -2024-07-16 19:07:51.431184 2024-07-17 06:58:32.426083 92710919-cf0b-45a2-ade5-8b144201d496 {"md5": "143dd7e25f3a6bcedcc41482a5b928ef", "pid": "1054961824", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Großkochberg"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Uhlstädt-Kirchhasel"}, {"authorized_access_point": "Großkochberg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1054961824", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1054961824", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1054961824", "source": "GND"}], "authorized_access_point": "Uhlstädt-Kirchhasel- Großkochberg"} 3 -2024-07-16 19:07:51.094642 2024-07-17 06:58:33.589958 3f230c2d-7f76-49a2-87f0-82379ce909a8 {"md5": "bbe981bb7771140d17ba3c6ce90c7120", "pid": "1058041142", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Aachen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058041142", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058041142", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058041142", "source": "GND"}], "classification": [{"name": "Obelisk", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Tranchot-Obelisk (Lousberg)"], "authorized_access_point": "Tranchot-Obelisk (Aachen)"} 3 -2024-07-16 19:07:50.846273 2024-07-17 06:58:34.417856 0046bf5f-ec03-4f4c-9fd2-bb02beed6e5a {"md5": "02b72f17e8a5cee3d347bfc8215e99e9", "pid": "1058460862", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058460862", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058460862", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058460862", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Kayersbeek"} 3 -2024-07-16 19:07:50.013854 2024-07-17 06:58:37.233912 c552fa39-e89c-4056-8116-09d7297b98e3 {"md5": "67a582415ef5adc690350b905f13271c", "pid": "1058651994", "note": [{"label": ["Geonames - http://www.geonames.org/6951331/smallertse-beek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058651994", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058651994", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058651994", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Smallertse beek"], "authorized_access_point": "Smallertse Beek"} 3 -2024-07-16 19:07:49.217577 2024-07-17 06:58:40.080567 d9d4410b-ccda-4c9d-92f4-576456ca1c63 {"md5": "8683aa75c5109965592b8cc0e13ced53", "pid": "1058899597", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058899597", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058899597", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058899597", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Zuidelijke Horsthoeker beek"], "authorized_access_point": "Zuidelijke Horsthoekerbeek"} 3 -2024-07-16 19:07:48.351221 2024-07-17 06:58:42.840431 38a1f352-2923-41de-92c2-6d5f806bafd9 {"md5": "ed542ad54f7f55ad201911ee23bb9be9", "pid": "1058994743", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058994743", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058994743", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058994743", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Zilverbeek"} 3 -2024-07-16 19:07:48.216786 2024-07-17 06:58:43.700817 48f1546f-2657-4762-b973-0a7e6b4a4fc5 {"md5": "2793dcca53846b71c03dd476c3bcbabd", "pid": "1059250454", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Mook"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059250454", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059250454", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059250454", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Molenbeek (Mook, Fluss)"} 3 -2024-07-16 19:07:47.675117 2024-07-17 06:58:45.506563 82e8de03-6ea4-4c08-82d1-2e5d259234ce {"md5": "8891a3869a40b6966b8a32a54b9e86b2", "pid": "1060087367", "note": [{"label": ["Internet - http://domnick.de/", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Sammlung_Domnick&oldid=245473631"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Nürtingen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060087367", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060087367", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060087367", "source": "GND"}], "classification": [{"name": "Haus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Haus Domnick (Nürtingen)"} 3 -2024-07-16 19:07:47.506549 2024-07-17 06:58:46.075395 5443b433-78cc-420b-8a98-e0202c0014f8 {"md5": "61e5a77ae617498168c6a35f34485346", "pid": "1060238128", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/%C3%96lbach_(Berkel)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Vreden"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060238128", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060238128", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060238128", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Ölbach (Vreden, Fluss)"} 3 -2024-07-16 19:07:47.423111 2024-07-17 06:58:46.37903 2d038daa-a9f3-4c3e-80ff-3e7837013339 {"md5": "9e7957bb53d9693d763e0aa9fdb255e9", "pid": "1060401134", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Park_Babelsberg"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Potsdam"}, {"authorized_access_point": "Potsdam-Babelsberg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060401134", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060401134", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060401134", "source": "GND"}], "classification": [{"name": "Landschaftsgarten", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Park Babelsberg (Potsdam)"], "authorized_access_point": "Babelsberger Park (Potsdam)"} 3 -2024-07-16 19:07:46.652175 2024-07-17 06:58:48.923958 360ca920-556d-4fe2-8a88-f2ead17bf9a5 {"md5": "12f3ae04456e98c6a903bb986c0980ff", "pid": "1060502682", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060502682", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060502682", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060502682", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Dobrowabach"} 3 -2024-07-16 19:07:46.38239 2024-07-17 06:58:49.700415 3b79c634-daa0-462b-9b70-9bb40132533b {"md5": "0b9d75d7ba390cff2e0efdb8b48ee9e8", "pid": "1060503611", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Vernířovice"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060503611", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060503611", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060503611", "source": "GND"}], "classification": [{"name": "Fluss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Grundbach (Vernířovice, Fluss)"} 3 -2024-07-16 19:07:45.544948 2024-07-17 06:58:52.560737 3bf26f04-b9d0-44f3-8801-1c0d7180489a {"md5": "fa73a2499cf145b6aeb8bead61ecd565", "pid": "1064601502", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1064601502", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1064601502", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1064601502", "source": "GND"}], "variant_access_point": ["Canal du Midi (Region)"], "authorized_access_point": "Canal du Midi-Gebiet"} 3 -2024-07-16 19:07:45.462195 2024-07-17 06:58:52.844803 dbd26a2f-6f51-4657-913a-4d7608894901 {"md5": "e43b02c02ca77e5d23570857c1c3719c", "pid": "1064714455", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=%C5%A0akyna&oldid=1226681026"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1064714455", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1064714455", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1064714455", "source": "GND"}], "classification": [{"name": "Amt", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Amt Šakynos", "Amt Shakina", "Amt Shakinay", "Amt Szakinów"], "authorized_access_point": "Amt Šakyna"} 3 -2024-07-16 19:07:44.884533 2024-07-17 06:58:54.727595 4a08d70c-4050-4bd7-bfde-b6ae82abfe79 {"md5": "7ea864dda6b14d4acfb40d96da7b5dfb", "pid": "1067878831", "note": [{"label": ["Internet - http://www.loire-radweg.org/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Nevers"}, {"authorized_access_point": "Saint-Brevin-les-Pins"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1067878831", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1067878831", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1067878831", "source": "GND"}], "classification": [{"name": "Radwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["La Loire à Vélo"], "authorized_access_point": "Loire-Radweg"} 3 -2024-07-16 19:07:44.803675 2024-07-17 06:58:55.044657 2023f111-2581-4ab1-be52-aca5fcfbae35 {"md5": "6251414970800690072c3ff9dab46fc7", "pid": "1067883703", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Göbschelwitz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1067883703", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1067883703", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1067883703", "source": "GND"}], "variant_access_point": ["Göbschelwitz (Leipzig)"], "authorized_access_point": "Leipzig-Göbschelwitz"} 3 -2024-07-16 19:07:44.717098 2024-07-17 06:58:55.349215 6f75e986-9964-4394-b6c8-accf2479887d {"md5": "d00a4185e1c65aa088c24c26027b7434", "pid": "1068118490", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Rheinradweg"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Oberalppass"}, {"authorized_access_point": "Rotterdam"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1068118490", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1068118490", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1068118490", "source": "GND"}], "classification": [{"name": "Radwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Rhein-Radweg"], "authorized_access_point": "Rheinradweg"} 3 -2024-07-16 19:07:44.094957 2024-07-17 06:58:57.666628 1b8e508b-c29f-4224-adf0-40647246bdf7 {"md5": "9972bd96b9102ab468ea9b24cefaa3b2", "pid": "1073724549", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Baden (Niederösterreich)"}, {"authorized_access_point": "Schloss Weilburg (Baden, Niederösterreich)"}], "related": [{"authorized_access_point": "Ehemaliges Frauenbad (Baden, Niederösterreich)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1073724549", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1073724549", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1073724549", "source": "GND"}], "classification": [{"name": "Gruppendarstellung", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Schloss Weilburg (Baden, Niederösterreich) (Flora und Zephir)"], "authorized_access_point": "Schloss Weilburg (Baden, Niederösterreich) (Flora und Zephyr mit einem Kinde)"} 3 -2024-07-16 19:07:43.553152 2024-07-17 06:58:59.428416 70015cba-6ab7-4b9f-8139-7124ea471d64 {"md5": "f79ce1e86cdca7b9b35f6e62b565c00e", "pid": "1075220467", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Schatzhofen&oldid=237597866"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Furth-Schatzhofen"}, {"authorized_access_point": "Furth (Landkreis Landshut)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1075220467", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1075220467", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1075220467", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["St. Michael (Furth, Landkreis Landshut)", "Sankt Michael (Furth-Schatzhofen)", "St. Michael (Furth-Schatzhofen)", "Sankt Michael Schatzhofen"], "authorized_access_point": "Sankt Michael (Furth, Landkreis Landshut)"} 3 -2024-07-16 19:07:42.148761 2024-07-17 06:59:04.477272 ed33635f-cd5b-449e-ae92-bdbef2bb739a {"md5": "42b4d675e9bb7c56c46c1dcceb66f7d6", "pid": "1081838396", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Trachselwald"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081838396", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081838396", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081838396", "source": "GND"}], "classification": [{"name": "Schloss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Erziehungsheim", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Schloss Trachselwald"} 3 -2024-07-16 19:07:42.094154 2024-07-17 06:59:04.794405 893723e5-a9fc-4145-bfe1-d13227c16b5a {"md5": "9d426d00d439348f45e88833f9c94b7d", "pid": "1081838507", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Hindelbank"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081838507", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081838507", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081838507", "source": "GND"}], "classification": [{"name": "Schloss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Armenhaus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Gefängnisbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Gebäude der Anstalten Hindelbank (Hindelbank)", "Gebäude der Zwangsanstalt für Weiber (Hindelbank)"], "authorized_access_point": "Schloss Hindelbank (Hindelbank)"} 3 -2024-07-16 19:07:41.497992 2024-07-17 06:59:06.713509 76addcdc-20be-4e06-b0a2-51bce41ec067 {"md5": "2c045522ceba1f3215f55346bf2980e0", "pid": "1082001430", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kalkutta"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1082001430", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1082001430", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1082001430", "source": "GND"}], "classification": [{"name": "Stadion", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Kricketplatz", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Eden Gardens (Kalkutta)", "Rañji Sṭeḍiẏāma (Kalkutta)", "Īḍena Gārḍensa (Kalkutta)"], "authorized_access_point": "Ranji Stadium (Kalkutta)"} 3 -2024-07-16 19:07:40.910106 2024-07-17 06:59:08.714866 cdb987c1-b98f-4be1-9c1b-b2ad81082685 {"md5": "b56db1509c76b7e1a3073e2b926e4970", "pid": "1097213617", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1097213617", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1097213617", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1097213617", "source": "GND"}], "variant_access_point": ["Gundorf (Leipzig)"], "authorized_access_point": "Leipzig-Gundorf"} 3 -2024-07-16 19:07:40.831565 2024-07-17 06:59:09.028684 4aded07a-8214-4ee3-af65-2eeb1fefd5bd {"md5": "cbd4b918eb3690c311cf83e0b790ab37", "pid": "1099132061", "note": [{"label": ["Internet - http://www.allgaeu.de/wiesengaenger-touren?referralTopic=wandern"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Wandertrilogie Allgäu"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1099132061", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1099132061", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1099132061", "source": "GND"}], "classification": [{"name": "Rundwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Fernwanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Wiesengänger-Route"], "authorized_access_point": "Wiesengänger Route"} 3 -2024-07-16 19:07:39.905986 2024-07-17 06:59:12.176503 404539f9-a05d-4f0a-8ea8-1659261e48f9 {"md5": "635db23f5a6c7a4f718f6bc53920b092", "pid": "1132227771", "note": [{"label": ["Internet - http://caminoignaciano.org/de/introduccion"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Azpeitia-Loyola"}, {"authorized_access_point": "Manresa"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1132227771", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1132227771", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1132227771", "source": "GND"}], "classification": [{"name": "Wallfahrtsweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Ignatius-Weg", "Camino Ignaciano", "Inaziotar Bidea"], "authorized_access_point": "Ignatiusweg"} 3 -2024-07-16 19:07:39.558604 2024-07-17 06:59:13.256822 6ca01c25-63d3-4350-af18-92921cfc2d26 {"md5": "3c3fbf1f636579f4c599c3532db870de", "pid": "1136092293", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1136092293", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1136092293", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1136092293", "source": "GND"}], "authorized_access_point": "Schengen (Region)"} 3 -2024-07-16 19:07:39.458041 2024-07-17 06:59:13.515124 f11c8b69-fc57-4f2f-87ee-710cff0b57d7 {"md5": "c1fc8dc12a59bcf274b33bc069b1d92a", "pid": "1136731237", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Au an der Donau"}, {"authorized_access_point": "Naarn im Machlande"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1136731237", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1136731237", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1136731237", "source": "GND"}], "variant_access_point": ["Naarn im Machlande- Au"], "authorized_access_point": "Naarn- Au an der Donau"} 3 -2024-07-16 19:07:39.102713 2024-07-17 06:59:14.676392 81c5a766-9bd7-455d-85db-7028b4a64f3b {"md5": "9ba219d42bd0250c7e6c5106eabd95db", "pid": "1142135993", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Münster (Westf)"}], "related": [{"authorized_access_point": "Juridicum (Münster (Westf))"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1142135993", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1142135993", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1142135993", "source": "GND"}], "classification": [{"name": "Installation", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Metallkonstruktion", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["The meadow laughs (Münster (Westf))", "Tine lawn laughs (Münster (Westf))", "Das Gesicht in der Wand (Münster (Westf))", "The face in the wall (Münster (Westf))", "Die Wiese lacht oder das Gesicht in der Wand (Münster (Westf))", "The meadow laughs or the face in the wall (Münster (Westf))", "Tine lawn laughs or the face in the wall (Münster (Westf))"], "authorized_access_point": "Die Wiese lacht (Münster (Westf))"} 3 -2024-07-16 19:07:38.347429 2024-07-17 06:59:17.19677 8d218ae8-3abc-4bfa-b0a6-a5591f116cf8 {"md5": "6b86de51b4afcb528587a15b437b1d96", "pid": "1163419907", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Dreikaiserbäder"}, {"authorized_access_point": "Bansin"}, {"authorized_access_point": "Heringsdorf-Bansin"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1163419907", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1163419907", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1163419907", "source": "GND"}], "variant_access_point": ["Bansin (Dreikaiserbäder)"], "authorized_access_point": "Dreikaiserbäder-Bansin"} 3 -2024-07-16 19:07:38.253009 2024-07-17 06:59:17.462674 98e34429-e28b-495a-b7f7-8427ce85e733 {"md5": "8eddaf8e7aa362a66445e6199c07892d", "pid": "1163558095", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Ahlbeck_(Heringsdorf)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Dreikaiserbäder"}, {"authorized_access_point": "Ahlbeck (Seebad)"}, {"authorized_access_point": "Heringsdorf-Ahlbeck"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1163558095", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1163558095", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1163558095", "source": "GND"}], "variant_access_point": ["Ahlbeck (Dreikaiserbäder)"], "authorized_access_point": "Dreikaiserbäder-Ahlbeck"} 3 -2024-07-16 19:07:37.659235 2024-07-17 06:59:19.453594 11e39aa3-e05d-493d-a449-03433ab02efb {"md5": "65934d9c42984d59df483ddc96e76749", "pid": "1167335767", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1167335767", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1167335767", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1167335767", "source": "GND"}], "classification": [{"name": "Tiefseeberg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Louisville-Seamount-Chain", "Louisville Seamounts", "Louisville-Seamounts", "Louisville Ridge", "Louisville-Ridge"], "authorized_access_point": "Louisville Seamount Chain"} 3 -2024-07-16 19:07:36.906514 2024-07-17 06:59:22.023562 7d6857ab-3cc9-4dc0-bfa6-5b58ec56b5ca {"md5": "523956e4b3b86d473a828cb9ce3aa6da", "pid": "1179502884", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1179502884", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1179502884", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1179502884", "source": "GND"}], "variant_access_point": ["Krotoszyn (ziemia)", "Krotoschin (Land)", "Krotoschin (Region)", "Ziemia Krotoszyńska"], "authorized_access_point": "Krotoszyn (Region)"} 3 -2024-07-16 19:07:36.840165 2024-07-17 06:59:22.326657 f2ade7a4-8351-4af8-bcee-5a10f2b58a38 {"md5": "e5447bfb35c33369045359ed9e3b2569", "pid": "1180620623", "note": [{"label": ["unter - https://de.wikipedia.org/wiki/Heringsdorf", "unter - https://de.wikipedia.org/wiki/Bansin"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Heringsdorf (Seebad)"}, {"authorized_access_point": "Neu Sallenthin"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1180620623", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1180620623", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1180620623", "source": "GND"}], "variant_access_point": ["Heringsdorf- Neu Sallenthin", "Neu Sallenthin (Heringsdorf, Seebad)"], "authorized_access_point": "Heringsdorf-Neu Sallenthin"} 3 -2024-07-16 19:07:36.226122 2024-07-17 06:59:24.231193 12bdc6a2-bd6e-4f9b-bf50-1566b55eb0e4 {"md5": "36fe4134d8a5b0906e4bf5b596b847a7", "pid": "1189443015", "note": [{"label": ["Internet - http://www.muzeumwalcz.pl/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1189443015", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1189443015", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1189443015", "source": "GND"}], "variant_access_point": ["Wałcz (ziemia)", "Ziemia wałecka", "Deutsch Kroner Land", "Deutsch Krone (Land)"], "authorized_access_point": "Wałcz (Region)"} 3 -2024-07-16 19:07:23.363942 2024-07-17 07:00:11.940623 0d2d758d-4526-4812-a36c-93d96e669805 {"md5": "571bf23923f46f6a1f58e61e24620639", "pid": "1334785422", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Egloffstein"}, {"authorized_access_point": "Bieberbach (Egloffstein)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334785422", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334785422", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334785422", "source": "GND"}], "variant_access_point": ["Bieberbach (Egloffstein-Bieberbach)"], "authorized_access_point": "Egloffstein-Bieberbach"} 3 -2024-07-16 19:07:35.464273 2024-07-17 06:59:27.087865 d51c19c1-b0be-4f39-8eee-ef3864dc86d9 {"md5": "a31110d2e9ceb302957383ff20aa37ca", "pid": "1215862520", "note": [{"label": ["GeoNames - http://geotree.geonames.org/11303211/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1215862520", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1215862520", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1215862520", "source": "GND"}], "authorized_access_point": "Kiršai"} 3 -2024-07-16 19:07:35.380643 2024-07-17 06:59:27.417293 d95bbf7b-7252-4073-8079-b3b74fcbf12f {"md5": "b845ae7738756612970b2fb3ed316af3", "pid": "1219234621", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Saint-Ouen-le-Pin"}, {"authorized_access_point": "La Boissière"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1219234621", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1219234621", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1219234621", "source": "GND"}], "classification": [{"name": "Landhaus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Bauernhof", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Braffy (Saint-Ouen-le-Pin)"} 3 -2024-07-16 19:07:35.027265 2024-07-17 06:59:28.588303 8d4cde5a-ab89-444f-ad95-4488c6e4f744 {"md5": "de967b6c062a458c4fd38ecaf273bd23", "pid": "1224278054", "note": [{"label": ["Architekturmuseum, TU Berlin - https://architekturmuseum.ub.tu-berlin.de/index.php?p=51&SID=16093345395539", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Akademietheater_(Wien)&oldid=204362083", "Homepage - https://www.burgtheater.at/akademietheater"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Wien"}, {"authorized_access_point": "Wien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1224278054", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1224278054", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1224278054", "source": "GND"}], "classification": [{"name": "Theaterbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Akademie-Theater Wien (Wien)", "Akademie Theater Wien (Wien)"], "authorized_access_point": "Akademietheater Wien (Wien)"} 3 -2024-07-16 19:07:34.805664 2024-07-17 06:59:29.464752 26f5002e-0742-485a-b4f1-65c96580da51 {"md5": "3cadeb8bf50f47a16be932ac444915c4", "pid": "1233310046", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Dubring&oldid=197367017"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Wittichenau-Dubring"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1233310046", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1233310046", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1233310046", "source": "GND"}], "variant_access_point": ["Dubrjenk", "Eichhain"], "authorized_access_point": "Dubring"} 3 -2024-07-16 19:07:34.039028 2024-07-17 06:59:32.204295 a20c077f-87c2-4176-b720-9f32f3d88719 {"md5": "93b7cb909c80abb690bf04357045f357", "pid": "1239866968", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1239866968", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1239866968", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1239866968", "source": "GND"}], "classification": [{"name": "Berg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Mount Ferguson, Nev."} 3 -2024-07-16 19:07:33.954022 2024-07-17 06:59:32.5293 39018d11-43b2-452e-aace-34c9d88106c5 {"md5": "dadd1a62c4a99439be1bb2936bfc2b4b", "pid": "1240912943", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1240912943", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1240912943", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1240912943", "source": "GND"}], "variant_access_point": ["Loslauer Land", "Ziemia Wodzisławska", "Wodzisław Śląski (ziemia)", "Loslau (Region)"], "authorized_access_point": "Wodzisław Śląski (Region)"} 3 -2024-07-16 19:07:33.857881 2024-07-17 06:59:32.804678 e8312d89-ef78-46fc-a39e-56feb2c19599 {"md5": "d3d3b05d6898abb1f4f88c5028fb1d7e", "pid": "1262419808", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Stadtlauringen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1262419808", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1262419808", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1262419808", "source": "GND"}], "classification": [{"name": "Berg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Altenburg (Stadtlauringen, Berg)"} 3 -2024-07-16 19:07:33.471833 2024-07-17 06:59:34.599539 d20f43d0-6ff7-49d9-80d9-b9c6608837c0 {"md5": "7b4e3172f1c0fba13f4e5f1c42ab4949", "pid": "1284341119", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Horgen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1284341119", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1284341119", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1284341119", "source": "GND"}], "classification": [{"name": "Museumsbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Verkehrsbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Sust (Horgen)"], "authorized_access_point": "Alte Sust (Horgen)"} 3 -2024-07-16 19:07:33.228111 2024-07-17 06:59:35.434752 c4967740-cf70-4955-8be9-a47fe4f8a875 {"md5": "3a8fe015fa46c04a301ff4ab4a109bda", "pid": "1295131781", "note": [{"label": ["Verbandsbüro in Apolda - https://www.weimarer-land.travel/zukunft/goethe-erlebnisweg/", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Goethe-Erlebnisweg&oldid=234912759"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Weimar"}, {"authorized_access_point": "Uhlstädt-Kirchhasel- Großkochberg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1295131781", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1295131781", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1295131781", "source": "GND"}], "classification": [{"name": "Wanderweg", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Goethe-Erlebnisweg"} 3 -2024-07-16 19:07:32.607288 2024-07-17 06:59:37.939096 ecc692b4-ad1d-43f9-80d2-2f152b9dee95 {"md5": "bb755e3e55cfdaf6bc070221f3481421", "pid": "1329890205", "note": [{"label": ["Stadtverwaltung Jena - https://beteiligung.jena.de/sites/default/files/2024-02/Aufarbeitung_Geschichte%20des%20Orchideenbrunnen_B%C3%BCrgerbudget%20Jena_0.pdf"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Jena"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1329890205", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1329890205", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1329890205", "source": "GND"}], "classification": [{"name": "Brunnen", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Jenaer Orchideenbrunnen (Jena)"], "authorized_access_point": "Orchideenbrunnen (Jena)"} 3 -2024-07-16 19:07:31.985478 2024-07-17 06:59:39.904829 6cf31988-3042-4b21-9a53-d91fd2eb4815 {"md5": "fd2d119be56a826dcd7c22a2f38dc667", "pid": "1330847199", "note": [{"label": ["GeoNames - https://www.geonames.org/3099521/gana.html", "Wikipedia - https://pl.wikipedia.org/w/index.php?title=Gana&oldid=72537850"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Praszka"}, {"authorized_access_point": "Woiwodschaft Oppeln"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330847199", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330847199", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330847199", "source": "GND"}], "authorized_access_point": "Gana (Praszka)"} 3 -2024-07-16 19:07:31.690888 2024-07-17 06:59:41.066728 2d3a11df-48a9-49de-9e29-f04496f63d4e {"md5": "88836b79e9b936777a83d56a0d16f2f4", "pid": "1331109191", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Fetislam&oldid=1191312260", "Wikipedia - https://sr.wikipedia.org/w/index.php?title=%D0%A4%D0%B5%D1%82%D0%B8%D1%81%D0%BB%D0%B0%D0%BC&oldid=27385008"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kladovo"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331109191", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331109191", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331109191", "source": "GND"}], "classification": [{"name": "Festung", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Tvrđava Fetislam"], "authorized_access_point": "Fetislam"} 3 -2024-07-16 19:07:30.801475 2024-07-17 06:59:44.131375 3b13269f-c8b6-4950-a363-78baf23a8ea9 {"md5": "996a7ff22437aa57a2754b336061cd2a", "pid": "1332055729", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332055729", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332055729", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332055729", "source": "GND"}], "variant_access_point": ["Lautschitz", "Lautschütz", "Lanteschitz"], "authorized_access_point": "Blučina"} 3 -2024-07-16 19:07:30.727091 2024-07-17 06:59:44.469751 8ed33df5-504e-4f4b-82d6-d490be9c03f1 {"md5": "ddfaa5275f4662c24d47fcd1032f96fe", "pid": "1332057209", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Olmeda_de_la_Cuesta&oldid=226226107", "GeoNames - https://www.geonames.org/6357483/olmeda-de-la-cuesta.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332057209", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332057209", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332057209", "source": "GND"}], "authorized_access_point": "Olmeda de la Cuesta"} 3 -2024-07-16 19:07:30.59005 2024-07-17 06:59:45.056922 b720db86-e920-4868-a3c8-ac696fd1fbb6 {"md5": "cdb1dde18755b13050f3ed648461c565", "pid": "1332451578", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=M%C3%BDtina&oldid=240251478"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Alt-Albenreuth"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332451578", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332451578", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332451578", "source": "GND"}], "variant_access_point": ["Alt-Albenreuth"], "authorized_access_point": "Mýtina"} 3 -2024-07-16 19:07:29.975941 2024-07-17 06:59:47.237691 e3e55560-4178-4efc-a691-20a6d42b616c {"md5": "6bdec602bb6281c152de101f14933b17", "pid": "1332734863", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Salzburggau&oldid=225169888"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332734863", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332734863", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332734863", "source": "GND"}], "authorized_access_point": "Salzburggau"} 3 -2024-07-16 19:07:29.509475 2024-07-17 06:59:49.071701 89434b72-221f-457c-aa64-6499a23feb7c {"md5": "b92ce5f375562b025697f95ae9840bcf", "pid": "1332757375", "note": [{"label": ["RIplus Regg. Bamberg n. 39, in: Regesta Imperii Online - http://www.regesta-imperii.de/id/fffc7ec3-2a09-4f7b-a1c6-b0b415fe26b2"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Forchheim-Burk"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332757375", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332757375", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332757375", "source": "GND"}], "classification": [{"name": "Wüstung", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Wüstung Slierbach"], "authorized_access_point": "Slierbach (Wüstung)"} 3 -2024-07-16 19:07:29.163868 2024-07-17 06:59:50.34711 1d6bcd71-ffb5-45d2-a2ac-e84373c01a4c {"md5": "2ed191412af8520bb56d89e4b5ba0034", "pid": "1333113943", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Wolfersgr%C3%BCn_(Wallenfels)&oldid=245060892#Katholische_Filialkirche_St._Georg"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Wolfersgrün"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333113943", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333113943", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333113943", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["St. Georg (Wolfersgrün)", "Filialkirche Sankt Georg (Wolfersgrün)", "Katholische Filialkirche Sankt Georg (Wolfersgrün)"], "authorized_access_point": "Sankt Georg (Wolfersgrün)"} 3 -2024-07-16 19:08:05.568929 2024-07-17 07:00:51.451725 08b67ad5-ecde-4d9b-bdf9-56ef297144cb {"md5": "0f0e1aef5b3b4a12077683dc6aef2dd5", "pid": "947862730", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Juodkrant%C4%97&oldid=178982082", "GeoNames - http://geotree.geonames.org/598706/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Schwarzort"}, {"authorized_access_point": "Neringa"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5175593-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947862730", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5175593-2", "source": "GND"}], "authorized_access_point": "Juodkrantė"} 3 -2024-07-16 19:08:04.279423 2024-07-17 07:00:56.206279 40242d4c-9c28-4587-ad81-ea4e315e593c {"md5": "31b0f0226caae1452216c2b6adcf8c6c", "pid": "949740861", "note": [{"label": ["Homepage - http://www.stuenz.de/?path=content&contentid=10"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Leipzig-Sellerhausen"}, {"authorized_access_point": "Leipzig-Stünz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4442450-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949740861", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4442450-4", "source": "GND"}], "variant_access_point": ["Sellerhausen-Stünz (Leipzig)"], "authorized_access_point": "Leipzig-Sellerhausen-Stünz"} 3 -2024-07-16 19:07:28.512381 2024-07-17 06:59:52.771036 27cf7832-d8bf-419c-a712-c77b415802cf {"md5": "4d8be98fa1c1d2934e9438bafe46ba16", "pid": "1333570511", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Bystrez_(Werchowyna)&oldid=223341029", "Geonames - https://www.geonames.org/711003/bystrets.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333570511", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333570511", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333570511", "source": "GND"}], "variant_access_point": ["Bystrecʹ", "Bystrets"], "authorized_access_point": "Bystrez"} 3 -2024-07-16 19:07:27.748004 2024-07-17 06:59:55.313734 a4994ba7-1c01-400b-99a2-842864df3ef6 {"md5": "9178fcbe64427c58cea704e4528cc0bc", "pid": "1334086826", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Ostrov&oldid=239139996"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Constanṭa"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334086826", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334086826", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334086826", "source": "GND"}], "authorized_access_point": "Ostrov (Constanṭa)"} 3 -2024-07-16 19:07:27.662287 2024-07-17 06:59:55.590831 b77e2985-248a-40ac-8df0-574d3a1b39a0 {"md5": "ce8188f645218d55c19afa9cd9d247ca", "pid": "1334101221", "note": [{"label": ["Wikipedia - https://it.wikipedia.org/w/index.php?title=Santuario_della_Madonna_della_Neve_(Casto)&oldid=137435328"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Casto"}, {"authorized_access_point": "Auro"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334101221", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334101221", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334101221", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Madonna della Neve (Casto)"], "authorized_access_point": "Santuario della Madonna della Neve (Casto)"} 3 -2024-07-16 19:07:27.104845 2024-07-17 06:59:57.464915 5694527a-edca-4567-9635-da95c2e29d9a {"md5": "4c4fbc96095ae095319dfaa348731440", "pid": "1334310661", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Grünberg-Lumda"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334310661", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334310661", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334310661", "source": "GND"}], "authorized_access_point": "Lumda"} 3 -2024-07-16 19:07:27.023114 2024-07-17 06:59:57.771882 4613385b-b264-4578-b0f1-26837f454f9b {"md5": "a451bf470ebab0d98344cfd60c8a43be", "pid": "1334312974", "note": [{"label": ["Homepage - https://www.stadtmarketing-glinde.de/rathaus"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Glinde (Stormarn)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334312974", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334312974", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334312974", "source": "GND"}], "classification": [{"name": "Rathaus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Glinder Rathaus (Glinde)"], "authorized_access_point": "Rathaus Glinde (Glinde)"} 3 -2024-07-16 19:07:26.840947 2024-07-17 06:59:58.444885 305821e9-88bc-4ae3-880e-7dcf70fb8ff4 {"md5": "1fc6cdb81f88d22c13945f22c85ec2bb", "pid": "1334318069", "note": [{"label": ["Homepage - https://www.stormarnlexikon.de/rathausgrosshansdorf/", "Homepage - http://archiv.heimatverein-grosshansdorf.de/Wald-1960-08-gesamt.pdf"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Großhansdorf"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334318069", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334318069", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334318069", "source": "GND"}], "classification": [{"name": "Rathaus", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Großhansdorfer Rathaus (Großhansdorf)"], "authorized_access_point": "Rathaus Großhansdorf (Großhansdorf)"} 3 -2024-07-16 19:07:26.365512 2024-07-17 07:00:00.449422 f462d33c-070d-4818-99a3-f4741ed7afa0 {"md5": "4bfffe586026b0cf91ea7da807455eb2", "pid": "1334516766", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Oakhurst,_California&oldid=1225176061"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334516766", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334516766", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334516766", "source": "GND"}], "variant_access_point": ["Fresno Flats, Calif."], "authorized_access_point": "Oakhurst, Calif."} 3 -2024-07-16 19:07:25.556633 2024-07-17 07:00:02.973459 da6682fb-a148-4dbf-b072-151cd4d6d339 {"md5": "ffd9df76c568c600a30386f9cd620a65", "pid": "1334556687", "note": [{"label": ["Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://www.geo.lu.ch/map/kulturdenkmal/?FOCUS=2665615:1211443:1000&BASEMAP=G", "Search.ch - https://map.search.ch/Luzern,St.Leodegar-Str.?pos=666448,211966&zoom=18"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Luzern"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334556687", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334556687", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334556687", "source": "GND"}], "classification": [{"name": "Straße", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["St.-Leodegar-Strasse (Luzern)", "St. Leodegar-Str. (Luzern)"], "authorized_access_point": "Sankt-Leodegar-Strasse (Luzern)"} 3 -2024-07-16 19:07:25.272552 2024-07-17 07:00:04.130178 0f3c87d2-ea8d-4936-a6ab-15659243b5df {"md5": "91cb2bab6def2cef79804c1d6674bb4c", "pid": "133456325X", "note": [{"label": ["Search.ch - https://search.ch/map/6004-Luzern,St.Karli-Str.?pos=664859,212246&zoom=17", "Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://www.geo.lu.ch/map/kulturdenkmal/?FOCUS=2664987:1212278:2000&BASEMAP=G"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Luzern"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133456325X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133456325X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133456325X", "source": "GND"}], "classification": [{"name": "Straße", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["St.-Karli-Strasse (Luzern)", "St. Karlistrasse (Luzern)"], "authorized_access_point": "Sankt-Karli-Strasse (Luzern)"} 3 -2024-07-16 19:07:24.593674 2024-07-17 07:00:06.234045 ec4e2e14-25da-484a-8d33-b565658342d1 {"md5": "cd0904041baf17e2761b58e3839ffd73", "pid": "1334665028", "note": [{"label": ["Gemeinde im Landkreis Spree-Neiße"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334665028", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334665028", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334665028", "source": "GND"}], "variant_access_point": ["Kopańce/Sprjewja"], "authorized_access_point": "Neuhausen/Spree"} 3 -2024-07-16 19:07:23.974828 2024-07-17 07:00:08.521776 e25d9afe-3c2a-4b2e-b810-0e6352726c16 {"md5": "b25a5e37290a4c37b7bb937325f14b9e", "pid": "1334725691", "note": [{"label": ["Homepage - https://hungyen.gov.vn/portal/Pages/default.aspx"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334725691", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334725691", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334725691", "source": "GND"}], "classification": [{"name": "Provinz", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Provinz Hưng Yên", "Tỉnh Hưng Yên"], "authorized_access_point": "Provinz Hung Yen"} 3 -2024-07-16 19:07:23.728537 2024-07-17 07:00:09.398738 e988b0a7-bc61-4bb9-80e1-5452d2e3c3d9 {"md5": "af6e5f96acb06b0a5570b522cb6e8d89", "pid": "1334736340", "note": [{"label": ["AKL online - https://www.degruyter.com/database/AKL/entry/_00095457T/html", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Théâtre_des_Champs-Élysées&oldid=244284814"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Paris"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334736340", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334736340", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334736340", "source": "GND"}], "classification": [{"name": "Theaterbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Theaterbau des Théâtre des Champs-Élysées (Paris)"} 3 -2024-07-16 19:07:23.482787 2024-07-17 07:00:11.332049 5df9c955-af09-40c9-8fcf-6f2bcd70974d {"md5": "ba39b0c9f27122b96d37a20056d3975a", "pid": "1334779015", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_Gerresheim&oldid=242490329"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Düsseldorf"}, {"authorized_access_point": "Düsseldorf-Gerresheim"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334779015", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334779015", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334779015", "source": "GND"}], "classification": [{"name": "Ensemble", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}, {"name": "Fachwerkbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Gebäudeensemble Gerricusplatz 26-27 (Düsseldorf)"], "authorized_access_point": "Gerricusplatz 26-27 (Düsseldorf)"} 3 -2024-07-16 19:07:23.018675 2024-07-17 07:00:13.138882 7b36f5f1-3f40-4de3-8ba8-c7166d8b9200 {"md5": "f98852feaa7f1114b7e8fd1bc5fd8994", "pid": "1334804621", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Trier"}, {"authorized_access_point": "Trier-Kürenz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334804621", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334804621", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334804621", "source": "GND"}], "classification": [{"name": "Kapelle", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Kreuzkapelle (Trier-Kürenz)", "Kreuzchen (Trier)", "Kreuzchen (Trier-Kürenz)"], "authorized_access_point": "Kreuzkapelle (Trier)"} 3 -2024-07-16 19:07:22.672972 2024-07-17 07:00:14.409187 02f31023-5feb-4a3a-abe8-7b12701d04c1 {"md5": "0c184fb5f3adb9fdfd5abbbadc707307", "pid": "1334867097", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Fürstenfeld- Altenmarkt bei Fürstenfeld"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334867097", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334867097", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334867097", "source": "GND"}], "classification": [{"name": "Kirchenbau", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Pfarrkirche Heiliger Donatus (Altenmarkt bei Fürstenfeld)", "Pfarrkirche Hl. Donatus (Altenmarkt bei Fürstenfeld)"], "authorized_access_point": "Sankt Donatus (Altenmarkt bei Fürstenfeld)"} 3 -2024-07-16 19:07:22.083354 2024-07-17 07:00:16.780146 4b15cd73-38d2-47de-896a-2db8af49a5a3 {"md5": "fbafd9ee61e7c145304eda646b97d4ab", "pid": "1334900256", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=239879146"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Obertraun"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334900256", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334900256", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334900256", "source": "GND"}], "classification": [{"name": "Schloss", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "authorized_access_point": "Schloss Grub (Obertraun)"} 3 -2024-07-16 19:07:21.741861 2024-07-17 07:00:17.971578 9bbfddd7-7c53-4205-9679-659a03f24f62 {"md5": "ef5870f8141de7279b5fa857b56a238a", "pid": "1334907684", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=227274461"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Zlaté Hory (Jeseník)"}, {"authorized_access_point": "Údolí"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334907684", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334907684", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334907684", "source": "GND"}], "classification": [{"name": "Landschaftspark", "type": "bf:ClassificationDdc", "classificationPortion": "obin"}], "variant_access_point": ["Tereziino údolí (Zlaté Hory, Jeseník)", "Terezino údolí (Zlaté Hory, Jeseník)", "Theresiental (Zlaté Hory, Jeseník)"], "authorized_access_point": "Terčino údolí (Zlaté Hory, Jeseník)"} 3 -2024-07-16 19:07:21.410697 2024-07-17 07:00:19.144195 6a4d1e3e-7a31-46ed-9d74-c9498378ac10 {"md5": "1361004eb7b229137163e8783373561d", "pid": "1334938016", "note": [{"label": ["Internet - https://www.mindat.org/feature-3639055.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334938016", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334938016", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334938016", "source": "GND"}], "authorized_access_point": "Jusepín"} 3 -2024-07-16 19:07:21.316413 2024-07-17 07:00:19.405827 6d7fdbe4-a7ab-4449-9114-acb0ca4a8436 {"md5": "5120f843913fcc8a36c9a790cd4ede39", "pid": "1335058036", "note": [{"label": ["Wikipedia - https://it.wikipedia.org/w/index.php?title=Torre_Archirafi&oldid=140074551"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Riposto"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335058036", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335058036", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335058036", "source": "GND"}], "variant_access_point": ["Riposto- Torre Archirafi"], "authorized_access_point": "Torre Archirafi"} 3 -2024-07-16 19:07:20.903376 2024-07-17 07:00:20.853251 7c94df85-56af-4708-82f6-9cfefdc8284e {"md5": "ec3497e604cb5dee92dc67259001e7cc", "pid": "1335104917", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=M%C3%BDtina&oldid=240251478"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Mýtina"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335104917", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335104917", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335104917", "source": "GND"}], "variant_access_point": ["Alt Albenreuth", "Altalbenreuth", "Starý Albenreuth"], "authorized_access_point": "Alt-Albenreuth"} 3 +2024-09-11 09:11:45.759561 2024-09-11 09:11:45.759565 7d54e290-458f-4e6a-a641-46b953ffd177 {"md5": "0ecfcfaa3dd393f2158f06b906a4f166", "pid": "1335257845", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Katovice"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335257845", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335257845", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335257845", "source": "GND"}], "variant_access_point": ["Burgwall Katowitz", "Kněží hora", "Hradiště na Kněží hoře", "Katowice", "Katowitz"], "authorized_access_point": "Burgwall Katovice"} 1 +2024-09-11 09:11:45.828763 2024-09-11 09:11:45.828766 11bd7db9-8d0f-40a4-879a-a3bbb866e81a {"md5": "8dd759fa372c28f603f9f44e87e431e8", "pid": "1335257101", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Katovice&oldid=242019016"], "noteType": "dataSource"}, {"label": ["Minderstadt im Okres Strakonnice"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335257101", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335257101", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335257101", "source": "GND"}], "variant_access_point": ["Katowitz"], "authorized_access_point": "Katovice"} 1 +2024-09-11 09:11:45.887432 2024-09-11 09:11:45.887435 296c1f82-725e-4f2d-ad04-a0d7a2407c44 {"md5": "4128f98884ffa34f7a92f56adbe020d0", "pid": "133525675X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Wielbark_(Malbork)&oldid=236755840"], "noteType": "dataSource"}, {"label": ["Ort in der Wojewodschaft Pommern, Powiat malborski; der größere Teil gehört zur Stadt Malbork", "Für die Sacherschließung wird bei Splits nur diese (das ist die neueste/jüngste) Namensform verwendet"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133525675X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133525675X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133525675X", "source": "GND"}], "variant_access_point": ["Wielbark", "Willenberg"], "authorized_access_point": "Malbork-Wielbark"} 1 +2024-09-11 09:11:45.932493 2024-09-11 09:11:45.932497 9adf3aef-0e25-4de4-b2c2-4717face0d2a {"md5": "d0d0bcfab6515fe7e7d4d43e96257e59", "pid": "133525207X", "note": [{"label": ["Wikipedia - https://pl.wikipedia.org/w/index.php?title=Kwiatk%C3%B3w_(powiat_turecki)&oldid=72550113"], "noteType": "dataSource"}, {"label": ["Ort in der Gmina Brudzew, Powiat turecki, Wojewodschaft Großpolen", "Für die Sacherschließung wird bei Splits nur diese (das ist die neueste/jüngste) Namensform verwendet"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133525207X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133525207X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133525207X", "source": "GND"}], "authorized_access_point": "Kwiatków"} 1 +2024-09-11 09:11:45.978551 2024-09-11 09:11:45.978554 e3bf515f-c5be-42f3-a3bd-7d433c336917 {"md5": "9a5d419500024b788bd5c42ebd5b799b", "pid": "1335249966", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Steinburg_(Holstein)"], "noteType": "dataSource"}, {"label": ["Abgebrochen ab 1641, seither wüst"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Süderau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335249966", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335249966", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335249966", "source": "GND"}], "authorized_access_point": "Steinburg (Süderau)"} 1 +2024-09-11 09:11:46.025824 2024-09-11 09:11:46.025828 fb1d900e-ed2f-4d5f-b0c7-b44e9cca8c7d {"md5": "8a7734ee14a4fad28fffe1a8f80706c4", "pid": "1335243240", "note": [{"label": ["Pfarrkirche, der Kirchenbau stammt aus der Zeit 1593 bis 1723"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "San Basilio (Sardinien)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335243240", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335243240", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335243240", "source": "GND"}], "authorized_access_point": "San Pietro Apostolo (San Basilio, Sardinien)"} 1 +2024-09-11 09:11:46.077317 2024-09-11 09:11:46.077322 bb2d2de1-45e2-467c-b01f-ab1f80ea85db {"md5": "df5e41fd13dff03c8f5770ba978f8943", "pid": "133523909X", "note": [{"label": ["nach Aufgabe des Klosters 1810 als Arbeitshaus und Gefängnis genutzt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Venedig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133523909X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133523909X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133523909X", "source": "GND"}], "authorized_access_point": "Klosteranlage des Monastero di Santa Croce alla Giudecca (Venedig)"} 1 +2024-09-11 09:11:46.157783 2024-09-11 09:11:46.157787 1c4953d1-1c93-406b-965f-5a7cf045fcaf {"md5": "e00f859c0020ce7c33fda090bc62842f", "pid": "1335217711", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Gunzenhausen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335217711", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335217711", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335217711", "source": "GND"}], "variant_access_point": ["Büchelberg (Gunzenhausen)"], "authorized_access_point": "Gunzenhausen-Büchelberg"} 1 +2024-09-11 09:11:46.217761 2024-09-11 09:11:46.217766 38dec73f-69bf-41b8-bcdf-4086080808db {"md5": "e1c64024aa0576dfe4b4c9df1d6cf3d5", "pid": "1335201653", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Somerset County, NJ"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335201653", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335201653", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335201653", "source": "GND"}], "variant_access_point": ["Skillman, New Jersey"], "authorized_access_point": "Skillman, NJ"} 1 +2024-09-11 09:11:46.284285 2024-09-11 09:11:46.284293 e1657297-2649-4e82-920e-2d7f29b8cd50 {"md5": "b461bfc1e7c2d34084d7930e1503877c", "pid": "1335141790", "note": [{"label": ["Wikipedia (spanisch) - https://es.wikipedia.org/wiki/Caicara_de_Matur%C3%ADn"], "noteType": "dataSource"}, {"label": ["Kleinstadt im venezolanischen Bundesstaat Monagas"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335141790", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335141790", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335141790", "source": "GND"}], "authorized_access_point": "Caicara de Maturín"} 1 +2024-09-11 09:11:46.361517 2024-09-11 09:11:46.361526 70cdd82a-331a-4523-93f6-95db302a21fe {"md5": "5f3564b40a6a5ef3255ea7d422645922", "pid": "1335107711", "note": [{"label": ["Teilregion der japanischen Region Chūbu"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chūbu"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335107711", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335107711", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335107711", "source": "GND"}], "variant_access_point": ["Hokuriku Chihō", "北陸地方"], "authorized_access_point": "Hokuriku"} 1 +2024-09-11 09:11:46.432561 2024-09-11 09:11:46.432569 7f3ef1b6-2f8c-4904-a257-26243ec89491 {"md5": "9aca5824ca86a0a67070d6d9d1de0e7e", "pid": "1335104917", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=M%C3%BDtina&oldid=240251478"], "noteType": "dataSource"}, {"label": ["In der Sacherschließung nicht zu verwenden; für die Sacherschließung wird bei Splits nur die neueste/jüngste Namensform verwendet."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Mýtina"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335104917", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335104917", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335104917", "source": "GND"}], "variant_access_point": ["Alt Albenreuth", "Altalbenreuth", "Starý Albenreuth"], "authorized_access_point": "Alt-Albenreuth"} 1 +2024-09-11 09:11:46.502084 2024-09-11 09:11:46.502088 da809432-614f-45b6-b88d-90f488c8a1a7 {"md5": "5ad8121969261132efbc547d89436855", "pid": "1335098399", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Portsmouth_(Dominica)"], "noteType": "dataSource"}, {"label": ["Kleinstadt im Norden des Inselstaates Dominica"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335098399", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335098399", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335098399", "source": "GND"}], "authorized_access_point": "Portsmouth (Dominica)"} 1 +2024-09-11 09:11:46.566697 2024-09-11 09:11:46.566701 6514a894-2137-41c5-b433-5f6505ad0495 {"md5": "149e88793a98785da389a915e15cb2b0", "pid": "1335092390", "note": [{"label": ["AW-Wiki - https://www.aw-wiki.de/index.php/Villa_Wente_(Niederbreisig)"], "noteType": "dataSource"}, {"label": ["1970 abgerissen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bad Breisig"}, {"authorized_access_point": "Bad Niederbreisig"}, {"authorized_access_point": "Bad Breisig- Niederbreisig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335092390", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335092390", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335092390", "source": "GND"}], "variant_access_point": ["Villa Wenté (Bad Niederbreisig)", "Villa Wenté (Bad Breisig- Niederbreisig)"], "authorized_access_point": "Villa Wenté (Bad Breisig)"} 1 +2024-09-11 09:11:46.63513 2024-09-11 09:11:46.635135 a1fb3e6c-d9da-47a5-b5e2-fd17f02c5fa2 {"md5": "63dc2ac0ce9ed8bf0966cb0255453418", "pid": "1335092196", "note": [{"label": ["Homepage - https://www.neufreimann.de/"], "noteType": "dataSource"}, {"label": ["Das Areal der füheren Bayernkaserne wird zum neuen Wohnquartier"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "München"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335092196", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335092196", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335092196", "source": "GND"}], "variant_access_point": ["Neufreimann (München-Neufreimann)"], "authorized_access_point": "München-Neufreimann"} 1 +2024-09-11 09:11:46.703661 2024-09-11 09:11:46.703671 e11b1739-01c6-4bb3-85f9-3a9f19fe6d41 {"md5": "552b212cb3b66f3c3e640ff921c7604d", "pid": "1335086005", "note": [{"label": ["GeoNames - https://www.geonames.org/761744/podsuliszka.html", "Wikipedia - https://en.wikipedia.org/w/index.php?title=Podsuliszka&oldid=1166090601"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Powiat radomski"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335086005", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335086005", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335086005", "source": "GND"}], "authorized_access_point": "Podsuliszka"} 1 +2024-09-11 09:11:46.76989 2024-09-11 09:11:46.769897 a5d9bb71-264e-440f-b14a-04a03f5c42f9 {"md5": "113b39dcfb50f28523ee29186aa22ee2", "pid": "1335058036", "note": [{"label": ["Wikipedia - https://it.wikipedia.org/w/index.php?title=Torre_Archirafi&oldid=140074551"], "noteType": "dataSource"}, {"label": ["Ortsteil von Riposto in der Metropolitanstadt Catania, Sizilien"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Riposto"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1335058036", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1335058036", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1335058036", "source": "GND"}], "variant_access_point": ["Riposto- Torre Archirafi"], "authorized_access_point": "Torre Archirafi"} 1 +2024-09-11 09:11:46.837806 2024-09-11 09:11:46.83781 ef237ef4-9ac2-429a-997f-f66139728549 {"md5": "5cf14361dd0a611afd3a326699a29dca", "pid": "1334938016", "note": [{"label": ["Internet - https://www.mindat.org/feature-3639055.html"], "noteType": "dataSource"}, {"label": ["Ortschaft im venezolanischen Bundesstaat Monagas"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334938016", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334938016", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334938016", "source": "GND"}], "authorized_access_point": "Jusepín"} 1 +2024-09-11 09:11:46.894095 2024-09-11 09:11:46.894099 1853e1fd-7794-4349-b3dd-3f936b3b0ca0 {"md5": "de12503e88e93b0b4df12878a49e91a7", "pid": "1334917981", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "San Vito al Torre"}, {"authorized_access_point": "San Vito al Torre- Crauglio"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334917981", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334917981", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334917981", "source": "GND"}], "variant_access_point": ["Palazzo Steffaneo (San Vito al Torre)", "Palazzo Steffaneo Roncato (San Vito al Torre)"], "authorized_access_point": "Villa Stefaneo (San Vito al Torre)"} 1 +2024-09-11 09:11:46.949841 2024-09-11 09:11:46.949845 d1b809ce-49ef-46c7-8a70-e9a26e4d37b8 {"md5": "18e342aa51015a102be135719cddc7f3", "pid": "1334916292", "note": [{"label": ["1367 als Festeingang errichtet, das Portal schmückt ein Glasmosaik"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Sankt-Veits-Dom (Prag)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334916292", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334916292", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334916292", "source": "GND"}], "authorized_access_point": "Sankt-Veits-Dom (Prag) - Goldene Pforte"} 1 +2024-09-11 09:11:47.019364 2024-09-11 09:11:47.019368 914b0074-331a-4c39-b1bd-582f1e494e3b {"md5": "1befefa00d00bf37c094418c87d11d66", "pid": "1334913498", "note": [{"label": ["errichtet um 1127, zerstört 1633, 1650 bis 1653 abgerissen; die Steine zum Bau des Franziskanerklosters in Ehingen verwendet; Reste überließ man dem Verfall"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Schelklingen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334913498", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334913498", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334913498", "source": "GND"}], "variant_access_point": ["Schloss Hohenschelklingen (Schelklingen)", "Burg Hohen Schelklingen (Schelklingen)"], "authorized_access_point": "Burg Hohenschelklingen (Schelklingen)"} 1 +2024-09-11 09:11:47.085981 2024-09-11 09:11:47.085984 39bf357f-9b8d-4cc5-b2dc-1a8f514e02d5 {"md5": "1043a431bc4f10f4e5fcf097dca1e5a7", "pid": "1334907684", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=227274461"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Zlaté Hory (Jeseník)"}, {"authorized_access_point": "Údolí"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334907684", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334907684", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334907684", "source": "GND"}], "variant_access_point": ["Tereziino údolí (Zlaté Hory, Jeseník)", "Terezino údolí (Zlaté Hory, Jeseník)", "Theresiental (Zlaté Hory, Jeseník)"], "authorized_access_point": "Terčino údolí (Zlaté Hory, Jeseník)"} 1 +2024-09-11 09:11:47.140687 2024-09-11 09:11:47.140691 3cff1256-9489-4d20-862f-6e7a41385417 {"md5": "e3f581ecf339fa953b5b8692f76a1b5d", "pid": "1334907048", "note": [{"label": ["Sitz der SPÖ Tirol."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Innsbruck"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334907048", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334907048", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334907048", "source": "GND"}], "variant_access_point": ["Salurner Straße 2 (Innsbruck)"], "authorized_access_point": "SPÖ-Parteihaus (Innsbruck)"} 1 +2024-09-11 09:11:47.196401 2024-09-11 09:11:47.196409 659d583e-5c33-4c1c-9a22-0742b56ae34c {"md5": "8bfb823cdf023d72ec78e5c32f68c312", "pid": "1334904251", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=214053093"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334904251", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334904251", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334904251", "source": "GND"}], "variant_access_point": ["Wischke", "Wischkau", "Wieschke", "Lindendorf O.S."], "authorized_access_point": "Wyszków Śląski"} 1 +2024-09-11 09:11:47.248938 2024-09-11 09:11:47.248941 d5f489d3-444e-4246-8ae7-3d0ac893b648 {"md5": "a1ef780f6ea651d80c3f652d2f9d2c6c", "pid": "133490281X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=244643949"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Fernitz-Mellach"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133490281X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133490281X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133490281X", "source": "GND"}], "authorized_access_point": "Schloss Weissenegg (Fernitz-Mellach)"} 1 +2024-09-11 09:11:47.304518 2024-09-11 09:11:47.304522 62dda1f1-efc8-4e8d-98cb-1726b9414b01 {"md5": "fd78fd0ce2a56d40209e76cb52e3f476", "pid": "1334900256", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=239879146"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Obertraun"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334900256", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334900256", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334900256", "source": "GND"}], "authorized_access_point": "Schloss Grub (Obertraun)"} 1 +2024-09-11 09:11:47.377526 2024-09-11 09:11:47.377531 9f7734de-dac0-4778-b87e-143ba377bca2 {"md5": "49ccb1225208f502b77f6aa57bc7565c", "pid": "133489874X", "note": [{"label": ["Berg zwischen Oberlinxweiler und Niederlinxweiler, beides Ortsteile von St. Wendel im Landkreis St. Wendel, Saarland; auf dem Spiemont sich befand eine vor- oder frühgeschichtliche Befestigungsanlage"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133489874X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133489874X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133489874X", "source": "GND"}], "authorized_access_point": "Spiemont"} 1 +2024-09-11 09:11:47.434104 2024-09-11 09:11:47.434108 92d612f6-0477-43b5-8312-e0d8488a700c {"md5": "7909bbf721b856045f9ce5dd753721d3", "pid": "1334896755", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Platz_der_Republik_(Hamburg)&oldid=240777547"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Hamburg-Altona"}, {"authorized_access_point": "Hamburg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334896755", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334896755", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334896755", "source": "GND"}], "variant_access_point": ["Kaiserplatz (Hamburg)"], "authorized_access_point": "Platz der Republik (Hamburg)"} 1 +2024-09-11 09:12:08.066674 2024-09-11 09:12:08.066683 8f7699c7-cb32-458d-9b4c-bbb4c27db131 {"md5": "2451ae0f8cec736cca4dc032ecc7414c", "pid": "1060503166", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060503166", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060503166", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060503166", "source": "GND"}], "authorized_access_point": "Gränzbach"} 1 +2024-09-11 09:11:47.501031 2024-09-11 09:11:47.501035 31ab8fb1-a2c3-4949-a646-92483b2fe15f {"md5": "1585b6187b7c40fe8f11c21426c91b30", "pid": "1334893594", "note": [{"label": ["Homepage - https://www.phoenixhof.de/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Hamburg-Bahrenfeld"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334893594", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334893594", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334893594", "source": "GND"}], "authorized_access_point": "Phoenixhof (Hamburg)"} 1 +2024-09-11 09:11:47.563929 2024-09-11 09:11:47.563932 83945569-0a66-4b73-aae1-273bb71d69b0 {"md5": "a5d8f5b51f6202493e7d6c9269b90d83", "pid": "133489129X", "note": [{"label": ["Homepage - https://neuesamt.org/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Hamburg-Altona"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133489129X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133489129X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133489129X", "source": "GND"}], "variant_access_point": ["NAA"], "authorized_access_point": "Neues Amt Altona (Hamburg-Altona)"} 1 +2024-09-11 09:11:47.616464 2024-09-11 09:11:47.616468 0b144f1f-b755-4300-bba5-6546e42f9e48 {"md5": "6974efab8ba720fae5d2c3b166468176", "pid": "1334878234", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Holowaniwsk&oldid=246179368"], "noteType": "dataSource"}, {"label": ["Siedlung städtischen Typs im zentralukrainischen Oblast Kirowohrad"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334878234", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334878234", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334878234", "source": "GND"}], "variant_access_point": ["Holovanivsk", "Hołowaniewskie", "Голованівськ", "Голованевск"], "authorized_access_point": "Holowaniwsk"} 1 +2024-09-11 09:11:47.668043 2024-09-11 09:11:47.668047 b0e68b7d-ffa3-4498-9770-8060800c89fd {"md5": "33429a245bc534bab93abf612d1e1f86", "pid": "1334875707", "note": [{"label": ["GeoNames - http://geotree.geonames.org/5126239/", "Wikipedia - https://en.wikipedia.org/w/index.php?title=Mattituck,_New_York&oldid=1214492095"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334875707", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334875707", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334875707", "source": "GND"}], "authorized_access_point": "Mattituck, NY"} 1 +2024-09-11 09:11:47.72078 2024-09-11 09:11:47.720783 58a09521-d424-4455-8654-08b9a18c40fe {"md5": "bf6e5c4667514ebd3b08844e6ade03ee", "pid": "1334874387", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Großwilfersdorf-Hainersdorf"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334874387", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334874387", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334874387", "source": "GND"}], "variant_access_point": ["Pfarrkirche Heiliger Georg (Hainersdorf)", "Pfarrkirche Hl. Georg (Hainersdorf)"], "authorized_access_point": "Sankt Georg (Hainersdorf)"} 1 +2024-09-11 09:11:47.768493 2024-09-11 09:11:47.768497 4cac7f37-57b1-47d4-a56c-6f4c55fb4f1b {"md5": "55ec925a465dbcf25836624e8fe0cc0c", "pid": "1334867097", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Fürstenfeld- Altenmarkt bei Fürstenfeld"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334867097", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334867097", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334867097", "source": "GND"}], "variant_access_point": ["Pfarrkirche Heiliger Donatus (Altenmarkt bei Fürstenfeld)", "Pfarrkirche Hl. Donatus (Altenmarkt bei Fürstenfeld)"], "authorized_access_point": "Sankt Donatus (Altenmarkt bei Fürstenfeld)"} 1 +2024-09-11 09:11:47.823538 2024-09-11 09:11:47.823543 871842a0-4bb5-4b76-8b33-68aacca62fc6 {"md5": "4945a081325eeb07647eedb6aab1da25", "pid": "1334866473", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Birkfeld"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334866473", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334866473", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334866473", "source": "GND"}], "authorized_access_point": "Schloss Birkenstein (Birkfeld)"} 1 +2024-09-11 09:11:48.015591 2024-09-11 09:11:48.015597 3d1ab6c3-ac0d-4179-8b64-edb43da2951a {"md5": "1469c78dcf93b9a18b17248496adcc13", "pid": "1334866082", "note": [{"label": ["OBV - https://permalink.obvsg.at/AC17225353"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Vittorio Veneto"}, {"authorized_access_point": "Venetien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334866082", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334866082", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334866082", "source": "GND"}], "authorized_access_point": "Comunità Montana delle Prealpi Trevigiane"} 1 +2024-09-11 09:11:48.109429 2024-09-11 09:11:48.109434 5f99baa7-9be3-4610-af86-93b1b6f07636 {"md5": "c3c1b9de0710bbede820063ef5902c14", "pid": "1334865981", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Neudau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334865981", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334865981", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334865981", "source": "GND"}], "authorized_access_point": "Schloss Neudau (Neudau)"} 1 +2024-09-11 09:11:48.160302 2024-09-11 09:11:48.160306 6cf9631b-5bea-401e-af8c-13cf04e126e3 {"md5": "b35e0dccfed6283e8297c5bc69033f6a", "pid": "1334804621", "note": [{"label": ["Kapelle auf dem Petrisberg"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Trier"}, {"authorized_access_point": "Trier-Kürenz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334804621", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334804621", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334804621", "source": "GND"}], "variant_access_point": ["Kreuzkapelle (Trier-Kürenz)", "Kreuzchen (Trier)", "Kreuzchen (Trier-Kürenz)"], "authorized_access_point": "Kreuzkapelle (Trier)"} 1 +2024-09-11 09:11:48.22297 2024-09-11 09:11:48.222974 eea7c986-102c-4601-b2bd-1ca3c70f2b58 {"md5": "90c40219384fbaf139d3a0ff16fa6646", "pid": "1334804141", "note": [{"label": ["Kapelle im Ortsteil Kürenz; wurde 1960 abgerissen; der Bau wurde früher Peter Benz zugeschrieben"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Trier"}, {"authorized_access_point": "Trier-Kürenz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334804141", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334804141", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334804141", "source": "GND"}], "variant_access_point": ["St. Cornelius-Kapelle (Trier)", "Sankt Cornelius-Kapelle (Trier-Kürenz)", "St. Cornelius-Kapelle (Trier-Kürenz)", "Jüngere Kürenzer Kapelle (Trier)"], "authorized_access_point": "Sankt Cornelius-Kapelle (Trier)"} 1 +2024-09-11 09:11:48.282923 2024-09-11 09:11:48.282927 fe04c478-96d3-4441-a4b9-2a821842b2a0 {"md5": "9b096f48a550991be586f26fff0b623c", "pid": "1334801304", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Gradberg&oldid=214683168"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bad Driburg"}, {"authorized_access_point": "Nordrhein-Westfalen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334801304", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334801304", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334801304", "source": "GND"}], "variant_access_point": ["NSG Gradberg", "Gradberg"], "authorized_access_point": "Naturschutzgebiet Gradberg"} 1 +2024-09-11 09:11:48.353381 2024-09-11 09:11:48.353389 9cba5410-cc60-4451-aac6-5657a017a5a7 {"md5": "9867d19c75f8b03d5f9ae7b3eb346fb1", "pid": "1334789134", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Ostentrop&oldid=243213300"], "noteType": "dataSource"}, {"label": ["Bis 30.06.1969 selbstständig, dann Ortsteil von Finnentrop (Kreis Olpe)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Finnentrop-Ostentrop"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334789134", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334789134", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334789134", "source": "GND"}], "authorized_access_point": "Ostentrop"} 1 +2024-09-11 09:11:48.416185 2024-09-11 09:11:48.416189 ab09604d-9d43-4f57-a2c4-8d97a3ecc2cd {"md5": "571bf23923f46f6a1f58e61e24620639", "pid": "1334785422", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Egloffstein"}, {"authorized_access_point": "Bieberbach (Egloffstein)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334785422", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334785422", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334785422", "source": "GND"}], "variant_access_point": ["Bieberbach (Egloffstein-Bieberbach)"], "authorized_access_point": "Egloffstein-Bieberbach"} 1 +2024-09-11 09:11:48.465527 2024-09-11 09:11:48.46553 d648f8c9-e3aa-4339-9e8d-bfed04682a15 {"md5": "cef0a657d2faec5e65cf2414843cf0d2", "pid": "1334784493", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=S%C3%B8r-Aurdal&oldid=240707152"], "noteType": "dataSource"}, {"label": ["Kommune im norwegischen Fylke Innlandet"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334784493", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334784493", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334784493", "source": "GND"}], "authorized_access_point": "Sør-Aurdal"} 1 +2024-09-11 09:11:48.522459 2024-09-11 09:11:48.522463 66d14f57-1894-4857-9f19-5fab84885020 {"md5": "636095869c8e057dcd65316a181c16d5", "pid": "1334779015", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_Gerresheim&oldid=242490329"], "noteType": "dataSource"}, {"label": ["Wurde bereits 1335 in einem Schenkungsvertrag urkundlich erwähnt; Teile der ursprünglichen Holzbalken wurden nach Teilabbruch 1978 in dem Neubau wiedergenutzt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Düsseldorf"}, {"authorized_access_point": "Düsseldorf-Gerresheim"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334779015", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334779015", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334779015", "source": "GND"}], "variant_access_point": ["Gebäudeensemble Gerricusplatz 26-27 (Düsseldorf)"], "authorized_access_point": "Gerricusplatz 26-27 (Düsseldorf)"} 1 +2024-09-11 09:11:48.583067 2024-09-11 09:11:48.58307 a2045cee-ad66-4cf2-931f-33b3affdb41b {"md5": "38e45f32cf456da32cdea9435e871c56", "pid": "1334766363", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Posada_(Bogatynia)&oldid=244888515"], "noteType": "dataSource"}, {"label": ["Ortschaft in der Amtshauptmannschaft Zittau; seit 1945 Posada in der polnischen Woiwodschaft Niederschlesien"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Ostritz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334766363", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334766363", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334766363", "source": "GND"}], "variant_access_point": ["Rußdorf"], "authorized_access_point": "Rusdorf (Ostritz)"} 1 +2024-09-11 09:11:48.637451 2024-09-11 09:11:48.637454 20009aab-f807-42c1-8bcd-852b4a50c5df {"md5": "236bf968cd45859394a40f121e7ca976", "pid": "1334756465", "note": [{"label": ["Wikipedia - https://pl.wikipedia.org/w/index.php?title=Czerwona_Woda_(wojew%C3%B3dztwo_dolno%C5%9Bl%C4%85skie)&oldid=72559107"], "noteType": "dataSource"}, {"label": ["Dorf im Kreis Zgorzelec der polnischen Woiwodschaft Niederschlesien"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334756465", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334756465", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334756465", "source": "GND"}], "variant_access_point": ["Rothwasser"], "authorized_access_point": "Czerwona Woda"} 1 +2024-09-11 09:11:49.239948 2024-09-11 09:11:49.239951 0a722838-0a4d-4a02-a593-0a45ba5b3a54 {"md5": "95b9343cb252be5f9882d1b99085c889", "pid": "1334666474", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Weibern (Landkreis Ahrweiler)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334666474", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334666474", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334666474", "source": "GND"}], "authorized_access_point": "Heiligenhäuschen (Weibern, Landkreis Ahrweiler)"} 1 +2024-09-11 09:11:48.687979 2024-09-11 09:11:48.687982 ca47946e-2729-4d61-8c50-43108a6cb022 {"md5": "69cc1ddc27cf69b051d7cd400f8ed574", "pid": "1334736340", "note": [{"label": ["AKL online - https://www.degruyter.com/database/AKL/entry/_00095457T/html", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Théâtre_des_Champs-Élysées&oldid=244284814"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Paris"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334736340", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334736340", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334736340", "source": "GND"}], "authorized_access_point": "Theaterbau des Théâtre des Champs-Élysées (Paris)"} 1 +2024-09-11 09:11:48.742896 2024-09-11 09:11:48.742899 fa05b0ce-835f-4c7d-97ab-5310ffb29d5b {"md5": "7f5b529cdf10bdd142a770981da4b44f", "pid": "1334729824", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Stanowice_(Strzegom)"], "noteType": "dataSource"}, {"label": ["1307 wurde der Ort in einem Dokument als \\"Stanewicz\\" erwähnt und gehörte damals zum Herzogtum Schweidnitz. ... Stonwitz gehörte bis 1932 zum Landkreis Striegau..."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334729824", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334729824", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334729824", "source": "GND"}], "variant_access_point": ["Stannowitz", "Stonwitz"], "authorized_access_point": "Stanowitz"} 1 +2024-09-11 09:11:48.818377 2024-09-11 09:11:48.818382 2ea24dce-968b-4654-a242-d0db956340a8 {"md5": "d258c56241a28ec6700a0964b463da9d", "pid": "1334725756", "note": [{"label": ["Hauptstadt der gleichnamigen Provinz in Nordvietnam"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Provinz Hung Yen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334725756", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334725756", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334725756", "source": "GND"}], "variant_access_point": ["Hưng Yên"], "authorized_access_point": "Hung Yen"} 1 +2024-09-11 09:11:48.884556 2024-09-11 09:11:48.884564 236dd001-0213-4c04-bdd2-426280d8931c {"md5": "21378658c63ba3b965fc448af624a390", "pid": "1334725691", "note": [{"label": ["Homepage - https://hungyen.gov.vn/portal/Pages/default.aspx"], "noteType": "dataSource"}, {"label": ["Provinz in Nordvietnam"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334725691", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334725691", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334725691", "source": "GND"}], "variant_access_point": ["Provinz Hưng Yên", "Tỉnh Hưng Yên"], "authorized_access_point": "Provinz Hung Yen"} 1 +2024-09-11 09:11:48.954145 2024-09-11 09:11:48.954148 3cac90ef-cf10-470f-80dc-6972ef4e4de4 {"md5": "d60ab8fcbd7ad12751133b42f26bb68c", "pid": "1334671486", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Valencia"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334671486", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334671486", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334671486", "source": "GND"}], "authorized_access_point": "Monumento al marqués de Campo (Valencia)"} 1 +2024-09-11 09:11:49.009365 2024-09-11 09:11:49.009369 0dab625d-96d3-4367-9c81-a15951d57045 {"md5": "44c6129ecd22ffcd98ad80ae00cf675a", "pid": "1334670560", "note": [{"label": ["Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://www.geo.lu.ch/map/kulturdenkmal/?FOCUS=2665895:1211586:250&BASEMAP=G", "Search.ch - https://map.search.ch/Luzern,Kornmarkt?pos=665856,211604&zoom=18"], "noteType": "dataSource"}, {"label": ["6004 Luzern. Platz in der Altstadt, davon abgehend der Rathaussteg (S), Brandgässli und Kornmarktgasse (W), Kapellgasse und Furrengasse (O), sowie Werchlaubengässli (NO)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Luzern"}, {"authorized_access_point": "Altstadt (Luzern)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334670560", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334670560", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334670560", "source": "GND"}], "authorized_access_point": "Kornmarkt (Luzern)"} 1 +2024-09-11 09:11:49.074283 2024-09-11 09:11:49.074288 c50ae982-0af5-44f2-ba94-43f34235f819 {"md5": "ae69592e422f3577803aa741611fcee5", "pid": "1334670390", "note": [{"label": ["Ortsteil der Gemeinde Felixsee im Landkreis Spree-Neiße"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Felixsee"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334670390", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334670390", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334670390", "source": "GND"}], "variant_access_point": ["Frycowy Gaj"], "authorized_access_point": "Friedrichshain (Felixsee)"} 1 +2024-09-11 09:11:49.136668 2024-09-11 09:11:49.136672 ac8030b4-6dc5-437c-9b29-10e337f78c05 {"md5": "98a3216a2943b1abac2905d2753703c0", "pid": "1334670323", "note": [{"label": ["Ehrendenkmal für den Maler José de Ribera"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Valencia"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334670323", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334670323", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334670323", "source": "GND"}], "variant_access_point": ["Monument al pintor Josep de Ribera (Valencia)", "Monumento al pintor José de Ribera (Valencia)"], "authorized_access_point": "El pintor Ribera (Valencia)"} 1 +2024-09-11 09:11:49.186484 2024-09-11 09:11:49.186488 6dce0d2a-eb6d-41e0-81aa-7982e7ed2f7f {"md5": "160bc6f71a1510175ddd36f18d1bd3a7", "pid": "1334670048", "note": [{"label": ["Ortsteil der Gemeinde Rietzneuendorf-Staakow im Landkreis Dahme-Spreewald"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Rietzneuendorf-Staakow"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334670048", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334670048", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334670048", "source": "GND"}], "variant_access_point": ["Frycowy Dwor"], "authorized_access_point": "Friedrichshof"} 1 +2024-09-11 09:11:49.30768 2024-09-11 09:11:49.307683 71f7c28f-54bc-4f63-8efd-a0b8743f0799 {"md5": "ed95568f27d5c27c5e575e0296721eb8", "pid": "1334665036", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Weibern (Landkreis Ahrweiler)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334665036", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334665036", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334665036", "source": "GND"}], "authorized_access_point": "Mariensäule Weibern (Weibern, Landkreis Ahrweiler)"} 1 +2024-09-11 09:11:49.419157 2024-09-11 09:11:49.419162 a33d4810-a4d0-4ad0-9a79-e73673f34cc2 {"md5": "cd0904041baf17e2761b58e3839ffd73", "pid": "1334665028", "note": [{"label": ["Gemeinde im Landkreis Spree-Neiße"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334665028", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334665028", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334665028", "source": "GND"}], "variant_access_point": ["Kopańce/Sprjewja"], "authorized_access_point": "Neuhausen/Spree"} 1 +2024-09-11 09:11:49.501307 2024-09-11 09:11:49.501311 a83d36c7-4552-4db1-a8bc-c33f9d9c6e06 {"md5": "94467162754199ed3bb4a36a9f8da992", "pid": "1334664242", "note": [{"label": ["Ortsteil der Gemeinde Neuhausen/Spree im Landkreis Spree-Neiße"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Neuhausen/Spree"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334664242", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334664242", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334664242", "source": "GND"}], "variant_access_point": ["Dubrawka"], "authorized_access_point": "Frauendorf (Neuhausen/Spree)"} 1 +2024-09-11 09:11:49.563301 2024-09-11 09:11:49.563304 9b0537d2-86a4-4e48-b77d-3069c4b2dca1 {"md5": "a82d17359ed667f4ebd99faecfaf0cd3", "pid": "1334661073", "note": [{"label": ["Ortsteil der Gemeinde Kolkwitz im Landkreis Spree-Neiße"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Kolkwitz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334661073", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334661073", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334661073", "source": "GND"}], "variant_access_point": ["Dubje"], "authorized_access_point": "Eichow"} 1 +2024-09-11 09:11:49.619626 2024-09-11 09:11:49.61963 a607d7de-fea5-4b30-a1e5-b7a0e16cd25f {"md5": "725e7e495bf8bc21318333e92a782494", "pid": "1334658196", "note": [{"label": ["Sirenen-Statuen auf der Brücke Pontelungo in Bologna"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bologna"}, {"authorized_access_point": "Pontelungo (Bologna)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334658196", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334658196", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334658196", "source": "GND"}], "variant_access_point": ["Pontelungo (Bologna)"], "authorized_access_point": "Pontelungo (Bologna) - Sfingi"} 1 +2024-09-11 09:11:49.668531 2024-09-11 09:11:49.668534 bdc25e8a-f566-4010-9c6e-e258187146ed {"md5": "a49da34e5198768fa7ded31524b5587f", "pid": "1334657726", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Departement Manche"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334657726", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334657726", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334657726", "source": "GND"}], "authorized_access_point": "Écausseville"} 1 +2024-09-11 09:11:49.732762 2024-09-11 09:11:49.732765 91e8dc13-3d52-4a5a-96a3-f6b59d6e95aa {"md5": "dd55df2adca1feb21b30b3ca0d91d708", "pid": "133465641X", "note": [{"label": ["1268 erstmals urkundlich erwähnt, heutiger Kirchenbau stammt aus dem Jahr 1578 mit Ergänzungen im 18. und 19. Jh."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Wardenburg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133465641X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133465641X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133465641X", "source": "GND"}], "authorized_access_point": "Marienkirche (Wardenburg)"} 1 +2024-09-11 09:11:49.805273 2024-09-11 09:11:49.805276 31f6c738-1f56-4fb5-b60b-93d17abda468 {"md5": "b8f57203a37cd682a943ca81ecfd6ae5", "pid": "1334632707", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Rieflinghausen&oldid=243763184"], "noteType": "dataSource"}, {"label": ["1317 als \\"Rylinchusen\\" erstmals erwähnt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Helden-Rieflinghausen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334632707", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334632707", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334632707", "source": "GND"}], "variant_access_point": ["Rylinchusen", "Rifelinchusen", "Burschafft Ryffelinghaußen"], "authorized_access_point": "Rieflinghausen"} 1 +2024-09-11 09:11:49.865469 2024-09-11 09:11:49.865473 a7731246-882b-4788-929e-590cba3d670d {"md5": "a18e84673fc2be72a8e7f440bbb68d0d", "pid": "133463209X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Rieflinghausen&oldid=243763184"], "noteType": "dataSource"}, {"label": ["Zum 1. Juli 1969 als Teil der Gemeinde Helden in die Stadt Attendorn eingegliedert"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Attendorn-Rieflinghausen"}], "related": [{"authorized_access_point": "Helden (Attendorn)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133463209X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133463209X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133463209X", "source": "GND"}], "authorized_access_point": "Helden-Rieflinghausen"} 1 +2024-09-11 09:11:50.974629 2024-09-11 09:11:50.974635 15491452-3f01-472b-bdee-29ffd0152264 {"md5": "d12ea0be18855a066bc4f4a28be90c25", "pid": "1334486573", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Lissabon"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334486573", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334486573", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334486573", "source": "GND"}], "variant_access_point": ["Paço Real (Lissabon)"], "authorized_access_point": "Paço de Alcáçova (Lissabon)"} 1 +2024-09-11 09:11:49.934499 2024-09-11 09:11:49.934508 e7012f1a-1b10-401b-b68d-2a873bba8743 {"md5": "eae20940da3a034cbf77ee9f5338e3fd", "pid": "133456325X", "note": [{"label": ["Search.ch - https://search.ch/map/6004-Luzern,St.Karli-Str.?pos=664859,212246&zoom=17", "Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://www.geo.lu.ch/map/kulturdenkmal/?FOCUS=2664987:1212278:2000&BASEMAP=G"], "noteType": "dataSource"}, {"label": ["6004 Luzern. Langgezogene Strasse, teilweise parallel zum rechtsseitigen Reussufer, (gegabelt) von Geissmattstrasse in die Friedentalstrasse führend. Nicht zu verwechseln mit Fortsetzung von St.-Karlibrücke zur linken Seite der Reuss (dieser Teil 6003 Luzern: https://map.search.ch/6003-Luzern,St.Karli-Str.?pos=664806,211904&zoom)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Luzern"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133456325X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133456325X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133456325X", "source": "GND"}], "variant_access_point": ["St.-Karli-Strasse (Luzern)", "St. Karlistrasse (Luzern)"], "authorized_access_point": "Sankt-Karli-Strasse (Luzern)"} 1 +2024-09-11 09:11:50.0157 2024-09-11 09:11:50.015703 45759c86-90d6-4d42-b6d3-4c8c2b7cd936 {"md5": "af1496a34e3c525b2768f5de58f2053d", "pid": "1334560994", "note": [{"label": ["Search.ch - https://map.search.ch/Luzern,Pfistergasse?pos=665610,211417&zoom=17", "Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://www.geo.lu.ch/map/kulturdenkmal/?FOCUS=2665615:1211443:1000&BASEMAP=G"], "noteType": "dataSource"}, {"label": ["6003 Luzern. Gasse in der Altstadt, Verbindung von Militärstrasse zu Philipp-Anton-von-Segesser-Platz (Burgerstrasse)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Luzern"}, {"authorized_access_point": "Altstadt (Luzern)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334560994", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334560994", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334560994", "source": "GND"}], "authorized_access_point": "Pfistergasse (Luzern)"} 1 +2024-09-11 09:11:50.083366 2024-09-11 09:11:50.08337 9f3c2f21-22f5-426e-9601-58337ee02902 {"md5": "1fa7a33ab2b6e2bac5308fca33d79b01", "pid": "1334559805", "note": [{"label": ["Search.ch - https://map.search.ch/Luzern,Neustadtstr.?pos=666097,210474&zoom=16", "Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://www.geo.lu.ch/map/kulturdenkmal/?FOCUS=2665987:1210348:1000&BASEMAP=G"], "noteType": "dataSource"}, {"label": ["6003 Luzern. Vom Bundesplatz aus in süd(westliche) Richtung laufende Strasse bis zur Bireggstrasse."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Luzern"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334559805", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334559805", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334559805", "source": "GND"}], "authorized_access_point": "Neustadtstrasse (Luzern)"} 1 +2024-09-11 09:11:50.147322 2024-09-11 09:11:50.147327 aa55394a-6eba-4956-a216-238af9a329a3 {"md5": "764fb87226477459863c512645269a93", "pid": "1334558590", "note": [{"label": ["Search.ch - https://map.search.ch/Luzern,Murbacherstr.?pos=666071,211129&zoom=16", "Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://www.geo.lu.ch/map/kulturdenkmal/?FOCUS=2665999:1211098:1000&BASEMAP=G"], "noteType": "dataSource"}, {"label": ["6003 Luzern. Mit Unterbrechungen von SW (Obergrundstrasse) nach NO (Zentralstrasse) verlaufende Strasse in Luzerns Hirschmattquartier (Neustadt)."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Luzern-Hirschmatt"}, {"authorized_access_point": "Luzern"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334558590", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334558590", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334558590", "source": "GND"}], "authorized_access_point": "Murbacherstrasse (Luzern)"} 1 +2024-09-11 09:11:50.202685 2024-09-11 09:11:50.202693 0b4ebbf3-6a79-4a83-b80b-de5212138336 {"md5": "4c7f3e6dd01b1d50de3ce85a8973e2f2", "pid": "1334556687", "note": [{"label": ["Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://www.geo.lu.ch/map/kulturdenkmal/?FOCUS=2665615:1211443:1000&BASEMAP=G", "Search.ch - https://map.search.ch/Luzern,St.Leodegar-Str.?pos=666448,211966&zoom=18"], "noteType": "dataSource"}, {"label": ["6006 Luzern. Kurze West-Ost-Verbindungsstrasse zwischen Löwenstrasse (W) und Stiftsstrasse (O), im Hofquartier Luzern"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Luzern"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334556687", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334556687", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334556687", "source": "GND"}], "variant_access_point": ["St.-Leodegar-Strasse (Luzern)", "St. Leodegar-Str. (Luzern)"], "authorized_access_point": "Sankt-Leodegar-Strasse (Luzern)"} 1 +2024-09-11 09:11:50.255772 2024-09-11 09:11:50.255775 ab339880-4641-44af-9811-110c22c5e0b0 {"md5": "a435c64338b906b05b303dc50265b48c", "pid": "1334554471", "note": [{"label": ["Wikipedia - https://it.wikipedia.org/w/index.php?title=Santuario_della_Madonna_del_Bosco_(Ozegna)&oldid=138833812"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Ozegna"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334554471", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334554471", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334554471", "source": "GND"}], "variant_access_point": ["Madonna del Bosco (Ozegna)"], "authorized_access_point": "Santuario della Madonna del Bosco (Ozegna)"} 1 +2024-09-11 09:11:50.332956 2024-09-11 09:11:50.33296 d82b40ab-e0c7-4d30-8309-d5ac4be7919b {"md5": "6d185debe7bc94a43b5589e2c57e4d4f", "pid": "1334554218", "note": [{"label": ["Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://map.search.ch/Luzern,Weggisgasse?pos=665870,211719&zoom=17; https://www.geo.lu.ch/map/kulturdenkmal/?FOCUS=2665900:1211665:1000&BASEMAP=G"], "noteType": "dataSource"}, {"label": ["6004 Luzern. Vom Hirschenplatz (SW) zum Falkenplatz (NO) führende Gasse in der Altstadt Luzerns"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Luzern"}, {"authorized_access_point": "Altstadt (Luzern)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334554218", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334554218", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334554218", "source": "GND"}], "authorized_access_point": "Weggisgasse (Luzern)"} 1 +2024-09-11 09:11:50.389652 2024-09-11 09:11:50.389656 6ef144eb-a85e-4d71-afdb-d9d7d26be261 {"md5": "7be9c2dcd20ab305c3cb7729fb84108d", "pid": "1334552940", "note": [{"label": ["Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://map.geo.lu.ch/kulturgueter/denkmaeler/?FOCUS=2666644:1210607:560"], "noteType": "dataSource"}, {"label": ["Adresse: Tribschenstrasse 51, 6005 Luzern"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Luzern"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334552940", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334552940", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334552940", "source": "GND"}], "variant_access_point": ["Das Gewerbegebäude in Luzern"], "authorized_access_point": "Gewerbegebäude (Luzern)"} 1 +2024-09-11 09:11:50.46517 2024-09-11 09:11:50.465179 c8731ee6-117d-45c0-ab35-cbcc4e28991a {"md5": "e499638d4dc585343ef4589fceb45b2e", "pid": "1334552908", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Departement Seine-et-Marne"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334552908", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334552908", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334552908", "source": "GND"}], "authorized_access_point": "Lésigny (Departement Seine-et-Marne)"} 1 +2024-09-11 09:11:50.531303 2024-09-11 09:11:50.531308 24ecaf54-ca04-4d13-8db7-26405ec0ee7b {"md5": "8789100de3a77575ce8fdc8d3b01dd23", "pid": "1334552606", "note": [{"label": ["Kanton Luzern, Kantonales Denkmalverzeichnis und Bauinventar - https://map.geo.lu.ch/kulturgueter/denkmaeler/?FOCUS=2674446:1209133:560; https://www.archiv-weggis.ch/2022/03/07/der-gl%C3%BCcksfall-junkerhaus/"], "noteType": "dataSource"}, {"label": ["Adresse: Hertensteinstrasse 51, 6353 Weggis."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Weggis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334552606", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334552606", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334552606", "source": "GND"}], "authorized_access_point": "Junkerhaus (Weggis)"} 1 +2024-09-11 09:11:50.606335 2024-09-11 09:11:50.606339 27d45e8e-eac2-42bf-9e5e-b7a12b4e50df {"md5": "413676e0ba3cef72bf4b88c5a50c1a55", "pid": "1334538085", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Schloss_Stockau_(Reichertshofen)&oldid=235947920"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Reichertshofen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334538085", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334538085", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334538085", "source": "GND"}], "variant_access_point": ["Hofmarktschloss Stockau (Reichertshofen)"], "authorized_access_point": "Schloss Stockau (Reichertshofen)"} 1 +2024-09-11 09:11:50.665319 2024-09-11 09:11:50.665322 f72cfe02-abe6-4dee-a04e-781abed900d1 {"md5": "ed9965dc44e1b113b8f96e99d542d171", "pid": "133453666X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Marienkirche_(Ehningen)&oldid=241971385"], "noteType": "dataSource"}, {"label": ["Anfang des 17. Jhs nach einem Entwurf von Heinrich Schickhardt umgebaut; Glasmalereien im Chor stammen von Rudolf Yelin Anfang des 20. Jh."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Ehningen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133453666X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133453666X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133453666X", "source": "GND"}], "variant_access_point": ["Evangelische Pfarrkirche St. Marien (Ehningen)", "St. Marien (Ehningen)", "Sankt Marien (Ehningen)"], "authorized_access_point": "Marienkirche (Ehningen)"} 1 +2024-09-11 09:11:50.764314 2024-09-11 09:11:50.764318 fed5a3f6-54c8-4277-afec-23d3cf83cd86 {"md5": "d6c8db7e76aa35240c7028e5fb5f55a8", "pid": "1334531153", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Villenkolonie_Buchschlag&oldid=235425024"], "noteType": "dataSource"}, {"label": ["Erbaut von 1905 bis ca. 1910."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Buchschlag"}, {"authorized_access_point": "Dreieich-Buchschlag"}, {"authorized_access_point": "Dreieich"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334531153", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334531153", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334531153", "source": "GND"}], "authorized_access_point": "Villenkolonie Buchschlag (Dreieich)"} 1 +2024-09-11 09:11:50.833127 2024-09-11 09:11:50.833131 39027225-479f-4b85-babb-50cc3a3e93f5 {"md5": "e1d862b1162221e0402d0426ae2693e1", "pid": "1334516766", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Oakhurst,_California&oldid=1225176061"], "noteType": "dataSource"}, {"label": ["Für die Sacherschließung wird bei Splits nur diese (das ist die neueste/jüngste) Namensform verwendet."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334516766", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334516766", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334516766", "source": "GND"}], "variant_access_point": ["Fresno Flats, Calif."], "authorized_access_point": "Oakhurst, Calif."} 1 +2024-09-11 09:11:50.903689 2024-09-11 09:11:50.903694 95a200cc-db39-4a4b-a6d6-a13fb18d6afd {"md5": "33dd569888c6fb72a030e60951721285", "pid": "1334502854", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Burg_Lauenstein_(Frankenwald)&oldid=243193355"], "noteType": "dataSource"}, {"label": ["Mittelalterliche Höhenburg in Oberfranken"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Ludwigsstadt"}, {"authorized_access_point": "Ludwigsstadt-Lauenstein"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334502854", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334502854", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334502854", "source": "GND"}], "variant_access_point": ["Burg Lauenstein (Ludwigsstadt-Lauenstein)", "Burg (Lauenstein)", "Burg und Renaissanceschloss Lauenstein (Ludwigsstadt)"], "authorized_access_point": "Burg Lauenstein (Ludwigsstadt)"} 1 +2024-09-11 09:11:51.03717 2024-09-11 09:11:51.037175 8032eb15-cf78-4c5b-befa-ae2438dc56ba {"md5": "881a8ad8cf43c21cc881e044e9e53e43", "pid": "1334485763", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Jesi"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334485763", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334485763", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334485763", "source": "GND"}], "variant_access_point": ["Vallesina"], "authorized_access_point": "Vallesina"} 1 +2024-09-11 09:11:51.100007 2024-09-11 09:11:51.100011 c358397e-7ff4-4489-941d-f71a74779ef5 {"md5": "316e42f6c7c9cf7c21cd25039cfe7046", "pid": "1334319561", "note": [{"label": ["Homepage - https://www.kreisarchiv-stormarn.de/mediadb/238106/", "Homepage - https://ams-architekten.de/projekt-barsbuettel.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Barsbüttel"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334319561", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334319561", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334319561", "source": "GND"}], "variant_access_point": ["Barsbütteler Rathaus (Barsbüttel)"], "authorized_access_point": "Rathaus Barsbüttel (Barsbüttel)"} 1 +2024-09-11 09:11:51.155073 2024-09-11 09:11:51.155076 003d5286-c663-410c-9a8d-797ba8f724a4 {"md5": "70fcf0a82af8dedee2e3e02f7828f5a0", "pid": "1334318492", "note": [{"label": ["Ort im Landkreis Gießen, Hessen; Ende 1970 nach Grünberg eingemeindet"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Grünberg-Stockhausen"}, {"authorized_access_point": "Landkreis Gießen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334318492", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334318492", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334318492", "source": "GND"}], "authorized_access_point": "Stockhausen (Landkreis Gießen)"} 1 +2024-09-11 09:11:51.215646 2024-09-11 09:11:51.21565 f0d97476-5314-4f1f-8346-76534f9de352 {"md5": "96ae9af18082f4e76dc487caf05742ff", "pid": "1334318069", "note": [{"label": ["Homepage - https://www.stormarnlexikon.de/rathausgrosshansdorf/", "Homepage - http://archiv.heimatverein-grosshansdorf.de/Wald-1960-08-gesamt.pdf"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Großhansdorf"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334318069", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334318069", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334318069", "source": "GND"}], "variant_access_point": ["Großhansdorfer Rathaus (Großhansdorf)"], "authorized_access_point": "Rathaus Großhansdorf (Großhansdorf)"} 1 +2024-09-11 09:11:51.269737 2024-09-11 09:11:51.269742 e429a1b2-1b17-4a67-83b2-6b1a3c0c1c13 {"md5": "00d30993494099aa398425f94570bdbe", "pid": "1334313776", "note": [{"label": ["Ort im Landkreis Gießen, Hessen; Ende 1970 nach Grünberg eingemeindet"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Grünberg-Queckborn"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334313776", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334313776", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334313776", "source": "GND"}], "authorized_access_point": "Queckborn"} 1 +2024-09-11 09:11:51.338248 2024-09-11 09:11:51.33825 78f42ec7-37bf-4362-8d76-6f4fbdffe8df {"md5": "7c6f8d1bc8ed21e5272c35597d119865", "pid": "1334312974", "note": [{"label": ["Homepage - https://www.stadtmarketing-glinde.de/rathaus"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Glinde (Stormarn)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334312974", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334312974", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334312974", "source": "GND"}], "variant_access_point": ["Glinder Rathaus (Glinde)"], "authorized_access_point": "Rathaus Glinde (Glinde)"} 1 +2024-09-11 09:11:51.405769 2024-09-11 09:11:51.405771 b2bf53ce-f857-4406-a8b7-94840296a122 {"md5": "9837b25d4076e062538062ebaa1b1fe9", "pid": "1334310661", "note": [{"label": ["Ort im Landkreis Gießen, Hessen; Ende 1970 nach Grünberg eingemeindet"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Grünberg-Lumda"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334310661", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334310661", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334310661", "source": "GND"}], "authorized_access_point": "Lumda"} 1 +2024-09-11 09:11:51.473206 2024-09-11 09:11:51.473215 3f2b4e5b-b054-437a-86f4-4574aab26480 {"md5": "a675607a13360522410c20a52ed230f0", "pid": "1334302111", "note": [{"label": ["Homepage - https://www.stormarnlexikon.de/rathausreinbek", "Homepage - https://www.reinbeker-geschichten.de/das-rathaus-reinbek"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Reinbek"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334302111", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334302111", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334302111", "source": "GND"}], "variant_access_point": ["Reinbeker Rathaus (Reinbek)"], "authorized_access_point": "Rathaus Reinbek (Reinbek)"} 1 +2024-09-11 09:11:51.537245 2024-09-11 09:11:51.537249 9bb463f1-dd53-4415-bc6e-53c3c8683a33 {"md5": "3c337a55adc70bafe6fb9b6a5473f55b", "pid": "1334300054", "note": [{"label": ["Ort im Landkreis Gießen, Hessen; Ende 1971 nach Grünberg eingemeindet"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Grünberg-Lehnheim"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334300054", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334300054", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334300054", "source": "GND"}], "authorized_access_point": "Lehnheim"} 1 +2024-09-11 09:11:51.606568 2024-09-11 09:11:51.606571 9424b82a-f38f-45e1-b735-9a73c8b93548 {"md5": "10cf184be021dedb28e127c109e11fb0", "pid": "133422725X", "note": [{"label": ["1970 Schließung und seitdem allmähliche Umgestaltung des historischen Friedhofs zu einem naturnah gestalteten Park"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Arnsberg"}, {"authorized_access_point": "Arnsberg-Neheim"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133422725X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133422725X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133422725X", "source": "GND"}], "authorized_access_point": "Möhnefriedhof (Arnsberg)"} 1 +2024-09-11 09:11:51.666938 2024-09-11 09:11:51.666941 e8a1e7e6-ddcc-4cd2-b6e2-e3a4fe63b0a8 {"md5": "b52231f72090b105c129345b0e055fc5", "pid": "1334221979", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Furth (Landkreis Landshut)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334221979", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334221979", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334221979", "source": "GND"}], "variant_access_point": ["Arth (Furth-Arth)"], "authorized_access_point": "Furth-Arth"} 1 +2024-09-11 09:11:51.727634 2024-09-11 09:11:51.727639 01d8325b-862a-405f-94f8-93a3874ff159 {"md5": "46758f2f289253bcd1268b0ba67b9f7e", "pid": "1334198845", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Holy_Trinity_Church,_Shanghai&oldid=1177032584"], "noteType": "dataSource"}, {"label": ["Protestantische Kirche im Stadtteil Huangpu von Schanghai"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Schanghai"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334198845", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334198845", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334198845", "source": "GND"}], "variant_access_point": ["Dreifaltigkeitskirche (Schanghai)", "Trinity Church (Schanghau)", "Holy Trinity Cathedral (Schanghai)", "上海圣三一堂", "Shànghǎi shèng sānyī táng"], "authorized_access_point": "Holy Trinity Church (Schanghai)"} 1 +2024-09-11 09:11:51.835341 2024-09-11 09:11:51.835345 7a9a8983-f07f-456d-97a7-c1aff1b06677 {"md5": "a514a170832f22a8a03e8ab71c9ee315", "pid": "1334117918", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bad Driburg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334117918", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334117918", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334117918", "source": "GND"}], "variant_access_point": ["Mühlenpforte (Bad Driburg)"], "authorized_access_point": "Stadtgarten Bad Driburg (Bad Driburg)"} 1 +2024-09-11 09:11:51.897995 2024-09-11 09:11:51.898003 b259c2ed-db7f-483e-8f76-be75867b19bb {"md5": "bc875241b838c5043aadc9128a7f3b40", "pid": "1334101221", "note": [{"label": ["Wikipedia - https://it.wikipedia.org/w/index.php?title=Santuario_della_Madonna_della_Neve_(Casto)&oldid=137435328"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Casto"}, {"authorized_access_point": "Auro"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334101221", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334101221", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334101221", "source": "GND"}], "variant_access_point": ["Madonna della Neve (Casto)"], "authorized_access_point": "Santuario della Madonna della Neve (Casto)"} 1 +2024-09-11 09:11:51.965285 2024-09-11 09:11:51.965293 6980d3ae-682a-4515-8253-95817aca152c {"md5": "3c075ac7411d5565e6bb1084276e6f70", "pid": "1334086826", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Ostrov&oldid=239139996"], "noteType": "dataSource"}, {"label": ["Gemeinde im Kreis Constanţa"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Constanṭa"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334086826", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334086826", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334086826", "source": "GND"}], "authorized_access_point": "Ostrov (Constanṭa)"} 1 +2024-09-11 09:11:52.035252 2024-09-11 09:11:52.035256 d3e17722-75c9-47e8-969b-710cabf93001 {"md5": "63a8e0fdc49ad8c896d6dade233a6751", "pid": "1334027250", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=%C8%98oimo%C8%99&oldid=243040757"], "noteType": "dataSource"}, {"label": ["Ort im Westen Rumäniens und gehört zur Kleinstadt Lipova (Lippa) im Kreis Arad im Banat"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334027250", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334027250", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334027250", "source": "GND"}], "variant_access_point": ["Solymosvár", "Schojmosch", "Schoimosch"], "authorized_access_point": "Şoimoş"} 1 +2024-09-11 09:11:52.101873 2024-09-11 09:11:52.101882 f9610f1a-06d6-44a9-a087-3dc145003afd {"md5": "288d2e80658d530b6da579d7df96bb76", "pid": "1334024804", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_von_Pl%C3%A4tzen_und_Alleen_in_der_Altstadt_von_Regensburg&oldid=246052949", "RI II,4 n. 1657, in: Regesta Imperii Online - http://www.regesta-imperii.de/id/1007-11-01_7_0_2_4_1_343_1657"], "noteType": "dataSource"}, {"label": ["Nachgewiesen bereits 1007, Standort von 2 Gehöften, beschreibt eine Wasserquelle oder einen Wasserstau-Schwall in der Donau und das zur Donau hin abfallende Gelände."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Donau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334024804", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334024804", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334024804", "source": "GND"}], "variant_access_point": ["Brunnleite (Donau)"], "authorized_access_point": "Brunnelaite (Donau)"} 1 +2024-09-11 09:11:52.161971 2024-09-11 09:11:52.161973 623c914e-58d3-4619-aa1c-2344b1023005 {"md5": "e69f6de91ac482179d3fac322918dd2a", "pid": "1334011753", "note": [{"label": ["Dorf in Polen", "Für die Sacherschließung wird bei Splits nur diese (das ist die neueste/jüngste) Namensform verwendet."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Sonnwalde"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334011753", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334011753", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334011753", "source": "GND"}], "variant_access_point": ["Sonnwalde"], "authorized_access_point": "Radziejewo"} 1 +2024-09-11 09:11:52.229414 2024-09-11 09:11:52.229418 65cb7b36-9d53-4cbf-8f2f-7a66f16ac8b0 {"md5": "5684ab3c25b5de440da087cc29b8f80c", "pid": "1334011079", "note": [{"label": ["Ehemalige Gemeinde im Landkreis Braunsberg; seit 1945 zu Polen gehörend (Radziejewo)", "In der Sacherschließung nicht zu verwenden; für die Sacherschließung wird bei Splits nur die neueste/jüngste Namensform verwendet."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Radziejewo"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334011079", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334011079", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334011079", "source": "GND"}], "authorized_access_point": "Sonnwalde"} 1 +2024-09-11 09:11:52.291638 2024-09-11 09:11:52.291643 837849fe-d66c-45ac-bbf4-e85c4ff1ce14 {"md5": "1c26e3ea84c61da837eb5ff072f759c9", "pid": "1334001529", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Ignalin_(Lidzbark_Warmi%C5%84ski)&oldid=203537377"], "noteType": "dataSource"}, {"label": ["In der Sacherschließung nicht zu verwenden; für die Sacherschließung wird bei Splits nur die neueste/jüngste Namensform verwendet."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Ignalin"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1334001529", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1334001529", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1334001529", "source": "GND"}], "authorized_access_point": "Reimerswalde"} 1 +2024-09-11 09:11:52.361205 2024-09-11 09:11:52.36121 508403c4-2d48-4787-9359-be6e30fb248a {"md5": "ffd3a36f3bfaa36eee4465c2becf2701", "pid": "1333989954", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Ignalin_(Lidzbark_Warmi%C5%84ski)&oldid=203537377"], "noteType": "dataSource"}, {"label": ["Für die Sacherschließung wird bei Splits nur diese (das ist die neueste/jüngste) Namensform verwendet."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Reimerswalde"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333989954", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333989954", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333989954", "source": "GND"}], "variant_access_point": ["Lidzbark Warmiński-Ignalin", "Ignalin (Lidzbark Warmiński)", "Reimerswalde"], "authorized_access_point": "Ignalin"} 1 +2024-09-11 09:11:52.432037 2024-09-11 09:11:52.432041 4a606f19-bce7-4fa4-b3af-effdfb0e92f2 {"md5": "14ab70c5914175d95a1b9adc8dcc13ca", "pid": "1333660758", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Frielinghausen_(Meschede)&oldid=182076348"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Meschede"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333660758", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333660758", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333660758", "source": "GND"}], "variant_access_point": ["Frielinghausen (Meschede)"], "authorized_access_point": "Meschede-Frielinghausen"} 1 +2024-09-11 09:11:52.499441 2024-09-11 09:11:52.499445 f4835956-bdde-4e2e-8ebf-2274d927397b {"md5": "fc2747780550c9ad507da42faf31a0bd", "pid": "1333582501", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Tolla&oldid=239496022"], "noteType": "dataSource"}, {"label": ["Gemeinde im französischen Département Corse-du-Sud in der Region Korsika"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333582501", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333582501", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333582501", "source": "GND"}], "variant_access_point": ["Todda"], "authorized_access_point": "Tolla"} 1 +2024-09-11 09:11:52.561952 2024-09-11 09:11:52.561955 24ef217e-21b8-4aea-9fb7-b20f4f36e024 {"md5": "b74fa2ac08d3d9bbd0914931eee50289", "pid": "1333570511", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Bystrez_(Werchowyna)&oldid=223341029", "Geonames - https://www.geonames.org/711003/bystrets.html"], "noteType": "dataSource"}, {"label": ["Dorf in der ukrainischen Oblast Iwano-Frankiwsk, westlich vom Rajonzentrum Werchowyna"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333570511", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333570511", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333570511", "source": "GND"}], "variant_access_point": ["Bystrecʹ", "Bystrets"], "authorized_access_point": "Bystrez"} 1 +2024-09-11 09:11:52.624827 2024-09-11 09:11:52.624832 2637c9bb-4794-4bab-8422-03194add4ba0 {"md5": "7c8f39793d28901332280ae081bd5cdf", "pid": "133355513X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Horevun"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133355513X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133355513X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133355513X", "source": "GND"}], "variant_access_point": ["Wüstung Holzheim"], "authorized_access_point": "Holzheim (Horevun, Wüstung)"} 1 +2024-09-11 09:11:52.671978 2024-09-11 09:11:52.67198 2077fab4-be64-44f8-b867-73ae1a09d537 {"md5": "7c44bcf023266ec3ea813aead0e4d42a", "pid": "1333333668", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333333668", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333333668", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333333668", "source": "GND"}], "variant_access_point": ["Teubentz", "Wüstung Teubnitz", "Wüstung Teubentz", "Teubnitz (Ahornthal)"], "authorized_access_point": "Teubnitz"} 1 +2024-09-11 09:11:52.724925 2024-09-11 09:11:52.724929 1d093b91-3357-4366-9543-432158bb7d43 {"md5": "57840ae5b1aada6efc5daeacfab84b20", "pid": "1333321090", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Siedlung_Bornheimer_Hang&oldid=244829487"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Frankfurt am Main"}, {"authorized_access_point": "Frankfurt-Bornheim"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333321090", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333321090", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333321090", "source": "GND"}], "variant_access_point": ["Siedlung Bornheimer Hang", "Siedlung Bornheimer Hang (Frankfurt-Bornheim)", "Ernst-May-Siedlung (Frankfurt-Bornheim)"], "authorized_access_point": "Siedlung Bornheimer Hang (Frankfurt am Main)"} 1 +2024-09-11 09:11:52.782128 2024-09-11 09:11:52.782133 cfcdb4e1-2e8a-4ea4-948e-f5f033335911 {"md5": "a0601539d45a7519c3f54f8117147e9a", "pid": "1333315902", "note": [{"label": ["GeoNames - https://www.geonames.org/618476/burlanesti.html", "Wikipedia - https://ro.wikipedia.org/w/index.php?title=Burl%C4%83ne%C8%99ti,_Edine%C8%9B&oldid=16192546"], "noteType": "dataSource"}, {"label": ["Dorf, raion Edineț"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333315902", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333315902", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333315902", "source": "GND"}], "variant_access_point": ["Burlaneshti", "Burlaneshty"], "authorized_access_point": "Burlăneşti"} 1 +2024-09-11 09:11:52.843276 2024-09-11 09:11:52.843279 84641c67-96be-4e35-b7fa-d024e25218e4 {"md5": "85424583480f933cc75641a103afe443", "pid": "1333263465", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Altenkunstadt"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333263465", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333263465", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333263465", "source": "GND"}], "variant_access_point": ["Trebitzmühle (Altenkunstadt-Trebitzmühle)"], "authorized_access_point": "Altenkunstadt-Trebitzmühle"} 1 +2024-09-11 09:11:52.914035 2024-09-11 09:11:52.91404 63a101a9-2ae2-4109-ab85-c6ccf3aede0b {"md5": "1d04dfe143d1431527f45e3217246e83", "pid": "1333255853", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Bravicea&oldid=242048890"], "noteType": "dataSource"}, {"label": ["Gemeinde im Rajon Călărași, Republik Moldau"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333255853", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333255853", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333255853", "source": "GND"}], "authorized_access_point": "Bravicea"} 1 +2024-09-11 09:11:52.97097 2024-09-11 09:11:52.970973 8dd40ac6-3566-4baa-b474-958e01e38b43 {"md5": "fe54893d7c90630c6f78bfb3f8d91152", "pid": "1333228880", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_Egloffstein&oldid=242696526#Bieberbach"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Egloffstein"}, {"authorized_access_point": "Egloffstein-Bieberbach"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333228880", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333228880", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333228880", "source": "GND"}], "variant_access_point": ["Evangelische Reformationsgedächtniskirche (Egloffstein-Bieberbach)", "Evangelische Reformationsgedächtniskirche (Bieberbach)", "Reformationsgedächtniskirche (Egloffstein)", "Reformationsgedächtniskirche (Egloffstein-Bieberbach)"], "authorized_access_point": "Evangelische Reformationsgedächtniskirche (Egloffstein)"} 1 +2024-09-11 09:11:53.049045 2024-09-11 09:11:53.04905 a1e9bcc3-1596-4cb8-ac75-530cf49c9bec {"md5": "9f78d332aec391e15ac5af745f145b84", "pid": "1333113943", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Wolfersgr%C3%BCn_(Wallenfels)&oldid=245060892#Katholische_Filialkirche_St._Georg"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Wolfersgrün"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1333113943", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1333113943", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1333113943", "source": "GND"}], "variant_access_point": ["St. Georg (Wolfersgrün)", "Filialkirche Sankt Georg (Wolfersgrün)", "Katholische Filialkirche Sankt Georg (Wolfersgrün)"], "authorized_access_point": "Sankt Georg (Wolfersgrün)"} 1 +2024-09-11 09:11:53.167111 2024-09-11 09:11:53.167115 47e20d5d-912b-4ef5-93dc-3237058cfed2 {"md5": "62c63579ff76d5da0a35e65236f682ac", "pid": "1332874568", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Thala_(Tunesien)&oldid=244904813"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332874568", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332874568", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332874568", "source": "GND"}], "variant_access_point": ["Talah"], "authorized_access_point": "Thala"} 1 +2024-09-11 09:11:53.24805 2024-09-11 09:11:53.248055 fe5b6bd3-dac5-411a-a416-141a9cd16500 {"md5": "d3e7906d7c4e3577f445d72b51ac234b", "pid": "1332858198", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Beaumont_(Yonne)&oldid=190458726"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Departement Yonne"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332858198", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332858198", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332858198", "source": "GND"}], "authorized_access_point": "Beaumont (Departement Yonne)"} 1 +2024-09-11 09:11:53.332266 2024-09-11 09:11:53.332268 16f04a53-71a5-41e9-887f-925a50c94f49 {"md5": "8e4ce06ecb5e2ddb0cd40cbd555add2f", "pid": "1332769349", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Krylos&oldid=244798100", "Geonames - http://www.geonames.org/703893/krylos.html"], "noteType": "dataSource"}, {"label": ["Ort in der Ukraine (Oblast Ivano-Frankivsʹk, Ivano-Frankivsʹkyj rajon)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332769349", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332769349", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332769349", "source": "GND"}], "variant_access_point": ["Krilos", "Kryłos"], "authorized_access_point": "Krylos"} 1 +2024-09-11 09:11:53.390753 2024-09-11 09:11:53.39076 872bfd98-7112-41b3-be41-34981305e017 {"md5": "0856d6c65c341b556aeb9defe1c027d2", "pid": "1332757375", "note": [{"label": ["RIplus Regg. Bamberg n. 39, in: Regesta Imperii Online - http://www.regesta-imperii.de/id/fffc7ec3-2a09-4f7b-a1c6-b0b415fe26b2"], "noteType": "dataSource"}, {"label": ["Wüstung bei Forchheim-Burk"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Forchheim-Burk"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332757375", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332757375", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332757375", "source": "GND"}], "variant_access_point": ["Wüstung Slierbach"], "authorized_access_point": "Slierbach (Wüstung)"} 1 +2024-09-11 09:11:53.4567 2024-09-11 09:11:53.456704 bfb57790-ea9f-4b71-bf68-ad4d9b37d4d2 {"md5": "30afeb534f28cab78f0812581f941113", "pid": "1332755666", "note": [{"label": ["RI II,4 n. 1653, in: Regesta Imperii Online - http://www.regesta-imperii.de/id/1007-11-01_3_0_2_4_1_339_1653"], "noteType": "dataSource"}, {"label": ["Mittelalterlicher Gau"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332755666", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332755666", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332755666", "source": "GND"}], "authorized_access_point": "Durihin"} 1 +2024-09-11 09:11:53.523545 2024-09-11 09:11:53.523549 028c5d03-01b7-488f-a1c8-202c551cd63f {"md5": "252ebe1482d9e3ec3ab4695ba4fc5bc0", "pid": "1332749054", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=S%C3%BClchgau&oldid=208578053"], "noteType": "dataSource"}, {"label": ["Mittelalterlicher Gau"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332749054", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332749054", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332749054", "source": "GND"}], "variant_access_point": ["Sülchengau", "Sulihgeiuua", "Sulichkewe", "Sülichgau"], "authorized_access_point": "Sülchgau"} 1 +2024-09-11 09:11:53.588244 2024-09-11 09:11:53.588247 1de85f94-679d-4e02-a4fe-adffc2182545 {"md5": "65c42fdc218acfd9b6520b5a40272ee6", "pid": "1332747108", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Nagoldgau&oldid=215319373"], "noteType": "dataSource"}, {"label": ["Frühmittelalterlicher Gau im Herzogtum Schwaben"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332747108", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332747108", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332747108", "source": "GND"}], "variant_access_point": ["Nagoldgouw", "Nagaltgouwe"], "authorized_access_point": "Nagoldgau"} 1 +2024-09-11 09:11:53.646143 2024-09-11 09:11:53.646147 e4feccc5-2b5f-4517-974f-7d883eb4e8d9 {"md5": "2e4ac91684a363e3f331464b485c2765", "pid": "1332742351", "note": [{"label": ["RIplus Regg. Bamberg n. 51, in: Regesta Imperii Online - http://www.regesta-imperii.de/id/f8a73e64-64db-4c07-8d84-284a227be527"], "noteType": "dataSource"}, {"label": ["Mittelalterlicher Gau"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332742351", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332742351", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332742351", "source": "GND"}], "authorized_access_point": "Glehuntra"} 1 +2024-09-11 09:11:53.699961 2024-09-11 09:11:53.699966 a62d4a33-b589-41f7-abbe-b1ed3249cf2f {"md5": "a436c65edfe71b56ddb230af830e9740", "pid": "1332735002", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Riesgau&oldid=226471032"], "noteType": "dataSource"}, {"label": ["Gau im Nordosten des mittelalterlichen Stammesherzogtums Schwaben"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332735002", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332735002", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332735002", "source": "GND"}], "variant_access_point": ["Rezia"], "authorized_access_point": "Riesgau"} 1 +2024-09-11 09:11:53.751406 2024-09-11 09:11:53.751415 e6dbbb1c-7e9b-4bd7-8900-322b7b3980c1 {"md5": "61182faf2a67403f04a57bfb5f28b6b0", "pid": "1332734863", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Salzburggau&oldid=225169888"], "noteType": "dataSource"}, {"label": ["Mittelalterlicher Gau, ab dem 6. Jahrhundert nachgewiesen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332734863", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332734863", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332734863", "source": "GND"}], "authorized_access_point": "Salzburggau"} 1 +2024-09-11 09:11:53.821762 2024-09-11 09:11:53.821766 4ba5b6e4-bae9-4e41-9693-96a8deccea65 {"md5": "65b039273658ef6af5c44c17856b1bfc", "pid": "133273457X", "note": [{"label": ["RI II,4 n. 1841, in: Regesta Imperii Online - http://www.regesta-imperii.de/id/1014-06-21_1_0_2_4_1_622_1841"], "noteType": "dataSource"}, {"label": ["Mittelalterliches Gau"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/133273457X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)133273457X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)133273457X", "source": "GND"}], "authorized_access_point": "Mattiggau"} 1 +2024-09-11 09:11:53.899758 2024-09-11 09:11:53.899766 8a47a6c0-ed4e-47e4-8e9e-88254336f9c9 {"md5": "51aaf24875673bb350c26aff06d4634a", "pid": "1332733751", "note": [{"label": ["RI In. 598, in: Regesta Imperii Online - http://www.regesta-imperii.de/id/0815-12-03_1_0_1_1_0_1483_598"], "noteType": "dataSource"}, {"label": ["Mittelalterlicher Gau"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332733751", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332733751", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332733751", "source": "GND"}], "authorized_access_point": "Donaugau"} 1 +2024-09-11 09:11:53.972224 2024-09-11 09:11:53.972226 17df531c-432c-44a6-96b7-5aeebbd95b8b {"md5": "5d77e5d4a3b970068b774f8e1cbb3ec2", "pid": "1332732577", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Kelsgau&oldid=241651452"], "noteType": "dataSource"}, {"label": ["Erstmalige Erwähnung 844; Gau im Frühmittelalter"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332732577", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332732577", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332732577", "source": "GND"}], "variant_access_point": ["Chelesgau"], "authorized_access_point": "Kelsgau"} 1 +2024-09-11 09:11:54.038879 2024-09-11 09:11:54.038882 2892a34e-0042-4d8b-b1da-09de106fda97 {"md5": "04c8e301513969ad3c4e117026d6fa47", "pid": "1332731430", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Monte_San_Primo&oldid=229134400"], "noteType": "dataSource"}, {"label": ["Berg in der Lombardei, Provinz Como"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Tambogruppe"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332731430", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332731430", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332731430", "source": "GND"}], "variant_access_point": ["San Primo (Berg)"], "authorized_access_point": "Monte San Primo"} 1 +2024-09-11 09:11:57.01803 2024-09-11 09:11:57.018034 8d27f7e7-606c-447f-bb21-d21ab765e109 {"md5": "f96db1c59174fe225e0fd1a327aec7f9", "pid": "1239866968", "note": [{"label": ["Berg im US-Bundesstaat Nevada"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1239866968", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1239866968", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1239866968", "source": "GND"}], "authorized_access_point": "Mount Ferguson, Nev."} 1 +2024-09-11 09:11:54.098155 2024-09-11 09:11:54.098157 aac7cb4f-db0b-49c3-b627-3bef0559410c {"md5": "242142aae08ff0c92c14d6cc537c35fe", "pid": "1332670482", "note": [{"label": ["GeoNames - https://www.geonames.org/12195581/brackmills.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Northampton"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332670482", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332670482", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332670482", "source": "GND"}], "variant_access_point": ["Northampton-Brackmills"], "authorized_access_point": "Brackmills"} 1 +2024-09-11 09:11:54.15317 2024-09-11 09:11:54.153173 a581ae20-8f2f-4cc6-ad06-6a6af537d1c4 {"md5": "c446fecda5f2b0b52b82f58ce90ccdac", "pid": "1332669689", "note": [{"label": ["GeoNames - https://www.geonames.org/2657658/adwick-le-street.html"], "noteType": "dataSource"}, {"label": ["Dorf in der Metropolitanstadt Doncaster"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Doncaster"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332669689", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332669689", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332669689", "source": "GND"}], "variant_access_point": ["Doncaster- Adwick le Street"], "authorized_access_point": "Adwick le Street"} 1 +2024-09-11 09:11:54.212516 2024-09-11 09:11:54.212522 0c44ebbd-a5b9-4bfd-84a4-e29cfbfbb80d {"md5": "79f2027fa3eff7657e8ce3a4d40757c4", "pid": "1332451578", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=M%C3%BDtina&oldid=240251478"], "noteType": "dataSource"}, {"label": ["Ortsteil von Lipová (Lindenhau) im Okres Cheb (Bezirk Eger) in Tschechien.", "Für die Sacherschließung wird bei Splits nur diese (das ist die neueste/jüngste) Namensform verwendet."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Alt-Albenreuth"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332451578", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332451578", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332451578", "source": "GND"}], "variant_access_point": ["Alt-Albenreuth"], "authorized_access_point": "Mýtina"} 1 +2024-09-11 09:11:54.279347 2024-09-11 09:11:54.279359 80e70649-45dc-48cb-b21e-ade4e756d26f {"md5": "ca7f859d6fe92ed38d5e078f181db65d", "pid": "1332353436", "note": [{"label": ["GeoNames - https://www.geonames.org/3181856/borello.html"], "noteType": "dataSource"}, {"label": ["Ort in den Abruzzen, Provinz Chieti"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332353436", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332353436", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332353436", "source": "GND"}], "authorized_access_point": "Borrello"} 1 +2024-09-11 09:11:54.360545 2024-09-11 09:11:54.360554 4c9c5094-66d4-424d-93e9-5b0f4eb0bfcc {"md5": "f148a46c559e2f1b607d53882d60f57b", "pid": "1332057209", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Olmeda_de_la_Cuesta&oldid=226226107", "GeoNames - https://www.geonames.org/6357483/olmeda-de-la-cuesta.html"], "noteType": "dataSource"}, {"label": ["Ort in der Provinz Cuenca, Kastilien- La Mancha"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332057209", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332057209", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332057209", "source": "GND"}], "authorized_access_point": "Olmeda de la Cuesta"} 1 +2024-09-11 09:11:54.425698 2024-09-11 09:11:54.425703 440cf209-461b-4841-85a3-ea0f94b26754 {"md5": "996a7ff22437aa57a2754b336061cd2a", "pid": "1332055729", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332055729", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332055729", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332055729", "source": "GND"}], "variant_access_point": ["Lautschitz", "Lautschütz", "Lanteschitz"], "authorized_access_point": "Blučina"} 1 +2024-09-11 09:11:54.488586 2024-09-11 09:11:54.488589 b9d5e91b-6d07-40fb-adbc-f6819564cac6 {"md5": "031fb17caae924afed5a0bf9acdf3c8a", "pid": "1332031374", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=195150922"], "noteType": "dataSource"}, {"label": ["Sønderjyllands Amt war eine dänische Amtskommune."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Region Syddanmark"}, {"authorized_access_point": "Apenrade"}], "related": [{"authorized_access_point": "Amt Åbenrå"}, {"authorized_access_point": "Amt Sønderborg"}, {"authorized_access_point": "Amt Haderslev"}, {"authorized_access_point": "Amt Tondern"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1332031374", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1332031374", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1332031374", "source": "GND"}], "variant_access_point": ["Sønderjyllands Amt", "Sønderjyllands (Amt)", "Sønderjyllands Amtskommune", "Amtskommune Sønderjylland"], "authorized_access_point": "Amt Sønderjylland"} 1 +2024-09-11 09:11:54.55415 2024-09-11 09:11:54.554153 a086c563-9376-4a99-b65b-6851589426ca {"md5": "e46d1d06ec203ac2b8be1740542c575c", "pid": "1331729661", "note": [{"label": ["Homepage - https://europa-viertel-rheine.de/"], "noteType": "dataSource"}, {"label": ["Wohngebiet auf dem Gelände der ehemaligen Damloup-Kaserne in Rheine, dessen Vermarktung 2024 abgeschlossen ist"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rheine"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331729661", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331729661", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331729661", "source": "GND"}], "variant_access_point": ["Europa-Viertel (Rheine)", "Europaviertel (Rheine)", "EuVie (Rheine)"], "authorized_access_point": "Europa-Viertel am Waldhügel (Rheine)"} 1 +2024-09-11 09:11:55.228348 2024-09-11 09:11:55.22835 0cbdc2ce-cb96-479b-8926-d1cc0d16a316 {"md5": "591a410a29ad2ad03e01e8e6292d20af", "pid": "1330982746", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Forstern (Erding)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330982746", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330982746", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330982746", "source": "GND"}], "variant_access_point": ["Preisendorf (Forstern-Preisendorf)"], "authorized_access_point": "Forstern-Preisendorf"} 1 +2024-09-11 09:11:54.636116 2024-09-11 09:11:54.636125 553866a9-8bba-4532-8001-b9f73e014a6e {"md5": "f7fcd50e83886486b931b5ac98e9ab0b", "pid": "1331609186", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Ba%C5%A1%C4%8Dar%C5%A1ija&oldid=243745789"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Sarajevo"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331609186", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331609186", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331609186", "source": "GND"}], "variant_access_point": ["Hauptmarkt (Sarajevo)"], "authorized_access_point": "Baščaršija (Sarajevo)"} 1 +2024-09-11 09:11:54.694153 2024-09-11 09:11:54.694158 313eee78-6909-458f-8a1c-6c64c853de87 {"md5": "9469e8577f8a870af6a4a66d897eba28", "pid": "1331604346", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Borci (Kotor Varoš)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331604346", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331604346", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331604346", "source": "GND"}], "variant_access_point": ["Nikolauskirche (Borci, Kotor Varoš)"], "authorized_access_point": "Crkva Svetog Nikole (Borci, Kotor Varoš)"} 1 +2024-09-11 09:11:54.758834 2024-09-11 09:11:54.758841 e8cace5e-0400-4bcc-9021-bce415e93b7e {"md5": "5e41ecffadf62773f4430525ed15df07", "pid": "1331602718", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Kotor_Varo%C5%A1&oldid=246161593"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Kotor Varoš"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331602718", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331602718", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331602718", "source": "GND"}], "authorized_access_point": "Borci (Kotor Varoš)"} 1 +2024-09-11 09:11:54.836638 2024-09-11 09:11:54.836641 064dd171-b287-45ae-8cdf-515fa9fed83b {"md5": "ad31d566449821c5d2fb8b37e4a6b71f", "pid": "1331601630", "note": [{"label": ["GeoNames - https://www.geonames.org/763600/nowogrod.html", "Wikipedia - https://pl.wikipedia.org/w/index.php?title=Nowogr%C3%B3d&oldid=72647619"], "noteType": "dataSource"}, {"label": ["Stadt in Polen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Łomża (Powiat)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331601630", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331601630", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331601630", "source": "GND"}], "authorized_access_point": "Nowogród"} 1 +2024-09-11 09:11:54.915392 2024-09-11 09:11:54.915395 d300122f-cc5e-4d02-bf00-126cee4b367d {"md5": "ed21b8384d9363383e06eb3046139f33", "pid": "1331514282", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Gabersee&oldid=202232396"], "noteType": "dataSource"}, {"label": ["Ehemals selbstständige Gemeinde; durch die Eingemeindung von Attel in die Stadt Wasserburg am 01.05.1978 Ortsteil von Wasserburg"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Wasserburg-Gabersee"}], "related": [{"authorized_access_point": "Gabersee"}, {"authorized_access_point": "Attel"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331514282", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331514282", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331514282", "source": "GND"}], "variant_access_point": ["Gabersee (Attel-Gabersee)"], "authorized_access_point": "Attel-Gabersee"} 1 +2024-09-11 09:11:54.987664 2024-09-11 09:11:54.987668 ac6a16a2-4f21-448b-91d3-c99dfe501678 {"md5": "b6d1dba3ed000c9680aa9645e99f36c1", "pid": "1331513952", "note": [{"label": ["Ehemals selbstständige Gemeinde; seit 01.05.1978 Ortsteil von Wasserburg"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Wasserburg-Attel"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331513952", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331513952", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331513952", "source": "GND"}], "authorized_access_point": "Attel"} 1 +2024-09-11 09:11:55.050976 2024-09-11 09:11:55.050984 882d2480-33c9-4953-bc3c-8061e12bc6e7 {"md5": "c46e5b75026014d47025bc529e02f135", "pid": "1331379539", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Trogen (Landkreis Hof, Saale)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331379539", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331379539", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331379539", "source": "GND"}], "variant_access_point": ["Ullitz (Trogen-Ullitz)"], "authorized_access_point": "Trogen-Ullitz"} 1 +2024-09-11 09:11:55.120434 2024-09-11 09:11:55.120439 d53cd149-4b60-4c86-bbe9-93e5d706ff10 {"md5": "c45aa1df94ff74b0082981d50577ad55", "pid": "1331109191", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Fetislam&oldid=1191312260", "Wikipedia - https://sr.wikipedia.org/w/index.php?title=%D0%A4%D0%B5%D1%82%D0%B8%D1%81%D0%BB%D0%B0%D0%BC&oldid=27385008"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kladovo"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331109191", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331109191", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331109191", "source": "GND"}], "variant_access_point": ["Tvrđava Fetislam"], "authorized_access_point": "Fetislam"} 1 +2024-09-11 09:11:55.17065 2024-09-11 09:11:55.170653 c2596ae8-8e3a-435a-912f-177f8f9f20e5 {"md5": "aabd44e8cbfd9d0a9518ba1f7e37404b", "pid": "1331089271", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Opat%C3%B3wek&oldid=243033262"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Woiwodschaft Großpolen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1331089271", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1331089271", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1331089271", "source": "GND"}], "variant_access_point": ["Opatowek"], "authorized_access_point": "Opatówek"} 1 +2024-09-11 09:11:58.238206 2024-09-11 09:11:58.238209 f23aaa29-ae17-4f6d-87d4-6c81641bd469 {"md5": "cf58a6602f92c6d9c5d0a9d4214c908c", "pid": "1206005505", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1206005505", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1206005505", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1206005505", "source": "GND"}], "variant_access_point": ["Wagram"], "authorized_access_point": "Wagram-Gebiet"} 1 +2024-09-11 09:11:55.288355 2024-09-11 09:11:55.288357 3074a0f5-7bc2-4d70-bbaa-7acd23ca7435 {"md5": "cc845d165f6e83377eaaf7a29441bb2e", "pid": "1330866738", "note": [{"label": ["GeoNames - https://www.geonames.org/462471/zinyaki.html", "Wikipedia - https://ru.wikipedia.org/w/index.php?oldid=133645030"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Oblast Nischni Nowgorod"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330866738", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330866738", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330866738", "source": "GND"}], "variant_access_point": ["Zinyaki"], "authorized_access_point": "Zinjaki"} 1 +2024-09-11 09:11:55.340533 2024-09-11 09:11:55.340537 70e5f531-61fc-4d6e-b13f-0b85861e002e {"md5": "fd2d119be56a826dcd7c22a2f38dc667", "pid": "1330847199", "note": [{"label": ["GeoNames - https://www.geonames.org/3099521/gana.html", "Wikipedia - https://pl.wikipedia.org/w/index.php?title=Gana&oldid=72537850"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Praszka"}, {"authorized_access_point": "Woiwodschaft Oppeln"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330847199", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330847199", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330847199", "source": "GND"}], "authorized_access_point": "Gana (Praszka)"} 1 +2024-09-11 09:11:55.403871 2024-09-11 09:11:55.403876 78b01f79-ba91-48e6-9e3e-986fa274685b {"md5": "2b4656440bc36b1c7fe615467fc73877", "pid": "1330436237", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Helmbrechts"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330436237", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330436237", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330436237", "source": "GND"}], "variant_access_point": ["Hampelhof (Helmbrechts-Hampelhof)"], "authorized_access_point": "Helmbrechts-Hampelhof"} 1 +2024-09-11 09:11:55.467012 2024-09-11 09:11:55.467021 08b306be-fb41-4cd2-8207-4ddcb5e2bd89 {"md5": "ca2f3857f351437a865f557134ccf045", "pid": "1330428420", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Warschauer_Ghetto-Ehrenmal&oldid=211224290"], "noteType": "dataSource"}, {"label": ["Errichtet zum Gedenken des Aufstands im Warschauer Ghetto"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Warschau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330428420", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330428420", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330428420", "source": "GND"}], "variant_access_point": ["Warschauer Ghetto-Ehrenmal (Warschau)", "Pomnik Bohaterów Getta (Warschau)"], "authorized_access_point": "Denkmal der Helden des Ghettos (Warschau)"} 1 +2024-09-11 09:11:55.5387 2024-09-11 09:11:55.538703 7a59018e-ffb6-46ef-ab97-fd5ed146ae74 {"md5": "025f42a1cfb8f204dc0ea69385754700", "pid": "1330324463", "note": [{"label": ["Kreis Stormarn (Kreisarchiv Stormarn) - https://www.stormarnlexikon.de/wassermuehlenuetschau/"], "noteType": "dataSource"}, {"label": ["Ehemalige Wassermühle in Nütschau, einem Ortsteil von Travenbrück im Kreis Stornmarn, Schlewsig-Holstein; Kauf und Nutzung durch den Fotografen Matthias Heitmann im Jahre 1992; Restauration und Umbau zum Wohnhaus."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Travenbrück"}, {"authorized_access_point": "Travenbrück-Nütschau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330324463", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330324463", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330324463", "source": "GND"}], "variant_access_point": ["Wassermühle Nütschau (Travenbrück-Nütschau)"], "authorized_access_point": "Wassermühle Nütschau (Travenbrück)"} 1 +2024-09-11 09:11:55.608917 2024-09-11 09:11:55.608922 b0f734e5-ebbb-4b1a-86b5-d1f25351a1b9 {"md5": "7b45970e199cc28f40eba0ebb38b5737", "pid": "1330302877", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Gr%C3%B6nwohld&oldid=244402281#Geschichte", "Kreis Stormarn (Kreisarchiv Stormarn) - https://www.stormarnlexikon.de/drahtmuehlegroenwohld/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Grönwohld"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330302877", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330302877", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330302877", "source": "GND"}], "authorized_access_point": "Drahtmühle Grönwohld (Grönwohld)"} 1 +2024-09-11 09:11:55.674348 2024-09-11 09:11:55.674352 b5f355ac-8400-41b5-9b76-7b30eb3cb6de {"md5": "840f7011be6df0fcbfcb8d5b84b40a9e", "pid": "1330290887", "note": [{"label": ["Kreis Stornmarn (Kreisarchiv Stormarn) - https://www.stormarnlexikon.de/fasanenhofjersbek/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Jersbek"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330290887", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330290887", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330290887", "source": "GND"}], "variant_access_point": ["Zum Fasanenhof (Jersbek)", "Landgasthaus Zum Fasanenhof (Jersbek)", "Landgasthof Zum Fasanenhof (Jersbek)"], "authorized_access_point": "Fasanenhof (Jersbek)"} 1 +2024-09-11 09:11:55.726268 2024-09-11 09:11:55.726272 fc7d1738-b039-4106-abe7-1a8cc681e7ea {"md5": "dc5171079a2ee62886f95d2b915fdc6b", "pid": "1330177274", "note": [{"label": ["Naturparkzentrum und Verwaltung - https://www.naturpark-ehw.de/weg/top-grenzwanderweg-schifflersgrund", "Grenzmuseum Schifflersgrund - https://www.grenzmuseum.de/lernen/bildungsort/grenzwanderweg"], "noteType": "dataSource"}, {"label": ["Rundwanderweg entlang der innerdeutschen Grenze zwischen Asbach-Sickendorf und Bad Sooden-Allendorf; ca. 10,9 km"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Asbach-Sickenberg"}, {"authorized_access_point": "Bad Sooden- Allendorf"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1330177274", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1330177274", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1330177274", "source": "GND"}], "variant_access_point": ["Grenzwanderweg Schifflersgrund", "Rundwanderweg Schifflersgrund"], "authorized_access_point": "TOP-Grenzwanderweg Schifflersgrund"} 1 +2024-09-11 09:11:55.791934 2024-09-11 09:11:55.791939 aad4931b-afdd-4bf5-86ab-d2936835a3fb {"md5": "5c4dbc5976dd42d97e241717f53cc0f7", "pid": "1329890205", "note": [{"label": ["Stadtverwaltung Jena - https://beteiligung.jena.de/sites/default/files/2024-02/Aufarbeitung_Geschichte%20des%20Orchideenbrunnen_B%C3%BCrgerbudget%20Jena_0.pdf"], "noteType": "dataSource"}, {"label": ["Brunnen und Metallplastik auf dem Eichplatz in Jena; Demontage im Jahr 2000."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Jena"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1329890205", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1329890205", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1329890205", "source": "GND"}], "variant_access_point": ["Jenaer Orchideenbrunnen (Jena)"], "authorized_access_point": "Orchideenbrunnen (Jena)"} 1 +2024-09-11 09:11:55.857168 2024-09-11 09:11:55.857173 0254176e-e354-4649-b5f9-47ba35dbc429 {"md5": "1d983cb78bb14306dcaf16e01d6ea558", "pid": "1329430875", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Merville_(Nord)&oldid=246093496", "GeoNames - https://www.geonames.org/6438365/merville.html"], "noteType": "dataSource"}, {"label": ["Gemeinde im Département Nord, Frankreich"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Departement Nord"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1329430875", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1329430875", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1329430875", "source": "GND"}], "authorized_access_point": "Merville (Departement Nord)"} 1 +2024-09-11 09:11:55.926063 2024-09-11 09:11:55.926071 34ad95e5-fb04-41a0-8017-5e62e169f529 {"md5": "e01dc1cc1a65433a11e8ca0b1b4a19e9", "pid": "1316359042", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1316359042", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1316359042", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1316359042", "source": "GND"}], "variant_access_point": ["Smolotel"], "authorized_access_point": "Smolotely"} 1 +2024-09-11 09:11:55.995724 2024-09-11 09:11:55.995728 3799d3b2-0a48-48b8-be87-1ffc46cebd84 {"md5": "e20cbeb1d767d2a52851a9121a5aef2b", "pid": "1314596373", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Mitwitz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1314596373", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1314596373", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1314596373", "source": "GND"}], "authorized_access_point": "Oberes Schloss (Mitwitz)"} 1 +2024-09-11 09:11:56.066199 2024-09-11 09:11:56.066202 f0853b55-d44d-482b-bb4c-a943e113fef1 {"md5": "f334405cd62a82534f2511aa0c7fe1f3", "pid": "1302571524", "note": [{"label": ["Straße in der Innenstadt von Pößneck im Saale-Orla-Kreis, Thüringen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pößneck"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1302571524", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1302571524", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1302571524", "source": "GND"}], "variant_access_point": ["Schulstraße (Pößneck)"], "authorized_access_point": "Straubelstraße (Pößneck)"} 1 +2024-09-11 09:11:56.135148 2024-09-11 09:11:56.135152 db8554ef-2e36-4a75-a55e-99fe13c56a50 {"md5": "67978dbc6e1e9ae4d50a8908a4938a24", "pid": "1300397128", "note": [{"label": ["Heimatkreis Oststernberg e.V. (Hrsg.): Oststernberger Heimatbrief 2/2013 - https://oststernberg.de/wp-content/uploads/2016/02/Heimatbrief-2-2013.pdf"], "noteType": "dataSource"}, {"label": ["Das Dorf Lindow im ehemaligen Kreis Ost-Sternberg wurde im Jahre 1939 gemeinsam mit den umliegenden Orten Wandern und Groß Kirschbaum zum Truppenübungsplatz bestimmt und sämtliche Einwohner*innen umgesiedelt."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kreis Oststernberg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1300397128", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1300397128", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1300397128", "source": "GND"}], "authorized_access_point": "Lindow (Kreis Oststernberg)"} 1 +2024-09-11 09:11:56.186642 2024-09-11 09:11:56.186645 569087a2-48fc-4308-be81-5d41ddd69708 {"md5": "bd8d32e402ce730e52eb001dd25df29e", "pid": "1299383890", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=230671556"], "noteType": "dataSource"}, {"label": ["Ortsteil des Leipziger Stadtteils Mockau im Stadtbezirk Nordost"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Neu-Mockau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1299383890", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1299383890", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1299383890", "source": "GND"}], "variant_access_point": ["Mockau-Süd (Leipzig)"], "authorized_access_point": "Leipzig-Mockau-Süd"} 1 +2024-09-11 09:11:56.243427 2024-09-11 09:11:56.243431 987f9915-88cb-4fe4-ab92-444622305eee {"md5": "3f9b6d084fc50e61e2157be27f2fed25", "pid": "129673143X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=217307184"], "noteType": "dataSource"}, {"label": ["Dorf in der polnischen Woiwodschaft Ermland-Masuren"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Groß Tauersee"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/129673143X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)129673143X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)129673143X", "source": "GND"}], "authorized_access_point": "Turza Wielka"} 1 +2024-09-11 09:11:56.313311 2024-09-11 09:11:56.313316 7348e441-e390-465a-8a8d-767e7a0ef7ae {"md5": "89b2eecd2241858e71a8f369af3bf64d", "pid": "1295131781", "note": [{"label": ["Verbandsbüro in Apolda - https://www.weimarer-land.travel/zukunft/goethe-erlebnisweg/", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Goethe-Erlebnisweg&oldid=234912759"], "noteType": "dataSource"}, {"label": ["Wanderweg zwischen Weimar und Großkochberg auf den Spuren Goethes; 29 km lang"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Weimar"}, {"authorized_access_point": "Uhlstädt-Kirchhasel- Großkochberg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1295131781", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1295131781", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1295131781", "source": "GND"}], "authorized_access_point": "Goethe-Erlebnisweg"} 1 +2024-09-11 09:11:56.388386 2024-09-11 09:11:56.38839 59ec6d8d-6891-4b95-b765-848cf6809993 {"md5": "5fe86af664920539553de1966e7f5f88", "pid": "1287837611", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=229557818"], "noteType": "dataSource"}, {"label": ["Ehemals selbstständige Gemeinde; seit 1. August 1976 Eingemeindung nach Bollingstedt im Kreis Schleswig-Flensburg, Schleswig-Holstein."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Bollingstedt"}, {"authorized_access_point": "Gammellund"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1287837611", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1287837611", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1287837611", "source": "GND"}], "authorized_access_point": "Bollingstedt-Gammellund"} 1 +2024-09-11 09:11:56.453463 2024-09-11 09:11:56.453471 409a1bde-b6d5-4952-985f-0137ffd39ec7 {"md5": "7f7c9a8643dea2c7d2e006a4692ff358", "pid": "1286132703", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=225307470"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Leipzig-Sellerhausen-Stünz"}], "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Stünz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1286132703", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1286132703", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1286132703", "source": "GND"}], "variant_access_point": ["Stünz (Leipzig)"], "authorized_access_point": "Leipzig-Stünz"} 1 +2024-09-11 09:11:56.522364 2024-09-11 09:11:56.522368 e7b85b94-78b2-449a-b055-6b1afd3fc30c {"md5": "03f81a8fe8532964a550223444cdc619", "pid": "1284341119", "note": [{"label": ["erbaut 1552, Umbau mit steilem Walmdach um 1780; Einrichtung als ortsgeschichtliches Museum 1956-1966"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Horgen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1284341119", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1284341119", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1284341119", "source": "GND"}], "variant_access_point": ["Sust (Horgen)"], "authorized_access_point": "Alte Sust (Horgen)"} 1 +2024-09-11 09:11:56.600728 2024-09-11 09:11:56.600736 d703ca92-ee79-4461-b8d0-fe40a97bb135 {"md5": "8949f9359e3f0ba531341e699ef8d305", "pid": "1282328816", "note": [{"label": ["GOV - http://gov.genealogy.net/item/show/GAHORFJO54PK"], "noteType": "dataSource"}, {"label": ["Ehemals selbstständiges Dorf; seit 1. Januar 2003 Stadtteil der Stadt Fehmarn im Kreis Ostholstein, Schleswig-Holstein."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Fehmarn"}, {"authorized_access_point": "Gahlendorf"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1282328816", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1282328816", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1282328816", "source": "GND"}], "authorized_access_point": "Fehmarn-Gahlendorf"} 1 +2024-09-11 09:11:56.665981 2024-09-11 09:11:56.665984 6f2f0f0d-ce4a-45d8-a6e7-a12a319035f7 {"md5": "66123f09b2cd26455411c9f77c136793", "pid": "1275159915", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kreis Kretinga"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1275159915", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1275159915", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1275159915", "source": "GND"}], "variant_access_point": ["Anduln"], "authorized_access_point": "Ėgliškiai-Anduliai"} 1 +2024-09-11 09:11:56.725809 2024-09-11 09:11:56.725813 1fa3abc0-7ace-44d0-90af-ec1cb0acae57 {"md5": "2a6d07cd3009ff4c6a570b2ad073593e", "pid": "1271173751", "note": [{"label": ["Wikipedia - https://da.wikipedia.org/w/index.php?title=N%C3%B8rre_Herred_(Bornholm)&oldid=9783302"], "noteType": "dataSource"}, {"label": ["Ehemaliger Verwaltungsbezirk in Amt Bornholm"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Amt Bornholm"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1271173751", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1271173751", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1271173751", "source": "GND"}], "authorized_access_point": "Nørre Herred (Amt Bornholm)"} 1 +2024-09-11 09:11:56.804693 2024-09-11 09:11:56.804698 7fb79670-3218-477b-9a3e-9b7420bd31a8 {"md5": "a17a15374076d584f5a7cfabff750baf", "pid": "1267606541", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Beskid_Makowski&oldid=211779153", "Wikipedia - https://www.wikidata.org/wiki/Q6740528"], "noteType": "dataSource"}, {"label": ["Gebirgszug der Westbeskiden in Polen in der Woiwodschaft Kleinpolen, nach der Stadt Maków Podhalański benannt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Beskiden"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1267606541", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1267606541", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1267606541", "source": "GND"}], "variant_access_point": ["Makower Beskiden (Westbeskiden)", "Maków Beskids", "Beskid Średni", "Mittelbeskiden"], "authorized_access_point": "Beskid Makowski"} 1 +2024-09-11 09:11:56.889263 2024-09-11 09:11:56.889267 61183ffb-cd9c-4d72-b74c-2d34cce8c99f {"md5": "374f4ee6b6ed3badf9172536828d88cc", "pid": "1262419808", "note": [{"label": ["Bergsporn zwischen Stadtlauringen und Oberlauringen im Landkreis Schweinfurt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Stadtlauringen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1262419808", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1262419808", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1262419808", "source": "GND"}], "authorized_access_point": "Altenburg (Stadtlauringen, Berg)"} 1 +2024-09-11 09:11:56.953043 2024-09-11 09:11:56.953047 9213dadc-1e85-4cca-b11d-7d0c09af9019 {"md5": "69667a479f897f3236e88fb1c46577a2", "pid": "1240912943", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1240912943", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1240912943", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1240912943", "source": "GND"}], "variant_access_point": ["Loslauer Land", "Ziemia Wodzisławska", "Wodzisław Śląski", "Loslau"], "authorized_access_point": "Wodzisław Śląski - Region"} 1 +2024-09-11 09:11:57.086248 2024-09-11 09:11:57.086252 44ddb5d4-ff97-48da-80cb-6e60556b3692 {"md5": "6106324cc9a1da791a255c9ef6f0692d", "pid": "1239463502", "note": [{"label": ["Psycholog. Schema u. allegor. Landkarte (1653/54); 1654/60 in M. Scuderys Roman \\"Clélie, histoire romaine\\" veröffentlicht", "Ohne iZ Motiv"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1239463502", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1239463502", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1239463502", "source": "GND"}], "variant_access_point": ["Carte du Tendre", "Carte du pays de Tendre"], "authorized_access_point": "Carte de Tendre"} 1 +2024-09-11 09:11:57.14976 2024-09-11 09:11:57.149763 0bb86b31-9ecd-4cd7-b0e0-ae03ad014b67 {"md5": "9919d7015135fe87cd5252376b2de338", "pid": "1237860342", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Woiwodschaft Vorkarpaten"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1237860342", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1237860342", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1237860342", "source": "GND"}], "variant_access_point": ["Kolbuszowa", "Kolbuszowa", "Ziemia kolbuszowska"], "authorized_access_point": "Kolbuszowa - Region"} 1 +2024-09-11 09:11:57.198598 2024-09-11 09:11:57.198602 b1fac734-f54b-4974-8e13-a2e5e3ffcfa1 {"md5": "fa4fdc577385bf5553e62b2d239a7876", "pid": "1237828171", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Woiwodschaft Großpolen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1237828171", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1237828171", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1237828171", "source": "GND"}], "variant_access_point": ["Ostrzeszów", "Ostrzeszów", "Ostrzeszower Land", "Schildberger Land", "Schildberg"], "authorized_access_point": "Ziemia Ostrzeszowska"} 1 +2024-09-11 09:11:57.248939 2024-09-11 09:11:57.248942 ad1179be-73bc-4d4d-a25f-8fbe9b41f89d {"md5": "6544240f958e48a88cd8ed923eb6a74e", "pid": "1237774101", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Woiwodschaft Lebus"}, {"authorized_access_point": "Powiat Żagański"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1237774101", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1237774101", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1237774101", "source": "GND"}], "variant_access_point": ["Szprotawa", "Ziemia szprotawska", "Sprottauer Land", "Sprottau"], "authorized_access_point": "Szprotawa - Region"} 1 +2024-09-11 09:11:57.30929 2024-09-11 09:11:57.309295 3dba3a8b-0789-45a3-b86b-559e33a1ead0 {"md5": "3d5702f688704970ab8378811b047837", "pid": "1237279453", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Woiwodschaft Masowien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1237279453", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1237279453", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1237279453", "source": "GND"}], "variant_access_point": ["Węgrów", "Ziemia węgrowska"], "authorized_access_point": "Węgrów - Region"} 1 +2024-09-11 09:11:57.378024 2024-09-11 09:11:57.378029 d66bbbf9-5d4d-4cd7-bdc8-27460602ef43 {"md5": "86f259dc77f4e7a9ffb299cc6c200695", "pid": "1236792211", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Polen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1236792211", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1236792211", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1236792211", "source": "GND"}], "authorized_access_point": "Lublin-Synklinale"} 1 +2024-09-11 09:11:57.439155 2024-09-11 09:11:57.439159 fcab5c24-01a4-4bef-8e6a-8d112aa698d3 {"md5": "0545b0614021f87e71827a6fc94c8e6c", "pid": "123657754X", "note": [{"label": ["Internet - https://muzeum.zwolen.pl/wystawa/zwolen-i-ziemia-zwolenska-na-pocztowce/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Woiwodschaft Masowien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/123657754X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)123657754X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)123657754X", "source": "GND"}], "variant_access_point": ["Zwoleń", "Ziemia zwoleńska"], "authorized_access_point": "Zwoleń - Region"} 1 +2024-09-11 09:11:57.504848 2024-09-11 09:11:57.504852 0f52a7d8-ba46-4010-a11f-5cbd6f63e6df {"md5": "42ba4fdbbb4428645c8d48fb847c9698", "pid": "1235360709", "note": [{"label": ["Insel in der Arafurasee vor der Küste des Northern Territory in Australien"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Arafurasee"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1235360709", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1235360709", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1235360709", "source": "GND"}], "authorized_access_point": "Croker Island"} 1 +2024-09-11 09:11:57.570296 2024-09-11 09:11:57.570301 95746440-415e-4466-ae17-37f53aa92241 {"md5": "47ae3f7c5e5ccfb6a56883f4c76105e4", "pid": "1233310046", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Dubring&oldid=197367017"], "noteType": "dataSource"}, {"label": ["Dubring (sorbisch: Dubrjenk) ist eine ehemals selbständige Gemeinde; seit 1.1.1994 nach Wittichenau eingemeindet. Im Landkreis Bautzen in Sachsen. 1815-1945 zu Preußen (Regierungsbezirk Liegnitz) gehörend"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Wittichenau-Dubring"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1233310046", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1233310046", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1233310046", "source": "GND"}], "variant_access_point": ["Dubrjenk", "Eichhain"], "authorized_access_point": "Dubring"} 1 +2024-09-11 09:11:57.647065 2024-09-11 09:11:57.64707 605092bc-7793-403a-9d2a-f20124dec034 {"md5": "4b8484d0ccfd0788a1b2606dc8d68b53", "pid": "1232243698", "note": [{"label": ["Geonames - http://www.geonames.org/2932852/ehrenberg.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Ilmenau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1232243698", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1232243698", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1232243698", "source": "GND"}], "authorized_access_point": "Ehrenberg (Berg)"} 1 +2024-09-11 09:11:57.697082 2024-09-11 09:11:57.697085 7119cdd7-f821-4ac2-bd2b-80d1f2838392 {"md5": "a7d1a4f796f5fb09e87d2f997b43b469", "pid": "1225876354", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_von_Schillerdenkm%C3%A4lern&oldid=201898785"], "noteType": "dataSource"}, {"label": ["Schiller-Denkmal in der Parkanlage Schillerhöhe, gegenüber dem Schiller-Nationalmuseum. - Standbild gestaltet nach Entwürfen des Bildhauers Ernst Friedrich Rau, in der Werkstatt Pelargus in Erz gegossen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Marbach am Neckar"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1225876354", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1225876354", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1225876354", "source": "GND"}], "authorized_access_point": "Schiller-Denkmal (Marbach am Neckar)"} 1 +2024-09-11 09:11:57.765737 2024-09-11 09:11:57.76574 2f121ee0-a44d-4d95-8069-f063d04eda96 {"md5": "f861a7cc624d1d608e70848f6bd6a8a6", "pid": "1224278054", "note": [{"label": ["Architekturmuseum, TU Berlin - https://architekturmuseum.ub.tu-berlin.de/index.php?p=51&SID=16093345395539", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Akademietheater_(Wien)&oldid=204362083", "Homepage - https://www.burgtheater.at/akademietheater"], "noteType": "dataSource"}, {"label": ["Wird seit 1922 vom Burgtheater Wien als Kammerspielbühne genutzt."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Wien"}, {"authorized_access_point": "Wien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1224278054", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1224278054", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1224278054", "source": "GND"}], "variant_access_point": ["Akademie-Theater Wien (Wien)", "Akademie Theater Wien (Wien)"], "authorized_access_point": "Akademietheater Wien (Wien)"} 1 +2024-09-11 09:11:57.836323 2024-09-11 09:11:57.836326 0f8967c5-b67f-419c-869f-e9ae8f306292 {"md5": "1ddb8e2cd6ec7fb28483a35c07487e2f", "pid": "122413754X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Turmh%C3%BCgelburg_Woja&oldid=206688094"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rehau-Woja"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/122413754X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)122413754X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)122413754X", "source": "GND"}], "variant_access_point": ["Turmhügel Woja (Rehau-Woja)", "Burg Woja (Rehau-Woja)"], "authorized_access_point": "Turmhügelburg Woja (Rehau-Woja)"} 1 +2024-09-11 09:11:57.892924 2024-09-11 09:11:57.892928 87db39df-76ab-4eb2-9cd5-df7f84163273 {"md5": "1327965752e283a90f12e6ee99e9a374", "pid": "122219953X", "note": [{"label": ["Stadt im Bezirk Utena, Litauen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Molėtai"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/122219953X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)122219953X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)122219953X", "source": "GND"}], "variant_access_point": ["Balinkai", "Balnikų", "Balʹninkay", "Bolʹniki", "Balʹninkaj", "Бальнинкай"], "authorized_access_point": "Balninkai"} 1 +2024-09-11 09:11:57.985388 2024-09-11 09:11:57.985392 bc55a2ff-bc3f-4d30-aecf-c507a9b7c040 {"md5": "b2787fdec9a73a946e8483b5724af82d", "pid": "1222199440", "note": [{"label": ["Stadt in der Gemeinde Rokiškis in Litauen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1222199440", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1222199440", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1222199440", "source": "GND"}], "variant_access_point": ["Kamajys", "Kamayay", "Komaje", "Kamajaj", "Камаяй"], "authorized_access_point": "Kamajai"} 1 +2024-09-11 09:11:58.063905 2024-09-11 09:11:58.063914 4ae5280c-cdca-444a-b90d-6060478bf3d6 {"md5": "a4aa1ccdbd280a97acc617828de1ba40", "pid": "1219234621", "note": [{"label": ["Landhaus des Bauernhofs, welcher ursprünglich zur Zisterzienserabtei Val-Richer (jetzt Gemeinde Saint-Ouen-le-Pin im Département Calvados der Region Normandie) gehörte. Ende des 19. Jahrhunderts von Conrad de Witt erworben. Nach dessen Tod waren Haus und Pressoir zunächst im Besitz des Enkels Jean Schlumberger, der ab 1954 (nach dem Verkauf an Louise Schlumberger) im Pressoir wohnte. Bis 1968 war Braffy dem Postamt La Boissière, danach Saint-Ouen-le-Pin zugewiesen."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Saint-Ouen-le-Pin"}, {"authorized_access_point": "La Boissière"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1219234621", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1219234621", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1219234621", "source": "GND"}], "authorized_access_point": "Braffy (Saint-Ouen-le-Pin)"} 1 +2024-09-11 09:11:58.139426 2024-09-11 09:11:58.139431 af767194-8dd5-4e81-a39b-c0edbd40e91a {"md5": "0f3cb5eb33793e20fcf74382bd9f057e", "pid": "1215862520", "note": [{"label": ["GeoNames - http://geotree.geonames.org/11303211/"], "noteType": "dataSource"}, {"label": ["Dorf in der Gemeinde Alvitas, Rajon Vilkaviškis, Litauen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1215862520", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1215862520", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1215862520", "source": "GND"}], "authorized_access_point": "Kiršai"} 1 +2024-09-11 09:11:58.185607 2024-09-11 09:11:58.185609 9bbb958d-15bd-468d-acbd-f7d6f51de4f3 {"md5": "df8ec0b489e8dbba757e9080623944fd", "pid": "1208649175", "note": [{"label": ["GeoNames - https://geotree.geonames.org/599832/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Pakruojis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1208649175", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1208649175", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1208649175", "source": "GND"}], "variant_access_point": ["Dirzhyay (Pakruojis)", "Diržių (Pakruojis)"], "authorized_access_point": "Diržiai (Pakruojis)"} 1 +2024-09-11 09:12:08.156112 2024-09-11 09:12:08.156115 c99cc929-3deb-4b84-9cfa-b2028d0cae7a {"md5": "f09a3e0a08879dd9a6d9a9ba9d635e05", "pid": "1060502798", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060502798", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060502798", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060502798", "source": "GND"}], "authorized_access_point": "Malschbach (Fluss)"} 1 +2024-09-11 09:11:58.313946 2024-09-11 09:11:58.31395 0df588af-3f8b-4e6e-a24f-96656942d55c {"md5": "a1031d65cce3679899a7bd12036a867a", "pid": "1203261837", "note": [{"label": ["GeoNames - http://geotree.geonames.org/598959/"], "noteType": "dataSource"}, {"label": ["Dorf in Litauen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kreis Panevėžys"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1203261837", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1203261837", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1203261837", "source": "GND"}], "authorized_access_point": "Išlaužai"} 1 +2024-09-11 09:11:58.388708 2024-09-11 09:11:58.388712 6a8ade56-57c7-4b0f-a528-10bf108b817c {"md5": "e56885817c63666231464c1e5bcab60a", "pid": "1197938001", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Woiwodschaft Vorkarpaten"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1197938001", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1197938001", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1197938001", "source": "GND"}], "variant_access_point": ["Jarocin", "Jarocin", "Jarocin"], "authorized_access_point": "Ziemia Jarocinska"} 1 +2024-09-11 09:11:58.448819 2024-09-11 09:11:58.448822 ff8cce43-d5cd-452a-b923-2e579744da40 {"md5": "7a1b09b5e878db9ff8fa345e19495978", "pid": "1192399013", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1192399013", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1192399013", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1192399013", "source": "GND"}], "variant_access_point": ["Repser Ländchen"], "authorized_access_point": "Rupea - Region"} 1 +2024-09-11 09:11:58.517984 2024-09-11 09:11:58.517986 9c2aa924-907d-43d7-a448-281dc7ec6c8c {"md5": "dcb644e0e5e2785c9bda571cbe640457", "pid": "1191133729", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chemnitz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1191133729", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1191133729", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1191133729", "source": "GND"}], "variant_access_point": ["Stadthalle (Chemnitz)"], "authorized_access_point": "Stadthalle Chemnitz (Chemnitz)"} 1 +2024-09-11 09:11:58.577924 2024-09-11 09:11:58.577927 5fbcbc24-287d-43d5-b309-3c71c8906182 {"md5": "36d82b2969ce3248fe8eab2d9c872392", "pid": "1190333392", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1190333392", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1190333392", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1190333392", "source": "GND"}], "variant_access_point": ["Kleine Spree (Fluss)"], "authorized_access_point": "Kleine-Spree-Gebiet"} 1 +2024-09-11 09:11:58.65083 2024-09-11 09:11:58.650834 be3d0f18-0b68-4c0c-b309-b3172857098a {"md5": "ad30c5f9540984e65fef082dee729900", "pid": "1190333082", "note": [{"label": ["Wikipedia:Stand:11.07.2019 - https://de.wikipedia.org/wiki/Kleine_Spree"], "noteType": "dataSource"}, {"label": ["40 km langer linker Nebenarm der Spree im Landkreis Bautzen in Sachsen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1190333082", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1190333082", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1190333082", "source": "GND"}], "variant_access_point": ["Mała Sprjewja"], "authorized_access_point": "Kleine Spree"} 1 +2024-09-11 09:11:58.705969 2024-09-11 09:11:58.705972 2a4dfcb5-62dc-43d0-a091-6ba4694eba80 {"md5": "7597b2c4f5d1765a4366f3a68e6291a3", "pid": "1190328259", "note": [{"label": ["Mündungsarm der Oder zwischen den Inseln Usedom und Wollin, 16 km lang, Woiwodschaft Westpommern"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1190328259", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1190328259", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1190328259", "source": "GND"}], "variant_access_point": ["Świna", "Swine (Fluss)"], "authorized_access_point": "Swine"} 1 +2024-09-11 09:11:58.758674 2024-09-11 09:11:58.758679 2066c8cb-e8dd-4d6e-ae8b-6bf6c2fb5009 {"md5": "f5bc8cda6884201b81a5fe7847e9231a", "pid": "1189443015", "note": [{"label": ["Internet - http://www.muzeumwalcz.pl/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1189443015", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1189443015", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1189443015", "source": "GND"}], "variant_access_point": ["Wałcz", "Ziemia wałecka", "Deutsch Kroner Land", "Deutsch Krone (Land)"], "authorized_access_point": "Wałcz - Region"} 1 +2024-09-11 09:11:58.825723 2024-09-11 09:11:58.825731 642a6fe4-7d72-4c73-878b-2c2ad50a6c25 {"md5": "4f9e99f519f29df4794d2baabeb7fdb3", "pid": "1188738658", "note": [{"label": ["Gemeindebrief der Evangelisch-Lutherischen Kirchengemeinde [Cloppenburg], Nr. 2/08 · Juni bis September 2008, S. 4-7 - http://evangelisch-in-cloppenburg.de/wp-content/uploads/2017/04/08-2-ohne-Kasu.pdf", "Homepage - http://evangelisch-in-cloppenburg.de/schwedenheim-2"], "noteType": "dataSource"}, {"label": ["Vom schwedisches Hilfswerk I.M. (Innereuropäische Mission) für karitative Zwecke gestiftetes Haus (u.a. Flüchtlingshilfe), ca. 1965 in die Trägerschaft des Diakonischen Werks Oldenburg übergangen; nach Umbauten, Erweiterungen und Renovierungen Nutzung als Gemeindezentrum, Kindergarten und Schule"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Cloppenburg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1188738658", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1188738658", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1188738658", "source": "GND"}], "variant_access_point": ["Gemeindezentrum Schwedenheim (Cloppenburg)"], "authorized_access_point": "Schwedenheim (Cloppenburg)"} 1 +2024-09-11 09:11:58.886674 2024-09-11 09:11:58.886678 b6e99a95-c1b3-48c1-9e17-f1d00b627386 {"md5": "1ed4d8f11f09d1ab0507fc06a397d7ea", "pid": "1184832803", "note": [{"label": ["Homepage - https://www.geopark-bayern.de/de/"], "noteType": "dataSource"}, {"label": ["Träger ist der Verein GEOPARK Bayern-Böhmen e.V."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bayern"}, {"authorized_access_point": "Bayern"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1184832803", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1184832803", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1184832803", "source": "GND"}], "variant_access_point": ["Česko-Bavorský Geopark"], "authorized_access_point": "Geopark Bayern-Böhmen"} 1 +2024-09-11 09:11:58.971729 2024-09-11 09:11:58.971733 0e157401-da5a-4389-9bc8-3f7c8ff1f297 {"md5": "e0fb3e8cec52537cf9513a911fcba319", "pid": "1184428727", "note": [{"label": ["Im Ostorfer See in Schwerin gelegene Halbinsel, erst im 20. Jh. als Wohnort genutzt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Schwerin"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1184428727", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1184428727", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1184428727", "source": "GND"}], "variant_access_point": ["Halbinsel Zwang", "Dwang, Halbinsel"], "authorized_access_point": "Halbinsel Dwang"} 1 +2024-09-11 09:11:59.105126 2024-09-11 09:11:59.10513 7073cc7e-1ae4-4d7c-952e-87420daa388b {"md5": "174e7b2938341aff3e8eee8c9a4c43c9", "pid": "1182916759", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Trattendorf"], "noteType": "dataSource"}, {"label": ["Trattendorf (niedersorbisch Dubrawa) ist eine ehemals selbständige Gemeinde; seit 1.1.1946 nach Spremberg eingemeindet. Im Landkreis Spree-Neiße in Brandenburg"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Spremberg-Trattendorf"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1182916759", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1182916759", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1182916759", "source": "GND"}], "variant_access_point": ["Dubrawa"], "authorized_access_point": "Trattendorf"} 1 +2024-09-11 09:11:59.183423 2024-09-11 09:11:59.183427 be5a769d-0b70-46f4-b3f1-b29b6daadf38 {"md5": "f151515f8d2379ee4a265c63c9b29d4c", "pid": "1182704948", "note": [{"label": ["unter - https://de.wikipedia.org/wiki/Heringsdorf", "unter - https://de.wikipedia.org/wiki/Bansin"], "noteType": "dataSource"}, {"label": ["Ort im Landkreis Usedom; 1818-1945: Kreis Usedom-Wollin), 1818 angelegt, 1826 Kolonie Neu Sallenthin, 1.7.1950 nach Basin eingemeindet, mit diesem 1.1.2005 nach Dreikaiserbäder"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Heringsdorf-Neu Sallenthin"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1182704948", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1182704948", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1182704948", "source": "GND"}], "authorized_access_point": "Neu Sallenthin"} 1 +2024-09-11 09:11:59.253061 2024-09-11 09:11:59.253064 a5a92971-cf3d-4d97-bfe3-5c5c996a252f {"md5": "ecda6d99cc813806f73aed6e70fe0550", "pid": "1180664485", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Belgier-Kaserne&oldid=195855777"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Graz"}, {"authorized_access_point": "Graz-Wetzelsdorf"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1180664485", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1180664485", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1180664485", "source": "GND"}], "variant_access_point": ["Belgierkaserne (Graz)", "SS-Kaserne Wetzelsdorf"], "authorized_access_point": "Belgier-Kaserne (Graz)"} 1 +2024-09-11 09:11:59.326123 2024-09-11 09:11:59.326132 a5ad22aa-3a07-41fa-9169-d83e5e3baac7 {"md5": "73cffcef7b5cf0ffbe0763b27e79fa3c", "pid": "1180620623", "note": [{"label": ["unter - https://de.wikipedia.org/wiki/Heringsdorf", "unter - https://de.wikipedia.org/wiki/Bansin"], "noteType": "dataSource"}, {"label": ["Ortsteil von Heringsdorf seit 1.1.2006, 1818 angelegt, 1826 Kolonie Neu Sallenthin, 1.7.1950 nach Basin eingemeindet, mit diesem 1.1.2005 nach Dreikaiserbäder"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Heringsdorf (Seebad)"}, {"authorized_access_point": "Neu Sallenthin"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1180620623", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1180620623", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1180620623", "source": "GND"}], "variant_access_point": ["Heringsdorf- Neu Sallenthin", "Neu Sallenthin (Heringsdorf, Seebad)"], "authorized_access_point": "Heringsdorf-Neu Sallenthin"} 1 +2024-09-11 09:11:59.4221 2024-09-11 09:11:59.422103 089fc9e6-ffb0-46cd-8cac-c2ff63b09f6d {"md5": "a383ffacf50461ca60ac58e4652a6350", "pid": "1179502884", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1179502884", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1179502884", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1179502884", "source": "GND"}], "variant_access_point": ["Krotoszyn", "Krotoschin", "Krotoschin", "Ziemia Krotoszyńska"], "authorized_access_point": "Krotoszyn - Region"} 1 +2024-09-11 09:11:59.508622 2024-09-11 09:11:59.508627 f2cfac70-1f5b-4b80-bd4c-f12bca1b7701 {"md5": "9affbe952ebb96e9521c297bc90eb43e", "pid": "1177183811", "note": [{"label": ["Internet - https://www.fietsplatform.nl/uploads/folder_NLFL_DE_2017_download.pdf"], "noteType": "dataSource"}, {"label": ["Ca. 400 km langer Rundkurs um das Ijsselmeer"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1177183811", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1177183811", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1177183811", "source": "GND"}], "variant_access_point": ["Zuidersee-Radweg", "Zuiderzee-Radweg", "Zuiderzeeroute", "Ijsselmeer Radroute"], "authorized_access_point": "Ijsselmeer-Radweg"} 1 +2024-09-11 09:11:59.561294 2024-09-11 09:11:59.561297 3a621bd4-980b-4b8d-8860-fc7049b614ee {"md5": "c6aa6033c72238fef261fe4b376c1601", "pid": "1177087480", "note": [{"label": ["Wikipedia: - https://de.wikipedia.org/wiki/Elsterstausee_B%C3%B6sdorf"], "noteType": "dataSource"}, {"label": ["1933-1935 angelegt, 2017 wurde der Status des Elsterstausees als Gewässer/Stauanlage aufgegeben"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1177087480", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1177087480", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1177087480", "source": "GND"}], "variant_access_point": ["Elsterstausee Bösdorf", "Elsterstausee Leipzig-Knauthain", "Stausee Bösdorf"], "authorized_access_point": "Elsterstausee (Leipzig)"} 1 +2024-09-11 09:12:08.203624 2024-09-11 09:12:08.203627 904abde3-8760-4871-9dcd-018fa5ec171a {"md5": "0ce08a1e0d5cb4c901dd6b250a2e5f4a", "pid": "1060502682", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060502682", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060502682", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060502682", "source": "GND"}], "authorized_access_point": "Dobrowabach"} 1 +2024-09-11 09:11:59.627604 2024-09-11 09:11:59.627608 460df84a-07ab-404e-8eef-901e89e7b97c {"md5": "57971643c7f60194e67159b9ebbff904", "pid": "1171383401", "note": [{"label": ["Wikipedia: - https://de.wikipedia.org/wiki/R%C5%AF%C5%BEovsk%C3%BD_vrch"], "noteType": "dataSource"}, {"label": ["Berg in der rechtselbischen Böhmischen Schweiz (619 m) in Tschechien"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Böhmische Schweiz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1171383401", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1171383401", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1171383401", "source": "GND"}], "variant_access_point": ["Rosenberg (Böhmische Schweiz : Berg)", "Růžák"], "authorized_access_point": "Růžovský vrch"} 1 +2024-09-11 09:11:59.68122 2024-09-11 09:11:59.681223 21da9ea6-527e-462c-958f-3cf6a6e27b04 {"md5": "ae8d7176a08b833d5c1ed0a5f183ce2b", "pid": "1169806708", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kaunas"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1169806708", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1169806708", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1169806708", "source": "GND"}], "authorized_access_point": "Kaunas - Region, Ost"} 1 +2024-09-11 09:11:59.746772 2024-09-11 09:11:59.746777 f666ac27-3c68-4e4f-8e2f-07b770c91f88 {"md5": "1e2452ccbabea6caa236261b34db2d97", "pid": "1169806686", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kaunas"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1169806686", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1169806686", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1169806686", "source": "GND"}], "authorized_access_point": "Kaunas - Region, West"} 1 +2024-09-11 09:11:59.823888 2024-09-11 09:11:59.823892 f0939956-db22-4709-9bb5-78919adc8126 {"md5": "d69017ec645b7f8d68739f8fecdb5309", "pid": "1169805167", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Dzūkija"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1169805167", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1169805167", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1169805167", "source": "GND"}], "authorized_access_point": "Dzūkija - Ost"} 1 +2024-09-11 09:11:59.888002 2024-09-11 09:11:59.888006 7d586d39-0959-4778-b699-8f6aeacf18f7 {"md5": "e0c682a6444a896939626c3a592588ed", "pid": "1169805140", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Dzūkija"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1169805140", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1169805140", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1169805140", "source": "GND"}], "authorized_access_point": "Dzūkija - West"} 1 +2024-09-11 09:11:59.976501 2024-09-11 09:11:59.976506 95e7032d-e7a9-4e0d-8cdb-54cd49a4f9aa {"md5": "d02c2deab33831ac505a9371dd33347c", "pid": "1167694643", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Sardinien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1167694643", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1167694643", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1167694643", "source": "GND"}], "variant_access_point": ["Comune di San Basilio (Sardinien)", "Santu 'Asili 'e Monti"], "authorized_access_point": "San Basilio (Sardinien)"} 1 +2024-09-11 09:12:00.062234 2024-09-11 09:12:00.062237 89d04454-e416-43ad-847c-6f71d0dfd2dc {"md5": "ef8e3a0d832a92b2b000f9777e73da0d", "pid": "1167335767", "note": [{"label": ["Kette von Tiefseebergen von der Südpazifischen Querschwelle bis zum Kermadec-Tonga-Rücken"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1167335767", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1167335767", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1167335767", "source": "GND"}], "variant_access_point": ["Louisville-Seamount-Chain", "Louisville Seamounts", "Louisville-Seamounts", "Louisville Ridge", "Louisville-Ridge"], "authorized_access_point": "Louisville Seamount Chain"} 1 +2024-09-11 09:12:00.168344 2024-09-11 09:12:00.168348 95ac6c27-35a5-4c9d-af31-ff7d532fae8c {"md5": "def1e37830072370aa2145c6ef80eca7", "pid": "1166988325", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Neusch%C3%B6nefeld&oldid=178415670"], "noteType": "dataSource"}, {"label": ["Ortsteil von Leipzig seit 1890"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Leipzig-Neustadt-Neuschönefeld"}], "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Neuschönefeld"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1166988325", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1166988325", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1166988325", "source": "GND"}], "variant_access_point": ["Neuschönefeld (Leipzig)"], "authorized_access_point": "Leipzig-Neuschönefeld"} 1 +2024-09-11 09:12:00.274002 2024-09-11 09:12:00.274007 f317a8a9-08d8-410d-95c9-d49c7b28757e {"md5": "fc420be70594d6b0ee9c1c401fb5f1f4", "pid": "1166988007", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Neustadt_(Leipzig)&oldid=173318045"], "noteType": "dataSource"}, {"label": ["Ortsteil von Leipzig seit 1890"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Leipzig-Neustadt-Neuschönefeld"}], "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Neustadt (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1166988007", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1166988007", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1166988007", "source": "GND"}], "variant_access_point": ["Neustadt (Leipzig)"], "authorized_access_point": "Leipzig-Neustadt"} 1 +2024-09-11 09:12:00.337466 2024-09-11 09:12:00.33747 bbaa703f-57e4-4148-8079-4a8e3dbb9935 {"md5": "256ec7e495e93bfded78cb440b1a0dad", "pid": "1166098877", "note": [{"label": ["Wikipedia - https://pl.wikipedia.org/wiki/Ziemia_lubawska"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1166098877", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1166098877", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1166098877", "source": "GND"}], "variant_access_point": ["Lubawa", "Ziemia lubawska", "Löbauer Land (Westpreußen)", "Löbau (Westpreußen)", "Löbau (Westpreußen)"], "authorized_access_point": "Lubawa - Region"} 1 +2024-09-11 09:12:00.423761 2024-09-11 09:12:00.423766 d184f420-24af-4eee-9a0a-c34434fc94c6 {"md5": "0feb25c62d9f6ebd35f33c0bd3e55849", "pid": "1165597586", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Woiwodschaft Lublin"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1165597586", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1165597586", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1165597586", "source": "GND"}], "variant_access_point": ["Radzyń Podlaski", "Radzyń Podlaski"], "authorized_access_point": "Radzyń Podlaski - Region"} 1 +2024-09-11 09:12:00.540366 2024-09-11 09:12:00.54037 6ffe6304-5927-47c1-9360-fc5db03fba77 {"md5": "48580749dc871537669883c90c8ed8c8", "pid": "1164527657", "note": [{"label": ["Internet - http://www.comune.sondrio.it/site/home/cosa-devo-fare-per/vivere-arte-e-tempo-libero/articolo1725279.html"], "noteType": "dataSource"}, {"label": ["32 km langer Bergwanderweg vom Veltlin ins Oberengadin"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Maloja"}, {"authorized_access_point": "Sondrio"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1164527657", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1164527657", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1164527657", "source": "GND"}], "authorized_access_point": "Sentiero Rusca"} 1 +2024-09-11 09:12:00.595212 2024-09-11 09:12:00.595217 2acb7015-46e0-4c93-b86f-4cd6af40b796 {"md5": "fbb2767390b7807db665f4f5a2520b65", "pid": "116355815X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Ahlbeck_(Heringsdorf)"], "noteType": "dataSource"}, {"label": ["Ortsteil von Heringsdorf (1.1.2005-31.12.2005: Dreikaiserbäder) seit 1.1.2006"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Heringsdorf (Seebad)"}, {"authorized_access_point": "Dreikaiserbäder-Ahlbeck"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/116355815X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)116355815X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)116355815X", "source": "GND"}], "variant_access_point": ["Ahlbeck (Heringsdorf, Seebad)"], "authorized_access_point": "Heringsdorf-Ahlbeck"} 1 +2024-09-11 09:12:00.673061 2024-09-11 09:12:00.673065 a244c93f-f373-4930-be4e-65148d7a5a3a {"md5": "58401eac07f95db3d7da9a684cff6060", "pid": "1163558095", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Ahlbeck_(Heringsdorf)"], "noteType": "dataSource"}, {"label": ["Ortsteil von Dreikaiserbäder seit 1.1.2005, 1.1.2006 in Heringsdorf umbenannt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Heringsdorf-Ahlbeck"}], "related": [{"authorized_access_point": "Dreikaiserbäder"}, {"authorized_access_point": "Ahlbeck (Seebad)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1163558095", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1163558095", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1163558095", "source": "GND"}], "variant_access_point": ["Ahlbeck (Dreikaiserbäder)"], "authorized_access_point": "Dreikaiserbäder-Ahlbeck"} 1 +2024-09-11 09:12:00.789998 2024-09-11 09:12:00.790003 9d62cde1-746c-4931-8a5c-766fbbf278de {"md5": "b8b0cb01e0d05433aae69868d34d932f", "pid": "1163419907", "note": [{"label": ["Ortsteil von Dreikaiserbäder seit 1.1.2005, 1.1.2005 in Ostseebad Heringsdorf umbenannt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Heringsdorf-Bansin"}], "related": [{"authorized_access_point": "Dreikaiserbäder"}, {"authorized_access_point": "Bansin"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1163419907", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1163419907", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1163419907", "source": "GND"}], "variant_access_point": ["Bansin (Dreikaiserbäder)"], "authorized_access_point": "Dreikaiserbäder-Bansin"} 1 +2024-09-11 09:12:00.848988 2024-09-11 09:12:00.848992 16da74f7-68ed-42cf-bb68-39467523d512 {"md5": "fd1ccfe2e90d5e039b60fde144617d55", "pid": "1161830820", "note": [{"label": ["Internet - https://www.esterbauer.com/db_detail.php?buecher_code=TDF"], "noteType": "dataSource"}, {"label": ["Radwanderweg durch den Norden Belgiens"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1161830820", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1161830820", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1161830820", "source": "GND"}], "variant_access_point": ["Vlaanderen Fietsroute"], "authorized_access_point": "Flandern-Route"} 1 +2024-09-11 09:12:00.934186 2024-09-11 09:12:00.934191 d049401d-ac9f-4739-969b-2ead23f91b67 {"md5": "239f8f4c63bba1bc9124bf6bab56cffa", "pid": "1161625046", "note": [{"label": ["Internet - https://www.kaufbeuren-tourismus.de/aktiv/schlossparkradrunde.html", "Internet - https://www.schlosspark.de/schlosspark-erleben/schlossparkradrunde.html"], "noteType": "dataSource"}, {"label": ["219 km langer Radrundweg im Ostallgäu, als Ausgangsort wird Füssen genannt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1161625046", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1161625046", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1161625046", "source": "GND"}], "variant_access_point": ["Allgäuer Schlossparkradrunde"], "authorized_access_point": "Schlossparkradrunde im Allgäu"} 1 +2024-09-11 09:12:01.087105 2024-09-11 09:12:01.08711 400589c0-b57f-42a4-8306-0297ee968d0a {"md5": "8245e53598ec697a23d502a14c02cca1", "pid": "1156658128", "note": [{"label": ["Internet: - https://www.trescher-verlag.de/reisefuehrer/deutschland/paul-gerhardt-weg.html"], "noteType": "dataSource"}, {"label": ["140 km langer Fernwanderweg von Berlin nach Lübben"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Berlin"}, {"authorized_access_point": "Lübben (Spreewald)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1156658128", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1156658128", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1156658128", "source": "GND"}], "variant_access_point": ["Paul-Gerhardt-Wanderweg"], "authorized_access_point": "Paul-Gerhardt-Weg"} 1 +2024-09-11 09:12:08.256062 2024-09-11 09:12:08.256067 6707ca1f-4d04-4165-be2d-559d4b130b93 {"md5": "a1e86c1b66ac4110e416ead1c0226de8", "pid": "1060502585", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060502585", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060502585", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060502585", "source": "GND"}], "authorized_access_point": "Lauterwasserbach"} 1 +2024-09-11 09:12:01.151064 2024-09-11 09:12:01.15107 c2306d1b-e212-4736-87d9-fd43f3854faa {"md5": "c3c1f56650474fb4836433503a392fd8", "pid": "1156051029", "note": [{"label": ["1903 erbautes Gewerbehaus; 1978 zu Wohnhaus umgenutzt, soll Überbauung weichen."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Luzern"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1156051029", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1156051029", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1156051029", "source": "GND"}], "authorized_access_point": "Industriestrasse 9 (Luzern)"} 1 +2024-09-11 09:12:01.223239 2024-09-11 09:12:01.223243 6a033e59-009b-4de9-a03f-b14562008688 {"md5": "98d995e2fde2f3f4f0b37b64a536bf4f", "pid": "1148115242", "note": [{"label": ["Equord ist seit 1.3.1974 ein Ortsteil der Gemeinde Hohenhameln im Landkreis Peine in Niedersachsen."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Hohenhameln"}, {"authorized_access_point": "Equord"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1148115242", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1148115242", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1148115242", "source": "GND"}], "authorized_access_point": "Hohenhameln-Equord"} 1 +2024-09-11 09:12:01.358937 2024-09-11 09:12:01.358942 5634681e-439a-4b3f-8d70-8831e4e77531 {"md5": "5236cfafe3127c7c1eabe69fff10ff34", "pid": "1147654123", "note": [{"label": ["Internet - https://www.rheinhessen.de/rheinterrassenweg", "Wikipedia - https://de.wikipedia.org/wiki/Rheinterrassenweg"], "noteType": "dataSource"}, {"label": ["Circa 60 km langer Wanderweg von Worms nach Mainz"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Worms"}, {"authorized_access_point": "Mainz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1147654123", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1147654123", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1147654123", "source": "GND"}], "variant_access_point": ["Rheinterrassenweg", "Rhein-Terrassen-Weg"], "authorized_access_point": "RheinTerrassenWeg"} 1 +2024-09-11 09:12:01.41377 2024-09-11 09:12:01.413775 ea9ae3ce-2bfd-495b-b42a-0974b975d907 {"md5": "405a56a9da61737490611b72c3db157c", "pid": "1143714245", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Kurpie&oldid=215616715"], "noteType": "dataSource"}, {"label": ["Kurpie ist sowohl die Bezeichnung für die Region als auch für die dortige Bevölkerung, die Region erstreckt sich in den heutigen Woiwodschaften Masowien, Podlasien und Ermland-Masuren"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1143714245", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1143714245", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1143714245", "source": "GND"}], "variant_access_point": ["Kurpengau"], "authorized_access_point": "Kurpie - Region"} 1 +2024-09-11 09:12:01.493096 2024-09-11 09:12:01.4931 3290c62e-02a2-4511-8e3a-fbd47d5d6853 {"md5": "0158294508e9829f6c38e1a9a650b2ab", "pid": "1143154991", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Continental_Divide_Trail"], "noteType": "dataSource"}, {"label": ["rund 5.000 Kilometer langer Fernwanderweg entlang der nordamerikanischen kontinentalen Wasserscheide von der mexikanischen bis zur kanadischen Grenze."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1143154991", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1143154991", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1143154991", "source": "GND"}], "variant_access_point": ["CDT (Fernwanderweg)"], "authorized_access_point": "Continental Divide Trail"} 1 +2024-09-11 09:12:01.557495 2024-09-11 09:12:01.557497 b93a0bdd-6d69-40fe-8a72-ae09ee1a911f {"md5": "a54d921460a664afa57d7529bc9e4571", "pid": "1142135993", "note": [{"label": ["Beitrag zur Skulpturenausstellung \\"Skulptur-Projekte Münster 1987\\""], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Münster (Westf)"}], "related": [{"authorized_access_point": "Juridicum (Münster (Westf))"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1142135993", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1142135993", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1142135993", "source": "GND"}], "variant_access_point": ["The meadow laughs (Münster (Westf))", "Tine lawn laughs (Münster (Westf))", "Das Gesicht in der Wand (Münster (Westf))", "The face in the wall (Münster (Westf))", "Die Wiese lacht oder das Gesicht in der Wand (Münster (Westf))", "The meadow laughs or the face in the wall (Münster (Westf))", "Tine lawn laughs or the face in the wall (Münster (Westf))"], "authorized_access_point": "Die Wiese lacht (Münster (Westf))"} 1 +2024-09-11 09:12:01.636368 2024-09-11 09:12:01.636372 3baa8a8a-2f64-4c82-8fd3-fa03be21d297 {"md5": "5a7095678d5c480f5d218dec24c043e2", "pid": "1139463888", "note": [{"label": ["Internet - https://www.donau.com/de/donau-niederoesterreich/infos-service/presse-b2b/presse/weitwanderweg-nibelungengau-wandern-am-fluss/b4fcca43e95b082793e09cc66f72d118/?tx_news_pi1%5Bcontroller%5D=News&tx_news_pi1%5Baction%5D=detail"], "noteType": "dataSource"}, {"label": ["110 km langer Wanderweg beidseits der Donau in Niederöstereich zwischen Sankt Nikola- Sarmingstein und Emmersdorf an der Donau"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Sankt Nikola- Sarmingstein"}, {"authorized_access_point": "Emmersdorf an der Donau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1139463888", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1139463888", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1139463888", "source": "GND"}], "authorized_access_point": "Weitwanderweg Nibelungengau"} 1 +2024-09-11 09:12:01.69691 2024-09-11 09:12:01.696914 92b2036c-2b37-4883-bc58-482e9b932ee1 {"md5": "fc01dd08eb3ead5f63f7405014e1b9b5", "pid": "113914071X", "note": [{"label": ["Internet - http://www.drei-fluesse-tour.de/"], "noteType": "dataSource"}, {"label": ["300 km langen Rundkurs entlang der drei Flüsse Rhein, Erft und Ahr"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/113914071X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)113914071X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)113914071X", "source": "GND"}], "variant_access_point": ["Drei-Flüsse-Tour", "Drei-Flüsse-Radweg", "Drei-Flüsse-Radwanderweg"], "authorized_access_point": "3-Flüsse-Tour"} 1 +2024-09-11 09:12:01.764702 2024-09-11 09:12:01.764704 f69c1f33-4d17-4bae-9e7d-9c8da7744bac {"md5": "2dc40459e74656143f1f68e12694cc98", "pid": "113698612X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Hansaweg"], "noteType": "dataSource"}, {"label": ["72 km langer Fernwanderweg zwischen Herford und Hameln. Besteht ungefähr seit 1936."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Herford"}, {"authorized_access_point": "Hameln"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/113698612X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)113698612X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)113698612X", "source": "GND"}], "variant_access_point": ["Hansa Weg", "Hansawanderweg", "Hansa Wanderweg"], "authorized_access_point": "Hansaweg"} 1 +2024-09-11 09:12:01.834662 2024-09-11 09:12:01.834666 12f1c4a4-d14b-4e0a-bdb3-96bfe7f964a4 {"md5": "c1fc8dc12a59bcf274b33bc069b1d92a", "pid": "1136731237", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Au an der Donau"}, {"authorized_access_point": "Naarn im Machlande"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1136731237", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1136731237", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1136731237", "source": "GND"}], "variant_access_point": ["Naarn im Machlande- Au"], "authorized_access_point": "Naarn- Au an der Donau"} 1 +2024-09-11 09:12:01.902426 2024-09-11 09:12:01.902429 31cbdda7-bff2-4797-b32c-babae82e46d5 {"md5": "665c8063c377e238503ba113c92e6eea", "pid": "1136092293", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1136092293", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1136092293", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1136092293", "source": "GND"}], "authorized_access_point": "Schengen - Region"} 1 +2024-09-11 09:12:01.959371 2024-09-11 09:12:01.959375 84f5d3a9-08a3-4375-8f8d-4a6f17e86dda {"md5": "e7fded18bcbc579fa8e01e610bd5e165", "pid": "1135805342", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Oberes_Angertal"], "noteType": "dataSource"}, {"label": ["Landschaft in Nordrhein-Westfalen zwischen Velbert und Wülfrath. Sie wurde in den 1940er-Jahren dem Kalkabbau geopfert, zahlreiche Höfe und Kotten wurden devastiert"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Angerbachtal (Rheinland)"}, {"authorized_access_point": "Niederbergisches Land"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1135805342", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1135805342", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1135805342", "source": "GND"}], "variant_access_point": ["Obere Angerbachtal", "Oberes Angertal"], "authorized_access_point": "Obere Angertal (Niederbergisches Land)"} 1 +2024-09-11 09:12:02.096698 2024-09-11 09:12:02.096701 bdbb0593-d481-498f-b7d5-2cc73deaa692 {"md5": "2df5922665a006cec3bcb08f9e351060", "pid": "1135798842", "note": [{"label": ["GeoNames - http://www.geonames.org/598887/jasiunai.html"], "noteType": "dataSource"}, {"label": ["Stadt in Litauen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1135798842", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1135798842", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1135798842", "source": "GND"}], "authorized_access_point": "Jašiūnai"} 1 +2024-09-11 09:12:02.14509 2024-09-11 09:12:02.145094 f228c087-a659-4f48-a2fc-48766767a23a {"md5": "a0d33d5f807518d46d9a54e70ac76992", "pid": "1133293247", "note": [{"label": ["Ev. Kirche, Turm im unteren Bereich romanisch, gotisches Schiff mit polygonalem Chor, 1947/48 restauriert"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Isingen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1133293247", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1133293247", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1133293247", "source": "GND"}], "authorized_access_point": "Martinskirche (Isingen)"} 1 +2024-09-11 09:12:02.227171 2024-09-11 09:12:02.227176 e64006ca-be76-4388-bf4f-f160429b4a88 {"md5": "ea3bd10262e38bd202ccaed972b08f2b", "pid": "1132227771", "note": [{"label": ["Internet - http://caminoignaciano.org/de/introduccion"], "noteType": "dataSource"}, {"label": ["Pilgerweg vom Baskenland nach Katalonien, es ist die Strecke die Ignatius von Loy 1522 gegangen ist"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Azpeitia-Loyola"}, {"authorized_access_point": "Manresa"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1132227771", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1132227771", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1132227771", "source": "GND"}], "variant_access_point": ["Ignatius-Weg", "Camino Ignaciano", "Inaziotar Bidea"], "authorized_access_point": "Ignatiusweg"} 1 +2024-09-11 09:12:02.351637 2024-09-11 09:12:02.351642 021ec8ab-6860-4382-9408-bfdfe77a0445 {"md5": "7ffb3d1cb0c31af2d3c8b0353c2a8838", "pid": "1124279156", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1124279156", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1124279156", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1124279156", "source": "GND"}], "variant_access_point": ["Gampenpass"], "authorized_access_point": "Gampenpass-Gebiet"} 1 +2024-09-11 09:12:02.423038 2024-09-11 09:12:02.423042 d5532458-aaee-4120-bfcb-5f33253c1888 {"md5": "4ee2ebc7d1f109a64899f8236bd19c4b", "pid": "1122747160", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Simbabwe"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1122747160", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1122747160", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1122747160", "source": "GND"}], "variant_access_point": ["Nordwestsimbabwe"], "authorized_access_point": "Simbabwe - Nordwest"} 1 +2024-09-11 09:12:02.518783 2024-09-11 09:12:02.518786 584ef8fa-6f3f-4409-87e8-62426a745191 {"md5": "912dd55e2900579ba2f0b67182fb5604", "pid": "1122668171", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Myanmar"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1122668171", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1122668171", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1122668171", "source": "GND"}], "variant_access_point": ["Birma", "Nordwestliches Birma"], "authorized_access_point": "Myanmar (Nordwest)"} 1 +2024-09-11 09:12:02.574664 2024-09-11 09:12:02.574668 fdcf1667-e1d2-4118-89ae-a0e4e311bf8b {"md5": "04bf3725692f944cb47d3bdd8904eb39", "pid": "112132925X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Sakdrissi"], "noteType": "dataSource"}, {"label": ["frühbronzezeitlichen Bergbaugebiet in Georgien, das auch das älteste bekannte Goldbergwerk der Welt barg."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/112132925X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)112132925X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)112132925X", "source": "GND"}], "variant_access_point": ["Sakdrisi"], "authorized_access_point": "Sakdrissi"} 1 +2024-09-11 09:12:02.648307 2024-09-11 09:12:02.648312 c2a3126c-faad-4df0-acae-ca59a354631f {"md5": "613c375c3dd85785ace0466df1f67c0d", "pid": "1107605113", "note": [{"label": ["Internet - http://www.allgaeu.de/himmelsstuermer-route"], "noteType": "dataSource"}, {"label": ["ca. 340 km langer Bergwanderweg im Allgäu, Teil der Wandertrilogie Allgäu"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Wandertrilogie Allgäu"}], "related": [{"authorized_access_point": "Halblech"}, {"authorized_access_point": "Pfronten"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1107605113", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1107605113", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1107605113", "source": "GND"}], "variant_access_point": ["Himmelsstürmer-Route"], "authorized_access_point": "Himmelsstürmer Route"} 1 +2024-09-11 09:12:02.707372 2024-09-11 09:12:02.707376 f01b5e0c-3a6f-4779-a9a0-c611902aea9d {"md5": "d23f576e437e7d15989f7b6f44a6f785", "pid": "1105589110", "note": [{"label": ["Internet - http://www.allgaeu.de/wanderrouten?referralTopic=wandern"], "noteType": "dataSource"}, {"label": ["ca. 390 km langer Rundwanderweg im Allgäu, Teil der Wandertrilogie Allgäu"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Wandertrilogie Allgäu"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1105589110", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1105589110", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1105589110", "source": "GND"}], "variant_access_point": ["Wasserläufer-Route"], "authorized_access_point": "Wasserläufer Route"} 1 +2024-09-11 09:12:02.780122 2024-09-11 09:12:02.780125 4fe736ac-e963-4ba5-b837-8fb8dc94d82d {"md5": "7ea3f2eb2faf36bdcfad1f3e624624e9", "pid": "1101612258", "note": [{"label": ["Wikipedia: - https://de.wikipedia.org/wiki/Yimeng_Shan"], "noteType": "dataSource"}, {"label": ["Gebirge in der Provinz Shandong"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1101612258", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1101612258", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1101612258", "source": "GND"}], "variant_access_point": ["Yimengshan", "Yimeng", "Yimeng-Bergland"], "authorized_access_point": "Yimeng Shan"} 1 +2024-09-11 09:12:02.83205 2024-09-11 09:12:02.832052 6e27c30c-1bc2-47d5-8eb5-98efae2011c1 {"md5": "9dc030be33265443b478d0866988997d", "pid": "1100323325", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Nahe-Radweg"], "noteType": "dataSource"}, {"label": ["Ca. 128 km langer Flußradweg entlang der Nahe"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Nohfelden-Selbach"}, {"authorized_access_point": "Bingen am Rhein"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1100323325", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1100323325", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1100323325", "source": "GND"}], "authorized_access_point": "Nahe-Radweg"} 1 +2024-09-11 09:12:02.888339 2024-09-11 09:12:02.888341 da9e748e-1024-4e70-ba45-a53df794d6a5 {"md5": "e32682fe04a7276a089c9321dd865df0", "pid": "1100201831", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Ennsradweg"], "noteType": "dataSource"}, {"label": ["ca. 260 km langer Radwanderweg entlang der Enns"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Flachau-Flachauwinkl"}, {"authorized_access_point": "Enns"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1100201831", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1100201831", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1100201831", "source": "GND"}], "variant_access_point": ["Ennsradweg"], "authorized_access_point": "Enns-Radweg"} 1 +2024-09-11 09:12:02.95362 2024-09-11 09:12:02.953624 a539112f-2f26-47aa-9aef-f9aed19e1099 {"md5": "6c7df7a5fef6a2db54145f953cf04f1f", "pid": "1099133092", "note": [{"label": ["Internet - http://www.allgaeu.de/wanderrouten?referralTopic=wandern"], "noteType": "dataSource"}, {"label": ["Fernwanderweg aus 3 Routen und 53 Etappen bestehend ( Wiesengänger, Wasserläufer, Himmelsstürmer)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1099133092", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1099133092", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1099133092", "source": "GND"}], "variant_access_point": ["Wandertrilogie-Allgäu"], "authorized_access_point": "Wandertrilogie Allgäu"} 1 +2024-09-11 09:12:03.097615 2024-09-11 09:12:03.097618 a24a6089-471a-4a7d-9435-c4e79cc93b33 {"md5": "fda86dde5824dc23eb29d7f9e5946f17", "pid": "1099132061", "note": [{"label": ["Internet - http://www.allgaeu.de/wiesengaenger-touren?referralTopic=wandern"], "noteType": "dataSource"}, {"label": ["ca. 400km langer Rundwanderweg im Allgäu, Teil der Wandertrilogie Allgäu"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Wandertrilogie Allgäu"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1099132061", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1099132061", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1099132061", "source": "GND"}], "variant_access_point": ["Wiesengänger-Route"], "authorized_access_point": "Wiesengänger Route"} 1 +2024-09-11 09:12:08.32163 2024-09-11 09:12:08.321634 00e4ea78-628d-47d2-bb6a-4ba174a1ff49 {"md5": "469fd64d634bd0ec16e152746256bdae", "pid": "1060502372", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060502372", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060502372", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060502372", "source": "GND"}], "authorized_access_point": "Göstritzbach"} 1 +2024-09-11 09:12:03.158638 2024-09-11 09:12:03.158643 ee8939cb-d3f4-472b-84d1-3eec9f71bfed {"md5": "98d04cb764bfc69fb8cc5f6a107fa0f2", "pid": "1097213617", "note": [{"label": ["Dorf, Landgemeinde mit Gut Neuscherbitz; 1934 nach Böhlitz-Ehrenberg eingemeindet - gehörte zu den Abteidörfern, seit 1999 Teil von Leipzig"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1097213617", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1097213617", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1097213617", "source": "GND"}], "variant_access_point": ["Gundorf (Leipzig)"], "authorized_access_point": "Leipzig-Gundorf"} 1 +2024-09-11 09:12:03.22402 2024-09-11 09:12:03.224025 66be56b0-51b2-48a2-bd30-d03b6b9b9aa7 {"md5": "3d8581ae66ea8887c0a3e5f0de4cb5f8", "pid": "1095576461", "note": [{"label": ["Google Maps - https://www.google.de/maps/place/Gomo,+South+Nias+Regency,+North+Sumatra,+Indonesien/@0.8834854,97.7321029,12z/data=!3m1!4b1!4m2!3m1!1s0x3026206005f1b8fb:0x4039d80b220dba0"], "noteType": "dataSource"}, {"label": ["Gebiet im Südnias"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Nias"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1095576461", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1095576461", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1095576461", "source": "GND"}], "variant_access_point": ["Gomo-Gebiet (Nias)"], "authorized_access_point": "Gomo-Gebiet (Nias)"} 1 +2024-09-11 09:12:03.297898 2024-09-11 09:12:03.297901 b84c6adf-3ea1-46f6-ace1-7c96709d55b0 {"md5": "30a38a774ae347f88683ccbe4a5618db", "pid": "1085229823", "note": [{"label": ["In der Sacherschließung nicht zu verwenden; für die Sacherschließung wird bei Splits nur die neueste/jüngste Namensform verwendet."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Litoměřice"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1085229823", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1085229823", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1085229823", "source": "GND"}], "variant_access_point": ["Stadt Leitmeritz", "Leütmaritz", "Statt Leütmaritz", "Litoměřice (-XX.05.1945)"], "authorized_access_point": "Leitmeritz"} 1 +2024-09-11 09:12:03.382628 2024-09-11 09:12:03.382631 e25357d6-845b-43df-ae70-dd0ce57d6d9e {"md5": "5ec92eb62ec3888d62ad5e44d52d0593", "pid": "1082797251", "note": [{"label": ["archINFORM - http://deu.archinform.net/projekte/1110.htm", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Stuttgarter_Fernsehturm&oldid=151349493"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Stuttgart"}, {"authorized_access_point": "Stuttgart-Degerloch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1082797251", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1082797251", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1082797251", "source": "GND"}], "variant_access_point": ["Stuttgarter Fernsehturm (Stuttgart)", "Stuttgarter Fernsehturm (Stuttgart-Degerloch)"], "authorized_access_point": "Fernsehturm Stuttgart (Stuttgart)"} 1 +2024-09-11 09:12:03.453083 2024-09-11 09:12:03.453091 f3a372d5-3f2d-491b-9cde-4fa631af9508 {"md5": "84f49d5301a6383c09959d5f03d42126", "pid": "1082520101", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Idyllische_Stra%C3%9Fe"], "noteType": "dataSource"}, {"label": ["seit 1967 bestehende, 130 km lange Ferienstraße im Naturpark Schwäbisch-Fränkischer Wald in Baden Württemberg. Rundkurs von Welzheim über Gaildorf und Wüstenrot nach Welzheim."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Welzheim"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1082520101", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1082520101", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1082520101", "source": "GND"}], "authorized_access_point": "Idyllische Straße"} 1 +2024-09-11 09:12:03.532485 2024-09-11 09:12:03.532489 4b136454-c212-4ee1-83e0-522f8fbe5eb2 {"md5": "335dce96c07399c2b716de481e8038a0", "pid": "1082153850", "note": [{"label": ["Internet - https://www.pizbube.ch/produkt/BC1E395D0E02F0325F3E329DF5C9EB51#.VrStslJRG70"], "noteType": "dataSource"}, {"label": ["760 km langes slowakisches Teilstück des Europäischen Fernwanderweg 8"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Europäischer Fernwanderweg 8"}], "related": [{"authorized_access_point": "Devin (Slowakei)"}, {"authorized_access_point": "Duklapass"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1082153850", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1082153850", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1082153850", "source": "GND"}], "authorized_access_point": "Weg der Helden"} 1 +2024-09-11 09:12:03.604812 2024-09-11 09:12:03.60482 39c87a5c-9821-4f0b-b6a9-c3ff79bcbc69 {"md5": "0bdeab4c6d6355c9a1d50b4eef0fed37", "pid": "1082012033", "note": [{"label": ["Internet - http://www.salzalpensteig.com/salzalpensteig.html"], "noteType": "dataSource"}, {"label": ["2015 eröffneter Weitwanderweg (230km), von Chiemsee und Chiemgau, über Bad Reichenhall, Berchtesgaden und den Salzburger Tennengau bis in die Welterberegion Dachstein-Salzkammergut reicht der Premiumwanderweg."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Prien a. Chiemsee"}, {"authorized_access_point": "Obertraun"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1082012033", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1082012033", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1082012033", "source": "GND"}], "variant_access_point": ["Salzalpensteig", "Salzalpen-Steig"], "authorized_access_point": "SalzAlpenSteig"} 1 +2024-09-11 09:12:03.670468 2024-09-11 09:12:03.670471 791a20ad-6453-4a06-a5cc-c2ab0adae15c {"md5": "05c8af2b98cbb4144e3be678874f43f9", "pid": "1082001430", "note": [{"label": ["Ältestes Kricket-Stadion Indiens"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kalkutta"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1082001430", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1082001430", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1082001430", "source": "GND"}], "variant_access_point": ["Eden Gardens (Kalkutta)", "Rañji Sṭeḍiẏāma (Kalkutta)", "Īḍena Gārḍensa (Kalkutta)"], "authorized_access_point": "Ranji Stadium (Kalkutta)"} 1 +2024-09-11 09:12:03.741557 2024-09-11 09:12:03.741561 fa6d321a-292a-4c51-a381-06b01be5a0db {"md5": "eca9f673d5129166514cf141edf179bb", "pid": "1081845031", "note": [{"label": ["Armenanstalt seit 1798; abgebrannt 1885"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Frutigen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081845031", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081845031", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081845031", "source": "GND"}], "variant_access_point": ["Ehemalige Burg Tellenburg (Frutigen)"], "authorized_access_point": "Burgruine Tellenburg (Frutigen)"} 1 +2024-09-11 09:12:03.813145 2024-09-11 09:12:03.81315 0a4e76be-d8a6-4b6f-bb8d-fc1274f63796 {"md5": "b1bbe3471fcab4f289e2a32d3b55ddda", "pid": "1081844973", "note": [{"label": ["Burg erbaut im 12. Jh.; ab 1874 Schulheim"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Erlach (Kanton Bern)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081844973", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081844973", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081844973", "source": "GND"}], "variant_access_point": ["Schulheim Schloss Erlach (Erlach, Kanton Bern)", "Burg Erlach (Erlach, Kanton Bern)"], "authorized_access_point": "Schloss Erlach (Erlach, Kanton Bern)"} 1 +2024-09-11 09:12:03.872525 2024-09-11 09:12:03.872533 5c83815c-3ae9-46db-920b-e6190176673c {"md5": "27bc83f14b2821626efb5b1705b00f77", "pid": "1081842474", "note": [{"label": ["Burg vermutlich im 13. Jh. durch die Herren von Biederthal gegründet"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kleinlützel"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081842474", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081842474", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081842474", "source": "GND"}], "variant_access_point": ["Burg Blauenstein (Kleinlützel)"], "authorized_access_point": "Burgruine Blauenstein (Kleinlützel)"} 1 +2024-09-11 09:12:03.942883 2024-09-11 09:12:03.942887 bd93891b-180d-4055-8efa-3918dba0c9e6 {"md5": "ebcec031a7718fa85f0d3e0039ab6873", "pid": "1081839082", "note": [{"label": ["Erstellt im 13. Jh. als Burg, schrittweiser Umbau in eine Schlossanlage"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Toffen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081839082", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081839082", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081839082", "source": "GND"}], "variant_access_point": ["Burg Toffen (Toffen)"], "authorized_access_point": "Schloss Toffen (Toffen)"} 1 +2024-09-11 09:12:04.163971 2024-09-11 09:12:04.163974 85ee4b04-c6eb-48fb-aa2a-737d61aad51a {"md5": "a980aafafb01da4768b6e21613887648", "pid": "1081838779", "note": [{"label": ["Herrschaftssitz bis 1798"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Belp"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081838779", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081838779", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081838779", "source": "GND"}], "authorized_access_point": "Schloss Belp (Belp)"} 1 +2024-09-11 09:12:04.217447 2024-09-11 09:12:04.217449 4278aa42-4602-42d2-8425-5291c33ba121 {"md5": "6c36e6374ade724c9fecdbac3749ad47", "pid": "1081838655", "note": [{"label": ["Schloss Wyl - http://www.schloss-wyl.ch/weblica/index.html"], "noteType": "dataSource"}, {"label": ["Nach dem Brand 1546 Ausbau der mittelalterlichen Burg zum Schloss"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Schlosswil"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081838655", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081838655", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081838655", "source": "GND"}], "variant_access_point": ["Schloss Wil (Schlosswil)", "Burg Wyl (Schlosswil)", "Burg Wil (Schlosswil)"], "authorized_access_point": "Schloss Wyl (Schlosswil)"} 1 +2024-09-11 09:12:04.303882 2024-09-11 09:12:04.303885 ab8fa2fb-405e-4c23-9a1e-0056a9babd3c {"md5": "4471682b30770d041f0341e9e742acd1", "pid": "1081838507", "note": [{"label": ["Ab 1866 Armenanstalt; seit 1892 Frauen-Justizvollzugsanstalt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Hindelbank"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081838507", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081838507", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081838507", "source": "GND"}], "variant_access_point": ["Gebäude der Anstalten Hindelbank (Hindelbank)", "Gebäude der Zwangsanstalt für Weiber (Hindelbank)"], "authorized_access_point": "Schloss Hindelbank (Hindelbank)"} 1 +2024-09-11 09:12:04.37271 2024-09-11 09:12:04.372713 a6cb5227-4309-47c6-bbeb-6a7aa264db7e {"md5": "ef9305b2fdd4d9a3b82ea7e0dd54109f", "pid": "1081838396", "note": [{"label": ["Seit 1131 nachgewiesen; 1835-1928 Erziehungsanstalt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Trachselwald"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081838396", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081838396", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081838396", "source": "GND"}], "authorized_access_point": "Schloss Trachselwald"} 1 +2024-09-11 09:12:04.437179 2024-09-11 09:12:04.437183 10342be1-bc3e-42c2-adf1-c7e919f7ec05 {"md5": "00f8183a7fae5ad315d1e75cdaa733c5", "pid": "1081838310", "note": [{"label": ["1175 erstmals erwähnt; Bauten aus mehreren Jahrhunderten über mittelalterlichen Burg- und Klosterfundamenten; seit 1893 ausschliesslich Gefängnis"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Krauchthal"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081838310", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081838310", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081838310", "source": "GND"}], "authorized_access_point": "Schloss Thorberg (Krauchthal)"} 1 +2024-09-11 09:12:08.393058 2024-09-11 09:12:08.393061 529ecf03-ff3c-41dd-b4fe-102cc46db45c {"md5": "9547503e54da86f639f31a979d2dc884", "pid": "106050216X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/106050216X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)106050216X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)106050216X", "source": "GND"}], "authorized_access_point": "Weinbach (Fluss)"} 1 +2024-09-11 09:12:04.512846 2024-09-11 09:12:04.512851 0022a9af-e9ed-408c-8f8e-767e3c62750c {"md5": "9f9e00ba4588c8af57a40666f0844280", "pid": "1081838167", "note": [{"label": ["Bereits 1175 erwähnt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Utzigen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081838167", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081838167", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081838167", "source": "GND"}], "authorized_access_point": "Schloss Utzigen (Utzigen)"} 1 +2024-09-11 09:12:04.585229 2024-09-11 09:12:04.585233 091679aa-7b11-4341-a3be-19d8d2ef2bae {"md5": "a3ef89c61852016a3a46ca278bdde8c4", "pid": "1081838051", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Aarwangen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081838051", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081838051", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081838051", "source": "GND"}], "authorized_access_point": "Schloss Aarwangen (Aarwangen)"} 1 +2024-09-11 09:12:04.650108 2024-09-11 09:12:04.650111 214a6130-5783-4946-ac54-bb4d902176a0 {"md5": "1c37585a2aa09f02f8f147db6ece5b51", "pid": "1081330236", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/wiki/Norbury_Park"], "noteType": "dataSource"}, {"label": ["Herrenhaus und Park in der Nähe von Leatherhead"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Leatherhead"}, {"authorized_access_point": "Dorking"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081330236", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081330236", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081330236", "source": "GND"}], "variant_access_point": ["Norbury Park (Leatherhead)"], "authorized_access_point": "Norbury Park"} 1 +2024-09-11 09:12:04.715963 2024-09-11 09:12:04.715967 2babe7c0-f3c8-4ef8-8dde-cb18d7739402 {"md5": "59497fa7f0324ef310985d523bb23ef6", "pid": "1081212918", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081212918", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081212918", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081212918", "source": "GND"}], "authorized_access_point": "Kurtschau - Region"} 1 +2024-09-11 09:12:04.791483 2024-09-11 09:12:04.791488 0651217d-1c23-4222-ab0a-f74676036281 {"md5": "6a612563893eaf0ed001cfa0fdb2b531", "pid": "1081097930", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1081097930", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1081097930", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1081097930", "source": "GND"}], "authorized_access_point": "Mockern - Region"} 1 +2024-09-11 09:12:04.862227 2024-09-11 09:12:04.86223 3e10e7fa-3861-474d-894a-848a71ca4cd3 {"md5": "db599fb9a10adf1dd4e0b9018be2c0c9", "pid": "1079692916", "note": [{"label": ["Bucht in der Chilkat Inlet, Alaska"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Alaska"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1079692916", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1079692916", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1079692916", "source": "GND"}], "authorized_access_point": "Pyramid Harbor"} 1 +2024-09-11 09:12:04.931268 2024-09-11 09:12:04.931272 d313a73d-723c-4f82-95ae-4f0727a5a293 {"md5": "5b7bd54b85cbfd6e5de691656625bec2", "pid": "1079568352", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Laurentiuskirche_(Arnoldshain)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Schmitten (Hochtaunuskreis)"}, {"authorized_access_point": "Arnoldshain"}, {"authorized_access_point": "Schmitten-Arnoldshain"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1079568352", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1079568352", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1079568352", "source": "GND"}], "variant_access_point": ["Laurentiuskirche (Arnoldshain)", "Evangelische Pfarrkirche Sankt Laurentius (Schmitten, Hochtaunuskreis)", "Ev. Pfarrkirche St. Laurentius (Schmitten, Hochtaunuskreis)"], "authorized_access_point": "Laurentiuskirche (Schmitten, Hochtaunuskreis)"} 1 +2024-09-11 09:12:05.030507 2024-09-11 09:12:05.030511 e1256213-80a2-4d7a-8981-80ed76b95558 {"md5": "1d82ff5d1897bdf8a2b9aa0424cf4a7f", "pid": "1078131902", "note": [{"label": ["Internet - http://www.goeppingen.de/,Lde/start/Unsere+Stadt/Alter+Friedhof+an+Oberhofen.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Göppingen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1078131902", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1078131902", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1078131902", "source": "GND"}], "authorized_access_point": "Alter Friedhof an Oberhofen (Göppingen)"} 1 +2024-09-11 09:12:05.10457 2024-09-11 09:12:05.104574 1f5adec0-aaba-47b2-99a9-ed1137f6d4c3 {"md5": "00794aab7f0d299485faad11e693e354", "pid": "1077893450", "note": [{"label": ["Internet - http://kocher-jagst-trail.de/content.php?cont_id=1&src=1&la=de"], "noteType": "dataSource"}, {"label": ["Fernwanderweg (ca. 200km), der aus den Abschnitten Jagststeig, Bühlersteig und Kochersteig besteht"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1077893450", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1077893450", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1077893450", "source": "GND"}], "variant_access_point": ["Kocher-Jagst-Wanderweg"], "authorized_access_point": "Kocher-Jagst-Trail"} 1 +2024-09-11 09:12:05.16154 2024-09-11 09:12:05.161544 9344f34d-590f-48ef-9a4f-cdd2f6649e59 {"md5": "a23b2fac88631f327ccaeedca06887c0", "pid": "1077053320", "note": [{"label": ["Aus einer Hofschaft hervorgegangene Ortschaft in der Bürgermeisterei Leichlingen, die 1856 das Stadtrecht erhielt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Leichlingen-Weltersbach"}], "related": [{"authorized_access_point": "Leichlingen (Rheinland)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1077053320", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1077053320", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1077053320", "source": "GND"}], "variant_access_point": ["Weltersbach (Leichlingen)"], "authorized_access_point": "Weltersbach (Leichlingen (Rheinland))"} 1 +2024-09-11 09:12:05.217147 2024-09-11 09:12:05.217152 c298482f-6cb9-4783-af27-5d1852a1b3c9 {"md5": "0f32116c1cca6607f7394801ebaf2da9", "pid": "1077053185", "note": [{"label": ["Seit 1856 Stadtteil von Leichlingen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leichlingen (Rheinland)"}, {"authorized_access_point": "Weltersbach (Leichlingen (Rheinland))"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1077053185", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1077053185", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1077053185", "source": "GND"}], "authorized_access_point": "Leichlingen-Weltersbach"} 1 +2024-09-11 09:12:05.269934 2024-09-11 09:12:05.269938 b9f2793d-0fd9-42ad-8f52-eb2484c8ebbb {"md5": "62774b3323c873e84dc282e452d14290", "pid": "107699847X", "note": [{"label": ["Gebiet am Fluss Szreniawa"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/107699847X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)107699847X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)107699847X", "source": "GND"}], "variant_access_point": ["Szreniawa (Fluss)"], "authorized_access_point": "Szreniawa-Gebiet"} 1 +2024-09-11 09:12:05.346162 2024-09-11 09:12:05.34617 d487bced-6e27-49ae-b88f-12236009dcda {"md5": "0d388f6f8c419c0245fcd82b5a4185fe", "pid": "1076027032", "note": [{"label": ["Künstlich eingehauene Gänge und Kammern in einer Felswand"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Goldbach (Überlingen)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1076027032", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1076027032", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1076027032", "source": "GND"}], "variant_access_point": ["Heidenlöcher (Goldbach, Überlingen)"], "authorized_access_point": "Heidenhöhlen (Goldbach, Überlingen)"} 1 +2024-09-11 09:12:05.41924 2024-09-11 09:12:05.419244 c03f57de-ad82-412a-adf7-550121a1809e {"md5": "002adfbc6238a60b48e4f28c412a8bbe", "pid": "1075827361", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=Dauj%C4%97nai&oldid=1157247700"], "noteType": "dataSource"}, {"label": ["Kleinstadt im Südosten Litauens"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1075827361", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1075827361", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1075827361", "source": "GND"}], "authorized_access_point": "Daujėnai"} 1 +2024-09-11 09:12:05.489711 2024-09-11 09:12:05.489715 26706095-acca-4964-9cef-12131b2c65f3 {"md5": "d9acc6faa87141d76a8d689fd91e80f6", "pid": "1075220467", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Schatzhofen&oldid=237597866"], "noteType": "dataSource"}, {"label": ["Saalkirche mit Chorturm, Chor romanisch, 12. Jahrhundert"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Furth-Schatzhofen"}, {"authorized_access_point": "Furth (Landkreis Landshut)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1075220467", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1075220467", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1075220467", "source": "GND"}], "variant_access_point": ["St. Michael (Furth, Landkreis Landshut)", "Sankt Michael (Furth-Schatzhofen)", "St. Michael (Furth-Schatzhofen)", "Sankt Michael Schatzhofen"], "authorized_access_point": "Sankt Michael (Furth, Landkreis Landshut)"} 1 +2024-09-11 09:12:05.600051 2024-09-11 09:12:05.60006 4a4f21ad-ac8d-40fb-95a4-6b9c435f79c5 {"md5": "27009ab92ec27df86c4141d679d8bece", "pid": "1074377397", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Rumbach_(Ruhr)"], "noteType": "dataSource"}, {"label": ["7,4 Kilometer langer, rechter Zufluss der Ruhr in Mülheim an der Ruhr"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1074377397", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1074377397", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1074377397", "source": "GND"}], "variant_access_point": ["Ruhmbach"], "authorized_access_point": "Rumbach (Fluss)"} 1 +2024-09-11 09:12:05.672965 2024-09-11 09:12:05.672968 07f1fc7b-937a-4ea2-8f54-e1e57ba30e19 {"md5": "a75c8dcafdeb1e45a3fdf74ae5545eb5", "pid": "1074316908", "note": [{"label": ["Internet - http://www.emscher-weg.de/route/emscher-weg/"], "noteType": "dataSource"}, {"label": ["führt von der Quelle der Emscher in Holzwickede 101 Kilometer bis zu ihrer Mündung in den Rhein in Dinslaken"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Holzwickede"}, {"authorized_access_point": "Dinslaken"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1074316908", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1074316908", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1074316908", "source": "GND"}], "variant_access_point": ["Emscherweg", "Emscherradweg"], "authorized_access_point": "Emscher-Weg"} 1 +2024-09-11 09:12:05.748059 2024-09-11 09:12:05.748064 86c0b22f-81a9-4e9c-b165-4c429e3dc7f4 {"md5": "213ce20dd15349c31b39ea47ac6eebc5", "pid": "107399077X", "note": [{"label": ["Internet - http://www.neisse-nisa-nysa.org/index.php?id=91"], "noteType": "dataSource"}, {"label": ["250 km langer Radfernweg durch die Sächsische und Böhmische Schweiz, das Zittauer Gebirge, das Isergebirge und das Riesengebirge"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Bad Schandau"}, {"authorized_access_point": "Chełmsko Śląskie"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/107399077X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)107399077X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)107399077X", "source": "GND"}], "variant_access_point": ["Rübezahlradweg"], "authorized_access_point": "Rübezahl-Radweg"} 1 +2024-09-11 09:12:06.512422 2024-09-11 09:12:06.512432 ae97f9a1-6c73-436f-9f7f-dd97679a0c04 {"md5": "1537270bdacc0804c65a4a62c36f5ec5", "pid": "1069803782", "note": [{"label": ["Ort im Kreis Ostholstein, Amt Oldenburg-Land, slawische Gründung"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kreis Ostholstein"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1069803782", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1069803782", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1069803782", "source": "GND"}], "authorized_access_point": "Heringsdorf (Kreis Ostholstein)"} 1 +2024-09-11 09:12:05.837575 2024-09-11 09:12:05.837579 a35d60fe-cc0a-4ce1-a138-d81d73535fee {"md5": "af9a62324ab0af8ac2b415d8e18aa01a", "pid": "1073950220", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Lahntalradweg"], "noteType": "dataSource"}, {"label": ["245 km langer Radfernweg in Nordrhein-Westfalen, Hessen und Rheinland-Pfalz"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Netphen"}, {"authorized_access_point": "Lahnstein"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1073950220", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1073950220", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1073950220", "source": "GND"}], "variant_access_point": ["Lahntal-Radweg", "Lahnradwanderweg"], "authorized_access_point": "Lahntalradweg"} 1 +2024-09-11 09:12:05.917515 2024-09-11 09:12:05.917524 62586bd7-345a-4e96-9a88-a6f96a99e1ad {"md5": "9777abca2970d0ef5492ad5cab3441b9", "pid": "107373157X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Baden (Niederösterreich)"}, {"authorized_access_point": "Schloss Weilburg (Baden, Niederösterreich)"}, {"authorized_access_point": "Doblhoffpark (Baden, Niederösterreich)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/107373157X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)107373157X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)107373157X", "source": "GND"}], "authorized_access_point": "Schloss Weilburg (Baden, Niederösterreich) - Wasserspeier"} 1 +2024-09-11 09:12:05.989623 2024-09-11 09:12:05.989627 afc63d61-6367-4608-a217-333d200d798c {"md5": "2c5b09ef1e6fdf1c655035e8c2e3636b", "pid": "1073724549", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Baden (Niederösterreich)"}, {"authorized_access_point": "Schloss Weilburg (Baden, Niederösterreich)"}], "related": [{"authorized_access_point": "Ehemaliges Frauenbad (Baden, Niederösterreich)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1073724549", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1073724549", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1073724549", "source": "GND"}], "variant_access_point": ["Schloss Weilburg (Baden, Niederösterreich)"], "authorized_access_point": "Schloss Weilburg (Baden, Niederösterreich) - Flora und Zephyr mit einem Kinde"} 1 +2024-09-11 09:12:06.06438 2024-09-11 09:12:06.064385 07ef4adc-7e39-447c-aad3-9650fc0293f9 {"md5": "7520f249b86f781fe556506d5a433717", "pid": "107362062X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Vr%C3%A1tna-Tal"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kleine Fatra"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/107362062X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)107362062X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)107362062X", "source": "GND"}], "variant_access_point": ["Vratna-Tal", "Vratne-Tal", "Vrátna-Tal"], "authorized_access_point": "Vratné-Tal"} 1 +2024-09-11 09:12:06.119112 2024-09-11 09:12:06.119116 705e4489-e11c-4a27-9253-9c84fe7beb51 {"md5": "8ee3ebd238f45d9de878238a681e0c44", "pid": "1073267830", "note": [{"label": ["dritthöchster Gipfel der Silvrettagruppe und höchster Berg Vorarlbergs"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Silvrettagruppe"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1073267830", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1073267830", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1073267830", "source": "GND"}], "authorized_access_point": "Piz Buin"} 1 +2024-09-11 09:12:06.177138 2024-09-11 09:12:06.177141 57db4382-0113-4d28-a9bf-8c8cb44f7de8 {"md5": "e2d9254a133065d7b9852daa104bb27a", "pid": "107283314X", "note": [{"label": ["Spätklassizistisches Gebäude mit Mittel- und Seitenrisaliten"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Hausen am Albis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/107283314X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)107283314X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)107283314X", "source": "GND"}], "variant_access_point": ["Kaltwasser-Heilanstalt Albisbrunn (Hausen am Albis)", "Wasser-Heil-Anstalt Albisbrunn (Hausen am Albis)", "Bad Albisbrunn (Hausen am Albis)"], "authorized_access_point": "Wasserheilanstalt Albisbrunn (Hausen am Albis)"} 1 +2024-09-11 09:12:06.243905 2024-09-11 09:12:06.243916 84331057-4979-4e81-9025-8d280a597d64 {"md5": "6c9d7c7bf1e8e06984423ae7aae660e6", "pid": "1071872435", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Sanntal"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1071872435", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1071872435", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1071872435", "source": "GND"}], "variant_access_point": ["Oberes Sanntal", "Obere Sann"], "authorized_access_point": "Obere-Sann-Tal"} 1 +2024-09-11 09:12:06.333999 2024-09-11 09:12:06.334009 ad09d8b9-afc9-4381-98c7-3b080c73374b {"md5": "a5958ccf546796fe94bf9176ceb17779", "pid": "1071862391", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Bahnstrecke_Zgorzelec%E2%80%93Wa%C5%82brzych"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Görlitz"}, {"authorized_access_point": "Wałbrzych"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1071862391", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1071862391", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1071862391", "source": "GND"}], "variant_access_point": ["Bahnstrecke Zgorzelec–Wałbrzych"], "authorized_access_point": "Eisenbahnlinie Görlitz-Wałbrzych"} 1 +2024-09-11 09:12:06.419452 2024-09-11 09:12:06.419461 d06f30f2-4a2b-4467-be5b-994ad6eb9dc8 {"md5": "4a55f2d2c43ea96c5e059e3d1ccfe1ea", "pid": "1070113026", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Aeugst am Albis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1070113026", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1070113026", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1070113026", "source": "GND"}], "variant_access_point": ["Wengi (Aeugst am Albis)", "Wängibad (Aeugst am Albis)"], "authorized_access_point": "Wängi (Aeugst am Albis)"} 1 +2024-09-11 09:12:06.619312 2024-09-11 09:12:06.619317 3fac8848-f513-4daa-a0fd-a4ed6c1c5cde {"md5": "8829c37af28156ae28fb727155cce129", "pid": "1068118490", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Rheinradweg"], "noteType": "dataSource"}, {"label": ["ca. 1.230 km langer Radfernweg, der durch fünf Staaten vom Quellgebiet des Rheins in den Schweizer Alpen am Oberalppass bis zur Mündung bei Rotterdam führt."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Oberalppass"}, {"authorized_access_point": "Rotterdam"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1068118490", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1068118490", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1068118490", "source": "GND"}], "variant_access_point": ["Rhein-Radweg"], "authorized_access_point": "Rheinradweg"} 1 +2024-09-11 09:12:06.68285 2024-09-11 09:12:06.682853 0b49abcd-b448-4c66-b060-1274a8888ba5 {"md5": "6251414970800690072c3ff9dab46fc7", "pid": "1067883703", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Göbschelwitz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1067883703", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1067883703", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1067883703", "source": "GND"}], "variant_access_point": ["Göbschelwitz (Leipzig)"], "authorized_access_point": "Leipzig-Göbschelwitz"} 1 +2024-09-11 09:12:06.763226 2024-09-11 09:12:06.763235 a1f44dcc-2775-43b5-b408-4cc6ea76e855 {"md5": "5e0b05b7c7a092d0e10dcf9055354faa", "pid": "1067878831", "note": [{"label": ["Internet - http://www.loire-radweg.org/"], "noteType": "dataSource"}, {"label": ["800 km langer Radfernweg durch die Regionen Centre und Pays de la Loire"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Nevers"}, {"authorized_access_point": "Saint-Brevin-les-Pins"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1067878831", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1067878831", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1067878831", "source": "GND"}], "variant_access_point": ["La Loire à Vélo"], "authorized_access_point": "Loire-Radweg"} 1 +2024-09-11 09:12:06.842706 2024-09-11 09:12:06.842711 3ae7f557-38b5-4d8f-8cf2-6b1f33117da0 {"md5": "11ac1d0355ee5755cc2752b37d3b21ec", "pid": "1067860142", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Hirschfeld (Leipzig)"}, {"authorized_access_point": "Hirschfeld-Kleinpösna"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1067860142", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1067860142", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1067860142", "source": "GND"}], "variant_access_point": ["Hirschfeld (Leipzig)"], "authorized_access_point": "Leipzig-Hirschfeld"} 1 +2024-09-11 09:12:06.920532 2024-09-11 09:12:06.92054 238a0625-79d2-4339-88bc-c109ff61ca05 {"md5": "02d0719b010c855d72df49fd7e886c5b", "pid": "1067637184", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Rehbach (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1067637184", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1067637184", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1067637184", "source": "GND"}], "variant_access_point": ["Rehbach (Leipzig)"], "authorized_access_point": "Leipzig-Rehbach"} 1 +2024-09-11 09:12:06.994947 2024-09-11 09:12:06.994956 71e3babf-1d2e-4275-aec7-1b4c1f76b183 {"md5": "ef4be758c98465c2c600b96ec655e405", "pid": "1067636757", "note": [{"label": ["Ortsteil von Leipzig seit 1993"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Hartmannsdorf (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1067636757", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1067636757", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1067636757", "source": "GND"}], "variant_access_point": ["Hartmannsdorf (Leipzig)"], "authorized_access_point": "Leipzig-Hartmannsdorf"} 1 +2024-09-11 09:12:07.067197 2024-09-11 09:12:07.067206 283f166c-5706-4eae-a475-939c2e769a54 {"md5": "8603ca513138b88ee75ba0bd6dadcedb", "pid": "1067274006", "note": [{"label": ["Internet - http://www.heidschnuckenweg.de/"], "noteType": "dataSource"}, {"label": ["223 km lang, 2012 eingeweiht"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Hamburg-Fischbek"}, {"authorized_access_point": "Celle"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1067274006", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1067274006", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1067274006", "source": "GND"}], "authorized_access_point": "Heidschnuckenweg"} 1 +2024-09-11 09:12:07.136304 2024-09-11 09:12:07.136308 82ab6f3f-a626-4e16-abee-d7eba6bb2dfd {"md5": "c0f150a6b2098b1f623b91a651facd45", "pid": "1067272488", "note": [{"label": ["Internet: - http://www.kocher-jagst.de/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1067272488", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1067272488", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1067272488", "source": "GND"}], "authorized_access_point": "Kocher-Jagst-Radweg"} 1 +2024-09-11 09:12:07.192451 2024-09-11 09:12:07.192455 70281fbe-fb93-485f-a4e0-445c22574f9d {"md5": "6f79fb583bbb5a0944c0e6069fc301ca", "pid": "1064960243", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Hirschfeld-Kleinpösna"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1064960243", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1064960243", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1064960243", "source": "GND"}], "variant_access_point": ["Kleinpösna (Leipzig)"], "authorized_access_point": "Leipzig-Kleinpösna"} 1 +2024-09-11 09:12:08.010518 2024-09-11 09:12:08.010529 0b83932c-4699-434c-b22f-761b9c1b5e4a {"md5": "a022c1ff031eab50db355f832efa8c22", "pid": "1060503611", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Vernířovice"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060503611", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060503611", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060503611", "source": "GND"}], "authorized_access_point": "Grundbach (Vernířovice, Fluss)"} 1 +2024-09-11 09:12:07.251693 2024-09-11 09:12:07.251697 5cc4c01e-062a-41e2-b7e9-9d6a8ea6a226 {"md5": "4556618ef4b0cbf6f6458608b5904138", "pid": "1064714455", "note": [{"label": ["Wikipedia - https://en.wikipedia.org/w/index.php?title=%C5%A0akyna&oldid=1226681026"], "noteType": "dataSource"}, {"label": ["Verwaltungseinheit im Bezirk Šiauliai im Norden Litauens"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1064714455", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1064714455", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1064714455", "source": "GND"}], "variant_access_point": ["Amt Šakynos", "Amt Shakina", "Amt Shakinay", "Amt Szakinów"], "authorized_access_point": "Amt Šakyna"} 1 +2024-09-11 09:12:07.331319 2024-09-11 09:12:07.331323 1394f334-5649-4502-a3dc-dce7a047d9d4 {"md5": "e6106f041615fd1a0e17f9fc4f81510f", "pid": "1064601502", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1064601502", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1064601502", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1064601502", "source": "GND"}], "variant_access_point": ["Canal du Midi"], "authorized_access_point": "Canal du Midi-Gebiet"} 1 +2024-09-11 09:12:07.398161 2024-09-11 09:12:07.398165 b0e7741e-fecf-492c-a6d6-c5b1e1d7e982 {"md5": "b86c71acc8668f725d12ada022bec078", "pid": "1064049419", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Anglesey_Coastal_Path"], "noteType": "dataSource"}, {"label": ["Fernwanderweg (200 km), der rund um die walisische Insel Anglesey führt und Bestandteil des Wales Coast Path ist"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1064049419", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1064049419", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1064049419", "source": "GND"}], "variant_access_point": ["Anglesey Küstenweg"], "authorized_access_point": "Anglesey Coastal Path"} 1 +2024-09-11 09:12:07.467576 2024-09-11 09:12:07.467584 cad88568-0510-429e-842e-071cfdcf406b {"md5": "7b0f7f7201f2924dc67bfac5510b2f87", "pid": "1062979583", "note": [{"label": ["Stadt im Bundesstaat Rio de Janeiro, Brasilien"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1062979583", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1062979583", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1062979583", "source": "GND"}], "variant_access_point": ["Rezende"], "authorized_access_point": "Resende"} 1 +2024-09-11 09:12:07.533336 2024-09-11 09:12:07.53334 71e8e3ba-8007-4af3-a439-13635e31f057 {"md5": "8ba60631421bbd964208af097d4d15f9", "pid": "1062970004", "note": [{"label": ["Geonames - http://www.geonames.org/2796123/helle.html", "Wikipedia - http://de.wikipedia.org/wiki/Hill_(Bach)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1062970004", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1062970004", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1062970004", "source": "GND"}], "variant_access_point": ["Hill (Fluss)"], "authorized_access_point": "Helle (Fluss)"} 1 +2024-09-11 09:12:07.591216 2024-09-11 09:12:07.59122 b185b857-6a96-478a-ab31-97cbe96aacff {"md5": "2dc985649dbf492c36127bdcf32ecea2", "pid": "1062891848", "note": [{"label": ["Nebenfluss der Gera im Stadtgebiet von Arnstadt in Thüringen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1062891848", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1062891848", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1062891848", "source": "GND"}], "variant_access_point": ["Stadtweiße"], "authorized_access_point": "Wilde Weiße"} 1 +2024-09-11 09:12:07.657694 2024-09-11 09:12:07.657698 244339e1-faea-45c0-bbea-d256fdb594f0 {"md5": "628f6a2e3b931a39842eb2378619501b", "pid": "1062531191", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Ole%C5%A1nice_(B%C4%9Bl%C3%A1)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1062531191", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1062531191", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1062531191", "source": "GND"}], "variant_access_point": ["Olešnice (Fluss)", "Elsnitz"], "authorized_access_point": "Białka"} 1 +2024-09-11 09:12:07.714909 2024-09-11 09:12:07.714913 e18bc4cf-53f9-4bf5-be5b-ac6ffbfea36a {"md5": "517a562ed87f69b8c5858a7383400efa", "pid": "1062516109", "note": [{"label": ["Wikipedia - http://en.wikipedia.org/wiki/Hogsmill_River"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1062516109", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1062516109", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1062516109", "source": "GND"}], "authorized_access_point": "Hogsmill River"} 1 +2024-09-11 09:12:07.78597 2024-09-11 09:12:07.785981 fddc5aa6-5980-42bc-9faf-b837e417187a {"md5": "a86686754533bf3c880493e0fe5e3de4", "pid": "1061004198", "note": [{"label": ["Geonames - http://www.geonames.org/3086792/rudawa.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1061004198", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1061004198", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1061004198", "source": "GND"}], "authorized_access_point": "Rudawa (Fluss)"} 1 +2024-09-11 09:12:07.853701 2024-09-11 09:12:07.853704 b329f96f-e70b-4dde-9170-a985c7eb57cc {"md5": "2318279cd1cec865976a573830b1df9f", "pid": "1060849127", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060849127", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060849127", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060849127", "source": "GND"}], "variant_access_point": ["Salamieh area"], "authorized_access_point": "Salamīyah - Region"} 1 +2024-09-11 09:12:07.922764 2024-09-11 09:12:07.922766 ab1dcc4c-6dc8-45f5-aae8-0f2f0fca97f5 {"md5": "1bf23913bea1a86163263a3797034a79", "pid": "106081482X", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Kanzelbach"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/106081482X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)106081482X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)106081482X", "source": "GND"}], "authorized_access_point": "Kanzelbach"} 1 +2024-09-11 09:12:08.472667 2024-09-11 09:12:08.47267 67a1405a-2714-447a-904a-28bf31ddc519 {"md5": "078a82165a0e76056f36b5c2740983a9", "pid": "1060501902", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Gettenbach$vhier erwähnt, Artikel zum Ort Gettenbach!"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060501902", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060501902", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060501902", "source": "GND"}], "authorized_access_point": "Gettenbach (Fluss)"} 1 +2024-09-11 09:12:08.544682 2024-09-11 09:12:08.54469 970efc49-b115-440a-a259-bd997bed595f {"md5": "12ef90d4d2ab2193295a5ead68f02447", "pid": "1060501759", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Ihne_(Fluss)$vhier erwähnt"], "noteType": "dataSource"}, {"label": ["Nebenfluss der Ihne in Nordrhein-Westfalen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060501759", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060501759", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060501759", "source": "GND"}], "authorized_access_point": "Wesebach (Fluss)"} 1 +2024-09-11 09:12:08.609709 2024-09-11 09:12:08.609714 ab404515-f056-4644-856b-041df5eaa6b8 {"md5": "4fca9ca95f50bf849417e7d29dd0f912", "pid": "1060501457", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060501457", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060501457", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060501457", "source": "GND"}], "authorized_access_point": "Windener Teich"} 1 +2024-09-11 09:12:08.676328 2024-09-11 09:12:08.676331 9c59f55c-595d-4c3b-b057-03335c501acb {"md5": "3d083dd3b2c705125e9eaef2e3918a9e", "pid": "106050104X", "note": [{"label": ["Internet - http://www.openstreetmap.org/way/43125912"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/106050104X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)106050104X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)106050104X", "source": "GND"}], "variant_access_point": ["Klingendes Fließ"], "authorized_access_point": "Klingendes Fliess"} 1 +2024-09-11 09:12:08.752269 2024-09-11 09:12:08.752277 7fea4ca7-2349-4a2e-a53f-b21362ecdbcc {"md5": "f8f8482a2cd2f9608aef5237221b9ccc", "pid": "1060419319", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Konstanzer_Ach#Anker:Gunzesrieder_Ach"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060419319", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060419319", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060419319", "source": "GND"}], "authorized_access_point": "Konstanzer Ach"} 1 +2024-09-11 09:12:08.825076 2024-09-11 09:12:08.82508 a253ce7c-3fbb-456f-a4b6-e2d42e63f16c {"md5": "7c5dd90cb1c788e1fe758beac05afae9", "pid": "1060401134", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Park_Babelsberg"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Potsdam"}, {"authorized_access_point": "Potsdam-Babelsberg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060401134", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060401134", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060401134", "source": "GND"}], "variant_access_point": ["Park Babelsberg (Potsdam)"], "authorized_access_point": "Babelsberger Park (Potsdam)"} 1 +2024-09-11 09:12:08.890932 2024-09-11 09:12:08.890936 c2e93b90-6b43-4a11-a4b5-e76276ec2d0a {"md5": "bb1a87831198b4a12048e5f1de5adfa6", "pid": "1060238128", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/%C3%96lbach_(Berkel)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Vreden"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060238128", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060238128", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060238128", "source": "GND"}], "authorized_access_point": "Ölbach (Vreden, Fluss)"} 1 +2024-09-11 09:12:08.95102 2024-09-11 09:12:08.951028 707f2915-1d67-4fba-920f-e6d0099de055 {"md5": "17d35b541365604207d938b05830e297", "pid": "1060132206", "note": [{"label": ["Internet - http://www.anglermap.de/angeln/gewaessersteckbrief_angelkarte.php?id=2546"], "noteType": "dataSource"}, {"label": ["Baggersee östlich von Rheda-Wiedenbrück"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rheda-Wiedenbrück"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060132206", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060132206", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060132206", "source": "GND"}], "variant_access_point": ["Lintler See"], "authorized_access_point": "Linteler See"} 1 +2024-09-11 09:12:09.0275 2024-09-11 09:12:09.027504 1aab78e0-42f2-4ec5-876a-81c32f64d250 {"md5": "0cd7657e220a2313bba38abec0bc8f70", "pid": "1060087367", "note": [{"label": ["Internet - http://domnick.de/", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Sammlung_Domnick&oldid=245473631"], "noteType": "dataSource"}, {"label": ["Privathaus, erbaut für Ottomar Domnick, heute Sitz der Stiftung Domnick, Oberensinger Höhe 4, Nürtingen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Nürtingen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1060087367", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1060087367", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1060087367", "source": "GND"}], "authorized_access_point": "Haus Domnick (Nürtingen)"} 1 +2024-09-11 09:12:09.097564 2024-09-11 09:12:09.097569 00335125-85c4-4ff3-86e2-f616edd35906 {"md5": "35fad652d8fb17511fc8b0c26f359cb6", "pid": "1059448831", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059448831", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059448831", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059448831", "source": "GND"}], "authorized_access_point": "Piwonkerbach"} 1 +2024-09-11 09:12:11.64804 2024-09-11 09:12:11.648045 e18c8596-7dc6-4f7c-a006-4c74412eff8e {"md5": "d759644073371b76ccadbb0fcf0b07aa", "pid": "1058460862", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058460862", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058460862", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058460862", "source": "GND"}], "authorized_access_point": "Kayersbeek"} 1 +2024-09-11 09:12:09.175101 2024-09-11 09:12:09.175105 06992169-ac2f-43b8-ba78-e275a11a1b1e {"md5": "05c26d0db8b6b31f0888b9df462e61c3", "pid": "1059378396", "note": [{"label": ["Internet - http://www.sprengenbeken.nl/images/14voorstondsebeek.jpg"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059378396", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059378396", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059378396", "source": "GND"}], "authorized_access_point": "Voorstondse Beek"} 1 +2024-09-11 09:12:09.232833 2024-09-11 09:12:09.232836 6c9e1e3f-f328-447f-bdc0-c8db51285dbd {"md5": "607c17ee5fc8c855c2040a1e9e9e4615", "pid": "1059376946", "note": [{"label": ["Internet - http://www.sprengenbeken.nl/images/15eerbeeksebeek.jpg"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059376946", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059376946", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059376946", "source": "GND"}], "authorized_access_point": "Gravinnebeek"} 1 +2024-09-11 09:12:09.286342 2024-09-11 09:12:09.286345 67e5386d-abb8-4c60-bca0-eb5e7030efab {"md5": "6461f25733399529ec0b652b42b8e5c3", "pid": "1059359022", "note": [{"label": ["Internet - http://www.sprengenbeken.nl/images/15eerbeeksebeek.jpg"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059359022", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059359022", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059359022", "source": "GND"}], "authorized_access_point": "Coldenhovensebeek"} 1 +2024-09-11 09:12:09.344902 2024-09-11 09:12:09.344906 6cef1ca5-86fe-4dc0-a4d4-928e62e55d80 {"md5": "1ab1d5c21b2bf490e7b5c17d7da2015a", "pid": "1059357755", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059357755", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059357755", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059357755", "source": "GND"}], "authorized_access_point": "Nelson (Neuseeland) - Region"} 1 +2024-09-11 09:12:09.404665 2024-09-11 09:12:09.404668 d5d94ef5-7e3a-481e-a22c-b33fadf6409c {"md5": "e603d531ac0acd0d0e03ee2bb7ec047a", "pid": "1059250454", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Mook"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1059250454", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1059250454", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1059250454", "source": "GND"}], "authorized_access_point": "Molenbeek (Mook, Fluss)"} 1 +2024-09-11 09:12:09.477343 2024-09-11 09:12:09.477348 dd55ae1a-8bf9-4239-8c4d-7a6151b4260c {"md5": "c6d9e7fad3941139df8e240ff95d68c3", "pid": "105914249X", "note": [{"label": ["Geonames - http://www.geonames.org/2750597/mosbeek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/105914249X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)105914249X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)105914249X", "source": "GND"}], "authorized_access_point": "Mosbeek"} 1 +2024-09-11 09:12:09.559132 2024-09-11 09:12:09.559137 36733e0e-b844-4bfc-8afa-5d5097fd68b5 {"md5": "23a995e3fa63ad6ddd279f940df7e1e8", "pid": "1058994743", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058994743", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058994743", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058994743", "source": "GND"}], "authorized_access_point": "Zilverbeek"} 1 +2024-09-11 09:12:09.633417 2024-09-11 09:12:09.633421 832e7c20-cdde-45c7-bcaf-b9bdd3a71c77 {"md5": "c5124d64367855d3c9ae2bc58706763e", "pid": "1058986333", "note": [{"label": ["Geonames - http://www.geonames.org/2756000/esvelderbeek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058986333", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058986333", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058986333", "source": "GND"}], "authorized_access_point": "Esvelderbeek"} 1 +2024-09-11 09:12:09.693156 2024-09-11 09:12:09.69316 ce5c24ed-68c4-444a-ae36-3b33651a61fe {"md5": "e5fd817b09ee09646fc68aff38324da7", "pid": "1058985299", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058985299", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058985299", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058985299", "source": "GND"}], "authorized_access_point": "Papiermolenbeekje"} 1 +2024-09-11 09:12:09.747024 2024-09-11 09:12:09.747029 02f857e8-d797-47a1-b7e2-d3b309a17834 {"md5": "688542f56b6a420c62bd64048fde3809", "pid": "1058984144", "note": [{"label": ["Geonames - http://www.geonames.org/2759405/barneveldsche-beek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058984144", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058984144", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058984144", "source": "GND"}], "variant_access_point": ["Grote Barneveldsebeek"], "authorized_access_point": "Barneveldsche Beek"} 1 +2024-09-11 09:12:09.813579 2024-09-11 09:12:09.813588 f97daf61-aff3-46fa-84af-9571d61becb8 {"md5": "f3c8c492cad61cb421978648bedb7e1c", "pid": "1058973045", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058973045", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058973045", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058973045", "source": "GND"}], "authorized_access_point": "Schoonderbeek"} 1 +2024-09-11 09:12:09.877026 2024-09-11 09:12:09.877031 bf8970a4-ad30-4b66-812c-5921692b1b33 {"md5": "3785a670778effb635efbb00070df7af", "pid": "1058939068", "note": [{"label": ["Geonames - http://www.geonames.org/2754096/hierdensche-beek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058939068", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058939068", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058939068", "source": "GND"}], "variant_access_point": ["Hierdense beek"], "authorized_access_point": "Hierdensche Beek"} 1 +2024-09-11 09:12:09.954076 2024-09-11 09:12:09.954079 dd09168d-fd65-43ef-925c-4bb67200fb35 {"md5": "6a187527281dbf47e47839a415829b42", "pid": "105892978X", "note": [{"label": ["Geonames - http://www.geonames.org/2751673/leuvenumse-beek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/105892978X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)105892978X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)105892978X", "source": "GND"}], "authorized_access_point": "Leuvenumse Beek"} 1 +2024-09-11 09:12:10.01235 2024-09-11 09:12:10.012353 d2b3ab07-260a-4007-9a48-0aeea2d98cde {"md5": "7e6eb92e7f36ee2e5f046b8d91ac64b1", "pid": "1058928732", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058928732", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058928732", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058928732", "source": "GND"}], "variant_access_point": ["Staverdensche Beek"], "authorized_access_point": "Staverdense beek"} 1 +2024-09-11 09:12:10.087152 2024-09-11 09:12:10.087156 e8e082b7-9194-479a-b614-9ae3088c90ad {"md5": "9b988093886b6fd391c778bbe42f00e4", "pid": "1058919954", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Doornspijk"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058919954", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058919954", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058919954", "source": "GND"}], "variant_access_point": ["Papierbeek"], "authorized_access_point": "Papiermolenbeek (Doornspijk, Fluss)"} 1 +2024-09-11 09:12:10.163762 2024-09-11 09:12:10.16377 a7fb9857-d293-4e62-a668-c6e8f9963589 {"md5": "66500e17c9c2efeabecb35c2bec76c02", "pid": "1058918176", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058918176", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058918176", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058918176", "source": "GND"}], "variant_access_point": ["Molecatense Beek"], "authorized_access_point": "Molecatensebeek"} 1 +2024-09-11 09:12:10.239163 2024-09-11 09:12:10.239166 f1621a10-6f03-4e05-ac0c-de67337e81a2 {"md5": "46f4b04c6650f9f9dbfb38b17ec3e166", "pid": "1058899597", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058899597", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058899597", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058899597", "source": "GND"}], "variant_access_point": ["Zuidelijke Horsthoeker beek"], "authorized_access_point": "Zuidelijke Horsthoekerbeek"} 1 +2024-09-11 09:12:10.310304 2024-09-11 09:12:10.310314 70cfc50b-3a06-4965-abd7-4135741f5e34 {"md5": "7dd56faeb4e8a8f0b68133df00bc9f28", "pid": "1058896318", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058896318", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058896318", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058896318", "source": "GND"}], "variant_access_point": ["Noordelijke Horsthoeker beek"], "authorized_access_point": "Noordelijke Horsthoekerbeek"} 1 +2024-09-11 09:12:10.380482 2024-09-11 09:12:10.380487 8443f4ac-9e24-407a-ba3c-f9382a0bccd3 {"md5": "636de965f0d900dc6e1e2b1abf01a4af", "pid": "1058890611", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058890611", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058890611", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058890611", "source": "GND"}], "authorized_access_point": "Middelste Heerderbeek"} 1 +2024-09-11 09:12:10.437377 2024-09-11 09:12:10.43738 fd10487c-9907-4780-ad61-3716dc054100 {"md5": "8d0f0817858f31fcfcf77c7415b568ab", "pid": "1058880373", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058880373", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058880373", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058880373", "source": "GND"}], "authorized_access_point": "Heerderbeek"} 1 +2024-09-11 09:12:10.502439 2024-09-11 09:12:10.502443 ad33ede8-e037-472f-830f-02a731a5cf05 {"md5": "9036feccd4aae17a2a3d33e79afedf4d", "pid": "1058876872", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058876872", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058876872", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058876872", "source": "GND"}], "variant_access_point": ["Dorpse molenbeek", "Dorpermolenbeek"], "authorized_access_point": "Dorpse beek"} 1 +2024-09-11 09:12:10.566151 2024-09-11 09:12:10.566154 6181f28e-db21-45e3-a43c-00496dc19203 {"md5": "2b4a3b5b4dcb97193c65c52eb2a8b102", "pid": "1058840819", "note": [{"label": ["Geonames - http://www.geonames.org/2755688/geelmolensche-beek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058840819", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058840819", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058840819", "source": "GND"}], "variant_access_point": ["Geelmolense beek"], "authorized_access_point": "Geelmolensche Beek"} 1 +2024-09-11 09:12:10.619911 2024-09-11 09:12:10.619914 858e3fcf-d2e1-4705-a3cf-17abc422304b {"md5": "b74d748e8e306f4ecf5e21d0fa582c39", "pid": "1058838512", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Vaassen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058838512", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058838512", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058838512", "source": "GND"}], "authorized_access_point": "Nieuwe Beek (Vaassen, Fluss)"} 1 +2024-09-11 09:12:10.686762 2024-09-11 09:12:10.686764 3e767764-9875-4cfd-8d5a-ebd2337fabd1 {"md5": "1d15434e32546edf1de8058c0f8ff39f", "pid": "1058667343", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058667343", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058667343", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058667343", "source": "GND"}], "variant_access_point": ["Hattemse beek"], "authorized_access_point": "Hartense Molenbeek"} 1 +2024-09-11 09:12:10.748312 2024-09-11 09:12:10.748317 75dadb25-1ac5-4028-bd76-31afcb0da9d8 {"md5": "9f6aa2f6a41f7a802814e5404911b138", "pid": "1058664468", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058664468", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058664468", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058664468", "source": "GND"}], "authorized_access_point": "Groevenbeek"} 1 +2024-09-11 09:12:10.803418 2024-09-11 09:12:10.803421 cf8891e2-20cc-456b-a363-b16aecc1a916 {"md5": "b3a7af9b76b0a424a57901305d17a395", "pid": "1058661396", "note": [{"label": ["Geonames - http://www.geonames.org/6951330/nijmolense-beek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058661396", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058661396", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058661396", "source": "GND"}], "variant_access_point": ["Nijmolense beek", "Nijmolenschebeek"], "authorized_access_point": "Nijmolense Beek"} 1 +2024-09-11 09:12:10.873228 2024-09-11 09:12:10.873231 51d3b876-b4bf-4788-bf06-a8ad3857df6f {"md5": "7375ed3aa9b4f2bba8e4a850979faa2d", "pid": "1058651994", "note": [{"label": ["Geonames - http://www.geonames.org/6951331/smallertse-beek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058651994", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058651994", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058651994", "source": "GND"}], "variant_access_point": ["Smallertse beek"], "authorized_access_point": "Smallertse Beek"} 1 +2024-09-11 09:12:10.94379 2024-09-11 09:12:10.943793 c6cc6c8c-8cd4-4c01-9ddc-299194a6d235 {"md5": "70b3da8e0186ccfd01fc648d35052f9b", "pid": "1058639919", "note": [{"label": ["Geonames - http://www.geonames.org/2746209/tongerensche-beek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058639919", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058639919", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058639919", "source": "GND"}], "variant_access_point": ["Tongerensche beek"], "authorized_access_point": "Tongerensche Beek"} 1 +2024-09-11 09:12:11.021953 2024-09-11 09:12:11.021956 4f7b0f65-2aeb-4833-8e43-e9cc85d5d256 {"md5": "6aec4be0b403bd760f062009076f83dc", "pid": "105863982X", "note": [{"label": ["Geonames - http://www.geonames.org/2748799/paalbeek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/105863982X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)105863982X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)105863982X", "source": "GND"}], "authorized_access_point": "Paalbeek"} 1 +2024-09-11 09:12:11.098767 2024-09-11 09:12:11.098772 0004040a-669a-45f0-9b4a-9318f4ab3aa7 {"md5": "03413282910c8425cb6010872002b27b", "pid": "1058622773", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058622773", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058622773", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058622773", "source": "GND"}], "authorized_access_point": "Wittebeek"} 1 +2024-09-11 09:12:11.16422 2024-09-11 09:12:11.164225 4fbec76c-2dfa-4a46-8244-895ab4bf1b03 {"md5": "8b8f5ef4e75556ac19a0f19ffaafb181", "pid": "1058616684", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058616684", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058616684", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058616684", "source": "GND"}], "authorized_access_point": "Strobroeksbeek"} 1 +2024-09-11 09:12:11.233405 2024-09-11 09:12:11.23341 831b1581-c295-42de-9f14-74893f54874c {"md5": "2a39319f1a0e3a1646f1a368da125747", "pid": "1058616579", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058616579", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058616579", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058616579", "source": "GND"}], "authorized_access_point": "Zilvensebeek"} 1 +2024-09-11 09:12:11.315012 2024-09-11 09:12:11.315022 674357ee-17d5-4615-9a5f-323e8bd331e4 {"md5": "921f568eae463e03b7c25f0cc8776ec3", "pid": "1058583018", "note": [{"label": ["Geonames - http://www.geonames.org/2751520/loenensche-beek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058583018", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058583018", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058583018", "source": "GND"}], "variant_access_point": ["Loenensebeek"], "authorized_access_point": "Loenensche Beek"} 1 +2024-09-11 09:12:11.39776 2024-09-11 09:12:11.397768 d5a566e6-2483-4942-be8c-4fb0cce8d76b {"md5": "005801351bdbb6f265c938fc172cb198", "pid": "1058579045", "note": [{"label": ["Geonames - http://www.geonames.org/2759341/beekbergsche-beek.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058579045", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058579045", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058579045", "source": "GND"}], "variant_access_point": ["Beekbergsebeek"], "authorized_access_point": "Beekbergsche Beek"} 1 +2024-09-11 09:12:11.477839 2024-09-11 09:12:11.477843 f73d9198-7cfb-44c1-a942-10edefff2118 {"md5": "b70380dc5f6abb18406bda3fa94165a7", "pid": "1058463993", "note": [{"label": ["Ortsteil von Leipzig seit 1997; seit 1992 zu Seehausen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Seehausen-Gottscheina"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058463993", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058463993", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058463993", "source": "GND"}], "variant_access_point": ["Gottscheina (Leipzig)"], "authorized_access_point": "Leipzig-Gottscheina"} 1 +2024-09-11 09:12:11.555021 2024-09-11 09:12:11.555023 9d453b86-f9e3-406a-b164-9267bb093cc8 {"md5": "e719a38bd5c23f4d5897a242c5157a72", "pid": "1058463896", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Hohenheida"], "noteType": "dataSource"}, {"label": ["Stadtteil von Leipzig seit 1997; 1992 zu Seehausen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Seehausen-Hohenheida"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058463896", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058463896", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058463896", "source": "GND"}], "variant_access_point": ["Hohenheida (Leipzig)"], "authorized_access_point": "Leipzig-Hohenheida"} 1 +2024-09-11 09:12:11.706335 2024-09-11 09:12:11.706338 79eb50f1-45f3-46df-9a6b-36bafcb49612 {"md5": "51916146ccd22c58f6b856258d94b4a2", "pid": "1058460293", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058460293", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058460293", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058460293", "source": "GND"}], "authorized_access_point": "Winkewijert"} 1 +2024-09-11 09:12:11.761885 2024-09-11 09:12:11.761894 72a1c82f-9112-4e4a-bb8e-b4fdaf07f776 {"md5": "113465cef40521705828b527a0b1bbdd", "pid": "1058395726", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058395726", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058395726", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058395726", "source": "GND"}], "authorized_access_point": "Ugchelsebeek"} 1 +2024-09-11 09:12:11.826769 2024-09-11 09:12:11.826774 901ca7f9-2b41-451e-99e9-e02b4db43a42 {"md5": "b5a1ecffbf081f14044ac6eaa5d7a6f1", "pid": "1058041142", "note": [{"label": ["Obelisk auf dem Lousberg bei Aachen, errichtet 1807 zu Ehren des franz. Vermessers Jean Joseph Tranchot. Trigonometrischer Punkt 1. Ordnung des linksrheinischen Dreiecksnetzes 1801/13"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Aachen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1058041142", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1058041142", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1058041142", "source": "GND"}], "variant_access_point": ["Tranchot-Obelisk (Lousberg)"], "authorized_access_point": "Tranchot-Obelisk (Aachen)"} 1 +2024-09-11 09:12:11.896375 2024-09-11 09:12:11.896379 6e488794-d87c-4bc3-bfd5-0687c0d00c9a {"md5": "10a88562d35cdb101474ccae4a8f2f15", "pid": "1057942928", "note": [{"label": ["Stadtteil von Grünberg im Landkreis Gießen, Hessen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Grünberg (Landkreis Gießen)"}, {"authorized_access_point": "Lumda"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1057942928", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1057942928", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1057942928", "source": "GND"}], "variant_access_point": ["Grünberg (Landkreis Gießen-Lumda)", "Lumda (Grünberg-Lumda)"], "authorized_access_point": "Grünberg-Lumda"} 1 +2024-09-11 09:12:11.966715 2024-09-11 09:12:11.966719 29e168e7-36c0-44af-9d17-a9d6b485c865 {"md5": "565eaae9ad2dc5b87fbc8abae8a97209", "pid": "1056973714", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Sauberg_(Erzgebirge)"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Erzgebirge"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1056973714", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1056973714", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1056973714", "source": "GND"}], "authorized_access_point": "Sauberg (Erzgebirge, Berg)"} 1 +2024-09-11 09:12:12.037755 2024-09-11 09:12:12.037759 c4e998e3-1435-455a-897e-880b895140de {"md5": "bed3d4d0339aeeeafb8ef2b9306ea7a9", "pid": "1055068716", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Kosov%C3%BD_potok"], "noteType": "dataSource"}, {"label": ["am Oberlauf auch Wonschabach, Wunschelbach, Altbach"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1055068716", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1055068716", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1055068716", "source": "GND"}], "variant_access_point": ["Kosí potok", "Amselbach"], "authorized_access_point": "Kosový potok"} 1 +2024-09-11 09:12:12.103083 2024-09-11 09:12:12.103087 d3786adc-4692-4fe1-a114-9f3d568ae378 {"md5": "e14213626e56d5c25471808e2cc501a4", "pid": "1054961824", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Großkochberg"], "noteType": "dataSource"}, {"label": ["Großkochberg ist eine ehemals selbständige Gemeinde; seit 1.12.2007 Ortsteil von Uhlstädt-Kirchhasel. Im Landkreis Saalfeld-Rudolstadt in Thüringen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Uhlstädt-Kirchhasel"}, {"authorized_access_point": "Großkochberg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1054961824", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1054961824", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1054961824", "source": "GND"}], "authorized_access_point": "Uhlstädt-Kirchhasel- Großkochberg"} 1 +2024-09-11 09:12:12.184227 2024-09-11 09:12:12.18423 ae61eede-b5c8-4a28-960c-f76b3c5bf51a {"md5": "60e9d896bc943b59af1760a326957bb3", "pid": "1054631026", "note": [{"label": ["Landschaft im NO des indischen Subkontinents: westl. Teil umfaßt indischen Bundesstaat West Bengal, größere östl. Teil bildet den Staatsraum von Bangladesch"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)989943666", "source": "GND"}, {"type": "bf:Nbn", "value": "091420466", "source": "ZBW"}], "authorized_access_point": "Bengalen (Region)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1054631026", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1054631026", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1054631026", "source": "GND"}], "variant_access_point": ["Bengal"], "authorized_access_point": "Bengalen"} 1 +2024-09-11 09:12:12.249048 2024-09-11 09:12:12.249052 1e85843f-828b-4896-8475-eaa1cc92f48d {"md5": "412e59a7e8781d4137b49d574098a1cb", "pid": "1054611041", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1054611041", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1054611041", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1054611041", "source": "GND"}], "authorized_access_point": "Giersdorfer Wasser"} 1 +2024-09-11 09:12:12.32694 2024-09-11 09:12:12.326949 1a6c6420-9fa8-41f3-8dbb-5bd047c84c9c {"md5": "d6df61f9eb1f36e49b5776f88b924a9e", "pid": "1054442959", "note": [{"label": ["Nebenfluss der Neiße"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1054442959", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1054442959", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1054442959", "source": "GND"}], "authorized_access_point": "Föhrenbach (Fluss)"} 1 +2024-09-11 09:12:12.396157 2024-09-11 09:12:12.396159 46113f00-e2ad-4705-936f-53a7e403f209 {"md5": "ab0440703494829cb6a166f7410f4fcd", "pid": "1054382255", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1054382255", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1054382255", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1054382255", "source": "GND"}], "variant_access_point": ["Krauthausener Mühlenteich"], "authorized_access_point": "Krauthausener Teich"} 1 +2024-09-11 09:12:12.467287 2024-09-11 09:12:12.467291 1274dab1-8e6d-4c02-a6a7-60c3d5426d57 {"md5": "b22d6f6b1ba6aca345cb655328781b00", "pid": "1054036489", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1054036489", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1054036489", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1054036489", "source": "GND"}], "authorized_access_point": "Bruntál - Region"} 1 +2024-09-11 09:12:12.534157 2024-09-11 09:12:12.534161 d1aad4fb-852c-44d2-9daa-ad394487f496 {"md5": "3e2f252869da9fe76fc032aca000d054", "pid": "1054036322", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1054036322", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1054036322", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1054036322", "source": "GND"}], "variant_access_point": ["Krnovsko", "Jägerndorf", "Śląsk Karniowski"], "authorized_access_point": "Krnov - Region"} 1 +2024-09-11 09:12:12.591405 2024-09-11 09:12:12.591409 3a8a12ac-950f-457a-998e-0fb71a44f60a {"md5": "67f227e86cbeb7127f141649a10bcfb0", "pid": "105382467X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/105382467X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)105382467X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)105382467X", "source": "GND"}], "authorized_access_point": "Vogtländische Schweiz"} 1 +2024-09-11 09:12:12.66152 2024-09-11 09:12:12.661523 243ec614-8342-4d98-be77-162129787a75 {"md5": "2cd1dbef882393f91fa871faffc2ade6", "pid": "1053733119", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Neulandhalle"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Friedrichskoog"}, {"authorized_access_point": "Dieksanderkoog"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1053733119", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1053733119", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1053733119", "source": "GND"}], "variant_access_point": ["Neulandhalle (Dieksanderkoog)", "Neulandhalle (Adolf-Hitler-Koog)"], "authorized_access_point": "Neulandhalle (Friedrichskoog)"} 1 +2024-09-11 09:12:12.718369 2024-09-11 09:12:12.718373 866d2469-4302-4b72-9ba4-453d47c3eddb {"md5": "a73cdecd2ade9e23b483c089e4cd26d9", "pid": "1053694857", "note": [{"label": ["Private Seiten - http://www.schlossgarten-oldenburg.de"], "noteType": "dataSource"}, {"label": ["Englischer Landschaftsgarten für Herzog Peter Friedrich Ludwig von Oldenburg 1814/19 von J. F. W. Bosse angelegt, später erweitert"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Oldenburg (Oldenburg)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1053694857", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1053694857", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1053694857", "source": "GND"}], "variant_access_point": ["Schlosspark Oldenburg (Oldenburg (Oldenburg))"], "authorized_access_point": "Schlossgarten Oldenburg (Oldenburg (Oldenburg))"} 1 +2024-09-11 09:12:12.794344 2024-09-11 09:12:12.794348 1f233770-7118-464c-bad3-a5302bcfcb2d {"md5": "fda3d459ff41e93be3f9804e8228cd83", "pid": "105366916X", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Collegium_St._Hieronymi"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Dillingen a.d. Donau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/105366916X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)105366916X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)105366916X", "source": "GND"}], "variant_access_point": ["Gebäude des ehemaligen Jesuitenkollegs (Dillingen a.d. Donau)"], "authorized_access_point": "Kollegiengebäude des Collegium Sancti Hieronymi (Dillingen a.d. Donau)"} 1 +2024-09-11 09:12:12.863453 2024-09-11 09:12:12.863457 9c4fa906-ddfb-4a00-b28b-60ba85e6972e {"md5": "b7d938ab3471a72980419d5837ead5c2", "pid": "1053585039", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Lübeck"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1053585039", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1053585039", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1053585039", "source": "GND"}], "variant_access_point": ["Dielenhaus Fleischhauerstraße 79 (Lübeck)"], "authorized_access_point": "Fleischhauerstraße 79 (Lübeck)"} 1 +2024-09-11 09:12:12.924628 2024-09-11 09:12:12.924632 793af373-3457-41f7-96ac-cb03370bbe36 {"md5": "5cd5c30e2fef19e26443e86b04678b18", "pid": "1053578571", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Augsburg"}], "related": [{"authorized_access_point": "Fuggerhäuser"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1053578571", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1053578571", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1053578571", "source": "GND"}], "variant_access_point": ["Fuggerhäuser", "Fuggerhäuser Augsburg, Badestuben"], "authorized_access_point": "Fuggerhäuser - Badstuben"} 1 +2024-09-11 09:12:12.993593 2024-09-11 09:12:12.993597 80acfb51-93d8-4945-87e4-26ea20b2b051 {"md5": "57b230600e7ef0eb9019c23230d8b009", "pid": "1053495382", "note": [{"label": ["Wikipedia unter Süssenguth, Georg - http://de.wikipedia.org/wiki/Georg_S%C3%BC%C3%9Fenguth"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Hamburg"}, {"authorized_access_point": "Hamburg-Altona"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1053495382", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1053495382", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1053495382", "source": "GND"}], "variant_access_point": ["Museumsbau Museum Altona (Hamburg)", "Museumsgebäude des Museums Altona (Hamburg-Altona)"], "authorized_access_point": "Museumsbau des Altonaer Museums (Hamburg)"} 1 +2024-09-11 09:12:13.060326 2024-09-11 09:12:13.060329 703b4c60-319b-4c45-a4f7-7a8d55665042 {"md5": "ddcdfeabdb51b3c19637fd61c1e78bba", "pid": "1053460856", "note": [{"label": ["Heiligtum der Demeter, Thesmophorien (Fruchtbarkeitsritus)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rhamnus (Attika)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1053460856", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1053460856", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1053460856", "source": "GND"}], "authorized_access_point": "Thesmophorion (Rhamnus, Attika)"} 1 +2024-09-11 09:12:13.148394 2024-09-11 09:12:13.148399 ac8c5377-768a-4217-87f8-d935771d7040 {"md5": "805cfc6b3e8a4820c65daa5b70f14156", "pid": "1051746663", "note": [{"label": ["Kunstdenkmäler CH", "An der Sihlstrasse 20: In den Jahren 1812 und 1874 fanden grössere Umbauarbeiten statt, bis das ursprüngliche Gebäude 1892 gänzlich verschwand und es zum Vereinshaus des Kaufmännischen Vereins Zürich ausgebaut wurde"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Zürich"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1051746663", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1051746663", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1051746663", "source": "GND"}], "variant_access_point": ["Alt Seidenhof (Zürich)"], "authorized_access_point": "Alter Seidenhof (Zürich)"} 1 +2024-09-11 09:12:13.199527 2024-09-11 09:12:13.199531 3d50c9d6-a91d-418b-8bf7-9400ec8c1853 {"md5": "dbd07929c932593023f840fe4539410a", "pid": "1044268069", "note": [{"label": ["Stadt im Landkreis Panevėžys in Litauen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kreis Panevėžys"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1044268069", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1044268069", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1044268069", "source": "GND"}], "variant_access_point": ["Juodupe", "Pojedupie"], "authorized_access_point": "Juodupė"} 1 +2024-09-11 09:12:13.261255 2024-09-11 09:12:13.26126 cca0d69e-a490-4dbc-8f37-5c9f47eb8a80 {"md5": "fb9e47e74ab7e2ba6233af519bfe85cf", "pid": "1038831628", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Immichenhain"], "noteType": "dataSource"}, {"label": ["ehemals selbständige Gemeinde, seit 1.4.1972 Ortsteil von Ottrau. Im Schwalm-Eder-Kreis in Hessen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Ottrau-Immichenhain"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1038831628", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1038831628", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1038831628", "source": "GND"}], "variant_access_point": ["Imchenhain"], "authorized_access_point": "Immichenhain"} 1 +2024-09-11 09:12:13.335931 2024-09-11 09:12:13.335934 81bfa320-1c47-4dfb-8165-e04061917f54 {"md5": "ec551ae9a62beb6c315f7176990eb2cf", "pid": "1036912949", "note": [{"label": ["Oasenstadt in NW-Saudi-Arabien, seit ca. 2. Jt. v.Chr. besiedelt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1036912949", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1036912949", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1036912949", "source": "GND"}], "variant_access_point": ["Tema (Saudi-Arabien)", "Tayma", "Teima", "Taymāʾ"], "authorized_access_point": "Taima (Saudi-Arabien)"} 1 +2024-09-11 09:12:13.397693 2024-09-11 09:12:13.397696 534f5c5b-fa00-48a8-8bfd-d18a9f43335f {"md5": "d0b0d127b1952036e246000b53f64ac6", "pid": "1036573141", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1036573141", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1036573141", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1036573141", "source": "GND"}], "authorized_access_point": "Friedrichslohra und Amtlohra - Region"} 1 +2024-09-11 09:12:13.466324 2024-09-11 09:12:13.466326 aa241e93-a0e3-44e7-ab73-acd2f8736f42 {"md5": "18758aebda21271fd02f98356f8e393a", "pid": "1035487640", "note": [{"label": ["Internet - https://www.salzkoerner.de/?page_id=525"], "noteType": "dataSource"}, {"label": ["Anfang des 13. Jahrhunderts vom Deutschherrenorden als Ordenskirche errichtet, 1870 niedergelegt blieb nur der alte Westturm beim Neubau 1876-1878 erhalten"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Waldbreitbach"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1035487640", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1035487640", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1035487640", "source": "GND"}], "variant_access_point": ["Kath. Pfarrkirche Mariä Himmelfahrt (Waldbreitbach)", "Katholische Pfarrkirche Mariä Himmelfahrt (Waldbreitbach)", "Pfarrkirche Maria Himmelfahrt (Waldbreitbach)", "Kirche Maria Himmelfahrt (Waldbreitbach)", "Mariä Himmelfahrt (Waldbreitbach)"], "authorized_access_point": "Maria Himmelfahrt (Waldbreitbach)"} 1 +2024-09-11 09:12:13.515818 2024-09-11 09:12:13.515821 e87c999f-9de7-4429-a57f-1b811ebf42a3 {"md5": "075280517ac8efdc3af91e2cc7d303a8", "pid": "1032436034", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Nümbrecht"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1032436034", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1032436034", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1032436034", "source": "GND"}], "variant_access_point": ["Ev. Kirche Nümbrecht (Nümbrecht)"], "authorized_access_point": "Evangelische Kirche Nümbrecht (Nümbrecht)"} 1 +2024-09-11 09:12:13.570507 2024-09-11 09:12:13.57051 64cb0b72-7266-4cb9-af0c-fc1513051f0a {"md5": "bc389120229a8c7fa5b2c35262caa7ee", "pid": "1031571922", "note": [{"label": ["Homepage - http://www.gelgaudiskis.lt/"], "noteType": "dataSource"}, {"label": ["Stadt in Litauen, im Bezirk Mariampol. Am Fluß Niemen (dt. Memel, pol. Niemen, lit. Nemunas, russ. Neman)."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1031571922", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1031571922", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1031571922", "source": "GND"}], "variant_access_point": ["Gelgaudiskis", "Giełgudyszki", "Gelʹgudiški"], "authorized_access_point": "Gelgaudiškis"} 1 +2024-09-11 09:12:13.652593 2024-09-11 09:12:13.652597 c56889f6-cf11-4c51-aef2-9d74be6a8337 {"md5": "585673ddcee8890a37f99e8433131dec", "pid": "1029389896", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Sellerhausen&oldid=231774300"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Leipzig-Sellerhausen-Stünz"}], "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Sellerhausen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1029389896", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1029389896", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1029389896", "source": "GND"}], "variant_access_point": ["Sellerhausen (Leipzig)"], "authorized_access_point": "Leipzig-Sellerhausen"} 1 +2024-09-11 09:12:13.705542 2024-09-11 09:12:13.705545 c7ba1f99-c516-4149-949d-9a375cdb0a66 {"md5": "dfe8ba029aa8694d1813e0ebb8725b18", "pid": "1029389233", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Neusellerhausen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1029389233", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1029389233", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1029389233", "source": "GND"}], "variant_access_point": ["Neusellerhausen (Leipzig)"], "authorized_access_point": "Leipzig-Neusellerhausen"} 1 +2024-09-11 09:12:13.771278 2024-09-11 09:12:13.771282 2cc30d60-a891-43af-a9e6-acf94c1346ea {"md5": "f02354a66646a5bfa84787334bfbb149", "pid": "1029388334", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Neureudnitz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1029388334", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1029388334", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1029388334", "source": "GND"}], "variant_access_point": ["Neureudnitz (Leipzig)"], "authorized_access_point": "Leipzig-Neureudnitz"} 1 +2024-09-11 09:12:13.852011 2024-09-11 09:12:13.852016 c1138a04-b169-46f9-84cb-042622022e19 {"md5": "03450be99419b9ef06a34cf70680db56", "pid": "1028231660", "note": [{"label": ["wikipedia - https://en.wikipedia.org/w/index.php?title=Upyt%C4%97&oldid=1181420912"], "noteType": "dataSource"}, {"label": ["Verwaltungseinheit im Landkreis Panevėžys, Litauen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kreis Panevėžys"}, {"authorized_access_point": "Upytė"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1028231660", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1028231660", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1028231660", "source": "GND"}], "variant_access_point": ["Upytės seniūnija"], "authorized_access_point": "Amtsbezirk Upytė"} 1 +2024-09-11 09:12:13.92339 2024-09-11 09:12:13.923394 87fde741-66c1-481f-940e-3a6d770d7b2d {"md5": "0b0b95b572437911422c3707d82ab441", "pid": "1024812693", "note": [{"label": ["Gemeinde im Landkreis Görlitz , Sachsen."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1024812693", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1024812693", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1024812693", "source": "GND"}], "variant_access_point": ["Groß-Düben", "Dźěwin"], "authorized_access_point": "Groß Düben"} 1 +2024-09-11 09:12:13.990954 2024-09-11 09:12:13.990965 e224edab-3415-456c-8a4d-48c0f6a24d17 {"md5": "05a1d6748fcccd6e065ff7ab5cad48b0", "pid": "1021396656", "note": [{"label": ["Stadt im Süden Litauens, Bezirk Marijampolė"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7864312-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1021396656", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7864312-0", "source": "GND"}], "variant_access_point": ["Kalwarja", "Kalvariya", "Kalvarijos", "Calvaria", "Kalvaria", "Kalwaria", "Kalwariya"], "authorized_access_point": "Kalvarija"} 1 +2024-09-11 09:12:14.062373 2024-09-11 09:12:14.062376 39a9cbc1-46bc-4ffc-b04a-e24fd4d509b5 {"md5": "243eca4f52c7cc2b8a6944b4421bad0c", "pid": "1021113018", "note": [{"label": ["Region im Bezirk Šiauliai, zwischen Rozalimas, Radviliškis, Seduva und Smilgiai gelegen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7861847-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1021113018", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7861847-2", "source": "GND"}], "variant_access_point": ["Alksniupiu̜ kraštas"], "authorized_access_point": "Alksniupiai - Region"} 1 +2024-09-11 09:12:14.137026 2024-09-11 09:12:14.13703 c1aa9a0b-283f-460d-8444-f1dcc4fc6c7b {"md5": "2b7a0970a7a78377fad22af6c4b90473", "pid": "1021112577", "note": [{"label": ["Ort im Osten Litauens, im Bezirk Švenčionys"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7861838-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1021112577", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7861838-1", "source": "GND"}], "variant_access_point": ["Kaltanenay", "Kaltinėnai", "Kołtyniany", "Koltynyany"], "authorized_access_point": "Kaltanėnai"} 1 +2024-09-11 09:12:14.206832 2024-09-11 09:12:14.206836 5a588d39-617d-4d21-917a-fa1eb92e6e4d {"md5": "7fdf4d137b35c67db895bccf5fec3f8c", "pid": "1021112518", "note": [{"label": ["Stadt in Litauen, im Bezirk Kelmė"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7861835-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1021112518", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7861835-6", "source": "GND"}], "authorized_access_point": "Karklėnai"} 1 +2024-09-11 09:12:14.260936 2024-09-11 09:12:14.260939 1ffc2018-2b72-46a9-8836-65e3834bfcc9 {"md5": "14f84a9442f855f0969ec561e134980a", "pid": "1021112216", "note": [{"label": ["Amtsbezirk der Rajongemeinde Varėna im Süden von Litauen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7861831-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1021112216", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7861831-9", "source": "GND"}], "variant_access_point": ["Marcinkoniu̜ seniūnija", "Marcinkonys (Amt)"], "authorized_access_point": "Amt Marcinkonys"} 1 +2024-09-11 09:12:14.323917 2024-09-11 09:12:14.323921 77d2b669-607a-415b-875a-940ff603c373 {"md5": "f582a0205f7a34fac059a79121146df1", "pid": "1021056154", "note": [{"label": ["Tal in Saudiarabien"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7861291-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1021056154", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7861291-3", "source": "GND"}], "variant_access_point": ["Wadi Al-Aqiq", "Wadi Al-Aqeeq"], "authorized_access_point": "Wādī al-ʿAqīq"} 1 +2024-09-11 09:12:14.383916 2024-09-11 09:12:14.383919 4ce14684-c33d-464d-b1df-145f80273959 {"md5": "f7ef1d9e49fa121ca648a1b786376d40", "pid": "1020911387", "note": [{"label": ["Dorf im Bezirk Kelme in Litauen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7860875-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1020911387", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7860875-2", "source": "GND"}], "authorized_access_point": "Kuršiai (Kelme)"} 1 +2024-09-11 09:12:14.454926 2024-09-11 09:12:14.454941 ea0fd866-ddb9-43cd-83ba-d71e909e47b7 {"md5": "865700cc2296def43e097f95abc3faef", "pid": "1020911344", "note": [{"label": ["Kreis im Bezirk Šiauliai in Litauen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7860874-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1020911344", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7860874-0", "source": "GND"}], "variant_access_point": ["Radviliškio rajonas", "Radviliškis (Kreis)"], "authorized_access_point": "Kreis Radviliškis"} 1 +2024-09-11 09:12:14.53478 2024-09-11 09:12:14.534784 8cd90543-893e-4cd1-a364-a6b757a79c79 {"md5": "bc2b85ed25a9196f1e9a2f3abf193844", "pid": "1020911026", "note": [{"label": ["Dorf im Bezirk Telšiai in Litauen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7860862-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1020911026", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7860862-4", "source": "GND"}], "authorized_access_point": "Ke̜staičiai"} 1 +2024-09-11 09:12:14.605721 2024-09-11 09:12:14.605724 5fdf6bc1-5267-4f9f-a855-774d8c2fe73e {"md5": "0d6d06ba6cb65e96a11dca3880b133f4", "pid": "1020897325", "note": [{"label": ["Litauische Rajongemeinde im Bezirk Kaunas"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7860647-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1020897325", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7860647-0", "source": "GND"}], "variant_access_point": ["Jonavas rajonas", "Jonava (Kreis)"], "authorized_access_point": "Kreis Jonava"} 1 +2024-09-11 09:12:14.66453 2024-09-11 09:12:14.664534 d108402a-ac2d-4157-9463-7ad828c138e7 {"md5": "c8db3c368a4990c2dd4c1d632fbd0f7f", "pid": "1020897236", "note": [{"label": ["Kreis im Südosten von Litauen, im Bezirk Alytus"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7860645-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1020897236", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7860645-7", "source": "GND"}], "variant_access_point": ["Varėnos rajonas", "Varėna (Kreis)"], "authorized_access_point": "Kreis Varėna"} 1 +2024-09-11 09:12:14.716176 2024-09-11 09:12:14.716179 670ccf21-3de2-487f-8712-1cd9787bcba6 {"md5": "57191ab308c7014b6e56dd21d7479ea1", "pid": "1020865318", "note": [{"label": ["Stadt im NO Litauens"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7860430-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1020865318", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7860430-8", "source": "GND"}], "authorized_access_point": "Ignalina"} 1 +2024-09-11 09:12:14.781062 2024-09-11 09:12:14.781066 98b3681b-9048-4df3-9046-c028c969e54d {"md5": "58fc284c119fb2c099e62f99ab232917", "pid": "1020865237", "note": [{"label": ["Region im NO Litauens"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7860429-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1020865237", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7860429-1", "source": "GND"}], "variant_access_point": ["Ignalinos kraštas", "Ignalinskij kraj"], "authorized_access_point": "Ignalina - Region"} 1 +2024-09-11 09:12:14.860131 2024-09-11 09:12:14.860141 a418a170-ca73-4097-b29e-eaea45f460cd {"md5": "949e72f12baaeba29b4fd894b750c8d0", "pid": "1016112106", "note": [{"label": ["Schloss auf einem Felssporn im Oberen Donautal, Wohnplatz historisch"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Landkreis Sigmaringen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7832565-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1016112106", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7832565-1", "source": "GND"}], "variant_access_point": ["Beuron-Schloss Werenwag"], "authorized_access_point": "Schloss Werenwag"} 1 +2024-09-11 09:12:14.936035 2024-09-11 09:12:14.936037 d5979446-cc4a-4c7f-a35e-1ff8c59ae74e {"md5": "d1bce410aed1c167cd284e5c905a7686", "pid": "1011060752", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7742462-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1011060752", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7742462-1", "source": "GND"}], "authorized_access_point": "Henningen (Salzwedel) - Region"} 1 +2024-09-11 09:12:15.012026 2024-09-11 09:12:15.012031 060eb00f-9836-49c3-8bef-e04f2871a2a9 {"md5": "ae0e374ea5fb98478778d1e552b8dd88", "pid": "1010438603", "note": [{"label": ["seit 1974 Ortsteil von Döbern"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7737805-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1010438603", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7737805-2", "source": "GND"}], "variant_access_point": ["Dubraucke", "Dubrawka", "Döbern-Eichwege"], "authorized_access_point": "Eichwege"} 1 +2024-09-11 09:12:15.08313 2024-09-11 09:12:15.083134 17f4e136-7644-4854-9cc1-2cd9c74dfbcf {"md5": "bb523505ed9e61ae55a6d640e699e1b7", "pid": "1010249460", "note": [{"label": ["Stadt im Irak"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7736522-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1010249460", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7736522-7", "source": "GND"}], "variant_access_point": ["Dihok", "Dahūk", "Duhūk", "Dihuk", "Dahok", "Dahuk", "Duhok", "Dohuk", "دهوك"], "authorized_access_point": "Dihōk"} 1 +2024-09-11 09:12:15.154969 2024-09-11 09:12:15.154972 6d9cdf2b-0c06-4f7f-ba9c-7cc6eb4b8b5a {"md5": "493f6d60221a8e72a0979a86a71156f5", "pid": "1009847430", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Holzhausen_II&oldid=146144601"], "noteType": "dataSource"}, {"label": ["Seit 01.01.1973 Ortsteil von Hille (Kreis Minden-Lübbecke), vorher selbstständig"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Hille"}, {"authorized_access_point": "Holzhausen II"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7733190-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1009847430", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7733190-4", "source": "GND"}], "authorized_access_point": "Hille- Holzhausen II"} 1 +2024-09-11 09:12:15.228611 2024-09-11 09:12:15.228616 6a4f17ec-db11-43a3-a979-92e4be4d89a8 {"md5": "bc91406084d82f45749a373c16166eb9", "pid": "1009707922", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Heringsdorf (Kreis Ostholstein)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16098098-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1009707922", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)16098098-7", "source": "GND"}], "variant_access_point": ["Siggen (Heringsdorf, Kreis Ostholstein)"], "authorized_access_point": "Heringsdorf-Siggen"} 1 +2024-09-11 09:12:15.298125 2024-09-11 09:12:15.298128 5df3301e-4cde-48ba-abec-44ea29ed5b70 {"md5": "edb04a87a7f22afaa34d745d25210768", "pid": "1008073997", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Breitenfeld_(Leipzig)"], "noteType": "dataSource"}, {"label": ["Ortsteil von Leipzig seit 1.1.1999, 1271 Dorf urkundl. erwähnt; 1923 nach Lindenthal (Leipzig) eingemeindet"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Lindenthal-Breitenfeld"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7723003-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1008073997", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7723003-6", "source": "GND"}], "variant_access_point": ["Breitenfeld (Leipzig)"], "authorized_access_point": "Leipzig-Breitenfeld"} 1 +2024-09-11 09:12:15.373079 2024-09-11 09:12:15.373087 b9d825a1-0a42-4770-b496-73b9e979eef8 {"md5": "caaee3771c9b6f1cd545f92c9835bac3", "pid": "1002427517", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kreis-Direktion Leipzig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16065257-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1002427517", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)16065257-1", "source": "GND"}], "variant_access_point": ["Leipziger Creyß", "Leipzigischer Creyß", "Leipzigischer Kreis", "Leipziger Kreis", "Forum für Wissenschaft und Kunst"], "authorized_access_point": "Leipziger Creis"} 1 +2024-09-11 09:12:15.443273 2024-09-11 09:12:15.443277 b88d4231-17d6-40b7-a20a-5a172c63ce14 {"md5": "38d5592dba0297a2181c6bebe33d1482", "pid": "1001762630", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=243074240"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kreis Oststernberg"}, {"authorized_access_point": "Łagów (Woiwodschaft Lebus)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16063071-X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)1001762630", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)16063071-X", "source": "GND"}], "authorized_access_point": "Lagow (Kreis Oststernberg)"} 1 +2024-09-11 09:12:15.520602 2024-09-11 09:12:15.520605 186668cf-ad36-41fe-876f-99008b169a6c {"md5": "78e0693dd1c6910444876ba1a0ee106b", "pid": "996588051", "note": [{"label": ["Stadtteil von Leipzig seit 1.1.1999; Gemeinde Böhlitz-Ehrenberg bestand seit 1839"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Böhlitz-Ehrenberg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7672378-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)996588051", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7672378-1", "source": "GND"}], "variant_access_point": ["Böhlitz-Ehrenberg (Leipzig)"], "authorized_access_point": "Leipzig-Böhlitz-Ehrenberg"} 1 +2024-09-11 09:12:15.603881 2024-09-11 09:12:15.60389 755e9faf-2d72-469a-b60a-94ed64f1cb8a {"md5": "0c110aa67fcf8e474b6c0da6f3556aa2", "pid": "996155910", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Chocian%C3%B3w&oldid=245141308"], "noteType": "dataSource"}, {"label": ["Stadt im preußischen Kreis Lübben, ab 1945 Chocianów in der polnischen der Woiwodschaft Niederschlesien"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Chocianów"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16019456-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)996155910", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)16019456-8", "source": "GND"}], "authorized_access_point": "Kotzenau"} 1 +2024-09-11 09:12:15.699438 2024-09-11 09:12:15.69944 60eb4afe-ce94-43ee-997b-98d824a16423 {"md5": "655c8ff896c6b365c260de33a9bd91c6", "pid": "995191506", "note": [{"label": ["Stadtteil von Grünberg im Landkreis Gießen, Hessen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Grünberg (Landkreis Gießen)"}, {"authorized_access_point": "Queckborn"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/16014739-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)995191506", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)16014739-6", "source": "GND"}], "variant_access_point": ["Grünberg (Landkreis Gießen-Queckborn)", "Queckborn (Grünberg-Queckborn)"], "authorized_access_point": "Grünberg-Queckborn"} 1 +2024-09-11 09:12:15.751333 2024-09-11 09:12:15.751336 967936aa-415e-4bf3-863f-72be6aad1155 {"md5": "1c451521ab842cbdb646182a092915ae", "pid": "994536666", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Zuckelhausen&oldid=234613791"], "noteType": "dataSource"}, {"label": ["Stadtteil von Leipzig seit 1.1.1999, davor Ortsteil von Holzhausen "], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Holzhausen-Zuckelhausen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7660336-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)994536666", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7660336-2", "source": "GND"}], "variant_access_point": ["Zuckelhausen (Leipzig)"], "authorized_access_point": "Leipzig-Zuckelhausen"} 1 +2024-09-11 09:12:15.819715 2024-09-11 09:12:15.819719 b9f79173-4ae9-49d1-8885-4a046c847f3b {"md5": "29d50dfe03d03ea9d02af20bca14990d", "pid": "992346371", "note": [{"label": ["Ortsteil von Rietschen, Landkreis Görlitz (1.8.1994-31.7.2008: Niederschlesischer Oberlausitzkreis; 25.7.1952-31.7.1994: (Land-)Kreis Weißwasser), 1346, 1366 und 1398 urkundl. erwähnt, 15.3.1992 mit Rietschen, Teicha u. Viereichen zu Rietschen zusammengeschlossen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7642802-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)992346371", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7642802-3", "source": "GND"}], "variant_access_point": ["Dubc", "Rietschen-Daubitz"], "authorized_access_point": "Daubitz"} 1 +2024-09-11 09:12:15.886811 2024-09-11 09:12:15.886813 f1667dd6-0940-46fa-bf5c-1e327f3bf940 {"md5": "ee192807059ae85e18c486c9a782e211", "pid": "989505952", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=St._Maria_ad_Gradus_(K%C3%B6ln)&oldid=205659895"], "noteType": "dataSource"}, {"label": ["Romanische Stiftskirche mit eigenem Immunitätsbezirk; 1059 urkundlich erwähnt, 1817 abgerissen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Köln"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7617898-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)989505952", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7617898-5", "source": "GND"}], "variant_access_point": ["Sankt Maria ad gradus (Köln)", "Stiftskirche Sankt Maria zu den Stufen (Köln)", "Sankt Mariengraden (Köln)", "Maria zu den Stufen (Köln)", "St. Mariengraden (Köln)", "St. Maria ad gradus (Köln) (Köln)"], "authorized_access_point": "Sankt Maria zu den Stufen (Köln)"} 1 +2024-09-11 09:12:15.967941 2024-09-11 09:12:15.967945 45a1686c-385a-45f9-bef3-763a3541493f {"md5": "6b69d0b89216306774c18750ed3605d6", "pid": "98831326X", "note": [{"label": ["Pavillon 1973 (andersltd.: 1970) erbaut nach Entwurf von Ulrich Müther , bewirtschaftet von einer Künstlervereinigung, seit 1990 Usedomer Kunstverein"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Heringsdorf (Seebad)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7608819-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)98831326X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7608819-4", "source": "GND"}], "authorized_access_point": "Kunstpavillon (Heringsdorf, Seebad)"} 1 +2024-09-11 09:12:16.051128 2024-09-11 09:12:16.051131 96a3d71d-e4bb-4a0d-8dde-31cc868bc391 {"md5": "b57aeb895c999c2c933ea210128f6694", "pid": "985253576", "note": [{"label": ["Internet - http://www.schwante.de/schloesser.htm"], "noteType": "dataSource"}, {"label": ["Schloß 1888/91 von H. Abesser u. J. Kröger erbaut; heute von Dharmakaya Schloss Sommerswalde e.V. (Buddhistische Klosterschule und Sozialprojekt) genutzt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Schwante"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7577686-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)985253576", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7577686-8", "source": "GND"}], "authorized_access_point": "Schloss Sommerswalde (Schwante)"} 1 +2024-09-11 09:12:16.118097 2024-09-11 09:12:16.1181 279fed09-2855-496a-bcf9-49e6f2d038b8 {"md5": "b93a96e377c2d83cd605f33de9427342", "pid": "984645942", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10172109-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)984645942", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)10172109-2", "source": "GND"}], "authorized_access_point": "Leipzig-Südost"} 1 +2024-09-11 09:12:16.178216 2024-09-11 09:12:16.178218 c75a2449-79a4-46de-9844-9f00985bfc9d {"md5": "00ef3fe6bcad05d2e70375eb3c07df19", "pid": "980891248", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10145481-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)980891248", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)10145481-8", "source": "GND"}], "variant_access_point": ["Bezirk Judenburg", "Judenburg (Politischer Bezirk)"], "authorized_access_point": "Politischer Bezirk Judenburg"} 1 +2024-09-11 09:12:16.23996 2024-09-11 09:12:16.239963 99f3c439-c659-4114-82d3-91fd99fc41f3 {"md5": "cdf433f3f88d11f1deb784b4d534efc6", "pid": "979131529", "note": [{"label": ["Gemeinde im Bezirk Morges, Kanton Waadt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7522697-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)979131529", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7522697-2", "source": "GND"}], "authorized_access_point": "Echichens"} 1 +2024-09-11 09:12:16.303731 2024-09-11 09:12:16.303735 0bfcf8e7-b16e-49d8-887c-f29afeb1d8b9 {"md5": "38efe5c014accaba02f3e6f2593bc6ce", "pid": "978966228", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Herzogtum Preußen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7521235-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)978966228", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7521235-3", "source": "GND"}], "variant_access_point": ["Preußen (Herzogtum)"], "authorized_access_point": "Herzogtum Preußen - Ost"} 1 +2024-09-11 09:12:25.904031 2024-09-11 09:12:25.904035 89f31f9d-8f07-4405-8855-fa88a8f34748 {"md5": "ff69dbcea63c9a0c4a2b2ac9cc00e54c", "pid": "199244731", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Detmold"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7789108-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199244731", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7789108-9", "source": "GND"}], "authorized_access_point": "Freiligrathstraße (Detmold)"} 1 +2024-09-11 09:12:16.379433 2024-09-11 09:12:16.379437 18531370-b75e-44a7-9055-103901715253 {"md5": "188d56c504a7a5d7900c114a48690dc2", "pid": "978923855", "note": [{"label": ["Homepage - http://www.leipzig-lexikon.de/KOMMGLIE/KK_KH.HTM"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10131913-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)978923855", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)10131913-7", "source": "GND"}], "variant_access_point": ["Knautkleeberg-Knauthain"], "authorized_access_point": "Leipzig-Knautkleeberg-Knauthain"} 1 +2024-09-11 09:12:16.44815 2024-09-11 09:12:16.448154 8a77d223-c8af-4427-9d4b-ef7129e90444 {"md5": "07963c19369221e3586fc83f4d2dcbb3", "pid": "975958925", "note": [{"label": ["Homepage - http://www.baeriswil.ch"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Bern"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4837436-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)975958925", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4837436-2", "source": "GND"}], "variant_access_point": ["Gemeinde Bäriswil", "Einwohnergemeinde Bäriswil"], "authorized_access_point": "Bäriswil (Bern)"} 1 +2024-09-11 09:12:16.504304 2024-09-11 09:12:16.504307 9b58aee5-659c-4de6-a3f7-726cf6bd632c {"md5": "d7f8a1c410fd7a5ed2425d40f8adba6a", "pid": "975328573", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Heringsdorf"], "noteType": "dataSource"}, {"label": ["Seebad auf Usedom, Landkreis Ostvorpommern, 1.1.2005 durch Zusammenschluß von Ahlbeck, Bansin und Heringsdorf gebildet, 1.1.2006 in Ostseebad Heringsdorf umbenannt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Heringsdorf (Seebad)"}], "related": [{"authorized_access_point": "Ahlbeck (Seebad)"}, {"authorized_access_point": "Bansin"}, {"authorized_access_point": "Heringsdorf (Seebad)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10106723-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)975328573", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)10106723-9", "source": "GND"}], "variant_access_point": ["Gemeinde Dreikaiserbäder"], "authorized_access_point": "Dreikaiserbäder"} 1 +2024-09-11 09:12:16.572264 2024-09-11 09:12:16.572269 ce040bc5-1027-4f57-9be0-ff62c08da268 {"md5": "28575d53d50c42aeee2ce4623aea8bd4", "pid": "974245747", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Amt Haderslev"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4821311-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)974245747", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4821311-1", "source": "GND"}], "variant_access_point": ["Amt Hadersleben", "Hadersleben (Amt)"], "authorized_access_point": "Amt Haderslev - West"} 1 +2024-09-11 09:12:16.644544 2024-09-11 09:12:16.644548 302304f0-8fe3-4112-bd6b-d1f86fa8949b {"md5": "fa027bd2610053cbeb85c568fccdaf83", "pid": "97424225X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Amt Haderslev"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4821156-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)97424225X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4821156-4", "source": "GND"}], "variant_access_point": ["Amt Hadersleben", "Hadersleben (Amt)"], "authorized_access_point": "Amt Haderslev - Ost"} 1 +2024-09-11 09:12:16.707856 2024-09-11 09:12:16.70786 a67dab2c-fe77-4549-8c16-9cb0234ee4e1 {"md5": "ac499ca5b2e6f193ee657f3b74a3bda6", "pid": "973071648", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4806526-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)973071648", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4806526-2", "source": "GND"}], "authorized_access_point": "Rayyis - Region"} 1 +2024-09-11 09:12:16.774747 2024-09-11 09:12:16.774752 91b9f48f-1869-48b0-9939-89d2d61fa538 {"md5": "e4d4beae615c856c17cd8843ae2a0302", "pid": "973066261", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Saudi-Arabien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4806336-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)973066261", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4806336-8", "source": "GND"}], "authorized_access_point": "Saudi-Arabien - Nordost"} 1 +2024-09-11 09:12:16.867777 2024-09-11 09:12:16.867781 f558afc0-5c98-4c43-a4c5-ca2a9820aef0 {"md5": "2d025bcc966e32d38f92d9bb2bd1d928", "pid": "973066245", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Saudi-Arabien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4806334-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)973066245", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4806334-4", "source": "GND"}], "authorized_access_point": "Saudi-Arabien - Nord"} 1 +2024-09-11 09:12:16.940962 2024-09-11 09:12:16.940966 7d989722-4c6b-4050-b24a-905af33eeb08 {"md5": "925aa17360e1655f15f05c6a11b4342b", "pid": "973040149", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4806060-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)973040149", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4806060-4", "source": "GND"}], "authorized_access_point": "Riad - Region"} 1 +2024-09-11 09:12:17.017869 2024-09-11 09:12:17.017871 4e76a0e3-1d98-4695-9d31-599913e50361 {"md5": "f72104139ebd36e7b1252f309b5769f9", "pid": "972651438", "note": [{"label": ["Homepage - http://www.kirchstetten.at"], "noteType": "dataSource"}, {"label": ["Gleichnamige Katastralgemeinde. - Postleitzahl: 3062, 3061"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Neulengbach"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4801892-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)972651438", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4801892-2", "source": "GND"}], "variant_access_point": ["Marktgemeinde Kirchstetten", "Dichtergemeinde Kirchstetten"], "authorized_access_point": "Kirchstetten (Neulengbach)"} 1 +2024-09-11 09:12:17.099289 2024-09-11 09:12:17.099292 62766fc6-e813-43c7-b899-d60deaaa0fbf {"md5": "41c3e4005a9a84bd133cc142c49a4510", "pid": "972586601", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Hainburg an der Donau"}], "related": [{"authorized_access_point": "Wolfsthal-Berg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4800591-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)972586601", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4800591-5", "source": "GND"}], "authorized_access_point": "Berg (Hainburg an der Donau)"} 1 +2024-09-11 09:12:17.171646 2024-09-11 09:12:17.171652 48dad72c-537c-4c71-8a68-a05418c0708f {"md5": "0b09f83e847356713d89a058b05b065d", "pid": "972515704", "note": [{"label": ["Homepage - https://www.kirchengemeinde-bochum-wiemelhausen.de/die-melanchthonkirche/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bochum"}, {"authorized_access_point": "Bochum-Wiemelhausen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4799377-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)972515704", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4799377-7", "source": "GND"}], "variant_access_point": ["Melanchthonkirche (Bochum-Wiemelhausen)"], "authorized_access_point": "Melanchthonkirche (Bochum)"} 1 +2024-09-11 09:12:17.228945 2024-09-11 09:12:17.228949 276eed62-81e0-4564-9c33-4e52eb795afb {"md5": "c0543211ef3f608c393151a3181f9fef", "pid": "971359709", "note": [{"label": ["Bezirk im Kanton Bern"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4781902-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)971359709", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4781902-9", "source": "GND"}], "variant_access_point": ["Amt Bern", "Amtsbezirk Bern", "Bern (Bezirk)"], "authorized_access_point": "Bezirk Bern"} 1 +2024-09-11 09:12:17.294953 2024-09-11 09:12:17.294956 0b1c68d3-1e4b-42dc-ab60-046ebeae90ed {"md5": "6571b9b22cf1c8db2e63a54ad1283cae", "pid": "970139470", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Anjouan (Insel)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4766737-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)970139470", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4766737-0", "source": "GND"}], "authorized_access_point": "Anjouan (Insel) - Nord"} 1 +2024-09-11 09:12:17.371283 2024-09-11 09:12:17.371287 ae633a9b-9cb4-47be-a8c1-7d2fb66a5ece {"md5": "e3c627d8c5fc88b209d8d487f4a89f1c", "pid": "969971028", "note": [{"label": ["Stadt im Norden Saudi-Arabiens"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4764706-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)969971028", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4764706-1", "source": "GND"}], "variant_access_point": ["Sākākah", "Skāka", "Sakāka"], "authorized_access_point": "Sakaka"} 1 +2024-09-11 09:12:17.438863 2024-09-11 09:12:17.438866 ae2b1407-43b5-43c6-96e4-a7d42fc2c3ab {"md5": "c9dce63e511d55b1de06ac1640151d6b", "pid": "969491131", "note": [{"label": ["Stadt in Saudi-Arabien"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4758499-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)969491131", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4758499-3", "source": "GND"}], "variant_access_point": ["Ušaiqir"], "authorized_access_point": "Ushayqir"} 1 +2024-09-11 09:12:17.501979 2024-09-11 09:12:17.501981 e956567e-f4e5-47b5-af82-5e06999fc35d {"md5": "d81f3f02168002aaef56f9e6b16a8a1a", "pid": "967753546", "note": [{"label": ["Stadt in der Provinz aš-Šarqīya in Saudi-Arabien"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4734021-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)967753546", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4734021-6", "source": "GND"}], "variant_access_point": ["Sīhāt", "Saihāt"], "authorized_access_point": "Sayhāt"} 1 +2024-09-11 09:12:17.568362 2024-09-11 09:12:17.56837 84b6b0ba-fea3-4535-8108-7f50cf72de42 {"md5": "b6e17a99aaf6a1a137acece4ac0ddd7c", "pid": "967681952", "note": [{"label": ["Homepage - https://www.oetigheim.de/", "Wikipedia - https://de.wikipedia.org/w/index.php?title=%C3%96tigheim&oldid=246016894"], "noteType": "dataSource"}, {"label": ["Gemeinde im Landkreis Rastatt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4732923-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)967681952", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4732923-3", "source": "GND"}], "variant_access_point": ["Gemeinde Ötigheim"], "authorized_access_point": "Ötigheim"} 1 +2024-09-11 09:12:17.638388 2024-09-11 09:12:17.63839 648aacf8-3b93-42bd-bf83-615f5f0d11ae {"md5": "47b60b41c6a805d8a3cc861e49456338", "pid": "967581176", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Goethewanderweg_Ilmenau%E2%80%93St%C3%BCtzerbach&oldid=242625559"], "noteType": "dataSource"}, {"label": ["18,5 km lang, 1970 angelegt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Ilmenau"}, {"authorized_access_point": "Ilmenau-Stützerbach"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4731282-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)967581176", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4731282-8", "source": "GND"}], "variant_access_point": ["Goethe-Wanderweg"], "authorized_access_point": "Goethewanderweg"} 1 +2024-09-11 09:12:17.701639 2024-09-11 09:12:17.701642 cda8c1b5-d12a-4633-9467-fa68c2662fb0 {"md5": "e0e625a215d246f155ea903d9c1d20ad", "pid": "967180953", "note": [{"label": ["Homepage - https://www.nationalpark-eifel.de"], "noteType": "dataSource"}, {"label": ["Nationalpark im Gebiet um den Truppenübungsplatz Vogelsang mit den Waldgebieten Kermeter und Dedenborn, eröffnet am 11.1.2004"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Nordrhein-Westfalen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4725322-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)967180953", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4725322-8", "source": "GND"}], "authorized_access_point": "Nationalpark Eifel"} 1 +2024-09-11 09:12:17.779621 2024-09-11 09:12:17.779626 49ac1256-1452-4e45-a47f-be781c796314 {"md5": "90017c34705fff6f52effde2635cabd8", "pid": "967160480", "note": [{"label": ["Stadtteil von Leipzig seit 1.1.1999"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Miltitz (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4725054-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)967160480", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4725054-9", "source": "GND"}], "variant_access_point": ["Miltitz (Leipzig)"], "authorized_access_point": "Leipzig-Miltitz"} 1 +2024-09-11 09:12:17.848793 2024-09-11 09:12:17.848798 06a61543-564d-4b6c-92cb-0b8855744c10 {"md5": "c51842f2f0ef445e7d6569b15d819fe0", "pid": "96577578X", "note": [{"label": ["Wohn-, Künstler- und Kneipenviertel an Westrand des Stadtzentrums angrenzend"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4710588-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)96577578X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4710588-4", "source": "GND"}], "variant_access_point": ["Innere Westvorstadt (Leipzig)", "Leipzig-Kolonnadenviertel", "Kolonnadenviertel (Leipzig)"], "authorized_access_point": "Leipzig- Innere Westvorstadt"} 1 +2024-09-11 09:12:17.945225 2024-09-11 09:12:17.94523 aad0ac94-52bc-45a3-9822-bddf5ba3d945 {"md5": "aadc9e5a432f02e1f9f0c72c339f8852", "pid": "965775429", "note": [{"label": ["Stadtteil im Nordosten Leipzigs seit 1930"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Abtnaundorf"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4710572-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)965775429", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4710572-0", "source": "GND"}], "variant_access_point": ["Abtnaundorf (Leipzig)"], "authorized_access_point": "Leipzig-Abtnaundorf"} 1 +2024-09-11 09:12:18.023056 2024-09-11 09:12:18.02306 654368f9-504b-4f02-9e46-9d3ed630aa68 {"md5": "bccb95ce32ab851915ea2c24841d5490", "pid": "965774910", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Wahren (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4710554-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)965774910", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4710554-9", "source": "GND"}], "variant_access_point": ["Wahren (Leipzig)"], "authorized_access_point": "Leipzig-Wahren"} 1 +2024-09-11 09:12:18.115727 2024-09-11 09:12:18.115732 a171ff8f-3253-4703-831b-c4533ef3acdb {"md5": "59df1a89b8b7b2aee456e9b68a4d855c", "pid": "965759059", "note": [{"label": ["Ortsteile von Leipzig 18.3.1992 administrativ zusammengelegt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Leipzig-Neustadt"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4710355-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)965759059", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4710355-3", "source": "GND"}], "variant_access_point": ["Neustadt-Neuschönefeld (Leipzig)"], "authorized_access_point": "Leipzig-Neustadt-Neuschönefeld"} 1 +2024-09-11 09:12:18.191991 2024-09-11 09:12:18.191994 7ff4fa1e-d3d7-4345-9c89-883e6aa9abec {"md5": "f93efce86c5d24e4af84b2428cbe81ec", "pid": "96575877X", "note": [{"label": ["Ortsteil seit 1890"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Volkmarsdorf"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4710342-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)96575877X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4710342-5", "source": "GND"}], "variant_access_point": ["Volkmarsdorf (Leipzig)"], "authorized_access_point": "Leipzig-Volkmarsdorf"} 1 +2024-09-11 09:12:18.246779 2024-09-11 09:12:18.246784 2bf4ee3e-937c-473e-a588-82d4b9d931f8 {"md5": "67ac16a8a20fc2b8a5fd4a9eb5a07c9c", "pid": "96563860X", "note": [{"label": ["Gebiet zwischen Innerer Südvorstadt und Connewitz"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4708270-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)96563860X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4708270-7", "source": "GND"}], "variant_access_point": ["Äußere Südvorstadt (Leipzig)"], "authorized_access_point": "Leipzig- Äußere Südvorstadt"} 1 +2024-09-11 09:12:18.310634 2024-09-11 09:12:18.310639 39c9dffe-2bc9-47b7-8997-95101f670b36 {"md5": "7b65f271945248c4f9148525746c9cfc", "pid": "964991608", "note": [{"label": ["Gemeinde im Kt. Neuenburg"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4696241-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)964991608", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4696241-4", "source": "GND"}], "variant_access_point": ["Ponts-de-Martel, Les", "LesPonts-de-Martel", "Ponts-de-Martel"], "authorized_access_point": "Les Ponts-de-Martel"} 1 +2024-09-11 09:12:18.383631 2024-09-11 09:12:18.383641 81b09fac-0ec7-4e70-a2db-9c1650c0564e {"md5": "02a75ddfa14fff5163f86010a94476a5", "pid": "964462427", "note": [{"label": ["Ehemaliges Amt in der Region Süddänemark"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Region Midtjylland"}], "related": [{"authorized_access_point": "Amt Skanderborg"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)997977485", "source": "GND"}, {"type": "bf:Nbn", "value": "094419019", "source": "ZBW"}], "authorized_access_point": "Vejle (Amt)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4685636-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)964462427", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4685636-5", "source": "GND"}], "variant_access_point": ["Vejle (Amt)", "Vejle Amt", "Vejle Amtskommune"], "authorized_access_point": "Amt Vejle"} 1 +2024-09-11 09:12:18.460686 2024-09-11 09:12:18.460694 51f3b824-682b-427b-a1d8-abfd455136fc {"md5": "786c99e172022f148b657a1e4e6e1d9a", "pid": "96411822X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Anger-Crottendorf"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4679998-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)96411822X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4679998-9", "source": "GND"}], "variant_access_point": ["Anger-Crottendorf (Leipzig)"], "authorized_access_point": "Leipzig-Anger-Crottendorf"} 1 +2024-09-11 09:12:18.533737 2024-09-11 09:12:18.533741 b9babfb2-3043-4af7-9eff-b1cef689dc16 {"md5": "dfa86d19c16059537804e86ef192f0d6", "pid": "963982559", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Saudi-Arabien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4677123-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963982559", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4677123-2", "source": "GND"}], "variant_access_point": ["Nordwestliches Saudi-Arabien"], "authorized_access_point": "Saudi-Arabien - Nordwest"} 1 +2024-09-11 09:12:18.614728 2024-09-11 09:12:18.614738 e736294a-1586-48b6-b9f0-cae2153bfdb1 {"md5": "999b2fbe3cfbe3ea33eae415e3758278", "pid": "963957635", "note": [{"label": ["Stadtteil von Aalen, bis 1972 selbständig, 1972 zu Wasseralfingen eingemeindet, 1975 mit diesem nach Aalen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Wasseralfingen-Hofen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4676373-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963957635", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4676373-9", "source": "GND"}], "variant_access_point": ["Hofen (Aalen-Hofen)"], "authorized_access_point": "Aalen-Hofen"} 1 +2024-09-11 09:12:18.693199 2024-09-11 09:12:18.693204 094707cf-7336-4a12-a8b5-476dae8b1c88 {"md5": "5f0ca35b11291269ae3f02b0da472a31", "pid": "963614673", "note": [{"label": ["Internet - http://www.ev-kg-breckerfeld.de/j-kg/?page_id=71"], "noteType": "dataSource"}, {"label": ["Im 14. Jh. entstandene Kirche in Breckerfeld (Ennepe-Ruhr-Kreis, Westfalen), einzige gotische Basilika Westfalens, ehem. kath. Pfarrkirche St. Jakobus"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Breckerfeld"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4668633-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963614673", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4668633-2", "source": "GND"}], "variant_access_point": ["Jakobus-Kirche (Breckerfeld)", "Evangelische Pfarrkirche (Breckerfeld)", "Evangelische Jakobus-Kirche (Breckerfeld)", "Ev. Kirche (Breckerfeld)"], "authorized_access_point": "Jakobus-Kirche Breckerfeld (Breckerfeld)"} 1 +2024-09-11 09:12:18.75837 2024-09-11 09:12:18.758374 73cffcd5-3a9a-497e-9592-8ffcf80571fb {"md5": "a1cf916095e4c7f74b472e733f80a3ac", "pid": "963462539", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Scheffau (Lindau, Bodensee)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1246023-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963462539", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1246023-0", "source": "GND"}], "variant_access_point": ["Scheffau (Scheidegg)"], "authorized_access_point": "Scheidegg-Scheffau"} 1 +2024-09-11 09:12:18.854072 2024-09-11 09:12:18.854075 b2b08f02-dc95-4ea1-90e2-bf0948c76e97 {"md5": "6c4c1ac9728d76c9b645f19ecd538b2a", "pid": "963082132", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Köniz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4659061-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)963082132", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4659061-4", "source": "GND"}], "authorized_access_point": "Schloss Köniz (Köniz)"} 1 +2024-09-11 09:12:18.91407 2024-09-11 09:12:18.914074 d69b1e30-ee23-4603-9e0c-f57d7e68534e {"md5": "9d39e92a7a1f7779eb201b6752bc5382", "pid": "962048879", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=161519644"], "noteType": "dataSource"}, {"label": ["liegt in den Homolje-Bergen nahe der Städte Jagodina und Despotovac"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Jagodina"}, {"authorized_access_point": "Despotovac"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4644341-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)962048879", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4644341-1", "source": "GND"}], "variant_access_point": ["Manasiya", "Klosteranlage Manasija", "Klosteranlage Resava"], "authorized_access_point": "Manasija"} 1 +2024-09-11 09:12:18.979904 2024-09-11 09:12:18.979908 ea533f1e-6c3c-4194-b1c7-d21ba7df2668 {"md5": "51403ab1c4d5f6477f6131e0fcf14802", "pid": "961594519", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Plaußig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10018865-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)961594519", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)10018865-5", "source": "GND"}], "variant_access_point": ["Plaußig (Leipzig)"], "authorized_access_point": "Leipzig-Plaußig"} 1 +2024-09-11 09:12:19.05153 2024-09-11 09:12:19.051532 d776c6c7-c5be-4c17-9454-39406ca50eed {"md5": "dd0be60184c22bcd8b4392f173b29821", "pid": "961594497", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Lindenthal_(Leipzig)&oldid=225715822"], "noteType": "dataSource"}, {"label": ["Ortsteil von Leipzig seit 1.1.1999"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Lindenthal (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10018863-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)961594497", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)10018863-1", "source": "GND"}], "variant_access_point": ["Lindenthal (Leipzig)"], "authorized_access_point": "Leipzig-Lindenthal"} 1 +2024-09-11 09:12:19.119563 2024-09-11 09:12:19.119571 d55dd5be-1306-4c17-a1b6-df9069b05d71 {"md5": "3135b85e324070babaa15a8bb6681101", "pid": "961594454", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Wiederitzsch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10018856-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)961594454", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)10018856-4", "source": "GND"}], "variant_access_point": ["Wiederitzsch (Leipzig)"], "authorized_access_point": "Leipzig-Wiederitzsch"} 1 +2024-09-11 09:12:20.517796 2024-09-11 09:12:20.517799 b1607336-bc27-4c43-9844-11956e6cf38b {"md5": "574d49fcd267cf575dec8846263583b8", "pid": "955960134", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2175760-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955960134", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)2175760-4", "source": "GND"}], "variant_access_point": ["Mockau-Ost"], "authorized_access_point": "Leipzig-Mockau-Ost"} 1 +2024-09-11 09:12:19.185719 2024-09-11 09:12:19.185723 86493682-c343-4c25-a200-9a7289e48fde {"md5": "c8659f929f4429b74a648f5eeeb4eced", "pid": "961395923", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Zawid%C3%B3w"], "noteType": "dataSource"}, {"label": ["Seidenberg liegt seit 1945 im polnischen Teil der Oberlausitz"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4633601-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)961395923", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4633601-1", "source": "GND"}], "variant_access_point": ["Seidenberg", "Seidenberg O.-L", "Zawidow"], "authorized_access_point": "Zawidów"} 1 +2024-09-11 09:12:19.245235 2024-09-11 09:12:19.245241 01600014-14a4-4219-b1ec-854558b36dbc {"md5": "19afa0bcd5f8911aebd9ff14277abb5a", "pid": "960863664", "note": [{"label": ["Ortsteil seit 1.7.1997"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Seehausen (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4624158-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)960863664", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4624158-9", "source": "GND"}], "variant_access_point": ["Seehausen (Leipzig)"], "authorized_access_point": "Leipzig-Seehausen"} 1 +2024-09-11 09:12:19.318969 2024-09-11 09:12:19.318977 cea00842-27ad-4605-9ca3-7187fd896147 {"md5": "cb61f9ea388e94aa88fe6921787c17da", "pid": "960833919", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4623386-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)960833919", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4623386-6", "source": "GND"}], "variant_access_point": ["Marienbrunn (Leipzig)"], "authorized_access_point": "Leipzig-Marienbrunn"} 1 +2024-09-11 09:12:19.396057 2024-09-11 09:12:19.396065 1047d31c-85b5-4f04-a8ae-c72b3c2559b0 {"md5": "e9b05662bacc68e4130de1d0e924bde0", "pid": "960396268", "note": [{"label": ["Ballungsraum Leipzig-Halle(Saale)-Bitterfeld, ehemals \\"Chemiedreieck\\" in Mittelsachsen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4617642-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)960396268", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4617642-1", "source": "GND"}], "variant_access_point": ["Halle-Leipzig-Bitterfeld-Gebiet", "Leipzig-Halle-Bitterfeld-Gebiet", "Bitterfeld-Leipzig-Halle-Gebiet", "Chemiedreieck"], "authorized_access_point": "Leipzig-Halle-Bitterfeld - Region"} 1 +2024-09-11 09:12:19.465572 2024-09-11 09:12:19.465576 4cda808b-2062-4872-9eb2-19f53e6a55ea {"md5": "6dab26620c16d7ad8a30b7b0fea8f043", "pid": "960085726", "note": [{"label": ["Stadtteil von Leipzig im Stadtbezirk Alt-West seit 1.1.2000, 1.1.1994-31.12.1999 Ortsteil von Bienitz, früher Ort im Kreis Leipzig"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Bienitz-Burghausen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4611475-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)960085726", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4611475-0", "source": "GND"}], "variant_access_point": ["Burghausen (Leipzig)"], "authorized_access_point": "Leipzig-Burghausen"} 1 +2024-09-11 09:12:19.532192 2024-09-11 09:12:19.532195 bd829160-8f6b-4643-87f0-dffd09f8c1b8 {"md5": "8d0d85d6649a1d5b05cb7e0604887e9b", "pid": "959934464", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Ostentrop&oldid=243213300"], "noteType": "dataSource"}, {"label": ["Seit 01.07.1969 Ortsteil von Finnentrop (Kreis Olpe), vorher selbstständig"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Finnentrop"}, {"authorized_access_point": "Ostentrop"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4608675-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959934464", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4608675-4", "source": "GND"}], "authorized_access_point": "Finnentrop-Ostentrop"} 1 +2024-09-11 09:12:19.602295 2024-09-11 09:12:19.602298 590e5fb0-64ce-488c-a45e-95485e1f685a {"md5": "cc4d63de2425c2b86bb5c2f8162cd5b6", "pid": "959918612", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4608170-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959918612", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4608170-7", "source": "GND"}], "variant_access_point": ["Gouvernement Kowno", "Gouvernement Kovno", "Gouvernement Kaunas"], "authorized_access_point": "Kaunas (Gouvernement)"} 1 +2024-09-11 09:12:19.677861 2024-09-11 09:12:19.677866 0624ca1e-007f-48e6-a7fc-9015053cb189 {"md5": "f646ce938b90395fe91ad6e503252ee5", "pid": "959788719", "note": [{"label": ["Ortsteile seit 1995"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Plaußig"}, {"authorized_access_point": "Portitz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4605550-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959788719", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4605550-2", "source": "GND"}], "variant_access_point": ["Plaußig-Portitz (Leipzig)"], "authorized_access_point": "Leipzig-Plaußig-Portitz"} 1 +2024-09-11 09:12:19.726135 2024-09-11 09:12:19.726139 66401ce6-490e-4c35-aa2d-7463efa174fd {"md5": "03ffa3371f6cce678363a44b14e1fcd2", "pid": "959747575", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Monroe_(Wisconsin)&oldid=231105462"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/10007977-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959747575", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)10007977-5", "source": "GND"}], "authorized_access_point": "Monroe, Wis."} 1 +2024-09-11 09:12:20.428333 2024-09-11 09:12:20.428339 b78d5027-40a8-4239-ba09-eeceaa014c20 {"md5": "56a9cba7ab58d2386f2cc16441ad4d58", "pid": "956443613", "note": [{"label": ["Stadtteil von Leipzig seit 1.1.1999"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Liebertwolkwitz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5312244-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)956443613", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5312244-6", "source": "GND"}], "variant_access_point": ["Liebertwolkwitz (Leipzig)"], "authorized_access_point": "Leipzig-Liebertwolkwitz"} 1 +2024-09-11 09:12:19.790893 2024-09-11 09:12:19.790897 bd77d496-dba3-4066-95f9-7559583a623f {"md5": "1caaf50b3c05bb0c1fca9da27aa7ccd9", "pid": "959369872", "note": [{"label": ["seit 1999 große Teile der ehem. W. Grünberg u. Landsberg, sowie einen kleinen Teil der ehem. W. Lissa", "Ansetzung abweichend von § 441,1"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)992104130", "source": "GND"}, {"type": "bf:Nbn", "value": "094409730", "source": "ZBW"}], "authorized_access_point": "Lubuskie (Woiwodschaft)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4596737-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)959369872", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4596737-4", "source": "GND"}], "variant_access_point": ["Województwo Lubuskie", "Lebus (Woiwodschaft)"], "authorized_access_point": "Woiwodschaft Lebus"} 1 +2024-09-11 09:12:19.862133 2024-09-11 09:12:19.862137 19bd401a-6d9d-4d29-bce2-3802d9796d01 {"md5": "cd56412dfcbee836b0f19415e3c7cb43", "pid": "958777055", "note": [{"label": ["Ehemalige Gemeinde und heute politisch unselbstständige Ortschaft in der Provinz Groningen. Fusionierte zum 1. Januar 2019 mit De Marne, Winsum und Eemsmond zur neuen Gemeinde \\"Het Hogeland\\""], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Het Hogeland"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4585822-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)958777055", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4585822-6", "source": "GND"}], "variant_access_point": ["Gemeinde Bedum", "Gemeente Bedum", "Het Hogeland- Bedum"], "authorized_access_point": "Bedum"} 1 +2024-09-11 09:12:19.934148 2024-09-11 09:12:19.934151 146c4ef2-1ef6-4dfb-b682-b7817c8be5e2 {"md5": "ad5baf79a8ea10c80311929c8777eba9", "pid": "958014639", "note": [{"label": ["H hist. Stätten; Internet - http://www.schwante.de/schloesser.htm"], "noteType": "dataSource"}, {"label": ["Erbaut auf einer mittelalterlichen Burganlage zwischen 1741 und 1743."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Schwante"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4570933-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)958014639", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4570933-6", "source": "GND"}], "authorized_access_point": "Schloss Schwante"} 1 +2024-09-11 09:12:20.008251 2024-09-11 09:12:20.008255 faca5f97-69e5-44d3-900c-f3e48de8a11f {"md5": "6f9a69e76023d6aebb4645de234369b5", "pid": "957753551", "note": [{"label": ["Insel der Komoren"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Komoren (Archipel)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4566491-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)957753551", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4566491-2", "source": "GND"}], "variant_access_point": ["Nwami", "Ndzouani"], "authorized_access_point": "Anjouan (Insel)"} 1 +2024-09-11 09:12:20.089652 2024-09-11 09:12:20.089656 86e132d6-5374-48e4-872e-222d5cc1fe61 {"md5": "2072432d818ee3aa03fb40a8da0383d8", "pid": "957586973", "note": [{"label": ["Legendäre versunkene Stadt in d. Rub al-Khali vermutet, in Oman ausgegraben"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4562198-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)957586973", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4562198-6", "source": "GND"}], "variant_access_point": ["Ubar"], "authorized_access_point": "Wabar"} 1 +2024-09-11 09:12:20.161115 2024-09-11 09:12:20.161124 8e19acb6-3ebe-4714-8ba9-c6cad1617d51 {"md5": "9904afabf53c82e4eee914596c71b899", "pid": "957565445", "note": [{"label": ["Stadtteil im Nordosten Leipzigs seit 1915"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Mockau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4561624-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)957565445", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4561624-3", "source": "GND"}], "variant_access_point": ["Mockau (Leipzig)"], "authorized_access_point": "Leipzig-Mockau"} 1 +2024-09-11 09:12:20.215424 2024-09-11 09:12:20.215428 f0548031-2b49-41f0-9ed3-add945740062 {"md5": "b1d01d5be45fc1e5777af38c3dc61fa1", "pid": "957211430", "note": [{"label": ["Stadt im Kreis Spree-Neiße, Brandenburg"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4555925-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)957211430", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4555925-9", "source": "GND"}], "variant_access_point": ["Drjowk", "Amtsfreie Gemeinde Stadt Drebkau", "Bźezamtowa Gmejna Město Drjowk", "Drepkau"], "authorized_access_point": "Drebkau"} 1 +2024-09-11 09:12:20.278989 2024-09-11 09:12:20.278994 00512af4-1296-4119-8ee2-8f5971699f8e {"md5": "b567c9ca4033c1f96204a4e9eb887efc", "pid": "956443877", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Engelsdorf (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5312270-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)956443877", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5312270-7", "source": "GND"}], "variant_access_point": ["Engelsdorf (Leipzig)"], "authorized_access_point": "Leipzig-Engelsdorf"} 1 +2024-09-11 09:12:20.349857 2024-09-11 09:12:20.349868 68f88ada-ca03-4666-97e1-6b78cccbd073 {"md5": "e3141961edec8cf1f9acb139bb84eb44", "pid": "956443842", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Baalsdorf&oldid=193358956"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Engelsdorf-Baalsdorf"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5312267-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)956443842", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5312267-7", "source": "GND"}], "variant_access_point": ["Baalsdorf (Leipzig)"], "authorized_access_point": "Leipzig-Baalsdorf"} 1 +2024-09-11 09:12:20.606224 2024-09-11 09:12:20.606227 e97716fc-b146-40a3-8a19-cb37030d680b {"md5": "edf33615c708c13eed22883b0e03916a", "pid": "955820049", "note": [{"label": ["Homepage - https://www.deiningen.de/", "Wikipedia - https://de.wikipedia.org/wiki/Deiningen"], "noteType": "dataSource"}, {"label": ["Ort im Landkreis Donau-Ries, Schwaben, seit Urnenfelderkultur (1300-800 v.Chr.) besiedelt, 760 urkundl. erwähnt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4531247-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955820049", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4531247-3", "source": "GND"}], "authorized_access_point": "Deiningen"} 1 +2024-09-11 09:12:20.681347 2024-09-11 09:12:20.68135 860b579b-f493-4d75-9473-01bb8bd5915c {"md5": "a1051065a2b7db3df40250b3278a40d2", "pid": "955573246", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Engelsdorf-Althen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2174812-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955573246", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)2174812-3", "source": "GND"}], "variant_access_point": ["Althen (Leipzig)"], "authorized_access_point": "Leipzig-Althen"} 1 +2024-09-11 09:12:20.731558 2024-09-11 09:12:20.73156 43731e87-2610-4ba1-861c-5bf16f98ec95 {"md5": "ee3e590872d23047b91ac9472e7acdfb", "pid": "955498058", "note": [{"label": ["Stadtteil von Leipzig seit 1890"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Thonberg (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4527974-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955498058", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4527974-3", "source": "GND"}], "variant_access_point": ["Thonberg (Leipzig)"], "authorized_access_point": "Leipzig-Thonberg"} 1 +2024-09-11 09:12:20.796006 2024-09-11 09:12:20.79601 1e798fbb-ff34-4f65-b0b0-dc50240e99c3 {"md5": "b36e947f483ea18e756d46564211f884", "pid": "955495768", "note": [{"label": ["Homepage - http://www.rabenstein.gv.at"], "noteType": "dataSource"}, {"label": ["Marktgemeinde im Bezirk Sankt Pölten-Land, Niederösterreich"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4527754-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955495768", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4527754-0", "source": "GND"}], "variant_access_point": ["Rabenstein (Pielach)", "Marktgemeinde Rabenstein an der Pielach"], "authorized_access_point": "Rabenstein an der Pielach"} 1 +2024-09-11 09:12:20.869763 2024-09-11 09:12:20.869766 f7e9bb2f-b183-493a-bcdf-fe44aa9e1029 {"md5": "af65fe4b68cf33bc3b990211f24039bb", "pid": "955090547", "note": [{"label": ["Ortsteil von Grünberg im Landkreis Gießen, Hessen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Grünberg (Landkreis Gießen)"}, {"authorized_access_point": "Lehnheim"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3035028-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)955090547", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)3035028-1", "source": "GND"}], "variant_access_point": ["Grünberg (Landkreis Gießen-Lehnheim)", "Lehnheim (Grünberg-Lehnheim)"], "authorized_access_point": "Grünberg-Lehnheim"} 1 +2024-09-11 09:12:20.954651 2024-09-11 09:12:20.954662 dff3c6bf-98ff-43db-93a8-3cae71f00dab {"md5": "ffb8bf12185806674f678af675b5bc4a", "pid": "954472683", "note": [{"label": ["Homepage - http://de.wikipedia.org/wiki/Pommritz"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Pommritz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5289232-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)954472683", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5289232-3", "source": "GND"}], "variant_access_point": ["Pommritz (Hochkirch-Pommritz)", "Bukecy-Pomorcy"], "authorized_access_point": "Hochkirch-Pommritz"} 1 +2024-09-11 09:12:21.025254 2024-09-11 09:12:21.025259 ed3a8a26-a7e2-417a-ac93-559581aa6c3b {"md5": "13b1bb7dad0d78c2398367a652d02d43", "pid": "954071832", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4508419-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)954071832", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4508419-1", "source": "GND"}], "authorized_access_point": "Leipzig-West"} 1 +2024-09-11 09:12:21.094093 2024-09-11 09:12:21.094098 84bf1dff-017b-4065-880e-4be87d385af4 {"md5": "918e744abd10c5a6792162ed7df20507", "pid": "954064593", "note": [{"label": ["Politische Gemeinde im Kanton Neuenburg"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Kanton Neuenburg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4508222-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)954064593", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4508222-4", "source": "GND"}], "authorized_access_point": "Cressier (Kanton Neuenburg)"} 1 +2024-09-11 09:12:21.180847 2024-09-11 09:12:21.180852 35db9829-91ed-4d44-8e1e-d43341839977 {"md5": "b4da73575bab0ca607ff749e8bd7adc6", "pid": "953168697", "note": [{"label": ["Saalkirche 1848 nach Plänen von L. Persius erbaut, ausgeführt von Otto Baensch"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Heringsdorf (Seebad)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4492872-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)953168697", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4492872-5", "source": "GND"}], "variant_access_point": ["Evangelische Kirche im Walde (Heringsdorf, Seebad)"], "authorized_access_point": "Kirche im Walde (Heringsdorf, Seebad)"} 1 +2024-09-11 09:12:21.250232 2024-09-11 09:12:21.250238 d040a2c8-0984-4d1b-a133-c5bec5005194 {"md5": "1c785418c4e14d425dd305f3efd00980", "pid": "953105024", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Reudnitz (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4491767-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)953105024", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4491767-3", "source": "GND"}], "variant_access_point": ["Reudnitz (Leipzig)"], "authorized_access_point": "Leipzig-Reudnitz"} 1 +2024-09-11 09:12:21.332511 2024-09-11 09:12:21.332516 e6fbc016-00f3-46dd-8dab-cd78ae074ab1 {"md5": "eadb2e63f16da5f88eec61a55625f6e2", "pid": "952110512", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=228930289"], "noteType": "dataSource"}, {"label": ["Fyns Amt war eine dänische Amtskommune."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Region Syddanmark"}], "related": [{"authorized_access_point": "Amt Odense"}, {"authorized_access_point": "Amt Svendborg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4477066-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)952110512", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4477066-2", "source": "GND"}], "variant_access_point": ["Amt Fünen", "Fyns Amt", "Fyns (Amt)", "Fyn Amtskommune", "Fyns Amtskommune", "Fünen (Amt)"], "authorized_access_point": "Amt Fyn"} 1 +2024-09-11 09:12:21.413327 2024-09-11 09:12:21.413332 243013b7-1c55-466f-8f6e-558dcf4aeaf8 {"md5": "9982aad101027739b728dc6377f5b25e", "pid": "951677268", "note": [{"label": ["Stadtteil von Leipzig seit 1930"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Thekla"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4473338-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)951677268", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4473338-0", "source": "GND"}], "variant_access_point": ["Thekla (Leipzig)"], "authorized_access_point": "Leipzig-Thekla"} 1 +2024-09-11 09:12:21.490238 2024-09-11 09:12:21.490243 58bdedbd-9a5f-48f6-ad1f-d1b9ea8b861e {"md5": "97ead9c677a38063ce8fc9429ce9bb72", "pid": "951510282", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Saudi-Arabien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4470221-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)951510282", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4470221-8", "source": "GND"}], "variant_access_point": ["Südwestliches Saudi-Arabien"], "authorized_access_point": "Saudi-Arabien - Südwest"} 1 +2024-09-11 09:12:21.563769 2024-09-11 09:12:21.563773 2470635a-a415-4423-b230-ca797471fad5 {"md5": "2b2aed4b5af501b0109dab549f2aef55", "pid": "951510274", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Saudi-Arabien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4470220-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)951510274", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4470220-6", "source": "GND"}], "variant_access_point": ["Westliches Saudi-Arabien"], "authorized_access_point": "Saudi-Arabien - West"} 1 +2024-09-11 09:12:21.629779 2024-09-11 09:12:21.629782 7a8fe126-8727-42b4-8e14-1e80a51697e4 {"md5": "29978cec37fecd688f2ed2467ebfe47b", "pid": "951510258", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Saudi-Arabien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4470217-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)951510258", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4470217-6", "source": "GND"}], "variant_access_point": ["Südliches Saudi-Arabien"], "authorized_access_point": "Saudi-Arabien - Süd"} 1 +2024-09-11 09:12:21.692884 2024-09-11 09:12:21.692888 a3171007-0b58-4f5f-bbeb-aa36906afd89 {"md5": "024b71fdce49fe9b978413814b4a9f77", "pid": "95135793X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Altmühltal"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)992670160", "source": "GND"}, {"type": "bf:Nbn", "value": "094412634", "source": "ZBW"}], "authorized_access_point": "Oberes Altmühltal"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4467681-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)95135793X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4467681-5", "source": "GND"}], "variant_access_point": ["Oberes Altmühltal", "Obere Altmühl"], "authorized_access_point": "Obere-Altmühl-Tal"} 1 +2024-09-11 09:12:21.750321 2024-09-11 09:12:21.750324 bc99c905-3ab5-46cb-bb47-91dfdcd5832b {"md5": "f7c1b273acd824897202bfe7ecb8c043", "pid": "950649155", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4457908-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950649155", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4457908-1", "source": "GND"}], "variant_access_point": ["Campos (Jordão)"], "authorized_access_point": "Campos do Jordão"} 1 +2024-09-11 09:12:21.814197 2024-09-11 09:12:21.814201 f400e22a-fc89-4ab5-bfdf-9a48da9dfb44 {"md5": "f86254f24480c14c68faac35c58e9cdc", "pid": "950556149", "note": [{"label": ["Gebiet um Altes Messegelände und Bayrischen Bahnhof"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4456228-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950556149", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4456228-7", "source": "GND"}], "variant_access_point": ["Äußere Südostvorstadt (Leipzig)"], "authorized_access_point": "Leipzig- Äußere Südostvorstadt"} 1 +2024-09-11 09:12:21.886072 2024-09-11 09:12:21.886076 4d1d3ecf-a2d3-43ea-88fa-a12e60e59c4c {"md5": "e178faef3929d2a136712e2901f08704", "pid": "950356190", "note": [{"label": ["Ortsteil von Leipzig seit 1930"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Schönau (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4452671-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950356190", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4452671-4", "source": "GND"}], "variant_access_point": ["Schönau (Leipzig)"], "authorized_access_point": "Leipzig-Schönau"} 1 +2024-09-11 09:12:21.961002 2024-09-11 09:12:21.961007 23e0bc1c-7120-4f8b-b4a8-b9bcac37956f {"md5": "71b8c54cdc458b6783a3672eaef07522", "pid": "950339490", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Lausen_(Leipzig)&oldid=206629090"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Lausen (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4452519-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950339490", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4452519-9", "source": "GND"}], "variant_access_point": ["Lausen (Leipzig)"], "authorized_access_point": "Leipzig-Lausen"} 1 +2024-09-11 09:12:22.022439 2024-09-11 09:12:22.022443 2769ec46-4687-4ee3-9b16-fc78d47461a1 {"md5": "3e9a24157d498d879317d60bbe6c894b", "pid": "950339407", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Großzschocher"}, {"authorized_access_point": "Großzschocher-Windorf"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4452517-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950339407", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4452517-5", "source": "GND"}], "variant_access_point": ["Großzschocher (Leipzig)"], "authorized_access_point": "Leipzig-Großzschocher"} 1 +2024-09-11 09:12:22.079974 2024-09-11 09:12:22.07998 ee05d0c1-096e-4ff8-8a52-077edfa6dfc6 {"md5": "96eff51c65a283680924b4edc21fb5c3", "pid": "950338338", "note": [{"label": ["Ortsteil von Leipzig seit 1922"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Windorf "}, {"authorized_access_point": "Großzschocher-Windorf"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4452486-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950338338", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4452486-9", "source": "GND"}], "variant_access_point": ["Windorf (Leipzig)"], "authorized_access_point": "Leipzig-Windorf"} 1 +2024-09-11 09:12:22.141609 2024-09-11 09:12:22.141614 f85111ab-3385-4e84-bb56-b243a473d24e {"md5": "ac94e8053772a090ab5466dcdacf6dc1", "pid": "95033829X", "note": [{"label": ["Ortsteil von Leipzig seit 1930"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Knautkleeberg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4452484-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)95033829X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4452484-5", "source": "GND"}], "variant_access_point": ["Knautkleeberg (Leipzig)"], "authorized_access_point": "Leipzig-Knautkleeberg"} 1 +2024-09-11 09:12:22.20516 2024-09-11 09:12:22.205247 82a9a25d-4be4-4c68-80a2-9dbcbc892da5 {"md5": "9910f6e85488c8145ccf0fdea8447e43", "pid": "950338230", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Knauthain"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4452482-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950338230", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4452482-1", "source": "GND"}], "variant_access_point": ["Knauthain (Leipzig)"], "authorized_access_point": "Leipzig-Knauthain"} 1 +2024-09-11 09:12:22.275403 2024-09-11 09:12:22.275407 d8605024-ad22-453d-a10f-245d6e91fc72 {"md5": "9492c4b6a8a2988b4c63c074c48881c8", "pid": "950338184", "note": [{"label": ["Ortsteil von Leipzig seit 1910"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Meusdorf (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4452479-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950338184", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4452479-1", "source": "GND"}], "variant_access_point": ["Meusdorf (Leipzig)"], "authorized_access_point": "Leipzig-Meusdorf"} 1 +2024-09-11 09:12:22.348878 2024-09-11 09:12:22.348887 f97a940e-1837-45e4-a8e1-30e3fad6a165 {"md5": "56d4d59e78b76987b49676768a82ecf7", "pid": "950332429", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Schönefeld (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4452359-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950332429", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4452359-2", "source": "GND"}], "variant_access_point": ["Schönefeld (Leipzig)"], "authorized_access_point": "Leipzig-Schönefeld"} 1 +2024-09-11 09:12:22.418785 2024-09-11 09:12:22.418789 83dac16c-b3b0-4343-9952-c69b19459663 {"md5": "2c8a5506e4107b19176bc34947f9b223", "pid": "950332011", "note": [{"label": ["Ortsteil von Leipzig seit 1905"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Dösen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4452347-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950332011", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4452347-6", "source": "GND"}], "variant_access_point": ["Dösen (Leipzig)"], "authorized_access_point": "Leipzig-Dösen"} 1 +2024-09-11 09:12:22.495228 2024-09-11 09:12:22.495232 d45325ff-b0ba-4c78-8c54-851412ca319b {"md5": "8a6d8a6a292da0a5781ae02f18fb2fed", "pid": "950331821", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Probstheida"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4452343-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950331821", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4452343-9", "source": "GND"}], "variant_access_point": ["Probstheida (Leipzig)"], "authorized_access_point": "Leipzig-Probstheida"} 1 +2024-09-11 09:12:22.578634 2024-09-11 09:12:22.578644 e9645765-3822-4da3-a208-e92e361f79b7 {"md5": "cef5b66b30993156bc65fd9898d9cca5", "pid": "950315354", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Stötteritz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4452197-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950315354", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4452197-2", "source": "GND"}], "variant_access_point": ["Stötteritz (Leipzig)"], "authorized_access_point": "Leipzig-Stötteritz"} 1 +2024-09-11 09:12:22.657925 2024-09-11 09:12:22.657934 06750840-b409-46dd-9c8d-b2eb8b44ca58 {"md5": "10b839e89aa5ad3a3ae0055b316a122e", "pid": "95020109X", "note": [{"label": ["Ortsteil von Leipzig"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Schleußig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4450192-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)95020109X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4450192-4", "source": "GND"}], "variant_access_point": ["Schleußig (Leipzig)", "Leipzig-Schleussig"], "authorized_access_point": "Leipzig-Schleußig"} 1 +2024-09-11 09:12:22.719118 2024-09-11 09:12:22.719122 5e4a82e5-33be-4a33-b92f-768d357ac6ff {"md5": "9c34b9847e76b38d6f3990f02b457551", "pid": "950199850", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Kleinzschocher"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4450126-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950199850", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4450126-2", "source": "GND"}], "variant_access_point": ["Kleinzschocher (Leipzig)", "Leipzig-Kl.-Zschocher", "Leipzig-Zschocher"], "authorized_access_point": "Leipzig-Kleinzschocher"} 1 +2024-09-11 09:12:22.773634 2024-09-11 09:12:22.773643 b6b7646c-e279-439b-9963-13a118b1eab7 {"md5": "cb35c1ddc93543ab7406888e457f6c3c", "pid": "950199214", "note": [{"label": ["Evangelische Kirche im ehemaligen Konzentrationslager, 1967 erbaut"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Dachau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4450115-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950199214", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4450115-8", "source": "GND"}], "authorized_access_point": "Versöhnungskirche (Dachau)"} 1 +2024-09-11 09:12:22.848136 2024-09-11 09:12:22.848141 c05b8fa4-395a-409d-a497-c7f4ef451fac {"md5": "b08ffe59e022540c0c9ea167cec8e159", "pid": "950168637", "note": [{"label": ["Wikipedia - https://ru.wikipedia.org/w/index.php?oldid=138690191"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4449423-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)950168637", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4449423-3", "source": "GND"}], "variant_access_point": ["Pyatigorsk", "Pjatigorsk (Stavropolkreis)", "Пятигорск (Ставропольский край)"], "authorized_access_point": "Pjatigorsk"} 1 +2024-09-11 09:12:22.916772 2024-09-11 09:12:22.916776 e31c4c9b-216c-4634-8067-98f04b87f8e9 {"md5": "31b0f0226caae1452216c2b6adcf8c6c", "pid": "949740861", "note": [{"label": ["Homepage - http://www.stuenz.de/?path=content&contentid=10"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Leipzig-Sellerhausen"}, {"authorized_access_point": "Leipzig-Stünz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4442450-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949740861", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4442450-4", "source": "GND"}], "variant_access_point": ["Sellerhausen-Stünz (Leipzig)"], "authorized_access_point": "Leipzig-Sellerhausen-Stünz"} 1 +2024-09-11 09:12:22.99529 2024-09-11 09:12:22.995295 f11c9b13-3f13-40ae-9ace-92b47773ba4e {"md5": "de19a199fab063da67d5328f59aa5d80", "pid": "949647314", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Egloffstein"}, {"authorized_access_point": "Egloffstein-Bieberbach"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4440857-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949647314", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4440857-2", "source": "GND"}], "authorized_access_point": "Bieberbach (Egloffstein)"} 1 +2024-09-11 09:12:23.076187 2024-09-11 09:12:23.076192 5fce5165-a1c6-4961-ad7a-cb5f146c81f9 {"md5": "4403edfa760f25747d296e43640d3425", "pid": "949641804", "note": [{"label": ["Kleinstadt im Lkr. Zwickau"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Landkreis Zwickau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4440677-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949641804", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4440677-0", "source": "GND"}], "variant_access_point": ["Hartenstein (Zwickauer Land)", "Stadt Hartenstein", "Hartenstein", "Hartenstein bei Zwickau"], "authorized_access_point": "Hartenstein (Landkreis Zwickau)"} 1 +2024-09-11 09:12:23.198854 2024-09-11 09:12:23.198858 8f3ab30b-6ade-47d0-bda5-25df15353590 {"md5": "855d4141a9180b7095cfb978423bf3a0", "pid": "94963218X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rub al-Khali"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4440419-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)94963218X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4440419-0", "source": "GND"}], "variant_access_point": ["Südliche Rub al-Khali"], "authorized_access_point": "Rub al-Khali - Süd"} 1 +2024-09-11 09:12:23.258615 2024-09-11 09:12:23.25862 02883ec7-8a32-41f0-954e-182433928a5e {"md5": "d64911b262daac07cfb1ce2078dd4804", "pid": "949632163", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rub al-Khali"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4440418-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949632163", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4440418-9", "source": "GND"}], "variant_access_point": ["Nordöstliche Rub al-Khali"], "authorized_access_point": "Rub al-Khali - Nordost"} 1 +2024-09-11 09:12:23.368564 2024-09-11 09:12:23.368566 1bd7f4d6-1e3a-4112-8c47-514d87097f3b {"md5": "8a1db10a9a7161785f7ffcc774cc3d30", "pid": "949632147", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rub al-Khali"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4440417-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949632147", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4440417-7", "source": "GND"}], "variant_access_point": ["Östliche Rub al-Khali"], "authorized_access_point": "Rub al-Khali - Ost"} 1 +2024-09-11 09:12:23.416277 2024-09-11 09:12:23.416282 f6fbaf7e-dee6-4d50-a84e-9abdc87d6643 {"md5": "755bd2594eabeb674d06f1cda8274cfa", "pid": "949632120", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rub al-Khali"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4440416-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949632120", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4440416-5", "source": "GND"}], "variant_access_point": ["Südöstliche Rub al-Khali"], "authorized_access_point": "Rub al-Khali - Südost"} 1 +2024-09-11 09:12:23.463116 2024-09-11 09:12:23.463119 49c09e6a-8305-41e1-aaf1-1005677d2bc0 {"md5": "7d485d29c12eb813fbce34efe2af3dce", "pid": "949632104", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rub al-Khali"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4440415-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949632104", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4440415-3", "source": "GND"}], "variant_access_point": ["Westliche Rub al-Khali"], "authorized_access_point": "Rub al-Khali - West"} 1 +2024-09-11 09:12:23.511047 2024-09-11 09:12:23.511052 10581db2-8ccd-4f6b-ad21-11363511e447 {"md5": "2f4a6ea4cc5fb55a20cd7cf78e853d07", "pid": "949607266", "note": [{"label": ["Gemeinde im Landkreis Landshut, Niederbayern"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Landkreis Landshut"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4439953-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949607266", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4439953-4", "source": "GND"}], "authorized_access_point": "Furth (Landkreis Landshut)"} 1 +2024-09-11 09:12:23.559174 2024-09-11 09:12:23.559178 064d1aaf-84d2-42b5-a2d7-d8458133d0db {"md5": "39d87d5f522c29f224ba5c3a2899e39e", "pid": "949602310", "note": [{"label": ["Doppelort 1.1.1999 nach Leipzig eingemeindet"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Lützschena-Stahmeln"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4439654-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)949602310", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4439654-5", "source": "GND"}], "variant_access_point": ["Lützschena-Stahmeln (Leipzig)"], "authorized_access_point": "Leipzig-Lützschena-Stahmeln"} 1 +2024-09-11 09:12:23.609482 2024-09-11 09:12:23.609486 5e7327d4-4d42-46aa-bc00-b4dc7c76b826 {"md5": "8c546e36cdf73690043e12f783ac9c47", "pid": "948791659", "note": [{"label": ["Homepage - http://www.holzhausen-sachsen.de"], "noteType": "dataSource"}, {"label": ["Ortsteil von Leipzig seit 1.1.1999"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Holzhausen (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4426743-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948791659", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4426743-5", "source": "GND"}], "variant_access_point": ["Holzhausen (Leipzig)"], "authorized_access_point": "Leipzig-Holzhausen"} 1 +2024-09-11 09:12:23.659063 2024-09-11 09:12:23.659067 4ebb6912-c8d3-44e5-83a3-1012c1ce308a {"md5": "60a68af1f9c4eb630106909a75621827", "pid": "948417226", "note": [{"label": ["Kleinstadt an der Grabow im Kreis Schlawe, Regierungsbezirk Köslin, Hinterpommern, preuß. Provinz Pommern, Besiedlung durch Wenden, 2. Hälfte 13. Jh. dt. Besiedlung, 1307 urkundl. erwähnt, 1312 Stadtrecht"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Polanów"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5180619-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948417226", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5180619-8", "source": "GND"}], "variant_access_point": ["Pollnow i. Pom."], "authorized_access_point": "Pollnow"} 1 +2024-09-11 09:12:23.71099 2024-09-11 09:12:23.710993 d8caa970-4d1f-498e-aac2-4a52b42392a1 {"md5": "117b341a16eed733d418aa23610ca110", "pid": "948322292", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=239090285"], "noteType": "dataSource"}, {"label": ["Stadtteil im Süden Leipzigs seit 1.1.1891"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Lössnig (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4420041-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948322292", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4420041-9", "source": "GND"}], "variant_access_point": ["Leipzig-Lössnig", "Lößnig (Leipzig)"], "authorized_access_point": "Leipzig-Lößnig"} 1 +2024-09-11 09:12:23.762483 2024-09-11 09:12:23.762487 44b512ea-47f5-4e99-8374-d8275394d72c {"md5": "2d6021b3e306eb78ae899f8e6c9fb487", "pid": "948321156", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Dölitz (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4420038-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)948321156", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4420038-9", "source": "GND"}], "variant_access_point": ["Dölitz (Leipzig)"], "authorized_access_point": "Leipzig-Dölitz"} 1 +2024-09-11 09:12:23.82614 2024-09-11 09:12:23.826146 53bcb5c8-bfc2-4361-94f4-9ad15c7eb2f8 {"md5": "62d02f0a671ac55fc36b3da7c61b7a08", "pid": "947976248", "note": [{"label": ["Ortsteil von Leipzig seit 1999"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Mölkau"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4415593-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947976248", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4415593-1", "source": "GND"}], "variant_access_point": ["Mölkau (Leipzig)", "Mölkau-Zweinaundorf", "Lleipzig-Mölkau-Zweinaundorf"], "authorized_access_point": "Leipzig-Mölkau"} 1 +2024-09-11 09:12:23.895854 2024-09-11 09:12:23.895863 18716df0-ef92-4eea-9dc7-c9bae3462622 {"md5": "cd4d6ff98901de5e821f7808ac97b3b3", "pid": "947862730", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Juodkrant%C4%97&oldid=178982082", "GeoNames - http://geotree.geonames.org/598706/"], "noteType": "dataSource"}, {"label": ["Zweitgrößte Siedlung auf der Kurischen Nehrung in Litauen", "Im Jahre 1961 wurden die Hauptortschaften des litauischen Teiles der Kurischen Nehrung- Alksnyne, Juodkrante, Pervalka, Preila, Nida in die Stadt Neringa zusammengeschossen."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Neringa"}], "related": [{"authorized_access_point": "Schwarzort"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5175593-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947862730", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5175593-2", "source": "GND"}], "authorized_access_point": "Juodkrantė"} 1 +2024-09-11 09:12:23.971933 2024-09-11 09:12:23.971936 e7a0e03a-b75c-4d42-a51c-d2b736599f0b {"md5": "a24fe90c923250bce531dc3b2e2a2838", "pid": "947589341", "note": [{"label": ["Seeheilbad auf Usedom, Landkreis Ostvorpommern (25.7.1952-12.6.1994: (Land-)Kreis Wolgast; 1945-1952: Landkreis Usedom; 1818-1945: Kreis Usedom-Wollin), 1256 urkundl. erwähnt, 1.1.2005 mit Ahlbeck und Heringsdorf zu Dreikaiserbäder zusammengeschlossen, 1.1.2006 in Ostseebad Heringsdorf umbenannt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Dreikaiserbäder-Bansin"}, {"authorized_access_point": "Dreikaiserbäder"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5171491-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947589341", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5171491-7", "source": "GND"}], "variant_access_point": ["Seebad Bansin"], "authorized_access_point": "Bansin"} 1 +2024-09-11 09:12:24.044976 2024-09-11 09:12:24.044996 dfa7ae12-4572-467b-a7fe-8c59550490b1 {"md5": "33be9e4d672bea46bca1c7ae96081457", "pid": "947454802", "note": [{"label": ["Region in Saudi-Arabien"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4409005-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947454802", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4409005-5", "source": "GND"}], "variant_access_point": ["Yamāma", "Jamama"], "authorized_access_point": "Yamāmah"} 1 +2024-09-11 09:12:24.111493 2024-09-11 09:12:24.111499 2643ce45-6205-4cf7-993a-acd06121d787 {"md5": "ebc92289bb1d4055ce2c2132007cabc3", "pid": "947454659", "note": [{"label": ["Ort in Saudi-Arabien"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4408998-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947454659", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4408998-3", "source": "GND"}], "variant_access_point": ["Oḥod"], "authorized_access_point": "Uḥud"} 1 +2024-09-11 09:12:24.179705 2024-09-11 09:12:24.179711 d8fe726a-752f-48de-b3c7-4ec65eb6e848 {"md5": "4a17dc8041002c66fdd3a6bc8c4d28a1", "pid": "947421238", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=242946023"], "noteType": "dataSource"}, {"label": ["Hauptstadt von Udmurtien"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Ustinov"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4408789-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947421238", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4408789-5", "source": "GND"}], "variant_access_point": ["Iževsk", "Izhevsk", "Iževskij zavod", "Iž", "Ižkar", "Ижкар", "Иж"], "authorized_access_point": "Ischewsk"} 1 +2024-09-11 09:12:24.227426 2024-09-11 09:12:24.22743 e9475f91-72b4-48d8-a605-31c2acd405d1 {"md5": "457b9d150cdbe315524ea54e4f13c5d7", "pid": "947026088", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Minas Gerais"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4403767-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)947026088", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4403767-3", "source": "GND"}], "authorized_access_point": "Barbacena (Minas Gerais)"} 1 +2024-09-11 09:12:24.28299 2024-09-11 09:12:24.283001 4b020f0a-bd92-498a-9c72-3f70d360dc95 {"md5": "edd1976aed14d0f136f654efa96018a1", "pid": "946723729", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Leutzsch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4400402-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)946723729", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4400402-3", "source": "GND"}], "variant_access_point": ["Leutzsch (Leipzig)"], "authorized_access_point": "Leipzig-Leutzsch"} 1 +2024-09-11 09:12:24.346692 2024-09-11 09:12:24.346697 edf859a8-4575-46c2-86a1-227e2c9ce277 {"md5": "20262e6ce7796d8b243f11ff5b188e6c", "pid": "946606161", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=244051604"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4399100-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)946606161", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4399100-2", "source": "GND"}], "variant_access_point": ["Oststernberg (Kreis)", "Ost-Sternberg", "Kreis Ost-Sternberg", "Landkreis Ost-Sternberg"], "authorized_access_point": "Kreis Oststernberg"} 1 +2024-09-11 09:12:24.426237 2024-09-11 09:12:24.426244 2e9edae4-a835-4289-91ba-11c24751a95a {"md5": "5af46fc3a40635046234fe76a5233f2e", "pid": "945980132", "note": [{"label": ["Ort im Ar. Sélestat-Erstein, Dep. Unterelsass/Bas-Rhin, Region Grand Est (-2015: Elsass), 788 urkundl. erwähnt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Unterelsass"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4390811-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)945980132", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4390811-1", "source": "GND"}], "variant_access_point": ["Barr (Elsass)", "Barr, Elsaß"], "authorized_access_point": "Barr (Unterelsass)"} 1 +2024-09-11 09:12:24.492354 2024-09-11 09:12:24.492361 441543a3-40fc-4362-a39c-bb8236f5d844 {"md5": "b807e36d12750b3b7a12a0488a4db66b", "pid": "945917201", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4390430-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)945917201", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4390430-0", "source": "GND"}], "variant_access_point": ["Tochigi-ken", "Shimotsuke", "Yashū", "Shimotsukene", "Shimotsukeno"], "authorized_access_point": "Präfektur Tochigi"} 1 +2024-09-11 09:12:24.561116 2024-09-11 09:12:24.561123 5d871e2c-bbec-44bb-9ec3-a523e59d1a53 {"md5": "54982e3cc454ef97ff97a301cda5d0b1", "pid": "945871678", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Paris"}, {"authorized_access_point": "Palais de la Cité (Paris)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4389955-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)945871678", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4389955-9", "source": "GND"}], "authorized_access_point": "Conciergerie (Paris)"} 1 +2024-09-11 09:12:24.627669 2024-09-11 09:12:24.627673 73696b7f-e76b-4433-8d1c-4c919eeaffa2 {"md5": "22b9ba407e6d2ebabce1106087bb2134", "pid": "945385382", "note": [{"label": ["Hompage - http://city.mogilev.by/?lang=bel", "Wikipedia - https://ru.wikipedia.org/w/index.php?oldid=138576423"], "noteType": "dataSource"}, {"label": ["Stadt in Weißrussland am Dnjepr"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4384842-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)945385382", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4384842-4", "source": "GND"}], "variant_access_point": ["Mahileǔ", "Mohilev", "Mahiljou", "Mahilioŭ", "Mahiloŭ", "Mohilew", "Mogilyov", "Mogilev", "Magistrat (Mogilev)", "Mahilëŭ", "Mogilew", "Mahilëŭski Harad", "Mogilevski Gorod", "Mogilev City", "Могилев", "Могилёв"], "authorized_access_point": "Mogiljow"} 1 +2024-09-11 09:12:24.685877 2024-09-11 09:12:24.685882 195786f8-6bfb-4e3b-a183-43f31bd0e4ec {"md5": "d5c74b73e5ebbaf8da1c81bb62b8a64c", "pid": "944766021", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Eutritzsch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4380230-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)944766021", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4380230-8", "source": "GND"}], "variant_access_point": ["Eutritzsch (Leipzig)"], "authorized_access_point": "Leipzig-Eutritzsch"} 1 +2024-09-11 09:12:24.738568 2024-09-11 09:12:24.738571 33f3b5b1-57ac-406f-9c4d-f354da8ccfb0 {"md5": "7f5ec3db66d5e4ca0e492dfa36e6a03a", "pid": "944289290", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5127721-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)944289290", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5127721-9", "source": "GND"}], "authorized_access_point": "Leipzig-Ost"} 1 +2024-09-11 09:12:24.802224 2024-09-11 09:12:24.802228 903b52aa-d074-4888-89e3-8d48dc98f391 {"md5": "97a262fdc4d5943e2a1d6e18cf23294e", "pid": "94400718X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5123475-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)94400718X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5123475-0", "source": "GND"}], "variant_access_point": ["L'vivs'ka Oblast'"], "authorized_access_point": "L'vovskaja Oblast'"} 1 +2024-09-11 09:12:24.857697 2024-09-11 09:12:24.857701 fe5ab569-e248-4d44-b3e6-bf1bd76c021b {"md5": "b940e2747bd71f62a370e4fd0c642c04", "pid": "943882346", "note": [{"label": ["1994 aus den Kreisen Leipzig, Borna u. großen Teilen des Kreises Geithain gebildeter Landkreis, 1.8.2008 Eingliederung in den neugebildeten Landkreis Leipzig"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Landkreis Leipzig"}], "related": [{"authorized_access_point": "Landkreis Borna"}, {"authorized_access_point": "Landkreis Geithain"}, {"authorized_access_point": "Landkreis Leipzig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4370529-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)943882346", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4370529-7", "source": "GND"}], "variant_access_point": ["Leipziger Land (Kreis)"], "authorized_access_point": "Landkreis Leipziger Land"} 1 +2024-09-11 09:12:24.920242 2024-09-11 09:12:24.920248 e54d98df-bcc3-4073-8d2d-a8dffe935cd8 {"md5": "a469d112d989dbc865e47a2aa129d9c5", "pid": "941847934", "note": [{"label": ["Wikipedia - http://pl.wikipedia.org/w/index.php?oldid=72530956"], "noteType": "dataSource"}, {"label": ["Ort nordwestl. von Swiebodzin; bis 1810 Sitz einer Johanniter-Kommende"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Woiwodschaft Lebus"}], "related": [{"authorized_access_point": "Lagow (Kreis Oststernberg)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2138914-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)941847934", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)2138914-7", "source": "GND"}], "variant_access_point": ["Lagow (Woiwodschaft Lebus)", "Łagów, Powiat Świebodziński", "Łagów, województwo lubuskie", "Łagów Lubuski", "Łagów", "Łagów Lubuski"], "authorized_access_point": "Łagów (Woiwodschaft Lebus)"} 1 +2024-09-11 09:12:24.987691 2024-09-11 09:12:24.987696 658b6d7e-49e5-453d-b979-0f2fce6a80bb {"md5": "5333aee7c452ae8d67b86d80d96f3d79", "pid": "941808769", "note": [{"label": ["Gemeinde im Kt. Graubünden"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2138776-X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)941808769", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)2138776-X", "source": "GND"}], "authorized_access_point": "Lostallo"} 1 +2024-09-11 09:12:25.056922 2024-09-11 09:12:25.056931 d17f1995-9d9a-4895-9f26-90b6c59db503 {"md5": "bc6a383efec83b5b049db889f4b9d41b", "pid": "941757471", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Zentralarabien&oldid=191114592"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Arabien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4346479-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)941757471", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4346479-8", "source": "GND"}], "variant_access_point": ["Innerarabien"], "authorized_access_point": "Zentralarabien"} 1 +2024-09-11 09:12:25.121151 2024-09-11 09:12:25.121156 8573dc5d-5f53-40ad-b557-0f948cacb389 {"md5": "051d29a18a82b930766d2af97654dfa5", "pid": "941385175", "note": [{"label": ["Tal in Saudiarabien"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4342217-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)941385175", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4342217-2", "source": "GND"}], "authorized_access_point": "Wadi al-Batin"} 1 +2024-09-11 09:12:25.18704 2024-09-11 09:12:25.187044 f02bd287-e329-4cf2-b243-5c0de61677cd {"md5": "5fda193c3f6c86d97ec734049a8cb993", "pid": "940396068", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Plagwitz (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4331603-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)940396068", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4331603-7", "source": "GND"}], "variant_access_point": ["Plagwitz (Leipzig)"], "authorized_access_point": "Leipzig-Plagwitz"} 1 +2024-09-11 09:12:25.236647 2024-09-11 09:12:25.236652 41e3b0c6-9cf7-461b-9d3c-c767e3b55d00 {"md5": "c82bfb3aa17da126a7921346bec72915", "pid": "940396009", "note": [{"label": ["Stadtteil von Leipzig seit 1.1.1891"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Connewitz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4331601-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)940396009", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4331601-3", "source": "GND"}], "variant_access_point": ["Connewitz (Leipzig)"], "authorized_access_point": "Leipzig-Connewitz"} 1 +2024-09-11 09:12:25.3275 2024-09-11 09:12:25.327505 4c29ff7e-e736-4dc9-adb8-9e9645ef586b {"md5": "d35a9933b8228977941d71472f36d71e", "pid": "199305404", "note": [{"label": ["Homepage - https://st-ewaldi-dortmund.de/st-ewaldi-aplerbeck/", "Wikipedia - https://de.wikipedia.org/w/index.php?title=St._Ewaldi_(Aplerbeck)&oldid=242390332"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Dortmund"}, {"authorized_access_point": "Dortmund-Aplerbeck"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7796155-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199305404", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7796155-9", "source": "GND"}], "variant_access_point": ["Sankt Ewaldi Aplerbeck (Dortmund)", "St. Ewaldi Aplerbeck (Dortmund-Aplerbeck)", "St.-Ewaldi-Kirche (Dortmund)", "St. Ewaldi zu Dortmund-Aplerbeck (Dortmund)", "Zweite St.-Ewaldi-Kirche von 1971 (Dortmund)", "Egbertstraße 15 (Dortmund)"], "authorized_access_point": "St. Ewaldi Aplerbeck (Dortmund)"} 1 +2024-09-11 09:12:25.398894 2024-09-11 09:12:25.398899 9f268f59-e11a-40be-9482-c3e8e70f9dd4 {"md5": "bb81c649d9024d303b44dacc2c4cbde6", "pid": "199252149", "note": [{"label": ["Ca. 1794 für den Leinenweber Hermann Brincks errichtetes Bürgerhaus; 1945 durch Luftangriffe vollständig zerstört"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7789992-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199252149", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7789992-1", "source": "GND"}], "variant_access_point": ["Bönersches Haus (Coesfeld)", "Münsterstraße 37 (Coesfeld)"], "authorized_access_point": "Haus Brincks (Coesfeld)"} 1 +2024-09-11 09:12:25.463902 2024-09-11 09:12:25.463907 827fdb52-28e4-49a1-8d25-3efdd13ee6a5 {"md5": "1c7506797ce2b03cf9a00345aa1811ac", "pid": "199248974", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_Detmold-Kernstadt&oldid=242933521"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Detmold"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7789613-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199248974", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7789613-0", "source": "GND"}], "authorized_access_point": "Donopbrunnen (Detmold)"} 1 +2024-09-11 09:12:25.540265 2024-09-11 09:12:25.54027 03db28f3-cd8c-41ea-8489-a0f1040b3cb2 {"md5": "c33e978fb6e92ed95feb9ad54197ba96", "pid": "199246815", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Freie_Scholle_(Bielefeld)&oldid=237251749", "Homepage Freie Schulle - https://www.freie-scholle.de/ueber-uns/unsere-wurzeln"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bielefeld"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7789354-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199246815", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7789354-2", "source": "GND"}], "variant_access_point": ["Siedlung Heeper Fichten (Bielefeld)"], "authorized_access_point": "Heeper Fichten (Bielefeld)"} 1 +2024-09-11 09:12:25.607242 2024-09-11 09:12:25.607247 b64b93e3-f888-4cd2-932c-3669431975cd {"md5": "9fe0e3e4b1c73d77781997c374a0370b", "pid": "199246793", "note": [{"label": ["Homepage - https://www.dasgastlichedorf.com/"], "noteType": "dataSource"}, {"label": ["Ensemble historischer Fachwerkhäuser aus dem 16. und 18. Jahrhundert mit Gastronomiebetrieb"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Delbrück"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7789352-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199246793", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7789352-9", "source": "GND"}], "variant_access_point": ["Gastliches Dorf (Delbrück)", "Lippstädter Straße 88 (Delbrück)"], "authorized_access_point": "Das gastliche Dorf (Delbrück)"} 1 +2024-09-11 09:12:25.684342 2024-09-11 09:12:25.68435 033d5794-2ce9-4915-a4ea-3bf1c198f06f {"md5": "2fd26c4687dd7f117dd98322e7d2aece", "pid": "199246211", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Galgenlake.Delbr%C3%BCck.1063258.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Delbrück"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7789283-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199246211", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7789283-5", "source": "GND"}], "authorized_access_point": "Galgenlaake (Delbrück)"} 1 +2024-09-11 09:12:25.752684 2024-09-11 09:12:25.752689 7a63a6bd-679f-4a3b-adc6-96932438fb81 {"md5": "fafa4be40d52d5bf0b69b4d10a7bf8a8", "pid": "199244766", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Detmold"}], "related": [{"authorized_access_point": "Richthofenstraße (Detmold)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7789111-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199244766", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7789111-9", "source": "GND"}], "variant_access_point": ["Richthofenstraße 16 (Detmold)"], "authorized_access_point": "Krullsche Haus (Detmold)"} 1 +2024-09-11 09:12:25.831912 2024-09-11 09:12:25.831922 5e2cc67f-dac5-4cd3-9d3e-42dac72bfcd5 {"md5": "913f9ba8ebb7d06bfe39f8013fb09342", "pid": "19924474X", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Richthofenstra%C3%9Fe.Detmold.183819.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Detmold"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7789109-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)19924474X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7789109-0", "source": "GND"}], "authorized_access_point": "Richthofenstraße (Detmold)"} 1 +2024-09-11 09:12:25.973113 2024-09-11 09:12:25.973116 47884942-4e1c-49d3-b73a-f454d111c82d {"md5": "0d6d2067086273ffc4a1be36c22105aa", "pid": "199244375", "note": [{"label": ["Gelegen am Fluss Else bei Bünde (Kreis Herford)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bünde"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7789063-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199244375", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7789063-2", "source": "GND"}], "variant_access_point": ["Castrum Blankena (Bünde)", "Haus Wervingen"], "authorized_access_point": "Nienburg (Bünde)"} 1 +2024-09-11 09:12:26.037803 2024-09-11 09:12:26.037806 e3003448-311e-407f-b4ac-5f1271976cef {"md5": "b1b277772cb57dd1e503d6a56059246a", "pid": "199241562", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Gl%C3%BCckaufstra%C3%9Fe.Castrop-Rauxel.84305.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Castrop-Rauxel"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7788729-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199241562", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7788729-3", "source": "GND"}], "authorized_access_point": "Glückaufstraße (Castrop-Rauxel)"} 1 +2024-09-11 09:12:26.11537 2024-09-11 09:12:26.115373 7c749cb8-f24b-4de1-b231-a2597d6991c8 {"md5": "78874ae247f79a1bc335e45ba3d19ff6", "pid": "199240590", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Rieflinghausen&oldid=243763184"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Attendorn"}, {"authorized_access_point": "Helden-Rieflinghausen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7788614-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199240590", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7788614-8", "source": "GND"}], "authorized_access_point": "Attendorn-Rieflinghausen"} 1 +2024-09-11 09:12:26.185279 2024-09-11 09:12:26.185284 a638df4f-cbf9-4302-83fa-07d1e9b6cf30 {"md5": "cf8ba829fab81638460f672b7238ea35", "pid": "199240515", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Castrop-Rauxel"}], "related": [{"authorized_access_point": "Glückaufstraße (Castrop-Rauxel)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7788606-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199240515", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7788606-9", "source": "GND"}], "variant_access_point": ["St. Rochus-Hospital (Castrop-Rauxel)", "Glückaufstraße 10 (Castrop-Rauxel)"], "authorized_access_point": "St. Rochus Hospital (Castrop-Rauxel)"} 1 +2024-09-11 09:12:26.234439 2024-09-11 09:12:26.234442 49cb4cea-e8ac-4159-b910-1bb63d776b92 {"md5": "25159a5996504127ff062ea2259c64d9", "pid": "199239436", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Coesfeld"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7788473-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199239436", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7788473-5", "source": "GND"}], "variant_access_point": ["Haus Schanze an der Billerbecker Straße (Coesfeld)"], "authorized_access_point": "Haus Schanze (Coesfeld)"} 1 +2024-09-11 09:12:26.298041 2024-09-11 09:12:26.298045 5bd025b8-37c5-4524-bc23-5505fb00c61e {"md5": "97b9c330eb232f858186f8ebe0ec60fc", "pid": "19923860X", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Lortzingstra%C3%9Fe.Detmold.146305.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Detmold"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7788374-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)19923860X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7788374-3", "source": "GND"}], "authorized_access_point": "Lortzingstraße (Detmold)"} 1 +2024-09-11 09:12:26.365541 2024-09-11 09:12:26.365544 da6d4361-16ea-4f0f-a964-e89e505be2d2 {"md5": "f789bcc202b38a79c573920d9111ded4", "pid": "199231516", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=St._Jakob_(K%C3%B6ln)&oldid=205660525", "Homepage Altes Köln - https://altes-koeln.de/wiki/St._Jacob"], "noteType": "dataSource"}, {"label": ["Ursprungsbau 1071 geweiht; 1534-1548 erheblich umgebaut, 1825 abgebrochen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Köln- Altstadt Süd"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7787520-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199231516", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7787520-5", "source": "GND"}], "variant_access_point": ["St. Jakob (Köln- Altstadt Süd)", "St. Jacob (Köln- Altstadt Süd)", "Kirche St. Jacob (Köln- Altstadt Süd)", "Jakobskirche (Köln- Altstadt Süd)", "Pfarrkirche St. Jakob (Köln- Altstadt Süd)", "St. Jakob (Köln) (Köln- Altstadt Süd)"], "authorized_access_point": "Sankt Jakob (Köln- Altstadt Süd)"} 1 +2024-09-11 09:12:26.426366 2024-09-11 09:12:26.42637 9ef2f161-8633-4cd0-92a1-e0cd286953d4 {"md5": "99f6c2880683b3d12577d5bd86f6bf8d", "pid": "199230811", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Merkurbrunnen_(Bielefeld)&oldid=243360167"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bielefeld"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7787435-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199230811", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7787435-3", "source": "GND"}], "authorized_access_point": "Merkurbrunnen (Bielefeld)"} 1 +2024-09-11 09:12:26.494306 2024-09-11 09:12:26.49431 2dc8acdc-e088-4f10-909c-38084ae5bd26 {"md5": "998dd6cfd34ea828cdaecb53776a693c", "pid": "199230285", "note": [{"label": ["Homepage - https://www.e-ki-wa.de/gemeinde/kirchen", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_von_Sakralbauten_in_Bochum&oldid=244821551"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bochum"}, {"authorized_access_point": "Bochum-Höntrop"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7787372-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199230285", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7787372-5", "source": "GND"}], "variant_access_point": ["Versöhnungskirche (Bochum)", "Versöhnungskirche Höntrop (Bochum-Höntrop)", "Evangelische Versöhnungskirche Höntrop (Bochum)", "Preins Feld 8 (Bochum)"], "authorized_access_point": "Versöhnungskirche Höntrop (Bochum)"} 1 +2024-09-11 09:12:26.57601 2024-09-11 09:12:26.576015 a7e12a32-2025-4037-a4a6-fc9103cb2b14 {"md5": "3e84581d54c3e3312f19fe5f2c5665fb", "pid": "199224196", "note": [{"label": ["Stand: 10.07.2024 - https://www.westfalen-blatt.de/owl/quellenhof-wird-abgerissen-2450879?pid=true&npg"], "noteType": "dataSource"}, {"label": ["Historischer Bauernhof, Erstwähnung um 1550, 1904 von den Von-Bodelschwinghsche Anstalten erworben, 2021 zugunsten eines Hospiz-Neubaus abgerissen."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bielefeld"}, {"authorized_access_point": "Bielefeld-Gadderbaum"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7786666-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199224196", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7786666-6", "source": "GND"}], "variant_access_point": ["Quellenhof (Bielefeld-Gadderaum)", "Göllnerhof (Bielefeld)", "Hof Göllner (Bielefeld)"], "authorized_access_point": "Quellenhof (Bielefeld)"} 1 +2024-09-11 09:12:26.658588 2024-09-11 09:12:26.658594 b3c013dc-a6fc-48c9-9147-03e4a3708d6b {"md5": "c7e0e40ddf6352957996e9fdf052efff", "pid": "199218315", "note": [{"label": ["Homepage - https://wbc-coesfeld.de/deponie-coesfeld-hoeven"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Coesfeld"}, {"authorized_access_point": "Rosendahl"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7785996-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199218315", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7785996-0", "source": "GND"}], "variant_access_point": ["Deponie Coesfeld-Höven (Coesfeld)", "Deponie Coesfeld-Höven (Rosendahl)", "Siedlungsabfalldeponie des Kreises Coesfeld", "Zentraldeponie Coesfeld-Höven", "Zentraldeponie Coesfeld-Höven im Kreis Coesfeld", "Zentraldeponie Coesfeld-Höven im Kreis Coesfeld, NRW"], "authorized_access_point": "Deponie Coesfeld-Höven"} 1 +2024-09-11 09:12:26.716513 2024-09-11 09:12:26.716516 ab8b6308-1021-46af-aedc-899cfb8ddaac {"md5": "b53ce191f738b20dd843734077821433", "pid": "199215901", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Gerresheim&oldid=244302258#Gerricusplatz"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Düsseldorf"}, {"authorized_access_point": "Düsseldorf-Gerresheim"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7785731-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199215901", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7785731-8", "source": "GND"}], "authorized_access_point": "Gerricusplatz (Düsseldorf)"} 1 +2024-09-11 09:12:26.78113 2024-09-11 09:12:26.781134 4acacdd3-8ffa-4e13-9d7a-7e201997c695 {"md5": "923f869f1b409acb2a79c192cc59ab39", "pid": "199214700", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Synagoge_Detmold&oldid=245430403"], "noteType": "dataSource"}, {"label": ["Fiel in der Reichspogromnacht vom 9. auf den 10. November 1938 einem Brandanschlag zum Opfer, 1939 endgültig abgerissen."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Detmold"}], "related": [{"authorized_access_point": "Lortzingstraße (Detmold)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7785597-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199214700", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7785597-8", "source": "GND"}], "authorized_access_point": "Synagoge Detmold (Detmold)"} 1 +2024-09-11 09:12:26.86078 2024-09-11 09:12:26.860785 582b660d-0617-43a0-8178-0f9a844ee629 {"md5": "9d108014d3c7353cbf227aaa33e71b86", "pid": "19921462X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Coesfeld"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7785589-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)19921462X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7785589-9", "source": "GND"}], "variant_access_point": ["Freiherr vom Stein Kaserne (Coesfeld)", "Kaserne Coesfeld (Coesfeld)", "Letter Bruch 9 (Coesfeld)"], "authorized_access_point": "Freiherr-vom-Stein-Kaserne (Coesfeld)"} 1 +2024-09-11 09:12:26.94366 2024-09-11 09:12:26.943666 97074cf7-ad83-41cd-80b8-67f1e598ce5a {"md5": "178b080da5efe5320effe5f7ca9743fc", "pid": "199212007", "note": [{"label": ["Homepage - https://www.christus-koenig-gemen.de/einrichtungen-christus-koenig-gemen/kirchen/verkuendigungskirche/"], "noteType": "dataSource"}, {"label": ["Kirchengebäude des Provinzialats der Schönstätter Marienschwestern in Gemen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Gemen (Borken (Westf.))"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7785301-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199212007", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7785301-5", "source": "GND"}], "variant_access_point": ["Mariä Verkündigung (Gemen, Borken (Westf.))"], "authorized_access_point": "Verkündigungskirche (Gemen, Borken (Westf.))"} 1 +2024-09-11 09:12:27.031805 2024-09-11 09:12:27.031807 c6a1a31f-e517-46ae-81e5-9dd7669290ac {"md5": "4f034091850b589ba7492521546a52e9", "pid": "199211817", "note": [{"label": ["Waldgebiet im Castrop-Rauxeler Stadtteil Deininghausen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7785281-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199211817", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7785281-3", "source": "GND"}], "authorized_access_point": "Deininghausen - Grutholz"} 1 +2024-09-11 09:12:27.101015 2024-09-11 09:12:27.101018 d68f8889-00a5-4aa8-8522-7d1dc99a398a {"md5": "d77b9b5ed4949fe78abec02210700a63", "pid": "199210713", "note": [{"label": ["Bauernhof im Möhnetal gelegen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Brilon"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7785159-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199210713", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7785159-6", "source": "GND"}], "variant_access_point": ["Osterhof in der Gemarkung von Brilon (Brilon)"], "authorized_access_point": "Osterhof (Brilon)"} 1 +2024-09-11 09:12:29.791195 2024-09-11 09:12:29.7912 d8d73a2a-1968-41a2-a32b-1f55e534305b {"md5": "b341f516cebc47bfbfbfb79c97a2ef19", "pid": "050039350", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5003935-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)050039350", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5003935-0", "source": "GND"}], "variant_access_point": ["Löszmig"], "authorized_access_point": "Leipzig-Löszmig"} 1 +2024-09-11 09:12:27.175202 2024-09-11 09:12:27.175207 7ab368ed-98f6-4520-b74f-89383362554e {"md5": "7fa79de38e782e3f115c88ce46e63628", "pid": "199209464", "note": [{"label": ["Homepage - https://www.werre-park.de/"], "noteType": "dataSource"}, {"label": ["Ca. 52.000 qm großes Einkaufszentrum am Südufer der Werre"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bad Oeynhausen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7785023-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199209464", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7785023-3", "source": "GND"}], "variant_access_point": ["Werre-Park Bad Oeynhausen (Bad Oeynhausen)"], "authorized_access_point": "Werre-Park (Bad Oeynhausen)"} 1 +2024-09-11 09:12:27.228352 2024-09-11 09:12:27.228355 9e5bfd7a-83aa-455f-9faa-5636ad28bc3b {"md5": "53bcd99ca58028a769e070e8d49fee15", "pid": "199200955", "note": [{"label": ["Liste der Baudenkmäler in Bestwig - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_Bestwig&oldid=242141515"], "noteType": "dataSource"}, {"label": ["2020 unter Denkmalschutz gestellt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bestwig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7784086-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199200955", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7784086-0", "source": "GND"}], "variant_access_point": ["Kreuzkirche (Bestwig)", "Kreuzkirche Bestwig (Bestwig)", "Ev. Kreuzkirche Bestwig (Bestwig)", "Evang. Kreuzkirche Bestwig (Bestwig)", "Evangelische Kirche (Bestwig)", "Auferstehungskirche (Bestwig)"], "authorized_access_point": "Evangelische Kreuzkirche (Bestwig)"} 1 +2024-09-11 09:12:27.279643 2024-09-11 09:12:27.279648 dad9f340-4dc6-4cb1-9077-3f590714fe84 {"md5": "d53c044c6f05c73f66b2cfe2b020f2a0", "pid": "199198578", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_Detmold-Kernstadt&oldid=242933521"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Detmold"}], "related": [{"authorized_access_point": "Benekestraße (Detmold)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7783825-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199198578", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7783825-7", "source": "GND"}], "authorized_access_point": "Benekestraße 10 (Detmold)"} 1 +2024-09-11 09:12:27.344619 2024-09-11 09:12:27.344623 17167ab9-9b4d-4b1f-9eef-35cc0682f136 {"md5": "3dd2b3588779515dfc9493c6c4acf800", "pid": "199195978", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_Breckerfeld&oldid=227886228"], "noteType": "dataSource"}, {"label": ["Wohn- und Geschäftshaus, heute \\"Adler-Apotheke\\""], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Breckerfeld"}], "related": [{"authorized_access_point": "Denkmalstraße (Breckerfeld)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7783538-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199195978", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7783538-4", "source": "GND"}], "authorized_access_point": "Denkmalstraße 1 (Breckerfeld)"} 1 +2024-09-11 09:12:27.413512 2024-09-11 09:12:27.413516 1a85605a-2be5-49a2-b40b-910cf0348894 {"md5": "1bcf8cf4908b2ffaab464e79aef8c2c5", "pid": "19919596X", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Denkmalstra%C3%9Fe.Breckerfeld.323395.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Breckerfeld"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7783537-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)19919596X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7783537-2", "source": "GND"}], "authorized_access_point": "Denkmalstraße (Breckerfeld)"} 1 +2024-09-11 09:12:27.482107 2024-09-11 09:12:27.48211 494ebd39-20a6-4d32-9d22-8779ec7b1052 {"md5": "a4b702418ce93459a44ca7c27f652309", "pid": "199189870", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Denkm%C3%A4ler_in_Brilon&oldid=238201542"], "noteType": "dataSource"}, {"label": ["Giebelständiger Fachwerkbau mit Wirtschaftsdiele, dreischiffiges niederdeutsches Hallenhaus, seit 1985 denkmalgeschützt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Brilon"}], "related": [{"authorized_access_point": "Derkere Straße (Brilon)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7782867-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199189870", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7782867-7", "source": "GND"}], "variant_access_point": ["Derkere Strasse 26 (Brilon)", "Bürgerhaus Derkere Straße 26 (Brilon)"], "authorized_access_point": "Derkere Straße 26 (Brilon)"} 1 +2024-09-11 09:12:27.566515 2024-09-11 09:12:27.566519 5f518e51-1f3e-4a07-ae0a-5e1542a39c88 {"md5": "6506b75ba2365497cdbc8b673dfaf03b", "pid": "199189862", "note": [{"label": ["Fachwerkhaus vom Typ \\"niederdeutsches Hallenhaus\\", 2001 abgerissen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Brilon"}], "related": [{"authorized_access_point": "Niedere Straße (Brilon)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7782866-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199189862", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7782866-5", "source": "GND"}], "variant_access_point": ["Niedere Strasse 32 (Brilon)"], "authorized_access_point": "Niedere Straße 32 (Brilon)"} 1 +2024-09-11 09:12:27.645363 2024-09-11 09:12:27.645374 036196cc-4395-4e94-b279-a683bcdfffdb {"md5": "74f9708da1445ddd22cb8059fafe4295", "pid": "199189854", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Derkere+Stra%C3%9Fe.Brilon.428121.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Brilon"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7782865-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199189854", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7782865-3", "source": "GND"}], "authorized_access_point": "Derkere Straße (Brilon)"} 1 +2024-09-11 09:12:27.710748 2024-09-11 09:12:27.710753 3f70380c-2fa0-4a94-9543-4e332e23181c {"md5": "c19e779622d44d4920e3fb70b08e08f7", "pid": "199189846", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Niedere+Stra%C3%9Fe.Brilon.428144.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Brilon"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7782864-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199189846", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7782864-1", "source": "GND"}], "authorized_access_point": "Niedere Straße (Brilon)"} 1 +2024-09-11 09:12:27.762025 2024-09-11 09:12:27.762028 677d564b-6dcf-4ac5-9a0d-b12e98115e0d {"md5": "14fbb1ac857ca606fb455d3ba5b824f3", "pid": "199187282", "note": [{"label": ["Homepage - https://steinhaegerhaeuschen.de"], "noteType": "dataSource"}, {"label": ["Seit 1894 mit rechtmäßigen Ausschank, 1929 zu einer Gaststätte mit dem Namen „Steinhäger Häuschen“ umgebaut."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Steinhagen (Kreis Gütersloh)"}], "related": [{"authorized_access_point": "Bahnhofstraße (Steinhagen, Kreis Gütersloh)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7782582-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199187282", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7782582-2", "source": "GND"}], "variant_access_point": ["Bahnhofstraße 2 (Steinhagen, Kreis Gütersloh)", "Steinhägerhäuschen (Steinhagen, Kreis Gütersloh)"], "authorized_access_point": "Steinhäger Häuschen (Steinhagen, Kreis Gütersloh)"} 1 +2024-09-11 09:12:27.826179 2024-09-11 09:12:27.826183 2af324f1-69a8-4d5b-970a-9f59b5134980 {"md5": "4fc375460b793afee851ffd589285f0d", "pid": "199181993", "note": [{"label": ["1727 gestiftet in Schwelm, 1740 in Breckerfeld aufgestellt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Breckerfeld"}, {"authorized_access_point": "Jakobus-Kirche Breckerfeld (Breckerfeld)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7782000-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199181993", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7782000-9", "source": "GND"}], "variant_access_point": ["Evangelische Pfarrkirche (Breckerfeld)"], "authorized_access_point": "Jakobus-Kirche Breckerfeld (Breckerfeld) - Kanzel"} 1 +2024-09-11 09:12:27.889482 2024-09-11 09:12:27.889485 72eb9f00-36aa-418b-84aa-d60408bc4ef1 {"md5": "26693e882cf19e74c9427c28c9db525d", "pid": "199173672", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_B%C3%BCnde&oldid=239542179"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bünde"}, {"authorized_access_point": "Bünde-Ennigloh"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7781086-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199173672", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7781086-7", "source": "GND"}], "variant_access_point": ["Universum Bünde (Bünde-Ennigloh)", "Lichtspieltheater Universum in Bünde", "Universum in Bünde", "Kino (Bünde)", "Universum-Kino (Bünde)", "Lichtspielhaus Wittekind (Bünde)", "Hauptstraße 9"], "authorized_access_point": "Universum Bünde (Bünde)"} 1 +2024-09-11 09:12:27.953079 2024-09-11 09:12:27.953083 aeb0e572-4457-4493-a519-d632156f694c {"md5": "7830f563effa95dd6aecc2436cb052cb", "pid": "19917332X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Dortberghaus&oldid=242681457"], "noteType": "dataSource"}, {"label": ["Erbaut als Verwaltungsgebäude der Gelsenkirchener Bergwerks-Aktiengesellschaft, von 1967-2004 Sitz des Bauordnungs- und Katasteramt. Seit 2022 Hotel."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Dortmund"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7781046-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)19917332X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7781046-6", "source": "GND"}], "variant_access_point": ["Katharinenstraße 9 (Dortmund)"], "authorized_access_point": "Dortberghaus (Dortmund)"} 1 +2024-09-11 09:12:28.024796 2024-09-11 09:12:28.024801 64d6c91f-d2be-485a-92ae-6a47fc61ff55 {"md5": "d573493451a96cd338a04cb03dbcf811", "pid": "199168512", "note": [{"label": ["Homepage - https://www.alpincenter.com/bottrop/de"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bottrop"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7780518-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199168512", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7780518-5", "source": "GND"}], "variant_access_point": ["Veltins Alpincenter (Bottrop)", "Alpincenter in Bottrop (Bottrop)", "Prosperstraße 299-301 (Bottrop)"], "authorized_access_point": "Alpincenter Bottrop (Bottrop)"} 1 +2024-09-11 09:12:28.0813 2024-09-11 09:12:28.081304 90c50fd8-7bda-4ef2-ab9a-09a52e877add {"md5": "a5c72ae3d48353483e8494f405e2bc97", "pid": "199164347", "note": [{"label": ["Bis 1803 als Kloster genutzt, seit 1983 Baudenkmal; heute (neben diversen Verwaltungs- und Gefängnisbauten) Teil des Anstaltsgeländes der JVA Attendorn"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7780057-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199164347", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7780057-6", "source": "GND"}], "variant_access_point": ["Klosteranlage des Ehemaligen Augustinerchorherren-Klosters Ewig (Attendorn)", "Ehemaliges Augustinerchorherrenkloster Ewig (Attendorn)", "Ehemaliges Klostergebäude Ewig (Attendorn)", "Ehemalige Klostergebäude des Klosters Ewig (Attendorn)", "Klosteranlage des ehemaligen Klosters Ewig (Attendorn)", "Ehemaliges Augustinerchorherren-Kloster Ewig (Attendorn)", "Ehemaliges Kloster Ewig (Attendorn)", "Gut Ewig (Attendorn)", "Ehem. Augustinerchorherren-Kloster Ewig, jetzt Justizvollzugsanstalt (Attendorn)", "Biggeweg 5 (Attendorn)", "Gefängnisanlage der Justizvollzugsanstalt Attendorn (Attendorn)"], "authorized_access_point": "Klosteranlage des Ehem. Augustinerchorherren-Klosters Ewig (Attendorn)"} 1 +2024-09-11 09:12:29.861306 2024-09-11 09:12:29.861311 0cb0252b-d19f-4b02-9c6a-693fe081f36a {"md5": "1648e7936be51e98eac061ef4c3b713c", "pid": "043244793", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Paunsdorf"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4324479-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043244793", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4324479-8", "source": "GND"}], "variant_access_point": ["Paunsdorf (Leipzig)"], "authorized_access_point": "Leipzig-Paunsdorf"} 1 +2024-09-11 09:12:28.158785 2024-09-11 09:12:28.15879 55203e37-eebc-48bf-b900-dacac8985750 {"md5": "91a562dbd749ef8bda2ec4e81f018a9d", "pid": "19916035X", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Elisabethstra%C3%9Fe.Bochum.59159.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bochum"}, {"authorized_access_point": "Bochum-Wattenscheid"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7779618-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)19916035X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7779618-4", "source": "GND"}], "variant_access_point": ["Elisabethstraße (Bochum-Wattenscheid)"], "authorized_access_point": "Elisabethstraße (Bochum)"} 1 +2024-09-11 09:12:28.222754 2024-09-11 09:12:28.222759 c2d3e153-85a3-4f0c-8d71-c9935800ce74 {"md5": "37ace70f0e16fe7bca4a1f672d4b652f", "pid": "199159998", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Wattenscheider+Hellweg.Bochum.229548.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bochum"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7779578-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199159998", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7779578-7", "source": "GND"}], "authorized_access_point": "Wattenscheider Hellweg (Bochum)"} 1 +2024-09-11 09:12:28.31146 2024-09-11 09:12:28.311465 dad2fded-863b-4d6e-998e-9b23e00942df {"md5": "b6401c06a97cba55f698b9ba73482038", "pid": "199159882", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Florianturm&oldid=240093523", "Stadt Dortmund - https://www.dortmund.de/dortmund-erleben/freizeit-und-kultur/westfalenpark/der-park/florianturm/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Dortmund"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7779566-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199159882", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7779566-0", "source": "GND"}], "variant_access_point": ["Florian (Dortmund)", "Dortmunder Florian (Dortmund)", "Florianturm im Westfalenpark (Dortmund)", "Florianstraße 2 (Dortmund)"], "authorized_access_point": "Florianturm (Dortmund)"} 1 +2024-09-11 09:12:28.382367 2024-09-11 09:12:28.382371 616f7f26-8d9f-4e4c-8838-5b61a0c1c40b {"md5": "c2373b4c38c5b45de0ed66b5795eaac7", "pid": "199159777", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_im_Stadtbezirk_Bochum-Wattenscheid&oldid=246405605"], "noteType": "dataSource"}, {"label": ["In zwei Bauabschnitten 1619 und 1672 errichteter ehemaliger Bauernkotten, heute Gaststättenbetrieb"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bochum"}, {"authorized_access_point": "Bochum-Wattenscheid"}, {"authorized_access_point": "Bochum-Eppendorf"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7779553-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199159777", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7779553-2", "source": "GND"}], "variant_access_point": ["Kotten Bodde (Bochum-Wattenscheid)", "Kotten Bodde (Bochum-Eppendorf)", "Am Thie 8 (Bochum)", "Wohnhaus (Bochum)"], "authorized_access_point": "Kotten Bodde (Bochum)"} 1 +2024-09-11 09:12:28.445611 2024-09-11 09:12:28.445615 5a34054c-f78f-4a1a-9e67-19101bd6877d {"md5": "4dd4cf4a9b3cabb2ef95c37ae86eca75", "pid": "199157642", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Barntrup"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7779320-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199157642", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7779320-1", "source": "GND"}], "variant_access_point": ["Uhlental"], "authorized_access_point": "Barntrup-Uhlental"} 1 +2024-09-11 09:12:28.500028 2024-09-11 09:12:28.500031 b0c8d9b5-be71-4b1b-be61-22834aa33664 {"md5": "7ab8d6502832b9f1e8b70ffe1c44b496", "pid": "199147760", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/H%C3%B6fkerstra%C3%9Fe.Dortmund.110510.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Dortmund"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7778231-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199147760", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7778231-8", "source": "GND"}], "authorized_access_point": "Höfkerstraße (Dortmund)"} 1 +2024-09-11 09:12:28.564903 2024-09-11 09:12:28.564906 ee66104a-c94b-4eff-a5e7-1e2c22cd4150 {"md5": "801b8336933ad59403d7b5ca7232e1a3", "pid": "199138834", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Alter+Postweg.Bottrop.5340.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bottrop"}, {"authorized_access_point": "Bottrop-Kirchhellen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7777247-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199138834", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7777247-7", "source": "GND"}], "variant_access_point": ["Alter Postweg (Bottrop-Kirchhellen)"], "authorized_access_point": "Alter Postweg (Bottrop)"} 1 +2024-09-11 09:12:28.630052 2024-09-11 09:12:28.630056 0f279df4-bcb8-4143-89a0-50de5397f793 {"md5": "40c54d59e9e72aeb579c7e506fddd7f5", "pid": "199136637", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_Bocholt&oldid=242141670"], "noteType": "dataSource"}, {"label": ["Zweigeschossige Backstein-/Putzbauvilla"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bocholt"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7777006-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199136637", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7777006-7", "source": "GND"}], "variant_access_point": ["Villa (Bocholt)"], "authorized_access_point": "Schwartzstraße 7 (Bocholt)"} 1 +2024-09-11 09:12:31.138193 2024-09-11 09:12:31.138201 917beaf2-1107-4d48-b2bc-620d4b114c8c {"md5": "f594ce5c638c777ac593f58c77d317be", "pid": "042387175", "note": [{"label": ["Stadt in Saudi-Arabien"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4238717-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042387175", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4238717-6", "source": "GND"}], "variant_access_point": ["ʿUnaiza", "ʿUnayza"], "authorized_access_point": "ʿUnayzah"} 1 +2024-09-11 09:12:28.692342 2024-09-11 09:12:28.692347 e341650c-2b7b-4e3c-a67f-53d0bdb4ae08 {"md5": "a267c22cd9cefaa56b7d57fcc7786fc0", "pid": "199118167", "note": [{"label": ["Im Barntruper Stadtwald zu Ehren Adolf Hitlers (1933 zum Barntruper Ehrenbürger ernannt) errichtetes Denkmal, bestehend aus einem auf einem Sockel ruhenden Findling mit eingraviertem Hakenkreuz, eingefasst von Hecke und Zaun. 1945 vermutlich durch Vergraben oder Sprengen beseitigt."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Barntrup"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7774950-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199118167", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7774950-9", "source": "GND"}], "authorized_access_point": "Hitlerstein (Barntrup)"} 1 +2024-09-11 09:12:28.742826 2024-09-11 09:12:28.742829 394f6d1b-5776-4b17-95b8-64e039148cee {"md5": "4c4a88f7f82817fa42b3868eff3ff675", "pid": "199089973", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Balve&oldid=244726901#Stadtgliederung"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Balve"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7771795-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199089973", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7771795-8", "source": "GND"}], "variant_access_point": ["Haustadt (Balve)"], "authorized_access_point": "Balve-Haustadt"} 1 +2024-09-11 09:12:28.796445 2024-09-11 09:12:28.796447 9efc5e98-e19f-416f-9275-8579f853d546 {"md5": "ea316f0e7525d87394fdb7254693541a", "pid": "199077177", "note": [{"label": ["Wikipedia - https://de.m.wikipedia.org/wiki/Kunst_im_%C3%B6ffentlichen_Raum_in_Arnsberg"], "noteType": "dataSource"}, {"label": ["Mahnmal für die Toten der Möhnekatastrophe von 1943, steht auf dem Gelände der Pfarrkirche St. Johannes in Neheim"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Arnsberg"}, {"authorized_access_point": "Arnsberg-Neheim"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7770364-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199077177", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7770364-9", "source": "GND"}], "variant_access_point": ["Totenleuchte an der Johanneskirche (Arnsberg)", "Totenleuchte (Arnsberg-Neheim)", "Totenstele (Arnsberg)"], "authorized_access_point": "Totenleuchte (Arnsberg)"} 1 +2024-09-11 09:12:28.867386 2024-09-11 09:12:28.867394 7520aaa0-ec57-4fc9-a47a-c1b8198da089 {"md5": "63d3de9788553d6fe83bffb4b99ac018", "pid": "199023786", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Haus_Holtwick&oldid=238799546"], "noteType": "dataSource"}, {"label": ["Das Haus Holtwick ist eine abgegangene mittelalterliche Niederungsburg. Es ist nur das Torhaus erhalten."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rosendahl"}, {"authorized_access_point": "Rosendahl-Holtwick"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7764388-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199023786", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7764388-4", "source": "GND"}], "variant_access_point": ["Haus Holtwick (Rosendahl-Holtwick)"], "authorized_access_point": "Haus Holtwick (Rosendahl)"} 1 +2024-09-11 09:12:28.938587 2024-09-11 09:12:28.938591 993bceda-a315-40d9-bf10-899ee18b4da9 {"md5": "52b7720c1d7c9cdeaad9adcb600cfd83", "pid": "199023360", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=J%C3%BCdischer_Friedhof_Bochum&oldid=245831861"], "noteType": "dataSource"}, {"label": ["Jüdischer Friedhof an der Wasserstr."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bochum"}, {"authorized_access_point": "Bochum-Wiemelhausen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7764341-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199023360", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7764341-0", "source": "GND"}], "variant_access_point": ["Jüdischer Friedhof Bochum (Bochum-Wiemelhausen)", "Jüdischer Friedhof Wiemelhausen (Bochum)"], "authorized_access_point": "Jüdischer Friedhof Bochum (Bochum)"} 1 +2024-09-11 09:12:29.001199 2024-09-11 09:12:29.001203 54e19c9c-5113-46da-9208-fd64c66f19e6 {"md5": "67291658b7c537264710c56a2379fc8a", "pid": "199022534", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Arnsberg"}, {"authorized_access_point": "Arnsberg-Holzen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7764246-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199022534", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7764246-6", "source": "GND"}], "variant_access_point": ["Haus Schlünder (Arnsberg-Holzen)", "Haus Schlünder im Luerwald (Arnsberg)", "Haus am Brüggestück (Arnsberg)"], "authorized_access_point": "Haus Schlünder (Arnsberg)"} 1 +2024-09-11 09:12:29.078034 2024-09-11 09:12:29.078039 e75f357f-af1c-43b5-9f47-b3e288640789 {"md5": "6d5007e04849887d786760b7d726a0b8", "pid": "199013594", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Benekestra%C3%9Fe.Detmold.30979.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Detmold"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7763244-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199013594", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7763244-8", "source": "GND"}], "authorized_access_point": "Benekestraße (Detmold)"} 1 +2024-09-11 09:12:29.143545 2024-09-11 09:12:29.143549 52c87ac0-a30c-457a-9e52-a45787be9726 {"md5": "89a57e30423d4d72b6955fbb6b2f7cdd", "pid": "199013276", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Kortumstra%C3%9Fe.Bochum.133165.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bochum"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7763208-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199013276", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7763208-4", "source": "GND"}], "authorized_access_point": "Kortumstraße (Bochum)"} 1 +2024-09-11 09:12:31.203839 2024-09-11 09:12:31.203842 16a15531-9bc7-4751-bb0a-ab43557eb2cf {"md5": "641be6d669133ef02704eff976e3cf3f", "pid": "042299004", "note": [{"label": ["Berg im US-Bundesstaat Nevada"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4229900-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042299004", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4229900-7", "source": "GND"}], "authorized_access_point": "Mount Annie, Nev."} 1 +2024-09-11 09:12:29.215975 2024-09-11 09:12:29.215978 d34640f5-342f-4e82-85fd-5260f2461033 {"md5": "6b5d44a9bb59ed4c053b38fad02d856a", "pid": "199011249", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Altst%C3%A4dter_Nicolaikirche&oldid=245915909"], "noteType": "dataSource"}, {"label": ["Älteste Kirche auf dem Stadtgebiet Bielefelds. Nach Zerstörung 1944 unter Verwendung alter Bausubstanz durch die Architekten Bernhard Hopp und Rudolf Jäger wieder aufgebaut; der Turm erhielt statt der ursprünglichen barocken Haube einen steilen Betonaufsatz mit Eckstreben und Helm."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bielefeld"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7762981-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199011249", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7762981-4", "source": "GND"}], "variant_access_point": ["Ev. Altstädter Nicolaikirche (Bielefeld)", "Evangelische Altstädter Nicolaikirche (Bielefeld)", "Nicolaikirche (Bielefeld)", "Ev. Altstädter Nicolaikirche Bielefeld (Bielefeld)", "Nikolaikirche zu Bielefeld (Bielefeld)"], "authorized_access_point": "Altstädter Nicolaikirche (Bielefeld)"} 1 +2024-09-11 09:12:29.280955 2024-09-11 09:12:29.280959 af7cab3f-0314-4038-bc4e-7088e1646d69 {"md5": "0796b3031f3491b3b1344cd9d39e93eb", "pid": "199003645", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Liste_der_Baudenkm%C3%A4ler_in_Beckum&oldid=245713880", "Homepage Beckum - https://www.beckum.de/entdecken-erleben/kultur/stadtmuseum/#accordion-1-5"], "noteType": "dataSource"}, {"label": ["Verputzter Bruchsteinbau mit seitlichem Durchgang zum Kirchhof, 1983 unter Denkmalschutz gestellt; beherbergt seit 1986 das Stadtmuseum"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Beckum"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7762132-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199003645", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7762132-3", "source": "GND"}], "variant_access_point": ["Altes Rathaus (Beckum)", "Ehemaliges Rathaus (Beckum)", "Historisches Rathaus (Beckum)", "Rathaus Beckum (Beckum)", "Das ehemalige Rathaus (Beckum)", "Beckumer Rathaus (Beckum)", "Stadtmuseum (Beckum)", "Markt 1 (Beckum)"], "authorized_access_point": "Rathaus (Beckum)"} 1 +2024-09-11 09:12:29.35021 2024-09-11 09:12:29.350214 7644380d-0f42-477b-acec-e7cc5b8e0b58 {"md5": "d2911b1f6ae4a0c26cae4c8b1dd63f85", "pid": "199002894", "note": [{"label": ["Umfasst den Kreis Lippe zu Detmold"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7762049-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199002894", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7762049-5", "source": "GND"}], "variant_access_point": ["Detmold (IHK-Bezirk)"], "authorized_access_point": "IHK-Bezirk Detmold"} 1 +2024-09-11 09:12:29.417902 2024-09-11 09:12:29.417906 11dd17b7-575d-40b0-87d9-5c25b4ade7f8 {"md5": "d3e92bb9be38c72e42130a6882ff7452", "pid": "199001111", "note": [{"label": ["onlinestreet.de - https://onlinestreet.de/strassen/Bahnhofstra%C3%9Fe.Steinhagen.302222.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Steinhagen (Kreis Gütersloh)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7761850-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199001111", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7761850-6", "source": "GND"}], "authorized_access_point": "Bahnhofstraße (Steinhagen, Kreis Gütersloh)"} 1 +2024-09-11 09:12:29.489419 2024-09-11 09:12:29.489422 d33aeb46-b3cc-4a77-b2b7-2da9a9a1c088 {"md5": "1e57a02585c1cba39f338aecba259643", "pid": "199000328", "note": [{"label": ["Stadt Dortmund - https://www.dortmund.de/themen/sport/geschaeftsbereich-sport/hoeschpark/", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Hoeschpark&oldid=231477040"], "noteType": "dataSource"}, {"label": ["Grünanlage mit zahlreichen Sportstätten"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Dortmund"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7761761-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199000328", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7761761-7", "source": "GND"}], "variant_access_point": ["Hoesch-Park (Dortmund)", "Brackeler Straße 60 (Dortmund)"], "authorized_access_point": "Hoeschpark (Dortmund)"} 1 +2024-09-11 09:12:29.576388 2024-09-11 09:12:29.576397 4f0c2e50-f808-4566-81e0-32cf83b2edb0 {"md5": "30c0574837b4be6954981707808c9d24", "pid": "199000239", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/7761750-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)199000239", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)7761750-2", "source": "GND"}], "authorized_access_point": "Castrop - Region"} 1 +2024-09-11 09:12:29.682455 2024-09-11 09:12:29.682461 7c44d392-b3ac-4836-9737-a5efed349bef {"md5": "5916cab795494d96d83541f4442c22b5", "pid": "050551604", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=195150922"], "noteType": "dataSource"}, {"label": ["Als Nordschleswig 1920 an Dänemark abgetreten wurde, entstand aus dem preußischen Kreis Sonderburg das Sønderborg Amt. Von 1920 bis 1932 ein Amtsbezirk in Dänemark."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Amt Sønderjylland"}], "related": [{"authorized_access_point": "Kreis Sonderburg"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5055160-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)050551604", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5055160-7", "source": "GND"}], "variant_access_point": ["Amt Sonderburg", "Sønderborg Amt", "Sønderborg (Amt)", "Sonderburg (Amt)"], "authorized_access_point": "Amt Sønderborg"} 1 +2024-09-11 09:12:29.734426 2024-09-11 09:12:29.734429 f6d389f5-136f-4984-bad3-9353a2d7b7b4 {"md5": "4308cb84168011b86024ee3217fef890", "pid": "050133039", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Syosset&oldid=236501513", "GeoNames - https://www.geonames.org/5140402/syosset.html"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/5013303-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)050133039", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)5013303-2", "source": "GND"}], "authorized_access_point": "Syosset, NY"} 1 +2024-09-11 09:12:29.931777 2024-09-11 09:12:29.93178 ac687b2e-2c9e-4e61-8983-bf364900136f {"md5": "7c4ffd5048be873ee6313a6661282f2d", "pid": "043225608", "note": [{"label": ["Stadt im Landkreis Ludwigslust-Parchim (13.6.1994-3.9.2011: Landkreis Ludwigslust; 25.7.1952-12.6.1994: (Land-)Kreis Hagenow), 1194 urkundl. erwähnt, 1370 Stadt bezeichnet (1520 auch noch Dorf genannt), 1746 Marktflecken, 1754 Stadtrechte (Landstadt)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4322560-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043225608", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4322560-3", "source": "GND"}], "variant_access_point": ["Stadt Hagenow"], "authorized_access_point": "Hagenow"} 1 +2024-09-11 09:12:30.006964 2024-09-11 09:12:30.006968 4cba7eef-cc24-4068-93b3-aa940c1a2a51 {"md5": "3ffbe43d16e6ecb3ef0bbbc27d3eda34", "pid": "043151019", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Workum&oldid=237963244"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Súdwest-Fryslân"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4315101-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043151019", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4315101-2", "source": "GND"}], "variant_access_point": ["Warkum", "Vorkjum", "Vorkumas", "Woerkem", "Wörkem", "Súdwest-Fryslân- Workum"], "authorized_access_point": "Workum"} 1 +2024-09-11 09:12:30.084041 2024-09-11 09:12:30.084044 ae4b2f8e-988b-431b-a7c4-256347f557eb {"md5": "db7b8b3fba95c148d573d1b68eee3e99", "pid": "043138764", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Langschede&oldid=246152514"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Langschede"}, {"authorized_access_point": "Fröndenberg/Ruhr"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4313876-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)043138764", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4313876-7", "source": "GND"}], "authorized_access_point": "Fröndenberg-Langschede"} 1 +2024-09-11 09:12:30.156264 2024-09-11 09:12:30.156268 f3bd0e24-c1dc-4f1a-b65f-1a67d07b8514 {"md5": "f4d3c5e783eb0115f07947b47dc0f063", "pid": "042976200", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Severo-Osetinskaja ASSR"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)992404215", "source": "GND"}, {"type": "bf:Nbn", "value": "091413591", "source": "ZBW"}], "authorized_access_point": "Nordossetien"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4297620-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042976200", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4297620-0", "source": "GND"}], "variant_access_point": ["Nordossetien-Alanien", "Republik Nordossetien-Alanien", "Respublika Sewernaja Ossetija-Alanija", "Respublika Severnaja Osetija-Alanija", "Severnaja Osetija-Alanija", "Respublikä Cägat Iryston-Alanijy", "Zägat Iryston", "Cägat Iryston", "Alani", "Alania", "North Ossetia", "Республикӕ Цӕгат Ирыстон-Аланийы"], "authorized_access_point": "Nordossetien"} 1 +2024-09-11 09:12:30.230802 2024-09-11 09:12:30.230805 06cb2051-3009-4211-aae2-f9635a9f46cb {"md5": "3ead63e9f47d82e0607b3fdc3dfd4e36", "pid": "042939550", "note": [{"label": ["Stadtteil von Prag seit 1.1.1922"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Prag"}, {"authorized_access_point": "Smichow (Prag)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4293955-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042939550", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4293955-0", "source": "GND"}], "variant_access_point": ["Prag-Smíchov", "Smíchov (Prag)", "Smichow (Prag)"], "authorized_access_point": "Prag-Smichow"} 1 +2024-09-11 09:12:30.303009 2024-09-11 09:12:30.303012 9fc1d5c0-cb55-4682-8892-11e1e61d9015 {"md5": "0f875cd08f097247985a39ff3b5b2e0c", "pid": "042939526", "note": [{"label": ["Vorstadt von Prag, 1828 Vorort, 1903 Stadtrecht, 1.1.1922 nach Prag eingemeindet"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Prag-Smichow"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4293952-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042939526", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4293952-5", "source": "GND"}], "variant_access_point": ["Smíchov (Prag)"], "authorized_access_point": "Smichow (Prag)"} 1 +2024-09-11 09:12:30.379726 2024-09-11 09:12:30.379732 09143e01-9b48-4fca-921e-5e2ac6d9f77b {"md5": "3838c09cca3662691c57b54932843a07", "pid": "042788714", "note": [{"label": ["Homepage - https://www.reichenbach-vogtland.de/"], "noteType": "dataSource"}, {"label": ["Stadt im Vogtlandkreis, Sachsen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4278871-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042788714", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4278871-7", "source": "GND"}], "variant_access_point": ["Reichenbach, Vogtland", "Richenbach", "Richinbach", "Reichennbach", "Reichenboch", "Rechenbach", "Reichenbach"], "authorized_access_point": "Reichenbach im Vogtland"} 1 +2024-09-11 09:12:30.455815 2024-09-11 09:12:30.455819 020f5113-e4d6-4222-8c3e-1496033ce5fc {"md5": "3e33bda2bb65706a05578823db7e399b", "pid": "042778352", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Kart%C3%A4userkirche_(K%C3%B6ln)&oldid=237820855"], "noteType": "dataSource"}, {"label": ["1393 geweiht, seit 1978 evangelische Kirche"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Köln"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4277835-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042778352", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4277835-9", "source": "GND"}], "variant_access_point": ["Sankt Barbara (Köln)", "Evangelische Pfarrkirche St. Barbara (Köln)", "Evangelische Pfarrkirche Sankt Barbara (Köln)"], "authorized_access_point": "Kartäuserkirche (Köln)"} 1 +2024-09-11 09:12:32.428791 2024-09-11 09:12:32.428795 4196cc0f-2688-4c6d-ba97-ef325e6d9ac0 {"md5": "4d7dce66dfc858958dbabfe8e5d6f769", "pid": "041011848", "note": [{"label": ["Stadt im Kreis Nordfriesland"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4101184-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041011848", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4101184-3", "source": "GND"}], "authorized_access_point": "Niebüll"} 1 +2024-09-11 09:12:30.532287 2024-09-11 09:12:30.53229 3f3e25f1-23ce-4e98-8348-700043dff308 {"md5": "ce2fb68bf1ebe693743ba2e72122db21", "pid": "042627494", "note": [{"label": ["Seebad auf Usedom, Landkreis Vorpommern-Greifswald (1994-2011: Landkreis Ostvorpommern; 25.7.1952-12.6.1994: (Land-)Kreis Wolgast; 1945-1952: Landkreis Usedom; 1818-1945: Kreis Usedom-Wollin), 1818 Fischersiedlung angelegt, 1.1.2005 mit Ahlbeck und Bansin zu Dreikaiserbäder zusammengeschlossen, 1.1.2006 in Ostseebad Heringsdorf umbenannt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Dreikaiserbäder"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4262749-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042627494", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4262749-7", "source": "GND"}], "variant_access_point": ["Seebad Heringsdorf", "Gemeinde Seebad Heringsdorf", "Ostseebad Heringsdorf", "Heringsdorf (Ostseebad)", "Ostseeheilbad Heringsdorf", "Gemeinde Ostseebad Heringsdorf", "Heringsdorf"], "authorized_access_point": "Heringsdorf (Seebad)"} 1 +2024-09-11 09:12:30.603684 2024-09-11 09:12:30.603688 8023b311-149e-479d-b92d-8615fa05b2eb {"md5": "2dcdce38468ff58feb517257debf6e6a", "pid": "042602564", "note": [{"label": ["Homepage - https://stiftskirche.de/"], "noteType": "dataSource"}, {"label": ["Pfarrkirche der Altstadt, um 1240 als Basilika spätroman. neu erbaut anstelle Dorfkirche des 10. oder 11. Jh., 1327/47 Chor angebaut, 1433/81 Langhaus als Stufenhalle von H. Jörg u. A. Jörg spätgot. neu erbaut, W-Turm 1490/1531, 1944 fast vollständig zerstört, 1950/58 teilw. rekonstruierend, teilw. neu wiederaufgebaut"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Stuttgart"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4260256-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042602564", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4260256-7", "source": "GND"}], "variant_access_point": ["Stiftskirche zum Hl. Kreuz (Stuttgart)", "Ev. Stiftskirche Hl. Kreuz (Stuttgart)", "Evangelische Stiftskirche zum Heiligen Kreuz (Stuttgart)", "Stiftskirche (Stuttgart)", "Evangelische Stiftskirche Heilig Kreuz (Stuttgart)"], "authorized_access_point": "Stiftskirche zum Heiligen Kreuz (Stuttgart)"} 1 +2024-09-11 09:12:30.68069 2024-09-11 09:12:30.680696 084eff78-869f-41e5-8810-11483c5b9e77 {"md5": "d87d6097fe62e1645215cf5d237de659", "pid": "042567874", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Emscher_Landschaftspark"], "noteType": "dataSource"}, {"label": ["Landschaftspark d. Emscher Region"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Emscher-Gebiet"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4256787-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042567874", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4256787-7", "source": "GND"}], "variant_access_point": ["Emscher-Park", "Emscherpark", "Emscher-Landschaftspark", "Emscher Landschaftspark"], "authorized_access_point": "Emscher Park"} 1 +2024-09-11 09:12:30.74414 2024-09-11 09:12:30.744149 1c40668e-315d-45ce-b540-0c1ca8e985e7 {"md5": "100a3f74eb4c96c062c69ebd8354ee46", "pid": "042553628", "note": [{"label": ["Homepage - https://www.gnotzheim.de/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4255362-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042553628", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4255362-3", "source": "GND"}], "variant_access_point": ["Markt Gnotzheim"], "authorized_access_point": "Gnotzheim"} 1 +2024-09-11 09:12:30.810965 2024-09-11 09:12:30.810969 a06eae99-1a90-452b-a87e-0214a492cda0 {"md5": "c99226a3908ecf22d4507ddcc307d6c3", "pid": "042492777", "note": [{"label": ["Gebietskörperschaft im Landkreis Bernkastel-Wittlich"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4249277-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042492777", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4249277-4", "source": "GND"}], "variant_access_point": ["Bernkastel-Kues (Verbandsgemeinde)"], "authorized_access_point": "Verbandsgemeinde Bernkastel-Kues"} 1 +2024-09-11 09:12:30.900459 2024-09-11 09:12:30.900464 6388ab0a-0496-40b7-8a81-1eebabce9e39 {"md5": "c6e31cdacc351c91900f4d492d685868", "pid": "042490448", "note": [{"label": ["Ort im Dep. Gironde, Frankreich"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4249044-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042490448", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4249044-3", "source": "GND"}], "authorized_access_point": "Lesparre-Médoc"} 1 +2024-09-11 09:12:30.975746 2024-09-11 09:12:30.97575 b2e1fcf2-6a65-43b9-ae3c-8336af7ff8a6 {"md5": "af505a542fac763668a1b074db2cb25a", "pid": "042477247", "note": [{"label": ["Ortsteil von Heringsdorf (1.1.2005-31.12.2005: Dreikaiserbäder) seit 1.1.2006"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Heringsdorf (Seebad)"}, {"authorized_access_point": "Dreikaiserbäder-Bansin"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4247724-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042477247", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4247724-4", "source": "GND"}], "variant_access_point": ["Bansin (Heringsdorf, Seebad)"], "authorized_access_point": "Heringsdorf-Bansin"} 1 +2024-09-11 09:12:31.05024 2024-09-11 09:12:31.050245 d3880908-9c94-4f2f-bc7b-662736a6d6b1 {"md5": "bcc3f080624d8641f07cb5e2eb490a6c", "pid": "042400228", "note": [{"label": ["Insel vor SO-Küste der Argolis (Peloponnes), Regionalbezirk Inseln (-2010: Präfekturbezirk Piräus), Nomos Attika; manchmal zu den Saronischen Inseln gezählt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4240022-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042400228", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4240022-3", "source": "GND"}], "variant_access_point": ["Ydra (Insel)", "Hydrea (Insel)", "Idra (Insel)", "Idrea", "Idhra (Insel)", "Údra"], "authorized_access_point": "Hydra (Insel)"} 1 +2024-09-11 09:12:31.257354 2024-09-11 09:12:31.257359 d5c03054-2f57-491c-8ea7-e9f4a39f9298 {"md5": "c6b4bc0f90b3cf0c110ea04ceac827c7", "pid": "042260213", "note": [{"label": ["Hauptstadt des Bundesstaates Connecticut, 1635 als Newtown gegründet, heutiger Name seit 1637"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)990781569", "source": "GND"}, {"type": "bf:Nbn", "value": "091408466", "source": "ZBW"}], "authorized_access_point": "Hartford (Conn.)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4226021-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042260213", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4226021-8", "source": "GND"}], "variant_access_point": ["Hartford, Connecticut", "Newtown, Conn."], "authorized_access_point": "Hartford, Conn."} 1 +2024-09-11 09:12:31.328125 2024-09-11 09:12:31.328129 a304a643-7da0-41a1-b658-9577eb7bd34a {"md5": "74c518695382856f5d40fcf53557e5bb", "pid": "042244943", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=236364456"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4224494-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042244943", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4224494-8", "source": "GND"}], "variant_access_point": ["Amur (Oblast)", "Amur-Gebiet (Oblast)", "Amurskaja oblastʹ", "Gebiet Amur"], "authorized_access_point": "Oblast Amur"} 1 +2024-09-11 09:12:31.395327 2024-09-11 09:12:31.395332 36b59525-fc4b-4b42-9d3a-e9fe2ae1ace5 {"md5": "ce870bd581a822462a6e6b5bbef09805", "pid": "042236037", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Bernkastel-Kues"}, {"authorized_access_point": "Andel"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4223603-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042236037", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4223603-4", "source": "GND"}], "variant_access_point": ["Andel (Bernkastel-Kues)"], "authorized_access_point": "Bernkastel-Kues-Andel"} 1 +2024-09-11 09:12:31.463363 2024-09-11 09:12:31.463366 a8b4cbd4-7108-4479-876f-5edb3c3c7632 {"md5": "7c001ebe6ec2e19d14d197a96a640a49", "pid": "042209927", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Kotor_Varo%C5%A1&oldid=246161593"], "noteType": "dataSource"}, {"label": ["Kleinstadt in Bosnien und Herzegowina und Hauptort der gleichnamigen Gemeinde"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4220992-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042209927", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4220992-4", "source": "GND"}], "variant_access_point": ["Kotor-Varoš"], "authorized_access_point": "Kotor Varoš"} 1 +2024-09-11 09:12:31.535677 2024-09-11 09:12:31.535682 1ce84700-06f8-4935-b31d-85efe85e6aec {"md5": "bf0e7637eb63217743972ac16a242f3a", "pid": "042005450", "note": [{"label": ["Benutzt für die Region zwischen Basel, Freiburg u. Strassburg"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Oberrheinisches Tiefland"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4200545-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)042005450", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4200545-0", "source": "GND"}], "variant_access_point": ["Regio, Oberrhein"], "authorized_access_point": "Oberrheinisches Tiefland - Süd"} 1 +2024-09-11 09:12:31.610423 2024-09-11 09:12:31.610428 97e619d0-b8df-4ffe-b62c-c07132efdb03 {"md5": "e68cf0b370f8420e6207748178468c6c", "pid": "041401174", "note": [{"label": ["Homepage - http://www.ltk.dk"], "noteType": "dataSource"}, {"label": ["Kommune in der Region Hovedstaden, Seeland"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)992133122", "source": "GND"}, {"type": "bf:Nbn", "value": "094409951", "source": "ZBW"}], "authorized_access_point": "Lyngby-Tarbaek"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4140117-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041401174", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4140117-7", "source": "GND"}], "variant_access_point": ["Lyngby (Kopenhagen)", "Tårboek", "Lyngby", "Lyngby-Taarbaek"], "authorized_access_point": "Lyngby-Tårbaek"} 1 +2024-09-11 09:12:31.681074 2024-09-11 09:12:31.681078 0cf5b453-6784-42ec-861c-7de39d9a8f2a {"md5": "acda397807443eab4d03832e7805430d", "pid": "041370538", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Ostpreußen"}, {"authorized_access_point": "Preußen"}], "related": [{"authorized_access_point": "Preußen (Ordensstaat)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4137053-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041370538", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4137053-3", "source": "GND"}], "variant_access_point": ["Preußen (Herzogtum)", "Prūsijos Kunigaikštystė", "Ducal Prussia", "Prusy Książęce", "Prusko (vojvodstvo)", "Prusko (vévodství)"], "authorized_access_point": "Herzogtum Preußen"} 1 +2024-09-11 09:12:31.734054 2024-09-11 09:12:31.734057 4af0de28-df4c-477d-88ee-230a8e7f938f {"md5": "690c9076cb37dfbbe0be95bb660a6f67", "pid": "041194152", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=208608981"], "noteType": "dataSource"}, {"label": ["Ehemalige Verwaltungseinheit in Dänemark"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Region Nordjylland"}, {"authorized_access_point": "Region Midtjylland"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)997978201", "source": "GND"}, {"type": "bf:Nbn", "value": "094419132", "source": "ZBW"}], "authorized_access_point": "Viborg (Amt)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4119415-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041194152", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4119415-9", "source": "GND"}], "variant_access_point": ["Viborg Amt", "Amtskommune Viborg", "Amtsbezirk Viborg", "Viborg Amtskommune", "Viborg (Amt)"], "authorized_access_point": "Amt Viborg"} 1 +2024-09-11 09:12:31.799589 2024-09-11 09:12:31.799592 513a7587-9b8d-457e-b37f-26d1c3bd525a {"md5": "32575221912bf80c8d276700f589e671", "pid": "041192443", "note": [{"label": ["Mutterkirche des Schams, Rheinwald und Avers, erw. um 840, frühchristl. Vorgängerkirche, karoling. Ersatzbau. Roman. Neubau um 1100 mit Bilderdecke nach 1114, 1509 um spätgot. Chor erweitert"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Zillis"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4119244-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041192443", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4119244-8", "source": "GND"}], "variant_access_point": ["St. Martin (Zillis)", "Reformierte Kirche St. Martin (Zillis)"], "authorized_access_point": "Sankt Martin (Zillis)"} 1 +2024-09-11 09:12:31.862993 2024-09-11 09:12:31.863 0dd4dd78-0489-4683-bcd4-65d746f58548 {"md5": "ac1e0733153fa6cd03a1fec21082b8ff", "pid": "041167163", "note": [{"label": ["Homepage - https://www.ochsenhausen.de/", "Wikipedia - https://de.wikipedia.org/w/index.php?title=Ochsenhausen&oldid=246489625"], "noteType": "dataSource"}, {"label": ["Stadt im Landkreis Biberach, Oberschwaben, an der Oberschwäbischen Barockstraße"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4116716-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041167163", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4116716-8", "source": "GND"}], "variant_access_point": ["Stadt Ochsenhausen"], "authorized_access_point": "Ochsenhausen"} 1 +2024-09-11 09:12:31.935515 2024-09-11 09:12:31.935519 b8c30355-d964-402c-b8cf-55865c6bb4ea {"md5": "7cf41f18e3b47162617a103200eea968", "pid": "041154282", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4115428-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041154282", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4115428-9", "source": "GND"}], "authorized_access_point": "Obernil-Becken"} 1 +2024-09-11 09:12:32.007829 2024-09-11 09:12:32.007833 ee1c9ccd-438e-4371-8945-0f8a5831dbc1 {"md5": "e5384ad172a9adb540999da0c7ae46e7", "pid": "041112504", "note": [{"label": ["Homepage - http://www.landkreisleipzig.de"], "noteType": "dataSource"}, {"label": ["1994 Eingliederung in den Landkreis Leipziger Land, 1.8.2008 Neugründung aus den Kreisen Leipziger Land und Muldentalkreis"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Kreis Leipzig-Land"}, {"authorized_access_point": "Muldentalkreis"}, {"authorized_access_point": "Landkreis Leipziger Land"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4111250-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041112504", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4111250-7", "source": "GND"}], "variant_access_point": ["Leipzig (Kreis)", "Leipzig (Landkreis)"], "authorized_access_point": "Landkreis Leipzig"} 1 +2024-09-11 09:12:32.076506 2024-09-11 09:12:32.076511 104e57df-a6bc-44cf-be5e-d1d1916504da {"md5": "df4598ea37664652cf44e494f9b0bc90", "pid": "041087828", "note": [{"label": ["Wikipedia - http://de.wikipedia.org/wiki/Wustrow_(Fischland)"], "noteType": "dataSource"}, {"label": ["Ort im Landkreis Vorpommern-Rügen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4108782-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041087828", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4108782-3", "source": "GND"}], "variant_access_point": ["Wustrow", "Wustrow (Fischland)", "Wustro (Ostseebad)", "Wustrow (Fischland)", "Wustrow (Ribnitz-Damgarten)"], "authorized_access_point": "Wustrow Ostseebad"} 1 +2024-09-11 09:12:32.143305 2024-09-11 09:12:32.143309 b397288b-130a-4e61-bd6d-84852d754262 {"md5": "f545670f7055a7b02519991af66bd586", "pid": "041084675", "note": [{"label": ["Kreisstadt des Landkreises Wittmund, NW-Niedersachsen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4108467-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041084675", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4108467-6", "source": "GND"}], "authorized_access_point": "Wittmund"} 1 +2024-09-11 09:12:32.219536 2024-09-11 09:12:32.21954 2c03e7bf-d657-402c-8224-fd44ca14eddc {"md5": "5615528a9bfe08da120d0e2cff9c1158", "pid": "041063368", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Tihama"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4106336-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041063368", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4106336-3", "source": "GND"}], "variant_access_point": ["Nord-Tihama"], "authorized_access_point": "Tihama - Nord"} 1 +2024-09-11 09:12:32.286876 2024-09-11 09:12:32.286881 8a41645a-efaf-4aba-839a-0da0075e7659 {"md5": "cf6e9c9caf29a18da2914cc11d70413d", "pid": "04106125X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=St%C3%BCtzerbach&oldid=244058408"], "noteType": "dataSource"}, {"label": ["Selbstständige Gemeinde; seit 1. Januar 2019 Ortsteil von Ilmenau im Ilm-Kreis, Thüringen."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Ilmenau-Stützerbach"}], "related": [{"authorized_access_point": "Stützerbach (Kreis Arnstadt)"}, {"authorized_access_point": "Stützerbach (Kreis Schleusingen)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4106125-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04106125X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4106125-1", "source": "GND"}], "authorized_access_point": "Stützerbach"} 1 +2024-09-11 09:12:32.355915 2024-09-11 09:12:32.355918 bee75414-b2bf-4b4e-b872-c18140231ab8 {"md5": "94316f707b0a7d97965ab2ae2e51aa17", "pid": "041058445", "note": [{"label": ["Homepage - https://www.scheidegg.de/"], "noteType": "dataSource"}, {"label": ["Markt im Landkreis Lindau (Bodensee), West-Allgäu, Regierungsbezirk Schwaben, wahrscheinl. im 6./7. Jh. von Alemannen besiedelt, 1255 urkundl. erwähnt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4105844-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)041058445", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4105844-6", "source": "GND"}], "authorized_access_point": "Scheidegg"} 1 +2024-09-11 09:12:32.499635 2024-09-11 09:12:32.499639 b57b0b5e-6034-4dd0-ad1d-b8638abe603c {"md5": "7536c45bbc6dcfcc34747f7e9a004e47", "pid": "040994716", "note": [{"label": ["Ortsteil von Leipzig seit 1.1.1890"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}, {"authorized_access_point": "Gohlis (Leipzig)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4099471-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040994716", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4099471-5", "source": "GND"}], "variant_access_point": ["Gohlis (Leipzig)"], "authorized_access_point": "Leipzig-Gohlis"} 1 +2024-09-11 09:12:32.578869 2024-09-11 09:12:32.578874 e56f453f-bdaf-42a5-a3b4-432bb505b235 {"md5": "0c5fd95b0d15034b5884b7bcd45bcad2", "pid": "040967689", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=208609237"], "noteType": "dataSource"}, {"label": ["Ehemaliges Amt in Dänemark, nun Teil der Hauptstadtregion (Region Hovedstaden)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Region Hovedstaden"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4096768-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040967689", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4096768-2", "source": "GND"}], "variant_access_point": ["Amt Kopenhagen", "Københavns Amt", "Kopenhagen (Amt)", "København (Amt)", "Københavns Amtskommune"], "authorized_access_point": "Amt København"} 1 +2024-09-11 09:12:32.651809 2024-09-11 09:12:32.651818 ae439a9b-bfe2-4e7a-9e9a-52a1681bf0aa {"md5": "73f5926edfa865ab34c9072a0d9a5fc6", "pid": "040957977", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4095797-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040957977", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4095797-4", "source": "GND"}], "variant_access_point": ["Scheidegg-Hummel"], "authorized_access_point": "Hummel (Scheidegg, Lindau)"} 1 +2024-09-11 09:12:32.722992 2024-09-11 09:12:32.722998 74c70668-9b6a-4095-92f9-b8dea620c916 {"md5": "56350bf91c218722112e7668fb1aa06d", "pid": "040956075", "note": [{"label": ["Seit 1969 Ortsteil von Nümbrecht"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Homburg (Nümbrecht)"}, {"authorized_access_point": "Nümbrecht"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4095607-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040956075", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4095607-6", "source": "GND"}], "authorized_access_point": "Nümbrecht-Homburg"} 1 +2024-09-11 09:12:32.784708 2024-09-11 09:12:32.784712 81eff8ab-cc69-440c-914f-fea057282972 {"md5": "11ce73026883e02a9021c2fe80de28e3", "pid": "040952789", "note": [{"label": ["Gemeinde im Kreis Minden-Lübbecke"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4095278-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040952789", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4095278-2", "source": "GND"}], "variant_access_point": ["Gemeinde Hille"], "authorized_access_point": "Hille"} 1 +2024-09-11 09:12:32.850647 2024-09-11 09:12:32.850651 8f3a950a-20d7-4155-ac60-e3e35ef3e50c {"md5": "0b68af4d83e7ba3a1755b94b8878ccc5", "pid": "040912833", "note": [{"label": ["Wohnplatz im Ortsteil Koßwig der Stadt Vetschau/Spreewald im Landkreis Oberspreewald-Lausitz"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Vetschau/Spreewald"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4091283-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040912833", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4091283-8", "source": "GND"}], "variant_access_point": ["Dubrawa", "Dubrau (Vetschau/Spreewald)"], "authorized_access_point": "Dubrau (Calau)"} 1 +2024-09-11 09:12:32.929511 2024-09-11 09:12:32.929515 debd6908-78b2-4137-ab29-e465b5bda7f8 {"md5": "c1587d82a9cddfced8d123cf25d171ea", "pid": "040873862", "note": [{"label": ["unter - https://de.wikipedia.org/wiki/Bernkastel-Kues"], "noteType": "dataSource"}, {"label": ["Stadt an der Mosel, Kreis Bernkastel, 1. Hälfte 11. Jh. urkundl. erwähnt, 1291 Stadtrechte, 1332 erneuert, 1.4.1905 mit Kues zu Bernkastel-Kues zusammengeschlossen", "Kleinräumige Geographika und Körperschaften aus dem heutigen Ortsteil werden mit dem Doppelort angesetzt, es sei denn, es handelt sich um die nach § 209,5 Abs. 3+4 und § 605,7 Satz 2 als Ausnahme formulierten Fälle. Nach der Eingemeindung verwende den Doppelort als Ausstellungs- bzw. Kongressort"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bernkastel-Kues"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4087386-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040873862", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4087386-9", "source": "GND"}], "authorized_access_point": "Bernkastel"} 1 +2024-09-11 09:12:33.00414 2024-09-11 09:12:33.004144 fee7ab96-b202-44b8-9d78-776863ae84d7 {"md5": "18f55bf272bfc34a0395e45c2ac3b355", "pid": "040865622", "note": [{"label": ["Homepage - http://www.fuerstenfeld.at", "Homepage - https://fuerstenfeld.gv.at"], "noteType": "dataSource"}, {"label": ["2015 Altenmarkt bei Fürstenfeld und Übersbach eingemeindet"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Altenmarkt bei Fürstenfeld"}, {"authorized_access_point": "Übersbach"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4086562-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040865622", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4086562-9", "source": "GND"}], "variant_access_point": ["Stadtgemeinde Fürstenfeld", "Fürstenfeld Thermenhauptstadt"], "authorized_access_point": "Fürstenfeld"} 1 +2024-09-11 09:12:33.577812 2024-09-11 09:12:33.577817 9a244df7-af64-41b5-9d1e-10695c47b3f5 {"md5": "597d0b47f62767a78ad788c8a79455a0", "pid": "040680223", "note": [{"label": ["Der Kreis Züllichau-Schwiebus war ein preußischer Landkreis, der von 1816 bis 1945 in der Provinz Brandenburg bestand."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Kreis Schwiebus"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4068022-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040680223", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4068022-8", "source": "GND"}], "variant_access_point": ["Land Schwiebus", "Landkreis Züllichau-Schwiebus", "Züllichau-Schwiebus (Kreis)"], "authorized_access_point": "Kreis Züllichau-Schwiebus"} 1 +2024-09-11 09:12:33.071239 2024-09-11 09:12:33.071243 1f2b8dae-c2f6-4d24-9884-30913aa19847 {"md5": "77b0b6cf2a63c338eb7d6dff3101affe", "pid": "040805905", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Burk_(Forchheim)&oldid=237498787"], "noteType": "dataSource"}, {"label": ["1978 im Zuge der Gebietsreform in Bayern zusammen mit der ehemaligen Gemeinde Buckenhofen nach Forchheim eingemeindet"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Forchheim (Oberfr.)"}, {"authorized_access_point": "Burk (Landkreis Forchheim)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4080590-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040805905", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4080590-6", "source": "GND"}], "variant_access_point": ["Forchheim (Oberfr.)- Burk", "Burk (Forchheim-Burk)"], "authorized_access_point": "Forchheim-Burk"} 1 +2024-09-11 09:12:33.143615 2024-09-11 09:12:33.14362 de53a281-09ab-4d8f-a3e6-dd5ded91dfeb {"md5": "cb03c02e0be6e4b5d9e4a86971a290dd", "pid": "040802558", "note": [{"label": ["Provinzhauptstadt von Westjava, 1488 urkundl. erwähnt, bis 1972 Bandoeng"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)989919358", "source": "GND"}, {"type": "bf:Nbn", "value": "091404274", "source": "ZBW"}], "authorized_access_point": "Bandung"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4080255-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040802558", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4080255-3", "source": "GND"}], "variant_access_point": ["Bandoeng", "Bandong", "Kota Kembang"], "authorized_access_point": "Bandung"} 1 +2024-09-11 09:12:33.212223 2024-09-11 09:12:33.212227 72c43256-976e-484d-9fe4-e24960444857 {"md5": "9e2ddb4b9102b9a60a2c23a03c35f3da", "pid": "040794903", "note": [{"label": ["Umfasst die fünf Kt. Luzern, Uri, Schwyz, Unterwalden (Ob- und Nidwalden) und Zug"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Schweiz"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4079490-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040794903", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4079490-8", "source": "GND"}], "variant_access_point": ["Zentralschweiz", "Fünf Orte"], "authorized_access_point": "Innerschweiz"} 1 +2024-09-11 09:12:33.287356 2024-09-11 09:12:33.287359 e4907ada-de55-4988-8bb2-516603153431 {"md5": "59262b33e7ddc1da78ac48952641b616", "pid": "040768996", "note": [{"label": ["Sacherschließung: Benutzt für das Russische Reich 1547-1917, das Territorium für die Zeit davor, wenn der behandelte Raum grösser ist als die für diese Zeit existierenden Fürstentümer sowie für die Russische Föderation ab 1991. Für die Russische SFSR 1917-1991 benutze Russische SFSR."], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Russische SFSR"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970009437", "source": "GND"}, {"type": "bf:Nbn", "value": "17534-6", "source": "ZBW"}, {"type": "uri", "value": "http://zbw.eu/stw/descriptor/17534-6"}], "authorized_access_point": "Russland"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)970586809", "source": "GND"}, {"type": "bf:Nbn", "value": "10057012", "source": "GESIS"}, {"type": "uri", "value": "http://lod.gesis.org/thesoz/concept_10057012"}], "authorized_access_point": "Russland"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4076899-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040768996", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4076899-5", "source": "GND"}], "variant_access_point": ["Rußland", "Krievija", "Federazione Russa", "RF", "Großrussland", "Großrußland", "Russia (-1917; 1992-)", "Rossijskaja Imperija", "Russie", "Empire de Russie", "Russian Federation", "Federacja Rosyjska", "Rosja", "Rossija", "Rossijskaja Federacija", "Russische Föderation", "RF (Rossija)", "Russia", "Russland (-1917 ; 1992-)", "Russisches Reich", "РФ", "Российская Федерация", "Российская Империя"], "authorized_access_point": "Russland"} 1 +2024-09-11 09:12:33.36771 2024-09-11 09:12:33.367714 aec95a24-5be2-4039-9b1e-d2115fa9ff48 {"md5": "c7f45c21d85a7a210122cb82e60d8100", "pid": "040754766", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Herzogtum Schleswig"}, {"authorized_access_point": "Dänemark"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)992404371", "source": "GND"}, {"type": "bf:Nbn", "value": "091413621", "source": "ZBW"}], "authorized_access_point": "Nordschleswig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4075476-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040754766", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4075476-5", "source": "GND"}], "variant_access_point": ["Südliches Jütland", "Jütland", "Schleswig", "Südjütland", "Nordslesvig", "Dänemark", "Süddänemark", "Sønderjylland"], "authorized_access_point": "Nordschleswig"} 1 +2024-09-11 09:12:33.439699 2024-09-11 09:12:33.439703 498bd61b-aa85-4a95-83cd-b0b54abd9425 {"md5": "1e199dc54e528743902dd22c36206603", "pid": "040738582", "note": [{"label": ["Winzerdorf an der Mosel, Kreis Bernkastel, 1.4.1905 mit Bernkastel zu Bernkastel-Kues zusammengeschlossen", "Kleinräumige Geographika und Körperschaften aus dem heutigen Ortsteil werden mit dem Doppelort angesetzt, es sei denn, es handelt sich um die nach § 209,5 Abs. 3+4 und § 605,7 Satz 2 als Ausnahme formulierten Fälle. Nach der Eingemeindung verwende den Doppelort als Ausstellungs- bzw. Kongressort"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bernkastel-Kues"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4073858-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040738582", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4073858-9", "source": "GND"}], "variant_access_point": ["Cues"], "authorized_access_point": "Kues"} 1 +2024-09-11 09:12:33.51102 2024-09-11 09:12:33.511024 680827fd-7c72-44eb-817b-c02a0c4e182f {"md5": "8e36186371694335e0e0dfcd5161eedf", "pid": "040693309", "note": [{"label": ["Homepage - https://www.bernkastel-kues.de"], "noteType": "dataSource"}, {"label": ["Stadt an der Mosel, Landkreis Bernkastel-Wittlich (-7-6-1969: (Land-)Kreis Bernkastel), 1.4.1905 durch Zusammenschluß von Bernkastel und Kues entstanden"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Bernkastel"}, {"authorized_access_point": "Kues"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4069330-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040693309", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4069330-2", "source": "GND"}], "variant_access_point": ["Bernkastel-Cues", "Berncastel-Cues", "Stadt Bernkastel-Kues", "Stadtgemeinde Bernkastel-Kues", "Verbandsgemeinde Bernkastel-Kues"], "authorized_access_point": "Bernkastel-Kues"} 1 +2024-09-11 09:12:33.652894 2024-09-11 09:12:33.652899 00c887e0-41d2-458e-ad63-b05383be3e46 {"md5": "7c94c78ed971dea4d3326798cc95fbc7", "pid": "040657752", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4065775-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040657752", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4065775-9", "source": "GND"}], "variant_access_point": ["Münstersche Bucht", "Münstersche Kreidebucht", "Münsterländer Bucht", "Münsterländer Becken"], "authorized_access_point": "Westfälische Bucht"} 1 +2024-09-11 09:12:33.72391 2024-09-11 09:12:33.723915 e2fa7bab-2854-459c-9261-4751b5dea141 {"md5": "6197a6bbc696e06bd7e401abaa40badc", "pid": "04062501X", "note": [{"label": ["Homepage - http://www.comune.venezia.it"], "noteType": "dataSource"}, {"label": ["Hauptstadt der Region Venetien und der Metropolitanstadt Venedig"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)997977663", "source": "GND"}, {"type": "bf:Nbn", "value": "091419204", "source": "ZBW"}], "authorized_access_point": "Venedig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4062501-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04062501X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4062501-1", "source": "GND"}], "variant_access_point": ["Veneţia", "Venecija", "Benetia", "Venesia", "Staat Venedig", "Republik Venedig", "Città di Venezia", "Kronland Venedig", "Venetische Provinzen", "Province Venete", "Provincie Venete", "Venezia", "Venecia", "Venice", "Venecio", "Venise", "Vinegia", "Comune di Venezia", "Venegia", "Vinetia", "Venetia", "Venetik", "Wenetik", "Serenissima (Venezia)", "Enetiesi", "Henetiesi", "Vineggia"], "authorized_access_point": "Venedig"} 1 +2024-09-11 09:12:33.77769 2024-09-11 09:12:33.777693 0bca507d-ee3f-4b0d-8e1f-9d1c57d9ff22 {"md5": "e5170baccc2022760a3d1cb03c41b3e9", "pid": "040604853", "note": [{"label": ["Region in Mittelitalien mit den Provinzen Arezzo, Florenz, Grosseto, Livorno, Lucca, Massa-Carrara, Pisa, Pistoia, Prato, Siena. Hauptstadt: Florenz"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Etrurien"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)1256264652", "source": "GND"}, {"type": "bf:Nbn", "value": "8021", "source": "ITRFAO"}, {"type": "uri", "value": "http://aims.fao.org/aos/agrovoc/c_8021"}], "authorized_access_point": "Tursiops"}, {"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)997923210", "source": "GND"}, {"type": "bf:Nbn", "value": "091418437", "source": "ZBW"}], "authorized_access_point": "Toskana"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4060485-8", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040604853", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4060485-8", "source": "GND"}], "variant_access_point": ["Toscana", "Tuscany", "Tuszien", "Tuscien", "Regione Toscana", "Granducato Toscana", "Großherzogtum Toskana"], "authorized_access_point": "Toskana"} 1 +2024-09-11 09:12:33.843524 2024-09-11 09:12:33.843529 eda1bab2-4d51-4cf5-9b2b-d9fa8ee0b6ac {"md5": "508ba898eb56a0d44b452191caebd76c", "pid": "04060151X", "note": [{"label": ["Küstentiefland im SW der Arabischen Halbinsel, Saudi-Arabien und Jemen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4060151-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04060151X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4060151-1", "source": "GND"}], "variant_access_point": ["Tihamah"], "authorized_access_point": "Tihama"} 1 +2024-09-11 09:12:33.922267 2024-09-11 09:12:33.92227 569302bc-9dc8-4bf0-b00a-9b322787770d {"md5": "6c1f8317220d07b995fe64a37e090221", "pid": "040594084", "note": [{"label": ["Stadt im Landkreis Potsdam-Mittelmark"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4059408-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040594084", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4059408-7", "source": "GND"}], "authorized_access_point": "Teltow"} 1 +2024-09-11 09:12:33.99854 2024-09-11 09:12:33.998544 4fe30ac9-cf7e-4b85-86b7-eeb47fa95261 {"md5": "d1b21e1d0e3ec648b0aba83be4b54148", "pid": "04057749X", "note": [{"label": ["Dänische Amtskommune, seit 2007 gehört das Gebiet zur Region Sjælland"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Region Sjælland"}, {"authorized_access_point": "Nykøbing Falster"}], "related": [{"authorized_access_point": "Amt Præstø"}, {"authorized_access_point": "Amt Maribo"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)997893702", "source": "GND"}, {"type": "bf:Nbn", "value": "091417678", "source": "ZBW"}], "authorized_access_point": "Storstrom (Amt)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4057749-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04057749X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4057749-1", "source": "GND"}], "variant_access_point": ["Storstrøms (Amt)", "Storstrøms Amt", "Storstrøm (Amt)", "Storstrøm Amtskommune"], "authorized_access_point": "Amt Storstrøm"} 1 +2024-09-11 09:12:34.095595 2024-09-11 09:12:34.095599 861c22d5-c25b-483b-bc0c-d4d6a1f02a1d {"md5": "06d65b47da67073e70b75037445dd854", "pid": "040516687", "note": [{"label": ["Homepage - http://www.saopaulo.sp.gov.br"], "noteType": "dataSource"}, {"label": ["Bundesstaat in Südostbrasilien"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Provinz São Paulo"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)997844345", "source": "GND"}, {"type": "bf:Nbn", "value": "091416604", "source": "ZBW"}], "authorized_access_point": "Sao Paulo (Staat)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4051668-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040516687", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4051668-4", "source": "GND"}], "variant_access_point": ["Estado de São Paulo", "S. Paulo (Staat)", "Estado de S. Paulo"], "authorized_access_point": "São Paulo (Staat)"} 1 +2024-09-11 09:12:34.160304 2024-09-11 09:12:34.16031 1a04f709-90d2-4b26-ba91-20a38b36a2e3 {"md5": "94a38fee74378f6c52c62e306b852c69", "pid": "040425134", "note": [{"label": ["Stadt im Landkreis Aurich, Ostfriesland, 1255 urkundl. erwähnt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Landkreis Aurich"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4042513-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040425134", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4042513-7", "source": "GND"}], "variant_access_point": ["Norden (Ostfriesland)", "Norden (Ostfr.)", "Norden in Ostfriesland", "Norden i. Ostfr.", "Norden (Ostfriesland)", "Stadt Norden", "Nörden"], "authorized_access_point": "Norden (Landkreis Aurich)"} 1 +2024-09-11 09:12:34.227072 2024-09-11 09:12:34.227075 fd6fef21-e17d-413f-8bb9-b97888694f31 {"md5": "31028e0c98ea25836b97af1525717a60", "pid": "04041146X", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?title=Nagold&oldid=218578103", "Homepage - https://www.nagold.de/"], "noteType": "dataSource"}, {"label": ["Stadt im Kreis Calw, Region Nordschwarzwald, Baden-Württemberg"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4041146-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04041146X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4041146-1", "source": "GND"}], "variant_access_point": ["Stadt Nagold", "Große Kreisstadt Nagold"], "authorized_access_point": "Nagold"} 1 +2024-09-11 09:12:34.29033 2024-09-11 09:12:34.290335 b4028454-1a4e-430a-b123-db5942e3d210 {"md5": "413a2dc50ebd875f25410ee848da5212", "pid": "040376044", "note": [{"label": ["Stadt im Landkreis Leipzig (bis 1.8.2008 Landkreis Leipziger Land), 1.1.1934 durch Zusammenschluß von Oetzsch, Markkleeberg u. Gautzsch gegründet; später gebräuchliche Namen Markkleeberg-Mitte (Oetzsch) und Markkleeberg-West (Gautzsch)"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Oetzsch"}, {"authorized_access_point": "Gautzsch"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4037604-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040376044", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4037604-7", "source": "GND"}], "variant_access_point": ["Stadt Markkleeberg", "Cleburg"], "authorized_access_point": "Markkleeberg"} 1 +2024-09-11 09:12:34.355506 2024-09-11 09:12:34.35551 cd76581f-5622-4e98-92d6-7a90835ec19a {"md5": "3bfdf0c9614c12382e4dfa7cc1393309", "pid": "04037372X", "note": [{"label": ["Homepage - https://www.mannheim.de"], "noteType": "dataSource"}, {"label": ["Stadt im Regierungsbezirk Karlsruhe, Dorf 766 urkundl. erwähnt, Stadt ab 1607 planmäßig angelegt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)992252873", "source": "GND"}, {"type": "bf:Nbn", "value": "091412013", "source": "ZBW"}], "authorized_access_point": "Mannheim"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4037372-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04037372X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4037372-1", "source": "GND"}], "variant_access_point": ["Mannem", "Monnem", "Stadtgemeinde Mannheim", "Großherzoglich Badische Hauptstadt Mannheim", "Grh. Badische Hauptstadt Mannheim", "Badische Hauptstadt Mannheim", "Mannheim, Stadt im Quadrat", "Mannheim 2", "Stadt Mannheim", "Mannhemii", "Man(nhemium", "Mannehemium", "Interamnium"], "authorized_access_point": "Mannheim"} 1 +2024-09-11 09:12:34.424289 2024-09-11 09:12:34.424295 110c6cb5-6ddf-4dcb-b8e8-65a5d4ca96a2 {"md5": "e4324e94a88df3d67957f0124fbc9b4c", "pid": "040368114", "note": [{"label": ["Ortsteil von Bernkastel-Kues"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Bernkastel-Kues"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4036811-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040368114", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4036811-7", "source": "GND"}], "variant_access_point": ["Machern (Bernkastel-Kues)"], "authorized_access_point": "Bernkastel-Kues-Machern"} 1 +2024-09-11 09:12:34.49084 2024-09-11 09:12:34.490845 bbb01eb7-7075-4d3b-a162-a5b8ab7efa0c {"md5": "4d1af86c6f140a467811676d16d450ce", "pid": "040357422", "note": [{"label": ["Hauptstadt von Peru u. der gleichnamigen Provinz, 6.1.1535 als Ciudad de Los Reyes gegründet"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)992096243", "source": "GND"}, {"type": "bf:Nbn", "value": "091411270", "source": "ZBW"}], "authorized_access_point": "Lima"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4035742-9", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040357422", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4035742-9", "source": "GND"}], "variant_access_point": ["Ciudad de Los Reyes"], "authorized_access_point": "Lima"} 1 +2024-09-11 09:12:34.564685 2024-09-11 09:12:34.564694 a1ac9151-a135-454b-82da-db63792aafb3 {"md5": "bd167d341e8b6869132371b8df6aa467", "pid": "040346919", "note": [{"label": ["Stadt im Naturpark Vogelsberg, Landkreis Gießen, 786 urkundl. erwähnt, 1405 als Stadt bezeichnet"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Landkreis Gießen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4034691-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040346919", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4034691-2", "source": "GND"}], "variant_access_point": ["Laubach (Oberhessen)", "Laubach in Hessen"], "authorized_access_point": "Laubach (Landkreis Gießen)"} 1 +2024-09-11 09:12:34.634506 2024-09-11 09:12:34.63451 9fb38a9f-9f03-4797-9e72-189045265461 {"md5": "205d6cd6d12ae96090c26b61a003f690", "pid": "040304817", "note": [{"label": ["Homepage - https://www.kiel.de/"], "noteType": "dataSource"}, {"label": ["Landeshauptstadt von Schleswig-Holstein seit 23.8.1946, 1233 gegründet, 1242 Stadtrecht"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)991666976", "source": "GND"}, {"type": "bf:Nbn", "value": "09141024X", "source": "ZBW"}], "authorized_access_point": "Kiel"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4030481-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040304817", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4030481-4", "source": "GND"}], "variant_access_point": ["Gross-Kiel", "Chilonium", "Landeshauptstadt Kiel", "Kilia Holsatorum", "Kilonum Holsatorum", "Chilomium", "Kilia", "Kiliae Holsatorum", "Kilonia", "Kylis", "Ķīle"], "authorized_access_point": "Kiel"} 1 +2024-09-11 09:12:34.704308 2024-09-11 09:12:34.704313 277a6a73-a13f-4a47-a3c5-06e47bc58cfe {"md5": "140ba84cfb6725324d372efb7adf2724", "pid": "040296377", "note": [{"label": ["Stadt im Wetteraukreis"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Gross-Karben"}, {"authorized_access_point": "Klein-Karben"}, {"authorized_access_point": "Kloppenheim"}, {"authorized_access_point": "Okarben"}, {"authorized_access_point": "Rendel"}, {"authorized_access_point": "Petterweil"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4029637-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040296377", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4029637-4", "source": "GND"}], "authorized_access_point": "Karben"} 1 +2024-09-11 09:12:34.774196 2024-09-11 09:12:34.774201 847f9b99-e48a-40ea-b500-4a06cd9995a0 {"md5": "d3627f5cff65646c7fb6eedfcf8b6e58", "pid": "040288099", "note": [{"label": ["Homepage - https://www.judenburg.at"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4028809-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040288099", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4028809-2", "source": "GND"}], "variant_access_point": ["Stadtgemeinde Judenburg"], "authorized_access_point": "Judenburg"} 1 +2024-09-11 09:12:34.846052 2024-09-11 09:12:34.846057 ae3bf24a-8eec-4d93-a858-24d972371019 {"md5": "5ee9ceb5419440334af2e073dd5e13a0", "pid": "04024010X", "note": [{"label": ["Homepage - https://heidenheim.hahnenkamm.de/"], "noteType": "dataSource"}, {"label": ["Markt im Landkreis Weißenburg-Gunzenhausen, Regierungsbezirk Mittelfranken, Kloster 752 gegründet"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4024010-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04024010X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4024010-1", "source": "GND"}], "variant_access_point": ["Heidenheim (Landkreis Weißenburg-Gunzenhausen)", "Heidenheim (Mittelfranken)", "Markt Heidenheim", "Heidenheim (am Hahnenkamm)", "Heidenheim (Hahnenkamm)", "Heidenheim am Hahnenkamm"], "authorized_access_point": "Heidenheim"} 1 +2024-09-11 09:12:34.926456 2024-09-11 09:12:34.92646 048d595a-1af0-4149-bce4-af03da42f51b {"md5": "3f462632e9f20b09f25fff76edf7b902", "pid": "040183408", "note": [{"label": ["Homepage - https://www.freilassing.de/home/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4018340-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040183408", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4018340-3", "source": "GND"}], "variant_access_point": ["Stadt Freilassing"], "authorized_access_point": "Freilassing"} 1 +2024-09-11 09:12:34.997763 2024-09-11 09:12:34.997768 b153ebac-ac69-4d4a-a767-28f4949428fd {"md5": "7f207297ee4d1f395e3faa30333c55dc", "pid": "040093417", "note": [{"label": ["Homepage - https://www.calw.de"], "noteType": "dataSource"}, {"label": ["Kreisstadt des Landkreises Calw; 1075 urkundl. erwähnt, seit 13. Jh. Stadtrecht"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Calw-Hirsau (1975)"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)990001474", "source": "GND"}, {"type": "bf:Nbn", "value": "091405505", "source": "ZBW"}], "authorized_access_point": "Calw"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4009341-4", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040093417", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4009341-4", "source": "GND"}], "variant_access_point": ["Stadt Calw", "Große Kreisstadt Calw", "Kalw"], "authorized_access_point": "Calw"} 1 +2024-09-11 09:12:35.062196 2024-09-11 09:12:35.062206 bf1957cd-7888-43dd-b04b-2062e9011eda {"md5": "0d25526afef25e16563c71105efd7875", "pid": "04009300X", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Peru"}], "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)989991571", "source": "GND"}, {"type": "bf:Nbn", "value": "091405467", "source": "ZBW"}], "authorized_access_point": "Cajamarca (Dep.)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4009300-1", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)04009300X", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4009300-1", "source": "GND"}], "variant_access_point": ["Cajamarca (Departamento)", "Cajamarca (Dep.)", "Departamento de Cajamarca"], "authorized_access_point": "Departement Cajamarca"} 1 +2024-09-11 09:12:35.125258 2024-09-11 09:12:35.125263 e30bc396-192c-4a60-bdd7-c4a57f36b6b4 {"md5": "a7c959e4218121d715a2da2fe8af7c0a", "pid": "040055744", "note": [{"label": ["Homepage - http://www.gemeinde.berchtesgaden.de/"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "exactMatch": [{"source": "GND", "identifiedBy": [{"type": "bf:Nbn", "value": "(DE-101)989944697", "source": "GND"}, {"type": "bf:Nbn", "value": "091404614", "source": "ZBW"}], "authorized_access_point": "Berchtesgaden"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4005574-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040055744", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4005574-7", "source": "GND"}], "variant_access_point": ["Markt Berchtesgaden"], "authorized_access_point": "Berchtesgaden"} 1 +2024-09-11 09:12:35.198087 2024-09-11 09:12:35.198094 1aa2290d-a60b-4b8f-8c54-6ff67f38a6b9 {"md5": "7938bf3ca65606f55ee9ab96a8b7d1c1", "pid": "040024024", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/w/index.php?oldid=243938940"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Amt Sønderjylland"}, {"authorized_access_point": "Apenrade"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/4002402-7", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)040024024", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)4002402-7", "source": "GND"}], "variant_access_point": ["Amt Apenrade", "Amt Abenraa", "Apenrade Amt", "Abenraa Amt", "Amt Abenra", "Åbenrå Amt", "Åbenrå (Amt)", "Abenraa (Amt)", "Apenrade (Amt)"], "authorized_access_point": "Amt Åbenrå"} 1 +2024-09-11 09:12:35.253304 2024-09-11 09:12:35.253308 3214f535-4926-410a-b649-1bf388a6ec0e {"md5": "0119a6ae1a1fe6cd513942e62eacad12", "pid": "030141605", "note": [{"label": ["Stadtteil von Grünberg im Landkreis Gießen, Hessen"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Grünberg (Landkreis Gießen)"}, {"authorized_access_point": "Stockhausen (Landkreis Gießen)"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3014160-6", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)030141605", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)3014160-6", "source": "GND"}], "variant_access_point": ["Grünberg (Landkreis Gießen-Stockhausen)", "Stockhausen (Grünberg-Stockhausen)"], "authorized_access_point": "Grünberg-Stockhausen"} 1 +2024-09-11 09:12:35.319613 2024-09-11 09:12:35.319618 de0acd21-3752-4aeb-a0fa-923eacd8feb2 {"md5": "f0a45a3dbd510d3700e5b98fcd07e8aa", "pid": "030125898", "note": [{"label": ["Wikipedia - https://de.wikipedia.org/wiki/Rodheim_vor_der_H%C3%B6he"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Rosbach-Rodheim"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3012589-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)030125898", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)3012589-3", "source": "GND"}], "variant_access_point": ["Rodheim (Höhe)", "Rottheim"], "authorized_access_point": "Rodheim vor der Höhe"} 1 +2024-09-11 09:12:35.390052 2024-09-11 09:12:35.390055 5859693f-dab6-4f03-bb1c-4d5d02afbc7d {"md5": "f753520fcadd8c6704638658fdfb46b6", "pid": "030089050", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Leipzig"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/3008905-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)030089050", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)3008905-0", "source": "GND"}], "authorized_access_point": "Leipzig-Süd"} 1 +2024-09-11 09:12:35.468841 2024-09-11 09:12:35.468846 1df017bb-c714-4d5d-a11e-0a66aff848e6 {"md5": "46a39c732601a900ca11cce1067fb51d", "pid": "007749023", "note": [{"label": ["Ehemaliges Amt, gehörte seit 2002 zu Bornholms Regionskommune und seit 2007 wie Kopenhagen und Frederiksberg zur Region Hovedstaden und hat seinen Amtstatus verloren"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bornholms Regionskommune"}, {"authorized_access_point": "Rønne"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/2128029-0", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)007749023", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)2128029-0", "source": "GND"}], "variant_access_point": ["Bornholms Amt", "Bornholm (Amt)"], "authorized_access_point": "Amt Bornholm"} 1 +2024-09-11 09:12:35.535872 2024-09-11 09:12:35.535877 8c42a4f4-9ccb-4005-9429-bca34068b879 {"md5": "11fb7005564dd0b01a75e47807f64786", "pid": "004280768", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Egling"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1046115-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)004280768", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1046115-2", "source": "GND"}], "authorized_access_point": "Deining (Wolfratshausen)"} 1 +2024-09-11 09:12:35.611055 2024-09-11 09:12:35.611061 94863676-8899-46c0-851e-ebe45ac5d6a0 {"md5": "798e9b59d22257f91479d9f15569561a", "pid": "004205731", "note": [{"label": ["Internet - http://rocor.de/de"], "noteType": "dataSource"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/1032392-2", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)004205731", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)1032392-2", "source": "GND"}], "variant_access_point": ["Russian Orthodox Church outside Russia", "Russian Orthodox Church outside Russia", "Deutsche Diözese der Russischen Orthodoxen Kirche im Ausland", "Russian Orthodox Church outside Russia", "Russische Orthodoxe Diözese des Orthodoxen Bischofs von Berlin und Deutschland", "Russische Orthodoxe Diözese von Berlin und Deutschland", "Russische Orthodoxe Kirche im Ausland"], "authorized_access_point": "Russisch-Orthodoxe Diözese des Orthodoxen Bischofs von Berlin und Deutschland"} 1 +2024-09-11 09:12:35.677079 2024-09-11 09:12:35.677083 67440180-5102-4a01-86f7-e1fd4041b8dd {"md5": "79f8e9c4bb6f7efb9a93e313b3c534c9", "pid": "002631628", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "broader": [{"authorized_access_point": "Bolków"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/263162-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)002631628", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)263162-3", "source": "GND"}], "authorized_access_point": "Bolkenhain"} 1 +2024-09-11 09:12:35.727373 2024-09-11 09:12:35.727377 a9aa3d10-ad3c-4f1a-9c39-3c31074f70ee {"md5": "90e84803579a63981d67e52fc642f78c", "pid": "001101536", "note": [{"label": ["Stadt im County Leicestershire, East Midlands, England, 1086 urkundl. erwähnt"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/110153-5", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)001101536", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)110153-5", "source": "GND"}], "authorized_access_point": "Melton Mowbray"} 1 +2024-09-11 09:12:35.788426 2024-09-11 09:12:35.788431 57d28b89-3d13-44d6-9025-54d8e4d119f3 {"md5": "f83612b9c6b36608796e2ea9cdc4667b", "pid": "000347078", "note": [{"label": ["21.6.1975 nach Aalen eingemeindet, im Ostalbkreis, Baden-Württemberg"], "noteType": "general"}], "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_gnd/gnd-place-v0.0.1.json", "related": [{"authorized_access_point": "Aalen"}, {"authorized_access_point": "Wasseralfingen"}], "identifiedBy": [{"type": "uri", "value": "http://d-nb.info/gnd/34707-3", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-101)000347078", "source": "GND"}, {"type": "bf:Nbn", "value": "(DE-588)34707-3", "source": "GND"}], "authorized_access_point": "Aalen-Wasseralfingen"} 1 diff --git a/data/plgnd_pidstore.csv b/data/plgnd_pidstore.csv index 07648841..25fa0523 100644 --- a/data/plgnd_pidstore.csv +++ b/data/plgnd_pidstore.csv @@ -1,913 +1,720 @@ -2024-07-16 19:07:20.121029 2024-07-16 19:07:20.121037 plgnd 1335257845 R rec 4f7faa9c-6c06-4277-88f3-d26fa854ef85 -2024-07-16 19:07:20.219524 2024-07-16 19:07:20.219529 plgnd 1335257101 R rec 2e4c32cc-6d76-4184-8533-48a9714ae4bf -2024-07-16 19:07:20.296297 2024-07-16 19:07:20.296302 plgnd 133525675X R rec e3ef116b-2488-442b-9f39-354c129fcbd1 -2024-07-16 19:07:20.345839 2024-07-16 19:07:20.345845 plgnd 133525207X R rec a874fcf0-2d52-442c-b013-881a15d02dd1 -2024-07-16 19:07:20.39531 2024-07-16 19:07:20.395315 plgnd 1335249966 R rec 59d2c463-5914-4c53-b159-6f7456367489 -2024-07-16 19:07:20.446528 2024-07-16 19:07:20.446535 plgnd 1335243240 R rec 5fdae311-c514-4943-a530-338bc892ee91 -2024-07-16 19:07:20.496332 2024-07-16 19:07:20.496337 plgnd 133523909X R rec 449dc92b-0ea0-49a6-aa17-8b87f2228d26 -2024-07-16 19:07:20.557505 2024-07-16 19:07:20.557609 plgnd 1335217711 R rec 88d26b8e-f018-49fd-ba96-9ac40b615b3b -2024-07-16 19:07:20.64087 2024-07-16 19:07:20.640883 plgnd 1335201653 R rec 427c684d-d1fd-412b-9387-f0b997b0e0f0 -2024-07-16 19:07:20.734336 2024-07-16 19:07:20.734346 plgnd 1335141790 R rec 7c3b1c81-4dcd-4ab6-853c-7330828f17bc -2024-07-16 19:07:20.815287 2024-07-16 19:07:20.815298 plgnd 1335107711 R rec a38146f3-f0b4-4c45-b710-f30108a5f668 -2024-07-16 19:07:20.897085 2024-07-16 19:07:20.897096 plgnd 1335104917 R rec 7c94df85-56af-4708-82f6-9cfefdc8284e -2024-07-16 19:07:20.983542 2024-07-16 19:07:20.983552 plgnd 1335098399 R rec 3faf1e19-5b8b-4907-90e3-59e17c353cdc -2024-07-16 19:07:21.066019 2024-07-16 19:07:21.06603 plgnd 1335092390 R rec 1b3c2a53-67ea-44ea-9c9e-149336b7842a -2024-07-16 19:07:21.150024 2024-07-16 19:07:21.150036 plgnd 1335092196 R rec 71454204-9a62-45ff-b488-889f6bd1c97f -2024-07-16 19:07:21.25494 2024-07-16 19:07:21.254952 plgnd 1335086005 R rec 725814f4-57de-4448-ab25-e5c8623ea3bc -2024-07-16 19:07:21.313969 2024-07-16 19:07:21.313975 plgnd 1335058036 R rec 6d7fdbe4-a7ab-4449-9114-acb0ca4a8436 -2024-07-16 19:07:21.405205 2024-07-16 19:07:21.405216 plgnd 1334938016 R rec 6a4d1e3e-7a31-46ed-9d74-c9498378ac10 -2024-07-16 19:07:21.480824 2024-07-16 19:07:21.480835 plgnd 1334917981 R rec 3ddc7186-9427-4842-9aa4-9f3d1ce41c3d -2024-07-16 19:07:21.565055 2024-07-16 19:07:21.565069 plgnd 1334916292 R rec 454e13ce-62a3-4ed6-ae78-5484dfbea9c7 -2024-07-16 19:07:21.648983 2024-07-16 19:07:21.648994 plgnd 1334913498 R rec 71e0bfb7-c4e0-4b3a-a19f-2c36fca5778b -2024-07-16 19:07:21.73576 2024-07-16 19:07:21.735771 plgnd 1334907684 R rec 9bbfddd7-7c53-4205-9679-659a03f24f62 -2024-07-16 19:07:21.815213 2024-07-16 19:07:21.815228 plgnd 1334907048 R rec 39974569-0892-40bd-9c65-5660384f7f29 -2024-07-16 19:07:21.902428 2024-07-16 19:07:21.902439 plgnd 1334904251 R rec 9e3fe4ed-31a8-4e1d-ab8d-a6cb5ee0effd -2024-07-16 19:07:21.992673 2024-07-16 19:07:21.992685 plgnd 133490281X R rec 71e3ca6a-c7e4-402f-b17f-eee25034bea0 -2024-07-16 19:07:22.077647 2024-07-16 19:07:22.077658 plgnd 1334900256 R rec 4b15cd73-38d2-47de-896a-2db8af49a5a3 -2024-07-16 19:07:22.16076 2024-07-16 19:07:22.160776 plgnd 133489874X R rec 48735cf2-ea46-4433-b8db-be4eedddfc28 -2024-07-16 19:07:22.241161 2024-07-16 19:07:22.241171 plgnd 1334896755 R rec df3d7c35-f6ea-4478-8022-e1f52b6c640d -2024-07-16 19:07:22.327665 2024-07-16 19:07:22.327671 plgnd 1334893594 R rec 90348e5d-7f95-4a2c-af17-d89595a58445 -2024-07-16 19:07:22.374219 2024-07-16 19:07:22.374224 plgnd 133489129X R rec af2642c8-f873-4be1-9c44-a6716dfa5d62 -2024-07-16 19:07:22.432923 2024-07-16 19:07:22.432935 plgnd 1334878234 R rec d8785b6c-3acf-47e8-9ae2-73544be421fe -2024-07-16 19:07:22.507443 2024-07-16 19:07:22.507459 plgnd 1334875707 R rec 8bdbabe7-35a0-4ddf-9dfc-2ee44fac0107 -2024-07-16 19:07:22.586035 2024-07-16 19:07:22.586046 plgnd 1334874387 R rec 8744df06-e8df-40da-abb8-0def692d3c2b -2024-07-16 19:07:22.667829 2024-07-16 19:07:22.667848 plgnd 1334867097 R rec 02f31023-5feb-4a3a-abe8-7b12701d04c1 -2024-07-16 19:07:22.748284 2024-07-16 19:07:22.748296 plgnd 1334866473 R rec 198ac5f7-8755-48ca-a82e-bed60bcdec18 -2024-07-16 19:07:22.838885 2024-07-16 19:07:22.8389 plgnd 1334866082 R rec 814836e8-21fa-42cf-b110-20350468e4f9 -2024-07-16 19:07:22.939134 2024-07-16 19:07:22.939148 plgnd 1334865981 R rec dcb79d85-0289-4c91-a9c8-496496ffb2ee -2024-07-16 19:07:23.009997 2024-07-16 19:07:23.010008 plgnd 1334804621 R rec 7b36f5f1-3f40-4de3-8ba8-c7166d8b9200 -2024-07-16 19:07:23.098879 2024-07-16 19:07:23.098895 plgnd 1334804141 R rec 3d0ff695-0765-4516-8f81-96474eb9a4ff -2024-07-16 19:07:23.18523 2024-07-16 19:07:23.185246 plgnd 1334801304 R rec 5ad05ac3-1ccb-4aba-92f8-7aca6dccc713 -2024-07-16 19:07:23.281464 2024-07-16 19:07:23.281481 plgnd 1334789134 R rec 90acd255-dd4f-44d5-9165-3b6010fcf492 -2024-07-16 19:07:23.361485 2024-07-16 19:07:23.361491 plgnd 1334785422 R rec 0d2d758d-4526-4812-a36c-93d96e669805 -2024-07-16 19:07:23.414086 2024-07-16 19:07:23.414092 plgnd 1334784493 R rec 7ef4dc5a-b1cd-47ae-8fa7-f2b5ebd55a26 -2024-07-16 19:07:23.475255 2024-07-16 19:07:23.475265 plgnd 1334779015 R rec 5df9c955-af09-40c9-8fcf-6f2bcd70974d -2024-07-16 19:07:23.555458 2024-07-16 19:07:23.555468 plgnd 1334766363 R rec fb901215-70ec-4eee-b340-2c19fa195806 -2024-07-16 19:07:23.637977 2024-07-16 19:07:23.637987 plgnd 1334756465 R rec 672d8c66-560d-4178-b083-969d4bbbaf98 -2024-07-16 19:07:23.719068 2024-07-16 19:07:23.719083 plgnd 1334736340 R rec e988b0a7-bc61-4bb9-80e1-5452d2e3c3d9 -2024-07-16 19:07:23.800211 2024-07-16 19:07:23.800227 plgnd 1334729824 R rec e089d1d4-fe1c-4217-a334-608e5e248931 -2024-07-16 19:07:23.882692 2024-07-16 19:07:23.882704 plgnd 1334725756 R rec 6c1f3870-562a-48b9-ae2e-f989b555f715 -2024-07-16 19:07:23.968078 2024-07-16 19:07:23.968089 plgnd 1334725691 R rec e25d9afe-3c2a-4b2e-b810-0e6352726c16 -2024-07-16 19:07:24.053725 2024-07-16 19:07:24.053735 plgnd 1334671486 R rec 2779c3ad-9e5d-43d7-b9eb-9ede6bbd2cce -2024-07-16 19:07:24.135816 2024-07-16 19:07:24.135829 plgnd 1334670560 R rec b2ab453a-1044-4514-bb77-f4c86d0591ac -2024-07-16 19:07:24.227093 2024-07-16 19:07:24.227105 plgnd 1334670390 R rec e67d37ff-6ada-4538-9bd1-944b2450819c -2024-07-16 19:07:24.307665 2024-07-16 19:07:24.307681 plgnd 1334670323 R rec 2247e4f7-75e8-4f5a-9600-df7db9672ee1 -2024-07-16 19:07:24.393973 2024-07-16 19:07:24.393979 plgnd 1334670048 R rec 40b9c1f0-0c21-4fd7-b045-2d51e5c02bec -2024-07-16 19:07:24.44286 2024-07-16 19:07:24.442866 plgnd 1334666474 R rec 258af20d-61f8-4077-828f-71aa35c33b03 -2024-07-16 19:07:24.506023 2024-07-16 19:07:24.506036 plgnd 1334665036 R rec d39d6133-88ac-4f61-a7c0-731f8a9c32f4 -2024-07-16 19:07:24.585907 2024-07-16 19:07:24.585926 plgnd 1334665028 R rec ec4e2e14-25da-484a-8d33-b565658342d1 -2024-07-16 19:07:24.676042 2024-07-16 19:07:24.676058 plgnd 1334664242 R rec 90559d8e-4311-4f88-ae28-0231305820ec -2024-07-16 19:07:24.764857 2024-07-16 19:07:24.764873 plgnd 1334661073 R rec db50523a-c451-47bb-831c-e75cb4f0a044 -2024-07-16 19:07:24.85639 2024-07-16 19:07:24.856402 plgnd 1334658196 R rec 2228d8c2-3719-4dc8-99d4-24750e51fb57 -2024-07-16 19:07:24.939113 2024-07-16 19:07:24.93913 plgnd 1334657726 R rec 1dd5254e-2e2c-4a8a-83c8-988f16983167 -2024-07-16 19:07:25.021328 2024-07-16 19:07:25.021339 plgnd 133465641X R rec b7d7affa-099c-4c27-803c-4b7f1a2fedef -2024-07-16 19:07:25.102646 2024-07-16 19:07:25.10266 plgnd 1334632707 R rec 092519d5-d9f6-42dd-a422-c3df9f5e2caa -2024-07-16 19:07:25.186093 2024-07-16 19:07:25.186103 plgnd 133463209X R rec c489b4a9-11ec-43aa-b976-957588f9f367 -2024-07-16 19:07:25.265599 2024-07-16 19:07:25.265676 plgnd 133456325X R rec 0f3c87d2-ea8d-4936-a6ab-15659243b5df -2024-07-16 19:07:25.358419 2024-07-16 19:07:25.358432 plgnd 1334560994 R rec 6b9267a4-1f9d-4517-996e-57ac70248f49 -2024-07-16 19:07:25.434622 2024-07-16 19:07:25.434628 plgnd 1334559805 R rec 32a8f719-eca4-4ad0-9af6-902e7c13d028 -2024-07-16 19:07:25.486977 2024-07-16 19:07:25.486983 plgnd 1334558590 R rec c167706e-3527-4690-804c-6c12d725e69c -2024-07-16 19:07:25.550551 2024-07-16 19:07:25.550564 plgnd 1334556687 R rec da6682fb-a148-4dbf-b072-151cd4d6d339 -2024-07-16 19:07:25.63405 2024-07-16 19:07:25.634065 plgnd 1334554471 R rec 241ae07b-25e5-4108-b458-4f6a5a730ab9 -2024-07-16 19:07:25.724207 2024-07-16 19:07:25.724218 plgnd 1334554218 R rec cb534278-9b22-4443-9613-4912da11c75f -2024-07-16 19:07:25.81461 2024-07-16 19:07:25.814622 plgnd 1334552940 R rec 2ebae61a-55e5-4fb3-9bc8-6260fd80abd7 -2024-07-16 19:07:25.910661 2024-07-16 19:07:25.910677 plgnd 1334552908 R rec 275753ba-de03-4eaf-a4fd-3f46259b24bf -2024-07-16 19:07:26.00924 2024-07-16 19:07:26.009252 plgnd 1334552606 R rec 38a4f7eb-f886-4b73-8668-9901cc1c8dd6 -2024-07-16 19:07:26.114047 2024-07-16 19:07:26.114066 plgnd 1334538085 R rec 618f3eb0-d174-45be-b0aa-d30b4f70bb62 -2024-07-16 19:07:26.192636 2024-07-16 19:07:26.192648 plgnd 133453666X R rec db54e550-56ca-423c-9ff3-fb2167ed8af1 -2024-07-16 19:07:26.274327 2024-07-16 19:07:26.274338 plgnd 1334531153 R rec 46dab441-b632-41b6-9de5-2e7cf6fc29cf -2024-07-16 19:07:26.357047 2024-07-16 19:07:26.357062 plgnd 1334516766 R rec f462d33c-070d-4818-99a3-f4741ed7afa0 -2024-07-16 19:07:26.455205 2024-07-16 19:07:26.455212 plgnd 1334502854 R rec f84c93e7-0565-454d-ae76-1e8a471cf184 -2024-07-16 19:07:26.504543 2024-07-16 19:07:26.504548 plgnd 1334486573 R rec 1208f776-6104-4461-a060-750062aaed04 -2024-07-16 19:07:26.564562 2024-07-16 19:07:26.564574 plgnd 1334485763 R rec 87520ba7-53c4-4329-977c-00c9809ad9df -2024-07-16 19:07:26.655502 2024-07-16 19:07:26.655514 plgnd 1334319561 R rec 36d3fb40-a297-4cb5-892e-a4b4c8d853a7 -2024-07-16 19:07:26.7512 2024-07-16 19:07:26.751213 plgnd 1334318492 R rec 5c31bb49-3ab8-4311-998b-48d5b2c3aeac -2024-07-16 19:07:26.833802 2024-07-16 19:07:26.833813 plgnd 1334318069 R rec 305821e9-88bc-4ae3-880e-7dcf70fb8ff4 -2024-07-16 19:07:26.930966 2024-07-16 19:07:26.930982 plgnd 1334313776 R rec 50d95bc3-dca3-4770-a5e3-4d57131270c4 -2024-07-16 19:07:27.015842 2024-07-16 19:07:27.015858 plgnd 1334312974 R rec 4613385b-b264-4578-b0f1-26837f454f9b -2024-07-16 19:07:27.098651 2024-07-16 19:07:27.098668 plgnd 1334310661 R rec 5694527a-edca-4567-9635-da95c2e29d9a -2024-07-16 19:07:27.205986 2024-07-16 19:07:27.206015 plgnd 1334302111 R rec 51a379ed-74db-485b-b1d5-05e8f0381c48 -2024-07-16 19:07:27.291702 2024-07-16 19:07:27.291713 plgnd 1334300054 R rec d0fff42b-3bec-4df9-bc04-82cb5c2171c5 -2024-07-16 19:07:27.375093 2024-07-16 19:07:27.375104 plgnd 133422725X R rec 88209669-d68e-45f3-9987-ad8a4c382303 -2024-07-16 19:07:27.451738 2024-07-16 19:07:27.451751 plgnd 1334221979 R rec d83ae0a8-e989-4058-8a8c-11e0d4e98480 -2024-07-16 19:07:27.527799 2024-07-16 19:07:27.527805 plgnd 1334198845 R rec 4b2ec116-3d86-44d6-b97d-6520ed5f186b -2024-07-16 19:07:27.58482 2024-07-16 19:07:27.584831 plgnd 1334117918 R rec 6fd877db-46d3-434d-b2c8-1af2690c9abe -2024-07-16 19:07:27.657299 2024-07-16 19:07:27.65731 plgnd 1334101221 R rec b77e2985-248a-40ac-8df0-574d3a1b39a0 -2024-07-16 19:07:27.739585 2024-07-16 19:07:27.739601 plgnd 1334086826 R rec a4994ba7-1c01-400b-99a2-842864df3ef6 -2024-07-16 19:07:27.822388 2024-07-16 19:07:27.822399 plgnd 1334027250 R rec c428d14c-64f0-415f-bfb2-befb3aa08f1b -2024-07-16 19:07:27.910004 2024-07-16 19:07:27.910015 plgnd 1334024804 R rec 3a7fd3fd-0c53-4de3-8892-ff4e775a2b1d -2024-07-16 19:07:27.993354 2024-07-16 19:07:27.99337 plgnd 1334011753 R rec bca0384d-ebe4-47d0-bc90-2cc5b8802415 -2024-07-16 19:07:28.073717 2024-07-16 19:07:28.073728 plgnd 1334011079 R rec c713bb13-b788-4574-a7fa-aee8e73cd466 -2024-07-16 19:07:28.149011 2024-07-16 19:07:28.149022 plgnd 1334001529 R rec cf1bcb1b-574f-45e0-80ac-7194911c25d3 -2024-07-16 19:07:28.239929 2024-07-16 19:07:28.239941 plgnd 1333989954 R rec 114a4d75-a0d1-46ea-9128-1f2ff0d10f50 -2024-07-16 19:07:28.326483 2024-07-16 19:07:28.326498 plgnd 1333660758 R rec 44b2cd83-2a58-40b6-9489-403e6cc67bef -2024-07-16 19:07:28.419626 2024-07-16 19:07:28.419642 plgnd 1333582501 R rec 8a990c84-8ce1-4e7b-8f31-43b929c0fda1 -2024-07-16 19:07:28.507383 2024-07-16 19:07:28.5074 plgnd 1333570511 R rec 27cf7832-d8bf-419c-a712-c77b415802cf -2024-07-16 19:07:28.577568 2024-07-16 19:07:28.577574 plgnd 133355513X R rec 4abb4421-cf6e-43d9-aceb-6edbed3f77d2 -2024-07-16 19:07:28.637715 2024-07-16 19:07:28.637727 plgnd 1333333668 R rec d674d94a-8ef2-4632-947e-2b563eb7b744 -2024-07-16 19:07:28.712231 2024-07-16 19:07:28.712242 plgnd 1333321090 R rec 9bd08104-c8db-4cbc-9c1d-0e455f310145 -2024-07-16 19:07:28.800668 2024-07-16 19:07:28.800685 plgnd 1333315902 R rec e142a1fb-7380-45a9-8a91-4d079ddbafb3 -2024-07-16 19:07:28.881566 2024-07-16 19:07:28.881582 plgnd 1333263465 R rec 2956c308-3edc-46b8-81a3-b3c4edb56fe5 -2024-07-16 19:07:28.9774 2024-07-16 19:07:28.977417 plgnd 1333255853 R rec 96f0e897-905d-4d91-ac97-792a123d1a6d -2024-07-16 19:07:29.068009 2024-07-16 19:07:29.068025 plgnd 1333228880 R rec a232d6a1-ca83-44be-b569-3ed92937a790 -2024-07-16 19:07:29.155046 2024-07-16 19:07:29.155059 plgnd 1333113943 R rec 1d6bcd71-ffb5-45d2-a2ac-e84373c01a4c -2024-07-16 19:07:29.243452 2024-07-16 19:07:29.243467 plgnd 1332874568 R rec 9c9c977e-1e94-4498-a8e8-13a2f417b282 -2024-07-16 19:07:29.329879 2024-07-16 19:07:29.329895 plgnd 1332858198 R rec fad91eeb-1408-407f-b029-b6b849824f2f -2024-07-16 19:07:29.414981 2024-07-16 19:07:29.414992 plgnd 1332769349 R rec 515cb5c9-848d-40cb-9eeb-892716f91a2e -2024-07-16 19:07:29.501106 2024-07-16 19:07:29.501117 plgnd 1332757375 R rec 89434b72-221f-457c-aa64-6499a23feb7c -2024-07-16 19:07:29.595854 2024-07-16 19:07:29.595859 plgnd 1332755666 R rec 94fc5740-1d9c-4ed1-8352-4c2dd781da6a -2024-07-16 19:07:29.646114 2024-07-16 19:07:29.646119 plgnd 1332749054 R rec 0db204de-80b3-4d5d-a1b5-5e01d892b7a6 -2024-07-16 19:07:29.713615 2024-07-16 19:07:29.713628 plgnd 1332747108 R rec 9ef2cc37-61c8-46c1-ac04-7eecb8471b07 -2024-07-16 19:07:29.794906 2024-07-16 19:07:29.794917 plgnd 1332742351 R rec 3e4c5fe1-331d-4036-8223-1418f562320e -2024-07-16 19:07:29.880202 2024-07-16 19:07:29.880213 plgnd 1332735002 R rec 250d4cd9-9ab0-4d39-b1d9-4ab07320525d -2024-07-16 19:07:29.967064 2024-07-16 19:07:29.967081 plgnd 1332734863 R rec e3e55560-4178-4efc-a691-20a6d42b616c -2024-07-16 19:07:30.053961 2024-07-16 19:07:30.053971 plgnd 133273457X R rec 6a3923ad-9898-49d5-80a5-408d20e8556d -2024-07-16 19:07:30.127963 2024-07-16 19:07:30.127974 plgnd 1332733751 R rec 7a2d3954-ca22-42c3-8709-01a9df8194a0 -2024-07-16 19:07:30.226225 2024-07-16 19:07:30.226241 plgnd 1332732577 R rec cf9fd9cb-cca6-4e37-8def-a843aa46bc4a -2024-07-16 19:07:30.312156 2024-07-16 19:07:30.312172 plgnd 1332731430 R rec a7528196-fa71-4b84-a6f7-9b1f8da4921a -2024-07-16 19:07:30.402244 2024-07-16 19:07:30.40226 plgnd 1332670482 R rec 0f78c541-972e-4c9d-a922-6285634e6e01 -2024-07-16 19:07:30.492758 2024-07-16 19:07:30.492774 plgnd 1332669689 R rec b50e3c4e-a6b4-47c7-a898-e6fa5250dd48 -2024-07-16 19:07:30.584595 2024-07-16 19:07:30.584611 plgnd 1332451578 R rec b720db86-e920-4868-a3c8-ac696fd1fbb6 -2024-07-16 19:07:30.66373 2024-07-16 19:07:30.663736 plgnd 1332353436 R rec fbe99c5d-ef9b-4369-8df9-9220551bde07 -2024-07-16 19:07:30.722076 2024-07-16 19:07:30.722088 plgnd 1332057209 R rec 8ed33df5-504e-4f4b-82d6-d490be9c03f1 -2024-07-16 19:07:30.79699 2024-07-16 19:07:30.797004 plgnd 1332055729 R rec 3b13269f-c8b6-4950-a363-78baf23a8ea9 -2024-07-16 19:07:30.875939 2024-07-16 19:07:30.87595 plgnd 1332031374 R rec 30f9e5d7-cd73-4206-8002-d0e2cdb4dbae -2024-07-16 19:07:30.970144 2024-07-16 19:07:30.970159 plgnd 1331729661 R rec 73a96b39-9e13-4e10-9d09-ed8467bceb17 -2024-07-16 19:07:31.06857 2024-07-16 19:07:31.068581 plgnd 1331609186 R rec 7e724438-1b66-4979-9310-418b90a80636 -2024-07-16 19:07:31.155118 2024-07-16 19:07:31.15513 plgnd 1331604346 R rec 84789dd7-5451-48a3-ac2b-5eda91795685 -2024-07-16 19:07:31.237554 2024-07-16 19:07:31.237564 plgnd 1331602718 R rec 95647070-c5c4-4dd0-b63c-9fd8d7ad9a16 -2024-07-16 19:07:31.338259 2024-07-16 19:07:31.339197 plgnd 1331601630 R rec ef6972db-8e07-46a7-979f-5b440fa203eb -2024-07-16 19:07:31.437052 2024-07-16 19:07:31.437065 plgnd 1331514282 R rec 1cf7bb5b-c364-4209-8470-45dabb0711cf -2024-07-16 19:07:31.528602 2024-07-16 19:07:31.528612 plgnd 1331513952 R rec 5dc8d006-6f20-4720-b5ca-70b620a79f77 -2024-07-16 19:07:31.614813 2024-07-16 19:07:31.614824 plgnd 1331379539 R rec 198f79ce-0446-4ef7-b875-6602855dd7cd -2024-07-16 19:07:31.688328 2024-07-16 19:07:31.688333 plgnd 1331109191 R rec 2d3a11df-48a9-49de-9e29-f04496f63d4e -2024-07-16 19:07:31.741834 2024-07-16 19:07:31.741845 plgnd 1331089271 R rec 77beaefa-76be-468e-8d13-3e216fc7656d -2024-07-16 19:07:31.808487 2024-07-16 19:07:31.808501 plgnd 1330982746 R rec c400cf45-0eda-4fc6-9028-6d37b5c394c7 -2024-07-16 19:07:31.888584 2024-07-16 19:07:31.888602 plgnd 1330866738 R rec 24cf88c1-56a6-4478-8a5d-f9c8f59bcdab -2024-07-16 19:07:31.976584 2024-07-16 19:07:31.976625 plgnd 1330847199 R rec 6cf31988-3042-4b21-9a53-d91fd2eb4815 -2024-07-16 19:07:32.070761 2024-07-16 19:07:32.070771 plgnd 1330436237 R rec 6bf1b40d-99ad-4d57-ac83-258985a38371 -2024-07-16 19:07:32.161594 2024-07-16 19:07:32.161605 plgnd 1330428420 R rec 7b24f290-d484-4d76-a350-cf41ab059f20 -2024-07-16 19:07:32.244136 2024-07-16 19:07:32.244146 plgnd 1330324463 R rec 76e0cd90-8379-4045-a6ee-309d4f27bf60 -2024-07-16 19:07:32.330727 2024-07-16 19:07:32.33074 plgnd 1330302877 R rec 15dd7a06-9dd7-4500-bb94-744f8dd18bae -2024-07-16 19:07:32.419862 2024-07-16 19:07:32.419878 plgnd 1330290887 R rec 14834b36-c9d5-434c-9c35-264270a50412 -2024-07-16 19:07:32.502642 2024-07-16 19:07:32.502652 plgnd 1330177274 R rec 238f9c28-0183-4446-86a3-d2ccc257cbfc -2024-07-16 19:07:32.59977 2024-07-16 19:07:32.599781 plgnd 1329890205 R rec ecc692b4-ad1d-43f9-80d2-2f152b9dee95 -2024-07-16 19:07:32.699573 2024-07-16 19:07:32.69958 plgnd 1329430875 R rec de837518-8719-497a-a41c-fe3968a46952 -2024-07-16 19:07:32.753822 2024-07-16 19:07:32.753826 plgnd 1316359042 R rec 3d41b07a-5bdf-4f18-8df0-541c174b6a7c -2024-07-16 19:07:32.803628 2024-07-16 19:07:32.803639 plgnd 1314596373 R rec 831bbcf8-5014-48d0-9425-c8538e2761be -2024-07-16 19:07:32.870053 2024-07-16 19:07:32.870068 plgnd 1302571524 R rec c6f451cf-4290-4ccc-82b1-01c13035d10e -2024-07-16 19:07:32.958051 2024-07-16 19:07:32.958068 plgnd 1300397128 R rec 4aaaf9f6-e017-47f9-8bd0-f4b598478f83 -2024-07-16 19:07:33.053625 2024-07-16 19:07:33.053636 plgnd 1299383890 R rec 01be8066-a90f-4bbc-954b-fb21007e5fd1 -2024-07-16 19:07:33.134066 2024-07-16 19:07:33.134081 plgnd 129673143X R rec 88d50644-2f87-45e1-aaed-1814f301a318 -2024-07-16 19:07:33.219691 2024-07-16 19:07:33.219707 plgnd 1295131781 R rec c4967740-cf70-4955-8be9-a47fe4f8a875 -2024-07-16 19:07:33.294348 2024-07-16 19:07:33.294361 plgnd 1287837611 R rec 2b78c386-3f90-48c4-83d1-f1251f0340a9 -2024-07-16 19:07:33.375568 2024-07-16 19:07:33.375584 plgnd 1286132703 R rec 8fa654ce-8c70-4f09-8807-581eb9750dcc -2024-07-16 19:07:33.465182 2024-07-16 19:07:33.465193 plgnd 1284341119 R rec d20f43d0-6ff7-49d9-80d9-b9c6608837c0 -2024-07-16 19:07:33.551176 2024-07-16 19:07:33.551191 plgnd 1282328816 R rec 11db1d59-8424-41ee-bfce-d20200105c53 -2024-07-16 19:07:33.637933 2024-07-16 19:07:33.637949 plgnd 1275159915 R rec fc7b8d55-bea2-4bc7-be09-5bb5d5fa1c55 -2024-07-16 19:07:33.723288 2024-07-16 19:07:33.7233 plgnd 1271173751 R rec 020e3fd4-875e-4bb1-b701-0ad11d2d6cc7 -2024-07-16 19:07:33.794687 2024-07-16 19:07:33.794694 plgnd 1267606541 R rec 3792d034-996d-48fa-8045-116188b50bea -2024-07-16 19:07:33.852619 2024-07-16 19:07:33.852631 plgnd 1262419808 R rec e8312d89-ef78-46fc-a39e-56feb2c19599 -2024-07-16 19:07:33.943427 2024-07-16 19:07:33.943446 plgnd 1240912943 R rec 39018d11-43b2-452e-aace-34c9d88106c5 -2024-07-16 19:07:34.032162 2024-07-16 19:07:34.032177 plgnd 1239866968 R rec a20c077f-87c2-4176-b720-9f32f3d88719 -2024-07-16 19:07:34.118196 2024-07-16 19:07:34.118211 plgnd 1239463502 R rec 098b90f0-ef59-42b5-93b7-7c6d00ed01db -2024-07-16 19:07:34.210046 2024-07-16 19:07:34.210057 plgnd 1237860342 R rec 7fdee1aa-2104-49e9-a8fe-32d34a50f07d -2024-07-16 19:07:34.300131 2024-07-16 19:07:34.300146 plgnd 1237828171 R rec b7d86ba8-8563-4efc-9953-1850ccb3dbfa -2024-07-16 19:07:34.383394 2024-07-16 19:07:34.383407 plgnd 1237774101 R rec 028f3fdb-176d-4628-a908-e2775781d469 -2024-07-16 19:07:34.471452 2024-07-16 19:07:34.471467 plgnd 1237279453 R rec c6faced1-4718-4001-9b14-c5eb12110d04 -2024-07-16 19:07:34.551387 2024-07-16 19:07:34.551402 plgnd 1236792211 R rec 4da26aac-4070-4e42-936e-dc51ac9e7596 -2024-07-16 19:07:34.639512 2024-07-16 19:07:34.639523 plgnd 123657754X R rec 543da3da-8b9a-4d1e-bb1d-efb0be38abf1 -2024-07-16 19:07:34.726623 2024-07-16 19:07:34.726638 plgnd 1235360709 R rec 61a593b7-b48d-423c-87bb-a9d27bf0e904 -2024-07-16 19:07:34.803324 2024-07-16 19:07:34.803329 plgnd 1233310046 R rec 26f5002e-0742-485a-b4f1-65c96580da51 -2024-07-16 19:07:34.858944 2024-07-16 19:07:34.85895 plgnd 1232243698 R rec 6bc4066b-2d0f-4345-9ab3-ba340487a7ac -2024-07-16 19:07:34.933764 2024-07-16 19:07:34.93378 plgnd 1225876354 R rec c5673565-8267-4708-9c89-a931a3431c8a -2024-07-16 19:07:35.02249 2024-07-16 19:07:35.022502 plgnd 1224278054 R rec 8d4cde5a-ab89-444f-ad95-4488c6e4f744 -2024-07-16 19:07:35.110446 2024-07-16 19:07:35.110458 plgnd 122413754X R rec 827911a1-8334-45bf-944b-153ea1612449 -2024-07-16 19:07:35.199277 2024-07-16 19:07:35.199287 plgnd 122219953X R rec 7c613f2f-54a0-49e0-bc81-83f2670942db -2024-07-16 19:07:35.291978 2024-07-16 19:07:35.291989 plgnd 1222199440 R rec d08dae87-e6fc-4ad5-b751-9338b8c3594c -2024-07-16 19:07:35.373836 2024-07-16 19:07:35.373848 plgnd 1219234621 R rec d95bbf7b-7252-4073-8079-b3b74fcbf12f -2024-07-16 19:07:35.457331 2024-07-16 19:07:35.457347 plgnd 1215862520 R rec d51c19c1-b0be-4f39-8eee-ef3864dc86d9 -2024-07-16 19:07:35.531179 2024-07-16 19:07:35.531189 plgnd 1208649175 R rec e4eac3af-4ba5-42d4-9f89-f7c53c5a79d5 -2024-07-16 19:07:35.610661 2024-07-16 19:07:35.610671 plgnd 1206005505 R rec 647edf80-9185-4c20-971a-4aeef7752fc3 -2024-07-16 19:07:35.692611 2024-07-16 19:07:35.692621 plgnd 1203261837 R rec 4e5cfa44-2465-4ddb-8b4c-39087ae37707 -2024-07-16 19:07:35.775652 2024-07-16 19:07:35.775661 plgnd 1197938001 R rec 3a94fd63-b397-4385-8a13-0086d8d1c27e -2024-07-16 19:07:35.844902 2024-07-16 19:07:35.844909 plgnd 1192399013 R rec f3b6b7df-f7b3-4b98-b6bc-fc0559ff4c5f -2024-07-16 19:07:35.896448 2024-07-16 19:07:35.896454 plgnd 1191133729 R rec 73abcc93-5cb1-42fd-b8d4-8cf76379f15a -2024-07-16 19:07:35.965172 2024-07-16 19:07:35.965185 plgnd 1190333392 R rec 09a525fc-ae3f-4025-85c8-e2550ef67787 -2024-07-16 19:07:36.051066 2024-07-16 19:07:36.051077 plgnd 1190333082 R rec 4b78a516-9f94-4c70-9b69-76ad552e6ed9 -2024-07-16 19:07:36.1387 2024-07-16 19:07:36.138719 plgnd 1190328259 R rec a27b6c7d-6483-4d06-96da-a65139e412a0 -2024-07-16 19:07:36.22146 2024-07-16 19:07:36.221475 plgnd 1189443015 R rec 12bdc6a2-bd6e-4f9b-bf50-1566b55eb0e4 -2024-07-16 19:07:36.309521 2024-07-16 19:07:36.309556 plgnd 1188738658 R rec 40e137e8-3db4-4940-8ed0-6acc165672e8 -2024-07-16 19:07:36.401153 2024-07-16 19:07:36.40117 plgnd 1184832803 R rec 1c78271c-5177-4f53-95f4-dcfdd963b44c -2024-07-16 19:07:36.482052 2024-07-16 19:07:36.482069 plgnd 1184428727 R rec aecd8d2b-29c2-4f9b-9c8c-d6d9ddb0e7a6 -2024-07-16 19:07:36.567949 2024-07-16 19:07:36.56796 plgnd 1182916759 R rec 00765c04-fc3a-47bb-bba7-1cb8b9350ba8 -2024-07-16 19:07:36.654183 2024-07-16 19:07:36.6542 plgnd 1182704948 R rec ffb8af0e-6bc6-45e6-825c-77910195739e -2024-07-16 19:07:36.740843 2024-07-16 19:07:36.740853 plgnd 1180664485 R rec 6303ad0b-27ce-499b-bb3c-d7085b931672 -2024-07-16 19:07:36.83228 2024-07-16 19:07:36.832296 plgnd 1180620623 R rec f2ade7a4-8351-4af8-bcee-5a10f2b58a38 -2024-07-16 19:07:36.90422 2024-07-16 19:07:36.904226 plgnd 1179502884 R rec 7d6857ab-3cc9-4dc0-bfa6-5b58ec56b5ca -2024-07-16 19:07:36.957097 2024-07-16 19:07:36.957108 plgnd 1177183811 R rec d34ba9c8-d1f5-43b0-9eec-351836059253 -2024-07-16 19:07:37.031196 2024-07-16 19:07:37.031213 plgnd 1177087480 R rec 51801b64-f684-40b0-85cc-b57edee19001 -2024-07-16 19:07:37.12539 2024-07-16 19:07:37.125401 plgnd 1171383401 R rec f0814748-3870-4a0e-a2c0-9fe520d42e3c -2024-07-16 19:07:37.222914 2024-07-16 19:07:37.222924 plgnd 1169806708 R rec f9704d21-b911-41f4-82e2-aa34214c9b0c -2024-07-16 19:07:37.314595 2024-07-16 19:07:37.314734 plgnd 1169806686 R rec 33848439-79f9-46c0-ad87-73269a5156dd -2024-07-16 19:07:37.400578 2024-07-16 19:07:37.400597 plgnd 1169805167 R rec 417344ba-943b-4292-a03b-ad3add052c04 -2024-07-16 19:07:37.488367 2024-07-16 19:07:37.488377 plgnd 1169805140 R rec ab771a40-dd44-42dd-a1ff-e358702c8a71 -2024-07-16 19:07:37.573235 2024-07-16 19:07:37.573251 plgnd 1167694643 R rec cbb93931-def8-4c2c-a402-e90527099f54 -2024-07-16 19:07:37.654163 2024-07-16 19:07:37.654178 plgnd 1167335767 R rec 11e39aa3-e05d-493d-a449-03433ab02efb -2024-07-16 19:07:37.734113 2024-07-16 19:07:37.734124 plgnd 1166988325 R rec 5e9dd9d1-1d31-4e86-a982-807e2ddf8ef5 -2024-07-16 19:07:37.824241 2024-07-16 19:07:37.824252 plgnd 1166988007 R rec 8480c3d0-339e-44cc-9dfb-4d8f494efea3 -2024-07-16 19:07:37.916015 2024-07-16 19:07:37.916021 plgnd 1166098877 R rec 2b8e150b-60c6-48a2-a6e1-7c6b281048fc -2024-07-16 19:07:37.984204 2024-07-16 19:07:37.984215 plgnd 1165597586 R rec 71148f5f-342b-4be8-a781-5030d6ee57c2 -2024-07-16 19:07:38.060882 2024-07-16 19:07:38.060895 plgnd 1164527657 R rec 868369aa-2453-444a-9e6a-058630f66c16 -2024-07-16 19:07:38.156678 2024-07-16 19:07:38.156692 plgnd 116355815X R rec 86f7c233-f1e8-4902-8264-c770fd04a969 -2024-07-16 19:07:38.243306 2024-07-16 19:07:38.243321 plgnd 1163558095 R rec 98e34429-e28b-495a-b7f7-8427ce85e733 -2024-07-16 19:07:38.340495 2024-07-16 19:07:38.340507 plgnd 1163419907 R rec 8d218ae8-3abc-4bfa-b0a6-a5591f116cf8 -2024-07-16 19:07:38.422372 2024-07-16 19:07:38.422388 plgnd 1161830820 R rec 6a8a6b19-faff-4820-b3a5-f3664538657a -2024-07-16 19:07:38.513124 2024-07-16 19:07:38.513139 plgnd 1161625046 R rec 2974793e-c88b-405d-88a2-f5c34dc793e4 -2024-07-16 19:07:38.601328 2024-07-16 19:07:38.601339 plgnd 1156658128 R rec 14666f81-2e73-4b5d-a2e2-bb6688c89d07 -2024-07-16 19:07:38.699573 2024-07-16 19:07:38.699588 plgnd 1156051029 R rec 3265430c-0370-4752-be08-f952505e224a -2024-07-16 19:07:38.78049 2024-07-16 19:07:38.780506 plgnd 1148115242 R rec f8214cfb-f6ec-4ada-9e95-bc439d73774c -2024-07-16 19:07:38.866597 2024-07-16 19:07:38.866615 plgnd 1147654123 R rec 15cd28bc-c95a-4324-a0d1-5b3c58fe8c81 -2024-07-16 19:07:38.946294 2024-07-16 19:07:38.9463 plgnd 1143714245 R rec e81a308a-bf60-489a-a348-4574219f8fc8 -2024-07-16 19:07:39.01801 2024-07-16 19:07:39.018022 plgnd 1143154991 R rec d9e4947b-9f3c-409e-801d-7c71e043882a -2024-07-16 19:07:39.097618 2024-07-16 19:07:39.097634 plgnd 1142135993 R rec 81c5a766-9bd7-455d-85db-7028b4a64f3b -2024-07-16 19:07:39.182883 2024-07-16 19:07:39.182898 plgnd 1139463888 R rec 5515f44e-2bf7-4b5d-8c8e-d0cec64f0797 -2024-07-16 19:07:39.274077 2024-07-16 19:07:39.274088 plgnd 113914071X R rec 3ef73076-817a-46e7-9f33-b13cb4d37517 -2024-07-16 19:07:39.366399 2024-07-16 19:07:39.366412 plgnd 113698612X R rec 6958492e-108a-4756-b6a9-9f69d7874066 -2024-07-16 19:07:39.451049 2024-07-16 19:07:39.451161 plgnd 1136731237 R rec f11c8b69-fc57-4f2f-87ee-710cff0b57d7 -2024-07-16 19:07:39.54763 2024-07-16 19:07:39.547646 plgnd 1136092293 R rec 6ca01c25-63d3-4350-af18-92921cfc2d26 -2024-07-16 19:07:39.635864 2024-07-16 19:07:39.635879 plgnd 1135805342 R rec 05cd3db2-e0c0-402b-809a-6bcdaac82fa7 -2024-07-16 19:07:39.73198 2024-07-16 19:07:39.731995 plgnd 1135798842 R rec a09f0214-4e60-417c-86fa-8155bee2469a -2024-07-16 19:07:39.813389 2024-07-16 19:07:39.813399 plgnd 1133293247 R rec 94ed384a-c165-4429-8e73-2c65d42ce4b1 -2024-07-16 19:07:39.899679 2024-07-16 19:07:39.899694 plgnd 1132227771 R rec 404539f9-a05d-4f0a-8ea8-1659261e48f9 -2024-07-16 19:07:39.990174 2024-07-16 19:07:39.990179 plgnd 1124279156 R rec a872dbc7-3eec-4ce1-951a-e27261ffd493 -2024-07-16 19:07:40.046503 2024-07-16 19:07:40.046515 plgnd 1122747160 R rec 4f0696ce-035d-4bfe-bcf4-a20824b6b478 -2024-07-16 19:07:40.129339 2024-07-16 19:07:40.129354 plgnd 1122668171 R rec 9dc0b510-1cc7-45e4-b1e0-c5e583d920e6 -2024-07-16 19:07:40.220777 2024-07-16 19:07:40.220788 plgnd 112132925X R rec c1d33481-a93d-472a-b8e0-daf5ee0d4fdf -2024-07-16 19:07:40.308926 2024-07-16 19:07:40.308937 plgnd 1107605113 R rec dd9d9554-aa15-4f01-98e2-daad18f85589 -2024-07-16 19:07:40.393421 2024-07-16 19:07:40.393437 plgnd 1105589110 R rec 0e62c175-e526-4797-a23e-1e05c5bfaa21 -2024-07-16 19:07:40.481914 2024-07-16 19:07:40.481928 plgnd 1101612258 R rec ebbe104b-6020-4e48-88cd-9f0b2a6356f2 -2024-07-16 19:07:40.567892 2024-07-16 19:07:40.567903 plgnd 1100323325 R rec ddf14117-3c0b-45d4-a63c-de10d3ed3990 -2024-07-16 19:07:40.657142 2024-07-16 19:07:40.657156 plgnd 1100201831 R rec e5311a6a-cf3f-4aac-88a4-2307646c3c97 -2024-07-16 19:07:40.740686 2024-07-16 19:07:40.740697 plgnd 1099133092 R rec 500dfca3-f4a5-49ea-8a12-310da9f2dce5 -2024-07-16 19:07:40.823364 2024-07-16 19:07:40.82338 plgnd 1099132061 R rec 4aded07a-8214-4ee3-af65-2eeb1fefd5bd -2024-07-16 19:07:40.905219 2024-07-16 19:07:40.905234 plgnd 1097213617 R rec cdb987c1-b98f-4be1-9c1b-b2ad81082685 -2024-07-16 19:07:41.003307 2024-07-16 19:07:41.003313 plgnd 1095576461 R rec e2261040-69ab-40f5-b2fa-e2b34cacaaaf -2024-07-16 19:07:41.059973 2024-07-16 19:07:41.059979 plgnd 1085229823 R rec afb2cf7a-a754-4a7c-b024-28b0232d75b0 -2024-07-16 19:07:41.135587 2024-07-16 19:07:41.135602 plgnd 1082797251 R rec 015b1adb-ed5d-4429-8ed8-b3f8579fc785 -2024-07-16 19:07:41.227278 2024-07-16 19:07:41.227288 plgnd 1082520101 R rec 2f93af2e-f48a-4914-a920-50276579659f -2024-07-16 19:07:41.313047 2024-07-16 19:07:41.313057 plgnd 1082153850 R rec 90772bb7-eebd-4c65-9876-736e96c7335d -2024-07-16 19:07:41.40912 2024-07-16 19:07:41.409132 plgnd 1082012033 R rec f66fcb2a-090f-445a-a9d7-a5e9680834b7 -2024-07-16 19:07:41.49154 2024-07-16 19:07:41.491556 plgnd 1082001430 R rec 76addcdc-20be-4e06-b0a2-51bce41ec067 -2024-07-16 19:07:41.581686 2024-07-16 19:07:41.581702 plgnd 1081845031 R rec b5f5084d-d5d5-4dfe-9ad2-114de321d88d -2024-07-16 19:07:41.665136 2024-07-16 19:07:41.665151 plgnd 1081844973 R rec 482b02cb-fef9-4887-9c14-095d0fc4a048 -2024-07-16 19:07:41.767084 2024-07-16 19:07:41.767094 plgnd 1081842474 R rec 3a36e68e-87c2-4ac4-b707-2a5412534a0b -2024-07-16 19:07:41.853807 2024-07-16 19:07:41.853817 plgnd 1081839082 R rec 65abf442-25da-4999-9f74-39eaa584a22a -2024-07-16 19:07:41.936982 2024-07-16 19:07:41.936992 plgnd 1081838779 R rec 4cb0325d-b80b-4f4d-8324-301a6b6d3950 -2024-07-16 19:07:42.013621 2024-07-16 19:07:42.013639 plgnd 1081838655 R rec f45bd557-8690-4660-adee-617bdca95063 -2024-07-16 19:07:42.091575 2024-07-16 19:07:42.09158 plgnd 1081838507 R rec 893723e5-a9fc-4145-bfe1-d13227c16b5a -2024-07-16 19:07:42.143696 2024-07-16 19:07:42.143709 plgnd 1081838396 R rec ed33635f-cd5b-449e-ae92-bdbef2bb739a -2024-07-16 19:07:42.223729 2024-07-16 19:07:42.223739 plgnd 1081838310 R rec b2260630-e9bb-407f-be6f-ac2b3736427a -2024-07-16 19:07:42.312973 2024-07-16 19:07:42.312984 plgnd 1081838167 R rec c24ff18e-a5df-4034-9005-c63b8863b559 -2024-07-16 19:07:42.406227 2024-07-16 19:07:42.406238 plgnd 1081838051 R rec 2fbba075-5c59-492b-abee-e332edcd036b -2024-07-16 19:07:42.493738 2024-07-16 19:07:42.493748 plgnd 1081330236 R rec ecb3f8c6-a8e8-40b8-9f25-42c9e59ba50b -2024-07-16 19:07:42.573364 2024-07-16 19:07:42.57338 plgnd 1081212918 R rec bb94044d-b05d-462f-9408-e43f1928793a -2024-07-16 19:07:42.666799 2024-07-16 19:07:42.666847 plgnd 1081097930 R rec 8d1148d4-6daa-4d29-b2df-ed06f09ff04f -2024-07-16 19:07:42.74791 2024-07-16 19:07:42.74792 plgnd 1079692916 R rec f4636904-02f0-432f-8a9e-eba51b353833 -2024-07-16 19:07:42.831507 2024-07-16 19:07:42.831517 plgnd 1079568352 R rec e4a3607c-10d7-4f65-8495-03a62a0543d8 -2024-07-16 19:07:42.912178 2024-07-16 19:07:42.912188 plgnd 1078131902 R rec b61451bd-7083-46fe-89a7-c147df2fc4fb -2024-07-16 19:07:43.003718 2024-07-16 19:07:43.003729 plgnd 1077893450 R rec 35b05f4e-8ba0-4844-86c2-d1c63fab8b02 -2024-07-16 19:07:43.093706 2024-07-16 19:07:43.093712 plgnd 1077053320 R rec 1089fd3a-1dd2-4905-b7ba-2a1df4c659e4 -2024-07-16 19:07:43.156675 2024-07-16 19:07:43.156681 plgnd 1077053185 R rec 981d994e-b798-476c-b7ea-324760890f59 -2024-07-16 19:07:43.301168 2024-07-16 19:07:43.301181 plgnd 107699847X R rec 073d510a-841c-42ab-9a41-f2f2a46fc1db -2024-07-16 19:07:43.376915 2024-07-16 19:07:43.376929 plgnd 1076027032 R rec 88db7b88-10b1-4acb-92f0-dcf78fe49838 -2024-07-16 19:07:43.462915 2024-07-16 19:07:43.462924 plgnd 1075827361 R rec 8ca96343-f8e4-4444-89ce-1dce9d1a8041 -2024-07-16 19:07:43.546215 2024-07-16 19:07:43.54625 plgnd 1075220467 R rec 70015cba-6ab7-4b9f-8139-7124ea471d64 -2024-07-16 19:07:43.633266 2024-07-16 19:07:43.633281 plgnd 1074377397 R rec 987ee541-4f99-42fe-ad30-d0508e3e5969 -2024-07-16 19:07:43.724648 2024-07-16 19:07:43.724659 plgnd 1074316908 R rec 3b632d6f-093f-4d7a-92e0-bfa8b0720fa0 -2024-07-16 19:07:43.806764 2024-07-16 19:07:43.806779 plgnd 107399077X R rec dd9dc319-9faa-49ca-af58-a5d2ebee15fd -2024-07-16 19:07:43.899692 2024-07-16 19:07:43.899703 plgnd 1073950220 R rec 794c059e-3838-4c31-a68f-63795c745839 -2024-07-16 19:07:43.990391 2024-07-16 19:07:43.990402 plgnd 107373157X R rec da277d32-bcc1-4e96-94ac-35cc06420801 -2024-07-16 19:07:44.087016 2024-07-16 19:07:44.087051 plgnd 1073724549 R rec 1b8e508b-c29f-4224-adf0-40647246bdf7 -2024-07-16 19:07:44.159364 2024-07-16 19:07:44.15937 plgnd 107362062X R rec b6054bba-5cb4-41e3-8ae0-90c0cbd5dddc -2024-07-16 19:07:44.214139 2024-07-16 19:07:44.21415 plgnd 1073267830 R rec fdfd264d-0936-42b6-a19c-772b526dd523 -2024-07-16 19:07:44.286709 2024-07-16 19:07:44.286724 plgnd 107283314X R rec d9d92dd0-af3a-4064-a36e-effd9c2c770e -2024-07-16 19:07:44.370241 2024-07-16 19:07:44.370257 plgnd 1071872435 R rec b6f780aa-cb8b-4d89-bbfd-56b3a53ef68a -2024-07-16 19:07:44.454837 2024-07-16 19:07:44.454848 plgnd 1071862391 R rec bbd59c01-bc4b-4b62-bfdb-f3e4c48bcbec -2024-07-16 19:07:44.537116 2024-07-16 19:07:44.537126 plgnd 1070113026 R rec 1aa5f5a9-2a24-4cf8-8a53-e09388c80e0a -2024-07-16 19:07:44.622213 2024-07-16 19:07:44.622224 plgnd 1069803782 R rec 44668a65-7a87-4aa7-a969-32d59895d150 -2024-07-16 19:07:44.708887 2024-07-16 19:07:44.708897 plgnd 1068118490 R rec 6f75e986-9964-4394-b6c8-accf2479887d -2024-07-16 19:07:44.79811 2024-07-16 19:07:44.798122 plgnd 1067883703 R rec 2023f111-2581-4ab1-be52-aca5fcfbae35 -2024-07-16 19:07:44.87776 2024-07-16 19:07:44.877775 plgnd 1067878831 R rec 4a08d70c-4050-4bd7-bfde-b6ae82abfe79 -2024-07-16 19:07:44.974296 2024-07-16 19:07:44.974313 plgnd 1067860142 R rec e420e5b9-8d04-4221-82d5-45ac7720013d -2024-07-16 19:07:45.065003 2024-07-16 19:07:45.065018 plgnd 1067637184 R rec 5bc6e28b-da9b-4dc5-b9e9-3d5e35457fb5 -2024-07-16 19:07:45.155838 2024-07-16 19:07:45.155844 plgnd 1067636757 R rec cb98f81f-bb1b-46ef-ae81-385541317694 -2024-07-16 19:07:45.208677 2024-07-16 19:07:45.208683 plgnd 1067274006 R rec 8fe286bc-ece9-487c-a308-6219719dcc5e -2024-07-16 19:07:45.279497 2024-07-16 19:07:45.279507 plgnd 1067272488 R rec 77563668-8a91-48c8-8cc2-5d98336a2b7e -2024-07-16 19:07:45.368037 2024-07-16 19:07:45.368052 plgnd 1064960243 R rec bf9f3ed2-2b67-4819-958a-33b077aba771 -2024-07-16 19:07:45.455205 2024-07-16 19:07:45.455223 plgnd 1064714455 R rec dbd26a2f-6f51-4657-913a-4d7608894901 -2024-07-16 19:07:45.537644 2024-07-16 19:07:45.537659 plgnd 1064601502 R rec 3bf26f04-b9d0-44f3-8801-1c0d7180489a -2024-07-16 19:07:45.634845 2024-07-16 19:07:45.634856 plgnd 1064049419 R rec 534a8fb3-6d5c-42f8-9c7b-59df2c2cc1db -2024-07-16 19:07:45.722203 2024-07-16 19:07:45.722222 plgnd 1062979583 R rec fbc3ce50-a856-4903-85ed-77f72e41022e -2024-07-16 19:07:45.802021 2024-07-16 19:07:45.80203 plgnd 1062970004 R rec 669a66b1-1597-44a9-a524-4e47cdfdde4c -2024-07-16 19:07:45.885691 2024-07-16 19:07:45.885707 plgnd 1062891848 R rec bb0d2a35-4c2c-4e3e-906d-e7b5e65a9822 -2024-07-16 19:07:45.979937 2024-07-16 19:07:45.979948 plgnd 1062531191 R rec c6abe204-af8b-4a54-ba54-756cf09867d4 -2024-07-16 19:07:46.066975 2024-07-16 19:07:46.066986 plgnd 1062516109 R rec 6064fffd-11c8-48b2-9194-ed22e174b062 -2024-07-16 19:07:46.157714 2024-07-16 19:07:46.157729 plgnd 1061004198 R rec 75ce7c4d-d4de-4387-a6f3-bd36babacaa0 -2024-07-16 19:07:46.237207 2024-07-16 19:07:46.237213 plgnd 1060849127 R rec 5b82586d-a418-4b21-910a-1786e8f90613 -2024-07-16 19:07:46.294274 2024-07-16 19:07:46.294285 plgnd 106081482X R rec 207ddbaf-2454-4749-8877-f7c5e1fb7aa6 -2024-07-16 19:07:46.37315 2024-07-16 19:07:46.373161 plgnd 1060503611 R rec 3b79c634-daa0-462b-9b70-9bb40132533b -2024-07-16 19:07:46.457042 2024-07-16 19:07:46.457053 plgnd 1060503166 R rec bb088e04-dcb0-4e58-8066-60d392bf69fe -2024-07-16 19:07:46.545633 2024-07-16 19:07:46.545643 plgnd 1060502798 R rec 19870669-78b2-4f68-a4a6-e0e508f46559 -2024-07-16 19:07:46.645602 2024-07-16 19:07:46.645613 plgnd 1060502682 R rec 360ca920-556d-4fe2-8a88-f2ead17bf9a5 -2024-07-16 19:07:46.739772 2024-07-16 19:07:46.739788 plgnd 1060502585 R rec f020eb5e-b7a5-497d-ad7e-3c72894d62bb -2024-07-16 19:07:46.817211 2024-07-16 19:07:46.817223 plgnd 1060502372 R rec 56424e76-8734-4b3d-9157-71684610a572 -2024-07-16 19:07:46.904328 2024-07-16 19:07:46.904341 plgnd 106050216X R rec 8fdb800e-ec19-40cd-8722-eba196ea8356 -2024-07-16 19:07:46.987589 2024-07-16 19:07:46.987605 plgnd 1060501902 R rec 2be47df5-43ef-4a7d-aa2b-ec0d98b6fc4b -2024-07-16 19:07:47.086833 2024-07-16 19:07:47.086849 plgnd 1060501759 R rec b2c03785-1065-4de6-9c91-340f9ae3ca39 -2024-07-16 19:07:47.172305 2024-07-16 19:07:47.172322 plgnd 1060501457 R rec c4311ad1-40c8-47e1-836f-f741ef9dff7a -2024-07-16 19:07:47.260853 2024-07-16 19:07:47.260858 plgnd 106050104X R rec f35f6dfc-f1e0-4b9d-b9e4-8881fb45eea9 -2024-07-16 19:07:47.323389 2024-07-16 19:07:47.3234 plgnd 1060419319 R rec be34b22c-f1f6-43bb-b926-0dcae5a577dd -2024-07-16 19:07:47.418554 2024-07-16 19:07:47.418569 plgnd 1060401134 R rec 2d038daa-a9f3-4c3e-80ff-3e7837013339 -2024-07-16 19:07:47.499394 2024-07-16 19:07:47.499407 plgnd 1060238128 R rec 5443b433-78cc-420b-8a98-e0202c0014f8 -2024-07-16 19:07:47.585797 2024-07-16 19:07:47.585808 plgnd 1060132206 R rec c1ee8f32-cb7c-4967-8790-df180c5e337a -2024-07-16 19:07:47.670708 2024-07-16 19:07:47.670724 plgnd 1060087367 R rec 82e8de03-6ea4-4c08-82d1-2e5d259234ce -2024-07-16 19:07:47.750642 2024-07-16 19:07:47.750658 plgnd 1059448831 R rec e06a8a1b-aa19-4655-aef2-f9387343d4fa -2024-07-16 19:07:47.841773 2024-07-16 19:07:47.841784 plgnd 1059378396 R rec 0f0154dd-6fbc-4c29-a0a6-d0512fcd232a -2024-07-16 19:07:47.931226 2024-07-16 19:07:47.931242 plgnd 1059376946 R rec 5d9e0960-69c4-4820-be45-b49f48323065 -2024-07-16 19:07:48.025521 2024-07-16 19:07:48.025537 plgnd 1059359022 R rec c59edbda-90e7-4f47-a6ef-04d731ebd401 -2024-07-16 19:07:48.118469 2024-07-16 19:07:48.118485 plgnd 1059357755 R rec f009eb4a-2356-46c1-80a6-ea360e048857 -2024-07-16 19:07:48.210269 2024-07-16 19:07:48.21028 plgnd 1059250454 R rec 48f1546f-2657-4762-b973-0a7e6b4a4fc5 -2024-07-16 19:07:48.294433 2024-07-16 19:07:48.294439 plgnd 105914249X R rec 8aca9b92-0aec-4f2e-b341-e2e92dabb9a7 -2024-07-16 19:07:48.348826 2024-07-16 19:07:48.348832 plgnd 1058994743 R rec 38a1f352-2923-41de-92c2-6d5f806bafd9 -2024-07-16 19:07:48.415 2024-07-16 19:07:48.415012 plgnd 1058986333 R rec 4c1cae1d-c21a-4cba-9f0b-e5102d3a6753 -2024-07-16 19:07:48.494885 2024-07-16 19:07:48.494895 plgnd 1058985299 R rec 091d15db-50d6-4dd2-8993-7d57efc59701 -2024-07-16 19:07:48.586146 2024-07-16 19:07:48.58616 plgnd 1058984144 R rec 67751670-fc98-4509-8ff5-f4096bccb214 -2024-07-16 19:07:48.672012 2024-07-16 19:07:48.672028 plgnd 1058973045 R rec 6a90fd5c-fdc4-4f71-b359-5aec21c998d9 -2024-07-16 19:07:48.757687 2024-07-16 19:07:48.7577 plgnd 1058939068 R rec eb0017b1-474b-43ef-9951-e6ba004bcbda -2024-07-16 19:07:48.855445 2024-07-16 19:07:48.855461 plgnd 105892978X R rec 51810214-913a-4c24-84bc-19d1c167408f -2024-07-16 19:07:48.943152 2024-07-16 19:07:48.943167 plgnd 1058928732 R rec 45a3e137-18c6-403b-8c2b-abe037d0229a -2024-07-16 19:07:49.034121 2024-07-16 19:07:49.034137 plgnd 1058919954 R rec 18f2b4cd-6a4d-4f83-ba2a-1b24dfadeb7c -2024-07-16 19:07:49.122521 2024-07-16 19:07:49.122534 plgnd 1058918176 R rec 4f0b5066-e3d6-420c-ac87-1852ca552df8 -2024-07-16 19:07:49.21086 2024-07-16 19:07:49.210873 plgnd 1058899597 R rec d9d4410b-ccda-4c9d-92f4-576456ca1c63 -2024-07-16 19:07:49.305685 2024-07-16 19:07:49.305697 plgnd 1058896318 R rec 3dc1c07d-225e-4d9f-9ece-a33d405c97c4 -2024-07-16 19:07:49.364473 2024-07-16 19:07:49.364478 plgnd 1058890611 R rec fb10d4c2-bd9b-45c5-8fcc-ab939b0f517f -2024-07-16 19:07:49.417601 2024-07-16 19:07:49.417609 plgnd 1058880373 R rec 5a56958d-7366-4e7e-9ce2-fccec42d8547 -2024-07-16 19:07:49.48857 2024-07-16 19:07:49.488586 plgnd 1058876872 R rec 52c34024-7210-4614-b29f-bf1e35624b50 -2024-07-16 19:07:49.575982 2024-07-16 19:07:49.575997 plgnd 1058840819 R rec 944bed2c-b674-4333-acbc-2273c9eb3194 -2024-07-16 19:07:49.659479 2024-07-16 19:07:49.659494 plgnd 1058838512 R rec de925a33-7199-442b-b5ef-ac69cc9fbeb0 -2024-07-16 19:07:49.743789 2024-07-16 19:07:49.7438 plgnd 1058667343 R rec 493f99c4-4612-4128-9ecb-4a3257383aee -2024-07-16 19:07:49.830458 2024-07-16 19:07:49.830473 plgnd 1058664468 R rec 0e1da936-2ad7-424e-9c8c-0dfdf3089961 -2024-07-16 19:07:49.91294 2024-07-16 19:07:49.912956 plgnd 1058661396 R rec 115fcb8f-1ca1-473c-b5c8-838db79a6ac5 -2024-07-16 19:07:50.006752 2024-07-16 19:07:50.006763 plgnd 1058651994 R rec c552fa39-e89c-4056-8116-09d7297b98e3 -2024-07-16 19:07:50.102915 2024-07-16 19:07:50.10293 plgnd 1058639919 R rec 5c56eda3-f2fc-4298-bcad-f5efdad72055 -2024-07-16 19:07:50.191167 2024-07-16 19:07:50.191183 plgnd 105863982X R rec ff1e9db5-a2fd-44cd-90e0-ce18f62a336e -2024-07-16 19:07:50.295801 2024-07-16 19:07:50.29581 plgnd 1058622773 R rec 5b29e999-e7c6-4691-9e0b-17ab1f991b41 -2024-07-16 19:07:50.381748 2024-07-16 19:07:50.381754 plgnd 1058616684 R rec 4f787d32-1171-4c99-bcbc-d4bb71137133 -2024-07-16 19:07:50.431336 2024-07-16 19:07:50.431342 plgnd 1058616579 R rec d0c0ebfa-8713-4db9-9d4f-2ebe2995e167 -2024-07-16 19:07:50.501754 2024-07-16 19:07:50.501765 plgnd 1058583018 R rec 172bae23-e0fa-4215-86f7-eca0e16de771 -2024-07-16 19:07:50.592404 2024-07-16 19:07:50.592417 plgnd 1058579045 R rec 1b187d43-c721-411c-b274-7e74b3d97b3a -2024-07-16 19:07:50.671565 2024-07-16 19:07:50.671576 plgnd 1058463993 R rec 7bbedda8-0823-43e3-b19a-912d815de585 -2024-07-16 19:07:50.764241 2024-07-16 19:07:50.764251 plgnd 1058463896 R rec a3ec97a5-cba9-4629-821a-269e3b314ddd -2024-07-16 19:07:50.840602 2024-07-16 19:07:50.840613 plgnd 1058460862 R rec 0046bf5f-ec03-4f4c-9fd2-bb02beed6e5a -2024-07-16 19:07:50.923819 2024-07-16 19:07:50.92383 plgnd 1058460293 R rec 1456c17a-7535-45a6-bbec-11182d5e0a99 -2024-07-16 19:07:51.003814 2024-07-16 19:07:51.003825 plgnd 1058395726 R rec 611b9eac-7032-4dfd-a782-570ff37503af -2024-07-16 19:07:51.088627 2024-07-16 19:07:51.088638 plgnd 1058041142 R rec 3f230c2d-7f76-49a2-87f0-82379ce909a8 -2024-07-16 19:07:51.175659 2024-07-16 19:07:51.175671 plgnd 1057942928 R rec 632469b5-b4db-4b70-b222-efdec4097ece -2024-07-16 19:07:51.272663 2024-07-16 19:07:51.272674 plgnd 1056973714 R rec 2249c6b8-00b0-46fb-8bc2-b2c13bf4f7e0 -2024-07-16 19:07:51.359192 2024-07-16 19:07:51.359204 plgnd 1055068716 R rec 46bafe21-da38-42a7-8ac7-df4d639f762c -2024-07-16 19:07:51.428772 2024-07-16 19:07:51.428778 plgnd 1054961824 R rec 92710919-cf0b-45a2-ade5-8b144201d496 -2024-07-16 19:07:51.480479 2024-07-16 19:07:51.480485 plgnd 1054631026 R rec af0f642c-30ca-4a09-89bb-568d2f1903fe -2024-07-16 19:07:51.548028 2024-07-16 19:07:51.54804 plgnd 1054611041 R rec c79cda77-c53f-4928-9a37-409886f38113 -2024-07-16 19:07:51.636532 2024-07-16 19:07:51.636542 plgnd 1054442959 R rec 3abf6e13-c318-45f8-a64e-52a315661285 -2024-07-16 19:07:51.717454 2024-07-16 19:07:51.717468 plgnd 1054382255 R rec a40646f3-c04a-4597-9c65-251a1a5349a4 -2024-07-16 19:07:51.803885 2024-07-16 19:07:51.8039 plgnd 1054036489 R rec a9c0387a-3564-432f-ad50-bfad2619cfbc -2024-07-16 19:07:51.886052 2024-07-16 19:07:51.886062 plgnd 1054036322 R rec 78463071-c8a7-4aca-94be-fe5d3ea4bf2d -2024-07-16 19:07:51.974373 2024-07-16 19:07:51.974388 plgnd 105382467X R rec 16ab6415-1285-40a5-b85e-3ba55a629462 -2024-07-16 19:07:52.052569 2024-07-16 19:07:52.052584 plgnd 1053733119 R rec 1e81d2fe-a1a5-4537-9767-7a83ed73b43c -2024-07-16 19:07:52.134375 2024-07-16 19:07:52.13439 plgnd 1053694857 R rec 3850ac18-21ae-4a2f-a053-56d44d617d7d -2024-07-16 19:07:52.218387 2024-07-16 19:07:52.2184 plgnd 105366916X R rec 25c05139-5146-4210-84dd-e08e1ccc5253 -2024-07-16 19:07:52.313305 2024-07-16 19:07:52.313316 plgnd 1053585039 R rec 90d38804-6c3a-4804-9eb8-9aadbff025f9 -2024-07-16 19:07:52.40418 2024-07-16 19:07:52.404192 plgnd 1053578571 R rec 7023000e-559d-44bb-b83a-bc797cf379e5 -2024-07-16 19:07:52.470577 2024-07-16 19:07:52.470583 plgnd 1053495382 R rec 4762aae2-039a-434b-ac0c-fd10dfa7a10e -2024-07-16 19:07:52.549543 2024-07-16 19:07:52.549556 plgnd 1053460856 R rec 2a3ffa5b-e915-4d32-b953-033b4ed0a983 -2024-07-16 19:07:52.633771 2024-07-16 19:07:52.633786 plgnd 1051746663 R rec 89da5953-5944-4c8a-a627-909187cd34bd -2024-07-16 19:07:52.725351 2024-07-16 19:07:52.725362 plgnd 1044268069 R rec 605be72f-525e-4eb7-9cba-0453a4fd22b8 -2024-07-16 19:07:52.809599 2024-07-16 19:07:52.809609 plgnd 1038831628 R rec bc943bfe-a0fb-49f7-aa05-5938f6c6c13d -2024-07-16 19:07:52.885279 2024-07-16 19:07:52.88529 plgnd 1036912949 R rec c01a19eb-54cf-4054-9ac9-4f9a9ad42445 -2024-07-16 19:07:52.973243 2024-07-16 19:07:52.973258 plgnd 1036573141 R rec 1222ec9e-1c24-4cd3-913e-b2bec42b3bee -2024-07-16 19:07:53.059167 2024-07-16 19:07:53.059178 plgnd 1035487640 R rec a1817c49-e136-4a6c-8bc1-8e5f3a127360 -2024-07-16 19:07:53.14434 2024-07-16 19:07:53.144356 plgnd 1032436034 R rec bb13ee95-7f84-4762-b35d-5c222b11cd77 -2024-07-16 19:07:53.235638 2024-07-16 19:07:53.235654 plgnd 1031571922 R rec 1138a552-22dd-42f0-ab13-105924f36d4c -2024-07-16 19:07:53.344072 2024-07-16 19:07:53.344084 plgnd 1029389896 R rec 976cebd1-5b58-479d-a607-e99fccdd236f -2024-07-16 19:07:53.428546 2024-07-16 19:07:53.428559 plgnd 1029389233 R rec 8024be1c-a765-48c7-8bd0-e0ffc4e53562 -2024-07-16 19:07:53.497497 2024-07-16 19:07:53.497503 plgnd 1029388334 R rec fd7df2b6-d012-47e5-b9e6-f7393e5a3bfb -2024-07-16 19:07:53.542305 2024-07-16 19:07:53.542311 plgnd 1028231660 R rec 9b9758d3-20ee-4a43-a86e-f25b13db7276 -2024-07-16 19:07:53.611328 2024-07-16 19:07:53.61134 plgnd 1024812693 R rec 548b3110-fdd9-40f8-b468-fd9e1d5d6c49 -2024-07-16 19:07:53.706397 2024-07-16 19:07:53.706413 plgnd 1021396656 R rec 99f5e216-1d30-4d5c-8608-92111a9b1949 -2024-07-16 19:07:53.794512 2024-07-16 19:07:53.794528 plgnd 1021113018 R rec 1585eae9-9526-425e-adf9-bb09fedfc2e1 -2024-07-16 19:07:53.877846 2024-07-16 19:07:53.877862 plgnd 1021112577 R rec 8ca0e3de-ff99-43f3-970b-fce986404f5c -2024-07-16 19:07:53.957115 2024-07-16 19:07:53.957133 plgnd 1021112518 R rec e65b472c-2be6-4c04-977a-0b4f04a4c6e4 -2024-07-16 19:07:54.05102 2024-07-16 19:07:54.051031 plgnd 1021112216 R rec 4f73ae18-8681-4cb4-8e66-8e3af7c6a69f -2024-07-16 19:07:54.136125 2024-07-16 19:07:54.136137 plgnd 1021056154 R rec a097bf96-0aa3-475b-ab73-873846f3573b -2024-07-16 19:07:54.222942 2024-07-16 19:07:54.222958 plgnd 1020911387 R rec b9090f6a-6c38-4706-8e42-73e742266fa7 -2024-07-16 19:07:54.306189 2024-07-16 19:07:54.306199 plgnd 1020911344 R rec b42a9118-dee1-48f1-8367-2239f0c44f38 -2024-07-16 19:07:54.39174 2024-07-16 19:07:54.391757 plgnd 1020911026 R rec 570aef3f-74ce-446c-bf21-b9c0a01cd049 -2024-07-16 19:07:54.48698 2024-07-16 19:07:54.486986 plgnd 1020897325 R rec 8d21faa7-02af-47d9-8d96-29402fde1728 -2024-07-16 19:07:54.542837 2024-07-16 19:07:54.542843 plgnd 1020897236 R rec d162af90-abf5-4415-a940-6388276a27ca -2024-07-16 19:07:54.615242 2024-07-16 19:07:54.615253 plgnd 1020865318 R rec eedfe271-49c1-41bf-8e2d-58811cdbabe0 -2024-07-16 19:07:54.701181 2024-07-16 19:07:54.701196 plgnd 1020865237 R rec 58162bdc-95fe-4cfe-9743-f39c6404b57f -2024-07-16 19:07:54.792022 2024-07-16 19:07:54.792038 plgnd 1016112106 R rec 336c149e-f0b9-4edb-883a-6b1e7f14ca1b -2024-07-16 19:07:54.87943 2024-07-16 19:07:54.879446 plgnd 1011060752 R rec ed034d4f-bca9-4c94-843b-246ab9f7ef01 -2024-07-16 19:07:54.967376 2024-07-16 19:07:54.967386 plgnd 1010438603 R rec e05aecfa-ec90-488a-8ccb-87915523c4dc -2024-07-16 19:07:55.055907 2024-07-16 19:07:55.05592 plgnd 1010249460 R rec ce792a6c-8789-40ed-a481-ba706f4f9b16 -2024-07-16 19:07:55.141442 2024-07-16 19:07:55.141455 plgnd 1009847430 R rec 04a77b0f-89c8-4a11-b562-f9da18723cec -2024-07-16 19:07:55.237976 2024-07-16 19:07:55.237994 plgnd 1009707922 R rec 0aadb2cb-cb68-4cd3-8e29-502435e26a80 -2024-07-16 19:07:55.322379 2024-07-16 19:07:55.32239 plgnd 1008073997 R rec 35cc13e7-69b1-4a28-ac9f-7351f065a314 -2024-07-16 19:07:55.416293 2024-07-16 19:07:55.416308 plgnd 1002427517 R rec a1099e96-ade3-4ba2-a0a0-c4cd57a84a92 -2024-07-16 19:07:55.499593 2024-07-16 19:07:55.499608 plgnd 1001762630 R rec 0633afeb-d5d0-4ba9-b43a-75c79a2f5b8f -2024-07-16 19:07:55.571161 2024-07-16 19:07:55.571167 plgnd 996588051 R rec 3e135bb5-550c-454b-a2ee-ed9e42d6db9e -2024-07-16 19:07:55.641455 2024-07-16 19:07:55.641465 plgnd 996155910 R rec 7cd47c1d-270c-4bd5-97e7-0a333660c82d -2024-07-16 19:07:55.727165 2024-07-16 19:07:55.727181 plgnd 995191506 R rec bb9a7318-ad01-480d-a198-198dad8d51b8 -2024-07-16 19:07:55.81519 2024-07-16 19:07:55.815206 plgnd 994536666 R rec 90696ea3-bf70-41a0-accd-e1187f3b3ebc -2024-07-16 19:07:55.914167 2024-07-16 19:07:55.914178 plgnd 992346371 R rec 101f6b76-7d59-4564-b6c1-42afdb368085 -2024-07-16 19:07:56.011178 2024-07-16 19:07:56.011189 plgnd 989505952 R rec 0276e108-da6a-44ce-b7ab-8d2b4ac1c012 -2024-07-16 19:07:56.110119 2024-07-16 19:07:56.110296 plgnd 98831326X R rec 20846c84-a01e-40a0-9257-115ea56bab49 -2024-07-16 19:07:56.212465 2024-07-16 19:07:56.21248 plgnd 985253576 R rec 782bc551-7592-4d15-a20e-0fa19451d8b6 -2024-07-16 19:07:56.302688 2024-07-16 19:07:56.3027 plgnd 984645942 R rec d79ef32f-6801-45cd-b6a4-b21be803c33c -2024-07-16 19:07:56.386853 2024-07-16 19:07:56.386868 plgnd 980891248 R rec b02705ce-351b-48ce-aee5-3f4709485111 -2024-07-16 19:07:56.476398 2024-07-16 19:07:56.476414 plgnd 979131529 R rec 547dbc09-be7c-4b81-b87c-4733586a0be3 -2024-07-16 19:07:56.574845 2024-07-16 19:07:56.574851 plgnd 978966228 R rec de438acf-81bf-4a06-958a-f3923be628a6 -2024-07-16 19:07:56.625651 2024-07-16 19:07:56.625656 plgnd 978923855 R rec 554212c1-affd-412b-8c0f-567ed3e4a828 -2024-07-16 19:07:56.691812 2024-07-16 19:07:56.691823 plgnd 975958925 R rec 301ce552-ea06-47ab-be58-161530b510f8 -2024-07-16 19:07:56.776705 2024-07-16 19:07:56.776716 plgnd 975328573 R rec 78cb2e58-7ccf-4221-a8d4-a05d71958421 -2024-07-16 19:07:56.860223 2024-07-16 19:07:56.860236 plgnd 974245747 R rec 979030bf-ef46-4421-ae43-a17f59ef9329 -2024-07-16 19:07:56.947029 2024-07-16 19:07:56.947041 plgnd 97424225X R rec 8fe403b7-6717-437e-8bbc-05eb3ace284c -2024-07-16 19:07:57.038685 2024-07-16 19:07:57.0387 plgnd 973071648 R rec 8044bad9-89fe-47e3-b994-3c9bac1ceb5f -2024-07-16 19:07:57.128787 2024-07-16 19:07:57.128803 plgnd 973066261 R rec 95a2d795-20e2-4bcf-882a-d4f8c947f7c8 -2024-07-16 19:07:57.210225 2024-07-16 19:07:57.210241 plgnd 973066245 R rec 20bc6cdc-cb4f-4595-907c-be0294ce8176 -2024-07-16 19:07:57.291545 2024-07-16 19:07:57.291556 plgnd 973040149 R rec 046ff7e1-00d5-41b9-8ba3-fcfafd2b1b30 -2024-07-16 19:07:57.37437 2024-07-16 19:07:57.37438 plgnd 972651438 R rec 6da9ded6-339e-408a-8524-8af6e03640ee -2024-07-16 19:07:57.457098 2024-07-16 19:07:57.457109 plgnd 972586601 R rec f0eb8f20-7583-480c-b774-30f185ff508e -2024-07-16 19:07:57.546059 2024-07-16 19:07:57.546076 plgnd 972515704 R rec cb41c511-beba-4164-8903-199ea01e722d -2024-07-16 19:07:57.625743 2024-07-16 19:07:57.625749 plgnd 971359709 R rec a8a75258-7de0-4deb-beac-bd7a718838b0 -2024-07-16 19:07:57.678496 2024-07-16 19:07:57.678503 plgnd 970139470 R rec 61ff269a-98c1-4d2b-ae75-cd8b298f29c8 -2024-07-16 19:07:57.734153 2024-07-16 19:07:57.734169 plgnd 969971028 R rec 93a1a702-437b-4601-aba2-e866cbf08c81 -2024-07-16 19:07:57.811107 2024-07-16 19:07:57.811118 plgnd 969491131 R rec 592356f2-985c-408e-9e1c-5d7a52433e9f -2024-07-16 19:07:57.89643 2024-07-16 19:07:57.896445 plgnd 967753546 R rec cb204431-5898-4f8a-8f6a-cc00693da70b -2024-07-16 19:07:57.97903 2024-07-16 19:07:57.979041 plgnd 967681952 R rec 85a4031f-82ce-4c9b-8d50-6c5b7f019d3c -2024-07-16 19:07:58.068343 2024-07-16 19:07:58.068358 plgnd 967581176 R rec d684df96-a42f-4869-ab31-b346e2bcd8c7 -2024-07-16 19:07:58.163603 2024-07-16 19:07:58.163616 plgnd 967180953 R rec 9c61d898-bc2a-42d5-abb2-a7e841709a98 -2024-07-16 19:07:58.2529 2024-07-16 19:07:58.252912 plgnd 967160480 R rec 12805350-6a1b-4650-9d82-d9baebdb5e77 -2024-07-16 19:07:58.336538 2024-07-16 19:07:58.336549 plgnd 96577578X R rec 4ba79adb-9577-4530-88ad-a545bfc8e5b4 -2024-07-16 19:07:58.42396 2024-07-16 19:07:58.423971 plgnd 965775429 R rec 6d887591-05ad-49b8-ae85-862851c9180a -2024-07-16 19:07:58.515523 2024-07-16 19:07:58.515538 plgnd 965774910 R rec 2e9baa8d-4dcc-4abe-8a82-a2a30a39865d -2024-07-16 19:07:58.600218 2024-07-16 19:07:58.600233 plgnd 965759059 R rec 707e5972-908d-49a8-aadb-7b51e94a04a7 -2024-07-16 19:07:58.672234 2024-07-16 19:07:58.672239 plgnd 96575877X R rec 127b00ad-9c74-4631-8386-5cb2181dc858 -2024-07-16 19:07:58.728945 2024-07-16 19:07:58.728958 plgnd 96563860X R rec ca331ee9-4fc3-468b-8d9d-27087589ad66 -2024-07-16 19:07:58.797625 2024-07-16 19:07:58.797637 plgnd 964991608 R rec 873fb2c2-1f46-4a70-b651-36de04c22037 -2024-07-16 19:07:58.881436 2024-07-16 19:07:58.881448 plgnd 964462427 R rec 81f947ca-7abe-430b-aa2b-2d45bffb9a96 -2024-07-16 19:07:58.970588 2024-07-16 19:07:58.970601 plgnd 96411822X R rec 2f3d58d5-7496-4391-9300-5d337cd18d43 -2024-07-16 19:07:59.053347 2024-07-16 19:07:59.053356 plgnd 963982559 R rec 1038b5cc-b2ac-40dc-afdc-20eb5d2e0f9f -2024-07-16 19:07:59.134128 2024-07-16 19:07:59.134138 plgnd 963957635 R rec 78611672-e2ba-49c8-bd27-d9af903daff0 -2024-07-16 19:07:59.219747 2024-07-16 19:07:59.219758 plgnd 963614673 R rec b144f528-02ca-48d8-a04d-a85f72968b43 -2024-07-16 19:07:59.31901 2024-07-16 19:07:59.319026 plgnd 963462539 R rec ca343d34-da1e-41e0-8508-c40396f44e60 -2024-07-16 19:07:59.407163 2024-07-16 19:07:59.407179 plgnd 963082132 R rec 3079086f-9935-4019-8f26-2a981bb9699b -2024-07-16 19:07:59.496347 2024-07-16 19:07:59.496364 plgnd 962048879 R rec e4450366-1ded-40b2-8b59-be88d731bde6 -2024-07-16 19:07:59.577344 2024-07-16 19:07:59.577354 plgnd 961594519 R rec 90ec9d70-3f2e-4614-becb-bfc6c9a1bf15 -2024-07-16 19:07:59.664031 2024-07-16 19:07:59.664043 plgnd 961594497 R rec 4c218f41-54a9-4933-97f5-f0b0bc9d8c76 -2024-07-16 19:07:59.725251 2024-07-16 19:07:59.725258 plgnd 961594454 R rec 6b009a4f-b34b-43ab-b011-126c5e3961a3 -2024-07-16 19:07:59.782059 2024-07-16 19:07:59.782071 plgnd 961395923 R rec 64fc8274-2e5d-485e-8b30-67fdde239795 -2024-07-16 19:07:59.860823 2024-07-16 19:07:59.860841 plgnd 960863664 R rec b6af42f1-ae65-4cfb-8d68-edb9cdf0ffa1 -2024-07-16 19:07:59.949102 2024-07-16 19:07:59.949118 plgnd 960833919 R rec 6b852148-1b29-4231-8e90-74d2282ce4e7 -2024-07-16 19:08:00.04242 2024-07-16 19:08:00.042432 plgnd 960396268 R rec 5facf0d5-c17f-4c3b-9a00-2e80779abd5d -2024-07-16 19:08:00.126641 2024-07-16 19:08:00.126652 plgnd 960085726 R rec c908008d-aff9-475b-aac1-c68a2469a076 -2024-07-16 19:08:00.212879 2024-07-16 19:08:00.212892 plgnd 959934464 R rec 614cafdf-1b66-4391-af93-b653bb17e786 -2024-07-16 19:08:00.299364 2024-07-16 19:08:00.29938 plgnd 959918612 R rec 9e9f9fd8-2e66-4dac-817a-0f4eb0d7597b -2024-07-16 19:08:00.382023 2024-07-16 19:08:00.382041 plgnd 959788719 R rec f979196a-18e7-426d-ab5a-659919ee1bc8 -2024-07-16 19:08:00.459853 2024-07-16 19:08:00.459869 plgnd 959747575 R rec 10d48503-4bee-4984-9e71-5957be99302c -2024-07-16 19:08:00.541807 2024-07-16 19:08:00.541823 plgnd 959369872 R rec 0c8be9c0-4975-4ab1-a64e-f1960c248627 -2024-07-16 19:08:00.630781 2024-07-16 19:08:00.630797 plgnd 958777055 R rec 585b6eb1-b107-478e-8b39-1b12c2de37f0 -2024-07-16 19:08:00.720214 2024-07-16 19:08:00.72022 plgnd 958014639 R rec 0e363652-1c0f-47da-88c0-914a0c343508 -2024-07-16 19:08:00.772098 2024-07-16 19:08:00.772104 plgnd 957753551 R rec 040c078e-f329-4b66-b263-5a6c4f1b67ce -2024-07-16 19:08:00.830289 2024-07-16 19:08:00.8303 plgnd 957586973 R rec bd6724aa-6b22-4923-8e09-632ae5a348d2 -2024-07-16 19:08:00.913979 2024-07-16 19:08:00.913994 plgnd 957565445 R rec fb3d5c1a-a595-433c-88f9-119738c7154b -2024-07-16 19:08:00.995891 2024-07-16 19:08:00.995906 plgnd 957211430 R rec 16e85fa6-55e1-4603-9b59-bb756a750963 -2024-07-16 19:08:01.079071 2024-07-16 19:08:01.079094 plgnd 956443877 R rec 2c3bc07f-d05a-4331-96ed-cb2967b2f729 -2024-07-16 19:08:01.173394 2024-07-16 19:08:01.17341 plgnd 956443842 R rec 856a935b-dc08-47b7-828c-ecb7187e6ccc -2024-07-16 19:08:01.270659 2024-07-16 19:08:01.27067 plgnd 956443613 R rec 6d9a3a9f-6e4b-4614-bc67-1743778d641f -2024-07-16 19:08:01.359131 2024-07-16 19:08:01.359147 plgnd 955960134 R rec 1ff57584-f2db-4091-a580-e1966b3812b6 -2024-07-16 19:08:01.455917 2024-07-16 19:08:01.455932 plgnd 955820049 R rec 699b3472-75c0-405a-a599-14fba1b2bc71 -2024-07-16 19:08:01.538356 2024-07-16 19:08:01.538371 plgnd 955573246 R rec e7a9a1a7-ae9f-47d5-879e-5a96496cfb72 -2024-07-16 19:08:01.634175 2024-07-16 19:08:01.634186 plgnd 955498058 R rec 6e8198ca-b0cb-434c-9fa6-c8271d281887 -2024-07-16 19:08:01.721911 2024-07-16 19:08:01.721921 plgnd 955495768 R rec af84e843-fcb1-4c92-8d98-3de3d281e026 -2024-07-16 19:08:01.797963 2024-07-16 19:08:01.797972 plgnd 955090547 R rec a58fe825-81c8-48e6-b884-f3a457702d5e -2024-07-16 19:08:01.852031 2024-07-16 19:08:01.852042 plgnd 954472683 R rec f4487c7a-05d4-4fc6-beac-24a948883b38 -2024-07-16 19:08:01.929933 2024-07-16 19:08:01.929943 plgnd 954071832 R rec d5ca72c0-93c7-4486-ab82-7c2de29c8229 -2024-07-16 19:08:02.026832 2024-07-16 19:08:02.026848 plgnd 954064593 R rec eba43b50-6620-4383-846f-ef9f2a35598e -2024-07-16 19:08:02.112218 2024-07-16 19:08:02.112234 plgnd 953168697 R rec 817ea93b-a975-476e-93fc-8887667483a3 -2024-07-16 19:08:02.201028 2024-07-16 19:08:02.20106 plgnd 953105024 R rec 90237a02-7778-4a94-abb8-9eb49575f5be -2024-07-16 19:08:02.285375 2024-07-16 19:08:02.285391 plgnd 952110512 R rec b4733ece-7fe2-43fb-b281-a44d5fd67b5e -2024-07-16 19:08:02.384607 2024-07-16 19:08:02.384624 plgnd 951677268 R rec a2217745-473e-4b27-b588-a5b4c5aede42 -2024-07-16 19:08:02.469544 2024-07-16 19:08:02.469561 plgnd 951510282 R rec 42b7577a-bdb5-4d91-860d-ed44b4b5bac4 -2024-07-16 19:08:02.55534 2024-07-16 19:08:02.555358 plgnd 951510274 R rec 5d9b38cc-9641-41a1-a38c-2c283287db0b -2024-07-16 19:08:02.632461 2024-07-16 19:08:02.632472 plgnd 951510258 R rec b5720ad3-385b-44a9-81a6-73517452a205 -2024-07-16 19:08:02.723552 2024-07-16 19:08:02.723567 plgnd 95135793X R rec f9cfb4e5-b860-4c27-9182-b47d17295bfe -2024-07-16 19:08:02.804475 2024-07-16 19:08:02.804482 plgnd 950649155 R rec f3ae0f0d-29d1-494a-bd39-cdc22285aa06 -2024-07-16 19:08:02.862217 2024-07-16 19:08:02.862223 plgnd 950556149 R rec 74a97b57-2fee-4191-93de-b8ee7ad28571 -2024-07-16 19:08:02.939926 2024-07-16 19:08:02.939937 plgnd 950356190 R rec 6241151a-3130-4163-aebe-95c1c58519b6 -2024-07-16 19:08:03.038402 2024-07-16 19:08:03.038417 plgnd 950339490 R rec 90ca37b4-25f1-41a9-a4a1-113688c76e20 -2024-07-16 19:08:03.122926 2024-07-16 19:08:03.122941 plgnd 950339407 R rec d3d8dca3-622e-4631-8cc0-ff36261e0792 -2024-07-16 19:08:03.212247 2024-07-16 19:08:03.212263 plgnd 950338338 R rec f33778f1-4f59-43f3-bd21-fca76c928f82 -2024-07-16 19:08:03.291869 2024-07-16 19:08:03.291884 plgnd 95033829X R rec 9fb3dfa8-dbe0-4b1c-a0df-00b381bfb5ae -2024-07-16 19:08:03.386714 2024-07-16 19:08:03.386729 plgnd 950338230 R rec 22856a89-c9aa-4b21-bf00-405fb6e63171 -2024-07-16 19:08:03.471564 2024-07-16 19:08:03.471578 plgnd 950338184 R rec 39332da5-d5d4-40a2-8e14-4c5b20f2df68 -2024-07-16 19:08:03.570762 2024-07-16 19:08:03.570775 plgnd 950332429 R rec d44d9b64-a013-4e65-b5f1-c37367842432 -2024-07-16 19:08:03.660465 2024-07-16 19:08:03.660483 plgnd 950332011 R rec 52371b63-15ed-4e49-a707-c5c94dd376fc -2024-07-16 19:08:03.752286 2024-07-16 19:08:03.752297 plgnd 950331821 R rec 53574a37-3e47-4b92-8a64-8947711824aa -2024-07-16 19:08:03.836949 2024-07-16 19:08:03.836957 plgnd 950315354 R rec 85bb630f-3bcd-49c4-8694-f45fffa0a820 -2024-07-16 19:08:03.891208 2024-07-16 19:08:03.891214 plgnd 95020109X R rec b245473c-3c08-4a7c-9446-e887abd35516 -2024-07-16 19:08:03.971095 2024-07-16 19:08:03.971105 plgnd 950199850 R rec 4dd2548e-69bb-4210-bd3e-4719b54f6b68 -2024-07-16 19:08:04.054953 2024-07-16 19:08:04.054969 plgnd 950199214 R rec 7027f3fc-7193-41f6-971e-4400e622b7d9 -2024-07-16 19:08:04.156005 2024-07-16 19:08:04.156017 plgnd 950168637 R rec 10e2d1d7-3ce6-4ff5-91f7-49a915e2dd60 -2024-07-16 19:08:04.27104 2024-07-16 19:08:04.271051 plgnd 949740861 R rec 40242d4c-9c28-4587-ad81-ea4e315e593c -2024-07-16 19:08:04.374895 2024-07-16 19:08:04.374907 plgnd 949647314 R rec 565c6d38-10a4-478e-9afd-1db9c5e34441 -2024-07-16 19:08:04.458479 2024-07-16 19:08:04.45849 plgnd 949641804 R rec d1b3c1e0-be9e-40de-aef3-c2fba67c1f2a -2024-07-16 19:08:04.543312 2024-07-16 19:08:04.543324 plgnd 94963218X R rec da502b3e-a608-4826-a053-2b5b9aa0521c -2024-07-16 19:08:04.630036 2024-07-16 19:08:04.63005 plgnd 949632163 R rec 8101905a-6c3a-4c62-bee4-bf3c9bceca03 -2024-07-16 19:08:04.715041 2024-07-16 19:08:04.715053 plgnd 949632147 R rec 51e542d8-3d68-4b52-b241-42de2ac49de3 -2024-07-16 19:08:04.799094 2024-07-16 19:08:04.799105 plgnd 949632120 R rec b810dbaa-474e-4212-a71f-58077507adf9 -2024-07-16 19:08:04.876716 2024-07-16 19:08:04.876724 plgnd 949632104 R rec 727be07b-1fe1-4e6a-96d2-6e4dc8eb8aa5 -2024-07-16 19:08:04.929671 2024-07-16 19:08:04.929678 plgnd 949607266 R rec 0048ef7a-4743-44d1-8fa7-1ae3f2e914b8 -2024-07-16 19:08:05.005152 2024-07-16 19:08:05.005163 plgnd 949602310 R rec c84f999f-cb20-41ce-8c45-7d1da8650f28 -2024-07-16 19:08:05.088889 2024-07-16 19:08:05.088904 plgnd 948791659 R rec f9aab04c-2d1e-48db-b458-2b276f650b8c -2024-07-16 19:08:05.185098 2024-07-16 19:08:05.185113 plgnd 948417226 R rec f8f57a70-8742-478a-a674-e93083f2c9a0 -2024-07-16 19:08:05.266239 2024-07-16 19:08:05.266253 plgnd 948322292 R rec d11a5376-8867-43e7-962c-1efa8781d6f2 -2024-07-16 19:08:05.354283 2024-07-16 19:08:05.354293 plgnd 948321156 R rec d48ed009-fe2e-43e1-b97e-c195f7bbfb13 -2024-07-16 19:08:05.472803 2024-07-16 19:08:05.472814 plgnd 947976248 R rec 9c9524bb-4253-4666-808b-f91af5570b52 -2024-07-16 19:08:05.563132 2024-07-16 19:08:05.563143 plgnd 947862730 R rec 08b67ad5-ecde-4d9b-bdf9-56ef297144cb -2024-07-16 19:08:05.633513 2024-07-16 19:08:05.633525 plgnd 947589341 R rec 36fad630-5f41-44f6-9e5d-3054b3d22079 -2024-07-16 19:08:05.714128 2024-07-16 19:08:05.714139 plgnd 947454802 R rec 93b40dfc-3bd5-4ef9-b02d-70bbd6437d92 -2024-07-16 19:08:05.80995 2024-07-16 19:08:05.809966 plgnd 947454659 R rec dcdfb68a-ca81-4ad5-a790-f6a067ff417e -2024-07-16 19:08:05.899691 2024-07-16 19:08:05.899696 plgnd 947421238 R rec 8cc09076-b248-46dc-81e9-fdf1bd62e932 -2024-07-16 19:08:05.954002 2024-07-16 19:08:05.954009 plgnd 947026088 R rec b381a3fb-0864-4443-ae8f-c22b41ec733c -2024-07-16 19:08:06.016095 2024-07-16 19:08:06.016109 plgnd 946723729 R rec 45c52c8b-87af-4bb5-98fe-52357670a900 -2024-07-16 19:08:06.116264 2024-07-16 19:08:06.116279 plgnd 946606161 R rec eb3ebafd-209d-443d-b587-6fdea0f62340 -2024-07-16 19:08:06.200435 2024-07-16 19:08:06.200449 plgnd 945980132 R rec b461c5cf-ce2c-414a-b9c1-b2eb893f454f -2024-07-16 19:08:06.289088 2024-07-16 19:08:06.289103 plgnd 945917201 R rec 8fdfee67-7438-45a1-8d82-0b0937192a99 -2024-07-16 19:08:06.376487 2024-07-16 19:08:06.376496 plgnd 945871678 R rec a8a92d54-5e66-41fd-a92d-648b67a23293 -2024-07-16 19:08:06.471495 2024-07-16 19:08:06.47151 plgnd 945385382 R rec 040b76d8-9271-49ce-b371-833be7cb1885 -2024-07-16 19:08:06.550245 2024-07-16 19:08:06.550261 plgnd 944766021 R rec ebcb4857-6715-4258-ab67-cd035209b6f1 -2024-07-16 19:08:06.63656 2024-07-16 19:08:06.636573 plgnd 944289290 R rec 82edb2d3-b280-43f9-be07-3d4894d1fd34 -2024-07-16 19:08:06.720418 2024-07-16 19:08:06.720431 plgnd 94400718X R rec 1b8f50a2-6b55-4019-b856-0fc60344589c -2024-07-16 19:08:06.807197 2024-07-16 19:08:06.807215 plgnd 943882346 R rec d9d1d6e6-b9d0-4331-913f-e86e732dacec -2024-07-16 19:08:06.900574 2024-07-16 19:08:06.900586 plgnd 941847934 R rec 01e7528b-f79c-4706-aadb-ecd2aa187acb -2024-07-16 19:08:06.976063 2024-07-16 19:08:06.976069 plgnd 941808769 R rec 3d09c2c2-666e-4a35-9a8c-26b05362b39c -2024-07-16 19:08:07.057549 2024-07-16 19:08:07.05756 plgnd 941757471 R rec 6fce8af3-92d7-4d61-92c6-830ad635571d -2024-07-16 19:08:07.150978 2024-07-16 19:08:07.15099 plgnd 941385175 R rec 1e4a7e85-c6a7-422b-931a-35edfe7019f0 -2024-07-16 19:08:07.24174 2024-07-16 19:08:07.241756 plgnd 940396068 R rec 15ce8596-3dea-4793-9a1f-1f4b15476427 -2024-07-16 19:08:07.341027 2024-07-16 19:08:07.341038 plgnd 940396009 R rec 9bf8a372-34cf-4d6b-aa3b-c5ac8fee8e00 -2024-07-16 19:08:07.429646 2024-07-16 19:08:07.429661 plgnd 199305404 R rec 7b8ec1d8-d58f-42fa-9d04-4e7b780cf02a -2024-07-16 19:08:07.52808 2024-07-16 19:08:07.52809 plgnd 199252149 R rec 4b4bd4be-f0f3-4557-96ef-db2f66911cbe -2024-07-16 19:08:07.617456 2024-07-16 19:08:07.617467 plgnd 199248974 R rec f31fd049-e92a-425d-843f-d091cfd4018e -2024-07-16 19:08:07.76047 2024-07-16 19:08:07.760476 plgnd 199246815 R rec 4695088e-c533-4e98-8fdb-9ecf0e0a027e -2024-07-16 19:08:07.81357 2024-07-16 19:08:07.813577 plgnd 199246793 R rec b5703ea4-8b95-4399-bcfd-960e5228f92c -2024-07-16 19:08:07.866746 2024-07-16 19:08:07.866752 plgnd 199246211 R rec 407fbafd-8359-4128-a616-1300a550a7f4 -2024-07-16 19:08:07.926525 2024-07-16 19:08:07.926538 plgnd 199244766 R rec 31771831-783c-4201-8bf7-0170905768a4 -2024-07-16 19:08:07.993549 2024-07-16 19:08:07.993557 plgnd 19924474X R rec 8bdef936-044d-4d47-92d7-26b5d954e9f1 -2024-07-16 19:08:08.047034 2024-07-16 19:08:08.047044 plgnd 199244731 R rec 3d872331-39a0-4dac-b859-b68ecb0438b1 -2024-07-16 19:08:08.105176 2024-07-16 19:08:08.105186 plgnd 199244375 R rec 84130de4-b020-40b6-bf74-a2122368b0c3 -2024-07-16 19:08:08.18575 2024-07-16 19:08:08.185766 plgnd 199241562 R rec 078790d7-e328-4882-a09f-69fa5ba37379 -2024-07-16 19:08:08.281543 2024-07-16 19:08:08.28156 plgnd 199240590 R rec cfd8471b-4d9a-417b-901f-42fdac61b4e4 -2024-07-16 19:08:08.362813 2024-07-16 19:08:08.362824 plgnd 199240515 R rec a9a59579-8005-4d26-b445-e27de37ce370 -2024-07-16 19:08:08.450919 2024-07-16 19:08:08.45093 plgnd 199239436 R rec eb1cd43e-2be0-43e6-89ff-dc9260aeacb9 -2024-07-16 19:08:08.534748 2024-07-16 19:08:08.534764 plgnd 19923860X R rec 1633d227-bf24-450d-8c3a-7645f77d38bd -2024-07-16 19:08:08.638676 2024-07-16 19:08:08.63869 plgnd 199231516 R rec 745e0804-17eb-4e56-a0db-5ed79aae50bd -2024-07-16 19:08:08.721789 2024-07-16 19:08:08.721799 plgnd 199230811 R rec a793ccd3-453f-42fe-b675-0c0a2a84a099 -2024-07-16 19:08:08.815312 2024-07-16 19:08:08.815328 plgnd 199230285 R rec 9c6ebd60-224b-4a7b-8e0e-1b34bf8ff366 -2024-07-16 19:08:08.904898 2024-07-16 19:08:08.904909 plgnd 199224196 R rec 657870ad-8b10-4db9-94d2-6e4a4171650a -2024-07-16 19:08:09.01236 2024-07-16 19:08:09.012366 plgnd 199218315 R rec 4ae6c6b1-3bcc-4aa1-8528-c51920e82362 -2024-07-16 19:08:09.070809 2024-07-16 19:08:09.070815 plgnd 199215901 R rec 7c856df2-3986-40ae-9fe8-f58c8df236e5 -2024-07-16 19:08:09.1538 2024-07-16 19:08:09.153811 plgnd 199214700 R rec 1d1afa9e-f79c-410e-a8be-86e28f1cc903 -2024-07-16 19:08:09.241373 2024-07-16 19:08:09.241391 plgnd 19921462X R rec f96a1707-b60e-4671-88a4-598b9158ca1d -2024-07-16 19:08:09.32981 2024-07-16 19:08:09.329826 plgnd 199212007 R rec 2633f9ff-456b-43ab-a425-06959bb5f10a -2024-07-16 19:08:09.413069 2024-07-16 19:08:09.41308 plgnd 199211817 R rec e38615d0-c0e9-49d6-a8ed-e5a974105e68 -2024-07-16 19:08:09.507037 2024-07-16 19:08:09.507048 plgnd 199210713 R rec 189139f0-14e0-4f06-b56d-275a56091e05 -2024-07-16 19:08:09.60301 2024-07-16 19:08:09.603027 plgnd 199209464 R rec 2da96c3f-0fa1-4d38-a0d3-a017ac7b4728 -2024-07-16 19:08:09.687577 2024-07-16 19:08:09.687592 plgnd 199200955 R rec 0ac6e4fc-f82a-4ffe-84b9-885ff3675be0 -2024-07-16 19:08:09.771029 2024-07-16 19:08:09.77104 plgnd 199198578 R rec 42f608a2-b17a-46f5-b948-ca376ca885d2 -2024-07-16 19:08:09.855268 2024-07-16 19:08:09.855278 plgnd 199195978 R rec a9ffeed6-3278-4244-8ef1-53654d4ad03c -2024-07-16 19:08:09.942324 2024-07-16 19:08:09.94234 plgnd 19919596X R rec 313d888d-3e4a-45f1-9048-0065eb018449 -2024-07-16 19:08:10.034784 2024-07-16 19:08:10.034797 plgnd 199189870 R rec 9601ad85-3301-4a07-b9bd-1b0940723ca7 -2024-07-16 19:08:10.105075 2024-07-16 19:08:10.105081 plgnd 199189862 R rec de1199ef-eaa4-4e57-98fb-6b232ebfe8ab -2024-07-16 19:08:10.160712 2024-07-16 19:08:10.160723 plgnd 199189854 R rec 0936636c-cd37-49f8-8ea2-efd05a0f733f -2024-07-16 19:08:10.243965 2024-07-16 19:08:10.243976 plgnd 199189846 R rec 793fd48b-e007-48b6-8286-84ec798bcfaa -2024-07-16 19:08:10.332801 2024-07-16 19:08:10.332814 plgnd 199187282 R rec 6e7e97c6-66b3-434b-99a3-dc5902c03fce -2024-07-16 19:08:10.427764 2024-07-16 19:08:10.42778 plgnd 199181993 R rec e96fc143-eb3d-44da-82c1-4d25bf2e21be -2024-07-16 19:08:10.512406 2024-07-16 19:08:10.512419 plgnd 199173672 R rec bedc7b69-8efc-4c13-9127-53806f88efec -2024-07-16 19:08:10.607483 2024-07-16 19:08:10.607493 plgnd 19917332X R rec 838dae41-e07b-407c-a90b-34eab50178e2 -2024-07-16 19:08:10.689343 2024-07-16 19:08:10.689359 plgnd 199168512 R rec 26d298fc-519a-4e65-8215-5829bdcaa714 -2024-07-16 19:08:10.779948 2024-07-16 19:08:10.779961 plgnd 199164347 R rec 70520063-04ba-4265-b3b7-c9927705c229 -2024-07-16 19:08:10.859478 2024-07-16 19:08:10.859489 plgnd 19916035X R rec aaa0d634-27d5-4f6c-b2b5-734b732624ee -2024-07-16 19:08:10.942601 2024-07-16 19:08:10.942616 plgnd 199159998 R rec 4fbb0c4f-7e13-4f84-8f12-66422887890c -2024-07-16 19:08:11.029378 2024-07-16 19:08:11.029393 plgnd 199159882 R rec 1df181ca-2cce-49d6-9f1a-19902a6b7515 -2024-07-16 19:08:11.109223 2024-07-16 19:08:11.10923 plgnd 199159777 R rec 3946e3bd-765c-4ef8-ba7f-63e839baaecc -2024-07-16 19:08:11.162614 2024-07-16 19:08:11.162626 plgnd 199157642 R rec cc891d33-0bdd-4d08-97bf-516f64b671c3 -2024-07-16 19:08:11.243042 2024-07-16 19:08:11.243053 plgnd 199147760 R rec 77ec72ba-aa9d-431a-bd9c-67c13c4934a5 -2024-07-16 19:08:11.328933 2024-07-16 19:08:11.328943 plgnd 199138834 R rec 7828cf5c-aecd-4536-94e8-4af6089c76b1 -2024-07-16 19:08:11.418265 2024-07-16 19:08:11.418275 plgnd 199136637 R rec cc80a3db-0a02-4ac8-8e3f-091aff290460 -2024-07-16 19:08:11.501747 2024-07-16 19:08:11.501767 plgnd 199118167 R rec 6b1031e2-44b9-452c-809b-e9bb3608840d -2024-07-16 19:08:11.590935 2024-07-16 19:08:11.59095 plgnd 199089973 R rec 474f3d4a-9e36-484d-9c05-12a4af452efc -2024-07-16 19:08:11.682221 2024-07-16 19:08:11.682231 plgnd 199077177 R rec fd7f0e55-39e0-46e6-b285-bc285ec2fb75 -2024-07-16 19:08:11.761197 2024-07-16 19:08:11.761207 plgnd 199023786 R rec b0eafc46-da5a-4165-bef2-7e34047b7487 -2024-07-16 19:08:11.854656 2024-07-16 19:08:11.854668 plgnd 199023360 R rec 9241662c-f877-4390-aaaa-782f276dab2a -2024-07-16 19:08:11.940657 2024-07-16 19:08:11.940671 plgnd 199022534 R rec e8db5cea-9281-46fe-a045-c92331a99ad2 -2024-07-16 19:08:12.03792 2024-07-16 19:08:12.037932 plgnd 199013594 R rec 4520d567-297b-40b4-b5a2-e21d3a9f4e97 -2024-07-16 19:08:12.134433 2024-07-16 19:08:12.134439 plgnd 199013276 R rec 1774671b-92c3-49cf-b22d-b9bc42e2fb0c -2024-07-16 19:08:12.19145 2024-07-16 19:08:12.191456 plgnd 199011249 R rec cd64864a-85b9-4a8b-9b57-92608db2e16c -2024-07-16 19:08:12.261389 2024-07-16 19:08:12.261432 plgnd 199003645 R rec cbea0fbc-b226-4c61-8a86-fc806a7153d7 -2024-07-16 19:08:12.342301 2024-07-16 19:08:12.342314 plgnd 199002894 R rec a87ae66e-e999-43ad-889f-0e532e9f72a8 -2024-07-16 19:08:12.432426 2024-07-16 19:08:12.432437 plgnd 199001111 R rec b690bdd6-2854-4e9e-900f-620d29bcb123 -2024-07-16 19:08:12.516126 2024-07-16 19:08:12.516136 plgnd 199000328 R rec 0993547f-26bd-4ad6-a421-e9a4a6b51136 -2024-07-16 19:08:12.607424 2024-07-16 19:08:12.607439 plgnd 199000239 R rec 8b4d6584-8ae0-42fb-9ff0-9a8348021dbf -2024-07-16 19:08:12.691675 2024-07-16 19:08:12.691691 plgnd 050551604 R rec 98343f26-bef8-4d9e-a446-1fccf8dc49fb -2024-07-16 19:08:12.779873 2024-07-16 19:08:12.779883 plgnd 050133039 R rec a9d41075-3a01-431c-94a0-acbe7acb96ad -2024-07-16 19:08:12.861527 2024-07-16 19:08:12.861539 plgnd 050039350 R rec 5d97f972-9675-4b28-ac7b-69fd33fb38f1 -2024-07-16 19:08:12.956975 2024-07-16 19:08:12.95699 plgnd 043244793 R rec 2e9a0028-de06-4341-be2d-5bacbc26f60f -2024-07-16 19:08:13.046662 2024-07-16 19:08:13.04668 plgnd 043225608 R rec 4fc86281-bb34-44dd-bdce-e87526964e71 -2024-07-16 19:08:13.14082 2024-07-16 19:08:13.140833 plgnd 043151019 R rec 083d68a6-b05e-4055-8e1e-a4c7b45f0309 -2024-07-16 19:08:13.213384 2024-07-16 19:08:13.21339 plgnd 043138764 R rec 7aa61321-075d-424c-b97f-a76dc200e249 -2024-07-16 19:08:13.292646 2024-07-16 19:08:13.292656 plgnd 042976200 R rec 40eb7490-c231-4176-9f3d-4585ad1100b9 -2024-07-16 19:08:13.405521 2024-07-16 19:08:13.405536 plgnd 042939550 R rec 3901a4b7-f016-460e-a30f-299eb7c1d9eb -2024-07-16 19:08:13.490537 2024-07-16 19:08:13.490553 plgnd 042939526 R rec a99823f5-e6e7-4568-8b08-92022153f911 -2024-07-16 19:08:13.573363 2024-07-16 19:08:13.573379 plgnd 042788714 R rec 67cc4cb0-414b-4c50-8016-944d1aab8ffb -2024-07-16 19:08:13.661029 2024-07-16 19:08:13.661044 plgnd 042778352 R rec f9f73e07-b23c-4aaf-8782-7a7c7e9d485f -2024-07-16 19:08:13.757837 2024-07-16 19:08:13.757848 plgnd 042627494 R rec 732c45c4-f648-4ff0-a6b4-10840f6302c3 -2024-07-16 19:08:13.843695 2024-07-16 19:08:13.843706 plgnd 042602564 R rec ce16bfbe-8840-4ef9-a898-7e9aca5a8235 -2024-07-16 19:08:13.930264 2024-07-16 19:08:13.930276 plgnd 042567874 R rec cca4b647-78fe-41b3-8199-3072030c6c3d -2024-07-16 19:08:14.026548 2024-07-16 19:08:14.026564 plgnd 042553628 R rec 57ec2fe0-150e-42a6-8fba-311001309a91 -2024-07-16 19:08:14.117935 2024-07-16 19:08:14.117951 plgnd 042492777 R rec b7a21388-6468-4247-bad8-d666ab2c1ebc -2024-07-16 19:08:14.203349 2024-07-16 19:08:14.203355 plgnd 042490448 R rec 8ddc0def-27e9-4dfa-86b2-fadaa782c2cd -2024-07-16 19:08:14.261012 2024-07-16 19:08:14.261022 plgnd 042477247 R rec d8530b8c-0b52-4876-b54e-6e41f8cb359c -2024-07-16 19:08:14.339837 2024-07-16 19:08:14.339847 plgnd 042400228 R rec ce10e691-677f-49a9-acc6-b961438b1ee9 -2024-07-16 19:08:14.423323 2024-07-16 19:08:14.423339 plgnd 042387175 R rec 9e4634b7-e510-40cb-a3fd-3097daba50de -2024-07-16 19:08:14.51618 2024-07-16 19:08:14.516195 plgnd 042299004 R rec ec9ea054-5c47-4c3c-a0ec-1d641149d9be -2024-07-16 19:08:14.6079 2024-07-16 19:08:14.607912 plgnd 042260213 R rec 07e0c7e7-70c6-4a8f-80f8-9312e5061d3a -2024-07-16 19:08:14.700133 2024-07-16 19:08:14.700149 plgnd 042244943 R rec 83ad7add-214f-434c-a253-7dcd190a85da -2024-07-16 19:08:14.783757 2024-07-16 19:08:14.783768 plgnd 042236037 R rec e78855a6-842e-424e-a202-bc9632627816 -2024-07-16 19:08:14.872104 2024-07-16 19:08:14.872119 plgnd 042209927 R rec 76c7639f-a6d8-44a5-a91f-7db36b3714a5 -2024-07-16 19:08:14.965846 2024-07-16 19:08:14.965859 plgnd 042005450 R rec 4e5fa35a-3f8a-45e5-8e82-4887e3e3e8a5 -2024-07-16 19:08:15.060577 2024-07-16 19:08:15.060589 plgnd 041401174 R rec f1029fb7-57ef-4765-b202-ddf976d2c98b -2024-07-16 19:08:15.147975 2024-07-16 19:08:15.147991 plgnd 041370538 R rec fca20264-7654-480a-b56b-5b14543a1469 -2024-07-16 19:08:15.239864 2024-07-16 19:08:15.23987 plgnd 041194152 R rec 120e037a-d681-4f4c-9129-ccfae1fb8c24 -2024-07-16 19:08:15.296525 2024-07-16 19:08:15.296531 plgnd 041192443 R rec 7910563b-5761-4680-9bf0-98bb5c81e844 -2024-07-16 19:08:15.360626 2024-07-16 19:08:15.360638 plgnd 041167163 R rec 31970e47-e244-4bc2-a678-dd611cb169d9 -2024-07-16 19:08:15.450937 2024-07-16 19:08:15.450952 plgnd 041154282 R rec 5a72e5f8-6352-4c6b-bcd1-3bff6b5a7129 -2024-07-16 19:08:15.532811 2024-07-16 19:08:15.532826 plgnd 041112504 R rec ce7b69b5-dc93-4e9d-86cc-a4e44bc8513f -2024-07-16 19:08:15.62897 2024-07-16 19:08:15.628981 plgnd 041087828 R rec 9391f5eb-16e7-4556-84f7-1335dc64c457 -2024-07-16 19:08:15.710841 2024-07-16 19:08:15.710856 plgnd 041084675 R rec cf448826-d1d2-4efa-a4ec-5145920d07a9 -2024-07-16 19:08:15.799346 2024-07-16 19:08:15.799359 plgnd 041063368 R rec 4c5435c7-fbb0-4b01-ba53-9055ebc2be8a -2024-07-16 19:08:15.883478 2024-07-16 19:08:15.883489 plgnd 04106125X R rec 7743ee7f-0b74-4ed4-8ac7-ea3240e6c958 -2024-07-16 19:08:16.017685 2024-07-16 19:08:16.017695 plgnd 041058445 R rec 31a0dd3e-c334-44ba-835c-2e848e929648 -2024-07-16 19:08:16.100769 2024-07-16 19:08:16.100785 plgnd 041011848 R rec de371e42-14a9-4df7-bd87-9da60463cb9c -2024-07-16 19:08:16.185741 2024-07-16 19:08:16.185793 plgnd 040994716 R rec 631f4604-6f83-4774-8bbd-cf791edb1c74 -2024-07-16 19:08:16.263228 2024-07-16 19:08:16.263233 plgnd 040967689 R rec 037dcbbb-b32a-45a1-b9e9-c256120020c7 -2024-07-16 19:08:16.319132 2024-07-16 19:08:16.319138 plgnd 040957977 R rec 3477e1c5-f4df-492c-92e2-5c095ce1d9b5 -2024-07-16 19:08:16.381784 2024-07-16 19:08:16.381796 plgnd 040956075 R rec 07c90e6a-e857-4bc7-a562-98c1cf8093c2 -2024-07-16 19:08:16.459576 2024-07-16 19:08:16.459592 plgnd 040952789 R rec f02fde57-6c03-4fe6-a026-3d423b7173a6 -2024-07-16 19:08:16.549726 2024-07-16 19:08:16.549736 plgnd 040912833 R rec b5f17afa-47c0-45bf-b4cf-459b79ddcecf -2024-07-16 19:08:16.633428 2024-07-16 19:08:16.633445 plgnd 040873862 R rec 29fab7be-4434-4b17-9bf4-ded72e0a669f -2024-07-16 19:08:16.721879 2024-07-16 19:08:16.721894 plgnd 040865622 R rec cabf8502-47d0-4b97-9222-72b7ae92bd85 -2024-07-16 19:08:16.809709 2024-07-16 19:08:16.809724 plgnd 040805905 R rec 4ce171cf-2264-4da0-9540-b5bca5f86339 -2024-07-16 19:08:16.902305 2024-07-16 19:08:16.90232 plgnd 040802558 R rec 16f53296-a17a-4092-b7a4-07948ee9ebe3 -2024-07-16 19:08:16.988605 2024-07-16 19:08:16.988615 plgnd 040794903 R rec 336c5519-a538-40f1-a3c6-585e7578e2d6 -2024-07-16 19:08:17.070797 2024-07-16 19:08:17.070813 plgnd 040768996 R rec 09c907d5-0495-416c-8a13-c0228e849842 -2024-07-16 19:08:17.15249 2024-07-16 19:08:17.152501 plgnd 040754766 R rec 6a4f7389-c5ad-4f53-b8eb-3538ca906f2e -2024-07-16 19:08:17.245835 2024-07-16 19:08:17.245846 plgnd 040738582 R rec 51a94562-a290-4e24-b508-910f60d0c78e -2024-07-16 19:08:17.317964 2024-07-16 19:08:17.317971 plgnd 040693309 R rec c73ebcdf-4318-43c5-8bfe-45999358394d -2024-07-16 19:08:17.382294 2024-07-16 19:08:17.382305 plgnd 040680223 R rec cd328c4c-989b-43b1-bf74-c0ff1f170834 -2024-07-16 19:08:17.467702 2024-07-16 19:08:17.467716 plgnd 040657752 R rec e43a2c10-3cff-4b5f-b6e7-0c7efee7e9de -2024-07-16 19:08:17.552381 2024-07-16 19:08:17.552397 plgnd 04062501X R rec 68b55be2-3bc7-4fca-b89f-c6af8be27fb1 -2024-07-16 19:08:17.650495 2024-07-16 19:08:17.650506 plgnd 040604853 R rec fb75675e-64d0-4e8d-aa4c-72578ba07b5c -2024-07-16 19:08:17.738318 2024-07-16 19:08:17.738333 plgnd 04060151X R rec 2ac972b1-50d7-4396-8bed-b4b8b4ce3f2b -2024-07-16 19:08:17.827367 2024-07-16 19:08:17.827384 plgnd 040594084 R rec 8a8267c1-2eab-499a-b82a-cb361a506156 -2024-07-16 19:08:17.920572 2024-07-16 19:08:17.920582 plgnd 04057749X R rec 01f8e3e9-0fbc-448d-b5ea-ee8f44b589f2 -2024-07-16 19:08:18.014616 2024-07-16 19:08:18.014631 plgnd 040516687 R rec 596886c5-a56c-401c-bf54-5cc8b4f62914 -2024-07-16 19:08:18.111213 2024-07-16 19:08:18.11123 plgnd 040425134 R rec a532d6ed-627b-451f-b0f4-f4a1ef2004a9 -2024-07-16 19:08:18.202425 2024-07-16 19:08:18.20244 plgnd 04041146X R rec 8eb2a376-6226-4330-b713-3b89df268845 -2024-07-16 19:08:18.306232 2024-07-16 19:08:18.306238 plgnd 040376044 R rec e83e6512-5b84-440e-adf9-cdcfd18c522c -2024-07-16 19:08:18.357164 2024-07-16 19:08:18.357171 plgnd 04037372X R rec 756a3b41-e3be-46ff-a607-ab765ec5e34d -2024-07-16 19:08:18.405048 2024-07-16 19:08:18.405054 plgnd 040368114 R rec 6aa7e12a-30fc-4abe-b082-e0854a7d468a -2024-07-16 19:08:18.470157 2024-07-16 19:08:18.470171 plgnd 040357422 R rec 7d6264d9-54e1-4de0-8db8-2343e26fb751 -2024-07-16 19:08:18.560308 2024-07-16 19:08:18.560318 plgnd 040346919 R rec b2f7be24-85a4-4e34-b040-0feb89a04488 -2024-07-16 19:08:18.657459 2024-07-16 19:08:18.65751 plgnd 040304817 R rec a69d5a07-42ef-41b7-b8a8-bfe2fabeaf54 -2024-07-16 19:08:18.762865 2024-07-16 19:08:18.762903 plgnd 040296377 R rec 5d4c946a-c85a-48f4-9102-67f7b3984cea -2024-07-16 19:08:18.856905 2024-07-16 19:08:18.856922 plgnd 040288099 R rec de030198-2715-4aa8-ba80-ac69d6cfff66 -2024-07-16 19:08:18.945288 2024-07-16 19:08:18.945304 plgnd 04024010X R rec 41dcf624-fef2-4a50-9227-0fd6bb815994 -2024-07-16 19:08:19.032973 2024-07-16 19:08:19.032985 plgnd 040183408 R rec 3765c1fe-fa62-4e3e-8bdf-5ace5e01b42a -2024-07-16 19:08:19.121202 2024-07-16 19:08:19.121216 plgnd 040093417 R rec f40d2bb6-745f-4548-a4a5-cfd12dfec081 -2024-07-16 19:08:19.208451 2024-07-16 19:08:19.208462 plgnd 04009300X R rec 9eb0748a-d80e-41bc-97ed-528c3c37748e -2024-07-16 19:08:19.305057 2024-07-16 19:08:19.305067 plgnd 040055744 R rec 0f66c209-0e1d-422e-8731-b1c89c456f9f -2024-07-16 19:08:19.375385 2024-07-16 19:08:19.375391 plgnd 040024024 R rec 18b2e46c-9d8b-4739-b290-7b2f6e2c1e54 -2024-07-16 19:08:19.434073 2024-07-16 19:08:19.434089 plgnd 030141605 R rec 060e7b2e-808e-4e2d-9e81-e2a85dadf4a0 -2024-07-16 19:08:19.517069 2024-07-16 19:08:19.517084 plgnd 030125898 R rec a7b06d01-812a-4d11-96b3-5b1c01db2787 -2024-07-16 19:08:19.608984 2024-07-16 19:08:19.608995 plgnd 030089050 R rec a1fa5c71-5473-422d-9d7b-481f84a1df2d -2024-07-16 19:08:19.692605 2024-07-16 19:08:19.692615 plgnd 007749023 R rec 59eff571-17aa-4526-ba6c-da6ce797ea32 -2024-07-16 19:08:19.781598 2024-07-16 19:08:19.781613 plgnd 004280768 R rec 5fdafdd2-0dff-4d3e-8c16-3d5938113133 -2024-07-16 19:08:19.873979 2024-07-16 19:08:19.87399 plgnd 004205731 R rec 8022f49c-5f5b-4681-a6ac-7a35bad6cade -2024-07-16 19:08:19.965029 2024-07-16 19:08:19.965046 plgnd 002631628 R rec f46528b9-3db7-4d4b-9363-1d8292e3bbfa -2024-07-16 19:08:20.061055 2024-07-16 19:08:20.061073 plgnd 001101536 R rec 5f605727-732d-4cdf-9e94-3688bbb61171 -2024-07-16 19:08:20.155987 2024-07-16 19:08:20.156004 plgnd 000347078 R rec 4f892ab2-770b-4727-9a63-f9cf53b00e29 -2024-07-16 20:06:36.778714 2024-07-16 20:06:36.778725 plgnd 040496392 R rec 1928f915-9cb6-4669-9aad-d3c913804bd8 -2024-07-16 20:06:37.16222 2024-07-16 20:06:37.162241 plgnd 040220478 R rec 3775ce1e-1acf-490e-9894-4a1148bc3716 -2024-07-16 20:06:37.475359 2024-07-16 20:06:37.475387 plgnd 040794857 R rec 29e2f4a8-f932-4dd4-9cb4-5e8323abff37 -2024-07-16 20:06:37.799168 2024-07-16 20:06:37.79919 plgnd 040792048 R rec 180fb1c4-f9f1-4119-9022-92268fa54d8d -2024-07-16 20:06:38.140908 2024-07-16 20:06:38.14094 plgnd 040099377 R rec ecdba4d3-b083-4dd7-93d9-3ab32bdebe80 -2024-07-16 20:06:38.482486 2024-07-16 20:06:38.482507 plgnd 040023869 R rec 17bc9544-e4b8-4704-a04c-00954dfcdfb2 -2024-07-16 20:06:38.888799 2024-07-16 20:06:38.888815 plgnd 040792153 R rec 1e0c18a7-7ef6-4e9b-bfae-fcb4ea0a21c4 -2024-07-16 20:06:39.223796 2024-07-16 20:06:39.223821 plgnd 040772586 R rec cdad6617-e423-4a2f-8d0f-0f0631577c07 -2024-07-16 20:06:39.54 2024-07-16 20:06:39.540014 plgnd 040006956 R rec ef1d8da0-f310-40ae-8a00-841a7bd03587 -2024-07-16 20:06:39.906853 2024-07-16 20:06:39.906882 plgnd 041152077 R rec 07662aca-17d3-44d3-a92f-b2878c2065fe -2024-07-16 20:06:40.239031 2024-07-16 20:06:40.23906 plgnd 040065146 R rec 3cbc06ee-d0a2-4a17-9534-60324236a6eb -2024-07-16 20:06:40.567501 2024-07-16 20:06:40.567539 plgnd 041075102 R rec d5f5dacc-da71-4812-a723-d57facfe65ff -2024-07-16 20:06:40.884994 2024-07-16 20:06:40.885027 plgnd 040792374 R rec 453c4d1f-2a2c-447f-91ab-ff07e4fd4059 -2024-07-16 20:06:41.210484 2024-07-16 20:06:41.210524 plgnd 040054063 R rec ec1ad2ff-2fa9-46a4-a943-11d11ddbec02 -2024-07-16 20:06:41.544513 2024-07-16 20:06:41.54454 plgnd 040284956 R rec 585f5371-a3e8-4d70-a717-3690a88871e0 -2024-07-16 20:06:41.875419 2024-07-16 20:06:41.87543 plgnd 041196058 R rec f924f4e6-f5d1-4a18-a1e3-23ea566cd24f -2024-07-16 20:06:42.210974 2024-07-16 20:06:42.211 plgnd 040658236 R rec ca2b7df6-613c-4a91-86a6-8aa149f634f2 -2024-07-16 20:06:42.532761 2024-07-16 20:06:42.532784 plgnd 040446603 R rec 1a125cef-d5e1-41b9-8a13-2afb8d069fa2 -2024-07-16 20:06:42.823715 2024-07-16 20:06:42.823719 plgnd 040000222 R rec a67677fe-b202-46a5-b366-8aeae9cfbf93 -2024-07-16 20:06:43.113473 2024-07-16 20:06:43.113498 plgnd 040518507 R rec 5c3a5791-e092-4960-b29d-89a080afed57 -2024-07-16 20:06:43.434823 2024-07-16 20:06:43.43485 plgnd 040400565 R rec 771f203b-cc80-49b2-83ce-cdadfbd80f40 -2024-07-16 20:06:43.751172 2024-07-16 20:06:43.751208 plgnd 040175812 R rec 5ca95318-ad3d-42f6-b466-d9a8fc3c376b -2024-07-16 20:06:44.077463 2024-07-16 20:06:44.0775 plgnd 040218813 R rec b74330b2-714c-4a26-bda4-2bbbb1ecefe1 -2024-07-16 20:06:44.394631 2024-07-16 20:06:44.394665 plgnd 040147703 R rec e1402819-e558-42a2-b79d-50ab718de46f -2024-07-16 20:06:44.720141 2024-07-16 20:06:44.720351 plgnd 040789829 R rec eaa38e9e-31e2-4b17-be69-0acc2fb7aea2 -2024-07-16 20:06:45.034341 2024-07-16 20:06:45.034346 plgnd 040785416 R rec 6a60e923-bb1d-4d4b-9a2c-4cc7dbd5a637 -2024-07-16 20:06:45.307413 2024-07-16 20:06:45.307434 plgnd 040772756 R rec 0acb00fa-ec28-416b-b922-ac7985c3e4c9 -2024-07-16 20:06:45.715958 2024-07-16 20:06:45.71598 plgnd 040390586 R rec bbca63f9-2f39-4c99-bdad-068128c3efe8 -2024-07-16 20:06:46.020584 2024-07-16 20:06:46.020589 plgnd 042750067 R rec ff3248d4-893d-473a-9823-c3d544ee713d -2024-07-16 20:06:46.290876 2024-07-16 20:06:46.290902 plgnd 040149544 R rec 8b3c63a3-5892-447e-bd0f-1ed628a75953 -2024-07-16 20:06:46.5831 2024-07-16 20:06:46.583137 plgnd 042499909 R rec 575a5e85-6017-4926-ab1e-c58c10afb87d -2024-07-16 20:06:46.882728 2024-07-16 20:06:46.882745 plgnd 040000079 R rec c10568c8-004e-41cc-a01b-a11ec159d3db -2024-07-16 20:06:47.166747 2024-07-16 20:06:47.166759 plgnd 040756130 R rec 321667c2-4609-438c-b03c-4eb0f97f42ee -2024-07-16 20:06:47.492789 2024-07-16 20:06:47.492819 plgnd 040443817 R rec 10257843-7c9c-4ca5-9eca-d941f26fdb5e -2024-07-16 20:06:47.787388 2024-07-16 20:06:47.787423 plgnd 040744256 R rec daa6735d-9aef-4fb6-8bf7-01fbcc8eafec -2024-07-16 20:06:48.086698 2024-07-16 20:06:48.086712 plgnd 040749002 R rec 7710ca55-fbdf-4bb5-a69e-fdc4a8fcf555 -2024-07-16 20:06:48.44264 2024-07-16 20:06:48.442671 plgnd 00468687X R rec 8b97e1d7-5eab-4843-b25a-6e0b7dcca375 -2024-07-16 20:06:48.763905 2024-07-16 20:06:48.763942 plgnd 040940888 R rec 6995f5b0-6bc5-4be5-8fab-be39e732e4b3 -2024-07-16 20:06:49.107376 2024-07-16 20:06:49.107409 plgnd 040011798 R rec 6da6f891-44ea-47a1-a7b1-c95140103b7e -2024-07-16 20:06:49.403421 2024-07-16 20:06:49.403433 plgnd 040559645 R rec d9be1dd3-6cd9-47a2-8949-bc6421e9585f -2024-07-16 20:06:49.717966 2024-07-16 20:06:49.718 plgnd 041355350 R rec 5b97590e-538e-4427-b350-2e2f24c1ae7c -2024-07-16 20:06:50.019448 2024-07-16 20:06:50.019474 plgnd 040424820 R rec 772140b2-b78b-4497-8f5e-8b5c3ed79ac2 -2024-07-16 20:06:50.674393 2024-07-16 20:06:50.674414 plgnd 040932087 R rec c1a4630c-0cb0-430b-ae6e-47cbecc6700a -2024-07-16 20:06:50.969056 2024-07-16 20:06:50.96907 plgnd 040786528 R rec 1ca5c79e-36c8-4299-9af4-1bb277c86b9a -2024-07-16 20:06:51.259111 2024-07-16 20:06:51.25912 plgnd 040584488 R rec 9ce76635-aa41-44d1-b3b9-35bb9cf9ae61 -2024-07-16 20:06:51.540487 2024-07-16 20:06:51.54051 plgnd 040276678 R rec 6440bbf0-235a-4b5a-8b0e-cb0f7945abe6 -2024-07-16 20:06:51.854133 2024-07-16 20:06:51.854165 plgnd 040859312 R rec 2d01cd11-2623-4db7-ba06-8255a61d34fa -2024-07-16 20:06:52.162572 2024-07-16 20:06:52.162594 plgnd 040401499 R rec 4c24f01c-1128-4d81-93b0-65d84e1ea370 -2024-07-16 20:06:52.504834 2024-07-16 20:06:52.50487 plgnd 040013286 R rec ff511a6f-d1fc-4142-9523-7a9c5de90754 -2024-07-16 20:06:52.850242 2024-07-16 20:06:52.850273 plgnd 040475646 R rec d9f6cd0a-4ca3-44eb-9e95-84800da25915 -2024-07-16 20:06:53.164045 2024-07-16 20:06:53.164077 plgnd 040181456 R rec dc060e9f-0782-4e8e-8988-006c04e054ab -2024-07-16 20:06:53.450217 2024-07-16 20:06:53.450224 plgnd 040046206 R rec 6dc7af7d-236d-42b6-b5f4-ae3307a7db17 -2024-07-16 20:06:53.7317 2024-07-16 20:06:53.731708 plgnd 946153248 R rec 125f15bd-aee0-49e6-930e-647dec30be6f -2024-07-16 20:06:54.082865 2024-07-16 20:06:54.082891 plgnd 040690997 R rec 27f0b1b6-e947-4015-bb19-b9a023d89d82 -2024-07-16 20:06:54.386014 2024-07-16 20:06:54.386046 plgnd 040092569 R rec e979e90d-f92b-4018-b3af-a2922017546a -2024-07-16 20:06:54.698284 2024-07-16 20:06:54.698307 plgnd 040538818 R rec 5bbb660e-019f-4cde-9f14-1fb35ec47851 -2024-07-16 20:06:55.024004 2024-07-16 20:06:55.024019 plgnd 040552098 R rec af8b07c9-f502-4321-a3af-4f9859e888e9 -2024-07-16 20:06:55.448666 2024-07-16 20:06:55.448689 plgnd 040442578 R rec 3e8d1bb0-727b-4462-a994-3d54b1ed9301 -2024-07-16 20:06:55.74866 2024-07-16 20:06:55.748681 plgnd 041170008 R rec f4afa45c-c31b-401e-ab09-44fe3c9461f8 -2024-07-16 20:06:56.083707 2024-07-16 20:06:56.083737 plgnd 040300900 R rec 37901c27-423e-4e4e-bba5-bba5a6df226d -2024-07-16 20:06:56.410401 2024-07-16 20:06:56.41043 plgnd 041940458 R rec 645bbfee-d94b-4ef2-bd35-4820cbc25e20 -2024-07-16 20:06:56.723198 2024-07-16 20:06:56.723227 plgnd 04037680X R rec feaaf40d-436c-4eb5-b546-1baadedd9358 -2024-07-16 20:06:57.031032 2024-07-16 20:06:57.03105 plgnd 04051658X R rec 7049aec3-1e4a-4954-97f1-3e761f3f5a2d -2024-07-16 20:06:57.317542 2024-07-16 20:06:57.317573 plgnd 04068878X R rec c826a1f5-d65d-49b8-8682-578dd9186107 -2024-07-16 20:06:57.611252 2024-07-16 20:06:57.611262 plgnd 043187048 R rec b453c247-5347-4fdf-be3a-15d9f40345e5 -2024-07-16 20:06:58.017416 2024-07-16 20:06:58.01744 plgnd 993248810 R rec 59a972c1-2876-47d4-b0db-ad82e72c345a -2024-07-16 20:06:58.329928 2024-07-16 20:06:58.329959 plgnd 04022113X R rec 50da11ab-e47e-4b85-a127-ae965c202bb2 -2024-07-16 20:06:58.640095 2024-07-16 20:06:58.640109 plgnd 040144267 R rec 10ca4222-d574-49ab-9ea3-55f51185d3e1 -2024-07-16 20:06:58.922825 2024-07-16 20:06:58.922842 plgnd 955884152 R rec 46793679-9291-4c35-9a48-5686e1a0ec56 -2024-07-16 20:06:59.227302 2024-07-16 20:06:59.227336 plgnd 040551938 R rec 02b8d4b8-ee85-426a-908d-74df0ae4d110 -2024-07-16 20:06:59.537867 2024-07-16 20:06:59.537895 plgnd 04078228X R rec 02e020e3-9e7b-42b4-9084-00aab31405b1 -2024-07-16 20:06:59.823999 2024-07-16 20:06:59.824011 plgnd 040912000 R rec 4b57625a-57de-4ea8-9158-92cbdc382690 -2024-07-16 20:07:00.266958 2024-07-16 20:07:00.26699 plgnd 040802752 R rec 603dd1ab-db88-4f15-b861-f0ab5817b34b -2024-07-16 20:07:00.882775 2024-07-16 20:07:00.882786 plgnd 040181413 R rec 4494355f-ab58-4d40-96f4-a211d4bb80da -2024-07-16 20:07:01.207106 2024-07-16 20:07:01.207127 plgnd 040714039 R rec 5696b314-99e0-4b07-bcd8-6276abc3837c -2024-07-16 20:07:01.54879 2024-07-16 20:07:01.548818 plgnd 040587940 R rec 2a8cca1e-950f-4a13-8f9f-84f56b2c3509 -2024-07-16 20:07:01.8416 2024-07-16 20:07:01.841606 plgnd 041037766 R rec 27c7f759-24f4-4a6d-843b-4b1094ebce67 -2024-07-16 20:07:02.430415 2024-07-16 20:07:02.430446 plgnd 04045312X R rec 3869d93e-47c8-4a05-af18-0c66d2d3d688 -2024-07-16 20:07:02.757778 2024-07-16 20:07:02.757797 plgnd 040422038 R rec 4ef2626e-9a33-4700-aaf0-d6227df71df5 -2024-07-16 20:07:03.063676 2024-07-16 20:07:03.063705 plgnd 040032175 R rec 066c0326-db99-4563-966a-cf6d3ffb0e43 -2024-07-16 20:07:03.378151 2024-07-16 20:07:03.378176 plgnd 040754715 R rec 60ad1706-485f-4b08-bf68-7136910e16a8 -2024-07-16 20:07:03.696075 2024-07-16 20:07:03.696101 plgnd 04033340X R rec 76f12bbe-1037-4924-aa74-5b302ed9acd9 -2024-07-16 20:07:04.009897 2024-07-16 20:07:04.009906 plgnd 040547809 R rec f62a8587-8860-49f6-bd05-6798ee151b8c -2024-07-16 20:07:04.30425 2024-07-16 20:07:04.304261 plgnd 04037100X R rec 288a4e2a-5564-4e76-858c-a8e9d4a21b44 -2024-07-16 20:07:04.662227 2024-07-16 20:07:04.66226 plgnd 04051594X R rec a71e1bb2-31f4-4c5c-94f4-2fe7bb820cd1 -2024-07-16 20:07:05.252375 2024-07-16 20:07:05.252398 plgnd 952816407 R rec d309d794-fb8c-46c7-87b4-a2b93895bb9a -2024-07-16 20:07:05.572538 2024-07-16 20:07:05.572551 plgnd 040016269 R rec c62c043a-6ccb-469f-be46-13c809d2609a -2024-07-16 20:07:05.849011 2024-07-16 20:07:05.849035 plgnd 040201392 R rec 9624e7b6-2c72-4e77-a5d7-46aa6baf8fe5 -2024-07-16 20:07:06.314767 2024-07-16 20:07:06.314797 plgnd 040780295 R rec d77c95c4-1d43-4add-942c-cfc092d8d749 -2024-07-16 20:07:06.62353 2024-07-16 20:07:06.623572 plgnd 040687899 R rec 70a97b78-8c47-4d75-80ec-102487c5e066 -2024-07-16 20:07:06.935013 2024-07-16 20:07:06.935046 plgnd 040424839 R rec 050b372d-d077-4963-84eb-cd49ed73007e -2024-07-16 20:07:07.232101 2024-07-16 20:07:07.232124 plgnd 040644669 R rec 59ba87db-9c59-48cb-be15-353ebdcbf79a -2024-07-16 20:07:07.546619 2024-07-16 20:07:07.54665 plgnd 040379922 R rec 9d093795-816d-4ea5-947e-008cbf952b46 -2024-07-16 20:07:07.87186 2024-07-16 20:07:07.871892 plgnd 040432718 R rec 41be12f5-d138-4c88-afc7-e1403ec0882c -2024-07-16 20:07:08.194808 2024-07-16 20:07:08.194824 plgnd 04079203X R rec 1ca2f2a8-d7b6-4597-b13a-a77de28c616b -2024-07-16 20:07:08.450823 2024-07-16 20:07:08.450857 plgnd 040757390 R rec 814e2f8f-cef3-43cb-b89a-a92d878c032c -2024-07-16 20:07:08.782147 2024-07-16 20:07:08.782165 plgnd 000339784 R rec 832e288d-9ef0-4b8b-85c8-e2cdabe14c50 -2024-07-16 20:07:09.097393 2024-07-16 20:07:09.097423 plgnd 040780120 R rec 939737e8-21c3-4220-a19f-1ff21d1e670e -2024-07-16 20:07:09.408994 2024-07-16 20:07:09.409016 plgnd 040118908 R rec d8345dd0-3cb0-44c4-ad65-f71235e9988a -2024-07-16 20:07:09.963429 2024-07-16 20:07:09.963467 plgnd 040201384 R rec df8a988c-9d4c-407e-89cd-cac5ccbd542e -2024-07-16 20:07:10.268667 2024-07-16 20:07:10.268681 plgnd 040471942 R rec 4caf12e8-7e47-4c9a-93f8-53104a0243f6 -2024-07-16 20:07:10.550647 2024-07-16 20:07:10.550674 plgnd 04014500X R rec 9a9a1f02-af1d-47ec-a4b4-b0369d8fc47d -2024-07-16 20:07:10.882199 2024-07-16 20:07:10.882217 plgnd 964991500 R rec fecc956e-aa69-4d4e-8586-31a2acea8138 -2024-07-16 20:07:11.223625 2024-07-16 20:07:11.223639 plgnd 040181847 R rec 2834cb62-976d-4b13-b3d7-46c9f81c3aaa -2024-07-16 20:07:11.525707 2024-07-16 20:07:11.525734 plgnd 040022935 R rec 75065f9c-055b-4ef9-a9bb-c1b56d57e68c -2024-07-16 20:07:11.861592 2024-07-16 20:07:11.861627 plgnd 040731723 R rec 8e731b7d-45e0-4606-9f01-87c501b92f71 -2024-07-16 20:07:12.215578 2024-07-16 20:07:12.215604 plgnd 040754685 R rec b54ef0ea-834b-49e0-8a0d-ab9945ceef46 -2024-07-16 20:07:12.567352 2024-07-16 20:07:12.567385 plgnd 040076075 R rec 13d25ab8-2694-40d7-9644-6eb79368df88 -2024-07-16 20:07:12.880506 2024-07-16 20:07:12.880536 plgnd 040753034 R rec 58775d77-ac49-4993-b513-2721f1776a38 -2024-07-16 20:07:13.189736 2024-07-16 20:07:13.189756 plgnd 04075720X R rec 489a76da-2723-4e83-9c22-5806ae0ed47c -2024-07-16 20:07:13.4855 2024-07-16 20:07:13.485506 plgnd 040611639 R rec f2433715-bed9-4936-8533-6ba350caaa98 -2024-07-16 20:07:13.758646 2024-07-16 20:07:13.758671 plgnd 040554589 R rec 3b098bc9-c300-41ee-a2d9-71ef39206606 -2024-07-16 20:07:14.074066 2024-07-16 20:07:14.074092 plgnd 04041745X R rec 4ffe663a-fe47-4f42-a840-0f32e5163801 -2024-07-16 20:07:14.384804 2024-07-16 20:07:14.384833 plgnd 040302369 R rec 8e0bb27d-054d-4fb3-b3db-4344a8c426a3 -2024-07-16 20:07:14.696516 2024-07-16 20:07:14.696547 plgnd 040318125 R rec a41d9b31-4edd-4b8d-ba72-02ba71a0d678 -2024-07-16 20:07:15.01552 2024-07-16 20:07:15.015545 plgnd 040624048 R rec bbeb41bf-1d03-4861-9eb9-11e52ef8341a -2024-07-16 20:07:15.323721 2024-07-16 20:07:15.323738 plgnd 040396770 R rec 7249c788-b725-4284-b72f-378913095601 -2024-07-16 20:07:15.618365 2024-07-16 20:07:15.618372 plgnd 040099296 R rec b8e0431d-73ed-4556-9a59-08758b49fcf5 -2024-07-16 20:07:15.960755 2024-07-16 20:07:15.960779 plgnd 040050440 R rec d2a25ebf-65f6-4b99-8ad7-83cd9800de8d -2024-07-16 20:07:16.27027 2024-07-16 20:07:16.270309 plgnd 040774678 R rec a0c8eaed-85fc-486d-a9cb-fa9b89c63a4b -2024-07-16 20:07:16.914313 2024-07-16 20:07:16.914331 plgnd 040278395 R rec ebde3225-99e9-434e-a342-c9a9fa2fc42c -2024-07-16 20:07:17.28739 2024-07-16 20:07:17.287408 plgnd 04068041X R rec a9f16b28-91af-4c23-bb6e-4ec00b2d96b7 -2024-07-16 20:07:17.58379 2024-07-16 20:07:17.583809 plgnd 040740323 R rec f2eae65b-5280-4f54-b54f-6324f67407a4 -2024-07-16 20:07:17.884021 2024-07-16 20:07:17.884048 plgnd 040367282 R rec 61a0e71a-8974-4cd4-9f72-12a78582fe27 -2024-07-16 20:07:18.705622 2024-07-16 20:07:18.705635 plgnd 04003366X R rec 646d2f60-34c7-4f96-8f1d-fd458474e603 -2024-07-16 20:07:18.989607 2024-07-16 20:07:18.989626 plgnd 040769100 R rec bf46d994-754f-4d08-8dba-3083a3ac3de7 -2024-07-16 20:07:19.29877 2024-07-16 20:07:19.298805 plgnd 040763102 R rec aeda72ad-b865-445d-a848-27b00075583c -2024-07-16 20:07:19.588656 2024-07-16 20:07:19.58868 plgnd 040039005 R rec 0c0fc1c8-fa36-4ad6-af0d-18dca2a3a1f3 -2024-07-16 20:07:19.979292 2024-07-16 20:07:19.979321 plgnd 952907682 R rec 66484e38-2451-456d-8852-0cb64952e578 -2024-07-16 20:07:20.2963 2024-07-16 20:07:20.296337 plgnd 040703525 R rec 2467e69e-9e72-4226-a249-3723e0614233 -2024-07-16 20:07:20.6242 2024-07-16 20:07:20.624214 plgnd 040612066 R rec 531cfd33-07cb-47c6-b44f-e37845bb40a4 -2024-07-16 20:07:20.893149 2024-07-16 20:07:20.893155 plgnd 040277542 R rec 8668d6db-a38e-4b7c-a8cd-2a7f92e4f822 -2024-07-16 20:07:21.172013 2024-07-16 20:07:21.172045 plgnd 968963935 R rec e84283c4-eeb7-4d6f-8aa4-d7d52ff3fba9 -2024-07-16 20:07:21.470704 2024-07-16 20:07:21.470722 plgnd 040287505 R rec abc339e3-5d5a-4081-8449-a4d802a3b188 -2024-07-16 20:07:21.771808 2024-07-16 20:07:21.771853 plgnd 040995623 R rec c531780e-2686-4e53-ae7f-ed817c8d4d91 -2024-07-16 20:07:22.088926 2024-07-16 20:07:22.08896 plgnd 040201376 R rec 7d9ce8df-369d-492a-9863-91a65c654356 -2024-07-16 20:07:22.417292 2024-07-16 20:07:22.417304 plgnd 040294137 R rec 2941963e-caa7-46f9-b209-f1fede879ee3 -2024-07-16 20:07:22.709803 2024-07-16 20:07:22.709836 plgnd 041192389 R rec d416c7aa-6e5b-4d7d-9d56-2f0a60c7949b -2024-07-16 20:07:23.031937 2024-07-16 20:07:23.031943 plgnd 040057623 R rec a638ec3d-721e-4605-a4dc-01ff080d00d9 -2024-07-16 20:07:23.310144 2024-07-16 20:07:23.310166 plgnd 040464962 R rec 9f263e7f-bdab-427d-9167-b66663d81238 -2024-07-16 20:07:23.632564 2024-07-16 20:07:23.632596 plgnd 954696867 R rec 7b5e9011-88b8-4bc2-83b2-b91d02778d22 -2024-07-16 20:07:24.978227 2024-07-16 20:07:24.978254 plgnd 04032527X R rec 39cb61e9-58a8-4b4e-bff4-3b2950e46904 -2024-07-16 20:07:25.305711 2024-07-16 20:07:25.305741 plgnd 040467554 R rec 191a4738-a922-4e95-bc30-2d885880465e -2024-07-16 20:07:25.636827 2024-07-16 20:07:25.636854 plgnd 040680649 R rec d200a9e8-56ce-49a9-a1e0-5c5c021e1e29 -2024-07-16 20:07:25.96683 2024-07-16 20:07:25.966861 plgnd 041179145 R rec c5d3e13f-f54a-4c76-83e4-d87dd643a702 -2024-07-16 20:07:26.266233 2024-07-16 20:07:26.266243 plgnd 040367339 R rec 825cef54-53ce-4f09-be58-493380db2c2d -2024-07-16 20:07:26.88646 2024-07-16 20:07:26.886492 plgnd 040019098 R rec 2592d6c1-552d-4d87-b62d-6e4e592ac1b2 -2024-07-16 20:07:27.193205 2024-07-16 20:07:27.193218 plgnd 941147797 R rec 66a75508-0dce-4acd-afd0-ca81ab0470c9 -2024-07-16 20:07:27.46143 2024-07-16 20:07:27.461448 plgnd 040057658 R rec 876b7175-9106-4145-94a0-8ac4e738af13 -2024-07-16 20:07:27.761283 2024-07-16 20:07:27.761312 plgnd 040932052 R rec d8d3b6ef-b9e5-4d7b-8ea3-6fc4278ef4db -2024-07-16 20:07:28.116699 2024-07-16 20:07:28.116725 plgnd 040387887 R rec 290244f4-691e-45e0-a4c5-5878439c5819 -2024-07-16 20:07:28.479411 2024-07-16 20:07:28.479436 plgnd 949642762 R rec e5cc78d9-841f-4f3c-9e5b-af0332484988 -2024-07-16 20:07:28.807666 2024-07-16 20:07:28.807691 plgnd 040794873 R rec a2dd90b8-a52a-4d68-813a-65fceb0c80c1 -2024-07-16 20:07:29.114294 2024-07-16 20:07:29.114321 plgnd 040713326 R rec 7cb4d3b8-cba2-41cb-9224-272ede4204d0 -2024-07-16 20:07:29.545488 2024-07-16 20:07:29.545509 plgnd 041186672 R rec f65d34c0-d1bc-4620-aecb-ca2c44656d48 -2024-07-16 20:07:29.867562 2024-07-16 20:07:29.867586 plgnd 040419150 R rec 792ca86a-46f1-4f36-ad44-0fcd1ca32463 -2024-07-16 20:07:30.513112 2024-07-16 20:07:30.513121 plgnd 040721000 R rec df3882df-2a28-48e6-b1d4-665b7472430e -2024-07-16 20:07:30.802868 2024-07-16 20:07:30.802897 plgnd 041051513 R rec 1ecab22e-541b-4790-bf20-09c0cc9bdccd -2024-07-16 20:07:31.117342 2024-07-16 20:07:31.117354 plgnd 944449360 R rec c034a3e3-58e1-4a4a-92c0-d9ad7bcf5e15 -2024-07-16 20:07:31.42479 2024-07-16 20:07:31.424808 plgnd 040743357 R rec 9eea9ba6-8045-422b-a28c-332749b6ca15 -2024-07-16 20:07:31.70289 2024-07-16 20:07:31.70291 plgnd 040201449 R rec 7bc01af9-d509-4597-8dc7-a647c3b2c50f -2024-07-16 20:07:32.026185 2024-07-16 20:07:32.026211 plgnd 040293076 R rec 9cb1bf2e-7d40-4022-b172-d2d81f0546d3 -2024-07-16 20:07:32.339236 2024-07-16 20:07:32.339265 plgnd 040022080 R rec a954f015-d68f-4cca-8a40-c5a35606a6a1 -2024-07-16 20:07:32.636902 2024-07-16 20:07:32.636915 plgnd 040504719 R rec 24aff614-c86c-4310-a1ba-4a0c06a1d23a -2024-07-16 20:07:33.259759 2024-07-16 20:07:33.259786 plgnd 040289664 R rec 6e950296-adf3-4e35-b104-11b7f7481636 -2024-07-16 20:07:33.561415 2024-07-16 20:07:33.561429 plgnd 1077172354 R rec a6bd0410-b784-4d58-9d7b-bf7128184ce5 -2024-07-16 20:07:33.835088 2024-07-16 20:07:33.835113 plgnd 040294560 R rec 27abcf8c-6eb3-4d20-b2c0-db466406c7f3 -2024-07-16 20:07:34.161439 2024-07-16 20:07:34.161471 plgnd 040010287 R rec d329016d-df96-4f35-8830-cff5b31ea25c -2024-07-16 20:07:34.480992 2024-07-16 20:07:34.48102 plgnd 040519937 R rec 0a62da65-25ab-41c2-a0fd-61418c28ecbc -2024-07-16 20:07:34.834348 2024-07-16 20:07:34.834366 plgnd 040714446 R rec b2178e95-4a1c-401a-a3fb-133ec2329fd5 -2024-07-16 20:07:35.118657 2024-07-16 20:07:35.118696 plgnd 040290433 R rec 3daf5394-e6c5-4ecc-9651-e0bb55509fdc -2024-07-16 20:07:35.441876 2024-07-16 20:07:35.441904 plgnd 04040417X R rec 87725658-5636-47b7-91a4-d772fbdba56c -2024-07-16 20:07:35.727691 2024-07-16 20:07:35.727696 plgnd 041294688 R rec f6e56b1a-0e9e-4955-b241-d45ea4f97ddc -2024-07-16 20:07:36.006016 2024-07-16 20:07:36.006044 plgnd 040540197 R rec 76a6a5a1-ceab-45d6-9f16-51747cac7684 -2024-07-16 20:07:36.331308 2024-07-16 20:07:36.331337 plgnd 040749878 R rec 19b8f10c-8a51-4a53-a43a-f5eb606d6e45 -2024-07-16 20:07:36.622477 2024-07-16 20:07:36.622505 plgnd 96475455X R rec 1611920f-1aba-4c64-b7bd-87c34e74cfd8 -2024-07-16 20:07:36.96172 2024-07-16 20:07:36.961751 plgnd 040118894 R rec 8e6b4eac-bbb5-47fc-b6f5-548024b7cebb -2024-07-16 20:07:37.285789 2024-07-16 20:07:37.285818 plgnd 040480305 R rec 1287579e-4277-4f28-aca5-bc18d162bb63 -2024-07-16 20:07:37.594619 2024-07-16 20:07:37.594639 plgnd 040046176 R rec fb676974-dc9f-45a4-afc8-6228bca97a97 -2024-07-16 20:07:37.985193 2024-07-16 20:07:37.985234 plgnd 040757277 R rec 2bbcd0ec-6a7d-4ef2-ac51-54d591c73295 -2024-07-16 20:07:38.372537 2024-07-16 20:07:38.372563 plgnd 040717003 R rec 9cac9877-b287-43e9-8401-1916017ce263 -2024-07-16 20:07:38.986827 2024-07-16 20:07:38.986841 plgnd 04008003X R rec 5e030694-be39-4fce-8bb3-839f37adcc16 -2024-07-16 20:07:39.28842 2024-07-16 20:07:39.288448 plgnd 040157016 R rec 19f14a3b-29a1-449c-99b5-e83d5eafc071 -2024-07-16 20:07:39.596654 2024-07-16 20:07:39.596677 plgnd 040703703 R rec f8034dec-e02e-4aad-ba04-1f0a4e4b43ff -2024-07-16 20:07:39.910832 2024-07-16 20:07:39.910846 plgnd 040509397 R rec f63fa269-fd81-49d5-9576-48c2c3beb0d1 -2024-07-16 20:07:40.188563 2024-07-16 20:07:40.188593 plgnd 004911474 R rec c7895e6a-6900-40f3-9e0d-835151300d25 -2024-07-16 20:07:40.506004 2024-07-16 20:07:40.50603 plgnd 040794865 R rec 9153d78e-043d-4a87-9708-2269adbf1e6b -2024-07-16 20:07:40.825107 2024-07-16 20:07:40.825134 plgnd 947297987 R rec fa3476ea-70ea-46b6-8165-8ae55bba7bb0 -2024-07-16 20:07:41.138704 2024-07-16 20:07:41.138731 plgnd 040417476 R rec 9603780e-3c09-46dc-82ec-4c76a8cfc52f -2024-07-16 20:07:41.441771 2024-07-16 20:07:41.4418 plgnd 040738418 R rec a7ea2f19-4830-41e3-b931-98a5ce60e0ba -2024-07-16 20:07:41.741702 2024-07-16 20:07:41.741726 plgnd 040804003 R rec 16229022-b6bc-408d-9cac-bd42bb617143 -2024-07-16 20:07:42.062541 2024-07-16 20:07:42.062549 plgnd 040774244 R rec 8f6c8ed5-bac5-4071-b634-b90d8d7602de -2024-07-16 20:07:42.317479 2024-07-16 20:07:42.317514 plgnd 041048989 R rec 21ce8daf-bc46-4ffc-9c46-e3f88e0d7730 +2024-09-11 09:11:45.750839 2024-09-11 09:11:45.750844 plgnd 1335257845 R rec 7d54e290-458f-4e6a-a641-46b953ffd177 +2024-09-11 09:11:45.826403 2024-09-11 09:11:45.826408 plgnd 1335257101 R rec 11bd7db9-8d0f-40a4-879a-a3bbb866e81a +2024-09-11 09:11:45.885323 2024-09-11 09:11:45.885328 plgnd 133525675X R rec 296c1f82-725e-4f2d-ad04-a0d7a2407c44 +2024-09-11 09:11:45.930267 2024-09-11 09:11:45.930272 plgnd 133525207X R rec 9adf3aef-0e25-4de4-b2c2-4717face0d2a +2024-09-11 09:11:45.976381 2024-09-11 09:11:45.976387 plgnd 1335249966 R rec e3bf515f-c5be-42f3-a3bd-7d433c336917 +2024-09-11 09:11:46.022921 2024-09-11 09:11:46.022926 plgnd 1335243240 R rec fb1d900e-ed2f-4d5f-b0c7-b44e9cca8c7d +2024-09-11 09:11:46.075006 2024-09-11 09:11:46.075011 plgnd 133523909X R rec bb2d2de1-45e2-467c-b01f-ab1f80ea85db +2024-09-11 09:11:46.155696 2024-09-11 09:11:46.155701 plgnd 1335217711 R rec 1c4953d1-1c93-406b-965f-5a7cf045fcaf +2024-09-11 09:11:46.215313 2024-09-11 09:11:46.215317 plgnd 1335201653 R rec 38dec73f-69bf-41b8-bcdf-4086080808db +2024-09-11 09:11:46.278913 2024-09-11 09:11:46.278923 plgnd 1335141790 R rec e1657297-2649-4e82-920e-2d7f29b8cd50 +2024-09-11 09:11:46.356684 2024-09-11 09:11:46.356695 plgnd 1335107711 R rec 70cdd82a-331a-4523-93f6-95db302a21fe +2024-09-11 09:11:46.42782 2024-09-11 09:11:46.427829 plgnd 1335104917 R rec 7f3ef1b6-2f8c-4904-a257-26243ec89491 +2024-09-11 09:11:46.497866 2024-09-11 09:11:46.497871 plgnd 1335098399 R rec da809432-614f-45b6-b88d-90f488c8a1a7 +2024-09-11 09:11:46.560297 2024-09-11 09:11:46.560313 plgnd 1335092390 R rec 6514a894-2137-41c5-b433-5f6505ad0495 +2024-09-11 09:11:46.63239 2024-09-11 09:11:46.632398 plgnd 1335092196 R rec a1fb3e6c-d9da-47a5-b5e2-fd17f02c5fa2 +2024-09-11 09:11:46.69711 2024-09-11 09:11:46.697121 plgnd 1335086005 R rec e11b1739-01c6-4bb3-85f9-3a9f19fe6d41 +2024-09-11 09:11:46.764634 2024-09-11 09:11:46.764647 plgnd 1335058036 R rec a5d9bb71-264e-440f-b14a-04a03f5c42f9 +2024-09-11 09:11:46.833777 2024-09-11 09:11:46.833789 plgnd 1334938016 R rec ef237ef4-9ac2-429a-997f-f66139728549 +2024-09-11 09:11:46.89182 2024-09-11 09:11:46.891825 plgnd 1334917981 R rec 1853e1fd-7794-4349-b3dd-3f936b3b0ca0 +2024-09-11 09:11:46.94514 2024-09-11 09:11:46.94515 plgnd 1334916292 R rec d1b809ce-49ef-46c7-8a70-e9a26e4d37b8 +2024-09-11 09:11:47.017029 2024-09-11 09:11:47.017038 plgnd 1334913498 R rec 914b0074-331a-4c39-b1bd-582f1e494e3b +2024-09-11 09:11:47.083993 2024-09-11 09:11:47.083997 plgnd 1334907684 R rec 39bf357f-9b8d-4cc5-b2dc-1a8f514e02d5 +2024-09-11 09:11:47.138585 2024-09-11 09:11:47.138589 plgnd 1334907048 R rec 3cff1256-9489-4d20-862f-6e7a41385417 +2024-09-11 09:11:47.191237 2024-09-11 09:11:47.191249 plgnd 1334904251 R rec 659d583e-5c33-4c1c-9a22-0742b56ae34c +2024-09-11 09:11:47.246692 2024-09-11 09:11:47.246697 plgnd 133490281X R rec d5f489d3-444e-4246-8ae7-3d0ac893b648 +2024-09-11 09:11:47.300719 2024-09-11 09:11:47.300729 plgnd 1334900256 R rec 62dda1f1-efc8-4e8d-98cb-1726b9414b01 +2024-09-11 09:11:47.373232 2024-09-11 09:11:47.373242 plgnd 133489874X R rec 9f7734de-dac0-4778-b87e-143ba377bca2 +2024-09-11 09:11:47.430334 2024-09-11 09:11:47.430347 plgnd 1334896755 R rec 92d612f6-0477-43b5-8312-e0d8488a700c +2024-09-11 09:11:47.497986 2024-09-11 09:11:47.498 plgnd 1334893594 R rec 31ab8fb1-a2c3-4949-a646-92483b2fe15f +2024-09-11 09:11:47.561877 2024-09-11 09:11:47.561882 plgnd 133489129X R rec 83945569-0a66-4b73-aae1-273bb71d69b0 +2024-09-11 09:11:47.612847 2024-09-11 09:11:47.612858 plgnd 1334878234 R rec 0b144f1f-b755-4300-bba5-6546e42f9e48 +2024-09-11 09:11:47.665416 2024-09-11 09:11:47.665428 plgnd 1334875707 R rec b0e68b7d-ffa3-4498-9770-8060800c89fd +2024-09-11 09:11:47.718702 2024-09-11 09:11:47.718706 plgnd 1334874387 R rec 58a09521-d424-4455-8654-08b9a18c40fe +2024-09-11 09:11:47.766229 2024-09-11 09:11:47.766233 plgnd 1334867097 R rec 4cac7f37-57b1-47d4-a56c-6f4c55fb4f1b +2024-09-11 09:11:47.818826 2024-09-11 09:11:47.818836 plgnd 1334866473 R rec 871842a0-4bb5-4b76-8b33-68aacca62fc6 +2024-09-11 09:11:48.012596 2024-09-11 09:11:48.012605 plgnd 1334866082 R rec 3d1ab6c3-ac0d-4179-8b64-edb43da2951a +2024-09-11 09:11:48.104392 2024-09-11 09:11:48.104401 plgnd 1334865981 R rec 5f99baa7-9be3-4610-af86-93b1b6f07636 +2024-09-11 09:11:48.158004 2024-09-11 09:11:48.158009 plgnd 1334804621 R rec 6cf9631b-5bea-401e-af8c-13cf04e126e3 +2024-09-11 09:11:48.220696 2024-09-11 09:11:48.220708 plgnd 1334804141 R rec eea7c986-102c-4601-b2bd-1ca3c70f2b58 +2024-09-11 09:11:48.277797 2024-09-11 09:11:48.277807 plgnd 1334801304 R rec fe04c478-96d3-4441-a4b9-2a821842b2a0 +2024-09-11 09:11:48.346959 2024-09-11 09:11:48.346975 plgnd 1334789134 R rec 9cba5410-cc60-4451-aac6-5657a017a5a7 +2024-09-11 09:11:48.414147 2024-09-11 09:11:48.414152 plgnd 1334785422 R rec ab09604d-9d43-4f57-a2c4-8d97a3ecc2cd +2024-09-11 09:11:48.463497 2024-09-11 09:11:48.463503 plgnd 1334784493 R rec d648f8c9-e3aa-4339-9e8d-bfed04682a15 +2024-09-11 09:11:48.518867 2024-09-11 09:11:48.518877 plgnd 1334779015 R rec 66d14f57-1894-4857-9f19-5fab84885020 +2024-09-11 09:11:48.581041 2024-09-11 09:11:48.581046 plgnd 1334766363 R rec a2045cee-ad66-4cf2-931f-33b3affdb41b +2024-09-11 09:11:48.634897 2024-09-11 09:11:48.634903 plgnd 1334756465 R rec 20009aab-f807-42c1-8bcd-852b4a50c5df +2024-09-11 09:11:48.685862 2024-09-11 09:11:48.6859 plgnd 1334736340 R rec ca47946e-2729-4d61-8c50-43108a6cb022 +2024-09-11 09:11:48.740637 2024-09-11 09:11:48.740642 plgnd 1334729824 R rec fa05b0ce-835f-4c7d-97ab-5310ffb29d5b +2024-09-11 09:11:48.813841 2024-09-11 09:11:48.81385 plgnd 1334725756 R rec 2ea24dce-968b-4654-a242-d0db956340a8 +2024-09-11 09:11:48.879878 2024-09-11 09:11:48.879889 plgnd 1334725691 R rec 236dd001-0213-4c04-bdd2-426280d8931c +2024-09-11 09:11:48.951826 2024-09-11 09:11:48.951832 plgnd 1334671486 R rec 3cac90ef-cf10-470f-80dc-6972ef4e4de4 +2024-09-11 09:11:49.007103 2024-09-11 09:11:49.007107 plgnd 1334670560 R rec 0dab625d-96d3-4367-9c81-a15951d57045 +2024-09-11 09:11:49.069441 2024-09-11 09:11:49.06945 plgnd 1334670390 R rec c50ae982-0af5-44f2-ba94-43f34235f819 +2024-09-11 09:11:49.1346 2024-09-11 09:11:49.134605 plgnd 1334670323 R rec ac8030b4-6dc5-437c-9b29-10e337f78c05 +2024-09-11 09:11:49.182504 2024-09-11 09:11:49.182513 plgnd 1334670048 R rec 6dce0d2a-eb6d-41e0-81aa-7982e7ed2f7f +2024-09-11 09:11:49.237913 2024-09-11 09:11:49.237918 plgnd 1334666474 R rec 0a722838-0a4d-4a02-a593-0a45ba5b3a54 +2024-09-11 09:11:49.305471 2024-09-11 09:11:49.305473 plgnd 1334665036 R rec 71f7c28f-54bc-4f63-8efd-a0b8743f0799 +2024-09-11 09:11:49.413796 2024-09-11 09:11:49.413807 plgnd 1334665028 R rec a33d4810-a4d0-4ad0-9a79-e73673f34cc2 +2024-09-11 09:11:49.499123 2024-09-11 09:11:49.499129 plgnd 1334664242 R rec a83d36c7-4552-4db1-a8bc-c33f9d9c6e06 +2024-09-11 09:11:49.56114 2024-09-11 09:11:49.561145 plgnd 1334661073 R rec 9b0537d2-86a4-4e48-b77d-3069c4b2dca1 +2024-09-11 09:11:49.614385 2024-09-11 09:11:49.614397 plgnd 1334658196 R rec a607d7de-fea5-4b30-a1e5-b7a0e16cd25f +2024-09-11 09:11:49.666422 2024-09-11 09:11:49.666428 plgnd 1334657726 R rec bdc25e8a-f566-4010-9c6e-e258187146ed +2024-09-11 09:11:49.73048 2024-09-11 09:11:49.730485 plgnd 133465641X R rec 91e8dc13-3d52-4a5a-96a3-f6b59d6e95aa +2024-09-11 09:11:49.800399 2024-09-11 09:11:49.800411 plgnd 1334632707 R rec 31f6c738-1f56-4fb5-b60b-93d17abda468 +2024-09-11 09:11:49.86208 2024-09-11 09:11:49.862091 plgnd 133463209X R rec a7731246-882b-4788-929e-590cba3d670d +2024-09-11 09:11:49.929371 2024-09-11 09:11:49.929381 plgnd 133456325X R rec e7012f1a-1b10-401b-b68d-2a873bba8743 +2024-09-11 09:11:50.013279 2024-09-11 09:11:50.013283 plgnd 1334560994 R rec 45759c86-90d6-4d42-b6d3-4c8c2b7cd936 +2024-09-11 09:11:50.079562 2024-09-11 09:11:50.079573 plgnd 1334559805 R rec 9f3c2f21-22f5-426e-9601-58337ee02902 +2024-09-11 09:11:50.144737 2024-09-11 09:11:50.144742 plgnd 1334558590 R rec aa55394a-6eba-4956-a216-238af9a329a3 +2024-09-11 09:11:50.197574 2024-09-11 09:11:50.197584 plgnd 1334556687 R rec 0b4ebbf3-6a79-4a83-b80b-de5212138336 +2024-09-11 09:11:50.25379 2024-09-11 09:11:50.253794 plgnd 1334554471 R rec ab339880-4641-44af-9811-110c22c5e0b0 +2024-09-11 09:11:50.326303 2024-09-11 09:11:50.326319 plgnd 1334554218 R rec d82b40ab-e0c7-4d30-8309-d5ac4be7919b +2024-09-11 09:11:50.387263 2024-09-11 09:11:50.387279 plgnd 1334552940 R rec 6ef144eb-a85e-4d71-afdb-d9d7d26be261 +2024-09-11 09:11:50.45861 2024-09-11 09:11:50.458625 plgnd 1334552908 R rec c8731ee6-117d-45c0-ab35-cbcc4e28991a +2024-09-11 09:11:50.528055 2024-09-11 09:11:50.528066 plgnd 1334552606 R rec 24ecaf54-ca04-4d13-8db7-26405ec0ee7b +2024-09-11 09:11:50.597815 2024-09-11 09:11:50.597826 plgnd 1334538085 R rec 27d45e8e-eac2-42bf-9e5e-b7a12b4e50df +2024-09-11 09:11:50.663173 2024-09-11 09:11:50.663178 plgnd 133453666X R rec f72cfe02-abe6-4dee-a04e-781abed900d1 +2024-09-11 09:11:50.760619 2024-09-11 09:11:50.76063 plgnd 1334531153 R rec fed5a3f6-54c8-4277-afec-23d3cf83cd86 +2024-09-11 09:11:50.830613 2024-09-11 09:11:50.830623 plgnd 1334516766 R rec 39027225-479f-4b85-babb-50cc3a3e93f5 +2024-09-11 09:11:50.899206 2024-09-11 09:11:50.899216 plgnd 1334502854 R rec 95a200cc-db39-4a4b-a6d6-a13fb18d6afd +2024-09-11 09:11:50.970283 2024-09-11 09:11:50.970293 plgnd 1334486573 R rec 15491452-3f01-472b-bdee-29ffd0152264 +2024-09-11 09:11:51.032857 2024-09-11 09:11:51.032866 plgnd 1334485763 R rec 8032eb15-cf78-4c5b-befa-ae2438dc56ba +2024-09-11 09:11:51.094872 2024-09-11 09:11:51.094883 plgnd 1334319561 R rec c358397e-7ff4-4489-941d-f71a74779ef5 +2024-09-11 09:11:51.153002 2024-09-11 09:11:51.153006 plgnd 1334318492 R rec 003d5286-c663-410c-9a8d-797ba8f724a4 +2024-09-11 09:11:51.21311 2024-09-11 09:11:51.213117 plgnd 1334318069 R rec f0d97476-5314-4f1f-8346-76534f9de352 +2024-09-11 09:11:51.266328 2024-09-11 09:11:51.266339 plgnd 1334313776 R rec e429a1b2-1b17-4a67-83b2-6b1a3c0c1c13 +2024-09-11 09:11:51.336211 2024-09-11 09:11:51.336216 plgnd 1334312974 R rec 78f42ec7-37bf-4362-8d76-6f4fbdffe8df +2024-09-11 09:11:51.403763 2024-09-11 09:11:51.403768 plgnd 1334310661 R rec b2bf53ce-f857-4406-a8b7-94840296a122 +2024-09-11 09:11:51.468318 2024-09-11 09:11:51.468328 plgnd 1334302111 R rec 3f2b4e5b-b054-437a-86f4-4574aab26480 +2024-09-11 09:11:51.532774 2024-09-11 09:11:51.532785 plgnd 1334300054 R rec 9bb463f1-dd53-4415-bc6e-53c3c8683a33 +2024-09-11 09:11:51.604478 2024-09-11 09:11:51.604483 plgnd 133422725X R rec 9424b82a-f38f-45e1-b735-9a73c8b93548 +2024-09-11 09:11:51.662703 2024-09-11 09:11:51.662709 plgnd 1334221979 R rec e8a1e7e6-ddcc-4cd2-b6e2-e3a4fe63b0a8 +2024-09-11 09:11:51.725248 2024-09-11 09:11:51.725254 plgnd 1334198845 R rec 01d8325b-862a-405f-94f8-93a3874ff159 +2024-09-11 09:11:51.829963 2024-09-11 09:11:51.829974 plgnd 1334117918 R rec 7a9a8983-f07f-456d-97a7-c1aff1b06677 +2024-09-11 09:11:51.893189 2024-09-11 09:11:51.893199 plgnd 1334101221 R rec b259c2ed-db7f-483e-8f76-be75867b19bb +2024-09-11 09:11:51.960445 2024-09-11 09:11:51.960454 plgnd 1334086826 R rec 6980d3ae-682a-4515-8253-95817aca152c +2024-09-11 09:11:52.031363 2024-09-11 09:11:52.031372 plgnd 1334027250 R rec d3e17722-75c9-47e8-969b-710cabf93001 +2024-09-11 09:11:52.098871 2024-09-11 09:11:52.098876 plgnd 1334024804 R rec f9610f1a-06d6-44a9-a087-3dc145003afd +2024-09-11 09:11:52.159531 2024-09-11 09:11:52.159537 plgnd 1334011753 R rec 623c914e-58d3-4619-aa1c-2344b1023005 +2024-09-11 09:11:52.224603 2024-09-11 09:11:52.224613 plgnd 1334011079 R rec 65cb7b36-9d53-4cbf-8f2f-7a66f16ac8b0 +2024-09-11 09:11:52.287444 2024-09-11 09:11:52.287492 plgnd 1334001529 R rec 837849fe-d66c-45ac-bbf4-e85c4ff1ce14 +2024-09-11 09:11:52.356477 2024-09-11 09:11:52.356486 plgnd 1333989954 R rec 508403c4-2d48-4787-9359-be6e30fb248a +2024-09-11 09:11:52.427521 2024-09-11 09:11:52.427531 plgnd 1333660758 R rec 4a606f19-bce7-4fa4-b3af-effdfb0e92f2 +2024-09-11 09:11:52.495596 2024-09-11 09:11:52.495607 plgnd 1333582501 R rec f4835956-bdde-4e2e-8ebf-2274d927397b +2024-09-11 09:11:52.559703 2024-09-11 09:11:52.559708 plgnd 1333570511 R rec 24ef217e-21b8-4aea-9fb7-b20f4f36e024 +2024-09-11 09:11:52.6204 2024-09-11 09:11:52.620411 plgnd 133355513X R rec 2637c9bb-4794-4bab-8422-03194add4ba0 +2024-09-11 09:11:52.67 2024-09-11 09:11:52.670005 plgnd 1333333668 R rec 2077fab4-be64-44f8-b867-73ae1a09d537 +2024-09-11 09:11:52.722276 2024-09-11 09:11:52.722281 plgnd 1333321090 R rec 1d093b91-3357-4366-9543-432158bb7d43 +2024-09-11 09:11:52.776908 2024-09-11 09:11:52.776918 plgnd 1333315902 R rec cfcdb4e1-2e8a-4ea4-948e-f5f033335911 +2024-09-11 09:11:52.840948 2024-09-11 09:11:52.840953 plgnd 1333263465 R rec 84641c67-96be-4e35-b7fa-d024e25218e4 +2024-09-11 09:11:52.909193 2024-09-11 09:11:52.909204 plgnd 1333255853 R rec 63a101a9-2ae2-4109-ab85-c6ccf3aede0b +2024-09-11 09:11:52.968891 2024-09-11 09:11:52.968895 plgnd 1333228880 R rec 8dd40ac6-3566-4baa-b474-958e01e38b43 +2024-09-11 09:11:53.046721 2024-09-11 09:11:53.046726 plgnd 1333113943 R rec a1e9bcc3-1596-4cb8-ac75-530cf49c9bec +2024-09-11 09:11:53.164593 2024-09-11 09:11:53.1646 plgnd 1332874568 R rec 47e20d5d-912b-4ef5-93dc-3237058cfed2 +2024-09-11 09:11:53.242461 2024-09-11 09:11:53.24247 plgnd 1332858198 R rec fe5b6bd3-dac5-411a-a416-141a9cd16500 +2024-09-11 09:11:53.3303 2024-09-11 09:11:53.330306 plgnd 1332769349 R rec 16f04a53-71a5-41e9-887f-925a50c94f49 +2024-09-11 09:11:53.387625 2024-09-11 09:11:53.387635 plgnd 1332757375 R rec 872bfd98-7112-41b3-be41-34981305e017 +2024-09-11 09:11:53.452498 2024-09-11 09:11:53.452508 plgnd 1332755666 R rec bfb57790-ea9f-4b71-bf68-ad4d9b37d4d2 +2024-09-11 09:11:53.518974 2024-09-11 09:11:53.518985 plgnd 1332749054 R rec 028c5d03-01b7-488f-a1c8-202c551cd63f +2024-09-11 09:11:53.583624 2024-09-11 09:11:53.583635 plgnd 1332747108 R rec 1de85f94-679d-4e02-a4fe-adffc2182545 +2024-09-11 09:11:53.643709 2024-09-11 09:11:53.643713 plgnd 1332742351 R rec e4feccc5-2b5f-4517-974f-7d883eb4e8d9 +2024-09-11 09:11:53.697589 2024-09-11 09:11:53.6976 plgnd 1332735002 R rec a62d4a33-b589-41f7-abbe-b1ed3249cf2f +2024-09-11 09:11:53.748922 2024-09-11 09:11:53.748927 plgnd 1332734863 R rec e6dbbb1c-7e9b-4bd7-8900-322b7b3980c1 +2024-09-11 09:11:53.817138 2024-09-11 09:11:53.81715 plgnd 133273457X R rec 4ba5b6e4-bae9-4e41-9693-96a8deccea65 +2024-09-11 09:11:53.892889 2024-09-11 09:11:53.892904 plgnd 1332733751 R rec 8a47a6c0-ed4e-47e4-8e9e-88254336f9c9 +2024-09-11 09:11:53.967896 2024-09-11 09:11:53.967908 plgnd 1332732577 R rec 17df531c-432c-44a6-96b7-5aeebbd95b8b +2024-09-11 09:11:54.034407 2024-09-11 09:11:54.034416 plgnd 1332731430 R rec 2892a34e-0042-4d8b-b1da-09de106fda97 +2024-09-11 09:11:54.096148 2024-09-11 09:11:54.096153 plgnd 1332670482 R rec aac7cb4f-db0b-49c3-b627-3bef0559410c +2024-09-11 09:11:54.151058 2024-09-11 09:11:54.151063 plgnd 1332669689 R rec a581ae20-8f2f-4cc6-ad06-6a6af537d1c4 +2024-09-11 09:11:54.20791 2024-09-11 09:11:54.207919 plgnd 1332451578 R rec 0c44ebbd-a5b9-4bfd-84a4-e29cfbfbb80d +2024-09-11 09:11:54.273103 2024-09-11 09:11:54.273114 plgnd 1332353436 R rec 80e70649-45dc-48cb-b21e-ade4e756d26f +2024-09-11 09:11:54.354951 2024-09-11 09:11:54.354962 plgnd 1332057209 R rec 4c9c5094-66d4-424d-93e9-5b0f4eb0bfcc +2024-09-11 09:11:54.422545 2024-09-11 09:11:54.422556 plgnd 1332055729 R rec 440cf209-461b-4841-85a3-ea0f94b26754 +2024-09-11 09:11:54.485804 2024-09-11 09:11:54.485814 plgnd 1332031374 R rec b9d5e91b-6d07-40fb-adbc-f6819564cac6 +2024-09-11 09:11:54.551989 2024-09-11 09:11:54.551994 plgnd 1331729661 R rec a086c563-9376-4a99-b65b-6851589426ca +2024-09-11 09:11:54.628878 2024-09-11 09:11:54.628894 plgnd 1331609186 R rec 553866a9-8bba-4532-8001-b9f73e014a6e +2024-09-11 09:11:54.690273 2024-09-11 09:11:54.690284 plgnd 1331604346 R rec 313eee78-6909-458f-8a1c-6c64c853de87 +2024-09-11 09:11:54.745296 2024-09-11 09:11:54.745309 plgnd 1331602718 R rec e8cace5e-0400-4bcc-9021-bce415e93b7e +2024-09-11 09:11:54.834577 2024-09-11 09:11:54.834582 plgnd 1331601630 R rec 064dd171-b287-45ae-8cdf-515fa9fed83b +2024-09-11 09:11:54.913133 2024-09-11 09:11:54.913138 plgnd 1331514282 R rec d300122f-cc5e-4d02-bf00-126cee4b367d +2024-09-11 09:11:54.983482 2024-09-11 09:11:54.983493 plgnd 1331513952 R rec ac6a16a2-4f21-448b-91d3-c99dfe501678 +2024-09-11 09:11:55.046064 2024-09-11 09:11:55.046075 plgnd 1331379539 R rec 882d2480-33c9-4953-bc3c-8061e12bc6e7 +2024-09-11 09:11:55.115657 2024-09-11 09:11:55.115668 plgnd 1331109191 R rec d53cd149-4b60-4c86-bbe9-93e5d706ff10 +2024-09-11 09:11:55.168543 2024-09-11 09:11:55.168548 plgnd 1331089271 R rec c2596ae8-8e3a-435a-912f-177f8f9f20e5 +2024-09-11 09:11:55.226351 2024-09-11 09:11:55.226355 plgnd 1330982746 R rec 0cbdc2ce-cb96-479b-8926-d1cc0d16a316 +2024-09-11 09:11:55.286333 2024-09-11 09:11:55.286337 plgnd 1330866738 R rec 3074a0f5-7bc2-4d70-bbaa-7acd23ca7435 +2024-09-11 09:11:55.33602 2024-09-11 09:11:55.33603 plgnd 1330847199 R rec 70e5f531-61fc-4d6e-b13f-0b85861e002e +2024-09-11 09:11:55.40064 2024-09-11 09:11:55.40065 plgnd 1330436237 R rec 78b01f79-ba91-48e6-9e3e-986fa274685b +2024-09-11 09:11:55.461984 2024-09-11 09:11:55.461994 plgnd 1330428420 R rec 08b306be-fb41-4cd2-8207-4ddcb5e2bd89 +2024-09-11 09:11:55.536381 2024-09-11 09:11:55.536386 plgnd 1330324463 R rec 7a59018e-ffb6-46ef-ab97-fd5ed146ae74 +2024-09-11 09:11:55.603909 2024-09-11 09:11:55.603918 plgnd 1330302877 R rec b0f734e5-ebbb-4b1a-86b5-d1f25351a1b9 +2024-09-11 09:11:55.671854 2024-09-11 09:11:55.671859 plgnd 1330290887 R rec b5f355ac-8400-41b5-9b76-7b30eb3cb6de +2024-09-11 09:11:55.723924 2024-09-11 09:11:55.723929 plgnd 1330177274 R rec fc7d1738-b039-4106-abe7-1a8cc681e7ea +2024-09-11 09:11:55.78761 2024-09-11 09:11:55.78762 plgnd 1329890205 R rec aad4931b-afdd-4bf5-86ab-d2936835a3fb +2024-09-11 09:11:55.854319 2024-09-11 09:11:55.854328 plgnd 1329430875 R rec 0254176e-e354-4649-b5f9-47ba35dbc429 +2024-09-11 09:11:55.921306 2024-09-11 09:11:55.921316 plgnd 1316359042 R rec 34ad95e5-fb04-41a0-8017-5e62e169f529 +2024-09-11 09:11:55.99193 2024-09-11 09:11:55.99194 plgnd 1314596373 R rec 3799d3b2-0a48-48b8-be87-1ffc46cebd84 +2024-09-11 09:11:56.061716 2024-09-11 09:11:56.061725 plgnd 1302571524 R rec f0853b55-d44d-482b-bb4c-a943e113fef1 +2024-09-11 09:11:56.131536 2024-09-11 09:11:56.131546 plgnd 1300397128 R rec db8554ef-2e36-4a75-a55e-99fe13c56a50 +2024-09-11 09:11:56.184372 2024-09-11 09:11:56.184377 plgnd 1299383890 R rec 569087a2-48fc-4308-be81-5d41ddd69708 +2024-09-11 09:11:56.240998 2024-09-11 09:11:56.241008 plgnd 129673143X R rec 987f9915-88cb-4fe4-ab92-444622305eee +2024-09-11 09:11:56.310756 2024-09-11 09:11:56.310761 plgnd 1295131781 R rec 7348e441-e390-465a-8a8d-767e7a0ef7ae +2024-09-11 09:11:56.384201 2024-09-11 09:11:56.384211 plgnd 1287837611 R rec 59ec6d8d-6891-4b95-b765-848cf6809993 +2024-09-11 09:11:56.448651 2024-09-11 09:11:56.448661 plgnd 1286132703 R rec 409a1bde-b6d5-4952-985f-0137ffd39ec7 +2024-09-11 09:11:56.517815 2024-09-11 09:11:56.517825 plgnd 1284341119 R rec e7b85b94-78b2-449a-b055-6b1afd3fc30c +2024-09-11 09:11:56.596139 2024-09-11 09:11:56.59615 plgnd 1282328816 R rec d703ca92-ee79-4461-b8d0-fe40a97bb135 +2024-09-11 09:11:56.663959 2024-09-11 09:11:56.663964 plgnd 1275159915 R rec 6f2f0f0d-ce4a-45d8-a6e7-a12a319035f7 +2024-09-11 09:11:56.723357 2024-09-11 09:11:56.723362 plgnd 1271173751 R rec 1fa3abc0-7ace-44d0-90af-ec1cb0acae57 +2024-09-11 09:11:56.796384 2024-09-11 09:11:56.796394 plgnd 1267606541 R rec 7fb79670-3218-477b-9a3e-9b7420bd31a8 +2024-09-11 09:11:56.887078 2024-09-11 09:11:56.887083 plgnd 1262419808 R rec 61183ffb-cd9c-4d72-b74c-2d34cce8c99f +2024-09-11 09:11:56.948442 2024-09-11 09:11:56.948451 plgnd 1240912943 R rec 9213dadc-1e85-4cca-b11d-7d0c09af9019 +2024-09-11 09:11:57.013909 2024-09-11 09:11:57.013919 plgnd 1239866968 R rec 8d27f7e7-606c-447f-bb21-d21ab765e109 +2024-09-11 09:11:57.081567 2024-09-11 09:11:57.081577 plgnd 1239463502 R rec 44ddb5d4-ff97-48da-80cb-6e60556b3692 +2024-09-11 09:11:57.147644 2024-09-11 09:11:57.147649 plgnd 1237860342 R rec 0bb86b31-9ecd-4cd7-b0e0-ae03ad014b67 +2024-09-11 09:11:57.196416 2024-09-11 09:11:57.196421 plgnd 1237828171 R rec b1fac734-f54b-4974-8e13-a2e5e3ffcfa1 +2024-09-11 09:11:57.246763 2024-09-11 09:11:57.246768 plgnd 1237774101 R rec ad1179be-73bc-4d4d-a25f-8fbe9b41f89d +2024-09-11 09:11:57.305331 2024-09-11 09:11:57.305341 plgnd 1237279453 R rec 3dba3a8b-0789-45a3-b86b-559e33a1ead0 +2024-09-11 09:11:57.373668 2024-09-11 09:11:57.373678 plgnd 1236792211 R rec d66bbbf9-5d4d-4cd7-bdc8-27460602ef43 +2024-09-11 09:11:57.43489 2024-09-11 09:11:57.434901 plgnd 123657754X R rec fcab5c24-01a4-4bef-8e6a-8d112aa698d3 +2024-09-11 09:11:57.502066 2024-09-11 09:11:57.502077 plgnd 1235360709 R rec 0f52a7d8-ba46-4010-a11f-5cbd6f63e6df +2024-09-11 09:11:57.567946 2024-09-11 09:11:57.567958 plgnd 1233310046 R rec 95746440-415e-4466-ae17-37f53aa92241 +2024-09-11 09:11:57.644511 2024-09-11 09:11:57.644517 plgnd 1232243698 R rec 605092bc-7793-403a-9d2a-f20124dec034 +2024-09-11 09:11:57.695071 2024-09-11 09:11:57.695076 plgnd 1225876354 R rec 7119cdd7-f821-4ac2-bd2b-80d1f2838392 +2024-09-11 09:11:57.760574 2024-09-11 09:11:57.760587 plgnd 1224278054 R rec 2f121ee0-a44d-4d95-8069-f063d04eda96 +2024-09-11 09:11:57.834345 2024-09-11 09:11:57.834349 plgnd 122413754X R rec 0f8967c5-b67f-419c-869f-e9ae8f306292 +2024-09-11 09:11:57.890335 2024-09-11 09:11:57.890346 plgnd 122219953X R rec 87db39df-76ab-4eb2-9cd5-df7f84163273 +2024-09-11 09:11:57.980625 2024-09-11 09:11:57.980634 plgnd 1222199440 R rec bc55a2ff-bc3f-4d30-aecf-c507a9b7c040 +2024-09-11 09:11:58.058865 2024-09-11 09:11:58.058876 plgnd 1219234621 R rec 4ae5280c-cdca-444a-b90d-6060478bf3d6 +2024-09-11 09:11:58.135781 2024-09-11 09:11:58.135793 plgnd 1215862520 R rec af767194-8dd5-4e81-a39b-c0edbd40e91a +2024-09-11 09:11:58.183554 2024-09-11 09:11:58.183559 plgnd 1208649175 R rec 9bbb958d-15bd-468d-acbd-f7d6f51de4f3 +2024-09-11 09:11:58.236268 2024-09-11 09:11:58.236272 plgnd 1206005505 R rec f23aaa29-ae17-4f6d-87d4-6c81641bd469 +2024-09-11 09:11:58.30912 2024-09-11 09:11:58.309132 plgnd 1203261837 R rec 0df588af-3f8b-4e6e-a24f-96656942d55c +2024-09-11 09:11:58.382653 2024-09-11 09:11:58.382668 plgnd 1197938001 R rec 6a8ade56-57c7-4b0f-a528-10bf108b817c +2024-09-11 09:11:58.444068 2024-09-11 09:11:58.444082 plgnd 1192399013 R rec ff8cce43-d5cd-452a-b923-2e579744da40 +2024-09-11 09:11:58.515883 2024-09-11 09:11:58.515888 plgnd 1191133729 R rec 9c2aa924-907d-43d7-a448-281dc7ec6c8c +2024-09-11 09:11:58.575946 2024-09-11 09:11:58.575951 plgnd 1190333392 R rec 5fbcbc24-287d-43d5-b309-3c71c8906182 +2024-09-11 09:11:58.648361 2024-09-11 09:11:58.648368 plgnd 1190333082 R rec be3d0f18-0b68-4c0c-b309-b3172857098a +2024-09-11 09:11:58.701951 2024-09-11 09:11:58.701961 plgnd 1190328259 R rec 2a4dfcb5-62dc-43d0-a091-6ba4694eba80 +2024-09-11 09:11:58.754928 2024-09-11 09:11:58.754941 plgnd 1189443015 R rec 2066c8cb-e8dd-4d6e-ae8b-6bf6c2fb5009 +2024-09-11 09:11:58.820931 2024-09-11 09:11:58.820942 plgnd 1188738658 R rec 642a6fe4-7d72-4c73-878b-2c2ad50a6c25 +2024-09-11 09:11:58.882958 2024-09-11 09:11:58.882969 plgnd 1184832803 R rec b6e99a95-c1b3-48c1-9e17-f1d00b627386 +2024-09-11 09:11:58.968999 2024-09-11 09:11:58.969004 plgnd 1184428727 R rec 0e157401-da5a-4389-9bc8-3f7c8ff1f297 +2024-09-11 09:11:59.102523 2024-09-11 09:11:59.102528 plgnd 1182916759 R rec 7073cc7e-1ae4-4d7c-952e-87420daa388b +2024-09-11 09:11:59.176869 2024-09-11 09:11:59.17688 plgnd 1182704948 R rec be5a769d-0b70-46f4-b3f1-b29b6daadf38 +2024-09-11 09:11:59.250981 2024-09-11 09:11:59.250986 plgnd 1180664485 R rec a5a92971-cf3d-4d97-bfe3-5c5c996a252f +2024-09-11 09:11:59.323169 2024-09-11 09:11:59.323174 plgnd 1180620623 R rec a5ad22aa-3a07-41fa-9169-d83e5e3baac7 +2024-09-11 09:11:59.419831 2024-09-11 09:11:59.419837 plgnd 1179502884 R rec 089fc9e6-ffb0-46cd-8cac-c2ff63b09f6d +2024-09-11 09:11:59.506202 2024-09-11 09:11:59.506207 plgnd 1177183811 R rec f2cfac70-1f5b-4b80-bd4c-f12bca1b7701 +2024-09-11 09:11:59.559154 2024-09-11 09:11:59.55916 plgnd 1177087480 R rec 3a621bd4-980b-4b8d-8860-fc7049b614ee +2024-09-11 09:11:59.624047 2024-09-11 09:11:59.624057 plgnd 1171383401 R rec 460df84a-07ab-404e-8eef-901e89e7b97c +2024-09-11 09:11:59.678985 2024-09-11 09:11:59.678991 plgnd 1169806708 R rec 21da9ea6-527e-462c-958f-3cf6a6e27b04 +2024-09-11 09:11:59.743995 2024-09-11 09:11:59.744 plgnd 1169806686 R rec f666ac27-3c68-4e4f-8e2f-07b770c91f88 +2024-09-11 09:11:59.819933 2024-09-11 09:11:59.819943 plgnd 1169805167 R rec f0939956-db22-4709-9bb5-78919adc8126 +2024-09-11 09:11:59.884207 2024-09-11 09:11:59.884217 plgnd 1169805140 R rec 7d586d39-0959-4778-b699-8f6aeacf18f7 +2024-09-11 09:11:59.964772 2024-09-11 09:11:59.964782 plgnd 1167694643 R rec 95e7032d-e7a9-4e0d-8cdb-54cd49a4f9aa +2024-09-11 09:12:00.059692 2024-09-11 09:12:00.059698 plgnd 1167335767 R rec 89d04454-e416-43ad-847c-6f71d0dfd2dc +2024-09-11 09:12:00.166162 2024-09-11 09:12:00.166167 plgnd 1166988325 R rec 95ac6c27-35a5-4c9d-af31-ff7d532fae8c +2024-09-11 09:12:00.259321 2024-09-11 09:12:00.259326 plgnd 1166988007 R rec f317a8a9-08d8-410d-95c9-d49c7b28757e +2024-09-11 09:12:00.335149 2024-09-11 09:12:00.335153 plgnd 1166098877 R rec bbaa703f-57e4-4148-8079-4a8e3dbb9935 +2024-09-11 09:12:00.417273 2024-09-11 09:12:00.417284 plgnd 1165597586 R rec d184f420-24af-4eee-9a0a-c34434fc94c6 +2024-09-11 09:12:00.538244 2024-09-11 09:12:00.538249 plgnd 1164527657 R rec 6ffe6304-5927-47c1-9360-fc5db03fba77 +2024-09-11 09:12:00.590777 2024-09-11 09:12:00.590788 plgnd 116355815X R rec 2acb7015-46e0-4c93-b86f-4cd6af40b796 +2024-09-11 09:12:00.670463 2024-09-11 09:12:00.670469 plgnd 1163558095 R rec a244c93f-f373-4930-be4e-65148d7a5a3a +2024-09-11 09:12:00.787023 2024-09-11 09:12:00.787028 plgnd 1163419907 R rec 9d62cde1-746c-4931-8a5c-766fbbf278de +2024-09-11 09:12:00.844313 2024-09-11 09:12:00.84444 plgnd 1161830820 R rec 16da74f7-68ed-42cf-bb68-39467523d512 +2024-09-11 09:12:00.929309 2024-09-11 09:12:00.929318 plgnd 1161625046 R rec d049401d-ac9f-4739-969b-2ead23f91b67 +2024-09-11 09:12:01.084261 2024-09-11 09:12:01.084265 plgnd 1156658128 R rec 400589c0-b57f-42a4-8306-0297ee968d0a +2024-09-11 09:12:01.144238 2024-09-11 09:12:01.144243 plgnd 1156051029 R rec c2306d1b-e212-4736-87d9-fd43f3854faa +2024-09-11 09:12:01.221054 2024-09-11 09:12:01.221058 plgnd 1148115242 R rec 6a033e59-009b-4de9-a03f-b14562008688 +2024-09-11 09:12:01.356188 2024-09-11 09:12:01.356194 plgnd 1147654123 R rec 5634681e-439a-4b3f-8d70-8831e4e77531 +2024-09-11 09:12:01.409832 2024-09-11 09:12:01.409842 plgnd 1143714245 R rec ea9ae3ce-2bfd-495b-b42a-0974b975d907 +2024-09-11 09:12:01.490502 2024-09-11 09:12:01.490513 plgnd 1143154991 R rec 3290c62e-02a2-4511-8e3a-fbd47d5d6853 +2024-09-11 09:12:01.554985 2024-09-11 09:12:01.55499 plgnd 1142135993 R rec b93a0bdd-6d69-40fe-8a72-ae09ee1a911f +2024-09-11 09:12:01.632292 2024-09-11 09:12:01.632302 plgnd 1139463888 R rec 3baa8a8a-2f64-4c82-8fd3-fa03be21d297 +2024-09-11 09:12:01.693445 2024-09-11 09:12:01.693455 plgnd 113914071X R rec 92b2036c-2b37-4883-bc58-482e9b932ee1 +2024-09-11 09:12:01.762177 2024-09-11 09:12:01.762181 plgnd 113698612X R rec f69c1f33-4d17-4bae-9e7d-9c8da7744bac +2024-09-11 09:12:01.829211 2024-09-11 09:12:01.829221 plgnd 1136731237 R rec 12f1c4a4-d14b-4e0a-bdb3-96bfe7f964a4 +2024-09-11 09:12:01.900122 2024-09-11 09:12:01.900126 plgnd 1136092293 R rec 31cbdda7-bff2-4797-b32c-babae82e46d5 +2024-09-11 09:12:01.956747 2024-09-11 09:12:01.956752 plgnd 1135805342 R rec 84f5d3a9-08a3-4375-8f8d-4a6f17e86dda +2024-09-11 09:12:02.094643 2024-09-11 09:12:02.094648 plgnd 1135798842 R rec bdbb0593-d481-498f-b7d5-2cc73deaa692 +2024-09-11 09:12:02.142731 2024-09-11 09:12:02.142736 plgnd 1133293247 R rec f228c087-a659-4f48-a2fc-48766767a23a +2024-09-11 09:12:02.224063 2024-09-11 09:12:02.224068 plgnd 1132227771 R rec e64006ca-be76-4388-bf4f-f160429b4a88 +2024-09-11 09:12:02.348992 2024-09-11 09:12:02.348997 plgnd 1124279156 R rec 021ec8ab-6860-4382-9408-bfdfe77a0445 +2024-09-11 09:12:02.410967 2024-09-11 09:12:02.410978 plgnd 1122747160 R rec d5532458-aaee-4120-bfcb-5f33253c1888 +2024-09-11 09:12:02.516924 2024-09-11 09:12:02.516929 plgnd 1122668171 R rec 584ef8fa-6f3f-4409-87e8-62426a745191 +2024-09-11 09:12:02.571724 2024-09-11 09:12:02.571734 plgnd 112132925X R rec fdcf1667-e1d2-4118-89ae-a0e4e311bf8b +2024-09-11 09:12:02.643431 2024-09-11 09:12:02.64344 plgnd 1107605113 R rec c2a3126c-faad-4df0-acae-ca59a354631f +2024-09-11 09:12:02.702763 2024-09-11 09:12:02.702772 plgnd 1105589110 R rec f01b5e0c-3a6f-4779-a9a0-c611902aea9d +2024-09-11 09:12:02.777569 2024-09-11 09:12:02.777574 plgnd 1101612258 R rec 4fe736ac-e963-4ba5-b837-8fb8dc94d82d +2024-09-11 09:12:02.829897 2024-09-11 09:12:02.829902 plgnd 1100323325 R rec 6e27c30c-1bc2-47d5-8eb5-98efae2011c1 +2024-09-11 09:12:02.886233 2024-09-11 09:12:02.886238 plgnd 1100201831 R rec da9e748e-1024-4e70-ba45-a53df794d6a5 +2024-09-11 09:12:02.951337 2024-09-11 09:12:02.951342 plgnd 1099133092 R rec a539112f-2f26-47aa-9aef-f9aed19e1099 +2024-09-11 09:12:03.095042 2024-09-11 09:12:03.095046 plgnd 1099132061 R rec a24a6089-471a-4a7d-9435-c4e79cc93b33 +2024-09-11 09:12:03.155657 2024-09-11 09:12:03.155663 plgnd 1097213617 R rec ee8939cb-d3f4-472b-84d1-3eec9f71bfed +2024-09-11 09:12:03.221241 2024-09-11 09:12:03.221246 plgnd 1095576461 R rec 66be56b0-51b2-48a2-bd30-d03b6b9b9aa7 +2024-09-11 09:12:03.29566 2024-09-11 09:12:03.295665 plgnd 1085229823 R rec b84c6adf-3ea1-46f6-ace1-7c96709d55b0 +2024-09-11 09:12:03.380167 2024-09-11 09:12:03.380172 plgnd 1082797251 R rec e25357d6-845b-43df-ae70-dd0ce57d6d9e +2024-09-11 09:12:03.448421 2024-09-11 09:12:03.448431 plgnd 1082520101 R rec f3a372d5-3f2d-491b-9cde-4fa631af9508 +2024-09-11 09:12:03.529476 2024-09-11 09:12:03.529485 plgnd 1082153850 R rec 4b136454-c212-4ee1-83e0-522f8fbe5eb2 +2024-09-11 09:12:03.59896 2024-09-11 09:12:03.598969 plgnd 1082012033 R rec 39c87a5c-9821-4f0b-b6a9-c3ff79bcbc69 +2024-09-11 09:12:03.668462 2024-09-11 09:12:03.668466 plgnd 1082001430 R rec 791a20ad-6453-4a06-a5cc-c2ab0adae15c +2024-09-11 09:12:03.739169 2024-09-11 09:12:03.739175 plgnd 1081845031 R rec fa6d321a-292a-4c51-a381-06b01be5a0db +2024-09-11 09:12:03.808631 2024-09-11 09:12:03.808641 plgnd 1081844973 R rec 0a4e76be-d8a6-4b6f-bb8d-fc1274f63796 +2024-09-11 09:12:03.867999 2024-09-11 09:12:03.868008 plgnd 1081842474 R rec 5c83815c-3ae9-46db-920b-e6190176673c +2024-09-11 09:12:03.938307 2024-09-11 09:12:03.938346 plgnd 1081839082 R rec bd93891b-180d-4055-8efa-3918dba0c9e6 +2024-09-11 09:12:04.161439 2024-09-11 09:12:04.161443 plgnd 1081838779 R rec 85ee4b04-c6eb-48fb-aa2a-737d61aad51a +2024-09-11 09:12:04.215416 2024-09-11 09:12:04.215421 plgnd 1081838655 R rec 4278aa42-4602-42d2-8425-5291c33ba121 +2024-09-11 09:12:04.301623 2024-09-11 09:12:04.301627 plgnd 1081838507 R rec ab8fa2fb-405e-4c23-9a1e-0056a9babd3c +2024-09-11 09:12:04.370273 2024-09-11 09:12:04.370278 plgnd 1081838396 R rec a6cb5227-4309-47c6-bbeb-6a7aa264db7e +2024-09-11 09:12:04.433213 2024-09-11 09:12:04.433223 plgnd 1081838310 R rec 10342be1-bc3e-42c2-adf1-c7e919f7ec05 +2024-09-11 09:12:04.506669 2024-09-11 09:12:04.50668 plgnd 1081838167 R rec 0022a9af-e9ed-408c-8f8e-767e3c62750c +2024-09-11 09:12:04.580659 2024-09-11 09:12:04.580669 plgnd 1081838051 R rec 091679aa-7b11-4341-a3be-19d8d2ef2bae +2024-09-11 09:12:04.647734 2024-09-11 09:12:04.64774 plgnd 1081330236 R rec 214a6130-5783-4946-ac54-bb4d902176a0 +2024-09-11 09:12:04.713712 2024-09-11 09:12:04.713717 plgnd 1081212918 R rec 2babe7c0-f3c8-4ef8-8dde-cb18d7739402 +2024-09-11 09:12:04.786265 2024-09-11 09:12:04.786275 plgnd 1081097930 R rec 0651217d-1c23-4222-ab0a-f74676036281 +2024-09-11 09:12:04.859951 2024-09-11 09:12:04.859957 plgnd 1079692916 R rec 3e10e7fa-3861-474d-894a-848a71ca4cd3 +2024-09-11 09:12:04.927067 2024-09-11 09:12:04.92708 plgnd 1079568352 R rec d313a73d-723c-4f82-95ae-4f0727a5a293 +2024-09-11 09:12:05.02817 2024-09-11 09:12:05.028176 plgnd 1078131902 R rec e1256213-80a2-4d7a-8981-80ed76b95558 +2024-09-11 09:12:05.101796 2024-09-11 09:12:05.101805 plgnd 1077893450 R rec 1f5adec0-aaba-47b2-99a9-ed1137f6d4c3 +2024-09-11 09:12:05.159204 2024-09-11 09:12:05.15921 plgnd 1077053320 R rec 9344f34d-590f-48ef-9a4f-cdd2f6649e59 +2024-09-11 09:12:05.215039 2024-09-11 09:12:05.215043 plgnd 1077053185 R rec c298482f-6cb9-4783-af27-5d1852a1b3c9 +2024-09-11 09:12:05.266953 2024-09-11 09:12:05.266963 plgnd 107699847X R rec b9f2793d-0fd9-42ad-8f52-eb2484c8ebbb +2024-09-11 09:12:05.340606 2024-09-11 09:12:05.340622 plgnd 1076027032 R rec d487bced-6e27-49ae-b88f-12236009dcda +2024-09-11 09:12:05.415614 2024-09-11 09:12:05.415626 plgnd 1075827361 R rec c03f57de-ad82-412a-adf7-550121a1809e +2024-09-11 09:12:05.48368 2024-09-11 09:12:05.48369 plgnd 1075220467 R rec 26706095-acca-4964-9cef-12131b2c65f3 +2024-09-11 09:12:05.594221 2024-09-11 09:12:05.594231 plgnd 1074377397 R rec 4a4f21ad-ac8d-40fb-95a4-6b9c435f79c5 +2024-09-11 09:12:05.670818 2024-09-11 09:12:05.670823 plgnd 1074316908 R rec 07f1fc7b-937a-4ea2-8f54-e1e57ba30e19 +2024-09-11 09:12:05.744663 2024-09-11 09:12:05.744669 plgnd 107399077X R rec 86c0b22f-81a9-4e9c-b165-4c429e3dc7f4 +2024-09-11 09:12:05.835029 2024-09-11 09:12:05.83504 plgnd 1073950220 R rec a35d60fe-cc0a-4ce1-a138-d81d73535fee +2024-09-11 09:12:05.912746 2024-09-11 09:12:05.912756 plgnd 107373157X R rec 62586bd7-345a-4e96-9a88-a6f96a99e1ad +2024-09-11 09:12:05.985843 2024-09-11 09:12:05.985854 plgnd 1073724549 R rec afc63d61-6367-4608-a217-333d200d798c +2024-09-11 09:12:06.060515 2024-09-11 09:12:06.060526 plgnd 107362062X R rec 07ef4adc-7e39-447c-aad3-9650fc0293f9 +2024-09-11 09:12:06.11549 2024-09-11 09:12:06.115501 plgnd 1073267830 R rec 705e4489-e11c-4a27-9253-9c84fe7beb51 +2024-09-11 09:12:06.17498 2024-09-11 09:12:06.174986 plgnd 107283314X R rec 57db4382-0113-4d28-a9bf-8c8cb44f7de8 +2024-09-11 09:12:06.238187 2024-09-11 09:12:06.238198 plgnd 1071872435 R rec 84331057-4979-4e81-9025-8d280a597d64 +2024-09-11 09:12:06.329002 2024-09-11 09:12:06.329014 plgnd 1071862391 R rec ad09d8b9-afc9-4381-98c7-3b080c73374b +2024-09-11 09:12:06.414767 2024-09-11 09:12:06.414779 plgnd 1070113026 R rec d06f30f2-4a2b-4467-be5b-994ad6eb9dc8 +2024-09-11 09:12:06.503153 2024-09-11 09:12:06.503164 plgnd 1069803782 R rec ae97f9a1-6c73-436f-9f7f-dd97679a0c04 +2024-09-11 09:12:06.615917 2024-09-11 09:12:06.615923 plgnd 1068118490 R rec 3fac8848-f513-4daa-a0fd-a4ed6c1c5cde +2024-09-11 09:12:06.68045 2024-09-11 09:12:06.680456 plgnd 1067883703 R rec 0b49abcd-b448-4c66-b060-1274a8888ba5 +2024-09-11 09:12:06.757912 2024-09-11 09:12:06.757922 plgnd 1067878831 R rec a1f44dcc-2775-43b5-b408-4cc6ea76e855 +2024-09-11 09:12:06.837739 2024-09-11 09:12:06.83775 plgnd 1067860142 R rec 3ae7f557-38b5-4d8f-8cf2-6b1f33117da0 +2024-09-11 09:12:06.915747 2024-09-11 09:12:06.915758 plgnd 1067637184 R rec 238a0625-79d2-4339-88bc-c109ff61ca05 +2024-09-11 09:12:06.990217 2024-09-11 09:12:06.990227 plgnd 1067636757 R rec 71e3babf-1d2e-4275-aec7-1b4c1f76b183 +2024-09-11 09:12:07.062462 2024-09-11 09:12:07.062472 plgnd 1067274006 R rec 283f166c-5706-4eae-a475-939c2e769a54 +2024-09-11 09:12:07.13178 2024-09-11 09:12:07.13179 plgnd 1067272488 R rec 82ab6f3f-a626-4e16-abee-d7eba6bb2dfd +2024-09-11 09:12:07.190171 2024-09-11 09:12:07.190177 plgnd 1064960243 R rec 70281fbe-fb93-485f-a4e0-445c22574f9d +2024-09-11 09:12:07.249496 2024-09-11 09:12:07.249501 plgnd 1064714455 R rec 5cc4c01e-062a-41e2-b7e9-9d6a8ea6a226 +2024-09-11 09:12:07.327114 2024-09-11 09:12:07.327125 plgnd 1064601502 R rec 1394f334-5649-4502-a3dc-dce7a047d9d4 +2024-09-11 09:12:07.393973 2024-09-11 09:12:07.393982 plgnd 1064049419 R rec b0e7741e-fecf-492c-a6d6-c5b1e1d7e982 +2024-09-11 09:12:07.462783 2024-09-11 09:12:07.462792 plgnd 1062979583 R rec cad88568-0510-429e-842e-071cfdcf406b +2024-09-11 09:12:07.530984 2024-09-11 09:12:07.53099 plgnd 1062970004 R rec 71e8e3ba-8007-4af3-a439-13635e31f057 +2024-09-11 09:12:07.587597 2024-09-11 09:12:07.587608 plgnd 1062891848 R rec b185b857-6a96-478a-ab31-97cbe96aacff +2024-09-11 09:12:07.655318 2024-09-11 09:12:07.655323 plgnd 1062531191 R rec 244339e1-faea-45c0-bbea-d256fdb594f0 +2024-09-11 09:12:07.712492 2024-09-11 09:12:07.712498 plgnd 1062516109 R rec e18bc4cf-53f9-4bf5-be5b-ac6ffbfea36a +2024-09-11 09:12:07.780513 2024-09-11 09:12:07.780524 plgnd 1061004198 R rec fddc5aa6-5980-42bc-9faf-b837e417187a +2024-09-11 09:12:07.85177 2024-09-11 09:12:07.851776 plgnd 1060849127 R rec b329f96f-e70b-4dde-9170-a985c7eb57cc +2024-09-11 09:12:07.920652 2024-09-11 09:12:07.920657 plgnd 106081482X R rec ab1dcc4c-6dc8-45f5-aae8-0f2f0fca97f5 +2024-09-11 09:12:07.993457 2024-09-11 09:12:07.993462 plgnd 1060503611 R rec 0b83932c-4699-434c-b22f-761b9c1b5e4a +2024-09-11 09:12:08.0617 2024-09-11 09:12:08.061711 plgnd 1060503166 R rec 8f7699c7-cb32-458d-9b4c-bbb4c27db131 +2024-09-11 09:12:08.153739 2024-09-11 09:12:08.153745 plgnd 1060502798 R rec c99cc929-3deb-4b84-9cfa-b2028d0cae7a +2024-09-11 09:12:08.201579 2024-09-11 09:12:08.201584 plgnd 1060502682 R rec 904abde3-8760-4871-9dcd-018fa5ec171a +2024-09-11 09:12:08.253949 2024-09-11 09:12:08.253966 plgnd 1060502585 R rec 6707ca1f-4d04-4165-be2d-559d4b130b93 +2024-09-11 09:12:08.317603 2024-09-11 09:12:08.317613 plgnd 1060502372 R rec 00e4ea78-628d-47d2-bb6a-4ba174a1ff49 +2024-09-11 09:12:08.390859 2024-09-11 09:12:08.390864 plgnd 106050216X R rec 529ecf03-ff3c-41dd-b4fe-102cc46db45c +2024-09-11 09:12:08.470483 2024-09-11 09:12:08.470488 plgnd 1060501902 R rec 67a1405a-2714-447a-904a-28bf31ddc519 +2024-09-11 09:12:08.539518 2024-09-11 09:12:08.539534 plgnd 1060501759 R rec 970efc49-b115-440a-a259-bd997bed595f +2024-09-11 09:12:08.60722 2024-09-11 09:12:08.607231 plgnd 1060501457 R rec ab404515-f056-4644-856b-041df5eaa6b8 +2024-09-11 09:12:08.673889 2024-09-11 09:12:08.673895 plgnd 106050104X R rec 9c59f55c-595d-4c3b-b057-03335c501acb +2024-09-11 09:12:08.747616 2024-09-11 09:12:08.747626 plgnd 1060419319 R rec 7fea4ca7-2349-4a2e-a53f-b21362ecdbcc +2024-09-11 09:12:08.822739 2024-09-11 09:12:08.822744 plgnd 1060401134 R rec a253ce7c-3fbb-456f-a4b6-e2d42e63f16c +2024-09-11 09:12:08.887862 2024-09-11 09:12:08.887872 plgnd 1060238128 R rec c2e93b90-6b43-4a11-a4b5-e76276ec2d0a +2024-09-11 09:12:08.946283 2024-09-11 09:12:08.946294 plgnd 1060132206 R rec 707f2915-1d67-4fba-920f-e6d0099de055 +2024-09-11 09:12:09.024793 2024-09-11 09:12:09.024799 plgnd 1060087367 R rec 1aab78e0-42f2-4ec5-876a-81c32f64d250 +2024-09-11 09:12:09.094937 2024-09-11 09:12:09.094942 plgnd 1059448831 R rec 00335125-85c4-4ff3-86e2-f616edd35906 +2024-09-11 09:12:09.172677 2024-09-11 09:12:09.172682 plgnd 1059378396 R rec 06992169-ac2f-43b8-ba78-e275a11a1b1e +2024-09-11 09:12:09.230698 2024-09-11 09:12:09.230703 plgnd 1059376946 R rec 6c9e1e3f-f328-447f-bdc0-c8db51285dbd +2024-09-11 09:12:09.284289 2024-09-11 09:12:09.284295 plgnd 1059359022 R rec 67e5386d-abb8-4c60-bca0-eb5e7030efab +2024-09-11 09:12:09.342625 2024-09-11 09:12:09.342631 plgnd 1059357755 R rec 6cef1ca5-86fe-4dc0-a4d4-928e62e55d80 +2024-09-11 09:12:09.402674 2024-09-11 09:12:09.40268 plgnd 1059250454 R rec d5d94ef5-7e3a-481e-a22c-b33fadf6409c +2024-09-11 09:12:09.472368 2024-09-11 09:12:09.472386 plgnd 105914249X R rec dd55ae1a-8bf9-4239-8c4d-7a6151b4260c +2024-09-11 09:12:09.555914 2024-09-11 09:12:09.55592 plgnd 1058994743 R rec 36733e0e-b844-4bfc-8afa-5d5097fd68b5 +2024-09-11 09:12:09.629303 2024-09-11 09:12:09.629312 plgnd 1058986333 R rec 832e7c20-cdde-45c7-bcaf-b9bdd3a71c77 +2024-09-11 09:12:09.690486 2024-09-11 09:12:09.690496 plgnd 1058985299 R rec ce5c24ed-68c4-444a-ae36-3b33651a61fe +2024-09-11 09:12:09.744515 2024-09-11 09:12:09.744521 plgnd 1058984144 R rec 02f857e8-d797-47a1-b7e2-d3b309a17834 +2024-09-11 09:12:09.810631 2024-09-11 09:12:09.810636 plgnd 1058973045 R rec f97daf61-aff3-46fa-84af-9571d61becb8 +2024-09-11 09:12:09.870633 2024-09-11 09:12:09.870644 plgnd 1058939068 R rec bf8970a4-ad30-4b66-812c-5921692b1b33 +2024-09-11 09:12:09.951609 2024-09-11 09:12:09.951614 plgnd 105892978X R rec dd09168d-fd65-43ef-925c-4bb67200fb35 +2024-09-11 09:12:10.010021 2024-09-11 09:12:10.010026 plgnd 1058928732 R rec d2b3ab07-260a-4007-9a48-0aeea2d98cde +2024-09-11 09:12:10.082512 2024-09-11 09:12:10.082523 plgnd 1058919954 R rec e8e082b7-9194-479a-b614-9ae3088c90ad +2024-09-11 09:12:10.157073 2024-09-11 09:12:10.157084 plgnd 1058918176 R rec a7fb9857-d293-4e62-a668-c6e8f9963589 +2024-09-11 09:12:10.237123 2024-09-11 09:12:10.237129 plgnd 1058899597 R rec f1621a10-6f03-4e05-ac0c-de67337e81a2 +2024-09-11 09:12:10.305318 2024-09-11 09:12:10.30533 plgnd 1058896318 R rec 70cfc50b-3a06-4965-abd7-4135741f5e34 +2024-09-11 09:12:10.376423 2024-09-11 09:12:10.376433 plgnd 1058890611 R rec 8443f4ac-9e24-407a-ba3c-f9382a0bccd3 +2024-09-11 09:12:10.435296 2024-09-11 09:12:10.4353 plgnd 1058880373 R rec fd10487c-9907-4780-ad61-3716dc054100 +2024-09-11 09:12:10.498204 2024-09-11 09:12:10.498214 plgnd 1058876872 R rec ad33ede8-e037-472f-830f-02a731a5cf05 +2024-09-11 09:12:10.564113 2024-09-11 09:12:10.564117 plgnd 1058840819 R rec 6181f28e-db21-45e3-a43c-00496dc19203 +2024-09-11 09:12:10.617888 2024-09-11 09:12:10.617893 plgnd 1058838512 R rec 858e3fcf-d2e1-4705-a3cf-17abc422304b +2024-09-11 09:12:10.68477 2024-09-11 09:12:10.684775 plgnd 1058667343 R rec 3e767764-9875-4cfd-8d5a-ebd2337fabd1 +2024-09-11 09:12:10.74316 2024-09-11 09:12:10.743171 plgnd 1058664468 R rec 75dadb25-1ac5-4028-bd76-31afcb0da9d8 +2024-09-11 09:12:10.798727 2024-09-11 09:12:10.798737 plgnd 1058661396 R rec cf8891e2-20cc-456b-a363-b16aecc1a916 +2024-09-11 09:12:10.87105 2024-09-11 09:12:10.871055 plgnd 1058651994 R rec 51d3b876-b4bf-4788-bf06-a8ad3857df6f +2024-09-11 09:12:10.941643 2024-09-11 09:12:10.941648 plgnd 1058639919 R rec c6cc6c8c-8cd4-4c01-9ddc-299194a6d235 +2024-09-11 09:12:11.019749 2024-09-11 09:12:11.019754 plgnd 105863982X R rec 4f7b0f65-2aeb-4833-8e43-e9cc85d5d256 +2024-09-11 09:12:11.094001 2024-09-11 09:12:11.094011 plgnd 1058622773 R rec 0004040a-669a-45f0-9b4a-9318f4ab3aa7 +2024-09-11 09:12:11.162028 2024-09-11 09:12:11.162032 plgnd 1058616684 R rec 4fbec76c-2dfa-4a46-8244-895ab4bf1b03 +2024-09-11 09:12:11.227788 2024-09-11 09:12:11.227793 plgnd 1058616579 R rec 831b1581-c295-42de-9f14-74893f54874c +2024-09-11 09:12:11.307867 2024-09-11 09:12:11.307879 plgnd 1058583018 R rec 674357ee-17d5-4615-9a5f-323e8bd331e4 +2024-09-11 09:12:11.392367 2024-09-11 09:12:11.392378 plgnd 1058579045 R rec d5a566e6-2483-4942-be8c-4fb0cce8d76b +2024-09-11 09:12:11.475428 2024-09-11 09:12:11.475433 plgnd 1058463993 R rec f73d9198-7cfb-44c1-a942-10edefff2118 +2024-09-11 09:12:11.552704 2024-09-11 09:12:11.552708 plgnd 1058463896 R rec 9d453b86-f9e3-406a-b164-9267bb093cc8 +2024-09-11 09:12:11.643236 2024-09-11 09:12:11.643248 plgnd 1058460862 R rec e18c8596-7dc6-4f7c-a006-4c74412eff8e +2024-09-11 09:12:11.703073 2024-09-11 09:12:11.703078 plgnd 1058460293 R rec 79eb50f1-45f3-46df-9a6b-36bafcb49612 +2024-09-11 09:12:11.756985 2024-09-11 09:12:11.756994 plgnd 1058395726 R rec 72a1c82f-9112-4e4a-bb8e-b4fdaf07f776 +2024-09-11 09:12:11.822034 2024-09-11 09:12:11.822045 plgnd 1058041142 R rec 901ca7f9-2b41-451e-99e9-e02b4db43a42 +2024-09-11 09:12:11.892131 2024-09-11 09:12:11.892143 plgnd 1057942928 R rec 6e488794-d87c-4bc3-bfd5-0687c0d00c9a +2024-09-11 09:12:11.964173 2024-09-11 09:12:11.964184 plgnd 1056973714 R rec 29e168e7-36c0-44af-9d17-a9d6b485c865 +2024-09-11 09:12:12.034704 2024-09-11 09:12:12.034715 plgnd 1055068716 R rec c4e998e3-1435-455a-897e-880b895140de +2024-09-11 09:12:12.099307 2024-09-11 09:12:12.099318 plgnd 1054961824 R rec d3786adc-4692-4fe1-a114-9f3d568ae378 +2024-09-11 09:12:12.182131 2024-09-11 09:12:12.182136 plgnd 1054631026 R rec ae61eede-b5c8-4a28-960c-f76b3c5bf51a +2024-09-11 09:12:12.244662 2024-09-11 09:12:12.244672 plgnd 1054611041 R rec 1e85843f-828b-4896-8475-eaa1cc92f48d +2024-09-11 09:12:12.321981 2024-09-11 09:12:12.321992 plgnd 1054442959 R rec 1a6c6420-9fa8-41f3-8dbb-5bd047c84c9c +2024-09-11 09:12:12.394075 2024-09-11 09:12:12.39408 plgnd 1054382255 R rec 46113f00-e2ad-4705-936f-53a7e403f209 +2024-09-11 09:12:12.463787 2024-09-11 09:12:12.463797 plgnd 1054036489 R rec 1274dab1-8e6d-4c02-a6a7-60c3d5426d57 +2024-09-11 09:12:12.531809 2024-09-11 09:12:12.531814 plgnd 1054036322 R rec d1aad4fb-852c-44d2-9daa-ad394487f496 +2024-09-11 09:12:12.586029 2024-09-11 09:12:12.586041 plgnd 105382467X R rec 3a8a12ac-950f-457a-998e-0fb71a44f60a +2024-09-11 09:12:12.659379 2024-09-11 09:12:12.659384 plgnd 1053733119 R rec 243ec614-8342-4d98-be77-162129787a75 +2024-09-11 09:12:12.71591 2024-09-11 09:12:12.715915 plgnd 1053694857 R rec 866d2469-4302-4b72-9ba4-453d47c3eddb +2024-09-11 09:12:12.790726 2024-09-11 09:12:12.790737 plgnd 105366916X R rec 1f233770-7118-464c-bad3-a5302bcfcb2d +2024-09-11 09:12:12.859204 2024-09-11 09:12:12.859214 plgnd 1053585039 R rec 9c4fa906-ddfb-4a00-b28b-60ba85e6972e +2024-09-11 09:12:12.920929 2024-09-11 09:12:12.92094 plgnd 1053578571 R rec 793af373-3457-41f7-96ac-cb03370bbe36 +2024-09-11 09:12:12.991244 2024-09-11 09:12:12.991249 plgnd 1053495382 R rec 80acfb51-93d8-4945-87e4-26ea20b2b051 +2024-09-11 09:12:13.058057 2024-09-11 09:12:13.058062 plgnd 1053460856 R rec 703b4c60-319b-4c45-a4f7-7a8d55665042 +2024-09-11 09:12:13.142282 2024-09-11 09:12:13.142293 plgnd 1051746663 R rec ac8c5377-768a-4217-87f8-d935771d7040 +2024-09-11 09:12:13.197065 2024-09-11 09:12:13.197071 plgnd 1044268069 R rec 3d50c9d6-a91d-418b-8bf7-9400ec8c1853 +2024-09-11 09:12:13.256458 2024-09-11 09:12:13.256467 plgnd 1038831628 R rec cca0d69e-a490-4dbc-8f37-5c9f47eb8a80 +2024-09-11 09:12:13.333913 2024-09-11 09:12:13.333918 plgnd 1036912949 R rec 81bfa320-1c47-4dfb-8165-e04061917f54 +2024-09-11 09:12:13.395738 2024-09-11 09:12:13.395743 plgnd 1036573141 R rec 534f5c5b-fa00-48a8-8bfd-d18a9f43335f +2024-09-11 09:12:13.463393 2024-09-11 09:12:13.463398 plgnd 1035487640 R rec aa241e93-a0e3-44e7-ab73-acd2f8736f42 +2024-09-11 09:12:13.513579 2024-09-11 09:12:13.513583 plgnd 1032436034 R rec e87c999f-9de7-4429-a57f-1b811ebf42a3 +2024-09-11 09:12:13.565565 2024-09-11 09:12:13.565576 plgnd 1031571922 R rec 64cb0b72-7266-4cb9-af0c-fc1513051f0a +2024-09-11 09:12:13.650294 2024-09-11 09:12:13.650306 plgnd 1029389896 R rec c56889f6-cf11-4c51-aef2-9d74be6a8337 +2024-09-11 09:12:13.703074 2024-09-11 09:12:13.70308 plgnd 1029389233 R rec c7ba1f99-c516-4149-949d-9a375cdb0a66 +2024-09-11 09:12:13.765937 2024-09-11 09:12:13.765952 plgnd 1029388334 R rec 2cc30d60-a891-43af-a9e6-acf94c1346ea +2024-09-11 09:12:13.842652 2024-09-11 09:12:13.842668 plgnd 1028231660 R rec c1138a04-b169-46f9-84cb-042622022e19 +2024-09-11 09:12:13.921196 2024-09-11 09:12:13.921201 plgnd 1024812693 R rec 87fde741-66c1-481f-940e-3a6d770d7b2d +2024-09-11 09:12:13.985423 2024-09-11 09:12:13.985433 plgnd 1021396656 R rec e224edab-3415-456c-8a4d-48c0f6a24d17 +2024-09-11 09:12:14.060272 2024-09-11 09:12:14.060278 plgnd 1021113018 R rec 39a9cbc1-46bc-4ffc-b04a-e24fd4d509b5 +2024-09-11 09:12:14.132633 2024-09-11 09:12:14.132644 plgnd 1021112577 R rec c1aa9a0b-283f-460d-8444-f1dcc4fc6c7b +2024-09-11 09:12:14.20458 2024-09-11 09:12:14.204585 plgnd 1021112518 R rec 5a588d39-617d-4d21-917a-fa1eb92e6e4d +2024-09-11 09:12:14.258706 2024-09-11 09:12:14.258712 plgnd 1021112216 R rec 1ffc2018-2b72-46a9-8836-65e3834bfcc9 +2024-09-11 09:12:14.321723 2024-09-11 09:12:14.321729 plgnd 1021056154 R rec 77d2b669-607a-415b-875a-940ff603c373 +2024-09-11 09:12:14.381567 2024-09-11 09:12:14.381572 plgnd 1020911387 R rec 4ce14684-c33d-464d-b1df-145f80273959 +2024-09-11 09:12:14.450223 2024-09-11 09:12:14.450232 plgnd 1020911344 R rec ea0fd866-ddb9-43cd-83ba-d71e909e47b7 +2024-09-11 09:12:14.529953 2024-09-11 09:12:14.529965 plgnd 1020911026 R rec 8cd90543-893e-4cd1-a364-a6b757a79c79 +2024-09-11 09:12:14.603614 2024-09-11 09:12:14.603619 plgnd 1020897325 R rec 5fdf6bc1-5267-4f9f-a855-774d8c2fe73e +2024-09-11 09:12:14.660335 2024-09-11 09:12:14.660346 plgnd 1020897236 R rec d108402a-ac2d-4157-9463-7ad828c138e7 +2024-09-11 09:12:14.714157 2024-09-11 09:12:14.714161 plgnd 1020865318 R rec 670ccf21-3de2-487f-8712-1cd9787bcba6 +2024-09-11 09:12:14.777241 2024-09-11 09:12:14.777252 plgnd 1020865237 R rec 98b3681b-9048-4df3-9046-c028c969e54d +2024-09-11 09:12:14.855411 2024-09-11 09:12:14.855416 plgnd 1016112106 R rec a418a170-ca73-4097-b29e-eaea45f460cd +2024-09-11 09:12:14.934003 2024-09-11 09:12:14.934009 plgnd 1011060752 R rec d5979446-cc4a-4c7f-a35e-1ff8c59ae74e +2024-09-11 09:12:15.00896 2024-09-11 09:12:15.008965 plgnd 1010438603 R rec 060eb00f-9836-49c3-8bef-e04f2871a2a9 +2024-09-11 09:12:15.07917 2024-09-11 09:12:15.079182 plgnd 1010249460 R rec 17f4e136-7644-4854-9cc1-2cd9c74dfbcf +2024-09-11 09:12:15.151793 2024-09-11 09:12:15.151798 plgnd 1009847430 R rec 6d9cdf2b-0c06-4f7f-ba9c-7cc6eb4b8b5a +2024-09-11 09:12:15.225776 2024-09-11 09:12:15.225782 plgnd 1009707922 R rec 6a4f17ec-db11-43a3-a979-92e4be4d89a8 +2024-09-11 09:12:15.292431 2024-09-11 09:12:15.292436 plgnd 1008073997 R rec 5df3301e-4cde-48ba-abec-44ea29ed5b70 +2024-09-11 09:12:15.368483 2024-09-11 09:12:15.368492 plgnd 1002427517 R rec b9d825a1-0a42-4770-b496-73b9e979eef8 +2024-09-11 09:12:15.440624 2024-09-11 09:12:15.440629 plgnd 1001762630 R rec b88d4231-17d6-40b7-a20a-5a172c63ce14 +2024-09-11 09:12:15.515491 2024-09-11 09:12:15.515501 plgnd 996588051 R rec 186668cf-ad36-41fe-876f-99008b169a6c +2024-09-11 09:12:15.597831 2024-09-11 09:12:15.597842 plgnd 996155910 R rec 755e9faf-2d72-469a-b60a-94ed64f1cb8a +2024-09-11 09:12:15.697292 2024-09-11 09:12:15.697297 plgnd 995191506 R rec 60eb4afe-ce94-43ee-997b-98d824a16423 +2024-09-11 09:12:15.749268 2024-09-11 09:12:15.749273 plgnd 994536666 R rec 967936aa-415e-4bf3-863f-72be6aad1155 +2024-09-11 09:12:15.815565 2024-09-11 09:12:15.815576 plgnd 992346371 R rec b9f79173-4ae9-49d1-8885-4a046c847f3b +2024-09-11 09:12:15.884309 2024-09-11 09:12:15.884313 plgnd 989505952 R rec f1667dd6-0940-46fa-bf5c-1e327f3bf940 +2024-09-11 09:12:15.965385 2024-09-11 09:12:15.965391 plgnd 98831326X R rec 45a1686c-385a-45f9-bef3-763a3541493f +2024-09-11 09:12:16.049137 2024-09-11 09:12:16.049142 plgnd 985253576 R rec 96a3d71d-e4bb-4a0d-8dde-31cc868bc391 +2024-09-11 09:12:16.116076 2024-09-11 09:12:16.116081 plgnd 984645942 R rec 279fed09-2855-496a-bcf9-49e6f2d038b8 +2024-09-11 09:12:16.176135 2024-09-11 09:12:16.176141 plgnd 980891248 R rec c75a2449-79a4-46de-9844-9f00985bfc9d +2024-09-11 09:12:16.237633 2024-09-11 09:12:16.237638 plgnd 979131529 R rec 99f3c439-c659-4114-82d3-91fd99fc41f3 +2024-09-11 09:12:16.299133 2024-09-11 09:12:16.299144 plgnd 978966228 R rec 0bfcf8e7-b16e-49d8-887c-f29afeb1d8b9 +2024-09-11 09:12:16.377141 2024-09-11 09:12:16.377146 plgnd 978923855 R rec 18531370-b75e-44a7-9055-103901715253 +2024-09-11 09:12:16.443776 2024-09-11 09:12:16.443787 plgnd 975958925 R rec 8a77d223-c8af-4427-9d4b-ef7129e90444 +2024-09-11 09:12:16.501982 2024-09-11 09:12:16.501986 plgnd 975328573 R rec 9b58aee5-659c-4de6-a3f7-726cf6bd632c +2024-09-11 09:12:16.569443 2024-09-11 09:12:16.569455 plgnd 974245747 R rec ce040bc5-1027-4f57-9be0-ff62c08da268 +2024-09-11 09:12:16.64088 2024-09-11 09:12:16.64089 plgnd 97424225X R rec 302304f0-8fe3-4112-bd6b-d1f86fa8949b +2024-09-11 09:12:16.70525 2024-09-11 09:12:16.705254 plgnd 973071648 R rec a67dab2c-fe77-4549-8c16-9cb0234ee4e1 +2024-09-11 09:12:16.770353 2024-09-11 09:12:16.770364 plgnd 973066261 R rec 91b9f48f-1869-48b0-9939-89d2d61fa538 +2024-09-11 09:12:16.863541 2024-09-11 09:12:16.863551 plgnd 973066245 R rec f558afc0-5c98-4c43-a4c5-ca2a9820aef0 +2024-09-11 09:12:16.938762 2024-09-11 09:12:16.938767 plgnd 973040149 R rec 7d989722-4c6b-4050-b24a-905af33eeb08 +2024-09-11 09:12:17.015524 2024-09-11 09:12:17.015529 plgnd 972651438 R rec 4e76a0e3-1d98-4695-9d31-599913e50361 +2024-09-11 09:12:17.097218 2024-09-11 09:12:17.097223 plgnd 972586601 R rec 62766fc6-e813-43c7-b899-d60deaaa0fbf +2024-09-11 09:12:17.167664 2024-09-11 09:12:17.167675 plgnd 972515704 R rec 48dad72c-537c-4c71-8a68-a05418c0708f +2024-09-11 09:12:17.226465 2024-09-11 09:12:17.22647 plgnd 971359709 R rec 276eed62-81e0-4564-9c33-4e52eb795afb +2024-09-11 09:12:17.292251 2024-09-11 09:12:17.292257 plgnd 970139470 R rec 0b1c68d3-1e4b-42dc-ab60-046ebeae90ed +2024-09-11 09:12:17.367461 2024-09-11 09:12:17.367471 plgnd 969971028 R rec ae633a9b-9cb4-47be-a8c1-7d2fb66a5ece +2024-09-11 09:12:17.436725 2024-09-11 09:12:17.43673 plgnd 969491131 R rec ae2b1407-43b5-43c6-96e4-a7d42fc2c3ab +2024-09-11 09:12:17.499552 2024-09-11 09:12:17.499556 plgnd 967753546 R rec e956567e-f4e5-47b5-af82-5e06999fc35d +2024-09-11 09:12:17.563364 2024-09-11 09:12:17.563368 plgnd 967681952 R rec 84b6b0ba-fea3-4535-8108-7f50cf72de42 +2024-09-11 09:12:17.635931 2024-09-11 09:12:17.635937 plgnd 967581176 R rec 648aacf8-3b93-42bd-bf83-615f5f0d11ae +2024-09-11 09:12:17.699613 2024-09-11 09:12:17.699619 plgnd 967180953 R rec cda8c1b5-d12a-4633-9467-fa68c2662fb0 +2024-09-11 09:12:17.774911 2024-09-11 09:12:17.774922 plgnd 967160480 R rec 49ac1256-1452-4e45-a47f-be781c796314 +2024-09-11 09:12:17.843399 2024-09-11 09:12:17.84341 plgnd 96577578X R rec 06a61543-564d-4b6c-92cb-0b8855744c10 +2024-09-11 09:12:17.941514 2024-09-11 09:12:17.941525 plgnd 965775429 R rec aad0ac94-52bc-45a3-9822-bddf5ba3d945 +2024-09-11 09:12:18.020642 2024-09-11 09:12:18.020649 plgnd 965774910 R rec 654368f9-504b-4f02-9e46-9d3ed630aa68 +2024-09-11 09:12:18.109513 2024-09-11 09:12:18.109523 plgnd 965759059 R rec a171ff8f-3253-4703-831b-c4533ef3acdb +2024-09-11 09:12:18.189374 2024-09-11 09:12:18.189379 plgnd 96575877X R rec 7ff4fa1e-d3d7-4345-9c89-883e6aa9abec +2024-09-11 09:12:18.244372 2024-09-11 09:12:18.244377 plgnd 96563860X R rec 2bf4ee3e-937c-473e-a588-82d4b9d931f8 +2024-09-11 09:12:18.308441 2024-09-11 09:12:18.308446 plgnd 964991608 R rec 39c9dffe-2bc9-47b7-8997-95101f670b36 +2024-09-11 09:12:18.376217 2024-09-11 09:12:18.376228 plgnd 964462427 R rec 81b09fac-0ec7-4e70-a2db-9c1650c0564e +2024-09-11 09:12:18.45601 2024-09-11 09:12:18.456019 plgnd 96411822X R rec 51f3b824-682b-427b-a1d8-abfd455136fc +2024-09-11 09:12:18.53004 2024-09-11 09:12:18.530051 plgnd 963982559 R rec b9babfb2-3043-4af7-9eff-b1cef689dc16 +2024-09-11 09:12:18.607532 2024-09-11 09:12:18.607542 plgnd 963957635 R rec e736294a-1586-48b6-b9f0-cae2153bfdb1 +2024-09-11 09:12:18.690652 2024-09-11 09:12:18.690658 plgnd 963614673 R rec 094707cf-7336-4a12-a8b5-476dae8b1c88 +2024-09-11 09:12:18.755663 2024-09-11 09:12:18.755676 plgnd 963462539 R rec 73cffcd5-3a9a-497e-9592-8ffcf80571fb +2024-09-11 09:12:18.851904 2024-09-11 09:12:18.851909 plgnd 963082132 R rec b2b08f02-dc95-4ea1-90e2-bf0948c76e97 +2024-09-11 09:12:18.908761 2024-09-11 09:12:18.908772 plgnd 962048879 R rec d69b1e30-ee23-4603-9e0c-f57d7e68534e +2024-09-11 09:12:18.977506 2024-09-11 09:12:18.977511 plgnd 961594519 R rec ea533f1e-6c3c-4194-b1c7-d21ba7df2668 +2024-09-11 09:12:19.049422 2024-09-11 09:12:19.049428 plgnd 961594497 R rec d776c6c7-c5be-4c17-9454-39406ca50eed +2024-09-11 09:12:19.114962 2024-09-11 09:12:19.114971 plgnd 961594454 R rec d55dd5be-1306-4c17-a1b6-df9069b05d71 +2024-09-11 09:12:19.183322 2024-09-11 09:12:19.183327 plgnd 961395923 R rec 86493682-c343-4c25-a200-9a7289e48fde +2024-09-11 09:12:19.24263 2024-09-11 09:12:19.242635 plgnd 960863664 R rec 01600014-14a4-4219-b1ec-854558b36dbc +2024-09-11 09:12:19.3138 2024-09-11 09:12:19.313811 plgnd 960833919 R rec cea00842-27ad-4605-9ca3-7187fd896147 +2024-09-11 09:12:19.391602 2024-09-11 09:12:19.391613 plgnd 960396268 R rec 1047d31c-85b5-4f04-a8ae-c72b3c2559b0 +2024-09-11 09:12:19.459639 2024-09-11 09:12:19.459652 plgnd 960085726 R rec 4cda808b-2062-4872-9eb2-19f53e6a55ea +2024-09-11 09:12:19.530127 2024-09-11 09:12:19.530133 plgnd 959934464 R rec bd829160-8f6b-4643-87f0-dffd09f8c1b8 +2024-09-11 09:12:19.600179 2024-09-11 09:12:19.600184 plgnd 959918612 R rec 590e5fb0-64ce-488c-a45e-95485e1f685a +2024-09-11 09:12:19.675088 2024-09-11 09:12:19.675099 plgnd 959788719 R rec 0624ca1e-007f-48e6-a7fc-9015053cb189 +2024-09-11 09:12:19.723681 2024-09-11 09:12:19.723685 plgnd 959747575 R rec 66401ce6-490e-4c35-aa2d-7463efa174fd +2024-09-11 09:12:19.788647 2024-09-11 09:12:19.788652 plgnd 959369872 R rec bd77d496-dba3-4066-95f9-7559583a623f +2024-09-11 09:12:19.857516 2024-09-11 09:12:19.857526 plgnd 958777055 R rec 19bd401a-6d9d-4d29-bce2-3802d9796d01 +2024-09-11 09:12:19.931954 2024-09-11 09:12:19.931959 plgnd 958014639 R rec 146c4ef2-1ef6-4dfb-b682-b7817c8be5e2 +2024-09-11 09:12:20.005485 2024-09-11 09:12:20.00549 plgnd 957753551 R rec faca5f97-69e5-44d3-900c-f3e48de8a11f +2024-09-11 09:12:20.084497 2024-09-11 09:12:20.084506 plgnd 957586973 R rec 86e132d6-5374-48e4-872e-222d5cc1fe61 +2024-09-11 09:12:20.155407 2024-09-11 09:12:20.155419 plgnd 957565445 R rec 8e19acb6-3ebe-4714-8ba9-c6cad1617d51 +2024-09-11 09:12:20.213115 2024-09-11 09:12:20.21312 plgnd 957211430 R rec f0548031-2b49-41f0-9ed3-add945740062 +2024-09-11 09:12:20.27357 2024-09-11 09:12:20.27358 plgnd 956443877 R rec 00512af4-1296-4119-8ee2-8f5971699f8e +2024-09-11 09:12:20.343012 2024-09-11 09:12:20.343025 plgnd 956443842 R rec 68f88ada-ca03-4666-97e1-6b78cccbd073 +2024-09-11 09:12:20.423024 2024-09-11 09:12:20.423035 plgnd 956443613 R rec b78d5027-40a8-4239-ba09-eeceaa014c20 +2024-09-11 09:12:20.514693 2024-09-11 09:12:20.514704 plgnd 955960134 R rec b1607336-bc27-4c43-9844-11956e6cf38b +2024-09-11 09:12:20.603549 2024-09-11 09:12:20.603553 plgnd 955820049 R rec e97716fc-b146-40a3-8a19-cb37030d680b +2024-09-11 09:12:20.678952 2024-09-11 09:12:20.678957 plgnd 955573246 R rec 860b579b-f493-4d75-9473-01bb8bd5915c +2024-09-11 09:12:20.72939 2024-09-11 09:12:20.729396 plgnd 955498058 R rec 43731e87-2610-4ba1-861c-5bf16f98ec95 +2024-09-11 09:12:20.791504 2024-09-11 09:12:20.791516 plgnd 955495768 R rec 1e798fbb-ff34-4f65-b0b0-dc50240e99c3 +2024-09-11 09:12:20.867596 2024-09-11 09:12:20.867602 plgnd 955090547 R rec f7e9bb2f-b183-493a-bcdf-fe44aa9e1029 +2024-09-11 09:12:20.948129 2024-09-11 09:12:20.948142 plgnd 954472683 R rec dff3c6bf-98ff-43db-93a8-3cae71f00dab +2024-09-11 09:12:21.022682 2024-09-11 09:12:21.022688 plgnd 954071832 R rec ed3a8a26-a7e2-417a-ac93-559581aa6c3b +2024-09-11 09:12:21.090085 2024-09-11 09:12:21.090096 plgnd 954064593 R rec 84bf1dff-017b-4065-880e-4be87d385af4 +2024-09-11 09:12:21.177768 2024-09-11 09:12:21.177774 plgnd 953168697 R rec 35db9829-91ed-4d44-8e1e-d43341839977 +2024-09-11 09:12:21.237644 2024-09-11 09:12:21.237655 plgnd 953105024 R rec d040a2c8-0984-4d1b-a133-c5bec5005194 +2024-09-11 09:12:21.32817 2024-09-11 09:12:21.328181 plgnd 952110512 R rec e6fbc016-00f3-46dd-8dab-cd78ae074ab1 +2024-09-11 09:12:21.41078 2024-09-11 09:12:21.410786 plgnd 951677268 R rec 243013b7-1c55-466f-8f6e-558dcf4aeaf8 +2024-09-11 09:12:21.485047 2024-09-11 09:12:21.485057 plgnd 951510282 R rec 58bdedbd-9a5f-48f6-ad1f-d1b9ea8b861e +2024-09-11 09:12:21.558948 2024-09-11 09:12:21.55896 plgnd 951510274 R rec 2470635a-a415-4423-b230-ca797471fad5 +2024-09-11 09:12:21.627616 2024-09-11 09:12:21.627622 plgnd 951510258 R rec 7a8fe126-8727-42b4-8e14-1e80a51697e4 +2024-09-11 09:12:21.690485 2024-09-11 09:12:21.690491 plgnd 95135793X R rec a3171007-0b58-4f5f-bbeb-aa36906afd89 +2024-09-11 09:12:21.747983 2024-09-11 09:12:21.747988 plgnd 950649155 R rec bc99c905-3ab5-46cb-bb47-91dfdcd5832b +2024-09-11 09:12:21.811624 2024-09-11 09:12:21.811637 plgnd 950556149 R rec f400e22a-fc89-4ab5-bfdf-9a48da9dfb44 +2024-09-11 09:12:21.882778 2024-09-11 09:12:21.882789 plgnd 950356190 R rec 4d1d3ecf-a2d3-43ea-88fa-a12e60e59c4c +2024-09-11 09:12:21.958663 2024-09-11 09:12:21.958669 plgnd 950339490 R rec 23e0bc1c-7120-4f8b-b4a8-b9bcac37956f +2024-09-11 09:12:22.020121 2024-09-11 09:12:22.020126 plgnd 950339407 R rec 2769ec46-4687-4ee3-9b16-fc78d47461a1 +2024-09-11 09:12:22.072431 2024-09-11 09:12:22.072442 plgnd 950338338 R rec ee05d0c1-096e-4ff8-8a52-077edfa6dfc6 +2024-09-11 09:12:22.138187 2024-09-11 09:12:22.138198 plgnd 95033829X R rec f85111ab-3385-4e84-bb56-b243a473d24e +2024-09-11 09:12:22.202564 2024-09-11 09:12:22.202569 plgnd 950338230 R rec 82a9a25d-4be4-4c68-80a2-9dbcbc892da5 +2024-09-11 09:12:22.26998 2024-09-11 09:12:22.269992 plgnd 950338184 R rec d8605024-ad22-453d-a10f-245d6e91fc72 +2024-09-11 09:12:22.344405 2024-09-11 09:12:22.344417 plgnd 950332429 R rec f97a940e-1837-45e4-a8e1-30e3fad6a165 +2024-09-11 09:12:22.41397 2024-09-11 09:12:22.413982 plgnd 950332011 R rec 83dac16c-b3b0-4343-9952-c69b19459663 +2024-09-11 09:12:22.492797 2024-09-11 09:12:22.492802 plgnd 950331821 R rec d45325ff-b0ba-4c78-8c54-851412ca319b +2024-09-11 09:12:22.573109 2024-09-11 09:12:22.573121 plgnd 950315354 R rec e9645765-3822-4da3-a208-e92e361f79b7 +2024-09-11 09:12:22.652807 2024-09-11 09:12:22.65282 plgnd 95020109X R rec 06750840-b409-46dd-9c8d-b2eb8b44ca58 +2024-09-11 09:12:22.716582 2024-09-11 09:12:22.716587 plgnd 950199850 R rec 5e4a82e5-33be-4a33-b92f-768d357ac6ff +2024-09-11 09:12:22.771091 2024-09-11 09:12:22.771096 plgnd 950199214 R rec b6b7646c-e279-439b-9963-13a118b1eab7 +2024-09-11 09:12:22.843566 2024-09-11 09:12:22.843577 plgnd 950168637 R rec c05b8fa4-395a-409d-a497-c7f4ef451fac +2024-09-11 09:12:22.911632 2024-09-11 09:12:22.911651 plgnd 949740861 R rec e31c4c9b-216c-4634-8067-98f04b87f8e9 +2024-09-11 09:12:22.990409 2024-09-11 09:12:22.990422 plgnd 949647314 R rec f11c9b13-3f13-40ae-9ace-92b47773ba4e +2024-09-11 09:12:23.07188 2024-09-11 09:12:23.071893 plgnd 949641804 R rec 5fce5165-a1c6-4961-ad7a-cb5f146c81f9 +2024-09-11 09:12:23.196623 2024-09-11 09:12:23.196629 plgnd 94963218X R rec 8f3ab30b-6ade-47d0-bda5-25df15353590 +2024-09-11 09:12:23.255979 2024-09-11 09:12:23.255984 plgnd 949632163 R rec 02883ec7-8a32-41f0-954e-182433928a5e +2024-09-11 09:12:23.366283 2024-09-11 09:12:23.366288 plgnd 949632147 R rec 1bd7f4d6-1e3a-4112-8c47-514d87097f3b +2024-09-11 09:12:23.413316 2024-09-11 09:12:23.413322 plgnd 949632120 R rec f6fbaf7e-dee6-4d50-a84e-9abdc87d6643 +2024-09-11 09:12:23.461108 2024-09-11 09:12:23.461113 plgnd 949632104 R rec 49c09e6a-8305-41e1-aaf1-1005677d2bc0 +2024-09-11 09:12:23.508673 2024-09-11 09:12:23.508678 plgnd 949607266 R rec 10581db2-8ccd-4f6b-ad21-11363511e447 +2024-09-11 09:12:23.556577 2024-09-11 09:12:23.556583 plgnd 949602310 R rec 064d1aaf-84d2-42b5-a2d7-d8458133d0db +2024-09-11 09:12:23.606442 2024-09-11 09:12:23.606447 plgnd 948791659 R rec 5e7327d4-4d42-46aa-bc00-b4dc7c76b826 +2024-09-11 09:12:23.656785 2024-09-11 09:12:23.65679 plgnd 948417226 R rec 4ebb6912-c8d3-44e5-83a3-1012c1ce308a +2024-09-11 09:12:23.708462 2024-09-11 09:12:23.708467 plgnd 948322292 R rec d8caa970-4d1f-498e-aac2-4a52b42392a1 +2024-09-11 09:12:23.757614 2024-09-11 09:12:23.757625 plgnd 948321156 R rec 44b512ea-47f5-4e99-8374-d8275394d72c +2024-09-11 09:12:23.82171 2024-09-11 09:12:23.821762 plgnd 947976248 R rec 53bcb5c8-bfc2-4361-94f4-9ad15c7eb2f8 +2024-09-11 09:12:23.890685 2024-09-11 09:12:23.890697 plgnd 947862730 R rec 18716df0-ef92-4eea-9dc7-c9bae3462622 +2024-09-11 09:12:23.969866 2024-09-11 09:12:23.969872 plgnd 947589341 R rec e7a0e03a-b75c-4d42-a51c-d2b736599f0b +2024-09-11 09:12:24.040136 2024-09-11 09:12:24.040147 plgnd 947454802 R rec dfa7ae12-4572-467b-a7fe-8c59550490b1 +2024-09-11 09:12:24.107175 2024-09-11 09:12:24.107185 plgnd 947454659 R rec 2643ce45-6205-4cf7-993a-acd06121d787 +2024-09-11 09:12:24.174618 2024-09-11 09:12:24.174629 plgnd 947421238 R rec d8fe726a-752f-48de-b3c7-4ec65eb6e848 +2024-09-11 09:12:24.225178 2024-09-11 09:12:24.225183 plgnd 947026088 R rec e9475f91-72b4-48d8-a605-31c2acd405d1 +2024-09-11 09:12:24.277238 2024-09-11 09:12:24.277249 plgnd 946723729 R rec 4b020f0a-bd92-498a-9c72-3f70d360dc95 +2024-09-11 09:12:24.342162 2024-09-11 09:12:24.342173 plgnd 946606161 R rec edf859a8-4575-46c2-86a1-227e2c9ce277 +2024-09-11 09:12:24.42194 2024-09-11 09:12:24.42195 plgnd 945980132 R rec 2e9edae4-a835-4289-91ba-11c24751a95a +2024-09-11 09:12:24.489954 2024-09-11 09:12:24.48996 plgnd 945917201 R rec 441543a3-40fc-4362-a39c-bb8236f5d844 +2024-09-11 09:12:24.556041 2024-09-11 09:12:24.556052 plgnd 945871678 R rec 5d871e2c-bbec-44bb-9ec3-a523e59d1a53 +2024-09-11 09:12:24.622805 2024-09-11 09:12:24.622816 plgnd 945385382 R rec 73696b7f-e76b-4433-8d1c-4c919eeaffa2 +2024-09-11 09:12:24.683322 2024-09-11 09:12:24.683327 plgnd 944766021 R rec 195786f8-6bfb-4e3b-a183-43f31bd0e4ec +2024-09-11 09:12:24.736461 2024-09-11 09:12:24.736466 plgnd 944289290 R rec 33f3b5b1-57ac-406f-9c4d-f354da8ccfb0 +2024-09-11 09:12:24.798325 2024-09-11 09:12:24.798334 plgnd 94400718X R rec 903b52aa-d074-4888-89e3-8d48dc98f391 +2024-09-11 09:12:24.855446 2024-09-11 09:12:24.855451 plgnd 943882346 R rec fe5ab569-e248-4d44-b3e6-bf1bd76c021b +2024-09-11 09:12:24.915774 2024-09-11 09:12:24.915784 plgnd 941847934 R rec e54d98df-bcc3-4073-8d2d-a8dffe935cd8 +2024-09-11 09:12:24.983264 2024-09-11 09:12:24.983274 plgnd 941808769 R rec 658b6d7e-49e5-453d-b979-0f2fce6a80bb +2024-09-11 09:12:25.052418 2024-09-11 09:12:25.052428 plgnd 941757471 R rec d17f1995-9d9a-4895-9f26-90b6c59db503 +2024-09-11 09:12:25.1176 2024-09-11 09:12:25.117611 plgnd 941385175 R rec 8573dc5d-5f53-40ad-b557-0f948cacb389 +2024-09-11 09:12:25.184727 2024-09-11 09:12:25.184733 plgnd 940396068 R rec f02bd287-e329-4cf2-b243-5c0de61677cd +2024-09-11 09:12:25.23445 2024-09-11 09:12:25.234455 plgnd 940396009 R rec 41e3b0c6-9cf7-461b-9d3c-c767e3b55d00 +2024-09-11 09:12:25.323251 2024-09-11 09:12:25.323262 plgnd 199305404 R rec 4c29ff7e-e736-4dc9-adb8-9e9645ef586b +2024-09-11 09:12:25.393755 2024-09-11 09:12:25.393765 plgnd 199252149 R rec 9f268f59-e11a-40be-9482-c3e8e70f9dd4 +2024-09-11 09:12:25.458339 2024-09-11 09:12:25.458351 plgnd 199248974 R rec 827fdb52-28e4-49a1-8d25-3efdd13ee6a5 +2024-09-11 09:12:25.53536 2024-09-11 09:12:25.53537 plgnd 199246815 R rec 03db28f3-cd8c-41ea-8489-a0f1040b3cb2 +2024-09-11 09:12:25.602679 2024-09-11 09:12:25.60269 plgnd 199246793 R rec b64b93e3-f888-4cd2-932c-3669431975cd +2024-09-11 09:12:25.678107 2024-09-11 09:12:25.678118 plgnd 199246211 R rec 033d5794-2ce9-4915-a4ea-3bf1c198f06f +2024-09-11 09:12:25.749864 2024-09-11 09:12:25.749871 plgnd 199244766 R rec 7a63a6bd-679f-4a3b-adc6-96932438fb81 +2024-09-11 09:12:25.826907 2024-09-11 09:12:25.826918 plgnd 19924474X R rec 5e2cc67f-dac5-4cd3-9d3e-42dac72bfcd5 +2024-09-11 09:12:25.899803 2024-09-11 09:12:25.899816 plgnd 199244731 R rec 89f31f9d-8f07-4405-8855-fa88a8f34748 +2024-09-11 09:12:25.971066 2024-09-11 09:12:25.971071 plgnd 199244375 R rec 47884942-4e1c-49d3-b73a-f454d111c82d +2024-09-11 09:12:26.035651 2024-09-11 09:12:26.035656 plgnd 199241562 R rec e3003448-311e-407f-b4ac-5f1271976cef +2024-09-11 09:12:26.113013 2024-09-11 09:12:26.113018 plgnd 199240590 R rec 7c749cb8-f24b-4de1-b231-a2597d6991c8 +2024-09-11 09:12:26.182114 2024-09-11 09:12:26.182125 plgnd 199240515 R rec a638df4f-cbf9-4302-83fa-07d1e9b6cf30 +2024-09-11 09:12:26.232325 2024-09-11 09:12:26.23233 plgnd 199239436 R rec 49cb4cea-e8ac-4159-b910-1bb63d776b92 +2024-09-11 09:12:26.294564 2024-09-11 09:12:26.294575 plgnd 19923860X R rec 5bd025b8-37c5-4524-bc23-5505fb00c61e +2024-09-11 09:12:26.363386 2024-09-11 09:12:26.363391 plgnd 199231516 R rec da6d4361-16ea-4f0f-a964-e89e505be2d2 +2024-09-11 09:12:26.423703 2024-09-11 09:12:26.423709 plgnd 199230811 R rec 9ef2f161-8633-4cd0-92a1-e0cd286953d4 +2024-09-11 09:12:26.491941 2024-09-11 09:12:26.491946 plgnd 199230285 R rec 2dc8acdc-e088-4f10-909c-38084ae5bd26 +2024-09-11 09:12:26.570931 2024-09-11 09:12:26.570942 plgnd 199224196 R rec a7e12a32-2025-4037-a4a6-fc9103cb2b14 +2024-09-11 09:12:26.654757 2024-09-11 09:12:26.654796 plgnd 199218315 R rec b3c013dc-a6fc-48c9-9147-03e4a3708d6b +2024-09-11 09:12:26.714302 2024-09-11 09:12:26.714307 plgnd 199215901 R rec ab8b6308-1021-46af-aedc-899cfb8ddaac +2024-09-11 09:12:26.778489 2024-09-11 09:12:26.778494 plgnd 199214700 R rec 4acacdd3-8ffa-4e13-9d7a-7e201997c695 +2024-09-11 09:12:26.856492 2024-09-11 09:12:26.856503 plgnd 19921462X R rec 582b660d-0617-43a0-8178-0f9a844ee629 +2024-09-11 09:12:26.938427 2024-09-11 09:12:26.938437 plgnd 199212007 R rec 97074cf7-ad83-41cd-80b8-67f1e598ce5a +2024-09-11 09:12:27.029719 2024-09-11 09:12:27.029724 plgnd 199211817 R rec c6a1a31f-e517-46ae-81e5-9dd7669290ac +2024-09-11 09:12:27.098946 2024-09-11 09:12:27.098951 plgnd 199210713 R rec d68f8889-00a5-4aa8-8522-7d1dc99a398a +2024-09-11 09:12:27.169813 2024-09-11 09:12:27.169825 plgnd 199209464 R rec 7ab368ed-98f6-4520-b74f-89383362554e +2024-09-11 09:12:27.22594 2024-09-11 09:12:27.225946 plgnd 199200955 R rec 9e5bfd7a-83aa-455f-9faa-5636ad28bc3b +2024-09-11 09:12:27.276932 2024-09-11 09:12:27.276942 plgnd 199198578 R rec dad9f340-4dc6-4cb1-9077-3f590714fe84 +2024-09-11 09:12:27.342255 2024-09-11 09:12:27.342261 plgnd 199195978 R rec 17167ab9-9b4d-4b1f-9eef-35cc0682f136 +2024-09-11 09:12:27.410923 2024-09-11 09:12:27.410928 plgnd 19919596X R rec 1a85605a-2be5-49a2-b40b-910cf0348894 +2024-09-11 09:12:27.479862 2024-09-11 09:12:27.479867 plgnd 199189870 R rec 494ebd39-20a6-4d32-9d22-8779ec7b1052 +2024-09-11 09:12:27.562285 2024-09-11 09:12:27.562295 plgnd 199189862 R rec 5f518e51-1f3e-4a07-ae0a-5e1542a39c88 +2024-09-11 09:12:27.638406 2024-09-11 09:12:27.638417 plgnd 199189854 R rec 036196cc-4395-4e94-b279-a683bcdfffdb +2024-09-11 09:12:27.708044 2024-09-11 09:12:27.708048 plgnd 199189846 R rec 3f70380c-2fa0-4a94-9543-4e332e23181c +2024-09-11 09:12:27.759623 2024-09-11 09:12:27.759628 plgnd 199187282 R rec 677d564b-6dcf-4ac5-9a0d-b12e98115e0d +2024-09-11 09:12:27.823795 2024-09-11 09:12:27.823801 plgnd 199181993 R rec 2af324f1-69a8-4d5b-970a-9f59b5134980 +2024-09-11 09:12:27.887266 2024-09-11 09:12:27.887271 plgnd 199173672 R rec 72eb9f00-36aa-418b-84aa-d60408bc4ef1 +2024-09-11 09:12:27.950847 2024-09-11 09:12:27.950859 plgnd 19917332X R rec aeb0e572-4457-4493-a519-d632156f694c +2024-09-11 09:12:28.019025 2024-09-11 09:12:28.019037 plgnd 199168512 R rec 64d6c91f-d2be-485a-92ae-6a47fc61ff55 +2024-09-11 09:12:28.079023 2024-09-11 09:12:28.079029 plgnd 199164347 R rec 90c50fd8-7bda-4ef2-ab9a-09a52e877add +2024-09-11 09:12:28.154513 2024-09-11 09:12:28.154525 plgnd 19916035X R rec 55203e37-eebc-48bf-b900-dacac8985750 +2024-09-11 09:12:28.218484 2024-09-11 09:12:28.218495 plgnd 199159998 R rec c2d3e153-85a3-4f0c-8d71-c9935800ce74 +2024-09-11 09:12:28.306695 2024-09-11 09:12:28.306706 plgnd 199159882 R rec dad2fded-863b-4d6e-998e-9b23e00942df +2024-09-11 09:12:28.378371 2024-09-11 09:12:28.378383 plgnd 199159777 R rec 616f7f26-8d9f-4e4c-8838-5b61a0c1c40b +2024-09-11 09:12:28.443414 2024-09-11 09:12:28.443419 plgnd 199157642 R rec 5a34054c-f78f-4a1a-9e67-19101bd6877d +2024-09-11 09:12:28.497884 2024-09-11 09:12:28.49789 plgnd 199147760 R rec b0c8d9b5-be71-4b1b-be61-22834aa33664 +2024-09-11 09:12:28.56268 2024-09-11 09:12:28.562686 plgnd 199138834 R rec ee66104a-c94b-4eff-a5e7-1e2c22cd4150 +2024-09-11 09:12:28.62506 2024-09-11 09:12:28.625071 plgnd 199136637 R rec 0f279df4-bcb8-4143-89a0-50de5397f793 +2024-09-11 09:12:28.689504 2024-09-11 09:12:28.689509 plgnd 199118167 R rec e341650c-2b7b-4e3c-a67f-53d0bdb4ae08 +2024-09-11 09:12:28.740615 2024-09-11 09:12:28.74062 plgnd 199089973 R rec 394f6d1b-5776-4b17-95b8-64e039148cee +2024-09-11 09:12:28.79419 2024-09-11 09:12:28.794195 plgnd 199077177 R rec 9efc5e98-e19f-416f-9275-8579f853d546 +2024-09-11 09:12:28.861991 2024-09-11 09:12:28.862019 plgnd 199023786 R rec 7520aaa0-ec57-4fc9-a47a-c1b8198da089 +2024-09-11 09:12:28.93613 2024-09-11 09:12:28.936134 plgnd 199023360 R rec 993bceda-a315-40d9-bf10-899ee18b4da9 +2024-09-11 09:12:28.998991 2024-09-11 09:12:28.998996 plgnd 199022534 R rec 54e19c9c-5113-46da-9208-fd64c66f19e6 +2024-09-11 09:12:29.072946 2024-09-11 09:12:29.072957 plgnd 199013594 R rec e75f357f-af1c-43b5-9f47-b3e288640789 +2024-09-11 09:12:29.139543 2024-09-11 09:12:29.139555 plgnd 199013276 R rec 52c87ac0-a30c-457a-9e52-a45787be9726 +2024-09-11 09:12:29.213794 2024-09-11 09:12:29.213798 plgnd 199011249 R rec d34640f5-342f-4e82-85fd-5260f2461033 +2024-09-11 09:12:29.278575 2024-09-11 09:12:29.278581 plgnd 199003645 R rec af7cab3f-0314-4038-bc4e-7088e1646d69 +2024-09-11 09:12:29.345725 2024-09-11 09:12:29.345738 plgnd 199002894 R rec 7644380d-0f42-477b-acec-e7cc5b8e0b58 +2024-09-11 09:12:29.415161 2024-09-11 09:12:29.415172 plgnd 199001111 R rec 11dd17b7-575d-40b0-87d9-5c25b4ade7f8 +2024-09-11 09:12:29.487014 2024-09-11 09:12:29.487019 plgnd 199000328 R rec d33aeb46-b3cc-4a77-b2b7-2da9a9a1c088 +2024-09-11 09:12:29.571329 2024-09-11 09:12:29.571339 plgnd 199000239 R rec 4f0c2e50-f808-4566-81e0-32cf83b2edb0 +2024-09-11 09:12:29.675344 2024-09-11 09:12:29.675355 plgnd 050551604 R rec 7c44d392-b3ac-4836-9737-a5efed349bef +2024-09-11 09:12:29.732381 2024-09-11 09:12:29.732386 plgnd 050133039 R rec f6d389f5-136f-4984-bad3-9353a2d7b7b4 +2024-09-11 09:12:29.787035 2024-09-11 09:12:29.787047 plgnd 050039350 R rec d8d73a2a-1968-41a2-a32b-1f55e534305b +2024-09-11 09:12:29.857593 2024-09-11 09:12:29.857605 plgnd 043244793 R rec 0cb0252b-d19f-4b02-9c6a-693fe081f36a +2024-09-11 09:12:29.92973 2024-09-11 09:12:29.929735 plgnd 043225608 R rec ac687b2e-2c9e-4e61-8983-bf364900136f +2024-09-11 09:12:30.004746 2024-09-11 09:12:30.004751 plgnd 043151019 R rec 4cba7eef-cc24-4068-93b3-aa940c1a2a51 +2024-09-11 09:12:30.08181 2024-09-11 09:12:30.081816 plgnd 043138764 R rec ae4b2f8e-988b-431b-a7c4-256347f557eb +2024-09-11 09:12:30.15209 2024-09-11 09:12:30.152103 plgnd 042976200 R rec f3bd0e24-c1dc-4f1a-b65f-1a67d07b8514 +2024-09-11 09:12:30.228457 2024-09-11 09:12:30.228463 plgnd 042939550 R rec 06cb2051-3009-4211-aae2-f9635a9f46cb +2024-09-11 09:12:30.301043 2024-09-11 09:12:30.301048 plgnd 042939526 R rec 9fc1d5c0-cb55-4682-8892-11e1e61d9015 +2024-09-11 09:12:30.375351 2024-09-11 09:12:30.375363 plgnd 042788714 R rec 09143e01-9b48-4fca-921e-5e2ac6d9f77b +2024-09-11 09:12:30.451537 2024-09-11 09:12:30.451547 plgnd 042778352 R rec 020f5113-e4d6-4222-8c3e-1496033ce5fc +2024-09-11 09:12:30.529814 2024-09-11 09:12:30.529819 plgnd 042627494 R rec 3f3e25f1-23ce-4e98-8348-700043dff308 +2024-09-11 09:12:30.601436 2024-09-11 09:12:30.601441 plgnd 042602564 R rec 8023b311-149e-479d-b92d-8615fa05b2eb +2024-09-11 09:12:30.676838 2024-09-11 09:12:30.67685 plgnd 042567874 R rec 084eff78-869f-41e5-8810-11483c5b9e77 +2024-09-11 09:12:30.738848 2024-09-11 09:12:30.738859 plgnd 042553628 R rec 1c40668e-315d-45ce-b540-0c1ca8e985e7 +2024-09-11 09:12:30.808694 2024-09-11 09:12:30.8087 plgnd 042492777 R rec a06eae99-1a90-452b-a87e-0214a492cda0 +2024-09-11 09:12:30.89476 2024-09-11 09:12:30.894772 plgnd 042490448 R rec 6388ab0a-0496-40b7-8a81-1eebabce9e39 +2024-09-11 09:12:30.973365 2024-09-11 09:12:30.973371 plgnd 042477247 R rec b2e1fcf2-6a65-43b9-ae3c-8336af7ff8a6 +2024-09-11 09:12:31.043887 2024-09-11 09:12:31.043892 plgnd 042400228 R rec d3880908-9c94-4f2f-bc7b-662736a6d6b1 +2024-09-11 09:12:31.133747 2024-09-11 09:12:31.133757 plgnd 042387175 R rec 917beaf2-1107-4d48-b2bc-620d4b114c8c +2024-09-11 09:12:31.201767 2024-09-11 09:12:31.201773 plgnd 042299004 R rec 16a15531-9bc7-4751-bb0a-ab43557eb2cf +2024-09-11 09:12:31.255152 2024-09-11 09:12:31.255157 plgnd 042260213 R rec d5c03054-2f57-491c-8ea7-e9f4a39f9298 +2024-09-11 09:12:31.325826 2024-09-11 09:12:31.325832 plgnd 042244943 R rec a304a643-7da0-41a1-b658-9577eb7bd34a +2024-09-11 09:12:31.39281 2024-09-11 09:12:31.392822 plgnd 042236037 R rec 36b59525-fc4b-4b42-9d3a-e9fe2ae1ace5 +2024-09-11 09:12:31.461316 2024-09-11 09:12:31.461321 plgnd 042209927 R rec a8b4cbd4-7108-4479-876f-5edb3c3c7632 +2024-09-11 09:12:31.53001 2024-09-11 09:12:31.530022 plgnd 042005450 R rec 1ce84700-06f8-4935-b31d-85efe85e6aec +2024-09-11 09:12:31.607615 2024-09-11 09:12:31.607621 plgnd 041401174 R rec 97e619d0-b8df-4ffe-b62c-c07132efdb03 +2024-09-11 09:12:31.678642 2024-09-11 09:12:31.678648 plgnd 041370538 R rec 0cf5b453-6784-42ec-861c-7de39d9a8f2a +2024-09-11 09:12:31.731582 2024-09-11 09:12:31.731586 plgnd 041194152 R rec 4af0de28-df4c-477d-88ee-230a8e7f938f +2024-09-11 09:12:31.797317 2024-09-11 09:12:31.797322 plgnd 041192443 R rec 513a7587-9b8d-457e-b37f-26d1c3bd525a +2024-09-11 09:12:31.859183 2024-09-11 09:12:31.859193 plgnd 041167163 R rec 0dd4dd78-0489-4683-bcd4-65d746f58548 +2024-09-11 09:12:31.931976 2024-09-11 09:12:31.931987 plgnd 041154282 R rec b8c30355-d964-402c-b8cf-55865c6bb4ea +2024-09-11 09:12:32.005377 2024-09-11 09:12:32.005382 plgnd 041112504 R rec ee1c9ccd-438e-4371-8945-0f8a5831dbc1 +2024-09-11 09:12:32.071406 2024-09-11 09:12:32.07142 plgnd 041087828 R rec 104e57df-a6bc-44cf-be5e-d1d1916504da +2024-09-11 09:12:32.141139 2024-09-11 09:12:32.141144 plgnd 041084675 R rec b397288b-130a-4e61-bd6d-84852d754262 +2024-09-11 09:12:32.217096 2024-09-11 09:12:32.2171 plgnd 041063368 R rec 2c03e7bf-d657-402c-8224-fd44ca14eddc +2024-09-11 09:12:32.28409 2024-09-11 09:12:32.284101 plgnd 04106125X R rec 8a41645a-efaf-4aba-839a-0da0075e7659 +2024-09-11 09:12:32.353846 2024-09-11 09:12:32.353851 plgnd 041058445 R rec bee75414-b2bf-4b4e-b872-c18140231ab8 +2024-09-11 09:12:32.423804 2024-09-11 09:12:32.423817 plgnd 041011848 R rec 4196cc0f-2688-4c6d-ba97-ef325e6d9ac0 +2024-09-11 09:12:32.493885 2024-09-11 09:12:32.493898 plgnd 040994716 R rec b57b0b5e-6034-4dd0-ad1d-b8638abe603c +2024-09-11 09:12:32.576138 2024-09-11 09:12:32.576143 plgnd 040967689 R rec e56f453f-bdaf-42a5-a3b4-432bb505b235 +2024-09-11 09:12:32.646952 2024-09-11 09:12:32.646963 plgnd 040957977 R rec ae439a9b-bfe2-4e7a-9e9a-52a1681bf0aa +2024-09-11 09:12:32.720883 2024-09-11 09:12:32.720888 plgnd 040956075 R rec 74c70668-9b6a-4095-92f9-b8dea620c916 +2024-09-11 09:12:32.78242 2024-09-11 09:12:32.782426 plgnd 040952789 R rec 81eff8ab-cc69-440c-914f-fea057282972 +2024-09-11 09:12:32.84529 2024-09-11 09:12:32.845302 plgnd 040912833 R rec 8f3a950a-20d7-4155-ac60-e3e35ef3e50c +2024-09-11 09:12:32.925539 2024-09-11 09:12:32.925549 plgnd 040873862 R rec debd6908-78b2-4137-ab29-e465b5bda7f8 +2024-09-11 09:12:32.997719 2024-09-11 09:12:32.9978 plgnd 040865622 R rec fee7ab96-b202-44b8-9d78-776863ae84d7 +2024-09-11 09:12:33.066705 2024-09-11 09:12:33.066715 plgnd 040805905 R rec 1f2b8dae-c2f6-4d24-9884-30913aa19847 +2024-09-11 09:12:33.136412 2024-09-11 09:12:33.136429 plgnd 040802558 R rec de53a281-09ab-4d8f-a3e6-dd5ded91dfeb +2024-09-11 09:12:33.210105 2024-09-11 09:12:33.210109 plgnd 040794903 R rec 72c43256-976e-484d-9fe4-e24960444857 +2024-09-11 09:12:33.284775 2024-09-11 09:12:33.28478 plgnd 040768996 R rec e4907ada-de55-4988-8bb2-516603153431 +2024-09-11 09:12:33.365421 2024-09-11 09:12:33.365426 plgnd 040754766 R rec aec95a24-5be2-4039-9b1e-d2115fa9ff48 +2024-09-11 09:12:33.435763 2024-09-11 09:12:33.435774 plgnd 040738582 R rec 498bd61b-aa85-4a95-83cd-b0b54abd9425 +2024-09-11 09:12:33.508886 2024-09-11 09:12:33.508892 plgnd 040693309 R rec 680827fd-7c72-44eb-817b-c02a0c4e182f +2024-09-11 09:12:33.575476 2024-09-11 09:12:33.575481 plgnd 040680223 R rec 9a244df7-af64-41b5-9d1e-10695c47b3f5 +2024-09-11 09:12:33.650611 2024-09-11 09:12:33.650617 plgnd 040657752 R rec 00c887e0-41d2-458e-ad63-b05383be3e46 +2024-09-11 09:12:33.721368 2024-09-11 09:12:33.721374 plgnd 04062501X R rec e2fa7bab-2854-459c-9261-4751b5dea141 +2024-09-11 09:12:33.775365 2024-09-11 09:12:33.77537 plgnd 040604853 R rec 0bca507d-ee3f-4b0d-8e1f-9d1c57d9ff22 +2024-09-11 09:12:33.840702 2024-09-11 09:12:33.840714 plgnd 04060151X R rec eda1bab2-4d51-4cf5-9b2b-d9fa8ee0b6ac +2024-09-11 09:12:33.918224 2024-09-11 09:12:33.918235 plgnd 040594084 R rec 569302bc-9dc8-4bf0-b00a-9b322787770d +2024-09-11 09:12:33.992823 2024-09-11 09:12:33.992839 plgnd 04057749X R rec 4fe30ac9-cf7e-4b85-86b7-eeb47fa95261 +2024-09-11 09:12:34.093328 2024-09-11 09:12:34.093334 plgnd 040516687 R rec 861c22d5-c25b-483b-bc0c-d4d6a1f02a1d +2024-09-11 09:12:34.155925 2024-09-11 09:12:34.155935 plgnd 040425134 R rec 1a04f709-90d2-4b26-ba91-20a38b36a2e3 +2024-09-11 09:12:34.22448 2024-09-11 09:12:34.224486 plgnd 04041146X R rec fd6fef21-e17d-413f-8bb9-b97888694f31 +2024-09-11 09:12:34.285626 2024-09-11 09:12:34.285636 plgnd 040376044 R rec b4028454-1a4e-430a-b123-db5942e3d210 +2024-09-11 09:12:34.351661 2024-09-11 09:12:34.351672 plgnd 04037372X R rec cd76581f-5622-4e98-92d6-7a90835ec19a +2024-09-11 09:12:34.420412 2024-09-11 09:12:34.420422 plgnd 040368114 R rec 110c6cb5-6ddf-4dcb-b8e8-65a5d4ca96a2 +2024-09-11 09:12:34.48594 2024-09-11 09:12:34.485951 plgnd 040357422 R rec bbb01eb7-7075-4d3b-a162-a5b8ab7efa0c +2024-09-11 09:12:34.559622 2024-09-11 09:12:34.559634 plgnd 040346919 R rec a1ac9151-a135-454b-82da-db63792aafb3 +2024-09-11 09:12:34.630069 2024-09-11 09:12:34.630079 plgnd 040304817 R rec 9fb38a9f-9f03-4797-9e72-189045265461 +2024-09-11 09:12:34.701818 2024-09-11 09:12:34.701824 plgnd 040296377 R rec 277a6a73-a13f-4a47-a3c5-06e47bc58cfe +2024-09-11 09:12:34.769225 2024-09-11 09:12:34.769235 plgnd 040288099 R rec 847f9b99-e48a-40ea-b500-4a06cd9995a0 +2024-09-11 09:12:34.84222 2024-09-11 09:12:34.842231 plgnd 04024010X R rec ae3bf24a-8eec-4d93-a858-24d972371019 +2024-09-11 09:12:34.924116 2024-09-11 09:12:34.924123 plgnd 040183408 R rec 048d595a-1af0-4149-bce4-af03da42f51b +2024-09-11 09:12:34.992496 2024-09-11 09:12:34.992508 plgnd 040093417 R rec b153ebac-ac69-4d4a-a767-28f4949428fd +2024-09-11 09:12:35.056761 2024-09-11 09:12:35.056773 plgnd 04009300X R rec bf1957cd-7888-43dd-b04b-2062e9011eda +2024-09-11 09:12:35.1205 2024-09-11 09:12:35.120511 plgnd 040055744 R rec e30bc396-192c-4a60-bdd7-c4a57f36b6b4 +2024-09-11 09:12:35.19302 2024-09-11 09:12:35.193316 plgnd 040024024 R rec 1aa2290d-a60b-4b8f-8c54-6ff67f38a6b9 +2024-09-11 09:12:35.250908 2024-09-11 09:12:35.250914 plgnd 030141605 R rec 3214f535-4926-410a-b649-1bf388a6ec0e +2024-09-11 09:12:35.31487 2024-09-11 09:12:35.314881 plgnd 030125898 R rec de0acd21-3752-4aeb-a0fa-923eacd8feb2 +2024-09-11 09:12:35.387901 2024-09-11 09:12:35.387906 plgnd 030089050 R rec 5859693f-dab6-4f03-bb1c-4d5d02afbc7d +2024-09-11 09:12:35.463932 2024-09-11 09:12:35.463943 plgnd 007749023 R rec 1df017bb-c714-4d5d-a11e-0a66aff848e6 +2024-09-11 09:12:35.532578 2024-09-11 09:12:35.532589 plgnd 004280768 R rec 8c42a4f4-9ccb-4005-9429-bca34068b879 +2024-09-11 09:12:35.602893 2024-09-11 09:12:35.602904 plgnd 004205731 R rec 94863676-8899-46c0-851e-ebe45ac5d6a0 +2024-09-11 09:12:35.674589 2024-09-11 09:12:35.674596 plgnd 002631628 R rec 67440180-5102-4a01-86f7-e1fd4041b8dd +2024-09-11 09:12:35.724983 2024-09-11 09:12:35.724988 plgnd 001101536 R rec a9aa3d10-ad3c-4f1a-9c39-3c31074f70ee +2024-09-11 09:12:35.782307 2024-09-11 09:12:35.78232 plgnd 000347078 R rec 57d28b89-3d13-44d6-9025-54d8e4d119f3 diff --git a/data/plmef.json b/data/plmef.json index 42028867..f448b168 100644 --- a/data/plmef.json +++ b/data/plmef.json @@ -1,7483 +1,6904 @@ [ { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040006956" - }, - "pid": "7816", + "pid": "10000", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027218546" + "$ref": "https://mef.rero.ch/api/places/idref/02725349X" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040794857" - }, - "pid": "7817", + "pid": "10001", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027218562" + "$ref": "https://mef.rero.ch/api/places/idref/027254755" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040424820" - }, - "pid": "7818", + "pid": "10002", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027218597" + "$ref": "https://mef.rero.ch/api/places/idref/027255123" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040780120" - }, - "pid": "7819", + "pid": "10003", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027218619" + "$ref": "https://mef.rero.ch/api/places/idref/027256308" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040011798" - }, - "pid": "7820", + "pid": "10004", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027218767" + "$ref": "https://mef.rero.ch/api/places/idref/027259234" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/00468687X" - }, - "pid": "7821", + "pid": "10005", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027218856" + "$ref": "https://mef.rero.ch/api/places/idref/027259285" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040424839" - }, - "pid": "7822", + "pid": "10006", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027218961" + "$ref": "https://mef.rero.ch/api/places/idref/027259641" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040740323" - }, - "pid": "7823", + "pid": "10007", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/02721897X" + "$ref": "https://mef.rero.ch/api/places/idref/027259978" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040039005" - }, - "pid": "7824", + "pid": "10008", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027220443" + "$ref": "https://mef.rero.ch/api/places/idref/027262162" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040099296" - }, - "pid": "7825", + "pid": "10009", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027222950" + "$ref": "https://mef.rero.ch/api/places/idref/027262952" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040118908" - }, - "pid": "7826", + "pid": "10010", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027223736" + "$ref": "https://mef.rero.ch/api/places/idref/027263061" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040932052" - }, - "pid": "7827", + "pid": "10011", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027223779" + "$ref": "https://mef.rero.ch/api/places/idref/027263487" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040559645" - }, - "pid": "7828", + "pid": "10012", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027224406" + "$ref": "https://mef.rero.ch/api/places/idref/027263495" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040157016" - }, - "pid": "7829", + "pid": "10013", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027224651" + "$ref": "https://mef.rero.ch/api/places/idref/02726369X" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040757390" - }, - "pid": "7830", + "pid": "10014", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027224678" + "$ref": "https://mef.rero.ch/api/places/idref/027263711" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040792153" - }, - "pid": "7831", + "pid": "10015", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027224694" + "$ref": "https://mef.rero.ch/api/places/idref/027263762" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/000339784" - }, - "pid": "7832", + "pid": "10016", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027225488" + "$ref": "https://mef.rero.ch/api/places/idref/02726453X" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040175812" - }, - "pid": "7833", + "pid": "10017", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027226042" + "$ref": "https://mef.rero.ch/api/places/idref/027264580" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040181456" - }, - "pid": "7834", + "pid": "10018", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027226794" + "$ref": "https://mef.rero.ch/api/places/idref/027266060" } }, { - "pid": "7835", + "pid": "10019", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027227812" + "$ref": "https://mef.rero.ch/api/places/idref/027266257" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040220478" - }, - "pid": "7836", + "pid": "10020", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027228428" + "$ref": "https://mef.rero.ch/api/places/idref/027267830" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040218813" - }, - "pid": "7837", + "pid": "10021", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027228517" + "$ref": "https://mef.rero.ch/api/places/idref/027267873" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040687899" - }, - "pid": "7838", + "pid": "10022", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027228959" + "$ref": "https://mef.rero.ch/api/places/idref/027275922" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040432718" - }, - "pid": "7839", + "pid": "10023", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027229246" + "$ref": "https://mef.rero.ch/api/places/idref/027283518" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04008003X" - }, - "pid": "7840", + "pid": "10024", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/02722953X" + "$ref": "https://mef.rero.ch/api/places/idref/027286703" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040144267" - }, - "pid": "7841", + "pid": "10025", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027230309" + "$ref": "https://mef.rero.ch/api/places/idref/027290530" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040318125" - }, - "pid": "7842", + "pid": "10026", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027230430" + "$ref": "https://mef.rero.ch/api/places/idref/027296946" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040785416" - }, - "pid": "7843", + "pid": "10027", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027234002" + "$ref": "https://mef.rero.ch/api/places/idref/027303063" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040731723" - }, - "pid": "7844", + "pid": "10028", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027234592" + "$ref": "https://mef.rero.ch/api/places/idref/027311430" } }, { - "pid": "7845", + "pid": "10029", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027236536" + "$ref": "https://mef.rero.ch/api/places/idref/027316211" } }, { - "pid": "7846", + "pid": "10030", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027236668" + "$ref": "https://mef.rero.ch/api/places/idref/027316696" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040743357" - }, - "pid": "7847", + "pid": "10031", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027237249" + "$ref": "https://mef.rero.ch/api/places/idref/027318494" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040749002" - }, - "pid": "7848", + "pid": "10032", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027237664" + "$ref": "https://mef.rero.ch/api/places/idref/027321940" } }, { - "pid": "7849", + "pid": "10033", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027238180" - }, - "deleted": "2024-07-16T19:52:36.233702+00:00" + "$ref": "https://mef.rero.ch/api/places/idref/027322998" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040387887" - }, - "pid": "7850", + "pid": "10034", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027239365" + "$ref": "https://mef.rero.ch/api/places/idref/027323072" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040390586" - }, - "pid": "7851", + "pid": "10035", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027239497" + "$ref": "https://mef.rero.ch/api/places/idref/027331180" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040022080" - }, - "pid": "7852", + "pid": "10036", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027241912" + "$ref": "https://mef.rero.ch/api/places/idref/027333752" } }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040496392" + "$ref": "https://mef.rero.ch/api/places/gnd/040768996" }, - "pid": "7853", + "pid": "10037", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027242005" + "$ref": "https://mef.rero.ch/api/places/idref/027342395" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040504719" - }, - "pid": "7854", + "pid": "10038", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/02724301X" + "$ref": "https://mef.rero.ch/api/places/idref/027350789" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040464962" - }, - "pid": "7855", + "pid": "10039", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027243222" + "$ref": "https://mef.rero.ch/api/places/idref/027356302" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040443817" - }, - "pid": "7856", + "pid": "10040", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027244482" + "$ref": "https://mef.rero.ch/api/places/idref/027356949" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040446603" - }, - "pid": "7857", + "pid": "10041", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027244520" + "$ref": "https://mef.rero.ch/api/places/idref/02735895X" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040703703" - }, - "pid": "7858", + "pid": "10042", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/02724606X" + "$ref": "https://mef.rero.ch/api/places/idref/027360199" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040538818" - }, - "pid": "7859", + "pid": "10043", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027249654" + "$ref": "https://mef.rero.ch/api/places/idref/027367428" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040054063" - }, - "pid": "7860", + "pid": "10044", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/02725030X" + "$ref": "https://mef.rero.ch/api/places/idref/027369714" } }, { - "pid": "7861", + "pid": "10045", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027250504" + "$ref": "https://mef.rero.ch/api/places/idref/027375080" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040293076" - }, - "pid": "7862", + "pid": "10046", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027250636" + "$ref": "https://mef.rero.ch/api/places/idref/027375412" } }, { - "pid": "7863", + "pid": "10047", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027250644" + "$ref": "https://mef.rero.ch/api/places/idref/027377067" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040294560" - }, - "pid": "7864", + "pid": "10048", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027250679" + "$ref": "https://mef.rero.ch/api/places/idref/027377768" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040780295" - }, - "pid": "7865", + "pid": "10049", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027250911" + "$ref": "https://mef.rero.ch/api/places/idref/027401421" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04032527X" - }, - "pid": "7866", + "pid": "10050", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027250938" + "$ref": "https://mef.rero.ch/api/places/idref/027401448" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04033340X" - }, - "pid": "7867", + "pid": "10051", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/02725108X" + "$ref": "https://mef.rero.ch/api/places/idref/027401901" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04062501X" - }, - "pid": "7868", + "pid": "10052", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027251411" + "$ref": "https://mef.rero.ch/api/places/idref/027405621" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040551938" - }, - "pid": "7869", + "pid": "10053", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027251551" + "$ref": "https://mef.rero.ch/api/places/idref/027407012" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04078228X" - }, - "pid": "7870", + "pid": "10054", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027251659" + "$ref": "https://mef.rero.ch/api/places/idref/027407918" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040749878" - }, - "pid": "7871", + "pid": "10055", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027252124" + "$ref": "https://mef.rero.ch/api/places/idref/027408647" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04075720X" - }, - "pid": "7872", + "pid": "10056", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027252272" + "$ref": "https://mef.rero.ch/api/places/idref/027416925" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040422038" - }, - "pid": "7873", + "pid": "10057", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027252361" + "$ref": "https://mef.rero.ch/api/places/idref/027417298" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04045312X" - }, - "pid": "7874", + "pid": "10058", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027252388" + "$ref": "https://mef.rero.ch/api/places/idref/027429261" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04051658X" - }, - "pid": "7875", + "pid": "10059", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027252620" + "$ref": "https://mef.rero.ch/api/places/idref/027434141" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040612066" - }, - "pid": "7876", + "pid": "10060", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/02725349X" + "$ref": "https://mef.rero.ch/api/places/idref/027437213" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040611639" - }, - "pid": "7877", + "pid": "10061", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027254755" + "$ref": "https://mef.rero.ch/api/places/idref/027437221" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040624048" - }, - "pid": "7878", + "pid": "10062", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027255123" + "$ref": "https://mef.rero.ch/api/places/idref/027442128" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040289664" - }, - "pid": "7879", + "pid": "10063", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027256308" + "$ref": "https://mef.rero.ch/api/places/idref/027443876" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040118894" - }, - "pid": "7880", + "pid": "10064", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027259234" + "$ref": "https://mef.rero.ch/api/places/idref/027465012" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040013286" - }, - "pid": "7881", + "pid": "10065", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027259285" + "$ref": "https://mef.rero.ch/api/places/idref/027468909" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040000222" - }, - "pid": "7882", + "pid": "10066", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027259641" + "$ref": "https://mef.rero.ch/api/places/idref/027472906" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041294688" - }, - "pid": "7883", + "pid": "10067", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027259978" + "$ref": "https://mef.rero.ch/api/places/idref/027483304" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040284956" - }, - "pid": "7884", + "pid": "10068", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027262162" + "$ref": "https://mef.rero.ch/api/places/idref/027501302" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040509397" - }, - "pid": "7885", + "pid": "10069", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027262952" + "$ref": "https://mef.rero.ch/api/places/idref/027501418" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/004911474" - }, - "pid": "7886", + "pid": "10070", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027263061" + "$ref": "https://mef.rero.ch/api/places/idref/027502333" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040016269" - }, - "pid": "7887", + "pid": "10071", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027263487" + "$ref": "https://mef.rero.ch/api/places/idref/027502368" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040019098" - }, - "pid": "7888", + "pid": "10072", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027263495" + "$ref": "https://mef.rero.ch/api/places/idref/027524329" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040276678" - }, - "pid": "7889", + "pid": "10073", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/02726369X" + "$ref": "https://mef.rero.ch/api/places/idref/027526836" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04037680X" - }, - "pid": "7890", + "pid": "10074", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027263711" + "$ref": "https://mef.rero.ch/api/places/idref/02754785X" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040754715" - }, - "pid": "7891", + "pid": "10075", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027263762" + "$ref": "https://mef.rero.ch/api/places/idref/027584763" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040201376" - }, - "pid": "7892", + "pid": "10076", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/02726453X" + "$ref": "https://mef.rero.ch/api/places/idref/027585190" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040471942" - }, - "pid": "7893", + "pid": "10077", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027264580" + "$ref": "https://mef.rero.ch/api/places/idref/027597334" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041179145" - }, - "pid": "7894", + "pid": "10078", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027266060" + "$ref": "https://mef.rero.ch/api/places/idref/027614697" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040475646" - }, - "pid": "7895", + "pid": "10079", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027266257" + "$ref": "https://mef.rero.ch/api/places/idref/027622444" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04022113X" - }, - "pid": "7896", + "pid": "10080", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027267830" + "$ref": "https://mef.rero.ch/api/places/idref/027633179" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040181847" - }, - "pid": "7897", + "pid": "10081", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027267873" + "$ref": "https://mef.rero.ch/api/places/idref/02763857X" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1077172354" - }, - "pid": "7898", + "pid": "10082", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027275922" + "$ref": "https://mef.rero.ch/api/places/idref/027705781" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040794873" - }, - "pid": "7899", + "pid": "10083", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027283518" + "$ref": "https://mef.rero.ch/api/places/idref/02773417X" } }, { - "pid": "7900", + "pid": "10084", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027286703" + "$ref": "https://mef.rero.ch/api/places/idref/02775751X" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04003366X" - }, - "pid": "7901", + "pid": "10085", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027290530" + "$ref": "https://mef.rero.ch/api/places/idref/027768678" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040932087" - }, - "pid": "7902", + "pid": "10086", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027296946" + "$ref": "https://mef.rero.ch/api/places/idref/027801101" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040644669" - }, - "pid": "7903", + "pid": "10087", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027303063" + "$ref": "https://mef.rero.ch/api/places/idref/027804151" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040400565" - }, - "pid": "7904", + "pid": "10088", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027311430" + "$ref": "https://mef.rero.ch/api/places/idref/027810674" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040859312" - }, - "pid": "7905", + "pid": "10089", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027316211" + "$ref": "https://mef.rero.ch/api/places/idref/027849414" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040754685" - }, - "pid": "7906", + "pid": "10090", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027316696" + "$ref": "https://mef.rero.ch/api/places/idref/02788743X" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040789829" - }, - "pid": "7907", + "pid": "10091", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027318494" + "$ref": "https://mef.rero.ch/api/places/idref/027945774" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04079203X" - }, - "pid": "7908", + "pid": "10092", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027321940" + "$ref": "https://mef.rero.ch/api/places/idref/028146239" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040302369" - }, - "pid": "7909", + "pid": "10093", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027322998" + "$ref": "https://mef.rero.ch/api/places/idref/028179420" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040419150" - }, - "pid": "7910", + "pid": "10094", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027323072" + "$ref": "https://mef.rero.ch/api/places/idref/02847158X" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040480305" - }, - "pid": "7911", + "pid": "10095", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027331180" + "$ref": "https://mef.rero.ch/api/places/idref/028567005" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040547809" - }, - "pid": "7912", + "pid": "10096", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027333752" + "$ref": "https://mef.rero.ch/api/places/idref/028706536" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040768996" - }, - "pid": "7913", + "pid": "10097", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027342395" + "$ref": "https://mef.rero.ch/api/places/idref/028724208" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040552098" - }, - "pid": "7914", + "pid": "10098", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027350789" + "$ref": "https://mef.rero.ch/api/places/idref/028931491" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04068878X" - }, - "pid": "7915", + "pid": "10099", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027356302" + "$ref": "https://mef.rero.ch/api/places/idref/028988310" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040587940" - }, - "pid": "7916", + "pid": "10100", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027356949" + "$ref": "https://mef.rero.ch/api/places/idref/028992318" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040147703" - }, - "pid": "7917", + "pid": "10101", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/02735895X" + "$ref": "https://mef.rero.ch/api/places/idref/02899275X" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040690997" - }, - "pid": "7918", + "pid": "10102", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027360199" + "$ref": "https://mef.rero.ch/api/places/idref/029036690" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040401499" - }, - "pid": "7919", + "pid": "10103", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027367428" + "$ref": "https://mef.rero.ch/api/places/idref/029201098" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040057623" - }, - "pid": "7920", + "pid": "10104", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027369714" + "$ref": "https://mef.rero.ch/api/places/idref/029805287" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040794865" - }, - "pid": "7921", + "pid": "10105", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027375080" + "$ref": "https://mef.rero.ch/api/places/idref/030519799" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040022935" - }, - "pid": "7922", + "pid": "10106", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027375412" + "$ref": "https://mef.rero.ch/api/places/idref/030575257" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040076075" - }, - "pid": "7923", + "pid": "10107", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027377067" + "$ref": "https://mef.rero.ch/api/places/idref/031211097" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040294137" - }, - "pid": "7924", + "pid": "10108", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027377768" + "$ref": "https://mef.rero.ch/api/places/idref/031649424" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040753034" - }, - "pid": "7925", + "pid": "10109", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027401421" + "$ref": "https://mef.rero.ch/api/places/idref/032861621" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04041745X" - }, - "pid": "7926", + "pid": "10110", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027401448" + "$ref": "https://mef.rero.ch/api/places/idref/033640874" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040442578" - }, - "pid": "7927", + "pid": "10111", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027401901" + "$ref": "https://mef.rero.ch/api/places/idref/055302149" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040277542" - }, - "pid": "7928", + "pid": "10112", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027405621" + "$ref": "https://mef.rero.ch/api/places/idref/071586709" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040367339" - }, - "pid": "7929", + "pid": "10113", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027407012" + "$ref": "https://mef.rero.ch/api/places/idref/085560839" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040149544" - }, - "pid": "7930", + "pid": "10114", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027407918" + "$ref": "https://mef.rero.ch/api/places/idref/085703419" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040763102" - }, - "pid": "7931", + "pid": "10115", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027408647" + "$ref": "https://mef.rero.ch/api/places/idref/097857300" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040023869" - }, - "pid": "7932", + "pid": "10116", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027416925" + "$ref": "https://mef.rero.ch/api/places/idref/110868056" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040518507" - }, - "pid": "7933", + "pid": "10117", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027417298" + "$ref": "https://mef.rero.ch/api/places/idref/114526591" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040912000" - }, - "pid": "7934", + "pid": "10118", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027429261" + "$ref": "https://mef.rero.ch/api/places/idref/116317825" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040290433" - }, - "pid": "7935", + "pid": "10119", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027434141" + "$ref": "https://mef.rero.ch/api/places/idref/116459425" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040703525" - }, - "pid": "7936", + "pid": "10120", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027437213" + "$ref": "https://mef.rero.ch/api/places/idref/127372547" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041940458" - }, - "pid": "7937", + "pid": "10121", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027437221" + "$ref": "https://mef.rero.ch/api/places/idref/144820072" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040769100" - }, - "pid": "7938", + "pid": "10122", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027442128" + "$ref": "https://mef.rero.ch/api/places/idref/14704233X" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040050440" - }, - "pid": "7939", + "pid": "10123", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027443876" + "$ref": "https://mef.rero.ch/api/places/idref/150220200" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04051594X" - }, - "pid": "7940", + "pid": "10124", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027465012" + "$ref": "https://mef.rero.ch/api/places/idref/157143392" } }, { - "pid": "7941", + "pid": "10125", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027468909" + "$ref": "https://mef.rero.ch/api/places/idref/157143422" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040092569" - }, - "pid": "7942", + "pid": "10126", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027472906" + "$ref": "https://mef.rero.ch/api/places/idref/161911846" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040738418" - }, - "pid": "7943", + "pid": "10127", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027483304" + "$ref": "https://mef.rero.ch/api/places/idref/185110363" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040010287" - }, - "pid": "7944", + "pid": "10128", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027501302" + "$ref": "https://mef.rero.ch/api/places/idref/198231288" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040300900" - }, - "pid": "7945", + "pid": "10129", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027501418" + "$ref": "https://mef.rero.ch/api/places/idref/237279614" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040757277" - }, - "pid": "7946", + "pid": "10130", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027502333" + "$ref": "https://mef.rero.ch/api/places/idref/25887421X" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040584488" - }, - "pid": "7947", + "pid": "10131", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027502368" + "$ref": "https://mef.rero.ch/api/places/idref/260966401" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040713326" - }, - "pid": "7948", + "pid": "10132", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027524329" + "$ref": "https://mef.rero.ch/api/places/idref/261121162" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040714446" - }, - "pid": "7949", + "pid": "10133", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027526836" + "$ref": "https://mef.rero.ch/api/places/idref/26144722X" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041196058" - }, - "pid": "7950", + "pid": "10134", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/02754785X" + "$ref": "https://mef.rero.ch/api/places/idref/263259935" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040181413" - }, - "pid": "7951", + "pid": "10135", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027584763" + "$ref": "https://mef.rero.ch/api/places/idref/263837920" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040467554" - }, - "pid": "7952", + "pid": "10136", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027585190" + "$ref": "https://mef.rero.ch/api/places/idref/264287010" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041355350" - }, - "pid": "7953", + "pid": "10137", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027597334" + "$ref": "https://mef.rero.ch/api/places/idref/264406095" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040287505" - }, - "pid": "7954", + "pid": "10138", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027614697" + "$ref": "https://mef.rero.ch/api/places/idref/264644093" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040772586" - }, - "pid": "7955", + "pid": "10139", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027622444" + "$ref": "https://mef.rero.ch/api/places/idref/264645081" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040099377" - }, - "pid": "7956", + "pid": "10140", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027633179" + "$ref": "https://mef.rero.ch/api/places/idref/271321628" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04040417X" - }, - "pid": "7957", + "pid": "10141", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/02763857X" + "$ref": "https://mef.rero.ch/api/places/idref/271323337" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041037766" - }, - "pid": "7958", + "pid": "10142", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027705781" + "$ref": "https://mef.rero.ch/api/places/idref/271323353" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040201449" - }, - "pid": "7959", + "pid": "10143", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/02773417X" + "$ref": "https://mef.rero.ch/api/places/idref/271323426" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040278395" - }, - "pid": "7960", + "pid": "10144", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/02775751X" + "$ref": "https://mef.rero.ch/api/places/idref/271323485" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040714039" - }, - "pid": "7961", + "pid": "10145", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027768678" + "$ref": "https://mef.rero.ch/api/places/idref/271323515" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040032175" - }, - "pid": "7962", + "pid": "10146", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027801101" + "$ref": "https://mef.rero.ch/api/places/idref/271323523" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040396770" - }, - "pid": "7963", + "pid": "10147", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027804151" + "$ref": "https://mef.rero.ch/api/places/idref/271323566" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040367282" - }, - "pid": "7964", + "pid": "10148", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027810674" + "$ref": "https://mef.rero.ch/api/places/idref/271323590" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040057658" - }, - "pid": "7965", + "pid": "10149", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027849414" + "$ref": "https://mef.rero.ch/api/places/idref/271323663" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04014500X" - }, - "pid": "7966", + "pid": "10150", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/02788743X" + "$ref": "https://mef.rero.ch/api/places/idref/27132368X" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040554589" - }, - "pid": "7967", + "pid": "10151", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/027945774" + "$ref": "https://mef.rero.ch/api/places/idref/271323698" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040065146" - }, - "pid": "7968", + "pid": "10152", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/028146239" + "$ref": "https://mef.rero.ch/api/places/idref/271323728" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04068041X" - }, - "pid": "7969", + "pid": "10153", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/028179420" + "$ref": "https://mef.rero.ch/api/places/idref/271323752" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040792048" - }, - "pid": "7970", + "pid": "10154", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/02847158X" + "$ref": "https://mef.rero.ch/api/places/idref/271323957" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040802752" - }, - "pid": "7971", + "pid": "10155", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/028567005" + "$ref": "https://mef.rero.ch/api/places/idref/271323973" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040046206" - }, - "pid": "7972", + "pid": "10156", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/028706536" + "$ref": "https://mef.rero.ch/api/places/idref/271324015" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041186672" - }, - "pid": "7973", + "pid": "10157", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/028724208" + "$ref": "https://mef.rero.ch/api/places/idref/271324031" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/949642762" - }, - "pid": "7974", + "pid": "10158", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/028931491" + "$ref": "https://mef.rero.ch/api/places/idref/271324058" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040540197" - }, - "pid": "7975", + "pid": "10159", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/028988310" + "$ref": "https://mef.rero.ch/api/places/idref/271324074" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040680649" - }, - "pid": "7976", + "pid": "10160", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/028992318" + "$ref": "https://mef.rero.ch/api/places/idref/271324562" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040519937" - }, - "pid": "7977", + "pid": "10161", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/02899275X" + "$ref": "https://mef.rero.ch/api/places/idref/271326441" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040772756" - }, - "pid": "7978", + "pid": "10162", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/029036690" + "$ref": "https://mef.rero.ch/api/places/idref/271326476" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040940888" - }, - "pid": "7979", + "pid": "10163", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/029201098" + "$ref": "https://mef.rero.ch/api/places/idref/271326484" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040774678" - }, - "pid": "7980", + "pid": "10164", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/029805287" + "$ref": "https://mef.rero.ch/api/places/idref/271326506" } }, { - "pid": "7981", + "pid": "10165", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/030519799" + "$ref": "https://mef.rero.ch/api/places/idref/271326514" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040201384" - }, - "pid": "7982", + "pid": "10166", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/030575257" + "$ref": "https://mef.rero.ch/api/places/idref/271326522" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040658236" - }, - "pid": "7983", + "pid": "10167", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/031211097" + "$ref": "https://mef.rero.ch/api/places/idref/271326530" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040000079" - }, - "pid": "7984", + "pid": "10168", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/031649424" + "$ref": "https://mef.rero.ch/api/places/idref/271326557" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040756130" - }, - "pid": "7985", + "pid": "10169", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/032861621" + "$ref": "https://mef.rero.ch/api/places/idref/271326603" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040417476" - }, - "pid": "7986", + "pid": "10170", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/033640874" + "$ref": "https://mef.rero.ch/api/places/idref/271326670" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040379922" - }, - "pid": "7987", + "pid": "10171", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/055302149" + "$ref": "https://mef.rero.ch/api/places/idref/271326700" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04037100X" - }, - "pid": "7988", + "pid": "10172", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/071586709" + "$ref": "https://mef.rero.ch/api/places/idref/271326727" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040804003" - }, - "pid": "7989", + "pid": "10173", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/085560839" + "$ref": "https://mef.rero.ch/api/places/idref/271326751" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040201392" - }, - "pid": "7990", + "pid": "10174", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/085703419" + "$ref": "https://mef.rero.ch/api/places/idref/27132676X" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040792374" - }, - "pid": "7991", + "pid": "10175", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/097857300" + "$ref": "https://mef.rero.ch/api/places/idref/271326778" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041048989" - }, - "pid": "7992", + "pid": "10176", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/110868056" + "$ref": "https://mef.rero.ch/api/places/idref/271326786" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040786528" - }, - "pid": "7993", + "pid": "10177", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/114526591" + "$ref": "https://mef.rero.ch/api/places/idref/271326794" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040721000" - }, - "pid": "7994", + "pid": "10178", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/116317825" + "$ref": "https://mef.rero.ch/api/places/idref/271326808" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/947297987" - }, - "pid": "7995", + "pid": "10179", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/116459425" + "$ref": "https://mef.rero.ch/api/places/idref/271326824" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/96475455X" - }, - "pid": "7996", + "pid": "10180", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/127372547" + "$ref": "https://mef.rero.ch/api/places/idref/271326832" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041152077" - }, - "pid": "7997", + "pid": "10181", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/144820072" + "$ref": "https://mef.rero.ch/api/places/idref/271326840" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041075102" - }, - "pid": "7998", + "pid": "10182", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/14704233X" + "$ref": "https://mef.rero.ch/api/places/idref/271327383" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040717003" - }, - "pid": "7999", + "pid": "10183", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/150220200" + "$ref": "https://mef.rero.ch/api/places/idref/271328762" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041051513" - }, - "pid": "8000", + "pid": "10184", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/157143392" + "$ref": "https://mef.rero.ch/api/places/idref/271329017" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041192389" - }, - "pid": "8001", + "pid": "10185", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/157143422" + "$ref": "https://mef.rero.ch/api/places/idref/271329335" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/968963935" - }, - "pid": "8002", + "pid": "10186", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/161911846" + "$ref": "https://mef.rero.ch/api/places/idref/271329696" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/042750067" - }, - "pid": "8003", + "pid": "10187", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/185110363" + "$ref": "https://mef.rero.ch/api/places/idref/271329734" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040995623" - }, - "pid": "8004", + "pid": "10188", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/198231288" + "$ref": "https://mef.rero.ch/api/places/idref/271329831" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/946153248" - }, - "pid": "8005", + "pid": "10189", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/237279614" + "$ref": "https://mef.rero.ch/api/places/idref/271329912" } }, { - "pid": "8006", + "pid": "10190", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/25887421X" + "$ref": "https://mef.rero.ch/api/places/idref/271329998" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/964991500" - }, - "pid": "8007", + "pid": "10191", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/260966401" + "$ref": "https://mef.rero.ch/api/places/idref/271330031" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/954696867" - }, - "pid": "8008", + "pid": "10192", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/261121162" + "$ref": "https://mef.rero.ch/api/places/idref/271330163" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/941147797" - }, - "pid": "8009", + "pid": "10193", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/26144722X" + "$ref": "https://mef.rero.ch/api/places/idref/271331658" } }, { - "pid": "8010", + "pid": "10194", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/263259935" + "$ref": "https://mef.rero.ch/api/places/idref/271331712" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041170008" - }, - "pid": "8011", + "pid": "10195", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/263837920" + "$ref": "https://mef.rero.ch/api/places/idref/27133181X" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040774244" - }, - "pid": "8012", + "pid": "10196", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/264287010" + "$ref": "https://mef.rero.ch/api/places/idref/271332352" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/955884152" - }, - "pid": "8013", + "pid": "10197", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/264406095" + "$ref": "https://mef.rero.ch/api/places/idref/271332778" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/952816407" - }, - "pid": "8014", + "pid": "10198", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/264644093" + "$ref": "https://mef.rero.ch/api/places/idref/271332824" } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/993248810" - }, - "pid": "8015", + "pid": "10199", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/264645081" + "$ref": "https://mef.rero.ch/api/places/idref/271333081" } }, { - "pid": "8016", + "pid": "10200", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271321628" + "$ref": "https://mef.rero.ch/api/places/idref/271333197" } }, { - "pid": "8017", + "pid": "10201", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271323337" + "$ref": "https://mef.rero.ch/api/places/idref/271333243" } }, { - "pid": "8018", + "pid": "10202", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271323353" + "$ref": "https://mef.rero.ch/api/places/idref/271337214" } }, { - "pid": "8019", + "pid": "10203", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271323426" + "$ref": "https://mef.rero.ch/api/places/idref/271438436" } }, { - "pid": "8020", + "pid": "10204", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271323485" + "$ref": "https://mef.rero.ch/api/places/idref/275775569" } }, { - "pid": "8021", + "pid": "10205", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271323515" + "$ref": "https://mef.rero.ch/api/places/idref/276510216" } }, { - "pid": "8022", + "pid": "10206", "type": "bf:Place", "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271323523" + "$ref": "https://mef.rero.ch/api/places/idref/276534921" } }, { - "pid": "8023", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271323566" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/1335257845" + }, + "pid": "10207", + "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040046176" + "$ref": "https://mef.rero.ch/api/places/gnd/1335257101" }, - "pid": "8024", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271323590" - } + "pid": "10208", + "type": "bf:Place" }, { - "pid": "8025", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271323663" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/133525675X" + }, + "pid": "10209", + "type": "bf:Place" }, { - "pid": "8026", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/27132368X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/133525207X" + }, + "pid": "10210", + "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/952907682" + "$ref": "https://mef.rero.ch/api/places/gnd/1335249966" }, - "pid": "8027", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271323698" - } + "pid": "10211", + "type": "bf:Place" }, { - "pid": "8028", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271323728" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/1335243240" + }, + "pid": "10212", + "type": "bf:Place" }, { - "pid": "8029", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271323752" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/133523909X" + }, + "pid": "10213", + "type": "bf:Place" }, { - "pid": "8030", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271323957" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/1335217711" + }, + "pid": "10214", + "type": "bf:Place" }, { - "pid": "8031", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271323973" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/1335201653" + }, + "pid": "10215", + "type": "bf:Place" }, { - "pid": "8032", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271324015" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/1335141790" + }, + "pid": "10216", + "type": "bf:Place" }, { - "pid": "8033", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271324031" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/1335107711" + }, + "pid": "10217", + "type": "bf:Place" }, { - "pid": "8034", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271324058" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/1335104917" + }, + "pid": "10218", + "type": "bf:Place" }, { - "pid": "8035", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271324074" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/1335098399" + }, + "pid": "10219", + "type": "bf:Place" }, { - "pid": "8036", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271324562" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/1335092390" + }, + "pid": "10220", + "type": "bf:Place" }, { - "pid": "8037", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271326441" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/1335092196" + }, + "pid": "10221", + "type": "bf:Place" }, { - "pid": "8038", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271326476" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/1335086005" + }, + "pid": "10222", + "type": "bf:Place" }, { - "pid": "8039", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271326484" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/1335058036" + }, + "pid": "10223", + "type": "bf:Place" }, { - "pid": "8040", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271326506" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/1334938016" + }, + "pid": "10224", + "type": "bf:Place" }, { - "pid": "8041", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271326514" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/1334917981" + }, + "pid": "10225", + "type": "bf:Place" }, { - "pid": "8042", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271326522" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/1334916292" + }, + "pid": "10226", + "type": "bf:Place" }, { - "pid": "8043", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271326530" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/1334913498" + }, + "pid": "10227", + "type": "bf:Place" }, { - "pid": "8044", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271326557" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/1334907684" + }, + "pid": "10228", + "type": "bf:Place" }, { - "pid": "8045", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271326603" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/1334907048" + }, + "pid": "10229", + "type": "bf:Place" }, { - "pid": "8046", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271326670" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/1334904251" + }, + "pid": "10230", + "type": "bf:Place" }, { - "pid": "8047", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271326700" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/133490281X" + }, + "pid": "10231", + "type": "bf:Place" }, { - "pid": "8048", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271326727" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/1334900256" + }, + "pid": "10232", + "type": "bf:Place" }, { - "pid": "8049", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271326751" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/133489874X" + }, + "pid": "10233", + "type": "bf:Place" }, { - "pid": "8050", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/27132676X" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/1334896755" + }, + "pid": "10234", + "type": "bf:Place" }, { - "pid": "8051", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271326778" - } - }, - { - "pid": "8052", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271326786" - } - }, - { - "pid": "8053", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271326794" - } - }, - { - "pid": "8054", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271326808" - } - }, - { - "pid": "8055", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271326824" - } - }, - { - "pid": "8056", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271326832" - } - }, - { - "pid": "8057", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271326840" - } - }, - { - "pid": "8058", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271327383" - } - }, - { - "pid": "8059", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271328762" - } - }, - { - "pid": "8060", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271329017" - } - }, - { - "pid": "8061", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271329335" - } - }, - { - "pid": "8062", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271329696" - } - }, - { - "pid": "8063", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271329734" - } - }, - { - "pid": "8064", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271329831" - } - }, - { - "pid": "8065", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271329912" - } - }, - { - "pid": "8066", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271329998" - } - }, - { - "pid": "8067", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271330031" - } - }, - { - "pid": "8068", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271330163" - } - }, - { - "pid": "8069", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271331658" - } - }, - { - "pid": "8070", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271331712" - } - }, - { - "pid": "8071", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/27133181X" - } - }, - { - "pid": "8072", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271332352" - } - }, - { - "pid": "8073", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271332778" - } - }, - { - "pid": "8074", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271332824" - } - }, - { - "pid": "8075", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271333081" - } - }, - { - "pid": "8076", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271333197" - } - }, - { - "pid": "8077", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271333243" - } - }, - { - "pid": "8078", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271337214" - } + "gnd": { + "$ref": "https://mef.rero.ch/api/places/gnd/1334893594" + }, + "pid": "10235", + "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/042499909" + "$ref": "https://mef.rero.ch/api/places/gnd/133489129X" }, - "pid": "8079", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/271438436" - } + "pid": "10236", + "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/043187048" + "$ref": "https://mef.rero.ch/api/places/gnd/1334878234" }, - "pid": "8080", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/275775569" - } + "pid": "10237", + "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/944449360" + "$ref": "https://mef.rero.ch/api/places/gnd/1334875707" }, - "pid": "8081", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/276510216" - } + "pid": "10238", + "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040744256" + "$ref": "https://mef.rero.ch/api/places/gnd/1334874387" }, - "pid": "8082", - "type": "bf:Place", - "idref": { - "$ref": "https://mef.rero.ch/api/places/idref/276534921" - } + "pid": "10239", + "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/000347078" + "$ref": "https://mef.rero.ch/api/places/gnd/1334867097" }, - "pid": "8083", + "pid": "10240", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/001101536" + "$ref": "https://mef.rero.ch/api/places/gnd/1334866473" }, - "pid": "8084", + "pid": "10241", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/002631628" + "$ref": "https://mef.rero.ch/api/places/gnd/1334866082" }, - "pid": "8085", + "pid": "10242", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/004205731" + "$ref": "https://mef.rero.ch/api/places/gnd/1334865981" }, - "pid": "8086", + "pid": "10243", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/004280768" + "$ref": "https://mef.rero.ch/api/places/gnd/1334804621" }, - "pid": "8087", + "pid": "10244", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/007749023" + "$ref": "https://mef.rero.ch/api/places/gnd/1334804141" }, - "pid": "8088", + "pid": "10245", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/030089050" + "$ref": "https://mef.rero.ch/api/places/gnd/1334801304" }, - "pid": "8089", + "pid": "10246", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/030125898" + "$ref": "https://mef.rero.ch/api/places/gnd/1334789134" }, - "pid": "8090", + "pid": "10247", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/030141605" + "$ref": "https://mef.rero.ch/api/places/gnd/1334785422" }, - "pid": "8091", + "pid": "10248", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040024024" + "$ref": "https://mef.rero.ch/api/places/gnd/1334784493" }, - "pid": "8092", + "pid": "10249", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040055744" + "$ref": "https://mef.rero.ch/api/places/gnd/1334779015" }, - "pid": "8093", + "pid": "10250", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04009300X" + "$ref": "https://mef.rero.ch/api/places/gnd/1334766363" }, - "pid": "8094", + "pid": "10251", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040093417" + "$ref": "https://mef.rero.ch/api/places/gnd/1334756465" }, - "pid": "8095", + "pid": "10252", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040183408" + "$ref": "https://mef.rero.ch/api/places/gnd/1334736340" }, - "pid": "8096", + "pid": "10253", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04024010X" + "$ref": "https://mef.rero.ch/api/places/gnd/1334729824" }, - "pid": "8097", + "pid": "10254", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040288099" + "$ref": "https://mef.rero.ch/api/places/gnd/1334725756" }, - "pid": "8098", + "pid": "10255", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040296377" + "$ref": "https://mef.rero.ch/api/places/gnd/1334725691" }, - "pid": "8099", + "pid": "10256", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040304817" + "$ref": "https://mef.rero.ch/api/places/gnd/1334671486" }, - "pid": "8100", + "pid": "10257", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040346919" + "$ref": "https://mef.rero.ch/api/places/gnd/1334670560" }, - "pid": "8101", + "pid": "10258", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040357422" + "$ref": "https://mef.rero.ch/api/places/gnd/1334670390" }, - "pid": "8102", + "pid": "10259", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040368114" + "$ref": "https://mef.rero.ch/api/places/gnd/1334670323" }, - "pid": "8103", + "pid": "10260", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04037372X" + "$ref": "https://mef.rero.ch/api/places/gnd/1334670048" }, - "pid": "8104", + "pid": "10261", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040376044" + "$ref": "https://mef.rero.ch/api/places/gnd/1334666474" }, - "pid": "8105", + "pid": "10262", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04041146X" + "$ref": "https://mef.rero.ch/api/places/gnd/1334665036" }, - "pid": "8106", + "pid": "10263", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040425134" + "$ref": "https://mef.rero.ch/api/places/gnd/1334665028" }, - "pid": "8107", + "pid": "10264", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040516687" + "$ref": "https://mef.rero.ch/api/places/gnd/1334664242" }, - "pid": "8108", + "pid": "10265", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04057749X" + "$ref": "https://mef.rero.ch/api/places/gnd/1334661073" }, - "pid": "8109", + "pid": "10266", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040594084" + "$ref": "https://mef.rero.ch/api/places/gnd/1334658196" }, - "pid": "8110", + "pid": "10267", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04060151X" + "$ref": "https://mef.rero.ch/api/places/gnd/1334657726" }, - "pid": "8111", + "pid": "10268", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040604853" + "$ref": "https://mef.rero.ch/api/places/gnd/133465641X" }, - "pid": "8112", + "pid": "10269", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040657752" + "$ref": "https://mef.rero.ch/api/places/gnd/1334632707" }, - "pid": "8113", + "pid": "10270", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040680223" + "$ref": "https://mef.rero.ch/api/places/gnd/133463209X" }, - "pid": "8114", + "pid": "10271", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040693309" + "$ref": "https://mef.rero.ch/api/places/gnd/133456325X" }, - "pid": "8115", + "pid": "10272", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040738582" + "$ref": "https://mef.rero.ch/api/places/gnd/1334560994" }, - "pid": "8116", + "pid": "10273", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040754766" + "$ref": "https://mef.rero.ch/api/places/gnd/1334559805" }, - "pid": "8117", + "pid": "10274", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040794903" + "$ref": "https://mef.rero.ch/api/places/gnd/1334558590" }, - "pid": "8118", + "pid": "10275", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040802558" + "$ref": "https://mef.rero.ch/api/places/gnd/1334556687" }, - "pid": "8119", + "pid": "10276", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040805905" + "$ref": "https://mef.rero.ch/api/places/gnd/1334554471" }, - "pid": "8120", + "pid": "10277", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040865622" + "$ref": "https://mef.rero.ch/api/places/gnd/1334554218" }, - "pid": "8121", + "pid": "10278", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040873862" + "$ref": "https://mef.rero.ch/api/places/gnd/1334552940" }, - "pid": "8122", + "pid": "10279", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040912833" + "$ref": "https://mef.rero.ch/api/places/gnd/1334552908" }, - "pid": "8123", + "pid": "10280", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040952789" + "$ref": "https://mef.rero.ch/api/places/gnd/1334552606" }, - "pid": "8124", + "pid": "10281", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040956075" + "$ref": "https://mef.rero.ch/api/places/gnd/1334538085" }, - "pid": "8125", + "pid": "10282", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040957977" + "$ref": "https://mef.rero.ch/api/places/gnd/133453666X" }, - "pid": "8126", + "pid": "10283", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040967689" + "$ref": "https://mef.rero.ch/api/places/gnd/1334531153" }, - "pid": "8127", + "pid": "10284", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/040994716" + "$ref": "https://mef.rero.ch/api/places/gnd/1334516766" }, - "pid": "8128", + "pid": "10285", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041011848" + "$ref": "https://mef.rero.ch/api/places/gnd/1334502854" }, - "pid": "8129", + "pid": "10286", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041058445" + "$ref": "https://mef.rero.ch/api/places/gnd/1334486573" }, - "pid": "8130", + "pid": "10287", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/04106125X" + "$ref": "https://mef.rero.ch/api/places/gnd/1334485763" }, - "pid": "8131", + "pid": "10288", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041063368" + "$ref": "https://mef.rero.ch/api/places/gnd/1334319561" }, - "pid": "8132", + "pid": "10289", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041084675" + "$ref": "https://mef.rero.ch/api/places/gnd/1334318492" }, - "pid": "8133", + "pid": "10290", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041087828" + "$ref": "https://mef.rero.ch/api/places/gnd/1334318069" }, - "pid": "8134", + "pid": "10291", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041112504" + "$ref": "https://mef.rero.ch/api/places/gnd/1334313776" }, - "pid": "8135", + "pid": "10292", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041154282" + "$ref": "https://mef.rero.ch/api/places/gnd/1334312974" }, - "pid": "8136", + "pid": "10293", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041167163" + "$ref": "https://mef.rero.ch/api/places/gnd/1334310661" }, - "pid": "8137", + "pid": "10294", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041192443" + "$ref": "https://mef.rero.ch/api/places/gnd/1334302111" }, - "pid": "8138", + "pid": "10295", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041194152" + "$ref": "https://mef.rero.ch/api/places/gnd/1334300054" }, - "pid": "8139", + "pid": "10296", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041370538" + "$ref": "https://mef.rero.ch/api/places/gnd/133422725X" }, - "pid": "8140", + "pid": "10297", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/041401174" + "$ref": "https://mef.rero.ch/api/places/gnd/1334221979" }, - "pid": "8141", + "pid": "10298", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/042005450" + "$ref": "https://mef.rero.ch/api/places/gnd/1334198845" }, - "pid": "8142", + "pid": "10299", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/042209927" + "$ref": "https://mef.rero.ch/api/places/gnd/1334117918" }, - "pid": "8143", + "pid": "10300", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/042236037" + "$ref": "https://mef.rero.ch/api/places/gnd/1334101221" }, - "pid": "8144", + "pid": "10301", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/042244943" + "$ref": "https://mef.rero.ch/api/places/gnd/1334086826" }, - "pid": "8145", + "pid": "10302", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/042260213" + "$ref": "https://mef.rero.ch/api/places/gnd/1334027250" }, - "pid": "8146", + "pid": "10303", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/042299004" + "$ref": "https://mef.rero.ch/api/places/gnd/1334024804" }, - "pid": "8147", + "pid": "10304", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/042387175" + "$ref": "https://mef.rero.ch/api/places/gnd/1334011753" }, - "pid": "8148", + "pid": "10305", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/042400228" + "$ref": "https://mef.rero.ch/api/places/gnd/1334011079" }, - "pid": "8149", + "pid": "10306", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/042477247" + "$ref": "https://mef.rero.ch/api/places/gnd/1334001529" }, - "pid": "8150", + "pid": "10307", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/042490448" + "$ref": "https://mef.rero.ch/api/places/gnd/1333989954" }, - "pid": "8151", + "pid": "10308", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/042492777" + "$ref": "https://mef.rero.ch/api/places/gnd/1333660758" }, - "pid": "8152", + "pid": "10309", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/042553628" + "$ref": "https://mef.rero.ch/api/places/gnd/1333582501" }, - "pid": "8153", + "pid": "10310", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/042567874" + "$ref": "https://mef.rero.ch/api/places/gnd/1333570511" }, - "pid": "8154", + "pid": "10311", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/042602564" + "$ref": "https://mef.rero.ch/api/places/gnd/133355513X" }, - "pid": "8155", + "pid": "10312", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/042627494" + "$ref": "https://mef.rero.ch/api/places/gnd/1333333668" }, - "pid": "8156", + "pid": "10313", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/042778352" + "$ref": "https://mef.rero.ch/api/places/gnd/1333321090" }, - "pid": "8157", + "pid": "10314", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/042788714" + "$ref": "https://mef.rero.ch/api/places/gnd/1333315902" }, - "pid": "8158", + "pid": "10315", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/042939526" + "$ref": "https://mef.rero.ch/api/places/gnd/1333263465" }, - "pid": "8159", + "pid": "10316", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/042939550" + "$ref": "https://mef.rero.ch/api/places/gnd/1333255853" }, - "pid": "8160", + "pid": "10317", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/042976200" + "$ref": "https://mef.rero.ch/api/places/gnd/1333228880" }, - "pid": "8161", + "pid": "10318", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/043138764" + "$ref": "https://mef.rero.ch/api/places/gnd/1333113943" }, - "pid": "8162", + "pid": "10319", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/043151019" + "$ref": "https://mef.rero.ch/api/places/gnd/1332874568" }, - "pid": "8163", + "pid": "10320", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/043225608" + "$ref": "https://mef.rero.ch/api/places/gnd/1332858198" }, - "pid": "8164", + "pid": "10321", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/043244793" + "$ref": "https://mef.rero.ch/api/places/gnd/1332769349" }, - "pid": "8165", + "pid": "10322", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/050039350" + "$ref": "https://mef.rero.ch/api/places/gnd/1332757375" }, - "pid": "8166", + "pid": "10323", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/050133039" + "$ref": "https://mef.rero.ch/api/places/gnd/1332755666" }, - "pid": "8167", + "pid": "10324", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/050551604" + "$ref": "https://mef.rero.ch/api/places/gnd/1332749054" }, - "pid": "8168", + "pid": "10325", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1001762630" + "$ref": "https://mef.rero.ch/api/places/gnd/1332747108" }, - "pid": "8169", + "pid": "10326", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1002427517" + "$ref": "https://mef.rero.ch/api/places/gnd/1332742351" }, - "pid": "8170", + "pid": "10327", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1008073997" + "$ref": "https://mef.rero.ch/api/places/gnd/1332735002" }, - "pid": "8171", + "pid": "10328", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1009707922" + "$ref": "https://mef.rero.ch/api/places/gnd/1332734863" }, - "pid": "8172", + "pid": "10329", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1009847430" + "$ref": "https://mef.rero.ch/api/places/gnd/133273457X" }, - "pid": "8173", + "pid": "10330", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1010249460" + "$ref": "https://mef.rero.ch/api/places/gnd/1332733751" }, - "pid": "8174", + "pid": "10331", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1010438603" + "$ref": "https://mef.rero.ch/api/places/gnd/1332732577" }, - "pid": "8175", + "pid": "10332", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1011060752" + "$ref": "https://mef.rero.ch/api/places/gnd/1332731430" }, - "pid": "8176", + "pid": "10333", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1016112106" + "$ref": "https://mef.rero.ch/api/places/gnd/1332670482" }, - "pid": "8177", + "pid": "10334", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1020865237" + "$ref": "https://mef.rero.ch/api/places/gnd/1332669689" }, - "pid": "8178", + "pid": "10335", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1020865318" + "$ref": "https://mef.rero.ch/api/places/gnd/1332451578" }, - "pid": "8179", + "pid": "10336", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1020897236" + "$ref": "https://mef.rero.ch/api/places/gnd/1332353436" }, - "pid": "8180", + "pid": "10337", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1020897325" + "$ref": "https://mef.rero.ch/api/places/gnd/1332057209" }, - "pid": "8181", + "pid": "10338", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1020911026" + "$ref": "https://mef.rero.ch/api/places/gnd/1332055729" }, - "pid": "8182", + "pid": "10339", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1020911344" + "$ref": "https://mef.rero.ch/api/places/gnd/1332031374" }, - "pid": "8183", + "pid": "10340", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1020911387" + "$ref": "https://mef.rero.ch/api/places/gnd/1331729661" }, - "pid": "8184", + "pid": "10341", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1021056154" + "$ref": "https://mef.rero.ch/api/places/gnd/1331609186" }, - "pid": "8185", + "pid": "10342", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1021112216" + "$ref": "https://mef.rero.ch/api/places/gnd/1331604346" }, - "pid": "8186", + "pid": "10343", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1021112518" + "$ref": "https://mef.rero.ch/api/places/gnd/1331602718" }, - "pid": "8187", + "pid": "10344", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1021112577" + "$ref": "https://mef.rero.ch/api/places/gnd/1331601630" }, - "pid": "8188", + "pid": "10345", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1021113018" + "$ref": "https://mef.rero.ch/api/places/gnd/1331514282" }, - "pid": "8189", + "pid": "10346", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1021396656" + "$ref": "https://mef.rero.ch/api/places/gnd/1331513952" }, - "pid": "8190", + "pid": "10347", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1024812693" + "$ref": "https://mef.rero.ch/api/places/gnd/1331379539" }, - "pid": "8191", + "pid": "10348", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1028231660" + "$ref": "https://mef.rero.ch/api/places/gnd/1331109191" }, - "pid": "8192", + "pid": "10349", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1029388334" + "$ref": "https://mef.rero.ch/api/places/gnd/1331089271" }, - "pid": "8193", + "pid": "10350", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1029389233" + "$ref": "https://mef.rero.ch/api/places/gnd/1330982746" }, - "pid": "8194", + "pid": "10351", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1029389896" + "$ref": "https://mef.rero.ch/api/places/gnd/1330866738" }, - "pid": "8195", + "pid": "10352", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1031571922" + "$ref": "https://mef.rero.ch/api/places/gnd/1330847199" }, - "pid": "8196", + "pid": "10353", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1032436034" + "$ref": "https://mef.rero.ch/api/places/gnd/1330436237" }, - "pid": "8197", + "pid": "10354", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1035487640" + "$ref": "https://mef.rero.ch/api/places/gnd/1330428420" }, - "pid": "8198", + "pid": "10355", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1036573141" + "$ref": "https://mef.rero.ch/api/places/gnd/1330324463" }, - "pid": "8199", + "pid": "10356", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1036912949" + "$ref": "https://mef.rero.ch/api/places/gnd/1330302877" }, - "pid": "8200", + "pid": "10357", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1038831628" + "$ref": "https://mef.rero.ch/api/places/gnd/1330290887" }, - "pid": "8201", + "pid": "10358", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1044268069" + "$ref": "https://mef.rero.ch/api/places/gnd/1330177274" }, - "pid": "8202", + "pid": "10359", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1051746663" + "$ref": "https://mef.rero.ch/api/places/gnd/1329890205" }, - "pid": "8203", + "pid": "10360", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1053460856" + "$ref": "https://mef.rero.ch/api/places/gnd/1329430875" }, - "pid": "8204", + "pid": "10361", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1053495382" + "$ref": "https://mef.rero.ch/api/places/gnd/1316359042" }, - "pid": "8205", + "pid": "10362", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1053578571" + "$ref": "https://mef.rero.ch/api/places/gnd/1314596373" }, - "pid": "8206", + "pid": "10363", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1053585039" + "$ref": "https://mef.rero.ch/api/places/gnd/1302571524" }, - "pid": "8207", + "pid": "10364", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/105366916X" + "$ref": "https://mef.rero.ch/api/places/gnd/1300397128" }, - "pid": "8208", + "pid": "10365", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1053694857" + "$ref": "https://mef.rero.ch/api/places/gnd/1299383890" }, - "pid": "8209", + "pid": "10366", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1053733119" + "$ref": "https://mef.rero.ch/api/places/gnd/129673143X" }, - "pid": "8210", + "pid": "10367", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/105382467X" + "$ref": "https://mef.rero.ch/api/places/gnd/1295131781" }, - "pid": "8211", + "pid": "10368", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1054036322" + "$ref": "https://mef.rero.ch/api/places/gnd/1287837611" }, - "pid": "8212", + "pid": "10369", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1054036489" + "$ref": "https://mef.rero.ch/api/places/gnd/1286132703" }, - "pid": "8213", + "pid": "10370", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1054382255" + "$ref": "https://mef.rero.ch/api/places/gnd/1284341119" }, - "pid": "8214", + "pid": "10371", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1054442959" + "$ref": "https://mef.rero.ch/api/places/gnd/1282328816" }, - "pid": "8215", + "pid": "10372", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1054611041" + "$ref": "https://mef.rero.ch/api/places/gnd/1275159915" }, - "pid": "8216", + "pid": "10373", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1054631026" + "$ref": "https://mef.rero.ch/api/places/gnd/1271173751" }, - "pid": "8217", + "pid": "10374", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1054961824" + "$ref": "https://mef.rero.ch/api/places/gnd/1267606541" }, - "pid": "8218", + "pid": "10375", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1055068716" + "$ref": "https://mef.rero.ch/api/places/gnd/1262419808" }, - "pid": "8219", + "pid": "10376", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1056973714" + "$ref": "https://mef.rero.ch/api/places/gnd/1240912943" }, - "pid": "8220", + "pid": "10377", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1057942928" + "$ref": "https://mef.rero.ch/api/places/gnd/1239866968" }, - "pid": "8221", + "pid": "10378", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058041142" + "$ref": "https://mef.rero.ch/api/places/gnd/1239463502" }, - "pid": "8222", + "pid": "10379", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058395726" + "$ref": "https://mef.rero.ch/api/places/gnd/1237860342" }, - "pid": "8223", + "pid": "10380", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058460293" + "$ref": "https://mef.rero.ch/api/places/gnd/1237828171" }, - "pid": "8224", + "pid": "10381", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058460862" + "$ref": "https://mef.rero.ch/api/places/gnd/1237774101" }, - "pid": "8225", + "pid": "10382", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058463896" + "$ref": "https://mef.rero.ch/api/places/gnd/1237279453" }, - "pid": "8226", + "pid": "10383", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058463993" + "$ref": "https://mef.rero.ch/api/places/gnd/1236792211" }, - "pid": "8227", + "pid": "10384", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058579045" + "$ref": "https://mef.rero.ch/api/places/gnd/123657754X" }, - "pid": "8228", + "pid": "10385", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058583018" + "$ref": "https://mef.rero.ch/api/places/gnd/1235360709" }, - "pid": "8229", + "pid": "10386", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058616579" + "$ref": "https://mef.rero.ch/api/places/gnd/1233310046" }, - "pid": "8230", + "pid": "10387", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058616684" + "$ref": "https://mef.rero.ch/api/places/gnd/1232243698" }, - "pid": "8231", + "pid": "10388", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058622773" + "$ref": "https://mef.rero.ch/api/places/gnd/1225876354" }, - "pid": "8232", + "pid": "10389", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/105863982X" + "$ref": "https://mef.rero.ch/api/places/gnd/1224278054" }, - "pid": "8233", + "pid": "10390", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058639919" + "$ref": "https://mef.rero.ch/api/places/gnd/122413754X" }, - "pid": "8234", + "pid": "10391", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058651994" + "$ref": "https://mef.rero.ch/api/places/gnd/122219953X" }, - "pid": "8235", + "pid": "10392", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058661396" + "$ref": "https://mef.rero.ch/api/places/gnd/1222199440" }, - "pid": "8236", + "pid": "10393", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058664468" + "$ref": "https://mef.rero.ch/api/places/gnd/1219234621" }, - "pid": "8237", + "pid": "10394", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058667343" + "$ref": "https://mef.rero.ch/api/places/gnd/1215862520" }, - "pid": "8238", + "pid": "10395", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058838512" + "$ref": "https://mef.rero.ch/api/places/gnd/1208649175" }, - "pid": "8239", + "pid": "10396", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058840819" + "$ref": "https://mef.rero.ch/api/places/gnd/1206005505" }, - "pid": "8240", + "pid": "10397", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058876872" + "$ref": "https://mef.rero.ch/api/places/gnd/1203261837" }, - "pid": "8241", + "pid": "10398", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058880373" + "$ref": "https://mef.rero.ch/api/places/gnd/1197938001" }, - "pid": "8242", + "pid": "10399", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058890611" + "$ref": "https://mef.rero.ch/api/places/gnd/1192399013" }, - "pid": "8243", + "pid": "10400", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058896318" + "$ref": "https://mef.rero.ch/api/places/gnd/1191133729" }, - "pid": "8244", + "pid": "10401", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058899597" + "$ref": "https://mef.rero.ch/api/places/gnd/1190333392" }, - "pid": "8245", + "pid": "10402", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058918176" + "$ref": "https://mef.rero.ch/api/places/gnd/1190333082" }, - "pid": "8246", + "pid": "10403", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058919954" + "$ref": "https://mef.rero.ch/api/places/gnd/1190328259" }, - "pid": "8247", + "pid": "10404", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058928732" + "$ref": "https://mef.rero.ch/api/places/gnd/1189443015" }, - "pid": "8248", + "pid": "10405", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/105892978X" + "$ref": "https://mef.rero.ch/api/places/gnd/1188738658" }, - "pid": "8249", + "pid": "10406", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058939068" + "$ref": "https://mef.rero.ch/api/places/gnd/1184832803" }, - "pid": "8250", + "pid": "10407", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058973045" + "$ref": "https://mef.rero.ch/api/places/gnd/1184428727" }, - "pid": "8251", + "pid": "10408", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058984144" + "$ref": "https://mef.rero.ch/api/places/gnd/1182916759" }, - "pid": "8252", + "pid": "10409", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058985299" + "$ref": "https://mef.rero.ch/api/places/gnd/1182704948" }, - "pid": "8253", + "pid": "10410", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058986333" + "$ref": "https://mef.rero.ch/api/places/gnd/1180664485" }, - "pid": "8254", + "pid": "10411", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1058994743" + "$ref": "https://mef.rero.ch/api/places/gnd/1180620623" }, - "pid": "8255", + "pid": "10412", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/105914249X" + "$ref": "https://mef.rero.ch/api/places/gnd/1179502884" }, - "pid": "8256", + "pid": "10413", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1059250454" + "$ref": "https://mef.rero.ch/api/places/gnd/1177183811" }, - "pid": "8257", + "pid": "10414", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1059357755" + "$ref": "https://mef.rero.ch/api/places/gnd/1177087480" }, - "pid": "8258", + "pid": "10415", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1059359022" + "$ref": "https://mef.rero.ch/api/places/gnd/1171383401" }, - "pid": "8259", + "pid": "10416", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1059376946" + "$ref": "https://mef.rero.ch/api/places/gnd/1169806708" }, - "pid": "8260", + "pid": "10417", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1059378396" + "$ref": "https://mef.rero.ch/api/places/gnd/1169806686" }, - "pid": "8261", + "pid": "10418", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1059448831" + "$ref": "https://mef.rero.ch/api/places/gnd/1169805167" }, - "pid": "8262", + "pid": "10419", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1060087367" + "$ref": "https://mef.rero.ch/api/places/gnd/1169805140" }, - "pid": "8263", + "pid": "10420", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1060132206" + "$ref": "https://mef.rero.ch/api/places/gnd/1167694643" }, - "pid": "8264", + "pid": "10421", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1060238128" + "$ref": "https://mef.rero.ch/api/places/gnd/1167335767" }, - "pid": "8265", + "pid": "10422", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1060401134" + "$ref": "https://mef.rero.ch/api/places/gnd/1166988325" }, - "pid": "8266", + "pid": "10423", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1060419319" + "$ref": "https://mef.rero.ch/api/places/gnd/1166988007" }, - "pid": "8267", + "pid": "10424", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/106050104X" + "$ref": "https://mef.rero.ch/api/places/gnd/1166098877" }, - "pid": "8268", + "pid": "10425", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1060501457" + "$ref": "https://mef.rero.ch/api/places/gnd/1165597586" }, - "pid": "8269", + "pid": "10426", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1060501759" + "$ref": "https://mef.rero.ch/api/places/gnd/1164527657" }, - "pid": "8270", + "pid": "10427", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1060501902" + "$ref": "https://mef.rero.ch/api/places/gnd/116355815X" }, - "pid": "8271", + "pid": "10428", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/106050216X" + "$ref": "https://mef.rero.ch/api/places/gnd/1163558095" }, - "pid": "8272", + "pid": "10429", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1060502372" + "$ref": "https://mef.rero.ch/api/places/gnd/1163419907" }, - "pid": "8273", + "pid": "10430", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1060502585" + "$ref": "https://mef.rero.ch/api/places/gnd/1161830820" }, - "pid": "8274", + "pid": "10431", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1060502682" + "$ref": "https://mef.rero.ch/api/places/gnd/1161625046" }, - "pid": "8275", + "pid": "10432", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1060502798" + "$ref": "https://mef.rero.ch/api/places/gnd/1156658128" }, - "pid": "8276", + "pid": "10433", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1060503166" + "$ref": "https://mef.rero.ch/api/places/gnd/1156051029" }, - "pid": "8277", + "pid": "10434", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1060503611" + "$ref": "https://mef.rero.ch/api/places/gnd/1148115242" }, - "pid": "8278", + "pid": "10435", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/106081482X" + "$ref": "https://mef.rero.ch/api/places/gnd/1147654123" }, - "pid": "8279", + "pid": "10436", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1060849127" + "$ref": "https://mef.rero.ch/api/places/gnd/1143714245" }, - "pid": "8280", + "pid": "10437", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1061004198" + "$ref": "https://mef.rero.ch/api/places/gnd/1143154991" }, - "pid": "8281", + "pid": "10438", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1062516109" + "$ref": "https://mef.rero.ch/api/places/gnd/1142135993" }, - "pid": "8282", + "pid": "10439", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1062531191" + "$ref": "https://mef.rero.ch/api/places/gnd/1139463888" }, - "pid": "8283", + "pid": "10440", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1062891848" + "$ref": "https://mef.rero.ch/api/places/gnd/113914071X" }, - "pid": "8284", + "pid": "10441", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1062970004" + "$ref": "https://mef.rero.ch/api/places/gnd/113698612X" }, - "pid": "8285", + "pid": "10442", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1062979583" + "$ref": "https://mef.rero.ch/api/places/gnd/1136731237" }, - "pid": "8286", + "pid": "10443", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1064049419" + "$ref": "https://mef.rero.ch/api/places/gnd/1136092293" }, - "pid": "8287", + "pid": "10444", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1064601502" + "$ref": "https://mef.rero.ch/api/places/gnd/1135805342" }, - "pid": "8288", + "pid": "10445", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1064714455" + "$ref": "https://mef.rero.ch/api/places/gnd/1135798842" }, - "pid": "8289", + "pid": "10446", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1064960243" + "$ref": "https://mef.rero.ch/api/places/gnd/1133293247" }, - "pid": "8290", + "pid": "10447", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1067272488" + "$ref": "https://mef.rero.ch/api/places/gnd/1132227771" }, - "pid": "8291", + "pid": "10448", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1067274006" + "$ref": "https://mef.rero.ch/api/places/gnd/1124279156" }, - "pid": "8292", + "pid": "10449", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1067636757" + "$ref": "https://mef.rero.ch/api/places/gnd/1122747160" }, - "pid": "8293", + "pid": "10450", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1067637184" + "$ref": "https://mef.rero.ch/api/places/gnd/1122668171" }, - "pid": "8294", + "pid": "10451", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1067860142" + "$ref": "https://mef.rero.ch/api/places/gnd/112132925X" }, - "pid": "8295", + "pid": "10452", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1067878831" + "$ref": "https://mef.rero.ch/api/places/gnd/1107605113" }, - "pid": "8296", + "pid": "10453", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1067883703" + "$ref": "https://mef.rero.ch/api/places/gnd/1105589110" }, - "pid": "8297", + "pid": "10454", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1068118490" + "$ref": "https://mef.rero.ch/api/places/gnd/1101612258" }, - "pid": "8298", + "pid": "10455", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1069803782" + "$ref": "https://mef.rero.ch/api/places/gnd/1100323325" }, - "pid": "8299", + "pid": "10456", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1070113026" + "$ref": "https://mef.rero.ch/api/places/gnd/1100201831" }, - "pid": "8300", + "pid": "10457", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1071862391" + "$ref": "https://mef.rero.ch/api/places/gnd/1099133092" }, - "pid": "8301", + "pid": "10458", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1071872435" + "$ref": "https://mef.rero.ch/api/places/gnd/1099132061" }, - "pid": "8302", + "pid": "10459", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/107283314X" + "$ref": "https://mef.rero.ch/api/places/gnd/1097213617" }, - "pid": "8303", + "pid": "10460", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1073267830" + "$ref": "https://mef.rero.ch/api/places/gnd/1095576461" }, - "pid": "8304", + "pid": "10461", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/107362062X" + "$ref": "https://mef.rero.ch/api/places/gnd/1085229823" }, - "pid": "8305", + "pid": "10462", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1073724549" + "$ref": "https://mef.rero.ch/api/places/gnd/1082797251" }, - "pid": "8306", + "pid": "10463", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/107373157X" + "$ref": "https://mef.rero.ch/api/places/gnd/1082520101" }, - "pid": "8307", + "pid": "10464", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1073950220" + "$ref": "https://mef.rero.ch/api/places/gnd/1082153850" }, - "pid": "8308", + "pid": "10465", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/107399077X" + "$ref": "https://mef.rero.ch/api/places/gnd/1082012033" }, - "pid": "8309", + "pid": "10466", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1074316908" + "$ref": "https://mef.rero.ch/api/places/gnd/1082001430" }, - "pid": "8310", + "pid": "10467", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1074377397" + "$ref": "https://mef.rero.ch/api/places/gnd/1081845031" }, - "pid": "8311", + "pid": "10468", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1075220467" + "$ref": "https://mef.rero.ch/api/places/gnd/1081844973" }, - "pid": "8312", + "pid": "10469", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1075827361" + "$ref": "https://mef.rero.ch/api/places/gnd/1081842474" }, - "pid": "8313", + "pid": "10470", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1076027032" + "$ref": "https://mef.rero.ch/api/places/gnd/1081839082" }, - "pid": "8314", + "pid": "10471", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/107699847X" + "$ref": "https://mef.rero.ch/api/places/gnd/1081838779" }, - "pid": "8315", + "pid": "10472", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1077053185" + "$ref": "https://mef.rero.ch/api/places/gnd/1081838655" }, - "pid": "8316", + "pid": "10473", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1077053320" + "$ref": "https://mef.rero.ch/api/places/gnd/1081838507" }, - "pid": "8317", + "pid": "10474", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1077893450" + "$ref": "https://mef.rero.ch/api/places/gnd/1081838396" }, - "pid": "8318", + "pid": "10475", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1078131902" + "$ref": "https://mef.rero.ch/api/places/gnd/1081838310" }, - "pid": "8319", + "pid": "10476", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1079568352" + "$ref": "https://mef.rero.ch/api/places/gnd/1081838167" }, - "pid": "8320", + "pid": "10477", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1079692916" + "$ref": "https://mef.rero.ch/api/places/gnd/1081838051" }, - "pid": "8321", + "pid": "10478", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1081097930" + "$ref": "https://mef.rero.ch/api/places/gnd/1081330236" }, - "pid": "8322", + "pid": "10479", "type": "bf:Place" }, { "gnd": { "$ref": "https://mef.rero.ch/api/places/gnd/1081212918" }, - "pid": "8323", + "pid": "10480", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1081330236" + "$ref": "https://mef.rero.ch/api/places/gnd/1081097930" }, - "pid": "8324", + "pid": "10481", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1081838051" + "$ref": "https://mef.rero.ch/api/places/gnd/1079692916" }, - "pid": "8325", + "pid": "10482", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1081838167" + "$ref": "https://mef.rero.ch/api/places/gnd/1079568352" }, - "pid": "8326", + "pid": "10483", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1081838310" + "$ref": "https://mef.rero.ch/api/places/gnd/1078131902" }, - "pid": "8327", + "pid": "10484", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1081838396" + "$ref": "https://mef.rero.ch/api/places/gnd/1077893450" }, - "pid": "8328", + "pid": "10485", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1081838507" + "$ref": "https://mef.rero.ch/api/places/gnd/1077053320" }, - "pid": "8329", + "pid": "10486", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1081838655" + "$ref": "https://mef.rero.ch/api/places/gnd/1077053185" }, - "pid": "8330", + "pid": "10487", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1081838779" + "$ref": "https://mef.rero.ch/api/places/gnd/107699847X" }, - "pid": "8331", + "pid": "10488", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1081839082" + "$ref": "https://mef.rero.ch/api/places/gnd/1076027032" }, - "pid": "8332", + "pid": "10489", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1081842474" + "$ref": "https://mef.rero.ch/api/places/gnd/1075827361" }, - "pid": "8333", + "pid": "10490", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1081844973" + "$ref": "https://mef.rero.ch/api/places/gnd/1075220467" }, - "pid": "8334", + "pid": "10491", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1081845031" + "$ref": "https://mef.rero.ch/api/places/gnd/1074377397" }, - "pid": "8335", + "pid": "10492", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1082001430" + "$ref": "https://mef.rero.ch/api/places/gnd/1074316908" }, - "pid": "8336", + "pid": "10493", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1082012033" + "$ref": "https://mef.rero.ch/api/places/gnd/107399077X" }, - "pid": "8337", + "pid": "10494", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1082153850" + "$ref": "https://mef.rero.ch/api/places/gnd/1073950220" }, - "pid": "8338", + "pid": "10495", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1082520101" + "$ref": "https://mef.rero.ch/api/places/gnd/107373157X" }, - "pid": "8339", + "pid": "10496", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1082797251" + "$ref": "https://mef.rero.ch/api/places/gnd/1073724549" }, - "pid": "8340", + "pid": "10497", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1085229823" + "$ref": "https://mef.rero.ch/api/places/gnd/107362062X" }, - "pid": "8341", + "pid": "10498", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1095576461" + "$ref": "https://mef.rero.ch/api/places/gnd/1073267830" }, - "pid": "8342", + "pid": "10499", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1097213617" + "$ref": "https://mef.rero.ch/api/places/gnd/107283314X" }, - "pid": "8343", + "pid": "10500", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1099132061" + "$ref": "https://mef.rero.ch/api/places/gnd/1071872435" }, - "pid": "8344", + "pid": "10501", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1099133092" + "$ref": "https://mef.rero.ch/api/places/gnd/1071862391" }, - "pid": "8345", + "pid": "10502", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1100201831" + "$ref": "https://mef.rero.ch/api/places/gnd/1070113026" }, - "pid": "8346", + "pid": "10503", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1100323325" + "$ref": "https://mef.rero.ch/api/places/gnd/1069803782" }, - "pid": "8347", + "pid": "10504", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1101612258" + "$ref": "https://mef.rero.ch/api/places/gnd/1068118490" }, - "pid": "8348", + "pid": "10505", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1105589110" + "$ref": "https://mef.rero.ch/api/places/gnd/1067883703" }, - "pid": "8349", + "pid": "10506", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1107605113" + "$ref": "https://mef.rero.ch/api/places/gnd/1067878831" }, - "pid": "8350", + "pid": "10507", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/112132925X" + "$ref": "https://mef.rero.ch/api/places/gnd/1067860142" }, - "pid": "8351", + "pid": "10508", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1122668171" + "$ref": "https://mef.rero.ch/api/places/gnd/1067637184" }, - "pid": "8352", + "pid": "10509", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1122747160" + "$ref": "https://mef.rero.ch/api/places/gnd/1067636757" }, - "pid": "8353", + "pid": "10510", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1124279156" + "$ref": "https://mef.rero.ch/api/places/gnd/1067274006" }, - "pid": "8354", + "pid": "10511", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1132227771" + "$ref": "https://mef.rero.ch/api/places/gnd/1067272488" }, - "pid": "8355", + "pid": "10512", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1133293247" + "$ref": "https://mef.rero.ch/api/places/gnd/1064960243" }, - "pid": "8356", + "pid": "10513", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1135798842" + "$ref": "https://mef.rero.ch/api/places/gnd/1064714455" }, - "pid": "8357", + "pid": "10514", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1135805342" + "$ref": "https://mef.rero.ch/api/places/gnd/1064601502" }, - "pid": "8358", + "pid": "10515", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1136092293" + "$ref": "https://mef.rero.ch/api/places/gnd/1064049419" }, - "pid": "8359", + "pid": "10516", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1136731237" + "$ref": "https://mef.rero.ch/api/places/gnd/1062979583" }, - "pid": "8360", + "pid": "10517", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/113698612X" + "$ref": "https://mef.rero.ch/api/places/gnd/1062970004" }, - "pid": "8361", + "pid": "10518", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/113914071X" + "$ref": "https://mef.rero.ch/api/places/gnd/1062891848" }, - "pid": "8362", + "pid": "10519", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1139463888" + "$ref": "https://mef.rero.ch/api/places/gnd/1062531191" }, - "pid": "8363", + "pid": "10520", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1142135993" + "$ref": "https://mef.rero.ch/api/places/gnd/1062516109" }, - "pid": "8364", + "pid": "10521", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1143154991" + "$ref": "https://mef.rero.ch/api/places/gnd/1061004198" }, - "pid": "8365", + "pid": "10522", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1143714245" + "$ref": "https://mef.rero.ch/api/places/gnd/1060849127" }, - "pid": "8366", + "pid": "10523", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1147654123" + "$ref": "https://mef.rero.ch/api/places/gnd/106081482X" }, - "pid": "8367", + "pid": "10524", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1148115242" + "$ref": "https://mef.rero.ch/api/places/gnd/1060503611" }, - "pid": "8368", + "pid": "10525", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1156051029" + "$ref": "https://mef.rero.ch/api/places/gnd/1060503166" }, - "pid": "8369", + "pid": "10526", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1156658128" + "$ref": "https://mef.rero.ch/api/places/gnd/1060502798" }, - "pid": "8370", + "pid": "10527", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1161625046" + "$ref": "https://mef.rero.ch/api/places/gnd/1060502682" }, - "pid": "8371", + "pid": "10528", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1161830820" + "$ref": "https://mef.rero.ch/api/places/gnd/1060502585" }, - "pid": "8372", + "pid": "10529", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1163419907" + "$ref": "https://mef.rero.ch/api/places/gnd/1060502372" }, - "pid": "8373", + "pid": "10530", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1163558095" + "$ref": "https://mef.rero.ch/api/places/gnd/106050216X" }, - "pid": "8374", + "pid": "10531", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/116355815X" + "$ref": "https://mef.rero.ch/api/places/gnd/1060501902" }, - "pid": "8375", + "pid": "10532", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1164527657" + "$ref": "https://mef.rero.ch/api/places/gnd/1060501759" }, - "pid": "8376", + "pid": "10533", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1165597586" + "$ref": "https://mef.rero.ch/api/places/gnd/1060501457" }, - "pid": "8377", + "pid": "10534", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1166098877" + "$ref": "https://mef.rero.ch/api/places/gnd/106050104X" }, - "pid": "8378", + "pid": "10535", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1166988007" + "$ref": "https://mef.rero.ch/api/places/gnd/1060419319" }, - "pid": "8379", + "pid": "10536", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1166988325" + "$ref": "https://mef.rero.ch/api/places/gnd/1060401134" }, - "pid": "8380", + "pid": "10537", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1167335767" + "$ref": "https://mef.rero.ch/api/places/gnd/1060238128" }, - "pid": "8381", + "pid": "10538", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1167694643" + "$ref": "https://mef.rero.ch/api/places/gnd/1060132206" }, - "pid": "8382", + "pid": "10539", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1169805140" + "$ref": "https://mef.rero.ch/api/places/gnd/1060087367" }, - "pid": "8383", + "pid": "10540", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1169805167" + "$ref": "https://mef.rero.ch/api/places/gnd/1059448831" }, - "pid": "8384", + "pid": "10541", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1169806686" + "$ref": "https://mef.rero.ch/api/places/gnd/1059378396" }, - "pid": "8385", + "pid": "10542", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1169806708" + "$ref": "https://mef.rero.ch/api/places/gnd/1059376946" }, - "pid": "8386", + "pid": "10543", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1171383401" + "$ref": "https://mef.rero.ch/api/places/gnd/1059359022" }, - "pid": "8387", + "pid": "10544", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1177087480" + "$ref": "https://mef.rero.ch/api/places/gnd/1059357755" }, - "pid": "8388", + "pid": "10545", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1177183811" + "$ref": "https://mef.rero.ch/api/places/gnd/1059250454" }, - "pid": "8389", + "pid": "10546", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1179502884" + "$ref": "https://mef.rero.ch/api/places/gnd/105914249X" }, - "pid": "8390", + "pid": "10547", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1180620623" + "$ref": "https://mef.rero.ch/api/places/gnd/1058994743" }, - "pid": "8391", + "pid": "10548", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1180664485" + "$ref": "https://mef.rero.ch/api/places/gnd/1058986333" }, - "pid": "8392", + "pid": "10549", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1182704948" + "$ref": "https://mef.rero.ch/api/places/gnd/1058985299" }, - "pid": "8393", + "pid": "10550", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1182916759" + "$ref": "https://mef.rero.ch/api/places/gnd/1058984144" }, - "pid": "8394", + "pid": "10551", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1184428727" + "$ref": "https://mef.rero.ch/api/places/gnd/1058973045" }, - "pid": "8395", + "pid": "10552", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1184832803" + "$ref": "https://mef.rero.ch/api/places/gnd/1058939068" }, - "pid": "8396", + "pid": "10553", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1188738658" + "$ref": "https://mef.rero.ch/api/places/gnd/105892978X" }, - "pid": "8397", + "pid": "10554", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1189443015" + "$ref": "https://mef.rero.ch/api/places/gnd/1058928732" }, - "pid": "8398", + "pid": "10555", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1190328259" + "$ref": "https://mef.rero.ch/api/places/gnd/1058919954" }, - "pid": "8399", + "pid": "10556", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1190333082" + "$ref": "https://mef.rero.ch/api/places/gnd/1058918176" }, - "pid": "8400", + "pid": "10557", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1190333392" + "$ref": "https://mef.rero.ch/api/places/gnd/1058899597" }, - "pid": "8401", + "pid": "10558", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1191133729" + "$ref": "https://mef.rero.ch/api/places/gnd/1058896318" }, - "pid": "8402", + "pid": "10559", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1192399013" + "$ref": "https://mef.rero.ch/api/places/gnd/1058890611" }, - "pid": "8403", + "pid": "10560", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1197938001" + "$ref": "https://mef.rero.ch/api/places/gnd/1058880373" }, - "pid": "8404", + "pid": "10561", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1203261837" + "$ref": "https://mef.rero.ch/api/places/gnd/1058876872" }, - "pid": "8405", + "pid": "10562", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1206005505" + "$ref": "https://mef.rero.ch/api/places/gnd/1058840819" }, - "pid": "8406", + "pid": "10563", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1208649175" + "$ref": "https://mef.rero.ch/api/places/gnd/1058838512" }, - "pid": "8407", + "pid": "10564", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1215862520" + "$ref": "https://mef.rero.ch/api/places/gnd/1058667343" }, - "pid": "8408", + "pid": "10565", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1219234621" + "$ref": "https://mef.rero.ch/api/places/gnd/1058664468" }, - "pid": "8409", + "pid": "10566", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1222199440" + "$ref": "https://mef.rero.ch/api/places/gnd/1058661396" }, - "pid": "8410", + "pid": "10567", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/122219953X" + "$ref": "https://mef.rero.ch/api/places/gnd/1058651994" }, - "pid": "8411", + "pid": "10568", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/122413754X" + "$ref": "https://mef.rero.ch/api/places/gnd/1058639919" }, - "pid": "8412", + "pid": "10569", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1224278054" + "$ref": "https://mef.rero.ch/api/places/gnd/105863982X" }, - "pid": "8413", + "pid": "10570", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1225876354" + "$ref": "https://mef.rero.ch/api/places/gnd/1058622773" }, - "pid": "8414", + "pid": "10571", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1232243698" + "$ref": "https://mef.rero.ch/api/places/gnd/1058616684" }, - "pid": "8415", + "pid": "10572", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1233310046" + "$ref": "https://mef.rero.ch/api/places/gnd/1058616579" }, - "pid": "8416", + "pid": "10573", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1235360709" + "$ref": "https://mef.rero.ch/api/places/gnd/1058583018" }, - "pid": "8417", + "pid": "10574", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/123657754X" + "$ref": "https://mef.rero.ch/api/places/gnd/1058579045" }, - "pid": "8418", + "pid": "10575", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1236792211" + "$ref": "https://mef.rero.ch/api/places/gnd/1058463993" }, - "pid": "8419", + "pid": "10576", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1237279453" + "$ref": "https://mef.rero.ch/api/places/gnd/1058463896" }, - "pid": "8420", + "pid": "10577", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1237774101" + "$ref": "https://mef.rero.ch/api/places/gnd/1058460862" }, - "pid": "8421", + "pid": "10578", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1237828171" + "$ref": "https://mef.rero.ch/api/places/gnd/1058460293" }, - "pid": "8422", + "pid": "10579", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1237860342" + "$ref": "https://mef.rero.ch/api/places/gnd/1058395726" }, - "pid": "8423", + "pid": "10580", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1239463502" + "$ref": "https://mef.rero.ch/api/places/gnd/1058041142" }, - "pid": "8424", + "pid": "10581", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1239866968" + "$ref": "https://mef.rero.ch/api/places/gnd/1057942928" }, - "pid": "8425", + "pid": "10582", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1240912943" + "$ref": "https://mef.rero.ch/api/places/gnd/1056973714" }, - "pid": "8426", + "pid": "10583", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1262419808" + "$ref": "https://mef.rero.ch/api/places/gnd/1055068716" }, - "pid": "8427", + "pid": "10584", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1267606541" + "$ref": "https://mef.rero.ch/api/places/gnd/1054961824" }, - "pid": "8428", + "pid": "10585", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1271173751" + "$ref": "https://mef.rero.ch/api/places/gnd/1054631026" }, - "pid": "8429", + "pid": "10586", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1275159915" + "$ref": "https://mef.rero.ch/api/places/gnd/1054611041" }, - "pid": "8430", + "pid": "10587", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1282328816" + "$ref": "https://mef.rero.ch/api/places/gnd/1054442959" }, - "pid": "8431", + "pid": "10588", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1284341119" + "$ref": "https://mef.rero.ch/api/places/gnd/1054382255" }, - "pid": "8432", + "pid": "10589", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1286132703" + "$ref": "https://mef.rero.ch/api/places/gnd/1054036489" }, - "pid": "8433", + "pid": "10590", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1287837611" + "$ref": "https://mef.rero.ch/api/places/gnd/1054036322" }, - "pid": "8434", + "pid": "10591", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1295131781" + "$ref": "https://mef.rero.ch/api/places/gnd/105382467X" }, - "pid": "8435", + "pid": "10592", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/129673143X" + "$ref": "https://mef.rero.ch/api/places/gnd/1053733119" }, - "pid": "8436", + "pid": "10593", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1299383890" + "$ref": "https://mef.rero.ch/api/places/gnd/1053694857" }, - "pid": "8437", + "pid": "10594", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1300397128" + "$ref": "https://mef.rero.ch/api/places/gnd/105366916X" }, - "pid": "8438", + "pid": "10595", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1302571524" + "$ref": "https://mef.rero.ch/api/places/gnd/1053585039" }, - "pid": "8439", + "pid": "10596", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1314596373" + "$ref": "https://mef.rero.ch/api/places/gnd/1053578571" }, - "pid": "8440", + "pid": "10597", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1316359042" + "$ref": "https://mef.rero.ch/api/places/gnd/1053495382" }, - "pid": "8441", + "pid": "10598", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1329430875" + "$ref": "https://mef.rero.ch/api/places/gnd/1053460856" }, - "pid": "8442", + "pid": "10599", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1329890205" + "$ref": "https://mef.rero.ch/api/places/gnd/1051746663" }, - "pid": "8443", + "pid": "10600", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1330177274" + "$ref": "https://mef.rero.ch/api/places/gnd/1044268069" }, - "pid": "8444", + "pid": "10601", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1330290887" + "$ref": "https://mef.rero.ch/api/places/gnd/1038831628" }, - "pid": "8445", + "pid": "10602", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1330302877" + "$ref": "https://mef.rero.ch/api/places/gnd/1036912949" }, - "pid": "8446", + "pid": "10603", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1330324463" + "$ref": "https://mef.rero.ch/api/places/gnd/1036573141" }, - "pid": "8447", + "pid": "10604", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1330428420" + "$ref": "https://mef.rero.ch/api/places/gnd/1035487640" }, - "pid": "8448", + "pid": "10605", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1330436237" + "$ref": "https://mef.rero.ch/api/places/gnd/1032436034" }, - "pid": "8449", + "pid": "10606", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1330847199" + "$ref": "https://mef.rero.ch/api/places/gnd/1031571922" }, - "pid": "8450", + "pid": "10607", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1330866738" + "$ref": "https://mef.rero.ch/api/places/gnd/1029389896" }, - "pid": "8451", + "pid": "10608", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1330982746" + "$ref": "https://mef.rero.ch/api/places/gnd/1029389233" }, - "pid": "8452", + "pid": "10609", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1331089271" + "$ref": "https://mef.rero.ch/api/places/gnd/1029388334" }, - "pid": "8453", + "pid": "10610", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1331109191" + "$ref": "https://mef.rero.ch/api/places/gnd/1028231660" }, - "pid": "8454", + "pid": "10611", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1331379539" + "$ref": "https://mef.rero.ch/api/places/gnd/1024812693" }, - "pid": "8455", + "pid": "10612", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1331513952" + "$ref": "https://mef.rero.ch/api/places/gnd/1021396656" }, - "pid": "8456", + "pid": "10613", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1331514282" + "$ref": "https://mef.rero.ch/api/places/gnd/1021113018" }, - "pid": "8457", + "pid": "10614", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1331601630" + "$ref": "https://mef.rero.ch/api/places/gnd/1021112577" }, - "pid": "8458", + "pid": "10615", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1331602718" + "$ref": "https://mef.rero.ch/api/places/gnd/1021112518" }, - "pid": "8459", + "pid": "10616", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1331604346" + "$ref": "https://mef.rero.ch/api/places/gnd/1021112216" }, - "pid": "8460", + "pid": "10617", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1331609186" + "$ref": "https://mef.rero.ch/api/places/gnd/1021056154" }, - "pid": "8461", + "pid": "10618", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1331729661" + "$ref": "https://mef.rero.ch/api/places/gnd/1020911387" }, - "pid": "8462", + "pid": "10619", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1332031374" + "$ref": "https://mef.rero.ch/api/places/gnd/1020911344" }, - "pid": "8463", + "pid": "10620", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1332055729" + "$ref": "https://mef.rero.ch/api/places/gnd/1020911026" }, - "pid": "8464", + "pid": "10621", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1332057209" + "$ref": "https://mef.rero.ch/api/places/gnd/1020897325" }, - "pid": "8465", + "pid": "10622", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1332353436" + "$ref": "https://mef.rero.ch/api/places/gnd/1020897236" }, - "pid": "8466", + "pid": "10623", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1332451578" + "$ref": "https://mef.rero.ch/api/places/gnd/1020865318" }, - "pid": "8467", + "pid": "10624", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1332669689" + "$ref": "https://mef.rero.ch/api/places/gnd/1020865237" }, - "pid": "8468", + "pid": "10625", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1332670482" + "$ref": "https://mef.rero.ch/api/places/gnd/1016112106" }, - "pid": "8469", + "pid": "10626", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1332731430" + "$ref": "https://mef.rero.ch/api/places/gnd/1011060752" }, - "pid": "8470", + "pid": "10627", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1332732577" + "$ref": "https://mef.rero.ch/api/places/gnd/1010438603" }, - "pid": "8471", + "pid": "10628", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1332733751" + "$ref": "https://mef.rero.ch/api/places/gnd/1010249460" }, - "pid": "8472", + "pid": "10629", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/133273457X" + "$ref": "https://mef.rero.ch/api/places/gnd/1009847430" }, - "pid": "8473", + "pid": "10630", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1332734863" + "$ref": "https://mef.rero.ch/api/places/gnd/1009707922" }, - "pid": "8474", + "pid": "10631", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1332735002" + "$ref": "https://mef.rero.ch/api/places/gnd/1008073997" }, - "pid": "8475", + "pid": "10632", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1332742351" + "$ref": "https://mef.rero.ch/api/places/gnd/1002427517" }, - "pid": "8476", + "pid": "10633", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1332747108" + "$ref": "https://mef.rero.ch/api/places/gnd/1001762630" }, - "pid": "8477", + "pid": "10634", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1332749054" + "$ref": "https://mef.rero.ch/api/places/gnd/996588051" }, - "pid": "8478", + "pid": "10635", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1332755666" + "$ref": "https://mef.rero.ch/api/places/gnd/996155910" }, - "pid": "8479", + "pid": "10636", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1332757375" + "$ref": "https://mef.rero.ch/api/places/gnd/995191506" }, - "pid": "8480", + "pid": "10637", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1332769349" + "$ref": "https://mef.rero.ch/api/places/gnd/994536666" }, - "pid": "8481", + "pid": "10638", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1332858198" + "$ref": "https://mef.rero.ch/api/places/gnd/992346371" }, - "pid": "8482", + "pid": "10639", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1332874568" + "$ref": "https://mef.rero.ch/api/places/gnd/989505952" }, - "pid": "8483", + "pid": "10640", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1333113943" + "$ref": "https://mef.rero.ch/api/places/gnd/98831326X" }, - "pid": "8484", + "pid": "10641", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1333228880" + "$ref": "https://mef.rero.ch/api/places/gnd/985253576" }, - "pid": "8485", + "pid": "10642", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1333255853" + "$ref": "https://mef.rero.ch/api/places/gnd/984645942" }, - "pid": "8486", + "pid": "10643", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1333263465" + "$ref": "https://mef.rero.ch/api/places/gnd/980891248" }, - "pid": "8487", + "pid": "10644", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1333315902" + "$ref": "https://mef.rero.ch/api/places/gnd/979131529" }, - "pid": "8488", + "pid": "10645", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1333321090" + "$ref": "https://mef.rero.ch/api/places/gnd/978966228" }, - "pid": "8489", + "pid": "10646", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1333333668" + "$ref": "https://mef.rero.ch/api/places/gnd/978923855" }, - "pid": "8490", + "pid": "10647", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/133355513X" + "$ref": "https://mef.rero.ch/api/places/gnd/975958925" }, - "pid": "8491", + "pid": "10648", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1333570511" + "$ref": "https://mef.rero.ch/api/places/gnd/975328573" }, - "pid": "8492", + "pid": "10649", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1333582501" + "$ref": "https://mef.rero.ch/api/places/gnd/974245747" }, - "pid": "8493", + "pid": "10650", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1333660758" + "$ref": "https://mef.rero.ch/api/places/gnd/97424225X" }, - "pid": "8494", + "pid": "10651", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1333989954" + "$ref": "https://mef.rero.ch/api/places/gnd/973071648" }, - "pid": "8495", + "pid": "10652", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334001529" + "$ref": "https://mef.rero.ch/api/places/gnd/973066261" }, - "pid": "8496", + "pid": "10653", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334011079" + "$ref": "https://mef.rero.ch/api/places/gnd/973066245" }, - "pid": "8497", + "pid": "10654", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334011753" + "$ref": "https://mef.rero.ch/api/places/gnd/973040149" }, - "pid": "8498", + "pid": "10655", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334024804" + "$ref": "https://mef.rero.ch/api/places/gnd/972651438" }, - "pid": "8499", + "pid": "10656", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334027250" + "$ref": "https://mef.rero.ch/api/places/gnd/972586601" }, - "pid": "8500", + "pid": "10657", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334086826" + "$ref": "https://mef.rero.ch/api/places/gnd/972515704" }, - "pid": "8501", + "pid": "10658", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334101221" + "$ref": "https://mef.rero.ch/api/places/gnd/971359709" }, - "pid": "8502", + "pid": "10659", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334117918" + "$ref": "https://mef.rero.ch/api/places/gnd/970139470" }, - "pid": "8503", + "pid": "10660", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334198845" + "$ref": "https://mef.rero.ch/api/places/gnd/969971028" }, - "pid": "8504", + "pid": "10661", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334221979" + "$ref": "https://mef.rero.ch/api/places/gnd/969491131" }, - "pid": "8505", + "pid": "10662", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/133422725X" + "$ref": "https://mef.rero.ch/api/places/gnd/967753546" }, - "pid": "8506", + "pid": "10663", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334300054" + "$ref": "https://mef.rero.ch/api/places/gnd/967681952" }, - "pid": "8507", + "pid": "10664", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334302111" + "$ref": "https://mef.rero.ch/api/places/gnd/967581176" }, - "pid": "8508", + "pid": "10665", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334310661" + "$ref": "https://mef.rero.ch/api/places/gnd/967180953" }, - "pid": "8509", + "pid": "10666", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334312974" + "$ref": "https://mef.rero.ch/api/places/gnd/967160480" }, - "pid": "8510", + "pid": "10667", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334313776" + "$ref": "https://mef.rero.ch/api/places/gnd/96577578X" }, - "pid": "8511", + "pid": "10668", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334318069" + "$ref": "https://mef.rero.ch/api/places/gnd/965775429" }, - "pid": "8512", + "pid": "10669", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334318492" + "$ref": "https://mef.rero.ch/api/places/gnd/965774910" }, - "pid": "8513", + "pid": "10670", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334319561" + "$ref": "https://mef.rero.ch/api/places/gnd/965759059" }, - "pid": "8514", + "pid": "10671", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334485763" + "$ref": "https://mef.rero.ch/api/places/gnd/96575877X" }, - "pid": "8515", + "pid": "10672", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334486573" + "$ref": "https://mef.rero.ch/api/places/gnd/96563860X" }, - "pid": "8516", + "pid": "10673", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334502854" + "$ref": "https://mef.rero.ch/api/places/gnd/964991608" }, - "pid": "8517", + "pid": "10674", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334516766" + "$ref": "https://mef.rero.ch/api/places/gnd/964462427" }, - "pid": "8518", + "pid": "10675", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334531153" + "$ref": "https://mef.rero.ch/api/places/gnd/96411822X" }, - "pid": "8519", + "pid": "10676", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/133453666X" + "$ref": "https://mef.rero.ch/api/places/gnd/963982559" }, - "pid": "8520", + "pid": "10677", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334538085" + "$ref": "https://mef.rero.ch/api/places/gnd/963957635" }, - "pid": "8521", + "pid": "10678", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334552606" + "$ref": "https://mef.rero.ch/api/places/gnd/963614673" }, - "pid": "8522", + "pid": "10679", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334552908" + "$ref": "https://mef.rero.ch/api/places/gnd/963462539" }, - "pid": "8523", + "pid": "10680", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334552940" + "$ref": "https://mef.rero.ch/api/places/gnd/963082132" }, - "pid": "8524", + "pid": "10681", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334554218" + "$ref": "https://mef.rero.ch/api/places/gnd/962048879" }, - "pid": "8525", + "pid": "10682", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334554471" + "$ref": "https://mef.rero.ch/api/places/gnd/961594519" }, - "pid": "8526", + "pid": "10683", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334556687" + "$ref": "https://mef.rero.ch/api/places/gnd/961594497" }, - "pid": "8527", + "pid": "10684", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334558590" + "$ref": "https://mef.rero.ch/api/places/gnd/961594454" }, - "pid": "8528", + "pid": "10685", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334559805" + "$ref": "https://mef.rero.ch/api/places/gnd/961395923" }, - "pid": "8529", + "pid": "10686", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334560994" + "$ref": "https://mef.rero.ch/api/places/gnd/960863664" }, - "pid": "8530", + "pid": "10687", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/133456325X" + "$ref": "https://mef.rero.ch/api/places/gnd/960833919" }, - "pid": "8531", + "pid": "10688", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/133463209X" + "$ref": "https://mef.rero.ch/api/places/gnd/960396268" }, - "pid": "8532", + "pid": "10689", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334632707" + "$ref": "https://mef.rero.ch/api/places/gnd/960085726" }, - "pid": "8533", + "pid": "10690", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/133465641X" + "$ref": "https://mef.rero.ch/api/places/gnd/959934464" }, - "pid": "8534", + "pid": "10691", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334657726" + "$ref": "https://mef.rero.ch/api/places/gnd/959918612" }, - "pid": "8535", + "pid": "10692", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334658196" + "$ref": "https://mef.rero.ch/api/places/gnd/959788719" }, - "pid": "8536", + "pid": "10693", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334661073" + "$ref": "https://mef.rero.ch/api/places/gnd/959747575" }, - "pid": "8537", + "pid": "10694", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334664242" + "$ref": "https://mef.rero.ch/api/places/gnd/959369872" }, - "pid": "8538", + "pid": "10695", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334665028" + "$ref": "https://mef.rero.ch/api/places/gnd/958777055" }, - "pid": "8539", + "pid": "10696", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334665036" + "$ref": "https://mef.rero.ch/api/places/gnd/958014639" }, - "pid": "8540", + "pid": "10697", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334666474" + "$ref": "https://mef.rero.ch/api/places/gnd/957753551" }, - "pid": "8541", + "pid": "10698", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334670048" + "$ref": "https://mef.rero.ch/api/places/gnd/957586973" }, - "pid": "8542", + "pid": "10699", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334670323" + "$ref": "https://mef.rero.ch/api/places/gnd/957565445" }, - "pid": "8543", + "pid": "10700", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334670390" + "$ref": "https://mef.rero.ch/api/places/gnd/957211430" }, - "pid": "8544", + "pid": "10701", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334670560" + "$ref": "https://mef.rero.ch/api/places/gnd/956443877" }, - "pid": "8545", + "pid": "10702", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334671486" + "$ref": "https://mef.rero.ch/api/places/gnd/956443842" }, - "pid": "8546", + "pid": "10703", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334725691" + "$ref": "https://mef.rero.ch/api/places/gnd/956443613" }, - "pid": "8547", + "pid": "10704", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334725756" + "$ref": "https://mef.rero.ch/api/places/gnd/955960134" }, - "pid": "8548", + "pid": "10705", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334729824" + "$ref": "https://mef.rero.ch/api/places/gnd/955820049" }, - "pid": "8549", + "pid": "10706", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334736340" + "$ref": "https://mef.rero.ch/api/places/gnd/955573246" }, - "pid": "8550", + "pid": "10707", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334756465" + "$ref": "https://mef.rero.ch/api/places/gnd/955498058" }, - "pid": "8551", + "pid": "10708", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334766363" + "$ref": "https://mef.rero.ch/api/places/gnd/955495768" }, - "pid": "8552", + "pid": "10709", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334779015" + "$ref": "https://mef.rero.ch/api/places/gnd/955090547" }, - "pid": "8553", + "pid": "10710", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334784493" + "$ref": "https://mef.rero.ch/api/places/gnd/954472683" }, - "pid": "8554", + "pid": "10711", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334785422" + "$ref": "https://mef.rero.ch/api/places/gnd/954071832" }, - "pid": "8555", + "pid": "10712", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334789134" + "$ref": "https://mef.rero.ch/api/places/gnd/954064593" }, - "pid": "8556", + "pid": "10713", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334801304" + "$ref": "https://mef.rero.ch/api/places/gnd/953168697" }, - "pid": "8557", + "pid": "10714", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334804141" + "$ref": "https://mef.rero.ch/api/places/gnd/953105024" }, - "pid": "8558", + "pid": "10715", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334804621" + "$ref": "https://mef.rero.ch/api/places/gnd/952110512" }, - "pid": "8559", + "pid": "10716", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334865981" + "$ref": "https://mef.rero.ch/api/places/gnd/951677268" }, - "pid": "8560", + "pid": "10717", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334866082" + "$ref": "https://mef.rero.ch/api/places/gnd/951510282" }, - "pid": "8561", + "pid": "10718", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334866473" + "$ref": "https://mef.rero.ch/api/places/gnd/951510274" }, - "pid": "8562", + "pid": "10719", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334867097" + "$ref": "https://mef.rero.ch/api/places/gnd/951510258" }, - "pid": "8563", + "pid": "10720", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334874387" + "$ref": "https://mef.rero.ch/api/places/gnd/95135793X" }, - "pid": "8564", + "pid": "10721", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334875707" + "$ref": "https://mef.rero.ch/api/places/gnd/950649155" }, - "pid": "8565", + "pid": "10722", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334878234" + "$ref": "https://mef.rero.ch/api/places/gnd/950556149" }, - "pid": "8566", + "pid": "10723", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/133489129X" + "$ref": "https://mef.rero.ch/api/places/gnd/950356190" }, - "pid": "8567", + "pid": "10724", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334893594" + "$ref": "https://mef.rero.ch/api/places/gnd/950339490" }, - "pid": "8568", + "pid": "10725", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334896755" + "$ref": "https://mef.rero.ch/api/places/gnd/950339407" }, - "pid": "8569", + "pid": "10726", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/133489874X" + "$ref": "https://mef.rero.ch/api/places/gnd/950338338" }, - "pid": "8570", + "pid": "10727", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334900256" + "$ref": "https://mef.rero.ch/api/places/gnd/95033829X" }, - "pid": "8571", + "pid": "10728", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/133490281X" + "$ref": "https://mef.rero.ch/api/places/gnd/950338230" }, - "pid": "8572", + "pid": "10729", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334904251" + "$ref": "https://mef.rero.ch/api/places/gnd/950338184" }, - "pid": "8573", + "pid": "10730", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334907048" + "$ref": "https://mef.rero.ch/api/places/gnd/950332429" }, - "pid": "8574", + "pid": "10731", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334907684" + "$ref": "https://mef.rero.ch/api/places/gnd/950332011" }, - "pid": "8575", + "pid": "10732", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334913498" + "$ref": "https://mef.rero.ch/api/places/gnd/950331821" }, - "pid": "8576", + "pid": "10733", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334916292" + "$ref": "https://mef.rero.ch/api/places/gnd/950315354" }, - "pid": "8577", + "pid": "10734", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334917981" + "$ref": "https://mef.rero.ch/api/places/gnd/95020109X" }, - "pid": "8578", + "pid": "10735", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1334938016" + "$ref": "https://mef.rero.ch/api/places/gnd/950199850" }, - "pid": "8579", + "pid": "10736", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1335058036" + "$ref": "https://mef.rero.ch/api/places/gnd/950199214" }, - "pid": "8580", + "pid": "10737", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1335086005" + "$ref": "https://mef.rero.ch/api/places/gnd/950168637" }, - "pid": "8581", + "pid": "10738", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1335092196" + "$ref": "https://mef.rero.ch/api/places/gnd/949740861" }, - "pid": "8582", + "pid": "10739", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1335092390" + "$ref": "https://mef.rero.ch/api/places/gnd/949647314" }, - "pid": "8583", + "pid": "10740", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1335098399" + "$ref": "https://mef.rero.ch/api/places/gnd/949641804" }, - "pid": "8584", + "pid": "10741", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1335104917" + "$ref": "https://mef.rero.ch/api/places/gnd/94963218X" }, - "pid": "8585", + "pid": "10742", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1335107711" + "$ref": "https://mef.rero.ch/api/places/gnd/949632163" }, - "pid": "8586", + "pid": "10743", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1335141790" + "$ref": "https://mef.rero.ch/api/places/gnd/949632147" }, - "pid": "8587", + "pid": "10744", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1335201653" + "$ref": "https://mef.rero.ch/api/places/gnd/949632120" }, - "pid": "8588", + "pid": "10745", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1335217711" + "$ref": "https://mef.rero.ch/api/places/gnd/949632104" }, - "pid": "8589", + "pid": "10746", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/133523909X" + "$ref": "https://mef.rero.ch/api/places/gnd/949607266" }, - "pid": "8590", + "pid": "10747", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1335243240" + "$ref": "https://mef.rero.ch/api/places/gnd/949602310" }, - "pid": "8591", + "pid": "10748", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1335249966" + "$ref": "https://mef.rero.ch/api/places/gnd/948791659" }, - "pid": "8592", + "pid": "10749", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/133525207X" + "$ref": "https://mef.rero.ch/api/places/gnd/948417226" }, - "pid": "8593", + "pid": "10750", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/133525675X" + "$ref": "https://mef.rero.ch/api/places/gnd/948322292" }, - "pid": "8594", + "pid": "10751", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1335257101" + "$ref": "https://mef.rero.ch/api/places/gnd/948321156" }, - "pid": "8595", + "pid": "10752", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/1335257845" + "$ref": "https://mef.rero.ch/api/places/gnd/947976248" }, - "pid": "8596", + "pid": "10753", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199000239" + "$ref": "https://mef.rero.ch/api/places/gnd/947862730" }, - "pid": "8597", + "pid": "10754", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199000328" + "$ref": "https://mef.rero.ch/api/places/gnd/947589341" }, - "pid": "8598", + "pid": "10755", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199001111" + "$ref": "https://mef.rero.ch/api/places/gnd/947454802" }, - "pid": "8599", + "pid": "10756", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199002894" + "$ref": "https://mef.rero.ch/api/places/gnd/947454659" }, - "pid": "8600", + "pid": "10757", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199003645" + "$ref": "https://mef.rero.ch/api/places/gnd/947421238" }, - "pid": "8601", + "pid": "10758", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199011249" + "$ref": "https://mef.rero.ch/api/places/gnd/947026088" }, - "pid": "8602", + "pid": "10759", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199013276" + "$ref": "https://mef.rero.ch/api/places/gnd/946723729" }, - "pid": "8603", + "pid": "10760", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199013594" + "$ref": "https://mef.rero.ch/api/places/gnd/946606161" }, - "pid": "8604", + "pid": "10761", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199022534" + "$ref": "https://mef.rero.ch/api/places/gnd/945980132" }, - "pid": "8605", + "pid": "10762", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199023360" + "$ref": "https://mef.rero.ch/api/places/gnd/945917201" }, - "pid": "8606", + "pid": "10763", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199023786" + "$ref": "https://mef.rero.ch/api/places/gnd/945871678" }, - "pid": "8607", + "pid": "10764", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199077177" + "$ref": "https://mef.rero.ch/api/places/gnd/945385382" }, - "pid": "8608", + "pid": "10765", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199089973" + "$ref": "https://mef.rero.ch/api/places/gnd/944766021" }, - "pid": "8609", + "pid": "10766", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199118167" + "$ref": "https://mef.rero.ch/api/places/gnd/944289290" }, - "pid": "8610", + "pid": "10767", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199136637" + "$ref": "https://mef.rero.ch/api/places/gnd/94400718X" }, - "pid": "8611", + "pid": "10768", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199138834" + "$ref": "https://mef.rero.ch/api/places/gnd/943882346" }, - "pid": "8612", + "pid": "10769", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199147760" + "$ref": "https://mef.rero.ch/api/places/gnd/941847934" }, - "pid": "8613", + "pid": "10770", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199157642" + "$ref": "https://mef.rero.ch/api/places/gnd/941808769" }, - "pid": "8614", + "pid": "10771", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199159777" + "$ref": "https://mef.rero.ch/api/places/gnd/941757471" }, - "pid": "8615", + "pid": "10772", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199159882" + "$ref": "https://mef.rero.ch/api/places/gnd/941385175" }, - "pid": "8616", + "pid": "10773", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199159998" + "$ref": "https://mef.rero.ch/api/places/gnd/940396068" }, - "pid": "8617", + "pid": "10774", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/19916035X" + "$ref": "https://mef.rero.ch/api/places/gnd/940396009" }, - "pid": "8618", + "pid": "10775", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199164347" + "$ref": "https://mef.rero.ch/api/places/gnd/199305404" }, - "pid": "8619", + "pid": "10776", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199168512" + "$ref": "https://mef.rero.ch/api/places/gnd/199252149" }, - "pid": "8620", + "pid": "10777", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/19917332X" + "$ref": "https://mef.rero.ch/api/places/gnd/199248974" }, - "pid": "8621", + "pid": "10778", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199173672" + "$ref": "https://mef.rero.ch/api/places/gnd/199246815" }, - "pid": "8622", + "pid": "10779", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199181993" + "$ref": "https://mef.rero.ch/api/places/gnd/199246793" }, - "pid": "8623", + "pid": "10780", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199187282" + "$ref": "https://mef.rero.ch/api/places/gnd/199246211" }, - "pid": "8624", + "pid": "10781", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199189846" + "$ref": "https://mef.rero.ch/api/places/gnd/199244766" }, - "pid": "8625", + "pid": "10782", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199189854" + "$ref": "https://mef.rero.ch/api/places/gnd/19924474X" }, - "pid": "8626", + "pid": "10783", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199189862" + "$ref": "https://mef.rero.ch/api/places/gnd/199244731" }, - "pid": "8627", + "pid": "10784", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199189870" + "$ref": "https://mef.rero.ch/api/places/gnd/199244375" }, - "pid": "8628", + "pid": "10785", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/19919596X" + "$ref": "https://mef.rero.ch/api/places/gnd/199241562" }, - "pid": "8629", + "pid": "10786", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199195978" + "$ref": "https://mef.rero.ch/api/places/gnd/199240590" }, - "pid": "8630", + "pid": "10787", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199198578" + "$ref": "https://mef.rero.ch/api/places/gnd/199240515" }, - "pid": "8631", + "pid": "10788", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199200955" + "$ref": "https://mef.rero.ch/api/places/gnd/199239436" }, - "pid": "8632", + "pid": "10789", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199209464" + "$ref": "https://mef.rero.ch/api/places/gnd/19923860X" }, - "pid": "8633", + "pid": "10790", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199210713" + "$ref": "https://mef.rero.ch/api/places/gnd/199231516" }, - "pid": "8634", + "pid": "10791", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199211817" + "$ref": "https://mef.rero.ch/api/places/gnd/199230811" }, - "pid": "8635", + "pid": "10792", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199212007" + "$ref": "https://mef.rero.ch/api/places/gnd/199230285" }, - "pid": "8636", + "pid": "10793", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/19921462X" + "$ref": "https://mef.rero.ch/api/places/gnd/199224196" }, - "pid": "8637", + "pid": "10794", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199214700" + "$ref": "https://mef.rero.ch/api/places/gnd/199218315" }, - "pid": "8638", + "pid": "10795", "type": "bf:Place" }, { "gnd": { "$ref": "https://mef.rero.ch/api/places/gnd/199215901" }, - "pid": "8639", + "pid": "10796", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199218315" + "$ref": "https://mef.rero.ch/api/places/gnd/199214700" }, - "pid": "8640", + "pid": "10797", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199224196" + "$ref": "https://mef.rero.ch/api/places/gnd/19921462X" }, - "pid": "8641", + "pid": "10798", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199230285" + "$ref": "https://mef.rero.ch/api/places/gnd/199212007" }, - "pid": "8642", + "pid": "10799", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199230811" + "$ref": "https://mef.rero.ch/api/places/gnd/199211817" }, - "pid": "8643", + "pid": "10800", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199231516" + "$ref": "https://mef.rero.ch/api/places/gnd/199210713" }, - "pid": "8644", + "pid": "10801", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/19923860X" + "$ref": "https://mef.rero.ch/api/places/gnd/199209464" }, - "pid": "8645", + "pid": "10802", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199239436" + "$ref": "https://mef.rero.ch/api/places/gnd/199200955" }, - "pid": "8646", + "pid": "10803", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199240515" + "$ref": "https://mef.rero.ch/api/places/gnd/199198578" }, - "pid": "8647", + "pid": "10804", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199240590" + "$ref": "https://mef.rero.ch/api/places/gnd/199195978" }, - "pid": "8648", + "pid": "10805", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199241562" + "$ref": "https://mef.rero.ch/api/places/gnd/19919596X" }, - "pid": "8649", + "pid": "10806", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199244375" + "$ref": "https://mef.rero.ch/api/places/gnd/199189870" }, - "pid": "8650", + "pid": "10807", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199244731" + "$ref": "https://mef.rero.ch/api/places/gnd/199189862" }, - "pid": "8651", + "pid": "10808", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/19924474X" + "$ref": "https://mef.rero.ch/api/places/gnd/199189854" }, - "pid": "8652", + "pid": "10809", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199244766" + "$ref": "https://mef.rero.ch/api/places/gnd/199189846" }, - "pid": "8653", + "pid": "10810", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199246211" + "$ref": "https://mef.rero.ch/api/places/gnd/199187282" }, - "pid": "8654", + "pid": "10811", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199246793" + "$ref": "https://mef.rero.ch/api/places/gnd/199181993" }, - "pid": "8655", + "pid": "10812", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199246815" + "$ref": "https://mef.rero.ch/api/places/gnd/199173672" }, - "pid": "8656", + "pid": "10813", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199248974" + "$ref": "https://mef.rero.ch/api/places/gnd/19917332X" }, - "pid": "8657", + "pid": "10814", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199252149" + "$ref": "https://mef.rero.ch/api/places/gnd/199168512" }, - "pid": "8658", + "pid": "10815", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/199305404" + "$ref": "https://mef.rero.ch/api/places/gnd/199164347" }, - "pid": "8659", + "pid": "10816", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/940396009" + "$ref": "https://mef.rero.ch/api/places/gnd/19916035X" }, - "pid": "8660", + "pid": "10817", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/940396068" + "$ref": "https://mef.rero.ch/api/places/gnd/199159998" }, - "pid": "8661", + "pid": "10818", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/941385175" + "$ref": "https://mef.rero.ch/api/places/gnd/199159882" }, - "pid": "8662", + "pid": "10819", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/941757471" + "$ref": "https://mef.rero.ch/api/places/gnd/199159777" }, - "pid": "8663", + "pid": "10820", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/941808769" + "$ref": "https://mef.rero.ch/api/places/gnd/199157642" }, - "pid": "8664", + "pid": "10821", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/941847934" + "$ref": "https://mef.rero.ch/api/places/gnd/199147760" }, - "pid": "8665", + "pid": "10822", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/943882346" + "$ref": "https://mef.rero.ch/api/places/gnd/199138834" }, - "pid": "8666", + "pid": "10823", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/94400718X" + "$ref": "https://mef.rero.ch/api/places/gnd/199136637" }, - "pid": "8667", + "pid": "10824", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/944289290" + "$ref": "https://mef.rero.ch/api/places/gnd/199118167" }, - "pid": "8668", + "pid": "10825", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/944766021" + "$ref": "https://mef.rero.ch/api/places/gnd/199089973" }, - "pid": "8669", + "pid": "10826", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/945385382" + "$ref": "https://mef.rero.ch/api/places/gnd/199077177" }, - "pid": "8670", + "pid": "10827", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/945871678" + "$ref": "https://mef.rero.ch/api/places/gnd/199023786" }, - "pid": "8671", + "pid": "10828", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/945917201" + "$ref": "https://mef.rero.ch/api/places/gnd/199023360" }, - "pid": "8672", + "pid": "10829", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/945980132" + "$ref": "https://mef.rero.ch/api/places/gnd/199022534" }, - "pid": "8673", + "pid": "10830", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/946606161" + "$ref": "https://mef.rero.ch/api/places/gnd/199013594" }, - "pid": "8674", + "pid": "10831", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/946723729" + "$ref": "https://mef.rero.ch/api/places/gnd/199013276" }, - "pid": "8675", + "pid": "10832", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/947026088" + "$ref": "https://mef.rero.ch/api/places/gnd/199011249" }, - "pid": "8676", + "pid": "10833", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/947421238" + "$ref": "https://mef.rero.ch/api/places/gnd/199003645" }, - "pid": "8677", + "pid": "10834", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/947454659" + "$ref": "https://mef.rero.ch/api/places/gnd/199002894" }, - "pid": "8678", + "pid": "10835", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/947454802" + "$ref": "https://mef.rero.ch/api/places/gnd/199001111" }, - "pid": "8679", + "pid": "10836", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/947589341" + "$ref": "https://mef.rero.ch/api/places/gnd/199000328" }, - "pid": "8680", + "pid": "10837", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/947862730" + "$ref": "https://mef.rero.ch/api/places/gnd/199000239" }, - "pid": "8681", + "pid": "10838", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/947976248" + "$ref": "https://mef.rero.ch/api/places/gnd/050551604" }, - "pid": "8682", + "pid": "10839", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/948321156" + "$ref": "https://mef.rero.ch/api/places/gnd/050133039" }, - "pid": "8683", + "pid": "10840", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/948322292" + "$ref": "https://mef.rero.ch/api/places/gnd/050039350" }, - "pid": "8684", + "pid": "10841", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/948417226" + "$ref": "https://mef.rero.ch/api/places/gnd/043244793" }, - "pid": "8685", + "pid": "10842", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/948791659" + "$ref": "https://mef.rero.ch/api/places/gnd/043225608" }, - "pid": "8686", + "pid": "10843", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/949602310" + "$ref": "https://mef.rero.ch/api/places/gnd/043151019" }, - "pid": "8687", + "pid": "10844", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/949607266" + "$ref": "https://mef.rero.ch/api/places/gnd/043138764" }, - "pid": "8688", + "pid": "10845", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/949632104" + "$ref": "https://mef.rero.ch/api/places/gnd/042976200" }, - "pid": "8689", + "pid": "10846", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/949632120" + "$ref": "https://mef.rero.ch/api/places/gnd/042939550" }, - "pid": "8690", + "pid": "10847", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/949632147" + "$ref": "https://mef.rero.ch/api/places/gnd/042939526" }, - "pid": "8691", + "pid": "10848", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/949632163" + "$ref": "https://mef.rero.ch/api/places/gnd/042788714" }, - "pid": "8692", + "pid": "10849", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/94963218X" + "$ref": "https://mef.rero.ch/api/places/gnd/042778352" }, - "pid": "8693", + "pid": "10850", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/949641804" + "$ref": "https://mef.rero.ch/api/places/gnd/042627494" }, - "pid": "8694", + "pid": "10851", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/949647314" + "$ref": "https://mef.rero.ch/api/places/gnd/042602564" }, - "pid": "8695", + "pid": "10852", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/949740861" + "$ref": "https://mef.rero.ch/api/places/gnd/042567874" }, - "pid": "8696", + "pid": "10853", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/950168637" + "$ref": "https://mef.rero.ch/api/places/gnd/042553628" }, - "pid": "8697", + "pid": "10854", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/950199214" + "$ref": "https://mef.rero.ch/api/places/gnd/042492777" }, - "pid": "8698", + "pid": "10855", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/950199850" + "$ref": "https://mef.rero.ch/api/places/gnd/042490448" }, - "pid": "8699", + "pid": "10856", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/95020109X" + "$ref": "https://mef.rero.ch/api/places/gnd/042477247" }, - "pid": "8700", + "pid": "10857", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/950315354" + "$ref": "https://mef.rero.ch/api/places/gnd/042400228" }, - "pid": "8701", + "pid": "10858", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/950331821" + "$ref": "https://mef.rero.ch/api/places/gnd/042387175" }, - "pid": "8702", + "pid": "10859", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/950332011" + "$ref": "https://mef.rero.ch/api/places/gnd/042299004" }, - "pid": "8703", + "pid": "10860", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/950332429" + "$ref": "https://mef.rero.ch/api/places/gnd/042260213" }, - "pid": "8704", + "pid": "10861", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/950338184" + "$ref": "https://mef.rero.ch/api/places/gnd/042244943" }, - "pid": "8705", + "pid": "10862", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/950338230" + "$ref": "https://mef.rero.ch/api/places/gnd/042236037" }, - "pid": "8706", + "pid": "10863", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/95033829X" + "$ref": "https://mef.rero.ch/api/places/gnd/042209927" }, - "pid": "8707", + "pid": "10864", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/950338338" + "$ref": "https://mef.rero.ch/api/places/gnd/042005450" }, - "pid": "8708", + "pid": "10865", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/950339407" + "$ref": "https://mef.rero.ch/api/places/gnd/041401174" }, - "pid": "8709", + "pid": "10866", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/950339490" + "$ref": "https://mef.rero.ch/api/places/gnd/041370538" }, - "pid": "8710", + "pid": "10867", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/950356190" + "$ref": "https://mef.rero.ch/api/places/gnd/041194152" }, - "pid": "8711", + "pid": "10868", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/950556149" + "$ref": "https://mef.rero.ch/api/places/gnd/041192443" }, - "pid": "8712", + "pid": "10869", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/950649155" + "$ref": "https://mef.rero.ch/api/places/gnd/041167163" }, - "pid": "8713", + "pid": "10870", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/95135793X" + "$ref": "https://mef.rero.ch/api/places/gnd/041154282" }, - "pid": "8714", + "pid": "10871", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/951510258" + "$ref": "https://mef.rero.ch/api/places/gnd/041112504" }, - "pid": "8715", + "pid": "10872", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/951510274" + "$ref": "https://mef.rero.ch/api/places/gnd/041087828" }, - "pid": "8716", + "pid": "10873", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/951510282" + "$ref": "https://mef.rero.ch/api/places/gnd/041084675" }, - "pid": "8717", + "pid": "10874", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/951677268" + "$ref": "https://mef.rero.ch/api/places/gnd/041063368" }, - "pid": "8718", + "pid": "10875", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/952110512" + "$ref": "https://mef.rero.ch/api/places/gnd/04106125X" }, - "pid": "8719", + "pid": "10876", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/953105024" + "$ref": "https://mef.rero.ch/api/places/gnd/041058445" }, - "pid": "8720", + "pid": "10877", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/953168697" + "$ref": "https://mef.rero.ch/api/places/gnd/041011848" }, - "pid": "8721", + "pid": "10878", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/954064593" + "$ref": "https://mef.rero.ch/api/places/gnd/040994716" }, - "pid": "8722", + "pid": "10879", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/954071832" + "$ref": "https://mef.rero.ch/api/places/gnd/040967689" }, - "pid": "8723", + "pid": "10880", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/954472683" + "$ref": "https://mef.rero.ch/api/places/gnd/040957977" }, - "pid": "8724", + "pid": "10881", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/955090547" + "$ref": "https://mef.rero.ch/api/places/gnd/040956075" }, - "pid": "8725", + "pid": "10882", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/955495768" + "$ref": "https://mef.rero.ch/api/places/gnd/040952789" }, - "pid": "8726", + "pid": "10883", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/955498058" + "$ref": "https://mef.rero.ch/api/places/gnd/040912833" }, - "pid": "8727", + "pid": "10884", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/955573246" + "$ref": "https://mef.rero.ch/api/places/gnd/040873862" }, - "pid": "8728", + "pid": "10885", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/955820049" + "$ref": "https://mef.rero.ch/api/places/gnd/040865622" }, - "pid": "8729", + "pid": "10886", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/955960134" + "$ref": "https://mef.rero.ch/api/places/gnd/040805905" }, - "pid": "8730", + "pid": "10887", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/956443613" + "$ref": "https://mef.rero.ch/api/places/gnd/040802558" }, - "pid": "8731", + "pid": "10888", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/956443842" + "$ref": "https://mef.rero.ch/api/places/gnd/040794903" }, - "pid": "8732", + "pid": "10889", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/956443877" + "$ref": "https://mef.rero.ch/api/places/gnd/040754766" }, - "pid": "8733", + "pid": "10890", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/957211430" + "$ref": "https://mef.rero.ch/api/places/gnd/040738582" }, - "pid": "8734", + "pid": "10891", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/957565445" + "$ref": "https://mef.rero.ch/api/places/gnd/040693309" }, - "pid": "8735", + "pid": "10892", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/957586973" + "$ref": "https://mef.rero.ch/api/places/gnd/040680223" }, - "pid": "8736", + "pid": "10893", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/957753551" + "$ref": "https://mef.rero.ch/api/places/gnd/040657752" }, - "pid": "8737", + "pid": "10894", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/958014639" + "$ref": "https://mef.rero.ch/api/places/gnd/040604853" }, - "pid": "8738", + "pid": "10895", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/958777055" + "$ref": "https://mef.rero.ch/api/places/gnd/04060151X" }, - "pid": "8739", + "pid": "10896", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/959369872" + "$ref": "https://mef.rero.ch/api/places/gnd/040594084" }, - "pid": "8740", + "pid": "10897", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/959747575" + "$ref": "https://mef.rero.ch/api/places/gnd/04057749X" }, - "pid": "8741", + "pid": "10898", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/959788719" + "$ref": "https://mef.rero.ch/api/places/gnd/040516687" }, - "pid": "8742", + "pid": "10899", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/959918612" + "$ref": "https://mef.rero.ch/api/places/gnd/040425134" }, - "pid": "8743", + "pid": "10900", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/959934464" + "$ref": "https://mef.rero.ch/api/places/gnd/04041146X" }, - "pid": "8744", + "pid": "10901", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/960085726" + "$ref": "https://mef.rero.ch/api/places/gnd/040376044" }, - "pid": "8745", + "pid": "10902", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/960396268" + "$ref": "https://mef.rero.ch/api/places/gnd/04037372X" }, - "pid": "8746", + "pid": "10903", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/960833919" + "$ref": "https://mef.rero.ch/api/places/gnd/040368114" }, - "pid": "8747", + "pid": "10904", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/960863664" + "$ref": "https://mef.rero.ch/api/places/gnd/040357422" }, - "pid": "8748", + "pid": "10905", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/961395923" + "$ref": "https://mef.rero.ch/api/places/gnd/040346919" }, - "pid": "8749", + "pid": "10906", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/961594454" + "$ref": "https://mef.rero.ch/api/places/gnd/040304817" }, - "pid": "8750", + "pid": "10907", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/961594497" + "$ref": "https://mef.rero.ch/api/places/gnd/040296377" }, - "pid": "8751", + "pid": "10908", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/961594519" + "$ref": "https://mef.rero.ch/api/places/gnd/040288099" }, - "pid": "8752", + "pid": "10909", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/962048879" + "$ref": "https://mef.rero.ch/api/places/gnd/04024010X" }, - "pid": "8753", + "pid": "10910", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/963082132" + "$ref": "https://mef.rero.ch/api/places/gnd/040183408" }, - "pid": "8754", + "pid": "10911", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/963462539" + "$ref": "https://mef.rero.ch/api/places/gnd/040093417" }, - "pid": "8755", + "pid": "10912", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/963614673" + "$ref": "https://mef.rero.ch/api/places/gnd/04009300X" }, - "pid": "8756", + "pid": "10913", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/963957635" + "$ref": "https://mef.rero.ch/api/places/gnd/040055744" }, - "pid": "8757", + "pid": "10914", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/963982559" + "$ref": "https://mef.rero.ch/api/places/gnd/040024024" }, - "pid": "8758", + "pid": "10915", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/96411822X" + "$ref": "https://mef.rero.ch/api/places/gnd/030141605" }, - "pid": "8759", + "pid": "10916", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/964462427" + "$ref": "https://mef.rero.ch/api/places/gnd/030125898" }, - "pid": "8760", + "pid": "10917", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/964991608" + "$ref": "https://mef.rero.ch/api/places/gnd/030089050" }, - "pid": "8761", + "pid": "10918", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/96563860X" + "$ref": "https://mef.rero.ch/api/places/gnd/007749023" }, - "pid": "8762", + "pid": "10919", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/96575877X" + "$ref": "https://mef.rero.ch/api/places/gnd/004280768" }, - "pid": "8763", + "pid": "10920", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/965759059" + "$ref": "https://mef.rero.ch/api/places/gnd/004205731" }, - "pid": "8764", + "pid": "10921", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/965774910" + "$ref": "https://mef.rero.ch/api/places/gnd/002631628" }, - "pid": "8765", + "pid": "10922", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/965775429" + "$ref": "https://mef.rero.ch/api/places/gnd/001101536" }, - "pid": "8766", + "pid": "10923", "type": "bf:Place" }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/96577578X" + "$ref": "https://mef.rero.ch/api/places/gnd/000347078" }, - "pid": "8767", + "pid": "10924", "type": "bf:Place" }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/967160480" - }, - "pid": "8768", - "type": "bf:Place" + "pid": "9940", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027218546" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/967180953" - }, - "pid": "8769", - "type": "bf:Place" + "pid": "9941", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027218562" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/967581176" - }, - "pid": "8770", - "type": "bf:Place" + "pid": "9942", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027218597" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/967681952" - }, - "pid": "8771", - "type": "bf:Place" + "pid": "9943", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027218619" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/967753546" - }, - "pid": "8772", - "type": "bf:Place" + "pid": "9944", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027218767" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/969491131" - }, - "pid": "8773", - "type": "bf:Place" + "pid": "9945", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027218856" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/969971028" - }, - "pid": "8774", - "type": "bf:Place" + "pid": "9946", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027218961" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/970139470" - }, - "pid": "8775", - "type": "bf:Place" + "pid": "9947", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/02721897X" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/971359709" - }, - "pid": "8776", - "type": "bf:Place" + "pid": "9948", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027220443" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/972515704" - }, - "pid": "8777", - "type": "bf:Place" + "pid": "9949", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027222950" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/972586601" - }, - "pid": "8778", - "type": "bf:Place" + "pid": "9950", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027223736" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/972651438" - }, - "pid": "8779", - "type": "bf:Place" + "pid": "9951", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027223779" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/973040149" - }, - "pid": "8780", - "type": "bf:Place" + "pid": "9952", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027224406" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/973066245" - }, - "pid": "8781", - "type": "bf:Place" + "pid": "9953", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027224651" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/973066261" - }, - "pid": "8782", - "type": "bf:Place" + "pid": "9954", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027224678" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/973071648" - }, - "pid": "8783", - "type": "bf:Place" + "pid": "9955", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027224694" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/97424225X" - }, - "pid": "8784", - "type": "bf:Place" + "pid": "9956", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027225488" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/974245747" - }, - "pid": "8785", - "type": "bf:Place" + "pid": "9957", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027226042" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/975328573" - }, - "pid": "8786", - "type": "bf:Place" + "pid": "9958", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027226794" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/975958925" - }, - "pid": "8787", - "type": "bf:Place" + "pid": "9959", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027227812" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/978923855" - }, - "pid": "8788", - "type": "bf:Place" + "pid": "9960", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027228428" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/978966228" - }, - "pid": "8789", - "type": "bf:Place" + "pid": "9961", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027228517" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/979131529" - }, - "pid": "8790", - "type": "bf:Place" + "pid": "9962", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027228959" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/980891248" - }, - "pid": "8791", - "type": "bf:Place" + "pid": "9963", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027229246" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/984645942" - }, - "pid": "8792", - "type": "bf:Place" + "pid": "9964", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/02722953X" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/985253576" - }, - "pid": "8793", - "type": "bf:Place" + "pid": "9965", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027230309" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/98831326X" - }, - "pid": "8794", - "type": "bf:Place" + "pid": "9966", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027230430" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/989505952" - }, - "pid": "8795", - "type": "bf:Place" + "pid": "9967", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027234002" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/992346371" - }, - "pid": "8796", - "type": "bf:Place" + "pid": "9968", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027234592" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/994536666" - }, - "pid": "8797", - "type": "bf:Place" + "pid": "9969", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027236536" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/995191506" - }, - "pid": "8798", - "type": "bf:Place" + "pid": "9970", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027236668" + } }, { - "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/996155910" + "pid": "9971", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027237249" + } + }, + { + "pid": "9972", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027237664" + } + }, + { + "pid": "9973", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027238180" }, - "pid": "8799", - "type": "bf:Place" + "deleted": "2024-07-16T19:52:36.233702+00:00" + }, + { + "pid": "9974", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027239365" + } + }, + { + "pid": "9975", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027239497" + } + }, + { + "pid": "9976", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027241912" + } + }, + { + "pid": "9977", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027242005" + } + }, + { + "pid": "9978", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/02724301X" + } + }, + { + "pid": "9979", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027243222" + } + }, + { + "pid": "9980", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027244482" + } + }, + { + "pid": "9981", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027244520" + } + }, + { + "pid": "9982", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/02724606X" + } + }, + { + "pid": "9983", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027249654" + } + }, + { + "pid": "9984", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/02725030X" + } + }, + { + "pid": "9985", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027250504" + } + }, + { + "pid": "9986", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027250636" + } + }, + { + "pid": "9987", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027250644" + } + }, + { + "pid": "9988", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027250679" + } + }, + { + "pid": "9989", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027250911" + } + }, + { + "pid": "9990", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027250938" + } + }, + { + "pid": "9991", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/02725108X" + } }, { "gnd": { - "$ref": "https://mef.rero.ch/api/places/gnd/996588051" + "$ref": "https://mef.rero.ch/api/places/gnd/04062501X" }, - "pid": "8800", - "type": "bf:Place" + "pid": "9992", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027251411" + } + }, + { + "pid": "9993", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027251551" + } + }, + { + "pid": "9994", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027251659" + } + }, + { + "pid": "9995", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027252124" + } + }, + { + "pid": "9996", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027252272" + } + }, + { + "pid": "9997", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027252361" + } + }, + { + "pid": "9998", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027252388" + } + }, + { + "pid": "9999", + "type": "bf:Place", + "idref": { + "$ref": "https://mef.rero.ch/api/places/idref/027252620" + } } ] \ No newline at end of file diff --git a/data/plmef_metadata.csv b/data/plmef_metadata.csv index ab6a0e6d..a949a6f8 100644 --- a/data/plmef_metadata.csv +++ b/data/plmef_metadata.csv @@ -1,985 +1,1579 @@ -2024-07-17 09:28:46.23796 2024-07-17 09:28:46.237969 46b50890-04cb-433e-8654-02176b0bf792 {"pid": "7835", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027227812"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:28:46.872093 2024-07-17 09:28:46.872105 2d5ba9cd-e6a1-4d5a-a0b6-9b2f35bebbce {"pid": "7845", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027236536"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:28:46.952748 2024-07-17 09:28:46.952758 3c599bec-0ee1-423c-ad62-8feb73c0aab5 {"pid": "7846", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027236668"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:28:45.327577 2024-07-17 09:29:10.064277 1cba7d17-afbd-471e-8a9c-523825a743ef {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/00468687X"}, "pid": "7821", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027218856"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:45.277149 2024-07-17 09:29:11.067284 be7c4e8d-3d8a-4d2b-bbc1-8f3a46e786bc {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040011798"}, "pid": "7820", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027218767"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:45.550272 2024-07-17 09:29:12.055442 ca309898-14dd-4d08-bc59-30b5cdcdd01a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040039005"}, "pid": "7824", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027220443"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:46.60424 2024-07-17 09:29:13.072411 89b01380-0f5c-48b1-9d0c-b38cd798105b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/04008003X"}, "pid": "7840", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/02722953X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:45.635923 2024-07-17 09:29:13.708895 dca10b42-9ffe-4e2a-8f4a-48b344ee7835 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040118908"}, "pid": "7826", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027223736"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:46.645226 2024-07-17 09:29:13.83522 2b259708-3b7d-45a5-a445-5b0ee653a3e0 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040144267"}, "pid": "7841", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027230309"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:45.786418 2024-07-17 09:29:14.30175 faa3bc8b-4b80-4d74-911e-2cc4d5d277db {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040157016"}, "pid": "7829", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027224651"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:46.072733 2024-07-17 09:29:14.40213 47dff5dc-a9bf-4eec-99d0-1c08e62833cd {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040175812"}, "pid": "7833", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027226042"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:46.377414 2024-07-17 09:29:15.353229 2b822a46-2d71-4a2f-b763-0339f1c7987f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040218813"}, "pid": "7837", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027228517"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:46.305246 2024-07-17 09:29:15.46163 aa10c096-6af0-42c8-b25c-60d9bd497635 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040220478"}, "pid": "7836", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027228428"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:46.687525 2024-07-17 09:29:17.374931 dd1068c7-90a5-4fdc-9557-0b5519f452d7 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040318125"}, "pid": "7842", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027230430"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:45.380673 2024-07-17 09:29:19.936145 b1aa3b37-7806-42be-b127-602872a11ceb {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040424839"}, "pid": "7822", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027218961"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:46.534991 2024-07-17 09:29:20.212817 f71aa091-12e8-46d4-a2c7-4f7196096971 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040432718"}, "pid": "7839", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027229246"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:45.72469 2024-07-17 09:29:23.036356 6bf7f26d-4f9e-4f69-a183-8f67a2b034d8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040559645"}, "pid": "7828", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027224406"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:46.792448 2024-07-17 09:29:25.981971 657b006c-e828-409b-a006-8dfc86b1a572 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040731723"}, "pid": "7844", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027234592"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:45.467205 2024-07-17 09:29:26.316857 197f34f2-531e-41d0-8c66-a770b484b4df {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040740323"}, "pid": "7823", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/02721897X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:45.851461 2024-07-17 09:29:27.704342 f7de0373-8fca-4e89-9c5e-69e020c7f711 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040757390"}, "pid": "7830", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027224678"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:45.221342 2024-07-17 09:29:28.630583 90a8e9ff-27bc-4f11-98b7-6e479a00fad4 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040780120"}, "pid": "7819", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027218619"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:45.925434 2024-07-17 09:29:29.529953 cabcad9d-3474-4b58-9e0f-13f0aaeed4ac {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040792153"}, "pid": "7831", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027224694"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:45.138569 2024-07-17 09:29:29.812445 cb41fa75-0a2d-46de-a7bd-de8102a53bc9 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040794857"}, "pid": "7817", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027218562"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:45.67458 2024-07-17 09:29:30.97394 fb0c5e2c-ee8b-49a5-be2e-0dd1c8f2d13b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040932052"}, "pid": "7827", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027223779"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:47.195783 2024-07-17 09:28:47.195792 bdfdb019-a548-4fe2-9f87-02224f71a96b {"pid": "7849", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027238180"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json", "deleted": "2024-07-16T19:52:36.233702+00:00"} 1 -2024-07-17 09:28:48.04374 2024-07-17 09:28:48.04375 3cce78b9-ef13-4dc9-afdc-e40e53c17a25 {"pid": "7861", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027250504"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:28:48.229589 2024-07-17 09:28:48.229596 6ffe4f1f-3ab9-4b20-b904-899de113bbbc {"pid": "7863", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027250644"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:28:48.137957 2024-07-17 09:29:16.59149 c0d745df-8149-4f62-8915-de0a1eed2970 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040293076"}, "pid": "7862", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027250636"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:48.340196 2024-07-17 09:29:16.820714 95a83796-33c7-438f-8807-5135f9f02c1d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040294560"}, "pid": "7864", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027250679"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:48.50969 2024-07-17 09:29:17.499243 d68927c7-ca42-41dd-9a89-17a316ea5039 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/04032527X"}, "pid": "7866", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027250938"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:48.595798 2024-07-17 09:29:17.560492 e6b3d99d-f3d5-453e-bd22-e8001af71188 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/04033340X"}, "pid": "7867", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/02725108X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:47.342967 2024-07-17 09:29:18.687425 77e42912-4fca-48ab-a53e-1ff277c1118b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040390586"}, "pid": "7851", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027239497"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:49.003889 2024-07-17 09:29:19.656478 c31614aa-c162-43bd-ab36-6b12b4f0813a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040422038"}, "pid": "7873", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027252361"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:47.690691 2024-07-17 09:29:20.477079 35e03d08-4cbc-4a78-9b9c-8912f030280b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040443817"}, "pid": "7856", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027244482"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:49.095401 2024-07-17 09:29:20.671818 337205f4-a9f9-469c-93ee-2382c610ded0 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/04045312X"}, "pid": "7874", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027252388"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:47.648741 2024-07-17 09:29:20.788551 ea78a68b-4658-4d5c-96a1-8e84d8a6a5f9 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040464962"}, "pid": "7855", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027243222"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:47.497943 2024-07-17 09:29:21.54634 360daed1-f139-4141-8bdf-974836ed8ff9 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040496392"}, "pid": "7853", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027242005"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:49.199129 2024-07-17 09:29:21.943586 99ce3b96-11c1-4a55-8bcb-fa84e25363f4 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/04051658X"}, "pid": "7875", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027252620"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:47.867212 2024-07-17 09:29:22.395769 5f5de64d-b56b-4432-b0c9-8829cd1c0038 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040538818"}, "pid": "7859", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027249654"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:48.724668 2024-07-17 09:29:22.709171 45ca634d-e8f1-463b-b304-af7154ef1eb4 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040551938"}, "pid": "7869", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027251551"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:49.346495 2024-07-17 09:29:23.715313 e88f30c5-eedc-4e81-b82c-30ac1ec17b22 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040611639"}, "pid": "7877", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027254755"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:48.669082 2024-07-17 09:29:23.97715 8ac60558-2317-4289-b900-9266b4668d4a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/04062501X"}, "pid": "7868", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027251411"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:47.796908 2024-07-17 09:29:25.289675 2b34df39-4e4b-45d6-ace8-e12c565ab504 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040703703"}, "pid": "7858", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/02724606X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:47.030393 2024-07-17 09:29:26.427172 e7034f58-4c63-4b80-8388-d453db4f3882 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040743357"}, "pid": "7847", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027237249"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:48.844332 2024-07-17 09:29:26.778139 0811862b-f75d-4606-af3f-a216755042c1 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040749878"}, "pid": "7871", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027252124"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:48.91825 2024-07-17 09:29:27.460735 43e066b1-ad97-4db2-ba53-1606f9caf8cf {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/04075720X"}, "pid": "7872", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027252272"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:48.42064 2024-07-17 09:29:28.749652 afa67f7e-e2a9-453b-a80e-ef41edac225b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040780295"}, "pid": "7865", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027250911"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:48.773074 2024-07-17 09:29:28.852884 92534d67-8ffb-4588-933c-cbd1771abbb9 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/04078228X"}, "pid": "7870", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027251659"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:51.15468 2024-07-17 09:28:51.154687 ddcff94c-1a26-4b36-aa46-030dbd38f584 {"pid": "7900", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027286703"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:28:49.741098 2024-07-17 09:29:10.731178 626ee622-1f24-40e2-8720-e547ee869a3e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040000222"}, "pid": "7882", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027259641"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:50.113658 2024-07-17 09:29:11.278852 db832457-1a5a-4722-91f1-545e9c249e94 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040016269"}, "pid": "7887", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027263487"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:50.183907 2024-07-17 09:29:11.365464 949695aa-8061-4553-a7ad-5f6cbb5be379 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040019098"}, "pid": "7888", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027263495"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:51.232274 2024-07-17 09:29:11.941409 97179faa-8fee-4ccc-abc8-ff7eddd59667 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/04003366X"}, "pid": "7901", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027290530"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:50.903817 2024-07-17 09:29:14.648742 c0cae8fd-a75b-4dc0-b50c-ad277f2cc266 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040181847"}, "pid": "7897", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027267873"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:50.53891 2024-07-17 09:29:14.861926 fcf113de-f2f4-4fb4-9ac0-3424d3957380 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040201376"}, "pid": "7892", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/02726453X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:50.833724 2024-07-17 09:29:15.520116 ef581472-cc31-490e-9489-653bedf9b668 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/04022113X"}, "pid": "7896", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027267830"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:50.263835 2024-07-17 09:29:15.727612 3ea578e2-9145-4435-a528-0f1e5ec6ffc9 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040276678"}, "pid": "7889", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/02726369X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:49.521204 2024-07-17 09:29:16.405287 847d9409-67a3-4e0b-a448-b7b4f0a056c2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040289664"}, "pid": "7879", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027256308"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:50.345427 2024-07-17 09:29:18.415324 ea9327de-5dbf-47eb-9914-d67f24469f4a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/04037680X"}, "pid": "7890", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027263711"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:51.464263 2024-07-17 09:29:18.921119 2af0c4c5-7d79-45e8-b369-68d5891f6085 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040400565"}, "pid": "7904", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027311430"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:50.777291 2024-07-17 09:29:21.23133 faa496be-b802-4d64-a958-8fe71676d6b0 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040475646"}, "pid": "7895", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027266257"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:49.968136 2024-07-17 09:29:21.731866 a2250914-c034-4bc9-afff-d9890c69f9e5 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040509397"}, "pid": "7885", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027262952"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:49.428508 2024-07-17 09:29:23.860227 6fc6aacf-83bf-4cc1-b1de-7f52a69b9c31 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040624048"}, "pid": "7878", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027255123"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:51.621301 2024-07-17 09:29:26.990206 f6e5c9f1-9f96-40a7-8bad-be34180795d4 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040754685"}, "pid": "7906", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027316696"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:50.447843 2024-07-17 09:29:27.110101 aec623c1-01d4-43ef-befc-d15db8c01b7d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040754715"}, "pid": "7891", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027263762"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:51.701622 2024-07-17 09:29:29.167512 d68e8ec7-c3aa-4032-804a-7f9ab3b6dc54 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040789829"}, "pid": "7907", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027318494"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:51.788684 2024-07-17 09:29:29.297399 bf87d3b0-4b1c-4d39-971a-905f83ffb890 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/04079203X"}, "pid": "7908", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027321940"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:51.538336 2024-07-17 09:29:30.536493 8cb80c4f-228a-4ddd-b647-9a487cd84fa1 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040859312"}, "pid": "7905", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027316211"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:51.312535 2024-07-17 09:29:31.067498 bbcaf07e-0414-4a93-8abc-c5eef9394e64 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040932087"}, "pid": "7902", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027296946"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:50.705136 2024-07-17 09:29:33.665173 b0c2050a-8506-4f2b-b7c4-b4a913bd0fc3 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/041179145"}, "pid": "7894", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027266060"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:50.977206 2024-07-17 09:29:52.67457 02406a5f-0c67-4200-9275-d6e3a1fcfbbd {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1077172354"}, "pid": "7898", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027275922"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:53.704968 2024-07-17 09:29:11.641794 726d8c41-7f69-43ff-9662-320d52730c85 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040023869"}, "pid": "7932", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027416925"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:52.72762 2024-07-17 09:29:12.603735 12a75496-ea53-4820-ad27-4bf2713c9a47 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040057623"}, "pid": "7920", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027369714"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:52.90113 2024-07-17 09:29:12.953889 d0d9e3df-3411-4647-a90d-7f154b5d4bf1 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040076075"}, "pid": "7923", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027377067"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:52.469762 2024-07-17 09:29:14.063036 7c2ec21d-d9cc-41a0-b707-c4293d29aa61 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040147703"}, "pid": "7917", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/02735895X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:53.336214 2024-07-17 09:29:15.850239 ac24fd2b-fad1-4446-ba5f-3dfb8b926c0d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040277542"}, "pid": "7928", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027405621"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:53.902129 2024-07-17 09:29:16.506286 1881eac8-50bb-4e3b-9b32-1e3847350457 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040290433"}, "pid": "7935", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027434141"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:52.978483 2024-07-17 09:29:16.696269 c38cbf9f-d1e0-4d35-8859-77577342806b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040294137"}, "pid": "7924", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027377768"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:51.839481 2024-07-17 09:29:17.149621 db5605e5-3a5d-4a22-afdf-9ef7c8d1c15b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040302369"}, "pid": "7909", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027322998"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:52.64154 2024-07-17 09:29:19.045903 cdd0c279-d824-431c-af7c-f030ddb954d6 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040401499"}, "pid": "7919", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027367428"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:53.162191 2024-07-17 09:29:19.370901 1b4106e7-6c47-4da7-8e84-cb9fdab66a81 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/04041745X"}, "pid": "7926", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027401448"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:51.905866 2024-07-17 09:29:19.600852 01a0bdde-42ff-4a43-b474-b39a0eda5add {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040419150"}, "pid": "7910", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027323072"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:51.967162 2024-07-17 09:29:21.430943 6d8ef5d6-523a-471d-8102-7418d7000d2f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040480305"}, "pid": "7911", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027331180"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:53.798515 2024-07-17 09:29:22.146857 6395c926-6a9f-4d27-a3d7-3a50bdcf063f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040518507"}, "pid": "7933", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027417298"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:52.039067 2024-07-17 09:29:22.640271 36bdeb23-1b83-46c1-a7a7-289f11360f6c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040547809"}, "pid": "7912", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027333752"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:52.364011 2024-07-17 09:29:23.36123 91964428-c7dd-489d-81ca-6aab706b7e7f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040587940"}, "pid": "7916", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027356949"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:52.282421 2024-07-17 09:29:24.814206 2a1663f3-f030-4317-bc24-b09d7abc55b1 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/04068878X"}, "pid": "7915", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027356302"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:52.55543 2024-07-17 09:29:24.929448 966f108b-4d24-4651-b352-fa9967473449 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040690997"}, "pid": "7918", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027360199"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:53.983479 2024-07-17 09:29:25.163386 4a1ad1d0-cf40-4d87-8509-4deff854c0da {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040703525"}, "pid": "7936", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027437213"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:53.611756 2024-07-17 09:29:27.808711 6836a6de-f283-441f-9dc4-188708ebebce {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040763102"}, "pid": "7931", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027408647"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:52.11104 2024-07-17 09:29:27.897648 568f3256-be43-4a66-a223-87d97e2497a3 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040768996"}, "pid": "7913", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027342395"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:54.165145 2024-07-17 09:29:28.006021 62e9d467-968e-40d8-afe9-c52442f20fa5 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040769100"}, "pid": "7938", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027442128"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:53.856004 2024-07-17 09:29:30.840911 536d24b3-7d1c-46fb-9d66-865176a69c31 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040912000"}, "pid": "7934", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027429261"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:54.066326 2024-07-17 09:29:34.717462 553b0de1-a170-47fe-940b-1826e3747264 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/041940458"}, "pid": "7937", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027437221"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:54.458558 2024-07-17 09:28:54.458569 d01d2e94-11ed-429b-b4ee-e49a8fe701f2 {"pid": "7941", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027468909"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:28:56.256916 2024-07-17 09:29:11.837548 048326d5-5357-493e-8311-cf4e4aa2752b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040032175"}, "pid": "7962", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027801101"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:56.777175 2024-07-17 09:29:12.815078 2f5827b8-a1de-46b1-9f5e-254478d6dffa {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040065146"}, "pid": "7968", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028146239"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:54.557314 2024-07-17 09:29:13.184966 0cca35b2-5338-4fc8-a4f3-e697b060d51d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040092569"}, "pid": "7942", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027472906"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:55.743365 2024-07-17 09:29:13.502605 0a24d12a-d796-498a-8eff-62b6b7f928d0 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040099377"}, "pid": "7956", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027633179"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:55.279431 2024-07-17 09:29:14.472636 5be08f85-629b-46b3-b5dc-c891b18da974 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040181413"}, "pid": "7951", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027584763"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:55.989484 2024-07-17 09:29:15.230739 b4eed59f-ed12-40c8-8ae1-97ecd322bbfe {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040201449"}, "pid": "7959", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/02773417X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:56.076436 2024-07-17 09:29:15.96924 3ed8bb13-4f94-4abf-8bef-0601feb325e8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040278395"}, "pid": "7960", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/02775751X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:55.57504 2024-07-17 09:29:16.196822 bd763afd-8cf9-4ad3-a26f-b5900877d62a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040287505"}, "pid": "7954", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027614697"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:56.422466 2024-07-17 09:29:17.829227 c7338ba2-afd1-4b2a-ba12-2ffa0f144ceb {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040367282"}, "pid": "7964", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027810674"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:56.342606 2024-07-17 09:29:18.801283 ffb13bfb-3f2a-48f7-8cca-1a623e4c6eaa {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040396770"}, "pid": "7963", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027804151"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:55.825462 2024-07-17 09:29:19.168344 6524552e-4755-4ee8-ad64-90907816751f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/04040417X"}, "pid": "7957", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/02763857X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:54.355682 2024-07-17 09:29:21.836676 6f3178d4-89e2-4fd7-97f3-90eaf230492f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/04051594X"}, "pid": "7940", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027465012"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:56.685433 2024-07-17 09:29:22.918208 33efa6c2-a262-4cd8-b128-2263f0a21e59 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040554589"}, "pid": "7967", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027945774"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:54.977054 2024-07-17 09:29:23.250573 005e46ef-ee6c-4b39-8846-9d9f28a9e070 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040584488"}, "pid": "7947", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027502368"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:55.032793 2024-07-17 09:29:25.420599 696e8894-e22e-40e4-80f2-9ba83aa5ec09 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040713326"}, "pid": "7948", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027524329"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:56.170315 2024-07-17 09:29:25.565077 ad2b5d24-b439-43f0-8210-e9af836ad7be {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040714039"}, "pid": "7961", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027768678"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:55.107867 2024-07-17 09:29:25.726228 4b20a35e-ecdc-454e-aa7c-9c992ea93aec {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040714446"}, "pid": "7949", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027526836"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:54.636626 2024-07-17 09:29:26.103227 a4b82a65-51f3-4527-9256-5a0142755c7f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040738418"}, "pid": "7943", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027483304"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:55.658158 2024-07-17 09:29:28.110187 32b35006-9dd8-410e-9842-2550b45c60c7 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040772586"}, "pid": "7955", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027622444"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:56.950011 2024-07-17 09:29:29.411885 4f6bc522-7b5a-4e49-b665-63713c504d5b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040792048"}, "pid": "7970", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/02847158X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:55.912678 2024-07-17 09:29:31.968666 4e1e0531-9f18-402b-9044-5f96451da577 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/041037766"}, "pid": "7958", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027705781"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:55.450839 2024-07-17 09:29:34.419784 43ed3247-4bd9-4934-bd3b-5a75a4ef92ff {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/041355350"}, "pid": "7953", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027597334"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:58.013505 2024-07-17 09:28:58.01351 3d74e0c7-141e-4969-ab98-ad052573fac9 {"pid": "7981", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/030519799"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:28:57.0817 2024-07-17 09:29:12.27528 1f48a0a1-2d04-476d-8940-d09d3883cbcc {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040046206"}, "pid": "7972", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028706536"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:58.864621 2024-07-17 09:29:15.112827 b711be1b-2d06-486f-9aa4-191b72bef3e2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040201392"}, "pid": "7990", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/085703419"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:58.656661 2024-07-17 09:29:18.119607 5205ee79-0e33-4d48-b06b-6d54785b69f6 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/04037100X"}, "pid": "7988", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/071586709"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:58.552061 2024-07-17 09:29:18.538224 507f82ef-7574-4067-8a2f-c314d171acf4 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040379922"}, "pid": "7987", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/055302149"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:57.623546 2024-07-17 09:29:22.269695 839e3576-5ac8-43d9-b461-ad5016d8042f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040519937"}, "pid": "7977", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/02899275X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:57.413505 2024-07-17 09:29:22.524527 ca279225-2fce-486e-9a39-febfd3e19ab4 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040540197"}, "pid": "7975", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028988310"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:58.176727 2024-07-17 09:29:24.302738 cd86a9f4-c3ee-4033-8e0f-19d8cb3efde0 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040658236"}, "pid": "7983", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/031211097"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:57.519006 2024-07-17 09:29:24.638554 3b6fe80d-1842-443d-a0bb-247dbfcd0d0e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040680649"}, "pid": "7976", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028992318"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:59.146969 2024-07-17 09:29:25.86401 7b2c6c56-c69c-4a0f-839c-75321fc54ce0 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040721000"}, "pid": "7994", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/116317825"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:58.35915 2024-07-17 09:29:27.336537 212b23b3-c23e-4b19-a3ff-6248ed6f5e03 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040756130"}, "pid": "7985", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/032861621"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:57.714753 2024-07-17 09:29:28.226739 102b026d-6996-4738-900a-c34998091867 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040772756"}, "pid": "7978", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/029036690"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:59.076476 2024-07-17 09:29:29.021659 8ca85889-904a-474d-b4d5-95d8de58e707 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040786528"}, "pid": "7993", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/114526591"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:58.97499 2024-07-17 09:29:29.696399 e517190a-bcfb-4893-975b-7824c9e7138f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040792374"}, "pid": "7991", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/097857300"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:57.003586 2024-07-17 09:29:30.255253 333e77fb-8efc-4256-96b5-633aa266b761 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040802752"}, "pid": "7971", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028567005"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:57.815168 2024-07-17 09:29:31.176535 13830d6f-79d6-42d4-a048-68314a7d4a87 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040940888"}, "pid": "7979", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/029201098"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:59.029011 2024-07-17 09:29:32.040975 d61a44b8-3de0-40c4-823a-ac68652bfa3d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/041048989"}, "pid": "7992", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/110868056"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:59.705978 2024-07-17 09:29:32.157906 89cbd6ae-70ae-4ddc-8581-290aa424932b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/041051513"}, "pid": "8000", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/157143392"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:59.516822 2024-07-17 09:29:32.621716 65d8bed7-3420-490c-b6dd-7f33bc4fb756 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/041075102"}, "pid": "7998", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/14704233X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:57.189406 2024-07-17 09:29:33.787621 aa1774af-c916-4f10-b2f7-9e9dce7d8e70 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/041186672"}, "pid": "7973", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028724208"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:59.797103 2024-07-17 09:29:33.894134 1b9e7fa4-d663-47c6-904d-80c1faa0730a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/041192389"}, "pid": "8001", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/157143422"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:59.232108 2024-07-17 09:30:26.740967 2d88ac42-1da3-43ba-a171-06abe0341fc1 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/947297987"}, "pid": "7995", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/116459425"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:59.32556 2024-07-17 09:30:35.209065 f142c86f-0a76-4917-8f3d-eb10881d8a2c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/96475455X"}, "pid": "7996", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/127372547"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:29:00.289206 2024-07-17 09:29:00.289216 46f41427-4fcc-48f3-adc6-1cadf99b7aad {"pid": "8006", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/25887421X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:00.729301 2024-07-17 09:29:00.729315 8577c4a3-8b43-4fa6-bdb3-27b992dea7f4 {"pid": "8010", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/263259935"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:01.278618 2024-07-17 09:29:01.278625 b84aa734-ebe8-4f01-8c52-05358930f289 {"pid": "8016", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271321628"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:01.354466 2024-07-17 09:29:01.354477 b7869f07-5342-457f-aa89-40cbaa138fb2 {"pid": "8017", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271323337"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:01.451209 2024-07-17 09:29:01.451222 c78328b4-abf2-496f-b4fe-6a66b6f1a580 {"pid": "8018", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271323353"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:01.560781 2024-07-17 09:29:01.560793 69055306-9ec4-4a66-9311-01ba7cc72985 {"pid": "8019", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271323426"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:01.666647 2024-07-17 09:29:01.666657 8d29888e-c7b6-479a-a527-4835d9078ce2 {"pid": "8020", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271323485"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:01.788118 2024-07-17 09:29:01.788131 0e624a97-fff0-48cb-8dc3-34ecf22045fc {"pid": "8021", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271323515"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:01.901223 2024-07-17 09:29:01.901232 2d9c9563-582c-4edd-b8d9-8fc3b00f960c {"pid": "8022", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271323523"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:02.013916 2024-07-17 09:29:02.013926 a6160a1a-dd10-48dc-82a2-0c8ad151431a {"pid": "8023", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271323566"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:02.173455 2024-07-17 09:29:02.173465 7e72c6bc-44ff-44d5-886f-7541c3e6997c {"pid": "8025", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271323663"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:02.276284 2024-07-17 09:29:02.27633 1835d874-b19b-41d1-8712-39060aa79d00 {"pid": "8026", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/27132368X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:02.497768 2024-07-17 09:29:02.497778 c91bb962-11ac-4dc6-92a1-c66fada43a93 {"pid": "8028", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271323728"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:02.604938 2024-07-17 09:29:02.604954 e03b8508-3855-41a1-94bc-c68d2c4edd7a {"pid": "8029", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271323752"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:02.698007 2024-07-17 09:29:02.69802 ae3eecaf-18e7-474a-aa76-7885aec979c4 {"pid": "8030", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271323957"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:02.822665 2024-07-17 09:29:02.822671 c0687f75-a595-4579-9a3c-c98ab55c6e49 {"pid": "8031", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271323973"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:02.936577 2024-07-17 09:29:02.93659 1585c42a-604d-40fd-b92b-3b60a473c6dd {"pid": "8032", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271324015"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:00.94659 2024-07-17 09:29:28.338938 85474319-eba2-4700-b86f-0e6459215718 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040774244"}, "pid": "8012", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/264287010"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:29:00.844685 2024-07-17 09:29:33.536521 4f22176b-9e48-44e4-9f08-998a87080a09 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/041170008"}, "pid": "8011", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/263837920"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:29:00.025331 2024-07-17 09:29:36.463865 55c7240d-e841-4ba0-b318-42b3bb9e3205 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/042750067"}, "pid": "8003", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/185110363"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:29:00.639949 2024-07-17 09:30:25.022316 66b96f89-72be-4a71-a08c-807f7b930464 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/941147797"}, "pid": "8009", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/26144722X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:29:01.114869 2024-07-17 09:30:30.839837 36a10b3d-a89d-4813-8573-e9de37411935 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/952816407"}, "pid": "8014", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/264644093"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:29:02.3788 2024-07-17 09:30:30.930151 c7962d93-1ab9-4d42-b373-0d0699e10e17 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/952907682"}, "pid": "8027", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271323698"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:29:00.52771 2024-07-17 09:30:31.536194 eada61d9-4c4e-472e-adfe-7ec227876176 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/954696867"}, "pid": "8008", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/261121162"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:29:01.059152 2024-07-17 09:30:32.151068 e9fa9c60-f2bf-4bb7-ac3b-3b4807506453 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/955884152"}, "pid": "8013", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/264406095"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:59.924089 2024-07-17 09:30:36.546584 1036c89a-2e5e-441d-90a0-dd926c95e17d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/968963935"}, "pid": "8002", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/161911846"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:29:01.186872 2024-07-17 09:30:38.901219 bf359f07-7605-4093-819c-2d863311589f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/993248810"}, "pid": "8015", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/264645081"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:29:03.045581 2024-07-17 09:29:03.045591 3c2a0332-726b-49d6-b4d7-463c96a96095 {"pid": "8033", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271324031"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:03.141534 2024-07-17 09:29:03.141537 c2697cb1-2181-41b7-ba5e-dbc9b14178f0 {"pid": "8034", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271324058"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:03.228562 2024-07-17 09:29:03.228564 72d4f6b3-1e2c-42da-bd5d-8e1c385f060d {"pid": "8035", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271324074"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:03.325881 2024-07-17 09:29:03.32589 cb9ae29b-e388-4a18-8825-c731196fce0e {"pid": "8036", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271324562"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:03.432547 2024-07-17 09:29:03.432567 483b3a16-90b1-4da4-85ee-0f538b1892b0 {"pid": "8037", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271326441"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:03.535658 2024-07-17 09:29:03.53567 1ccbd2bf-3b0b-41d7-bff2-6a83e6e3d24f {"pid": "8038", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271326476"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:03.630496 2024-07-17 09:29:03.630509 b7d48eec-84f8-4eeb-9b45-bb5156f8c4a5 {"pid": "8039", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271326484"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:03.732475 2024-07-17 09:29:03.732486 d02f2f8e-e216-4787-a1d2-b771e5d12c20 {"pid": "8040", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271326506"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:03.831853 2024-07-17 09:29:03.831865 f60a3bb7-fcf2-4047-8ea3-0951136fb845 {"pid": "8041", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271326514"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:03.928223 2024-07-17 09:29:03.928234 5d6556e3-2739-4f5a-bd82-a65c89b17890 {"pid": "8042", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271326522"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:04.024867 2024-07-17 09:29:04.024877 a755f3a3-496d-446f-bfc6-b49d5b1355df {"pid": "8043", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271326530"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:04.120422 2024-07-17 09:29:04.12043 3e8ef545-bd9b-4047-b7f1-2eb302c52bc4 {"pid": "8044", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271326557"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:04.219994 2024-07-17 09:29:04.219998 12fe0cbe-652a-4fdc-9b8f-41d741ed69f0 {"pid": "8045", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271326603"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:04.294518 2024-07-17 09:29:04.294563 9b969c72-5e1c-4a5b-a95c-0dcec246f630 {"pid": "8046", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271326670"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:04.383227 2024-07-17 09:29:04.383236 eee37460-0cee-4576-965e-3795b4b7a443 {"pid": "8047", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271326700"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:04.486772 2024-07-17 09:29:04.486783 93afbe44-0fb8-45e0-8b79-4a6a20a2dcae {"pid": "8048", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271326727"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:04.579977 2024-07-17 09:29:04.579985 772917cc-4b7e-4edd-8526-f28a03a8fcda {"pid": "8049", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271326751"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:04.677963 2024-07-17 09:29:04.677972 3655882f-d06c-4894-81c7-821dff52cf31 {"pid": "8050", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/27132676X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:04.777906 2024-07-17 09:29:04.777916 dbfefe8c-5151-4992-af77-4522ef559c6e {"pid": "8051", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271326778"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:04.875868 2024-07-17 09:29:04.875875 a3aeeeed-5979-44ce-bfed-4609f770e16d {"pid": "8052", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271326786"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:04.983796 2024-07-17 09:29:04.983806 28283ee1-c401-457c-bb8a-0bb06d03097a {"pid": "8053", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271326794"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:05.078043 2024-07-17 09:29:05.078052 f1f5d3b0-a9ad-47e5-bada-7149978c288c {"pid": "8054", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271326808"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:05.171146 2024-07-17 09:29:05.17116 57eabdf7-6545-464c-87a8-f4ab4339975c {"pid": "8055", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271326824"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:05.226033 2024-07-17 09:29:05.22604 a5cbbddd-ed99-492b-b5cb-9e7c73cf2bad {"pid": "8056", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271326832"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:05.275336 2024-07-17 09:29:05.275339 6d147fac-d79b-4780-89b4-50325ac2c85e {"pid": "8057", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271326840"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:05.361294 2024-07-17 09:29:05.361305 a4be93ae-652a-4bde-aa48-633fa7dc23ff {"pid": "8058", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271327383"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:05.478267 2024-07-17 09:29:05.478274 9e8783b0-b24c-495b-a1cd-6b7eba5a06e5 {"pid": "8059", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271328762"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:05.581389 2024-07-17 09:29:05.581404 91d73902-0623-4136-8c93-172772e1d00c {"pid": "8060", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271329017"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:05.661668 2024-07-17 09:29:05.661678 8c8a8fd1-55a3-4b52-b59e-13947c988930 {"pid": "8061", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271329335"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:05.762313 2024-07-17 09:29:05.762324 dac591bc-3544-472f-9e74-0e5ff24ccb86 {"pid": "8062", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271329696"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:05.853323 2024-07-17 09:29:05.853328 e9d8d03c-c006-40c2-9dd0-5b3e4a80aa9f {"pid": "8063", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271329734"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:05.938042 2024-07-17 09:29:05.938053 578b3899-375d-4a64-bb06-396f9ed25f82 {"pid": "8064", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271329831"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:06.034264 2024-07-17 09:29:06.034276 1678952b-722b-47f4-ab23-00b63884b2c9 {"pid": "8065", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271329912"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:06.157465 2024-07-17 09:29:06.157476 dd21c45d-739f-468c-9408-6eb96c1f94fb {"pid": "8066", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271329998"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:06.242113 2024-07-17 09:29:06.242117 71f6174b-18d0-4b8b-b1bf-30e47ef8e8ea {"pid": "8067", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271330031"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:06.292674 2024-07-17 09:29:06.292677 c2da9743-101e-4d1a-9320-1231632cbbad {"pid": "8068", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271330163"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:06.363936 2024-07-17 09:29:06.363944 d01feda4-80b4-4312-b892-b8d48b64a741 {"pid": "8069", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271331658"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:06.443286 2024-07-17 09:29:06.443294 c1a2f4fe-0c9f-47d6-ab44-0c4d467ab145 {"pid": "8070", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271331712"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:06.525704 2024-07-17 09:29:06.525717 46752a73-4cb1-4b5d-987a-668f3f2004c7 {"pid": "8071", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/27133181X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:06.613947 2024-07-17 09:29:06.613957 6f013ec5-3697-418d-8ba8-a6882ab55e33 {"pid": "8072", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271332352"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:06.696978 2024-07-17 09:29:06.696986 5991f73b-361a-4b66-8f4b-d090ce09b19f {"pid": "8073", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271332778"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:06.773346 2024-07-17 09:29:06.773354 ddb474d8-3915-4bd8-9d11-b79ca08ce46c {"pid": "8074", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271332824"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:06.864027 2024-07-17 09:29:06.864036 296a7ced-e406-4080-9df0-354c92a78e25 {"pid": "8075", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271333081"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:06.961486 2024-07-17 09:29:06.961494 99da5b01-02b0-4829-87ee-1c03a3fcdc0a {"pid": "8076", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271333197"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:07.06017 2024-07-17 09:29:07.060181 71a279e8-b6f0-43de-8e2b-70b9650336e6 {"pid": "8077", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271333243"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:07.149055 2024-07-17 09:29:07.149101 d51cbf61-199f-4813-b2ad-f72e2738dc15 {"pid": "8078", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271337214"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:28:46.001349 2024-07-17 09:29:09.590838 64251f7e-d1b2-4d6a-9453-cb43bb2cae13 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/000339784"}, "pid": "7832", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027225488"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:29:09.674543 2024-07-17 09:29:09.674547 cd31b41e-168c-4b3d-9f08-5a3ec9290edc {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/000347078"}, "pid": "8083", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:09.721829 2024-07-17 09:29:09.721833 d18e891d-f628-4a61-be41-bc30cc78b846 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/001101536"}, "pid": "8084", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:09.770183 2024-07-17 09:29:09.770187 25d6bb7d-bc25-4e1f-b1dc-96986a80b2a3 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/002631628"}, "pid": "8085", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:09.850294 2024-07-17 09:29:09.850302 873e54f6-566a-4176-b892-be6667e69d08 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/004205731"}, "pid": "8086", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:09.961985 2024-07-17 09:29:09.96202 db2d559b-29b7-4c55-a8e5-112ca2135a59 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/004280768"}, "pid": "8087", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:28:50.042673 2024-07-17 09:29:10.185923 42fe7e5c-54a4-4de2-af74-4f3107e3b120 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/004911474"}, "pid": "7886", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027263061"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:29:10.293154 2024-07-17 09:29:10.293164 58624fb4-b47f-406a-8256-e14b59520085 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/007749023"}, "pid": "8088", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:10.367927 2024-07-17 09:29:10.367931 db2abde3-aff1-46b5-8fac-5b9f2dd4dc53 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/030089050"}, "pid": "8089", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:10.418784 2024-07-17 09:29:10.418789 8a59d528-073d-4419-a235-af5ddb2aa8a1 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/030125898"}, "pid": "8090", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:10.489976 2024-07-17 09:29:10.489985 626545b7-0fd7-4c4c-a8e4-6ad5dfe01147 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/030141605"}, "pid": "8091", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:07.239373 2024-07-17 09:29:35.996879 ad019538-5d19-4d24-bf3c-9c1dd8de0e76 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/042499909"}, "pid": "8079", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271438436"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:29:07.300795 2024-07-17 09:29:37.561309 40decd89-eb6d-4ccd-a937-424590445c88 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/043187048"}, "pid": "8080", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/275775569"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:58.268924 2024-07-17 09:29:10.593087 477e2af8-8c73-4852-81cd-a0aae3231ec0 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040000079"}, "pid": "7984", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/031649424"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:45.080048 2024-07-17 09:29:10.84233 87f5e458-e883-4e41-b4c0-03d880741842 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040006956"}, "pid": "7816", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027218546"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:54.734823 2024-07-17 09:29:10.957758 beb83b1c-3bdd-438a-b41b-f13300d52e18 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040010287"}, "pid": "7944", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027501302"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:49.69494 2024-07-17 09:29:11.174919 f3e71a2f-de59-40b7-8cd4-183639c5028f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040013286"}, "pid": "7881", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027259285"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:47.422771 2024-07-17 09:29:11.422891 262e1e29-b49f-42ce-a98b-4cfa989fb4b0 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040022080"}, "pid": "7852", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027241912"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:52.852872 2024-07-17 09:29:11.513541 819fb867-2d6e-4040-b696-de8483106fa2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040022935"}, "pid": "7922", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027375412"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:29:11.738745 2024-07-17 09:29:11.738752 7604e1b5-9d43-4bfe-839b-0b02a66387cc {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040024024"}, "pid": "8092", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:02.11443 2024-07-17 09:29:12.163137 b0d23737-392b-4420-a16f-59e3c49aa8e7 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040046176"}, "pid": "8024", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271323590"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:54.274948 2024-07-17 09:29:12.378408 ea628519-68f7-4b36-b3c4-0838567d4b8a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040050440"}, "pid": "7939", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027443876"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:47.947689 2024-07-17 09:29:12.449219 5a370b78-8cd6-4f41-b49c-56ee2cabd35c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040054063"}, "pid": "7860", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/02725030X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:29:12.51539 2024-07-17 09:29:12.515399 6bd93c7c-f012-433f-b993-218fd14acff5 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040055744"}, "pid": "8093", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:28:56.516618 2024-07-17 09:29:12.696455 752f2c5d-44cf-47d9-9ce3-8b78edff540f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040057658"}, "pid": "7965", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027849414"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:29:13.277984 2024-07-17 09:29:13.277997 ce7547d7-3123-42db-ba1f-8b38fa101606 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/04009300X"}, "pid": "8094", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:13.369944 2024-07-17 09:29:13.369957 8fba6e58-3895-4d55-b48e-3f0fb9a0e4f0 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040093417"}, "pid": "8095", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:28:45.597992 2024-07-17 09:29:13.438709 0baae403-703b-49ae-bf6b-24ddb83d0ca0 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040099296"}, "pid": "7825", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027222950"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:49.603764 2024-07-17 09:29:13.60089 74625cdd-7708-4216-b849-48c44a6d363b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040118894"}, "pid": "7880", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027259234"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:56.600966 2024-07-17 09:29:13.950449 7c253601-0ffe-4df4-9f72-b5d2b167c113 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/04014500X"}, "pid": "7966", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/02788743X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:53.50644 2024-07-17 09:29:14.178234 0743122f-0743-415f-97bb-abc3ebd2ed73 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040149544"}, "pid": "7930", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027407918"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:46.14587 2024-07-17 09:29:14.546338 d311cd87-32f7-40f8-b726-112dd58001bb {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040181456"}, "pid": "7834", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027226794"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:29:14.749346 2024-07-17 09:29:14.749356 bbf04ed4-4ae4-4a65-a273-98ba9ab15560 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040183408"}, "pid": "8096", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:28:58.085532 2024-07-17 09:29:14.997046 03591be6-5794-4b0e-95fa-adccaa7d7efa {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040201384"}, "pid": "7982", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/030575257"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:29:15.600638 2024-07-17 09:29:15.600648 61081e58-7300-4c4b-81cb-bb682943f28e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/04024010X"}, "pid": "8097", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:28:49.881933 2024-07-17 09:29:16.080402 c27960b6-27b9-4ba4-94df-352304ad16e8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040284956"}, "pid": "7884", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027262162"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:29:16.29707 2024-07-17 09:29:16.29708 6298910a-99ce-4b60-8001-f1e420745997 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040288099"}, "pid": "8098", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:16.919649 2024-07-17 09:29:16.919658 2bfba8b8-d0a5-421d-a9ce-435d4792c3c5 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040296377"}, "pid": "8099", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:28:54.826523 2024-07-17 09:29:17.029306 894ec3b7-6432-4fa4-bd25-6091943f3813 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040300900"}, "pid": "7945", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027501418"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:29:17.26362 2024-07-17 09:29:17.263627 4f78a460-e41d-4a10-b2c1-fe5acfeca48e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040304817"}, "pid": "8100", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:17.637396 2024-07-17 09:29:17.637402 e54e43b9-cdfb-48f1-881d-806997f12c2c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040346919"}, "pid": "8101", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:17.717476 2024-07-17 09:29:17.717487 390073de-eb3d-4ec5-b05e-5dfdd6304adc {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040357422"}, "pid": "8102", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:28:53.41065 2024-07-17 09:29:17.935286 7b8dbd40-1ea6-4d50-aa8f-770ceba7ad5a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040367339"}, "pid": "7929", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027407012"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:29:18.029195 2024-07-17 09:29:18.029206 b680dcdf-56f8-4ecb-9d2d-3c017da2106d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040368114"}, "pid": "8103", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:18.216071 2024-07-17 09:29:18.216079 e0724d00-11ef-40ca-a383-d570444a0b4f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/04037372X"}, "pid": "8104", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:18.309475 2024-07-17 09:29:18.309487 b9660f65-c163-47f7-b29b-8e16df16c2dc {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040376044"}, "pid": "8105", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:28:47.269978 2024-07-17 09:29:18.59731 a35d1d3f-bf4b-4ee4-9933-de76e359b4e0 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040387887"}, "pid": "7850", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027239365"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:29:19.268729 2024-07-17 09:29:19.268741 2da4a4d6-6be7-447f-baf8-59d5c10b67c8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/04041146X"}, "pid": "8106", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:28:58.44908 2024-07-17 09:29:19.500447 2444ad77-a7e1-4af3-95cd-396b6f7dcead {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040417476"}, "pid": "7986", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/033640874"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:45.178282 2024-07-17 09:29:19.790004 11c855e7-2148-4207-98a8-99a61641ce75 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040424820"}, "pid": "7818", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027218597"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:29:20.074601 2024-07-17 09:29:20.074605 cc697ba9-24b7-4922-a8a1-121a987d6c89 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040425134"}, "pid": "8107", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:28:53.256715 2024-07-17 09:29:20.320854 4f8d90c2-c389-49e7-bde8-2960182a41e3 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040442578"}, "pid": "7927", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027401901"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:47.731976 2024-07-17 09:29:20.609374 a254c5e7-3b49-4c25-b53b-02c503804ee8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040446603"}, "pid": "7857", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027244520"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:55.355275 2024-07-17 09:29:20.917536 82b43024-ca9a-46b0-99d7-9d39b74eb4d0 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040467554"}, "pid": "7952", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027585190"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:50.616005 2024-07-17 09:29:21.028753 c393ede5-4a29-44f5-9a57-5d353bc40694 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040471942"}, "pid": "7893", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027264580"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:47.576882 2024-07-17 09:29:21.645414 86f5055e-f83b-49db-8ccb-b8d99e4514c6 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040504719"}, "pid": "7854", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/02724301X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:29:22.041075 2024-07-17 09:29:22.041084 415e82a1-1f7d-4ed6-84af-173a454941fb {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040516687"}, "pid": "8108", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:28:52.187492 2024-07-17 09:29:22.800267 d54133db-ab42-438c-bcfa-73c3a191b23d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040552098"}, "pid": "7914", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027350789"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:29:23.133025 2024-07-17 09:29:23.133036 a30ed19c-27a7-4f1d-b88d-7e47fee3307e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/04057749X"}, "pid": "8109", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:23.480321 2024-07-17 09:29:23.480328 1eb7bb15-fe5c-4492-98c7-3596a5e16091 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040594084"}, "pid": "8110", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:23.563123 2024-07-17 09:29:23.563225 c6e2ac12-c322-4eb0-ae38-1b86616c6be7 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/04060151X"}, "pid": "8111", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:23.662302 2024-07-17 09:29:23.662308 927b214e-98c7-4f62-a1ee-8d2134a3dbdc {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040604853"}, "pid": "8112", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:28:49.271439 2024-07-17 09:29:23.774664 c3001b08-1773-4268-bb5b-3a882785393b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040612066"}, "pid": "7876", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/02725349X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:51.392644 2024-07-17 09:29:24.084123 ebc8b577-8f70-4df2-90d8-9a89f3aa9dfd {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040644669"}, "pid": "7903", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027303063"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:29:24.199288 2024-07-17 09:29:24.199305 f6b3398c-4321-4a97-aa21-07ebd072130b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040657752"}, "pid": "8113", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:24.405865 2024-07-17 09:29:24.405873 a7af36e3-4ce0-43c1-a2b2-80cb7489e50e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040680223"}, "pid": "8114", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:31.893337 2024-07-17 09:29:31.893345 c9252475-3aff-456c-8069-97c31f3c1c87 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/041011848"}, "pid": "8129", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:28:56.871594 2024-07-17 09:29:24.536971 a66cd6c6-e222-4f09-941d-fd1693f62767 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/04068041X"}, "pid": "7969", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028179420"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:46.450443 2024-07-17 09:29:24.737523 4a3d5919-9242-4c94-8bc5-d11bfc6facdd {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040687899"}, "pid": "7838", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027228959"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:29:25.03159 2024-07-17 09:29:25.031601 93593fd1-bbdc-4b1f-96cd-608da1a5f185 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040693309"}, "pid": "8115", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:28:59.614168 2024-07-17 09:29:25.793895 08d5ba06-3b61-4dda-b1e1-4b051be37885 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040717003"}, "pid": "7999", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/150220200"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:29:26.212145 2024-07-17 09:29:26.212156 63a1b383-6b22-4ef3-9737-7dd69fa48411 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040738582"}, "pid": "8116", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:07.427889 2024-07-17 09:29:26.563815 6b2877f2-da2f-46c3-a942-deff04ae9f3a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040744256"}, "pid": "8082", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/276534921"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:47.097667 2024-07-17 09:29:26.67013 7e9d5988-78a8-4d75-97dc-2fed6e3e33b7 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040749002"}, "pid": "7848", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027237664"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:53.0719 2024-07-17 09:29:26.876513 2968eca3-c2b9-43f3-b8e8-fb76d34bcec6 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040753034"}, "pid": "7925", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027401421"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:29:27.214226 2024-07-17 09:29:27.214235 7e046151-dad3-42c7-82e0-4ebc25ac242c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040754766"}, "pid": "8117", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:28:54.922982 2024-07-17 09:29:27.578199 46d447eb-193e-455b-9b11-0ae005b69570 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040757277"}, "pid": "7946", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027502333"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:57.916711 2024-07-17 09:29:28.48629 c9a44819-2481-4dda-86a8-06eca5a3557d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040774678"}, "pid": "7980", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/029805287"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:46.733017 2024-07-17 09:29:28.920669 72574c6f-4516-4b7a-a509-433c2500577e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040785416"}, "pid": "7843", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027234002"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:52.803336 2024-07-17 09:29:29.896762 4655da0b-fa7d-4e96-a623-a8fc0818487d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040794865"}, "pid": "7921", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027375080"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:51.061175 2024-07-17 09:29:29.968482 5edab227-2995-4f88-a4e1-40f463564e35 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040794873"}, "pid": "7899", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027283518"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:29:30.068927 2024-07-17 09:29:30.068932 735d99c2-70c2-4bf0-ab69-5b89cbd90015 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040794903"}, "pid": "8118", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:30.150583 2024-07-17 09:29:30.150595 b919c86a-e2fd-43fd-8407-17cb95770ff9 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040802558"}, "pid": "8119", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:28:58.766903 2024-07-17 09:29:30.358725 885d347f-bac7-4946-9b49-898883ff1a10 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040804003"}, "pid": "7989", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/085560839"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:29:30.445333 2024-07-17 09:29:30.445339 dd0b3447-1cec-4988-b664-c407d95c7b51 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040805905"}, "pid": "8120", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:30.642949 2024-07-17 09:29:30.642962 bc882ff9-9909-4531-8b7e-f254e0d4ee96 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040865622"}, "pid": "8121", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:30.739051 2024-07-17 09:29:30.739062 b5ba27e3-fbb1-4841-a081-c812c12d64bd {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040873862"}, "pid": "8122", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:30.91965 2024-07-17 09:29:30.919653 487365b0-cfee-4ed9-a99e-b6c07f017b1f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040912833"}, "pid": "8123", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:31.270174 2024-07-17 09:29:31.270181 abb36182-683a-4502-90a4-0a961ac7bbc7 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040952789"}, "pid": "8124", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:31.348625 2024-07-17 09:29:31.348633 c049b67e-1e1e-428d-a0fe-ef07e7f21549 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040956075"}, "pid": "8125", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:31.446751 2024-07-17 09:29:31.44676 532fd32a-922e-4d43-b7bb-93a99e20eba2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040957977"}, "pid": "8126", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:31.542172 2024-07-17 09:29:31.542184 9dae8e4e-377b-44cb-9dab-a35f311b5b4c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040967689"}, "pid": "8127", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:31.648639 2024-07-17 09:29:31.648651 097f6272-adce-4d08-b926-dc25630995c6 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040994716"}, "pid": "8128", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:00.09759 2024-07-17 09:29:31.779381 79aeba74-e1b1-4eb7-8858-c21bfee8af6e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040995623"}, "pid": "8004", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/198231288"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:29:32.271179 2024-07-17 09:29:32.271189 bcd36c06-0058-48b0-ba74-520cb6f0215f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/041058445"}, "pid": "8130", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:32.387887 2024-07-17 09:29:32.387896 dcdc13a8-af78-47f9-bb90-f762fc1adb3a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/04106125X"}, "pid": "8131", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:32.4924 2024-07-17 09:29:32.492413 9c25eb8e-00e2-491e-b6c3-97d68fbf4b2c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/041063368"}, "pid": "8132", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:32.744322 2024-07-17 09:29:32.744333 7a474aec-5296-4b44-8e6b-1f9fe1be5ad8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/041084675"}, "pid": "8133", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:32.86366 2024-07-17 09:29:32.863672 195c38ea-54b5-4444-9d83-e4c8a8c0e924 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/041087828"}, "pid": "8134", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:32.990136 2024-07-17 09:29:32.990139 7a558dff-e103-4e86-b51d-bcc4fcf6962b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/041112504"}, "pid": "8135", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:28:59.421563 2024-07-17 09:29:33.146949 11cceb69-d688-40f0-b99e-81a654cfbdf2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/041152077"}, "pid": "7997", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/144820072"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:29:33.287161 2024-07-17 09:29:33.28717 c4812c13-b26d-40d7-9213-dbaac234bc2d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/041154282"}, "pid": "8136", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:33.40935 2024-07-17 09:29:33.409362 394d1ae8-3676-4326-90cc-d3e09cdcee12 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/041167163"}, "pid": "8137", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:33.993227 2024-07-17 09:29:33.99323 3dfbd367-5b71-40e7-a6b0-010f4d55d0c2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/041192443"}, "pid": "8138", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:34.043771 2024-07-17 09:29:34.043774 87baff43-aa7f-4e77-9c09-a0f715016411 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/041194152"}, "pid": "8139", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:28:55.192768 2024-07-17 09:29:34.115939 364f248c-feba-48c6-b86e-e4ae660dc918 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/041196058"}, "pid": "7950", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/02754785X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:28:49.792503 2024-07-17 09:29:34.266609 ce66f74f-91b6-4f23-a665-64d0ae8708b1 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/041294688"}, "pid": "7883", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027259978"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:29:34.553169 2024-07-17 09:29:34.553178 a4e3f8d8-c8e5-472c-bc59-54275167bed3 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/041370538"}, "pid": "8140", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:34.639922 2024-07-17 09:29:34.63993 a2ab70cd-852c-4c28-adcf-71270e4a2e0b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/041401174"}, "pid": "8141", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:34.807808 2024-07-17 09:29:34.807816 05f5e5c7-b1f9-44f4-aa3a-f6e399164501 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/042005450"}, "pid": "8142", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:34.894782 2024-07-17 09:29:34.894794 37082eae-dc7c-424c-a353-9fbb820bdc88 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/042209927"}, "pid": "8143", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:35.002511 2024-07-17 09:29:35.002522 fe8f78be-1797-4f7d-9d7a-160148c22d10 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/042236037"}, "pid": "8144", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:35.088694 2024-07-17 09:29:35.088698 99c1d6bc-9da4-4103-8a20-23b10fd7359d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/042244943"}, "pid": "8145", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:35.210448 2024-07-17 09:29:35.210458 a66ad38b-05ef-4198-8b44-c5d5dc4a05c0 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/042260213"}, "pid": "8146", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:35.331755 2024-07-17 09:29:35.331764 df666c98-6dd9-4acc-9d25-25e702da4a56 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/042299004"}, "pid": "8147", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:35.442856 2024-07-17 09:29:35.442866 9759e314-042c-4129-857d-1751549b4200 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/042387175"}, "pid": "8148", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:35.563376 2024-07-17 09:29:35.563394 6a482753-cbea-4269-87c4-63e9fed2aec4 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/042400228"}, "pid": "8149", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:35.641084 2024-07-17 09:29:35.641093 206dd821-a8f0-4704-884c-03558fa2ba7b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/042477247"}, "pid": "8150", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:35.745702 2024-07-17 09:29:35.745711 c7cdbcf3-2037-4603-914a-156a62f6c313 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/042490448"}, "pid": "8151", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:35.859325 2024-07-17 09:29:35.859337 c3c2fbe1-f677-4f35-bf4a-18659f1d691c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/042492777"}, "pid": "8152", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:36.091783 2024-07-17 09:29:36.091787 d4998f79-8676-4ce6-b0fa-6e23034d2025 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/042553628"}, "pid": "8153", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:36.168531 2024-07-17 09:29:36.168542 cb603d71-3bef-4343-9d51-fe649118c848 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/042567874"}, "pid": "8154", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:36.261881 2024-07-17 09:29:36.261884 ffd72bfb-8d34-4bd2-a093-5cd299dbea0d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/042602564"}, "pid": "8155", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:36.344432 2024-07-17 09:29:36.34444 c43c7426-e013-46a9-8b0b-7f5e3391837d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/042627494"}, "pid": "8156", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:36.565076 2024-07-17 09:29:36.565085 8bd0b8ab-68f1-4b1f-87f7-8c69ad21373b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/042778352"}, "pid": "8157", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:36.65648 2024-07-17 09:29:36.656487 7bd27136-0845-4614-9b6b-bf9157b67a83 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/042788714"}, "pid": "8158", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:36.762455 2024-07-17 09:29:36.762466 5031e719-21be-40c1-abdf-13d8e0ee4c48 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/042939526"}, "pid": "8159", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:36.970584 2024-07-17 09:29:36.970595 d07b42b0-f3db-4a5a-88ec-ef14ffcd2cfc {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/042939550"}, "pid": "8160", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:37.152378 2024-07-17 09:29:37.152382 2d8e7dd0-959e-4632-8913-4416ec14eac7 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/042976200"}, "pid": "8161", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:37.251047 2024-07-17 09:29:37.251056 455f7c3b-128d-4312-a06f-e6f9f9d68a66 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/043138764"}, "pid": "8162", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:37.411002 2024-07-17 09:29:37.411013 2ff35469-cdb1-4cfd-ba3b-7ae8aa31d328 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/043151019"}, "pid": "8163", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:37.680359 2024-07-17 09:29:37.680368 a04df205-57f4-4ffa-ae61-1fdccc5b5c52 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/043225608"}, "pid": "8164", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:37.778559 2024-07-17 09:29:37.778569 ad36d40d-cf2f-40d6-93e8-dc47e71b234e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/043244793"}, "pid": "8165", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:37.894755 2024-07-17 09:29:37.894767 d8e7ad44-2cb3-41ac-9671-9d9cd9025454 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/050039350"}, "pid": "8166", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:38.012356 2024-07-17 09:29:38.012365 db7e2b57-4f8b-4080-89bb-e31e5a74f5af {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/050133039"}, "pid": "8167", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:38.11411 2024-07-17 09:29:38.114121 ed3a5184-38a9-4df6-b4a3-bbb5f47df012 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/050551604"}, "pid": "8168", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:38.175368 2024-07-17 09:29:38.175371 27ca584c-035a-489a-8375-bfa4adb1ce59 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1001762630"}, "pid": "8169", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:38.223513 2024-07-17 09:29:38.223516 d528c91f-9c12-4438-b723-0d0baa301c7b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1002427517"}, "pid": "8170", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:38.301358 2024-07-17 09:29:38.301368 a9a4b9ce-7aa0-4ac9-8dc8-ed1c83ad3979 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1008073997"}, "pid": "8171", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:38.398266 2024-07-17 09:29:38.398274 fec74270-59e7-432e-b2d2-f7443ee42d37 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1009707922"}, "pid": "8172", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:38.501386 2024-07-17 09:29:38.501396 a92cedd3-36fb-4947-b661-7262f16cac9f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1009847430"}, "pid": "8173", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:38.597527 2024-07-17 09:29:38.597534 902febd9-58e2-4c46-911a-3d504448e9a0 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1010249460"}, "pid": "8174", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:38.698425 2024-07-17 09:29:38.698435 4531fe51-6440-43a6-8f46-30d036febbb4 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1010438603"}, "pid": "8175", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:38.777823 2024-07-17 09:29:38.777836 ffe9d265-c9ff-4e76-8e7a-b2b5f81f34c0 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1011060752"}, "pid": "8176", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:38.894027 2024-07-17 09:29:38.894039 96512d62-d3c5-4bea-a711-3cc19c8b7c15 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1016112106"}, "pid": "8177", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:39.010668 2024-07-17 09:29:39.010677 aa94dc53-153c-4026-bb42-4547f7b1c1d0 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1020865237"}, "pid": "8178", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:39.123407 2024-07-17 09:29:39.123417 8ca3c94e-5b3c-4673-a84b-d18be2768b3a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1020865318"}, "pid": "8179", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:39.209007 2024-07-17 09:29:39.209009 3397dd62-e54d-48aa-b733-ba358db9bbd8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1020897236"}, "pid": "8180", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:39.272126 2024-07-17 09:29:39.272136 0b2d2bbc-980b-426f-b11f-45b21d5fb2d8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1020897325"}, "pid": "8181", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:39.36122 2024-07-17 09:29:39.361229 cb99a80f-5e7e-4073-b7ca-829d9600abe2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1020911026"}, "pid": "8182", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:39.462647 2024-07-17 09:29:39.462656 b3587eeb-8532-431e-b34b-1fd0e265796d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1020911344"}, "pid": "8183", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:39.581233 2024-07-17 09:29:39.581243 f6da70bf-9872-4055-8b60-14c50303ab34 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1020911387"}, "pid": "8184", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:39.699111 2024-07-17 09:29:39.699122 3833f914-c058-4c55-bc93-15e41cd0e329 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1021056154"}, "pid": "8185", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:39.823729 2024-07-17 09:29:39.823736 4607e25f-f209-4b91-8cfe-e08f53eb40a4 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1021112216"}, "pid": "8186", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:39.930721 2024-07-17 09:29:39.930729 5734600a-9a9c-4925-9e36-a62b7dc9fa7e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1021112518"}, "pid": "8187", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:40.027868 2024-07-17 09:29:40.027878 5ff7ca21-aa8c-4370-af95-ea3a64080a49 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1021112577"}, "pid": "8188", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:40.140338 2024-07-17 09:29:40.140355 48f06339-c550-415a-837c-e37d253a3600 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1021113018"}, "pid": "8189", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:40.211888 2024-07-17 09:29:40.211891 0f57eadf-acdb-4c11-90d4-eeee2bd12fa1 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1021396656"}, "pid": "8190", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:40.267138 2024-07-17 09:29:40.267142 cf389d94-75d7-4cc2-9eba-93c6a02a6248 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1024812693"}, "pid": "8191", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:40.3454 2024-07-17 09:29:40.345404 192f8cb0-06ff-48c6-85e7-5bbed1ab07e3 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1028231660"}, "pid": "8192", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:40.445318 2024-07-17 09:29:40.445326 cf495513-c427-4fe1-aaa5-0ff514cbe70f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1029388334"}, "pid": "8193", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:40.557627 2024-07-17 09:29:40.557638 4b394770-d98d-4986-9ba4-2c961e90b846 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1029389233"}, "pid": "8194", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:40.659829 2024-07-17 09:29:40.65984 b10792ee-c0af-44fc-88e7-84223e0a98ab {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1029389896"}, "pid": "8195", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:40.789723 2024-07-17 09:29:40.789734 5e594b52-980e-43f1-9723-19fd9dc01ed9 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1031571922"}, "pid": "8196", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:40.902554 2024-07-17 09:29:40.902567 9a841c07-7fb6-437e-bb7a-1d88cd15f8b9 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1032436034"}, "pid": "8197", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:41.009328 2024-07-17 09:29:41.009333 2bffdbef-fb74-47c6-96e2-07a42d326708 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1035487640"}, "pid": "8198", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:41.116721 2024-07-17 09:29:41.11673 c73f3405-c301-4047-b411-b77b8bcaa6b6 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1036573141"}, "pid": "8199", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:41.213642 2024-07-17 09:29:41.213651 c03719a8-1200-43a8-9858-97ca77dbda86 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1036912949"}, "pid": "8200", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:41.272792 2024-07-17 09:29:41.272795 a465f53b-b414-44f2-95e1-de4119d2ccd5 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1038831628"}, "pid": "8201", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:41.331852 2024-07-17 09:29:41.331856 d1ee7dd4-8b30-4886-bfdc-448c6d3b16ed {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1044268069"}, "pid": "8202", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:41.41694 2024-07-17 09:29:41.416952 6a16bad5-b3d9-4b18-8e70-b04d39971947 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1051746663"}, "pid": "8203", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:41.544881 2024-07-17 09:29:41.54489 87288845-9cd2-4b9b-bf55-c3f7553326ec {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1053460856"}, "pid": "8204", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:41.66344 2024-07-17 09:29:41.663451 10d22822-a6d7-4541-92c9-60dc916148f0 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1053495382"}, "pid": "8205", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:41.790238 2024-07-17 09:29:41.790255 66c76f56-bf3c-468d-a358-853e83a4f076 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1053578571"}, "pid": "8206", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:41.903434 2024-07-17 09:29:41.903445 814b0980-6751-440e-b76e-a3cfede61225 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1053585039"}, "pid": "8207", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:42.004247 2024-07-17 09:29:42.004255 51746cf7-1dd4-4c0a-b6fb-f87c67a4e8f2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/105366916X"}, "pid": "8208", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:42.108708 2024-07-17 09:29:42.108717 eed21303-7876-4e4b-b435-e57820e43a1e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1053694857"}, "pid": "8209", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:42.23196 2024-07-17 09:29:42.231963 51bf08ba-b36f-4c0d-bcf7-19ca2c9f8024 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1053733119"}, "pid": "8210", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:42.285187 2024-07-17 09:29:42.285191 a04a6045-709a-4536-a11f-a84d4178b380 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/105382467X"}, "pid": "8211", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:42.334933 2024-07-17 09:29:42.334937 463b6052-6fca-4f13-8a9e-f64feaa242b0 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1054036322"}, "pid": "8212", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:42.407904 2024-07-17 09:29:42.407909 6394295f-6bb2-4f75-9c0d-99e28cc86552 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1054036489"}, "pid": "8213", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:42.497379 2024-07-17 09:29:42.497389 4c42e16f-3b2a-4b79-9562-4cd8d0bc1c9e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1054382255"}, "pid": "8214", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:42.596658 2024-07-17 09:29:42.596666 a7c95de1-2248-4811-84d6-42ce513f4491 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1054442959"}, "pid": "8215", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:42.680496 2024-07-17 09:29:42.680507 36d9bd6a-7fe9-405d-a28f-26f7ef53440c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1054611041"}, "pid": "8216", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:42.769153 2024-07-17 09:29:42.769166 854dcdd9-b727-4422-8365-55cf69feb803 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1054631026"}, "pid": "8217", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:42.866344 2024-07-17 09:29:42.866351 9b2c5bad-8faf-48a5-bb23-d6d87ded414e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1054961824"}, "pid": "8218", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:42.969483 2024-07-17 09:29:42.969492 90cab630-44e2-434e-b0e4-9f27d429a3fb {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1055068716"}, "pid": "8219", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:43.063199 2024-07-17 09:29:43.063206 80aa20b9-eff0-4415-8794-448f4d33f4fe {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1056973714"}, "pid": "8220", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:43.16172 2024-07-17 09:29:43.161731 62458552-b7d4-45d7-9308-ed45831817f3 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1057942928"}, "pid": "8221", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:43.275147 2024-07-17 09:29:43.27515 08024bc1-372e-4661-9abf-74d36d02b0ea {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058041142"}, "pid": "8222", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:43.329569 2024-07-17 09:29:43.329572 030a24b7-0bb6-42a0-bba8-13cf46ce1d64 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058395726"}, "pid": "8223", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:43.403524 2024-07-17 09:29:43.403535 c55afe5c-59d9-4050-bd4f-5b365effcf18 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058460293"}, "pid": "8224", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:43.48529 2024-07-17 09:29:43.485299 d2b25c74-2697-43bf-ac39-251bee1a82c0 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058460862"}, "pid": "8225", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:43.584901 2024-07-17 09:29:43.584911 0c30e1f9-5bb0-4f01-a0bf-403fe24e30fa {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058463896"}, "pid": "8226", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:43.678505 2024-07-17 09:29:43.678516 44f688da-5cf7-417b-9424-fd042ad158d8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058463993"}, "pid": "8227", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:43.775783 2024-07-17 09:29:43.775792 5c97e777-e03b-4d78-958e-58b69425687a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058579045"}, "pid": "8228", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:43.878854 2024-07-17 09:29:43.878863 599bb753-c707-4073-a0a3-b5fe16fcc1a5 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058583018"}, "pid": "8229", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:43.979915 2024-07-17 09:29:43.979925 db8b7d85-7f91-4def-bb10-ba5fe58c859e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058616579"}, "pid": "8230", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:44.081957 2024-07-17 09:29:44.081967 f60c3409-d113-4783-a890-e3476586159b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058616684"}, "pid": "8231", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:44.18184 2024-07-17 09:29:44.181853 7eda8137-b5a2-4b2e-80bf-23fb849dcb48 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058622773"}, "pid": "8232", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:44.278474 2024-07-17 09:29:44.278481 28c9a9b5-cd7c-4692-87ea-82a318dda5e8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/105863982X"}, "pid": "8233", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:44.360782 2024-07-17 09:29:44.360786 addc00be-8fed-45da-99e2-e857e67ef773 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058639919"}, "pid": "8234", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:44.416362 2024-07-17 09:29:44.416372 0ad6a859-a17e-4303-b16c-c78a9662ea68 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058651994"}, "pid": "8235", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:44.530173 2024-07-17 09:29:44.530179 18d736c1-d359-4a69-9df0-4c95f05ea65c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058661396"}, "pid": "8236", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:44.611984 2024-07-17 09:29:44.611992 636c67c4-f89b-4b6c-9a42-3c235ab03ae9 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058664468"}, "pid": "8237", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:44.699842 2024-07-17 09:29:44.69985 55a289e6-3458-4191-a52b-98ec4c049318 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058667343"}, "pid": "8238", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:44.787499 2024-07-17 09:29:44.787538 37fe7890-c3f8-4746-abdd-8c102286e77c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058838512"}, "pid": "8239", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:44.900665 2024-07-17 09:29:44.900674 61c5f272-4771-4f58-a68b-6daa20c87c1f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058840819"}, "pid": "8240", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:44.996805 2024-07-17 09:29:44.996814 8539ee6d-1f6e-4676-962c-bbc96c539042 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058876872"}, "pid": "8241", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:45.100038 2024-07-17 09:29:45.100051 1808fd42-72e2-4688-a1dd-f2dad94bbb69 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058880373"}, "pid": "8242", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:45.210822 2024-07-17 09:29:45.210831 7715c4dd-2116-47ac-801d-6fe425f26d1f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058890611"}, "pid": "8243", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:45.307832 2024-07-17 09:29:45.30784 31a84031-b9da-4f49-b94d-d44e2d6d6401 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058896318"}, "pid": "8244", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:45.391516 2024-07-17 09:29:45.391521 e0055a89-cc87-4978-b12f-175f02e81e66 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058899597"}, "pid": "8245", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:45.480578 2024-07-17 09:29:45.480583 9c44f72e-73f8-4516-ada1-9294e39a5db4 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058918176"}, "pid": "8246", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:45.591509 2024-07-17 09:29:45.591535 134aafd4-c9b3-4471-bf81-052dd1f8dc60 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058919954"}, "pid": "8247", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:45.70418 2024-07-17 09:29:45.704189 fd946dcb-0f3b-4f48-8196-91cbe12d319e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058928732"}, "pid": "8248", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:45.826901 2024-07-17 09:29:45.826905 b92c23fa-5256-42d9-b0ff-a8198c0dcf82 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/105892978X"}, "pid": "8249", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:45.927332 2024-07-17 09:29:45.927343 4667c9c4-80f8-44a7-a44a-4dabfaca7a8e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058939068"}, "pid": "8250", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:46.030901 2024-07-17 09:29:46.03091 5a54d7d2-22b7-4f6f-b204-1d37dadc3fe8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058973045"}, "pid": "8251", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:46.139915 2024-07-17 09:29:46.139924 f2bbb999-fc8e-4864-b81b-438a43352ae2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058984144"}, "pid": "8252", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:46.255534 2024-07-17 09:29:46.25554 0d27f153-9496-4919-b666-9b2d120f107f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058985299"}, "pid": "8253", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:46.354001 2024-07-17 09:29:46.354005 3c09aeab-28bd-441f-92e7-26a99ee6d9f5 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058986333"}, "pid": "8254", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:46.403077 2024-07-17 09:29:46.40308 5a0f8509-690b-42dc-8f04-ea4bcf81114d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058994743"}, "pid": "8255", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:46.450457 2024-07-17 09:29:46.450461 c956b85c-ece1-44df-977f-ab69e41e2cf1 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/105914249X"}, "pid": "8256", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:46.53461 2024-07-17 09:29:46.534621 68ce87cf-976f-495b-8ea1-892c28e591e2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1059250454"}, "pid": "8257", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:46.628691 2024-07-17 09:29:46.628703 dc4130db-9d4e-43c6-86fe-8bbb9566c49f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1059357755"}, "pid": "8258", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:46.712278 2024-07-17 09:29:46.712287 ccf77863-245d-401f-b435-ec51fde5d78e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1059359022"}, "pid": "8259", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:46.819636 2024-07-17 09:29:46.819644 d3e5deec-b9a7-4fee-80df-0d5d0b274505 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1059376946"}, "pid": "8260", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:46.931811 2024-07-17 09:29:46.931822 f165fd3e-82a5-4905-bf3c-b3274ba3e443 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1059378396"}, "pid": "8261", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:47.052257 2024-07-17 09:29:47.052268 f5a5c3ff-b0a0-4bae-86db-19ceae4630f5 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1059448831"}, "pid": "8262", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:47.153001 2024-07-17 09:29:47.153011 2c219e3a-b2a0-4ec9-bfcf-366ac4fc1ba4 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1060087367"}, "pid": "8263", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:47.260426 2024-07-17 09:29:47.260432 46d8654f-bd31-424a-be34-9627b7bda2ba {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1060132206"}, "pid": "8264", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:47.369136 2024-07-17 09:29:47.369141 12d13925-739f-4c2f-ba34-d805fd0a1b5d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1060238128"}, "pid": "8265", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:47.422393 2024-07-17 09:29:47.422398 b690aa26-f9e2-4aed-a514-eadd3fd343f0 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1060401134"}, "pid": "8266", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:47.483913 2024-07-17 09:29:47.483917 95b5d79d-af37-4933-9d94-9529feec48e2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1060419319"}, "pid": "8267", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:47.587965 2024-07-17 09:29:47.587985 8aa366fe-703c-4fa6-8e3e-877ce7f82db9 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/106050104X"}, "pid": "8268", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:47.707388 2024-07-17 09:29:47.707414 6412979e-09f7-4d3b-9efb-652e99674fdb {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1060501457"}, "pid": "8269", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:47.809764 2024-07-17 09:29:47.809772 bf467786-8a4a-4637-b185-f5ba7a19b623 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1060501759"}, "pid": "8270", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:47.919168 2024-07-17 09:29:47.919179 76ef558e-dc92-481a-8cce-9f2542fcfeca {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1060501902"}, "pid": "8271", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:48.02393 2024-07-17 09:29:48.023945 a0863cc4-eb5c-455d-8985-e1391ff30de8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/106050216X"}, "pid": "8272", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:48.136671 2024-07-17 09:29:48.13668 508daa05-a6ec-41af-b7a6-861998b5cd4d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1060502372"}, "pid": "8273", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:48.235085 2024-07-17 09:29:48.235089 6cbbb1ee-6c5f-473b-8887-4d655ce3afe7 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1060502585"}, "pid": "8274", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:48.326099 2024-07-17 09:29:48.326106 f0939abe-f6ee-4b86-8831-6e8ad8239434 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1060502682"}, "pid": "8275", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:48.406413 2024-07-17 09:29:48.406416 47524b92-b90a-4299-a7e7-50828d5c85da {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1060502798"}, "pid": "8276", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:48.457718 2024-07-17 09:29:48.457722 7c3fde12-e7d0-4273-ac7c-81c638bb9181 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1060503166"}, "pid": "8277", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:48.54104 2024-07-17 09:29:48.541047 581085d6-2f73-4fe2-96bd-24b823a82d17 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1060503611"}, "pid": "8278", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:48.640021 2024-07-17 09:29:48.640032 61d19827-a80f-4192-bad9-db683ca217c0 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/106081482X"}, "pid": "8279", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:48.736376 2024-07-17 09:29:48.736386 d94063ef-aa4d-436c-a347-566ebc328ba2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1060849127"}, "pid": "8280", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:48.835039 2024-07-17 09:29:48.835047 2e85e77c-ed89-4544-bf7a-61d61f7a64d8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1061004198"}, "pid": "8281", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:48.926666 2024-07-17 09:29:48.926676 682d8422-582c-4396-bb3d-4656861d747c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1062516109"}, "pid": "8282", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:49.008748 2024-07-17 09:29:49.008757 d4c503b0-af33-4206-bcbe-d5659d34457d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1062531191"}, "pid": "8283", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:49.100708 2024-07-17 09:29:49.100716 49e83a0a-fbfd-4b6b-b9c6-385dba590eb1 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1062891848"}, "pid": "8284", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:49.202407 2024-07-17 09:29:49.202417 727f9ff4-12b9-469f-b7bc-22d71b5c375e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1062970004"}, "pid": "8285", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:49.306704 2024-07-17 09:29:49.306713 e5e8a2fc-46a3-4479-a09c-74b2591420a4 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1062979583"}, "pid": "8286", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:49.417085 2024-07-17 09:29:49.417091 6cb8a186-d4e6-485b-ae57-eca8cbe39823 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1064049419"}, "pid": "8287", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:49.483843 2024-07-17 09:29:49.483848 fc982b1c-ea76-4198-bf71-91a49399114d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1064601502"}, "pid": "8288", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:49.563102 2024-07-17 09:29:49.563108 801a49c7-8de7-45ab-8abf-a76834eda0d4 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1064714455"}, "pid": "8289", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:49.654701 2024-07-17 09:29:49.65471 9055687a-5d36-4024-91c9-1381a0682573 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1064960243"}, "pid": "8290", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:49.748073 2024-07-17 09:29:49.74808 379bfa73-5e86-418a-a321-7196eb7bc692 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1067272488"}, "pid": "8291", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:49.840201 2024-07-17 09:29:49.840212 af595d25-d44d-4ed1-9bba-e96dc078f7c1 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1067274006"}, "pid": "8292", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:49.989219 2024-07-17 09:29:49.98923 ad7ffbdf-dcdd-48de-a5ca-bfe623546a9f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1067636757"}, "pid": "8293", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:50.094952 2024-07-17 09:29:50.094963 442f2c0c-9597-4c4f-acae-176b49247156 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1067637184"}, "pid": "8294", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:50.194148 2024-07-17 09:29:50.194185 05236d78-0977-4a38-9716-bf07c363bae5 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1067860142"}, "pid": "8295", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:50.295285 2024-07-17 09:29:50.295296 381d308a-1a85-4474-8edd-25484305b970 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1067878831"}, "pid": "8296", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:50.409388 2024-07-17 09:29:50.409399 5f9f87ae-28ef-475d-8d0b-a9a7abb37ed6 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1067883703"}, "pid": "8297", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:50.493163 2024-07-17 09:29:50.493167 47c678cf-de10-4852-8dc9-fb5fb1ec137e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1068118490"}, "pid": "8298", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:50.552635 2024-07-17 09:29:50.55265 fdf7e1b1-e392-497d-81e1-905ab5b43b61 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1069803782"}, "pid": "8299", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:50.665883 2024-07-17 09:29:50.665892 39e17ace-aeb4-40cf-b7d6-0199c382a96f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1070113026"}, "pid": "8300", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:50.778753 2024-07-17 09:29:50.778769 1b96229f-4456-4bd5-924d-4956f98ef0bd {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1071862391"}, "pid": "8301", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:50.998662 2024-07-17 09:29:50.998673 161cb5b2-8718-42f7-8bcd-1ad183b9de26 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1071872435"}, "pid": "8302", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:51.114259 2024-07-17 09:29:51.114269 337ba210-7cdf-464f-b934-7e1a8b382026 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/107283314X"}, "pid": "8303", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:51.224828 2024-07-17 09:29:51.224838 45272a20-4f69-4878-bc48-c1548f4722a2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1073267830"}, "pid": "8304", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:51.340253 2024-07-17 09:29:51.340262 f45bb8b8-62ae-47b1-b6ce-4fce803eed23 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/107362062X"}, "pid": "8305", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:51.470521 2024-07-17 09:29:51.470532 bcfcae75-3a7b-47cd-a10d-535e1e46c83f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1073724549"}, "pid": "8306", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:51.545899 2024-07-17 09:29:51.545903 61a14950-17de-4fcc-8ca6-b526b2c3aa87 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/107373157X"}, "pid": "8307", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:51.636438 2024-07-17 09:29:51.636445 f126961a-8adb-45a7-8594-a30adfd5eed0 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1073950220"}, "pid": "8308", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:51.710796 2024-07-17 09:29:51.710804 3b9adc23-4d25-4a00-ab3e-337ff074d21f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/107399077X"}, "pid": "8309", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:51.805331 2024-07-17 09:29:51.805338 c0401d39-e3c5-4ca9-a862-8380187b76d0 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1074316908"}, "pid": "8310", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:51.932249 2024-07-17 09:29:51.932259 a874b311-ca3d-4a93-849d-5a022418d6cc {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1074377397"}, "pid": "8311", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:52.036639 2024-07-17 09:29:52.036646 bc168944-928b-4fea-997f-e230255adc9c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1075220467"}, "pid": "8312", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:52.156542 2024-07-17 09:29:52.156549 8dd4f5bb-a927-457b-bf61-ef3edc7d2147 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1075827361"}, "pid": "8313", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:52.277569 2024-07-17 09:29:52.277577 7d1d8cbc-37e9-4ac4-9512-94dad46e98ee {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1076027032"}, "pid": "8314", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:52.398142 2024-07-17 09:29:52.398154 d2ed2ff1-4d95-4595-8489-50e8f7510278 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/107699847X"}, "pid": "8315", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:52.516445 2024-07-17 09:29:52.51645 3dcc5af4-5079-47fc-86cb-eb50b3922962 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1077053185"}, "pid": "8316", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:52.582841 2024-07-17 09:29:52.582847 aee1833d-540d-4396-8201-bc492a7d5c88 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1077053320"}, "pid": "8317", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:52.758469 2024-07-17 09:29:52.758481 d4057252-fb7a-479e-8792-a33aedda9c7a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1077893450"}, "pid": "8318", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:52.857957 2024-07-17 09:29:52.857967 d24e1a0d-5940-4aae-bc96-8ca207baa051 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1078131902"}, "pid": "8319", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:52.954774 2024-07-17 09:29:52.954785 9d087c12-4268-47cb-a77f-18fcc84a2f49 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1079568352"}, "pid": "8320", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:53.043704 2024-07-17 09:29:53.043708 38c06eac-b89f-4e27-84d7-c9c99ba55067 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1079692916"}, "pid": "8321", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:53.131315 2024-07-17 09:29:53.131323 d707ae11-17a8-494a-be3c-8b734a0ce658 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1081097930"}, "pid": "8322", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:53.259304 2024-07-17 09:29:53.25932 9ba7647c-60ff-4e59-8207-ff3aa34396f4 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1081212918"}, "pid": "8323", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:53.365084 2024-07-17 09:29:53.365098 4250b683-8eed-485b-8151-05b8e9774e94 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1081330236"}, "pid": "8324", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:53.49228 2024-07-17 09:29:53.492299 5dfbf293-1e2c-4bb5-b607-2344f776a86a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1081838051"}, "pid": "8325", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:53.580991 2024-07-17 09:29:53.580996 ede66d81-2ed1-448a-a141-c23b1464b2d8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1081838167"}, "pid": "8326", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:53.680945 2024-07-17 09:29:53.680954 69c4d820-3c9b-4fcc-80cf-6acf87f080f9 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1081838310"}, "pid": "8327", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:53.78267 2024-07-17 09:29:53.782674 70b4086d-4202-4236-b05e-0cf420d5861f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1081838396"}, "pid": "8328", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:53.862609 2024-07-17 09:29:53.862619 74633545-e556-41fc-b3e7-543789187fa8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1081838507"}, "pid": "8329", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:53.979457 2024-07-17 09:29:53.97946 c4970b17-c81a-40ac-8c9a-55aae284f157 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1081838655"}, "pid": "8330", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:54.084408 2024-07-17 09:29:54.084419 98fd5d6e-4cd9-437b-88ea-0cc9c763e736 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1081838779"}, "pid": "8331", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:54.18845 2024-07-17 09:29:54.188462 2e9c6763-3e06-4a33-99c1-f12a658eb5fd {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1081839082"}, "pid": "8332", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:54.312557 2024-07-17 09:29:54.312566 75a6fe3e-c005-4387-b07f-4c350ce27d04 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1081842474"}, "pid": "8333", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:54.410432 2024-07-17 09:29:54.410444 e0cf14d8-75cb-4f3d-8830-e8a9f5d727e4 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1081844973"}, "pid": "8334", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:54.517983 2024-07-17 09:29:54.518023 8d72061f-3618-4ab1-8ff1-32b198e2f408 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1081845031"}, "pid": "8335", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:54.608953 2024-07-17 09:29:54.608956 53a4c8ae-8406-4361-b4a9-6a8e55efb188 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1082001430"}, "pid": "8336", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:54.664155 2024-07-17 09:29:54.664158 8aa402f9-f6d7-4eb1-ab12-4ce892d0a1d3 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1082012033"}, "pid": "8337", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:54.778198 2024-07-17 09:29:54.778207 6969bd0e-a90c-4bc6-9099-bbfe2a95cdf4 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1082153850"}, "pid": "8338", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:54.879901 2024-07-17 09:29:54.879909 3f15a93a-edce-4397-9dd3-7138bfed35c1 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1082520101"}, "pid": "8339", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:54.971291 2024-07-17 09:29:54.971299 3b81c02e-6c97-457d-a862-66882c9358a3 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1082797251"}, "pid": "8340", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:55.075427 2024-07-17 09:29:55.075435 808d97d6-f491-4062-b174-e80314113ebe {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1085229823"}, "pid": "8341", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:55.240312 2024-07-17 09:29:55.240321 6721ba2f-b57f-43a2-a4bb-2278079ae8bd {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1095576461"}, "pid": "8342", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:55.441895 2024-07-17 09:29:55.441903 3450c111-fc4a-4de4-8be8-7d8c858adfff {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1097213617"}, "pid": "8343", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:55.629841 2024-07-17 09:29:55.629844 10c38e34-34c4-4d5e-bfed-2cf38e81803d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1099132061"}, "pid": "8344", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:55.778342 2024-07-17 09:29:55.778352 fc8ce7cd-cadb-429d-9e3e-778c8de16848 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1099133092"}, "pid": "8345", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:55.86877 2024-07-17 09:29:55.868779 0c5e8f49-b7e7-400c-a3c2-26aaa011e904 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1100201831"}, "pid": "8346", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:55.986344 2024-07-17 09:29:55.986353 7870b625-964f-4d72-99a6-742a1f653745 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1100323325"}, "pid": "8347", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:56.085813 2024-07-17 09:29:56.085819 d35071c1-396f-4966-a04d-c1e8bacfd3e7 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1101612258"}, "pid": "8348", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:56.178699 2024-07-17 09:29:56.178709 078bba56-040c-4871-9909-c4064163c0f4 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1105589110"}, "pid": "8349", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:56.267884 2024-07-17 09:29:56.267893 5f50ce6e-135e-487b-bd44-04e8ec86fa2e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1107605113"}, "pid": "8350", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:56.361308 2024-07-17 09:29:56.361319 c089d8e6-cc22-4d87-aba3-001e533b82be {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/112132925X"}, "pid": "8351", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:56.46429 2024-07-17 09:29:56.464298 aba60ff0-ab91-4980-ad43-483dd4b0019c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1122668171"}, "pid": "8352", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:56.562223 2024-07-17 09:29:56.562234 5f59dfe9-d8c7-4a35-9622-a82a5cea67c4 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1122747160"}, "pid": "8353", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:56.667045 2024-07-17 09:29:56.667049 767fc20b-e7a1-4f88-977d-9b3dfc341611 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1124279156"}, "pid": "8354", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:56.717911 2024-07-17 09:29:56.717915 815abc06-750f-4d65-80a1-8cbda66490e9 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1132227771"}, "pid": "8355", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:56.804785 2024-07-17 09:29:56.804796 faeaed5c-ea36-4c4a-afbc-7d0546bf8c03 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1133293247"}, "pid": "8356", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:56.894008 2024-07-17 09:29:56.894016 8e859311-f585-4081-8787-7894c504950a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1135798842"}, "pid": "8357", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:56.994512 2024-07-17 09:29:56.994523 9496d19d-41f0-4e54-ac76-924553a4a8f5 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1135805342"}, "pid": "8358", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:57.093188 2024-07-17 09:29:57.093201 023e3c86-7ee6-4b40-aa79-ab83ca9b4d44 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1136092293"}, "pid": "8359", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:57.186253 2024-07-17 09:29:57.186277 bbe9ec1e-bdfd-4e3e-ac6c-dd775c3b24f1 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1136731237"}, "pid": "8360", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:57.276657 2024-07-17 09:29:57.276666 249db53e-2afe-42da-b4d9-77a9a3498a48 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/113698612X"}, "pid": "8361", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:57.374759 2024-07-17 09:29:57.374766 dd050f5d-8dfc-4e9b-9d20-030d23cc8234 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/113914071X"}, "pid": "8362", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:57.473116 2024-07-17 09:29:57.473123 f533692a-8fac-454d-bf77-b0b9ac86a63e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1139463888"}, "pid": "8363", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:57.573733 2024-07-17 09:29:57.573742 76517b36-f24d-4b70-bf85-be8f95f1b937 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1142135993"}, "pid": "8364", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:57.678719 2024-07-17 09:29:57.67873 52104667-c2f2-4d83-9032-b7acf57752e8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1143154991"}, "pid": "8365", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:57.753395 2024-07-17 09:29:57.753399 f50fdccc-ab71-4be8-bcd8-ebe98c6355af {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1143714245"}, "pid": "8366", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:57.827691 2024-07-17 09:29:57.827703 43689e6e-5170-4c61-ac4a-fb8b964027a5 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1147654123"}, "pid": "8367", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:57.911374 2024-07-17 09:29:57.911381 7d24fd98-0df7-4275-b55b-3cc05b40ffff {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1148115242"}, "pid": "8368", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:58.007723 2024-07-17 09:29:58.007732 b3227d97-02a8-4909-b195-bada186669fd {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1156051029"}, "pid": "8369", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:58.115772 2024-07-17 09:29:58.115783 924ef3b5-5257-4ffa-a931-dd4b758e99b2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1156658128"}, "pid": "8370", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:58.230012 2024-07-17 09:29:58.230032 80367c57-0aef-4a28-9e87-5f1400dd42a9 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1161625046"}, "pid": "8371", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:58.310392 2024-07-17 09:29:58.3104 d3ade9b6-e589-44f8-9845-2c96bfecba59 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1161830820"}, "pid": "8372", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:58.402951 2024-07-17 09:29:58.40296 e9c84ed8-f7c9-4e06-8a26-46890d9ca63f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1163419907"}, "pid": "8373", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:58.494697 2024-07-17 09:29:58.494706 cd0f9e01-ffde-4379-9310-ee2aa125348a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1163558095"}, "pid": "8374", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:58.591685 2024-07-17 09:29:58.591698 b7c2c9b7-fedf-4e85-9dfe-47f418e268b6 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/116355815X"}, "pid": "8375", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:58.680276 2024-07-17 09:29:58.680286 dec5f104-3281-4947-a592-05cb2eb4bf0f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1164527657"}, "pid": "8376", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:58.771042 2024-07-17 09:29:58.771045 c2b97749-d6f4-4138-986f-9b3125ee5799 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1165597586"}, "pid": "8377", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:58.82899 2024-07-17 09:29:58.828993 0e87cf66-29e7-495f-90de-15a1eae6a81e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1166098877"}, "pid": "8378", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:58.933456 2024-07-17 09:29:58.933467 03c13d61-e14c-4f13-83b0-5a4ee0b28f60 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1166988007"}, "pid": "8379", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:59.024628 2024-07-17 09:29:59.024642 580d1945-8b5a-4c2c-9194-09d408d6af4e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1166988325"}, "pid": "8380", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:59.120385 2024-07-17 09:29:59.120396 8f524f63-76c5-43ee-9fa9-43b50df852d5 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1167335767"}, "pid": "8381", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:59.225901 2024-07-17 09:29:59.225907 e787c647-2563-4bb9-b34d-fdb3f37a3988 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1167694643"}, "pid": "8382", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:59.303235 2024-07-17 09:29:59.30325 ef3cf76b-2c54-425d-abe8-af8630d8f563 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1169805140"}, "pid": "8383", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:59.413126 2024-07-17 09:29:59.413135 6c9bd1e4-9dd1-4e85-b606-5a65b961b043 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1169805167"}, "pid": "8384", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:59.497589 2024-07-17 09:29:59.497598 fb478a35-0726-4b89-856c-0ab9b74de56a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1169806686"}, "pid": "8385", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:59.584521 2024-07-17 09:29:59.584529 9604fbba-a430-4edd-a828-2f6cdee1ea0f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1169806708"}, "pid": "8386", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:59.668055 2024-07-17 09:29:59.668064 e5a9791b-6bf8-4e6a-b9c9-4fcbc433b4db {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1171383401"}, "pid": "8387", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:59.75933 2024-07-17 09:29:59.75934 0ed7a7b2-a1d5-4820-9721-37c0fe9e2fb3 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1177087480"}, "pid": "8388", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:59.8097 2024-07-17 09:29:59.809704 b2232e1d-1b07-4edb-93ef-1ffc09023a46 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1177183811"}, "pid": "8389", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:59.857239 2024-07-17 09:29:59.857242 4022b611-1b63-4ed1-bc04-c0382c9ebc72 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1179502884"}, "pid": "8390", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:59.936799 2024-07-17 09:29:59.93681 1ebc6432-2ced-480f-9108-1b7aee548573 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1180620623"}, "pid": "8391", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:00.030256 2024-07-17 09:30:00.030259 bbec8101-e248-4b3a-8747-5ff16f28b589 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1180664485"}, "pid": "8392", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:00.110667 2024-07-17 09:30:00.110677 ab50b536-c8f6-4b59-9d86-6d92d95ef734 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1182704948"}, "pid": "8393", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:00.211496 2024-07-17 09:30:00.211505 065e39ae-dd6c-4871-9a46-7aefccdd1ec9 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1182916759"}, "pid": "8394", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:00.309943 2024-07-17 09:30:00.309955 6086716c-8b91-43c8-80f9-a3e9958d862c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1184428727"}, "pid": "8395", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:00.405263 2024-07-17 09:30:00.405271 5103006f-20dd-4fd3-96af-1a6376b6e377 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1184832803"}, "pid": "8396", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:00.508148 2024-07-17 09:30:00.508157 66d9fc4b-d51f-4f80-8876-772276e07f4a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1188738658"}, "pid": "8397", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:00.589441 2024-07-17 09:30:00.589451 154b2ed1-3309-4a69-8b4d-e0b9071ce037 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1189443015"}, "pid": "8398", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:00.6798 2024-07-17 09:30:00.679808 d11cf8f1-15d5-4367-a75b-3ebdf5064019 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1190328259"}, "pid": "8399", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:00.787274 2024-07-17 09:30:00.787285 568742d1-9556-4d1d-9d8f-b8466c0fa752 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1190333082"}, "pid": "8400", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:00.851973 2024-07-17 09:30:00.851976 94efc5e4-79e1-45bc-a000-bd5c4ef13f29 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1190333392"}, "pid": "8401", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:00.949608 2024-07-17 09:30:00.949617 87fe6e6f-840b-4f67-b037-361f139049df {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1191133729"}, "pid": "8402", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:01.045325 2024-07-17 09:30:01.045338 14b6645c-7833-459e-98bb-05dd04961063 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1192399013"}, "pid": "8403", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:01.148021 2024-07-17 09:30:01.148034 2ee7d65f-ae47-4c86-9f38-d75200c7e8a8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1197938001"}, "pid": "8404", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:01.245475 2024-07-17 09:30:01.245487 cb477c76-9392-423f-907b-af0c17240f06 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1203261837"}, "pid": "8405", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:01.342647 2024-07-17 09:30:01.342658 c58f219a-87a0-484f-967b-af916d777f08 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1206005505"}, "pid": "8406", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:01.463308 2024-07-17 09:30:01.463319 df6bc297-a067-43cd-a6c6-97c0240a66b8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1208649175"}, "pid": "8407", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:01.550051 2024-07-17 09:30:01.550065 42635355-7459-4707-8d71-7ee10aeb2126 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1215862520"}, "pid": "8408", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:01.643258 2024-07-17 09:30:01.643271 174b03c3-a9d2-4dab-89d1-b79457350694 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1219234621"}, "pid": "8409", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:01.7481 2024-07-17 09:30:01.748109 50db04b3-705d-433c-88ad-e7a097e52bef {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1222199440"}, "pid": "8410", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:01.861049 2024-07-17 09:30:01.861051 72764a78-9c8a-42e2-aed9-ba3861dbcad3 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/122219953X"}, "pid": "8411", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:01.906085 2024-07-17 09:30:01.906087 bc45cac6-6315-421a-bd63-e9eaf567989f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/122413754X"}, "pid": "8412", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:01.967287 2024-07-17 09:30:01.967297 846fe620-e11a-4d13-afa6-d55ece55ab0e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1224278054"}, "pid": "8413", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:02.071551 2024-07-17 09:30:02.071559 b52c6f77-778f-4141-97a4-72fc5cc00487 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1225876354"}, "pid": "8414", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:02.166665 2024-07-17 09:30:02.166673 49a3b928-19a3-4d4c-b65d-20d1adae418f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1232243698"}, "pid": "8415", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:02.269332 2024-07-17 09:30:02.269342 652c2b49-9bf3-461f-8e1d-5df4dd8b206f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1233310046"}, "pid": "8416", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:02.36068 2024-07-17 09:30:02.360687 3e8a9b4b-db46-4b8e-bff5-af7ae8d93a94 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1235360709"}, "pid": "8417", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:02.445086 2024-07-17 09:30:02.4451 e489915d-de5f-458c-9c26-ffe15165440b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/123657754X"}, "pid": "8418", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:02.558111 2024-07-17 09:30:02.558122 826b6dc2-b573-4726-8e0b-b4479d3e42dd {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1236792211"}, "pid": "8419", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:02.651453 2024-07-17 09:30:02.651465 3265d47f-ae10-4c77-a506-e03061d8af83 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1237279453"}, "pid": "8420", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:02.763814 2024-07-17 09:30:02.763821 4bf26cd5-6eb3-4546-a0c5-d6606b5f41de {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1237774101"}, "pid": "8421", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:02.871304 2024-07-17 09:30:02.871309 edbf8296-fb84-4ed9-8964-ac21068ea83b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1237828171"}, "pid": "8422", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:02.924032 2024-07-17 09:30:02.924037 f9d284e3-1322-4c7a-afba-90c379d18569 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1237860342"}, "pid": "8423", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:02.973604 2024-07-17 09:30:02.973608 53111fe6-5e35-4399-b74f-d594fd67e68e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1239463502"}, "pid": "8424", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:03.054956 2024-07-17 09:30:03.054964 df1291c1-2898-4dbe-aa10-329a8197b031 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1239866968"}, "pid": "8425", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:03.14681 2024-07-17 09:30:03.146821 e58c21c3-8ad5-436a-b43e-1925b580be09 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1240912943"}, "pid": "8426", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:03.228114 2024-07-17 09:30:03.228122 9f5e7435-763a-4342-a4de-0f9d3afedb8f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1262419808"}, "pid": "8427", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:03.323449 2024-07-17 09:30:03.323459 ac64c4cd-2cac-4c68-8604-f66e7e120381 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1267606541"}, "pid": "8428", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:03.429785 2024-07-17 09:30:03.429796 43253340-c18f-4d9a-ae8e-6a56e4142569 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1271173751"}, "pid": "8429", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:03.526938 2024-07-17 09:30:03.526953 14c41ce3-e21c-4257-a755-4eb5f6486ca0 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1275159915"}, "pid": "8430", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:03.635805 2024-07-17 09:30:03.635814 d72940f7-950c-44c7-bc58-ea72a8b2d041 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1282328816"}, "pid": "8431", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:03.740721 2024-07-17 09:30:03.740733 4c101c96-7cfd-4e56-8e4c-f26e85774f9f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1284341119"}, "pid": "8432", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:03.83968 2024-07-17 09:30:03.83969 14e4558e-0ac4-452b-a8a0-92ed8240139b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1286132703"}, "pid": "8433", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:03.927263 2024-07-17 09:30:03.927268 c9783fd5-e379-4ae4-a267-ac40a1986dd7 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1287837611"}, "pid": "8434", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:03.979385 2024-07-17 09:30:03.979388 b7ddcdfd-e725-4e25-a790-e52e331fa287 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1295131781"}, "pid": "8435", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:04.114749 2024-07-17 09:30:04.114754 1828f80e-99f5-4378-b6c7-fa36f9ba7cd9 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/129673143X"}, "pid": "8436", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:04.170947 2024-07-17 09:30:04.17095 d8c5049e-59a4-4b13-8303-056166507f82 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1299383890"}, "pid": "8437", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:04.220218 2024-07-17 09:30:04.220221 dbc52786-dbf4-484b-8e41-9def9bbba9e0 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1300397128"}, "pid": "8438", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:04.28017 2024-07-17 09:30:04.280173 c6014dd5-0ee2-4708-b3ac-e42abc15a5a9 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1302571524"}, "pid": "8439", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:04.33819 2024-07-17 09:30:04.338193 e65bc728-fd45-4541-a3b9-01498d3d0f9f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1314596373"}, "pid": "8440", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:04.40922 2024-07-17 09:30:04.409228 8a0bb939-3332-48f1-a837-a5fd71813916 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1316359042"}, "pid": "8441", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:04.503275 2024-07-17 09:30:04.503282 53633058-d6bd-4881-a38b-f5fcf93cb35d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1329430875"}, "pid": "8442", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:04.595689 2024-07-17 09:30:04.5957 92c71254-a8f7-4d89-a978-f26cbadf7499 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1329890205"}, "pid": "8443", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:04.695764 2024-07-17 09:30:04.69578 ba43d2de-4d98-48a7-bc47-d33cd9528503 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1330177274"}, "pid": "8444", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:04.795468 2024-07-17 09:30:04.795479 6c5ff1b6-8afd-496d-86a7-9001d2ad698f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1330290887"}, "pid": "8445", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:04.895796 2024-07-17 09:30:04.895807 5f653a81-5bfc-414f-9374-fe58082b7dc5 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1330302877"}, "pid": "8446", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:04.98062 2024-07-17 09:30:04.980625 d676f879-61c1-4003-92b6-95a7fada8032 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1330324463"}, "pid": "8447", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:05.039579 2024-07-17 09:30:05.039586 5215f08d-a3f8-4971-b42c-910afb7e0ef3 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1330428420"}, "pid": "8448", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:05.128975 2024-07-17 09:30:05.128985 7e63d4cf-d5ed-4698-bf09-a9dde3f83bf2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1330436237"}, "pid": "8449", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:05.207789 2024-07-17 09:30:05.207798 2d7c40e3-cbcf-46c9-938f-ca86ccb5492f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1330847199"}, "pid": "8450", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:05.304402 2024-07-17 09:30:05.304415 039ac081-4653-4246-bc5f-6d11bdc1fdfa {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1330866738"}, "pid": "8451", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:05.416211 2024-07-17 09:30:05.416221 60388c1e-515d-4370-8c9e-dca385549ce6 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1330982746"}, "pid": "8452", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:05.528978 2024-07-17 09:30:05.528986 bea5bd5c-1be5-4fad-ac49-87f7725e3da4 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1331089271"}, "pid": "8453", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:05.612998 2024-07-17 09:30:05.613001 6d31a6a6-1454-4581-a2f2-0f64894e5a01 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1331109191"}, "pid": "8454", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:05.706894 2024-07-17 09:30:05.706897 0f7fcc4a-b002-49e2-b636-8934bdcc7468 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1331379539"}, "pid": "8455", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:05.801519 2024-07-17 09:30:05.801533 2776f3c5-7e64-43b4-99dc-797f56f37b17 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1331513952"}, "pid": "8456", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:05.89815 2024-07-17 09:30:05.898158 ae5b58f2-82d8-4ea3-a1b0-7954271b7440 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1331514282"}, "pid": "8457", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:05.988228 2024-07-17 09:30:05.988233 5d52e65c-d2fd-49ac-8c6f-f6697f6448f2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1331601630"}, "pid": "8458", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:06.047447 2024-07-17 09:30:06.047452 1ea2c29e-ea29-4342-813d-0976efd6be50 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1331602718"}, "pid": "8459", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:06.137046 2024-07-17 09:30:06.137055 5a452bee-c8ab-495b-8343-fb41fe58b968 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1331604346"}, "pid": "8460", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:06.232658 2024-07-17 09:30:06.232671 dcce207a-cfab-47e0-9c4b-cd095fa05261 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1331609186"}, "pid": "8461", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:06.326563 2024-07-17 09:30:06.326597 f721813e-1378-4722-8201-9b3b34f27ea9 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1331729661"}, "pid": "8462", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:06.431542 2024-07-17 09:30:06.431547 b95c1cc2-3071-4a9b-ba91-08c5391e11c9 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1332031374"}, "pid": "8463", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:06.533631 2024-07-17 09:30:06.533643 261630f3-ec52-4e82-8f45-9f0837de43b0 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1332055729"}, "pid": "8464", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:06.627981 2024-07-17 09:30:06.627992 91b83910-1c2b-4b86-bed2-228d49339466 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1332057209"}, "pid": "8465", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:06.727607 2024-07-17 09:30:06.727619 0a1f8e89-2d5b-4571-ac8d-0f1aa9ed14e2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1332353436"}, "pid": "8466", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:06.819191 2024-07-17 09:30:06.819202 d2d39f08-6fd2-42a1-9251-46512d9158bb {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1332451578"}, "pid": "8467", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:06.91918 2024-07-17 09:30:06.919187 bc1572f2-f5a0-48ce-8a88-a79ea4ebab4c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1332669689"}, "pid": "8468", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:07.016207 2024-07-17 09:30:07.016211 00a4f1d7-916a-47ab-934f-55efab75ddfa {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1332670482"}, "pid": "8469", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:07.065881 2024-07-17 09:30:07.065884 786e0bf5-36f0-452e-a10a-43c371c77626 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1332731430"}, "pid": "8470", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:07.133931 2024-07-17 09:30:07.133942 21eaeb2c-1189-4c21-8743-06808f7e2282 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1332732577"}, "pid": "8471", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:07.24961 2024-07-17 09:30:07.24962 0275e38b-f60f-4617-b097-b3850df02380 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1332733751"}, "pid": "8472", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:07.343965 2024-07-17 09:30:07.343972 ed98b6d1-e269-4b95-b9c3-36343d45befb {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/133273457X"}, "pid": "8473", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:07.441978 2024-07-17 09:30:07.441987 fe5cb893-3f57-48e5-ab48-d40e73a2d3f8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1332734863"}, "pid": "8474", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:07.539655 2024-07-17 09:30:07.539666 12231b61-aa36-421c-9e8a-a2aff2f822d1 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1332735002"}, "pid": "8475", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:07.635449 2024-07-17 09:30:07.635456 92a82d4a-c088-4742-a756-3e644429220d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1332742351"}, "pid": "8476", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:07.729177 2024-07-17 09:30:07.729192 c284d92c-67e0-47fd-af0c-6007af5491fe {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1332747108"}, "pid": "8477", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:07.832339 2024-07-17 09:30:07.832344 a9702a8a-f52d-428b-b8f3-ed8cfbce5698 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1332749054"}, "pid": "8478", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:07.937461 2024-07-17 09:30:07.937503 44f9fbdc-f2b9-4e2d-8e97-ed0fd35436c9 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1332755666"}, "pid": "8479", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:08.031189 2024-07-17 09:30:08.031192 6323a7c5-6071-4520-8283-5aa4e80f0771 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1332757375"}, "pid": "8480", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:08.082689 2024-07-17 09:30:08.082692 39ff41ec-597b-447f-9f7d-a04c4fcfdd9e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1332769349"}, "pid": "8481", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:08.140999 2024-07-17 09:30:08.141007 20145413-d99d-411a-a029-8b9805049b6d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1332858198"}, "pid": "8482", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:08.235967 2024-07-17 09:30:08.235977 0273db17-1b18-49b9-9f92-3d2b60225cfd {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1332874568"}, "pid": "8483", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:08.334198 2024-07-17 09:30:08.334208 7b9b59e0-5d5b-459d-8fc3-a99dc0a592e9 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1333113943"}, "pid": "8484", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:08.430719 2024-07-17 09:30:08.430729 eabedd87-a9d9-4dc4-b668-df71829ea9b0 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1333228880"}, "pid": "8485", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:08.526047 2024-07-17 09:30:08.526058 c09090ec-b97f-4d15-b16f-413af8be9d10 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1333255853"}, "pid": "8486", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:08.626877 2024-07-17 09:30:08.626888 58587bef-4357-4e1b-b86b-5ab05a1e88d5 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1333263465"}, "pid": "8487", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:08.728515 2024-07-17 09:30:08.728541 e4ab8df1-225c-4c43-b0e3-c03e0d2b52d2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1333315902"}, "pid": "8488", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:08.823186 2024-07-17 09:30:08.823192 3136985c-15f4-4d65-837f-c6c6b860cccd {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1333321090"}, "pid": "8489", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:08.924651 2024-07-17 09:30:08.924661 5c89d5b2-5e70-4ce5-b8e0-aaadbed3a0de {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1333333668"}, "pid": "8490", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:09.037109 2024-07-17 09:30:09.037123 4c0c5d5b-31ba-4628-a650-a9b60dc1e687 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/133355513X"}, "pid": "8491", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:09.104117 2024-07-17 09:30:09.10412 ef943c2b-e96d-4f77-bef1-c9ec33879fd0 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1333570511"}, "pid": "8492", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:09.17989 2024-07-17 09:30:09.179916 c4be25ac-bcf9-4251-90f4-b9be11d54f07 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1333582501"}, "pid": "8493", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:09.277149 2024-07-17 09:30:09.27716 90e99b49-3ea2-422a-b06e-2b18f8144299 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1333660758"}, "pid": "8494", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:09.364875 2024-07-17 09:30:09.364884 ac3b55bb-1847-4c14-9636-b454262dec04 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1333989954"}, "pid": "8495", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:09.480758 2024-07-17 09:30:09.480769 34132c00-57ef-4c4e-a6a8-a25a575851b2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334001529"}, "pid": "8496", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:09.574537 2024-07-17 09:30:09.574548 41cd281f-a7f5-4fbb-976e-861e2dbf7c62 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334011079"}, "pid": "8497", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:09.684463 2024-07-17 09:30:09.68447 618ae54a-4b64-4b95-bd28-150e6dacd1b1 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334011753"}, "pid": "8498", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:09.795667 2024-07-17 09:30:09.795678 16bb29a4-5577-420f-8558-bdb9b94a426b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334024804"}, "pid": "8499", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:09.894573 2024-07-17 09:30:09.894584 950a9fc3-2fed-4376-aa14-6390f3d38c36 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334027250"}, "pid": "8500", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:10.008236 2024-07-17 09:30:10.008243 6cffe039-8140-46ee-b44a-915aea3bbd82 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334086826"}, "pid": "8501", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:10.107427 2024-07-17 09:30:10.10743 1324f02d-0a1e-483f-bef7-c4b761512a25 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334101221"}, "pid": "8502", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:10.167501 2024-07-17 09:30:10.167506 5d86075c-5425-43b5-9e9b-62e014bac9e0 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334117918"}, "pid": "8503", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:10.261585 2024-07-17 09:30:10.261591 84927d2e-5b5a-4423-bca7-49d550adb52c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334198845"}, "pid": "8504", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:10.362413 2024-07-17 09:30:10.362423 58aff95b-7acb-4472-98c4-479722c7019c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334221979"}, "pid": "8505", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:10.460263 2024-07-17 09:30:10.460271 d22a9727-04aa-4278-9b30-306f686364c8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/133422725X"}, "pid": "8506", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:10.555311 2024-07-17 09:30:10.555326 b88bca27-0b08-4eda-a2f4-71e6f1ded10b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334300054"}, "pid": "8507", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:10.667326 2024-07-17 09:30:10.667335 3c75fa63-bc11-43b1-b444-7999fe980e6b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334302111"}, "pid": "8508", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:10.770971 2024-07-17 09:30:10.770979 9c1e4489-40cd-4f83-9011-944656f85578 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334310661"}, "pid": "8509", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:10.861396 2024-07-17 09:30:10.861408 18f5d1b6-73ca-4c2b-8f15-b35e48a3657a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334312974"}, "pid": "8510", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:10.957236 2024-07-17 09:30:10.957245 159de13c-afee-4b54-bd73-849eb43cdb83 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334313776"}, "pid": "8511", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:11.062592 2024-07-17 09:30:11.062605 935169ad-59f6-4b52-a1b9-61fe7c03fd2c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334318069"}, "pid": "8512", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:11.158118 2024-07-17 09:30:11.15812 f68f56bf-cd06-4c6e-ab4a-26beae6195ac {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334318492"}, "pid": "8513", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:11.208727 2024-07-17 09:30:11.20873 4f7cc5e2-1028-4ac2-9090-840b928a8b06 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334319561"}, "pid": "8514", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:11.274117 2024-07-17 09:30:11.274126 7d1695bd-8baa-4cff-b266-5d84fc7b6ee6 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334485763"}, "pid": "8515", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:11.374425 2024-07-17 09:30:11.374435 46fa04cd-ec02-40fa-b01a-64cb008a9ca8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334486573"}, "pid": "8516", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:11.473792 2024-07-17 09:30:11.473803 cfd7ced2-a6ab-4039-956d-5aeeca85b2a6 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334502854"}, "pid": "8517", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:11.596879 2024-07-17 09:30:11.596889 edebfe58-4466-4600-a56c-8130d97efde8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334516766"}, "pid": "8518", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:11.699628 2024-07-17 09:30:11.699639 f4d60341-dd36-4d2c-8a8d-8951fa96ceaa {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334531153"}, "pid": "8519", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:11.797422 2024-07-17 09:30:11.797454 60d87e4d-271e-4bdb-85b6-73e614403fdf {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/133453666X"}, "pid": "8520", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:11.897761 2024-07-17 09:30:11.897772 3ca16a3e-af9c-45ba-ab43-bcff3841481b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334538085"}, "pid": "8521", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:11.994171 2024-07-17 09:30:11.994185 e88b14f2-a77c-41b0-940e-fa088fade077 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334552606"}, "pid": "8522", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:12.070948 2024-07-17 09:30:12.070958 7a05f424-ef35-459b-845c-7b4cc6f331d1 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334552908"}, "pid": "8523", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:12.176163 2024-07-17 09:30:12.176165 f118e0cd-be30-4c51-9e3d-8f3c24e8901e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334552940"}, "pid": "8524", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:12.22802 2024-07-17 09:30:12.228024 13bde9fe-b689-44a8-8997-3e911b73f75d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334554218"}, "pid": "8525", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:12.302302 2024-07-17 09:30:12.302329 3342c2df-0c23-404f-a8a5-1e04c7baae9e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334554471"}, "pid": "8526", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:12.382855 2024-07-17 09:30:12.382864 44461e91-c153-4825-877b-661e53acf51c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334556687"}, "pid": "8527", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:12.47282 2024-07-17 09:30:12.472831 2bd38ebe-e6de-4743-86c7-6331af6d4164 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334558590"}, "pid": "8528", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:12.586864 2024-07-17 09:30:12.586874 53344d2e-9297-490c-b35d-934bf8fe50d0 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334559805"}, "pid": "8529", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:12.681606 2024-07-17 09:30:12.681615 acdff720-b095-4959-a635-01c7eec21e6c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334560994"}, "pid": "8530", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:12.779661 2024-07-17 09:30:12.77967 376d8d0f-4578-43ae-b0bb-55257b4b45de {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/133456325X"}, "pid": "8531", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:12.874755 2024-07-17 09:30:12.874765 af96962b-2aa1-41bf-aab8-6264559a0f6e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/133463209X"}, "pid": "8532", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:12.968961 2024-07-17 09:30:12.968974 7fdde47e-083b-44e6-84da-04c44213180b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334632707"}, "pid": "8533", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:13.062542 2024-07-17 09:30:13.062557 6d8e575e-8beb-4376-baeb-f48ecef7cfa5 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/133465641X"}, "pid": "8534", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:13.164784 2024-07-17 09:30:13.16479 51be3f32-896d-481b-97df-9518e8da9ef2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334657726"}, "pid": "8535", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:13.244781 2024-07-17 09:30:13.244785 777277b9-a0b8-4e7f-9cd4-25d243961a19 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334658196"}, "pid": "8536", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:13.295426 2024-07-17 09:30:13.295429 a4236b82-2131-4105-be09-4cd86ed2d28c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334661073"}, "pid": "8537", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:13.383744 2024-07-17 09:30:13.383754 83f96e71-eda8-4409-8c8c-b58d6533e85d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334664242"}, "pid": "8538", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:13.476851 2024-07-17 09:30:13.476861 8fb6d06e-6c23-437b-b1b9-f36889b49672 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334665028"}, "pid": "8539", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:13.584251 2024-07-17 09:30:13.58426 021e4efa-8bfd-4a21-ac7e-57db56339986 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334665036"}, "pid": "8540", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:13.678373 2024-07-17 09:30:13.678382 6070556d-7ec1-4991-95cb-62ffea1e7759 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334666474"}, "pid": "8541", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:13.793145 2024-07-17 09:30:13.793155 6e63fc28-eaa9-4cf2-a1a8-7b2565666970 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334670048"}, "pid": "8542", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:13.883138 2024-07-17 09:30:13.883148 638c4084-c8e8-4f00-bed0-4024ddac8e40 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334670323"}, "pid": "8543", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:13.979535 2024-07-17 09:30:13.979542 e08e0054-28d4-47cf-8ce5-6ea6135bce99 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334670390"}, "pid": "8544", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:14.076077 2024-07-17 09:30:14.076085 3d1f6180-6264-46bf-9dab-63d5ca0060f0 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334670560"}, "pid": "8545", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:14.169712 2024-07-17 09:30:14.169721 f7b7f4a9-20d3-4c6c-8002-e76c9e0cc3e1 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334671486"}, "pid": "8546", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:14.251787 2024-07-17 09:30:14.25179 9e2f1129-bd6c-4f5f-b713-02ecb2d7443b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334725691"}, "pid": "8547", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:14.339898 2024-07-17 09:30:14.339908 5cae4d90-1583-4778-956e-6f494a62ecee {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334725756"}, "pid": "8548", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:14.430804 2024-07-17 09:30:14.430813 8adba999-acf7-4f9a-87fe-79d96c266d9d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334729824"}, "pid": "8549", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:14.510876 2024-07-17 09:30:14.510885 97c1fe31-1a66-4c37-ab78-bb12b5071780 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334736340"}, "pid": "8550", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:14.610608 2024-07-17 09:30:14.610617 915e8127-3f22-4e9e-8b6d-a3b9cecb3d90 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334756465"}, "pid": "8551", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:14.697094 2024-07-17 09:30:14.697102 2b0aae2d-7f32-4191-8ed1-839360eff96f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334766363"}, "pid": "8552", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:14.774164 2024-07-17 09:30:14.774172 6e9fc177-e7cc-4f67-8941-ee864e4aaffc {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334779015"}, "pid": "8553", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:14.850946 2024-07-17 09:30:14.850949 9dbb8426-d7cd-4c12-aca9-2c0600708912 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334784493"}, "pid": "8554", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:14.922652 2024-07-17 09:30:14.92266 dcf93b94-5f13-4c47-9507-b1052426a06a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334785422"}, "pid": "8555", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:15.01463 2024-07-17 09:30:15.01464 a1015434-4d75-471c-bf95-3487619c4e70 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334789134"}, "pid": "8556", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:15.108898 2024-07-17 09:30:15.108907 cbc9fedf-71dd-4d33-8e98-9c6eb101bb16 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334801304"}, "pid": "8557", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:15.205854 2024-07-17 09:30:15.205866 ede0d737-d01e-4af9-ac56-6d4c4d0b917d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334804141"}, "pid": "8558", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:15.295463 2024-07-17 09:30:15.295468 dd60a855-e3d0-4f9a-a065-10c587f51666 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334804621"}, "pid": "8559", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:15.356081 2024-07-17 09:30:15.356085 9962e377-ffc9-4126-9a08-010829fc5f07 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334865981"}, "pid": "8560", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:15.466968 2024-07-17 09:30:15.467269 1e13b681-99e5-4185-a768-bd4fc957e5e6 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334866082"}, "pid": "8561", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:15.592767 2024-07-17 09:30:15.592778 ab439735-d4a2-4e37-bc36-87a309c9efc1 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334866473"}, "pid": "8562", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:15.690681 2024-07-17 09:30:15.690694 3bc96cd7-de84-4db5-874d-402ad366b584 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334867097"}, "pid": "8563", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:15.818748 2024-07-17 09:30:15.818758 959be0dd-df76-4680-8902-8171956204c1 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334874387"}, "pid": "8564", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:15.936319 2024-07-17 09:30:15.936327 c5f873f0-86c9-4bf4-a683-00a145a893ef {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334875707"}, "pid": "8565", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:16.029142 2024-07-17 09:30:16.029149 3e52f907-a825-4d4a-8bf9-924a9502a8f4 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334878234"}, "pid": "8566", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:16.136686 2024-07-17 09:30:16.13669 35af3035-ce9b-4d8a-ac85-e927a5e7aaf7 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/133489129X"}, "pid": "8567", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:16.249863 2024-07-17 09:30:16.249873 cffc4f95-e09b-454d-903a-b7e8e523b91f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334893594"}, "pid": "8568", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:16.33766 2024-07-17 09:30:16.337664 cd5caa47-af62-4574-8525-0394ad8549c6 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334896755"}, "pid": "8569", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:16.389813 2024-07-17 09:30:16.389817 72099d06-efb4-48c5-b4d5-f504dc52a346 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/133489874X"}, "pid": "8570", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:16.489738 2024-07-17 09:30:16.489747 032ecc00-9f3b-4d77-9581-7f42c2af048f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334900256"}, "pid": "8571", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:16.591295 2024-07-17 09:30:16.591303 6f417050-2c64-4f2f-94ed-88a00062f8f7 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/133490281X"}, "pid": "8572", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:16.715534 2024-07-17 09:30:16.715543 6c6c3167-fdac-437e-a0ef-36259fb7a820 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334904251"}, "pid": "8573", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:16.847625 2024-07-17 09:30:16.847663 03b425b8-f93c-45d5-b157-f76538d8f7dc {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334907048"}, "pid": "8574", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:16.948685 2024-07-17 09:30:16.948694 3c82d28d-bbbe-4418-87ea-7d28d0059475 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334907684"}, "pid": "8575", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:17.040525 2024-07-17 09:30:17.040535 11c87761-2583-4963-a667-8aedf7cee080 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334913498"}, "pid": "8576", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:17.136369 2024-07-17 09:30:17.13638 584b4df7-3cb5-4ed4-a7bb-02151469f60e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334916292"}, "pid": "8577", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:17.243139 2024-07-17 09:30:17.243148 ffed8ac7-a06e-4336-8a8c-d3ff827fafc0 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334917981"}, "pid": "8578", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:17.348623 2024-07-17 09:30:17.348626 aac9ea39-8cb5-443a-826d-d8d19cebf2b1 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334938016"}, "pid": "8579", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:17.403139 2024-07-17 09:30:17.403144 468a6c89-1414-4b2e-88bb-e925ad3905d7 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1335058036"}, "pid": "8580", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:17.466453 2024-07-17 09:30:17.466463 fb84f90c-eb1e-4646-a517-832b5b43af23 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1335086005"}, "pid": "8581", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:17.553672 2024-07-17 09:30:17.553677 e68b8ea5-75df-4464-a1d8-2931370e7c8e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1335092196"}, "pid": "8582", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:17.668116 2024-07-17 09:30:17.668126 449eb7ff-a5f1-4428-9e3f-662a03709f74 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1335092390"}, "pid": "8583", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:17.761199 2024-07-17 09:30:17.761207 565879c1-4dcc-4880-96df-d27f28942cc3 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1335098399"}, "pid": "8584", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:17.865274 2024-07-17 09:30:17.865282 b89b1d3e-a5fe-4cad-b9bd-a890883996e2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1335104917"}, "pid": "8585", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:17.964624 2024-07-17 09:30:17.964628 0426c2d1-c07e-4c00-be50-862e6e23e47d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1335107711"}, "pid": "8586", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:18.069476 2024-07-17 09:30:18.069488 76cc3840-b77b-4884-b206-89726232ad49 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1335141790"}, "pid": "8587", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:18.16473 2024-07-17 09:30:18.164741 54a2f3bd-9732-4608-aff0-beddc6c8044e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1335201653"}, "pid": "8588", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:18.265598 2024-07-17 09:30:18.265607 69984d75-fc7b-431f-bd84-b78ab172d244 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1335217711"}, "pid": "8589", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:18.387991 2024-07-17 09:30:18.387996 4fcfb780-ef6d-4e3c-b904-c59d15438079 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/133523909X"}, "pid": "8590", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:18.442214 2024-07-17 09:30:18.442217 3ccdf79a-8b9e-4f6f-a4ad-f1f35204316a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1335243240"}, "pid": "8591", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:18.507264 2024-07-17 09:30:18.507273 1c63430b-cf2a-4d62-9ff9-35179b16b130 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1335249966"}, "pid": "8592", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:18.644883 2024-07-17 09:30:18.644894 83c593aa-33ec-4496-a71c-fe83f24d0a40 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/133525207X"}, "pid": "8593", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:18.764788 2024-07-17 09:30:18.764809 ab39af91-b3fa-4fe7-b4e9-ef4b895c0468 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/133525675X"}, "pid": "8594", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:18.855518 2024-07-17 09:30:18.855527 84b30f0e-880b-4b57-80d9-5446554b9130 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1335257101"}, "pid": "8595", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:18.950296 2024-07-17 09:30:18.950309 3d7dfaab-87fa-4534-9c3f-45b8ae2dbf51 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1335257845"}, "pid": "8596", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:19.050636 2024-07-17 09:30:19.050646 0c4dde84-de5a-4476-8684-a39711993c9a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199000239"}, "pid": "8597", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:19.154028 2024-07-17 09:30:19.154038 968303d5-a4e9-4f3a-83f7-c6259e4df6ab {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199000328"}, "pid": "8598", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:19.258826 2024-07-17 09:30:19.258838 26650ef5-1392-4f40-8e50-1bfbfeb3f1b5 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199001111"}, "pid": "8599", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:19.356123 2024-07-17 09:30:19.356131 357e18cf-0304-4682-a589-ebe7fcc75a18 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199002894"}, "pid": "8600", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:19.448949 2024-07-17 09:30:19.448954 5343c61b-b91b-493f-816e-6b3e329fb44f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199003645"}, "pid": "8601", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:19.499955 2024-07-17 09:30:19.49996 679e8a29-1475-4e1e-b19a-45cd3d4b1cca {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199011249"}, "pid": "8602", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:19.590755 2024-07-17 09:30:19.590765 32263c92-2f30-416d-9bf7-80cf23c3665d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199013276"}, "pid": "8603", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:19.684023 2024-07-17 09:30:19.684031 1c2ad7cf-83fc-4212-ae26-e970959f5353 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199013594"}, "pid": "8604", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:19.783224 2024-07-17 09:30:19.783235 ea56897d-7e84-48ac-92dc-65581db6c9e4 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199022534"}, "pid": "8605", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:19.885912 2024-07-17 09:30:19.885924 0d7b60cd-8ea8-4ad8-b239-0d02fda339e5 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199023360"}, "pid": "8606", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:19.977242 2024-07-17 09:30:19.977253 250c3c13-06cc-4f80-9711-352a07279ca3 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199023786"}, "pid": "8607", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:20.079182 2024-07-17 09:30:20.079189 9c71ce4b-7575-4f16-a672-a53d5ada138c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199077177"}, "pid": "8608", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:20.179671 2024-07-17 09:30:20.17968 678ab921-0be1-472b-9e8d-ef10a7d42cbf {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199089973"}, "pid": "8609", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:20.281775 2024-07-17 09:30:20.281785 bc7427db-b305-4cf5-b76d-7a8244af620e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199118167"}, "pid": "8610", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:20.38943 2024-07-17 09:30:20.389457 ecb73df9-4210-4139-9985-ae7e567558a6 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199136637"}, "pid": "8611", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:20.479781 2024-07-17 09:30:20.479783 846d9f3c-e305-4c47-ab75-5d67668a5b64 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199138834"}, "pid": "8612", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:20.525709 2024-07-17 09:30:20.525713 6c1320df-a928-4a5d-8326-5a357ed47761 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199147760"}, "pid": "8613", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:20.61538 2024-07-17 09:30:20.615389 135acc55-e012-46cb-a00a-4daef6cf5460 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199157642"}, "pid": "8614", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:20.710987 2024-07-17 09:30:20.710996 7e134f7d-a9eb-4d81-a1a8-c57977b04137 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199159777"}, "pid": "8615", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:20.820497 2024-07-17 09:30:20.820509 023f4c6c-aba0-4828-9253-d9a76bd0045d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199159882"}, "pid": "8616", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:20.927118 2024-07-17 09:30:20.92713 31e57c2d-a7b9-4368-9a5e-92fe5bf18b2f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199159998"}, "pid": "8617", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:21.036 2024-07-17 09:30:21.036009 45068ebc-c413-4d72-b871-b8232fb9dcee {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/19916035X"}, "pid": "8618", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:21.140584 2024-07-17 09:30:21.140595 8965c90e-8742-4854-84ef-ff954e89d66c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199164347"}, "pid": "8619", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:21.234562 2024-07-17 09:30:21.234573 8b7c5f51-fe5a-43cb-9ee4-f9f81d304d8f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199168512"}, "pid": "8620", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:21.333089 2024-07-17 09:30:21.333097 9569586d-f386-4c21-bdd8-e7ce1f8f1905 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/19917332X"}, "pid": "8621", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:21.435381 2024-07-17 09:30:21.435389 55d1a8f2-9457-4eab-a585-d530b229e2bd {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199173672"}, "pid": "8622", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:21.50968 2024-07-17 09:30:21.509682 5b6997c1-b326-44cd-bc7c-f0a732c61a9e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199181993"}, "pid": "8623", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:21.55897 2024-07-17 09:30:21.558974 6caf1dab-f4ed-49bc-8744-5d13427de1b6 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199187282"}, "pid": "8624", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:21.625917 2024-07-17 09:30:21.625928 bea55d3d-c08d-4b5b-9c21-43bacde3c52d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199189846"}, "pid": "8625", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:21.704465 2024-07-17 09:30:21.704499 5e12668f-5018-4a50-a9ba-59ff643a0a9a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199189854"}, "pid": "8626", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:21.799328 2024-07-17 09:30:21.799339 386f37d3-0f1c-4660-aaf8-2eba051f1f52 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199189862"}, "pid": "8627", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:21.900457 2024-07-17 09:30:21.900472 f80d2ebf-de9c-42bf-8149-3d1112b9d130 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199189870"}, "pid": "8628", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:22.010798 2024-07-17 09:30:22.010806 d5dc8a70-1cab-4c85-be51-35a07e3b3b9e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/19919596X"}, "pid": "8629", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:22.119681 2024-07-17 09:30:22.119692 00c33b3e-89c8-4c92-bd1b-a43eb734cf18 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199195978"}, "pid": "8630", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:22.227118 2024-07-17 09:30:22.227152 71989ff2-ad92-4f43-9f30-96325255058d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199198578"}, "pid": "8631", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:22.323186 2024-07-17 09:30:22.323189 3fd9435a-c0d6-4cff-8957-fa817e96917d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199200955"}, "pid": "8632", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:22.430918 2024-07-17 09:30:22.430925 b62936ef-4264-4b02-9d70-5ee6dac52bef {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199209464"}, "pid": "8633", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:22.534228 2024-07-17 09:30:22.534234 0fe24a46-a55b-4b31-ba96-7591e90b91b4 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199210713"}, "pid": "8634", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:22.592105 2024-07-17 09:30:22.59211 ef756fa3-808c-4dd0-8e3f-e5bd681c8519 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199211817"}, "pid": "8635", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:22.666139 2024-07-17 09:30:22.666158 aabe0034-31a2-49e6-a83b-d67e4222e5b8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199212007"}, "pid": "8636", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:22.758839 2024-07-17 09:30:22.75885 9cb83890-6b80-42e7-a3e4-bbaf04490f91 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/19921462X"}, "pid": "8637", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:22.847188 2024-07-17 09:30:22.847197 8b280972-b6a1-4708-82ef-e1015c4a92f0 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199214700"}, "pid": "8638", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:22.927675 2024-07-17 09:30:22.927685 dd500b38-10b3-45fc-9f33-a3123bf23b2a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199215901"}, "pid": "8639", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:23.027162 2024-07-17 09:30:23.027174 0b5f0d98-f997-4565-8de0-35d05fc8c38f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199218315"}, "pid": "8640", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:23.144329 2024-07-17 09:30:23.144339 48c445eb-a6de-450f-b972-af474827f99e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199224196"}, "pid": "8641", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:23.236308 2024-07-17 09:30:23.236319 f33795db-750e-4799-8cd3-030c10348bbb {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199230285"}, "pid": "8642", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:23.330346 2024-07-17 09:30:23.330357 98d7a8b8-c890-46a1-a59a-e4d69ba590c7 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199230811"}, "pid": "8643", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:23.427252 2024-07-17 09:30:23.427264 ffbc7640-d05c-45ad-8bce-17133c5a3875 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199231516"}, "pid": "8644", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:23.528725 2024-07-17 09:30:23.528735 5dfbc932-2921-47ce-8ddf-ceb00950e8ac {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/19923860X"}, "pid": "8645", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:23.599319 2024-07-17 09:30:23.599323 f20c01db-fb8b-4953-b7c6-18956441063b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199239436"}, "pid": "8646", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:23.64707 2024-07-17 09:30:23.647074 4fa68f4b-7743-4701-8bd4-d7679301145f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199240515"}, "pid": "8647", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:23.72214 2024-07-17 09:30:23.72215 a3f279ed-8c1b-4cee-92e8-0ca22ff9aa2d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199240590"}, "pid": "8648", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:23.811548 2024-07-17 09:30:23.81156 ce826ae8-1d32-44c0-8a0b-6f5621d18a6b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199241562"}, "pid": "8649", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:23.903785 2024-07-17 09:30:23.903793 4e14644f-ed38-490f-979b-06c2924c0ed8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199244375"}, "pid": "8650", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:23.99482 2024-07-17 09:30:23.994831 4c190acc-8e6b-432c-a7f3-735f63e1393f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199244731"}, "pid": "8651", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:24.104403 2024-07-17 09:30:24.104412 141ec585-1895-4cf3-9f7c-5dcc4e36359f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/19924474X"}, "pid": "8652", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:24.19827 2024-07-17 09:30:24.198284 a7828456-9794-45f1-8a14-47d5d441baa2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199244766"}, "pid": "8653", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:24.288801 2024-07-17 09:30:24.288811 6aa9a584-a4c5-446b-adda-34065f2ac99c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199246211"}, "pid": "8654", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:24.379701 2024-07-17 09:30:24.37971 f93d2322-d715-40a5-bb84-3b827873cdeb {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199246793"}, "pid": "8655", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:24.48286 2024-07-17 09:30:24.482869 10e05f0e-dff4-4718-952f-88aae13b1b93 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199246815"}, "pid": "8656", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:24.575441 2024-07-17 09:30:24.575452 a4c034cb-e690-4833-ba61-8d40860d5612 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199248974"}, "pid": "8657", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:24.645123 2024-07-17 09:30:24.645126 effe905a-5fc0-400a-8e5b-5a02d22c6eeb {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199252149"}, "pid": "8658", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:24.738389 2024-07-17 09:30:24.738393 7e991d41-d56a-4ce0-83a3-f8436010d210 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199305404"}, "pid": "8659", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:24.829501 2024-07-17 09:30:24.829511 ea9e6a55-4846-49d5-b3fe-8a19e53f5799 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/940396009"}, "pid": "8660", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:24.91885 2024-07-17 09:30:24.918868 2c5c938f-a36e-46ab-8bf4-4e44902e1c3d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/940396068"}, "pid": "8661", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:25.109445 2024-07-17 09:30:25.109453 064b369c-953a-4194-aa76-d8f6bc2dfa82 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/941385175"}, "pid": "8662", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:25.223884 2024-07-17 09:30:25.223894 02665326-dbb0-4839-b0cc-ab23999926e7 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/941757471"}, "pid": "8663", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:25.305609 2024-07-17 09:30:25.305617 d7dfb399-0391-4be1-8731-80a06da1184f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/941808769"}, "pid": "8664", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:25.413669 2024-07-17 09:30:25.413678 7c47a65d-98e0-444e-89e0-d874bf29ee88 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/941847934"}, "pid": "8665", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:25.504408 2024-07-17 09:30:25.504417 650dec46-acf6-495a-8145-0c7cfca9582a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/943882346"}, "pid": "8666", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:25.625167 2024-07-17 09:30:25.625171 afbc1c1f-d5f7-4cf6-a57d-ead94f594058 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/94400718X"}, "pid": "8667", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:25.677447 2024-07-17 09:30:25.67745 a4f94202-a3a5-4cfc-b46d-87f8b08d6082 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/944289290"}, "pid": "8668", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:07.353168 2024-07-17 09:30:25.799036 95782751-7107-4b93-bce8-7667ae09be2c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/944449360"}, "pid": "8081", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/276510216"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:30:25.913392 2024-07-17 09:30:25.913402 4be414b1-6dfe-4f55-9469-515276ca9735 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/944766021"}, "pid": "8669", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:26.003193 2024-07-17 09:30:26.003202 63158388-15aa-48e2-9c12-bedcdd4f5540 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/945385382"}, "pid": "8670", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:26.116825 2024-07-17 09:30:26.116835 d29ea065-128f-4e75-90c1-b73445d85dca {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/945871678"}, "pid": "8671", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:26.229587 2024-07-17 09:30:26.229598 cc542e08-9d5f-4889-bbd3-bb2d7b51f22e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/945917201"}, "pid": "8672", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:26.327578 2024-07-17 09:30:26.327589 36bdabcd-e51e-4b33-ae47-576fc5a2adf6 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/945980132"}, "pid": "8673", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:00.190977 2024-07-17 09:30:26.447224 4f30b1b4-5def-49ec-8031-e394cc6c9336 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/946153248"}, "pid": "8005", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/237279614"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:30:26.547635 2024-07-17 09:30:26.547642 9e0a80c0-d1d7-49ad-80f5-1dcfd88aea35 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/946606161"}, "pid": "8674", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:26.634771 2024-07-17 09:30:26.63478 59e402c7-9f35-4a72-97d9-b6f25a9f6b4a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/946723729"}, "pid": "8675", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:26.687172 2024-07-17 09:30:26.687176 f6a85eb0-7a30-46a3-a2f5-7f700dc71635 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/947026088"}, "pid": "8676", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:26.819538 2024-07-17 09:30:26.819547 e86462c4-061b-4d03-ba1f-f2b05e9ac3b6 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/947421238"}, "pid": "8677", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:26.920081 2024-07-17 09:30:26.920095 e7d2e6e1-af1e-47e3-b85d-57c1c90f9b65 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/947454659"}, "pid": "8678", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:27.01511 2024-07-17 09:30:27.015119 6bf1e8be-1b79-4dd5-b52e-27d4cb768288 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/947454802"}, "pid": "8679", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:27.115516 2024-07-17 09:30:27.115527 604e558f-b456-4364-ad99-0d60441c91c8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/947589341"}, "pid": "8680", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:27.208146 2024-07-17 09:30:27.208156 82f457ff-863d-4d6e-840f-511f00f930ef {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/947862730"}, "pid": "8681", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:27.306426 2024-07-17 09:30:27.306435 49a2fb4c-688d-4803-9619-45ce62c499bb {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/947976248"}, "pid": "8682", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:27.399212 2024-07-17 09:30:27.399223 2f7af86d-f18a-47d7-8d38-d27a32376bb9 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/948321156"}, "pid": "8683", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:27.489639 2024-07-17 09:30:27.489649 cf9f6e17-8258-466d-94a9-e09ee849e959 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/948322292"}, "pid": "8684", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:27.575157 2024-07-17 09:30:27.575165 b788795a-a49b-4fbf-89b3-c058017a7d63 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/948417226"}, "pid": "8685", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:27.67006 2024-07-17 09:30:27.670071 7aff8b0a-f87e-4853-a8c4-3a18ac9bda97 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/948791659"}, "pid": "8686", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:27.725313 2024-07-17 09:30:27.725317 a5f637a0-865a-47f2-85a5-6297ac7478bd {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/949602310"}, "pid": "8687", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:27.780872 2024-07-17 09:30:27.78088 14bbfbec-dbb1-4a94-9721-287e305d3ee4 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/949607266"}, "pid": "8688", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:27.870858 2024-07-17 09:30:27.870865 733f2e9f-981d-42d4-a89d-eaf88e85b7d7 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/949632104"}, "pid": "8689", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:27.960392 2024-07-17 09:30:27.960403 875ddc1a-0b1c-4732-a74d-a51c73f29817 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/949632120"}, "pid": "8690", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:28.0395 2024-07-17 09:30:28.03951 51476cac-bb46-4e0b-9646-1a75bb8d258d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/949632147"}, "pid": "8691", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:28.132009 2024-07-17 09:30:28.132016 0f5572ca-2eba-4eb9-b027-7ff1f9bdb5b5 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/949632163"}, "pid": "8692", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:28.224901 2024-07-17 09:30:28.224913 9c540f12-9d8c-4849-a47b-196d57a14015 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/94963218X"}, "pid": "8693", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:28.329015 2024-07-17 09:30:28.329026 7c858972-37f2-4633-9e07-e5f398df320f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/949641804"}, "pid": "8694", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:28:57.285432 2024-07-17 09:30:28.443508 c05dd983-4d92-4b37-a337-8d64838940e6 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/949642762"}, "pid": "7974", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028931491"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:30:28.554098 2024-07-17 09:30:28.554109 1b32d36a-ba61-4f3c-b857-ec434e71f43b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/949647314"}, "pid": "8695", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:28.659629 2024-07-17 09:30:28.65964 ef8b27ef-660a-4c50-b3da-41084e573320 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/949740861"}, "pid": "8696", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:28.737693 2024-07-17 09:30:28.737696 c4f01ce3-efc8-4c1c-a7db-07605ce21e4b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/950168637"}, "pid": "8697", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:28.785822 2024-07-17 09:30:28.785825 c548424b-28ff-4c51-b689-7b77b30a596f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/950199214"}, "pid": "8698", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:28.850915 2024-07-17 09:30:28.850926 af8afd34-53f3-43ca-8a77-fabce3f05e6a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/950199850"}, "pid": "8699", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:28.950556 2024-07-17 09:30:28.950565 293ea155-71eb-4a67-b244-9482bf9cbcc1 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/95020109X"}, "pid": "8700", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:29.051907 2024-07-17 09:30:29.051925 eaf7437a-e47e-4d6c-8922-6f901f05e1e2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/950315354"}, "pid": "8701", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:29.170257 2024-07-17 09:30:29.170267 eea69714-2b8f-415f-9a73-fc45a07379af {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/950331821"}, "pid": "8702", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:29.261194 2024-07-17 09:30:29.261204 a68833ce-2c65-4662-8cf2-c8055cd44958 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/950332011"}, "pid": "8703", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:29.360888 2024-07-17 09:30:29.360898 c8e0f608-1efc-421e-9857-746df59752f1 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/950332429"}, "pid": "8704", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:29.465173 2024-07-17 09:30:29.465181 ca77eb29-ea7c-436e-b238-b3d97c2a5386 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/950338184"}, "pid": "8705", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:29.555776 2024-07-17 09:30:29.555784 916f4107-d5b8-4d83-84b9-a0f7e1200663 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/950338230"}, "pid": "8706", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:29.646307 2024-07-17 09:30:29.646321 2b42238d-6b94-441c-ba93-4931b3fe73aa {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/95033829X"}, "pid": "8707", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:29.739515 2024-07-17 09:30:29.739518 8862324d-7c16-45f6-9f43-a71c4082f469 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/950338338"}, "pid": "8708", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:29.795391 2024-07-17 09:30:29.795394 7439b95c-0cb1-48a0-9eb6-5840dd78ba9b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/950339407"}, "pid": "8709", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:29.863601 2024-07-17 09:30:29.86361 e2cfdea4-bcd0-4231-80fb-928539618fd6 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/950339490"}, "pid": "8710", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:29.956089 2024-07-17 09:30:29.956095 13dd094f-e338-4df8-b722-6c2f801b7de2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/950356190"}, "pid": "8711", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:30.054822 2024-07-17 09:30:30.05483 a2963593-7ae6-4cbb-82ef-d5302e8f655a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/950556149"}, "pid": "8712", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:30.150161 2024-07-17 09:30:30.15017 f997fca4-0c40-4ce8-b854-f52b85a1558f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/950649155"}, "pid": "8713", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:30.261709 2024-07-17 09:30:30.261721 e477de8b-2dce-43ed-b65d-6613431a5327 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/95135793X"}, "pid": "8714", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:30.360657 2024-07-17 09:30:30.360666 8b805e4e-d10c-426c-934b-c89203403e95 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/951510258"}, "pid": "8715", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:30.474143 2024-07-17 09:30:30.47415 7de9fbd5-2add-4f96-ae0f-6f22059e181f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/951510274"}, "pid": "8716", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:30.578369 2024-07-17 09:30:30.578377 a5812ca8-8833-4dfc-9a29-cd5dfbb1b2b6 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/951510282"}, "pid": "8717", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:30.679064 2024-07-17 09:30:30.679071 7e31c867-11da-4633-813b-90ce4d1c2b8f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/951677268"}, "pid": "8718", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:30.772157 2024-07-17 09:30:30.772162 30efe0aa-816e-4d7d-a0da-ccf0f6aacb32 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/952110512"}, "pid": "8719", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:31.028268 2024-07-17 09:30:31.02828 41a6a24f-f4bc-493c-bba1-3bd05e9b0be9 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/953105024"}, "pid": "8720", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:31.117187 2024-07-17 09:30:31.117198 c92b4a04-f9e2-40fd-a221-04b82ec53215 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/953168697"}, "pid": "8721", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:31.229301 2024-07-17 09:30:31.229311 9401ff0a-e7ae-40b5-aa6f-cd2b8c7ae613 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/954064593"}, "pid": "8722", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:31.329479 2024-07-17 09:30:31.32949 d46637aa-6a85-4823-b449-1146bdd6d147 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/954071832"}, "pid": "8723", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:31.434809 2024-07-17 09:30:31.434822 32cb2eda-40da-443b-b51e-8905880b0fae {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/954472683"}, "pid": "8724", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:31.66914 2024-07-17 09:30:31.669149 c23b4b20-5633-4f1a-89c4-0868b425a37a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/955090547"}, "pid": "8725", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:31.774062 2024-07-17 09:30:31.774071 119557e8-d9d7-4d71-88ca-0c59185a5c09 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/955495768"}, "pid": "8726", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:31.847681 2024-07-17 09:30:31.847685 2173ea12-92f3-41e3-8efe-724054ab0484 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/955498058"}, "pid": "8727", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:31.936135 2024-07-17 09:30:31.936145 4d0d031c-b8b3-49d9-9869-762e76ce9291 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/955573246"}, "pid": "8728", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:32.038412 2024-07-17 09:30:32.038438 33766761-c16d-4193-95a0-f74beb26d1c0 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/955820049"}, "pid": "8729", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:32.244529 2024-07-17 09:30:32.244538 9d0e0976-0a5e-4ca7-9f0a-89f25c322acb {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/955960134"}, "pid": "8730", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:32.332458 2024-07-17 09:30:32.332466 46f54dee-16de-4a23-a033-d548a2defb9e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/956443613"}, "pid": "8731", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:32.421386 2024-07-17 09:30:32.421395 213208fc-80ba-448f-82d6-31e9a6ff82f7 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/956443842"}, "pid": "8732", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:32.504344 2024-07-17 09:30:32.504353 476d739e-5f45-4651-a79f-70e46acd35b5 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/956443877"}, "pid": "8733", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:32.622284 2024-07-17 09:30:32.622294 8e055d25-fbdf-4e80-a6d0-86db8fdf2910 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/957211430"}, "pid": "8734", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:32.710267 2024-07-17 09:30:32.710278 08026211-1d0d-429e-b514-e1accbef56bf {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/957565445"}, "pid": "8735", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:32.816835 2024-07-17 09:30:32.816853 99d1f833-f1ad-4b7e-8c96-10ae6496879a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/957586973"}, "pid": "8736", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:32.893954 2024-07-17 09:30:32.89396 cd5f7829-21be-41fd-8986-e98cd3e6c4e4 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/957753551"}, "pid": "8737", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:32.962725 2024-07-17 09:30:32.962734 3a339cd3-0c20-4af2-9a79-ca1beaa89e9f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/958014639"}, "pid": "8738", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:33.065218 2024-07-17 09:30:33.065227 59634bc2-a00d-45dc-a66e-a9c0c045cad5 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/958777055"}, "pid": "8739", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:33.188476 2024-07-17 09:30:33.188486 45f37ef7-7042-4bf2-b244-2d53dbeef7ed {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/959369872"}, "pid": "8740", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:33.309822 2024-07-17 09:30:33.309832 34c1845a-305e-4202-9325-91095d73b4d7 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/959747575"}, "pid": "8741", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:33.391673 2024-07-17 09:30:33.394281 95bdaf3d-ed01-4649-9328-c6a76bba5d27 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/959788719"}, "pid": "8742", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:33.507465 2024-07-17 09:30:33.507476 aa2546ae-8486-483a-9914-a6e7c9223ec4 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/959918612"}, "pid": "8743", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:33.59637 2024-07-17 09:30:33.59638 2e8ef27f-d6fc-42c9-924d-483fbba95c2a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/959934464"}, "pid": "8744", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:33.708452 2024-07-17 09:30:33.708461 93ea2b9f-49e6-440f-abf5-1ed350f984e1 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/960085726"}, "pid": "8745", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:33.807173 2024-07-17 09:30:33.807181 5cd71dca-65b7-4176-bc93-2502b0552ac6 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/960396268"}, "pid": "8746", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:33.893368 2024-07-17 09:30:33.893375 bceae107-2802-4b18-b437-934185570d74 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/960833919"}, "pid": "8747", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:33.968104 2024-07-17 09:30:33.968115 5ab164ba-cb61-424c-8ae4-0320b39f4f43 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/960863664"}, "pid": "8748", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:34.073643 2024-07-17 09:30:34.073655 34384de8-15fb-4c7f-aa61-06c2e263e37a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/961395923"}, "pid": "8749", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:34.179046 2024-07-17 09:30:34.179057 9e789747-2149-4d04-a4e4-b54dd56c9bae {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/961594454"}, "pid": "8750", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:34.309359 2024-07-17 09:30:34.309367 23d9858f-0ee6-4c32-8d17-96cdb67f6c91 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/961594497"}, "pid": "8751", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:34.402174 2024-07-17 09:30:34.402187 feecce0d-37f5-48a0-825d-9ad8d5aaa287 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/961594519"}, "pid": "8752", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:34.50058 2024-07-17 09:30:34.500591 9b90138c-0d99-465a-bd4b-7608d9c2ee0b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/962048879"}, "pid": "8753", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:34.597172 2024-07-17 09:30:34.597183 36a42de5-34cd-48c0-bd8c-9a485e6fb92b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/963082132"}, "pid": "8754", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:34.695917 2024-07-17 09:30:34.695928 54060d82-a93e-4ef7-91e7-ac2f521fb269 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/963462539"}, "pid": "8755", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:34.792582 2024-07-17 09:30:34.792594 d7d8b5b6-82de-49db-bc02-e1e452603b33 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/963614673"}, "pid": "8756", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:34.902624 2024-07-17 09:30:34.90263 3b1919fb-fa01-4ecc-9e0f-d605221e3d7a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/963957635"}, "pid": "8757", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:34.953718 2024-07-17 09:30:34.953721 86b24cc9-cd6a-4692-b2e8-6de128d2507b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/963982559"}, "pid": "8758", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:35.009127 2024-07-17 09:30:35.009135 6c49bcfe-f087-4b82-9501-ca29aca3114f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/96411822X"}, "pid": "8759", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:35.103343 2024-07-17 09:30:35.103353 0581351f-deee-4e1b-91f8-2b6e8c1ae898 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/964462427"}, "pid": "8760", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:29:00.426322 2024-07-17 09:30:35.332688 f55b6e6f-3d18-43d8-a72e-de6654c43b91 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/964991500"}, "pid": "8007", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/260966401"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 -2024-07-17 09:30:35.430655 2024-07-17 09:30:35.430671 bf224700-2976-4690-8979-3acb2f40d9d7 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/964991608"}, "pid": "8761", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:35.529771 2024-07-17 09:30:35.529781 14280fc1-939b-4b30-bb43-bd53d966603a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/96563860X"}, "pid": "8762", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:35.628934 2024-07-17 09:30:35.628996 dc4d7030-4470-43b3-95f4-b3d6ee00f527 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/96575877X"}, "pid": "8763", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:35.73484 2024-07-17 09:30:35.734852 0b3cec9f-6516-40b9-992b-de22b9a2dc4d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/965759059"}, "pid": "8764", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:35.828892 2024-07-17 09:30:35.828906 918f8407-5c1f-41ac-ba2f-2658f8ce7986 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/965774910"}, "pid": "8765", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:35.945838 2024-07-17 09:30:35.945841 c3149339-021d-4e26-8eb7-205da361b34a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/965775429"}, "pid": "8766", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:35.997014 2024-07-17 09:30:35.997018 f7a2478f-6c70-4fe7-b1e7-9308c113fb92 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/96577578X"}, "pid": "8767", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:36.095055 2024-07-17 09:30:36.095066 236bda61-6672-4930-b3b4-db2b69fcf426 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/967160480"}, "pid": "8768", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:36.181368 2024-07-17 09:30:36.181371 c847f03a-6629-4aa5-aac3-63673c111933 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/967180953"}, "pid": "8769", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:36.253184 2024-07-17 09:30:36.253192 dc6dd3fa-c241-40ce-bdba-4acbc8c5318f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/967581176"}, "pid": "8770", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:36.341661 2024-07-17 09:30:36.341671 2664cd38-a7a4-47fc-8360-6aa3796e546f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/967681952"}, "pid": "8771", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:36.445077 2024-07-17 09:30:36.445084 d2db6281-f052-4cbe-8829-9a96c9960b8b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/967753546"}, "pid": "8772", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:36.652186 2024-07-17 09:30:36.652194 9a5c52a8-8cac-49b1-8f08-36fa8462282d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/969491131"}, "pid": "8773", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:36.74317 2024-07-17 09:30:36.743179 35d21ec5-c942-4f4d-be10-61f1e00c9f24 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/969971028"}, "pid": "8774", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:36.83894 2024-07-17 09:30:36.838951 869515b2-34cc-4acd-98d0-44a92818f764 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/970139470"}, "pid": "8775", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:36.940728 2024-07-17 09:30:36.940735 7944cb86-c806-4edb-ba48-a89da9798d1e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/971359709"}, "pid": "8776", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:37.005256 2024-07-17 09:30:37.00526 43a3768a-fff4-4e73-9480-fddca742c314 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/972515704"}, "pid": "8777", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:37.101673 2024-07-17 09:30:37.101685 040fc6f7-b60b-4486-b7da-0b27326601eb {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/972586601"}, "pid": "8778", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:37.187692 2024-07-17 09:30:37.187703 162bef13-a500-4843-91c2-b1abadbc4b86 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/972651438"}, "pid": "8779", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:37.314686 2024-07-17 09:30:37.314694 6b561715-4b6f-4b71-b40e-12d4154da023 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/973040149"}, "pid": "8780", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:37.412332 2024-07-17 09:30:37.41236 c7ef83cb-94e9-4ee0-ad0f-777ca93f7794 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/973066245"}, "pid": "8781", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:37.520536 2024-07-17 09:30:37.520548 81ff559e-d407-4865-ae5e-7a2896a227dd {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/973066261"}, "pid": "8782", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:37.63294 2024-07-17 09:30:37.632948 38a7e8a2-6c7d-4aa0-8cbb-2824d1224a0e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/973071648"}, "pid": "8783", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:37.730417 2024-07-17 09:30:37.730423 9a3766a9-64f3-422f-a8f6-7347dd218b1c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/97424225X"}, "pid": "8784", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:37.828733 2024-07-17 09:30:37.828744 1f103fe8-60ee-4b7f-aa4b-afe2b20675fc {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/974245747"}, "pid": "8785", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:37.929263 2024-07-17 09:30:37.929274 662c17cc-1a2d-4e5b-a917-d164c26c8254 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/975328573"}, "pid": "8786", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:38.013264 2024-07-17 09:30:38.013268 cba80594-23cc-4335-973c-973a4c64644a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/975958925"}, "pid": "8787", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:38.061789 2024-07-17 09:30:38.061792 1083eb86-efa8-4f47-8b10-7a76f2a0dadb {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/978923855"}, "pid": "8788", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:38.140493 2024-07-17 09:30:38.140502 94ba9908-8c23-40b4-b7d9-3b1d786100c3 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/978966228"}, "pid": "8789", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:38.22919 2024-07-17 09:30:38.229195 054201c1-b0cb-4b73-8a3b-cb215c4a5ef3 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/979131529"}, "pid": "8790", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:38.309414 2024-07-17 09:30:38.309423 88768841-71e9-4a0c-a13a-55ccc91e7127 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/980891248"}, "pid": "8791", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:38.409465 2024-07-17 09:30:38.409476 2cc36cbc-7fe6-42dd-8545-4349edc1191e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/984645942"}, "pid": "8792", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:38.502013 2024-07-17 09:30:38.50205 72c1fa87-89df-4009-b414-d205a526387c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/985253576"}, "pid": "8793", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:38.598964 2024-07-17 09:30:38.598972 f7488b84-08d1-4d03-a5ab-3b1143b5e1dd {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/98831326X"}, "pid": "8794", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:38.696179 2024-07-17 09:30:38.696189 b65aed2c-11e8-45e2-80ed-6381f4794dac {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/989505952"}, "pid": "8795", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:38.78073 2024-07-17 09:30:38.780738 8ccbaf6d-647d-4242-8bc5-d9074fb4345e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/992346371"}, "pid": "8796", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:38.999506 2024-07-17 09:30:38.999515 5fc777dc-42d2-4f78-b548-218bb40d8ca8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/994536666"}, "pid": "8797", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:39.085073 2024-07-17 09:30:39.085078 1f1ff05b-159e-49df-817e-dd1e18164d63 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/995191506"}, "pid": "8798", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:39.142487 2024-07-17 09:30:39.142496 fc75c01b-85da-4690-b2cb-d3125456e12c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/996155910"}, "pid": "8799", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 -2024-07-17 09:30:39.236672 2024-07-17 09:30:39.236681 3b216138-be66-4b66-a316-50449dffadb6 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/996588051"}, "pid": "8800", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:50.322864 2024-09-11 09:10:50.322866 f0fa866e-e2fe-43d8-8b10-d211f393fcc6 {"pid": "10217", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027218562"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:50.385509 2024-09-11 09:10:50.385511 ac077780-9d60-4139-8283-29f7a1d4b4b2 {"pid": "10218", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027218856"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:50.429437 2024-09-11 09:10:50.42944 db1f8eaa-c3a3-44e1-b6a9-3cd2bc853dad {"pid": "10219", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027219224"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:50.471445 2024-09-11 09:10:50.471448 461642f6-e288-4ac4-9611-77d875200b3f {"pid": "10220", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027219631"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:50.526394 2024-09-11 09:10:50.526399 406dbc5c-ae49-403f-bdca-3fc8ac0e38b7 {"pid": "10221", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027220389"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:50.573449 2024-09-11 09:10:50.573452 666b0fce-e96d-450f-8b35-140b3d493114 {"pid": "10222", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027222608"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:50.628615 2024-09-11 09:10:50.628617 c846fc0c-7b7b-419e-ab89-3711999c2492 {"pid": "10223", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027222950"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:50.669951 2024-09-11 09:10:50.669953 d1961e4d-b55e-4eb7-8218-7b46b1ef2521 {"pid": "10224", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027223736"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:50.712874 2024-09-11 09:10:50.712878 c59dfa39-9de3-4221-9dcf-d5937d64ae22 {"pid": "10225", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027223760"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:50.754729 2024-09-11 09:10:50.754732 712c2143-e309-488a-86b6-1b08ec2cab12 {"pid": "10226", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027223779"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:50.796598 2024-09-11 09:10:50.796601 78fd6349-e5b4-4024-a688-9981cf6e2a54 {"pid": "10227", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027224570"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:50.853789 2024-09-11 09:10:50.853792 9252d3a4-8ac3-4e47-bc89-116dce61413d {"pid": "10228", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027225399"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:50.913792 2024-09-11 09:10:50.913802 12638eae-e101-4fe9-a6ce-3ce2d3554bed {"pid": "10229", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027225984"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:50.973875 2024-09-11 09:10:50.973884 4ae5e057-2a1a-4f85-ba45-9582c008df8d {"pid": "10230", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027227472"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:51.03916 2024-09-11 09:10:51.039165 2ddfcbb0-8a23-4569-bbd5-89961446185e {"pid": "10231", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027227871"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:51.08643 2024-09-11 09:10:51.086433 24216b06-0ee9-43a4-9c90-71faee3e9c05 {"pid": "10232", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027228878"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:51.139276 2024-09-11 09:10:51.139284 e1431980-c680-4ad4-a22e-5e4224b203ca {"pid": "10233", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027229211"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:51.205421 2024-09-11 09:10:51.20543 609cffdd-2b6e-4a81-a493-a162507df70e {"pid": "10234", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027230309"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:51.260073 2024-09-11 09:10:51.260077 4b4863b7-b09f-4287-a6d8-b6395142764d {"pid": "10235", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027230422"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:51.321176 2024-09-11 09:10:51.32118 b9e57404-70af-4634-8e87-2ff9d594edf1 {"pid": "10236", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027230430"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:51.381598 2024-09-11 09:10:51.381609 55fd4d98-d716-4e86-aa70-5241ffc19832 {"pid": "10237", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027231585"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:51.45642 2024-09-11 09:10:51.456429 5cd75fbf-fa48-45f4-9142-b9a3d8499c32 {"pid": "10238", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027234274"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:51.525261 2024-09-11 09:10:51.525264 ed34bfe1-15f0-473b-8f5a-9d1a477d9562 {"pid": "10239", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027234592"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:51.568686 2024-09-11 09:10:51.568689 010b77f0-2b5a-4c6c-a364-c4757dd9b931 {"pid": "10240", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027235769"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:51.615028 2024-09-11 09:10:51.615031 2362def3-87c3-45de-94fd-541c5c0f5215 {"pid": "10241", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027236153"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:51.676849 2024-09-11 09:10:51.676859 61c7fa89-5849-404f-99ba-29256ed87cdf {"pid": "10242", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027236668"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:51.735502 2024-09-11 09:10:51.735505 1a14f1b9-dc4d-4000-bda0-9c0afd582add {"pid": "10243", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027237257"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:51.783062 2024-09-11 09:10:51.783064 a53cf922-544f-4902-aa93-8116d95c51c3 {"pid": "10244", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027238423"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:51.859016 2024-09-11 09:10:51.85902 47d9d338-ce7c-4c98-b230-82bdf4a42873 {"pid": "10245", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027239365"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:51.923282 2024-09-11 09:10:51.92329 383fba6d-16f1-4b0b-bd06-07b50ebd2583 {"pid": "10246", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027240525"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:51.986052 2024-09-11 09:10:51.986055 3907c869-a355-4fe3-9436-7b2e8cca6a2c {"pid": "10247", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027241912"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:52.057569 2024-09-11 09:10:52.057573 4b39c52f-5d3f-4348-9ef2-b29f62245439 {"pid": "10248", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027242005"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:52.127577 2024-09-11 09:10:52.127581 dc5094f1-63ec-4a5c-9f11-178e0d8d10f2 {"pid": "10249", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027242676"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:52.186729 2024-09-11 09:10:52.186738 a9f694c0-179a-4666-856a-ff44faa2fd90 {"pid": "10250", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027243265"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:52.239253 2024-09-11 09:10:52.239255 d36987c4-365e-4421-a1be-f02d0f355857 {"pid": "10251", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/02724606X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:52.301485 2024-09-11 09:10:52.301494 ee05f35e-06e8-4a67-8abe-53a4f041e515 {"pid": "10252", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027247740"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:52.371843 2024-09-11 09:10:52.371847 630129d4-3878-45cd-b87e-67ff1841c645 {"pid": "10253", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027248704"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:52.433323 2024-09-11 09:10:52.433331 9fa81e45-d69a-4fa4-afb4-95275a829277 {"pid": "10254", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027248933"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:52.502987 2024-09-11 09:10:52.50299 43757ced-76de-4b46-9395-300053d5d2c0 {"pid": "10255", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027250199"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:52.56612 2024-09-11 09:10:52.566122 61d7ff3c-55da-423a-b2e3-18b51f821345 {"pid": "10256", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027250210"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:52.618425 2024-09-11 09:10:52.618433 40e6f0a9-7ff3-40aa-a383-9be551814ab2 {"pid": "10257", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027250245"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:52.686778 2024-09-11 09:10:52.686786 80790f49-e7ce-4e3a-8de0-9124d4769020 {"pid": "10258", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027250393"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:52.739179 2024-09-11 09:10:52.739183 21357f7e-f06b-4faf-95fa-f5e85423f8e3 {"pid": "10259", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027250407"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:52.790073 2024-09-11 09:10:52.790076 74eb9b27-16f2-41b1-b457-ca483eed246b {"pid": "10260", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027250547"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:52.843449 2024-09-11 09:10:52.843452 8eadf9f2-8bb1-41e7-9a82-4f39a75d5d5b {"pid": "10261", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027250636"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:52.904732 2024-09-11 09:10:52.90474 72642019-ca40-41b1-be86-3231a7728d7c {"pid": "10262", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027250695"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:52.965231 2024-09-11 09:10:52.96524 48a2680f-0c32-4180-866b-55c393d4539d {"pid": "10263", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027250857"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:53.030149 2024-09-11 09:10:53.030158 a24a5dd5-0de3-4226-9b2c-b5714603450e {"pid": "10264", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027250873"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:53.08322 2024-09-11 09:10:53.083222 95dea0dd-e5f7-4b2f-aebc-63ccdf3d1d55 {"pid": "10265", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/02725089X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:53.138425 2024-09-11 09:10:53.138429 0c543b99-123d-455a-a0e8-3544758ff8b4 {"pid": "10266", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/02725108X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:53.212253 2024-09-11 09:10:53.212258 fa6a52df-3edc-4a5b-a8cc-724cb0123978 {"pid": "10267", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027251160"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:53.288119 2024-09-11 09:10:53.288124 d915470e-f600-4413-af55-2dacb60f7307 {"pid": "10268", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027251594"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:53.34972 2024-09-11 09:10:53.349723 303f2893-57d3-46ef-baec-241e31083a6d {"pid": "10269", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027251659"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:53.400438 2024-09-11 09:10:53.400441 ecdfbe45-0ad9-4d98-babb-0d81910384a6 {"pid": "10270", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027251810"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:53.455685 2024-09-11 09:10:53.455687 450c8cb0-de4d-4219-92b3-de27eca44551 {"pid": "10271", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027251861"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:53.518307 2024-09-11 09:10:53.518315 beb80507-03b7-4621-aa96-ccf8cc73aa7e {"pid": "10272", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027252132"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:53.579052 2024-09-11 09:10:53.579056 faa3b989-8b9b-4976-8081-8a9f21f39ce8 {"pid": "10273", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027252175"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:53.640641 2024-09-11 09:10:53.64065 ce322ca9-5919-4e8b-890b-639848355ef8 {"pid": "10274", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027252272"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:53.723459 2024-09-11 09:10:53.723461 78c0febb-6e61-4993-b7e6-76cf697b9f83 {"pid": "10275", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027252485"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:53.78059 2024-09-11 09:10:53.780594 93bb1d0d-ce77-4141-959a-64469ca6cf59 {"pid": "10276", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027252620"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:53.837125 2024-09-11 09:10:53.837127 34eb82dc-73eb-468e-98da-fcdc57e467ff {"pid": "10277", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027252728"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:53.894757 2024-09-11 09:10:53.894762 3903ac41-7788-40d4-9ae9-9e173ea64ebb {"pid": "10278", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027255697"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:53.955581 2024-09-11 09:10:53.95559 a36e3178-f7fd-412d-8154-7189745fc0f1 {"pid": "10279", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027256693"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:54.015612 2024-09-11 09:10:54.015617 4c05ee96-82a9-48af-af58-52787eef0d54 {"pid": "10280", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027257525"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:54.075168 2024-09-11 09:10:54.075172 7ca9b055-a73c-4288-a299-ec0cbff2ce77 {"pid": "10281", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027259641"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:54.135358 2024-09-11 09:10:54.135362 68632e21-e242-4f93-8b43-168db3409f0e {"pid": "10282", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027259811"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:54.197233 2024-09-11 09:10:54.197237 a809230f-df2c-4be6-b6cb-75686b5bef63 {"pid": "10283", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027260011"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:54.253835 2024-09-11 09:10:54.253838 87c1524b-cd0f-43bc-ab87-9f7485339416 {"pid": "10284", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/02726002X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:54.320577 2024-09-11 09:10:54.320585 82c30df4-08b4-4d4d-b381-dbcaf0b44c9c {"pid": "10285", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027260461"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:54.401197 2024-09-11 09:10:54.4012 db201a3f-ae16-4ba6-aa85-c8994a3f0357 {"pid": "10286", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027260607"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:54.464369 2024-09-11 09:10:54.464373 73879717-6a30-463a-95da-f2afa898cbfe {"pid": "10287", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027261050"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:54.545073 2024-09-11 09:10:54.545082 7ca5cde4-9073-4cd7-bc92-cf3461b57824 {"pid": "10288", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027261204"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:54.594302 2024-09-11 09:10:54.594305 5636e1c2-8197-4122-9752-8bb0d9a6f689 {"pid": "10289", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027261336"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:54.652895 2024-09-11 09:10:54.652897 743e6c4a-2908-44c9-83a8-636162416502 {"pid": "10290", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027261417"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:54.711851 2024-09-11 09:10:54.711855 89265bc4-6f19-4ebd-9fdf-c0c76d22d628 {"pid": "10291", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027261530"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:54.777636 2024-09-11 09:10:54.777645 e7807a62-5dd5-4313-bca4-bb4e23ce497d {"pid": "10292", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027262111"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:54.84099 2024-09-11 09:10:54.840998 37b6c3ac-3974-4169-85fb-75ed0a919b74 {"pid": "10293", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027262464"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:54.906133 2024-09-11 09:10:54.90614 12112441-7793-4e59-816a-f817ee7666ea {"pid": "10294", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027262545"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:54.975687 2024-09-11 09:10:54.97569 83a942ac-ff4d-47a3-b349-ccf7e6d3f1ec {"pid": "10295", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027262685"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:55.03823 2024-09-11 09:10:55.038235 7bc6cf20-392d-4b3c-8288-23aeb473e3d2 {"pid": "10296", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027263053"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:55.104918 2024-09-11 09:10:55.104926 ee8a432e-3c60-4d01-b7cf-e9e9d49ce55a {"pid": "10297", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027263118"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:55.157243 2024-09-11 09:10:55.157247 b0eb177c-d704-47a7-ba2f-733e13106147 {"pid": "10298", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027263193"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:55.228616 2024-09-11 09:10:55.228621 d1b31f7a-cd71-48ee-994a-dc525e8c88dd {"pid": "10299", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027263495"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:55.291815 2024-09-11 09:10:55.291823 d3b47cff-9c70-443d-b541-9190d5039a2e {"pid": "10300", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027263746"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:55.36552 2024-09-11 09:10:55.365523 eef67fa7-9ace-45c7-9225-5d34b5d549f2 {"pid": "10301", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027263762"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:55.43368 2024-09-11 09:10:55.433684 466c497c-1b36-4d34-95ff-c9ce796a4dc4 {"pid": "10302", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027263789"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:55.51465 2024-09-11 09:10:55.514654 026830f5-4d88-4399-b438-eab7535612bf {"pid": "10303", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027263878"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:55.569036 2024-09-11 09:10:55.569039 d202517b-9dfb-46d7-9d8a-89f0ac19ce87 {"pid": "10304", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027264602"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:55.624709 2024-09-11 09:10:55.624714 e6125468-39da-45ec-9e47-4aef0a746dcb {"pid": "10305", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027265013"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:55.704718 2024-09-11 09:10:55.704725 cc04857b-e9a4-4dc4-a879-09b04c075f01 {"pid": "10306", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027266060"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:55.765318 2024-09-11 09:10:55.765326 a305e188-276c-4962-ad3e-14980ed2b28e {"pid": "10307", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027267873"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:55.835461 2024-09-11 09:10:55.835469 e9eec8fd-d045-4791-8921-2c114044ed56 {"pid": "10308", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027274241"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:55.898351 2024-09-11 09:10:55.898355 466a05b7-ed1c-4dff-beb7-a3a32aea0e27 {"pid": "10309", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027274365"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:55.962724 2024-09-11 09:10:55.962728 bd4d6c88-bfe4-4ef0-bc7e-54984429c35b {"pid": "10310", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027274985"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:56.039231 2024-09-11 09:10:56.039234 e9cb2312-ab1b-49a8-acaf-edca9a3b186c {"pid": "10311", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027275191"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:56.095425 2024-09-11 09:10:56.095428 8eccd719-7150-484a-890f-f7c4463ed037 {"pid": "10312", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027283496"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:56.163428 2024-09-11 09:10:56.163437 f52067ac-ba0b-4f70-b1a5-531097a446d2 {"pid": "10313", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027283518"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:56.229375 2024-09-11 09:10:56.229378 ff417e25-beec-4636-8b24-e7ace09639bd {"pid": "10314", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027286703"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:56.293421 2024-09-11 09:10:56.293424 0cdf3201-2057-4191-925c-4e1633ed8cb1 {"pid": "10315", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027286835"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:56.360146 2024-09-11 09:10:56.360151 c372bdaf-433e-4992-b237-1b5c0e64a7a3 {"pid": "10316", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027288951"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:56.434348 2024-09-11 09:10:56.434353 911c06ba-d6d5-4129-8994-67062038083d {"pid": "10317", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027290530"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:56.491805 2024-09-11 09:10:56.491809 0716cbde-ffdc-46a3-b03f-c24c664109b0 {"pid": "10318", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027291499"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:56.556475 2024-09-11 09:10:56.556479 e04a097e-931c-4d1d-9a02-61b0fd996a4a {"pid": "10319", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027296946"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:56.617258 2024-09-11 09:10:56.617262 bb0eaa15-e229-41a8-b13e-d5d10cb61c68 {"pid": "10320", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027296970"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:56.68287 2024-09-11 09:10:56.682874 5d739b16-bb18-4ee5-bb52-a0f22abffb7e {"pid": "10321", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027297810"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:56.74873 2024-09-11 09:10:56.748733 5dba4f43-eb7b-48e8-9761-465707858fd1 {"pid": "10322", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027298531"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:56.815933 2024-09-11 09:10:56.815943 09f3b488-58cb-40dd-9b3b-186b1b4968e4 {"pid": "10323", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027298728"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:56.886686 2024-09-11 09:10:56.88669 749e3209-c759-4e3e-b894-3633768e10a8 {"pid": "10324", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027308561"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:56.958223 2024-09-11 09:10:56.958232 402510d7-e740-4b8b-937c-2bd266850268 {"pid": "10325", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027311058"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:57.03585 2024-09-11 09:10:57.035856 8d07c557-26f5-4b4e-a150-ce8087597217 {"pid": "10326", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027311430"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:57.089053 2024-09-11 09:10:57.089055 4e44e63d-4428-434f-b33d-e91fd829542b {"pid": "10327", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027311694"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:57.149506 2024-09-11 09:10:57.14951 ce7676cc-6633-4fd5-af13-eee6a6eecbac {"pid": "10328", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027314049"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:57.217513 2024-09-11 09:10:57.217516 c299b186-d109-42cc-a4c0-1cea294ffea0 {"pid": "10329", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027316696"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:57.265106 2024-09-11 09:10:57.265108 28c9a811-6dcf-4b4a-becd-356f25b5a9f7 {"pid": "10330", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027316866"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:57.333782 2024-09-11 09:10:57.333791 2184f39d-f58c-43d8-9645-d91805e199e8 {"pid": "10331", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027321940"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:57.394733 2024-09-11 09:10:57.394737 92944bef-9488-4d7b-884a-bdc368254fce {"pid": "10332", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027323072"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:57.458819 2024-09-11 09:10:57.458824 dfbe6494-32d7-44bf-8254-d027a01c4326 {"pid": "10333", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027326977"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:57.543881 2024-09-11 09:10:57.543889 e22fb5c7-e2a4-48fd-bd82-a3041bf14125 {"pid": "10334", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027333752"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:57.597251 2024-09-11 09:10:57.597253 6575475d-1b4b-4460-8155-f84369e6f61a {"pid": "10335", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027334279"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:57.674667 2024-09-11 09:10:57.674672 a0818db9-cebd-4b61-85f7-5f2c76d98b02 {"pid": "10336", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027340880"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:57.734781 2024-09-11 09:10:57.734784 40287aa8-b40a-43c1-8507-601e1750a3dd {"pid": "10337", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027341046"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:57.802745 2024-09-11 09:10:57.802751 9c26b746-90d7-42b6-8f95-045e09d3005f {"pid": "10338", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027341879"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:57.863117 2024-09-11 09:10:57.863125 af36803b-6dac-41a9-8311-69c79ee7449e {"pid": "10339", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027345483"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:57.930539 2024-09-11 09:10:57.930547 78a5b1ef-7b32-4d7d-ae34-9d3938af9ce4 {"pid": "10340", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027348695"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:57.992806 2024-09-11 09:10:57.992815 117e7c5e-5eb5-4e14-a6e5-2f57e2144192 {"pid": "10341", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027349004"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:58.060478 2024-09-11 09:10:58.060481 eb54b5b2-7186-4ca2-8d0c-17a150468082 {"pid": "10342", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027350169"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:58.118844 2024-09-11 09:10:58.118852 df0fc2b1-63b1-49a8-afcc-214c4a15d6ae {"pid": "10343", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027350843"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:58.183278 2024-09-11 09:10:58.183282 0a767375-be85-46d1-9617-e86f51b7e181 {"pid": "10344", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027350991"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:58.240438 2024-09-11 09:10:58.240441 cf519bd5-e623-4e6a-9e22-98726a5c41b3 {"pid": "10345", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027351076"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:58.31703 2024-09-11 09:10:58.317042 d66e53e2-0a1e-4c72-894f-9b52061f6ffb {"pid": "10346", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027353990"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:58.396128 2024-09-11 09:10:58.396132 49c46e70-492b-45b3-9cfb-1fad4cdf306e {"pid": "10347", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027356388"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:58.460554 2024-09-11 09:10:58.460562 df582dc8-5c7f-499d-ac2b-9f4fdc1a88e1 {"pid": "10348", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027358100"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:58.52794 2024-09-11 09:10:58.527949 9cc572e9-50b4-4f80-8590-28900d2550cf {"pid": "10349", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027358232"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:58.591187 2024-09-11 09:10:58.591191 43e45e58-98fb-48c4-ac37-c30f08eb0065 {"pid": "10350", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027358305"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:58.661002 2024-09-11 09:10:58.661006 5b19eb47-fd00-4144-b144-95caf16830a3 {"pid": "10351", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027358321"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:58.718948 2024-09-11 09:10:58.71895 d0ceb97a-c0dd-4bf2-beed-0235cb44f237 {"pid": "10352", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027358399"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:58.783385 2024-09-11 09:10:58.783393 4c7bb73d-8512-4d8a-a51f-78d0a2ea73da {"pid": "10353", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027359336"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:58.870707 2024-09-11 09:10:58.87071 0c7bc22d-c0ef-4030-b069-1a6d235f8dbd {"pid": "10354", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027360199"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:58.934372 2024-09-11 09:10:58.934379 3f6ff911-57a2-46f1-972f-73a3bd46b199 {"pid": "10355", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027360881"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:59.01585 2024-09-11 09:10:59.015853 e5c1a1b0-8791-4715-9d5e-d0e85ca1c38b {"pid": "10356", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027366456"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:59.068725 2024-09-11 09:10:59.068728 27f91903-c452-4321-b694-44db6b30c4b6 {"pid": "10357", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027366936"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:59.126431 2024-09-11 09:10:59.126436 97a7e9b0-3bc2-4379-9246-0ef97f14d531 {"pid": "10358", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/02736819X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:59.184274 2024-09-11 09:10:59.184282 9948133a-e539-476f-a55f-ad9bd1398c19 {"pid": "10359", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027368343"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:59.236337 2024-09-11 09:10:59.23634 2c42cb38-b3ed-4f38-bc74-f0474a925f6c {"pid": "10360", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027368785"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:59.30044 2024-09-11 09:10:59.300446 64b984e9-254f-4cc9-87c8-888a1de8083a {"pid": "10361", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027370763"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:59.374728 2024-09-11 09:10:59.374735 7934fa09-5066-4c97-b985-6e2e081dbae0 {"pid": "10362", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027372618"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:59.438063 2024-09-11 09:10:59.438067 e43927a0-3b0b-4460-ad59-bcb93fd64f25 {"pid": "10363", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027374750"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:59.501722 2024-09-11 09:10:59.501726 ff100ecc-9b5f-4b4b-898e-c8ff63b6a68f {"pid": "10364", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027374831"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:59.580413 2024-09-11 09:10:59.580417 044b8508-168a-4bff-8d34-02cf3d434146 {"pid": "10365", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027375080"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:59.640942 2024-09-11 09:10:59.640947 58e391b8-e56b-464f-979e-d7ee4d3d64e5 {"pid": "10366", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027375099"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:59.714606 2024-09-11 09:10:59.714611 ab712ab5-5032-4999-86cd-06d44d40b25f {"pid": "10367", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027375188"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:59.761905 2024-09-11 09:10:59.761907 3db215c0-f5ec-4c8f-98cb-a5d61948a110 {"pid": "10368", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027375412"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:59.820258 2024-09-11 09:10:59.820261 7f643bd8-606b-4c4e-992d-3eb72d1c6070 {"pid": "10369", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027375463"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:59.88083 2024-09-11 09:10:59.880834 5718ca7a-9293-47b2-9e7a-f0ac9af73c65 {"pid": "10370", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/02737601X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:10:59.946537 2024-09-11 09:10:59.946546 74dd9d24-511f-4051-b532-16d416ad50cc {"pid": "10371", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027377067"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:00.017836 2024-09-11 09:11:00.01784 9bb81914-759f-4cc8-a760-29ede9c9577d {"pid": "10372", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027377660"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:00.065964 2024-09-11 09:11:00.065969 1c3ff62d-add8-47f0-b1e3-d07f816d0ef9 {"pid": "10373", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027377768"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:00.138426 2024-09-11 09:11:00.138431 80073c9f-3ab9-4e9b-837c-b5c7b2a099dc {"pid": "10374", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027379647"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:00.207879 2024-09-11 09:11:00.207882 5e5fed16-50c8-4d57-a1a3-cbebc48855eb {"pid": "10375", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027381323"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:00.263886 2024-09-11 09:11:00.263894 a550d065-7083-4543-9994-eabbde3eeb3b {"pid": "10376", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027400212"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:00.318537 2024-09-11 09:11:00.318541 3fb3e658-a85a-49f0-b6c8-36fa118d49de {"pid": "10377", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027402193"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:00.366483 2024-09-11 09:11:00.366486 8d3f9cf3-5e2c-4055-8ede-91627ad56fc4 {"pid": "10378", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027405478"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:00.411711 2024-09-11 09:11:00.411714 4ec6597b-e477-4535-9f7d-628b460f595f {"pid": "10379", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027405621"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:00.456185 2024-09-11 09:11:00.456188 0a0826e6-ada1-48a7-9aae-0f423b0298ce {"pid": "10380", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027405753"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:00.504013 2024-09-11 09:11:00.504017 670b0ce8-f97f-47ab-8a85-d77ad6478ace {"pid": "10381", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027406415"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:00.567836 2024-09-11 09:11:00.567841 1a5740ef-e2d9-4b68-b7da-ce1bf81ff12b {"pid": "10382", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027406733"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:00.623339 2024-09-11 09:11:00.623344 06574fb6-ad30-48cb-a7bb-3943bf970592 {"pid": "10383", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027407012"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:00.703104 2024-09-11 09:11:00.703134 a2e4ea96-d09c-4151-8f4f-356fd92c2bea {"pid": "10384", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027407632"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:00.763062 2024-09-11 09:11:00.763064 e8fbfb9b-6b26-4a2a-bb5a-325920d80c7b {"pid": "10385", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027408310"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:00.823987 2024-09-11 09:11:00.82399 1dd62dc8-205d-423e-85a4-e281937c750d {"pid": "10386", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027408450"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:00.88334 2024-09-11 09:11:00.883348 fbdd2826-18d4-452b-bd44-7916816e0bbb {"pid": "10387", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027409317"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:00.943439 2024-09-11 09:11:00.943442 3506587c-2ea8-4d14-9947-101d99acda57 {"pid": "10388", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027418499"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:00.99994 2024-09-11 09:11:00.999945 232d93ba-c1c0-4ab2-ad51-28524906eafb {"pid": "10389", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027427374"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:01.066171 2024-09-11 09:11:01.066176 aac28ae9-d3ed-4217-9d51-1be78278ac8e {"pid": "10390", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027428095"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:01.1194 2024-09-11 09:11:01.119404 b7b54b7d-af3b-4d09-9004-5a7cad307745 {"pid": "10391", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027428672"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:01.186252 2024-09-11 09:11:01.18626 247b72be-4b10-4d47-8217-bcbc19c085b3 {"pid": "10392", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027429393"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:01.254251 2024-09-11 09:11:01.254259 bd0f61bb-5876-4152-bf78-e504366e202e {"pid": "10393", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027434125"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:01.318725 2024-09-11 09:11:01.318728 ba1c8fa4-7021-4928-ad2f-e29eb30e9c04 {"pid": "10394", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027434648"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:01.378957 2024-09-11 09:11:01.378965 26997ae7-57cc-4b4c-ac14-aa56c897853b {"pid": "10395", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027436810"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:01.44752 2024-09-11 09:11:01.447528 a5e57323-3998-4476-96a6-202cbe710338 {"pid": "10396", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027436837"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:01.516779 2024-09-11 09:11:01.516784 ab061461-e280-4b35-bf02-c20ab0958e70 {"pid": "10397", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027439658"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:01.583309 2024-09-11 09:11:01.583313 e99803cd-f71e-454c-9654-91d91fb36de6 {"pid": "10398", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027442128"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:01.629949 2024-09-11 09:11:01.629952 9afd037a-ddcc-433c-a357-0d9ea4297390 {"pid": "10399", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027442381"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:01.699013 2024-09-11 09:11:01.699021 c9bc95b6-4992-4f04-9ea7-94873cbf3a65 {"pid": "10400", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027442454"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:01.774738 2024-09-11 09:11:01.774744 ca521492-d960-404d-9eec-d184ed6239c6 {"pid": "10401", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027442462"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:01.845016 2024-09-11 09:11:01.845024 2e5eebe5-b776-4941-920c-9640033bed79 {"pid": "10402", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027443876"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:01.923707 2024-09-11 09:11:01.923717 60dc203f-1122-4a57-8f28-65d377c42288 {"pid": "10403", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/02744628X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:02.001525 2024-09-11 09:11:02.001534 1fd55023-b459-4850-b360-3bc637846364 {"pid": "10404", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027448177"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:02.074119 2024-09-11 09:11:02.074122 cfea5173-970c-4a04-8c80-f60d2b0cd0f2 {"pid": "10405", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/02745228X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:02.137067 2024-09-11 09:11:02.137069 dbf01dee-7a34-486b-aedc-bea11a06fddf {"pid": "10406", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027452816"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:02.20392 2024-09-11 09:11:02.203928 efd51b48-d92d-4ed5-bfbf-191e61a2d812 {"pid": "10407", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027463613"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:02.26407 2024-09-11 09:11:02.264074 8b74d121-f635-4154-91ae-8ddc58f0a6c9 {"pid": "10408", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027464180"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:02.325615 2024-09-11 09:11:02.325625 fc826bd6-0eaf-4c96-9724-39e1deb64914 {"pid": "10409", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027464512"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:02.388927 2024-09-11 09:11:02.38893 8ea1e609-070f-49d3-9021-33a176d38f98 {"pid": "10410", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027465012"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:02.453613 2024-09-11 09:11:02.453615 73f8faf1-ec0e-4146-9b3f-166e31b189dc {"pid": "10411", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027472906"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:02.527728 2024-09-11 09:11:02.527732 e70af394-4f68-48a9-a6f9-e07f65af9d9e {"pid": "10412", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027479056"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:02.588001 2024-09-11 09:11:02.588003 317d338a-42af-4e46-b25e-b54e69545628 {"pid": "10413", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027482928"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:02.648004 2024-09-11 09:11:02.648008 8a27f5d9-708e-451e-af72-af4b249e082c {"pid": "10414", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027483169"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:02.707459 2024-09-11 09:11:02.707464 12897292-ea33-4b24-9e6e-99776d4609d7 {"pid": "10415", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027483304"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:02.76648 2024-09-11 09:11:02.766489 345f4bc8-e1a3-4344-9ea0-e32e43baf0c2 {"pid": "10416", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/02748355X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:02.837002 2024-09-11 09:11:02.837007 70202833-cfc1-4364-9502-fcda9496ba5c {"pid": "10417", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027484319"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:02.905883 2024-09-11 09:11:02.905886 7f23305c-9b0c-44d9-9c3f-3896c64a7ed7 {"pid": "10418", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/02748498X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:02.96826 2024-09-11 09:11:02.968268 5cfa974d-8eec-4677-8a3b-90b4d34b3c09 {"pid": "10419", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027485552"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:03.049552 2024-09-11 09:11:03.04956 f3617ab3-6645-4728-9756-0d4d256757b5 {"pid": "10420", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027486354"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:03.101407 2024-09-11 09:11:03.10141 8c66bfff-16d4-4659-9e8b-695eefccdfc3 {"pid": "10421", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027491099"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:03.162668 2024-09-11 09:11:03.162676 a51e1ddb-1fca-46fd-a9c8-e7f4be97372b {"pid": "10422", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027492753"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:03.236323 2024-09-11 09:11:03.236328 ae32935b-72c1-41c2-b3e9-fa2d600a4412 {"pid": "10423", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027501302"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:03.29897 2024-09-11 09:11:03.298978 809c9b8d-e9ec-48a9-b27e-4bd84bab3a57 {"pid": "10424", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027501418"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:03.355107 2024-09-11 09:11:03.355111 847f9bd2-89d3-4929-a0b9-b277d7febb25 {"pid": "10425", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027502333"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:03.422301 2024-09-11 09:11:03.422311 80fc791f-19a8-448a-b79c-373b9561b172 {"pid": "10426", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027502368"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:03.487634 2024-09-11 09:11:03.487642 9c6f7bf5-cb0d-4fa5-ae77-c75374c9c165 {"pid": "10427", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027502775"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:03.550142 2024-09-11 09:11:03.550146 08136d5f-3a28-4ffa-a492-7e658553bdc6 {"pid": "10428", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027504271"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:03.602418 2024-09-11 09:11:03.60242 dd1d1b51-542f-4f91-ac35-9de2c45efda8 {"pid": "10429", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027504379"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:03.651765 2024-09-11 09:11:03.651768 3b222d54-8e43-481a-96b6-0baee921d5e5 {"pid": "10430", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027522296"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:03.708133 2024-09-11 09:11:03.708137 b40d4ca8-6db6-46a6-8bb3-8b1a26f53305 {"pid": "10431", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027528359"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:03.75567 2024-09-11 09:11:03.755672 42c34dde-5653-474b-8b7c-ceaa015412ae {"pid": "10432", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027544931"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:03.813293 2024-09-11 09:11:03.813303 9915cbf6-e017-42fc-ad5c-30c8347ed3b4 {"pid": "10433", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/02754785X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:03.880202 2024-09-11 09:11:03.880212 82bbedbb-0ebf-4823-ad6d-cac32c01a4e9 {"pid": "10434", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027552543"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:03.945442 2024-09-11 09:11:03.945452 9a2e9d3b-42f1-479b-a020-54f1af190cc2 {"pid": "10435", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027557758"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:04.010238 2024-09-11 09:11:04.010241 dae03935-cdfc-4c7d-a16f-ada66f6e58ba {"pid": "10436", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027563278"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:04.080212 2024-09-11 09:11:04.080217 ad491ea7-e72e-4707-88ce-e5cd9e132a1b {"pid": "10437", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027564053"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:04.130647 2024-09-11 09:11:04.130649 bf03ef41-6d39-4a1d-99ce-3a7d395eb368 {"pid": "10438", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027564223"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:04.193547 2024-09-11 09:11:04.193552 71ad593e-b570-409e-9672-bf7522803436 {"pid": "10439", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027579425"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:04.252023 2024-09-11 09:11:04.252025 3a0a3833-5778-4cb5-a2a4-ad6c370ada48 {"pid": "10440", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027584763"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:04.322156 2024-09-11 09:11:04.322164 7b6930cc-c9ca-4ea3-a469-eb5caab5655f {"pid": "10441", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027585190"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:04.399198 2024-09-11 09:11:04.399202 99a1e66c-bd33-4805-9dde-21f8d94fd744 {"pid": "10442", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027596591"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:04.457806 2024-09-11 09:11:04.457809 03118099-7cf7-4ac0-ad17-61f2a02bb5e7 {"pid": "10443", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027603504"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:04.520165 2024-09-11 09:11:04.520174 39338484-f475-4ab8-b007-e395e03b3ecb {"pid": "10444", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027603784"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:04.582578 2024-09-11 09:11:04.58258 2407021c-bfa2-4a51-b451-4d28acbb0f50 {"pid": "10445", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027606996"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:04.63737 2024-09-11 09:11:04.637375 1db1fec5-84e7-463d-a6d2-7f6bf8aa6632 {"pid": "10446", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/02761803X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:04.701852 2024-09-11 09:11:04.701856 9e6a71a5-2d4a-4636-9581-ed39ace553ab {"pid": "10447", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027621952"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:04.751445 2024-09-11 09:11:04.751448 e4749638-1a80-4531-a740-96342b75b293 {"pid": "10448", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027622444"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:04.819321 2024-09-11 09:11:04.819329 024cb0b6-7eb4-4271-bc26-d5c55e685fda {"pid": "10449", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/02763065X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:04.874407 2024-09-11 09:11:04.87441 18f25a31-271e-4e4e-a02d-d7188772b7ec {"pid": "10450", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027632571"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:04.936155 2024-09-11 09:11:04.936163 c1d468ed-bb96-4aac-9b79-976a05f5340f {"pid": "10451", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/02763857X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:05.010054 2024-09-11 09:11:05.010063 3aae10f9-42f2-4374-9bee-5457a6651f19 {"pid": "10452", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027645649"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:05.082766 2024-09-11 09:11:05.082769 f27f6299-6618-4625-bcd0-ee578468ef9a {"pid": "10453", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027656438"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:05.135482 2024-09-11 09:11:05.135486 c21006d5-f423-480d-b232-298258c73522 {"pid": "10454", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027668479"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:05.201587 2024-09-11 09:11:05.201591 92fbb4cb-ad62-4327-849b-4f625c7d8db3 {"pid": "10455", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027680231"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:05.251679 2024-09-11 09:11:05.251681 9bb4cf40-86ac-4741-92b4-1fe8846187be {"pid": "10456", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027693007"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:05.311393 2024-09-11 09:11:05.311397 3c93ffdc-f39e-4621-bf4d-6d680f8c7b41 {"pid": "10457", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027693805"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:05.372142 2024-09-11 09:11:05.372146 d3f02c48-af1e-4516-a854-d8031ad98989 {"pid": "10458", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027693821"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:05.43144 2024-09-11 09:11:05.431447 6bf1cfba-a019-4716-91c7-b9e5d95a48d0 {"pid": "10459", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027694658"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:05.498978 2024-09-11 09:11:05.498982 27f29f42-9174-4dc0-8cd8-3af5c63107bf {"pid": "10460", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027705781"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:05.567774 2024-09-11 09:11:05.567777 cf631cd8-c916-4533-bbf3-462f1563320c {"pid": "10461", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027722996"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:05.654046 2024-09-11 09:11:05.654057 5217eb2a-b635-4228-87f3-d312ba6bec68 {"pid": "10462", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027744795"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:05.730024 2024-09-11 09:11:05.730033 50edbfa0-17ac-405c-bcca-a626f3a7ead2 {"pid": "10463", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/02775751X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:05.803915 2024-09-11 09:11:05.80392 22ea057f-88be-45de-8c96-c11663726739 {"pid": "10464", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027764842"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:05.883362 2024-09-11 09:11:05.883371 8460e1d4-eea1-44a9-bf1d-5a5248c6d5a7 {"pid": "10465", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027768627"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:05.960801 2024-09-11 09:11:05.960805 58be8c30-9212-49aa-8219-50079d09b166 {"pid": "10466", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/02776866X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:06.024179 2024-09-11 09:11:06.024185 fcd06f40-4b7d-4a99-a352-4e84157d92ca {"pid": "10467", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027768678"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:06.084907 2024-09-11 09:11:06.084911 5635a1bc-b511-40ea-8a20-27130edd0fd6 {"pid": "10468", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027768686"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:06.162572 2024-09-11 09:11:06.162582 d45f56c8-98b9-4f18-b6c1-87cdb66739d4 {"pid": "10469", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027768694"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:06.23317 2024-09-11 09:11:06.233172 30a0cd4c-38e6-4df7-894f-7e007816336e {"pid": "10470", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027775348"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:06.292194 2024-09-11 09:11:06.292198 4e7453b0-4d60-4b23-957f-1c1605d4b710 {"pid": "10471", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027777456"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:06.355962 2024-09-11 09:11:06.355971 65ce0b44-c5b2-4579-bae3-02ed4a1bcc75 {"pid": "10472", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027785718"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:06.421156 2024-09-11 09:11:06.421166 73335d00-1c91-49d9-b16a-f21b7215fbb8 {"pid": "10473", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027806626"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:06.485728 2024-09-11 09:11:06.485736 d9d030f2-dc28-4773-8dad-a3bb93236c7c {"pid": "10474", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027812723"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:06.543771 2024-09-11 09:11:06.54378 5261ad2d-aac6-44a3-aa60-175dc6df6ebf {"pid": "10475", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027825558"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:06.601123 2024-09-11 09:11:06.601126 42e38ad0-8d56-4c2b-a52f-04b630aa769d {"pid": "10476", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027838935"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:06.665238 2024-09-11 09:11:06.665246 f4e9d22b-e436-4724-83b9-ea39bd158c6b {"pid": "10477", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027840883"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:06.736752 2024-09-11 09:11:06.736756 6fafe15f-7b9e-4551-9358-16126710204e {"pid": "10478", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027842959"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:06.7948 2024-09-11 09:11:06.794804 2e45555c-d9a7-4a28-9717-e5a2d3658fdf {"pid": "10479", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027848213"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:06.862208 2024-09-11 09:11:06.862212 5c264512-f119-4887-b1b4-6fc9a5c473ef {"pid": "10480", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027853128"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:06.941788 2024-09-11 09:11:06.941797 4f77d5a9-0eec-4b96-b404-0f2e4f235d91 {"pid": "10481", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027853136"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:07.01565 2024-09-11 09:11:07.015658 aa600bdf-7cdc-4f46-909a-2871203682e9 {"pid": "10482", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027860787"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:07.079209 2024-09-11 09:11:07.079212 cd930b2c-17ae-43dc-a7b0-30515323fd42 {"pid": "10483", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027875695"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:07.127331 2024-09-11 09:11:07.127333 bef7f825-8e37-49d0-9913-810f098afd7b {"pid": "10484", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027875717"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:07.184403 2024-09-11 09:11:07.184407 7781e132-4de7-4ba6-8fca-033eae1028e9 {"pid": "10485", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027875725"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:07.244833 2024-09-11 09:11:07.244841 7249f834-318d-40ac-a7b6-1801619d3ec5 {"pid": "10486", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027883000"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:07.30533 2024-09-11 09:11:07.305336 d0872a35-8967-45ce-9872-24f0a291ec5b {"pid": "10487", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027935280"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:07.371924 2024-09-11 09:11:07.371928 ea4c4bb4-1cf3-4fd1-903e-5b47537128f4 {"pid": "10488", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027945774"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:07.437445 2024-09-11 09:11:07.437453 e4da48aa-e8dc-44b7-ae8c-155452f906e9 {"pid": "10489", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027949117"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:07.497453 2024-09-11 09:11:07.497461 de340018-8c4b-4945-80ed-e6a0e11fecbc {"pid": "10490", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/027952800"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:07.552341 2024-09-11 09:11:07.552344 d3c370a5-94b7-4c6f-9f86-5f39977e33c0 {"pid": "10491", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028036336"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:07.603275 2024-09-11 09:11:07.603277 0c82d192-f566-464d-8f93-475042731a8d {"pid": "10492", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028097505"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:07.650062 2024-09-11 09:11:07.650066 73b09e12-6714-4d10-9bed-7336f7bd8fd5 {"pid": "10493", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028135903"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:07.756357 2024-09-11 09:11:07.756362 fce795fa-1b85-48bb-b24c-0677421cfa7e {"pid": "10494", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028141814"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:07.835344 2024-09-11 09:11:07.835349 b2b15435-308e-45b3-bd31-e0c2db33b09f {"pid": "10495", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028146212"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:07.896024 2024-09-11 09:11:07.896028 4c002b40-d1cb-451d-b666-5be33f7c73b3 {"pid": "10496", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028172825"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:07.954327 2024-09-11 09:11:07.954332 516c89fa-a32c-459b-ad98-b13d2615f25b {"pid": "10497", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/02817450X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:08.028649 2024-09-11 09:11:08.028657 2d74a62e-e5fe-4c2e-916c-b172489c89f7 {"pid": "10498", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028180135"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:08.086993 2024-09-11 09:11:08.086996 d7179ba4-65ca-4f52-b438-ff7ad0e545e6 {"pid": "10499", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028201922"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:08.141634 2024-09-11 09:11:08.141638 41fb73e1-96e2-4228-a9d3-2fcc01474afa {"pid": "10500", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028212967"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:08.213935 2024-09-11 09:11:08.21394 894bfa81-02ca-49be-a94c-1ab5709e4422 {"pid": "10501", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028212991"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:08.275153 2024-09-11 09:11:08.275158 049bfd9c-2379-44cd-bfdc-768252a91234 {"pid": "10502", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028213017"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:08.345731 2024-09-11 09:11:08.345736 ab00d2af-a8b2-4f19-a1ba-b12df34d5d33 {"pid": "10503", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028215346"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:08.410936 2024-09-11 09:11:08.410943 4a146cc2-8cd3-4c9a-bd4a-8c2ab132478a {"pid": "10504", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028217160"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:08.483147 2024-09-11 09:11:08.483151 40dc15e6-1394-45c8-b661-a9b806a40e09 {"pid": "10505", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028245431"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:08.552699 2024-09-11 09:11:08.552703 07f90397-0407-49cf-973d-bfbf2d2b6dd7 {"pid": "10506", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028289129"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:08.608501 2024-09-11 09:11:08.608504 3399638b-f477-4b28-b999-ac6c2a860221 {"pid": "10507", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028355431"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:08.663595 2024-09-11 09:11:08.663603 70d68f5e-9ea5-4b58-80fb-c900953307ad {"pid": "10508", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028366360"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:08.722482 2024-09-11 09:11:08.722485 eec915f4-9577-4ee7-bbc8-b68b904a2299 {"pid": "10509", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028388569"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:08.782378 2024-09-11 09:11:08.782382 397ba708-7236-4397-b1a1-16b03a79d5c5 {"pid": "10510", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028411773"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:08.841861 2024-09-11 09:11:08.841869 20e3aa36-3b3a-4d5d-b427-2151da6494c0 {"pid": "10511", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028554108"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:08.90685 2024-09-11 09:11:08.906853 7bb49d54-187e-4717-a315-03d4872512fb {"pid": "10512", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028565924"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:08.967572 2024-09-11 09:11:08.967581 74ea6ae4-a6fa-4427-960b-020a4564d5aa {"pid": "10513", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028567005"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:09.035424 2024-09-11 09:11:09.035432 f71d2766-57b3-4f22-af7e-1afb267474c9 {"pid": "10514", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028601475"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:09.091407 2024-09-11 09:11:09.09141 23607ea1-a45c-4f8b-b03a-ddfc065ae357 {"pid": "10515", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028654706"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:09.139605 2024-09-11 09:11:09.139608 617bbc5e-599c-4faf-b8b8-ae25a628c338 {"pid": "10516", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028695984"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:09.195234 2024-09-11 09:11:09.195242 5b81b754-6be5-446f-bc05-3e28a9a90eb9 {"pid": "10517", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028700570"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:09.247172 2024-09-11 09:11:09.247176 8502abea-40ef-4d00-afe9-852640f59883 {"pid": "10518", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/02870097X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:09.303351 2024-09-11 09:11:09.303356 427d6613-f70b-4802-88f4-ef4cc180e4b5 {"pid": "10519", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028706137"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:09.367695 2024-09-11 09:11:09.367704 fa66f4a3-e8e9-429a-93d3-ccf4f982e4f5 {"pid": "10520", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028727444"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:09.436793 2024-09-11 09:11:09.436797 d27688ac-b48d-40e9-a525-daf512d12984 {"pid": "10521", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028877764"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:09.509426 2024-09-11 09:11:09.509435 133a8c8c-d959-4743-a1da-15b7373fdeaa {"pid": "10522", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028889460"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:09.582393 2024-09-11 09:11:09.582397 8316fcd3-926c-415f-94e7-78d85d937d23 {"pid": "10523", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028913663"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:09.631812 2024-09-11 09:11:09.631814 b1a84e32-9c55-478b-bff4-41dfdeb0992e {"pid": "10524", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028928709"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:09.694369 2024-09-11 09:11:09.694376 fdc9dac1-0acb-4a62-8a35-dbe807bc8c86 {"pid": "10525", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028931491"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:09.756184 2024-09-11 09:11:09.756192 a41c45b0-040e-46b3-8dbb-92bdd43c846d {"pid": "10526", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028979885"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:09.824111 2024-09-11 09:11:09.82412 86d90c58-dfe2-4614-a11d-c684bc02c58a {"pid": "10527", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028988310"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:09.89427 2024-09-11 09:11:09.894278 48580d2f-9fba-4403-8246-957ef3ae70a1 {"pid": "10528", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028991575"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:09.95436 2024-09-11 09:11:09.954368 fb3b09fc-ea05-4fd7-8cee-7f4ec697ba4f {"pid": "10529", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028992105"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:10.026311 2024-09-11 09:11:10.026321 5d3d6c56-0869-4fde-a0d6-6782e63e2b8d {"pid": "10530", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028992318"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:10.082975 2024-09-11 09:11:10.082978 b50598b1-89d0-4309-b2a9-7ba929fc7f81 {"pid": "10531", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028996593"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:10.142309 2024-09-11 09:11:10.142318 6aab830f-8a4d-4ece-b5fb-e51904ebfdf0 {"pid": "10532", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/028996690"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:10.215013 2024-09-11 09:11:10.215017 bed0b085-fa5f-4266-808c-a45f16f259d9 {"pid": "10533", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/029152887"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:10.272907 2024-09-11 09:11:10.272915 0208b43a-8f1b-42b9-8646-1f99891f5965 {"pid": "10534", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/029183340"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:10.331871 2024-09-11 09:11:10.331873 28056564-1679-4157-a294-f8a22d56d736 {"pid": "10535", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/029216540"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:10.396305 2024-09-11 09:11:10.396312 ff984a8c-e35a-4850-8f32-9b35a460628d {"pid": "10536", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/029220661"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:10.463515 2024-09-11 09:11:10.463519 ac15382e-7b31-4184-83e2-c8b91ac48e73 {"pid": "10537", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/029345529"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:10.52021 2024-09-11 09:11:10.520213 208627d9-ec87-4baa-8fe7-d829e0a8cf5c {"pid": "10538", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/029368707"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:10.585031 2024-09-11 09:11:10.585034 2c1491cd-08d6-4b19-94dc-e5c8c89e0263 {"pid": "10539", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/029453208"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:10.645791 2024-09-11 09:11:10.645796 5af93d0c-13c3-49f0-b35d-5722f60e56bd {"pid": "10540", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/029459060"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:10.71891 2024-09-11 09:11:10.718913 452c9453-5705-4478-bb38-4232ee7d6791 {"pid": "10541", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/029502764"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:10.781514 2024-09-11 09:11:10.781522 ebce28d5-e068-43a7-9b92-500f4332ec76 {"pid": "10542", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/029508347"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:10.848241 2024-09-11 09:11:10.848248 1a090bb6-f56a-41c4-93cd-60db455d1f87 {"pid": "10543", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/029571219"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:10.910637 2024-09-11 09:11:10.910646 7999415e-4e7b-4fd8-bd8b-48fbcf5d7b58 {"pid": "10544", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/029592259"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:10.970629 2024-09-11 09:11:10.970633 36503a28-7e0a-40c6-b5ca-8091abc7d47e {"pid": "10545", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/029680344"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:11.031862 2024-09-11 09:11:11.031864 1641bb33-820e-4490-8b1a-d782b8d701c8 {"pid": "10546", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/029693756"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:11.088609 2024-09-11 09:11:11.088611 3dd7f1b0-b15d-4a25-933d-7c2aac2033bd {"pid": "10547", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/029693772"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:11.145178 2024-09-11 09:11:11.145184 9ef07a44-4a20-41c4-975d-8f45b85ccecf {"pid": "10548", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/02976436X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:11.204643 2024-09-11 09:11:11.204651 8c6f19d0-4bb7-45f0-96e1-248e19d25e61 {"pid": "10549", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/029805279"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:11.258977 2024-09-11 09:11:11.258981 134913be-97c0-4066-a259-ffdccaf79b23 {"pid": "10550", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/029857678"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:11.315263 2024-09-11 09:11:11.315273 a30a35fb-f099-4617-af6f-fb66917af760 {"pid": "10551", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/02985850X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:11.383152 2024-09-11 09:11:11.383154 617bf330-9138-4c2b-98fa-70ec1e46caef {"pid": "10552", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/030398614"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:11.439186 2024-09-11 09:11:11.43919 4011b138-5d8d-4dc0-9c68-8e3c94e4d57c {"pid": "10553", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/030512425"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:11.513519 2024-09-11 09:11:11.513529 0ad893e8-2150-403c-8d3b-53202015801b {"pid": "10554", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/030519799"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:11.595889 2024-09-11 09:11:11.595892 ffe3b6fa-42b1-4923-9d96-663ba207e8fe {"pid": "10555", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/03055537X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:11.655543 2024-09-11 09:11:11.655552 2db5ec8b-f8f1-49ce-b17b-a6445b6bb404 {"pid": "10556", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/030628156"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:11.721927 2024-09-11 09:11:11.72193 8f58c085-b60c-4c9a-a1a1-267ea859eead {"pid": "10557", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/030640091"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:11.791645 2024-09-11 09:11:11.791648 149a95c7-95f4-4cb6-868d-64a933e54873 {"pid": "10558", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/031139876"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:11.857061 2024-09-11 09:11:11.857064 1487104d-5cd5-4479-a78c-217de7f27efc {"pid": "10559", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/031211097"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:11.927207 2024-09-11 09:11:11.927218 60d63f6a-4548-45c6-977c-07fd2706ace1 {"pid": "10560", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/031649424"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:11.991607 2024-09-11 09:11:11.991611 2843613c-094b-4b9d-b887-3ff3715e309a {"pid": "10561", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/03168520X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:12.044593 2024-09-11 09:11:12.044596 08a6b7b6-354f-40d8-91fe-0d501650cb5d {"pid": "10562", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/031702473"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:12.100405 2024-09-11 09:11:12.100408 6017a803-0364-4c1c-a782-e06a6086c163 {"pid": "10563", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/031977561"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:12.150835 2024-09-11 09:11:12.150837 8d5c469c-d05d-4489-9792-896ff1da4d71 {"pid": "10564", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/032028555"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:12.217153 2024-09-11 09:11:12.217156 effe6328-7f6c-466a-9584-ff35ffafef18 {"pid": "10565", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/032029667"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:12.281027 2024-09-11 09:11:12.281037 c3629af2-18f3-411f-be96-b15da454ad08 {"pid": "10566", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/03210572X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:12.343796 2024-09-11 09:11:12.343801 e3344210-36d5-47b6-a128-97c1b52f0529 {"pid": "10567", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/03261991X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:12.40735 2024-09-11 09:11:12.407358 4886cd8a-388f-4297-a2ed-722f342a57ab {"pid": "10568", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/032861621"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:12.473901 2024-09-11 09:11:12.473906 30b7e238-b1c0-4586-807b-0aaa7c6c3517 {"pid": "10569", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/032972997"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:12.536415 2024-09-11 09:11:12.536418 356a5419-b907-4d42-bfbb-2be49a489b6b {"pid": "10570", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/033023808"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:12.59651 2024-09-11 09:11:12.596514 c686ef50-182e-407c-8e32-85f7d0ca4ede {"pid": "10571", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/033459118"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:12.639686 2024-09-11 09:11:12.639689 ebf3aa7b-7b2c-4a5d-83b4-29bf2a4a2b93 {"pid": "10572", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/034580506"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:12.702095 2024-09-11 09:11:12.702099 44afd709-180f-4dc1-a073-4bf058d70cf9 {"pid": "10573", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/034800964"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:12.747904 2024-09-11 09:11:12.747906 247b0dcc-e6d1-4dda-b59d-ab2d4a764d1c {"pid": "10574", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/034910190"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:12.806673 2024-09-11 09:11:12.806677 53d946b2-51e8-432c-9815-2bbc8d8ef802 {"pid": "10575", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/03512802X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:12.871401 2024-09-11 09:11:12.871405 2256c865-47a6-4e28-9681-5eb2d2b50921 {"pid": "10576", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/035220287"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:12.934085 2024-09-11 09:11:12.934094 53d11dfa-03b9-4866-972f-4b3151eac755 {"pid": "10577", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/03530183X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:12.998363 2024-09-11 09:11:12.998372 a12c1eab-43db-4ef1-a570-d8a284f00b98 {"pid": "10578", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/035301872"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:13.058672 2024-09-11 09:11:13.058675 95a4d0d6-6eda-4709-8550-ca08218e62ca {"pid": "10579", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/035321318"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:13.122269 2024-09-11 09:11:13.122273 22107fe3-6918-4d41-a390-fdaf6286a53d {"pid": "10580", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/035444193"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:13.187983 2024-09-11 09:11:13.187987 5066167d-0a32-4106-ad44-5c6a94e0c7b6 {"pid": "10581", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/050211250"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:13.252862 2024-09-11 09:11:13.252869 d8338cac-e1d2-4cef-926a-45eab06e4346 {"pid": "10582", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/05021778X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:13.320452 2024-09-11 09:11:13.320455 0a812931-8c18-4b79-a8b8-62b39bbc3b4b {"pid": "10583", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/050300334"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:13.37878 2024-09-11 09:11:13.378785 85ad193c-b97b-453a-b3f4-c2ceb1d40423 {"pid": "10584", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/050311530"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:13.434405 2024-09-11 09:11:13.434413 ff75b499-8958-423e-806f-1066062cd467 {"pid": "10585", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/050438417"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:13.50329 2024-09-11 09:11:13.503293 35908288-513a-4dfe-baf0-55de8724cdb5 {"pid": "10586", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/050556789"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:13.55785 2024-09-11 09:11:13.557853 796ac8c8-6dee-4c68-8f8e-8382dba949a9 {"pid": "10587", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/050557556"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:13.607789 2024-09-11 09:11:13.607792 3a5a22c3-e6bc-4377-b690-64a7700cf890 {"pid": "10588", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/050578480"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:13.666943 2024-09-11 09:11:13.666951 65696fe3-ae31-4679-9c08-069ba89407de {"pid": "10589", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/052490157"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:13.721678 2024-09-11 09:11:13.72168 425c030d-4b9b-4d4d-9cd7-f15d8d35dc8f {"pid": "10590", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/053443586"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:13.771515 2024-09-11 09:11:13.771518 79b2b5de-228f-40f6-a9e7-8ccccc0cbd15 {"pid": "10591", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/053500539"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:13.836617 2024-09-11 09:11:13.836624 a085c527-730a-4c1a-ab33-0a1fd7bb0c7c {"pid": "10592", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/053504755"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:13.904513 2024-09-11 09:11:13.904515 a282e356-c055-4bb7-8e96-2bb6092853c9 {"pid": "10593", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/055832024"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:13.955861 2024-09-11 09:11:13.955864 0b015bd1-b4c5-4087-b98a-917e891bae30 {"pid": "10594", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/061566284"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:14.016063 2024-09-11 09:11:14.016066 b6891813-905a-4d98-8da8-aadae091de9f {"pid": "10595", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/066838339"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:14.074958 2024-09-11 09:11:14.074963 2c2375a5-6011-4083-9296-f4053639132b {"pid": "10596", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/068861974"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:14.126372 2024-09-11 09:11:14.126376 1502c05a-e085-4895-9202-47d19b65237e {"pid": "10597", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/068954174"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:14.183636 2024-09-11 09:11:14.18364 9953b126-b7a5-4254-9af3-f34d875829eb {"pid": "10598", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/069367027"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:14.242278 2024-09-11 09:11:14.242283 d9308ace-c124-468a-a414-3b830e759fa5 {"pid": "10599", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/070388830"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:14.301574 2024-09-11 09:11:14.301578 6d4d48ce-7cd2-4538-a280-2246c6908286 {"pid": "10600", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/072290455"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:14.366722 2024-09-11 09:11:14.366726 599772af-feaf-4f74-bec3-ebe763a9f028 {"pid": "10601", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/072616652"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:14.422538 2024-09-11 09:11:14.422542 45905f3b-c5a6-49ec-85f3-e69e9fd3d262 {"pid": "10602", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/073387576"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:14.497376 2024-09-11 09:11:14.497386 6e6e0efa-e81a-4f6a-b4f2-5c5e22eb2c9e {"pid": "10603", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/073444073"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:14.563836 2024-09-11 09:11:14.56384 643266d2-b814-4637-a012-f657f6aba7a6 {"pid": "10604", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/074436805"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:14.614676 2024-09-11 09:11:14.61468 bb5614b9-8db8-4dfc-b4c9-018aa77ce1f7 {"pid": "10605", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/074578022"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:14.672782 2024-09-11 09:11:14.672791 70314d09-d2e3-449e-ac51-ff8688a77f11 {"pid": "10606", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/077271041"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:14.735705 2024-09-11 09:11:14.735709 a961a990-1764-4f96-9cb9-1efe846316ae {"pid": "10607", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/077437160"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:14.802793 2024-09-11 09:11:14.802798 510386d7-2d64-479f-b1ef-4f315c86ed58 {"pid": "10608", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/078613655"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:14.862041 2024-09-11 09:11:14.862046 ef9c1de0-3dc9-426d-b3da-d3f9c407cf1d {"pid": "10609", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/084272996"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:14.925803 2024-09-11 09:11:14.925811 64dc391a-76ed-4590-a4d0-fbba9bff78ba {"pid": "10610", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/085703419"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:15.003284 2024-09-11 09:11:15.003293 9bc957e3-8091-4cfb-9044-e78723e475a1 {"pid": "10611", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/092146430"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:15.071774 2024-09-11 09:11:15.071776 6bb8a777-221b-442b-a044-d3e6939e0db5 {"pid": "10612", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/09445423X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:15.117065 2024-09-11 09:11:15.117067 194696a5-a6e4-4310-9662-4b1d7d057050 {"pid": "10613", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/095140484"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:15.18174 2024-09-11 09:11:15.181748 bc93df23-254a-41c1-9c75-af637d048a01 {"pid": "10614", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/102120935"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:15.247659 2024-09-11 09:11:15.247668 dde02d0f-4e86-4433-a3f7-4acca1a06e86 {"pid": "10615", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/102147817"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:15.322326 2024-09-11 09:11:15.32233 f2de7df2-e530-464b-9ed1-3d4735e2d018 {"pid": "10616", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/113070926"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:15.394969 2024-09-11 09:11:15.394978 ad40e3e5-9131-4ec1-ba97-de1c901b6c3d {"pid": "10617", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/114526591"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:15.464588 2024-09-11 09:11:15.464592 2b378ff2-90f8-449a-a764-53f365738204 {"pid": "10618", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/116317825"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:15.532052 2024-09-11 09:11:15.53206 b65f1511-e9b5-4587-b91d-38543c1883a4 {"pid": "10619", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/116459425"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:15.593318 2024-09-11 09:11:15.593322 a726a796-a68b-46a7-b467-2db128f7b863 {"pid": "10620", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/119411016"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:15.666695 2024-09-11 09:11:15.666701 c6ddbd37-13ae-45a8-b552-96438a942056 {"pid": "10621", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/123048338"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:15.729001 2024-09-11 09:11:15.729005 3b05c83e-06c8-479c-89f2-484a49f4158b {"pid": "10622", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/124441092"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:15.779332 2024-09-11 09:11:15.779337 b0e674bb-1f9f-4499-a939-efe0b7bc44ae {"pid": "10623", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/127372547"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:15.836871 2024-09-11 09:11:15.836875 eff4c96e-1724-42d9-8cf0-33ad21941856 {"pid": "10624", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/131577166"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:15.900279 2024-09-11 09:11:15.900282 db707ccd-32d0-49e5-9ee4-9314c1daaa72 {"pid": "10625", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/133653951"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:15.963306 2024-09-11 09:11:15.963314 1c907e9e-3a8d-4274-a3aa-35b29766f4f9 {"pid": "10626", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/140829520"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:16.029125 2024-09-11 09:11:16.029135 e1ef7748-bcd8-4a5a-b628-fcf622c6ef3e {"pid": "10627", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/140834087"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:16.095953 2024-09-11 09:11:16.095956 e81f069e-c5fa-4aae-a3d1-c0a3fb7fa66f {"pid": "10628", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/144820072"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:16.152201 2024-09-11 09:11:16.152203 ef893f53-28e9-4667-bf01-15ebb5602481 {"pid": "10629", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/145818713"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:16.210342 2024-09-11 09:11:16.210345 81617474-b1ef-446c-9239-bf4328625f9c {"pid": "10630", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/148119778"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:16.27575 2024-09-11 09:11:16.275757 9f0f2cf2-faa3-485b-88c3-6d21a26bb80f {"pid": "10631", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/148833829"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:16.352678 2024-09-11 09:11:16.352686 0604e608-c05b-4dd1-84f7-b960e3034b8e {"pid": "10632", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/150220200"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:16.419737 2024-09-11 09:11:16.419745 584a16ba-d77a-4934-9a7a-796e3da85a7b {"pid": "10633", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/151572429"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:16.484562 2024-09-11 09:11:16.484569 9bff45b2-6286-4edd-9f09-7f4764a8e69c {"pid": "10634", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/152219005"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:16.546503 2024-09-11 09:11:16.546507 730853b2-0f76-45e4-bf63-bf65e34a24b4 {"pid": "10635", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/153092815"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:16.601688 2024-09-11 09:11:16.601691 131d614b-181c-4d0f-bef8-4d9376855686 {"pid": "10636", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/153807989"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:16.646153 2024-09-11 09:11:16.646157 ced53a5f-f299-4340-989d-dc3cb2181dca {"pid": "10637", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/154297550"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:16.695996 2024-09-11 09:11:16.696 30c6201d-4e21-457f-a3ef-375ead8849b9 {"pid": "10638", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/154762393"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:16.742753 2024-09-11 09:11:16.742757 920e8b09-9a8d-4bf5-bb0c-9cd534d82c04 {"pid": "10639", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/156994151"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:16.80141 2024-09-11 09:11:16.801418 e7c75c78-d06f-4a68-ab79-4b830fd6183b {"pid": "10640", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/157032469"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:16.88095 2024-09-11 09:11:16.88096 d3c5f873-0867-4b40-af3d-5bc9a08412af {"pid": "10641", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/157043819"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:16.945279 2024-09-11 09:11:16.945284 db9919c4-0022-48c6-9079-b3c0e44a7650 {"pid": "10642", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/157043908"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:17.00799 2024-09-11 09:11:17.007994 648a42a4-910f-4864-96d0-02769ed0f0a5 {"pid": "10643", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/157046125"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:17.066995 2024-09-11 09:11:17.066998 da970211-612f-4183-b314-89cf6c644e4d {"pid": "10644", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/157046486"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:17.117618 2024-09-11 09:11:17.117622 ca19549b-77a7-4816-923f-5b2f322858e5 {"pid": "10645", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/157070093"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:17.182111 2024-09-11 09:11:17.18212 45735a91-8b02-4d2c-ab4d-56253df4a602 {"pid": "10646", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/157075109"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:17.235392 2024-09-11 09:11:17.235394 403f28d1-df47-4955-96ff-920b9bd2e6de {"pid": "10647", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/157110184"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:17.285223 2024-09-11 09:11:17.285226 9ef0eab9-b4a6-4b49-9397-c3551f10d669 {"pid": "10648", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/157135675"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:17.348791 2024-09-11 09:11:17.348799 abc82637-2094-47e1-a995-fc8d96238eba {"pid": "10649", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/157135756"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:17.412341 2024-09-11 09:11:17.412348 df4bf886-1369-4ac6-b121-bcfc0b07d3ab {"pid": "10650", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/157143791"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:17.485051 2024-09-11 09:11:17.48506 02e0b8d4-654e-416e-8a56-138ff32dd3ac {"pid": "10651", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/157164764"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:17.545612 2024-09-11 09:11:17.545616 36c33d5b-0c64-4f6c-b9b7-86af5ed599c6 {"pid": "10652", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/157165892"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:17.598866 2024-09-11 09:11:17.598868 5ddfb432-1ba9-4190-8fc4-f71f36f7b204 {"pid": "10653", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/157260275"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:17.654988 2024-09-11 09:11:17.654996 0d09b2f1-7301-4e62-ba48-5df6ebee4763 {"pid": "10654", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/157265927"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:17.714236 2024-09-11 09:11:17.71424 beefedd8-ed7b-40fe-b229-e2d6f5a04be0 {"pid": "10655", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/158185102"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:17.787606 2024-09-11 09:11:17.787615 c1477ffc-b3ee-4b7b-b68a-b31623bc9cf3 {"pid": "10656", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/158634624"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:17.871014 2024-09-11 09:11:17.871023 b062f8fe-45fd-41de-8308-ff004ee90868 {"pid": "10657", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/15903194X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:17.939401 2024-09-11 09:11:17.939409 07a8ec00-0f04-4018-93d5-d4f184d4f76b {"pid": "10658", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/159667518"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:18.008182 2024-09-11 09:11:18.008187 e3ee13c1-0593-472d-859c-38f43e9fb3eb {"pid": "10659", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/16152270X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:18.08207 2024-09-11 09:11:18.08208 38cee599-78e4-4568-a641-1abc5c89edeb {"pid": "10660", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/161522718"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:18.137251 2024-09-11 09:11:18.137255 732cd4e0-f80e-4aa6-a29b-6ac8e0f08e60 {"pid": "10661", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/161930069"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:18.20102 2024-09-11 09:11:18.201027 73af37ab-adcb-4153-b4b8-f5c8b32f3ffd {"pid": "10662", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/162029667"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:18.257055 2024-09-11 09:11:18.257058 51cf7695-5ca4-4aa2-9a50-e96266779b88 {"pid": "10663", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/162144342"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:18.324745 2024-09-11 09:11:18.324755 8326623d-e33a-499a-ba73-14c97606ad92 {"pid": "10664", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/163687536"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:18.387395 2024-09-11 09:11:18.387404 55bc751b-8aea-421c-92dd-e9a4c96a0b87 {"pid": "10665", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/165827157"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:18.455298 2024-09-11 09:11:18.455303 81466028-2b41-45f2-8909-032ad5978fbb {"pid": "10666", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/169621820"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:18.521491 2024-09-11 09:11:18.521494 56200498-9a1e-457a-a8a8-f59101d1c13b {"pid": "10667", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/171128362"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:18.588486 2024-09-11 09:11:18.588494 3cb8e264-c0e6-4872-b02f-5acb51b71ccf {"pid": "10668", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/175270147"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:18.648341 2024-09-11 09:11:18.648345 b7919add-18aa-48ff-b850-df77929e8852 {"pid": "10669", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/176470875"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:18.718421 2024-09-11 09:11:18.718423 5d37c4df-d938-426c-bacc-1e48579330dd {"pid": "10670", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/177159855"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:18.786239 2024-09-11 09:11:18.786248 befa0b1b-80c8-4a81-9ccf-0d02ccb0281a {"pid": "10671", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/177517506"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:18.858153 2024-09-11 09:11:18.85816 d0003165-5e3a-4072-bb8a-e072b012013c {"pid": "10672", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/177835893"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:18.92016 2024-09-11 09:11:18.920163 4d7075ba-9f42-4aa8-a7a1-1bea1f246ecf {"pid": "10673", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/178091219"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:18.982539 2024-09-11 09:11:18.982547 a7773f10-3dfb-406e-babc-8bba81d3e4b0 {"pid": "10674", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/178635863"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:19.051541 2024-09-11 09:11:19.051548 438db7f3-0726-4970-a09b-b20a62c5f3bb {"pid": "10675", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/18055686X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:19.109907 2024-09-11 09:11:19.10991 cbb1bacc-3a68-4d70-b7cc-009ca029e434 {"pid": "10676", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/183926943"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:19.171766 2024-09-11 09:11:19.171769 9fb2fa1a-75c9-4591-a5d9-a6ac2ec7f089 {"pid": "10677", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/184504872"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:19.242758 2024-09-11 09:11:19.242762 99c1e048-09f2-4aee-a201-1405e501b2d9 {"pid": "10678", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/185130348"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:19.315951 2024-09-11 09:11:19.31596 585e45ed-ad40-4736-a6cb-67c46d482336 {"pid": "10679", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/185838235"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:19.383009 2024-09-11 09:11:19.383017 48487913-cce1-4c4e-9f12-ec960e6a1c1f {"pid": "10680", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/186257287"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:19.446821 2024-09-11 09:11:19.446825 cdaf963d-c621-41cb-9e11-cb1e5ee4ce5a {"pid": "10681", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/188234837"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:19.50635 2024-09-11 09:11:19.506355 9b35afbe-3dc2-4e67-a76d-4f776cc64e14 {"pid": "10682", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/190533889"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:19.568399 2024-09-11 09:11:19.568411 545aaf5e-7218-4949-9df8-0ed1bad375ee {"pid": "10683", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/192765531"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:19.628128 2024-09-11 09:11:19.628135 52282caf-ad55-4e36-bf92-86867766c679 {"pid": "10684", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/193304767"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:19.690933 2024-09-11 09:11:19.690938 c4a0ea5f-4333-49f5-8b90-4413a15dfa9d {"pid": "10685", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/193589370"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:19.740827 2024-09-11 09:11:19.74083 1a4bde8c-dd1b-428c-8252-64d0f4d72fdd {"pid": "10686", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/194382206"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:19.793457 2024-09-11 09:11:19.793466 788841ff-4c89-46cb-9168-5306ee4f7063 {"pid": "10687", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/196449103"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:19.856599 2024-09-11 09:11:19.856603 ed7ed04a-4ea9-423f-b0b7-ebbcec78e6c5 {"pid": "10688", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/197647235"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:19.927488 2024-09-11 09:11:19.927499 f42f8157-38c2-4225-944e-c5ee83bea7b0 {"pid": "10689", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/197699855"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:19.994163 2024-09-11 09:11:19.994171 bc3cc58d-c667-4ac3-9722-dfb5c7713590 {"pid": "10690", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/19787133X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:20.061397 2024-09-11 09:11:20.061406 0b62dd9c-f045-4e8e-b4ef-c21e237bb770 {"pid": "10691", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/198026072"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:20.128609 2024-09-11 09:11:20.128617 7eebf466-4e3c-4e34-81d8-d9853b45cce9 {"pid": "10692", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/198231288"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:20.197671 2024-09-11 09:11:20.197679 4bcb9fa8-5bf2-44f5-ac49-6ef3776dc3d2 {"pid": "10693", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/198239386"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:20.262143 2024-09-11 09:11:20.262152 edfa7b30-4ddd-49ea-b4a2-f9fcdd00d73a {"pid": "10694", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/201852845"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:20.331985 2024-09-11 09:11:20.331993 55f21f16-fd20-4888-a081-b617cf751542 {"pid": "10695", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/203060571"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:20.391762 2024-09-11 09:11:20.391767 59084d0d-ba81-4b48-a77c-1d3f72cdbd6d {"pid": "10696", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/203376552"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:20.453798 2024-09-11 09:11:20.453805 2d9d3a46-d11d-4b3e-bd59-55fa06f54da6 {"pid": "10697", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/204299276"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:20.5189 2024-09-11 09:11:20.518904 43d5e427-6b5b-4237-b399-eaadb3b6b3ac {"pid": "10698", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/219922608"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:20.580297 2024-09-11 09:11:20.580306 a87466b5-58f5-4fa1-a0d1-44b8bee182ac {"pid": "10699", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/219924074"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:20.652027 2024-09-11 09:11:20.652036 9ce0fbbd-b191-43f0-ae6e-42acb78f3e7a {"pid": "10700", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/219925283"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:20.718683 2024-09-11 09:11:20.718686 9912f4c0-5e8e-42d2-a9e3-855066cedb9f {"pid": "10701", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/22395294X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:20.766613 2024-09-11 09:11:20.766616 779ef70c-b76c-4f15-85c9-66c244e52d69 {"pid": "10702", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/223976369"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:20.825916 2024-09-11 09:11:20.825924 1e9ac811-ea38-43db-b572-e64d1e2abf3b {"pid": "10703", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/223979171"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:20.894029 2024-09-11 09:11:20.894032 8eb4fc93-a1c8-4983-92a0-6764b668ee20 {"pid": "10704", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/224235893"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:20.964331 2024-09-11 09:11:20.96434 ba0bd921-648a-4767-98fb-43e1971fedab {"pid": "10705", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/225651289"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:21.031103 2024-09-11 09:11:21.031108 8fec6c71-6347-4b1a-9443-8e9061b336cb {"pid": "10706", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/226539962"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:21.087157 2024-09-11 09:11:21.087161 48e18976-88c8-4a2e-9fd7-5599342c6cf6 {"pid": "10707", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/226556425"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:21.134031 2024-09-11 09:11:21.134033 7996317b-e229-4c96-9725-803d720765bf {"pid": "10708", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/226664414"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:21.193584 2024-09-11 09:11:21.193593 fffa7840-1dca-43a6-b391-4a7dde8c7fa3 {"pid": "10709", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/226835391"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:21.254721 2024-09-11 09:11:21.254724 86871738-e0b2-4bef-b7af-ba83ff566cb0 {"pid": "10710", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/226964558"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:21.309491 2024-09-11 09:11:21.309494 3f19add1-92af-4a05-9769-a0554c111f6d {"pid": "10711", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/230294707"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:21.37405 2024-09-11 09:11:21.374054 50b65420-cacf-48af-834a-ab984332a9c5 {"pid": "10712", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/231217161"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:21.42986 2024-09-11 09:11:21.429862 665bc2b0-f2cf-41e7-98cc-7c4b103cc83c {"pid": "10713", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/231498829"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:21.489673 2024-09-11 09:11:21.489677 b0d81dfc-604b-4d8a-b421-9e51902dd4eb {"pid": "10714", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/233055045"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:21.560766 2024-09-11 09:11:21.560774 cd5abd1c-fefc-4042-90e7-df53b8e662a4 {"pid": "10715", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/237826763"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:21.634919 2024-09-11 09:11:21.634923 6e704772-359a-4908-a5a3-fa3df6102f8b {"pid": "10716", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/242868851"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:21.702189 2024-09-11 09:11:21.702197 f0246f6c-fea6-4b53-93ed-edd55ea4f7c9 {"pid": "10717", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/250173565"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:21.832944 2024-09-11 09:11:21.832947 20b51d1d-1dde-46a2-83b0-dfd5ff4bffaf {"pid": "10719", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/253709520"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:21.889455 2024-09-11 09:11:21.889457 49ddef95-9e2b-425c-8204-41e137951b5c {"pid": "10720", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/253865727"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:21.945235 2024-09-11 09:11:21.945239 1ed5f920-d523-4815-82fb-2f1a52338dff {"pid": "10721", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/254939422"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:22.016147 2024-09-11 09:11:22.016151 e0cce608-b438-4465-821c-a8cbd3ff3598 {"pid": "10722", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/255076592"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:22.084274 2024-09-11 09:11:22.084282 2a7f67c4-ec88-42fe-b6b9-8f4d9c017c25 {"pid": "10723", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/25527999X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:22.139633 2024-09-11 09:11:22.139637 bceda418-0773-420e-b613-1e47d2f36f73 {"pid": "10724", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/256800375"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:22.205348 2024-09-11 09:11:22.205353 95b7dc54-8a43-41c3-b81d-3f1194e8b5d7 {"pid": "10725", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/257056378"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:22.272341 2024-09-11 09:11:22.272348 25007cac-88be-4f64-a6ea-e1b20a6f6021 {"pid": "10726", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/257143025"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:22.344129 2024-09-11 09:11:22.344136 4afe315d-1f9d-4574-af32-007da7c34780 {"pid": "10727", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/257162895"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:22.422039 2024-09-11 09:11:22.422044 de1d3725-aa11-4881-b664-3bba8c786a63 {"pid": "10728", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/257475117"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:22.495761 2024-09-11 09:11:22.495764 a41846f2-e1f8-4039-bdd4-8f2bf249e12d {"pid": "10729", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/258360976"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:22.559982 2024-09-11 09:11:22.559991 9c954d0c-2881-4cf1-9433-681cca35e31e {"pid": "10730", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/25887421X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:22.613663 2024-09-11 09:11:22.613666 f0cce585-8642-422f-a640-780046d83d11 {"pid": "10731", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/260281395"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:22.674917 2024-09-11 09:11:22.674921 73666cc8-88e2-496a-b025-e6d83efc85fa {"pid": "10732", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/260555088"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:22.727095 2024-09-11 09:11:22.727098 3a0e23cf-2aa0-4458-a5ee-8e8094b6b19f {"pid": "10733", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/260905585"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:22.793423 2024-09-11 09:11:22.793429 f3d4e96d-4fd0-4814-ae93-b9859bf1416b {"pid": "10734", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/260966401"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:22.85712 2024-09-11 09:11:22.857127 8cb60b63-1c4a-4968-b0b4-1ccc148191d3 {"pid": "10735", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/260996440"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:22.922836 2024-09-11 09:11:22.92284 c4955930-3129-4fd9-92d9-4e8819866edb {"pid": "10736", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/261121162"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:22.987616 2024-09-11 09:11:22.987623 ebd228a6-73cf-4f2c-bc41-d14da53cf8c5 {"pid": "10737", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/26138449X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:23.059385 2024-09-11 09:11:23.05939 6099b848-cd15-412f-82db-5ab537778dc7 {"pid": "10738", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/26144722X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:23.127607 2024-09-11 09:11:23.127617 4e317a7b-90a0-48ff-b1cd-f12043673be8 {"pid": "10739", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/261527452"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:23.203101 2024-09-11 09:11:23.203114 d690dc6c-8dbd-4eae-a579-7f35954b2f1c {"pid": "10740", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/261762311"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:23.273555 2024-09-11 09:11:23.273559 5b63df47-5202-40e8-8e0e-641a7284b0ef {"pid": "10741", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/261933841"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:23.343918 2024-09-11 09:11:23.343922 ec84a2e6-6c14-4f63-b3f5-e6b0f2171aa7 {"pid": "10742", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/262216744"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:23.459337 2024-09-11 09:11:23.459341 a2b357ee-3eee-4b01-9219-e35b651e997f {"pid": "10743", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/262555697"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:23.506887 2024-09-11 09:11:23.50689 3ba89d33-b265-45c1-9420-ac7e80a75814 {"pid": "10744", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/262557215"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:29.711554 2024-09-11 09:12:29.711558 0be962d5-a946-4b5a-8466-9a76935adf38 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/050551604"}, "pid": "11709", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:23.598811 2024-09-11 09:11:23.598814 8e361ad6-cfde-40a3-a285-0ba4909b257a {"pid": "10746", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/262834162"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:23.645469 2024-09-11 09:11:23.645473 8ddf45a9-98b0-4482-b568-5e70333507f3 {"pid": "10747", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/26298606X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:23.692867 2024-09-11 09:11:23.692869 3dea2100-f384-4909-8496-9425c1a6a26b {"pid": "10748", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/263043231"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:23.747089 2024-09-11 09:11:23.747093 7a57a103-b0cb-4414-b67e-881efe168c7a {"pid": "10749", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/26304324X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:23.797965 2024-09-11 09:11:23.797967 722915cc-40e8-49c8-ad18-2acf65d7dabd {"pid": "10750", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/26304338X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:23.846438 2024-09-11 09:11:23.846442 26d25983-5652-4410-9131-a37b7985f44f {"pid": "10751", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/263197794"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:23.912082 2024-09-11 09:11:23.912087 991e7a54-32bb-460b-abed-fd26c1e26d80 {"pid": "10752", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/263222985"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:23.973313 2024-09-11 09:11:23.973317 a92b4cbb-f714-42ee-b941-4371ae3cd8a7 {"pid": "10753", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/263256790"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:24.051805 2024-09-11 09:11:24.05181 705a260f-cb9a-4baa-a44a-a7e20f23defa {"pid": "10754", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/26369514X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:24.121646 2024-09-11 09:11:24.121649 f158121a-f0a2-44d0-bb3b-631d79cefdee {"pid": "10755", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/263838250"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:24.186301 2024-09-11 09:11:24.18631 11181c30-a020-46d6-a85a-65d9d8d5a9a0 {"pid": "10756", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/264073258"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:24.263181 2024-09-11 09:11:24.26319 22660ff2-391b-4eb0-9de7-34b2cb47acef {"pid": "10757", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/264087313"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:24.338243 2024-09-11 09:11:24.338248 d0313ba5-6893-4ceb-8038-3f4c987d01c2 {"pid": "10758", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/264145046"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:24.403887 2024-09-11 09:11:24.403896 285df75a-d793-4c77-be69-b5dd11afcae2 {"pid": "10759", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/264271831"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:24.467264 2024-09-11 09:11:24.467268 61529533-4b0c-4af4-bde5-6c09bf69a9b8 {"pid": "10760", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/264406095"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:24.529698 2024-09-11 09:11:24.529702 3410c998-98f1-493e-a74e-e4c05615935d {"pid": "10761", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/264435583"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:24.596509 2024-09-11 09:11:24.596518 637f8fdd-d387-4846-ada6-36e89e0f10cf {"pid": "10762", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/264538943"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:24.662677 2024-09-11 09:11:24.662686 f29ee91f-b566-4bbe-87a2-38355c0a24d4 {"pid": "10763", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/264540670"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:24.717889 2024-09-11 09:11:24.717891 2f79201c-ce0e-4075-939e-f08ec8b928b1 {"pid": "10764", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/264600886"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:24.766036 2024-09-11 09:11:24.76604 337f234d-0af7-4ef0-a925-717fbae25e14 {"pid": "10765", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/264644093"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:24.829437 2024-09-11 09:11:24.829439 b8155a0c-64e7-4d17-a889-5bd88b508cea {"pid": "10766", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/264645081"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:24.888347 2024-09-11 09:11:24.88835 49690870-f190-49f3-b51c-244057951e45 {"pid": "10767", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/264836251"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:24.950274 2024-09-11 09:11:24.950283 89c1a78a-e4f7-4d0b-95c1-2d7dd95ad04e {"pid": "10768", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/265364957"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:25.015352 2024-09-11 09:11:25.015355 8d15d103-7b53-4da1-bbd9-dc6f5a605a18 {"pid": "10769", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/26588912X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:25.074815 2024-09-11 09:11:25.074818 b3fe3e47-c9da-4e85-8ccc-14545f05b37f {"pid": "10770", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/266633668"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:25.12664 2024-09-11 09:11:25.126644 52259f5c-8c3c-4703-87e7-126ba59398ea {"pid": "10771", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/26663415X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:25.176654 2024-09-11 09:11:25.176657 0b255404-e70c-4177-9490-fcb3940fc9cc {"pid": "10772", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/266656595"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:25.234094 2024-09-11 09:11:25.234096 6dcd6ac5-7da6-4d39-8233-a1c4f6deb6fa {"pid": "10773", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/26665715X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:25.346997 2024-09-11 09:11:25.347006 51b66b15-9d37-4b98-9ecb-24c35bc3daec {"pid": "10774", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/267209568"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:25.408272 2024-09-11 09:11:25.40828 106c6bcd-1df7-4174-ba4e-5daf957be160 {"pid": "10775", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/26722138X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:25.478023 2024-09-11 09:11:25.478033 be45a13a-821f-470d-8d9c-d29dee012e81 {"pid": "10776", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/267421214"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:25.530662 2024-09-11 09:11:25.530664 b1a80f05-f81d-4d91-906c-dd9f11fd66f8 {"pid": "10777", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/267446713"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:25.596121 2024-09-11 09:11:25.59613 b59ef0be-e522-49bd-b6c1-3e386b913b07 {"pid": "10778", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/267488092"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:25.673535 2024-09-11 09:11:25.67354 1f14d59d-5d6b-4ab2-8d6a-17ed0f8b9230 {"pid": "10779", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/267506589"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:25.737041 2024-09-11 09:11:25.737045 5f1f1189-8e39-4f8f-afaa-8ab794100333 {"pid": "10780", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/267678584"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:25.798065 2024-09-11 09:11:25.798073 7a84166f-ef2a-4128-8659-b52a61ceda67 {"pid": "10781", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/267860048"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:25.86606 2024-09-11 09:11:25.866067 f2b44240-c4cf-4413-9cba-456b12793c5f {"pid": "10782", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/26792237X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:25.931626 2024-09-11 09:11:25.931631 42a3fe7d-cf13-4b73-a9a3-60a3b7af8c13 {"pid": "10783", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/267928262"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:25.999563 2024-09-11 09:11:25.999571 0f0e3a7c-7b7c-4df9-8065-1547b516f108 {"pid": "10784", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/268500460"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:26.074502 2024-09-11 09:11:26.074507 aeed0d20-2e85-43e3-a008-f95a4cf5de68 {"pid": "10785", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/268649472"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:26.128611 2024-09-11 09:11:26.128614 ede7b13b-92c0-4637-81fe-71776a739113 {"pid": "10786", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/268664110"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:26.183978 2024-09-11 09:11:26.183982 b05856dc-79be-42c3-9830-f62c3ee37b8b {"pid": "10787", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/268664447"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:26.241762 2024-09-11 09:11:26.241766 457ca0fe-2b98-43f6-83cb-ccc44411a39e {"pid": "10788", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/268666938"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:26.314595 2024-09-11 09:11:26.314604 5038b7ad-a587-4928-b76e-0dc07208f802 {"pid": "10789", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/268735190"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:26.388841 2024-09-11 09:11:26.388849 1df7f036-06bb-471f-b792-b69674894a24 {"pid": "10790", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/268791694"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:26.45683 2024-09-11 09:11:26.456836 e6cf1173-9a18-4bd2-8e3e-e48ddb9b64a9 {"pid": "10791", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/268793948"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:26.51803 2024-09-11 09:11:26.518039 532d8186-6d83-40a2-ab5a-debae82eb93b {"pid": "10792", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/269784136"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:26.590218 2024-09-11 09:11:26.590223 011ac6b6-6109-44e7-8008-4fb8b6c60499 {"pid": "10793", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/270059482"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:26.637907 2024-09-11 09:11:26.637909 797e7194-6339-4c17-abb9-bfb5c78024bd {"pid": "10794", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/270977848"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:26.694364 2024-09-11 09:11:26.694366 6774ebfe-2212-439d-bd30-7c52d31a279c {"pid": "10795", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271120738"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:26.741451 2024-09-11 09:11:26.741455 90f4648f-d6c0-464f-8b62-acf885439b9d {"pid": "10796", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271160926"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:26.80563 2024-09-11 09:11:26.805634 9add34ae-5110-4e1c-b3d8-db87be237456 {"pid": "10797", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271161957"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:26.867263 2024-09-11 09:11:26.867266 ddf7c1a9-0af3-41e6-81a8-f1f783aeb2eb {"pid": "10798", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271166118"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:26.928943 2024-09-11 09:11:26.928951 f32ac322-6db4-48f9-afdc-29d999c26e58 {"pid": "10799", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271323485"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:26.998948 2024-09-11 09:11:26.998956 70fe41ef-e287-432d-8312-31cdbf85407b {"pid": "10800", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271323515"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:27.074033 2024-09-11 09:11:27.074037 a1282001-760b-4314-9435-8d943d197c8e {"pid": "10801", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271323590"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:27.144224 2024-09-11 09:11:27.144227 f73de455-289b-4d41-b8eb-56a6d28314c0 {"pid": "10802", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271323663"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:27.20821 2024-09-11 09:11:27.208217 5b9475e0-c89c-44f1-8adf-0a8e48ad47dc {"pid": "10803", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271323698"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:27.275175 2024-09-11 09:11:27.275179 9d842832-6804-4160-95f5-ed47c27b35d8 {"pid": "10804", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271323752"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:27.344028 2024-09-11 09:11:27.344032 a4ec25a0-9c0a-44fd-9bd4-664241a7aeee {"pid": "10805", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271326441"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:27.423825 2024-09-11 09:11:27.423835 ad25cdd9-818d-4d9d-a151-542376210d1e {"pid": "10806", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271326840"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:27.487722 2024-09-11 09:11:27.487728 850aa821-1def-43fd-90aa-a1d0795a83c1 {"pid": "10807", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271328762"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:27.560099 2024-09-11 09:11:27.560103 05217ecc-aa49-4403-8e24-631f8951c1b0 {"pid": "10808", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271342889"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:27.615824 2024-09-11 09:11:27.615827 2146cc01-0449-4eea-b0cf-0d88ca6d614e {"pid": "10809", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271347821"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:27.675957 2024-09-11 09:11:27.67596 66dc8e49-aadc-4671-b551-ac6a282f6042 {"pid": "10810", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271377445"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:27.733588 2024-09-11 09:11:27.73359 239044c0-5e55-43d9-b277-9a02bf03efde {"pid": "10811", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271529172"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:27.796837 2024-09-11 09:11:27.796839 cdf54f4e-fd94-4317-a22d-56af6b4561ce {"pid": "10812", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271733764"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:27.853429 2024-09-11 09:11:27.853431 50a029b1-8c14-4dd8-8e4e-42163fed06f9 {"pid": "10813", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271786574"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:27.920539 2024-09-11 09:11:27.920542 ef7377b0-cb01-4a80-986d-1edbaf339357 {"pid": "10814", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/272053430"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:27.973502 2024-09-11 09:11:27.973504 1f44cc17-5b83-491e-8535-1d97dbcb5b47 {"pid": "10815", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/272179213"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:28.033253 2024-09-11 09:11:28.033257 8e440093-bc76-4239-8d4e-9e13cf1ad034 {"pid": "10816", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/272823627"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:28.110977 2024-09-11 09:11:28.11098 29a6e9cf-a403-4e76-a495-acb304803c93 {"pid": "10817", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/273580728"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:28.178483 2024-09-11 09:11:28.178512 e9120284-2ebb-47e6-a323-4370b302442f {"pid": "10818", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/275775569"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:28.241105 2024-09-11 09:11:28.241108 80d14a5a-98f0-499a-a897-48689b135f9c {"pid": "10819", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/276090829"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:28.306647 2024-09-11 09:11:28.30665 1036d84a-b125-4aa0-a531-59bf03fe2522 {"pid": "10820", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/27609266X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:28.379801 2024-09-11 09:11:28.379805 5fe0b2d6-beff-4d35-97e4-74b5c6165116 {"pid": "10821", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/276092945"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:28.449319 2024-09-11 09:11:28.449323 d4b3c3b3-e0b2-4b57-bc57-efca80de4cc3 {"pid": "10822", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/276180232"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:28.520465 2024-09-11 09:11:28.520468 ba701e1c-c9e6-4ba9-8bcf-af23ab653d54 {"pid": "10823", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/276183762"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:28.588401 2024-09-11 09:11:28.588405 8995cac0-c1f5-4a22-bb59-e3a1b013f580 {"pid": "10824", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/276185986"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:28.636674 2024-09-11 09:11:28.636677 d84357a4-f975-4329-9cbc-6d25cbf982ac {"pid": "10825", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/276213939"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:28.69661 2024-09-11 09:11:28.696614 c2fb1bfc-a14c-422c-ba4e-c54c6aadfd38 {"pid": "10826", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/276214129"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:28.752248 2024-09-11 09:11:28.752251 072a5334-f370-4497-815d-2d28313fe7b0 {"pid": "10827", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/276214463"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:28.819079 2024-09-11 09:11:28.819083 59e72dff-8e23-463b-8afb-5ad2396594a0 {"pid": "10828", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/27621675X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:28.883488 2024-09-11 09:11:28.883497 551a1730-69c7-4115-bdda-821780c94e38 {"pid": "10829", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/276271890"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:28.946646 2024-09-11 09:11:28.946656 a05389d8-7278-48e6-a40b-7359e8342af5 {"pid": "10830", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/276300882"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:29.007095 2024-09-11 09:11:29.007104 f0f97639-0d31-41d6-8cec-9cc587f7b05e {"pid": "10831", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/276306651"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:29.067987 2024-09-11 09:11:29.067995 ca98a968-bf15-4c62-b157-69db197d5fd6 {"pid": "10832", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/276398157"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:29.127566 2024-09-11 09:11:29.127569 21a21037-a8f9-4ddd-b858-4838711e4dbb {"pid": "10833", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/276510216"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:29.182598 2024-09-11 09:11:29.1826 031b1d41-58e1-4f3b-a56c-84493f7f21f7 {"pid": "10834", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/276534921"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:29.24506 2024-09-11 09:11:29.245065 b2e07c0e-9d0d-46a9-a342-e16ddb69f5b7 {"pid": "10835", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/276626370"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:29.312138 2024-09-11 09:11:29.312141 5b405c10-b123-49b4-a148-794c15c37f83 {"pid": "10836", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/276637674"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:29.377681 2024-09-11 09:11:29.377688 ce82fa16-3d73-4d1a-b772-b953dea23c84 {"pid": "10837", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/276708083"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:29.442529 2024-09-11 09:11:29.442534 4d62154d-3f80-4e3d-bc3c-5487fecad967 {"pid": "10838", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/276783743"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:29.501542 2024-09-11 09:11:29.501547 f513dd0f-a9e5-4cf5-a798-6cf574efb41b {"pid": "10839", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/27678832X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:29.55963 2024-09-11 09:11:29.559639 2e9e727e-f77f-4ac3-8cc7-aae59889fe79 {"pid": "10840", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/276828984"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:29.62659 2024-09-11 09:11:29.626594 101400b3-1411-4c63-9acd-4c96e3f99cb5 {"pid": "10841", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/276944135"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:29.687686 2024-09-11 09:11:29.687694 ab94091b-f2a4-4d2f-9f30-2d4d00ed31da {"pid": "10842", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/276970950"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:29.755421 2024-09-11 09:11:29.755429 6a37a3ee-daa4-45db-8e98-48fd1c3e9b29 {"pid": "10843", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/277221307"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:29.816999 2024-09-11 09:11:29.817007 758f8d96-0ec5-48cd-9e75-e1beba37c68d {"pid": "10844", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/27727382X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:29.889353 2024-09-11 09:11:29.889361 85eb1afb-5e85-4c13-820d-d015475788e0 {"pid": "10845", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/277473284"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:29.951272 2024-09-11 09:11:29.951276 829a138c-e4e8-4588-b5ed-f359d7db0788 {"pid": "10846", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/278628117"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:30.010327 2024-09-11 09:11:30.01033 4ef26ade-c96b-4fe2-9b90-cc069f431798 {"pid": "10847", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/278728596"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:30.070649 2024-09-11 09:11:30.070657 3d1e5c28-8434-4d4f-bd3e-b2b82efd5640 {"pid": "10848", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/278738230"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:30.127809 2024-09-11 09:11:30.127812 85775746-2652-4379-b38c-f360626d9685 {"pid": "10849", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/278747310"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:30.184525 2024-09-11 09:11:30.184534 84527b80-8776-44e8-bbcc-706238d72894 {"pid": "10850", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/278850650"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:30.24125 2024-09-11 09:11:30.241254 7e5de204-73f1-4ee6-8f21-0f9ad97b145b {"pid": "10851", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/278893899"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:30.300923 2024-09-11 09:11:30.300932 c0f52652-621d-4d0d-8a47-5ad513b158cf {"pid": "10852", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/278918964"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:30.366913 2024-09-11 09:11:30.366922 bce2523e-c92a-4818-a6d5-9246ff800650 {"pid": "10853", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279034989"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:30.429911 2024-09-11 09:11:30.429918 bbae7e39-e157-4f5a-85c5-a3fc9c67df28 {"pid": "10854", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279121369"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:30.495331 2024-09-11 09:11:30.495339 443ec164-39f3-4ad9-870a-da19c86ae7c6 {"pid": "10855", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279128800"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:30.570624 2024-09-11 09:11:30.570628 53a8a242-b510-472e-9d03-c00ab243b4c5 {"pid": "10856", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/27912886X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:30.626568 2024-09-11 09:11:30.626572 34e34932-1faf-4e59-9664-c4bd40f0556b {"pid": "10857", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279128959"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:30.693948 2024-09-11 09:11:30.693956 54973035-9fa9-441b-a144-c1aec29ba67d {"pid": "10858", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279129467"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:30.743819 2024-09-11 09:11:30.743822 57a6d645-12e7-49f6-b0ff-3f194c0f6925 {"pid": "10859", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279129912"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:30.802862 2024-09-11 09:11:30.80287 dddf2e47-5a28-4cfe-9238-b958eaeb2f82 {"pid": "10860", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279129920"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:30.870744 2024-09-11 09:11:30.870752 d5617264-c38a-4aea-b517-7b939f53e2e1 {"pid": "10861", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279130252"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:30.934441 2024-09-11 09:11:30.934445 d8655a01-0830-4bb1-99bc-83218a3f13df {"pid": "10862", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279131321"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:30.995265 2024-09-11 09:11:30.995275 2ccf3094-b338-4787-84aa-817b37824fd0 {"pid": "10863", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279131356"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:31.063085 2024-09-11 09:11:31.063093 3c2abe07-a696-46c4-86a0-a2d4c6896c03 {"pid": "10864", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/27913150X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:31.126805 2024-09-11 09:11:31.126808 7e93d549-fee8-4127-96f0-8ca7ac0d3cab {"pid": "10865", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279131593"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:31.177667 2024-09-11 09:11:31.17767 99091044-15f8-4096-8810-2de217d374c9 {"pid": "10866", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279132409"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:31.23715 2024-09-11 09:11:31.237153 8c279659-4e58-4642-b133-7fd03d555d00 {"pid": "10867", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279132581"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:31.298294 2024-09-11 09:11:31.298298 ea5ce810-1781-4b7b-bf4a-05fa6501e2b3 {"pid": "10868", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279133782"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:31.360227 2024-09-11 09:11:31.360236 3494aaa9-c5fc-475f-a810-dd77781ddc5b {"pid": "10869", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/27913438X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:31.422926 2024-09-11 09:11:31.422935 feac9eb5-7617-4127-acc7-09fac2d551d2 {"pid": "10870", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/27913469X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:31.482623 2024-09-11 09:11:31.482632 31a4f0d1-ef5b-4836-8238-8b61dace783c {"pid": "10871", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279135130"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:31.545561 2024-09-11 09:11:31.545565 c81e0169-d08b-42ac-bee4-efcd72503d23 {"pid": "10872", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279135289"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:31.601295 2024-09-11 09:11:31.601298 a5b3b09b-1516-4e76-ab62-69da178f83ed {"pid": "10873", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279135777"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:31.660943 2024-09-11 09:11:31.660951 0a665a9e-4f36-4388-aca4-71a2c5e62cb9 {"pid": "10874", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279135890"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:31.72044 2024-09-11 09:11:31.720443 2fecf5d4-e2a1-450c-96f6-56c6202dbd4b {"pid": "10875", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279136730"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:31.777776 2024-09-11 09:11:31.777787 da172b34-5108-4ad1-bed2-11b446f77d7e {"pid": "10876", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279136900"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:31.8567 2024-09-11 09:11:31.856708 3aff3b23-5bfc-41ca-a321-ac884cb228e0 {"pid": "10877", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279146884"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:31.923027 2024-09-11 09:11:31.923035 2aa93a39-9658-4dcd-8fc7-2487abc17f64 {"pid": "10878", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279147546"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:31.991484 2024-09-11 09:11:31.991492 71b76b99-482c-41bc-9c1d-c0cea369c7e4 {"pid": "10879", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279147708"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:32.057051 2024-09-11 09:11:32.057055 b4aa7647-9311-4024-9b4b-a129ba9bd594 {"pid": "10880", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/27914783X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:32.113441 2024-09-11 09:11:32.113445 cfe0b79e-9124-44e1-bd0a-2f04c543e046 {"pid": "10881", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279148232"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:32.165963 2024-09-11 09:11:32.165972 0d3db2f7-50f1-42b3-9739-66ede560cbbf {"pid": "10882", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279148658"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:32.220975 2024-09-11 09:11:32.220978 3eb41fb4-a9cd-4cf7-acc3-596e73c4d02a {"pid": "10883", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279148739"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:32.281736 2024-09-11 09:11:32.28174 4bca43e3-edc4-4840-b463-eb5b91205e86 {"pid": "10884", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279149492"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:32.347676 2024-09-11 09:11:32.347684 b3b35476-045a-4fbc-b963-1d6d939393fa {"pid": "10885", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279149522"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:32.423538 2024-09-11 09:11:32.423542 71dfe890-de12-4736-aab8-91ad86f3e1dc {"pid": "10886", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279150350"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:32.485354 2024-09-11 09:11:32.485358 aceb5b6d-7a3f-47b9-99bc-c0266bc13378 {"pid": "10887", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279150504"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:32.544081 2024-09-11 09:11:32.544089 c03956f2-78b9-45be-ba2a-1b10091c665a {"pid": "10888", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279150911"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:32.605177 2024-09-11 09:11:32.605182 a19675b7-4371-4c58-95a3-23b3d91491c2 {"pid": "10889", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279150989"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:32.652877 2024-09-11 09:11:32.65288 475287ee-c9ab-4949-95af-f1a7c6b3d498 {"pid": "10890", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279152426"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:32.709039 2024-09-11 09:11:32.709044 635f6786-cb52-4a27-a9ee-a9c343d6422c {"pid": "10891", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/27915397X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:32.763731 2024-09-11 09:11:32.763735 1ab90310-8561-4f5a-84d6-7c27c4b3145c {"pid": "10892", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279154097"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:32.811933 2024-09-11 09:11:32.811938 669bc59c-a571-4370-93e0-116a72d5fabc {"pid": "10893", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279154437"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:32.864793 2024-09-11 09:11:32.864797 2eecedbf-9a0f-4334-ac42-2ec5ee2cc27c {"pid": "10894", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279154488"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:32.930705 2024-09-11 09:11:32.930707 4c0700ee-7aa0-4b51-a1b6-beb12d4735bf {"pid": "10895", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279154542"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:32.99751 2024-09-11 09:11:32.997513 2718aac2-e19b-42a6-931d-40b5a9651afd {"pid": "10896", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279154593"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:33.075894 2024-09-11 09:11:33.075904 8b96e0ca-ae14-4136-9461-115471493426 {"pid": "10897", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279156766"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:33.135307 2024-09-11 09:11:33.135309 62c7166e-64e2-4713-8390-e2ab80aab785 {"pid": "10898", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279158475"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:33.196212 2024-09-11 09:11:33.196216 12a3b992-2008-42e6-b5c9-d05dc62c2ed4 {"pid": "10899", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279158599"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:33.251999 2024-09-11 09:11:33.252003 22a7bda5-4d79-411c-b460-607290e94f0c {"pid": "10900", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/27915948X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:33.316534 2024-09-11 09:11:33.316537 bbbd1b2f-4801-4b11-819a-207ff0a9b4d6 {"pid": "10901", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279166303"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:33.385488 2024-09-11 09:11:33.385492 6b496851-e57f-4dd5-bd78-1f7a3162c05a {"pid": "10902", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279167334"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:33.451922 2024-09-11 09:11:33.45193 70df4d82-3afc-495f-bd46-fc33c6d31422 {"pid": "10903", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/27918669X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:33.520465 2024-09-11 09:11:33.520472 d60a401e-07ea-44af-9401-e81949d4b005 {"pid": "10904", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279187610"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:33.597654 2024-09-11 09:11:33.597661 21584dbf-ef30-46aa-b22d-45f27479dc07 {"pid": "10905", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279188994"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:33.655176 2024-09-11 09:11:33.655179 d7b3cb88-95c5-40f6-ade1-2c98b4975824 {"pid": "10906", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279189087"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:33.72261 2024-09-11 09:11:33.722613 1c29d77b-63ca-4f20-94d7-32e369e5eeae {"pid": "10907", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279189249"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:33.783181 2024-09-11 09:11:33.78319 5c3f056b-8d4f-4dff-80f5-2e8fa7cfebce {"pid": "10908", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279192576"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:33.85255 2024-09-11 09:11:33.852554 5368d935-b905-45dc-8a3b-b835d30e9d8f {"pid": "10909", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/27919269X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:33.907592 2024-09-11 09:11:33.907597 d645f28b-7cb6-4b27-a761-c8a61693ceef {"pid": "10910", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279192800"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:33.966849 2024-09-11 09:11:33.966853 248504c5-6a4b-4b4d-a27d-67c728e4031a {"pid": "10911", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/27919305X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:34.029351 2024-09-11 09:11:34.02936 ea35aa51-c5cf-4228-ba76-f8de6674f25c {"pid": "10912", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279193092"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:34.103818 2024-09-11 09:11:34.103827 f62655f6-00bc-4b58-b987-cf8a3649ead5 {"pid": "10913", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279193181"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:34.182722 2024-09-11 09:11:34.18273 19396c8d-6e58-49f0-8643-ad173602a99b {"pid": "10914", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/27919336X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:34.250597 2024-09-11 09:11:34.250601 ce93e640-be80-404d-af7f-f46e61dcc652 {"pid": "10915", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279193750"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:34.312585 2024-09-11 09:11:34.312589 26c38917-df15-404d-90c9-2e2df612411c {"pid": "10916", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279199929"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:34.378433 2024-09-11 09:11:34.37844 650b84d2-4c34-4b39-aa9b-fc919cee4346 {"pid": "10917", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279200471"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:34.445323 2024-09-11 09:11:34.445331 e3e271ee-5840-4c95-9b3c-4f86b0667c6e {"pid": "10918", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279207646"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:34.520816 2024-09-11 09:11:34.520823 ff60966d-825d-469a-b91a-c95bcb31706f {"pid": "10919", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279209592"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:34.591144 2024-09-11 09:11:34.591151 19c523e1-3752-4108-bfbc-71d6b4631e3d {"pid": "10920", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279209754"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:34.64062 2024-09-11 09:11:34.640622 ce687e6e-117e-4102-b0db-67081536889f {"pid": "10921", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279209886"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:34.701535 2024-09-11 09:11:34.701543 f3a9f61d-aa51-4505-b501-c998bc835481 {"pid": "10922", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279210809"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:34.762656 2024-09-11 09:11:34.762658 594a2e07-3af0-4cc5-9f6d-ea841cc76c6f {"pid": "10923", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279211066"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:34.829896 2024-09-11 09:11:34.8299 d61b4dd2-5308-4f88-9286-2dbc0a8f17ce {"pid": "10924", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279211147"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:34.8906 2024-09-11 09:11:34.890605 c1c0f381-3d98-4f06-a3c6-c3a10477833f {"pid": "10925", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279214944"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:34.954777 2024-09-11 09:11:34.954785 da3d4314-83ab-430d-b344-5a727e387dfc {"pid": "10926", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279214960"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:35.02159 2024-09-11 09:11:35.021596 9c6805de-4720-456f-a90e-2847276345ad {"pid": "10927", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279215142"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:35.078861 2024-09-11 09:11:35.078865 e8aa8881-13c6-4a0e-ab5a-45674ef50107 {"pid": "10928", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279215258"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:35.132326 2024-09-11 09:11:35.132329 2ab01dd1-2fc2-4dff-adce-45279b6b907f {"pid": "10929", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279215347"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:35.193811 2024-09-11 09:11:35.19382 c8fc3873-e86f-456e-a754-a9a9887ff89f {"pid": "10930", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279219717"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:35.243775 2024-09-11 09:11:35.243778 26a33ca1-5c67-49e1-aa6f-99b08cd9cf1f {"pid": "10931", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279221487"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:35.294043 2024-09-11 09:11:35.294048 fb98bcc9-164a-4ef0-8824-fb139815d9b9 {"pid": "10932", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279230087"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:35.356696 2024-09-11 09:11:35.356701 3522f74c-2740-4df8-9f1d-9e795830ff8d {"pid": "10933", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279231547"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:35.420887 2024-09-11 09:11:35.420895 ef50bec9-e9d4-4fe9-bfca-67e18eab46cf {"pid": "10934", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279231679"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:35.490123 2024-09-11 09:11:35.490127 f81e1875-2c9c-42a1-8d3c-c5aeb1e3e7dc {"pid": "10935", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279233493"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:35.544808 2024-09-11 09:11:35.544811 38304dfb-2f41-4189-85c8-f32ebe5a7316 {"pid": "10936", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279233639"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:35.62423 2024-09-11 09:11:35.624234 ec333b05-14b6-48ed-bf31-2d71f4b31f29 {"pid": "10937", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279233752"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:35.671316 2024-09-11 09:11:35.671319 b610274c-9c72-4f24-b57b-55148cecf85b {"pid": "10938", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279236417"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:35.720233 2024-09-11 09:11:35.720236 b392b2c1-2fcd-4337-89ad-f285b9d49b47 {"pid": "10939", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279236611"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:35.774198 2024-09-11 09:11:35.774206 f8bf197f-a178-4965-9dd5-d2778bc920a7 {"pid": "10940", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279236697"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:35.847021 2024-09-11 09:11:35.847025 21bcbb55-f847-4bbe-aee2-9a8d0fa64de6 {"pid": "10941", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279238037"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:35.906455 2024-09-11 09:11:35.906458 194b8577-7713-4e39-99f2-ef06cecb0fc5 {"pid": "10942", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279245947"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:35.966228 2024-09-11 09:11:35.966231 3a37ea65-cdc5-4ba7-ac7f-e62070c2a9b0 {"pid": "10943", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279246358"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:36.021419 2024-09-11 09:11:36.021422 7f992ccf-c9f2-4722-9072-1869b13d95f1 {"pid": "10944", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279247060"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:36.076658 2024-09-11 09:11:36.076669 9898dcb9-4e73-4bcb-8e90-2d14f8a173f7 {"pid": "10945", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279247087"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:36.129471 2024-09-11 09:11:36.129474 3a4c233f-b071-4c99-bace-ba2936a04f2e {"pid": "10946", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279247184"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:36.18159 2024-09-11 09:11:36.181598 fba273f7-830e-4950-bbb9-a4245a3ea56a {"pid": "10947", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279248180"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:36.232877 2024-09-11 09:11:36.232879 40a28b06-c0e8-4d9c-a4cd-cbc2d9f9597c {"pid": "10948", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279248288"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:36.293381 2024-09-11 09:11:36.293385 63f51219-630d-44df-ae68-14358b9dc566 {"pid": "10949", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279248482"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:36.340577 2024-09-11 09:11:36.34058 dd52d368-a75a-403b-8f50-023fc860261d {"pid": "10950", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279248598"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:36.402229 2024-09-11 09:11:36.402233 ac70b04a-cf85-4a04-92ad-9a8269b37e17 {"pid": "10951", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279248792"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:36.466483 2024-09-11 09:11:36.466487 56a37684-2c5d-46e3-9671-68147dd28cbb {"pid": "10952", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279249535"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:36.529663 2024-09-11 09:11:36.529671 63155858-a518-495d-8e10-495ffd31eb2a {"pid": "10953", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279250002"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:36.59491 2024-09-11 09:11:36.594918 72ff62ef-95de-4e5c-bc4f-09e7a465c284 {"pid": "10954", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279250142"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:36.647015 2024-09-11 09:11:36.647019 4661d5d2-9b79-42cf-95b4-ae9e2dabdff9 {"pid": "10955", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279253001"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:36.708651 2024-09-11 09:11:36.70866 9340d224-6cb0-497a-8644-d2b8754f0e15 {"pid": "10956", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279255381"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:36.762682 2024-09-11 09:11:36.762686 9255ebc2-2fed-423f-a6ba-695dff794c80 {"pid": "10957", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279255519"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:36.81743 2024-09-11 09:11:36.817438 74d51c13-de84-459c-a942-c72d01c3b0c7 {"pid": "10958", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279256337"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:36.87746 2024-09-11 09:11:36.877467 fdc9f861-2b99-4277-bb2c-26698eb2c41d {"pid": "10959", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279256434"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:36.940782 2024-09-11 09:11:36.940786 eb1edb44-ab49-4df3-ba33-0725999d1eb4 {"pid": "10960", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279256574"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:37.002416 2024-09-11 09:11:37.002419 ba3bdca3-016a-4bb9-8250-d71da03eb7b0 {"pid": "10961", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279256647"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:37.064439 2024-09-11 09:11:37.064447 4d3f180d-41e6-470c-9f82-bfe45b2a4f22 {"pid": "10962", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279257120"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:37.126184 2024-09-11 09:11:37.126188 eb7f4372-5be6-4acb-a4ce-4359770ffc7a {"pid": "10963", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279263864"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:37.175582 2024-09-11 09:11:37.175586 ff198dda-4ec1-4b8f-b271-ba223610fd19 {"pid": "10964", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279264410"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:37.239083 2024-09-11 09:11:37.239087 3869f5bb-4ea4-4ac5-877d-1f7c6fcece7f {"pid": "10965", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279288743"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:37.294057 2024-09-11 09:11:37.294061 21035758-ede3-4b97-97a5-996c259bf64d {"pid": "10966", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279307500"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:37.349658 2024-09-11 09:11:37.349662 f4331d53-1b74-4d42-8bc3-0e9e90e0880b {"pid": "10967", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279307772"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:37.407733 2024-09-11 09:11:37.407737 aed453d7-6e90-4849-8d06-addecf4b57ad {"pid": "10968", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279307829"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:37.462613 2024-09-11 09:11:37.462621 5fd86f9b-4d8a-4d8f-a63a-172db3e6b537 {"pid": "10969", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279307845"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:37.533208 2024-09-11 09:11:37.533215 83e3cc76-825c-40cf-9922-0e19597512c7 {"pid": "10970", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279311044"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:37.594244 2024-09-11 09:11:37.594254 c3eff399-83ad-44b1-844c-60717c367a02 {"pid": "10971", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279311443"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:37.655582 2024-09-11 09:11:37.655584 30502589-c232-49cd-8ec4-4254cb12e1e3 {"pid": "10972", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279312415"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:37.717135 2024-09-11 09:11:37.717139 cecf0aff-076d-4b4a-a2dd-cc42885bb96c {"pid": "10973", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279313543"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:37.773027 2024-09-11 09:11:37.773031 795cb231-239c-4997-a294-66d776804ade {"pid": "10974", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279313853"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:37.852106 2024-09-11 09:11:37.85211 651ca5c0-6776-4d62-a63b-00c39e8460bb {"pid": "10975", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279314833"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:37.911525 2024-09-11 09:11:37.911534 1633822e-2ea4-47aa-87ed-b6bbd49f5956 {"pid": "10976", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279315287"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:37.975657 2024-09-11 09:11:37.975661 f2976a49-022d-425a-a650-57ef8ac451c4 {"pid": "10977", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279315368"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:38.036069 2024-09-11 09:11:38.036073 bdbd2730-9ae1-40fb-8714-6536bff5b00d {"pid": "10978", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279315597"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:38.099287 2024-09-11 09:11:38.09929 faeddcc1-e640-4e65-ad03-bbb23cdb1ffc {"pid": "10979", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279315678"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:38.148253 2024-09-11 09:11:38.148257 6c2fdc01-a399-4098-9932-643986d1fa61 {"pid": "10980", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279315759"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:38.209595 2024-09-11 09:11:38.209605 2dc555e7-ef4e-4bdc-a5bb-b0312c8060fb {"pid": "10981", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279316232"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:38.261186 2024-09-11 09:11:38.261189 0584516d-f8f0-48af-8c36-0f23b8a1115b {"pid": "10982", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279316291"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:38.324241 2024-09-11 09:11:38.324245 9e990b67-6928-4da4-879f-94975ae4d90b {"pid": "10983", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279333013"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:38.386961 2024-09-11 09:11:38.386966 351d982d-4627-418b-87ba-a731ea92c3ab {"pid": "10984", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279334699"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:38.45053 2024-09-11 09:11:38.450536 8d924e92-3228-44e4-aa55-aa76ef8bcee5 {"pid": "10985", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279334982"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:38.51176 2024-09-11 09:11:38.511766 af342fd1-eb01-4b77-b803-cbf2d53f12dc {"pid": "10986", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279335156"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:38.569845 2024-09-11 09:11:38.569848 6f355f47-0b96-4255-b885-bdb5c7df9e73 {"pid": "10987", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279335512"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:38.62788 2024-09-11 09:11:38.627883 6520cee8-8969-4777-8b70-f681b17ff054 {"pid": "10988", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/27933558X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:38.678225 2024-09-11 09:11:38.678234 eec0d95b-cb9f-4fdc-a935-fc250b88ac00 {"pid": "10989", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279347642"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:38.745925 2024-09-11 09:11:38.74593 1f624018-672f-4cc9-bad4-4074412b4195 {"pid": "10990", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279348304"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:38.817748 2024-09-11 09:11:38.817756 c6b3507c-acc9-4b5a-ac94-339bbe0420d1 {"pid": "10991", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279348363"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:38.899133 2024-09-11 09:11:38.899136 4c1e9301-6907-4037-bfc2-4c0293229905 {"pid": "10992", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279349807"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:38.97244 2024-09-11 09:11:38.972445 50c3fd35-7b17-4d9a-97d2-4ca2ac0c419f {"pid": "10993", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279351747"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:39.039492 2024-09-11 09:11:39.039495 d42f231a-8cbe-4f3b-b8df-da57bd67cfd8 {"pid": "10994", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279351879"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:39.101744 2024-09-11 09:11:39.101752 15547554-1e27-4006-9275-9463f900f30c {"pid": "10995", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279353162"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:39.149541 2024-09-11 09:11:39.149544 ffb368ce-3a36-4065-8e42-2961d530ca9e {"pid": "10996", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279353308"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:39.202743 2024-09-11 09:11:39.202746 4adb2494-5f12-4c12-8c30-2034e65763a0 {"pid": "10997", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279353928"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:39.259504 2024-09-11 09:11:39.259508 034f5ad6-18b3-4c89-a943-45152400ae9b {"pid": "10998", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279354118"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:39.324158 2024-09-11 09:11:39.324163 4208b487-217a-4246-a9af-46555eb43bc9 {"pid": "10999", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279354223"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:39.383029 2024-09-11 09:11:39.383033 36b14143-9d2c-4f17-93a9-62711c39ad83 {"pid": "11000", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279355173"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:39.449122 2024-09-11 09:11:39.44913 6388dfa3-0e65-4205-b9c6-084880049823 {"pid": "11001", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279357206"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:39.50827 2024-09-11 09:11:39.508274 09e50b74-f9da-4112-84a9-f8bd83aa3b64 {"pid": "11002", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279368429"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:39.570979 2024-09-11 09:11:39.570983 24d2e7f8-b505-4acb-97ad-f62872dddeed {"pid": "11003", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279369867"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:39.630675 2024-09-11 09:11:39.630678 480669fa-538c-4346-a4b8-900563e61eb9 {"pid": "11004", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/27937027X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:39.679799 2024-09-11 09:11:39.679802 9bf1a5cb-4ed9-4b8b-8779-c39a12f15789 {"pid": "11005", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279371322"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:39.735817 2024-09-11 09:11:39.73582 f7d348bd-5928-4897-ae67-000cb0b85294 {"pid": "11006", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279372280"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:39.810327 2024-09-11 09:11:39.810336 1b9bd6d6-d695-4910-8147-12878a8d7dbf {"pid": "11007", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279372906"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:39.872827 2024-09-11 09:11:39.872836 5b82d532-957d-413f-8c61-8aa797ed3a68 {"pid": "11008", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279373139"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:39.933601 2024-09-11 09:11:39.933603 babd8e48-c78a-4d05-a831-4e458ed3dbd1 {"pid": "11009", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279373171"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:39.991734 2024-09-11 09:11:39.991739 b7bc356e-416a-4f35-9fcd-8fdea0fa5552 {"pid": "11010", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279373198"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:40.057765 2024-09-11 09:11:40.05777 fe229389-5228-4482-a4f2-2f80d063a8f2 {"pid": "11011", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279373287"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:40.11909 2024-09-11 09:11:40.119098 1e6b6979-1dab-47a3-bfaf-1515e80affae {"pid": "11012", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279375387"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:40.181401 2024-09-11 09:11:40.181411 78bc1f4f-0719-4789-abd8-0f8e36a191eb {"pid": "11013", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279375794"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:40.249636 2024-09-11 09:11:40.249644 ada12808-71af-4f74-8e1d-a23200fe2261 {"pid": "11014", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279375867"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:40.31488 2024-09-11 09:11:40.314885 b3fcd533-8f53-498a-8f2e-2f64bb877f7b {"pid": "11015", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279376405"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:40.374977 2024-09-11 09:11:40.374985 22d87602-6738-40e8-bb5a-78d2ede8ffe2 {"pid": "11016", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/27937660X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:40.436692 2024-09-11 09:11:40.436697 a12a13bf-b0d9-44da-a022-e252df4215d3 {"pid": "11017", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279376693"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:40.495544 2024-09-11 09:11:40.495546 562419ad-9dab-4e0f-888a-9bff5af26421 {"pid": "11018", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279376804"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:40.559165 2024-09-11 09:11:40.559174 e64a2436-03b0-401f-96ed-97d01b281fdc {"pid": "11019", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279377266"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:40.62187 2024-09-11 09:11:40.621875 7fc0ce6c-0149-4459-bfda-e38958b77796 {"pid": "11020", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279377452"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:40.672233 2024-09-11 09:11:40.672236 c06c5df8-916b-4cd9-a082-4182cdf901b2 {"pid": "11021", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279378173"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:40.724695 2024-09-11 09:11:40.724698 92be960f-3187-4cad-8e91-33303296fa08 {"pid": "11022", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279380925"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:40.779788 2024-09-11 09:11:40.779797 198ca550-7f00-4160-b650-6ab00ce2851d {"pid": "11023", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279385544"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:40.84718 2024-09-11 09:11:40.847184 f004f66c-22db-4a7e-a8da-d4307203eed1 {"pid": "11024", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279385625"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:40.902157 2024-09-11 09:11:40.902159 c425cb4a-f53e-4415-a5bc-e268f6eba0d8 {"pid": "11025", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/27938646X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:40.958535 2024-09-11 09:11:40.958538 73bfcaf9-76d3-405b-902b-ead268d9e732 {"pid": "11026", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279387199"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:41.023317 2024-09-11 09:11:41.023322 6bd763c7-d408-424a-bb0b-7a04de799689 {"pid": "11027", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279388810"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:41.086345 2024-09-11 09:11:41.086358 f3d4ae14-138c-4721-89f0-ab972430a349 {"pid": "11028", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279390351"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:41.140613 2024-09-11 09:11:41.140617 4abaf084-6ee0-4736-94f1-5911b91a29d0 {"pid": "11029", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279391544"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:41.19611 2024-09-11 09:11:41.196118 f771dc19-60dd-464e-88e9-00dc9b9266a1 {"pid": "11030", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279391609"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:41.25061 2024-09-11 09:11:41.250613 fb1bafad-caa6-4659-81f2-9b9d483d6432 {"pid": "11031", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279392400"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:41.309812 2024-09-11 09:11:41.309821 f269d246-b97d-4ddd-b21e-6c5188166259 {"pid": "11032", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279394381"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:41.372455 2024-09-11 09:11:41.37246 75adcf93-a3c1-43c8-953a-ec8345d744e9 {"pid": "11033", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279396155"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:41.433334 2024-09-11 09:11:41.433339 11e22522-ae21-4364-9add-8c1402764275 {"pid": "11034", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279401639"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:41.503019 2024-09-11 09:11:41.503029 d3afcab8-700d-4aad-b98c-fda30b7eb06d {"pid": "11035", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279403984"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:41.571549 2024-09-11 09:11:41.571557 6139d475-33c6-47f5-b9ab-2a9d6c5608e5 {"pid": "11036", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279414145"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:41.628992 2024-09-11 09:11:41.628995 ab28c9ba-7d82-45f4-87c1-4fa291acde64 {"pid": "11037", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279416679"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:41.683484 2024-09-11 09:11:41.683488 404ccdac-d699-4c02-b372-7787191f6948 {"pid": "11038", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/27941806X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:41.736388 2024-09-11 09:11:41.73639 85c5442a-9ee1-48ab-856f-a293585bbe2c {"pid": "11039", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279418728"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:41.794205 2024-09-11 09:11:41.794215 7aba10a3-4cfc-4b52-b242-a25675d2cdec {"pid": "11040", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279421427"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:41.85467 2024-09-11 09:11:41.854678 5938d277-b54e-4aa7-a44d-9c2437f47ef9 {"pid": "11041", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279426739"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:41.917792 2024-09-11 09:11:41.917795 33d8063b-bffa-4f9d-9cbb-6b4f86985260 {"pid": "11042", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279461429"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:41.979321 2024-09-11 09:11:41.979324 26b76743-60df-4899-8cf3-c2d67df27563 {"pid": "11043", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279466293"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:42.044011 2024-09-11 09:11:42.04402 4585ca5c-c6f0-43b6-9a47-a176d7db1a65 {"pid": "11044", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279467850"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:42.10961 2024-09-11 09:11:42.109616 2457643f-3e4b-4044-a671-606c36a943aa {"pid": "11045", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279469632"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:42.175718 2024-09-11 09:11:42.175727 742415dd-c1bc-4c82-a93e-36ea0cd98b81 {"pid": "11046", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279471467"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:42.236627 2024-09-11 09:11:42.236631 20e06094-5bcf-4a9d-abc9-fec66c488a0c {"pid": "11047", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279471734"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:42.299673 2024-09-11 09:11:42.299677 a02c08af-ffbf-4540-8498-c2a854c673b4 {"pid": "11048", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279478208"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:42.361523 2024-09-11 09:11:42.36153 724647eb-d323-42fa-a684-172afd862727 {"pid": "11049", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279487606"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:42.420594 2024-09-11 09:11:42.420598 6af16d5d-cbe1-49b2-a02f-1c3e380c0202 {"pid": "11050", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279488076"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:42.490396 2024-09-11 09:11:42.4904 bd30f2fc-af71-4fe6-9acf-1eaf58b14244 {"pid": "11051", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279492820"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:42.550404 2024-09-11 09:11:42.550412 467017eb-1416-42ed-94be-67e50cb903b2 {"pid": "11052", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279493584"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:42.624935 2024-09-11 09:11:42.624942 378936df-6cb4-4eee-8209-e19315ba2535 {"pid": "11053", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279494602"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:42.689422 2024-09-11 09:11:42.689434 e0a6bd79-fb6b-40b7-b191-7189e4ce23cc {"pid": "11054", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279494637"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:42.746938 2024-09-11 09:11:42.746943 2c96fee0-7bf2-4ea3-8f63-8f8eebd4135a {"pid": "11055", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279494653"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:42.819282 2024-09-11 09:11:42.819287 892c6e82-b7a6-4eb7-a18b-10b072bf2d7b {"pid": "11056", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279494688"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:42.875777 2024-09-11 09:11:42.87578 bb8b2f04-8fed-4a49-9c6a-306baee3ddac {"pid": "11057", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279501080"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:42.93509 2024-09-11 09:11:42.935092 8e49409a-c5d4-492b-840c-95e4f365290a {"pid": "11058", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/27950277X"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:42.99267 2024-09-11 09:11:42.992678 188f65f7-5346-4544-9f9b-1e68566a10db {"pid": "11059", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279503288"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:43.054301 2024-09-11 09:11:43.054305 90ae8b9d-9b29-4185-9f0d-11a6fac26b3d {"pid": "11060", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279505264"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:43.116071 2024-09-11 09:11:43.116079 ae5965c4-6e22-4ef0-a542-d4c67afc677e {"pid": "11061", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279507097"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:43.166158 2024-09-11 09:11:43.166161 c3e0a3e5-3cf3-4455-ae32-f5d83d16ec06 {"pid": "11062", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279507208"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:43.211348 2024-09-11 09:11:43.211351 7b697a61-0132-49ae-a439-0f6d4da9ac94 {"pid": "11063", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279516932"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:43.259104 2024-09-11 09:11:43.259108 71273ce7-68ee-4685-927f-649d0beb79ea {"pid": "11064", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279522053"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:43.316777 2024-09-11 09:11:43.31678 9912419e-6035-4569-8c47-c6e42d328259 {"pid": "11065", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279523505"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:43.392047 2024-09-11 09:11:43.392051 91bfcc7d-e3d5-44de-8d9e-0b93b7dfc53b {"pid": "11066", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279523858"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:43.447695 2024-09-11 09:11:43.447699 c0aa5b70-d9f7-4d91-9f14-0bb37df1c8bd {"pid": "11067", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279524072"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:43.498734 2024-09-11 09:11:43.498737 417522cb-ffb3-4e73-8c4e-fe6f463009da {"pid": "11068", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279524080"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:43.548009 2024-09-11 09:11:43.548013 f32df3c9-3294-4023-8312-5d60236f1185 {"pid": "11069", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279532881"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:43.606215 2024-09-11 09:11:43.606217 51d3fe36-9ada-493c-8fd2-561630588b08 {"pid": "11070", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279533497"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:43.656369 2024-09-11 09:11:43.656371 22f73e89-ec9d-4878-93bd-dbe192ab1b4b {"pid": "11071", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279535783"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:43.711153 2024-09-11 09:11:43.711156 f4fa9339-d2e1-4c12-9694-3dd09fafbb34 {"pid": "11072", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279536011"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:43.773112 2024-09-11 09:11:43.773116 1c4ec3b5-49fe-43f4-a94f-8d1b82f50371 {"pid": "11073", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279537719"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:43.837132 2024-09-11 09:11:43.837136 fd0b5afb-447b-4c62-9372-9b53d13df680 {"pid": "11074", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279539363"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:43.9083 2024-09-11 09:11:43.908304 7f3c457e-2dbd-45e7-8104-b83922a05b16 {"pid": "11075", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279562098"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:43.968301 2024-09-11 09:11:43.968303 64941d4e-a070-4253-a715-82e56b95c170 {"pid": "11076", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279571550"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:44.023459 2024-09-11 09:11:44.023463 5f1373e0-dd80-48a8-bb7d-7f673a14af69 {"pid": "11077", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/279571658"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:45.795057 2024-09-11 09:11:45.795059 5b7a27c5-8e92-4273-b876-d0e857610b80 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1335257845"}, "pid": "11078", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:45.854617 2024-09-11 09:11:45.854619 6551ee34-ccae-4fab-86cb-d0ba1cdf11a5 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1335257101"}, "pid": "11079", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:45.911085 2024-09-11 09:11:45.911088 48953dd0-b283-4dce-87c0-e88c354a7d6c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/133525675X"}, "pid": "11080", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:45.957043 2024-09-11 09:11:45.957046 9568c45c-7bae-4bc1-a7a4-46b3b3bf7d91 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/133525207X"}, "pid": "11081", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:46.002106 2024-09-11 09:11:46.002109 2df4eecc-069b-495a-bf54-64bb615094d1 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1335249966"}, "pid": "11082", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:46.051458 2024-09-11 09:11:46.051461 38f4deca-78ce-4324-8011-5f10bd459208 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1335243240"}, "pid": "11083", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:46.103004 2024-09-11 09:11:46.103007 54b96e3d-effa-4030-80eb-344ab8e9f49e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/133523909X"}, "pid": "11084", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:46.191137 2024-09-11 09:11:46.191142 99231be8-41e8-4357-9e62-4ae4c534a970 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1335217711"}, "pid": "11085", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:46.252763 2024-09-11 09:11:46.252767 5bb01a31-01a8-419f-aa28-cb9a719d8462 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1335201653"}, "pid": "11086", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:46.325229 2024-09-11 09:11:46.325238 b57371eb-abc2-4285-b700-7b3158e3055e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1335141790"}, "pid": "11087", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:46.400566 2024-09-11 09:11:46.400575 3bcb019b-20c3-4746-89ad-2e4ffc3df623 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1335107711"}, "pid": "11088", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:46.468976 2024-09-11 09:11:46.468984 d39a9849-31d3-40b5-bcb6-8ec6617fcc98 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1335104917"}, "pid": "11089", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:46.53463 2024-09-11 09:11:46.534633 fcfe432e-a0cc-4a23-9dca-f1421d47602d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1335098399"}, "pid": "11090", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:46.602029 2024-09-11 09:11:46.602033 95c5316a-43cc-4228-9e2e-4629807bc5cb {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1335092390"}, "pid": "11091", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:46.66773 2024-09-11 09:11:46.66774 de4fa2a4-9586-445e-ae75-9d6283c4e708 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1335092196"}, "pid": "11092", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:46.738272 2024-09-11 09:11:46.738278 a337b1ad-0ce7-4d17-9163-9679a8bdc3e0 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1335086005"}, "pid": "11093", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:46.807108 2024-09-11 09:11:46.807117 71ccf432-96a6-4b3f-be11-9c296ecbc390 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1335058036"}, "pid": "11094", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:46.870789 2024-09-11 09:11:46.870793 9104756e-c8b0-426f-be41-1b2d476728c6 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334938016"}, "pid": "11095", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:46.92331 2024-09-11 09:11:46.923314 d6a9c0b6-cc5b-42e4-8532-a83175ec7a79 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334917981"}, "pid": "11096", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:46.985457 2024-09-11 09:11:46.985468 b7c877cd-0441-4b4e-bce3-f4e5c42512a2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334916292"}, "pid": "11097", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:47.063401 2024-09-11 09:11:47.063405 6d5115bc-6966-4a7a-bc03-d7737c7e6fda {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334913498"}, "pid": "11098", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:47.118638 2024-09-11 09:11:47.118641 89e13f79-4ef2-4443-acd2-cb5240d26f7a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334907684"}, "pid": "11099", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:47.167473 2024-09-11 09:11:47.167477 b4b041e7-8072-4c9c-b68a-412b22ad9eb1 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334907048"}, "pid": "11100", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:47.225901 2024-09-11 09:11:47.225905 b67bd2c5-873e-453e-8224-8b45b3becb7d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334904251"}, "pid": "11101", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:47.27769 2024-09-11 09:11:47.277694 69682510-1c8f-4840-ba9b-6098e058dea8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/133490281X"}, "pid": "11102", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:47.345455 2024-09-11 09:11:47.345464 e08fa7ae-7035-4710-9cc2-1475bdf3fd7f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334900256"}, "pid": "11103", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:47.403927 2024-09-11 09:11:47.40393 ce89406e-7d18-47cc-aeab-5cfc18480c4c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/133489874X"}, "pid": "11104", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:47.468551 2024-09-11 09:11:47.468558 e92d55da-ed8a-43cf-9500-b207f469e576 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334896755"}, "pid": "11105", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:47.53299 2024-09-11 09:11:47.532998 363ae616-4550-4d22-87c2-e86f644a8ec9 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334893594"}, "pid": "11106", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:47.590387 2024-09-11 09:11:47.59039 c708f55f-e46c-405c-bce6-49d4888b0a05 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/133489129X"}, "pid": "11107", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:47.640295 2024-09-11 09:11:47.640298 eec536c4-5618-4cc1-b42d-37b092eac507 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334878234"}, "pid": "11108", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:47.699539 2024-09-11 09:11:47.699548 7cee7298-8d2f-4038-9cda-a9b5a5e203fd {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334875707"}, "pid": "11109", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:47.744097 2024-09-11 09:11:47.7441 7de8a3e9-31b8-48ff-919c-1fb8d8b175c8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334874387"}, "pid": "11110", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:47.792299 2024-09-11 09:11:47.792304 c6ef0de7-e511-4b4d-8471-b43bbe0e2f9a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334867097"}, "pid": "11111", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:47.872944 2024-09-11 09:11:47.872947 b3f7fc16-1956-4830-8d54-f560f98934a9 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334866473"}, "pid": "11112", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:48.078091 2024-09-11 09:11:48.078096 f2be1c02-1ddc-4c3f-85ea-34e39bf8fa6f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334866082"}, "pid": "11113", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:48.139386 2024-09-11 09:11:48.139388 dec92430-7528-480f-abeb-e99b2812be5a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334865981"}, "pid": "11114", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:48.19541 2024-09-11 09:11:48.195418 1e56c06c-6041-4ff7-b8a8-4eee7b43278d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334804621"}, "pid": "11115", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:48.251705 2024-09-11 09:11:48.251707 35978273-6611-40c0-83c5-958c009972fc {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334804141"}, "pid": "11116", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:48.32172 2024-09-11 09:11:48.321725 f362723b-3ec8-466d-971c-62ee225fe3cc {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334801304"}, "pid": "11117", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:48.393011 2024-09-11 09:11:48.393016 2384d750-ddd5-41c0-9961-9a13ca797e6f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334789134"}, "pid": "11118", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:48.441948 2024-09-11 09:11:48.441952 5a087033-c080-43e9-ad1c-0a4078f05cfd {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334785422"}, "pid": "11119", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:48.494294 2024-09-11 09:11:48.494298 49a8a5d7-82dd-458c-bf55-c141b1dd05a9 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334784493"}, "pid": "11120", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:48.558425 2024-09-11 09:11:48.558429 031051d4-8a44-4476-a13c-38fceb5f29cf {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334779015"}, "pid": "11121", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:48.611483 2024-09-11 09:11:48.611487 41b30214-7b72-462b-82d7-894cfb57a585 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334766363"}, "pid": "11122", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:48.663143 2024-09-11 09:11:48.663146 5222cad9-5717-49f9-8486-fce1705ab7c1 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334756465"}, "pid": "11123", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:48.721559 2024-09-11 09:11:48.721561 62c192d7-1a08-498f-931b-aff29de9d381 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334736340"}, "pid": "11124", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:48.790354 2024-09-11 09:11:48.790358 11d5277b-7d44-4b6b-9500-40f146a8d5a2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334729824"}, "pid": "11125", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:48.857251 2024-09-11 09:11:48.857256 41624f0d-0c97-4df0-93fb-573286c28708 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334725756"}, "pid": "11126", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:48.923037 2024-09-11 09:11:48.923046 95937b0a-a339-4bfd-90e9-969d6b5ce29e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334725691"}, "pid": "11127", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:48.987432 2024-09-11 09:11:48.987436 67415291-4286-45e7-b79f-3b8c49386efb {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334671486"}, "pid": "11128", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:49.046736 2024-09-11 09:11:49.046741 ddc54e5b-31b4-444e-9029-0643c34a5b67 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334670560"}, "pid": "11129", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:49.108118 2024-09-11 09:11:49.108122 c5fd4b76-758f-4b5b-968f-f265be5efc3d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334670390"}, "pid": "11130", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:49.160627 2024-09-11 09:11:49.160631 afed1697-5a06-4f40-9223-60f1b12ff527 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334670323"}, "pid": "11131", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:49.219263 2024-09-11 09:11:49.219267 ae907014-157a-43e9-92f6-7a4197365228 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334670048"}, "pid": "11132", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:49.278164 2024-09-11 09:11:49.278169 4dae8f7b-6316-4b09-9fb8-26dabc157fb7 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334666474"}, "pid": "11133", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:49.358549 2024-09-11 09:11:49.35856 527a9680-32bb-4ae2-a4f1-af1671f809a3 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334665036"}, "pid": "11134", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:49.463242 2024-09-11 09:11:49.463251 79a61e8e-efa4-4c0e-9ab2-7247711db137 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334665028"}, "pid": "11135", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:49.536613 2024-09-11 09:11:49.536622 5c456c57-7482-4787-aa6c-d89d47f0808c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334664242"}, "pid": "11136", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:49.590306 2024-09-11 09:11:49.590309 0e25f441-0431-4e68-8a41-f24c752220e3 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334661073"}, "pid": "11137", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:49.644252 2024-09-11 09:11:49.644255 cf0deae2-bbe0-4a69-bbdd-58ef1505be52 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334658196"}, "pid": "11138", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:49.702713 2024-09-11 09:11:49.702715 63749a13-985e-4d39-8d00-8544f217209f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334657726"}, "pid": "11139", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:49.775073 2024-09-11 09:11:49.775077 a371590d-092d-49d5-a657-49249746b78f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/133465641X"}, "pid": "11140", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:49.838906 2024-09-11 09:11:49.838909 cf1ae5eb-d404-42eb-b566-263153194361 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334632707"}, "pid": "11141", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:49.900207 2024-09-11 09:11:49.900215 95fc5c52-cbe7-4764-a280-12e1f27d5e3f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/133463209X"}, "pid": "11142", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:49.971143 2024-09-11 09:11:49.971151 134c4cca-bcf0-4a32-868b-75f37572be42 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/133456325X"}, "pid": "11143", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:50.056285 2024-09-11 09:11:50.056288 f9b0719e-651c-4229-b3f9-66d81ac55f97 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334560994"}, "pid": "11144", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:50.121695 2024-09-11 09:11:50.121703 17a886bf-8162-4f73-8e03-1674e208c81d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334559805"}, "pid": "11145", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:50.170881 2024-09-11 09:11:50.170884 4e6b6e17-3074-4153-9157-e343a8e635e8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334558590"}, "pid": "11146", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:50.231655 2024-09-11 09:11:50.231658 0c83cecd-8d6b-4e8f-b622-d5f3af2da822 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334556687"}, "pid": "11147", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:50.294929 2024-09-11 09:11:50.294937 64569335-c1bd-4ec8-aef6-e3d64188b1a8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334554471"}, "pid": "11148", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:50.364509 2024-09-11 09:11:50.364514 0af36ad0-e8f4-4140-a01f-204711682c67 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334554218"}, "pid": "11149", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:50.424942 2024-09-11 09:11:50.424953 71e8feb3-127e-4f65-8208-5887c9ad92c2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334552940"}, "pid": "11150", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:50.500609 2024-09-11 09:11:50.500618 d3a29ecb-6cd2-4aec-8969-16200481a9c9 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334552908"}, "pid": "11151", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:50.566477 2024-09-11 09:11:50.56648 c387de46-dd1d-4cf6-be25-98be3bbf8518 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334552606"}, "pid": "11152", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:50.639869 2024-09-11 09:11:50.639872 e216bb8c-90a3-4520-a7e9-54744929d319 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334538085"}, "pid": "11153", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:50.721009 2024-09-11 09:11:50.721019 5a45b6be-72f4-437a-a9e6-0ec509f534de {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/133453666X"}, "pid": "11154", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:50.801682 2024-09-11 09:11:50.801691 6d2d6ab1-bbc4-4a69-a961-664b45f5ef66 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334531153"}, "pid": "11155", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:50.870467 2024-09-11 09:11:50.87047 dba8f29b-f41b-4f38-8946-2fae8ff88f18 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334516766"}, "pid": "11156", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:50.94063 2024-09-11 09:11:50.940638 9fd71b4d-c8fc-47f2-8554-2f017afcb17b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334502854"}, "pid": "11157", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:51.009608 2024-09-11 09:11:51.009611 c4d01c77-c534-4f72-98d3-248b24f4eedc {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334486573"}, "pid": "11158", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:51.072982 2024-09-11 09:11:51.072986 91adef4c-29e0-493a-a8e4-7ba1f2db6d5d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334485763"}, "pid": "11159", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:51.133351 2024-09-11 09:11:51.13336 b189e307-db31-4ec9-bedd-84eef1c0198c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334319561"}, "pid": "11160", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:51.186776 2024-09-11 09:11:51.186779 d909b8f4-94b1-4dc8-ac4c-0e04e7431835 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334318492"}, "pid": "11161", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:51.240627 2024-09-11 09:11:51.240631 63c1acdd-9332-459b-ae12-d2998f6f56fb {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334318069"}, "pid": "11162", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:51.30727 2024-09-11 09:11:51.307274 6b3d8a1b-8772-47e6-b7cb-64aea94d8a00 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334313776"}, "pid": "11163", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:51.373787 2024-09-11 09:11:51.373796 5e80b45a-de7b-42d9-8ac2-7d00de2b3f13 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334312974"}, "pid": "11164", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:51.445763 2024-09-11 09:11:51.445768 52d3a187-0306-48cc-9388-7964953f02a2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334310661"}, "pid": "11165", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:51.507343 2024-09-11 09:11:51.507352 655c9671-58fc-415d-88a5-c6ca504bc866 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334302111"}, "pid": "11166", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:51.577855 2024-09-11 09:11:51.577859 6b84afce-3f96-4dd9-a9b1-b72b8469c452 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334300054"}, "pid": "11167", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:51.642193 2024-09-11 09:11:51.642198 75819564-41c3-483e-96a5-bb717d470640 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/133422725X"}, "pid": "11168", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:51.702518 2024-09-11 09:11:51.702522 49226770-485e-455b-add9-40fad7685979 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334221979"}, "pid": "11169", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:51.790671 2024-09-11 09:11:51.790676 17c0f7d9-8129-41b2-a7ed-45ed0a58dc1b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334198845"}, "pid": "11170", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:51.870905 2024-09-11 09:11:51.870907 484df67c-7c23-42bb-bde9-5410362b33f0 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334117918"}, "pid": "11171", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:51.932527 2024-09-11 09:11:51.932536 2f43d895-4e90-4807-8e16-4ffc8d0dd78c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334101221"}, "pid": "11172", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:52.002693 2024-09-11 09:11:52.002696 f6a44a1c-f3b5-48a6-b6e9-2491e920900d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334086826"}, "pid": "11173", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:52.070966 2024-09-11 09:11:52.070971 83a5d5b9-d684-483e-9ce3-a2d8f315087b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334027250"}, "pid": "11174", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:52.139819 2024-09-11 09:11:52.139823 4d66db23-d05c-4ecf-8131-6f39cc4de82a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334024804"}, "pid": "11175", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:52.196671 2024-09-11 09:11:52.19668 b1e87a2a-d7cc-4efc-bc96-44b3c9d4dd32 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334011753"}, "pid": "11176", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:52.265082 2024-09-11 09:11:52.265086 e34caecd-57b9-44d4-9203-f9813854cec8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334011079"}, "pid": "11177", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:52.330175 2024-09-11 09:11:52.330184 580e13d0-652b-4174-8c5d-ed3359faa928 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1334001529"}, "pid": "11178", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:52.39683 2024-09-11 09:11:52.396838 3ef13f59-b8f0-4e95-bec5-5be4f66838d4 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1333989954"}, "pid": "11179", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:52.468324 2024-09-11 09:11:52.468332 373bce35-f1ef-4172-94c5-6d14855fd8eb {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1333660758"}, "pid": "11180", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:52.533933 2024-09-11 09:11:52.533937 7d33e70e-1553-4f84-b0dd-3e2d5aea4cd2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1333582501"}, "pid": "11181", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:52.595372 2024-09-11 09:11:52.595376 9512a62d-b242-46e3-8bf4-423e741fa20b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1333570511"}, "pid": "11182", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:52.652651 2024-09-11 09:11:52.652654 fccfa3c4-49a7-4dd2-8358-c230f0e9a2fe {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/133355513X"}, "pid": "11183", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:52.701837 2024-09-11 09:11:52.70184 e278f7ad-d361-46bb-a942-54b9f8456673 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1333333668"}, "pid": "11184", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:52.752888 2024-09-11 09:11:52.75289 d693af00-bdf6-47f2-9104-4696f85f7442 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1333321090"}, "pid": "11185", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:52.816028 2024-09-11 09:11:52.81603 a100843b-3b72-40ee-8cd6-7689a5699c05 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1333315902"}, "pid": "11186", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:52.881089 2024-09-11 09:11:52.881098 1a0f9022-ba97-4960-9ac0-982bf7ca8cca {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1333263465"}, "pid": "11187", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:52.950064 2024-09-11 09:11:52.950068 997411d2-a72e-493b-80b2-3e03f9d4a2a3 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1333255853"}, "pid": "11188", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:53.013013 2024-09-11 09:11:53.013017 897e608d-4ec6-48ec-86d2-a9455582bef2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1333228880"}, "pid": "11189", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:53.105681 2024-09-11 09:11:53.105712 e87d9fe8-0cca-47f2-803f-24f2baa83e17 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1333113943"}, "pid": "11190", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:53.215193 2024-09-11 09:11:53.215204 1bca6bc8-d383-401e-8dd4-c32e8cc64b68 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1332874568"}, "pid": "11191", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:53.307092 2024-09-11 09:11:53.307096 23b6eb9e-6575-419a-a9c0-a8b1f11f9fde {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1332858198"}, "pid": "11192", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:53.363685 2024-09-11 09:11:53.363688 51d9a3be-b034-4ef2-b428-f6e631dff736 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1332769349"}, "pid": "11193", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:53.425966 2024-09-11 09:11:53.425975 20169ddc-fb7c-479a-be02-fe83e9aa7ecf {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1332757375"}, "pid": "11194", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:53.49371 2024-09-11 09:11:53.493715 6a0241de-fb68-4958-bb1d-d971b9e1cf9c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1332755666"}, "pid": "11195", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:53.554964 2024-09-11 09:11:53.554967 d1f61e79-eb47-4f6f-973c-57d1fad838ad {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1332749054"}, "pid": "11196", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:53.623808 2024-09-11 09:11:53.623812 e95a9b8e-e26b-415e-803c-124c59bb6da2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1332747108"}, "pid": "11197", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:53.670124 2024-09-11 09:11:53.670126 f0a7f2ea-6a90-4883-854a-75206ca956e9 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1332742351"}, "pid": "11198", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:53.726266 2024-09-11 09:11:53.72627 8cb41390-c1d0-4622-b334-c6e064bbe5c5 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1332735002"}, "pid": "11199", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:53.792457 2024-09-11 09:11:53.792461 45295563-9adc-4e78-8292-cbcdaf490082 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1332734863"}, "pid": "11200", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:53.862596 2024-09-11 09:11:53.862605 ee547594-5917-4a45-9712-43418fa7b4c3 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/133273457X"}, "pid": "11201", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:53.94076 2024-09-11 09:11:53.940764 1aaad1aa-873b-4d17-85a4-f014a393d2e6 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1332733751"}, "pid": "11202", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:54.006939 2024-09-11 09:11:54.006943 5fc48a1e-9141-45e9-96e1-125189ae9e85 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1332732577"}, "pid": "11203", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:54.074354 2024-09-11 09:11:54.074359 ac274642-24ee-4514-a4d5-b81a89358cc4 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1332731430"}, "pid": "11204", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:54.130952 2024-09-11 09:11:54.130955 e70b40c8-3c7b-4ba9-aad2-59d8291d7747 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1332670482"}, "pid": "11205", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:54.185598 2024-09-11 09:11:54.185601 5db9447b-fef6-4f06-9219-0579e6e76a51 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1332669689"}, "pid": "11206", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:54.242637 2024-09-11 09:11:54.24264 bf154bbe-0ced-484a-8ed4-5904eb9a8a30 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1332451578"}, "pid": "11207", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:54.328398 2024-09-11 09:11:54.328409 ade76a8f-5e0c-4975-9c95-4ce4a4d45877 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1332353436"}, "pid": "11208", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:54.398396 2024-09-11 09:11:54.398406 ca62e1a1-7d04-468d-93ce-882464c42f2a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1332057209"}, "pid": "11209", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:54.464173 2024-09-11 09:11:54.464178 41043394-d100-41d6-97a1-f0be84dbf391 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1332055729"}, "pid": "11210", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:54.523363 2024-09-11 09:11:54.523367 4b5e130b-0091-4514-991a-f4a5d914c115 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1332031374"}, "pid": "11211", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:54.595995 2024-09-11 09:11:54.596004 85239c5d-7eb1-4020-b220-7ecdccc555f5 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1331729661"}, "pid": "11212", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:54.66858 2024-09-11 09:11:54.668582 1a753f01-5c05-4049-a8ff-6d66b00260f6 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1331609186"}, "pid": "11213", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:54.722645 2024-09-11 09:11:54.722648 bd1a7fab-8b97-4386-9e21-66f76bb66f6a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1331604346"}, "pid": "11214", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:54.800919 2024-09-11 09:11:54.800927 152ca6c5-1f97-47b6-a39f-cef82b28deb0 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1331602718"}, "pid": "11215", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:54.888949 2024-09-11 09:11:54.888959 c3237425-ba2d-47d6-8ea1-901aecff250a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1331601630"}, "pid": "11216", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:54.957418 2024-09-11 09:11:54.957426 57120299-ff19-49cb-9dec-cc12c47c42aa {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1331514282"}, "pid": "11217", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:55.023262 2024-09-11 09:11:55.023266 fff07bf2-719f-4cd9-b457-679e53e2eb4a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1331513952"}, "pid": "11218", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:55.089326 2024-09-11 09:11:55.089331 3d12c34e-eddb-4fd8-8145-fff9a45accf6 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1331379539"}, "pid": "11219", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:55.150461 2024-09-11 09:11:55.150464 f4503e29-bdf0-420f-9319-caa8cde3c7b4 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1331109191"}, "pid": "11220", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:55.205561 2024-09-11 09:11:55.205565 479cfc16-28c3-413e-b564-cf375cec5998 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1331089271"}, "pid": "11221", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:55.262804 2024-09-11 09:11:55.262812 b2733899-85ad-4806-9868-4daa61f668f8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1330982746"}, "pid": "11222", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:55.315104 2024-09-11 09:11:55.315108 bdc433c5-1af5-4a7b-bbdc-47805cc249e4 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1330866738"}, "pid": "11223", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:55.377763 2024-09-11 09:11:55.377768 198ec97e-0c7d-4ba3-8680-f30890094932 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1330847199"}, "pid": "11224", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:55.438104 2024-09-11 09:11:55.438111 25f202fe-d604-4230-b523-120c22b9504d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1330436237"}, "pid": "11225", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:55.511312 2024-09-11 09:11:55.511318 2493f48b-8b00-4c10-a6c2-a098228777e6 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1330428420"}, "pid": "11226", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:55.57546 2024-09-11 09:11:55.575464 c751cde7-6288-456c-968a-69e113db8fce {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1330324463"}, "pid": "11227", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:55.650871 2024-09-11 09:11:55.650875 f08f4331-5b1a-4bb1-9018-297864bea199 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1330302877"}, "pid": "11228", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:55.703455 2024-09-11 09:11:55.703459 461528cb-de2c-4e96-a4f8-9424522be15c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1330290887"}, "pid": "11229", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:55.760575 2024-09-11 09:11:55.760584 9a2ee180-0a52-42ce-b0e8-fe18e706a17b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1330177274"}, "pid": "11230", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:55.830886 2024-09-11 09:11:55.83089 1e4010e5-16e8-40d6-955d-a5d1ba268b4c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1329890205"}, "pid": "11231", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:55.894793 2024-09-11 09:11:55.894801 e1ab19d4-1dc5-4820-b710-dea66e3ec837 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1329430875"}, "pid": "11232", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:55.968429 2024-09-11 09:11:55.968438 2e98a6dc-0380-45d9-9d93-152b27a48045 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1316359042"}, "pid": "11233", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:56.035399 2024-09-11 09:11:56.035409 129f5ea2-b613-43a3-acd0-b1b4841907cd {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1314596373"}, "pid": "11234", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:56.102116 2024-09-11 09:11:56.102125 c5714d40-5aca-48e0-95a7-13bfc6f31ae6 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1302571524"}, "pid": "11235", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:56.16175 2024-09-11 09:11:56.161753 f1264930-8454-4ff8-9ee9-362c5215d122 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1300397128"}, "pid": "11236", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:56.219644 2024-09-11 09:11:56.219646 ce93fd78-b45f-46f2-81ed-2361db036f38 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1299383890"}, "pid": "11237", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:56.284657 2024-09-11 09:11:56.284662 6c48bb83-218e-4aa4-b059-12ba3367d9b8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/129673143X"}, "pid": "11238", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:56.353655 2024-09-11 09:11:56.35366 77693185-a03d-4878-b668-b7144042593a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1295131781"}, "pid": "11239", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:56.425211 2024-09-11 09:11:56.425215 3992596a-524d-40c9-bb9b-6183d47bde56 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1287837611"}, "pid": "11240", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:56.49295 2024-09-11 09:11:56.492959 3820fa49-fdc5-497c-8448-9c8e886c7845 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1286132703"}, "pid": "11241", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:56.563462 2024-09-11 09:11:56.563472 72be7c20-58e4-4da7-bb55-7f1f44aa883f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1284341119"}, "pid": "11242", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:56.641292 2024-09-11 09:11:56.641299 4860a7dd-3950-4a16-8190-61ddade592dc {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1282328816"}, "pid": "11243", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:56.700763 2024-09-11 09:11:56.700771 22f3bc46-1c0e-4890-9a07-2afe1b815e8f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1275159915"}, "pid": "11244", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:56.764196 2024-09-11 09:11:56.764204 dec649b9-750e-4207-893c-107338d31062 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1271173751"}, "pid": "11245", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:56.853596 2024-09-11 09:11:56.853607 e2d95025-d3c5-4ce3-aa05-487a412f6808 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1267606541"}, "pid": "11246", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:56.921312 2024-09-11 09:11:56.921314 f008d80e-eb71-4049-8bff-bcf576aab526 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1262419808"}, "pid": "11247", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:56.990823 2024-09-11 09:11:56.990828 35c4dbb4-1429-42c7-b3b9-5dec3690bc6d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1240912943"}, "pid": "11248", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:57.057327 2024-09-11 09:11:57.057337 153df41b-ada2-4b4e-8457-f2c1de438ca9 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1239866968"}, "pid": "11249", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:57.12271 2024-09-11 09:11:57.122718 bba8d29c-42c1-478f-bea9-c7bbdae2650c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1239463502"}, "pid": "11250", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:57.174751 2024-09-11 09:11:57.174754 67f0a076-faf1-4056-8f42-43368277ffbd {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1237860342"}, "pid": "11251", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:57.225037 2024-09-11 09:11:57.225041 45c7adb0-d8d3-4f9f-946b-97ac0fe6d41c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1237828171"}, "pid": "11252", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:57.283582 2024-09-11 09:11:57.283586 c6dbfa59-2be7-4f11-b0e4-fb40a46025ed {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1237774101"}, "pid": "11253", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:57.344369 2024-09-11 09:11:57.344377 a56475a6-902d-4833-805e-a9baf68398da {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1237279453"}, "pid": "11254", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:57.412038 2024-09-11 09:11:57.412043 d18dce00-8395-431b-b0c4-2e80aa928dc6 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1236792211"}, "pid": "11255", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:57.47628 2024-09-11 09:11:57.47629 7cac44be-fd72-4eb4-b080-ae60b1c3e5f5 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/123657754X"}, "pid": "11256", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:57.543445 2024-09-11 09:11:57.543448 ea361e16-5824-45fc-9df1-b1947d53252a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1235360709"}, "pid": "11257", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:57.614099 2024-09-11 09:11:57.614107 6f15f83b-c42e-4eb1-b114-a0aafbb3fef3 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1233310046"}, "pid": "11258", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:57.671866 2024-09-11 09:11:57.671868 19116c69-d48e-4052-8cae-9a07068ba7b8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1232243698"}, "pid": "11259", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:57.732773 2024-09-11 09:11:57.732783 5cdc242f-ca00-4877-b4b2-e1a2a6448464 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1225876354"}, "pid": "11260", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:57.814633 2024-09-11 09:11:57.814637 ffba917a-7a73-4732-8def-5ecda454a42f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1224278054"}, "pid": "11261", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:57.861888 2024-09-11 09:11:57.861891 e77dd639-4f3d-4be8-a02e-987ea0feb84d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/122413754X"}, "pid": "11262", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:57.952261 2024-09-11 09:11:57.952266 3e0e144c-3391-4e3b-aff9-97ccb0f2e1bb {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/122219953X"}, "pid": "11263", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:58.03708 2024-09-11 09:11:58.037083 ff109097-cada-498d-998a-68061a73d207 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1222199440"}, "pid": "11264", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:58.108564 2024-09-11 09:11:58.108573 7a22b914-eed9-4562-b1ad-c1d5bcc1997b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1219234621"}, "pid": "11265", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:58.165672 2024-09-11 09:11:58.165675 25e31c29-ebaa-4da1-bbce-f001464dede2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1215862520"}, "pid": "11266", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:58.217432 2024-09-11 09:11:58.217435 176bb1f9-c949-4e4b-a49d-8452a53ff31b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1208649175"}, "pid": "11267", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:58.278453 2024-09-11 09:11:58.278461 57e2cdfb-3834-43f1-9d3a-fe24bbf54393 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1206005505"}, "pid": "11268", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:58.354585 2024-09-11 09:11:58.354595 1615465f-6dfd-452d-a003-1775b556443d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1203261837"}, "pid": "11269", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:58.422694 2024-09-11 09:11:58.422699 e769f56c-fe96-4b3a-a1d7-5f9ee923357b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1197938001"}, "pid": "11270", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:58.490821 2024-09-11 09:11:58.490826 b5c18a42-e2fb-48b8-9e97-655db0a113f2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1192399013"}, "pid": "11271", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:58.553529 2024-09-11 09:11:58.553532 4d5897e0-8aba-4e0a-b326-8c2febf0202f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1191133729"}, "pid": "11272", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:58.61488 2024-09-11 09:11:58.614888 e484998e-5f26-4de4-aa10-fd160eaa657b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1190333392"}, "pid": "11273", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:58.676958 2024-09-11 09:11:58.676962 4e3d565a-6910-4356-8075-1585647bce25 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1190333082"}, "pid": "11274", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:58.73294 2024-09-11 09:11:58.732943 4d9d093b-8d70-4f26-93aa-e439a608c28e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1190328259"}, "pid": "11275", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:58.797608 2024-09-11 09:11:58.797613 11bf3fd0-cb2f-4e4a-805d-bab2e760168f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1189443015"}, "pid": "11276", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:58.858837 2024-09-11 09:11:58.858841 d087157c-d771-457c-904a-bb62c7e55c02 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1188738658"}, "pid": "11277", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:58.928975 2024-09-11 09:11:58.928985 e0054086-2f7f-4ac8-bb05-4e50d886c37a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1184832803"}, "pid": "11278", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:59.054004 2024-09-11 09:11:59.054008 dfed1dd7-acf9-490e-a78e-6e5d7e80e478 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1184428727"}, "pid": "11279", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:59.151349 2024-09-11 09:11:59.151353 afc220e1-818c-4fa0-ad7b-2b167658b46f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1182916759"}, "pid": "11280", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:59.22557 2024-09-11 09:11:59.225574 110e868a-8de5-43ef-8c05-1b52834048b7 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1182704948"}, "pid": "11281", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:59.302239 2024-09-11 09:11:59.302242 83698548-76b4-4857-b2d7-602fed5347a7 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1180664485"}, "pid": "11282", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:59.392945 2024-09-11 09:11:59.39295 68c5750e-441e-449d-a83c-7481baaf77f9 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1180620623"}, "pid": "11283", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:59.463995 2024-09-11 09:11:59.464003 6f57c9cd-d41c-4548-aee1-34c2310477da {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1179502884"}, "pid": "11284", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:59.535104 2024-09-11 09:11:59.535107 adfcf5a8-4d15-4597-ac19-dbaea119f82b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1177183811"}, "pid": "11285", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:59.599336 2024-09-11 09:11:59.599339 e1d59311-8c6b-41e3-8935-3b2c53cce605 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1177087480"}, "pid": "11286", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:59.657592 2024-09-11 09:11:59.657595 8b97fdf6-ae95-48cf-81be-7c6d164520e1 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1171383401"}, "pid": "11287", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:59.718927 2024-09-11 09:11:59.718931 18a3d30f-4c17-4727-b053-6072a90b6ff9 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1169806708"}, "pid": "11288", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:59.793569 2024-09-11 09:11:59.793573 e339ed31-1d0a-4ecc-8bca-cd4aa6230748 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1169806686"}, "pid": "11289", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:59.862059 2024-09-11 09:11:59.862062 a982ffd2-cb14-412c-94eb-7be677db0ba2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1169805167"}, "pid": "11290", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:59.930667 2024-09-11 09:11:59.930676 dbf290d1-b7d7-45b0-84eb-2396f769938b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1169805140"}, "pid": "11291", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:00.037212 2024-09-11 09:12:00.037216 1f392195-9fdd-4419-a709-0a0e3b9dcdaa {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1167694643"}, "pid": "11292", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:00.14452 2024-09-11 09:12:00.144524 c8984dba-9437-443f-9957-c40ff51a9680 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1167335767"}, "pid": "11293", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:00.228567 2024-09-11 09:12:00.228571 619b1ea1-a994-44e8-b130-137dbe783259 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1166988325"}, "pid": "11294", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:00.30531 2024-09-11 09:12:00.30532 f173ee5d-b413-40c3-b5a4-5748ecbd850b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1166988007"}, "pid": "11295", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:00.376597 2024-09-11 09:12:00.376602 f7353d81-32b4-4100-821d-ef40da5b7e93 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1166098877"}, "pid": "11296", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:00.519524 2024-09-11 09:12:00.519527 c295043d-d106-48a1-80b3-a618b22385e1 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1165597586"}, "pid": "11297", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:00.56564 2024-09-11 09:12:00.565643 127754ba-5675-4474-8a2d-596f1abf3075 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1164527657"}, "pid": "11298", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:00.644054 2024-09-11 09:12:00.644064 0348b2d9-5bc4-420c-bb5d-af5b6770632a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/116355815X"}, "pid": "11299", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:00.745042 2024-09-11 09:12:00.745047 9f8a8175-ade1-4b99-9d29-5b0d4a880fb2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1163558095"}, "pid": "11300", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:00.818663 2024-09-11 09:12:00.818665 69b90da5-8f2e-4843-8dc7-0595604cdf61 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1163419907"}, "pid": "11301", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:00.902127 2024-09-11 09:12:00.902136 bee73108-a03c-4054-94a8-b6bc334f5293 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1161830820"}, "pid": "11302", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:00.975599 2024-09-11 09:12:00.975603 ff32ccd7-6a7e-40bf-908d-f60296ddac13 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1161625046"}, "pid": "11303", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:01.118335 2024-09-11 09:12:01.118338 2880084e-76b1-4274-bc4c-cba1e3467078 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1156658128"}, "pid": "11304", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:01.200538 2024-09-11 09:12:01.200541 50c67f65-76fc-4730-8a5c-20fb70c8fbdf {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1156051029"}, "pid": "11305", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:01.249852 2024-09-11 09:12:01.249855 2c1bf34a-6c45-4830-81b5-a79903304512 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1148115242"}, "pid": "11306", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:01.384588 2024-09-11 09:12:01.38459 7c859687-04b4-4c7b-ba6b-245ca1f8866d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1147654123"}, "pid": "11307", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:01.459758 2024-09-11 09:12:01.459763 2740c0e3-a99d-4b3e-969d-13dea26cb1b6 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1143714245"}, "pid": "11308", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:01.526145 2024-09-11 09:12:01.526149 e04a9fb4-b9d0-4dba-b394-67eff9882d57 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1143154991"}, "pid": "11309", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:01.603523 2024-09-11 09:12:01.603527 ad394640-3c6e-42b8-9fd9-0f3d396fd612 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1142135993"}, "pid": "11310", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:01.665063 2024-09-11 09:12:01.665066 c317bc48-82e8-4dc7-afb7-1b59bcece6d7 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1139463888"}, "pid": "11311", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:01.723211 2024-09-11 09:12:01.723214 d5fea72e-4736-4951-8e72-c7a2b98095bf {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/113914071X"}, "pid": "11312", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:01.790478 2024-09-11 09:12:01.790482 c749af2e-e2c4-4367-bb67-de806f750172 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/113698612X"}, "pid": "11313", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:01.873588 2024-09-11 09:12:01.873593 d98511d6-00ae-480c-9bd3-fc3e0af2a597 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1136731237"}, "pid": "11314", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:01.933149 2024-09-11 09:12:01.933153 8ab70359-1e6c-470a-9644-315a314bc3d2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1136092293"}, "pid": "11315", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:02.002839 2024-09-11 09:12:02.002843 2aa11f7e-3eed-4d1c-99b1-5e166c592a4d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1135805342"}, "pid": "11316", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:02.122487 2024-09-11 09:12:02.122491 aa782310-4213-42a0-9c22-076ec38e96c6 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1135798842"}, "pid": "11317", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:02.181936 2024-09-11 09:12:02.18194 4df22c47-8a4c-49dd-814f-7bf2c596fab3 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1133293247"}, "pid": "11318", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:02.318577 2024-09-11 09:12:02.318581 93b915c3-dd53-48f6-a870-d9159155782e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1132227771"}, "pid": "11319", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:02.386597 2024-09-11 09:12:02.386601 2993250b-6e26-4e23-9644-2e79b4383e40 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1124279156"}, "pid": "11320", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:02.497378 2024-09-11 09:12:02.497383 8024509e-127e-49cb-9e53-8deee197d623 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1122747160"}, "pid": "11321", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:02.543631 2024-09-11 09:12:02.543634 bd3e34bc-c7bb-4c4c-8950-a3e51bf95871 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1122668171"}, "pid": "11322", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:02.618626 2024-09-11 09:12:02.61863 a665ace5-50e8-4081-b086-c110b8d32866 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/112132925X"}, "pid": "11323", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:02.680132 2024-09-11 09:12:02.680136 f3ff81ab-8436-4b80-82be-636c7fe3a2e5 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1107605113"}, "pid": "11324", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:02.735767 2024-09-11 09:12:02.73577 ae0ba717-204d-438d-93d0-ed6fc78d9f33 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1105589110"}, "pid": "11325", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:02.806729 2024-09-11 09:12:02.806732 5c6c1625-be52-424b-b091-e8941e9fc081 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1101612258"}, "pid": "11326", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:02.862264 2024-09-11 09:12:02.862266 aaebf146-ee23-4ecb-89f6-ab54efdad33e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1100323325"}, "pid": "11327", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:02.926964 2024-09-11 09:12:02.926967 829e73da-af7f-401f-b537-77fc8661de7f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1100201831"}, "pid": "11328", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:02.993266 2024-09-11 09:12:02.99327 a23112bd-0e9b-47aa-945c-a9b62dbb40b9 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1099133092"}, "pid": "11329", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:03.128735 2024-09-11 09:12:03.128739 5fbafe69-b2f8-4b4e-89d1-f4833803b3df {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1099132061"}, "pid": "11330", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:03.198805 2024-09-11 09:12:03.198809 9192baec-476e-479b-9f67-70db94c060c6 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1097213617"}, "pid": "11331", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:03.272381 2024-09-11 09:12:03.272384 5adb214c-1f04-49b4-9d57-9e71882cf16c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1095576461"}, "pid": "11332", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:03.357351 2024-09-11 09:12:03.357355 80e783b8-642e-4a4b-bcd7-6ed89a1f8272 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1085229823"}, "pid": "11333", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:03.421576 2024-09-11 09:12:03.421585 c2b4c19a-d438-4c7a-a177-801f8db99670 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1082797251"}, "pid": "11334", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:03.497032 2024-09-11 09:12:03.497041 217a045b-d08e-4c14-be7d-6193cb8f87eb {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1082520101"}, "pid": "11335", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:03.573097 2024-09-11 09:12:03.5731 55bae613-418d-4ca1-9074-80d6f2d6778e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1082153850"}, "pid": "11336", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:03.646477 2024-09-11 09:12:03.646485 11a6e88d-5d2b-4140-aad6-503a7bf8c470 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1082012033"}, "pid": "11337", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:03.712524 2024-09-11 09:12:03.712528 8b423f2c-808b-4ca7-b6c1-a6dd3aa26a9e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1082001430"}, "pid": "11338", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:03.782663 2024-09-11 09:12:03.782672 266fa899-745a-418e-8ca1-768b9dc6c2b3 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1081845031"}, "pid": "11339", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:03.844789 2024-09-11 09:12:03.844792 43840f0e-c8f9-4fa2-b6fc-708b5293c38d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1081844973"}, "pid": "11340", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:03.911006 2024-09-11 09:12:03.911014 33363192-eb69-4096-8e85-eaa33a8fbb7d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1081842474"}, "pid": "11341", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:03.984163 2024-09-11 09:12:03.984167 aff4c56b-ac08-45fe-9e11-da32113ca91e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1081839082"}, "pid": "11342", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:04.193308 2024-09-11 09:12:04.193312 d81a6026-c835-40ef-bd32-a74d3e4306d1 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1081838779"}, "pid": "11343", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:04.258262 2024-09-11 09:12:04.258266 99e2f59f-bd61-47d2-a9cb-187fd71683a9 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1081838655"}, "pid": "11344", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:04.349701 2024-09-11 09:12:04.349704 f08b9f3e-04ec-42d1-9ebc-e2fd7964fc18 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1081838507"}, "pid": "11345", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:04.401648 2024-09-11 09:12:04.401657 5b40b68c-5cba-4a37-8bb8-629832a43dd6 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1081838396"}, "pid": "11346", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:04.478961 2024-09-11 09:12:04.478971 4df66c3c-0d35-4096-ac24-1e5040964f96 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1081838310"}, "pid": "11347", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:04.552544 2024-09-11 09:12:04.552553 201db19e-e5e0-40d6-be54-c58661d7a3a4 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1081838167"}, "pid": "11348", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:04.622865 2024-09-11 09:12:04.622869 34137c1a-55b5-4880-aa59-b3854d80bed9 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1081838051"}, "pid": "11349", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:04.685624 2024-09-11 09:12:04.685628 7c27264b-6dce-4ebb-aa92-18e0574fa1ee {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1081330236"}, "pid": "11350", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:04.759779 2024-09-11 09:12:04.759789 5f427e16-6020-428c-8010-bd6fb15496e2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1081212918"}, "pid": "11351", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:04.831073 2024-09-11 09:12:04.831078 c6238778-72f3-46ca-a0e5-69739cb229ce {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1081097930"}, "pid": "11352", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:04.903191 2024-09-11 09:12:04.903195 1428bb79-6dcb-454c-a21e-08488803d7ab {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1079692916"}, "pid": "11353", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:04.982284 2024-09-11 09:12:04.982289 210da01c-f8fd-450d-9960-1e4b1ea97b64 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1079568352"}, "pid": "11354", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:05.078411 2024-09-11 09:12:05.078417 f813b82e-e1b1-4881-829d-7d428c3c24ea {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1078131902"}, "pid": "11355", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:05.138188 2024-09-11 09:12:05.138191 c9dfcdf0-e3e6-4202-b9b7-5166b241a164 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1077893450"}, "pid": "11356", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:05.192213 2024-09-11 09:12:05.192217 b29e6e48-dc62-4667-88cc-b55635d8544c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1077053320"}, "pid": "11357", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:05.243608 2024-09-11 09:12:05.243611 1c06e97b-03bc-4f34-8731-306cda97a9f7 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1077053185"}, "pid": "11358", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:05.314747 2024-09-11 09:12:05.31475 80ff0c15-73b6-4722-9eea-f794efc8aab2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/107699847X"}, "pid": "11359", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:05.389795 2024-09-11 09:12:05.389799 80e25973-dd56-43c9-962c-ef2a6fd51094 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1076027032"}, "pid": "11360", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:05.455471 2024-09-11 09:12:05.455479 8cb44a90-812e-47fe-9a4f-53772a8770f9 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1075827361"}, "pid": "11361", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:05.536977 2024-09-11 09:12:05.536986 8f6fd9a2-0298-4481-bd70-c114bb3fc7e2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1075220467"}, "pid": "11362", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:05.640226 2024-09-11 09:12:05.640229 766f4f96-38ac-4ca4-935f-5464feaa38d5 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1074377397"}, "pid": "11363", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:05.714475 2024-09-11 09:12:05.714485 4b65c8a2-76ea-44ef-9407-45de4e82a154 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1074316908"}, "pid": "11364", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:05.807411 2024-09-11 09:12:05.807416 a50172de-2a43-4908-be0c-510b01813997 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/107399077X"}, "pid": "11365", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:05.886496 2024-09-11 09:12:05.8865 760739d2-ac42-480a-b19b-06c23c9a849e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1073950220"}, "pid": "11366", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:05.956049 2024-09-11 09:12:05.956058 8a80de3d-d168-4c52-baaa-bfdcf2b59e2f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/107373157X"}, "pid": "11367", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:06.03047 2024-09-11 09:12:06.03048 5908cdf8-9c28-488a-b425-ad22f76e7140 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1073724549"}, "pid": "11368", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:06.091782 2024-09-11 09:12:06.091787 17ea5e50-272f-4ca5-9e0f-3aef1710323e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/107362062X"}, "pid": "11369", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:06.154985 2024-09-11 09:12:06.154993 558ec718-a0d0-42e8-8ae9-b257af8f9898 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1073267830"}, "pid": "11370", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:06.212203 2024-09-11 09:12:06.212207 15c099bb-0c9c-4eff-b193-870eda2a78f6 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/107283314X"}, "pid": "11371", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:06.289449 2024-09-11 09:12:06.289458 cb963149-4adb-4049-afe4-85e7b26efffd {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1071872435"}, "pid": "11372", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:06.385637 2024-09-11 09:12:06.385642 0ed87b6c-c2d7-4f2e-bb83-8bf2a92017c4 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1071862391"}, "pid": "11373", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:06.471316 2024-09-11 09:12:06.471321 bd804894-c0e4-41f4-98ad-623b4c4f50b7 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1070113026"}, "pid": "11374", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:06.56293 2024-09-11 09:12:06.562939 dbb55cbc-1737-4627-90a4-813fa2427454 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1069803782"}, "pid": "11375", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:06.651602 2024-09-11 09:12:06.651606 8bdbb9a8-1785-41a5-8ae7-3afcaa6f2640 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1068118490"}, "pid": "11376", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:06.725735 2024-09-11 09:12:06.725744 8d15ab81-fa46-4a36-a7b8-c67c2bba9bad {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1067883703"}, "pid": "11377", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:06.809254 2024-09-11 09:12:06.809263 f4975139-87d9-4e76-a25f-5ee79f731b5c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1067878831"}, "pid": "11378", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:06.886139 2024-09-11 09:12:06.886147 7016168f-6213-43a6-8616-651242b46cd5 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1067860142"}, "pid": "11379", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:06.964215 2024-09-11 09:12:06.964223 460a0e9a-3b0a-42da-a946-8a6cbf483142 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1067637184"}, "pid": "11380", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:07.035981 2024-09-11 09:12:07.035989 eab2954f-e598-426a-bdb9-4276dcdfaed8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1067636757"}, "pid": "11381", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:07.109023 2024-09-11 09:12:07.109028 2a330a01-3981-4d00-8d2f-6b723a2b9400 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1067274006"}, "pid": "11382", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:07.170953 2024-09-11 09:12:07.170956 d587b0a1-e9ef-4061-8ca2-38e8dae4fa41 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1067272488"}, "pid": "11383", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:07.223495 2024-09-11 09:12:07.223498 ef93528c-c10d-4dd6-aadd-a1841b96f927 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1064960243"}, "pid": "11384", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:07.299641 2024-09-11 09:12:07.299645 e650dea6-55c3-4d17-8ad5-51bdd8cf9bbd {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1064714455"}, "pid": "11385", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:07.371447 2024-09-11 09:12:07.371451 bfb219f0-6f09-4cac-b925-4b2b3728721b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1064601502"}, "pid": "11386", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:07.43797 2024-09-11 09:12:07.437973 25e01377-f23c-4982-ab1a-93f5b217d1fb {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1064049419"}, "pid": "11387", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:07.506158 2024-09-11 09:12:07.506162 0ab1ce52-c6f6-4dba-873b-1b6f613cd00a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1062979583"}, "pid": "11388", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:07.561173 2024-09-11 09:12:07.561177 d6a0b504-031a-4255-ad84-70f4626826ec {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1062970004"}, "pid": "11389", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:07.631497 2024-09-11 09:12:07.631501 54fb28c2-cd07-4acd-9351-d37bcd27a5bd {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1062891848"}, "pid": "11390", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:07.689827 2024-09-11 09:12:07.689829 cd31aa47-1e8a-40e7-ac89-a5aaa7c112b3 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1062531191"}, "pid": "11391", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:07.754156 2024-09-11 09:12:07.754161 f32ffb0d-9758-4aa9-b693-ffe1d930a9c4 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1062516109"}, "pid": "11392", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:07.829941 2024-09-11 09:12:07.829945 b96b1405-f1de-417a-9c1e-be08a39c86db {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1061004198"}, "pid": "11393", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:07.894517 2024-09-11 09:12:07.894526 91cf2e06-52d2-48dc-b906-908d6ef5ce54 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1060849127"}, "pid": "11394", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:07.964226 2024-09-11 09:12:07.964231 117684cd-8145-4b84-a850-a7bcb0f29252 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/106081482X"}, "pid": "11395", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:08.039569 2024-09-11 09:12:08.039572 986fdfcd-f078-4295-9d74-46333d0c1e64 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1060503611"}, "pid": "11396", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:08.124523 2024-09-11 09:12:08.124527 2e0a40ec-7e48-483b-a477-5d459aa44a94 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1060503166"}, "pid": "11397", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:08.183058 2024-09-11 09:12:08.183062 bfa2db85-e460-44fe-8fe7-6a33fd1b03f7 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1060502798"}, "pid": "11398", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:08.233396 2024-09-11 09:12:08.233399 81b24901-e6bc-419a-bf85-5212411fdd83 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1060502682"}, "pid": "11399", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:08.292434 2024-09-11 09:12:08.292439 b20faa59-b2b0-4331-884a-5a9846cb6d88 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1060502585"}, "pid": "11400", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:08.359514 2024-09-11 09:12:08.359523 8a40b055-f723-44d9-ac75-836b59b6a48c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1060502372"}, "pid": "11401", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:08.442387 2024-09-11 09:12:08.442396 8960e1e8-7e9a-41ef-ab60-9cde1d35d69f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/106050216X"}, "pid": "11402", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:08.513065 2024-09-11 09:12:08.513069 631a673e-46e9-4e9f-be8e-f909f6b3e07b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1060501902"}, "pid": "11403", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:08.583528 2024-09-11 09:12:08.583532 f5309193-332f-4d57-9ddb-42552e3463ab {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1060501759"}, "pid": "11404", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:08.650915 2024-09-11 09:12:08.650928 085cbec1-85e4-4d38-ba0e-3376f3a63c9f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1060501457"}, "pid": "11405", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:08.723727 2024-09-11 09:12:08.723731 182decda-c25f-4090-bf26-0c572887c806 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/106050104X"}, "pid": "11406", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:08.798514 2024-09-11 09:12:08.798517 d4027cdf-3647-49c0-8c6e-ecf249f97654 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1060419319"}, "pid": "11407", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:08.863342 2024-09-11 09:12:08.863351 e914fdae-c0c2-40ca-bcae-a8f50480d5c2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1060401134"}, "pid": "11408", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:08.922505 2024-09-11 09:12:08.922508 2a38b2df-3495-4f1d-a777-cf8a17a28e2f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1060238128"}, "pid": "11409", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:08.997224 2024-09-11 09:12:08.997232 52a006f8-3ac0-40b0-ad13-fd65246bcd5e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1060132206"}, "pid": "11410", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:09.066703 2024-09-11 09:12:09.066706 e7a58db9-01a6-4146-9a1d-6160fd50ae76 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1060087367"}, "pid": "11411", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:09.142397 2024-09-11 09:12:09.142406 0a588698-581d-4be4-a810-34f0b269b7fe {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1059448831"}, "pid": "11412", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:09.205465 2024-09-11 09:12:09.205468 3deb4aa6-afef-4d89-8c58-4befab5145ff {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1059378396"}, "pid": "11413", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:09.260878 2024-09-11 09:12:09.260881 d80d473a-d121-4642-a3a9-616ab24f9b2b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1059376946"}, "pid": "11414", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:09.313291 2024-09-11 09:12:09.313295 8cf5a885-54e3-4e09-98d6-76d9d69ae2f4 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1059359022"}, "pid": "11415", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:09.37813 2024-09-11 09:12:09.378133 12e79df6-6919-45cf-a67f-61ac1ad9c8f9 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1059357755"}, "pid": "11416", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:09.441552 2024-09-11 09:12:09.441556 6d443c77-c997-46b7-a5b5-52fb47a6a3c4 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1059250454"}, "pid": "11417", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:09.525378 2024-09-11 09:12:09.525382 98b76f43-2cf5-4505-ab6b-d51f6adf6da2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/105914249X"}, "pid": "11418", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:09.603595 2024-09-11 09:12:09.6036 d596f82b-bc23-4c58-a1d3-7b98e3b4380b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058994743"}, "pid": "11419", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:09.669458 2024-09-11 09:12:09.669463 f9d0d19c-847f-4fae-93f3-f5dbaad48d55 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058986333"}, "pid": "11420", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:09.719549 2024-09-11 09:12:09.719551 b1ad9704-4576-4808-9758-83be1e130553 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058985299"}, "pid": "11421", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:09.785588 2024-09-11 09:12:09.785593 70c6db33-b296-41ad-853a-c06f94c700f9 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058984144"}, "pid": "11422", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:09.846707 2024-09-11 09:12:09.846712 c8507510-a3db-4fa9-9e5b-db54740107ac {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058973045"}, "pid": "11423", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:09.924759 2024-09-11 09:12:09.924763 272a27cd-c4da-4a08-b64e-6cb91f521c0c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058939068"}, "pid": "11424", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:09.986175 2024-09-11 09:12:09.986177 a0ae823f-e14a-4315-87d3-ae60c44127cf {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/105892978X"}, "pid": "11425", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:10.055031 2024-09-11 09:12:10.055039 393be4ae-669e-4430-b31a-7a5af6510567 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058928732"}, "pid": "11426", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:10.126899 2024-09-11 09:12:10.126904 9d250107-bacb-44a2-94e0-28ab2ec72174 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058919954"}, "pid": "11427", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:10.21276 2024-09-11 09:12:10.212766 58c1d5cd-0014-44bf-b579-c7fd600792f9 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058918176"}, "pid": "11428", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:10.280624 2024-09-11 09:12:10.280629 e2b33a95-06e0-4b4e-b6c4-bfd62b58e46b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058899597"}, "pid": "11429", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:10.353807 2024-09-11 09:12:10.353811 bb2e3f39-74b0-4023-9fb4-d85762fc404d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058896318"}, "pid": "11430", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:10.410207 2024-09-11 09:12:10.41021 6ed875ce-46e7-4525-85f3-b354233cbb8d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058890611"}, "pid": "11431", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:10.474052 2024-09-11 09:12:10.474056 5920a644-b527-4044-bf49-df48436ffee7 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058880373"}, "pid": "11432", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:10.53799 2024-09-11 09:12:10.537994 e9647d9e-4a52-486e-88bd-8e71dab82c76 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058876872"}, "pid": "11433", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:10.597998 2024-09-11 09:12:10.598 dde77d96-6c8a-40d9-b74d-c54d0997a29a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058840819"}, "pid": "11434", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:10.662638 2024-09-11 09:12:10.662644 2c879f4c-1e35-49ce-95af-63e873bb7c8b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058838512"}, "pid": "11435", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:10.718984 2024-09-11 09:12:10.718986 5fcfe091-5e00-4420-8f0a-be1f1e10b7ec {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058667343"}, "pid": "11436", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:10.778021 2024-09-11 09:12:10.778024 83c46296-6b5a-46cd-80a0-ce613419a4bb {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058664468"}, "pid": "11437", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:10.842296 2024-09-11 09:12:10.8423 cc47a3cc-ed27-4b9d-801f-e3231bcc589c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058661396"}, "pid": "11438", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:10.91111 2024-09-11 09:12:10.91118 0a3343a0-2466-473a-97a4-41d6dfc13349 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058651994"}, "pid": "11439", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:10.985725 2024-09-11 09:12:10.985734 949b1271-eebe-4c3e-8620-c527d548e6c1 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058639919"}, "pid": "11440", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:11.065373 2024-09-11 09:12:11.065382 aea95d6e-7c81-4e56-b86e-16b7f1f73794 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/105863982X"}, "pid": "11441", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:11.139029 2024-09-11 09:12:11.139033 1a61610c-33ac-49d9-89a6-5cccb881c1a9 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058622773"}, "pid": "11442", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:11.203576 2024-09-11 09:12:11.20358 c6dbbb39-c45f-43b0-afe8-0680b4f12dab {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058616684"}, "pid": "11443", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:11.276626 2024-09-11 09:12:11.276637 3999329a-5aa3-43f9-b3c4-b84f4047122d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058616579"}, "pid": "11444", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:11.361186 2024-09-11 09:12:11.361196 88db27dc-4edd-4123-8af9-48040d228d82 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058583018"}, "pid": "11445", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:11.442477 2024-09-11 09:12:11.442486 88f3bedb-8efa-41c6-ad2e-138155f1c8e2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058579045"}, "pid": "11446", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:11.522254 2024-09-11 09:12:11.522292 1f328fcd-a0df-4994-843d-06fcab2993c2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058463993"}, "pid": "11447", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:11.613182 2024-09-11 09:12:11.613194 0b6c82ba-6e76-4559-ab18-f1bc503564bf {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058463896"}, "pid": "11448", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:11.680929 2024-09-11 09:12:11.680932 7d9abebb-cbc0-45ef-8f73-b46ac72ca8f6 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058460862"}, "pid": "11449", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:11.735061 2024-09-11 09:12:11.735064 eb204811-db7d-478d-9138-b819c9c26795 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058460293"}, "pid": "11450", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:11.800413 2024-09-11 09:12:11.800416 e37ead03-70bd-41a6-b90a-e5998453844b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058395726"}, "pid": "11451", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:11.86795 2024-09-11 09:12:11.867955 8e956ed7-01b4-41f5-af05-b9b799d22053 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1058041142"}, "pid": "11452", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:11.937392 2024-09-11 09:12:11.937396 3e4c2ec7-0f38-474e-a8fb-bf1791010bfe {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1057942928"}, "pid": "11453", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:12.006608 2024-09-11 09:12:12.006612 a326e3bc-2d28-4a8a-ba7e-4d818bc9d54f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1056973714"}, "pid": "11454", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:12.074608 2024-09-11 09:12:12.074612 581605b9-d823-40f7-874c-d5ace1253137 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1055068716"}, "pid": "11455", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:12.157082 2024-09-11 09:12:12.157093 2f8fcd48-978c-4fea-b7f9-b43b4c8fb884 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1054961824"}, "pid": "11456", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:12.221186 2024-09-11 09:12:12.221189 7724c5a2-de4e-48a7-87dc-d5f95043efb0 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1054631026"}, "pid": "11457", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:12.287042 2024-09-11 09:12:12.287051 8cc341d3-2c3d-4a52-b5a5-93d8e0da3764 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1054611041"}, "pid": "11458", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:12.368307 2024-09-11 09:12:12.368312 90bfec30-c373-40ff-9bf2-9628a1640ff7 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1054442959"}, "pid": "11459", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:12.436644 2024-09-11 09:12:12.436647 9dfd5e46-292e-41c0-b215-1c6cdfd0040d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1054382255"}, "pid": "11460", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:12.504891 2024-09-11 09:12:12.504895 d1eee347-897a-488d-835a-473c94a667ca {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1054036489"}, "pid": "11461", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:12.563185 2024-09-11 09:12:12.563188 90e9e9c0-c064-4162-beee-a8e0e56da535 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1054036322"}, "pid": "11462", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:12.632381 2024-09-11 09:12:12.63239 0ed8ddbb-da00-4c30-9384-3f78094df445 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/105382467X"}, "pid": "11463", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:12.691634 2024-09-11 09:12:12.691638 d01eddae-6d55-436b-8211-7b20074affef {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1053733119"}, "pid": "11464", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:12.75598 2024-09-11 09:12:12.755984 e451cbd6-2310-464a-ad6b-8b6ee325b417 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1053694857"}, "pid": "11465", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:12.834193 2024-09-11 09:12:12.834202 c4bb5de0-c6c0-4885-82d9-c3d94facd789 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/105366916X"}, "pid": "11466", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:12.896912 2024-09-11 09:12:12.896917 313dd608-0b82-4bbe-b09c-d69810c0638d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1053585039"}, "pid": "11467", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:12.966942 2024-09-11 09:12:12.966946 bd8600aa-818c-4775-a168-6fea87eead1d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1053578571"}, "pid": "11468", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:13.035679 2024-09-11 09:12:13.035682 a43dea2d-a06b-4ac3-9cbb-29592a68105e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1053495382"}, "pid": "11469", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:13.106121 2024-09-11 09:12:13.106131 3701adb0-441a-4098-b8d7-1ffaa16249e9 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1053460856"}, "pid": "11470", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:13.17702 2024-09-11 09:12:13.177024 85ab81fd-b13a-4b29-b460-46582585ff8a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1051746663"}, "pid": "11471", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:13.228796 2024-09-11 09:12:13.228799 a5a654b5-5745-4093-854c-654b01c31b94 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1044268069"}, "pid": "11472", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:13.305059 2024-09-11 09:12:13.305067 95b217e0-770f-4bfa-a777-91a5bf22910f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1038831628"}, "pid": "11473", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:13.372909 2024-09-11 09:12:13.372913 16d20932-9c58-4af1-96d1-ee7cb78cbaa7 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1036912949"}, "pid": "11474", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:13.437048 2024-09-11 09:12:13.437052 a549a49a-2006-4d11-87d4-b9ac88d06f7c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1036573141"}, "pid": "11475", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:13.493553 2024-09-11 09:12:13.493557 44a8e22a-df2e-48be-9841-4a069d384f04 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1035487640"}, "pid": "11476", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:13.543193 2024-09-11 09:12:13.543196 0bf8f0f1-2196-4039-a729-e89a48935bdd {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1032436034"}, "pid": "11477", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:13.617673 2024-09-11 09:12:13.617677 08c3ae79-54d7-4506-a109-93607f72663a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1031571922"}, "pid": "11478", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:13.682964 2024-09-11 09:12:13.682967 69bd6643-80c1-4ea5-b8cb-cb3ba3d360ad {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1029389896"}, "pid": "11479", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:13.734034 2024-09-11 09:12:13.734037 9967b7d3-ab9a-47e4-b3d3-27b729090626 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1029389233"}, "pid": "11480", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:13.8075 2024-09-11 09:12:13.807504 af32b8e0-a801-438d-a5a0-9f559d4e8637 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1029388334"}, "pid": "11481", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:13.889522 2024-09-11 09:12:13.889525 f38f0bc8-d334-40d5-82ee-84ee014d84cd {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1028231660"}, "pid": "11482", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:13.962187 2024-09-11 09:12:13.962192 0cfce3de-e573-4057-95c7-cc8ed55b8f2a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1024812693"}, "pid": "11483", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:14.031798 2024-09-11 09:12:14.031806 54a3341b-b8bd-4bbd-abb4-b77db9bf9913 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1021396656"}, "pid": "11484", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:14.102643 2024-09-11 09:12:14.102653 354f830f-bf0b-4acd-8d50-9e5dff9c4703 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1021113018"}, "pid": "11485", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:14.180255 2024-09-11 09:12:14.18026 3d3588d0-df36-48b1-b087-7a30b98940c0 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1021112577"}, "pid": "11486", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:14.238803 2024-09-11 09:12:14.238805 85d1e129-6a82-4b31-b585-5c34a62a2b8f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1021112518"}, "pid": "11487", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:14.298835 2024-09-11 09:12:14.298839 a7005726-2921-423a-966d-1fac0835bf2e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1021112216"}, "pid": "11488", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:14.356087 2024-09-11 09:12:14.356089 b374cb11-577e-4746-9ebe-2d8a8e03aaff {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1021056154"}, "pid": "11489", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:14.422038 2024-09-11 09:12:14.422041 644c609d-2488-4f62-b076-bbe02a0dd90b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1020911387"}, "pid": "11490", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:14.495997 2024-09-11 09:12:14.49601 632c033e-8495-4e52-bfd0-49bcd5fbf302 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1020911344"}, "pid": "11491", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:14.571169 2024-09-11 09:12:14.571171 ce44b55f-275c-4103-bf3f-876749acd659 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1020911026"}, "pid": "11492", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:14.63238 2024-09-11 09:12:14.632383 67492909-4bb9-4631-ad39-3503a50238c6 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1020897325"}, "pid": "11493", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:14.690577 2024-09-11 09:12:14.690581 6cb8f4e6-a2e9-40f5-9453-7e460e287365 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1020897236"}, "pid": "11494", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:14.753053 2024-09-11 09:12:14.753057 f2fc5fb0-0041-467d-ac27-5a27cf91bb1e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1020865318"}, "pid": "11495", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:14.82593 2024-09-11 09:12:14.825939 a09944c1-e010-4230-88ae-516e3124dd51 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1020865237"}, "pid": "11496", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:14.903207 2024-09-11 09:12:14.903215 58dd1fd6-141f-4a2f-a752-1b48a8a15cc0 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1016112106"}, "pid": "11497", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:14.975042 2024-09-11 09:12:14.975045 03594381-647d-4def-9075-699999d0531c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1011060752"}, "pid": "11498", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:15.051667 2024-09-11 09:12:15.051671 6413f5ab-8dbe-4d6c-975a-c0d2cd12c78d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1010438603"}, "pid": "11499", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:15.127608 2024-09-11 09:12:15.127612 f223f1ff-9d00-4f91-b1a0-4b2fd5067ac1 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1010249460"}, "pid": "11500", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:15.196763 2024-09-11 09:12:15.196766 4c87b350-c601-4f2d-ad91-2f1b40745cfa {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1009847430"}, "pid": "11501", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:15.265727 2024-09-11 09:12:15.26573 99b2efa2-92fc-412f-a85d-44847542b2a6 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1009707922"}, "pid": "11502", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:15.345238 2024-09-11 09:12:15.345243 b060daef-895e-4661-a6b7-0fa838a50ce8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1008073997"}, "pid": "11503", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:15.411161 2024-09-11 09:12:15.411165 9d8f4160-5866-4307-af06-8671e54330d8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1002427517"}, "pid": "11504", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:15.484374 2024-09-11 09:12:15.484382 78dda722-6a94-4a08-aa1d-df5c1d35d73d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/1001762630"}, "pid": "11505", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:15.564586 2024-09-11 09:12:15.56459 79f5712e-53d1-43e4-b5e3-14910b8af8ea {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/996588051"}, "pid": "11506", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:15.676562 2024-09-11 09:12:15.676566 010dc80e-8900-4c17-a667-31461057d5ff {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/996155910"}, "pid": "11507", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:15.727032 2024-09-11 09:12:15.727036 b6694b87-9f44-4a8d-900c-cbd9b21fbd6e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/995191506"}, "pid": "11508", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:15.793029 2024-09-11 09:12:15.793033 37b4cafb-dcb7-4280-bedc-f4d056eb2b0f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/994536666"}, "pid": "11509", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:15.856998 2024-09-11 09:12:15.857003 a437f433-97ff-4571-bc2a-dc7863a23fd8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/992346371"}, "pid": "11510", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:15.940083 2024-09-11 09:12:15.940088 04ff1793-92d3-431b-88aa-677572d2535e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/989505952"}, "pid": "11511", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:16.027188 2024-09-11 09:12:16.027194 21ef60d5-9137-4560-bd4c-5b54f53581c2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/98831326X"}, "pid": "11512", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:16.091463 2024-09-11 09:12:16.091467 eb14916b-42d3-45d6-b635-9964dea7810a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/985253576"}, "pid": "11513", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:16.153199 2024-09-11 09:12:16.153202 fd768eb5-74c9-4262-8f68-69123b498517 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/984645942"}, "pid": "11514", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:16.210837 2024-09-11 09:12:16.21084 deb9e1ca-f2bb-4c6a-a519-1dcaeda6c808 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/980891248"}, "pid": "11515", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:16.273733 2024-09-11 09:12:16.273736 a3a3b532-44d5-4784-a8c8-bcb114aa5e2e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/979131529"}, "pid": "11516", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:16.349551 2024-09-11 09:12:16.34956 9b262520-4098-4468-a64a-e6ac1d60d118 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/978966228"}, "pid": "11517", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:16.420053 2024-09-11 09:12:16.420055 0566175f-f13f-4194-b6fe-ee587938dec7 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/978923855"}, "pid": "11518", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:16.482157 2024-09-11 09:12:16.48216 0f3b7976-45ce-4115-820c-9af63016ad44 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/975958925"}, "pid": "11519", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:16.5354 2024-09-11 09:12:16.535402 341eb4ce-c928-46f7-9154-ae8d01d40f64 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/975328573"}, "pid": "11520", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:16.6137 2024-09-11 09:12:16.613708 6af7b52f-5e21-459a-bdac-3fb27701e8dc {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/974245747"}, "pid": "11521", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:16.68349 2024-09-11 09:12:16.683493 5ccf5bb7-af2d-4c74-871a-261b0394a2bd {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/97424225X"}, "pid": "11522", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:16.742088 2024-09-11 09:12:16.742093 18cf488d-6ffa-47ae-8e30-c8add2152cfd {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/973071648"}, "pid": "11523", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:16.825521 2024-09-11 09:12:16.825525 b3dcc20d-efd7-4993-8d36-615c6f9e4448 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/973066261"}, "pid": "11524", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:16.909238 2024-09-11 09:12:16.909247 a153e793-bf12-492d-9e67-44509ed82946 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/973066245"}, "pid": "11525", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:16.987132 2024-09-11 09:12:16.987136 b14dc138-9d71-44c4-8002-79f586bcdd76 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/973040149"}, "pid": "11526", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:17.067206 2024-09-11 09:12:17.06721 06df3632-ef82-40a8-8af0-fb6a9045476a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/972651438"}, "pid": "11527", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:17.137935 2024-09-11 09:12:17.137943 6857cb70-336d-4633-b81e-6e881db76adf {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/972586601"}, "pid": "11528", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:17.202408 2024-09-11 09:12:17.202412 f00d8ed9-de82-4e07-ad67-bbcb0d845775 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/972515704"}, "pid": "11529", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:17.26303 2024-09-11 09:12:17.263032 1784d288-dac5-4f8a-bec2-2a9177ff967e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/971359709"}, "pid": "11530", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:17.338213 2024-09-11 09:12:17.338221 4531b227-926a-4352-9a99-9156fc78fc7a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/970139470"}, "pid": "11531", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:17.410872 2024-09-11 09:12:17.410875 7f89abb1-4c00-4880-9477-60701dc7c5d0 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/969971028"}, "pid": "11532", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:17.47565 2024-09-11 09:12:17.475655 d1454115-093b-4fdc-982b-c36c8c98c9fd {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/969491131"}, "pid": "11533", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:17.534643 2024-09-11 09:12:17.534645 cd20789d-5f01-44bf-8363-7f4743cf32dc {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/967753546"}, "pid": "11534", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:17.605913 2024-09-11 09:12:17.605921 75db51eb-7d2e-4af8-bd2d-e1e7142846e8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/967681952"}, "pid": "11535", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:17.676902 2024-09-11 09:12:17.676905 415e1cbf-3d70-4d60-baaa-cfb550900f07 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/967581176"}, "pid": "11536", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:17.745977 2024-09-11 09:12:17.745989 cae2dbb0-46e2-47e2-af35-aa7775068f31 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/967180953"}, "pid": "11537", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:17.818232 2024-09-11 09:12:17.818235 f8aac0df-c66d-494a-ab94-709c89b8ba09 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/967160480"}, "pid": "11538", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:17.898362 2024-09-11 09:12:17.898369 d25ce602-7ae1-4497-a31b-b1c439e200f8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/96577578X"}, "pid": "11539", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:17.99123 2024-09-11 09:12:17.991239 d49dc8ce-8903-466f-ad1e-3d81a7f6b245 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/965775429"}, "pid": "11540", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:18.081731 2024-09-11 09:12:18.081736 f757e3e8-1d5d-4b49-ac8a-0de7f1ad66a2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/965774910"}, "pid": "11541", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:18.162873 2024-09-11 09:12:18.162883 76d05782-0488-46c9-8dd4-4d0e70952a5d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/965759059"}, "pid": "11542", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:18.221495 2024-09-11 09:12:18.221498 3094c24e-52ff-4eb0-8e4c-4a6ef7092f99 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/96575877X"}, "pid": "11543", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:18.289502 2024-09-11 09:12:18.289506 00c7bc9e-90f6-4a99-ba51-04ea1ac030d3 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/96563860X"}, "pid": "11544", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:18.350262 2024-09-11 09:12:18.350271 237ab93f-1ca1-42a3-85bf-e48315e7cc2a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/964991608"}, "pid": "11545", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:18.42769 2024-09-11 09:12:18.427698 ff033680-1c15-4841-8baa-b3a26333442b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/964462427"}, "pid": "11546", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:18.501751 2024-09-11 09:12:18.501759 edad4a8d-c161-4cdd-bce3-c983cedfd97d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/96411822X"}, "pid": "11547", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:18.573752 2024-09-11 09:12:18.573761 e01c4ca5-2582-4870-a2d5-0a1f6ca4ed7a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/963982559"}, "pid": "11548", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:18.66398 2024-09-11 09:12:18.663984 81f05a57-20b0-417f-a38d-e1413125e0db {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/963957635"}, "pid": "11549", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:18.721881 2024-09-11 09:12:18.721884 bb4032c9-2929-409b-a4ef-92750bc499ec {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/963614673"}, "pid": "11550", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:18.801866 2024-09-11 09:12:18.80187 51fa75f9-2154-429e-94db-fc32ab43abf4 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/963462539"}, "pid": "11551", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:18.880379 2024-09-11 09:12:18.880383 1e3e9dff-6ac8-475f-8653-d5b63294958c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/963082132"}, "pid": "11552", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:18.950929 2024-09-11 09:12:18.950932 84d8841b-08bc-4ebd-baf3-619286a72954 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/962048879"}, "pid": "11553", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:19.025114 2024-09-11 09:12:19.025119 40ad4887-b2e2-4fff-a064-6255b10e167a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/961594519"}, "pid": "11554", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:19.086856 2024-09-11 09:12:19.086864 c1c6539b-65a5-46f7-b530-f56301adbb6f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/961594497"}, "pid": "11555", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:19.156857 2024-09-11 09:12:19.156862 f9e74198-3f8e-4a7c-8439-eec90e2396c7 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/961594454"}, "pid": "11556", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:19.219483 2024-09-11 09:12:19.219487 5d56e7b9-05ff-4e7a-a054-36e7ccce8e5e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/961395923"}, "pid": "11557", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:19.285319 2024-09-11 09:12:19.285327 37abd8b9-7997-4d27-848a-b8b08924b1ed {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/960863664"}, "pid": "11558", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:19.364209 2024-09-11 09:12:19.364217 26d82b90-d696-42eb-ae18-da49764e58c4 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/960833919"}, "pid": "11559", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:19.434244 2024-09-11 09:12:19.434252 27626816-b30d-476a-b6cf-584dd17c734f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/960396268"}, "pid": "11560", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:19.50366 2024-09-11 09:12:19.503664 66726421-0f6a-41be-9683-8ac50518e541 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/960085726"}, "pid": "11561", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:19.573475 2024-09-11 09:12:19.573485 89b71780-5080-4aed-a289-ebaeadab92ee {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/959934464"}, "pid": "11562", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:19.648994 2024-09-11 09:12:19.649003 8f289f01-dc8f-4e90-9b5e-fce3cf2d3288 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/959918612"}, "pid": "11563", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:19.703856 2024-09-11 09:12:19.703859 b2da201f-1299-4379-8546-ceea5275bef5 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/959788719"}, "pid": "11564", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:19.7615 2024-09-11 09:12:19.761504 0001d869-02c3-4f8e-a965-d01fe19d011b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/959747575"}, "pid": "11565", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:19.827227 2024-09-11 09:12:19.82723 7dda59a7-12c6-4b98-acfd-88dc684f2609 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/959369872"}, "pid": "11566", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:19.904695 2024-09-11 09:12:19.9047 238067dc-893b-4304-a148-066b664ade72 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/958777055"}, "pid": "11567", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:19.974902 2024-09-11 09:12:19.974911 1b3637a5-6f59-4583-805f-b8efd89133a2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/958014639"}, "pid": "11568", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:20.058653 2024-09-11 09:12:20.058658 7832692f-ed02-4bc3-8d04-d4fa69dba9c1 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/957753551"}, "pid": "11569", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:20.126873 2024-09-11 09:12:20.126881 cba511ac-c30e-4587-ac45-e6740692b20f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/957586973"}, "pid": "11570", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:20.190411 2024-09-11 09:12:20.190415 ec388070-bc9f-460c-aa63-13dd5aae558c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/957565445"}, "pid": "11571", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:20.243801 2024-09-11 09:12:20.243804 5c5c92a1-1fad-414b-8485-9480884daf6d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/957211430"}, "pid": "11572", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:20.317906 2024-09-11 09:12:20.31791 ddfcd3b0-ccd5-4748-804b-42bad8d6b7b4 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/956443877"}, "pid": "11573", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:20.391215 2024-09-11 09:12:20.391224 322edc05-3c70-4b51-888a-3a497ad2cbb1 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/956443842"}, "pid": "11574", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:20.482286 2024-09-11 09:12:20.482291 65e3418d-db8a-49c3-a0fc-a391a3bef019 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/956443613"}, "pid": "11575", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:20.560652 2024-09-11 09:12:20.560661 dba307f0-e46e-477b-a327-712d0984da75 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/955960134"}, "pid": "11576", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:20.655848 2024-09-11 09:12:20.655852 3fc9d070-b6da-42a1-b38e-78c167e8fcf3 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/955820049"}, "pid": "11577", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:20.707859 2024-09-11 09:12:20.707863 e4f6392f-4fad-43fa-b84e-745485e5856d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/955573246"}, "pid": "11578", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:20.761346 2024-09-11 09:12:20.761348 50ff65de-36b0-44e6-84bc-808c04a40955 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/955498058"}, "pid": "11579", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:20.835898 2024-09-11 09:12:20.835901 03ccf299-a2fc-43dd-abc4-41be0309ec8e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/955495768"}, "pid": "11580", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:20.915237 2024-09-11 09:12:20.91524 267fa135-82e2-4d6d-8059-a5bf25e094b3 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/955090547"}, "pid": "11581", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:20.997692 2024-09-11 09:12:20.997695 1ab1937a-c55a-45c8-9780-25724e54a8b1 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/954472683"}, "pid": "11582", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:21.06681 2024-09-11 09:12:21.066814 fcfaefde-d0e1-4b71-9194-cee3c23f4bab {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/954071832"}, "pid": "11583", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:23.554034 2024-09-11 09:12:21.142463 278df14f-acf3-4fb6-96da-915aff30d29a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/954064593"}, "pid": "10745", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/262767619"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 +2024-09-11 09:12:21.210867 2024-09-11 09:12:21.210871 6c4166a8-f115-43b0-af80-b0d4bb8d3bd6 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/953168697"}, "pid": "11584", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:21.297461 2024-09-11 09:12:21.297466 f335c45b-0f39-4fd6-9436-031fdc93304a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/953105024"}, "pid": "11585", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:21.379102 2024-09-11 09:12:21.379111 035fc096-6b5d-4ed1-8dab-2a27f97d7a7c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/952110512"}, "pid": "11586", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:21.455297 2024-09-11 09:12:21.455302 0b4b67af-b946-422c-98ef-5b918b0ee352 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/951677268"}, "pid": "11587", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:21.528545 2024-09-11 09:12:21.528555 4d40c6b3-920d-47b4-9b38-29be0f8a0230 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/951510282"}, "pid": "11588", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:21.601844 2024-09-11 09:12:21.601846 436e0c7e-2611-4ef2-84ef-785747504736 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/951510274"}, "pid": "11589", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:21.671291 2024-09-11 09:12:21.671296 8357997b-fe66-4480-961d-2d45d98e4389 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/951510258"}, "pid": "11590", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:21.720822 2024-09-11 09:12:21.720824 eb5e6f01-03cb-46e7-9462-f25474414f4f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/95135793X"}, "pid": "11591", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:21.788224 2024-09-11 09:12:21.788228 7a7a9553-839e-4830-82c0-e8952a288270 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/950649155"}, "pid": "11592", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:21.856064 2024-09-11 09:12:21.856068 420a0663-2205-4a15-a721-0d5e1f6c67d1 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/950556149"}, "pid": "11593", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:21.924714 2024-09-11 09:12:21.924719 4de926e7-fe5e-4e98-a41a-b786e1ae0f42 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/950356190"}, "pid": "11594", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:21.993453 2024-09-11 09:12:21.993458 f1ded10b-c93e-4991-9821-6bdbdc68e901 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/950339490"}, "pid": "11595", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:22.050188 2024-09-11 09:12:22.050191 d5f60ad6-c3c4-44fe-bd81-61cc71a174a3 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/950339407"}, "pid": "11596", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:22.115867 2024-09-11 09:12:22.115871 77da28f1-e460-437d-a051-ac9869fdaa2b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/950338338"}, "pid": "11597", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:22.182659 2024-09-11 09:12:22.182664 8136c071-f298-45e5-901f-bfc909a3036c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/95033829X"}, "pid": "11598", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:22.238475 2024-09-11 09:12:22.238478 5fe7c8f1-2017-44bb-afb9-03ab11fc1f1c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/950338230"}, "pid": "11599", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:22.315011 2024-09-11 09:12:22.315021 78f99e4f-0768-447d-9ecc-108c5ed5851e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/950338184"}, "pid": "11600", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:22.38883 2024-09-11 09:12:22.38884 60c06567-55b0-4084-a8aa-7a4babc1d067 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/950332429"}, "pid": "11601", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:22.463591 2024-09-11 09:12:22.463595 69badde6-31fc-4f0e-8ca4-ed26d4da9e05 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/950332011"}, "pid": "11602", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:22.542078 2024-09-11 09:12:22.542084 901a204b-adbc-4afa-9f03-fae84f484902 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/950331821"}, "pid": "11603", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:22.623878 2024-09-11 09:12:22.623888 4c49328a-5913-4c05-ac2b-fc2f93f44593 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/950315354"}, "pid": "11604", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:22.694205 2024-09-11 09:12:22.694209 d17c3306-f9d4-45ca-a6a8-b3463bda8fa8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/95020109X"}, "pid": "11605", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:22.7458 2024-09-11 09:12:22.745805 b4173d39-a488-479a-a057-1af0a67fad9a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/950199850"}, "pid": "11606", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:22.817669 2024-09-11 09:12:22.817678 f72882d2-82d1-466f-81f4-87b78c301358 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/950199214"}, "pid": "11607", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:22.884969 2024-09-11 09:12:22.884974 38be45a0-bf75-465c-a8eb-2dc7c9974257 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/950168637"}, "pid": "11608", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:22.958107 2024-09-11 09:12:22.958119 1b207196-86f7-4952-ad58-bb0b920720ea {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/949740861"}, "pid": "11609", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:23.046077 2024-09-11 09:12:23.046087 fd4183fe-bbd6-4880-bd82-d97c1c4621ae {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/949647314"}, "pid": "11610", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:23.116476 2024-09-11 09:12:23.116486 80517025-37e9-4e67-b316-55ef3bcc0b77 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/949641804"}, "pid": "11611", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:23.232962 2024-09-11 09:12:23.232965 9c7b6590-36bb-4df4-843a-3337fcb24cd4 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/94963218X"}, "pid": "11612", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:23.346495 2024-09-11 09:12:23.3465 2b59acb8-9132-4dba-a5d5-54d9e01d3276 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/949632163"}, "pid": "11613", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:23.395088 2024-09-11 09:12:23.395091 a49c1db5-fe32-485f-b065-3097987dae5b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/949632147"}, "pid": "11614", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:23.441503 2024-09-11 09:12:23.441508 3337d41e-6ae1-48e4-a190-4700bb4aa50a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/949632120"}, "pid": "11615", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:23.489201 2024-09-11 09:12:23.489205 c6b09d47-56ce-48e8-9df6-cf728efd091b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/949632104"}, "pid": "11616", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:23.536661 2024-09-11 09:12:23.536664 a1b4f1be-7482-4f5d-97d2-410e5552098c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/949607266"}, "pid": "11617", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:23.584143 2024-09-11 09:12:23.584146 6fc64584-7ad2-4802-9220-140f7ee44027 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/949602310"}, "pid": "11618", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:23.635601 2024-09-11 09:12:23.635604 b270aa87-004b-4547-b62f-1508cc10ba39 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/948791659"}, "pid": "11619", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:23.689282 2024-09-11 09:12:23.689286 d56cdfe4-880a-4ec4-988e-f5dc6e324750 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/948417226"}, "pid": "11620", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:23.736497 2024-09-11 09:12:23.7365 dbdf3021-3569-4358-a11b-0de0b0eb14f4 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/948322292"}, "pid": "11621", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:23.797943 2024-09-11 09:12:23.797948 6d6e1da7-6f1a-4f40-b4e0-cea321df40e3 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/948321156"}, "pid": "11622", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:23.86415 2024-09-11 09:12:23.86416 08894df0-ad0f-4091-9304-c4db476174d4 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/947976248"}, "pid": "11623", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:23.941119 2024-09-11 09:12:23.941124 edeebb8e-d4bf-4649-a4c6-3acca062721e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/947862730"}, "pid": "11624", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:24.011848 2024-09-11 09:12:24.011859 00c729ba-b0c3-42b8-8685-79e89a40e2c9 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/947589341"}, "pid": "11625", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:24.083808 2024-09-11 09:12:24.083812 1888b8b3-802c-420b-9e1a-da4c74d53057 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/947454802"}, "pid": "11626", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:24.147784 2024-09-11 09:12:24.147808 a255ed7e-48d7-4bb9-8ed5-fb6e2aa1a5e9 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/947454659"}, "pid": "11627", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:24.205447 2024-09-11 09:12:24.20545 160bf1f7-cb84-4509-8184-f3ff4bf2b62b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/947421238"}, "pid": "11628", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:24.25459 2024-09-11 09:12:24.254594 b46c7ad5-49a6-4659-bd78-168e6fc7e423 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/947026088"}, "pid": "11629", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:24.319047 2024-09-11 09:12:24.319051 6447451b-80c0-41cf-ac73-b12cb684edde {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/946723729"}, "pid": "11630", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:24.389121 2024-09-11 09:12:24.389126 ccb6c3ba-ae69-49e4-84e8-5ef41416cf9c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/946606161"}, "pid": "11631", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:24.466598 2024-09-11 09:12:24.466603 cd2befd5-3813-46e3-b8ce-e0dc134ebc33 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/945980132"}, "pid": "11632", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:24.533958 2024-09-11 09:12:24.533962 d22f8f7d-aee3-4ffc-b6c3-14c71de18391 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/945917201"}, "pid": "11633", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:24.596955 2024-09-11 09:12:24.596964 5d8fcbee-2eea-4ae7-ac62-69b5e180efb4 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/945871678"}, "pid": "11634", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:24.660046 2024-09-11 09:12:24.660051 860ace7b-538f-4dbd-b283-9b37fc6b18a9 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/945385382"}, "pid": "11635", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:24.716375 2024-09-11 09:12:24.716377 0eacc78f-0dc4-4bf2-9685-11f48a71a7be {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/944766021"}, "pid": "11636", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:24.774913 2024-09-11 09:12:24.774918 08137610-1166-4374-80c4-59c6290fd1c9 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/944289290"}, "pid": "11637", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:24.834927 2024-09-11 09:12:24.83493 1d9716e2-9e27-476a-b8f3-65a07a4be08b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/94400718X"}, "pid": "11638", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:24.891681 2024-09-11 09:12:24.891686 6476005d-11e2-4f24-a219-0e632b9c7fbc {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/943882346"}, "pid": "11639", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:24.958038 2024-09-11 09:12:24.958047 7b141c81-cbc8-4bef-a7bb-b8c59b4b742d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/941847934"}, "pid": "11640", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:25.029618 2024-09-11 09:12:25.029627 975e58fc-ff8d-4b96-9c61-55483c1ada07 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/941808769"}, "pid": "11641", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:25.094467 2024-09-11 09:12:25.094474 a106bf64-810d-4c82-a586-600f93905410 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/941757471"}, "pid": "11642", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:25.15758 2024-09-11 09:12:25.157588 a180028f-8a92-4da7-b76d-effd44680aa2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/941385175"}, "pid": "11643", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:25.215045 2024-09-11 09:12:25.215049 55f41dae-fe5c-414b-b2e7-fa919e1ceca7 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/940396068"}, "pid": "11644", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:25.295957 2024-09-11 09:12:25.295966 08f0efb7-d092-4363-80a7-596faafd8ce1 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/940396009"}, "pid": "11645", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:25.365547 2024-09-11 09:12:25.365556 988b75a9-21bb-48d7-9cdb-dc15503b5587 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199305404"}, "pid": "11646", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:25.434154 2024-09-11 09:12:25.434158 f4d5921d-064c-482d-a4dc-47f87119a157 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199252149"}, "pid": "11647", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:25.505817 2024-09-11 09:12:25.505826 d3e79eab-8e1f-4164-b43c-ce747eca6387 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199248974"}, "pid": "11648", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:25.578078 2024-09-11 09:12:25.578084 6443cee5-fa06-4d5f-9a50-484d7c9459e3 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199246815"}, "pid": "11649", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:25.64748 2024-09-11 09:12:25.64749 05dd4758-68ea-4fa7-8727-0d04abaf3635 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199246793"}, "pid": "11650", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:25.718101 2024-09-11 09:12:25.718104 6855091c-a21f-4593-b53c-e0da20905883 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199246211"}, "pid": "11651", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:25.796512 2024-09-11 09:12:25.796522 06b99672-55f0-4187-822e-9f63992a8f1a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199244766"}, "pid": "11652", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:25.871662 2024-09-11 09:12:25.871671 4dbea458-1d7e-4871-90f4-1b10c919895e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/19924474X"}, "pid": "11653", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:25.94162 2024-09-11 09:12:25.941626 f2704721-726c-4b04-8093-bbfc99e6759d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199244731"}, "pid": "11654", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:26.008735 2024-09-11 09:12:26.00874 216f1439-d255-4f4b-ac9b-9fa1ac44c390 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199244375"}, "pid": "11655", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:26.070388 2024-09-11 09:12:26.07039 b92bd40e-1bff-4189-9701-39242903b8e5 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199241562"}, "pid": "11656", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:26.155687 2024-09-11 09:12:26.155695 2b94f79d-ec28-4507-88ab-367a41748891 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199240590"}, "pid": "11657", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:26.212803 2024-09-11 09:12:26.212808 af224afd-f9d9-48d9-ac0a-32fa7cc40e1f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199240515"}, "pid": "11658", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:26.266911 2024-09-11 09:12:26.266915 9be11aa3-f5d9-4de1-9aad-a66a36e3572b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199239436"}, "pid": "11659", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:26.335074 2024-09-11 09:12:26.335079 2090f93a-38ee-4db7-bfeb-c4fb91ef0130 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/19923860X"}, "pid": "11660", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:26.398321 2024-09-11 09:12:26.398323 2664d19f-892d-43df-a644-57c95fbc64fb {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199231516"}, "pid": "11661", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:26.467186 2024-09-11 09:12:26.46719 0a134830-3707-4424-94e6-a6a87ff5a725 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199230811"}, "pid": "11662", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:26.542428 2024-09-11 09:12:26.542433 7b0660a3-b86c-4012-b0b4-24a832049766 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199230285"}, "pid": "11663", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:26.624791 2024-09-11 09:12:26.624795 ea8356e4-3eba-4e07-b0c6-0d0762c7090b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199224196"}, "pid": "11664", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:26.694455 2024-09-11 09:12:26.694458 577445f8-fba6-4d4b-9878-b113d57b0f1e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199218315"}, "pid": "11665", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:26.753738 2024-09-11 09:12:26.753741 fa997537-5b88-4ada-90b5-57b114ba9e7e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199215901"}, "pid": "11666", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:26.826385 2024-09-11 09:12:26.826396 637e0739-1f7f-4233-aa01-bba8ea18f22e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199214700"}, "pid": "11667", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:26.902685 2024-09-11 09:12:26.902693 fdf2e8a9-9ff3-4789-898f-fcb843094e37 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/19921462X"}, "pid": "11668", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:26.998045 2024-09-11 09:12:26.998057 2daa23fd-081d-4783-b05c-7ef9a652abc2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199212007"}, "pid": "11669", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:27.076464 2024-09-11 09:12:27.076468 3aafc089-afe6-4d0a-b198-99904917cf18 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199211817"}, "pid": "11670", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:27.138723 2024-09-11 09:12:27.138731 9b48f74b-2b28-4a67-b0e4-491fea8d17bd {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199210713"}, "pid": "11671", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:27.20321 2024-09-11 09:12:27.203213 4bc9bbc4-95e8-4f87-b471-69f57542213c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199209464"}, "pid": "11672", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:27.254629 2024-09-11 09:12:27.254634 858c259f-435d-47c9-a3c2-126455905873 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199200955"}, "pid": "11673", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:27.317341 2024-09-11 09:12:27.317344 ce84ee0f-a0ab-40c0-aa3a-1d5ef42f4776 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199198578"}, "pid": "11674", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:27.384128 2024-09-11 09:12:27.384131 dd8b3207-66f5-478a-b3cc-1a2850115f26 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199195978"}, "pid": "11675", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:27.456224 2024-09-11 09:12:27.456228 947f79b8-6e0f-4739-b213-d0591a9a8e63 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/19919596X"}, "pid": "11676", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:27.52916 2024-09-11 09:12:27.529163 2e4f1761-024c-4c54-8ba9-377f84724235 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199189870"}, "pid": "11677", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:27.6065 2024-09-11 09:12:27.60651 c6fcaf0e-97f9-4202-b27d-076c2ed2d002 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199189862"}, "pid": "11678", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:27.687903 2024-09-11 09:12:27.687908 2ddd2ed2-608b-4423-a175-078c09545fcd {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199189854"}, "pid": "11679", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:27.739831 2024-09-11 09:12:27.739835 9cc1c208-99bb-4919-9caf-89f92c72bcab {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199189846"}, "pid": "11680", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:27.79761 2024-09-11 09:12:27.797613 e1955e18-9566-4d12-ba63-ccd5bfb85fa4 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199187282"}, "pid": "11681", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:27.862622 2024-09-11 09:12:27.862627 181d8076-23af-4c7c-a344-cd6f85c7e0e8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199181993"}, "pid": "11682", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:27.926258 2024-09-11 09:12:27.926263 e67761b7-d5ab-4375-8c46-cbcc5ad7e729 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199173672"}, "pid": "11683", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:27.992438 2024-09-11 09:12:27.992443 03e78113-5973-4b65-a720-11186f63a55c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/19917332X"}, "pid": "11684", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:28.055036 2024-09-11 09:12:28.055039 1c05437b-561b-429d-9479-4712b8dca5b5 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199168512"}, "pid": "11685", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:28.124069 2024-09-11 09:12:28.124078 b4347a60-3315-476b-9c4b-494e5c4c283f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199164347"}, "pid": "11686", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:28.19538 2024-09-11 09:12:28.195384 f915f171-d517-4cce-8cf7-6024184622a1 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/19916035X"}, "pid": "11687", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:28.274558 2024-09-11 09:12:28.274564 536dea75-1103-4685-857e-bfee0038648c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199159998"}, "pid": "11688", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:28.352526 2024-09-11 09:12:28.35253 3cdca711-1ad0-48c8-b91e-f91ee6bf4a58 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199159882"}, "pid": "11689", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:28.419541 2024-09-11 09:12:28.419546 ac21a3b6-26f2-45ff-945b-3ef3b7ddcb25 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199159777"}, "pid": "11690", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:28.475066 2024-09-11 09:12:28.475071 91d6bb20-80b2-4eb4-a235-416ea29e4a8c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199157642"}, "pid": "11691", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:28.53774 2024-09-11 09:12:28.537744 26385370-0982-4e3e-9c5a-8dbd0e21e130 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199147760"}, "pid": "11692", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:28.599965 2024-09-11 09:12:28.599968 fd302f14-0f40-4ea8-89c8-4d373146de2a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199138834"}, "pid": "11693", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:28.665167 2024-09-11 09:12:28.665171 ef32e3e1-f097-4be7-bc61-f83230896de6 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199136637"}, "pid": "11694", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:28.72101 2024-09-11 09:12:28.721013 8df45a8d-70a2-4f3a-833b-dc50e39d897d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199118167"}, "pid": "11695", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:28.769079 2024-09-11 09:12:28.769082 8afcc7a0-f328-4c67-81ab-257f5bc0e927 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199089973"}, "pid": "11696", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:28.832634 2024-09-11 09:12:28.832636 e864ac72-6e17-4851-a048-7c7c223cb9e8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199077177"}, "pid": "11697", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:28.908602 2024-09-11 09:12:28.908607 02bc52d8-5da0-4fa7-b078-03fb7ca3e4c1 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199023786"}, "pid": "11698", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:28.969979 2024-09-11 09:12:28.969982 25fce0a0-178e-4c17-a448-9458d9dd0410 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199023360"}, "pid": "11699", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:29.04433 2024-09-11 09:12:29.044335 5bb0900c-00e0-478e-ada0-b6f36f2aed26 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199022534"}, "pid": "11700", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:29.112771 2024-09-11 09:12:29.112775 cc26c1cb-4859-410b-a74c-2677ccc8f0fa {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199013594"}, "pid": "11701", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:29.186216 2024-09-11 09:12:29.186221 f669693e-651c-4cd8-8d12-c92c3ca4f5d1 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199013276"}, "pid": "11702", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:29.25555 2024-09-11 09:12:29.255554 17f896c6-5f81-47b6-9565-883032b53171 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199011249"}, "pid": "11703", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:29.319399 2024-09-11 09:12:29.319402 f81059bf-5b12-4d23-90de-ea5fc2d3b3e6 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199003645"}, "pid": "11704", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:29.391489 2024-09-11 09:12:29.391494 ad4e7508-4346-4375-9f53-152261c8c019 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199002894"}, "pid": "11705", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:29.457823 2024-09-11 09:12:29.457827 38609de7-6f5f-45b8-b60f-40ac0a6b271c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199001111"}, "pid": "11706", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:29.549935 2024-09-11 09:12:29.549939 58a63b1e-a63d-47f3-bea9-1aa864e09b48 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199000328"}, "pid": "11707", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:29.635281 2024-09-11 09:12:29.635285 d3a3ab7a-9de6-420d-b01c-15d24088e24f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/199000239"}, "pid": "11708", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:29.764222 2024-09-11 09:12:29.764227 a3937fa7-0fb8-44b8-a5e1-4b3b79a7189d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/050133039"}, "pid": "11710", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:29.832641 2024-09-11 09:12:29.83265 c656c67d-207a-4c7b-b0db-3a5548714b1a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/050039350"}, "pid": "11711", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:29.903023 2024-09-11 09:12:29.903027 7be002fd-05d8-4e21-a5f7-2456b1839e14 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/043244793"}, "pid": "11712", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:29.976945 2024-09-11 09:12:29.97695 eca2a12e-df11-4ea9-945c-69c4579612f6 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/043225608"}, "pid": "11713", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:30.046652 2024-09-11 09:12:30.046658 61dde51e-add8-43f8-abac-4f1e3fe72c34 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/043151019"}, "pid": "11714", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:30.125634 2024-09-11 09:12:30.125639 2cde672f-86b1-4abe-85d6-eb92704011cd {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/043138764"}, "pid": "11715", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:30.196035 2024-09-11 09:12:30.196039 b7a85e29-0ba7-48a1-92fb-1342c67f22c6 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/042976200"}, "pid": "11716", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:30.275236 2024-09-11 09:12:30.27524 56a2223a-46d3-4fcd-8d3e-977558f0c097 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/042939550"}, "pid": "11717", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:30.348404 2024-09-11 09:12:30.348408 bf24bdf3-8e3b-415f-9afc-52c2a9568e09 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/042939526"}, "pid": "11718", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:30.424693 2024-09-11 09:12:30.424698 2f47d8ac-9d19-4901-b097-7211d7b90381 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/042788714"}, "pid": "11719", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:30.5034 2024-09-11 09:12:30.503404 b988ba33-04cb-408d-8546-13f588b1ee53 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/042778352"}, "pid": "11720", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:30.572389 2024-09-11 09:12:30.572393 2db73058-fcec-442f-a4c0-42838d9ef63b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/042627494"}, "pid": "11721", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:30.648444 2024-09-11 09:12:30.648448 2ac7ae6a-e414-4b16-a9e9-31e4742a85b2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/042602564"}, "pid": "11722", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:30.713477 2024-09-11 09:12:30.713482 31a54150-71d2-40bb-aa18-915d8a8b0ce9 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/042567874"}, "pid": "11723", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:30.788124 2024-09-11 09:12:30.788128 cb01995d-4b3a-4b4d-9440-5e87107b1c98 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/042553628"}, "pid": "11724", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:30.855932 2024-09-11 09:12:30.855938 89e75dc2-1506-4b4f-8726-c848b167a577 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/042492777"}, "pid": "11725", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:30.942415 2024-09-11 09:12:30.942424 16917b6e-57c0-4f53-9e24-398c37b2a6ed {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/042490448"}, "pid": "11726", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:31.017452 2024-09-11 09:12:31.017454 309b43a7-d9e5-47d2-a76a-f4b2f9f379b0 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/042477247"}, "pid": "11727", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:31.095925 2024-09-11 09:12:31.09593 fb7a9853-b1fa-4176-914f-ec84a27aa065 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/042400228"}, "pid": "11728", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:31.17599 2024-09-11 09:12:31.175995 796043ce-9282-4ee3-b632-a37b062c746d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/042387175"}, "pid": "11729", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:31.233912 2024-09-11 09:12:31.233916 a2374357-3ef8-4eca-91ef-051923a2b3cd {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/042299004"}, "pid": "11730", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:31.299589 2024-09-11 09:12:31.299593 e8d5131a-b4ce-43aa-a8ed-e9b385689841 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/042260213"}, "pid": "11731", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:31.361914 2024-09-11 09:12:31.361918 9d7d07ba-b658-4089-b3b8-eb986a236044 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/042244943"}, "pid": "11732", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:31.436871 2024-09-11 09:12:31.436875 19910900-a55d-40e5-b046-7b97f5829151 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/042236037"}, "pid": "11733", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:31.503893 2024-09-11 09:12:31.503903 7084d28b-3dd7-49cd-a886-56c3f925f879 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/042209927"}, "pid": "11734", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:31.581811 2024-09-11 09:12:31.581815 f4b9dfe6-c390-44b8-a92f-f8d26de39192 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/042005450"}, "pid": "11735", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:31.651175 2024-09-11 09:12:31.651179 3b96db14-5a11-4bc6-b474-b6c5289a7957 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/041401174"}, "pid": "11736", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:31.712176 2024-09-11 09:12:31.712181 d46cef50-a1f4-4aa2-8591-362dd461cde5 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/041370538"}, "pid": "11737", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:31.762327 2024-09-11 09:12:31.76233 fc45e594-df12-492e-a3c6-8b1bf1e248a3 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/041194152"}, "pid": "11738", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:31.830409 2024-09-11 09:12:31.830413 4b0024cc-e2df-45d3-a6cc-a1149638fdc8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/041192443"}, "pid": "11739", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:31.904146 2024-09-11 09:12:31.904155 2ba89dbe-1594-4fd3-8825-92676dc79ff8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/041167163"}, "pid": "11740", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:31.974719 2024-09-11 09:12:31.974723 3bc3881c-4266-41bc-b2a1-ababeec15147 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/041154282"}, "pid": "11741", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:32.047556 2024-09-11 09:12:32.047566 e0a6f83f-2b55-4498-bc11-5312641d813e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/041112504"}, "pid": "11742", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:32.110107 2024-09-11 09:12:32.110116 edc4c5bc-a93c-47e9-b0c6-c3189c0cd6bb {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/041087828"}, "pid": "11743", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:32.183225 2024-09-11 09:12:32.183234 e7095cad-0320-4fc2-94d5-147da7b2c6af {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/041084675"}, "pid": "11744", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:32.25737 2024-09-11 09:12:32.257385 7a8adcdc-2e0a-43a2-ac0f-7c6f0e173de4 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/041063368"}, "pid": "11745", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:32.323865 2024-09-11 09:12:32.323875 6983052e-4b1e-4efd-bb06-c73e17101525 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/04106125X"}, "pid": "11746", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:32.397012 2024-09-11 09:12:32.397021 60bd72c3-a88a-43f2-9889-fb4a4f8b8175 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/041058445"}, "pid": "11747", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:32.468047 2024-09-11 09:12:32.468051 73ab3959-13a6-4476-9d16-746af517a112 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/041011848"}, "pid": "11748", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:32.54771 2024-09-11 09:12:32.547713 db2e313a-13c6-4050-ae32-02d3f10c11bc {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040994716"}, "pid": "11749", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:32.624122 2024-09-11 09:12:32.624126 8d6c64d1-a69d-4242-9c91-ca4ac65bb42f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040967689"}, "pid": "11750", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:32.700715 2024-09-11 09:12:32.70072 372ee807-3cd5-4fe7-8864-d48812995a1e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040957977"}, "pid": "11751", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:32.758281 2024-09-11 09:12:32.758284 d367f8c3-0954-4f43-b5de-6bf27d2ffb18 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040956075"}, "pid": "11752", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:32.821007 2024-09-11 09:12:32.821011 9a22661b-658f-4352-b093-cf8dfe713bf8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040952789"}, "pid": "11753", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:32.898711 2024-09-11 09:12:32.89872 2d2f2884-dca5-42c7-8f86-0af96e61d9eb {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040912833"}, "pid": "11754", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:32.96733 2024-09-11 09:12:32.967339 55b66111-4367-4806-8aff-cf5570d6121c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040873862"}, "pid": "11755", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:33.040568 2024-09-11 09:12:33.040572 29d21df2-9bb7-48ee-93e5-06d8e2fc47c3 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040865622"}, "pid": "11756", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:33.108633 2024-09-11 09:12:33.108638 ee9455fa-52b9-40c0-bded-20896f42a29a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040805905"}, "pid": "11757", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:33.179335 2024-09-11 09:12:33.179345 3da2f4fa-55d3-46d0-8eda-a0f3e2aa9808 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040802558"}, "pid": "11758", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:11:21.776624 2024-09-11 09:12:33.253321 a8ab571b-ace1-42b1-9dd7-04b4c7ee2e73 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040794903"}, "pid": "10718", "type": "bf:Place", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/250748533"}, "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 2 +2024-09-11 09:12:33.345823 2024-09-11 09:12:33.345828 79e9a0d7-d457-4340-9812-97b7c67cac9a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040768996"}, "pid": "11759", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:33.404452 2024-09-11 09:12:33.404461 d4f37563-78c3-4a2c-afe7-f96b8b7273cb {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040754766"}, "pid": "11760", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:33.48012 2024-09-11 09:12:33.480133 52f7a4b4-6e41-48e7-af15-c188ce3814b2 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040738582"}, "pid": "11761", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:33.548745 2024-09-11 09:12:33.54875 e705eae2-1ab5-4657-902d-3482826cf742 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040693309"}, "pid": "11762", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:33.617369 2024-09-11 09:12:33.617377 b2d9f010-4036-48a7-a2a4-e9de38a30ac6 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040680223"}, "pid": "11763", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:33.697445 2024-09-11 09:12:33.69745 3c2f76f1-3ab5-4ce7-9c43-d766ce8db20b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040657752"}, "pid": "11764", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:33.750855 2024-09-11 09:12:33.750857 822fd9b9-d1a7-4ae1-b1ca-d3e697eecd1b {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/04062501X"}, "pid": "11765", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:33.811644 2024-09-11 09:12:33.811648 36b172b2-c41b-4293-ac64-d1c9f324e9e0 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040604853"}, "pid": "11766", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:33.889744 2024-09-11 09:12:33.889753 6341bbcd-df32-482e-801e-adadcdd3c39c {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/04060151X"}, "pid": "11767", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:33.965556 2024-09-11 09:12:33.96556 e53b5c04-5b84-41bd-bfd4-74eefe8b18bb {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040594084"}, "pid": "11768", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:34.0723 2024-09-11 09:12:34.072303 acce4aee-ed2b-4a92-abbf-65aefda5fa2e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/04057749X"}, "pid": "11769", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:34.128002 2024-09-11 09:12:34.128012 6d8be7dd-544d-4ffc-a08d-6d705f2de317 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040516687"}, "pid": "11770", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:34.198444 2024-09-11 09:12:34.19845 1b1fe950-ae56-4f5c-bb34-4db0c8ad6dd0 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040425134"}, "pid": "11771", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:34.253855 2024-09-11 09:12:34.253858 26bcdd1c-b3f9-40c8-b142-dfa3e3e59849 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/04041146X"}, "pid": "11772", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:34.322149 2024-09-11 09:12:34.322152 fd64f7b9-ec52-4550-8f63-e62aea00b49d {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040376044"}, "pid": "11773", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:34.392785 2024-09-11 09:12:34.392794 7dad377a-2d46-435e-84e5-55835e04afa5 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/04037372X"}, "pid": "11774", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:34.461358 2024-09-11 09:12:34.461361 c12fa3ac-ccae-46dc-8a80-d54c13722aea {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040368114"}, "pid": "11775", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:34.531917 2024-09-11 09:12:34.531927 62c57da8-d233-4ed8-91a2-74e716e90e58 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040357422"}, "pid": "11776", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:34.603741 2024-09-11 09:12:34.60375 3fd12587-ddc9-4978-9d0d-25ee6f0e2504 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040346919"}, "pid": "11777", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:34.674297 2024-09-11 09:12:34.674302 eb9c1b62-910e-4557-9a35-5c860c6330ad {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040304817"}, "pid": "11778", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:34.734147 2024-09-11 09:12:34.734151 6625474f-95f9-4cb5-b536-127b6bc244c8 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040296377"}, "pid": "11779", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:34.816544 2024-09-11 09:12:34.816547 669b1e70-54d6-4b7d-9653-0b4f758b5ece {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040288099"}, "pid": "11780", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:34.888811 2024-09-11 09:12:34.888821 c8d7abad-694c-4827-8c02-86cd58317d2e {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/04024010X"}, "pid": "11781", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:34.966128 2024-09-11 09:12:34.966132 088c69e7-86b2-4306-ba9b-22a71641bc7a {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040183408"}, "pid": "11782", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:35.034171 2024-09-11 09:12:35.034175 b2e2a88d-36a7-40d9-bcfb-bf4bdc464a60 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040093417"}, "pid": "11783", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:35.0974 2024-09-11 09:12:35.097405 35036cfc-fc13-47a1-9df1-3c056169161f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/04009300X"}, "pid": "11784", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:35.165836 2024-09-11 09:12:35.165841 4476a9c3-1111-40ad-9919-bdca8a0e70f7 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040055744"}, "pid": "11785", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:35.226881 2024-09-11 09:12:35.226885 c02a5d6b-4248-400a-a693-6dc8f1db5c72 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040024024"}, "pid": "11786", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:35.284289 2024-09-11 09:12:35.284292 8e432c4c-4e1e-4763-bcef-a73ccbd9a0dd {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/030141605"}, "pid": "11787", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:35.362706 2024-09-11 09:12:35.362709 4706f7e6-0114-4891-9259-556f93d47f9f {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/030125898"}, "pid": "11788", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:35.435805 2024-09-11 09:12:35.435814 bf4be85b-18f9-472d-a7cf-3385dd88ab44 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/030089050"}, "pid": "11789", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:35.505715 2024-09-11 09:12:35.505726 3eaaf44f-92f1-4247-b955-c5b70dbc1542 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/007749023"}, "pid": "11790", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:35.57721 2024-09-11 09:12:35.577214 5e06a103-c05a-49d6-852e-da0bb04357bd {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/004280768"}, "pid": "11791", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:35.646985 2024-09-11 09:12:35.646995 e899b80c-0b29-431e-b3c9-732a17d3aaa9 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/004205731"}, "pid": "11792", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:35.705839 2024-09-11 09:12:35.705844 1e29b33f-0d95-4ed4-a1b9-01844b703006 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/002631628"}, "pid": "11793", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:35.755368 2024-09-11 09:12:35.755371 f9be637e-5d87-4715-a623-5807bc58ac18 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/001101536"}, "pid": "11794", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 +2024-09-11 09:12:35.822828 2024-09-11 09:12:35.822831 afa159fa-bba0-4740-a373-1bf1223f1742 {"gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/000347078"}, "pid": "11795", "type": "bf:Place", "$schema": "https://mef.rero.ch/schemas/places_mef/mef-place-v0.0.1.json"} 1 diff --git a/data/plmef_pidstore.csv b/data/plmef_pidstore.csv index cc374697..7c4537bb 100644 --- a/data/plmef_pidstore.csv +++ b/data/plmef_pidstore.csv @@ -1,985 +1,1579 @@ -2024-07-17 09:28:45.077628 2024-07-17 09:28:45.077633 plmef 7816 R rec 87f5e458-e883-4e41-b4c0-03d880741842 -2024-07-17 09:28:45.136614 2024-07-17 09:28:45.136619 plmef 7817 R rec cb41fa75-0a2d-46de-a7bd-de8102a53bc9 -2024-07-17 09:28:45.176794 2024-07-17 09:28:45.176798 plmef 7818 R rec 11c855e7-2148-4207-98a8-99a61641ce75 -2024-07-17 09:28:45.219512 2024-07-17 09:28:45.219517 plmef 7819 R rec 90a8e9ff-27bc-4f11-98b7-6e479a00fad4 -2024-07-17 09:28:45.275549 2024-07-17 09:28:45.275555 plmef 7820 R rec be7c4e8d-3d8a-4d2b-bbc1-8f3a46e786bc -2024-07-17 09:28:45.326048 2024-07-17 09:28:45.326053 plmef 7821 R rec 1cba7d17-afbd-471e-8a9c-523825a743ef -2024-07-17 09:28:45.376912 2024-07-17 09:28:45.376923 plmef 7822 R rec b1aa3b37-7806-42be-b127-602872a11ceb -2024-07-17 09:28:45.461243 2024-07-17 09:28:45.461258 plmef 7823 R rec 197f34f2-531e-41d0-8c66-a770b484b4df -2024-07-17 09:28:45.544922 2024-07-17 09:28:45.544938 plmef 7824 R rec ca309898-14dd-4d08-bc59-30b5cdcdd01a -2024-07-17 09:28:45.596173 2024-07-17 09:28:45.596178 plmef 7825 R rec 0baae403-703b-49ae-bf6b-24ddb83d0ca0 -2024-07-17 09:28:45.634436 2024-07-17 09:28:45.634441 plmef 7826 R rec dca10b42-9ffe-4e2a-8f4a-48b344ee7835 -2024-07-17 09:28:45.673029 2024-07-17 09:28:45.673034 plmef 7827 R rec fb0c5e2c-ee8b-49a5-be2e-0dd1c8f2d13b -2024-07-17 09:28:45.72107 2024-07-17 09:28:45.721081 plmef 7828 R rec 6bf7f26d-4f9e-4f69-a183-8f67a2b034d8 -2024-07-17 09:28:45.781727 2024-07-17 09:28:45.781739 plmef 7829 R rec faa3bc8b-4b80-4d74-911e-2cc4d5d277db -2024-07-17 09:28:45.847031 2024-07-17 09:28:45.847043 plmef 7830 R rec f7de0373-8fca-4e89-9c5e-69e020c7f711 -2024-07-17 09:28:45.919708 2024-07-17 09:28:45.919723 plmef 7831 R rec cabcad9d-3474-4b58-9e0f-13f0aaeed4ac -2024-07-17 09:28:45.995863 2024-07-17 09:28:45.995876 plmef 7832 R rec 64251f7e-d1b2-4d6a-9453-cb43bb2cae13 -2024-07-17 09:28:46.068951 2024-07-17 09:28:46.068966 plmef 7833 R rec 47dff5dc-a9bf-4eec-99d0-1c08e62833cd -2024-07-17 09:28:46.137367 2024-07-17 09:28:46.137379 plmef 7834 R rec d311cd87-32f7-40f8-b726-112dd58001bb -2024-07-17 09:28:46.231675 2024-07-17 09:28:46.231805 plmef 7835 R rec 46b50890-04cb-433e-8654-02176b0bf792 -2024-07-17 09:28:46.300826 2024-07-17 09:28:46.300839 plmef 7836 R rec aa10c096-6af0-42c8-b25c-60d9bd497635 -2024-07-17 09:28:46.374095 2024-07-17 09:28:46.374105 plmef 7837 R rec 2b822a46-2d71-4a2f-b763-0339f1c7987f -2024-07-17 09:28:46.446972 2024-07-17 09:28:46.446983 plmef 7838 R rec 4a3d5919-9242-4c94-8bc5-d11bfc6facdd -2024-07-17 09:28:46.53136 2024-07-17 09:28:46.531372 plmef 7839 R rec f71aa091-12e8-46d4-a2c7-4f7196096971 -2024-07-17 09:28:46.602276 2024-07-17 09:28:46.602281 plmef 7840 R rec 89b01380-0f5c-48b1-9d0c-b38cd798105b -2024-07-17 09:28:46.643734 2024-07-17 09:28:46.64374 plmef 7841 R rec 2b259708-3b7d-45a5-a445-5b0ee653a3e0 -2024-07-17 09:28:46.685925 2024-07-17 09:28:46.68593 plmef 7842 R rec dd1068c7-90a5-4fdc-9557-0b5519f452d7 -2024-07-17 09:28:46.731329 2024-07-17 09:28:46.731334 plmef 7843 R rec 72574c6f-4516-4b7a-a509-433c2500577e -2024-07-17 09:28:46.788516 2024-07-17 09:28:46.788526 plmef 7844 R rec 657b006c-e828-409b-a006-8dfc86b1a572 -2024-07-17 09:28:46.86622 2024-07-17 09:28:46.866234 plmef 7845 R rec 2d5ba9cd-e6a1-4d5a-a0b6-9b2f35bebbce -2024-07-17 09:28:46.946915 2024-07-17 09:28:46.94693 plmef 7846 R rec 3c599bec-0ee1-423c-ad62-8feb73c0aab5 -2024-07-17 09:28:47.024529 2024-07-17 09:28:47.024577 plmef 7847 R rec e7034f58-4c63-4b80-8388-d453db4f3882 -2024-07-17 09:28:47.093475 2024-07-17 09:28:47.093485 plmef 7848 R rec 7e9d5988-78a8-4d75-97dc-2fed6e3e33b7 -2024-07-17 09:28:47.192035 2024-07-17 09:28:47.192047 plmef 7849 R rec bdfdb019-a548-4fe2-9f87-02224f71a96b -2024-07-17 09:28:47.266891 2024-07-17 09:28:47.2669 plmef 7850 R rec a35d1d3f-bf4b-4ee4-9933-de76e359b4e0 -2024-07-17 09:28:47.339057 2024-07-17 09:28:47.339069 plmef 7851 R rec 77e42912-4fca-48ab-a53e-1ff277c1118b -2024-07-17 09:28:47.40892 2024-07-17 09:28:47.408933 plmef 7852 R rec 262e1e29-b49f-42ce-a98b-4cfa989fb4b0 -2024-07-17 09:28:47.492912 2024-07-17 09:28:47.492927 plmef 7853 R rec 360daed1-f139-4141-8bdf-974836ed8ff9 -2024-07-17 09:28:47.572401 2024-07-17 09:28:47.572416 plmef 7854 R rec 86f5055e-f83b-49db-8ccb-b8d99e4514c6 -2024-07-17 09:28:47.647122 2024-07-17 09:28:47.647127 plmef 7855 R rec ea78a68b-4658-4d5c-96a1-8e84d8a6a5f9 -2024-07-17 09:28:47.689215 2024-07-17 09:28:47.68922 plmef 7856 R rec 35e03d08-4cbc-4a78-9b9c-8912f030280b -2024-07-17 09:28:47.730491 2024-07-17 09:28:47.730496 plmef 7857 R rec a254c5e7-3b49-4c25-b53b-02c503804ee8 -2024-07-17 09:28:47.791794 2024-07-17 09:28:47.791805 plmef 7858 R rec 2b34df39-4e4b-45d6-ace8-e12c565ab504 -2024-07-17 09:28:47.863937 2024-07-17 09:28:47.863947 plmef 7859 R rec 5f5de64d-b56b-4432-b0c9-8829cd1c0038 -2024-07-17 09:28:47.944221 2024-07-17 09:28:47.944232 plmef 7860 R rec 5a370b78-8cd6-4f41-b49c-56ee2cabd35c -2024-07-17 09:28:48.036918 2024-07-17 09:28:48.036931 plmef 7861 R rec 3cce78b9-ef13-4dc9-afdc-e40e53c17a25 -2024-07-17 09:28:48.129729 2024-07-17 09:28:48.129744 plmef 7862 R rec c0d745df-8149-4f62-8915-de0a1eed2970 -2024-07-17 09:28:48.22625 2024-07-17 09:28:48.22626 plmef 7863 R rec 6ffe4f1f-3ab9-4b20-b904-899de113bbbc -2024-07-17 09:28:48.333633 2024-07-17 09:28:48.333644 plmef 7864 R rec 95a83796-33c7-438f-8807-5135f9f02c1d -2024-07-17 09:28:48.414244 2024-07-17 09:28:48.41426 plmef 7865 R rec afa67f7e-e2a9-453b-a80e-ef41edac225b -2024-07-17 09:28:48.505769 2024-07-17 09:28:48.505791 plmef 7866 R rec d68927c7-ca42-41dd-9a89-17a316ea5039 -2024-07-17 09:28:48.590012 2024-07-17 09:28:48.590017 plmef 7867 R rec e6b3d99d-f3d5-453e-bd22-e8001af71188 -2024-07-17 09:28:48.667505 2024-07-17 09:28:48.667511 plmef 7868 R rec 8ac60558-2317-4289-b900-9266b4668d4a -2024-07-17 09:28:48.723139 2024-07-17 09:28:48.723143 plmef 7869 R rec 45ca634d-e8f1-463b-b304-af7154ef1eb4 -2024-07-17 09:28:48.768899 2024-07-17 09:28:48.76891 plmef 7870 R rec 92534d67-8ffb-4588-933c-cbd1771abbb9 -2024-07-17 09:28:48.839466 2024-07-17 09:28:48.839479 plmef 7871 R rec 0811862b-f75d-4606-af3f-a216755042c1 -2024-07-17 09:28:48.913467 2024-07-17 09:28:48.91348 plmef 7872 R rec 43e066b1-ad97-4db2-ba53-1606f9caf8cf -2024-07-17 09:28:48.997958 2024-07-17 09:28:48.998005 plmef 7873 R rec c31614aa-c162-43bd-ab36-6b12b4f0813a -2024-07-17 09:28:49.091821 2024-07-17 09:28:49.091831 plmef 7874 R rec 337205f4-a9f9-469c-93ee-2382c610ded0 -2024-07-17 09:28:49.194095 2024-07-17 09:28:49.194107 plmef 7875 R rec 99ce3b96-11c1-4a55-8bcb-fa84e25363f4 -2024-07-17 09:28:49.267483 2024-07-17 09:28:49.267493 plmef 7876 R rec c3001b08-1773-4268-bb5b-3a882785393b -2024-07-17 09:28:49.341864 2024-07-17 09:28:49.341876 plmef 7877 R rec e88f30c5-eedc-4e81-b82c-30ac1ec17b22 -2024-07-17 09:28:49.421582 2024-07-17 09:28:49.421597 plmef 7878 R rec 6fc6aacf-83bf-4cc1-b1de-7f52a69b9c31 -2024-07-17 09:28:49.51446 2024-07-17 09:28:49.51447 plmef 7879 R rec 847d9409-67a3-4e0b-a448-b7b4f0a056c2 -2024-07-17 09:28:49.599141 2024-07-17 09:28:49.599302 plmef 7880 R rec 74625cdd-7708-4216-b849-48c44a6d363b -2024-07-17 09:28:49.693309 2024-07-17 09:28:49.693314 plmef 7881 R rec f3e71a2f-de59-40b7-8cd4-183639c5028f -2024-07-17 09:28:49.739471 2024-07-17 09:28:49.739477 plmef 7882 R rec 626ee622-1f24-40e2-8720-e547ee869a3e -2024-07-17 09:28:49.789473 2024-07-17 09:28:49.789484 plmef 7883 R rec ce66f74f-91b6-4f23-a665-64d0ae8708b1 -2024-07-17 09:28:49.877281 2024-07-17 09:28:49.877294 plmef 7884 R rec c27960b6-27b9-4ba4-94df-352304ad16e8 -2024-07-17 09:28:49.963182 2024-07-17 09:28:49.963195 plmef 7885 R rec a2250914-c034-4bc9-afff-d9890c69f9e5 -2024-07-17 09:28:50.037973 2024-07-17 09:28:50.038072 plmef 7886 R rec 42fe7e5c-54a4-4de2-af74-4f3107e3b120 -2024-07-17 09:28:50.109416 2024-07-17 09:28:50.109427 plmef 7887 R rec db832457-1a5a-4722-91f1-545e9c249e94 -2024-07-17 09:28:50.180048 2024-07-17 09:28:50.18006 plmef 7888 R rec 949695aa-8061-4553-a7ad-5f6cbb5be379 -2024-07-17 09:28:50.26009 2024-07-17 09:28:50.260101 plmef 7889 R rec 3ea578e2-9145-4435-a528-0f1e5ec6ffc9 -2024-07-17 09:28:50.339806 2024-07-17 09:28:50.339815 plmef 7890 R rec ea9327de-5dbf-47eb-9914-d67f24469f4a -2024-07-17 09:28:50.441252 2024-07-17 09:28:50.441267 plmef 7891 R rec aec623c1-01d4-43ef-befc-d15db8c01b7d -2024-07-17 09:28:50.532982 2024-07-17 09:28:50.532998 plmef 7892 R rec fcf113de-f2f4-4fb4-9ac0-3424d3957380 -2024-07-17 09:28:50.610153 2024-07-17 09:28:50.610168 plmef 7893 R rec c393ede5-4a29-44f5-9a57-5d353bc40694 -2024-07-17 09:28:50.699795 2024-07-17 09:28:50.69981 plmef 7894 R rec b0c2050a-8506-4f2b-b7c4-b4a913bd0fc3 -2024-07-17 09:28:50.775817 2024-07-17 09:28:50.775822 plmef 7895 R rec faa496be-b802-4d64-a958-8fe71676d6b0 -2024-07-17 09:28:50.829172 2024-07-17 09:28:50.829182 plmef 7896 R rec ef581472-cc31-490e-9489-653bedf9b668 -2024-07-17 09:28:50.899339 2024-07-17 09:28:50.899351 plmef 7897 R rec c0cae8fd-a75b-4dc0-b50c-ad277f2cc266 -2024-07-17 09:28:50.973157 2024-07-17 09:28:50.973168 plmef 7898 R rec 02406a5f-0c67-4200-9275-d6e3a1fcfbbd -2024-07-17 09:28:51.054863 2024-07-17 09:28:51.054876 plmef 7899 R rec 5edab227-2995-4f88-a4e1-40f463564e35 -2024-07-17 09:28:51.151083 2024-07-17 09:28:51.151093 plmef 7900 R rec ddcff94c-1a26-4b36-aa46-030dbd38f584 -2024-07-17 09:28:51.228789 2024-07-17 09:28:51.228799 plmef 7901 R rec 97179faa-8fee-4ccc-abc8-ff7eddd59667 -2024-07-17 09:28:51.30791 2024-07-17 09:28:51.307999 plmef 7902 R rec bbcaf07e-0414-4a93-8abc-c5eef9394e64 -2024-07-17 09:28:51.388143 2024-07-17 09:28:51.388156 plmef 7903 R rec ebc8b577-8f70-4df2-90d8-9a89f3aa9dfd -2024-07-17 09:28:51.460378 2024-07-17 09:28:51.460389 plmef 7904 R rec 2af0c4c5-7d79-45e8-b369-68d5891f6085 -2024-07-17 09:28:51.53358 2024-07-17 09:28:51.533592 plmef 7905 R rec 8cb80c4f-228a-4ddd-b647-9a487cd84fa1 -2024-07-17 09:28:51.615821 2024-07-17 09:28:51.615832 plmef 7906 R rec f6e5c9f1-9f96-40a7-8bad-be34180795d4 -2024-07-17 09:28:51.695978 2024-07-17 09:28:51.695989 plmef 7907 R rec d68e8ec7-c3aa-4032-804a-7f9ab3b6dc54 -2024-07-17 09:28:51.786824 2024-07-17 09:28:51.786829 plmef 7908 R rec bf87d3b0-4b1c-4d39-971a-905f83ffb890 -2024-07-17 09:28:51.837983 2024-07-17 09:28:51.837988 plmef 7909 R rec db5605e5-3a5d-4a22-afdf-9ef7c8d1c15b -2024-07-17 09:28:51.902271 2024-07-17 09:28:51.902281 plmef 7910 R rec 01a0bdde-42ff-4a43-b474-b39a0eda5add -2024-07-17 09:28:51.964053 2024-07-17 09:28:51.964064 plmef 7911 R rec 6d8ef5d6-523a-471d-8102-7418d7000d2f -2024-07-17 09:28:52.035508 2024-07-17 09:28:52.035521 plmef 7912 R rec 36bdeb23-1b83-46c1-a7a7-289f11360f6c -2024-07-17 09:28:52.106884 2024-07-17 09:28:52.106895 plmef 7913 R rec 568f3256-be43-4a66-a223-87d97e2497a3 -2024-07-17 09:28:52.180769 2024-07-17 09:28:52.180784 plmef 7914 R rec d54133db-ab42-438c-bcfa-73c3a191b23d -2024-07-17 09:28:52.279714 2024-07-17 09:28:52.27972 plmef 7915 R rec 2a1663f3-f030-4317-bc24-b09d7abc55b1 -2024-07-17 09:28:52.360597 2024-07-17 09:28:52.360607 plmef 7916 R rec 91964428-c7dd-489d-81ca-6aab706b7e7f -2024-07-17 09:28:52.466159 2024-07-17 09:28:52.46617 plmef 7917 R rec 7c2ec21d-d9cc-41a0-b707-c4293d29aa61 -2024-07-17 09:28:52.549571 2024-07-17 09:28:52.549586 plmef 7918 R rec 966f108b-4d24-4651-b352-fa9967473449 -2024-07-17 09:28:52.635623 2024-07-17 09:28:52.635638 plmef 7919 R rec cdd0c279-d824-431c-af7c-f030ddb954d6 -2024-07-17 09:28:52.720101 2024-07-17 09:28:52.720112 plmef 7920 R rec 12a75496-ea53-4820-ad27-4bf2713c9a47 -2024-07-17 09:28:52.801431 2024-07-17 09:28:52.801438 plmef 7921 R rec 4655da0b-fa7d-4e96-a623-a8fc0818487d -2024-07-17 09:28:52.851363 2024-07-17 09:28:52.851368 plmef 7922 R rec 819fb867-2d6e-4040-b696-de8483106fa2 -2024-07-17 09:28:52.899301 2024-07-17 09:28:52.899307 plmef 7923 R rec d0d9e3df-3411-4647-a90d-7f154b5d4bf1 -2024-07-17 09:28:52.974792 2024-07-17 09:28:52.974802 plmef 7924 R rec c38cbf9f-d1e0-4d35-8859-77577342806b -2024-07-17 09:28:53.064604 2024-07-17 09:28:53.064617 plmef 7925 R rec 2968eca3-c2b9-43f3-b8e8-fb76d34bcec6 -2024-07-17 09:28:53.156368 2024-07-17 09:28:53.156379 plmef 7926 R rec 1b4106e7-6c47-4da7-8e84-cb9fdab66a81 -2024-07-17 09:28:53.252636 2024-07-17 09:28:53.252647 plmef 7927 R rec 4f8d90c2-c389-49e7-bde8-2960182a41e3 -2024-07-17 09:28:53.331647 2024-07-17 09:28:53.331659 plmef 7928 R rec ac24fd2b-fad1-4446-ba5f-3dfb8b926c0d -2024-07-17 09:28:53.406045 2024-07-17 09:28:53.406056 plmef 7929 R rec 7b8dbd40-1ea6-4d50-aa8f-770ceba7ad5a -2024-07-17 09:28:53.502091 2024-07-17 09:28:53.502102 plmef 7930 R rec 0743122f-0743-415f-97bb-abc3ebd2ed73 -2024-07-17 09:28:53.605511 2024-07-17 09:28:53.605525 plmef 7931 R rec 6836a6de-f283-441f-9dc4-188708ebebce -2024-07-17 09:28:53.696995 2024-07-17 09:28:53.69701 plmef 7932 R rec 726d8c41-7f69-43ff-9662-320d52730c85 -2024-07-17 09:28:53.793733 2024-07-17 09:28:53.793745 plmef 7933 R rec 6395c926-6a9f-4d27-a3d7-3a50bdcf063f -2024-07-17 09:28:53.854413 2024-07-17 09:28:53.854419 plmef 7934 R rec 536d24b3-7d1c-46fb-9d66-865176a69c31 -2024-07-17 09:28:53.900608 2024-07-17 09:28:53.900614 plmef 7935 R rec 1881eac8-50bb-4e3b-9b32-1e3847350457 -2024-07-17 09:28:53.977702 2024-07-17 09:28:53.977712 plmef 7936 R rec 4a1ad1d0-cf40-4d87-8509-4deff854c0da -2024-07-17 09:28:54.06253 2024-07-17 09:28:54.062541 plmef 7937 R rec 553b0de1-a170-47fe-940b-1826e3747264 -2024-07-17 09:28:54.157729 2024-07-17 09:28:54.157741 plmef 7938 R rec 62e9d467-968e-40d8-afe9-c52442f20fa5 -2024-07-17 09:28:54.270673 2024-07-17 09:28:54.270721 plmef 7939 R rec ea628519-68f7-4b36-b3c4-0838567d4b8a -2024-07-17 09:28:54.348623 2024-07-17 09:28:54.348639 plmef 7940 R rec 6f3178d4-89e2-4fd7-97f3-90eaf230492f -2024-07-17 09:28:54.449877 2024-07-17 09:28:54.449888 plmef 7941 R rec d01d2e94-11ed-429b-b4ee-e49a8fe701f2 -2024-07-17 09:28:54.551544 2024-07-17 09:28:54.551559 plmef 7942 R rec 0cca35b2-5338-4fc8-a4f3-e697b060d51d -2024-07-17 09:28:54.631488 2024-07-17 09:28:54.631501 plmef 7943 R rec a4b82a65-51f3-4527-9256-5a0142755c7f -2024-07-17 09:28:54.729175 2024-07-17 09:28:54.729187 plmef 7944 R rec beb83b1c-3bdd-438a-b41b-f13300d52e18 -2024-07-17 09:28:54.820172 2024-07-17 09:28:54.820187 plmef 7945 R rec 894ec3b7-6432-4fa4-bd25-6091943f3813 -2024-07-17 09:28:54.920838 2024-07-17 09:28:54.920843 plmef 7946 R rec 46d447eb-193e-455b-9b11-0ae005b69570 -2024-07-17 09:28:54.975126 2024-07-17 09:28:54.97513 plmef 7947 R rec 005e46ef-ee6c-4b39-8846-9d9f28a9e070 -2024-07-17 09:28:55.028636 2024-07-17 09:28:55.028646 plmef 7948 R rec 696e8894-e22e-40e4-80f2-9ba83aa5ec09 -2024-07-17 09:28:55.101791 2024-07-17 09:28:55.101802 plmef 7949 R rec 4b20a35e-ecdc-454e-aa7c-9c992ea93aec -2024-07-17 09:28:55.189337 2024-07-17 09:28:55.189347 plmef 7950 R rec 364f248c-feba-48c6-b86e-e4ae660dc918 -2024-07-17 09:28:55.27371 2024-07-17 09:28:55.273724 plmef 7951 R rec 5be08f85-629b-46b3-b5dc-c891b18da974 -2024-07-17 09:28:55.351922 2024-07-17 09:28:55.351938 plmef 7952 R rec 82b43024-ca9a-46b0-99d7-9d39b74eb4d0 -2024-07-17 09:28:55.440147 2024-07-17 09:28:55.440209 plmef 7953 R rec 43ed3247-4bd9-4934-bd3b-5a75a4ef92ff -2024-07-17 09:28:55.570827 2024-07-17 09:28:55.570843 plmef 7954 R rec bd763afd-8cf9-4ad3-a26f-b5900877d62a -2024-07-17 09:28:55.652949 2024-07-17 09:28:55.652959 plmef 7955 R rec 32b35006-9dd8-410e-9842-2550b45c60c7 -2024-07-17 09:28:55.738466 2024-07-17 09:28:55.738478 plmef 7956 R rec 0a24d12a-d796-498a-8eff-62b6b7f928d0 -2024-07-17 09:28:55.821904 2024-07-17 09:28:55.821915 plmef 7957 R rec 6524552e-4755-4ee8-ad64-90907816751f -2024-07-17 09:28:55.910749 2024-07-17 09:28:55.910755 plmef 7958 R rec 4e1e0531-9f18-402b-9044-5f96451da577 -2024-07-17 09:28:55.985725 2024-07-17 09:28:55.985736 plmef 7959 R rec b4eed59f-ed12-40c8-8ae1-97ecd322bbfe -2024-07-17 09:28:56.070029 2024-07-17 09:28:56.070042 plmef 7960 R rec 3ed8bb13-4f94-4abf-8bef-0601feb325e8 -2024-07-17 09:28:56.164326 2024-07-17 09:28:56.164336 plmef 7961 R rec ad2b5d24-b439-43f0-8210-e9af836ad7be -2024-07-17 09:28:56.253071 2024-07-17 09:28:56.253081 plmef 7962 R rec 048326d5-5357-493e-8311-cf4e4aa2752b -2024-07-17 09:28:56.339032 2024-07-17 09:28:56.339041 plmef 7963 R rec ffb13bfb-3f2a-48f7-8cca-1a623e4c6eaa -2024-07-17 09:28:56.415452 2024-07-17 09:28:56.415467 plmef 7964 R rec c7338ba2-afd1-4b2a-ba12-2ffa0f144ceb -2024-07-17 09:28:56.509842 2024-07-17 09:28:56.509858 plmef 7965 R rec 752f2c5d-44cf-47d9-9ce3-8b78edff540f -2024-07-17 09:28:56.597349 2024-07-17 09:28:56.59736 plmef 7966 R rec 7c253601-0ffe-4df4-9f72-b5d2b167c113 -2024-07-17 09:28:56.679339 2024-07-17 09:28:56.679354 plmef 7967 R rec 33efa6c2-a262-4cd8-b128-2263f0a21e59 -2024-07-17 09:28:56.773763 2024-07-17 09:28:56.773774 plmef 7968 R rec 2f5827b8-a1de-46b1-9f5e-254478d6dffa -2024-07-17 09:28:56.86545 2024-07-17 09:28:56.865465 plmef 7969 R rec a66cd6c6-e222-4f09-941d-fd1693f62767 -2024-07-17 09:28:56.947222 2024-07-17 09:28:56.947227 plmef 7970 R rec 4f6bc522-7b5a-4e49-b665-63713c504d5b -2024-07-17 09:28:57.001854 2024-07-17 09:28:57.001859 plmef 7971 R rec 333e77fb-8efc-4256-96b5-633aa266b761 -2024-07-17 09:28:57.076619 2024-07-17 09:28:57.076629 plmef 7972 R rec 1f48a0a1-2d04-476d-8940-d09d3883cbcc -2024-07-17 09:28:57.184699 2024-07-17 09:28:57.18471 plmef 7973 R rec aa1774af-c916-4f10-b2f7-9e9dce7d8e70 -2024-07-17 09:28:57.2812 2024-07-17 09:28:57.281217 plmef 7974 R rec c05dd983-4d92-4b37-a337-8d64838940e6 -2024-07-17 09:28:57.408389 2024-07-17 09:28:57.408401 plmef 7975 R rec ca279225-2fce-486e-9a39-febfd3e19ab4 -2024-07-17 09:28:57.514405 2024-07-17 09:28:57.514414 plmef 7976 R rec 3b6fe80d-1842-443d-a0bb-247dbfcd0d0e -2024-07-17 09:28:57.617005 2024-07-17 09:28:57.617022 plmef 7977 R rec 839e3576-5ac8-43d9-b461-ad5016d8042f -2024-07-17 09:28:57.710665 2024-07-17 09:28:57.710675 plmef 7978 R rec 102b026d-6996-4738-900a-c34998091867 -2024-07-17 09:28:57.811312 2024-07-17 09:28:57.811322 plmef 7979 R rec 13830d6f-79d6-42d4-a048-68314a7d4a87 -2024-07-17 09:28:57.909974 2024-07-17 09:28:57.910019 plmef 7980 R rec c9a44819-2481-4dda-86a8-06eca5a3557d -2024-07-17 09:28:58.011728 2024-07-17 09:28:58.011734 plmef 7981 R rec 3d74e0c7-141e-4969-ab98-ad052573fac9 -2024-07-17 09:28:58.081337 2024-07-17 09:28:58.081372 plmef 7982 R rec 03591be6-5794-4b0e-95fa-adccaa7d7efa -2024-07-17 09:28:58.172116 2024-07-17 09:28:58.172127 plmef 7983 R rec cd86a9f4-c3ee-4033-8e0f-19d8cb3efde0 -2024-07-17 09:28:58.266676 2024-07-17 09:28:58.266682 plmef 7984 R rec 477e2af8-8c73-4852-81cd-a0aae3231ec0 -2024-07-17 09:28:58.351773 2024-07-17 09:28:58.351784 plmef 7985 R rec 212b23b3-c23e-4b19-a3ff-6248ed6f5e03 -2024-07-17 09:28:58.443461 2024-07-17 09:28:58.443473 plmef 7986 R rec 2444ad77-a7e1-4af3-95cd-396b6f7dcead -2024-07-17 09:28:58.547527 2024-07-17 09:28:58.547538 plmef 7987 R rec 507f82ef-7574-4067-8a2f-c314d171acf4 -2024-07-17 09:28:58.650532 2024-07-17 09:28:58.650544 plmef 7988 R rec 5205ee79-0e33-4d48-b06b-6d54785b69f6 -2024-07-17 09:28:58.76185 2024-07-17 09:28:58.76186 plmef 7989 R rec 885d347f-bac7-4946-9b49-898883ff1a10 -2024-07-17 09:28:58.859541 2024-07-17 09:28:58.859554 plmef 7990 R rec b711be1b-2d06-486f-9aa4-191b72bef3e2 -2024-07-17 09:28:58.966621 2024-07-17 09:28:58.966633 plmef 7991 R rec e517190a-bcfb-4893-975b-7824c9e7138f -2024-07-17 09:28:59.027114 2024-07-17 09:28:59.027119 plmef 7992 R rec d61a44b8-3de0-40c4-823a-ac68652bfa3d -2024-07-17 09:28:59.07492 2024-07-17 09:28:59.074926 plmef 7993 R rec 8ca85889-904a-474d-b4d5-95d8de58e707 -2024-07-17 09:28:59.143194 2024-07-17 09:28:59.143205 plmef 7994 R rec 7b2c6c56-c69c-4a0f-839c-75321fc54ce0 -2024-07-17 09:28:59.227875 2024-07-17 09:28:59.22788 plmef 7995 R rec 2d88ac42-1da3-43ba-a171-06abe0341fc1 -2024-07-17 09:28:59.315083 2024-07-17 09:28:59.315102 plmef 7996 R rec f142c86f-0a76-4917-8f3d-eb10881d8a2c -2024-07-17 09:28:59.416131 2024-07-17 09:28:59.416142 plmef 7997 R rec 11cceb69-d688-40f0-b99e-81a654cfbdf2 -2024-07-17 09:28:59.508057 2024-07-17 09:28:59.508073 plmef 7998 R rec 65d8bed7-3420-490c-b6dd-7f33bc4fb756 -2024-07-17 09:28:59.603881 2024-07-17 09:28:59.603982 plmef 7999 R rec 08d5ba06-3b61-4dda-b1e1-4b051be37885 -2024-07-17 09:28:59.700418 2024-07-17 09:28:59.700431 plmef 8000 R rec 89cbd6ae-70ae-4ddc-8581-290aa424932b -2024-07-17 09:28:59.792455 2024-07-17 09:28:59.792465 plmef 8001 R rec 1b9e7fa4-d663-47c6-904d-80c1faa0730a -2024-07-17 09:28:59.914504 2024-07-17 09:28:59.91452 plmef 8002 R rec 1036c89a-2e5e-441d-90a0-dd926c95e17d -2024-07-17 09:29:00.02332 2024-07-17 09:29:00.023326 plmef 8003 R rec 55c7240d-e841-4ba0-b318-42b3bb9e3205 -2024-07-17 09:29:00.092465 2024-07-17 09:29:00.092476 plmef 8004 R rec 79aeba74-e1b1-4eb7-8858-c21bfee8af6e -2024-07-17 09:29:00.185985 2024-07-17 09:29:00.185996 plmef 8005 R rec 4f30b1b4-5def-49ec-8031-e394cc6c9336 -2024-07-17 09:29:00.284824 2024-07-17 09:29:00.284835 plmef 8006 R rec 46f41427-4fcc-48f3-adc6-1cadf99b7aad -2024-07-17 09:29:00.421049 2024-07-17 09:29:00.421062 plmef 8007 R rec f55b6e6f-3d18-43d8-a72e-de6654c43b91 -2024-07-17 09:29:00.52177 2024-07-17 09:29:00.521783 plmef 8008 R rec eada61d9-4c4e-472e-adfe-7ec227876176 -2024-07-17 09:29:00.634296 2024-07-17 09:29:00.634307 plmef 8009 R rec 66b96f89-72be-4a71-a08c-807f7b930464 -2024-07-17 09:29:00.720275 2024-07-17 09:29:00.720289 plmef 8010 R rec 8577c4a3-8b43-4fa6-bdb3-27b992dea7f4 -2024-07-17 09:29:00.835996 2024-07-17 09:29:00.836007 plmef 8011 R rec 4f22176b-9e48-44e4-9f08-998a87080a09 -2024-07-17 09:29:00.942791 2024-07-17 09:29:00.9428 plmef 8012 R rec 85474319-eba2-4700-b86f-0e6459215718 -2024-07-17 09:29:01.046101 2024-07-17 09:29:01.046113 plmef 8013 R rec e9fa9c60-f2bf-4bb7-ac3b-3b4807506453 -2024-07-17 09:29:01.112998 2024-07-17 09:29:01.113004 plmef 8014 R rec 36a10b3d-a89d-4813-8573-e9de37411935 -2024-07-17 09:29:01.181253 2024-07-17 09:29:01.181266 plmef 8015 R rec bf359f07-7605-4093-819c-2d863311589f -2024-07-17 09:29:01.274896 2024-07-17 09:29:01.274906 plmef 8016 R rec b84aa734-ebe8-4f01-8c52-05358930f289 -2024-07-17 09:29:01.34982 2024-07-17 09:29:01.349831 plmef 8017 R rec b7869f07-5342-457f-aa89-40cbaa138fb2 -2024-07-17 09:29:01.445117 2024-07-17 09:29:01.445129 plmef 8018 R rec c78328b4-abf2-496f-b4fe-6a66b6f1a580 -2024-07-17 09:29:01.551897 2024-07-17 09:29:01.55191 plmef 8019 R rec 69055306-9ec4-4a66-9311-01ba7cc72985 -2024-07-17 09:29:01.659964 2024-07-17 09:29:01.659975 plmef 8020 R rec 8d29888e-c7b6-479a-a527-4835d9078ce2 -2024-07-17 09:29:01.781095 2024-07-17 09:29:01.78111 plmef 8021 R rec 0e624a97-fff0-48cb-8dc3-34ecf22045fc -2024-07-17 09:29:01.896157 2024-07-17 09:29:01.896173 plmef 8022 R rec 2d9c9563-582c-4edd-b8d9-8fc3b00f960c -2024-07-17 09:29:02.008274 2024-07-17 09:29:02.008294 plmef 8023 R rec a6160a1a-dd10-48dc-82a2-0c8ad151431a -2024-07-17 09:29:02.112638 2024-07-17 09:29:02.112645 plmef 8024 R rec b0d23737-392b-4420-a16f-59e3c49aa8e7 -2024-07-17 09:29:02.169042 2024-07-17 09:29:02.169086 plmef 8025 R rec 7e72c6bc-44ff-44d5-886f-7541c3e6997c -2024-07-17 09:29:02.268985 2024-07-17 09:29:02.269001 plmef 8026 R rec 1835d874-b19b-41d1-8712-39060aa79d00 -2024-07-17 09:29:02.374495 2024-07-17 09:29:02.374507 plmef 8027 R rec c7962d93-1ab9-4d42-b373-0d0699e10e17 -2024-07-17 09:29:02.492412 2024-07-17 09:29:02.492425 plmef 8028 R rec c91bb962-11ac-4dc6-92a1-c66fada43a93 -2024-07-17 09:29:02.598171 2024-07-17 09:29:02.598186 plmef 8029 R rec e03b8508-3855-41a1-94bc-c68d2c4edd7a -2024-07-17 09:29:02.69284 2024-07-17 09:29:02.692861 plmef 8030 R rec ae3eecaf-18e7-474a-aa76-7885aec979c4 -2024-07-17 09:29:02.807527 2024-07-17 09:29:02.807541 plmef 8031 R rec c0687f75-a595-4579-9a3c-c98ab55c6e49 -2024-07-17 09:29:02.926786 2024-07-17 09:29:02.926799 plmef 8032 R rec 1585c42a-604d-40fd-b92b-3b60a473c6dd -2024-07-17 09:29:03.040539 2024-07-17 09:29:03.04055 plmef 8033 R rec 3c2a0332-726b-49d6-b4d7-463c96a96095 -2024-07-17 09:29:03.139935 2024-07-17 09:29:03.13994 plmef 8034 R rec c2697cb1-2181-41b7-ba5e-dbc9b14178f0 -2024-07-17 09:29:03.22652 2024-07-17 09:29:03.226526 plmef 8035 R rec 72d4f6b3-1e2c-42da-bd5d-8e1c385f060d -2024-07-17 09:29:03.320376 2024-07-17 09:29:03.320388 plmef 8036 R rec cb9ae29b-e388-4a18-8825-c731196fce0e -2024-07-17 09:29:03.427996 2024-07-17 09:29:03.428007 plmef 8037 R rec 483b3a16-90b1-4da4-85ee-0f538b1892b0 -2024-07-17 09:29:03.530588 2024-07-17 09:29:03.530599 plmef 8038 R rec 1ccbd2bf-3b0b-41d7-bff2-6a83e6e3d24f -2024-07-17 09:29:03.624274 2024-07-17 09:29:03.624284 plmef 8039 R rec b7d48eec-84f8-4eeb-9b45-bb5156f8c4a5 -2024-07-17 09:29:03.726214 2024-07-17 09:29:03.726225 plmef 8040 R rec d02f2f8e-e216-4787-a1d2-b771e5d12c20 -2024-07-17 09:29:03.827293 2024-07-17 09:29:03.827304 plmef 8041 R rec f60a3bb7-fcf2-4047-8ea3-0951136fb845 -2024-07-17 09:29:03.922178 2024-07-17 09:29:03.922194 plmef 8042 R rec 5d6556e3-2739-4f5a-bd82-a65c89b17890 -2024-07-17 09:29:04.019532 2024-07-17 09:29:04.019547 plmef 8043 R rec a755f3a3-496d-446f-bfc6-b49d5b1355df -2024-07-17 09:29:04.116625 2024-07-17 09:29:04.116635 plmef 8044 R rec 3e8ef545-bd9b-4047-b7f1-2eb302c52bc4 -2024-07-17 09:29:04.217021 2024-07-17 09:29:04.217026 plmef 8045 R rec 12fe0cbe-652a-4fdc-9b8f-41d741ed69f0 -2024-07-17 09:29:04.286781 2024-07-17 09:29:04.286799 plmef 8046 R rec 9b969c72-5e1c-4a5b-a95c-0dcec246f630 -2024-07-17 09:29:04.378549 2024-07-17 09:29:04.378561 plmef 8047 R rec eee37460-0cee-4576-965e-3795b4b7a443 -2024-07-17 09:29:04.478796 2024-07-17 09:29:04.478806 plmef 8048 R rec 93afbe44-0fb8-45e0-8b79-4a6a20a2dcae -2024-07-17 09:29:04.573993 2024-07-17 09:29:04.574003 plmef 8049 R rec 772917cc-4b7e-4edd-8526-f28a03a8fcda -2024-07-17 09:29:04.672459 2024-07-17 09:29:04.672474 plmef 8050 R rec 3655882f-d06c-4894-81c7-821dff52cf31 -2024-07-17 09:29:04.773227 2024-07-17 09:29:04.773236 plmef 8051 R rec dbfefe8c-5151-4992-af77-4522ef559c6e -2024-07-17 09:29:04.869967 2024-07-17 09:29:04.869979 plmef 8052 R rec a3aeeeed-5979-44ce-bfed-4609f770e16d -2024-07-17 09:29:04.978976 2024-07-17 09:29:04.978986 plmef 8053 R rec 28283ee1-c401-457c-bb8a-0bb06d03097a -2024-07-17 09:29:05.071953 2024-07-17 09:29:05.071968 plmef 8054 R rec f1f5d3b0-a9ad-47e5-bada-7149978c288c -2024-07-17 09:29:05.164412 2024-07-17 09:29:05.164428 plmef 8055 R rec 57eabdf7-6545-464c-87a8-f4ab4339975c -2024-07-17 09:29:05.224129 2024-07-17 09:29:05.224134 plmef 8056 R rec a5cbbddd-ed99-492b-b5cb-9e7c73cf2bad -2024-07-17 09:29:05.273596 2024-07-17 09:29:05.273603 plmef 8057 R rec 6d147fac-d79b-4780-89b4-50325ac2c85e -2024-07-17 09:29:05.349462 2024-07-17 09:29:05.349475 plmef 8058 R rec a4be93ae-652a-4bde-aa48-633fa7dc23ff -2024-07-17 09:29:05.474516 2024-07-17 09:29:05.474527 plmef 8059 R rec 9e8783b0-b24c-495b-a1cd-6b7eba5a06e5 -2024-07-17 09:29:05.578782 2024-07-17 09:29:05.578786 plmef 8060 R rec 91d73902-0623-4136-8c93-172772e1d00c -2024-07-17 09:29:05.656331 2024-07-17 09:29:05.656342 plmef 8061 R rec 8c8a8fd1-55a3-4b52-b59e-13947c988930 -2024-07-17 09:29:05.757999 2024-07-17 09:29:05.758004 plmef 8062 R rec dac591bc-3544-472f-9e74-0e5ff24ccb86 -2024-07-17 09:29:05.850781 2024-07-17 09:29:05.850785 plmef 8063 R rec e9d8d03c-c006-40c2-9dd0-5b3e4a80aa9f -2024-07-17 09:29:05.933227 2024-07-17 09:29:05.933243 plmef 8064 R rec 578b3899-375d-4a64-bb06-396f9ed25f82 -2024-07-17 09:29:06.02884 2024-07-17 09:29:06.028857 plmef 8065 R rec 1678952b-722b-47f4-ab23-00b63884b2c9 -2024-07-17 09:29:06.152912 2024-07-17 09:29:06.152923 plmef 8066 R rec dd21c45d-739f-468c-9408-6eb96c1f94fb -2024-07-17 09:29:06.240113 2024-07-17 09:29:06.240118 plmef 8067 R rec 71f6174b-18d0-4b8b-b1bf-30e47ef8e8ea -2024-07-17 09:29:06.290777 2024-07-17 09:29:06.290783 plmef 8068 R rec c2da9743-101e-4d1a-9320-1231632cbbad -2024-07-17 09:29:06.360116 2024-07-17 09:29:06.360155 plmef 8069 R rec d01feda4-80b4-4312-b892-b8d48b64a741 -2024-07-17 09:29:06.438345 2024-07-17 09:29:06.438356 plmef 8070 R rec c1a2f4fe-0c9f-47d6-ab44-0c4d467ab145 -2024-07-17 09:29:06.519955 2024-07-17 09:29:06.519966 plmef 8071 R rec 46752a73-4cb1-4b5d-987a-668f3f2004c7 -2024-07-17 09:29:06.604932 2024-07-17 09:29:06.604943 plmef 8072 R rec 6f013ec5-3697-418d-8ba8-a6882ab55e33 -2024-07-17 09:29:06.692931 2024-07-17 09:29:06.692941 plmef 8073 R rec 5991f73b-361a-4b66-8f4b-d090ce09b19f -2024-07-17 09:29:06.767754 2024-07-17 09:29:06.767765 plmef 8074 R rec ddb474d8-3915-4bd8-9d11-b79ca08ce46c -2024-07-17 09:29:06.859202 2024-07-17 09:29:06.85922 plmef 8075 R rec 296a7ced-e406-4080-9df0-354c92a78e25 -2024-07-17 09:29:06.957682 2024-07-17 09:29:06.957694 plmef 8076 R rec 99da5b01-02b0-4829-87ee-1c03a3fcdc0a -2024-07-17 09:29:07.051889 2024-07-17 09:29:07.051899 plmef 8077 R rec 71a279e8-b6f0-43de-8e2b-70b9650336e6 -2024-07-17 09:29:07.144676 2024-07-17 09:29:07.144686 plmef 8078 R rec d51cbf61-199f-4813-b2ad-f72e2738dc15 -2024-07-17 09:29:07.234347 2024-07-17 09:29:07.234359 plmef 8079 R rec ad019538-5d19-4d24-bf3c-9c1dd8de0e76 -2024-07-17 09:29:07.299059 2024-07-17 09:29:07.299065 plmef 8080 R rec 40decd89-eb6d-4ccd-a937-424590445c88 -2024-07-17 09:29:07.351078 2024-07-17 09:29:07.351083 plmef 8081 R rec 95782751-7107-4b93-bce8-7667ae09be2c -2024-07-17 09:29:07.418577 2024-07-17 09:29:07.4186 plmef 8082 R rec 6b2877f2-da2f-46c3-a942-deff04ae9f3a -2024-07-17 09:29:09.672799 2024-07-17 09:29:09.672804 plmef 8083 R rec cd31b41e-168c-4b3d-9f08-5a3ec9290edc -2024-07-17 09:29:09.719988 2024-07-17 09:29:09.719993 plmef 8084 R rec d18e891d-f628-4a61-be41-bc30cc78b846 -2024-07-17 09:29:09.768565 2024-07-17 09:29:09.76857 plmef 8085 R rec 25d6bb7d-bc25-4e1f-b1dc-96986a80b2a3 -2024-07-17 09:29:09.84449 2024-07-17 09:29:09.844503 plmef 8086 R rec 873e54f6-566a-4176-b892-be6667e69d08 -2024-07-17 09:29:09.957776 2024-07-17 09:29:09.957787 plmef 8087 R rec db2d559b-29b7-4c55-a8e5-112ca2135a59 -2024-07-17 09:29:10.286926 2024-07-17 09:29:10.286937 plmef 8088 R rec 58624fb4-b47f-406a-8256-e14b59520085 -2024-07-17 09:29:10.366192 2024-07-17 09:29:10.366198 plmef 8089 R rec db2abde3-aff1-46b5-8fac-5b9f2dd4dc53 -2024-07-17 09:29:10.416678 2024-07-17 09:29:10.416684 plmef 8090 R rec 8a59d528-073d-4419-a235-af5ddb2aa8a1 -2024-07-17 09:29:10.484824 2024-07-17 09:29:10.484836 plmef 8091 R rec 626545b7-0fd7-4c4c-a8e4-6ad5dfe01147 -2024-07-17 09:29:11.734837 2024-07-17 09:29:11.734849 plmef 8092 R rec 7604e1b5-9d43-4bfe-839b-0b02a66387cc -2024-07-17 09:29:12.510025 2024-07-17 09:29:12.510035 plmef 8093 R rec 6bd93c7c-f012-433f-b993-218fd14acff5 -2024-07-17 09:29:13.267565 2024-07-17 09:29:13.267579 plmef 8094 R rec ce7547d7-3123-42db-ba1f-8b38fa101606 -2024-07-17 09:29:13.364358 2024-07-17 09:29:13.36437 plmef 8095 R rec 8fba6e58-3895-4d55-b48e-3f0fb9a0e4f0 -2024-07-17 09:29:14.743732 2024-07-17 09:29:14.743748 plmef 8096 R rec bbf04ed4-4ae4-4a65-a273-98ba9ab15560 -2024-07-17 09:29:15.596523 2024-07-17 09:29:15.596533 plmef 8097 R rec 61081e58-7300-4c4b-81cb-bb682943f28e -2024-07-17 09:29:16.292017 2024-07-17 09:29:16.292028 plmef 8098 R rec 6298910a-99ce-4b60-8001-f1e420745997 -2024-07-17 09:29:16.915276 2024-07-17 09:29:16.915287 plmef 8099 R rec 2bfba8b8-d0a5-421d-a9ce-435d4792c3c5 -2024-07-17 09:29:17.259645 2024-07-17 09:29:17.259658 plmef 8100 R rec 4f78a460-e41d-4a10-b2c1-fe5acfeca48e -2024-07-17 09:29:17.626374 2024-07-17 09:29:17.626385 plmef 8101 R rec e54e43b9-cdfb-48f1-881d-806997f12c2c -2024-07-17 09:29:17.711055 2024-07-17 09:29:17.711068 plmef 8102 R rec 390073de-eb3d-4ec5-b05e-5dfdd6304adc -2024-07-17 09:29:18.019884 2024-07-17 09:29:18.019897 plmef 8103 R rec b680dcdf-56f8-4ecb-9d2d-3c017da2106d -2024-07-17 09:29:18.211753 2024-07-17 09:29:18.211762 plmef 8104 R rec e0724d00-11ef-40ca-a383-d570444a0b4f -2024-07-17 09:29:18.305231 2024-07-17 09:29:18.305241 plmef 8105 R rec b9660f65-c163-47f7-b29b-8e16df16c2dc -2024-07-17 09:29:19.26354 2024-07-17 09:29:19.263553 plmef 8106 R rec 2da4a4d6-6be7-447f-baf8-59d5c10b67c8 -2024-07-17 09:29:20.072034 2024-07-17 09:29:20.072039 plmef 8107 R rec cc697ba9-24b7-4922-a8a1-121a987d6c89 -2024-07-17 09:29:22.03654 2024-07-17 09:29:22.03655 plmef 8108 R rec 415e82a1-1f7d-4ed6-84af-173a454941fb -2024-07-17 09:29:23.12704 2024-07-17 09:29:23.127053 plmef 8109 R rec a30ed19c-27a7-4f1d-b88d-7e47fee3307e -2024-07-17 09:29:23.476608 2024-07-17 09:29:23.476619 plmef 8110 R rec 1eb7bb15-fe5c-4492-98c7-3596a5e16091 -2024-07-17 09:29:23.554892 2024-07-17 09:29:23.554904 plmef 8111 R rec c6e2ac12-c322-4eb0-ae38-1b86616c6be7 -2024-07-17 09:29:23.657152 2024-07-17 09:29:23.657164 plmef 8112 R rec 927b214e-98c7-4f62-a1ee-8d2134a3dbdc -2024-07-17 09:29:24.188799 2024-07-17 09:29:24.188814 plmef 8113 R rec f6b3398c-4321-4a97-aa21-07ebd072130b -2024-07-17 09:29:24.401227 2024-07-17 09:29:24.401239 plmef 8114 R rec a7af36e3-4ce0-43c1-a2b2-80cb7489e50e -2024-07-17 09:29:25.025075 2024-07-17 09:29:25.025097 plmef 8115 R rec 93593fd1-bbdc-4b1f-96cd-608da1a5f185 -2024-07-17 09:29:26.20433 2024-07-17 09:29:26.204355 plmef 8116 R rec 63a1b383-6b22-4ef3-9737-7dd69fa48411 -2024-07-17 09:29:27.203604 2024-07-17 09:29:27.203674 plmef 8117 R rec 7e046151-dad3-42c7-82e0-4ebc25ac242c -2024-07-17 09:29:30.066668 2024-07-17 09:29:30.066674 plmef 8118 R rec 735d99c2-70c2-4bf0-ab69-5b89cbd90015 -2024-07-17 09:29:30.146422 2024-07-17 09:29:30.146433 plmef 8119 R rec b919c86a-e2fd-43fd-8407-17cb95770ff9 -2024-07-17 09:29:30.441407 2024-07-17 09:29:30.441418 plmef 8120 R rec dd0b3447-1cec-4988-b664-c407d95c7b51 -2024-07-17 09:29:30.636919 2024-07-17 09:29:30.636932 plmef 8121 R rec bc882ff9-9909-4531-8b7e-f254e0d4ee96 -2024-07-17 09:29:30.729145 2024-07-17 09:29:30.729155 plmef 8122 R rec b5ba27e3-fbb1-4841-a081-c812c12d64bd -2024-07-17 09:29:30.917853 2024-07-17 09:29:30.917859 plmef 8123 R rec 487365b0-cfee-4ed9-a99e-b6c07f017b1f -2024-07-17 09:29:31.266431 2024-07-17 09:29:31.266442 plmef 8124 R rec abb36182-683a-4502-90a4-0a961ac7bbc7 -2024-07-17 09:29:31.344388 2024-07-17 09:29:31.344399 plmef 8125 R rec c049b67e-1e1e-428d-a0fe-ef07e7f21549 -2024-07-17 09:29:31.442217 2024-07-17 09:29:31.44223 plmef 8126 R rec 532fd32a-922e-4d43-b7bb-93a99e20eba2 -2024-07-17 09:29:31.534632 2024-07-17 09:29:31.534675 plmef 8127 R rec 9dae8e4e-377b-44cb-9dab-a35f311b5b4c -2024-07-17 09:29:31.638519 2024-07-17 09:29:31.638535 plmef 8128 R rec 097f6272-adce-4d08-b926-dc25630995c6 -2024-07-17 09:29:31.889246 2024-07-17 09:29:31.889256 plmef 8129 R rec c9252475-3aff-456c-8069-97c31f3c1c87 -2024-07-17 09:29:32.264564 2024-07-17 09:29:32.264575 plmef 8130 R rec bcd36c06-0058-48b0-ba74-520cb6f0215f -2024-07-17 09:29:32.385576 2024-07-17 09:29:32.385581 plmef 8131 R rec dcdc13a8-af78-47f9-bb90-f762fc1adb3a -2024-07-17 09:29:32.48665 2024-07-17 09:29:32.48666 plmef 8132 R rec 9c25eb8e-00e2-491e-b6c3-97d68fbf4b2c -2024-07-17 09:29:32.734165 2024-07-17 09:29:32.734179 plmef 8133 R rec 7a474aec-5296-4b44-8e6b-1f9fe1be5ad8 -2024-07-17 09:29:32.857044 2024-07-17 09:29:32.85706 plmef 8134 R rec 195c38ea-54b5-4444-9d83-e4c8a8c0e924 -2024-07-17 09:29:32.987786 2024-07-17 09:29:32.987791 plmef 8135 R rec 7a558dff-e103-4e86-b51d-bcc4fcf6962b -2024-07-17 09:29:33.282944 2024-07-17 09:29:33.282955 plmef 8136 R rec c4812c13-b26d-40d7-9213-dbaac234bc2d -2024-07-17 09:29:33.400238 2024-07-17 09:29:33.40025 plmef 8137 R rec 394d1ae8-3676-4326-90cc-d3e09cdcee12 -2024-07-17 09:29:33.991082 2024-07-17 09:29:33.991088 plmef 8138 R rec 3dfbd367-5b71-40e7-a6b0-010f4d55d0c2 -2024-07-17 09:29:34.042076 2024-07-17 09:29:34.042082 plmef 8139 R rec 87baff43-aa7f-4e77-9c09-a0f715016411 -2024-07-17 09:29:34.548776 2024-07-17 09:29:34.548786 plmef 8140 R rec a4e3f8d8-c8e5-472c-bc59-54275167bed3 -2024-07-17 09:29:34.636251 2024-07-17 09:29:34.636261 plmef 8141 R rec a2ab70cd-852c-4c28-adcf-71270e4a2e0b -2024-07-17 09:29:34.803928 2024-07-17 09:29:34.803938 plmef 8142 R rec 05f5e5c7-b1f9-44f4-aa3a-f6e399164501 -2024-07-17 09:29:34.884975 2024-07-17 09:29:34.885012 plmef 8143 R rec 37082eae-dc7c-424c-a353-9fbb820bdc88 -2024-07-17 09:29:34.996584 2024-07-17 09:29:34.996595 plmef 8144 R rec fe8f78be-1797-4f7d-9d7a-160148c22d10 -2024-07-17 09:29:35.086932 2024-07-17 09:29:35.086938 plmef 8145 R rec 99c1d6bc-9da4-4103-8a20-23b10fd7359d -2024-07-17 09:29:35.20638 2024-07-17 09:29:35.206394 plmef 8146 R rec a66ad38b-05ef-4198-8b44-c5d5dc4a05c0 -2024-07-17 09:29:35.325067 2024-07-17 09:29:35.325086 plmef 8147 R rec df666c98-6dd9-4acc-9d25-25e702da4a56 -2024-07-17 09:29:35.436966 2024-07-17 09:29:35.436978 plmef 8148 R rec 9759e314-042c-4129-857d-1751549b4200 -2024-07-17 09:29:35.552333 2024-07-17 09:29:35.552345 plmef 8149 R rec 6a482753-cbea-4269-87c4-63e9fed2aec4 -2024-07-17 09:29:35.636217 2024-07-17 09:29:35.636231 plmef 8150 R rec 206dd821-a8f0-4704-884c-03558fa2ba7b -2024-07-17 09:29:35.738751 2024-07-17 09:29:35.738763 plmef 8151 R rec c7cdbcf3-2037-4603-914a-156a62f6c313 -2024-07-17 09:29:35.852954 2024-07-17 09:29:35.852965 plmef 8152 R rec c3c2fbe1-f677-4f35-bf4a-18659f1d691c -2024-07-17 09:29:36.089245 2024-07-17 09:29:36.089251 plmef 8153 R rec d4998f79-8676-4ce6-b0fa-6e23034d2025 -2024-07-17 09:29:36.162323 2024-07-17 09:29:36.162335 plmef 8154 R rec cb603d71-3bef-4343-9d51-fe649118c848 -2024-07-17 09:29:36.259768 2024-07-17 09:29:36.259777 plmef 8155 R rec ffd72bfb-8d34-4bd2-a093-5cd299dbea0d -2024-07-17 09:29:36.335733 2024-07-17 09:29:36.335744 plmef 8156 R rec c43c7426-e013-46a9-8b0b-7f5e3391837d -2024-07-17 09:29:36.559478 2024-07-17 09:29:36.55949 plmef 8157 R rec 8bd0b8ab-68f1-4b1f-87f7-8c69ad21373b -2024-07-17 09:29:36.652541 2024-07-17 09:29:36.652551 plmef 8158 R rec 7bd27136-0845-4614-9b6b-bf9157b67a83 -2024-07-17 09:29:36.753096 2024-07-17 09:29:36.753111 plmef 8159 R rec 5031e719-21be-40c1-abdf-13d8e0ee4c48 -2024-07-17 09:29:36.960603 2024-07-17 09:29:36.960614 plmef 8160 R rec d07b42b0-f3db-4a5a-88ec-ef14ffcd2cfc -2024-07-17 09:29:37.15016 2024-07-17 09:29:37.150165 plmef 8161 R rec 2d8e7dd0-959e-4632-8913-4416ec14eac7 -2024-07-17 09:29:37.24662 2024-07-17 09:29:37.246631 plmef 8162 R rec 455f7c3b-128d-4312-a06f-e6f9f9d68a66 -2024-07-17 09:29:37.402592 2024-07-17 09:29:37.402604 plmef 8163 R rec 2ff35469-cdb1-4cfd-ba3b-7ae8aa31d328 -2024-07-17 09:29:37.673207 2024-07-17 09:29:37.67322 plmef 8164 R rec a04df205-57f4-4ffa-ae61-1fdccc5b5c52 -2024-07-17 09:29:37.772713 2024-07-17 09:29:37.772724 plmef 8165 R rec ad36d40d-cf2f-40d6-93e8-dc47e71b234e -2024-07-17 09:29:37.886181 2024-07-17 09:29:37.886193 plmef 8166 R rec d8e7ad44-2cb3-41ac-9671-9d9cd9025454 -2024-07-17 09:29:38.007534 2024-07-17 09:29:38.00755 plmef 8167 R rec db7e2b57-4f8b-4080-89bb-e31e5a74f5af -2024-07-17 09:29:38.106834 2024-07-17 09:29:38.106845 plmef 8168 R rec ed3a5184-38a9-4df6-b4a3-bbb5f47df012 -2024-07-17 09:29:38.173836 2024-07-17 09:29:38.173841 plmef 8169 R rec 27ca584c-035a-489a-8375-bfa4adb1ce59 -2024-07-17 09:29:38.221659 2024-07-17 09:29:38.221664 plmef 8170 R rec d528c91f-9c12-4438-b723-0d0baa301c7b -2024-07-17 09:29:38.296086 2024-07-17 09:29:38.296099 plmef 8171 R rec a9a4b9ce-7aa0-4ac9-8dc8-ed1c83ad3979 -2024-07-17 09:29:38.394132 2024-07-17 09:29:38.394143 plmef 8172 R rec fec74270-59e7-432e-b2d2-f7443ee42d37 -2024-07-17 09:29:38.496372 2024-07-17 09:29:38.496382 plmef 8173 R rec a92cedd3-36fb-4947-b661-7262f16cac9f -2024-07-17 09:29:38.593356 2024-07-17 09:29:38.593373 plmef 8174 R rec 902febd9-58e2-4c46-911a-3d504448e9a0 -2024-07-17 09:29:38.69359 2024-07-17 09:29:38.693603 plmef 8175 R rec 4531fe51-6440-43a6-8f46-30d036febbb4 -2024-07-17 09:29:38.771303 2024-07-17 09:29:38.771319 plmef 8176 R rec ffe9d265-c9ff-4e76-8e7a-b2b5f81f34c0 -2024-07-17 09:29:38.886833 2024-07-17 09:29:38.886845 plmef 8177 R rec 96512d62-d3c5-4bea-a711-3cc19c8b7c15 -2024-07-17 09:29:39.003047 2024-07-17 09:29:39.003059 plmef 8178 R rec aa94dc53-153c-4026-bb42-4547f7b1c1d0 -2024-07-17 09:29:39.119097 2024-07-17 09:29:39.119108 plmef 8179 R rec 8ca3c94e-5b3c-4673-a84b-d18be2768b3a -2024-07-17 09:29:39.207346 2024-07-17 09:29:39.207351 plmef 8180 R rec 3397dd62-e54d-48aa-b733-ba358db9bbd8 -2024-07-17 09:29:39.267594 2024-07-17 09:29:39.267606 plmef 8181 R rec 0b2d2bbc-980b-426f-b11f-45b21d5fb2d8 -2024-07-17 09:29:39.356759 2024-07-17 09:29:39.356774 plmef 8182 R rec cb99a80f-5e7e-4073-b7ca-829d9600abe2 -2024-07-17 09:29:39.456884 2024-07-17 09:29:39.456896 plmef 8183 R rec b3587eeb-8532-431e-b34b-1fd0e265796d -2024-07-17 09:29:39.567302 2024-07-17 09:29:39.567313 plmef 8184 R rec f6da70bf-9872-4055-8b60-14c50303ab34 -2024-07-17 09:29:39.688491 2024-07-17 09:29:39.688502 plmef 8185 R rec 3833f914-c058-4c55-bc93-15e41cd0e329 -2024-07-17 09:29:39.807142 2024-07-17 09:29:39.807154 plmef 8186 R rec 4607e25f-f209-4b91-8cfe-e08f53eb40a4 -2024-07-17 09:29:39.923226 2024-07-17 09:29:39.923236 plmef 8187 R rec 5734600a-9a9c-4925-9e36-a62b7dc9fa7e -2024-07-17 09:29:40.022948 2024-07-17 09:29:40.02296 plmef 8188 R rec 5ff7ca21-aa8c-4370-af95-ea3a64080a49 -2024-07-17 09:29:40.133119 2024-07-17 09:29:40.133132 plmef 8189 R rec 48f06339-c550-415a-837c-e37d253a3600 -2024-07-17 09:29:40.209841 2024-07-17 09:29:40.209847 plmef 8190 R rec 0f57eadf-acdb-4c11-90d4-eeee2bd12fa1 -2024-07-17 09:29:40.264452 2024-07-17 09:29:40.264458 plmef 8191 R rec cf389d94-75d7-4cc2-9eba-93c6a02a6248 -2024-07-17 09:29:40.343156 2024-07-17 09:29:40.343162 plmef 8192 R rec 192f8cb0-06ff-48c6-85e7-5bbed1ab07e3 -2024-07-17 09:29:40.440488 2024-07-17 09:29:40.440499 plmef 8193 R rec cf495513-c427-4fe1-aaa5-0ff514cbe70f -2024-07-17 09:29:40.553722 2024-07-17 09:29:40.553733 plmef 8194 R rec 4b394770-d98d-4986-9ba4-2c961e90b846 -2024-07-17 09:29:40.653827 2024-07-17 09:29:40.653838 plmef 8195 R rec b10792ee-c0af-44fc-88e7-84223e0a98ab -2024-07-17 09:29:40.777282 2024-07-17 09:29:40.777299 plmef 8196 R rec 5e594b52-980e-43f1-9723-19fd9dc01ed9 -2024-07-17 09:29:40.891986 2024-07-17 09:29:40.89203 plmef 8197 R rec 9a841c07-7fb6-437e-bb7a-1d88cd15f8b9 -2024-07-17 09:29:41.006362 2024-07-17 09:29:41.006374 plmef 8198 R rec 2bffdbef-fb74-47c6-96e2-07a42d326708 -2024-07-17 09:29:41.112004 2024-07-17 09:29:41.112015 plmef 8199 R rec c73f3405-c301-4047-b411-b77b8bcaa6b6 -2024-07-17 09:29:41.208968 2024-07-17 09:29:41.20898 plmef 8200 R rec c03719a8-1200-43a8-9858-97ca77dbda86 -2024-07-17 09:29:41.270897 2024-07-17 09:29:41.270903 plmef 8201 R rec a465f53b-b414-44f2-95e1-de4119d2ccd5 -2024-07-17 09:29:41.32956 2024-07-17 09:29:41.329566 plmef 8202 R rec d1ee7dd4-8b30-4886-bfdc-448c6d3b16ed -2024-07-17 09:29:41.410788 2024-07-17 09:29:41.410799 plmef 8203 R rec 6a16bad5-b3d9-4b18-8e70-b04d39971947 -2024-07-17 09:29:41.53917 2024-07-17 09:29:41.539179 plmef 8204 R rec 87288845-9cd2-4b9b-bf55-c3f7553326ec -2024-07-17 09:29:41.654192 2024-07-17 09:29:41.654203 plmef 8205 R rec 10d22822-a6d7-4541-92c9-60dc916148f0 -2024-07-17 09:29:41.779441 2024-07-17 09:29:41.779453 plmef 8206 R rec 66c76f56-bf3c-468d-a358-853e83a4f076 -2024-07-17 09:29:41.894754 2024-07-17 09:29:41.89479 plmef 8207 R rec 814b0980-6751-440e-b76e-a3cfede61225 -2024-07-17 09:29:41.997069 2024-07-17 09:29:41.997079 plmef 8208 R rec 51746cf7-1dd4-4c0a-b6fb-f87c67a4e8f2 -2024-07-17 09:29:42.104273 2024-07-17 09:29:42.104283 plmef 8209 R rec eed21303-7876-4e4b-b435-e57820e43a1e -2024-07-17 09:29:42.229775 2024-07-17 09:29:42.22978 plmef 8210 R rec 51bf08ba-b36f-4c0d-bcf7-19ca2c9f8024 -2024-07-17 09:29:42.283181 2024-07-17 09:29:42.283187 plmef 8211 R rec a04a6045-709a-4536-a11f-a84d4178b380 -2024-07-17 09:29:42.332943 2024-07-17 09:29:42.332948 plmef 8212 R rec 463b6052-6fca-4f13-8a9e-f64feaa242b0 -2024-07-17 09:29:42.399584 2024-07-17 09:29:42.399596 plmef 8213 R rec 6394295f-6bb2-4f75-9c0d-99e28cc86552 -2024-07-17 09:29:42.494934 2024-07-17 09:29:42.494939 plmef 8214 R rec 4c42e16f-3b2a-4b79-9562-4cd8d0bc1c9e -2024-07-17 09:29:42.592637 2024-07-17 09:29:42.592648 plmef 8215 R rec a7c95de1-2248-4811-84d6-42ce513f4491 -2024-07-17 09:29:42.673654 2024-07-17 09:29:42.673667 plmef 8216 R rec 36d9bd6a-7fe9-405d-a28f-26f7ef53440c -2024-07-17 09:29:42.762876 2024-07-17 09:29:42.762891 plmef 8217 R rec 854dcdd9-b727-4422-8365-55cf69feb803 -2024-07-17 09:29:42.861992 2024-07-17 09:29:42.862007 plmef 8218 R rec 9b2c5bad-8faf-48a5-bb23-d6d87ded414e -2024-07-17 09:29:42.964711 2024-07-17 09:29:42.964728 plmef 8219 R rec 90cab630-44e2-434e-b0e4-9f27d429a3fb -2024-07-17 09:29:43.059282 2024-07-17 09:29:43.059294 plmef 8220 R rec 80aa20b9-eff0-4415-8794-448f4d33f4fe -2024-07-17 09:29:43.153568 2024-07-17 09:29:43.15358 plmef 8221 R rec 62458552-b7d4-45d7-9308-ed45831817f3 -2024-07-17 09:29:43.272902 2024-07-17 09:29:43.272908 plmef 8222 R rec 08024bc1-372e-4661-9abf-74d36d02b0ea -2024-07-17 09:29:43.327957 2024-07-17 09:29:43.327963 plmef 8223 R rec 030a24b7-0bb6-42a0-bba8-13cf46ce1d64 -2024-07-17 09:29:43.397994 2024-07-17 09:29:43.398005 plmef 8224 R rec c55afe5c-59d9-4050-bd4f-5b365effcf18 -2024-07-17 09:29:43.481103 2024-07-17 09:29:43.481113 plmef 8225 R rec d2b25c74-2697-43bf-ac39-251bee1a82c0 -2024-07-17 09:29:43.580612 2024-07-17 09:29:43.580623 plmef 8226 R rec 0c30e1f9-5bb0-4f01-a0bf-403fe24e30fa -2024-07-17 09:29:43.674544 2024-07-17 09:29:43.674555 plmef 8227 R rec 44f688da-5cf7-417b-9424-fd042ad158d8 -2024-07-17 09:29:43.770889 2024-07-17 09:29:43.770902 plmef 8228 R rec 5c97e777-e03b-4d78-958e-58b69425687a -2024-07-17 09:29:43.875187 2024-07-17 09:29:43.875198 plmef 8229 R rec 599bb753-c707-4073-a0a3-b5fe16fcc1a5 -2024-07-17 09:29:43.973771 2024-07-17 09:29:43.973784 plmef 8230 R rec db8b7d85-7f91-4def-bb10-ba5fe58c859e -2024-07-17 09:29:44.077008 2024-07-17 09:29:44.077021 plmef 8231 R rec f60c3409-d113-4783-a890-e3476586159b -2024-07-17 09:29:44.175118 2024-07-17 09:29:44.175131 plmef 8232 R rec 7eda8137-b5a2-4b2e-80bf-23fb849dcb48 -2024-07-17 09:29:44.274584 2024-07-17 09:29:44.274595 plmef 8233 R rec 28c9a9b5-cd7c-4692-87ea-82a318dda5e8 -2024-07-17 09:29:44.35889 2024-07-17 09:29:44.358897 plmef 8234 R rec addc00be-8fed-45da-99e2-e857e67ef773 -2024-07-17 09:29:44.411448 2024-07-17 09:29:44.41146 plmef 8235 R rec 0ad6a859-a17e-4303-b16c-c78a9662ea68 -2024-07-17 09:29:44.527806 2024-07-17 09:29:44.527811 plmef 8236 R rec 18d736c1-d359-4a69-9df0-4c95f05ea65c -2024-07-17 09:29:44.606177 2024-07-17 09:29:44.606221 plmef 8237 R rec 636c67c4-f89b-4b6c-9a42-3c235ab03ae9 -2024-07-17 09:29:44.695948 2024-07-17 09:29:44.695958 plmef 8238 R rec 55a289e6-3458-4191-a52b-98ec4c049318 -2024-07-17 09:29:44.781301 2024-07-17 09:29:44.781314 plmef 8239 R rec 37fe7890-c3f8-4746-abdd-8c102286e77c -2024-07-17 09:29:44.896437 2024-07-17 09:29:44.896448 plmef 8240 R rec 61c5f272-4771-4f58-a68b-6daa20c87c1f -2024-07-17 09:29:44.99299 2024-07-17 09:29:44.993001 plmef 8241 R rec 8539ee6d-1f6e-4676-962c-bbc96c539042 -2024-07-17 09:29:45.094716 2024-07-17 09:29:45.094727 plmef 8242 R rec 1808fd42-72e2-4688-a1dd-f2dad94bbb69 -2024-07-17 09:29:45.206643 2024-07-17 09:29:45.206656 plmef 8243 R rec 7715c4dd-2116-47ac-801d-6fe425f26d1f -2024-07-17 09:29:45.302067 2024-07-17 09:29:45.302103 plmef 8244 R rec 31a84031-b9da-4f49-b94d-d44e2d6d6401 -2024-07-17 09:29:45.389501 2024-07-17 09:29:45.389507 plmef 8245 R rec e0055a89-cc87-4978-b12f-175f02e81e66 -2024-07-17 09:29:45.478468 2024-07-17 09:29:45.478474 plmef 8246 R rec 9c44f72e-73f8-4516-ada1-9294e39a5db4 -2024-07-17 09:29:45.574187 2024-07-17 09:29:45.574226 plmef 8247 R rec 134aafd4-c9b3-4471-bf81-052dd1f8dc60 -2024-07-17 09:29:45.700143 2024-07-17 09:29:45.700149 plmef 8248 R rec fd946dcb-0f3b-4f48-8196-91cbe12d319e -2024-07-17 09:29:45.824618 2024-07-17 09:29:45.824624 plmef 8249 R rec b92c23fa-5256-42d9-b0ff-a8198c0dcf82 -2024-07-17 09:29:45.919613 2024-07-17 09:29:45.919624 plmef 8250 R rec 4667c9c4-80f8-44a7-a44a-4dabfaca7a8e -2024-07-17 09:29:46.026667 2024-07-17 09:29:46.026678 plmef 8251 R rec 5a54d7d2-22b7-4f6f-b204-1d37dadc3fe8 -2024-07-17 09:29:46.133212 2024-07-17 09:29:46.133222 plmef 8252 R rec f2bbb999-fc8e-4864-b81b-438a43352ae2 -2024-07-17 09:29:46.251547 2024-07-17 09:29:46.251707 plmef 8253 R rec 0d27f153-9496-4919-b666-9b2d120f107f -2024-07-17 09:29:46.34812 2024-07-17 09:29:46.348132 plmef 8254 R rec 3c09aeab-28bd-441f-92e7-26a99ee6d9f5 -2024-07-17 09:29:46.401433 2024-07-17 09:29:46.401438 plmef 8255 R rec 5a0f8509-690b-42dc-8f04-ea4bcf81114d -2024-07-17 09:29:46.448463 2024-07-17 09:29:46.448469 plmef 8256 R rec c956b85c-ece1-44df-977f-ab69e41e2cf1 -2024-07-17 09:29:46.529899 2024-07-17 09:29:46.52991 plmef 8257 R rec 68ce87cf-976f-495b-8ea1-892c28e591e2 -2024-07-17 09:29:46.623265 2024-07-17 09:29:46.623278 plmef 8258 R rec dc4130db-9d4e-43c6-86fe-8bbb9566c49f -2024-07-17 09:29:46.707355 2024-07-17 09:29:46.707418 plmef 8259 R rec ccf77863-245d-401f-b435-ec51fde5d78e -2024-07-17 09:29:46.815485 2024-07-17 09:29:46.815496 plmef 8260 R rec d3e5deec-b9a7-4fee-80df-0d5d0b274505 -2024-07-17 09:29:46.921749 2024-07-17 09:29:46.921759 plmef 8261 R rec f165fd3e-82a5-4905-bf3c-b3274ba3e443 -2024-07-17 09:29:47.047364 2024-07-17 09:29:47.047375 plmef 8262 R rec f5a5c3ff-b0a0-4bae-86db-19ceae4630f5 -2024-07-17 09:29:47.147741 2024-07-17 09:29:47.147753 plmef 8263 R rec 2c219e3a-b2a0-4ec9-bfcf-366ac4fc1ba4 -2024-07-17 09:29:47.256262 2024-07-17 09:29:47.256273 plmef 8264 R rec 46d8654f-bd31-424a-be34-9627b7bda2ba -2024-07-17 09:29:47.366522 2024-07-17 09:29:47.366528 plmef 8265 R rec 12d13925-739f-4c2f-ba34-d805fd0a1b5d -2024-07-17 09:29:47.420317 2024-07-17 09:29:47.420322 plmef 8266 R rec b690aa26-f9e2-4aed-a514-eadd3fd343f0 -2024-07-17 09:29:47.481742 2024-07-17 09:29:47.481748 plmef 8267 R rec 95b5d79d-af37-4933-9d94-9529feec48e2 -2024-07-17 09:29:47.583885 2024-07-17 09:29:47.583896 plmef 8268 R rec 8aa366fe-703c-4fa6-8e3e-877ce7f82db9 -2024-07-17 09:29:47.699879 2024-07-17 09:29:47.69989 plmef 8269 R rec 6412979e-09f7-4d3b-9efb-652e99674fdb -2024-07-17 09:29:47.805667 2024-07-17 09:29:47.805678 plmef 8270 R rec bf467786-8a4a-4637-b185-f5ba7a19b623 -2024-07-17 09:29:47.910933 2024-07-17 09:29:47.910944 plmef 8271 R rec 76ef558e-dc92-481a-8cce-9f2542fcfeca -2024-07-17 09:29:48.014418 2024-07-17 09:29:48.014434 plmef 8272 R rec a0863cc4-eb5c-455d-8985-e1391ff30de8 -2024-07-17 09:29:48.131365 2024-07-17 09:29:48.131376 plmef 8273 R rec 508daa05-a6ec-41af-b7a6-861998b5cd4d -2024-07-17 09:29:48.232587 2024-07-17 09:29:48.232593 plmef 8274 R rec 6cbbb1ee-6c5f-473b-8887-4d655ce3afe7 -2024-07-17 09:29:48.321699 2024-07-17 09:29:48.321712 plmef 8275 R rec f0939abe-f6ee-4b86-8831-6e8ad8239434 -2024-07-17 09:29:48.404687 2024-07-17 09:29:48.404692 plmef 8276 R rec 47524b92-b90a-4299-a7e7-50828d5c85da -2024-07-17 09:29:48.456116 2024-07-17 09:29:48.456122 plmef 8277 R rec 7c3fde12-e7d0-4273-ac7c-81c638bb9181 -2024-07-17 09:29:48.537476 2024-07-17 09:29:48.537486 plmef 8278 R rec 581085d6-2f73-4fe2-96bd-24b823a82d17 -2024-07-17 09:29:48.635097 2024-07-17 09:29:48.635108 plmef 8279 R rec 61d19827-a80f-4192-bad9-db683ca217c0 -2024-07-17 09:29:48.731239 2024-07-17 09:29:48.73125 plmef 8280 R rec d94063ef-aa4d-436c-a347-566ebc328ba2 -2024-07-17 09:29:48.828922 2024-07-17 09:29:48.828937 plmef 8281 R rec 2e85e77c-ed89-4544-bf7a-61d61f7a64d8 -2024-07-17 09:29:48.922242 2024-07-17 09:29:48.922254 plmef 8282 R rec 682d8422-582c-4396-bb3d-4656861d747c -2024-07-17 09:29:49.004402 2024-07-17 09:29:49.004412 plmef 8283 R rec d4c503b0-af33-4206-bcbe-d5659d34457d -2024-07-17 09:29:49.096816 2024-07-17 09:29:49.096826 plmef 8284 R rec 49e83a0a-fbfd-4b6b-b9c6-385dba590eb1 -2024-07-17 09:29:49.199262 2024-07-17 09:29:49.199268 plmef 8285 R rec 727f9ff4-12b9-469f-b7bc-22d71b5c375e -2024-07-17 09:29:49.297309 2024-07-17 09:29:49.297325 plmef 8286 R rec e5e8a2fc-46a3-4479-a09c-74b2591420a4 -2024-07-17 09:29:49.402891 2024-07-17 09:29:49.40293 plmef 8287 R rec 6cb8a186-d4e6-485b-ae57-eca8cbe39823 -2024-07-17 09:29:49.48116 2024-07-17 09:29:49.481204 plmef 8288 R rec fc982b1c-ea76-4198-bf71-91a49399114d -2024-07-17 09:29:49.559639 2024-07-17 09:29:49.559652 plmef 8289 R rec 801a49c7-8de7-45ab-8abf-a76834eda0d4 -2024-07-17 09:29:49.650067 2024-07-17 09:29:49.650079 plmef 8290 R rec 9055687a-5d36-4024-91c9-1381a0682573 -2024-07-17 09:29:49.744111 2024-07-17 09:29:49.744121 plmef 8291 R rec 379bfa73-5e86-418a-a321-7196eb7bc692 -2024-07-17 09:29:49.834208 2024-07-17 09:29:49.834219 plmef 8292 R rec af595d25-d44d-4ed1-9bba-e96dc078f7c1 -2024-07-17 09:29:49.982027 2024-07-17 09:29:49.982038 plmef 8293 R rec ad7ffbdf-dcdd-48de-a5ca-bfe623546a9f -2024-07-17 09:29:50.085213 2024-07-17 09:29:50.085223 plmef 8294 R rec 442f2c0c-9597-4c4f-acae-176b49247156 -2024-07-17 09:29:50.189132 2024-07-17 09:29:50.189143 plmef 8295 R rec 05236d78-0977-4a38-9716-bf07c363bae5 -2024-07-17 09:29:50.286848 2024-07-17 09:29:50.286861 plmef 8296 R rec 381d308a-1a85-4474-8edd-25484305b970 -2024-07-17 09:29:50.396772 2024-07-17 09:29:50.396784 plmef 8297 R rec 5f9f87ae-28ef-475d-8d0b-a9a7abb37ed6 -2024-07-17 09:29:50.490782 2024-07-17 09:29:50.490789 plmef 8298 R rec 47c678cf-de10-4852-8dc9-fb5fb1ec137e -2024-07-17 09:29:50.54853 2024-07-17 09:29:50.548542 plmef 8299 R rec fdf7e1b1-e392-497d-81e1-905ab5b43b61 -2024-07-17 09:29:50.660688 2024-07-17 09:29:50.660699 plmef 8300 R rec 39e17ace-aeb4-40cf-b7d6-0199c382a96f -2024-07-17 09:29:50.773462 2024-07-17 09:29:50.773471 plmef 8301 R rec 1b96229f-4456-4bd5-924d-4956f98ef0bd -2024-07-17 09:29:50.988861 2024-07-17 09:29:50.988886 plmef 8302 R rec 161cb5b2-8718-42f7-8bcd-1ad183b9de26 -2024-07-17 09:29:51.109431 2024-07-17 09:29:51.109442 plmef 8303 R rec 337ba210-7cdf-464f-b934-7e1a8b382026 -2024-07-17 09:29:51.212462 2024-07-17 09:29:51.212472 plmef 8304 R rec 45272a20-4f69-4878-bc48-c1548f4722a2 -2024-07-17 09:29:51.334549 2024-07-17 09:29:51.334559 plmef 8305 R rec f45bb8b8-62ae-47b1-b6ce-4fce803eed23 -2024-07-17 09:29:51.463405 2024-07-17 09:29:51.463416 plmef 8306 R rec bcfcae75-3a7b-47cd-a10d-535e1e46c83f -2024-07-17 09:29:51.543969 2024-07-17 09:29:51.543974 plmef 8307 R rec 61a14950-17de-4fcc-8ca6-b526b2c3aa87 -2024-07-17 09:29:51.630917 2024-07-17 09:29:51.630928 plmef 8308 R rec f126961a-8adb-45a7-8594-a30adfd5eed0 -2024-07-17 09:29:51.706829 2024-07-17 09:29:51.706842 plmef 8309 R rec 3b9adc23-4d25-4a00-ab3e-337ff074d21f -2024-07-17 09:29:51.800685 2024-07-17 09:29:51.800702 plmef 8310 R rec c0401d39-e3c5-4ca9-a862-8380187b76d0 -2024-07-17 09:29:51.923865 2024-07-17 09:29:51.923877 plmef 8311 R rec a874b311-ca3d-4a93-849d-5a022418d6cc -2024-07-17 09:29:52.031478 2024-07-17 09:29:52.031489 plmef 8312 R rec bc168944-928b-4fea-997f-e230255adc9c -2024-07-17 09:29:52.152809 2024-07-17 09:29:52.15282 plmef 8313 R rec 8dd4f5bb-a927-457b-bf61-ef3edc7d2147 -2024-07-17 09:29:52.273417 2024-07-17 09:29:52.273428 plmef 8314 R rec 7d1d8cbc-37e9-4ac4-9512-94dad46e98ee -2024-07-17 09:29:52.390981 2024-07-17 09:29:52.391004 plmef 8315 R rec d2ed2ff1-4d95-4595-8489-50e8f7510278 -2024-07-17 09:29:52.512553 2024-07-17 09:29:52.512564 plmef 8316 R rec 3dcc5af4-5079-47fc-86cb-eb50b3922962 -2024-07-17 09:29:52.580225 2024-07-17 09:29:52.580231 plmef 8317 R rec aee1833d-540d-4396-8201-bc492a7d5c88 -2024-07-17 09:29:52.753103 2024-07-17 09:29:52.753115 plmef 8318 R rec d4057252-fb7a-479e-8792-a33aedda9c7a -2024-07-17 09:29:52.851326 2024-07-17 09:29:52.851341 plmef 8319 R rec d24e1a0d-5940-4aae-bc96-8ca207baa051 -2024-07-17 09:29:52.949856 2024-07-17 09:29:52.949867 plmef 8320 R rec 9d087c12-4268-47cb-a77f-18fcc84a2f49 -2024-07-17 09:29:53.041674 2024-07-17 09:29:53.041679 plmef 8321 R rec 38c06eac-b89f-4e27-84d7-c9c99ba55067 -2024-07-17 09:29:53.12727 2024-07-17 09:29:53.127282 plmef 8322 R rec d707ae11-17a8-494a-be3c-8b734a0ce658 -2024-07-17 09:29:53.250419 2024-07-17 09:29:53.250431 plmef 8323 R rec 9ba7647c-60ff-4e59-8207-ff3aa34396f4 -2024-07-17 09:29:53.354845 2024-07-17 09:29:53.354855 plmef 8324 R rec 4250b683-8eed-485b-8151-05b8e9774e94 -2024-07-17 09:29:53.484756 2024-07-17 09:29:53.484772 plmef 8325 R rec 5dfbf293-1e2c-4bb5-b607-2344f776a86a -2024-07-17 09:29:53.579019 2024-07-17 09:29:53.579024 plmef 8326 R rec ede66d81-2ed1-448a-a141-c23b1464b2d8 -2024-07-17 09:29:53.675586 2024-07-17 09:29:53.675598 plmef 8327 R rec 69c4d820-3c9b-4fcc-80cf-6acf87f080f9 -2024-07-17 09:29:53.780468 2024-07-17 09:29:53.780474 plmef 8328 R rec 70b4086d-4202-4236-b05e-0cf420d5861f -2024-07-17 09:29:53.849345 2024-07-17 09:29:53.849355 plmef 8329 R rec 74633545-e556-41fc-b3e7-543789187fa8 -2024-07-17 09:29:53.977778 2024-07-17 09:29:53.977783 plmef 8330 R rec c4970b17-c81a-40ac-8c9a-55aae284f157 -2024-07-17 09:29:54.07668 2024-07-17 09:29:54.076691 plmef 8331 R rec 98fd5d6e-4cd9-437b-88ea-0cc9c763e736 -2024-07-17 09:29:54.18248 2024-07-17 09:29:54.182491 plmef 8332 R rec 2e9c6763-3e06-4a33-99c1-f12a658eb5fd -2024-07-17 09:29:54.308289 2024-07-17 09:29:54.308302 plmef 8333 R rec 75a6fe3e-c005-4387-b07f-4c350ce27d04 -2024-07-17 09:29:54.405082 2024-07-17 09:29:54.405094 plmef 8334 R rec e0cf14d8-75cb-4f3d-8830-e8a9f5d727e4 -2024-07-17 09:29:54.51285 2024-07-17 09:29:54.512865 plmef 8335 R rec 8d72061f-3618-4ab1-8ff1-32b198e2f408 -2024-07-17 09:29:54.607411 2024-07-17 09:29:54.607415 plmef 8336 R rec 53a4c8ae-8406-4361-b4a9-6a8e55efb188 -2024-07-17 09:29:54.661896 2024-07-17 09:29:54.661902 plmef 8337 R rec 8aa402f9-f6d7-4eb1-ab12-4ce892d0a1d3 -2024-07-17 09:29:54.77345 2024-07-17 09:29:54.773459 plmef 8338 R rec 6969bd0e-a90c-4bc6-9099-bbfe2a95cdf4 -2024-07-17 09:29:54.875082 2024-07-17 09:29:54.875095 plmef 8339 R rec 3f15a93a-edce-4397-9dd3-7138bfed35c1 -2024-07-17 09:29:54.96764 2024-07-17 09:29:54.967651 plmef 8340 R rec 3b81c02e-6c97-457d-a862-66882c9358a3 -2024-07-17 09:29:55.071817 2024-07-17 09:29:55.071828 plmef 8341 R rec 808d97d6-f491-4062-b174-e80314113ebe -2024-07-17 09:29:55.234411 2024-07-17 09:29:55.234427 plmef 8342 R rec 6721ba2f-b57f-43a2-a4bb-2278079ae8bd -2024-07-17 09:29:55.437474 2024-07-17 09:29:55.437485 plmef 8343 R rec 3450c111-fc4a-4de4-8be8-7d8c858adfff -2024-07-17 09:29:55.628236 2024-07-17 09:29:55.628241 plmef 8344 R rec 10c38e34-34c4-4d5e-bfed-2cf38e81803d -2024-07-17 09:29:55.772906 2024-07-17 09:29:55.772916 plmef 8345 R rec fc8ce7cd-cadb-429d-9e3e-778c8de16848 -2024-07-17 09:29:55.864349 2024-07-17 09:29:55.864362 plmef 8346 R rec 0c5e8f49-b7e7-400c-a3c2-26aaa011e904 -2024-07-17 09:29:55.980255 2024-07-17 09:29:55.980268 plmef 8347 R rec 7870b625-964f-4d72-99a6-742a1f653745 -2024-07-17 09:29:56.081921 2024-07-17 09:29:56.081933 plmef 8348 R rec d35071c1-396f-4966-a04d-c1e8bacfd3e7 -2024-07-17 09:29:56.171517 2024-07-17 09:29:56.171529 plmef 8349 R rec 078bba56-040c-4871-9909-c4064163c0f4 -2024-07-17 09:29:56.263488 2024-07-17 09:29:56.263499 plmef 8350 R rec 5f50ce6e-135e-487b-bd44-04e8ec86fa2e -2024-07-17 09:29:56.355649 2024-07-17 09:29:56.355661 plmef 8351 R rec c089d8e6-cc22-4d87-aba3-001e533b82be -2024-07-17 09:29:56.460366 2024-07-17 09:29:56.460377 plmef 8352 R rec aba60ff0-ab91-4980-ad43-483dd4b0019c -2024-07-17 09:29:56.551691 2024-07-17 09:29:56.551703 plmef 8353 R rec 5f59dfe9-d8c7-4a35-9622-a82a5cea67c4 -2024-07-17 09:29:56.664869 2024-07-17 09:29:56.664874 plmef 8354 R rec 767fc20b-e7a1-4f88-977d-9b3dfc341611 -2024-07-17 09:29:56.716018 2024-07-17 09:29:56.716022 plmef 8355 R rec 815abc06-750f-4d65-80a1-8cbda66490e9 -2024-07-17 09:29:56.795775 2024-07-17 09:29:56.795785 plmef 8356 R rec faeaed5c-ea36-4c4a-afbc-7d0546bf8c03 -2024-07-17 09:29:56.889701 2024-07-17 09:29:56.889713 plmef 8357 R rec 8e859311-f585-4081-8787-7894c504950a -2024-07-17 09:29:56.986522 2024-07-17 09:29:56.986532 plmef 8358 R rec 9496d19d-41f0-4e54-ac76-924553a4a8f5 -2024-07-17 09:29:57.083953 2024-07-17 09:29:57.083968 plmef 8359 R rec 023e3c86-7ee6-4b40-aa79-ab83ca9b4d44 -2024-07-17 09:29:57.182422 2024-07-17 09:29:57.182433 plmef 8360 R rec bbe9ec1e-bdfd-4e3e-ac6c-dd775c3b24f1 -2024-07-17 09:29:57.272982 2024-07-17 09:29:57.272993 plmef 8361 R rec 249db53e-2afe-42da-b4d9-77a9a3498a48 -2024-07-17 09:29:57.370805 2024-07-17 09:29:57.370817 plmef 8362 R rec dd050f5d-8dfc-4e9b-9d20-030d23cc8234 -2024-07-17 09:29:57.469196 2024-07-17 09:29:57.469207 plmef 8363 R rec f533692a-8fac-454d-bf77-b0b9ac86a63e -2024-07-17 09:29:57.569559 2024-07-17 09:29:57.569568 plmef 8364 R rec 76517b36-f24d-4b70-bf85-be8f95f1b937 -2024-07-17 09:29:57.670751 2024-07-17 09:29:57.670761 plmef 8365 R rec 52104667-c2f2-4d83-9032-b7acf57752e8 -2024-07-17 09:29:57.751551 2024-07-17 09:29:57.751557 plmef 8366 R rec f50fdccc-ab71-4be8-bcd8-ebe98c6355af -2024-07-17 09:29:57.821327 2024-07-17 09:29:57.82134 plmef 8367 R rec 43689e6e-5170-4c61-ac4a-fb8b964027a5 -2024-07-17 09:29:57.907548 2024-07-17 09:29:57.90756 plmef 8368 R rec 7d24fd98-0df7-4275-b55b-3cc05b40ffff -2024-07-17 09:29:58.001658 2024-07-17 09:29:58.001674 plmef 8369 R rec b3227d97-02a8-4909-b195-bada186669fd -2024-07-17 09:29:58.109732 2024-07-17 09:29:58.109771 plmef 8370 R rec 924ef3b5-5257-4ffa-a931-dd4b758e99b2 -2024-07-17 09:29:58.221982 2024-07-17 09:29:58.221995 plmef 8371 R rec 80367c57-0aef-4a28-9e87-5f1400dd42a9 -2024-07-17 09:29:58.306848 2024-07-17 09:29:58.306859 plmef 8372 R rec d3ade9b6-e589-44f8-9845-2c96bfecba59 -2024-07-17 09:29:58.398725 2024-07-17 09:29:58.398736 plmef 8373 R rec e9c84ed8-f7c9-4e06-8a26-46890d9ca63f -2024-07-17 09:29:58.490498 2024-07-17 09:29:58.490509 plmef 8374 R rec cd0f9e01-ffde-4379-9310-ee2aa125348a -2024-07-17 09:29:58.581115 2024-07-17 09:29:58.581127 plmef 8375 R rec b7c2c9b7-fedf-4e85-9dfe-47f418e268b6 -2024-07-17 09:29:58.67501 2024-07-17 09:29:58.675023 plmef 8376 R rec dec5f104-3281-4947-a592-05cb2eb4bf0f -2024-07-17 09:29:58.769471 2024-07-17 09:29:58.769476 plmef 8377 R rec c2b97749-d6f4-4138-986f-9b3125ee5799 -2024-07-17 09:29:58.827474 2024-07-17 09:29:58.827479 plmef 8378 R rec 0e87cf66-29e7-495f-90de-15a1eae6a81e -2024-07-17 09:29:58.926872 2024-07-17 09:29:58.926884 plmef 8379 R rec 03c13d61-e14c-4f13-83b0-5a4ee0b28f60 -2024-07-17 09:29:59.019658 2024-07-17 09:29:59.019668 plmef 8380 R rec 580d1945-8b5a-4c2c-9194-09d408d6af4e -2024-07-17 09:29:59.111507 2024-07-17 09:29:59.111519 plmef 8381 R rec 8f524f63-76c5-43ee-9fa9-43b50df852d5 -2024-07-17 09:29:59.21031 2024-07-17 09:29:59.210352 plmef 8382 R rec e787c647-2563-4bb9-b34d-fdb3f37a3988 -2024-07-17 09:29:59.294247 2024-07-17 09:29:59.294263 plmef 8383 R rec ef3cf76b-2c54-425d-abe8-af8630d8f563 -2024-07-17 09:29:59.405488 2024-07-17 09:29:59.4055 plmef 8384 R rec 6c9bd1e4-9dd1-4e85-b606-5a65b961b043 -2024-07-17 09:29:59.493361 2024-07-17 09:29:59.493375 plmef 8385 R rec fb478a35-0726-4b89-856c-0ab9b74de56a -2024-07-17 09:29:59.578732 2024-07-17 09:29:59.578745 plmef 8386 R rec 9604fbba-a430-4edd-a828-2f6cdee1ea0f -2024-07-17 09:29:59.663586 2024-07-17 09:29:59.663597 plmef 8387 R rec e5a9791b-6bf8-4e6a-b9c9-4fcbc433b4db -2024-07-17 09:29:59.751843 2024-07-17 09:29:59.751853 plmef 8388 R rec 0ed7a7b2-a1d5-4820-9721-37c0fe9e2fb3 -2024-07-17 09:29:59.807561 2024-07-17 09:29:59.807566 plmef 8389 R rec b2232e1d-1b07-4edb-93ef-1ffc09023a46 -2024-07-17 09:29:59.855677 2024-07-17 09:29:59.855682 plmef 8390 R rec 4022b611-1b63-4ed1-bc04-c0382c9ebc72 -2024-07-17 09:29:59.930597 2024-07-17 09:29:59.93061 plmef 8391 R rec 1ebc6432-2ced-480f-9108-1b7aee548573 -2024-07-17 09:30:00.028029 2024-07-17 09:30:00.028035 plmef 8392 R rec bbec8101-e248-4b3a-8747-5ff16f28b589 -2024-07-17 09:30:00.101401 2024-07-17 09:30:00.101414 plmef 8393 R rec ab50b536-c8f6-4b59-9d86-6d92d95ef734 -2024-07-17 09:30:00.203226 2024-07-17 09:30:00.20324 plmef 8394 R rec 065e39ae-dd6c-4871-9a46-7aefccdd1ec9 -2024-07-17 09:30:00.305227 2024-07-17 09:30:00.305239 plmef 8395 R rec 6086716c-8b91-43c8-80f9-a3e9958d862c -2024-07-17 09:30:00.401048 2024-07-17 09:30:00.40106 plmef 8396 R rec 5103006f-20dd-4fd3-96af-1a6376b6e377 -2024-07-17 09:30:00.49807 2024-07-17 09:30:00.498081 plmef 8397 R rec 66d9fc4b-d51f-4f80-8876-772276e07f4a -2024-07-17 09:30:00.585275 2024-07-17 09:30:00.585286 plmef 8398 R rec 154b2ed1-3309-4a69-8b4d-e0b9071ce037 -2024-07-17 09:30:00.674975 2024-07-17 09:30:00.674989 plmef 8399 R rec d11cf8f1-15d5-4367-a75b-3ebdf5064019 -2024-07-17 09:30:00.778208 2024-07-17 09:30:00.77822 plmef 8400 R rec 568742d1-9556-4d1d-9d8f-b8466c0fa752 -2024-07-17 09:30:00.850418 2024-07-17 09:30:00.850423 plmef 8401 R rec 94efc5e4-79e1-45bc-a000-bd5c4ef13f29 -2024-07-17 09:30:00.944269 2024-07-17 09:30:00.944279 plmef 8402 R rec 87fe6e6f-840b-4f67-b037-361f139049df -2024-07-17 09:30:01.038737 2024-07-17 09:30:01.038748 plmef 8403 R rec 14b6645c-7833-459e-98bb-05dd04961063 -2024-07-17 09:30:01.141344 2024-07-17 09:30:01.141391 plmef 8404 R rec 2ee7d65f-ae47-4c86-9f38-d75200c7e8a8 -2024-07-17 09:30:01.239162 2024-07-17 09:30:01.239178 plmef 8405 R rec cb477c76-9392-423f-907b-af0c17240f06 -2024-07-17 09:30:01.33797 2024-07-17 09:30:01.33798 plmef 8406 R rec c58f219a-87a0-484f-967b-af916d777f08 -2024-07-17 09:30:01.449998 2024-07-17 09:30:01.450011 plmef 8407 R rec df6bc297-a067-43cd-a6c6-97c0240a66b8 -2024-07-17 09:30:01.544107 2024-07-17 09:30:01.544156 plmef 8408 R rec 42635355-7459-4707-8d71-7ee10aeb2126 -2024-07-17 09:30:01.637774 2024-07-17 09:30:01.63779 plmef 8409 R rec 174b03c3-a9d2-4dab-89d1-b79457350694 -2024-07-17 09:30:01.743082 2024-07-17 09:30:01.743095 plmef 8410 R rec 50db04b3-705d-433c-88ad-e7a097e52bef -2024-07-17 09:30:01.859097 2024-07-17 09:30:01.859104 plmef 8411 R rec 72764a78-9c8a-42e2-aed9-ba3861dbcad3 -2024-07-17 09:30:01.904556 2024-07-17 09:30:01.904561 plmef 8412 R rec bc45cac6-6315-421a-bd63-e9eaf567989f -2024-07-17 09:30:01.962552 2024-07-17 09:30:01.962563 plmef 8413 R rec 846fe620-e11a-4d13-afa6-d55ece55ab0e -2024-07-17 09:30:02.066873 2024-07-17 09:30:02.066887 plmef 8414 R rec b52c6f77-778f-4141-97a4-72fc5cc00487 -2024-07-17 09:30:02.161486 2024-07-17 09:30:02.161502 plmef 8415 R rec 49a3b928-19a3-4d4c-b65d-20d1adae418f -2024-07-17 09:30:02.264688 2024-07-17 09:30:02.264698 plmef 8416 R rec 652c2b49-9bf3-461f-8e1d-5df4dd8b206f -2024-07-17 09:30:02.356862 2024-07-17 09:30:02.356875 plmef 8417 R rec 3e8a9b4b-db46-4b8e-bff5-af7ae8d93a94 -2024-07-17 09:30:02.438581 2024-07-17 09:30:02.438593 plmef 8418 R rec e489915d-de5f-458c-9c26-ffe15165440b -2024-07-17 09:30:02.553269 2024-07-17 09:30:02.55328 plmef 8419 R rec 826b6dc2-b573-4726-8e0b-b4479d3e42dd -2024-07-17 09:30:02.639588 2024-07-17 09:30:02.639603 plmef 8420 R rec 3265d47f-ae10-4c77-a506-e03061d8af83 -2024-07-17 09:30:02.757465 2024-07-17 09:30:02.757482 plmef 8421 R rec 4bf26cd5-6eb3-4546-a0c5-d6606b5f41de -2024-07-17 09:30:02.860954 2024-07-17 09:30:02.860968 plmef 8422 R rec edbf8296-fb84-4ed9-8964-ac21068ea83b -2024-07-17 09:30:02.921927 2024-07-17 09:30:02.921932 plmef 8423 R rec f9d284e3-1322-4c7a-afba-90c379d18569 -2024-07-17 09:30:02.972032 2024-07-17 09:30:02.972037 plmef 8424 R rec 53111fe6-5e35-4399-b74f-d594fd67e68e -2024-07-17 09:30:03.049855 2024-07-17 09:30:03.049866 plmef 8425 R rec df1291c1-2898-4dbe-aa10-329a8197b031 -2024-07-17 09:30:03.13386 2024-07-17 09:30:03.133871 plmef 8426 R rec e58c21c3-8ad5-436a-b43e-1925b580be09 -2024-07-17 09:30:03.22395 2024-07-17 09:30:03.223961 plmef 8427 R rec 9f5e7435-763a-4342-a4de-0f9d3afedb8f -2024-07-17 09:30:03.318813 2024-07-17 09:30:03.318823 plmef 8428 R rec ac64c4cd-2cac-4c68-8604-f66e7e120381 -2024-07-17 09:30:03.420036 2024-07-17 09:30:03.420048 plmef 8429 R rec 43253340-c18f-4d9a-ae8e-6a56e4142569 -2024-07-17 09:30:03.519543 2024-07-17 09:30:03.519559 plmef 8430 R rec 14c41ce3-e21c-4257-a755-4eb5f6486ca0 -2024-07-17 09:30:03.627727 2024-07-17 09:30:03.627738 plmef 8431 R rec d72940f7-950c-44c7-bc58-ea72a8b2d041 -2024-07-17 09:30:03.735377 2024-07-17 09:30:03.735389 plmef 8432 R rec 4c101c96-7cfd-4e56-8e4c-f26e85774f9f -2024-07-17 09:30:03.829769 2024-07-17 09:30:03.829781 plmef 8433 R rec 14e4558e-0ac4-452b-a8a0-92ed8240139b -2024-07-17 09:30:03.92495 2024-07-17 09:30:03.924957 plmef 8434 R rec c9783fd5-e379-4ae4-a267-ac40a1986dd7 -2024-07-17 09:30:03.977833 2024-07-17 09:30:03.977839 plmef 8435 R rec b7ddcdfd-e725-4e25-a790-e52e331fa287 -2024-07-17 09:30:04.112643 2024-07-17 09:30:04.112649 plmef 8436 R rec 1828f80e-99f5-4378-b6c7-fa36f9ba7cd9 -2024-07-17 09:30:04.169336 2024-07-17 09:30:04.169342 plmef 8437 R rec d8c5049e-59a4-4b13-8303-056166507f82 -2024-07-17 09:30:04.218613 2024-07-17 09:30:04.218619 plmef 8438 R rec dbc52786-dbf4-484b-8e41-9def9bbba9e0 -2024-07-17 09:30:04.278644 2024-07-17 09:30:04.27865 plmef 8439 R rec c6014dd5-0ee2-4708-b3ac-e42abc15a5a9 -2024-07-17 09:30:04.336556 2024-07-17 09:30:04.336561 plmef 8440 R rec e65bc728-fd45-4541-a3b9-01498d3d0f9f -2024-07-17 09:30:04.405203 2024-07-17 09:30:04.405214 plmef 8441 R rec 8a0bb939-3332-48f1-a837-a5fd71813916 -2024-07-17 09:30:04.498763 2024-07-17 09:30:04.498774 plmef 8442 R rec 53633058-d6bd-4881-a38b-f5fcf93cb35d -2024-07-17 09:30:04.584784 2024-07-17 09:30:04.584796 plmef 8443 R rec 92c71254-a8f7-4d89-a978-f26cbadf7499 -2024-07-17 09:30:04.688608 2024-07-17 09:30:04.688619 plmef 8444 R rec ba43d2de-4d98-48a7-bc47-d33cd9528503 -2024-07-17 09:30:04.7848 2024-07-17 09:30:04.784827 plmef 8445 R rec 6c5ff1b6-8afd-496d-86a7-9001d2ad698f -2024-07-17 09:30:04.883565 2024-07-17 09:30:04.883575 plmef 8446 R rec 5f653a81-5bfc-414f-9374-fe58082b7dc5 -2024-07-17 09:30:04.97878 2024-07-17 09:30:04.978785 plmef 8447 R rec d676f879-61c1-4003-92b6-95a7fada8032 -2024-07-17 09:30:05.035919 2024-07-17 09:30:05.035931 plmef 8448 R rec 5215f08d-a3f8-4971-b42c-910afb7e0ef3 -2024-07-17 09:30:05.118935 2024-07-17 09:30:05.118946 plmef 8449 R rec 7e63d4cf-d5ed-4698-bf09-a9dde3f83bf2 -2024-07-17 09:30:05.203163 2024-07-17 09:30:05.203176 plmef 8450 R rec 2d7c40e3-cbcf-46c9-938f-ca86ccb5492f -2024-07-17 09:30:05.299623 2024-07-17 09:30:05.299635 plmef 8451 R rec 039ac081-4653-4246-bc5f-6d11bdc1fdfa -2024-07-17 09:30:05.408725 2024-07-17 09:30:05.40874 plmef 8452 R rec 60388c1e-515d-4370-8c9e-dca385549ce6 -2024-07-17 09:30:05.525032 2024-07-17 09:30:05.525045 plmef 8453 R rec bea5bd5c-1be5-4fad-ac49-87f7725e3da4 -2024-07-17 09:30:05.61147 2024-07-17 09:30:05.611475 plmef 8454 R rec 6d31a6a6-1454-4581-a2f2-0f64894e5a01 -2024-07-17 09:30:05.704472 2024-07-17 09:30:05.704479 plmef 8455 R rec 0f7fcc4a-b002-49e2-b636-8934bdcc7468 -2024-07-17 09:30:05.797174 2024-07-17 09:30:05.797185 plmef 8456 R rec 2776f3c5-7e64-43b4-99dc-797f56f37b17 -2024-07-17 09:30:05.894377 2024-07-17 09:30:05.894388 plmef 8457 R rec ae5b58f2-82d8-4ea3-a1b0-7954271b7440 -2024-07-17 09:30:05.986458 2024-07-17 09:30:05.986464 plmef 8458 R rec 5d52e65c-d2fd-49ac-8c6f-f6697f6448f2 -2024-07-17 09:30:06.045335 2024-07-17 09:30:06.04534 plmef 8459 R rec 1ea2c29e-ea29-4342-813d-0976efd6be50 -2024-07-17 09:30:06.132561 2024-07-17 09:30:06.132595 plmef 8460 R rec 5a452bee-c8ab-495b-8343-fb41fe58b968 -2024-07-17 09:30:06.226125 2024-07-17 09:30:06.226136 plmef 8461 R rec dcce207a-cfab-47e0-9c4b-cd095fa05261 -2024-07-17 09:30:06.319759 2024-07-17 09:30:06.319769 plmef 8462 R rec f721813e-1378-4722-8201-9b3b34f27ea9 -2024-07-17 09:30:06.428056 2024-07-17 09:30:06.42807 plmef 8463 R rec b95c1cc2-3071-4a9b-ba91-08c5391e11c9 -2024-07-17 09:30:06.528825 2024-07-17 09:30:06.528836 plmef 8464 R rec 261630f3-ec52-4e82-8f45-9f0837de43b0 -2024-07-17 09:30:06.620549 2024-07-17 09:30:06.620561 plmef 8465 R rec 91b83910-1c2b-4b86-bed2-228d49339466 -2024-07-17 09:30:06.712827 2024-07-17 09:30:06.712838 plmef 8466 R rec 0a1f8e89-2d5b-4571-ac8d-0f1aa9ed14e2 -2024-07-17 09:30:06.814865 2024-07-17 09:30:06.814877 plmef 8467 R rec d2d39f08-6fd2-42a1-9251-46512d9158bb -2024-07-17 09:30:06.915419 2024-07-17 09:30:06.91543 plmef 8468 R rec bc1572f2-f5a0-48ce-8a88-a79ea4ebab4c -2024-07-17 09:30:07.014372 2024-07-17 09:30:07.014377 plmef 8469 R rec 00a4f1d7-916a-47ab-934f-55efab75ddfa -2024-07-17 09:30:07.064066 2024-07-17 09:30:07.064072 plmef 8470 R rec 786e0bf5-36f0-452e-a10a-43c371c77626 -2024-07-17 09:30:07.125966 2024-07-17 09:30:07.125978 plmef 8471 R rec 21eaeb2c-1189-4c21-8743-06808f7e2282 -2024-07-17 09:30:07.243647 2024-07-17 09:30:07.243658 plmef 8472 R rec 0275e38b-f60f-4617-b097-b3850df02380 -2024-07-17 09:30:07.338108 2024-07-17 09:30:07.338118 plmef 8473 R rec ed98b6d1-e269-4b95-b9c3-36343d45befb -2024-07-17 09:30:07.436141 2024-07-17 09:30:07.436156 plmef 8474 R rec fe5cb893-3f57-48e5-ab48-d40e73a2d3f8 -2024-07-17 09:30:07.535464 2024-07-17 09:30:07.5355 plmef 8475 R rec 12231b61-aa36-421c-9e8a-a2aff2f822d1 -2024-07-17 09:30:07.63141 2024-07-17 09:30:07.631428 plmef 8476 R rec 92a82d4a-c088-4742-a756-3e644429220d -2024-07-17 09:30:07.715249 2024-07-17 09:30:07.71526 plmef 8477 R rec c284d92c-67e0-47fd-af0c-6007af5491fe -2024-07-17 09:30:07.830018 2024-07-17 09:30:07.830023 plmef 8478 R rec a9702a8a-f52d-428b-b8f3-ed8cfbce5698 -2024-07-17 09:30:07.931419 2024-07-17 09:30:07.93143 plmef 8479 R rec 44f9fbdc-f2b9-4e2d-8e97-ed0fd35436c9 -2024-07-17 09:30:08.029351 2024-07-17 09:30:08.029357 plmef 8480 R rec 6323a7c5-6071-4520-8283-5aa4e80f0771 -2024-07-17 09:30:08.080768 2024-07-17 09:30:08.080774 plmef 8481 R rec 39ff41ec-597b-447f-9f7d-a04c4fcfdd9e -2024-07-17 09:30:08.137351 2024-07-17 09:30:08.13736 plmef 8482 R rec 20145413-d99d-411a-a029-8b9805049b6d -2024-07-17 09:30:08.231009 2024-07-17 09:30:08.231022 plmef 8483 R rec 0273db17-1b18-49b9-9f92-3d2b60225cfd -2024-07-17 09:30:08.32963 2024-07-17 09:30:08.32964 plmef 8484 R rec 7b9b59e0-5d5b-459d-8fc3-a99dc0a592e9 -2024-07-17 09:30:08.425732 2024-07-17 09:30:08.425746 plmef 8485 R rec eabedd87-a9d9-4dc4-b668-df71829ea9b0 -2024-07-17 09:30:08.520225 2024-07-17 09:30:08.520263 plmef 8486 R rec c09090ec-b97f-4d15-b16f-413af8be9d10 -2024-07-17 09:30:08.621785 2024-07-17 09:30:08.621796 plmef 8487 R rec 58587bef-4357-4e1b-b86b-5ab05a1e88d5 -2024-07-17 09:30:08.711963 2024-07-17 09:30:08.711979 plmef 8488 R rec e4ab8df1-225c-4c43-b0e3-c03e0d2b52d2 -2024-07-17 09:30:08.810368 2024-07-17 09:30:08.810382 plmef 8489 R rec 3136985c-15f4-4d65-837f-c6c6b860cccd -2024-07-17 09:30:08.920351 2024-07-17 09:30:08.920363 plmef 8490 R rec 5c89d5b2-5e70-4ce5-b8e0-aaadbed3a0de -2024-07-17 09:30:09.030137 2024-07-17 09:30:09.030149 plmef 8491 R rec 4c0c5d5b-31ba-4628-a650-a9b60dc1e687 -2024-07-17 09:30:09.102536 2024-07-17 09:30:09.102542 plmef 8492 R rec ef943c2b-e96d-4f77-bef1-c9ec33879fd0 -2024-07-17 09:30:09.172689 2024-07-17 09:30:09.172701 plmef 8493 R rec c4be25ac-bcf9-4251-90f4-b9be11d54f07 -2024-07-17 09:30:09.271328 2024-07-17 09:30:09.27134 plmef 8494 R rec 90e99b49-3ea2-422a-b06e-2b18f8144299 -2024-07-17 09:30:09.360704 2024-07-17 09:30:09.360715 plmef 8495 R rec ac3b55bb-1847-4c14-9636-b454262dec04 -2024-07-17 09:30:09.469144 2024-07-17 09:30:09.469154 plmef 8496 R rec 34132c00-57ef-4c4e-a6a8-a25a575851b2 -2024-07-17 09:30:09.5672 2024-07-17 09:30:09.56721 plmef 8497 R rec 41cd281f-a7f5-4fbb-976e-861e2dbf7c62 -2024-07-17 09:30:09.680535 2024-07-17 09:30:09.680562 plmef 8498 R rec 618ae54a-4b64-4b95-bd28-150e6dacd1b1 -2024-07-17 09:30:09.787929 2024-07-17 09:30:09.787944 plmef 8499 R rec 16bb29a4-5577-420f-8558-bdb9b94a426b -2024-07-17 09:30:09.887032 2024-07-17 09:30:09.887043 plmef 8500 R rec 950a9fc3-2fed-4376-aa14-6390f3d38c36 -2024-07-17 09:30:10.004235 2024-07-17 09:30:10.004245 plmef 8501 R rec 6cffe039-8140-46ee-b44a-915aea3bbd82 -2024-07-17 09:30:10.105603 2024-07-17 09:30:10.10561 plmef 8502 R rec 1324f02d-0a1e-483f-bef7-c4b761512a25 -2024-07-17 09:30:10.165637 2024-07-17 09:30:10.165643 plmef 8503 R rec 5d86075c-5425-43b5-9e9b-62e014bac9e0 -2024-07-17 09:30:10.257847 2024-07-17 09:30:10.257858 plmef 8504 R rec 84927d2e-5b5a-4423-bca7-49d550adb52c -2024-07-17 09:30:10.354204 2024-07-17 09:30:10.354215 plmef 8505 R rec 58aff95b-7acb-4472-98c4-479722c7019c -2024-07-17 09:30:10.45456 2024-07-17 09:30:10.454576 plmef 8506 R rec d22a9727-04aa-4278-9b30-306f686364c8 -2024-07-17 09:30:10.55089 2024-07-17 09:30:10.550901 plmef 8507 R rec b88bca27-0b08-4eda-a2f4-71e6f1ded10b -2024-07-17 09:30:10.661815 2024-07-17 09:30:10.661826 plmef 8508 R rec 3c75fa63-bc11-43b1-b444-7999fe980e6b -2024-07-17 09:30:10.766902 2024-07-17 09:30:10.766914 plmef 8509 R rec 9c1e4489-40cd-4f83-9011-944656f85578 -2024-07-17 09:30:10.848776 2024-07-17 09:30:10.848792 plmef 8510 R rec 18f5d1b6-73ca-4c2b-8f15-b35e48a3657a -2024-07-17 09:30:10.95099 2024-07-17 09:30:10.951 plmef 8511 R rec 159de13c-afee-4b54-bd73-849eb43cdb83 -2024-07-17 09:30:11.051615 2024-07-17 09:30:11.051626 plmef 8512 R rec 935169ad-59f6-4b52-a1b9-61fe7c03fd2c -2024-07-17 09:30:11.156514 2024-07-17 09:30:11.156519 plmef 8513 R rec f68f56bf-cd06-4c6e-ab4a-26beae6195ac -2024-07-17 09:30:11.207225 2024-07-17 09:30:11.207231 plmef 8514 R rec 4f7cc5e2-1028-4ac2-9090-840b928a8b06 -2024-07-17 09:30:11.270029 2024-07-17 09:30:11.27004 plmef 8515 R rec 7d1695bd-8baa-4cff-b266-5d84fc7b6ee6 -2024-07-17 09:30:11.370444 2024-07-17 09:30:11.370455 plmef 8516 R rec 46fa04cd-ec02-40fa-b01a-64cb008a9ca8 -2024-07-17 09:30:11.467352 2024-07-17 09:30:11.467368 plmef 8517 R rec cfd7ced2-a6ab-4039-956d-5aeeca85b2a6 -2024-07-17 09:30:11.580582 2024-07-17 09:30:11.580598 plmef 8518 R rec edebfe58-4466-4600-a56c-8130d97efde8 -2024-07-17 09:30:11.695136 2024-07-17 09:30:11.695146 plmef 8519 R rec f4d60341-dd36-4d2c-8a8d-8951fa96ceaa -2024-07-17 09:30:11.792475 2024-07-17 09:30:11.792486 plmef 8520 R rec 60d87e4d-271e-4bdb-85b6-73e614403fdf -2024-07-17 09:30:11.89151 2024-07-17 09:30:11.891527 plmef 8521 R rec 3ca16a3e-af9c-45ba-ab43-bcff3841481b -2024-07-17 09:30:11.988281 2024-07-17 09:30:11.988296 plmef 8522 R rec e88b14f2-a77c-41b0-940e-fa088fade077 -2024-07-17 09:30:12.065412 2024-07-17 09:30:12.065423 plmef 8523 R rec 7a05f424-ef35-459b-845c-7b4cc6f331d1 -2024-07-17 09:30:12.174429 2024-07-17 09:30:12.174435 plmef 8524 R rec f118e0cd-be30-4c51-9e3d-8f3c24e8901e -2024-07-17 09:30:12.225706 2024-07-17 09:30:12.225712 plmef 8525 R rec 13bde9fe-b689-44a8-8997-3e911b73f75d -2024-07-17 09:30:12.299136 2024-07-17 09:30:12.299147 plmef 8526 R rec 3342c2df-0c23-404f-a8a5-1e04c7baae9e -2024-07-17 09:30:12.378428 2024-07-17 09:30:12.37844 plmef 8527 R rec 44461e91-c153-4825-877b-661e53acf51c -2024-07-17 09:30:12.467786 2024-07-17 09:30:12.467798 plmef 8528 R rec 2bd38ebe-e6de-4743-86c7-6331af6d4164 -2024-07-17 09:30:12.577125 2024-07-17 09:30:12.577137 plmef 8529 R rec 53344d2e-9297-490c-b35d-934bf8fe50d0 -2024-07-17 09:30:12.671901 2024-07-17 09:30:12.671916 plmef 8530 R rec acdff720-b095-4959-a635-01c7eec21e6c -2024-07-17 09:30:12.771905 2024-07-17 09:30:12.771916 plmef 8531 R rec 376d8d0f-4578-43ae-b0bb-55257b4b45de -2024-07-17 09:30:12.866261 2024-07-17 09:30:12.866273 plmef 8532 R rec af96962b-2aa1-41bf-aab8-6264559a0f6e -2024-07-17 09:30:12.963684 2024-07-17 09:30:12.963697 plmef 8533 R rec 7fdde47e-083b-44e6-84da-04c44213180b -2024-07-17 09:30:13.054977 2024-07-17 09:30:13.054992 plmef 8534 R rec 6d8e575e-8beb-4376-baeb-f48ecef7cfa5 -2024-07-17 09:30:13.160803 2024-07-17 09:30:13.160814 plmef 8535 R rec 51be3f32-896d-481b-97df-9518e8da9ef2 -2024-07-17 09:30:13.243096 2024-07-17 09:30:13.243101 plmef 8536 R rec 777277b9-a0b8-4e7f-9cd4-25d243961a19 -2024-07-17 09:30:13.293737 2024-07-17 09:30:13.293743 plmef 8537 R rec a4236b82-2131-4105-be09-4cd86ed2d28c -2024-07-17 09:30:13.378885 2024-07-17 09:30:13.378895 plmef 8538 R rec 83f96e71-eda8-4409-8c8c-b58d6533e85d -2024-07-17 09:30:13.467697 2024-07-17 09:30:13.467708 plmef 8539 R rec 8fb6d06e-6c23-437b-b1b9-f36889b49672 -2024-07-17 09:30:13.580078 2024-07-17 09:30:13.580089 plmef 8540 R rec 021e4efa-8bfd-4a21-ac7e-57db56339986 -2024-07-17 09:30:13.673534 2024-07-17 09:30:13.673547 plmef 8541 R rec 6070556d-7ec1-4991-95cb-62ffea1e7759 -2024-07-17 09:30:13.788043 2024-07-17 09:30:13.788053 plmef 8542 R rec 6e63fc28-eaa9-4cf2-a1a8-7b2565666970 -2024-07-17 09:30:13.879089 2024-07-17 09:30:13.8791 plmef 8543 R rec 638c4084-c8e8-4f00-bed0-4024ddac8e40 -2024-07-17 09:30:13.975728 2024-07-17 09:30:13.975739 plmef 8544 R rec e08e0054-28d4-47cf-8ce5-6ea6135bce99 -2024-07-17 09:30:14.071742 2024-07-17 09:30:14.071753 plmef 8545 R rec 3d1f6180-6264-46bf-9dab-63d5ca0060f0 -2024-07-17 09:30:14.164946 2024-07-17 09:30:14.164957 plmef 8546 R rec f7b7f4a9-20d3-4c6c-8002-e76c9e0cc3e1 -2024-07-17 09:30:14.250207 2024-07-17 09:30:14.250212 plmef 8547 R rec 9e2f1129-bd6c-4f5f-b713-02ecb2d7443b -2024-07-17 09:30:14.329288 2024-07-17 09:30:14.329299 plmef 8548 R rec 5cae4d90-1583-4778-956e-6f494a62ecee -2024-07-17 09:30:14.424855 2024-07-17 09:30:14.424869 plmef 8549 R rec 8adba999-acf7-4f9a-87fe-79d96c266d9d -2024-07-17 09:30:14.506208 2024-07-17 09:30:14.50622 plmef 8550 R rec 97c1fe31-1a66-4c37-ab78-bb12b5071780 -2024-07-17 09:30:14.605486 2024-07-17 09:30:14.605495 plmef 8551 R rec 915e8127-3f22-4e9e-8b6d-a3b9cecb3d90 -2024-07-17 09:30:14.692769 2024-07-17 09:30:14.692781 plmef 8552 R rec 2b0aae2d-7f32-4191-8ed1-839360eff96f -2024-07-17 09:30:14.76859 2024-07-17 09:30:14.7686 plmef 8553 R rec 6e9fc177-e7cc-4f67-8941-ee864e4aaffc -2024-07-17 09:30:14.848937 2024-07-17 09:30:14.848942 plmef 8554 R rec 9dbb8426-d7cd-4c12-aca9-2c0600708912 -2024-07-17 09:30:14.918689 2024-07-17 09:30:14.9187 plmef 8555 R rec dcf93b94-5f13-4c47-9507-b1052426a06a -2024-07-17 09:30:15.007304 2024-07-17 09:30:15.007316 plmef 8556 R rec a1015434-4d75-471c-bf95-3487619c4e70 -2024-07-17 09:30:15.103867 2024-07-17 09:30:15.10388 plmef 8557 R rec cbc9fedf-71dd-4d33-8e98-9c6eb101bb16 -2024-07-17 09:30:15.200642 2024-07-17 09:30:15.200656 plmef 8558 R rec ede0d737-d01e-4af9-ac56-6d4c4d0b917d -2024-07-17 09:30:15.293631 2024-07-17 09:30:15.293636 plmef 8559 R rec dd60a855-e3d0-4f9a-a065-10c587f51666 -2024-07-17 09:30:15.354356 2024-07-17 09:30:15.354362 plmef 8560 R rec 9962e377-ffc9-4126-9a08-010829fc5f07 -2024-07-17 09:30:15.462031 2024-07-17 09:30:15.462043 plmef 8561 R rec 1e13b681-99e5-4185-a768-bd4fc957e5e6 -2024-07-17 09:30:15.586425 2024-07-17 09:30:15.586436 plmef 8562 R rec ab439735-d4a2-4e37-bc36-87a309c9efc1 -2024-07-17 09:30:15.685919 2024-07-17 09:30:15.685931 plmef 8563 R rec 3bc96cd7-de84-4db5-874d-402ad366b584 -2024-07-17 09:30:15.801914 2024-07-17 09:30:15.801925 plmef 8564 R rec 959be0dd-df76-4680-8902-8171956204c1 -2024-07-17 09:30:15.931579 2024-07-17 09:30:15.931591 plmef 8565 R rec c5f873f0-86c9-4bf4-a683-00a145a893ef -2024-07-17 09:30:16.024735 2024-07-17 09:30:16.02477 plmef 8566 R rec 3e52f907-a825-4d4a-8bf9-924a9502a8f4 -2024-07-17 09:30:16.133448 2024-07-17 09:30:16.133454 plmef 8567 R rec 35af3035-ce9b-4d8a-ac85-e927a5e7aaf7 -2024-07-17 09:30:16.241871 2024-07-17 09:30:16.241884 plmef 8568 R rec cffc4f95-e09b-454d-903a-b7e8e523b91f -2024-07-17 09:30:16.335905 2024-07-17 09:30:16.33591 plmef 8569 R rec cd5caa47-af62-4574-8525-0394ad8549c6 -2024-07-17 09:30:16.387921 2024-07-17 09:30:16.387927 plmef 8570 R rec 72099d06-efb4-48c5-b4d5-f504dc52a346 -2024-07-17 09:30:16.48537 2024-07-17 09:30:16.485406 plmef 8571 R rec 032ecc00-9f3b-4d77-9581-7f42c2af048f -2024-07-17 09:30:16.587268 2024-07-17 09:30:16.587278 plmef 8572 R rec 6f417050-2c64-4f2f-94ed-88a00062f8f7 -2024-07-17 09:30:16.711243 2024-07-17 09:30:16.711253 plmef 8573 R rec 6c6c3167-fdac-437e-a0ef-36259fb7a820 -2024-07-17 09:30:16.834259 2024-07-17 09:30:16.834273 plmef 8574 R rec 03b425b8-f93c-45d5-b157-f76538d8f7dc -2024-07-17 09:30:16.944902 2024-07-17 09:30:16.944913 plmef 8575 R rec 3c82d28d-bbbe-4418-87ea-7d28d0059475 -2024-07-17 09:30:17.035478 2024-07-17 09:30:17.035489 plmef 8576 R rec 11c87761-2583-4963-a667-8aedf7cee080 -2024-07-17 09:30:17.127394 2024-07-17 09:30:17.127404 plmef 8577 R rec 584b4df7-3cb5-4ed4-a7bb-02151469f60e -2024-07-17 09:30:17.239277 2024-07-17 09:30:17.239287 plmef 8578 R rec ffed8ac7-a06e-4336-8a8c-d3ff827fafc0 -2024-07-17 09:30:17.346303 2024-07-17 09:30:17.346308 plmef 8579 R rec aac9ea39-8cb5-443a-826d-d8d19cebf2b1 -2024-07-17 09:30:17.400792 2024-07-17 09:30:17.400798 plmef 8580 R rec 468a6c89-1414-4b2e-88bb-e925ad3905d7 -2024-07-17 09:30:17.461488 2024-07-17 09:30:17.4615 plmef 8581 R rec fb84f90c-eb1e-4646-a517-832b5b43af23 -2024-07-17 09:30:17.546313 2024-07-17 09:30:17.546325 plmef 8582 R rec e68b8ea5-75df-4464-a1d8-2931370e7c8e -2024-07-17 09:30:17.649686 2024-07-17 09:30:17.649697 plmef 8583 R rec 449eb7ff-a5f1-4428-9e3f-662a03709f74 -2024-07-17 09:30:17.754705 2024-07-17 09:30:17.754721 plmef 8584 R rec 565879c1-4dcc-4880-96df-d27f28942cc3 -2024-07-17 09:30:17.861242 2024-07-17 09:30:17.861252 plmef 8585 R rec b89b1d3e-a5fe-4cad-b9bd-a890883996e2 -2024-07-17 09:30:17.962015 2024-07-17 09:30:17.962024 plmef 8586 R rec 0426c2d1-c07e-4c00-be50-862e6e23e47d -2024-07-17 09:30:18.064335 2024-07-17 09:30:18.064346 plmef 8587 R rec 76cc3840-b77b-4884-b206-89726232ad49 -2024-07-17 09:30:18.155235 2024-07-17 09:30:18.155247 plmef 8588 R rec 54a2f3bd-9732-4608-aff0-beddc6c8044e -2024-07-17 09:30:18.259961 2024-07-17 09:30:18.259976 plmef 8589 R rec 69984d75-fc7b-431f-bd84-b78ab172d244 -2024-07-17 09:30:18.377436 2024-07-17 09:30:18.377447 plmef 8590 R rec 4fcfb780-ef6d-4e3c-b904-c59d15438079 -2024-07-17 09:30:18.440777 2024-07-17 09:30:18.440782 plmef 8591 R rec 3ccdf79a-8b9e-4f6f-a4ad-f1f35204316a -2024-07-17 09:30:18.502002 2024-07-17 09:30:18.502165 plmef 8592 R rec 1c63430b-cf2a-4d62-9ff9-35179b16b130 -2024-07-17 09:30:18.635393 2024-07-17 09:30:18.635407 plmef 8593 R rec 83c593aa-33ec-4496-a71c-fe83f24d0a40 -2024-07-17 09:30:18.762607 2024-07-17 09:30:18.762612 plmef 8594 R rec ab39af91-b3fa-4fe7-b4e9-ef4b895c0468 -2024-07-17 09:30:18.849918 2024-07-17 09:30:18.849928 plmef 8595 R rec 84b30f0e-880b-4b57-80d9-5446554b9130 -2024-07-17 09:30:18.945096 2024-07-17 09:30:18.945108 plmef 8596 R rec 3d7dfaab-87fa-4534-9c3f-45b8ae2dbf51 -2024-07-17 09:30:19.044873 2024-07-17 09:30:19.044884 plmef 8597 R rec 0c4dde84-de5a-4476-8684-a39711993c9a -2024-07-17 09:30:19.149481 2024-07-17 09:30:19.149492 plmef 8598 R rec 968303d5-a4e9-4f3a-83f7-c6259e4df6ab -2024-07-17 09:30:19.253023 2024-07-17 09:30:19.253034 plmef 8599 R rec 26650ef5-1392-4f40-8e50-1bfbfeb3f1b5 -2024-07-17 09:30:19.352344 2024-07-17 09:30:19.352354 plmef 8600 R rec 357e18cf-0304-4682-a589-ebe7fcc75a18 -2024-07-17 09:30:19.446798 2024-07-17 09:30:19.446803 plmef 8601 R rec 5343c61b-b91b-493f-816e-6b3e329fb44f -2024-07-17 09:30:19.498078 2024-07-17 09:30:19.498083 plmef 8602 R rec 679e8a29-1475-4e1e-b19a-45cd3d4b1cca -2024-07-17 09:30:19.586942 2024-07-17 09:30:19.586952 plmef 8603 R rec 32263c92-2f30-416d-9bf7-80cf23c3665d -2024-07-17 09:30:19.679847 2024-07-17 09:30:19.679858 plmef 8604 R rec 1c2ad7cf-83fc-4212-ae26-e970959f5353 -2024-07-17 09:30:19.77414 2024-07-17 09:30:19.774151 plmef 8605 R rec ea56897d-7e84-48ac-92dc-65581db6c9e4 -2024-07-17 09:30:19.88149 2024-07-17 09:30:19.881496 plmef 8606 R rec 0d7b60cd-8ea8-4ad8-b239-0d02fda339e5 -2024-07-17 09:30:19.972733 2024-07-17 09:30:19.972743 plmef 8607 R rec 250c3c13-06cc-4f80-9711-352a07279ca3 -2024-07-17 09:30:20.075292 2024-07-17 09:30:20.075303 plmef 8608 R rec 9c71ce4b-7575-4f16-a672-a53d5ada138c -2024-07-17 09:30:20.173322 2024-07-17 09:30:20.173338 plmef 8609 R rec 678ab921-0be1-472b-9e8d-ef10a7d42cbf -2024-07-17 09:30:20.276571 2024-07-17 09:30:20.276582 plmef 8610 R rec bc7427db-b305-4cf5-b76d-7a8244af620e -2024-07-17 09:30:20.383275 2024-07-17 09:30:20.383293 plmef 8611 R rec ecb73df9-4210-4139-9985-ae7e567558a6 -2024-07-17 09:30:20.477892 2024-07-17 09:30:20.477897 plmef 8612 R rec 846d9f3c-e305-4c47-ab75-5d67668a5b64 -2024-07-17 09:30:20.523927 2024-07-17 09:30:20.523932 plmef 8613 R rec 6c1320df-a928-4a5d-8326-5a357ed47761 -2024-07-17 09:30:20.608923 2024-07-17 09:30:20.608936 plmef 8614 R rec 135acc55-e012-46cb-a00a-4daef6cf5460 -2024-07-17 09:30:20.706157 2024-07-17 09:30:20.706167 plmef 8615 R rec 7e134f7d-a9eb-4d81-a1a8-c57977b04137 -2024-07-17 09:30:20.815114 2024-07-17 09:30:20.815125 plmef 8616 R rec 023f4c6c-aba0-4828-9253-d9a76bd0045d -2024-07-17 09:30:20.915363 2024-07-17 09:30:20.915375 plmef 8617 R rec 31e57c2d-a7b9-4368-9a5e-92fe5bf18b2f -2024-07-17 09:30:21.031901 2024-07-17 09:30:21.031911 plmef 8618 R rec 45068ebc-c413-4d72-b871-b8232fb9dcee -2024-07-17 09:30:21.134662 2024-07-17 09:30:21.134674 plmef 8619 R rec 8965c90e-8742-4854-84ef-ff954e89d66c -2024-07-17 09:30:21.229966 2024-07-17 09:30:21.229979 plmef 8620 R rec 8b7c5f51-fe5a-43cb-9ee4-f9f81d304d8f -2024-07-17 09:30:21.328756 2024-07-17 09:30:21.328768 plmef 8621 R rec 9569586d-f386-4c21-bdd8-e7ce1f8f1905 -2024-07-17 09:30:21.431339 2024-07-17 09:30:21.43135 plmef 8622 R rec 55d1a8f2-9457-4eab-a585-d530b229e2bd -2024-07-17 09:30:21.508151 2024-07-17 09:30:21.508156 plmef 8623 R rec 5b6997c1-b326-44cd-bc7c-f0a732c61a9e -2024-07-17 09:30:21.556645 2024-07-17 09:30:21.55665 plmef 8624 R rec 6caf1dab-f4ed-49bc-8744-5d13427de1b6 -2024-07-17 09:30:21.615005 2024-07-17 09:30:21.615015 plmef 8625 R rec bea55d3d-c08d-4b5b-9c21-43bacde3c52d -2024-07-17 09:30:21.700712 2024-07-17 09:30:21.700749 plmef 8626 R rec 5e12668f-5018-4a50-a9ba-59ff643a0a9a -2024-07-17 09:30:21.795241 2024-07-17 09:30:21.795252 plmef 8627 R rec 386f37d3-0f1c-4660-aaf8-2eba051f1f52 -2024-07-17 09:30:21.894317 2024-07-17 09:30:21.894328 plmef 8628 R rec f80d2ebf-de9c-42bf-8149-3d1112b9d130 -2024-07-17 09:30:22.00493 2024-07-17 09:30:22.00494 plmef 8629 R rec d5dc8a70-1cab-4c85-be51-35a07e3b3b9e -2024-07-17 09:30:22.110069 2024-07-17 09:30:22.110082 plmef 8630 R rec 00c33b3e-89c8-4c92-bd1b-a43eb734cf18 -2024-07-17 09:30:22.221101 2024-07-17 09:30:22.22111 plmef 8631 R rec 71989ff2-ad92-4f43-9f30-96325255058d -2024-07-17 09:30:22.32094 2024-07-17 09:30:22.320945 plmef 8632 R rec 3fd9435a-c0d6-4cff-8957-fa817e96917d -2024-07-17 09:30:22.426617 2024-07-17 09:30:22.426627 plmef 8633 R rec b62936ef-4264-4b02-9d70-5ee6dac52bef -2024-07-17 09:30:22.531936 2024-07-17 09:30:22.531943 plmef 8634 R rec 0fe24a46-a55b-4b31-ba96-7591e90b91b4 -2024-07-17 09:30:22.590028 2024-07-17 09:30:22.590034 plmef 8635 R rec ef756fa3-808c-4dd0-8e3f-e5bd681c8519 -2024-07-17 09:30:22.662451 2024-07-17 09:30:22.662463 plmef 8636 R rec aabe0034-31a2-49e6-a83b-d67e4222e5b8 -2024-07-17 09:30:22.753946 2024-07-17 09:30:22.753958 plmef 8637 R rec 9cb83890-6b80-42e7-a3e4-bbaf04490f91 -2024-07-17 09:30:22.843032 2024-07-17 09:30:22.843045 plmef 8638 R rec 8b280972-b6a1-4708-82ef-e1015c4a92f0 -2024-07-17 09:30:22.919811 2024-07-17 09:30:22.919822 plmef 8639 R rec dd500b38-10b3-45fc-9f33-a3123bf23b2a -2024-07-17 09:30:23.022088 2024-07-17 09:30:23.0221 plmef 8640 R rec 0b5f0d98-f997-4565-8de0-35d05fc8c38f -2024-07-17 09:30:23.140104 2024-07-17 09:30:23.140114 plmef 8641 R rec 48c445eb-a6de-450f-b972-af474827f99e -2024-07-17 09:30:23.229288 2024-07-17 09:30:23.229299 plmef 8642 R rec f33795db-750e-4799-8cd3-030c10348bbb -2024-07-17 09:30:23.321947 2024-07-17 09:30:23.32196 plmef 8643 R rec 98d7a8b8-c890-46a1-a59a-e4d69ba590c7 -2024-07-17 09:30:23.418143 2024-07-17 09:30:23.418156 plmef 8644 R rec ffbc7640-d05c-45ad-8bce-17133c5a3875 -2024-07-17 09:30:23.521225 2024-07-17 09:30:23.521237 plmef 8645 R rec 5dfbc932-2921-47ce-8ddf-ceb00950e8ac -2024-07-17 09:30:23.597484 2024-07-17 09:30:23.59749 plmef 8646 R rec f20c01db-fb8b-4953-b7c6-18956441063b -2024-07-17 09:30:23.645424 2024-07-17 09:30:23.645429 plmef 8647 R rec 4fa68f4b-7743-4701-8bd4-d7679301145f -2024-07-17 09:30:23.715771 2024-07-17 09:30:23.715779 plmef 8648 R rec a3f279ed-8c1b-4cee-92e8-0ca22ff9aa2d -2024-07-17 09:30:23.805552 2024-07-17 09:30:23.805568 plmef 8649 R rec ce826ae8-1d32-44c0-8a0b-6f5621d18a6b -2024-07-17 09:30:23.899877 2024-07-17 09:30:23.899894 plmef 8650 R rec 4e14644f-ed38-490f-979b-06c2924c0ed8 -2024-07-17 09:30:23.986147 2024-07-17 09:30:23.98616 plmef 8651 R rec 4c190acc-8e6b-432c-a7f3-735f63e1393f -2024-07-17 09:30:24.100041 2024-07-17 09:30:24.100052 plmef 8652 R rec 141ec585-1895-4cf3-9f7c-5dcc4e36359f -2024-07-17 09:30:24.185849 2024-07-17 09:30:24.185865 plmef 8653 R rec a7828456-9794-45f1-8a14-47d5d441baa2 -2024-07-17 09:30:24.283062 2024-07-17 09:30:24.283078 plmef 8654 R rec 6aa9a584-a4c5-446b-adda-34065f2ac99c -2024-07-17 09:30:24.375389 2024-07-17 09:30:24.375399 plmef 8655 R rec f93d2322-d715-40a5-bb84-3b827873cdeb -2024-07-17 09:30:24.47725 2024-07-17 09:30:24.477266 plmef 8656 R rec 10e05f0e-dff4-4718-952f-88aae13b1b93 -2024-07-17 09:30:24.569889 2024-07-17 09:30:24.5699 plmef 8657 R rec a4c034cb-e690-4833-ba61-8d40860d5612 -2024-07-17 09:30:24.643412 2024-07-17 09:30:24.643417 plmef 8658 R rec effe905a-5fc0-400a-8e5b-5a02d22c6eeb -2024-07-17 09:30:24.736624 2024-07-17 09:30:24.73663 plmef 8659 R rec 7e991d41-d56a-4ce0-83a3-f8436010d210 -2024-07-17 09:30:24.824092 2024-07-17 09:30:24.824104 plmef 8660 R rec ea9e6a55-4846-49d5-b3fe-8a19e53f5799 -2024-07-17 09:30:24.911233 2024-07-17 09:30:24.911246 plmef 8661 R rec 2c5c938f-a36e-46ab-8bf4-4e44902e1c3d -2024-07-17 09:30:25.104343 2024-07-17 09:30:25.104355 plmef 8662 R rec 064b369c-953a-4194-aa76-d8f6bc2dfa82 -2024-07-17 09:30:25.218634 2024-07-17 09:30:25.218644 plmef 8663 R rec 02665326-dbb0-4839-b0cc-ab23999926e7 -2024-07-17 09:30:25.301901 2024-07-17 09:30:25.301911 plmef 8664 R rec d7dfb399-0391-4be1-8731-80a06da1184f -2024-07-17 09:30:25.405832 2024-07-17 09:30:25.405845 plmef 8665 R rec 7c47a65d-98e0-444e-89e0-d874bf29ee88 -2024-07-17 09:30:25.499727 2024-07-17 09:30:25.499743 plmef 8666 R rec 650dec46-acf6-495a-8145-0c7cfca9582a -2024-07-17 09:30:25.62317 2024-07-17 09:30:25.623176 plmef 8667 R rec afbc1c1f-d5f7-4cf6-a57d-ead94f594058 -2024-07-17 09:30:25.675896 2024-07-17 09:30:25.675901 plmef 8668 R rec a4f94202-a3a5-4cfc-b46d-87f8b08d6082 -2024-07-17 09:30:25.90468 2024-07-17 09:30:25.904693 plmef 8669 R rec 4be414b1-6dfe-4f55-9469-515276ca9735 -2024-07-17 09:30:25.998965 2024-07-17 09:30:25.998982 plmef 8670 R rec 63158388-15aa-48e2-9c12-bedcdd4f5540 -2024-07-17 09:30:26.111404 2024-07-17 09:30:26.111519 plmef 8671 R rec d29ea065-128f-4e75-90c1-b73445d85dca -2024-07-17 09:30:26.220001 2024-07-17 09:30:26.22001 plmef 8672 R rec cc542e08-9d5f-4889-bbd3-bb2d7b51f22e -2024-07-17 09:30:26.321211 2024-07-17 09:30:26.321222 plmef 8673 R rec 36bdabcd-e51e-4b33-ae47-576fc5a2adf6 -2024-07-17 09:30:26.54386 2024-07-17 09:30:26.543872 plmef 8674 R rec 9e0a80c0-d1d7-49ad-80f5-1dcfd88aea35 -2024-07-17 09:30:26.628468 2024-07-17 09:30:26.628478 plmef 8675 R rec 59e402c7-9f35-4a72-97d9-b6f25a9f6b4a -2024-07-17 09:30:26.685541 2024-07-17 09:30:26.685546 plmef 8676 R rec f6a85eb0-7a30-46a3-a2f5-7f700dc71635 -2024-07-17 09:30:26.812766 2024-07-17 09:30:26.812776 plmef 8677 R rec e86462c4-061b-4d03-ba1f-f2b05e9ac3b6 -2024-07-17 09:30:26.913534 2024-07-17 09:30:26.913544 plmef 8678 R rec e7d2e6e1-af1e-47e3-b85d-57c1c90f9b65 -2024-07-17 09:30:27.010887 2024-07-17 09:30:27.010898 plmef 8679 R rec 6bf1e8be-1b79-4dd5-b52e-27d4cb768288 -2024-07-17 09:30:27.109547 2024-07-17 09:30:27.109562 plmef 8680 R rec 604e558f-b456-4364-ad99-0d60441c91c8 -2024-07-17 09:30:27.202767 2024-07-17 09:30:27.202787 plmef 8681 R rec 82f457ff-863d-4d6e-840f-511f00f930ef -2024-07-17 09:30:27.302216 2024-07-17 09:30:27.302228 plmef 8682 R rec 49a2fb4c-688d-4803-9619-45ce62c499bb -2024-07-17 09:30:27.39496 2024-07-17 09:30:27.394971 plmef 8683 R rec 2f7af86d-f18a-47d7-8d38-d27a32376bb9 -2024-07-17 09:30:27.483077 2024-07-17 09:30:27.483089 plmef 8684 R rec cf9f6e17-8258-466d-94a9-e09ee849e959 -2024-07-17 09:30:27.569315 2024-07-17 09:30:27.569326 plmef 8685 R rec b788795a-a49b-4fbf-89b3-c058017a7d63 -2024-07-17 09:30:27.662911 2024-07-17 09:30:27.662927 plmef 8686 R rec 7aff8b0a-f87e-4853-a8c4-3a18ac9bda97 -2024-07-17 09:30:27.723616 2024-07-17 09:30:27.723622 plmef 8687 R rec a5f637a0-865a-47f2-85a5-6297ac7478bd -2024-07-17 09:30:27.776097 2024-07-17 09:30:27.776107 plmef 8688 R rec 14bbfbec-dbb1-4a94-9721-287e305d3ee4 -2024-07-17 09:30:27.866565 2024-07-17 09:30:27.866578 plmef 8689 R rec 733f2e9f-981d-42d4-a89d-eaf88e85b7d7 -2024-07-17 09:30:27.955515 2024-07-17 09:30:27.955526 plmef 8690 R rec 875ddc1a-0b1c-4732-a74d-a51c73f29817 -2024-07-17 09:30:28.035221 2024-07-17 09:30:28.035232 plmef 8691 R rec 51476cac-bb46-4e0b-9646-1a75bb8d258d -2024-07-17 09:30:28.127568 2024-07-17 09:30:28.127579 plmef 8692 R rec 0f5572ca-2eba-4eb9-b027-7ff1f9bdb5b5 -2024-07-17 09:30:28.214458 2024-07-17 09:30:28.214469 plmef 8693 R rec 9c540f12-9d8c-4849-a47b-196d57a14015 -2024-07-17 09:30:28.32401 2024-07-17 09:30:28.324021 plmef 8694 R rec 7c858972-37f2-4633-9e07-e5f398df320f -2024-07-17 09:30:28.544752 2024-07-17 09:30:28.544763 plmef 8695 R rec 1b32d36a-ba61-4f3c-b857-ec434e71f43b -2024-07-17 09:30:28.653923 2024-07-17 09:30:28.653934 plmef 8696 R rec ef8b27ef-660a-4c50-b3da-41084e573320 -2024-07-17 09:30:28.736127 2024-07-17 09:30:28.736132 plmef 8697 R rec c4f01ce3-efc8-4c1c-a7db-07605ce21e4b -2024-07-17 09:30:28.783799 2024-07-17 09:30:28.783804 plmef 8698 R rec c548424b-28ff-4c51-b689-7b77b30a596f -2024-07-17 09:30:28.841971 2024-07-17 09:30:28.841982 plmef 8699 R rec af8afd34-53f3-43ca-8a77-fabce3f05e6a -2024-07-17 09:30:28.941491 2024-07-17 09:30:28.941501 plmef 8700 R rec 293ea155-71eb-4a67-b244-9482bf9cbcc1 -2024-07-17 09:30:29.046262 2024-07-17 09:30:29.046273 plmef 8701 R rec eaf7437a-e47e-4d6c-8922-6f901f05e1e2 -2024-07-17 09:30:29.163778 2024-07-17 09:30:29.163791 plmef 8702 R rec eea69714-2b8f-415f-9a73-fc45a07379af -2024-07-17 09:30:29.256061 2024-07-17 09:30:29.256071 plmef 8703 R rec a68833ce-2c65-4662-8cf2-c8055cd44958 -2024-07-17 09:30:29.355953 2024-07-17 09:30:29.355968 plmef 8704 R rec c8e0f608-1efc-421e-9857-746df59752f1 -2024-07-17 09:30:29.461418 2024-07-17 09:30:29.461428 plmef 8705 R rec ca77eb29-ea7c-436e-b238-b3d97c2a5386 -2024-07-17 09:30:29.551532 2024-07-17 09:30:29.551543 plmef 8706 R rec 916f4107-d5b8-4d83-84b9-a0f7e1200663 -2024-07-17 09:30:29.638451 2024-07-17 09:30:29.638463 plmef 8707 R rec 2b42238d-6b94-441c-ba93-4931b3fe73aa -2024-07-17 09:30:29.737301 2024-07-17 09:30:29.737307 plmef 8708 R rec 8862324d-7c16-45f6-9f43-a71c4082f469 -2024-07-17 09:30:29.793774 2024-07-17 09:30:29.793779 plmef 8709 R rec 7439b95c-0cb1-48a0-9eb6-5840dd78ba9b -2024-07-17 09:30:29.858725 2024-07-17 09:30:29.858739 plmef 8710 R rec e2cfdea4-bcd0-4231-80fb-928539618fd6 -2024-07-17 09:30:29.952134 2024-07-17 09:30:29.952145 plmef 8711 R rec 13dd094f-e338-4df8-b722-6c2f801b7de2 -2024-07-17 09:30:30.050367 2024-07-17 09:30:30.050378 plmef 8712 R rec a2963593-7ae6-4cbb-82ef-d5302e8f655a -2024-07-17 09:30:30.145986 2024-07-17 09:30:30.145999 plmef 8713 R rec f997fca4-0c40-4ce8-b854-f52b85a1558f -2024-07-17 09:30:30.254197 2024-07-17 09:30:30.25421 plmef 8714 R rec e477de8b-2dce-43ed-b65d-6613431a5327 -2024-07-17 09:30:30.355651 2024-07-17 09:30:30.355668 plmef 8715 R rec 8b805e4e-d10c-426c-934b-c89203403e95 -2024-07-17 09:30:30.470286 2024-07-17 09:30:30.470297 plmef 8716 R rec 7de9fbd5-2add-4f96-ae0f-6f22059e181f -2024-07-17 09:30:30.574265 2024-07-17 09:30:30.574275 plmef 8717 R rec a5812ca8-8833-4dfc-9a29-cd5dfbb1b2b6 -2024-07-17 09:30:30.675313 2024-07-17 09:30:30.675323 plmef 8718 R rec 7e31c867-11da-4633-813b-90ce4d1c2b8f -2024-07-17 09:30:30.770259 2024-07-17 09:30:30.770264 plmef 8719 R rec 30efe0aa-816e-4d7d-a0da-ccf0f6aacb32 -2024-07-17 09:30:31.019454 2024-07-17 09:30:31.019465 plmef 8720 R rec 41a6a24f-f4bc-493c-bba1-3bd05e9b0be9 -2024-07-17 09:30:31.111627 2024-07-17 09:30:31.11164 plmef 8721 R rec c92b4a04-f9e2-40fd-a221-04b82ec53215 -2024-07-17 09:30:31.212865 2024-07-17 09:30:31.212876 plmef 8722 R rec 9401ff0a-e7ae-40b5-aa6f-cd2b8c7ae613 -2024-07-17 09:30:31.317765 2024-07-17 09:30:31.317777 plmef 8723 R rec d46637aa-6a85-4823-b449-1146bdd6d147 -2024-07-17 09:30:31.430138 2024-07-17 09:30:31.430149 plmef 8724 R rec 32cb2eda-40da-443b-b51e-8905880b0fae -2024-07-17 09:30:31.664151 2024-07-17 09:30:31.664167 plmef 8725 R rec c23b4b20-5633-4f1a-89c4-0868b425a37a -2024-07-17 09:30:31.76925 2024-07-17 09:30:31.769278 plmef 8726 R rec 119557e8-d9d7-4d71-88ca-0c59185a5c09 -2024-07-17 09:30:31.845408 2024-07-17 09:30:31.845413 plmef 8727 R rec 2173ea12-92f3-41e3-8efe-724054ab0484 -2024-07-17 09:30:31.930013 2024-07-17 09:30:31.930025 plmef 8728 R rec 4d0d031c-b8b3-49d9-9869-762e76ce9291 -2024-07-17 09:30:32.033018 2024-07-17 09:30:32.033034 plmef 8729 R rec 33766761-c16d-4193-95a0-f74beb26d1c0 -2024-07-17 09:30:32.238541 2024-07-17 09:30:32.238553 plmef 8730 R rec 9d0e0976-0a5e-4ca7-9f0a-89f25c322acb -2024-07-17 09:30:32.32871 2024-07-17 09:30:32.328721 plmef 8731 R rec 46f54dee-16de-4a23-a033-d548a2defb9e -2024-07-17 09:30:32.416904 2024-07-17 09:30:32.416939 plmef 8732 R rec 213208fc-80ba-448f-82d6-31e9a6ff82f7 -2024-07-17 09:30:32.49942 2024-07-17 09:30:32.499431 plmef 8733 R rec 476d739e-5f45-4651-a79f-70e46acd35b5 -2024-07-17 09:30:32.618332 2024-07-17 09:30:32.618343 plmef 8734 R rec 8e055d25-fbdf-4e80-a6d0-86db8fdf2910 -2024-07-17 09:30:32.702108 2024-07-17 09:30:32.702119 plmef 8735 R rec 08026211-1d0d-429e-b514-e1accbef56bf -2024-07-17 09:30:32.812496 2024-07-17 09:30:32.812507 plmef 8736 R rec 99d1f833-f1ad-4b7e-8c96-10ae6496879a -2024-07-17 09:30:32.890347 2024-07-17 09:30:32.890355 plmef 8737 R rec cd5f7829-21be-41fd-8986-e98cd3e6c4e4 -2024-07-17 09:30:32.958149 2024-07-17 09:30:32.958174 plmef 8738 R rec 3a339cd3-0c20-4af2-9a79-ca1beaa89e9f -2024-07-17 09:30:33.060019 2024-07-17 09:30:33.06003 plmef 8739 R rec 59634bc2-a00d-45dc-a66e-a9c0c045cad5 -2024-07-17 09:30:33.18064 2024-07-17 09:30:33.180651 plmef 8740 R rec 45f37ef7-7042-4bf2-b244-2d53dbeef7ed -2024-07-17 09:30:33.297849 2024-07-17 09:30:33.297861 plmef 8741 R rec 34c1845a-305e-4202-9325-91095d73b4d7 -2024-07-17 09:30:33.385023 2024-07-17 09:30:33.385035 plmef 8742 R rec 95bdaf3d-ed01-4649-9328-c6a76bba5d27 -2024-07-17 09:30:33.494429 2024-07-17 09:30:33.494445 plmef 8743 R rec aa2546ae-8486-483a-9914-a6e7c9223ec4 -2024-07-17 09:30:33.593497 2024-07-17 09:30:33.593502 plmef 8744 R rec 2e8ef27f-d6fc-42c9-924d-483fbba95c2a -2024-07-17 09:30:33.702595 2024-07-17 09:30:33.702608 plmef 8745 R rec 93ea2b9f-49e6-440f-abf5-1ed350f984e1 -2024-07-17 09:30:33.803009 2024-07-17 09:30:33.80302 plmef 8746 R rec 5cd71dca-65b7-4176-bc93-2502b0552ac6 -2024-07-17 09:30:33.890913 2024-07-17 09:30:33.890919 plmef 8747 R rec bceae107-2802-4b18-b437-934185570d74 -2024-07-17 09:30:33.962161 2024-07-17 09:30:33.962173 plmef 8748 R rec 5ab164ba-cb61-424c-8ae4-0320b39f4f43 -2024-07-17 09:30:34.067724 2024-07-17 09:30:34.067738 plmef 8749 R rec 34384de8-15fb-4c7f-aa61-06c2e263e37a -2024-07-17 09:30:34.172863 2024-07-17 09:30:34.172879 plmef 8750 R rec 9e789747-2149-4d04-a4e4-b54dd56c9bae -2024-07-17 09:30:34.305249 2024-07-17 09:30:34.305262 plmef 8751 R rec 23d9858f-0ee6-4c32-8d17-96cdb67f6c91 -2024-07-17 09:30:34.396595 2024-07-17 09:30:34.396605 plmef 8752 R rec feecce0d-37f5-48a0-825d-9ad8d5aaa287 -2024-07-17 09:30:34.496287 2024-07-17 09:30:34.496298 plmef 8753 R rec 9b90138c-0d99-465a-bd4b-7608d9c2ee0b -2024-07-17 09:30:34.587779 2024-07-17 09:30:34.587792 plmef 8754 R rec 36a42de5-34cd-48c0-bd8c-9a485e6fb92b -2024-07-17 09:30:34.683239 2024-07-17 09:30:34.683251 plmef 8755 R rec 54060d82-a93e-4ef7-91e7-ac2f521fb269 -2024-07-17 09:30:34.779594 2024-07-17 09:30:34.779605 plmef 8756 R rec d7d8b5b6-82de-49db-bc02-e1e452603b33 -2024-07-17 09:30:34.880043 2024-07-17 09:30:34.880055 plmef 8757 R rec 3b1919fb-fa01-4ecc-9e0f-d605221e3d7a -2024-07-17 09:30:34.951678 2024-07-17 09:30:34.951684 plmef 8758 R rec 86b24cc9-cd6a-4692-b2e8-6de128d2507b -2024-07-17 09:30:35.005359 2024-07-17 09:30:35.005369 plmef 8759 R rec 6c49bcfe-f087-4b82-9501-ca29aca3114f -2024-07-17 09:30:35.098322 2024-07-17 09:30:35.098332 plmef 8760 R rec 0581351f-deee-4e1b-91f8-2b6e8c1ae898 -2024-07-17 09:30:35.422037 2024-07-17 09:30:35.422052 plmef 8761 R rec bf224700-2976-4690-8979-3acb2f40d9d7 -2024-07-17 09:30:35.522526 2024-07-17 09:30:35.522538 plmef 8762 R rec 14280fc1-939b-4b30-bb43-bd53d966603a -2024-07-17 09:30:35.623815 2024-07-17 09:30:35.623827 plmef 8763 R rec dc4d7030-4470-43b3-95f4-b3d6ee00f527 -2024-07-17 09:30:35.728593 2024-07-17 09:30:35.728606 plmef 8764 R rec 0b3cec9f-6516-40b9-992b-de22b9a2dc4d -2024-07-17 09:30:35.824179 2024-07-17 09:30:35.824191 plmef 8765 R rec 918f8407-5c1f-41ac-ba2f-2658f8ce7986 -2024-07-17 09:30:35.944086 2024-07-17 09:30:35.944092 plmef 8766 R rec c3149339-021d-4e26-8eb7-205da361b34a -2024-07-17 09:30:35.995409 2024-07-17 09:30:35.995414 plmef 8767 R rec f7a2478f-6c70-4fe7-b1e7-9308c113fb92 -2024-07-17 09:30:36.088136 2024-07-17 09:30:36.088149 plmef 8768 R rec 236bda61-6672-4930-b3b4-db2b69fcf426 -2024-07-17 09:30:36.179253 2024-07-17 09:30:36.179259 plmef 8769 R rec c847f03a-6629-4aa5-aac3-63673c111933 -2024-07-17 09:30:36.24917 2024-07-17 09:30:36.249181 plmef 8770 R rec dc6dd3fa-c241-40ce-bdba-4acbc8c5318f -2024-07-17 09:30:36.33586 2024-07-17 09:30:36.33587 plmef 8771 R rec 2664cd38-a7a4-47fc-8360-6aa3796e546f -2024-07-17 09:30:36.440963 2024-07-17 09:30:36.440974 plmef 8772 R rec d2db6281-f052-4cbe-8829-9a96c9960b8b -2024-07-17 09:30:36.647947 2024-07-17 09:30:36.647958 plmef 8773 R rec 9a5c52a8-8cac-49b1-8f08-36fa8462282d -2024-07-17 09:30:36.737657 2024-07-17 09:30:36.737667 plmef 8774 R rec 35d21ec5-c942-4f4d-be10-61f1e00c9f24 -2024-07-17 09:30:36.831428 2024-07-17 09:30:36.83144 plmef 8775 R rec 869515b2-34cc-4acd-98d0-44a92818f764 -2024-07-17 09:30:36.936805 2024-07-17 09:30:36.936816 plmef 8776 R rec 7944cb86-c806-4edb-ba48-a89da9798d1e -2024-07-17 09:30:37.003357 2024-07-17 09:30:37.003363 plmef 8777 R rec 43a3768a-fff4-4e73-9480-fddca742c314 -2024-07-17 09:30:37.096352 2024-07-17 09:30:37.096363 plmef 8778 R rec 040fc6f7-b60b-4486-b7da-0b27326601eb -2024-07-17 09:30:37.182511 2024-07-17 09:30:37.182523 plmef 8779 R rec 162bef13-a500-4843-91c2-b1abadbc4b86 -2024-07-17 09:30:37.307741 2024-07-17 09:30:37.30779 plmef 8780 R rec 6b561715-4b6f-4b71-b40e-12d4154da023 -2024-07-17 09:30:37.405538 2024-07-17 09:30:37.405548 plmef 8781 R rec c7ef83cb-94e9-4ee0-ad0f-777ca93f7794 -2024-07-17 09:30:37.513469 2024-07-17 09:30:37.513485 plmef 8782 R rec 81ff559e-d407-4865-ae5e-7a2896a227dd -2024-07-17 09:30:37.628836 2024-07-17 09:30:37.628847 plmef 8783 R rec 38a7e8a2-6c7d-4aa0-8cbb-2824d1224a0e -2024-07-17 09:30:37.725909 2024-07-17 09:30:37.725921 plmef 8784 R rec 9a3766a9-64f3-422f-a8f6-7347dd218b1c -2024-07-17 09:30:37.817733 2024-07-17 09:30:37.817744 plmef 8785 R rec 1f103fe8-60ee-4b7f-aa4b-afe2b20675fc -2024-07-17 09:30:37.916744 2024-07-17 09:30:37.916755 plmef 8786 R rec 662c17cc-1a2d-4e5b-a917-d164c26c8254 -2024-07-17 09:30:38.011726 2024-07-17 09:30:38.011731 plmef 8787 R rec cba80594-23cc-4335-973c-973a4c64644a -2024-07-17 09:30:38.059924 2024-07-17 09:30:38.059929 plmef 8788 R rec 1083eb86-efa8-4f47-8b10-7a76f2a0dadb -2024-07-17 09:30:38.135988 2024-07-17 09:30:38.136 plmef 8789 R rec 94ba9908-8c23-40b4-b7d9-3b1d786100c3 -2024-07-17 09:30:38.227058 2024-07-17 09:30:38.227063 plmef 8790 R rec 054201c1-b0cb-4b73-8a3b-cb215c4a5ef3 -2024-07-17 09:30:38.304844 2024-07-17 09:30:38.304855 plmef 8791 R rec 88768841-71e9-4a0c-a13a-55ccc91e7127 -2024-07-17 09:30:38.404364 2024-07-17 09:30:38.404374 plmef 8792 R rec 2cc36cbc-7fe6-42dd-8545-4349edc1191e -2024-07-17 09:30:38.497367 2024-07-17 09:30:38.497378 plmef 8793 R rec 72c1fa87-89df-4009-b414-d205a526387c -2024-07-17 09:30:38.593657 2024-07-17 09:30:38.593672 plmef 8794 R rec f7488b84-08d1-4d03-a5ab-3b1143b5e1dd -2024-07-17 09:30:38.691323 2024-07-17 09:30:38.691335 plmef 8795 R rec b65aed2c-11e8-45e2-80ed-6381f4794dac -2024-07-17 09:30:38.774894 2024-07-17 09:30:38.774905 plmef 8796 R rec 8ccbaf6d-647d-4242-8bc5-d9074fb4345e -2024-07-17 09:30:38.99524 2024-07-17 09:30:38.99525 plmef 8797 R rec 5fc777dc-42d2-4f78-b548-218bb40d8ca8 -2024-07-17 09:30:39.083371 2024-07-17 09:30:39.083376 plmef 8798 R rec 1f1ff05b-159e-49df-817e-dd1e18164d63 -2024-07-17 09:30:39.137132 2024-07-17 09:30:39.137143 plmef 8799 R rec fc75c01b-85da-4690-b2cb-d3125456e12c -2024-07-17 09:30:39.232103 2024-07-17 09:30:39.232114 plmef 8800 R rec 3b216138-be66-4b66-a316-50449dffadb6 +2024-09-11 09:10:50.320395 2024-09-11 09:10:50.3204 plmef 10217 R rec f0fa866e-e2fe-43d8-8b10-d211f393fcc6 +2024-09-11 09:10:50.383114 2024-09-11 09:10:50.383119 plmef 10218 R rec ac077780-9d60-4139-8283-29f7a1d4b4b2 +2024-09-11 09:10:50.427555 2024-09-11 09:10:50.42756 plmef 10219 R rec db1f8eaa-c3a3-44e1-b6a9-3cd2bc853dad +2024-09-11 09:10:50.469658 2024-09-11 09:10:50.469663 plmef 10220 R rec 461642f6-e288-4ac4-9611-77d875200b3f +2024-09-11 09:10:50.523775 2024-09-11 09:10:50.52378 plmef 10221 R rec 406dbc5c-ae49-403f-bdca-3fc8ac0e38b7 +2024-09-11 09:10:50.571721 2024-09-11 09:10:50.571726 plmef 10222 R rec 666b0fce-e96d-450f-8b35-140b3d493114 +2024-09-11 09:10:50.626818 2024-09-11 09:10:50.626824 plmef 10223 R rec c846fc0c-7b7b-419e-ab89-3711999c2492 +2024-09-11 09:10:50.66813 2024-09-11 09:10:50.668135 plmef 10224 R rec d1961e4d-b55e-4eb7-8218-7b46b1ef2521 +2024-09-11 09:10:50.71065 2024-09-11 09:10:50.710655 plmef 10225 R rec c59dfa39-9de3-4221-9dcf-d5937d64ae22 +2024-09-11 09:10:50.752959 2024-09-11 09:10:50.752964 plmef 10226 R rec 712c2143-e309-488a-86b6-1b08ec2cab12 +2024-09-11 09:10:50.794843 2024-09-11 09:10:50.794849 plmef 10227 R rec 78fd6349-e5b4-4024-a688-9981cf6e2a54 +2024-09-11 09:10:50.851803 2024-09-11 09:10:50.851808 plmef 10228 R rec 9252d3a4-8ac3-4e47-bc89-116dce61413d +2024-09-11 09:10:50.908568 2024-09-11 09:10:50.908579 plmef 10229 R rec 12638eae-e101-4fe9-a6ce-3ce2d3554bed +2024-09-11 09:10:50.969109 2024-09-11 09:10:50.969118 plmef 10230 R rec 4ae5e057-2a1a-4f85-ba45-9582c008df8d +2024-09-11 09:10:51.033441 2024-09-11 09:10:51.03345 plmef 10231 R rec 2ddfcbb0-8a23-4569-bbd5-89961446185e +2024-09-11 09:10:51.08472 2024-09-11 09:10:51.084725 plmef 10232 R rec 24216b06-0ee9-43a4-9c90-71faee3e9c05 +2024-09-11 09:10:51.135134 2024-09-11 09:10:51.135143 plmef 10233 R rec e1431980-c680-4ad4-a22e-5e4224b203ca +2024-09-11 09:10:51.201279 2024-09-11 09:10:51.20129 plmef 10234 R rec 609cffdd-2b6e-4a81-a493-a162507df70e +2024-09-11 09:10:51.257755 2024-09-11 09:10:51.257761 plmef 10235 R rec 4b4863b7-b09f-4287-a6d8-b6395142764d +2024-09-11 09:10:51.317706 2024-09-11 09:10:51.317715 plmef 10236 R rec b9e57404-70af-4634-8e87-2ff9d594edf1 +2024-09-11 09:10:51.377117 2024-09-11 09:10:51.377127 plmef 10237 R rec 55fd4d98-d716-4e86-aa70-5241ffc19832 +2024-09-11 09:10:51.452329 2024-09-11 09:10:51.452339 plmef 10238 R rec 5cd75fbf-fa48-45f4-9142-b9a3d8499c32 +2024-09-11 09:10:51.522837 2024-09-11 09:10:51.522843 plmef 10239 R rec ed34bfe1-15f0-473b-8f5a-9d1a477d9562 +2024-09-11 09:10:51.566822 2024-09-11 09:10:51.566827 plmef 10240 R rec 010b77f0-2b5a-4c6c-a364-c4757dd9b931 +2024-09-11 09:10:51.613016 2024-09-11 09:10:51.613022 plmef 10241 R rec 2362def3-87c3-45de-94fd-541c5c0f5215 +2024-09-11 09:10:51.672377 2024-09-11 09:10:51.672387 plmef 10242 R rec 61c7fa89-5849-404f-99ba-29256ed87cdf +2024-09-11 09:10:51.73203 2024-09-11 09:10:51.732041 plmef 10243 R rec 1a14f1b9-dc4d-4000-bda0-9c0afd582add +2024-09-11 09:10:51.78119 2024-09-11 09:10:51.781196 plmef 10244 R rec a53cf922-544f-4902-aa93-8116d95c51c3 +2024-09-11 09:10:51.856901 2024-09-11 09:10:51.856907 plmef 10245 R rec 47d9d338-ce7c-4c98-b230-82bdf4a42873 +2024-09-11 09:10:51.919426 2024-09-11 09:10:51.919436 plmef 10246 R rec 383fba6d-16f1-4b0b-bd06-07b50ebd2583 +2024-09-11 09:10:51.982725 2024-09-11 09:10:51.982736 plmef 10247 R rec 3907c869-a355-4fe3-9436-7b2e8cca6a2c +2024-09-11 09:10:52.055287 2024-09-11 09:10:52.055294 plmef 10248 R rec 4b39c52f-5d3f-4348-9ef2-b29f62245439 +2024-09-11 09:10:52.123514 2024-09-11 09:10:52.123523 plmef 10249 R rec dc5094f1-63ec-4a5c-9f11-178e0d8d10f2 +2024-09-11 09:10:52.182234 2024-09-11 09:10:52.182244 plmef 10250 R rec a9f694c0-179a-4666-856a-ff44faa2fd90 +2024-09-11 09:10:52.237263 2024-09-11 09:10:52.237268 plmef 10251 R rec d36987c4-365e-4421-a1be-f02d0f355857 +2024-09-11 09:10:52.29756 2024-09-11 09:10:52.29757 plmef 10252 R rec ee05f35e-06e8-4a67-8abe-53a4f041e515 +2024-09-11 09:10:52.367468 2024-09-11 09:10:52.367479 plmef 10253 R rec 630129d4-3878-45cd-b87e-67ff1841c645 +2024-09-11 09:10:52.42912 2024-09-11 09:10:52.429131 plmef 10254 R rec 9fa81e45-d69a-4fa4-afb4-95275a829277 +2024-09-11 09:10:52.50096 2024-09-11 09:10:52.500965 plmef 10255 R rec 43757ced-76de-4b46-9395-300053d5d2c0 +2024-09-11 09:10:52.564222 2024-09-11 09:10:52.564227 plmef 10256 R rec 61d7ff3c-55da-423a-b2e3-18b51f821345 +2024-09-11 09:10:52.614353 2024-09-11 09:10:52.614363 plmef 10257 R rec 40e6f0a9-7ff3-40aa-a383-9be551814ab2 +2024-09-11 09:10:52.682762 2024-09-11 09:10:52.682773 plmef 10258 R rec 80790f49-e7ce-4e3a-8de0-9124d4769020 +2024-09-11 09:10:52.737194 2024-09-11 09:10:52.737199 plmef 10259 R rec 21357f7e-f06b-4faf-95fa-f5e85423f8e3 +2024-09-11 09:10:52.788201 2024-09-11 09:10:52.788205 plmef 10260 R rec 74eb9b27-16f2-41b1-b457-ca483eed246b +2024-09-11 09:10:52.841378 2024-09-11 09:10:52.841383 plmef 10261 R rec 8eadf9f2-8bb1-41e7-9a82-4f39a75d5d5b +2024-09-11 09:10:52.900848 2024-09-11 09:10:52.900857 plmef 10262 R rec 72642019-ca40-41b1-be86-3231a7728d7c +2024-09-11 09:10:52.960966 2024-09-11 09:10:52.960975 plmef 10263 R rec 48a2680f-0c32-4180-866b-55c393d4539d +2024-09-11 09:10:53.02542 2024-09-11 09:10:53.025431 plmef 10264 R rec a24a5dd5-0de3-4226-9b2c-b5714603450e +2024-09-11 09:10:53.081476 2024-09-11 09:10:53.081482 plmef 10265 R rec 95dea0dd-e5f7-4b2f-aebc-63ccdf3d1d55 +2024-09-11 09:10:53.134179 2024-09-11 09:10:53.134188 plmef 10266 R rec 0c543b99-123d-455a-a0e8-3544758ff8b4 +2024-09-11 09:10:53.20814 2024-09-11 09:10:53.20815 plmef 10267 R rec fa6a52df-3edc-4a5b-a8cc-724cb0123978 +2024-09-11 09:10:53.283899 2024-09-11 09:10:53.283909 plmef 10268 R rec d915470e-f600-4413-af55-2dacb60f7307 +2024-09-11 09:10:53.345791 2024-09-11 09:10:53.345802 plmef 10269 R rec 303f2893-57d3-46ef-baec-241e31083a6d +2024-09-11 09:10:53.398778 2024-09-11 09:10:53.398783 plmef 10270 R rec ecdfbe45-0ad9-4d98-babb-0d81910384a6 +2024-09-11 09:10:53.453639 2024-09-11 09:10:53.453645 plmef 10271 R rec 450c8cb0-de4d-4219-92b3-de27eca44551 +2024-09-11 09:10:53.514148 2024-09-11 09:10:53.514158 plmef 10272 R rec beb80507-03b7-4621-aa96-ccf8cc73aa7e +2024-09-11 09:10:53.577005 2024-09-11 09:10:53.577011 plmef 10273 R rec faa3b989-8b9b-4976-8081-8a9f21f39ce8 +2024-09-11 09:10:53.635654 2024-09-11 09:10:53.635664 plmef 10274 R rec ce322ca9-5919-4e8b-890b-639848355ef8 +2024-09-11 09:10:53.721489 2024-09-11 09:10:53.721494 plmef 10275 R rec 78c0febb-6e61-4993-b7e6-76cf697b9f83 +2024-09-11 09:10:53.778317 2024-09-11 09:10:53.778324 plmef 10276 R rec 93bb1d0d-ce77-4141-959a-64469ca6cf59 +2024-09-11 09:10:53.835249 2024-09-11 09:10:53.835254 plmef 10277 R rec 34eb82dc-73eb-468e-98da-fcdc57e467ff +2024-09-11 09:10:53.890634 2024-09-11 09:10:53.890644 plmef 10278 R rec 3903ac41-7788-40d4-9ae9-9e173ea64ebb +2024-09-11 09:10:53.951592 2024-09-11 09:10:53.951602 plmef 10279 R rec a36e3178-f7fd-412d-8154-7189745fc0f1 +2024-09-11 09:10:54.013165 2024-09-11 09:10:54.01317 plmef 10280 R rec 4c05ee96-82a9-48af-af58-52787eef0d54 +2024-09-11 09:10:54.073259 2024-09-11 09:10:54.073264 plmef 10281 R rec 7ca9b055-a73c-4288-a299-ec0cbff2ce77 +2024-09-11 09:10:54.133254 2024-09-11 09:10:54.133263 plmef 10282 R rec 68632e21-e242-4f93-8b43-168db3409f0e +2024-09-11 09:10:54.193786 2024-09-11 09:10:54.193796 plmef 10283 R rec a809230f-df2c-4be6-b6cb-75686b5bef63 +2024-09-11 09:10:54.249322 2024-09-11 09:10:54.249332 plmef 10284 R rec 87c1524b-cd0f-43bc-ab87-9f7485339416 +2024-09-11 09:10:54.316698 2024-09-11 09:10:54.316708 plmef 10285 R rec 82c30df4-08b4-4d4d-b381-dbcaf0b44c9c +2024-09-11 09:10:54.397193 2024-09-11 09:10:54.397203 plmef 10286 R rec db201a3f-ae16-4ba6-aa85-c8994a3f0357 +2024-09-11 09:10:54.46072 2024-09-11 09:10:54.46073 plmef 10287 R rec 73879717-6a30-463a-95da-f2afa898cbfe +2024-09-11 09:10:54.540413 2024-09-11 09:10:54.540424 plmef 10288 R rec 7ca5cde4-9073-4cd7-bc92-cf3461b57824 +2024-09-11 09:10:54.592476 2024-09-11 09:10:54.592482 plmef 10289 R rec 5636e1c2-8197-4122-9752-8bb0d9a6f689 +2024-09-11 09:10:54.650992 2024-09-11 09:10:54.650998 plmef 10290 R rec 743e6c4a-2908-44c9-83a8-636162416502 +2024-09-11 09:10:54.709474 2024-09-11 09:10:54.70948 plmef 10291 R rec 89265bc4-6f19-4ebd-9fdf-c0c76d22d628 +2024-09-11 09:10:54.772471 2024-09-11 09:10:54.772481 plmef 10292 R rec e7807a62-5dd5-4313-bca4-bb4e23ce497d +2024-09-11 09:10:54.836543 2024-09-11 09:10:54.836554 plmef 10293 R rec 37b6c3ac-3974-4169-85fb-75ed0a919b74 +2024-09-11 09:10:54.901524 2024-09-11 09:10:54.901536 plmef 10294 R rec 12112441-7793-4e59-816a-f817ee7666ea +2024-09-11 09:10:54.973349 2024-09-11 09:10:54.973355 plmef 10295 R rec 83a942ac-ff4d-47a3-b349-ccf7e6d3f1ec +2024-09-11 09:10:55.034183 2024-09-11 09:10:55.034194 plmef 10296 R rec 7bc6cf20-392d-4b3c-8288-23aeb473e3d2 +2024-09-11 09:10:55.100809 2024-09-11 09:10:55.10082 plmef 10297 R rec ee8a432e-3c60-4d01-b7cf-e9e9d49ce55a +2024-09-11 09:10:55.155398 2024-09-11 09:10:55.155402 plmef 10298 R rec b0eb177c-d704-47a7-ba2f-733e13106147 +2024-09-11 09:10:55.226168 2024-09-11 09:10:55.226174 plmef 10299 R rec d1b31f7a-cd71-48ee-994a-dc525e8c88dd +2024-09-11 09:10:55.287865 2024-09-11 09:10:55.287876 plmef 10300 R rec d3b47cff-9c70-443d-b541-9190d5039a2e +2024-09-11 09:10:55.363511 2024-09-11 09:10:55.363517 plmef 10301 R rec eef67fa7-9ace-45c7-9225-5d34b5d549f2 +2024-09-11 09:10:55.42996 2024-09-11 09:10:55.429971 plmef 10302 R rec 466c497c-1b36-4d34-95ff-c9ce796a4dc4 +2024-09-11 09:10:55.510553 2024-09-11 09:10:55.510563 plmef 10303 R rec 026830f5-4d88-4399-b438-eab7535612bf +2024-09-11 09:10:55.5673 2024-09-11 09:10:55.567306 plmef 10304 R rec d202517b-9dfb-46d7-9d8a-89f0ac19ce87 +2024-09-11 09:10:55.620735 2024-09-11 09:10:55.620746 plmef 10305 R rec e6125468-39da-45ec-9e47-4aef0a746dcb +2024-09-11 09:10:55.701163 2024-09-11 09:10:55.701174 plmef 10306 R rec cc04857b-e9a4-4dc4-a879-09b04c075f01 +2024-09-11 09:10:55.759975 2024-09-11 09:10:55.75999 plmef 10307 R rec a305e188-276c-4962-ad3e-14980ed2b28e +2024-09-11 09:10:55.831215 2024-09-11 09:10:55.831226 plmef 10308 R rec e9eec8fd-d045-4791-8921-2c114044ed56 +2024-09-11 09:10:55.895545 2024-09-11 09:10:55.895555 plmef 10309 R rec 466a05b7-ed1c-4dff-beb7-a3a32aea0e27 +2024-09-11 09:10:55.956805 2024-09-11 09:10:55.956818 plmef 10310 R rec bd4d6c88-bfe4-4ef0-bc7e-54984429c35b +2024-09-11 09:10:56.037167 2024-09-11 09:10:56.037172 plmef 10311 R rec e9cb2312-ab1b-49a8-acaf-edca9a3b186c +2024-09-11 09:10:56.093473 2024-09-11 09:10:56.093479 plmef 10312 R rec 8eccd719-7150-484a-890f-f7c4463ed037 +2024-09-11 09:10:56.15882 2024-09-11 09:10:56.158833 plmef 10313 R rec f52067ac-ba0b-4f70-b1a5-531097a446d2 +2024-09-11 09:10:56.227426 2024-09-11 09:10:56.227433 plmef 10314 R rec ff417e25-beec-4636-8b24-e7ace09639bd +2024-09-11 09:10:56.291264 2024-09-11 09:10:56.29127 plmef 10315 R rec 0cdf3201-2057-4191-925c-4e1633ed8cb1 +2024-09-11 09:10:56.356366 2024-09-11 09:10:56.356393 plmef 10316 R rec c372bdaf-433e-4992-b237-1b5c0e64a7a3 +2024-09-11 09:10:56.430464 2024-09-11 09:10:56.430476 plmef 10317 R rec 911c06ba-d6d5-4129-8994-67062038083d +2024-09-11 09:10:56.488365 2024-09-11 09:10:56.488378 plmef 10318 R rec 0716cbde-ffdc-46a3-b03f-c24c664109b0 +2024-09-11 09:10:56.551947 2024-09-11 09:10:56.551958 plmef 10319 R rec e04a097e-931c-4d1d-9a02-61b0fd996a4a +2024-09-11 09:10:56.612314 2024-09-11 09:10:56.612325 plmef 10320 R rec bb0eaa15-e229-41a8-b13e-d5d10cb61c68 +2024-09-11 09:10:56.680513 2024-09-11 09:10:56.680519 plmef 10321 R rec 5d739b16-bb18-4ee5-bb52-a0f22abffb7e +2024-09-11 09:10:56.745964 2024-09-11 09:10:56.74597 plmef 10322 R rec 5dba4f43-eb7b-48e8-9761-465707858fd1 +2024-09-11 09:10:56.810304 2024-09-11 09:10:56.810314 plmef 10323 R rec 09f3b488-58cb-40dd-9b3b-186b1b4968e4 +2024-09-11 09:10:56.883664 2024-09-11 09:10:56.883675 plmef 10324 R rec 749e3209-c759-4e3e-b894-3633768e10a8 +2024-09-11 09:10:56.951922 2024-09-11 09:10:56.951937 plmef 10325 R rec 402510d7-e740-4b8b-937c-2bd266850268 +2024-09-11 09:10:57.032416 2024-09-11 09:10:57.032427 plmef 10326 R rec 8d07c557-26f5-4b4e-a150-ce8087597217 +2024-09-11 09:10:57.0873 2024-09-11 09:10:57.087305 plmef 10327 R rec 4e44e63d-4428-434f-b33d-e91fd829542b +2024-09-11 09:10:57.145858 2024-09-11 09:10:57.145869 plmef 10328 R rec ce7676cc-6633-4fd5-af13-eee6a6eecbac +2024-09-11 09:10:57.215397 2024-09-11 09:10:57.215401 plmef 10329 R rec c299b186-d109-42cc-a4c0-1cea294ffea0 +2024-09-11 09:10:57.263369 2024-09-11 09:10:57.263374 plmef 10330 R rec 28c9a811-6dcf-4b4a-becd-356f25b5a9f7 +2024-09-11 09:10:57.329494 2024-09-11 09:10:57.329505 plmef 10331 R rec 2184f39d-f58c-43d8-9645-d91805e199e8 +2024-09-11 09:10:57.390173 2024-09-11 09:10:57.390183 plmef 10332 R rec 92944bef-9488-4d7b-884a-bdc368254fce +2024-09-11 09:10:57.456439 2024-09-11 09:10:57.456445 plmef 10333 R rec dfbe6494-32d7-44bf-8254-d027a01c4326 +2024-09-11 09:10:57.539132 2024-09-11 09:10:57.539142 plmef 10334 R rec e22fb5c7-e2a4-48fd-bd82-a3041bf14125 +2024-09-11 09:10:57.595535 2024-09-11 09:10:57.59554 plmef 10335 R rec 6575475d-1b4b-4460-8155-f84369e6f61a +2024-09-11 09:10:57.670456 2024-09-11 09:10:57.670483 plmef 10336 R rec a0818db9-cebd-4b61-85f7-5f2c76d98b02 +2024-09-11 09:10:57.732686 2024-09-11 09:10:57.732691 plmef 10337 R rec 40287aa8-b40a-43c1-8507-601e1750a3dd +2024-09-11 09:10:57.799459 2024-09-11 09:10:57.799468 plmef 10338 R rec 9c26b746-90d7-42b6-8f95-045e09d3005f +2024-09-11 09:10:57.858648 2024-09-11 09:10:57.858658 plmef 10339 R rec af36803b-6dac-41a9-8311-69c79ee7449e +2024-09-11 09:10:57.926342 2024-09-11 09:10:57.926351 plmef 10340 R rec 78a5b1ef-7b32-4d7d-ae34-9d3938af9ce4 +2024-09-11 09:10:57.988062 2024-09-11 09:10:57.988073 plmef 10341 R rec 117e7c5e-5eb5-4e14-a6e5-2f57e2144192 +2024-09-11 09:10:58.058087 2024-09-11 09:10:58.058093 plmef 10342 R rec eb54b5b2-7186-4ca2-8d0c-17a150468082 +2024-09-11 09:10:58.113859 2024-09-11 09:10:58.113871 plmef 10343 R rec df0fc2b1-63b1-49a8-afcc-214c4a15d6ae +2024-09-11 09:10:58.179579 2024-09-11 09:10:58.17959 plmef 10344 R rec 0a767375-be85-46d1-9617-e86f51b7e181 +2024-09-11 09:10:58.23854 2024-09-11 09:10:58.238545 plmef 10345 R rec cf519bd5-e623-4e6a-9e22-98726a5c41b3 +2024-09-11 09:10:58.312427 2024-09-11 09:10:58.312437 plmef 10346 R rec d66e53e2-0a1e-4c72-894f-9b52061f6ffb +2024-09-11 09:10:58.391436 2024-09-11 09:10:58.391448 plmef 10347 R rec 49c46e70-492b-45b3-9cfb-1fad4cdf306e +2024-09-11 09:10:58.456213 2024-09-11 09:10:58.456224 plmef 10348 R rec df582dc8-5c7f-499d-ac2b-9f4fdc1a88e1 +2024-09-11 09:10:58.523316 2024-09-11 09:10:58.523328 plmef 10349 R rec 9cc572e9-50b4-4f80-8590-28900d2550cf +2024-09-11 09:10:58.589185 2024-09-11 09:10:58.58919 plmef 10350 R rec 43e45e58-98fb-48c4-ac37-c30f08eb0065 +2024-09-11 09:10:58.657391 2024-09-11 09:10:58.657402 plmef 10351 R rec 5b19eb47-fd00-4144-b144-95caf16830a3 +2024-09-11 09:10:58.717092 2024-09-11 09:10:58.717097 plmef 10352 R rec d0ceb97a-c0dd-4bf2-beed-0235cb44f237 +2024-09-11 09:10:58.778294 2024-09-11 09:10:58.778305 plmef 10353 R rec 4c7bb73d-8512-4d8a-a51f-78d0a2ea73da +2024-09-11 09:10:58.868906 2024-09-11 09:10:58.868911 plmef 10354 R rec 0c7bc22d-c0ef-4030-b069-1a6d235f8dbd +2024-09-11 09:10:58.930801 2024-09-11 09:10:58.93081 plmef 10355 R rec 3f6ff911-57a2-46f1-972f-73a3bd46b199 +2024-09-11 09:10:59.013754 2024-09-11 09:10:59.01376 plmef 10356 R rec e5c1a1b0-8791-4715-9d5e-d0e85ca1c38b +2024-09-11 09:10:59.066758 2024-09-11 09:10:59.066764 plmef 10357 R rec 27f91903-c452-4321-b694-44db6b30c4b6 +2024-09-11 09:10:59.124004 2024-09-11 09:10:59.124015 plmef 10358 R rec 97a7e9b0-3bc2-4379-9246-0ef97f14d531 +2024-09-11 09:10:59.180021 2024-09-11 09:10:59.180031 plmef 10359 R rec 9948133a-e539-476f-a55f-ad9bd1398c19 +2024-09-11 09:10:59.234606 2024-09-11 09:10:59.234611 plmef 10360 R rec 2c42cb38-b3ed-4f38-bc74-f0474a925f6c +2024-09-11 09:10:59.298108 2024-09-11 09:10:59.298118 plmef 10361 R rec 64b984e9-254f-4cc9-87c8-888a1de8083a +2024-09-11 09:10:59.370209 2024-09-11 09:10:59.37022 plmef 10362 R rec 7934fa09-5066-4c97-b985-6e2e081dbae0 +2024-09-11 09:10:59.433364 2024-09-11 09:10:59.433376 plmef 10363 R rec e43927a0-3b0b-4460-ad59-bcb93fd64f25 +2024-09-11 09:10:59.496564 2024-09-11 09:10:59.496575 plmef 10364 R rec ff100ecc-9b5f-4b4b-898e-c8ff63b6a68f +2024-09-11 09:10:59.578418 2024-09-11 09:10:59.578424 plmef 10365 R rec 044b8508-168a-4bff-8d34-02cf3d434146 +2024-09-11 09:10:59.637172 2024-09-11 09:10:59.637182 plmef 10366 R rec 58e391b8-e56b-464f-979e-d7ee4d3d64e5 +2024-09-11 09:10:59.712325 2024-09-11 09:10:59.712331 plmef 10367 R rec ab712ab5-5032-4999-86cd-06d44d40b25f +2024-09-11 09:10:59.760039 2024-09-11 09:10:59.760045 plmef 10368 R rec 3db215c0-f5ec-4c8f-98cb-a5d61948a110 +2024-09-11 09:10:59.81827 2024-09-11 09:10:59.818274 plmef 10369 R rec 7f643bd8-606b-4c4e-992d-3eb72d1c6070 +2024-09-11 09:10:59.87863 2024-09-11 09:10:59.878636 plmef 10370 R rec 5718ca7a-9293-47b2-9e7a-f0ac9af73c65 +2024-09-11 09:10:59.942226 2024-09-11 09:10:59.942237 plmef 10371 R rec 74dd9d24-511f-4051-b532-16d416ad50cc +2024-09-11 09:11:00.015779 2024-09-11 09:11:00.015784 plmef 10372 R rec 9bb81914-759f-4cc8-a760-29ede9c9577d +2024-09-11 09:11:00.062478 2024-09-11 09:11:00.062488 plmef 10373 R rec 1c3ff62d-add8-47f0-b1e3-d07f816d0ef9 +2024-09-11 09:11:00.134424 2024-09-11 09:11:00.134434 plmef 10374 R rec 80073c9f-3ab9-4e9b-837c-b5c7b2a099dc +2024-09-11 09:11:00.205773 2024-09-11 09:11:00.205778 plmef 10375 R rec 5e5fed16-50c8-4d57-a1a3-cbebc48855eb +2024-09-11 09:11:00.25997 2024-09-11 09:11:00.259979 plmef 10376 R rec a550d065-7083-4543-9994-eabbde3eeb3b +2024-09-11 09:11:00.316645 2024-09-11 09:11:00.31665 plmef 10377 R rec 3fb3e658-a85a-49f0-b6c8-36fa118d49de +2024-09-11 09:11:00.364661 2024-09-11 09:11:00.364666 plmef 10378 R rec 8d3f9cf3-5e2c-4055-8ede-91627ad56fc4 +2024-09-11 09:11:00.409847 2024-09-11 09:11:00.409852 plmef 10379 R rec 4ec6597b-e477-4535-9f7d-628b460f595f +2024-09-11 09:11:00.454332 2024-09-11 09:11:00.454337 plmef 10380 R rec 0a0826e6-ada1-48a7-9aae-0f423b0298ce +2024-09-11 09:11:00.501007 2024-09-11 09:11:00.501016 plmef 10381 R rec 670b0ce8-f97f-47ab-8a85-d77ad6478ace +2024-09-11 09:11:00.56262 2024-09-11 09:11:00.562631 plmef 10382 R rec 1a5740ef-e2d9-4b68-b7da-ce1bf81ff12b +2024-09-11 09:11:00.621181 2024-09-11 09:11:00.621186 plmef 10383 R rec 06574fb6-ad30-48cb-a7bb-3943bf970592 +2024-09-11 09:11:00.698833 2024-09-11 09:11:00.698844 plmef 10384 R rec a2e4ea96-d09c-4151-8f4f-356fd92c2bea +2024-09-11 09:11:00.761281 2024-09-11 09:11:00.761286 plmef 10385 R rec e8fbfb9b-6b26-4a2a-bb5a-325920d80c7b +2024-09-11 09:11:00.821985 2024-09-11 09:11:00.821991 plmef 10386 R rec 1dd62dc8-205d-423e-85a4-e281937c750d +2024-09-11 09:11:00.879368 2024-09-11 09:11:00.879391 plmef 10387 R rec fbdd2826-18d4-452b-bd44-7916816e0bbb +2024-09-11 09:11:00.941426 2024-09-11 09:11:00.941432 plmef 10388 R rec 3506587c-2ea8-4d14-9947-101d99acda57 +2024-09-11 09:11:00.996761 2024-09-11 09:11:00.996772 plmef 10389 R rec 232d93ba-c1c0-4ab2-ad51-28524906eafb +2024-09-11 09:11:01.06355 2024-09-11 09:11:01.06356 plmef 10390 R rec aac28ae9-d3ed-4217-9d51-1be78278ac8e +2024-09-11 09:11:01.115817 2024-09-11 09:11:01.115828 plmef 10391 R rec b7b54b7d-af3b-4d09-9004-5a7cad307745 +2024-09-11 09:11:01.182641 2024-09-11 09:11:01.182651 plmef 10392 R rec 247b72be-4b10-4d47-8217-bcbc19c085b3 +2024-09-11 09:11:01.250075 2024-09-11 09:11:01.250085 plmef 10393 R rec bd0f61bb-5876-4152-bf78-e504366e202e +2024-09-11 09:11:01.315545 2024-09-11 09:11:01.315555 plmef 10394 R rec ba1c8fa4-7021-4928-ad2f-e29eb30e9c04 +2024-09-11 09:11:01.375439 2024-09-11 09:11:01.37545 plmef 10395 R rec 26997ae7-57cc-4b4c-ac14-aa56c897853b +2024-09-11 09:11:01.443314 2024-09-11 09:11:01.443325 plmef 10396 R rec a5e57323-3998-4476-96a6-202cbe710338 +2024-09-11 09:11:01.512018 2024-09-11 09:11:01.512151 plmef 10397 R rec ab061461-e280-4b35-bf02-c20ab0958e70 +2024-09-11 09:11:01.581024 2024-09-11 09:11:01.581029 plmef 10398 R rec e99803cd-f71e-454c-9654-91d91fb36de6 +2024-09-11 09:11:01.628209 2024-09-11 09:11:01.628214 plmef 10399 R rec 9afd037a-ddcc-433c-a357-0d9ea4297390 +2024-09-11 09:11:01.694995 2024-09-11 09:11:01.695006 plmef 10400 R rec c9bc95b6-4992-4f04-9ea7-94873cbf3a65 +2024-09-11 09:11:01.768331 2024-09-11 09:11:01.768341 plmef 10401 R rec ca521492-d960-404d-9eec-d184ed6239c6 +2024-09-11 09:11:01.841232 2024-09-11 09:11:01.841242 plmef 10402 R rec 2e5eebe5-b776-4941-920c-9640033bed79 +2024-09-11 09:11:01.919603 2024-09-11 09:11:01.919613 plmef 10403 R rec 60dc203f-1122-4a57-8f28-65d377c42288 +2024-09-11 09:11:01.996339 2024-09-11 09:11:01.99635 plmef 10404 R rec 1fd55023-b459-4850-b360-3bc637846364 +2024-09-11 09:11:02.071819 2024-09-11 09:11:02.071825 plmef 10405 R rec cfea5173-970c-4a04-8c80-f60d2b0cd0f2 +2024-09-11 09:11:02.135123 2024-09-11 09:11:02.135129 plmef 10406 R rec dbf01dee-7a34-486b-aedc-bea11a06fddf +2024-09-11 09:11:02.200063 2024-09-11 09:11:02.200072 plmef 10407 R rec efd51b48-d92d-4ed5-bfbf-191e61a2d812 +2024-09-11 09:11:02.260396 2024-09-11 09:11:02.260406 plmef 10408 R rec 8b74d121-f635-4154-91ae-8ddc58f0a6c9 +2024-09-11 09:11:02.321436 2024-09-11 09:11:02.321446 plmef 10409 R rec fc826bd6-0eaf-4c96-9724-39e1deb64914 +2024-09-11 09:11:02.387088 2024-09-11 09:11:02.387093 plmef 10410 R rec 8ea1e609-070f-49d3-9021-33a176d38f98 +2024-09-11 09:11:02.451772 2024-09-11 09:11:02.451778 plmef 10411 R rec 73f8faf1-ec0e-4146-9b3f-166e31b189dc +2024-09-11 09:11:02.52403 2024-09-11 09:11:02.52404 plmef 10412 R rec e70af394-4f68-48a9-a6f9-e07f65af9d9e +2024-09-11 09:11:02.586316 2024-09-11 09:11:02.58632 plmef 10413 R rec 317d338a-42af-4e46-b25e-b54e69545628 +2024-09-11 09:11:02.645625 2024-09-11 09:11:02.64563 plmef 10414 R rec 8a27f5d9-708e-451e-af72-af4b249e082c +2024-09-11 09:11:02.705154 2024-09-11 09:11:02.705165 plmef 10415 R rec 12897292-ea33-4b24-9e6e-99776d4609d7 +2024-09-11 09:11:02.762615 2024-09-11 09:11:02.762625 plmef 10416 R rec 345f4bc8-e1a3-4344-9ea0-e32e43baf0c2 +2024-09-11 09:11:02.832458 2024-09-11 09:11:02.832467 plmef 10417 R rec 70202833-cfc1-4364-9502-fcda9496ba5c +2024-09-11 09:11:02.903672 2024-09-11 09:11:02.903677 plmef 10418 R rec 7f23305c-9b0c-44d9-9c3f-3896c64a7ed7 +2024-09-11 09:11:02.964644 2024-09-11 09:11:02.964655 plmef 10419 R rec 5cfa974d-8eec-4677-8a3b-90b4d34b3c09 +2024-09-11 09:11:03.045361 2024-09-11 09:11:03.045372 plmef 10420 R rec f3617ab3-6645-4728-9756-0d4d256757b5 +2024-09-11 09:11:03.099697 2024-09-11 09:11:03.099701 plmef 10421 R rec 8c66bfff-16d4-4659-9e8b-695eefccdfc3 +2024-09-11 09:11:03.158473 2024-09-11 09:11:03.158484 plmef 10422 R rec a51e1ddb-1fca-46fd-a9c8-e7f4be97372b +2024-09-11 09:11:03.233966 2024-09-11 09:11:03.233976 plmef 10423 R rec ae32935b-72c1-41c2-b3e9-fa2d600a4412 +2024-09-11 09:11:03.294673 2024-09-11 09:11:03.294684 plmef 10424 R rec 809c9b8d-e9ec-48a9-b27e-4bd84bab3a57 +2024-09-11 09:11:03.351588 2024-09-11 09:11:03.351598 plmef 10425 R rec 847f9bd2-89d3-4929-a0b9-b277d7febb25 +2024-09-11 09:11:03.418117 2024-09-11 09:11:03.418127 plmef 10426 R rec 80fc791f-19a8-448a-b79c-373b9561b172 +2024-09-11 09:11:03.483321 2024-09-11 09:11:03.483331 plmef 10427 R rec 9c6f7bf5-cb0d-4fa5-ae77-c75374c9c165 +2024-09-11 09:11:03.548063 2024-09-11 09:11:03.548069 plmef 10428 R rec 08136d5f-3a28-4ffa-a492-7e658553bdc6 +2024-09-11 09:11:03.600699 2024-09-11 09:11:03.600703 plmef 10429 R rec dd1d1b51-542f-4f91-ac35-9de2c45efda8 +2024-09-11 09:11:03.649878 2024-09-11 09:11:03.649883 plmef 10430 R rec 3b222d54-8e43-481a-96b6-0baee921d5e5 +2024-09-11 09:11:03.706043 2024-09-11 09:11:03.706048 plmef 10431 R rec b40d4ca8-6db6-46a6-8bb3-8b1a26f53305 +2024-09-11 09:11:03.75399 2024-09-11 09:11:03.753994 plmef 10432 R rec 42c34dde-5653-474b-8b7c-ceaa015412ae +2024-09-11 09:11:03.808688 2024-09-11 09:11:03.808697 plmef 10433 R rec 9915cbf6-e017-42fc-ad5c-30c8347ed3b4 +2024-09-11 09:11:03.875739 2024-09-11 09:11:03.87575 plmef 10434 R rec 82bbedbb-0ebf-4823-ad6d-cac32c01a4e9 +2024-09-11 09:11:03.940966 2024-09-11 09:11:03.940976 plmef 10435 R rec 9a2e9d3b-42f1-479b-a020-54f1af190cc2 +2024-09-11 09:11:04.008276 2024-09-11 09:11:04.008281 plmef 10436 R rec dae03935-cdfc-4c7d-a16f-ada66f6e58ba +2024-09-11 09:11:04.077851 2024-09-11 09:11:04.077857 plmef 10437 R rec ad491ea7-e72e-4707-88ce-e5cd9e132a1b +2024-09-11 09:11:04.128834 2024-09-11 09:11:04.128839 plmef 10438 R rec bf03ef41-6d39-4a1d-99ce-3a7d395eb368 +2024-09-11 09:11:04.18967 2024-09-11 09:11:04.189683 plmef 10439 R rec 71ad593e-b570-409e-9672-bf7522803436 +2024-09-11 09:11:04.250071 2024-09-11 09:11:04.250076 plmef 10440 R rec 3a0a3833-5778-4cb5-a2a4-ad6c370ada48 +2024-09-11 09:11:04.317978 2024-09-11 09:11:04.317989 plmef 10441 R rec 7b6930cc-c9ca-4ea3-a469-eb5caab5655f +2024-09-11 09:11:04.395265 2024-09-11 09:11:04.395275 plmef 10442 R rec 99a1e66c-bd33-4805-9dde-21f8d94fd744 +2024-09-11 09:11:04.455792 2024-09-11 09:11:04.455798 plmef 10443 R rec 03118099-7cf7-4ac0-ad17-61f2a02bb5e7 +2024-09-11 09:11:04.515592 2024-09-11 09:11:04.515603 plmef 10444 R rec 39338484-f475-4ab8-b007-e395e03b3ecb +2024-09-11 09:11:04.580261 2024-09-11 09:11:04.580267 plmef 10445 R rec 2407021c-bfa2-4a51-b451-4d28acbb0f50 +2024-09-11 09:11:04.634083 2024-09-11 09:11:04.634094 plmef 10446 R rec 1db1fec5-84e7-463d-a6d2-7f6bf8aa6632 +2024-09-11 09:11:04.698018 2024-09-11 09:11:04.698028 plmef 10447 R rec 9e6a71a5-2d4a-4636-9581-ed39ace553ab +2024-09-11 09:11:04.749752 2024-09-11 09:11:04.749757 plmef 10448 R rec e4749638-1a80-4531-a740-96342b75b293 +2024-09-11 09:11:04.815269 2024-09-11 09:11:04.815279 plmef 10449 R rec 024cb0b6-7eb4-4271-bc26-d5c55e685fda +2024-09-11 09:11:04.87256 2024-09-11 09:11:04.872565 plmef 10450 R rec 18f25a31-271e-4e4e-a02d-d7188772b7ec +2024-09-11 09:11:04.931908 2024-09-11 09:11:04.931917 plmef 10451 R rec c1d468ed-bb96-4aac-9b79-976a05f5340f +2024-09-11 09:11:05.0051 2024-09-11 09:11:05.00511 plmef 10452 R rec 3aae10f9-42f2-4374-9bee-5457a6651f19 +2024-09-11 09:11:05.080748 2024-09-11 09:11:05.080753 plmef 10453 R rec f27f6299-6618-4625-bcd0-ee578468ef9a +2024-09-11 09:11:05.132968 2024-09-11 09:11:05.132976 plmef 10454 R rec c21006d5-f423-480d-b232-298258c73522 +2024-09-11 09:11:05.198235 2024-09-11 09:11:05.198246 plmef 10455 R rec 92fbb4cb-ad62-4327-849b-4f625c7d8db3 +2024-09-11 09:11:05.249968 2024-09-11 09:11:05.249973 plmef 10456 R rec 9bb4cf40-86ac-4741-92b4-1fe8846187be +2024-09-11 09:11:05.30792 2024-09-11 09:11:05.307931 plmef 10457 R rec 3c93ffdc-f39e-4621-bf4d-6d680f8c7b41 +2024-09-11 09:11:05.368258 2024-09-11 09:11:05.368266 plmef 10458 R rec d3f02c48-af1e-4516-a854-d8031ad98989 +2024-09-11 09:11:05.427338 2024-09-11 09:11:05.427348 plmef 10459 R rec 6bf1cfba-a019-4716-91c7-b9e5d95a48d0 +2024-09-11 09:11:05.495242 2024-09-11 09:11:05.495252 plmef 10460 R rec 27f29f42-9174-4dc0-8cd8-3af5c63107bf +2024-09-11 09:11:05.565682 2024-09-11 09:11:05.565688 plmef 10461 R rec cf631cd8-c916-4533-bbf3-462f1563320c +2024-09-11 09:11:05.649273 2024-09-11 09:11:05.649284 plmef 10462 R rec 5217eb2a-b635-4228-87f3-d312ba6bec68 +2024-09-11 09:11:05.725549 2024-09-11 09:11:05.725558 plmef 10463 R rec 50edbfa0-17ac-405c-bcca-a626f3a7ead2 +2024-09-11 09:11:05.801312 2024-09-11 09:11:05.801323 plmef 10464 R rec 22ea057f-88be-45de-8c96-c11663726739 +2024-09-11 09:11:05.878776 2024-09-11 09:11:05.878786 plmef 10465 R rec 8460e1d4-eea1-44a9-bf1d-5a5248c6d5a7 +2024-09-11 09:11:05.957827 2024-09-11 09:11:05.957831 plmef 10466 R rec 58be8c30-9212-49aa-8219-50079d09b166 +2024-09-11 09:11:06.021915 2024-09-11 09:11:06.02192 plmef 10467 R rec fcd06f40-4b7d-4a99-a352-4e84157d92ca +2024-09-11 09:11:06.082644 2024-09-11 09:11:06.082649 plmef 10468 R rec 5635a1bc-b511-40ea-8a20-27130edd0fd6 +2024-09-11 09:11:06.156981 2024-09-11 09:11:06.156991 plmef 10469 R rec d45f56c8-98b9-4f18-b6c1-87cdb66739d4 +2024-09-11 09:11:06.231464 2024-09-11 09:11:06.231469 plmef 10470 R rec 30a0cd4c-38e6-4df7-894f-7e007816336e +2024-09-11 09:11:06.289973 2024-09-11 09:11:06.289979 plmef 10471 R rec 4e7453b0-4d60-4b23-957f-1c1605d4b710 +2024-09-11 09:11:06.352351 2024-09-11 09:11:06.352362 plmef 10472 R rec 65ce0b44-c5b2-4579-bae3-02ed4a1bcc75 +2024-09-11 09:11:06.417139 2024-09-11 09:11:06.417149 plmef 10473 R rec 73335d00-1c91-49d9-b16a-f21b7215fbb8 +2024-09-11 09:11:06.481918 2024-09-11 09:11:06.481928 plmef 10474 R rec d9d030f2-dc28-4773-8dad-a3bb93236c7c +2024-09-11 09:11:06.539521 2024-09-11 09:11:06.539529 plmef 10475 R rec 5261ad2d-aac6-44a3-aa60-175dc6df6ebf +2024-09-11 09:11:06.599401 2024-09-11 09:11:06.599406 plmef 10476 R rec 42e38ad0-8d56-4c2b-a52f-04b630aa769d +2024-09-11 09:11:06.661553 2024-09-11 09:11:06.661564 plmef 10477 R rec f4e9d22b-e436-4724-83b9-ea39bd158c6b +2024-09-11 09:11:06.733289 2024-09-11 09:11:06.733299 plmef 10478 R rec 6fafe15f-7b9e-4551-9358-16126710204e +2024-09-11 09:11:06.792413 2024-09-11 09:11:06.792424 plmef 10479 R rec 2e45555c-d9a7-4a28-9717-e5a2d3658fdf +2024-09-11 09:11:06.858179 2024-09-11 09:11:06.858189 plmef 10480 R rec 5c264512-f119-4887-b1b4-6fc9a5c473ef +2024-09-11 09:11:06.937733 2024-09-11 09:11:06.937743 plmef 10481 R rec 4f77d5a9-0eec-4b96-b404-0f2e4f235d91 +2024-09-11 09:11:07.01113 2024-09-11 09:11:07.011141 plmef 10482 R rec aa600bdf-7cdc-4f46-909a-2871203682e9 +2024-09-11 09:11:07.07678 2024-09-11 09:11:07.076786 plmef 10483 R rec cd930b2c-17ae-43dc-a7b0-30515323fd42 +2024-09-11 09:11:07.125467 2024-09-11 09:11:07.125473 plmef 10484 R rec bef7f825-8e37-49d0-9913-810f098afd7b +2024-09-11 09:11:07.180072 2024-09-11 09:11:07.180084 plmef 10485 R rec 7781e132-4de7-4ba6-8fca-033eae1028e9 +2024-09-11 09:11:07.241134 2024-09-11 09:11:07.241145 plmef 10486 R rec 7249f834-318d-40ac-a7b6-1801619d3ec5 +2024-09-11 09:11:07.302021 2024-09-11 09:11:07.30203 plmef 10487 R rec d0872a35-8967-45ce-9872-24f0a291ec5b +2024-09-11 09:11:07.369209 2024-09-11 09:11:07.369219 plmef 10488 R rec ea4c4bb4-1cf3-4fd1-903e-5b47537128f4 +2024-09-11 09:11:07.432189 2024-09-11 09:11:07.432205 plmef 10489 R rec e4da48aa-e8dc-44b7-ae8c-155452f906e9 +2024-09-11 09:11:07.493512 2024-09-11 09:11:07.493523 plmef 10490 R rec de340018-8c4b-4945-80ed-e6a0e11fecbc +2024-09-11 09:11:07.550522 2024-09-11 09:11:07.550526 plmef 10491 R rec d3c370a5-94b7-4c6f-9f86-5f39977e33c0 +2024-09-11 09:11:07.601599 2024-09-11 09:11:07.601604 plmef 10492 R rec 0c82d192-f566-464d-8f93-475042731a8d +2024-09-11 09:11:07.647954 2024-09-11 09:11:07.64796 plmef 10493 R rec 73b09e12-6714-4d10-9bed-7336f7bd8fd5 +2024-09-11 09:11:07.754487 2024-09-11 09:11:07.754492 plmef 10494 R rec fce795fa-1b85-48bb-b24c-0677421cfa7e +2024-09-11 09:11:07.830567 2024-09-11 09:11:07.830577 plmef 10495 R rec b2b15435-308e-45b3-bd31-e0c2db33b09f +2024-09-11 09:11:07.892163 2024-09-11 09:11:07.892174 plmef 10496 R rec 4c002b40-d1cb-451d-b666-5be33f7c73b3 +2024-09-11 09:11:07.95113 2024-09-11 09:11:07.95114 plmef 10497 R rec 516c89fa-a32c-459b-ad98-b13d2615f25b +2024-09-11 09:11:08.023583 2024-09-11 09:11:08.023594 plmef 10498 R rec 2d74a62e-e5fe-4c2e-916c-b172489c89f7 +2024-09-11 09:11:08.085142 2024-09-11 09:11:08.085148 plmef 10499 R rec d7179ba4-65ca-4f52-b438-ff7ad0e545e6 +2024-09-11 09:11:08.138321 2024-09-11 09:11:08.138332 plmef 10500 R rec 41fb73e1-96e2-4228-a9d3-2fcc01474afa +2024-09-11 09:11:08.211307 2024-09-11 09:11:08.211313 plmef 10501 R rec 894bfa81-02ca-49be-a94c-1ab5709e4422 +2024-09-11 09:11:08.273001 2024-09-11 09:11:08.273011 plmef 10502 R rec 049bfd9c-2379-44cd-bfdc-768252a91234 +2024-09-11 09:11:08.343425 2024-09-11 09:11:08.343435 plmef 10503 R rec ab00d2af-a8b2-4f19-a1ba-b12df34d5d33 +2024-09-11 09:11:08.40733 2024-09-11 09:11:08.40734 plmef 10504 R rec 4a146cc2-8cd3-4c9a-bd4a-8c2ab132478a +2024-09-11 09:11:08.480732 2024-09-11 09:11:08.480741 plmef 10505 R rec 40dc15e6-1394-45c8-b661-a9b806a40e09 +2024-09-11 09:11:08.55053 2024-09-11 09:11:08.55054 plmef 10506 R rec 07f90397-0407-49cf-973d-bfbf2d2b6dd7 +2024-09-11 09:11:08.606686 2024-09-11 09:11:08.606692 plmef 10507 R rec 3399638b-f477-4b28-b999-ac6c2a860221 +2024-09-11 09:11:08.660015 2024-09-11 09:11:08.660025 plmef 10508 R rec 70d68f5e-9ea5-4b58-80fb-c900953307ad +2024-09-11 09:11:08.720786 2024-09-11 09:11:08.720791 plmef 10509 R rec eec915f4-9577-4ee7-bbc8-b68b904a2299 +2024-09-11 09:11:08.780134 2024-09-11 09:11:08.780138 plmef 10510 R rec 397ba708-7236-4397-b1a1-16b03a79d5c5 +2024-09-11 09:11:08.839539 2024-09-11 09:11:08.839545 plmef 10511 R rec 20e3aa36-3b3a-4d5d-b427-2151da6494c0 +2024-09-11 09:11:08.904984 2024-09-11 09:11:08.904989 plmef 10512 R rec 7bb49d54-187e-4717-a315-03d4872512fb +2024-09-11 09:11:08.963185 2024-09-11 09:11:08.963195 plmef 10513 R rec 74ea6ae4-a6fa-4427-960b-020a4564d5aa +2024-09-11 09:11:09.03156 2024-09-11 09:11:09.031569 plmef 10514 R rec f71d2766-57b3-4f22-af7e-1afb267474c9 +2024-09-11 09:11:09.089591 2024-09-11 09:11:09.089596 plmef 10515 R rec 23607ea1-a45c-4f8b-b03a-ddfc065ae357 +2024-09-11 09:11:09.137848 2024-09-11 09:11:09.137852 plmef 10516 R rec 617bbc5e-599c-4faf-b8b8-ae25a628c338 +2024-09-11 09:11:09.191033 2024-09-11 09:11:09.191043 plmef 10517 R rec 5b81b754-6be5-446f-bc05-3e28a9a90eb9 +2024-09-11 09:11:09.244909 2024-09-11 09:11:09.244915 plmef 10518 R rec 8502abea-40ef-4d00-afe9-852640f59883 +2024-09-11 09:11:09.299641 2024-09-11 09:11:09.299651 plmef 10519 R rec 427d6613-f70b-4802-88f4-ef4cc180e4b5 +2024-09-11 09:11:09.363889 2024-09-11 09:11:09.363899 plmef 10520 R rec fa66f4a3-e8e9-429a-93d3-ccf4f982e4f5 +2024-09-11 09:11:09.433277 2024-09-11 09:11:09.433288 plmef 10521 R rec d27688ac-b48d-40e9-a525-daf512d12984 +2024-09-11 09:11:09.504459 2024-09-11 09:11:09.504471 plmef 10522 R rec 133a8c8c-d959-4743-a1da-15b7373fdeaa +2024-09-11 09:11:09.580064 2024-09-11 09:11:09.580076 plmef 10523 R rec 8316fcd3-926c-415f-94e7-78d85d937d23 +2024-09-11 09:11:09.629983 2024-09-11 09:11:09.629989 plmef 10524 R rec b1a84e32-9c55-478b-bff4-41dfdeb0992e +2024-09-11 09:11:09.690606 2024-09-11 09:11:09.690617 plmef 10525 R rec fdc9dac1-0acb-4a62-8a35-dbe807bc8c86 +2024-09-11 09:11:09.752532 2024-09-11 09:11:09.752544 plmef 10526 R rec a41c45b0-040e-46b3-8dbb-92bdd43c846d +2024-09-11 09:11:09.82015 2024-09-11 09:11:09.82016 plmef 10527 R rec 86d90c58-dfe2-4614-a11d-c684bc02c58a +2024-09-11 09:11:09.889889 2024-09-11 09:11:09.889899 plmef 10528 R rec 48580d2f-9fba-4403-8246-957ef3ae70a1 +2024-09-11 09:11:09.94953 2024-09-11 09:11:09.949541 plmef 10529 R rec fb3b09fc-ea05-4fd7-8cee-7f4ec697ba4f +2024-09-11 09:11:10.022116 2024-09-11 09:11:10.022126 plmef 10530 R rec 5d3d6c56-0869-4fde-a0d6-6782e63e2b8d +2024-09-11 09:11:10.081106 2024-09-11 09:11:10.081112 plmef 10531 R rec b50598b1-89d0-4309-b2a9-7ba929fc7f81 +2024-09-11 09:11:10.138634 2024-09-11 09:11:10.138643 plmef 10532 R rec 6aab830f-8a4d-4ece-b5fb-e51904ebfdf0 +2024-09-11 09:11:10.212793 2024-09-11 09:11:10.212798 plmef 10533 R rec bed0b085-fa5f-4266-808c-a45f16f259d9 +2024-09-11 09:11:10.2689 2024-09-11 09:11:10.268909 plmef 10534 R rec 0208b43a-8f1b-42b9-8646-1f99891f5965 +2024-09-11 09:11:10.330132 2024-09-11 09:11:10.330138 plmef 10535 R rec 28056564-1679-4157-a294-f8a22d56d736 +2024-09-11 09:11:10.39237 2024-09-11 09:11:10.39238 plmef 10536 R rec ff984a8c-e35a-4850-8f32-9b35a460628d +2024-09-11 09:11:10.45981 2024-09-11 09:11:10.459821 plmef 10537 R rec ac15382e-7b31-4184-83e2-c8b91ac48e73 +2024-09-11 09:11:10.518369 2024-09-11 09:11:10.518373 plmef 10538 R rec 208627d9-ec87-4baa-8fe7-d829e0a8cf5c +2024-09-11 09:11:10.582809 2024-09-11 09:11:10.582815 plmef 10539 R rec 2c1491cd-08d6-4b19-94dc-e5c8c89e0263 +2024-09-11 09:11:10.643578 2024-09-11 09:11:10.643583 plmef 10540 R rec 5af93d0c-13c3-49f0-b35d-5722f60e56bd +2024-09-11 09:11:10.716919 2024-09-11 09:11:10.716924 plmef 10541 R rec 452c9453-5705-4478-bb38-4232ee7d6791 +2024-09-11 09:11:10.776799 2024-09-11 09:11:10.77681 plmef 10542 R rec ebce28d5-e068-43a7-9b92-500f4332ec76 +2024-09-11 09:11:10.844031 2024-09-11 09:11:10.844042 plmef 10543 R rec 1a090bb6-f56a-41c4-93cd-60db455d1f87 +2024-09-11 09:11:10.906524 2024-09-11 09:11:10.906533 plmef 10544 R rec 7999415e-4e7b-4fd8-bd8b-48fbcf5d7b58 +2024-09-11 09:11:10.967186 2024-09-11 09:11:10.967196 plmef 10545 R rec 36503a28-7e0a-40c6-b5ca-8091abc7d47e +2024-09-11 09:11:11.029905 2024-09-11 09:11:11.029911 plmef 10546 R rec 1641bb33-820e-4490-8b1a-d782b8d701c8 +2024-09-11 09:11:11.086513 2024-09-11 09:11:11.086519 plmef 10547 R rec 3dd7f1b0-b15d-4a25-933d-7c2aac2033bd +2024-09-11 09:11:11.143102 2024-09-11 09:11:11.143106 plmef 10548 R rec 9ef07a44-4a20-41c4-975d-8f45b85ccecf +2024-09-11 09:11:11.200899 2024-09-11 09:11:11.20091 plmef 10549 R rec 8c6f19d0-4bb7-45f0-96e1-248e19d25e61 +2024-09-11 09:11:11.257127 2024-09-11 09:11:11.257133 plmef 10550 R rec 134913be-97c0-4066-a259-ffdccaf79b23 +2024-09-11 09:11:11.310576 2024-09-11 09:11:11.310586 plmef 10551 R rec a30a35fb-f099-4617-af6f-fb66917af760 +2024-09-11 09:11:11.380917 2024-09-11 09:11:11.380923 plmef 10552 R rec 617bf330-9138-4c2b-98fa-70ec1e46caef +2024-09-11 09:11:11.435925 2024-09-11 09:11:11.435935 plmef 10553 R rec 4011b138-5d8d-4dc0-9c68-8e3c94e4d57c +2024-09-11 09:11:11.508636 2024-09-11 09:11:11.508646 plmef 10554 R rec 0ad893e8-2150-403c-8d3b-53202015801b +2024-09-11 09:11:11.593812 2024-09-11 09:11:11.593817 plmef 10555 R rec ffe3b6fa-42b1-4923-9d96-663ba207e8fe +2024-09-11 09:11:11.650924 2024-09-11 09:11:11.650936 plmef 10556 R rec 2db5ec8b-f8f1-49ce-b17b-a6445b6bb404 +2024-09-11 09:11:11.719917 2024-09-11 09:11:11.719921 plmef 10557 R rec 8f58c085-b60c-4c9a-a1a1-267ea859eead +2024-09-11 09:11:11.789481 2024-09-11 09:11:11.789487 plmef 10558 R rec 149a95c7-95f4-4cb6-868d-64a933e54873 +2024-09-11 09:11:11.855088 2024-09-11 09:11:11.855094 plmef 10559 R rec 1487104d-5cd5-4479-a78c-217de7f27efc +2024-09-11 09:11:11.92257 2024-09-11 09:11:11.922582 plmef 10560 R rec 60d63f6a-4548-45c6-977c-07fd2706ace1 +2024-09-11 09:11:11.989478 2024-09-11 09:11:11.989484 plmef 10561 R rec 2843613c-094b-4b9d-b887-3ff3715e309a +2024-09-11 09:11:12.042601 2024-09-11 09:11:12.042607 plmef 10562 R rec 08a6b7b6-354f-40d8-91fe-0d501650cb5d +2024-09-11 09:11:12.098602 2024-09-11 09:11:12.098607 plmef 10563 R rec 6017a803-0364-4c1c-a782-e06a6086c163 +2024-09-11 09:11:12.149058 2024-09-11 09:11:12.149063 plmef 10564 R rec 8d5c469c-d05d-4489-9792-896ff1da4d71 +2024-09-11 09:11:12.215323 2024-09-11 09:11:12.215328 plmef 10565 R rec effe6328-7f6c-466a-9584-ff35ffafef18 +2024-09-11 09:11:12.27688 2024-09-11 09:11:12.27689 plmef 10566 R rec c3629af2-18f3-411f-be96-b15da454ad08 +2024-09-11 09:11:12.339861 2024-09-11 09:11:12.339871 plmef 10567 R rec e3344210-36d5-47b6-a128-97c1b52f0529 +2024-09-11 09:11:12.403631 2024-09-11 09:11:12.403641 plmef 10568 R rec 4886cd8a-388f-4297-a2ed-722f342a57ab +2024-09-11 09:11:12.471236 2024-09-11 09:11:12.471245 plmef 10569 R rec 30b7e238-b1c0-4586-807b-0aaa7c6c3517 +2024-09-11 09:11:12.534176 2024-09-11 09:11:12.534181 plmef 10570 R rec 356a5419-b907-4d42-bfbb-2be49a489b6b +2024-09-11 09:11:12.594491 2024-09-11 09:11:12.594496 plmef 10571 R rec c686ef50-182e-407c-8e32-85f7d0ca4ede +2024-09-11 09:11:12.638017 2024-09-11 09:11:12.638022 plmef 10572 R rec ebf3aa7b-7b2c-4a5d-83b4-29bf2a4a2b93 +2024-09-11 09:11:12.700057 2024-09-11 09:11:12.700061 plmef 10573 R rec 44afd709-180f-4dc1-a073-4bf058d70cf9 +2024-09-11 09:11:12.745925 2024-09-11 09:11:12.745931 plmef 10574 R rec 247b0dcc-e6d1-4dda-b59d-ab2d4a764d1c +2024-09-11 09:11:12.803148 2024-09-11 09:11:12.803157 plmef 10575 R rec 53d946b2-51e8-432c-9815-2bbc8d8ef802 +2024-09-11 09:11:12.867585 2024-09-11 09:11:12.867594 plmef 10576 R rec 2256c865-47a6-4e28-9681-5eb2d2b50921 +2024-09-11 09:11:12.929822 2024-09-11 09:11:12.929831 plmef 10577 R rec 53d11dfa-03b9-4866-972f-4b3151eac755 +2024-09-11 09:11:12.994333 2024-09-11 09:11:12.994344 plmef 10578 R rec a12c1eab-43db-4ef1-a570-d8a284f00b98 +2024-09-11 09:11:13.056735 2024-09-11 09:11:13.05674 plmef 10579 R rec 95a4d0d6-6eda-4709-8550-ca08218e62ca +2024-09-11 09:11:13.11886 2024-09-11 09:11:13.11887 plmef 10580 R rec 22107fe3-6918-4d41-a390-fdaf6286a53d +2024-09-11 09:11:13.18491 2024-09-11 09:11:13.18492 plmef 10581 R rec 5066167d-0a32-4106-ad44-5c6a94e0c7b6 +2024-09-11 09:11:13.249089 2024-09-11 09:11:13.249099 plmef 10582 R rec d8338cac-e1d2-4cef-926a-45eab06e4346 +2024-09-11 09:11:13.318594 2024-09-11 09:11:13.318599 plmef 10583 R rec 0a812931-8c18-4b79-a8b8-62b39bbc3b4b +2024-09-11 09:11:13.375191 2024-09-11 09:11:13.375201 plmef 10584 R rec 85ad193c-b97b-453a-b3f4-c2ceb1d40423 +2024-09-11 09:11:13.430584 2024-09-11 09:11:13.430594 plmef 10585 R rec ff75b499-8958-423e-806f-1066062cd467 +2024-09-11 09:11:13.499876 2024-09-11 09:11:13.499886 plmef 10586 R rec 35908288-513a-4dfe-baf0-55de8724cdb5 +2024-09-11 09:11:13.555864 2024-09-11 09:11:13.555869 plmef 10587 R rec 796ac8c8-6dee-4c68-8f8e-8382dba949a9 +2024-09-11 09:11:13.606018 2024-09-11 09:11:13.606022 plmef 10588 R rec 3a5a22c3-e6bc-4377-b690-64a7700cf890 +2024-09-11 09:11:13.663108 2024-09-11 09:11:13.663118 plmef 10589 R rec 65696fe3-ae31-4679-9c08-069ba89407de +2024-09-11 09:11:13.720013 2024-09-11 09:11:13.720017 plmef 10590 R rec 425c030d-4b9b-4d4d-9cd7-f15d8d35dc8f +2024-09-11 09:11:13.769806 2024-09-11 09:11:13.769811 plmef 10591 R rec 79b2b5de-228f-40f6-a9e7-8ccccc0cbd15 +2024-09-11 09:11:13.832431 2024-09-11 09:11:13.832441 plmef 10592 R rec a085c527-730a-4c1a-ab33-0a1fd7bb0c7c +2024-09-11 09:11:13.902581 2024-09-11 09:11:13.902586 plmef 10593 R rec a282e356-c055-4bb7-8e96-2bb6092853c9 +2024-09-11 09:11:13.954121 2024-09-11 09:11:13.954127 plmef 10594 R rec 0b015bd1-b4c5-4087-b98a-917e891bae30 +2024-09-11 09:11:14.013878 2024-09-11 09:11:14.013884 plmef 10595 R rec b6891813-905a-4d98-8da8-aadae091de9f +2024-09-11 09:11:14.071993 2024-09-11 09:11:14.072001 plmef 10596 R rec 2c2375a5-6011-4083-9296-f4053639132b +2024-09-11 09:11:14.124075 2024-09-11 09:11:14.124081 plmef 10597 R rec 1502c05a-e085-4895-9202-47d19b65237e +2024-09-11 09:11:14.179152 2024-09-11 09:11:14.179164 plmef 10598 R rec 9953b126-b7a5-4254-9af3-f34d875829eb +2024-09-11 09:11:14.238586 2024-09-11 09:11:14.238595 plmef 10599 R rec d9308ace-c124-468a-a414-3b830e759fa5 +2024-09-11 09:11:14.298293 2024-09-11 09:11:14.298304 plmef 10600 R rec 6d4d48ce-7cd2-4538-a280-2246c6908286 +2024-09-11 09:11:14.363754 2024-09-11 09:11:14.363763 plmef 10601 R rec 599772af-feaf-4f74-bec3-ebe763a9f028 +2024-09-11 09:11:14.420324 2024-09-11 09:11:14.420336 plmef 10602 R rec 45905f3b-c5a6-49ec-85f3-e69e9fd3d262 +2024-09-11 09:11:14.492886 2024-09-11 09:11:14.492897 plmef 10603 R rec 6e6e0efa-e81a-4f6a-b4f2-5c5e22eb2c9e +2024-09-11 09:11:14.559679 2024-09-11 09:11:14.55969 plmef 10604 R rec 643266d2-b814-4637-a012-f657f6aba7a6 +2024-09-11 09:11:14.61257 2024-09-11 09:11:14.612575 plmef 10605 R rec bb5614b9-8db8-4dfc-b4c9-018aa77ce1f7 +2024-09-11 09:11:14.668839 2024-09-11 09:11:14.668848 plmef 10606 R rec 70314d09-d2e3-449e-ac51-ff8688a77f11 +2024-09-11 09:11:14.733506 2024-09-11 09:11:14.733515 plmef 10607 R rec a961a990-1764-4f96-9cb9-1efe846316ae +2024-09-11 09:11:14.79896 2024-09-11 09:11:14.798971 plmef 10608 R rec 510386d7-2d64-479f-b1ef-4f315c86ed58 +2024-09-11 09:11:14.859785 2024-09-11 09:11:14.859791 plmef 10609 R rec ef9c1de0-3dc9-426d-b3da-d3f9c407cf1d +2024-09-11 09:11:14.92124 2024-09-11 09:11:14.921253 plmef 10610 R rec 64dc391a-76ed-4590-a4d0-fbba9bff78ba +2024-09-11 09:11:14.998273 2024-09-11 09:11:14.998284 plmef 10611 R rec 9bc957e3-8091-4cfb-9044-e78723e475a1 +2024-09-11 09:11:15.069869 2024-09-11 09:11:15.069874 plmef 10612 R rec 6bb8a777-221b-442b-a044-d3e6939e0db5 +2024-09-11 09:11:15.115336 2024-09-11 09:11:15.115342 plmef 10613 R rec 194696a5-a6e4-4310-9662-4b1d7d057050 +2024-09-11 09:11:15.177627 2024-09-11 09:11:15.177638 plmef 10614 R rec bc93df23-254a-41c1-9c75-af637d048a01 +2024-09-11 09:11:15.243555 2024-09-11 09:11:15.243566 plmef 10615 R rec dde02d0f-4e86-4433-a3f7-4acca1a06e86 +2024-09-11 09:11:15.320369 2024-09-11 09:11:15.320374 plmef 10616 R rec f2de7df2-e530-464b-9ed1-3d4735e2d018 +2024-09-11 09:11:15.390455 2024-09-11 09:11:15.390465 plmef 10617 R rec ad40e3e5-9131-4ec1-ba97-de1c901b6c3d +2024-09-11 09:11:15.461176 2024-09-11 09:11:15.461187 plmef 10618 R rec 2b378ff2-90f8-449a-a764-53f365738204 +2024-09-11 09:11:15.526513 2024-09-11 09:11:15.526523 plmef 10619 R rec b65f1511-e9b5-4587-b91d-38543c1883a4 +2024-09-11 09:11:15.591109 2024-09-11 09:11:15.591115 plmef 10620 R rec a726a796-a68b-46a7-b467-2db128f7b863 +2024-09-11 09:11:15.663274 2024-09-11 09:11:15.663285 plmef 10621 R rec c6ddbd37-13ae-45a8-b552-96438a942056 +2024-09-11 09:11:15.726969 2024-09-11 09:11:15.726975 plmef 10622 R rec 3b05c83e-06c8-479c-89f2-484a49f4158b +2024-09-11 09:11:15.775781 2024-09-11 09:11:15.77579 plmef 10623 R rec b0e674bb-1f9f-4499-a939-efe0b7bc44ae +2024-09-11 09:11:15.833107 2024-09-11 09:11:15.833118 plmef 10624 R rec eff4c96e-1724-42d9-8cf0-33ad21941856 +2024-09-11 09:11:15.89834 2024-09-11 09:11:15.898345 plmef 10625 R rec db707ccd-32d0-49e5-9ee4-9314c1daaa72 +2024-09-11 09:11:15.959724 2024-09-11 09:11:15.959735 plmef 10626 R rec 1c907e9e-3a8d-4274-a3aa-35b29766f4f9 +2024-09-11 09:11:16.024843 2024-09-11 09:11:16.024848 plmef 10627 R rec e1ef7748-bcd8-4a5a-b628-fcf622c6ef3e +2024-09-11 09:11:16.093873 2024-09-11 09:11:16.093878 plmef 10628 R rec e81f069e-c5fa-4aae-a3d1-c0a3fb7fa66f +2024-09-11 09:11:16.150222 2024-09-11 09:11:16.150227 plmef 10629 R rec ef893f53-28e9-4667-bf01-15ebb5602481 +2024-09-11 09:11:16.208353 2024-09-11 09:11:16.208358 plmef 10630 R rec 81617474-b1ef-446c-9239-bf4328625f9c +2024-09-11 09:11:16.273284 2024-09-11 09:11:16.273289 plmef 10631 R rec 9f0f2cf2-faa3-485b-88c3-6d21a26bb80f +2024-09-11 09:11:16.3489 2024-09-11 09:11:16.34891 plmef 10632 R rec 0604e608-c05b-4dd1-84f7-b960e3034b8e +2024-09-11 09:11:16.415994 2024-09-11 09:11:16.416005 plmef 10633 R rec 584a16ba-d77a-4934-9a7a-796e3da85a7b +2024-09-11 09:11:16.480765 2024-09-11 09:11:16.480776 plmef 10634 R rec 9bff45b2-6286-4edd-9f09-7f4764a8e69c +2024-09-11 09:11:16.544309 2024-09-11 09:11:16.544314 plmef 10635 R rec 730853b2-0f76-45e4-bf63-bf65e34a24b4 +2024-09-11 09:11:16.599972 2024-09-11 09:11:16.599977 plmef 10636 R rec 131d614b-181c-4d0f-bef8-4d9376855686 +2024-09-11 09:11:16.644061 2024-09-11 09:11:16.644066 plmef 10637 R rec ced53a5f-f299-4340-989d-dc3cb2181dca +2024-09-11 09:11:16.693178 2024-09-11 09:11:16.693188 plmef 10638 R rec 30c6201d-4e21-457f-a3ef-375ead8849b9 +2024-09-11 09:11:16.740831 2024-09-11 09:11:16.740836 plmef 10639 R rec 920e8b09-9a8d-4bf5-bb0c-9cd534d82c04 +2024-09-11 09:11:16.797828 2024-09-11 09:11:16.797839 plmef 10640 R rec e7c75c78-d06f-4a68-ab79-4b830fd6183b +2024-09-11 09:11:16.875788 2024-09-11 09:11:16.875798 plmef 10641 R rec d3c5f873-0867-4b40-af3d-5bc9a08412af +2024-09-11 09:11:16.941063 2024-09-11 09:11:16.941074 plmef 10642 R rec db9919c4-0022-48c6-9079-b3c0e44a7650 +2024-09-11 09:11:17.005483 2024-09-11 09:11:17.005493 plmef 10643 R rec 648a42a4-910f-4864-96d0-02769ed0f0a5 +2024-09-11 09:11:17.065031 2024-09-11 09:11:17.065036 plmef 10644 R rec da970211-612f-4183-b314-89cf6c644e4d +2024-09-11 09:11:17.115339 2024-09-11 09:11:17.11535 plmef 10645 R rec ca19549b-77a7-4816-923f-5b2f322858e5 +2024-09-11 09:11:17.177927 2024-09-11 09:11:17.177938 plmef 10646 R rec 45735a91-8b02-4d2c-ab4d-56253df4a602 +2024-09-11 09:11:17.233661 2024-09-11 09:11:17.233667 plmef 10647 R rec 403f28d1-df47-4955-96ff-920b9bd2e6de +2024-09-11 09:11:17.283448 2024-09-11 09:11:17.283454 plmef 10648 R rec 9ef0eab9-b4a6-4b49-9397-c3551f10d669 +2024-09-11 09:11:17.344537 2024-09-11 09:11:17.344547 plmef 10649 R rec abc82637-2094-47e1-a995-fc8d96238eba +2024-09-11 09:11:17.40885 2024-09-11 09:11:17.408861 plmef 10650 R rec df4bf886-1369-4ac6-b121-bcfc0b07d3ab +2024-09-11 09:11:17.481234 2024-09-11 09:11:17.481245 plmef 10651 R rec 02e0b8d4-654e-416e-8a56-138ff32dd3ac +2024-09-11 09:11:17.543724 2024-09-11 09:11:17.543729 plmef 10652 R rec 36c33d5b-0c64-4f6c-b9b7-86af5ed599c6 +2024-09-11 09:11:17.597168 2024-09-11 09:11:17.597173 plmef 10653 R rec 5ddfb432-1ba9-4190-8fc4-f71f36f7b204 +2024-09-11 09:11:17.650768 2024-09-11 09:11:17.650778 plmef 10654 R rec 0d09b2f1-7301-4e62-ba48-5df6ebee4763 +2024-09-11 09:11:17.711953 2024-09-11 09:11:17.711958 plmef 10655 R rec beefedd8-ed7b-40fe-b229-e2d6f5a04be0 +2024-09-11 09:11:17.783598 2024-09-11 09:11:17.783608 plmef 10656 R rec c1477ffc-b3ee-4b7b-b68a-b31623bc9cf3 +2024-09-11 09:11:17.86725 2024-09-11 09:11:17.86726 plmef 10657 R rec b062f8fe-45fd-41de-8308-ff004ee90868 +2024-09-11 09:11:17.935485 2024-09-11 09:11:17.935496 plmef 10658 R rec 07a8ec00-0f04-4018-93d5-d4f184d4f76b +2024-09-11 09:11:18.003986 2024-09-11 09:11:18.003996 plmef 10659 R rec e3ee13c1-0593-472d-859c-38f43e9fb3eb +2024-09-11 09:11:18.077098 2024-09-11 09:11:18.077109 plmef 10660 R rec 38cee599-78e4-4568-a641-1abc5c89edeb +2024-09-11 09:11:18.135223 2024-09-11 09:11:18.135228 plmef 10661 R rec 732cd4e0-f80e-4aa6-a29b-6ac8e0f08e60 +2024-09-11 09:11:18.197278 2024-09-11 09:11:18.197288 plmef 10662 R rec 73af37ab-adcb-4153-b4b8-f5c8b32f3ffd +2024-09-11 09:11:18.254994 2024-09-11 09:11:18.254999 plmef 10663 R rec 51cf7695-5ca4-4aa2-9a50-e96266779b88 +2024-09-11 09:11:18.320568 2024-09-11 09:11:18.320578 plmef 10664 R rec 8326623d-e33a-499a-ba73-14c97606ad92 +2024-09-11 09:11:18.383488 2024-09-11 09:11:18.383497 plmef 10665 R rec 55bc751b-8aea-421c-92dd-e9a4c96a0b87 +2024-09-11 09:11:18.451771 2024-09-11 09:11:18.451781 plmef 10666 R rec 81466028-2b41-45f2-8909-032ad5978fbb +2024-09-11 09:11:18.519588 2024-09-11 09:11:18.519593 plmef 10667 R rec 56200498-9a1e-457a-a8a8-f59101d1c13b +2024-09-11 09:11:18.584731 2024-09-11 09:11:18.584742 plmef 10668 R rec 3cb8e264-c0e6-4872-b02f-5acb51b71ccf +2024-09-11 09:11:18.64324 2024-09-11 09:11:18.643248 plmef 10669 R rec b7919add-18aa-48ff-b850-df77929e8852 +2024-09-11 09:11:18.716437 2024-09-11 09:11:18.716442 plmef 10670 R rec 5d37c4df-d938-426c-bacc-1e48579330dd +2024-09-11 09:11:18.781194 2024-09-11 09:11:18.781206 plmef 10671 R rec befa0b1b-80c8-4a81-9ccf-0d02ccb0281a +2024-09-11 09:11:18.854245 2024-09-11 09:11:18.854256 plmef 10672 R rec d0003165-5e3a-4072-bb8a-e072b012013c +2024-09-11 09:11:18.918477 2024-09-11 09:11:18.918482 plmef 10673 R rec 4d7075ba-9f42-4aa8-a7a1-1bea1f246ecf +2024-09-11 09:11:18.978493 2024-09-11 09:11:18.978504 plmef 10674 R rec a7773f10-3dfb-406e-babc-8bba81d3e4b0 +2024-09-11 09:11:19.047898 2024-09-11 09:11:19.047907 plmef 10675 R rec 438db7f3-0726-4970-a09b-b20a62c5f3bb +2024-09-11 09:11:19.108022 2024-09-11 09:11:19.108028 plmef 10676 R rec cbb1bacc-3a68-4d70-b7cc-009ca029e434 +2024-09-11 09:11:19.169918 2024-09-11 09:11:19.169923 plmef 10677 R rec 9fb2fa1a-75c9-4591-a5d9-a6ac2ec7f089 +2024-09-11 09:11:19.24074 2024-09-11 09:11:19.240746 plmef 10678 R rec 99c1e048-09f2-4aee-a201-1405e501b2d9 +2024-09-11 09:11:19.310562 2024-09-11 09:11:19.310572 plmef 10679 R rec 585e45ed-ad40-4736-a6cb-67c46d482336 +2024-09-11 09:11:19.37906 2024-09-11 09:11:19.37907 plmef 10680 R rec 48487913-cce1-4c4e-9f12-ec960e6a1c1f +2024-09-11 09:11:19.44453 2024-09-11 09:11:19.444535 plmef 10681 R rec cdaf963d-c621-41cb-9e11-cb1e5ee4ce5a +2024-09-11 09:11:19.503019 2024-09-11 09:11:19.503028 plmef 10682 R rec 9b35afbe-3dc2-4e67-a76d-4f776cc64e14 +2024-09-11 09:11:19.563662 2024-09-11 09:11:19.563677 plmef 10683 R rec 545aaf5e-7218-4949-9df8-0ed1bad375ee +2024-09-11 09:11:19.624525 2024-09-11 09:11:19.624534 plmef 10684 R rec 52282caf-ad55-4e36-bf92-86867766c679 +2024-09-11 09:11:19.686732 2024-09-11 09:11:19.686743 plmef 10685 R rec c4a0ea5f-4333-49f5-8b90-4413a15dfa9d +2024-09-11 09:11:19.739057 2024-09-11 09:11:19.739062 plmef 10686 R rec 1a4bde8c-dd1b-428c-8252-64d0f4d72fdd +2024-09-11 09:11:19.789236 2024-09-11 09:11:19.789246 plmef 10687 R rec 788841ff-4c89-46cb-9168-5306ee4f7063 +2024-09-11 09:11:19.853158 2024-09-11 09:11:19.853168 plmef 10688 R rec ed7ed04a-4ea9-423f-b0b7-ebbcec78e6c5 +2024-09-11 09:11:19.922575 2024-09-11 09:11:19.922586 plmef 10689 R rec f42f8157-38c2-4225-944e-c5ee83bea7b0 +2024-09-11 09:11:19.9904 2024-09-11 09:11:19.990411 plmef 10690 R rec bc3cc58d-c667-4ac3-9722-dfb5c7713590 +2024-09-11 09:11:20.057234 2024-09-11 09:11:20.057243 plmef 10691 R rec 0b62dd9c-f045-4e8e-b4ef-c21e237bb770 +2024-09-11 09:11:20.124677 2024-09-11 09:11:20.124687 plmef 10692 R rec 7eebf466-4e3c-4e34-81d8-d9853b45cce9 +2024-09-11 09:11:20.193509 2024-09-11 09:11:20.193519 plmef 10693 R rec 4bcb9fa8-5bf2-44f5-ac49-6ef3776dc3d2 +2024-09-11 09:11:20.257813 2024-09-11 09:11:20.257823 plmef 10694 R rec edfa7b30-4ddd-49ea-b4a2-f9fcdd00d73a +2024-09-11 09:11:20.327501 2024-09-11 09:11:20.32751 plmef 10695 R rec 55f21f16-fd20-4888-a081-b617cf751542 +2024-09-11 09:11:20.389259 2024-09-11 09:11:20.389269 plmef 10696 R rec 59084d0d-ba81-4b48-a77c-1d3f72cdbd6d +2024-09-11 09:11:20.448866 2024-09-11 09:11:20.448876 plmef 10697 R rec 2d9d3a46-d11d-4b3e-bd59-55fa06f54da6 +2024-09-11 09:11:20.514617 2024-09-11 09:11:20.514627 plmef 10698 R rec 43d5e427-6b5b-4237-b399-eaadb3b6b3ac +2024-09-11 09:11:20.57498 2024-09-11 09:11:20.574991 plmef 10699 R rec a87466b5-58f5-4fa1-a0d1-44b8bee182ac +2024-09-11 09:11:20.647123 2024-09-11 09:11:20.647134 plmef 10700 R rec 9ce0fbbd-b191-43f0-ae6e-42acb78f3e7a +2024-09-11 09:11:20.716518 2024-09-11 09:11:20.716522 plmef 10701 R rec 9912f4c0-5e8e-42d2-a9e3-855066cedb9f +2024-09-11 09:11:20.764919 2024-09-11 09:11:20.764924 plmef 10702 R rec 779ef70c-b76c-4f15-85c9-66c244e52d69 +2024-09-11 09:11:20.822098 2024-09-11 09:11:20.822109 plmef 10703 R rec 1e9ac811-ea38-43db-b572-e64d1e2abf3b +2024-09-11 09:11:20.892065 2024-09-11 09:11:20.892071 plmef 10704 R rec 8eb4fc93-a1c8-4983-92a0-6764b668ee20 +2024-09-11 09:11:20.959855 2024-09-11 09:11:20.959866 plmef 10705 R rec ba0bd921-648a-4767-98fb-43e1971fedab +2024-09-11 09:11:21.029223 2024-09-11 09:11:21.029229 plmef 10706 R rec 8fec6c71-6347-4b1a-9443-8e9061b336cb +2024-09-11 09:11:21.0834 2024-09-11 09:11:21.083409 plmef 10707 R rec 48e18976-88c8-4a2e-9fd7-5599342c6cf6 +2024-09-11 09:11:21.13223 2024-09-11 09:11:21.132235 plmef 10708 R rec 7996317b-e229-4c96-9725-803d720765bf +2024-09-11 09:11:21.189334 2024-09-11 09:11:21.189343 plmef 10709 R rec fffa7840-1dca-43a6-b391-4a7dde8c7fa3 +2024-09-11 09:11:21.252599 2024-09-11 09:11:21.252604 plmef 10710 R rec 86871738-e0b2-4bef-b7af-ba83ff566cb0 +2024-09-11 09:11:21.307717 2024-09-11 09:11:21.307722 plmef 10711 R rec 3f19add1-92af-4a05-9769-a0554c111f6d +2024-09-11 09:11:21.372025 2024-09-11 09:11:21.372031 plmef 10712 R rec 50b65420-cacf-48af-834a-ab984332a9c5 +2024-09-11 09:11:21.428249 2024-09-11 09:11:21.428254 plmef 10713 R rec 665bc2b0-f2cf-41e7-98cc-7c4b103cc83c +2024-09-11 09:11:21.485058 2024-09-11 09:11:21.485068 plmef 10714 R rec b0d81dfc-604b-4d8a-b421-9e51902dd4eb +2024-09-11 09:11:21.556858 2024-09-11 09:11:21.556873 plmef 10715 R rec cd5abd1c-fefc-4042-90e7-df53b8e662a4 +2024-09-11 09:11:21.632815 2024-09-11 09:11:21.632821 plmef 10716 R rec 6e704772-359a-4908-a5a3-fa3df6102f8b +2024-09-11 09:11:21.6982 2024-09-11 09:11:21.698211 plmef 10717 R rec f0246f6c-fea6-4b53-93ed-edd55ea4f7c9 +2024-09-11 09:11:21.774384 2024-09-11 09:11:21.774389 plmef 10718 R rec a8ab571b-ace1-42b1-9dd7-04b4c7ee2e73 +2024-09-11 09:11:21.831106 2024-09-11 09:11:21.831111 plmef 10719 R rec 20b51d1d-1dde-46a2-83b0-dfd5ff4bffaf +2024-09-11 09:11:21.887607 2024-09-11 09:11:21.887612 plmef 10720 R rec 49ddef95-9e2b-425c-8204-41e137951b5c +2024-09-11 09:11:21.942991 2024-09-11 09:11:21.942997 plmef 10721 R rec 1ed5f920-d523-4815-82fb-2f1a52338dff +2024-09-11 09:11:22.011904 2024-09-11 09:11:22.011914 plmef 10722 R rec e0cce608-b438-4465-821c-a8cbd3ff3598 +2024-09-11 09:11:22.080664 2024-09-11 09:11:22.080674 plmef 10723 R rec 2a7f67c4-ec88-42fe-b6b9-8f4d9c017c25 +2024-09-11 09:11:22.137426 2024-09-11 09:11:22.137438 plmef 10724 R rec bceda418-0773-420e-b613-1e47d2f36f73 +2024-09-11 09:11:22.20293 2024-09-11 09:11:22.20294 plmef 10725 R rec 95b7dc54-8a43-41c3-b81d-3f1194e8b5d7 +2024-09-11 09:11:22.267901 2024-09-11 09:11:22.267911 plmef 10726 R rec 25007cac-88be-4f64-a6ea-e1b20a6f6021 +2024-09-11 09:11:22.34034 2024-09-11 09:11:22.340351 plmef 10727 R rec 4afe315d-1f9d-4574-af32-007da7c34780 +2024-09-11 09:11:22.419757 2024-09-11 09:11:22.419768 plmef 10728 R rec de1d3725-aa11-4881-b664-3bba8c786a63 +2024-09-11 09:11:22.493975 2024-09-11 09:11:22.49398 plmef 10729 R rec a41846f2-e1f8-4039-bdd4-8f2bf249e12d +2024-09-11 09:11:22.555773 2024-09-11 09:11:22.555784 plmef 10730 R rec 9c954d0c-2881-4cf1-9433-681cca35e31e +2024-09-11 09:11:22.611729 2024-09-11 09:11:22.611736 plmef 10731 R rec f0cce585-8642-422f-a640-780046d83d11 +2024-09-11 09:11:22.671006 2024-09-11 09:11:22.671015 plmef 10732 R rec 73666cc8-88e2-496a-b025-e6d83efc85fa +2024-09-11 09:11:22.725188 2024-09-11 09:11:22.725193 plmef 10733 R rec 3a0e23cf-2aa0-4458-a5ee-8e8094b6b19f +2024-09-11 09:11:22.789596 2024-09-11 09:11:22.789601 plmef 10734 R rec f3d4e96d-4fd0-4814-ae93-b9859bf1416b +2024-09-11 09:11:22.853703 2024-09-11 09:11:22.853713 plmef 10735 R rec 8cb60b63-1c4a-4968-b0b4-1ccc148191d3 +2024-09-11 09:11:22.919296 2024-09-11 09:11:22.919307 plmef 10736 R rec c4955930-3129-4fd9-92d9-4e8819866edb +2024-09-11 09:11:22.983927 2024-09-11 09:11:22.98394 plmef 10737 R rec ebd228a6-73cf-4f2c-bc41-d14da53cf8c5 +2024-09-11 09:11:23.057014 2024-09-11 09:11:23.05702 plmef 10738 R rec 6099b848-cd15-412f-82db-5ab537778dc7 +2024-09-11 09:11:23.123374 2024-09-11 09:11:23.123456 plmef 10739 R rec 4e317a7b-90a0-48ff-b1cd-f12043673be8 +2024-09-11 09:11:23.19799 2024-09-11 09:11:23.198006 plmef 10740 R rec d690dc6c-8dbd-4eae-a579-7f35954b2f1c +2024-09-11 09:11:23.269963 2024-09-11 09:11:23.269973 plmef 10741 R rec 5b63df47-5202-40e8-8e0e-641a7284b0ef +2024-09-11 09:11:23.341928 2024-09-11 09:11:23.341933 plmef 10742 R rec ec84a2e6-6c14-4f63-b3f5-e6b0f2171aa7 +2024-09-11 09:11:23.456858 2024-09-11 09:11:23.456863 plmef 10743 R rec a2b357ee-3eee-4b01-9219-e35b651e997f +2024-09-11 09:11:23.50505 2024-09-11 09:11:23.505055 plmef 10744 R rec 3ba89d33-b265-45c1-9420-ac7e80a75814 +2024-09-11 09:11:23.552291 2024-09-11 09:11:23.552296 plmef 10745 R rec 278df14f-acf3-4fb6-96da-915aff30d29a +2024-09-11 09:11:23.596871 2024-09-11 09:11:23.596877 plmef 10746 R rec 8e361ad6-cfde-40a3-a285-0ba4909b257a +2024-09-11 09:11:23.64352 2024-09-11 09:11:23.643525 plmef 10747 R rec 8ddf45a9-98b0-4482-b568-5e70333507f3 +2024-09-11 09:11:23.690804 2024-09-11 09:11:23.690809 plmef 10748 R rec 3dea2100-f384-4909-8496-9425c1a6a26b +2024-09-11 09:11:23.744878 2024-09-11 09:11:23.744884 plmef 10749 R rec 7a57a103-b0cb-4414-b67e-881efe168c7a +2024-09-11 09:11:23.796179 2024-09-11 09:11:23.796184 plmef 10750 R rec 722915cc-40e8-49c8-ad18-2acf65d7dabd +2024-09-11 09:11:23.844073 2024-09-11 09:11:23.844078 plmef 10751 R rec 26d25983-5652-4410-9131-a37b7985f44f +2024-09-11 09:11:23.90816 2024-09-11 09:11:23.90817 plmef 10752 R rec 991e7a54-32bb-460b-abed-fd26c1e26d80 +2024-09-11 09:11:23.971065 2024-09-11 09:11:23.97107 plmef 10753 R rec a92b4cbb-f714-42ee-b941-4371ae3cd8a7 +2024-09-11 09:11:24.049167 2024-09-11 09:11:24.049177 plmef 10754 R rec 705a260f-cb9a-4baa-a44a-a7e20f23defa +2024-09-11 09:11:24.119624 2024-09-11 09:11:24.119629 plmef 10755 R rec f158121a-f0a2-44d0-bb3b-631d79cefdee +2024-09-11 09:11:24.182527 2024-09-11 09:11:24.182537 plmef 10756 R rec 11181c30-a020-46d6-a85a-65d9d8d5a9a0 +2024-09-11 09:11:24.258208 2024-09-11 09:11:24.258219 plmef 10757 R rec 22660ff2-391b-4eb0-9de7-34b2cb47acef +2024-09-11 09:11:24.33582 2024-09-11 09:11:24.335831 plmef 10758 R rec d0313ba5-6893-4ceb-8038-3f4c987d01c2 +2024-09-11 09:11:24.400096 2024-09-11 09:11:24.400106 plmef 10759 R rec 285df75a-d793-4c77-be69-b5dd11afcae2 +2024-09-11 09:11:24.464204 2024-09-11 09:11:24.464215 plmef 10760 R rec 61529533-4b0c-4af4-bde5-6c09bf69a9b8 +2024-09-11 09:11:24.52516 2024-09-11 09:11:24.525172 plmef 10761 R rec 3410c998-98f1-493e-a74e-e4c05615935d +2024-09-11 09:11:24.592032 2024-09-11 09:11:24.592042 plmef 10762 R rec 637f8fdd-d387-4846-ada6-36e89e0f10cf +2024-09-11 09:11:24.658397 2024-09-11 09:11:24.658408 plmef 10763 R rec f29ee91f-b566-4bbe-87a2-38355c0a24d4 +2024-09-11 09:11:24.71611 2024-09-11 09:11:24.716116 plmef 10764 R rec 2f79201c-ce0e-4075-939e-f08ec8b928b1 +2024-09-11 09:11:24.76356 2024-09-11 09:11:24.76357 plmef 10765 R rec 337f234d-0af7-4ef0-a925-717fbae25e14 +2024-09-11 09:11:24.827569 2024-09-11 09:11:24.827574 plmef 10766 R rec b8155a0c-64e7-4d17-a889-5bd88b508cea +2024-09-11 09:11:24.886588 2024-09-11 09:11:24.886593 plmef 10767 R rec 49690870-f190-49f3-b51c-244057951e45 +2024-09-11 09:11:24.946229 2024-09-11 09:11:24.94624 plmef 10768 R rec 89c1a78a-e4f7-4d0b-95c1-2d7dd95ad04e +2024-09-11 09:11:25.013272 2024-09-11 09:11:25.013278 plmef 10769 R rec 8d15d103-7b53-4da1-bbd9-dc6f5a605a18 +2024-09-11 09:11:25.07287 2024-09-11 09:11:25.072876 plmef 10770 R rec b3fe3e47-c9da-4e85-8ccc-14545f05b37f +2024-09-11 09:11:25.124568 2024-09-11 09:11:25.124573 plmef 10771 R rec 52259f5c-8c3c-4703-87e7-126ba59398ea +2024-09-11 09:11:25.174874 2024-09-11 09:11:25.17488 plmef 10772 R rec 0b255404-e70c-4177-9490-fcb3940fc9cc +2024-09-11 09:11:25.232326 2024-09-11 09:11:25.232332 plmef 10773 R rec 6dcd6ac5-7da6-4d39-8233-a1c4f6deb6fa +2024-09-11 09:11:25.342874 2024-09-11 09:11:25.342884 plmef 10774 R rec 51b66b15-9d37-4b98-9ecb-24c35bc3daec +2024-09-11 09:11:25.404522 2024-09-11 09:11:25.404533 plmef 10775 R rec 106c6bcd-1df7-4174-ba4e-5daf957be160 +2024-09-11 09:11:25.472815 2024-09-11 09:11:25.472825 plmef 10776 R rec be45a13a-821f-470d-8d9c-d29dee012e81 +2024-09-11 09:11:25.528882 2024-09-11 09:11:25.528887 plmef 10777 R rec b1a80f05-f81d-4d91-906c-dd9f11fd66f8 +2024-09-11 09:11:25.591375 2024-09-11 09:11:25.591386 plmef 10778 R rec b59ef0be-e522-49bd-b6c1-3e386b913b07 +2024-09-11 09:11:25.668922 2024-09-11 09:11:25.668933 plmef 10779 R rec 1f14d59d-5d6b-4ab2-8d6a-17ed0f8b9230 +2024-09-11 09:11:25.733763 2024-09-11 09:11:25.733772 plmef 10780 R rec 5f1f1189-8e39-4f8f-afaa-8ab794100333 +2024-09-11 09:11:25.794015 2024-09-11 09:11:25.794026 plmef 10781 R rec 7a84166f-ef2a-4128-8659-b52a61ceda67 +2024-09-11 09:11:25.862363 2024-09-11 09:11:25.862373 plmef 10782 R rec f2b44240-c4cf-4413-9cba-456b12793c5f +2024-09-11 09:11:25.927815 2024-09-11 09:11:25.927826 plmef 10783 R rec 42a3fe7d-cf13-4b73-a9a3-60a3b7af8c13 +2024-09-11 09:11:25.995322 2024-09-11 09:11:25.995331 plmef 10784 R rec 0f0e3a7c-7b7c-4df9-8065-1547b516f108 +2024-09-11 09:11:26.070535 2024-09-11 09:11:26.070545 plmef 10785 R rec aeed0d20-2e85-43e3-a008-f95a4cf5de68 +2024-09-11 09:11:26.126904 2024-09-11 09:11:26.126909 plmef 10786 R rec ede7b13b-92c0-4637-81fe-71776a739113 +2024-09-11 09:11:26.181367 2024-09-11 09:11:26.181377 plmef 10787 R rec b05856dc-79be-42c3-9830-f62c3ee37b8b +2024-09-11 09:11:26.239833 2024-09-11 09:11:26.239838 plmef 10788 R rec 457ca0fe-2b98-43f6-83cb-ccc44411a39e +2024-09-11 09:11:26.310085 2024-09-11 09:11:26.310096 plmef 10789 R rec 5038b7ad-a587-4928-b76e-0dc07208f802 +2024-09-11 09:11:26.384505 2024-09-11 09:11:26.384516 plmef 10790 R rec 1df7f036-06bb-471f-b792-b69674894a24 +2024-09-11 09:11:26.452948 2024-09-11 09:11:26.452958 plmef 10791 R rec e6cf1173-9a18-4bd2-8e3e-e48ddb9b64a9 +2024-09-11 09:11:26.513712 2024-09-11 09:11:26.513722 plmef 10792 R rec 532d8186-6d83-40a2-ab5a-debae82eb93b +2024-09-11 09:11:26.587893 2024-09-11 09:11:26.587903 plmef 10793 R rec 011ac6b6-6109-44e7-8008-4fb8b6c60499 +2024-09-11 09:11:26.636088 2024-09-11 09:11:26.636093 plmef 10794 R rec 797e7194-6339-4c17-abb9-bfb5c78024bd +2024-09-11 09:11:26.692393 2024-09-11 09:11:26.692399 plmef 10795 R rec 6774ebfe-2212-439d-bd30-7c52d31a279c +2024-09-11 09:11:26.739565 2024-09-11 09:11:26.73957 plmef 10796 R rec 90f4648f-d6c0-464f-8b62-acf885439b9d +2024-09-11 09:11:26.803201 2024-09-11 09:11:26.803212 plmef 10797 R rec 9add34ae-5110-4e1c-b3d8-db87be237456 +2024-09-11 09:11:26.865113 2024-09-11 09:11:26.865118 plmef 10798 R rec ddf7c1a9-0af3-41e6-81a8-f1f783aeb2eb +2024-09-11 09:11:26.924433 2024-09-11 09:11:26.924443 plmef 10799 R rec f32ac322-6db4-48f9-afdc-29d999c26e58 +2024-09-11 09:11:26.994498 2024-09-11 09:11:26.994509 plmef 10800 R rec 70fe41ef-e287-432d-8312-31cdbf85407b +2024-09-11 09:11:27.071974 2024-09-11 09:11:27.071978 plmef 10801 R rec a1282001-760b-4314-9435-8d943d197c8e +2024-09-11 09:11:27.141811 2024-09-11 09:11:27.141816 plmef 10802 R rec f73de455-289b-4d41-b8eb-56a6d28314c0 +2024-09-11 09:11:27.203926 2024-09-11 09:11:27.203936 plmef 10803 R rec 5b9475e0-c89c-44f1-8adf-0a8e48ad47dc +2024-09-11 09:11:27.27125 2024-09-11 09:11:27.27126 plmef 10804 R rec 9d842832-6804-4160-95f5-ed47c27b35d8 +2024-09-11 09:11:27.339578 2024-09-11 09:11:27.339589 plmef 10805 R rec a4ec25a0-9c0a-44fd-9bd4-664241a7aeee +2024-09-11 09:11:27.418573 2024-09-11 09:11:27.418588 plmef 10806 R rec ad25cdd9-818d-4d9d-a151-542376210d1e +2024-09-11 09:11:27.483637 2024-09-11 09:11:27.483647 plmef 10807 R rec 850aa821-1def-43fd-90aa-a1d0795a83c1 +2024-09-11 09:11:27.558075 2024-09-11 09:11:27.55808 plmef 10808 R rec 05217ecc-aa49-4403-8e24-631f8951c1b0 +2024-09-11 09:11:27.614041 2024-09-11 09:11:27.614046 plmef 10809 R rec 2146cc01-0449-4eea-b0cf-0d88ca6d614e +2024-09-11 09:11:27.673753 2024-09-11 09:11:27.673759 plmef 10810 R rec 66dc8e49-aadc-4671-b551-ac6a282f6042 +2024-09-11 09:11:27.731776 2024-09-11 09:11:27.731781 plmef 10811 R rec 239044c0-5e55-43d9-b277-9a02bf03efde +2024-09-11 09:11:27.79487 2024-09-11 09:11:27.794876 plmef 10812 R rec cdf54f4e-fd94-4317-a22d-56af6b4561ce +2024-09-11 09:11:27.851719 2024-09-11 09:11:27.851724 plmef 10813 R rec 50a029b1-8c14-4dd8-8e4e-42163fed06f9 +2024-09-11 09:11:27.916783 2024-09-11 09:11:27.916794 plmef 10814 R rec ef7377b0-cb01-4a80-986d-1edbaf339357 +2024-09-11 09:11:27.971699 2024-09-11 09:11:27.971704 plmef 10815 R rec 1f44cc17-5b83-491e-8535-1d97dbcb5b47 +2024-09-11 09:11:28.029421 2024-09-11 09:11:28.029432 plmef 10816 R rec 8e440093-bc76-4239-8d4e-9e13cf1ad034 +2024-09-11 09:11:28.108946 2024-09-11 09:11:28.108951 plmef 10817 R rec 29a6e9cf-a403-4e76-a495-acb304803c93 +2024-09-11 09:11:28.174186 2024-09-11 09:11:28.174197 plmef 10818 R rec e9120284-2ebb-47e6-a323-4370b302442f +2024-09-11 09:11:28.239145 2024-09-11 09:11:28.23915 plmef 10819 R rec 80d14a5a-98f0-499a-a897-48689b135f9c +2024-09-11 09:11:28.303075 2024-09-11 09:11:28.303086 plmef 10820 R rec 1036d84a-b125-4aa0-a531-59bf03fe2522 +2024-09-11 09:11:28.377385 2024-09-11 09:11:28.377391 plmef 10821 R rec 5fe0b2d6-beff-4d35-97e4-74b5c6165116 +2024-09-11 09:11:28.443515 2024-09-11 09:11:28.443525 plmef 10822 R rec d4b3c3b3-e0b2-4b57-bc57-efca80de4cc3 +2024-09-11 09:11:28.51876 2024-09-11 09:11:28.518764 plmef 10823 R rec ba701e1c-c9e6-4ba9-8bcf-af23ab653d54 +2024-09-11 09:11:28.58398 2024-09-11 09:11:28.583989 plmef 10824 R rec 8995cac0-c1f5-4a22-bb59-e3a1b013f580 +2024-09-11 09:11:28.634724 2024-09-11 09:11:28.634728 plmef 10825 R rec d84357a4-f975-4329-9cbc-6d25cbf982ac +2024-09-11 09:11:28.692557 2024-09-11 09:11:28.692566 plmef 10826 R rec c2fb1bfc-a14c-422c-ba4e-c54c6aadfd38 +2024-09-11 09:11:28.750593 2024-09-11 09:11:28.750598 plmef 10827 R rec 072a5334-f370-4497-815d-2d28313fe7b0 +2024-09-11 09:11:28.815883 2024-09-11 09:11:28.815893 plmef 10828 R rec 59e72dff-8e23-463b-8afb-5ad2396594a0 +2024-09-11 09:11:28.879695 2024-09-11 09:11:28.879706 plmef 10829 R rec 551a1730-69c7-4115-bdda-821780c94e38 +2024-09-11 09:11:28.942042 2024-09-11 09:11:28.942051 plmef 10830 R rec a05389d8-7278-48e6-a40b-7359e8342af5 +2024-09-11 09:11:29.002493 2024-09-11 09:11:29.002503 plmef 10831 R rec f0f97639-0d31-41d6-8cec-9cc587f7b05e +2024-09-11 09:11:29.064176 2024-09-11 09:11:29.064187 plmef 10832 R rec ca98a968-bf15-4c62-b157-69db197d5fd6 +2024-09-11 09:11:29.125666 2024-09-11 09:11:29.125672 plmef 10833 R rec 21a21037-a8f9-4ddd-b858-4838711e4dbb +2024-09-11 09:11:29.180697 2024-09-11 09:11:29.180702 plmef 10834 R rec 031b1d41-58e1-4f3b-a56c-84493f7f21f7 +2024-09-11 09:11:29.242599 2024-09-11 09:11:29.242605 plmef 10835 R rec b2e07c0e-9d0d-46a9-a342-e16ddb69f5b7 +2024-09-11 09:11:29.309888 2024-09-11 09:11:29.309894 plmef 10836 R rec 5b405c10-b123-49b4-a148-794c15c37f83 +2024-09-11 09:11:29.373578 2024-09-11 09:11:29.37359 plmef 10837 R rec ce82fa16-3d73-4d1a-b772-b953dea23c84 +2024-09-11 09:11:29.440507 2024-09-11 09:11:29.440512 plmef 10838 R rec 4d62154d-3f80-4e3d-bc3c-5487fecad967 +2024-09-11 09:11:29.497562 2024-09-11 09:11:29.497573 plmef 10839 R rec f513dd0f-a9e5-4cf5-a798-6cf574efb41b +2024-09-11 09:11:29.555469 2024-09-11 09:11:29.55548 plmef 10840 R rec 2e9e727e-f77f-4ac3-8cc7-aae59889fe79 +2024-09-11 09:11:29.62434 2024-09-11 09:11:29.62435 plmef 10841 R rec 101400b3-1411-4c63-9acd-4c96e3f99cb5 +2024-09-11 09:11:29.683169 2024-09-11 09:11:29.683179 plmef 10842 R rec ab94091b-f2a4-4d2f-9f30-2d4d00ed31da +2024-09-11 09:11:29.752723 2024-09-11 09:11:29.752728 plmef 10843 R rec 6a37a3ee-daa4-45db-8e98-48fd1c3e9b29 +2024-09-11 09:11:29.813082 2024-09-11 09:11:29.813093 plmef 10844 R rec 758f8d96-0ec5-48cd-9e75-e1beba37c68d +2024-09-11 09:11:29.885205 2024-09-11 09:11:29.885215 plmef 10845 R rec 85eb1afb-5e85-4c13-820d-d015475788e0 +2024-09-11 09:11:29.947754 2024-09-11 09:11:29.947763 plmef 10846 R rec 829a138c-e4e8-4588-b5ed-f359d7db0788 +2024-09-11 09:11:30.008033 2024-09-11 09:11:30.008038 plmef 10847 R rec 4ef26ade-c96b-4fe2-9b90-cc069f431798 +2024-09-11 09:11:30.067028 2024-09-11 09:11:30.067038 plmef 10848 R rec 3d1e5c28-8434-4d4f-bd3e-b2b82efd5640 +2024-09-11 09:11:30.125974 2024-09-11 09:11:30.12598 plmef 10849 R rec 85775746-2652-4379-b38c-f360626d9685 +2024-09-11 09:11:30.180945 2024-09-11 09:11:30.180955 plmef 10850 R rec 84527b80-8776-44e8-bbcc-706238d72894 +2024-09-11 09:11:30.239013 2024-09-11 09:11:30.239023 plmef 10851 R rec 7e5de204-73f1-4ee6-8f21-0f9ad97b145b +2024-09-11 09:11:30.29681 2024-09-11 09:11:30.296819 plmef 10852 R rec c0f52652-621d-4d0d-8a47-5ad513b158cf +2024-09-11 09:11:30.362396 2024-09-11 09:11:30.362406 plmef 10853 R rec bce2523e-c92a-4818-a6d5-9246ff800650 +2024-09-11 09:11:30.426033 2024-09-11 09:11:30.426043 plmef 10854 R rec bbae7e39-e157-4f5a-85c5-a3fc9c67df28 +2024-09-11 09:11:30.490978 2024-09-11 09:11:30.490988 plmef 10855 R rec 443ec164-39f3-4ad9-870a-da19c86ae7c6 +2024-09-11 09:11:30.567521 2024-09-11 09:11:30.567532 plmef 10856 R rec 53a8a242-b510-472e-9d03-c00ab243b4c5 +2024-09-11 09:11:30.624355 2024-09-11 09:11:30.62436 plmef 10857 R rec 34e34932-1faf-4e59-9664-c4bd40f0556b +2024-09-11 09:11:30.689859 2024-09-11 09:11:30.689869 plmef 10858 R rec 54973035-9fa9-441b-a144-c1aec29ba67d +2024-09-11 09:11:30.741982 2024-09-11 09:11:30.741989 plmef 10859 R rec 57a6d645-12e7-49f6-b0ff-3f194c0f6925 +2024-09-11 09:11:30.799116 2024-09-11 09:11:30.799129 plmef 10860 R rec dddf2e47-5a28-4cfe-9238-b958eaeb2f82 +2024-09-11 09:11:30.866793 2024-09-11 09:11:30.866804 plmef 10861 R rec d5617264-c38a-4aea-b517-7b939f53e2e1 +2024-09-11 09:11:30.930636 2024-09-11 09:11:30.930646 plmef 10862 R rec d8655a01-0830-4bb1-99bc-83218a3f13df +2024-09-11 09:11:30.991039 2024-09-11 09:11:30.991049 plmef 10863 R rec 2ccf3094-b338-4787-84aa-817b37824fd0 +2024-09-11 09:11:31.058814 2024-09-11 09:11:31.058825 plmef 10864 R rec 3c2abe07-a696-46c4-86a0-a2d4c6896c03 +2024-09-11 09:11:31.124659 2024-09-11 09:11:31.124664 plmef 10865 R rec 7e93d549-fee8-4127-96f0-8ca7ac0d3cab +2024-09-11 09:11:31.175554 2024-09-11 09:11:31.17556 plmef 10866 R rec 99091044-15f8-4096-8810-2de217d374c9 +2024-09-11 09:11:31.233798 2024-09-11 09:11:31.233803 plmef 10867 R rec 8c279659-4e58-4642-b133-7fd03d555d00 +2024-09-11 09:11:31.2951 2024-09-11 09:11:31.29511 plmef 10868 R rec ea5ce810-1781-4b7b-bf4a-05fa6501e2b3 +2024-09-11 09:11:31.355713 2024-09-11 09:11:31.355724 plmef 10869 R rec 3494aaa9-c5fc-475f-a810-dd77781ddc5b +2024-09-11 09:11:31.418999 2024-09-11 09:11:31.419009 plmef 10870 R rec feac9eb5-7617-4127-acc7-09fac2d551d2 +2024-09-11 09:11:31.478669 2024-09-11 09:11:31.47868 plmef 10871 R rec 31a4f0d1-ef5b-4836-8238-8b61dace783c +2024-09-11 09:11:31.541474 2024-09-11 09:11:31.541483 plmef 10872 R rec c81e0169-d08b-42ac-bee4-efcd72503d23 +2024-09-11 09:11:31.599517 2024-09-11 09:11:31.599521 plmef 10873 R rec a5b3b09b-1516-4e76-ab62-69da178f83ed +2024-09-11 09:11:31.656977 2024-09-11 09:11:31.656987 plmef 10874 R rec 0a665a9e-4f36-4388-aca4-71a2c5e62cb9 +2024-09-11 09:11:31.718702 2024-09-11 09:11:31.718707 plmef 10875 R rec 2fecf5d4-e2a1-450c-96f6-56c6202dbd4b +2024-09-11 09:11:31.77309 2024-09-11 09:11:31.773099 plmef 10876 R rec da172b34-5108-4ad1-bed2-11b446f77d7e +2024-09-11 09:11:31.852624 2024-09-11 09:11:31.852633 plmef 10877 R rec 3aff3b23-5bfc-41ca-a321-ac884cb228e0 +2024-09-11 09:11:31.919043 2024-09-11 09:11:31.919053 plmef 10878 R rec 2aa93a39-9658-4dcd-8fc7-2487abc17f64 +2024-09-11 09:11:31.987131 2024-09-11 09:11:31.987141 plmef 10879 R rec 71b76b99-482c-41bc-9c1d-c0cea369c7e4 +2024-09-11 09:11:32.053434 2024-09-11 09:11:32.053444 plmef 10880 R rec b4aa7647-9311-4024-9b4b-a129ba9bd594 +2024-09-11 09:11:32.111116 2024-09-11 09:11:32.111122 plmef 10881 R rec cfe0b79e-9124-44e1-bd0a-2f04c543e046 +2024-09-11 09:11:32.162099 2024-09-11 09:11:32.16211 plmef 10882 R rec 0d3db2f7-50f1-42b3-9739-66ede560cbbf +2024-09-11 09:11:32.219183 2024-09-11 09:11:32.219188 plmef 10883 R rec 3eb41fb4-a9cd-4cf7-acc3-596e73c4d02a +2024-09-11 09:11:32.27747 2024-09-11 09:11:32.277481 plmef 10884 R rec 4bca43e3-edc4-4840-b463-eb5b91205e86 +2024-09-11 09:11:32.343815 2024-09-11 09:11:32.343825 plmef 10885 R rec b3b35476-045a-4fbc-b963-1d6d939393fa +2024-09-11 09:11:32.419659 2024-09-11 09:11:32.41967 plmef 10886 R rec 71dfe890-de12-4736-aab8-91ad86f3e1dc +2024-09-11 09:11:32.482253 2024-09-11 09:11:32.482264 plmef 10887 R rec aceb5b6d-7a3f-47b9-99bc-c0266bc13378 +2024-09-11 09:11:32.539937 2024-09-11 09:11:32.539948 plmef 10888 R rec c03956f2-78b9-45be-ba2a-1b10091c665a +2024-09-11 09:11:32.601528 2024-09-11 09:11:32.601539 plmef 10889 R rec a19675b7-4371-4c58-95a3-23b3d91491c2 +2024-09-11 09:11:32.651098 2024-09-11 09:11:32.651104 plmef 10890 R rec 475287ee-c9ab-4949-95af-f1a7c6b3d498 +2024-09-11 09:11:32.705041 2024-09-11 09:11:32.705052 plmef 10891 R rec 635f6786-cb52-4a27-a9ee-a9c343d6422c +2024-09-11 09:11:32.761843 2024-09-11 09:11:32.761849 plmef 10892 R rec 1ab90310-8561-4f5a-84d6-7c27c4b3145c +2024-09-11 09:11:32.810085 2024-09-11 09:11:32.810091 plmef 10893 R rec 669bc59c-a571-4370-93e0-116a72d5fabc +2024-09-11 09:11:32.861021 2024-09-11 09:11:32.861032 plmef 10894 R rec 2eecedbf-9a0f-4334-ac42-2ec5ee2cc27c +2024-09-11 09:11:32.928667 2024-09-11 09:11:32.928672 plmef 10895 R rec 4c0700ee-7aa0-4b51-a1b6-beb12d4735bf +2024-09-11 09:11:32.995849 2024-09-11 09:11:32.995854 plmef 10896 R rec 2718aac2-e19b-42a6-931d-40b5a9651afd +2024-09-11 09:11:33.071529 2024-09-11 09:11:33.07154 plmef 10897 R rec 8b96e0ca-ae14-4136-9461-115471493426 +2024-09-11 09:11:33.133545 2024-09-11 09:11:33.13355 plmef 10898 R rec 62c7166e-64e2-4713-8390-e2ab80aab785 +2024-09-11 09:11:33.193607 2024-09-11 09:11:33.193618 plmef 10899 R rec 12a3b992-2008-42e6-b5c9-d05dc62c2ed4 +2024-09-11 09:11:33.248486 2024-09-11 09:11:33.248497 plmef 10900 R rec 22a7bda5-4d79-411c-b460-607290e94f0c +2024-09-11 09:11:33.314192 2024-09-11 09:11:33.314203 plmef 10901 R rec bbbd1b2f-4801-4b11-819a-207ff0a9b4d6 +2024-09-11 09:11:33.381782 2024-09-11 09:11:33.381793 plmef 10902 R rec 6b496851-e57f-4dd5-bd78-1f7a3162c05a +2024-09-11 09:11:33.446999 2024-09-11 09:11:33.447011 plmef 10903 R rec 70df4d82-3afc-495f-bd46-fc33c6d31422 +2024-09-11 09:11:33.51654 2024-09-11 09:11:33.516551 plmef 10904 R rec d60a401e-07ea-44af-9401-e81949d4b005 +2024-09-11 09:11:33.592406 2024-09-11 09:11:33.592422 plmef 10905 R rec 21584dbf-ef30-46aa-b22d-45f27479dc07 +2024-09-11 09:11:33.653395 2024-09-11 09:11:33.653401 plmef 10906 R rec d7b3cb88-95c5-40f6-ade1-2c98b4975824 +2024-09-11 09:11:33.720584 2024-09-11 09:11:33.720589 plmef 10907 R rec 1c29d77b-63ca-4f20-94d7-32e369e5eeae +2024-09-11 09:11:33.778726 2024-09-11 09:11:33.778736 plmef 10908 R rec 5c3f056b-8d4f-4dff-80f5-2e8fa7cfebce +2024-09-11 09:11:33.849165 2024-09-11 09:11:33.849176 plmef 10909 R rec 5368d935-b905-45dc-8a3b-b835d30e9d8f +2024-09-11 09:11:33.90406 2024-09-11 09:11:33.90407 plmef 10910 R rec d645f28b-7cb6-4b27-a761-c8a61693ceef +2024-09-11 09:11:33.963639 2024-09-11 09:11:33.96365 plmef 10911 R rec 248504c5-6a4b-4b4d-a27d-67c728e4031a +2024-09-11 09:11:34.024083 2024-09-11 09:11:34.024093 plmef 10912 R rec ea35aa51-c5cf-4228-ba76-f8de6674f25c +2024-09-11 09:11:34.099731 2024-09-11 09:11:34.099741 plmef 10913 R rec f62655f6-00bc-4b58-b987-cf8a3649ead5 +2024-09-11 09:11:34.178677 2024-09-11 09:11:34.178687 plmef 10914 R rec 19396c8d-6e58-49f0-8643-ad173602a99b +2024-09-11 09:11:34.245864 2024-09-11 09:11:34.245873 plmef 10915 R rec ce93e640-be80-404d-af7f-f46e61dcc652 +2024-09-11 09:11:34.310386 2024-09-11 09:11:34.310392 plmef 10916 R rec 26c38917-df15-404d-90c9-2e2df612411c +2024-09-11 09:11:34.374588 2024-09-11 09:11:34.374599 plmef 10917 R rec 650b84d2-4c34-4b39-aa9b-fc919cee4346 +2024-09-11 09:11:34.441351 2024-09-11 09:11:34.441362 plmef 10918 R rec e3e271ee-5840-4c95-9b3c-4f86b0667c6e +2024-09-11 09:11:34.516979 2024-09-11 09:11:34.516988 plmef 10919 R rec ff60966d-825d-469a-b91a-c95bcb31706f +2024-09-11 09:11:34.587036 2024-09-11 09:11:34.587047 plmef 10920 R rec 19c523e1-3752-4108-bfbc-71d6b4631e3d +2024-09-11 09:11:34.63878 2024-09-11 09:11:34.638785 plmef 10921 R rec ce687e6e-117e-4102-b0db-67081536889f +2024-09-11 09:11:34.694649 2024-09-11 09:11:34.69466 plmef 10922 R rec f3a9f61d-aa51-4505-b501-c998bc835481 +2024-09-11 09:11:34.76031 2024-09-11 09:11:34.760316 plmef 10923 R rec 594a2e07-3af0-4cc5-9f6d-ea841cc76c6f +2024-09-11 09:11:34.827741 2024-09-11 09:11:34.827746 plmef 10924 R rec d61b4dd2-5308-4f88-9286-2dbc0a8f17ce +2024-09-11 09:11:34.886595 2024-09-11 09:11:34.886639 plmef 10925 R rec c1c0f381-3d98-4f06-a3c6-c3a10477833f +2024-09-11 09:11:34.950547 2024-09-11 09:11:34.950557 plmef 10926 R rec da3d4314-83ab-430d-b344-5a727e387dfc +2024-09-11 09:11:35.017954 2024-09-11 09:11:35.017966 plmef 10927 R rec 9c6805de-4720-456f-a90e-2847276345ad +2024-09-11 09:11:35.076814 2024-09-11 09:11:35.076819 plmef 10928 R rec e8aa8881-13c6-4a0e-ab5a-45674ef50107 +2024-09-11 09:11:35.130632 2024-09-11 09:11:35.130637 plmef 10929 R rec 2ab01dd1-2fc2-4dff-adce-45279b6b907f +2024-09-11 09:11:35.189041 2024-09-11 09:11:35.189053 plmef 10930 R rec c8fc3873-e86f-456e-a754-a9a9887ff89f +2024-09-11 09:11:35.241906 2024-09-11 09:11:35.241912 plmef 10931 R rec 26a33ca1-5c67-49e1-aa6f-99b08cd9cf1f +2024-09-11 09:11:35.290686 2024-09-11 09:11:35.290698 plmef 10932 R rec fb98bcc9-164a-4ef0-8824-fb139815d9b9 +2024-09-11 09:11:35.352849 2024-09-11 09:11:35.35286 plmef 10933 R rec 3522f74c-2740-4df8-9f1d-9e795830ff8d +2024-09-11 09:11:35.417263 2024-09-11 09:11:35.417274 plmef 10934 R rec ef50bec9-e9d4-4fe9-bfca-67e18eab46cf +2024-09-11 09:11:35.487959 2024-09-11 09:11:35.487971 plmef 10935 R rec f81e1875-2c9c-42a1-8d3c-c5aeb1e3e7dc +2024-09-11 09:11:35.542824 2024-09-11 09:11:35.54283 plmef 10936 R rec 38304dfb-2f41-4189-85c8-f32ebe5a7316 +2024-09-11 09:11:35.62197 2024-09-11 09:11:35.621974 plmef 10937 R rec ec333b05-14b6-48ed-bf31-2d71f4b31f29 +2024-09-11 09:11:35.669628 2024-09-11 09:11:35.669633 plmef 10938 R rec b610274c-9c72-4f24-b57b-55148cecf85b +2024-09-11 09:11:35.71855 2024-09-11 09:11:35.718555 plmef 10939 R rec b392b2c1-2fcd-4337-89ad-f285b9d49b47 +2024-09-11 09:11:35.770321 2024-09-11 09:11:35.770332 plmef 10940 R rec f8bf197f-a178-4965-9dd5-d2778bc920a7 +2024-09-11 09:11:35.843693 2024-09-11 09:11:35.843704 plmef 10941 R rec 21bcbb55-f847-4bbe-aee2-9a8d0fa64de6 +2024-09-11 09:11:35.903888 2024-09-11 09:11:35.903898 plmef 10942 R rec 194b8577-7713-4e39-99f2-ef06cecb0fc5 +2024-09-11 09:11:35.964074 2024-09-11 09:11:35.96408 plmef 10943 R rec 3a37ea65-cdc5-4ba7-ac7f-e62070c2a9b0 +2024-09-11 09:11:36.019352 2024-09-11 09:11:36.019358 plmef 10944 R rec 7f992ccf-c9f2-4722-9072-1869b13d95f1 +2024-09-11 09:11:36.072544 2024-09-11 09:11:36.072554 plmef 10945 R rec 9898dcb9-4e73-4bcb-8e90-2d14f8a173f7 +2024-09-11 09:11:36.127736 2024-09-11 09:11:36.127741 plmef 10946 R rec 3a4c233f-b071-4c99-bace-ba2936a04f2e +2024-09-11 09:11:36.177695 2024-09-11 09:11:36.177706 plmef 10947 R rec fba273f7-830e-4950-bbb9-a4245a3ea56a +2024-09-11 09:11:36.231159 2024-09-11 09:11:36.231164 plmef 10948 R rec 40a28b06-c0e8-4d9c-a4cd-cbc2d9f9597c +2024-09-11 09:11:36.291413 2024-09-11 09:11:36.291418 plmef 10949 R rec 63f51219-630d-44df-ae68-14358b9dc566 +2024-09-11 09:11:36.338788 2024-09-11 09:11:36.338793 plmef 10950 R rec dd52d368-a75a-403b-8f50-023fc860261d +2024-09-11 09:11:36.400138 2024-09-11 09:11:36.400147 plmef 10951 R rec ac70b04a-cf85-4a04-92ad-9a8269b37e17 +2024-09-11 09:11:36.463505 2024-09-11 09:11:36.463516 plmef 10952 R rec 56a37684-2c5d-46e3-9671-68147dd28cbb +2024-09-11 09:11:36.525855 2024-09-11 09:11:36.525864 plmef 10953 R rec 63155858-a518-495d-8e10-495ffd31eb2a +2024-09-11 09:11:36.590702 2024-09-11 09:11:36.590712 plmef 10954 R rec 72ff62ef-95de-4e5c-bc4f-09e7a465c284 +2024-09-11 09:11:36.644952 2024-09-11 09:11:36.644957 plmef 10955 R rec 4661d5d2-9b79-42cf-95b4-ae9e2dabdff9 +2024-09-11 09:11:36.702848 2024-09-11 09:11:36.702858 plmef 10956 R rec 9340d224-6cb0-497a-8644-d2b8754f0e15 +2024-09-11 09:11:36.760678 2024-09-11 09:11:36.760684 plmef 10957 R rec 9255ebc2-2fed-423f-a6ba-695dff794c80 +2024-09-11 09:11:36.813236 2024-09-11 09:11:36.813246 plmef 10958 R rec 74d51c13-de84-459c-a942-c72d01c3b0c7 +2024-09-11 09:11:36.873383 2024-09-11 09:11:36.873404 plmef 10959 R rec fdc9f861-2b99-4277-bb2c-26698eb2c41d +2024-09-11 09:11:36.938755 2024-09-11 09:11:36.93876 plmef 10960 R rec eb1edb44-ab49-4df3-ba33-0725999d1eb4 +2024-09-11 09:11:37.000527 2024-09-11 09:11:37.000533 plmef 10961 R rec ba3bdca3-016a-4bb9-8250-d71da03eb7b0 +2024-09-11 09:11:37.060502 2024-09-11 09:11:37.060513 plmef 10962 R rec 4d3f180d-41e6-470c-9f82-bfe45b2a4f22 +2024-09-11 09:11:37.12423 2024-09-11 09:11:37.124235 plmef 10963 R rec eb7f4372-5be6-4acb-a4ce-4359770ffc7a +2024-09-11 09:11:37.17329 2024-09-11 09:11:37.173301 plmef 10964 R rec ff198dda-4ec1-4b8f-b271-ba223610fd19 +2024-09-11 09:11:37.235129 2024-09-11 09:11:37.235138 plmef 10965 R rec 3869f5bb-4ea4-4ac5-877d-1f7c6fcece7f +2024-09-11 09:11:37.291969 2024-09-11 09:11:37.291979 plmef 10966 R rec 21035758-ede3-4b97-97a5-996c259bf64d +2024-09-11 09:11:37.345837 2024-09-11 09:11:37.345846 plmef 10967 R rec f4331d53-1b74-4d42-8bc3-0e9e90e0880b +2024-09-11 09:11:37.404292 2024-09-11 09:11:37.404302 plmef 10968 R rec aed453d7-6e90-4849-8d06-addecf4b57ad +2024-09-11 09:11:37.458582 2024-09-11 09:11:37.458591 plmef 10969 R rec 5fd86f9b-4d8a-4d8f-a63a-172db3e6b537 +2024-09-11 09:11:37.529267 2024-09-11 09:11:37.529278 plmef 10970 R rec 83e3cc76-825c-40cf-9922-0e19597512c7 +2024-09-11 09:11:37.5898 2024-09-11 09:11:37.589809 plmef 10971 R rec c3eff399-83ad-44b1-844c-60717c367a02 +2024-09-11 09:11:37.65373 2024-09-11 09:11:37.653735 plmef 10972 R rec 30502589-c232-49cd-8ec4-4254cb12e1e3 +2024-09-11 09:11:37.714885 2024-09-11 09:11:37.71489 plmef 10973 R rec cecf0aff-076d-4b4a-a2dd-cc42885bb96c +2024-09-11 09:11:37.770542 2024-09-11 09:11:37.770547 plmef 10974 R rec 795cb231-239c-4997-a294-66d776804ade +2024-09-11 09:11:37.848766 2024-09-11 09:11:37.848777 plmef 10975 R rec 651ca5c0-6776-4d62-a63b-00c39e8460bb +2024-09-11 09:11:37.9064 2024-09-11 09:11:37.90641 plmef 10976 R rec 1633822e-2ea4-47aa-87ed-b6bbd49f5956 +2024-09-11 09:11:37.971999 2024-09-11 09:11:37.972009 plmef 10977 R rec f2976a49-022d-425a-a650-57ef8ac451c4 +2024-09-11 09:11:38.032098 2024-09-11 09:11:38.032108 plmef 10978 R rec bdbd2730-9ae1-40fb-8714-6536bff5b00d +2024-09-11 09:11:38.097274 2024-09-11 09:11:38.097279 plmef 10979 R rec faeddcc1-e640-4e65-ad03-bbb23cdb1ffc +2024-09-11 09:11:38.145921 2024-09-11 09:11:38.145931 plmef 10980 R rec 6c2fdc01-a399-4098-9932-643986d1fa61 +2024-09-11 09:11:38.205276 2024-09-11 09:11:38.205285 plmef 10981 R rec 2dc555e7-ef4e-4bdc-a5bb-b0312c8060fb +2024-09-11 09:11:38.25917 2024-09-11 09:11:38.259176 plmef 10982 R rec 0584516d-f8f0-48af-8c36-0f23b8a1115b +2024-09-11 09:11:38.321081 2024-09-11 09:11:38.321091 plmef 10983 R rec 9e990b67-6928-4da4-879f-94975ae4d90b +2024-09-11 09:11:38.383297 2024-09-11 09:11:38.38331 plmef 10984 R rec 351d982d-4627-418b-87ba-a731ea92c3ab +2024-09-11 09:11:38.446988 2024-09-11 09:11:38.446999 plmef 10985 R rec 8d924e92-3228-44e4-aa55-aa76ef8bcee5 +2024-09-11 09:11:38.507566 2024-09-11 09:11:38.507577 plmef 10986 R rec af342fd1-eb01-4b77-b803-cbf2d53f12dc +2024-09-11 09:11:38.567238 2024-09-11 09:11:38.56725 plmef 10987 R rec 6f355f47-0b96-4255-b885-bdb5c7df9e73 +2024-09-11 09:11:38.626056 2024-09-11 09:11:38.626062 plmef 10988 R rec 6520cee8-8969-4777-8b70-f681b17ff054 +2024-09-11 09:11:38.673737 2024-09-11 09:11:38.673748 plmef 10989 R rec eec0d95b-cb9f-4fdc-a935-fc250b88ac00 +2024-09-11 09:11:38.742714 2024-09-11 09:11:38.742724 plmef 10990 R rec 1f624018-672f-4cc9-bad4-4074412b4195 +2024-09-11 09:11:38.813991 2024-09-11 09:11:38.814001 plmef 10991 R rec c6b3507c-acc9-4b5a-ac94-339bbe0420d1 +2024-09-11 09:11:38.896717 2024-09-11 09:11:38.896722 plmef 10992 R rec 4c1e9301-6907-4037-bfc2-4c0293229905 +2024-09-11 09:11:38.966357 2024-09-11 09:11:38.966367 plmef 10993 R rec 50c3fd35-7b17-4d9a-97d2-4ca2ac0c419f +2024-09-11 09:11:39.037251 2024-09-11 09:11:39.037257 plmef 10994 R rec d42f231a-8cbe-4f3b-b8df-da57bd67cfd8 +2024-09-11 09:11:39.096557 2024-09-11 09:11:39.096568 plmef 10995 R rec 15547554-1e27-4006-9275-9463f900f30c +2024-09-11 09:11:39.147673 2024-09-11 09:11:39.147678 plmef 10996 R rec ffb368ce-3a36-4065-8e42-2961d530ca9e +2024-09-11 09:11:39.200975 2024-09-11 09:11:39.20098 plmef 10997 R rec 4adb2494-5f12-4c12-8c30-2034e65763a0 +2024-09-11 09:11:39.255723 2024-09-11 09:11:39.255734 plmef 10998 R rec 034f5ad6-18b3-4c89-a943-45152400ae9b +2024-09-11 09:11:39.320557 2024-09-11 09:11:39.320568 plmef 10999 R rec 4208b487-217a-4246-a9af-46555eb43bc9 +2024-09-11 09:11:39.379362 2024-09-11 09:11:39.379373 plmef 11000 R rec 36b14143-9d2c-4f17-93a9-62711c39ad83 +2024-09-11 09:11:39.444836 2024-09-11 09:11:39.444848 plmef 11001 R rec 6388dfa3-0e65-4205-b9c6-084880049823 +2024-09-11 09:11:39.503692 2024-09-11 09:11:39.503702 plmef 11002 R rec 09e50b74-f9da-4112-84a9-f8bd83aa3b64 +2024-09-11 09:11:39.56728 2024-09-11 09:11:39.567291 plmef 11003 R rec 24d2e7f8-b505-4acb-97ad-f62872dddeed +2024-09-11 09:11:39.628922 2024-09-11 09:11:39.628927 plmef 11004 R rec 480669fa-538c-4346-a4b8-900563e61eb9 +2024-09-11 09:11:39.677616 2024-09-11 09:11:39.677621 plmef 11005 R rec 9bf1a5cb-4ed9-4b8b-8779-c39a12f15789 +2024-09-11 09:11:39.733833 2024-09-11 09:11:39.733838 plmef 11006 R rec f7d348bd-5928-4897-ae67-000cb0b85294 +2024-09-11 09:11:39.806311 2024-09-11 09:11:39.806321 plmef 11007 R rec 1b9bd6d6-d695-4910-8147-12878a8d7dbf +2024-09-11 09:11:39.868826 2024-09-11 09:11:39.868837 plmef 11008 R rec 5b82d532-957d-413f-8c61-8aa797ed3a68 +2024-09-11 09:11:39.931769 2024-09-11 09:11:39.931774 plmef 11009 R rec babd8e48-c78a-4d05-a831-4e458ed3dbd1 +2024-09-11 09:11:39.988924 2024-09-11 09:11:39.988935 plmef 11010 R rec b7bc356e-416a-4f35-9fcd-8fdea0fa5552 +2024-09-11 09:11:40.054107 2024-09-11 09:11:40.054117 plmef 11011 R rec fe229389-5228-4482-a4f2-2f80d063a8f2 +2024-09-11 09:11:40.114929 2024-09-11 09:11:40.11494 plmef 11012 R rec 1e6b6979-1dab-47a3-bfaf-1515e80affae +2024-09-11 09:11:40.176477 2024-09-11 09:11:40.176489 plmef 11013 R rec 78bc1f4f-0719-4789-abd8-0f8e36a191eb +2024-09-11 09:11:40.245408 2024-09-11 09:11:40.245419 plmef 11014 R rec ada12808-71af-4f74-8e1d-a23200fe2261 +2024-09-11 09:11:40.310836 2024-09-11 09:11:40.310846 plmef 11015 R rec b3fcd533-8f53-498a-8f2e-2f64bb877f7b +2024-09-11 09:11:40.370303 2024-09-11 09:11:40.370312 plmef 11016 R rec 22d87602-6738-40e8-bb5a-78d2ede8ffe2 +2024-09-11 09:11:40.432689 2024-09-11 09:11:40.432729 plmef 11017 R rec a12a13bf-b0d9-44da-a022-e252df4215d3 +2024-09-11 09:11:40.493523 2024-09-11 09:11:40.493529 plmef 11018 R rec 562419ad-9dab-4e0f-888a-9bff5af26421 +2024-09-11 09:11:40.555081 2024-09-11 09:11:40.555092 plmef 11019 R rec e64a2436-03b0-401f-96ed-97d01b281fdc +2024-09-11 09:11:40.61948 2024-09-11 09:11:40.61949 plmef 11020 R rec 7fc0ce6c-0149-4459-bfda-e38958b77796 +2024-09-11 09:11:40.670545 2024-09-11 09:11:40.67055 plmef 11021 R rec c06c5df8-916b-4cd9-a082-4182cdf901b2 +2024-09-11 09:11:40.722713 2024-09-11 09:11:40.722718 plmef 11022 R rec 92be960f-3187-4cad-8e91-33303296fa08 +2024-09-11 09:11:40.77568 2024-09-11 09:11:40.77569 plmef 11023 R rec 198ca550-7f00-4160-b650-6ab00ce2851d +2024-09-11 09:11:40.844212 2024-09-11 09:11:40.844223 plmef 11024 R rec f004f66c-22db-4a7e-a8da-d4307203eed1 +2024-09-11 09:11:40.900323 2024-09-11 09:11:40.900328 plmef 11025 R rec c425cb4a-f53e-4415-a5bc-e268f6eba0d8 +2024-09-11 09:11:40.956518 2024-09-11 09:11:40.956522 plmef 11026 R rec 73bfcaf9-76d3-405b-902b-ead268d9e732 +2024-09-11 09:11:41.020645 2024-09-11 09:11:41.020655 plmef 11027 R rec 6bd763c7-d408-424a-bb0b-7a04de799689 +2024-09-11 09:11:41.082808 2024-09-11 09:11:41.082819 plmef 11028 R rec f3d4ae14-138c-4721-89f0-ab972430a349 +2024-09-11 09:11:41.138826 2024-09-11 09:11:41.138831 plmef 11029 R rec 4abaf084-6ee0-4736-94f1-5911b91a29d0 +2024-09-11 09:11:41.192273 2024-09-11 09:11:41.192283 plmef 11030 R rec f771dc19-60dd-464e-88e9-00dc9b9266a1 +2024-09-11 09:11:41.246921 2024-09-11 09:11:41.246932 plmef 11031 R rec fb1bafad-caa6-4659-81f2-9b9d483d6432 +2024-09-11 09:11:41.305434 2024-09-11 09:11:41.305444 plmef 11032 R rec f269d246-b97d-4ddd-b21e-6c5188166259 +2024-09-11 09:11:41.367843 2024-09-11 09:11:41.367854 plmef 11033 R rec 75adcf93-a3c1-43c8-953a-ec8345d744e9 +2024-09-11 09:11:41.429586 2024-09-11 09:11:41.429597 plmef 11034 R rec 11e22522-ae21-4364-9add-8c1402764275 +2024-09-11 09:11:41.4991 2024-09-11 09:11:41.499111 plmef 11035 R rec d3afcab8-700d-4aad-b98c-fda30b7eb06d +2024-09-11 09:11:41.562915 2024-09-11 09:11:41.562924 plmef 11036 R rec 6139d475-33c6-47f5-b9ab-2a9d6c5608e5 +2024-09-11 09:11:41.626999 2024-09-11 09:11:41.627005 plmef 11037 R rec ab28c9ba-7d82-45f4-87c1-4fa291acde64 +2024-09-11 09:11:41.678836 2024-09-11 09:11:41.678847 plmef 11038 R rec 404ccdac-d699-4c02-b372-7787191f6948 +2024-09-11 09:11:41.734681 2024-09-11 09:11:41.734686 plmef 11039 R rec 85c5442a-9ee1-48ab-856f-a293585bbe2c +2024-09-11 09:11:41.790148 2024-09-11 09:11:41.79016 plmef 11040 R rec 7aba10a3-4cfc-4b52-b242-a25675d2cdec +2024-09-11 09:11:41.850739 2024-09-11 09:11:41.85075 plmef 11041 R rec 5938d277-b54e-4aa7-a44d-9c2437f47ef9 +2024-09-11 09:11:41.915906 2024-09-11 09:11:41.915911 plmef 11042 R rec 33d8063b-bffa-4f9d-9cbb-6b4f86985260 +2024-09-11 09:11:41.977335 2024-09-11 09:11:41.97734 plmef 11043 R rec 26b76743-60df-4899-8cf3-c2d67df27563 +2024-09-11 09:11:42.03958 2024-09-11 09:11:42.039602 plmef 11044 R rec 4585ca5c-c6f0-43b6-9a47-a176d7db1a65 +2024-09-11 09:11:42.106188 2024-09-11 09:11:42.106198 plmef 11045 R rec 2457643f-3e4b-4044-a671-606c36a943aa +2024-09-11 09:11:42.171727 2024-09-11 09:11:42.171737 plmef 11046 R rec 742415dd-c1bc-4c82-a93e-36ea0cd98b81 +2024-09-11 09:11:42.233624 2024-09-11 09:11:42.233634 plmef 11047 R rec 20e06094-5bcf-4a9d-abc9-fec66c488a0c +2024-09-11 09:11:42.296552 2024-09-11 09:11:42.296563 plmef 11048 R rec a02c08af-ffbf-4540-8498-c2a854c673b4 +2024-09-11 09:11:42.357829 2024-09-11 09:11:42.35784 plmef 11049 R rec 724647eb-d323-42fa-a684-172afd862727 +2024-09-11 09:11:42.41821 2024-09-11 09:11:42.41822 plmef 11050 R rec 6af16d5d-cbe1-49b2-a02f-1c3e380c0202 +2024-09-11 09:11:42.48536 2024-09-11 09:11:42.485376 plmef 11051 R rec bd30f2fc-af71-4fe6-9acf-1eaf58b14244 +2024-09-11 09:11:42.546803 2024-09-11 09:11:42.546813 plmef 11052 R rec 467017eb-1416-42ed-94be-67e50cb903b2 +2024-09-11 09:11:42.621164 2024-09-11 09:11:42.621176 plmef 11053 R rec 378936df-6cb4-4eee-8209-e19315ba2535 +2024-09-11 09:11:42.685974 2024-09-11 09:11:42.685984 plmef 11054 R rec e0a6bd79-fb6b-40b7-b191-7189e4ce23cc +2024-09-11 09:11:42.744623 2024-09-11 09:11:42.744628 plmef 11055 R rec 2c96fee0-7bf2-4ea3-8f63-8f8eebd4135a +2024-09-11 09:11:42.817072 2024-09-11 09:11:42.817091 plmef 11056 R rec 892c6e82-b7a6-4eb7-a18b-10b072bf2d7b +2024-09-11 09:11:42.873916 2024-09-11 09:11:42.873921 plmef 11057 R rec bb8b2f04-8fed-4a49-9c6a-306baee3ddac +2024-09-11 09:11:42.933421 2024-09-11 09:11:42.933426 plmef 11058 R rec 8e49409a-c5d4-492b-840c-95e4f365290a +2024-09-11 09:11:42.988501 2024-09-11 09:11:42.988511 plmef 11059 R rec 188f65f7-5346-4544-9f9b-1e68566a10db +2024-09-11 09:11:43.050893 2024-09-11 09:11:43.050904 plmef 11060 R rec 90ae8b9d-9b29-4185-9f0d-11a6fac26b3d +2024-09-11 09:11:43.111242 2024-09-11 09:11:43.111252 plmef 11061 R rec ae5965c4-6e22-4ef0-a542-d4c67afc677e +2024-09-11 09:11:43.164144 2024-09-11 09:11:43.164149 plmef 11062 R rec c3e0a3e5-3cf3-4455-ae32-f5d83d16ec06 +2024-09-11 09:11:43.209513 2024-09-11 09:11:43.209518 plmef 11063 R rec 7b697a61-0132-49ae-a439-0f6d4da9ac94 +2024-09-11 09:11:43.257167 2024-09-11 09:11:43.257173 plmef 11064 R rec 71273ce7-68ee-4685-927f-649d0beb79ea +2024-09-11 09:11:43.314739 2024-09-11 09:11:43.314745 plmef 11065 R rec 9912419e-6035-4569-8c47-c6e42d328259 +2024-09-11 09:11:43.38681 2024-09-11 09:11:43.386821 plmef 11066 R rec 91bfcc7d-e3d5-44de-8d9e-0b93b7dfc53b +2024-09-11 09:11:43.445232 2024-09-11 09:11:43.445243 plmef 11067 R rec c0aa5b70-d9f7-4d91-9f14-0bb37df1c8bd +2024-09-11 09:11:43.49685 2024-09-11 09:11:43.496856 plmef 11068 R rec 417522cb-ffb3-4e73-8c4e-fe6f463009da +2024-09-11 09:11:43.545849 2024-09-11 09:11:43.545854 plmef 11069 R rec f32df3c9-3294-4023-8312-5d60236f1185 +2024-09-11 09:11:43.604343 2024-09-11 09:11:43.604348 plmef 11070 R rec 51d3fe36-9ada-493c-8fd2-561630588b08 +2024-09-11 09:11:43.654392 2024-09-11 09:11:43.654398 plmef 11071 R rec 22f73e89-ec9d-4878-93bd-dbe192ab1b4b +2024-09-11 09:11:43.708897 2024-09-11 09:11:43.708903 plmef 11072 R rec f4fa9339-d2e1-4c12-9694-3dd09fafbb34 +2024-09-11 09:11:43.768937 2024-09-11 09:11:43.768949 plmef 11073 R rec 1c4ec3b5-49fe-43f4-a94f-8d1b82f50371 +2024-09-11 09:11:43.835073 2024-09-11 09:11:43.835078 plmef 11074 R rec fd0b5afb-447b-4c62-9372-9b53d13df680 +2024-09-11 09:11:43.90343 2024-09-11 09:11:43.903439 plmef 11075 R rec 7f3c457e-2dbd-45e7-8104-b83922a05b16 +2024-09-11 09:11:43.966388 2024-09-11 09:11:43.966393 plmef 11076 R rec 64941d4e-a070-4253-a715-82e56b95c170 +2024-09-11 09:11:44.021543 2024-09-11 09:11:44.021547 plmef 11077 R rec 5f1373e0-dd80-48a8-bb7d-7f673a14af69 +2024-09-11 09:11:45.792301 2024-09-11 09:11:45.792307 plmef 11078 R rec 5b7a27c5-8e92-4273-b876-d0e857610b80 +2024-09-11 09:11:45.852638 2024-09-11 09:11:45.852643 plmef 11079 R rec 6551ee34-ccae-4fab-86cb-d0ba1cdf11a5 +2024-09-11 09:11:45.909183 2024-09-11 09:11:45.909189 plmef 11080 R rec 48953dd0-b283-4dce-87c0-e88c354a7d6c +2024-09-11 09:11:45.955152 2024-09-11 09:11:45.955158 plmef 11081 R rec 9568c45c-7bae-4bc1-a7a4-46b3b3bf7d91 +2024-09-11 09:11:46.000015 2024-09-11 09:11:46.00002 plmef 11082 R rec 2df4eecc-069b-495a-bf54-64bb615094d1 +2024-09-11 09:11:46.049909 2024-09-11 09:11:46.049915 plmef 11083 R rec 38f4deca-78ce-4324-8011-5f10bd459208 +2024-09-11 09:11:46.101236 2024-09-11 09:11:46.101241 plmef 11084 R rec 54b96e3d-effa-4030-80eb-344ab8e9f49e +2024-09-11 09:11:46.188708 2024-09-11 09:11:46.188717 plmef 11085 R rec 99231be8-41e8-4357-9e62-4ae4c534a970 +2024-09-11 09:11:46.249278 2024-09-11 09:11:46.249288 plmef 11086 R rec 5bb01a31-01a8-419f-aa28-cb9a719d8462 +2024-09-11 09:11:46.320703 2024-09-11 09:11:46.320714 plmef 11087 R rec b57371eb-abc2-4285-b700-7b3158e3055e +2024-09-11 09:11:46.396401 2024-09-11 09:11:46.396411 plmef 11088 R rec 3bcb019b-20c3-4746-89ad-2e4ffc3df623 +2024-09-11 09:11:46.465542 2024-09-11 09:11:46.465551 plmef 11089 R rec d39a9849-31d3-40b5-bcb6-8ec6617fcc98 +2024-09-11 09:11:46.532614 2024-09-11 09:11:46.53262 plmef 11090 R rec fcfe432e-a0cc-4a23-9dca-f1421d47602d +2024-09-11 09:11:46.598701 2024-09-11 09:11:46.59871 plmef 11091 R rec 95c5316a-43cc-4228-9e2e-4629807bc5cb +2024-09-11 09:11:46.663189 2024-09-11 09:11:46.6632 plmef 11092 R rec de4fa2a4-9586-445e-ae75-9d6283c4e708 +2024-09-11 09:11:46.734994 2024-09-11 09:11:46.735005 plmef 11093 R rec a337b1ad-0ce7-4d17-9163-9679a8bdc3e0 +2024-09-11 09:11:46.803092 2024-09-11 09:11:46.803103 plmef 11094 R rec 71ccf432-96a6-4b3f-be11-9c296ecbc390 +2024-09-11 09:11:46.866869 2024-09-11 09:11:46.866891 plmef 11095 R rec 9104756e-c8b0-426f-be41-1b2d476728c6 +2024-09-11 09:11:46.921175 2024-09-11 09:11:46.92118 plmef 11096 R rec d6a9c0b6-cc5b-42e4-8532-a83175ec7a79 +2024-09-11 09:11:46.980135 2024-09-11 09:11:46.980148 plmef 11097 R rec b7c877cd-0441-4b4e-bce3-f4e5c42512a2 +2024-09-11 09:11:47.061496 2024-09-11 09:11:47.061501 plmef 11098 R rec 6d5115bc-6966-4a7a-bc03-d7737c7e6fda +2024-09-11 09:11:47.116558 2024-09-11 09:11:47.116562 plmef 11099 R rec 89e13f79-4ef2-4443-acd2-cb5240d26f7a +2024-09-11 09:11:47.165074 2024-09-11 09:11:47.165084 plmef 11100 R rec b4b041e7-8072-4c9c-b68a-412b22ad9eb1 +2024-09-11 09:11:47.223857 2024-09-11 09:11:47.223863 plmef 11101 R rec b67bd2c5-873e-453e-8224-8b45b3becb7d +2024-09-11 09:11:47.275536 2024-09-11 09:11:47.275541 plmef 11102 R rec 69682510-1c8f-4840-ba9b-6098e058dea8 +2024-09-11 09:11:47.34102 2024-09-11 09:11:47.341032 plmef 11103 R rec e08fa7ae-7035-4710-9cc2-1475bdf3fd7f +2024-09-11 09:11:47.402194 2024-09-11 09:11:47.402199 plmef 11104 R rec ce89406e-7d18-47cc-aeab-5cfc18480c4c +2024-09-11 09:11:47.465203 2024-09-11 09:11:47.465213 plmef 11105 R rec e92d55da-ed8a-43cf-9500-b207f469e576 +2024-09-11 09:11:47.529277 2024-09-11 09:11:47.529288 plmef 11106 R rec 363ae616-4550-4d22-87c2-e86f644a8ec9 +2024-09-11 09:11:47.588479 2024-09-11 09:11:47.588484 plmef 11107 R rec c708f55f-e46c-405c-bce6-49d4888b0a05 +2024-09-11 09:11:47.638471 2024-09-11 09:11:47.638476 plmef 11108 R rec eec536c4-5618-4cc1-b42d-37b092eac507 +2024-09-11 09:11:47.695725 2024-09-11 09:11:47.695737 plmef 11109 R rec 7cee7298-8d2f-4038-9cda-a9b5a5e203fd +2024-09-11 09:11:47.742317 2024-09-11 09:11:47.742322 plmef 11110 R rec 7de8a3e9-31b8-48ff-919c-1fb8d8b175c8 +2024-09-11 09:11:47.789971 2024-09-11 09:11:47.789976 plmef 11111 R rec c6ef0de7-e511-4b4d-8471-b43bbe0e2f9a +2024-09-11 09:11:47.870753 2024-09-11 09:11:47.870759 plmef 11112 R rec b3f7fc16-1956-4830-8d54-f560f98934a9 +2024-09-11 09:11:48.073844 2024-09-11 09:11:48.073854 plmef 11113 R rec f2be1c02-1ddc-4c3f-85ea-34e39bf8fa6f +2024-09-11 09:11:48.137403 2024-09-11 09:11:48.137409 plmef 11114 R rec dec92430-7528-480f-abeb-e99b2812be5a +2024-09-11 09:11:48.191515 2024-09-11 09:11:48.191526 plmef 11115 R rec 1e56c06c-6041-4ff7-b8a8-4eee7b43278d +2024-09-11 09:11:48.249987 2024-09-11 09:11:48.249993 plmef 11116 R rec 35978273-6611-40c0-83c5-958c009972fc +2024-09-11 09:11:48.317934 2024-09-11 09:11:48.317945 plmef 11117 R rec f362723b-3ec8-466d-971c-62ee225fe3cc +2024-09-11 09:11:48.387451 2024-09-11 09:11:48.387464 plmef 11118 R rec 2384d750-ddd5-41c0-9961-9a13ca797e6f +2024-09-11 09:11:48.440076 2024-09-11 09:11:48.440081 plmef 11119 R rec 5a087033-c080-43e9-ad1c-0a4078f05cfd +2024-09-11 09:11:48.492041 2024-09-11 09:11:48.492046 plmef 11120 R rec 49a8a5d7-82dd-458c-bf55-c141b1dd05a9 +2024-09-11 09:11:48.556239 2024-09-11 09:11:48.556244 plmef 11121 R rec 031051d4-8a44-4476-a13c-38fceb5f29cf +2024-09-11 09:11:48.609593 2024-09-11 09:11:48.609598 plmef 11122 R rec 41b30214-7b72-462b-82d7-894cfb57a585 +2024-09-11 09:11:48.661506 2024-09-11 09:11:48.661511 plmef 11123 R rec 5222cad9-5717-49f9-8486-fce1705ab7c1 +2024-09-11 09:11:48.719658 2024-09-11 09:11:48.719662 plmef 11124 R rec 62c192d7-1a08-498f-931b-aff29de9d381 +2024-09-11 09:11:48.78838 2024-09-11 09:11:48.788384 plmef 11125 R rec 11d5277b-7d44-4b6b-9500-40f146a8d5a2 +2024-09-11 09:11:48.85474 2024-09-11 09:11:48.85475 plmef 11126 R rec 41624f0d-0c97-4df0-93fb-573286c28708 +2024-09-11 09:11:48.918829 2024-09-11 09:11:48.918839 plmef 11127 R rec 95937b0a-a339-4bfd-90e9-969d6b5ce29e +2024-09-11 09:11:48.984868 2024-09-11 09:11:48.984877 plmef 11128 R rec 67415291-4286-45e7-b79f-3b8c49386efb +2024-09-11 09:11:49.042379 2024-09-11 09:11:49.042389 plmef 11129 R rec ddc54e5b-31b4-444e-9029-0643c34a5b67 +2024-09-11 09:11:49.104753 2024-09-11 09:11:49.104764 plmef 11130 R rec c5fd4b76-758f-4b5b-968f-f265be5efc3d +2024-09-11 09:11:49.158706 2024-09-11 09:11:49.158712 plmef 11131 R rec afed1697-5a06-4f40-9223-60f1b12ff527 +2024-09-11 09:11:49.217238 2024-09-11 09:11:49.217243 plmef 11132 R rec ae907014-157a-43e9-92f6-7a4197365228 +2024-09-11 09:11:49.275985 2024-09-11 09:11:49.275989 plmef 11133 R rec 4dae8f7b-6316-4b09-9fb8-26dabc157fb7 +2024-09-11 09:11:49.354207 2024-09-11 09:11:49.354217 plmef 11134 R rec 527a9680-32bb-4ae2-a4f1-af1671f809a3 +2024-09-11 09:11:49.459419 2024-09-11 09:11:49.45943 plmef 11135 R rec 79a61e8e-efa4-4c0e-9ab2-7247711db137 +2024-09-11 09:11:49.532762 2024-09-11 09:11:49.532774 plmef 11136 R rec 5c456c57-7482-4787-aa6c-d89d47f0808c +2024-09-11 09:11:49.58832 2024-09-11 09:11:49.588326 plmef 11137 R rec 0e25f441-0431-4e68-8a41-f24c752220e3 +2024-09-11 09:11:49.642402 2024-09-11 09:11:49.642408 plmef 11138 R rec cf0deae2-bbe0-4a69-bbdd-58ef1505be52 +2024-09-11 09:11:49.700766 2024-09-11 09:11:49.70077 plmef 11139 R rec 63749a13-985e-4d39-8d00-8544f217209f +2024-09-11 09:11:49.771218 2024-09-11 09:11:49.771227 plmef 11140 R rec a371590d-092d-49d5-a657-49249746b78f +2024-09-11 09:11:49.83686 2024-09-11 09:11:49.836865 plmef 11141 R rec cf1ae5eb-d404-42eb-b566-263153194361 +2024-09-11 09:11:49.895987 2024-09-11 09:11:49.895997 plmef 11142 R rec 95fc5c52-cbe7-4764-a280-12e1f27d5e3f +2024-09-11 09:11:49.967445 2024-09-11 09:11:49.967456 plmef 11143 R rec 134c4cca-bcf0-4a32-868b-75f37572be42 +2024-09-11 09:11:50.054432 2024-09-11 09:11:50.054437 plmef 11144 R rec f9b0719e-651c-4229-b3f9-66d81ac55f97 +2024-09-11 09:11:50.117669 2024-09-11 09:11:50.117679 plmef 11145 R rec 17a886bf-8162-4f73-8e03-1674e208c81d +2024-09-11 09:11:50.169194 2024-09-11 09:11:50.169199 plmef 11146 R rec 4e6b6e17-3074-4153-9157-e343a8e635e8 +2024-09-11 09:11:50.229875 2024-09-11 09:11:50.22988 plmef 11147 R rec 0c83cecd-8d6b-4e8f-b622-d5f3af2da822 +2024-09-11 09:11:50.289808 2024-09-11 09:11:50.289823 plmef 11148 R rec 64569335-c1bd-4ec8-aef6-e3d64188b1a8 +2024-09-11 09:11:50.362245 2024-09-11 09:11:50.36225 plmef 11149 R rec 0af36ad0-e8f4-4140-a01f-204711682c67 +2024-09-11 09:11:50.421368 2024-09-11 09:11:50.421378 plmef 11150 R rec 71e8feb3-127e-4f65-8208-5887c9ad92c2 +2024-09-11 09:11:50.495804 2024-09-11 09:11:50.495816 plmef 11151 R rec d3a29ecb-6cd2-4aec-8969-16200481a9c9 +2024-09-11 09:11:50.564233 2024-09-11 09:11:50.564237 plmef 11152 R rec c387de46-dd1d-4cf6-be25-98be3bbf8518 +2024-09-11 09:11:50.637505 2024-09-11 09:11:50.637511 plmef 11153 R rec e216bb8c-90a3-4520-a7e9-54744929d319 +2024-09-11 09:11:50.714042 2024-09-11 09:11:50.714054 plmef 11154 R rec 5a45b6be-72f4-437a-a9e6-0ec509f534de +2024-09-11 09:11:50.796064 2024-09-11 09:11:50.796077 plmef 11155 R rec 6d2d6ab1-bbc4-4a69-a961-664b45f5ef66 +2024-09-11 09:11:50.868556 2024-09-11 09:11:50.868561 plmef 11156 R rec dba8f29b-f41b-4f38-8946-2fae8ff88f18 +2024-09-11 09:11:50.936485 2024-09-11 09:11:50.936496 plmef 11157 R rec 9fd71b4d-c8fc-47f2-8554-2f017afcb17b +2024-09-11 09:11:51.007498 2024-09-11 09:11:51.007503 plmef 11158 R rec c4d01c77-c534-4f72-98d3-248b24f4eedc +2024-09-11 09:11:51.069777 2024-09-11 09:11:51.069787 plmef 11159 R rec 91adef4c-29e0-493a-a8e4-7ba1f2db6d5d +2024-09-11 09:11:51.128765 2024-09-11 09:11:51.128774 plmef 11160 R rec b189e307-db31-4ec9-bedd-84eef1c0198c +2024-09-11 09:11:51.184979 2024-09-11 09:11:51.184983 plmef 11161 R rec d909b8f4-94b1-4dc8-ac4c-0e04e7431835 +2024-09-11 09:11:51.238724 2024-09-11 09:11:51.238729 plmef 11162 R rec 63c1acdd-9332-459b-ae12-d2998f6f56fb +2024-09-11 09:11:51.305196 2024-09-11 09:11:51.305201 plmef 11163 R rec 6b3d8a1b-8772-47e6-b7cb-64aea94d8a00 +2024-09-11 09:11:51.36919 2024-09-11 09:11:51.369203 plmef 11164 R rec 5e80b45a-de7b-42d9-8ac2-7d00de2b3f13 +2024-09-11 09:11:51.441239 2024-09-11 09:11:51.441249 plmef 11165 R rec 52d3a187-0306-48cc-9388-7964953f02a2 +2024-09-11 09:11:51.503026 2024-09-11 09:11:51.503036 plmef 11166 R rec 655c9671-58fc-415d-88a5-c6ca504bc866 +2024-09-11 09:11:51.575845 2024-09-11 09:11:51.57585 plmef 11167 R rec 6b84afce-3f96-4dd9-a9b1-b72b8469c452 +2024-09-11 09:11:51.639864 2024-09-11 09:11:51.639869 plmef 11168 R rec 75819564-41c3-483e-96a5-bb717d470640 +2024-09-11 09:11:51.699008 2024-09-11 09:11:51.699019 plmef 11169 R rec 49226770-485e-455b-add9-40fad7685979 +2024-09-11 09:11:51.785292 2024-09-11 09:11:51.785303 plmef 11170 R rec 17c0f7d9-8129-41b2-a7ed-45ed0a58dc1b +2024-09-11 09:11:51.868967 2024-09-11 09:11:51.868971 plmef 11171 R rec 484df67c-7c23-42bb-bde9-5410362b33f0 +2024-09-11 09:11:51.928514 2024-09-11 09:11:51.928524 plmef 11172 R rec 2f43d895-4e90-4807-8e16-4ffc8d0dd78c +2024-09-11 09:11:52.000577 2024-09-11 09:11:52.000583 plmef 11173 R rec f6a44a1c-f3b5-48a6-b6e9-2491e920900d +2024-09-11 09:11:52.069068 2024-09-11 09:11:52.069073 plmef 11174 R rec 83a5d5b9-d684-483e-9ce3-a2d8f315087b +2024-09-11 09:11:52.137453 2024-09-11 09:11:52.137458 plmef 11175 R rec 4d66db23-d05c-4ecf-8131-6f39cc4de82a +2024-09-11 09:11:52.192573 2024-09-11 09:11:52.192583 plmef 11176 R rec b1e87a2a-d7cc-4efc-bc96-44b3c9d4dd32 +2024-09-11 09:11:52.261772 2024-09-11 09:11:52.261783 plmef 11177 R rec e34caecd-57b9-44d4-9203-f9813854cec8 +2024-09-11 09:11:52.326515 2024-09-11 09:11:52.326526 plmef 11178 R rec 580e13d0-652b-4174-8c5d-ed3359faa928 +2024-09-11 09:11:52.392726 2024-09-11 09:11:52.392737 plmef 11179 R rec 3ef13f59-b8f0-4e95-bec5-5be4f66838d4 +2024-09-11 09:11:52.46451 2024-09-11 09:11:52.46452 plmef 11180 R rec 373bce35-f1ef-4172-94c5-6d14855fd8eb +2024-09-11 09:11:52.531422 2024-09-11 09:11:52.531433 plmef 11181 R rec 7d33e70e-1553-4f84-b0dd-3e2d5aea4cd2 +2024-09-11 09:11:52.591692 2024-09-11 09:11:52.591703 plmef 11182 R rec 9512a62d-b242-46e3-8bf4-423e741fa20b +2024-09-11 09:11:52.650938 2024-09-11 09:11:52.650943 plmef 11183 R rec fccfa3c4-49a7-4dd2-8358-c230f0e9a2fe +2024-09-11 09:11:52.69985 2024-09-11 09:11:52.699855 plmef 11184 R rec e278f7ad-d361-46bb-a942-54b9f8456673 +2024-09-11 09:11:52.751197 2024-09-11 09:11:52.751202 plmef 11185 R rec d693af00-bdf6-47f2-9104-4696f85f7442 +2024-09-11 09:11:52.81405 2024-09-11 09:11:52.814055 plmef 11186 R rec a100843b-3b72-40ee-8cd6-7689a5699c05 +2024-09-11 09:11:52.875653 2024-09-11 09:11:52.875663 plmef 11187 R rec 1a0f9022-ba97-4960-9ac0-982bf7ca8cca +2024-09-11 09:11:52.94592 2024-09-11 09:11:52.945925 plmef 11188 R rec 997411d2-a72e-493b-80b2-3e03f9d4a2a3 +2024-09-11 09:11:53.010704 2024-09-11 09:11:53.010709 plmef 11189 R rec 897e608d-4ec6-48ec-86d2-a9455582bef2 +2024-09-11 09:11:53.101553 2024-09-11 09:11:53.101562 plmef 11190 R rec e87d9fe8-0cca-47f2-803f-24f2baa83e17 +2024-09-11 09:11:53.210783 2024-09-11 09:11:53.210794 plmef 11191 R rec 1bca6bc8-d383-401e-8dd4-c32e8cc64b68 +2024-09-11 09:11:53.305055 2024-09-11 09:11:53.30506 plmef 11192 R rec 23b6eb9e-6575-419a-a9c0-a8b1f11f9fde +2024-09-11 09:11:53.361806 2024-09-11 09:11:53.361811 plmef 11193 R rec 51d9a3be-b034-4ef2-b428-f6e631dff736 +2024-09-11 09:11:53.421932 2024-09-11 09:11:53.421941 plmef 11194 R rec 20169ddc-fb7c-479a-be02-fe83e9aa7ecf +2024-09-11 09:11:53.488521 2024-09-11 09:11:53.488531 plmef 11195 R rec 6a0241de-fb68-4958-bb1d-d971b9e1cf9c +2024-09-11 09:11:53.553149 2024-09-11 09:11:53.553154 plmef 11196 R rec d1f61e79-eb47-4f6f-973c-57d1fad838ad +2024-09-11 09:11:53.619927 2024-09-11 09:11:53.61994 plmef 11197 R rec e95a9b8e-e26b-415e-803c-124c59bb6da2 +2024-09-11 09:11:53.668335 2024-09-11 09:11:53.66834 plmef 11198 R rec f0a7f2ea-6a90-4883-854a-75206ca956e9 +2024-09-11 09:11:53.724108 2024-09-11 09:11:53.724114 plmef 11199 R rec 8cb41390-c1d0-4622-b334-c6e064bbe5c5 +2024-09-11 09:11:53.78773 2024-09-11 09:11:53.787745 plmef 11200 R rec 45295563-9adc-4e78-8292-cbcdaf490082 +2024-09-11 09:11:53.858407 2024-09-11 09:11:53.858418 plmef 11201 R rec ee547594-5917-4a45-9712-43418fa7b4c3 +2024-09-11 09:11:53.93672 2024-09-11 09:11:53.936731 plmef 11202 R rec 1aaad1aa-873b-4d17-85a4-f014a393d2e6 +2024-09-11 09:11:54.004547 2024-09-11 09:11:54.004557 plmef 11203 R rec 5fc48a1e-9141-45e9-96e1-125189ae9e85 +2024-09-11 09:11:54.071788 2024-09-11 09:11:54.071798 plmef 11204 R rec ac274642-24ee-4514-a4d5-b81a89358cc4 +2024-09-11 09:11:54.128776 2024-09-11 09:11:54.12878 plmef 11205 R rec e70b40c8-3c7b-4ba9-aad2-59d8291d7747 +2024-09-11 09:11:54.183798 2024-09-11 09:11:54.183803 plmef 11206 R rec 5db9447b-fef6-4f06-9219-0579e6e76a51 +2024-09-11 09:11:54.240427 2024-09-11 09:11:54.240432 plmef 11207 R rec bf154bbe-0ced-484a-8ed4-5904eb9a8a30 +2024-09-11 09:11:54.323705 2024-09-11 09:11:54.323716 plmef 11208 R rec ade76a8f-5e0c-4975-9c95-4ce4a4d45877 +2024-09-11 09:11:54.393942 2024-09-11 09:11:54.393953 plmef 11209 R rec ca62e1a1-7d04-468d-93ce-882464c42f2a +2024-09-11 09:11:54.459999 2024-09-11 09:11:54.460011 plmef 11210 R rec 41043394-d100-41d6-97a1-f0be84dbf391 +2024-09-11 09:11:54.519414 2024-09-11 09:11:54.519424 plmef 11211 R rec 4b5e130b-0091-4514-991a-f4a5d914c115 +2024-09-11 09:11:54.591397 2024-09-11 09:11:54.591407 plmef 11212 R rec 85239c5d-7eb1-4020-b220-7ecdccc555f5 +2024-09-11 09:11:54.666738 2024-09-11 09:11:54.666742 plmef 11213 R rec 1a753f01-5c05-4049-a8ff-6d66b00260f6 +2024-09-11 09:11:54.720738 2024-09-11 09:11:54.720743 plmef 11214 R rec bd1a7fab-8b97-4386-9e21-66f76bb66f6a +2024-09-11 09:11:54.796838 2024-09-11 09:11:54.796848 plmef 11215 R rec 152ca6c5-1f97-47b6-a39f-cef82b28deb0 +2024-09-11 09:11:54.876459 2024-09-11 09:11:54.876465 plmef 11216 R rec c3237425-ba2d-47d6-8ea1-901aecff250a +2024-09-11 09:11:54.953221 2024-09-11 09:11:54.953231 plmef 11217 R rec 57120299-ff19-49cb-9dec-cc12c47c42aa +2024-09-11 09:11:55.021087 2024-09-11 09:11:55.021092 plmef 11218 R rec fff07bf2-719f-4cd9-b457-679e53e2eb4a +2024-09-11 09:11:55.085768 2024-09-11 09:11:55.085778 plmef 11219 R rec 3d12c34e-eddb-4fd8-8145-fff9a45accf6 +2024-09-11 09:11:55.14849 2024-09-11 09:11:55.148495 plmef 11220 R rec f4503e29-bdf0-420f-9319-caa8cde3c7b4 +2024-09-11 09:11:55.201696 2024-09-11 09:11:55.201707 plmef 11221 R rec 479cfc16-28c3-413e-b564-cf375cec5998 +2024-09-11 09:11:55.258897 2024-09-11 09:11:55.258907 plmef 11222 R rec b2733899-85ad-4806-9868-4daa61f668f8 +2024-09-11 09:11:55.312883 2024-09-11 09:11:55.312888 plmef 11223 R rec bdc433c5-1af5-4a7b-bbdc-47805cc249e4 +2024-09-11 09:11:55.373829 2024-09-11 09:11:55.373839 plmef 11224 R rec 198ec97e-0c7d-4ba3-8680-f30890094932 +2024-09-11 09:11:55.434636 2024-09-11 09:11:55.434646 plmef 11225 R rec 25f202fe-d604-4230-b523-120c22b9504d +2024-09-11 09:11:55.505566 2024-09-11 09:11:55.505577 plmef 11226 R rec 2493f48b-8b00-4c10-a6c2-a098228777e6 +2024-09-11 09:11:55.571883 2024-09-11 09:11:55.571893 plmef 11227 R rec c751cde7-6288-456c-968a-69e113db8fce +2024-09-11 09:11:55.648826 2024-09-11 09:11:55.64883 plmef 11228 R rec f08f4331-5b1a-4bb1-9018-297864bea199 +2024-09-11 09:11:55.701432 2024-09-11 09:11:55.701436 plmef 11229 R rec 461528cb-de2c-4e96-a4f8-9424522be15c +2024-09-11 09:11:55.756587 2024-09-11 09:11:55.756597 plmef 11230 R rec 9a2ee180-0a52-42ce-b0e8-fe18e706a17b +2024-09-11 09:11:55.826961 2024-09-11 09:11:55.826971 plmef 11231 R rec 1e4010e5-16e8-40d6-955d-a5d1ba268b4c +2024-09-11 09:11:55.890625 2024-09-11 09:11:55.890636 plmef 11232 R rec e1ab19d4-1dc5-4820-b710-dea66e3ec837 +2024-09-11 09:11:55.964761 2024-09-11 09:11:55.964771 plmef 11233 R rec 2e98a6dc-0380-45d9-9d93-152b27a48045 +2024-09-11 09:11:56.031214 2024-09-11 09:11:56.031224 plmef 11234 R rec 129f5ea2-b613-43a3-acd0-b1b4841907cd +2024-09-11 09:11:56.098166 2024-09-11 09:11:56.098176 plmef 11235 R rec c5714d40-5aca-48e0-95a7-13bfc6f31ae6 +2024-09-11 09:11:56.159933 2024-09-11 09:11:56.159937 plmef 11236 R rec f1264930-8454-4ff8-9ee9-362c5215d122 +2024-09-11 09:11:56.217487 2024-09-11 09:11:56.217491 plmef 11237 R rec ce93fd78-b45f-46f2-81ed-2361db036f38 +2024-09-11 09:11:56.280205 2024-09-11 09:11:56.280215 plmef 11238 R rec 6c48bb83-218e-4aa4-b059-12ba3367d9b8 +2024-09-11 09:11:56.350374 2024-09-11 09:11:56.350385 plmef 11239 R rec 77693185-a03d-4878-b668-b7144042593a +2024-09-11 09:11:56.422719 2024-09-11 09:11:56.422729 plmef 11240 R rec 3992596a-524d-40c9-bb9b-6183d47bde56 +2024-09-11 09:11:56.487915 2024-09-11 09:11:56.487925 plmef 11241 R rec 3820fa49-fdc5-497c-8448-9c8e886c7845 +2024-09-11 09:11:56.555207 2024-09-11 09:11:56.555217 plmef 11242 R rec 72be7c20-58e4-4da7-bb55-7f1f44aa883f +2024-09-11 09:11:56.638311 2024-09-11 09:11:56.638322 plmef 11243 R rec 4860a7dd-3950-4a16-8190-61ddade592dc +2024-09-11 09:11:56.696534 2024-09-11 09:11:56.696544 plmef 11244 R rec 22f3bc46-1c0e-4890-9a07-2afe1b815e8f +2024-09-11 09:11:56.759751 2024-09-11 09:11:56.759761 plmef 11245 R rec dec649b9-750e-4207-893c-107338d31062 +2024-09-11 09:11:56.849288 2024-09-11 09:11:56.849298 plmef 11246 R rec e2d95025-d3c5-4ce3-aa05-487a412f6808 +2024-09-11 09:11:56.918815 2024-09-11 09:11:56.91882 plmef 11247 R rec f008d80e-eb71-4049-8bff-bcf576aab526 +2024-09-11 09:11:56.98692 2024-09-11 09:11:56.986931 plmef 11248 R rec 35c4dbb4-1429-42c7-b3b9-5dec3690bc6d +2024-09-11 09:11:57.053258 2024-09-11 09:11:57.053269 plmef 11249 R rec 153df41b-ada2-4b4e-8457-f2c1de438ca9 +2024-09-11 09:11:57.118765 2024-09-11 09:11:57.118775 plmef 11250 R rec bba8d29c-42c1-478f-bea9-c7bbdae2650c +2024-09-11 09:11:57.17286 2024-09-11 09:11:57.172865 plmef 11251 R rec 67f0a076-faf1-4056-8f42-43368277ffbd +2024-09-11 09:11:57.223064 2024-09-11 09:11:57.223068 plmef 11252 R rec 45c7adb0-d8d3-4f9f-946b-97ac0fe6d41c +2024-09-11 09:11:57.279476 2024-09-11 09:11:57.279486 plmef 11253 R rec c6dbfa59-2be7-4f11-b0e4-fb40a46025ed +2024-09-11 09:11:57.34069 2024-09-11 09:11:57.3407 plmef 11254 R rec a56475a6-902d-4833-805e-a9baf68398da +2024-09-11 09:11:57.4093 2024-09-11 09:11:57.40931 plmef 11255 R rec d18dce00-8395-431b-b0c4-2e80aa928dc6 +2024-09-11 09:11:57.472001 2024-09-11 09:11:57.472014 plmef 11256 R rec 7cac44be-fd72-4eb4-b080-ae60b1c3e5f5 +2024-09-11 09:11:57.541256 2024-09-11 09:11:57.541261 plmef 11257 R rec ea361e16-5824-45fc-9df1-b1947d53252a +2024-09-11 09:11:57.609962 2024-09-11 09:11:57.609973 plmef 11258 R rec 6f15f83b-c42e-4eb1-b114-a0aafbb3fef3 +2024-09-11 09:11:57.670027 2024-09-11 09:11:57.670032 plmef 11259 R rec 19116c69-d48e-4052-8cae-9a07068ba7b8 +2024-09-11 09:11:57.728852 2024-09-11 09:11:57.728863 plmef 11260 R rec 5cdc242f-ca00-4877-b4b2-e1a2a6448464 +2024-09-11 09:11:57.812256 2024-09-11 09:11:57.812262 plmef 11261 R rec ffba917a-7a73-4732-8def-5ecda454a42f +2024-09-11 09:11:57.860182 2024-09-11 09:11:57.860187 plmef 11262 R rec e77dd639-4f3d-4be8-a02e-987ea0feb84d +2024-09-11 09:11:57.94837 2024-09-11 09:11:57.948381 plmef 11263 R rec 3e0e144c-3391-4e3b-aff9-97ccb0f2e1bb +2024-09-11 09:11:58.035018 2024-09-11 09:11:58.035023 plmef 11264 R rec ff109097-cada-498d-998a-68061a73d207 +2024-09-11 09:11:58.103815 2024-09-11 09:11:58.103826 plmef 11265 R rec 7a22b914-eed9-4562-b1ad-c1d5bcc1997b +2024-09-11 09:11:58.163819 2024-09-11 09:11:58.163824 plmef 11266 R rec 25e31c29-ebaa-4da1-bbce-f001464dede2 +2024-09-11 09:11:58.215222 2024-09-11 09:11:58.215226 plmef 11267 R rec 176bb1f9-c949-4e4b-a49d-8452a53ff31b +2024-09-11 09:11:58.274049 2024-09-11 09:11:58.274059 plmef 11268 R rec 57e2cdfb-3834-43f1-9d3a-fe24bbf54393 +2024-09-11 09:11:58.350483 2024-09-11 09:11:58.350494 plmef 11269 R rec 1615465f-6dfd-452d-a003-1775b556443d +2024-09-11 09:11:58.420314 2024-09-11 09:11:58.420325 plmef 11270 R rec e769f56c-fe96-4b3a-a1d7-5f9ee923357b +2024-09-11 09:11:58.486167 2024-09-11 09:11:58.486177 plmef 11271 R rec b5c18a42-e2fb-48b8-9e97-655db0a113f2 +2024-09-11 09:11:58.550972 2024-09-11 09:11:58.550982 plmef 11272 R rec 4d5897e0-8aba-4e0a-b326-8c2febf0202f +2024-09-11 09:11:58.610965 2024-09-11 09:11:58.610975 plmef 11273 R rec e484998e-5f26-4de4-aa10-fd160eaa657b +2024-09-11 09:11:58.674019 2024-09-11 09:11:58.674024 plmef 11274 R rec 4e3d565a-6910-4356-8075-1585647bce25 +2024-09-11 09:11:58.731243 2024-09-11 09:11:58.731248 plmef 11275 R rec 4d9d093b-8d70-4f26-93aa-e439a608c28e +2024-09-11 09:11:58.794166 2024-09-11 09:11:58.794176 plmef 11276 R rec 11bf3fd0-cb2f-4e4a-805d-bab2e760168f +2024-09-11 09:11:58.856735 2024-09-11 09:11:58.85674 plmef 11277 R rec d087157c-d771-457c-904a-bb62c7e55c02 +2024-09-11 09:11:58.92097 2024-09-11 09:11:58.920981 plmef 11278 R rec e0054086-2f7f-4ac8-bb05-4e50d886c37a +2024-09-11 09:11:59.050888 2024-09-11 09:11:59.050893 plmef 11279 R rec dfed1dd7-acf9-490e-a78e-6e5d7e80e478 +2024-09-11 09:11:59.148752 2024-09-11 09:11:59.148757 plmef 11280 R rec afc220e1-818c-4fa0-ad7b-2b167658b46f +2024-09-11 09:11:59.223421 2024-09-11 09:11:59.223426 plmef 11281 R rec 110e868a-8de5-43ef-8c05-1b52834048b7 +2024-09-11 09:11:59.300542 2024-09-11 09:11:59.300547 plmef 11282 R rec 83698548-76b4-4857-b2d7-602fed5347a7 +2024-09-11 09:11:59.390357 2024-09-11 09:11:59.390362 plmef 11283 R rec 68c5750e-441e-449d-a83c-7481baaf77f9 +2024-09-11 09:11:59.460201 2024-09-11 09:11:59.46021 plmef 11284 R rec 6f57c9cd-d41c-4548-aee1-34c2310477da +2024-09-11 09:11:59.533439 2024-09-11 09:11:59.533443 plmef 11285 R rec adfcf5a8-4d15-4597-ac19-dbaea119f82b +2024-09-11 09:11:59.595503 2024-09-11 09:11:59.595513 plmef 11286 R rec e1d59311-8c6b-41e3-8935-3b2c53cce605 +2024-09-11 09:11:59.655457 2024-09-11 09:11:59.655462 plmef 11287 R rec 8b97fdf6-ae95-48cf-81be-7c6d164520e1 +2024-09-11 09:11:59.716717 2024-09-11 09:11:59.716722 plmef 11288 R rec 18a3d30f-4c17-4727-b053-6072a90b6ff9 +2024-09-11 09:11:59.791678 2024-09-11 09:11:59.791683 plmef 11289 R rec e339ed31-1d0a-4ecc-8bca-cd4aa6230748 +2024-09-11 09:11:59.858462 2024-09-11 09:11:59.858467 plmef 11290 R rec a982ffd2-cb14-412c-94eb-7be677db0ba2 +2024-09-11 09:11:59.926695 2024-09-11 09:11:59.926705 plmef 11291 R rec dbf290d1-b7d7-45b0-84eb-2396f769938b +2024-09-11 09:12:00.034912 2024-09-11 09:12:00.034917 plmef 11292 R rec 1f392195-9fdd-4419-a709-0a0e3b9dcdaa +2024-09-11 09:12:00.142188 2024-09-11 09:12:00.142192 plmef 11293 R rec c8984dba-9437-443f-9957-c40ff51a9680 +2024-09-11 09:12:00.225627 2024-09-11 09:12:00.225633 plmef 11294 R rec 619b1ea1-a994-44e8-b130-137dbe783259 +2024-09-11 09:12:00.300919 2024-09-11 09:12:00.300923 plmef 11295 R rec f173ee5d-b413-40c3-b5a4-5748ecbd850b +2024-09-11 09:12:00.372045 2024-09-11 09:12:00.372055 plmef 11296 R rec f7353d81-32b4-4100-821d-ef40da5b7e93 +2024-09-11 09:12:00.517702 2024-09-11 09:12:00.517707 plmef 11297 R rec c295043d-d106-48a1-80b3-a618b22385e1 +2024-09-11 09:12:00.563945 2024-09-11 09:12:00.56395 plmef 11298 R rec 127754ba-5675-4474-8a2d-596f1abf3075 +2024-09-11 09:12:00.641279 2024-09-11 09:12:00.641285 plmef 11299 R rec 0348b2d9-5bc4-420c-bb5d-af5b6770632a +2024-09-11 09:12:00.741158 2024-09-11 09:12:00.741166 plmef 11300 R rec 9f8a8175-ade1-4b99-9d29-5b0d4a880fb2 +2024-09-11 09:12:00.816737 2024-09-11 09:12:00.816742 plmef 11301 R rec 69b90da5-8f2e-4843-8dc7-0595604cdf61 +2024-09-11 09:12:00.897836 2024-09-11 09:12:00.897845 plmef 11302 R rec bee73108-a03c-4054-94a8-b6bc334f5293 +2024-09-11 09:12:00.972535 2024-09-11 09:12:00.972545 plmef 11303 R rec ff32ccd7-6a7e-40bf-908d-f60296ddac13 +2024-09-11 09:12:01.116648 2024-09-11 09:12:01.116653 plmef 11304 R rec 2880084e-76b1-4274-bc4c-cba1e3467078 +2024-09-11 09:12:01.198483 2024-09-11 09:12:01.198488 plmef 11305 R rec 50c67f65-76fc-4730-8a5c-20fb70c8fbdf +2024-09-11 09:12:01.248272 2024-09-11 09:12:01.248277 plmef 11306 R rec 2c1bf34a-6c45-4830-81b5-a79903304512 +2024-09-11 09:12:01.382854 2024-09-11 09:12:01.382859 plmef 11307 R rec 7c859687-04b4-4c7b-ba6b-245ca1f8866d +2024-09-11 09:12:01.456975 2024-09-11 09:12:01.456979 plmef 11308 R rec 2740c0e3-a99d-4b3e-969d-13dea26cb1b6 +2024-09-11 09:12:01.52339 2024-09-11 09:12:01.523394 plmef 11309 R rec e04a9fb4-b9d0-4dba-b394-67eff9882d57 +2024-09-11 09:12:01.600801 2024-09-11 09:12:01.600806 plmef 11310 R rec ad394640-3c6e-42b8-9fd9-0f3d396fd612 +2024-09-11 09:12:01.663352 2024-09-11 09:12:01.663358 plmef 11311 R rec c317bc48-82e8-4dc7-afb7-1b59bcece6d7 +2024-09-11 09:12:01.721469 2024-09-11 09:12:01.721474 plmef 11312 R rec d5fea72e-4736-4951-8e72-c7a2b98095bf +2024-09-11 09:12:01.788501 2024-09-11 09:12:01.788506 plmef 11313 R rec c749af2e-e2c4-4367-bb67-de806f750172 +2024-09-11 09:12:01.869448 2024-09-11 09:12:01.869458 plmef 11314 R rec d98511d6-00ae-480c-9bd3-fc3e0af2a597 +2024-09-11 09:12:01.931104 2024-09-11 09:12:01.931109 plmef 11315 R rec 8ab70359-1e6c-470a-9644-315a314bc3d2 +2024-09-11 09:12:02.000163 2024-09-11 09:12:02.000174 plmef 11316 R rec 2aa11f7e-3eed-4d1c-99b1-5e166c592a4d +2024-09-11 09:12:02.120737 2024-09-11 09:12:02.120742 plmef 11317 R rec aa782310-4213-42a0-9c22-076ec38e96c6 +2024-09-11 09:12:02.179663 2024-09-11 09:12:02.179669 plmef 11318 R rec 4df22c47-8a4c-49dd-814f-7bf2c596fab3 +2024-09-11 09:12:02.315258 2024-09-11 09:12:02.315263 plmef 11319 R rec 93b915c3-dd53-48f6-a870-d9159155782e +2024-09-11 09:12:02.382897 2024-09-11 09:12:02.382907 plmef 11320 R rec 2993250b-6e26-4e23-9644-2e79b4383e40 +2024-09-11 09:12:02.49524 2024-09-11 09:12:02.495245 plmef 11321 R rec 8024509e-127e-49cb-9e53-8deee197d623 +2024-09-11 09:12:02.541919 2024-09-11 09:12:02.541925 plmef 11322 R rec bd3e34bc-c7bb-4c4c-8950-a3e51bf95871 +2024-09-11 09:12:02.61677 2024-09-11 09:12:02.616774 plmef 11323 R rec a665ace5-50e8-4081-b086-c110b8d32866 +2024-09-11 09:12:02.677709 2024-09-11 09:12:02.677715 plmef 11324 R rec f3ff81ab-8436-4b80-82be-636c7fe3a2e5 +2024-09-11 09:12:02.733814 2024-09-11 09:12:02.733819 plmef 11325 R rec ae0ba717-204d-438d-93d0-ed6fc78d9f33 +2024-09-11 09:12:02.804711 2024-09-11 09:12:02.804716 plmef 11326 R rec 5c6c1625-be52-424b-b091-e8941e9fc081 +2024-09-11 09:12:02.860297 2024-09-11 09:12:02.860302 plmef 11327 R rec aaebf146-ee23-4ecb-89f6-ab54efdad33e +2024-09-11 09:12:02.924702 2024-09-11 09:12:02.924708 plmef 11328 R rec 829e73da-af7f-401f-b537-77fc8661de7f +2024-09-11 09:12:02.990929 2024-09-11 09:12:02.990934 plmef 11329 R rec a23112bd-0e9b-47aa-945c-a9b62dbb40b9 +2024-09-11 09:12:03.125988 2024-09-11 09:12:03.125994 plmef 11330 R rec 5fbafe69-b2f8-4b4e-89d1-f4833803b3df +2024-09-11 09:12:03.196584 2024-09-11 09:12:03.196589 plmef 11331 R rec 9192baec-476e-479b-9f67-70db94c060c6 +2024-09-11 09:12:03.270388 2024-09-11 09:12:03.270392 plmef 11332 R rec 5adb214c-1f04-49b4-9d57-9e71882cf16c +2024-09-11 09:12:03.355079 2024-09-11 09:12:03.355083 plmef 11333 R rec 80e783b8-642e-4a4b-bcd7-6ed89a1f8272 +2024-09-11 09:12:03.417638 2024-09-11 09:12:03.417648 plmef 11334 R rec c2b4c19a-d438-4c7a-a177-801f8db99670 +2024-09-11 09:12:03.492858 2024-09-11 09:12:03.492868 plmef 11335 R rec 217a045b-d08e-4c14-be7d-6193cb8f87eb +2024-09-11 09:12:03.571087 2024-09-11 09:12:03.571091 plmef 11336 R rec 55bae613-418d-4ca1-9074-80d6f2d6778e +2024-09-11 09:12:03.641941 2024-09-11 09:12:03.641953 plmef 11337 R rec 11a6e88d-5d2b-4140-aad6-503a7bf8c470 +2024-09-11 09:12:03.709758 2024-09-11 09:12:03.709763 plmef 11338 R rec 8b423f2c-808b-4ca7-b6c1-a6dd3aa26a9e +2024-09-11 09:12:03.778532 2024-09-11 09:12:03.778542 plmef 11339 R rec 266fa899-745a-418e-8ca1-768b9dc6c2b3 +2024-09-11 09:12:03.842654 2024-09-11 09:12:03.842659 plmef 11340 R rec 43840f0e-c8f9-4fa2-b6fc-708b5293c38d +2024-09-11 09:12:03.90716 2024-09-11 09:12:03.90717 plmef 11341 R rec 33363192-eb69-4096-8e85-eaa33a8fbb7d +2024-09-11 09:12:03.977842 2024-09-11 09:12:03.977853 plmef 11342 R rec aff4c56b-ac08-45fe-9e11-da32113ca91e +2024-09-11 09:12:04.190829 2024-09-11 09:12:04.190834 plmef 11343 R rec d81a6026-c835-40ef-bd32-a74d3e4306d1 +2024-09-11 09:12:04.256114 2024-09-11 09:12:04.256118 plmef 11344 R rec 99e2f59f-bd61-47d2-a9cb-187fd71683a9 +2024-09-11 09:12:04.347706 2024-09-11 09:12:04.347711 plmef 11345 R rec f08b9f3e-04ec-42d1-9ebc-e2fd7964fc18 +2024-09-11 09:12:04.396841 2024-09-11 09:12:04.396846 plmef 11346 R rec 5b40b68c-5cba-4a37-8bb8-629832a43dd6 +2024-09-11 09:12:04.474864 2024-09-11 09:12:04.474873 plmef 11347 R rec 4df66c3c-0d35-4096-ac24-1e5040964f96 +2024-09-11 09:12:04.548452 2024-09-11 09:12:04.548462 plmef 11348 R rec 201db19e-e5e0-40d6-be54-c58661d7a3a4 +2024-09-11 09:12:04.620354 2024-09-11 09:12:04.620364 plmef 11349 R rec 34137c1a-55b5-4880-aa59-b3854d80bed9 +2024-09-11 09:12:04.681785 2024-09-11 09:12:04.681795 plmef 11350 R rec 7c27264b-6dce-4ebb-aa92-18e0574fa1ee +2024-09-11 09:12:04.755388 2024-09-11 09:12:04.755399 plmef 11351 R rec 5f427e16-6020-428c-8010-bd6fb15496e2 +2024-09-11 09:12:04.828993 2024-09-11 09:12:04.828997 plmef 11352 R rec c6238778-72f3-46ca-a0e5-69739cb229ce +2024-09-11 09:12:04.899105 2024-09-11 09:12:04.899116 plmef 11353 R rec 1428bb79-6dcb-454c-a21e-08488803d7ab +2024-09-11 09:12:04.975938 2024-09-11 09:12:04.97595 plmef 11354 R rec 210da01c-f8fd-450d-9960-1e4b1ea97b64 +2024-09-11 09:12:05.075662 2024-09-11 09:12:05.075674 plmef 11355 R rec f813b82e-e1b1-4881-829d-7d428c3c24ea +2024-09-11 09:12:05.136399 2024-09-11 09:12:05.136404 plmef 11356 R rec c9dfcdf0-e3e6-4202-b9b7-5166b241a164 +2024-09-11 09:12:05.190009 2024-09-11 09:12:05.190015 plmef 11357 R rec b29e6e48-dc62-4667-88cc-b55635d8544c +2024-09-11 09:12:05.241766 2024-09-11 09:12:05.241771 plmef 11358 R rec 1c06e97b-03bc-4f34-8731-306cda97a9f7 +2024-09-11 09:12:05.312124 2024-09-11 09:12:05.312132 plmef 11359 R rec 80ff0c15-73b6-4722-9eea-f794efc8aab2 +2024-09-11 09:12:05.38599 2024-09-11 09:12:05.386 plmef 11360 R rec 80e25973-dd56-43c9-962c-ef2a6fd51094 +2024-09-11 09:12:05.451757 2024-09-11 09:12:05.451767 plmef 11361 R rec 8cb44a90-812e-47fe-9a4f-53772a8770f9 +2024-09-11 09:12:05.532472 2024-09-11 09:12:05.532483 plmef 11362 R rec 8f6fd9a2-0298-4481-bd70-c114bb3fc7e2 +2024-09-11 09:12:05.638164 2024-09-11 09:12:05.638169 plmef 11363 R rec 766f4f96-38ac-4ca4-935f-5464feaa38d5 +2024-09-11 09:12:05.70978 2024-09-11 09:12:05.709792 plmef 11364 R rec 4b65c8a2-76ea-44ef-9407-45de4e82a154 +2024-09-11 09:12:05.804225 2024-09-11 09:12:05.80423 plmef 11365 R rec a50172de-2a43-4908-be0c-510b01813997 +2024-09-11 09:12:05.882416 2024-09-11 09:12:05.882425 plmef 11366 R rec 760739d2-ac42-480a-b19b-06c23c9a849e +2024-09-11 09:12:05.951885 2024-09-11 09:12:05.951895 plmef 11367 R rec 8a80de3d-d168-4c52-baaa-bfdcf2b59e2f +2024-09-11 09:12:06.025151 2024-09-11 09:12:06.025162 plmef 11368 R rec 5908cdf8-9c28-488a-b425-ad22f76e7140 +2024-09-11 09:12:06.089732 2024-09-11 09:12:06.089737 plmef 11369 R rec 17ea5e50-272f-4ca5-9e0f-3aef1710323e +2024-09-11 09:12:06.149852 2024-09-11 09:12:06.149862 plmef 11370 R rec 558ec718-a0d0-42e8-8ae9-b257af8f9898 +2024-09-11 09:12:06.209587 2024-09-11 09:12:06.209592 plmef 11371 R rec 15c099bb-0c9c-4eff-b193-870eda2a78f6 +2024-09-11 09:12:06.285104 2024-09-11 09:12:06.285115 plmef 11372 R rec cb963149-4adb-4049-afe4-85e7b26efffd +2024-09-11 09:12:06.382838 2024-09-11 09:12:06.382849 plmef 11373 R rec 0ed87b6c-c2d7-4f2e-bb83-8bf2a92017c4 +2024-09-11 09:12:06.468763 2024-09-11 09:12:06.468769 plmef 11374 R rec bd804894-c0e4-41f4-98ad-623b4c4f50b7 +2024-09-11 09:12:06.557661 2024-09-11 09:12:06.557671 plmef 11375 R rec dbb55cbc-1737-4627-90a4-813fa2427454 +2024-09-11 09:12:06.649517 2024-09-11 09:12:06.649523 plmef 11376 R rec 8bdbb9a8-1785-41a5-8ae7-3afcaa6f2640 +2024-09-11 09:12:06.721168 2024-09-11 09:12:06.721178 plmef 11377 R rec 8d15ab81-fa46-4a36-a7b8-c67c2bba9bad +2024-09-11 09:12:06.804937 2024-09-11 09:12:06.804946 plmef 11378 R rec f4975139-87d9-4e76-a25f-5ee79f731b5c +2024-09-11 09:12:06.881976 2024-09-11 09:12:06.881987 plmef 11379 R rec 7016168f-6213-43a6-8616-651242b46cd5 +2024-09-11 09:12:06.960144 2024-09-11 09:12:06.960155 plmef 11380 R rec 460a0e9a-3b0a-42da-a946-8a6cbf483142 +2024-09-11 09:12:07.031976 2024-09-11 09:12:07.031987 plmef 11381 R rec eab2954f-e598-426a-bdb9-4276dcdfaed8 +2024-09-11 09:12:07.105305 2024-09-11 09:12:07.105317 plmef 11382 R rec 2a330a01-3981-4d00-8d2f-6b723a2b9400 +2024-09-11 09:12:07.169062 2024-09-11 09:12:07.169068 plmef 11383 R rec d587b0a1-e9ef-4061-8ca2-38e8dae4fa41 +2024-09-11 09:12:07.221418 2024-09-11 09:12:07.221422 plmef 11384 R rec ef93528c-c10d-4dd6-aadd-a1841b96f927 +2024-09-11 09:12:07.29733 2024-09-11 09:12:07.297335 plmef 11385 R rec e650dea6-55c3-4d17-8ad5-51bdd8cf9bbd +2024-09-11 09:12:07.369101 2024-09-11 09:12:07.36911 plmef 11386 R rec bfb219f0-6f09-4cac-b925-4b2b3728721b +2024-09-11 09:12:07.436104 2024-09-11 09:12:07.436109 plmef 11387 R rec 25e01377-f23c-4982-ab1a-93f5b217d1fb +2024-09-11 09:12:07.502126 2024-09-11 09:12:07.502137 plmef 11388 R rec 0ab1ce52-c6f6-4dba-873b-1b6f613cd00a +2024-09-11 09:12:07.559087 2024-09-11 09:12:07.559092 plmef 11389 R rec d6a0b504-031a-4255-ad84-70f4626826ec +2024-09-11 09:12:07.627029 2024-09-11 09:12:07.627039 plmef 11390 R rec 54fb28c2-cd07-4acd-9351-d37bcd27a5bd +2024-09-11 09:12:07.687805 2024-09-11 09:12:07.68781 plmef 11391 R rec cd31aa47-1e8a-40e7-ac89-a5aaa7c112b3 +2024-09-11 09:12:07.751401 2024-09-11 09:12:07.751412 plmef 11392 R rec f32ffb0d-9758-4aa9-b693-ffe1d930a9c4 +2024-09-11 09:12:07.827945 2024-09-11 09:12:07.82795 plmef 11393 R rec b96b1405-f1de-417a-9c1e-be08a39c86db +2024-09-11 09:12:07.89007 2024-09-11 09:12:07.890082 plmef 11394 R rec 91cf2e06-52d2-48dc-b906-908d6ef5ce54 +2024-09-11 09:12:07.959962 2024-09-11 09:12:07.959971 plmef 11395 R rec 117684cd-8145-4b84-a850-a7bcb0f29252 +2024-09-11 09:12:08.037746 2024-09-11 09:12:08.037751 plmef 11396 R rec 986fdfcd-f078-4295-9d74-46333d0c1e64 +2024-09-11 09:12:08.121799 2024-09-11 09:12:08.121809 plmef 11397 R rec 2e0a40ec-7e48-483b-a477-5d459aa44a94 +2024-09-11 09:12:08.181254 2024-09-11 09:12:08.18126 plmef 11398 R rec bfa2db85-e460-44fe-8fe7-6a33fd1b03f7 +2024-09-11 09:12:08.231597 2024-09-11 09:12:08.231602 plmef 11399 R rec 81b24901-e6bc-419a-bf85-5212411fdd83 +2024-09-11 09:12:08.288205 2024-09-11 09:12:08.288217 plmef 11400 R rec b20faa59-b2b0-4331-884a-5a9846cb6d88 +2024-09-11 09:12:08.35537 2024-09-11 09:12:08.355383 plmef 11401 R rec 8a40b055-f723-44d9-ac75-836b59b6a48c +2024-09-11 09:12:08.43847 2024-09-11 09:12:08.43848 plmef 11402 R rec 8960e1e8-7e9a-41ef-ab60-9cde1d35d69f +2024-09-11 09:12:08.510732 2024-09-11 09:12:08.510737 plmef 11403 R rec 631a673e-46e9-4e9f-be8e-f909f6b3e07b +2024-09-11 09:12:08.579484 2024-09-11 09:12:08.579495 plmef 11404 R rec f5309193-332f-4d57-9ddb-42552e3463ab +2024-09-11 09:12:08.645593 2024-09-11 09:12:08.645611 plmef 11405 R rec 085cbec1-85e4-4d38-ba0e-3376f3a63c9f +2024-09-11 09:12:08.721843 2024-09-11 09:12:08.721848 plmef 11406 R rec 182decda-c25f-4090-bf26-0c572887c806 +2024-09-11 09:12:08.796346 2024-09-11 09:12:08.79635 plmef 11407 R rec d4027cdf-3647-49c0-8c6e-ecf249f97654 +2024-09-11 09:12:08.859218 2024-09-11 09:12:08.859229 plmef 11408 R rec e914fdae-c0c2-40ca-bcae-a8f50480d5c2 +2024-09-11 09:12:08.920398 2024-09-11 09:12:08.920403 plmef 11409 R rec 2a38b2df-3495-4f1d-a777-cf8a17a28e2f +2024-09-11 09:12:08.992508 2024-09-11 09:12:08.992519 plmef 11410 R rec 52a006f8-3ac0-40b0-ad13-fd65246bcd5e +2024-09-11 09:12:09.064484 2024-09-11 09:12:09.064489 plmef 11411 R rec e7a58db9-01a6-4146-9a1d-6160fd50ae76 +2024-09-11 09:12:09.137768 2024-09-11 09:12:09.137784 plmef 11412 R rec 0a588698-581d-4be4-a810-34f0b269b7fe +2024-09-11 09:12:09.203493 2024-09-11 09:12:09.203497 plmef 11413 R rec 3deb4aa6-afef-4d89-8c58-4befab5145ff +2024-09-11 09:12:09.258665 2024-09-11 09:12:09.258671 plmef 11414 R rec d80d473a-d121-4642-a3a9-616ab24f9b2b +2024-09-11 09:12:09.311258 2024-09-11 09:12:09.311264 plmef 11415 R rec 8cf5a885-54e3-4e09-98d6-76d9d69ae2f4 +2024-09-11 09:12:09.37579 2024-09-11 09:12:09.375795 plmef 11416 R rec 12e79df6-6919-45cf-a67f-61ac1ad9c8f9 +2024-09-11 09:12:09.439393 2024-09-11 09:12:09.439398 plmef 11417 R rec 6d443c77-c997-46b7-a5b5-52fb47a6a3c4 +2024-09-11 09:12:09.521224 2024-09-11 09:12:09.521234 plmef 11418 R rec 98b76f43-2cf5-4505-ab6b-d51f6adf6da2 +2024-09-11 09:12:09.601352 2024-09-11 09:12:09.601358 plmef 11419 R rec d596f82b-bc23-4c58-a1d3-7b98e3b4380b +2024-09-11 09:12:09.667138 2024-09-11 09:12:09.667143 plmef 11420 R rec f9d0d19c-847f-4fae-93f3-f5dbaad48d55 +2024-09-11 09:12:09.71777 2024-09-11 09:12:09.717775 plmef 11421 R rec b1ad9704-4576-4808-9758-83be1e130553 +2024-09-11 09:12:09.781737 2024-09-11 09:12:09.781747 plmef 11422 R rec 70c6db33-b296-41ad-853a-c06f94c700f9 +2024-09-11 09:12:09.844673 2024-09-11 09:12:09.844678 plmef 11423 R rec c8507510-a3db-4fa9-9e5b-db54740107ac +2024-09-11 09:12:09.919955 2024-09-11 09:12:09.91996 plmef 11424 R rec 272a27cd-c4da-4a08-b64e-6cb91f521c0c +2024-09-11 09:12:09.984276 2024-09-11 09:12:09.984281 plmef 11425 R rec a0ae823f-e14a-4315-87d3-ae60c44127cf +2024-09-11 09:12:10.051017 2024-09-11 09:12:10.051027 plmef 11426 R rec 393be4ae-669e-4430-b31a-7a5af6510567 +2024-09-11 09:12:10.124729 2024-09-11 09:12:10.124734 plmef 11427 R rec 9d250107-bacb-44a2-94e0-28ab2ec72174 +2024-09-11 09:12:10.208227 2024-09-11 09:12:10.208237 plmef 11428 R rec 58c1d5cd-0014-44bf-b579-c7fd600792f9 +2024-09-11 09:12:10.278211 2024-09-11 09:12:10.278218 plmef 11429 R rec e2b33a95-06e0-4b4e-b6c4-bfd62b58e46b +2024-09-11 09:12:10.349339 2024-09-11 09:12:10.349349 plmef 11430 R rec bb2e3f39-74b0-4023-9fb4-d85762fc404d +2024-09-11 09:12:10.408246 2024-09-11 09:12:10.408251 plmef 11431 R rec 6ed875ce-46e7-4525-85f3-b354233cbb8d +2024-09-11 09:12:10.471885 2024-09-11 09:12:10.47189 plmef 11432 R rec 5920a644-b527-4044-bf49-df48436ffee7 +2024-09-11 09:12:10.535895 2024-09-11 09:12:10.5359 plmef 11433 R rec e9647d9e-4a52-486e-88bd-8e71dab82c76 +2024-09-11 09:12:10.595808 2024-09-11 09:12:10.595813 plmef 11434 R rec dde77d96-6c8a-40d9-b74d-c54d0997a29a +2024-09-11 09:12:10.660153 2024-09-11 09:12:10.660159 plmef 11435 R rec 2c879f4c-1e35-49ce-95af-63e873bb7c8b +2024-09-11 09:12:10.717033 2024-09-11 09:12:10.717038 plmef 11436 R rec 5fcfe091-5e00-4420-8f0a-be1f1e10b7ec +2024-09-11 09:12:10.77581 2024-09-11 09:12:10.775815 plmef 11437 R rec 83c46296-6b5a-46cd-80a0-ce613419a4bb +2024-09-11 09:12:10.839912 2024-09-11 09:12:10.839917 plmef 11438 R rec cc47a3cc-ed27-4b9d-801f-e3231bcc589c +2024-09-11 09:12:10.906309 2024-09-11 09:12:10.90632 plmef 11439 R rec 0a3343a0-2466-473a-97a4-41d6dfc13349 +2024-09-11 09:12:10.981468 2024-09-11 09:12:10.981478 plmef 11440 R rec 949b1271-eebe-4c3e-8620-c527d548e6c1 +2024-09-11 09:12:11.061285 2024-09-11 09:12:11.061295 plmef 11441 R rec aea95d6e-7c81-4e56-b86e-16b7f1f73794 +2024-09-11 09:12:11.135538 2024-09-11 09:12:11.135548 plmef 11442 R rec 1a61610c-33ac-49d9-89a6-5cccb881c1a9 +2024-09-11 09:12:11.200941 2024-09-11 09:12:11.200945 plmef 11443 R rec c6dbbb39-c45f-43b0-afe8-0680b4f12dab +2024-09-11 09:12:11.271807 2024-09-11 09:12:11.27182 plmef 11444 R rec 3999329a-5aa3-43f9-b3c4-b84f4047122d +2024-09-11 09:12:11.356432 2024-09-11 09:12:11.356442 plmef 11445 R rec 88db27dc-4edd-4123-8af9-48040d228d82 +2024-09-11 09:12:11.437687 2024-09-11 09:12:11.437698 plmef 11446 R rec 88f3bedb-8efa-41c6-ad2e-138155f1c8e2 +2024-09-11 09:12:11.51799 2024-09-11 09:12:11.518001 plmef 11447 R rec 1f328fcd-a0df-4994-843d-06fcab2993c2 +2024-09-11 09:12:11.608218 2024-09-11 09:12:11.608262 plmef 11448 R rec 0b6c82ba-6e76-4559-ab18-f1bc503564bf +2024-09-11 09:12:11.678937 2024-09-11 09:12:11.678943 plmef 11449 R rec 7d9abebb-cbc0-45ef-8f73-b46ac72ca8f6 +2024-09-11 09:12:11.733225 2024-09-11 09:12:11.73323 plmef 11450 R rec eb204811-db7d-478d-9138-b819c9c26795 +2024-09-11 09:12:11.798486 2024-09-11 09:12:11.798491 plmef 11451 R rec e37ead03-70bd-41a6-b90a-e5998453844b +2024-09-11 09:12:11.863494 2024-09-11 09:12:11.863504 plmef 11452 R rec 8e956ed7-01b4-41f5-af05-b9b799d22053 +2024-09-11 09:12:11.933328 2024-09-11 09:12:11.93334 plmef 11453 R rec 3e4c2ec7-0f38-474e-a8fb-bf1791010bfe +2024-09-11 09:12:12.001836 2024-09-11 09:12:12.001847 plmef 11454 R rec a326e3bc-2d28-4a8a-ba7e-4d818bc9d54f +2024-09-11 09:12:12.072454 2024-09-11 09:12:12.072459 plmef 11455 R rec 581605b9-d823-40f7-874c-d5ace1253137 +2024-09-11 09:12:12.150831 2024-09-11 09:12:12.150837 plmef 11456 R rec 2f8fcd48-978c-4fea-b7f9-b43b4c8fb884 +2024-09-11 09:12:12.219161 2024-09-11 09:12:12.219165 plmef 11457 R rec 7724c5a2-de4e-48a7-87dc-d5f95043efb0 +2024-09-11 09:12:12.282937 2024-09-11 09:12:12.282948 plmef 11458 R rec 8cc341d3-2c3d-4a52-b5a5-93d8e0da3764 +2024-09-11 09:12:12.366093 2024-09-11 09:12:12.366103 plmef 11459 R rec 90bfec30-c373-40ff-9bf2-9628a1640ff7 +2024-09-11 09:12:12.434424 2024-09-11 09:12:12.434428 plmef 11460 R rec 9dfd5e46-292e-41c0-b215-1c6cdfd0040d +2024-09-11 09:12:12.500345 2024-09-11 09:12:12.500355 plmef 11461 R rec d1eee347-897a-488d-835a-473c94a667ca +2024-09-11 09:12:12.561456 2024-09-11 09:12:12.56146 plmef 11462 R rec 90e9e9c0-c064-4162-beee-a8e0e56da535 +2024-09-11 09:12:12.627906 2024-09-11 09:12:12.627917 plmef 11463 R rec 0ed8ddbb-da00-4c30-9384-3f78094df445 +2024-09-11 09:12:12.689294 2024-09-11 09:12:12.689299 plmef 11464 R rec d01eddae-6d55-436b-8211-7b20074affef +2024-09-11 09:12:12.75385 2024-09-11 09:12:12.753855 plmef 11465 R rec e451cbd6-2310-464a-ad6b-8b6ee325b417 +2024-09-11 09:12:12.828862 2024-09-11 09:12:12.828874 plmef 11466 R rec c4bb5de0-c6c0-4885-82d9-c3d94facd789 +2024-09-11 09:12:12.894851 2024-09-11 09:12:12.894856 plmef 11467 R rec 313dd608-0b82-4bbe-b09c-d69810c0638d +2024-09-11 09:12:12.962866 2024-09-11 09:12:12.962877 plmef 11468 R rec bd8600aa-818c-4775-a168-6fea87eead1d +2024-09-11 09:12:13.033375 2024-09-11 09:12:13.03338 plmef 11469 R rec a43dea2d-a06b-4ac3-9cbb-29592a68105e +2024-09-11 09:12:13.100766 2024-09-11 09:12:13.100777 plmef 11470 R rec 3701adb0-441a-4098-b8d7-1ffaa16249e9 +2024-09-11 09:12:13.174939 2024-09-11 09:12:13.174944 plmef 11471 R rec 85ab81fd-b13a-4b29-b460-46582585ff8a +2024-09-11 09:12:13.226885 2024-09-11 09:12:13.22689 plmef 11472 R rec a5a654b5-5745-4093-854c-654b01c31b94 +2024-09-11 09:12:13.30148 2024-09-11 09:12:13.301491 plmef 11473 R rec 95b217e0-770f-4bfa-a777-91a5bf22910f +2024-09-11 09:12:13.368998 2024-09-11 09:12:13.369009 plmef 11474 R rec 16d20932-9c58-4af1-96d1-ee7cb78cbaa7 +2024-09-11 09:12:13.434508 2024-09-11 09:12:13.43452 plmef 11475 R rec a549a49a-2006-4d11-87d4-b9ac88d06f7c +2024-09-11 09:12:13.491561 2024-09-11 09:12:13.491567 plmef 11476 R rec 44a8e22a-df2e-48be-9841-4a069d384f04 +2024-09-11 09:12:13.541235 2024-09-11 09:12:13.541241 plmef 11477 R rec 0bf8f0f1-2196-4039-a729-e89a48935bdd +2024-09-11 09:12:13.614292 2024-09-11 09:12:13.614303 plmef 11478 R rec 08c3ae79-54d7-4506-a109-93607f72663a +2024-09-11 09:12:13.681117 2024-09-11 09:12:13.681122 plmef 11479 R rec 69bd6643-80c1-4ea5-b8cb-cb3ba3d360ad +2024-09-11 09:12:13.731891 2024-09-11 09:12:13.731896 plmef 11480 R rec 9967b7d3-ab9a-47e4-b3d3-27b729090626 +2024-09-11 09:12:13.805358 2024-09-11 09:12:13.805363 plmef 11481 R rec af32b8e0-a801-438d-a5a0-9f559d4e8637 +2024-09-11 09:12:13.887569 2024-09-11 09:12:13.887574 plmef 11482 R rec f38f0bc8-d334-40d5-82ee-84ee014d84cd +2024-09-11 09:12:13.958694 2024-09-11 09:12:13.958705 plmef 11483 R rec 0cfce3de-e573-4057-95c7-cc8ed55b8f2a +2024-09-11 09:12:14.026357 2024-09-11 09:12:14.026368 plmef 11484 R rec 54a3341b-b8bd-4bbd-abb4-b77db9bf9913 +2024-09-11 09:12:14.098548 2024-09-11 09:12:14.098557 plmef 11485 R rec 354f830f-bf0b-4acd-8d50-9e5dff9c4703 +2024-09-11 09:12:14.17737 2024-09-11 09:12:14.177375 plmef 11486 R rec 3d3588d0-df36-48b1-b087-7a30b98940c0 +2024-09-11 09:12:14.237008 2024-09-11 09:12:14.237014 plmef 11487 R rec 85d1e129-6a82-4b31-b585-5c34a62a2b8f +2024-09-11 09:12:14.295406 2024-09-11 09:12:14.295416 plmef 11488 R rec a7005726-2921-423a-966d-1fac0835bf2e +2024-09-11 09:12:14.354174 2024-09-11 09:12:14.35418 plmef 11489 R rec b374cb11-577e-4746-9ebe-2d8a8e03aaff +2024-09-11 09:12:14.42014 2024-09-11 09:12:14.420144 plmef 11490 R rec 644c609d-2488-4f62-b076-bbe02a0dd90b +2024-09-11 09:12:14.491015 2024-09-11 09:12:14.491026 plmef 11491 R rec 632c033e-8495-4e52-bfd0-49bcd5fbf302 +2024-09-11 09:12:14.569055 2024-09-11 09:12:14.56906 plmef 11492 R rec ce44b55f-275c-4103-bf3f-876749acd659 +2024-09-11 09:12:14.630622 2024-09-11 09:12:14.630628 plmef 11493 R rec 67492909-4bb9-4631-ad39-3503a50238c6 +2024-09-11 09:12:14.688791 2024-09-11 09:12:14.688796 plmef 11494 R rec 6cb8f4e6-a2e9-40f5-9453-7e460e287365 +2024-09-11 09:12:14.749796 2024-09-11 09:12:14.749806 plmef 11495 R rec f2fc5fb0-0041-467d-ac27-5a27cf91bb1e +2024-09-11 09:12:14.820343 2024-09-11 09:12:14.820355 plmef 11496 R rec a09944c1-e010-4230-88ae-516e3124dd51 +2024-09-11 09:12:14.899224 2024-09-11 09:12:14.899235 plmef 11497 R rec 58dd1fd6-141f-4a2f-a752-1b48a8a15cc0 +2024-09-11 09:12:14.972897 2024-09-11 09:12:14.972902 plmef 11498 R rec 03594381-647d-4def-9075-699999d0531c +2024-09-11 09:12:15.048415 2024-09-11 09:12:15.048426 plmef 11499 R rec 6413f5ab-8dbe-4d6c-975a-c0d2cd12c78d +2024-09-11 09:12:15.122804 2024-09-11 09:12:15.122816 plmef 11500 R rec f223f1ff-9d00-4f91-b1a0-4b2fd5067ac1 +2024-09-11 09:12:15.193973 2024-09-11 09:12:15.193979 plmef 11501 R rec 4c87b350-c601-4f2d-ad91-2f1b40745cfa +2024-09-11 09:12:15.263852 2024-09-11 09:12:15.263862 plmef 11502 R rec 99b2efa2-92fc-412f-a85d-44847542b2a6 +2024-09-11 09:12:15.343074 2024-09-11 09:12:15.343079 plmef 11503 R rec b060daef-895e-4661-a6b7-0fa838a50ce8 +2024-09-11 09:12:15.407791 2024-09-11 09:12:15.407801 plmef 11504 R rec 9d8f4160-5866-4307-af06-8671e54330d8 +2024-09-11 09:12:15.480329 2024-09-11 09:12:15.480339 plmef 11505 R rec 78dda722-6a94-4a08-aa1d-df5c1d35d73d +2024-09-11 09:12:15.562276 2024-09-11 09:12:15.562282 plmef 11506 R rec 79f5712e-53d1-43e4-b5e3-14910b8af8ea +2024-09-11 09:12:15.674058 2024-09-11 09:12:15.674064 plmef 11507 R rec 010dc80e-8900-4c17-a667-31461057d5ff +2024-09-11 09:12:15.725026 2024-09-11 09:12:15.725032 plmef 11508 R rec b6694b87-9f44-4a8d-900c-cbd9b21fbd6e +2024-09-11 09:12:15.790285 2024-09-11 09:12:15.790295 plmef 11509 R rec 37b4cafb-dcb7-4280-bedc-f4d056eb2b0f +2024-09-11 09:12:15.851743 2024-09-11 09:12:15.851754 plmef 11510 R rec a437f433-97ff-4571-bc2a-dc7863a23fd8 +2024-09-11 09:12:15.935846 2024-09-11 09:12:15.935856 plmef 11511 R rec 04ff1793-92d3-431b-88aa-677572d2535e +2024-09-11 09:12:16.023568 2024-09-11 09:12:16.02358 plmef 11512 R rec 21ef60d5-9137-4560-bd4c-5b54f53581c2 +2024-09-11 09:12:16.089573 2024-09-11 09:12:16.089578 plmef 11513 R rec eb14916b-42d3-45d6-b635-9964dea7810a +2024-09-11 09:12:16.151315 2024-09-11 09:12:16.15132 plmef 11514 R rec fd768eb5-74c9-4262-8f68-69123b498517 +2024-09-11 09:12:16.208868 2024-09-11 09:12:16.208874 plmef 11515 R rec deb9e1ca-f2bb-4c6a-a519-1dcaeda6c808 +2024-09-11 09:12:16.271648 2024-09-11 09:12:16.271653 plmef 11516 R rec a3a3b532-44d5-4784-a8c8-bcb114aa5e2e +2024-09-11 09:12:16.342887 2024-09-11 09:12:16.342903 plmef 11517 R rec 9b262520-4098-4468-a64a-e6ac1d60d118 +2024-09-11 09:12:16.415694 2024-09-11 09:12:16.415699 plmef 11518 R rec 0566175f-f13f-4194-b6fe-ee587938dec7 +2024-09-11 09:12:16.479885 2024-09-11 09:12:16.479891 plmef 11519 R rec 0f3b7976-45ce-4115-820c-9af63016ad44 +2024-09-11 09:12:16.533646 2024-09-11 09:12:16.533651 plmef 11520 R rec 341eb4ce-c928-46f7-9154-ae8d01d40f64 +2024-09-11 09:12:16.609048 2024-09-11 09:12:16.609059 plmef 11521 R rec 6af7b52f-5e21-459a-bdac-3fb27701e8dc +2024-09-11 09:12:16.68159 2024-09-11 09:12:16.681596 plmef 11522 R rec 5ccf5bb7-af2d-4c74-871a-261b0394a2bd +2024-09-11 09:12:16.73783 2024-09-11 09:12:16.73784 plmef 11523 R rec 18cf488d-6ffa-47ae-8e30-c8add2152cfd +2024-09-11 09:12:16.823158 2024-09-11 09:12:16.823163 plmef 11524 R rec b3dcc20d-efd7-4993-8d36-615c6f9e4448 +2024-09-11 09:12:16.906495 2024-09-11 09:12:16.9065 plmef 11525 R rec a153e793-bf12-492d-9e67-44509ed82946 +2024-09-11 09:12:16.983341 2024-09-11 09:12:16.983351 plmef 11526 R rec b14dc138-9d71-44c4-8002-79f586bcdd76 +2024-09-11 09:12:17.062362 2024-09-11 09:12:17.062373 plmef 11527 R rec 06df3632-ef82-40a8-8af0-fb6a9045476a +2024-09-11 09:12:17.134168 2024-09-11 09:12:17.134178 plmef 11528 R rec 6857cb70-336d-4633-b81e-6e881db76adf +2024-09-11 09:12:17.198248 2024-09-11 09:12:17.198259 plmef 11529 R rec f00d8ed9-de82-4e07-ad67-bbcb0d845775 +2024-09-11 09:12:17.26098 2024-09-11 09:12:17.260985 plmef 11530 R rec 1784d288-dac5-4f8a-bec2-2a9177ff967e +2024-09-11 09:12:17.333646 2024-09-11 09:12:17.333658 plmef 11531 R rec 4531b227-926a-4352-9a99-9156fc78fc7a +2024-09-11 09:12:17.408744 2024-09-11 09:12:17.408748 plmef 11532 R rec 7f89abb1-4c00-4880-9477-60701dc7c5d0 +2024-09-11 09:12:17.472314 2024-09-11 09:12:17.47232 plmef 11533 R rec d1454115-093b-4fdc-982b-c36c8c98c9fd +2024-09-11 09:12:17.532772 2024-09-11 09:12:17.532776 plmef 11534 R rec cd20789d-5f01-44bf-8363-7f4743cf32dc +2024-09-11 09:12:17.602024 2024-09-11 09:12:17.602033 plmef 11535 R rec 75db51eb-7d2e-4af8-bd2d-e1e7142846e8 +2024-09-11 09:12:17.674526 2024-09-11 09:12:17.674531 plmef 11536 R rec 415e1cbf-3d70-4d60-baaa-cfb550900f07 +2024-09-11 09:12:17.74074 2024-09-11 09:12:17.74075 plmef 11537 R rec cae2dbb0-46e2-47e2-af35-aa7775068f31 +2024-09-11 09:12:17.81633 2024-09-11 09:12:17.816335 plmef 11538 R rec f8aac0df-c66d-494a-ab94-709c89b8ba09 +2024-09-11 09:12:17.89467 2024-09-11 09:12:17.894688 plmef 11539 R rec d25ce602-7ae1-4497-a31b-b1c439e200f8 +2024-09-11 09:12:17.987138 2024-09-11 09:12:17.987149 plmef 11540 R rec d49dc8ce-8903-466f-ad1e-3d81a7f6b245 +2024-09-11 09:12:18.076772 2024-09-11 09:12:18.076784 plmef 11541 R rec f757e3e8-1d5d-4b49-ac8a-0de7f1ad66a2 +2024-09-11 09:12:18.158231 2024-09-11 09:12:18.158247 plmef 11542 R rec 76d05782-0488-46c9-8dd4-4d0e70952a5d +2024-09-11 09:12:18.219552 2024-09-11 09:12:18.219556 plmef 11543 R rec 3094c24e-52ff-4eb0-8e4c-4a6ef7092f99 +2024-09-11 09:12:18.286887 2024-09-11 09:12:18.286892 plmef 11544 R rec 00c7bc9e-90f6-4a99-ba51-04ea1ac030d3 +2024-09-11 09:12:18.343486 2024-09-11 09:12:18.343496 plmef 11545 R rec 237ab93f-1ca1-42a3-85bf-e48315e7cc2a +2024-09-11 09:12:18.423734 2024-09-11 09:12:18.423745 plmef 11546 R rec ff033680-1c15-4841-8baa-b3a26333442b +2024-09-11 09:12:18.497561 2024-09-11 09:12:18.497572 plmef 11547 R rec edad4a8d-c161-4cdd-bce3-c983cedfd97d +2024-09-11 09:12:18.569 2024-09-11 09:12:18.569009 plmef 11548 R rec e01c4ca5-2582-4870-a2d5-0a1f6ca4ed7a +2024-09-11 09:12:18.659654 2024-09-11 09:12:18.659685 plmef 11549 R rec 81f05a57-20b0-417f-a38d-e1413125e0db +2024-09-11 09:12:18.719959 2024-09-11 09:12:18.719963 plmef 11550 R rec bb4032c9-2929-409b-a4ef-92750bc499ec +2024-09-11 09:12:18.797627 2024-09-11 09:12:18.797638 plmef 11551 R rec 51fa75f9-2154-429e-94db-fc32ab43abf4 +2024-09-11 09:12:18.878399 2024-09-11 09:12:18.878405 plmef 11552 R rec 1e3e9dff-6ac8-475f-8653-d5b63294958c +2024-09-11 09:12:18.949044 2024-09-11 09:12:18.949049 plmef 11553 R rec 84d8841b-08bc-4ebd-baf3-619286a72954 +2024-09-11 09:12:19.021004 2024-09-11 09:12:19.021013 plmef 11554 R rec 40ad4887-b2e2-4fff-a064-6255b10e167a +2024-09-11 09:12:19.083393 2024-09-11 09:12:19.083404 plmef 11555 R rec c1c6539b-65a5-46f7-b530-f56301adbb6f +2024-09-11 09:12:19.154515 2024-09-11 09:12:19.15452 plmef 11556 R rec f9e74198-3f8e-4a7c-8439-eec90e2396c7 +2024-09-11 09:12:19.21721 2024-09-11 09:12:19.217215 plmef 11557 R rec 5d56e7b9-05ff-4e7a-a054-36e7ccce8e5e +2024-09-11 09:12:19.28144 2024-09-11 09:12:19.281451 plmef 11558 R rec 37abd8b9-7997-4d27-848a-b8b08924b1ed +2024-09-11 09:12:19.360277 2024-09-11 09:12:19.360294 plmef 11559 R rec 26d82b90-d696-42eb-ae18-da49764e58c4 +2024-09-11 09:12:19.430197 2024-09-11 09:12:19.430208 plmef 11560 R rec 27626816-b30d-476a-b6cf-584dd17c734f +2024-09-11 09:12:19.501511 2024-09-11 09:12:19.501516 plmef 11561 R rec 66726421-0f6a-41be-9683-8ac50518e541 +2024-09-11 09:12:19.568814 2024-09-11 09:12:19.568825 plmef 11562 R rec 89b71780-5080-4aed-a289-ebaeadab92ee +2024-09-11 09:12:19.643004 2024-09-11 09:12:19.643015 plmef 11563 R rec 8f289f01-dc8f-4e90-9b5e-fce3cf2d3288 +2024-09-11 09:12:19.702139 2024-09-11 09:12:19.702143 plmef 11564 R rec b2da201f-1299-4379-8546-ceea5275bef5 +2024-09-11 09:12:19.757168 2024-09-11 09:12:19.757178 plmef 11565 R rec 0001d869-02c3-4f8e-a965-d01fe19d011b +2024-09-11 09:12:19.825018 2024-09-11 09:12:19.825023 plmef 11566 R rec 7dda59a7-12c6-4b98-acfd-88dc684f2609 +2024-09-11 09:12:19.902507 2024-09-11 09:12:19.902519 plmef 11567 R rec 238067dc-893b-4304-a148-066b664ade72 +2024-09-11 09:12:19.970623 2024-09-11 09:12:19.970633 plmef 11568 R rec 1b3637a5-6f59-4583-805f-b8efd89133a2 +2024-09-11 09:12:20.053375 2024-09-11 09:12:20.053385 plmef 11569 R rec 7832692f-ed02-4bc3-8d04-d4fa69dba9c1 +2024-09-11 09:12:20.124732 2024-09-11 09:12:20.124737 plmef 11570 R rec cba511ac-c30e-4587-ac45-e6740692b20f +2024-09-11 09:12:20.188503 2024-09-11 09:12:20.188507 plmef 11571 R rec ec388070-bc9f-460c-aa63-13dd5aae558c +2024-09-11 09:12:20.241874 2024-09-11 09:12:20.24188 plmef 11572 R rec 5c5c92a1-1fad-414b-8485-9480884daf6d +2024-09-11 09:12:20.314224 2024-09-11 09:12:20.314234 plmef 11573 R rec ddfcd3b0-ccd5-4748-804b-42bad8d6b7b4 +2024-09-11 09:12:20.387103 2024-09-11 09:12:20.387112 plmef 11574 R rec 322edc05-3c70-4b51-888a-3a497ad2cbb1 +2024-09-11 09:12:20.478101 2024-09-11 09:12:20.47812 plmef 11575 R rec 65e3418d-db8a-49c3-a0fc-a391a3bef019 +2024-09-11 09:12:20.556254 2024-09-11 09:12:20.556265 plmef 11576 R rec dba307f0-e46e-477b-a327-712d0984da75 +2024-09-11 09:12:20.652113 2024-09-11 09:12:20.652123 plmef 11577 R rec 3fc9d070-b6da-42a1-b38e-78c167e8fcf3 +2024-09-11 09:12:20.705313 2024-09-11 09:12:20.705318 plmef 11578 R rec e4f6392f-4fad-43fa-b84e-745485e5856d +2024-09-11 09:12:20.759244 2024-09-11 09:12:20.759248 plmef 11579 R rec 50ff65de-36b0-44e6-84bc-808c04a40955 +2024-09-11 09:12:20.833741 2024-09-11 09:12:20.833746 plmef 11580 R rec 03ccf299-a2fc-43dd-abc4-41be0309ec8e +2024-09-11 09:12:20.911597 2024-09-11 09:12:20.911608 plmef 11581 R rec 267fa135-82e2-4d6d-8059-a5bf25e094b3 +2024-09-11 09:12:20.99584 2024-09-11 09:12:20.995845 plmef 11582 R rec 1ab1937a-c55a-45c8-9780-25724e54a8b1 +2024-09-11 09:12:21.064898 2024-09-11 09:12:21.064903 plmef 11583 R rec fcfaefde-d0e1-4b71-9194-cee3c23f4bab +2024-09-11 09:12:21.208222 2024-09-11 09:12:21.208227 plmef 11584 R rec 6c4166a8-f115-43b0-af80-b0d4bb8d3bd6 +2024-09-11 09:12:21.295144 2024-09-11 09:12:21.29515 plmef 11585 R rec f335c45b-0f39-4fd6-9436-031fdc93304a +2024-09-11 09:12:21.374326 2024-09-11 09:12:21.374337 plmef 11586 R rec 035fc096-6b5d-4ed1-8dab-2a27f97d7a7c +2024-09-11 09:12:21.451721 2024-09-11 09:12:21.451731 plmef 11587 R rec 0b4b67af-b946-422c-98ef-5b918b0ee352 +2024-09-11 09:12:21.52409 2024-09-11 09:12:21.524101 plmef 11588 R rec 4d40c6b3-920d-47b4-9b38-29be0f8a0230 +2024-09-11 09:12:21.599884 2024-09-11 09:12:21.599889 plmef 11589 R rec 436e0c7e-2611-4ef2-84ef-785747504736 +2024-09-11 09:12:21.667549 2024-09-11 09:12:21.66756 plmef 11590 R rec 8357997b-fe66-4480-961d-2d45d98e4389 +2024-09-11 09:12:21.718636 2024-09-11 09:12:21.718641 plmef 11591 R rec eb5e6f01-03cb-46e7-9462-f25474414f4f +2024-09-11 09:12:21.785989 2024-09-11 09:12:21.785994 plmef 11592 R rec 7a7a9553-839e-4830-82c0-e8952a288270 +2024-09-11 09:12:21.850358 2024-09-11 09:12:21.850369 plmef 11593 R rec 420a0663-2205-4a15-a721-0d5e1f6c67d1 +2024-09-11 09:12:21.921128 2024-09-11 09:12:21.921139 plmef 11594 R rec 4de926e7-fe5e-4e98-a41a-b786e1ae0f42 +2024-09-11 09:12:21.99097 2024-09-11 09:12:21.990976 plmef 11595 R rec f1ded10b-c93e-4991-9821-6bdbdc68e901 +2024-09-11 09:12:22.048376 2024-09-11 09:12:22.048382 plmef 11596 R rec d5f60ad6-c3c4-44fe-bd81-61cc71a174a3 +2024-09-11 09:12:22.113399 2024-09-11 09:12:22.113404 plmef 11597 R rec 77da28f1-e460-437d-a051-ac9869fdaa2b +2024-09-11 09:12:22.180505 2024-09-11 09:12:22.180511 plmef 11598 R rec 8136c071-f298-45e5-901f-bfc909a3036c +2024-09-11 09:12:22.2366 2024-09-11 09:12:22.236605 plmef 11599 R rec 5fe7c8f1-2017-44bb-afb9-03ab11fc1f1c +2024-09-11 09:12:22.31014 2024-09-11 09:12:22.310152 plmef 11600 R rec 78f99e4f-0768-447d-9ecc-108c5ed5851e +2024-09-11 09:12:22.384387 2024-09-11 09:12:22.3844 plmef 11601 R rec 60c06567-55b0-4084-a8aa-7a4babc1d067 +2024-09-11 09:12:22.458716 2024-09-11 09:12:22.458728 plmef 11602 R rec 69badde6-31fc-4f0e-8ca4-ed26d4da9e05 +2024-09-11 09:12:22.537086 2024-09-11 09:12:22.537097 plmef 11603 R rec 901a204b-adbc-4afa-9f03-fae84f484902 +2024-09-11 09:12:22.619368 2024-09-11 09:12:22.61938 plmef 11604 R rec 4c49328a-5913-4c05-ac2b-fc2f93f44593 +2024-09-11 09:12:22.692138 2024-09-11 09:12:22.692143 plmef 11605 R rec d17c3306-f9d4-45ca-a6a8-b3463bda8fa8 +2024-09-11 09:12:22.743654 2024-09-11 09:12:22.743659 plmef 11606 R rec b4173d39-a488-479a-a057-1af0a67fad9a +2024-09-11 09:12:22.813294 2024-09-11 09:12:22.813305 plmef 11607 R rec f72882d2-82d1-466f-81f4-87b78c301358 +2024-09-11 09:12:22.880754 2024-09-11 09:12:22.880767 plmef 11608 R rec 38be45a0-bf75-465c-a8eb-2dc7c9974257 +2024-09-11 09:12:22.952909 2024-09-11 09:12:22.95292 plmef 11609 R rec 1b207196-86f7-4952-ad58-bb0b920720ea +2024-09-11 09:12:23.041902 2024-09-11 09:12:23.041914 plmef 11610 R rec fd4183fe-bbd6-4880-bd82-d97c1c4621ae +2024-09-11 09:12:23.110945 2024-09-11 09:12:23.110958 plmef 11611 R rec 80517025-37e9-4e67-b316-55ef3bcc0b77 +2024-09-11 09:12:23.231117 2024-09-11 09:12:23.231122 plmef 11612 R rec 9c7b6590-36bb-4df4-843a-3337fcb24cd4 +2024-09-11 09:12:23.344183 2024-09-11 09:12:23.344189 plmef 11613 R rec 2b59acb8-9132-4dba-a5d5-54d9e01d3276 +2024-09-11 09:12:23.393121 2024-09-11 09:12:23.393126 plmef 11614 R rec a49c1db5-fe32-485f-b065-3097987dae5b +2024-09-11 09:12:23.439252 2024-09-11 09:12:23.439257 plmef 11615 R rec 3337d41e-6ae1-48e4-a190-4700bb4aa50a +2024-09-11 09:12:23.487426 2024-09-11 09:12:23.487431 plmef 11616 R rec c6b09d47-56ce-48e8-9df6-cf728efd091b +2024-09-11 09:12:23.534866 2024-09-11 09:12:23.534871 plmef 11617 R rec a1b4f1be-7482-4f5d-97d2-410e5552098c +2024-09-11 09:12:23.582426 2024-09-11 09:12:23.582431 plmef 11618 R rec 6fc64584-7ad2-4802-9220-140f7ee44027 +2024-09-11 09:12:23.633787 2024-09-11 09:12:23.633792 plmef 11619 R rec b270aa87-004b-4547-b62f-1508cc10ba39 +2024-09-11 09:12:23.687089 2024-09-11 09:12:23.687095 plmef 11620 R rec d56cdfe4-880a-4ec4-988e-f5dc6e324750 +2024-09-11 09:12:23.734668 2024-09-11 09:12:23.734673 plmef 11621 R rec dbdf3021-3569-4358-a11b-0de0b0eb14f4 +2024-09-11 09:12:23.793864 2024-09-11 09:12:23.793875 plmef 11622 R rec 6d6e1da7-6f1a-4f40-b4e0-cea321df40e3 +2024-09-11 09:12:23.860184 2024-09-11 09:12:23.860195 plmef 11623 R rec 08894df0-ad0f-4091-9304-c4db476174d4 +2024-09-11 09:12:23.938941 2024-09-11 09:12:23.938945 plmef 11624 R rec edeebb8e-d4bf-4649-a4c6-3acca062721e +2024-09-11 09:12:24.005121 2024-09-11 09:12:24.005132 plmef 11625 R rec 00c729ba-b0c3-42b8-8685-79e89a40e2c9 +2024-09-11 09:12:24.080131 2024-09-11 09:12:24.080141 plmef 11626 R rec 1888b8b3-802c-420b-9e1a-da4c74d53057 +2024-09-11 09:12:24.143698 2024-09-11 09:12:24.14371 plmef 11627 R rec a255ed7e-48d7-4bb9-8ed5-fb6e2aa1a5e9 +2024-09-11 09:12:24.203683 2024-09-11 09:12:24.203688 plmef 11628 R rec 160bf1f7-cb84-4509-8184-f3ff4bf2b62b +2024-09-11 09:12:24.252677 2024-09-11 09:12:24.2527 plmef 11629 R rec b46c7ad5-49a6-4659-bd78-168e6fc7e423 +2024-09-11 09:12:24.315732 2024-09-11 09:12:24.315743 plmef 11630 R rec 6447451b-80c0-41cf-ac73-b12cb684edde +2024-09-11 09:12:24.38693 2024-09-11 09:12:24.386936 plmef 11631 R rec ccb6c3ba-ae69-49e4-84e8-5ef41416cf9c +2024-09-11 09:12:24.462747 2024-09-11 09:12:24.462758 plmef 11632 R rec cd2befd5-3813-46e3-b8ce-e0dc134ebc33 +2024-09-11 09:12:24.529923 2024-09-11 09:12:24.529935 plmef 11633 R rec d22f8f7d-aee3-4ffc-b6c3-14c71de18391 +2024-09-11 09:12:24.593023 2024-09-11 09:12:24.593033 plmef 11634 R rec 5d8fcbee-2eea-4ae7-ac62-69b5e180efb4 +2024-09-11 09:12:24.657743 2024-09-11 09:12:24.657748 plmef 11635 R rec 860ace7b-538f-4dbd-b283-9b37fc6b18a9 +2024-09-11 09:12:24.714271 2024-09-11 09:12:24.714276 plmef 11636 R rec 0eacc78f-0dc4-4bf2-9685-11f48a71a7be +2024-09-11 09:12:24.771314 2024-09-11 09:12:24.771324 plmef 11637 R rec 08137610-1166-4374-80c4-59c6290fd1c9 +2024-09-11 09:12:24.832797 2024-09-11 09:12:24.832802 plmef 11638 R rec 1d9716e2-9e27-476a-b8f3-65a07a4be08b +2024-09-11 09:12:24.889334 2024-09-11 09:12:24.88934 plmef 11639 R rec 6476005d-11e2-4f24-a219-0e632b9c7fbc +2024-09-11 09:12:24.954333 2024-09-11 09:12:24.954343 plmef 11640 R rec 7b141c81-cbc8-4bef-a7bb-b8c59b4b742d +2024-09-11 09:12:25.025276 2024-09-11 09:12:25.025286 plmef 11641 R rec 975e58fc-ff8d-4b96-9c61-55483c1ada07 +2024-09-11 09:12:25.09019 2024-09-11 09:12:25.0902 plmef 11642 R rec a106bf64-810d-4c82-a586-600f93905410 +2024-09-11 09:12:25.153389 2024-09-11 09:12:25.153398 plmef 11643 R rec a180028f-8a92-4da7-b76d-effd44680aa2 +2024-09-11 09:12:25.212798 2024-09-11 09:12:25.212803 plmef 11644 R rec 55f41dae-fe5c-414b-b2e7-fa919e1ceca7 +2024-09-11 09:12:25.290829 2024-09-11 09:12:25.29084 plmef 11645 R rec 08f0efb7-d092-4363-80a7-596faafd8ce1 +2024-09-11 09:12:25.36139 2024-09-11 09:12:25.361401 plmef 11646 R rec 988b75a9-21bb-48d7-9cdb-dc15503b5587 +2024-09-11 09:12:25.432036 2024-09-11 09:12:25.432042 plmef 11647 R rec f4d5921d-064c-482d-a4dc-47f87119a157 +2024-09-11 09:12:25.500103 2024-09-11 09:12:25.500113 plmef 11648 R rec d3e79eab-8e1f-4164-b43c-ce747eca6387 +2024-09-11 09:12:25.573993 2024-09-11 09:12:25.574004 plmef 11649 R rec 6443cee5-fa06-4d5f-9a50-484d7c9459e3 +2024-09-11 09:12:25.641018 2024-09-11 09:12:25.641028 plmef 11650 R rec 05dd4758-68ea-4fa7-8727-0d04abaf3635 +2024-09-11 09:12:25.715959 2024-09-11 09:12:25.715965 plmef 11651 R rec 6855091c-a21f-4593-b53c-e0da20905883 +2024-09-11 09:12:25.791647 2024-09-11 09:12:25.791658 plmef 11652 R rec 06b99672-55f0-4187-822e-9f63992a8f1a +2024-09-11 09:12:25.867709 2024-09-11 09:12:25.86772 plmef 11653 R rec 4dbea458-1d7e-4871-90f4-1b10c919895e +2024-09-11 09:12:25.936693 2024-09-11 09:12:25.936711 plmef 11654 R rec f2704721-726c-4b04-8093-bbfc99e6759d +2024-09-11 09:12:26.00645 2024-09-11 09:12:26.006456 plmef 11655 R rec 216f1439-d255-4f4b-ac9b-9fa1ac44c390 +2024-09-11 09:12:26.068331 2024-09-11 09:12:26.068336 plmef 11656 R rec b92bd40e-1bff-4189-9701-39242903b8e5 +2024-09-11 09:12:26.151268 2024-09-11 09:12:26.151278 plmef 11657 R rec 2b94f79d-ec28-4507-88ab-367a41748891 +2024-09-11 09:12:26.210814 2024-09-11 09:12:26.210818 plmef 11658 R rec af224afd-f9d9-48d9-ac0a-32fa7cc40e1f +2024-09-11 09:12:26.264388 2024-09-11 09:12:26.264394 plmef 11659 R rec 9be11aa3-f5d9-4de1-9aad-a66a36e3572b +2024-09-11 09:12:26.331281 2024-09-11 09:12:26.331329 plmef 11660 R rec 2090f93a-38ee-4db7-bfeb-c4fb91ef0130 +2024-09-11 09:12:26.396075 2024-09-11 09:12:26.39608 plmef 11661 R rec 2664d19f-892d-43df-a644-57c95fbc64fb +2024-09-11 09:12:26.463464 2024-09-11 09:12:26.463475 plmef 11662 R rec 0a134830-3707-4424-94e6-a6a87ff5a725 +2024-09-11 09:12:26.539838 2024-09-11 09:12:26.539843 plmef 11663 R rec 7b0660a3-b86c-4012-b0b4-24a832049766 +2024-09-11 09:12:26.620605 2024-09-11 09:12:26.620617 plmef 11664 R rec ea8356e4-3eba-4e07-b0c6-0d0762c7090b +2024-09-11 09:12:26.692206 2024-09-11 09:12:26.692212 plmef 11665 R rec 577445f8-fba6-4d4b-9878-b113d57b0f1e +2024-09-11 09:12:26.751867 2024-09-11 09:12:26.751872 plmef 11666 R rec fa997537-5b88-4ada-90b5-57b114ba9e7e +2024-09-11 09:12:26.820387 2024-09-11 09:12:26.820398 plmef 11667 R rec 637e0739-1f7f-4233-aa01-bba8ea18f22e +2024-09-11 09:12:26.898737 2024-09-11 09:12:26.898747 plmef 11668 R rec fdf2e8a9-9ff3-4789-898f-fcb843094e37 +2024-09-11 09:12:26.991464 2024-09-11 09:12:26.991482 plmef 11669 R rec 2daa23fd-081d-4783-b05c-7ef9a652abc2 +2024-09-11 09:12:27.074103 2024-09-11 09:12:27.074109 plmef 11670 R rec 3aafc089-afe6-4d0a-b198-99904917cf18 +2024-09-11 09:12:27.134524 2024-09-11 09:12:27.134535 plmef 11671 R rec 9b48f74b-2b28-4a67-b0e4-491fea8d17bd +2024-09-11 09:12:27.201393 2024-09-11 09:12:27.201399 plmef 11672 R rec 4bc9bbc4-95e8-4f87-b471-69f57542213c +2024-09-11 09:12:27.252727 2024-09-11 09:12:27.252733 plmef 11673 R rec 858c259f-435d-47c9-a3c2-126455905873 +2024-09-11 09:12:27.315259 2024-09-11 09:12:27.315264 plmef 11674 R rec ce84ee0f-a0ab-40c0-aa3a-1d5ef42f4776 +2024-09-11 09:12:27.381651 2024-09-11 09:12:27.381656 plmef 11675 R rec dd8b3207-66f5-478a-b3cc-1a2850115f26 +2024-09-11 09:12:27.451363 2024-09-11 09:12:27.451373 plmef 11676 R rec 947f79b8-6e0f-4739-b213-d0591a9a8e63 +2024-09-11 09:12:27.527117 2024-09-11 09:12:27.527122 plmef 11677 R rec 2e4f1761-024c-4c54-8ba9-377f84724235 +2024-09-11 09:12:27.602472 2024-09-11 09:12:27.602483 plmef 11678 R rec c6fcaf0e-97f9-4202-b27d-076c2ed2d002 +2024-09-11 09:12:27.685476 2024-09-11 09:12:27.685483 plmef 11679 R rec 2ddd2ed2-608b-4423-a175-078c09545fcd +2024-09-11 09:12:27.737983 2024-09-11 09:12:27.737988 plmef 11680 R rec 9cc1c208-99bb-4919-9caf-89f92c72bcab +2024-09-11 09:12:27.795505 2024-09-11 09:12:27.79551 plmef 11681 R rec e1955e18-9566-4d12-ba63-ccd5bfb85fa4 +2024-09-11 09:12:27.858896 2024-09-11 09:12:27.858908 plmef 11682 R rec 181d8076-23af-4c7c-a344-cd6f85c7e0e8 +2024-09-11 09:12:27.922488 2024-09-11 09:12:27.922493 plmef 11683 R rec e67761b7-d5ab-4375-8c46-cbcc5ad7e729 +2024-09-11 09:12:27.987873 2024-09-11 09:12:27.987885 plmef 11684 R rec 03e78113-5973-4b65-a720-11186f63a55c +2024-09-11 09:12:28.053062 2024-09-11 09:12:28.053067 plmef 11685 R rec 1c05437b-561b-429d-9479-4712b8dca5b5 +2024-09-11 09:12:28.120019 2024-09-11 09:12:28.120031 plmef 11686 R rec b4347a60-3315-476b-9c4b-494e5c4c283f +2024-09-11 09:12:28.192172 2024-09-11 09:12:28.192177 plmef 11687 R rec f915f171-d517-4cce-8cf7-6024184622a1 +2024-09-11 09:12:28.272242 2024-09-11 09:12:28.272246 plmef 11688 R rec 536dea75-1103-4685-857e-bfee0038648c +2024-09-11 09:12:28.34852 2024-09-11 09:12:28.34853 plmef 11689 R rec 3cdca711-1ad0-48c8-b91e-f91ee6bf4a58 +2024-09-11 09:12:28.417455 2024-09-11 09:12:28.417461 plmef 11690 R rec ac21a3b6-26f2-45ff-945b-3ef3b7ddcb25 +2024-09-11 09:12:28.471771 2024-09-11 09:12:28.471781 plmef 11691 R rec 91d6bb20-80b2-4eb4-a235-416ea29e4a8c +2024-09-11 09:12:28.533978 2024-09-11 09:12:28.53399 plmef 11692 R rec 26385370-0982-4e3e-9c5a-8dbd0e21e130 +2024-09-11 09:12:28.597833 2024-09-11 09:12:28.597839 plmef 11693 R rec fd302f14-0f40-4ea8-89c8-4d373146de2a +2024-09-11 09:12:28.661611 2024-09-11 09:12:28.661622 plmef 11694 R rec ef32e3e1-f097-4be7-bc61-f83230896de6 +2024-09-11 09:12:28.71917 2024-09-11 09:12:28.719175 plmef 11695 R rec 8df45a8d-70a2-4f3a-833b-dc50e39d897d +2024-09-11 09:12:28.767129 2024-09-11 09:12:28.767134 plmef 11696 R rec 8afcc7a0-f328-4c67-81ab-257f5bc0e927 +2024-09-11 09:12:28.830523 2024-09-11 09:12:28.830528 plmef 11697 R rec e864ac72-6e17-4851-a048-7c7c223cb9e8 +2024-09-11 09:12:28.904622 2024-09-11 09:12:28.904633 plmef 11698 R rec 02bc52d8-5da0-4fa7-b078-03fb7ca3e4c1 +2024-09-11 09:12:28.96808 2024-09-11 09:12:28.968085 plmef 11699 R rec 25fce0a0-178e-4c17-a448-9458d9dd0410 +2024-09-11 09:12:29.041671 2024-09-11 09:12:29.041682 plmef 11700 R rec 5bb0900c-00e0-478e-ada0-b6f36f2aed26 +2024-09-11 09:12:29.110751 2024-09-11 09:12:29.110756 plmef 11701 R rec cc26c1cb-4859-410b-a74c-2677ccc8f0fa +2024-09-11 09:12:29.180319 2024-09-11 09:12:29.180332 plmef 11702 R rec f669693e-651c-4cd8-8d12-c92c3ca4f5d1 +2024-09-11 09:12:29.251633 2024-09-11 09:12:29.251644 plmef 11703 R rec 17f896c6-5f81-47b6-9565-883032b53171 +2024-09-11 09:12:29.317497 2024-09-11 09:12:29.317501 plmef 11704 R rec f81059bf-5b12-4d23-90de-ea5fc2d3b3e6 +2024-09-11 09:12:29.387271 2024-09-11 09:12:29.387283 plmef 11705 R rec ad4e7508-4346-4375-9f53-152261c8c019 +2024-09-11 09:12:29.452872 2024-09-11 09:12:29.452885 plmef 11706 R rec 38609de7-6f5f-45b8-b60f-40ac0a6b271c +2024-09-11 09:12:29.547187 2024-09-11 09:12:29.547193 plmef 11707 R rec 58a63b1e-a63d-47f3-bea9-1aa864e09b48 +2024-09-11 09:12:29.63296 2024-09-11 09:12:29.632965 plmef 11708 R rec d3a3ab7a-9de6-420d-b01c-15d24088e24f +2024-09-11 09:12:29.709131 2024-09-11 09:12:29.709136 plmef 11709 R rec 0be962d5-a946-4b5a-8466-9a76935adf38 +2024-09-11 09:12:29.762046 2024-09-11 09:12:29.762051 plmef 11710 R rec a3937fa7-0fb8-44b8-a5e1-4b3b79a7189d +2024-09-11 09:12:29.827724 2024-09-11 09:12:29.827736 plmef 11711 R rec c656c67d-207a-4c7b-b0db-3a5548714b1a +2024-09-11 09:12:29.89924 2024-09-11 09:12:29.89925 plmef 11712 R rec 7be002fd-05d8-4e21-a5f7-2456b1839e14 +2024-09-11 09:12:29.971357 2024-09-11 09:12:29.971369 plmef 11713 R rec eca2a12e-df11-4ea9-945c-69c4579612f6 +2024-09-11 09:12:30.04202 2024-09-11 09:12:30.042032 plmef 11714 R rec 61dde51e-add8-43f8-abac-4f1e3fe72c34 +2024-09-11 09:12:30.121449 2024-09-11 09:12:30.121461 plmef 11715 R rec 2cde672f-86b1-4abe-85d6-eb92704011cd +2024-09-11 09:12:30.193896 2024-09-11 09:12:30.1939 plmef 11716 R rec b7a85e29-0ba7-48a1-92fb-1342c67f22c6 +2024-09-11 09:12:30.27283 2024-09-11 09:12:30.272835 plmef 11717 R rec 56a2223a-46d3-4fcd-8d3e-977558f0c097 +2024-09-11 09:12:30.344326 2024-09-11 09:12:30.344339 plmef 11718 R rec bf24bdf3-8e3b-415f-9afc-52c2a9568e09 +2024-09-11 09:12:30.42093 2024-09-11 09:12:30.420942 plmef 11719 R rec 2f47d8ac-9d19-4901-b097-7211d7b90381 +2024-09-11 09:12:30.50031 2024-09-11 09:12:30.500322 plmef 11720 R rec b988ba33-04cb-408d-8546-13f588b1ee53 +2024-09-11 09:12:30.568112 2024-09-11 09:12:30.568123 plmef 11721 R rec 2db73058-fcec-442f-a4c0-42838d9ef63b +2024-09-11 09:12:30.644267 2024-09-11 09:12:30.644279 plmef 11722 R rec 2ac7ae6a-e414-4b16-a9e9-31e4742a85b2 +2024-09-11 09:12:30.711174 2024-09-11 09:12:30.711179 plmef 11723 R rec 31a54150-71d2-40bb-aa18-915d8a8b0ce9 +2024-09-11 09:12:30.7861 2024-09-11 09:12:30.786106 plmef 11724 R rec cb01995d-4b3a-4b4d-9440-5e87107b1c98 +2024-09-11 09:12:30.852399 2024-09-11 09:12:30.85241 plmef 11725 R rec 89e75dc2-1506-4b4f-8726-c848b167a577 +2024-09-11 09:12:30.937793 2024-09-11 09:12:30.937805 plmef 11726 R rec 16917b6e-57c0-4f53-9e24-398c37b2a6ed +2024-09-11 09:12:31.015481 2024-09-11 09:12:31.015486 plmef 11727 R rec 309b43a7-d9e5-47d2-a76a-f4b2f9f379b0 +2024-09-11 09:12:31.090214 2024-09-11 09:12:31.090225 plmef 11728 R rec fb7a9853-b1fa-4176-914f-ec84a27aa065 +2024-09-11 09:12:31.172198 2024-09-11 09:12:31.172209 plmef 11729 R rec 796043ce-9282-4ee3-b632-a37b062c746d +2024-09-11 09:12:31.231824 2024-09-11 09:12:31.231829 plmef 11730 R rec a2374357-3ef8-4eca-91ef-051923a2b3cd +2024-09-11 09:12:31.295635 2024-09-11 09:12:31.295648 plmef 11731 R rec e8d5131a-b4ce-43aa-a8ed-e9b385689841 +2024-09-11 09:12:31.359741 2024-09-11 09:12:31.359747 plmef 11732 R rec 9d7d07ba-b658-4089-b3b8-eb986a236044 +2024-09-11 09:12:31.433071 2024-09-11 09:12:31.433083 plmef 11733 R rec 19910900-a55d-40e5-b046-7b97f5829151 +2024-09-11 09:12:31.499288 2024-09-11 09:12:31.4993 plmef 11734 R rec 7084d28b-3dd7-49cd-a886-56c3f925f879 +2024-09-11 09:12:31.579378 2024-09-11 09:12:31.579383 plmef 11735 R rec f4b9dfe6-c390-44b8-a92f-f8d26de39192 +2024-09-11 09:12:31.646909 2024-09-11 09:12:31.64692 plmef 11736 R rec 3b96db14-5a11-4bc6-b474-b6c5289a7957 +2024-09-11 09:12:31.710005 2024-09-11 09:12:31.71001 plmef 11737 R rec d46cef50-a1f4-4aa2-8591-362dd461cde5 +2024-09-11 09:12:31.760198 2024-09-11 09:12:31.760203 plmef 11738 R rec fc45e594-df12-492e-a3c6-8b1bf1e248a3 +2024-09-11 09:12:31.828182 2024-09-11 09:12:31.828188 plmef 11739 R rec 4b0024cc-e2df-45d3-a6cc-a1149638fdc8 +2024-09-11 09:12:31.900338 2024-09-11 09:12:31.900349 plmef 11740 R rec 2ba89dbe-1594-4fd3-8825-92676dc79ff8 +2024-09-11 09:12:31.970981 2024-09-11 09:12:31.970993 plmef 11741 R rec 3bc3881c-4266-41bc-b2a1-ababeec15147 +2024-09-11 09:12:32.04174 2024-09-11 09:12:32.041746 plmef 11742 R rec e0a6f83f-2b55-4498-bc11-5312641d813e +2024-09-11 09:12:32.107384 2024-09-11 09:12:32.107388 plmef 11743 R rec edc4c5bc-a93c-47e9-b0c6-c3189c0cd6bb +2024-09-11 09:12:32.178467 2024-09-11 09:12:32.17848 plmef 11744 R rec e7095cad-0320-4fc2-94d5-147da7b2c6af +2024-09-11 09:12:32.252713 2024-09-11 09:12:32.252724 plmef 11745 R rec 7a8adcdc-2e0a-43a2-ac0f-7c6f0e173de4 +2024-09-11 09:12:32.319753 2024-09-11 09:12:32.319765 plmef 11746 R rec 6983052e-4b1e-4efd-bb06-c73e17101525 +2024-09-11 09:12:32.392043 2024-09-11 09:12:32.392055 plmef 11747 R rec 60bd72c3-a88a-43f2-9889-fb4a4f8b8175 +2024-09-11 09:12:32.463943 2024-09-11 09:12:32.463955 plmef 11748 R rec 73ab3959-13a6-4476-9d16-746af517a112 +2024-09-11 09:12:32.545547 2024-09-11 09:12:32.545553 plmef 11749 R rec db2e313a-13c6-4050-ae32-02d3f10c11bc +2024-09-11 09:12:32.620386 2024-09-11 09:12:32.620398 plmef 11750 R rec 8d6c64d1-a69d-4242-9c91-ca4ac65bb42f +2024-09-11 09:12:32.698525 2024-09-11 09:12:32.69853 plmef 11751 R rec 372ee807-3cd5-4fe7-8864-d48812995a1e +2024-09-11 09:12:32.756094 2024-09-11 09:12:32.756099 plmef 11752 R rec d367f8c3-0954-4f43-b5de-6bf27d2ffb18 +2024-09-11 09:12:32.817321 2024-09-11 09:12:32.817333 plmef 11753 R rec 9a22661b-658f-4352-b093-cf8dfe713bf8 +2024-09-11 09:12:32.893801 2024-09-11 09:12:32.893813 plmef 11754 R rec 2d2f2884-dca5-42c7-8f86-0af96e61d9eb +2024-09-11 09:12:32.963384 2024-09-11 09:12:32.963395 plmef 11755 R rec 55b66111-4367-4806-8aff-cf5570d6121c +2024-09-11 09:12:33.038511 2024-09-11 09:12:33.038516 plmef 11756 R rec 29d21df2-9bb7-48ee-93e5-06d8e2fc47c3 +2024-09-11 09:12:33.104633 2024-09-11 09:12:33.104645 plmef 11757 R rec ee9455fa-52b9-40c0-bded-20896f42a29a +2024-09-11 09:12:33.176606 2024-09-11 09:12:33.176612 plmef 11758 R rec 3da2f4fa-55d3-46d0-8eda-a0f3e2aa9808 +2024-09-11 09:12:33.343492 2024-09-11 09:12:33.343497 plmef 11759 R rec 79e9a0d7-d457-4340-9812-97b7c67cac9a +2024-09-11 09:12:33.39952 2024-09-11 09:12:33.39953 plmef 11760 R rec d4f37563-78c3-4a2c-afe7-f96b8b7273cb +2024-09-11 09:12:33.475479 2024-09-11 09:12:33.47549 plmef 11761 R rec 52f7a4b4-6e41-48e7-af15-c188ce3814b2 +2024-09-11 09:12:33.543894 2024-09-11 09:12:33.543905 plmef 11762 R rec e705eae2-1ab5-4657-902d-3482826cf742 +2024-09-11 09:12:33.612617 2024-09-11 09:12:33.612629 plmef 11763 R rec b2d9f010-4036-48a7-a2a4-e9de38a30ac6 +2024-09-11 09:12:33.695225 2024-09-11 09:12:33.695231 plmef 11764 R rec 3c2f76f1-3ab5-4ce7-9c43-d766ce8db20b +2024-09-11 09:12:33.748848 2024-09-11 09:12:33.748854 plmef 11765 R rec 822fd9b9-d1a7-4ae1-b1ca-d3e697eecd1b +2024-09-11 09:12:33.80947 2024-09-11 09:12:33.809476 plmef 11766 R rec 36b172b2-c41b-4293-ac64-d1c9f324e9e0 +2024-09-11 09:12:33.885843 2024-09-11 09:12:33.885855 plmef 11767 R rec 6341bbcd-df32-482e-801e-adadcdd3c39c +2024-09-11 09:12:33.961215 2024-09-11 09:12:33.961226 plmef 11768 R rec e53b5c04-5b84-41bd-bfd4-74eefe8b18bb +2024-09-11 09:12:34.070452 2024-09-11 09:12:34.070457 plmef 11769 R rec acce4aee-ed2b-4a92-abbf-65aefda5fa2e +2024-09-11 09:12:34.123898 2024-09-11 09:12:34.123909 plmef 11770 R rec 6d8be7dd-544d-4ffc-a08d-6d705f2de317 +2024-09-11 09:12:34.193924 2024-09-11 09:12:34.193936 plmef 11771 R rec 1b1fe950-ae56-4f5c-bb34-4db0c8ad6dd0 +2024-09-11 09:12:34.252046 2024-09-11 09:12:34.252051 plmef 11772 R rec 26bcdd1c-b3f9-40c8-b142-dfa3e3e59849 +2024-09-11 09:12:34.320195 2024-09-11 09:12:34.3202 plmef 11773 R rec fd64f7b9-ec52-4550-8f63-e62aea00b49d +2024-09-11 09:12:34.388686 2024-09-11 09:12:34.388696 plmef 11774 R rec 7dad377a-2d46-435e-84e5-55835e04afa5 +2024-09-11 09:12:34.459283 2024-09-11 09:12:34.459288 plmef 11775 R rec c12fa3ac-ccae-46dc-8a80-d54c13722aea +2024-09-11 09:12:34.527876 2024-09-11 09:12:34.527887 plmef 11776 R rec 62c57da8-d233-4ed8-91a2-74e716e90e58 +2024-09-11 09:12:34.599891 2024-09-11 09:12:34.599902 plmef 11777 R rec 3fd12587-ddc9-4978-9d0d-25ee6f0e2504 +2024-09-11 09:12:34.670254 2024-09-11 09:12:34.670265 plmef 11778 R rec eb9c1b62-910e-4557-9a35-5c860c6330ad +2024-09-11 09:12:34.73211 2024-09-11 09:12:34.732115 plmef 11779 R rec 6625474f-95f9-4cb5-b536-127b6bc244c8 +2024-09-11 09:12:34.81452 2024-09-11 09:12:34.814525 plmef 11780 R rec 669b1e70-54d6-4b7d-9653-0b4f758b5ece +2024-09-11 09:12:34.884537 2024-09-11 09:12:34.88458 plmef 11781 R rec c8d7abad-694c-4827-8c02-86cd58317d2e +2024-09-11 09:12:34.962549 2024-09-11 09:12:34.96256 plmef 11782 R rec 088c69e7-86b2-4306-ba9b-22a71641bc7a +2024-09-11 09:12:35.031927 2024-09-11 09:12:35.031938 plmef 11783 R rec b2e2a88d-36a7-40d9-bcfb-bf4bdc464a60 +2024-09-11 09:12:35.093741 2024-09-11 09:12:35.093751 plmef 11784 R rec 35036cfc-fc13-47a1-9df1-3c056169161f +2024-09-11 09:12:35.161527 2024-09-11 09:12:35.161538 plmef 11785 R rec 4476a9c3-1111-40ad-9919-bdca8a0e70f7 +2024-09-11 09:12:35.224876 2024-09-11 09:12:35.224882 plmef 11786 R rec c02a5d6b-4248-400a-a693-6dc8f1db5c72 +2024-09-11 09:12:35.282436 2024-09-11 09:12:35.28244 plmef 11787 R rec 8e432c4c-4e1e-4763-bcef-a73ccbd9a0dd +2024-09-11 09:12:35.360644 2024-09-11 09:12:35.360649 plmef 11788 R rec 4706f7e6-0114-4891-9259-556f93d47f9f +2024-09-11 09:12:35.43054 2024-09-11 09:12:35.43055 plmef 11789 R rec bf4be85b-18f9-472d-a7cf-3385dd88ab44 +2024-09-11 09:12:35.503356 2024-09-11 09:12:35.50337 plmef 11790 R rec 3eaaf44f-92f1-4247-b955-c5b70dbc1542 +2024-09-11 09:12:35.573308 2024-09-11 09:12:35.573327 plmef 11791 R rec 5e06a103-c05a-49d6-852e-da0bb04357bd +2024-09-11 09:12:35.642797 2024-09-11 09:12:35.642809 plmef 11792 R rec e899b80c-0b29-431e-b3c9-732a17d3aaa9 +2024-09-11 09:12:35.703661 2024-09-11 09:12:35.703666 plmef 11793 R rec 1e29b33f-0d95-4ed4-a1b9-01844b703006 +2024-09-11 09:12:35.753661 2024-09-11 09:12:35.753666 plmef 11794 R rec f9be637e-5d87-4715-a623-5807bc58ac18 +2024-09-11 09:12:35.820925 2024-09-11 09:12:35.82093 plmef 11795 R rec afa159fa-bba0-4740-a373-1bf1223f1742 diff --git a/docker/wait-for-services.sh b/docker/wait-for-services.sh index 21f3040f..7da9d050 100755 --- a/docker/wait-for-services.sh +++ b/docker/wait-for-services.sh @@ -31,14 +31,14 @@ check_ready() { fi done } -_db_check(){ docker-compose exec --user postgres db bash -c "pg_isready" &>/dev/null; } +_db_check(){ docker compose exec --user postgres db bash -c "pg_isready" &>/dev/null; } check_ready "postgres" _db_check _es_check(){ [[ $(curl -sL -w "%{http_code}\\n" "http://localhost:9200/" -o /dev/null)==200 ]]; } check_ready "Elasticsearch" _es_check -_redis_check(){ [[ $(docker-compose exec cache bash -c "redis-cli ping")=="PONG" ]]; } +_redis_check(){ [[ $(docker compose exec cache bash -c "redis-cli ping")=="PONG" ]]; } check_ready "redis" _redis_check -_rabbit_check(){ docker-compose exec mq bash -c "rabbitmqctl status" &>/dev/null; } +_rabbit_check(){ docker compose exec mq bash -c "rabbitmqctl status" &>/dev/null; } check_ready "RabbitMQ" _rabbit_check diff --git a/poetry.lock b/poetry.lock index 735d3a29..7124bfaa 100644 --- a/poetry.lock +++ b/poetry.lock @@ -105,22 +105,22 @@ files = [ [[package]] name = "attrs" -version = "23.2.0" +version = "24.2.0" description = "Classes Without Boilerplate" optional = false python-versions = ">=3.7" files = [ - {file = "attrs-23.2.0-py3-none-any.whl", hash = "sha256:99b87a485a5820b23b879f04c2305b44b951b502fd64be915879d77a7e8fc6f1"}, - {file = "attrs-23.2.0.tar.gz", hash = "sha256:935dc3b529c262f6cf76e50877d35a4bd3c1de194fd41f47a2b7ae8f19971f30"}, + {file = "attrs-24.2.0-py3-none-any.whl", hash = "sha256:81921eb96de3191c8258c199618104dd27ac608d9366f5e35d011eae1867ede2"}, + {file = "attrs-24.2.0.tar.gz", hash = "sha256:5cfb1b9148b5b086569baec03f20d7b6bf3bcacc9a42bebf87ffaaca362f6346"}, ] [package.extras] -cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] -dev = ["attrs[tests]", "pre-commit"] -docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] -tests = ["attrs[tests-no-zope]", "zope-interface"] -tests-mypy = ["mypy (>=1.6)", "pytest-mypy-plugins"] -tests-no-zope = ["attrs[tests-mypy]", "cloudpickle", "hypothesis", "pympler", "pytest (>=4.3.0)", "pytest-xdist[psutil]"] +benchmark = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-codspeed", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +cov = ["cloudpickle", "coverage[toml] (>=5.3)", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +dev = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +docs = ["cogapp", "furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier (<24.7)"] +tests = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] +tests-mypy = ["mypy (>=1.11.1)", "pytest-mypy-plugins"] [[package]] name = "autoflake" @@ -139,13 +139,13 @@ tomli = {version = ">=2.0.1", markers = "python_version < \"3.11\""} [[package]] name = "babel" -version = "2.15.0" +version = "2.16.0" description = "Internationalization utilities" optional = false python-versions = ">=3.8" files = [ - {file = "Babel-2.15.0-py3-none-any.whl", hash = "sha256:08706bdad8d0a3413266ab61bd6c34d0c28d6e1e7badf40a2cebe67644e2e1fb"}, - {file = "babel-2.15.0.tar.gz", hash = "sha256:8daf0e265d05768bc6c7a314cf1321e9a123afc328cc635c18622a2f30a04413"}, + {file = "babel-2.16.0-py3-none-any.whl", hash = "sha256:368b5b98b37c06b7daf6696391c3240c938b37767d4584413e8438c5c435fa8b"}, + {file = "babel-2.16.0.tar.gz", hash = "sha256:d1f3554ca26605fe173f3de0c65f750f5a42f924499bf134de6423582298e316"}, ] [package.extras] @@ -183,33 +183,33 @@ files = [ [[package]] name = "black" -version = "24.4.2" +version = "24.8.0" description = "The uncompromising code formatter." optional = false python-versions = ">=3.8" files = [ - {file = "black-24.4.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:dd1b5a14e417189db4c7b64a6540f31730713d173f0b63e55fabd52d61d8fdce"}, - {file = "black-24.4.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8e537d281831ad0e71007dcdcbe50a71470b978c453fa41ce77186bbe0ed6021"}, - {file = "black-24.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eaea3008c281f1038edb473c1aa8ed8143a5535ff18f978a318f10302b254063"}, - {file = "black-24.4.2-cp310-cp310-win_amd64.whl", hash = "sha256:7768a0dbf16a39aa5e9a3ded568bb545c8c2727396d063bbaf847df05b08cd96"}, - {file = "black-24.4.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:257d724c2c9b1660f353b36c802ccece186a30accc7742c176d29c146df6e474"}, - {file = "black-24.4.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:bdde6f877a18f24844e381d45e9947a49e97933573ac9d4345399be37621e26c"}, - {file = "black-24.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e151054aa00bad1f4e1f04919542885f89f5f7d086b8a59e5000e6c616896ffb"}, - {file = "black-24.4.2-cp311-cp311-win_amd64.whl", hash = "sha256:7e122b1c4fb252fd85df3ca93578732b4749d9be076593076ef4d07a0233c3e1"}, - {file = "black-24.4.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:accf49e151c8ed2c0cdc528691838afd217c50412534e876a19270fea1e28e2d"}, - {file = "black-24.4.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:88c57dc656038f1ab9f92b3eb5335ee9b021412feaa46330d5eba4e51fe49b04"}, - {file = "black-24.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:be8bef99eb46d5021bf053114442914baeb3649a89dc5f3a555c88737e5e98fc"}, - {file = "black-24.4.2-cp312-cp312-win_amd64.whl", hash = "sha256:415e686e87dbbe6f4cd5ef0fbf764af7b89f9057b97c908742b6008cc554b9c0"}, - {file = "black-24.4.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:bf10f7310db693bb62692609b397e8d67257c55f949abde4c67f9cc574492cc7"}, - {file = "black-24.4.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:98e123f1d5cfd42f886624d84464f7756f60ff6eab89ae845210631714f6db94"}, - {file = "black-24.4.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:48a85f2cb5e6799a9ef05347b476cce6c182d6c71ee36925a6c194d074336ef8"}, - {file = "black-24.4.2-cp38-cp38-win_amd64.whl", hash = "sha256:b1530ae42e9d6d5b670a34db49a94115a64596bc77710b1d05e9801e62ca0a7c"}, - {file = "black-24.4.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:37aae07b029fa0174d39daf02748b379399b909652a806e5708199bd93899da1"}, - {file = "black-24.4.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:da33a1a5e49c4122ccdfd56cd021ff1ebc4a1ec4e2d01594fef9b6f267a9e741"}, - {file = "black-24.4.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ef703f83fc32e131e9bcc0a5094cfe85599e7109f896fe8bc96cc402f3eb4b6e"}, - {file = "black-24.4.2-cp39-cp39-win_amd64.whl", hash = "sha256:b9176b9832e84308818a99a561e90aa479e73c523b3f77afd07913380ae2eab7"}, - {file = "black-24.4.2-py3-none-any.whl", hash = "sha256:d36ed1124bb81b32f8614555b34cc4259c3fbc7eec17870e8ff8ded335b58d8c"}, - {file = "black-24.4.2.tar.gz", hash = "sha256:c872b53057f000085da66a19c55d68f6f8ddcac2642392ad3a355878406fbd4d"}, + {file = "black-24.8.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:09cdeb74d494ec023ded657f7092ba518e8cf78fa8386155e4a03fdcc44679e6"}, + {file = "black-24.8.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:81c6742da39f33b08e791da38410f32e27d632260e599df7245cccee2064afeb"}, + {file = "black-24.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:707a1ca89221bc8a1a64fb5e15ef39cd755633daa672a9db7498d1c19de66a42"}, + {file = "black-24.8.0-cp310-cp310-win_amd64.whl", hash = "sha256:d6417535d99c37cee4091a2f24eb2b6d5ec42b144d50f1f2e436d9fe1916fe1a"}, + {file = "black-24.8.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:fb6e2c0b86bbd43dee042e48059c9ad7830abd5c94b0bc518c0eeec57c3eddc1"}, + {file = "black-24.8.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:837fd281f1908d0076844bc2b801ad2d369c78c45cf800cad7b61686051041af"}, + {file = "black-24.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:62e8730977f0b77998029da7971fa896ceefa2c4c4933fcd593fa599ecbf97a4"}, + {file = "black-24.8.0-cp311-cp311-win_amd64.whl", hash = "sha256:72901b4913cbac8972ad911dc4098d5753704d1f3c56e44ae8dce99eecb0e3af"}, + {file = "black-24.8.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:7c046c1d1eeb7aea9335da62472481d3bbf3fd986e093cffd35f4385c94ae368"}, + {file = "black-24.8.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:649f6d84ccbae73ab767e206772cc2d7a393a001070a4c814a546afd0d423aed"}, + {file = "black-24.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2b59b250fdba5f9a9cd9d0ece6e6d993d91ce877d121d161e4698af3eb9c1018"}, + {file = "black-24.8.0-cp312-cp312-win_amd64.whl", hash = "sha256:6e55d30d44bed36593c3163b9bc63bf58b3b30e4611e4d88a0c3c239930ed5b2"}, + {file = "black-24.8.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:505289f17ceda596658ae81b61ebbe2d9b25aa78067035184ed0a9d855d18afd"}, + {file = "black-24.8.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:b19c9ad992c7883ad84c9b22aaa73562a16b819c1d8db7a1a1a49fb7ec13c7d2"}, + {file = "black-24.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1f13f7f386f86f8121d76599114bb8c17b69d962137fc70efe56137727c7047e"}, + {file = "black-24.8.0-cp38-cp38-win_amd64.whl", hash = "sha256:f490dbd59680d809ca31efdae20e634f3fae27fba3ce0ba3208333b713bc3920"}, + {file = "black-24.8.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:eab4dd44ce80dea27dc69db40dab62d4ca96112f87996bca68cd75639aeb2e4c"}, + {file = "black-24.8.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3c4285573d4897a7610054af5a890bde7c65cb466040c5f0c8b732812d7f0e5e"}, + {file = "black-24.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9e84e33b37be070ba135176c123ae52a51f82306def9f7d063ee302ecab2cf47"}, + {file = "black-24.8.0-cp39-cp39-win_amd64.whl", hash = "sha256:73bbf84ed136e45d451a260c6b73ed674652f90a2b3211d6a35e78054563a9bb"}, + {file = "black-24.8.0-py3-none-any.whl", hash = "sha256:972085c618ee94f402da1af548a4f218c754ea7e5dc70acb168bfaca4c2542ed"}, + {file = "black-24.8.0.tar.gz", hash = "sha256:2500945420b6784c38b9ee885af039f5e7471ef284ab03fa35ecdde4688cd83f"}, ] [package.dependencies] @@ -258,13 +258,13 @@ files = [ [[package]] name = "build" -version = "1.2.1" +version = "1.2.2" description = "A simple, correct Python build frontend" optional = false python-versions = ">=3.8" files = [ - {file = "build-1.2.1-py3-none-any.whl", hash = "sha256:75e10f767a433d9a86e50d83f418e83efc18ede923ee5ff7df93b6cb0306c5d4"}, - {file = "build-1.2.1.tar.gz", hash = "sha256:526263f4870c26f26c433545579475377b2b7588b6f1eac76a001e873ae3e19d"}, + {file = "build-1.2.2-py3-none-any.whl", hash = "sha256:277ccc71619d98afdd841a0e96ac9fe1593b823af481d3b0cea748e8894e0613"}, + {file = "build-1.2.2.tar.gz", hash = "sha256:119b2fb462adef986483438377a13b2f42064a2a3a4161f24a0cca698a07ac8c"}, ] [package.dependencies] @@ -348,74 +348,89 @@ zstd = ["zstandard"] [[package]] name = "certifi" -version = "2024.7.4" +version = "2024.8.30" description = "Python package for providing Mozilla's CA Bundle." optional = false python-versions = ">=3.6" files = [ - {file = "certifi-2024.7.4-py3-none-any.whl", hash = "sha256:c198e21b1289c2ab85ee4e67bb4b4ef3ead0892059901a8d5b622f24a1101e90"}, - {file = "certifi-2024.7.4.tar.gz", hash = "sha256:5a1e7645bc0ec61a09e26c36f6106dd4cf40c6db3a1fb6352b0244e7fb057c7b"}, + {file = "certifi-2024.8.30-py3-none-any.whl", hash = "sha256:922820b53db7a7257ffbda3f597266d435245903d80737e34f8a45ff3e3230d8"}, + {file = "certifi-2024.8.30.tar.gz", hash = "sha256:bec941d2aa8195e248a60b31ff9f0558284cf01a52591ceda73ea9afffd69fd9"}, ] [[package]] name = "cffi" -version = "1.16.0" +version = "1.17.1" description = "Foreign Function Interface for Python calling C code." optional = false python-versions = ">=3.8" files = [ - {file = "cffi-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6b3d6606d369fc1da4fd8c357d026317fbb9c9b75d36dc16e90e84c26854b088"}, - {file = "cffi-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ac0f5edd2360eea2f1daa9e26a41db02dd4b0451b48f7c318e217ee092a213e9"}, - {file = "cffi-1.16.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7e61e3e4fa664a8588aa25c883eab612a188c725755afff6289454d6362b9673"}, - {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a72e8961a86d19bdb45851d8f1f08b041ea37d2bd8d4fd19903bc3083d80c896"}, - {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5b50bf3f55561dac5438f8e70bfcdfd74543fd60df5fa5f62d94e5867deca684"}, - {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7651c50c8c5ef7bdb41108b7b8c5a83013bfaa8a935590c5d74627c047a583c7"}, - {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4108df7fe9b707191e55f33efbcb2d81928e10cea45527879a4749cbe472614"}, - {file = "cffi-1.16.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:32c68ef735dbe5857c810328cb2481e24722a59a2003018885514d4c09af9743"}, - {file = "cffi-1.16.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:673739cb539f8cdaa07d92d02efa93c9ccf87e345b9a0b556e3ecc666718468d"}, - {file = "cffi-1.16.0-cp310-cp310-win32.whl", hash = "sha256:9f90389693731ff1f659e55c7d1640e2ec43ff725cc61b04b2f9c6d8d017df6a"}, - {file = "cffi-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:e6024675e67af929088fda399b2094574609396b1decb609c55fa58b028a32a1"}, - {file = "cffi-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b84834d0cf97e7d27dd5b7f3aca7b6e9263c56308ab9dc8aae9784abb774d404"}, - {file = "cffi-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1b8ebc27c014c59692bb2664c7d13ce7a6e9a629be20e54e7271fa696ff2b417"}, - {file = "cffi-1.16.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ee07e47c12890ef248766a6e55bd38ebfb2bb8edd4142d56db91b21ea68b7627"}, - {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8a9d3ebe49f084ad71f9269834ceccbf398253c9fac910c4fd7053ff1386936"}, - {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e70f54f1796669ef691ca07d046cd81a29cb4deb1e5f942003f401c0c4a2695d"}, - {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5bf44d66cdf9e893637896c7faa22298baebcd18d1ddb6d2626a6e39793a1d56"}, - {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7b78010e7b97fef4bee1e896df8a4bbb6712b7f05b7ef630f9d1da00f6444d2e"}, - {file = "cffi-1.16.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c6a164aa47843fb1b01e941d385aab7215563bb8816d80ff3a363a9f8448a8dc"}, - {file = "cffi-1.16.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e09f3ff613345df5e8c3667da1d918f9149bd623cd9070c983c013792a9a62eb"}, - {file = "cffi-1.16.0-cp311-cp311-win32.whl", hash = "sha256:2c56b361916f390cd758a57f2e16233eb4f64bcbeee88a4881ea90fca14dc6ab"}, - {file = "cffi-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:db8e577c19c0fda0beb7e0d4e09e0ba74b1e4c092e0e40bfa12fe05b6f6d75ba"}, - {file = "cffi-1.16.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:fa3a0128b152627161ce47201262d3140edb5a5c3da88d73a1b790a959126956"}, - {file = "cffi-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:68e7c44931cc171c54ccb702482e9fc723192e88d25a0e133edd7aff8fcd1f6e"}, - {file = "cffi-1.16.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:abd808f9c129ba2beda4cfc53bde801e5bcf9d6e0f22f095e45327c038bfe68e"}, - {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88e2b3c14bdb32e440be531ade29d3c50a1a59cd4e51b1dd8b0865c54ea5d2e2"}, - {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fcc8eb6d5902bb1cf6dc4f187ee3ea80a1eba0a89aba40a5cb20a5087d961357"}, - {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b7be2d771cdba2942e13215c4e340bfd76398e9227ad10402a8767ab1865d2e6"}, - {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e715596e683d2ce000574bae5d07bd522c781a822866c20495e52520564f0969"}, - {file = "cffi-1.16.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:2d92b25dbf6cae33f65005baf472d2c245c050b1ce709cc4588cdcdd5495b520"}, - {file = "cffi-1.16.0-cp312-cp312-win32.whl", hash = "sha256:b2ca4e77f9f47c55c194982e10f058db063937845bb2b7a86c84a6cfe0aefa8b"}, - {file = "cffi-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:68678abf380b42ce21a5f2abde8efee05c114c2fdb2e9eef2efdb0257fba1235"}, - {file = "cffi-1.16.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0c9ef6ff37e974b73c25eecc13952c55bceed9112be2d9d938ded8e856138bcc"}, - {file = "cffi-1.16.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a09582f178759ee8128d9270cd1344154fd473bb77d94ce0aeb2a93ebf0feaf0"}, - {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e760191dd42581e023a68b758769e2da259b5d52e3103c6060ddc02c9edb8d7b"}, - {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80876338e19c951fdfed6198e70bc88f1c9758b94578d5a7c4c91a87af3cf31c"}, - {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a6a14b17d7e17fa0d207ac08642c8820f84f25ce17a442fd15e27ea18d67c59b"}, - {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6602bc8dc6f3a9e02b6c22c4fc1e47aa50f8f8e6d3f78a5e16ac33ef5fefa324"}, - {file = "cffi-1.16.0-cp38-cp38-win32.whl", hash = "sha256:131fd094d1065b19540c3d72594260f118b231090295d8c34e19a7bbcf2e860a"}, - {file = "cffi-1.16.0-cp38-cp38-win_amd64.whl", hash = "sha256:31d13b0f99e0836b7ff893d37af07366ebc90b678b6664c955b54561fc36ef36"}, - {file = "cffi-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:582215a0e9adbe0e379761260553ba11c58943e4bbe9c36430c4ca6ac74b15ed"}, - {file = "cffi-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b29ebffcf550f9da55bec9e02ad430c992a87e5f512cd63388abb76f1036d8d2"}, - {file = "cffi-1.16.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dc9b18bf40cc75f66f40a7379f6a9513244fe33c0e8aa72e2d56b0196a7ef872"}, - {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9cb4a35b3642fc5c005a6755a5d17c6c8b6bcb6981baf81cea8bfbc8903e8ba8"}, - {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b86851a328eedc692acf81fb05444bdf1891747c25af7529e39ddafaf68a4f3f"}, - {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c0f31130ebc2d37cdd8e44605fb5fa7ad59049298b3f745c74fa74c62fbfcfc4"}, - {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f8e709127c6c77446a8c0a8c8bf3c8ee706a06cd44b1e827c3e6a2ee6b8c098"}, - {file = "cffi-1.16.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:748dcd1e3d3d7cd5443ef03ce8685043294ad6bd7c02a38d1bd367cfd968e000"}, - {file = "cffi-1.16.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8895613bcc094d4a1b2dbe179d88d7fb4a15cee43c052e8885783fac397d91fe"}, - {file = "cffi-1.16.0-cp39-cp39-win32.whl", hash = "sha256:ed86a35631f7bfbb28e108dd96773b9d5a6ce4811cf6ea468bb6a359b256b1e4"}, - {file = "cffi-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:3686dffb02459559c74dd3d81748269ffb0eb027c39a6fc99502de37d501faa8"}, - {file = "cffi-1.16.0.tar.gz", hash = "sha256:bcb3ef43e58665bbda2fb198698fcae6776483e0c4a631aa5647806c25e02cc0"}, + {file = "cffi-1.17.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:df8b1c11f177bc2313ec4b2d46baec87a5f3e71fc8b45dab2ee7cae86d9aba14"}, + {file = "cffi-1.17.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8f2cdc858323644ab277e9bb925ad72ae0e67f69e804f4898c070998d50b1a67"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:edae79245293e15384b51f88b00613ba9f7198016a5948b5dddf4917d4d26382"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45398b671ac6d70e67da8e4224a065cec6a93541bb7aebe1b198a61b58c7b702"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ad9413ccdeda48c5afdae7e4fa2192157e991ff761e7ab8fdd8926f40b160cc3"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5da5719280082ac6bd9aa7becb3938dc9f9cbd57fac7d2871717b1feb0902ab6"}, + {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2bb1a08b8008b281856e5971307cc386a8e9c5b625ac297e853d36da6efe9c17"}, + {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:045d61c734659cc045141be4bae381a41d89b741f795af1dd018bfb532fd0df8"}, + {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:6883e737d7d9e4899a8a695e00ec36bd4e5e4f18fabe0aca0efe0a4b44cdb13e"}, + {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:6b8b4a92e1c65048ff98cfe1f735ef8f1ceb72e3d5f0c25fdb12087a23da22be"}, + {file = "cffi-1.17.1-cp310-cp310-win32.whl", hash = "sha256:c9c3d058ebabb74db66e431095118094d06abf53284d9c81f27300d0e0d8bc7c"}, + {file = "cffi-1.17.1-cp310-cp310-win_amd64.whl", hash = "sha256:0f048dcf80db46f0098ccac01132761580d28e28bc0f78ae0d58048063317e15"}, + {file = "cffi-1.17.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a45e3c6913c5b87b3ff120dcdc03f6131fa0065027d0ed7ee6190736a74cd401"}, + {file = "cffi-1.17.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:30c5e0cb5ae493c04c8b42916e52ca38079f1b235c2f8ae5f4527b963c401caf"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f75c7ab1f9e4aca5414ed4d8e5c0e303a34f4421f8a0d47a4d019ceff0ab6af4"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a1ed2dd2972641495a3ec98445e09766f077aee98a1c896dcb4ad0d303628e41"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:46bf43160c1a35f7ec506d254e5c890f3c03648a4dbac12d624e4490a7046cd1"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a24ed04c8ffd54b0729c07cee15a81d964e6fee0e3d4d342a27b020d22959dc6"}, + {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:610faea79c43e44c71e1ec53a554553fa22321b65fae24889706c0a84d4ad86d"}, + {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:a9b15d491f3ad5d692e11f6b71f7857e7835eb677955c00cc0aefcd0669adaf6"}, + {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:de2ea4b5833625383e464549fec1bc395c1bdeeb5f25c4a3a82b5a8c756ec22f"}, + {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:fc48c783f9c87e60831201f2cce7f3b2e4846bf4d8728eabe54d60700b318a0b"}, + {file = "cffi-1.17.1-cp311-cp311-win32.whl", hash = "sha256:85a950a4ac9c359340d5963966e3e0a94a676bd6245a4b55bc43949eee26a655"}, + {file = "cffi-1.17.1-cp311-cp311-win_amd64.whl", hash = "sha256:caaf0640ef5f5517f49bc275eca1406b0ffa6aa184892812030f04c2abf589a0"}, + {file = "cffi-1.17.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:805b4371bf7197c329fcb3ead37e710d1bca9da5d583f5073b799d5c5bd1eee4"}, + {file = "cffi-1.17.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:733e99bc2df47476e3848417c5a4540522f234dfd4ef3ab7fafdf555b082ec0c"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1257bdabf294dceb59f5e70c64a3e2f462c30c7ad68092d01bbbfb1c16b1ba36"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da95af8214998d77a98cc14e3a3bd00aa191526343078b530ceb0bd710fb48a5"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d63afe322132c194cf832bfec0dc69a99fb9bb6bbd550f161a49e9e855cc78ff"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f79fc4fc25f1c8698ff97788206bb3c2598949bfe0fef03d299eb1b5356ada99"}, + {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b62ce867176a75d03a665bad002af8e6d54644fad99a3c70905c543130e39d93"}, + {file = "cffi-1.17.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:386c8bf53c502fff58903061338ce4f4950cbdcb23e2902d86c0f722b786bbe3"}, + {file = "cffi-1.17.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:4ceb10419a9adf4460ea14cfd6bc43d08701f0835e979bf821052f1805850fe8"}, + {file = "cffi-1.17.1-cp312-cp312-win32.whl", hash = "sha256:a08d7e755f8ed21095a310a693525137cfe756ce62d066e53f502a83dc550f65"}, + {file = "cffi-1.17.1-cp312-cp312-win_amd64.whl", hash = "sha256:51392eae71afec0d0c8fb1a53b204dbb3bcabcb3c9b807eedf3e1e6ccf2de903"}, + {file = "cffi-1.17.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f3a2b4222ce6b60e2e8b337bb9596923045681d71e5a082783484d845390938e"}, + {file = "cffi-1.17.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0984a4925a435b1da406122d4d7968dd861c1385afe3b45ba82b750f229811e2"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d01b12eeeb4427d3110de311e1774046ad344f5b1a7403101878976ecd7a10f3"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:706510fe141c86a69c8ddc029c7910003a17353970cff3b904ff0686a5927683"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:de55b766c7aa2e2a3092c51e0483d700341182f08e67c63630d5b6f200bb28e5"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c59d6e989d07460165cc5ad3c61f9fd8f1b4796eacbd81cee78957842b834af4"}, + {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd398dbc6773384a17fe0d3e7eeb8d1a21c2200473ee6806bb5e6a8e62bb73dd"}, + {file = "cffi-1.17.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:3edc8d958eb099c634dace3c7e16560ae474aa3803a5df240542b305d14e14ed"}, + {file = "cffi-1.17.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:72e72408cad3d5419375fc87d289076ee319835bdfa2caad331e377589aebba9"}, + {file = "cffi-1.17.1-cp313-cp313-win32.whl", hash = "sha256:e03eab0a8677fa80d646b5ddece1cbeaf556c313dcfac435ba11f107ba117b5d"}, + {file = "cffi-1.17.1-cp313-cp313-win_amd64.whl", hash = "sha256:f6a16c31041f09ead72d69f583767292f750d24913dadacf5756b966aacb3f1a"}, + {file = "cffi-1.17.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:636062ea65bd0195bc012fea9321aca499c0504409f413dc88af450b57ffd03b"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c7eac2ef9b63c79431bc4b25f1cd649d7f061a28808cbc6c47b534bd789ef964"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e221cf152cff04059d011ee126477f0d9588303eb57e88923578ace7baad17f9"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:31000ec67d4221a71bd3f67df918b1f88f676f1c3b535a7eb473255fdc0b83fc"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6f17be4345073b0a7b8ea599688f692ac3ef23ce28e5df79c04de519dbc4912c"}, + {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e2b1fac190ae3ebfe37b979cc1ce69c81f4e4fe5746bb401dca63a9062cdaf1"}, + {file = "cffi-1.17.1-cp38-cp38-win32.whl", hash = "sha256:7596d6620d3fa590f677e9ee430df2958d2d6d6de2feeae5b20e82c00b76fbf8"}, + {file = "cffi-1.17.1-cp38-cp38-win_amd64.whl", hash = "sha256:78122be759c3f8a014ce010908ae03364d00a1f81ab5c7f4a7a5120607ea56e1"}, + {file = "cffi-1.17.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b2ab587605f4ba0bf81dc0cb08a41bd1c0a5906bd59243d56bad7668a6fc6c16"}, + {file = "cffi-1.17.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:28b16024becceed8c6dfbc75629e27788d8a3f9030691a1dbf9821a128b22c36"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d599671f396c4723d016dbddb72fe8e0397082b0a77a4fab8028923bec050e8"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ca74b8dbe6e8e8263c0ffd60277de77dcee6c837a3d0881d8c1ead7268c9e576"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f7f5baafcc48261359e14bcd6d9bff6d4b28d9103847c9e136694cb0501aef87"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:98e3969bcff97cae1b2def8ba499ea3d6f31ddfdb7635374834cf89a1a08ecf0"}, + {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cdf5ce3acdfd1661132f2a9c19cac174758dc2352bfe37d98aa7512c6b7178b3"}, + {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9755e4345d1ec879e3849e62222a18c7174d65a6a92d5b346b1863912168b595"}, + {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f1e22e8c4419538cb197e4dd60acc919d7696e5ef98ee4da4e01d3f8cfa4cc5a"}, + {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:c03e868a0b3bc35839ba98e74211ed2b05d2119be4e8a0f224fba9384f1fe02e"}, + {file = "cffi-1.17.1-cp39-cp39-win32.whl", hash = "sha256:e31ae45bc2e29f6b2abd0de1cc3b9d5205aa847cafaecb8af1476a609a2f6eb7"}, + {file = "cffi-1.17.1-cp39-cp39-win_amd64.whl", hash = "sha256:d016c76bdd850f3c626af19b0542c9677ba156e4ee4fccfdd7848803533ef662"}, + {file = "cffi-1.17.1.tar.gz", hash = "sha256:1c39c6016c32bc48dd54561950ebd6836e1670f2ae46128f67cf49e789c52824"}, ] [package.dependencies] @@ -696,38 +711,38 @@ toml = ["toml"] [[package]] name = "cryptography" -version = "43.0.0" +version = "43.0.1" description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." optional = false python-versions = ">=3.7" files = [ - {file = "cryptography-43.0.0-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:64c3f16e2a4fc51c0d06af28441881f98c5d91009b8caaff40cf3548089e9c74"}, - {file = "cryptography-43.0.0-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3dcdedae5c7710b9f97ac6bba7e1052b95c7083c9d0e9df96e02a1932e777895"}, - {file = "cryptography-43.0.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3d9a1eca329405219b605fac09ecfc09ac09e595d6def650a437523fcd08dd22"}, - {file = "cryptography-43.0.0-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:ea9e57f8ea880eeea38ab5abf9fbe39f923544d7884228ec67d666abd60f5a47"}, - {file = "cryptography-43.0.0-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:9a8d6802e0825767476f62aafed40532bd435e8a5f7d23bd8b4f5fd04cc80ecf"}, - {file = "cryptography-43.0.0-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:cc70b4b581f28d0a254d006f26949245e3657d40d8857066c2ae22a61222ef55"}, - {file = "cryptography-43.0.0-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:4a997df8c1c2aae1e1e5ac49c2e4f610ad037fc5a3aadc7b64e39dea42249431"}, - {file = "cryptography-43.0.0-cp37-abi3-win32.whl", hash = "sha256:6e2b11c55d260d03a8cf29ac9b5e0608d35f08077d8c087be96287f43af3ccdc"}, - {file = "cryptography-43.0.0-cp37-abi3-win_amd64.whl", hash = "sha256:31e44a986ceccec3d0498e16f3d27b2ee5fdf69ce2ab89b52eaad1d2f33d8778"}, - {file = "cryptography-43.0.0-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:7b3f5fe74a5ca32d4d0f302ffe6680fcc5c28f8ef0dc0ae8f40c0f3a1b4fca66"}, - {file = "cryptography-43.0.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac1955ce000cb29ab40def14fd1bbfa7af2017cca696ee696925615cafd0dce5"}, - {file = "cryptography-43.0.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:299d3da8e00b7e2b54bb02ef58d73cd5f55fb31f33ebbf33bd00d9aa6807df7e"}, - {file = "cryptography-43.0.0-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:ee0c405832ade84d4de74b9029bedb7b31200600fa524d218fc29bfa371e97f5"}, - {file = "cryptography-43.0.0-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:cb013933d4c127349b3948aa8aaf2f12c0353ad0eccd715ca789c8a0f671646f"}, - {file = "cryptography-43.0.0-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:fdcb265de28585de5b859ae13e3846a8e805268a823a12a4da2597f1f5afc9f0"}, - {file = "cryptography-43.0.0-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:2905ccf93a8a2a416f3ec01b1a7911c3fe4073ef35640e7ee5296754e30b762b"}, - {file = "cryptography-43.0.0-cp39-abi3-win32.whl", hash = "sha256:47ca71115e545954e6c1d207dd13461ab81f4eccfcb1345eac874828b5e3eaaf"}, - {file = "cryptography-43.0.0-cp39-abi3-win_amd64.whl", hash = "sha256:0663585d02f76929792470451a5ba64424acc3cd5227b03921dab0e2f27b1709"}, - {file = "cryptography-43.0.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:2c6d112bf61c5ef44042c253e4859b3cbbb50df2f78fa8fae6747a7814484a70"}, - {file = "cryptography-43.0.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:844b6d608374e7d08f4f6e6f9f7b951f9256db41421917dfb2d003dde4cd6b66"}, - {file = "cryptography-43.0.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:51956cf8730665e2bdf8ddb8da0056f699c1a5715648c1b0144670c1ba00b48f"}, - {file = "cryptography-43.0.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:aae4d918f6b180a8ab8bf6511a419473d107df4dbb4225c7b48c5c9602c38c7f"}, - {file = "cryptography-43.0.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:232ce02943a579095a339ac4b390fbbe97f5b5d5d107f8a08260ea2768be8cc2"}, - {file = "cryptography-43.0.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:5bcb8a5620008a8034d39bce21dc3e23735dfdb6a33a06974739bfa04f853947"}, - {file = "cryptography-43.0.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:08a24a7070b2b6804c1940ff0f910ff728932a9d0e80e7814234269f9d46d069"}, - {file = "cryptography-43.0.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:e9c5266c432a1e23738d178e51c2c7a5e2ddf790f248be939448c0ba2021f9d1"}, - {file = "cryptography-43.0.0.tar.gz", hash = "sha256:b88075ada2d51aa9f18283532c9f60e72170041bba88d7f37e49cbb10275299e"}, + {file = "cryptography-43.0.1-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:8385d98f6a3bf8bb2d65a73e17ed87a3ba84f6991c155691c51112075f9ffc5d"}, + {file = "cryptography-43.0.1-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:27e613d7077ac613e399270253259d9d53872aaf657471473ebfc9a52935c062"}, + {file = "cryptography-43.0.1-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:68aaecc4178e90719e95298515979814bda0cbada1256a4485414860bd7ab962"}, + {file = "cryptography-43.0.1-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:de41fd81a41e53267cb020bb3a7212861da53a7d39f863585d13ea11049cf277"}, + {file = "cryptography-43.0.1-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:f98bf604c82c416bc829e490c700ca1553eafdf2912a91e23a79d97d9801372a"}, + {file = "cryptography-43.0.1-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:61ec41068b7b74268fa86e3e9e12b9f0c21fcf65434571dbb13d954bceb08042"}, + {file = "cryptography-43.0.1-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:014f58110f53237ace6a408b5beb6c427b64e084eb451ef25a28308270086494"}, + {file = "cryptography-43.0.1-cp37-abi3-win32.whl", hash = "sha256:2bd51274dcd59f09dd952afb696bf9c61a7a49dfc764c04dd33ef7a6b502a1e2"}, + {file = "cryptography-43.0.1-cp37-abi3-win_amd64.whl", hash = "sha256:666ae11966643886c2987b3b721899d250855718d6d9ce41b521252a17985f4d"}, + {file = "cryptography-43.0.1-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:ac119bb76b9faa00f48128b7f5679e1d8d437365c5d26f1c2c3f0da4ce1b553d"}, + {file = "cryptography-43.0.1-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1bbcce1a551e262dfbafb6e6252f1ae36a248e615ca44ba302df077a846a8806"}, + {file = "cryptography-43.0.1-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:58d4e9129985185a06d849aa6df265bdd5a74ca6e1b736a77959b498e0505b85"}, + {file = "cryptography-43.0.1-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:d03a475165f3134f773d1388aeb19c2d25ba88b6a9733c5c590b9ff7bbfa2e0c"}, + {file = "cryptography-43.0.1-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:511f4273808ab590912a93ddb4e3914dfd8a388fed883361b02dea3791f292e1"}, + {file = "cryptography-43.0.1-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:80eda8b3e173f0f247f711eef62be51b599b5d425c429b5d4ca6a05e9e856baa"}, + {file = "cryptography-43.0.1-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:38926c50cff6f533f8a2dae3d7f19541432610d114a70808f0926d5aaa7121e4"}, + {file = "cryptography-43.0.1-cp39-abi3-win32.whl", hash = "sha256:a575913fb06e05e6b4b814d7f7468c2c660e8bb16d8d5a1faf9b33ccc569dd47"}, + {file = "cryptography-43.0.1-cp39-abi3-win_amd64.whl", hash = "sha256:d75601ad10b059ec832e78823b348bfa1a59f6b8d545db3a24fd44362a1564cb"}, + {file = "cryptography-43.0.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:ea25acb556320250756e53f9e20a4177515f012c9eaea17eb7587a8c4d8ae034"}, + {file = "cryptography-43.0.1-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:c1332724be35d23a854994ff0b66530119500b6053d0bd3363265f7e5e77288d"}, + {file = "cryptography-43.0.1-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:fba1007b3ef89946dbbb515aeeb41e30203b004f0b4b00e5e16078b518563289"}, + {file = "cryptography-43.0.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:5b43d1ea6b378b54a1dc99dd8a2b5be47658fe9a7ce0a58ff0b55f4b43ef2b84"}, + {file = "cryptography-43.0.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:88cce104c36870d70c49c7c8fd22885875d950d9ee6ab54df2745f83ba0dc365"}, + {file = "cryptography-43.0.1-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:9d3cdb25fa98afdd3d0892d132b8d7139e2c087da1712041f6b762e4f807cc96"}, + {file = "cryptography-43.0.1-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:e710bf40870f4db63c3d7d929aa9e09e4e7ee219e703f949ec4073b4294f6172"}, + {file = "cryptography-43.0.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:7c05650fe8023c5ed0d46793d4b7d7e6cd9c04e68eabe5b0aeea836e37bdcec2"}, + {file = "cryptography-43.0.1.tar.gz", hash = "sha256:203e92a75716d8cfb491dc47c79e17d0d9207ccffcbcb35f598fbe463ae3444d"}, ] [package.dependencies] @@ -740,7 +755,7 @@ nox = ["nox"] pep8test = ["check-sdist", "click", "mypy", "ruff"] sdist = ["build"] ssh = ["bcrypt (>=3.1.5)"] -test = ["certifi", "cryptography-vectors (==43.0.0)", "pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-xdist"] +test = ["certifi", "cryptography-vectors (==43.0.1)", "pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-xdist"] test-randomorder = ["pytest-randomly"] [[package]] @@ -948,13 +963,13 @@ test = ["pytest (>=6)"] [[package]] name = "executing" -version = "2.0.1" +version = "2.1.0" description = "Get the currently executing AST node of a frame, and other information" optional = false -python-versions = ">=3.5" +python-versions = ">=3.8" files = [ - {file = "executing-2.0.1-py2.py3-none-any.whl", hash = "sha256:eac49ca94516ccc753f9fb5ce82603156e590b27525a8bc32cce8ae302eb61bc"}, - {file = "executing-2.0.1.tar.gz", hash = "sha256:35afe2ce3affba8ee97f2d69927fa823b08b472b7b994e36a52a964b93d16147"}, + {file = "executing-2.1.0-py2.py3-none-any.whl", hash = "sha256:8d63781349375b5ebccc3142f4b30350c0cd9c79f921cde38be2be4637e98eaf"}, + {file = "executing-2.1.0.tar.gz", hash = "sha256:8ea27ddd260da8150fa5a708269c4a10e76161e2496ec3e587da9e3c0fe4b9ab"}, ] [package.extras] @@ -1089,13 +1104,13 @@ tests = ["black (>=21.9b0)", "check-manifest (>=0.42)", "coverage (>=5.3,<6)", " [[package]] name = "flask-cors" -version = "4.0.1" +version = "5.0.0" description = "A Flask extension adding a decorator for CORS support" optional = false python-versions = "*" files = [ - {file = "Flask_Cors-4.0.1-py2.py3-none-any.whl", hash = "sha256:f2a704e4458665580c074b714c4627dd5a306b333deb9074d0b1794dfa2fb677"}, - {file = "flask_cors-4.0.1.tar.gz", hash = "sha256:eeb69b342142fdbf4766ad99357a7f3876a2ceb77689dc10ff912aac06c389e4"}, + {file = "Flask_Cors-5.0.0-py2.py3-none-any.whl", hash = "sha256:b9e307d082a9261c100d8fb0ba909eec6a228ed1b60a8315fd85f783d61910bc"}, + {file = "flask_cors-5.0.0.tar.gz", hash = "sha256:5aadb4b950c4e93745034594d9f3ea6591f734bb3662e16e255ffbf5e89c88ef"}, ] [package.dependencies] @@ -1246,18 +1261,19 @@ tests = ["Flask-SQLAlchemy (>=2.5.1)", "Flask-Sphinx-Themes (>=1.0.2)", "Werkzeu [[package]] name = "flask-shell-ipython" -version = "0.5.1" +version = "0.5.3" description = "Replace default `flask shell` command by similar command running IPython." optional = false -python-versions = ">=3.6, <4" +python-versions = "<4.0,>=3.8" files = [ - {file = "flask_shell_ipython-0.5.1-py2.py3-none-any.whl", hash = "sha256:8c948c0721bcc5b8eb274e1831c8a428dfc693099609c33d2f330091782cce10"}, + {file = "flask_shell_ipython-0.5.3-py3-none-any.whl", hash = "sha256:c0a1905671ba7223d36e59854e7900832a0febf127e5c01793377af878560ebd"}, + {file = "flask_shell_ipython-0.5.3.tar.gz", hash = "sha256:1a8bb90da18c34d15bc4ad817820101fffa93507a7eb685532ed518aea280848"}, ] [package.dependencies] click = "*" -Flask = ">=1.0" -IPython = ">=5.0.0" +flask = ">=1.0" +ipython = ">=5.0.0" [[package]] name = "flask-sqlalchemy" @@ -1330,13 +1346,13 @@ email = ["email-validator"] [[package]] name = "ftfy" -version = "6.2.0" +version = "6.2.3" description = "Fixes mojibake and other problems with Unicode, after the fact" optional = false -python-versions = ">=3.8,<4" +python-versions = "<4,>=3.8.1" files = [ - {file = "ftfy-6.2.0-py3-none-any.whl", hash = "sha256:f94a2c34b76e07475720e3096f5ca80911d152406fbde66fdb45c4d0c9150026"}, - {file = "ftfy-6.2.0.tar.gz", hash = "sha256:5e42143c7025ef97944ca2619d6b61b0619fc6654f98771d39e862c1424c75c0"}, + {file = "ftfy-6.2.3-py3-none-any.whl", hash = "sha256:f15761b023f3061a66207d33f0c0149ad40a8319fd16da91796363e2c049fdf8"}, + {file = "ftfy-6.2.3.tar.gz", hash = "sha256:79b505988f29d577a58a9069afe75553a02a46e42de6091c0660cdc67812badc"}, ] [package.dependencies] @@ -1376,69 +1392,84 @@ test = ["betamax (>=0.5.1)", "betamax-matchers (>=0.3.0)", "pytest (>=7.0)", "py [[package]] name = "greenlet" -version = "3.0.3" +version = "3.1.1" description = "Lightweight in-process concurrent programming" optional = false python-versions = ">=3.7" files = [ - {file = "greenlet-3.0.3-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:9da2bd29ed9e4f15955dd1595ad7bc9320308a3b766ef7f837e23ad4b4aac31a"}, - {file = "greenlet-3.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d353cadd6083fdb056bb46ed07e4340b0869c305c8ca54ef9da3421acbdf6881"}, - {file = "greenlet-3.0.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dca1e2f3ca00b84a396bc1bce13dd21f680f035314d2379c4160c98153b2059b"}, - {file = "greenlet-3.0.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3ed7fb269f15dc662787f4119ec300ad0702fa1b19d2135a37c2c4de6fadfd4a"}, - {file = "greenlet-3.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd4f49ae60e10adbc94b45c0b5e6a179acc1736cf7a90160b404076ee283cf83"}, - {file = "greenlet-3.0.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:73a411ef564e0e097dbe7e866bb2dda0f027e072b04da387282b02c308807405"}, - {file = "greenlet-3.0.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:7f362975f2d179f9e26928c5b517524e89dd48530a0202570d55ad6ca5d8a56f"}, - {file = "greenlet-3.0.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:649dde7de1a5eceb258f9cb00bdf50e978c9db1b996964cd80703614c86495eb"}, - {file = "greenlet-3.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:68834da854554926fbedd38c76e60c4a2e3198c6fbed520b106a8986445caaf9"}, - {file = "greenlet-3.0.3-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:b1b5667cced97081bf57b8fa1d6bfca67814b0afd38208d52538316e9422fc61"}, - {file = "greenlet-3.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52f59dd9c96ad2fc0d5724107444f76eb20aaccb675bf825df6435acb7703559"}, - {file = "greenlet-3.0.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:afaff6cf5200befd5cec055b07d1c0a5a06c040fe5ad148abcd11ba6ab9b114e"}, - {file = "greenlet-3.0.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fe754d231288e1e64323cfad462fcee8f0288654c10bdf4f603a39ed923bef33"}, - {file = "greenlet-3.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2797aa5aedac23af156bbb5a6aa2cd3427ada2972c828244eb7d1b9255846379"}, - {file = "greenlet-3.0.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b7f009caad047246ed379e1c4dbcb8b020f0a390667ea74d2387be2998f58a22"}, - {file = "greenlet-3.0.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:c5e1536de2aad7bf62e27baf79225d0d64360d4168cf2e6becb91baf1ed074f3"}, - {file = "greenlet-3.0.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:894393ce10ceac937e56ec00bb71c4c2f8209ad516e96033e4b3b1de270e200d"}, - {file = "greenlet-3.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:1ea188d4f49089fc6fb283845ab18a2518d279c7cd9da1065d7a84e991748728"}, - {file = "greenlet-3.0.3-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:70fb482fdf2c707765ab5f0b6655e9cfcf3780d8d87355a063547b41177599be"}, - {file = "greenlet-3.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d4d1ac74f5c0c0524e4a24335350edad7e5f03b9532da7ea4d3c54d527784f2e"}, - {file = "greenlet-3.0.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:149e94a2dd82d19838fe4b2259f1b6b9957d5ba1b25640d2380bea9c5df37676"}, - {file = "greenlet-3.0.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:15d79dd26056573940fcb8c7413d84118086f2ec1a8acdfa854631084393efcc"}, - {file = "greenlet-3.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:881b7db1ebff4ba09aaaeae6aa491daeb226c8150fc20e836ad00041bcb11230"}, - {file = "greenlet-3.0.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fcd2469d6a2cf298f198f0487e0a5b1a47a42ca0fa4dfd1b6862c999f018ebbf"}, - {file = "greenlet-3.0.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:1f672519db1796ca0d8753f9e78ec02355e862d0998193038c7073045899f305"}, - {file = "greenlet-3.0.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:2516a9957eed41dd8f1ec0c604f1cdc86758b587d964668b5b196a9db5bfcde6"}, - {file = "greenlet-3.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:bba5387a6975598857d86de9eac14210a49d554a77eb8261cc68b7d082f78ce2"}, - {file = "greenlet-3.0.3-cp37-cp37m-macosx_11_0_universal2.whl", hash = "sha256:5b51e85cb5ceda94e79d019ed36b35386e8c37d22f07d6a751cb659b180d5274"}, - {file = "greenlet-3.0.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:daf3cb43b7cf2ba96d614252ce1684c1bccee6b2183a01328c98d36fcd7d5cb0"}, - {file = "greenlet-3.0.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99bf650dc5d69546e076f413a87481ee1d2d09aaaaaca058c9251b6d8c14783f"}, - {file = "greenlet-3.0.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dd6e660effd852586b6a8478a1d244b8dc90ab5b1321751d2ea15deb49ed414"}, - {file = "greenlet-3.0.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e3391d1e16e2a5a1507d83e4a8b100f4ee626e8eca43cf2cadb543de69827c4c"}, - {file = "greenlet-3.0.3-cp37-cp37m-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e1f145462f1fa6e4a4ae3c0f782e580ce44d57c8f2c7aae1b6fa88c0b2efdb41"}, - {file = "greenlet-3.0.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:1a7191e42732df52cb5f39d3527217e7ab73cae2cb3694d241e18f53d84ea9a7"}, - {file = "greenlet-3.0.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:0448abc479fab28b00cb472d278828b3ccca164531daab4e970a0458786055d6"}, - {file = "greenlet-3.0.3-cp37-cp37m-win32.whl", hash = "sha256:b542be2440edc2d48547b5923c408cbe0fc94afb9f18741faa6ae970dbcb9b6d"}, - {file = "greenlet-3.0.3-cp37-cp37m-win_amd64.whl", hash = "sha256:01bc7ea167cf943b4c802068e178bbf70ae2e8c080467070d01bfa02f337ee67"}, - {file = "greenlet-3.0.3-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:1996cb9306c8595335bb157d133daf5cf9f693ef413e7673cb07e3e5871379ca"}, - {file = "greenlet-3.0.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ddc0f794e6ad661e321caa8d2f0a55ce01213c74722587256fb6566049a8b04"}, - {file = "greenlet-3.0.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c9db1c18f0eaad2f804728c67d6c610778456e3e1cc4ab4bbd5eeb8e6053c6fc"}, - {file = "greenlet-3.0.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7170375bcc99f1a2fbd9c306f5be8764eaf3ac6b5cb968862cad4c7057756506"}, - {file = "greenlet-3.0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6b66c9c1e7ccabad3a7d037b2bcb740122a7b17a53734b7d72a344ce39882a1b"}, - {file = "greenlet-3.0.3-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:098d86f528c855ead3479afe84b49242e174ed262456c342d70fc7f972bc13c4"}, - {file = "greenlet-3.0.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:81bb9c6d52e8321f09c3d165b2a78c680506d9af285bfccbad9fb7ad5a5da3e5"}, - {file = "greenlet-3.0.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:fd096eb7ffef17c456cfa587523c5f92321ae02427ff955bebe9e3c63bc9f0da"}, - {file = "greenlet-3.0.3-cp38-cp38-win32.whl", hash = "sha256:d46677c85c5ba00a9cb6f7a00b2bfa6f812192d2c9f7d9c4f6a55b60216712f3"}, - {file = "greenlet-3.0.3-cp38-cp38-win_amd64.whl", hash = "sha256:419b386f84949bf0e7c73e6032e3457b82a787c1ab4a0e43732898a761cc9dbf"}, - {file = "greenlet-3.0.3-cp39-cp39-macosx_11_0_universal2.whl", hash = "sha256:da70d4d51c8b306bb7a031d5cff6cc25ad253affe89b70352af5f1cb68e74b53"}, - {file = "greenlet-3.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:086152f8fbc5955df88382e8a75984e2bb1c892ad2e3c80a2508954e52295257"}, - {file = "greenlet-3.0.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d73a9fe764d77f87f8ec26a0c85144d6a951a6c438dfe50487df5595c6373eac"}, - {file = "greenlet-3.0.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b7dcbe92cc99f08c8dd11f930de4d99ef756c3591a5377d1d9cd7dd5e896da71"}, - {file = "greenlet-3.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1551a8195c0d4a68fac7a4325efac0d541b48def35feb49d803674ac32582f61"}, - {file = "greenlet-3.0.3-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:64d7675ad83578e3fc149b617a444fab8efdafc9385471f868eb5ff83e446b8b"}, - {file = "greenlet-3.0.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:b37eef18ea55f2ffd8f00ff8fe7c8d3818abd3e25fb73fae2ca3b672e333a7a6"}, - {file = "greenlet-3.0.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:77457465d89b8263bca14759d7c1684df840b6811b2499838cc5b040a8b5b113"}, - {file = "greenlet-3.0.3-cp39-cp39-win32.whl", hash = "sha256:57e8974f23e47dac22b83436bdcf23080ade568ce77df33159e019d161ce1d1e"}, - {file = "greenlet-3.0.3-cp39-cp39-win_amd64.whl", hash = "sha256:c5ee858cfe08f34712f548c3c363e807e7186f03ad7a5039ebadb29e8c6be067"}, - {file = "greenlet-3.0.3.tar.gz", hash = "sha256:43374442353259554ce33599da8b692d5aa96f8976d567d4badf263371fbe491"}, + {file = "greenlet-3.1.1-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:0bbae94a29c9e5c7e4a2b7f0aae5c17e8e90acbfd3bf6270eeba60c39fce3563"}, + {file = "greenlet-3.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0fde093fb93f35ca72a556cf72c92ea3ebfda3d79fc35bb19fbe685853869a83"}, + {file = "greenlet-3.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:36b89d13c49216cadb828db8dfa6ce86bbbc476a82d3a6c397f0efae0525bdd0"}, + {file = "greenlet-3.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:94b6150a85e1b33b40b1464a3f9988dcc5251d6ed06842abff82e42632fac120"}, + {file = "greenlet-3.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:93147c513fac16385d1036b7e5b102c7fbbdb163d556b791f0f11eada7ba65dc"}, + {file = "greenlet-3.1.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:da7a9bff22ce038e19bf62c4dd1ec8391062878710ded0a845bcf47cc0200617"}, + {file = "greenlet-3.1.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:b2795058c23988728eec1f36a4e5e4ebad22f8320c85f3587b539b9ac84128d7"}, + {file = "greenlet-3.1.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:ed10eac5830befbdd0c32f83e8aa6288361597550ba669b04c48f0f9a2c843c6"}, + {file = "greenlet-3.1.1-cp310-cp310-win_amd64.whl", hash = "sha256:77c386de38a60d1dfb8e55b8c1101d68c79dfdd25c7095d51fec2dd800892b80"}, + {file = "greenlet-3.1.1-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:e4d333e558953648ca09d64f13e6d8f0523fa705f51cae3f03b5983489958c70"}, + {file = "greenlet-3.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:09fc016b73c94e98e29af67ab7b9a879c307c6731a2c9da0db5a7d9b7edd1159"}, + {file = "greenlet-3.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d5e975ca70269d66d17dd995dafc06f1b06e8cb1ec1e9ed54c1d1e4a7c4cf26e"}, + {file = "greenlet-3.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b2813dc3de8c1ee3f924e4d4227999285fd335d1bcc0d2be6dc3f1f6a318ec1"}, + {file = "greenlet-3.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e347b3bfcf985a05e8c0b7d462ba6f15b1ee1c909e2dcad795e49e91b152c383"}, + {file = "greenlet-3.1.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9e8f8c9cb53cdac7ba9793c276acd90168f416b9ce36799b9b885790f8ad6c0a"}, + {file = "greenlet-3.1.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:62ee94988d6b4722ce0028644418d93a52429e977d742ca2ccbe1c4f4a792511"}, + {file = "greenlet-3.1.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:1776fd7f989fc6b8d8c8cb8da1f6b82c5814957264d1f6cf818d475ec2bf6395"}, + {file = "greenlet-3.1.1-cp311-cp311-win_amd64.whl", hash = "sha256:48ca08c771c268a768087b408658e216133aecd835c0ded47ce955381105ba39"}, + {file = "greenlet-3.1.1-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:4afe7ea89de619adc868e087b4d2359282058479d7cfb94970adf4b55284574d"}, + {file = "greenlet-3.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f406b22b7c9a9b4f8aa9d2ab13d6ae0ac3e85c9a809bd590ad53fed2bf70dc79"}, + {file = "greenlet-3.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c3a701fe5a9695b238503ce5bbe8218e03c3bcccf7e204e455e7462d770268aa"}, + {file = "greenlet-3.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2846930c65b47d70b9d178e89c7e1a69c95c1f68ea5aa0a58646b7a96df12441"}, + {file = "greenlet-3.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:99cfaa2110534e2cf3ba31a7abcac9d328d1d9f1b95beede58294a60348fba36"}, + {file = "greenlet-3.1.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1443279c19fca463fc33e65ef2a935a5b09bb90f978beab37729e1c3c6c25fe9"}, + {file = "greenlet-3.1.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:b7cede291382a78f7bb5f04a529cb18e068dd29e0fb27376074b6d0317bf4dd0"}, + {file = "greenlet-3.1.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:23f20bb60ae298d7d8656c6ec6db134bca379ecefadb0b19ce6f19d1f232a942"}, + {file = "greenlet-3.1.1-cp312-cp312-win_amd64.whl", hash = "sha256:7124e16b4c55d417577c2077be379514321916d5790fa287c9ed6f23bd2ffd01"}, + {file = "greenlet-3.1.1-cp313-cp313-macosx_11_0_universal2.whl", hash = "sha256:05175c27cb459dcfc05d026c4232f9de8913ed006d42713cb8a5137bd49375f1"}, + {file = "greenlet-3.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:935e943ec47c4afab8965954bf49bfa639c05d4ccf9ef6e924188f762145c0ff"}, + {file = "greenlet-3.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:667a9706c970cb552ede35aee17339a18e8f2a87a51fba2ed39ceeeb1004798a"}, + {file = "greenlet-3.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b8a678974d1f3aa55f6cc34dc480169d58f2e6d8958895d68845fa4ab566509e"}, + {file = "greenlet-3.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:efc0f674aa41b92da8c49e0346318c6075d734994c3c4e4430b1c3f853e498e4"}, + {file = "greenlet-3.1.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0153404a4bb921f0ff1abeb5ce8a5131da56b953eda6e14b88dc6bbc04d2049e"}, + {file = "greenlet-3.1.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:275f72decf9932639c1c6dd1013a1bc266438eb32710016a1c742df5da6e60a1"}, + {file = "greenlet-3.1.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:c4aab7f6381f38a4b42f269057aee279ab0fc7bf2e929e3d4abfae97b682a12c"}, + {file = "greenlet-3.1.1-cp313-cp313-win_amd64.whl", hash = "sha256:b42703b1cf69f2aa1df7d1030b9d77d3e584a70755674d60e710f0af570f3761"}, + {file = "greenlet-3.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f1695e76146579f8c06c1509c7ce4dfe0706f49c6831a817ac04eebb2fd02011"}, + {file = "greenlet-3.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7876452af029456b3f3549b696bb36a06db7c90747740c5302f74a9e9fa14b13"}, + {file = "greenlet-3.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4ead44c85f8ab905852d3de8d86f6f8baf77109f9da589cb4fa142bd3b57b475"}, + {file = "greenlet-3.1.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8320f64b777d00dd7ccdade271eaf0cad6636343293a25074cc5566160e4de7b"}, + {file = "greenlet-3.1.1-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6510bf84a6b643dabba74d3049ead221257603a253d0a9873f55f6a59a65f822"}, + {file = "greenlet-3.1.1-cp313-cp313t-musllinux_1_1_aarch64.whl", hash = "sha256:04b013dc07c96f83134b1e99888e7a79979f1a247e2a9f59697fa14b5862ed01"}, + {file = "greenlet-3.1.1-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:411f015496fec93c1c8cd4e5238da364e1da7a124bcb293f085bf2860c32c6f6"}, + {file = "greenlet-3.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:47da355d8687fd65240c364c90a31569a133b7b60de111c255ef5b606f2ae291"}, + {file = "greenlet-3.1.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:98884ecf2ffb7d7fe6bd517e8eb99d31ff7855a840fa6d0d63cd07c037f6a981"}, + {file = "greenlet-3.1.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f1d4aeb8891338e60d1ab6127af1fe45def5259def8094b9c7e34690c8858803"}, + {file = "greenlet-3.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:db32b5348615a04b82240cc67983cb315309e88d444a288934ee6ceaebcad6cc"}, + {file = "greenlet-3.1.1-cp37-cp37m-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:dcc62f31eae24de7f8dce72134c8651c58000d3b1868e01392baea7c32c247de"}, + {file = "greenlet-3.1.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:1d3755bcb2e02de341c55b4fca7a745a24a9e7212ac953f6b3a48d117d7257aa"}, + {file = "greenlet-3.1.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:b8da394b34370874b4572676f36acabac172602abf054cbc4ac910219f3340af"}, + {file = "greenlet-3.1.1-cp37-cp37m-win32.whl", hash = "sha256:a0dfc6c143b519113354e780a50381508139b07d2177cb6ad6a08278ec655798"}, + {file = "greenlet-3.1.1-cp37-cp37m-win_amd64.whl", hash = "sha256:54558ea205654b50c438029505def3834e80f0869a70fb15b871c29b4575ddef"}, + {file = "greenlet-3.1.1-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:346bed03fe47414091be4ad44786d1bd8bef0c3fcad6ed3dee074a032ab408a9"}, + {file = "greenlet-3.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dfc59d69fc48664bc693842bd57acfdd490acafda1ab52c7836e3fc75c90a111"}, + {file = "greenlet-3.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d21e10da6ec19b457b82636209cbe2331ff4306b54d06fa04b7c138ba18c8a81"}, + {file = "greenlet-3.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:37b9de5a96111fc15418819ab4c4432e4f3c2ede61e660b1e33971eba26ef9ba"}, + {file = "greenlet-3.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6ef9ea3f137e5711f0dbe5f9263e8c009b7069d8a1acea822bd5e9dae0ae49c8"}, + {file = "greenlet-3.1.1-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:85f3ff71e2e60bd4b4932a043fbbe0f499e263c628390b285cb599154a3b03b1"}, + {file = "greenlet-3.1.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:95ffcf719966dd7c453f908e208e14cde192e09fde6c7186c8f1896ef778d8cd"}, + {file = "greenlet-3.1.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:03a088b9de532cbfe2ba2034b2b85e82df37874681e8c470d6fb2f8c04d7e4b7"}, + {file = "greenlet-3.1.1-cp38-cp38-win32.whl", hash = "sha256:8b8b36671f10ba80e159378df9c4f15c14098c4fd73a36b9ad715f057272fbef"}, + {file = "greenlet-3.1.1-cp38-cp38-win_amd64.whl", hash = "sha256:7017b2be767b9d43cc31416aba48aab0d2309ee31b4dbf10a1d38fb7972bdf9d"}, + {file = "greenlet-3.1.1-cp39-cp39-macosx_11_0_universal2.whl", hash = "sha256:396979749bd95f018296af156201d6211240e7a23090f50a8d5d18c370084dc3"}, + {file = "greenlet-3.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ca9d0ff5ad43e785350894d97e13633a66e2b50000e8a183a50a88d834752d42"}, + {file = "greenlet-3.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f6ff3b14f2df4c41660a7dec01045a045653998784bf8cfcb5a525bdffffbc8f"}, + {file = "greenlet-3.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:94ebba31df2aa506d7b14866fed00ac141a867e63143fe5bca82a8e503b36437"}, + {file = "greenlet-3.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:73aaad12ac0ff500f62cebed98d8789198ea0e6f233421059fa68a5aa7220145"}, + {file = "greenlet-3.1.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:63e4844797b975b9af3a3fb8f7866ff08775f5426925e1e0bbcfe7932059a12c"}, + {file = "greenlet-3.1.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:7939aa3ca7d2a1593596e7ac6d59391ff30281ef280d8632fa03d81f7c5f955e"}, + {file = "greenlet-3.1.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:d0028e725ee18175c6e422797c407874da24381ce0690d6b9396c204c7f7276e"}, + {file = "greenlet-3.1.1-cp39-cp39-win32.whl", hash = "sha256:5e06afd14cbaf9e00899fae69b24a32f2196c19de08fcb9f4779dd4f004e5e7c"}, + {file = "greenlet-3.1.1-cp39-cp39-win_amd64.whl", hash = "sha256:3319aa75e0e0639bc15ff54ca327e8dc7a6fe404003496e3c6925cd3142e0e22"}, + {file = "greenlet-3.1.1.tar.gz", hash = "sha256:4ce3ac6cdb6adf7946475d7ef31777c26d94bccc377e070a7986bd2d5c515467"}, ] [package.extras] @@ -1447,15 +1478,18 @@ test = ["objgraph", "psutil"] [[package]] name = "idna" -version = "3.7" +version = "3.10" description = "Internationalized Domain Names in Applications (IDNA)" optional = false -python-versions = ">=3.5" +python-versions = ">=3.6" files = [ - {file = "idna-3.7-py3-none-any.whl", hash = "sha256:82fee1fc78add43492d3a1898bfa6d8a904cc97d8427f683ed8e798d07761aa0"}, - {file = "idna-3.7.tar.gz", hash = "sha256:028ff3aadf0609c1fd278d8ea3089299412a7a8b9bd005dd08b9f8285bcb5cfc"}, + {file = "idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3"}, + {file = "idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9"}, ] +[package.extras] +all = ["flake8 (>=7.1.1)", "mypy (>=1.11.2)", "pytest (>=8.3.2)", "ruff (>=0.6.2)"] + [[package]] name = "ijson" version = "3.3.0" @@ -1572,40 +1606,48 @@ files = [ [[package]] name = "importlib-metadata" -version = "8.1.0" +version = "8.5.0" description = "Read metadata from Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "importlib_metadata-8.1.0-py3-none-any.whl", hash = "sha256:3cd29f739ed65973840b068e3132135ce954c254d48b5b640484467ef7ab3c8c"}, - {file = "importlib_metadata-8.1.0.tar.gz", hash = "sha256:fcdcb1d5ead7bdf3dd32657bb94ebe9d2aabfe89a19782ddc32da5041d6ebfb4"}, + {file = "importlib_metadata-8.5.0-py3-none-any.whl", hash = "sha256:45e54197d28b7a7f1559e60b95e7c567032b602131fbd588f1497f47880aa68b"}, + {file = "importlib_metadata-8.5.0.tar.gz", hash = "sha256:71522656f0abace1d072b9e5481a48f07c138e00f079c38c8f883823f9c26bd7"}, ] [package.dependencies] -zipp = ">=0.5" +zipp = ">=3.20" [package.extras] +check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)"] +cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] +enabler = ["pytest-enabler (>=2.2)"] perf = ["ipython"] -test = ["flufl.flake8", "importlib-resources (>=1.3)", "jaraco.test (>=5.4)", "packaging", "pyfakefs", "pytest (>=6,!=8.1.*)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy", "pytest-perf (>=0.9.2)", "pytest-ruff (>=0.2.1)"] +test = ["flufl.flake8", "importlib-resources (>=1.3)", "jaraco.test (>=5.4)", "packaging", "pyfakefs", "pytest (>=6,!=8.1.*)", "pytest-perf (>=0.9.2)"] +type = ["pytest-mypy"] [[package]] name = "importlib-resources" -version = "6.4.0" +version = "6.4.5" description = "Read resources from Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "importlib_resources-6.4.0-py3-none-any.whl", hash = "sha256:50d10f043df931902d4194ea07ec57960f66a80449ff867bfe782b4c486ba78c"}, - {file = "importlib_resources-6.4.0.tar.gz", hash = "sha256:cdb2b453b8046ca4e3798eb1d84f3cce1446a0e8e7b5ef4efb600f19fc398145"}, + {file = "importlib_resources-6.4.5-py3-none-any.whl", hash = "sha256:ac29d5f956f01d5e4bb63102a5a19957f1b9175e45649977264a1416783bb717"}, + {file = "importlib_resources-6.4.5.tar.gz", hash = "sha256:980862a1d16c9e147a59603677fa2aa5fd82b87f223b6cb870695bcfce830065"}, ] [package.dependencies] zipp = {version = ">=3.1.0", markers = "python_version < \"3.10\""} [package.extras] -docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (<7.2.5)", "sphinx (>=3.5)", "sphinx-lint"] -testing = ["jaraco.test (>=5.4)", "pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy", "pytest-ruff (>=0.2.1)", "zipp (>=3.17)"] +check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)"] +cover = ["pytest-cov"] +doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] +enabler = ["pytest-enabler (>=2.2)"] +test = ["jaraco.test (>=5.4)", "pytest (>=6,!=8.1.*)", "zipp (>=3.17)"] +type = ["pytest-mypy"] [[package]] name = "infinity" @@ -1896,13 +1938,13 @@ tests = ["CairoSVG (>=1.0.20)", "Pillow (>=10.0.0)", "Sphinx (>=1.8.0)", "mock ( [[package]] name = "invenio-i18n" -version = "2.1.1" +version = "2.1.2" description = "Invenio internationalization (I18N) module." optional = false python-versions = ">=3.7" files = [ - {file = "invenio-i18n-2.1.1.tar.gz", hash = "sha256:915e011a22acfe71e83a4c1bf8ab2a7a064d977b28ba631ede0e0ab2aa0cb592"}, - {file = "invenio_i18n-2.1.1-py2.py3-none-any.whl", hash = "sha256:057a2d67b3453a7dd2e7d70881074ed5c4dc983615472467cb6b5057366246fa"}, + {file = "invenio-i18n-2.1.2.tar.gz", hash = "sha256:6f39224abb3e26c32d670ba1828f4d147acc0e8cca0671ce66862a5264ce75ef"}, + {file = "invenio_i18n-2.1.2-py2.py3-none-any.whl", hash = "sha256:ca66b3d226f963d765c71c7fcbbf7ff2f5977db3cd0b84893073bda4655f99a9"}, ] [package.dependencies] @@ -2027,13 +2069,13 @@ resolved_reference = "fe55e095a8e78b36cfad875f752f2facc2908bae" [[package]] name = "invenio-oaiserver" -version = "2.2.1" +version = "2.2.3" description = "\"Invenio module that implements OAI-PMH server.\"" optional = false python-versions = ">=3.7" files = [ - {file = "invenio-oaiserver-2.2.1.tar.gz", hash = "sha256:4f3092674c6170642580bb298b1eb96bae3ae47dbab8336defcf1e90a7ba8411"}, - {file = "invenio_oaiserver-2.2.1-py2.py3-none-any.whl", hash = "sha256:fcbce7ed2255db75b4af05d6665a2c1c692e0f40acdf74c2d6cdd49dab6e38cc"}, + {file = "invenio-oaiserver-2.2.3.tar.gz", hash = "sha256:73dd1dcb2f716ccf62cafd407aa0ce02c2500079a671fb22df3eb9b73c19a239"}, + {file = "invenio_oaiserver-2.2.3-py2.py3-none-any.whl", hash = "sha256:c037215dc0a6019f6a602f84f68d3ef74ee3c2311c654f1165aa7b06ace03e81"}, ] [package.dependencies] @@ -2083,13 +2125,13 @@ tests = ["invenio-admin (>=1.2.1)", "invenio-db[mysql,postgresql,versioning] (>= [[package]] name = "invenio-oauthclient" -version = "4.0.0" +version = "4.0.2" description = "\"Invenio module that provides OAuth web authorization support.\"" optional = false python-versions = ">=3.7" files = [ - {file = "invenio-oauthclient-4.0.0.tar.gz", hash = "sha256:dc4731757b6d178b309a84b708fcff4e97d546d95018fc6aa0aab49d3edbecac"}, - {file = "invenio_oauthclient-4.0.0-py2.py3-none-any.whl", hash = "sha256:288e66fa6a8977dc4bd52bea741995f8d73d491373766a93bf2e443c57d39067"}, + {file = "invenio-oauthclient-4.0.2.tar.gz", hash = "sha256:1f878930b6c6fd5adae48630ecc4ca2e1abb1da35d0bc0fa062d7f9af50c4cdb"}, + {file = "invenio_oauthclient-4.0.2-py2.py3-none-any.whl", hash = "sha256:087c9732e9f2dabfe59b4ae2cae836b0c2f046badee020d90732fb43e934d47f"}, ] [package.dependencies] @@ -2190,13 +2232,13 @@ tests = ["Flask-Login (>=0.3.2)", "citeproc-py (>=0.6.0)", "citeproc-py-styles ( [[package]] name = "invenio-records-ui" -version = "1.2.0" -description = "User interface for Invenio-Records." +version = "1.2.1" +description = "\"User interface for Invenio-Records.\"" optional = false -python-versions = "*" +python-versions = ">=3.7" files = [ - {file = "invenio-records-ui-1.2.0.tar.gz", hash = "sha256:d465ed33645712f4c6144836ffca80f3773e7aec3ef596a9f95bafc14535335b"}, - {file = "invenio_records_ui-1.2.0-py2.py3-none-any.whl", hash = "sha256:2e4adc70fc2f257828c6ea99199bac55d013c7922a5e2cb3d652441304e82fd3"}, + {file = "invenio-records-ui-1.2.1.tar.gz", hash = "sha256:bf3ce5498e7300b8577a20fff502ddb22287f2648ccd9b267f12db0d417fc966"}, + {file = "invenio_records_ui-1.2.1-py2.py3-none-any.whl", hash = "sha256:eae21ceb4d95460699ea586c0bb0a48b64bd4a91f3ab2c8bf8effd41e3aa5b0c"}, ] [package.dependencies] @@ -2206,9 +2248,7 @@ invenio-pidstore = ">=1.2.0" invenio-records = ">=1.0.0" [package.extras] -all = ["Sphinx (>=1.5.1)", "invenio-access (>=1.0.0)", "invenio-accounts (>=1.3.0)", "invenio-db[mysql,postgresql,versioning] (>=1.0.0)", "pytest-invenio (>=1.4.0)"] -docs = ["Sphinx (>=1.5.1)"] -tests = ["invenio-access (>=1.0.0)", "invenio-accounts (>=1.3.0)", "invenio-db[mysql,postgresql,versioning] (>=1.0.0)", "pytest-invenio (>=1.4.0)"] +tests = ["invenio-access (>=1.0.0)", "invenio-accounts (>=1.3.0)", "invenio-db[mysql,postgresql,versioning] (>=1.0.0)", "pytest-black (>=0.3.0,<0.3.10)", "pytest-invenio (>=1.4.0)", "sphinx (>=4.5)"] [[package]] name = "invenio-rest" @@ -2234,13 +2274,13 @@ tests = ["Sphinx (>=4.5.0)", "pytest-black (>=0.3.0,<0.3.10)", "pytest-invenio ( [[package]] name = "invenio-search" -version = "2.3.1" +version = "2.4.1" description = "\"Invenio module for information retrieval.\"" optional = false python-versions = ">=3.7" files = [ - {file = "invenio-search-2.3.1.tar.gz", hash = "sha256:ecbb420d4804b3a4fca8bcc9f8b5941067b06204b5a3c62ec997270f3c0e6ba6"}, - {file = "invenio_search-2.3.1-py2.py3-none-any.whl", hash = "sha256:1f9789993bcb5339688e88ec60993802e33c6e94954cb0702d0a43c7c6f94e6b"}, + {file = "invenio-search-2.4.1.tar.gz", hash = "sha256:569df7a0db6b84951acecbd60b5871c9f06aaf61421bf493f9ce646f685eb0a6"}, + {file = "invenio_search-2.4.1-py2.py3-none-any.whl", hash = "sha256:ced2c342a69b8a27262728b00c51d014eaf32a1330499decac192fa810141d21"}, ] [package.dependencies] @@ -2257,13 +2297,13 @@ tests = ["Sphinx (>=3)", "invenio-accounts (>=2.0.0,<3.0.0)", "invenio-db[versio [[package]] name = "invenio-theme" -version = "3.2.0" +version = "3.4.1" description = "\"Invenio standard theme.\"" optional = false python-versions = ">=3.7" files = [ - {file = "invenio-theme-3.2.0.tar.gz", hash = "sha256:111af436bbe0715a7dc3c9cb36b5dad6ac345edcc1bc65dd19b7679b189c998b"}, - {file = "invenio_theme-3.2.0-py2.py3-none-any.whl", hash = "sha256:1b7c6de8822a53418a700f82a9ea6f271b503c05b2484be74353caa3e1916249"}, + {file = "invenio-theme-3.4.1.tar.gz", hash = "sha256:78a6e7cde55dd7110faffde2af39549d468873b46d430babdd8b83e9e14bf665"}, + {file = "invenio_theme-3.4.1-py2.py3-none-any.whl", hash = "sha256:ba71494f5458296d58c7a0694eca1ed8530847859da4eb2b67ff0d70a79a0353"}, ] [package.dependencies] @@ -2495,29 +2535,30 @@ referencing = ">=0.31.0" [[package]] name = "kombu" -version = "5.3.7" +version = "5.4.2" description = "Messaging library for Python." optional = false python-versions = ">=3.8" files = [ - {file = "kombu-5.3.7-py3-none-any.whl", hash = "sha256:5634c511926309c7f9789f1433e9ed402616b56836ef9878f01bd59267b4c7a9"}, - {file = "kombu-5.3.7.tar.gz", hash = "sha256:011c4cd9a355c14a1de8d35d257314a1d2456d52b7140388561acac3cf1a97bf"}, + {file = "kombu-5.4.2-py3-none-any.whl", hash = "sha256:14212f5ccf022fc0a70453bb025a1dcc32782a588c49ea866884047d66e14763"}, + {file = "kombu-5.4.2.tar.gz", hash = "sha256:eef572dd2fd9fc614b37580e3caeafdd5af46c1eff31e7fba89138cdb406f2cf"}, ] [package.dependencies] amqp = ">=5.1.1,<6.0.0" -typing-extensions = {version = "*", markers = "python_version < \"3.10\""} -vine = "*" +typing-extensions = {version = "4.12.2", markers = "python_version < \"3.10\""} +tzdata = {version = "*", markers = "python_version >= \"3.9\""} +vine = "5.1.0" [package.extras] azureservicebus = ["azure-servicebus (>=7.10.0)"] azurestoragequeues = ["azure-identity (>=1.12.0)", "azure-storage-queue (>=12.6.0)"] confluentkafka = ["confluent-kafka (>=2.2.0)"] -consul = ["python-consul2"] +consul = ["python-consul2 (==0.1.5)"] librabbitmq = ["librabbitmq (>=2.0.0)"] mongodb = ["pymongo (>=4.1.1)"] -msgpack = ["msgpack"] -pyro = ["pyro4"] +msgpack = ["msgpack (==1.1.0)"] +pyro = ["pyro4 (==4.82)"] qpid = ["qpid-python (>=0.26)", "qpid-tools (>=0.26)"] redis = ["redis (>=4.5.2,!=4.5.5,!=5.0.2)"] slmq = ["softlayer-messaging (>=1.0.3)"] @@ -2557,149 +2598,149 @@ rediscluster = ["redis (>=4.2.0,!=4.5.2,!=4.5.3)"] [[package]] name = "lxml" -version = "5.2.2" +version = "5.3.0" description = "Powerful and Pythonic XML processing library combining libxml2/libxslt with the ElementTree API." optional = false python-versions = ">=3.6" files = [ - {file = "lxml-5.2.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:364d03207f3e603922d0d3932ef363d55bbf48e3647395765f9bfcbdf6d23632"}, - {file = "lxml-5.2.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:50127c186f191b8917ea2fb8b206fbebe87fd414a6084d15568c27d0a21d60db"}, - {file = "lxml-5.2.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:74e4f025ef3db1c6da4460dd27c118d8cd136d0391da4e387a15e48e5c975147"}, - {file = "lxml-5.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:981a06a3076997adf7c743dcd0d7a0415582661e2517c7d961493572e909aa1d"}, - {file = "lxml-5.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aef5474d913d3b05e613906ba4090433c515e13ea49c837aca18bde190853dff"}, - {file = "lxml-5.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1e275ea572389e41e8b039ac076a46cb87ee6b8542df3fff26f5baab43713bca"}, - {file = "lxml-5.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5b65529bb2f21ac7861a0e94fdbf5dc0daab41497d18223b46ee8515e5ad297"}, - {file = "lxml-5.2.2-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:bcc98f911f10278d1daf14b87d65325851a1d29153caaf146877ec37031d5f36"}, - {file = "lxml-5.2.2-cp310-cp310-manylinux_2_28_ppc64le.whl", hash = "sha256:b47633251727c8fe279f34025844b3b3a3e40cd1b198356d003aa146258d13a2"}, - {file = "lxml-5.2.2-cp310-cp310-manylinux_2_28_s390x.whl", hash = "sha256:fbc9d316552f9ef7bba39f4edfad4a734d3d6f93341232a9dddadec4f15d425f"}, - {file = "lxml-5.2.2-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:13e69be35391ce72712184f69000cda04fc89689429179bc4c0ae5f0b7a8c21b"}, - {file = "lxml-5.2.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:3b6a30a9ab040b3f545b697cb3adbf3696c05a3a68aad172e3fd7ca73ab3c835"}, - {file = "lxml-5.2.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:a233bb68625a85126ac9f1fc66d24337d6e8a0f9207b688eec2e7c880f012ec0"}, - {file = "lxml-5.2.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:dfa7c241073d8f2b8e8dbc7803c434f57dbb83ae2a3d7892dd068d99e96efe2c"}, - {file = "lxml-5.2.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:1a7aca7964ac4bb07680d5c9d63b9d7028cace3e2d43175cb50bba8c5ad33316"}, - {file = "lxml-5.2.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ae4073a60ab98529ab8a72ebf429f2a8cc612619a8c04e08bed27450d52103c0"}, - {file = "lxml-5.2.2-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:ffb2be176fed4457e445fe540617f0252a72a8bc56208fd65a690fdb1f57660b"}, - {file = "lxml-5.2.2-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:e290d79a4107d7d794634ce3e985b9ae4f920380a813717adf61804904dc4393"}, - {file = "lxml-5.2.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:96e85aa09274955bb6bd483eaf5b12abadade01010478154b0ec70284c1b1526"}, - {file = "lxml-5.2.2-cp310-cp310-win32.whl", hash = "sha256:f956196ef61369f1685d14dad80611488d8dc1ef00be57c0c5a03064005b0f30"}, - {file = "lxml-5.2.2-cp310-cp310-win_amd64.whl", hash = "sha256:875a3f90d7eb5c5d77e529080d95140eacb3c6d13ad5b616ee8095447b1d22e7"}, - {file = "lxml-5.2.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:45f9494613160d0405682f9eee781c7e6d1bf45f819654eb249f8f46a2c22545"}, - {file = "lxml-5.2.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b0b3f2df149efb242cee2ffdeb6674b7f30d23c9a7af26595099afaf46ef4e88"}, - {file = "lxml-5.2.2-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d28cb356f119a437cc58a13f8135ab8a4c8ece18159eb9194b0d269ec4e28083"}, - {file = "lxml-5.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:657a972f46bbefdbba2d4f14413c0d079f9ae243bd68193cb5061b9732fa54c1"}, - {file = "lxml-5.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b74b9ea10063efb77a965a8d5f4182806fbf59ed068b3c3fd6f30d2ac7bee734"}, - {file = "lxml-5.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:07542787f86112d46d07d4f3c4e7c760282011b354d012dc4141cc12a68cef5f"}, - {file = "lxml-5.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:303f540ad2dddd35b92415b74b900c749ec2010e703ab3bfd6660979d01fd4ed"}, - {file = "lxml-5.2.2-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:2eb2227ce1ff998faf0cd7fe85bbf086aa41dfc5af3b1d80867ecfe75fb68df3"}, - {file = "lxml-5.2.2-cp311-cp311-manylinux_2_28_ppc64le.whl", hash = "sha256:1d8a701774dfc42a2f0b8ccdfe7dbc140500d1049e0632a611985d943fcf12df"}, - {file = "lxml-5.2.2-cp311-cp311-manylinux_2_28_s390x.whl", hash = "sha256:56793b7a1a091a7c286b5f4aa1fe4ae5d1446fe742d00cdf2ffb1077865db10d"}, - {file = "lxml-5.2.2-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:eb00b549b13bd6d884c863554566095bf6fa9c3cecb2e7b399c4bc7904cb33b5"}, - {file = "lxml-5.2.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:1a2569a1f15ae6c8c64108a2cd2b4a858fc1e13d25846be0666fc144715e32ab"}, - {file = "lxml-5.2.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:8cf85a6e40ff1f37fe0f25719aadf443686b1ac7652593dc53c7ef9b8492b115"}, - {file = "lxml-5.2.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:d237ba6664b8e60fd90b8549a149a74fcc675272e0e95539a00522e4ca688b04"}, - {file = "lxml-5.2.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0b3f5016e00ae7630a4b83d0868fca1e3d494c78a75b1c7252606a3a1c5fc2ad"}, - {file = "lxml-5.2.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:23441e2b5339bc54dc949e9e675fa35efe858108404ef9aa92f0456929ef6fe8"}, - {file = "lxml-5.2.2-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:2fb0ba3e8566548d6c8e7dd82a8229ff47bd8fb8c2da237607ac8e5a1b8312e5"}, - {file = "lxml-5.2.2-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:79d1fb9252e7e2cfe4de6e9a6610c7cbb99b9708e2c3e29057f487de5a9eaefa"}, - {file = "lxml-5.2.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:6dcc3d17eac1df7859ae01202e9bb11ffa8c98949dcbeb1069c8b9a75917e01b"}, - {file = "lxml-5.2.2-cp311-cp311-win32.whl", hash = "sha256:4c30a2f83677876465f44c018830f608fa3c6a8a466eb223535035fbc16f3438"}, - {file = "lxml-5.2.2-cp311-cp311-win_amd64.whl", hash = "sha256:49095a38eb333aaf44c06052fd2ec3b8f23e19747ca7ec6f6c954ffea6dbf7be"}, - {file = "lxml-5.2.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:7429e7faa1a60cad26ae4227f4dd0459efde239e494c7312624ce228e04f6391"}, - {file = "lxml-5.2.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:50ccb5d355961c0f12f6cf24b7187dbabd5433f29e15147a67995474f27d1776"}, - {file = "lxml-5.2.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dc911208b18842a3a57266d8e51fc3cfaccee90a5351b92079beed912a7914c2"}, - {file = "lxml-5.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:33ce9e786753743159799fdf8e92a5da351158c4bfb6f2db0bf31e7892a1feb5"}, - {file = "lxml-5.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ec87c44f619380878bd49ca109669c9f221d9ae6883a5bcb3616785fa8f94c97"}, - {file = "lxml-5.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:08ea0f606808354eb8f2dfaac095963cb25d9d28e27edcc375d7b30ab01abbf6"}, - {file = "lxml-5.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75a9632f1d4f698b2e6e2e1ada40e71f369b15d69baddb8968dcc8e683839b18"}, - {file = "lxml-5.2.2-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:74da9f97daec6928567b48c90ea2c82a106b2d500f397eeb8941e47d30b1ca85"}, - {file = "lxml-5.2.2-cp312-cp312-manylinux_2_28_ppc64le.whl", hash = "sha256:0969e92af09c5687d769731e3f39ed62427cc72176cebb54b7a9d52cc4fa3b73"}, - {file = "lxml-5.2.2-cp312-cp312-manylinux_2_28_s390x.whl", hash = "sha256:9164361769b6ca7769079f4d426a41df6164879f7f3568be9086e15baca61466"}, - {file = "lxml-5.2.2-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:d26a618ae1766279f2660aca0081b2220aca6bd1aa06b2cf73f07383faf48927"}, - {file = "lxml-5.2.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:ab67ed772c584b7ef2379797bf14b82df9aa5f7438c5b9a09624dd834c1c1aaf"}, - {file = "lxml-5.2.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:3d1e35572a56941b32c239774d7e9ad724074d37f90c7a7d499ab98761bd80cf"}, - {file = "lxml-5.2.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:8268cbcd48c5375f46e000adb1390572c98879eb4f77910c6053d25cc3ac2c67"}, - {file = "lxml-5.2.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:e282aedd63c639c07c3857097fc0e236f984ceb4089a8b284da1c526491e3f3d"}, - {file = "lxml-5.2.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6dfdc2bfe69e9adf0df4915949c22a25b39d175d599bf98e7ddf620a13678585"}, - {file = "lxml-5.2.2-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:4aefd911793b5d2d7a921233a54c90329bf3d4a6817dc465f12ffdfe4fc7b8fe"}, - {file = "lxml-5.2.2-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:8b8df03a9e995b6211dafa63b32f9d405881518ff1ddd775db4e7b98fb545e1c"}, - {file = "lxml-5.2.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:f11ae142f3a322d44513de1018b50f474f8f736bc3cd91d969f464b5bfef8836"}, - {file = "lxml-5.2.2-cp312-cp312-win32.whl", hash = "sha256:16a8326e51fcdffc886294c1e70b11ddccec836516a343f9ed0f82aac043c24a"}, - {file = "lxml-5.2.2-cp312-cp312-win_amd64.whl", hash = "sha256:bbc4b80af581e18568ff07f6395c02114d05f4865c2812a1f02f2eaecf0bfd48"}, - {file = "lxml-5.2.2-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:e3d9d13603410b72787579769469af730c38f2f25505573a5888a94b62b920f8"}, - {file = "lxml-5.2.2-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:38b67afb0a06b8575948641c1d6d68e41b83a3abeae2ca9eed2ac59892b36706"}, - {file = "lxml-5.2.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c689d0d5381f56de7bd6966a4541bff6e08bf8d3871bbd89a0c6ab18aa699573"}, - {file = "lxml-5.2.2-cp36-cp36m-manylinux_2_28_x86_64.whl", hash = "sha256:cf2a978c795b54c539f47964ec05e35c05bd045db5ca1e8366988c7f2fe6b3ce"}, - {file = "lxml-5.2.2-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:739e36ef7412b2bd940f75b278749106e6d025e40027c0b94a17ef7968d55d56"}, - {file = "lxml-5.2.2-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:d8bbcd21769594dbba9c37d3c819e2d5847656ca99c747ddb31ac1701d0c0ed9"}, - {file = "lxml-5.2.2-cp36-cp36m-musllinux_1_2_x86_64.whl", hash = "sha256:2304d3c93f2258ccf2cf7a6ba8c761d76ef84948d87bf9664e14d203da2cd264"}, - {file = "lxml-5.2.2-cp36-cp36m-win32.whl", hash = "sha256:02437fb7308386867c8b7b0e5bc4cd4b04548b1c5d089ffb8e7b31009b961dc3"}, - {file = "lxml-5.2.2-cp36-cp36m-win_amd64.whl", hash = "sha256:edcfa83e03370032a489430215c1e7783128808fd3e2e0a3225deee278585196"}, - {file = "lxml-5.2.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:28bf95177400066596cdbcfc933312493799382879da504633d16cf60bba735b"}, - {file = "lxml-5.2.2-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3a745cc98d504d5bd2c19b10c79c61c7c3df9222629f1b6210c0368177589fb8"}, - {file = "lxml-5.2.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b336b0416828022bfd5a2e3083e7f5ba54b96242159f83c7e3eebaec752f1716"}, - {file = "lxml-5.2.2-cp37-cp37m-manylinux_2_28_x86_64.whl", hash = "sha256:4bc6cb140a7a0ad1f7bc37e018d0ed690b7b6520ade518285dc3171f7a117905"}, - {file = "lxml-5.2.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:57f0a0bbc9868e10ebe874e9f129d2917750adf008fe7b9c1598c0fbbfdde6a6"}, - {file = "lxml-5.2.2-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:60499fe961b21264e17a471ec296dcbf4365fbea611bf9e303ab69db7159ce61"}, - {file = "lxml-5.2.2-cp37-cp37m-win32.whl", hash = "sha256:d9b342c76003c6b9336a80efcc766748a333573abf9350f4094ee46b006ec18f"}, - {file = "lxml-5.2.2-cp37-cp37m-win_amd64.whl", hash = "sha256:b16db2770517b8799c79aa80f4053cd6f8b716f21f8aca962725a9565ce3ee40"}, - {file = "lxml-5.2.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:7ed07b3062b055d7a7f9d6557a251cc655eed0b3152b76de619516621c56f5d3"}, - {file = "lxml-5.2.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f60fdd125d85bf9c279ffb8e94c78c51b3b6a37711464e1f5f31078b45002421"}, - {file = "lxml-5.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8a7e24cb69ee5f32e003f50e016d5fde438010c1022c96738b04fc2423e61706"}, - {file = "lxml-5.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:23cfafd56887eaed93d07bc4547abd5e09d837a002b791e9767765492a75883f"}, - {file = "lxml-5.2.2-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:19b4e485cd07b7d83e3fe3b72132e7df70bfac22b14fe4bf7a23822c3a35bff5"}, - {file = "lxml-5.2.2-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:7ce7ad8abebe737ad6143d9d3bf94b88b93365ea30a5b81f6877ec9c0dee0a48"}, - {file = "lxml-5.2.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:e49b052b768bb74f58c7dda4e0bdf7b79d43a9204ca584ffe1fb48a6f3c84c66"}, - {file = "lxml-5.2.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d14a0d029a4e176795cef99c056d58067c06195e0c7e2dbb293bf95c08f772a3"}, - {file = "lxml-5.2.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:be49ad33819d7dcc28a309b86d4ed98e1a65f3075c6acd3cd4fe32103235222b"}, - {file = "lxml-5.2.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:a6d17e0370d2516d5bb9062c7b4cb731cff921fc875644c3d751ad857ba9c5b1"}, - {file = "lxml-5.2.2-cp38-cp38-win32.whl", hash = "sha256:5b8c041b6265e08eac8a724b74b655404070b636a8dd6d7a13c3adc07882ef30"}, - {file = "lxml-5.2.2-cp38-cp38-win_amd64.whl", hash = "sha256:f61efaf4bed1cc0860e567d2ecb2363974d414f7f1f124b1df368bbf183453a6"}, - {file = "lxml-5.2.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:fb91819461b1b56d06fa4bcf86617fac795f6a99d12239fb0c68dbeba41a0a30"}, - {file = "lxml-5.2.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:d4ed0c7cbecde7194cd3228c044e86bf73e30a23505af852857c09c24e77ec5d"}, - {file = "lxml-5.2.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:54401c77a63cc7d6dc4b4e173bb484f28a5607f3df71484709fe037c92d4f0ed"}, - {file = "lxml-5.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:625e3ef310e7fa3a761d48ca7ea1f9d8718a32b1542e727d584d82f4453d5eeb"}, - {file = "lxml-5.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:519895c99c815a1a24a926d5b60627ce5ea48e9f639a5cd328bda0515ea0f10c"}, - {file = "lxml-5.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c7079d5eb1c1315a858bbf180000757db8ad904a89476653232db835c3114001"}, - {file = "lxml-5.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:343ab62e9ca78094f2306aefed67dcfad61c4683f87eee48ff2fd74902447726"}, - {file = "lxml-5.2.2-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:cd9e78285da6c9ba2d5c769628f43ef66d96ac3085e59b10ad4f3707980710d3"}, - {file = "lxml-5.2.2-cp39-cp39-manylinux_2_28_ppc64le.whl", hash = "sha256:546cf886f6242dff9ec206331209db9c8e1643ae642dea5fdbecae2453cb50fd"}, - {file = "lxml-5.2.2-cp39-cp39-manylinux_2_28_s390x.whl", hash = "sha256:02f6a8eb6512fdc2fd4ca10a49c341c4e109aa6e9448cc4859af5b949622715a"}, - {file = "lxml-5.2.2-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:339ee4a4704bc724757cd5dd9dc8cf4d00980f5d3e6e06d5847c1b594ace68ab"}, - {file = "lxml-5.2.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0a028b61a2e357ace98b1615fc03f76eb517cc028993964fe08ad514b1e8892d"}, - {file = "lxml-5.2.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:f90e552ecbad426eab352e7b2933091f2be77115bb16f09f78404861c8322981"}, - {file = "lxml-5.2.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:d83e2d94b69bf31ead2fa45f0acdef0757fa0458a129734f59f67f3d2eb7ef32"}, - {file = "lxml-5.2.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a02d3c48f9bb1e10c7788d92c0c7db6f2002d024ab6e74d6f45ae33e3d0288a3"}, - {file = "lxml-5.2.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:6d68ce8e7b2075390e8ac1e1d3a99e8b6372c694bbe612632606d1d546794207"}, - {file = "lxml-5.2.2-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:453d037e09a5176d92ec0fd282e934ed26d806331a8b70ab431a81e2fbabf56d"}, - {file = "lxml-5.2.2-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:3b019d4ee84b683342af793b56bb35034bd749e4cbdd3d33f7d1107790f8c472"}, - {file = "lxml-5.2.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:cb3942960f0beb9f46e2a71a3aca220d1ca32feb5a398656be934320804c0df9"}, - {file = "lxml-5.2.2-cp39-cp39-win32.whl", hash = "sha256:ac6540c9fff6e3813d29d0403ee7a81897f1d8ecc09a8ff84d2eea70ede1cdbf"}, - {file = "lxml-5.2.2-cp39-cp39-win_amd64.whl", hash = "sha256:610b5c77428a50269f38a534057444c249976433f40f53e3b47e68349cca1425"}, - {file = "lxml-5.2.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:b537bd04d7ccd7c6350cdaaaad911f6312cbd61e6e6045542f781c7f8b2e99d2"}, - {file = "lxml-5.2.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4820c02195d6dfb7b8508ff276752f6b2ff8b64ae5d13ebe02e7667e035000b9"}, - {file = "lxml-5.2.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f2a09f6184f17a80897172863a655467da2b11151ec98ba8d7af89f17bf63dae"}, - {file = "lxml-5.2.2-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:76acba4c66c47d27c8365e7c10b3d8016a7da83d3191d053a58382311a8bf4e1"}, - {file = "lxml-5.2.2-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:b128092c927eaf485928cec0c28f6b8bead277e28acf56800e972aa2c2abd7a2"}, - {file = "lxml-5.2.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:ae791f6bd43305aade8c0e22f816b34f3b72b6c820477aab4d18473a37e8090b"}, - {file = "lxml-5.2.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:a2f6a1bc2460e643785a2cde17293bd7a8f990884b822f7bca47bee0a82fc66b"}, - {file = "lxml-5.2.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e8d351ff44c1638cb6e980623d517abd9f580d2e53bfcd18d8941c052a5a009"}, - {file = "lxml-5.2.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bec4bd9133420c5c52d562469c754f27c5c9e36ee06abc169612c959bd7dbb07"}, - {file = "lxml-5.2.2-pp37-pypy37_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:55ce6b6d803890bd3cc89975fca9de1dff39729b43b73cb15ddd933b8bc20484"}, - {file = "lxml-5.2.2-pp37-pypy37_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:8ab6a358d1286498d80fe67bd3d69fcbc7d1359b45b41e74c4a26964ca99c3f8"}, - {file = "lxml-5.2.2-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:06668e39e1f3c065349c51ac27ae430719d7806c026fec462e5693b08b95696b"}, - {file = "lxml-5.2.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:9cd5323344d8ebb9fb5e96da5de5ad4ebab993bbf51674259dbe9d7a18049525"}, - {file = "lxml-5.2.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:89feb82ca055af0fe797a2323ec9043b26bc371365847dbe83c7fd2e2f181c34"}, - {file = "lxml-5.2.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e481bba1e11ba585fb06db666bfc23dbe181dbafc7b25776156120bf12e0d5a6"}, - {file = "lxml-5.2.2-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:9d6c6ea6a11ca0ff9cd0390b885984ed31157c168565702959c25e2191674a14"}, - {file = "lxml-5.2.2-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:3d98de734abee23e61f6b8c2e08a88453ada7d6486dc7cdc82922a03968928db"}, - {file = "lxml-5.2.2-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:69ab77a1373f1e7563e0fb5a29a8440367dec051da6c7405333699d07444f511"}, - {file = "lxml-5.2.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:34e17913c431f5ae01d8658dbf792fdc457073dcdfbb31dc0cc6ab256e664a8d"}, - {file = "lxml-5.2.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:05f8757b03208c3f50097761be2dea0aba02e94f0dc7023ed73a7bb14ff11eb0"}, - {file = "lxml-5.2.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6a520b4f9974b0a0a6ed73c2154de57cdfd0c8800f4f15ab2b73238ffed0b36e"}, - {file = "lxml-5.2.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:5e097646944b66207023bc3c634827de858aebc226d5d4d6d16f0b77566ea182"}, - {file = "lxml-5.2.2-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:b5e4ef22ff25bfd4ede5f8fb30f7b24446345f3e79d9b7455aef2836437bc38a"}, - {file = "lxml-5.2.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:ff69a9a0b4b17d78170c73abe2ab12084bdf1691550c5629ad1fe7849433f324"}, - {file = "lxml-5.2.2.tar.gz", hash = "sha256:bb2dc4898180bea79863d5487e5f9c7c34297414bad54bcd0f0852aee9cfdb87"}, + {file = "lxml-5.3.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:dd36439be765e2dde7660212b5275641edbc813e7b24668831a5c8ac91180656"}, + {file = "lxml-5.3.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ae5fe5c4b525aa82b8076c1a59d642c17b6e8739ecf852522c6321852178119d"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:501d0d7e26b4d261fca8132854d845e4988097611ba2531408ec91cf3fd9d20a"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb66442c2546446944437df74379e9cf9e9db353e61301d1a0e26482f43f0dd8"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9e41506fec7a7f9405b14aa2d5c8abbb4dbbd09d88f9496958b6d00cb4d45330"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f7d4a670107d75dfe5ad080bed6c341d18c4442f9378c9f58e5851e86eb79965"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:41ce1f1e2c7755abfc7e759dc34d7d05fd221723ff822947132dc934d122fe22"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:44264ecae91b30e5633013fb66f6ddd05c006d3e0e884f75ce0b4755b3e3847b"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_28_ppc64le.whl", hash = "sha256:3c174dc350d3ec52deb77f2faf05c439331d6ed5e702fc247ccb4e6b62d884b7"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_28_s390x.whl", hash = "sha256:2dfab5fa6a28a0b60a20638dc48e6343c02ea9933e3279ccb132f555a62323d8"}, + {file = "lxml-5.3.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:b1c8c20847b9f34e98080da785bb2336ea982e7f913eed5809e5a3c872900f32"}, + {file = "lxml-5.3.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:2c86bf781b12ba417f64f3422cfc302523ac9cd1d8ae8c0f92a1c66e56ef2e86"}, + {file = "lxml-5.3.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:c162b216070f280fa7da844531169be0baf9ccb17263cf5a8bf876fcd3117fa5"}, + {file = "lxml-5.3.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:36aef61a1678cb778097b4a6eeae96a69875d51d1e8f4d4b491ab3cfb54b5a03"}, + {file = "lxml-5.3.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f65e5120863c2b266dbcc927b306c5b78e502c71edf3295dfcb9501ec96e5fc7"}, + {file = "lxml-5.3.0-cp310-cp310-win32.whl", hash = "sha256:ef0c1fe22171dd7c7c27147f2e9c3e86f8bdf473fed75f16b0c2e84a5030ce80"}, + {file = "lxml-5.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:052d99051e77a4f3e8482c65014cf6372e61b0a6f4fe9edb98503bb5364cfee3"}, + {file = "lxml-5.3.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:74bcb423462233bc5d6066e4e98b0264e7c1bed7541fff2f4e34fe6b21563c8b"}, + {file = "lxml-5.3.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a3d819eb6f9b8677f57f9664265d0a10dd6551d227afb4af2b9cd7bdc2ccbf18"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5b8f5db71b28b8c404956ddf79575ea77aa8b1538e8b2ef9ec877945b3f46442"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2c3406b63232fc7e9b8783ab0b765d7c59e7c59ff96759d8ef9632fca27c7ee4"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2ecdd78ab768f844c7a1d4a03595038c166b609f6395e25af9b0f3f26ae1230f"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:168f2dfcfdedf611eb285efac1516c8454c8c99caf271dccda8943576b67552e"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aa617107a410245b8660028a7483b68e7914304a6d4882b5ff3d2d3eb5948d8c"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:69959bd3167b993e6e710b99051265654133a98f20cec1d9b493b931942e9c16"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_28_ppc64le.whl", hash = "sha256:bd96517ef76c8654446fc3db9242d019a1bb5fe8b751ba414765d59f99210b79"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_28_s390x.whl", hash = "sha256:ab6dd83b970dc97c2d10bc71aa925b84788c7c05de30241b9e96f9b6d9ea3080"}, + {file = "lxml-5.3.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:eec1bb8cdbba2925bedc887bc0609a80e599c75b12d87ae42ac23fd199445654"}, + {file = "lxml-5.3.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:6a7095eeec6f89111d03dabfe5883a1fd54da319c94e0fb104ee8f23616b572d"}, + {file = "lxml-5.3.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:6f651ebd0b21ec65dfca93aa629610a0dbc13dbc13554f19b0113da2e61a4763"}, + {file = "lxml-5.3.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:f422a209d2455c56849442ae42f25dbaaba1c6c3f501d58761c619c7836642ec"}, + {file = "lxml-5.3.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:62f7fdb0d1ed2065451f086519865b4c90aa19aed51081979ecd05a21eb4d1be"}, + {file = "lxml-5.3.0-cp311-cp311-win32.whl", hash = "sha256:c6379f35350b655fd817cd0d6cbeef7f265f3ae5fedb1caae2eb442bbeae9ab9"}, + {file = "lxml-5.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:9c52100e2c2dbb0649b90467935c4b0de5528833c76a35ea1a2691ec9f1ee7a1"}, + {file = "lxml-5.3.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:e99f5507401436fdcc85036a2e7dc2e28d962550afe1cbfc07c40e454256a859"}, + {file = "lxml-5.3.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:384aacddf2e5813a36495233b64cb96b1949da72bef933918ba5c84e06af8f0e"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:874a216bf6afaf97c263b56371434e47e2c652d215788396f60477540298218f"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:65ab5685d56914b9a2a34d67dd5488b83213d680b0c5d10b47f81da5a16b0b0e"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aac0bbd3e8dd2d9c45ceb82249e8bdd3ac99131a32b4d35c8af3cc9db1657179"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b369d3db3c22ed14c75ccd5af429086f166a19627e84a8fdade3f8f31426e52a"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c24037349665434f375645fa9d1f5304800cec574d0310f618490c871fd902b3"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:62d172f358f33a26d6b41b28c170c63886742f5b6772a42b59b4f0fa10526cb1"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_28_ppc64le.whl", hash = "sha256:c1f794c02903c2824fccce5b20c339a1a14b114e83b306ff11b597c5f71a1c8d"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_28_s390x.whl", hash = "sha256:5d6a6972b93c426ace71e0be9a6f4b2cfae9b1baed2eed2006076a746692288c"}, + {file = "lxml-5.3.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:3879cc6ce938ff4eb4900d901ed63555c778731a96365e53fadb36437a131a99"}, + {file = "lxml-5.3.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:74068c601baff6ff021c70f0935b0c7bc528baa8ea210c202e03757c68c5a4ff"}, + {file = "lxml-5.3.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:ecd4ad8453ac17bc7ba3868371bffb46f628161ad0eefbd0a855d2c8c32dd81a"}, + {file = "lxml-5.3.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:7e2f58095acc211eb9d8b5771bf04df9ff37d6b87618d1cbf85f92399c98dae8"}, + {file = "lxml-5.3.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e63601ad5cd8f860aa99d109889b5ac34de571c7ee902d6812d5d9ddcc77fa7d"}, + {file = "lxml-5.3.0-cp312-cp312-win32.whl", hash = "sha256:17e8d968d04a37c50ad9c456a286b525d78c4a1c15dd53aa46c1d8e06bf6fa30"}, + {file = "lxml-5.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:c1a69e58a6bb2de65902051d57fde951febad631a20a64572677a1052690482f"}, + {file = "lxml-5.3.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:8c72e9563347c7395910de6a3100a4840a75a6f60e05af5e58566868d5eb2d6a"}, + {file = "lxml-5.3.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e92ce66cd919d18d14b3856906a61d3f6b6a8500e0794142338da644260595cd"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d04f064bebdfef9240478f7a779e8c5dc32b8b7b0b2fc6a62e39b928d428e51"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c2fb570d7823c2bbaf8b419ba6e5662137f8166e364a8b2b91051a1fb40ab8b"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0c120f43553ec759f8de1fee2f4794452b0946773299d44c36bfe18e83caf002"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:562e7494778a69086f0312ec9689f6b6ac1c6b65670ed7d0267e49f57ffa08c4"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:423b121f7e6fa514ba0c7918e56955a1d4470ed35faa03e3d9f0e3baa4c7e492"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:c00f323cc00576df6165cc9d21a4c21285fa6b9989c5c39830c3903dc4303ef3"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_28_ppc64le.whl", hash = "sha256:1fdc9fae8dd4c763e8a31e7630afef517eab9f5d5d31a278df087f307bf601f4"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_28_s390x.whl", hash = "sha256:658f2aa69d31e09699705949b5fc4719cbecbd4a97f9656a232e7d6c7be1a367"}, + {file = "lxml-5.3.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:1473427aff3d66a3fa2199004c3e601e6c4500ab86696edffdbc84954c72d832"}, + {file = "lxml-5.3.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a87de7dd873bf9a792bf1e58b1c3887b9264036629a5bf2d2e6579fe8e73edff"}, + {file = "lxml-5.3.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:0d7b36afa46c97875303a94e8f3ad932bf78bace9e18e603f2085b652422edcd"}, + {file = "lxml-5.3.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:cf120cce539453ae086eacc0130a324e7026113510efa83ab42ef3fcfccac7fb"}, + {file = "lxml-5.3.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:df5c7333167b9674aa8ae1d4008fa4bc17a313cc490b2cca27838bbdcc6bb15b"}, + {file = "lxml-5.3.0-cp313-cp313-win32.whl", hash = "sha256:c802e1c2ed9f0c06a65bc4ed0189d000ada8049312cfeab6ca635e39c9608957"}, + {file = "lxml-5.3.0-cp313-cp313-win_amd64.whl", hash = "sha256:406246b96d552e0503e17a1006fd27edac678b3fcc9f1be71a2f94b4ff61528d"}, + {file = "lxml-5.3.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:8f0de2d390af441fe8b2c12626d103540b5d850d585b18fcada58d972b74a74e"}, + {file = "lxml-5.3.0-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1afe0a8c353746e610bd9031a630a95bcfb1a720684c3f2b36c4710a0a96528f"}, + {file = "lxml-5.3.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:56b9861a71575f5795bde89256e7467ece3d339c9b43141dbdd54544566b3b94"}, + {file = "lxml-5.3.0-cp36-cp36m-manylinux_2_28_x86_64.whl", hash = "sha256:9fb81d2824dff4f2e297a276297e9031f46d2682cafc484f49de182aa5e5df99"}, + {file = "lxml-5.3.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:2c226a06ecb8cdef28845ae976da407917542c5e6e75dcac7cc33eb04aaeb237"}, + {file = "lxml-5.3.0-cp36-cp36m-musllinux_1_2_x86_64.whl", hash = "sha256:7d3d1ca42870cdb6d0d29939630dbe48fa511c203724820fc0fd507b2fb46577"}, + {file = "lxml-5.3.0-cp36-cp36m-win32.whl", hash = "sha256:094cb601ba9f55296774c2d57ad68730daa0b13dc260e1f941b4d13678239e70"}, + {file = "lxml-5.3.0-cp36-cp36m-win_amd64.whl", hash = "sha256:eafa2c8658f4e560b098fe9fc54539f86528651f61849b22111a9b107d18910c"}, + {file = "lxml-5.3.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:cb83f8a875b3d9b458cada4f880fa498646874ba4011dc974e071a0a84a1b033"}, + {file = "lxml-5.3.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:25f1b69d41656b05885aa185f5fdf822cb01a586d1b32739633679699f220391"}, + {file = "lxml-5.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:23e0553b8055600b3bf4a00b255ec5c92e1e4aebf8c2c09334f8368e8bd174d6"}, + {file = "lxml-5.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ada35dd21dc6c039259596b358caab6b13f4db4d4a7f8665764d616daf9cc1d"}, + {file = "lxml-5.3.0-cp37-cp37m-manylinux_2_28_aarch64.whl", hash = "sha256:81b4e48da4c69313192d8c8d4311e5d818b8be1afe68ee20f6385d0e96fc9512"}, + {file = "lxml-5.3.0-cp37-cp37m-manylinux_2_28_x86_64.whl", hash = "sha256:2bc9fd5ca4729af796f9f59cd8ff160fe06a474da40aca03fcc79655ddee1a8b"}, + {file = "lxml-5.3.0-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:07da23d7ee08577760f0a71d67a861019103e4812c87e2fab26b039054594cc5"}, + {file = "lxml-5.3.0-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:ea2e2f6f801696ad7de8aec061044d6c8c0dd4037608c7cab38a9a4d316bfb11"}, + {file = "lxml-5.3.0-cp37-cp37m-win32.whl", hash = "sha256:5c54afdcbb0182d06836cc3d1be921e540be3ebdf8b8a51ee3ef987537455f84"}, + {file = "lxml-5.3.0-cp37-cp37m-win_amd64.whl", hash = "sha256:f2901429da1e645ce548bf9171784c0f74f0718c3f6150ce166be39e4dd66c3e"}, + {file = "lxml-5.3.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:c56a1d43b2f9ee4786e4658c7903f05da35b923fb53c11025712562d5cc02753"}, + {file = "lxml-5.3.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ee8c39582d2652dcd516d1b879451500f8db3fe3607ce45d7c5957ab2596040"}, + {file = "lxml-5.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0fdf3a3059611f7585a78ee10399a15566356116a4288380921a4b598d807a22"}, + {file = "lxml-5.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:146173654d79eb1fc97498b4280c1d3e1e5d58c398fa530905c9ea50ea849b22"}, + {file = "lxml-5.3.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:0a7056921edbdd7560746f4221dca89bb7a3fe457d3d74267995253f46343f15"}, + {file = "lxml-5.3.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:9e4b47ac0f5e749cfc618efdf4726269441014ae1d5583e047b452a32e221920"}, + {file = "lxml-5.3.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:f914c03e6a31deb632e2daa881fe198461f4d06e57ac3d0e05bbcab8eae01945"}, + {file = "lxml-5.3.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:213261f168c5e1d9b7535a67e68b1f59f92398dd17a56d934550837143f79c42"}, + {file = "lxml-5.3.0-cp38-cp38-win32.whl", hash = "sha256:218c1b2e17a710e363855594230f44060e2025b05c80d1f0661258142b2add2e"}, + {file = "lxml-5.3.0-cp38-cp38-win_amd64.whl", hash = "sha256:315f9542011b2c4e1d280e4a20ddcca1761993dda3afc7a73b01235f8641e903"}, + {file = "lxml-5.3.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:1ffc23010330c2ab67fac02781df60998ca8fe759e8efde6f8b756a20599c5de"}, + {file = "lxml-5.3.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:2b3778cb38212f52fac9fe913017deea2fdf4eb1a4f8e4cfc6b009a13a6d3fcc"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4b0c7a688944891086ba192e21c5229dea54382f4836a209ff8d0a660fac06be"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:747a3d3e98e24597981ca0be0fd922aebd471fa99d0043a3842d00cdcad7ad6a"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:86a6b24b19eaebc448dc56b87c4865527855145d851f9fc3891673ff97950540"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b11a5d918a6216e521c715b02749240fb07ae5a1fefd4b7bf12f833bc8b4fe70"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:68b87753c784d6acb8a25b05cb526c3406913c9d988d51f80adecc2b0775d6aa"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:109fa6fede314cc50eed29e6e56c540075e63d922455346f11e4d7a036d2b8cf"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_28_ppc64le.whl", hash = "sha256:02ced472497b8362c8e902ade23e3300479f4f43e45f4105c85ef43b8db85229"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_28_s390x.whl", hash = "sha256:6b038cc86b285e4f9fea2ba5ee76e89f21ed1ea898e287dc277a25884f3a7dfe"}, + {file = "lxml-5.3.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:7437237c6a66b7ca341e868cda48be24b8701862757426852c9b3186de1da8a2"}, + {file = "lxml-5.3.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7f41026c1d64043a36fda21d64c5026762d53a77043e73e94b71f0521939cc71"}, + {file = "lxml-5.3.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:482c2f67761868f0108b1743098640fbb2a28a8e15bf3f47ada9fa59d9fe08c3"}, + {file = "lxml-5.3.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:1483fd3358963cc5c1c9b122c80606a3a79ee0875bcac0204149fa09d6ff2727"}, + {file = "lxml-5.3.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2dec2d1130a9cda5b904696cec33b2cfb451304ba9081eeda7f90f724097300a"}, + {file = "lxml-5.3.0-cp39-cp39-win32.whl", hash = "sha256:a0eabd0a81625049c5df745209dc7fcef6e2aea7793e5f003ba363610aa0a3ff"}, + {file = "lxml-5.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:89e043f1d9d341c52bf2af6d02e6adde62e0a46e6755d5eb60dc6e4f0b8aeca2"}, + {file = "lxml-5.3.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:7b1cd427cb0d5f7393c31b7496419da594fe600e6fdc4b105a54f82405e6626c"}, + {file = "lxml-5.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:51806cfe0279e06ed8500ce19479d757db42a30fd509940b1701be9c86a5ff9a"}, + {file = "lxml-5.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee70d08fd60c9565ba8190f41a46a54096afa0eeb8f76bd66f2c25d3b1b83005"}, + {file = "lxml-5.3.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:8dc2c0395bea8254d8daebc76dcf8eb3a95ec2a46fa6fae5eaccee366bfe02ce"}, + {file = "lxml-5.3.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:6ba0d3dcac281aad8a0e5b14c7ed6f9fa89c8612b47939fc94f80b16e2e9bc83"}, + {file = "lxml-5.3.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:6e91cf736959057f7aac7adfc83481e03615a8e8dd5758aa1d95ea69e8931dba"}, + {file = "lxml-5.3.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:94d6c3782907b5e40e21cadf94b13b0842ac421192f26b84c45f13f3c9d5dc27"}, + {file = "lxml-5.3.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c300306673aa0f3ed5ed9372b21867690a17dba38c68c44b287437c362ce486b"}, + {file = "lxml-5.3.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:78d9b952e07aed35fe2e1a7ad26e929595412db48535921c5013edc8aa4a35ce"}, + {file = "lxml-5.3.0-pp37-pypy37_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:01220dca0d066d1349bd6a1726856a78f7929f3878f7e2ee83c296c69495309e"}, + {file = "lxml-5.3.0-pp37-pypy37_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:2d9b8d9177afaef80c53c0a9e30fa252ff3036fb1c6494d427c066a4ce6a282f"}, + {file = "lxml-5.3.0-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:20094fc3f21ea0a8669dc4c61ed7fa8263bd37d97d93b90f28fc613371e7a875"}, + {file = "lxml-5.3.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:ace2c2326a319a0bb8a8b0e5b570c764962e95818de9f259ce814ee666603f19"}, + {file = "lxml-5.3.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:92e67a0be1639c251d21e35fe74df6bcc40cba445c2cda7c4a967656733249e2"}, + {file = "lxml-5.3.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd5350b55f9fecddc51385463a4f67a5da829bc741e38cf689f38ec9023f54ab"}, + {file = "lxml-5.3.0-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:4c1fefd7e3d00921c44dc9ca80a775af49698bbfd92ea84498e56acffd4c5469"}, + {file = "lxml-5.3.0-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:71a8dd38fbd2f2319136d4ae855a7078c69c9a38ae06e0c17c73fd70fc6caad8"}, + {file = "lxml-5.3.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:97acf1e1fd66ab53dacd2c35b319d7e548380c2e9e8c54525c6e76d21b1ae3b1"}, + {file = "lxml-5.3.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:68934b242c51eb02907c5b81d138cb977b2129a0a75a8f8b60b01cb8586c7b21"}, + {file = "lxml-5.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b710bc2b8292966b23a6a0121f7a6c51d45d2347edcc75f016ac123b8054d3f2"}, + {file = "lxml-5.3.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:18feb4b93302091b1541221196a2155aa296c363fd233814fa11e181adebc52f"}, + {file = "lxml-5.3.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:3eb44520c4724c2e1a57c0af33a379eee41792595023f367ba3952a2d96c2aab"}, + {file = "lxml-5.3.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:609251a0ca4770e5a8768ff902aa02bf636339c5a93f9349b48eb1f606f7f3e9"}, + {file = "lxml-5.3.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:516f491c834eb320d6c843156440fe7fc0d50b33e44387fcec5b02f0bc118a4c"}, + {file = "lxml-5.3.0.tar.gz", hash = "sha256:4e109ca30d1edec1ac60cdbe341905dc3b8f55b16855e03a54aaf59e51ec8c6f"}, ] [package.extras] @@ -2707,7 +2748,7 @@ cssselect = ["cssselect (>=0.7)"] html-clean = ["lxml-html-clean"] html5 = ["html5lib"] htmlsoup = ["BeautifulSoup4"] -source = ["Cython (>=3.0.10)"] +source = ["Cython (>=3.0.11)"] [[package]] name = "mako" @@ -2799,13 +2840,13 @@ files = [ [[package]] name = "marshmallow" -version = "3.21.3" +version = "3.22.0" description = "A lightweight library for converting complex datatypes to and from native Python datatypes." optional = false python-versions = ">=3.8" files = [ - {file = "marshmallow-3.21.3-py3-none-any.whl", hash = "sha256:86ce7fb914aa865001a4b2092c4c2872d13bc347f3d42673272cabfdbad386f1"}, - {file = "marshmallow-3.21.3.tar.gz", hash = "sha256:4f57c5e050a54d66361e826f94fba213eb10b67b2fdb02c3e0343ce207ba1662"}, + {file = "marshmallow-3.22.0-py3-none-any.whl", hash = "sha256:71a2dce49ef901c3f97ed296ae5051135fd3febd2bf43afe0ae9a82143a494d9"}, + {file = "marshmallow-3.22.0.tar.gz", hash = "sha256:4972f529104a220bb8637d595aa4c9762afbe7f7a77d82dc58c1615d70c5823e"}, ] [package.dependencies] @@ -2813,7 +2854,7 @@ packaging = ">=17.0" [package.extras] dev = ["marshmallow[tests]", "pre-commit (>=3.5,<4.0)", "tox"] -docs = ["alabaster (==0.7.16)", "autodocsumm (==0.2.12)", "sphinx (==7.3.7)", "sphinx-issues (==4.1.0)", "sphinx-version-warning (==1.1.2)"] +docs = ["alabaster (==1.0.0)", "autodocsumm (==0.2.13)", "sphinx (==8.0.2)", "sphinx-issues (==4.1.0)", "sphinx-version-warning (==1.1.2)"] tests = ["pytest", "pytz", "simplejson"] [[package]] @@ -2939,67 +2980,75 @@ test = ["pytest", "pytest-cov"] [[package]] name = "msgpack" -version = "1.0.8" +version = "1.1.0" description = "MessagePack serializer" optional = false python-versions = ">=3.8" files = [ - {file = "msgpack-1.0.8-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:505fe3d03856ac7d215dbe005414bc28505d26f0c128906037e66d98c4e95868"}, - {file = "msgpack-1.0.8-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e6b7842518a63a9f17107eb176320960ec095a8ee3b4420b5f688e24bf50c53c"}, - {file = "msgpack-1.0.8-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:376081f471a2ef24828b83a641a02c575d6103a3ad7fd7dade5486cad10ea659"}, - {file = "msgpack-1.0.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e390971d082dba073c05dbd56322427d3280b7cc8b53484c9377adfbae67dc2"}, - {file = "msgpack-1.0.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:00e073efcba9ea99db5acef3959efa45b52bc67b61b00823d2a1a6944bf45982"}, - {file = "msgpack-1.0.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82d92c773fbc6942a7a8b520d22c11cfc8fd83bba86116bfcf962c2f5c2ecdaa"}, - {file = "msgpack-1.0.8-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:9ee32dcb8e531adae1f1ca568822e9b3a738369b3b686d1477cbc643c4a9c128"}, - {file = "msgpack-1.0.8-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e3aa7e51d738e0ec0afbed661261513b38b3014754c9459508399baf14ae0c9d"}, - {file = "msgpack-1.0.8-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:69284049d07fce531c17404fcba2bb1df472bc2dcdac642ae71a2d079d950653"}, - {file = "msgpack-1.0.8-cp310-cp310-win32.whl", hash = "sha256:13577ec9e247f8741c84d06b9ece5f654920d8365a4b636ce0e44f15e07ec693"}, - {file = "msgpack-1.0.8-cp310-cp310-win_amd64.whl", hash = "sha256:e532dbd6ddfe13946de050d7474e3f5fb6ec774fbb1a188aaf469b08cf04189a"}, - {file = "msgpack-1.0.8-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9517004e21664f2b5a5fd6333b0731b9cf0817403a941b393d89a2f1dc2bd836"}, - {file = "msgpack-1.0.8-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d16a786905034e7e34098634b184a7d81f91d4c3d246edc6bd7aefb2fd8ea6ad"}, - {file = "msgpack-1.0.8-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e2872993e209f7ed04d963e4b4fbae72d034844ec66bc4ca403329db2074377b"}, - {file = "msgpack-1.0.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c330eace3dd100bdb54b5653b966de7f51c26ec4a7d4e87132d9b4f738220ba"}, - {file = "msgpack-1.0.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:83b5c044f3eff2a6534768ccfd50425939e7a8b5cf9a7261c385de1e20dcfc85"}, - {file = "msgpack-1.0.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1876b0b653a808fcd50123b953af170c535027bf1d053b59790eebb0aeb38950"}, - {file = "msgpack-1.0.8-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:dfe1f0f0ed5785c187144c46a292b8c34c1295c01da12e10ccddfc16def4448a"}, - {file = "msgpack-1.0.8-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3528807cbbb7f315bb81959d5961855e7ba52aa60a3097151cb21956fbc7502b"}, - {file = "msgpack-1.0.8-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e2f879ab92ce502a1e65fce390eab619774dda6a6ff719718069ac94084098ce"}, - {file = "msgpack-1.0.8-cp311-cp311-win32.whl", hash = "sha256:26ee97a8261e6e35885c2ecd2fd4a6d38252246f94a2aec23665a4e66d066305"}, - {file = "msgpack-1.0.8-cp311-cp311-win_amd64.whl", hash = "sha256:eadb9f826c138e6cf3c49d6f8de88225a3c0ab181a9b4ba792e006e5292d150e"}, - {file = "msgpack-1.0.8-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:114be227f5213ef8b215c22dde19532f5da9652e56e8ce969bf0a26d7c419fee"}, - {file = "msgpack-1.0.8-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:d661dc4785affa9d0edfdd1e59ec056a58b3dbb9f196fa43587f3ddac654ac7b"}, - {file = "msgpack-1.0.8-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d56fd9f1f1cdc8227d7b7918f55091349741904d9520c65f0139a9755952c9e8"}, - {file = "msgpack-1.0.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0726c282d188e204281ebd8de31724b7d749adebc086873a59efb8cf7ae27df3"}, - {file = "msgpack-1.0.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8db8e423192303ed77cff4dce3a4b88dbfaf43979d280181558af5e2c3c71afc"}, - {file = "msgpack-1.0.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:99881222f4a8c2f641f25703963a5cefb076adffd959e0558dc9f803a52d6a58"}, - {file = "msgpack-1.0.8-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:b5505774ea2a73a86ea176e8a9a4a7c8bf5d521050f0f6f8426afe798689243f"}, - {file = "msgpack-1.0.8-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:ef254a06bcea461e65ff0373d8a0dd1ed3aa004af48839f002a0c994a6f72d04"}, - {file = "msgpack-1.0.8-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:e1dd7839443592d00e96db831eddb4111a2a81a46b028f0facd60a09ebbdd543"}, - {file = "msgpack-1.0.8-cp312-cp312-win32.whl", hash = "sha256:64d0fcd436c5683fdd7c907eeae5e2cbb5eb872fafbc03a43609d7941840995c"}, - {file = "msgpack-1.0.8-cp312-cp312-win_amd64.whl", hash = "sha256:74398a4cf19de42e1498368c36eed45d9528f5fd0155241e82c4082b7e16cffd"}, - {file = "msgpack-1.0.8-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:0ceea77719d45c839fd73abcb190b8390412a890df2f83fb8cf49b2a4b5c2f40"}, - {file = "msgpack-1.0.8-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1ab0bbcd4d1f7b6991ee7c753655b481c50084294218de69365f8f1970d4c151"}, - {file = "msgpack-1.0.8-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:1cce488457370ffd1f953846f82323cb6b2ad2190987cd4d70b2713e17268d24"}, - {file = "msgpack-1.0.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3923a1778f7e5ef31865893fdca12a8d7dc03a44b33e2a5f3295416314c09f5d"}, - {file = "msgpack-1.0.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a22e47578b30a3e199ab067a4d43d790249b3c0587d9a771921f86250c8435db"}, - {file = "msgpack-1.0.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bd739c9251d01e0279ce729e37b39d49a08c0420d3fee7f2a4968c0576678f77"}, - {file = "msgpack-1.0.8-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:d3420522057ebab1728b21ad473aa950026d07cb09da41103f8e597dfbfaeb13"}, - {file = "msgpack-1.0.8-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:5845fdf5e5d5b78a49b826fcdc0eb2e2aa7191980e3d2cfd2a30303a74f212e2"}, - {file = "msgpack-1.0.8-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6a0e76621f6e1f908ae52860bdcb58e1ca85231a9b0545e64509c931dd34275a"}, - {file = "msgpack-1.0.8-cp38-cp38-win32.whl", hash = "sha256:374a8e88ddab84b9ada695d255679fb99c53513c0a51778796fcf0944d6c789c"}, - {file = "msgpack-1.0.8-cp38-cp38-win_amd64.whl", hash = "sha256:f3709997b228685fe53e8c433e2df9f0cdb5f4542bd5114ed17ac3c0129b0480"}, - {file = "msgpack-1.0.8-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:f51bab98d52739c50c56658cc303f190785f9a2cd97b823357e7aeae54c8f68a"}, - {file = "msgpack-1.0.8-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:73ee792784d48aa338bba28063e19a27e8d989344f34aad14ea6e1b9bd83f596"}, - {file = "msgpack-1.0.8-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f9904e24646570539a8950400602d66d2b2c492b9010ea7e965025cb71d0c86d"}, - {file = "msgpack-1.0.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e75753aeda0ddc4c28dce4c32ba2f6ec30b1b02f6c0b14e547841ba5b24f753f"}, - {file = "msgpack-1.0.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5dbf059fb4b7c240c873c1245ee112505be27497e90f7c6591261c7d3c3a8228"}, - {file = "msgpack-1.0.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4916727e31c28be8beaf11cf117d6f6f188dcc36daae4e851fee88646f5b6b18"}, - {file = "msgpack-1.0.8-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:7938111ed1358f536daf311be244f34df7bf3cdedb3ed883787aca97778b28d8"}, - {file = "msgpack-1.0.8-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:493c5c5e44b06d6c9268ce21b302c9ca055c1fd3484c25ba41d34476c76ee746"}, - {file = "msgpack-1.0.8-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5fbb160554e319f7b22ecf530a80a3ff496d38e8e07ae763b9e82fadfe96f273"}, - {file = "msgpack-1.0.8-cp39-cp39-win32.whl", hash = "sha256:f9af38a89b6a5c04b7d18c492c8ccf2aee7048aff1ce8437c4683bb5a1df893d"}, - {file = "msgpack-1.0.8-cp39-cp39-win_amd64.whl", hash = "sha256:ed59dd52075f8fc91da6053b12e8c89e37aa043f8986efd89e61fae69dc1b011"}, - {file = "msgpack-1.0.8.tar.gz", hash = "sha256:95c02b0e27e706e48d0e5426d1710ca78e0f0628d6e89d5b5a5b91a5f12274f3"}, + {file = "msgpack-1.1.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7ad442d527a7e358a469faf43fda45aaf4ac3249c8310a82f0ccff9164e5dccd"}, + {file = "msgpack-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:74bed8f63f8f14d75eec75cf3d04ad581da6b914001b474a5d3cd3372c8cc27d"}, + {file = "msgpack-1.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:914571a2a5b4e7606997e169f64ce53a8b1e06f2cf2c3a7273aa106236d43dd5"}, + {file = "msgpack-1.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c921af52214dcbb75e6bdf6a661b23c3e6417f00c603dd2070bccb5c3ef499f5"}, + {file = "msgpack-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d8ce0b22b890be5d252de90d0e0d119f363012027cf256185fc3d474c44b1b9e"}, + {file = "msgpack-1.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:73322a6cc57fcee3c0c57c4463d828e9428275fb85a27aa2aa1a92fdc42afd7b"}, + {file = "msgpack-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e1f3c3d21f7cf67bcf2da8e494d30a75e4cf60041d98b3f79875afb5b96f3a3f"}, + {file = "msgpack-1.1.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:64fc9068d701233effd61b19efb1485587560b66fe57b3e50d29c5d78e7fef68"}, + {file = "msgpack-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:42f754515e0f683f9c79210a5d1cad631ec3d06cea5172214d2176a42e67e19b"}, + {file = "msgpack-1.1.0-cp310-cp310-win32.whl", hash = "sha256:3df7e6b05571b3814361e8464f9304c42d2196808e0119f55d0d3e62cd5ea044"}, + {file = "msgpack-1.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:685ec345eefc757a7c8af44a3032734a739f8c45d1b0ac45efc5d8977aa4720f"}, + {file = "msgpack-1.1.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:3d364a55082fb2a7416f6c63ae383fbd903adb5a6cf78c5b96cc6316dc1cedc7"}, + {file = "msgpack-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:79ec007767b9b56860e0372085f8504db5d06bd6a327a335449508bbee9648fa"}, + {file = "msgpack-1.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6ad622bf7756d5a497d5b6836e7fc3752e2dd6f4c648e24b1803f6048596f701"}, + {file = "msgpack-1.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e59bca908d9ca0de3dc8684f21ebf9a690fe47b6be93236eb40b99af28b6ea6"}, + {file = "msgpack-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5e1da8f11a3dd397f0a32c76165cf0c4eb95b31013a94f6ecc0b280c05c91b59"}, + {file = "msgpack-1.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:452aff037287acb1d70a804ffd022b21fa2bb7c46bee884dbc864cc9024128a0"}, + {file = "msgpack-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8da4bf6d54ceed70e8861f833f83ce0814a2b72102e890cbdfe4b34764cdd66e"}, + {file = "msgpack-1.1.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:41c991beebf175faf352fb940bf2af9ad1fb77fd25f38d9142053914947cdbf6"}, + {file = "msgpack-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a52a1f3a5af7ba1c9ace055b659189f6c669cf3657095b50f9602af3a3ba0fe5"}, + {file = "msgpack-1.1.0-cp311-cp311-win32.whl", hash = "sha256:58638690ebd0a06427c5fe1a227bb6b8b9fdc2bd07701bec13c2335c82131a88"}, + {file = "msgpack-1.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:fd2906780f25c8ed5d7b323379f6138524ba793428db5d0e9d226d3fa6aa1788"}, + {file = "msgpack-1.1.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:d46cf9e3705ea9485687aa4001a76e44748b609d260af21c4ceea7f2212a501d"}, + {file = "msgpack-1.1.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5dbad74103df937e1325cc4bfeaf57713be0b4f15e1c2da43ccdd836393e2ea2"}, + {file = "msgpack-1.1.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:58dfc47f8b102da61e8949708b3eafc3504509a5728f8b4ddef84bd9e16ad420"}, + {file = "msgpack-1.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4676e5be1b472909b2ee6356ff425ebedf5142427842aa06b4dfd5117d1ca8a2"}, + {file = "msgpack-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:17fb65dd0bec285907f68b15734a993ad3fc94332b5bb21b0435846228de1f39"}, + {file = "msgpack-1.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a51abd48c6d8ac89e0cfd4fe177c61481aca2d5e7ba42044fd218cfd8ea9899f"}, + {file = "msgpack-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2137773500afa5494a61b1208619e3871f75f27b03bcfca7b3a7023284140247"}, + {file = "msgpack-1.1.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:398b713459fea610861c8a7b62a6fec1882759f308ae0795b5413ff6a160cf3c"}, + {file = "msgpack-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:06f5fd2f6bb2a7914922d935d3b8bb4a7fff3a9a91cfce6d06c13bc42bec975b"}, + {file = "msgpack-1.1.0-cp312-cp312-win32.whl", hash = "sha256:ad33e8400e4ec17ba782f7b9cf868977d867ed784a1f5f2ab46e7ba53b6e1e1b"}, + {file = "msgpack-1.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:115a7af8ee9e8cddc10f87636767857e7e3717b7a2e97379dc2054712693e90f"}, + {file = "msgpack-1.1.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:071603e2f0771c45ad9bc65719291c568d4edf120b44eb36324dcb02a13bfddf"}, + {file = "msgpack-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:0f92a83b84e7c0749e3f12821949d79485971f087604178026085f60ce109330"}, + {file = "msgpack-1.1.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4a1964df7b81285d00a84da4e70cb1383f2e665e0f1f2a7027e683956d04b734"}, + {file = "msgpack-1.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:59caf6a4ed0d164055ccff8fe31eddc0ebc07cf7326a2aaa0dbf7a4001cd823e"}, + {file = "msgpack-1.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0907e1a7119b337971a689153665764adc34e89175f9a34793307d9def08e6ca"}, + {file = "msgpack-1.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:65553c9b6da8166e819a6aa90ad15288599b340f91d18f60b2061f402b9a4915"}, + {file = "msgpack-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:7a946a8992941fea80ed4beae6bff74ffd7ee129a90b4dd5cf9c476a30e9708d"}, + {file = "msgpack-1.1.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4b51405e36e075193bc051315dbf29168d6141ae2500ba8cd80a522964e31434"}, + {file = "msgpack-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:b4c01941fd2ff87c2a934ee6055bda4ed353a7846b8d4f341c428109e9fcde8c"}, + {file = "msgpack-1.1.0-cp313-cp313-win32.whl", hash = "sha256:7c9a35ce2c2573bada929e0b7b3576de647b0defbd25f5139dcdaba0ae35a4cc"}, + {file = "msgpack-1.1.0-cp313-cp313-win_amd64.whl", hash = "sha256:bce7d9e614a04d0883af0b3d4d501171fbfca038f12c77fa838d9f198147a23f"}, + {file = "msgpack-1.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c40ffa9a15d74e05ba1fe2681ea33b9caffd886675412612d93ab17b58ea2fec"}, + {file = "msgpack-1.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f1ba6136e650898082d9d5a5217d5906d1e138024f836ff48691784bbe1adf96"}, + {file = "msgpack-1.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e0856a2b7e8dcb874be44fea031d22e5b3a19121be92a1e098f46068a11b0870"}, + {file = "msgpack-1.1.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:471e27a5787a2e3f974ba023f9e265a8c7cfd373632247deb225617e3100a3c7"}, + {file = "msgpack-1.1.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:646afc8102935a388ffc3914b336d22d1c2d6209c773f3eb5dd4d6d3b6f8c1cb"}, + {file = "msgpack-1.1.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:13599f8829cfbe0158f6456374e9eea9f44eee08076291771d8ae93eda56607f"}, + {file = "msgpack-1.1.0-cp38-cp38-win32.whl", hash = "sha256:8a84efb768fb968381e525eeeb3d92857e4985aacc39f3c47ffd00eb4509315b"}, + {file = "msgpack-1.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:879a7b7b0ad82481c52d3c7eb99bf6f0645dbdec5134a4bddbd16f3506947feb"}, + {file = "msgpack-1.1.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:53258eeb7a80fc46f62fd59c876957a2d0e15e6449a9e71842b6d24419d88ca1"}, + {file = "msgpack-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7e7b853bbc44fb03fbdba34feb4bd414322180135e2cb5164f20ce1c9795ee48"}, + {file = "msgpack-1.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f3e9b4936df53b970513eac1758f3882c88658a220b58dcc1e39606dccaaf01c"}, + {file = "msgpack-1.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:46c34e99110762a76e3911fc923222472c9d681f1094096ac4102c18319e6468"}, + {file = "msgpack-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8a706d1e74dd3dea05cb54580d9bd8b2880e9264856ce5068027eed09680aa74"}, + {file = "msgpack-1.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:534480ee5690ab3cbed89d4c8971a5c631b69a8c0883ecfea96c19118510c846"}, + {file = "msgpack-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8cf9e8c3a2153934a23ac160cc4cba0ec035f6867c8013cc6077a79823370346"}, + {file = "msgpack-1.1.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3180065ec2abbe13a4ad37688b61b99d7f9e012a535b930e0e683ad6bc30155b"}, + {file = "msgpack-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:c5a91481a3cc573ac8c0d9aace09345d989dc4a0202b7fcb312c88c26d4e71a8"}, + {file = "msgpack-1.1.0-cp39-cp39-win32.whl", hash = "sha256:f80bc7d47f76089633763f952e67f8214cb7b3ee6bfa489b3cb6a84cfac114cd"}, + {file = "msgpack-1.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:4d1b7ff2d6146e16e8bd665ac726a89c74163ef8cd39fa8c1087d4e52d3a2325"}, + {file = "msgpack-1.1.0.tar.gz", hash = "sha256:dd432ccc2c72b914e4cb77afce64aab761c1137cc698be3984eee260bcb2896e"}, ] [[package]] @@ -3222,19 +3271,19 @@ xmp = ["defusedxml"] [[package]] name = "platformdirs" -version = "4.2.2" +version = "4.3.6" description = "A small Python package for determining appropriate platform-specific dirs, e.g. a `user data dir`." optional = false python-versions = ">=3.8" files = [ - {file = "platformdirs-4.2.2-py3-none-any.whl", hash = "sha256:2d7a1657e36a80ea911db832a8a6ece5ee53d8de21edd5cc5879af6530b1bfee"}, - {file = "platformdirs-4.2.2.tar.gz", hash = "sha256:38b7b51f512eed9e84a22788b4bce1de17c0adb134d6becb09836e37d8654cd3"}, + {file = "platformdirs-4.3.6-py3-none-any.whl", hash = "sha256:73e575e1408ab8103900836b97580d5307456908a03e92031bab39e4554cc3fb"}, + {file = "platformdirs-4.3.6.tar.gz", hash = "sha256:357fb2acbc885b0419afd3ce3ed34564c13c9b95c89360cd9563f73aa5e2b907"}, ] [package.extras] -docs = ["furo (>=2023.9.10)", "proselint (>=0.13)", "sphinx (>=7.2.6)", "sphinx-autodoc-typehints (>=1.25.2)"] -test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4.3)", "pytest-cov (>=4.1)", "pytest-mock (>=3.12)"] -type = ["mypy (>=1.8)"] +docs = ["furo (>=2024.8.6)", "proselint (>=0.14)", "sphinx (>=8.0.2)", "sphinx-autodoc-typehints (>=2.4)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=8.3.2)", "pytest-cov (>=5)", "pytest-mock (>=3.14)"] +type = ["mypy (>=1.11.2)"] [[package]] name = "pluggy" @@ -3252,31 +3301,32 @@ dev = ["pre-commit", "tox"] [[package]] name = "poethepoet" -version = "0.27.0" +version = "0.29.0" description = "A task runner that works well with poetry." optional = false python-versions = ">=3.8" files = [ - {file = "poethepoet-0.27.0-py3-none-any.whl", hash = "sha256:0032d980a623b96e26dc7450ae200b0998be523f27d297d799b97510fe252a24"}, - {file = "poethepoet-0.27.0.tar.gz", hash = "sha256:907ab4dc1bc6326be5a3b10d2aa39d1acc0ca12024317d9506fbe9c0cdc912c9"}, + {file = "poethepoet-0.29.0-py3-none-any.whl", hash = "sha256:f8dfe55006dcfb5cf31bcb1904e1262e1c642a4502fee3688cbf1bddfe5c7601"}, + {file = "poethepoet-0.29.0.tar.gz", hash = "sha256:676842302f2304a86b31ac56398dd672fae8471128d2086896393384dbafc095"}, ] [package.dependencies] pastel = ">=0.2.1,<0.3.0" -tomli = ">=1.2.2" +pyyaml = ">=6.0.2,<7.0.0" +tomli = {version = ">=1.2.2", markers = "python_version < \"3.11\""} [package.extras] poetry-plugin = ["poetry (>=1.0,<2.0)"] [[package]] name = "prompt-toolkit" -version = "3.0.47" +version = "3.0.48" description = "Library for building powerful interactive command lines in Python" optional = false python-versions = ">=3.7.0" files = [ - {file = "prompt_toolkit-3.0.47-py3-none-any.whl", hash = "sha256:0d7bfa67001d5e39d02c224b663abc33687405033a8c422d0d675a5a13361d10"}, - {file = "prompt_toolkit-3.0.47.tar.gz", hash = "sha256:1e1b29cb58080b1e69f207c893a1a7bf16d127a5c30c9d17a25a5d77792e5360"}, + {file = "prompt_toolkit-3.0.48-py3-none-any.whl", hash = "sha256:f49a827f90062e411f1ce1f854f2aedb3c23353244f8108b89283587397ac10e"}, + {file = "prompt_toolkit-3.0.48.tar.gz", hash = "sha256:d6623ab0477a80df74e646bdbc93621143f5caf104206aa29294d53de1a03d90"}, ] [package.dependencies] @@ -3398,13 +3448,13 @@ files = [ [[package]] name = "pycodestyle" -version = "2.12.0" +version = "2.12.1" description = "Python style guide checker" optional = false python-versions = ">=3.8" files = [ - {file = "pycodestyle-2.12.0-py2.py3-none-any.whl", hash = "sha256:949a39f6b86c3e1515ba1787c2022131d165a8ad271b11370a8819aa070269e4"}, - {file = "pycodestyle-2.12.0.tar.gz", hash = "sha256:442f950141b4f43df752dd303511ffded3a04c2b6fb7f65980574f0c31e6e79c"}, + {file = "pycodestyle-2.12.1-py2.py3-none-any.whl", hash = "sha256:46f0fb92069a7c28ab7bb558f05bfc0110dac69a0cd23c61ea0040283a9d78b3"}, + {file = "pycodestyle-2.12.1.tar.gz", hash = "sha256:6838eae08bbce4f6accd5d5572075c63626a15ee3e6f842df996bf62f6d73521"}, ] [[package]] @@ -3462,13 +3512,13 @@ windows-terminal = ["colorama (>=0.4.6)"] [[package]] name = "pyjwt" -version = "2.8.0" +version = "2.9.0" description = "JSON Web Token implementation in Python" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "PyJWT-2.8.0-py3-none-any.whl", hash = "sha256:59127c392cc44c2da5bb3192169a91f429924e17aff6534d70fdc02ab3e04320"}, - {file = "PyJWT-2.8.0.tar.gz", hash = "sha256:57e28d156e3d5c10088e0c68abb90bfac3df82b40a71bd0daa20c65ccd5c23de"}, + {file = "PyJWT-2.9.0-py3-none-any.whl", hash = "sha256:3b02fb0f44517787776cf48f2ae25d8e14f300e6d7545a4315cee571a415e850"}, + {file = "pyjwt-2.9.0.tar.gz", hash = "sha256:7e1e5b56cc735432a7369cbfa0efe50fa113ebecdc04ae6922deba8b84582d0c"}, ] [package.dependencies] @@ -3476,8 +3526,8 @@ cryptography = {version = ">=3.4.0", optional = true, markers = "extra == \"cryp [package.extras] crypto = ["cryptography (>=3.4.0)"] -dev = ["coverage[toml] (==5.0.4)", "cryptography (>=3.4.0)", "pre-commit", "pytest (>=6.0.0,<7.0.0)", "sphinx (>=4.5.0,<5.0.0)", "sphinx-rtd-theme", "zope.interface"] -docs = ["sphinx (>=4.5.0,<5.0.0)", "sphinx-rtd-theme", "zope.interface"] +dev = ["coverage[toml] (==5.0.4)", "cryptography (>=3.4.0)", "pre-commit", "pytest (>=6.0.0,<7.0.0)", "sphinx", "sphinx-rtd-theme", "zope.interface"] +docs = ["sphinx", "sphinx-rtd-theme", "zope.interface"] tests = ["coverage[toml] (==5.0.4)", "pytest (>=6.0.0,<7.0.0)"] [[package]] @@ -3507,13 +3557,13 @@ tests = ["pytest-black (>=0.3.0,<0.3.10)", "pytest-cache (>=1.0)", "pytest-inven [[package]] name = "pyproject-hooks" -version = "1.1.0" +version = "1.2.0" description = "Wrappers to call pyproject.toml-based build backend hooks." optional = false python-versions = ">=3.7" files = [ - {file = "pyproject_hooks-1.1.0-py3-none-any.whl", hash = "sha256:7ceeefe9aec63a1064c18d939bdc3adf2d8aa1988a510afec15151578b232aa2"}, - {file = "pyproject_hooks-1.1.0.tar.gz", hash = "sha256:4b37730834edbd6bd37f26ece6b44802fb1c1ee2ece0e54ddff8bfc06db86965"}, + {file = "pyproject_hooks-1.2.0-py3-none-any.whl", hash = "sha256:9e5c6bfa8dcc30091c74b0cf803c81fdd29d94f01992a7707bc97babb1141913"}, + {file = "pyproject_hooks-1.2.0.tar.gz", hash = "sha256:1e859bd5c40fae9448642dd871adf459e5e2084186e8d2c2a79a824c970da1f8"}, ] [[package]] @@ -3717,27 +3767,28 @@ cli = ["click (>=5.0)"] [[package]] name = "pytz" -version = "2024.1" +version = "2024.2" description = "World timezone definitions, modern and historical" optional = false python-versions = "*" files = [ - {file = "pytz-2024.1-py2.py3-none-any.whl", hash = "sha256:328171f4e3623139da4983451950b28e95ac706e13f3f2630a879749e7a8b319"}, - {file = "pytz-2024.1.tar.gz", hash = "sha256:2a29735ea9c18baf14b448846bde5a48030ed267578472d8955cd0e7443a9812"}, + {file = "pytz-2024.2-py2.py3-none-any.whl", hash = "sha256:31c7c1817eb7fae7ca4b8c7ee50c72f93aa2dd863de768e1ef4245d426aa0725"}, + {file = "pytz-2024.2.tar.gz", hash = "sha256:2aa355083c50a0f93fa581709deac0c9ad65cca8a9e9beac660adcbd493c798a"}, ] [[package]] name = "pywebpack" -version = "2.0.0" +version = "2.0.1" description = "Webpack integration layer for Python." optional = false python-versions = ">=3.7" files = [ - {file = "pywebpack-2.0.0-py2.py3-none-any.whl", hash = "sha256:ec2362b948bfa273902265c7596ee66202b60ee2cfd07479231c916103389a6e"}, - {file = "pywebpack-2.0.0.tar.gz", hash = "sha256:676542a37ee29771e9930b9b44632c246d10635c0466ef2f7bf37ade5ed54198"}, + {file = "pywebpack-2.0.1-py2.py3-none-any.whl", hash = "sha256:1fdd5f5582eed1bd211bc890b42fffd4f8a90000ec0697f42c5182ce0839f800"}, + {file = "pywebpack-2.0.1.tar.gz", hash = "sha256:abb44d8f20797eb33c00415de523f32beeadd72310839af7b31c65e347d91178"}, ] [package.dependencies] +importlib-metadata = "*" pynpm = ">=0.1.0" [package.extras] @@ -3745,70 +3796,83 @@ tests = ["pytest-black (>=0.3.0)", "pytest-cache (>=1.0)", "pytest-invenio (>=2. [[package]] name = "pyyaml" -version = "6.0.1" +version = "6.0.2" description = "YAML parser and emitter for Python" optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, - {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, - {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, - {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, - {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, - {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, - {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, - {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, - {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, - {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, - {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, - {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, - {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, - {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, - {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, - {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, - {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, - {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, - {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, - {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, - {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, - {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, - {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, - {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, - {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, - {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, - {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, - {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, - {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, - {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, - {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, - {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, - {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, - {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, - {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, - {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, - {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, - {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, - {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, - {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, + {file = "PyYAML-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086"}, + {file = "PyYAML-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf"}, + {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8824b5a04a04a047e72eea5cec3bc266db09e35de6bdfe34c9436ac5ee27d237"}, + {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c36280e6fb8385e520936c3cb3b8042851904eba0e58d277dca80a5cfed590b"}, + {file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec031d5d2feb36d1d1a24380e4db6d43695f3748343d99434e6f5f9156aaa2ed"}, + {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:936d68689298c36b53b29f23c6dbb74de12b4ac12ca6cfe0e047bedceea56180"}, + {file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23502f431948090f597378482b4812b0caae32c22213aecf3b55325e049a6c68"}, + {file = "PyYAML-6.0.2-cp310-cp310-win32.whl", hash = "sha256:2e99c6826ffa974fe6e27cdb5ed0021786b03fc98e5ee3c5bfe1fd5015f42b99"}, + {file = "PyYAML-6.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:a4d3091415f010369ae4ed1fc6b79def9416358877534caf6a0fdd2146c87a3e"}, + {file = "PyYAML-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774"}, + {file = "PyYAML-6.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee"}, + {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c"}, + {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317"}, + {file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85"}, + {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4"}, + {file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e"}, + {file = "PyYAML-6.0.2-cp311-cp311-win32.whl", hash = "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5"}, + {file = "PyYAML-6.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44"}, + {file = "PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab"}, + {file = "PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725"}, + {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5"}, + {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425"}, + {file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476"}, + {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48"}, + {file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b"}, + {file = "PyYAML-6.0.2-cp312-cp312-win32.whl", hash = "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4"}, + {file = "PyYAML-6.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8"}, + {file = "PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba"}, + {file = "PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1"}, + {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133"}, + {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484"}, + {file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5"}, + {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc"}, + {file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652"}, + {file = "PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183"}, + {file = "PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563"}, + {file = "PyYAML-6.0.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:24471b829b3bf607e04e88d79542a9d48bb037c2267d7927a874e6c205ca7e9a"}, + {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7fded462629cfa4b685c5416b949ebad6cec74af5e2d42905d41e257e0869f5"}, + {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d84a1718ee396f54f3a086ea0a66d8e552b2ab2017ef8b420e92edbc841c352d"}, + {file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9056c1ecd25795207ad294bcf39f2db3d845767be0ea6e6a34d856f006006083"}, + {file = "PyYAML-6.0.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:82d09873e40955485746739bcb8b4586983670466c23382c19cffecbf1fd8706"}, + {file = "PyYAML-6.0.2-cp38-cp38-win32.whl", hash = "sha256:43fa96a3ca0d6b1812e01ced1044a003533c47f6ee8aca31724f78e93ccc089a"}, + {file = "PyYAML-6.0.2-cp38-cp38-win_amd64.whl", hash = "sha256:01179a4a8559ab5de078078f37e5c1a30d76bb88519906844fd7bdea1b7729ff"}, + {file = "PyYAML-6.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:688ba32a1cffef67fd2e9398a2efebaea461578b0923624778664cc1c914db5d"}, + {file = "PyYAML-6.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8786accb172bd8afb8be14490a16625cbc387036876ab6ba70912730faf8e1f"}, + {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8e03406cac8513435335dbab54c0d385e4a49e4945d2909a581c83647ca0290"}, + {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f753120cb8181e736c57ef7636e83f31b9c0d1722c516f7e86cf15b7aa57ff12"}, + {file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b1fdb9dc17f5a7677423d508ab4f243a726dea51fa5e70992e59a7411c89d19"}, + {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0b69e4ce7a131fe56b7e4d770c67429700908fc0752af059838b1cfb41960e4e"}, + {file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a9f8c2e67970f13b16084e04f134610fd1d374bf477b17ec1599185cf611d725"}, + {file = "PyYAML-6.0.2-cp39-cp39-win32.whl", hash = "sha256:6395c297d42274772abc367baaa79683958044e5d3835486c16da75d2a694631"}, + {file = "PyYAML-6.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:39693e1f8320ae4f43943590b49779ffb98acb81f788220ea932a6b6c51004d8"}, + {file = "pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e"}, ] [[package]] name = "redis" -version = "5.0.7" +version = "5.1.0" description = "Python client for Redis database and key-value store" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "redis-5.0.7-py3-none-any.whl", hash = "sha256:0e479e24da960c690be5d9b96d21f7b918a98c0cf49af3b6fafaa0753f93a0db"}, - {file = "redis-5.0.7.tar.gz", hash = "sha256:8f611490b93c8109b50adc317b31bfd84fff31def3475b92e7e80bf39f48175b"}, + {file = "redis-5.1.0-py3-none-any.whl", hash = "sha256:fd4fccba0d7f6aa48c58a78d76ddb4afc698f5da4a2c1d03d916e4fd7ab88cdd"}, + {file = "redis-5.1.0.tar.gz", hash = "sha256:b756df1e4a3858fcc0ef861f3fc53623a96c41e2b1f5304e09e0fe758d333d40"}, ] [package.dependencies] async-timeout = {version = ">=4.0.3", markers = "python_full_version < \"3.11.3\""} [package.extras] -hiredis = ["hiredis (>=1.0.0)"] -ocsp = ["cryptography (>=36.0.1)", "pyopenssl (==20.0.1)", "requests (>=2.26.0)"] +hiredis = ["hiredis (>=3.0.0)"] +ocsp = ["cryptography (>=36.0.1)", "pyopenssl (==23.2.1)", "requests (>=2.31.0)"] [[package]] name = "referencing" @@ -3908,110 +3972,114 @@ jupyter = ["ipywidgets (>=7.5.1,<8.0.0)"] [[package]] name = "rpds-py" -version = "0.19.0" +version = "0.20.0" description = "Python bindings to Rust's persistent data structures (rpds)" optional = false python-versions = ">=3.8" files = [ - {file = "rpds_py-0.19.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:fb37bd599f031f1a6fb9e58ec62864ccf3ad549cf14bac527dbfa97123edcca4"}, - {file = "rpds_py-0.19.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3384d278df99ec2c6acf701d067147320b864ef6727405d6470838476e44d9e8"}, - {file = "rpds_py-0.19.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e54548e0be3ac117595408fd4ca0ac9278fde89829b0b518be92863b17ff67a2"}, - {file = "rpds_py-0.19.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8eb488ef928cdbc05a27245e52de73c0d7c72a34240ef4d9893fdf65a8c1a955"}, - {file = "rpds_py-0.19.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a5da93debdfe27b2bfc69eefb592e1831d957b9535e0943a0ee8b97996de21b5"}, - {file = "rpds_py-0.19.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:79e205c70afddd41f6ee79a8656aec738492a550247a7af697d5bd1aee14f766"}, - {file = "rpds_py-0.19.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:959179efb3e4a27610e8d54d667c02a9feaa86bbabaf63efa7faa4dfa780d4f1"}, - {file = "rpds_py-0.19.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a6e605bb9edcf010f54f8b6a590dd23a4b40a8cb141255eec2a03db249bc915b"}, - {file = "rpds_py-0.19.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:9133d75dc119a61d1a0ded38fb9ba40a00ef41697cc07adb6ae098c875195a3f"}, - {file = "rpds_py-0.19.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:dd36b712d35e757e28bf2f40a71e8f8a2d43c8b026d881aa0c617b450d6865c9"}, - {file = "rpds_py-0.19.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:354f3a91718489912f2e0fc331c24eaaf6a4565c080e00fbedb6015857c00582"}, - {file = "rpds_py-0.19.0-cp310-none-win32.whl", hash = "sha256:ebcbf356bf5c51afc3290e491d3722b26aaf5b6af3c1c7f6a1b757828a46e336"}, - {file = "rpds_py-0.19.0-cp310-none-win_amd64.whl", hash = "sha256:75a6076289b2df6c8ecb9d13ff79ae0cad1d5fb40af377a5021016d58cd691ec"}, - {file = "rpds_py-0.19.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:6d45080095e585f8c5097897313def60caa2046da202cdb17a01f147fb263b81"}, - {file = "rpds_py-0.19.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c5c9581019c96f865483d031691a5ff1cc455feb4d84fc6920a5ffc48a794d8a"}, - {file = "rpds_py-0.19.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1540d807364c84516417115c38f0119dfec5ea5c0dd9a25332dea60b1d26fc4d"}, - {file = "rpds_py-0.19.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9e65489222b410f79711dc3d2d5003d2757e30874096b2008d50329ea4d0f88c"}, - {file = "rpds_py-0.19.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9da6f400eeb8c36f72ef6646ea530d6d175a4f77ff2ed8dfd6352842274c1d8b"}, - {file = "rpds_py-0.19.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:37f46bb11858717e0efa7893c0f7055c43b44c103e40e69442db5061cb26ed34"}, - {file = "rpds_py-0.19.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:071d4adc734de562bd11d43bd134330fb6249769b2f66b9310dab7460f4bf714"}, - {file = "rpds_py-0.19.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9625367c8955e4319049113ea4f8fee0c6c1145192d57946c6ffcd8fe8bf48dd"}, - {file = "rpds_py-0.19.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:e19509145275d46bc4d1e16af0b57a12d227c8253655a46bbd5ec317e941279d"}, - {file = "rpds_py-0.19.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:4d438e4c020d8c39961deaf58f6913b1bf8832d9b6f62ec35bd93e97807e9cbc"}, - {file = "rpds_py-0.19.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:90bf55d9d139e5d127193170f38c584ed3c79e16638890d2e36f23aa1630b952"}, - {file = "rpds_py-0.19.0-cp311-none-win32.whl", hash = "sha256:8d6ad132b1bc13d05ffe5b85e7a01a3998bf3a6302ba594b28d61b8c2cf13aaf"}, - {file = "rpds_py-0.19.0-cp311-none-win_amd64.whl", hash = "sha256:7ec72df7354e6b7f6eb2a17fa6901350018c3a9ad78e48d7b2b54d0412539a67"}, - {file = "rpds_py-0.19.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:5095a7c838a8647c32aa37c3a460d2c48debff7fc26e1136aee60100a8cd8f68"}, - {file = "rpds_py-0.19.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6f2f78ef14077e08856e788fa482107aa602636c16c25bdf59c22ea525a785e9"}, - {file = "rpds_py-0.19.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b7cc6cb44f8636fbf4a934ca72f3e786ba3c9f9ba4f4d74611e7da80684e48d2"}, - {file = "rpds_py-0.19.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:cf902878b4af334a09de7a45badbff0389e7cf8dc2e4dcf5f07125d0b7c2656d"}, - {file = "rpds_py-0.19.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:688aa6b8aa724db1596514751ffb767766e02e5c4a87486ab36b8e1ebc1aedac"}, - {file = "rpds_py-0.19.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:57dbc9167d48e355e2569346b5aa4077f29bf86389c924df25c0a8b9124461fb"}, - {file = "rpds_py-0.19.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b4cf5a9497874822341c2ebe0d5850fed392034caadc0bad134ab6822c0925b"}, - {file = "rpds_py-0.19.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8a790d235b9d39c70a466200d506bb33a98e2ee374a9b4eec7a8ac64c2c261fa"}, - {file = "rpds_py-0.19.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1d16089dfa58719c98a1c06f2daceba6d8e3fb9b5d7931af4a990a3c486241cb"}, - {file = "rpds_py-0.19.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:bc9128e74fe94650367fe23f37074f121b9f796cabbd2f928f13e9661837296d"}, - {file = "rpds_py-0.19.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c8f77e661ffd96ff104bebf7d0f3255b02aa5d5b28326f5408d6284c4a8b3248"}, - {file = "rpds_py-0.19.0-cp312-none-win32.whl", hash = "sha256:5f83689a38e76969327e9b682be5521d87a0c9e5a2e187d2bc6be4765f0d4600"}, - {file = "rpds_py-0.19.0-cp312-none-win_amd64.whl", hash = "sha256:06925c50f86da0596b9c3c64c3837b2481337b83ef3519e5db2701df695453a4"}, - {file = "rpds_py-0.19.0-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:52e466bea6f8f3a44b1234570244b1cff45150f59a4acae3fcc5fd700c2993ca"}, - {file = "rpds_py-0.19.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:e21cc693045fda7f745c790cb687958161ce172ffe3c5719ca1764e752237d16"}, - {file = "rpds_py-0.19.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b31f059878eb1f5da8b2fd82480cc18bed8dcd7fb8fe68370e2e6285fa86da6"}, - {file = "rpds_py-0.19.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1dd46f309e953927dd018567d6a9e2fb84783963650171f6c5fe7e5c41fd5666"}, - {file = "rpds_py-0.19.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:34a01a4490e170376cd79258b7f755fa13b1a6c3667e872c8e35051ae857a92b"}, - {file = "rpds_py-0.19.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bcf426a8c38eb57f7bf28932e68425ba86def6e756a5b8cb4731d8e62e4e0223"}, - {file = "rpds_py-0.19.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f68eea5df6347d3f1378ce992d86b2af16ad7ff4dcb4a19ccdc23dea901b87fb"}, - {file = "rpds_py-0.19.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:dab8d921b55a28287733263c0e4c7db11b3ee22aee158a4de09f13c93283c62d"}, - {file = "rpds_py-0.19.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:6fe87efd7f47266dfc42fe76dae89060038f1d9cb911f89ae7e5084148d1cc08"}, - {file = "rpds_py-0.19.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:535d4b52524a961d220875688159277f0e9eeeda0ac45e766092bfb54437543f"}, - {file = "rpds_py-0.19.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:8b1a94b8afc154fbe36978a511a1f155f9bd97664e4f1f7a374d72e180ceb0ae"}, - {file = "rpds_py-0.19.0-cp38-none-win32.whl", hash = "sha256:7c98298a15d6b90c8f6e3caa6457f4f022423caa5fa1a1ca7a5e9e512bdb77a4"}, - {file = "rpds_py-0.19.0-cp38-none-win_amd64.whl", hash = "sha256:b0da31853ab6e58a11db3205729133ce0df26e6804e93079dee095be3d681dc1"}, - {file = "rpds_py-0.19.0-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:5039e3cef7b3e7a060de468a4a60a60a1f31786da94c6cb054e7a3c75906111c"}, - {file = "rpds_py-0.19.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ab1932ca6cb8c7499a4d87cb21ccc0d3326f172cfb6a64021a889b591bb3045c"}, - {file = "rpds_py-0.19.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f2afd2164a1e85226fcb6a1da77a5c8896c18bfe08e82e8ceced5181c42d2179"}, - {file = "rpds_py-0.19.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b1c30841f5040de47a0046c243fc1b44ddc87d1b12435a43b8edff7e7cb1e0d0"}, - {file = "rpds_py-0.19.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f757f359f30ec7dcebca662a6bd46d1098f8b9fb1fcd661a9e13f2e8ce343ba1"}, - {file = "rpds_py-0.19.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:15e65395a59d2e0e96caf8ee5389ffb4604e980479c32742936ddd7ade914b22"}, - {file = "rpds_py-0.19.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cb0f6eb3a320f24b94d177e62f4074ff438f2ad9d27e75a46221904ef21a7b05"}, - {file = "rpds_py-0.19.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b228e693a2559888790936e20f5f88b6e9f8162c681830eda303bad7517b4d5a"}, - {file = "rpds_py-0.19.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:2575efaa5d949c9f4e2cdbe7d805d02122c16065bfb8d95c129372d65a291a0b"}, - {file = "rpds_py-0.19.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:5c872814b77a4e84afa293a1bee08c14daed1068b2bb1cc312edbf020bbbca2b"}, - {file = "rpds_py-0.19.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:850720e1b383df199b8433a20e02b25b72f0fded28bc03c5bd79e2ce7ef050be"}, - {file = "rpds_py-0.19.0-cp39-none-win32.whl", hash = "sha256:ce84a7efa5af9f54c0aa7692c45861c1667080814286cacb9958c07fc50294fb"}, - {file = "rpds_py-0.19.0-cp39-none-win_amd64.whl", hash = "sha256:1c26da90b8d06227d7769f34915913911222d24ce08c0ab2d60b354e2d9c7aff"}, - {file = "rpds_py-0.19.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:75969cf900d7be665ccb1622a9aba225cf386bbc9c3bcfeeab9f62b5048f4a07"}, - {file = "rpds_py-0.19.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:8445f23f13339da640d1be8e44e5baf4af97e396882ebbf1692aecd67f67c479"}, - {file = "rpds_py-0.19.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5a7c1062ef8aea3eda149f08120f10795835fc1c8bc6ad948fb9652a113ca55"}, - {file = "rpds_py-0.19.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:462b0c18fbb48fdbf980914a02ee38c423a25fcc4cf40f66bacc95a2d2d73bc8"}, - {file = "rpds_py-0.19.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3208f9aea18991ac7f2b39721e947bbd752a1abbe79ad90d9b6a84a74d44409b"}, - {file = "rpds_py-0.19.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c3444fe52b82f122d8a99bf66777aed6b858d392b12f4c317da19f8234db4533"}, - {file = "rpds_py-0.19.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88cb4bac7185a9f0168d38c01d7a00addece9822a52870eee26b8d5b61409213"}, - {file = "rpds_py-0.19.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6b130bd4163c93798a6b9bb96be64a7c43e1cec81126ffa7ffaa106e1fc5cef5"}, - {file = "rpds_py-0.19.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:a707b158b4410aefb6b054715545bbb21aaa5d5d0080217290131c49c2124a6e"}, - {file = "rpds_py-0.19.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:dc9ac4659456bde7c567107556ab065801622396b435a3ff213daef27b495388"}, - {file = "rpds_py-0.19.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:81ea573aa46d3b6b3d890cd3c0ad82105985e6058a4baed03cf92518081eec8c"}, - {file = "rpds_py-0.19.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:3f148c3f47f7f29a79c38cc5d020edcb5ca780020fab94dbc21f9af95c463581"}, - {file = "rpds_py-0.19.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:b0906357f90784a66e89ae3eadc2654f36c580a7d65cf63e6a616e4aec3a81be"}, - {file = "rpds_py-0.19.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f629ecc2db6a4736b5ba95a8347b0089240d69ad14ac364f557d52ad68cf94b0"}, - {file = "rpds_py-0.19.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c6feacd1d178c30e5bc37184526e56740342fd2aa6371a28367bad7908d454fc"}, - {file = "rpds_py-0.19.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ae8b6068ee374fdfab63689be0963333aa83b0815ead5d8648389a8ded593378"}, - {file = "rpds_py-0.19.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:78d57546bad81e0da13263e4c9ce30e96dcbe720dbff5ada08d2600a3502e526"}, - {file = "rpds_py-0.19.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a8b6683a37338818646af718c9ca2a07f89787551057fae57c4ec0446dc6224b"}, - {file = "rpds_py-0.19.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e8481b946792415adc07410420d6fc65a352b45d347b78fec45d8f8f0d7496f0"}, - {file = "rpds_py-0.19.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:bec35eb20792ea64c3c57891bc3ca0bedb2884fbac2c8249d9b731447ecde4fa"}, - {file = "rpds_py-0.19.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:aa5476c3e3a402c37779e95f7b4048db2cb5b0ed0b9d006983965e93f40fe05a"}, - {file = "rpds_py-0.19.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:19d02c45f2507b489fd4df7b827940f1420480b3e2e471e952af4d44a1ea8e34"}, - {file = "rpds_py-0.19.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:a3e2fd14c5d49ee1da322672375963f19f32b3d5953f0615b175ff7b9d38daed"}, - {file = "rpds_py-0.19.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:93a91c2640645303e874eada51f4f33351b84b351a689d470f8108d0e0694210"}, - {file = "rpds_py-0.19.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e5b9fc03bf76a94065299d4a2ecd8dfbae4ae8e2e8098bbfa6ab6413ca267709"}, - {file = "rpds_py-0.19.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5a4b07cdf3f84310c08c1de2c12ddadbb7a77568bcb16e95489f9c81074322ed"}, - {file = "rpds_py-0.19.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ba0ed0dc6763d8bd6e5de5cf0d746d28e706a10b615ea382ac0ab17bb7388633"}, - {file = "rpds_py-0.19.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:474bc83233abdcf2124ed3f66230a1c8435896046caa4b0b5ab6013c640803cc"}, - {file = "rpds_py-0.19.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:329c719d31362355a96b435f4653e3b4b061fcc9eba9f91dd40804ca637d914e"}, - {file = "rpds_py-0.19.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:ef9101f3f7b59043a34f1dccbb385ca760467590951952d6701df0da9893ca0c"}, - {file = "rpds_py-0.19.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:0121803b0f424ee2109d6e1f27db45b166ebaa4b32ff47d6aa225642636cd834"}, - {file = "rpds_py-0.19.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:8344127403dea42f5970adccf6c5957a71a47f522171fafaf4c6ddb41b61703a"}, - {file = "rpds_py-0.19.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:443cec402ddd650bb2b885113e1dcedb22b1175c6be223b14246a714b61cd521"}, - {file = "rpds_py-0.19.0.tar.gz", hash = "sha256:4fdc9afadbeb393b4bbbad75481e0ea78e4469f2e1d713a90811700830b553a9"}, + {file = "rpds_py-0.20.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:3ad0fda1635f8439cde85c700f964b23ed5fc2d28016b32b9ee5fe30da5c84e2"}, + {file = "rpds_py-0.20.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9bb4a0d90fdb03437c109a17eade42dfbf6190408f29b2744114d11586611d6f"}, + {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c6377e647bbfd0a0b159fe557f2c6c602c159fc752fa316572f012fc0bf67150"}, + {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:eb851b7df9dda52dc1415ebee12362047ce771fc36914586b2e9fcbd7d293b3e"}, + {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1e0f80b739e5a8f54837be5d5c924483996b603d5502bfff79bf33da06164ee2"}, + {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5a8c94dad2e45324fc74dce25e1645d4d14df9a4e54a30fa0ae8bad9a63928e3"}, + {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8e604fe73ba048c06085beaf51147eaec7df856824bfe7b98657cf436623daf"}, + {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:df3de6b7726b52966edf29663e57306b23ef775faf0ac01a3e9f4012a24a4140"}, + {file = "rpds_py-0.20.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:cf258ede5bc22a45c8e726b29835b9303c285ab46fc7c3a4cc770736b5304c9f"}, + {file = "rpds_py-0.20.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:55fea87029cded5df854ca7e192ec7bdb7ecd1d9a3f63d5c4eb09148acf4a7ce"}, + {file = "rpds_py-0.20.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ae94bd0b2f02c28e199e9bc51485d0c5601f58780636185660f86bf80c89af94"}, + {file = "rpds_py-0.20.0-cp310-none-win32.whl", hash = "sha256:28527c685f237c05445efec62426d285e47a58fb05ba0090a4340b73ecda6dee"}, + {file = "rpds_py-0.20.0-cp310-none-win_amd64.whl", hash = "sha256:238a2d5b1cad28cdc6ed15faf93a998336eb041c4e440dd7f902528b8891b399"}, + {file = "rpds_py-0.20.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:ac2f4f7a98934c2ed6505aead07b979e6f999389f16b714448fb39bbaa86a489"}, + {file = "rpds_py-0.20.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:220002c1b846db9afd83371d08d239fdc865e8f8c5795bbaec20916a76db3318"}, + {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8d7919548df3f25374a1f5d01fbcd38dacab338ef5f33e044744b5c36729c8db"}, + {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:758406267907b3781beee0f0edfe4a179fbd97c0be2e9b1154d7f0a1279cf8e5"}, + {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3d61339e9f84a3f0767b1995adfb171a0d00a1185192718a17af6e124728e0f5"}, + {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1259c7b3705ac0a0bd38197565a5d603218591d3f6cee6e614e380b6ba61c6f6"}, + {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5c1dc0f53856b9cc9a0ccca0a7cc61d3d20a7088201c0937f3f4048c1718a209"}, + {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:7e60cb630f674a31f0368ed32b2a6b4331b8350d67de53c0359992444b116dd3"}, + {file = "rpds_py-0.20.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:dbe982f38565bb50cb7fb061ebf762c2f254ca3d8c20d4006878766e84266272"}, + {file = "rpds_py-0.20.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:514b3293b64187172bc77c8fb0cdae26981618021053b30d8371c3a902d4d5ad"}, + {file = "rpds_py-0.20.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:d0a26ffe9d4dd35e4dfdd1e71f46401cff0181c75ac174711ccff0459135fa58"}, + {file = "rpds_py-0.20.0-cp311-none-win32.whl", hash = "sha256:89c19a494bf3ad08c1da49445cc5d13d8fefc265f48ee7e7556839acdacf69d0"}, + {file = "rpds_py-0.20.0-cp311-none-win_amd64.whl", hash = "sha256:c638144ce971df84650d3ed0096e2ae7af8e62ecbbb7b201c8935c370df00a2c"}, + {file = "rpds_py-0.20.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:a84ab91cbe7aab97f7446652d0ed37d35b68a465aeef8fc41932a9d7eee2c1a6"}, + {file = "rpds_py-0.20.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:56e27147a5a4c2c21633ff8475d185734c0e4befd1c989b5b95a5d0db699b21b"}, + {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2580b0c34583b85efec8c5c5ec9edf2dfe817330cc882ee972ae650e7b5ef739"}, + {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b80d4a7900cf6b66bb9cee5c352b2d708e29e5a37fe9bf784fa97fc11504bf6c"}, + {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:50eccbf054e62a7b2209b28dc7a22d6254860209d6753e6b78cfaeb0075d7bee"}, + {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:49a8063ea4296b3a7e81a5dfb8f7b2d73f0b1c20c2af401fb0cdf22e14711a96"}, + {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ea438162a9fcbee3ecf36c23e6c68237479f89f962f82dae83dc15feeceb37e4"}, + {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:18d7585c463087bddcfa74c2ba267339f14f2515158ac4db30b1f9cbdb62c8ef"}, + {file = "rpds_py-0.20.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d4c7d1a051eeb39f5c9547e82ea27cbcc28338482242e3e0b7768033cb083821"}, + {file = "rpds_py-0.20.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:e4df1e3b3bec320790f699890d41c59d250f6beda159ea3c44c3f5bac1976940"}, + {file = "rpds_py-0.20.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2cf126d33a91ee6eedc7f3197b53e87a2acdac63602c0f03a02dd69e4b138174"}, + {file = "rpds_py-0.20.0-cp312-none-win32.whl", hash = "sha256:8bc7690f7caee50b04a79bf017a8d020c1f48c2a1077ffe172abec59870f1139"}, + {file = "rpds_py-0.20.0-cp312-none-win_amd64.whl", hash = "sha256:0e13e6952ef264c40587d510ad676a988df19adea20444c2b295e536457bc585"}, + {file = "rpds_py-0.20.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:aa9a0521aeca7d4941499a73ad7d4f8ffa3d1affc50b9ea11d992cd7eff18a29"}, + {file = "rpds_py-0.20.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4a1f1d51eccb7e6c32ae89243cb352389228ea62f89cd80823ea7dd1b98e0b91"}, + {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8a86a9b96070674fc88b6f9f71a97d2c1d3e5165574615d1f9168ecba4cecb24"}, + {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6c8ef2ebf76df43f5750b46851ed1cdf8f109d7787ca40035fe19fbdc1acc5a7"}, + {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b74b25f024b421d5859d156750ea9a65651793d51b76a2e9238c05c9d5f203a9"}, + {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:57eb94a8c16ab08fef6404301c38318e2c5a32216bf5de453e2714c964c125c8"}, + {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e1940dae14e715e2e02dfd5b0f64a52e8374a517a1e531ad9412319dc3ac7879"}, + {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d20277fd62e1b992a50c43f13fbe13277a31f8c9f70d59759c88f644d66c619f"}, + {file = "rpds_py-0.20.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:06db23d43f26478303e954c34c75182356ca9aa7797d22c5345b16871ab9c45c"}, + {file = "rpds_py-0.20.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:b2a5db5397d82fa847e4c624b0c98fe59d2d9b7cf0ce6de09e4d2e80f8f5b3f2"}, + {file = "rpds_py-0.20.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5a35df9f5548fd79cb2f52d27182108c3e6641a4feb0f39067911bf2adaa3e57"}, + {file = "rpds_py-0.20.0-cp313-none-win32.whl", hash = "sha256:fd2d84f40633bc475ef2d5490b9c19543fbf18596dcb1b291e3a12ea5d722f7a"}, + {file = "rpds_py-0.20.0-cp313-none-win_amd64.whl", hash = "sha256:9bc2d153989e3216b0559251b0c260cfd168ec78b1fac33dd485750a228db5a2"}, + {file = "rpds_py-0.20.0-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:f2fbf7db2012d4876fb0d66b5b9ba6591197b0f165db8d99371d976546472a24"}, + {file = "rpds_py-0.20.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:1e5f3cd7397c8f86c8cc72d5a791071431c108edd79872cdd96e00abd8497d29"}, + {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ce9845054c13696f7af7f2b353e6b4f676dab1b4b215d7fe5e05c6f8bb06f965"}, + {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c3e130fd0ec56cb76eb49ef52faead8ff09d13f4527e9b0c400307ff72b408e1"}, + {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4b16aa0107ecb512b568244ef461f27697164d9a68d8b35090e9b0c1c8b27752"}, + {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:aa7f429242aae2947246587d2964fad750b79e8c233a2367f71b554e9447949c"}, + {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:af0fc424a5842a11e28956e69395fbbeab2c97c42253169d87e90aac2886d751"}, + {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b8c00a3b1e70c1d3891f0db1b05292747f0dbcfb49c43f9244d04c70fbc40eb8"}, + {file = "rpds_py-0.20.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:40ce74fc86ee4645d0a225498d091d8bc61f39b709ebef8204cb8b5a464d3c0e"}, + {file = "rpds_py-0.20.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:4fe84294c7019456e56d93e8ababdad5a329cd25975be749c3f5f558abb48253"}, + {file = "rpds_py-0.20.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:338ca4539aad4ce70a656e5187a3a31c5204f261aef9f6ab50e50bcdffaf050a"}, + {file = "rpds_py-0.20.0-cp38-none-win32.whl", hash = "sha256:54b43a2b07db18314669092bb2de584524d1ef414588780261e31e85846c26a5"}, + {file = "rpds_py-0.20.0-cp38-none-win_amd64.whl", hash = "sha256:a1862d2d7ce1674cffa6d186d53ca95c6e17ed2b06b3f4c476173565c862d232"}, + {file = "rpds_py-0.20.0-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:3fde368e9140312b6e8b6c09fb9f8c8c2f00999d1823403ae90cc00480221b22"}, + {file = "rpds_py-0.20.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9824fb430c9cf9af743cf7aaf6707bf14323fb51ee74425c380f4c846ea70789"}, + {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:11ef6ce74616342888b69878d45e9f779b95d4bd48b382a229fe624a409b72c5"}, + {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c52d3f2f82b763a24ef52f5d24358553e8403ce05f893b5347098014f2d9eff2"}, + {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9d35cef91e59ebbeaa45214861874bc6f19eb35de96db73e467a8358d701a96c"}, + {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d72278a30111e5b5525c1dd96120d9e958464316f55adb030433ea905866f4de"}, + {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b4c29cbbba378759ac5786730d1c3cb4ec6f8ababf5c42a9ce303dc4b3d08cda"}, + {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6632f2d04f15d1bd6fe0eedd3b86d9061b836ddca4c03d5cf5c7e9e6b7c14580"}, + {file = "rpds_py-0.20.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:d0b67d87bb45ed1cd020e8fbf2307d449b68abc45402fe1a4ac9e46c3c8b192b"}, + {file = "rpds_py-0.20.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:ec31a99ca63bf3cd7f1a5ac9fe95c5e2d060d3c768a09bc1d16e235840861420"}, + {file = "rpds_py-0.20.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:22e6c9976e38f4d8c4a63bd8a8edac5307dffd3ee7e6026d97f3cc3a2dc02a0b"}, + {file = "rpds_py-0.20.0-cp39-none-win32.whl", hash = "sha256:569b3ea770c2717b730b61998b6c54996adee3cef69fc28d444f3e7920313cf7"}, + {file = "rpds_py-0.20.0-cp39-none-win_amd64.whl", hash = "sha256:e6900ecdd50ce0facf703f7a00df12374b74bbc8ad9fe0f6559947fb20f82364"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:617c7357272c67696fd052811e352ac54ed1d9b49ab370261a80d3b6ce385045"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:9426133526f69fcaba6e42146b4e12d6bc6c839b8b555097020e2b78ce908dcc"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:deb62214c42a261cb3eb04d474f7155279c1a8a8c30ac89b7dcb1721d92c3c02"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fcaeb7b57f1a1e071ebd748984359fef83ecb026325b9d4ca847c95bc7311c92"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d454b8749b4bd70dd0a79f428731ee263fa6995f83ccb8bada706e8d1d3ff89d"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d807dc2051abe041b6649681dce568f8e10668e3c1c6543ebae58f2d7e617855"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c3c20f0ddeb6e29126d45f89206b8291352b8c5b44384e78a6499d68b52ae511"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b7f19250ceef892adf27f0399b9e5afad019288e9be756d6919cb58892129f51"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:4f1ed4749a08379555cebf4650453f14452eaa9c43d0a95c49db50c18b7da075"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:dcedf0b42bcb4cfff4101d7771a10532415a6106062f005ab97d1d0ab5681c60"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:39ed0d010457a78f54090fafb5d108501b5aa5604cc22408fc1c0c77eac14344"}, + {file = "rpds_py-0.20.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:bb273176be34a746bdac0b0d7e4e2c467323d13640b736c4c477881a3220a989"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:f918a1a130a6dfe1d7fe0f105064141342e7dd1611f2e6a21cd2f5c8cb1cfb3e"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:f60012a73aa396be721558caa3a6fd49b3dd0033d1675c6d59c4502e870fcf0c"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3d2b1ad682a3dfda2a4e8ad8572f3100f95fad98cb99faf37ff0ddfe9cbf9d03"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:614fdafe9f5f19c63ea02817fa4861c606a59a604a77c8cdef5aa01d28b97921"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fa518bcd7600c584bf42e6617ee8132869e877db2f76bcdc281ec6a4113a53ab"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f0475242f447cc6cb8a9dd486d68b2ef7fbee84427124c232bff5f63b1fe11e5"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f90a4cd061914a60bd51c68bcb4357086991bd0bb93d8aa66a6da7701370708f"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:def7400461c3a3f26e49078302e1c1b38f6752342c77e3cf72ce91ca69fb1bc1"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:65794e4048ee837494aea3c21a28ad5fc080994dfba5b036cf84de37f7ad5074"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:faefcc78f53a88f3076b7f8be0a8f8d35133a3ecf7f3770895c25f8813460f08"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:5b4f105deeffa28bbcdff6c49b34e74903139afa690e35d2d9e3c2c2fba18cec"}, + {file = "rpds_py-0.20.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:fdfc3a892927458d98f3d55428ae46b921d1f7543b89382fdb483f5640daaec8"}, + {file = "rpds_py-0.20.0.tar.gz", hash = "sha256:d72a210824facfdaf8768cf2d7ca25a042c30320b3020de2fa04640920d4e121"}, ] [[package]] @@ -4116,13 +4184,13 @@ urllib3 = "*" [[package]] name = "sentry-sdk" -version = "1.45.0" +version = "1.45.1" description = "Python client for Sentry (https://sentry.io)" optional = false python-versions = "*" files = [ - {file = "sentry-sdk-1.45.0.tar.gz", hash = "sha256:509aa9678c0512344ca886281766c2e538682f8acfa50fd8d405f8c417ad0625"}, - {file = "sentry_sdk-1.45.0-py2.py3-none-any.whl", hash = "sha256:1ce29e30240cc289a027011103a8c83885b15ef2f316a60bcc7c5300afa144f1"}, + {file = "sentry_sdk-1.45.1-py2.py3-none-any.whl", hash = "sha256:608887855ccfe39032bfd03936e3a1c4f4fc99b3a4ac49ced54a4220de61c9c1"}, + {file = "sentry_sdk-1.45.1.tar.gz", hash = "sha256:a16c997c0f4e3df63c0fc5e4207ccb1ab37900433e0f72fef88315d317829a26"}, ] [package.dependencies] @@ -4166,19 +4234,23 @@ tornado = ["tornado (>=5)"] [[package]] name = "setuptools" -version = "71.1.0" +version = "75.1.0" description = "Easily download, build, install, upgrade, and uninstall Python packages" optional = false python-versions = ">=3.8" files = [ - {file = "setuptools-71.1.0-py3-none-any.whl", hash = "sha256:33874fdc59b3188304b2e7c80d9029097ea31627180896fb549c578ceb8a0855"}, - {file = "setuptools-71.1.0.tar.gz", hash = "sha256:032d42ee9fb536e33087fb66cac5f840eb9391ed05637b3f2a76a7c8fb477936"}, + {file = "setuptools-75.1.0-py3-none-any.whl", hash = "sha256:35ab7fd3bcd95e6b7fd704e4a1539513edad446c097797f2985e0e4b960772f2"}, + {file = "setuptools-75.1.0.tar.gz", hash = "sha256:d59a21b17a275fb872a9c3dae73963160ae079f1049ed956880cd7c09b120538"}, ] [package.extras] -core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.text (>=3.7)", "more-itertools (>=8.8)", "ordered-set (>=3.1.1)", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] -doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier"] -test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "importlib-metadata", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "mypy (==1.11.*)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-home (>=0.5)", "pytest-mypy", "pytest-perf", "pytest-ruff (<0.4)", "pytest-ruff (>=0.2.1)", "pytest-ruff (>=0.3.2)", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] +check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.5.2)"] +core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.collections", "jaraco.functools", "jaraco.text (>=3.7)", "more-itertools", "more-itertools (>=8.8)", "packaging", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"] +cover = ["pytest-cov"] +doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"] +enabler = ["pytest-enabler (>=2.2)"] +test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"] +type = ["importlib-metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.11.*)", "pytest-mypy"] [[package]] name = "sickle" @@ -4197,109 +4269,121 @@ requests = ">=1.1.0" [[package]] name = "simplejson" -version = "3.19.2" +version = "3.19.3" description = "Simple, fast, extensible JSON encoder/decoder for Python" optional = false -python-versions = ">=2.5, !=3.0.*, !=3.1.*, !=3.2.*" -files = [ - {file = "simplejson-3.19.2-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:3471e95110dcaf901db16063b2e40fb394f8a9e99b3fe9ee3acc6f6ef72183a2"}, - {file = "simplejson-3.19.2-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:3194cd0d2c959062b94094c0a9f8780ffd38417a5322450a0db0ca1a23e7fbd2"}, - {file = "simplejson-3.19.2-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:8a390e56a7963e3946ff2049ee1eb218380e87c8a0e7608f7f8790ba19390867"}, - {file = "simplejson-3.19.2-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:1537b3dd62d8aae644f3518c407aa8469e3fd0f179cdf86c5992792713ed717a"}, - {file = "simplejson-3.19.2-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:a8617625369d2d03766413bff9e64310feafc9fc4f0ad2b902136f1a5cd8c6b0"}, - {file = "simplejson-3.19.2-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:2c433a412e96afb9a3ce36fa96c8e61a757af53e9c9192c97392f72871e18e69"}, - {file = "simplejson-3.19.2-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:f1c70249b15e4ce1a7d5340c97670a95f305ca79f376887759b43bb33288c973"}, - {file = "simplejson-3.19.2-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:287e39ba24e141b046812c880f4619d0ca9e617235d74abc27267194fc0c7835"}, - {file = "simplejson-3.19.2-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:6f0a0b41dd05eefab547576bed0cf066595f3b20b083956b1405a6f17d1be6ad"}, - {file = "simplejson-3.19.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:2f98d918f7f3aaf4b91f2b08c0c92b1774aea113334f7cde4fe40e777114dbe6"}, - {file = "simplejson-3.19.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7d74beca677623481810c7052926365d5f07393c72cbf62d6cce29991b676402"}, - {file = "simplejson-3.19.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:7f2398361508c560d0bf1773af19e9fe644e218f2a814a02210ac2c97ad70db0"}, - {file = "simplejson-3.19.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6ad331349b0b9ca6da86064a3599c425c7a21cd41616e175ddba0866da32df48"}, - {file = "simplejson-3.19.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:332c848f02d71a649272b3f1feccacb7e4f7e6de4a2e6dc70a32645326f3d428"}, - {file = "simplejson-3.19.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:25785d038281cd106c0d91a68b9930049b6464288cea59ba95b35ee37c2d23a5"}, - {file = "simplejson-3.19.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:18955c1da6fc39d957adfa346f75226246b6569e096ac9e40f67d102278c3bcb"}, - {file = "simplejson-3.19.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:11cc3afd8160d44582543838b7e4f9aa5e97865322844b75d51bf4e0e413bb3e"}, - {file = "simplejson-3.19.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:b01fda3e95d07a6148702a641e5e293b6da7863f8bc9b967f62db9461330562c"}, - {file = "simplejson-3.19.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:778331444917108fa8441f59af45886270d33ce8a23bfc4f9b192c0b2ecef1b3"}, - {file = "simplejson-3.19.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:9eb117db8d7ed733a7317c4215c35993b815bf6aeab67523f1f11e108c040672"}, - {file = "simplejson-3.19.2-cp310-cp310-win32.whl", hash = "sha256:39b6d79f5cbfa3eb63a869639cfacf7c41d753c64f7801efc72692c1b2637ac7"}, - {file = "simplejson-3.19.2-cp310-cp310-win_amd64.whl", hash = "sha256:5675e9d8eeef0aa06093c1ff898413ade042d73dc920a03e8cea2fb68f62445a"}, - {file = "simplejson-3.19.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ed628c1431100b0b65387419551e822987396bee3c088a15d68446d92f554e0c"}, - {file = "simplejson-3.19.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:adcb3332979cbc941b8fff07181f06d2b608625edc0a4d8bc3ffc0be414ad0c4"}, - {file = "simplejson-3.19.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:08889f2f597ae965284d7b52a5c3928653a9406d88c93e3161180f0abc2433ba"}, - {file = "simplejson-3.19.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ef7938a78447174e2616be223f496ddccdbf7854f7bf2ce716dbccd958cc7d13"}, - {file = "simplejson-3.19.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a970a2e6d5281d56cacf3dc82081c95c1f4da5a559e52469287457811db6a79b"}, - {file = "simplejson-3.19.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:554313db34d63eac3b3f42986aa9efddd1a481169c12b7be1e7512edebff8eaf"}, - {file = "simplejson-3.19.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4d36081c0b1c12ea0ed62c202046dca11438bee48dd5240b7c8de8da62c620e9"}, - {file = "simplejson-3.19.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:a3cd18e03b0ee54ea4319cdcce48357719ea487b53f92a469ba8ca8e39df285e"}, - {file = "simplejson-3.19.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:66e5dc13bfb17cd6ee764fc96ccafd6e405daa846a42baab81f4c60e15650414"}, - {file = "simplejson-3.19.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:972a7833d4a1fcf7a711c939e315721a88b988553fc770a5b6a5a64bd6ebeba3"}, - {file = "simplejson-3.19.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3e74355cb47e0cd399ead3477e29e2f50e1540952c22fb3504dda0184fc9819f"}, - {file = "simplejson-3.19.2-cp311-cp311-win32.whl", hash = "sha256:1dd4f692304854352c3e396e9b5f0a9c9e666868dd0bdc784e2ac4c93092d87b"}, - {file = "simplejson-3.19.2-cp311-cp311-win_amd64.whl", hash = "sha256:9300aee2a8b5992d0f4293d88deb59c218989833e3396c824b69ba330d04a589"}, - {file = "simplejson-3.19.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:b8d940fd28eb34a7084877747a60873956893e377f15a32ad445fe66c972c3b8"}, - {file = "simplejson-3.19.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:4969d974d9db826a2c07671273e6b27bc48e940738d768fa8f33b577f0978378"}, - {file = "simplejson-3.19.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c594642d6b13d225e10df5c16ee15b3398e21a35ecd6aee824f107a625690374"}, - {file = "simplejson-3.19.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e2f5a398b5e77bb01b23d92872255e1bcb3c0c719a3be40b8df146570fe7781a"}, - {file = "simplejson-3.19.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:176a1b524a3bd3314ed47029a86d02d5a95cc0bee15bd3063a1e1ec62b947de6"}, - {file = "simplejson-3.19.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3c7363a8cb8c5238878ec96c5eb0fc5ca2cb11fc0c7d2379863d342c6ee367a"}, - {file = "simplejson-3.19.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:346820ae96aa90c7d52653539a57766f10f33dd4be609206c001432b59ddf89f"}, - {file = "simplejson-3.19.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:de9a2792612ec6def556d1dc621fd6b2073aff015d64fba9f3e53349ad292734"}, - {file = "simplejson-3.19.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:1c768e7584c45094dca4b334af361e43b0aaa4844c04945ac7d43379eeda9bc2"}, - {file = "simplejson-3.19.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:9652e59c022e62a5b58a6f9948b104e5bb96d3b06940c6482588176f40f4914b"}, - {file = "simplejson-3.19.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:9c1a4393242e321e344213a90a1e3bf35d2f624aa8b8f6174d43e3c6b0e8f6eb"}, - {file = "simplejson-3.19.2-cp312-cp312-win32.whl", hash = "sha256:7cb98be113911cb0ad09e5523d0e2a926c09a465c9abb0784c9269efe4f95917"}, - {file = "simplejson-3.19.2-cp312-cp312-win_amd64.whl", hash = "sha256:6779105d2fcb7fcf794a6a2a233787f6bbd4731227333a072d8513b252ed374f"}, - {file = "simplejson-3.19.2-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:061e81ea2d62671fa9dea2c2bfbc1eec2617ae7651e366c7b4a2baf0a8c72cae"}, - {file = "simplejson-3.19.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4280e460e51f86ad76dc456acdbfa9513bdf329556ffc8c49e0200878ca57816"}, - {file = "simplejson-3.19.2-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:11c39fbc4280d7420684494373b7c5904fa72a2b48ef543a56c2d412999c9e5d"}, - {file = "simplejson-3.19.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bccb3e88ec26ffa90f72229f983d3a5d1155e41a1171190fa723d4135523585b"}, - {file = "simplejson-3.19.2-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1bb5b50dc6dd671eb46a605a3e2eb98deb4a9af787a08fcdddabe5d824bb9664"}, - {file = "simplejson-3.19.2-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:d94245caa3c61f760c4ce4953cfa76e7739b6f2cbfc94cc46fff6c050c2390c5"}, - {file = "simplejson-3.19.2-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:d0e5ffc763678d48ecc8da836f2ae2dd1b6eb2d27a48671066f91694e575173c"}, - {file = "simplejson-3.19.2-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:d222a9ed082cd9f38b58923775152003765016342a12f08f8c123bf893461f28"}, - {file = "simplejson-3.19.2-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:8434dcdd347459f9fd9c526117c01fe7ca7b016b6008dddc3c13471098f4f0dc"}, - {file = "simplejson-3.19.2-cp36-cp36m-win32.whl", hash = "sha256:c9ac1c2678abf9270e7228133e5b77c6c3c930ad33a3c1dfbdd76ff2c33b7b50"}, - {file = "simplejson-3.19.2-cp36-cp36m-win_amd64.whl", hash = "sha256:92c4a4a2b1f4846cd4364855cbac83efc48ff5a7d7c06ba014c792dd96483f6f"}, - {file = "simplejson-3.19.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:0d551dc931638e2102b8549836a1632e6e7cf620af3d093a7456aa642bff601d"}, - {file = "simplejson-3.19.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:73a8a4653f2e809049999d63530180d7b5a344b23a793502413ad1ecea9a0290"}, - {file = "simplejson-3.19.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:40847f617287a38623507d08cbcb75d51cf9d4f9551dd6321df40215128325a3"}, - {file = "simplejson-3.19.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:be893258d5b68dd3a8cba8deb35dc6411db844a9d35268a8d3793b9d9a256f80"}, - {file = "simplejson-3.19.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e9eb3cff1b7d71aa50c89a0536f469cb8d6dcdd585d8f14fb8500d822f3bdee4"}, - {file = "simplejson-3.19.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:d0f402e787e6e7ee7876c8b05e2fe6464820d9f35ba3f172e95b5f8b699f6c7f"}, - {file = "simplejson-3.19.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:fbbcc6b0639aa09b9649f36f1bcb347b19403fe44109948392fbb5ea69e48c3e"}, - {file = "simplejson-3.19.2-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:2fc697be37585eded0c8581c4788fcfac0e3f84ca635b73a5bf360e28c8ea1a2"}, - {file = "simplejson-3.19.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:0b0a3eb6dd39cce23801a50c01a0976971498da49bc8a0590ce311492b82c44b"}, - {file = "simplejson-3.19.2-cp37-cp37m-win32.whl", hash = "sha256:49f9da0d6cd17b600a178439d7d2d57c5ef01f816b1e0e875e8e8b3b42db2693"}, - {file = "simplejson-3.19.2-cp37-cp37m-win_amd64.whl", hash = "sha256:c87c22bd6a987aca976e3d3e23806d17f65426191db36d40da4ae16a6a494cbc"}, - {file = "simplejson-3.19.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:9e4c166f743bb42c5fcc60760fb1c3623e8fda94f6619534217b083e08644b46"}, - {file = "simplejson-3.19.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0a48679310e1dd5c9f03481799311a65d343748fe86850b7fb41df4e2c00c087"}, - {file = "simplejson-3.19.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:c0521e0f07cb56415fdb3aae0bbd8701eb31a9dfef47bb57206075a0584ab2a2"}, - {file = "simplejson-3.19.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0d2d5119b1d7a1ed286b8af37357116072fc96700bce3bec5bb81b2e7057ab41"}, - {file = "simplejson-3.19.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2c1467d939932901a97ba4f979e8f2642415fcf02ea12f53a4e3206c9c03bc17"}, - {file = "simplejson-3.19.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:49aaf4546f6023c44d7e7136be84a03a4237f0b2b5fb2b17c3e3770a758fc1a0"}, - {file = "simplejson-3.19.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:60848ab779195b72382841fc3fa4f71698a98d9589b0a081a9399904487b5832"}, - {file = "simplejson-3.19.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:0436a70d8eb42bea4fe1a1c32d371d9bb3b62c637969cb33970ad624d5a3336a"}, - {file = "simplejson-3.19.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:49e0e3faf3070abdf71a5c80a97c1afc059b4f45a5aa62de0c2ca0444b51669b"}, - {file = "simplejson-3.19.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ff836cd4041e16003549449cc0a5e372f6b6f871eb89007ab0ee18fb2800fded"}, - {file = "simplejson-3.19.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:3848427b65e31bea2c11f521b6fc7a3145d6e501a1038529da2391aff5970f2f"}, - {file = "simplejson-3.19.2-cp38-cp38-win32.whl", hash = "sha256:3f39bb1f6e620f3e158c8b2eaf1b3e3e54408baca96a02fe891794705e788637"}, - {file = "simplejson-3.19.2-cp38-cp38-win_amd64.whl", hash = "sha256:0405984f3ec1d3f8777c4adc33eac7ab7a3e629f3b1c05fdded63acc7cf01137"}, - {file = "simplejson-3.19.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:445a96543948c011a3a47c8e0f9d61e9785df2544ea5be5ab3bc2be4bd8a2565"}, - {file = "simplejson-3.19.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4a8c3cc4f9dfc33220246760358c8265dad6e1104f25f0077bbca692d616d358"}, - {file = "simplejson-3.19.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:af9c7e6669c4d0ad7362f79cb2ab6784d71147503e62b57e3d95c4a0f222c01c"}, - {file = "simplejson-3.19.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:064300a4ea17d1cd9ea1706aa0590dcb3be81112aac30233823ee494f02cb78a"}, - {file = "simplejson-3.19.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9453419ea2ab9b21d925d0fd7e3a132a178a191881fab4169b6f96e118cc25bb"}, - {file = "simplejson-3.19.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9e038c615b3906df4c3be8db16b3e24821d26c55177638ea47b3f8f73615111c"}, - {file = "simplejson-3.19.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:16ca9c90da4b1f50f089e14485db8c20cbfff2d55424062791a7392b5a9b3ff9"}, - {file = "simplejson-3.19.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:1018bd0d70ce85f165185d2227c71e3b1e446186f9fa9f971b69eee223e1e3cd"}, - {file = "simplejson-3.19.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:e8dd53a8706b15bc0e34f00e6150fbefb35d2fd9235d095b4f83b3c5ed4fa11d"}, - {file = "simplejson-3.19.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:2d022b14d7758bfb98405672953fe5c202ea8a9ccf9f6713c5bd0718eba286fd"}, - {file = "simplejson-3.19.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:febffa5b1eda6622d44b245b0685aff6fb555ce0ed734e2d7b1c3acd018a2cff"}, - {file = "simplejson-3.19.2-cp39-cp39-win32.whl", hash = "sha256:4edcd0bf70087b244ba77038db23cd98a1ace2f91b4a3ecef22036314d77ac23"}, - {file = "simplejson-3.19.2-cp39-cp39-win_amd64.whl", hash = "sha256:aad7405c033d32c751d98d3a65801e2797ae77fac284a539f6c3a3e13005edc4"}, - {file = "simplejson-3.19.2-py3-none-any.whl", hash = "sha256:bcedf4cae0d47839fee7de344f96b5694ca53c786f28b5f773d4f0b265a159eb"}, - {file = "simplejson-3.19.2.tar.gz", hash = "sha256:9eb442a2442ce417801c912df68e1f6ccfcd41577ae7274953ab3ad24ef7d82c"}, +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.5" +files = [ + {file = "simplejson-3.19.3-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:f39caec26007a2d0efab6b8b1d74873ede9351962707afab622cc2285dd26ed0"}, + {file = "simplejson-3.19.3-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:83c87706265ae3028e8460d08b05f30254c569772e859e5ba61fe8af2c883468"}, + {file = "simplejson-3.19.3-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:0b5ddd2c7d1d3f4d23224bc8a04bbf1430ae9a8149c05b90f8fc610f7f857a23"}, + {file = "simplejson-3.19.3-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:ad0e0b1ce9bd3edb5cf64b5b5b76eacbfdac8c5367153aeeec8a8b1407f68342"}, + {file = "simplejson-3.19.3-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:93be280fc69a952c76e261036312c20b910e7fa9e234f1d89bdfe3fa34f8a023"}, + {file = "simplejson-3.19.3-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:6d43e24b88c80f997081503f693be832fc90854f278df277dd54f8a4c847ab61"}, + {file = "simplejson-3.19.3-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:2876027ebdd599d730d36464debe84619b0368e9a642ca6e7c601be55aed439e"}, + {file = "simplejson-3.19.3-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:0766ca6222b410e08e0053a0dda3606cafb3973d5d00538307f631bb59743396"}, + {file = "simplejson-3.19.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:50d8b742d74c449c4dcac570d08ce0f21f6a149d2d9cf7652dbf2ba9a1bc729a"}, + {file = "simplejson-3.19.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:dd011fc3c1d88b779645495fdb8189fb318a26981eebcce14109460e062f209b"}, + {file = "simplejson-3.19.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:637c4d4b81825c1f4d651e56210bd35b5604034b192b02d2d8f17f7ce8c18f42"}, + {file = "simplejson-3.19.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2f56eb03bc9e432bb81adc8ecff2486d39feb371abb442964ffb44f6db23b332"}, + {file = "simplejson-3.19.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ef59a53be400c1fad2c914b8d74c9d42384fed5174f9321dd021b7017fd40270"}, + {file = "simplejson-3.19.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:72e8abbc86fcac83629a030888b45fed3a404d54161118be52cb491cd6975d3e"}, + {file = "simplejson-3.19.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8efb03ca77bd7725dfacc9254df00d73e6f43013cf39bd37ef1a8ed0ebb5165"}, + {file = "simplejson-3.19.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:add8850db04b98507a8b62d248a326ecc8561e6d24336d1ca5c605bbfaab4cad"}, + {file = "simplejson-3.19.3-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:fc3dc9fb413fc34c396f52f4c87de18d0bd5023804afa8ab5cc224deeb6a9900"}, + {file = "simplejson-3.19.3-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:4dfa420bb9225dd33b6efdabde7c6a671b51150b9b1d9c4e5cd74d3b420b3fe1"}, + {file = "simplejson-3.19.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7b5c472099b39b274dcde27f1113db8d818c9aa3ba8f78cbb8ad04a4c1ac2118"}, + {file = "simplejson-3.19.3-cp310-cp310-win32.whl", hash = "sha256:817abad79241ed4a507b3caf4d3f2be5079f39d35d4c550a061988986bffd2ec"}, + {file = "simplejson-3.19.3-cp310-cp310-win_amd64.whl", hash = "sha256:dd5b9b1783e14803e362a558680d88939e830db2466f3fa22df5c9319f8eea94"}, + {file = "simplejson-3.19.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:e88abff510dcff903a18d11c2a75f9964e768d99c8d147839913886144b2065e"}, + {file = "simplejson-3.19.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:934a50a614fb831614db5dbfba35127ee277624dda4d15895c957d2f5d48610c"}, + {file = "simplejson-3.19.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:212fce86a22188b0c7f53533b0f693ea9605c1a0f02c84c475a30616f55a744d"}, + {file = "simplejson-3.19.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d9e8f836688a8fabe6a6b41b334aa550a6823f7b4ac3d3712fc0ad8655be9a8"}, + {file = "simplejson-3.19.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:23228037dc5d41c36666384062904d74409a62f52283d9858fa12f4c22cffad1"}, + {file = "simplejson-3.19.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0791f64fed7d4abad639491f8a6b1ba56d3c604eb94b50f8697359b92d983f36"}, + {file = "simplejson-3.19.3-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c4f614581b61a26fbbba232a1391f6cee82bc26f2abbb6a0b44a9bba25c56a1c"}, + {file = "simplejson-3.19.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1df0aaf1cb787fdf34484ed4a1f0c545efd8811f6028623290fef1a53694e597"}, + {file = "simplejson-3.19.3-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:951095be8d4451a7182403354c22ec2de3e513e0cc40408b689af08d02611588"}, + {file = "simplejson-3.19.3-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:2a954b30810988feeabde843e3263bf187697e0eb5037396276db3612434049b"}, + {file = "simplejson-3.19.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:c40df31a75de98db2cdfead6074d4449cd009e79f54c1ebe5e5f1f153c68ad20"}, + {file = "simplejson-3.19.3-cp311-cp311-win32.whl", hash = "sha256:7e2a098c21ad8924076a12b6c178965d88a0ad75d1de67e1afa0a66878f277a5"}, + {file = "simplejson-3.19.3-cp311-cp311-win_amd64.whl", hash = "sha256:c9bedebdc5fdad48af8783022bae307746d54006b783007d1d3c38e10872a2c6"}, + {file = "simplejson-3.19.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:66a0399e21c2112acacfebf3d832ebe2884f823b1c7e6d1363f2944f1db31a99"}, + {file = "simplejson-3.19.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:6ef9383c5e05f445be60f1735c1816163c874c0b1ede8bb4390aff2ced34f333"}, + {file = "simplejson-3.19.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:42e5acf80d4d971238d4df97811286a044d720693092b20a56d5e56b7dcc5d09"}, + {file = "simplejson-3.19.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d0b0efc7279d768db7c74d3d07f0b5c81280d16ae3fb14e9081dc903e8360771"}, + {file = "simplejson-3.19.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0552eb06e7234da892e1d02365cd2b7b2b1f8233aa5aabdb2981587b7cc92ea0"}, + {file = "simplejson-3.19.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5bf6a3b9a7d7191471b464fe38f684df10eb491ec9ea454003edb45a011ab187"}, + {file = "simplejson-3.19.3-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7017329ca8d4dca94ad5e59f496e5fc77630aecfc39df381ffc1d37fb6b25832"}, + {file = "simplejson-3.19.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:67a20641afebf4cfbcff50061f07daad1eace6e7b31d7622b6fa2c40d43900ba"}, + {file = "simplejson-3.19.3-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:dd6a7dabcc4c32daf601bc45e01b79175dde4b52548becea4f9545b0a4428169"}, + {file = "simplejson-3.19.3-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:08f9b443a94e72dd02c87098c96886d35790e79e46b24e67accafbf13b73d43b"}, + {file = "simplejson-3.19.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:fa97278ae6614346b5ca41a45a911f37a3261b57dbe4a00602048652c862c28b"}, + {file = "simplejson-3.19.3-cp312-cp312-win32.whl", hash = "sha256:ef28c3b328d29b5e2756903aed888960bc5df39b4c2eab157ae212f70ed5bf74"}, + {file = "simplejson-3.19.3-cp312-cp312-win_amd64.whl", hash = "sha256:1e662336db50ad665777e6548b5076329a94a0c3d4a0472971c588b3ef27de3a"}, + {file = "simplejson-3.19.3-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:0959e6cb62e3994b5a40e31047ff97ef5c4138875fae31659bead691bed55896"}, + {file = "simplejson-3.19.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:7a7bfad839c624e139a4863007233a3f194e7c51551081f9789cba52e4da5167"}, + {file = "simplejson-3.19.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:afab2f7f2486a866ff04d6d905e9386ca6a231379181a3838abce1f32fbdcc37"}, + {file = "simplejson-3.19.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d00313681015ac498e1736b304446ee6d1c72c5b287cd196996dad84369998f7"}, + {file = "simplejson-3.19.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d936ae682d5b878af9d9eb4d8bb1fdd5e41275c8eb59ceddb0aeed857bb264a2"}, + {file = "simplejson-3.19.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:01c6657485393f2e9b8177c77a7634f13ebe70d5e6de150aae1677d91516ce6b"}, + {file = "simplejson-3.19.3-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2a6a750d3c7461b1c47cfc6bba8d9e57a455e7c5f80057d2a82f738040dd1129"}, + {file = "simplejson-3.19.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:ea7a4a998c87c5674a27089e022110a1a08a7753f21af3baf09efe9915c23c3c"}, + {file = "simplejson-3.19.3-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:6300680d83a399be2b8f3b0ef7ef90b35d2a29fe6e9c21438097e0938bbc1564"}, + {file = "simplejson-3.19.3-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:ab69f811a660c362651ae395eba8ce84f84c944cea0df5718ea0ba9d1e4e7252"}, + {file = "simplejson-3.19.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:256e09d0f94d9c3d177d9e95fd27a68c875a4baa2046633df387b86b652f5747"}, + {file = "simplejson-3.19.3-cp313-cp313-win32.whl", hash = "sha256:2c78293470313aefa9cfc5e3f75ca0635721fb016fb1121c1c5b0cb8cc74712a"}, + {file = "simplejson-3.19.3-cp313-cp313-win_amd64.whl", hash = "sha256:3bbcdc438dc1683b35f7a8dc100960c721f922f9ede8127f63bed7dfded4c64c"}, + {file = "simplejson-3.19.3-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:89b35433186e977fa86ff1fd179c1fadff39cfa3afa1648dab0b6ca53153acd9"}, + {file = "simplejson-3.19.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d43c2d7504eda566c50203cdc9dc043aff6f55f1b7dae0dcd79dfefef9159d1c"}, + {file = "simplejson-3.19.3-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6890ff9cf0bd2e1d487e2a8869ebd620a44684c0a9667fa5ee751d099d5d84c8"}, + {file = "simplejson-3.19.3-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1069143a8fb3905e1bc0696c62be7e3adf812e9f1976ac9ae15b05112ff57cc9"}, + {file = "simplejson-3.19.3-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cb324bb903330cbb35d87cce367a12631cd5720afa06e5b9c906483970946da6"}, + {file = "simplejson-3.19.3-cp36-cp36m-musllinux_1_2_aarch64.whl", hash = "sha256:0a32859d45d7b85fb803bb68f6bee14526991a1190269116c33399fa0daf9bbf"}, + {file = "simplejson-3.19.3-cp36-cp36m-musllinux_1_2_i686.whl", hash = "sha256:23833ee7e791ec968b744dfee2a2d39df7152050051096caf4296506d75608d8"}, + {file = "simplejson-3.19.3-cp36-cp36m-musllinux_1_2_ppc64le.whl", hash = "sha256:d73efb03c5b39249c82488a994f0998f9e4399e3d085209d2120503305ba77a8"}, + {file = "simplejson-3.19.3-cp36-cp36m-musllinux_1_2_x86_64.whl", hash = "sha256:7923878b7a0142d39763ec2dbecff3053c1bedd3653585a8474666e420fe83f5"}, + {file = "simplejson-3.19.3-cp36-cp36m-win32.whl", hash = "sha256:7355c7203353c36d46c4e7b6055293b3d2be097bbc5e2874a2b8a7259f0325dd"}, + {file = "simplejson-3.19.3-cp36-cp36m-win_amd64.whl", hash = "sha256:d1b8b4d6379fe55f471914345fe6171d81a18649dacf3248abfc9c349b4442eb"}, + {file = "simplejson-3.19.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:d36608557b4dcd7a62c29ad4cd7c5a1720bbf7dc942eff9dc42d2c542a5f042d"}, + {file = "simplejson-3.19.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7137e69c6781ecf23afab064be94a277236c9cba31aa48ff1a0ec3995c69171e"}, + {file = "simplejson-3.19.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:76f8c28fe2d426182405b18ddf3001fce47835a557dc15c3d8bdea01c03361da"}, + {file = "simplejson-3.19.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ff7bc1bbdaa3e487c9469128bf39408e91f5573901cb852e03af378d3582c52d"}, + {file = "simplejson-3.19.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0782cb9bf827f0c488b6aa0f2819f618308a3caf2973cfd792e45d631bec4db"}, + {file = "simplejson-3.19.3-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:6fea0716c593dabb4392c4996d4e902a83b2428e6da82938cf28a523a11eb277"}, + {file = "simplejson-3.19.3-cp37-cp37m-musllinux_1_2_i686.whl", hash = "sha256:8f41bb5370b34f63171e65fdb00e12be1d83675cecb23e627df26f4c88dfc021"}, + {file = "simplejson-3.19.3-cp37-cp37m-musllinux_1_2_ppc64le.whl", hash = "sha256:37105d1d708365b91165e1a6e505bdecc88637091348cf4b6adcdcb4f5a5fb8b"}, + {file = "simplejson-3.19.3-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:b9198c1f1f8910a3b86b60f4fe2556d9d28d3fefe35bffe6be509a27402e694d"}, + {file = "simplejson-3.19.3-cp37-cp37m-win32.whl", hash = "sha256:bc164f32dd9691e7082ce5df24b4cf8c6c394bbf9bdeeb5d843127cd07ab8ad2"}, + {file = "simplejson-3.19.3-cp37-cp37m-win_amd64.whl", hash = "sha256:1bd41f2cb1a2c57656ceff67b12d005cb255c728265e222027ad73193a04005a"}, + {file = "simplejson-3.19.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:0733ecd95ae03ae718ec74aad818f5af5f3155d596f7b242acbc1621e765e5fb"}, + {file = "simplejson-3.19.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:4a0710d1a5e41c4f829caa1572793dd3130c8d65c2b194c24ff29c4c305c26e0"}, + {file = "simplejson-3.19.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:1a53a07320c5ff574d8b1a89c937ce33608832f166f39dff0581ac43dc979abd"}, + {file = "simplejson-3.19.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1773cabfba66a6337b547e45dafbd471b09487370bcab75bd28f626520410d29"}, + {file = "simplejson-3.19.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7c0104b4b7d2c75ccedbf1d9d5a3bd2daa75e51053935a44ba012e2fd4c43752"}, + {file = "simplejson-3.19.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1c49eeb94b8f09dc8a5843c156a22b8bde6aa1ddc65ca8ddc62dddcc001e6a2d"}, + {file = "simplejson-3.19.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3dc5c1a85ff388e98ea877042daec3d157b6db0d85bac6ba5498034689793e7e"}, + {file = "simplejson-3.19.3-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:49549e3d81ab4a58424405aa545602674d8c35c20e986b42bb8668e782a94bac"}, + {file = "simplejson-3.19.3-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:e1a1452ad5723ff129b081e3c8aa4ba56b8734fee4223355ed7b815a7ece69bc"}, + {file = "simplejson-3.19.3-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:d0d5a63f1768fed7e78cf55712dee81f5a345e34d34224f3507ebf71df2b754d"}, + {file = "simplejson-3.19.3-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:7e062767ac165df9a46963f5735aa4eee0089ec1e48b3f2ec46182754b96f55e"}, + {file = "simplejson-3.19.3-cp38-cp38-win32.whl", hash = "sha256:56134bbafe458a7b21f6fddbf889d36bec6d903718f4430768e3af822f8e27c2"}, + {file = "simplejson-3.19.3-cp38-cp38-win_amd64.whl", hash = "sha256:bcde83a553a96dc7533736c547bddaa35414a2566ab0ecf7d3964fc4bdb84c11"}, + {file = "simplejson-3.19.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:b5587feda2b65a79da985ae6d116daf6428bf7489992badc29fc96d16cd27b05"}, + {file = "simplejson-3.19.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:e0d2b00ecbcd1a3c5ea1abc8bb99a26508f758c1759fd01c3be482a3655a176f"}, + {file = "simplejson-3.19.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:32a3ada8f3ea41db35e6d37b86dade03760f804628ec22e4fe775b703d567426"}, + {file = "simplejson-3.19.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f455672f4738b0f47183c5896e3606cd65c9ddee3805a4d18e8c96aa3f47c84"}, + {file = "simplejson-3.19.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2b737a5fefedb8333fa50b8db3dcc9b1d18fd6c598f89fa7debff8b46bf4e511"}, + {file = "simplejson-3.19.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eb47ee773ce67476a960e2db4a0a906680c54f662521550828c0cc57d0099426"}, + {file = "simplejson-3.19.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eed8cd98a7b24861da9d3d937f5fbfb6657350c547528a117297fe49e3960667"}, + {file = "simplejson-3.19.3-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:619756f1dd634b5bdf57d9a3914300526c3b348188a765e45b8b08eabef0c94e"}, + {file = "simplejson-3.19.3-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:dd7230d061e755d60a4d5445bae854afe33444cdb182f3815cff26ac9fb29a15"}, + {file = "simplejson-3.19.3-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:101a3c8392028cd704a93c7cba8926594e775ca3c91e0bee82144e34190903f1"}, + {file = "simplejson-3.19.3-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:1e557712fc79f251673aeb3fad3501d7d4da3a27eff0857af2e1d1afbbcf6685"}, + {file = "simplejson-3.19.3-cp39-cp39-win32.whl", hash = "sha256:0bc5544e3128891bf613b9f71813ee2ec9c11574806f74dd8bb84e5e95bf64a2"}, + {file = "simplejson-3.19.3-cp39-cp39-win_amd64.whl", hash = "sha256:06662392e4913dc8846d6a71a6d5de86db5fba244831abe1dd741d62a4136764"}, + {file = "simplejson-3.19.3-py3-none-any.whl", hash = "sha256:49cc4c7b940d43bd12bf87ec63f28cbc4964fc4e12c031cc8cd01650f43eb94e"}, + {file = "simplejson-3.19.3.tar.gz", hash = "sha256:8e086896c36210ab6050f2f9f095a5f1e03c83fa0e7f296d6cba425411364680"}, ] [[package]] @@ -4384,49 +4468,49 @@ test = ["cython (>=3.0)", "defusedxml (>=0.7.1)", "pytest (>=8.0)", "setuptools [[package]] name = "sphinxcontrib-applehelp" -version = "1.0.8" +version = "2.0.0" description = "sphinxcontrib-applehelp is a Sphinx extension which outputs Apple help books" optional = false python-versions = ">=3.9" files = [ - {file = "sphinxcontrib_applehelp-1.0.8-py3-none-any.whl", hash = "sha256:cb61eb0ec1b61f349e5cc36b2028e9e7ca765be05e49641c97241274753067b4"}, - {file = "sphinxcontrib_applehelp-1.0.8.tar.gz", hash = "sha256:c40a4f96f3776c4393d933412053962fac2b84f4c99a7982ba42e09576a70619"}, + {file = "sphinxcontrib_applehelp-2.0.0-py3-none-any.whl", hash = "sha256:4cd3f0ec4ac5dd9c17ec65e9ab272c9b867ea77425228e68ecf08d6b28ddbdb5"}, + {file = "sphinxcontrib_applehelp-2.0.0.tar.gz", hash = "sha256:2f29ef331735ce958efa4734873f084941970894c6090408b079c61b2e1c06d1"}, ] [package.extras] -lint = ["docutils-stubs", "flake8", "mypy"] +lint = ["mypy", "ruff (==0.5.5)", "types-docutils"] standalone = ["Sphinx (>=5)"] test = ["pytest"] [[package]] name = "sphinxcontrib-devhelp" -version = "1.0.6" +version = "2.0.0" description = "sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp documents" optional = false python-versions = ">=3.9" files = [ - {file = "sphinxcontrib_devhelp-1.0.6-py3-none-any.whl", hash = "sha256:6485d09629944511c893fa11355bda18b742b83a2b181f9a009f7e500595c90f"}, - {file = "sphinxcontrib_devhelp-1.0.6.tar.gz", hash = "sha256:9893fd3f90506bc4b97bdb977ceb8fbd823989f4316b28c3841ec128544372d3"}, + {file = "sphinxcontrib_devhelp-2.0.0-py3-none-any.whl", hash = "sha256:aefb8b83854e4b0998877524d1029fd3e6879210422ee3780459e28a1f03a8a2"}, + {file = "sphinxcontrib_devhelp-2.0.0.tar.gz", hash = "sha256:411f5d96d445d1d73bb5d52133377b4248ec79db5c793ce7dbe59e074b4dd1ad"}, ] [package.extras] -lint = ["docutils-stubs", "flake8", "mypy"] +lint = ["mypy", "ruff (==0.5.5)", "types-docutils"] standalone = ["Sphinx (>=5)"] test = ["pytest"] [[package]] name = "sphinxcontrib-htmlhelp" -version = "2.0.6" +version = "2.1.0" description = "sphinxcontrib-htmlhelp is a sphinx extension which renders HTML help files" optional = false python-versions = ">=3.9" files = [ - {file = "sphinxcontrib_htmlhelp-2.0.6-py3-none-any.whl", hash = "sha256:1b9af5a2671a61410a868fce050cab7ca393c218e6205cbc7f590136f207395c"}, - {file = "sphinxcontrib_htmlhelp-2.0.6.tar.gz", hash = "sha256:c6597da06185f0e3b4dc952777a04200611ef563882e0c244d27a15ee22afa73"}, + {file = "sphinxcontrib_htmlhelp-2.1.0-py3-none-any.whl", hash = "sha256:166759820b47002d22914d64a075ce08f4c46818e17cfc9470a9786b759b19f8"}, + {file = "sphinxcontrib_htmlhelp-2.1.0.tar.gz", hash = "sha256:c9e2916ace8aad64cc13a0d233ee22317f2b9025b9cf3295249fa985cc7082e9"}, ] [package.extras] -lint = ["docutils-stubs", "flake8", "mypy"] +lint = ["mypy", "ruff (==0.5.5)", "types-docutils"] standalone = ["Sphinx (>=5)"] test = ["html5lib", "pytest"] @@ -4446,89 +4530,87 @@ test = ["flake8", "mypy", "pytest"] [[package]] name = "sphinxcontrib-qthelp" -version = "1.0.8" +version = "2.0.0" description = "sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp documents" optional = false python-versions = ">=3.9" files = [ - {file = "sphinxcontrib_qthelp-1.0.8-py3-none-any.whl", hash = "sha256:323d6acc4189af76dfe94edd2a27d458902319b60fcca2aeef3b2180c106a75f"}, - {file = "sphinxcontrib_qthelp-1.0.8.tar.gz", hash = "sha256:db3f8fa10789c7a8e76d173c23364bdf0ebcd9449969a9e6a3dd31b8b7469f03"}, + {file = "sphinxcontrib_qthelp-2.0.0-py3-none-any.whl", hash = "sha256:b18a828cdba941ccd6ee8445dbe72ffa3ef8cbe7505d8cd1fa0d42d3f2d5f3eb"}, + {file = "sphinxcontrib_qthelp-2.0.0.tar.gz", hash = "sha256:4fe7d0ac8fc171045be623aba3e2a8f613f8682731f9153bb2e40ece16b9bbab"}, ] [package.extras] -lint = ["docutils-stubs", "flake8", "mypy"] +lint = ["mypy", "ruff (==0.5.5)", "types-docutils"] standalone = ["Sphinx (>=5)"] test = ["defusedxml (>=0.7.1)", "pytest"] [[package]] name = "sphinxcontrib-serializinghtml" -version = "1.1.10" +version = "2.0.0" description = "sphinxcontrib-serializinghtml is a sphinx extension which outputs \"serialized\" HTML files (json and pickle)" optional = false python-versions = ">=3.9" files = [ - {file = "sphinxcontrib_serializinghtml-1.1.10-py3-none-any.whl", hash = "sha256:326369b8df80a7d2d8d7f99aa5ac577f51ea51556ed974e7716cfd4fca3f6cb7"}, - {file = "sphinxcontrib_serializinghtml-1.1.10.tar.gz", hash = "sha256:93f3f5dc458b91b192fe10c397e324f262cf163d79f3282c158e8436a2c4511f"}, + {file = "sphinxcontrib_serializinghtml-2.0.0-py3-none-any.whl", hash = "sha256:6e2cb0eef194e10c27ec0023bfeb25badbbb5868244cf5bc5bdc04e4464bf331"}, + {file = "sphinxcontrib_serializinghtml-2.0.0.tar.gz", hash = "sha256:e9d912827f872c029017a53f0ef2180b327c3f7fd23c87229f7a8e8b70031d4d"}, ] [package.extras] -lint = ["docutils-stubs", "flake8", "mypy"] +lint = ["mypy", "ruff (==0.5.5)", "types-docutils"] standalone = ["Sphinx (>=5)"] test = ["pytest"] [[package]] name = "sqlalchemy" -version = "1.4.52" +version = "1.4.54" description = "Database Abstraction Library" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" files = [ - {file = "SQLAlchemy-1.4.52-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:f68016f9a5713684c1507cc37133c28035f29925c75c0df2f9d0f7571e23720a"}, - {file = "SQLAlchemy-1.4.52-cp310-cp310-manylinux1_x86_64.manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_5_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:24bb0f81fbbb13d737b7f76d1821ec0b117ce8cbb8ee5e8641ad2de41aa916d3"}, - {file = "SQLAlchemy-1.4.52-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e93983cc0d2edae253b3f2141b0a3fb07e41c76cd79c2ad743fc27eb79c3f6db"}, - {file = "SQLAlchemy-1.4.52-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:84e10772cfc333eb08d0b7ef808cd76e4a9a30a725fb62a0495877a57ee41d81"}, - {file = "SQLAlchemy-1.4.52-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:427988398d2902de042093d17f2b9619a5ebc605bf6372f7d70e29bde6736842"}, - {file = "SQLAlchemy-1.4.52-cp310-cp310-win32.whl", hash = "sha256:1296f2cdd6db09b98ceb3c93025f0da4835303b8ac46c15c2136e27ee4d18d94"}, - {file = "SQLAlchemy-1.4.52-cp310-cp310-win_amd64.whl", hash = "sha256:80e7f697bccc56ac6eac9e2df5c98b47de57e7006d2e46e1a3c17c546254f6ef"}, - {file = "SQLAlchemy-1.4.52-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:2f251af4c75a675ea42766880ff430ac33291c8d0057acca79710f9e5a77383d"}, - {file = "SQLAlchemy-1.4.52-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb8f9e4c4718f111d7b530c4e6fb4d28f9f110eb82e7961412955b3875b66de0"}, - {file = "SQLAlchemy-1.4.52-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afb1672b57f58c0318ad2cff80b384e816735ffc7e848d8aa51e0b0fc2f4b7bb"}, - {file = "SQLAlchemy-1.4.52-cp311-cp311-win32.whl", hash = "sha256:6e41cb5cda641f3754568d2ed8962f772a7f2b59403b95c60c89f3e0bd25f15e"}, - {file = "SQLAlchemy-1.4.52-cp311-cp311-win_amd64.whl", hash = "sha256:5bed4f8c3b69779de9d99eb03fd9ab67a850d74ab0243d1be9d4080e77b6af12"}, - {file = "SQLAlchemy-1.4.52-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:49e3772eb3380ac88d35495843daf3c03f094b713e66c7d017e322144a5c6b7c"}, - {file = "SQLAlchemy-1.4.52-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:618827c1a1c243d2540314c6e100aee7af09a709bd005bae971686fab6723554"}, - {file = "SQLAlchemy-1.4.52-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de9acf369aaadb71a725b7e83a5ef40ca3de1cf4cdc93fa847df6b12d3cd924b"}, - {file = "SQLAlchemy-1.4.52-cp312-cp312-win32.whl", hash = "sha256:763bd97c4ebc74136ecf3526b34808c58945023a59927b416acebcd68d1fc126"}, - {file = "SQLAlchemy-1.4.52-cp312-cp312-win_amd64.whl", hash = "sha256:f12aaf94f4d9679ca475975578739e12cc5b461172e04d66f7a3c39dd14ffc64"}, - {file = "SQLAlchemy-1.4.52-cp36-cp36m-macosx_10_14_x86_64.whl", hash = "sha256:853fcfd1f54224ea7aabcf34b227d2b64a08cbac116ecf376907968b29b8e763"}, - {file = "SQLAlchemy-1.4.52-cp36-cp36m-manylinux1_x86_64.manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_5_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f98dbb8fcc6d1c03ae8ec735d3c62110949a3b8bc6e215053aa27096857afb45"}, - {file = "SQLAlchemy-1.4.52-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1e135fff2e84103bc15c07edd8569612ce317d64bdb391f49ce57124a73f45c5"}, - {file = "SQLAlchemy-1.4.52-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:5b5de6af8852500d01398f5047d62ca3431d1e29a331d0b56c3e14cb03f8094c"}, - {file = "SQLAlchemy-1.4.52-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3491c85df263a5c2157c594f54a1a9c72265b75d3777e61ee13c556d9e43ffc9"}, - {file = "SQLAlchemy-1.4.52-cp36-cp36m-win32.whl", hash = "sha256:427c282dd0deba1f07bcbf499cbcc9fe9a626743f5d4989bfdfd3ed3513003dd"}, - {file = "SQLAlchemy-1.4.52-cp36-cp36m-win_amd64.whl", hash = "sha256:ca5ce82b11731492204cff8845c5e8ca1a4bd1ade85e3b8fcf86e7601bfc6a39"}, - {file = "SQLAlchemy-1.4.52-cp37-cp37m-macosx_11_0_x86_64.whl", hash = "sha256:29d4247313abb2015f8979137fe65f4eaceead5247d39603cc4b4a610936cd2b"}, - {file = "SQLAlchemy-1.4.52-cp37-cp37m-manylinux1_x86_64.manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_5_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a752bff4796bf22803d052d4841ebc3c55c26fb65551f2c96e90ac7c62be763a"}, - {file = "SQLAlchemy-1.4.52-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f7ea11727feb2861deaa293c7971a4df57ef1c90e42cb53f0da40c3468388000"}, - {file = "SQLAlchemy-1.4.52-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:d913f8953e098ca931ad7f58797f91deed26b435ec3756478b75c608aa80d139"}, - {file = "SQLAlchemy-1.4.52-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a251146b921725547ea1735b060a11e1be705017b568c9f8067ca61e6ef85f20"}, - {file = "SQLAlchemy-1.4.52-cp37-cp37m-win32.whl", hash = "sha256:1f8e1c6a6b7f8e9407ad9afc0ea41c1f65225ce505b79bc0342159de9c890782"}, - {file = "SQLAlchemy-1.4.52-cp37-cp37m-win_amd64.whl", hash = "sha256:346ed50cb2c30f5d7a03d888e25744154ceac6f0e6e1ab3bc7b5b77138d37710"}, - {file = "SQLAlchemy-1.4.52-cp38-cp38-macosx_11_0_x86_64.whl", hash = "sha256:4dae6001457d4497736e3bc422165f107ecdd70b0d651fab7f731276e8b9e12d"}, - {file = "SQLAlchemy-1.4.52-cp38-cp38-manylinux1_x86_64.manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_5_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a5d2e08d79f5bf250afb4a61426b41026e448da446b55e4770c2afdc1e200fce"}, - {file = "SQLAlchemy-1.4.52-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5bbce5dd7c7735e01d24f5a60177f3e589078f83c8a29e124a6521b76d825b85"}, - {file = "SQLAlchemy-1.4.52-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:bdb7b4d889631a3b2a81a3347c4c3f031812eb4adeaa3ee4e6b0d028ad1852b5"}, - {file = "SQLAlchemy-1.4.52-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c294ae4e6bbd060dd79e2bd5bba8b6274d08ffd65b58d106394cb6abbf35cf45"}, - {file = "SQLAlchemy-1.4.52-cp38-cp38-win32.whl", hash = "sha256:bcdfb4b47fe04967669874fb1ce782a006756fdbebe7263f6a000e1db969120e"}, - {file = "SQLAlchemy-1.4.52-cp38-cp38-win_amd64.whl", hash = "sha256:7d0dbc56cb6af5088f3658982d3d8c1d6a82691f31f7b0da682c7b98fa914e91"}, - {file = "SQLAlchemy-1.4.52-cp39-cp39-macosx_11_0_x86_64.whl", hash = "sha256:a551d5f3dc63f096ed41775ceec72fdf91462bb95abdc179010dc95a93957800"}, - {file = "SQLAlchemy-1.4.52-cp39-cp39-manylinux1_x86_64.manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_5_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6ab773f9ad848118df7a9bbabca53e3f1002387cdbb6ee81693db808b82aaab0"}, - {file = "SQLAlchemy-1.4.52-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d2de46f5d5396d5331127cfa71f837cca945f9a2b04f7cb5a01949cf676db7d1"}, - {file = "SQLAlchemy-1.4.52-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:7027be7930a90d18a386b25ee8af30514c61f3852c7268899f23fdfbd3107181"}, - {file = "SQLAlchemy-1.4.52-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:99224d621affbb3c1a4f72b631f8393045f4ce647dd3262f12fe3576918f8bf3"}, - {file = "SQLAlchemy-1.4.52-cp39-cp39-win32.whl", hash = "sha256:c124912fd4e1bb9d1e7dc193ed482a9f812769cb1e69363ab68e01801e859821"}, - {file = "SQLAlchemy-1.4.52-cp39-cp39-win_amd64.whl", hash = "sha256:2c286fab42e49db23c46ab02479f328b8bdb837d3e281cae546cc4085c83b680"}, - {file = "SQLAlchemy-1.4.52.tar.gz", hash = "sha256:80e63bbdc5217dad3485059bdf6f65a7d43f33c8bde619df5c220edf03d87296"}, + {file = "SQLAlchemy-1.4.54-cp310-cp310-macosx_12_0_x86_64.whl", hash = "sha256:af00236fe21c4d4f4c227b6ccc19b44c594160cc3ff28d104cdce85855369277"}, + {file = "SQLAlchemy-1.4.54-cp310-cp310-manylinux1_x86_64.manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_5_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1183599e25fa38a1a322294b949da02b4f0da13dbc2688ef9dbe746df573f8a6"}, + {file = "SQLAlchemy-1.4.54-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1990d5a6a5dc358a0894c8ca02043fb9a5ad9538422001fb2826e91c50f1d539"}, + {file = "SQLAlchemy-1.4.54-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:14b3f4783275339170984cadda66e3ec011cce87b405968dc8d51cf0f9997b0d"}, + {file = "SQLAlchemy-1.4.54-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6b24364150738ce488333b3fb48bfa14c189a66de41cd632796fbcacb26b4585"}, + {file = "SQLAlchemy-1.4.54-cp310-cp310-win32.whl", hash = "sha256:a8a72259a1652f192c68377be7011eac3c463e9892ef2948828c7d58e4829988"}, + {file = "SQLAlchemy-1.4.54-cp310-cp310-win_amd64.whl", hash = "sha256:b67589f7955924865344e6eacfdcf70675e64f36800a576aa5e961f0008cde2a"}, + {file = "SQLAlchemy-1.4.54-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:b05e0626ec1c391432eabb47a8abd3bf199fb74bfde7cc44a26d2b1b352c2c6e"}, + {file = "SQLAlchemy-1.4.54-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:13e91d6892b5fcb94a36ba061fb7a1f03d0185ed9d8a77c84ba389e5bb05e936"}, + {file = "SQLAlchemy-1.4.54-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fb59a11689ff3c58e7652260127f9e34f7f45478a2f3ef831ab6db7bcd72108f"}, + {file = "SQLAlchemy-1.4.54-cp311-cp311-win32.whl", hash = "sha256:1390ca2d301a2708fd4425c6d75528d22f26b8f5cbc9faba1ddca136671432bc"}, + {file = "SQLAlchemy-1.4.54-cp311-cp311-win_amd64.whl", hash = "sha256:2b37931eac4b837c45e2522066bda221ac6d80e78922fb77c75eb12e4dbcdee5"}, + {file = "SQLAlchemy-1.4.54-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:3f01c2629a7d6b30d8afe0326b8c649b74825a0e1ebdcb01e8ffd1c920deb07d"}, + {file = "SQLAlchemy-1.4.54-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9c24dd161c06992ed16c5e528a75878edbaeced5660c3db88c820f1f0d3fe1f4"}, + {file = "SQLAlchemy-1.4.54-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b5e0d47d619c739bdc636bbe007da4519fc953393304a5943e0b5aec96c9877c"}, + {file = "SQLAlchemy-1.4.54-cp312-cp312-win32.whl", hash = "sha256:12bc0141b245918b80d9d17eca94663dbd3f5266ac77a0be60750f36102bbb0f"}, + {file = "SQLAlchemy-1.4.54-cp312-cp312-win_amd64.whl", hash = "sha256:f941aaf15f47f316123e1933f9ea91a6efda73a161a6ab6046d1cde37be62c88"}, + {file = "SQLAlchemy-1.4.54-cp36-cp36m-macosx_10_14_x86_64.whl", hash = "sha256:a41611835010ed4ea4c7aed1da5b58aac78ee7e70932a91ed2705a7b38e40f52"}, + {file = "SQLAlchemy-1.4.54-cp36-cp36m-manylinux1_x86_64.manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_5_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1e8c1b9ecaf9f2590337d5622189aeb2f0dbc54ba0232fa0856cf390957584a9"}, + {file = "SQLAlchemy-1.4.54-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0de620f978ca273ce027769dc8db7e6ee72631796187adc8471b3c76091b809e"}, + {file = "SQLAlchemy-1.4.54-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:c5a2530400a6e7e68fd1552a55515de6a4559122e495f73554a51cedafc11669"}, + {file = "SQLAlchemy-1.4.54-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d0cf7076c8578b3de4e43a046cc7a1af8466e1c3f5e64167189fe8958a4f9c02"}, + {file = "SQLAlchemy-1.4.54-cp37-cp37m-macosx_11_0_x86_64.whl", hash = "sha256:f1e1b92ee4ee9ffc68624ace218b89ca5ca667607ccee4541a90cc44999b9aea"}, + {file = "SQLAlchemy-1.4.54-cp37-cp37m-manylinux1_x86_64.manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_5_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:41cffc63c7c83dfc30c4cab5b4308ba74440a9633c4509c51a0c52431fb0f8ab"}, + {file = "SQLAlchemy-1.4.54-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b5933c45d11cbd9694b1540aa9076816cc7406964c7b16a380fd84d3a5fe3241"}, + {file = "SQLAlchemy-1.4.54-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:cafe0ba3a96d0845121433cffa2b9232844a2609fce694fcc02f3f31214ece28"}, + {file = "SQLAlchemy-1.4.54-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a19f816f4702d7b1951d7576026c7124b9bfb64a9543e571774cf517b7a50b29"}, + {file = "SQLAlchemy-1.4.54-cp37-cp37m-win32.whl", hash = "sha256:76c2ba7b5a09863d0a8166fbc753af96d561818c572dbaf697c52095938e7be4"}, + {file = "SQLAlchemy-1.4.54-cp37-cp37m-win_amd64.whl", hash = "sha256:a86b0e4be775902a5496af4fb1b60d8a2a457d78f531458d294360b8637bb014"}, + {file = "SQLAlchemy-1.4.54-cp38-cp38-macosx_12_0_x86_64.whl", hash = "sha256:a49730afb716f3f675755afec109895cab95bc9875db7ffe2e42c1b1c6279482"}, + {file = "SQLAlchemy-1.4.54-cp38-cp38-manylinux1_x86_64.manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_5_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:26e78444bc77d089e62874dc74df05a5c71f01ac598010a327881a48408d0064"}, + {file = "SQLAlchemy-1.4.54-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:02d2ecb9508f16ab9c5af466dfe5a88e26adf2e1a8d1c56eb616396ccae2c186"}, + {file = "SQLAlchemy-1.4.54-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:394b0135900b62dbf63e4809cdc8ac923182af2816d06ea61cd6763943c2cc05"}, + {file = "SQLAlchemy-1.4.54-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5ed3576675c187e3baa80b02c4c9d0edfab78eff4e89dd9da736b921333a2432"}, + {file = "SQLAlchemy-1.4.54-cp38-cp38-win32.whl", hash = "sha256:fc9ffd9a38e21fad3e8c5a88926d57f94a32546e937e0be46142b2702003eba7"}, + {file = "SQLAlchemy-1.4.54-cp38-cp38-win_amd64.whl", hash = "sha256:a01bc25eb7a5688656c8770f931d5cb4a44c7de1b3cec69b84cc9745d1e4cc10"}, + {file = "SQLAlchemy-1.4.54-cp39-cp39-macosx_12_0_x86_64.whl", hash = "sha256:0b76bbb1cbae618d10679be8966f6d66c94f301cfc15cb49e2f2382563fb6efb"}, + {file = "SQLAlchemy-1.4.54-cp39-cp39-manylinux1_x86_64.manylinux2010_x86_64.manylinux_2_12_x86_64.manylinux_2_5_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cdb2886c0be2c6c54d0651d5a61c29ef347e8eec81fd83afebbf7b59b80b7393"}, + {file = "SQLAlchemy-1.4.54-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:954816850777ac234a4e32b8c88ac1f7847088a6e90cfb8f0e127a1bf3feddff"}, + {file = "SQLAlchemy-1.4.54-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:1d83cd1cc03c22d922ec94d0d5f7b7c96b1332f5e122e81b1a61fb22da77879a"}, + {file = "SQLAlchemy-1.4.54-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1576fba3616f79496e2f067262200dbf4aab1bb727cd7e4e006076686413c80c"}, + {file = "SQLAlchemy-1.4.54-cp39-cp39-win32.whl", hash = "sha256:3112de9e11ff1957148c6de1df2bc5cc1440ee36783412e5eedc6f53638a577d"}, + {file = "SQLAlchemy-1.4.54-cp39-cp39-win_amd64.whl", hash = "sha256:6da60fb24577f989535b8fc8b2ddc4212204aaf02e53c4c7ac94ac364150ed08"}, + {file = "sqlalchemy-1.4.54.tar.gz", hash = "sha256:4470fbed088c35dc20b78a39aaf4ae54fe81790c783b3264872a0224f437c31a"}, ] [package.dependencies] @@ -4539,17 +4621,17 @@ aiomysql = ["aiomysql (>=0.2.0)", "greenlet (!=0.4.17)"] aiosqlite = ["aiosqlite", "greenlet (!=0.4.17)", "typing_extensions (!=3.10.0.1)"] asyncio = ["greenlet (!=0.4.17)"] asyncmy = ["asyncmy (>=0.2.3,!=0.2.4)", "greenlet (!=0.4.17)"] -mariadb-connector = ["mariadb (>=1.0.1,!=1.1.2)"] +mariadb-connector = ["mariadb (>=1.0.1,!=1.1.2)", "mariadb (>=1.0.1,!=1.1.2)"] mssql = ["pyodbc"] -mssql-pymssql = ["pymssql"] -mssql-pyodbc = ["pyodbc"] +mssql-pymssql = ["pymssql", "pymssql"] +mssql-pyodbc = ["pyodbc", "pyodbc"] mypy = ["mypy (>=0.910)", "sqlalchemy2-stubs"] mysql = ["mysqlclient (>=1.4.0)", "mysqlclient (>=1.4.0,<2)"] -mysql-connector = ["mysql-connector-python"] +mysql-connector = ["mysql-connector-python", "mysql-connector-python"] oracle = ["cx_oracle (>=7)", "cx_oracle (>=7,<8)"] postgresql = ["psycopg2 (>=2.7)"] -postgresql-asyncpg = ["asyncpg", "greenlet (!=0.4.17)"] -postgresql-pg8000 = ["pg8000 (>=1.16.6,!=1.29.0)"] +postgresql-asyncpg = ["asyncpg", "asyncpg", "greenlet (!=0.4.17)", "greenlet (!=0.4.17)"] +postgresql-pg8000 = ["pg8000 (>=1.16.6,!=1.29.0)", "pg8000 (>=1.16.6,!=1.29.0)"] postgresql-psycopg2binary = ["psycopg2-binary"] postgresql-psycopg2cffi = ["psycopg2cffi"] pymysql = ["pymysql", "pymysql (<1)"] @@ -4675,13 +4757,13 @@ test = ["argcomplete (>=3.0.3)", "mypy (>=1.7.0)", "pre-commit", "pytest (>=7.0, [[package]] name = "types-python-dateutil" -version = "2.9.0.20240316" +version = "2.9.0.20240906" description = "Typing stubs for python-dateutil" optional = false python-versions = ">=3.8" files = [ - {file = "types-python-dateutil-2.9.0.20240316.tar.gz", hash = "sha256:5d2f2e240b86905e40944dd787db6da9263f0deabef1076ddaed797351ec0202"}, - {file = "types_python_dateutil-2.9.0.20240316-py3-none-any.whl", hash = "sha256:6b8cb66d960771ce5ff974e9dd45e38facb81718cc1e208b10b1baccbfdbee3b"}, + {file = "types-python-dateutil-2.9.0.20240906.tar.gz", hash = "sha256:9706c3b68284c25adffc47319ecc7947e5bb86b3773f843c73906fd598bc176e"}, + {file = "types_python_dateutil-2.9.0.20240906-py3-none-any.whl", hash = "sha256:27c8cc2d058ccb14946eebcaaa503088f4f6dbc4fb6093d3d456a49aef2753f6"}, ] [[package]] @@ -4695,6 +4777,17 @@ files = [ {file = "typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8"}, ] +[[package]] +name = "tzdata" +version = "2024.2" +description = "Provider of IANA time zone data" +optional = false +python-versions = ">=2" +files = [ + {file = "tzdata-2024.2-py2.py3-none-any.whl", hash = "sha256:a48093786cdcde33cad18c2555e8532f34422074448fbc874186f0abd79565cd"}, + {file = "tzdata-2024.2.tar.gz", hash = "sha256:7d85cc416e9382e69095b7bdf4afd9e3880418a2413feec7069d533d6b4e31cc"}, +] + [[package]] name = "ua-parser" version = "0.18.0" @@ -4730,13 +4823,13 @@ files = [ [[package]] name = "urllib3" -version = "1.26.19" +version = "1.26.20" description = "HTTP library with thread-safe connection pooling, file post, and more." optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" files = [ - {file = "urllib3-1.26.19-py2.py3-none-any.whl", hash = "sha256:37a0344459b199fce0e80b0d3569837ec6b6937435c5244e7fd73fa6006830f3"}, - {file = "urllib3-1.26.19.tar.gz", hash = "sha256:3e3d753a8618b86d7de333b4223005f68720bcd6a7d2bcb9fbd2229ec7c1e429"}, + {file = "urllib3-1.26.20-py2.py3-none-any.whl", hash = "sha256:0ed14ccfbf1c30a9072c7ca157e4319b70d65f623e91e7b32fadb2853431016e"}, + {file = "urllib3-1.26.20.tar.gz", hash = "sha256:40c2dc0c681e47eb8f90e7e27bf6ff7df2e677421fd46756da1161c39ca70d32"}, ] [package.extras] @@ -4746,12 +4839,12 @@ socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] [[package]] name = "uwsgi" -version = "2.0.26" +version = "2.0.27" description = "The uWSGI server" optional = false python-versions = "*" files = [ - {file = "uwsgi-2.0.26.tar.gz", hash = "sha256:86e6bfcd4dc20529665f5b7777193cdc48622fb2c59f0a7f1e3dc32b3882e7f9"}, + {file = "uwsgi-2.0.27.tar.gz", hash = "sha256:3ee5bfb7e6e9c93478c22aa8183eef35b95a2d5b14cca16172e67f135565c458"}, ] [[package]] @@ -4777,13 +4870,13 @@ files = [ [[package]] name = "validators" -version = "0.33.0" +version = "0.34.0" description = "Python Data Validation for Humans™" optional = false python-versions = ">=3.8" files = [ - {file = "validators-0.33.0-py3-none-any.whl", hash = "sha256:134b586a98894f8139865953899fc2daeb3d0c35569552c5518f089ae43ed075"}, - {file = "validators-0.33.0.tar.gz", hash = "sha256:535867e9617f0100e676a1257ba1e206b9bfd847ddc171e4d44811f07ff0bfbf"}, + {file = "validators-0.34.0-py3-none-any.whl", hash = "sha256:c804b476e3e6d3786fa07a30073a4ef694e617805eb1946ceee3fe5a9b8b1321"}, + {file = "validators-0.34.0.tar.gz", hash = "sha256:647fe407b45af9a74d245b943b18e6a816acf4926974278f6dd617778e1e781f"}, ] [package.extras] @@ -5053,20 +5146,24 @@ timezone = ["python-dateutil"] [[package]] name = "zipp" -version = "3.19.2" +version = "3.20.2" description = "Backport of pathlib-compatible object wrapper for zip files" optional = false python-versions = ">=3.8" files = [ - {file = "zipp-3.19.2-py3-none-any.whl", hash = "sha256:f091755f667055f2d02b32c53771a7a6c8b47e1fdbc4b72a8b9072b3eef8015c"}, - {file = "zipp-3.19.2.tar.gz", hash = "sha256:bf1dcf6450f873a13e952a29504887c89e6de7506209e5b1bcc3460135d4de19"}, + {file = "zipp-3.20.2-py3-none-any.whl", hash = "sha256:a817ac80d6cf4b23bf7f2828b7cabf326f15a001bea8b1f9b49631780ba28350"}, + {file = "zipp-3.20.2.tar.gz", hash = "sha256:bc9eb26f4506fda01b81bcde0ca78103b6e62f991b381fec825435c836edbc29"}, ] [package.extras] +check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)"] +cover = ["pytest-cov"] doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] -test = ["big-O", "importlib-resources", "jaraco.functools", "jaraco.itertools", "jaraco.test", "more-itertools", "pytest (>=6,!=8.1.*)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-ignore-flaky", "pytest-mypy", "pytest-ruff (>=0.2.1)"] +enabler = ["pytest-enabler (>=2.2)"] +test = ["big-O", "importlib-resources", "jaraco.functools", "jaraco.itertools", "jaraco.test", "more-itertools", "pytest (>=6,!=8.1.*)", "pytest-ignore-flaky"] +type = ["pytest-mypy"] [metadata] lock-version = "2.0" python-versions = ">= 3.9, <3.10" -content-hash = "c10dc90b12781a2ae21ccfcf0ef81ca53d8fb0c2e5341bc9984e51e3d3aa688e" +content-hash = "d60bbd62d5f91b89d000e5fa5cb1ea19877585df0426d0652e5fd21fd9e2a4cd" diff --git a/pyproject.toml b/pyproject.toml index c32d27a2..374a8216 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -44,7 +44,7 @@ invenio-rest = ">=1.3.0,<2.0.0" invenio-theme = ">=3.0.0,<4.0.0" # Invenio auth bundle invenio-access = ">=2.0.0,<3.0.0" -invenio-accounts = ">=5.0.0,<6.0.0" +invenio-accounts = ">=5.0.0,<5.1.0" invenio-oauth2server = ">=2.3.0,<3.0.0" invenio-oauthclient = ">=4.0.0,<5.0.0" invenio-userprofiles = ">=3.0.0,<4.0.0" @@ -107,8 +107,9 @@ rero-ils = "invenio_app.cli:cli" [tool.poetry.plugins."invenio_celery.tasks"] rero_mef = "rero_mef.tasks" agents = "rero_mef.agents.tasks" -idref = "rero_mef.agents.idref.tasks" -gnd = "rero_mef.agents.gnd.tasks" +concepts = "rero_mef.concepts.tasks" +places = "rero_mef.places.tasks" + [tool.poetry.plugins."invenio_assets.webpack"] rero_mef_css = "rero_mef.theme.webpack:theme" @@ -134,6 +135,7 @@ agents_rero = "rero_mef.agents.rero.models" concepts_mef = "rero_mef.concepts.mef.models" concepts_rero = "rero_mef.concepts.rero.models" concepts_idref = "rero_mef.concepts.idref.models" +concepts_gnd = "rero_mef.concepts.gnd.models" places_mef = "rero_mef.places.mef.models" placets_idref = "rero_mef.places.idref.models" placets_gnd = "rero_mef.places.gnd.models" @@ -147,6 +149,7 @@ agent_rero_id = "rero_mef.agents.rero.minters:rero_id_minter" concept_mef_id = "rero_mef.concepts.mef.minters:mef_id_minter" concept_rero_id = "rero_mef.concepts.rero.minters:rero_id_minter" concept_idref_id = "rero_mef.concepts.idref.minters:idref_id_minter" +concept_gnd_id = "rero_mef.concepts.gnd.minters:gnd_id_minter" place_mef_id = "rero_mef.places.mef.minters:mef_id_minter" place_idref_id = "rero_mef.places.idref.minters:idref_id_minter" place_gnd_id = "rero_mef.places.gnd.minters:gnd_id_minter" @@ -160,6 +163,7 @@ agent_rero_id = "rero_mef.agents.rero.fetchers:rero_id_fetcher" concept_mef_id = "rero_mef.concepts.mef.fetchers:mef_id_fetcher" concept_rero_id = "rero_mef.concepts.rero.fetchers:rero_id_fetcher" concept_idref_id = "rero_mef.concepts.idref.fetchers:idref_id_fetcher" +concept_gnd_id = "rero_mef.concepts.gnd.fetchers:gnd_id_fetcher" place_mef_id = "rero_mef.places.mef.fetchers:mef_id_fetcher" place_idref_id = "rero_mef.places.idref.fetchers:idref_id_fetcher" place_gnd_id = "rero_mef.places.gnd.fetchers:gnd_id_fetcher" @@ -174,6 +178,7 @@ agents_rero = "rero_mef.agents.rero.jsonschemas" cocepts_mef = "rero_mef.concepts.mef.jsonschemas" cocepts_rero = "rero_mef.concepts.rero.jsonschemas" cocepts_idref = "rero_mef.concepts.idref.jsonschemas" +cocepts_gnd = "rero_mef.concepts.gnd.jsonschemas" places_mef = "rero_mef.places.mef.jsonschemas" places_idref = "rero_mef.places.idref.jsonschemas" places_gnd = "rero_mef.places.gnd.jsonschemas" @@ -187,6 +192,7 @@ agents_rero = "rero_mef.agents.rero.mappings" concepts_mef = "rero_mef.concepts.mef.mappings" concepts_rero = "rero_mef.concepts.rero.mappings" concepts_idref = "rero_mef.concepts.idref.mappings" +concepts_gnd = "rero_mef.concepts.gnd.mappings" places_mef = "rero_mef.places.mef.mappings" places_idref = "rero_mef.places.idref.mappings" places_gnd = "rero_mef.places.gnd.mappings" @@ -200,6 +206,7 @@ agents_rero = "rero_mef.agents.rero.jsonresolvers.rero_resolver" concepts_mef = "rero_mef.concepts.mef.jsonresolvers.mef_resolver" concepts_rero = "rero_mef.concepts.rero.jsonresolvers.rero_resolver" concepts_idref = "rero_mef.concepts.idref.jsonresolvers.idref_resolver" +concepts_gnd = "rero_mef.concepts.gnd.jsonresolvers.gnd_resolver" places_mef = "rero_mef.places.mef.jsonresolvers.mef_resolver" places_idref = "rero_mef.places.idref.jsonresolvers.idref_resolver" places_gnd = "rero_mef.places.gnd.jsonresolvers.gnd_resolver" diff --git a/rero_mef/agents/api.py b/rero_mef/agents/api.py index a4c5be19..8a5e6b1a 100644 --- a/rero_mef/agents/api.py +++ b/rero_mef/agents/api.py @@ -18,11 +18,12 @@ from flask import current_app -from ..api import Action, ReroIndexer, ReroMefRecord -from .mef.api import build_ref_string +from rero_mef.utils import build_ref_string +from ..api import Action, EntityIndexer, EntityRecord -class AgentRecord(ReroMefRecord): + +class AgentRecord(EntityRecord): """Agent Record class.""" name = None @@ -99,7 +100,9 @@ def create_or_update_mef(self, dbcommit=False, reindex=False, viaf_record=None): f'mef: {", ".join([mef.pid for mef in mef_records])}' ) - ref_string = build_ref_string(agent=self.name, agent_pid=self.pid) + ref_string = build_ref_string( + entity_type="agents", entity_name=self.name, entity_pid=self.pid + ) old_pids = set() if mef_records: # We have MEF records change them. @@ -182,5 +185,5 @@ def reindex(self, forceindex=False): return result -class AgentIndexer(ReroIndexer): +class AgentIndexer(EntityIndexer): """Indexing class for agents.""" diff --git a/rero_mef/agents/gnd/mappings/v7/agents_gnd/gnd-agent-v0.0.1.json b/rero_mef/agents/gnd/mappings/v7/agents_gnd/gnd-agent-v0.0.1.json index ba14084d..c74a5497 100644 --- a/rero_mef/agents/gnd/mappings/v7/agents_gnd/gnd-agent-v0.0.1.json +++ b/rero_mef/agents/gnd/mappings/v7/agents_gnd/gnd-agent-v0.0.1.json @@ -26,9 +26,6 @@ "gender": { "type": "keyword" }, - "identifier": { - "type": "keyword" - }, "identifiedBy": { "type": "object", "properties": { @@ -40,6 +37,9 @@ }, "value": { "type": "keyword" + }, + "_identifier": { + "type": "keyword" } } }, diff --git a/rero_mef/agents/idref/mappings/v7/agents_idref/idref-agent-v0.0.1.json b/rero_mef/agents/idref/mappings/v7/agents_idref/idref-agent-v0.0.1.json index ba14084d..c74a5497 100644 --- a/rero_mef/agents/idref/mappings/v7/agents_idref/idref-agent-v0.0.1.json +++ b/rero_mef/agents/idref/mappings/v7/agents_idref/idref-agent-v0.0.1.json @@ -26,9 +26,6 @@ "gender": { "type": "keyword" }, - "identifier": { - "type": "keyword" - }, "identifiedBy": { "type": "object", "properties": { @@ -40,6 +37,9 @@ }, "value": { "type": "keyword" + }, + "_identifier": { + "type": "keyword" } } }, diff --git a/rero_mef/agents/mef/api.py b/rero_mef/agents/mef/api.py index 6467c740..c635f94b 100644 --- a/rero_mef/agents/mef/api.py +++ b/rero_mef/agents/mef/api.py @@ -23,27 +23,14 @@ from flask import current_app from invenio_search.api import RecordsSearch +from rero_mef.api import EntityIndexer +from rero_mef.api_mef import EntityMefRecord +from rero_mef.utils import get_entity_classes, progressbar + from .fetchers import mef_id_fetcher from .minters import mef_id_minter from .models import AgentMefMetadata from .providers import MefProvider -from ...api import ReroIndexer -from ...api_mef import EntityMefRecord -from ...utils import get_entity_classes, progressbar - - -def build_ref_string(agent_pid, agent): - """Build url for agent's api. - - :param agent_pid: Agent pid. - :param agent: Agent type. - :returns: URL to agent - """ - with current_app.app_context(): - return ( - f'{current_app.config.get("RERO_MEF_APP_BASE_URL")}' - f"/api/agents/{agent}/{agent_pid}" - ) class AgentMefSearch(RecordsSearch): @@ -207,7 +194,7 @@ def get_latest(cls, pid_type, pid): return {} -class AgentMefIndexer(ReroIndexer): +class AgentMefIndexer(EntityIndexer): """Agent MEF indexer.""" record_cls = AgentMefRecord diff --git a/rero_mef/agents/mef/mappings/v7/mef/mef-v0.0.1.json b/rero_mef/agents/mef/mappings/v7/mef/mef-v0.0.1.json index 959fb35e..d669f247 100644 --- a/rero_mef/agents/mef/mappings/v7/mef/mef-v0.0.1.json +++ b/rero_mef/agents/mef/mappings/v7/mef/mef-v0.0.1.json @@ -68,9 +68,6 @@ "gender": { "type": "keyword" }, - "identifier": { - "type": "keyword" - }, "identifiedBy": { "type": "object", "properties": { @@ -82,6 +79,9 @@ }, "value": { "type": "keyword" + }, + "_identifier": { + "type": "keyword" } } }, @@ -173,9 +173,6 @@ "gender": { "type": "keyword" }, - "identifier": { - "type": "keyword" - }, "identifiedBy": { "type": "object", "properties": { @@ -187,6 +184,9 @@ }, "value": { "type": "keyword" + }, + "_identifier": { + "type": "keyword" } } }, @@ -278,9 +278,6 @@ "gender": { "type": "keyword" }, - "identifier": { - "type": "keyword" - }, "identifiedBy": { "type": "object", "properties": { @@ -292,6 +289,9 @@ }, "value": { "type": "keyword" + }, + "_identifier": { + "type": "keyword" } } }, diff --git a/rero_mef/agents/rero/mappings/v7/agents_rero/rero-agent-v0.0.1.json b/rero_mef/agents/rero/mappings/v7/agents_rero/rero-agent-v0.0.1.json index ba14084d..c74a5497 100644 --- a/rero_mef/agents/rero/mappings/v7/agents_rero/rero-agent-v0.0.1.json +++ b/rero_mef/agents/rero/mappings/v7/agents_rero/rero-agent-v0.0.1.json @@ -26,9 +26,6 @@ "gender": { "type": "keyword" }, - "identifier": { - "type": "keyword" - }, "identifiedBy": { "type": "object", "properties": { @@ -40,6 +37,9 @@ }, "value": { "type": "keyword" + }, + "_identifier": { + "type": "keyword" } } }, diff --git a/rero_mef/agents/utils.py b/rero_mef/agents/utils.py index 4ac4eeae..2b81c594 100644 --- a/rero_mef/agents/utils.py +++ b/rero_mef/agents/utils.py @@ -53,7 +53,7 @@ def write_mef_files(pid, data, pidstore, metadata, ids): return pid + 1 -def init_agent_pids(input_directory, verbose): +def init_entity_pids(input_directory, verbose): """Init agent data. :param input_directory: Input directory to look for agent pidstore files. @@ -62,14 +62,14 @@ def init_agent_pids(input_directory, verbose): VIAF agent pid names. """ pids = {} - viaf_agent_pid_names = {} + viaf_entity_pid_names = {} agents = current_app.config.get("RERO_AGENTS", []) for agent in agents: agent_classe = get_entity_class(agent) name = agent_classe.name try: if viaf_pid_name := agent_classe.viaf_pid_name: - viaf_agent_pid_names[viaf_pid_name] = name + viaf_entity_pid_names[viaf_pid_name] = name file_name = os.path.join(input_directory, f"{agent}_pidstore.csv") if os.path.exists(file_name): if verbose: @@ -84,7 +84,7 @@ def init_agent_pids(input_directory, verbose): pids[name][pid] = 1 except Exception as err: click.secho(err, fg="red") - return pids, viaf_agent_pid_names + return pids, viaf_entity_pid_names def create_mef_files( @@ -107,7 +107,7 @@ def create_mef_files( """ if verbose: click.echo("Start ***") - pids, viaf_agent_pid_names = init_agent_pids(input_directory, verbose) + pids, viaf_entity_pid_names = init_entity_pids(input_directory, verbose) mef_pid = 1 corresponding_data = {} @@ -135,13 +135,13 @@ def create_mef_files( viaf_data = json.loads(line.split("\t")[3]) viaf_pid = viaf_data["pid"] corresponding_data = {"pid": str(mef_pid), "$schema": schema} - for viaf_pid_name, name in viaf_agent_pid_names.items(): - agent_pid = viaf_data.get(viaf_pid_name) - if agent_pid and pids.get(name, {}).get(agent_pid): + for viaf_pid_name, name in viaf_entity_pid_names.items(): + entity_pid = viaf_data.get(viaf_pid_name) + if entity_pid and pids.get(name, {}).get(entity_pid): corresponding_data["viaf_pid"] = viaf_pid - pids[name].pop(agent_pid) + pids[name].pop(entity_pid) corresponding_data[name] = { - "$ref": f"{base_url}/api/{name}/{agent_pid}" + "$ref": f"{base_url}/api/{name}/{entity_pid}" } if corresponding_data.get("viaf_pid"): # Write MEF with VIAF to file diff --git a/rero_mef/agents/viaf/api.py b/rero_mef/agents/viaf/api.py index a1dab8d7..b5cd38af 100644 --- a/rero_mef/agents/viaf/api.py +++ b/rero_mef/agents/viaf/api.py @@ -25,14 +25,20 @@ from flask import current_app from invenio_search.api import RecordsSearch +from rero_mef.filter import exists_filter +from rero_mef.utils import ( + add_md5, + get_entity_class, + progressbar, + requests_retry_session, +) + +from .. import AgentGndRecord, AgentIdrefRecord, AgentMefRecord, AgentReroRecord +from ..api import Action, EntityIndexer, EntityRecord from .fetchers import viaf_id_fetcher from .minters import viaf_id_minter from .models import ViafMetadata from .providers import ViafProvider -from .. import AgentGndRecord, AgentIdrefRecord, AgentMefRecord, AgentReroRecord -from ..api import Action, ReroIndexer, ReroMefRecord -from ...filter import exists_filter -from ...utils import add_md5, get_entity_class, progressbar, requests_retry_session class AgentViafSearch(RecordsSearch): @@ -49,7 +55,7 @@ class Meta: default_filter = None -class AgentViafRecord(ReroMefRecord): +class AgentViafRecord(EntityRecord): """VIAF agent class.""" minter = viaf_id_minter @@ -222,13 +228,13 @@ def set_actions(actions, pid, source_name, action, mef_actions=None): actions = {} online = online or [] - viaf_agents_data = self.get_agents_pids() + viaf_agents_data = self.get_entities_pids() viaf_agents_pids = [data["pid"] for data in viaf_agents_data] # Delete old agent entries from MEF records old_agents = {} for mef_record in AgentMefRecord.get_mef(self.pid, self.name): changed = False - for agent in mef_record.get_agents_records(): + for agent in mef_record.get_entities_records(): if agent.pid not in viaf_agents_pids: mef_record.pop(agent.name) old_agents[agent.pid] = agent @@ -276,14 +282,14 @@ def set_actions(actions, pid, source_name, action, mef_actions=None): # Create Mef records for old agents if reindex: AgentMefRecord.flush_indexes() - for agent_pid, agent in old_agents.items(): + for entity_pid, agent in old_agents.items(): mef_record, mef_actions = agent.create_or_update_mef( dbcommit=dbcommit, reindex=reindex ) - actions.setdefault(agent_pid, {}) - actions[agent_pid].setdefault("MEF", {}) + actions.setdefault(entity_pid, {}) + actions[entity_pid].setdefault("MEF", {}) for pid, action in mef_actions.items(): - actions[agent_pid]["MEF"][pid] = action + actions[entity_pid]["MEF"][pid] = action return actions def reindex(self, forceindex=False): @@ -439,8 +445,8 @@ def delete(self, force=True, dbcommit=False, delindex=False): :param reindex: Reindex record. :returns: MEF actions message. """ - agents_records = self.get_agents_records() - mef_records = AgentMefRecord.get_mef(agent_pid=self.pid, agent_name=self.name) + agents_records = self.get_entities_records() + mef_records = AgentMefRecord.get_mef(entity_pid=self.pid, entity_name=self.name) # delete VIAF record result = super().delete(force=True, dbcommit=dbcommit, delindex=delindex) @@ -449,7 +455,7 @@ def delete(self, force=True, dbcommit=False, delindex=False): old_agent_records = {} for mef_record in mef_records: mef_actions[mef_record.pid] = {} - mef_agents_records = mef_record.get_agents_records() + mef_agents_records = mef_record.get_entities_records() if len(mef_agents_records): mef_actions[mef_record.pid][mef_agents_records[0].name] = { mef_agents_records[0].pid: Action.UPDATE @@ -474,7 +480,7 @@ def delete(self, force=True, dbcommit=False, delindex=False): AgentMefRecord.flush_indexes() return result, Action.DELETE, mef_actions - def get_agents_pids(self): + def get_entities_pids(self): """Get agent pids.""" agents = [] for source, record_class in self.sources_used.items(): @@ -484,10 +490,10 @@ def get_agents_pids(self): ) return agents - def get_agents_records(self, verbose=False): + def get_entities_records(self, verbose=False): """Get agent records.""" agent_records = [] - for agent in self.get_agents_pids(): + for agent in self.get_entities_pids(): record_class = agent["record_class"] if agent_record := record_class.get_record_by_pid(agent["pid"]): agent_records.append(agent_record) @@ -499,7 +505,7 @@ def get_agents_records(self, verbose=False): return agent_records @classmethod - def get_missing_agent_pids(cls, agent, verbose=False): + def get_missing_entity_pids(cls, agent, verbose=False): """Get all missing pids defined in VIAF. :param agent: Agent to search for missing pids. @@ -516,23 +522,23 @@ def get_missing_agent_pids(cls, agent, verbose=False): ) pids_db = set(progress) - agent_pid_name = f"{record_class.name}_pid" + entity_pid_name = f"{record_class.name}_pid" if verbose: - click.echo(f"Get pids from VIAF with {agent_pid_name} ...") + click.echo(f"Get pids from VIAF with {entity_pid_name} ...") query = AgentViafSearch().filter( - "bool", should=[Q("exists", field=agent_pid_name)] + "bool", should=[Q("exists", field=entity_pid_name)] ) progress = progressbar( - items=query.source(["pid", agent_pid_name]).scan(), + items=query.source(["pid", entity_pid_name]).scan(), length=query.count(), verbose=verbose, ) pids_viaf = [] for hit in progress: viaf_pid = hit.pid - agent_pid = hit.to_dict().get(agent_pid_name) - if agent_pid in pids_db: - pids_db.discard(agent_pid) + entity_pid = hit.to_dict().get(entity_pid_name) + if entity_pid in pids_db: + pids_db.discard(entity_pid) else: pids_viaf.append(viaf_pid) return list(pids_db), pids_viaf @@ -572,7 +578,7 @@ def get_pids_with_multiple_viaf(cls, verbose=False): return cleaned_pids -class AgentViafIndexer(ReroIndexer): +class AgentViafIndexer(EntityIndexer): """Agent VIAF indexer.""" record_cls = AgentViafRecord diff --git a/rero_mef/alembic/af905fd19ea8_update_identifiedby.py b/rero_mef/alembic/af905fd19ea8_update_identifiedby.py new file mode 100644 index 00000000..dc628b3d --- /dev/null +++ b/rero_mef/alembic/af905fd19ea8_update_identifiedby.py @@ -0,0 +1,103 @@ +# +# This file is part of Invenio. +# Copyright (C) 2024 RERO. +# +# Invenio is free software; you can redistribute it and/or modify it +# under the terms of the MIT License; see LICENSE file for more details. + +"""Update identifiedBy.""" + +from logging import getLogger + +from rero_mef.concepts import ConceptIdrefRecord, ConceptIdrefSearch +from rero_mef.places import PlaceIdrefRecord, PlaceIdrefSearch +from rero_mef.utils import progressbar + +# revision identifiers, used by Alembic. +revision = "af905fd19ea8" +down_revision = "28982ef7ce63" +branch_labels = () +depends_on = None + +LOGGER = getLogger("alembic") + + +def upgrade(): + """Upgrade database. + + Update identifiedBy in closeMatch to list. + """ + for record_type in [ + {"search_cls": ConceptIdrefSearch, "record_cls": ConceptIdrefRecord}, + {"search_cls": PlaceIdrefSearch, "record_cls": PlaceIdrefRecord}, + ]: + query = record_type["search_cls"]().filter( + "exists", field="closeMatch.identifiedBy" + ) + pids = [hit.pid for hit in query.source("pid").scan()] + name = record_type["search_cls"].Meta.index + LOGGER.info(f"Change closeMatch.identifiedBy to list {name}: {len(pids)}") + progress_bar = progressbar( + items=pids, + length=len(pids), + verbose=True, + ) + for pid in progress_bar: + if record := record_type["record_cls"].get_record_by_pid(pid): + new_close_matchs = [] + for close_match in record.get("closeMatch", []): + new_close_matchs.append(close_match) + if ( + ifidentified_by := close_match.get("identifiedBy") + ) and not isinstance(ifidentified_by, list): + new_close_matchs[-1]["identifiedBy"] = [ifidentified_by] + record["closeMatch"] = new_close_matchs + record.update(data=record, dbcommit=True, reindex=True) + + query = record_type["search_cls"]().filter("exists", field="identifiedBy") + identified_by_pids = [ + hit.pid for hit in query.source("pid").scan() if hit.pid not in pids + ] + LOGGER.info(f"Reindex identifiedBy {name}: {len(identified_by_pids)}") + progress_bar = progressbar( + items=identified_by_pids, + length=len(identified_by_pids), + verbose=True, + ) + for pid in progress_bar: + if record := record_type["record_cls"].get_record_by_pid(pid): + record.reindex() + + +def downgrade(): + """Downgrade database. + + Update identifiedBy in closeMatch to object. + """ + for record_type in [ + {"search_cls": ConceptIdrefSearch, "record_cls": ConceptIdrefRecord}, + {"search_cls": PlaceIdrefSearch, "record_cls": PlaceIdrefRecord}, + ]: + query = record_type["search_cls"]().filter( + "exists", field="closeMatch.identifiedBy" + ) + pids = [hit.pid for hit in query.source("pid").scan()] + name = record_type["search_cls"].Meta.index + LOGGER.info(f"Change identifiedBy to object {name}: {query.count()}") + + progress_bar = progressbar( + items=pids, + length=query.count(), + verbose=True, + ) + for pid in progress_bar: + if record := record_type["record_cls"].get_record_by_pid(pid): + new_close_matchs = [] + for close_match in record.get("closeMatch", []): + new_close_matchs.append(close_match) + if ( + ifidentified_by := close_match.get("identifiedBy") + ) and isinstance(ifidentified_by, list): + new_close_matchs[-1]["identifiedBy"] = ifidentified_by[0] + record["closeMatch"] = new_close_matchs + record.update(data=record, dbcommit=True, reindex=True) diff --git a/rero_mef/alembic/d8536341fc5e_delete_identifier.py b/rero_mef/alembic/d8536341fc5e_delete_identifier.py new file mode 100644 index 00000000..f0952382 --- /dev/null +++ b/rero_mef/alembic/d8536341fc5e_delete_identifier.py @@ -0,0 +1,119 @@ +# +# This file is part of Invenio. +# Copyright (C) 2016-2018 CERN. +# +# Invenio is free software; you can redistribute it and/or modify it +# under the terms of the MIT License; see LICENSE file for more details. + +"""delete identifier.""" + +from invenio_db import db + +from rero_mef.agents import ( + AgentGndIndexer, + AgentGndRecord, + AgentIdrefIndexer, + AgentIdrefRecord, + AgentReroIndexer, + AgentReroRecord, +) +from rero_mef.utils import progressbar + +# revision identifiers, used by Alembic. +revision = "d8536341fc5e" +down_revision = "af905fd19ea8" +branch_labels = () +depends_on = None + +agents = [ + { + "record_cls": AgentGndRecord, + "index_cls": AgentGndIndexer, + "url": "http://d-nb.info/gnd/", + }, + { + "record_cls": AgentIdrefRecord, + "index_cls": AgentIdrefIndexer, + "url": "http://www.idref.fr", + }, + { + "record_cls": AgentReroRecord, + "index_cls": AgentReroIndexer, + "url": "http://data.rero.ch/02-", + }, +] + + +def upgrade(): + """Upgrade database.""" + for agent in agents: + agent_cls = agent["record_cls"] + indexer = agent["index_cls"]() + query = agent_cls.search().filter("exists", field="identifier") + progress_bar = progressbar( + items=query.source().scan(), + length=query.count(), + label=agent_cls.name, + verbose=True, + ) + print("Process indexing: ...", end=" ", flush=True) + print(indexer.process_bulk_queue()) + ids = [] + for idx, hit in enumerate(progress_bar, 1): + id_ = hit.meta.id + ids.append(id_) + rec = agent_cls.get_record(id_) + rec.pop("identifier", None) + rec.update(data=rec, bcommit=False, reindex=True) + if idx % 1000 == 0: + print(f" {idx} commit", end=" | ", flush=True) + db.session.commit() + print("indexing: ", end="", flush=True) + indexer.bulk_index(ids) + count = indexer.process_bulk_queue() + print(count) + ids = [] + print(f" {idx} commit", end=" | ", flush=True) + db.session.commit() + print("indexing: ", end="", flush=True) + indexer.bulk_index(ids) + count = indexer.process_bulk_queue() + print(count) + + +def downgrade(): + """Downgrade database.""" + for agent in agents: + agent_cls = agent["record_cls"] + indexer = agent["index_cls"]() + url = agent["url"] + query = agent_cls.search().exclude("exists", field="identifier") + progress_bar = progressbar( + items=query.source().scan(), + length=query.count(), + label=agent_cls.name, + verbose=True, + ) + print("Process indexing: ...", end=" ", flush=True) + print(indexer.process_bulk_queue()) + ids = [] + for idx, hit in enumerate(progress_bar, 1): + id_ = hit.meta.id + ids.append(id_) + rec = agent_cls.get_record(id_) + rec["identifier"] = f'"{url}{rec.pid}"' + rec.update(data=rec, bcommit=False, reindex=True) + if idx % 1000 == 0: + print(f" {idx} commit", end=" | ", flush=True) + db.session.commit() + print("indexing: ", end="", flush=True) + indexer.bulk_index(ids) + count = indexer.process_bulk_queue() + print(count) + ids = [] + print(f" {idx} commit", end=" | ", flush=True) + db.session.commit() + print("indexing: ", end="", flush=True) + indexer.bulk_index(ids) + count = indexer.process_bulk_queue() + print(count) diff --git a/rero_mef/api.py b/rero_mef/api.py index 96cd5dc8..2540698f 100644 --- a/rero_mef/api.py +++ b/rero_mef/api.py @@ -36,13 +36,21 @@ from sqlalchemy.exc import OperationalError from sqlalchemy.orm.exc import NoResultFound -from rero_mef.utils import get_entity_class +from rero_mef.utils import build_ref_string, get_entity_class from .utils import add_md5, add_schema +RERO_ILS_ENTITY_TYPES = { + "bf:Person": "agents", + "bf:Organisation": "agents", + "bf:Topic": "concepts", + "bf:Temporal": "concepts", + "bf:Place": "places", +} + class Action(Enum): - """Class holding all availabe agent record creation actions.""" + """Class holding all available entities record creation actions.""" CREATE = "create" UPDATE = "update" @@ -51,14 +59,14 @@ class Action(Enum): DISCARD = "discard" DELETE = "delete" ALREADY_DELETED = "already deleted" - DELETE_AGENT = "delete agent" + DELETE_ENTITY = "delete entity" VALIDATION_ERROR = "validation error" ERROR = "error" NOT_ONLINE = "not online" NOT_FOUND = "not found" -class ReroMefRecordError: +class EntityRecordError: """Base class for errors in the Record class.""" class Deleted(Exception): @@ -83,7 +91,7 @@ class DataMissing(Exception): """Data missing in record.""" -class ReroMefRecord(Record): +class EntityRecord(Record): """Entity Record class.""" minter = None @@ -138,7 +146,7 @@ def create_or_update( test_md5=False, ): """Create or update agent record.""" - agent_action = None + action = Action.ERROR return_record = data pid = data.get("pid") @@ -149,7 +157,6 @@ def create_or_update( copy_fields = [ "pid", "$schema", - "identifier", "identifiedBy", "authorized_access_point", "type", @@ -160,16 +167,15 @@ def create_or_update( # dict merging, `original_data` values # will be override by `data` values data = {**original_data, **data} - if test_md5: - return_record, agent_action = agent_record.update_md5_changed( + return_record, action = agent_record.update_md5_changed( data=data, dbcommit=dbcommit, reindex=reindex ) else: return_record = agent_record.replace( data=data, dbcommit=dbcommit, reindex=reindex ) - agent_action = Action.UPDATE + action = Action.UPDATE else: try: return_record = cls.create( @@ -179,15 +185,15 @@ def create_or_update( dbcommit=dbcommit, reindex=reindex, ) - agent_action = Action.CREATE + action = Action.CREATE except Exception as err: current_app.logger.error( f"ERROR create_or_update {cls.name} " f'{data.get("pid")} {err}' ) - agent_action = Action.ERROR + action = Action.ERROR if reindex: cls.flush_indexes() - return return_record, agent_action + return return_record, action def delete(self, force=True, dbcommit=False, delindex=False): """Delete record and persistent identifier.""" @@ -242,7 +248,7 @@ def replace(self, data, commit=False, dbcommit=False, reindex=False): new_data = deepcopy(data) pid = new_data.get("pid") if not pid: - raise ReroMefRecordError.PidMissing(f"missing pid={self.pid}") + raise EntityRecordError.PidMissing(f"missing pid={self.pid}") if self.get("md5"): new_data = add_md5(new_data) self.clear() @@ -418,7 +424,7 @@ def get_indexer_class(cls): ) except Exception: # provide default indexer if no indexer is defined in config. - indexer = ReroIndexer + indexer = EntityIndexer current_app.logger.error(f"Get indexer class {cls.__name__}") return indexer @@ -457,7 +463,208 @@ def deleted(self): return self.get("deleted") -class ReroIndexer(RecordIndexer): +class ConceptPlaceRecord(EntityRecord): + """Mef concept place class.""" + + def get_association_record(self, association_cls, association_search): + """Get associated record. + + :params association_cls: Association class + :params association_search: Association search class. + :returns: Associated record. + """ + if association_identifier := self.association_identifier: + # Test if my identifier is unique + count = ( + self.search() + .filter("term", _association_identifier=association_identifier) + .count() + ) + if count > 1: + current_app.logger.error( + f"MULTIPLE IDENTIFIERS FOUND FOR: {self.name} {self.pid} " + f"| {association_identifier}" + ) + return + # Get associated record + query = association_search().filter( + "term", _association_identifier=association_identifier + ) + if query.count() > 1: + current_app.logger.error( + f"MULTIPLE ASSOCIATIONS IDENTIFIERS FOUND FOR: {self.name} {self.pid} " + f"| {association_identifier}" + ) + if query.count() == 1: + hit = next(query.source("pid").scan()) + return association_cls.get_record_by_pid(hit.pid) + + @property + def association_info(self): + """Get associated record. + + Has to be overloaded in concept/place class. + """ + raise NotImplementedError() + + def create_or_update_mef(self, dbcommit=False, reindex=False): + """Create or update MEF and VIAF record. + + :param dbcommit: Commit changes to DB. + :param reindex: Reindex record. + :returns: MEF record, MEF action + """ + + def mef_create(mef_cls, data, association_info, dbcommit, reindex): + """Crate MEF record.""" + mef_data = { + data.name: { + "$ref": build_ref_string( + entity_type=RERO_ILS_ENTITY_TYPES[data["type"]], + entity_name=data.name, + entity_pid=data.pid, + ) + }, + "type": data["type"], + } + if deleted := data.get("deleted"): + mef_data["deleted"] = deleted + if association_record := association_info.get("record"): + ref = build_ref_string( + entity_type=RERO_ILS_ENTITY_TYPES[association_record["type"]], + entity_name=association_record.name, + entity_pid=association_record.pid, + ) + mef_data[association_record.name] = {"$ref": ref} + + mef_record = mef_cls.create( + data=mef_data, + dbcommit=dbcommit, + reindex=reindex, + ) + return mef_record, {mef_record.pid: Action.CREATE} + + def get_mef_record(mef_cls, name, pid): + """Get MEF record.""" + mef_records = mef_cls.get_mef(entity_name=name, entity_pid=pid) + if len(mef_records) > 1: + mef_pids = [mef_record.pid for mef_record in mef_records] + current_app.logger.error( + f"MULTIPLE MEF FOUND FOR: {name} {pid} | mef: {', '.join(mef_pids)}" + ) + if len(mef_records) == 1: + return mef_records[0] + + association_info = self.association_info + # Get direct MEF record + mef_record = get_mef_record( + mef_cls=association_info["mef_cls"], name=self.name, pid=self.pid + ) + # Get associated MEF record + mef_associated_record = {} + if associated_record := association_info["record"]: + # Get MEF record for the associated record. + mef_associated_record = get_mef_record( + mef_cls=association_info["mef_cls"], + name=associated_record.name, + pid=associated_record.pid, + ) + new_mef_record = mef_record or mef_associated_record + + actions = {} + if not mef_record and not mef_associated_record: + mef_record, actions = mef_create( + mef_cls=association_info["mef_cls"], + data=self, + association_info=association_info, + dbcommit=dbcommit, + reindex=reindex, + ) + else: + mef_pids = mef_record.ref_pids if mef_record else {} + mef_association_pids = ( + mef_associated_record.ref_pids if mef_associated_record else {} + ) + association_name = association_info["record_cls"].name + mef_self_pid = mef_pids.get(self.name) + mef_self_association_pid = mef_association_pids.get(self.name) + mef_other_pid = mef_pids.get(association_name) + mef_other_association_pid = mef_association_pids.get(association_name) + + # print( + # "------->", + # self.name, + # mef_self_pid, + # mef_self_association_pid, + # "|", + # association_name, + # mef_other_pid, + # mef_other_association_pid, + # ) + + # New ref + if not new_mef_record.get(self.name): + # Add new ref + new_mef_record[self.name] = { + "$ref": build_ref_string( + entity_type=RERO_ILS_ENTITY_TYPES[self["type"]], + entity_name=self.name, + entity_pid=self.pid, + ) + } + if ( + not mef_self_association_pid + and not mef_other_association_pid + and mef_other_pid + ): + # Delete associated ref from MEF an create a new one + new_mef_record.pop(association_name) + if association_record := association_info[ + "record_cls" + ].get_record_by_pid(mef_other_pid): + _, action = mef_create( + mef_cls=association_info["mef_cls"], + data=association_record, + association_info={}, + dbcommit=dbcommit, + reindex=reindex, + ) + actions |= action + if ( + mef_self_pid + and not mef_self_association_pid + and not mef_other_pid + and mef_other_association_pid + ): + # Delete entity from old MEF and add it to new MEF + ref = mef_associated_record.pop(association_name) + associated_mef_record = mef_associated_record.replace( + data=mef_associated_record, dbcommit=dbcommit, reindex=reindex + ) + actions[associated_mef_record.pid] = Action.DELETE_ENTITY + new_mef_record[association_name] = ref + + mef_record = new_mef_record.replace( + data=new_mef_record, dbcommit=dbcommit, reindex=reindex + ) + actions[mef_record.pid] = Action.UPDATE + + association_info["mef_cls"].flush_indexes() + return mef_record, actions + + @classmethod + def get_online_record(cls, id_, debug=False): + """Get online Record. + + :param id_: Id of online record. + :param debug: Debug print. + :returns: record or None + Has to be overloaded in concept/place class. + """ + raise NotImplementedError() + + +class EntityIndexer(RecordIndexer): """Indexing class for mef.""" def bulk_index(self, record_id_iterator, index=None, doc_type=None): diff --git a/rero_mef/api_mef.py b/rero_mef/api_mef.py index 94f6c6a7..459e7fc2 100644 --- a/rero_mef/api_mef.py +++ b/rero_mef/api_mef.py @@ -26,12 +26,12 @@ from elasticsearch_dsl import Q from flask import current_app -from .api import Action, ReroMefRecord +from .api import Action, EntityRecord from .utils import generate, get_entity_class, get_entity_search_class, progressbar -class EntityMefRecord(ReroMefRecord): - """Mef agent class.""" +class EntityMefRecord(EntityRecord): + """Mef entity class.""" minter = None fetcher = None @@ -75,20 +75,20 @@ def update(self, data, commit=False, dbcommit=False, reindex=False): ) @classmethod - def get_mef(cls, agent_pid, agent_name, pid_only=False): - """Get MEF record by agent pid value. + def get_mef(cls, entity_pid, entity_name, pid_only=False): + """Get MEF record by entity pid value. - :param agent_pid: Agent pid. - :param agent_name: Name of agent (pid_type). + :param entity_pid: Entity pid. + :param entity_name: Name of entity (pid_type). :param pid_only: return pid only or the complete record. :returns: pid or record """ - key = f"{agent_name}.pid" - if agent_name == "viaf": + key = f"{entity_name}.pid" + if entity_name == "viaf": key = "viaf_pid" query = ( cls.search() - .filter("term", **{key: agent_pid}) + .filter("term", **{key: entity_pid}) .params(preserve_order=True) .sort({"_updated": {"order": "desc"}}) ) @@ -99,19 +99,19 @@ def get_mef(cls, agent_pid, agent_name, pid_only=False): if len(mef_records) > 1: mef_pids = mef_records if pid_only else [mef.pid for mef in mef_records] current_app.logger.error( - f"MULTIPLE MEF FOUND FOR: {agent_name} {agent_pid} | " + f"MULTIPLE MEF FOUND FOR: {entity_name} {entity_pid} | " f'mef: {", ".join(mef_pids)}' ) return mef_records @classmethod - def get_all_pids_without_agents_and_viaf(cls): - """Get all pids for records without agents and VIAF pids. + def get_all_pids_without_entities_and_viaf(cls): + """Get all pids for records without entities and VIAF pids. - :returns: Generator of MEF pids without agent links and without VIAF. + :returns: Generator of MEF pids without entity links and without VIAF. """ must_not = [Q("exists", field="viaf_pid")] - must_not.extend(Q("exists", field=agent) for agent in cls.entities) + must_not.extend(Q("exists", field=entity) for entity in cls.entities) query = cls.search().filter("bool", must_not=must_not) for hit in query.source("pid").scan(): yield hit.pid @@ -130,7 +130,7 @@ def get_all_pids_without_viaf(cls): @classmethod def get_multiple_missing_pids(cls, record_types=None, verbose=False): - """Get agent pids with multiple MEF records. + """Get entity pids with multiple MEF records. :params record_types: Record types (pid_types). :param verbose: Verbose. @@ -141,20 +141,20 @@ def get_multiple_missing_pids(cls, record_types=None, verbose=False): multiple_pids = {} missing_pids = {} none_pids = {} - agents = {} + entities = {} sources = ["pid"] for record_type in record_types or []: try: - agent_class = get_entity_class(record_type) - agents[record_type] = { - "name": agent_class.name, + entity_class = get_entity_class(record_type) + entities[record_type] = { + "name": entity_class.name, "search": get_entity_search_class(record_type)(), } pids[record_type] = {} multiple_pids[record_type] = {} missing_pids[record_type] = [] none_pids[record_type] = [] - sources.append(f"{agent_class.name}.pid") + sources.append(f"{entity_class.name}.pid") except Exception: current_app.logger.error(f"Record type not found: {record_type}") @@ -173,18 +173,18 @@ def get_multiple_missing_pids(cls, record_types=None, verbose=False): for hit in progress: data = hit.to_dict() mef_pid = data["pid"] - for record_type, info in agents.items(): - if agent_data := data.get(info["name"]): - if agent_pid := agent_data.get("pid"): - pids[record_type].setdefault(agent_pid, []).append(mef_pid) - if len(pids[record_type][agent_pid]) > 1: - multiple_pids[record_type][agent_pid] = pids[record_type][ - agent_pid + for record_type, info in entities.items(): + if entity_data := data.get(info["name"]): + if entity_pid := entity_data.get("pid"): + pids[record_type].setdefault(entity_pid, []).append(mef_pid) + if len(pids[record_type][entity_pid]) > 1: + multiple_pids[record_type][entity_pid] = pids[record_type][ + entity_pid ] else: none_pids[record_type].append(mef_pid) - # Get all agents pids and compare with MEF pids - for record_type, info in agents.items(): + # Get all entities pids and compare with MEF pids + for record_type, info in entities.items(): click.echo(f'Get {info["name"]} ' f"MEF: {len(pids[record_type])}") progress = progressbar( items=info["search"] @@ -270,28 +270,37 @@ def delete_ref(self, record, dbcommit=False, reindex=False): self.flush_indexes() return self, action - def get_agents_pids(self): - """Get agents pids.""" - agents = [] - agent_types = current_app.config.get(f"RERO_{self.mef_type}", []) - for agent_type in agent_types: - record_class = get_entity_class(agent_type) + @property + def ref_pids(self): + """Get ref pids from $ref.""" + ref_pids = {} + for entity_name in self.entities: + if ref := self.get(entity_name): + ref_pids[entity_name] = ref["$ref"].split("/")[-1] + return ref_pids + + def get_entities_pids(self): + """Get entities pids.""" + entities = [] + entity_types = current_app.config.get(f"RERO_{self.mef_type}", []) + for entity_type in entity_types: + record_class = get_entity_class(entity_type) name = record_class.name if name in self: - agents.append( + entities.append( { "record_class": record_class, # Get pid from $ref URL "pid": self.get(name).get("$ref").split("/")[-1], } ) - return agents + return entities - def get_agents_records(self): - """Get agents records.""" - agents_records = [] - for agent in self.get_agents_pids(): - record_class = agent["record_class"] - if agent_record := record_class.get_record_by_pid(agent["pid"]): - agents_records.append(agent_record) - return agents_records + def get_entities_records(self): + """Get entities records.""" + entities_records = [] + for entity in self.get_entities_pids(): + record_class = entity["record_class"] + if entity_record := record_class.get_record_by_pid(entity["pid"]): + entities_records.append(entity_record) + return entities_records diff --git a/rero_mef/cli.py b/rero_mef/cli.py index b26e6a22..f6a9e72a 100644 --- a/rero_mef/cli.py +++ b/rero_mef/cli.py @@ -219,7 +219,7 @@ def delete(entity, source, lazy, enqueue, verbose): def marc_to_json(entity, marc_file, json_file, error_file, verbose): """Entity MARC to JSON. - :param entity: entity [aidref, aggnd, agrero, corero]. + :param entity: entity [aidref, aggnd, agrero, coidref, cognd, corero, plidref, plgnd]. :param marc_file: MARC input file. :param json_file: JSON output file. :param verbose: Verbose. @@ -555,8 +555,11 @@ def get_pid_data(line): } compair_data = {} if sqlite_dict: - compair_data = SqliteDict(sqlite_dict, autocommit=True, outer_stack=False) - compair_data.clear() + compair_data = SqliteDict( + sqlite_dict, autocommit=False, outer_stack=False, journal_mode="OFF" + ) + compair_data.clear() + compair_data.commit() if csv_metadata_file_compair: length = number_records_in_file(csv_metadata_file_compair, "csv") counts["compair"] = length @@ -567,9 +570,13 @@ def get_pid_data(line): label=f"Loading: {compair}", verbose=True, ) - for metadata_line in progress_bar: + for idx, metadata_line in enumerate(progress_bar, 1): pid, data = get_pid_data(metadata_line) compair_data[pid] = data + if sqlite_dict and idx % 1000 == 0: + compair_data.commit() + if sqlite_dict: + compair_data.commit() elif entity: entity_class = get_entity_class(entity) length = entity_class.count() @@ -598,6 +605,8 @@ def get_pid_data(line): for metadata_line in progress_bar: pid, data = get_pid_data(metadata_line) if existing_data := compair_data.pop(pid, None): + if sqlite_dict: + compair_data.commit() if existing_data != data: counts["changed"] += 1 if verbose: @@ -631,6 +640,8 @@ def get_pid_data(line): file_new.close() file_diff.close() file_delete.close() + if sqlite_dict: + compair_data.close() click.echo( f'Compair: {counts["compair"]} | ' f'Compair to: {counts["compair_to"]} || ' diff --git a/rero_mef/concepts/__init__.py b/rero_mef/concepts/__init__.py index f69957ab..96d68dc0 100644 --- a/rero_mef/concepts/__init__.py +++ b/rero_mef/concepts/__init__.py @@ -17,12 +17,16 @@ """Concepts.""" +from ..api import Action +from .gnd.api import ConceptGndIndexer, ConceptGndRecord, ConceptGndSearch from .idref.api import ConceptIdrefIndexer, ConceptIdrefRecord, ConceptIdrefSearch from .mef.api import ConceptMefIndexer, ConceptMefRecord, ConceptMefSearch from .rero.api import ConceptReroIndexer, ConceptReroRecord, ConceptReroSearch -from ..api import Action __all__ = ( + "ConceptGndIndexer", + "ConceptGndRecord", + "ConceptGndSearch", "ConceptMefIndexer", "ConceptMefRecord", "ConceptMefSearch", diff --git a/rero_mef/concepts/api.py b/rero_mef/concepts/api.py index 9de06396..6cb77d2f 100644 --- a/rero_mef/concepts/api.py +++ b/rero_mef/concepts/api.py @@ -16,12 +16,10 @@ # along with this program. If not, see . """API for manipulating records.""" -from rero_mef.concepts.mef.api import build_ref_string +from ..api import ConceptPlaceRecord, EntityIndexer -from ..api import Action, ReroIndexer, ReroMefRecord - -class ConceptRecord(ReroMefRecord): +class ConceptRecord(ConceptPlaceRecord): """Concept record class.""" name = None @@ -56,50 +54,10 @@ def delete(self, force=False, dbcommit=False, delindex=False): mef_record.delete_ref(self, dbcommit=dbcommit, reindex=delindex) return super().delete(force=force, dbcommit=dbcommit, delindex=delindex) - def create_or_update_mef(self, dbcommit=False, reindex=False): - """Create or update MEF and VIAF record. - - :param dbcommit: Commit changes to DB. - :param reindex: Reindex record. - :returns: MEF record, MEF action - """ - from rero_mef.concepts import ConceptMefRecord - - mef_data = {} - if mef_records := ConceptMefRecord.get_mef(self.pid, self.name): - mef_data = mef_records[0] - - ref_string = build_ref_string(concept=self.name, concept_pid=self.pid) - mef_data[self.name] = {"$ref": ref_string} - - if mef_records: - mef_action = Action.UPDATE - mef_record = mef_data.replace( - data=mef_data, dbcommit=dbcommit, reindex=reindex - ) - else: - if self.deleted and not mef_data.get("deleted"): - mef_data["deleted"] = self.deleted - mef_action = Action.CREATE - mef_record = ConceptMefRecord.create( - data=mef_data, - dbcommit=dbcommit, - reindex=reindex, - ) - if reindex: - ConceptMefRecord.flush_indexes() - return mef_record, {mef_record.pid: mef_action} - - @classmethod - def get_online_record(cls, id_, debug=False): - """Get online Record. - - :param id_: Id of online record. - :param debug: Debug print. - :returns: record or None - Has to be overloaded in agent class. - """ - raise NotImplementedError() + @property + def ref_identifier(self): + """Get ref identifier.""" + return f"bf:Nbn|(BNF){self.frbnf_pid}" def reindex(self, forceindex=False): """Reindex record.""" @@ -112,5 +70,5 @@ def reindex(self, forceindex=False): return result -class ConceptIndexer(ReroIndexer): +class ConceptIndexer(EntityIndexer): """Indexing class for concepts.""" diff --git a/rero_mef/concepts/gnd/__init__.py b/rero_mef/concepts/gnd/__init__.py new file mode 100644 index 00000000..f8f7dab6 --- /dev/null +++ b/rero_mef/concepts/gnd/__init__.py @@ -0,0 +1,18 @@ +# -*- coding: utf-8 -*- +# +# RERO MEF +# Copyright (C) 2024 RERO +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + +"""Gnd.""" diff --git a/rero_mef/concepts/gnd/api.py b/rero_mef/concepts/gnd/api.py new file mode 100644 index 00000000..210af164 --- /dev/null +++ b/rero_mef/concepts/gnd/api.py @@ -0,0 +1,123 @@ +# -*- coding: utf-8 -*- +# +# RERO MEF +# Copyright (C) 2024 RERO +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + +"""API for manipulating Gnd agent.""" + +from flask import current_app +from invenio_search.api import RecordsSearch + +from ..api import ConceptIndexer, ConceptRecord +from .fetchers import gnd_id_fetcher +from .minters import gnd_id_minter +from .models import ConceptGndMetadata +from .providers import ConceptGndProvider + + +class ConceptGndSearch(RecordsSearch): + """RecordsSearch.""" + + class Meta: + """Search only on index.""" + + index = "concepts_gnd" + doc_types = None + fields = ("*",) + facets = {} + + default_filter = None + + +class ConceptGndRecord(ConceptRecord): + """Concepts Authority class.""" + + minter = gnd_id_minter + fetcher = gnd_id_fetcher + provider = ConceptGndProvider + name = "gnd" + viaf_source_code = "RAMEAU" + pid_type = "concept_gnd_pid" + model_cls = ConceptGndMetadata + search = ConceptGndSearch + + @classmethod + def get_online_record(cls, id_, debug=False): + """Get online Record. + + :param id_: Id of online record. + :param debug: Debug print. + :returns: record or None + """ + from .tasks import gnd_get_record + + return gnd_get_record(id_=id_, debug=debug) + + @property + def association_identifier(self): + """Get associated identifier.""" + for match_type, max_count in current_app.config.get( + "RERO_MEF_PLACES_GND_MATCHES", {} + ).items(): + matches = self.get(match_type, []) + match_count = 0 + match_value = "" + for match in matches: + for identified_by in match.get("identifiedBy", []): + if ( + identified_by.get("source") == "BNF" + and identified_by.get("type") == "bf:Nbn" + and identified_by.get("value", "").startswith("FRBNF") + ): + match_count += 1 + match_value = identified_by.get("value") + if match_value and match_count <= max_count: + return match_value[:13] + + @property + def association_info(self): + """Get associated record.""" + from rero_mef.concepts import ( + ConceptIdrefRecord, + ConceptIdrefSearch, + ConceptMefRecord, + ) + + ConceptIdrefRecord.flush_indexes() + return { + "identifier": self.association_identifier, + "record": self.get_association_record( + association_cls=ConceptIdrefRecord, + association_search=ConceptIdrefSearch, + ), + "record_cls": ConceptIdrefRecord, + "search_cls": ConceptIdrefSearch, + "mef_cls": ConceptMefRecord, + } + + +class ConceptGndIndexer(ConceptIndexer): + """Concept GND indexer.""" + + record_cls = ConceptGndRecord + + def bulk_index(self, record_id_iterator): + """Bulk index records. + + :param record_id_iterator: Iterator yielding record UUIDs. + """ + super().bulk_index( + record_id_iterator, index=ConceptGndSearch.Meta.index, doc_type="cognd" + ) diff --git a/rero_mef/concepts/gnd/fetchers.py b/rero_mef/concepts/gnd/fetchers.py new file mode 100644 index 00000000..ac491a7d --- /dev/null +++ b/rero_mef/concepts/gnd/fetchers.py @@ -0,0 +1,28 @@ +# -*- coding: utf-8 -*- +# +# RERO MEF +# Copyright (C) 2024 RERO +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + +"""Persistent identifier fetchers.""" + + +from __future__ import absolute_import, print_function + +from functools import partial + +from ...fetchers import id_fetcher +from .providers import ConceptGndProvider + +gnd_id_fetcher = partial(id_fetcher, provider=ConceptGndProvider) diff --git a/rero_mef/concepts/gnd/jsonresolvers/__init__.py b/rero_mef/concepts/gnd/jsonresolvers/__init__.py new file mode 100644 index 00000000..003f2c5b --- /dev/null +++ b/rero_mef/concepts/gnd/jsonresolvers/__init__.py @@ -0,0 +1,18 @@ +# -*- coding: utf-8 -*- +# +# RERO MEF +# Copyright (C) 2024 RERO +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + +"""JSON resolvers.""" diff --git a/rero_mef/concepts/gnd/jsonresolvers/gnd_resolver.py b/rero_mef/concepts/gnd/jsonresolvers/gnd_resolver.py new file mode 100644 index 00000000..644730c0 --- /dev/null +++ b/rero_mef/concepts/gnd/jsonresolvers/gnd_resolver.py @@ -0,0 +1,32 @@ +# -*- coding: utf-8 -*- +# +# RERO MEF +# Copyright (C) 2024 RERO +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + + +"""Json resolvers.""" + +from __future__ import absolute_import, print_function, unicode_literals + +import jsonresolver + +from ....utils import get_host, resolve_record +from ..api import ConceptGndRecord + + +@jsonresolver.route("/api/concepts/gnd/", host=get_host()) +def resolve_gnd(path): + """Resolve Concepts records.""" + return resolve_record(path, ConceptGndRecord) diff --git a/rero_mef/concepts/gnd/jsonschemas/__init__.py b/rero_mef/concepts/gnd/jsonschemas/__init__.py new file mode 100644 index 00000000..463cebdd --- /dev/null +++ b/rero_mef/concepts/gnd/jsonschemas/__init__.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# +# RERO MEF +# Copyright (C) 2024 RERO +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + +"""JSON schemas.""" + +from __future__ import absolute_import, print_function diff --git a/rero_mef/concepts/gnd/jsonschemas/concepts_gnd/gnd-concept-v0.0.1.json b/rero_mef/concepts/gnd/jsonschemas/concepts_gnd/gnd-concept-v0.0.1.json new file mode 100644 index 00000000..6d659e06 --- /dev/null +++ b/rero_mef/concepts/gnd/jsonschemas/concepts_gnd/gnd-concept-v0.0.1.json @@ -0,0 +1,3 @@ +{ + "$ref": "https://mef.rero.ch/schemas/common/concept-v0.0.1.json" +} \ No newline at end of file diff --git a/rero_mef/concepts/gnd/mappings/__init__.py b/rero_mef/concepts/gnd/mappings/__init__.py new file mode 100644 index 00000000..83576f13 --- /dev/null +++ b/rero_mef/concepts/gnd/mappings/__init__.py @@ -0,0 +1,18 @@ +# -*- coding: utf-8 -*- +# +# RERO MEF +# Copyright (C) 2024 RERO +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + +"""Elasticsearch mappings.""" diff --git a/rero_mef/concepts/gnd/mappings/v7/__init__.py b/rero_mef/concepts/gnd/mappings/v7/__init__.py new file mode 100644 index 00000000..83576f13 --- /dev/null +++ b/rero_mef/concepts/gnd/mappings/v7/__init__.py @@ -0,0 +1,18 @@ +# -*- coding: utf-8 -*- +# +# RERO MEF +# Copyright (C) 2024 RERO +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + +"""Elasticsearch mappings.""" diff --git a/rero_mef/concepts/gnd/mappings/v7/concepts_gnd/gnd-concept-v0.0.1.json b/rero_mef/concepts/gnd/mappings/v7/concepts_gnd/gnd-concept-v0.0.1.json new file mode 100644 index 00000000..2b3d0acf --- /dev/null +++ b/rero_mef/concepts/gnd/mappings/v7/concepts_gnd/gnd-concept-v0.0.1.json @@ -0,0 +1,164 @@ +{ + "settings": { + "number_of_shards": 8, + "number_of_replicas": 2, + "max_result_window": 100000000 + }, + "mappings": { + "date_detection": false, + "numeric_detection": false, + "properties": { + "$schema": { + "type": "keyword" + }, + "pid": { + "type": "keyword" + }, + "type": { + "type": "keyword" + }, + "md5": { + "type": "keyword" + }, + "identifiedBy": { + "type": "object", + "properties": { + "type": { + "type": "keyword" + }, + "source": { + "type": "keyword" + }, + "value": { + "type": "keyword" + }, + "_identifier": { + "type": "keyword" + } + } + }, + "bnf_type": { + "type": "keyword" + }, + "_association_identifier": { + "type": "keyword" + }, + "authorized_access_point": { + "type": "text" + }, + "variant_access_point": { + "type": "text" + }, + "broader": { + "type": "object", + "properties": { + "authorized_access_point": { + "type": "text" + } + } + }, + "related": { + "type": "object", + "properties": { + "authorized_access_point": { + "type": "text" + } + } + }, + "narrower": { + "type": "object", + "properties": { + "authorized_access_point": { + "type": "text" + } + } + }, + "classification": { + "type": "object", + "properties": { + "type": { + "type": "keyword" + }, + "classificationPortion": { + "type": "keyword" + }, + "name": { + "type": "keyword" + } } + }, + "note": { + "type": "object", + "properties": { + "noteType": { + "type": "keyword" + }, + "label": { + "type": "text" + } + } + }, + "exactMatch": { + "type": "object", + "properties": { + "authorized_access_point": { + "type": "text" + }, + "source": { + "type": "keyword" + }, + "identifiedBy": { + "type": "object", + "properties": { + "type": { + "type": "keyword" + }, + "source": { + "type": "keyword" + }, + "value": { + "type": "keyword" + }, + "_identifier": { + "type": "keyword" + } + } + } + } + }, + "closeMatch": { + "type": "object", + "properties": { + "authorized_access_point": { + "type": "text" + }, + "source": { + "type": "keyword" + }, + "identifiedBy": { + "type": "object", + "properties": { + "type": { + "type": "keyword" + }, + "source": { + "type": "keyword" + }, + "value": { + "type": "keyword" + }, + "_identifier": { + "type": "keyword" + } + } + } + } + }, + "_created": { + "type": "date" + }, + "_updated": { + "type": "date" + } + } + } +} diff --git a/rero_mef/concepts/gnd/minters.py b/rero_mef/concepts/gnd/minters.py new file mode 100644 index 00000000..2600b033 --- /dev/null +++ b/rero_mef/concepts/gnd/minters.py @@ -0,0 +1,26 @@ +# -*- coding: utf-8 -*- +# +# RERO MEF +# Copyright (C) 2024 RERO +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +"""Identifier minters.""" + +from __future__ import absolute_import, print_function, unicode_literals + +from functools import partial + +from ...minters import id_minter +from .providers import ConceptGndProvider + +gnd_id_minter = partial(id_minter, provider=ConceptGndProvider, recid_field="pid") diff --git a/rero_mef/concepts/gnd/models.py b/rero_mef/concepts/gnd/models.py new file mode 100644 index 00000000..0ec13f20 --- /dev/null +++ b/rero_mef/concepts/gnd/models.py @@ -0,0 +1,42 @@ +# -*- coding: utf-8 -*- +# +# RERO MEF +# Copyright (C) 2024 RERO +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +"""Define relation between records and buckets.""" + +from __future__ import absolute_import + +from invenio_db import db +from invenio_pidstore.models import RecordIdentifier +from invenio_records.models import RecordMetadataBase + + +class ConceptGndIdentifier(RecordIdentifier): + """Sequence generator for concepts Authority identifiers.""" + + __tablename__ = "concept_gnd_id" + __mapper_args__ = {"concrete": True} + + recid = db.Column( + db.BigInteger().with_variant(db.Integer, "sqlite"), + primary_key=True, + autoincrement=True, + ) + + +class ConceptGndMetadata(db.Model, RecordMetadataBase): + """Represent a record metadata.""" + + __tablename__ = "concept_gnd_metadata" diff --git a/rero_mef/concepts/gnd/providers.py b/rero_mef/concepts/gnd/providers.py new file mode 100644 index 00000000..5abea183 --- /dev/null +++ b/rero_mef/concepts/gnd/providers.py @@ -0,0 +1,45 @@ +# -*- coding: utf-8 -*- +# +# RERO MEF +# Copyright (C) 2024 RERO +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + +"""Identifier provider.""" + +from __future__ import absolute_import, print_function + +from invenio_pidstore.models import PIDStatus +from invenio_pidstore.providers.base import BaseProvider + +from .models import ConceptGndIdentifier + + +class ConceptGndProvider(BaseProvider): + """Concepts identifier provider.""" + + pid_type = "cognd" + """Type of persistent identifier.""" + + pid_identifier = ConceptGndIdentifier.__tablename__ + """Identifier for table name""" + + pid_provider = None + """Provider name. + + The provider name is not recorded in the PID since the provider does not + provide any additional features besides creation of Document ids. + """ + + default_status = PIDStatus.REGISTERED + """Concepts IDs are by default registered immediately.""" diff --git a/rero_mef/concepts/gnd/tasks.py b/rero_mef/concepts/gnd/tasks.py new file mode 100644 index 00000000..8ced409e --- /dev/null +++ b/rero_mef/concepts/gnd/tasks.py @@ -0,0 +1,134 @@ +# -*- coding: utf-8 -*- +# +# RERO MEF +# Copyright (C) 2024 RERO +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + +"""Tasks used by RERO-MEF.""" + +import requests +from celery import shared_task +from flask import current_app +from pymarc.marcxml import parse_xml_to_array +from six import BytesIO + +from ...marctojson.do_gnd_concepts import Transformation +from ...utils import ( + MyOAIItemIterator, + SickleWithRetries, + oai_process_records_from_dates, + oai_save_records_from_dates, + requests_retry_session, +) +from .api import ConceptGndRecord + + +@shared_task +def process_records_from_dates( + from_date=None, + until_date=None, + ignore_deleted=False, + dbcommit=True, + reindex=True, + test_md5=True, + verbose=False, + debug=False, + viaf_online=False, + **kwargs, +): + """Harvest multiple records from an OAI repo. + + :param from_date: The lower bound date for the harvesting (optional). + :param until_date: The upper bound date for the harvesting (optional). + :param ignore_deleted: Ignore deleted records. + :param dbcommit: Commit changes to DB. + :param reindex: Reindex in ES. + :param test_md5: Test MD5 for changes. + :param verbose: Verbose print. + :param debug: Debug print. + :param viaf_online: Get also VIAF. + """ + # data on GND Servers starts on 2000-10-01 + return oai_process_records_from_dates( + name="concepts.gnd", + sickle=SickleWithRetries, + max_retries=current_app.config.get("RERO_OAI_RETRIES", 0), + oai_item_iterator=MyOAIItemIterator, + transformation=Transformation, + record_class=ConceptGndRecord, + days_spann=30, + from_date=from_date, + until_date=until_date, + ignore_deleted=ignore_deleted, + dbcommit=dbcommit, + reindex=reindex, + test_md5=test_md5, + verbose=verbose, + debug=debug, + viaf_online=viaf_online, + kwargs=kwargs, + ) + + +@shared_task +def save_records_from_dates(file_name, from_date=None, until_date=None, verbose=False): + """Harvest and save multiple records from an OAI repo. + + :param file_name: The name of the OAIHarvestConfig to use instead of passing + specific parameters. + :param from_date: The lower bound date for the harvesting (optional). + :param until_date: The upper bound date for the harvesting (optional). + """ + # data on IDREF Servers starts on 2000-10-01 + return oai_save_records_from_dates( + name="concepts.gnd", + file_name=file_name, + sickle=SickleWithRetries, + max_retries=current_app.config.get("RERO_OAI_RETRIES", 0), + oai_item_iterator=MyOAIItemIterator, + days_spann=30, + from_date=from_date, + until_date=until_date, + verbose=verbose, + ) + + +@shared_task +def gnd_get_record(id_, debug=False): + """Get a record from GND SRU repo. + + GND documentation: + https://www.dnb.de/DE/Service/Hilfe/Katalog/kataloghilfe.html?nn=587750#link + https://services.dnb.de/sru/authorities?version=1.1 + &operation=searchRetrieve&query=idn%3D007355440&recordSchema=MARC21-xml + """ + url = current_app.config["RERO_MEF_AGENTS_GND_GET_RECORD"].replace("{id}", id_) + trans_record = None + msg = f"SRU-agents.gnd get: {id_:<15} {url}" + try: + response = requests_retry_session().get(url) + status_code = response.status_code + if status_code == requests.codes.ok: + if records := parse_xml_to_array(BytesIO(response.content)): + trans_record = Transformation(records[0]).json + pid = trans_record.get("pid") + if id_ != pid: + return None, f"{msg} | PID changed: {id_} -> {pid}" + return trans_record, f"{msg} | OK" + return None, f"{msg} | No record" + return None, f"{msg} | HTTP Error: {status_code}" + except Exception as err: + if debug: + raise + return None, f"{msg} | Error: {err}" diff --git a/rero_mef/concepts/idref/api.py b/rero_mef/concepts/idref/api.py index 5be96720..202af2fd 100644 --- a/rero_mef/concepts/idref/api.py +++ b/rero_mef/concepts/idref/api.py @@ -17,6 +17,7 @@ """API for manipulating IdRef agent.""" +from flask import current_app from invenio_search.api import RecordsSearch from ..api import ConceptIndexer, ConceptRecord @@ -59,12 +60,47 @@ def get_online_record(cls, id_, debug=False): :param id_: Id of online record. :param debug: Debug print. :returns: record or None - Has to be overloaded in agent class. """ from .tasks import idref_get_record return idref_get_record(id_=id_, debug=debug) + @property + def association_identifier(self): + """Get associated identifier from identifiedBy.""" + if pids := [ + identified_by.get("value") + for identified_by in self.get("identifiedBy", []) + if identified_by.get("source") == "BNF" + and identified_by.get("value", "").startswith("FRBNF") + ]: + if len(pids) > 1: + current_app.logger.error( + f"MULTIPLE ASSOCIATIONS FOUND FOR: {self.name} {self.pid} | {', '.join(pids)}" + ) + if pids: + return pids[-1] + + @property + def association_info(self): + """Get associated record.""" + from rero_mef.concepts import ( + ConceptGndRecord, + ConceptGndSearch, + ConceptMefRecord, + ) + + ConceptGndRecord.flush_indexes() + return { + "identifier": self.association_identifier, + "record": self.get_association_record( + association_cls=ConceptGndRecord, association_search=ConceptGndSearch + ), + "record_cls": ConceptGndRecord, + "search_cls": ConceptGndSearch, + "mef_cls": ConceptMefRecord, + } + class ConceptIdrefIndexer(ConceptIndexer): """Concept IDREF indexer.""" diff --git a/rero_mef/concepts/idref/mappings/v7/concepts_idref/idref-concept-v0.0.1.json b/rero_mef/concepts/idref/mappings/v7/concepts_idref/idref-concept-v0.0.1.json index 5e18a444..2b3d0acf 100644 --- a/rero_mef/concepts/idref/mappings/v7/concepts_idref/idref-concept-v0.0.1.json +++ b/rero_mef/concepts/idref/mappings/v7/concepts_idref/idref-concept-v0.0.1.json @@ -31,12 +31,18 @@ }, "value": { "type": "keyword" + }, + "_identifier": { + "type": "keyword" } } }, "bnf_type": { "type": "keyword" }, + "_association_identifier": { + "type": "keyword" + }, "authorized_access_point": { "type": "text" }, @@ -91,6 +97,34 @@ } } }, + "exactMatch": { + "type": "object", + "properties": { + "authorized_access_point": { + "type": "text" + }, + "source": { + "type": "keyword" + }, + "identifiedBy": { + "type": "object", + "properties": { + "type": { + "type": "keyword" + }, + "source": { + "type": "keyword" + }, + "value": { + "type": "keyword" + }, + "_identifier": { + "type": "keyword" + } + } + } + } + }, "closeMatch": { "type": "object", "properties": { @@ -111,6 +145,9 @@ }, "value": { "type": "keyword" + }, + "_identifier": { + "type": "keyword" } } } diff --git a/rero_mef/concepts/listener.py b/rero_mef/concepts/listener.py new file mode 100644 index 00000000..5a46aa12 --- /dev/null +++ b/rero_mef/concepts/listener.py @@ -0,0 +1,53 @@ +# -*- coding: utf-8 -*- +# +# RERO MEF +# Copyright (C) 2021 RERO +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + +"""Signals connector for Concepts.""" + + +from rero_mef.concepts import ConceptGndSearch, ConceptIdrefSearch +from rero_mef.utils import make_identifier + + +def enrich_concept_data( + sender, + json=None, + record=None, + index=None, + doc_type=None, + arguments=None, + **dummy_kwargs, +): + """Signal sent before a record is indexed. + + :param json: The dumped record dictionary which can be modified. + :param record: The record being indexed. + :param index: The index in which the record will be indexed. + :param doc_type: The doc_type for the record. + """ + index_name = index.split("-")[0] + if index_name in {ConceptGndSearch.Meta.index, ConceptIdrefSearch.Meta.index}: + for identified_by in json.get("identifiedBy", []): + identified_by["_identifier"] = make_identifier(identified_by) + for match_type in {"exactMatch", "closeMatch"}: + for match in json.get(match_type, []): + for identified_by in match.get("identifiedBy", []): + identified_by["_identifier"] = make_identifier(identified_by) + + if not json.get("deleted") and ( + association_identifier := record.association_identifier + ): + json["_association_identifier"] = association_identifier diff --git a/rero_mef/concepts/mef/api.py b/rero_mef/concepts/mef/api.py index b94e524e..464c67dd 100644 --- a/rero_mef/concepts/mef/api.py +++ b/rero_mef/concepts/mef/api.py @@ -22,27 +22,14 @@ from flask import current_app from invenio_search.api import RecordsSearch +from rero_mef.api import EntityIndexer +from rero_mef.api_mef import EntityMefRecord + +from ..utils import get_concept_classes from .fetchers import mef_id_fetcher from .minters import mef_id_minter from .models import ConceptMefMetadata from .providers import ConceptMefProvider -from ..utils import get_concept_classes -from ...api import ReroIndexer -from ...api_mef import EntityMefRecord - - -def build_ref_string(concept_pid, concept): - """Build url for concept's api. - - :param concept_pid: Pid of concept. - :param concept: Type of concept. - :returns: Reference string to record. - """ - with current_app.app_context(): - return ( - f'{current_app.config.get("RERO_MEF_APP_BASE_URL")}' - f"/api/concepts/{concept}/{concept_pid}" - ) class ConceptMefSearch(RecordsSearch): @@ -69,7 +56,7 @@ class ConceptMefRecord(EntityMefRecord): model_cls = ConceptMefMetadata search = ConceptMefSearch mef_type = "CONCEPTS" - entities = ["idref", "rero"] + entities = ["idref", "rero", "gnd"] @classmethod def _set_type(cls, data): @@ -193,7 +180,7 @@ def get_latest(cls, pid_type, pid): return {} -class ConceptMefIndexer(ReroIndexer): +class ConceptMefIndexer(EntityIndexer): """Concept MEF indexer.""" record_cls = ConceptMefRecord diff --git a/rero_mef/concepts/mef/jsonschemas/concepts_mef/mef-concept-v0.0.1.json b/rero_mef/concepts/mef/jsonschemas/concepts_mef/mef-concept-v0.0.1.json index a1402b79..1d741858 100644 --- a/rero_mef/concepts/mef/jsonschemas/concepts_mef/mef-concept-v0.0.1.json +++ b/rero_mef/concepts/mef/jsonschemas/concepts_mef/mef-concept-v0.0.1.json @@ -50,6 +50,17 @@ } } }, + "gnd": { + "title": "IdRGNDef concept ID", + "type": "object", + "properties": { + "$ref": { + "title": "ref", + "type": "string", + "pattern": "^https://mef.rero.ch/api/concepts/gnd/.*?$" + } + } + }, "deleted": { "title": "Deletion date", "type": "string", diff --git a/rero_mef/concepts/mef/mappings/v7/concepts_mef/mef-concept-v0.0.1.json b/rero_mef/concepts/mef/mappings/v7/concepts_mef/mef-concept-v0.0.1.json index 6c7bba43..d1690787 100644 --- a/rero_mef/concepts/mef/mappings/v7/concepts_mef/mef-concept-v0.0.1.json +++ b/rero_mef/concepts/mef/mappings/v7/concepts_mef/mef-concept-v0.0.1.json @@ -62,8 +62,19 @@ "bnf_type": { "type": "keyword" }, - "identifier": { - "type": "keyword" + "identifiedBy": { + "type": "object", + "properties": { + "type": { + "type": "keyword" + }, + "source": { + "type": "keyword" + }, + "value": { + "type": "keyword" + } + } }, "authorized_access_point": { "type": "text", @@ -99,6 +110,34 @@ } } }, + "exactMatch": { + "type": "object", + "properties": { + "authorized_access_point": { + "type": "text" + }, + "source": { + "type": "keyword" + }, + "identifiedBy": { + "type": "object", + "properties": { + "type": { + "type": "keyword" + }, + "source": { + "type": "keyword" + }, + "value": { + "type": "keyword" + }, + "_identifier": { + "type": "keyword" + } + } + } + } + }, "closeMatch": { "type": "object", "properties": { @@ -119,6 +158,9 @@ }, "value": { "type": "keyword" + }, + "_identifier": { + "type": "keyword" } } } @@ -150,9 +192,150 @@ "bnf_type": { "type": "keyword" }, - "identifier": { + "identifiedBy": { + "type": "object", + "properties": { + "type": { + "type": "keyword" + }, + "source": { + "type": "keyword" + }, + "value": { + "type": "keyword" + } + } + }, + "authorized_access_point": { + "type": "text", + "copy_to": "autocomplete_name" + }, + "variant_access_point": { + "type": "text" + }, + "deleted": { + "type": "date" + }, + "related": { + "type": "object", + "properties": { + "authorized_access_point": { + "type": "text" + } + } + }, + "broader": { + "type": "object", + "properties": { + "authorized_access_point": { + "type": "text" + } + } + }, + "narrower": { + "type": "object", + "properties": { + "authorized_access_point": { + "type": "text" + } + } + }, + "exactMatch": { + "type": "object", + "properties": { + "authorized_access_point": { + "type": "text" + }, + "source": { + "type": "keyword" + }, + "identifiedBy": { + "type": "object", + "properties": { + "type": { + "type": "keyword" + }, + "source": { + "type": "keyword" + }, + "value": { + "type": "keyword" + }, + "_identifier": { + "type": "keyword" + } + } + } + } + }, + "closeMatch": { + "type": "object", + "properties": { + "authorized_access_point": { + "type": "text" + }, + "source": { + "type": "keyword" + }, + "identifiedBy": { + "type": "object", + "properties": { + "type": { + "type": "keyword" + }, + "source": { + "type": "keyword" + }, + "value": { + "type": "keyword" + }, + "_identifier": { + "type": "keyword" + } + } + } + } + }, + "_created": { + "type": "date" + }, + "_updated": { + "type": "date" + } + } + }, + "gnd": { + "type": "object", + "properties": { + "$schema": { "type": "keyword" }, + "pid": { + "type": "keyword" + }, + "type": { + "type": "keyword" + }, + "md5": { + "type": "keyword" + }, + "bnf_type": { + "type": "keyword" + }, + "identifiedBy": { + "type": "object", + "properties": { + "type": { + "type": "keyword" + }, + "source": { + "type": "keyword" + }, + "value": { + "type": "keyword" + } + } + }, "authorized_access_point": { "type": "text", "copy_to": "autocomplete_name" @@ -187,6 +370,34 @@ } } }, + "exactMatch": { + "type": "object", + "properties": { + "authorized_access_point": { + "type": "text" + }, + "source": { + "type": "keyword" + }, + "identifiedBy": { + "type": "object", + "properties": { + "type": { + "type": "keyword" + }, + "source": { + "type": "keyword" + }, + "value": { + "type": "keyword" + }, + "_identifier": { + "type": "keyword" + } + } + } + } + }, "closeMatch": { "type": "object", "properties": { @@ -207,6 +418,9 @@ }, "value": { "type": "keyword" + }, + "_identifier": { + "type": "keyword" } } } diff --git a/rero_mef/concepts/mef/serializers.py b/rero_mef/concepts/mef/serializers.py index e1195bf1..bb7958b6 100644 --- a/rero_mef/concepts/mef/serializers.py +++ b/rero_mef/concepts/mef/serializers.py @@ -83,7 +83,7 @@ def serialize(self, pid, record, links_factory=None, **kwargs): concept_classes = get_entity_classes() for concept, concept_classe in concept_classes.items(): - if concept in ["corero", "cidref"]: + if concept in ["corero", "cidref", "cognd"]: local_link(concept, concept_classe.name, rec) return super(ReroMefSerializer, self).serialize( diff --git a/rero_mef/concepts/rero/api.py b/rero_mef/concepts/rero/api.py index 79b3cd07..4dfaaddf 100644 --- a/rero_mef/concepts/rero/api.py +++ b/rero_mef/concepts/rero/api.py @@ -19,11 +19,11 @@ from invenio_search.api import RecordsSearch +from ..api import ConceptIndexer, ConceptRecord from .fetchers import rero_id_fetcher from .minters import rero_id_minter from .models import ConceptReroMetadata from .providers import ConceptReroProvider -from ..api import ConceptIndexer, ConceptRecord class ConceptReroSearch(RecordsSearch): @@ -52,6 +52,23 @@ class ConceptReroRecord(ConceptRecord): model_cls = ConceptReroMetadata search = ConceptReroSearch + @property + def association_identifier(self): + """Get associated identifier from identifiedBy.""" + + @property + def association_info(self): + """Get associated record.""" + from rero_mef.concepts import ConceptMefRecord + + return { + "identifier": self.association_identifier, + "record": None, + "record_cls": None, + "search_cls": None, + "mef_cls": ConceptMefRecord, + } + class ConceptReroIndexer(ConceptIndexer): """Concept RERO indexer.""" diff --git a/rero_mef/concepts/rero/mappings/v7/concepts_rero/rero-concept-v0.0.1.json b/rero_mef/concepts/rero/mappings/v7/concepts_rero/rero-concept-v0.0.1.json index 5e18a444..c7ce41f8 100644 --- a/rero_mef/concepts/rero/mappings/v7/concepts_rero/rero-concept-v0.0.1.json +++ b/rero_mef/concepts/rero/mappings/v7/concepts_rero/rero-concept-v0.0.1.json @@ -31,9 +31,15 @@ }, "value": { "type": "keyword" + }, + "_identifier": { + "type": "keyword" } } }, + "_association_identifier": { + "type": "keyword" + }, "bnf_type": { "type": "keyword" }, @@ -91,6 +97,34 @@ } } }, + "exactMatch": { + "type": "object", + "properties": { + "authorized_access_point": { + "type": "text" + }, + "source": { + "type": "keyword" + }, + "identifiedBy": { + "type": "object", + "properties": { + "type": { + "type": "keyword" + }, + "source": { + "type": "keyword" + }, + "value": { + "type": "keyword" + }, + "_identifier": { + "type": "keyword" + } + } + } + } + }, "closeMatch": { "type": "object", "properties": { @@ -111,6 +145,9 @@ }, "value": { "type": "keyword" + }, + "_identifier": { + "type": "keyword" } } } diff --git a/rero_mef/config.py b/rero_mef/config.py index 01d321ca..d2c5fbcd 100644 --- a/rero_mef/config.py +++ b/rero_mef/config.py @@ -25,6 +25,7 @@ from __future__ import absolute_import, print_function +import sys from datetime import timedelta from invenio_records_rest.facets import terms_filter @@ -38,6 +39,7 @@ from .concepts.rero.models import ConceptReroIdentifier from .filter import exists_filter from .marctojson.do_gnd_agent import Transformation as AgentGndTransformation +from .marctojson.do_gnd_concepts import Transformation as ConceptGndTransformation from .marctojson.do_gnd_places import Transformation as PlaceGndTransformation from .marctojson.do_idref_agent import Transformation as AgentIdrefTransformation from .marctojson.do_idref_concepts import Transformation as ConceptIdrefTransformation @@ -140,12 +142,6 @@ "task": "invenio_accounts.tasks.clean_session_table", "schedule": timedelta(minutes=60), } - # We will harvest with a kubernetes cron job. - # 'idref-harvester': { - # 'task': 'rero_mef.agents.idref.tasks.process_records_from_dates', - # 'schedule': timedelta(minutes=360), - # 'kwargs': dict(name='idref'), - # } } CELERY_BROKER_HEARTBEAT = 0 INDEXER_BULK_REQUEST_TIMEOUT = 60 @@ -205,6 +201,8 @@ "agrero": AgentReroTransformation, "corero": ConceptReroTransformation, "cidref": ConceptIdrefTransformation, + "cognd": ConceptGndTransformation, + "pidref": PlaceIdrefTransformation, "pidref": PlaceIdrefTransformation, "plgnd": PlaceGndTransformation, } @@ -230,6 +228,7 @@ "?version=1.1&operation=searchRetrieve&query=idn%3D{id}" "&recordSchema=MARC21-xml" ) +RERO_MEF_PLACES_GND_MATCHES = {"exactMatch": sys.maxsize, "closeMatch": 1} SEARCH_CLIENT_CONFIG = dict( timeout=60, @@ -249,21 +248,14 @@ record_class="rero_mef.agents.mef.api:AgentMefRecord", search_index="mef", record_serializers={ - "application/json": ( - "rero_mef.agents.mef.serializers" ":json_agent_mef_response" - ), + "application/json": "rero_mef.agents.mef.serializers:json_agent_mef_response", }, search_serializers={ - "application/json": ( - "rero_mef.agents.mef.serializers" ":json_agent_mef_search" - ), + "application/json": "rero_mef.agents.mef.serializers:json_agent_mef_search", }, search_factory_imp="rero_mef.query:and_search_factory", list_route="/agents/mef/", - item_route=( - "agents//mef/' - ), + item_route="agents/mef/", default_media_type="application/json", max_result_window=MAX_RESULT_WINDOW, error_handlers={}, @@ -277,21 +269,16 @@ record_class="rero_mef.agents.viaf.api:AgentViafRecord", search_index="viaf", record_serializers={ - "application/json": ( - "rero_mef.agents.viaf.serializers" ":json_agent_viaf_response" - ), + "application/json": "rero_mef.agents.viaf.serializers" + ":json_agent_viaf_response", }, search_serializers={ - "application/json": ( - "rero_mef.agents.viaf.serializers" ":json_agent_viaf_search" - ), + "application/json": "rero_mef.agents.viaf.serializers" + ":json_agent_viaf_search", }, search_factory_imp="rero_mef.query:and_search_factory", list_route="/agents/viaf/", - item_route=( - "/agents/viaf/' - ), + item_route="/agents/viaf/", default_media_type="application/json", max_result_window=MAX_RESULT_WINDOW, error_handlers={}, @@ -305,17 +292,14 @@ record_class="rero_mef.agents.gnd.api:AgentGndRecord", search_index="agents_gnd", record_serializers={ - "application/json": ("rero_mef.agents.serializers" ":json_agent_response"), + "application/json": "rero_mef.agents.serializers:json_agent_response", }, search_serializers={ - "application/json": ("rero_mef.agents.serializers" ":json_agent_search"), + "application/json": "rero_mef.agents.serializers:json_agent_search", }, search_factory_imp="rero_mef.query:and_search_factory", list_route="/agents/gnd/", - item_route=( - "/agents/gnd/' - ), + item_route="/agents/gnd/", default_media_type="application/json", max_result_window=MAX_RESULT_WINDOW, error_handlers={}, @@ -329,17 +313,14 @@ record_class="rero_mef.agents.idref.api:AgentIdrefRecord", search_index="agents_idref", record_serializers={ - "application/json": ("rero_mef.agents.serializers" ":json_agent_response"), + "application/json": "rero_mef.agents.serializers:json_agent_response", }, search_serializers={ - "application/json": ("rero_mef.agents.serializers" ":json_agent_search"), + "application/json": "rero_mef.agents.serializers:json_agent_search", }, search_factory_imp="rero_mef.query:and_search_factory", list_route="/agents/idref/", - item_route=( - "/agents/idref/' - ), + item_route="/agents/idref/", default_media_type="application/json", max_result_window=MAX_RESULT_WINDOW, error_handlers={}, @@ -353,17 +334,14 @@ record_class="rero_mef.agents.rero.api:AgentReroRecord", search_index="agents_rero", record_serializers={ - "application/json": ("rero_mef.agents.serializers" ":json_agent_response"), + "application/json": "rero_mef.agents.serializers:json_agent_response", }, search_serializers={ - "application/json": ("rero_mef.agents.serializers" ":json_agent_search"), + "application/json": "rero_mef.agents.serializers:json_agent_search", }, search_factory_imp="rero_mef.query:and_search_factory", list_route="/agents/rero/", - item_route=( - "/agents/rero/' - ), + item_route="/agents/rero/", default_media_type="application/json", max_result_window=MAX_RESULT_WINDOW, error_handlers={}, @@ -377,22 +355,14 @@ record_class="rero_mef.concepts.mef.api:ConceptMefRecord", search_index="concepts_mef", record_serializers={ - "application/json": ( - "rero_mef.concepts.mef.serializers" ":json_concept_mef_response" - ), + "application/json": "rero_mef.concepts.mef.serializers:json_concept_mef_response", }, search_serializers={ - "application/json": ( - "rero_mef.concepts.mef.serializers" ":json_concept_mef_search" - ), + "application/json": "rero_mef.concepts.mef.serializers:json_concept_mef_search", }, search_factory_imp="rero_mef.query:and_search_factory", list_route="/concepts/mef/", - item_route=( - "/concepts/mef/" - ), + item_route="/concepts/mef/", default_media_type="application/json", max_result_window=MAX_RESULT_WINDOW, error_handlers={}, @@ -406,21 +376,14 @@ record_class="rero_mef.concepts.rero.api:ConceptReroRecord", search_index="concepts_rero", record_serializers={ - "application/json": ( - "rero_mef.concepts.serializers" ":json_concept_response" - ), + "application/json": "rero_mef.concepts.serializers:json_concept_response", }, search_serializers={ - "application/json": ( - "rero_mef.concepts.serializers" ":json_concept_search" - ), + "application/json": "rero_mef.concepts.serializers:json_concept_search", }, search_factory_imp="rero_mef.query:and_search_factory", list_route="/concepts/rero/", - item_route=( - "/concepts/rero/' - ), + item_route="/concepts/rero/", default_media_type="application/json", max_result_window=MAX_RESULT_WINDOW, error_handlers={}, @@ -434,25 +397,42 @@ record_class="rero_mef.concepts.idref.api:ConceptIdrefRecord", search_index="concepts_idref", record_serializers={ - "application/json": ( - "rero_mef.concepts.serializers" ":json_concept_response" - ), + "application/json": "rero_mef.concepts.serializers" + ":json_concept_response", }, search_serializers={ - "application/json": ( - "rero_mef.concepts.serializers" ":json_concept_search" - ), + "application/json": "rero_mef.concepts.serializers:json_concept_search", }, search_factory_imp="rero_mef.query:and_search_factory", list_route="/concepts/idref/", item_route=( - "/concepts/idref/' + "/concepts/idref/" ), default_media_type="application/json", max_result_window=MAX_RESULT_WINDOW, error_handlers={}, ), + cognd=dict( + pid_type="cognd", + pid_minter="concept_gnd_id", + pid_fetcher="concept_gnd_id", + search_class="rero_mef.concepts.gnd.api:ConceptGndSearch", + indexer_class="rero_mef.concepts.gnd.api:ConceptGndIndexer", + record_class="rero_mef.concepts.gnd.api:ConceptGndRecord", + search_index="concepts_gnd", + record_serializers={ + "application/json": "rero_mef.concepts.serializers:json_concept_response", + }, + search_serializers={ + "application/json": "rero_mef.concepts.serializers:json_concept_search", + }, + search_factory_imp="rero_mef.query:and_search_factory", + list_route="/concepts/gnd/", + item_route="/concepts/gnd/", + default_media_type="application/json", + max_result_window=MAX_RESULT_WINDOW, + error_handlers={}, + ), plmef=dict( pid_type="plmef", pid_minter="place_mef_id", @@ -462,22 +442,14 @@ record_class="rero_mef.places.mef.api:PlaceMefRecord", search_index="places_mef", record_serializers={ - "application/json": ( - "rero_mef.places.mef.serializers" ":json_place_mef_response" - ), + "application/json": "rero_mef.places.mef.serializers:json_place_mef_response", }, search_serializers={ - "application/json": ( - "rero_mef.places.mef.serializers" ":json_place_mef_search" - ), + "application/json": "rero_mef.places.mef.serializers:json_place_mef_search", }, search_factory_imp="rero_mef.query:and_search_factory", list_route="/places/mef/", - item_route=( - "/places/mef/" - ), + item_route="/places/mef/", default_media_type="application/json", max_result_window=MAX_RESULT_WINDOW, error_handlers={}, @@ -491,17 +463,14 @@ record_class="rero_mef.places.idref.api:PlaceIdrefRecord", search_index="places_idref", record_serializers={ - "application/json": ("rero_mef.places.serializers" ":json_place_response"), + "application/json": "rero_mef.places.serializers:json_place_response", }, search_serializers={ - "application/json": ("rero_mef.places.serializers" ":json_place_search"), + "application/json": "rero_mef.places.serializers:json_place_search", }, search_factory_imp="rero_mef.query:and_search_factory", list_route="/places/idref/", - item_route=( - "/places/idref/' - ), + item_route="/places/idref/", default_media_type="application/json", max_result_window=MAX_RESULT_WINDOW, error_handlers={}, @@ -515,17 +484,14 @@ record_class="rero_mef.places.gnd.api:PlaceGndRecord", search_index="places_gnd", record_serializers={ - "application/json": ("rero_mef.places.serializers" ":json_place_response"), + "application/json": "rero_mef.places.serializers:json_place_response", }, search_serializers={ - "application/json": ("rero_mef.places.serializers" ":json_place_search"), + "application/json": "rero_mef.places.serializers:json_place_search", }, search_factory_imp="rero_mef.query:and_search_factory", list_route="/places/gnd/", - item_route=( - "/places/gnd/' - ), + item_route="/places/gnd/", default_media_type="application/json", max_result_window=MAX_RESULT_WINDOW, error_handlers={}, @@ -534,7 +500,7 @@ RERO_AGENTS = ["aidref", "aggnd", "agrero"] -RERO_CONCEPTS = ["cidref", "corero"] +RERO_CONCEPTS = ["cidref", "corero", "cognd"] RERO_PLACES = ["pidref", "plgnd"] @@ -546,6 +512,7 @@ "plgnd": "/places_gnd/gnd-place-v0.0.1.json", "corero": "/concepts_rero/rero-concept-v0.0.1.json", "cidref": "/concepts_idref/idref-concept-v0.0.1.json", + "cognd": "/concepts_gnd/gnd-concept-v0.0.1.json", "comef": "/concepts_mef/mef-concept-v0.0.1.json", "aggnd": "/agents_gnd/gnd-agent-v0.0.1.json", "agrero": "/agents_rero/rero-agent-v0.0.1.json", @@ -631,6 +598,9 @@ ), deleted=dict(filter=dict(exists=dict(field="deleted"))), identifiedBy_source=dict(terms=dict(field="identifiedBy.source", size=30)), + association_identifier=dict( + terms=dict(field="_association_identifier", size=30) + ), ), filters=dict( type=terms_filter("type"), @@ -638,6 +608,7 @@ classificationPortion=terms_filter("classification.classificationPortion"), deleted=exists_filter("deleted"), identifiedBy_source=terms_filter("identifiedBy.source"), + association_identifier=terms_filter("_association_identifier"), ), ), concepts_idref=dict( @@ -649,6 +620,31 @@ ), deleted=dict(filter=dict(exists=dict(field="deleted"))), identifiedBy_source=dict(terms=dict(field="identifiedBy.source", size=30)), + association_identifier=dict( + terms=dict(field="_association_identifier", size=30) + ), + ), + filters=dict( + type=terms_filter("type"), + classification=terms_filter("classification.name"), + classificationPortion=terms_filter("classification.classificationPortion"), + deleted=exists_filter("deleted"), + identifiedBy_source=terms_filter("identifiedBy.source"), + association_identifier=terms_filter("_association_identifier"), + ), + ), + concepts_gnd=dict( + aggs=dict( + type=dict(terms=dict(field="type", size=30)), + classification=dict(terms=dict(field="classification.name", size=30)), + classificationPortion=dict( + terms=dict(field="classification.classificationPortion", size=30) + ), + deleted=dict(filter=dict(exists=dict(field="deleted"))), + identifiedBy_source=dict(terms=dict(field="identifiedBy.source", size=30)), + association_identifier=dict( + terms=dict(field="_association_identifier", size=30) + ), ), filters=dict( type=terms_filter("type"), @@ -656,6 +652,7 @@ classificationPortion=terms_filter("classification.classificationPortion"), deleted=exists_filter("deleted"), identifiedBy_source=terms_filter("identifiedBy.source"), + association_identifier=terms_filter("_association_identifier"), ), ), places_mef=dict( @@ -681,6 +678,9 @@ ), deleted=dict(filter=dict(exists=dict(field="deleted"))), identifiedBy_source=dict(terms=dict(field="identifiedBy.source", size=30)), + association_identifier=dict( + terms=dict(field="_association_identifier", size=30) + ), ), filters=dict( type=terms_filter("type"), @@ -688,6 +688,7 @@ classificationPortion=terms_filter("classification.classificationPortion"), deleted=exists_filter("deleted"), identifiedBy_source=terms_filter("identifiedBy.source"), + association_identifier=terms_filter("_association_identifier"), ), ), places_gnd=dict( @@ -699,6 +700,9 @@ ), deleted=dict(filter=dict(exists=dict(field="deleted"))), identifiedBy_source=dict(terms=dict(field="identifiedBy.source", size=30)), + association_identifier=dict( + terms=dict(field="_association_identifier", size=30) + ), ), filters=dict( type=terms_filter("type"), @@ -706,6 +710,7 @@ classificationPortion=terms_filter("classification.classificationPortion"), deleted=exists_filter("deleted"), identifiedBy_source=terms_filter("identifiedBy.source"), + association_identifier=terms_filter("_association_identifier"), ), ), ) diff --git a/rero_mef/ext.py b/rero_mef/ext.py index 316c297b..1e46fdae 100644 --- a/rero_mef/ext.py +++ b/rero_mef/ext.py @@ -19,6 +19,11 @@ from __future__ import absolute_import, print_function +from invenio_indexer.signals import before_record_index + +from rero_mef.concepts.listener import enrich_concept_data +from rero_mef.places.listener import enrich_place_data + class REROMEFAPP(object): """rero-mef extension.""" @@ -35,3 +40,5 @@ def init_app(self, app): def register_signals(self, app): """Register signals.""" + before_record_index.connect(enrich_concept_data, sender=app) + before_record_index.connect(enrich_place_data, sender=app) diff --git a/rero_mef/jsonschemas/common/agent-v0.0.1.json b/rero_mef/jsonschemas/common/agent-v0.0.1.json index f13fc9be..7eb4fa91 100644 --- a/rero_mef/jsonschemas/common/agent-v0.0.1.json +++ b/rero_mef/jsonschemas/common/agent-v0.0.1.json @@ -6,7 +6,6 @@ "$schema", "pid", "type", - "identifier", "authorized_access_point" ], "additionalProperties": false, @@ -67,39 +66,13 @@ } }, "identifier": { - "title": "Identifier", + "title": "Identifier (depreciated)", "description": "XXX (cf. RDA)", "type": "string", "format": "uri" }, "identifiedBy": { - "title": "Identifier", - "type": "array", - "minItems": 1, - "items": { - "type": "object", - "required": [ - "type", - "value" - ], - "properties": { - "type": { - "enum": [ - "bf:Local", - "uri", - "bf:Nbn" - ] - }, - "source": { - "type": "string", - "minLength": 2 - }, - "value": { - "type": "string", - "minLength": 2 - } - } - } + "$ref": "https://mef.rero.ch/schemas/common/identified_by-v0.0.1.json#/identifiedBy" }, "date_of_birth": { "title": "Date of birth", diff --git a/rero_mef/jsonschemas/common/concept-v0.0.1.json b/rero_mef/jsonschemas/common/concept-v0.0.1.json index 1a218069..3563855d 100644 --- a/rero_mef/jsonschemas/common/concept-v0.0.1.json +++ b/rero_mef/jsonschemas/common/concept-v0.0.1.json @@ -1,12 +1,11 @@ { "$schema": "http://json-schema.org/draft-04/schema#", - "title": "Schema for IdRef concept", + "title": "Schema for concepts", "type": "object", "required": [ "$schema", "pid", "type", - "identifiedBy", "authorized_access_point" ], "additionalProperties": false, @@ -35,33 +34,7 @@ "minLength": 1 }, "identifiedBy": { - "title": "Identifier", - "type": "array", - "minItems": 1, - "items": { - "type": "object", - "required": [ - "type", - "value" - ], - "properties": { - "type": { - "enum": [ - "bf:Local", - "uri", - "bf:Nbn" - ] - }, - "source": { - "type": "string", - "minLength": 2 - }, - "value": { - "type": "string", - "minLength": 2 - } - } - } + "$ref": "https://mef.rero.ch/schemas/common/identified_by-v0.0.1.json#/identifiedBy" }, "bnf_type": { "title": "Genre or Form", @@ -209,6 +182,27 @@ } } }, + "exactMatch": { + "title": "Exact term other thesaurus", + "type": "array", + "minItems": 1, + "items": { + "type": "object", + "properties": { + "authorized_access_point": { + "type": "string", + "minLength": 1 + }, + "source": { + "type": "string", + "minLength": 1 + }, + "identifiedBy": { + "$ref": "https://mef.rero.ch/schemas/common/identified_by-v0.0.1.json#/identifiedBy" + } + } + } + }, "closeMatch": { "title": "Equivalent term other thesaurus", "type": "array", @@ -225,24 +219,7 @@ "minLength": 1 }, "identifiedBy": { - "title": "Identifier", - "properties": { - "type": { - "enum": [ - "bf:Local", - "uri", - "bf:Nbn" - ] - }, - "source": { - "type": "string", - "minLength": 1 - }, - "value": { - "type": "string", - "minLength": 1 - } - } + "$ref": "https://mef.rero.ch/schemas/common/identified_by-v0.0.1.json#/identifiedBy" } } } diff --git a/rero_mef/jsonschemas/common/identified_by-v0.0.1.json b/rero_mef/jsonschemas/common/identified_by-v0.0.1.json new file mode 100644 index 00000000..8592538e --- /dev/null +++ b/rero_mef/jsonschemas/common/identified_by-v0.0.1.json @@ -0,0 +1,31 @@ +{ + "identifiedBy": { + "title": "Identifier", + "type": "array", + "minItems": 1, + "items": { + "type": "object", + "required": [ + "type", + "value" + ], + "properties": { + "type": { + "enum": [ + "bf:Local", + "uri", + "bf:Nbn" + ] + }, + "source": { + "type": "string", + "minLength": 2 + }, + "value": { + "type": "string", + "minLength": 2 + } + } + } + } +} \ No newline at end of file diff --git a/rero_mef/jsonschemas/common/place-v0.0.1.json b/rero_mef/jsonschemas/common/place-v0.0.1.json index eaf69502..64198263 100644 --- a/rero_mef/jsonschemas/common/place-v0.0.1.json +++ b/rero_mef/jsonschemas/common/place-v0.0.1.json @@ -6,7 +6,6 @@ "$schema", "pid", "type", - "identifiedBy", "authorized_access_point" ], "additionalProperties": false, @@ -34,33 +33,7 @@ "minLength": 1 }, "identifiedBy": { - "title": "Identifier", - "type": "array", - "minItems": 1, - "items": { - "type": "object", - "required": [ - "type", - "value" - ], - "properties": { - "type": { - "enum": [ - "bf:Local", - "uri", - "bf:Nbn" - ] - }, - "source": { - "type": "string", - "minLength": 2 - }, - "value": { - "type": "string", - "minLength": 1 - } - } - } + "$ref": "https://mef.rero.ch/schemas/common/identified_by-v0.0.1.json#/identifiedBy" }, "bnf_type": { "title": "Genre or Form", @@ -208,6 +181,27 @@ } } }, + "exactMatch": { + "title": "Exact term other thesaurus", + "type": "array", + "minItems": 1, + "items": { + "type": "object", + "properties": { + "authorized_access_point": { + "type": "string", + "minLength": 1 + }, + "source": { + "type": "string", + "minLength": 1 + }, + "identifiedBy": { + "$ref": "https://mef.rero.ch/schemas/common/identified_by-v0.0.1.json#/identifiedBy" + } + } + } + }, "closeMatch": { "title": "Equivalent term other thesaurus", "type": "array", @@ -224,24 +218,7 @@ "minLength": 1 }, "identifiedBy": { - "title": "Identifier", - "properties": { - "type": { - "enum": [ - "bf:Local", - "uri", - "bf:Nbn" - ] - }, - "source": { - "type": "string", - "minLength": 1 - }, - "value": { - "type": "string", - "minLength": 2 - } - } + "$ref": "https://mef.rero.ch/schemas/common/identified_by-v0.0.1.json#/identifiedBy" } } } diff --git a/rero_mef/marctojson/do_gnd_agent.py b/rero_mef/marctojson/do_gnd_agent.py index c2509540..23b7e7f5 100644 --- a/rero_mef/marctojson/do_gnd_agent.py +++ b/rero_mef/marctojson/do_gnd_agent.py @@ -77,7 +77,7 @@ def get_type(self): def _transform(self): """Call the transformation functions.""" record_type = self.get_type() - if record_type in ["bf:Person", "bf:Organisation"]: + if record_type in {"bf:Person", "bf:Organisation"}: if self.marc.get_fields("100", "110", "111"): for func in dir(self): if func.startswith("trans"): @@ -181,7 +181,6 @@ def trans_gnd_identifier(self): subfields_0 = field_024.get("0") subfields_2 = field_024.get("2") if subfields_0 and subfields_2 == "gnd": - self.json_dict["identifier"] = subfields_0 self.json_dict.setdefault("identifiedBy", []).append( {"type": "uri", "value": subfields_0, "source": "GND"} ) diff --git a/rero_mef/marctojson/do_gnd_concepts.py b/rero_mef/marctojson/do_gnd_concepts.py new file mode 100644 index 00000000..cfb7d355 --- /dev/null +++ b/rero_mef/marctojson/do_gnd_concepts.py @@ -0,0 +1,311 @@ +# -*- coding: utf-8 -*- +# +# RERO MEF +# Copyright (C) 2024 RERO +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + +"""Marctojsons transformer for GND records.""" +# https://www.dnb.de/EN/Professionell/Metadatendienste/Datenbezug/GND_Aenderungsdienst/gndAenderungsdienst_node.html + +import contextlib +from datetime import datetime, timezone + +from rero_mef.marctojson.helper import ( + build_string_from_field, + build_string_list_from_fields, + get_source_and_id, +) + +RECORD_TYPES = { + "p": "bf:Person", + "b": "bf:Organisation", + "f": "bf:Organisation", + "g": "bf:Place", + "s": "bf:Topic", + "u": "bf:Title", +} + + +class Transformation(object): + """Transformation MARC21 to JSON for GND autority concept.""" + + def __init__(self, marc, logger=None, verbose=False, transform=True): + """Constructor.""" + self.marc = marc + self.logger = logger + self.verbose = verbose + self.json_dict = {} + if transform: + self._transform() + + def _transform(self): + """Call the transformation functions.""" + for func in dir(self): + if func.startswith("trans"): + func = getattr(self, func) + func() + + @property + def json(self): + """Json data.""" + return self.json_dict or None + + def trans_gnd_deleted(self): + """Transformation deleted leader 5. + + $c: Redirect notification + $x: Redirect + $c: Deletion notification + $d: Deletion + + https://www.dnb.de/EN/Professionell/Metadatendienste/Datenbezug/ + GND_Aenderungsdienst/gndAenderungsdienst_node.html + """ + if self.logger and self.verbose: + self.logger.info("Call Function", "trans_gnd_deleted") + if self.marc.leader[5] in ["c", "d", "x"]: + self.json_dict["deleted"] = datetime.now(timezone.utc).isoformat() + + def trans_gnd_pid(self): + """Transformation pid from field 001.""" + if self.logger and self.verbose: + self.logger.info("Call Function", "trans_gnd_pid") + if field_001 := self.marc.get_fields("001"): + self.json_dict["pid"] = field_001[0].data + self.json_dict["type"] = "bf:Topic" + + def trans_gnd_identifier(self): + """Transformation identifier from field 024, 035.""" + if self.logger and self.verbose: + self.logger.info("Call Function", "trans_gnd_identifier") + fields_024 = self.marc.get_fields("024") + for field_024 in fields_024: + subfield_0 = field_024.get("0") + if isinstance(subfield_0, list): + subfield_0 = subfield_0[0] + subfield_2 = field_024.get("2") + if isinstance(subfield_2, list): + subfield_2 = subfield_2[0] + if subfield_0 and subfield_2: + self.json_dict.setdefault("identifiedBy", []).append( + { + "source": subfield_2.upper(), + "type": "uri", + "value": subfield_0, + } + ) + for field_035 in self.marc.get_fields("035"): + if field_035.get("a"): + subfield_a = field_035["a"] + if subfield_a.startswith("(DE-101)") or subfield_a.startswith( + "(DE-588)" + ): + self.json_dict.setdefault("identifiedBy", []).append( + { + "source": "GND", + "type": "bf:Nbn", + "value": subfield_a, + } + ) + + def trans_gnd_authorized_access_point(self): + """Transformation authorized_access_point 150.""" + if self.logger and self.verbose: + self.logger.info("Call Function", "trans_gnd_authorized_access_point") + tag = "150" + subfields = {"a": ", ", "g": " , ", "x": " - "} + tag_grouping = [ + { + "subtags": "g", + "start": " (", + "end": ")", + "delimiter": "", + "subdelimiter": ", ", + } + ] + try: + if authorized_ap := build_string_from_field( + field=self.marc[tag], subfields=subfields, tag_grouping=tag_grouping + ): + self.json_dict["authorized_access_point"] = authorized_ap + except Exception: + self.json_dict["authorized_access_point"] = f"TAG: {tag} NOT FOUND" + + def trans_gnd_variant_access_point(self): + """Transformation variant_access_point 450.""" + if self.logger and self.verbose: + self.logger.info("Call Function", "trans_gnd_variant_access_point") + tag = "450" + subfields = {"a": ", ", "g": " , "} + tag_grouping = [ + { + "subtags": "g", + "start": " (", + "end": ")", + "delimiter": "", + "subdelimiter": ", ", + } + ] + if variant_access_point := build_string_list_from_fields( + record=self.marc, tag=tag, subfields=subfields, tag_grouping=tag_grouping + ): + self.json_dict["variant_access_point"] = variant_access_point + + def trans_gnd_relation_pid(self): + """Transformation relation pids 682 $0.""" + if self.logger and self.verbose: + self.logger.info("Call Function", "trans_gnd_relation") + fields_682 = self.marc.get_fields("682") + for field_682 in fields_682: + if field_682.get("i") and field_682["i"] == "Umlenkung": + subfields_0 = field_682.get_subfields("0") + for subfield_0 in subfields_0: + if subfield_0.startswith("(DE-101)"): + self.json_dict["relation_pid"] = { + "value": subfield_0.replace("(DE-101)", ""), + "type": "redirect_to", + } + + def trans_gnd_relation(self): + """Transformation relation 550.""" + if self.logger and self.verbose: + self.logger.info("Call Function", "trans_gnd_relation") + relations = {} + for field_550 in self.marc.get_fields("550"): + authorized_aps = set() + with contextlib.suppress(Exception): + relation_type = "related" + if subfield_4 := field_550.get("4"): + if subfield_4 in ["nach", "obal", "obge", "obin"]: + relation_type = "broader" + elif subfield_4[0] in ["vorg"]: + relation_type = "narrower" + + subfields = {"a": ", ", "g": " , "} + tag_grouping = [ + { + "subtags": "g", + "start": " (", + "end": ")", + "delimiter": "", + "subdelimiter": ", ", + } + ] + if authorized_ap := build_string_from_field( + field=field_550, subfields=subfields, tag_grouping=tag_grouping + ): + relations.setdefault(relation_type, []) + if authorized_ap not in authorized_aps: + authorized_aps.add(authorized_ap) + relations[relation_type].append( + {"authorized_access_point": authorized_ap} + ) + for relation, value in relations.items(): + if value: + self.json_dict[relation] = value + + def trans_gnd_classification(self): + """Transformation classification from field 686.""" + if self.logger and self.verbose: + self.logger.info("Call Function", "trans_gnd_classification") + # TODO: find classification + + def trans_gnd_match(self): + """Transformation closeMatch and exactfrom field 750.""" + if self.logger and self.verbose: + self.logger.info("Call Function", "trans_gnd_match") + for field_750 in self.marc.get_fields("750"): + with contextlib.suppress(Exception): + match_type = None + subfield_i = field_750["i"] + if subfield_i == "Aequivalenz": + match_type = "closeMatch" + elif subfield_i == "exakte Aequivalenz": + match_type = "exactMatch" + if match_type: + subfields = { + "a": ", ", + "g": " , ", + "x": " - ", + "y": " - ", + "z": " - ", + } + tag_grouping = [ + { + "subtags": "g", + "start": " (", + "end": ")", + "delimiter": "", + "subdelimiter": ", ", + } + ] + if authorized_ap := build_string_from_field( + field=field_750, subfields=subfields, tag_grouping=tag_grouping + ): + match = { + "authorized_access_point": authorized_ap, + "source": "GND", + } + for subfield_0 in field_750.get_subfields("0"): + if subfield_0.startswith("http"): + match.setdefault("identifiedBy", []).append( + { + "type": "uri", + "value": subfield_0, + } + ) + else: + source, id_ = get_source_and_id(subfield_0) + if source: + match.setdefault("identifiedBy", []).append( + { + "source": source, + "type": "bf:Nbn", + "value": id_, + } + ) + self.json_dict.setdefault(match_type, []).append(match) + + def trans_gnd_note(self): + """Transformation notes from field. + + 670 $a - $u: dataSource + 677 $a: general + 678 $a: general + 680 $a: general + """ + if self.logger and self.verbose: + self.logger.info("Call Function", "trans_gnd_note") + notes = { + "dataSource": [], + "dataNotFound": [], + "general": [], + "seeReference": [], + } + for field in self.marc.get_fields("677", "678", "680"): + if field.get("a"): + notes["general"].append(field["a"].strip()) + if field.get("b"): + notes["general"].append(field["b"].strip()) + for field in self.marc.get_fields("670"): + if field.get("a") and field.get("u"): + fields_u = field.get("u") + if isinstance(fields_u, str): + fields_u = [fields_u] + info = f"{field['a'].strip()} - {', '.join(fields_u)}" + notes["dataSource"].append(info) + for note, value in notes.items(): + if value: + self.json_dict.setdefault("note", []) + self.json_dict["note"].append({"noteType": note, "label": value}) diff --git a/rero_mef/marctojson/do_gnd_places.py b/rero_mef/marctojson/do_gnd_places.py index b3259ee0..23e81f46 100644 --- a/rero_mef/marctojson/do_gnd_places.py +++ b/rero_mef/marctojson/do_gnd_places.py @@ -24,6 +24,7 @@ from rero_mef.marctojson.helper import ( build_string_from_field, build_string_list_from_fields, + get_source_and_id, ) RECORD_TYPES = { @@ -37,7 +38,7 @@ class Transformation(object): - """Transformation MARC21 to JSON for GND autority person.""" + """Transformation MARC21 to JSON for GND autority place.""" def __init__(self, marc, logger=None, verbose=False, transform=True): """Constructor.""" @@ -67,7 +68,7 @@ def get_type(self): def _transform(self): """Call the transformation functions.""" record_type = self.get_type() - if record_type in ["bf:Place"]: + if record_type in {"bf:Place"}: for func in dir(self): if func.startswith("trans"): func = getattr(self, func) @@ -147,7 +148,7 @@ def trans_gnd_authorized_access_point(self): if self.logger and self.verbose: self.logger.info("Call Function", "trans_gnd_authorized_access_point") tag = "151" - subfields = {"a": ", ", "g": " , "} + subfields = {"a": ", ", "g": " , ", "x": " - ", "z": " - "} tag_grouping = [ { "subtags": "g", @@ -238,65 +239,68 @@ def trans_gnd_relation(self): self.json_dict[relation] = value def trans_gnd_classification(self): - """Transformation classification from field 550.""" + """Transformation classification from field 686.""" if self.logger and self.verbose: self.logger.info("Call Function", "trans_gnd_classification") - classifications = [] - for field_550 in self.marc.get_fields("550"): - if field_550.get("4"): - classification = { - "type": "bf:ClassificationDdc", - "classificationPortion": field_550["4"].strip(), - } - # TODO: find classification name in MARC21 - if field_550.get("a"): - classification["name"] = field_550["a"] - classifications.append(classification) - if classifications: - self.json_dict["classification"] = classifications + # TODO: find classification - def trans_gnd_close_match(self): - """Transformation closeMatch from field 751.""" + def trans_gnd_match(self): + """Transformation closeMatch and exactMatch field 751.""" if self.logger and self.verbose: - self.logger.info("Call Function", "trans_gnd_close_match") - close_matchs = [] + self.logger.info("Call Function", "trans_gnd_match") for field_751 in self.marc.get_fields("751"): with contextlib.suppress(Exception): - close_match = {} - subfields = {"a": ", ", "g": " , "} - tag_grouping = [ - { - "subtags": "g", - "start": " (", - "end": ")", - "delimiter": "", - "subdelimiter": ", ", - } - ] - authorized_ap = build_string_from_field( - field=field_751, subfields=subfields, tag_grouping=tag_grouping - ) - close_match = { - "authorized_access_point": authorized_ap, - "source": "GND", - } - with contextlib.suppress(Exception): - if field_751.get("0"): - source, value = field_751["0"].split(")") - close_match["identifiedBy"] = { - "type": "bf:Nbn", - "value": value, - "source": source.replace("(", ""), + match_type = None + subfield_i = field_751["i"] + if subfield_i == "Aequivalenz": + match_type = "closeMatch" + elif subfield_i == "exakte Aequivalenz": + match_type = "exactMatch" + if match_type: + subfields = {"a": ", ", "g": " , ", "x": " - ", "z": " - "} + tag_grouping = [ + { + "subtags": "g", + "start": " (", + "end": ")", + "delimiter": "", + "subdelimiter": ", ", + } + ] + if authorized_ap := build_string_from_field( + field=field_751, subfields=subfields, tag_grouping=tag_grouping + ): + match = { + "authorized_access_point": authorized_ap, + "source": "GND", } - close_matchs.append(close_match) - if close_matchs: - self.json_dict["closeMatch"] = close_matchs + for subfield_0 in field_751.get_subfields("0"): + if subfield_0.startswith("http"): + match.setdefault("identifiedBy", []).append( + { + "type": "uri", + "value": subfield_0, + } + ) + else: + source, id_ = get_source_and_id(subfield_0) + if source: + match.setdefault("identifiedBy", []).append( + { + "source": source, + "type": "bf:Nbn", + "value": id_, + } + ) + self.json_dict.setdefault(match_type, []).append(match) def trans_gnd_note(self): """Transformation notes from field. + 677 $a: general 678 $a: general - 670 $a - $u dataSource + 670 $a - $u: dataSource + 680 $a: general """ if self.logger and self.verbose: self.logger.info("Call Function", "trans_gnd_note") @@ -306,7 +310,7 @@ def trans_gnd_note(self): "general": [], "seeReference": [], } - for field in self.marc.get_fields("678"): + for field in self.marc.get_fields("677", "678", "680"): if field.get("a"): notes["general"].append(field["a"].strip()) if field.get("b"): diff --git a/rero_mef/marctojson/do_idref_agent.py b/rero_mef/marctojson/do_idref_agent.py index a6de165f..e1eb6c8d 100644 --- a/rero_mef/marctojson/do_idref_agent.py +++ b/rero_mef/marctojson/do_idref_agent.py @@ -241,7 +241,6 @@ def trans_idref_identifier(self): if self.logger and self.verbose: self.logger.info("Call Function", "trans_idref_identifier") if fields_003 := self.marc.get_fields("003"): - self.json_dict["identifier"] = fields_003[0].data identified_by = self.json_dict.get("identifiedBy", []) identified_by.append( {"source": "IDREF", "type": "uri", "value": fields_003[0].data} diff --git a/rero_mef/marctojson/do_idref_concepts.py b/rero_mef/marctojson/do_idref_concepts.py index 1d1be9a4..7e7bf6dd 100644 --- a/rero_mef/marctojson/do_idref_concepts.py +++ b/rero_mef/marctojson/do_idref_concepts.py @@ -89,14 +89,16 @@ def trans_idref_identifier(self): self.logger.info("Call Function", "trans_idref_identifier") identifiers = self.json_dict.get("identifiedBy", []) if field_003 := self.marc.get_fields("003"): - identifiers.append( - {"type": "uri", "value": field_003[0].data.strip(), "source": "IDREF"} - ) + uri = field_003[0].data.strip() + identifiers.append({"type": "uri", "value": uri, "source": "IDREF"}) + uris = {} for field_033 in self.marc.get_fields("033"): if field_033.get("2") and field_033["2"] == "BNF" and field_033.get("a"): - identifiers.append( - {"type": "uri", "value": field_033["a"].strip(), "source": "BNF"} - ) + date = int(date) if (date := field_033.get("d")) else 0 + uris[date] = field_033["a"].strip() + if uris: + latest = sorted(uris)[-1] + identifiers.append({"type": "uri", "value": uris[latest], "source": "BNF"}) if identifiers: self.json_dict["identifiedBy"] = identifiers @@ -104,6 +106,7 @@ def trans_idref_relation_pid(self): """Transformation old pids 035 $a $9 = sudoc.""" if self.logger and self.verbose: self.logger.info("Call Function", "trans_idref_relation_pid") + bnf_ids = {} for field_035 in self.marc.get_fields("035"): subfield_a = field_035.get("a") if isinstance(subfield_a, list): @@ -114,21 +117,34 @@ def trans_idref_relation_pid(self): subfield_9 = field_035.get("9") if isinstance(subfield_9, list): subfield_9 = subfield_9[0] + subfield_z = field_035.get("z") + if isinstance(subfield_z, list): + subfield_z = subfield_z[0] if subfield_a and subfield_9 == "sudoc": self.json_dict["relation_pid"] = { "value": field_035["a"], "type": "redirect_from", } elif subfield_2: - identified_by = self.json_dict.get("identifiedBy", []) - identified_by.append( + self.json_dict.setdefault("identifiedBy", []).append( { "source": subfield_2.upper(), "type": "uri" if subfield_a.startswith("http") else "bf:Nbn", "value": subfield_a, } ) - self.json_dict["identifiedBy"] = identified_by + elif subfield_z: + date = int(date) if (date := field_035.get("d")) else 0 + bnf_ids[date] = subfield_z.strip() + if bnf_ids: + latest = sorted(bnf_ids)[-1] + self.json_dict.setdefault("identifiedBy", []).append( + { + "source": "BNF", + "type": "bf:Nbn", + "value": bnf_ids[latest], + } + ) def trans_idref_deleted(self): """Transformation deleted leader 5 == d.""" @@ -225,11 +241,13 @@ def trans_idref_close_match(self): "source": field_822["2"].strip(), } if field_822.get("u"): - close_match["identifiedBy"] = { - "type": "uri", - "value": field_822["u"].strip(), - "source": field_822["2"].strip(), - } + close_match["identifiedBy"] = [ + { + "type": "uri", + "value": field_822["u"].strip(), + "source": field_822["2"].strip(), + } + ] if close_match: close_matchs.append(close_match) if close_matchs: diff --git a/rero_mef/marctojson/do_idref_places.py b/rero_mef/marctojson/do_idref_places.py index 8da4bd21..e8506459 100644 --- a/rero_mef/marctojson/do_idref_places.py +++ b/rero_mef/marctojson/do_idref_places.py @@ -76,9 +76,8 @@ def trans_idref_identifier(self): self.logger.info("Call Function", "trans_idref_identifier") identifiers = self.json_dict.get("identifiedBy", []) if field_003 := self.marc.get_fields("003"): - identifiers.append( - {"type": "uri", "value": field_003[0].data.strip(), "source": "IDREF"} - ) + uri = field_003[0].data.strip() + identifiers.append({"type": "uri", "value": uri, "source": "IDREF"}) for field_033 in self.marc.get_fields("033"): if field_033.get("2") and field_033.get("a"): subfield_a = field_033.get("a") @@ -222,11 +221,13 @@ def trans_idref_close_match(self): "source": field_822["2"].strip(), } if field_822.get("u"): - close_match["identifiedBy"] = { - "type": "uri", - "value": field_822["u"].strip(), - "source": field_822["2"].strip(), - } + close_match["identifiedBy"] = [ + { + "type": "uri", + "value": field_822["u"].strip(), + "source": field_822["2"].strip(), + } + ] if close_match: close_matchs.append(close_match) if close_matchs: diff --git a/rero_mef/marctojson/do_rero_agent.py b/rero_mef/marctojson/do_rero_agent.py index ee6d66ff..6763f60e 100644 --- a/rero_mef/marctojson/do_rero_agent.py +++ b/rero_mef/marctojson/do_rero_agent.py @@ -67,7 +67,6 @@ def trans_rero_identifier(self): pid = fields_035[0]["a"] identifier = f"http://data.rero.ch/02-{pid}" self.json_dict["pid"] = pid - self.json_dict["identifier"] = identifier identified_by = self.json_dict.get("identifiedBy", []) identified_by.append( {"source": "RERO", "type": "uri", "value": identifier} diff --git a/rero_mef/marctojson/helper.py b/rero_mef/marctojson/helper.py index 2e2be60e..5ba05ae0 100755 --- a/rero_mef/marctojson/helper.py +++ b/rero_mef/marctojson/helper.py @@ -1228,7 +1228,23 @@ ] +re_source_and_id = re.compile(r"\((.*)\)(.*)") + + # ---------------------------- Functions -------------------------------------- +def get_source_and_id(data): + """Get identifier and id from (identifier)id.""" + if match := re_source_and_id.match(data): + with contextlib.suppress(IndexError): + source = match.group(1).upper().replace("FRPBN", "BNF") + value = match.group(2) + if source in {"DE-101", "DE-588"}: + value = f"({source}){value}" + source = "GND" + return source, value + return None, None + + def file_name(file_name): """Gets the filename without extention.""" return ".".join(os.path.basename(file_name).split(".")[:-1]) diff --git a/rero_mef/places/api.py b/rero_mef/places/api.py index a2f51615..984bd2e8 100644 --- a/rero_mef/places/api.py +++ b/rero_mef/places/api.py @@ -16,12 +16,10 @@ # along with this program. If not, see . """API for manipulating records.""" -from rero_mef.places.mef.api import build_ref_string +from rero_mef.api import ConceptPlaceRecord, EntityIndexer -from ..api import Action, ReroIndexer, ReroMefRecord - -class PlaceRecord(ReroMefRecord): +class PlaceRecord(ConceptPlaceRecord): """Place record class.""" name = None @@ -49,122 +47,13 @@ def create( ) def delete(self, force=False, dbcommit=False, delindex=False): - """Delete agent from MEF record.""" + """Delete entity from MEF record.""" from rero_mef.places import PlaceMefRecord for mef_record in PlaceMefRecord.get_mef(self.pid, self.name): mef_record.delete_ref(self, dbcommit=dbcommit, reindex=delindex) return super().delete(force=force, dbcommit=dbcommit, delindex=delindex) - def create_or_update_mef(self, dbcommit=False, reindex=False): - """Create or update MEF and VIAF record. - - :param dbcommit: Commit changes to DB. - :param reindex: Reindex record. - :returns: MEF record, MEF action - """ - actions = {} - from rero_mef.places import ( - PlaceGndRecord, - PlaceIdrefRecord, - PlaceIdrefSearch, - PlaceMefRecord, - ) - - mef_data = {} - pid = self.pid - name = self.name - # find IDREF MEF record and clean old GND MEF records - if isinstance(self, PlaceGndRecord): - query = ( - PlaceIdrefSearch() - .filter("term", identifiedBy__source="GND") - .filter("term", identifiedBy__value=f"(DE-101){pid}") - ) - if idref_pids := [hit.pid for hit in query.scan()]: - # get latest IDREF MEF data. - mef_data = PlaceMefRecord.get_latest( - pid_type="idref", pid=idref_pids[0] - ) - # clean old GND MEF records - for mef_record in PlaceMefRecord.get_mef(self.pid, self.name): - mef_record.delete_ref(self, dbcommit=dbcommit, reindex=reindex) - actions[mef_record.pid] = Action.DELETE_AGENT - # get the IDREF MEF record - if mef_pid := mef_data.get("pid"): - mef_data = PlaceMefRecord.get_record_by_pid(mef_pid) - - # if we don't have a MEF record try to find one - if not mef_data and (mef_records := PlaceMefRecord.get_mef(pid, name)): - mef_data = mef_records[0] - # correct GND ref from IDREF - update_gnd_pid_for_mef = None - if isinstance(self, PlaceIdrefRecord): - gnd_ref_pid = mef_data.get("gnd", {}).get("$ref", "").split("/")[-1] - # find GND pid from identifiedBy - for identified_by in self.get("identifiedBy"): - value = identified_by.get("value") - if identified_by.get("source") == "GND" and value.startswith( - "(DE-101)" - ): - gnd_pid = value.replace("(DE-101)", "") - if gnd_ref_pid and gnd_ref_pid != gnd_pid: - mef_data.pop("gnd", None) - update_gnd_pid_for_mef = gnd_ref_pid - # if we have a GND record add the $ref for MEF - if gnd_rec := PlaceGndRecord.get_record_by_pid(gnd_pid): - mef_data["gnd"] = { - "$ref": build_ref_string(place="gnd", place_pid=gnd_pid) - } - # clean old GND MEF records - for mef_record in PlaceMefRecord.get_mef(gnd_pid, "gnd"): - if mef_record.pid != mef_data.get("pid"): - mef_record.pop("gnd", None) - mef_record.replace( - data=mef_record, dbcommit=dbcommit, reindex=reindex - ) - actions[mef_record.pid] = Action.DELETE_AGENT - - mef_data[self.name] = { - "$ref": build_ref_string(place=self.name, place_pid=self.pid) - } - if mef_data.get("pid"): - mef_action = Action.UPDATE - mef_record = mef_data.replace( - data=mef_data, dbcommit=dbcommit, reindex=reindex - ) - else: - if self.deleted and not mef_data.get("deleted"): - mef_data["deleted"] = self.deleted - mef_action = Action.CREATE - mef_record = PlaceMefRecord.create( - data=mef_data, - dbcommit=dbcommit, - reindex=reindex, - ) - actions[mef_record.pid] = mef_action - if reindex: - PlaceMefRecord.flush_indexes() - if update_gnd_pid_for_mef and ( - gnd_rec := PlaceGndRecord.get_record_by_pid(update_gnd_pid_for_mef) - ): - _, m_action = gnd_rec.create_or_update_mef( - dbcommit=dbcommit, reindex=reindex - ) - actions.update(m_action) - return mef_record, actions - - @classmethod - def get_online_record(cls, id_, debug=False): - """Get online Record. - - :param id_: Id of online record. - :param debug: Debug print. - :returns: record or None - Has to be overloaded in agent class. - """ - raise NotImplementedError() - def reindex(self, forceindex=False): """Reindex record.""" from .mef.api import PlaceMefRecord @@ -176,5 +65,5 @@ def reindex(self, forceindex=False): return result -class PlaceIndexer(ReroIndexer): +class PlaceIndexer(EntityIndexer): """Indexing class for places.""" diff --git a/rero_mef/places/gnd/api.py b/rero_mef/places/gnd/api.py index 3858ea35..e19795be 100644 --- a/rero_mef/places/gnd/api.py +++ b/rero_mef/places/gnd/api.py @@ -19,7 +19,8 @@ from invenio_search.api import RecordsSearch -from ..api import PlaceIndexer, PlaceRecord +from rero_mef.places.api import PlaceIndexer, PlaceRecord + from .fetchers import gnd_id_fetcher from .minters import gnd_id_minter from .models import PlaceGndMetadata @@ -64,6 +65,27 @@ def get_online_record(cls, id_, debug=False): return gnd_get_record(id_=id_, debug=debug) + @property + def association_identifier(self): + """Get associated identifier.""" + return self.pid + + @property + def association_info(self): + """Get associated record.""" + from rero_mef.places import PlaceIdrefRecord, PlaceIdrefSearch, PlaceMefRecord + + PlaceIdrefRecord.flush_indexes() + return { + "identifier": self.association_identifier, + "record": self.get_association_record( + association_cls=PlaceIdrefRecord, association_search=PlaceIdrefSearch + ), + "record_cls": PlaceIdrefRecord, + "search_cls": PlaceIdrefSearch, + "mef_cls": PlaceMefRecord, + } + class PlaceGndIndexer(PlaceIndexer): """Place GND indexer.""" diff --git a/rero_mef/places/gnd/mappings/v7/places_gnd/gnd-place-v0.0.1.json b/rero_mef/places/gnd/mappings/v7/places_gnd/gnd-place-v0.0.1.json index 5e18a444..c7ce41f8 100644 --- a/rero_mef/places/gnd/mappings/v7/places_gnd/gnd-place-v0.0.1.json +++ b/rero_mef/places/gnd/mappings/v7/places_gnd/gnd-place-v0.0.1.json @@ -31,9 +31,15 @@ }, "value": { "type": "keyword" + }, + "_identifier": { + "type": "keyword" } } }, + "_association_identifier": { + "type": "keyword" + }, "bnf_type": { "type": "keyword" }, @@ -91,6 +97,34 @@ } } }, + "exactMatch": { + "type": "object", + "properties": { + "authorized_access_point": { + "type": "text" + }, + "source": { + "type": "keyword" + }, + "identifiedBy": { + "type": "object", + "properties": { + "type": { + "type": "keyword" + }, + "source": { + "type": "keyword" + }, + "value": { + "type": "keyword" + }, + "_identifier": { + "type": "keyword" + } + } + } + } + }, "closeMatch": { "type": "object", "properties": { @@ -111,6 +145,9 @@ }, "value": { "type": "keyword" + }, + "_identifier": { + "type": "keyword" } } } diff --git a/rero_mef/places/idref/api.py b/rero_mef/places/idref/api.py index 85cb39fb..86eeab87 100644 --- a/rero_mef/places/idref/api.py +++ b/rero_mef/places/idref/api.py @@ -17,9 +17,11 @@ """API for manipulating IdRef agent.""" +from flask import current_app from invenio_search.api import RecordsSearch -from ..api import PlaceIndexer, PlaceRecord +from rero_mef.places.api import PlaceIndexer, PlaceRecord + from .fetchers import idref_id_fetcher from .minters import idref_id_minter from .models import PlaceIdrefMetadata @@ -64,6 +66,40 @@ def get_online_record(cls, id_, debug=False): return idref_get_record(id_=id_, debug=debug) + @property + def association_identifier(self): + """Get associated identifier from identifiedBy.""" + pids = [] + for identified_by in self.get("identifiedBy", []): + value = identified_by.get("value", "") + if ( + identified_by.get("source") == "GND" + and identified_by.get("type") == "bf:Nbn" + and value.startswith("(DE-101)") + ): + pids.append(value.replace("(DE-101)", "")) + if len(pids) > 1: + current_app.logger.error( + f"MULTIPLE ASSOCIATIONS FOUND FOR: {self.name} {self.pid} | {', '.join(pids)}" + ) + if len(pids) == 1: + return pids[0] + + @property + def association_info(self): + """Get associated record.""" + from rero_mef.places import PlaceGndRecord, PlaceGndSearch, PlaceMefRecord + + PlaceGndRecord.flush_indexes() + return { + "record": self.get_association_record( + association_cls=PlaceGndRecord, association_search=PlaceGndSearch + ), + "record_cls": PlaceGndRecord, + "search_cls": PlaceGndSearch, + "mef_cls": PlaceMefRecord, + } + class PlaceIdrefIndexer(PlaceIndexer): """Place IDREF indexer.""" diff --git a/rero_mef/places/idref/mappings/v7/places_idref/idref-place-v0.0.1.json b/rero_mef/places/idref/mappings/v7/places_idref/idref-place-v0.0.1.json index 5e18a444..c7ce41f8 100644 --- a/rero_mef/places/idref/mappings/v7/places_idref/idref-place-v0.0.1.json +++ b/rero_mef/places/idref/mappings/v7/places_idref/idref-place-v0.0.1.json @@ -31,9 +31,15 @@ }, "value": { "type": "keyword" + }, + "_identifier": { + "type": "keyword" } } }, + "_association_identifier": { + "type": "keyword" + }, "bnf_type": { "type": "keyword" }, @@ -91,6 +97,34 @@ } } }, + "exactMatch": { + "type": "object", + "properties": { + "authorized_access_point": { + "type": "text" + }, + "source": { + "type": "keyword" + }, + "identifiedBy": { + "type": "object", + "properties": { + "type": { + "type": "keyword" + }, + "source": { + "type": "keyword" + }, + "value": { + "type": "keyword" + }, + "_identifier": { + "type": "keyword" + } + } + } + } + }, "closeMatch": { "type": "object", "properties": { @@ -111,6 +145,9 @@ }, "value": { "type": "keyword" + }, + "_identifier": { + "type": "keyword" } } } diff --git a/rero_mef/places/listener.py b/rero_mef/places/listener.py new file mode 100644 index 00000000..bc183047 --- /dev/null +++ b/rero_mef/places/listener.py @@ -0,0 +1,52 @@ +# -*- coding: utf-8 -*- +# +# RERO MEF +# Copyright (C) 2021 RERO +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + +"""Signals connector for Places.""" + +from rero_mef.places import PlaceGndSearch, PlaceIdrefSearch +from rero_mef.utils import make_identifier + + +def enrich_place_data( + sender, + json=None, + record=None, + index=None, + doc_type=None, + arguments=None, + **dummy_kwargs, +): + """Signal sent before a record is indexed. + + :param json: The dumped record dictionary which can be modified. + :param record: The record being indexed. + :param index: The index in which the record will be indexed. + :param doc_type: The doc_type for the record. + """ + index_name = index.split("-")[0] + if index_name in {PlaceGndSearch.Meta.index, PlaceIdrefSearch.Meta.index}: + for identified_by in json.get("identifiedBy", []): + identified_by["_identifier"] = make_identifier(identified_by) + for match_type in {"closeMatch", "exactMatch"}: + for match in json.get(match_type, []): + for identified_by in match.get("identifiedBy", []): + identified_by["_identifier"] = make_identifier(identified_by) + + if not json.get("deleted") and ( + association_identifier := record.association_identifier + ): + json["_association_identifier"] = association_identifier diff --git a/rero_mef/places/mef/api.py b/rero_mef/places/mef/api.py index c3f1b1b7..94ddecf8 100644 --- a/rero_mef/places/mef/api.py +++ b/rero_mef/places/mef/api.py @@ -22,28 +22,15 @@ from flask import current_app from invenio_search.api import RecordsSearch -from ...api import ReroIndexer -from ...api_mef import EntityMefRecord +from rero_mef.api import EntityIndexer +from rero_mef.api_mef import EntityMefRecord + from .fetchers import mef_id_fetcher from .minters import mef_id_minter from .models import PlaceMefMetadata from .providers import PlaceMefProvider -def build_ref_string(place_pid, place): - """Build url for place's api. - - :param place_pid: Pid of place. - :param place: Type of place. - :returns: Reference string to record. - """ - with current_app.app_context(): - return ( - f'{current_app.config.get("RERO_MEF_APP_BASE_URL")}' - f"/api/places/{place}/{place_pid}" - ) - - class PlaceMefSearch(RecordsSearch): """RecordsSearch.""" @@ -155,7 +142,7 @@ def get_latest(cls, pid_type, pid): return {} -class PlaceMefIndexer(ReroIndexer): +class PlaceMefIndexer(EntityIndexer): """Place MEF indexer.""" record_cls = PlaceMefRecord diff --git a/rero_mef/places/mef/mappings/v7/places_mef/mef-place-v0.0.1.json b/rero_mef/places/mef/mappings/v7/places_mef/mef-place-v0.0.1.json index 6c7bba43..f45c85b7 100644 --- a/rero_mef/places/mef/mappings/v7/places_mef/mef-place-v0.0.1.json +++ b/rero_mef/places/mef/mappings/v7/places_mef/mef-place-v0.0.1.json @@ -44,7 +44,7 @@ "deleted": { "type": "date" }, - "rero": { + "idref": { "type": "object", "properties": { "$schema": { @@ -62,9 +62,6 @@ "bnf_type": { "type": "keyword" }, - "identifier": { - "type": "keyword" - }, "authorized_access_point": { "type": "text", "copy_to": "autocomplete_name" @@ -99,6 +96,34 @@ } } }, + "exactMatch": { + "type": "object", + "properties": { + "authorized_access_point": { + "type": "text" + }, + "source": { + "type": "keyword" + }, + "identifiedBy": { + "type": "object", + "properties": { + "type": { + "type": "keyword" + }, + "source": { + "type": "keyword" + }, + "value": { + "type": "keyword" + }, + "_identifier": { + "type": "keyword" + } + } + } + } + }, "closeMatch": { "type": "object", "properties": { @@ -119,6 +144,9 @@ }, "value": { "type": "keyword" + }, + "_identifier": { + "type": "keyword" } } } @@ -132,7 +160,7 @@ } } }, - "idref": { + "gnd": { "type": "object", "properties": { "$schema": { @@ -150,9 +178,6 @@ "bnf_type": { "type": "keyword" }, - "identifier": { - "type": "keyword" - }, "authorized_access_point": { "type": "text", "copy_to": "autocomplete_name" @@ -187,6 +212,34 @@ } } }, + "exactMatch": { + "type": "object", + "properties": { + "authorized_access_point": { + "type": "text" + }, + "source": { + "type": "keyword" + }, + "identifiedBy": { + "type": "object", + "properties": { + "type": { + "type": "keyword" + }, + "source": { + "type": "keyword" + }, + "value": { + "type": "keyword" + }, + "_identifier": { + "type": "keyword" + } + } + } + } + }, "closeMatch": { "type": "object", "properties": { @@ -207,6 +260,9 @@ }, "value": { "type": "keyword" + }, + "_identifier": { + "type": "keyword" } } } diff --git a/rero_mef/places/utils.py b/rero_mef/places/utils.py index 5674a069..48c9f0a6 100644 --- a/rero_mef/places/utils.py +++ b/rero_mef/places/utils.py @@ -27,3 +27,10 @@ def get_places_endpoints(): return { endpoint: data for endpoint, data in endpoints.items() if endpoint in places } + + +def make_identifier(identified_by): + """Make identifier `type|(source)value`.""" + if source := identified_by.get("source"): + return f"{identified_by['type']}|({source}){identified_by['value']}" + return f"{identified_by['type']}:{identified_by['value']}" diff --git a/rero_mef/tasks.py b/rero_mef/tasks.py index 2bfb0b38..0d591b08 100644 --- a/rero_mef/tasks.py +++ b/rero_mef/tasks.py @@ -21,7 +21,7 @@ from celery import shared_task from flask import current_app -from .api import Action, ReroIndexer +from .api import Action, EntityIndexer from .utils import get_entity_class @@ -37,7 +37,7 @@ def process_bulk_queue(version_type=None, search_bulk_kwargs=None, stats_only=Tr successful and a list of error responses. Note: You can start multiple versions of this task. """ - return ReroIndexer(version_type=version_type).process_bulk_queue( + return EntityIndexer(version_type=version_type).process_bulk_queue( search_bulk_kwargs=search_bulk_kwargs, stats_only=stats_only ) diff --git a/rero_mef/utils.py b/rero_mef/utils.py index a1a132ae..f72ffe3f 100644 --- a/rero_mef/utils.py +++ b/rero_mef/utils.py @@ -1231,3 +1231,29 @@ def requests_retry_session( session.mount("http://", adapter) session.mount("https://", adapter) return session + + +def make_identifier(identified_by): + """Make identifier `type|(source)value`. + + :param identified_by: identifiedBy to create identifier + :return: identifier `type|(source)value` or `type|value` + """ + if source := identified_by.get("source"): + return f"{identified_by['type']}|({source}){identified_by['value']}" + return f"{identified_by['type']}|{identified_by['value']}" + + +def build_ref_string(entity_type, entity_name, entity_pid): + """Build url for api. + + :param entity_type: Type of entity (agents, concepts, places) + :param entity_name: Name of entity. + :param entity_pid: Pid of entity. + :returns: Reference string to record. + """ + with current_app.app_context(): + return ( + f'{current_app.config.get("RERO_MEF_APP_BASE_URL")}' + f"/api/{entity_type}/{entity_name}/{entity_pid}" + ) diff --git a/scripts/setup b/scripts/setup index 23825373..e426d498 100755 --- a/scripts/setup +++ b/scripts/setup @@ -100,9 +100,9 @@ function oai_init () { invenio oaiharvester initconfig ./data/oaisources.yml # https://data.dnb.de/GND/ invenio oaiharvester set-last-run -n agents.gnd -d 2023-08-01 - # invenio oaiharvester save idref.mrc -n idref -f 1990-01-01 invenio oaiharvester set-last-run -n agents.idref -d 2023-08-01 invenio oaiharvester set-last-run -n concepts.idref -d 2023-08-01 + invenio oaiharvester set-last-run -n concepts.gnd -d 2023-08-01 invenio oaiharvester set-last-run -n places.idref -d 2023-08-01 invenio oaiharvester set-last-run -n places.gnd -d 2023-08-01 } @@ -118,7 +118,7 @@ function sample_load () { dojson -i ./data/${ENTITY}.json | invenio fixtures create-or-update ${ENTITY} -v done - for ENTITY in corero cidref + for ENTITY in corero cidref cognd do info_msg "Importing ${ENTITY} concept records:" dojson -i ./data/${ENTITY}.json | invenio fixtures create-or-update ${ENTITY} -v @@ -136,7 +136,7 @@ function deploy () { INPUT_DIR=$1 info_msg "Start loading CSV records to database: ${INPUT_DIR}" # Load CSV files to db - for ENTITY in aggnd aidref agrero viaf corero cidref pidref + for ENTITY in aggnd aidref agrero viaf corero cidref cognd pidref plgnd do invenio fixtures load-csv ${ENTITY} ${INPUT_DIR}/${ENTITY}_pidstore.csv ${INPUT_DIR}/${ENTITY}_metadata.csv --verbose --reindex done @@ -154,7 +154,7 @@ function create_json () { OUTPUT_DIR=$2 info_msg "Start creating json: ${INPUT_DIR} ${OUTPUT_DIR}" # Transform MARC files to json - for ENTITY in aggnd aidref agrero corero cidref pidref + for ENTITY in aggnd aidref agrero corero cidref cognd pidref plgnd do invenio fixtures marc-to-json ${ENTITY} ${INPUT_DIR}/${ENTITY}.mrc ${OUTPUT_DIR}/${ENTITY}.json --error_file ${OUTPUT_DIR}/${ENTITY}_error.mrc & done @@ -166,7 +166,7 @@ function create_csv () { OUTPUT_DIR=$1 info_msg "Start creating csv: ${OUTPUT_DIR}" # Create CSV files from json - for ENTITY in aggnd aidref agrero corero cidref pidref + for ENTITY in aggnd aidref agrero corero cidref cognd pidref plgnd do invenio fixtures create-csv ${ENTITY} ${OUTPUT_DIR}/${ENTITY}.json ${OUTPUT_DIR} done diff --git a/scripts/test b/scripts/test index e9bbd0f2..9f6ddf53 100755 --- a/scripts/test +++ b/scripts/test @@ -66,6 +66,9 @@ set -e # -> Vulnerability found in flask-caching version 2.0.1 # Vulnerability ID: 40459 # -> Vulnerability found in flask-cors version 4.0.1 +# -> Vulnerability found in flask-cors version 5.0.0 +# Vulnerability ID: 72731 +# ADVISORY: A vulnerability in corydolphin/flask-cors allows the # Vulnerability ID: 70624 # -> Vulnerability found in sqlalchemy version 1.4.52 # Vulnerability ID: 51668 @@ -84,9 +87,11 @@ set -e # Vulnerability ID: 70612 # -> Vulnerability found in py version 1.11.0 # Vulnerability ID: 51457 +# -> Vulnerability found in sentry-sdk version 1.45.1 +# Vulnerability ID: 72260 info_msg "Check vulnerabilities:" # Vulnerability ID: 71595 -safety_exceptions="-i 40459 -i 70624 -i 51668 -i 42194 -i 42852 -i 71595 -i 62019 -i 71594 -i 70612 -i 51457" +safety_exceptions="-i 40459 -i 72731 -i 70624 -i 51668 -i 42194 -i 42852 -i 71595 -i 62019 -i 71594 -i 70612 -i 51457 -i 72260" msg=$(safety check -o text ${safety_exceptions}) || { echo "Safety vulnerabilites found for packages:" $(safety check -o bare ${safety_exceptions}) echo "Run: \"safety check -o screen ${safety_exceptions} | grep -i vulnerability\" for more details" diff --git a/tests/api/test_agents_gnd_rest.py b/tests/api/test_agents_gnd_rest.py index 2cae6b23..7b5f718b 100644 --- a/tests/api/test_agents_gnd_rest.py +++ b/tests/api/test_agents_gnd_rest.py @@ -64,7 +64,6 @@ def test_view_agents_gnd(client, agent_gnd_record): def test_save_deleted_data(client, agent_gnd_record, agent_gnd_data): """Test save deleted data GND.""" pid = agent_gnd_record.get("pid") - assert agent_gnd_record["identifier"] == "http://d-nb.info/gnd/12391664X" data = deepcopy(agent_gnd_data) data = { "deleted": "2022-01-31T10:44:22.552001+00:00", diff --git a/tests/api/test_monitoring_rest.py b/tests/api/test_monitoring_rest.py index 0c65dc66..9aff3040 100644 --- a/tests/api/test_monitoring_rest.py +++ b/tests/api/test_monitoring_rest.py @@ -37,6 +37,7 @@ def test_monitoring_es_db_counts(client): "agrero": {"db": 0, "db-es": 0, "es": 0, "index": "agents_rero"}, "aidref": {"db": 0, "db-es": 0, "es": 0, "index": "agents_idref"}, "cidref": {"db": 0, "db-es": 0, "es": 0, "index": "concepts_idref"}, + "cognd": {"db": 0, "db-es": 0, "es": 0, "index": "concepts_gnd"}, "comef": {"db": 0, "db-es": 0, "es": 0, "index": "concepts_mef"}, "corero": {"db": 0, "db-es": 0, "es": 0, "index": "concepts_rero"}, "mef": {"db": 0, "db-es": 0, "es": 0, "index": "mef"}, diff --git a/tests/data/aggnd.json b/tests/data/aggnd.json index de4f9b47..ea82365c 100644 --- a/tests/data/aggnd.json +++ b/tests/data/aggnd.json @@ -4,7 +4,6 @@ "pid": "00401653X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1002606-X", "variant_name": [ "Federal Association of Company Health Insurance Funds", "Association of Company Health Insurance Funds", @@ -35,7 +34,6 @@ "pid": "00402074X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1003478-X", "variant_name": [ "Communaute\u0301 europe\u0301enne du charbon et de l'acier", "European coal and steel community", @@ -103,7 +101,6 @@ "pid": "00421952X", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1034729-X", "variant_name": [ "Universite\u0301 de Paris-Sorbonne. Institut de Recherche sur les Civilisations de l'Occident Moderne", "Universite\u0301 de Paris-Sorbonne. Institut de Recherches sur les Civilisations de l'Occident Moderne", @@ -149,7 +146,6 @@ "pid": "007430779", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/2094183-3", "variant_name": [ "Generaldirektion Wissenschaft", "Direcc\u0327a\u0303o-Geral de Estudos", @@ -190,7 +186,6 @@ "pid": "008046662", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/804666-9", "preferred_name": "Congre\u0300s de Psychiatrie et de Neurologie de Langue Franc\u0327aise, 78", "country_associated": "fr", "authorized_access_point": "Congre\u0300s de Psychiatrie et de Neurologie de Langue Franc\u0327aise, 78, 1980, Reims" @@ -200,7 +195,6 @@ "pid": "050534696", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5053469-5", "variant_name": [ "Chemin de fer d'Orle\u0301ans", "Compagnie d'Orle\u0301ans", @@ -222,7 +216,6 @@ "pid": "051062763", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/16113016-1", "preferred_name": "Institut d'Administration des Entreprises", "country_associated": "fr", "authorized_access_point": "Institut d'Administration des Entreprises. Rennes" @@ -233,7 +226,6 @@ "gender": "male", "type": "bf:Person", "qualifier": "de Barbanson", - "identifier": "http://d-nb.info/gnd/100023754", "variant_name": [ "Konstantin, von Barbanson", "Barbanson, Konstantin von", @@ -282,7 +274,6 @@ "pid": "1019749911", "gender": "male", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1019749911", "variant_name": [ "Bourbon, Charles de", "Charles, Soissons, Comte" @@ -304,7 +295,6 @@ "pid": "1020174943", "gender": "male", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1020174943", "variant_name": [ "Antin, Louis Antoine de Pardaillan de Gondrin d'", "Gondrin d'Antin, Louis Antoine de Pardaillan de", @@ -329,7 +319,6 @@ "pid": "1032371390", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/1032371390", "variant_name": [ "Les Be\u0301laisie\u0300res et les Doudous de la Grande-Terre" ], @@ -345,7 +334,6 @@ "pid": "104189576", "type": "bf:Person", "qualifier": "Spanien, Ko\u0308nigin, 1662-1689", - "identifier": "http://d-nb.info/gnd/104189576", "variant_name": [ "Marie Luise, Espagne, reine", "Marie-Louise, Espagne, reine", @@ -376,7 +364,6 @@ "md5": "79e50969e7f659769d8e7f7c922f3309", "pid": "1045857424", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1045857424", "variant_name": [ "Me\u0301rault De Bizy, Athanase Rene\u0301", "De Bizy, Athanase Rene\u0301 Me\u0301rault", @@ -399,7 +386,6 @@ "md5": "cc5b6e556728b5e7801e33bbafb9ad23", "pid": "1053083351", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1053083351", "variant_name": [ "Alfaro Lafuente, Manuel Ibo", "Alfaro y Lafuente, Manuel Ibo", @@ -426,7 +412,6 @@ "md5": "5dcc2a35d57dd302ab480b5fcdbc5381", "pid": "1055101586", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1055101586", "variant_name": [ "Ormonde, ... of", "Ormonde, James Edward William Theobald Butler of" @@ -445,7 +430,6 @@ "md5": "aacd4184aa47315350ac6e210af4856d", "pid": "1056901632", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1056901632", "variant_name": [ "Aranton D'Alex, Giovanni d'", "Alex, Jean d'Aranton d'", @@ -477,7 +461,6 @@ "md5": "b0385764c1529aa4d1762ae4ef521b1c", "pid": "1060580543", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1060580543", "date_of_birth": "1851", "date_of_death": "1925", "preferred_name": "Avesne, E. d'", @@ -489,7 +472,6 @@ "pid": "1073132285", "gender": "male", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1073132285", "date_of_birth": "08.10.1758", "date_of_death": "17.09.1832", "preferred_name": "Carelli, Francesco", @@ -500,7 +482,6 @@ "md5": "deea413c05bda81ca161f7726728f990", "pid": "1089786255", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/1089786255", "variant_name": [ "Cailler, Rodolphe" ], @@ -521,7 +502,6 @@ "gender": "male", "type": "bf:Person", "qualifier": "da San Giuseppe", - "identifier": "http://d-nb.info/gnd/1117819884", "variant_name": [ "Ange, de Saint-Joseph", "Angelo, da Utri", @@ -563,7 +543,6 @@ "pid": "11669355X", "gender": "male", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/11669355X", "variant_name": [ "Franchi de Cavalieri, Pio", "Cavalieri, Pio Franchi de", @@ -625,7 +604,6 @@ "pid": "117513601", "gender": "male", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/117513601", "variant_name": [ "Fleuriau de Belleville, Louis Benjamin", "Fleuriau de Bellevue, Louis", @@ -652,7 +630,6 @@ "pid": "117588768", "gender": "male", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/117588768", "variant_name": [ "Bernard, William Baile", "Bernard, William B.", @@ -674,7 +651,6 @@ "pid": "117671533", "gender": "male", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/117671533", "variant_name": [ "Bagnano, Georgio Libri-", "Libri Bagnano, Georgio" @@ -693,7 +669,6 @@ "md5": "36b20e443f8b5ba67f37ef7403cfbe83", "pid": "118095617", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/118095617", "variant_name": [ "Ambly, Paul Boiteau d'", "Boiteau, Paul", @@ -721,7 +696,6 @@ "pid": "118666762", "gender": "male", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/118666762", "variant_name": [ "Camerarius, Rudolf Jacob", "Camerarius, Rudolph Jakob", @@ -772,7 +746,6 @@ "gender": "female", "type": "bf:Person", "qualifier": "Preu\u00dfen, Ko\u0308nigin", - "identifier": "http://d-nb.info/gnd/119120674", "variant_name": [ "Elisabeth Christine, Braunschweig-Bevern, Herzogin", "Elisabet Christine, Preu\u00dfen, Ko\u0308nigin", @@ -815,7 +788,6 @@ "lat" ], "qualifier": "Mamertus", - "identifier": "http://d-nb.info/gnd/119291088", "variant_name": [ "Claudianus Ecdicius, Mamertus", "Claudianus, Viennensis", @@ -875,7 +847,6 @@ "md5": "02728606dfedd5e44e290637a2f15c31", "pid": "122101359", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/122101359", "variant_name": [ "Chapron, Nicolas", "Chapperon, Nicolas", @@ -901,7 +872,6 @@ "md5": "56b1523e8b10cc5750ef98e9768a13e6", "pid": "12391664X", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/12391664X", "variant_name": [ "Cavaleriis, Joannes Baptista de", "Cavalleris, Joannes Baptista de", @@ -973,7 +943,6 @@ "md5": "27e54e506f4dc18dd4d7ad7511e4126c", "pid": "124813844", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/124813844", "variant_name": [ "Catalani, Josephus", "Catalano, Giuseppe", @@ -998,7 +967,6 @@ "md5": "f96f8bf5ff7ce5c8ce580e631f3fbc0d", "pid": "124981933", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/124981933", "variant_name": [ "Saint-Morys, Etienne Bourgevin Vialard de", "Saint-Morys, E\u0301tienne Bourgelin Vialart de", @@ -1046,7 +1014,6 @@ "md5": "84e51d7ee7be9178f66a7585eb6aa6c5", "pid": "129943495", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/129943495", "variant_name": [ "Arnoult, Alexis E\u0301tienne Pierre Henri", "Arnoult, Alexis E." @@ -1067,7 +1034,6 @@ "md5": "82270d369e01f3d91b8e9312a0225e58", "pid": "130672289", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/130672289", "variant_name": [ "Cabannes Cauna, Bernard Augustin Henri Timothe\u0301e de", "Cabannes de Cauna, Bernard Augustin Henri Timothe\u0301e", @@ -1092,7 +1058,6 @@ "pid": "131543334", "gender": "male", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/131543334", "variant_name": [ "Serge\u0304s, Manole\u0304s", "Serge\u0304s, M. G.", @@ -1124,7 +1089,6 @@ "md5": "a9da34766e9a6db0b5789665d1c39ade", "pid": "143032704", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/143032704", "variant_name": [ "Soyarslan, Cigdem" ], @@ -1140,7 +1104,6 @@ "md5": "b1420914569198b30b43eee0c9d72ca9", "pid": "172759757", "type": "bf:Person", - "identifier": "http://d-nb.info/gnd/172759757", "variant_name": [ "Arnoudt, Pierre Joseph", "Arnoudt, Pierre", @@ -1190,7 +1153,6 @@ "pid": "951795597", "type": "bf:Organisation", "conference": false, - "identifier": "http://d-nb.info/gnd/5230389-5", "variant_name": [ "GN'R", "Guns and Roses" @@ -1215,7 +1177,6 @@ "pid": "969004222", "type": "bf:Organisation", "conference": true, - "identifier": "http://d-nb.info/gnd/1248506-8", "preferred_name": "Congre\u0300s Litte\u0301raire International", "country_associated": "fr", "authorized_access_point": "Congre\u0300s Litte\u0301raire International, 1878, Paris" diff --git a/tests/data/aggnd_metadata.csv b/tests/data/aggnd_metadata.csv index 7519c00b..73a56b3f 100644 --- a/tests/data/aggnd_metadata.csv +++ b/tests/data/aggnd_metadata.csv @@ -1,39 +1,39 @@ -2020-11-11 18:47:04.046001 2020-11-11 18:47:04.046007 f4144b51-5241-4d0d-95fb-017272e161c2 {"md5": "27e54e506f4dc18dd4d7ad7511e4126c", "pid": "124813844", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "identifier": "http://d-nb.info/gnd/124813844", "variant_name": ["Catalani, Josephus", "Catalano, Giuseppe", "Catalanus, Josephus"], "date_of_birth": "1698", "date_of_death": "1764", "preferred_name": "Catalani, Giuseppe", "country_associated": "it", "variant_access_point": ["Catalani, Josephus, 1698-1764", "Catalano, Giuseppe, 1698-1764", "Catalanus, Josephus, 1698-1764"], "authorized_access_point": "Catalani, Giuseppe, 1698-1764", "biographical_information": ["Aus Paola, Wirkungsort Rom, Priester am Oratorio di San Girolamo della Carita; Ital. Gelehrter, Pater", "Theologe"]} 1 -2020-11-11 18:47:07.400721 2020-11-11 18:47:07.400726 cb714d99-d984-4731-8e3e-3dc0ef3e0e22 {"md5": "a611605c3996cc95b63293e020f40192", "pid": "117513601", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "identifier": "http://d-nb.info/gnd/117513601", "variant_name": ["Fleuriau de Belleville, Louis Benjamin", "Fleuriau de Bellevue, Louis", "Belleville, Louis Fleuriau de", "Bellevue, Louis Benjamin Fleuriau de"], "date_of_birth": "1761", "date_of_death": "1852", "preferred_name": "Fleuriau de Bellevue, Louis Benjamin", "country_associated": "fr", "variant_access_point": ["Fleuriau de Belleville, Louis Benjamin, 1761-1852", "Fleuriau de Bellevue, Louis, 1761-1852", "Belleville, Louis Fleuriau de, 1761-1852", "Bellevue, Louis Benjamin Fleuriau de, 1761-1852"], "authorized_access_point": "Fleuriau de Bellevue, Louis Benjamin, 1761-1852", "biographical_information": ["Französ. Gelehrter, Naturwissenschaftler und Geologe"]} 1 -2020-11-11 18:47:09.966354 2020-11-11 18:47:09.96636 fc45ab5b-65ee-4092-9477-a619109529bb {"md5": "47d4bf1da13338bc3149d973aa65e11b", "pid": "131543334", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "identifier": "http://d-nb.info/gnd/131543334", "variant_name": ["Sergēs, Manolēs", "Sergēs, M. G.", "Sergēs, Manolēs Geōrg.", "Sergis, Manolis G.", "Sergis, Manolis", "Sergis, M. G."], "date_of_birth": "1957", "preferred_name": "Sergēs, Manolēs G.", "country_associated": "gr", "variant_access_point": ["Sergēs, Manolēs, 1957-", "Sergēs, M. G., 1957-", "Sergēs, Manolēs Geōrg., 1957-", "Sergis, Manolis G., 1957-", "Sergis, Manolis, 1957-", "Sergis, M. G., 1957-"], "parallel_access_point": ["Σέργης, Μανώλης Γ., 1957-"], "authorized_access_point": "Sergēs, Manolēs G., 1957-", "biographical_information": ["Forschungsschwerpunkt: Volkskunde; Griech. Philologe"]} 1 -2020-11-11 18:47:12.040912 2020-11-11 18:47:12.040918 10a97bcd-7abd-4b62-b050-485f74762f2a {"md5": "9d287c3e9dde431e16e055d02434fe7e", "pid": "00402074X", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Organisation", "conference": false, "identifier": "http://d-nb.info/gnd/1003478-X", "variant_name": ["Communauté européenne du charbon et de l'acier", "European coal and steel community", "EGKS", "Montanunion", "Montangemeinschaft", "European Coal and Steel Community", "ECSC", "Comunidade Europea do Carvão do Aço", "Comunidade Europeia do Carvão e do Aço", "Comunidad Europea del Carbón y del Acero", "Comunità Europea del Carbone e dell'Acciaio", "CECA", "Communitas Europaea Carbonis Ferrique", "CECF", "Europese Kolen en Staal Gemeenschap", "EKSG", "Europæiske Kul- og Stålfællesskab", "EKSF", "Europaiki Kinotitas Anfraka ke Haliva", "EKAH", "Europese Gemeenschap voor Kolen en Staal", "Europaeiske Kul- og Stålfaelleskab", "Evropaiki Kinotita Anfraka ke Haliva", "Europejska Wspólnota Węgla i Stali"], "preferred_name": "Europäische Gemeinschaft für Kohle und Stahl", "date_of_termination": "23.07.2002", "variant_access_point": ["Communauté européenne du charbon et de l'acier", "European coal and steel community", "EGKS. Abkuerzung", "Montanunion", "Montangemeinschaft", "European Coal and Steel Community", "ECSC. Abkuerzung", "Comunidade Europea do Carvão do Aço", "Comunidade Europeia do Carvão e do Aço", "Comunidad Europea del Carbón y del Acero", "Comunità Europea del Carbone e dell'Acciaio", "CECA. Abkuerzung", "Communitas Europaea Carbonis Ferrique", "CECF. Abkuerzung", "Europese Kolen en Staal Gemeenschap", "EKSG. Abkuerzung", "Europæiske Kul- og Stålfællesskab", "EKSF. Abkuerzung", "Europaiki Kinotitas Anfraka ke Haliva", "EKAH. Abkuerzung", "Europese Gemeenschap voor Kolen en Staal", "Europaeiske Kul- og Stålfaelleskab", "Evropaiki Kinotita Anfraka ke Haliva", "Europejska Wspólnota Węgla i Stali"], "date_of_establishment": "18.04.1951", "authorized_access_point": "Europäische Gemeinschaft für Kohle und Stahl", "biographical_information": ["Am 18. April 1951 durch den \\"Vertrag von Paris\\" gegründet und am 23. Juli 1952 in Kraft getreten.", "1965 bis 2002 eine der drei \\"Europäischen Gemeinschaften\\" (nid 35439-9): \\"Europäische Gemeinschaft\\" (nid 5103087-1), \\"Europäische Atomgemeinschaft\\" (nid 1084-4) und \\"Europäische Gemeinschaft für Kohle und Stahl\\" (nid 1003478-X).", "Der Vertrag, der für die Dauer von 50 Jahren geschlossen worden war, lief am 23. Juli 2002 aus und wurde nicht verlängert."]} 1 -2020-11-11 18:47:13.222069 2020-11-11 18:47:13.222074 de36ea70-7be9-4b74-a7d7-458b782acf08 {"md5": "764be174958b583d59d17eb9f528e665", "pid": "969004222", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Organisation", "conference": true, "identifier": "http://d-nb.info/gnd/1248506-8", "preferred_name": "Congrès Littéraire International", "country_associated": "fr", "authorized_access_point": "Congrès Littéraire International, 1878, Paris"} 1 -2020-11-11 18:47:14.514503 2020-11-11 18:47:14.514509 3fdec179-a42d-49cc-8949-66fed9851247 {"md5": "02728606dfedd5e44e290637a2f15c31", "pid": "122101359", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "identifier": "http://d-nb.info/gnd/122101359", "variant_name": ["Chapron, Nicolas", "Chapperon, Nicolas", "Chappron, Nicolas", "Chapron, Nicolaus"], "date_of_birth": "1612", "date_of_death": "1653", "preferred_name": "Chaperon, Nicolas", "country_associated": "fr", "variant_access_point": ["Chapron, Nicolas, 1612-1653", "Chapperon, Nicolas, 1612-1653", "Chappron, Nicolas, 1612-1653", "Chapron, Nicolaus, 1612-1653"], "authorized_access_point": "Chaperon, Nicolas, 1612-1653", "biographical_information": ["Franz. Maler, Stecher und Zeichner"]} 1 -2020-11-11 18:47:16.104832 2020-11-11 18:47:16.104836 e5c31145-0668-41bc-95c3-beae774843bf {"md5": "cebecd01b2375b95f3cd1e2cf8e20fdf", "pid": "1032371390", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Organisation", "conference": false, "identifier": "http://d-nb.info/gnd/1032371390", "variant_name": ["Les Bélaisières et les Doudous de la Grande-Terre"], "preferred_name": "Les Bélaisières et les Doudous de la Grande Terre", "country_associated": "fr", "variant_access_point": ["Les Bélaisières et les Doudous de la Grande-Terre"], "authorized_access_point": "Les Bélaisières et les Doudous de la Grande Terre"} 1 -2020-11-11 18:47:18.16379 2020-11-11 18:47:18.163796 f6ed8464-1fb5-48fe-be7d-3379fcf69ca6 {"md5": "357c17f7ee09c8d8d3ef9207adc0671f", "pid": "00401653X", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Organisation", "conference": false, "identifier": "http://d-nb.info/gnd/1002606-X", "variant_name": ["Federal Association of Company Health Insurance Funds", "Association of Company Health Insurance Funds", "BKK-Bundesverband", "BKK Bundesverband", "Bundesverband der BKK", "BdB", "BKK-BV", "BKK"], "preferred_name": "Bundesverband der Betriebskrankenkassen", "country_associated": "gw", "date_of_termination": "31.12.2013", "variant_access_point": ["Federal Association of Company Health Insurance Funds", "Association of Company Health Insurance Funds", "BKK-Bundesverband", "BKK Bundesverband", "Bundesverband der BKK", "BdB. Abkuerzung", "BKK-BV. Abkuerzung", "BKK. Abkuerzung"], "authorized_access_point": "Bundesverband der Betriebskrankenkassen"} 1 -2020-11-11 18:47:20.029398 2020-11-11 18:47:20.029404 1b08e0ae-2fc5-4e10-9620-2d83fbf3593e {"md5": "38d94c7e0499ba6fc73da9dcc08f7571", "pid": "00421952X", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Organisation", "conference": false, "identifier": "http://d-nb.info/gnd/1034729-X", "variant_name": ["Université de Paris-Sorbonne. Institut de Recherche sur les Civilisations de l'Occident Moderne", "Université de Paris-Sorbonne. Institut de Recherches sur les Civilisations de l'Occident Moderne", "Institut des Recherches sur les Civilisations de l'Occident Moderne", "Université de Paris-Sorbonne. Institut des Recherches sur les Civilisations de l'Occident Moderne", "Université de Paris-Sorbonne. Institut des Recherches sur les Civilisations de l'Occident Moderne", "IRCOM", "Institut de Recherches sur les Civilisations de l'Occident Moderne", "Université de Paris IV. Institut de Recherche sur les Civilisations de l'Occident Moderne", "Université de Paris IV. Institut de Recherches sur les Civilisations de l'Occident Moderne", "Université de Paris IV: Paris-Sorbonne. Institut de recherches sur les civilisations de l'Occident moderne", "Université de Paris IV: Paris-Sorbonne. Institut de recherches sur la civilisation de l'Occident moderne", "Université de Paris IV: Paris-Sorbonne. Institut de recherches sur l'Occident moderne", "Institut de recherches sur les civilisations de l'Occident moderne", "Institut de recherches sur la civilisation de l'Occident moderne", "Université de Paris IV: Paris-Sorbonne. Institut de recherche sur les civilisations de l'Occident moderne", "IRCOM"], "preferred_name": "Institut de Recherche sur les Civilisations de l'Occident Moderne", "country_associated": "fr", "variant_access_point": ["Université de Paris-Sorbonne. Institut de Recherche sur les Civilisations de l'Occident Moderne", "Université de Paris-Sorbonne. Institut de Recherches sur les Civilisations de l'Occident Moderne", "Institut des Recherches sur les Civilisations de l'Occident Moderne. Paris", "Université de Paris-Sorbonne. Institut des Recherches sur les Civilisations de l'Occident Moderne", "Université de Paris-Sorbonne. Institut des Recherches sur les Civilisations de l'Occident Moderne. Paris", "IRCOM. Abkuerzung", "Institut de Recherches sur les Civilisations de l'Occident Moderne. Paris", "Université de Paris IV. Institut de Recherche sur les Civilisations de l'Occident Moderne", "Université de Paris IV. Institut de Recherches sur les Civilisations de l'Occident Moderne", "Université de Paris IV: Paris-Sorbonne. Institut de recherches sur les civilisations de l'Occident moderne", "Université de Paris IV: Paris-Sorbonne. Institut de recherches sur la civilisation de l'Occident moderne", "Université de Paris IV: Paris-Sorbonne. Institut de recherches sur l'Occident moderne", "Institut de recherches sur les civilisations de l'Occident moderne. Université de Paris IV: Paris-Sorbonne", "Institut de recherches sur la civilisation de l'Occident moderne. Université de Paris IV: Paris-Sorbonne", "Université de Paris IV: Paris-Sorbonne. Institut de recherche sur les civilisations de l'Occident moderne", "IRCOM. Institut de recherches sur les civilisations de l'Occident moderne"], "authorized_access_point": "Institut de Recherche sur les Civilisations de l'Occident Moderne. Paris"} 1 -2020-11-11 18:47:21.196649 2020-11-11 18:47:21.196654 e65b3b07-8cae-419a-b665-06948174cdfc {"md5": "0702b3914d78ca6142e81de630a652ca", "pid": "951795597", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Organisation", "conference": false, "identifier": "http://d-nb.info/gnd/5230389-5", "variant_name": ["GN'R", "Guns and Roses"], "preferred_name": "Guns n' Roses", "country_associated": "xxu", "variant_access_point": ["GN'R. Abkuerzung", "Guns and Roses. Musikgruppe"], "date_of_establishment": "1985", "parallel_access_point": ["Guns n' Roses (Musical group)"], "authorized_access_point": "Guns n' Roses. Musikgruppe", "biographical_information": ["Hardrock-Band in wechselnder Besetzung um Axl Rose"]} 1 -2020-11-11 18:47:24.634321 2020-11-11 18:47:24.634326 c409eda1-066c-4bff-80f2-a63c06f889de {"md5": "bf8f042bc02fe594b9de7e25436fc2d7", "pid": "008046662", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Organisation", "conference": true, "identifier": "http://d-nb.info/gnd/804666-9", "preferred_name": "Congrès de Psychiatrie et de Neurologie de Langue Française, 78", "country_associated": "fr", "authorized_access_point": "Congrès de Psychiatrie et de Neurologie de Langue Française, 78, 1980, Reims"} 1 -2020-11-11 18:47:25.698713 2020-11-11 18:47:25.698718 a5270ffe-9690-4586-b0a3-53a663c8cd9e {"md5": "876f6a89592f3ce910d82edd114732ec", "pid": "1020174943", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "identifier": "http://d-nb.info/gnd/1020174943", "variant_name": ["Antin, Louis Antoine de Pardaillan de Gondrin d'", "Gondrin d'Antin, Louis Antoine de Pardaillan de", "Pardaillan de Gondrin, Louis Antoine de"], "date_of_birth": "05.09.1665", "date_of_death": "02.11.1736", "preferred_name": "Pardaillan de Gondrin d'Antin, Louis Antoine de", "country_associated": "fr", "variant_access_point": ["Antin, Louis Antoine de Pardaillan de Gondrin d', 1665-1736", "Gondrin d'Antin, Louis Antoine de Pardaillan de, 1665-1736", "Pardaillan de Gondrin, Louis Antoine de, 1665-1736"], "authorized_access_point": "Pardaillan de Gondrin d'Antin, Louis Antoine de, 1665-1736", "biographical_information": ["Sohn der Madame de Montespan mit Louis-Henri de Montespan; 1701 kgl. Generalleutnant des Elsaß; 1707 Gouverneur des Orléanais; Directeur des Bâtiments du Roi, 1708-1736"]} 1 -2020-11-11 18:47:26.940255 2020-11-11 18:47:26.940261 f2cda2c3-9536-444a-a9fa-113b58fbb3c2 {"md5": "159c51ed378299fb9c3eca025dba667b", "pid": "007430779", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Organisation", "conference": false, "identifier": "http://d-nb.info/gnd/2094183-3", "variant_name": ["Generaldirektion Wissenschaft", "Direcção-Geral de Estudos", "Generaldirektoratet for Forskning", "Directorate General for Research", "Dirección General de Estudios", "Direction Générale des Etudes", "Direzione Generale degli Studi", "Directoraat-Generaal Studiedienst", "Direction Générale de la Recherche", "Directoraat-Generaal Onderzoek", "Direzione Generale della Ricerca", "Genikē Dieuthunsē Meletōn", "Europäisches Parlament. Generalsekretariat. Generaldirektion Wissenschaft"], "preferred_name": "Europäisches Parlament. Generaldirektion Wissenschaft", "date_of_termination": "XX.10.1993", "variant_access_point": ["Generaldirektion Wissenschaft", "Direcção-Geral de Estudos", "Generaldirektoratet for Forskning", "Directorate General for Research", "Dirección General de Estudios", "Direction Générale des Etudes", "Direzione Generale degli Studi", "Directoraat-Generaal Studiedienst", "Direction Générale de la Recherche", "Directoraat-Generaal Onderzoek", "Direzione Generale della Ricerca", "Genikē Dieuthunsē Meletōn", "Europäisches Parlament. Generalsekretariat. Generaldirektion Wissenschaft"], "date_of_establishment": "XX.XX.1985", "authorized_access_point": "Europäisches Parlament. Generaldirektion Wissenschaft"} 1 -2020-11-11 18:47:28.00316 2020-11-11 18:47:28.003166 95075309-9949-4f1e-9f57-cc2d0fe698bb {"md5": "312a56bd7fa97c29bedb524106665d9f", "pid": "050534696", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Organisation", "conference": false, "identifier": "http://d-nb.info/gnd/5053469-5", "variant_name": ["Chemin de fer d'Orléans", "Compagnie d'Orléans", "PO"], "preferred_name": "Compagnie du Chemin de Fer de Paris à Orléans", "country_associated": "fr", "date_of_termination": "31.12.1937", "variant_access_point": ["Chemin de fer d'Orléans", "Compagnie d'Orléans", "PO. Abkuerzung"], "date_of_establishment": "13.08.1838", "authorized_access_point": "Compagnie du Chemin de Fer de Paris à Orléans"} 1 -2020-11-11 18:47:29.637085 2020-11-11 18:47:29.63709 946d4637-f7c7-4ee1-be95-efcd3ba04e1e {"md5": "a9da34766e9a6db0b5789665d1c39ade", "pid": "143032704", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "identifier": "http://d-nb.info/gnd/143032704", "variant_name": ["Soyarslan, Cigdem"], "date_of_birth": "27.03.1983", "preferred_name": "Soyarslan, Ciğdem", "country_associated": "tu", "variant_access_point": ["Soyarslan, Cigdem, 1983-"], "authorized_access_point": "Soyarslan, Ciğdem, 1983-"} 1 -2020-11-11 18:47:30.312125 2020-11-11 18:47:30.31213 6c5ce93f-d2c1-48a6-8434-1a80b56053e1 {"md5": "36b20e443f8b5ba67f37ef7403cfbe83", "pid": "118095617", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "identifier": "http://d-nb.info/gnd/118095617", "variant_name": ["Ambly, Paul Boiteau d'", "Boiteau, Paul", "Boiteau D'Ambly, Dieudonné Alexandre Paul", "Ambly, Dieudonné Alexandre Paul Boiteau d'", "Boiteau, Dieudonné Alexandre Paul", "Boiteau, Dieudonné-Alexandre-Paul"], "date_of_birth": "25.11.1830", "date_of_death": "11.06.1886", "preferred_name": "Boiteau D'Ambly, Paul", "country_associated": "fr", "variant_access_point": ["Ambly, Paul Boiteau d', 1830-1886", "Boiteau, Paul, 1830-1886", "Boiteau D'Ambly, Dieudonné Alexandre Paul, 1830-1886", "Ambly, Dieudonné Alexandre Paul Boiteau d', 1830-1886", "Boiteau, Dieudonné Alexandre Paul, 1830-1886", "Boiteau, Dieudonné-Alexandre-Paul, 1830-1886"], "authorized_access_point": "Boiteau D'Ambly, Paul, 1830-1886"} 1 -2020-11-11 18:47:31.548461 2020-11-11 18:47:31.548467 053b468e-4b94-476e-b3c6-cfc724de58e7 {"md5": "d0dedee1386074feb6b957dd545df78d", "pid": "104189576", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "qualifier": "Spanien, Königin, 1662-1689", "identifier": "http://d-nb.info/gnd/104189576", "variant_name": ["Marie Luise, Espagne, reine", "Marie-Louise, Espagne, reine", "Marie Louise, d'Orléans", "Marie-Louise, d'Orléans", "María Luisa, de Orleáns", "María Luisa, de Orleans", "Maria Luisa, Spagna, Regina", "María Luisa, España, reina, 1662-1689"], "date_of_birth": "27.03.1662", "date_of_death": "12.02.1689", "preferred_name": "Maria Luisa, Spanien, Königin, 1662-1689", "country_associated": "sp", "variant_access_point": ["Marie Luise, Espagne, reine, 1662-1689", "Marie-Louise, Espagne, reine, 1662-1689", "Marie Louise, d'Orléans, 1662-1689", "Marie-Louise, d'Orléans, 1662-1689", "María Luisa, de Orleáns, 1662-1689", "María Luisa, de Orleans, 1662-1689", "Maria Luisa, Spagna, Regina, 1662-1689", "María Luisa, España, reina, 1662-1689, 1662-1689"], "authorized_access_point": "Maria Luisa, Spanien, Königin, 1662-1689, 1662-1689"} 1 -2020-11-11 18:47:34.2378 2020-11-11 18:47:34.237805 68efe7ad-6b2e-4bc6-891d-75979a35fb32 {"md5": "deea413c05bda81ca161f7726728f990", "pid": "1089786255", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "identifier": "http://d-nb.info/gnd/1089786255", "variant_name": ["Cailler, Rodolphe"], "date_of_birth": "1561", "date_of_death": "1620", "preferred_name": "Cailler, Raoul", "variant_access_point": ["Cailler, Rodolphe, 1561-1620"], "authorized_access_point": "Cailler, Raoul, 1561-1620", "biographical_information": ["Dichter, Advokat im Parlament von Paris; aus Poitiers"]} 1 -2020-11-11 18:47:35.869012 2020-11-11 18:47:35.869028 f512e660-33bb-492f-8118-2cbec57efdc3 {"md5": "425c6a82d586fd1f21789146accd79bc", "pid": "1117819884", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "qualifier": "da San Giuseppe", "identifier": "http://d-nb.info/gnd/1117819884", "variant_name": ["Ange, de Saint-Joseph", "Angelo, da Utri", "Angelus, a S. Ioseph", "Angelus, a S. Joseph", "Angelus, a Sancto Josepho", "Angelus, a S. Josepho", "Saint-Joseph, Ange de", "San Giuseppe, Angelo da", "Sancto-Josepho, Angelus a", "Angelo, da San Giuseppe Ligure", "San Giuseppe Ligure, Angelo da", "Utri, Angelo da"], "date_of_birth": "1600", "preferred_name": "Angelo, da San Giuseppe", "country_associated": "it", "variant_access_point": ["Ange, de Saint-Joseph, 1600-", "Angelo, da Utri, 1600-", "Angelus, a S. Ioseph, 1600-", "Angelus, a S. Joseph, 1600-", "Angelus, a Sancto Josepho, 1600-", "Angelus, a S. Josepho, 1600-", "Saint-Joseph, Ange de, 1600-", "San Giuseppe, Angelo da, 1600-", "Sancto-Josepho, Angelus a, 1600-", "Angelo, da San Giuseppe Ligure, 1600-", "San Giuseppe Ligure, Angelo da, 1600-", "Utri, Angelo da, 1600-"], "authorized_access_point": "Angelo, da San Giuseppe, 1600-", "biographical_information": ["OCD 1617; Novizenmeister"]} 1 -2020-11-11 18:47:36.314256 2020-11-11 18:47:36.314261 c16acd31-db3f-42e3-b98f-c2d7d3e150a2 {"md5": "ca8a834ebd976880ec6d831e4d9b6980", "pid": "051062763", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Organisation", "conference": false, "identifier": "http://d-nb.info/gnd/16113016-1", "preferred_name": "Institut d'Administration des Entreprises", "country_associated": "fr", "authorized_access_point": "Institut d'Administration des Entreprises. Rennes"} 1 -2020-11-11 18:47:37.549447 2020-11-11 18:47:37.549453 52791c58-df5e-4bde-8062-ccdef771866e {"md5": "5dcc2a35d57dd302ab480b5fcdbc5381", "pid": "1055101586", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "identifier": "http://d-nb.info/gnd/1055101586", "variant_name": ["Ormonde, ... of", "Ormonde, James Edward William Theobald Butler of"], "date_of_birth": "1844", "date_of_death": "1919", "preferred_name": "Butler, James Edward William Theobald", "country_associated": "xxk", "variant_access_point": ["Ormonde, ... of, 1844-1919", "Ormonde, James Edward William Theobald Butler of, 1844-1919"], "authorized_access_point": "Butler, James Edward William Theobald, 1844-1919"} 1 -2020-11-11 18:47:39.779473 2020-11-11 18:47:39.779479 c2735121-c996-4ced-b121-fcc3a6950f2c {"md5": "82270d369e01f3d91b8e9312a0225e58", "pid": "130672289", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "identifier": "http://d-nb.info/gnd/130672289", "variant_name": ["Cabannes Cauna, Bernard Augustin Henri Timothée de", "Cabannes de Cauna, Bernard Augustin Henri Timothée", "Cauna, Bernard Augustin de", "Cabannes, Bernard Augustin de Cauna", "Cauna, Bernard Augustin Henry Timothée de Cabannes de"], "date_of_birth": "1822", "date_of_death": "1883", "preferred_name": "Cauna, Bernard Augustin Henri Timothée de Cabannes de", "variant_access_point": ["Cabannes Cauna, Bernard Augustin Henri Timothée de, 1822-1883", "Cabannes de Cauna, Bernard Augustin Henri Timothée, 1822-1883", "Cauna, Bernard Augustin de, 1822-1883", "Cabannes, Bernard Augustin de Cauna, 1822-1883", "Cauna, Bernard Augustin Henry Timothée de Cabannes de, 1822-1883"], "authorized_access_point": "Cauna, Bernard Augustin Henri Timothée de Cabannes de, 1822-1883"} 1 -2020-11-11 18:47:40.685181 2020-11-11 18:47:40.685187 b09a649e-263d-44d0-8d01-a9e3bb6145c0 {"md5": "d3a2923e7fe2f761ef3b510d12b68898", "pid": "1073132285", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "identifier": "http://d-nb.info/gnd/1073132285", "date_of_birth": "08.10.1758", "date_of_death": "17.09.1832", "preferred_name": "Carelli, Francesco", "country_associated": "it", "authorized_access_point": "Carelli, Francesco, 1758-1832"} 1 -2020-11-11 18:47:41.567503 2020-11-11 18:47:41.567509 d8317fea-3a97-44ee-af93-9f6388af00b9 {"md5": "b6e9429acdb81db81b1efaa85dae04d8", "pid": "100023754", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "qualifier": "de Barbanson", "identifier": "http://d-nb.info/gnd/100023754", "variant_name": ["Konstantin, von Barbanson", "Barbanson, Konstantin von", "Constantine, of Barbanson", "Barbanson, Constantine", "Barbanson, Constantin de", "Constantinus, de Barbanson", "Barbanson, Constantinus de", "Constantinus, a Barbençon", "Constantin, de Barbançon", "Barbançon, Constantin de", "Constantin, de Barbençon", "Barbençon, Constantin de", "Paunet, Théodoric", "Paunet, Theodoricus", "Barbançon, Konstantyn"], "date_of_birth": "1582", "date_of_death": "26.11.1631", "preferred_name": "Constantin, de Barbanson", "country_associated": "ne", "variant_access_point": ["Konstantin, von Barbanson, 1582-1631", "Barbanson, Konstantin von, 1582-1631", "Constantine, of Barbanson, 1582-1631", "Barbanson, Constantine, 1582-1631", "Barbanson, Constantin de, 1582-1631", "Constantinus, de Barbanson, 1582-1631", "Barbanson, Constantinus de, 1582-1631", "Constantinus, a Barbençon, 1582-1631", "Constantin, de Barbançon, 1582-1631", "Barbançon, Constantin de, 1582-1631", "Constantin, de Barbençon, 1582-1631", "Barbençon, Constantin de, 1582-1631", "Paunet, Théodoric, 1582-1631", "Paunet, Theodoricus, 1582-1631", "Barbançon, Konstantyn, 1582-1631"], "authorized_access_point": "Constantin, de Barbanson, 1582-1631", "biographical_information": ["Prediger in Köln; OFMCap; geb. in Barbançon (Hainaut, Belgien)"]} 1 -2020-11-11 18:47:44.942613 2020-11-11 18:47:44.942618 3600248e-fbc7-4e83-8bd4-b6824045bb72 {"md5": "cc5b6e556728b5e7801e33bbafb9ad23", "pid": "1053083351", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "identifier": "http://d-nb.info/gnd/1053083351", "variant_name": ["Alfaro Lafuente, Manuel Ibo", "Alfaro y Lafuente, Manuel Ibo", "Alfaro, Manuel Ibo", "Ibo Alfaro y Lafuente, Manuel", "Ibo Alfaro, Manuel", "Ibo, Manuel"], "date_of_birth": "1828", "date_of_death": "1885", "preferred_name": "Ibo Alfaro Lafuente, Manuel", "country_associated": "sp", "variant_access_point": ["Alfaro Lafuente, Manuel Ibo, 1828-1885", "Alfaro y Lafuente, Manuel Ibo, 1828-1885", "Alfaro, Manuel Ibo, 1828-1885", "Ibo Alfaro y Lafuente, Manuel, 1828-1885", "Ibo Alfaro, Manuel, 1828-1885", "Ibo, Manuel, 1828-1885"], "authorized_access_point": "Ibo Alfaro Lafuente, Manuel, 1828-1885"} 1 -2020-11-11 18:47:46.819455 2020-11-11 18:47:46.819461 834eb109-caee-48c1-8d3d-a97b4607df25 {"md5": "84e51d7ee7be9178f66a7585eb6aa6c5", "pid": "129943495", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "identifier": "http://d-nb.info/gnd/129943495", "variant_name": ["Arnoult, Alexis Étienne Pierre Henri", "Arnoult, Alexis E."], "date_of_birth": "1782", "date_of_death": "1860", "preferred_name": "Arnoult, Stephen", "variant_access_point": ["Arnoult, Alexis Étienne Pierre Henri, 1782-1860", "Arnoult, Alexis E., 1782-1860"], "authorized_access_point": "Arnoult, Stephen, 1782-1860", "biographical_information": ["Französ. Schriftsteller"]} 1 -2020-11-11 18:47:47.746688 2020-11-11 18:47:47.746693 db42b898-bea6-4589-9eba-a4ec14125697 {"md5": "e3e17e2a5102b26d39af8d07649abb11", "pid": "11669355X", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "identifier": "http://d-nb.info/gnd/11669355X", "variant_name": ["Franchi de Cavalieri, Pio", "Cavalieri, Pio Franchi de", "Franchi De'Cavalieri, Pio P.", "Franchi De'Cavalieri, Pietro", "Franchi-De'Cavalieri, Pio", "De'Cavalieri, Pio Franchi", "DeCavalieri, Pius Franchi", "De'Cavalieri, Pio F.", "Cavalieri, Franchi de", "Franchi de Cavalieri, Pius", "Franchi de Cavallieri, Pio", "Cavallieri, Pio Franchi de", "Cavalieri, Pio F. de'", "Cavalieri, Pio F.", "Franchi di Cavalieri, Pius", "Franchi de' Cavalieri, Pio", "Franchi de'Cavalieri, Pius", "Franchi de' Cavalieri, Pius", "Cavalieri, Pio Franchi de'", "Cavalieri, Pius Franchi de'", "Franchi De'Cavalieri, Pio Pietro"], "date_of_birth": "1869", "date_of_death": "1960", "preferred_name": "Franchi de'Cavalieri, Pio", "country_associated": "it", "variant_access_point": ["Franchi de Cavalieri, Pio, 1869-1960", "Cavalieri, Pio Franchi de, 1869-1960", "Franchi De'Cavalieri, Pio P., 1869-1960", "Franchi De'Cavalieri, Pietro, 1869-1960", "Franchi-De'Cavalieri, Pio, 1869-1960", "De'Cavalieri, Pio Franchi, 1869-1960", "DeCavalieri, Pius Franchi, 1869-1960", "De'Cavalieri, Pio F., 1869-1960", "Cavalieri, Franchi de, 1869-1960", "Franchi de Cavalieri, Pius, 1869-1960", "Franchi de Cavallieri, Pio, 1869-1960", "Cavallieri, Pio Franchi de, 1869-1960", "Cavalieri, Pio F. de', 1869-1960", "Cavalieri, Pio F., 1869-1960", "Franchi di Cavalieri, Pius, 1869-1960", "Franchi de' Cavalieri, Pio, 1869-1960", "Franchi de'Cavalieri, Pius, 1869-1960", "Franchi de' Cavalieri, Pius, 1869-1960", "Cavalieri, Pio Franchi de', 1869-1960", "Cavalieri, Pius Franchi de', 1869-1960", "Franchi De'Cavalieri, Pio Pietro, 1869-1960"], "authorized_access_point": "Franchi de'Cavalieri, Pio, 1869-1960", "biographical_information": ["Ital. Klass. Archäologe und Paläograph", "Studium der Philologie an der Universität Rom, 1921-1925 und 1927-1930 Präsident der päpstlichen archäologischen Akademie in Rom, Kustos an der Vatikanischen Bibliothek, 1929-1931 Leutnant des Souveränen Malteserordens., http://www.pacelli-edition.de/Biographie/427"]} 1 -2020-11-11 18:47:48.908206 2020-11-11 18:47:48.908212 2a2ad568-8bb7-4dd3-b766-b476e3f4cb12 {"md5": "729068e05f9658616b4d7f190a937bb6", "pid": "119291088", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "language": ["lat"], "qualifier": "Mamertus", "identifier": "http://d-nb.info/gnd/119291088", "variant_name": ["Claudianus Ecdicius, Mamertus", "Claudianus, Viennensis", "Mamertus, Presbyter", "Mamertus, Viennensis", "Claudianus, Rhetor", "Claudianus, Philosoph", "Claudianus, von Vienne", "Mamertus, Claudius Ecdicius", "Ecdicius Mamertus, Claudianus", "Mamertus Claudianus, Presbyter", "Mamertus Claudianus, Viennensis", "Mamertus, Claudianus Ecdicius", "Claudianus Mamertus, Viennensis", "Claudianus Mamertus, Gallia, Presbyter", "Mam. Claud.", "Claudianus, Christian Writer", "Claudianus, Presbyter", "Mamerto, Claudiano", "Mamertinus, Claudius", "Mamertinus, ...", "Mamertus, Claudianus", "Claudianus Mamertus"], "date_of_death": "474", "preferred_name": "Claudianus, Mamertus", "variant_access_point": ["Claudianus Ecdicius, Mamertus, -474", "Claudianus, Viennensis, -474", "Mamertus, Presbyter, -474", "Mamertus, Viennensis, -474", "Claudianus, Rhetor, -474", "Claudianus, Philosoph, -474", "Claudianus, von Vienne, -474", "Mamertus, Claudius Ecdicius, -474", "Ecdicius Mamertus, Claudianus, -474", "Mamertus Claudianus, Presbyter, -474", "Mamertus Claudianus, Viennensis, -474", "Mamertus, Claudianus Ecdicius, -474", "Claudianus Mamertus, Viennensis, -474", "Claudianus Mamertus, Gallia, Presbyter, -474", "Mam. Claud., -474", "Claudianus, Christian Writer, -474", "Claudianus, Presbyter, -474", "Mamerto, Claudiano, -474", "Mamertinus, Claudius, -474", "Mamertinus, ..., -474", "Mamertus, Claudianus, -474", "Claudianus Mamertus, -474"], "authorized_access_point": "Claudianus, Mamertus, -474", "biographical_information": ["Rhetor, Philosoph u. Priester in Vienne"]} 1 -2020-11-11 18:47:49.888742 2020-11-11 18:47:49.888748 bb5e6d09-72f0-448e-b7c0-069dae07e7b1 {"md5": "c4490b7c0025ff2c85a878459bfebb7f", "pid": "117588768", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "identifier": "http://d-nb.info/gnd/117588768", "variant_name": ["Bernard, William Baile", "Bernard, William B.", "Bernard, William Bayle"], "date_of_birth": "1807", "date_of_death": "1875", "preferred_name": "Bernard, Bayle", "country_associated": "xxk", "variant_access_point": ["Bernard, William Baile, 1807-1875", "Bernard, William B., 1807-1875", "Bernard, William Bayle, 1807-1875"], "authorized_access_point": "Bernard, Bayle, 1807-1875"} 1 -2020-11-11 18:47:50.635377 2020-11-11 18:47:50.635383 1da586fd-6438-43c4-9518-5c55595259ec {"md5": "1451bf6d8aa9e750ff0780a44e8c8527", "pid": "117671533", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "identifier": "http://d-nb.info/gnd/117671533", "variant_name": ["Bagnano, Georgio Libri-", "Libri Bagnano, Georgio"], "date_of_birth": "1780", "date_of_death": "1835", "preferred_name": "Libri-Bagnano, Georgio", "country_associated": "gw", "variant_access_point": ["Bagnano, Georgio Libri-, 1780-1835", "Libri Bagnano, Georgio, 1780-1835"], "authorized_access_point": "Libri-Bagnano, Georgio, 1780-1835"} 1 -2020-11-11 18:47:51.804523 2020-11-11 18:47:51.804529 c99d598a-85cc-4280-8bdd-35fdd44c432c {"md5": "b1420914569198b30b43eee0c9d72ca9", "pid": "172759757", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "identifier": "http://d-nb.info/gnd/172759757", "variant_name": ["Arnoudt, Pierre Joseph", "Arnoudt, Pierre", "Arnold, Petrus", "Arnoudt, P. J.", "Arnoudt, P.", "Arnold, P. J.", "Arnold, Peter J.", "Arnold, Peter Joseph", "Arnold, Joseph", "Arnold, J.", "Arnoudt, Petrus", "Aernoudt, Pierre", "Arnoudt, Peter J.", "Arnoudt, Pierre Jean", "Arnold, Pierre", "Arnold, Josef"], "date_of_birth": "11.05.1811", "date_of_death": "29.07.1865", "preferred_name": "Arnoudt, Pierre J.", "variant_access_point": ["Arnoudt, Pierre Joseph, 1811-1865", "Arnoudt, Pierre, 1811-1865", "Arnold, Petrus, 1811-1865", "Arnoudt, P. J., 1811-1865", "Arnoudt, P., 1811-1865", "Arnold, P. J., 1811-1865", "Arnold, Peter J., 1811-1865", "Arnold, Peter Joseph, 1811-1865", "Arnold, Joseph, 1811-1865", "Arnold, J., 1811-1865", "Arnoudt, Petrus, 1811-1865", "Aernoudt, Pierre, 1811-1865", "Arnoudt, Peter J., 1811-1865", "Arnoudt, Pierre Jean, 1811-1865", "Arnold, Pierre, 1811-1865", "Arnold, Josef, 1811-1865"], "authorized_access_point": "Arnoudt, Pierre J., 1811-1865", "biographical_information": ["Vollständiger Vorname: Peter Joseph"]} 1 -2020-11-11 18:47:53.006794 2020-11-11 18:47:53.006799 fe35f923-51f5-4912-b700-cb60412d3fde {"md5": "aacd4184aa47315350ac6e210af4856d", "pid": "1056901632", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "identifier": "http://d-nb.info/gnd/1056901632", "variant_name": ["Aranton D'Alex, Giovanni d'", "Alex, Jean d'Aranton d'", "Alex, Giovanni d'Aranton d'", "Arenthon, Jean d‘Alex", "Arenthon d'Alex, Jean d', Bischof von Genf", "Alex, Jean d'Arenthon d', Bischof von Genf", "Jean, Bischof von Genf"], "date_of_birth": "1620", "date_of_death": "1695", "preferred_name": "Aranthon D'Alex, Jean d'", "country_associated": "sz", "variant_access_point": ["Aranton D'Alex, Giovanni d', 1620-1695", "Alex, Jean d'Aranton d', 1620-1695", "Alex, Giovanni d'Aranton d', 1620-1695", "Arenthon, Jean d‘Alex, 1620-1695", "Arenthon d'Alex, Jean d', Bischof von Genf, 1620-1695", "Alex, Jean d'Arenthon d', Bischof von Genf, 1620-1695", "Jean, Bischof von Genf, 1620-1695"], "authorized_access_point": "Aranthon D'Alex, Jean d', 1620-1695", "biographical_information": ["Bischof von Genf"]} 1 -2020-11-11 18:48:02.215132 2020-11-11 18:48:02.215137 b2c373b1-1be0-4d4c-9ddc-81dafc7397f9 {"md5": "67f3bc022f12466ec7a69bda7ed8c000", "pid": "1019749911", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "identifier": "http://d-nb.info/gnd/1019749911", "variant_name": ["Bourbon, Charles de", "Charles, Soissons, Comte"], "date_of_birth": "03.11.1566", "date_of_death": "01.11.1612", "preferred_name": "Soissons, Charles de Bourbon de", "variant_access_point": ["Bourbon, Charles de, 1566-1612", "Charles, Soissons, Comte, 1566-1612"], "authorized_access_point": "Soissons, Charles de Bourbon de, 1566-1612", "biographical_information": ["Ältester Sohn von Louis de Bourbon, 1. prince de Condé (1530-69) aus 2. Ehe mit Eléonore-Françoise d'Orléans-Longueville (1549-1601); heiratete 1601 Anne comtesse de Montafié (1577-1644); Parteigänger zuerst der Ligue u. König Heinrichs III., dann Heinrichs von Navarra (der ihm jedoch die Heirat mit seiner Schwester Catherine versagte); 1602 Gouverneur des Dauphiné, 1610 der Normandie."]} 1 -2020-11-11 18:47:55.109117 2020-11-11 18:47:55.109123 a594d246-e2e4-4ad3-be5b-333e25fe78be {"md5": "8356eb52401765320b07a62fecd51868", "pid": "118666762", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "identifier": "http://d-nb.info/gnd/118666762", "variant_name": ["Camerarius, Rudolf Jacob", "Camerarius, Rudolph Jakob", "Camerarius, Rudolph Jacob", "Camerer, Rudolf Jakob", "Camerer, Rudolph Jacob", "Camerarius, R. J.", "Camerarius, Rudolf", "Camerarius, Jacob Rudolph", "Camerarius, Rudolphus J.", "Camerer, Rudolph Jakob", "Camerarius, Rudolphus Jacobus", "Camerer, Rudolf Jacob", "Camerarius, R.J.", "Hector, II."], "date_of_birth": "12.02.1665", "date_of_death": "11.09.1721", "preferred_name": "Camerarius, Rudolf Jakob", "country_associated": "gw", "variant_access_point": ["Camerarius, Rudolf Jacob, 1665-1721", "Camerarius, Rudolph Jakob, 1665-1721", "Camerarius, Rudolph Jacob, 1665-1721", "Camerer, Rudolf Jakob, 1665-1721", "Camerer, Rudolph Jacob, 1665-1721", "Camerarius, R. J., 1665-1721", "Camerarius, Rudolf, 1665-1721", "Camerarius, Jacob Rudolph, 1665-1721", "Camerarius, Rudolphus J., 1665-1721", "Camerer, Rudolph Jakob, 1665-1721", "Camerarius, Rudolphus Jacobus, 1665-1721", "Camerer, Rudolf Jacob, 1665-1721", "Camerarius, R.J., 1665-1721", "Hector, II., 1665-1721"], "parallel_access_point": ["Camerarius, Rudolf Jakob, 1665-1721"], "authorized_access_point": "Camerarius, Rudolf Jakob, 1665-1721", "biographical_information": ["Dt. Mediziner und Botaniker; Direktor des botanischen Gartens und Prof. der Botanik und der Medizin in Tübingen"]} 1 -2020-11-11 18:47:56.098906 2020-11-11 18:47:56.098912 3174c5e2-ea08-4607-9a28-e07742725504 {"md5": "452a1868155ffd2ada821d414e3d91a3", "pid": "119120674", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "qualifier": "Preußen, Königin", "identifier": "http://d-nb.info/gnd/119120674", "variant_name": ["Elisabeth Christine, Braunschweig-Bevern, Herzogin", "Elisabet Christine, Preußen, Königin", "Elisabeth Christina, Preußen, Königin", "Elisabeth Christine, Braunschweig-Wolfenbüttel-Bevern, Herzogin", "Elisabeth Christine, Braunschweig-Lüneburg-Bevern, Herzogin", "Elisabetha Christinae, Brunsvicum-Lunaeburgum, Ducissa", "Elisabeth Christine", "Elisabeth Christine, Braunschweig-Bevern, Prinzessin", "Elisabeth Christine, Braunschweig-Lüneburg, Herzogin", "Elisabeth Christine, Braunschweig-Lüneburg, Prinzessin", "Elisabetha Christiana, Preußen, Königin", "Elisabeth, Preußen, Königin"], "date_of_birth": "08.11.1715", "date_of_death": "13.01.1797", "preferred_name": "Elisabeth Christine, Preußen, Königin", "country_associated": "gw", "variant_access_point": ["Elisabeth Christine, Braunschweig-Bevern, Herzogin, 1715-1797", "Elisabet Christine, Preußen, Königin, 1715-1797", "Elisabeth Christina, Preußen, Königin, 1715-1797", "Elisabeth Christine, Braunschweig-Wolfenbüttel-Bevern, Herzogin, 1715-1797", "Elisabeth Christine, Braunschweig-Lüneburg-Bevern, Herzogin, 1715-1797", "Elisabetha Christinae, Brunsvicum-Lunaeburgum, Ducissa, 1715-1797", "Elisabeth Christine, 1715-1797", "Elisabeth Christine, Braunschweig-Bevern, Prinzessin, 1715-1797", "Elisabeth Christine, Braunschweig-Lüneburg, Herzogin, 1715-1797", "Elisabeth Christine, Braunschweig-Lüneburg, Prinzessin, 1715-1797", "Elisabetha Christiana, Preußen, Königin, 1715-1797", "Elisabeth, Preußen, Königin, 1715-1797"], "authorized_access_point": "Elisabeth Christine, Preußen, Königin, 1715-1797"} 1 -2020-11-11 18:47:57.013119 2020-11-11 18:47:57.013124 e67505cb-0c94-43d4-bef8-2fd1d2615a59 {"md5": "f96f8bf5ff7ce5c8ce580e631f3fbc0d", "pid": "124981933", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "identifier": "http://d-nb.info/gnd/124981933", "variant_name": ["Saint-Morys, Etienne Bourgevin Vialard de", "Saint-Morys, Étienne Bourgelin Vialart de", "Saint-Morys, Vialart", "Vialart de Saint-Morys, Étienne Bourgevin", "Bourgevin Vialart de Saint-Morys, Étienne", "Vialard de Saint-Morys, Etienne Bourgevin", "Bourgevin Vialard de Saint-Morys, Etienne", "Saint-Morys, ... de", "St.-Morys, ... de", "Vialart-Saint-Morys, ... de", "Vialart-Saint-Morys, Étienne de", "Vialart de St.-Morys, ... de", "Vialart de Saint-Morys, ... de", "Vialart de St.-Morys, Étienne de", "Vialart de Saint-Morys, Étienne de", "Bourgevin Vialard, Étienne", "Vialard, Étienne Bourgevin"], "date_of_birth": "1772", "date_of_death": "1817", "preferred_name": "Saint-Morys, Étienne Bourgevin Vialart de", "variant_access_point": ["Saint-Morys, Etienne Bourgevin Vialard de, 1772-1817", "Saint-Morys, Étienne Bourgelin Vialart de, 1772-1817", "Saint-Morys, Vialart, 1772-1817", "Vialart de Saint-Morys, Étienne Bourgevin, 1772-1817", "Bourgevin Vialart de Saint-Morys, Étienne, 1772-1817", "Vialard de Saint-Morys, Etienne Bourgevin, 1772-1817", "Bourgevin Vialard de Saint-Morys, Etienne, 1772-1817", "Saint-Morys, ... de, 1772-1817", "St.-Morys, ... de, 1772-1817", "Vialart-Saint-Morys, ... de, 1772-1817", "Vialart-Saint-Morys, Étienne de, 1772-1817", "Vialart de St.-Morys, ... de, 1772-1817", "Vialart de Saint-Morys, ... de, 1772-1817", "Vialart de St.-Morys, Étienne de, 1772-1817", "Vialart de Saint-Morys, Étienne de, 1772-1817", "Bourgevin Vialard, Étienne, 1772-1817", "Vialard, Étienne Bourgevin, 1772-1817"], "authorized_access_point": "Saint-Morys, Étienne Bourgevin Vialart de, 1772-1817"} 1 -2020-11-11 18:47:58.297495 2020-11-11 18:47:58.2975 ced2c0b0-c64f-4c2c-8602-dc2340ea9903 {"md5": "56b1523e8b10cc5750ef98e9768a13e6", "pid": "12391664X", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "identifier": "http://d-nb.info/gnd/12391664X", "variant_name": ["Cavaleriis, Joannes Baptista de", "Cavalleris, Joannes Baptista de", "Cavaleriis, Joanes Baptista de", "Cavalleriis, Johannes Baptista de", "Cavalerius, Johannes Battista de", "Cavallerys, Johannes Baptista de", "Cavaleriis, Johannes Baptista de", "Cavalieri, Giovanni Battista de", "Cavallieri, Giovan Battista de", "Cavalleriis, Johannes Battista", "Cavallerius, Johannes Baptista", "Cavallerius, Joannes Baptista", "Cavalleriis, Johannes Baptista", "Cavallieri, Giovanni Battista", "Cavaleriis, Giovanni Battista", "Cavalleriis, Io. Baptista de", "Cavallieri, Giovanni Battista de", "Cavalerijs, Io. Baptista de", "Cavallieri, Giovanni B.", "Cavaleriis, Joannes B. de", "Cavallerius, Jo. B. de", "Cavalleriis, Joannes Baptista de", "Cavallerijs, Baptista de", "Cavalleriis, Giovanni Battista de", "Cavallieri, Giovanbattista de", "Cavallerius, Io. Bap.ta", "Cavalierii, Johannes Baptista de"], "date_of_birth": "ca. 1525", "date_of_death": "1601", "preferred_name": "Cavalieri, Giovanni Battista", "country_associated": "it", "variant_access_point": ["Cavaleriis, Joannes Baptista de, 1525-1601", "Cavalleris, Joannes Baptista de, 1525-1601", "Cavaleriis, Joanes Baptista de, 1525-1601", "Cavalleriis, Johannes Baptista de, 1525-1601", "Cavalerius, Johannes Battista de, 1525-1601", "Cavallerys, Johannes Baptista de, 1525-1601", "Cavaleriis, Johannes Baptista de, 1525-1601", "Cavalieri, Giovanni Battista de, 1525-1601", "Cavallieri, Giovan Battista de, 1525-1601", "Cavalleriis, Johannes Battista, 1525-1601", "Cavallerius, Johannes Baptista, 1525-1601", "Cavallerius, Joannes Baptista, 1525-1601", "Cavalleriis, Johannes Baptista, 1525-1601", "Cavallieri, Giovanni Battista, 1525-1601", "Cavaleriis, Giovanni Battista, 1525-1601", "Cavalleriis, Io. Baptista de, 1525-1601", "Cavallieri, Giovanni Battista de, 1525-1601", "Cavalerijs, Io. Baptista de, 1525-1601", "Cavallieri, Giovanni B., 1525-1601", "Cavaleriis, Joannes B. de, 1525-1601", "Cavallerius, Jo. B. de, 1525-1601", "Cavalleriis, Joannes Baptista de, 1525-1601", "Cavallerijs, Baptista de, 1525-1601", "Cavalleriis, Giovanni Battista de, 1525-1601", "Cavallieri, Giovanbattista de, 1525-1601", "Cavallerius, Io. Bap.ta, 1525-1601", "Cavalierii, Johannes Baptista de, 1525-1601"], "authorized_access_point": "Cavalieri, Giovanni Battista, 1525-1601", "biographical_information": ["Maler, Kupferstecher"]} 1 -2020-11-11 18:48:00.702078 2020-11-11 18:48:00.702083 953e561b-65ea-44b1-9c3b-7057eff2e5e1 {"md5": "b0385764c1529aa4d1762ae4ef521b1c", "pid": "1060580543", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "identifier": "http://d-nb.info/gnd/1060580543", "date_of_birth": "1851", "date_of_death": "1925", "preferred_name": "Avesne, E. d'", "country_associated": "fr", "authorized_access_point": "Avesne, E. d', 1851-1925"} 1 -2020-11-11 18:48:03.155396 2020-11-11 18:48:03.155401 56d8d096-c086-4edb-bb05-99e8f87d07cd {"md5": "79e50969e7f659769d8e7f7c922f3309", "pid": "1045857424", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "identifier": "http://d-nb.info/gnd/1045857424", "variant_name": ["Mérault De Bizy, Athanase René", "De Bizy, Athanase René Mérault", "DeBizy, Athanase René Mérault", "Bizy, Athanase René Mérault de"], "date_of_birth": "1744", "date_of_death": "1835", "preferred_name": "Mérault De Bizy, Athanase-René", "country_associated": "fr", "variant_access_point": ["Mérault De Bizy, Athanase René, 1744-1835", "De Bizy, Athanase René Mérault, 1744-1835", "DeBizy, Athanase René Mérault, 1744-1835", "Bizy, Athanase René Mérault de, 1744-1835"], "authorized_access_point": "Mérault De Bizy, Athanase-René, 1744-1835"} 1 +2020-11-11 18:47:04.046001 2020-11-11 18:47:04.046007 f4144b51-5241-4d0d-95fb-017272e161c2 {"md5": "27e54e506f4dc18dd4d7ad7511e4126c", "pid": "124813844", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "variant_name": ["Catalani, Josephus", "Catalano, Giuseppe", "Catalanus, Josephus"], "date_of_birth": "1698", "date_of_death": "1764", "preferred_name": "Catalani, Giuseppe", "country_associated": "it", "variant_access_point": ["Catalani, Josephus, 1698-1764", "Catalano, Giuseppe, 1698-1764", "Catalanus, Josephus, 1698-1764"], "authorized_access_point": "Catalani, Giuseppe, 1698-1764", "biographical_information": ["Aus Paola, Wirkungsort Rom, Priester am Oratorio di San Girolamo della Carita; Ital. Gelehrter, Pater", "Theologe"]} 1 +2020-11-11 18:47:07.400721 2020-11-11 18:47:07.400726 cb714d99-d984-4731-8e3e-3dc0ef3e0e22 {"md5": "a611605c3996cc95b63293e020f40192", "pid": "117513601", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "variant_name": ["Fleuriau de Belleville, Louis Benjamin", "Fleuriau de Bellevue, Louis", "Belleville, Louis Fleuriau de", "Bellevue, Louis Benjamin Fleuriau de"], "date_of_birth": "1761", "date_of_death": "1852", "preferred_name": "Fleuriau de Bellevue, Louis Benjamin", "country_associated": "fr", "variant_access_point": ["Fleuriau de Belleville, Louis Benjamin, 1761-1852", "Fleuriau de Bellevue, Louis, 1761-1852", "Belleville, Louis Fleuriau de, 1761-1852", "Bellevue, Louis Benjamin Fleuriau de, 1761-1852"], "authorized_access_point": "Fleuriau de Bellevue, Louis Benjamin, 1761-1852", "biographical_information": ["Französ. Gelehrter, Naturwissenschaftler und Geologe"]} 1 +2020-11-11 18:47:09.966354 2020-11-11 18:47:09.96636 fc45ab5b-65ee-4092-9477-a619109529bb {"md5": "47d4bf1da13338bc3149d973aa65e11b", "pid": "131543334", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "variant_name": ["Sergēs, Manolēs", "Sergēs, M. G.", "Sergēs, Manolēs Geōrg.", "Sergis, Manolis G.", "Sergis, Manolis", "Sergis, M. G."], "date_of_birth": "1957", "preferred_name": "Sergēs, Manolēs G.", "country_associated": "gr", "variant_access_point": ["Sergēs, Manolēs, 1957-", "Sergēs, M. G., 1957-", "Sergēs, Manolēs Geōrg., 1957-", "Sergis, Manolis G., 1957-", "Sergis, Manolis, 1957-", "Sergis, M. G., 1957-"], "parallel_access_point": ["Σέργης, Μανώλης Γ., 1957-"], "authorized_access_point": "Sergēs, Manolēs G., 1957-", "biographical_information": ["Forschungsschwerpunkt: Volkskunde; Griech. Philologe"]} 1 +2020-11-11 18:47:12.040912 2020-11-11 18:47:12.040918 10a97bcd-7abd-4b62-b050-485f74762f2a {"md5": "9d287c3e9dde431e16e055d02434fe7e", "pid": "00402074X", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Organisation", "conference": false, "variant_name": ["Communauté européenne du charbon et de l'acier", "European coal and steel community", "EGKS", "Montanunion", "Montangemeinschaft", "European Coal and Steel Community", "ECSC", "Comunidade Europea do Carvão do Aço", "Comunidade Europeia do Carvão e do Aço", "Comunidad Europea del Carbón y del Acero", "Comunità Europea del Carbone e dell'Acciaio", "CECA", "Communitas Europaea Carbonis Ferrique", "CECF", "Europese Kolen en Staal Gemeenschap", "EKSG", "Europæiske Kul- og Stålfællesskab", "EKSF", "Europaiki Kinotitas Anfraka ke Haliva", "EKAH", "Europese Gemeenschap voor Kolen en Staal", "Europaeiske Kul- og Stålfaelleskab", "Evropaiki Kinotita Anfraka ke Haliva", "Europejska Wspólnota Węgla i Stali"], "preferred_name": "Europäische Gemeinschaft für Kohle und Stahl", "date_of_termination": "23.07.2002", "variant_access_point": ["Communauté européenne du charbon et de l'acier", "European coal and steel community", "EGKS. Abkuerzung", "Montanunion", "Montangemeinschaft", "European Coal and Steel Community", "ECSC. Abkuerzung", "Comunidade Europea do Carvão do Aço", "Comunidade Europeia do Carvão e do Aço", "Comunidad Europea del Carbón y del Acero", "Comunità Europea del Carbone e dell'Acciaio", "CECA. Abkuerzung", "Communitas Europaea Carbonis Ferrique", "CECF. Abkuerzung", "Europese Kolen en Staal Gemeenschap", "EKSG. Abkuerzung", "Europæiske Kul- og Stålfællesskab", "EKSF. Abkuerzung", "Europaiki Kinotitas Anfraka ke Haliva", "EKAH. Abkuerzung", "Europese Gemeenschap voor Kolen en Staal", "Europaeiske Kul- og Stålfaelleskab", "Evropaiki Kinotita Anfraka ke Haliva", "Europejska Wspólnota Węgla i Stali"], "date_of_establishment": "18.04.1951", "authorized_access_point": "Europäische Gemeinschaft für Kohle und Stahl", "biographical_information": ["Am 18. April 1951 durch den \\"Vertrag von Paris\\" gegründet und am 23. Juli 1952 in Kraft getreten.", "1965 bis 2002 eine der drei \\"Europäischen Gemeinschaften\\" (nid 35439-9): \\"Europäische Gemeinschaft\\" (nid 5103087-1), \\"Europäische Atomgemeinschaft\\" (nid 1084-4) und \\"Europäische Gemeinschaft für Kohle und Stahl\\" (nid 1003478-X).", "Der Vertrag, der für die Dauer von 50 Jahren geschlossen worden war, lief am 23. Juli 2002 aus und wurde nicht verlängert."]} 1 +2020-11-11 18:47:13.222069 2020-11-11 18:47:13.222074 de36ea70-7be9-4b74-a7d7-458b782acf08 {"md5": "764be174958b583d59d17eb9f528e665", "pid": "969004222", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Organisation", "conference": true, "preferred_name": "Congrès Littéraire International", "country_associated": "fr", "authorized_access_point": "Congrès Littéraire International, 1878, Paris"} 1 +2020-11-11 18:47:14.514503 2020-11-11 18:47:14.514509 3fdec179-a42d-49cc-8949-66fed9851247 {"md5": "02728606dfedd5e44e290637a2f15c31", "pid": "122101359", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "variant_name": ["Chapron, Nicolas", "Chapperon, Nicolas", "Chappron, Nicolas", "Chapron, Nicolaus"], "date_of_birth": "1612", "date_of_death": "1653", "preferred_name": "Chaperon, Nicolas", "country_associated": "fr", "variant_access_point": ["Chapron, Nicolas, 1612-1653", "Chapperon, Nicolas, 1612-1653", "Chappron, Nicolas, 1612-1653", "Chapron, Nicolaus, 1612-1653"], "authorized_access_point": "Chaperon, Nicolas, 1612-1653", "biographical_information": ["Franz. Maler, Stecher und Zeichner"]} 1 +2020-11-11 18:47:16.104832 2020-11-11 18:47:16.104836 e5c31145-0668-41bc-95c3-beae774843bf {"md5": "cebecd01b2375b95f3cd1e2cf8e20fdf", "pid": "1032371390", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Organisation", "conference": false, "variant_name": ["Les Bélaisières et les Doudous de la Grande-Terre"], "preferred_name": "Les Bélaisières et les Doudous de la Grande Terre", "country_associated": "fr", "variant_access_point": ["Les Bélaisières et les Doudous de la Grande-Terre"], "authorized_access_point": "Les Bélaisières et les Doudous de la Grande Terre"} 1 +2020-11-11 18:47:18.16379 2020-11-11 18:47:18.163796 f6ed8464-1fb5-48fe-be7d-3379fcf69ca6 {"md5": "357c17f7ee09c8d8d3ef9207adc0671f", "pid": "00401653X", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Organisation", "conference": false, "variant_name": ["Federal Association of Company Health Insurance Funds", "Association of Company Health Insurance Funds", "BKK-Bundesverband", "BKK Bundesverband", "Bundesverband der BKK", "BdB", "BKK-BV", "BKK"], "preferred_name": "Bundesverband der Betriebskrankenkassen", "country_associated": "gw", "date_of_termination": "31.12.2013", "variant_access_point": ["Federal Association of Company Health Insurance Funds", "Association of Company Health Insurance Funds", "BKK-Bundesverband", "BKK Bundesverband", "Bundesverband der BKK", "BdB. Abkuerzung", "BKK-BV. Abkuerzung", "BKK. Abkuerzung"], "authorized_access_point": "Bundesverband der Betriebskrankenkassen"} 1 +2020-11-11 18:47:20.029398 2020-11-11 18:47:20.029404 1b08e0ae-2fc5-4e10-9620-2d83fbf3593e {"md5": "38d94c7e0499ba6fc73da9dcc08f7571", "pid": "00421952X", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Organisation", "conference": false, "variant_name": ["Université de Paris-Sorbonne. Institut de Recherche sur les Civilisations de l'Occident Moderne", "Université de Paris-Sorbonne. Institut de Recherches sur les Civilisations de l'Occident Moderne", "Institut des Recherches sur les Civilisations de l'Occident Moderne", "Université de Paris-Sorbonne. Institut des Recherches sur les Civilisations de l'Occident Moderne", "Université de Paris-Sorbonne. Institut des Recherches sur les Civilisations de l'Occident Moderne", "IRCOM", "Institut de Recherches sur les Civilisations de l'Occident Moderne", "Université de Paris IV. Institut de Recherche sur les Civilisations de l'Occident Moderne", "Université de Paris IV. Institut de Recherches sur les Civilisations de l'Occident Moderne", "Université de Paris IV: Paris-Sorbonne. Institut de recherches sur les civilisations de l'Occident moderne", "Université de Paris IV: Paris-Sorbonne. Institut de recherches sur la civilisation de l'Occident moderne", "Université de Paris IV: Paris-Sorbonne. Institut de recherches sur l'Occident moderne", "Institut de recherches sur les civilisations de l'Occident moderne", "Institut de recherches sur la civilisation de l'Occident moderne", "Université de Paris IV: Paris-Sorbonne. Institut de recherche sur les civilisations de l'Occident moderne", "IRCOM"], "preferred_name": "Institut de Recherche sur les Civilisations de l'Occident Moderne", "country_associated": "fr", "variant_access_point": ["Université de Paris-Sorbonne. Institut de Recherche sur les Civilisations de l'Occident Moderne", "Université de Paris-Sorbonne. Institut de Recherches sur les Civilisations de l'Occident Moderne", "Institut des Recherches sur les Civilisations de l'Occident Moderne. Paris", "Université de Paris-Sorbonne. Institut des Recherches sur les Civilisations de l'Occident Moderne", "Université de Paris-Sorbonne. Institut des Recherches sur les Civilisations de l'Occident Moderne. Paris", "IRCOM. Abkuerzung", "Institut de Recherches sur les Civilisations de l'Occident Moderne. Paris", "Université de Paris IV. Institut de Recherche sur les Civilisations de l'Occident Moderne", "Université de Paris IV. Institut de Recherches sur les Civilisations de l'Occident Moderne", "Université de Paris IV: Paris-Sorbonne. Institut de recherches sur les civilisations de l'Occident moderne", "Université de Paris IV: Paris-Sorbonne. Institut de recherches sur la civilisation de l'Occident moderne", "Université de Paris IV: Paris-Sorbonne. Institut de recherches sur l'Occident moderne", "Institut de recherches sur les civilisations de l'Occident moderne. Université de Paris IV: Paris-Sorbonne", "Institut de recherches sur la civilisation de l'Occident moderne. Université de Paris IV: Paris-Sorbonne", "Université de Paris IV: Paris-Sorbonne. Institut de recherche sur les civilisations de l'Occident moderne", "IRCOM. Institut de recherches sur les civilisations de l'Occident moderne"], "authorized_access_point": "Institut de Recherche sur les Civilisations de l'Occident Moderne. Paris"} 1 +2020-11-11 18:47:21.196649 2020-11-11 18:47:21.196654 e65b3b07-8cae-419a-b665-06948174cdfc {"md5": "0702b3914d78ca6142e81de630a652ca", "pid": "951795597", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Organisation", "conference": false, "variant_name": ["GN'R", "Guns and Roses"], "preferred_name": "Guns n' Roses", "country_associated": "xxu", "variant_access_point": ["GN'R. Abkuerzung", "Guns and Roses. Musikgruppe"], "date_of_establishment": "1985", "parallel_access_point": ["Guns n' Roses (Musical group)"], "authorized_access_point": "Guns n' Roses. Musikgruppe", "biographical_information": ["Hardrock-Band in wechselnder Besetzung um Axl Rose"]} 1 +2020-11-11 18:47:24.634321 2020-11-11 18:47:24.634326 c409eda1-066c-4bff-80f2-a63c06f889de {"md5": "bf8f042bc02fe594b9de7e25436fc2d7", "pid": "008046662", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Organisation", "conference": true, "preferred_name": "Congrès de Psychiatrie et de Neurologie de Langue Française, 78", "country_associated": "fr", "authorized_access_point": "Congrès de Psychiatrie et de Neurologie de Langue Française, 78, 1980, Reims"} 1 +2020-11-11 18:47:25.698713 2020-11-11 18:47:25.698718 a5270ffe-9690-4586-b0a3-53a663c8cd9e {"md5": "876f6a89592f3ce910d82edd114732ec", "pid": "1020174943", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "variant_name": ["Antin, Louis Antoine de Pardaillan de Gondrin d'", "Gondrin d'Antin, Louis Antoine de Pardaillan de", "Pardaillan de Gondrin, Louis Antoine de"], "date_of_birth": "05.09.1665", "date_of_death": "02.11.1736", "preferred_name": "Pardaillan de Gondrin d'Antin, Louis Antoine de", "country_associated": "fr", "variant_access_point": ["Antin, Louis Antoine de Pardaillan de Gondrin d', 1665-1736", "Gondrin d'Antin, Louis Antoine de Pardaillan de, 1665-1736", "Pardaillan de Gondrin, Louis Antoine de, 1665-1736"], "authorized_access_point": "Pardaillan de Gondrin d'Antin, Louis Antoine de, 1665-1736", "biographical_information": ["Sohn der Madame de Montespan mit Louis-Henri de Montespan; 1701 kgl. Generalleutnant des Elsaß; 1707 Gouverneur des Orléanais; Directeur des Bâtiments du Roi, 1708-1736"]} 1 +2020-11-11 18:47:26.940255 2020-11-11 18:47:26.940261 f2cda2c3-9536-444a-a9fa-113b58fbb3c2 {"md5": "159c51ed378299fb9c3eca025dba667b", "pid": "007430779", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Organisation", "conference": false, "variant_name": ["Generaldirektion Wissenschaft", "Direcção-Geral de Estudos", "Generaldirektoratet for Forskning", "Directorate General for Research", "Dirección General de Estudios", "Direction Générale des Etudes", "Direzione Generale degli Studi", "Directoraat-Generaal Studiedienst", "Direction Générale de la Recherche", "Directoraat-Generaal Onderzoek", "Direzione Generale della Ricerca", "Genikē Dieuthunsē Meletōn", "Europäisches Parlament. Generalsekretariat. Generaldirektion Wissenschaft"], "preferred_name": "Europäisches Parlament. Generaldirektion Wissenschaft", "date_of_termination": "XX.10.1993", "variant_access_point": ["Generaldirektion Wissenschaft", "Direcção-Geral de Estudos", "Generaldirektoratet for Forskning", "Directorate General for Research", "Dirección General de Estudios", "Direction Générale des Etudes", "Direzione Generale degli Studi", "Directoraat-Generaal Studiedienst", "Direction Générale de la Recherche", "Directoraat-Generaal Onderzoek", "Direzione Generale della Ricerca", "Genikē Dieuthunsē Meletōn", "Europäisches Parlament. Generalsekretariat. Generaldirektion Wissenschaft"], "date_of_establishment": "XX.XX.1985", "authorized_access_point": "Europäisches Parlament. Generaldirektion Wissenschaft"} 1 +2020-11-11 18:47:28.00316 2020-11-11 18:47:28.003166 95075309-9949-4f1e-9f57-cc2d0fe698bb {"md5": "312a56bd7fa97c29bedb524106665d9f", "pid": "050534696", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Organisation", "conference": false, "variant_name": ["Chemin de fer d'Orléans", "Compagnie d'Orléans", "PO"], "preferred_name": "Compagnie du Chemin de Fer de Paris à Orléans", "country_associated": "fr", "date_of_termination": "31.12.1937", "variant_access_point": ["Chemin de fer d'Orléans", "Compagnie d'Orléans", "PO. Abkuerzung"], "date_of_establishment": "13.08.1838", "authorized_access_point": "Compagnie du Chemin de Fer de Paris à Orléans"} 1 +2020-11-11 18:47:29.637085 2020-11-11 18:47:29.63709 946d4637-f7c7-4ee1-be95-efcd3ba04e1e {"md5": "a9da34766e9a6db0b5789665d1c39ade", "pid": "143032704", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "variant_name": ["Soyarslan, Cigdem"], "date_of_birth": "27.03.1983", "preferred_name": "Soyarslan, Ciğdem", "country_associated": "tu", "variant_access_point": ["Soyarslan, Cigdem, 1983-"], "authorized_access_point": "Soyarslan, Ciğdem, 1983-"} 1 +2020-11-11 18:47:30.312125 2020-11-11 18:47:30.31213 6c5ce93f-d2c1-48a6-8434-1a80b56053e1 {"md5": "36b20e443f8b5ba67f37ef7403cfbe83", "pid": "118095617", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "variant_name": ["Ambly, Paul Boiteau d'", "Boiteau, Paul", "Boiteau D'Ambly, Dieudonné Alexandre Paul", "Ambly, Dieudonné Alexandre Paul Boiteau d'", "Boiteau, Dieudonné Alexandre Paul", "Boiteau, Dieudonné-Alexandre-Paul"], "date_of_birth": "25.11.1830", "date_of_death": "11.06.1886", "preferred_name": "Boiteau D'Ambly, Paul", "country_associated": "fr", "variant_access_point": ["Ambly, Paul Boiteau d', 1830-1886", "Boiteau, Paul, 1830-1886", "Boiteau D'Ambly, Dieudonné Alexandre Paul, 1830-1886", "Ambly, Dieudonné Alexandre Paul Boiteau d', 1830-1886", "Boiteau, Dieudonné Alexandre Paul, 1830-1886", "Boiteau, Dieudonné-Alexandre-Paul, 1830-1886"], "authorized_access_point": "Boiteau D'Ambly, Paul, 1830-1886"} 1 +2020-11-11 18:47:31.548461 2020-11-11 18:47:31.548467 053b468e-4b94-476e-b3c6-cfc724de58e7 {"md5": "d0dedee1386074feb6b957dd545df78d", "pid": "104189576", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "qualifier": "Spanien, Königin, 1662-1689", "variant_name": ["Marie Luise, Espagne, reine", "Marie-Louise, Espagne, reine", "Marie Louise, d'Orléans", "Marie-Louise, d'Orléans", "María Luisa, de Orleáns", "María Luisa, de Orleans", "Maria Luisa, Spagna, Regina", "María Luisa, España, reina, 1662-1689"], "date_of_birth": "27.03.1662", "date_of_death": "12.02.1689", "preferred_name": "Maria Luisa, Spanien, Königin, 1662-1689", "country_associated": "sp", "variant_access_point": ["Marie Luise, Espagne, reine, 1662-1689", "Marie-Louise, Espagne, reine, 1662-1689", "Marie Louise, d'Orléans, 1662-1689", "Marie-Louise, d'Orléans, 1662-1689", "María Luisa, de Orleáns, 1662-1689", "María Luisa, de Orleans, 1662-1689", "Maria Luisa, Spagna, Regina, 1662-1689", "María Luisa, España, reina, 1662-1689, 1662-1689"], "authorized_access_point": "Maria Luisa, Spanien, Königin, 1662-1689, 1662-1689"} 1 +2020-11-11 18:47:34.2378 2020-11-11 18:47:34.237805 68efe7ad-6b2e-4bc6-891d-75979a35fb32 {"md5": "deea413c05bda81ca161f7726728f990", "pid": "1089786255", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "variant_name": ["Cailler, Rodolphe"], "date_of_birth": "1561", "date_of_death": "1620", "preferred_name": "Cailler, Raoul", "variant_access_point": ["Cailler, Rodolphe, 1561-1620"], "authorized_access_point": "Cailler, Raoul, 1561-1620", "biographical_information": ["Dichter, Advokat im Parlament von Paris; aus Poitiers"]} 1 +2020-11-11 18:47:35.869012 2020-11-11 18:47:35.869028 f512e660-33bb-492f-8118-2cbec57efdc3 {"md5": "425c6a82d586fd1f21789146accd79bc", "pid": "1117819884", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "qualifier": "da San Giuseppe","variant_name": ["Ange, de Saint-Joseph", "Angelo, da Utri", "Angelus, a S. Ioseph", "Angelus, a S. Joseph", "Angelus, a Sancto Josepho", "Angelus, a S. Josepho", "Saint-Joseph, Ange de", "San Giuseppe, Angelo da", "Sancto-Josepho, Angelus a", "Angelo, da San Giuseppe Ligure", "San Giuseppe Ligure, Angelo da", "Utri, Angelo da"], "date_of_birth": "1600", "preferred_name": "Angelo, da San Giuseppe", "country_associated": "it", "variant_access_point": ["Ange, de Saint-Joseph, 1600-", "Angelo, da Utri, 1600-", "Angelus, a S. Ioseph, 1600-", "Angelus, a S. Joseph, 1600-", "Angelus, a Sancto Josepho, 1600-", "Angelus, a S. Josepho, 1600-", "Saint-Joseph, Ange de, 1600-", "San Giuseppe, Angelo da, 1600-", "Sancto-Josepho, Angelus a, 1600-", "Angelo, da San Giuseppe Ligure, 1600-", "San Giuseppe Ligure, Angelo da, 1600-", "Utri, Angelo da, 1600-"], "authorized_access_point": "Angelo, da San Giuseppe, 1600-", "biographical_information": ["OCD 1617; Novizenmeister"]} 1 +2020-11-11 18:47:36.314256 2020-11-11 18:47:36.314261 c16acd31-db3f-42e3-b98f-c2d7d3e150a2 {"md5": "ca8a834ebd976880ec6d831e4d9b6980", "pid": "051062763", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Organisation", "conference": false, "preferred_name": "Institut d'Administration des Entreprises", "country_associated": "fr", "authorized_access_point": "Institut d'Administration des Entreprises. Rennes"} 1 +2020-11-11 18:47:37.549447 2020-11-11 18:47:37.549453 52791c58-df5e-4bde-8062-ccdef771866e {"md5": "5dcc2a35d57dd302ab480b5fcdbc5381", "pid": "1055101586", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "variant_name": ["Ormonde, ... of", "Ormonde, James Edward William Theobald Butler of"], "date_of_birth": "1844", "date_of_death": "1919", "preferred_name": "Butler, James Edward William Theobald", "country_associated": "xxk", "variant_access_point": ["Ormonde, ... of, 1844-1919", "Ormonde, James Edward William Theobald Butler of, 1844-1919"], "authorized_access_point": "Butler, James Edward William Theobald, 1844-1919"} 1 +2020-11-11 18:47:39.779473 2020-11-11 18:47:39.779479 c2735121-c996-4ced-b121-fcc3a6950f2c {"md5": "82270d369e01f3d91b8e9312a0225e58", "pid": "130672289", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "variant_name": ["Cabannes Cauna, Bernard Augustin Henri Timothée de", "Cabannes de Cauna, Bernard Augustin Henri Timothée", "Cauna, Bernard Augustin de", "Cabannes, Bernard Augustin de Cauna", "Cauna, Bernard Augustin Henry Timothée de Cabannes de"], "date_of_birth": "1822", "date_of_death": "1883", "preferred_name": "Cauna, Bernard Augustin Henri Timothée de Cabannes de", "variant_access_point": ["Cabannes Cauna, Bernard Augustin Henri Timothée de, 1822-1883", "Cabannes de Cauna, Bernard Augustin Henri Timothée, 1822-1883", "Cauna, Bernard Augustin de, 1822-1883", "Cabannes, Bernard Augustin de Cauna, 1822-1883", "Cauna, Bernard Augustin Henry Timothée de Cabannes de, 1822-1883"], "authorized_access_point": "Cauna, Bernard Augustin Henri Timothée de Cabannes de, 1822-1883"} 1 +2020-11-11 18:47:40.685181 2020-11-11 18:47:40.685187 b09a649e-263d-44d0-8d01-a9e3bb6145c0 {"md5": "d3a2923e7fe2f761ef3b510d12b68898", "pid": "1073132285", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "date_of_birth": "08.10.1758", "date_of_death": "17.09.1832", "preferred_name": "Carelli, Francesco", "country_associated": "it", "authorized_access_point": "Carelli, Francesco, 1758-1832"} 1 +2020-11-11 18:47:41.567503 2020-11-11 18:47:41.567509 d8317fea-3a97-44ee-af93-9f6388af00b9 {"md5": "b6e9429acdb81db81b1efaa85dae04d8", "pid": "100023754", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "qualifier": "de Barbanson", "variant_name": ["Konstantin, von Barbanson", "Barbanson, Konstantin von", "Constantine, of Barbanson", "Barbanson, Constantine", "Barbanson, Constantin de", "Constantinus, de Barbanson", "Barbanson, Constantinus de", "Constantinus, a Barbençon", "Constantin, de Barbançon", "Barbançon, Constantin de", "Constantin, de Barbençon", "Barbençon, Constantin de", "Paunet, Théodoric", "Paunet, Theodoricus", "Barbançon, Konstantyn"], "date_of_birth": "1582", "date_of_death": "26.11.1631", "preferred_name": "Constantin, de Barbanson", "country_associated": "ne", "variant_access_point": ["Konstantin, von Barbanson, 1582-1631", "Barbanson, Konstantin von, 1582-1631", "Constantine, of Barbanson, 1582-1631", "Barbanson, Constantine, 1582-1631", "Barbanson, Constantin de, 1582-1631", "Constantinus, de Barbanson, 1582-1631", "Barbanson, Constantinus de, 1582-1631", "Constantinus, a Barbençon, 1582-1631", "Constantin, de Barbançon, 1582-1631", "Barbançon, Constantin de, 1582-1631", "Constantin, de Barbençon, 1582-1631", "Barbençon, Constantin de, 1582-1631", "Paunet, Théodoric, 1582-1631", "Paunet, Theodoricus, 1582-1631", "Barbançon, Konstantyn, 1582-1631"], "authorized_access_point": "Constantin, de Barbanson, 1582-1631", "biographical_information": ["Prediger in Köln; OFMCap; geb. in Barbançon (Hainaut, Belgien)"]} 1 +2020-11-11 18:47:44.942613 2020-11-11 18:47:44.942618 3600248e-fbc7-4e83-8bd4-b6824045bb72 {"md5": "cc5b6e556728b5e7801e33bbafb9ad23", "pid": "1053083351", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "variant_name": ["Alfaro Lafuente, Manuel Ibo", "Alfaro y Lafuente, Manuel Ibo", "Alfaro, Manuel Ibo", "Ibo Alfaro y Lafuente, Manuel", "Ibo Alfaro, Manuel", "Ibo, Manuel"], "date_of_birth": "1828", "date_of_death": "1885", "preferred_name": "Ibo Alfaro Lafuente, Manuel", "country_associated": "sp", "variant_access_point": ["Alfaro Lafuente, Manuel Ibo, 1828-1885", "Alfaro y Lafuente, Manuel Ibo, 1828-1885", "Alfaro, Manuel Ibo, 1828-1885", "Ibo Alfaro y Lafuente, Manuel, 1828-1885", "Ibo Alfaro, Manuel, 1828-1885", "Ibo, Manuel, 1828-1885"], "authorized_access_point": "Ibo Alfaro Lafuente, Manuel, 1828-1885"} 1 +2020-11-11 18:47:46.819455 2020-11-11 18:47:46.819461 834eb109-caee-48c1-8d3d-a97b4607df25 {"md5": "84e51d7ee7be9178f66a7585eb6aa6c5", "pid": "129943495", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "variant_name": ["Arnoult, Alexis Étienne Pierre Henri", "Arnoult, Alexis E."], "date_of_birth": "1782", "date_of_death": "1860", "preferred_name": "Arnoult, Stephen", "variant_access_point": ["Arnoult, Alexis Étienne Pierre Henri, 1782-1860", "Arnoult, Alexis E., 1782-1860"], "authorized_access_point": "Arnoult, Stephen, 1782-1860", "biographical_information": ["Französ. Schriftsteller"]} 1 +2020-11-11 18:47:47.746688 2020-11-11 18:47:47.746693 db42b898-bea6-4589-9eba-a4ec14125697 {"md5": "e3e17e2a5102b26d39af8d07649abb11", "pid": "11669355X", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "variant_name": ["Franchi de Cavalieri, Pio", "Cavalieri, Pio Franchi de", "Franchi De'Cavalieri, Pio P.", "Franchi De'Cavalieri, Pietro", "Franchi-De'Cavalieri, Pio", "De'Cavalieri, Pio Franchi", "DeCavalieri, Pius Franchi", "De'Cavalieri, Pio F.", "Cavalieri, Franchi de", "Franchi de Cavalieri, Pius", "Franchi de Cavallieri, Pio", "Cavallieri, Pio Franchi de", "Cavalieri, Pio F. de'", "Cavalieri, Pio F.", "Franchi di Cavalieri, Pius", "Franchi de' Cavalieri, Pio", "Franchi de'Cavalieri, Pius", "Franchi de' Cavalieri, Pius", "Cavalieri, Pio Franchi de'", "Cavalieri, Pius Franchi de'", "Franchi De'Cavalieri, Pio Pietro"], "date_of_birth": "1869", "date_of_death": "1960", "preferred_name": "Franchi de'Cavalieri, Pio", "country_associated": "it", "variant_access_point": ["Franchi de Cavalieri, Pio, 1869-1960", "Cavalieri, Pio Franchi de, 1869-1960", "Franchi De'Cavalieri, Pio P., 1869-1960", "Franchi De'Cavalieri, Pietro, 1869-1960", "Franchi-De'Cavalieri, Pio, 1869-1960", "De'Cavalieri, Pio Franchi, 1869-1960", "DeCavalieri, Pius Franchi, 1869-1960", "De'Cavalieri, Pio F., 1869-1960", "Cavalieri, Franchi de, 1869-1960", "Franchi de Cavalieri, Pius, 1869-1960", "Franchi de Cavallieri, Pio, 1869-1960", "Cavallieri, Pio Franchi de, 1869-1960", "Cavalieri, Pio F. de', 1869-1960", "Cavalieri, Pio F., 1869-1960", "Franchi di Cavalieri, Pius, 1869-1960", "Franchi de' Cavalieri, Pio, 1869-1960", "Franchi de'Cavalieri, Pius, 1869-1960", "Franchi de' Cavalieri, Pius, 1869-1960", "Cavalieri, Pio Franchi de', 1869-1960", "Cavalieri, Pius Franchi de', 1869-1960", "Franchi De'Cavalieri, Pio Pietro, 1869-1960"], "authorized_access_point": "Franchi de'Cavalieri, Pio, 1869-1960", "biographical_information": ["Ital. Klass. Archäologe und Paläograph", "Studium der Philologie an der Universität Rom, 1921-1925 und 1927-1930 Präsident der päpstlichen archäologischen Akademie in Rom, Kustos an der Vatikanischen Bibliothek, 1929-1931 Leutnant des Souveränen Malteserordens., http://www.pacelli-edition.de/Biographie/427"]} 1 +2020-11-11 18:47:48.908206 2020-11-11 18:47:48.908212 2a2ad568-8bb7-4dd3-b766-b476e3f4cb12 {"md5": "729068e05f9658616b4d7f190a937bb6", "pid": "119291088", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "language": ["lat"], "qualifier": "Mamertus", "variant_name": ["Claudianus Ecdicius, Mamertus", "Claudianus, Viennensis", "Mamertus, Presbyter", "Mamertus, Viennensis", "Claudianus, Rhetor", "Claudianus, Philosoph", "Claudianus, von Vienne", "Mamertus, Claudius Ecdicius", "Ecdicius Mamertus, Claudianus", "Mamertus Claudianus, Presbyter", "Mamertus Claudianus, Viennensis", "Mamertus, Claudianus Ecdicius", "Claudianus Mamertus, Viennensis", "Claudianus Mamertus, Gallia, Presbyter", "Mam. Claud.", "Claudianus, Christian Writer", "Claudianus, Presbyter", "Mamerto, Claudiano", "Mamertinus, Claudius", "Mamertinus, ...", "Mamertus, Claudianus", "Claudianus Mamertus"], "date_of_death": "474", "preferred_name": "Claudianus, Mamertus", "variant_access_point": ["Claudianus Ecdicius, Mamertus, -474", "Claudianus, Viennensis, -474", "Mamertus, Presbyter, -474", "Mamertus, Viennensis, -474", "Claudianus, Rhetor, -474", "Claudianus, Philosoph, -474", "Claudianus, von Vienne, -474", "Mamertus, Claudius Ecdicius, -474", "Ecdicius Mamertus, Claudianus, -474", "Mamertus Claudianus, Presbyter, -474", "Mamertus Claudianus, Viennensis, -474", "Mamertus, Claudianus Ecdicius, -474", "Claudianus Mamertus, Viennensis, -474", "Claudianus Mamertus, Gallia, Presbyter, -474", "Mam. Claud., -474", "Claudianus, Christian Writer, -474", "Claudianus, Presbyter, -474", "Mamerto, Claudiano, -474", "Mamertinus, Claudius, -474", "Mamertinus, ..., -474", "Mamertus, Claudianus, -474", "Claudianus Mamertus, -474"], "authorized_access_point": "Claudianus, Mamertus, -474", "biographical_information": ["Rhetor, Philosoph u. Priester in Vienne"]} 1 +2020-11-11 18:47:49.888742 2020-11-11 18:47:49.888748 bb5e6d09-72f0-448e-b7c0-069dae07e7b1 {"md5": "c4490b7c0025ff2c85a878459bfebb7f", "pid": "117588768", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "variant_name": ["Bernard, William Baile", "Bernard, William B.", "Bernard, William Bayle"], "date_of_birth": "1807", "date_of_death": "1875", "preferred_name": "Bernard, Bayle", "country_associated": "xxk", "variant_access_point": ["Bernard, William Baile, 1807-1875", "Bernard, William B., 1807-1875", "Bernard, William Bayle, 1807-1875"], "authorized_access_point": "Bernard, Bayle, 1807-1875"} 1 +2020-11-11 18:47:50.635377 2020-11-11 18:47:50.635383 1da586fd-6438-43c4-9518-5c55595259ec {"md5": "1451bf6d8aa9e750ff0780a44e8c8527", "pid": "117671533", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "variant_name": ["Bagnano, Georgio Libri-", "Libri Bagnano, Georgio"], "date_of_birth": "1780", "date_of_death": "1835", "preferred_name": "Libri-Bagnano, Georgio", "country_associated": "gw", "variant_access_point": ["Bagnano, Georgio Libri-, 1780-1835", "Libri Bagnano, Georgio, 1780-1835"], "authorized_access_point": "Libri-Bagnano, Georgio, 1780-1835"} 1 +2020-11-11 18:47:51.804523 2020-11-11 18:47:51.804529 c99d598a-85cc-4280-8bdd-35fdd44c432c {"md5": "b1420914569198b30b43eee0c9d72ca9", "pid": "172759757", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "variant_name": ["Arnoudt, Pierre Joseph", "Arnoudt, Pierre", "Arnold, Petrus", "Arnoudt, P. J.", "Arnoudt, P.", "Arnold, P. J.", "Arnold, Peter J.", "Arnold, Peter Joseph", "Arnold, Joseph", "Arnold, J.", "Arnoudt, Petrus", "Aernoudt, Pierre", "Arnoudt, Peter J.", "Arnoudt, Pierre Jean", "Arnold, Pierre", "Arnold, Josef"], "date_of_birth": "11.05.1811", "date_of_death": "29.07.1865", "preferred_name": "Arnoudt, Pierre J.", "variant_access_point": ["Arnoudt, Pierre Joseph, 1811-1865", "Arnoudt, Pierre, 1811-1865", "Arnold, Petrus, 1811-1865", "Arnoudt, P. J., 1811-1865", "Arnoudt, P., 1811-1865", "Arnold, P. J., 1811-1865", "Arnold, Peter J., 1811-1865", "Arnold, Peter Joseph, 1811-1865", "Arnold, Joseph, 1811-1865", "Arnold, J., 1811-1865", "Arnoudt, Petrus, 1811-1865", "Aernoudt, Pierre, 1811-1865", "Arnoudt, Peter J., 1811-1865", "Arnoudt, Pierre Jean, 1811-1865", "Arnold, Pierre, 1811-1865", "Arnold, Josef, 1811-1865"], "authorized_access_point": "Arnoudt, Pierre J., 1811-1865", "biographical_information": ["Vollständiger Vorname: Peter Joseph"]} 1 +2020-11-11 18:47:53.006794 2020-11-11 18:47:53.006799 fe35f923-51f5-4912-b700-cb60412d3fde {"md5": "aacd4184aa47315350ac6e210af4856d", "pid": "1056901632", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "variant_name": ["Aranton D'Alex, Giovanni d'", "Alex, Jean d'Aranton d'", "Alex, Giovanni d'Aranton d'", "Arenthon, Jean d‘Alex", "Arenthon d'Alex, Jean d', Bischof von Genf", "Alex, Jean d'Arenthon d', Bischof von Genf", "Jean, Bischof von Genf"], "date_of_birth": "1620", "date_of_death": "1695", "preferred_name": "Aranthon D'Alex, Jean d'", "country_associated": "sz", "variant_access_point": ["Aranton D'Alex, Giovanni d', 1620-1695", "Alex, Jean d'Aranton d', 1620-1695", "Alex, Giovanni d'Aranton d', 1620-1695", "Arenthon, Jean d‘Alex, 1620-1695", "Arenthon d'Alex, Jean d', Bischof von Genf, 1620-1695", "Alex, Jean d'Arenthon d', Bischof von Genf, 1620-1695", "Jean, Bischof von Genf, 1620-1695"], "authorized_access_point": "Aranthon D'Alex, Jean d', 1620-1695", "biographical_information": ["Bischof von Genf"]} 1 +2020-11-11 18:48:02.215132 2020-11-11 18:48:02.215137 b2c373b1-1be0-4d4c-9ddc-81dafc7397f9 {"md5": "67f3bc022f12466ec7a69bda7ed8c000", "pid": "1019749911", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "variant_name": ["Bourbon, Charles de", "Charles, Soissons, Comte"], "date_of_birth": "03.11.1566", "date_of_death": "01.11.1612", "preferred_name": "Soissons, Charles de Bourbon de", "variant_access_point": ["Bourbon, Charles de, 1566-1612", "Charles, Soissons, Comte, 1566-1612"], "authorized_access_point": "Soissons, Charles de Bourbon de, 1566-1612", "biographical_information": ["Ältester Sohn von Louis de Bourbon, 1. prince de Condé (1530-69) aus 2. Ehe mit Eléonore-Françoise d'Orléans-Longueville (1549-1601); heiratete 1601 Anne comtesse de Montafié (1577-1644); Parteigänger zuerst der Ligue u. König Heinrichs III., dann Heinrichs von Navarra (der ihm jedoch die Heirat mit seiner Schwester Catherine versagte); 1602 Gouverneur des Dauphiné, 1610 der Normandie."]} 1 +2020-11-11 18:47:55.109117 2020-11-11 18:47:55.109123 a594d246-e2e4-4ad3-be5b-333e25fe78be {"md5": "8356eb52401765320b07a62fecd51868", "pid": "118666762", "gender": "male", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "variant_name": ["Camerarius, Rudolf Jacob", "Camerarius, Rudolph Jakob", "Camerarius, Rudolph Jacob", "Camerer, Rudolf Jakob", "Camerer, Rudolph Jacob", "Camerarius, R. J.", "Camerarius, Rudolf", "Camerarius, Jacob Rudolph", "Camerarius, Rudolphus J.", "Camerer, Rudolph Jakob", "Camerarius, Rudolphus Jacobus", "Camerer, Rudolf Jacob", "Camerarius, R.J.", "Hector, II."], "date_of_birth": "12.02.1665", "date_of_death": "11.09.1721", "preferred_name": "Camerarius, Rudolf Jakob", "country_associated": "gw", "variant_access_point": ["Camerarius, Rudolf Jacob, 1665-1721", "Camerarius, Rudolph Jakob, 1665-1721", "Camerarius, Rudolph Jacob, 1665-1721", "Camerer, Rudolf Jakob, 1665-1721", "Camerer, Rudolph Jacob, 1665-1721", "Camerarius, R. J., 1665-1721", "Camerarius, Rudolf, 1665-1721", "Camerarius, Jacob Rudolph, 1665-1721", "Camerarius, Rudolphus J., 1665-1721", "Camerer, Rudolph Jakob, 1665-1721", "Camerarius, Rudolphus Jacobus, 1665-1721", "Camerer, Rudolf Jacob, 1665-1721", "Camerarius, R.J., 1665-1721", "Hector, II., 1665-1721"], "parallel_access_point": ["Camerarius, Rudolf Jakob, 1665-1721"], "authorized_access_point": "Camerarius, Rudolf Jakob, 1665-1721", "biographical_information": ["Dt. Mediziner und Botaniker; Direktor des botanischen Gartens und Prof. der Botanik und der Medizin in Tübingen"]} 1 +2020-11-11 18:47:56.098906 2020-11-11 18:47:56.098912 3174c5e2-ea08-4607-9a28-e07742725504 {"md5": "452a1868155ffd2ada821d414e3d91a3", "pid": "119120674", "gender": "female", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "qualifier": "Preußen, Königin", "variant_name": ["Elisabeth Christine, Braunschweig-Bevern, Herzogin", "Elisabet Christine, Preußen, Königin", "Elisabeth Christina, Preußen, Königin", "Elisabeth Christine, Braunschweig-Wolfenbüttel-Bevern, Herzogin", "Elisabeth Christine, Braunschweig-Lüneburg-Bevern, Herzogin", "Elisabetha Christinae, Brunsvicum-Lunaeburgum, Ducissa", "Elisabeth Christine", "Elisabeth Christine, Braunschweig-Bevern, Prinzessin", "Elisabeth Christine, Braunschweig-Lüneburg, Herzogin", "Elisabeth Christine, Braunschweig-Lüneburg, Prinzessin", "Elisabetha Christiana, Preußen, Königin", "Elisabeth, Preußen, Königin"], "date_of_birth": "08.11.1715", "date_of_death": "13.01.1797", "preferred_name": "Elisabeth Christine, Preußen, Königin", "country_associated": "gw", "variant_access_point": ["Elisabeth Christine, Braunschweig-Bevern, Herzogin, 1715-1797", "Elisabet Christine, Preußen, Königin, 1715-1797", "Elisabeth Christina, Preußen, Königin, 1715-1797", "Elisabeth Christine, Braunschweig-Wolfenbüttel-Bevern, Herzogin, 1715-1797", "Elisabeth Christine, Braunschweig-Lüneburg-Bevern, Herzogin, 1715-1797", "Elisabetha Christinae, Brunsvicum-Lunaeburgum, Ducissa, 1715-1797", "Elisabeth Christine, 1715-1797", "Elisabeth Christine, Braunschweig-Bevern, Prinzessin, 1715-1797", "Elisabeth Christine, Braunschweig-Lüneburg, Herzogin, 1715-1797", "Elisabeth Christine, Braunschweig-Lüneburg, Prinzessin, 1715-1797", "Elisabetha Christiana, Preußen, Königin, 1715-1797", "Elisabeth, Preußen, Königin, 1715-1797"], "authorized_access_point": "Elisabeth Christine, Preußen, Königin, 1715-1797"} 1 +2020-11-11 18:47:57.013119 2020-11-11 18:47:57.013124 e67505cb-0c94-43d4-bef8-2fd1d2615a59 {"md5": "f96f8bf5ff7ce5c8ce580e631f3fbc0d", "pid": "124981933", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "variant_name": ["Saint-Morys, Etienne Bourgevin Vialard de", "Saint-Morys, Étienne Bourgelin Vialart de", "Saint-Morys, Vialart", "Vialart de Saint-Morys, Étienne Bourgevin", "Bourgevin Vialart de Saint-Morys, Étienne", "Vialard de Saint-Morys, Etienne Bourgevin", "Bourgevin Vialard de Saint-Morys, Etienne", "Saint-Morys, ... de", "St.-Morys, ... de", "Vialart-Saint-Morys, ... de", "Vialart-Saint-Morys, Étienne de", "Vialart de St.-Morys, ... de", "Vialart de Saint-Morys, ... de", "Vialart de St.-Morys, Étienne de", "Vialart de Saint-Morys, Étienne de", "Bourgevin Vialard, Étienne", "Vialard, Étienne Bourgevin"], "date_of_birth": "1772", "date_of_death": "1817", "preferred_name": "Saint-Morys, Étienne Bourgevin Vialart de", "variant_access_point": ["Saint-Morys, Etienne Bourgevin Vialard de, 1772-1817", "Saint-Morys, Étienne Bourgelin Vialart de, 1772-1817", "Saint-Morys, Vialart, 1772-1817", "Vialart de Saint-Morys, Étienne Bourgevin, 1772-1817", "Bourgevin Vialart de Saint-Morys, Étienne, 1772-1817", "Vialard de Saint-Morys, Etienne Bourgevin, 1772-1817", "Bourgevin Vialard de Saint-Morys, Etienne, 1772-1817", "Saint-Morys, ... de, 1772-1817", "St.-Morys, ... de, 1772-1817", "Vialart-Saint-Morys, ... de, 1772-1817", "Vialart-Saint-Morys, Étienne de, 1772-1817", "Vialart de St.-Morys, ... de, 1772-1817", "Vialart de Saint-Morys, ... de, 1772-1817", "Vialart de St.-Morys, Étienne de, 1772-1817", "Vialart de Saint-Morys, Étienne de, 1772-1817", "Bourgevin Vialard, Étienne, 1772-1817", "Vialard, Étienne Bourgevin, 1772-1817"], "authorized_access_point": "Saint-Morys, Étienne Bourgevin Vialart de, 1772-1817"} 1 +2020-11-11 18:47:58.297495 2020-11-11 18:47:58.2975 ced2c0b0-c64f-4c2c-8602-dc2340ea9903 {"md5": "56b1523e8b10cc5750ef98e9768a13e6", "pid": "12391664X", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "variant_name": ["Cavaleriis, Joannes Baptista de", "Cavalleris, Joannes Baptista de", "Cavaleriis, Joanes Baptista de", "Cavalleriis, Johannes Baptista de", "Cavalerius, Johannes Battista de", "Cavallerys, Johannes Baptista de", "Cavaleriis, Johannes Baptista de", "Cavalieri, Giovanni Battista de", "Cavallieri, Giovan Battista de", "Cavalleriis, Johannes Battista", "Cavallerius, Johannes Baptista", "Cavallerius, Joannes Baptista", "Cavalleriis, Johannes Baptista", "Cavallieri, Giovanni Battista", "Cavaleriis, Giovanni Battista", "Cavalleriis, Io. Baptista de", "Cavallieri, Giovanni Battista de", "Cavalerijs, Io. Baptista de", "Cavallieri, Giovanni B.", "Cavaleriis, Joannes B. de", "Cavallerius, Jo. B. de", "Cavalleriis, Joannes Baptista de", "Cavallerijs, Baptista de", "Cavalleriis, Giovanni Battista de", "Cavallieri, Giovanbattista de", "Cavallerius, Io. Bap.ta", "Cavalierii, Johannes Baptista de"], "date_of_birth": "ca. 1525", "date_of_death": "1601", "preferred_name": "Cavalieri, Giovanni Battista", "country_associated": "it", "variant_access_point": ["Cavaleriis, Joannes Baptista de, 1525-1601", "Cavalleris, Joannes Baptista de, 1525-1601", "Cavaleriis, Joanes Baptista de, 1525-1601", "Cavalleriis, Johannes Baptista de, 1525-1601", "Cavalerius, Johannes Battista de, 1525-1601", "Cavallerys, Johannes Baptista de, 1525-1601", "Cavaleriis, Johannes Baptista de, 1525-1601", "Cavalieri, Giovanni Battista de, 1525-1601", "Cavallieri, Giovan Battista de, 1525-1601", "Cavalleriis, Johannes Battista, 1525-1601", "Cavallerius, Johannes Baptista, 1525-1601", "Cavallerius, Joannes Baptista, 1525-1601", "Cavalleriis, Johannes Baptista, 1525-1601", "Cavallieri, Giovanni Battista, 1525-1601", "Cavaleriis, Giovanni Battista, 1525-1601", "Cavalleriis, Io. Baptista de, 1525-1601", "Cavallieri, Giovanni Battista de, 1525-1601", "Cavalerijs, Io. Baptista de, 1525-1601", "Cavallieri, Giovanni B., 1525-1601", "Cavaleriis, Joannes B. de, 1525-1601", "Cavallerius, Jo. B. de, 1525-1601", "Cavalleriis, Joannes Baptista de, 1525-1601", "Cavallerijs, Baptista de, 1525-1601", "Cavalleriis, Giovanni Battista de, 1525-1601", "Cavallieri, Giovanbattista de, 1525-1601", "Cavallerius, Io. Bap.ta, 1525-1601", "Cavalierii, Johannes Baptista de, 1525-1601"], "authorized_access_point": "Cavalieri, Giovanni Battista, 1525-1601", "biographical_information": ["Maler, Kupferstecher"]} 1 +2020-11-11 18:48:00.702078 2020-11-11 18:48:00.702083 953e561b-65ea-44b1-9c3b-7057eff2e5e1 {"md5": "b0385764c1529aa4d1762ae4ef521b1c", "pid": "1060580543", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "date_of_birth": "1851", "date_of_death": "1925", "preferred_name": "Avesne, E. d'", "country_associated": "fr", "authorized_access_point": "Avesne, E. d', 1851-1925"} 1 +2020-11-11 18:48:03.155396 2020-11-11 18:48:03.155401 56d8d096-c086-4edb-bb05-99e8f87d07cd {"md5": "79e50969e7f659769d8e7f7c922f3309", "pid": "1045857424", "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", "type": "bf:Person", "variant_name": ["Mérault De Bizy, Athanase René", "De Bizy, Athanase René Mérault", "DeBizy, Athanase René Mérault", "Bizy, Athanase René Mérault de"], "date_of_birth": "1744", "date_of_death": "1835", "preferred_name": "Mérault De Bizy, Athanase-René", "country_associated": "fr", "variant_access_point": ["Mérault De Bizy, Athanase René, 1744-1835", "De Bizy, Athanase René Mérault, 1744-1835", "DeBizy, Athanase René Mérault, 1744-1835", "Bizy, Athanase René Mérault de, 1744-1835"], "authorized_access_point": "Mérault De Bizy, Athanase-René, 1744-1835"} 1 diff --git a/tests/data/agrero_metadata.csv b/tests/data/agrero_metadata.csv index fbb49e5b..09cd09eb 100644 --- a/tests/data/agrero_metadata.csv +++ b/tests/data/agrero_metadata.csv @@ -1,20 +1,20 @@ -2020-11-11 18:47:04.887047 2020-11-11 18:47:04.887053 19964444-4942-47fe-884a-029333972efc {"md5": "a0899531d7e144d6fddf862902296756", "pid": "A017991779", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "type": "bf:Person", "identifier": "http://data.rero.ch/02-A017991779", "variant_name": ["Catalano, Giuseppe,", "Catalanus, Josephus,", "Catalani, Josephus,", "Catalano, Josepho,"], "date_of_birth": "1698", "date_of_death": "1764", "preferred_name": "Catalani, Giuseppe,", "variant_access_point": ["Catalano, Giuseppe, 1698-1764", "Catalanus, Josephus, 1698-1764", "Catalani, Josephus, 1698-1764", "Catalano, Josepho, 1698-1764"], "authorized_access_point": "Catalani, Giuseppe, 1698-1764", "biographical_information": ["Historien, théologien et juriste"]} 1 -2020-11-11 18:47:05.366713 2020-11-11 18:47:05.366718 6cd26476-2d78-41dd-aabe-1d6ea9ba0c69 {"md5": "f85ee7377ce74a69d30828a225752747", "pid": "A005591402", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "type": "bf:Person", "identifier": "http://data.rero.ch/02-A005591402", "variant_name": ["Amboise, Léon d'", "Léon, d'Amboise"], "preferred_name": "Guillemin, Léon", "variant_access_point": ["Amboise, Léon d'", "Léon, d'Amboise"], "authorized_access_point": "Guillemin, Léon", "biographical_information": ["Léon d'Amboise est le pseud. de Léon Guillemin"]} 1 -2020-11-11 18:47:11.125194 2020-11-11 18:47:11.125199 ea671539-7872-450b-8b5a-47c9b72c1e9f {"md5": "11f264777581fcb816a74c28d05553b5", "pid": "A000070488", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "type": "bf:Person", "identifier": "http://data.rero.ch/02-A000070488", "variant_name": ["Bonqueval, J.G. de"], "preferred_name": "Genty de Bonqueval, J", "variant_access_point": ["Bonqueval, J.G. de"], "authorized_access_point": "Genty de Bonqueval, J"} 1 -2020-11-11 18:47:12.785566 2020-11-11 18:47:12.785571 0e58f004-0810-4332-a75f-fb76cf131993 {"md5": "8490c0706e4d85befe6a1763153a64d8", "pid": "A009962747", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "type": "bf:Person", "type": "bf:Organisation", "conference": false, "identifier": "http://data.rero.ch/02-A009962747", "variant_name": ["European Coal and Steel Community", "Europäische Gemeinschaft für Kohle und Stahl", "Comunità europea del carbone e dell'acciaio", "CECA (Communauté européenne du charbon et de l'acier)", "ECSC (European Coal and Steel Community)", "EGKS (Europäische Gemeinschaft für Kohle und Stahl)"], "preferred_name": "Communauté européenne du charbon et de l'acier", "variant_access_point": ["European Coal and Steel Community", "Europäische Gemeinschaft für Kohle und Stahl", "Comunità europea del carbone e dell'acciaio", "CECA (Communauté européenne du charbon et de l'acier)", "ECSC (European Coal and Steel Community)", "EGKS (Europäische Gemeinschaft für Kohle und Stahl)"], "authorized_access_point": "Communauté européenne du charbon et de l'acier", "biographical_information": ["Sous le descripteur \\"COMMUNAUTE EUROPEENNE DU CHARBON ET DE L'ACIER\\", on trouve les documents traitant de l'organisation créée par le Traité de Paris (1951) jusqu'à sa dissolution en 2002", "Sous les descripteurs \\"COMMUNAUTE EUROPEENNE\\", \\"COMMUNAUTE EUROPEENNE DE L'ENERGIE ATOMIQUE\\" et \\"COMMUNAUTE EUROPEENNE DU CHARBON ET DE L'ACIER\\", on trouve uniquement les documents traitant spécifiquement de ces organisations, en particulier avant leur regroupement en 1967", "Sous le descripteur \\"COMMUNAUTES EUROPEENNES\\", on trouve les documents traitant de l'ensemble des Communautés, du Traité de fusion (1967) au Traité sur l'Union européenne (1993)"]} 1 -2020-11-11 18:47:17.263187 2020-11-11 18:47:17.263192 601a80a1-161b-4b34-a9a1-c83b16ac61cc {"md5": "9a84175e56df06dd9c4e9a564d34b5c4", "pid": "A005353099", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "type": "bf:Person", "type": "bf:Organisation", "conference": false, "identifier": "http://data.rero.ch/02-A005353099", "preferred_name": "Gürzenich-Orchester Kölner Philharmoniker", "authorized_access_point": "Gürzenich-Orchester Kölner Philharmoniker", "biographical_information": ["Jusqu'en 1986: Gürzenich-Orchester (Köln)", "Jusqu'en 1986: Kölner Philharmoniker", "Dès 1986: Gürzenich-Orchester Kölner Philharmoniker"]} 1 -2020-11-11 18:47:20.721829 2020-11-11 18:47:20.721834 f45e3c35-45b7-41d4-afae-ce49b41d6847 {"md5": "980b127758f806da1ad917589a594a12", "pid": "A005464637", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "type": "bf:Person", "type": "bf:Organisation", "conference": false, "identifier": "http://data.rero.ch/02-A005464637", "variant_name": ["Institut de recherches sur les civilisations de l'Occident moderne (Paris)", "Unité de recherches sur les civilisations de l'Occident moderne (Paris)", "URCOM (Unité de recherches sur les civilisations de l'Occident moderne) (Paris)"], "preferred_name": "Université de Paris 4. Institut de recherches sur les civilisations de l'Occident moderne", "variant_access_point": ["Institut de recherches sur les civilisations de l'Occident moderne (Paris)", "Unité de recherches sur les civilisations de l'Occident moderne (Paris)", "URCOM (Unité de recherches sur les civilisations de l'Occident moderne) (Paris)"], "authorized_access_point": "Université de Paris 4. Institut de recherches sur les civilisations de l'Occident moderne"} 1 -2020-11-11 18:47:25.260904 2020-11-11 18:47:25.260909 5ccce47c-40ab-4610-bfd2-258059f77bf0 {"md5": "f7c64698afa7f5653da5f6e2a471a4e4", "pid": "A012320736", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "type": "bf:Person", "type": "bf:Organisation", "conference": true, "identifier": "http://data.rero.ch/02-A012320736", "preferred_name": "Congrès de psychiatrie et de neurologie de langue française", "authorized_access_point": "Congrès de psychiatrie et de neurologie de langue française (78 : 1980 : Reims)"} 1 -2020-11-11 18:47:27.578557 2020-11-11 18:47:27.578562 2b4ca628-2933-4e43-ba6e-e9ed22c6d982 {"md5": "2b1a18ffab5e93b126d089d2e5379466", "pid": "A003671569", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "type": "bf:Person", "type": "bf:Organisation", "conference": false, "identifier": "http://data.rero.ch/02-A003671569", "variant_name": ["Parlement européen. DG4", "Parlement européen. Generaldirektion Wissenschaft", "Parlement européen. Directorate General for Research"], "preferred_name": "Parlement européen. Direction générale des études", "variant_access_point": ["Parlement européen. DG4", "Parlement européen. Generaldirektion Wissenschaft", "Parlement européen. Directorate General for Research"], "authorized_access_point": "Parlement européen. Direction générale des études"} 1 -2020-11-11 18:47:28.642561 2020-11-11 18:47:28.642567 f4e927d5-8194-4c96-9c65-31a7d2d36bfb {"md5": "85ad5ae7222d0f32634ce6691d1aad52", "pid": "A028240818", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "type": "bf:Person", "type": "bf:Organisation", "conference": false, "identifier": "http://data.rero.ch/02-A028240818", "variant_name": ["Compagnie PO", "Compagnie des chemins de fer de Paris à Orléans", "Compagnie des chemins de fer P. O. Midi", "Compagnie des chemins de fer d'Orléans et du Midi", "Chemin de fer d'Orléans", "Compagnie d'Orléans", "Compagnie du chemin de fer de Paris à Orléans"], "preferred_name": "Compagnie du chemin de fer de Paris à Orléans (Paris)", "variant_access_point": ["Compagnie PO", "Compagnie des chemins de fer de Paris à Orléans", "Compagnie des chemins de fer P. O. Midi", "Compagnie des chemins de fer d'Orléans et du Midi", "Chemin de fer d'Orléans", "Compagnie d'Orléans", "Compagnie du chemin de fer de Paris à Orléans"], "authorized_access_point": "Compagnie du chemin de fer de Paris à Orléans (Paris)"} 1 -2020-11-11 18:47:29.887129 2020-11-11 18:47:29.887134 4bc53cca-08c6-4615-acf7-684566d677ee {"md5": "9d9fe3b19e907d9c733bf1c4028b8da0", "pid": "A024285452", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "type": "bf:Person", "identifier": "http://data.rero.ch/02-A024285452", "date_of_birth": "1983", "preferred_name": "Soyarslan, Çiǧdem,", "authorized_access_point": "Soyarslan, Çiǧdem, 1983-", "biographical_information": ["Artiste lyrique (soprano)"]} 1 -2020-11-11 18:47:36.99548 2020-11-11 18:47:36.995485 0ebb7696-172c-4214-8df5-2dcf588c5f18 {"md5": "23d44ce5a4a9eaa6d00b174e796467d0", "pid": "A005472911", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "type": "bf:Person", "type": "bf:Organisation", "conference": false, "identifier": "http://data.rero.ch/02-A005472911", "variant_name": ["Institut d'administration des entreprises (Rennes : ?-1970)"], "preferred_name": "Université de Rennes. Institut d'administration des entreprises", "variant_access_point": ["Institut d'administration des entreprises (Rennes : ?-1970)"], "authorized_access_point": "Université de Rennes. Institut d'administration des entreprises", "biographical_information": ["Jusqu'en 1970: Université de Rennes. Institut d'administration des entreprises", "Dès 1970: Université de Rennes 1. Institut d'administration des entreprises"]} 1 -2020-11-11 18:47:39.350675 2020-11-11 18:47:39.35068 cd610336-99f1-4aa1-93c6-f7cdc032dbac {"md5": "370239fe4f5431ca3b36284f9026e2da", "pid": "A009238698", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "type": "bf:Person", "type": "bf:Organisation", "conference": false, "identifier": "http://data.rero.ch/02-A009238698", "preferred_name": "Pipe Trio", "authorized_access_point": "Pipe Trio"} 1 -2020-11-11 18:47:42.232111 2020-11-11 18:47:42.232116 20bd9309-821f-4a4c-aae3-4cf07502a6f6 {"md5": "eb9f4559b841ebb23b3aa81f48c75cb2", "pid": "A009535178", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "type": "bf:Person", "qualifier": "de Barbanson", "identifier": "http://data.rero.ch/02-A009535178", "variant_name": ["Barbançon, Constantin de"], "preferred_name": "Constantin, de Barbanson", "variant_access_point": ["Barbançon, Constantin de"], "authorized_access_point": "Constantin, de Barbanson"} 1 -2020-11-11 18:47:48.454268 2020-11-11 18:47:48.454273 5bf892cf-6c0f-4692-a3f2-add70c1170fa {"md5": "7badff1fad1b3179ba1ba9bdf25a9bf3", "pid": "A000065776", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "type": "bf:Person", "identifier": "http://data.rero.ch/02-A000065776", "variant_name": ["Cavalieri, Pius Franchi de", "Franchi De Cavalieri, Pietro Pio", "Franchi De Cavalieri, Pius"], "preferred_name": "Franchi De Cavalieri, Pio Pietro", "variant_access_point": ["Cavalieri, Pius Franchi de", "Franchi De Cavalieri, Pietro Pio", "Franchi De Cavalieri, Pius"], "authorized_access_point": "Franchi De Cavalieri, Pio Pietro"} 1 -2020-11-11 18:47:50.188698 2020-11-11 18:47:50.188703 2495489c-3d29-497a-89e7-658bfd2116b4 {"md5": "63217758345f5fdbd0be66a2286b2632", "pid": "A022480124", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "type": "bf:Person", "identifier": "http://data.rero.ch/02-A022480124", "variant_name": ["Bernard, Bayle,"], "date_of_birth": "1807", "date_of_death": "1875", "preferred_name": "Bernard, William Bayle,", "variant_access_point": ["Bernard, Bayle, 1807-1875"], "authorized_access_point": "Bernard, William Bayle, 1807-1875"} 1 -2020-11-11 18:47:51.36701 2020-11-11 18:47:51.367015 42da5b70-7dc5-475e-b468-80697e5214d2 {"md5": "c6b87e7bfc29646948f5429209965caf", "pid": "A021799923", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "type": "bf:Person", "identifier": "http://data.rero.ch/02-A021799923", "variant_name": ["Kouroúdi̲s, Kó̲stas"], "preferred_name": "Kouroudēs, Kōstas", "variant_access_point": ["Kouroúdi̲s, Kó̲stas"], "parallel_access_point": ["Κουρούδης, Κώστας"], "authorized_access_point": "Kouroudēs, Kōstas"} 1 -2020-11-11 18:47:52.125617 2020-11-11 18:47:52.125622 bc232716-742a-4d1e-863c-ac9624bd313b {"md5": "0654556e79b0a5993f1a3f21e2538522", "pid": "A017671081", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "type": "bf:Person", "identifier": "http://data.rero.ch/02-A017671081", "variant_name": ["Aernoudt, Pierre,", "Arnold, Joseph,"], "date_of_birth": "1811", "date_of_death": "1865", "preferred_name": "Arnoudt, Pierre J.,", "variant_access_point": ["Aernoudt, Pierre, 1811-1865", "Arnold, Joseph, 1811-1865"], "authorized_access_point": "Arnoudt, Pierre J., 1811-1865", "biographical_information": ["Jésuite (à partir de 1835 ; ordonné prêtre en 1843) ; vécut aux Etats-Unis à partir de 1835, écrivit aussi en latin"]} 1 -2020-11-11 18:47:53.775546 2020-11-11 18:47:53.775552 807db93c-8321-4dc9-9d32-3f26c1e22a3d {"md5": "e46818a77f0b8c5f676351781323d1f0", "pid": "A000009346", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "type": "bf:Person", "identifier": "http://data.rero.ch/02-A000009346", "variant_name": ["Aranton d'Alex, Jean d',", "Aranthon d'Alex, Jean d',", "Alex, Jean d'Arenthon d',"], "date_of_birth": "1620", "date_of_death": "1695", "preferred_name": "Arenthon d'Alex, Jean d',", "variant_access_point": ["Aranton d'Alex, Jean d', 1620-1695", "Aranthon d'Alex, Jean d', 1620-1695", "Alex, Jean d'Arenthon d', 1620-1695"], "authorized_access_point": "Arenthon d'Alex, Jean d', 1620-1695", "biographical_information": ["Prince-évêque de Genève (1661-1695)"]} 1 -2020-11-11 18:47:54.576001 2020-11-11 18:47:54.576007 a52d1ac4-23d5-490f-97fe-928e20e14d76 {"md5": "bf13b602d6494f21385cbac14b029716", "pid": "A027454547", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "type": "bf:Person", "type": "bf:Organisation", "conference": false, "identifier": "http://data.rero.ch/02-A027454547", "preferred_name": "Van Halen (groupe musical)", "authorized_access_point": "Van Halen (groupe musical)"} 1 -2020-11-11 18:47:59.0613 2020-11-11 18:47:59.061305 30335e2e-056d-4306-839f-94ede21d8015 {"md5": "48d1e9960cb7c0bd89d2fbb674569087", "pid": "A023655346", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "type": "bf:Person", "identifier": "http://data.rero.ch/02-A023655346", "variant_name": ["De Cavalieri, Giovanni Battista,", "Cavalleriis, Baptista de,", "Cavalleriis, Giovanni Battista de,", "Cavalieri, Gianbattista,"], "date_of_birth": "ca.1525", "date_of_death": "1601", "preferred_name": "Cavalieri, Giovanni Battista,", "variant_access_point": ["De Cavalieri, Giovanni Battista, ca.1525-1601", "Cavalleriis, Baptista de, ca.1525-1601", "Cavalleriis, Giovanni Battista de, ca.1525-1601", "Cavalieri, Gianbattista, ca.1525-1601"], "authorized_access_point": "Cavalieri, Giovanni Battista, ca.1525-1601", "biographical_information": ["Graveur, dessinateur et éditeur"]} 1 +2020-11-11 18:47:04.887047 2020-11-11 18:47:04.887053 19964444-4942-47fe-884a-029333972efc {"md5": "a0899531d7e144d6fddf862902296756", "pid": "A017991779", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "type": "bf:Person", "variant_name": ["Catalano, Giuseppe,", "Catalanus, Josephus,", "Catalani, Josephus,", "Catalano, Josepho,"], "date_of_birth": "1698", "date_of_death": "1764", "preferred_name": "Catalani, Giuseppe,", "variant_access_point": ["Catalano, Giuseppe, 1698-1764", "Catalanus, Josephus, 1698-1764", "Catalani, Josephus, 1698-1764", "Catalano, Josepho, 1698-1764"], "authorized_access_point": "Catalani, Giuseppe, 1698-1764", "biographical_information": ["Historien, théologien et juriste"]} 1 +2020-11-11 18:47:05.366713 2020-11-11 18:47:05.366718 6cd26476-2d78-41dd-aabe-1d6ea9ba0c69 {"md5": "f85ee7377ce74a69d30828a225752747", "pid": "A005591402", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "type": "bf:Person", "variant_name": ["Amboise, Léon d'", "Léon, d'Amboise"], "preferred_name": "Guillemin, Léon", "variant_access_point": ["Amboise, Léon d'", "Léon, d'Amboise"], "authorized_access_point": "Guillemin, Léon", "biographical_information": ["Léon d'Amboise est le pseud. de Léon Guillemin"]} 1 +2020-11-11 18:47:11.125194 2020-11-11 18:47:11.125199 ea671539-7872-450b-8b5a-47c9b72c1e9f {"md5": "11f264777581fcb816a74c28d05553b5", "pid": "A000070488", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "type": "bf:Person", "variant_name": ["Bonqueval, J.G. de"], "preferred_name": "Genty de Bonqueval, J", "variant_access_point": ["Bonqueval, J.G. de"], "authorized_access_point": "Genty de Bonqueval, J"} 1 +2020-11-11 18:47:12.785566 2020-11-11 18:47:12.785571 0e58f004-0810-4332-a75f-fb76cf131993 {"md5": "8490c0706e4d85befe6a1763153a64d8", "pid": "A009962747", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "type": "bf:Person", "type": "bf:Organisation", "conference": false, "variant_name": ["European Coal and Steel Community", "Europäische Gemeinschaft für Kohle und Stahl", "Comunità europea del carbone e dell'acciaio", "CECA (Communauté européenne du charbon et de l'acier)", "ECSC (European Coal and Steel Community)", "EGKS (Europäische Gemeinschaft für Kohle und Stahl)"], "preferred_name": "Communauté européenne du charbon et de l'acier", "variant_access_point": ["European Coal and Steel Community", "Europäische Gemeinschaft für Kohle und Stahl", "Comunità europea del carbone e dell'acciaio", "CECA (Communauté européenne du charbon et de l'acier)", "ECSC (European Coal and Steel Community)", "EGKS (Europäische Gemeinschaft für Kohle und Stahl)"], "authorized_access_point": "Communauté européenne du charbon et de l'acier", "biographical_information": ["Sous le descripteur \\"COMMUNAUTE EUROPEENNE DU CHARBON ET DE L'ACIER\\", on trouve les documents traitant de l'organisation créée par le Traité de Paris (1951) jusqu'à sa dissolution en 2002", "Sous les descripteurs \\"COMMUNAUTE EUROPEENNE\\", \\"COMMUNAUTE EUROPEENNE DE L'ENERGIE ATOMIQUE\\" et \\"COMMUNAUTE EUROPEENNE DU CHARBON ET DE L'ACIER\\", on trouve uniquement les documents traitant spécifiquement de ces organisations, en particulier avant leur regroupement en 1967", "Sous le descripteur \\"COMMUNAUTES EUROPEENNES\\", on trouve les documents traitant de l'ensemble des Communautés, du Traité de fusion (1967) au Traité sur l'Union européenne (1993)"]} 1 +2020-11-11 18:47:17.263187 2020-11-11 18:47:17.263192 601a80a1-161b-4b34-a9a1-c83b16ac61cc {"md5": "9a84175e56df06dd9c4e9a564d34b5c4", "pid": "A005353099", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "type": "bf:Person", "type": "bf:Organisation", "conference": false, "preferred_name": "Gürzenich-Orchester Kölner Philharmoniker", "authorized_access_point": "Gürzenich-Orchester Kölner Philharmoniker", "biographical_information": ["Jusqu'en 1986: Gürzenich-Orchester (Köln)", "Jusqu'en 1986: Kölner Philharmoniker", "Dès 1986: Gürzenich-Orchester Kölner Philharmoniker"]} 1 +2020-11-11 18:47:20.721829 2020-11-11 18:47:20.721834 f45e3c35-45b7-41d4-afae-ce49b41d6847 {"md5": "980b127758f806da1ad917589a594a12", "pid": "A005464637", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "type": "bf:Person", "type": "bf:Organisation", "conference": false, "variant_name": ["Institut de recherches sur les civilisations de l'Occident moderne (Paris)", "Unité de recherches sur les civilisations de l'Occident moderne (Paris)", "URCOM (Unité de recherches sur les civilisations de l'Occident moderne) (Paris)"], "preferred_name": "Université de Paris 4. Institut de recherches sur les civilisations de l'Occident moderne", "variant_access_point": ["Institut de recherches sur les civilisations de l'Occident moderne (Paris)", "Unité de recherches sur les civilisations de l'Occident moderne (Paris)", "URCOM (Unité de recherches sur les civilisations de l'Occident moderne) (Paris)"], "authorized_access_point": "Université de Paris 4. Institut de recherches sur les civilisations de l'Occident moderne"} 1 +2020-11-11 18:47:25.260904 2020-11-11 18:47:25.260909 5ccce47c-40ab-4610-bfd2-258059f77bf0 {"md5": "f7c64698afa7f5653da5f6e2a471a4e4", "pid": "A012320736", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "type": "bf:Person", "type": "bf:Organisation", "conference": true, "preferred_name": "Congrès de psychiatrie et de neurologie de langue française", "authorized_access_point": "Congrès de psychiatrie et de neurologie de langue française (78 : 1980 : Reims)"} 1 +2020-11-11 18:47:27.578557 2020-11-11 18:47:27.578562 2b4ca628-2933-4e43-ba6e-e9ed22c6d982 {"md5": "2b1a18ffab5e93b126d089d2e5379466", "pid": "A003671569", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "type": "bf:Person", "type": "bf:Organisation", "conference": false, "variant_name": ["Parlement européen. DG4", "Parlement européen. Generaldirektion Wissenschaft", "Parlement européen. Directorate General for Research"], "preferred_name": "Parlement européen. Direction générale des études", "variant_access_point": ["Parlement européen. DG4", "Parlement européen. Generaldirektion Wissenschaft", "Parlement européen. Directorate General for Research"], "authorized_access_point": "Parlement européen. Direction générale des études"} 1 +2020-11-11 18:47:28.642561 2020-11-11 18:47:28.642567 f4e927d5-8194-4c96-9c65-31a7d2d36bfb {"md5": "85ad5ae7222d0f32634ce6691d1aad52", "pid": "A028240818", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "type": "bf:Person", "type": "bf:Organisation", "conference": false, "variant_name": ["Compagnie PO", "Compagnie des chemins de fer de Paris à Orléans", "Compagnie des chemins de fer P. O. Midi", "Compagnie des chemins de fer d'Orléans et du Midi", "Chemin de fer d'Orléans", "Compagnie d'Orléans", "Compagnie du chemin de fer de Paris à Orléans"], "preferred_name": "Compagnie du chemin de fer de Paris à Orléans (Paris)", "variant_access_point": ["Compagnie PO", "Compagnie des chemins de fer de Paris à Orléans", "Compagnie des chemins de fer P. O. Midi", "Compagnie des chemins de fer d'Orléans et du Midi", "Chemin de fer d'Orléans", "Compagnie d'Orléans", "Compagnie du chemin de fer de Paris à Orléans"], "authorized_access_point": "Compagnie du chemin de fer de Paris à Orléans (Paris)"} 1 +2020-11-11 18:47:29.887129 2020-11-11 18:47:29.887134 4bc53cca-08c6-4615-acf7-684566d677ee {"md5": "9d9fe3b19e907d9c733bf1c4028b8da0", "pid": "A024285452", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "type": "bf:Person", "date_of_birth": "1983", "preferred_name": "Soyarslan, Çiǧdem,", "authorized_access_point": "Soyarslan, Çiǧdem, 1983-", "biographical_information": ["Artiste lyrique (soprano)"]} 1 +2020-11-11 18:47:36.99548 2020-11-11 18:47:36.995485 0ebb7696-172c-4214-8df5-2dcf588c5f18 {"md5": "23d44ce5a4a9eaa6d00b174e796467d0", "pid": "A005472911", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "type": "bf:Person", "type": "bf:Organisation", "conference": false, "variant_name": ["Institut d'administration des entreprises (Rennes : ?-1970)"], "preferred_name": "Université de Rennes. Institut d'administration des entreprises", "variant_access_point": ["Institut d'administration des entreprises (Rennes : ?-1970)"], "authorized_access_point": "Université de Rennes. Institut d'administration des entreprises", "biographical_information": ["Jusqu'en 1970: Université de Rennes. Institut d'administration des entreprises", "Dès 1970: Université de Rennes 1. Institut d'administration des entreprises"]} 1 +2020-11-11 18:47:39.350675 2020-11-11 18:47:39.35068 cd610336-99f1-4aa1-93c6-f7cdc032dbac {"md5": "370239fe4f5431ca3b36284f9026e2da", "pid": "A009238698", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "type": "bf:Person", "type": "bf:Organisation", "conference": false, "preferred_name": "Pipe Trio", "authorized_access_point": "Pipe Trio"} 1 +2020-11-11 18:47:42.232111 2020-11-11 18:47:42.232116 20bd9309-821f-4a4c-aae3-4cf07502a6f6 {"md5": "eb9f4559b841ebb23b3aa81f48c75cb2", "pid": "A009535178", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "type": "bf:Person", "qualifier": "de Barbanson", "variant_name": ["Barbançon, Constantin de"], "preferred_name": "Constantin, de Barbanson", "variant_access_point": ["Barbançon, Constantin de"], "authorized_access_point": "Constantin, de Barbanson"} 1 +2020-11-11 18:47:48.454268 2020-11-11 18:47:48.454273 5bf892cf-6c0f-4692-a3f2-add70c1170fa {"md5": "7badff1fad1b3179ba1ba9bdf25a9bf3", "pid": "A000065776", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "type": "bf:Person", "variant_name": ["Cavalieri, Pius Franchi de", "Franchi De Cavalieri, Pietro Pio", "Franchi De Cavalieri, Pius"], "preferred_name": "Franchi De Cavalieri, Pio Pietro", "variant_access_point": ["Cavalieri, Pius Franchi de", "Franchi De Cavalieri, Pietro Pio", "Franchi De Cavalieri, Pius"], "authorized_access_point": "Franchi De Cavalieri, Pio Pietro"} 1 +2020-11-11 18:47:50.188698 2020-11-11 18:47:50.188703 2495489c-3d29-497a-89e7-658bfd2116b4 {"md5": "63217758345f5fdbd0be66a2286b2632", "pid": "A022480124", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "type": "bf:Person", "variant_name": ["Bernard, Bayle,"], "date_of_birth": "1807", "date_of_death": "1875", "preferred_name": "Bernard, William Bayle,", "variant_access_point": ["Bernard, Bayle, 1807-1875"], "authorized_access_point": "Bernard, William Bayle, 1807-1875"} 1 +2020-11-11 18:47:51.36701 2020-11-11 18:47:51.367015 42da5b70-7dc5-475e-b468-80697e5214d2 {"md5": "c6b87e7bfc29646948f5429209965caf", "pid": "A021799923", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "type": "bf:Person", "variant_name": ["Kouroúdi̲s, Kó̲stas"], "preferred_name": "Kouroudēs, Kōstas", "variant_access_point": ["Kouroúdi̲s, Kó̲stas"], "parallel_access_point": ["Κουρούδης, Κώστας"], "authorized_access_point": "Kouroudēs, Kōstas"} 1 +2020-11-11 18:47:52.125617 2020-11-11 18:47:52.125622 bc232716-742a-4d1e-863c-ac9624bd313b {"md5": "0654556e79b0a5993f1a3f21e2538522", "pid": "A017671081", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "type": "bf:Person", "variant_name": ["Aernoudt, Pierre,", "Arnold, Joseph,"], "date_of_birth": "1811", "date_of_death": "1865", "preferred_name": "Arnoudt, Pierre J.,", "variant_access_point": ["Aernoudt, Pierre, 1811-1865", "Arnold, Joseph, 1811-1865"], "authorized_access_point": "Arnoudt, Pierre J., 1811-1865", "biographical_information": ["Jésuite (à partir de 1835 ; ordonné prêtre en 1843) ; vécut aux Etats-Unis à partir de 1835, écrivit aussi en latin"]} 1 +2020-11-11 18:47:53.775546 2020-11-11 18:47:53.775552 807db93c-8321-4dc9-9d32-3f26c1e22a3d {"md5": "e46818a77f0b8c5f676351781323d1f0", "pid": "A000009346", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "type": "bf:Person", "variant_name": ["Aranton d'Alex, Jean d',", "Aranthon d'Alex, Jean d',", "Alex, Jean d'Arenthon d',"], "date_of_birth": "1620", "date_of_death": "1695", "preferred_name": "Arenthon d'Alex, Jean d',", "variant_access_point": ["Aranton d'Alex, Jean d', 1620-1695", "Aranthon d'Alex, Jean d', 1620-1695", "Alex, Jean d'Arenthon d', 1620-1695"], "authorized_access_point": "Arenthon d'Alex, Jean d', 1620-1695", "biographical_information": ["Prince-évêque de Genève (1661-1695)"]} 1 +2020-11-11 18:47:54.576001 2020-11-11 18:47:54.576007 a52d1ac4-23d5-490f-97fe-928e20e14d76 {"md5": "bf13b602d6494f21385cbac14b029716", "pid": "A027454547", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "type": "bf:Person", "type": "bf:Organisation", "conference": false, "preferred_name": "Van Halen (groupe musical)", "authorized_access_point": "Van Halen (groupe musical)"} 1 +2020-11-11 18:47:59.0613 2020-11-11 18:47:59.061305 30335e2e-056d-4306-839f-94ede21d8015 {"md5": "48d1e9960cb7c0bd89d2fbb674569087", "pid": "A023655346", "$schema": "https://mef.rero.ch/schemas/agents_rero/rero-agent-v0.0.1.json", "type": "bf:Person", "variant_name": ["De Cavalieri, Giovanni Battista,", "Cavalleriis, Baptista de,", "Cavalleriis, Giovanni Battista de,", "Cavalieri, Gianbattista,"], "date_of_birth": "ca.1525", "date_of_death": "1601", "preferred_name": "Cavalieri, Giovanni Battista,", "variant_access_point": ["De Cavalieri, Giovanni Battista, ca.1525-1601", "Cavalleriis, Baptista de, ca.1525-1601", "Cavalleriis, Giovanni Battista de, ca.1525-1601", "Cavalieri, Gianbattista, ca.1525-1601"], "authorized_access_point": "Cavalieri, Giovanni Battista, ca.1525-1601", "biographical_information": ["Graveur, dessinateur et éditeur"]} 1 diff --git a/tests/data/aidref_metadata.csv b/tests/data/aidref_metadata.csv index a2e2c683..275058be 100644 --- a/tests/data/aidref_metadata.csv +++ b/tests/data/aidref_metadata.csv @@ -1,73 +1,72 @@ -2020-11-11 18:47:04.547394 2020-11-11 18:47:04.547399 09c449e7-7150-4c90-bcfe-0abb3b27c076 {"md5": "d87e71f810ef6669084cb97da82bc98b", "pid": "183349199", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["ita", "lat"], "identifier": "http://www.idref.fr/183349199", "variant_name": ["Catalano, Giuseppe", "Catalanus, Josephus"], "date_of_birth": "1698", "date_of_death": "1764", "preferred_name": "Catalani, Giuseppe", "country_associated": "it", "variant_access_point": ["Catalano, Giuseppe", "Catalanus, Josephus"], "authorized_access_point": "Catalani, Giuseppe, 1698-1764", "biographical_information": ["Historien, théologien et juriste"]} 1 -2020-11-11 18:47:05.792621 2020-11-11 18:47:05.792629 fc7d93a5-67a3-4800-93cd-73b9c77f142f {"md5": "a6dfb076c5dfe12db1059b453ae62047", "pid": "179863436", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["gre"], "identifier": "http://www.idref.fr/179863436", "date_of_birth": "1972", "preferred_name": "Rogakos, Megakles", "country_associated": "gr", "authorized_access_point": "Rogakos, Megakles, 1972-....", "biographical_information": ["Art historian and curator"]} 1 -2020-11-11 18:47:09.036072 2020-11-11 18:47:09.036078 45524329-a7f9-4e3c-a04c-420784c882ff {"md5": "3d358ff9acb854d6a7c35b9ccc86e669", "pid": "097556505", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "identifier": "http://www.idref.fr/097556505", "date_of_birth": "1761-02-23", "date_of_death": "1852-02-09", "preferred_name": "Fleuriau de Bellevue, Louis Benjamin", "country_associated": "fr", "authorized_access_point": "Fleuriau de Bellevue, Louis Benjamin, 1761-1852", "biographical_information": ["Homme politique charentais. Géologue, membre de l'Académie des Sciences en 1816."]} 1 -2020-11-11 18:47:09.483127 2020-11-11 18:47:09.483132 aec3f16f-4013-45a1-8e26-686d7dad5959 {"md5": "3a3f98d85241e45b0ddaf010b21d9d6a", "pid": "223404543", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "identifier": "http://www.idref.fr/223404543", "variant_name": ["Lépinois, Eugène Louis Ernest de Buchère de"], "date_of_birth": "18..", "date_of_death": "18..?", "preferred_name": "Buchère de Lépinois, Eugène Louis Ernest de", "country_associated": "fr", "variant_access_point": ["Lépinois, Eugène Louis Ernest de Buchère de"], "authorized_access_point": "Buchère de Lépinois, Eugène Louis Ernest de"} 1 -2020-11-11 18:47:10.847869 2020-11-11 18:47:10.847875 0ea2ad7f-11d4-4b93-97c4-e6520ecb77f2 {"md5": "69bdcbda767abb74e1217b3285a567fb", "pid": "197394787", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["gre"], "qualifier": "néo-helléniste", "identifier": "http://www.idref.fr/197394787", "date_of_birth": "1957", "preferred_name": "Sérgīs, Manólīs G., néo-helléniste", "country_associated": "gr", "parallel_access_point": ["Σέργης, Μανόλης Γ., 1957-...."], "authorized_access_point": "Sérgīs, Manólīs G., 1957-...., néo-helléniste", "biographical_information": ["Néo-helléniste"]} 1 -2020-11-11 18:47:11.570262 2020-11-11 18:47:11.570267 51c731a6-644a-4ea9-909d-c71120527400 {"md5": "f2c813843c221b93efeeb9ef3966aa7f", "pid": "034875891", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "language": ["mul"], "conference": false, "identifier": "http://www.idref.fr/034875891", "variant_name": ["DPM"], "preferred_name": "Derek Prince ministries", "variant_access_point": ["DPM"], "date_of_establishment": "19XX", "authorized_access_point": "Derek Prince ministries", "biographical_information": ["Derek Prince ministries international, PO box 19501, Charlotte, North Carolina. Derek Prince ministries France, route d'Oupia, BP 31, 34210 Olonzac"]} 1 -2020-11-11 18:47:12.439873 2020-11-11 18:47:12.439879 a6642cee-0832-439d-b641-029c9772af57 {"md5": "a80deb9789b47e25801fcf5d5b02aab3", "pid": "027483061", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "language": ["mul"], "conference": false, "identifier": "http://www.idref.fr/027483061", "relation_pid": {"type": "redirect_from", "value": "029057183"}, "variant_name": ["CECA", "Communautés européennes. Communauté européenne du charbon et de l'acier", "ECSC", "EGKS", "Europäische Gemeinschaft für Kohle und Stahl", "European Coal and Steel Community", "Comunità europea del carbone e dell'acciaio"], "preferred_name": "Communauté européenne du charbon et de l'acier", "variant_access_point": ["CECA", "Communautés européennes. Communauté européenne du charbon et de l'acier", "ECSC", "EGKS", "Europäische Gemeinschaft für Kohle und Stahl", "European Coal and Steel Community", "Comunità europea del carbone e dell'acciaio"], "date_of_establishment": "1951-04-18", "authorized_access_point": "Communauté européenne du charbon et de l'acier", "biographical_information": ["Créée par le Traité de Paris du 18-04-1951 ; établie à Luxembourg le 25-08-1952. A cessé d'exister en 2002 aux termes d'une décision de la Commission européenne du 13-03-1991"]} 1 -2020-11-11 18:47:13.652673 2020-11-11 18:47:13.652678 f020b623-c01e-44cc-b546-16c5223f2777 {"md5": "98d5c79c1ca524a575e5921054c91f28", "pid": "076515788", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "language": ["mul"], "conference": false, "identifier": "http://www.idref.fr/076515788", "variant_name": ["Congrès littéraire international de la protection de la propriété littéraire dans les rapports internationaux"], "preferred_name": "Congrès littéraire international", "country_associated": "fr", "date_of_termination": "1878-06-18", "variant_access_point": ["Congrès littéraire international de la protection de la propriété littéraire dans les rapports internationaux"], "date_of_establishment": "1878-06-06", "authorized_access_point": "Congrès littéraire international ( 1878 ; Paris )"} 1 -2020-11-11 18:47:14.110905 2020-11-11 18:47:14.110911 b955c24e-f5e4-4bb7-8fbe-0760ab5bbe3e {"md5": "f35202455b5d8917b26c4eb026a2997c", "pid": "078061911", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "conference": false, "identifier": "http://www.idref.fr/078061911", "preferred_name": "Man and women's lover", "country_associated": "fr", "date_of_establishment": "19XX", "authorized_access_point": "Man and women's lover", "biographical_information": ["Groupe de variétés antillaises"]} 1 -2020-11-11 18:47:14.886817 2020-11-11 18:47:14.886822 ad7db727-5220-4686-8eee-f8a27c26bbd1 {"md5": "4fe62f07e423d88fe157265a33221563", "pid": "112244424", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "identifier": "http://www.idref.fr/112244424", "variant_name": ["Chaperon, Nicolas"], "date_of_birth": "1612", "date_of_death": "1656", "preferred_name": "Chapron, Nicolas", "country_associated": "fr", "variant_access_point": ["Chaperon, Nicolas"], "authorized_access_point": "Chapron, Nicolas, 1612-1656?", "biographical_information": ["Peintre, copiste, dessinateur et graveur"]} 1 -2020-11-11 18:47:15.608691 2020-11-11 18:47:15.608696 facb7077-2fd9-4f45-a8cf-21025a36f0dc {"md5": "706ae29f3d67b84780a796adb4476388", "pid": "08233367X", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "conference": false, "identifier": "http://www.idref.fr/08233367X", "preferred_name": "Voci di a Gravona", "country_associated": "fr", "date_of_establishment": "19XX", "authorized_access_point": "Voci di a Gravona", "biographical_information": ["Groupe vocal de polyphonie corse"]} 1 -2020-11-11 18:47:16.536311 2020-11-11 18:47:16.536316 2737d9a6-955e-42c8-96b6-8d00b0b0b711 {"md5": "ce009fc531ec1993f6241852854b3ed1", "pid": "080491898", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "conference": false, "identifier": "http://www.idref.fr/080491898", "preferred_name": "Les Doudous de la Grande Terre", "country_associated": "fr", "date_of_establishment": "19XX", "authorized_access_point": "Les Doudous de la Grande Terre", "biographical_information": ["Groupe de musique Guadeloupéen"]} 1 -2020-11-11 18:47:16.964567 2020-11-11 18:47:16.964573 57e640e6-7c92-4465-9bd7-9526f052d226 {"md5": "d65dd14bd8c12742b07e9aca11fefecb", "pid": "078069084", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "conference": false, "identifier": "http://www.idref.fr/078069084", "variant_name": ["Gürzenich Orchester Köln", "Orchestre du Gürzenich de Cologne", "Orchestre de l'opéra de Cologne"], "preferred_name": "Gürzenich-Orchester Kölner Philharmoniker", "country_associated": "gw", "variant_access_point": ["Gürzenich Orchester Köln", "Orchestre du Gürzenich de Cologne", "Orchestre de l'opéra de Cologne"], "date_of_establishment": "1857", "authorized_access_point": "Gürzenich-Orchester Kölner Philharmoniker", "biographical_information": ["Succède à la Musikalische Gesellschaft (1812-) qui avait fusionné en 1827 avec le Singverein pour former la Konzertgesellschaft. Assure les services de l'Opéra de Cologne", "Adresse : Bischofsgartenstr. 1, D-50667 Köln. Contact : 0221.2.21.2.24.37. Télécopie : 0221.2.1.2.38.00", "Kreutzer, Konradin, direction (1840-1842)"]} 1 -2020-11-11 18:47:17.708551 2020-11-11 18:47:17.708558 16a30633-ef47-40f6-bfcf-952866e01d1a {"md5": "41d5ad0caf8e81f982b3519169d216b0", "pid": "079491251", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/079491251", "preferred_name": "Ultimation", "country_associated": "xxu", "date_of_establishment": "19XX", "authorized_access_point": "Ultimation", "biographical_information": ["Développeur de logiciels de loisir", "Adresse : 204 G street, suite 202, 94952 Petaluma, CA"]} 1 -2020-11-11 18:47:19.578146 2020-11-11 18:47:19.578152 3309439f-022e-4683-8b31-95591d795741 {"md5": "b4ee1175dfd7bf7045b4d3e52afc2773", "pid": "030348722", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "language": ["ger"], "conference": false, "identifier": "http://www.idref.fr/030348722", "variant_name": ["Bundesverband der Betriebskrankenkassen ( RFA )"], "preferred_name": "Bundesverband der Betriebskrankenkassen ( Allemagne )", "country_associated": "gw", "variant_access_point": ["Bundesverband der Betriebskrankenkassen ( RFA )"], "date_of_establishment": "19XX", "authorized_access_point": "Bundesverband der Betriebskrankenkassen ( Allemagne )"} 1 -2020-11-11 18:47:20.43832 2020-11-11 18:47:20.438326 6d8db78d-4d59-48ec-ad1f-4dd8ee74caac {"md5": "9f4c8d121b5e671c96f6ad2eef7c72b5", "pid": "02638714X", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/02638714X", "variant_name": ["Centre de recherches sur l'Occident moderne ( Paris )", "Institut de recherche sur les civilisations de l'Occident moderne ( Paris )", "Université de Paris-Sorbonne. Institut de recherches sur les civilisations de l'Occident moderne", "IRCOM", "Sorbonne université ( Paris ). Institut de recherches sur les civilisations de l'Occident moderne"], "preferred_name": "Institut de recherches sur les civilisations de l'Occident moderne ( Paris )", "country_associated": "fr", "variant_access_point": ["Centre de recherches sur l'Occident moderne ( Paris )", "Institut de recherche sur les civilisations de l'Occident moderne ( Paris )", "Université de Paris-Sorbonne. Institut de recherches sur les civilisations de l'Occident moderne", "IRCOM", "Sorbonne université ( Paris ). Institut de recherches sur les civilisations de l'Occident moderne"], "authorized_access_point": "Institut de recherches sur les civilisations de l'Occident moderne ( Paris )", "biographical_information": ["Laboratoire associé n° 100 du C.N.R.S", "1, rue Victor Cousin, 75230 Paris Cedex 05", "L’Institut de Recherches sur les Civilisations de l’Occident Moderne (IRCOM) est une UFR de la Faculté des Lettres de Sorbonne Université consacrée à la recherche et à l’enseignement en Master et Doctorat. La finalité de l’Institut est l’analyse des civilisations européennes depuis le début du XIVe siècle jusqu’au XIXe siècle."]} 1 -2020-11-11 18:47:21.586757 2020-11-11 18:47:21.586762 03af33e4-f351-43c4-b85c-e322739bf1a7 {"md5": "8c4257edd51f2f7f84c20c8e95663cf9", "pid": "03459910X", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "language": ["eng"], "conference": false, "identifier": "http://www.idref.fr/03459910X", "variant_name": ["Guns N' Roses", "GNR"], "preferred_name": "Guns n'roses ( groupe )", "country_associated": "xxu", "variant_access_point": ["Guns N' Roses", "GNR"], "authorized_access_point": "Guns n'roses ( groupe )", "biographical_information": ["Groupe américain de musique rock"]} 1 -2020-11-11 18:47:22.021137 2020-11-11 18:47:22.021142 b24d4333-00b0-4f7a-acd5-967a8879e9af {"md5": "1b697efbdd1940b04236a42fa70b9d45", "pid": "029402360", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/029402360", "variant_name": ["Université scientifique et médicale ( Grenoble ). Faculté de médecine", "Université scientifique et médicale ( Grenoble ). UFR de médecine"], "preferred_name": "Université Joseph Fourier ( Grenoble ). UER de médecine", "country_associated": "fr", "date_of_termination": "1987-12-08", "variant_access_point": ["Université scientifique et médicale ( Grenoble ). Faculté de médecine", "Université scientifique et médicale ( Grenoble ). UFR de médecine"], "date_of_establishment": "1971", "authorized_access_point": "Université Joseph Fourier ( Grenoble ). UER de médecine", "biographical_information": ["Cette UER (devenue UFR) de médecine succède à celle de l'Université de Grenoble, à la fondation de l'Université scientifique et médicale de Grenoble 1 (rebaptisée depuis le 8 décembre 1987 Université Joseph Fourier). Le terme \\"faculté\\" est encore en usage sur les publications.", "Domaine de la Merci, place Commandant-Nale, 38700 La Tronche. Tél. 04.76.63.71"]} 1 -2020-11-11 18:47:22.417518 2020-11-11 18:47:22.417523 5dbc8412-17c3-496b-bdda-b6b8984a8cee {"md5": "925047b8336eb69482c493793c0daa49", "pid": "080809197", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "conference": false, "identifier": "http://www.idref.fr/080809197", "preferred_name": "Lenny Dee versus DJ Paul", "country_associated": "xx", "date_of_establishment": "19XX", "authorized_access_point": "Lenny Dee versus DJ Paul", "biographical_information": ["Duo instrumental. Techno Hardcore", "Dee, Lenny, synthétiseur (19..-....)"]} 1 -2020-11-11 18:47:22.838499 2020-11-11 18:47:22.838505 e830b2f2-38f9-4a46-85c2-8f8ca2464554 {"md5": "104e81191d82104d5acaaa4f53df7a89", "pid": "079206557", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "conference": false, "identifier": "http://www.idref.fr/079206557", "preferred_name": "Universal ( Groupe de variétés antillaises )", "country_associated": "fr", "date_of_establishment": "19XX", "authorized_access_point": "Universal ( Groupe de variétés antillaises )", "biographical_information": ["Uger, Ariste, chant"]} 1 -2020-11-11 18:47:23.412719 2020-11-11 18:47:23.412725 3f3ea658-aa60-47f0-a740-bd2382e95ac5 {"md5": "e83d67e024f380bd5bd126567572c219", "pid": "080715060", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "conference": false, "identifier": "http://www.idref.fr/080715060", "preferred_name": "Cour des grand", "country_associated": "cf", "date_of_establishment": "19XX", "authorized_access_point": "Cour des grand", "biographical_information": ["Groupe de variétés congolaises"]} 1 -2020-11-11 18:47:23.792352 2020-11-11 18:47:23.792357 98d27121-5b27-4fbe-895a-08d81cd6e397 {"md5": "3023b1bfe567d337ec9d3ca45dbc8fa4", "pid": "080785425", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "conference": false, "identifier": "http://www.idref.fr/080785425", "variant_name": ["Cloud"], "preferred_name": "C-Loud", "country_associated": "xx", "variant_access_point": ["Cloud"], "date_of_establishment": "19XX", "authorized_access_point": "C-Loud", "biographical_information": ["Groupe de rock", "Larsen, Lory, chant"]} 1 -2020-11-11 18:47:24.240173 2020-11-11 18:47:24.240179 8bfb81fe-bc0b-4bf9-a234-25caf3dc5043 {"md5": "f64353f9e742878fc731ca9a300432a7", "pid": "080826660", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "conference": false, "identifier": "http://www.idref.fr/080826660", "variant_name": ["Triaca bum bum Alchemic folk orchestra"], "preferred_name": "Alchemic folk orchestra", "country_associated": "it", "variant_access_point": ["Triaca bum bum Alchemic folk orchestra"], "date_of_establishment": "19XX", "authorized_access_point": "Alchemic folk orchestra", "biographical_information": ["Groupe vocal et instrumental de musique populaire de Lombardie (Italie)", "Zuffi, Stefano, vielle à roue, violon, mandoline"]} 1 -2020-11-11 18:47:25.017845 2020-11-11 18:47:25.017851 be364a36-8d7e-4eae-ae79-9419a8ec6ad4 {"md5": "4e70326fdd007639437e4488e4bd3945", "pid": "083442774", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/083442774", "preferred_name": "Congrès de psychiatrie et de neurologie de langue française", "country_associated": "fr", "date_of_establishment": "1980", "authorized_access_point": "Congrès de psychiatrie et de neurologie de langue française ( 78 ; 1980 ; Reims )"} 1 -2020-11-11 18:47:26.08193 2020-11-11 18:47:26.081935 c66dfab3-7704-4b4b-b2ac-ce275bc85e2a {"md5": "522d158c37fa60dbb1c0c626ab69859d", "pid": "081589093", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "qualifier": "duc d'", "identifier": "http://www.idref.fr/081589093", "relation_pid": {"type": "redirect_from", "value": "150248199"}, "variant_name": ["Gondrin de Pardaillan de Montespan, Louis-Antoine de", "Pardaillan de Montespan, Louis-Antoine de Gondrin de", "Montespan, Louis-Antoine de Pardaillan de Gondrin de"], "date_of_birth": "1665-09-05", "date_of_death": "1736-11-02", "preferred_name": "Antin, Louis-Antoine de Pardaillan, duc d'", "country_associated": "fr", "variant_access_point": ["Gondrin de Pardaillan de Montespan, Louis-Antoine de, 1665-1736", "Pardaillan de Montespan, Louis-Antoine de Gondrin de, 1665-1736", "Montespan, Louis-Antoine de Pardaillan de Gondrin de, 1665-1736"], "authorized_access_point": "Antin, Louis-Antoine de Pardaillan, 1665-1736, duc d'", "biographical_information": ["Fils légitime de Louis-Henri de Pardaillan de Gondrin, marquis de Montespan, et d’Athénaïs de Montespan. Marquis d'Antin, de Gondrin et de Montespan (1701) ; premier duc d'Antin (1711), titre auquel il renonce en 1722 au profit de son petit-fils. - Gouverneur d'Orléans (1707). Surintendant des Bâtiments du Roi (1708). Lieutenant général et gouverneur de la province d'Alsace"]} 1 -2020-11-11 18:47:26.503975 2020-11-11 18:47:26.50398 3234dc96-3417-4212-9bc9-391fd764e947 {"md5": "aea40104cb806fcebb25ace0254103fa", "pid": "03227758X", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/03227758X", "variant_name": ["Camp d'internement de Compiègne-Royallieu", "Frontstalag 122 ( Compiègne, Oise )"], "preferred_name": "Camp de Compiègne-Royallieu", "country_associated": "fr", "variant_access_point": ["Camp d'internement de Compiègne-Royallieu", "Frontstalag 122 ( Compiègne, Oise )"], "date_of_establishment": "19XX", "authorized_access_point": "Camp de Compiègne-Royallieu"} 1 -2020-11-11 18:47:27.322674 2020-11-11 18:47:27.322679 53fefc8a-9404-4d8e-a113-7d3f4f3f67ac {"md5": "05439dbbf0784f2d089a2fb52950d301", "pid": "028893670", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "language": ["mul"], "conference": false, "identifier": "http://www.idref.fr/028893670", "variant_name": ["Parlement européen. Directorate-general for research", "European Parliament. Directorate General for Research", "European Parliament. General secretariat", "General secretariat of the European Parliament", "Parlement européen. Generaldirektion Wissenschaft", "Parlemento europeo. Dirección general de estudios", "Parlement européen. Secrétariat général. Direction générale des études"], "preferred_name": "Parlement européen. Direction générale des études", "variant_access_point": ["Parlement européen. Directorate-general for research", "European Parliament. Directorate General for Research", "European Parliament. General secretariat", "General secretariat of the European Parliament", "Parlement européen. Generaldirektion Wissenschaft", "Parlemento europeo. Dirección general de estudios", "Parlement européen. Secrétariat général. Direction générale des études"], "authorized_access_point": "Parlement européen. Direction générale des études"} 1 -2020-11-11 18:47:28.413321 2020-11-11 18:47:28.452208 b2971a59-18ee-4f38-8f80-ff09c7bfd4a6 \N 2 -2020-11-11 18:47:29.112877 2020-11-11 18:47:29.112882 1d66f039-8084-40a0-9195-f4bd0cddcd4b {"md5": "b773e1215c3e734e76e2d5fec5739d03", "pid": "149367430", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["grc", "lat"], "identifier": "http://www.idref.fr/149367430", "variant_name": ["Hermonyme, Georges, de Sparte", "Ερμώνυμος, Γεώργιος"], "date_of_birth": "1452", "date_of_death": "1508", "preferred_name": "Hermonymus, Georgius", "country_associated": "gr", "variant_access_point": ["Hermonyme, Georges, de Sparte", "Ερμώνυμος, Γεώργιος"], "authorized_access_point": "Hermonymus, Georgius, 1452-1508", "biographical_information": ["Homme de Lettres d'origine grecque, maître de grec à Paris"]} 1 -2020-11-11 18:47:30.693736 2020-11-11 18:47:30.693742 f24642a0-5ae2-4a86-bd32-94e9e7010032 {"md5": "90303b0620bf454e7d674ac7e3f8b5a9", "pid": "033967776", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "identifier": "http://www.idref.fr/033967776", "variant_name": ["Boiteau, Dieudonné Alexandre Paul", "Boiteau d'Ambly, Paul"], "date_of_birth": "1829-11-25", "date_of_death": "1886-06-11", "preferred_name": "Boiteau, Paul", "country_associated": "fr", "variant_access_point": ["Boiteau, Dieudonné Alexandre Paul", "Boiteau d'Ambly, Paul"], "authorized_access_point": "Boiteau, Paul, 1829-1886", "biographical_information": ["Économiste. - Éditeur de livres pour enfants. - Ami de Béranger"]} 1 -2020-11-11 18:47:31.114169 2020-11-11 18:47:31.114174 35c93330-797b-4884-a54d-71914fbf2296 {"md5": "1003b578e802a1fc1abc5a73f2c42e78", "pid": "075825686", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/075825686", "relation_pid": {"type": "redirect_from", "value": "08602020X"}, "variant_name": ["Compagnie d'Orléans ( France )", "Chemins de fer Paris-Orléans", "Chemins de fer d'Orléans", "Paris-Orléans", "PO"], "preferred_name": "Compagnie du chemin de fer de Paris à Orléans", "country_associated": "fr", "date_of_termination": "1938", "variant_access_point": ["Compagnie d'Orléans ( France )", "Chemins de fer Paris-Orléans", "Chemins de fer d'Orléans", "Paris-Orléans", "PO"], "date_of_establishment": "1838-08-13", "authorized_access_point": "Compagnie du chemin de fer de Paris à Orléans", "biographical_information": ["Compagnie fondée en 1838, qui étendra son réseau jusque dans le sud de la France. Fusionne en 1934 avec la Compagnie du Midi. Son réseau est nationalisé en 1938 et elle devient une société financière puis une banque (Paris Orléans)"]} 1 -2020-11-11 18:47:32.00797 2020-11-11 18:47:32.007975 c5a21949-6bd0-46e3-b797-1a6c60480b5d {"md5": "e32a1389ea9fcfda1b36b71f8d66cf27", "pid": "095116672", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "qualifier": "reine d'Espagne", "identifier": "http://www.idref.fr/095116672", "variant_name": ["Maria Louisa de Orléans, reine d'Espagne", "Marie-Louise, reine d'Espagne", "Orléans, Marie-Louise d', reine d'Espagne"], "date_of_birth": "1662-03-27", "date_of_death": "1689-02-12", "preferred_name": "Marie Louise d'Orléans, reine d'Espagne", "country_associated": "fr", "variant_access_point": ["Maria Louisa de Orléans, reine d'Espagne", "Marie-Louise, reine d'Espagne", "Orléans, Marie-Louise d', reine d'Espagne"], "authorized_access_point": "Marie Louise d'Orléans, 1662-1689, reine d'Espagne", "biographical_information": ["Née à Paris, morte à Madrid", "Fille de Philippe Ier, duc d'Orléans et d'Henriette d'Angleterre, elle épouse en 1679 Charles II roi d'Espagne"]} 1 -2020-11-11 18:47:32.630509 2020-11-11 18:47:32.630514 508b82ad-43d5-4e23-aaed-b5817e40b631 {"md5": "45f54009d7da6487d98c4403aa565059", "pid": "081780931", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["ger"], "identifier": "http://www.idref.fr/081780931", "variant_name": ["Brockdorff, Cay Ludwig Georg Conrad, baron von"], "date_of_birth": "1874-04-17", "date_of_death": "1946-01-29", "preferred_name": "Brockdorff, Cay", "country_associated": "gw", "variant_access_point": ["Brockdorff, Cay Ludwig Georg Conrad, baron von"], "authorized_access_point": "Brockdorff, Cay, 1874-1946", "biographical_information": ["Philosophe et sociologue"]} 1 -2020-11-11 18:47:33.02356 2020-11-11 18:47:33.023565 ddfd7e77-03b4-4998-8dad-66b14833c1ab {"md5": "dc2099f0193f9277850c97156ad5393b", "pid": "073668818", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "language": ["mon"], "conference": false, "identifier": "http://www.idref.fr/073668818", "variant_name": ["БНМАУ Шинжлэх Ухааны Академи. Түүхийн Хүрээлэн ( Oulan-Bator, Mongolie )", "Mongolyn Šinžlèh uhaany Akademi. Tùùhijn hùrèèlèn", "Mongol ulsyn Šinžlèh uhaany Akademi. Tùùhijn hùrèèlèn", "BNMAU-yn Šinžlèh uhaany Akademi. Tùùhijn hùrèèlèn", "BNMAU Šinžlèh uhaany Akademi. Tùùhijn hùrèèlèn", "Түүхийн Хүрээлэн", "Tùùhijn hùrèèlèn", "Академия наук Монгольской народной республики. Институт истории", "Akademiâ nauk Mongolʹskoj narodnoj respubliki. Institut istorii", "Монголын Шинжлэх Ухааны Академи. Түүхийн Хүрээлэн", "Mongolyn Shinzhlėkh Ukhaany Akademi. Tu̇u̇khiĭn Khu̇rėėlėn"], "preferred_name": "BNMAU Šinžlèh Uhaany Akademi. Tùùhijn hùrèèlèn ( Oulan-Bator, Mongolie )", "country_associated": "mp", "variant_access_point": ["Mongolyn Šinžlèh uhaany Akademi. Tùùhijn hùrèèlèn", "Mongol ulsyn Šinžlèh uhaany Akademi. Tùùhijn hùrèèlèn", "BNMAU-yn Šinžlèh uhaany Akademi. Tùùhijn hùrèèlèn", "BNMAU Šinžlèh uhaany Akademi. Tùùhijn hùrèèlèn", "Түүхийн Хүрээлэн", "Tùùhijn hùrèèlèn", "Академия наук Монгольской народной республики. Институт истории", "Akademiâ nauk Mongolʹskoj narodnoj respubliki. Institut istorii", "Монголын Шинжлэх Ухааны Академи. Түүхийн Хүрээлэн", "Mongolyn Shinzhlėkh Ukhaany Akademi. Tu̇u̇khiĭn Khu̇rėėlėn"], "authorized_access_point": "BNMAU Šinžlèh Uhaany Akademi. Tùùhijn hùrèèlèn ( Oulan-Bator, Mongolie )", "biographical_information": ["Institut d'histoire de l'Académie des sciences mongoles"]} 1 -2020-11-11 18:47:33.420821 2020-11-11 18:47:33.420826 20b7ece1-f857-4d87-86ff-703ee0399598 {"md5": "d7bac4d91d12ab988d0e9e184c13e7d6", "pid": "154079693", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "qualifier": "Comte", "identifier": "http://www.idref.fr/154079693", "date_of_birth": "1783", "date_of_death": "1862-11-17", "preferred_name": "Beaurepaire de Louvagny, Alexandre, Comte", "country_associated": "fr", "authorized_access_point": "Beaurepaire de Louvagny, Alexandre, 1783-1862, Comte", "biographical_information": ["Membre fondateur de l'association normande et de la société française d'archéologie."]} 1 -2020-11-11 18:47:33.81467 2020-11-11 18:47:33.814676 475bf63d-576d-49d4-b3d3-d98a9da7878b {"md5": "a68f2f853cf5472cee72e475a5e626e6", "pid": "071579478", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/071579478", "preferred_name": "Congrès des économistes de langue française", "authorized_access_point": "Congrès des économistes de langue française ( 21 ; 1961 ; Paris )"} 1 -2020-11-11 18:47:34.667821 2020-11-11 18:47:34.667827 fa72edb8-f49a-4f4b-a4ef-fe011297f744 {"md5": "8c473b58aeede0c6c3fd02710a905be3", "pid": "076675246", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "qualifier": "géologue", "identifier": "http://www.idref.fr/076675246", "date_of_birth": "19XX", "preferred_name": "Chesney, Marc, géologue", "country_associated": "fr", "authorized_access_point": "Chesney, Marc, 19..-...., géologue", "biographical_information": ["Titulaire d'une thèse de docteur ingénieur en géologie, Toulouse (1981)"]} 1 -2020-11-11 18:47:35.048069 2020-11-11 18:47:35.048073 5cd820a1-40bb-4130-8220-a677c8513e87 {"md5": "012e00dc0ed4367d513e43fee7b24253", "pid": "077723953", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/077723953", "preferred_name": "Congrès des économistes de langue française", "country_associated": "fr", "date_of_termination": "1959", "date_of_establishment": "1959", "authorized_access_point": "Congrès des économistes de langue française ( 19 ; 1959 ; Paris )"} 1 -2020-11-11 18:47:35.430767 2020-11-11 18:47:35.430772 e519e6ca-7745-4563-b37e-8b36507a642b {"md5": "127be1e758a6807daf0b7e885478d4c7", "pid": "081337418", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/081337418", "preferred_name": "Congrès des économistes de langue française", "country_associated": "fr", "date_of_termination": "1934", "date_of_establishment": "1934", "authorized_access_point": "Congrès des économistes de langue française ( 02 ; 1934 ; Paris )"} 1 -2020-11-11 18:47:36.708427 2020-11-11 18:47:36.708432 26a444a3-6b6e-4ef7-9f3e-ee5ab21673a9 {"md5": "29b139e640301a02426413ba0192d9ed", "pid": "069632421", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/069632421", "preferred_name": "Institut d'Administration des Entreprises de Rennes", "country_associated": "fr", "date_of_establishment": "19XX", "authorized_access_point": "Institut d'Administration des Entreprises de Rennes", "biographical_information": ["IGR-IAE de Rennes 11, rue Jean Macé CS 70803 35708 Rennes cedex 7"]} 1 -2020-11-11 18:47:37.921421 2020-11-11 18:47:37.921426 b464164e-aeeb-4a76-97ad-84f054647d48 {"md5": "8b00628fa05a3950fd19fd665544633a", "pid": "106993542", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["eng"], "qualifier": "Marquis of Ormonde", "identifier": "http://www.idref.fr/106993542", "preferred_name": "Butler, James Edward William Theobald, Marquis of Ormonde", "country_associated": "xxk", "authorized_access_point": "Butler, James Edward William Theobald, Marquis of Ormonde"} 1 -2020-11-11 18:47:38.299678 2020-11-11 18:47:38.299682 50ee35b6-6f82-40c4-bd60-521f4523187a {"md5": "625b9124ea724015644295f356a6ea72", "pid": "078047315", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/078047315", "variant_name": ["CIRE Nord", "Nord-Pas-de-Calais. Cellule interrégionale d'épidémiologie Nord"], "preferred_name": "Cellule interrégionale d'épidémiologie Nord", "country_associated": "fr", "variant_access_point": ["CIRE Nord", "Nord-Pas-de-Calais. Cellule interrégionale d'épidémiologie Nord"], "date_of_establishment": "19XX", "authorized_access_point": "Cellule interrégionale d'épidémiologie Nord"} 1 -2020-11-11 18:47:38.692539 2020-11-11 18:47:38.692544 e91d0d06-1777-42d5-8735-7ffd3cf9e267 {"md5": "dc868a97faba5f82e1608de44901fa28", "pid": "071593462", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "language": ["fre"], "conference": false, "identifier": "http://www.idref.fr/071593462", "preferred_name": "Congrès des économistes de langue française", "authorized_access_point": "Congrès des économistes de langue française ( 20 ; 1960 ; Paris )"} 1 -2020-11-11 18:47:39.088202 2020-11-11 18:47:39.088207 dac3f1fb-0e2b-41ce-b057-68763a1d0c6f {"md5": "a5ede736138d1ff75389a6ee8a6cb4c0", "pid": "080852629", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "conference": false, "identifier": "http://www.idref.fr/080852629", "preferred_name": "Pipe Trio", "country_associated": "xx", "date_of_establishment": "19XX", "authorized_access_point": "Pipe Trio", "biographical_information": ["Groupe instrumental de jazz et open music", "Koglmann, Franz, bugle"]} 1 -2020-11-11 18:47:40.215674 2020-11-11 18:47:40.21568 84f3e62a-d2b2-4f28-8885-bf6e673df94a {"md5": "b26117a1af9c7e7dfa7884807922051e", "pid": "087876035", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "qualifier": "baron de", "identifier": "http://www.idref.fr/087876035", "variant_name": ["Cauna, Bernard-Augustin de Cabannes, baron de", "Cabannes, Bernard-Augustin-Henri-Timothée", "Cabannes, Bernard-Augustin de"], "date_of_birth": "1822", "date_of_death": "1883-10-22", "preferred_name": "Cauna, Bernard-Augustin-Henri-Timothée de Cabannes, baron de", "country_associated": "fr", "variant_access_point": ["Cauna, Bernard-Augustin de Cabannes, 1822-1883, baron de", "Cabannes, Bernard-Augustin-Henri-Timothée, 1822-1883", "Cabannes, Bernard-Augustin de, 1822-1883"], "authorized_access_point": "Cauna, Bernard-Augustin-Henri-Timothée de Cabannes, 1822-1883, baron de"} 1 -2020-11-11 18:47:41.087568 2020-11-11 18:47:41.087573 779e8e47-74e9-4971-8656-038f93bfdf01 {"md5": "1fab811d07fb3f5c8f62251d3020e405", "pid": "165617845", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["ita"], "identifier": "http://www.idref.fr/165617845", "variant_name": ["Carelli, Francisco"], "date_of_birth": "1758-10-07", "date_of_death": "1832-09-17", "preferred_name": "Carelli, Francesco", "country_associated": "it", "variant_access_point": ["Carelli, Francisco"], "authorized_access_point": "Carelli, Francesco, 1758-1832", "biographical_information": ["Segretario perpetuo della R. Accademia Ercolanese . Collezionista di monete antiche magna Grecia"]} 1 -2020-11-11 18:47:41.958839 2020-11-11 18:47:41.958844 f54e34f9-3784-4f5f-a1df-d9b222ae6648 {"md5": "b4e034e8b008c5562a0a157ecee76402", "pid": "104547677", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "identifier": "http://www.idref.fr/104547677", "date_of_birth": "1582", "date_of_death": "1631", "preferred_name": "Constantin de Barbanson, Le Père", "country_associated": "fr", "authorized_access_point": "Constantin de Barbanson, Le Père", "biographical_information": ["Prédicateur capucin et gardien du couvent de Cologne"]} 1 -2020-11-11 18:47:42.664583 2020-11-11 18:47:42.664588 39dec45d-0fe1-45ce-9f22-7b03a08e8f40 {"md5": "c5c6626cc7d93c89dbc53934bd64e2bd", "pid": "196562643", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "identifier": "http://www.idref.fr/196562643", "date_of_birth": "1794", "date_of_death": "1859", "preferred_name": "Brondeau, Louis de", "country_associated": "fr", "authorized_access_point": "Brondeau, Louis de, 1794-1859", "biographical_information": ["Mycologue, membre de plusieurs sociétés savantes"]} 1 -2020-11-11 18:47:43.199843 2020-11-11 18:47:43.199848 0803cb97-7737-4099-b888-209ca7b02ffc {"md5": "e18d662beb3d3d438d548e961738d0f8", "pid": "172347343", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "qualifier": "curé", "identifier": "http://www.idref.fr/172347343", "date_of_birth": "1809", "date_of_death": "1873-12-16", "preferred_name": "Chapelle, François, curé", "country_associated": "fr", "authorized_access_point": "Chapelle, François, 1809-1873, curé", "biographical_information": ["Né à Villefoueix, commune de Rempnat (Haute-Vienne)", "Professeur de philiosphie au Collège de Felletin (Creuse) : 1832-1852", "Curé d'Aixe-sur-Vienne (Haute-Vienne)"]} 1 -2020-11-11 18:47:43.606273 2020-11-11 18:47:43.60628 887df873-26ae-4bd3-af62-fc904b5b4be1 {"md5": "09aadd38498ccb4589c76fc8f62eb0e0", "pid": "08049188X", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "conference": false, "identifier": "http://www.idref.fr/08049188X", "preferred_name": "Les Bélaisières", "country_associated": "fr", "date_of_establishment": "19XX", "authorized_access_point": "Les Bélaisières", "biographical_information": ["Groupe de musique Guadeloupéen"]} 1 -2020-11-11 18:47:44.020018 2020-11-11 18:47:44.020023 057242b7-2089-4776-9d01-9b2b471a99d8 {"md5": "8910e173749272dddff452dba1635e1b", "pid": "086912909", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "conference": false, "identifier": "http://www.idref.fr/086912909", "preferred_name": "I Cantori di Carpino", "country_associated": "it", "date_of_establishment": "19XX", "authorized_access_point": "I Cantori di Carpino", "biographical_information": ["Groupe vocal et instrumental de musique traditionnelle italienne, interprète de tarentelles", "Adresse : Carpino (Italie)", "Di Mauro, Marco, chant, guitare"]} 1 -2020-11-11 18:47:44.401847 2020-11-11 18:47:44.401852 c2adc6b9-36fd-42cb-b466-7588f914a080 {"md5": "6ee98e0e0be0b9c3be78f864f270d7f5", "pid": "085649562", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "conference": false, "identifier": "http://www.idref.fr/085649562", "preferred_name": "Le Party d'Édith", "country_associated": "xxc", "date_of_establishment": "19XX", "authorized_access_point": "Le Party d'Édith", "biographical_information": ["Groupe vocal et instrumental"]} 1 -2020-11-11 18:47:45.485042 2020-11-11 18:47:45.485047 2013d7c1-b7b8-43fb-9473-fb180888c0c6 {"md5": "5e5eaa83ae144e150daac9b0548fc9ee", "pid": "069774331", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "qualifier": "grammairien", "identifier": "http://www.idref.fr/069774331", "variant_name": ["Brissaeus, Nicolaus", "Brisset, Nicolas"], "date_of_death": "1540", "preferred_name": "Brissé, Nicolas, grammairien", "country_associated": "fr", "variant_access_point": ["Brissaeus, Nicolaus, ....-1540", "Brisset, Nicolas, ....-1540"], "authorized_access_point": "Brissé, Nicolas, ....-1540, grammairien", "biographical_information": ["Grammairien"]} 1 -2020-11-11 18:47:45.92956 2020-11-11 18:47:45.929566 5c7f153a-a003-4783-bab2-ecce56ef87c6 {"md5": "16fcbc141a15142feadd021fde10d3c3", "pid": "124563627", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "identifier": "http://www.idref.fr/124563627", "date_of_birth": "17", "preferred_name": "Lévrier-Champrion", "country_associated": "fr", "authorized_access_point": "Lévrier-Champrion", "biographical_information": ["Auteur et chansonnier français"]} 1 -2020-11-11 18:47:46.33982 2020-11-11 18:47:46.339825 2df3fb4e-8d58-4f96-908f-29e43e463357 {"md5": "a31a20f5ddd72dffdd8716b2dc3e0eb9", "pid": "16777154X", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "identifier": "http://www.idref.fr/16777154X", "variant_name": ["Saint-Marc, Pierre-Urbain Corneille", "Corneille, Pierre"], "date_of_birth": "1862-07-15", "preferred_name": "Corneille Saint-Marc, Pierre-Urbain", "country_associated": "fr", "variant_access_point": ["Saint-Marc, Pierre-Urbain Corneille", "Corneille, Pierre"], "authorized_access_point": "Corneille Saint-Marc, Pierre-Urbain, 1862-....", "biographical_information": ["Docteur en médecine (Paris, 1887). Fondateur du Théâtre Populaire Poitevin"]} 1 -2020-11-11 18:47:47.267541 2020-11-11 18:47:47.267546 56b939d9-e5b3-45c2-8815-a2f4b9a217b2 {"md5": "fd24b7b8ec4d279cde14eb4bf993d17f", "pid": "078633907", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "identifier": "http://www.idref.fr/078633907", "relation_pid": {"type": "redirect_from", "value": "142901776"}, "variant_name": ["Arnoux, Stéphen", "Stéphen", "A***, Stéphen, pseudonyme", "Alexis, pseudonyme", "Alexis, M"], "date_of_birth": "1782-02-22", "date_of_death": "1860?", "preferred_name": "Arnoult, Stéphen", "country_associated": "fr", "variant_access_point": ["Arnoux, Stéphen", "Stéphen", "A***, Stéphen, pseudonyme", "Alexis, pseudonyme", "Alexis, M"], "authorized_access_point": "Arnoult, Stéphen, 1782-1860?", "biographical_information": ["Auteur dramatique du 19e siècle, poète, chansonnier, romancier"]} 1 -2020-11-11 18:47:48.149771 2020-11-11 18:47:48.149777 af42d44f-1ff9-4398-9cff-961a4f8b6f90 {"md5": "eb884e5bb0ba4adb99502f9bce2c630d", "pid": "073462012", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["ita"], "identifier": "http://www.idref.fr/073462012", "variant_name": ["Franchi de' Cavalieri, Pius", "De' Cavalieri, Pio Franchi", "Cavalieri, Pio Franchi de'"], "date_of_birth": "1869", "date_of_death": "1960", "preferred_name": "Franchi de' Cavalieri, Pio Petro", "country_associated": "it", "variant_access_point": ["Franchi de' Cavalieri, Pius", "De' Cavalieri, Pio Franchi", "Cavalieri, Pio Franchi de'"], "authorized_access_point": "Franchi de' Cavalieri, Pio Petro, 1869-1960"} 1 -2020-11-11 18:47:49.357158 2020-11-11 18:47:49.357163 3962f8a7-9965-4d2d-a698-1d4e172f9ccd {"md5": "4b487bfdef976b39164528b289003932", "pid": "070483981", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["lat"], "identifier": "http://www.idref.fr/070483981", "variant_name": ["Mamertus, Claudianus", "Claudianus Mamertus"], "date_of_death": "0474", "preferred_name": "Mamert, Claudien", "variant_access_point": ["Mamertus, Claudianus", "Claudianus Mamertus"], "parallel_access_point": ["Mamertus, Claudianus Edicius, ....-0474"], "authorized_access_point": "Mamert, Claudien, ....-0474", "biographical_information": ["Prêtre de Vienne en Dauphiné et poète philosophe chrétien. Auteur de \\"De statu animae\\" (De l'état d'âme). Frère de saint Mamert."]} 1 -2020-11-11 18:47:51.064255 2020-11-11 18:47:51.06426 67e480f2-9b76-4512-9060-893843c191a6 {"md5": "e21fcac609b87a0afddeea93d0011b0b", "pid": "233021523", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "identifier": "http://www.idref.fr/233021523", "variant_name": ["Bagnano, Georges Libri-", "Books-Nabonag"], "date_of_birth": "1780", "date_of_death": "1836-01-01", "preferred_name": "Libri-Bagnano, Georges", "country_associated": "it", "variant_access_point": ["Bagnano, Georges Libri-, 1780-1836", "Books-Nabonag, 1780-1836"], "authorized_access_point": "Libri-Bagnano, Georges, 1780-1836", "biographical_information": ["Publiciste. - Noble toscan, s'engagea dans les armées napoléoniennes et s'exila en Belgique et aux Pays-Bas", "Lieu de naissance Florence, Italie. Lieu de décès Amsterdam, Pays-Bas"]} 1 -2020-11-11 18:47:52.518462 2020-11-11 18:47:52.518467 00826dcf-d2e4-42d7-a062-9813870165b1 {"md5": "9e799dfda247cc19f26270a60a2dee7b", "pid": "156591324", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "identifier": "http://www.idref.fr/156591324", "date_of_birth": "1663", "date_of_death": "1711", "preferred_name": "Barrême, Gabriel", "country_associated": "fr", "authorized_access_point": "Barrême, Gabriel, 1663-1711?", "biographical_information": ["Fils de François Barrême. Arithméticien. Censeur royal"]} 1 -2020-11-11 18:47:53.427893 2020-11-11 18:47:53.427899 c0d826d1-7617-4a0c-a571-b3f7353e4abe {"md5": "ad94a0eeeaf430f7d4006405fcb3c012", "pid": "098326635", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "identifier": "http://www.idref.fr/098326635", "variant_name": ["Aranthon d'Alex, Jean", "Aranthon d'Alex, Jean d'", "Alex, Jean d'Arenthon d'", "Alex, Jean d'Aranthon d'"], "date_of_birth": "1620-09-25", "date_of_death": "1695-07-04", "preferred_name": "Arenthon d'Alex, Jean d'", "country_associated": "sz", "variant_access_point": ["Aranthon d'Alex, Jean", "Aranthon d'Alex, Jean d'", "Alex, Jean d'Arenthon d'", "Alex, Jean d'Aranthon d'"], "authorized_access_point": "Arenthon d'Alex, Jean d', 1620-1695", "biographical_information": ["Prince-évêque de Genève (1661-1695)", "Né à Château d'Alex (Haute-Savoie) et mort à Abbaye d'Abondance (Haute-Savoie). Il fut Prince-évêque de Genève de 1661 à 1695"]} 1 -2020-11-11 18:47:54.276018 2020-11-11 18:47:54.276024 b076f360-d04b-4433-8935-7c61e8c3dece {"md5": "2336cee11a355c63084a8335e2cb879f", "pid": "02778259X", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "conference": false, "identifier": "http://www.idref.fr/02778259X", "preferred_name": "Van Halen ( groupe )", "authorized_access_point": "Van Halen ( groupe )", "biographical_information": ["Groupe hollandais de rock et hard-rock, créé en 1974"]} 1 -2020-11-11 18:47:55.516837 2020-11-11 18:47:55.516842 785aa078-9c94-4a94-a83b-9f941644dce7 {"md5": "4da984867c0a52e9b19219b12cfd4377", "pid": "085209910", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["lat"], "identifier": "http://www.idref.fr/085209910", "date_of_birth": "1665-02-12", "date_of_death": "1721-09-11", "preferred_name": "Camerarius, Rudolf Jakob", "country_associated": "gw", "authorized_access_point": "Camerarius, Rudolf Jakob, 1665-1721", "biographical_information": ["Botaniste et médecin"]} 1 -2020-11-11 18:47:56.515499 2020-11-11 18:47:56.515504 ca3e465c-8881-4189-a0b9-2ca59e816af3 {"md5": "40b4916064a373956cbfee39ff3fd501", "pid": "081816529", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["ger"], "qualifier": "reine de Prusse", "identifier": "http://www.idref.fr/081816529", "variant_name": ["Elisabeth Christine, Queen, consort of Frederick II, King of Prussia", "Élisabeth-Christine de Brunswick Wolfenbuttel, reine de Prusse", "Brunswick-Wolfenbuttel, isabeth-Christine de, eine de Prusse", "Elisabeth-Christine von Braunschweig-Bevern, reine de Prusse", "Braunschweig-Bevern, Elisabeth-Christine von, reine de Prusse"], "date_of_birth": "1715-11-08", "date_of_death": "1797-01-13", "preferred_name": "Elisabeth Christine, reine de Prusse", "variant_access_point": ["Elisabeth Christine, 1715-1797, Queen, consort of Frederick II, King of Prussia", "Élisabeth-Christine de Brunswick Wolfenbuttel, reine de Prusse", "Brunswick-Wolfenbuttel, isabeth-Christine de, eine de Prusse", "Elisabeth-Christine von Braunschweig-Bevern, reine de Prusse", "Braunschweig-Bevern, Elisabeth-Christine von, reine de Prusse"], "authorized_access_point": "Elisabeth Christine, 1715-1797, reine de Prusse", "biographical_information": ["Fille du duc Ferdinand Albert II de Brunswick-Wolfenbüttel, et nièce de Charles VI du Saint-Empire. - Épouse Frédéric II de Prusse en 1733"]} 1 -2020-11-11 18:47:57.407167 2020-11-11 18:47:57.407173 5008eeb2-965d-4d6f-9212-2ffc024b5ec7 {"md5": "817650c17f96688f9cc07ee091e94258", "pid": "189341793", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "qualifier": "comte de", "identifier": "http://www.idref.fr/189341793", "variant_name": ["Bourgevin Vialart de Saint-Morys, Etienne", "Vialart de Saint-Morys, Etienne de"], "date_of_birth": "1772-01-17", "date_of_death": "1817-07-21", "preferred_name": "Saint-Morys, Etienne Bourgevin Vialart, comte de", "country_associated": "fr", "variant_access_point": ["Bourgevin Vialart de Saint-Morys, Etienne", "Vialart de Saint-Morys, Etienne de"], "authorized_access_point": "Saint-Morys, Etienne Bourgevin Vialart, 1772-1817, comte de"} 1 -2020-11-11 18:47:57.845622 2020-11-11 18:47:57.845627 9b903434-ead7-45c8-a05b-622fa2a40c84 {"md5": "6d2ceda8ddf71401fb59195e24ea9bad", "pid": "057286752", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "identifier": "http://www.idref.fr/057286752", "variant_name": ["Objac, Émile d'"], "date_of_birth": "18XX", "preferred_name": "Jacob, Émile", "country_associated": "fr", "variant_access_point": ["Objac, Émile d'"], "authorized_access_point": "Jacob, Émile", "biographical_information": ["Professeur au lycée Louis-le-Grand (en 1885)"]} 1 -2020-11-11 18:47:58.731501 2020-11-11 18:47:58.731507 10b2978c-af63-45d9-831e-cf0c828d8c39 {"md5": "321972dea346c135084cf976e37c85fb", "pid": "068979401", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["ita"], "identifier": "http://www.idref.fr/068979401", "variant_name": ["Cavalleri, Giovanni Battista", "Cavalleriis, Giovanni-Battista de", "Cavalieri, Giovanni-Battista de", "Cavallieri, Giovanni Battista", "Cavalieri, Giovanni-Battista", "Cavalerius, Joannes Baptista"], "date_of_birth": "1525", "date_of_death": "1601", "preferred_name": "Cavalieri, Giovanni Battista", "country_associated": "it", "variant_access_point": ["Cavalleri, Giovanni Battista", "Cavalleriis, Giovanni-Battista de", "Cavalieri, Giovanni-Battista de", "Cavallieri, Giovanni Battista", "Cavalieri, Giovanni-Battista", "Cavalerius, Joannes Baptista"], "parallel_access_point": ["Cavallerius, Joannes Baptista"], "authorized_access_point": "Cavalieri, Giovanni Battista, 1525-1601?", "biographical_information": ["Graveur italien, né à Lagertale (Trentin) en 1525, mort à Rome en 1597 ou 1601. Il s'inspira de la manière d'Aeneas Vico, mais il lui demeura inférieur. Son oeuvre, très important, comprend plus de 380 planches, dont la plupart reproduisent les ouvrages des grands maîtres italiens et portent le monogramme CB."]} 1 -2020-11-11 18:47:59.615082 2020-11-11 18:47:59.615087 56b85e48-52eb-435f-839c-8ef4f6ce322d {"md5": "3e572d466996f649c7e350d0a1390b4e", "pid": "130990221", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "identifier": "http://www.idref.fr/130990221", "variant_name": ["Descudier, Alfred", "Ego"], "date_of_birth": "1837", "date_of_death": "1883", "preferred_name": "Aunay, Alfred d'", "country_associated": "fr", "variant_access_point": ["Descudier, Alfred", "Ego"], "authorized_access_point": "Aunay, Alfred d', 1837-1883", "biographical_information": ["Journaliste, auteur dramatique"]} 1 -2020-11-11 18:48:00.183118 2020-11-11 18:48:00.183124 09590518-a7ed-4278-937e-6a8af02009cc {"md5": "64cd67c357838eea965268995094512f", "pid": "147013283", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "identifier": "http://www.idref.fr/147013283", "variant_name": ["Philippe", "Amédée", "Roustan, François Philippe"], "date_of_birth": "1785-02-25", "date_of_death": "1847-09-26", "preferred_name": "Roustan, Philippe-Amédée", "country_associated": "fr", "variant_access_point": ["Philippe", "Amédée", "Roustan, François Philippe"], "authorized_access_point": "Roustan, Philippe-Amédée, 1785-1847", "biographical_information": ["Acteur, vaudevilliste. A utilisé les pseudonymes d'Amédée et de Philippe. On le trouve au Vaudeville de 1815 à 1825, aux Nouveautés (1827), au Palais-Royal (1831-1841) et aux Folies-Dramatiques. Il avait épousé Mlle Volnais de la Comédie-Française"]} 1 -2020-11-11 18:48:01.120075 2020-11-11 18:48:01.120081 100aadd1-221f-4531-ad07-20579110a1e0 {"md5": "7c71dc22587ce7c895d9b5b034b80bf5", "pid": "074087061", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "identifier": "http://www.idref.fr/074087061", "date_of_birth": "1851", "date_of_death": "1925", "preferred_name": "Avesne, E. d'", "country_associated": "fr", "authorized_access_point": "Avesne, E. d', 1851-1925"} 1 -2020-11-11 18:48:01.666795 2020-11-11 18:48:01.666801 1ccfdd4d-f8c3-48af-9e6f-76080ad9289f {"md5": "05db1d5032b9a619809a10032a0073b6", "pid": "088356809", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "identifier": "http://www.idref.fr/088356809", "variant_name": ["Bougleux, Louis-Auguste Montalant"], "preferred_name": "Montalant-Bougleux, Louis-Auguste", "country_associated": "fr", "variant_access_point": ["Bougleux, Louis-Auguste Montalant"], "authorized_access_point": "Montalant-Bougleux, Louis-Auguste"} 1 -2020-11-11 18:48:02.647847 2020-11-11 18:48:02.647852 0ca0ab00-7016-43df-83d7-67731cd6c11a {"md5": "34d6b0f51aea9c16b9dc65809a74c1ab", "pid": "131513168", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "qualifier": "comte de", "identifier": "http://www.idref.fr/131513168", "variant_name": ["Bourbon, Charles de"], "date_of_birth": "1566", "date_of_death": "1612", "preferred_name": "Soissons, Charles de Bourbon, comte de", "country_associated": "fr", "variant_access_point": ["Bourbon, Charles de, 1566-1612"], "authorized_access_point": "Soissons, Charles de Bourbon, 1566-1612, comte de", "biographical_information": ["Comte de Soissons. Fils de Louis Ier, prince de Condé", "Lieu de naissance Nogent-le-Rotrou (Eure-et-Loir). Lieu de décès Blandy"]} 1 -2020-11-11 18:48:03.559199 2020-11-11 18:48:03.559205 1b14e1f0-0a24-4c83-85a3-235602b2d9d9 {"md5": "d1cccbd8f29c1b6bad6c967b2027b7ca", "pid": "192777475", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "identifier": "http://www.idref.fr/192777475", "variant_name": ["M. Mérault", "Mérault, A.-R., abbé", "Auteur des apologistes involontaires, L'", "Athanase Rene Merault Bizy"], "date_of_birth": "1744", "date_of_death": "1835", "preferred_name": "Mérault de Bizy, Athanase-René", "country_associated": "fr", "variant_access_point": ["M. Mérault", "Mérault, A.-R., abbé", "Auteur des apologistes involontaires, L'", "Athanase Rene Merault Bizy"], "authorized_access_point": "Mérault de Bizy, Athanase-René, 1744-1835", "biographical_information": ["Abbé. Littérateur"]} 1 +2020-11-11 18:47:04.547394 2020-11-11 18:47:04.547399 09c449e7-7150-4c90-bcfe-0abb3b27c076 {"md5": "d87e71f810ef6669084cb97da82bc98b", "pid": "183349199", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["ita", "lat"], variant_name": ["Catalano, Giuseppe", "Catalanus, Josephus"], "date_of_birth": "1698", "date_of_death": "1764", "preferred_name": "Catalani, Giuseppe", "country_associated": "it", "variant_access_point": ["Catalano, Giuseppe", "Catalanus, Josephus"], "authorized_access_point": "Catalani, Giuseppe, 1698-1764", "biographical_information": ["Historien, théologien et juriste"]} 1 +2020-11-11 18:47:05.792621 2020-11-11 18:47:05.792629 fc7d93a5-67a3-4800-93cd-73b9c77f142f {"md5": "a6dfb076c5dfe12db1059b453ae62047", "pid": "179863436", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["gre"], "date_of_birth": "1972", "preferred_name": "Rogakos, Megakles", "country_associated": "gr", "authorized_access_point": "Rogakos, Megakles, 1972-....", "biographical_information": ["Art historian and curator"]} 1 +2020-11-11 18:47:09.036072 2020-11-11 18:47:09.036078 45524329-a7f9-4e3c-a04c-420784c882ff {"md5": "3d358ff9acb854d6a7c35b9ccc86e669", "pid": "097556505", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "date_of_birth": "1761-02-23", "date_of_death": "1852-02-09", "preferred_name": "Fleuriau de Bellevue, Louis Benjamin", "country_associated": "fr", "authorized_access_point": "Fleuriau de Bellevue, Louis Benjamin, 1761-1852", "biographical_information": ["Homme politique charentais. Géologue, membre de l'Académie des Sciences en 1816."]} 1 +2020-11-11 18:47:09.483127 2020-11-11 18:47:09.483132 aec3f16f-4013-45a1-8e26-686d7dad5959 {"md5": "3a3f98d85241e45b0ddaf010b21d9d6a", "pid": "223404543", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "variant_name": ["Lépinois, Eugène Louis Ernest de Buchère de"], "date_of_birth": "18..", "date_of_death": "18..?", "preferred_name": "Buchère de Lépinois, Eugène Louis Ernest de", "country_associated": "fr", "variant_access_point": ["Lépinois, Eugène Louis Ernest de Buchère de"], "authorized_access_point": "Buchère de Lépinois, Eugène Louis Ernest de"} 1 +2020-11-11 18:47:10.847869 2020-11-11 18:47:10.847875 0ea2ad7f-11d4-4b93-97c4-e6520ecb77f2 {"md5": "69bdcbda767abb74e1217b3285a567fb", "pid": "197394787", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["gre"], "qualifier": "néo-helléniste", "date_of_birth": "1957", "preferred_name": "Sérgīs, Manólīs G., néo-helléniste", "country_associated": "gr", "parallel_access_point": ["Σέργης, Μανόλης Γ., 1957-...."], "authorized_access_point": "Sérgīs, Manólīs G., 1957-...., néo-helléniste", "biographical_information": ["Néo-helléniste"]} 1 +2020-11-11 18:47:11.570262 2020-11-11 18:47:11.570267 51c731a6-644a-4ea9-909d-c71120527400 {"md5": "f2c813843c221b93efeeb9ef3966aa7f", "pid": "034875891", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "language": ["mul"], "conference": false, "variant_name": ["DPM"], "preferred_name": "Derek Prince ministries", "variant_access_point": ["DPM"], "date_of_establishment": "19XX", "authorized_access_point": "Derek Prince ministries", "biographical_information": ["Derek Prince ministries international, PO box 19501, Charlotte, North Carolina. Derek Prince ministries France, route d'Oupia, BP 31, 34210 Olonzac"]} 1 +2020-11-11 18:47:12.439873 2020-11-11 18:47:12.439879 a6642cee-0832-439d-b641-029c9772af57 {"md5": "a80deb9789b47e25801fcf5d5b02aab3", "pid": "027483061", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "language": ["mul"], "conference": false, "relation_pid": {"type": "redirect_from", "value": "029057183"}, "variant_name": ["CECA", "Communautés européennes. Communauté européenne du charbon et de l'acier", "ECSC", "EGKS", "Europäische Gemeinschaft für Kohle und Stahl", "European Coal and Steel Community", "Comunità europea del carbone e dell'acciaio"], "preferred_name": "Communauté européenne du charbon et de l'acier", "variant_access_point": ["CECA", "Communautés européennes. Communauté européenne du charbon et de l'acier", "ECSC", "EGKS", "Europäische Gemeinschaft für Kohle und Stahl", "European Coal and Steel Community", "Comunità europea del carbone e dell'acciaio"], "date_of_establishment": "1951-04-18", "authorized_access_point": "Communauté européenne du charbon et de l'acier", "biographical_information": ["Créée par le Traité de Paris du 18-04-1951 ; établie à Luxembourg le 25-08-1952. A cessé d'exister en 2002 aux termes d'une décision de la Commission européenne du 13-03-1991"]} 1 +2020-11-11 18:47:13.652673 2020-11-11 18:47:13.652678 f020b623-c01e-44cc-b546-16c5223f2777 {"md5": "98d5c79c1ca524a575e5921054c91f28", "pid": "076515788", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "language": ["mul"], "conference": false, "variant_name": ["Congrès littéraire international de la protection de la propriété littéraire dans les rapports internationaux"], "preferred_name": "Congrès littéraire international", "country_associated": "fr", "date_of_termination": "1878-06-18", "variant_access_point": ["Congrès littéraire international de la protection de la propriété littéraire dans les rapports internationaux"], "date_of_establishment": "1878-06-06", "authorized_access_point": "Congrès littéraire international ( 1878 ; Paris )"} 1 +2020-11-11 18:47:14.110905 2020-11-11 18:47:14.110911 b955c24e-f5e4-4bb7-8fbe-0760ab5bbe3e {"md5": "f35202455b5d8917b26c4eb026a2997c", "pid": "078061911", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "conference": false, "preferred_name": "Man and women's lover", "country_associated": "fr", "date_of_establishment": "19XX", "authorized_access_point": "Man and women's lover", "biographical_information": ["Groupe de variétés antillaises"]} 1 +2020-11-11 18:47:14.886817 2020-11-11 18:47:14.886822 ad7db727-5220-4686-8eee-f8a27c26bbd1 {"md5": "4fe62f07e423d88fe157265a33221563", "pid": "112244424", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "variant_name": ["Chaperon, Nicolas"], "date_of_birth": "1612", "date_of_death": "1656", "preferred_name": "Chapron, Nicolas", "country_associated": "fr", "variant_access_point": ["Chaperon, Nicolas"], "authorized_access_point": "Chapron, Nicolas, 1612-1656?", "biographical_information": ["Peintre, copiste, dessinateur et graveur"]} 1 +2020-11-11 18:47:15.608691 2020-11-11 18:47:15.608696 facb7077-2fd9-4f45-a8cf-21025a36f0dc {"md5": "706ae29f3d67b84780a796adb4476388", "pid": "08233367X", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "conference": false, "preferred_name": "Voci di a Gravona", "country_associated": "fr", "date_of_establishment": "19XX", "authorized_access_point": "Voci di a Gravona", "biographical_information": ["Groupe vocal de polyphonie corse"]} 1 +2020-11-11 18:47:16.536311 2020-11-11 18:47:16.536316 2737d9a6-955e-42c8-96b6-8d00b0b0b711 {"md5": "ce009fc531ec1993f6241852854b3ed1", "pid": "080491898", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "conference": false, "preferred_name": "Les Doudous de la Grande Terre", "country_associated": "fr", "date_of_establishment": "19XX", "authorized_access_point": "Les Doudous de la Grande Terre", "biographical_information": ["Groupe de musique Guadeloupéen"]} 1 +2020-11-11 18:47:16.964567 2020-11-11 18:47:16.964573 57e640e6-7c92-4465-9bd7-9526f052d226 {"md5": "d65dd14bd8c12742b07e9aca11fefecb", "pid": "078069084", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "conference": false, "variant_name": ["Gürzenich Orchester Köln", "Orchestre du Gürzenich de Cologne", "Orchestre de l'opéra de Cologne"], "preferred_name": "Gürzenich-Orchester Kölner Philharmoniker", "country_associated": "gw", "variant_access_point": ["Gürzenich Orchester Köln", "Orchestre du Gürzenich de Cologne", "Orchestre de l'opéra de Cologne"], "date_of_establishment": "1857", "authorized_access_point": "Gürzenich-Orchester Kölner Philharmoniker", "biographical_information": ["Succède à la Musikalische Gesellschaft (1812-) qui avait fusionné en 1827 avec le Singverein pour former la Konzertgesellschaft. Assure les services de l'Opéra de Cologne", "Adresse : Bischofsgartenstr. 1, D-50667 Köln. Contact : 0221.2.21.2.24.37. Télécopie : 0221.2.1.2.38.00", "Kreutzer, Konradin, direction (1840-1842)"]} 1 +2020-11-11 18:47:17.708551 2020-11-11 18:47:17.708558 16a30633-ef47-40f6-bfcf-952866e01d1a {"md5": "41d5ad0caf8e81f982b3519169d216b0", "pid": "079491251", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "language": ["eng"], "conference": false, "preferred_name": "Ultimation", "country_associated": "xxu", "date_of_establishment": "19XX", "authorized_access_point": "Ultimation", "biographical_information": ["Développeur de logiciels de loisir", "Adresse : 204 G street, suite 202, 94952 Petaluma, CA"]} 1 +2020-11-11 18:47:19.578146 2020-11-11 18:47:19.578152 3309439f-022e-4683-8b31-95591d795741 {"md5": "b4ee1175dfd7bf7045b4d3e52afc2773", "pid": "030348722", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "language": ["ger"], "conference": false, "variant_name": ["Bundesverband der Betriebskrankenkassen ( RFA )"], "preferred_name": "Bundesverband der Betriebskrankenkassen ( Allemagne )", "country_associated": "gw", "variant_access_point": ["Bundesverband der Betriebskrankenkassen ( RFA )"], "date_of_establishment": "19XX", "authorized_access_point": "Bundesverband der Betriebskrankenkassen ( Allemagne )"} 1 +2020-11-11 18:47:20.43832 2020-11-11 18:47:20.438326 6d8db78d-4d59-48ec-ad1f-4dd8ee74caac {"md5": "9f4c8d121b5e671c96f6ad2eef7c72b5", "pid": "02638714X", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "language": ["fre"], "conference": false, "variant_name": ["Centre de recherches sur l'Occident moderne ( Paris )", "Institut de recherche sur les civilisations de l'Occident moderne ( Paris )", "Université de Paris-Sorbonne. Institut de recherches sur les civilisations de l'Occident moderne", "IRCOM", "Sorbonne université ( Paris ). Institut de recherches sur les civilisations de l'Occident moderne"], "preferred_name": "Institut de recherches sur les civilisations de l'Occident moderne ( Paris )", "country_associated": "fr", "variant_access_point": ["Centre de recherches sur l'Occident moderne ( Paris )", "Institut de recherche sur les civilisations de l'Occident moderne ( Paris )", "Université de Paris-Sorbonne. Institut de recherches sur les civilisations de l'Occident moderne", "IRCOM", "Sorbonne université ( Paris ). Institut de recherches sur les civilisations de l'Occident moderne"], "authorized_access_point": "Institut de recherches sur les civilisations de l'Occident moderne ( Paris )", "biographical_information": ["Laboratoire associé n° 100 du C.N.R.S", "1, rue Victor Cousin, 75230 Paris Cedex 05", "L’Institut de Recherches sur les Civilisations de l’Occident Moderne (IRCOM) est une UFR de la Faculté des Lettres de Sorbonne Université consacrée à la recherche et à l’enseignement en Master et Doctorat. La finalité de l’Institut est l’analyse des civilisations européennes depuis le début du XIVe siècle jusqu’au XIXe siècle."]} 1 +2020-11-11 18:47:21.586757 2020-11-11 18:47:21.586762 03af33e4-f351-43c4-b85c-e322739bf1a7 {"md5": "8c4257edd51f2f7f84c20c8e95663cf9", "pid": "03459910X", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "language": ["eng"], "conference": false, "variant_name": ["Guns N' Roses", "GNR"], "preferred_name": "Guns n'roses ( groupe )", "country_associated": "xxu", "variant_access_point": ["Guns N' Roses", "GNR"], "authorized_access_point": "Guns n'roses ( groupe )", "biographical_information": ["Groupe américain de musique rock"]} 1 +2020-11-11 18:47:22.021137 2020-11-11 18:47:22.021142 b24d4333-00b0-4f7a-acd5-967a8879e9af {"md5": "1b697efbdd1940b04236a42fa70b9d45", "pid": "029402360", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "language": ["fre"], "conference": false, "variant_name": ["Université scientifique et médicale ( Grenoble ). Faculté de médecine", "Université scientifique et médicale ( Grenoble ). UFR de médecine"], "preferred_name": "Université Joseph Fourier ( Grenoble ). UER de médecine", "country_associated": "fr", "date_of_termination": "1987-12-08", "variant_access_point": ["Université scientifique et médicale ( Grenoble ). Faculté de médecine", "Université scientifique et médicale ( Grenoble ). UFR de médecine"], "date_of_establishment": "1971", "authorized_access_point": "Université Joseph Fourier ( Grenoble ). UER de médecine", "biographical_information": ["Cette UER (devenue UFR) de médecine succède à celle de l'Université de Grenoble, à la fondation de l'Université scientifique et médicale de Grenoble 1 (rebaptisée depuis le 8 décembre 1987 Université Joseph Fourier). Le terme \\"faculté\\" est encore en usage sur les publications.", "Domaine de la Merci, place Commandant-Nale, 38700 La Tronche. Tél. 04.76.63.71"]} 1 +2020-11-11 18:47:22.417518 2020-11-11 18:47:22.417523 5dbc8412-17c3-496b-bdda-b6b8984a8cee {"md5": "925047b8336eb69482c493793c0daa49", "pid": "080809197", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "conference": false, "preferred_name": "Lenny Dee versus DJ Paul", "country_associated": "xx", "date_of_establishment": "19XX", "authorized_access_point": "Lenny Dee versus DJ Paul", "biographical_information": ["Duo instrumental. Techno Hardcore", "Dee, Lenny, synthétiseur (19..-....)"]} 1 +2020-11-11 18:47:22.838499 2020-11-11 18:47:22.838505 e830b2f2-38f9-4a46-85c2-8f8ca2464554 {"md5": "104e81191d82104d5acaaa4f53df7a89", "pid": "079206557", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "conference": false, "preferred_name": "Universal ( Groupe de variétés antillaises )", "country_associated": "fr", "date_of_establishment": "19XX", "authorized_access_point": "Universal ( Groupe de variétés antillaises )", "biographical_information": ["Uger, Ariste, chant"]} 1 +2020-11-11 18:47:23.412719 2020-11-11 18:47:23.412725 3f3ea658-aa60-47f0-a740-bd2382e95ac5 {"md5": "e83d67e024f380bd5bd126567572c219", "pid": "080715060", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "conference": false, "preferred_name": "Cour des grand", "country_associated": "cf", "date_of_establishment": "19XX", "authorized_access_point": "Cour des grand", "biographical_information": ["Groupe de variétés congolaises"]} 1 +2020-11-11 18:47:23.792352 2020-11-11 18:47:23.792357 98d27121-5b27-4fbe-895a-08d81cd6e397 {"md5": "3023b1bfe567d337ec9d3ca45dbc8fa4", "pid": "080785425", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "conference": false, "variant_name": ["Cloud"], "preferred_name": "C-Loud", "country_associated": "xx", "variant_access_point": ["Cloud"], "date_of_establishment": "19XX", "authorized_access_point": "C-Loud", "biographical_information": ["Groupe de rock", "Larsen, Lory, chant"]} 1 +2020-11-11 18:47:24.240173 2020-11-11 18:47:24.240179 8bfb81fe-bc0b-4bf9-a234-25caf3dc5043 {"md5": "f64353f9e742878fc731ca9a300432a7", "pid": "080826660", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "conference": false, "variant_name": ["Triaca bum bum Alchemic folk orchestra"], "preferred_name": "Alchemic folk orchestra", "country_associated": "it", "variant_access_point": ["Triaca bum bum Alchemic folk orchestra"], "date_of_establishment": "19XX", "authorized_access_point": "Alchemic folk orchestra", "biographical_information": ["Groupe vocal et instrumental de musique populaire de Lombardie (Italie)", "Zuffi, Stefano, vielle à roue, violon, mandoline"]} 1 +2020-11-11 18:47:25.017845 2020-11-11 18:47:25.017851 be364a36-8d7e-4eae-ae79-9419a8ec6ad4 {"md5": "4e70326fdd007639437e4488e4bd3945", "pid": "083442774", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "language": ["fre"], "conference": false, "preferred_name": "Congrès de psychiatrie et de neurologie de langue française", "country_associated": "fr", "date_of_establishment": "1980", "authorized_access_point": "Congrès de psychiatrie et de neurologie de langue française ( 78 ; 1980 ; Reims )"} 1 +2020-11-11 18:47:26.08193 2020-11-11 18:47:26.081935 c66dfab3-7704-4b4b-b2ac-ce275bc85e2a {"md5": "522d158c37fa60dbb1c0c626ab69859d", "pid": "081589093", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "qualifier": "duc d'", "relation_pid": {"type": "redirect_from", "value": "150248199"}, "variant_name": ["Gondrin de Pardaillan de Montespan, Louis-Antoine de", "Pardaillan de Montespan, Louis-Antoine de Gondrin de", "Montespan, Louis-Antoine de Pardaillan de Gondrin de"], "date_of_birth": "1665-09-05", "date_of_death": "1736-11-02", "preferred_name": "Antin, Louis-Antoine de Pardaillan, duc d'", "country_associated": "fr", "variant_access_point": ["Gondrin de Pardaillan de Montespan, Louis-Antoine de, 1665-1736", "Pardaillan de Montespan, Louis-Antoine de Gondrin de, 1665-1736", "Montespan, Louis-Antoine de Pardaillan de Gondrin de, 1665-1736"], "authorized_access_point": "Antin, Louis-Antoine de Pardaillan, 1665-1736, duc d'", "biographical_information": ["Fils légitime de Louis-Henri de Pardaillan de Gondrin, marquis de Montespan, et d’Athénaïs de Montespan. Marquis d'Antin, de Gondrin et de Montespan (1701) ; premier duc d'Antin (1711), titre auquel il renonce en 1722 au profit de son petit-fils. - Gouverneur d'Orléans (1707). Surintendant des Bâtiments du Roi (1708). Lieutenant général et gouverneur de la province d'Alsace"]} 1 +2020-11-11 18:47:26.503975 2020-11-11 18:47:26.50398 3234dc96-3417-4212-9bc9-391fd764e947 {"md5": "aea40104cb806fcebb25ace0254103fa", "pid": "03227758X", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "language": ["fre"], "conference": false, "variant_name": ["Camp d'internement de Compiègne-Royallieu", "Frontstalag 122 ( Compiègne, Oise )"], "preferred_name": "Camp de Compiègne-Royallieu", "country_associated": "fr", "variant_access_point": ["Camp d'internement de Compiègne-Royallieu", "Frontstalag 122 ( Compiègne, Oise )"], "date_of_establishment": "19XX", "authorized_access_point": "Camp de Compiègne-Royallieu"} 1 +2020-11-11 18:47:27.322674 2020-11-11 18:47:27.322679 53fefc8a-9404-4d8e-a113-7d3f4f3f67ac {"md5": "05439dbbf0784f2d089a2fb52950d301", "pid": "028893670", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "language": ["mul"], "conference": false, "variant_name": ["Parlement européen. Directorate-general for research", "European Parliament. Directorate General for Research", "European Parliament. General secretariat", "General secretariat of the European Parliament", "Parlement européen. Generaldirektion Wissenschaft", "Parlemento europeo. Dirección general de estudios", "Parlement européen. Secrétariat général. Direction générale des études"], "preferred_name": "Parlement européen. Direction générale des études", "variant_access_point": ["Parlement européen. Directorate-general for research", "European Parliament. Directorate General for Research", "European Parliament. General secretariat", "General secretariat of the European Parliament", "Parlement européen. Generaldirektion Wissenschaft", "Parlemento europeo. Dirección general de estudios", "Parlement européen. Secrétariat général. Direction générale des études"], "authorized_access_point": "Parlement européen. Direction générale des études"} 1 +2020-11-11 18:47:29.112877 2020-11-11 18:47:29.112882 1d66f039-8084-40a0-9195-f4bd0cddcd4b {"md5": "b773e1215c3e734e76e2d5fec5739d03", "pid": "149367430", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["grc", "lat"], "variant_name": ["Hermonyme, Georges, de Sparte", "Ερμώνυμος, Γεώργιος"], "date_of_birth": "1452", "date_of_death": "1508", "preferred_name": "Hermonymus, Georgius", "country_associated": "gr", "variant_access_point": ["Hermonyme, Georges, de Sparte", "Ερμώνυμος, Γεώργιος"], "authorized_access_point": "Hermonymus, Georgius, 1452-1508", "biographical_information": ["Homme de Lettres d'origine grecque, maître de grec à Paris"]} 1 +2020-11-11 18:47:30.693736 2020-11-11 18:47:30.693742 f24642a0-5ae2-4a86-bd32-94e9e7010032 {"md5": "90303b0620bf454e7d674ac7e3f8b5a9", "pid": "033967776", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "variant_name": ["Boiteau, Dieudonné Alexandre Paul", "Boiteau d'Ambly, Paul"], "date_of_birth": "1829-11-25", "date_of_death": "1886-06-11", "preferred_name": "Boiteau, Paul", "country_associated": "fr", "variant_access_point": ["Boiteau, Dieudonné Alexandre Paul", "Boiteau d'Ambly, Paul"], "authorized_access_point": "Boiteau, Paul, 1829-1886", "biographical_information": ["Économiste. - Éditeur de livres pour enfants. - Ami de Béranger"]} 1 +2020-11-11 18:47:31.114169 2020-11-11 18:47:31.114174 35c93330-797b-4884-a54d-71914fbf2296 {"md5": "1003b578e802a1fc1abc5a73f2c42e78", "pid": "075825686", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "language": ["fre"], "conference": false, "relation_pid": {"type": "redirect_from", "value": "08602020X"}, "variant_name": ["Compagnie d'Orléans ( France )", "Chemins de fer Paris-Orléans", "Chemins de fer d'Orléans", "Paris-Orléans", "PO"], "preferred_name": "Compagnie du chemin de fer de Paris à Orléans", "country_associated": "fr", "date_of_termination": "1938", "variant_access_point": ["Compagnie d'Orléans ( France )", "Chemins de fer Paris-Orléans", "Chemins de fer d'Orléans", "Paris-Orléans", "PO"], "date_of_establishment": "1838-08-13", "authorized_access_point": "Compagnie du chemin de fer de Paris à Orléans", "biographical_information": ["Compagnie fondée en 1838, qui étendra son réseau jusque dans le sud de la France. Fusionne en 1934 avec la Compagnie du Midi. Son réseau est nationalisé en 1938 et elle devient une société financière puis une banque (Paris Orléans)"]} 1 +2020-11-11 18:47:32.00797 2020-11-11 18:47:32.007975 c5a21949-6bd0-46e3-b797-1a6c60480b5d {"md5": "e32a1389ea9fcfda1b36b71f8d66cf27", "pid": "095116672", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "qualifier": "reine d'Espagne", "variant_name": ["Maria Louisa de Orléans, reine d'Espagne", "Marie-Louise, reine d'Espagne", "Orléans, Marie-Louise d', reine d'Espagne"], "date_of_birth": "1662-03-27", "date_of_death": "1689-02-12", "preferred_name": "Marie Louise d'Orléans, reine d'Espagne", "country_associated": "fr", "variant_access_point": ["Maria Louisa de Orléans, reine d'Espagne", "Marie-Louise, reine d'Espagne", "Orléans, Marie-Louise d', reine d'Espagne"], "authorized_access_point": "Marie Louise d'Orléans, 1662-1689, reine d'Espagne", "biographical_information": ["Née à Paris, morte à Madrid", "Fille de Philippe Ier, duc d'Orléans et d'Henriette d'Angleterre, elle épouse en 1679 Charles II roi d'Espagne"]} 1 +2020-11-11 18:47:32.630509 2020-11-11 18:47:32.630514 508b82ad-43d5-4e23-aaed-b5817e40b631 {"md5": "45f54009d7da6487d98c4403aa565059", "pid": "081780931", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["ger"], "variant_name": ["Brockdorff, Cay Ludwig Georg Conrad, baron von"], "date_of_birth": "1874-04-17", "date_of_death": "1946-01-29", "preferred_name": "Brockdorff, Cay", "country_associated": "gw", "variant_access_point": ["Brockdorff, Cay Ludwig Georg Conrad, baron von"], "authorized_access_point": "Brockdorff, Cay, 1874-1946", "biographical_information": ["Philosophe et sociologue"]} 1 +2020-11-11 18:47:33.02356 2020-11-11 18:47:33.023565 ddfd7e77-03b4-4998-8dad-66b14833c1ab {"md5": "dc2099f0193f9277850c97156ad5393b", "pid": "073668818", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "language": ["mon"], "conference": false, "variant_name": ["БНМАУ Шинжлэх Ухааны Академи. Түүхийн Хүрээлэн ( Oulan-Bator, Mongolie )", "Mongolyn Šinžlèh uhaany Akademi. Tùùhijn hùrèèlèn", "Mongol ulsyn Šinžlèh uhaany Akademi. Tùùhijn hùrèèlèn", "BNMAU-yn Šinžlèh uhaany Akademi. Tùùhijn hùrèèlèn", "BNMAU Šinžlèh uhaany Akademi. Tùùhijn hùrèèlèn", "Түүхийн Хүрээлэн", "Tùùhijn hùrèèlèn", "Академия наук Монгольской народной республики. Институт истории", "Akademiâ nauk Mongolʹskoj narodnoj respubliki. Institut istorii", "Монголын Шинжлэх Ухааны Академи. Түүхийн Хүрээлэн", "Mongolyn Shinzhlėkh Ukhaany Akademi. Tu̇u̇khiĭn Khu̇rėėlėn"], "preferred_name": "BNMAU Šinžlèh Uhaany Akademi. Tùùhijn hùrèèlèn ( Oulan-Bator, Mongolie )", "country_associated": "mp", "variant_access_point": ["Mongolyn Šinžlèh uhaany Akademi. Tùùhijn hùrèèlèn", "Mongol ulsyn Šinžlèh uhaany Akademi. Tùùhijn hùrèèlèn", "BNMAU-yn Šinžlèh uhaany Akademi. Tùùhijn hùrèèlèn", "BNMAU Šinžlèh uhaany Akademi. Tùùhijn hùrèèlèn", "Түүхийн Хүрээлэн", "Tùùhijn hùrèèlèn", "Академия наук Монгольской народной республики. Институт истории", "Akademiâ nauk Mongolʹskoj narodnoj respubliki. Institut istorii", "Монголын Шинжлэх Ухааны Академи. Түүхийн Хүрээлэн", "Mongolyn Shinzhlėkh Ukhaany Akademi. Tu̇u̇khiĭn Khu̇rėėlėn"], "authorized_access_point": "BNMAU Šinžlèh Uhaany Akademi. Tùùhijn hùrèèlèn ( Oulan-Bator, Mongolie )", "biographical_information": ["Institut d'histoire de l'Académie des sciences mongoles"]} 1 +2020-11-11 18:47:33.420821 2020-11-11 18:47:33.420826 20b7ece1-f857-4d87-86ff-703ee0399598 {"md5": "d7bac4d91d12ab988d0e9e184c13e7d6", "pid": "154079693", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "qualifier": "Comte", "date_of_birth": "1783", "date_of_death": "1862-11-17", "preferred_name": "Beaurepaire de Louvagny, Alexandre, Comte", "country_associated": "fr", "authorized_access_point": "Beaurepaire de Louvagny, Alexandre, 1783-1862, Comte", "biographical_information": ["Membre fondateur de l'association normande et de la société française d'archéologie."]} 1 +2020-11-11 18:47:33.81467 2020-11-11 18:47:33.814676 475bf63d-576d-49d4-b3d3-d98a9da7878b {"md5": "a68f2f853cf5472cee72e475a5e626e6", "pid": "071579478", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "language": ["fre"], "conference": false, "preferred_name": "Congrès des économistes de langue française", "authorized_access_point": "Congrès des économistes de langue française ( 21 ; 1961 ; Paris )"} 1 +2020-11-11 18:47:34.667821 2020-11-11 18:47:34.667827 fa72edb8-f49a-4f4b-a4ef-fe011297f744 {"md5": "8c473b58aeede0c6c3fd02710a905be3", "pid": "076675246", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "qualifier": "géologue", "date_of_birth": "19XX", "preferred_name": "Chesney, Marc, géologue", "country_associated": "fr", "authorized_access_point": "Chesney, Marc, 19..-...., géologue", "biographical_information": ["Titulaire d'une thèse de docteur ingénieur en géologie, Toulouse (1981)"]} 1 +2020-11-11 18:47:35.048069 2020-11-11 18:47:35.048073 5cd820a1-40bb-4130-8220-a677c8513e87 {"md5": "012e00dc0ed4367d513e43fee7b24253", "pid": "077723953", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "language": ["fre"], "conference": false, "preferred_name": "Congrès des économistes de langue française", "country_associated": "fr", "date_of_termination": "1959", "date_of_establishment": "1959", "authorized_access_point": "Congrès des économistes de langue française ( 19 ; 1959 ; Paris )"} 1 +2020-11-11 18:47:35.430767 2020-11-11 18:47:35.430772 e519e6ca-7745-4563-b37e-8b36507a642b {"md5": "127be1e758a6807daf0b7e885478d4c7", "pid": "081337418", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "language": ["fre"], "conference": false, "preferred_name": "Congrès des économistes de langue française", "country_associated": "fr", "date_of_termination": "1934", "date_of_establishment": "1934", "authorized_access_point": "Congrès des économistes de langue française ( 02 ; 1934 ; Paris )"} 1 +2020-11-11 18:47:36.708427 2020-11-11 18:47:36.708432 26a444a3-6b6e-4ef7-9f3e-ee5ab21673a9 {"md5": "29b139e640301a02426413ba0192d9ed", "pid": "069632421", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "language": ["fre"], "conference": false, "preferred_name": "Institut d'Administration des Entreprises de Rennes", "country_associated": "fr", "date_of_establishment": "19XX", "authorized_access_point": "Institut d'Administration des Entreprises de Rennes", "biographical_information": ["IGR-IAE de Rennes 11, rue Jean Macé CS 70803 35708 Rennes cedex 7"]} 1 +2020-11-11 18:47:37.921421 2020-11-11 18:47:37.921426 b464164e-aeeb-4a76-97ad-84f054647d48 {"md5": "8b00628fa05a3950fd19fd665544633a", "pid": "106993542", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["eng"], "qualifier": "Marquis of Ormonde", "preferred_name": "Butler, James Edward William Theobald, Marquis of Ormonde", "country_associated": "xxk", "authorized_access_point": "Butler, James Edward William Theobald, Marquis of Ormonde"} 1 +2020-11-11 18:47:38.299678 2020-11-11 18:47:38.299682 50ee35b6-6f82-40c4-bd60-521f4523187a {"md5": "625b9124ea724015644295f356a6ea72", "pid": "078047315", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "language": ["fre"], "conference": false, "variant_name": ["CIRE Nord", "Nord-Pas-de-Calais. Cellule interrégionale d'épidémiologie Nord"], "preferred_name": "Cellule interrégionale d'épidémiologie Nord", "country_associated": "fr", "variant_access_point": ["CIRE Nord", "Nord-Pas-de-Calais. Cellule interrégionale d'épidémiologie Nord"], "date_of_establishment": "19XX", "authorized_access_point": "Cellule interrégionale d'épidémiologie Nord"} 1 +2020-11-11 18:47:38.692539 2020-11-11 18:47:38.692544 e91d0d06-1777-42d5-8735-7ffd3cf9e267 {"md5": "dc868a97faba5f82e1608de44901fa28", "pid": "071593462", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "language": ["fre"], "conference": false, "preferred_name": "Congrès des économistes de langue française", "authorized_access_point": "Congrès des économistes de langue française ( 20 ; 1960 ; Paris )"} 1 +2020-11-11 18:47:39.088202 2020-11-11 18:47:39.088207 dac3f1fb-0e2b-41ce-b057-68763a1d0c6f {"md5": "a5ede736138d1ff75389a6ee8a6cb4c0", "pid": "080852629", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "conference": false, "preferred_name": "Pipe Trio", "country_associated": "xx", "date_of_establishment": "19XX", "authorized_access_point": "Pipe Trio", "biographical_information": ["Groupe instrumental de jazz et open music", "Koglmann, Franz, bugle"]} 1 +2020-11-11 18:47:40.215674 2020-11-11 18:47:40.21568 84f3e62a-d2b2-4f28-8885-bf6e673df94a {"md5": "b26117a1af9c7e7dfa7884807922051e", "pid": "087876035", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "qualifier": "baron de", "variant_name": ["Cauna, Bernard-Augustin de Cabannes, baron de", "Cabannes, Bernard-Augustin-Henri-Timothée", "Cabannes, Bernard-Augustin de"], "date_of_birth": "1822", "date_of_death": "1883-10-22", "preferred_name": "Cauna, Bernard-Augustin-Henri-Timothée de Cabannes, baron de", "country_associated": "fr", "variant_access_point": ["Cauna, Bernard-Augustin de Cabannes, 1822-1883, baron de", "Cabannes, Bernard-Augustin-Henri-Timothée, 1822-1883", "Cabannes, Bernard-Augustin de, 1822-1883"], "authorized_access_point": "Cauna, Bernard-Augustin-Henri-Timothée de Cabannes, 1822-1883, baron de"} 1 +2020-11-11 18:47:41.087568 2020-11-11 18:47:41.087573 779e8e47-74e9-4971-8656-038f93bfdf01 {"md5": "1fab811d07fb3f5c8f62251d3020e405", "pid": "165617845", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["ita"], "variant_name": ["Carelli, Francisco"], "date_of_birth": "1758-10-07", "date_of_death": "1832-09-17", "preferred_name": "Carelli, Francesco", "country_associated": "it", "variant_access_point": ["Carelli, Francisco"], "authorized_access_point": "Carelli, Francesco, 1758-1832", "biographical_information": ["Segretario perpetuo della R. Accademia Ercolanese . Collezionista di monete antiche magna Grecia"]} 1 +2020-11-11 18:47:41.958839 2020-11-11 18:47:41.958844 f54e34f9-3784-4f5f-a1df-d9b222ae6648 {"md5": "b4e034e8b008c5562a0a157ecee76402", "pid": "104547677", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "date_of_birth": "1582", "date_of_death": "1631", "preferred_name": "Constantin de Barbanson, Le Père", "country_associated": "fr", "authorized_access_point": "Constantin de Barbanson, Le Père", "biographical_information": ["Prédicateur capucin et gardien du couvent de Cologne"]} 1 +2020-11-11 18:47:42.664583 2020-11-11 18:47:42.664588 39dec45d-0fe1-45ce-9f22-7b03a08e8f40 {"md5": "c5c6626cc7d93c89dbc53934bd64e2bd", "pid": "196562643", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "date_of_birth": "1794", "date_of_death": "1859", "preferred_name": "Brondeau, Louis de", "country_associated": "fr", "authorized_access_point": "Brondeau, Louis de, 1794-1859", "biographical_information": ["Mycologue, membre de plusieurs sociétés savantes"]} 1 +2020-11-11 18:47:43.199843 2020-11-11 18:47:43.199848 0803cb97-7737-4099-b888-209ca7b02ffc {"md5": "e18d662beb3d3d438d548e961738d0f8", "pid": "172347343", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "qualifier": "curé", "date_of_birth": "1809", "date_of_death": "1873-12-16", "preferred_name": "Chapelle, François, curé", "country_associated": "fr", "authorized_access_point": "Chapelle, François, 1809-1873, curé", "biographical_information": ["Né à Villefoueix, commune de Rempnat (Haute-Vienne)", "Professeur de philiosphie au Collège de Felletin (Creuse) : 1832-1852", "Curé d'Aixe-sur-Vienne (Haute-Vienne)"]} 1 +2020-11-11 18:47:43.606273 2020-11-11 18:47:43.60628 887df873-26ae-4bd3-af62-fc904b5b4be1 {"md5": "09aadd38498ccb4589c76fc8f62eb0e0", "pid": "08049188X", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "conference": false,"preferred_name": "Les Bélaisières", "country_associated": "fr", "date_of_establishment": "19XX", "authorized_access_point": "Les Bélaisières", "biographical_information": ["Groupe de musique Guadeloupéen"]} 1 +2020-11-11 18:47:44.020018 2020-11-11 18:47:44.020023 057242b7-2089-4776-9d01-9b2b471a99d8 {"md5": "8910e173749272dddff452dba1635e1b", "pid": "086912909", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "conference": false, "preferred_name": "I Cantori di Carpino", "country_associated": "it", "date_of_establishment": "19XX", "authorized_access_point": "I Cantori di Carpino", "biographical_information": ["Groupe vocal et instrumental de musique traditionnelle italienne, interprète de tarentelles", "Adresse : Carpino (Italie)", "Di Mauro, Marco, chant, guitare"]} 1 +2020-11-11 18:47:44.401847 2020-11-11 18:47:44.401852 c2adc6b9-36fd-42cb-b466-7588f914a080 {"md5": "6ee98e0e0be0b9c3be78f864f270d7f5", "pid": "085649562", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "conference": false, "preferred_name": "Le Party d'Édith", "country_associated": "xxc", "date_of_establishment": "19XX", "authorized_access_point": "Le Party d'Édith", "biographical_information": ["Groupe vocal et instrumental"]} 1 +2020-11-11 18:47:45.485042 2020-11-11 18:47:45.485047 2013d7c1-b7b8-43fb-9473-fb180888c0c6 {"md5": "5e5eaa83ae144e150daac9b0548fc9ee", "pid": "069774331", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "qualifier": "grammairien", "variant_name": ["Brissaeus, Nicolaus", "Brisset, Nicolas"], "date_of_death": "1540", "preferred_name": "Brissé, Nicolas, grammairien", "country_associated": "fr", "variant_access_point": ["Brissaeus, Nicolaus, ....-1540", "Brisset, Nicolas, ....-1540"], "authorized_access_point": "Brissé, Nicolas, ....-1540, grammairien", "biographical_information": ["Grammairien"]} 1 +2020-11-11 18:47:45.92956 2020-11-11 18:47:45.929566 5c7f153a-a003-4783-bab2-ecce56ef87c6 {"md5": "16fcbc141a15142feadd021fde10d3c3", "pid": "124563627", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "date_of_birth": "17", "preferred_name": "Lévrier-Champrion", "country_associated": "fr", "authorized_access_point": "Lévrier-Champrion", "biographical_information": ["Auteur et chansonnier français"]} 1 +2020-11-11 18:47:46.33982 2020-11-11 18:47:46.339825 2df3fb4e-8d58-4f96-908f-29e43e463357 {"md5": "a31a20f5ddd72dffdd8716b2dc3e0eb9", "pid": "16777154X", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "variant_name": ["Saint-Marc, Pierre-Urbain Corneille", "Corneille, Pierre"], "date_of_birth": "1862-07-15", "preferred_name": "Corneille Saint-Marc, Pierre-Urbain", "country_associated": "fr", "variant_access_point": ["Saint-Marc, Pierre-Urbain Corneille", "Corneille, Pierre"], "authorized_access_point": "Corneille Saint-Marc, Pierre-Urbain, 1862-....", "biographical_information": ["Docteur en médecine (Paris, 1887). Fondateur du Théâtre Populaire Poitevin"]} 1 +2020-11-11 18:47:47.267541 2020-11-11 18:47:47.267546 56b939d9-e5b3-45c2-8815-a2f4b9a217b2 {"md5": "fd24b7b8ec4d279cde14eb4bf993d17f", "pid": "078633907", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "relation_pid": {"type": "redirect_from", "value": "142901776"}, "variant_name": ["Arnoux, Stéphen", "Stéphen", "A***, Stéphen, pseudonyme", "Alexis, pseudonyme", "Alexis, M"], "date_of_birth": "1782-02-22", "date_of_death": "1860?", "preferred_name": "Arnoult, Stéphen", "country_associated": "fr", "variant_access_point": ["Arnoux, Stéphen", "Stéphen", "A***, Stéphen, pseudonyme", "Alexis, pseudonyme", "Alexis, M"], "authorized_access_point": "Arnoult, Stéphen, 1782-1860?", "biographical_information": ["Auteur dramatique du 19e siècle, poète, chansonnier, romancier"]} 1 +2020-11-11 18:47:48.149771 2020-11-11 18:47:48.149777 af42d44f-1ff9-4398-9cff-961a4f8b6f90 {"md5": "eb884e5bb0ba4adb99502f9bce2c630d", "pid": "073462012", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["ita"], "variant_name": ["Franchi de' Cavalieri, Pius", "De' Cavalieri, Pio Franchi", "Cavalieri, Pio Franchi de'"], "date_of_birth": "1869", "date_of_death": "1960", "preferred_name": "Franchi de' Cavalieri, Pio Petro", "country_associated": "it", "variant_access_point": ["Franchi de' Cavalieri, Pius", "De' Cavalieri, Pio Franchi", "Cavalieri, Pio Franchi de'"], "authorized_access_point": "Franchi de' Cavalieri, Pio Petro, 1869-1960"} 1 +2020-11-11 18:47:49.357158 2020-11-11 18:47:49.357163 3962f8a7-9965-4d2d-a698-1d4e172f9ccd {"md5": "4b487bfdef976b39164528b289003932", "pid": "070483981", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["lat"], "variant_name": ["Mamertus, Claudianus", "Claudianus Mamertus"], "date_of_death": "0474", "preferred_name": "Mamert, Claudien", "variant_access_point": ["Mamertus, Claudianus", "Claudianus Mamertus"], "parallel_access_point": ["Mamertus, Claudianus Edicius, ....-0474"], "authorized_access_point": "Mamert, Claudien, ....-0474", "biographical_information": ["Prêtre de Vienne en Dauphiné et poète philosophe chrétien. Auteur de \\"De statu animae\\" (De l'état d'âme). Frère de saint Mamert."]} 1 +2020-11-11 18:47:51.064255 2020-11-11 18:47:51.06426 67e480f2-9b76-4512-9060-893843c191a6 {"md5": "e21fcac609b87a0afddeea93d0011b0b", "pid": "233021523", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "variant_name": ["Bagnano, Georges Libri-", "Books-Nabonag"], "date_of_birth": "1780", "date_of_death": "1836-01-01", "preferred_name": "Libri-Bagnano, Georges", "country_associated": "it", "variant_access_point": ["Bagnano, Georges Libri-, 1780-1836", "Books-Nabonag, 1780-1836"], "authorized_access_point": "Libri-Bagnano, Georges, 1780-1836", "biographical_information": ["Publiciste. - Noble toscan, s'engagea dans les armées napoléoniennes et s'exila en Belgique et aux Pays-Bas", "Lieu de naissance Florence, Italie. Lieu de décès Amsterdam, Pays-Bas"]} 1 +2020-11-11 18:47:52.518462 2020-11-11 18:47:52.518467 00826dcf-d2e4-42d7-a062-9813870165b1 {"md5": "9e799dfda247cc19f26270a60a2dee7b", "pid": "156591324", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "date_of_birth": "1663", "date_of_death": "1711", "preferred_name": "Barrême, Gabriel", "country_associated": "fr", "authorized_access_point": "Barrême, Gabriel, 1663-1711?", "biographical_information": ["Fils de François Barrême. Arithméticien. Censeur royal"]} 1 +2020-11-11 18:47:53.427893 2020-11-11 18:47:53.427899 c0d826d1-7617-4a0c-a571-b3f7353e4abe {"md5": "ad94a0eeeaf430f7d4006405fcb3c012", "pid": "098326635", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "variant_name": ["Aranthon d'Alex, Jean", "Aranthon d'Alex, Jean d'", "Alex, Jean d'Arenthon d'", "Alex, Jean d'Aranthon d'"], "date_of_birth": "1620-09-25", "date_of_death": "1695-07-04", "preferred_name": "Arenthon d'Alex, Jean d'", "country_associated": "sz", "variant_access_point": ["Aranthon d'Alex, Jean", "Aranthon d'Alex, Jean d'", "Alex, Jean d'Arenthon d'", "Alex, Jean d'Aranthon d'"], "authorized_access_point": "Arenthon d'Alex, Jean d', 1620-1695", "biographical_information": ["Prince-évêque de Genève (1661-1695)", "Né à Château d'Alex (Haute-Savoie) et mort à Abbaye d'Abondance (Haute-Savoie). Il fut Prince-évêque de Genève de 1661 à 1695"]} 1 +2020-11-11 18:47:54.276018 2020-11-11 18:47:54.276024 b076f360-d04b-4433-8935-7c61e8c3dece {"md5": "2336cee11a355c63084a8335e2cb879f", "pid": "02778259X", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:OrganisationPerson", "conference": false, "preferred_name": "Van Halen ( groupe )", "authorized_access_point": "Van Halen ( groupe )", "biographical_information": ["Groupe hollandais de rock et hard-rock, créé en 1974"]} 1 +2020-11-11 18:47:55.516837 2020-11-11 18:47:55.516842 785aa078-9c94-4a94-a83b-9f941644dce7 {"md5": "4da984867c0a52e9b19219b12cfd4377", "pid": "085209910", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["lat"], "date_of_birth": "1665-02-12", "date_of_death": "1721-09-11", "preferred_name": "Camerarius, Rudolf Jakob", "country_associated": "gw", "authorized_access_point": "Camerarius, Rudolf Jakob, 1665-1721", "biographical_information": ["Botaniste et médecin"]} 1 +2020-11-11 18:47:56.515499 2020-11-11 18:47:56.515504 ca3e465c-8881-4189-a0b9-2ca59e816af3 {"md5": "40b4916064a373956cbfee39ff3fd501", "pid": "081816529", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["ger"], "qualifier": "reine de Prusse", "variant_name": ["Elisabeth Christine, Queen, consort of Frederick II, King of Prussia", "Élisabeth-Christine de Brunswick Wolfenbuttel, reine de Prusse", "Brunswick-Wolfenbuttel, isabeth-Christine de, eine de Prusse", "Elisabeth-Christine von Braunschweig-Bevern, reine de Prusse", "Braunschweig-Bevern, Elisabeth-Christine von, reine de Prusse"], "date_of_birth": "1715-11-08", "date_of_death": "1797-01-13", "preferred_name": "Elisabeth Christine, reine de Prusse", "variant_access_point": ["Elisabeth Christine, 1715-1797, Queen, consort of Frederick II, King of Prussia", "Élisabeth-Christine de Brunswick Wolfenbuttel, reine de Prusse", "Brunswick-Wolfenbuttel, isabeth-Christine de, eine de Prusse", "Elisabeth-Christine von Braunschweig-Bevern, reine de Prusse", "Braunschweig-Bevern, Elisabeth-Christine von, reine de Prusse"], "authorized_access_point": "Elisabeth Christine, 1715-1797, reine de Prusse", "biographical_information": ["Fille du duc Ferdinand Albert II de Brunswick-Wolfenbüttel, et nièce de Charles VI du Saint-Empire. - Épouse Frédéric II de Prusse en 1733"]} 1 +2020-11-11 18:47:57.407167 2020-11-11 18:47:57.407173 5008eeb2-965d-4d6f-9212-2ffc024b5ec7 {"md5": "817650c17f96688f9cc07ee091e94258", "pid": "189341793", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "qualifier": "comte de", "variant_name": ["Bourgevin Vialart de Saint-Morys, Etienne", "Vialart de Saint-Morys, Etienne de"], "date_of_birth": "1772-01-17", "date_of_death": "1817-07-21", "preferred_name": "Saint-Morys, Etienne Bourgevin Vialart, comte de", "country_associated": "fr", "variant_access_point": ["Bourgevin Vialart de Saint-Morys, Etienne", "Vialart de Saint-Morys, Etienne de"], "authorized_access_point": "Saint-Morys, Etienne Bourgevin Vialart, 1772-1817, comte de"} 1 +2020-11-11 18:47:57.845622 2020-11-11 18:47:57.845627 9b903434-ead7-45c8-a05b-622fa2a40c84 {"md5": "6d2ceda8ddf71401fb59195e24ea9bad", "pid": "057286752", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "variant_name": ["Objac, Émile d'"], "date_of_birth": "18XX", "preferred_name": "Jacob, Émile", "country_associated": "fr", "variant_access_point": ["Objac, Émile d'"], "authorized_access_point": "Jacob, Émile", "biographical_information": ["Professeur au lycée Louis-le-Grand (en 1885)"]} 1 +2020-11-11 18:47:58.731501 2020-11-11 18:47:58.731507 10b2978c-af63-45d9-831e-cf0c828d8c39 {"md5": "321972dea346c135084cf976e37c85fb", "pid": "068979401", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["ita"], "variant_name": ["Cavalleri, Giovanni Battista", "Cavalleriis, Giovanni-Battista de", "Cavalieri, Giovanni-Battista de", "Cavallieri, Giovanni Battista", "Cavalieri, Giovanni-Battista", "Cavalerius, Joannes Baptista"], "date_of_birth": "1525", "date_of_death": "1601", "preferred_name": "Cavalieri, Giovanni Battista", "country_associated": "it", "variant_access_point": ["Cavalleri, Giovanni Battista", "Cavalleriis, Giovanni-Battista de", "Cavalieri, Giovanni-Battista de", "Cavallieri, Giovanni Battista", "Cavalieri, Giovanni-Battista", "Cavalerius, Joannes Baptista"], "parallel_access_point": ["Cavallerius, Joannes Baptista"], "authorized_access_point": "Cavalieri, Giovanni Battista, 1525-1601?", "biographical_information": ["Graveur italien, né à Lagertale (Trentin) en 1525, mort à Rome en 1597 ou 1601. Il s'inspira de la manière d'Aeneas Vico, mais il lui demeura inférieur. Son oeuvre, très important, comprend plus de 380 planches, dont la plupart reproduisent les ouvrages des grands maîtres italiens et portent le monogramme CB."]} 1 +2020-11-11 18:47:59.615082 2020-11-11 18:47:59.615087 56b85e48-52eb-435f-839c-8ef4f6ce322d {"md5": "3e572d466996f649c7e350d0a1390b4e", "pid": "130990221", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "variant_name": ["Descudier, Alfred", "Ego"], "date_of_birth": "1837", "date_of_death": "1883", "preferred_name": "Aunay, Alfred d'", "country_associated": "fr", "variant_access_point": ["Descudier, Alfred", "Ego"], "authorized_access_point": "Aunay, Alfred d', 1837-1883", "biographical_information": ["Journaliste, auteur dramatique"]} 1 +2020-11-11 18:48:00.183118 2020-11-11 18:48:00.183124 09590518-a7ed-4278-937e-6a8af02009cc {"md5": "64cd67c357838eea965268995094512f", "pid": "147013283", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "variant_name": ["Philippe", "Amédée", "Roustan, François Philippe"], "date_of_birth": "1785-02-25", "date_of_death": "1847-09-26", "preferred_name": "Roustan, Philippe-Amédée", "country_associated": "fr", "variant_access_point": ["Philippe", "Amédée", "Roustan, François Philippe"], "authorized_access_point": "Roustan, Philippe-Amédée, 1785-1847", "biographical_information": ["Acteur, vaudevilliste. A utilisé les pseudonymes d'Amédée et de Philippe. On le trouve au Vaudeville de 1815 à 1825, aux Nouveautés (1827), au Palais-Royal (1831-1841) et aux Folies-Dramatiques. Il avait épousé Mlle Volnais de la Comédie-Française"]} 1 +2020-11-11 18:48:01.120075 2020-11-11 18:48:01.120081 100aadd1-221f-4531-ad07-20579110a1e0 {"md5": "7c71dc22587ce7c895d9b5b034b80bf5", "pid": "074087061", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "date_of_birth": "1851", "date_of_death": "1925", "preferred_name": "Avesne, E. d'", "country_associated": "fr", "authorized_access_point": "Avesne, E. d', 1851-1925"} 1 +2020-11-11 18:48:01.666795 2020-11-11 18:48:01.666801 1ccfdd4d-f8c3-48af-9e6f-76080ad9289f {"md5": "05db1d5032b9a619809a10032a0073b6", "pid": "088356809", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "variant_name": ["Bougleux, Louis-Auguste Montalant"], "preferred_name": "Montalant-Bougleux, Louis-Auguste", "country_associated": "fr", "variant_access_point": ["Bougleux, Louis-Auguste Montalant"], "authorized_access_point": "Montalant-Bougleux, Louis-Auguste"} 1 +2020-11-11 18:48:02.647847 2020-11-11 18:48:02.647852 0ca0ab00-7016-43df-83d7-67731cd6c11a {"md5": "34d6b0f51aea9c16b9dc65809a74c1ab", "pid": "131513168", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "qualifier": "comte de", "variant_name": ["Bourbon, Charles de"], "date_of_birth": "1566", "date_of_death": "1612", "preferred_name": "Soissons, Charles de Bourbon, comte de", "country_associated": "fr", "variant_access_point": ["Bourbon, Charles de, 1566-1612"], "authorized_access_point": "Soissons, Charles de Bourbon, 1566-1612, comte de", "biographical_information": ["Comte de Soissons. Fils de Louis Ier, prince de Condé", "Lieu de naissance Nogent-le-Rotrou (Eure-et-Loir). Lieu de décès Blandy"]} 1 +2020-11-11 18:48:03.559199 2020-11-11 18:48:03.559205 1b14e1f0-0a24-4c83-85a3-235602b2d9d9 {"md5": "d1cccbd8f29c1b6bad6c967b2027b7ca", "pid": "192777475", "$schema": "https://mef.rero.ch/schemas/agents_idref/idref-agent-v0.0.1.json", "type": "bf:Person", "language": ["fre"], "variant_name": ["M. Mérault", "Mérault, A.-R., abbé", "Auteur des apologistes involontaires, L'", "Athanase Rene Merault Bizy"], "date_of_birth": "1744", "date_of_death": "1835", "preferred_name": "Mérault de Bizy, Athanase-René", "country_associated": "fr", "variant_access_point": ["M. Mérault", "Mérault, A.-R., abbé", "Auteur des apologistes involontaires, L'", "Athanase Rene Merault Bizy"], "authorized_access_point": "Mérault de Bizy, Athanase-René, 1744-1835", "biographical_information": ["Abbé. Littérateur"]} 1 diff --git a/tests/fixtures/agents_data.py b/tests/fixtures/agents_data.py index 47efdc85..5c66801f 100644 --- a/tests/fixtures/agents_data.py +++ b/tests/fixtures/agents_data.py @@ -27,7 +27,6 @@ def agent_gnd_data(): """Agent GND record.""" return { "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", - "identifier": "http://d-nb.info/gnd/12391664X", "pid": "12391664X", "type": "bf:Person", "variant_name": [ @@ -72,7 +71,6 @@ def agent_gnd_redirect_data(): """Agent GND record.""" return { "$schema": "https://mef.rero.ch/schemas/agents_gnd/gnd-agent-v0.0.1.json", - "identifier": "https://d-nb.info/gnd/GND_REDIRECT", "pid": "GND_REDIRECT", "type": "bf:Person", "authorized_access_point": "Cavalieri, Giovanni Battista, 1525-1601", @@ -395,7 +393,6 @@ def agent_rero_data(): "Cavalleriis, Giovanni Battista de,", "Cavalieri, Gianbattista,", ], - "identifier": "https://data.rero.ch/02-A023655346", "pid": "A023655346", "preferred_name": "Cavalieri, Giovanni Battista,", } @@ -476,7 +473,6 @@ def agent_idref_data(): "date_of_birth": "....", "date_of_death": "1540", "language": ["fre"], - "identifier": "https://www.idref.fr/069774331", "biographical_information": ["Grammairien"], "preferred_name": "Briss\u00e9, Nicolas, grammairien", "authorized_access_point": "Briss\u00e9, Nicolas, ....-1540, grammairien", @@ -494,7 +490,6 @@ def agent_idref_redirect_data(): "date_of_birth": "....", "date_of_death": "1540", "language": ["fre"], - "identifier": "https://www.idref.fr/IDREF_REDIRECT", "preferred_name": "Briss\u00e9, Nicolas, grammairien", "authorized_access_point": "Briss\u00e9, Nicolas, ....-1540, grammairien", "gender": "male", @@ -911,7 +906,6 @@ def aggnd_data_139205527(): "type": "bf:Person", "country_associated": "it", "gender": "female", - "identifier": "http://d-nb.info/gnd/139205527", "identifiedBy": [ {"source": "GND", "type": "uri", "value": "http://d-nb.info/gnd/139205527"} ], diff --git a/tests/fixtures/concepts_data.py b/tests/fixtures/concepts_data.py index 095b92f2..fff2e190 100644 --- a/tests/fixtures/concepts_data.py +++ b/tests/fixtures/concepts_data.py @@ -119,11 +119,13 @@ def concept_idref_redirect_data(): "closeMatch": [ { "authorized_access_point": "Franco-Provençal dialects", - "identifiedBy": { - "source": "LCSH", - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85051553", - }, + "identifiedBy": [ + { + "source": "LCSH", + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85051553", + } + ], "source": "LCSH", }, { @@ -245,3 +247,293 @@ def concept_mef_idref_redirect_data(): "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/027276694"}, "type": "bf:Topic", } + + +@pytest.fixture(scope="module") +def concept_idref_frbnf_data_close(): + """Concept IdRef data with frbnf.""" + return { + "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", + "authorized_access_point": "Oiseaux nicheurs", + "bnf_type": "sujet Rameau", + "broader": [{"authorized_access_point": "Oiseaux - Moeurs et comportement"}], + "identifiedBy": [ + { + "source": "IDREF", + "type": "uri", + "value": "http://www.idref.fr/032510934", + }, + { + "source": "BNF", + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb123526871", + }, + {"source": "BNF", "type": "bf:Nbn", "value": "FRBNF12352687"}, + ], + "note": [ + {"label": ["GLE"], "noteType": "dataSource"}, + {"label": ["LCSH, 1993-06"], "noteType": "dataNotFound"}, + { + "label": ["Voir aussi aux noms des différents Oiseaux nicheurs"], + "noteType": "seeReference", + }, + ], + "pid": "032510934", + "type": "bf:Topic", + "variant_access_point": ["Nicheurs (oiseaux)"], + } + + +@pytest.fixture(scope="module") +def concept_idref_frbnf_data_exact(): + """Concept IdRef data with frbnf.""" + return { + "$schema": "https://mef.rero.ch/schemas/concepts_idref/idref-concept-v0.0.1.json", + "authorized_access_point": "Traitement réparti", + "bnf_type": "sujet Rameau", + "classification": [ + {"classificationPortion": "621", "type": "bf:ClassificationDdc"} + ], + "closeMatch": [ + { + "authorized_access_point": "Electronic data processing--Distributed processing", + "identifiedBy": [ + { + "source": "LCSH", + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85042293", + } + ], + "source": "LCSH", + }, + {"authorized_access_point": "Traitement réparti", "source": "RVMLaval"}, + ], + "identifiedBy": [ + { + "source": "IDREF", + "type": "uri", + "value": "http://www.idref.fr/027234908", + }, + { + "source": "BNF", + "type": "uri", + "value": "http://catalogue.bnf.fr/ark:/12148/cb11932111w", + }, + {"source": "BNF", "type": "bf:Nbn", "value": "FRBNF11932111"}, + ], + "md5": "15727be7bdf3b2a5c6c23d671b2c8a9f", + "narrower": [ + {"authorized_access_point": "Apache Storm (plate-forme informatique)"}, + {"authorized_access_point": "Architecture client-serveur (informatique)"}, + {"authorized_access_point": "Informatique omniprésente"}, + {"authorized_access_point": "J2EE (plate-forme informatique)"}, + {"authorized_access_point": "Mémoire partagée répartie"}, + {"authorized_access_point": "NFS (protocole de réseaux d'ordinateurs)"}, + {"authorized_access_point": "NIS (système de gestion de fichiers)"}, + {"authorized_access_point": "PlanetLab (informatique)"}, + {"authorized_access_point": "Répartition de charge (informatique)"}, + {"authorized_access_point": "Réseaux à grande distance (informatique)"}, + {"authorized_access_point": "Réseaux locaux (informatique)"}, + {"authorized_access_point": "Réseaux urbains (informatique)"}, + {"authorized_access_point": "Architecture médiateur-wrapper"}, + {"authorized_access_point": "Systèmes autonomes distribués (informatique)"}, + {"authorized_access_point": "Systèmes d'exploitation répartis"}, + {"authorized_access_point": "Tables de hachage distribuées"}, + {"authorized_access_point": "Bases de données réparties"}, + {"authorized_access_point": "DCOM (architecture des ordinateurs)"}, + {"authorized_access_point": "Enterprise JavaBeans"}, + {"authorized_access_point": "Exclusion mutuelle"}, + {"authorized_access_point": "Grilles informatiques"}, + {"authorized_access_point": "Hadoop (plate-forme informatique)"}, + {"authorized_access_point": "Informatique dans les nuages"}, + ], + "pid": "027234908", + "related": [ + {"authorized_access_point": "Apache Spark (langage de programmation)"}, + {"authorized_access_point": "Logique spatiale"}, + {"authorized_access_point": "Observation d'états distribués"}, + {"authorized_access_point": "Ordonnancement (informatique)"}, + {"authorized_access_point": "Réseaux d'ordinateurs"}, + {"authorized_access_point": "Théorie des calculs locaux"}, + {"authorized_access_point": "Traces, Théorie des"}, + ], + "type": "bf:Topic", + "variant_access_point": [ + "Applications distribuées (informatique)", + "Applications réparties (informatique)", + "Systèmes répartis (informatique)", + "Informatique - Traitement réparti", + "Informatique distribuée", + "Informatique répartie", + "Multi-agents, Systèmes", + "Systèmes distribués (informatique)", + "Systèmes informatiques distribués", + "Systèmes informatiques répartis", + "Systèmes multi-agents", + ], + } + + +@pytest.fixture(scope="module") +def concept_gnd_frbnf_data_close(): + """Concept GND data with frbnf.""" + return { + "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", + "authorized_access_point": "Brutvögel", + "identifiedBy": [ + {"source": "GND", "type": "uri", "value": "http://d-nb.info/gnd/4146776-0"}, + {"source": "GND", "type": "bf:Nbn", "value": "(DE-101)041467760"}, + {"source": "GND", "type": "bf:Nbn", "value": "(DE-588)4146776-0"}, + ], + "closeMatch": [ + { + "authorized_access_point": "Oiseaux nicheurs", + "source": "GND", + "identifiedBy": [ + {"source": "GND", "type": "bf:Nbn", "value": "(DE-101)1134790635"}, + {"source": "BNF", "type": "bf:Nbn", "value": "FRBNF12352687"}, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb123526871", + }, + ], + } + ], + "pid": "041467760", + "type": "bf:Topic", + "broader": [{"authorized_access_point": "Vögel"}], + "variant_access_point": ["Brutvogel", "Einheimische Vögel"], + } + + +@pytest.fixture(scope="module") +def concept_gnd_frbnf_data_exact(): + """Concept GND data with frbnf.""" + return { + "$schema": "https://mef.rero.ch/schemas/concepts_gnd/gnd-concept-v0.0.1.json", + "authorized_access_point": "Dezentrale Datenverarbeitung", + "broader": [{"authorized_access_point": "Datenverarbeitung"}], + "closeMatch": [ + { + "authorized_access_point": "Elaborazione distribuita", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254324852", + }, + { + "source": "IT", + "type": "bf:Nbn", + "value": "3277", + }, + { + "type": "uri", + "value": "http://purl.org/bncf/tid/3277", + }, + ], + "source": "GND", + }, + { + "authorized_access_point": "Proceso distribuido (Informática)", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1254419977", + }, + { + "source": "SPMABN", + "type": "bf:Nbn", + "value": "XX545920", + }, + { + "type": "uri", + "value": "https://datos.bne.es/resource/XX545920", + }, + ], + "source": "GND", + }, + ], + "exactMatch": [ + { + "authorized_access_point": "Electronic data processing", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133615708", + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85042293", + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85042293", + }, + ], + "source": "GND", + }, + { + "authorized_access_point": "Traitement réparti", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1133615708", + }, + { + "source": "BNF", + "type": "bf:Nbn", + "value": "FRBNF11932111", + }, + { + "type": "uri", + "value": "https://data.bnf.fr/ark:/12148/cb11932111w", + }, + ], + "source": "GND", + }, + ], + "identifiedBy": [ + { + "source": "GND", + "type": "uri", + "value": "http://d-nb.info/gnd/7545389-7", + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)981473830", + }, + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-588)7545389-7", + }, + ], + "md5": "628a19be80ecd77321435a7122f8539b", + "note": [ + { + "label": [ + "Form der elektronischen Datenverarbeitung, bei der mehrere Rechner zwar über Rechnernetz " + "verbunden sind, Daten austauschen und gemeinsame Ressourcen nutzen können, jedoch jeweils " + "autonom eigene Aufgaben erledigen. (B Computer)", + "Für das Arbeiten mehrerer vernetzter Rechner an Teilaufgaben desselben Problems verwende " + "Verteiltes System.", + ], + "noteType": "general", + } + ], + "pid": "981473830", + "type": "bf:Topic", + "variant_access_point": [ + "Decentralized Data Processing", + "Distributed Data Processing System (Dezentralisation)", + "DDPS", + "Verteilte Datenverarbeitung (Dezentralisation)", + "Verteiltes Datenverarbeitungssystem (Dezentralisation)", + ], + } diff --git a/tests/fixtures/places_data.py b/tests/fixtures/places_data.py index 03136d08..c3c48f27 100644 --- a/tests/fixtures/places_data.py +++ b/tests/fixtures/places_data.py @@ -62,7 +62,6 @@ def place_idref_data(): ], "pid": "271330163", "type": "bf:Place", - "deleted": "2022-09-03T07:07:32.526780+00:00", } @@ -142,11 +141,13 @@ def place_gnd_data(): { "authorized_access_point": "Nordschleswig", "source": "GND", - "identifiedBy": { - "type": "bf:Nbn", - "value": "(DE-101)992404371", - "source": "(DE-101)992404371", - }, + "identifiedBy": [ + { + "type": "bf:Nbn", + "value": "(DE-101)992404371", + "source": "(DE-101)992404371", + } + ], } ], "identifiedBy": [ diff --git a/tests/ui/agents/test_agents_api.py b/tests/ui/agents/test_agents_api.py index c6cbb673..9f68c81c 100644 --- a/tests/ui/agents/test_agents_api.py +++ b/tests/ui/agents/test_agents_api.py @@ -43,9 +43,9 @@ def test_create_agent_record_with_viaf_links( assert viaf_record["gnd_pid"] == "12391664X" assert viaf_record["rero_pid"] == "A023655346" assert viaf_record["idref_pid"] == "069774331" - assert len(viaf_record.get_agents_pids()) == 3 - assert viaf_record.get_agents_records() == [] - _, pids_viaf = viaf_record.get_missing_agent_pids("aidref") + assert len(viaf_record.get_entities_pids()) == 3 + assert viaf_record.get_entities_records() == [] + _, pids_viaf = viaf_record.get_missing_entity_pids("aidref") assert pids_viaf == ["66739143"] gnd_record, action = AgentGndRecord.create_or_update( @@ -63,10 +63,10 @@ def test_create_agent_record_with_viaf_links( "type": "bf:Person", "viaf_pid": "66739143", } - assert viaf_record.get_agents_records() == [agent_gnd_data] + assert viaf_record.get_entities_records() == [agent_gnd_data] assert viaf_record.get_viaf(m_record) == [viaf_record] assert viaf_record.get_viaf(gnd_record) == [viaf_record] - pids_db, pids_viaf = viaf_record.get_missing_agent_pids("aggnd") + pids_db, pids_viaf = viaf_record.get_missing_entity_pids("aggnd") assert pids_db == [] assert pids_viaf == [] @@ -85,7 +85,7 @@ def test_create_agent_record_with_viaf_links( "type": "bf:Person", "viaf_pid": "66739143", } - assert viaf_record.get_agents_records() == [agent_gnd_data, agent_rero_data] + assert viaf_record.get_entities_records() == [agent_gnd_data, agent_rero_data] idref_record, action = AgentIdrefRecord.create_or_update( data=agent_idref_data, dbcommit=True, reindex=True @@ -103,7 +103,7 @@ def test_create_agent_record_with_viaf_links( "type": "bf:Person", "viaf_pid": "66739143", } - assert viaf_record.get_agents_records() == [ + assert viaf_record.get_entities_records() == [ agent_idref_data, agent_gnd_data, agent_rero_data, @@ -112,17 +112,17 @@ def test_create_agent_record_with_viaf_links( assert ( m_record == AgentMefRecord.get_mef( - agent_pid=idref_record.pid, agent_name=idref_record.name + entity_pid=idref_record.pid, entity_name=idref_record.name )[0] ) assert ( m_record.pid == AgentMefRecord.get_mef( - agent_pid=gnd_record.pid, agent_name=gnd_record.name, pid_only=True + entity_pid=gnd_record.pid, entity_name=gnd_record.name, pid_only=True )[0] ) mef_rec_resolved = AgentMefRecord.get_mef( - agent_pid=viaf_record.pid, agent_name=viaf_record.name + entity_pid=viaf_record.pid, entity_name=viaf_record.name )[0] assert m_record == mef_rec_resolved @@ -191,14 +191,14 @@ def test_create_agent_record_with_viaf_links( rero_pid = viaf_record.pop("rero_pid") viaf_record = viaf_record.update(data=viaf_record, dbcommit=True, reindex=True) viaf_record.create_mef_and_agents(dbcommit=True, reindex=True) - assert viaf_record.get_agents_pids() == [ + assert viaf_record.get_entities_pids() == [ {"pid": idref_record.pid, "source": "idref", "record_class": AgentIdrefRecord}, {"pid": gnd_record.pid, "source": "gnd", "record_class": AgentGndRecord}, ] mef_record_rero = AgentMefRecord.get_mef( - agent_pid=rero_record.pid, agent_name=rero_record.name + entity_pid=rero_record.pid, entity_name=rero_record.name )[0] - assert mef_record_rero.get_agents_pids() == [ + assert mef_record_rero.get_entities_pids() == [ {"pid": rero_record.pid, "record_class": AgentReroRecord} ] @@ -207,7 +207,7 @@ def test_create_agent_record_with_viaf_links( viaf_record["rero_pid"] = rero_pid viaf_record = viaf_record.update(data=viaf_record, dbcommit=True, reindex=True) viaf_record.create_mef_and_agents(dbcommit=True, reindex=True) - assert viaf_record.get_agents_pids() == [ + assert viaf_record.get_entities_pids() == [ {"pid": idref_record.pid, "source": "idref", "record_class": AgentIdrefRecord}, {"pid": gnd_record.pid, "source": "gnd", "record_class": AgentGndRecord}, {"pid": rero_record.pid, "source": "rero", "record_class": AgentReroRecord}, diff --git a/tests/ui/agents/test_agents_mef_api.py b/tests/ui/agents/test_agents_mef_api.py index b6a011fd..fb5c3e9c 100644 --- a/tests/ui/agents/test_agents_mef_api.py +++ b/tests/ui/agents/test_agents_mef_api.py @@ -22,11 +22,13 @@ from rero_mef.agents import AgentMefRecord -def test_get_all_pids_without_agents_and_viaf(app): +def test_get_all_pids_without_entities_and_viaf(app): """Test get all pids without agents and VIAF.""" record = {"$schema": "https://mef.rero.ch/schemas/mef/mef-v0.0.1.json"} m_record = create_record(AgentMefRecord, record) - assert list(AgentMefRecord.get_all_pids_without_agents_and_viaf()) == [m_record.pid] + assert list(AgentMefRecord.get_all_pids_without_entities_and_viaf()) == [ + m_record.pid + ] def test_get_multiple_missing_pids(app, agent_mef_data, agent_viaf_record): diff --git a/tests/ui/agents/test_agents_viaf_api.py b/tests/ui/agents/test_agents_viaf_api.py index dcc9f582..002e0350 100644 --- a/tests/ui/agents/test_agents_viaf_api.py +++ b/tests/ui/agents/test_agents_viaf_api.py @@ -100,8 +100,8 @@ def test_create_mef_and_agents( actions = agent_viaf_record.create_mef_and_agents(dbcommit=True, reindex=True) mef_pid = AgentMefRecord.get_mef( - agent_pid=agent_viaf_record.pid, - agent_name=agent_viaf_record.name, + entity_pid=agent_viaf_record.pid, + entity_name=agent_viaf_record.name, pid_only=True, )[0] assert actions == { @@ -129,6 +129,7 @@ def test_create_mef_and_agents( "agrero": {"db": 1, "index": "agrero", "mef": 1, "mef-db": 0}, "aidref": {"db": 1, "index": "aidref", "mef": 1, "mef-db": 0}, "cidref": {"db": 0, "index": "cidref", "mef": 0, "mef-db": 0}, + "cognd": {"db": 0, "index": "cognd", "mef": 0, "mef-db": 0}, "corero": {"db": 0, "index": "corero", "mef": 0, "mef-db": 0}, "pidref": {"db": 0, "index": "pidref", "mef": 0, "mef-db": 0}, "plgnd": {"db": 0, "index": "plgnd", "mef": 0, "mef-db": 0}, @@ -162,6 +163,7 @@ def test_create_mef_and_agents( "agrero": {"db": 1, "index": "agrero", "mef": 1, "mef-db": 0}, "aidref": {"db": 1, "index": "aidref", "mef": 1, "mef-db": 0}, "cidref": {"db": 0, "index": "cidref", "mef": 0, "mef-db": 0}, + "cognd": {"db": 0, "index": "cognd", "mef": 0, "mef-db": 0}, "corero": {"db": 0, "index": "corero", "mef": 0, "mef-db": 0}, "pidref": {"db": 0, "index": "pidref", "mef": 0, "mef-db": 0}, "plgnd": {"db": 0, "index": "plgnd", "mef": 0, "mef-db": 0}, @@ -211,6 +213,7 @@ def test_create_mef_and_agents( "agrero": {"db": 2, "index": "agrero", "mef": 2, "mef-db": 0}, "aidref": {"db": 1, "index": "aidref", "mef": 1, "mef-db": 0}, "cidref": {"db": 0, "index": "cidref", "mef": 0, "mef-db": 0}, + "cognd": {"db": 0, "index": "cognd", "mef": 0, "mef-db": 0}, "corero": {"db": 0, "index": "corero", "mef": 0, "mef-db": 0}, "pidref": {"db": 0, "index": "pidref", "mef": 0, "mef-db": 0}, "plgnd": {"db": 0, "index": "plgnd", "mef": 0, "mef-db": 0}, @@ -230,8 +233,8 @@ def test_create_mef_and_agents( agent_viaf_record.update(data=agent_viaf_record, dbcommit=True, reindex=True) actions = agent_viaf_record.create_mef_and_agents(dbcommit=True, reindex=True) mef_pid_new = AgentMefRecord.get_mef( - agent_pid=agent_viaf_record.pid, - agent_name=agent_viaf_record.name, + entity_pid=agent_viaf_record.pid, + entity_name=agent_viaf_record.name, pid_only=True, )[0] mef_record = AgentMefRecord.get_record_by_pid(mef_pid_new) @@ -274,16 +277,12 @@ def test_create_mef_and_agents( "agrero": {"db": 2, "index": "agrero", "mef": 2, "mef-db": 0}, "aidref": {"db": 1, "index": "aidref", "mef": 1, "mef-db": 0}, "cidref": {"db": 0, "index": "cidref", "mef": 0, "mef-db": 0}, + "cognd": {"db": 0, "index": "cognd", "mef": 0, "mef-db": 0}, "corero": {"db": 0, "index": "corero", "mef": 0, "mef-db": 0}, "pidref": {"db": 0, "index": "pidref", "mef": 0, "mef-db": 0}, "plgnd": {"db": 0, "index": "plgnd", "mef": 0, "mef-db": 0}, } - from pprint import pprint - - for rec in AgentMefRecord.get_all_records(): - pprint(rec) - # delete VIAF rec = AgentViafRecord.get_record_by_pid(agent_viaf_record.get("pid")) _, action, mef_actions = rec.delete(dbcommit=True, delindex=True) @@ -312,6 +311,7 @@ def test_create_mef_and_agents( "agrero": {"db": 2, "index": "agrero", "mef": 2, "mef-db": 0}, "aidref": {"db": 1, "index": "aidref", "mef": 1, "mef-db": 0}, "cidref": {"db": 0, "index": "cidref", "mef": 0, "mef-db": 0}, + "cognd": {"db": 0, "index": "cognd", "mef": 0, "mef-db": 0}, "corero": {"db": 0, "index": "corero", "mef": 0, "mef-db": 0}, "pidref": {"db": 0, "index": "pidref", "mef": 0, "mef-db": 0}, "plgnd": {"db": 0, "index": "plgnd", "mef": 0, "mef-db": 0}, diff --git a/tests/ui/concepts/test_concepts_api.py b/tests/ui/concepts/test_concepts_api.py index d47c0388..ac06a3f1 100644 --- a/tests/ui/concepts/test_concepts_api.py +++ b/tests/ui/concepts/test_concepts_api.py @@ -20,7 +20,12 @@ import os from rero_mef.api import Action -from rero_mef.concepts import ConceptIdrefRecord, ConceptMefRecord, ConceptReroRecord +from rero_mef.concepts import ( + ConceptGndRecord, + ConceptIdrefRecord, + ConceptMefRecord, + ConceptReroRecord, +) from rero_mef.utils import export_json_records, number_records_in_file SCHEMA_URL = "https://mef.rero.ch/schemas/concepts_mef" @@ -48,12 +53,14 @@ def test_create_concept_record(app, concept_rero_data, concept_idref_data, tmpdi data=concept_rero_data, dbcommit=True, reindex=True ) assert action == Action.CREATE - assert rero_record["pid"] == "A021001006" + assert rero_record["pid"] == concept_rero_data["pid"] m_record, m_actions = rero_record.create_or_update_mef(dbcommit=True, reindex=True) assert m_actions == {m_record.pid: Action.CREATE} assert m_record == { "$schema": f"{SCHEMA_URL}/mef-concept-v0.0.1.json", - "rero": {"$ref": "https://mef.rero.ch/api/concepts/rero/A021001006"}, + "rero": { + "$ref": f"https://mef.rero.ch/api/concepts/rero/{concept_rero_data['pid']}" + }, "pid": "2", "type": "bf:Topic", } @@ -84,37 +91,247 @@ def test_create_concept_record(app, concept_rero_data, concept_idref_data, tmpdi data=concept_rero_data, dbcommit=True, reindex=True ) assert action == Action.UPDATE - assert returned_record["pid"] == "A021001006" + assert returned_record["pid"] == concept_rero_data["pid"] returned_record, action = ConceptIdrefRecord.create_or_update( data=concept_idref_data, dbcommit=True, reindex=True ) assert action == Action.UPDATE - assert returned_record["pid"] == "050548115" + assert returned_record["pid"] == concept_idref_data["pid"] # Test update MD5 concept record MD5 tewst. returned_record, action = ConceptReroRecord.create_or_update( data=concept_rero_data, dbcommit=True, reindex=True, test_md5=True ) assert action == Action.UPTODATE - assert returned_record["pid"] == "A021001006" + assert returned_record["pid"] == concept_rero_data["pid"] returned_record, action = ConceptIdrefRecord.create_or_update( data=concept_idref_data, dbcommit=True, reindex=True, test_md5=True ) assert action == Action.UPTODATE - assert returned_record["pid"] == "050548115" + assert returned_record["pid"] == concept_idref_data["pid"] idref_record = ConceptIdrefRecord.get_record_by_pid(idref_record.pid) idref_record["type"] = "bf:Temporal" idref_record.update(data=idref_record, dbcommit=True, reindex=True) + ConceptMefRecord.flush_indexes() + m_record, m_actions = idref_record.create_or_update_mef(dbcommit=True, reindex=True) assert m_actions == {m_record.pid: Action.UPDATE} assert m_record == { "$schema": f"{SCHEMA_URL}/mef-concept-v0.0.1.json", - "idref": {"$ref": "https://mef.rero.ch/api/concepts/idref/050548115"}, + "idref": { + "$ref": f"https://mef.rero.ch/api/concepts/idref/{concept_idref_data['pid']}" + }, "deleted": "2022-09-03T07:07:32.526780+00:00", "pid": "1", "type": "bf:Temporal", } + + +def test_create_concept_frbnf_record( + app, concept_idref_frbnf_data_close, concept_gnd_frbnf_data_close, tmpdir +): + """Test create concept record with frbnf links.""" + mef_count = ConceptMefRecord.count() + # Create idref record with identifiedBy `FRBNF12352687`. + idref_record, action = ConceptIdrefRecord.create_or_update( + data=concept_idref_frbnf_data_close, dbcommit=True, reindex=True + ) + assert action == Action.CREATE + assert idref_record["pid"] == concept_idref_frbnf_data_close["pid"] + + # Create or update MEF record. + m_record, m_actions = idref_record.create_or_update_mef(dbcommit=True, reindex=True) + assert m_actions == {m_record.pid: Action.CREATE} + assert m_record == { + "$schema": f"{SCHEMA_URL}/mef-concept-v0.0.1.json", + "idref": { + "$ref": f"https://mef.rero.ch/api/concepts/idref/{concept_idref_frbnf_data_close['pid']}" + }, + "pid": f"{mef_count+1}", + "type": "bf:Topic", + } + + # Create gnd record with closeMatch identifiedBy `FRBNF12352687` + gnd_record, action = ConceptGndRecord.create_or_update( + data=concept_gnd_frbnf_data_close, dbcommit=True, reindex=True + ) + assert action == Action.CREATE + assert gnd_record["pid"] == concept_gnd_frbnf_data_close["pid"] + + ConceptIdrefRecord.flush_indexes() + # Create or update MEF record (should be the same as for IDREF) + + m_record, m_actions = gnd_record.create_or_update_mef(dbcommit=True, reindex=True) + assert m_actions == {m_record.pid: Action.UPDATE} + + assert m_record == { + "$schema": f"{SCHEMA_URL}/mef-concept-v0.0.1.json", + "gnd": { + "$ref": f"https://mef.rero.ch/api/concepts/gnd/{concept_gnd_frbnf_data_close['pid']}" + }, + "idref": { + "$ref": f"https://mef.rero.ch/api/concepts/idref/{concept_idref_frbnf_data_close['pid']}" + }, + "pid": f"{mef_count+1}", + "type": "bf:Topic", + } + + assert idref_record.association_identifier == "FRBNF12352687" + assert gnd_record.association_identifier == "FRBNF12352687" + + # Delete identifiedBy `FRBNF12352687` from IDREF record + idref_record["identifiedBy"] = [ + {"source": "IDREF", "type": "uri", "value": "http://www.idref.fr/032510934"}, + ] + idref_record, action = ConceptIdrefRecord.create_or_update( + data=idref_record, dbcommit=True, reindex=True + ) + assert action == Action.UPDATE + assert idref_record["identifiedBy"] == [ + {"source": "IDREF", "type": "uri", "value": "http://www.idref.fr/032510934"}, + ] + + # Create or update MEF record for IDREF. + # We should update the old MEF IDREF record and recreate a new MEF GND record. + m_record, m_actions = idref_record.create_or_update_mef(dbcommit=True, reindex=True) + assert m_actions == {m_record.pid: Action.UPDATE, f"{mef_count+2}": Action.CREATE} + assert m_record == { + "$schema": f"{SCHEMA_URL}/mef-concept-v0.0.1.json", + "idref": { + "$ref": f"https://mef.rero.ch/api/concepts/idref/{concept_idref_frbnf_data_close['pid']}" + }, + "pid": f"{mef_count+1}", + "type": "bf:Topic", + } + + # Add identifiedBy `FRBNF12352687` to IDREF record + idref_record["identifiedBy"] = [ + { + "source": "IDREF", + "type": "uri", + "value": f"http://www.idref.fr/{concept_idref_frbnf_data_close['pid']}", + }, + {"source": "BNF", "type": "bf:Nbn", "value": "FRBNF12352687"}, + ] + idref_record, action = ConceptIdrefRecord.create_or_update( + data=idref_record, dbcommit=True, reindex=True + ) + assert action == Action.UPDATE + assert idref_record["identifiedBy"] == [ + { + "source": "IDREF", + "type": "uri", + "value": f"http://www.idref.fr/{concept_idref_frbnf_data_close['pid']}", + }, + {"source": "BNF", "type": "bf:Nbn", "value": "FRBNF12352687"}, + ] + + # Create or update MEF record for IDREF + # We should update MEF IDREF record and delete ref from MEF GND record. + m_record, m_actions = idref_record.create_or_update_mef(dbcommit=True, reindex=True) + assert m_actions == { + m_record.pid: Action.UPDATE, + f"{mef_count+2}": Action.DELETE_ENTITY, + } + assert m_record == { + "$schema": f"{SCHEMA_URL}/mef-concept-v0.0.1.json", + "idref": { + "$ref": f"https://mef.rero.ch/api/concepts/idref/{concept_idref_frbnf_data_close['pid']}" + }, + "gnd": { + "$ref": f"https://mef.rero.ch/api/concepts/gnd/{concept_gnd_frbnf_data_close['pid']}" + }, + "pid": f"{mef_count+1}", + "type": "bf:Topic", + } + + # Delete identifiedBy `FRBNF12352687` from GND record. + close_match = gnd_record.pop("closeMatch") + gnd_record, action = ConceptGndRecord.create_or_update( + data=gnd_record, dbcommit=True, reindex=True + ) + assert action == Action.UPDATE + assert not idref_record.get("closeMatch") + + # Create or update MEF record for IDREF + # We should update MEF IDREF record and delete ref from MEF GND record. + m_record, m_actions = idref_record.create_or_update_mef(dbcommit=True, reindex=True) + assert m_actions == { + m_record.pid: Action.UPDATE, + f"{mef_count+3}": Action.CREATE, + } + assert m_record == { + "$schema": f"{SCHEMA_URL}/mef-concept-v0.0.1.json", + "idref": { + "$ref": f"https://mef.rero.ch/api/concepts/idref/{concept_idref_frbnf_data_close['pid']}" + }, + "pid": f"{mef_count+1}", + "type": "bf:Topic", + } + + # Add identifiedBy `FRBNF12352687` to GND record + gnd_record["exactMatch"] = close_match + gnd_record, action = ConceptGndRecord.create_or_update( + data=gnd_record, dbcommit=True, reindex=True + ) + assert action == Action.UPDATE + assert gnd_record.get("exactMatch") == close_match + + # Create or update MEF record for GND + # We should update MEF GND record delete ref and MEF IDREF update. + m_record, m_actions = gnd_record.create_or_update_mef(dbcommit=True, reindex=True) + assert m_actions == { + m_record.pid: Action.UPDATE, + f"{mef_count+1}": Action.DELETE_ENTITY, + } + assert m_record == { + "$schema": f"{SCHEMA_URL}/mef-concept-v0.0.1.json", + "gnd": { + "$ref": f"https://mef.rero.ch/api/concepts/gnd/{concept_gnd_frbnf_data_close['pid']}" + }, + "idref": { + "$ref": f"https://mef.rero.ch/api/concepts/idref/{concept_idref_frbnf_data_close['pid']}" + }, + "pid": m_record.pid, + "type": "bf:Topic", + } + + +def test_create_concept_frbnf_record_exact( + app, concept_idref_frbnf_data_exact, concept_gnd_frbnf_data_exact, tmpdir +): + """Test create concept record with frbnf links.""" + mef_count = ConceptMefRecord.count() + # Create idref record with identifiedBy `FRBNF12352687`. + idref_record, action = ConceptIdrefRecord.create_or_update( + data=concept_idref_frbnf_data_exact, dbcommit=True, reindex=True + ) + assert action == Action.CREATE + assert idref_record["pid"] == concept_idref_frbnf_data_exact["pid"] + + gnd_record, action = ConceptGndRecord.create_or_update( + data=concept_gnd_frbnf_data_exact, dbcommit=True, reindex=True + ) + assert action == Action.CREATE + assert gnd_record["pid"] == concept_gnd_frbnf_data_exact["pid"] + + ConceptIdrefRecord.flush_indexes() + ConceptGndRecord.flush_indexes() + # Create or update MEF record. + m_record, m_actions = idref_record.create_or_update_mef(dbcommit=True, reindex=True) + assert m_actions == {m_record.pid: Action.CREATE} + assert m_record == { + "$schema": f"{SCHEMA_URL}/mef-concept-v0.0.1.json", + "idref": { + "$ref": f"https://mef.rero.ch/api/concepts/idref/{concept_idref_frbnf_data_exact['pid']}" + }, + "gnd": { + "$ref": f"https://mef.rero.ch/api/concepts/gnd/{concept_gnd_frbnf_data_exact['pid']}" + }, + "pid": f"{mef_count+1}", + "type": "bf:Topic", + } diff --git a/tests/ui/places/test_places_api.py b/tests/ui/places/test_places_api.py index d7c5535b..fc288a85 100644 --- a/tests/ui/places/test_places_api.py +++ b/tests/ui/places/test_places_api.py @@ -46,11 +46,20 @@ def test_create_place_record(app, place_idref_data, place_gnd_data, tmpdir): assert m_idref_record == { "$schema": f"{SCHEMA_URL}/mef-place-v0.0.1.json", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271330163"}, - "deleted": "2022-09-03T07:07:32.526780+00:00", "pid": "1", "type": "bf:Place", } - + PlaceMefRecord.flush_indexes() + m_idref_record, m_action = idref_record.create_or_update_mef( + dbcommit=True, reindex=True + ) + assert m_action == {"1": Action.UPDATE} + assert m_idref_record == { + "$schema": f"{SCHEMA_URL}/mef-place-v0.0.1.json", + "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271330163"}, + "pid": "1", + "type": "bf:Place", + } # Test JSON export. tmp_file_name = os.path.join(tmpdir, "mef.json") export_json_records( @@ -83,7 +92,7 @@ def test_create_place_record(app, place_idref_data, place_gnd_data, tmpdir): assert returned_record["pid"] == "271330163" PlaceMefRecord.flush_indexes() - # GND tests + # Test GND create gnd_record, action = PlaceGndRecord.create_or_update( data=place_gnd_data, dbcommit=True, reindex=True ) @@ -102,6 +111,7 @@ def test_create_place_record(app, place_idref_data, place_gnd_data, tmpdir): "type": "bf:Place", } + # Test IDREF create with GND ref idref_record = PlaceIdrefRecord.get_record_by_pid(idref_record.pid) idref_record.setdefault("identifiedBy", []).append( {"source": "GND", "value": "(DE-101)040754766", "type": "bf:Nbn"} @@ -112,17 +122,42 @@ def test_create_place_record(app, place_idref_data, place_gnd_data, tmpdir): m_idref_record, m_action = idref_record.create_or_update_mef( dbcommit=True, reindex=True ) - assert m_action == {"1": Action.UPDATE, "2": Action.DELETE_AGENT} + assert m_action == {"1": Action.UPDATE, "2": Action.DELETE_ENTITY} assert m_idref_record == { "$schema": f"{SCHEMA_URL}/mef-place-v0.0.1.json", - "deleted": "2022-09-03T07:07:32.526780+00:00", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271330163"}, "gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040754766"}, "pid": "1", "type": "bf:Place", } + PlaceMefRecord.flush_indexes() assert PlaceMefSearch().filter("term", gnd__pid="040754766").count() == 1 + # Retest IDREF and GND record MEF update + m_idref_record, m_action = idref_record.create_or_update_mef( + dbcommit=True, reindex=True + ) + assert m_action == {"1": Action.UPDATE} + assert m_idref_record == { + "$schema": f"{SCHEMA_URL}/mef-place-v0.0.1.json", + "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271330163"}, + "gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040754766"}, + "pid": "1", + "type": "bf:Place", + } + m_gnd_record, m_action = gnd_record.create_or_update_mef( + dbcommit=True, reindex=True + ) + assert m_action == {"1": Action.UPDATE} + assert m_gnd_record == { + "$schema": f"{SCHEMA_URL}/mef-place-v0.0.1.json", + "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271330163"}, + "gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/040754766"}, + "pid": "1", + "type": "bf:Place", + } + + # Test IDREF GND ref change for identified_by in idref_record["identifiedBy"]: if identified_by.get("source") == "GND": identified_by["value"] = "(DE-101)TEST" @@ -135,7 +170,6 @@ def test_create_place_record(app, place_idref_data, place_gnd_data, tmpdir): assert m_action == {"1": Action.UPDATE, "3": Action.CREATE} assert m_idref_record == { "$schema": f"{SCHEMA_URL}/mef-place-v0.0.1.json", - "deleted": "2022-09-03T07:07:32.526780+00:00", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271330163"}, "pid": "1", "type": "bf:Place", @@ -157,14 +191,15 @@ def test_create_place_record(app, place_idref_data, place_gnd_data, tmpdir): assert gnd_record["pid"] == "TEST" PlaceIdrefRecord.flush_indexes() + PlaceGndRecord.flush_indexes() PlaceMefRecord.flush_indexes() + m_gnd_record, m_action = gnd_record.create_or_update_mef( dbcommit=True, reindex=True ) assert m_action == {"1": Action.UPDATE} assert m_gnd_record == { "$schema": f"{SCHEMA_URL}/mef-place-v0.0.1.json", - "deleted": "2022-09-03T07:07:32.526780+00:00", "idref": {"$ref": "https://mef.rero.ch/api/places/idref/271330163"}, "gnd": {"$ref": "https://mef.rero.ch/api/places/gnd/TEST"}, "pid": "1", diff --git a/tests/ui/test_api.py b/tests/ui/test_api.py index 5d96c2f8..2afc720a 100644 --- a/tests/ui/test_api.py +++ b/tests/ui/test_api.py @@ -27,8 +27,8 @@ from rero_mef.tasks import process_bulk_queue -def test_reromefrecord_api(app, agent_idref_record): - """Test ReroMefRecord api.""" +def test_entityrecord_api(app, agent_idref_record): + """Test EntityRecord api.""" idref = agent_idref_record assert AgentIdrefRecord.count() == 1 assert AgentIdrefRecord.index_all() == 1 diff --git a/tests/ui/test_monitoring.py b/tests/ui/test_monitoring.py index 00718708..8fccffc7 100644 --- a/tests/ui/test_monitoring.py +++ b/tests/ui/test_monitoring.py @@ -34,6 +34,7 @@ def test_monitoring(app, agent_idref_data, script_info): " 0 agrero 0 agents_rero 0", " 1 aidref 1 agents_idref 0", " 0 cidref 0 concepts_idref 0", + " 0 cognd 0 concepts_gnd 0", " 0 comef 0 concepts_mef 0", " 0 corero 0 concepts_rero 0", " 0 mef 0 mef 0", @@ -61,6 +62,7 @@ def test_monitoring(app, agent_idref_data, script_info): "aidref": {"db": 1, "db-es": 1, "es": 0, "index": "agents_idref"}, "cidref": {"db": 0, "db-es": 0, "es": 0, "index": "concepts_idref"}, "comef": {"db": 0, "db-es": 0, "es": 0, "index": "concepts_mef"}, + "cognd": {"db": 0, "db-es": 0, "es": 0, "index": "concepts_gnd"}, "corero": {"db": 0, "db-es": 0, "es": 0, "index": "concepts_rero"}, "mef": {"db": 0, "db-es": 0, "es": 0, "index": "mef"}, "plgnd": {"db": 0, "db-es": 0, "es": 0, "index": "places_gnd"}, diff --git a/tests/unit/agents/test_agent_gnd_transformation.py b/tests/unit/agents/test_agents_gnd_transformation.py similarity index 99% rename from tests/unit/agents/test_agent_gnd_transformation.py rename to tests/unit/agents/test_agents_gnd_transformation.py index f6255740..56bd412c 100644 --- a/tests/unit/agents/test_agent_gnd_transformation.py +++ b/tests/unit/agents/test_agents_gnd_transformation.py @@ -189,7 +189,6 @@ def test_gnd_identifier(): trans = trans_prep("gnd", xml_part_to_add) trans.trans_gnd_identifier() assert trans.json == { - "identifier": "http://d-nb.info/gnd/100000193", "identifiedBy": [ {"source": "GND", "type": "uri", "value": "http://d-nb.info/gnd/100000193"} ], diff --git a/tests/unit/agents/test_agent_idref_transformation.py b/tests/unit/agents/test_agents_idref_transformation.py similarity index 99% rename from tests/unit/agents/test_agent_idref_transformation.py rename to tests/unit/agents/test_agents_idref_transformation.py index ef7140e8..ff5bc5a8 100644 --- a/tests/unit/agents/test_agent_idref_transformation.py +++ b/tests/unit/agents/test_agents_idref_transformation.py @@ -154,7 +154,6 @@ def test_idref_identifier(): trans = trans_prep("idref", xml_part_to_add) trans.trans_idref_identifier() assert trans.json == { - "identifier": "http://www.idref.fr/069774331", "identifiedBy": [ {"source": "IDREF", "type": "uri", "value": "http://www.idref.fr/069774331"} ], diff --git a/tests/unit/agents/test_agent_rero_transformation.py b/tests/unit/agents/test_agents_rero_transformation.py similarity index 99% rename from tests/unit/agents/test_agent_rero_transformation.py rename to tests/unit/agents/test_agents_rero_transformation.py index 626753fe..ea76c652 100755 --- a/tests/unit/agents/test_agent_rero_transformation.py +++ b/tests/unit/agents/test_agents_rero_transformation.py @@ -31,7 +31,6 @@ def test_rero_identifier(): trans.trans_rero_identifier() assert trans.json == { "pid": "A000070488", - "identifier": "http://data.rero.ch/02-A000070488", "identifiedBy": [ { "source": "RERO", diff --git a/tests/unit/concepts/examples/xml_minimal_record.xml b/tests/unit/concepts/examples/xml_minimal_record.xml index a24d3104..32257621 100644 --- a/tests/unit/concepts/examples/xml_minimal_record.xml +++ b/tests/unit/concepts/examples/xml_minimal_record.xml @@ -1,55 +1,24 @@ 00589nx a2200193 45 - - - Grand Larousse universel (art. : Livre) - + + 027630501 + sudoc - - - Laval RVM (en ligne), 2004-11-23 - + + frBN001940328 - - - Mers profondément engagées dans la masse des continents - + + frBN000000089 - - Note interne + + FRBNF118620892 + FRBNF11862089 - - - Voir le descripteur Opposition (science politique) - - - - - Combiner un des descripteurs Mouvements contestataires - - - - - Voir les vedettes : Mouvements contestataires ; Opposition - - - - - Voir les vedettes du type : Antifascisme ; Mouvements - - - - - Voir aux mouvements d'opposition particuliers, par ex. : Combat - - - - - Voir aussi aux mers et océans particuliers - - - - VF3, NC3, NC30 + + http://viaf.org/viaf/124265140 + VIAF + VIAF + 20200302 \ No newline at end of file diff --git a/tests/unit/concepts/test_concepts_gnd_transformation.py b/tests/unit/concepts/test_concepts_gnd_transformation.py new file mode 100644 index 00000000..b7040ced --- /dev/null +++ b/tests/unit/concepts/test_concepts_gnd_transformation.py @@ -0,0 +1,264 @@ +# -*- coding: utf-8 -*- +# +# RERO MEF +# Copyright (C) 2024 RERO +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + +"""Test RERO auth contribution.""" + +from concepts_helpers import trans_prep + +from rero_mef.marctojson.do_gnd_concepts import Transformation + + +def test_gnd_pid(): + """Test pid for 001""" + xml_part_to_add = """ + 976573474 + """ + trans = trans_prep(Transformation, "concepts", xml_part_to_add) + trans.trans_gnd_pid() + assert trans.json == {"pid": "976573474", "type": "bf:Topic"} + + +def test_gnd_identifier(): + """Test identifier for person 024, 035""" + xml_part_to_add = """ + + 4844250-1 + http://d-nb.info/gnd/4844250-1 + gnd + + + (DE-101)976573474 + + + (DE-588)4844250-1 + + + (DE-588c)4844250 + v:zg + + """ + trans = trans_prep(Transformation, "concepts", xml_part_to_add) + trans.trans_gnd_identifier() + assert trans.json == { + "identifiedBy": [ + { + "type": "uri", + "source": "GND", + "value": "http://d-nb.info/gnd/4844250-1", + }, + { + "type": "bf:Nbn", + "source": "GND", + "value": "(DE-101)976573474", + }, + { + "type": "bf:Nbn", + "source": "GND", + "value": "(DE-588)4844250-1", + }, + ], + } + + +def test_gnd_authorized_access_point(): + """Test authorized_access_point from field 150""" + xml_part_to_add = """ + + Magnet + Druckschrift, Offenbach, Main + + """ + trans = trans_prep(Transformation, "concepts", xml_part_to_add) + trans.trans_gnd_authorized_access_point() + assert trans.json == { + "authorized_access_point": "Magnet (Druckschrift, Offenbach, Main)" + } + + +def test_gnd_variant_access_point(): + """Test variant_access_point from field 450""" + xml_part_to_add = """ + + Ohio + Druckschrift + + """ + trans = trans_prep(Transformation, "concepts", xml_part_to_add) + trans.trans_gnd_variant_access_point() + assert trans.json == {"variant_access_point": ["Ohio (Druckschrift)"]} + + +def test_gnd_relation(): + """Test trans_gnd_relation 550""" + xml_part_to_add = """ + + (DE-101)041994493 + (DE-588)4199449-8 + https://d-nb.info/gnd/4199449-8 + Antiqua + obal + https://d-nb.info/standards/elementset/gnd#broaderTermGeneral + r + Oberbegriff allgemein + + + (DE-101)992744342 + (DE-588)7647113-5 + https://d-nb.info/gnd/7647113-5 + Ohio-Kursiv + vbal + https://d-nb.info/standards/elementset/gnd#relatedTerm + r + Verwandter Begriff + """ + trans = trans_prep(Transformation, "concepts", xml_part_to_add) + trans.trans_gnd_relation() + assert trans.json == { + "broader": [ + {"authorized_access_point": "Antiqua"}, + ], + "related": [ + {"authorized_access_point": "Ohio-Kursiv"}, + ], + } + + +def test_gnd_classification(): + """Test trans_gnd_classification ???.""" + # TODO: trans_gnd_classification + + +def test_gnd_close_match(): + """Test trans_gnd_classification 750""" + xml_part_to_add = """ + + (DE-101)1134384173 + (DLC)sh85009231 + http://id.loc.gov/authorities/subjects/sh85009231 + Atlases + EQ + https://d-nb.info/standards/elementset/gnd#equivalence + Aequivalenz + lcsh + L:eng + + + (DE-101)125348144X + (DNLM)D020466 + http://id.nlm.nih.gov/mesh/D020466 + Atlas + EQ + https://d-nb.info/standards/elementset/gnd#exactEquivalence + exakte Aequivalenz + mesh + L:eng + v:Ausg. 2022|2023 + """ + trans = trans_prep(Transformation, "concepts", xml_part_to_add) + trans.trans_gnd_match() + assert trans.json == { + "closeMatch": [ + { + "authorized_access_point": "Atlases", + "source": "GND", + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)1134384173", + }, + { + "source": "DLC", + "type": "bf:Nbn", + "value": "sh85009231", + }, + { + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85009231", + }, + ], + } + ], + "exactMatch": [ + { + "authorized_access_point": "Atlas", + "source": "GND", + "identifiedBy": [ + {"source": "GND", "type": "bf:Nbn", "value": "(DE-101)125348144X"}, + {"source": "DNLM", "type": "bf:Nbn", "value": "D020466"}, + {"type": "uri", "value": "http://id.nlm.nih.gov/mesh/D020466"}, + ], + }, + ], + } + + +def test_gnd_notes(): + """Test trans_gnd_note 670 677 678 680""" + xml_part_to_add = """ + + Vorlage; Internet + http://www.historisches-unterfranken.uni-wuerzburg.de/db_swu_wuestung.php + + + Bach bei Theilheim, Würzburg + + """ + trans = trans_prep(Transformation, "concepts", xml_part_to_add) + trans.trans_gnd_note() + assert trans.json == { + "note": [ + { + "label": [ + "Vorlage; Internet - http://www.historisches-unterfranken.uni-wuerzburg.de/db_swu_wuestung.php" + ], + "noteType": "dataSource", + }, + { + "label": ["Bach bei Theilheim, Würzburg"], + "noteType": "general", + }, + ] + } + + +def test_gnd_deleted(): + """Test deleted -> leader 6 == d.""" + xml_part_to_add = """ + dx a22 3 45 + """ + trans = trans_prep(Transformation, "concepts", xml_part_to_add) + trans.trans_gnd_deleted() + assert "deleted" in trans.json + + +def test_gnd_relation_pid(): + """Test relation pid.""" + xml_part_to_add = """ + + Umlenkung + (DE-101)004459091 + (DE-588)1098274-7 + https://d-nb.info/gnd/1098274-7 + Isarkreis + + """ + trans = trans_prep(Transformation, "concepts", xml_part_to_add) + trans.trans_gnd_relation_pid() + assert trans.json == { + "relation_pid": {"value": "004459091", "type": "redirect_to"}, + } diff --git a/tests/unit/concepts/test_concept_idref_transformation.py b/tests/unit/concepts/test_concepts_idref_transformation.py similarity index 95% rename from tests/unit/concepts/test_concept_idref_transformation.py rename to tests/unit/concepts/test_concepts_idref_transformation.py index d01965ad..1291b46a 100644 --- a/tests/unit/concepts/test_concept_idref_transformation.py +++ b/tests/unit/concepts/test_concepts_idref_transformation.py @@ -77,7 +77,7 @@ def test_idref_identifier(): "source": "BNF", "value": "http://catalogue.bnf.fr/ark:/12148/cb17876933v", }, - ] + ], } @@ -305,20 +305,24 @@ def test_idref_close_match(): { "authorized_access_point": "Fasting", "source": "LCSH", - "identifiedBy": { - "source": "LCSH", - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85047403", - }, + "identifiedBy": [ + { + "source": "LCSH", + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85047403", + } + ], }, { "authorized_access_point": "Fasting -- Religious aspects", "source": "LCSH", - "identifiedBy": { - "source": "LCSH", - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh2003003108", - }, + "identifiedBy": [ + { + "source": "LCSH", + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2003003108", + } + ], }, {"authorized_access_point": "Jeûne", "source": "RVMLaval"}, { @@ -444,7 +448,12 @@ def test_idref_relation_pid(): trans.trans_idref_relation_pid() assert trans.json == { "identifiedBy": [ - {"source": "VIAF", "type": "uri", "value": "http://viaf.org/viaf/124265140"} + { + "source": "VIAF", + "type": "uri", + "value": "http://viaf.org/viaf/124265140", + }, + {"source": "BNF", "type": "bf:Nbn", "value": "FRBNF11862089"}, ], "relation_pid": {"value": "027630501", "type": "redirect_from"}, } diff --git a/tests/unit/concepts/test_concept_rero_transformation.py b/tests/unit/concepts/test_concepts_rero_transformation.py similarity index 100% rename from tests/unit/concepts/test_concept_rero_transformation.py rename to tests/unit/concepts/test_concepts_rero_transformation.py diff --git a/tests/unit/places/examples/xml_minimal_record.xml b/tests/unit/places/examples/xml_minimal_record.xml index ecce96ac..1371a88e 100644 --- a/tests/unit/places/examples/xml_minimal_record.xml +++ b/tests/unit/places/examples/xml_minimal_record.xml @@ -1,11 +1,24 @@ cx c22 3 45 - - Umlenkung - (DE-101)004459091 - (DE-588)1098274-7 - https://d-nb.info/gnd/1098274-7 - Isarkreis + + 027630501 + sudoc + + + frBN001940328 + + + frBN000000089 + + + FRBNF118620892 + FRBNF11862089 + + + http://viaf.org/viaf/124265140 + VIAF + VIAF + 20200302 \ No newline at end of file diff --git a/tests/unit/places/test_places_gnd_transformation.py b/tests/unit/places/test_places_gnd_transformation.py index 11b753d2..c3144e81 100644 --- a/tests/unit/places/test_places_gnd_transformation.py +++ b/tests/unit/places/test_places_gnd_transformation.py @@ -69,7 +69,7 @@ def test_gnd_identifier(): "source": "GND", "value": "(DE-588)7655914-2", }, - ] + ], } @@ -107,7 +107,7 @@ def test_gnd_variant_access_point(): def test_gnd_relation(): - """Test trans_gnd_relation 515""" + """Test trans_gnd_relation 551""" xml_part_to_add = """ (DE-101)041079302 @@ -130,30 +130,8 @@ def test_gnd_relation(): def test_gnd_classification(): - """Test trans_gnd_classification 550.""" - xml_part_to_add = """ - - (DE-101)041229703 - (DE-588)4122970-8 - https://d-nb.info/gnd/4122970-8 - Bucht - obin - https://d-nb.info/standards/elementset/gnd#broaderTermInstantial - r - Oberbegriff instantiell - - """ - trans = trans_prep(Transformation, "places", xml_part_to_add) - trans.trans_gnd_classification() - assert trans.json == { - "classification": [ - { - "type": "bf:ClassificationDdc", - "classificationPortion": "obin", - "name": "Bucht", - } - ] - } + """Test trans_gnd_classification ???.""" + # TODO: trans_gnd_classification def test_gnd_close_match(): @@ -170,17 +148,24 @@ def test_gnd_close_match(): """ trans = trans_prep(Transformation, "places", xml_part_to_add) - trans.trans_gnd_close_match() + trans.trans_gnd_match() assert trans.json == { - "closeMatch": [ + "exactMatch": [ { "authorized_access_point": "Venedig", "source": "GND", - "identifiedBy": { - "source": "DE-101", - "type": "bf:Nbn", - "value": "997977663", - }, + "identifiedBy": [ + { + "source": "GND", + "type": "bf:Nbn", + "value": "(DE-101)997977663", + }, + { + "source": "ZBW", + "type": "bf:Nbn", + "value": "091419204", + }, + ], } ] } diff --git a/tests/unit/places/test_places_idref_transformation.py b/tests/unit/places/test_places_idref_transformation.py index 2c2e55d6..b22c3394 100644 --- a/tests/unit/places/test_places_idref_transformation.py +++ b/tests/unit/places/test_places_idref_transformation.py @@ -58,7 +58,7 @@ def test_idref_identifier(): "source": "BNF", "value": "http://catalogue.bnf.fr/ark:/12148/cb11931552b", }, - ] + ], } @@ -188,20 +188,24 @@ def test_idref_close_match(): { "authorized_access_point": "Fasting", "source": "LCSH", - "identifiedBy": { - "source": "LCSH", - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh85047403", - }, + "identifiedBy": [ + { + "source": "LCSH", + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh85047403", + } + ], }, { "authorized_access_point": "Fasting -- Religious aspects", "source": "LCSH", - "identifiedBy": { - "source": "LCSH", - "type": "uri", - "value": "http://id.loc.gov/authorities/subjects/sh2003003108", - }, + "identifiedBy": [ + { + "source": "LCSH", + "type": "uri", + "value": "http://id.loc.gov/authorities/subjects/sh2003003108", + } + ], }, {"authorized_access_point": "Jeûne", "source": "RVMLaval"}, {